diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..879df49 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +.DS_Store +node_modules/ +*.log diff --git a/.npmignore b/.npmignore new file mode 100644 index 0000000..5bf7ebb --- /dev/null +++ b/.npmignore @@ -0,0 +1,3 @@ +bench/ +samples/ +test/ diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..bfa3fd2 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,8 @@ +language: "node_js" +node_js: + - 0.6 + - 0.8 + - 0.9 +branches: + only: + - master \ No newline at end of file diff --git a/AUTHORS b/AUTHORS index 26d8659..63424af 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,9 +1,2 @@ -# contributors sorted by whether or not they're me. -Isaac Z. Schlueter -Stein Martin Hustad -Mikeal Rogers -Laurie Harper -Jann Horn -Elijah Insua -Henry Rawas -Justin Makeig +Nuno Job (http://nunojob.com/) +Jann Horn diff --git a/LICENSE b/LICENSE index 05a4010..8985602 100644 --- a/LICENSE +++ b/LICENSE @@ -1,23 +1,28 @@ -Copyright 2009, 2010, 2011 Isaac Z. Schlueter. +Copyright (c) Isaac Z. Schlueter ("Author") +Copyright (c) 2011 nuno job All rights reserved. -Permission is hereby granted, free of charge, to any person -obtaining a copy of this software and associated documentation -files (the "Software"), to deal in the Software without -restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following -conditions: +The BSD License -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT -HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR -OTHER DEALINGS IN THE SOFTWARE. +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS +BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE +OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN +IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/README.md b/README.md index 9c63dc4..2d7bf9b 100644 --- a/README.md +++ b/README.md @@ -1,213 +1,214 @@ -# sax js - -A sax-style parser for XML and HTML. - -Designed with [node](http://nodejs.org/) in mind, but should work fine in -the browser or other CommonJS implementations. - -## What This Is - -* A very simple tool to parse through an XML string. -* A stepping stone to a streaming HTML parser. -* A handy way to deal with RSS and other mostly-ok-but-kinda-broken XML - docs. - -## What This Is (probably) Not - -* An HTML Parser - That's a fine goal, but this isn't it. It's just - XML. -* A DOM Builder - You can use it to build an object model out of XML, - but it doesn't do that out of the box. -* XSLT - No DOM = no querying. -* 100% Compliant with (some other SAX implementation) - Most SAX - implementations are in Java and do a lot more than this does. -* An XML Validator - It does a little validation when in strict mode, but - not much. -* A Schema-Aware XSD Thing - Schemas are an exercise in fetishistic - masochism. -* A DTD-aware Thing - Fetching DTDs is a much bigger job. - -## Regarding `Hello, world!').close(); - - // stream usage - // takes the same options as the parser - var saxStream = require("sax").createStream(strict, options) - saxStream.on("error", function (e) { - // unhandled errors will throw, since this is a proper node - // event emitter. - console.error("error!", e) - // clear the error - this._parser.error = null - this._parser.resume() - }) - saxStream.on("opentag", function (node) { - // same object as above - }) - // pipe is supported, and it's readable/writable - // same chunks coming in also go out. - fs.createReadStream("file.xml") - .pipe(saxStream) - .pipe(fs.createReadStream("file-copy.xml")) - - - -## Arguments - -Pass the following arguments to the parser function. All are optional. - -`strict` - Boolean. Whether or not to be a jerk. Default: `false`. - -`opt` - Object bag of settings regarding string formatting. All default to `false`. - -Settings supported: - -* `trim` - Boolean. Whether or not to trim text and comment nodes. -* `normalize` - Boolean. If true, then turn any whitespace into a single +# clarinet + +![NPM Downloads](http://img.shields.io/npm/dm/clarinet.svg?style=flat) ![NPM Version](http://img.shields.io/npm/v/clarinet.svg?style=flat) [![CDNJS](https://img.shields.io/cdnjs/v/clarinet.svg)](https://cdnjs.com/libraries/clarinet) + +`clarinet` is a sax-like streaming parser for JSON. works in the browser and node.js. `clarinet` is inspired (and forked) from [sax-js][saxjs]. just like you shouldn't use `sax` when you need `dom` you shouldn't use `clarinet` when you need `JSON.parse`. for a more detailed introduction and a performance study please refer to this [article][blog]. + +# design goals + +`clarinet` is very much like [yajl] but written in javascript: + +* written in javascript +* portable +* robust (~110 tests pass before even announcing the project) +* data representation independent +* fast +* generates verbose, useful error messages including context of where + the error occurs in the input text. +* can parse json data off a stream, incrementally +* simple to use +* tiny + +# motivation + +the reason behind this work was to create better full text support in node. creating indexes out of large (or many) json files doesn't require a full understanding of the json file, but it does require something like `clarinet`. + +# installation + +## node.js + +1. install [npm] +2. `npm install clarinet` +3. `var clarinet = require('clarinet');` + +## browser + +1. minimize clarinet.js +2. load it into your webpage + +# usage + +## basics + +``` js +var clarinet = require("clarinet") + , parser = clarinet.parser() + ; + +parser.onerror = function (e) { + // an error happened. e is the error. +}; +parser.onvalue = function (v) { + // got some value. v is the value. can be string, double, bool, or null. +}; +parser.onopenobject = function (key) { + // opened an object. key is the first key. +}; +parser.onkey = function (key) { + // got a subsequent key in an object. +}; +parser.oncloseobject = function () { + // closed an object. +}; +parser.onopenarray = function () { + // opened an array. +}; +parser.onclosearray = function () { + // closed an array. +}; +parser.onend = function () { + // parser stream is done, and ready to have more stuff written to it. +}; + +parser.write('{"foo": "bar"}').close(); +``` + +``` js +// stream usage +// takes the same options as the parser +var stream = require("clarinet").createStream(options); +stream.on("error", function (e) { + // unhandled errors will throw, since this is a proper node + // event emitter. + console.error("error!", e) + // clear the error + this._parser.error = null + this._parser.resume() +}) +stream.on("openobject", function (node) { + // same object as above +}) +// pipe is supported, and it's readable/writable +// same chunks coming in also go out. +fs.createReadStream("file.json") + .pipe(stream) + .pipe(fs.createReadStream("file-altered.json")) +``` + +## arguments + +pass the following arguments to the parser function. all are optional. + +`opt` - object bag of settings regarding string formatting. all default to `false`. + +settings supported: + +* `trim` - boolean. whether or not to trim text and comment nodes. +* `normalize` - boolean. if true, then turn any whitespace into a single space. -* `lowercasetags` - Boolean. If true, then lowercase tags in loose mode, - rather than uppercasing them. -* `xmlns` - Boolean. If true, then namespaces are supported. -## Methods +## methods -`write` - Write bytes onto the stream. You don't have to do this all at -once. You can keep writing as much as you want. +`write` - write bytes onto the stream. you don't have to do this all at +once. you can keep writing as much as you want. -`close` - Close the stream. Once closed, no more data may be written until +`close` - close the stream. once closed, no more data may be written until it is done processing the buffer, which is signaled by the `end` event. -`resume` - To gracefully handle errors, assign a listener to the `error` -event. Then, when the error is taken care of, you can call `resume` to -continue parsing. Otherwise, the parser will not continue while in an error +`resume` - to gracefully handle errors, assign a listener to the `error` +event. then, when the error is taken care of, you can call `resume` to +continue parsing. otherwise, the parser will not continue while in an error state. -## Members +## members -At all times, the parser object will have the following members: +at all times, the parser object will have the following members: -`line`, `column`, `position` - Indications of the position in the XML +`line`, `column`, `position` - indications of the position in the json document where the parser currently is looking. -`startTagPosition` - Indicates the position where the current tag starts. +`closed` - boolean indicating whether or not the parser can be written to. +if it's `true`, then wait for the `ready` event to write again. -`closed` - Boolean indicating whether or not the parser can be written to. -If it's `true`, then wait for the `ready` event to write again. +`opt` - any options passed into the constructor. -`strict` - Boolean indicating whether or not the parser is a jerk. +and a bunch of other stuff that you probably shouldn't touch. -`opt` - Any options passed into the constructor. +## events -`tag` - The current tag being dealt with. +all events emit with a single argument. to listen to an event, assign a +function to `on`. functions get executed in the this-context of +the parser object. the list of supported events are also in the exported +`EVENTS` array. -And a bunch of other stuff that you probably shouldn't touch. +when using the stream interface, assign handlers using the `EventEmitter` +`on` function in the normal fashion. -## Events +`error` - indication that something bad happened. the error will be hanging +out on `parser.error`, and must be deleted before parsing can continue. by +listening to this event, you can keep an eye on that kind of stuff. note: +this happens *much* more in strict mode. argument: instance of `Error`. -All events emit with a single argument. To listen to an event, assign a -function to `on`. Functions get executed in the this-context of -the parser object. The list of supported events are also in the exported -`EVENTS` array. +`value` - a json value. argument: value, can be a bool, null, string on number -When using the stream interface, assign handlers using the EventEmitter -`on` function in the normal fashion. +`openobject` - object was opened. argument: key, a string with the first key of the object (if any) -`error` - Indication that something bad happened. The error will be hanging -out on `parser.error`, and must be deleted before parsing can continue. By -listening to this event, you can keep an eye on that kind of stuff. Note: -this happens *much* more in strict mode. Argument: instance of `Error`. +`key` - an object key: argument: key, a string with the current key. Not called for first key (use `openobject` for that). -`text` - Text node. Argument: string of text. +`closeobject` - indication that an object was closed -`doctype` - The ``. Argument: -object with `name` and `body` members. Attributes are not parsed, as -processing instructions have implementation dependent semantics. +`closearray` - indication that an array was closed -`sgmldeclaration` - Random SGML declarations. Stuff like `` -would trigger this kind of event. This is a weird thing to support, so it -might go away at some point. SAX isn't intended to be used to parse SGML, -after all. +`end` - indication that the closed stream has ended. -`opentag` - An opening tag. Argument: object with `name` and `attributes`. -In non-strict mode, tag names are uppercased, unless the `lowercasetags` -option is set. If the `xmlns` option is set, then it will contain -namespace binding information on the `ns` member, and will have a -`local`, `prefix`, and `uri` member. +`ready` - indication that the stream has reset, and is ready to be written +to. -`closetag` - A closing tag. In loose mode, tags are auto-closed if their -parent closes. In strict mode, well-formedness is enforced. Note that -self-closing tags will have `closeTag` emitted immediately after `openTag`. -Argument: tag name. +## samples -`attribute` - An attribute node. Argument: object with `name` and `value`, -and also namespace information if the `xmlns` option flag is set. +some [samples] are available to help you get started. one that creates a list of top npm contributors, and another that gets a bunch of data from twitter and generates valid json. -`comment` - A comment node. Argument: the string of the comment. +# roadmap -`opencdata` - The opening tag of a ``) of a `` tags trigger a `"script"` -event, and their contents are not checked for special xml characters. -If you pass `noscript: true`, then this behavior is suppressed. +* code: `git clone git://github.com/dscape/clarinet.git` +* home: +* bugs: +* build: [![build status](https://secure.travis-ci.org/dscape/clarinet.png)](http://travis-ci.org/dscape/clarinet) -## Reporting Problems +`(oO)--',-` in [caos] -It's best to write a failing test if you find an issue. I will always -accept pull requests with failing tests if they demonstrate intended -behavior, but it is very hard to figure out what issue you're describing -without a test. Writing a test is also the best way for you yourself -to figure out if you really understand the issue you think you have with -sax-js. +[npm]: http://npmjs.org +[issues]: http://github.com/dscape/clarinet/issues +[caos]: http://caos.di.uminho.pt/ +[saxjs]: http://github.com/isaacs/sax-js +[yajl]: https://github.com/lloyd/yajl +[samples]: https://github.com/dscape/clarinet/tree/master/samples +[blog]: http://writings.nunojob.com/2011/12/clarinet-sax-based-evented-streaming-json-parser-in-javascript-for-the-browser-and-nodejs.html diff --git a/bench/async.js b/bench/async.js new file mode 100644 index 0000000..e597e57 --- /dev/null +++ b/bench/async.js @@ -0,0 +1,93 @@ +// forked from github.com/creationix/jsonparse + +// brew install yajl +// npm install jsonparse yajl + +// node bench/async.js samples/npm.json +// jsonfile +var fs = require('fs') + , clarinet = require('../clarinet') + , Parser = require('jsonparse') + , jsonparser + , p + , s + , start + , max = process.argv[3] || 1 + , n = process.argv[4] || 9 + , averages = {} + ; + +function update_averages(what, time) { + if(averages[what]) { + averages[what].n++; + averages[what].time = averages[what].time + time; + } + else averages[what] = {n: 1, time: time}; +} + +console.log('=N("node bench/async.js ' + process.argv[2] + ' ' + + max + ' ' + n + '")'); +console.log('=N("clp (clarinet parser), cls (clarinet event emitter)")'); +//console.log('=N("jpp (creationix/jsonparse)")'); + +function stream_bench(cb) { + s = clarinet.createStream(); + s.on('end', function () { + var exectime = Date.now()-start; + console.log('cls, %s', exectime); + update_averages('cls', exectime); + cb(); + }); + var fs_read = fs.createReadStream(process.argv[2]); + fs_read.setEncoding('utf-8'); + fs_read.on('data', function(chunk) { + for (var i = 0; i < max; i++) s.write(chunk); + }); + fs_read.on('end', function () { s.end(); }); + start = Date.now(); +} + +function parser_bench(cb) { + p = clarinet.parser(); + p.onend = function () { + var exectime = Date.now()-start; + console.log('clp, %s', exectime); + update_averages('clp', exectime); cb(); + }; + var fs_read = fs.createReadStream(process.argv[2]); + fs_read.setEncoding('utf-8'); + fs_read.on('data', function(chunk) { + for (var i = 0; i < max; i++) p.write(chunk); + }); + fs_read.on('end', function () { + p.end(); + if(n===0) process.exit(); + n--; + setTimeout(repeat,0); + }); + start = Date.now(); +} + +function repeat() { + stream_bench(function () { + return parser_bench(function(){ }); }); +} + +function output_avg() { + console.log('=N("# Version")'); + console.log('=N("' + JSON.stringify(process.versions).replace(/"/g, "'") + '")'); + console.log('=N("# Summary")'); + for(var k in averages) { + console.log('=N("* %s [%s]: %s ms")', k, averages[k].n, + averages[k].time/averages[k].n); + } +} + +process.on('SIGINT', function () { + output_avg(); + process.exit(1); +}); + +process.on('exit', output_avg); + +repeat(); \ No newline at end of file diff --git a/bench/results/async/dscape-creationix.csv b/bench/results/async/dscape-creationix.csv new file mode 100644 index 0000000..8fce660 --- /dev/null +++ b/bench/results/async/dscape-creationix.csv @@ -0,0 +1,22 @@ +=N("node bench/a sync.js samples/creationix.json 2000 9") +=N("clp (clarinet parser), cls (clarinet event emitter)") +cls, 1622 +clp, 1838 +cls, 1759 +clp, 1880 +cls, 1819 +clp, 1872 +cls, 1762 +clp, 1891 +cls, 1761 +clp, 1898 +cls, 1854 +clp, 1884 +cls, 1763 +clp, 1915 +cls, 1790 +clp, 1963 +cls, 1814 +clp, 2155 +cls, 1953 +clp, 1952 diff --git a/bench/results/async/dscape-npm.csv b/bench/results/async/dscape-npm.csv new file mode 100644 index 0000000..03babdb --- /dev/null +++ b/bench/results/async/dscape-npm.csv @@ -0,0 +1,22 @@ +=N("node bench/a sync.js samples/npm.json 1 9") +=N("clp (clarinet parser), cls (clarinet event emitter)") +cls, 960 +clp, 1076 +cls, 1097 +clp, 1060 +cls, 1097 +clp, 1155 +cls, 1053 +clp, 1052 +cls, 1094 +clp, 1023 +cls, 1083 +clp, 1055 +cls, 989 +clp, 1010 +cls, 1077 +clp, 976 +cls, 1031 +clp, 979 +cls, 995 +clp, 968 diff --git a/bench/results/async/dscape-twitter.csv b/bench/results/async/dscape-twitter.csv new file mode 100644 index 0000000..fb642d8 --- /dev/null +++ b/bench/results/async/dscape-twitter.csv @@ -0,0 +1,22 @@ +=N("node bench/a sync.js samples/twitter.json 1 9") +=N("clp (clarinet parser), cls (clarinet event emitter)") +cls, 1166 +clp, 1438 +cls, 1378 +clp, 1475 +cls, 1588 +clp, 1401 +cls, 1348 +clp, 1344 +cls, 1337 +clp, 1450 +cls, 1256 +clp, 1205 +cls, 1182 +clp, 1177 +cls, 1193 +clp, 1180 +cls, 1193 +clp, 1238 +cls, 1175 +clp, 1197 diff --git a/bench/results/async/dscape-wikipedia.csv b/bench/results/async/dscape-wikipedia.csv new file mode 100644 index 0000000..66974da --- /dev/null +++ b/bench/results/async/dscape-wikipedia.csv @@ -0,0 +1,22 @@ +=N("node bench/a sync.js samples/wikipedia.json 100000 9") +=N("clp (clarinet parser), cls (clarinet event emitter)") +cls, 4412 +clp, 5038 +cls, 5087 +clp, 5168 +cls, 5447 +clp, 5183 +cls, 5667 +clp, 5218 +cls, 5597 +clp, 4591 +cls, 5345 +clp, 5515 +cls, 5115 +clp, 5514 +cls, 5283 +clp, 5218 +cls, 5431 +clp, 5331 +cls, 5585 +clp, 5368 diff --git a/bench/results/dscape-study/BD_dscape.sav b/bench/results/dscape-study/BD_dscape.sav new file mode 100644 index 0000000..0013100 Binary files /dev/null and b/bench/results/dscape-study/BD_dscape.sav differ diff --git a/bench/results/dscape-study/OUTPUT.pdf b/bench/results/dscape-study/OUTPUT.pdf new file mode 100644 index 0000000..8baeae3 Binary files /dev/null and b/bench/results/dscape-study/OUTPUT.pdf differ diff --git a/bench/results/dscape-study/OUTPUT.xls b/bench/results/dscape-study/OUTPUT.xls new file mode 100644 index 0000000..b002a69 Binary files /dev/null and b/bench/results/dscape-study/OUTPUT.xls differ diff --git a/bench/results/dscape-study/Output_dscape.spv b/bench/results/dscape-study/Output_dscape.spv new file mode 100644 index 0000000..ff0e5dd Binary files /dev/null and b/bench/results/dscape-study/Output_dscape.spv differ diff --git a/bench/results/dscape-study/Syntax_dscape.sps b/bench/results/dscape-study/Syntax_dscape.sps new file mode 100644 index 0000000..3143071 --- /dev/null +++ b/bench/results/dscape-study/Syntax_dscape.sps @@ -0,0 +1,10 @@ + +DATASET ACTIVATE DataSet1. +ONEWAY Time BY Module + /STATISTICS DESCRIPTIVES + /PLOT MEANS + /MISSING ANALYSIS + /POSTHOC=BONFERRONI ALPHA(0.05). + +SORT CASES BY FileSize. +SPLIT FILE SEPARATE BY FileSize. diff --git a/bench/results/dscape-study/clarinet.xlsx b/bench/results/dscape-study/clarinet.xlsx new file mode 100644 index 0000000..af6a534 Binary files /dev/null and b/bench/results/dscape-study/clarinet.xlsx differ diff --git a/bench/results/dscape-study/dscape-all.csv b/bench/results/dscape-study/dscape-all.csv new file mode 100644 index 0000000..c54275e --- /dev/null +++ b/bench/results/dscape-study/dscape-all.csv @@ -0,0 +1,41 @@ +clp,v8s,jpp,document,type +834,248,1612,npm,big +882,250,1353,npm,big +873,190,1570,npm,big +861,257,1774,npm,big +841,218,1466,npm,big +878,219,1372,npm,big +844,198,1397,npm,big +879,197,1406,npm,big +881,219,1317,npm,big +839,195,1397,npm,big +1583,143,672,creationix,small +1584,143,674,creationix,small +1590,142,671,creationix,small +1613,142,668,creationix,small +1571,142,667,creationix,small +1571,143,667,creationix,small +1578,148,723,creationix,small +1645,146,699,creationix,small +1694,143,676,creationix,small +1578,160,681,creationix,small +1113,207,2402,twitter,big +1092,196,1977,twitter,big +1200,177,2004,twitter,big +1084,232,1988,twitter,big +1266,206,1981,twitter,big +1178,202,1822,twitter,big +1181,202,1817,twitter,big +1181,162,1955,twitter,big +1086,176,2156,twitter,big +1213,185,1930,twitter,big +4656,390,2701,wikipedia,small +4648,385,2552,wikipedia,small +4485,386,2474,wikipedia,small +4464,383,2561,wikipedia,small +4468,392,2557,wikipedia,small +4538,390,2581,wikipedia,small +4648,388,2470,wikipedia,small +4466,384,2470,wikipedia,small +4456,386,2482,wikipedia,small +4465,385,2469,wikipedia,small \ No newline at end of file diff --git a/bench/results/dscape-study/dscape-creationix.csv b/bench/results/dscape-study/dscape-creationix.csv new file mode 100644 index 0000000..e8f8cec --- /dev/null +++ b/bench/results/dscape-study/dscape-creationix.csv @@ -0,0 +1,34 @@ +=N("node bench/sync.js samples/creationix.json 2000 9") +=N("clp (clarinet parser), cls (clarinet event emitter)") +=N("jpp (creationix/jsonparse), v8s (JSON.parse string)") +=N("v8b (JSON.parse buffer)") +clp, 1583 +jpp, 672 +v8s, 143 +clp, 1584 +jpp, 674 +v8s, 143 +clp, 1590 +jpp, 671 +v8s, 142 +clp, 1613 +jpp, 668 +v8s, 142 +clp, 1571 +jpp, 667 +v8s, 142 +clp, 1571 +jpp, 667 +v8s, 143 +clp, 1578 +jpp, 723 +v8s, 148 +clp, 1645 +jpp, 699 +v8s, 146 +clp, 1694 +jpp, 676 +v8s, 143 +clp, 1578 +jpp, 681 +v8s, 160 diff --git a/bench/results/dscape-study/dscape-npm.csv b/bench/results/dscape-study/dscape-npm.csv new file mode 100644 index 0000000..4b002ef --- /dev/null +++ b/bench/results/dscape-study/dscape-npm.csv @@ -0,0 +1,34 @@ +=N("node bench/sync.js samples/npm.json 1 9") +=N("clp (clarinet parser), cls (clarinet event emitter)") +=N("jpp (creationix/jsonparse), v8s (JSON.parse string)") +=N("v8b (JSON.parse buffer)") +clp, 834 +jpp, 1612 +v8s, 248 +clp, 882 +jpp, 1353 +v8s, 250 +clp, 873 +jpp, 1570 +v8s, 190 +clp, 861 +jpp, 1774 +v8s, 257 +clp, 841 +jpp, 1466 +v8s, 218 +clp, 878 +jpp, 1372 +v8s, 219 +clp, 844 +jpp, 1397 +v8s, 198 +clp, 879 +jpp, 1406 +v8s, 197 +clp, 881 +jpp, 1317 +v8s, 219 +clp, 839 +jpp, 1397 +v8s, 195 diff --git a/bench/results/dscape-study/dscape-twitter.csv b/bench/results/dscape-study/dscape-twitter.csv new file mode 100644 index 0000000..00ec750 --- /dev/null +++ b/bench/results/dscape-study/dscape-twitter.csv @@ -0,0 +1,34 @@ +=N("node bench/sync.js samples/twitter.json 1 9") +=N("clp (clarinet parser), cls (clarinet event emitter)") +=N("jpp (creationix/jsonparse), v8s (JSON.parse string)") +=N("v8b (JSON.parse buffer)") +clp, 1113 +jpp, 2402 +v8s, 207 +clp, 1092 +jpp, 1977 +v8s, 196 +clp, 1200 +jpp, 2004 +v8s, 177 +clp, 1084 +jpp, 1988 +v8s, 232 +clp, 1266 +jpp, 1981 +v8s, 206 +clp, 1178 +jpp, 1822 +v8s, 202 +clp, 1181 +jpp, 1817 +v8s, 202 +clp, 1181 +jpp, 1955 +v8s, 162 +clp, 1086 +jpp, 2156 +v8s, 176 +clp, 1213 +jpp, 1930 +v8s, 185 diff --git a/bench/results/dscape-study/dscape-wikipedia.csv b/bench/results/dscape-study/dscape-wikipedia.csv new file mode 100644 index 0000000..a6e3803 --- /dev/null +++ b/bench/results/dscape-study/dscape-wikipedia.csv @@ -0,0 +1,34 @@ +=N("node bench/sync.js samples/wikipedia.json 100000 9") +=N("clp (clarinet parser), cls (clarinet event emitter)") +=N("jpp (creationix/jsonparse), v8s (JSON.parse string)") +=N("v8b (JSON.parse buffer)") +clp, 4656 +jpp, 2701 +v8s, 390 +clp, 4648 +jpp, 2552 +v8s, 385 +clp, 4485 +jpp, 2474 +v8s, 386 +clp, 4464 +jpp, 2561 +v8s, 383 +clp, 4468 +jpp, 2557 +v8s, 392 +clp, 4538 +jpp, 2581 +v8s, 390 +clp, 4648 +jpp, 2470 +v8s, 388 +clp, 4466 +jpp, 2470 +v8s, 384 +clp, 4456 +jpp, 2482 +v8s, 386 +clp, 4465 +jpp, 2469 +v8s, 385 diff --git a/bench/results/sync/dscape-creationix.csv b/bench/results/sync/dscape-creationix.csv new file mode 100644 index 0000000..9c7e74e --- /dev/null +++ b/bench/results/sync/dscape-creationix.csv @@ -0,0 +1,54 @@ +=N("node bench/sync.js samples/creationix.json 2000 9") +=N("clp (clarinet parser), cls (clarinet event emitter)") +=N("jpp (creationix/jsonparse), v8s (JSON.parse string)") +=N("v8b (JSON.parse buffer)") +clp, 1569 +cls, 1954 +jpp, 692 +v8s, 144 +v8b, 155 +clp, 1866 +cls, 1954 +jpp, 823 +v8s, 143 +v8b, 153 +clp, 1873 +cls, 2027 +jpp, 731 +v8s, 143 +v8b, 154 +clp, 1873 +cls, 1945 +jpp, 683 +v8s, 144 +v8b, 154 +clp, 1869 +cls, 1942 +jpp, 787 +v8s, 150 +v8b, 154 +clp, 1874 +cls, 1958 +jpp, 683 +v8s, 143 +v8b, 153 +clp, 1871 +cls, 1958 +jpp, 717 +v8s, 143 +v8b, 153 +clp, 1865 +cls, 1943 +jpp, 707 +v8s, 154 +v8b, 153 +clp, 1866 +cls, 1955 +jpp, 688 +v8s, 145 +v8b, 153 +clp, 1876 +cls, 1997 +jpp, 687 +v8s, 143 +v8b, 154 diff --git a/bench/results/sync/dscape-npm.csv b/bench/results/sync/dscape-npm.csv new file mode 100644 index 0000000..d523d18 --- /dev/null +++ b/bench/results/sync/dscape-npm.csv @@ -0,0 +1,54 @@ +=N("node bench/sync.js samples/npm.json 1 9") +=N("clp (clarinet parser), cls (clarinet event emitter)") +=N("jpp (creationix/jsonparse), v8s (JSON.parse string)") +=N("v8b (JSON.parse buffer)") +clp, 847 +cls, 962 +jpp, 1660 +v8s, 252 +v8b, 291 +clp, 862 +cls, 1010 +jpp, 1486 +v8s, 211 +v8b, 311 +clp, 858 +cls, 939 +jpp, 1401 +v8s, 246 +v8b, 268 +clp, 856 +cls, 865 +jpp, 1440 +v8s, 201 +v8b, 332 +clp, 867 +cls, 952 +jpp, 1471 +v8s, 225 +v8b, 280 +clp, 881 +cls, 963 +jpp, 1388 +v8s, 250 +v8b, 276 +clp, 905 +cls, 986 +jpp, 1524 +v8s, 197 +v8b, 312 +clp, 871 +cls, 972 +jpp, 1459 +v8s, 239 +v8b, 327 +clp, 932 +cls, 988 +jpp, 1477 +v8s, 248 +v8b, 268 +clp, 970 +cls, 923 +jpp, 1525 +v8s, 198 +v8b, 305 diff --git a/bench/results/sync/dscape-twitter.csv b/bench/results/sync/dscape-twitter.csv new file mode 100644 index 0000000..25d713c --- /dev/null +++ b/bench/results/sync/dscape-twitter.csv @@ -0,0 +1,54 @@ +=N("node bench/sync.js samples/twitter.json 1 9") +=N("clp (clarinet parser), cls (clarinet event emitter)") +=N("jpp (creationix/jsonparse), v8s (JSON.parse string)") +=N("v8b (JSON.parse buffer)") +clp, 1078 +cls, 1235 +jpp, 2480 +v8s, 207 +v8b, 193 +clp, 1123 +cls, 1292 +jpp, 2367 +v8s, 193 +v8b, 194 +clp, 1129 +cls, 1253 +jpp, 2244 +v8s, 208 +v8b, 172 +clp, 1084 +cls, 1250 +jpp, 1844 +v8s, 225 +v8b, 172 +clp, 1086 +cls, 1228 +jpp, 1889 +v8s, 241 +v8b, 225 +clp, 1083 +cls, 1297 +jpp, 2492 +v8s, 218 +v8b, 203 +clp, 1086 +cls, 1220 +jpp, 2358 +v8s, 173 +v8b, 198 +clp, 1088 +cls, 1240 +jpp, 2266 +v8s, 193 +v8b, 189 +clp, 1139 +cls, 1205 +jpp, 1821 +v8s, 222 +v8b, 171 +clp, 1084 +cls, 1216 +jpp, 1818 +v8s, 221 +v8b, 172 diff --git a/bench/results/sync/dscape-wikipedia.csv b/bench/results/sync/dscape-wikipedia.csv new file mode 100644 index 0000000..13c96e5 --- /dev/null +++ b/bench/results/sync/dscape-wikipedia.csv @@ -0,0 +1,54 @@ +=N("node bench/sync.js samples/wikipedia.json 100000 9") +=N("clp (clarinet parser), cls (clarinet event emitter)") +=N("jpp (creationix/jsonparse), v8s (JSON.parse string)") +=N("v8b (JSON.parse buffer)") +clp, 4333 +cls, 4945 +jpp, 2469 +v8s, 385 +v8b, 485 +clp, 4981 +cls, 4992 +jpp, 2481 +v8s, 394 +v8b, 487 +clp, 5004 +cls, 5027 +jpp, 2457 +v8s, 385 +v8b, 485 +clp, 5117 +cls, 5267 +jpp, 2475 +v8s, 384 +v8b, 485 +clp, 5099 +cls, 5016 +jpp, 2569 +v8s, 386 +v8b, 485 +clp, 4992 +cls, 5041 +jpp, 2457 +v8s, 386 +v8b, 484 +clp, 5003 +cls, 5046 +jpp, 2514 +v8s, 387 +v8b, 487 +clp, 4986 +cls, 5014 +jpp, 2458 +v8s, 388 +v8b, 486 +clp, 5011 +cls, 5029 +jpp, 2473 +v8s, 387 +v8b, 488 +clp, 5067 +cls, 5004 +jpp, 2474 +v8s, 389 +v8b, 511 diff --git a/bench/sync.js b/bench/sync.js new file mode 100644 index 0000000..0113c83 --- /dev/null +++ b/bench/sync.js @@ -0,0 +1,62 @@ +// forked from github.com/creationix/jsonparse + +// brew install yajl +// npm install jsonparse yajl + +// node bench/sync.js samples/npm.json 5 +// jsonfile number of cycles + +var fs = require('fs') + , clarinet = require('../clarinet') + , Parser = require('jsonparse') + , jsonparser = new Parser() + , file = fs.readFileSync(process.argv[2]) + , string = file.toString() + , p = clarinet.parser() + , s = clarinet.createStream() + , max = process.argv[3] || 1 + , n = process.argv[4] || 9 + ; + +console.log('=N("node bench/sync.js ' + process.argv[2] + ' ' + + max + ' ' + n + '")'); +console.log('=N("clp (clarinet parser), cls (clarinet event emitter)")'); +console.log('=N("jpp (creationix/jsonparse), v8s (JSON.parse string)")'); +console.log('=N("v8b (JSON.parse buffer)")'); + +while (true) { + try { + start = Date.now(); + for (var i = 0; i < max; i++) p.write(string); + console.log("clp, %s", Date.now()-start); + } catch (ex1) { } + + // slower + try { + start = Date.now(); + for (var i = 0; i < max; i++) s.write(string); + console.log("cls, %s", Date.now()-start); + } catch (ex1) { } + + try { + start = Date.now(); + for (var i = 0; i < max; i++) jsonparser.write(file); + console.log("jpp, %s", Date.now()-start); + } catch (ex2) { } + + try { + start = Date.now(); + for (var i = 0; i < max; i++) JSON.parse(string); + console.log("v8s, %s", Date.now()-start); + } catch (ex3) { } + + // slower + try { + start = Date.now(); + for (var i = 0; i < max; i++) JSON.parse(file); + console.log("v8b, %s", Date.now()-start); + } catch (ex4) { } + + if(n===0) return; + n--; +} diff --git a/clarinet.js b/clarinet.js new file mode 100644 index 0000000..f344211 --- /dev/null +++ b/clarinet.js @@ -0,0 +1,654 @@ +;(function (clarinet) { + // non node-js needs to set clarinet debug on root + var env + , fastlist + ; + +if(typeof process === 'object' && process.env) env = process.env; +else env = window; + + clarinet.parser = function (opt) { return new CParser(opt);}; + clarinet.CParser = CParser; + clarinet.CStream = CStream; + clarinet.createStream = createStream; + clarinet.MAX_BUFFER_LENGTH = 64 * 1024; + clarinet.DEBUG = (env.CDEBUG==='debug'); + clarinet.INFO = (env.CDEBUG==='debug' || env.CDEBUG==='info'); + clarinet.EVENTS = + [ "value" + , "string" + , "key" + , "openobject" + , "closeobject" + , "openarray" + , "closearray" + , "error" + , "end" + , "ready" + ]; + + var buffers = { + textNode: undefined, + numberNode: "" + } + , streamWraps = clarinet.EVENTS.filter(function (ev) { + return ev !== "error" && ev !== "end"; + }) + , S = 0 + , Stream + ; + + clarinet.STATE = + { BEGIN : S++ + , VALUE : S++ // general stuff + , OPEN_OBJECT : S++ // { + , CLOSE_OBJECT : S++ // } + , OPEN_ARRAY : S++ // [ + , CLOSE_ARRAY : S++ // ] + , TEXT_ESCAPE : S++ // \ stuff + , STRING : S++ // "" + , BACKSLASH : S++ + , END : S++ // No more stack + , OPEN_KEY : S++ // , "a" + , CLOSE_KEY : S++ // : + , TRUE : S++ // r + , TRUE2 : S++ // u + , TRUE3 : S++ // e + , FALSE : S++ // a + , FALSE2 : S++ // l + , FALSE3 : S++ // s + , FALSE4 : S++ // e + , NULL : S++ // u + , NULL2 : S++ // l + , NULL3 : S++ // l + , NUMBER_DECIMAL_POINT : S++ // . + , NUMBER_DIGIT : S++ // [0-9] + }; + + for (var s_ in clarinet.STATE) clarinet.STATE[clarinet.STATE[s_]] = s_; + + // switcharoo + S = clarinet.STATE; + + if (!Object.create) { + Object.create = function (o) { + function f () { this["__proto__"] = o; } + f.prototype = o; + return new f; + }; + } + + if (!Object.getPrototypeOf) { + Object.getPrototypeOf = function (o) { + return o["__proto__"]; + }; + } + + if (!Object.keys) { + Object.keys = function (o) { + var a = []; + for (var i in o) if (o.hasOwnProperty(i)) a.push(i); + return a; + }; + } + + function checkBufferLength (parser) { + var maxAllowed = Math.max(clarinet.MAX_BUFFER_LENGTH, 10) + , maxActual = 0 + ; + for (var buffer in buffers) { + var len = parser[buffer] === undefined ? 0 : parser[buffer].length; + if (len > maxAllowed) { + switch (buffer) { + case "text": + closeText(parser); + break; + + default: + error(parser, "Max buffer length exceeded: "+ buffer); + } + } + maxActual = Math.max(maxActual, len); + } + parser.bufferCheckPosition = (clarinet.MAX_BUFFER_LENGTH - maxActual) + + parser.position; + } + + function clearBuffers (parser) { + for (var buffer in buffers) { + parser[buffer] = buffers[buffer]; + } + } + + var stringTokenPattern = /[\\"\n]/g; + + function CParser (opt) { + if (!(this instanceof CParser)) return new CParser (opt); + + var parser = this; + clearBuffers(parser); + parser.bufferCheckPosition = clarinet.MAX_BUFFER_LENGTH; + parser.q = parser.c = parser.p = ""; + parser.opt = opt || {}; + parser.closed = parser.closedRoot = parser.sawRoot = false; + parser.tag = parser.error = null; + parser.state = S.BEGIN; + parser.stack = new Array(); + // mostly just for error reporting + parser.position = parser.column = 0; + parser.line = 1; + parser.slashed = false; + parser.unicodeI = 0; + parser.unicodeS = null; + parser.depth = 0; + emit(parser, "onready"); + } + + CParser.prototype = + { end : function () { end(this); } + , write : write + , resume : function () { this.error = null; return this; } + , close : function () { return this.write(null); } + }; + + try { Stream = require("stream").Stream; } + catch (ex) { Stream = function () {}; } + + function createStream (opt) { return new CStream(opt); } + + function CStream (opt) { + if (!(this instanceof CStream)) return new CStream(opt); + + this._parser = new CParser(opt); + this.writable = true; + this.readable = true; + + //var Buffer = this.Buffer || function Buffer () {}; // if we don't have Buffers, fake it so we can do `var instanceof Buffer` and not throw an error + this.bytes_remaining = 0; // number of bytes remaining in multi byte utf8 char to read after split boundary + this.bytes_in_sequence = 0; // bytes in multi byte utf8 char to read + this.temp_buffs = { "2": new Buffer(2), "3": new Buffer(3), "4": new Buffer(4) }; // for rebuilding chars split before boundary is reached + this.string = ''; + + var me = this; + Stream.apply(me); + + this._parser.onend = function () { me.emit("end"); }; + this._parser.onerror = function (er) { + me.emit("error", er); + me._parser.error = null; + }; + + streamWraps.forEach(function (ev) { + Object.defineProperty(me, "on" + ev, + { get : function () { return me._parser["on" + ev]; } + , set : function (h) { + if (!h) { + me.removeAllListeners(ev); + me._parser["on"+ev] = h; + return h; + } + me.on(ev, h); + } + , enumerable : true + , configurable : false + }); + }); + } + + CStream.prototype = Object.create(Stream.prototype, + { constructor: { value: CStream } }); + + CStream.prototype.write = function (data) { + data = new Buffer(data); + for (var i = 0; i < data.length; i++) { + var n = data[i]; + + // check for carry over of a multi byte char split between data chunks + // & fill temp buffer it with start of this data chunk up to the boundary limit set in the last iteration + if (this.bytes_remaining > 0) { + for (var j = 0; j < this.bytes_remaining; j++) { + this.temp_buffs[this.bytes_in_sequence][this.bytes_in_sequence - this.bytes_remaining + j] = data[j]; + } + this.string = this.temp_buffs[this.bytes_in_sequence].toString(); + this.bytes_in_sequence = this.bytes_remaining = 0; + + // move iterator forward by number of byte read during sequencing + i = i + j - 1; + + // pass data to parser and move forward to parse rest of data + this._parser.write(this.string); + this.emit("data", this.string); + continue; + } + + // if no remainder bytes carried over, parse multi byte (>=128) chars one at a time + if (this.bytes_remaining === 0 && n >= 128) { + if ((n >= 194) && (n <= 223)) this.bytes_in_sequence = 2; + if ((n >= 224) && (n <= 239)) this.bytes_in_sequence = 3; + if ((n >= 240) && (n <= 244)) this.bytes_in_sequence = 4; + if ((this.bytes_in_sequence + i) > data.length) { // if bytes needed to complete char fall outside data length, we have a boundary split + + for (var k = 0; k <= (data.length - 1 - i); k++) { + this.temp_buffs[this.bytes_in_sequence][k] = data[i + k]; // fill temp data of correct size with bytes available in this chunk + } + this.bytes_remaining = (i + this.bytes_in_sequence) - data.length; + + // immediately return as we need another chunk to sequence the character + return true; + } else { + this.string = data.slice(i, (i + this.bytes_in_sequence)).toString(); + i = i + this.bytes_in_sequence - 1; + + this._parser.write(this.string); + this.emit("data", this.string); + continue; + } + } + + // is there a range of characters that are immediately parsable? + for (var p = i; p < data.length; p++) { + if (data[p] >= 128) break; + } + this.string = data.slice(i, p).toString(); + this._parser.write(this.string); + this.emit("data", this.string); + i = p - 1; + + // handle any remaining characters using multibyte logic + continue; + } + }; + + CStream.prototype.end = function (chunk) { + if (chunk && chunk.length) this._parser.write(chunk.toString()); + this._parser.end(); + return true; + }; + + CStream.prototype.on = function (ev, handler) { + var me = this; + if (!me._parser["on"+ev] && streamWraps.indexOf(ev) !== -1) { + me._parser["on"+ev] = function () { + var args = arguments.length === 1 ? [arguments[0]] + : Array.apply(null, arguments); + args.splice(0, 0, ev); + me.emit.apply(me, args); + }; + } + return Stream.prototype.on.call(me, ev, handler); + }; + + CStream.prototype.destroy = function () { + clearBuffers(this._parser); + this.emit("close"); + }; + + function emit(parser, event, data) { + if(clarinet.INFO) console.log('-- emit', event, data); + if (parser[event]) parser[event](data); + } + + function emitNode(parser, event, data) { + closeValue(parser); + emit(parser, event, data); + } + + function closeValue(parser, event) { + parser.textNode = textopts(parser.opt, parser.textNode); + if (parser.textNode !== undefined) { + emit(parser, (event ? event : "onvalue"), parser.textNode); + } + parser.textNode = undefined; + } + + function closeNumber(parser) { + if (parser.numberNode) + emit(parser, "onvalue", parseFloat(parser.numberNode)); + parser.numberNode = ""; + } + + function textopts (opt, text) { + if (text === undefined) { + return text; + } + if (opt.trim) text = text.trim(); + if (opt.normalize) text = text.replace(/\s+/g, " "); + return text; + } + + function error (parser, er) { + closeValue(parser); + er += "\nLine: "+parser.line+ + "\nColumn: "+parser.column+ + "\nChar: "+parser.c; + er = new Error(er); + parser.error = er; + emit(parser, "onerror", er); + return parser; + } + + function end(parser) { + if (parser.state !== S.VALUE || parser.depth !== 0) + error(parser, "Unexpected end"); + + closeValue(parser); + parser.c = ""; + parser.closed = true; + emit(parser, "onend"); + CParser.call(parser, parser.opt); + return parser; + } + + function write (chunk) { + var parser = this; + if (this.error) throw this.error; + if (parser.closed) return error(parser, + "Cannot write after close. Assign an onready handler."); + if (chunk === null) return end(parser); + var i = 0, c = chunk[0], p = parser.p; + if (clarinet.DEBUG) console.log('write -> [' + chunk + ']'); + while (c) { + p = c; + parser.c = c = chunk.charAt(i++); + // if chunk doesnt have next, like streaming char by char + // this way we need to check if previous is really previous + // if not we need to reset to what the parser says is the previous + // from buffer + if(p !== c ) parser.p = p; + else p = parser.p; + + if(!c) break; + + if (clarinet.DEBUG) console.log(i,c,clarinet.STATE[parser.state]); + parser.position ++; + if (c === "\n") { + parser.line ++; + parser.column = 0; + } else parser.column ++; + switch (parser.state) { + + case S.BEGIN: + if (c === "{") parser.state = S.OPEN_OBJECT; + else if (c === "[") parser.state = S.OPEN_ARRAY; + else if (c !== '\r' && c !== '\n' && c !== ' ' && c !== '\t') + error(parser, "Non-whitespace before {[."); + continue; + + case S.OPEN_KEY: + case S.OPEN_OBJECT: + if (c === '\r' || c === '\n' || c === ' ' || c === '\t') continue; + if(parser.state === S.OPEN_KEY) parser.stack.push(S.CLOSE_KEY); + else { + if(c === '}') { + emit(parser, 'onopenobject'); + this.depth++; + emit(parser, 'oncloseobject'); + this.depth--; + parser.state = parser.stack.pop() || S.VALUE; + continue; + } else parser.stack.push(S.CLOSE_OBJECT); + } + if(c === '"') parser.state = S.STRING; + else error(parser, "Malformed object key should start with \""); + continue; + + case S.CLOSE_KEY: + case S.CLOSE_OBJECT: + if (c === '\r' || c === '\n' || c === ' ' || c === '\t') continue; + var event = (parser.state === S.CLOSE_KEY) ? 'key' : 'object'; + if(c===':') { + if(parser.state === S.CLOSE_OBJECT) { + parser.stack.push(S.CLOSE_OBJECT); + closeValue(parser, 'onopenobject'); + this.depth++; + } else closeValue(parser, 'onkey'); + parser.state = S.VALUE; + } else if (c==='}') { + emitNode(parser, 'oncloseobject'); + this.depth--; + parser.state = parser.stack.pop() || S.VALUE; + } else if(c===',') { + if(parser.state === S.CLOSE_OBJECT) + parser.stack.push(S.CLOSE_OBJECT); + closeValue(parser); + parser.state = S.OPEN_KEY; + } else error(parser, 'Bad object'); + continue; + + case S.OPEN_ARRAY: // after an array there always a value + case S.VALUE: + if (c === '\r' || c === '\n' || c === ' ' || c === '\t') continue; + if(parser.state===S.OPEN_ARRAY) { + emit(parser, 'onopenarray'); + this.depth++; + parser.state = S.VALUE; + if(c === ']') { + emit(parser, 'onclosearray'); + this.depth--; + parser.state = parser.stack.pop() || S.VALUE; + continue; + } else { + parser.stack.push(S.CLOSE_ARRAY); + } + } + if(c === '"') parser.state = S.STRING; + else if(c === '{') parser.state = S.OPEN_OBJECT; + else if(c === '[') parser.state = S.OPEN_ARRAY; + else if(c === 't') parser.state = S.TRUE; + else if(c === 'f') parser.state = S.FALSE; + else if(c === 'n') parser.state = S.NULL; + else if(c === '-') { // keep and continue + parser.numberNode += c; + } else if(c==='0') { + parser.numberNode += c; + parser.state = S.NUMBER_DIGIT; + } else if('123456789'.indexOf(c) !== -1) { + parser.numberNode += c; + parser.state = S.NUMBER_DIGIT; + } else error(parser, "Bad value"); + continue; + + case S.CLOSE_ARRAY: + if(c===',') { + parser.stack.push(S.CLOSE_ARRAY); + closeValue(parser, 'onvalue'); + parser.state = S.VALUE; + } else if (c===']') { + emitNode(parser, 'onclosearray'); + this.depth--; + parser.state = parser.stack.pop() || S.VALUE; + } else if (c === '\r' || c === '\n' || c === ' ' || c === '\t') + continue; + else error(parser, 'Bad array'); + continue; + + case S.STRING: + if (parser.textNode === undefined) { + parser.textNode = ""; + } + + // thanks thejh, this is an about 50% performance improvement. + var starti = i-1 + , slashed = parser.slashed + , unicodeI = parser.unicodeI + ; + STRING_BIGLOOP: while (true) { + if (clarinet.DEBUG) + console.log(i,c,clarinet.STATE[parser.state] + ,slashed); + // zero means "no unicode active". 1-4 mean "parse some more". end after 4. + while (unicodeI > 0) { + parser.unicodeS += c; + c = chunk.charAt(i++); + parser.position++; + if (unicodeI === 4) { + // TODO this might be slow? well, probably not used too often anyway + parser.textNode += String.fromCharCode(parseInt(parser.unicodeS, 16)); + unicodeI = 0; + starti = i-1; + } else { + unicodeI++; + } + // we can just break here: no stuff we skipped that still has to be sliced out or so + if (!c) break STRING_BIGLOOP; + } + if (c === '"' && !slashed) { + parser.state = parser.stack.pop() || S.VALUE; + parser.textNode += chunk.substring(starti, i-1); + parser.position += i - 1 - starti; + break; + } + if (c === '\\' && !slashed) { + slashed = true; + parser.textNode += chunk.substring(starti, i-1); + parser.position += i - 1 - starti; + c = chunk.charAt(i++); + parser.position++; + if (!c) break; + } + if (slashed) { + slashed = false; + if (c === 'n') { parser.textNode += '\n'; } + else if (c === 'r') { parser.textNode += '\r'; } + else if (c === 't') { parser.textNode += '\t'; } + else if (c === 'f') { parser.textNode += '\f'; } + else if (c === 'b') { parser.textNode += '\b'; } + else if (c === 'u') { + // \uxxxx. meh! + unicodeI = 1; + parser.unicodeS = ''; + } else { + parser.textNode += c; + } + c = chunk.charAt(i++); + parser.position++; + starti = i-1; + if (!c) break; + else continue; + } + + stringTokenPattern.lastIndex = i; + var reResult = stringTokenPattern.exec(chunk); + if (reResult === null) { + i = chunk.length+1; + parser.textNode += chunk.substring(starti, i-1); + parser.position += i - 1 - starti; + break; + } + i = reResult.index+1; + c = chunk.charAt(reResult.index); + if (!c) { + parser.textNode += chunk.substring(starti, i-1); + parser.position += i - 1 - starti; + break; + } + } + parser.slashed = slashed; + parser.unicodeI = unicodeI; + continue; + + case S.TRUE: + if (c==='') continue; // strange buffers + if (c==='r') parser.state = S.TRUE2; + else error(parser, 'Invalid true started with t'+ c); + continue; + + case S.TRUE2: + if (c==='') continue; + if (c==='u') parser.state = S.TRUE3; + else error(parser, 'Invalid true started with tr'+ c); + continue; + + case S.TRUE3: + if (c==='') continue; + if(c==='e') { + emit(parser, "onvalue", true); + parser.state = parser.stack.pop() || S.VALUE; + } else error(parser, 'Invalid true started with tru'+ c); + continue; + + case S.FALSE: + if (c==='') continue; + if (c==='a') parser.state = S.FALSE2; + else error(parser, 'Invalid false started with f'+ c); + continue; + + case S.FALSE2: + if (c==='') continue; + if (c==='l') parser.state = S.FALSE3; + else error(parser, 'Invalid false started with fa'+ c); + continue; + + case S.FALSE3: + if (c==='') continue; + if (c==='s') parser.state = S.FALSE4; + else error(parser, 'Invalid false started with fal'+ c); + continue; + + case S.FALSE4: + if (c==='') continue; + if (c==='e') { + emit(parser, "onvalue", false); + parser.state = parser.stack.pop() || S.VALUE; + } else error(parser, 'Invalid false started with fals'+ c); + continue; + + case S.NULL: + if (c==='') continue; + if (c==='u') parser.state = S.NULL2; + else error(parser, 'Invalid null started with n'+ c); + continue; + + case S.NULL2: + if (c==='') continue; + if (c==='l') parser.state = S.NULL3; + else error(parser, 'Invalid null started with nu'+ c); + continue; + + case S.NULL3: + if (c==='') continue; + if(c==='l') { + emit(parser, "onvalue", null); + parser.state = parser.stack.pop() || S.VALUE; + } else error(parser, 'Invalid null started with nul'+ c); + continue; + + case S.NUMBER_DECIMAL_POINT: + if(c==='.') { + parser.numberNode += c; + parser.state = S.NUMBER_DIGIT; + } else error(parser, 'Leading zero not followed by .'); + continue; + + case S.NUMBER_DIGIT: + if('0123456789'.indexOf(c) !== -1) parser.numberNode += c; + else if (c==='.') { + if(parser.numberNode.indexOf('.')!==-1) + error(parser, 'Invalid number has two dots'); + parser.numberNode += c; + } else if (c==='e' || c==='E') { + if(parser.numberNode.indexOf('e')!==-1 || + parser.numberNode.indexOf('E')!==-1 ) + error(parser, 'Invalid number has two exponential'); + parser.numberNode += c; + } else if (c==="+" || c==="-") { + if(!(p==='e' || p==='E')) + error(parser, 'Invalid symbol in number'); + parser.numberNode += c; + } else { + closeNumber(parser); + i--; // go back one + parser.state = parser.stack.pop() || S.VALUE; + } + continue; + + default: + error(parser, "Unknown state: " + parser.state); + } + } + if (parser.position >= parser.bufferCheckPosition) + checkBufferLength(parser); + return parser; + } + +})(typeof exports === "undefined" ? clarinet = {} : exports); diff --git a/examples/big-not-pretty.xml b/examples/big-not-pretty.xml deleted file mode 100644 index fb5265d..0000000 --- a/examples/big-not-pretty.xml +++ /dev/null @@ -1,8002 +0,0 @@ - - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - - something blerm a bit down here - diff --git a/examples/example.js b/examples/example.js deleted file mode 100644 index e7f81e6..0000000 --- a/examples/example.js +++ /dev/null @@ -1,41 +0,0 @@ - -var fs = require("fs"), - sys = require("sys"), - path = require("path"), - xml = fs.cat(path.join(__dirname, "test.xml")), - sax = require("../lib/sax"), - strict = sax.parser(true), - loose = sax.parser(false, {trim:true}), - inspector = function (ev) { return function (data) { - // sys.error(""); - // sys.error(ev+": "+sys.inspect(data)); - // for (var i in data) sys.error(i+ " "+sys.inspect(data[i])); - // sys.error(this.line+":"+this.column); - }}; - -xml.addCallback(function (xml) { - // strict.write(xml); - - sax.EVENTS.forEach(function (ev) { - loose["on"+ev] = inspector(ev); - }); - loose.onend = function () { - // sys.error("end"); - // sys.error(sys.inspect(loose)); - }; - - // do this one char at a time to verify that it works. - // (function () { - // if (xml) { - // loose.write(xml.substr(0,1000)); - // xml = xml.substr(1000); - // process.nextTick(arguments.callee); - // } else loose.close(); - // })(); - - for (var i = 0; i < 1000; i ++) { - loose.write(xml); - loose.close(); - } - -}); diff --git a/examples/get-products.js b/examples/get-products.js deleted file mode 100644 index 9e8d74a..0000000 --- a/examples/get-products.js +++ /dev/null @@ -1,58 +0,0 @@ -// pull out /GeneralSearchResponse/categories/category/items/product tags -// the rest we don't care about. - -var sax = require("../lib/sax.js") -var fs = require("fs") -var path = require("path") -var xmlFile = path.resolve(__dirname, "shopping.xml") -var util = require("util") -var http = require("http") - -fs.readFile(xmlFile, function (er, d) { - http.createServer(function (req, res) { - if (er) throw er - var xmlstr = d.toString("utf8") - - var parser = sax.parser(true) - var products = [] - var product = null - var currentTag = null - - parser.onclosetag = function (tagName) { - if (tagName === "product") { - products.push(product) - currentTag = product = null - return - } - if (currentTag && currentTag.parent) { - var p = currentTag.parent - delete currentTag.parent - currentTag = p - } - } - - parser.onopentag = function (tag) { - if (tag.name !== "product" && !product) return - if (tag.name === "product") { - product = tag - } - tag.parent = currentTag - tag.children = [] - tag.parent && tag.parent.children.push(tag) - currentTag = tag - } - - parser.ontext = function (text) { - if (currentTag) currentTag.children.push(text) - } - - parser.onend = function () { - var out = util.inspect(products, false, 3, true) - res.writeHead(200, {"content-type":"application/json"}) - res.end("{\"ok\":true}") - // res.end(JSON.stringify(products)) - } - - parser.write(xmlstr).end() - }).listen(1337) -}) diff --git a/examples/hello-world.js b/examples/hello-world.js deleted file mode 100644 index cbfa518..0000000 --- a/examples/hello-world.js +++ /dev/null @@ -1,4 +0,0 @@ -require("http").createServer(function (req, res) { - res.writeHead(200, {"content-type":"application/json"}) - res.end(JSON.stringify({ok: true})) -}).listen(1337) diff --git a/examples/not-pretty.xml b/examples/not-pretty.xml deleted file mode 100644 index 9592852..0000000 --- a/examples/not-pretty.xml +++ /dev/null @@ -1,8 +0,0 @@ - - something blerm a bit down here diff --git a/examples/pretty-print.js b/examples/pretty-print.js deleted file mode 100644 index cd6aca9..0000000 --- a/examples/pretty-print.js +++ /dev/null @@ -1,74 +0,0 @@ -var sax = require("../lib/sax") - , printer = sax.createStream(false, {lowercasetags:true, trim:true}) - , fs = require("fs") - -function entity (str) { - return str.replace('"', '"') -} - -printer.tabstop = 2 -printer.level = 0 -printer.indent = function () { - print("\n") - for (var i = this.level; i > 0; i --) { - for (var j = this.tabstop; j > 0; j --) { - print(" ") - } - } -} -printer.on("opentag", function (tag) { - this.indent() - this.level ++ - print("<"+tag.name) - for (var i in tag.attributes) { - print(" "+i+"=\""+entity(tag.attributes[i])+"\"") - } - print(">") -}) - -printer.on("text", ontext) -printer.on("doctype", ontext) -function ontext (text) { - this.indent() - print(text) -} - -printer.on("closetag", function (tag) { - this.level -- - this.indent() - print("") -}) - -printer.on("cdata", function (data) { - this.indent() - print("") -}) - -printer.on("comment", function (comment) { - this.indent() - print("") -}) - -printer.on("error", function (error) { - console.error(error) - throw error -}) - -if (!process.argv[2]) { - throw new Error("Please provide an xml file to prettify\n"+ - "TODO: read from stdin or take a file") -} -var xmlfile = require("path").join(process.cwd(), process.argv[2]) -var fstr = fs.createReadStream(xmlfile, { encoding: "utf8" }) - -function print (c) { - if (!process.stdout.write(c)) { - fstr.pause() - } -} - -process.stdout.on("drain", function () { - fstr.resume() -}) - -fstr.pipe(printer) diff --git a/examples/shopping.xml b/examples/shopping.xml deleted file mode 100644 index 223c6c6..0000000 --- a/examples/shopping.xml +++ /dev/null @@ -1,2 +0,0 @@ - -sandbox3.1 r31.Kadu4DC.phase357782011.10.06 15:37:23 PSTp2.a121bc2aaf029435dce62011-10-21T18:38:45.982-04:00P0Y0M0DT0H0M0.169S1112You are currently using the SDC API sandbox environment! No clicks to merchant URLs from this response will be paid. Please change the host of your API requests to 'publisher.api.shopping.com' when you have finished development and testinghttp://statTest.dealtime.com/pixel/noscript?PV_EvnTyp=APPV&APPV_APITSP=10%2F21%2F11_06%3A38%3A45_PM&APPV_DSPRQSID=p2.a121bc2aaf029435dce6&APPV_IMGURL=http://img.shopping.com/sc/glb/sdc_logo_106x19.gif&APPV_LI_LNKINID=7000610&APPV_LI_SBMKYW=nikon&APPV_MTCTYP=1000&APPV_PRTID=2002&APPV_BrnID=14804http://www.shopping.com/digital-cameras/productsDigital CamerasDigital CamerasElectronicshttp://www.shopping.com/xCH-electronics-nikon~linkin_id-7000610?oq=nikonCameras and Photographyhttp://www.shopping.com/xCH-cameras_and_photography-nikon~linkin_id-7000610?oq=nikonDigital Camerashttp://www.shopping.com/digital-cameras/nikon/products?oq=nikon&linkin_id=7000610nikonnikonDigital Camerashttp://www.shopping.com/digital-cameras/nikon/products?oq=nikon&linkin_id=7000610Nikon D3100 Digital Camera14.2 Megapixel, SLR Camera, 3 in. LCD Screen, With High Definition Video, Weight: 1 lb.The Nikon D3100 digital SLR camera speaks to the growing ranks of enthusiastic D-SLR users and aspiring photographers by providing an easy-to-use and affordable entrance to the world of Nikon D-SLR’s. The 14.2-megapixel D3100 has powerful features, such as the enhanced Guide Mode that makes it easy to unleash creative potential and capture memories with still images and full HD video. Like having a personal photo tutor at your fingertips, this unique feature provides a simple graphical interface on the camera’s LCD that guides users by suggesting and/or adjusting camera settings to achieve the desired end result images. The D3100 is also the world’s first D-SLR to introduce full time auto focus (AF) in Live View and D-Movie mode to effortlessly achieve the critical focus needed when shooting Full HD 1080p video.http://di1.shopping.com/images/pi/93/bc/04/101677489-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=1http://di1.shopping.com/images/pi/93/bc/04/101677489-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=1http://di1.shopping.com/images/pi/93/bc/04/101677489-300x300-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=1http://di1.shopping.com/images/pi/93/bc/04/101677489-400x400-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=1http://di1.shopping.com/images/pi/93/bc/04/101677489-606x500-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=194.56http://img.shopping.com/sc/pr/sdc_stars_sm_4.5.gifhttp://www.shopping.com/Nikon-D3100/reviews~linkin_id-7000610429.001360.00http://www.shopping.com/Nikon-D3100/prices~linkin_id-7000610http://www.shopping.com/Nikon-D3100/info~linkin_id-7000610Nikon D3100 Digital SLR Camera with 18-55mm NIKKOR VR LensThe Nikon D3100 Digital SLR Camera is an affordable compact and lightweight photographic power-house. It features the all-purpose 18-55mm VR lens a high-resolution 14.2 MP CMOS sensor along with a feature set that's comprehensive yet easy to navigate - the intuitive onboard learn-as-you grow guide mode allows the photographer to understand what the 3100 can do quickly and easily. Capture beautiful pictures and amazing Full HD 1080p movies with sound and full-time autofocus. Availabilty: In Stock!7185Nikonhttp://di102.shopping.com/images/di/2d/5a/57/36424d5a717a366662532d61554c7767615f67-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1http://di102.shopping.com/images/di/2d/5a/57/36424d5a717a366662532d61554c7767615f67-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1http://di102.shopping.com/images/di/2d/5a/57/36424d5a717a366662532d61554c7767615f67-300x300-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1http://di102.shopping.com/images/di/2d/5a/57/36424d5a717a366662532d61554c7767615f67-350x350-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1in-stockFree Shipping with Any Purchase!529.000.00799.00http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=647&BEFID=7185&aon=%5E1&MerchantID=475674&crawler_id=475674&dealId=-ZW6BMZqz6fbS-aULwga_g%3D%3D&url=http%3A%2F%2Fwww.fumfie.com%2Fproduct%2F343.5%2Fshopping-com%3F&linkin_id=7000610&Issdt=111021183845&searchID=p2.a121bc2aaf029435dce6&DealName=Nikon+D3100+Digital+SLR+Camera+with+18-55mm+NIKKOR+VR+Lens&dlprc=529.0&crn=&istrsmrc=1&isathrsl=0&AR=1&NG=20&NDP=200&PN=1&ST=7&DB=sdcprod&MT=phx-pkadudc2&FPT=DSP&NDS=&NMS=&MRS=&PD=101677489&brnId=14804&IsFtr=0&IsSmart=0&DMT=&op=&CM=&DlLng=1&RR=1&cid=&semid1=&semid2=&IsLps=0&CC=1&SL=1&FS=1&code=&acode=658&category=&HasLink=&frameId=&ND=&MN=&PT=&prjID=&GR=&lnkId=&VK=FumFiehttp://img.shopping.com/cctool/merch_logos/475674.gif866 666 91985604.27http://img.shopping.com/sc/mr/sdc_checks_45.gifhttp://www.shopping.com/xMR-store_fumfie~MRD-475674~S-1~linkin_id-7000610http://img.shopping.com/sc/glb/flag/US.gifUSF343C5Nikon Nikon D3100 14.2MP Digital SLR Camera with 18-55mm f/3.5-5.6 AF-S DX VR, CamerasNikon D3100 14.2MP Digital SLR Camera with 18-55mm f/3.5-5.6 AF-S DX VR7185Nikonhttp://di109.shopping.com/images/di/6d/64/31/65396c443876644f7534464851664a714b6e67-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=2http://di109.shopping.com/images/di/6d/64/31/65396c443876644f7534464851664a714b6e67-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=2http://di109.shopping.com/images/di/6d/64/31/65396c443876644f7534464851664a714b6e67-300x300-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=2http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=2http://di109.shopping.com/images/di/6d/64/31/65396c443876644f7534464851664a714b6e67-385x352-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=2in-stock549.000.00549.00http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=779&BEFID=7185&aon=%5E1&MerchantID=305814&crawler_id=305814&dealId=md1e9lD8vdOu4FHQfJqKng%3D%3D&url=http%3A%2F%2Fwww.electronics-expo.com%2Findex.php%3Fpage%3Ditem%26id%3DNIKD3100%26source%3DSideCar%26scpid%3D8%26scid%3Dscsho318727%26&linkin_id=7000610&Issdt=111021183845&searchID=p2.a121bc2aaf029435dce6&DealName=Nikon+Nikon+D3100+14.2MP+Digital+SLR+Camera+with+18-55mm+f%2F3.5-5.6+AF-S+DX+VR%2C+Cameras&dlprc=549.0&crn=&istrsmrc=1&isathrsl=0&AR=9&NG=20&NDP=200&PN=1&ST=7&DB=sdcprod&MT=phx-pkadudc2&FPT=DSP&NDS=&NMS=&MRS=&PD=101677489&brnId=14804&IsFtr=0&IsSmart=0&DMT=&op=&CM=&DlLng=1&RR=9&cid=&semid1=&semid2=&IsLps=0&CC=0&SL=0&FS=1&code=&acode=771&category=&HasLink=&frameId=&ND=&MN=&PT=&prjID=&GR=&lnkId=&VK=Electronics Expohttp://img.shopping.com/cctool/merch_logos/305814.gif1-888-707-EXPO3713.90http://img.shopping.com/sc/mr/sdc_checks_4.gifhttp://www.shopping.com/xMR-store_electronics_expo~MRD-305814~S-1~linkin_id-7000610http://img.shopping.com/sc/glb/flag/US.gifUSNIKD3100Nikon D3100 14.2-Megapixel Digital SLR Camera With 18-55mm Zoom-Nikkor Lens, BlackSplit-second shutter response captures shots other cameras may have missed Helps eliminate the frustration of shutter delay! 14.2-megapixels for enlargements worth framing and hanging. Takes breathtaking 1080p HD movies. ISO sensitivity from 100-1600 for bright or dimly lit settings. 3.0in. color LCD for beautiful, wide-angle framing and viewing. In-camera image editing lets you retouch with no PC. Automatic scene modes include Child, Sports, Night Portrait and more. Accepts SDHC memory cards. Nikon D3100 14.2-Megapixel Digital SLR Camera With 18-55mm Zoom-Nikkor Lens, Black is one of many Digital SLR Cameras available through Office Depot. Made by Nikon.7185Nikonhttp://di109.shopping.com/images/di/79/59/75/61586e4446744359377244556a6b5932616177-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=3http://di109.shopping.com/images/di/79/59/75/61586e4446744359377244556a6b5932616177-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=3http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=3http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=3http://di109.shopping.com/images/di/79/59/75/61586e4446744359377244556a6b5932616177-250x250-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=3in-stock549.990.00699.99http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=698&BEFID=7185&aon=%5E1&MerchantID=467671&crawler_id=467671&dealId=yYuaXnDFtCY7rDUjkY2aaw%3D%3D&url=http%3A%2F%2Flink.mercent.com%2Fredirect.ashx%3Fmr%3AmerchantID%3DOfficeDepot%26mr%3AtrackingCode%3DCEC9669E-6ABC-E011-9F24-0019B9C043EB%26mr%3AtargetUrl%3Dhttp%3A%2F%2Fwww.officedepot.com%2Fa%2Fproducts%2F486292%2FNikon-D3100-142-Megapixel-Digital-SLR%2F%253fcm_mmc%253dMercent-_-Shopping-_-Cameras_and_Camcorders-_-486292&linkin_id=7000610&Issdt=111021183845&searchID=p2.a121bc2aaf029435dce6&DealName=Nikon+D3100+14.2-Megapixel+Digital+SLR+Camera+With+18-55mm+Zoom-Nikkor+Lens%2C+Black&dlprc=549.99&crn=&istrsmrc=1&isathrsl=0&AR=10&NG=20&NDP=200&PN=1&ST=7&DB=sdcprod&MT=phx-pkadudc2&FPT=DSP&NDS=&NMS=&MRS=&PD=101677489&brnId=14804&IsFtr=0&IsSmart=0&DMT=&op=&CM=&DlLng=1&RR=10&cid=&semid1=&semid2=&IsLps=0&CC=1&SL=1&FS=1&code=&acode=690&category=&HasLink=&frameId=&ND=&MN=&PT=&prjID=&GR=&lnkId=&VK=Office Depothttp://img.shopping.com/cctool/merch_logos/467671.gif1-800-GO-DEPOT1352.37http://img.shopping.com/sc/mr/sdc_checks_25.gifhttp://www.shopping.com/xMR-store_office_depot_4158555~MRD-467671~S-1~linkin_id-7000610http://img.shopping.com/sc/glb/flag/US.gifUS486292Nikon® D3100™ 14.2MP Digital SLR with 18-55mm LensThe Nikon D3100 DSLR will surprise you with its simplicity and impress you with superb results.7185Nikonhttp://di103.shopping.com/images/di/52/6c/35/36553743756954597348344d475a30326c7851-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=4http://di103.shopping.com/images/di/52/6c/35/36553743756954597348344d475a30326c7851-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=4http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=4http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=4http://di103.shopping.com/images/di/52/6c/35/36553743756954597348344d475a30326c7851-220x220-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=4in-stock549.996.05549.99http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=504&BEFID=7185&aon=%5E1&MerchantID=332477&crawler_id=332477&dealId=Rl56U7CuiTYsH4MGZ02lxQ%3D%3D&url=http%3A%2F%2Ftracking.searchmarketing.com%2Fgsic.asp%3Faid%3D903483107%26&linkin_id=7000610&Issdt=111021183845&searchID=p2.a121bc2aaf029435dce6&DealName=Nikon%C2%AE+D3100%E2%84%A2+14.2MP+Digital+SLR+with+18-55mm+Lens&dlprc=549.99&crn=&istrsmrc=0&isathrsl=0&AR=11&NG=20&NDP=200&PN=1&ST=7&DB=sdcprod&MT=phx-pkadudc2&FPT=DSP&NDS=&NMS=&MRS=&PD=101677489&brnId=14804&IsFtr=0&IsSmart=0&DMT=&op=&CM=&DlLng=1&RR=11&cid=&semid1=&semid2=&IsLps=0&CC=0&SL=0&FS=0&code=&acode=496&category=&HasLink=&frameId=&ND=&MN=&PT=&prjID=&GR=&lnkId=&VK=RadioShackhttp://img.shopping.com/cctool/merch_logos/332477.gif242.25http://img.shopping.com/sc/mr/sdc_checks_25.gifhttp://www.shopping.com/xMR-store_radioshack_9689~MRD-332477~S-1~linkin_id-7000610http://img.shopping.com/sc/glb/flag/US.gifUS9614867Nikon D3100 SLR w/Nikon 18-55mm VR & 55-200mm VR Lenses14.2 Megapixels3" LCDLive ViewHD 1080p Video w/ Sound & Autofocus11-point Autofocus3 Frames per Second ShootingISO 100 to 3200 (Expand to 12800-Hi2)Self Cleaning SensorEXPEED 2, Image Processing EngineScene Recognition System7185Nikonhttp://di105.shopping.com/images/di/68/75/53/36785a4b444b614b4d544d5037316549364441-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=5http://di105.shopping.com/images/di/68/75/53/36785a4b444b614b4d544d5037316549364441-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=5http://di105.shopping.com/images/di/68/75/53/36785a4b444b614b4d544d5037316549364441-300x300-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=5http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=5http://di105.shopping.com/images/di/68/75/53/36785a4b444b614b4d544d5037316549364441-345x345-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=5in-stock695.000.00695.00http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=371&BEFID=7185&aon=%5E1&MerchantID=487342&crawler_id=487342&dealId=huS6xZKDKaKMTMP71eI6DA%3D%3D&url=http%3A%2F%2Fwww.rythercamera.com%2Fcatalog%2Fproduct_info.php%3Fcsv%3Dsh%26products_id%3D32983%26&linkin_id=7000610&Issdt=111021183845&searchID=p2.a121bc2aaf029435dce6&DealName=Nikon+D3100+SLR+w%2FNikon+18-55mm+VR+%26+55-200mm+VR+Lenses&dlprc=695.0&crn=&istrsmrc=0&isathrsl=0&AR=15&NG=20&NDP=200&PN=1&ST=7&DB=sdcprod&MT=phx-pkadudc2&FPT=DSP&NDS=&NMS=&MRS=&PD=101677489&brnId=14804&IsFtr=0&IsSmart=0&DMT=&op=&CM=&DlLng=1&RR=15&cid=&semid1=&semid2=&IsLps=0&CC=0&SL=0&FS=1&code=&acode=379&category=&HasLink=&frameId=&ND=&MN=&PT=&prjID=&GR=&lnkId=&VK=RytherCamera.comhttp://img.shopping.com/cctool/merch_logos/487342.gif1-877-644-75930http://img.shopping.com/sc/glb/flag/US.gifUS32983Nikon COOLPIX S203 Digital Camera10 Megapixel, Ultra-Compact Camera, 2.5 in. LCD Screen, 3x Optical Zoom, With Video Capability, Weight: 0.23 lb.With 10.34 mega pixel, electronic VR vibration reduction, 5-level brightness adjustment, 3x optical zoom, and TFT LCD, Nikon Coolpix s203 fulfills all the demands of any photographer. The digital camera has an inbuilt memory of 44MB and an external memory slot made for all kinds of SD (Secure Digital) cards.http://di1.shopping.com/images/pi/c4/ef/1b/95397883-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=2http://di1.shopping.com/images/pi/c4/ef/1b/95397883-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=2http://di1.shopping.com/images/pi/c4/ef/1b/95397883-300x300-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=2http://di1.shopping.com/images/pi/c4/ef/1b/95397883-400x400-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=2http://di1.shopping.com/images/pi/c4/ef/1b/95397883-500x499-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=20139.00139.00http://www.shopping.com/Nikon-Coolpix-S203/prices~linkin_id-7000610http://www.shopping.com/Nikon-Coolpix-S203/info~linkin_id-7000610Nikon Coolpix S203 Digital Camera (Red)With 10.34 mega pixel, electronic VR vibration reduction, 5-level brightness adjustment, 3x optical zoom, and TFT LCD, Nikon Coolpix s203 fulfills all the demands of any photographer. The digital camera has an inbuilt memory of 44MB and an external memory slot made for all kinds of SD (Secure Digital) cards.7185Nikonhttp://di108.shopping.com/images/di/73/42/64/324a6e4945504d2d415f6c42414d31525a6751-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1http://di108.shopping.com/images/di/73/42/64/324a6e4945504d2d415f6c42414d31525a6751-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1http://di108.shopping.com/images/di/73/42/64/324a6e4945504d2d415f6c42414d31525a6751-300x300-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1http://di108.shopping.com/images/di/73/42/64/324a6e4945504d2d415f6c42414d31525a6751-400x400-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1http://di108.shopping.com/images/di/73/42/64/324a6e4945504d2d415f6c42414d31525a6751-500x500-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1in-stockFantastic prices with ease & comfort of Amazon.com!139.009.50139.00http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=566&BEFID=7185&aon=%5E1&MerchantID=301531&crawler_id=1903313&dealId=sBd2JnIEPM-A_lBAM1RZgQ%3D%3D&url=http%3A%2F%2Fwww.amazon.com%2Fdp%2FB002T964IM%2Fref%3Dasc_df_B002T964IM1751618%3Fsmid%3DA22UHVNXG98FAT%26tag%3Ddealtime-ce-mp01feed-20%26linkCode%3Dasn%26creative%3D395105%26creativeASIN%3DB002T964IM&linkin_id=7000610&Issdt=111021183845&searchID=p2.a121bc2aaf029435dce6&DealName=Nikon+Coolpix+S203+Digital+Camera+%28Red%29&dlprc=139.0&crn=&istrsmrc=0&isathrsl=0&AR=63&NG=20&NDP=200&PN=1&ST=7&DB=sdcprod&MT=phx-pkadudc2&FPT=DSP&NDS=&NMS=&MRS=&PD=95397883&brnId=14804&IsFtr=0&IsSmart=0&DMT=&op=&CM=&DlLng=1&RR=63&cid=&semid1=&semid2=&IsLps=0&CC=0&SL=0&FS=0&code=&acode=518&category=&HasLink=&frameId=&ND=&MN=&PT=&prjID=&GR=&lnkId=&VK=Amazon Marketplacehttp://img.shopping.com/cctool/merch_logos/301531.gif2132.73http://img.shopping.com/sc/mr/sdc_checks_25.gifhttp://www.shopping.com/xMR-store_amazon_marketplace_9689~MRD-301531~S-1~linkin_id-7000610http://img.shopping.com/sc/glb/flag/US.gifUSB002T964IMNikon S3100 Digital Camera14.5 Megapixel, Compact Camera, 2.7 in. LCD Screen, 5x Optical Zoom, With High Definition Video, Weight: 0.23 lb.This digital camera features a wide-angle optical Zoom-NIKKOR glass lens that allows you to capture anything from landscapes to portraits to action shots. The high-definition movie mode with one-touch recording makes it easy to capture video clips.http://di1.shopping.com/images/pi/66/2d/33/106834268-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=3http://di1.shopping.com/images/pi/66/2d/33/106834268-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=3http://di1.shopping.com/images/pi/66/2d/33/106834268-300x300-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=3http://di1.shopping.com/images/pi/66/2d/33/106834268-400x400-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=3http://di1.shopping.com/images/pi/66/2d/33/106834268-507x387-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=312.00http://img.shopping.com/sc/pr/sdc_stars_sm_2.gifhttp://www.shopping.com/nikon-s3100/reviews~linkin_id-700061099.95134.95http://www.shopping.com/nikon-s3100/prices~linkin_id-7000610http://www.shopping.com/nikon-s3100/info~linkin_id-7000610CoolPix S3100 14 Megapixel Compact Digital Camera- RedNikon Coolpix S3100 - Digital camera - compact - 14.0 Mpix - optical zoom: 5 x - supported memory: SD, SDXC, SDHC - red7185Nikonhttp://di111.shopping.com/images/di/55/55/79/476f71563872302d78726b6e2d726e474e6267-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1http://di111.shopping.com/images/di/55/55/79/476f71563872302d78726b6e2d726e474e6267-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1http://di111.shopping.com/images/di/55/55/79/476f71563872302d78726b6e2d726e474e6267-300x300-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1http://di111.shopping.com/images/di/55/55/79/476f71563872302d78726b6e2d726e474e6267-400x400-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1in-stockGet 30 days FREE SHIPPING w/ ShipVantage119.956.95139.95http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=578&BEFID=7185&aon=%5E1&MerchantID=485615&crawler_id=485615&dealId=UUyGoqV8r0-xrkn-rnGNbg%3D%3D&url=http%3A%2F%2Fsears.rdr.channelintelligence.com%2Fgo.asp%3FfVhzOGNRAAQIASNiE1NbQBJpFHJ3Yx0CTAICI2BbH1lEFmgKP3QvUVpEREdlfUAUHAQPLVpFTVdtJzxAHUNYW3AhQBM0QhFvEXAbYh8EAAVmDAJeU1oyGG0GcBdhGwUGCAVqYF9SO0xSN1sZdmA7dmMdBQAJB24qX1NbQxI6AjA2ME5dVFULPDsGPFcQTTdaLTA6SR0OFlQvPAwMDxYcYlxIVkcoLTcCDA%3D%3D%26nAID%3D13736960%26&linkin_id=7000610&Issdt=111021183845&searchID=p2.a121bc2aaf029435dce6&DealName=CoolPix+S3100+14+Megapixel+Compact+Digital+Camera-+Red&dlprc=119.95&crn=&istrsmrc=1&isathrsl=0&AR=28&NG=20&NDP=200&PN=1&ST=7&DB=sdcprod&MT=phx-pkadudc2&FPT=DSP&NDS=&NMS=&MRS=&PD=106834268&brnId=14804&IsFtr=0&IsSmart=0&DMT=&op=&CM=&DlLng=1&RR=28&cid=&semid1=&semid2=&IsLps=0&CC=0&SL=1&FS=0&code=&acode=583&category=&HasLink=&frameId=&ND=&MN=&PT=&prjID=&GR=&lnkId=&VK=Searshttp://img.shopping.com/cctool/merch_logos/485615.gif1-800-349-43588882.85http://img.shopping.com/sc/mr/sdc_checks_3.gifhttp://www.shopping.com/xMR-store_sears_4189479~MRD-485615~S-1~linkin_id-7000610http://img.shopping.com/sc/glb/flag/US.gifUS00337013000COOLPIX S3100 PinkNikon Coolpix S3100 - Digital camera - compact - 14.0 Mpix - optical zoom: 5 x - supported memory: SD, SDXC, SDHC - pink7185Nikonhttp://di111.shopping.com/images/di/58/38/37/4177586c573164586f4d586b34515144546f51-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=2http://di111.shopping.com/images/di/58/38/37/4177586c573164586f4d586b34515144546f51-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=2http://di111.shopping.com/images/di/58/38/37/4177586c573164586f4d586b34515144546f51-300x300-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=2http://di111.shopping.com/images/di/58/38/37/4177586c573164586f4d586b34515144546f51-400x400-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=2in-stockGet 30 days FREE SHIPPING w/ ShipVantage119.956.95139.95http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=578&BEFID=7185&aon=%5E1&MerchantID=485615&crawler_id=485615&dealId=X87AwXlW1dXoMXk4QQDToQ%3D%3D&url=http%3A%2F%2Fsears.rdr.channelintelligence.com%2Fgo.asp%3FfVhzOGNRAAQIASNiE1NbQBJpFHJxYx0CTAICI2BbH1lEFmgKP3QvUVpEREdlfUAUHAQPLVpFTVdtJzxAHUNYW3AhQBM0QhFvEXAbYh8EAAVmb2JcUFxDEGsPc3QDEkFZVQ0WFhdRW0MWbgYWDlxzdGMdAVQWRi0xDAwPFhw9TSobb05eWVVYKzsLTFVVQi5RICs3SA8MU1s2MQQKD1wf%26nAID%3D13736960%26&linkin_id=7000610&Issdt=111021183845&searchID=p2.a121bc2aaf029435dce6&DealName=COOLPIX+S3100+Pink&dlprc=119.95&crn=&istrsmrc=1&isathrsl=0&AR=31&NG=20&NDP=200&PN=1&ST=7&DB=sdcprod&MT=phx-pkadudc2&FPT=DSP&NDS=&NMS=&MRS=&PD=106834268&brnId=14804&IsFtr=0&IsSmart=0&DMT=&op=&CM=&DlLng=1&RR=31&cid=&semid1=&semid2=&IsLps=0&CC=0&SL=1&FS=0&code=&acode=583&category=&HasLink=&frameId=&ND=&MN=&PT=&prjID=&GR=&lnkId=&VK=Searshttp://img.shopping.com/cctool/merch_logos/485615.gif1-800-349-43588882.85http://img.shopping.com/sc/mr/sdc_checks_3.gifhttp://www.shopping.com/xMR-store_sears_4189479~MRD-485615~S-1~linkin_id-7000610http://img.shopping.com/sc/glb/flag/US.gifUS00337015000Nikon Coolpix S3100 14.0 MP Digital Camera - SilverNikon Coolpix S3100 14.0 MP Digital Camera - Silver7185Nikonhttp://di109.shopping.com/images/di/6e/76/46/776e70664134726c413144626b736473613077-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=3http://di109.shopping.com/images/di/6e/76/46/776e70664134726c413144626b736473613077-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=3http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=3http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=3http://di109.shopping.com/images/di/6e/76/46/776e70664134726c413144626b736473613077-270x270-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=3in-stock109.970.00109.97http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=803&BEFID=7185&aon=%5E&MerchantID=475774&crawler_id=475774&dealId=nvFwnpfA4rlA1Dbksdsa0w%3D%3D&url=http%3A%2F%2Fwww.thewiz.com%2Fcatalog%2Fproduct.jsp%3FmodelNo%3DS3100SILVER%26gdftrk%3DgdfV2677_a_7c996_a_7c4049_a_7c26262&linkin_id=7000610&Issdt=111021183845&searchID=p2.a121bc2aaf029435dce6&DealName=Nikon+Coolpix+S3100+14.0+MP+Digital+Camera+-+Silver&dlprc=109.97&crn=&istrsmrc=0&isathrsl=0&AR=33&NG=20&NDP=200&PN=1&ST=7&DB=sdcprod&MT=phx-pkadudc2&FPT=DSP&NDS=&NMS=&MRS=&PD=106834268&brnId=14804&IsFtr=0&IsSmart=0&DMT=&op=&CM=&DlLng=1&RR=33&cid=&semid1=&semid2=&IsLps=0&CC=0&SL=0&FS=1&code=&acode=797&category=&HasLink=&frameId=&ND=&MN=&PT=&prjID=&GR=&lnkId=&VK=TheWiz.comhttp://img.shopping.com/cctool/merch_logos/475774.gif877-542-69880http://img.shopping.com/sc/glb/flag/US.gifUS26262Nikon� COOLPIX� S3100 14MP Digital Camera (Silver)The Nikon COOLPIX S3100 is the easy way to share your life and stay connected.7185Nikonhttp://di102.shopping.com/images/di/35/47/74/614e324e6572794b7770732d5365326c2d3467-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=4http://di102.shopping.com/images/di/35/47/74/614e324e6572794b7770732d5365326c2d3467-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=4http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=4http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=4http://di102.shopping.com/images/di/35/47/74/614e324e6572794b7770732d5365326c2d3467-220x220-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=4in-stock119.996.05119.99http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=504&BEFID=7185&aon=%5E1&MerchantID=332477&crawler_id=332477&dealId=5GtaN2NeryKwps-Se2l-4g%3D%3D&url=http%3A%2F%2Ftracking.searchmarketing.com%2Fgsic.asp%3Faid%3D848064082%26&linkin_id=7000610&Issdt=111021183845&searchID=p2.a121bc2aaf029435dce6&DealName=Nikon%C3%AF%C2%BF%C2%BD+COOLPIX%C3%AF%C2%BF%C2%BD+S3100+14MP+Digital+Camera+%28Silver%29&dlprc=119.99&crn=&istrsmrc=0&isathrsl=0&AR=37&NG=20&NDP=200&PN=1&ST=7&DB=sdcprod&MT=phx-pkadudc2&FPT=DSP&NDS=&NMS=&MRS=&PD=106834268&brnId=14804&IsFtr=0&IsSmart=0&DMT=&op=&CM=&DlLng=1&RR=37&cid=&semid1=&semid2=&IsLps=0&CC=0&SL=0&FS=0&code=&acode=509&category=&HasLink=&frameId=&ND=&MN=&PT=&prjID=&GR=&lnkId=&VK=RadioShackhttp://img.shopping.com/cctool/merch_logos/332477.gif242.25http://img.shopping.com/sc/mr/sdc_checks_25.gifhttp://www.shopping.com/xMR-store_radioshack_9689~MRD-332477~S-1~linkin_id-7000610http://img.shopping.com/sc/glb/flag/US.gifUS10101095COOLPIX S3100 YellowNikon Coolpix S3100 - Digital camera - compact - 14.0 Mpix - optical zoom: 5 x - supported memory: SD, SDXC, SDHC - yellow7185Nikonhttp://di107.shopping.com/images/di/61/34/33/6d305258756c5833387a436e516a5535396a77-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=5http://di107.shopping.com/images/di/61/34/33/6d305258756c5833387a436e516a5535396a77-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=5http://di107.shopping.com/images/di/61/34/33/6d305258756c5833387a436e516a5535396a77-300x300-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=5http://di107.shopping.com/images/di/61/34/33/6d305258756c5833387a436e516a5535396a77-400x400-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=5in-stockGet 30 days FREE SHIPPING w/ ShipVantage119.956.95139.95http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=578&BEFID=7185&aon=%5E1&MerchantID=485615&crawler_id=485615&dealId=a43m0RXulX38zCnQjU59jw%3D%3D&url=http%3A%2F%2Fsears.rdr.channelintelligence.com%2Fgo.asp%3FfVhzOGNRAAQIASNiE1NbQBJpFHJwYx0CTAICI2BbH1lEFmgKP3QvUVpEREdlfUAUHAQPLVpFTVdtJzxAHUNYW3AhQBM0QhFvEXAbYh8EAAVmb2JcUFxDEGoPc3QDEkFZVQ0WFhdRW0MWbgYWDlxzdGMdAVQWRi0xDAwPFhw9TSobb05eWVVYKzsLTFVVQi5RICs3SA8MU1s2MQQKD1wf%26nAID%3D13736960%26&linkin_id=7000610&Issdt=111021183845&searchID=p2.a121bc2aaf029435dce6&DealName=COOLPIX+S3100+Yellow&dlprc=119.95&crn=&istrsmrc=1&isathrsl=0&AR=38&NG=20&NDP=200&PN=1&ST=7&DB=sdcprod&MT=phx-pkadudc2&FPT=DSP&NDS=&NMS=&MRS=&PD=106834268&brnId=14804&IsFtr=0&IsSmart=0&DMT=&op=&CM=&DlLng=1&RR=38&cid=&semid1=&semid2=&IsLps=0&CC=0&SL=1&FS=0&code=&acode=583&category=&HasLink=&frameId=&ND=&MN=&PT=&prjID=&GR=&lnkId=&VK=Searshttp://img.shopping.com/cctool/merch_logos/485615.gif1-800-349-43588882.85http://img.shopping.com/sc/mr/sdc_checks_3.gifhttp://www.shopping.com/xMR-store_sears_4189479~MRD-485615~S-1~linkin_id-7000610http://img.shopping.com/sc/glb/flag/US.gifUS00337014000Nikon D90 Digital Camera12.3 Megapixel, Point and Shoot Camera, 3 in. LCD Screen, With Video Capability, Weight: 1.36 lb.Untitled Document Nikon D90 SLR Digital Camera With 28-80mm 75-300mm Lens Kit The Nikon D90 SLR Digital Camera, with its 12.3-megapixel DX-format CMOS, 3" High resolution LCD display, Scene Recognition System, Picture Control, Active D-Lighting, and one-button Live View, provides photo enthusiasts with the image quality and performance they need to pursue their own vision while still being intuitive enough for use as an everyday camera.http://di1.shopping.com/images/pi/52/fb/d3/99671132-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=4http://di1.shopping.com/images/pi/52/fb/d3/99671132-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=4http://di1.shopping.com/images/pi/52/fb/d3/99671132-300x300-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=4http://di1.shopping.com/images/pi/52/fb/d3/99671132-400x400-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=4http://di1.shopping.com/images/pi/52/fb/d3/99671132-499x255-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=475.00http://img.shopping.com/sc/pr/sdc_stars_sm_5.gifhttp://www.shopping.com/Nikon-D90-with-18-270mm-Lens/reviews~linkin_id-7000610689.002299.00http://www.shopping.com/Nikon-D90-with-18-270mm-Lens/prices~linkin_id-7000610http://www.shopping.com/Nikon-D90-with-18-270mm-Lens/info~linkin_id-7000610Nikon® D90 12.3MP Digital SLR Camera (Body Only)The Nikon D90 will make you rethink what a digital SLR camera can achieve.7185Nikonhttp://di106.shopping.com/images/di/47/55/35/4a4a6b70554178653548756a4237666b774141-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1http://di106.shopping.com/images/di/47/55/35/4a4a6b70554178653548756a4237666b774141-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1http://di106.shopping.com/images/di/47/55/35/4a4a6b70554178653548756a4237666b774141-220x220-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1in-stock1015.996.051015.99http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=504&BEFID=7185&aon=%5E1&MerchantID=332477&crawler_id=332477&dealId=GU5JJkpUAxe5HujB7fkwAA%3D%3D&url=http%3A%2F%2Ftracking.searchmarketing.com%2Fgsic.asp%3Faid%3D851830266%26&linkin_id=7000610&Issdt=111021183845&searchID=p2.a121bc2aaf029435dce6&DealName=Nikon%C2%AE+D90+12.3MP+Digital+SLR+Camera+%28Body+Only%29&dlprc=1015.99&crn=&istrsmrc=0&isathrsl=0&AR=14&NG=20&NDP=200&PN=1&ST=7&DB=sdcprod&MT=phx-pkadudc2&FPT=DSP&NDS=&NMS=&MRS=&PD=99671132&brnId=14804&IsFtr=0&IsSmart=0&DMT=&op=&CM=&DlLng=1&RR=14&cid=&semid1=&semid2=&IsLps=0&CC=0&SL=0&FS=0&code=&acode=496&category=&HasLink=&frameId=&ND=&MN=&PT=&prjID=&GR=&lnkId=&VK=RadioShackhttp://img.shopping.com/cctool/merch_logos/332477.gif242.25http://img.shopping.com/sc/mr/sdc_checks_25.gifhttp://www.shopping.com/xMR-store_radioshack_9689~MRD-332477~S-1~linkin_id-7000610http://img.shopping.com/sc/glb/flag/US.gifUS10148659Nikon D90 SLR Digital Camera (Camera Body)The Nikon D90 SLR Digital Camera with its 12.3-megapixel DX-format CCD 3" High resolution LCD display Scene Recognition System Picture Control Active D-Lighting and one-button Live View provides photo enthusiasts with the image quality and performance they need to pursue their own vision while still being intuitive enough for use as an everyday camera. In addition the D90 introduces the D-Movie mode allowing for the first time an interchangeable lens SLR camera that is capable of recording 720p HD movie clips. Availabilty: In Stock7185Nikonhttp://di109.shopping.com/images/di/58/68/55/527553432d73704262544944666f3471667a51-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=2http://di109.shopping.com/images/di/58/68/55/527553432d73704262544944666f3471667a51-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=2http://di109.shopping.com/images/di/58/68/55/527553432d73704262544944666f3471667a51-300x300-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=2http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=2http://di109.shopping.com/images/di/58/68/55/527553432d73704262544944666f3471667a51-350x350-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=2in-stockFree Shipping with Any Purchase!689.000.00900.00http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=647&BEFID=7185&aon=%5E1&MerchantID=475674&crawler_id=475674&dealId=XhURuSC-spBbTIDfo4qfzQ%3D%3D&url=http%3A%2F%2Fwww.fumfie.com%2Fproduct%2F169.5%2Fshopping-com%3F&linkin_id=7000610&Issdt=111021183845&searchID=p2.a121bc2aaf029435dce6&DealName=Nikon+D90+SLR+Digital+Camera+%28Camera+Body%29&dlprc=689.0&crn=&istrsmrc=1&isathrsl=0&AR=16&NG=20&NDP=200&PN=1&ST=7&DB=sdcprod&MT=phx-pkadudc2&FPT=DSP&NDS=&NMS=&MRS=&PD=99671132&brnId=14804&IsFtr=0&IsSmart=0&DMT=&op=&CM=&DlLng=1&RR=16&cid=&semid1=&semid2=&IsLps=0&CC=1&SL=1&FS=1&code=&acode=658&category=&HasLink=&frameId=&ND=&MN=&PT=&prjID=&GR=&lnkId=&VK=FumFiehttp://img.shopping.com/cctool/merch_logos/475674.gif866 666 91985604.27http://img.shopping.com/sc/mr/sdc_checks_45.gifhttp://www.shopping.com/xMR-store_fumfie~MRD-475674~S-1~linkin_id-7000610http://img.shopping.com/sc/glb/flag/US.gifUSF169C5Nikon D90 SLR w/Nikon 18-105mm VR & 55-200mm VR Lenses12.3 MegapixelDX Format CMOS Sensor3" VGA LCD DisplayLive ViewSelf Cleaning SensorD-Movie ModeHigh Sensitivity (ISO 3200)4.5 fps BurstIn-Camera Image Editing7185Nikonhttp://di101.shopping.com/images/di/6f/30/50/785f584c5744627278415952793372436d7951-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=3http://di101.shopping.com/images/di/6f/30/50/785f584c5744627278415952793372436d7951-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=3http://di101.shopping.com/images/di/6f/30/50/785f584c5744627278415952793372436d7951-300x300-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=3http://di101.shopping.com/images/di/6f/30/50/785f584c5744627278415952793372436d7951-400x400-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=3http://di101.shopping.com/images/di/6f/30/50/785f584c5744627278415952793372436d7951-500x500-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=3in-stock1189.000.001189.00http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=371&BEFID=7185&aon=%5E1&MerchantID=487342&crawler_id=487342&dealId=o0Px_XLWDbrxAYRy3rCmyQ%3D%3D&url=http%3A%2F%2Fwww.rythercamera.com%2Fcatalog%2Fproduct_info.php%3Fcsv%3Dsh%26products_id%3D30619%26&linkin_id=7000610&Issdt=111021183845&searchID=p2.a121bc2aaf029435dce6&DealName=Nikon+D90+SLR+w%2FNikon+18-105mm+VR+%26+55-200mm+VR+Lenses&dlprc=1189.0&crn=&istrsmrc=0&isathrsl=0&AR=20&NG=20&NDP=200&PN=1&ST=7&DB=sdcprod&MT=phx-pkadudc2&FPT=DSP&NDS=&NMS=&MRS=&PD=99671132&brnId=14804&IsFtr=0&IsSmart=0&DMT=&op=&CM=&DlLng=1&RR=20&cid=&semid1=&semid2=&IsLps=0&CC=0&SL=0&FS=1&code=&acode=379&category=&HasLink=&frameId=&ND=&MN=&PT=&prjID=&GR=&lnkId=&VK=RytherCamera.comhttp://img.shopping.com/cctool/merch_logos/487342.gif1-877-644-75930http://img.shopping.com/sc/glb/flag/US.gifUS30619Nikon D90 12.3 Megapixel Digital SLR Camera (Body Only)Fusing 12.3 megapixel image quality and a cinematic 24fps D-Movie Mode, the Nikon D90 exceeds the demands of passionate photographers. Coupled with Nikon's EXPEED image processing technologies and NIKKOR optics, breathtaking image fidelity is assured. Combined with fast 0.15ms power-up and split-second 65ms shooting lag, dramatic action and decisive moments are captured easily. Effective 4-frequency, ultrasonic sensor cleaning frees image degrading dust particles from the sensor's optical low pass filter.7185Nikonhttp://di110.shopping.com/images/di/34/48/67/62574a534a3873736749663842304d58497741-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=4http://di110.shopping.com/images/di/34/48/67/62574a534a3873736749663842304d58497741-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=4http://di110.shopping.com/images/di/34/48/67/62574a534a3873736749663842304d58497741-300x300-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=4in-stockFREE FEDEX 2-3 DAY DELIVERY899.950.00899.95http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=269&BEFID=7185&aon=%5E&MerchantID=9296&crawler_id=811558&dealId=4HgbWJSJ8ssgIf8B0MXIwA%3D%3D&url=http%3A%2F%2Fwww.pcnation.com%2Foptics-gallery%2Fdetails.asp%3Faffid%3D305%26item%3D2N145P&linkin_id=7000610&Issdt=111021183845&searchID=p2.a121bc2aaf029435dce6&DealName=Nikon+D90+12.3+Megapixel+Digital+SLR+Camera+%28Body+Only%29&dlprc=899.95&crn=&istrsmrc=1&isathrsl=0&AR=21&NG=20&NDP=200&PN=1&ST=7&DB=sdcprod&MT=phx-pkadudc2&FPT=DSP&NDS=&NMS=&MRS=&PD=99671132&brnId=14804&IsFtr=0&IsSmart=0&DMT=&op=&CM=&DlLng=1&RR=21&cid=&semid1=&semid2=&IsLps=0&CC=0&SL=0&FS=1&code=&acode=257&category=&HasLink=&frameId=&ND=&MN=&PT=&prjID=&GR=&lnkId=&VK=PCNationhttp://img.shopping.com/cctool/merch_logos/9296.gif800-470-707916224.43http://img.shopping.com/sc/mr/sdc_checks_45.gifhttp://www.shopping.com/xMR-store_pcnation_9689~MRD-9296~S-1~linkin_id-7000610http://img.shopping.com/sc/glb/flag/US.gifUS2N145PNikon D90 12.3MP Digital SLR Camera (Body Only)Fusing 12.3-megapixel image quality inherited from the award-winning D300 with groundbreaking features, the D90's breathtaking, low-noise image quality is further advanced with EXPEED image processing. Split-second shutter response and continuous shooting at up to 4.5 frames-per-second provide the power to capture fast action and precise moments perfectly, while Nikon's exclusive Scene Recognition System contributes to faster 11-area autofocus performance, finer white balance detection and more. The D90 delivers the control passionate photographers demand, utilizing comprehensive exposure functions and the intelligence of 3D Color Matrix Metering II. Stunning results come to life on a 3-inch 920,000-dot color LCD monitor, providing accurate image review, Live View composition and brilliant playback of the D90's cinematic-quality 24-fps HD D-Movie mode.7185Nikonhttp://di102.shopping.com/images/di/55/4e/44/6133754d445a584f6e76445f377354494c5967-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=5http://di102.shopping.com/images/di/55/4e/44/6133754d445a584f6e76445f377354494c5967-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=5http://di102.shopping.com/images/di/55/4e/44/6133754d445a584f6e76445f377354494c5967-300x300-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=5http://di102.shopping.com/images/di/55/4e/44/6133754d445a584f6e76445f377354494c5967-400x400-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=5http://di102.shopping.com/images/di/55/4e/44/6133754d445a584f6e76445f377354494c5967-500x500-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=5in-stockFantastic prices with ease & comfort of Amazon.com!780.000.00780.00http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=566&BEFID=7185&aon=%5E1&MerchantID=301531&crawler_id=1903313&dealId=UNDa3uMDZXOnvD_7sTILYg%3D%3D&url=http%3A%2F%2Fwww.amazon.com%2Fdp%2FB001ET5U92%2Fref%3Dasc_df_B001ET5U921751618%3Fsmid%3DAHF4SYKP09WBH%26tag%3Ddealtime-ce-mp01feed-20%26linkCode%3Dasn%26creative%3D395105%26creativeASIN%3DB001ET5U92&linkin_id=7000610&Issdt=111021183845&searchID=p2.a121bc2aaf029435dce6&DealName=Nikon+D90+12.3MP+Digital+SLR+Camera+%28Body+Only%29&dlprc=780.0&crn=&istrsmrc=0&isathrsl=0&AR=29&NG=20&NDP=200&PN=1&ST=7&DB=sdcprod&MT=phx-pkadudc2&FPT=DSP&NDS=&NMS=&MRS=&PD=99671132&brnId=14804&IsFtr=0&IsSmart=0&DMT=&op=&CM=&DlLng=1&RR=29&cid=&semid1=&semid2=&IsLps=0&CC=0&SL=0&FS=1&code=&acode=520&category=&HasLink=&frameId=&ND=&MN=&PT=&prjID=&GR=&lnkId=&VK=Amazon Marketplacehttp://img.shopping.com/cctool/merch_logos/301531.gif2132.73http://img.shopping.com/sc/mr/sdc_checks_25.gifhttp://www.shopping.com/xMR-store_amazon_marketplace_9689~MRD-301531~S-1~linkin_id-7000610http://img.shopping.com/sc/glb/flag/US.gifUSB001ET5U92Nikon D90 Digital Camera with 18-105mm lens12.9 Megapixel, SLR Camera, 3 in. LCD Screen, 5.8x Optical Zoom, With Video Capability, Weight: 2.3 lb.Its 12.3 megapixel DX-format CMOS image sensor and EXPEED image processing system offer outstanding image quality across a wide ISO light sensitivity range. Live View mode lets you compose and shoot via the high-resolution 3-inch LCD monitor, and an advanced Scene Recognition System and autofocus performance help capture images with astounding accuracy. Movies can be shot in Motion JPEG format using the D-Movie function. The camera’s large image sensor ensures exceptional movie image quality and you can create dramatic effects by shooting with a wide range of interchangeable NIKKOR lenses, from wide-angle to macro to fisheye, or by adjusting the lens aperture and experimenting with depth-of-field. The D90 – designed to fuel your passion for photography.http://di1.shopping.com/images/pi/57/6a/4f/70621646-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=5http://di1.shopping.com/images/pi/57/6a/4f/70621646-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=5http://di1.shopping.com/images/pi/57/6a/4f/70621646-300x300-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=5http://di1.shopping.com/images/pi/57/6a/4f/70621646-400x400-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=5http://di1.shopping.com/images/pi/57/6a/4f/70621646-490x489-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=2&c=1&l=7000610&t=111021183845&r=5324.81http://img.shopping.com/sc/pr/sdc_stars_sm_5.gifhttp://www.shopping.com/Nikon-D90-with-18-105mm-lens/reviews~linkin_id-7000610849.951599.95http://www.shopping.com/Nikon-D90-with-18-105mm-lens/prices~linkin_id-7000610http://www.shopping.com/Nikon-D90-with-18-105mm-lens/info~linkin_id-7000610Nikon D90 18-105mm VR LensThe Nikon D90 SLR Digital Camera with its 12.3-megapixel DX-format CMOS 3" High resolution LCD display Scene Recognition System Picture Control Active D-Lighting and one-button Live View prov7185Nikonhttp://di111.shopping.com/images/di/33/6f/35/6531566768674a5066684c7654314a464b5441-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1http://di111.shopping.com/images/di/33/6f/35/6531566768674a5066684c7654314a464b5441-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1http://di111.shopping.com/images/di/33/6f/35/6531566768674a5066684c7654314a464b5441-260x260-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=1in-stock849.950.00849.95http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=419&BEFID=7185&aon=%5E1&MerchantID=9390&crawler_id=1905054&dealId=3o5e1VghgJPfhLvT1JFKTA%3D%3D&url=http%3A%2F%2Fwww.ajrichard.com%2FNikon-D90-18-105mm-VR-Lens%2Fp-292%3Frefid%3DShopping%26&linkin_id=7000610&Issdt=111021183845&searchID=p2.a121bc2aaf029435dce6&DealName=Nikon+D90+18-105mm+VR+Lens&dlprc=849.95&crn=&istrsmrc=0&isathrsl=0&AR=2&NG=20&NDP=200&PN=1&ST=7&DB=sdcprod&MT=phx-pkadudc2&FPT=DSP&NDS=&NMS=&MRS=&PD=70621646&brnId=14804&IsFtr=0&IsSmart=0&DMT=&op=&CM=&DlLng=1&RR=2&cid=&semid1=&semid2=&IsLps=0&CC=0&SL=0&FS=1&code=&acode=425&category=&HasLink=&frameId=&ND=&MN=&PT=&prjID=&GR=&lnkId=&VK=AJRichardhttp://img.shopping.com/cctool/merch_logos/9390.gif1-888-871-125631244.48http://img.shopping.com/sc/mr/sdc_checks_45.gifhttp://www.shopping.com/xMR-store_ajrichard~MRD-9390~S-1~linkin_id-7000610http://img.shopping.com/sc/glb/flag/US.gifUS292Nikon D90 SLR w/Nikon 18-105mm VR Lens12.3 MegapixelDX Format CMOS Sensor3" VGA LCD DisplayLive ViewSelf Cleaning SensorD-Movie ModeHigh Sensitivity (ISO 3200)4.5 fps BurstIn-Camera Image Editing7185Nikonhttp://di108.shopping.com/images/di/5f/6c/59/576a5f6a62776673536b666377556344757777-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=2http://di108.shopping.com/images/di/5f/6c/59/576a5f6a62776673536b666377556344757777-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=2http://di108.shopping.com/images/di/5f/6c/59/576a5f6a62776673536b666377556344757777-300x300-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=2http://di108.shopping.com/images/di/5f/6c/59/576a5f6a62776673536b666377556344757777-400x400-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=2http://di108.shopping.com/images/di/5f/6c/59/576a5f6a62776673536b666377556344757777-500x500-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=2in-stock909.000.00909.00http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=371&BEFID=7185&aon=%5E1&MerchantID=487342&crawler_id=487342&dealId=_lYWj_jbwfsSkfcwUcDuww%3D%3D&url=http%3A%2F%2Fwww.rythercamera.com%2Fcatalog%2Fproduct_info.php%3Fcsv%3Dsh%26products_id%3D30971%26&linkin_id=7000610&Issdt=111021183845&searchID=p2.a121bc2aaf029435dce6&DealName=Nikon+D90+SLR+w%2FNikon+18-105mm+VR+Lens&dlprc=909.0&crn=&istrsmrc=0&isathrsl=0&AR=3&NG=20&NDP=200&PN=1&ST=7&DB=sdcprod&MT=phx-pkadudc2&FPT=DSP&NDS=&NMS=&MRS=&PD=70621646&brnId=14804&IsFtr=0&IsSmart=0&DMT=&op=&CM=&DlLng=1&RR=3&cid=&semid1=&semid2=&IsLps=0&CC=0&SL=0&FS=1&code=&acode=379&category=&HasLink=&frameId=&ND=&MN=&PT=&prjID=&GR=&lnkId=&VK=RytherCamera.comhttp://img.shopping.com/cctool/merch_logos/487342.gif1-877-644-75930http://img.shopping.com/sc/glb/flag/US.gifUS3097125448/D90 12.3 Megapixel Digital Camera 18-105mm Zoom Lens w/ 3" Screen - BlackNikon D90 - Digital camera - SLR - 12.3 Mpix - Nikon AF-S DX 18-105mm lens - optical zoom: 5.8 x - supported memory: SD, SDHC7185Nikonhttp://di110.shopping.com/images/di/31/4b/43/636c4347755776747932584b5539736b616467-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=3http://di110.shopping.com/images/di/31/4b/43/636c4347755776747932584b5539736b616467-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=3http://di110.shopping.com/images/di/31/4b/43/636c4347755776747932584b5539736b616467-300x300-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=3http://di110.shopping.com/images/di/31/4b/43/636c4347755776747932584b5539736b616467-400x400-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=3in-stockGet 30 days FREE SHIPPING w/ ShipVantage1199.008.201199.00http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=578&BEFID=7185&aon=%5E1&MerchantID=485615&crawler_id=485615&dealId=1KCclCGuWvty2XKU9skadg%3D%3D&url=http%3A%2F%2Fsears.rdr.channelintelligence.com%2Fgo.asp%3FfVhzOGNRAAQIASNiE1NbQBRtFXpzYx0CTAICI2BbH1lEFmgKP3QvUVpEREdlfUAUHAQPLVpFTVdtJzxAHUNYW3AhQBM0QhFvEXAbYh8EAAVmb2JcVlhCGGkPc3QDEkFZVQ0WFhdRW0MWbgYWDlxzdGMdAVQWRi0xDAwPFhw9TSobb05eWVVYKzsLTFVVQi5RICs3SA8MU1s2MQQKD1wf%26nAID%3D13736960%26&linkin_id=7000610&Issdt=111021183845&searchID=p2.a121bc2aaf029435dce6&DealName=25448%2FD90+12.3+Megapixel+Digital+Camera+18-105mm+Zoom+Lens+w%2F+3%22+Screen+-+Black&dlprc=1199.0&crn=&istrsmrc=1&isathrsl=0&AR=4&NG=20&NDP=200&PN=1&ST=7&DB=sdcprod&MT=phx-pkadudc2&FPT=DSP&NDS=&NMS=&MRS=&PD=70621646&brnId=14804&IsFtr=0&IsSmart=0&DMT=&op=&CM=&DlLng=1&RR=4&cid=&semid1=&semid2=&IsLps=0&CC=0&SL=0&FS=0&code=&acode=586&category=&HasLink=&frameId=&ND=&MN=&PT=&prjID=&GR=&lnkId=&VK=Searshttp://img.shopping.com/cctool/merch_logos/485615.gif1-800-349-43588882.85http://img.shopping.com/sc/mr/sdc_checks_3.gifhttp://www.shopping.com/xMR-store_sears_4189479~MRD-485615~S-1~linkin_id-7000610http://img.shopping.com/sc/glb/flag/US.gifUS00353197000Nikon® D90 12.3MP Digital SLR with 18-105mm LensThe Nikon D90 will make you rethink what a digital SLR camera can achieve.7185Nikonhttp://di101.shopping.com/images/di/33/2d/56/4f53665656354a6f37486c41346b4a74616e41-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=4http://di101.shopping.com/images/di/33/2d/56/4f53665656354a6f37486c41346b4a74616e41-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=4http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=4http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=4http://di101.shopping.com/images/di/33/2d/56/4f53665656354a6f37486c41346b4a74616e41-220x220-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=4in-stock1350.996.051350.99http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=504&BEFID=7185&aon=%5E1&MerchantID=332477&crawler_id=332477&dealId=3-VOSfVV5Jo7HlA4kJtanA%3D%3D&url=http%3A%2F%2Ftracking.searchmarketing.com%2Fgsic.asp%3Faid%3D982673361%26&linkin_id=7000610&Issdt=111021183845&searchID=p2.a121bc2aaf029435dce6&DealName=Nikon%C2%AE+D90+12.3MP+Digital+SLR+with+18-105mm+Lens&dlprc=1350.99&crn=&istrsmrc=0&isathrsl=0&AR=5&NG=20&NDP=200&PN=1&ST=7&DB=sdcprod&MT=phx-pkadudc2&FPT=DSP&NDS=&NMS=&MRS=&PD=70621646&brnId=14804&IsFtr=0&IsSmart=0&DMT=&op=&CM=&DlLng=1&RR=5&cid=&semid1=&semid2=&IsLps=0&CC=0&SL=0&FS=0&code=&acode=496&category=&HasLink=&frameId=&ND=&MN=&PT=&prjID=&GR=&lnkId=&VK=RadioShackhttp://img.shopping.com/cctool/merch_logos/332477.gif242.25http://img.shopping.com/sc/mr/sdc_checks_25.gifhttp://www.shopping.com/xMR-store_radioshack_9689~MRD-332477~S-1~linkin_id-7000610http://img.shopping.com/sc/glb/flag/US.gifUS11148905Nikon D90 Kit 12.3-megapixel Digital SLR with 18-105mm VR LensPhotographers, take your passion further!Now is the time for new creativity, and to rethink what a digital SLR camera can achieve. It's time for the D90, a camera with everything you would expect from Nikon's next-generation D-SLRs, and some unexpected surprises, as well. The stunning image quality is inherited from the D300, Nikon's DX-format flagship. The D90 also has Nikon's unmatched ergonomics and high performance, and now takes high-quality movies with beautifully cinematic results. The world of photography has changed, and with the D90 in your hands, it's time to make your own rules.AF-S DX NIKKOR 18-105mm f/3.5-5.6G ED VR LensWide-ratio 5.8x zoom Compact, versatile and ideal for a broad range of shooting situations, ranging from interiors and landscapes to beautiful portraits� a perfect everyday zoom. Nikon VR (Vibration Reduction) image stabilization Vibration Reduction is engineered specifically for each VR NIKKOR lens and enables handheld shooting at up to 3 shutter speeds slower than would7185Nikonhttp://di110.shopping.com/images/di/6b/51/6e/4236725334416a4e3564783568325f36333167-100x100-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=5http://di110.shopping.com/images/di/6b/51/6e/4236725334416a4e3564783568325f36333167-200x200-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=5http://di110.shopping.com/images/di/6b/51/6e/4236725334416a4e3564783568325f36333167-300x300-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=5http://img.shopping.com/sc/ds/no_image_100X100.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=5http://di110.shopping.com/images/di/6b/51/6e/4236725334416a4e3564783568325f36333167-300x232-0-0.jpg?p=p2.a121bc2aaf029435dce6&a=1&c=1&l=7000610&t=111021183845&r=5in-stockShipping Included!1050.000.001199.00http://statTest.dealtime.com/DealFrame/DealFrame.cmp?bm=135&BEFID=7185&aon=%5E1&MerchantID=313162&crawler_id=313162&dealId=kQnB6rS4AjN5dx5h2_631g%3D%3D&url=http%3A%2F%2Fonecall.rdr.channelintelligence.com%2Fgo.asp%3FfVhzOGNRAAQIASNiE1pZSxNoWHFwLx8GTAICa2ZeH1sPXTZLNzRpAh1HR0BxPQEGCBJNMhFHUElsFCFCVkVTTHAcBggEHQ4aHXNpGERGH3RQODsbAgdechJtbBt8fx8JAwhtZFAzJj1oGgIWCxRlNyFOUV9UUGIxBgo0T0IyTSYqJ0RWHw4QPCIBAAQXRGMDICg6TllZVBhh%26nAID%3D13736960&linkin_id=7000610&Issdt=111021183845&searchID=p2.a121bc2aaf029435dce6&DealName=Nikon+D90+Kit+12.3-megapixel+Digital+SLR+with+18-105mm+VR+Lens&dlprc=1050.0&crn=&istrsmrc=1&isathrsl=0&AR=6&NG=20&NDP=200&PN=1&ST=7&DB=sdcprod&MT=phx-pkadudc2&FPT=DSP&NDS=&NMS=&MRS=&PD=70621646&brnId=14804&IsFtr=0&IsSmart=0&DMT=&op=&CM=&DlLng=1&RR=6&cid=&semid1=&semid2=&IsLps=0&CC=0&SL=1&FS=1&code=&acode=143&category=&HasLink=&frameId=&ND=&MN=&PT=&prjID=&GR=&lnkId=&VK=OneCallhttp://img.shopping.com/cctool/merch_logos/313162.gif1.800.398.07661804.44http://img.shopping.com/sc/mr/sdc_checks_45.gifhttp://www.shopping.com/xMR-store_onecall_9689~MRD-313162~S-1~linkin_id-7000610http://img.shopping.com/sc/glb/flag/US.gifUS92826Price rangehttp://www.shopping.com/digital-cameras/nikon/products?oq=nikon&linkin_id=7000610$24 - $4012http://www.shopping.com/digital-cameras/nikon/products?minPrice=24&maxPrice=4012&linkin_id=7000610$4012 - $7999http://www.shopping.com/digital-cameras/nikon/products?minPrice=4012&maxPrice=7999&linkin_id=7000610Brandhttp://www.shopping.com/digital-cameras/nikon/products~all-9688-brand~MS-1?oq=nikon&linkin_id=7000610Nikonhttp://www.shopping.com/digital-cameras/nikon+brand-nikon/products~linkin_id-7000610Cranehttp://www.shopping.com/digital-cameras/nikon+9688-brand-crane/products~linkin_id-7000610Ikelitehttp://www.shopping.com/digital-cameras/nikon+ikelite/products~linkin_id-7000610Bowerhttp://www.shopping.com/digital-cameras/nikon+bower/products~linkin_id-7000610FUJIFILMhttp://www.shopping.com/digital-cameras/nikon+brand-fuji/products~linkin_id-7000610Storehttp://www.shopping.com/digital-cameras/nikon/products~all-store~MS-1?oq=nikon&linkin_id=7000610Amazon Marketplacehttp://www.shopping.com/digital-cameras/nikon+store-amazon-marketplace-9689/products~linkin_id-7000610Amazonhttp://www.shopping.com/digital-cameras/nikon+store-amazon/products~linkin_id-7000610Adoramahttp://www.shopping.com/digital-cameras/nikon+store-adorama/products~linkin_id-7000610J&R Music and Computer Worldhttp://www.shopping.com/digital-cameras/nikon+store-j-r-music-and-computer-world/products~linkin_id-7000610RytherCamera.comhttp://www.shopping.com/digital-cameras/nikon+store-rythercamera-com/products~linkin_id-7000610Resolutionhttp://www.shopping.com/digital-cameras/nikon/products~all-21885-resolution~MS-1?oq=nikon&linkin_id=7000610Under 4 Megapixelhttp://www.shopping.com/digital-cameras/nikon+under-4-megapixel/products~linkin_id-7000610At least 5 Megapixelhttp://www.shopping.com/digital-cameras/nikon+5-megapixel-digital-cameras/products~linkin_id-7000610At least 6 Megapixelhttp://www.shopping.com/digital-cameras/nikon+6-megapixel-digital-cameras/products~linkin_id-7000610At least 7 Megapixelhttp://www.shopping.com/digital-cameras/nikon+7-megapixel-digital-cameras/products~linkin_id-7000610At least 8 Megapixelhttp://www.shopping.com/digital-cameras/nikon+8-megapixel-digital-cameras/products~linkin_id-7000610Featureshttp://www.shopping.com/digital-cameras/nikon/products~all-32804-features~MS-1?oq=nikon&linkin_id=7000610Shockproofhttp://www.shopping.com/digital-cameras/nikon+32804-features-shockproof/products~linkin_id-7000610Waterproofhttp://www.shopping.com/digital-cameras/nikon+32804-features-waterproof/products~linkin_id-7000610Freezeproofhttp://www.shopping.com/digital-cameras/nikon+32804-features-freezeproof/products~linkin_id-7000610Dust proofhttp://www.shopping.com/digital-cameras/nikon+32804-features-dust-proof/products~linkin_id-7000610Image Stabilizationhttp://www.shopping.com/digital-cameras/nikon+32804-features-image-stabilization/products~linkin_id-7000610hybriddigital camerag1sonycameracanonnikonkodak digital camerakodaksony cybershotkodak easyshare digital cameranikon coolpixolympuspink digital cameracanon powershot \ No newline at end of file diff --git a/examples/strict.dtd b/examples/strict.dtd deleted file mode 100644 index b274559..0000000 --- a/examples/strict.dtd +++ /dev/null @@ -1,870 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -%HTMLlat1; - - -%HTMLsymbol; - - -%HTMLspecial; - - - - - - - - - - - - - -]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/examples/switch-bench.js b/examples/switch-bench.js deleted file mode 100755 index 4d3cf14..0000000 --- a/examples/switch-bench.js +++ /dev/null @@ -1,45 +0,0 @@ -#!/usr/local/bin/node-bench - -var Promise = require("events").Promise; - -var xml = require("posix").cat("test.xml").wait(), - path = require("path"), - sax = require("../lib/sax"), - saxT = require("../lib/sax-trampoline"), - - parser = sax.parser(false, {trim:true}), - parserT = saxT.parser(false, {trim:true}), - - sys = require("sys"); - - -var count = exports.stepsPerLap = 500, - l = xml.length, - runs = 0; -exports.countPerLap = 1000; -exports.compare = { - "switch" : function () { - // sys.debug("switch runs: "+runs++); - // for (var x = 0; x < l; x += 1000) { - // parser.write(xml.substr(x, 1000)) - // } - // for (var i = 0; i < count; i ++) { - parser.write(xml); - parser.close(); - // } - // done(); - }, - trampoline : function () { - // sys.debug("trampoline runs: "+runs++); - // for (var x = 0; x < l; x += 1000) { - // parserT.write(xml.substr(x, 1000)) - // } - // for (var i = 0; i < count; i ++) { - parserT.write(xml); - parserT.close(); - // } - // done(); - }, -}; - -sys.debug("rock and roll..."); \ No newline at end of file diff --git a/examples/test.html b/examples/test.html deleted file mode 100644 index 61f8f1a..0000000 --- a/examples/test.html +++ /dev/null @@ -1,15 +0,0 @@ - - - - - testing the parser - - - -

hello - - - - diff --git a/examples/test.xml b/examples/test.xml deleted file mode 100644 index 801292d..0000000 --- a/examples/test.xml +++ /dev/null @@ -1,1254 +0,0 @@ - - -]> - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - - Some Text - - - - - - - are ok in here. ]]> - - Pre-Text & Inlined text Post-text. -  - - \ No newline at end of file diff --git a/lib/sax.js b/lib/sax.js deleted file mode 100644 index 88fe70d..0000000 --- a/lib/sax.js +++ /dev/null @@ -1,983 +0,0 @@ -// wrapper for non-node envs -;(function (sax) { - -sax.parser = function (strict, opt) { return new SAXParser(strict, opt) } -sax.SAXParser = SAXParser -sax.SAXStream = SAXStream -sax.createStream = createStream - -// When we pass the MAX_BUFFER_LENGTH position, start checking for buffer overruns. -// When we check, schedule the next check for MAX_BUFFER_LENGTH - (max(buffer lengths)), -// since that's the earliest that a buffer overrun could occur. This way, checks are -// as rare as required, but as often as necessary to ensure never crossing this bound. -// Furthermore, buffers are only tested at most once per write(), so passing a very -// large string into write() might have undesirable effects, but this is manageable by -// the caller, so it is assumed to be safe. Thus, a call to write() may, in the extreme -// edge case, result in creating at most one complete copy of the string passed in. -// Set to Infinity to have unlimited buffers. -sax.MAX_BUFFER_LENGTH = 64 * 1024 - -var buffers = [ - "comment", "sgmlDecl", "textNode", "tagName", "doctype", - "procInstName", "procInstBody", "entity", "attribName", - "attribValue", "cdata", "script" -] - -sax.EVENTS = // for discoverability. - [ "text" - , "processinginstruction" - , "sgmldeclaration" - , "doctype" - , "comment" - , "attribute" - , "opentag" - , "closetag" - , "opencdata" - , "cdata" - , "closecdata" - , "error" - , "end" - , "ready" - , "script" - , "opennamespace" - , "closenamespace" - ] - -function SAXParser (strict, opt) { - if (!(this instanceof SAXParser)) return new SAXParser(strict, opt) - - var parser = this - clearBuffers(parser) - parser.q = parser.c = "" - parser.bufferCheckPosition = sax.MAX_BUFFER_LENGTH - parser.opt = opt || {} - parser.tagCase = parser.opt.lowercasetags ? "toLowerCase" : "toUpperCase" - parser.tags = [] - parser.closed = parser.closedRoot = parser.sawRoot = false - parser.tag = parser.error = null - parser.strict = !!strict - parser.noscript = !!(strict || parser.opt.noscript) - parser.state = S.BEGIN - parser.ENTITIES = Object.create(sax.ENTITIES) - parser.attribList = [] - - // namespaces form a prototype chain. - // it always points at the current tag, - // which protos to its parent tag. - if (parser.opt.xmlns) parser.ns = Object.create(rootNS) - - // mostly just for error reporting - parser.position = parser.line = parser.column = 0 - emit(parser, "onready") -} - -if (!Object.create) Object.create = function (o) { - function f () { this.__proto__ = o } - f.prototype = o - return new f -} - -if (!Object.getPrototypeOf) Object.getPrototypeOf = function (o) { - return o.__proto__ -} - -if (!Object.keys) Object.keys = function (o) { - var a = [] - for (var i in o) if (o.hasOwnProperty(i)) a.push(i) - return a -} - -function checkBufferLength (parser) { - var maxAllowed = Math.max(sax.MAX_BUFFER_LENGTH, 10) - , maxActual = 0 - for (var i = 0, l = buffers.length; i < l; i ++) { - var len = parser[buffers[i]].length - if (len > maxAllowed) { - // Text/cdata nodes can get big, and since they're buffered, - // we can get here under normal conditions. - // Avoid issues by emitting the text node now, - // so at least it won't get any bigger. - switch (buffers[i]) { - case "textNode": - closeText(parser) - break - - case "cdata": - emitNode(parser, "oncdata", parser.cdata) - parser.cdata = "" - break - - case "script": - emitNode(parser, "onscript", parser.script) - parser.script = "" - break - - default: - error(parser, "Max buffer length exceeded: "+buffers[i]) - } - } - maxActual = Math.max(maxActual, len) - } - // schedule the next check for the earliest possible buffer overrun. - parser.bufferCheckPosition = (sax.MAX_BUFFER_LENGTH - maxActual) - + parser.position -} - -function clearBuffers (parser) { - for (var i = 0, l = buffers.length; i < l; i ++) { - parser[buffers[i]] = "" - } -} - -SAXParser.prototype = - { end: function () { end(this) } - , write: write - , resume: function () { this.error = null; return this } - , close: function () { return this.write(null) } - , end: function () { return this.write(null) } - } - -try { - var Stream = require("stream").Stream -} catch (ex) { - var Stream = function () {} -} - - -var streamWraps = sax.EVENTS.filter(function (ev) { - return ev !== "error" && ev !== "end" -}) - -function createStream (strict, opt) { - return new SAXStream(strict, opt) -} - -function SAXStream (strict, opt) { - if (!(this instanceof SAXStream)) return new SAXStream(strict, opt) - - Stream.apply(me) - - this._parser = new SAXParser(strict, opt) - this.writable = true - this.readable = true - - - var me = this - - this._parser.onend = function () { - me.emit("end") - } - - this._parser.onerror = function (er) { - me.emit("error", er) - - // if didn't throw, then means error was handled. - // go ahead and clear error, so we can write again. - me._parser.error = null - } - - streamWraps.forEach(function (ev) { - Object.defineProperty(me, "on" + ev, { - get: function () { return me._parser["on" + ev] }, - set: function (h) { - if (!h) { - me.removeAllListeners(ev) - return me._parser["on"+ev] = h - } - me.on(ev, h) - }, - enumerable: true, - configurable: false - }) - }) -} - -SAXStream.prototype = Object.create(Stream.prototype, - { constructor: { value: SAXStream } }) - -SAXStream.prototype.write = function (data) { - this._parser.write(data.toString()) - this.emit("data", data) - return true -} - -SAXStream.prototype.end = function (chunk) { - if (chunk && chunk.length) this._parser.write(chunk.toString()) - this._parser.end() - return true -} - -SAXStream.prototype.on = function (ev, handler) { - var me = this - if (!me._parser["on"+ev] && streamWraps.indexOf(ev) !== -1) { - me._parser["on"+ev] = function () { - var args = arguments.length === 1 ? [arguments[0]] - : Array.apply(null, arguments) - args.splice(0, 0, ev) - me.emit.apply(me, args) - } - } - - return Stream.prototype.on.call(me, ev, handler) -} - - - -// character classes and tokens -var whitespace = "\r\n\t " - // this really needs to be replaced with character classes. - // XML allows all manner of ridiculous numbers and digits. - , number = "0124356789" - , letter = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ" - // (Letter | "_" | ":") - , nameStart = letter+"_:" - , nameBody = nameStart+number+"-." - , quote = "'\"" - , entity = number+letter+"#" - , CDATA = "[CDATA[" - , DOCTYPE = "DOCTYPE" - , XML_NAMESPACE = "http://www.w3.org/XML/1998/namespace" - , XMLNS_NAMESPACE = "http://www.w3.org/2000/xmlns/" - , rootNS = { xml: XML_NAMESPACE, xmlns: XMLNS_NAMESPACE } - -function is (charclass, c) { return charclass.indexOf(c) !== -1 } -function not (charclass, c) { return !is(charclass, c) } - -var S = 0 -sax.STATE = -{ BEGIN : S++ -, TEXT : S++ // general stuff -, TEXT_ENTITY : S++ // & and such. -, OPEN_WAKA : S++ // < -, SGML_DECL : S++ // -, SCRIPT : S++ // \n\n```\n\n## Features\n\n- Write code like you would write for Node.JS. \n - No wrappers\n - No `undefined` type checking for `module` or `window`.\n- No new patterns\n - No AMD, no `require.async`, no CommonJS transport proposals.\n - Doesn't depend on `require` implementations on the client.\n - It exposes your module as a single global, like `jQuery`, `io`, `_`. Just\n like everyone is used to.\n- No code bloat.\n - The conversion for the browser only adds a few lines of code.\n - No trouble debugging.\n\n## Credits\n\n- `require` functions by [Jonah Fox](https://github.com/weepy), with\n modifications by TJ Holowaychuk <tj@learnboost.com>\n- inspired by `browserify`\n\n## License \n\n(The MIT License)\n\nCopyright (c) 2011 Guillermo Rauch <guillermo@learnboost.com>\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n", + "maintainers": [ + { + "name": "rauchg", + "email": "rauchg@gmail.com" + } + ], + "time": { + "modified": "2011-12-03T22:22:35.914Z", + "created": "2011-12-03T22:22:34.635Z", + "0.1.0": "2011-12-03T22:22:35.914Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/browserbuild/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "d065d2c39b6d666976c9dadcc8d379ea28d08f54", + "tarball": "http://registry.npmjs.org/browserbuild/-/browserbuild-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/browserbuild/" + }, + "browserchannel": { + "name": "browserchannel", + "description": "Google BrowserChannel server for NodeJS", + "dist-tags": { + "latest": "0.3.2" + }, + "maintainers": [ + { + "name": "josephg", + "email": "josephg@gmail.com" + } + ], + "time": { + "modified": "2011-11-05T12:50:57.869Z", + "created": "2011-10-05T22:46:06.214Z", + "0.0.0": "2011-10-05T22:46:08.146Z", + "0.0.1": "2011-10-06T09:04:11.959Z", + "0.1.0": "2011-10-07T05:23:09.640Z", + "0.2.0": "2011-10-20T10:27:45.069Z", + "0.3.0": "2011-10-27T11:06:50.641Z", + "0.3.1": "2011-11-01T15:29:01.640Z", + "0.3.2": "2011-11-05T12:50:57.869Z" + }, + "author": { + "name": "Joseph Gentle", + "email": "josephg@gmail.com", + "url": "http://josephg.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/josephg/node-browserchannel.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/browserchannel/0.0.0", + "0.0.1": "http://registry.npmjs.org/browserchannel/0.0.1", + "0.1.0": "http://registry.npmjs.org/browserchannel/0.1.0", + "0.2.0": "http://registry.npmjs.org/browserchannel/0.2.0", + "0.3.0": "http://registry.npmjs.org/browserchannel/0.3.0", + "0.3.1": "http://registry.npmjs.org/browserchannel/0.3.1", + "0.3.2": "http://registry.npmjs.org/browserchannel/0.3.2" + }, + "dist": { + "0.0.0": { + "shasum": "4c9d7cf74e656b0d1edfd6ea565844d2f395aac9", + "tarball": "http://registry.npmjs.org/browserchannel/-/browserchannel-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "3a6be3a02cb422c7153ed0c8c3d30ba51efd64a8", + "tarball": "http://registry.npmjs.org/browserchannel/-/browserchannel-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "d033e8696e1e5aefe810773b2a31d3e27113c15a", + "tarball": "http://registry.npmjs.org/browserchannel/-/browserchannel-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "8c2268ca066e4564dbca02656e72d347511dbea6", + "tarball": "http://registry.npmjs.org/browserchannel/-/browserchannel-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "fb5a0b54be5f3a67339fca661939e65c24b671e1", + "tarball": "http://registry.npmjs.org/browserchannel/-/browserchannel-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "b983d72052aa0836767ad821a19c658a3a660de6", + "tarball": "http://registry.npmjs.org/browserchannel/-/browserchannel-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "925ff28b49f1e4dfb49da4946eea1cd6acecbead", + "tarball": "http://registry.npmjs.org/browserchannel/-/browserchannel-0.3.2.tgz" + } + }, + "url": "http://registry.npmjs.org/browserchannel/" + }, + "browserid-verifier": { + "name": "browserid-verifier", + "description": "A node library to verify assertions", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "lloyd", + "email": "lloyd@hilaiel.com" + } + ], + "time": { + "modified": "2011-11-25T21:35:15.864Z", + "created": "2011-11-25T20:00:09.335Z", + "0.0.1": "2011-11-25T20:00:10.230Z", + "0.0.2": "2011-11-25T21:35:15.864Z" + }, + "author": { + "name": "Lloyd Hilaiel", + "email": "lloyd@hilaiel.com", + "url": "http://lloyd.io" + }, + "repository": { + "type": "git", + "url": "git://github.com/lloyd/node-browserid.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/browserid-verifier/0.0.1", + "0.0.2": "http://registry.npmjs.org/browserid-verifier/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "7be3e0a0781ff635ecd14d39b1679e647f1ebfb0", + "tarball": "http://registry.npmjs.org/browserid-verifier/-/browserid-verifier-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "eb5214bd2a1e88f5ad65a373dffeb955be6e380d", + "tarball": "http://registry.npmjs.org/browserid-verifier/-/browserid-verifier-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/browserid-verifier/" + }, + "browserify": { + "name": "browserify", + "description": "Browser-side require() for js directories and npm modules", + "dist-tags": { + "latest": "1.8.1" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-11-26T02:43:41.207Z", + "created": "2011-02-03T11:58:51.125Z", + "0.0.1": "2011-02-03T11:58:51.469Z", + "0.0.2": "2011-02-08T00:40:14.492Z", + "0.0.3": "2011-02-14T09:32:19.495Z", + "0.0.4": "2011-02-14T11:21:48.432Z", + "0.0.5": "2011-02-16T08:32:13.712Z", + "0.1.0": "2011-02-22T17:19:57.245Z", + "0.1.1": "2011-02-23T02:54:52.755Z", + "0.1.2": "2011-02-23T21:49:04.558Z", + "0.1.3": "2011-02-24T00:10:38.860Z", + "0.1.4": "2011-02-25T09:15:22.525Z", + "0.1.5": "2011-02-25T12:03:59.028Z", + "0.2.0": "2011-02-26T13:45:07.970Z", + "0.2.1": "2011-02-26T15:15:40.880Z", + "0.2.2": "2011-02-26T16:00:37.306Z", + "0.2.3": "2011-03-02T11:13:59.791Z", + "0.2.4": "2011-03-15T23:53:03.063Z", + "0.2.5": "2011-03-17T00:12:53.011Z", + "0.2.6": "2011-03-24T08:54:51.811Z", + "0.2.7": "2011-03-28T14:13:57.164Z", + "0.2.8": "2011-03-28T14:31:29.163Z", + "0.2.9": "2011-03-28T23:00:46.335Z", + "0.2.10": "2011-03-30T08:24:24.130Z", + "0.2.11": "2011-03-30T15:53:53.727Z", + "0.3.0": "2011-03-30T16:48:19.353Z", + "0.3.1": "2011-04-01T11:53:25.987Z", + "0.3.2": "2011-04-24T06:19:27.148Z", + "0.3.3": "2011-04-27T23:50:39.960Z", + "0.3.4": "2011-04-28T00:09:45.480Z", + "0.3.5": "2011-04-28T00:18:42.408Z", + "0.3.6": "2011-04-28T09:56:55.846Z", + "0.3.7": "2011-05-17T17:52:45.918Z", + "0.4.0": "2011-05-17T21:01:05.790Z", + "0.4.1": "2011-05-18T12:39:29.251Z", + "0.4.2": "2011-05-24T06:51:13.492Z", + "0.4.3": "2011-05-24T23:55:34.388Z", + "0.4.4": "2011-05-25T01:05:53.376Z", + "0.4.5": "2011-05-25T20:36:19.663Z", + "0.4.6": "2011-05-27T21:09:08.834Z", + "0.4.7": "2011-05-27T21:54:34.480Z", + "0.4.8": "2011-05-28T00:39:24.789Z", + "0.4.9": "2011-05-28T02:45:13.421Z", + "0.4.10": "2011-05-28T03:20:18.434Z", + "0.4.11": "2011-05-28T03:36:13.126Z", + "0.4.12": "2011-05-28T05:17:34.964Z", + "0.4.13": "2011-05-28T20:17:21.800Z", + "0.4.14": "2011-06-03T00:21:06.661Z", + "0.4.15": "2011-06-05T00:05:19.011Z", + "0.5.0": "2011-06-05T05:29:50.699Z", + "0.5.1": "2011-06-05T05:59:21.770Z", + "0.5.2": "2011-06-07T05:59:18.846Z", + "1.0.0": "2011-06-09T05:45:42.682Z", + "1.1.0": "2011-06-21T11:06:25.034Z", + "1.1.1": "2011-06-21T23:30:34.278Z", + "1.1.2": "2011-06-22T00:26:49.625Z", + "1.1.3": "2011-06-22T01:00:20.410Z", + "1.1.4": "2011-06-22T03:24:10.178Z", + "1.2.0": "2011-06-22T11:43:12.205Z", + "1.2.1": "2011-06-25T10:27:58.545Z", + "1.2.2": "2011-06-27T08:22:17.020Z", + "1.2.3": "2011-06-27T23:11:43.510Z", + "1.2.4": "2011-06-28T09:28:37.367Z", + "1.2.5": "2011-07-03T01:07:38.803Z", + "1.2.6": "2011-07-03T01:38:40.801Z", + "1.2.7": "2011-07-05T01:44:06.159Z", + "1.2.8": "2011-07-05T07:09:24.992Z", + "1.2.9": "2011-07-11T21:23:42.382Z", + "1.3.0": "2011-07-15T01:22:59.467Z", + "1.4.0": "2011-07-30T23:06:02.322Z", + "1.4.1": "2011-08-06T10:00:24.332Z", + "1.4.2": "2011-08-06T11:31:37.140Z", + "1.4.3": "2011-08-19T12:16:13.018Z", + "1.4.4": "2011-08-30T11:39:57.096Z", + "1.4.5": "2011-08-30T23:58:05.448Z", + "1.4.6": "2011-09-01T09:37:01.879Z", + "1.4.7": "2011-09-05T12:54:28.365Z", + "1.4.8": "2011-09-09T09:44:03.936Z", + "1.5.0": "2011-09-10T04:48:19.290Z", + "1.6.0": "2011-10-13T07:08:47.174Z", + "1.6.1": "2011-10-20T07:07:18.507Z", + "1.7.0": "2011-10-20T07:26:15.583Z", + "1.7.1": "2011-10-20T08:51:13.607Z", + "1.7.2": "2011-10-20T09:02:35.645Z", + "1.7.3": "2011-10-20T10:54:02.735Z", + "1.7.4": "2011-10-27T01:04:46.469Z", + "1.7.5": "2011-10-27T06:07:43.927Z", + "1.7.6": "2011-10-29T04:08:59.644Z", + "1.7.7": "2011-11-11T00:29:56.928Z", + "1.8.0": "2011-11-16T10:04:52.496Z", + "1.8.1": "2011-11-26T02:43:41.207Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-browserify.git" + }, + "users": { + "coverslide": true + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/browserify/0.0.1", + "0.0.2": "http://registry.npmjs.org/browserify/0.0.2", + "0.0.3": "http://registry.npmjs.org/browserify/0.0.3", + "0.0.4": "http://registry.npmjs.org/browserify/0.0.4", + "0.0.5": "http://registry.npmjs.org/browserify/0.0.5", + "0.1.0": "http://registry.npmjs.org/browserify/0.1.0", + "0.1.1": "http://registry.npmjs.org/browserify/0.1.1", + "0.1.2": "http://registry.npmjs.org/browserify/0.1.2", + "0.1.3": "http://registry.npmjs.org/browserify/0.1.3", + "0.1.4": "http://registry.npmjs.org/browserify/0.1.4", + "0.1.5": "http://registry.npmjs.org/browserify/0.1.5", + "0.2.0": "http://registry.npmjs.org/browserify/0.2.0", + "0.2.1": "http://registry.npmjs.org/browserify/0.2.1", + "0.2.2": "http://registry.npmjs.org/browserify/0.2.2", + "0.2.3": "http://registry.npmjs.org/browserify/0.2.3", + "0.2.4": "http://registry.npmjs.org/browserify/0.2.4", + "0.2.5": "http://registry.npmjs.org/browserify/0.2.5", + "0.2.6": "http://registry.npmjs.org/browserify/0.2.6", + "0.2.7": "http://registry.npmjs.org/browserify/0.2.7", + "0.2.8": "http://registry.npmjs.org/browserify/0.2.8", + "0.2.9": "http://registry.npmjs.org/browserify/0.2.9", + "0.2.10": "http://registry.npmjs.org/browserify/0.2.10", + "0.2.11": "http://registry.npmjs.org/browserify/0.2.11", + "0.3.0": "http://registry.npmjs.org/browserify/0.3.0", + "0.3.1": "http://registry.npmjs.org/browserify/0.3.1", + "0.3.2": "http://registry.npmjs.org/browserify/0.3.2", + "0.3.3": "http://registry.npmjs.org/browserify/0.3.3", + "0.3.4": "http://registry.npmjs.org/browserify/0.3.4", + "0.3.5": "http://registry.npmjs.org/browserify/0.3.5", + "0.3.6": "http://registry.npmjs.org/browserify/0.3.6", + "0.3.7": "http://registry.npmjs.org/browserify/0.3.7", + "0.4.0": "http://registry.npmjs.org/browserify/0.4.0", + "0.4.1": "http://registry.npmjs.org/browserify/0.4.1", + "0.4.2": "http://registry.npmjs.org/browserify/0.4.2", + "0.4.3": "http://registry.npmjs.org/browserify/0.4.3", + "0.4.4": "http://registry.npmjs.org/browserify/0.4.4", + "0.4.5": "http://registry.npmjs.org/browserify/0.4.5", + "0.4.6": "http://registry.npmjs.org/browserify/0.4.6", + "0.4.7": "http://registry.npmjs.org/browserify/0.4.7", + "0.4.8": "http://registry.npmjs.org/browserify/0.4.8", + "0.4.9": "http://registry.npmjs.org/browserify/0.4.9", + "0.4.10": "http://registry.npmjs.org/browserify/0.4.10", + "0.4.11": "http://registry.npmjs.org/browserify/0.4.11", + "0.4.12": "http://registry.npmjs.org/browserify/0.4.12", + "0.4.13": "http://registry.npmjs.org/browserify/0.4.13", + "0.4.14": "http://registry.npmjs.org/browserify/0.4.14", + "0.4.15": "http://registry.npmjs.org/browserify/0.4.15", + "0.5.0": "http://registry.npmjs.org/browserify/0.5.0", + "0.5.1": "http://registry.npmjs.org/browserify/0.5.1", + "0.5.2": "http://registry.npmjs.org/browserify/0.5.2", + "1.0.0": "http://registry.npmjs.org/browserify/1.0.0", + "1.1.0": "http://registry.npmjs.org/browserify/1.1.0", + "1.1.1": "http://registry.npmjs.org/browserify/1.1.1", + "1.1.2": "http://registry.npmjs.org/browserify/1.1.2", + "1.1.3": "http://registry.npmjs.org/browserify/1.1.3", + "1.1.4": "http://registry.npmjs.org/browserify/1.1.4", + "1.2.0": "http://registry.npmjs.org/browserify/1.2.0", + "1.2.1": "http://registry.npmjs.org/browserify/1.2.1", + "1.2.2": "http://registry.npmjs.org/browserify/1.2.2", + "1.2.3": "http://registry.npmjs.org/browserify/1.2.3", + "1.2.4": "http://registry.npmjs.org/browserify/1.2.4", + "1.2.5": "http://registry.npmjs.org/browserify/1.2.5", + "1.2.6": "http://registry.npmjs.org/browserify/1.2.6", + "1.2.7": "http://registry.npmjs.org/browserify/1.2.7", + "1.2.8": "http://registry.npmjs.org/browserify/1.2.8", + "1.2.9": "http://registry.npmjs.org/browserify/1.2.9", + "1.3.0": "http://registry.npmjs.org/browserify/1.3.0", + "1.4.0": "http://registry.npmjs.org/browserify/1.4.0", + "1.4.1": "http://registry.npmjs.org/browserify/1.4.1", + "1.4.2": "http://registry.npmjs.org/browserify/1.4.2", + "1.4.3": "http://registry.npmjs.org/browserify/1.4.3", + "1.4.4": "http://registry.npmjs.org/browserify/1.4.4", + "1.4.5": "http://registry.npmjs.org/browserify/1.4.5", + "1.4.6": "http://registry.npmjs.org/browserify/1.4.6", + "1.4.7": "http://registry.npmjs.org/browserify/1.4.7", + "1.4.8": "http://registry.npmjs.org/browserify/1.4.8", + "1.5.0": "http://registry.npmjs.org/browserify/1.5.0", + "1.6.0": "http://registry.npmjs.org/browserify/1.6.0", + "1.6.1": "http://registry.npmjs.org/browserify/1.6.1", + "1.7.0": "http://registry.npmjs.org/browserify/1.7.0", + "1.7.1": "http://registry.npmjs.org/browserify/1.7.1", + "1.7.2": "http://registry.npmjs.org/browserify/1.7.2", + "1.7.3": "http://registry.npmjs.org/browserify/1.7.3", + "1.7.4": "http://registry.npmjs.org/browserify/1.7.4", + "1.7.5": "http://registry.npmjs.org/browserify/1.7.5", + "1.7.6": "http://registry.npmjs.org/browserify/1.7.6", + "1.7.7": "http://registry.npmjs.org/browserify/1.7.7", + "1.8.0": "http://registry.npmjs.org/browserify/1.8.0", + "1.8.1": "http://registry.npmjs.org/browserify/1.8.1" + }, + "dist": { + "0.0.1": { + "shasum": "d3f2e476a7c91ee4664a77d92a88328f16a4b51c", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c93d7d08f3c5acd570d2895d6c83093154afce3e", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "e05a0a029a413378439e90559efdbc47c55e4c3e", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "24c86b71754f9091d4b7fe68151ab5ad1296083a", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "7a69b80ff5e5ffb2c291737f61a2b1d25e741b3e", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.0.5.tgz" + }, + "0.1.0": { + "shasum": "8393d4967771d499587b255b6ab0badd91958849", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "e52e2b5ea18823f63b4eb30afbfc246bea4fbe79", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "f8e9c1988f7c2db75c1d1148cf3d169deb7515fe", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "a8b8960fd5cbbaeb7dddc188f249a631c2e8a2c5", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "cf8a9cc30f71b049716faeefc12d2de197afdf4e", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "34464655d71c55897a13f5be6cadb32180f592cb", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.1.5.tgz" + }, + "0.2.0": { + "shasum": "212bafa8cf9574cd0c9c8e2e2c846024b4714f01", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "eeb769bd5dfef07acfc5f4e40317a5664796bb5a", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "8fcaa3411298c94f6737b6f51f896f57e07f2436", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "cd8f0f3908b5fd12165082b481ed9845ebc59fd6", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "57c3ffcc3071d72a97789b55aca7c70a1ff4579e", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "bf38d5f4084dd965e540786325eb87d85e039d20", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "1efd2a754f6e20258d953b6d48b140a0304d65c0", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "1078e6cfbbafdbeaf21e523f73705487f20d8256", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.2.7.tgz" + }, + "0.2.8": { + "shasum": "261765f7997cb5e58a27a3798d66a41f5a8d75bb", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.2.8.tgz" + }, + "0.2.9": { + "shasum": "e4945cc3e5dbc56c85f30fd17b8c9cbb72a23b96", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.2.9.tgz" + }, + "0.2.10": { + "shasum": "1a7bd2a49538358337c5aa2a66e52d2e2aeea82d", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.2.10.tgz" + }, + "0.2.11": { + "shasum": "cd1336a2b6d73f2a9d201c6d629d9e427ef1a8eb", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.2.11.tgz" + }, + "0.3.0": { + "shasum": "32ddfbb2b467e9af1b1aade67a533da678a36aef", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "71878b037bfb4dec67df82715f78cc23560ea0bd", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "e2b91efd2f487363a08bf1986c3aa45386fd3c8c", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "53fc53b044fbb5a8bf3f9f628d77f5dc148eee88", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.3.3.tgz" + }, + "0.3.4": { + "shasum": "7aa6e423eb1b1202a099b257cb32c92b45d96dc3", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.3.4.tgz" + }, + "0.3.5": { + "shasum": "a34a042dd6a009e7ad80b1088789b913a9647452", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.3.5.tgz" + }, + "0.3.6": { + "shasum": "9b4ce54ad68837b9c41462ed4cbd5f8a4b175e47", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.3.6.tgz" + }, + "0.3.7": { + "shasum": "e8c33fc5868eb69a8fdd957b1d5b562326092fb0", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.3.7.tgz" + }, + "0.4.0": { + "shasum": "86bd2120238d72a954a4008c34b318afdae027bb", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "f2a52484b57aa1412dcc79e52b901f3c2d5f434e", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "0a87b5370972d7e9a510806f6704063f77143882", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "0b6141138b5695c9dad3c385d77f5ea7319d1892", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.4.3.tgz" + }, + "0.4.4": { + "shasum": "1584bcac34f71c797b4119ea5ac41ed7096085f2", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.4.4.tgz" + }, + "0.4.5": { + "shasum": "e2ed2f246571883c008da981d71e9920bf9e4b70", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.4.5.tgz" + }, + "0.4.6": { + "shasum": "43364bcc3c7bcac253e8d1aeece710435d03041e", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.4.6.tgz" + }, + "0.4.7": { + "shasum": "dc85003d848583fed4c4465a900ca288f3140e64", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.4.7.tgz" + }, + "0.4.8": { + "shasum": "ca8dffc314163268f44d84e5065833578c6246d4", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.4.8.tgz" + }, + "0.4.9": { + "shasum": "5d0bcd8d4eee35761719208f90b5aaafa060fa18", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.4.9.tgz" + }, + "0.4.10": { + "shasum": "138a80a85c60639bb0390fed80270225206067ad", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.4.10.tgz" + }, + "0.4.11": { + "shasum": "36650c215b5ba1c9af7cac5620c3f7eb57da2484", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.4.11.tgz" + }, + "0.4.12": { + "shasum": "a5ae15c1fcd716e2ab1df211a1dd73d110f4aacc", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.4.12.tgz" + }, + "0.4.13": { + "shasum": "b511bd15982524c2aacdc3b481a195ea10f6bdff", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.4.13.tgz" + }, + "0.4.14": { + "shasum": "122f273f8989dbee28533bd50ba99da063c419fa", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.4.14.tgz" + }, + "0.4.15": { + "shasum": "0302c3955fb3811e8044b1cff238ac243fa2616b", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.4.15.tgz" + }, + "0.5.0": { + "shasum": "b16d407246d578df2d64e029f8e5004297f0a8cb", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "7d7c1c3a0071d4bd11366cc92d477e6b827b4a91", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "fe21067a2cb22e3285927d88254ce14afb9f3e6a", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-0.5.2.tgz" + }, + "1.0.0": { + "shasum": "4e6d9ab84c1e06c1e45583298d00ef314f1a4240", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-1.0.0.tgz" + }, + "1.1.0": { + "shasum": "45f1ba28c712c43b54f9a77bc6c5281718b61dac", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "7fc5ecc5a34342748aefe3e1134f67af1dfb8603", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-1.1.1.tgz" + }, + "1.1.2": { + "shasum": "49ce5b24ca9c9f5ce5e2b9a3932da603997c4e8f", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-1.1.2.tgz" + }, + "1.1.3": { + "shasum": "53ccff501164b70e6acf752afbad409b5edf4563", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-1.1.3.tgz" + }, + "1.1.4": { + "shasum": "5f05396f54ca99945f4d2e04e0c97ffb636732d9", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-1.1.4.tgz" + }, + "1.2.0": { + "shasum": "7ad6bf69714d50ab41a136319e8580b0f0cc52b7", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-1.2.0.tgz" + }, + "1.2.1": { + "shasum": "3f8ceea715c37239a81f7f11d7465870ba66d31a", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-1.2.1.tgz" + }, + "1.2.2": { + "shasum": "f2da0256751a793d4ddbc84260ac7d89de92b051", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-1.2.2.tgz" + }, + "1.2.3": { + "shasum": "414394758ade6369b81a65172bae248dc57e070d", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-1.2.3.tgz" + }, + "1.2.4": { + "shasum": "45e43246147fc94730b6422f183f4b6992e56a45", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-1.2.4.tgz" + }, + "1.2.5": { + "shasum": "80e1893a5aa37ee1c8bae8f076eecabecc2bff41", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-1.2.5.tgz" + }, + "1.2.6": { + "shasum": "1dcf2f38b28a4ae36e6c7e8a3420bf1d7698bc4d", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-1.2.6.tgz" + }, + "1.2.7": { + "shasum": "8d95abe1cd503e9cc422937064472e664d76d0a9", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-1.2.7.tgz" + }, + "1.2.8": { + "shasum": "d29a56138ec1b0aad7c59af1e90651f808b544d6", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-1.2.8.tgz" + }, + "1.2.9": { + "shasum": "f28fbbe374684773ee73b3095988ea9b03c2495f", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-1.2.9.tgz" + }, + "1.3.0": { + "shasum": "e38cbceeaf0516e0b87c8ba2ee13d559a42f6992", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-1.3.0.tgz" + }, + "1.4.0": { + "shasum": "8e38ecf6f56dc955e2a14d1a79e1060ef6d6884c", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-1.4.0.tgz" + }, + "1.4.1": { + "shasum": "856841dd90ebf8ebd4169249d59b9f85b09eb8b8", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-1.4.1.tgz" + }, + "1.4.2": { + "shasum": "e89716e8485b961327cf023f71ed7face37ebc65", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-1.4.2.tgz" + }, + "1.4.3": { + "shasum": "9eaf37881066e1646e6571c0163b9f14ca092532", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-1.4.3.tgz" + }, + "1.4.4": { + "shasum": "c2e6e5e3b66cf8b9ad2bc2dc36df910517ba7ecc", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-1.4.4.tgz" + }, + "1.4.5": { + "shasum": "5f09c89d3d172db9528d02fdc55c787c54555b30", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-1.4.5.tgz" + }, + "1.4.6": { + "shasum": "87fda134824bb71fc798ff7a564ceaa4ae24f423", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-1.4.6.tgz" + }, + "1.4.7": { + "shasum": "f00c5a4623efa88878d3d84aa456ebe2a3dc172e", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-1.4.7.tgz" + }, + "1.4.8": { + "shasum": "8243878bfcdcac830554d108eb18b9ba509eaa0a", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-1.4.8.tgz" + }, + "1.5.0": { + "shasum": "5fe874ad1b0726d8a7d3d1fe953058e5a2442cba", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-1.5.0.tgz" + }, + "1.6.0": { + "shasum": "1c34d9f8218caf952eaae31da6e0c84e619afe80", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-1.6.0.tgz" + }, + "1.6.1": { + "shasum": "9198e3b6b32055d47a95442bc0001b1032679627", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-1.6.1.tgz" + }, + "1.7.0": { + "shasum": "011d8ac0dec5443b55cd8d7d598d108f6d23afc7", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-1.7.0.tgz" + }, + "1.7.1": { + "shasum": "267da4c564c3f932f9db3574574330250a765a61", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-1.7.1.tgz" + }, + "1.7.2": { + "shasum": "bb5691a3e7b6d5b3ef412205ced7708e7c216419", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-1.7.2.tgz" + }, + "1.7.3": { + "shasum": "ef0aed36b51d53993abd02dea5c30a39b7ede5a1", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-1.7.3.tgz" + }, + "1.7.4": { + "shasum": "193357217fc54641f233bf11f9b0595b98558f0c", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-1.7.4.tgz" + }, + "1.7.5": { + "shasum": "ac617925a5cf80865007c8171fd614c1dfc3c95a", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-1.7.5.tgz" + }, + "1.7.6": { + "shasum": "7fbd2cde0c16abca2c8904ba32373867e7af9954", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-1.7.6.tgz" + }, + "1.7.7": { + "shasum": "b81d4a7f8456f443c9c22d400c4abed53a686d37", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-1.7.7.tgz" + }, + "1.8.0": { + "shasum": "1889e5b1dde61a73ee1f5d2a7b92adb5ae8057f2", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-1.8.0.tgz" + }, + "1.8.1": { + "shasum": "b87edabbdc8571981e4aab4335102fd0e32389f0", + "tarball": "http://registry.npmjs.org/browserify/-/browserify-1.8.1.tgz" + } + }, + "keywords": [ + "browser", + "require", + "middleware", + "bundle", + "npm", + "coffee", + "javascript" + ], + "url": "http://registry.npmjs.org/browserify/" + }, + "browserify-cache": { + "name": "browserify-cache", + "description": "Easily cache Browserify bundles", + "dist-tags": { + "latest": "0.2.0" + }, + "readme": null, + "maintainers": [ + { + "name": "bminer", + "email": "miner.blake@gmail.com" + } + ], + "time": { + "modified": "2011-12-08T23:12:55.433Z", + "created": "2011-11-18T13:27:20.540Z", + "0.1.0": "2011-11-18T13:27:20.690Z", + "0.1.1": "2011-11-21T17:14:59.630Z", + "0.2.0": "2011-12-08T23:12:55.433Z" + }, + "author": { + "name": "Blake Miner", + "email": "miner.blake@gmail.com", + "url": "http://www.blakeminer.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/bminer/browserify-cache.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/browserify-cache/0.1.0", + "0.1.1": "http://registry.npmjs.org/browserify-cache/0.1.1", + "0.2.0": "http://registry.npmjs.org/browserify-cache/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "6681818f37ce725ca6f9c5a816cde3f2a6a25249", + "tarball": "http://registry.npmjs.org/browserify-cache/-/browserify-cache-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "9c1d8373e6aba34385ec5ebe60569d651206d646", + "tarball": "http://registry.npmjs.org/browserify-cache/-/browserify-cache-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "83167b11ea0a5b839fc07c7e9b1f5fba3cb5343b", + "tarball": "http://registry.npmjs.org/browserify-cache/-/browserify-cache-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/browserify-cache/" + }, + "browserify-jquery": { + "name": "browserify-jquery", + "description": "jQuery: The Write Less, Do More, JavaScript Library (packaged for Node.JS)", + "dist-tags": { + "latest": "1.6.3" + }, + "maintainers": [ + { + "name": "cjroebuck", + "email": "tophtfc@gmail.com" + } + ], + "time": { + "modified": "2011-10-07T20:35:53.202Z", + "created": "2011-10-07T20:35:51.915Z", + "1.6.3": "2011-10-07T20:35:53.202Z" + }, + "author": { + "name": "John Resig", + "email": "jeresig@gmail.com" + }, + "versions": { + "1.6.3": "http://registry.npmjs.org/browserify-jquery/1.6.3" + }, + "dist": { + "1.6.3": { + "shasum": "42a0fed8d2680b7f2742435ca4f7d4cf197df16c", + "tarball": "http://registry.npmjs.org/browserify-jquery/-/browserify-jquery-1.6.3.tgz" + } + }, + "keywords": [ + "util", + "dom", + "jquery" + ], + "url": "http://registry.npmjs.org/browserify-jquery/" + }, + "browserijade": { + "name": "browserijade", + "description": "A Browserify middleware that pre-compiles Jade templates on the server and uses the light-weight Jade runtime made for the browser to render them on the client.", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "edmellum", + "email": "david@edmellum.com" + } + ], + "time": { + "modified": "2011-10-29T17:34:37.567Z", + "created": "2011-10-23T03:25:47.557Z", + "0.1.0": "2011-10-23T03:25:49.697Z", + "0.2.0": "2011-10-29T17:34:37.567Z" + }, + "author": { + "name": "David Ed Mellum", + "email": "david@edmellum.com", + "url": "http://edmellum.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/edmellum/browserijade.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/browserijade/0.1.0", + "0.2.0": "http://registry.npmjs.org/browserijade/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "f56ae669129359a5973cb7cf0c000d37e09f2a8a", + "tarball": "http://registry.npmjs.org/browserijade/-/browserijade-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "18bd01147cf5bbb4055cdcc4f77f18b32a4b42bd", + "tarball": "http://registry.npmjs.org/browserijade/-/browserijade-0.2.0.tgz" + } + }, + "keywords": [ + "browserify", + "middleware", + "jade", + "template", + "view" + ], + "url": "http://registry.npmjs.org/browserijade/" + }, + "browserjet": { + "name": "browserjet", + "description": "headless webkit browser", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "briankircho", + "email": "briankircho@gmail.com" + } + ], + "time": { + "modified": "2011-07-18T01:18:11.900Z", + "created": "2011-07-18T01:18:11.461Z", + "0.1.0": "2011-07-18T01:18:11.900Z" + }, + "author": { + "name": "Brian Kirchoff", + "email": "briankircho@gmail.com", + "url": "http://bkirchoff.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/briankircho/browserjet.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/browserjet/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "ade0aafccb8bedc59001295bfc33485ee814be7f", + "tarball": "http://registry.npmjs.org/browserjet/-/browserjet-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/browserjet/" + }, + "browsify": { + "name": "browsify", + "description": "convert CommonJS modules into browser compatible ones", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "brentlintner", + "email": "brent.lintner@gmail.com" + } + ], + "time": { + "modified": "2011-11-26T22:30:01.908Z", + "created": "2011-11-26T22:30:00.803Z", + "0.0.1": "2011-11-26T22:30:01.908Z" + }, + "author": { + "name": "Brent Lintner", + "email": "brent.lintner@gmail.com", + "url": "http://github.com/brentlintner" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/browsify/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "2ef706df0bdb79a1fa352e91773b527f9435c586", + "tarball": "http://registry.npmjs.org/browsify/-/browsify-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/browsify/" + }, + "brt": { + "name": "brt", + "description": "Browser Tools: command-line tools for browsers", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "bat", + "email": "ben@benatkin.com" + } + ], + "time": { + "modified": "2011-05-16T02:20:06.514Z", + "created": "2011-05-16T02:20:06.200Z", + "0.0.1": "2011-05-16T02:20:06.514Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/brt/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "06f5ad881a6a7bec2923a3fb7b11f9b938f1ff3d", + "tarball": "http://registry.npmjs.org/brt/-/brt-0.0.1.tgz" + } + }, + "keywords": [ + "command-line", + "browsers", + "browser extensions", + "utilities" + ], + "url": "http://registry.npmjs.org/brt/" + }, + "brunch": { + "name": "brunch", + "description": "~ with coffee … is a lightweight client side framework on top of backbone.js, eco and stylus using coffee-script", + "dist-tags": { + "latest": "0.8.1" + }, + "maintainers": [ + { + "name": "tosh", + "email": "tosh@blossom.io" + }, + { + "name": "nikgraf", + "email": "nik@deck.cc" + } + ], + "time": { + "modified": "2011-08-22T14:57:38.217Z", + "created": "2011-01-21T01:12:22.161Z", + "0.0.1": "2011-01-21T01:12:22.755Z", + "0.0.2": "2011-01-21T01:23:44.041Z", + "0.0.3": "2011-01-21T02:45:40.315Z", + "0.0.4": "2011-01-25T17:52:42.105Z", + "0.0.5": "2011-01-25T18:03:54.389Z", + "0.0.6": "2011-01-25T19:27:40.807Z", + "0.0.7": "2011-01-26T17:07:35.192Z", + "0.0.8": "2011-01-26T23:15:24.930Z", + "0.1.0": "2011-01-27T15:17:10.690Z", + "0.1.1": "2011-01-27T16:43:27.647Z", + "0.1.3": "2011-01-29T17:01:53.199Z", + "0.1.4": "2011-01-29T19:17:22.271Z", + "0.1.5": "2011-01-29T20:11:37.076Z", + "0.1.6": "2011-01-31T15:52:19.158Z", + "0.1.7": "2011-01-31T15:57:02.566Z", + "0.1.8": "2011-01-31T18:02:08.208Z", + "0.1.9": "2011-01-31T18:58:46.231Z", + "0.2.0": "2011-02-01T14:28:38.286Z", + "0.2.1": "2011-02-01T15:02:09.618Z", + "0.2.2": "2011-02-01T15:47:01.225Z", + "0.2.3": "2011-02-01T17:28:17.203Z", + "0.2.4": "2011-02-02T10:18:09.114Z", + "0.2.6": "2011-02-02T10:53:21.874Z", + "0.2.7": "2011-02-04T00:10:21.789Z", + "0.2.8": "2011-02-07T17:15:31.234Z", + "0.3.0": "2011-02-15T15:45:23.653Z", + "0.3.1": "2011-02-16T12:43:41.146Z", + "0.3.2": "2011-02-17T11:37:33.965Z", + "0.3.4": "2011-02-21T13:56:46.379Z", + "0.3.5": "2011-02-21T15:48:49.729Z", + "0.3.6": "2011-02-21T21:06:03.166Z", + "0.3.7": "2011-02-23T12:11:26.550Z", + "0.4.0": "2011-02-23T17:39:49.576Z", + "0.4.1": "2011-02-23T17:48:07.229Z", + "0.4.2": "2011-02-24T15:12:54.624Z", + "0.4.3": "2011-02-25T10:13:21.208Z", + "0.4.4": "2011-02-28T09:09:08.802Z", + "0.4.5": "2011-03-03T21:27:53.292Z", + "0.5.1": "2011-03-07T21:12:36.614Z", + "0.5.2": "2011-03-07T21:14:38.553Z", + "0.5.3": "2011-03-07T21:17:51.720Z", + "0.5.4": "2011-03-07T22:23:07.165Z", + "0.5.5": "2011-03-12T03:03:51.231Z", + "0.5.6": "2011-03-14T12:53:17.078Z", + "0.6.0": "2011-03-22T16:49:14.172Z", + "0.6.1": "2011-03-22T17:25:53.840Z", + "0.6.2": "2011-04-05T10:18:28.830Z", + "0.7.0": "2011-04-21T14:57:40.354Z", + "0.7.1": "2011-05-08T20:05:32.056Z", + "0.7.2": "2011-05-18T23:50:52.143Z", + "0.7.3": "2011-06-07T12:52:52.750Z", + "0.7.4": "2011-07-22T14:45:22.296Z", + "0.8.0": "2011-08-01T10:59:53.685Z", + "0.8.1": "2011-08-22T14:57:38.217Z" + }, + "author": { + "name": "brunch", + "email": "brunch@blossom.io" + }, + "repository": { + "type": "git", + "url": "git://github.com/brunch/brunch.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/brunch/0.0.1", + "0.0.2": "http://registry.npmjs.org/brunch/0.0.2", + "0.0.3": "http://registry.npmjs.org/brunch/0.0.3", + "0.0.4": "http://registry.npmjs.org/brunch/0.0.4", + "0.0.5": "http://registry.npmjs.org/brunch/0.0.5", + "0.0.6": "http://registry.npmjs.org/brunch/0.0.6", + "0.0.7": "http://registry.npmjs.org/brunch/0.0.7", + "0.0.8": "http://registry.npmjs.org/brunch/0.0.8", + "0.1.0": "http://registry.npmjs.org/brunch/0.1.0", + "0.1.1": "http://registry.npmjs.org/brunch/0.1.1", + "0.1.3": "http://registry.npmjs.org/brunch/0.1.3", + "0.1.4": "http://registry.npmjs.org/brunch/0.1.4", + "0.1.5": "http://registry.npmjs.org/brunch/0.1.5", + "0.1.6": "http://registry.npmjs.org/brunch/0.1.6", + "0.1.7": "http://registry.npmjs.org/brunch/0.1.7", + "0.1.8": "http://registry.npmjs.org/brunch/0.1.8", + "0.1.9": "http://registry.npmjs.org/brunch/0.1.9", + "0.2.0": "http://registry.npmjs.org/brunch/0.2.0", + "0.2.1": "http://registry.npmjs.org/brunch/0.2.1", + "0.2.2": "http://registry.npmjs.org/brunch/0.2.2", + "0.2.3": "http://registry.npmjs.org/brunch/0.2.3", + "0.2.4": "http://registry.npmjs.org/brunch/0.2.4", + "0.2.6": "http://registry.npmjs.org/brunch/0.2.6", + "0.2.7": "http://registry.npmjs.org/brunch/0.2.7", + "0.2.8": "http://registry.npmjs.org/brunch/0.2.8", + "0.3.0": "http://registry.npmjs.org/brunch/0.3.0", + "0.3.1": "http://registry.npmjs.org/brunch/0.3.1", + "0.3.2": "http://registry.npmjs.org/brunch/0.3.2", + "0.3.4": "http://registry.npmjs.org/brunch/0.3.4", + "0.3.5": "http://registry.npmjs.org/brunch/0.3.5", + "0.3.6": "http://registry.npmjs.org/brunch/0.3.6", + "0.3.7": "http://registry.npmjs.org/brunch/0.3.7", + "0.4.0": "http://registry.npmjs.org/brunch/0.4.0", + "0.4.1": "http://registry.npmjs.org/brunch/0.4.1", + "0.4.2": "http://registry.npmjs.org/brunch/0.4.2", + "0.4.3": "http://registry.npmjs.org/brunch/0.4.3", + "0.4.4": "http://registry.npmjs.org/brunch/0.4.4", + "0.4.5": "http://registry.npmjs.org/brunch/0.4.5", + "0.5.1": "http://registry.npmjs.org/brunch/0.5.1", + "0.5.2": "http://registry.npmjs.org/brunch/0.5.2", + "0.5.3": "http://registry.npmjs.org/brunch/0.5.3", + "0.5.4": "http://registry.npmjs.org/brunch/0.5.4", + "0.5.5": "http://registry.npmjs.org/brunch/0.5.5", + "0.5.6": "http://registry.npmjs.org/brunch/0.5.6", + "0.6.0": "http://registry.npmjs.org/brunch/0.6.0", + "0.6.1": "http://registry.npmjs.org/brunch/0.6.1", + "0.6.2": "http://registry.npmjs.org/brunch/0.6.2", + "0.7.0": "http://registry.npmjs.org/brunch/0.7.0", + "0.7.1": "http://registry.npmjs.org/brunch/0.7.1", + "0.7.2": "http://registry.npmjs.org/brunch/0.7.2", + "0.7.3": "http://registry.npmjs.org/brunch/0.7.3", + "0.7.4": "http://registry.npmjs.org/brunch/0.7.4", + "0.8.0": "http://registry.npmjs.org/brunch/0.8.0", + "0.8.1": "http://registry.npmjs.org/brunch/0.8.1" + }, + "dist": { + "0.0.1": { + "shasum": "24ca01e75fee5d7205da43c2e00b6b97247929c2", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "3c5f1cbff0d4ba3a5635ef6dbb17a76bd26efdaa", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "c9add09e6a3fdbffc44a177e3085564c0ae85420", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "76e7ac9f39a01f27ca8645ea568c95046cbb746e", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "4298a5eac1530aed72a984265cbc968a6c842d09", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "54a064fb9f90a7d4d87ea4bd5fc64486e8270f85", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "7245a69f897a5d62098cbf0b30f5eed9c7c2646e", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "feb0afc3962539f55439a866783b7d3f3b7b9e79", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.0.8.tgz" + }, + "0.1.0": { + "shasum": "40fa7b643d2e5888a2e812274f3f37ce7ae6bab8", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "8ec585c8176c5bde084b2809a442c770922d03ba", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.1.1.tgz" + }, + "0.1.3": { + "shasum": "4f099426ff24621d334efd7ddc2162d7a94844e1", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "38d72c86935a21e463141b8c2a76a2286d904fc2", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "fb0363aa74470979f8ccc1ed66f4b2ba14e2b34a", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "9ffbad61326232b168a6e18348001119e3d2c622", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "5460e38a49f516e2694cb72707d97ee63b3580ef", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "bb6b3917e2ac8fe3586635be13cd08c80d4d35ef", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "96f2a6c5592a34a3bb653814227ae07e9eddfaf0", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.1.9.tgz" + }, + "0.2.0": { + "shasum": "771be6688505d4ef9deff879835cea99cf45f40e", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "ec135577f5cbf70d9167824d6aeb7fe60b017292", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "809675ad4ae9380c269c08ce97e2e42c8efa65af", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "4934a7961a7f599acb078a4c9de6ac10ddd601c0", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "55ed33ac9f95760cea234e33aebcc1ca63792dec", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.2.4.tgz" + }, + "0.2.6": { + "shasum": "d5c3c14f610b43a40aade04b52ec66fa5394b19d", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "777c7958fa46d9727ba715bf191399f88a5fc194", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.2.7.tgz" + }, + "0.2.8": { + "shasum": "ed131c36c4a4269f755f4ed23f69a437fe1a4e4d", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.2.8.tgz" + }, + "0.3.0": { + "shasum": "46e7a262a628ff1fa8236089a31dcb62f908c8f0", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "53d671a10c33158227f4b9253c34fa8de5a63b1d", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "ff07dbcff8e31e31368a0134f510a2676e27e67e", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.3.2.tgz" + }, + "0.3.4": { + "shasum": "1ed4fc52ba950946faa2e5548910f4d0cbbd05cb", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.3.4.tgz" + }, + "0.3.5": { + "shasum": "657adb1c424ba93e3b647a6f93da0743c1144aa7", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.3.5.tgz" + }, + "0.3.6": { + "shasum": "4ff0c6c9fb576e5249eed6a1122e948ff4a98a12", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.3.6.tgz" + }, + "0.3.7": { + "shasum": "9d8ebfacf4edd582ad5c1e4fda9ecb333b59385a", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.3.7.tgz" + }, + "0.4.0": { + "shasum": "0323173e5ec18e22583c60881eaba4ae11b9fb09", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "b803a7f28adb069905c93703e0e5c93c7d8c09e1", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "8d628cffdb06923bc6fa5001b40372b225e19dcd", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "a3c82e7c7b283a47f7605dc9f9ff096284703ad2", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.4.3.tgz" + }, + "0.4.4": { + "shasum": "031d7ef80c1f9866b8ec41a559eaf91d8240e19f", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.4.4.tgz" + }, + "0.4.5": { + "shasum": "657ac20793485109a532ed9c7eb793ed9fddef41", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.4.5.tgz" + }, + "0.5.1": { + "shasum": "e314eb4ef89e1a5109ee6a61611524d4c7e3fc57", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "35a82cd14b24a91fed41a2b604a308edb19b17a7", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.5.2.tgz" + }, + "0.5.3": { + "shasum": "548cbadc28280751fbf144ee0b80e9dcdfe03216", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.5.3.tgz" + }, + "0.5.4": { + "shasum": "12f3ddb35e388a4c57d300c9bef2c110203d0c42", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.5.4.tgz" + }, + "0.5.5": { + "shasum": "4996afc31385baf515d2542d0ab3877222928b51", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.5.5.tgz" + }, + "0.5.6": { + "shasum": "53884cb4d94de9877fdb7caf1a81e44bcf473e1a", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.5.6.tgz" + }, + "0.6.0": { + "shasum": "114803b0854c71818f093cde086faf9060050ef1", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "2a9ea910e8d5c6a2e47047d99bda631d7e2fe4f9", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.6.1.tgz" + }, + "0.6.2": { + "shasum": "0d2e62c89692061162502ba5297af2515e216ae8", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.6.2.tgz" + }, + "0.7.0": { + "shasum": "655ea29c889311b602723ee8d98ec6a691863aab", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.7.0.tgz" + }, + "0.7.1": { + "shasum": "dc04ab25d238addbb8e914614278e6e3e267c0a6", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.7.1.tgz" + }, + "0.7.2": { + "shasum": "7864c88f5df776bafb7fcee4a9bca10b50b11012", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.7.2.tgz" + }, + "0.7.3": { + "shasum": "c65b923f4199f2231a926bad1fde10a0915806e9", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.7.3.tgz" + }, + "0.7.4": { + "shasum": "e20d8b6b254ba7e1b0a39f56233bdc0b7ed77527", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.7.4.tgz" + }, + "0.8.0": { + "shasum": "17638e2e1e5697ab1c0c5b2792b783767d0a6d19", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.8.0.tgz" + }, + "0.8.1": { + "shasum": "e5292a017cbb4211e72fc8d0bf6a4f4f4ff2c670", + "tarball": "http://registry.npmjs.org/brunch/-/brunch-0.8.1.tgz" + } + }, + "keywords": [ + "backbone", + "coffeescript", + "jst", + "jquery", + "zepto", + "framework", + "brunch", + "stylus", + "eco", + "underscore" + ], + "url": "http://registry.npmjs.org/brunch/" + }, + "brushes.js": { + "name": "brushes.js", + "description": "HTML5 canvas brushes", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "jimschubert", + "email": "james.schubert@gmail.com" + } + ], + "time": { + "modified": "2011-10-04T22:58:57.040Z", + "created": "2011-09-21T01:08:19.869Z", + "0.0.1": "2011-09-21T01:08:24.507Z", + "0.0.2": "2011-10-04T22:58:57.040Z" + }, + "author": { + "name": "Jim Schubert", + "email": "james.schubert@gmail.com", + "url": "http://github.com/jimschubert" + }, + "repository": { + "type": "git", + "url": "git://github.com/jimschubert/brushes.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/brushes.js/0.0.1", + "0.0.2": "http://registry.npmjs.org/brushes.js/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "c8fe11b522c071ec8025a424ada23fd2ca32acbf", + "tarball": "http://registry.npmjs.org/brushes.js/-/brushes.js-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "73880f1e1b0ca26cd860a904b1df4e86086b77a3", + "tarball": "http://registry.npmjs.org/brushes.js/-/brushes.js-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/brushes.js/" + }, + "bson": { + "name": "bson", + "description": "BSON library for node", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "octave", + "email": "chinsay@gmail.com" + } + ], + "time": { + "modified": "2011-04-15T21:04:34.200Z", + "created": "2011-04-13T11:47:38.022Z", + "0.0.1": "2011-04-13T11:47:38.760Z", + "0.0.2": "2011-04-13T12:06:25.170Z", + "0.0.3": "2011-04-13T12:12:14.821Z" + }, + "author": { + "name": "Christian Amor Kvalheim", + "email": "christkv@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/0ctave/node-bson.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/bson/0.0.1", + "0.0.2": "http://registry.npmjs.org/bson/0.0.2", + "0.0.3": "http://registry.npmjs.org/bson/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "6acbeb2b8538032ddc4f15e79b49dd51a44a3d07", + "tarball": "http://registry.npmjs.org/bson/-/bson-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "e49c84d6521ca63b45cfdaf4c892517be932b6c2", + "tarball": "http://registry.npmjs.org/bson/-/bson-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "b32bee9b60099274fec2359d93057c3c0f69741e", + "tarball": "http://registry.npmjs.org/bson/-/bson-0.0.3.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "122e6a4522771ed3a23af4f069c3c4e2551028c2", + "tarball": "http://registry.npmjs.org/bson/-/bson-0.0.3-0.4-sunos-5.11.tgz" + } + } + } + }, + "url": "http://registry.npmjs.org/bson/" + }, + "btc-ex-api": { + "name": "btc-ex-api", + "description": "API for interacting with Bitcoin exchanges", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "er88", + "email": "sean@eternalrise.com" + } + ], + "time": { + "modified": "2011-07-16T22:28:20.412Z", + "created": "2011-07-16T22:28:20.133Z", + "0.0.1": "2011-07-16T22:28:20.412Z" + }, + "author": { + "name": "Sean Lavine", + "email": "sean@eternalrise.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/er88/btc-ex-api.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/btc-ex-api/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "dc1675fc484e951aae30c2e2b9cf8953654284ae", + "tarball": "http://registry.npmjs.org/btc-ex-api/-/btc-ex-api-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/btc-ex-api/" + }, + "btoa": { + "name": "btoa", + "description": "btoa for Node.JS (it's a one-liner)", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-09-09T20:52:26.042Z", + "created": "2011-09-09T20:52:25.639Z", + "1.0.0": "2011-09-09T20:52:26.042Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com", + "url": "http://coolaj86.info" + }, + "repository": { + "type": "git", + "url": "git://github.com/coolaj86/node-browser-compat.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/btoa/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "554b62c2c2d837f71b9959f1b42a37fec8d02fcb", + "tarball": "http://registry.npmjs.org/btoa/-/btoa-1.0.0.tgz" + } + }, + "keywords": [ + "btoa", + "browser" + ], + "url": "http://registry.npmjs.org/btoa/" + }, + "btoa-atob": { + "name": "btoa-atob", + "description": "CLI tools to convert files into and from base64.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "jussi-kalliokoski", + "email": "jussi.kalliokoski@gmail.com" + } + ], + "time": { + "modified": "2011-05-31T16:06:30.340Z", + "created": "2011-05-31T16:06:29.278Z", + "0.1.0": "2011-05-31T16:06:30.340Z" + }, + "author": { + "name": "Jussi Kalliokoski", + "url": "http://niiden.com/jussi/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jussi-kalliokoski/btoa-atob.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/btoa-atob/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "3283c8596616cb41ecc89ef91b888b763f49af87", + "tarball": "http://registry.npmjs.org/btoa-atob/-/btoa-atob-0.1.0.tgz" + } + }, + "keywords": [ + "base64", + "btoa", + "atob", + "convert", + "cli", + "tools" + ], + "url": "http://registry.npmjs.org/btoa-atob/" + }, + "bucket": { + "name": "bucket", + "description": "a s3 library that uses deferred callbacks", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "alexbosworth", + "email": "alex.bosworth+npm@gmail.com" + } + ], + "time": { + "modified": "2011-09-10T08:05:14.449Z", + "created": "2011-09-10T08:05:09.652Z", + "0.0.1": "2011-09-10T08:05:14.449Z" + }, + "author": { + "name": "Alex Bosworth", + "email": "alex.bosworth@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/alexbosworth/bucket.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/bucket/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "d09ac2c33052dd23d68cc7029f11d076a0c4f362", + "tarball": "http://registry.npmjs.org/bucket/-/bucket-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/bucket/" + }, + "buddy": { + "name": "buddy", + "description": "A build framework for the compilation of higher order js/css languages (coffeescript/stylus/less).", + "dist-tags": { + "latest": "0.3.8" + }, + "readme": "# Buddy\n\nBuddy is primarily a tooling framework for the compilation of higher order js/css languages (coffeescript/stylus/less). \nAdditionally, by enabling Node.js-style module wrapping and syntax, it promotes better js code organization, \nand provides automatic concatenation of code for more efficient delivery to the browser.\n\n## Installation\n\nUse the *-g* global flag to make the **buddy** command available system-wide:\n\n```bash\n$ npm -g install buddy\n```\n\n## Usage\n\n```bash\n$ cd path/to/my/project\n# compile all source files\n$ buddy compile\n# watch for source changes and compile\n$ buddy watch\n# compile and minify for production\n$ buddy deploy\n# view usage, examples, and options\n$ buddy --help\n```\n\n### Configuration\n\nThe only requirement for adding Buddy support to a project is the presence of a **buddy.json** file:\n\n```json\n{\n \"js\": {\n \"sources\": [\"a/coffeescript/folder\", \"a/js/folder\"],\n \"targets\": [\n {\n \"in\": \"a/coffeescript/or/js/file\",\n \"out\": \"a/js/file/or/folder\"\n },\n {\n \"in\": \"a/coffeescript/folder\",\n \"out\": \"a/folder\"\n }\n ]\n },\n \"css\": {\n \"sources\": [\"a/stylus/folder\", \"a/less/folder\"],\n \"targets\": [\n {\n \"in\": \"a/stylus/or/less/file\",\n \"out\": \"a/css/file/or/folder\"\n },\n {\n \"in\": \"a/stylus/or/less/folder\",\n \"out\": \"a/folder\"\n }\n ]\n }\n}\n```\n\nFor each build type (js/css), you begin by specifying source paths from which your build targets are referenced.\nEach build target should specify an input and corresponding output file or folder. \nTargets are run in sequence enabling you to chain builds together.\nAs an example, you could compile a library, then reference some library files in your project:\n\n```json\n\"js\": {\n \"sources\": [\"lib/src/coffee\", \"lib/js\", \"src\"],\n \"targets\": [\n {\n \"in\": \"lib/src/coffee\", <--a folder of coffee-script files (including nested folders)\n \"out\": \"lib/js\" <--a folder of compiled js files\n },\n {\n \"in\": \"src/main.js\", <--the application entry point referencing library dependencies\n \"out\": \"js/main.js\" <--a concatenation of referenced dependencies\n }\n ]\n}\n```\n\n### Modules\n\nBuddy wraps each coffee-script/js file in a module declaration based on the file location. \nDependencies (and concatenation order) are determined by the use of ***require*** statements:\n\n```javascript\nvar lib = require('./my/lib'); // in current package\nvar SomeClass = require('../some_class'); // in parent package\n\nlib.doSomething();\nvar something = new SomeClass();\n```\n\nSpecifying a module's public behaviour is achieved by decorating an *exports* object:\n\n```javascript\nvar myModuleVar = 'my module';\n\nexports.myModuleMethod = function() { \n return myModuleVar;\n};\n```\n\nor overwriting the *exports* object completely:\n\n```javascript\nfunction MyModule() {\n this.myVar = 'my instance var';\n};\n\nMyModule.prototype.myMethod = function() {\n return this.myVar;\n};\n\nmodule.exports = MyModule;\n```\n\nEach module is provided with a ***module***, ***exports***, and ***require*** reference.\n\nWhen *require*-ing a module, keep in mind that the module id is resolved based on the following rules:\n\n - packages begin at the root folder specified in buddy.json > js > sources:\n```\n'Users/alex/project/src/package/main.js' > 'package/main'\n```\n - uppercase filenames are converted to lowercase module ids: \n```\n'my/package/Class.js' > 'my/package/class'\n```\n - camelcase filenames are converted to lowercase/underscore module ids: \n```\n'my/package/ClassCamelCase.js' > 'my/package/class_camel_case'\n```\n\nSee [node.js modules](http://nodejs.org/docs/v0.6.0/api/modules.html) for more info on modules.\n\n## License \n\n(The MIT License)\n\nCopyright (c) 2011 Pope-Industries <alex@pope-industries.com>\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n", + "maintainers": [ + { + "name": "popeindustries", + "email": "alex@pope-industries.com" + } + ], + "time": { + "modified": "2011-12-05T12:16:40.952Z", + "created": "2011-11-21T11:37:33.612Z", + "0.3.0": "2011-11-21T11:37:35.346Z", + "0.3.1": "2011-11-22T13:39:28.943Z", + "0.3.2": "2011-11-23T11:36:39.948Z", + "0.3.3": "2011-11-25T10:56:41.918Z", + "0.3.4": "2011-11-30T12:21:28.028Z", + "0.3.5": "2011-12-01T14:55:19.494Z", + "0.3.6": "2011-12-02T11:51:54.389Z", + "0.3.7": "2011-12-02T13:40:26.531Z", + "0.3.8": "2011-12-05T12:16:40.952Z" + }, + "author": { + "name": "popeindustries", + "email": "alex@pope-industries.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/popeindustries/buddy.git" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/buddy/0.3.0", + "0.3.1": "http://registry.npmjs.org/buddy/0.3.1", + "0.3.2": "http://registry.npmjs.org/buddy/0.3.2", + "0.3.3": "http://registry.npmjs.org/buddy/0.3.3", + "0.3.4": "http://registry.npmjs.org/buddy/0.3.4", + "0.3.5": "http://registry.npmjs.org/buddy/0.3.5", + "0.3.6": "http://registry.npmjs.org/buddy/0.3.6", + "0.3.7": "http://registry.npmjs.org/buddy/0.3.7", + "0.3.8": "http://registry.npmjs.org/buddy/0.3.8" + }, + "dist": { + "0.3.0": { + "shasum": "89849be36fb5d28872c9c16cd9661b70a394c62b", + "tarball": "http://registry.npmjs.org/buddy/-/buddy-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "a1a4704eb55c02966c4bde46d39393819f004d6b", + "tarball": "http://registry.npmjs.org/buddy/-/buddy-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "c7dfc35cc445ceb60ed9942ec6aa1d2785257514", + "tarball": "http://registry.npmjs.org/buddy/-/buddy-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "7636dffa8b9cf25ca6b3a1543915f4b0c7220e59", + "tarball": "http://registry.npmjs.org/buddy/-/buddy-0.3.3.tgz" + }, + "0.3.4": { + "shasum": "a2cbb50f1f4abf0db02b824f80150b7dc4b667d9", + "tarball": "http://registry.npmjs.org/buddy/-/buddy-0.3.4.tgz" + }, + "0.3.5": { + "shasum": "f6306bc6c4ece77fb25944a8855ae4e369b44382", + "tarball": "http://registry.npmjs.org/buddy/-/buddy-0.3.5.tgz" + }, + "0.3.6": { + "shasum": "15921329a0f16bb1ce0460b94b5ad5ca72824065", + "tarball": "http://registry.npmjs.org/buddy/-/buddy-0.3.6.tgz" + }, + "0.3.7": { + "shasum": "a0a75736d41443da6f7ed980117331b684ddf962", + "tarball": "http://registry.npmjs.org/buddy/-/buddy-0.3.7.tgz" + }, + "0.3.8": { + "shasum": "d91d02f157a273375ab96b13e9b7ebc254b788c3", + "tarball": "http://registry.npmjs.org/buddy/-/buddy-0.3.8.tgz" + } + }, + "keywords": [ + "javascript", + "coffeescript", + "styus", + "less" + ], + "url": "http://registry.npmjs.org/buddy/" + }, + "buffalo": { + "name": "buffalo", + "description": "Buffalo is a lightweight BSON library for Node.js", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "marcello", + "email": "marcello@cellosoft.com" + } + ], + "time": { + "modified": "2011-09-08T02:08:08.087Z", + "created": "2011-06-21T03:30:17.907Z", + "0.1.0": "2011-06-21T03:30:18.138Z", + "0.1.1": "2011-09-08T02:03:26.438Z" + }, + "author": { + "name": "Marcello Bastéa-Forte", + "email": "marcello@cellosoft.com", + "url": "http://marcello.cellosoft.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/marcello3d/node-buffalo.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/buffalo/0.1.0", + "0.1.1": "http://registry.npmjs.org/buffalo/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "f30fc4e64c066415adc869573b84097432e7efe4", + "tarball": "http://registry.npmjs.org/buffalo/-/buffalo-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "083fd27a4303b3c22899edfe9017bb3479ba807e", + "tarball": "http://registry.npmjs.org/buffalo/-/buffalo-0.1.1.tgz" + } + }, + "keywords": [ + "mongo", + "mongodb", + "bson", + "binary", + "binary json" + ], + "url": "http://registry.npmjs.org/buffalo/" + }, + "Buffer": { + "name": "Buffer", + "description": "API-compatible Node.JS Buffer for Ender.js (browser)", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-08-01T20:40:41.710Z", + "created": "2011-08-01T20:40:41.355Z", + "0.0.0": "2011-08-01T20:40:41.710Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com", + "url": "http://coolaj86.info" + }, + "repository": { + "type": "git", + "url": "git://github.com/coolaj86/browser-buffer.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/Buffer/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "82cf8e986a2109ff6d1d6f1c436e47d07127aea4", + "tarball": "http://registry.npmjs.org/Buffer/-/Buffer-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/Buffer/" + }, + "bufferedstream": { + "name": "bufferedstream", + "description": "A base stream class for node that reliably buffers until next tick", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "mjijackson", + "email": "mjijackson@gmail.com" + } + ], + "time": { + "modified": "2011-11-16T19:01:29.144Z", + "created": "2011-11-15T18:33:57.239Z", + "1.0.0": "2011-11-15T18:33:58.254Z", + "1.0.1": "2011-11-16T19:01:29.144Z" + }, + "author": { + "name": "Michael Jackson", + "email": "mjijackson@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mjijackson/bufferedstream.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/bufferedstream/1.0.0", + "1.0.1": "http://registry.npmjs.org/bufferedstream/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "b7a2f4bfa7e26dc020b5570311ab5698b052f3ad", + "tarball": "http://registry.npmjs.org/bufferedstream/-/bufferedstream-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "48a56d554eac3a6476ec473065bc60d654ce54bb", + "tarball": "http://registry.npmjs.org/bufferedstream/-/bufferedstream-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/bufferedstream/" + }, + "bufferfly": { + "name": "bufferfly", + "description": "Bufferfly is a tiny module that generates flowers from buffers, it is not addictive like LSD, but at least is useful to break up or reassemble the data that could be sent or received over UDP", + "dist-tags": { + "latest": "0.2.4" + }, + "maintainers": [ + { + "name": "rootslab", + "email": "44gatti@gmail.com" + } + ], + "time": { + "modified": "2011-10-11T20:34:12.723Z", + "created": "2011-10-11T20:34:12.187Z", + "0.2.4": "2011-10-11T20:34:12.723Z" + }, + "author": { + "name": "Guglielmo Ferri", + "email": "44gatti@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/rootslab/bufferfly.git" + }, + "versions": { + "0.2.4": "http://registry.npmjs.org/bufferfly/0.2.4" + }, + "dist": { + "0.2.4": { + "shasum": "2f4a8eb8fc5b4f3ab0d17bbad482288ce7c9ce7f", + "tarball": "http://registry.npmjs.org/bufferfly/-/bufferfly-0.2.4.tgz" + } + }, + "keywords": [ + "udp", + "datagram", + "mtu", + "buffer", + "bufferfly" + ], + "url": "http://registry.npmjs.org/bufferfly/" + }, + "bufferjoiner": { + "name": "bufferjoiner", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "kilianc", + "email": "kilian.ciuffolo@gmail.com" + } + ], + "time": { + "modified": "2011-11-30T12:33:20.730Z", + "created": "2011-10-15T10:51:03.326Z", + "0.1.0": "2011-10-15T10:51:05.310Z", + "0.1.1": "2011-11-30T12:33:20.730Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/kilianc/node-bufferjoiner.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/bufferjoiner/0.1.0", + "0.1.1": "http://registry.npmjs.org/bufferjoiner/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "5d6766123f5d123075b56e320cc13f331df5d40d", + "tarball": "http://registry.npmjs.org/bufferjoiner/-/bufferjoiner-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "bed982b63e2e020aa621657e544962e98dfa9b17", + "tarball": "http://registry.npmjs.org/bufferjoiner/-/bufferjoiner-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/bufferjoiner/" + }, + "bufferjs": { + "name": "bufferjs", + "description": "Pure JavaScript Buffer utils.", + "dist-tags": { + "latest": "1.0.2" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-08-25T17:05:05.095Z", + "created": "2011-01-11T21:55:28.998Z", + "0.2.0": "2011-01-11T21:55:29.328Z", + "0.2.1": "2011-02-27T17:59:45.532Z", + "0.2.3": "2011-03-23T02:33:51.054Z", + "1.0.0": "2011-03-28T19:43:36.109Z", + "1.0.1": "2011-05-18T22:08:42.296Z", + "1.0.2": "2011-08-25T17:05:05.095Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/bufferjs/0.2.0", + "0.2.1": "http://registry.npmjs.org/bufferjs/0.2.1", + "0.2.3": "http://registry.npmjs.org/bufferjs/0.2.3", + "1.0.0": "http://registry.npmjs.org/bufferjs/1.0.0", + "1.0.1": "http://registry.npmjs.org/bufferjs/1.0.1", + "1.0.2": "http://registry.npmjs.org/bufferjs/1.0.2" + }, + "dist": { + "0.2.0": { + "tarball": "http://registry.npmjs.org/bufferjs/-/bufferjs-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "debf8d102045266eeea77e530490faaa9ce1cc88", + "tarball": "http://registry.npmjs.org/bufferjs/-/bufferjs-0.2.1.tgz" + }, + "0.2.3": { + "shasum": "41226dd48542a5ff9c349ea34d932aa4e01e880d", + "tarball": "http://registry.npmjs.org/bufferjs/-/bufferjs-0.2.3.tgz" + }, + "1.0.0": { + "shasum": "242e9e2bffa964478edb21c87306e0023902e53d", + "tarball": "http://registry.npmjs.org/bufferjs/-/bufferjs-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "8ec83e03e5e33d69023887a41de7f7b39f1683a8", + "tarball": "http://registry.npmjs.org/bufferjs/-/bufferjs-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "d5ff354b96ce58233983b5a9e4799e76886da94d", + "tarball": "http://registry.npmjs.org/bufferjs/-/bufferjs-1.0.2.tgz" + } + }, + "keywords": [ + "util", + "buffer", + "concat", + "chunk", + "indexOf" + ], + "url": "http://registry.npmjs.org/bufferjs/" + }, + "bufferlib": { + "name": "bufferlib", + "description": "Set of classes to simplify reading and creating of Buffers", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "frans-willem", + "email": "fw@hardijzer.nl" + } + ], + "author": { + "name": "Frans-Willem Hardijzer", + "email": "fw@hardijzer.nl" + }, + "repository": { + "type": "git", + "url": "http://github.com/Frans-Willem/node-BufferLib.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/bufferlib/0.0.1", + "0.0.2": "http://registry.npmjs.org/bufferlib/0.0.2", + "0.0.3": "http://registry.npmjs.org/bufferlib/0.0.3", + "0.0.4": "http://registry.npmjs.org/bufferlib/0.0.4", + "0.0.5": "http://registry.npmjs.org/bufferlib/0.0.5", + "0.0.6": "http://registry.npmjs.org/bufferlib/0.0.6" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/bufferlib/-/bufferlib-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/bufferlib/-/bufferlib-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/bufferlib/-/bufferlib-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://packages:5984/bufferlib/-/bufferlib-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://packages:5984/bufferlib/-/bufferlib-0.0.5.tgz" + }, + "0.0.6": { + "tarball": "http://packages:5984/bufferlib/-/bufferlib-0.0.6.tgz" + } + }, + "url": "http://registry.npmjs.org/bufferlib/" + }, + "bufferlist": { + "name": "bufferlist", + "description": "Create linked lists of Buffer objects", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "author": { + "name": "James Halliday", + "url": "mail@substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-bufferlist.git" + }, + "time": { + "modified": "2011-11-14T21:33:28.024Z", + "created": "2010-12-31T13:10:52.685Z", + "0.0.1": "2010-12-31T13:10:52.685Z", + "0.0.2": "2010-12-31T13:10:52.685Z", + "0.0.3": "2010-12-31T13:10:52.685Z", + "0.0.4": "2010-12-31T13:10:52.685Z", + "0.0.5": "2010-12-31T13:10:52.685Z", + "0.0.6": "2010-12-31T13:10:52.685Z", + "0.1.0": "2011-04-17T23:30:33.283Z" + }, + "users": { + "astro": true + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/bufferlist/0.0.1", + "0.0.2": "http://registry.npmjs.org/bufferlist/0.0.2", + "0.0.3": "http://registry.npmjs.org/bufferlist/0.0.3", + "0.0.4": "http://registry.npmjs.org/bufferlist/0.0.4", + "0.0.5": "http://registry.npmjs.org/bufferlist/0.0.5", + "0.0.6": "http://registry.npmjs.org/bufferlist/0.0.6", + "0.1.0": "http://registry.npmjs.org/bufferlist/0.1.0" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/bufferlist/-/bufferlist-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/bufferlist/-/bufferlist-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/bufferlist/-/bufferlist-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://packages:5984/bufferlist/-/bufferlist-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "cc80be28e406844af774ad186eb4147ccf926667", + "tarball": "http://registry.npmjs.org/bufferlist/-/bufferlist-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "6206331ab3e23091b703e1fbfe7796a90e615320", + "tarball": "http://registry.npmjs.org/bufferlist/-/bufferlist-0.0.6.tgz" + }, + "0.1.0": { + "shasum": "42bef2d89573b40fa1086bb39e0f5310170d1ddd", + "tarball": "http://registry.npmjs.org/bufferlist/-/bufferlist-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/bufferlist/" + }, + "buffers": { + "name": "buffers", + "description": "Treat a collection of Buffers as a single contiguous partially mutable Buffer.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-10-12T23:33:33.118Z", + "created": "2011-02-06T12:28:07.644Z", + "0.0.1": "2011-02-06T12:28:07.983Z", + "0.0.2": "2011-04-28T04:36:43.582Z", + "0.0.3": "2011-05-01T07:59:03.851Z", + "0.0.4": "2011-05-01T08:37:09.246Z", + "0.1.0": "2011-06-30T01:24:43.791Z", + "0.1.1": "2011-10-12T23:33:33.118Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-buffers.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/buffers/0.0.1", + "0.0.2": "http://registry.npmjs.org/buffers/0.0.2", + "0.0.3": "http://registry.npmjs.org/buffers/0.0.3", + "0.0.4": "http://registry.npmjs.org/buffers/0.0.4", + "0.1.0": "http://registry.npmjs.org/buffers/0.1.0", + "0.1.1": "http://registry.npmjs.org/buffers/0.1.1" + }, + "dist": { + "0.0.1": { + "shasum": "af02dd9d29723db67bf69ade28b6881e5ae1b39a", + "tarball": "http://registry.npmjs.org/buffers/-/buffers-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "4d5db52dd754c66105f811eba0aa03f1438f1076", + "tarball": "http://registry.npmjs.org/buffers/-/buffers-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "bf9038fda7cad84ab178bfbdae294f7a68da449b", + "tarball": "http://registry.npmjs.org/buffers/-/buffers-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "f30f1b236cc4760fb3ce26f15d0d41bb137568d4", + "tarball": "http://registry.npmjs.org/buffers/-/buffers-0.0.4.tgz" + }, + "0.1.0": { + "shasum": "5a08e9366c9d160e4c135e77064393a5c0d8db73", + "tarball": "http://registry.npmjs.org/buffers/-/buffers-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "b24579c3bed4d6d396aeee6d9a8ae7f5482ab7bb", + "tarball": "http://registry.npmjs.org/buffers/-/buffers-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/buffers/" + }, + "bufferstream": { + "name": "bufferstream", + "description": "painless stream buffering and cutting", + "dist-tags": { + "latest": "0.4.10" + }, + "maintainers": [ + { + "name": "dodo", + "email": "dodo@blacksec.org" + } + ], + "time": { + "modified": "2011-11-29T14:05:01.474Z", + "created": "2011-05-17T22:29:35.931Z", + "0.0.2": "2011-05-17T22:29:36.655Z", + "0.0.3": "2011-05-22T13:23:15.867Z", + "0.1.0": "2011-05-24T21:38:16.722Z", + "0.1.1": "2011-05-24T21:42:47.100Z", + "0.1.2": "2011-05-25T22:04:48.940Z", + "0.1.2-1": "2011-05-29T17:18:08.954Z", + "0.1.2-2": "2011-05-29T19:01:48.355Z", + "0.1.2-3": "2011-05-29T19:30:38.040Z", + "0.1.2-4": "2011-05-29T20:34:19.421Z", + "0.1.2-5": "2011-05-29T21:01:14.782Z", + "0.1.2-6": "2011-05-29T21:16:35.704Z", + "0.1.3": "2011-05-30T06:09:28.785Z", + "0.1.4": "2011-06-04T20:45:22.537Z", + "0.1.5": "2011-06-06T19:24:32.836Z", + "0.1.6": "2011-06-06T19:49:07.856Z", + "0.2.0": "2011-06-08T12:22:34.032Z", + "0.3.0": "2011-06-09T00:34:16.587Z", + "0.4.0": "2011-08-22T01:19:35.723Z", + "0.4.1": "2011-08-22T01:38:09.188Z", + "0.4.2": "2011-08-22T01:44:38.102Z", + "0.4.3": "2011-08-22T02:33:07.612Z", + "0.4.4": "2011-08-22T12:34:23.546Z", + "0.4.5": "2011-08-22T16:13:00.064Z", + "0.4.6": "2011-08-22T21:16:13.826Z", + "0.4.7": "2011-09-21T01:47:30.628Z", + "0.4.8": "2011-10-22T03:36:09.749Z", + "0.4.9": "2011-11-02T18:48:24.428Z", + "0.4.10": "2011-11-29T14:05:01.474Z" + }, + "author": { + "name": "dodo", + "url": "https://github.com/dodo" + }, + "repository": { + "type": "git", + "url": "git://github.com/dodo/node-bufferstream.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/bufferstream/0.0.2", + "0.0.3": "http://registry.npmjs.org/bufferstream/0.0.3", + "0.1.0": "http://registry.npmjs.org/bufferstream/0.1.0", + "0.1.1": "http://registry.npmjs.org/bufferstream/0.1.1", + "0.1.2": "http://registry.npmjs.org/bufferstream/0.1.2", + "0.1.2-1": "http://registry.npmjs.org/bufferstream/0.1.2-1", + "0.1.2-2": "http://registry.npmjs.org/bufferstream/0.1.2-2", + "0.1.2-3": "http://registry.npmjs.org/bufferstream/0.1.2-3", + "0.1.2-4": "http://registry.npmjs.org/bufferstream/0.1.2-4", + "0.1.2-5": "http://registry.npmjs.org/bufferstream/0.1.2-5", + "0.1.2-6": "http://registry.npmjs.org/bufferstream/0.1.2-6", + "0.1.3": "http://registry.npmjs.org/bufferstream/0.1.3", + "0.1.4": "http://registry.npmjs.org/bufferstream/0.1.4", + "0.1.5": "http://registry.npmjs.org/bufferstream/0.1.5", + "0.1.6": "http://registry.npmjs.org/bufferstream/0.1.6", + "0.2.0": "http://registry.npmjs.org/bufferstream/0.2.0", + "0.3.0": "http://registry.npmjs.org/bufferstream/0.3.0", + "0.4.0": "http://registry.npmjs.org/bufferstream/0.4.0", + "0.4.1": "http://registry.npmjs.org/bufferstream/0.4.1", + "0.4.2": "http://registry.npmjs.org/bufferstream/0.4.2", + "0.4.3": "http://registry.npmjs.org/bufferstream/0.4.3", + "0.4.4": "http://registry.npmjs.org/bufferstream/0.4.4", + "0.4.5": "http://registry.npmjs.org/bufferstream/0.4.5", + "0.4.6": "http://registry.npmjs.org/bufferstream/0.4.6", + "0.4.7": "http://registry.npmjs.org/bufferstream/0.4.7", + "0.4.8": "http://registry.npmjs.org/bufferstream/0.4.8", + "0.4.9": "http://registry.npmjs.org/bufferstream/0.4.9", + "0.4.10": "http://registry.npmjs.org/bufferstream/0.4.10" + }, + "dist": { + "0.0.2": { + "shasum": "4247e2d10d6288a63a694a1a9cd6a1589ded5137", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-2-amd64": { + "shasum": "52d72294884ca6f3d514469e78c95333da293aa0", + "tarball": "http://registry.npmjs.org/bufferstream/-/bufferstream-0.0.2-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-2-amd64.tgz" + } + }, + "tarball": "http://registry.npmjs.org/bufferstream/-/bufferstream-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "ecb7438ba50ba07a2bbdc038756a998c1b163677", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-2-amd64": { + "shasum": "c78f022bd5b8874860420baafa8f7b8e97700691", + "tarball": "http://registry.npmjs.org/bufferstream/-/bufferstream-0.0.3-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-2-amd64.tgz" + } + }, + "tarball": "http://registry.npmjs.org/bufferstream/-/bufferstream-0.0.3.tgz" + }, + "0.1.0": { + "shasum": "1960dd9c5ca0334c2c23419add9012e9f2c65af8", + "tarball": "http://registry.npmjs.org/bufferstream/-/bufferstream-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "e75a4ee9ff46abd9542e295f0ce5fe8f7fb87d05", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64": { + "shasum": "bbea932ebcc14d65982307d20aeac6f520e5b0a8", + "tarball": "http://registry.npmjs.org/bufferstream/-/bufferstream-0.1.1-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64.tgz" + } + }, + "tarball": "http://registry.npmjs.org/bufferstream/-/bufferstream-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "347cd6af0514cab5df2c1cf2ebd06d3b4ae539ac", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64": { + "shasum": "8ab968f124cd456bd8e24d5b7b4a86fd7cd239d8", + "tarball": "http://registry.npmjs.org/bufferstream/-/bufferstream-0.1.2-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64.tgz" + } + }, + "tarball": "http://registry.npmjs.org/bufferstream/-/bufferstream-0.1.2.tgz" + }, + "0.1.2-1": { + "shasum": "ccc5bc4f2847d779451a8d8a217c35924579779a", + "tarball": "http://registry.npmjs.org/bufferstream/-/bufferstream-0.1.2-1.tgz" + }, + "0.1.2-2": { + "shasum": "d77b7e26b9b26f4fbe5a3e0f3cf992ab6ecb5d40", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64": { + "shasum": "db0c830aa050b5daa73be660e91f6b879f0972d7", + "tarball": "http://registry.npmjs.org/bufferstream/-/bufferstream-0.1.2-2-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64.tgz" + } + }, + "tarball": "http://registry.npmjs.org/bufferstream/-/bufferstream-0.1.2-2.tgz" + }, + "0.1.2-3": { + "shasum": "706dd63589e24f7887aefc37ea551d726fd0c2c6", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64": { + "shasum": "928101f9f18f594ce902ade94f5ee70bf27ea615", + "tarball": "http://registry.npmjs.org/bufferstream/-/bufferstream-0.1.2-3-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64.tgz" + } + }, + "tarball": "http://registry.npmjs.org/bufferstream/-/bufferstream-0.1.2-3.tgz" + }, + "0.1.2-4": { + "shasum": "6f28408b9aefdf09a2e7274727291c677ebc0a94", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64": { + "shasum": "954aba896fd1e1f3c93c37e9189c8176f686fc59", + "tarball": "http://registry.npmjs.org/bufferstream/-/bufferstream-0.1.2-4-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64.tgz" + } + }, + "tarball": "http://registry.npmjs.org/bufferstream/-/bufferstream-0.1.2-4.tgz" + }, + "0.1.2-5": { + "shasum": "0e961477a8372205875c5ad4007593fd2de3fa9f", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64": { + "shasum": "3b2c6b0135f9da24614b27fdd5419b3a526bd861", + "tarball": "http://registry.npmjs.org/bufferstream/-/bufferstream-0.1.2-5-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64.tgz" + } + }, + "tarball": "http://registry.npmjs.org/bufferstream/-/bufferstream-0.1.2-5.tgz" + }, + "0.1.2-6": { + "shasum": "36a87e1c07846f6786c543e6c4bc36bed1bb1fdf", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64": { + "shasum": "3f2c7f4f5593d89e97efef95632ea1c9153ea04f", + "tarball": "http://registry.npmjs.org/bufferstream/-/bufferstream-0.1.2-6-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64.tgz" + } + }, + "tarball": "http://registry.npmjs.org/bufferstream/-/bufferstream-0.1.2-6.tgz" + }, + "0.1.3": { + "shasum": "df1546fd70dd40ec0e23b8ddfcbe839ca42c4f9e", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64": { + "shasum": "1450ce53b165336d60c1b44a896bd454f5beaf89", + "tarball": "http://registry.npmjs.org/bufferstream/-/bufferstream-0.1.3-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64.tgz" + } + }, + "tarball": "http://registry.npmjs.org/bufferstream/-/bufferstream-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "1ee5ea5eae1c5c2ef083e4f3e09d417b5a3a5827", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64": { + "shasum": "dc51d64f288f59ddee79791b9b256cf1da937d0c", + "tarball": "http://registry.npmjs.org/bufferstream/-/bufferstream-0.1.4-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64.tgz" + } + }, + "tarball": "http://registry.npmjs.org/bufferstream/-/bufferstream-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "184c7fd10122f5f8acb9f58ea789e5f0a5079187", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64": { + "shasum": "d329e4b30be09273c84b9deb6d88998a5e50148d", + "tarball": "http://registry.npmjs.org/bufferstream/-/bufferstream-0.1.5-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64.tgz" + } + }, + "tarball": "http://registry.npmjs.org/bufferstream/-/bufferstream-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "a643888f1a830558f48278e7d4a8f0a5e2ea4931", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64": { + "shasum": "9a3078065236c27ee0798dbbba77cd151b0bcb77", + "tarball": "http://registry.npmjs.org/bufferstream/-/bufferstream-0.1.6-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64.tgz" + } + }, + "tarball": "http://registry.npmjs.org/bufferstream/-/bufferstream-0.1.6.tgz" + }, + "0.2.0": { + "shasum": "38b0e7d30d37d25a4cc58567bb6cba66ec483591", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64": { + "shasum": "ebdb6860594c7c2e97d983a7a7eb44d38ad40b80", + "tarball": "http://registry.npmjs.org/bufferstream/-/bufferstream-0.2.0-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64.tgz" + } + }, + "tarball": "http://registry.npmjs.org/bufferstream/-/bufferstream-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "8af55a44783918767716a586a3d151a86489a418", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64": { + "shasum": "c1678f3ff7622bfad6ffa45bd524473b33d4e14d", + "tarball": "http://registry.npmjs.org/bufferstream/-/bufferstream-0.3.0-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64.tgz" + } + }, + "tarball": "http://registry.npmjs.org/bufferstream/-/bufferstream-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "3a2394dc0d7f4db8ea936af7f5dbc421141aea4e", + "tarball": "http://registry.npmjs.org/bufferstream/-/bufferstream-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "1e5688e87416d373c678318fa98f7fef435908bd", + "tarball": "http://registry.npmjs.org/bufferstream/-/bufferstream-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "06542b70ca5b7508d5b35602b8f94ba2750ce7a1", + "tarball": "http://registry.npmjs.org/bufferstream/-/bufferstream-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "66e4c9a7e8a7d4ce4d5e2bba03f87c667e163252", + "tarball": "http://registry.npmjs.org/bufferstream/-/bufferstream-0.4.3.tgz" + }, + "0.4.4": { + "shasum": "db4eeabb40881dc92be4ab45382c8d5c3ec9bf65", + "tarball": "http://registry.npmjs.org/bufferstream/-/bufferstream-0.4.4.tgz" + }, + "0.4.5": { + "shasum": "f51f0d514693585835e20f01c8f5f9d25f48bf0e", + "tarball": "http://registry.npmjs.org/bufferstream/-/bufferstream-0.4.5.tgz" + }, + "0.4.6": { + "shasum": "ef889c61a5e43d32166c0b184c959d0617bbd0ff", + "tarball": "http://registry.npmjs.org/bufferstream/-/bufferstream-0.4.6.tgz" + }, + "0.4.7": { + "shasum": "d5451c527af0ad471e380afea1f0502226bf6333", + "tarball": "http://registry.npmjs.org/bufferstream/-/bufferstream-0.4.7.tgz" + }, + "0.4.8": { + "shasum": "59fcea1329e6aeeb7fc6d2c283d035974c661a47", + "tarball": "http://registry.npmjs.org/bufferstream/-/bufferstream-0.4.8.tgz" + }, + "0.4.9": { + "shasum": "2056d7add1ffeed642f3cb0899a5b71952d54620", + "tarball": "http://registry.npmjs.org/bufferstream/-/bufferstream-0.4.9.tgz" + }, + "0.4.10": { + "shasum": "7eb6b686566591cfd2e4b4921aa8715728ec6c09", + "tarball": "http://registry.npmjs.org/bufferstream/-/bufferstream-0.4.10.tgz" + } + }, + "keywords": [ + "buffer", + "buffers", + "stream", + "streams" + ], + "url": "http://registry.npmjs.org/bufferstream/" + }, + "buffertools": { + "name": "buffertools", + "description": "Working with node.js buffers made easy.", + "dist-tags": { + "latest": "1.0.5" + }, + "maintainers": [ + { + "name": "bnoordhuis", + "email": "info@bnoordhuis.nl" + } + ], + "time": { + "modified": "2011-09-20T11:16:41.192Z", + "created": "2011-01-13T22:55:03.943Z", + "1.0.0": "2011-01-13T22:55:04.551Z", + "1.0.1": "2011-03-15T12:57:55.374Z", + "1.0.2": "2011-04-01T11:25:23.462Z", + "1.0.3": "2011-05-04T16:38:26.402Z", + "1.0.4": "2011-08-30T21:41:52.170Z", + "1.0.5": "2011-09-20T11:16:41.192Z" + }, + "author": { + "name": "Ben Noordhuis", + "email": "info@bnoordhuis.nl", + "url": "http://bnoordhuis.nl/" + }, + "repository": { + "type": "git", + "url": "git://github.com/bnoordhuis/node-buffertools.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/buffertools/1.0.0", + "1.0.1": "http://registry.npmjs.org/buffertools/1.0.1", + "1.0.2": "http://registry.npmjs.org/buffertools/1.0.2", + "1.0.3": "http://registry.npmjs.org/buffertools/1.0.3", + "1.0.4": "http://registry.npmjs.org/buffertools/1.0.4", + "1.0.5": "http://registry.npmjs.org/buffertools/1.0.5" + }, + "dist": { + "1.0.0": { + "shasum": "62e9db1a4d0fa8ad749a41e5f3a20c1a9db1dcfb", + "tarball": "http://registry.npmjs.org/buffertools/-/buffertools-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "b8d77681c4de8a845e706ecedbd4b9b7f456839a", + "tarball": "http://registry.npmjs.org/buffertools/-/buffertools-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "8b37baa12a4e59281712c41dc6bb0aca7744ed55", + "tarball": "http://registry.npmjs.org/buffertools/-/buffertools-1.0.2.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "19bf5aee3269fe96bd8fb36af93b69ab0cff012e", + "tarball": "http://registry.npmjs.org/buffertools/-/buffertools-1.0.2-0.4-sunos-5.11.tgz" + } + } + }, + "1.0.3": { + "shasum": "bc9d79a76d463e7c23e9dcec203f18659fa63b24", + "tarball": "http://registry.npmjs.org/buffertools/-/buffertools-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "d30db88db4f12f6286949739405e07b15996025b", + "tarball": "http://registry.npmjs.org/buffertools/-/buffertools-1.0.4.tgz" + }, + "1.0.5": { + "shasum": "7afb518406a615e91e7b36879eed7f3034227c47", + "tarball": "http://registry.npmjs.org/buffertools/-/buffertools-1.0.5.tgz" + } + }, + "keywords": [ + "buffer", + "buffers" + ], + "url": "http://registry.npmjs.org/buffertools/" + }, + "buffoon": { + "name": "buffoon", + "description": "buffer streams into strings, buffers, json or queries", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "mafintosh", + "email": "m@ge.tt" + } + ], + "time": { + "modified": "2011-11-08T17:58:23.163Z", + "created": "2011-07-29T22:36:38.169Z", + "0.1.0": "2011-07-29T22:36:38.845Z", + "0.1.1": "2011-07-29T23:12:15.471Z", + "0.1.2": "2011-07-31T18:48:50.938Z", + "0.1.3": "2011-07-31T19:31:53.993Z", + "0.1.4": "2011-11-08T17:58:23.163Z" + }, + "author": { + "name": "Mathias Buus Madsen", + "email": "mathiasbuus@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/buffoon/0.1.0", + "0.1.1": "http://registry.npmjs.org/buffoon/0.1.1", + "0.1.2": "http://registry.npmjs.org/buffoon/0.1.2", + "0.1.3": "http://registry.npmjs.org/buffoon/0.1.3", + "0.1.4": "http://registry.npmjs.org/buffoon/0.1.4" + }, + "dist": { + "0.1.0": { + "shasum": "f107b5f2a25a8ebdd2d29b279d0741cf1effc3d5", + "tarball": "http://registry.npmjs.org/buffoon/-/buffoon-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "0b42fc074525f30a117c06fb2d3ee9e92d7205f2", + "tarball": "http://registry.npmjs.org/buffoon/-/buffoon-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "a9b63fe079482f80f4a9d22dfda6f815706663c1", + "tarball": "http://registry.npmjs.org/buffoon/-/buffoon-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "c3177deb949e7da82099d7fcd30ef2eb09c0a3c4", + "tarball": "http://registry.npmjs.org/buffoon/-/buffoon-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "d1895812ff27284bbca9dc30ec7dd6d30c273d22", + "tarball": "http://registry.npmjs.org/buffoon/-/buffoon-0.1.4.tgz" + } + }, + "keywords": [ + "buffering", + "streams", + "parsing" + ], + "url": "http://registry.npmjs.org/buffoon/" + }, + "build": { + "name": "build", + "description": "An ant-like build program for node", + "dist-tags": { + "latest": "0.1.1" + }, + "readme": null, + "maintainers": [ + { + "name": "jonlb", + "email": "jon@solagratiadesigns.com" + } + ], + "time": { + "modified": "2011-11-12T17:36:44.683Z", + "created": "2011-11-12T17:36:43.229Z", + "0.1.1": "2011-11-12T17:36:44.683Z" + }, + "author": { + "name": "Jonathan Bomgardner", + "email": "jon@solagratiadesigns.com", + "url": "http://solagratiadesigns.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/jonlb/node-build.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/build/0.1.1" + }, + "dist": { + "0.1.1": { + "shasum": "b5cc49021d38008ca052ea9b22e101f1f41e4c9d", + "tarball": "http://registry.npmjs.org/build/-/build-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/build/" + }, + "buildbot-github": { + "name": "buildbot-github", + "description": "A module which listens for Github webhook events and triggers a Buildbot build when a comment with trigger string defined in a config is found in a pull request.", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "kami", + "email": "tomaz@tomaz.me" + } + ], + "time": { + "modified": "2011-10-23T16:22:51.796Z", + "created": "2011-10-21T16:37:56.957Z", + "0.2.0": "2011-10-21T16:37:58.699Z", + "0.2.1": "2011-10-23T01:02:15.890Z" + }, + "author": { + "name": "Tomaz Muraus", + "email": "tomaz+npm@cloudkick.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Kami/node-buildbot-github.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/buildbot-github/0.2.0", + "0.2.1": "http://registry.npmjs.org/buildbot-github/0.2.1" + }, + "dist": { + "0.2.0": { + "shasum": "7e03b962b55138643fcaee6bed417dbff6196105", + "tarball": "http://registry.npmjs.org/buildbot-github/-/buildbot-github-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "d38d359f33a1d5f8284acd476f3592793b1d91ce", + "tarball": "http://registry.npmjs.org/buildbot-github/-/buildbot-github-0.2.1.tgz" + } + }, + "keywords": [ + "github", + "git", + "buildbot" + ], + "url": "http://registry.npmjs.org/buildbot-github/" + }, + "builder": { + "name": "builder", + "description": "Liberal JavaScript DOM builder", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "syntacticx", + "email": "ryan@syntacticx.com" + } + ], + "time": { + "modified": "2011-06-22T17:41:55.459Z", + "created": "2011-06-10T20:48:25.210Z", + "0.0.1": "2011-06-10T20:48:25.845Z", + "0.0.2": "2011-06-10T21:11:12.666Z", + "1.0.0": "2011-06-10T21:54:28.213Z", + "1.0.1": "2011-06-10T21:55:17.871Z" + }, + "author": { + "name": "Ryan Eastridge", + "email": "ryan@syntacticx.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/syntacticx/builder.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/builder/0.0.1", + "0.0.2": "http://registry.npmjs.org/builder/0.0.2", + "1.0.0": "http://registry.npmjs.org/builder/1.0.0", + "1.0.1": "http://registry.npmjs.org/builder/1.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "c99cc23eaad3fbea25d7e9669f37c3c84ca57ffd", + "tarball": "http://registry.npmjs.org/builder/-/builder-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "d1a6cc249ea08367617358d5743f7f27c9140a5c", + "tarball": "http://registry.npmjs.org/builder/-/builder-0.0.2.tgz" + }, + "1.0.0": { + "shasum": "ae0cd647a6005a1b0f02605f8c001a1469f65068", + "tarball": "http://registry.npmjs.org/builder/-/builder-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "48f03fdae4555830949060f0f0b6a784d470d833", + "tarball": "http://registry.npmjs.org/builder/-/builder-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/builder/" + }, + "buildr": { + "name": "buildr", + "description": "The (Java|Coffee)Script and (CSS|Less) (Builder|Bundler|Packer|Minifier|Merger|Checker)", + "dist-tags": { + "latest": "0.8.2" + }, + "maintainers": [ + { + "name": "balupton", + "email": "b@lupton.cc" + } + ], + "time": { + "modified": "2011-10-05T10:01:20.510Z", + "created": "2011-03-23T12:12:02.025Z", + "0.1.0": "2011-03-23T12:12:02.465Z", + "0.1.1": "2011-03-23T12:17:23.983Z", + "0.1.2": "2011-03-23T12:19:37.140Z", + "0.2.0": "2011-03-25T11:24:13.130Z", + "0.2.1": "2011-03-27T13:34:31.744Z", + "0.2.2": "2011-03-30T18:22:41.060Z", + "0.2.3": "2011-04-02T23:35:33.502Z", + "0.2.4": "2011-04-02T23:45:42.343Z", + "0.2.5": "2011-04-03T02:02:21.302Z", + "0.2.6": "2011-04-05T11:21:25.315Z", + "0.2.7": "2011-04-05T12:28:12.427Z", + "0.2.8": "2011-04-05T12:44:32.897Z", + "0.2.9": "2011-04-20T10:46:10.708Z", + "0.4.0": "2011-07-01T12:09:56.623Z", + "0.4.1": "2011-07-01T12:26:53.262Z", + "0.4.2": "2011-07-01T12:28:37.790Z", + "0.4.3": "2011-07-01T12:33:47.273Z", + "0.4.4": "2011-07-01T12:49:22.032Z", + "0.4.5": "2011-07-09T01:18:36.441Z", + "0.5.0": "2011-07-09T03:40:28.525Z", + "0.5.1": "2011-07-09T03:41:52.551Z", + "0.5.2": "2011-07-09T04:09:24.169Z", + "0.5.3": "2011-07-09T07:07:32.241Z", + "0.5.4": "2011-07-09T07:08:43.227Z", + "0.5.5": "2011-07-18T14:47:35.630Z", + "0.6.1": "2011-07-23T01:23:19.005Z", + "0.6.2": "2011-07-23T01:28:53.140Z", + "0.6.3": "2011-07-23T01:43:05.797Z", + "0.6.4": "2011-07-23T01:55:33.824Z", + "0.6.5": "2011-08-12T02:32:28.917Z", + "0.6.6": "2011-08-16T06:43:13.859Z", + "0.7.0": "2011-08-22T04:58:46.149Z", + "0.8.0": "2011-09-27T07:04:23.257Z", + "0.8.1": "2011-09-27T09:31:16.548Z", + "0.8.2": "2011-10-05T10:01:20.510Z" + }, + "author": { + "name": "Benjamin Lupton", + "email": "b@lupton.cc", + "url": "http://balupton.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/balupton/buildr.npm.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/buildr/0.1.0", + "0.1.1": "http://registry.npmjs.org/buildr/0.1.1", + "0.1.2": "http://registry.npmjs.org/buildr/0.1.2", + "0.2.0": "http://registry.npmjs.org/buildr/0.2.0", + "0.2.1": "http://registry.npmjs.org/buildr/0.2.1", + "0.2.2": "http://registry.npmjs.org/buildr/0.2.2", + "0.2.3": "http://registry.npmjs.org/buildr/0.2.3", + "0.2.4": "http://registry.npmjs.org/buildr/0.2.4", + "0.2.5": "http://registry.npmjs.org/buildr/0.2.5", + "0.2.6": "http://registry.npmjs.org/buildr/0.2.6", + "0.2.7": "http://registry.npmjs.org/buildr/0.2.7", + "0.2.8": "http://registry.npmjs.org/buildr/0.2.8", + "0.2.9": "http://registry.npmjs.org/buildr/0.2.9", + "0.4.0": "http://registry.npmjs.org/buildr/0.4.0", + "0.4.1": "http://registry.npmjs.org/buildr/0.4.1", + "0.4.2": "http://registry.npmjs.org/buildr/0.4.2", + "0.4.3": "http://registry.npmjs.org/buildr/0.4.3", + "0.4.4": "http://registry.npmjs.org/buildr/0.4.4", + "0.4.5": "http://registry.npmjs.org/buildr/0.4.5", + "0.5.0": "http://registry.npmjs.org/buildr/0.5.0", + "0.5.1": "http://registry.npmjs.org/buildr/0.5.1", + "0.5.2": "http://registry.npmjs.org/buildr/0.5.2", + "0.5.3": "http://registry.npmjs.org/buildr/0.5.3", + "0.5.4": "http://registry.npmjs.org/buildr/0.5.4", + "0.5.5": "http://registry.npmjs.org/buildr/0.5.5", + "0.6.1": "http://registry.npmjs.org/buildr/0.6.1", + "0.6.2": "http://registry.npmjs.org/buildr/0.6.2", + "0.6.3": "http://registry.npmjs.org/buildr/0.6.3", + "0.6.4": "http://registry.npmjs.org/buildr/0.6.4", + "0.6.5": "http://registry.npmjs.org/buildr/0.6.5", + "0.6.6": "http://registry.npmjs.org/buildr/0.6.6", + "0.7.0": "http://registry.npmjs.org/buildr/0.7.0", + "0.8.0": "http://registry.npmjs.org/buildr/0.8.0", + "0.8.1": "http://registry.npmjs.org/buildr/0.8.1", + "0.8.2": "http://registry.npmjs.org/buildr/0.8.2" + }, + "dist": { + "0.1.0": { + "shasum": "de5edd66627c632017e5b2a1d3d211083d7075c1", + "tarball": "http://registry.npmjs.org/buildr/-/buildr-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "c84c8550009aa5f01f6f3312907ae21b53b695b0", + "tarball": "http://registry.npmjs.org/buildr/-/buildr-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "2f3a21b6ab3aafdddecf03407a074c03ae7346a7", + "tarball": "http://registry.npmjs.org/buildr/-/buildr-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "b8bce70d77d961d064fb7602c38f96631f198fef", + "tarball": "http://registry.npmjs.org/buildr/-/buildr-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "d667791916e904762bb91d75a88de5341da38f44", + "tarball": "http://registry.npmjs.org/buildr/-/buildr-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "f671a8c2833e4d8952a3563dd9ea63eea437fa58", + "tarball": "http://registry.npmjs.org/buildr/-/buildr-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "c1c2160c2c2e3c18dfabbf4a7ac09cde08a0ac25", + "tarball": "http://registry.npmjs.org/buildr/-/buildr-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "603b6f2e29203b707d723cb76c60409e94846606", + "tarball": "http://registry.npmjs.org/buildr/-/buildr-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "b608ff9234cf2eb99849046832be0fc1989d4b50", + "tarball": "http://registry.npmjs.org/buildr/-/buildr-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "ed6beec5eb8f1b7e549a3c95c9385679717d92cc", + "tarball": "http://registry.npmjs.org/buildr/-/buildr-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "a02798d50d377d94e0a7c1bd22b62bd80c2215d1", + "tarball": "http://registry.npmjs.org/buildr/-/buildr-0.2.7.tgz" + }, + "0.2.8": { + "shasum": "8ab43c96597a4bdba5a64eba2729fb03c440ac15", + "tarball": "http://registry.npmjs.org/buildr/-/buildr-0.2.8.tgz" + }, + "0.2.9": { + "shasum": "8d11af127002bddc4bd46b74be5fb8bb681d8927", + "tarball": "http://registry.npmjs.org/buildr/-/buildr-0.2.9.tgz" + }, + "0.4.0": { + "shasum": "8374a2a5758baa2804f52de6ae3c51b4993ed895", + "tarball": "http://registry.npmjs.org/buildr/-/buildr-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "0c938597c108bf293bd36a269e1786cfeff89cd0", + "tarball": "http://registry.npmjs.org/buildr/-/buildr-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "e509561ebe2e347fe0b25456d5d0013cca65898c", + "tarball": "http://registry.npmjs.org/buildr/-/buildr-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "ad7ef85140a6351deb8501da068a7321c57e876b", + "tarball": "http://registry.npmjs.org/buildr/-/buildr-0.4.3.tgz" + }, + "0.4.4": { + "shasum": "db11e6532fb4afde3243fa18b2a84ae1c7764667", + "tarball": "http://registry.npmjs.org/buildr/-/buildr-0.4.4.tgz" + }, + "0.4.5": { + "shasum": "7f10ad652ab0d481e2afd012e949e1cb70701285", + "tarball": "http://registry.npmjs.org/buildr/-/buildr-0.4.5.tgz" + }, + "0.5.0": { + "shasum": "e2d947337ab41451ede4179ace978532329bfc6d", + "tarball": "http://registry.npmjs.org/buildr/-/buildr-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "edd298baa046e037686f5dbfcd278b5424379fdd", + "tarball": "http://registry.npmjs.org/buildr/-/buildr-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "5c0229ca1f0d270957474cada819916d8d863e9c", + "tarball": "http://registry.npmjs.org/buildr/-/buildr-0.5.2.tgz" + }, + "0.5.3": { + "shasum": "b0805b44fb2427e54d50a6cf96fe6866173957d9", + "tarball": "http://registry.npmjs.org/buildr/-/buildr-0.5.3.tgz" + }, + "0.5.4": { + "shasum": "98014e081c6f05fa5f4cc9cbd3f5cdf67e46ec49", + "tarball": "http://registry.npmjs.org/buildr/-/buildr-0.5.4.tgz" + }, + "0.5.5": { + "shasum": "9de7e8d565444f7d8fb7c6973a7af1c27f0ff287", + "tarball": "http://registry.npmjs.org/buildr/-/buildr-0.5.5.tgz" + }, + "0.6.1": { + "shasum": "325ea8053ab6718bd493751c67c0db1b2c22b2b5", + "tarball": "http://registry.npmjs.org/buildr/-/buildr-0.6.1.tgz" + }, + "0.6.2": { + "shasum": "06e471f47306bd0ef6570b4b3ff4ff2e3b7d1f4b", + "tarball": "http://registry.npmjs.org/buildr/-/buildr-0.6.2.tgz" + }, + "0.6.3": { + "shasum": "63840bab73b2314f26fd48bf417809427442b301", + "tarball": "http://registry.npmjs.org/buildr/-/buildr-0.6.3.tgz" + }, + "0.6.4": { + "shasum": "6d67827241a1569c1b222026fd25e765cee23d07", + "tarball": "http://registry.npmjs.org/buildr/-/buildr-0.6.4.tgz" + }, + "0.6.5": { + "shasum": "decd24d0747b947abd28f0b7986931cd6d9ed88e", + "tarball": "http://registry.npmjs.org/buildr/-/buildr-0.6.5.tgz" + }, + "0.6.6": { + "shasum": "04668e52ba7adaa57727f7139d836ef7d134c131", + "tarball": "http://registry.npmjs.org/buildr/-/buildr-0.6.6.tgz" + }, + "0.7.0": { + "shasum": "27934f87906ec954cf11b2c683621f8661a6016b", + "tarball": "http://registry.npmjs.org/buildr/-/buildr-0.7.0.tgz" + }, + "0.8.0": { + "shasum": "e028cb9d949e7a49f3ff22293de17a52d6b73ce5", + "tarball": "http://registry.npmjs.org/buildr/-/buildr-0.8.0.tgz" + }, + "0.8.1": { + "shasum": "deacd61f7c34253fe5e6d384abe1dc227ffe3f96", + "tarball": "http://registry.npmjs.org/buildr/-/buildr-0.8.1.tgz" + }, + "0.8.2": { + "shasum": "c9757f723846f8848c130013e859af2c4587dfac", + "tarball": "http://registry.npmjs.org/buildr/-/buildr-0.8.2.tgz" + } + }, + "keywords": [ + "javascript", + "coffee", + "lesscss", + "less", + "css", + "builder", + "package", + "compile", + "compress", + "minify", + "bundle", + "merge", + "lint" + ], + "url": "http://registry.npmjs.org/buildr/" + }, + "bullet": { + "name": "bullet", + "description": "MVC framework with bullet speed", + "dist-tags": { + "latest": "1.0.0-rc1" + }, + "maintainers": [ + { + "name": "pksunkara", + "email": "pavan.sss1991@gmail.com" + } + ], + "time": { + "modified": "2011-10-24T19:59:43.463Z", + "created": "2011-10-24T19:59:39.875Z", + "1.0.0-rc1": "2011-10-24T19:59:43.463Z" + }, + "author": { + "name": "Pavan Kumar Sunkara", + "email": "pavan.sss1991@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/bulletjs/bullet.git" + }, + "versions": { + "1.0.0-rc1": "http://registry.npmjs.org/bullet/1.0.0-rc1" + }, + "dist": { + "1.0.0-rc1": { + "shasum": "f791478b4c4f33d5b3c8c4170665ac0fc12a23df", + "tarball": "http://registry.npmjs.org/bullet/-/bullet-1.0.0-rc1.tgz" + } + }, + "keywords": [ + "web", + "framework", + "rails", + "web", + "rest", + "restful" + ], + "url": "http://registry.npmjs.org/bullet/" + }, + "bullet-controller": { + "name": "bullet-controller", + "description": "controller for MVC framework with bullet speed", + "dist-tags": { + "latest": "1.0.0-rc1" + }, + "maintainers": [ + { + "name": "pksunkara", + "email": "pavan.sss1991@gmail.com" + } + ], + "time": { + "modified": "2011-10-24T20:29:00.328Z", + "created": "2011-10-24T20:28:56.689Z", + "1.0.0-rc1": "2011-10-24T20:29:00.328Z" + }, + "author": { + "name": "Pavan Kumar Sunkara", + "email": "pavan.sss1991@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/bulletjs/controller.git" + }, + "versions": { + "1.0.0-rc1": "http://registry.npmjs.org/bullet-controller/1.0.0-rc1" + }, + "dist": { + "1.0.0-rc1": { + "shasum": "5e15bfc14b8a4abb49de1a816a50ab605a1c66e5", + "tarball": "http://registry.npmjs.org/bullet-controller/-/bullet-controller-1.0.0-rc1.tgz" + } + }, + "keywords": [ + "controller", + "framework", + "rails", + "web", + "rest", + "restful" + ], + "url": "http://registry.npmjs.org/bullet-controller/" + }, + "bullet-dispatch": { + "name": "bullet-dispatch", + "description": "dispatch for MVC framework with bullet speed", + "dist-tags": { + "latest": "1.0.0-rc1" + }, + "maintainers": [ + { + "name": "pksunkara", + "email": "pavan.sss1991@gmail.com" + } + ], + "time": { + "modified": "2011-10-24T20:29:07.329Z", + "created": "2011-10-24T20:29:03.727Z", + "1.0.0-rc1": "2011-10-24T20:29:07.329Z" + }, + "author": { + "name": "Pavan Kumar Sunkara", + "email": "pavan.sss1991@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/bulletjs/dispatch.git" + }, + "versions": { + "1.0.0-rc1": "http://registry.npmjs.org/bullet-dispatch/1.0.0-rc1" + }, + "dist": { + "1.0.0-rc1": { + "shasum": "bc3be4843371bac82ad7fe2e9a1d9083bb6cfb08", + "tarball": "http://registry.npmjs.org/bullet-dispatch/-/bullet-dispatch-1.0.0-rc1.tgz" + } + }, + "keywords": [ + "dispatch", + "framework", + "rails", + "web", + "rest", + "restful" + ], + "url": "http://registry.npmjs.org/bullet-dispatch/" + }, + "bullet-mailer": { + "name": "bullet-mailer", + "description": "mailer for MVC framework with bullet speed", + "dist-tags": { + "latest": "1.0.0-rc1" + }, + "maintainers": [ + { + "name": "pksunkara", + "email": "pavan.sss1991@gmail.com" + } + ], + "time": { + "modified": "2011-10-24T20:28:53.010Z", + "created": "2011-10-24T20:28:49.460Z", + "1.0.0-rc1": "2011-10-24T20:28:53.010Z" + }, + "author": { + "name": "Pavan Kumar Sunkara", + "email": "pavan.sss1991@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/bulletjs/mailer.git" + }, + "versions": { + "1.0.0-rc1": "http://registry.npmjs.org/bullet-mailer/1.0.0-rc1" + }, + "dist": { + "1.0.0-rc1": { + "shasum": "8f3d0035597c29445adba70c8d323ddad4bbd7f8", + "tarball": "http://registry.npmjs.org/bullet-mailer/-/bullet-mailer-1.0.0-rc1.tgz" + } + }, + "keywords": [ + "mailer", + "framework", + "rails", + "web", + "rest", + "restful" + ], + "url": "http://registry.npmjs.org/bullet-mailer/" + }, + "bullet-model": { + "name": "bullet-model", + "description": "model for MVC framework with bullet speed", + "dist-tags": { + "latest": "1.0.0-rc1" + }, + "maintainers": [ + { + "name": "pksunkara", + "email": "pavan.sss1991@gmail.com" + } + ], + "time": { + "modified": "2011-10-24T20:28:31.778Z", + "created": "2011-10-24T20:28:28.216Z", + "1.0.0-rc1": "2011-10-24T20:28:31.778Z" + }, + "author": { + "name": "Pavan Kumar Sunkara", + "email": "pavan.sss1991@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/bulletjs/model.git" + }, + "versions": { + "1.0.0-rc1": "http://registry.npmjs.org/bullet-model/1.0.0-rc1" + }, + "dist": { + "1.0.0-rc1": { + "shasum": "cb75464326229077011fdb6f526ff088120d66a4", + "tarball": "http://registry.npmjs.org/bullet-model/-/bullet-model-1.0.0-rc1.tgz" + } + }, + "keywords": [ + "model", + "framework", + "rails", + "web", + "rest", + "restful" + ], + "url": "http://registry.npmjs.org/bullet-model/" + }, + "bullet-record": { + "name": "bullet-record", + "description": "record for MVC framework with bullet speed", + "dist-tags": { + "latest": "1.0.0-rc1" + }, + "maintainers": [ + { + "name": "pksunkara", + "email": "pavan.sss1991@gmail.com" + } + ], + "time": { + "modified": "2011-10-24T20:28:12.732Z", + "created": "2011-10-24T20:28:09.150Z", + "1.0.0-rc1": "2011-10-24T20:28:12.732Z" + }, + "author": { + "name": "Pavan Kumar Sunkara", + "email": "pavan.sss1991@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/bulletjs/record.git" + }, + "versions": { + "1.0.0-rc1": "http://registry.npmjs.org/bullet-record/1.0.0-rc1" + }, + "dist": { + "1.0.0-rc1": { + "shasum": "b65914b830ed62d51ca318538ce54b0c901c2495", + "tarball": "http://registry.npmjs.org/bullet-record/-/bullet-record-1.0.0-rc1.tgz" + } + }, + "keywords": [ + "record", + "framework", + "rails", + "web", + "rest", + "restful" + ], + "url": "http://registry.npmjs.org/bullet-record/" + }, + "bullet-resource": { + "name": "bullet-resource", + "description": "resource for MVC framework with bullet speed", + "dist-tags": { + "latest": "1.0.0-rc1" + }, + "maintainers": [ + { + "name": "pksunkara", + "email": "pavan.sss1991@gmail.com" + } + ], + "time": { + "modified": "2011-10-24T20:25:22.992Z", + "created": "2011-10-24T20:25:19.394Z", + "1.0.0-rc1": "2011-10-24T20:25:22.992Z" + }, + "author": { + "name": "Pavan Kumar Sunkara", + "email": "pavan.sss1991@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/bulletjs/resource.git" + }, + "versions": { + "1.0.0-rc1": "http://registry.npmjs.org/bullet-resource/1.0.0-rc1" + }, + "dist": { + "1.0.0-rc1": { + "shasum": "993e33e6a850406e5a7b24254c89c1843d7f0737", + "tarball": "http://registry.npmjs.org/bullet-resource/-/bullet-resource-1.0.0-rc1.tgz" + } + }, + "keywords": [ + "resource", + "framework", + "rails", + "web", + "rest", + "restful" + ], + "url": "http://registry.npmjs.org/bullet-resource/" + }, + "bullet-support": { + "name": "bullet-support", + "description": "support for MVC framework with bullet speed", + "dist-tags": { + "latest": "1.0.0-rc1" + }, + "maintainers": [ + { + "name": "pksunkara", + "email": "pavan.sss1991@gmail.com" + } + ], + "time": { + "modified": "2011-10-24T20:24:32.582Z", + "created": "2011-10-24T20:24:28.996Z", + "1.0.0-rc1": "2011-10-24T20:24:32.582Z" + }, + "author": { + "name": "Pavan Kumar Sunkara", + "email": "pavan.sss1991@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/bulletjs/support.git" + }, + "versions": { + "1.0.0-rc1": "http://registry.npmjs.org/bullet-support/1.0.0-rc1" + }, + "dist": { + "1.0.0-rc1": { + "shasum": "a9b1e51b5be344b6e5bc1a77a595cb0cbbcbc516", + "tarball": "http://registry.npmjs.org/bullet-support/-/bullet-support-1.0.0-rc1.tgz" + } + }, + "keywords": [ + "support", + "framework", + "rails", + "web", + "rest", + "restful" + ], + "url": "http://registry.npmjs.org/bullet-support/" + }, + "bullet-view": { + "name": "bullet-view", + "description": "view for MVC framework with bullet speed", + "dist-tags": { + "latest": "1.0.0-rc1" + }, + "maintainers": [ + { + "name": "pksunkara", + "email": "pavan.sss1991@gmail.com" + } + ], + "time": { + "modified": "2011-10-24T20:25:05.241Z", + "created": "2011-10-24T20:25:01.638Z", + "1.0.0-rc1": "2011-10-24T20:25:05.241Z" + }, + "author": { + "name": "Pavan Kumar Sunkara", + "email": "pavan.sss1991@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/bulletjs/view.git" + }, + "versions": { + "1.0.0-rc1": "http://registry.npmjs.org/bullet-view/1.0.0-rc1" + }, + "dist": { + "1.0.0-rc1": { + "shasum": "69fa1da68861db550cb7ae63e9f8760b922ac7a2", + "tarball": "http://registry.npmjs.org/bullet-view/-/bullet-view-1.0.0-rc1.tgz" + } + }, + "keywords": [ + "view", + "framework", + "rails", + "web", + "rest", + "restful" + ], + "url": "http://registry.npmjs.org/bullet-view/" + }, + "bumper": { + "name": "bumper", + "description": "Simple release management for npm packages using git", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "agnoster", + "email": "agnoster@gmail.com" + } + ], + "time": { + "modified": "2011-06-21T17:05:36.936Z", + "created": "2011-06-21T17:05:36.095Z", + "0.0.4": "2011-06-21T17:05:36.936Z" + }, + "author": { + "name": "Isaac Wolkerstorfer", + "email": "agnoster@gmail.com", + "url": "http://agnoster.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/agnoster/bumper.git" + }, + "versions": { + "0.0.4": "http://registry.npmjs.org/bumper/0.0.4" + }, + "dist": { + "0.0.4": { + "shasum": "4f3fff223f0f72e7d2f6890867c04da7822ab871", + "tarball": "http://registry.npmjs.org/bumper/-/bumper-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/bumper/" + }, + "bundle": { + "name": "bundle", + "description": "Bundle generator", + "dist-tags": { + "latest": "0.1.5" + }, + "maintainers": [ + { + "name": "damian", + "email": "damian@learnboost.com" + } + ], + "time": { + "modified": "2011-09-21T17:45:13.323Z", + "created": "2011-05-27T00:15:55.776Z", + "0.0.1": "2011-05-27T00:15:57.080Z", + "0.0.2": "2011-05-27T19:32:53.702Z", + "0.0.3": "2011-05-27T22:45:25.045Z", + "0.0.4": "2011-05-28T00:42:52.096Z", + "0.0.5": "2011-05-30T14:14:29.230Z", + "0.0.6": "2011-05-30T20:41:12.055Z", + "0.0.7": "2011-05-31T14:08:28.587Z", + "0.0.8": "2011-06-06T18:08:46.137Z", + "0.0.9": "2011-06-10T03:32:48.505Z", + "0.1.0": "2011-06-10T18:17:54.315Z", + "0.1.1": "2011-06-15T04:37:00.511Z", + "0.1.2": "2011-06-17T18:21:33.347Z", + "0.1.3": "2011-06-23T04:53:14.215Z", + "0.1.4": "2011-09-21T16:58:03.803Z", + "0.1.5": "2011-09-21T17:45:13.323Z" + }, + "author": { + "name": "Damian Suarez", + "email": "damian@learnboost.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/bundle/0.0.1", + "0.0.2": "http://registry.npmjs.org/bundle/0.0.2", + "0.0.3": "http://registry.npmjs.org/bundle/0.0.3", + "0.0.4": "http://registry.npmjs.org/bundle/0.0.4", + "0.0.5": "http://registry.npmjs.org/bundle/0.0.5", + "0.0.6": "http://registry.npmjs.org/bundle/0.0.6", + "0.0.7": "http://registry.npmjs.org/bundle/0.0.7", + "0.0.8": "http://registry.npmjs.org/bundle/0.0.8", + "0.0.9": "http://registry.npmjs.org/bundle/0.0.9", + "0.1.0": "http://registry.npmjs.org/bundle/0.1.0", + "0.1.1": "http://registry.npmjs.org/bundle/0.1.1", + "0.1.2": "http://registry.npmjs.org/bundle/0.1.2", + "0.1.3": "http://registry.npmjs.org/bundle/0.1.3", + "0.1.4": "http://registry.npmjs.org/bundle/0.1.4", + "0.1.5": "http://registry.npmjs.org/bundle/0.1.5" + }, + "dist": { + "0.0.1": { + "shasum": "2952bf1d0be4f938f67cc1bb85135e64e676aedc", + "tarball": "http://registry.npmjs.org/bundle/-/bundle-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c60024a5dee8c6f5a6701df240511109390a701a", + "tarball": "http://registry.npmjs.org/bundle/-/bundle-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "f50ec9dfb6b7ec353beb8519e25476d7fbdf1a71", + "tarball": "http://registry.npmjs.org/bundle/-/bundle-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "0b0f41d62251fd9d4bd9c0dd8810f1645f53412a", + "tarball": "http://registry.npmjs.org/bundle/-/bundle-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "c37f4cebedcdf953d78826882e67bd8144f2d709", + "tarball": "http://registry.npmjs.org/bundle/-/bundle-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "14159ddd67b6f5df511da356b0938b234db72edf", + "tarball": "http://registry.npmjs.org/bundle/-/bundle-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "a15479421c3985ad2151a9d6dddae9b76ccea015", + "tarball": "http://registry.npmjs.org/bundle/-/bundle-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "344295f52c17dc8b84aff2c2dee6b8e1e9e25064", + "tarball": "http://registry.npmjs.org/bundle/-/bundle-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "c1c0f92b029b522b9f45b1a7134018112d65783f", + "tarball": "http://registry.npmjs.org/bundle/-/bundle-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "ba066a936e0c0f3ecee5c8bf2d2b1d5674310bcb", + "tarball": "http://registry.npmjs.org/bundle/-/bundle-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "f358e01951f4bfdadad0519c77e1f06cc27a9426", + "tarball": "http://registry.npmjs.org/bundle/-/bundle-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "39ee6530cceec2e97e01b01f75d782d63509703e", + "tarball": "http://registry.npmjs.org/bundle/-/bundle-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "5cdd643486389c4b6f932a78e1dcd0f090457940", + "tarball": "http://registry.npmjs.org/bundle/-/bundle-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "423823fa8c78d7ced6c5a3576193330292830f26", + "tarball": "http://registry.npmjs.org/bundle/-/bundle-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "7ebc90f33735d2ca50d1a15221c9cb010c43f114", + "tarball": "http://registry.npmjs.org/bundle/-/bundle-0.1.5.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/bundle/" + }, + "bundler": { + "name": "bundler", + "description": "Bundler. It is better for you to not know what it is.", + "dist-tags": { + "latest": "0.8.0" + }, + "maintainers": [ + { + "name": "mihaild", + "email": "mihail.dektyarow@gmail.com" + } + ], + "time": { + "modified": "2011-10-21T11:07:35.608Z", + "created": "2011-10-21T11:07:33.172Z", + "0.8.0": "2011-10-21T11:07:35.608Z" + }, + "author": { + "name": "Mikhail Dektyarev", + "email": "mihail.dektyarow@gmail.com", + "url": "https://github.com/mihaild/" + }, + "versions": { + "0.8.0": "http://registry.npmjs.org/bundler/0.8.0" + }, + "dist": { + "0.8.0": { + "shasum": "72ee1537720eb0877ee0bbc8cc2ad5ba9261c24e", + "tarball": "http://registry.npmjs.org/bundler/-/bundler-0.8.0.tgz" + } + }, + "url": "http://registry.npmjs.org/bundler/" + }, + "bunker": { + "name": "bunker", + "description": "code coverage in native javascript", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-08-07T04:46:14.546Z", + "created": "2011-07-18T08:05:47.685Z", + "0.0.0": "2011-07-18T08:05:48.472Z", + "0.1.0": "2011-07-18T08:10:20.108Z", + "0.1.1": "2011-08-07T04:46:14.546Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-bunker.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/bunker/0.0.0", + "0.1.0": "http://registry.npmjs.org/bunker/0.1.0", + "0.1.1": "http://registry.npmjs.org/bunker/0.1.1" + }, + "dist": { + "0.0.0": { + "shasum": "9eae72bc4d0a2b5b1695179c1be754327b8bf6f1", + "tarball": "http://registry.npmjs.org/bunker/-/bunker-0.0.0.tgz" + }, + "0.1.0": { + "shasum": "eaf152b929d7152b155b0e7695ed98e82b3681e4", + "tarball": "http://registry.npmjs.org/bunker/-/bunker-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "ca8e0f695a9e67318f07d16b972d85d5d186daad", + "tarball": "http://registry.npmjs.org/bunker/-/bunker-0.1.1.tgz" + } + }, + "keywords": [ + "code", + "coverage" + ], + "url": "http://registry.npmjs.org/bunker/" + }, + "burari": { + "name": "burari", + "description": "A JavaScript EJS Files to avoid too much client-side js wrappers.", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "yuitest", + "email": "yuitest@cjhat.net" + } + ], + "time": { + "modified": "2011-07-27T00:28:18.807Z", + "created": "2011-07-26T23:48:59.206Z", + "0.0.1": "2011-07-26T23:49:00.640Z", + "0.0.2": "2011-07-26T23:51:27.175Z", + "0.0.0": "2011-07-27T00:28:18.807Z" + }, + "author": { + "name": "yuitest", + "email": "yuitest@cjhat.net", + "url": "http://cjhat.net/" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/burari/0.0.1", + "0.0.2": "http://registry.npmjs.org/burari/0.0.2", + "0.0.0": "http://registry.npmjs.org/burari/0.0.0" + }, + "dist": { + "0.0.1": { + "shasum": "13e3169448d240986d340d81dff73449df4c9b26", + "tarball": "http://registry.npmjs.org/burari/-/burari-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "8aab20f9b33d4f4c5852679835f44a8317f9b223", + "tarball": "http://registry.npmjs.org/burari/-/burari-0.0.2.tgz" + }, + "0.0.0": { + "shasum": "4ff48aa7bec79f986823ec4bb8d62aedea219584", + "tarball": "http://registry.npmjs.org/burari/-/burari-0.0.0.tgz" + } + }, + "keywords": [ + "template", + "engine", + "ejs" + ], + "url": "http://registry.npmjs.org/burari/" + }, + "burrito": { + "name": "burrito", + "description": "Wrap up expressions with a trace function while walking the AST with rice and beans on the side", + "dist-tags": { + "latest": "0.2.11" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-10-19T19:34:02.094Z", + "created": "2011-06-04T11:27:33.316Z", + "0.0.0": "2011-06-04T11:27:33.919Z", + "0.1.0": "2011-06-11T02:59:59.541Z", + "0.1.1": "2011-06-11T22:35:56.902Z", + "0.1.2": "2011-06-12T02:32:07.858Z", + "0.1.3": "2011-06-13T09:47:09.834Z", + "0.1.4": "2011-06-13T11:43:47.834Z", + "0.2.0": "2011-06-15T07:00:56.615Z", + "0.2.1": "2011-06-15T21:28:47.056Z", + "0.2.2": "2011-07-05T20:00:18.436Z", + "0.2.3": "2011-07-09T23:44:47.530Z", + "0.2.4": "2011-07-16T06:03:58.266Z", + "0.2.5": "2011-07-18T05:22:26.195Z", + "0.2.6": "2011-07-23T00:19:19.223Z", + "0.2.7": "2011-08-08T00:37:40.065Z", + "0.2.8": "2011-08-23T13:58:34.285Z", + "0.2.9": "2011-09-09T12:49:57.982Z", + "0.2.10": "2011-09-18T06:03:06.225Z", + "0.2.11": "2011-10-19T19:34:02.094Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-burrito.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/burrito/0.0.0", + "0.1.0": "http://registry.npmjs.org/burrito/0.1.0", + "0.1.1": "http://registry.npmjs.org/burrito/0.1.1", + "0.1.2": "http://registry.npmjs.org/burrito/0.1.2", + "0.1.3": "http://registry.npmjs.org/burrito/0.1.3", + "0.1.4": "http://registry.npmjs.org/burrito/0.1.4", + "0.2.0": "http://registry.npmjs.org/burrito/0.2.0", + "0.2.1": "http://registry.npmjs.org/burrito/0.2.1", + "0.2.2": "http://registry.npmjs.org/burrito/0.2.2", + "0.2.3": "http://registry.npmjs.org/burrito/0.2.3", + "0.2.4": "http://registry.npmjs.org/burrito/0.2.4", + "0.2.5": "http://registry.npmjs.org/burrito/0.2.5", + "0.2.6": "http://registry.npmjs.org/burrito/0.2.6", + "0.2.7": "http://registry.npmjs.org/burrito/0.2.7", + "0.2.8": "http://registry.npmjs.org/burrito/0.2.8", + "0.2.9": "http://registry.npmjs.org/burrito/0.2.9", + "0.2.10": "http://registry.npmjs.org/burrito/0.2.10", + "0.2.11": "http://registry.npmjs.org/burrito/0.2.11" + }, + "dist": { + "0.0.0": { + "shasum": "7eb47c19e0f440339fc9a617809f1463abfd1aaf", + "tarball": "http://registry.npmjs.org/burrito/-/burrito-0.0.0.tgz" + }, + "0.1.0": { + "shasum": "cf2d13ded5f763059f10c6225bea3289f551f278", + "tarball": "http://registry.npmjs.org/burrito/-/burrito-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "69a6c4e13c0a77cc661aaa0437054bd49d8cc8ee", + "tarball": "http://registry.npmjs.org/burrito/-/burrito-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "1bfe414a94436b69bb30fca4f47ad53a2bb92217", + "tarball": "http://registry.npmjs.org/burrito/-/burrito-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "f54509452637f5f982f5e8dcc0732ff3f5560c17", + "tarball": "http://registry.npmjs.org/burrito/-/burrito-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "987355053eb42a1b1ec1a80e993e23e56d0013ae", + "tarball": "http://registry.npmjs.org/burrito/-/burrito-0.1.4.tgz" + }, + "0.2.0": { + "shasum": "841a94975188a3ccf7399aac4291f299a39d76df", + "tarball": "http://registry.npmjs.org/burrito/-/burrito-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "5210f581ad56efbe6936f593a9429e0ded16e28f", + "tarball": "http://registry.npmjs.org/burrito/-/burrito-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "598c6b222fa0da26925909e5f5ca7d0cc4285d9d", + "tarball": "http://registry.npmjs.org/burrito/-/burrito-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "f68c0f5c3e555480d216c5ffbbf3d849944a2e0c", + "tarball": "http://registry.npmjs.org/burrito/-/burrito-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "41284bc64ffa04070cb1fb4dd498052a83775310", + "tarball": "http://registry.npmjs.org/burrito/-/burrito-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "03ee0de3dced8459212df3b5a8575f226efc559c", + "tarball": "http://registry.npmjs.org/burrito/-/burrito-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "1cd510e2222b25eefc2bea61fc1e2f323ab8d651", + "tarball": "http://registry.npmjs.org/burrito/-/burrito-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "46837dbab0be12a5ca5599c640a5b94b923b4845", + "tarball": "http://registry.npmjs.org/burrito/-/burrito-0.2.7.tgz" + }, + "0.2.8": { + "shasum": "81a0c833f5c64abe6fa6f8bdc238b631322cc5cd", + "tarball": "http://registry.npmjs.org/burrito/-/burrito-0.2.8.tgz" + }, + "0.2.9": { + "shasum": "adfc4901d09d9b6854a4d122795dbf425ea94964", + "tarball": "http://registry.npmjs.org/burrito/-/burrito-0.2.9.tgz" + }, + "0.2.10": { + "shasum": "945023d94ff1747ced83a246c80246bc32507b75", + "tarball": "http://registry.npmjs.org/burrito/-/burrito-0.2.10.tgz" + }, + "0.2.11": { + "shasum": "ea28850cf439ddcc8c487a7afdef78c044015616", + "tarball": "http://registry.npmjs.org/burrito/-/burrito-0.2.11.tgz" + } + }, + "keywords": [ + "trace", + "ast", + "walk", + "syntax", + "source", + "tree", + "uglify" + ], + "url": "http://registry.npmjs.org/burrito/" + }, + "busbuddy": { + "name": "busbuddy", + "description": "BusBuddy js api for node and the browser", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "torgeir", + "email": "torgeir.thoresen@gmail.com" + } + ], + "time": { + "modified": "2011-05-29T17:52:04.699Z", + "created": "2011-05-29T16:12:43.704Z", + "0.0.1": "2011-05-29T16:12:44.488Z", + "0.0.2": "2011-05-29T17:52:04.699Z" + }, + "author": { + "name": "Torgeir Thoresen", + "email": "@torgeir" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/busbuddy/0.0.1", + "0.0.2": "http://registry.npmjs.org/busbuddy/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "701de50dd41d6e1ca4a3b38370e3f6c438d497ab", + "tarball": "http://registry.npmjs.org/busbuddy/-/busbuddy-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "3cafa75c7f22a102263c1e300caf4370709cfc88", + "tarball": "http://registry.npmjs.org/busbuddy/-/busbuddy-0.0.2.tgz" + } + }, + "keywords": [ + "busbuddy", + "buss", + "trondheim", + "atb", + "api" + ], + "url": "http://registry.npmjs.org/busbuddy/" + }, + "buster": { + "name": "buster", + "description": "Buster.JS JavaScript Test framework. Meta package that pieces together various sub-projects.", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "cjohansen", + "email": "christian@cjohansen.no" + } + ], + "time": { + "modified": "2011-12-05T23:26:39.386Z", + "created": "2011-08-09T19:57:25.460Z", + "0.2.0": "2011-08-09T19:57:30.856Z", + "0.2.1": "2011-08-23T22:43:45.824Z", + "0.2.2": "2011-09-07T21:39:22.421Z", + "0.2.3": "2011-09-07T21:45:11.466Z", + "0.2.4": "2011-10-18T21:21:24.312Z", + "0.3.0": "2011-12-05T23:14:46.594Z" + }, + "author": { + "name": "August Lilleaas and Christian Johansen" + }, + "repository": { + "type": "git", + "url": "git://gitorious.org/buster/buster.git" + }, + "users": { + "magnars": true + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/buster/0.2.0", + "0.2.1": "http://registry.npmjs.org/buster/0.2.1", + "0.2.2": "http://registry.npmjs.org/buster/0.2.2", + "0.2.3": "http://registry.npmjs.org/buster/0.2.3", + "0.2.4": "http://registry.npmjs.org/buster/0.2.4", + "0.3.0": "http://registry.npmjs.org/buster/0.3.0" + }, + "dist": { + "0.2.0": { + "shasum": "49678802110a6ab9f7d5622d344f0a1cce585e0f", + "tarball": "http://registry.npmjs.org/buster/-/buster-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "cec1a0619c8281016a52d7c3db1223b44665aaf2", + "tarball": "http://registry.npmjs.org/buster/-/buster-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "4d570fc3b8b546fd7fc567f051b245440f8ec7f0", + "tarball": "http://registry.npmjs.org/buster/-/buster-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "5c1eb895b82df4dd153b23da2a03132092a2c007", + "tarball": "http://registry.npmjs.org/buster/-/buster-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "dd8e49f8f4fbe5ea6f159ea9b679d61ebf99e8d3", + "tarball": "http://registry.npmjs.org/buster/-/buster-0.2.4.tgz" + }, + "0.3.0": { + "shasum": "37725ea322045925779c276fbab90ce26c45b3bc", + "tarball": "http://registry.npmjs.org/buster/-/buster-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/buster/" + }, + "buster-args": { + "name": "buster-args", + "description": "Parser for CLI arguments.", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "cjohansen", + "email": "christian@cjohansen.no" + } + ], + "time": { + "modified": "2011-12-05T21:22:34.264Z", + "created": "2011-08-08T21:35:32.973Z", + "0.2.0": "2011-08-08T21:35:35.561Z", + "0.2.1": "2011-08-23T22:33:59.961Z", + "0.2.2": "2011-08-25T11:26:09.192Z", + "0.3.0": "2011-12-05T21:22:34.264Z" + }, + "author": { + "name": "August Lilleaas and Christian Johansen" + }, + "repository": { + "type": "git", + "url": "git://gitorious.org/buster/buster-args" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/buster-args/0.2.0", + "0.2.1": "http://registry.npmjs.org/buster-args/0.2.1", + "0.2.2": "http://registry.npmjs.org/buster-args/0.2.2", + "0.3.0": "http://registry.npmjs.org/buster-args/0.3.0" + }, + "dist": { + "0.2.0": { + "shasum": "5a09d7aa9b41e08abb85dd38c5731db6047f2295", + "tarball": "http://registry.npmjs.org/buster-args/-/buster-args-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "ac1f4b1c04ddbe8789b1a4034292e7f782f0e58d", + "tarball": "http://registry.npmjs.org/buster-args/-/buster-args-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "f2fb5398f28474adf9d1091f239b9a39aefb393d", + "tarball": "http://registry.npmjs.org/buster-args/-/buster-args-0.2.2.tgz" + }, + "0.3.0": { + "shasum": "41baea9670625fbeee13cb9ca72b0b2ff83526db", + "tarball": "http://registry.npmjs.org/buster-args/-/buster-args-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/buster-args/" + }, + "buster-assertions": { + "name": "buster-assertions", + "description": "Assertions for any JavaScript test framework and environment", + "dist-tags": { + "latest": "0.8.1" + }, + "maintainers": [ + { + "name": "cjohansen", + "email": "christian@cjohansen.no" + } + ], + "time": { + "modified": "2011-12-05T21:17:18.746Z", + "created": "2011-08-08T20:18:02.792Z", + "0.6.0": "2011-08-08T20:18:03.635Z", + "0.6.1": "2011-08-23T22:13:56.866Z", + "0.7.0": "2011-10-17T19:21:08.259Z", + "0.7.1": "2011-10-18T10:02:01.982Z", + "0.7.2": "2011-10-19T18:10:27.321Z", + "0.7.3": "2011-10-19T18:58:26.088Z", + "0.7.4": "2011-10-19T19:18:05.412Z", + "0.7.5": "2011-10-19T19:19:54.275Z", + "0.8.1": "2011-12-05T21:17:18.746Z" + }, + "author": { + "name": "August Lilleaas and Christian Johansen" + }, + "repository": { + "type": "git", + "url": "git://gitorious.org/buster/buster-assertions.git" + }, + "versions": { + "0.6.0": "http://registry.npmjs.org/buster-assertions/0.6.0", + "0.6.1": "http://registry.npmjs.org/buster-assertions/0.6.1", + "0.7.0": "http://registry.npmjs.org/buster-assertions/0.7.0", + "0.7.1": "http://registry.npmjs.org/buster-assertions/0.7.1", + "0.7.2": "http://registry.npmjs.org/buster-assertions/0.7.2", + "0.7.3": "http://registry.npmjs.org/buster-assertions/0.7.3", + "0.7.4": "http://registry.npmjs.org/buster-assertions/0.7.4", + "0.7.5": "http://registry.npmjs.org/buster-assertions/0.7.5", + "0.8.1": "http://registry.npmjs.org/buster-assertions/0.8.1" + }, + "dist": { + "0.6.0": { + "shasum": "0f45cdac7149804922a98ca9a6748727da48595e", + "tarball": "http://registry.npmjs.org/buster-assertions/-/buster-assertions-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "f2495ac533882bbf62f2094e34e0eb6debdeaf25", + "tarball": "http://registry.npmjs.org/buster-assertions/-/buster-assertions-0.6.1.tgz" + }, + "0.7.0": { + "shasum": "d743c64d4f6f300b195620230fa9e26d44d8d907", + "tarball": "http://registry.npmjs.org/buster-assertions/-/buster-assertions-0.7.0.tgz" + }, + "0.7.1": { + "shasum": "d9d296502dfaed9323f2b19f1ee8e514a40fdffc", + "tarball": "http://registry.npmjs.org/buster-assertions/-/buster-assertions-0.7.1.tgz" + }, + "0.7.2": { + "shasum": "cf2c591cff09bca76010831a22ece07c975cbe4c", + "tarball": "http://registry.npmjs.org/buster-assertions/-/buster-assertions-0.7.2.tgz" + }, + "0.7.3": { + "shasum": "058136eddd73315482ecf67510e2ae4049cca33e", + "tarball": "http://registry.npmjs.org/buster-assertions/-/buster-assertions-0.7.3.tgz" + }, + "0.7.4": { + "shasum": "5e4d49bea37521a6c6bacbbebbbda88872f600c7", + "tarball": "http://registry.npmjs.org/buster-assertions/-/buster-assertions-0.7.4.tgz" + }, + "0.7.5": { + "shasum": "b72d89ca71918be85fefb742575b2d2ca20ed9dc", + "tarball": "http://registry.npmjs.org/buster-assertions/-/buster-assertions-0.7.5.tgz" + }, + "0.8.1": { + "shasum": "a9d72e98887b5f3e1d6cf9a660597d283b68b81c", + "tarball": "http://registry.npmjs.org/buster-assertions/-/buster-assertions-0.8.1.tgz" + } + }, + "url": "http://registry.npmjs.org/buster-assertions/" + }, + "buster-bayeux-emitter": { + "name": "buster-bayeux-emitter", + "description": "Allows event-emitter events travel safely over a bayeux transport", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": null, + "maintainers": [ + { + "name": "cjohansen", + "email": "christian@cjohansen.no" + } + ], + "time": { + "modified": "2011-12-05T21:21:20.502Z", + "created": "2011-12-05T21:21:16.630Z", + "0.1.0": "2011-12-05T21:21:20.502Z" + }, + "author": { + "name": "August Lilleaas and Christian Johansen" + }, + "repository": { + "type": "git", + "url": "git://gitorious.org/buster/buster-bayeux-emitter.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/buster-bayeux-emitter/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "175407c829dc71c5b86d2a60bc509e7a89e8ee40", + "tarball": "http://registry.npmjs.org/buster-bayeux-emitter/-/buster-bayeux-emitter-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/buster-bayeux-emitter/" + }, + "buster-capture-server": { + "name": "buster-capture-server", + "description": "Buster capture server", + "dist-tags": { + "latest": "0.3.1" + }, + "readme": null, + "maintainers": [ + { + "name": "cjohansen", + "email": "christian@cjohansen.no" + } + ], + "time": { + "modified": "2011-12-12T12:51:28.058Z", + "created": "2011-12-05T21:20:57.627Z", + "0.3.0": "2011-12-05T21:21:01.477Z", + "0.3.1": "2011-12-12T12:51:28.058Z" + }, + "author": { + "name": "August Lilleaas", + "email": "august.lilleaas@gmail.com", + "url": "http://augustl.com" + }, + "repository": { + "type": "git", + "url": "git://gitorious.org/buster/buster-capture-server.git" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/buster-capture-server/0.3.0", + "0.3.1": "http://registry.npmjs.org/buster-capture-server/0.3.1" + }, + "dist": { + "0.3.0": { + "shasum": "d065fb180bd1a53b041482fd3495acb6ffafc12d", + "tarball": "http://registry.npmjs.org/buster-capture-server/-/buster-capture-server-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "5b411b2ae82cc6eadf9927c8466905ea76e438dd", + "tarball": "http://registry.npmjs.org/buster-capture-server/-/buster-capture-server-0.3.1.tgz" + } + }, + "url": "http://registry.npmjs.org/buster-capture-server/" + }, + "buster-cli": { + "name": "buster-cli", + "description": "Internal wrapper and util for creating CLIs in the buster project.", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "cjohansen", + "email": "christian@cjohansen.no" + } + ], + "time": { + "modified": "2011-12-05T21:23:17.566Z", + "created": "2011-08-23T22:35:44.897Z", + "0.2.1": "2011-08-23T22:35:45.703Z", + "0.2.2": "2011-08-25T11:54:11.366Z", + "0.3.0": "2011-12-05T21:23:17.566Z" + }, + "author": { + "name": "August Lilleaas and Christian Johansen" + }, + "repository": { + "type": "git", + "url": "git://gitorious.org/buster/buster-cli" + }, + "versions": { + "0.2.1": "http://registry.npmjs.org/buster-cli/0.2.1", + "0.2.2": "http://registry.npmjs.org/buster-cli/0.2.2", + "0.3.0": "http://registry.npmjs.org/buster-cli/0.3.0" + }, + "dist": { + "0.2.1": { + "shasum": "eff2b0ff8407462f85af5da203b67b6036dd7203", + "tarball": "http://registry.npmjs.org/buster-cli/-/buster-cli-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "5fc41c82a86bd0839eba9e6311fd5d501f83e584", + "tarball": "http://registry.npmjs.org/buster-cli/-/buster-cli-0.2.2.tgz" + }, + "0.3.0": { + "shasum": "88fd9d17ceeef3415995746c282eaa2c1ec4d463", + "tarball": "http://registry.npmjs.org/buster-cli/-/buster-cli-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/buster-cli/" + }, + "buster-client": { + "name": "buster-client", + "description": "Client libraries to interact with a buster-capture-server", + "dist-tags": { + "latest": "0.4.0" + }, + "maintainers": [ + { + "name": "cjohansen", + "email": "christian@cjohansen.no" + } + ], + "time": { + "modified": "2011-12-05T21:22:15.944Z", + "created": "2011-08-08T23:02:26.007Z", + "0.3.0": "2011-08-08T23:02:26.868Z", + "0.3.1": "2011-08-23T22:31:28.526Z", + "0.3.2": "2011-10-19T19:12:30.759Z", + "0.4.0": "2011-12-05T21:22:15.944Z" + }, + "author": { + "name": "August Lilleaas and Christian Johansen" + }, + "repository": { + "type": "git", + "url": "git://gitorious.org/buster/buster-client.git" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/buster-client/0.3.0", + "0.3.1": "http://registry.npmjs.org/buster-client/0.3.1", + "0.3.2": "http://registry.npmjs.org/buster-client/0.3.2", + "0.4.0": "http://registry.npmjs.org/buster-client/0.4.0" + }, + "dist": { + "0.3.0": { + "shasum": "e10304cd1818a754af4f5a58138ecae390ef015d", + "tarball": "http://registry.npmjs.org/buster-client/-/buster-client-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "1f8143582b9db9091faf45d1dadc75d151f44e35", + "tarball": "http://registry.npmjs.org/buster-client/-/buster-client-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "1c1e6a17457576762906361a7b6e42224d65dae6", + "tarball": "http://registry.npmjs.org/buster-client/-/buster-client-0.3.2.tgz" + }, + "0.4.0": { + "shasum": "a438f2177605fb309382b612cf7baa8d7eb83610", + "tarball": "http://registry.npmjs.org/buster-client/-/buster-client-0.4.0.tgz" + } + }, + "url": "http://registry.npmjs.org/buster-client/" + }, + "buster-configuration": { + "name": "buster-configuration", + "description": "Implements the buster.js configuration file, including resource loading, file globbing, grouped test configs and more", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "cjohansen", + "email": "christian@cjohansen.no" + } + ], + "time": { + "modified": "2011-12-10T11:23:02.067Z", + "created": "2011-08-23T22:27:27.763Z", + "0.1.0": "2011-08-23T22:27:28.714Z", + "0.2.0": "2011-12-05T21:21:40.200Z", + "0.2.1": "2011-12-10T11:23:02.067Z" + }, + "author": { + "name": "Christian Johansen", + "email": "christian@cjohansen.no", + "url": "http://cjohansen.no" + }, + "repository": { + "type": "git", + "url": "git://gitorious.org/buster/buster-configuration.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/buster-configuration/0.1.0", + "0.2.0": "http://registry.npmjs.org/buster-configuration/0.2.0", + "0.2.1": "http://registry.npmjs.org/buster-configuration/0.2.1" + }, + "dist": { + "0.1.0": { + "shasum": "cf3c35269f7d48544a09125dd20d49a92950fe4e", + "tarball": "http://registry.npmjs.org/buster-configuration/-/buster-configuration-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "2a6d16e7c5fb0284ad957741956571fcedece17d", + "tarball": "http://registry.npmjs.org/buster-configuration/-/buster-configuration-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "694435b2ea09d7cb75ac34b9b67d73dbf4844592", + "tarball": "http://registry.npmjs.org/buster-configuration/-/buster-configuration-0.2.1.tgz" + } + }, + "url": "http://registry.npmjs.org/buster-configuration/" + }, + "buster-core": { + "name": "buster-core", + "description": "Buster core utilities", + "dist-tags": { + "latest": "0.5.0" + }, + "maintainers": [ + { + "name": "cjohansen", + "email": "christian@cjohansen.no" + } + ], + "time": { + "modified": "2011-12-05T21:16:00.133Z", + "created": "2011-08-08T20:05:20.077Z", + "0.3.0": "2011-08-08T20:05:20.751Z", + "0.3.1": "2011-08-23T22:10:32.103Z", + "0.4.0": "2011-10-18T09:58:00.708Z", + "0.5.0": "2011-12-05T21:16:00.133Z" + }, + "author": { + "name": "August Lilleaas and Christian Johansen" + }, + "repository": { + "type": "git", + "url": "git://gitorious.org/buster/buster-core.git" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/buster-core/0.3.0", + "0.3.1": "http://registry.npmjs.org/buster-core/0.3.1", + "0.4.0": "http://registry.npmjs.org/buster-core/0.4.0", + "0.5.0": "http://registry.npmjs.org/buster-core/0.5.0" + }, + "dist": { + "0.3.0": { + "shasum": "76a5fbcc660df4d197c512a6f8af50be2d5c3823", + "tarball": "http://registry.npmjs.org/buster-core/-/buster-core-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "99de91efd0d62c1e90c2b44169bac568a0dcce87", + "tarball": "http://registry.npmjs.org/buster-core/-/buster-core-0.3.1.tgz" + }, + "0.4.0": { + "shasum": "93ae800d457c0ff7a871fb5eb829649c74a80aba", + "tarball": "http://registry.npmjs.org/buster-core/-/buster-core-0.4.0.tgz" + }, + "0.5.0": { + "shasum": "dbe6f9036c5545b117d169ef2116bc6e44e17d04", + "tarball": "http://registry.npmjs.org/buster-core/-/buster-core-0.5.0.tgz" + } + }, + "url": "http://registry.npmjs.org/buster-core/" + }, + "buster-evented-logger": { + "name": "buster-evented-logger", + "description": "An evented console logger", + "dist-tags": { + "latest": "0.4.0" + }, + "maintainers": [ + { + "name": "cjohansen", + "email": "christian@cjohansen.no" + } + ], + "time": { + "modified": "2011-12-05T21:19:50.711Z", + "created": "2011-08-08T22:02:31.718Z", + "0.3.0": "2011-08-08T22:02:32.745Z", + "0.3.1": "2011-08-23T22:19:38.174Z", + "0.4.0": "2011-12-05T21:19:50.711Z" + }, + "author": { + "name": "Christian Johansen", + "email": "christian@cjohansen.no", + "url": "http://cjohansen.no" + }, + "repository": { + "type": "git", + "url": "git://gitorious.org/buster/buster-evented-logger.git" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/buster-evented-logger/0.3.0", + "0.3.1": "http://registry.npmjs.org/buster-evented-logger/0.3.1", + "0.4.0": "http://registry.npmjs.org/buster-evented-logger/0.4.0" + }, + "dist": { + "0.3.0": { + "shasum": "0d58990ade6b0715053a93146ba6238fa4057ab0", + "tarball": "http://registry.npmjs.org/buster-evented-logger/-/buster-evented-logger-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "70d81dad90f412380e4ed424c33fda72e59b7186", + "tarball": "http://registry.npmjs.org/buster-evented-logger/-/buster-evented-logger-0.3.1.tgz" + }, + "0.4.0": { + "shasum": "030bf91a74febd5529e93188590a75f04ec1b3ed", + "tarball": "http://registry.npmjs.org/buster-evented-logger/-/buster-evented-logger-0.4.0.tgz" + } + }, + "url": "http://registry.npmjs.org/buster-evented-logger/" + }, + "buster-format": { + "name": "buster-format", + "description": "Tools for formatting JavaScript objects in a human-readable way", + "dist-tags": { + "latest": "0.5.0" + }, + "maintainers": [ + { + "name": "cjohansen", + "email": "christian@cjohansen.no" + } + ], + "time": { + "modified": "2011-12-05T21:18:55.573Z", + "created": "2011-08-08T20:34:33.908Z", + "0.4.0": "2011-08-08T20:34:36.485Z", + "0.4.1": "2011-08-23T22:15:13.343Z", + "0.5.0": "2011-12-05T21:18:55.573Z" + }, + "author": { + "name": "Christian Johansen", + "email": "christian@cjohansen.no", + "url": "http://cjohansen.no" + }, + "repository": { + "type": "git", + "url": "git://gitorious.org/buster/buster-format.git" + }, + "versions": { + "0.4.0": "http://registry.npmjs.org/buster-format/0.4.0", + "0.4.1": "http://registry.npmjs.org/buster-format/0.4.1", + "0.5.0": "http://registry.npmjs.org/buster-format/0.5.0" + }, + "dist": { + "0.4.0": { + "shasum": "07b8fcea9b3cd21fba59cd2c10354cb1ca6f7ad5", + "tarball": "http://registry.npmjs.org/buster-format/-/buster-format-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "ce3ee7e005e7f978d38e6def88c66abfc08ef091", + "tarball": "http://registry.npmjs.org/buster-format/-/buster-format-0.4.1.tgz" + }, + "0.5.0": { + "shasum": "077738a68944e8e27542364a0ac7681d399f7e57", + "tarball": "http://registry.npmjs.org/buster-format/-/buster-format-0.5.0.tgz" + } + }, + "url": "http://registry.npmjs.org/buster-format/" + }, + "buster-module-loader": { + "name": "buster-module-loader", + "description": "Simple module loader for node. Allows loading objects from inside modules through a simple string.", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "cjohansen", + "email": "christian@cjohansen.no" + } + ], + "time": { + "modified": "2011-12-05T21:19:31.784Z", + "created": "2011-08-08T21:39:34.860Z", + "0.2.0": "2011-08-08T21:39:35.739Z", + "0.2.1": "2011-08-23T22:18:34.248Z", + "0.3.0": "2011-12-05T21:19:31.784Z" + }, + "author": { + "name": "August Lilleaas and Christian Johansen" + }, + "repository": { + "type": "git", + "url": "git://gitorious.org/buster/buster-module-loader.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/buster-module-loader/0.2.0", + "0.2.1": "http://registry.npmjs.org/buster-module-loader/0.2.1", + "0.3.0": "http://registry.npmjs.org/buster-module-loader/0.3.0" + }, + "dist": { + "0.2.0": { + "shasum": "05e1d0a99cc9fddaa52e481ff224a269aeb64006", + "tarball": "http://registry.npmjs.org/buster-module-loader/-/buster-module-loader-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "2d5b141fc6154d634bb102cf5986f3765f5cb03d", + "tarball": "http://registry.npmjs.org/buster-module-loader/-/buster-module-loader-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "0582e0e4526fd08511721ebad9d46d17b8842382", + "tarball": "http://registry.npmjs.org/buster-module-loader/-/buster-module-loader-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/buster-module-loader/" + }, + "buster-multicast": { + "name": "buster-multicast", + "description": "Multicasting server and client for node and browsers", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "cjohansen", + "email": "christian@cjohansen.no" + } + ], + "time": { + "modified": "2011-08-08T22:56:03.636Z", + "created": "2011-08-08T22:56:01.327Z", + "0.1.0": "2011-08-08T22:56:03.636Z" + }, + "author": { + "name": "August Lilleaas", + "email": "august.lilleaas@gmail.com", + "url": "http://augustl.com" + }, + "repository": { + "type": "git", + "url": "git://gitorious.org/buster/buster-multicast.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/buster-multicast/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "7af861758338add2c4c4bf753659a0ac45940217", + "tarball": "http://registry.npmjs.org/buster-multicast/-/buster-multicast-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/buster-multicast/" + }, + "buster-promise": { + "name": "buster-promise", + "description": "Lightweight implementation of thenable promises", + "dist-tags": { + "latest": "0.4.0" + }, + "maintainers": [ + { + "name": "cjohansen", + "email": "christian@cjohansen.no" + } + ], + "time": { + "modified": "2011-12-05T21:19:16.366Z", + "created": "2011-08-08T20:48:50.717Z", + "0.3.0": "2011-08-08T20:48:53.373Z", + "0.3.1": "2011-08-23T22:16:17.917Z", + "0.4.0": "2011-12-05T21:19:16.366Z" + }, + "author": { + "name": "August Lilleaas and Christian Johansen" + }, + "repository": { + "type": "git", + "url": "git://gitorious.org/buster/buster-promise.git" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/buster-promise/0.3.0", + "0.3.1": "http://registry.npmjs.org/buster-promise/0.3.1", + "0.4.0": "http://registry.npmjs.org/buster-promise/0.4.0" + }, + "dist": { + "0.3.0": { + "shasum": "ab72d3ebba783ab9c81ad43e73b4716d738c6483", + "tarball": "http://registry.npmjs.org/buster-promise/-/buster-promise-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "19755f403a878939d8f099c4d64a9a6e03776655", + "tarball": "http://registry.npmjs.org/buster-promise/-/buster-promise-0.3.1.tgz" + }, + "0.4.0": { + "shasum": "98e1d2af5dd8cfaad022b12a72194f30879200f3", + "tarball": "http://registry.npmjs.org/buster-promise/-/buster-promise-0.4.0.tgz" + } + }, + "url": "http://registry.npmjs.org/buster-promise/" + }, + "buster-resources": { + "name": "buster-resources", + "description": "", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": null, + "maintainers": [ + { + "name": "cjohansen", + "email": "christian@cjohansen.no" + } + ], + "time": { + "modified": "2011-12-05T22:22:28.244Z", + "created": "2011-12-05T22:22:26.558Z", + "0.1.0": "2011-12-05T22:22:28.244Z" + }, + "author": { + "name": "August Lilleaas and Christian Johansen" + }, + "repository": { + "type": "git", + "url": "git://gitorious.org/buster/buster-resources.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/buster-resources/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "b333e635d917928a430b3849dfb756154f7981e2", + "tarball": "http://registry.npmjs.org/buster-resources/-/buster-resources-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/buster-resources/" + }, + "buster-script-loader": { + "name": "buster-script-loader", + "description": "Simple script loader that helps run unmodified browser scripts on node by providing a shared 'global' context object", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "cjohansen", + "email": "christian@cjohansen.no" + } + ], + "time": { + "modified": "2011-08-08T22:25:13.246Z", + "created": "2011-08-08T22:25:11.564Z", + "0.2.0": "2011-08-08T22:25:13.246Z" + }, + "author": { + "name": "Christian Johansen", + "email": "christian@cjohansen.no", + "url": "http://cjohansen.no" + }, + "repository": { + "type": "git", + "url": "git://gitorious.org/buster/buster-script-loader.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/buster-script-loader/0.2.0" + }, + "dist": { + "0.2.0": { + "shasum": "c5e507853e6ff17518203fcc0ef74da1b245dcba", + "tarball": "http://registry.npmjs.org/buster-script-loader/-/buster-script-loader-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/buster-script-loader/" + }, + "buster-server": { + "name": "buster-server", + "description": "Buster server", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "cjohansen", + "email": "christian@cjohansen.no" + } + ], + "time": { + "modified": "2011-09-10T08:48:37.591Z", + "created": "2011-08-08T22:58:29.403Z", + "0.2.0": "2011-08-08T22:58:32.111Z", + "0.2.1": "2011-08-23T22:37:33.896Z", + "0.2.2": "2011-09-10T08:48:37.591Z" + }, + "author": { + "name": "August Lilleaas", + "email": "august.lilleaas@gmail.com", + "url": "http://augustl.com" + }, + "repository": { + "type": "git", + "url": "git://gitorious.org/buster/buster-server.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/buster-server/0.2.0", + "0.2.1": "http://registry.npmjs.org/buster-server/0.2.1", + "0.2.2": "http://registry.npmjs.org/buster-server/0.2.2" + }, + "dist": { + "0.2.0": { + "shasum": "2dd3b478e369b5c70bc31150fea2a2d32a71ea12", + "tarball": "http://registry.npmjs.org/buster-server/-/buster-server-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "23b7a5f05031d61220b2ddaf10d226346f456153", + "tarball": "http://registry.npmjs.org/buster-server/-/buster-server-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "81f5aaae9d373b669a738151e9d34fda246a3e0b", + "tarball": "http://registry.npmjs.org/buster-server/-/buster-server-0.2.2.tgz" + } + }, + "url": "http://registry.npmjs.org/buster-server/" + }, + "buster-static": { + "name": "buster-static", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "cjohansen", + "email": "christian@cjohansen.no" + } + ], + "time": { + "modified": "2011-12-05T22:55:04.045Z", + "created": "2011-09-07T21:52:38.693Z", + "0.1.0": "2011-09-07T21:52:39.440Z", + "0.2.0": "2011-12-05T22:55:04.045Z" + }, + "description": "QUnit style browser based test runner", + "author": { + "name": "August Lilleaas", + "email": "august.lilleaas@gmail.com", + "url": "http://augustl.com" + }, + "repository": { + "type": "git", + "url": "git://gitorious.org/buster/buster-static.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/buster-static/0.1.0", + "0.2.0": "http://registry.npmjs.org/buster-static/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "d36bc31b4e88eb2b72d7aef0a45f6207240f7387", + "tarball": "http://registry.npmjs.org/buster-static/-/buster-static-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "e95c7a3cde8f1927ffdc04b1a629206183269e1b", + "tarball": "http://registry.npmjs.org/buster-static/-/buster-static-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/buster-static/" + }, + "buster-stdio-logger": { + "name": "buster-stdio-logger", + "description": "Wrapper on top of buster-evented-logger that does pretty outout to stdout and stderr.", + "dist-tags": { + "latest": "0.2.0" + }, + "readme": null, + "maintainers": [ + { + "name": "cjohansen", + "email": "christian@cjohansen.no" + } + ], + "time": { + "modified": "2011-12-05T21:22:53.441Z", + "created": "2011-12-05T21:22:50.373Z", + "0.2.0": "2011-12-05T21:22:53.441Z" + }, + "author": { + "name": "August Lilleaas and Christian Johansen" + }, + "repository": { + "type": "git", + "url": "git://gitorious.org/buster/buster-stdio-logger" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/buster-stdio-logger/0.2.0" + }, + "dist": { + "0.2.0": { + "shasum": "d978aad2ed3ba1cbb18fff71d76b2196575b1c62", + "tarball": "http://registry.npmjs.org/buster-stdio-logger/-/buster-stdio-logger-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/buster-stdio-logger/" + }, + "buster-terminal": { + "name": "buster-terminal", + "description": "String tools for terminal formatting", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "cjohansen", + "email": "christian@cjohansen.no" + } + ], + "time": { + "modified": "2011-12-05T21:15:37.807Z", + "created": "2011-08-08T21:23:53.715Z", + "0.2.0": "2011-08-08T21:23:55.983Z", + "0.2.1": "2011-08-23T22:17:30.349Z", + "0.3.0": "2011-12-05T21:15:37.807Z" + }, + "author": { + "name": "August Lilleaas and Christian Johansen" + }, + "repository": { + "type": "git", + "url": "git://gitorious.org/buster/buster-terminal.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/buster-terminal/0.2.0", + "0.2.1": "http://registry.npmjs.org/buster-terminal/0.2.1", + "0.3.0": "http://registry.npmjs.org/buster-terminal/0.3.0" + }, + "dist": { + "0.2.0": { + "shasum": "43abb1aefe7ea6fece66987bbaef6de620bbbb6c", + "tarball": "http://registry.npmjs.org/buster-terminal/-/buster-terminal-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "c6f6509d8a3d2bfb9586bbcfe280c536cb55536f", + "tarball": "http://registry.npmjs.org/buster-terminal/-/buster-terminal-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "d02fd0e765149fb30ba210a6c460baa13300f347", + "tarball": "http://registry.npmjs.org/buster-terminal/-/buster-terminal-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/buster-terminal/" + }, + "buster-test": { + "name": "buster-test", + "description": "Promised based evented xUnit and BDD style test runner for JavaScript", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "cjohansen", + "email": "christian@cjohansen.no" + } + ], + "time": { + "modified": "2011-12-05T21:20:06.697Z", + "created": "2011-08-08T21:51:27.828Z", + "0.2.0": "2011-08-08T21:51:30.500Z", + "0.2.1": "2011-08-23T22:39:46.635Z", + "0.3.0": "2011-12-05T21:20:06.697Z" + }, + "author": { + "name": "August Lilleaas and Christian Johansen" + }, + "repository": { + "type": "git", + "url": "git://gitorious.org/buster/buster-test.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/buster-test/0.2.0", + "0.2.1": "http://registry.npmjs.org/buster-test/0.2.1", + "0.3.0": "http://registry.npmjs.org/buster-test/0.3.0" + }, + "dist": { + "0.2.0": { + "shasum": "b96d14c53d91e7fc12b5cb771c54e79eac0793d0", + "tarball": "http://registry.npmjs.org/buster-test/-/buster-test-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "1baf3cb7ba3c0e3e06e261425fc515084d449509", + "tarball": "http://registry.npmjs.org/buster-test/-/buster-test-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "28683ab3bba93e8bfbdac2b001f44e351da5f975", + "tarball": "http://registry.npmjs.org/buster-test/-/buster-test-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/buster-test/" + }, + "buster-test-cli": { + "name": "buster-test-cli", + "description": "Cli tools for Buster.JS test runners", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "cjohansen", + "email": "christian@cjohansen.no" + } + ], + "time": { + "modified": "2011-12-05T21:24:40.507Z", + "created": "2011-08-09T19:44:53.613Z", + "0.1.0": "2011-08-09T19:44:55.357Z", + "0.2.0": "2011-08-23T22:42:59.376Z", + "0.2.1": "2011-08-25T11:55:33.864Z", + "0.2.2": "2011-09-10T08:49:06.515Z", + "0.2.3": "2011-10-19T19:11:54.547Z", + "0.2.4": "2011-10-19T19:15:07.754Z", + "0.3.0": "2011-12-05T21:24:40.507Z" + }, + "author": { + "name": "August Lilleaas and Christian Johansen" + }, + "repository": { + "type": "git", + "url": "git://gitorious.org/buster/buster-test-cli.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/buster-test-cli/0.1.0", + "0.2.0": "http://registry.npmjs.org/buster-test-cli/0.2.0", + "0.2.1": "http://registry.npmjs.org/buster-test-cli/0.2.1", + "0.2.2": "http://registry.npmjs.org/buster-test-cli/0.2.2", + "0.2.3": "http://registry.npmjs.org/buster-test-cli/0.2.3", + "0.2.4": "http://registry.npmjs.org/buster-test-cli/0.2.4", + "0.3.0": "http://registry.npmjs.org/buster-test-cli/0.3.0" + }, + "dist": { + "0.1.0": { + "shasum": "8079e69ad1b3b235122980b418ee0dfa826f662c", + "tarball": "http://registry.npmjs.org/buster-test-cli/-/buster-test-cli-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "b696ada298b22406071d59a2f116f9fb103937a3", + "tarball": "http://registry.npmjs.org/buster-test-cli/-/buster-test-cli-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "0625bc8e8e5ccd4fa8785a828a6e2390ec7db919", + "tarball": "http://registry.npmjs.org/buster-test-cli/-/buster-test-cli-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "6956a6916d20921358513b72e6ff53f28b986c42", + "tarball": "http://registry.npmjs.org/buster-test-cli/-/buster-test-cli-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "bab85978eb7da6c7f924eb385a7b9ef1fefae857", + "tarball": "http://registry.npmjs.org/buster-test-cli/-/buster-test-cli-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "5ae489e69d634e22d8f9f7685463bcabe0e63eb0", + "tarball": "http://registry.npmjs.org/buster-test-cli/-/buster-test-cli-0.2.4.tgz" + }, + "0.3.0": { + "shasum": "0bf16e5bc7fcd3b3110df14b22550370f6c29f4e", + "tarball": "http://registry.npmjs.org/buster-test-cli/-/buster-test-cli-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/buster-test-cli/" + }, + "buster-user-agent-parser": { + "name": "buster-user-agent-parser", + "description": "Simple user agent parser that gets browser, platform and version", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "cjohansen", + "email": "christian@cjohansen.no" + } + ], + "time": { + "modified": "2011-08-23T22:29:40.680Z", + "created": "2011-08-08T21:29:21.238Z", + "0.2.0": "2011-08-08T21:29:22.370Z", + "0.2.1": "2011-08-23T22:29:40.680Z" + }, + "author": { + "name": "August Lilleaas and Christian Johansen" + }, + "repository": { + "type": "git", + "url": "http://git.gitorious.org/buster-js/buster-user-agent-parser.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/buster-user-agent-parser/0.2.0", + "0.2.1": "http://registry.npmjs.org/buster-user-agent-parser/0.2.1" + }, + "dist": { + "0.2.0": { + "shasum": "07ab7328e75160d1e6a2e74da927bab559f7530a", + "tarball": "http://registry.npmjs.org/buster-user-agent-parser/-/buster-user-agent-parser-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "bdcad1d80795b163906d858195f349645f290a8c", + "tarball": "http://registry.npmjs.org/buster-user-agent-parser/-/buster-user-agent-parser-0.2.1.tgz" + } + }, + "url": "http://registry.npmjs.org/buster-user-agent-parser/" + }, + "buster-util": { + "name": "buster-util", + "description": "Buster internal utilities", + "dist-tags": { + "latest": "0.4.0" + }, + "maintainers": [ + { + "name": "cjohansen", + "email": "christian@cjohansen.no" + } + ], + "time": { + "modified": "2011-12-05T21:14:24.195Z", + "created": "2011-08-08T20:33:19.430Z", + "0.3.0": "2011-08-08T20:33:21.404Z", + "0.4.0": "2011-12-05T21:14:24.195Z" + }, + "author": { + "name": "August Lilleaas and Christian Johansen" + }, + "repository": { + "type": "git", + "url": "http://git.gitorious.org/buster-js/buster-util.git" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/buster-util/0.3.0", + "0.4.0": "http://registry.npmjs.org/buster-util/0.4.0" + }, + "dist": { + "0.3.0": { + "shasum": "27898e3182e67f951f2b16cfcabdbe2ec9e6f6e0", + "tarball": "http://registry.npmjs.org/buster-util/-/buster-util-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "2f75f3dfd42223b763cf6148b4cc71b07079f72d", + "tarball": "http://registry.npmjs.org/buster-util/-/buster-util-0.4.0.tgz" + } + }, + "url": "http://registry.npmjs.org/buster-util/" + }, + "butler": { + "name": "butler", + "description": "NodeJS Butler", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "dresende", + "email": "dresende@thinkdigital.pt" + } + ], + "time": { + "modified": "2011-08-11T23:36:00.607Z", + "created": "2011-08-11T12:20:34.990Z", + "0.0.1": "2011-08-11T12:20:35.822Z", + "0.0.2": "2011-08-11T18:06:55.583Z", + "0.0.3": "2011-08-11T23:36:00.607Z" + }, + "author": { + "name": "Diogo Resende", + "email": "dresende@thinkdigital.pt", + "url": "http://www.thinkdigital.pt" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/butler/0.0.1", + "0.0.2": "http://registry.npmjs.org/butler/0.0.2", + "0.0.3": "http://registry.npmjs.org/butler/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "8fcf19b8d20985a81a5bc6c884d7522eac1663ab", + "tarball": "http://registry.npmjs.org/butler/-/butler-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "a5caeea24daa06d02c135e4e298ad73a975d3e4d", + "tarball": "http://registry.npmjs.org/butler/-/butler-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "e0633e1231de7c9ace911c983d60ef0ce7d43921", + "tarball": "http://registry.npmjs.org/butler/-/butler-0.0.3.tgz" + } + }, + "keywords": [ + "butler", + "async", + "promisse", + "future", + "fiber" + ], + "url": "http://registry.npmjs.org/butler/" + }, + "butter": { + "name": "butter", + "description": "Butter === nodeJS Buffer + ( some hexadecimals delights )", + "dist-tags": { + "latest": "0.1.5" + }, + "maintainers": [ + { + "name": "rootslab", + "email": "44gatti@gmail.com" + } + ], + "time": { + "modified": "2011-11-05T18:28:09.935Z", + "created": "2011-11-05T18:28:06.090Z", + "0.1.5": "2011-11-05T18:28:09.935Z" + }, + "author": { + "name": "Guglielmo Ferri", + "email": "44gatti@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/rootslab/butter.git" + }, + "versions": { + "0.1.5": "http://registry.npmjs.org/butter/0.1.5" + }, + "dist": { + "0.1.5": { + "shasum": "6926ebb4e204f226cc41705b1a3aa060d9ff0d92", + "tarball": "http://registry.npmjs.org/butter/-/butter-0.1.5.tgz" + } + }, + "keywords": [ + "hex", + "parse", + "concat", + "join", + "butter", + "buffer" + ], + "url": "http://registry.npmjs.org/butter/" + }, + "buzz": { + "name": "buzz", + "description": "Buzz is an app to kill an app and then restart it, over and over again. Similar to Forever.", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "jp", + "email": "jprichardson@gmail.com" + } + ], + "time": { + "modified": "2011-11-16T22:02:33.630Z", + "created": "2011-11-08T20:05:59.065Z", + "0.0.1": "2011-11-08T20:09:44.802Z", + "0.0.2": "2011-11-08T20:11:54.957Z", + "0.0.3": "2011-11-08T20:24:36.186Z", + "0.0.4": "2011-11-08T21:33:38.249Z", + "0.0.5": "2011-11-16T22:02:33.630Z" + }, + "author": { + "name": "JP Richardson", + "email": "jprichardson@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/jprichardson/buzz.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/buzz/0.0.1", + "0.0.2": "http://registry.npmjs.org/buzz/0.0.2", + "0.0.3": "http://registry.npmjs.org/buzz/0.0.3", + "0.0.4": "http://registry.npmjs.org/buzz/0.0.4", + "0.0.5": "http://registry.npmjs.org/buzz/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "cb6faa069faffbe3f16e99ddebcc2689fb7b0482", + "tarball": "http://registry.npmjs.org/buzz/-/buzz-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "bd06e1fdb89693adeda1d7f8bc1003dc3ee5dad1", + "tarball": "http://registry.npmjs.org/buzz/-/buzz-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "f56858bbf37775462260bd42bb4a3af143b52fc9", + "tarball": "http://registry.npmjs.org/buzz/-/buzz-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "b9ec47c0d0ab8d4f760e05cd378bbbe48a5f609f", + "tarball": "http://registry.npmjs.org/buzz/-/buzz-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "91a365869eadadce497986aef449e1f188b41587", + "tarball": "http://registry.npmjs.org/buzz/-/buzz-0.0.5.tgz" + } + }, + "keywords": [ + "kill", + "restart", + "forever", + "buzz" + ], + "url": "http://registry.npmjs.org/buzz/" + }, + "byline": { + "name": "byline", + "description": "super-simple line-by-line Stream reader", + "dist-tags": { + "latest": "2.0.1" + }, + "maintainers": [ + { + "name": "jahewson", + "email": "johnahewson@yahoo.co.uk" + } + ], + "time": { + "modified": "2011-11-21T00:11:03.242Z", + "created": "2011-08-31T22:56:15.096Z", + "1.0.0": "2011-08-31T22:56:16.112Z", + "1.0.1": "2011-08-31T23:16:37.506Z", + "1.0.2": "2011-09-07T10:14:13.136Z", + "1.0.3": "2011-09-14T09:33:38.250Z", + "2.0.1": "2011-11-21T00:11:03.242Z" + }, + "author": { + "name": "John Hewson" + }, + "repository": { + "type": "git", + "url": "git://github.com/jahewson/node-byline.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/byline/1.0.0", + "1.0.1": "http://registry.npmjs.org/byline/1.0.1", + "1.0.2": "http://registry.npmjs.org/byline/1.0.2", + "1.0.3": "http://registry.npmjs.org/byline/1.0.3", + "2.0.1": "http://registry.npmjs.org/byline/2.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "02967a21ba5a8d24922c1d2b35ac5acc60b3612b", + "tarball": "http://registry.npmjs.org/byline/-/byline-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "97a87a06713d5ac20c9c0d1dd251ffbc72d221df", + "tarball": "http://registry.npmjs.org/byline/-/byline-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "72eaa112c6e339cea15d56371585e9ed3cc8c92c", + "tarball": "http://registry.npmjs.org/byline/-/byline-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "b9fb39cb1ddc959ef7935220aab36eeb4fb985b1", + "tarball": "http://registry.npmjs.org/byline/-/byline-1.0.3.tgz" + }, + "2.0.1": { + "shasum": "50a2fd336df1faa50c77986b561136c722937e9d", + "tarball": "http://registry.npmjs.org/byline/-/byline-2.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/byline/" + }, + "bz": { + "name": "bz", + "description": "Bugzilla REST API wrapper", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "harth", + "email": "fayearthur@gmail.com" + } + ], + "time": { + "modified": "2011-09-01T21:39:56.739Z", + "created": "2011-04-01T22:19:59.005Z", + "0.1.0": "2011-04-01T22:19:59.299Z", + "0.2.0": "2011-04-07T07:01:16.510Z", + "0.2.2": "2011-09-01T21:39:56.739Z" + }, + "author": { + "name": "Heather Arthur", + "email": "fayearthur@gmail.com" + }, + "repository": { + "url": "git://github.com/harthur/bz.js.git", + "type": "git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/bz/0.1.0", + "0.2.0": "http://registry.npmjs.org/bz/0.2.0", + "0.2.2": "http://registry.npmjs.org/bz/0.2.2" + }, + "dist": { + "0.1.0": { + "shasum": "b8253a7d015ae1874c903994b070f3cbe699ade1", + "tarball": "http://registry.npmjs.org/bz/-/bz-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "a7d7c0e2bf9680ce8f3b398cd75cfc61cc3e5148", + "tarball": "http://registry.npmjs.org/bz/-/bz-0.2.0.tgz" + }, + "0.2.2": { + "shasum": "8caccf9d9c3b5468e2da38363a6bdfb22d5051bb", + "tarball": "http://registry.npmjs.org/bz/-/bz-0.2.2.tgz" + } + }, + "keywords": [ + "bugzilla" + ], + "url": "http://registry.npmjs.org/bz/" + }, + "c-c-config": { + "name": "c-c-config", + "description": "Tagged configuration", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "**c-c-config** is a library to parse tagged configuration.\n\nAs an example, take the following JSON config which describes different\ndatabase servers to use for different application environments:\n\n {\n \"development\": {\n \"database\": \"localhost\"\n },\n \"production\": {\n \"database\": \"power-hungry-server\"\n }\n }\n\nYou'd use this with c-c-config as follows:\n\n var ccconfig = require(\"c-c-config\");\n\n // c-c-config does not concern itself with I/O.\n var raw = JSON.parse(/* … */);\n\n var cfg = ccconfig(\"development\", raw);\n // do something with cfg.database\n\nHowever, multiple tags (and thus levels of configuration) are possible:\n\n ccconfig(\"worker development\", {\n \"worker development\": {\n \"bindPort\": 91234\n },\n \"worker\": {\n \"bindPort\": 1234\n },\n \"development\": {\n \"database\": \"localhost\"\n }\n });\n\nThe most specific rule will prevail, so `bindPort` will be set to `91234`.\nObjects are merged, so the resulting object will also contain the `database`\nproperty. (In fact, c-c-config does deep merging of object structures.)\n", + "maintainers": [ + { + "name": "stephank", + "email": "stephan@kochen.nl" + } + ], + "time": { + "modified": "2011-12-07T21:51:05.122Z", + "created": "2011-12-07T21:51:03.652Z", + "0.0.1": "2011-12-07T21:51:05.122Z" + }, + "author": { + "name": "Stéphan Kochen", + "email": "stephan@angrybytes.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/AngryBytes/c-c-config.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/c-c-config/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "53dc36ec48228ec0c1bd9cc2b518c0e13a7af1f9", + "tarball": "http://registry.npmjs.org/c-c-config/-/c-c-config-0.0.1.tgz" + } + }, + "keywords": [ + "config" + ], + "url": "http://registry.npmjs.org/c-c-config/" + }, + "c2dm": { + "name": "c2dm", + "description": "An interface to the Android Cloud to Device Messaging (C2DM) service for Node.js", + "dist-tags": { + "latest": "1.0.3" + }, + "maintainers": [ + { + "name": "spect", + "email": "spect.man@gmail.com" + } + ], + "time": { + "modified": "2011-08-15T19:08:13.856Z", + "created": "2011-01-28T14:33:36.938Z", + "1.0.0": "2011-01-28T14:33:37.656Z", + "1.0.1": "2011-04-29T08:11:59.307Z", + "1.0.2": "2011-05-05T00:42:56.174Z", + "1.0.3": "2011-08-15T19:08:13.856Z" + }, + "author": { + "name": "Yury Proshchenko", + "email": "spect.man@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/SpeCT/node-c2dm.git", + "web": "http://github.com/SpeCT/node-c2dm" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/c2dm/1.0.0", + "1.0.1": "http://registry.npmjs.org/c2dm/1.0.1", + "1.0.2": "http://registry.npmjs.org/c2dm/1.0.2", + "1.0.3": "http://registry.npmjs.org/c2dm/1.0.3" + }, + "dist": { + "1.0.0": { + "shasum": "defb5d2903761d8ac626ab8ff8215d5966b1462a", + "tarball": "http://registry.npmjs.org/c2dm/-/c2dm-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "64e45ad94a3d12bdf62077abef8cf0ebf1ac7dcd", + "tarball": "http://registry.npmjs.org/c2dm/-/c2dm-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "213ee4c0c5466c39d7564e1bbe9eda5ae770311d", + "tarball": "http://registry.npmjs.org/c2dm/-/c2dm-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "013cc83f9f18188d7387182dd4c0beed3c3f982a", + "tarball": "http://registry.npmjs.org/c2dm/-/c2dm-1.0.3.tgz" + } + }, + "keywords": [ + "google", + "push", + "push notifications", + "android", + "c2dm" + ], + "url": "http://registry.npmjs.org/c2dm/" + }, + "cabin": { + "name": "cabin", + "description": "build little html buildings with css selectors and stuff", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "stenson", + "email": "rob.stenson@gmail.com" + } + ], + "time": { + "modified": "2011-05-18T18:32:55.072Z", + "created": "2011-05-15T18:08:09.138Z", + "0.0.1": "2011-05-15T18:08:09.697Z", + "0.0.2": "2011-05-15T18:43:23.679Z", + "0.0.3": "2011-05-18T18:32:55.072Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/stenson/cabin.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/cabin/0.0.1", + "0.0.2": "http://registry.npmjs.org/cabin/0.0.2", + "0.0.3": "http://registry.npmjs.org/cabin/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "3e94235d50d57764d2566a79288b6cd328651972", + "tarball": "http://registry.npmjs.org/cabin/-/cabin-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "1de9fada2cfc644907680854aaac2e6a45443263", + "tarball": "http://registry.npmjs.org/cabin/-/cabin-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "437c1775a1658139d9c62f77f03c2d5fb193446f", + "tarball": "http://registry.npmjs.org/cabin/-/cabin-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/cabin/" + }, + "caboose": { + "name": "caboose", + "description": "Rails-ish MVC Framework in Coffeescript", + "dist-tags": { + "latest": "0.1.28" + }, + "maintainers": [ + { + "name": "mattinsler", + "email": "matt.insler@gmail.com" + } + ], + "time": { + "modified": "2011-11-21T07:50:53.446Z", + "created": "2011-08-12T07:12:53.756Z", + "0.1.0": "2011-08-12T07:12:53.944Z", + "0.1.1": "2011-08-12T07:31:22.837Z", + "0.1.2": "2011-08-12T07:45:47.524Z", + "0.1.3": "2011-08-12T08:08:04.889Z", + "0.1.4": "2011-08-15T13:19:39.859Z", + "0.1.5": "2011-08-16T07:15:55.903Z", + "0.1.6": "2011-08-18T06:25:12.570Z", + "0.1.7": "2011-08-18T06:32:40.366Z", + "0.1.8": "2011-08-18T07:11:31.639Z", + "0.1.9": "2011-08-18T07:48:59.974Z", + "0.1.10": "2011-08-18T07:52:22.299Z", + "0.1.11": "2011-08-18T08:03:51.796Z", + "0.1.12": "2011-08-18T08:06:36.508Z", + "0.1.13": "2011-08-18T08:09:44.076Z", + "0.1.14": "2011-09-07T03:38:59.956Z", + "0.1.15": "2011-09-07T04:28:19.764Z", + "0.1.16": "2011-10-11T05:21:47.526Z", + "0.1.17": "2011-10-11T05:27:25.167Z", + "0.1.18": "2011-10-11T05:29:09.358Z", + "0.1.19": "2011-10-16T19:56:08.750Z", + "0.1.20": "2011-10-20T04:57:10.556Z", + "0.1.21": "2011-10-22T06:39:10.377Z", + "0.1.22": "2011-10-22T07:01:27.190Z", + "0.1.23": "2011-10-23T23:56:43.752Z", + "0.1.24": "2011-10-26T05:33:25.214Z", + "0.1.25": "2011-10-28T06:55:08.521Z", + "0.1.26": "2011-11-20T07:15:41.210Z", + "0.1.27": "2011-11-20T08:39:06.989Z", + "0.1.28": "2011-11-21T07:50:53.446Z" + }, + "author": { + "name": "Matt Insler", + "email": "matt.insler@gmail.com", + "url": "www.mattinsler.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:mattinsler/caboose.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/caboose/0.1.0", + "0.1.1": "http://registry.npmjs.org/caboose/0.1.1", + "0.1.2": "http://registry.npmjs.org/caboose/0.1.2", + "0.1.3": "http://registry.npmjs.org/caboose/0.1.3", + "0.1.4": "http://registry.npmjs.org/caboose/0.1.4", + "0.1.5": "http://registry.npmjs.org/caboose/0.1.5", + "0.1.6": "http://registry.npmjs.org/caboose/0.1.6", + "0.1.7": "http://registry.npmjs.org/caboose/0.1.7", + "0.1.8": "http://registry.npmjs.org/caboose/0.1.8", + "0.1.9": "http://registry.npmjs.org/caboose/0.1.9", + "0.1.10": "http://registry.npmjs.org/caboose/0.1.10", + "0.1.11": "http://registry.npmjs.org/caboose/0.1.11", + "0.1.12": "http://registry.npmjs.org/caboose/0.1.12", + "0.1.13": "http://registry.npmjs.org/caboose/0.1.13", + "0.1.14": "http://registry.npmjs.org/caboose/0.1.14", + "0.1.15": "http://registry.npmjs.org/caboose/0.1.15", + "0.1.16": "http://registry.npmjs.org/caboose/0.1.16", + "0.1.17": "http://registry.npmjs.org/caboose/0.1.17", + "0.1.18": "http://registry.npmjs.org/caboose/0.1.18", + "0.1.19": "http://registry.npmjs.org/caboose/0.1.19", + "0.1.20": "http://registry.npmjs.org/caboose/0.1.20", + "0.1.21": "http://registry.npmjs.org/caboose/0.1.21", + "0.1.22": "http://registry.npmjs.org/caboose/0.1.22", + "0.1.23": "http://registry.npmjs.org/caboose/0.1.23", + "0.1.24": "http://registry.npmjs.org/caboose/0.1.24", + "0.1.25": "http://registry.npmjs.org/caboose/0.1.25", + "0.1.26": "http://registry.npmjs.org/caboose/0.1.26", + "0.1.27": "http://registry.npmjs.org/caboose/0.1.27", + "0.1.28": "http://registry.npmjs.org/caboose/0.1.28" + }, + "dist": { + "0.1.0": { + "shasum": "27627dd7f8b50ce76a10e500187e747825007a6e", + "tarball": "http://registry.npmjs.org/caboose/-/caboose-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "6ae826f3b1a86e862aea5c73c16b1af98d3f2650", + "tarball": "http://registry.npmjs.org/caboose/-/caboose-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "79330ef47b08247a2c93cfa95a54b5d751adc9b5", + "tarball": "http://registry.npmjs.org/caboose/-/caboose-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "bde31b64f726db7a21bade65ff730a0ebad464fc", + "tarball": "http://registry.npmjs.org/caboose/-/caboose-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "9bdaa3f270bca14d22caff6dbd7a3573e602ea28", + "tarball": "http://registry.npmjs.org/caboose/-/caboose-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "be2db81a849c98b7ddd8948d5ad386c859903f7b", + "tarball": "http://registry.npmjs.org/caboose/-/caboose-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "bb988364f80622094fbcc6cf2aee06bf274c48a8", + "tarball": "http://registry.npmjs.org/caboose/-/caboose-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "c798dc2e2af32d671e5997bcfea8791305be8b92", + "tarball": "http://registry.npmjs.org/caboose/-/caboose-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "53034d6425309330e501421347fa66a4c40d815b", + "tarball": "http://registry.npmjs.org/caboose/-/caboose-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "f9c3302b373017047f2d4d00afa450efae2418fd", + "tarball": "http://registry.npmjs.org/caboose/-/caboose-0.1.9.tgz" + }, + "0.1.10": { + "shasum": "6f2e9006e12209539863c3b138b76b0ab7141df1", + "tarball": "http://registry.npmjs.org/caboose/-/caboose-0.1.10.tgz" + }, + "0.1.11": { + "shasum": "7588588401b9e5783ec14bf7545dc66b43f9c2bb", + "tarball": "http://registry.npmjs.org/caboose/-/caboose-0.1.11.tgz" + }, + "0.1.12": { + "shasum": "e2bfa6bc3dd70aa0c2438772fef26a62eed0b7a4", + "tarball": "http://registry.npmjs.org/caboose/-/caboose-0.1.12.tgz" + }, + "0.1.13": { + "shasum": "958c09b87fe41bd75459705378b5fda5770db07d", + "tarball": "http://registry.npmjs.org/caboose/-/caboose-0.1.13.tgz" + }, + "0.1.14": { + "shasum": "7ed21fed2942355e5d7b378ea81d961014319b84", + "tarball": "http://registry.npmjs.org/caboose/-/caboose-0.1.14.tgz" + }, + "0.1.15": { + "shasum": "5f3ce481fe66adf208a1d4b971a7588a50f24ecc", + "tarball": "http://registry.npmjs.org/caboose/-/caboose-0.1.15.tgz" + }, + "0.1.16": { + "shasum": "32005bd9e0266f1f7988895c03d118b218e13334", + "tarball": "http://registry.npmjs.org/caboose/-/caboose-0.1.16.tgz" + }, + "0.1.17": { + "shasum": "8321b2b19c3f8949a4d03b074106c342069fae79", + "tarball": "http://registry.npmjs.org/caboose/-/caboose-0.1.17.tgz" + }, + "0.1.18": { + "shasum": "4ac39603e858bc9fabd95281527ed7ded93f721e", + "tarball": "http://registry.npmjs.org/caboose/-/caboose-0.1.18.tgz" + }, + "0.1.19": { + "shasum": "fdd46c0f166b9135c9b9294cb9e1b61916afdc41", + "tarball": "http://registry.npmjs.org/caboose/-/caboose-0.1.19.tgz" + }, + "0.1.20": { + "shasum": "f0aee7ef767062d6bef084508940e1cd9c9e6354", + "tarball": "http://registry.npmjs.org/caboose/-/caboose-0.1.20.tgz" + }, + "0.1.21": { + "shasum": "09801f5f75ab339dda960fd0fed18802aa80c4ca", + "tarball": "http://registry.npmjs.org/caboose/-/caboose-0.1.21.tgz" + }, + "0.1.22": { + "shasum": "3042b59e2a7cbc54427f51457aae5747d44b5848", + "tarball": "http://registry.npmjs.org/caboose/-/caboose-0.1.22.tgz" + }, + "0.1.23": { + "shasum": "daef66b60ea8caa0f51a589467ffc010385eeec0", + "tarball": "http://registry.npmjs.org/caboose/-/caboose-0.1.23.tgz" + }, + "0.1.24": { + "shasum": "8b693858977074e5f0558dbe26b9e2457c78a63d", + "tarball": "http://registry.npmjs.org/caboose/-/caboose-0.1.24.tgz" + }, + "0.1.25": { + "shasum": "b7d014b0b4857bf240d83756bd2ba98817eaa49f", + "tarball": "http://registry.npmjs.org/caboose/-/caboose-0.1.25.tgz" + }, + "0.1.26": { + "shasum": "80ac6d0c4ce6ca0a87c04b4fe1cfe921e9e510ab", + "tarball": "http://registry.npmjs.org/caboose/-/caboose-0.1.26.tgz" + }, + "0.1.27": { + "shasum": "9666699c2d9816ac51e230f4b2eacef579750778", + "tarball": "http://registry.npmjs.org/caboose/-/caboose-0.1.27.tgz" + }, + "0.1.28": { + "shasum": "dbacf2a3de3a492b502924d2cc742b96cb87963d", + "tarball": "http://registry.npmjs.org/caboose/-/caboose-0.1.28.tgz" + } + }, + "url": "http://registry.npmjs.org/caboose/" + }, + "caboose-authentication": { + "name": "caboose-authentication", + "description": "Authentication helpers for caboose-model", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "mattinsler", + "email": "matt.insler@gmail.com" + } + ], + "time": { + "modified": "2011-10-11T05:22:01.095Z", + "created": "2011-09-07T03:39:25.614Z", + "0.0.1": "2011-09-07T03:39:26.260Z", + "0.0.2": "2011-10-11T05:22:01.095Z" + }, + "author": { + "name": "Matt Insler", + "email": "matt.insler@gmail.com", + "url": "www.mattinsler.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:mattinsler/caboose.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/caboose-authentication/0.0.1", + "0.0.2": "http://registry.npmjs.org/caboose-authentication/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "15b96ce8566dd73a1c8c0b658bee85d2e4a7fee3", + "tarball": "http://registry.npmjs.org/caboose-authentication/-/caboose-authentication-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "76d5231986f1e2c2445762ca95f5553985f99cef", + "tarball": "http://registry.npmjs.org/caboose-authentication/-/caboose-authentication-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/caboose-authentication/" + }, + "caboose-model": { + "name": "caboose-model", + "description": "Model system around MongoDB", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "mattinsler", + "email": "matt.insler@gmail.com" + } + ], + "time": { + "modified": "2011-11-21T07:49:58.435Z", + "created": "2011-09-07T03:39:13.646Z", + "0.0.1": "2011-09-07T03:39:14.298Z", + "0.0.2": "2011-10-11T05:21:55.514Z", + "0.0.3": "2011-10-20T04:57:16.876Z", + "0.0.4": "2011-10-20T05:34:33.665Z", + "0.0.5": "2011-10-28T06:55:17.074Z", + "0.0.6": "2011-11-03T19:50:20.537Z", + "0.0.7": "2011-11-03T20:37:52.704Z", + "0.0.8": "2011-11-04T03:54:13.870Z", + "0.0.9": "2011-11-20T08:54:57.506Z", + "0.1.0": "2011-11-21T07:49:58.435Z" + }, + "author": { + "name": "Matt Insler", + "email": "matt.insler@gmail.com", + "url": "www.mattinsler.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:mattinsler/caboose.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/caboose-model/0.0.1", + "0.0.2": "http://registry.npmjs.org/caboose-model/0.0.2", + "0.0.3": "http://registry.npmjs.org/caboose-model/0.0.3", + "0.0.4": "http://registry.npmjs.org/caboose-model/0.0.4", + "0.0.5": "http://registry.npmjs.org/caboose-model/0.0.5", + "0.0.6": "http://registry.npmjs.org/caboose-model/0.0.6", + "0.0.7": "http://registry.npmjs.org/caboose-model/0.0.7", + "0.0.8": "http://registry.npmjs.org/caboose-model/0.0.8", + "0.0.9": "http://registry.npmjs.org/caboose-model/0.0.9", + "0.1.0": "http://registry.npmjs.org/caboose-model/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "72276bc68c2b7c8a2f43aaa44c4155119259d3fc", + "tarball": "http://registry.npmjs.org/caboose-model/-/caboose-model-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f72ade437edb29119e3afe97a2059febd6fbbd2d", + "tarball": "http://registry.npmjs.org/caboose-model/-/caboose-model-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "cbb210c620dd8f2ae92dd90ab583ae4ac8dd1ff6", + "tarball": "http://registry.npmjs.org/caboose-model/-/caboose-model-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "e265783741e5c453f8bbf81c7e5336241312210a", + "tarball": "http://registry.npmjs.org/caboose-model/-/caboose-model-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "f318f7eda1d6c00625ed9622625f428a5efa14b3", + "tarball": "http://registry.npmjs.org/caboose-model/-/caboose-model-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "e6a408ca61080b8faf3df99837e122da40e10ba1", + "tarball": "http://registry.npmjs.org/caboose-model/-/caboose-model-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "8b77ba2ae07eca22c9c89f8bcc9df3aa2be092e8", + "tarball": "http://registry.npmjs.org/caboose-model/-/caboose-model-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "7bdb5798d04997dcf430b44a72cbebba90abc017", + "tarball": "http://registry.npmjs.org/caboose-model/-/caboose-model-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "bbb5600cf3a385ac4b75033cb594079f0f6f30f4", + "tarball": "http://registry.npmjs.org/caboose-model/-/caboose-model-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "8329bd53db78dc3b84bc4dfd757d0b7addea64b2", + "tarball": "http://registry.npmjs.org/caboose-model/-/caboose-model-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/caboose-model/" + }, + "cache": { + "name": "cache", + "description": "A simple cache for JSON data with a REST API", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "sleeplessinc", + "email": "joe@sleepless.com" + } + ], + "time": { + "modified": "2011-10-13T23:34:24.053Z", + "created": "2011-10-13T07:12:09.712Z", + "1.0.0": "2011-10-13T07:12:10.953Z", + "1.0.1": "2011-10-13T23:34:24.053Z" + }, + "author": { + "name": "Joe Hitchens", + "email": "joe@sleepless.com", + "url": "sleepless.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/sleeplessinc/cache.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/cache/1.0.0", + "1.0.1": "http://registry.npmjs.org/cache/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "ab3eb356272162a7a81d2255c6fae424ff628a65", + "tarball": "http://registry.npmjs.org/cache/-/cache-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "ef1ba5b032f8189f605a20c17a613b611d5efa1f", + "tarball": "http://registry.npmjs.org/cache/-/cache-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/cache/" + }, + "cache2file": { + "name": "cache2file", + "description": "Cache string information to files", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "Poetro", + "email": "poetro@gmail.com" + } + ], + "time": { + "modified": "2011-02-03T13:44:40.632Z", + "created": "2011-01-16T20:31:19.783Z", + "0.1.0": "2011-01-16T20:31:20.136Z", + "0.1.1": "2011-01-16T21:51:59.152Z", + "0.2.0": "2011-01-28T12:21:24.205Z", + "0.2.1": "2011-02-03T13:44:40.632Z" + }, + "author": { + "name": "Peter Galiba", + "email": "poetro@poetro.hu", + "url": "http://poetro.hu/" + }, + "repository": { + "type": "git", + "url": "http://github.com/Poetro/node-cache2file.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/cache2file/0.1.0", + "0.1.1": "http://registry.npmjs.org/cache2file/0.1.1", + "0.2.0": "http://registry.npmjs.org/cache2file/0.2.0", + "0.2.1": "http://registry.npmjs.org/cache2file/0.2.1" + }, + "dist": { + "0.1.0": { + "shasum": "65561c6af6d90e5c2785b470a0849e092b16623f", + "tarball": "http://registry.npmjs.org/cache2file/-/cache2file-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "d3535a48357222a7fc37bc987e41098dbc584516", + "tarball": "http://registry.npmjs.org/cache2file/-/cache2file-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "bbd79c8f86a0303b6a4e754276d86bb34c94bf40", + "tarball": "http://registry.npmjs.org/cache2file/-/cache2file-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "8f729dfaaba41a64c87a6339a128623a1d0e8e73", + "tarball": "http://registry.npmjs.org/cache2file/-/cache2file-0.2.1.tgz" + } + }, + "keywords": [ + "cache", + "file" + ], + "url": "http://registry.npmjs.org/cache2file/" + }, + "cacheio": { + "name": "cacheio", + "description": "Cache library for in-memory caching of data coming from backends", + "dist-tags": { + "latest": "0.5.1" + }, + "maintainers": [ + { + "name": "codebutcher", + "email": "bollockz@gmail.com" + } + ], + "time": { + "modified": "2011-11-01T20:05:38.882Z", + "created": "2011-11-01T20:05:36.124Z", + "0.5.1": "2011-11-01T20:05:38.882Z" + }, + "author": { + "name": "Gidi Bloch" + }, + "repository": { + "type": "git", + "url": "git://github.com/codebutcher/node.cacheio.git" + }, + "versions": { + "0.5.1": "http://registry.npmjs.org/cacheio/0.5.1" + }, + "dist": { + "0.5.1": { + "shasum": "17d3e663fb35f9a3fa8a99c2f862f007abd35d4d", + "tarball": "http://registry.npmjs.org/cacheio/-/cacheio-0.5.1.tgz" + } + }, + "keywords": [ + "cache", + "lib", + "data store", + "io" + ], + "url": "http://registry.npmjs.org/cacheio/" + }, + "cachet": { + "name": "cachet", + "description": "Tiny Caching functions designed to expire ts content either by duration or date object.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "maurerdotme", + "email": "andrew@maurer.me" + } + ], + "time": { + "modified": "2011-11-06T16:56:46.678Z", + "created": "2011-11-06T16:45:19.338Z", + "0.0.1": "2011-11-06T16:56:46.678Z" + }, + "author": { + "name": "Andrew Maurer" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/cachet/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "fa6fdf03a2942c41525ac222694f0a66f920658d", + "tarball": "http://registry.npmjs.org/cachet/-/cachet-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/cachet/" + }, + "caching": { + "name": "caching", + "description": "Easier caching in node.js", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "mape", + "email": "mape@mape.me" + } + ], + "time": { + "modified": "2011-09-06T15:41:52.657Z", + "created": "2011-08-23T06:20:47.519Z", + "0.0.1": "2011-08-23T06:20:48.260Z", + "0.0.2": "2011-08-23T20:44:16.896Z", + "0.1.2": "2011-09-06T14:47:48.997Z", + "0.1.3": "2011-09-06T15:32:55.196Z", + "0.1.4": "2011-09-06T15:41:52.657Z" + }, + "author": { + "name": "Mathias Pettersson", + "email": "mape@mape.me" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/caching/0.0.1", + "0.0.2": "http://registry.npmjs.org/caching/0.0.2", + "0.1.2": "http://registry.npmjs.org/caching/0.1.2", + "0.1.3": "http://registry.npmjs.org/caching/0.1.3", + "0.1.4": "http://registry.npmjs.org/caching/0.1.4" + }, + "dist": { + "0.0.1": { + "shasum": "165a22a43f72e1f0b32a8387eb537cd285df1ce1", + "tarball": "http://registry.npmjs.org/caching/-/caching-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "05e0734759830df2e5df4cbc75a97c510324e668", + "tarball": "http://registry.npmjs.org/caching/-/caching-0.0.2.tgz" + }, + "0.1.2": { + "shasum": "5d18c1315047cb8e61d3a36537330c1f3143c291", + "tarball": "http://registry.npmjs.org/caching/-/caching-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "3ed2843051bc8e9f3b1f925557b72f2a9bcd652f", + "tarball": "http://registry.npmjs.org/caching/-/caching-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "b6e990f9c7eb3e77d67190ccaca3ed485ebdb34d", + "tarball": "http://registry.npmjs.org/caching/-/caching-0.1.4.tgz" + } + }, + "url": "http://registry.npmjs.org/caching/" + }, + "calais": { + "name": "calais", + "description": "Semantically analyze text using the Calais web service.", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "mcantelon", + "email": "mcantelon@gmail.com" + } + ], + "time": { + "modified": "2011-01-29T22:12:34.386Z", + "created": "2010-12-29T07:11:35.672Z", + "0.0.1": "2010-12-29T07:11:35.897Z", + "0.1.0": "2010-12-30T07:00:00.629Z", + "0.1.1": "2010-12-30T07:07:11.104Z", + "0.1.2": "2010-12-30T16:38:25.708Z", + "0.1.4": "2011-01-29T22:12:34.386Z" + }, + "author": { + "name": "Mike Cantelon", + "email": "mcantelon@gmail.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/mcantelon/node-calais" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/calais/0.0.1", + "0.1.0": "http://registry.npmjs.org/calais/0.1.0", + "0.1.1": "http://registry.npmjs.org/calais/0.1.1", + "0.1.2": "http://registry.npmjs.org/calais/0.1.2", + "0.1.4": "http://registry.npmjs.org/calais/0.1.4" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/calais/-/calais@0.0.1.tgz" + }, + "0.1.0": { + "shasum": "19f7a08794164b8cabbeb7639dd1965bce9b7c07", + "tarball": "http://registry.npmjs.org/calais/-/calais-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "71adfee54e3be2c91e2243f976b0e418d7557f7e", + "tarball": "http://registry.npmjs.org/calais/-/calais-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "2fbc2a75308ae7cfdddc808cf4148d14f96d106f", + "tarball": "http://registry.npmjs.org/calais/-/calais-0.1.2.tgz" + }, + "0.1.4": { + "shasum": "7f0392c4a76abc4c9250b9619e16e83381ca333c", + "tarball": "http://registry.npmjs.org/calais/-/calais-0.1.4.tgz" + } + }, + "url": "http://registry.npmjs.org/calais/" + }, + "calc": { + "name": "calc", + "description": "Simple cmd line calculator", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "goatslacker", + "email": "josh@goatslacker.com" + } + ], + "time": { + "modified": "2011-11-23T11:48:34.673Z", + "created": "2011-07-11T06:26:05.597Z", + "0.0.1": "2011-07-11T06:26:06.157Z", + "0.0.2": "2011-11-23T11:48:34.673Z" + }, + "author": { + "name": "Josh Perez", + "email": "josh@goatslacker.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/goatslacker/node-calc.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/calc/0.0.1", + "0.0.2": "http://registry.npmjs.org/calc/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "4086dc8b765f79b73d83fcf61d275cd0e04362f2", + "tarball": "http://registry.npmjs.org/calc/-/calc-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "2e30e3b4ce5c80f5686116e01911f70314f3652c", + "tarball": "http://registry.npmjs.org/calc/-/calc-0.0.2.tgz" + } + }, + "keywords": [ + "math", + "calculator", + "arithmetic" + ], + "url": "http://registry.npmjs.org/calc/" + }, + "calendar-tools": { + "name": "calendar-tools", + "description": "Calendar object model", + "dist-tags": { + "latest": "0.2.3" + }, + "readme": "# Calendar-tools\n\n * Recurring events generation\n * Convertion functions for RFC2445 specification.\n * Designed to works on Node.JS and browsers.\n\n## Recurring events generation\n\n### Event structure\n\n``` javascript\n var newEvent = {\n title: 'My next birthday'\n , start: new Date(2012, 6, 18, 16)\n , end: new Date(2012, 6, 18, 23, 30)\n , allDay: false\n , frequency: 'year'\n , recurrence: {\n 'end-by': {\n after: 4\n , type: 'never'\n }\n , every: 1\n , exceptions: ['07/18/2012']\n }\n }\n```\n\n### Server-Side support\n-----------------------\n\n``` javascript\n// add seed module\nvar Seed = require('./lib/seed');\n\nvar today = new Date();\n\n// defines an event object\nvar myBirthDays = {\n title: 'Event Instances'\n , start: new Date(1977, 6, 18, 15, 30, 48)\n , end: new Date(1977, 6, 22, 15, 30, 48)\n , allDay: false\n , frequency: 'year'\n , recurrence: {\n 'end-by': {\n type: 'never'\n , on: today\n }\n , every: 1\n , exceptions: []\n }\n}\n\n// creates a new seed Object passing event object and options\nvar Seed = new Seed(myBirthDays, {\n start: new Date(2000, 0, 1)\n , end: today\n});\n\n// generates ans retrieves all instances by period\nvar instances = Seed.getInstances();\n\nfor (var i = 0; i < instances.length; i++) {\n var Instance = instances[i];\n console.log(Instance.start + ': ' + Instance.getNumber() + ' years');\n};\n```\n\n## License \n\n(The MIT License)\n\nCopyright (c) 2011 Damian Suarez <damian@learnboost.com>\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n", + "maintainers": [ + { + "name": "rauchg", + "email": "rauchg@gmail.com" + }, + { + "name": "retrofox", + "email": "damian@learnboost.com" + }, + { + "name": "damian", + "email": "damian@learnboost.com" + } + ], + "time": { + "modified": "2011-12-08T20:02:38.750Z", + "created": "2011-11-06T21:48:33.509Z", + "0.1.5": "2011-11-06T21:48:34.680Z", + "0.1.6": "2011-11-14T22:32:16.976Z", + "0.1.7": "2011-11-18T21:17:51.934Z", + "0.1.8": "2011-11-21T22:01:26.165Z", + "0.1.9": "2011-11-29T01:17:11.726Z", + "0.2.0": "2011-11-29T01:38:14.042Z", + "0.2.1": "2011-11-29T20:44:52.569Z", + "0.2.2": "2011-12-06T21:39:31.197Z", + "0.2.3": "2011-12-08T20:02:38.750Z" + }, + "author": { + "name": "Damian Suarez", + "email": "damian@learnboost.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/LearnBoost/calendar-tools.git" + }, + "versions": { + "0.1.5": "http://registry.npmjs.org/calendar-tools/0.1.5", + "0.1.6": "http://registry.npmjs.org/calendar-tools/0.1.6", + "0.1.7": "http://registry.npmjs.org/calendar-tools/0.1.7", + "0.1.8": "http://registry.npmjs.org/calendar-tools/0.1.8", + "0.1.9": "http://registry.npmjs.org/calendar-tools/0.1.9", + "0.2.0": "http://registry.npmjs.org/calendar-tools/0.2.0", + "0.2.1": "http://registry.npmjs.org/calendar-tools/0.2.1", + "0.2.2": "http://registry.npmjs.org/calendar-tools/0.2.2", + "0.2.3": "http://registry.npmjs.org/calendar-tools/0.2.3" + }, + "dist": { + "0.1.5": { + "shasum": "56f2989bd96d62a133ba6f96d80f4b9edff8bc3e", + "tarball": "http://registry.npmjs.org/calendar-tools/-/calendar-tools-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "29d97174e4f4415385aacdb09197bda66c8c7183", + "tarball": "http://registry.npmjs.org/calendar-tools/-/calendar-tools-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "567384c04e3f6748e1bff332fe57248ee388b3ec", + "tarball": "http://registry.npmjs.org/calendar-tools/-/calendar-tools-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "43416844f2ea658c9f4c6182cef110826f364661", + "tarball": "http://registry.npmjs.org/calendar-tools/-/calendar-tools-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "7b0b4f98683c905f1f07412c1f07f2870c22aa3b", + "tarball": "http://registry.npmjs.org/calendar-tools/-/calendar-tools-0.1.9.tgz" + }, + "0.2.0": { + "shasum": "dde77e9d05347cee56a391cc20376c9f39681401", + "tarball": "http://registry.npmjs.org/calendar-tools/-/calendar-tools-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "0ac74d2376a74f35e93c356e7ccf1d0b02539eaf", + "tarball": "http://registry.npmjs.org/calendar-tools/-/calendar-tools-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "5a7a4900faaf1b5df704c778d80a4d858fbf6b2a", + "tarball": "http://registry.npmjs.org/calendar-tools/-/calendar-tools-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "5d590f23c1f449678ac837d74c12c9383c450bfb", + "tarball": "http://registry.npmjs.org/calendar-tools/-/calendar-tools-0.2.3.tgz" + } + }, + "keywords": [ + "calendar", + "google calendar", + "fullCalendar", + "recurring events", + "icalendar", + "rfc2445" + ], + "url": "http://registry.npmjs.org/calendar-tools/" + }, + "calender": { + "name": "calender", + "description": "Simple, themable, Datepicker for Ender", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "ded", + "email": "polvero@gmail.com" + } + ], + "time": { + "modified": "2011-11-06T22:48:02.994Z", + "created": "2011-11-02T01:04:00.080Z", + "0.0.1": "2011-11-02T01:04:01.091Z", + "0.0.2": "2011-11-06T22:48:02.994Z" + }, + "author": { + "name": "Dustin Diaz", + "email": "dustin@dustindiaz.com", + "url": "http://dustindiaz.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/ded/calEnder.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/calender/0.0.1", + "0.0.2": "http://registry.npmjs.org/calender/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "9363b149da9d2b8d4257a39efb07f168d6be2209", + "tarball": "http://registry.npmjs.org/calender/-/calender-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "7ad8c5a9a6a51ad8c85fda27091ba8450d3f44ca", + "tarball": "http://registry.npmjs.org/calender/-/calender-0.0.2.tgz" + } + }, + "keywords": [ + "ender", + "calendar", + "date", + "datepicker", + "datechooser", + "" + ], + "url": "http://registry.npmjs.org/calender/" + }, + "calipso": { + "name": "calipso", + "description": "A NodeJS CMS", + "dist-tags": { + "latest": "0.2.3" + }, + "maintainers": [ + { + "name": "cliftonc", + "email": "clifton.cunningham@gmail.com" + } + ], + "time": { + "modified": "2011-08-10T07:37:12.060Z", + "created": "2011-07-15T06:21:12.835Z", + "0.1.2": "2011-07-15T06:21:13.434Z", + "0.2.0": "2011-07-21T09:33:49.608Z", + "0.2.1": "2011-07-22T05:41:43.409Z", + "0.2.2": "2011-08-07T19:40:35.149Z", + "0.2.3": "2011-08-10T07:37:12.060Z" + }, + "author": { + "name": "Clifton Cunningham", + "email": "clifton.cunningham@gmail.com", + "url": "cliftoncunningham.co.uk" + }, + "repository": { + "type": "git", + "url": "git://github.com/cliftonc/calipso.git" + }, + "versions": { + "0.1.2": "http://registry.npmjs.org/calipso/0.1.2", + "0.2.0": "http://registry.npmjs.org/calipso/0.2.0", + "0.2.1": "http://registry.npmjs.org/calipso/0.2.1", + "0.2.2": "http://registry.npmjs.org/calipso/0.2.2", + "0.2.3": "http://registry.npmjs.org/calipso/0.2.3" + }, + "dist": { + "0.1.2": { + "shasum": "508f7224644f63616f38ce30e1eed50fe776ed9d", + "tarball": "http://registry.npmjs.org/calipso/-/calipso-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "d5ca7671950e94b37cf5c2348c1e735d30ae8334", + "tarball": "http://registry.npmjs.org/calipso/-/calipso-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "44fd56082e6b1a0103d29c01c3cf60b9b8192c7c", + "tarball": "http://registry.npmjs.org/calipso/-/calipso-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "87fbfd5078513dbe7b1e99ff9e2d1c1e6f7a2e6d", + "tarball": "http://registry.npmjs.org/calipso/-/calipso-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "73c06ce5d4bce9e1af7db016cdd3fcabb2e69634", + "tarball": "http://registry.npmjs.org/calipso/-/calipso-0.2.3.tgz" + } + }, + "url": "http://registry.npmjs.org/calipso/" + }, + "callbackQueue": { + "name": "callbackQueue", + "description": "Dependencie registration module to control your workflow.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "zyndiecate", + "email": "kevin.reet@googlemail.com" + } + ], + "time": { + "modified": "2011-10-17T22:26:06.628Z", + "created": "2011-10-17T22:26:05.020Z", + "0.0.1": "2011-10-17T22:26:06.628Z" + }, + "author": { + "name": "Tim Schindler", + "email": "tim.schindler@adcloud.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/zyndiecate/callbackQueue.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/callbackQueue/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "bf17e781a022c872a44021e2351564a5a5df4fea", + "tarball": "http://registry.npmjs.org/callbackQueue/-/callbackQueue-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/callbackQueue/" + }, + "callsite": { + "name": "callsite", + "description": "access to v8's CallSites", + "dist-tags": { + "latest": "0.0.2" + }, + "readme": "# callstack\n\n Access to v8's \"raw\" `CallSite`s. This module provides the following \"magical\" global getters:\n\n - `__stack` array `CallSite` objects starting from the callee\n - `__line` the current line number\n\n## Installation\n\n $ npm install callsite\n\n## __stack\n\n For details on the v8 `CallSite` objects view the [stack trace api docs](http://code.google.com/p/v8/wiki/JavaScriptStackTraceApi), for example `__stack[0].getFileName()`.\n\n```js\nrequire('callsite');\n\nfoo();\n\nfunction foo() {\n bar();\n}\n\nfunction bar() {\n baz();\n}\n\nfunction baz() {\n __stack[0].fun == baz;\n __stack[1].fun == bar;\n __stack[2].fun == foo;\n}\n```\n\n## __line\n\n Returns the current lineno:\n\n```js\nrequire('callsite');\nconsole.log('foo')\nconsole.log('bar')\nconsole.log(__line) // => 4\n```\n\n## Why?\n\n Because you can do weird, stupid, clever, wacky things.\n\n## License \n\n(The MIT License)\n\nCopyright (c) 2011 TJ Holowaychuk <tj@vision-media.ca>\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "time": { + "modified": "2011-11-30T23:16:03.731Z", + "created": "2011-11-30T02:55:25.379Z", + "0.0.1": "2011-11-30T02:55:27.044Z", + "0.0.2": "2011-11-30T23:16:03.731Z" + }, + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/callsite/0.0.1", + "0.0.2": "http://registry.npmjs.org/callsite/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "ccd160d3f66ab2f0719faabb4d8424a5339a2276", + "tarball": "http://registry.npmjs.org/callsite/-/callsite-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "8caabfeaf82a347810691ee113a754189077de9a", + "tarball": "http://registry.npmjs.org/callsite/-/callsite-0.0.2.tgz" + } + }, + "keywords": [ + "stack", + "trace", + "line" + ], + "url": "http://registry.npmjs.org/callsite/" + }, + "caman": { + "name": "caman", + "description": "Pure Javascript (Ca)nvas (Man)ipulation. Easy to use, but powerful, image manipulation library.", + "dist-tags": { + "latest": "2.0.0" + }, + "maintainers": [ + { + "name": "meltingice", + "email": "meltingice8917@gmail.com" + } + ], + "time": { + "modified": "2011-04-04T06:58:15.085Z", + "created": "2011-03-03T20:29:17.428Z", + "1.0.0": "2011-03-03T20:29:18.584Z", + "1.1.0": "2011-03-03T23:39:15.296Z", + "1.2.0": "2011-03-06T08:44:47.085Z", + "1.2.1": "2011-04-04T03:13:11.868Z", + "2.0.0": "2011-04-04T06:58:15.085Z" + }, + "author": { + "name": "Ryan LeFevre", + "email": "meltingice8917@gmail.com", + "url": "http://meltingice.net" + }, + "repository": { + "type": "git", + "url": "http://github.com/meltingice/CamanJS.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/caman/1.0.0", + "1.1.0": "http://registry.npmjs.org/caman/1.1.0", + "1.2.0": "http://registry.npmjs.org/caman/1.2.0", + "1.2.1": "http://registry.npmjs.org/caman/1.2.1", + "2.0.0": "http://registry.npmjs.org/caman/2.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "ce95bef11c5843239bc4346f2c5c8a233ad397da", + "tarball": "http://registry.npmjs.org/caman/-/caman-1.0.0.tgz" + }, + "1.1.0": { + "shasum": "c136db32d771c453f83ed88282e72a5329650dd5", + "tarball": "http://registry.npmjs.org/caman/-/caman-1.1.0.tgz" + }, + "1.2.0": { + "shasum": "7dce0f267be29cb5dc6874e32b82bcb3b8820fb9", + "tarball": "http://registry.npmjs.org/caman/-/caman-1.2.0.tgz" + }, + "1.2.1": { + "shasum": "c3d9f063fd654752855cf6f4b71c34c67d8a3c4b", + "tarball": "http://registry.npmjs.org/caman/-/caman-1.2.1.tgz" + }, + "2.0.0": { + "shasum": "f19becc6078b2fdb51e3262c9433b6f8faf28d9e", + "tarball": "http://registry.npmjs.org/caman/-/caman-2.0.0.tgz" + } + }, + "keywords": [ + "canvas", + "image", + "manipulate", + "filter", + "image manipulation" + ], + "url": "http://registry.npmjs.org/caman/" + }, + "camanjs": { + "name": "camanjs", + "description": "Pure Javascript (Ca)nvas (Man)ipulation. Easy to use, but powerful, image manipulation library including preset filters.", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "meltingice", + "email": "meltingice8917@gmail.com" + } + ], + "time": { + "modified": "2011-03-02T06:52:22.992Z", + "created": "2011-03-02T06:52:22.824Z", + "1.0.0": "2011-03-02T06:52:22.992Z" + }, + "author": { + "name": "Ryan LeFevre", + "email": "meltingice8917@gmail.com", + "url": "http://meltingice.net" + }, + "repository": { + "type": "git", + "url": "http://github.com/meltingice/CamanJS.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/camanjs/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "5cbf3a6a9f96d3f241d8beb2571a5014d2a3fecd", + "tarball": "http://registry.npmjs.org/camanjs/-/camanjs-1.0.0.tgz" + } + }, + "keywords": [ + "canvas", + "image", + "manipulate", + "filter", + "image manipulation" + ], + "url": "http://registry.npmjs.org/camanjs/" + }, + "camelot": { + "name": "camelot", + "description": "A node wrapper for webcam controller providing configurable async frame grabbing.", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "pdeschen", + "email": "pdeschen@rassemblr.com" + } + ], + "time": { + "modified": "2011-09-09T01:09:48.967Z", + "created": "2011-07-13T01:48:39.635Z", + "0.0.1": "2011-07-13T01:48:39.845Z", + "0.0.2": "2011-07-26T03:04:04.966Z", + "0.0.3": "2011-09-09T01:09:48.967Z" + }, + "author": { + "name": "Pascal Deschenes", + "email": "pdeschen@rassemblr.com", + "url": "http://blog.rassemblr.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/pdeschen/camelot.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/camelot/0.0.1", + "0.0.2": "http://registry.npmjs.org/camelot/0.0.2", + "0.0.3": "http://registry.npmjs.org/camelot/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "9b208be5ab8fa519eebd7ac02d9a8c7c6e7d941e", + "tarball": "http://registry.npmjs.org/camelot/-/camelot-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "a11cb726aa7f835f7b4d4b0e7ca5ed4e6c3b312b", + "tarball": "http://registry.npmjs.org/camelot/-/camelot-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "a5f64b9e53711ea51a4013a3cd7db4f7a3699a89", + "tarball": "http://registry.npmjs.org/camelot/-/camelot-0.0.3.tgz" + } + }, + "keywords": [ + "webcam", + "cam", + "frame" + ], + "url": "http://registry.npmjs.org/camelot/" + }, + "campfire": { + "name": "campfire", + "description": "Use node.js to interact with Campfire.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "tristandunn", + "email": "tristanzdunn@gmail.com" + } + ], + "time": { + "modified": "2011-10-18T05:09:18.832Z", + "created": "2011-10-18T05:09:18.021Z", + "0.1.0": "2011-10-18T05:09:18.832Z" + }, + "author": { + "name": "Tristan Dunn", + "email": "hello@tristandunn.com", + "url": "http://tristandunn.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/tristandunn/node-campfire.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/campfire/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "e8bbebed0bb2f55a2a3797e5fe2e7649865147cf", + "tarball": "http://registry.npmjs.org/campfire/-/campfire-0.1.0.tgz" + } + }, + "keywords": [ + "chat", + "campfire", + "CF" + ], + "url": "http://registry.npmjs.org/campfire/" + }, + "campusbooks": { + "name": "campusbooks", + "description": "JavaScript Client for CampusBooks Partner API.", + "dist-tags": { + "latest": "0.5.7" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com" + }, + "time": { + "modified": "2011-08-02T02:53:04.839Z", + "created": "2011-03-11T05:30:43.180Z", + "0.5.0": "2011-03-11T05:30:43.180Z", + "0.5.1": "2011-03-11T05:30:43.180Z", + "0.5.4": "2011-03-11T05:30:43.180Z", + "0.5.6": "2011-07-28T04:05:46.379Z", + "0.5.7": "2011-08-02T02:53:04.839Z" + }, + "versions": { + "0.5.0": "http://registry.npmjs.org/campusbooks/0.5.0", + "0.5.1": "http://registry.npmjs.org/campusbooks/0.5.1", + "0.5.4": "http://registry.npmjs.org/campusbooks/0.5.4", + "0.5.6": "http://registry.npmjs.org/campusbooks/0.5.6", + "0.5.7": "http://registry.npmjs.org/campusbooks/0.5.7" + }, + "dist": { + "0.5.0": { + "tarball": "http://registry.npmjs.org/campusbooks/-/campusbooks-0.5.0.tgz" + }, + "0.5.1": { + "tarball": "http://registry.npmjs.org/campusbooks/-/campusbooks-0.5.1.tgz" + }, + "0.5.4": { + "shasum": "ebbf6292192f866141ad731ca29d9eb15f2f5e7b", + "tarball": "http://registry.npmjs.org/campusbooks/-/campusbooks-0.5.4.tgz" + }, + "0.5.6": { + "shasum": "45bdbcff17de22b828cae77faee41209007fe377", + "tarball": "http://registry.npmjs.org/campusbooks/-/campusbooks-0.5.6.tgz" + }, + "0.5.7": { + "shasum": "f7773cf609e2934a5398db3b47846963d01201e9", + "tarball": "http://registry.npmjs.org/campusbooks/-/campusbooks-0.5.7.tgz" + } + }, + "keywords": [ + "ender", + "campusbooks", + "amazon", + "textbooks", + "client", + "browser", + "api" + ], + "url": "http://registry.npmjs.org/campusbooks/" + }, + "cansecurity": { + "name": "cansecurity", + "description": "Authentication, authorization, session manager, single-sign-on (SSO) and security framework for node applications", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "deitch", + "email": "avi@deitcher.net" + } + ], + "time": { + "modified": "2011-11-27T10:55:16.068Z", + "created": "2011-10-10T07:36:29.344Z", + "0.1.0": "2011-10-10T07:36:30.383Z", + "0.2.0": "2011-10-16T10:50:49.380Z", + "0.2.1": "2011-11-27T10:29:01.624Z", + "0.2.2": "2011-11-27T10:55:16.068Z" + }, + "author": { + "name": "Avi Deitcher", + "email": "avi@deitcher.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/deitch/cansecurity.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/cansecurity/0.1.0", + "0.2.0": "http://registry.npmjs.org/cansecurity/0.2.0", + "0.2.1": "http://registry.npmjs.org/cansecurity/0.2.1", + "0.2.2": "http://registry.npmjs.org/cansecurity/0.2.2" + }, + "dist": { + "0.1.0": { + "shasum": "d1440d73950ea1140fa43786a6926002ef7da7df", + "tarball": "http://registry.npmjs.org/cansecurity/-/cansecurity-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "55790a2515f6af4c7bbc5214bbc69e68b61b399f", + "tarball": "http://registry.npmjs.org/cansecurity/-/cansecurity-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "236672d16b36d31c25c886ae9e9b794357b28bee", + "tarball": "http://registry.npmjs.org/cansecurity/-/cansecurity-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "e01fb7b901cc5c23726c449a524bf85de308d4d5", + "tarball": "http://registry.npmjs.org/cansecurity/-/cansecurity-0.2.2.tgz" + } + }, + "url": "http://registry.npmjs.org/cansecurity/" + }, + "canvas": { + "name": "canvas", + "description": "Canvas graphics API backed by Cairo", + "dist-tags": { + "latest": "0.8.1" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "author": { + "name": "TJ Holowaychuk", + "email": "tj@learnboost.com" + }, + "time": { + "modified": "2011-10-31T20:56:02.388Z", + "created": "2010-12-19T04:03:01.787Z", + "0.0.1": "2010-12-19T04:03:01.787Z", + "0.0.2": "2010-12-19T04:03:01.787Z", + "0.0.3": "2010-12-19T04:03:01.787Z", + "0.0.4": "2010-12-19T04:03:01.787Z", + "0.0.5": "2010-12-19T04:03:01.787Z", + "0.0.6": "2010-12-19T04:03:01.787Z", + "0.0.7": "2010-12-19T04:03:01.787Z", + "0.0.8": "2010-12-19T04:03:01.788Z", + "0.1.0": "2010-12-19T04:03:01.788Z", + "0.2.0": "2010-12-19T04:03:01.788Z", + "0.2.1": "2010-12-19T04:03:01.788Z", + "0.3.0": "2010-12-19T04:03:01.788Z", + "0.3.1": "2010-12-19T04:03:01.788Z", + "0.3.2": "2010-12-19T04:03:01.788Z", + "0.3.3": "2010-12-19T04:03:01.788Z", + "0.4.0": "2010-12-19T04:03:01.788Z", + "0.4.1": "2010-12-19T04:03:01.788Z", + "0.4.2": "2010-12-28T16:22:51.173Z", + "0.4.3": "2011-01-11T17:40:33.576Z", + "0.5.0": "2011-03-14T20:38:13.421Z", + "0.5.1": "2011-03-16T18:20:03.710Z", + "0.5.2": "2011-04-09T16:27:20.704Z", + "0.5.3": "2011-04-11T21:42:42.719Z", + "0.5.4": "2011-04-20T15:49:20.920Z", + "0.6.0": "2011-06-04T17:37:49.060Z", + "0.7.0": "2011-07-12T16:21:18.977Z", + "0.7.1": "2011-08-25T18:49:25.490Z", + "0.7.2": "2011-08-30T18:02:36.835Z", + "0.7.3": "2011-09-14T16:51:35.126Z", + "0.8.0": "2011-10-28T20:54:37.711Z", + "0.8.1": "2011-10-31T20:56:02.388Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/learnboost/node-canvas.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/canvas/0.0.1", + "0.0.2": "http://registry.npmjs.org/canvas/0.0.2", + "0.0.3": "http://registry.npmjs.org/canvas/0.0.3", + "0.0.4": "http://registry.npmjs.org/canvas/0.0.4", + "0.0.5": "http://registry.npmjs.org/canvas/0.0.5", + "0.0.6": "http://registry.npmjs.org/canvas/0.0.6", + "0.0.7": "http://registry.npmjs.org/canvas/0.0.7", + "0.0.8": "http://registry.npmjs.org/canvas/0.0.8", + "0.1.0": "http://registry.npmjs.org/canvas/0.1.0", + "0.2.0": "http://registry.npmjs.org/canvas/0.2.0", + "0.2.1": "http://registry.npmjs.org/canvas/0.2.1", + "0.3.0": "http://registry.npmjs.org/canvas/0.3.0", + "0.3.1": "http://registry.npmjs.org/canvas/0.3.1", + "0.3.2": "http://registry.npmjs.org/canvas/0.3.2", + "0.3.3": "http://registry.npmjs.org/canvas/0.3.3", + "0.4.0": "http://registry.npmjs.org/canvas/0.4.0", + "0.4.1": "http://registry.npmjs.org/canvas/0.4.1", + "0.4.2": "http://registry.npmjs.org/canvas/0.4.2", + "0.4.3": "http://registry.npmjs.org/canvas/0.4.3", + "0.5.0": "http://registry.npmjs.org/canvas/0.5.0", + "0.5.1": "http://registry.npmjs.org/canvas/0.5.1", + "0.5.2": "http://registry.npmjs.org/canvas/0.5.2", + "0.5.3": "http://registry.npmjs.org/canvas/0.5.3", + "0.5.4": "http://registry.npmjs.org/canvas/0.5.4", + "0.6.0": "http://registry.npmjs.org/canvas/0.6.0", + "0.7.0": "http://registry.npmjs.org/canvas/0.7.0", + "0.7.1": "http://registry.npmjs.org/canvas/0.7.1", + "0.7.2": "http://registry.npmjs.org/canvas/0.7.2", + "0.7.3": "http://registry.npmjs.org/canvas/0.7.3", + "0.8.0": "http://registry.npmjs.org/canvas/0.8.0", + "0.8.1": "http://registry.npmjs.org/canvas/0.8.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/canvas/-/canvas-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/canvas/-/canvas-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/canvas/-/canvas-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://registry.npmjs.org/canvas/-/canvas-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://registry.npmjs.org/canvas/-/canvas-0.0.5.tgz" + }, + "0.0.6": { + "tarball": "http://registry.npmjs.org/canvas/-/canvas-0.0.6.tgz" + }, + "0.0.7": { + "tarball": "http://registry.npmjs.org/canvas/-/canvas-0.0.7.tgz" + }, + "0.0.8": { + "tarball": "http://registry.npmjs.org/canvas/-/canvas-0.0.8.tgz" + }, + "0.1.0": { + "tarball": "http://registry.npmjs.org/canvas/-/canvas-0.1.0.tgz" + }, + "0.2.0": { + "tarball": "http://registry.npmjs.org/canvas/-/canvas-0.2.0.tgz" + }, + "0.2.1": { + "tarball": "http://registry.npmjs.org/canvas/-/canvas-0.2.1.tgz" + }, + "0.3.0": { + "tarball": "http://registry.npmjs.org/canvas/-/canvas-0.3.0.tgz" + }, + "0.3.1": { + "tarball": "http://registry.npmjs.org/canvas/-/canvas-0.3.1.tgz" + }, + "0.3.2": { + "tarball": "http://registry.npmjs.org/canvas/-/canvas-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "bf30e7e9b5cee350ae7ea02e529f1254652d0bcd", + "tarball": "http://registry.npmjs.org/canvas/-/canvas-0.3.3.tgz" + }, + "0.4.0": { + "shasum": "2af41056fb6e5542df6cae73cbc2df73c7e9025d", + "tarball": "http://registry.npmjs.org/canvas/-/canvas-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "eae4e1a9c6962e8957d1ce38ea9dd119bcaffcca", + "tarball": "http://registry.npmjs.org/canvas/-/canvas-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "7c972db3c9a1bb2b6cce9b46cd202a1ba02f60a4", + "tarball": "http://registry.npmjs.org/canvas/-/canvas-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "a3d2420264ba3955d86fe0cbea91615659cea8aa", + "tarball": "http://registry.npmjs.org/canvas/-/canvas-0.4.3.tgz" + }, + "0.5.0": { + "shasum": "09b2147e647841d215e5531ed4ace8c74a26f464", + "tarball": "http://registry.npmjs.org/canvas/-/canvas-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "c4f9cd3e0f3ed247e3f420f09f8b56b09801809b", + "tarball": "http://registry.npmjs.org/canvas/-/canvas-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "103b43ecdc6ebc44ecfc3277142dde7bae8d0c04", + "tarball": "http://registry.npmjs.org/canvas/-/canvas-0.5.2.tgz" + }, + "0.5.3": { + "shasum": "c981a657aa7a9310b41e9f9fd699fbe0e4c40808", + "tarball": "http://registry.npmjs.org/canvas/-/canvas-0.5.3.tgz" + }, + "0.5.4": { + "shasum": "a7426534d04dece04e071bca896b0bcdf191447d", + "tarball": "http://registry.npmjs.org/canvas/-/canvas-0.5.4.tgz" + }, + "0.6.0": { + "shasum": "fb5168b0dcfefc3a32114ebbaed1cb875eb9c998", + "tarball": "http://registry.npmjs.org/canvas/-/canvas-0.6.0.tgz" + }, + "0.7.0": { + "shasum": "110610f1046027222d24b149962c6987f841ed87", + "tarball": "http://registry.npmjs.org/canvas/-/canvas-0.7.0.tgz" + }, + "0.7.1": { + "shasum": "38f6e79e02b08e8c444044aa3f1fa4c2a5a1d83b", + "tarball": "http://registry.npmjs.org/canvas/-/canvas-0.7.1.tgz" + }, + "0.7.2": { + "shasum": "9790ce684699b4e45e7e6d664d4f8144819f5174", + "tarball": "http://registry.npmjs.org/canvas/-/canvas-0.7.2.tgz" + }, + "0.7.3": { + "shasum": "638e3c5596d2fb90bbfb891674a1bc898a376ff1", + "tarball": "http://registry.npmjs.org/canvas/-/canvas-0.7.3.tgz" + }, + "0.8.0": { + "shasum": "615232dab91b0b18aa39f37ebe9324d412f36890", + "tarball": "http://registry.npmjs.org/canvas/-/canvas-0.8.0.tgz" + }, + "0.8.1": { + "shasum": "dec66cb9ec513ca0d3a864cd19e4609b8367a1d7", + "tarball": "http://registry.npmjs.org/canvas/-/canvas-0.8.1.tgz" + } + }, + "keywords": [ + "canvas", + "graphic", + "graphics", + "pixman", + "cairo" + ], + "url": "http://registry.npmjs.org/canvas/" + }, + "canvasutil": { + "name": "canvasutil", + "description": "Pixel transformations and processing for canvas", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "soldair", + "email": "soldair@gmail.com" + } + ], + "time": { + "modified": "2011-05-06T02:47:23.224Z", + "created": "2011-04-26T09:14:50.207Z", + "0.0.0": "2011-04-26T09:14:50.534Z", + "0.0.1": "2011-05-01T10:54:29.105Z", + "0.0.2": "2011-05-06T02:47:23.224Z" + }, + "author": { + "name": "Ryan Day", + "email": "soldair@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/soldair/node-canvasutil.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/canvasutil/0.0.0", + "0.0.1": "http://registry.npmjs.org/canvasutil/0.0.1", + "0.0.2": "http://registry.npmjs.org/canvasutil/0.0.2" + }, + "dist": { + "0.0.0": { + "shasum": "29ea47ddf0b6770193f5b4bd622f070d8357e87b", + "tarball": "http://registry.npmjs.org/canvasutil/-/canvasutil-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "c9c389ddbb3b5e7e3b2a39d1fb3f179216ecf46b", + "tarball": "http://registry.npmjs.org/canvasutil/-/canvasutil-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "76049fcd4a1939fdc1ca61326eed748cc18ff50f", + "tarball": "http://registry.npmjs.org/canvasutil/-/canvasutil-0.0.2.tgz" + } + }, + "keywords": [ + "canvas", + "grayscale", + "transform" + ], + "url": "http://registry.npmjs.org/canvasutil/" + }, + "capitalize": { + "name": "capitalize", + "description": "capitalizes and lowercases strings (example - No Production!) install scripts", + "dist-tags": { + "latest": "0.3.4" + }, + "readme": null, + "maintainers": [ + { + "name": "robkuz", + "email": "robert@robkuz.com" + } + ], + "time": { + "modified": "2011-12-01T19:14:15.859Z", + "created": "2011-12-01T13:45:55.356Z", + "0.1.0": "2011-12-01T13:45:57.087Z", + "0.2.0": "2011-12-01T14:07:26.875Z", + "0.2.1": "2011-12-01T14:22:09.016Z", + "0.2.2": "2011-12-01T14:26:38.008Z", + "0.2.3": "2011-12-01T14:33:12.665Z", + "0.2.5": "2011-12-01T14:44:40.040Z", + "0.2.6": "2011-12-01T14:46:53.666Z", + "0.2.7": "2011-12-01T14:48:48.957Z", + "0.2.8": "2011-12-01T14:51:57.839Z", + "0.2.9": "2011-12-01T14:53:02.011Z", + "0.2.10": "2011-12-01T14:54:57.271Z", + "0.2.11": "2011-12-01T14:56:52.024Z", + "0.3.0": "2011-12-01T15:24:47.488Z", + "0.3.1": "2011-12-01T15:30:49.608Z", + "0.3.2": "2011-12-01T16:50:30.093Z", + "0.3.3": "2011-12-01T19:07:21.075Z", + "0.3.4": "2011-12-01T19:14:15.859Z" + }, + "author": { + "name": "robert kuzelj", + "email": "robert@robkuz.com", + "url": "www.robkuz.com" + }, + "repository": { + "url": "" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/capitalize/0.1.0", + "0.2.0": "http://registry.npmjs.org/capitalize/0.2.0", + "0.2.1": "http://registry.npmjs.org/capitalize/0.2.1", + "0.2.2": "http://registry.npmjs.org/capitalize/0.2.2", + "0.2.3": "http://registry.npmjs.org/capitalize/0.2.3", + "0.2.5": "http://registry.npmjs.org/capitalize/0.2.5", + "0.2.6": "http://registry.npmjs.org/capitalize/0.2.6", + "0.2.7": "http://registry.npmjs.org/capitalize/0.2.7", + "0.2.8": "http://registry.npmjs.org/capitalize/0.2.8", + "0.2.9": "http://registry.npmjs.org/capitalize/0.2.9", + "0.2.10": "http://registry.npmjs.org/capitalize/0.2.10", + "0.2.11": "http://registry.npmjs.org/capitalize/0.2.11", + "0.3.0": "http://registry.npmjs.org/capitalize/0.3.0", + "0.3.1": "http://registry.npmjs.org/capitalize/0.3.1", + "0.3.2": "http://registry.npmjs.org/capitalize/0.3.2", + "0.3.3": "http://registry.npmjs.org/capitalize/0.3.3", + "0.3.4": "http://registry.npmjs.org/capitalize/0.3.4" + }, + "dist": { + "0.1.0": { + "shasum": "eed68d973c4d531d5b582d1d83bfef48462d05f5", + "tarball": "http://registry.npmjs.org/capitalize/-/capitalize-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "211dd3c93e6a9577b048fb6c1b2094d04e7b81fa", + "tarball": "http://registry.npmjs.org/capitalize/-/capitalize-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "ba680f8c7164c5b858ec9843466f2b30d47d405b", + "tarball": "http://registry.npmjs.org/capitalize/-/capitalize-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "147e658a4a5d5a815e0323fd67d078d6eb6d2d09", + "tarball": "http://registry.npmjs.org/capitalize/-/capitalize-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "b13041674af8ed7573cfdc635c7c1b340e7f71c8", + "tarball": "http://registry.npmjs.org/capitalize/-/capitalize-0.2.3.tgz" + }, + "0.2.5": { + "shasum": "4186df4e61e655097979aa85817e072d0d21fa61", + "tarball": "http://registry.npmjs.org/capitalize/-/capitalize-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "4aabd005ecbd16b7f30b33873c6907352f69645b", + "tarball": "http://registry.npmjs.org/capitalize/-/capitalize-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "02acc44e4273f4f2624289bac3569d1ec973edc2", + "tarball": "http://registry.npmjs.org/capitalize/-/capitalize-0.2.7.tgz" + }, + "0.2.8": { + "shasum": "ddb96601933136c16d7b95141128075fd31f03aa", + "tarball": "http://registry.npmjs.org/capitalize/-/capitalize-0.2.8.tgz" + }, + "0.2.9": { + "shasum": "728530b7d1ef64c732afdb78e5aefe29a1737122", + "tarball": "http://registry.npmjs.org/capitalize/-/capitalize-0.2.9.tgz" + }, + "0.2.10": { + "shasum": "ef486a0752c389d4d882fad96f4160ed4c4cb9b7", + "tarball": "http://registry.npmjs.org/capitalize/-/capitalize-0.2.10.tgz" + }, + "0.2.11": { + "shasum": "43100f81e4cd58184bab4cc988c240333ad0f448", + "tarball": "http://registry.npmjs.org/capitalize/-/capitalize-0.2.11.tgz" + }, + "0.3.0": { + "shasum": "7cbd9804dde9daabbafc61e564a101e41fa922a2", + "tarball": "http://registry.npmjs.org/capitalize/-/capitalize-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "08188c81ca5f21ede82e3b6faab3fd48c56275a6", + "tarball": "http://registry.npmjs.org/capitalize/-/capitalize-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "1169a71918affe58344be3cd9b3c6953d372d155", + "tarball": "http://registry.npmjs.org/capitalize/-/capitalize-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "550a7a5e7949e5c4781e2201c202da93a153f5be", + "tarball": "http://registry.npmjs.org/capitalize/-/capitalize-0.3.3.tgz" + }, + "0.3.4": { + "shasum": "2d5a1ab62663debf10d6c36e0d4823dac81865d3", + "tarball": "http://registry.npmjs.org/capitalize/-/capitalize-0.3.4.tgz" + } + }, + "url": "http://registry.npmjs.org/capitalize/" + }, + "capoo": { + "name": "capoo", + "description": "Run capistrano tasks the pretty way", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "saschagehlich", + "email": "sascha@gehlich.us" + } + ], + "time": { + "modified": "2011-03-11T17:38:20.624Z", + "created": "2011-01-16T22:09:52.776Z", + "0.0.1": "2011-01-16T22:09:53.073Z", + "0.0.2": "2011-03-11T17:36:17.674Z" + }, + "author": { + "name": "Sascha Gehlich", + "email": "contact@filshmedia.net", + "url": "http://www.filshmedia.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/saschagehlich/capoo.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/capoo/0.0.1", + "0.0.2": "http://registry.npmjs.org/capoo/0.0.2" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/capoo/-/capoo-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "efa33189a53e10c2abeffc00b13298d4f683b9bb", + "tarball": "http://registry.npmjs.org/capoo/-/capoo-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/capoo/" + }, + "cappuccino": { + "name": "cappuccino", + "description": "hot mocking library on jasmine and node.js", + "dist-tags": { + "latest": "0.0.13" + }, + "maintainers": [ + { + "name": "functioncallback", + "email": "functioncallback@gmail.com" + } + ], + "time": { + "modified": "2011-11-02T23:58:21.189Z", + "created": "2011-10-23T05:27:18.239Z", + "0.0.11": "2011-10-23T05:27:20.349Z", + "0.0.12": "2011-10-23T06:24:09.308Z", + "0.0.13": "2011-11-02T23:58:21.189Z" + }, + "author": { + "name": "Wagner Montalvao Camarao", + "email": "functioncallback@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/functioncallback/cappuccino.git" + }, + "versions": { + "0.0.11": "http://registry.npmjs.org/cappuccino/0.0.11", + "0.0.12": "http://registry.npmjs.org/cappuccino/0.0.12", + "0.0.13": "http://registry.npmjs.org/cappuccino/0.0.13" + }, + "dist": { + "0.0.11": { + "shasum": "bd0911973daa3acad933b2dd4d7eed889012d999", + "tarball": "http://registry.npmjs.org/cappuccino/-/cappuccino-0.0.11.tgz" + }, + "0.0.12": { + "shasum": "0b69983bf6d65dd8353c017113f52c629ce35235", + "tarball": "http://registry.npmjs.org/cappuccino/-/cappuccino-0.0.12.tgz" + }, + "0.0.13": { + "shasum": "c3f3b047d9b683be6e4724df70c03e91be609832", + "tarball": "http://registry.npmjs.org/cappuccino/-/cappuccino-0.0.13.tgz" + } + }, + "url": "http://registry.npmjs.org/cappuccino/" + }, + "capsela-util": { + "name": "capsela-util", + "description": "Assorted utilities required by most Capsela modules", + "dist-tags": { + "latest": "1.0.0" + }, + "readme": "Generally helpful utilities required by Capsela\n===\n\n### To run the tests:\n\n nodeunit testing/tests\n\nResources\n---\n - [The Wiki](https://github.com/sitelier/capsela/wiki)\n", + "maintainers": [ + { + "name": "sitelier", + "email": "chris.osborn@sitelier.com" + } + ], + "time": { + "modified": "2011-12-07T00:26:26.681Z", + "created": "2011-12-07T00:26:25.637Z", + "1.0.0": "2011-12-07T00:26:26.681Z" + }, + "author": { + "name": "Seth Purcell", + "email": "seth.purcell@sitelier.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Sitelier/capsela-util.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/capsela-util/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "cebcc4160a5d8f4205250d2bfbe8ea45411b14e9", + "tarball": "http://registry.npmjs.org/capsela-util/-/capsela-util-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/capsela-util/" + }, + "capsule": { + "name": "capsule", + "description": "Realtime web framework for Backbone.js and Socket.io", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "henrikjoreteg", + "email": "hjoreteg@gmail.com" + } + ], + "time": { + "modified": "2011-06-27T05:34:45.054Z", + "created": "2011-05-01T14:58:44.581Z", + "0.1.2": "2011-05-01T14:58:44.962Z", + "0.1.3": "2011-05-02T06:05:59.031Z", + "0.1.4": "2011-05-02T06:10:37.871Z", + "0.1.5": "2011-05-03T05:28:00.964Z", + "0.1.6": "2011-05-11T03:53:03.857Z", + "0.1.7": "2011-05-19T15:21:27.528Z", + "0.2.0": "2011-05-23T05:14:37.301Z", + "0.2.1": "2011-05-23T19:59:02.345Z", + "0.2.2": "2011-06-27T05:34:45.054Z" + }, + "author": { + "name": "Henrik Joreteg", + "email": "hjoreteg@gmail.com", + "url": "http://andyet.net/team/henrik" + }, + "repository": { + "type": "git", + "url": "git@github.com:andyet/Capsule.git" + }, + "versions": { + "0.1.2": "http://registry.npmjs.org/capsule/0.1.2", + "0.1.3": "http://registry.npmjs.org/capsule/0.1.3", + "0.1.4": "http://registry.npmjs.org/capsule/0.1.4", + "0.1.5": "http://registry.npmjs.org/capsule/0.1.5", + "0.1.6": "http://registry.npmjs.org/capsule/0.1.6", + "0.1.7": "http://registry.npmjs.org/capsule/0.1.7", + "0.2.0": "http://registry.npmjs.org/capsule/0.2.0", + "0.2.1": "http://registry.npmjs.org/capsule/0.2.1", + "0.2.2": "http://registry.npmjs.org/capsule/0.2.2" + }, + "dist": { + "0.1.2": { + "shasum": "6e52af6ab9ed2887d9fcb66c19b8443169c590d9", + "tarball": "http://registry.npmjs.org/capsule/-/capsule-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "c81afe527f8c24273b72120f61734d4039204110", + "tarball": "http://registry.npmjs.org/capsule/-/capsule-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "53e74e31d19e1e0e24fc95d026f6911c37ffa1fc", + "tarball": "http://registry.npmjs.org/capsule/-/capsule-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "38e78210abfdcf49f9827b2703e994a4f8bd9a93", + "tarball": "http://registry.npmjs.org/capsule/-/capsule-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "2fab06d046d5496b2e271800a05548e2e7293915", + "tarball": "http://registry.npmjs.org/capsule/-/capsule-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "f246833f07fa11ed94b52574f20c027b37d6d018", + "tarball": "http://registry.npmjs.org/capsule/-/capsule-0.1.7.tgz" + }, + "0.2.0": { + "shasum": "2c6d71a99d7fe44c98986e9c8930b40f5a9ac2b5", + "tarball": "http://registry.npmjs.org/capsule/-/capsule-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "9413f345d7cccf9b0a7682bc9a6f1db816dfaa6e", + "tarball": "http://registry.npmjs.org/capsule/-/capsule-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "ab18fb32e016ab224f7a74212469d97ef03aa413", + "tarball": "http://registry.npmjs.org/capsule/-/capsule-0.2.2.tgz" + } + }, + "keywords": [ + "realtime", + "backbone", + "socket.io", + "websocket" + ], + "url": "http://registry.npmjs.org/capsule/" + }, + "capt": { + "name": "capt", + "description": "Command line tool for creating backbone.js applications with coffeescript", + "dist-tags": { + "latest": "0.5.5" + }, + "maintainers": [ + { + "name": "bnolan", + "email": "ben@nolanconsul.com" + } + ], + "time": { + "modified": "2011-05-26T08:43:27.447Z", + "created": "2011-04-18T02:52:29.830Z", + "0.5.0": "2011-04-18T02:52:30.686Z", + "0.5.1": "2011-04-21T05:09:48.669Z", + "0.5.2": "2011-04-21T05:25:56.198Z", + "0.5.3": "2011-04-21T05:44:18.023Z", + "0.5.4": "2011-05-04T22:40:45.220Z", + "0.5.5": "2011-05-26T08:43:27.447Z" + }, + "author": { + "name": "Ben Nolan", + "email": "ben@nolanconsul.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/bnolan/capt.git" + }, + "versions": { + "0.5.0": "http://registry.npmjs.org/capt/0.5.0", + "0.5.1": "http://registry.npmjs.org/capt/0.5.1", + "0.5.2": "http://registry.npmjs.org/capt/0.5.2", + "0.5.3": "http://registry.npmjs.org/capt/0.5.3", + "0.5.4": "http://registry.npmjs.org/capt/0.5.4", + "0.5.5": "http://registry.npmjs.org/capt/0.5.5" + }, + "dist": { + "0.5.0": { + "shasum": "c1e4d2da8c918daef6f19a959942ca26837c10b4", + "tarball": "http://registry.npmjs.org/capt/-/capt-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "4fa681d0eb56dc23f4ad27425e305259481d295d", + "tarball": "http://registry.npmjs.org/capt/-/capt-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "8ba781f0f284d7cb1e8ebf2ee5242e92d5d1c266", + "tarball": "http://registry.npmjs.org/capt/-/capt-0.5.2.tgz" + }, + "0.5.3": { + "shasum": "b4168bbe74e525e8798ae125813b5ea5a632926c", + "tarball": "http://registry.npmjs.org/capt/-/capt-0.5.3.tgz" + }, + "0.5.4": { + "shasum": "cb0218c77226c3c45ea655724e328db77a5a0f75", + "tarball": "http://registry.npmjs.org/capt/-/capt-0.5.4.tgz" + }, + "0.5.5": { + "shasum": "187f5801c2f41968e039ed11e773115e02112e47", + "tarball": "http://registry.npmjs.org/capt/-/capt-0.5.5.tgz" + } + }, + "keywords": [ + "jst", + "templates", + "rest", + "backbone", + "jquery", + "zepto", + "framework", + "coffeescript", + "less", + "underscore" + ], + "url": "http://registry.npmjs.org/capt/" + }, + "carena": { + "name": "carena", + "description": "", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "tmpvar", + "email": "tmpvar@gmail.com" + } + ], + "time": { + "modified": "2010-12-21T05:46:36.593Z", + "created": "2010-12-21T05:46:36.593Z", + "0.1.0": "2010-12-21T05:46:36.593Z", + "0.1.1": "2010-12-21T05:46:36.593Z", + "0.1.2": "2010-12-21T05:46:36.593Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/carena/0.1.0", + "0.1.1": "http://registry.npmjs.org/carena/0.1.1", + "0.1.2": "http://registry.npmjs.org/carena/0.1.2" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/carena/-/carena-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://packages:5984/carena/-/carena-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "8587a705ebd0880715632c049db16ba8b8772cee", + "tarball": "http://registry.npmjs.org/carena/-/carena-0.1.2.tgz" + } + }, + "keywords": [ + "" + ], + "url": "http://registry.npmjs.org/carena/" + }, + "carrier": { + "name": "carrier", + "description": "Evented stream line reader for node.js", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "pgte", + "email": "pedro.teixeira@gmail.com" + } + ], + "author": { + "name": "Pedro Teixeira", + "email": "pedro.teixeira@gmail.com", + "url": "http://www.metaduck.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/pgte/carrier.git" + }, + "time": { + "modified": "2011-09-15T22:09:01.521Z", + "created": "2011-01-10T13:56:26.206Z", + "0.0.1": "2011-01-10T13:56:26.206Z", + "0.0.2": "2011-01-10T13:56:26.206Z", + "0.0.3": "2011-01-10T13:56:26.206Z", + "0.0.4": "2011-01-10T13:56:26.206Z", + "0.1.0": "2011-01-10T13:56:26.206Z", + "0.1.1": "2011-02-18T11:02:23.015Z", + "0.1.2": "2011-06-28T09:07:35.128Z", + "0.1.3": "2011-09-15T22:09:01.521Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/carrier/0.0.1", + "0.0.2": "http://registry.npmjs.org/carrier/0.0.2", + "0.0.3": "http://registry.npmjs.org/carrier/0.0.3", + "0.0.4": "http://registry.npmjs.org/carrier/0.0.4", + "0.1.0": "http://registry.npmjs.org/carrier/0.1.0", + "0.1.1": "http://registry.npmjs.org/carrier/0.1.1", + "0.1.2": "http://registry.npmjs.org/carrier/0.1.2", + "0.1.3": "http://registry.npmjs.org/carrier/0.1.3" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/carrier/-/carrier-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/carrier/-/carrier-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/carrier/-/carrier-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://registry.npmjs.org/carrier/-/carrier@0.0.4.tgz" + }, + "0.1.0": { + "shasum": "3bb71b5d0552dd0e639424f51d20bc13b0a43702", + "tarball": "http://registry.npmjs.org/carrier/-/carrier-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "9f1791dfeae0281ce8107ce47f194767bd9ee17f", + "tarball": "http://registry.npmjs.org/carrier/-/carrier-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "e540eb902a59c07ee016bb50c9d8320ed7d90657", + "tarball": "http://registry.npmjs.org/carrier/-/carrier-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "60ee8f8307bcadd8f4c1d2a48a2ea07c14af5aac", + "tarball": "http://registry.npmjs.org/carrier/-/carrier-0.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/carrier/" + }, + "carrot2": { + "name": "carrot2", + "description": "Carrot2 Document Clustering Server implementation for Node.js", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "tllabs", + "email": "labs@teehanlax.com" + } + ], + "time": { + "modified": "2011-10-20T15:43:13.481Z", + "created": "2011-10-20T15:43:12.912Z", + "0.0.1": "2011-10-20T15:43:13.481Z" + }, + "author": { + "name": "TeehanLax" + }, + "repository": { + "type": "git", + "url": "git://github.com/TeehanLax/node-carrot2.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/carrot2/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "2cfe2779a06f9240517a7c0aa67b4acdd22a5369", + "tarball": "http://registry.npmjs.org/carrot2/-/carrot2-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/carrot2/" + }, + "cart": { + "name": "cart", + "description": "Connect session store using supermarket", + "dist-tags": { + "latest": "1.0.3" + }, + "maintainers": [ + { + "name": "pkrumins", + "email": "peteris.krumins@gmail.com" + } + ], + "repository": { + "type": "git", + "url": "http://github.com/pkrumins/supermarket-cart.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/cart/1.0.0", + "1.0.1": "http://registry.npmjs.org/cart/1.0.1", + "1.0.2": "http://registry.npmjs.org/cart/1.0.2", + "1.0.3": "http://registry.npmjs.org/cart/1.0.3" + }, + "dist": { + "1.0.0": { + "tarball": "http://packages:5984/cart/-/cart-1.0.0.tgz" + }, + "1.0.1": { + "tarball": "http://packages:5984/cart/-/cart-1.0.1.tgz" + }, + "1.0.2": { + "tarball": "http://packages:5984/cart/-/cart-1.0.2.tgz" + }, + "1.0.3": { + "tarball": "http://packages:5984/cart/-/cart-1.0.3.tgz" + } + }, + "keywords": [ + "connect", + "expresso", + "http sessions" + ], + "url": "http://registry.npmjs.org/cart/" + }, + "carto": { + "name": "carto", + "description": "Mapnik Stylesheet Compiler", + "dist-tags": { + "latest": "0.4.5" + }, + "maintainers": [ + { + "name": "tmcw", + "email": "macwright@gmail.com" + }, + { + "name": "willwhite", + "email": "will@developmentseed.org" + }, + { + "name": "yhahn", + "email": "young@developmentseed.org" + } + ], + "time": { + "modified": "2011-12-09T23:03:40.252Z", + "created": "2011-02-08T00:56:32.331Z", + "0.1.0": "2011-02-08T00:56:32.479Z", + "0.1.1": "2011-02-17T18:19:35.423Z", + "0.1.2": "2011-03-02T19:22:44.627Z", + "0.1.3": "2011-03-02T20:26:58.358Z", + "0.1.4": "2011-04-29T20:09:50.055Z", + "0.1.5": "2011-05-03T15:10:33.860Z", + "0.1.9": "2011-05-18T15:33:40.670Z", + "0.1.6": "2011-05-25T19:48:11.795Z", + "0.1.7": "2011-05-25T19:50:49.545Z", + "0.1.8": "2011-05-25T19:51:33.295Z", + "0.1.10": "2011-05-25T19:52:28.231Z", + "0.1.11": "2011-05-25T19:52:50.164Z", + "0.1.12": "2011-05-25T19:52:56.593Z", + "0.1.13": "2011-05-26T21:23:06.948Z", + "0.1.14": "2011-06-01T14:20:17.085Z", + "0.1.15": "2011-07-20T17:57:55.207Z", + "0.2.0": "2011-07-25T19:41:29.705Z", + "0.2.1": "2011-07-28T18:44:04.164Z", + "0.2.2": "2011-08-03T16:09:26.877Z", + "0.2.3": "2011-08-04T21:20:30.265Z", + "0.2.4": "2011-09-07T15:44:53.870Z", + "0.3.0": "2011-10-13T15:48:50.001Z", + "0.4.0": "2011-10-19T18:04:02.245Z", + "0.4.1": "2011-10-19T20:11:52.912Z", + "0.4.2": "2011-10-20T08:44:54.487Z", + "0.4.3": "2011-10-31T19:51:00.290Z", + "0.4.4": "2011-11-29T14:48:31.598Z", + "0.4.5": "2011-12-09T23:03:40.252Z" + }, + "author": { + "name": "MapBox", + "email": "info@mapbox.com", + "url": "http://mapbox.com/" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/carto/0.1.0", + "0.1.1": "http://registry.npmjs.org/carto/0.1.1", + "0.1.2": "http://registry.npmjs.org/carto/0.1.2", + "0.1.3": "http://registry.npmjs.org/carto/0.1.3", + "0.1.4": "http://registry.npmjs.org/carto/0.1.4", + "0.1.5": "http://registry.npmjs.org/carto/0.1.5", + "0.1.9": "http://registry.npmjs.org/carto/0.1.9", + "0.1.6": "http://registry.npmjs.org/carto/0.1.6", + "0.1.7": "http://registry.npmjs.org/carto/0.1.7", + "0.1.8": "http://registry.npmjs.org/carto/0.1.8", + "0.1.10": "http://registry.npmjs.org/carto/0.1.10", + "0.1.11": "http://registry.npmjs.org/carto/0.1.11", + "0.1.12": "http://registry.npmjs.org/carto/0.1.12", + "0.1.13": "http://registry.npmjs.org/carto/0.1.13", + "0.1.14": "http://registry.npmjs.org/carto/0.1.14", + "0.1.15": "http://registry.npmjs.org/carto/0.1.15", + "0.2.0": "http://registry.npmjs.org/carto/0.2.0", + "0.2.1": "http://registry.npmjs.org/carto/0.2.1", + "0.2.2": "http://registry.npmjs.org/carto/0.2.2", + "0.2.3": "http://registry.npmjs.org/carto/0.2.3", + "0.2.4": "http://registry.npmjs.org/carto/0.2.4", + "0.3.0": "http://registry.npmjs.org/carto/0.3.0", + "0.4.0": "http://registry.npmjs.org/carto/0.4.0", + "0.4.1": "http://registry.npmjs.org/carto/0.4.1", + "0.4.2": "http://registry.npmjs.org/carto/0.4.2", + "0.4.3": "http://registry.npmjs.org/carto/0.4.3", + "0.4.4": "http://registry.npmjs.org/carto/0.4.4", + "0.4.5": "http://registry.npmjs.org/carto/0.4.5" + }, + "dist": { + "0.1.0": { + "shasum": "b56545cc8566c5dbf86b48e54fda10b8ee5323fd", + "tarball": "http://registry.npmjs.org/carto/-/carto-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "b6eedb5825843145aefe968eb668173682e0f78b", + "tarball": "http://registry.npmjs.org/carto/-/carto-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "a57a2a9d91eacdcc1af35e8da71ef9cf9e8389f3", + "tarball": "http://registry.npmjs.org/carto/-/carto-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "b7c77513bf788d9c827ac35cacebfd29fe6e52cc", + "tarball": "http://registry.npmjs.org/carto/-/carto-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "ee3ebc737aedfa52c6bea647d8abcb1f75cd172e", + "tarball": "http://registry.npmjs.org/carto/-/carto-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "6c0ddde0d4b5c2c57f3e72a7e8baee8ebaa33945", + "tarball": "http://registry.npmjs.org/carto/-/carto-0.1.5.tgz" + }, + "0.1.9": { + "shasum": "936539345406c3a00ef711ba3e35f8c8bb4579c1", + "tarball": "http://registry.npmjs.org/carto/-/carto-0.1.9.tgz" + }, + "0.1.6": { + "shasum": "991419f04b009af123b42543dfb2d920e1779f54", + "tarball": "http://registry.npmjs.org/carto/-/carto-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "abe8a0a82c9d58df23e1de88c9a88c7f110969fd", + "tarball": "http://registry.npmjs.org/carto/-/carto-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "3ac61f8eff1da2189fa4833c1635e15778c3221a", + "tarball": "http://registry.npmjs.org/carto/-/carto-0.1.8.tgz" + }, + "0.1.10": { + "shasum": "f9b7cf90d2e36973e98baa04e372acbc17ede0b7", + "tarball": "http://registry.npmjs.org/carto/-/carto-0.1.10.tgz" + }, + "0.1.11": { + "shasum": "3273c747332936000f80aa883db441f84a78791e", + "tarball": "http://registry.npmjs.org/carto/-/carto-0.1.11.tgz" + }, + "0.1.12": { + "shasum": "f65ab42c813e0e6dc8e51f7a0e3bbb1f5ed446ce", + "tarball": "http://registry.npmjs.org/carto/-/carto-0.1.12.tgz" + }, + "0.1.13": { + "shasum": "d5ee4105069751ec6ab317ed623e26d948732e1c", + "tarball": "http://registry.npmjs.org/carto/-/carto-0.1.13.tgz" + }, + "0.1.14": { + "shasum": "9705015f52615f6d54e3e63e426399d1598b2b9e", + "tarball": "http://registry.npmjs.org/carto/-/carto-0.1.14.tgz" + }, + "0.1.15": { + "shasum": "3222ac57ae8ace653f5feb0d01fbff17160b51c7", + "tarball": "http://registry.npmjs.org/carto/-/carto-0.1.15.tgz" + }, + "0.2.0": { + "shasum": "af09c068242bf68bd553228a1e5b29190c37c853", + "tarball": "http://registry.npmjs.org/carto/-/carto-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "84e38391011b156cef9b57f2b1fb7f67d32877d5", + "tarball": "http://registry.npmjs.org/carto/-/carto-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "003cb3bb306ea7878c1c545ec58382f5df9282c8", + "tarball": "http://registry.npmjs.org/carto/-/carto-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "6a8f875d0c5069087d536d00e79202fe9878f3d2", + "tarball": "http://registry.npmjs.org/carto/-/carto-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "1e313a7eba7b29c308df2b17721ba5ea5254c0f7", + "tarball": "http://registry.npmjs.org/carto/-/carto-0.2.4.tgz" + }, + "0.3.0": { + "shasum": "bbcc203f9831cde4e58e23a493ebdaec20c5c2d6", + "tarball": "http://registry.npmjs.org/carto/-/carto-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "e36fadaf6ea9227097e4f63bd7ae4c655ffb6fd6", + "tarball": "http://registry.npmjs.org/carto/-/carto-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "64a275c2607c0a6cb154790c88073f7f02dfaaf6", + "tarball": "http://registry.npmjs.org/carto/-/carto-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "6b3a768bfb5887e1e77af1bc52f804a6d5de2413", + "tarball": "http://registry.npmjs.org/carto/-/carto-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "4f0ac4fd578cc5e25e31e5cd96c40e7ea76b302f", + "tarball": "http://registry.npmjs.org/carto/-/carto-0.4.3.tgz" + }, + "0.4.4": { + "shasum": "fd747018d4eb7ce01abdf5286e9a1c8f402c3ab9", + "tarball": "http://registry.npmjs.org/carto/-/carto-0.4.4.tgz" + }, + "0.4.5": { + "shasum": "9b321dc7b15fe1741a1a54f78373085d1d19114d", + "tarball": "http://registry.npmjs.org/carto/-/carto-0.4.5.tgz" + } + }, + "keywords": [ + "mapnik", + "maps", + "css", + "stylesheets" + ], + "url": "http://registry.npmjs.org/carto/" + }, + "caruso": { + "name": "caruso", + "description": "Unobtrusive templating and dom manipulations", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "bmavity", + "email": "brian@brianmavity.com" + } + ], + "time": { + "modified": "2011-11-26T16:37:32.665Z", + "created": "2011-05-03T16:26:38.351Z", + "0.0.1": "2011-05-03T16:26:38.815Z", + "0.0.2": "2011-05-20T15:54:26.295Z", + "0.1.0": "2011-11-26T16:37:32.665Z" + }, + "author": { + "name": "Brian Mavity", + "email": "brian@brianmavity.com", + "url": "http://www.brianmavity.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/bmavity/caruso.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/caruso/0.0.1", + "0.0.2": "http://registry.npmjs.org/caruso/0.0.2", + "0.1.0": "http://registry.npmjs.org/caruso/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "68afedb043d9933649c7d7b96d4989ad099a06a1", + "tarball": "http://registry.npmjs.org/caruso/-/caruso-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "39b94bcb1c91572303a3e66c2ba13be7bb06c211", + "tarball": "http://registry.npmjs.org/caruso/-/caruso-0.0.2.tgz" + }, + "0.1.0": { + "shasum": "b53cd1b61a89e01df829a707908dcdff0c9fcced", + "tarball": "http://registry.npmjs.org/caruso/-/caruso-0.1.0.tgz" + } + }, + "keywords": [ + "templating" + ], + "url": "http://registry.npmjs.org/caruso/" + }, + "cas": { + "name": "cas", + "description": "Central Authentication Service (CAS) client for Node.js", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "kcbanner", + "email": "kcbanner@gmail.com" + } + ], + "time": { + "modified": "2011-11-16T18:40:50.012Z", + "created": "2011-04-16T21:37:30.044Z", + "0.0.1": "2011-04-16T21:37:30.370Z", + "0.0.2": "2011-11-16T18:39:35.099Z", + "0.0.3": "2011-11-16T18:40:50.012Z" + }, + "author": { + "name": "Casey Banner", + "email": "kcbanner@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/cas/0.0.1", + "0.0.2": "http://registry.npmjs.org/cas/0.0.2", + "0.0.3": "http://registry.npmjs.org/cas/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "07100f535ec41f6f42e0bc594605c82c25db79cf", + "tarball": "http://registry.npmjs.org/cas/-/cas-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "cf77867f69067e19e278b0b3037a7807e9c7bc32", + "tarball": "http://registry.npmjs.org/cas/-/cas-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "5786959bca3c42cd0559ab1cdca04e86a4e91c3e", + "tarball": "http://registry.npmjs.org/cas/-/cas-0.0.3.tgz" + } + }, + "keywords": [ + "cas", + "central authentication service", + "auth", + "authentication", + "central", + "service" + ], + "url": "http://registry.npmjs.org/cas/" + }, + "cas-auth": { + "name": "cas-auth", + "description": "Node CAS Client", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "srobertson", + "email": "srobertson@codeit.com" + } + ], + "time": { + "modified": "2011-07-29T15:48:22.140Z", + "created": "2011-07-29T15:48:21.914Z", + "0.0.2": "2011-07-29T15:48:22.140Z" + }, + "author": { + "name": "Scott Robertson", + "email": "srobertson@codeit.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/srobertson/node-cas-client.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/cas-auth/0.0.2" + }, + "dist": { + "0.0.2": { + "shasum": "607074b25d6e8d68cab284476865e80c0efcbbe3", + "tarball": "http://registry.npmjs.org/cas-auth/-/cas-auth-0.0.2.tgz" + } + }, + "keywords": [ + "cas", + "exrpess", + "connect" + ], + "url": "http://registry.npmjs.org/cas-auth/" + }, + "cas-client": { + "name": "cas-client", + "description": "Middleware CAS Client for Express", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "hmcqueen", + "email": "hgm02a@acu.edu" + } + ], + "time": { + "modified": "2011-07-28T14:49:05.571Z", + "created": "2011-07-28T14:49:05.265Z", + "0.0.1": "2011-07-28T14:49:05.571Z" + }, + "author": { + "name": "Harv McQueen", + "email": "hgm02a@acu.edu" + }, + "repository": { + "type": "hg", + "url": "https://bitbucket.org/hmcqueen/node-cas-client" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/cas-client/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "0b64d0bc13c6e68a53c90248aaca2a6325a3bcfb", + "tarball": "http://registry.npmjs.org/cas-client/-/cas-client-0.0.1.tgz" + } + }, + "keywords": [ + "cas", + "client", + "jasig" + ], + "url": "http://registry.npmjs.org/cas-client/" + }, + "cashew": { + "name": "cashew", + "description": "ID generator", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "architectd", + "email": "craig.j.condon@gmail.com" + } + ], + "time": { + "modified": "2011-11-30T18:55:14.616Z", + "created": "2011-09-10T02:30:53.695Z", + "0.0.3": "2011-09-10T02:30:54.617Z", + "0.0.4": "2011-09-12T05:18:29.385Z", + "0.0.5": "2011-11-30T18:55:14.616Z" + }, + "author": { + "name": "Craig Condon" + }, + "repository": { + "type": "git", + "url": "git://github.com/crcn/cashew.git" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/cashew/0.0.3", + "0.0.4": "http://registry.npmjs.org/cashew/0.0.4", + "0.0.5": "http://registry.npmjs.org/cashew/0.0.5" + }, + "dist": { + "0.0.3": { + "shasum": "91e3296733c1929a295cce8c7e3a6c178be2b8c0", + "tarball": "http://registry.npmjs.org/cashew/-/cashew-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "ad781ba03d0b1c4b35f952e24577bc53e9b7192f", + "tarball": "http://registry.npmjs.org/cashew/-/cashew-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "a4f32dbcfc7761a939b0a286d9bdae720d699e8a", + "tarball": "http://registry.npmjs.org/cashew/-/cashew-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/cashew/" + }, + "Cashew": { + "name": "Cashew", + "description": "ID generator", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "architectd", + "email": "craig.j.condon@gmail.com" + } + ], + "time": { + "modified": "2011-09-08T19:41:04.979Z", + "created": "2011-09-05T20:51:30.466Z", + "0.0.1": "2011-09-05T20:51:31.549Z", + "0.0.2": "2011-09-08T19:34:19.691Z", + "0.0.3": "2011-09-08T19:41:04.979Z" + }, + "author": { + "name": "Craig Condon" + }, + "repository": { + "type": "git", + "url": "git://github.com/spiceapps/cashew.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/Cashew/0.0.1", + "0.0.2": "http://registry.npmjs.org/Cashew/0.0.2", + "0.0.3": "http://registry.npmjs.org/Cashew/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "8ae6ba704379e4c1765c3cf00dd7b715344356ba", + "tarball": "http://registry.npmjs.org/Cashew/-/Cashew-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c176b5d0cc5fb915a1c8a4736cd6b4cc72d5a77e", + "tarball": "http://registry.npmjs.org/Cashew/-/Cashew-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "832f74b50b72fbd064ed97f4da564c57e8434e59", + "tarball": "http://registry.npmjs.org/Cashew/-/Cashew-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/Cashew/" + }, + "cassandra": { + "name": "cassandra", + "description": "cassandra client for node.js", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "yukim", + "email": "mor.yuki@gmail.com" + } + ], + "time": { + "modified": "2011-02-28T17:16:36.939Z", + "created": "2011-02-28T17:16:36.203Z", + "0.1.0": "2011-02-28T17:16:36.939Z" + }, + "author": { + "name": "Yuki Morishita", + "email": "mor.yuki@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/cassandra/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "3861cedcc2a1d9b523a307638e534afc22058d1d", + "tarball": "http://registry.npmjs.org/cassandra/-/cassandra-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/cassandra/" + }, + "cassandra-client": { + "name": "cassandra-client", + "description": "Node.js CQL driver for Apache Cassandra", + "dist-tags": { + "latest": "0.5.1" + }, + "maintainers": [ + { + "name": "gdusbabek", + "email": "gdusbabek@gmail.com" + } + ], + "time": { + "modified": "2011-11-08T20:44:56.017Z", + "created": "2011-04-25T15:26:34.357Z", + "0.0.1": "2011-04-25T15:26:34.686Z", + "0.0.3": "2011-05-16T16:29:28.402Z", + "0.1.0": "2011-05-20T15:02:42.766Z", + "0.4.3": "2011-10-27T20:06:24.175Z", + "0.5.0": "2011-10-28T22:01:31.096Z", + "0.5.1": "2011-11-08T20:44:56.017Z" + }, + "author": { + "name": "Gary Dusbabek", + "email": "gdusbabek@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/racker/node-cassandra-client.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/cassandra-client/0.0.1", + "0.0.3": "http://registry.npmjs.org/cassandra-client/0.0.3", + "0.1.0": "http://registry.npmjs.org/cassandra-client/0.1.0", + "0.4.3": "http://registry.npmjs.org/cassandra-client/0.4.3", + "0.5.0": "http://registry.npmjs.org/cassandra-client/0.5.0", + "0.5.1": "http://registry.npmjs.org/cassandra-client/0.5.1" + }, + "dist": { + "0.0.1": { + "shasum": "afc14de200ee5f8266ed87afc6d6e30c8c625d28", + "tarball": "http://registry.npmjs.org/cassandra-client/-/cassandra-client-0.0.1.tgz" + }, + "0.0.3": { + "shasum": "879bda148ef07b986a536deabafc996a6e8f4da8", + "tarball": "http://registry.npmjs.org/cassandra-client/-/cassandra-client-0.0.3.tgz" + }, + "0.1.0": { + "shasum": "df880fa2073456fad821f3bc30a3da1a65df9a6c", + "tarball": "http://registry.npmjs.org/cassandra-client/-/cassandra-client-0.1.0.tgz" + }, + "0.4.3": { + "shasum": "fccb6522e2d85c422737c9a88e8777c8b8db4b4a", + "tarball": "http://registry.npmjs.org/cassandra-client/-/cassandra-client-0.4.3.tgz" + }, + "0.5.0": { + "shasum": "cf7a7ac65ffa46e24e7b1a02187a9e87700fdf23", + "tarball": "http://registry.npmjs.org/cassandra-client/-/cassandra-client-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "5854ed263408c45f3cb22738a2a613f31436f1c3", + "tarball": "http://registry.npmjs.org/cassandra-client/-/cassandra-client-0.5.1.tgz" + } + }, + "url": "http://registry.npmjs.org/cassandra-client/" + }, + "casset": { + "name": "casset", + "description": "An asset helper for minify and execute sass", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "juliogarcia", + "email": "julioggonz@gmail.com" + } + ], + "time": { + "modified": "2011-08-24T05:38:38.914Z", + "created": "2011-08-24T05:38:38.000Z", + "0.0.1": "2011-08-24T05:38:38.914Z" + }, + "author": { + "name": "Julio García", + "email": "julioggonz@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/casset/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "dda48940356edfa9f7ecfd122adea1a5f13b3189", + "tarball": "http://registry.npmjs.org/casset/-/casset-0.0.1.tgz" + } + }, + "keywords": [ + "assets", + "minify", + "compass" + ], + "url": "http://registry.npmjs.org/casset/" + }, + "cast": { + "name": "cast", + "description": "Attempts to solve the problem of unintuitive data types", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "beatgammit", + "email": "t.jameson.little@gmail.com" + } + ], + "time": { + "modified": "2011-12-07T22:52:03.300Z", + "created": "2011-09-30T22:55:07.753Z", + "0.1.0": "2011-12-07T22:52:03.300Z", + "1.0.0": "2011-12-07T22:52:03.300Z" + }, + "author": { + "name": "T. Jameson Little", + "email": "beatgammit@gmail.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:beatgammit/cast.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/cast/0.1.0", + "1.0.0": "http://registry.npmjs.org/cast/1.0.0" + }, + "dist": { + "0.1.0": { + "shasum": "15c117122b1c4826bef86ce7d2051c685f94b206", + "tarball": "http://registry.npmjs.org/cast/-/cast-0.1.0.tgz" + }, + "1.0.0": { + "shasum": "fa13ca5bfa8593a7f126444f9dfbba97d8d8691f", + "tarball": "http://registry.npmjs.org/cast/-/cast-1.0.0.tgz" + } + }, + "keywords": [ + "cast", + "data-types", + "data types", + "types" + ], + "url": "http://registry.npmjs.org/cast/" + }, + "castaneum": { + "name": "castaneum", + "description": "basic web browser for node.js", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "goddamnbugs", + "email": "steve@goddamnbugs.com" + } + ], + "author": { + "name": "Steve", + "email": "steve@goddamnbugs.com", + "url": "http://goddamnbugs.com/" + }, + "repository": { + "type": "git", + "url": "http://github.com/goddamnbugs/castaneum.git" + }, + "time": { + "modified": "2010-12-24T20:11:22.171Z", + "created": "2010-12-24T20:11:22.171Z", + "0.1.0": "2010-12-24T20:11:22.171Z", + "0.1.1": "2010-12-24T20:11:22.171Z", + "0.1.2": "2010-12-24T20:11:22.171Z", + "0.1.4": "2010-12-24T20:11:22.171Z", + "0.1.6": "2010-12-24T20:11:22.171Z", + "0.1.7": "2010-12-24T20:11:22.171Z", + "0.1.8": "2010-12-24T20:11:22.171Z", + "0.1.9": "2010-12-24T20:11:22.171Z", + "0.2.0": "2010-12-24T20:11:22.171Z", + "0.2.1": "2010-12-24T20:11:22.171Z", + "0.2.2": "2010-12-24T20:11:22.171Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/castaneum/0.1.0", + "0.1.1": "http://registry.npmjs.org/castaneum/0.1.1", + "0.1.2": "http://registry.npmjs.org/castaneum/0.1.2", + "0.1.4": "http://registry.npmjs.org/castaneum/0.1.4", + "0.1.6": "http://registry.npmjs.org/castaneum/0.1.6", + "0.1.7": "http://registry.npmjs.org/castaneum/0.1.7", + "0.1.8": "http://registry.npmjs.org/castaneum/0.1.8", + "0.1.9": "http://registry.npmjs.org/castaneum/0.1.9", + "0.2.0": "http://registry.npmjs.org/castaneum/0.2.0", + "0.2.1": "http://registry.npmjs.org/castaneum/0.2.1", + "0.2.2": "http://registry.npmjs.org/castaneum/0.2.2" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/castaneum/-/castaneum-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://packages:5984/castaneum/-/castaneum-0.1.1.tgz" + }, + "0.1.2": { + "tarball": "http://packages:5984/castaneum/-/castaneum-0.1.2.tgz" + }, + "0.1.4": { + "tarball": "http://packages:5984/castaneum/-/castaneum-0.1.4.tgz" + }, + "0.1.6": { + "tarball": "http://packages:5984/castaneum/-/castaneum-0.1.6.tgz" + }, + "0.1.7": { + "tarball": "http://packages:5984/castaneum/-/castaneum-0.1.7.tgz" + }, + "0.1.8": { + "tarball": "http://packages:5984/castaneum/-/castaneum-0.1.8.tgz" + }, + "0.1.9": { + "tarball": "http://packages:5984/castaneum/-/castaneum-0.1.9.tgz" + }, + "0.2.0": { + "tarball": "http://packages:5984/castaneum/-/castaneum-0.2.0.tgz" + }, + "0.2.1": { + "tarball": "http://registry.npmjs.org/castaneum/-/castaneum-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "5b1fa25b2dcafb52fa2d00f8106367b0ed050303", + "tarball": "http://registry.npmjs.org/castaneum/-/castaneum-0.2.2.tgz" + } + }, + "url": "http://registry.npmjs.org/castaneum/" + }, + "cat": { + "name": "cat", + "description": "cat will read the contents of an url", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "mafintosh", + "email": "m@ge.tt" + } + ], + "time": { + "modified": "2011-07-26T20:14:30.267Z", + "created": "2011-07-26T20:14:29.608Z", + "0.1.0": "2011-07-26T20:14:30.267Z" + }, + "author": { + "name": "Mathias Buus Madsen", + "email": "mathiasbuus@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/cat/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "64ae327d25a5782ac88bf7599df2781ba6afecb4", + "tarball": "http://registry.npmjs.org/cat/-/cat-0.1.0.tgz" + } + }, + "keywords": [ + "cat", + "util", + "request" + ], + "url": "http://registry.npmjs.org/cat/" + }, + "catchjs": { + "name": "catchjs", + "description": "catches exceptions, period", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "brentlintner", + "email": "brent.lintner@gmail.com" + } + ], + "time": { + "modified": "2011-01-11T23:27:24.078Z", + "created": "2011-01-11T23:27:23.779Z", + "0.1.0": "2011-01-11T23:27:24.078Z" + }, + "author": { + "name": "tinyHippos" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/catchjs/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "440465b757c7d3deddb5d79c4403251282d74e2d", + "tarball": "http://registry.npmjs.org/catchjs/-/catchjs-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/catchjs/" + }, + "caterpillar": { + "name": "caterpillar", + "description": "Caterpillar is an awesome, simple console logger for node.js. It supports grouping of messages, filtering log levels, colors, times, modules, custom formatters and custom transports. It's awesome.", + "dist-tags": { + "latest": "0.1.7" + }, + "maintainers": [ + { + "name": "balupton", + "email": "b@lupton.cc" + } + ], + "time": { + "modified": "2011-11-02T08:50:49.500Z", + "created": "2011-09-06T05:47:06.341Z", + "0.1.0": "2011-09-06T05:47:11.484Z", + "0.1.1": "2011-09-14T09:53:42.250Z", + "0.1.2": "2011-09-27T06:18:24.503Z", + "0.1.3": "2011-10-05T09:56:24.127Z", + "0.1.4": "2011-10-05T10:08:29.778Z", + "0.1.5": "2011-10-05T12:28:44.015Z", + "0.1.6": "2011-10-05T12:35:24.586Z", + "0.1.7": "2011-11-02T08:50:49.500Z" + }, + "author": { + "name": "Benjamin Lupton", + "email": "b@lupton.cc", + "url": "http://balupton.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/balupton/caterpillar.npm.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/caterpillar/0.1.0", + "0.1.1": "http://registry.npmjs.org/caterpillar/0.1.1", + "0.1.2": "http://registry.npmjs.org/caterpillar/0.1.2", + "0.1.3": "http://registry.npmjs.org/caterpillar/0.1.3", + "0.1.4": "http://registry.npmjs.org/caterpillar/0.1.4", + "0.1.5": "http://registry.npmjs.org/caterpillar/0.1.5", + "0.1.6": "http://registry.npmjs.org/caterpillar/0.1.6", + "0.1.7": "http://registry.npmjs.org/caterpillar/0.1.7" + }, + "dist": { + "0.1.0": { + "shasum": "880113e1fa19510678f13a6ba3b3a14fcb29ea90", + "tarball": "http://registry.npmjs.org/caterpillar/-/caterpillar-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "df68b893a97989e20748daa7188f58ac4779a94c", + "tarball": "http://registry.npmjs.org/caterpillar/-/caterpillar-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "8b18505901be2767165007e2274d21ed589319f5", + "tarball": "http://registry.npmjs.org/caterpillar/-/caterpillar-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "cefa829b69d20ba544e726f70af5167d708e9431", + "tarball": "http://registry.npmjs.org/caterpillar/-/caterpillar-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "c35e70d5fcbdbda28fc1c50016fff65cf8b2b894", + "tarball": "http://registry.npmjs.org/caterpillar/-/caterpillar-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "e317fee95bd71d9f5b18b2f39dfa85a5474d1048", + "tarball": "http://registry.npmjs.org/caterpillar/-/caterpillar-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "b2aa7c29b02060776c7c06ed984d645753bbdc19", + "tarball": "http://registry.npmjs.org/caterpillar/-/caterpillar-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "9180cad0656baa0f2b4effa0ae6f1477b75c9eac", + "tarball": "http://registry.npmjs.org/caterpillar/-/caterpillar-0.1.7.tgz" + } + }, + "keywords": [ + "console", + "log", + "logger", + "logging", + "debug" + ], + "url": "http://registry.npmjs.org/caterpillar/" + }, + "causeeffect": { + "name": "causeeffect", + "description": "Evented rules for nodejs - flow management simplified", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "olado", + "email": "ldoktorova@gmail.com" + } + ], + "time": { + "modified": "2011-03-04T06:45:22.048Z", + "created": "2011-02-07T14:57:39.538Z", + "0.1.0": "2011-02-07T14:57:39.764Z", + "0.1.1": "2011-02-10T16:56:37.653Z", + "0.1.2": "2011-02-27T00:47:02.999Z", + "0.1.3": "2011-03-04T06:45:22.048Z" + }, + "author": { + "name": "Laura Doktorova", + "email": "ldoktorova@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/olado/causeeffect.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/causeeffect/0.1.0", + "0.1.1": "http://registry.npmjs.org/causeeffect/0.1.1", + "0.1.2": "http://registry.npmjs.org/causeeffect/0.1.2", + "0.1.3": "http://registry.npmjs.org/causeeffect/0.1.3" + }, + "dist": { + "0.1.0": { + "shasum": "14c30277152fa3bbb781770d1e92f2f0f388239b", + "tarball": "http://registry.npmjs.org/causeeffect/-/causeeffect-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "f1d319156e81c935d470aa5f83b45587a24514e9", + "tarball": "http://registry.npmjs.org/causeeffect/-/causeeffect-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "5ea1a1df018e1292cd9003deb6fa6a3642381688", + "tarball": "http://registry.npmjs.org/causeeffect/-/causeeffect-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "dbed6bac705def751dd5341d48c2bbbe21819d69", + "tarball": "http://registry.npmjs.org/causeeffect/-/causeeffect-0.1.3.tgz" + } + }, + "keywords": [ + "event", + "events", + "simple", + "flow", + "parallel", + "util", + "utility" + ], + "url": "http://registry.npmjs.org/causeeffect/" + }, + "cayenne": { + "name": "cayenne", + "description": "CoffeeScript's web framework on top of Express,Connect,Socket.IO frameworks.", + "dist-tags": { + "latest": "0.1.5" + }, + "maintainers": [ + { + "name": "arden", + "email": "arden.emily@gmail.com" + } + ], + "time": { + "modified": "2011-02-08T19:44:44.469Z", + "created": "2011-02-08T19:22:37.056Z", + "0.1.4": "2011-02-08T19:22:38.600Z", + "0.1.5": "2011-02-08T19:44:44.469Z" + }, + "author": { + "name": "arden", + "email": "arden.emily@gmail.com" + }, + "versions": { + "0.1.4": "http://registry.npmjs.org/cayenne/0.1.4", + "0.1.5": "http://registry.npmjs.org/cayenne/0.1.5" + }, + "dist": { + "0.1.4": { + "shasum": "715b7d500d0da558f989ff4f43971c3a55113356", + "tarball": "http://registry.npmjs.org/cayenne/-/cayenne-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "04b3404342f7ce23b38dc3a0fe17493f794142e3", + "tarball": "http://registry.npmjs.org/cayenne/-/cayenne-0.1.5.tgz" + } + }, + "keywords": [ + "framework", + "websockets", + "coffeescript" + ], + "url": "http://registry.npmjs.org/cayenne/" + }, + "ccn4bnode": { + "name": "ccn4bnode", + "description": "A node.js-based CCNx Integration, ala ccn4b", + "dist-tags": { + "latest": "0.1.46" + }, + "maintainers": [ + { + "name": "truedat101", + "email": "dkords@gmail.com" + } + ], + "time": { + "modified": "2011-09-09T12:42:29.709Z", + "created": "2011-08-09T07:19:27.657Z", + "0.1.1": "2011-08-09T07:19:27.998Z", + "0.1.2": "2011-08-10T08:44:50.519Z", + "0.1.31": "2011-09-08T08:40:20.680Z", + "0.1.46": "2011-09-09T12:42:29.709Z" + }, + "author": { + "name": "David J. Kordsmeier", + "email": "dkords@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/truedat101/ccn4bnode.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/ccn4bnode/0.1.1", + "0.1.2": "http://registry.npmjs.org/ccn4bnode/0.1.2", + "0.1.31": "http://registry.npmjs.org/ccn4bnode/0.1.31", + "0.1.46": "http://registry.npmjs.org/ccn4bnode/0.1.46" + }, + "dist": { + "0.1.1": { + "shasum": "fab1e14a7d5eb70959e0deb3b5aedce1b4354095", + "tarball": "http://registry.npmjs.org/ccn4bnode/-/ccn4bnode-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "acbbc9c4d549b6a7cf0657895caa4c3a67de0ea3", + "tarball": "http://registry.npmjs.org/ccn4bnode/-/ccn4bnode-0.1.2.tgz" + }, + "0.1.31": { + "shasum": "bf5aba3ff99825f7616d125d8773060978ad0ac8", + "tarball": "http://registry.npmjs.org/ccn4bnode/-/ccn4bnode-0.1.31.tgz" + }, + "0.1.46": { + "shasum": "6b326054303c73b1538b3e207eac0d9ab9fd5429", + "tarball": "http://registry.npmjs.org/ccn4bnode/-/ccn4bnode-0.1.46.tgz" + } + }, + "url": "http://registry.npmjs.org/ccn4bnode/" + }, + "ccnq3_config": { + "name": "ccnq3_config", + "description": "CCNQ3 config access", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "shimaore", + "email": "stephane@shimaore.net" + } + ], + "time": { + "modified": "2011-12-08T13:08:39.262Z", + "created": "2011-08-01T22:34:50.127Z", + "0.0.1": "2011-12-08T13:04:19.029Z", + "0.0.2": "2011-12-08T13:04:19.029Z", + "0.0.3": "2011-12-08T13:04:19.029Z", + "0.0.4": "2011-12-08T13:04:19.029Z", + "0.0.6": "2011-12-08T13:04:19.029Z", + "0.0.7": "2011-12-08T13:04:19.029Z", + "0.0.8": "2011-12-08T13:04:19.029Z", + "0.1.0": "2011-12-08T13:04:19.029Z", + "0.1.1": "2011-12-08T13:04:19.029Z", + "0.1.2": "2011-12-08T13:04:19.029Z", + "0.1.3": "2011-12-08T13:04:19.029Z", + "0.1.4": "2011-12-08T13:04:19.029Z", + "0.1.5": "2011-12-08T13:04:19.029Z", + "0.1.6": "2011-11-18T12:31:16.567Z", + "0.2.0": "2011-12-08T13:04:19.029Z", + "0.2.1": "2011-12-08T13:08:39.262Z" + }, + "author": { + "name": "Stephane Alnet", + "email": "stephane@shimaore.net" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ccnq3_config/0.0.1", + "0.0.2": "http://registry.npmjs.org/ccnq3_config/0.0.2", + "0.0.3": "http://registry.npmjs.org/ccnq3_config/0.0.3", + "0.0.4": "http://registry.npmjs.org/ccnq3_config/0.0.4", + "0.0.6": "http://registry.npmjs.org/ccnq3_config/0.0.6", + "0.0.7": "http://registry.npmjs.org/ccnq3_config/0.0.7", + "0.0.8": "http://registry.npmjs.org/ccnq3_config/0.0.8", + "0.1.0": "http://registry.npmjs.org/ccnq3_config/0.1.0", + "0.1.1": "http://registry.npmjs.org/ccnq3_config/0.1.1", + "0.1.2": "http://registry.npmjs.org/ccnq3_config/0.1.2", + "0.1.3": "http://registry.npmjs.org/ccnq3_config/0.1.3", + "0.1.4": "http://registry.npmjs.org/ccnq3_config/0.1.4", + "0.1.5": "http://registry.npmjs.org/ccnq3_config/0.1.5", + "0.1.6": "http://registry.npmjs.org/ccnq3_config/0.1.6", + "0.2.0": "http://registry.npmjs.org/ccnq3_config/0.2.0", + "0.2.1": "http://registry.npmjs.org/ccnq3_config/0.2.1" + }, + "dist": { + "0.0.1": { + "shasum": "ea3cd021a3b3d8021f98d36df757bfde41c1b60b", + "tarball": "http://registry.npmjs.org/ccnq3_config/-/ccnq3_config-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "0e3b9e8a1fc9fe36345566a3f45732ef39e3a2ab", + "tarball": "http://registry.npmjs.org/ccnq3_config/-/ccnq3_config-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "0fef386438b869683090cc2f2622c538efb3283b", + "tarball": "http://registry.npmjs.org/ccnq3_config/-/ccnq3_config-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "ea713503bc6a3b32c9c8baf19b9db8fe1b92f1f9", + "tarball": "http://registry.npmjs.org/ccnq3_config/-/ccnq3_config-0.0.4.tgz" + }, + "0.0.6": { + "shasum": "b5df06448dcae44a59653a0993283f85d258f20b", + "tarball": "http://registry.npmjs.org/ccnq3_config/-/ccnq3_config-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "1b5a4a5fee7cd00d7b67089726912ae7a99680e0", + "tarball": "http://registry.npmjs.org/ccnq3_config/-/ccnq3_config-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "54630e5e51d6f2f7a44a38f286a8a2ef0c6cdf5d", + "tarball": "http://registry.npmjs.org/ccnq3_config/-/ccnq3_config-0.0.8.tgz" + }, + "0.1.0": { + "shasum": "3089fefe92285e9135cbdf1582b39c4a255e0026", + "tarball": "http://registry.npmjs.org/ccnq3_config/-/ccnq3_config-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "80b0621a4f0ee3c8e8deb9479235e091ff03e2ff", + "tarball": "http://registry.npmjs.org/ccnq3_config/-/ccnq3_config-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "dd6734914f29cd90c663ce33c8267c994b60177a", + "tarball": "http://registry.npmjs.org/ccnq3_config/-/ccnq3_config-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "9a5995b242fe40071fa64d06c8effa46ca5b4306", + "tarball": "http://registry.npmjs.org/ccnq3_config/-/ccnq3_config-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "e404efa85a289c1384efb9858c675caee6ab1dc8", + "tarball": "http://registry.npmjs.org/ccnq3_config/-/ccnq3_config-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "ad5081b9d382b74861829826b2528d5f0d043f49", + "tarball": "http://registry.npmjs.org/ccnq3_config/-/ccnq3_config-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "6bc04323dbb2a41022ed97b851c197992d20d2b2", + "tarball": "http://registry.npmjs.org/ccnq3_config/-/ccnq3_config-0.1.6.tgz" + }, + "0.2.0": { + "shasum": "d3bada4c5894500b6aeb10937b0f163410da6f42", + "tarball": "http://registry.npmjs.org/ccnq3_config/-/ccnq3_config-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "41672c2aac138618365eaf06830197d1ffc0ad18", + "tarball": "http://registry.npmjs.org/ccnq3_config/-/ccnq3_config-0.2.1.tgz" + } + }, + "keywords": [ + "ccnq3" + ], + "url": "http://registry.npmjs.org/ccnq3_config/" + }, + "ccnq3_host": { + "name": "ccnq3_host", + "description": "Host-specific applications for CCNQ3", + "dist-tags": { + "latest": "0.0.8" + }, + "maintainers": [ + { + "name": "shimaore", + "email": "stephane@shimaore.net" + } + ], + "time": { + "modified": "2011-09-27T08:54:28.740Z", + "created": "2011-09-26T22:33:49.395Z", + "0.0.6": "2011-09-26T22:33:51.242Z", + "0.0.7": "2011-09-26T22:36:11.303Z", + "0.0.8": "2011-09-26T22:44:21.382Z", + "0.0.9": "2011-09-27T08:53:55.598Z" + }, + "author": { + "name": "Stephane Alnet", + "email": "stephane@shimaore.net" + }, + "versions": { + "0.0.6": "http://registry.npmjs.org/ccnq3_host/0.0.6", + "0.0.7": "http://registry.npmjs.org/ccnq3_host/0.0.7", + "0.0.8": "http://registry.npmjs.org/ccnq3_host/0.0.8" + }, + "dist": { + "0.0.6": { + "shasum": "4bc4aec800fa24f66544efb313a602ac35a824a3", + "tarball": "http://registry.npmjs.org/ccnq3_host/-/ccnq3_host-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "b3bd365b3b370fdb70fdb2a89c06f26d252ab3b7", + "tarball": "http://registry.npmjs.org/ccnq3_host/-/ccnq3_host-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "b5713b33eb9fe89bec0beed9cbd36c1d8e226e65", + "tarball": "http://registry.npmjs.org/ccnq3_host/-/ccnq3_host-0.0.8.tgz" + } + }, + "keywords": [ + "" + ], + "url": "http://registry.npmjs.org/ccnq3_host/" + }, + "ccnq3_logger": { + "name": "ccnq3_logger", + "description": "CCNQ3 logging", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "shimaore", + "email": "stephane@shimaore.net" + } + ], + "time": { + "modified": "2011-08-29T21:07:42.026Z", + "created": "2011-08-29T21:06:17.705Z", + "0.0.1": "2011-08-29T21:06:19.752Z", + "0.0.2": "2011-08-29T21:07:42.026Z" + }, + "author": { + "name": "Stephane Alnet", + "email": "stephane@shimaore.net" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ccnq3_logger/0.0.1", + "0.0.2": "http://registry.npmjs.org/ccnq3_logger/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "defbb975f463c15f1b85bd7cf873d808c4519c24", + "tarball": "http://registry.npmjs.org/ccnq3_logger/-/ccnq3_logger-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "6b9a220d434894b5af196c4e9139caaad04e5023", + "tarball": "http://registry.npmjs.org/ccnq3_logger/-/ccnq3_logger-0.0.2.tgz" + } + }, + "keywords": [ + "ccnq3" + ], + "url": "http://registry.npmjs.org/ccnq3_logger/" + }, + "ccnq3_roles": { + "name": "ccnq3_roles", + "description": "User management applications for CCNQ3", + "dist-tags": { + "latest": "0.0.47" + }, + "maintainers": [ + { + "name": "shimaore", + "email": "stephane@shimaore.net" + } + ], + "time": { + "modified": "2011-12-12T23:24:38.194Z", + "created": "2011-09-12T13:21:51.137Z", + "0.0.11": "2011-09-12T13:21:53.088Z", + "0.0.12": "2011-09-12T19:09:04.027Z", + "0.0.13": "2011-09-13T11:58:03.936Z", + "0.0.14": "2011-09-13T19:51:27.162Z", + "0.0.15": "2011-09-13T21:38:05.357Z", + "0.0.16": "2011-09-14T20:35:31.256Z", + "0.0.17": "2011-09-15T09:53:15.552Z", + "0.0.18": "2011-09-15T10:54:15.374Z", + "0.0.19": "2011-09-15T11:23:31.743Z", + "0.0.20": "2011-09-15T11:42:39.475Z", + "0.0.21": "2011-09-15T12:14:47.688Z", + "0.0.22": "2011-09-16T10:31:34.504Z", + "0.0.24": "2011-09-19T13:58:56.068Z", + "0.0.25": "2011-09-19T18:18:29.554Z", + "0.0.26": "2011-09-19T18:22:28.073Z", + "0.0.27": "2011-09-19T18:52:44.639Z", + "0.0.28": "2011-09-19T19:07:35.079Z", + "0.0.29": "2011-09-19T19:49:35.707Z", + "0.0.30": "2011-09-19T19:58:00.510Z", + "0.0.31": "2011-09-19T20:36:26.387Z", + "0.0.32": "2011-09-22T08:03:32.055Z", + "0.0.33": "2011-09-27T10:46:25.133Z", + "0.0.34": "2011-10-21T12:46:35.207Z", + "0.0.35": "2011-10-21T12:51:06.176Z", + "0.0.36": "2011-10-22T08:21:50.672Z", + "0.0.37": "2011-10-22T08:42:41.993Z", + "0.0.38": "2011-10-22T09:14:00.614Z", + "0.0.39": "2011-10-22T14:14:14.960Z", + "0.0.40": "2011-10-22T14:40:09.092Z", + "0.0.41": "2011-10-24T10:51:35.587Z", + "0.0.42": "2011-10-24T19:27:42.787Z", + "0.0.43": "2011-10-24T21:39:38.189Z", + "0.0.44": "2011-10-24T21:44:49.169Z", + "0.0.45": "2011-10-28T20:56:06.706Z", + "0.0.46": "2011-10-30T15:53:11.841Z", + "0.0.47": "2011-12-12T23:24:38.194Z" + }, + "author": { + "name": "Stephane Alnet", + "email": "stephane@shimaore.net" + }, + "versions": { + "0.0.11": "http://registry.npmjs.org/ccnq3_roles/0.0.11", + "0.0.12": "http://registry.npmjs.org/ccnq3_roles/0.0.12", + "0.0.13": "http://registry.npmjs.org/ccnq3_roles/0.0.13", + "0.0.14": "http://registry.npmjs.org/ccnq3_roles/0.0.14", + "0.0.15": "http://registry.npmjs.org/ccnq3_roles/0.0.15", + "0.0.16": "http://registry.npmjs.org/ccnq3_roles/0.0.16", + "0.0.17": "http://registry.npmjs.org/ccnq3_roles/0.0.17", + "0.0.18": "http://registry.npmjs.org/ccnq3_roles/0.0.18", + "0.0.19": "http://registry.npmjs.org/ccnq3_roles/0.0.19", + "0.0.20": "http://registry.npmjs.org/ccnq3_roles/0.0.20", + "0.0.21": "http://registry.npmjs.org/ccnq3_roles/0.0.21", + "0.0.22": "http://registry.npmjs.org/ccnq3_roles/0.0.22", + "0.0.24": "http://registry.npmjs.org/ccnq3_roles/0.0.24", + "0.0.25": "http://registry.npmjs.org/ccnq3_roles/0.0.25", + "0.0.26": "http://registry.npmjs.org/ccnq3_roles/0.0.26", + "0.0.27": "http://registry.npmjs.org/ccnq3_roles/0.0.27", + "0.0.28": "http://registry.npmjs.org/ccnq3_roles/0.0.28", + "0.0.29": "http://registry.npmjs.org/ccnq3_roles/0.0.29", + "0.0.30": "http://registry.npmjs.org/ccnq3_roles/0.0.30", + "0.0.31": "http://registry.npmjs.org/ccnq3_roles/0.0.31", + "0.0.32": "http://registry.npmjs.org/ccnq3_roles/0.0.32", + "0.0.33": "http://registry.npmjs.org/ccnq3_roles/0.0.33", + "0.0.34": "http://registry.npmjs.org/ccnq3_roles/0.0.34", + "0.0.35": "http://registry.npmjs.org/ccnq3_roles/0.0.35", + "0.0.36": "http://registry.npmjs.org/ccnq3_roles/0.0.36", + "0.0.37": "http://registry.npmjs.org/ccnq3_roles/0.0.37", + "0.0.38": "http://registry.npmjs.org/ccnq3_roles/0.0.38", + "0.0.39": "http://registry.npmjs.org/ccnq3_roles/0.0.39", + "0.0.40": "http://registry.npmjs.org/ccnq3_roles/0.0.40", + "0.0.41": "http://registry.npmjs.org/ccnq3_roles/0.0.41", + "0.0.42": "http://registry.npmjs.org/ccnq3_roles/0.0.42", + "0.0.43": "http://registry.npmjs.org/ccnq3_roles/0.0.43", + "0.0.44": "http://registry.npmjs.org/ccnq3_roles/0.0.44", + "0.0.45": "http://registry.npmjs.org/ccnq3_roles/0.0.45", + "0.0.46": "http://registry.npmjs.org/ccnq3_roles/0.0.46", + "0.0.47": "http://registry.npmjs.org/ccnq3_roles/0.0.47" + }, + "dist": { + "0.0.11": { + "shasum": "7bb0b60a5da6f55b4bd2dbd7a128c5dfe505e23e", + "tarball": "http://registry.npmjs.org/ccnq3_roles/-/ccnq3_roles-0.0.11.tgz" + }, + "0.0.12": { + "shasum": "8e30c76fc10a10b9de9f08a6c6bd0bd7a12058da", + "tarball": "http://registry.npmjs.org/ccnq3_roles/-/ccnq3_roles-0.0.12.tgz" + }, + "0.0.13": { + "shasum": "459ff86b005fcd5184274f589cc89e8cd0f715ee", + "tarball": "http://registry.npmjs.org/ccnq3_roles/-/ccnq3_roles-0.0.13.tgz" + }, + "0.0.14": { + "shasum": "8adbe3120c61cd381a5b6008db6c9ef76e5cfa48", + "tarball": "http://registry.npmjs.org/ccnq3_roles/-/ccnq3_roles-0.0.14.tgz" + }, + "0.0.15": { + "shasum": "4960637194bf4faf4485d7d0b6c7de13d41c6376", + "tarball": "http://registry.npmjs.org/ccnq3_roles/-/ccnq3_roles-0.0.15.tgz" + }, + "0.0.16": { + "shasum": "12f5f9738407d82b8bedd8605e9b0736f4e2b802", + "tarball": "http://registry.npmjs.org/ccnq3_roles/-/ccnq3_roles-0.0.16.tgz" + }, + "0.0.17": { + "shasum": "236889a51e383a337357022dfd39b63fd858d9bf", + "tarball": "http://registry.npmjs.org/ccnq3_roles/-/ccnq3_roles-0.0.17.tgz" + }, + "0.0.18": { + "shasum": "ef714fa0c33b924fc8ab3f24584802ca8c791dba", + "tarball": "http://registry.npmjs.org/ccnq3_roles/-/ccnq3_roles-0.0.18.tgz" + }, + "0.0.19": { + "shasum": "1f5eb3d091434c69711664453d807467f84112d3", + "tarball": "http://registry.npmjs.org/ccnq3_roles/-/ccnq3_roles-0.0.19.tgz" + }, + "0.0.20": { + "shasum": "6cba10ab787db42e602b315e09a90fa3bafe9b68", + "tarball": "http://registry.npmjs.org/ccnq3_roles/-/ccnq3_roles-0.0.20.tgz" + }, + "0.0.21": { + "shasum": "d3334c96828cc9244c35c4f3ddf76f466cd2d5fd", + "tarball": "http://registry.npmjs.org/ccnq3_roles/-/ccnq3_roles-0.0.21.tgz" + }, + "0.0.22": { + "shasum": "12103ab8c6333e118c474073110823c2a47d4d7d", + "tarball": "http://registry.npmjs.org/ccnq3_roles/-/ccnq3_roles-0.0.22.tgz" + }, + "0.0.24": { + "shasum": "4998937e668cad3a2a4b0fc226844344751d7c0d", + "tarball": "http://registry.npmjs.org/ccnq3_roles/-/ccnq3_roles-0.0.24.tgz" + }, + "0.0.25": { + "shasum": "4e558e715b3184667436c99cd88319caa4d1edbd", + "tarball": "http://registry.npmjs.org/ccnq3_roles/-/ccnq3_roles-0.0.25.tgz" + }, + "0.0.26": { + "shasum": "649106feab2fe1b7daa642e664c90c1c9b9c86ef", + "tarball": "http://registry.npmjs.org/ccnq3_roles/-/ccnq3_roles-0.0.26.tgz" + }, + "0.0.27": { + "shasum": "316ca5e01e610fedfd0a50d11f443bf097053fce", + "tarball": "http://registry.npmjs.org/ccnq3_roles/-/ccnq3_roles-0.0.27.tgz" + }, + "0.0.28": { + "shasum": "d251669380faedd4e0c8a9ab54adfa3968c4c966", + "tarball": "http://registry.npmjs.org/ccnq3_roles/-/ccnq3_roles-0.0.28.tgz" + }, + "0.0.29": { + "shasum": "3692567ae748f3519c238d593b5ca4f8b5fd9299", + "tarball": "http://registry.npmjs.org/ccnq3_roles/-/ccnq3_roles-0.0.29.tgz" + }, + "0.0.30": { + "shasum": "b6887ebad5356f706d0528c77bc9cc1a5af09978", + "tarball": "http://registry.npmjs.org/ccnq3_roles/-/ccnq3_roles-0.0.30.tgz" + }, + "0.0.31": { + "shasum": "bb9502d7441a9c08c66982522c91ab55ebea83e0", + "tarball": "http://registry.npmjs.org/ccnq3_roles/-/ccnq3_roles-0.0.31.tgz" + }, + "0.0.32": { + "shasum": "18feadc777805a1d435b1f01cfeadef0e4159309", + "tarball": "http://registry.npmjs.org/ccnq3_roles/-/ccnq3_roles-0.0.32.tgz" + }, + "0.0.33": { + "shasum": "b7e51ade3becd8525493ca0fa6315b0e91d0eb61", + "tarball": "http://registry.npmjs.org/ccnq3_roles/-/ccnq3_roles-0.0.33.tgz" + }, + "0.0.34": { + "shasum": "b1a8eb6f76018f75d1b1637493c488e981f60241", + "tarball": "http://registry.npmjs.org/ccnq3_roles/-/ccnq3_roles-0.0.34.tgz" + }, + "0.0.35": { + "shasum": "a1b7af3e4db587e505d5f6f84ccfec8c127894fd", + "tarball": "http://registry.npmjs.org/ccnq3_roles/-/ccnq3_roles-0.0.35.tgz" + }, + "0.0.36": { + "shasum": "fe4a52fe95ad33717537fe7c22767bd8d764a91c", + "tarball": "http://registry.npmjs.org/ccnq3_roles/-/ccnq3_roles-0.0.36.tgz" + }, + "0.0.37": { + "shasum": "5fda11396feba10954356a38dbd01ff08bece6e1", + "tarball": "http://registry.npmjs.org/ccnq3_roles/-/ccnq3_roles-0.0.37.tgz" + }, + "0.0.38": { + "shasum": "8b604ebbc717d8e3c371d2df7f3ae2c2123dc30e", + "tarball": "http://registry.npmjs.org/ccnq3_roles/-/ccnq3_roles-0.0.38.tgz" + }, + "0.0.39": { + "shasum": "898ab9cb1041d93d854475e8a7092871b143511c", + "tarball": "http://registry.npmjs.org/ccnq3_roles/-/ccnq3_roles-0.0.39.tgz" + }, + "0.0.40": { + "shasum": "8ca90bec7f6087f92df3de20e359e7421f6e1c16", + "tarball": "http://registry.npmjs.org/ccnq3_roles/-/ccnq3_roles-0.0.40.tgz" + }, + "0.0.41": { + "shasum": "17cdd71791c808448a4de41a7970fbcaae6ca054", + "tarball": "http://registry.npmjs.org/ccnq3_roles/-/ccnq3_roles-0.0.41.tgz" + }, + "0.0.42": { + "shasum": "75f0441a07ae007dd13c301ada9600f5b963525a", + "tarball": "http://registry.npmjs.org/ccnq3_roles/-/ccnq3_roles-0.0.42.tgz" + }, + "0.0.43": { + "shasum": "49523ffe7f4883a2ee88eb3bdfa571b5e6fe7a14", + "tarball": "http://registry.npmjs.org/ccnq3_roles/-/ccnq3_roles-0.0.43.tgz" + }, + "0.0.44": { + "shasum": "eec152f3ea248bb48a802728bfc27168260862b0", + "tarball": "http://registry.npmjs.org/ccnq3_roles/-/ccnq3_roles-0.0.44.tgz" + }, + "0.0.45": { + "shasum": "0aeea95a47e58067483adbf08bcbf6623154bbd9", + "tarball": "http://registry.npmjs.org/ccnq3_roles/-/ccnq3_roles-0.0.45.tgz" + }, + "0.0.46": { + "shasum": "7fda037c00d260140c8fd31d1291b9cc2371e5c2", + "tarball": "http://registry.npmjs.org/ccnq3_roles/-/ccnq3_roles-0.0.46.tgz" + }, + "0.0.47": { + "shasum": "dd8a93876e7a3d20822d86c72cc039160381e049", + "tarball": "http://registry.npmjs.org/ccnq3_roles/-/ccnq3_roles-0.0.47.tgz" + } + }, + "keywords": [ + "" + ], + "url": "http://registry.npmjs.org/ccnq3_roles/" + }, + "cconstantine": { + "name": "cconstantine", + "dist-tags": {}, + "maintainers": [ + { + "name": "cconstantine", + "email": "cconstan@gmail.com" + } + ], + "time": { + "modified": "2011-11-13T04:54:20.730Z", + "created": "2011-11-13T04:54:20.730Z" + }, + "versions": {}, + "dist": {}, + "url": "http://registry.npmjs.org/cconstantine/" + }, + "ccss": { + "name": "ccss", + "description": "CoffeeScript CSS", + "dist-tags": { + "latest": "0.1.2-1" + }, + "maintainers": [ + { + "name": "aeosynth", + "email": "james.r.campos@gmail.com" + } + ], + "time": { + "modified": "2011-02-11T02:11:15.694Z", + "created": "2011-02-07T06:33:31.256Z", + "0.0.0": "2011-02-07T06:33:31.680Z", + "0.1.0": "2011-02-11T00:43:58.063Z", + "0.1.1": "2011-02-11T01:25:02.867Z", + "0.1.2": "2011-02-11T01:50:32.417Z", + "0.1.2-1": "2011-02-11T02:11:15.694Z" + }, + "author": { + "name": "James Campos", + "email": "james.r.campos@gmail.com" + }, + "repository": { + "type": "git", + "url": "https://github.com/aeosynth/ccss.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/ccss/0.0.0", + "0.1.0": "http://registry.npmjs.org/ccss/0.1.0", + "0.1.1": "http://registry.npmjs.org/ccss/0.1.1", + "0.1.2": "http://registry.npmjs.org/ccss/0.1.2", + "0.1.2-1": "http://registry.npmjs.org/ccss/0.1.2-1" + }, + "dist": { + "0.0.0": { + "shasum": "519895fba516e56839d06937c6ee28106fc088a9", + "tarball": "http://registry.npmjs.org/ccss/-/ccss-0.0.0.tgz" + }, + "0.1.0": { + "shasum": "4be19e21180b5106c6a6e0e619206af008734500", + "tarball": "http://registry.npmjs.org/ccss/-/ccss-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "637d3f8985dc72d731296bc522cf9ea6f36b443c", + "tarball": "http://registry.npmjs.org/ccss/-/ccss-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "0ee0f5c79d85606cbe222d27029e4d935370a49f", + "tarball": "http://registry.npmjs.org/ccss/-/ccss-0.1.2.tgz" + }, + "0.1.2-1": { + "shasum": "0f38572d1f954a189e03d3bd999f61233a5254dd", + "tarball": "http://registry.npmjs.org/ccss/-/ccss-0.1.2-1.tgz" + } + }, + "keywords": [ + "css" + ], + "url": "http://registry.npmjs.org/ccss/" + }, + "cdb": { + "name": "cdb", + "description": "Minimalist interface for CouchDB access", + "dist-tags": { + "latest": "0.0.12" + }, + "maintainers": [ + { + "name": "shimaore", + "email": "stephane@shimaore.net" + } + ], + "time": { + "modified": "2011-09-29T18:53:16.597Z", + "created": "2011-06-07T13:20:55.655Z", + "0.0.1": "2011-06-07T13:20:56.148Z", + "0.0.2": "2011-06-23T21:24:14.571Z", + "0.0.3": "2011-06-23T21:40:44.691Z", + "0.0.4": "2011-06-23T23:30:50.540Z", + "0.0.6": "2011-08-29T20:57:27.616Z", + "0.0.7": "2011-08-29T21:04:12.087Z", + "0.0.8": "2011-09-29T16:29:17.090Z", + "0.0.9": "2011-09-29T16:45:40.245Z", + "0.0.10": "2011-09-29T16:52:03.878Z", + "0.0.11": "2011-09-29T16:58:40.074Z", + "0.0.12": "2011-09-29T18:53:16.597Z" + }, + "author": { + "name": "Stephane Alnet", + "email": "stephane@shimaore.net" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/cdb/0.0.1", + "0.0.2": "http://registry.npmjs.org/cdb/0.0.2", + "0.0.3": "http://registry.npmjs.org/cdb/0.0.3", + "0.0.4": "http://registry.npmjs.org/cdb/0.0.4", + "0.0.6": "http://registry.npmjs.org/cdb/0.0.6", + "0.0.7": "http://registry.npmjs.org/cdb/0.0.7", + "0.0.8": "http://registry.npmjs.org/cdb/0.0.8", + "0.0.9": "http://registry.npmjs.org/cdb/0.0.9", + "0.0.10": "http://registry.npmjs.org/cdb/0.0.10", + "0.0.11": "http://registry.npmjs.org/cdb/0.0.11", + "0.0.12": "http://registry.npmjs.org/cdb/0.0.12" + }, + "dist": { + "0.0.1": { + "shasum": "4689f7e91e34168770163ee7ad60a9b2fdeb5a3d", + "tarball": "http://registry.npmjs.org/cdb/-/cdb-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c724cc1393675f6f14d60fc679843b763ac3b39e", + "tarball": "http://registry.npmjs.org/cdb/-/cdb-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "81bd047ad3d9ff52454a38da16ac7b4da0173c77", + "tarball": "http://registry.npmjs.org/cdb/-/cdb-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "ca06d1154271c8af774b8f8a51d9dcb9c7aa801f", + "tarball": "http://registry.npmjs.org/cdb/-/cdb-0.0.4.tgz" + }, + "0.0.6": { + "shasum": "75f2cb8d98e6b5a5440a8470a16831e684ea391f", + "tarball": "http://registry.npmjs.org/cdb/-/cdb-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "cbedff559e062ceabe6f04a0713c0b52ed273fcc", + "tarball": "http://registry.npmjs.org/cdb/-/cdb-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "b7bad0192a515b6836508cfc9e4b3fc85775d914", + "tarball": "http://registry.npmjs.org/cdb/-/cdb-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "05c52f46b9cb880d66cdecbd0daeacc995feb993", + "tarball": "http://registry.npmjs.org/cdb/-/cdb-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "93aed422a15fc87eadd69993beaf24bef67c8636", + "tarball": "http://registry.npmjs.org/cdb/-/cdb-0.0.10.tgz" + }, + "0.0.11": { + "shasum": "e715a8d79c3531bb20e8e1d01775e29632b570c8", + "tarball": "http://registry.npmjs.org/cdb/-/cdb-0.0.11.tgz" + }, + "0.0.12": { + "shasum": "a2d8403824522154610f28d097f27adb326f01c0", + "tarball": "http://registry.npmjs.org/cdb/-/cdb-0.0.12.tgz" + } + }, + "keywords": [ + "couchdb" + ], + "url": "http://registry.npmjs.org/cdb/" + }, + "cdb_changes": { + "name": "cdb_changes", + "description": "Minimalist interface for CouchDB _changes", + "dist-tags": { + "latest": "0.0.9" + }, + "maintainers": [ + { + "name": "shimaore", + "email": "stephane@shimaore.net" + } + ], + "time": { + "modified": "2011-06-23T23:40:26.364Z", + "created": "2011-06-07T13:21:05.502Z", + "0.0.1": "2011-06-07T13:21:06.025Z", + "0.0.3": "2011-06-14T11:08:08.200Z", + "0.0.6": "2011-06-23T21:24:19.535Z", + "0.0.7": "2011-06-23T21:40:50.613Z", + "0.0.8": "2011-06-23T23:30:55.312Z", + "0.0.9": "2011-06-23T23:40:26.364Z" + }, + "author": { + "name": "Stephane Alnet", + "email": "stephane@shimaore.net" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/cdb_changes/0.0.1", + "0.0.3": "http://registry.npmjs.org/cdb_changes/0.0.3", + "0.0.6": "http://registry.npmjs.org/cdb_changes/0.0.6", + "0.0.7": "http://registry.npmjs.org/cdb_changes/0.0.7", + "0.0.8": "http://registry.npmjs.org/cdb_changes/0.0.8", + "0.0.9": "http://registry.npmjs.org/cdb_changes/0.0.9" + }, + "dist": { + "0.0.1": { + "shasum": "e3d858920992aa933917a6bf13bd035373e6a85b", + "tarball": "http://registry.npmjs.org/cdb_changes/-/cdb_changes-0.0.1.tgz" + }, + "0.0.3": { + "shasum": "c3a523aee7aaed846b32dda020a7ec24590e5671", + "tarball": "http://registry.npmjs.org/cdb_changes/-/cdb_changes-0.0.3.tgz" + }, + "0.0.6": { + "shasum": "ab8490ff2fb3fcc268c1ffb6bc8632e97690f472", + "tarball": "http://registry.npmjs.org/cdb_changes/-/cdb_changes-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "c75ed350099fca9e1cefb6e170f504357a01bc90", + "tarball": "http://registry.npmjs.org/cdb_changes/-/cdb_changes-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "cc9e8ce024d85f667bde1028f54b35cc61bf6bc1", + "tarball": "http://registry.npmjs.org/cdb_changes/-/cdb_changes-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "7538d0b5c16ae30b5be1931698ed7a10477899c4", + "tarball": "http://registry.npmjs.org/cdb_changes/-/cdb_changes-0.0.9.tgz" + } + }, + "keywords": [ + "couchdb" + ], + "url": "http://registry.npmjs.org/cdb_changes/" + }, + "celeri": { + "name": "celeri", + "description": "CLI lib", + "dist-tags": { + "latest": "0.2.5" + }, + "maintainers": [ + { + "name": "architectd", + "email": "craig.j.condon@gmail.com" + } + ], + "time": { + "modified": "2011-12-10T00:18:54.036Z", + "created": "2011-09-19T17:14:46.181Z", + "0.0.3": "2011-09-19T17:14:46.972Z", + "0.0.5": "2011-09-19T23:24:47.893Z", + "0.0.6": "2011-09-20T01:20:43.245Z", + "0.0.7": "2011-09-20T03:57:40.311Z", + "0.0.8": "2011-09-20T07:30:37.819Z", + "0.0.9": "2011-09-20T16:42:34.831Z", + "0.0.10": "2011-11-03T22:47:31.159Z", + "0.1.0": "2011-11-07T20:31:36.303Z", + "0.1.1": "2011-11-15T03:06:24.125Z", + "0.1.2": "2011-11-15T07:36:33.548Z", + "0.1.3": "2011-11-30T18:55:58.161Z", + "0.2.0": "2011-12-04T21:19:19.036Z", + "0.2.1": "2011-12-05T05:28:12.234Z", + "0.2.2": "2011-12-09T23:41:31.294Z", + "0.2.3": "2011-12-09T23:42:34.831Z", + "0.2.4": "2011-12-10T00:06:50.809Z", + "0.2.5": "2011-12-10T00:18:54.036Z" + }, + "author": { + "name": "Craig Condon" + }, + "repository": { + "type": "git", + "url": "git://github.com/crcn/celeri.git" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/celeri/0.0.3", + "0.0.5": "http://registry.npmjs.org/celeri/0.0.5", + "0.0.6": "http://registry.npmjs.org/celeri/0.0.6", + "0.0.7": "http://registry.npmjs.org/celeri/0.0.7", + "0.0.8": "http://registry.npmjs.org/celeri/0.0.8", + "0.0.9": "http://registry.npmjs.org/celeri/0.0.9", + "0.0.10": "http://registry.npmjs.org/celeri/0.0.10", + "0.1.0": "http://registry.npmjs.org/celeri/0.1.0", + "0.1.1": "http://registry.npmjs.org/celeri/0.1.1", + "0.1.2": "http://registry.npmjs.org/celeri/0.1.2", + "0.1.3": "http://registry.npmjs.org/celeri/0.1.3", + "0.2.0": "http://registry.npmjs.org/celeri/0.2.0", + "0.2.1": "http://registry.npmjs.org/celeri/0.2.1", + "0.2.2": "http://registry.npmjs.org/celeri/0.2.2", + "0.2.3": "http://registry.npmjs.org/celeri/0.2.3", + "0.2.4": "http://registry.npmjs.org/celeri/0.2.4", + "0.2.5": "http://registry.npmjs.org/celeri/0.2.5" + }, + "dist": { + "0.0.3": { + "shasum": "b67f49d18eaa43a7419e46288032317fc54711e0", + "tarball": "http://registry.npmjs.org/celeri/-/celeri-0.0.3.tgz" + }, + "0.0.5": { + "shasum": "e508982c3eac2d7d848398181b61543a5b72ca24", + "tarball": "http://registry.npmjs.org/celeri/-/celeri-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "0984f6ab40ed8355e71838e864517c36c6068760", + "tarball": "http://registry.npmjs.org/celeri/-/celeri-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "7d438c3aecd726ee993b19602f053a64081a5fd6", + "tarball": "http://registry.npmjs.org/celeri/-/celeri-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "e5fd51d644126863f37bb78266571e69105af2ca", + "tarball": "http://registry.npmjs.org/celeri/-/celeri-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "26517c544f0db44962464b9f537f70b4ac26cc9c", + "tarball": "http://registry.npmjs.org/celeri/-/celeri-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "73aaac6f5931491ef19d7b1a77902c5b499c82e9", + "tarball": "http://registry.npmjs.org/celeri/-/celeri-0.0.10.tgz" + }, + "0.1.0": { + "shasum": "c50499b1861601240b68329bdb0679f213da5be5", + "tarball": "http://registry.npmjs.org/celeri/-/celeri-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "ed8a8ee7476eb10e6dcbc643d537d0df880dbe96", + "tarball": "http://registry.npmjs.org/celeri/-/celeri-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "ad0ad5d4eae0f10806419ddf571540bd5898e758", + "tarball": "http://registry.npmjs.org/celeri/-/celeri-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "006fc9a40a0df86498695b137047dcde9a0ddec1", + "tarball": "http://registry.npmjs.org/celeri/-/celeri-0.1.3.tgz" + }, + "0.2.0": { + "shasum": "733c31c5c7b5556d0394a19d89695a34f81f99d7", + "tarball": "http://registry.npmjs.org/celeri/-/celeri-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "29dccb19bad7f407f308b10ea855faab66e435b1", + "tarball": "http://registry.npmjs.org/celeri/-/celeri-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "6fe3ed0b7da2c9521012485c7e1b7ee61ec59b1e", + "tarball": "http://registry.npmjs.org/celeri/-/celeri-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "228a04c60cc90bd2cf52a6c4bdcdb92d3f15e9a4", + "tarball": "http://registry.npmjs.org/celeri/-/celeri-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "54f6d0bec2e7453b02707b9ac7fbcaeab0348eaa", + "tarball": "http://registry.npmjs.org/celeri/-/celeri-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "fa7d7671b92311be2c77d8c520f0779d21a88965", + "tarball": "http://registry.npmjs.org/celeri/-/celeri-0.2.5.tgz" + } + }, + "url": "http://registry.npmjs.org/celeri/" + }, + "cempl8": { + "name": "cempl8", + "description": "JS macros, simple or complex", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "thejh", + "email": "jannhorn@gmail.com" + } + ], + "time": { + "modified": "2011-09-16T20:34:02.327Z", + "created": "2011-08-21T14:31:08.656Z", + "0.1.0": "2011-08-21T14:31:11.903Z", + "0.1.1": "2011-09-16T19:00:28.142Z" + }, + "author": { + "name": "Jann Horn", + "email": "jannhorn@googlemail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/thejh/node-cempl8.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/cempl8/0.1.0", + "0.1.1": "http://registry.npmjs.org/cempl8/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "ea4eba88f6705e9651fbc6b75c05971a882b1013", + "tarball": "http://registry.npmjs.org/cempl8/-/cempl8-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "0da2f1debc08af93e122fffb0e7128b567fd35d5", + "tarball": "http://registry.npmjs.org/cempl8/-/cempl8-0.1.1.tgz" + } + }, + "keywords": [ + "macros", + "templates", + "code", + "macro", + "template", + "" + ], + "url": "http://registry.npmjs.org/cempl8/" + }, + "cereal": { + "name": "cereal", + "dist-tags": { + "latest": "0.0.7" + }, + "readme": "# Cereal\n\nSerialisation Library for JavaScript that respects object aliases.\n\nCan be used either client-side or in NodeJS.\n\n## What does it solve?\n\n### Aliases\n\n var x = {};\n var y = {a: x, b: x};\n\nIf you take the above and then do `JSON.parse(JSON.stringify(y))` then\nyou will lose the alias to `x`: what you'll get back will be `{a: {},\nb: {}}`.\n\nIf you instead do `Cereal.parse(Cereal.stringify(y))` then you'll get\nback the correct object shape, with both `a` and `b` pointing to the\nsame object.\n\n### Loops\n\nJSON can't cope with cyclical data structures. Cereal can.\n\n var x = {};\n x.x = x;\n\nJSON will blow up if you try to `stringify(x)`. Cereal will work\ncorrectly.\n\n## Anything else?\n\nJSON invokes `toJSON` on an object before encoding it. Analogously to\nthis, Cereal invokes invoking a `cerealise` function if it exists and\nencoding what is returned from that.\n\nNote that Cereal first rewrites the object structure to something\nwithout loops or aliases (but from which the loops and aliases can be\nreconstructed) and then it just uses normal JSON encoding on the\nresult. And vice-versa.\n\nAs a result, Cereal will ignore everything that JSON would ignore\ntoo. Thus as normal, you lose functions, prototypes etc etc.\n", + "maintainers": [ + { + "name": "msackman", + "email": "matthew@rabbitmq.com" + } + ], + "time": { + "modified": "2011-12-08T14:41:14.354Z", + "created": "2011-11-30T16:17:50.412Z", + "0.0.1": "2011-11-30T16:17:51.527Z", + "0.0.2": "2011-11-30T16:19:52.040Z", + "0.0.3": "2011-12-01T12:16:02.471Z", + "0.0.4": "2011-12-07T13:04:44.370Z", + "0.0.5": "2011-12-07T18:20:51.484Z", + "0.0.6": "2011-12-07T21:44:07.588Z", + "0.0.7": "2011-12-08T14:41:14.354Z" + }, + "author": { + "name": "Matthew Sackman" + }, + "repository": { + "type": "git", + "url": "git://github.com/atomizejs/cereal.git" + }, + "description": "Serialisation library for JavaScript that understands object graphs", + "versions": { + "0.0.1": "http://registry.npmjs.org/cereal/0.0.1", + "0.0.2": "http://registry.npmjs.org/cereal/0.0.2", + "0.0.3": "http://registry.npmjs.org/cereal/0.0.3", + "0.0.4": "http://registry.npmjs.org/cereal/0.0.4", + "0.0.5": "http://registry.npmjs.org/cereal/0.0.5", + "0.0.6": "http://registry.npmjs.org/cereal/0.0.6", + "0.0.7": "http://registry.npmjs.org/cereal/0.0.7" + }, + "dist": { + "0.0.1": { + "shasum": "334d78b0ad2b350d1c9ba2534fdc643604101c41", + "tarball": "http://registry.npmjs.org/cereal/-/cereal-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "1468ffc8809401a79ca7639801609e1b7c97e40b", + "tarball": "http://registry.npmjs.org/cereal/-/cereal-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "7316d3284f7dd1b49bdfe1088218d4f09165dbf4", + "tarball": "http://registry.npmjs.org/cereal/-/cereal-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "646cb40c652ad75bb10d4a5a4c115ca5c10c28a1", + "tarball": "http://registry.npmjs.org/cereal/-/cereal-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "1ded37b6b6c8b776ceae620d36c33baf220aa4d3", + "tarball": "http://registry.npmjs.org/cereal/-/cereal-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "4b0c2a3d5f79626c99f031ad1b776c7add16feb1", + "tarball": "http://registry.npmjs.org/cereal/-/cereal-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "b483b91db95ebb4c4eb9fbf203a9c12b47f13414", + "tarball": "http://registry.npmjs.org/cereal/-/cereal-0.0.7.tgz" + } + }, + "url": "http://registry.npmjs.org/cereal/" + }, + "cfg": { + "name": "cfg", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "rauchg", + "email": "rauchg@gmail.com" + } + ], + "time": { + "modified": "2011-09-12T16:45:15.829Z", + "created": "2011-09-12T16:45:13.011Z", + "0.0.2": "2011-09-12T16:45:15.829Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/LearnBoost/cfg.js.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/cfg/0.0.2" + }, + "dist": { + "0.0.2": { + "shasum": "9096545e5fcc4bd3a42ec0aace6ed632450c30e0", + "tarball": "http://registry.npmjs.org/cfg/-/cfg-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/cfg/" + }, + "cgi": { + "name": "cgi", + "description": "A stack/connect layer to invoke and serve CGI executables.", + "dist-tags": { + "latest": "0.0.8" + }, + "maintainers": [ + { + "name": "TooTallNate", + "email": "nathan@tootallnate.net" + } + ], + "time": { + "modified": "2011-03-28T19:57:55.561Z", + "created": "2011-02-17T22:20:35.511Z", + "0.0.1": "2011-02-17T22:20:36.655Z", + "0.0.2": "2011-02-18T18:08:05.771Z", + "0.0.3": "2011-02-19T00:01:07.524Z", + "0.0.4": "2011-03-11T01:24:58.199Z", + "0.0.5": "2011-03-11T01:28:55.121Z", + "0.0.6": "2011-03-11T01:30:14.952Z", + "0.0.7": "2011-03-28T18:19:43.153Z", + "0.0.8": "2011-03-28T19:57:55.561Z" + }, + "author": { + "name": "Nathan Rajlich", + "email": "nathan@tootallnate.net", + "url": "http://tootallnate.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/TooTallNate/node-cgi.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/cgi/0.0.1", + "0.0.2": "http://registry.npmjs.org/cgi/0.0.2", + "0.0.3": "http://registry.npmjs.org/cgi/0.0.3", + "0.0.4": "http://registry.npmjs.org/cgi/0.0.4", + "0.0.5": "http://registry.npmjs.org/cgi/0.0.5", + "0.0.6": "http://registry.npmjs.org/cgi/0.0.6", + "0.0.7": "http://registry.npmjs.org/cgi/0.0.7", + "0.0.8": "http://registry.npmjs.org/cgi/0.0.8" + }, + "dist": { + "0.0.1": { + "shasum": "12ad919deb6f0ad355233e24b98ff742407cf2f6", + "tarball": "http://registry.npmjs.org/cgi/-/cgi-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "a557a952316732d523bac14b918bc4d907c22a64", + "tarball": "http://registry.npmjs.org/cgi/-/cgi-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "1a9bf7c0e32badf2dd08bac7d39bc46b8b8a8531", + "tarball": "http://registry.npmjs.org/cgi/-/cgi-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "df615e9c4facdb715c8e55ed89672c6597f19f0f", + "tarball": "http://registry.npmjs.org/cgi/-/cgi-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "0985bdc3a17666539ba7d39c30357f005da1f401", + "tarball": "http://registry.npmjs.org/cgi/-/cgi-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "4033740b74199b553dc63a74ea32ea741c0be28f", + "tarball": "http://registry.npmjs.org/cgi/-/cgi-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "2b22877b0d1ec9b69cc0d3adaa4352ea7974f6d6", + "tarball": "http://registry.npmjs.org/cgi/-/cgi-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "7fda711295a84cef71fa2132bc8e173fdfe25cfc", + "tarball": "http://registry.npmjs.org/cgi/-/cgi-0.0.8.tgz" + } + }, + "url": "http://registry.npmjs.org/cgi/" + }, + "chai": { + "name": "chai", + "description": "Assertion framework for node.js and the browser.", + "dist-tags": { + "latest": "0.0.2" + }, + "readme": "", + "maintainers": [ + { + "name": "jakeluer", + "email": "jake.luer@incatern.com" + } + ], + "time": { + "modified": "2011-12-07T17:00:00.424Z", + "created": "2011-12-07T06:53:41.352Z", + "0.0.1": "2011-12-07T06:53:41.900Z", + "0.0.2": "2011-12-07T17:00:00.424Z" + }, + "author": { + "name": "Jake Luer", + "email": "jake@alogicalparadox.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:logicalparadox/sherlock.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/chai/0.0.1", + "0.0.2": "http://registry.npmjs.org/chai/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "a858cf9ecc09afb1651022371dbe5ae0bdde77db", + "tarball": "http://registry.npmjs.org/chai/-/chai-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "368ce03612b088606011f25a479ed8b4e0b1f2c8", + "tarball": "http://registry.npmjs.org/chai/-/chai-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/chai/" + }, + "chain": { + "name": "chain", + "description": "A microframework for handling async JS", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "cohara87", + "email": "cohara87@gmail.com" + } + ], + "time": { + "modified": "2011-02-19T01:00:17.936Z", + "created": "2011-01-22T11:09:32.168Z", + "0.1.0": "2011-01-22T11:09:33.421Z", + "0.1.1": "2011-01-22T13:03:37.733Z", + "0.1.2": "2011-01-22T21:38:28.319Z", + "0.1.3": "2011-02-19T01:00:17.936Z" + }, + "author": { + "name": "Chris O'Hara", + "email": "cohara87@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/chriso/chain.js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/chain/0.1.0", + "0.1.1": "http://registry.npmjs.org/chain/0.1.1", + "0.1.2": "http://registry.npmjs.org/chain/0.1.2", + "0.1.3": "http://registry.npmjs.org/chain/0.1.3" + }, + "dist": { + "0.1.0": { + "shasum": "313ff60f33dc0a0504fe8eafe88b1330075cd93d", + "tarball": "http://registry.npmjs.org/chain/-/chain-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "ef3e3a57d41e8a69f7328f68f44041daa11c35bd", + "tarball": "http://registry.npmjs.org/chain/-/chain-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "b5ecb1ed9788a871421e31d8346b09a2f5d0886e", + "tarball": "http://registry.npmjs.org/chain/-/chain-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "c730f27781260a31aa010850add65f936f497e30", + "tarball": "http://registry.npmjs.org/chain/-/chain-0.1.3.tgz" + } + }, + "keywords": [ + "async", + "asynchronous", + "events", + "parallel" + ], + "url": "http://registry.npmjs.org/chain/" + }, + "chain-gang": { + "name": "chain-gang", + "dist-tags": { + "latest": "1.0.0-beta4" + }, + "maintainers": [ + { + "name": "technoweenie", + "email": "technoweenie@gmail.com" + } + ], + "author": { + "name": "technoweenie" + }, + "time": { + "modified": "2011-05-22T11:56:56.750Z", + "created": "2011-03-12T18:11:42.405Z", + "0.1.0": "2011-03-12T18:11:42.405Z", + "0.2.0": "2011-03-12T18:11:42.405Z", + "0.2.1": "2011-03-12T18:11:42.405Z", + "1.0.0-beta1": "2011-03-12T18:11:42.405Z", + "1.0.0-beta2": "2011-03-12T18:19:39.981Z", + "1.0.0-beta3": "2011-03-12T18:28:54.500Z", + "1.0.0-beta4": "2011-05-22T11:56:56.750Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/technoweenie/node-chain-gang.git" + }, + "description": "Small in-process queueing library", + "versions": { + "0.1.0": "http://registry.npmjs.org/chain-gang/0.1.0", + "0.2.0": "http://registry.npmjs.org/chain-gang/0.2.0", + "0.2.1": "http://registry.npmjs.org/chain-gang/0.2.1", + "1.0.0-beta3": "http://registry.npmjs.org/chain-gang/1.0.0-beta3", + "1.0.0-beta4": "http://registry.npmjs.org/chain-gang/1.0.0-beta4" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/chain-gang/-/chain-gang-0.1.0.tgz" + }, + "0.2.0": { + "tarball": "http://registry.npmjs.org/chain-gang/-/chain-gang-0.2.0.tgz" + }, + "0.2.1": { + "tarball": "http://registry.npmjs.org/chain-gang/-/chain-gang-0.2.1.tgz" + }, + "1.0.0-beta3": { + "shasum": "9d12dba466a7030405130db38b8d024807128ccb", + "tarball": "http://registry.npmjs.org/chain-gang/-/chain-gang-1.0.0-beta3.tgz" + }, + "1.0.0-beta4": { + "shasum": "c7820d47046aa4325059b07258f5009f0436d17c", + "tarball": "http://registry.npmjs.org/chain-gang/-/chain-gang-1.0.0-beta4.tgz" + } + }, + "url": "http://registry.npmjs.org/chain-gang/" + }, + "chain-tiny": { + "name": "chain-tiny", + "description": "A simple control flow library.", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "hokaccha", + "email": "k.hokamura@gmail.com" + } + ], + "time": { + "modified": "2011-11-10T06:02:55.694Z", + "created": "2011-10-10T06:56:02.275Z", + "0.1.0": "2011-10-10T06:56:04.634Z", + "0.1.1": "2011-10-10T08:00:12.985Z", + "0.1.2": "2011-10-17T03:20:47.837Z", + "0.1.3": "2011-11-10T06:02:55.694Z" + }, + "author": { + "name": "Kazuhito Hokamura", + "email": "k.hokamura@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/hokaccha/node-chain-tiny.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/chain-tiny/0.1.0", + "0.1.1": "http://registry.npmjs.org/chain-tiny/0.1.1", + "0.1.2": "http://registry.npmjs.org/chain-tiny/0.1.2", + "0.1.3": "http://registry.npmjs.org/chain-tiny/0.1.3" + }, + "dist": { + "0.1.0": { + "shasum": "829d3de63bf28f17e33e8290822397e6baacb7e5", + "tarball": "http://registry.npmjs.org/chain-tiny/-/chain-tiny-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "5c3c0a36e0d086c7cfafc5acdb475ae6a3881c54", + "tarball": "http://registry.npmjs.org/chain-tiny/-/chain-tiny-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "808ddbf1e323a7966dd4f3612739a9b2f99335bc", + "tarball": "http://registry.npmjs.org/chain-tiny/-/chain-tiny-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "9acdb6c86498d2637e8e164336f590045dd71cd5", + "tarball": "http://registry.npmjs.org/chain-tiny/-/chain-tiny-0.1.3.tgz" + } + }, + "keywords": [ + "flow", + "async", + "chain" + ], + "url": "http://registry.npmjs.org/chain-tiny/" + }, + "chainer": { + "name": "chainer", + "description": "Super simple and lightweight function chain.", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "qard", + "email": "admin@stephenbelanger.com" + } + ], + "time": { + "modified": "2011-08-11T18:10:57.101Z", + "created": "2011-04-10T00:16:09.033Z", + "0.0.1": "2011-04-10T00:16:11.770Z", + "0.0.2": "2011-04-10T19:30:12.204Z", + "0.0.3": "2011-04-11T18:08:12.558Z", + "0.0.4": "2011-04-11T19:31:15.692Z", + "0.0.5": "2011-08-10T23:01:37.544Z" + }, + "author": { + "name": "Stephen Belanger", + "email": "admin@stephenbelanger.com", + "url": "stephenbelanger.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Qard/node-chainer.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/chainer/0.0.1", + "0.0.2": "http://registry.npmjs.org/chainer/0.0.2", + "0.0.3": "http://registry.npmjs.org/chainer/0.0.3", + "0.0.4": "http://registry.npmjs.org/chainer/0.0.4", + "0.0.5": "http://registry.npmjs.org/chainer/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "a16397547c1ea9f809c03ea9d69a18a4f96ea438", + "tarball": "http://registry.npmjs.org/chainer/-/chainer-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "6429c5277ac4bb8d6d049554b0c2bffdd685085c", + "tarball": "http://registry.npmjs.org/chainer/-/chainer-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "70041f9c00b248fd9220cf920578382b779ac28d", + "tarball": "http://registry.npmjs.org/chainer/-/chainer-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "f6ec8089e610614119c69fdd098b4ddcb1a01670", + "tarball": "http://registry.npmjs.org/chainer/-/chainer-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "3d4444165de67fdd49247efcd72104cedeaa64f6", + "tarball": "http://registry.npmjs.org/chainer/-/chainer-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/chainer/" + }, + "chainify": { + "name": "chainify", + "description": "The chainify module of FuturesJS (Ender.JS and Node.JS)", + "dist-tags": { + "latest": "2.1.1" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-07-13T20:33:23.083Z", + "created": "2011-07-13T20:33:22.710Z", + "2.1.1": "2011-07-13T20:33:23.083Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com", + "url": "http://coolaj86.info" + }, + "repository": { + "type": "git", + "url": "git://github.com/coolaj86/futures.git" + }, + "versions": { + "2.1.1": "http://registry.npmjs.org/chainify/2.1.1" + }, + "dist": { + "2.1.1": { + "shasum": "253cd2a95499c5cb6bb59ca0f253d39240b1a38e", + "tarball": "http://registry.npmjs.org/chainify/-/chainify-2.1.1.tgz" + } + }, + "keywords": [ + "flow-control", + "async", + "asynchronous", + "futures", + "chainify", + "chain", + "step", + "util", + "browser" + ], + "url": "http://registry.npmjs.org/chainify/" + }, + "chains": { + "name": "chains", + "description": "Task chaining library for JS", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "fd", + "email": "simon.menke@gmail.com" + } + ], + "author": { + "name": "Simon Menke", + "email": "simon.menke@gmail.com", + "url": "https://github.com/fd" + }, + "time": { + "modified": "2010-12-22T15:37:11.229Z", + "created": "2010-12-22T15:37:11.229Z", + "0.1.0": "2010-12-22T15:37:11.229Z", + "0.1.1": "2010-12-22T15:37:11.229Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/chains/0.1.0", + "0.1.1": "http://registry.npmjs.org/chains/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "3a14bee83bbcde4a6968a8cc1a9cf0280cd90328", + "tarball": "http://registry.npmjs.org/chains/-/chains-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "f8a8106069471e49fc41a303486ab53543ca65e9", + "tarball": "http://registry.npmjs.org/chains/-/chains-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/chains/" + }, + "Chains": { + "name": "Chains", + "description": "Create a chain of several asynchronous methods where the next method is used as the callback of the previous method.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "bluejeansandrain", + "email": "bluejeansandrain@gmail.com" + } + ], + "time": { + "modified": "2011-11-11T03:33:38.630Z", + "created": "2011-11-11T03:33:37.382Z", + "0.1.1": "2011-11-11T03:33:38.630Z" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/Chains/0.1.1" + }, + "dist": { + "0.1.1": { + "shasum": "db4d9279791497129a93c318f66d34365dbaadde", + "tarball": "http://registry.npmjs.org/Chains/-/Chains-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/Chains/" + }, + "chainsaw": { + "name": "chainsaw", + "description": "Build chainable fluent interfaces the easy way... with a freakin' chainsaw!", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "repository": { + "type": "git", + "url": "git://github.com/substack/node-chainsaw.git" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "time": { + "modified": "2011-07-17T08:42:45.022Z", + "created": "2010-12-21T04:29:40.885Z", + "0.0.1": "2010-12-21T04:29:40.885Z", + "0.0.3": "2010-12-21T04:29:40.885Z", + "0.0.4": "2010-12-21T04:29:40.885Z", + "0.0.5": "2010-12-21T04:29:40.885Z", + "0.0.6": "2011-02-18T12:27:34.152Z", + "0.0.7": "2011-04-28T06:47:30.292Z", + "0.0.8": "2011-06-11T02:47:00.501Z", + "0.0.9": "2011-06-18T05:11:45.063Z", + "0.1.0": "2011-07-17T08:42:45.022Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/chainsaw/0.0.1", + "0.0.3": "http://registry.npmjs.org/chainsaw/0.0.3", + "0.0.4": "http://registry.npmjs.org/chainsaw/0.0.4", + "0.0.5": "http://registry.npmjs.org/chainsaw/0.0.5", + "0.0.6": "http://registry.npmjs.org/chainsaw/0.0.6", + "0.0.7": "http://registry.npmjs.org/chainsaw/0.0.7", + "0.0.8": "http://registry.npmjs.org/chainsaw/0.0.8", + "0.0.9": "http://registry.npmjs.org/chainsaw/0.0.9", + "0.1.0": "http://registry.npmjs.org/chainsaw/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "b5309db708a02c403d8b351b68759021a7814cd7", + "tarball": "http://registry.npmjs.org/chainsaw/-/chainsaw-0.0.1.tgz" + }, + "0.0.3": { + "shasum": "a2a16fcccb383ba56db61373324d6b3a6dff4532", + "tarball": "http://registry.npmjs.org/chainsaw/-/chainsaw-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "4921cc8263528b0ce20e2438ddbb24cf726ed4ef", + "tarball": "http://registry.npmjs.org/chainsaw/-/chainsaw-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "9bb7129784289b48026a614b4bac68526aa53bcd", + "tarball": "http://registry.npmjs.org/chainsaw/-/chainsaw-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "d710786bcb7649a88abe9a897d94c2b5bfad8de3", + "tarball": "http://registry.npmjs.org/chainsaw/-/chainsaw-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "bc46b1390236f397821abb3dabf4a3427872dc97", + "tarball": "http://registry.npmjs.org/chainsaw/-/chainsaw-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "d2241fcb80c1d49bb478a1ea4d206d9a0ea0db1e", + "tarball": "http://registry.npmjs.org/chainsaw/-/chainsaw-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "11a05102d1c4c785b6d0415d336d5a3a1612913e", + "tarball": "http://registry.npmjs.org/chainsaw/-/chainsaw-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "5eab50b28afe58074d0d58291388828b5e5fbc98", + "tarball": "http://registry.npmjs.org/chainsaw/-/chainsaw-0.1.0.tgz" + } + }, + "keywords": [ + "chain", + "fluent", + "interface", + "monad", + "monadic" + ], + "url": "http://registry.npmjs.org/chainsaw/" + }, + "changelog": { + "name": "changelog", + "description": "Changelog is a command line utility (and module) that generates a changelog in markdown, json, or color output for modules in npmjs.org's registry as well as any public github.com repo.", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "dylang", + "email": "dylang@gmail.com" + } + ], + "time": { + "modified": "2011-11-21T21:54:17.653Z", + "created": "2011-08-01T20:08:10.621Z", + "0.0.1": "2011-08-01T20:08:13.136Z", + "0.0.2": "2011-08-04T02:56:55.459Z", + "0.0.3": "2011-08-04T03:37:25.431Z", + "0.0.4": "2011-08-04T19:55:17.141Z", + "0.0.5": "2011-08-05T18:22:13.727Z", + "0.0.6": "2011-08-07T03:57:21.560Z", + "0.0.7": "2011-08-10T04:02:14.990Z", + "0.0.8": "2011-08-16T15:02:03.802Z", + "0.0.9": "2011-08-23T15:30:50.534Z", + "0.1.0": "2011-08-23T16:14:58.271Z", + "0.1.1": "2011-08-24T19:58:41.487Z", + "0.1.2": "2011-08-26T18:57:43.396Z", + "0.1.3": "2011-11-21T21:54:17.653Z" + }, + "author": { + "name": "Dylan Greene", + "email": "dylang@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dylang/changelog.git" + }, + "users": { + "dylang": true + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/changelog/0.0.1", + "0.0.2": "http://registry.npmjs.org/changelog/0.0.2", + "0.0.3": "http://registry.npmjs.org/changelog/0.0.3", + "0.0.4": "http://registry.npmjs.org/changelog/0.0.4", + "0.0.5": "http://registry.npmjs.org/changelog/0.0.5", + "0.0.6": "http://registry.npmjs.org/changelog/0.0.6", + "0.0.7": "http://registry.npmjs.org/changelog/0.0.7", + "0.0.8": "http://registry.npmjs.org/changelog/0.0.8", + "0.0.9": "http://registry.npmjs.org/changelog/0.0.9", + "0.1.0": "http://registry.npmjs.org/changelog/0.1.0", + "0.1.1": "http://registry.npmjs.org/changelog/0.1.1", + "0.1.2": "http://registry.npmjs.org/changelog/0.1.2", + "0.1.3": "http://registry.npmjs.org/changelog/0.1.3" + }, + "dist": { + "0.0.1": { + "shasum": "1a59755583fa593c8971ed9cf76461a8e5182aaf", + "tarball": "http://registry.npmjs.org/changelog/-/changelog-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "2a8600a123f70050f3611217a5693fb15e6dd5da", + "tarball": "http://registry.npmjs.org/changelog/-/changelog-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "1d54a37e448479341a0fbeab11ffb9c387c90d55", + "tarball": "http://registry.npmjs.org/changelog/-/changelog-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "f033a6237788f88c692cb78f415e328f88fdc696", + "tarball": "http://registry.npmjs.org/changelog/-/changelog-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "a635f61e798b6971c1adb66bc165f6bc41c6d40a", + "tarball": "http://registry.npmjs.org/changelog/-/changelog-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "f1aac0e4fc207a067f10332a1dee7d65d277e3dd", + "tarball": "http://registry.npmjs.org/changelog/-/changelog-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "10a853120bb10353698b16afe516c2d6efb5fafa", + "tarball": "http://registry.npmjs.org/changelog/-/changelog-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "098518e49bc9ed1522cacdd616cda4f55a290134", + "tarball": "http://registry.npmjs.org/changelog/-/changelog-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "8754ff8078be458efe9ef506412cce2fe306c8f1", + "tarball": "http://registry.npmjs.org/changelog/-/changelog-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "8fe4b7d4f67527e3148cd7e6ffc98c3cc080659d", + "tarball": "http://registry.npmjs.org/changelog/-/changelog-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "8d6f43ae1556187988f95e6badbd1bc4f5db2f8f", + "tarball": "http://registry.npmjs.org/changelog/-/changelog-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "ef6dfa029a8e0e4b1487bd97c0498739bd4bdf8e", + "tarball": "http://registry.npmjs.org/changelog/-/changelog-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "8c2f064200815ad8dddaf32371577b327649983b", + "tarball": "http://registry.npmjs.org/changelog/-/changelog-0.1.3.tgz" + } + }, + "keywords": [ + "changes", + "history", + "what's new", + "change set" + ], + "url": "http://registry.npmjs.org/changelog/" + }, + "changemate": { + "name": "changemate", + "description": "Change Notification service (part of the Steelmesh stack)", + "dist-tags": { + "latest": "0.2.0" + }, + "readme": "# Steelmesh Changeling\n\nChangeling is a change notification service and framework.\n", + "maintainers": [ + { + "name": "damonoehlman", + "email": "damon.oehlman@sidelab.com" + } + ], + "time": { + "modified": "2011-12-04T00:27:07.925Z", + "created": "2011-11-30T04:56:37.049Z", + "0.1.0": "2011-11-30T04:56:41.864Z", + "0.2.0": "2011-12-04T00:25:36.756Z" + }, + "author": { + "name": "Damon Oehlman", + "email": "damon.oehlman@sidelab.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/steelmesh/changemate.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/changemate/0.2.0" + }, + "dist": { + "0.2.0": { + "shasum": "6dd60fdebdad976f922b2f447f75ecffb18601b8", + "tarball": "http://registry.npmjs.org/changemate/-/changemate-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/changemate/" + }, + "channel-server": { + "name": "channel-server", + "description": "buddycloud channels service for XMPP", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "astro", + "email": "astro@spaceboyz.net" + } + ], + "time": { + "modified": "2011-11-14T21:37:40.875Z", + "created": "2011-02-01T17:59:43.145Z", + "0.0.1": "2011-02-01T17:59:43.730Z" + }, + "author": { + "name": "Stephan Maka" + }, + "users": { + "astro": true + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/channel-server/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "c2a958e657ef24c35d3b9084d0e6b64ae3378f5d", + "tarball": "http://registry.npmjs.org/channel-server/-/channel-server-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/channel-server/" + }, + "channels": { + "name": "channels", + "description": "Event channels in node.js", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "pita", + "email": "petermartischka@googlemail.com" + } + ], + "time": { + "modified": "2011-08-07T16:14:27.945Z", + "created": "2011-07-28T18:56:44.188Z", + "0.0.1": "2011-07-28T18:56:45.222Z", + "0.0.2": "2011-08-07T16:14:27.945Z" + }, + "author": { + "name": "Peter 'Pita' Martischka", + "email": "petermartischka@googlemail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/channels/0.0.1", + "0.0.2": "http://registry.npmjs.org/channels/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "bf379a7d5b08a7260ec8b26bd799382dd1b93eea", + "tarball": "http://registry.npmjs.org/channels/-/channels-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "d9ba8b408ac74eee0bfa7c1a322963e1668ec6a1", + "tarball": "http://registry.npmjs.org/channels/-/channels-0.0.2.tgz" + } + }, + "keywords": [ + "async", + "flow control" + ], + "url": "http://registry.npmjs.org/channels/" + }, + "chaos": { + "name": "chaos", + "description": "chaos is a node.js database", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "stagas", + "email": "gstagas@gmail.com" + } + ], + "author": { + "name": "George Stagas", + "email": "gstagas@gmail.com", + "url": "http://stagas.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/stagas/chaos.git" + }, + "time": { + "modified": "2011-08-24T05:56:41.195Z", + "created": "2010-12-28T12:45:40.272Z", + "0.0.1": "2010-12-28T12:45:40.272Z", + "0.0.1a": "2010-12-28T12:45:40.272Z", + "0.0.2": "2010-12-28T12:45:40.272Z", + "0.0.3": "2010-12-28T12:45:40.272Z", + "0.1.0": "2010-12-28T12:45:40.272Z", + "0.1.1": "2010-12-28T12:45:40.272Z", + "0.1.2": "2010-12-28T12:45:40.272Z", + "0.1.3": "2010-12-28T12:45:40.272Z", + "0.1.4": "2010-12-28T12:45:40.272Z", + "0.1.5": "2010-12-28T12:45:40.272Z", + "0.1.6-pre": "2010-12-28T12:45:40.272Z", + "0.1.6": "2011-03-28T17:31:06.848Z", + "0.1.7": "2011-03-31T09:33:39.136Z", + "0.2.0": "2011-08-24T05:56:41.195Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/chaos/0.0.1", + "0.0.1a": "http://registry.npmjs.org/chaos/0.0.1a", + "0.0.2": "http://registry.npmjs.org/chaos/0.0.2", + "0.0.3": "http://registry.npmjs.org/chaos/0.0.3", + "0.1.0": "http://registry.npmjs.org/chaos/0.1.0", + "0.1.1": "http://registry.npmjs.org/chaos/0.1.1", + "0.1.2": "http://registry.npmjs.org/chaos/0.1.2", + "0.1.3": "http://registry.npmjs.org/chaos/0.1.3", + "0.1.4": "http://registry.npmjs.org/chaos/0.1.4", + "0.1.5": "http://registry.npmjs.org/chaos/0.1.5", + "0.1.6-pre": "http://registry.npmjs.org/chaos/0.1.6-pre", + "0.1.6": "http://registry.npmjs.org/chaos/0.1.6", + "0.1.7": "http://registry.npmjs.org/chaos/0.1.7", + "0.2.0": "http://registry.npmjs.org/chaos/0.2.0" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/chaos/-/chaos-0.0.1.tgz" + }, + "0.0.1a": { + "tarball": "http://registry.npmjs.org/chaos/-/chaos-0.0.1a.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/chaos/-/chaos-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/chaos/-/chaos-0.0.3.tgz" + }, + "0.1.0": { + "tarball": "http://registry.npmjs.org/chaos/-/chaos-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://registry.npmjs.org/chaos/-/chaos-0.1.1.tgz" + }, + "0.1.2": { + "tarball": "http://registry.npmjs.org/chaos/-/chaos-0.1.2.tgz" + }, + "0.1.3": { + "tarball": "http://registry.npmjs.org/chaos/-/chaos-0.1.3.tgz" + }, + "0.1.4": { + "tarball": "http://registry.npmjs.org/chaos/-/chaos-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "6788ae118425aa72fd700da8105c2606da98c605", + "tarball": "http://registry.npmjs.org/chaos/-/chaos-0.1.5.tgz" + }, + "0.1.6-pre": { + "shasum": "7496891fe5678d29accd2d020dad26614beec844", + "tarball": "http://registry.npmjs.org/chaos/-/chaos-0.1.6-pre.tgz" + }, + "0.1.6": { + "shasum": "34fa517760c8e5743e5de5cd88b9fc67054bfe77", + "tarball": "http://registry.npmjs.org/chaos/-/chaos-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "833e16dbb8914c0ade6537629281d0efe32753be", + "tarball": "http://registry.npmjs.org/chaos/-/chaos-0.1.7.tgz" + }, + "0.2.0": { + "shasum": "0deeb51fc16888e68bd1096fcedfc6835e6e0ac1", + "tarball": "http://registry.npmjs.org/chaos/-/chaos-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/chaos/" + }, + "chard": { + "name": "chard", + "dist-tags": { + "latest": "0.0.3" + }, + "readme": " \n\n## Requirements\n\n* [Bonsai](https://github.com/spiceapps/bonsai)\n* [npm](http://npmjs.org/)\n\n\n## Installation\n\n#### First install via NPM:\n\n\tnpm install chard\n\n#### Next, pick your server type\n\nFiring up a node.js reverse proxy:\n\n\tchard start node\n\nOr use NGINX (must have NGINX installed):\n\t\n\tchar start nginx\n\n\n\n\n\n", + "maintainers": [ + { + "name": "architectd", + "email": "craig.j.condon@gmail.com" + } + ], + "time": { + "modified": "2011-12-05T05:42:57.104Z", + "created": "2011-11-27T03:52:48.770Z", + "0.0.2": "2011-11-27T03:52:49.644Z", + "0.0.3": "2011-12-05T05:42:57.104Z" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/chard/0.0.2", + "0.0.3": "http://registry.npmjs.org/chard/0.0.3" + }, + "dist": { + "0.0.2": { + "shasum": "e85c64a0855b69b14fe1e90e913fb55a2445d300", + "tarball": "http://registry.npmjs.org/chard/-/chard-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "08f3980d5e9ed719e688781d9e5946d0b0a6e0e2", + "tarball": "http://registry.npmjs.org/chard/-/chard-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/chard/" + }, + "charenc": { + "name": "charenc", + "description": "character encoding utilities", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "pvorb", + "email": "paul@vorb.de" + } + ], + "time": { + "modified": "2011-11-20T22:57:55.899Z", + "created": "2011-09-18T16:27:52.891Z", + "0.0.0": "2011-09-18T16:27:55.174Z", + "0.0.1": "2011-11-20T22:57:55.899Z" + }, + "author": { + "name": "Paul Vorbach", + "email": "paul@vorb.de", + "url": "http://vorb.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/pvorb/node-charenc.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/charenc/0.0.0", + "0.0.1": "http://registry.npmjs.org/charenc/0.0.1" + }, + "dist": { + "0.0.0": { + "shasum": "8e3919f94fe42bfa067c6e967d5478aaab089a54", + "tarball": "http://registry.npmjs.org/charenc/-/charenc-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "004cff9feaf102382ed12db58dd6f962796d6e88", + "tarball": "http://registry.npmjs.org/charenc/-/charenc-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/charenc/" + }, + "chargify": { + "name": "chargify", + "description": "A fairly generic REST interface wrapper for building and accessing Chargify API URLs.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "natevw", + "email": "natevw@yahoo.com" + } + ], + "time": { + "modified": "2011-03-31T16:49:55.691Z", + "created": "2011-03-30T15:32:02.361Z", + "0.1.0": "2011-03-30T15:32:03.062Z", + "0.1.1": "2011-03-31T16:49:55.691Z" + }, + "author": { + "name": "&yet, LLC", + "url": "http://andyet.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/andyet/node-chargify.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/chargify/0.1.0", + "0.1.1": "http://registry.npmjs.org/chargify/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "c47b38040835108c056424f1a91bbb2b86aedda0", + "tarball": "http://registry.npmjs.org/chargify/-/chargify-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "8683f67240373f11ea01a1c477b6abc99d62377c", + "tarball": "http://registry.npmjs.org/chargify/-/chargify-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/chargify/" + }, + "charm": { + "name": "charm", + "description": "ansi control sequences for terminal cursor hopping and colors", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-10-04T18:47:18.455Z", + "created": "2011-08-13T14:13:28.690Z", + "0.0.0": "2011-08-13T14:13:30.244Z", + "0.0.1": "2011-08-14T12:49:50.258Z", + "0.0.2": "2011-08-14T22:16:50.504Z", + "0.0.3": "2011-08-15T03:07:26.109Z", + "0.0.4": "2011-08-15T05:28:47.774Z", + "0.0.5": "2011-08-24T10:49:09.678Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-charm.git" + }, + "users": { + "coverslide": true + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/charm/0.0.0", + "0.0.1": "http://registry.npmjs.org/charm/0.0.1", + "0.0.2": "http://registry.npmjs.org/charm/0.0.2", + "0.0.3": "http://registry.npmjs.org/charm/0.0.3", + "0.0.4": "http://registry.npmjs.org/charm/0.0.4", + "0.0.5": "http://registry.npmjs.org/charm/0.0.5" + }, + "dist": { + "0.0.0": { + "shasum": "01348dfb4f891e5147b1300bf2cfb8a7ca1d1e56", + "tarball": "http://registry.npmjs.org/charm/-/charm-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "4a201b40e1da77a5b2e91696aa908a185245e700", + "tarball": "http://registry.npmjs.org/charm/-/charm-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "186e8abdc967f7018666c54ab087d6ff373a84ce", + "tarball": "http://registry.npmjs.org/charm/-/charm-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "999564147e1d758b61dff3a6c952f314960ed5ed", + "tarball": "http://registry.npmjs.org/charm/-/charm-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "811afabb864e62e710d49c63cf4c82a97a27a290", + "tarball": "http://registry.npmjs.org/charm/-/charm-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "302ee9c2b4accc52fb32e3fe5c755ed3f873578b", + "tarball": "http://registry.npmjs.org/charm/-/charm-0.0.5.tgz" + } + }, + "keywords": [ + "terminal", + "ansi", + "cursor", + "color", + "console", + "control", + "escape", + "sequence" + ], + "url": "http://registry.npmjs.org/charm/" + }, + "chartbeat": { + "name": "chartbeat", + "description": "A NodeJs wrapper for Chartbeat API", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "agilbert", + "email": "alain.gilbert.15@gmail.com" + } + ], + "time": { + "modified": "2011-09-24T08:28:19.103Z", + "created": "2011-09-24T08:28:18.851Z", + "0.0.0": "2011-09-24T08:28:19.103Z" + }, + "author": { + "name": "Alain Gilbert", + "email": "alain.gilbert.15@gmail.com", + "url": "http://agilbert.name/" + }, + "repository": { + "type": "git", + "url": "git://github.com/alaingilbert/chartbeat.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/chartbeat/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "a39ecca062be02d70c78010bac052fa810c89622", + "tarball": "http://registry.npmjs.org/chartbeat/-/chartbeat-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/chartbeat/" + }, + "chartbeat-api": { + "name": "chartbeat-api", + "description": "Simple API wrapper for Chartbeat", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "jrainbow", + "email": "justin.rainbow@gmail.com" + } + ], + "time": { + "modified": "2011-11-03T19:17:10.164Z", + "created": "2011-11-03T19:17:09.207Z", + "0.1.0": "2011-11-03T19:17:10.164Z" + }, + "repository": { + "url": "git://github.com/sheknows/node-chartbeat.git", + "type": "git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/chartbeat-api/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "4cdeb57bfa279cc8db97823e88e813b30661b39f", + "tarball": "http://registry.npmjs.org/chartbeat-api/-/chartbeat-api-0.1.0.tgz" + } + }, + "keywords": [ + "chartbeat", + "chartbeat api" + ], + "url": "http://registry.npmjs.org/chartbeat-api/" + }, + "chat-server": { + "name": "chat-server", + "description": "Everyone has a chat server and this one is mine", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "fictorial", + "email": "brian@fictorial.com" + } + ], + "time": { + "modified": "2011-05-26T05:30:02.571Z", + "created": "2011-05-26T05:02:01.073Z", + "0.0.1": "2011-05-26T05:02:01.393Z", + "0.0.2": "2011-05-26T05:07:50.942Z", + "0.0.3": "2011-05-26T05:30:02.571Z" + }, + "author": { + "name": "Brian Hammond", + "email": "brian@fictorial.com", + "url": "http://fictorial.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/fictorial/chat-server.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/chat-server/0.0.1", + "0.0.2": "http://registry.npmjs.org/chat-server/0.0.2", + "0.0.3": "http://registry.npmjs.org/chat-server/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "ff2e8d31205c4406390f747882a7c5f52b49f24c", + "tarball": "http://registry.npmjs.org/chat-server/-/chat-server-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "ad57e781444ae785fae8a24d49e9829e3b2ea0cc", + "tarball": "http://registry.npmjs.org/chat-server/-/chat-server-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "d7afd2cf66ca606849a584f0b58c831aea0a3779", + "tarball": "http://registry.npmjs.org/chat-server/-/chat-server-0.0.3.tgz" + } + }, + "keywords": [ + "chat", + "server", + "irc" + ], + "url": "http://registry.npmjs.org/chat-server/" + }, + "chatroom": { + "name": "chatroom", + "description": "a chatroom made by nodejs,redis websocket", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "zzlang", + "email": "ilovey2@126.com" + } + ], + "time": { + "modified": "2011-07-31T10:41:09.199Z", + "created": "2011-07-31T10:41:08.329Z", + "0.0.1": "2011-07-31T10:41:09.199Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/chatroom/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "45aa43b52e1ab243805ad6b863d49a13c75764b7", + "tarball": "http://registry.npmjs.org/chatroom/-/chatroom-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/chatroom/" + }, + "chatspire": { + "name": "chatspire", + "description": "Chat API", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "umairsiddique", + "email": "umairsiddique@gmail.com" + } + ], + "time": { + "modified": "2011-09-05T17:44:53.970Z", + "created": "2011-09-05T17:44:51.689Z", + "0.0.0": "2011-09-05T17:44:53.970Z" + }, + "author": { + "name": "Umair Siddique", + "email": "umairsiddique@gmail.com" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/chatspire/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "1e20d2adf126e0d14b85bdb371bf4d5d75503835", + "tarball": "http://registry.npmjs.org/chatspire/-/chatspire-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/chatspire/" + }, + "chdir": { + "name": "chdir", + "description": "process.chdir() in a callback plus directory stacks", + "dist-tags": { + "latest": "0.0.0" + }, + "readme": null, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-12-05T23:30:36.069Z", + "created": "2011-12-05T23:30:33.886Z", + "0.0.0": "2011-12-05T23:30:36.069Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-chdir.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/chdir/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "c29bdb85f391834c83ddbf090f18a11b0ed96bee", + "tarball": "http://registry.npmjs.org/chdir/-/chdir-0.0.0.tgz" + } + }, + "keywords": [ + "cwd", + "pwd", + "pushd", + "popd", + "directory" + ], + "url": "http://registry.npmjs.org/chdir/" + }, + "checkip": { + "name": "checkip", + "description": "Get's your current IP address (if behind a NAT).", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "davglass", + "email": "davglass@gmail.com" + } + ], + "time": { + "modified": "2011-09-16T02:19:12.299Z", + "created": "2011-09-16T02:19:11.467Z", + "0.1.0": "2011-09-16T02:19:12.299Z" + }, + "author": { + "name": "Dav Glass", + "email": "davglass@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/checkip/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "160ef15b5ce7637c52425242fea47208a1578e17", + "tarball": "http://registry.npmjs.org/checkip/-/checkip-0.1.0.tgz" + } + }, + "keywords": [ + "ipaddress", + "ip", + "nat" + ], + "url": "http://registry.npmjs.org/checkip/" + }, + "cheddar-getter": { + "name": "cheddar-getter", + "description": "cheddar getter api with node. very simple.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "woodbridge", + "email": "jwoodbridge@me.com" + } + ], + "time": { + "modified": "2011-07-17T18:41:09.974Z", + "created": "2011-07-17T18:41:09.754Z", + "0.0.1": "2011-07-17T18:41:09.974Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/cheddar-getter/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "495918de8b60ade00e44b4a328666597996f1b53", + "tarball": "http://registry.npmjs.org/cheddar-getter/-/cheddar-getter-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/cheddar-getter/" + }, + "cheddargetter": { + "name": "cheddargetter", + "description": "Wrapper for the CheddarGetter recurring billing system APIs", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "respectthecode", + "email": "kevin@invisionsta.com" + } + ], + "time": { + "modified": "2011-11-30T16:27:10.973Z", + "created": "2011-11-04T15:18:10.266Z", + "0.0.1": "2011-11-04T15:18:26.093Z", + "0.0.2": "2011-11-05T16:26:18.196Z", + "0.0.3": "2011-11-07T02:23:50.036Z", + "0.0.4": "2011-11-30T16:27:10.973Z" + }, + "author": { + "name": "Kevin Smith" + }, + "repository": { + "type": "git", + "url": "git://github.com/respectTheCode/node-cheddargetter.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/cheddargetter/0.0.1", + "0.0.2": "http://registry.npmjs.org/cheddargetter/0.0.2", + "0.0.3": "http://registry.npmjs.org/cheddargetter/0.0.3", + "0.0.4": "http://registry.npmjs.org/cheddargetter/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "d450c576ba995cd3f1ed6b197a56c78030189187", + "tarball": "http://registry.npmjs.org/cheddargetter/-/cheddargetter-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "b546c8d3f2c492235ff0cf16677fef82049d6fa3", + "tarball": "http://registry.npmjs.org/cheddargetter/-/cheddargetter-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "7986440b1f2a5c913796f9d96ceb3f53a2088bc6", + "tarball": "http://registry.npmjs.org/cheddargetter/-/cheddargetter-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "443c82b81f9e6947a29435f034e18e23f9c2e3a7", + "tarball": "http://registry.npmjs.org/cheddargetter/-/cheddargetter-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/cheddargetter/" + }, + "cheerio": { + "name": "cheerio", + "description": "Tiny, fast, and elegant implementation of core jQuery designed specifically for the server", + "dist-tags": { + "latest": "0.3.2" + }, + "maintainers": [ + { + "name": "mattmueller", + "email": "mattmuelle@gmail.com" + } + ], + "time": { + "modified": "2011-12-02T03:36:41.948Z", + "created": "2011-10-08T07:28:26.299Z", + "0.0.1": "2011-10-08T07:28:34.195Z", + "0.0.2": "2011-11-01T03:23:31.758Z", + "0.0.3": "2011-11-01T03:24:37.466Z", + "0.0.4": "2011-11-01T03:27:34.918Z", + "0.1.1": "2011-11-01T04:41:36.490Z", + "0.1.2": "2011-11-01T04:48:23.487Z", + "0.1.3": "2011-11-01T05:15:23.908Z", + "0.1.4": "2011-11-01T05:28:03.164Z", + "0.1.5": "2011-11-01T06:00:52.465Z", + "0.2.0": "2011-11-01T06:08:39.155Z", + "0.2.1": "2011-11-06T06:56:10.622Z", + "0.2.2": "2011-11-10T04:57:58.140Z", + "0.3.0": "2011-11-20T05:34:41.736Z", + "0.3.1": "2011-11-26T04:56:06.446Z", + "0.3.2": "2011-12-02T03:36:41.948Z" + }, + "author": { + "name": "Matt Mueller", + "email": "mattmuelle@gmail.com", + "url": "mattmueller.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/MatthewMueller/cheerio.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/cheerio/0.0.1", + "0.0.2": "http://registry.npmjs.org/cheerio/0.0.2", + "0.0.3": "http://registry.npmjs.org/cheerio/0.0.3", + "0.0.4": "http://registry.npmjs.org/cheerio/0.0.4", + "0.1.1": "http://registry.npmjs.org/cheerio/0.1.1", + "0.1.2": "http://registry.npmjs.org/cheerio/0.1.2", + "0.1.3": "http://registry.npmjs.org/cheerio/0.1.3", + "0.1.4": "http://registry.npmjs.org/cheerio/0.1.4", + "0.1.5": "http://registry.npmjs.org/cheerio/0.1.5", + "0.2.0": "http://registry.npmjs.org/cheerio/0.2.0", + "0.2.1": "http://registry.npmjs.org/cheerio/0.2.1", + "0.2.2": "http://registry.npmjs.org/cheerio/0.2.2", + "0.3.0": "http://registry.npmjs.org/cheerio/0.3.0", + "0.3.1": "http://registry.npmjs.org/cheerio/0.3.1", + "0.3.2": "http://registry.npmjs.org/cheerio/0.3.2" + }, + "dist": { + "0.0.1": { + "shasum": "0c52df43cdade2999a735009595061c53c7f9cf0", + "tarball": "http://registry.npmjs.org/cheerio/-/cheerio-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "ac7d42190f1c8f47ba67065eef95d4e73a5ace6f", + "tarball": "http://registry.npmjs.org/cheerio/-/cheerio-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "b8ea52580cffa209bb9132eb6721993688e46f1e", + "tarball": "http://registry.npmjs.org/cheerio/-/cheerio-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "b3816949f6151356a84913f67dff8d066d279120", + "tarball": "http://registry.npmjs.org/cheerio/-/cheerio-0.0.4.tgz" + }, + "0.1.1": { + "shasum": "9aad92f1a92b80f67bee683ddacf1815a1201d06", + "tarball": "http://registry.npmjs.org/cheerio/-/cheerio-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "d0bd301ee5360ee69d87a525fd6751c217fde6d7", + "tarball": "http://registry.npmjs.org/cheerio/-/cheerio-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "242ad274ada4780aca138c2a83944d1c6fb4b8eb", + "tarball": "http://registry.npmjs.org/cheerio/-/cheerio-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "1aa6c969f46c5ace7e47fe76ce4fed5b5108369f", + "tarball": "http://registry.npmjs.org/cheerio/-/cheerio-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "34f701bf8f6194978a3afafdd1de8240e5e200f9", + "tarball": "http://registry.npmjs.org/cheerio/-/cheerio-0.1.5.tgz" + }, + "0.2.0": { + "shasum": "b3a0a90a0e7a4922bdb105a17b3b04a412c2e6e3", + "tarball": "http://registry.npmjs.org/cheerio/-/cheerio-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "595d089c5b65d0b77d983fb59ce4239127f81200", + "tarball": "http://registry.npmjs.org/cheerio/-/cheerio-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "e89bc7fc1a18737614ce29d1a78f9f8afc91c3e6", + "tarball": "http://registry.npmjs.org/cheerio/-/cheerio-0.2.2.tgz" + }, + "0.3.0": { + "shasum": "b56cc0f281c08134f22868ce7cf8fc164c49274c", + "tarball": "http://registry.npmjs.org/cheerio/-/cheerio-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "9211ad8c25752a7ae789c183d4af186ee39ef804", + "tarball": "http://registry.npmjs.org/cheerio/-/cheerio-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "a831215d3d204d8016f9d41a8fcddea1f7d9d3c8", + "tarball": "http://registry.npmjs.org/cheerio/-/cheerio-0.3.2.tgz" + } + }, + "keywords": [ + "htmlparser", + "jquery", + "selector", + "scraper" + ], + "url": "http://registry.npmjs.org/cheerio/" + }, + "cheerio-soupselect": { + "name": "cheerio-soupselect", + "description": "Adds CSS selector support to htmlparser for scraping activities - port of soupselect (python)", + "dist-tags": { + "latest": "0.0.2" + }, + "readme": "node-soupselect\n---------------\n\nA port of Simon Willison's [soupselect](http://code.google.com/p/soupselect/) for use with node.js and node-htmlparser.\n\n $ npm install soupselect\n\nMinimal example...\n\n var select = require('soupselect').select;\n // dom provided by htmlparser...\n select(dom, \"#main a.article\").forEach(function(element) {//...});\n\nWanted a friendly way to scrape HTML using node.js. Tried using [jsdom](http://github.com/tmpvar/jsdom), prompted by [this article](http://blog.nodejitsu.com/jsdom-jquery-in-5-lines-on-nodejs) but, unfortunately, [jsdom](http://github.com/tmpvar/jsdom) takes a strict view of lax HTML making it unusable for scraping the kind of soup found in real world web pages. Luckily [htmlparser](http://github.com/tautologistics/node-htmlparser/) is more forgiving. More details on this found [here](http://www.reddit.com/r/node/comments/dm0tz/nodesoupselect_for_scraping_html_with_css/c118r23).\n\nA complete example including fetching HTML etc...;\n\n var select = require('soupselect').select,\n htmlparser = require(\"htmlparser\"),\n http = require('http'),\n sys = require('sys');\n\n // fetch some HTML...\n var http = require('http');\n var host = 'www.reddit.com';\n var client = http.createClient(80, host);\n var request = client.request('GET', '/',{'host': host});\n\n request.on('response', function (response) {\n response.setEncoding('utf8');\n \n var body = \"\";\n response.on('data', function (chunk) {\n body = body + chunk;\n });\n \n response.on('end', function() {\n \n // now we have the whole body, parse it and select the nodes we want...\n var handler = new htmlparser.DefaultHandler(function(err, dom) {\n if (err) {\n sys.debug(\"Error: \" + err);\n } else {\n \n // soupselect happening here...\n var titles = select(dom, 'a.title');\n \n sys.puts(\"Top stories from reddit\");\n titles.forEach(function(title) {\n sys.puts(\"- \" + title.children[0].raw + \" [\" + title.attribs.href + \"]\\n\");\n })\n }\n });\n\n var parser = new htmlparser.Parser(handler);\n parser.parseComplete(body);\n });\n });\n request.end();\n\nNotes:\n\n* Requires node-htmlparser > 1.6.2 & node.js 2+\n* Calls to select are synchronous - not worth trying to make it asynchronous IMO given the use case\n\n", + "maintainers": [ + { + "name": "mattmueller", + "email": "mattmuelle@gmail.com" + } + ], + "time": { + "modified": "2011-11-26T04:51:55.232Z", + "created": "2011-11-26T04:29:15.654Z", + "0.0.1": "2011-11-26T04:30:48.954Z", + "0.0.2": "2011-11-26T04:51:55.232Z" + }, + "author": { + "name": "Matt Mueller", + "email": "mattmuelle@gmail.com" + }, + "repository": [ + { + "type": "git", + "url": "git://github.com/harryf/node-soupselect.git" + } + ], + "versions": { + "0.0.1": "http://registry.npmjs.org/cheerio-soupselect/0.0.1", + "0.0.2": "http://registry.npmjs.org/cheerio-soupselect/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "ecdd4eae8ee867d6bc9dfb384c3b207f3ee255ad", + "tarball": "http://registry.npmjs.org/cheerio-soupselect/-/cheerio-soupselect-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "ed81023842bd0109e616c0d044d10c5dc7e1e3ec", + "tarball": "http://registry.npmjs.org/cheerio-soupselect/-/cheerio-soupselect-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/cheerio-soupselect/" + }, + "cheferizeIt": { + "name": "cheferizeIt", + "description": "A simple module to convert English to Mock Swedish, Bork Bork Bork!", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "sgrasso", + "email": "sean.grasso@gmail.com" + } + ], + "time": { + "modified": "2011-12-13T04:11:01.761Z", + "created": "2011-10-30T03:36:14.513Z", + "0.0.1": "2011-10-30T03:50:45.191Z", + "0.0.2": "2011-11-07T04:18:20.793Z", + "0.0.3": "2011-12-13T04:11:01.761Z" + }, + "author": { + "name": "Sean Grasso", + "email": "sean.grasso@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/sgrasso/cheferizeIt.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/cheferizeIt/0.0.1", + "0.0.2": "http://registry.npmjs.org/cheferizeIt/0.0.2", + "0.0.3": "http://registry.npmjs.org/cheferizeIt/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "14fadcdf456a7f6c25fdc39e1c47241c161ea15a", + "tarball": "http://registry.npmjs.org/cheferizeIt/-/cheferizeIt-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "bd81fc5ef41d3f376473fb12d3e90683bc626e12", + "tarball": "http://registry.npmjs.org/cheferizeIt/-/cheferizeIt-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "bce7bf30ed68e6fdba6f5ac3412afe6a743cba5c", + "tarball": "http://registry.npmjs.org/cheferizeIt/-/cheferizeIt-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/cheferizeIt/" + }, + "chess": { + "name": "chess", + "description": "An algebraic notation driven chess engine that can validate board position and produce a list of viable moves (notated).", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "brozeph", + "email": "joshua.thomas@gmail.com" + } + ], + "time": { + "modified": "2011-06-12T18:54:36.548Z", + "created": "2011-06-12T18:54:35.940Z", + "0.1.2": "2011-06-12T18:54:36.548Z" + }, + "author": { + "name": "Joshua Thomas", + "email": "joshua.thomas@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/brozeph/node-chess.git" + }, + "versions": { + "0.1.2": "http://registry.npmjs.org/chess/0.1.2" + }, + "dist": { + "0.1.2": { + "shasum": "cac3631948c356a81c37678d7e780ad1ea90f2bc", + "tarball": "http://registry.npmjs.org/chess/-/chess-0.1.2.tgz" + } + }, + "keywords": [ + "chess", + "algebraic notation" + ], + "url": "http://registry.npmjs.org/chess/" + }, + "chess-charm": { + "name": "chess-charm", + "description": "Draw, make moves, visualize a chess board on your terminal", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "rook2pawn", + "email": "rook2pawn@gmail.com" + } + ], + "time": { + "modified": "2011-10-17T04:53:34.832Z", + "created": "2011-10-17T04:53:33.758Z", + "0.0.1": "2011-10-17T04:53:34.832Z" + }, + "author": { + "name": "David Wee", + "email": "rook2pawn@gmail.com", + "url": "http://rook2pawn.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/rook2pawn/node-chess-charm.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/chess-charm/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "559539d2961e4ea3c4241ae52e7874e4036bc908", + "tarball": "http://registry.npmjs.org/chess-charm/-/chess-charm-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/chess-charm/" + }, + "chess.js": { + "name": "chess.js", + "description": "A Javascript chess library for chess move generation/validation, piece placement/movement, and check/checkmate/draw detection", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "jhlywa", + "email": "jhlywa@gmail.com" + } + ], + "time": { + "modified": "2011-10-25T01:15:22.954Z", + "created": "2011-10-25T01:15:22.783Z", + "0.1.0": "2011-10-25T01:15:22.954Z" + }, + "author": { + "name": "Jeff Hlywa", + "email": "jhlywa@gmail.com", + "url": "https://github.com/jhlywa" + }, + "repository": { + "type": "git", + "url": "http://github.com/jhlywa/chess.js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/chess.js/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "070af12154cd7344e0b8479c649f586511e52439", + "tarball": "http://registry.npmjs.org/chess.js/-/chess.js-0.1.0.tgz" + } + }, + "keywords": [ + "chess" + ], + "url": "http://registry.npmjs.org/chess.js/" + }, + "chessathome-worker": { + "name": "chessathome-worker", + "description": "Worker for the Chess@home project", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "tbassetto", + "email": "tbassetto@gmail.com" + }, + { + "name": "sylvinus", + "email": "sylvain@sylvainzimmer.com" + } + ], + "time": { + "modified": "2011-09-28T09:10:38.970Z", + "created": "2011-08-28T10:23:30.335Z", + "0.1.0": "2011-08-28T10:23:31.788Z", + "0.1.1": "2011-08-28T14:37:43.202Z", + "0.1.2": "2011-08-28T21:22:04.211Z", + "0.2.0": "2011-09-28T09:10:38.970Z" + }, + "author": { + "name": "Joshfire", + "email": "devs@joshfire.com", + "url": "http://joshfire.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/joshfire/chessathome-worker.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/chessathome-worker/0.1.0", + "0.1.1": "http://registry.npmjs.org/chessathome-worker/0.1.1", + "0.1.2": "http://registry.npmjs.org/chessathome-worker/0.1.2", + "0.2.0": "http://registry.npmjs.org/chessathome-worker/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "fd1ac53765a97fbae412de899b0263c0e9d0831d", + "tarball": "http://registry.npmjs.org/chessathome-worker/-/chessathome-worker-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "ab017220f180dae7dca843a3f708e9005d0c73b7", + "tarball": "http://registry.npmjs.org/chessathome-worker/-/chessathome-worker-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "705c8590cc38420f5dff03868d1ceea4adc13672", + "tarball": "http://registry.npmjs.org/chessathome-worker/-/chessathome-worker-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "92bcf6f10d358cb527d38030252d15391e951a87", + "tarball": "http://registry.npmjs.org/chessathome-worker/-/chessathome-worker-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/chessathome-worker/" + }, + "chirkut.js": { + "name": "chirkut.js", + "description": "Chirkut.js - An XMPP BOSH server", + "dist-tags": { + "latest": "0.0.22" + }, + "maintainers": [ + { + "name": "anoopc", + "email": "anoopchaurasiya1@gmail.com" + } + ], + "time": { + "modified": "2011-07-27T12:25:18.247Z", + "created": "2011-07-27T12:25:17.158Z", + "0.0.22": "2011-07-27T12:25:18.247Z" + }, + "author": { + "name": "Dhruv Matani" + }, + "versions": { + "0.0.22": "http://registry.npmjs.org/chirkut.js/0.0.22" + }, + "dist": { + "0.0.22": { + "shasum": "2abb0ee83670df39f3d3e44a8b8d46e3dee4544c", + "tarball": "http://registry.npmjs.org/chirkut.js/-/chirkut.js-0.0.22.tgz" + } + }, + "url": "http://registry.npmjs.org/chirkut.js/" + }, + "chiron": { + "name": "chiron", + "description": "A system of interoperable JavaScript modules, including a Pythonic type system and types", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "kriskowal", + "email": "kris.kowal@cixar.com" + } + ], + "author": { + "name": "Kris Kowal", + "email": "kris@cixar.com", + "url": "http://askawizard.blogspot.com/" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/chiron/1.0.0" + }, + "dist": { + "1.0.0": { + "tarball": "http://packages:5984/chiron/-/chiron-1.0.0.tgz" + } + }, + "keywords": [ + "type system", + "types", + "interoperable", + "events", + "caching", + "cache" + ], + "url": "http://registry.npmjs.org/chiron/" + }, + "chomp": { + "name": "chomp", + "description": "chomp for Javascript", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "theho", + "email": "leehosang@gmail.com" + } + ], + "time": { + "modified": "2011-10-30T19:13:03.324Z", + "created": "2011-10-30T19:13:02.240Z", + "0.0.1": "2011-10-30T19:13:03.324Z" + }, + "author": { + "name": "Alex Lee", + "email": "leehosang@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/theho/Javascript-chomp.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/chomp/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "16a4f8cc302e1fdf284c23e45281aa7816fb2749", + "tarball": "http://registry.npmjs.org/chomp/-/chomp-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/chomp/" + }, + "chopper": { + "name": "chopper", + "description": "Cuts a stream into discrete pieces using a delimiter", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "sleeplessinc", + "email": "joe@sleepless.com" + } + ], + "time": { + "modified": "2011-11-03T19:03:11.826Z", + "created": "2011-02-17T00:27:05.818Z", + "0.0.1": "2011-02-17T00:27:06.283Z", + "1.0.0": "2011-09-17T02:48:58.808Z", + "1.0.1": "2011-11-03T19:03:11.826Z" + }, + "author": { + "name": "Joe Hitchens", + "email": "joe@sleepless.com", + "url": "sleepless.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/sleeplessinc/node-chopper.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/chopper/0.0.1", + "1.0.0": "http://registry.npmjs.org/chopper/1.0.0", + "1.0.1": "http://registry.npmjs.org/chopper/1.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "9b639ad555f5ad3681e9f66b9544d79ee11fd083", + "tarball": "http://registry.npmjs.org/chopper/-/chopper-0.0.1.tgz" + }, + "1.0.0": { + "shasum": "31f804f029774fdeb353fc0f7384d61e8745fc83", + "tarball": "http://registry.npmjs.org/chopper/-/chopper-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "d5635f56c9ef3734c688292cbf21013acc292003", + "tarball": "http://registry.npmjs.org/chopper/-/chopper-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/chopper/" + }, + "choreographer": { + "name": "choreographer", + "description": "Your server is my stage -- dirt simple URL routing for Node.js. Easy to use, easy to understand. Sinatra-style API.", + "dist-tags": { + "latest": "0.2.3a" + }, + "maintainers": [ + { + "name": "han", + "email": "laughinghan@gmail.com" + } + ], + "author": { + "name": "Han", + "email": "laughinghan@gmail.com", + "url": "http://github.com/laughinghan" + }, + "time": { + "modified": "2011-04-03T14:20:19.683Z", + "created": "2011-01-01T16:41:44.284Z", + "0.1.0": "2011-01-01T16:41:44.284Z", + "0.2.0": "2011-01-01T16:41:44.284Z", + "0.2.1": "2011-01-01T16:41:44.284Z", + "0.2.2a": "2011-01-17T08:44:54.855Z", + "0.2.3a": "2011-04-03T14:20:19.683Z" + }, + "repository": { + "type": "git", + "url": "https://github.com/laughinghan/choreographer.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/choreographer/0.1.0", + "0.2.0": "http://registry.npmjs.org/choreographer/0.2.0", + "0.2.1": "http://registry.npmjs.org/choreographer/0.2.1", + "0.2.2a": "http://registry.npmjs.org/choreographer/0.2.2a", + "0.2.3a": "http://registry.npmjs.org/choreographer/0.2.3a" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/choreographer/-/choreographer-0.1.0.tgz" + }, + "0.2.0": { + "tarball": "http://packages:5984/choreographer/-/choreographer-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "c6a87924c3fe1f967395273d6e1541b0aac7fe7d", + "tarball": "http://registry.npmjs.org/choreographer/-/choreographer-0.2.1.tgz" + }, + "0.2.2a": { + "shasum": "29749690f64817d6cf42716a36b9d667865f9dc2", + "tarball": "http://registry.npmjs.org/choreographer/-/choreographer-0.2.2a.tgz" + }, + "0.2.3a": { + "shasum": "706984ff5fb93ab8bf6a5c5181d3695fa278898e", + "tarball": "http://registry.npmjs.org/choreographer/-/choreographer-0.2.3a.tgz" + } + }, + "url": "http://registry.npmjs.org/choreographer/" + }, + "chowder": { + "name": "chowder", + "dist-tags": { + "latest": "0.0.0" + }, + "readme": "## Features\n\n- recursivley include other configuration files\n- scan directory for configuration files\n\n## To Do\n- extend other settings\n- reference other variables in config\n\n## Example\n\n```ini\n\n[some-setting]\n\n\n[include]\nfiles=/path/to/configs/*.conf /another/path/*.conf\n\n```\n\n\n\n", + "maintainers": [ + { + "name": "architectd", + "email": "craig.j.condon@gmail.com" + } + ], + "time": { + "modified": "2011-11-30T18:55:15.615Z", + "created": "2011-11-30T18:55:14.909Z", + "0.0.0": "2011-11-30T18:55:15.615Z" + }, + "author": { + "name": "Craig Condon" + }, + "repository": { + "type": "git", + "url": "git://github.com/crcn/chowder.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/chowder/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "c4ff1b098a704cf09adda282fb2d32776b0e8d5b", + "tarball": "http://registry.npmjs.org/chowder/-/chowder-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/chowder/" + }, + "chromic": { + "name": "chromic", + "description": "Test framework", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "boundvariable", + "email": "patrick@boundvariable.com" + } + ], + "time": { + "modified": "2011-09-06T03:36:54.919Z", + "created": "2011-09-06T03:36:49.306Z", + "0.0.1": "2011-09-06T03:36:54.919Z" + }, + "author": { + "name": "Patrick Lee", + "email": "patrick@boundvariable.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/boundvariable/chromic.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/chromic/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "e5c528457740f0ffbd954ce5ae528589fdc44239", + "tarball": "http://registry.npmjs.org/chromic/-/chromic-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/chromic/" + }, + "chrono": { + "name": "chrono", + "description": "Format dates in JavaScript", + "dist-tags": { + "latest": "1.0.2" + }, + "maintainers": [ + { + "name": "kkaefer", + "email": "kkaefer@gmail.com" + }, + { + "name": "yhahn", + "email": "young@developmentseed.org" + }, + { + "name": "tmcw", + "email": "macwright@gmail.com" + }, + { + "name": "willwhite", + "email": "will@developmentseed.org" + }, + { + "name": "springmeyer", + "email": "dane@dbsgeo.com" + } + ], + "time": { + "modified": "2011-10-03T17:18:36.114Z", + "created": "2011-04-08T18:14:12.435Z", + "1.0.0": "2011-04-08T18:14:12.597Z", + "1.0.1": "2011-05-09T21:55:38.663Z", + "1.0.2": "2011-10-03T17:18:36.114Z" + }, + "author": { + "name": "Konstantin Käfer" + }, + "repository": { + "type": "git", + "url": "git://github.com/kkaefer/chrono.js.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/chrono/1.0.0", + "1.0.1": "http://registry.npmjs.org/chrono/1.0.1", + "1.0.2": "http://registry.npmjs.org/chrono/1.0.2" + }, + "dist": { + "1.0.0": { + "shasum": "888e6b523e68fcb207cd98b5783078dd579c791e", + "tarball": "http://registry.npmjs.org/chrono/-/chrono-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "5266cf191b8092990bf63de62fbcb373d069494e", + "tarball": "http://registry.npmjs.org/chrono/-/chrono-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "5e7c59cb33ca7bb960019eac1829c087881f460c", + "tarball": "http://registry.npmjs.org/chrono/-/chrono-1.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/chrono/" + }, + "chuck": { + "name": "chuck", + "description": "Chuck Norris joke dispenser.", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "qard", + "email": "admin@stephenbelanger.com" + } + ], + "time": { + "modified": "2011-08-19T22:00:54.744Z", + "created": "2011-08-19T22:00:48.890Z", + "0.0.3": "2011-08-19T22:00:54.744Z" + }, + "author": { + "name": "Stephen Belanger", + "email": "admin@stephenbelanger.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/qard/chuck.git" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/chuck/0.0.3" + }, + "dist": { + "0.0.3": { + "shasum": "3af700056794400218f99b7da1170a4343f355ec", + "tarball": "http://registry.npmjs.org/chuck/-/chuck-0.0.3.tgz" + } + }, + "keywords": [ + "chuck", + "norris", + "jokes", + "funny", + "fun" + ], + "url": "http://registry.npmjs.org/chuck/" + }, + "ChuckNorrisException": { + "name": "ChuckNorrisException", + "description": "When in doubt, throw a ChuckNorrisException", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "criso", + "email": "ocean.cris@gmail.com" + } + ], + "time": { + "modified": "2011-10-18T17:30:55.526Z", + "created": "2011-10-09T17:03:57.833Z", + "0.1.0": "2011-10-09T17:03:58.492Z", + "0.1.1": "2011-10-18T16:14:41.813Z" + }, + "author": { + "name": "Cristiano Oliveira", + "email": "ocean.cris@gmail.com" + }, + "repository": { + "url": "https://github.com/criso/chucknorrisexception" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/ChuckNorrisException/0.1.0", + "0.1.1": "http://registry.npmjs.org/ChuckNorrisException/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "871eadac2ae9625983907c9cf91e3e892aa6400f", + "tarball": "http://registry.npmjs.org/ChuckNorrisException/-/ChuckNorrisException-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "9047f60d9c0c682a95aad24295b4e738c05a0408", + "tarball": "http://registry.npmjs.org/ChuckNorrisException/-/ChuckNorrisException-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/ChuckNorrisException/" + }, + "chunkedstream": { + "name": "chunkedstream", + "description": "Obtain lines and fixed-length buffers from an incoming stream", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "kkaefer", + "email": "kkaefer@gmail.com" + } + ], + "time": { + "modified": "2011-06-19T09:50:24.960Z", + "created": "2011-06-19T09:50:24.290Z", + "1.0.1": "2011-06-19T09:50:24.960Z" + }, + "author": { + "name": "Konstantin Käfer", + "email": "kkaefer@gmail.com" + }, + "versions": { + "1.0.1": "http://registry.npmjs.org/chunkedstream/1.0.1" + }, + "dist": { + "1.0.1": { + "shasum": "833dde052b3a379148d8b2c271b9e1d0d1372241", + "tarball": "http://registry.npmjs.org/chunkedstream/-/chunkedstream-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/chunkedstream/" + }, + "chunky": { + "name": "chunky", + "description": "Break up messages into randomly-sized chunks", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-10-23T07:51:49.806Z", + "created": "2011-10-23T07:51:47.718Z", + "0.0.0": "2011-10-23T07:51:49.806Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-chunky.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/chunky/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "1e7580a23c083897d2ad662459e7efd8465f608a", + "tarball": "http://registry.npmjs.org/chunky/-/chunky-0.0.0.tgz" + } + }, + "keywords": [ + "chunk", + "random", + "test" + ], + "url": "http://registry.npmjs.org/chunky/" + }, + "cider": { + "name": "cider", + "description": "", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "tmpvar", + "email": "tmpvar@gmail.com" + } + ], + "time": { + "modified": "2010-12-21T05:48:10.049Z", + "created": "2010-12-21T05:48:10.049Z", + "0.1.0": "2010-12-21T05:48:10.049Z", + "0.1.1": "2010-12-21T05:48:10.049Z", + "0.1.2": "2010-12-21T05:48:10.049Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/cider/0.1.0", + "0.1.1": "http://registry.npmjs.org/cider/0.1.1", + "0.1.2": "http://registry.npmjs.org/cider/0.1.2" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/cider/-/cider-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://packages:5984/cider/-/cider-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "7ea783178e71b92091c24c41c6213507ef5a90a6", + "tarball": "http://registry.npmjs.org/cider/-/cider-0.1.2.tgz" + } + }, + "keywords": [ + "" + ], + "url": "http://registry.npmjs.org/cider/" + }, + "cinch": { + "name": "cinch", + "description": "Async control flow made easy", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "pguillory", + "email": "pguillory@gmail.com" + } + ], + "time": { + "modified": "2011-03-02T08:08:11.892Z", + "created": "2011-02-25T07:01:25.657Z", + "0.1.0": "2011-02-25T07:01:25.977Z", + "0.1.1": "2011-03-02T08:08:11.892Z" + }, + "author": { + "name": "Preston Guillory", + "email": "pguillory@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/pguillory/cinch.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/cinch/0.1.0", + "0.1.1": "http://registry.npmjs.org/cinch/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "132606320278461fd61588ec173bda54348aff79", + "tarball": "http://registry.npmjs.org/cinch/-/cinch-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "281898f549e1f395b170e6141fa4562a34c24fcf", + "tarball": "http://registry.npmjs.org/cinch/-/cinch-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/cinch/" + }, + "cipherpipe": { + "name": "cipherpipe", + "description": "Thin wrapper around openssl for encryption/decryption", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "TrevorBurnham", + "email": "trevorburnham@gmail.com" + } + ], + "time": { + "modified": "2011-03-19T14:02:17.901Z", + "created": "2011-03-18T21:02:42.725Z", + "0.1.0": "2011-03-18T21:02:43.145Z", + "0.1.1": "2011-03-19T14:02:17.901Z" + }, + "author": { + "name": "Trevor Burnham" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/cipherpipe/0.1.0", + "0.1.1": "http://registry.npmjs.org/cipherpipe/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "cfc892ab3c69bece3b212e93543c211475588822", + "tarball": "http://registry.npmjs.org/cipherpipe/-/cipherpipe-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "41d2f9d055bafd980c9bc4719d0c0501ad24fd65", + "tarball": "http://registry.npmjs.org/cipherpipe/-/cipherpipe-0.1.1.tgz" + } + }, + "keywords": [ + "cryptography", + "openssl" + ], + "url": "http://registry.npmjs.org/cipherpipe/" + }, + "cipherstream": { + "name": "cipherstream", + "description": "Simple Stream layer for encryption/decryption", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "# cipher\n\n**cipher** is a thin streaming layer for encryption/decryption.\n\n## Installation\n\n npm install cipher\n\n## Usage\n\nRequire as `cipher`\n\n var cipher = require(\"cipher\");\n\n## CipherStream\n\n**CipherStream** creates a Stream object which takes data in and encrypts it.\n\n`new CipherStream(password[, algorithm])` where `algorithm` defaults to AES192.\n\nExample:\n\n var cipher = require(\"cipher\"),\n fs = require(\"fs\");\n \n fs.createReadStream(\"plain.txt\").pipe(new cipher.CipherStream(\"secret\")).pipe(fs.writeReadStream(\"secret.txt\"));\n\n\n## DecipherStream\n\n**DecipherStream** creates a Stream object which takes encrypted data in and decrypts it.\n\n`new DecipherStream(password[, algorithm])` where `algorithm` defaults to AES192.\n\nExample:\n\n var cipher = require(\"cipher\"),\n fs = require(\"fs\");\n \n fs.createReadStream(\"secret.txt\").pipe(new cipher.DecipherStream(\"secret\")).pipe(fs.writeReadStream(\"plain.txt\"));\n\n## HMAC\n\n**hmac** is a simple wrapper function to create SHA-256 hmac values.\n\n`cipher.hmac(data, key) → String`\n\n## License\n\n**MIT**", + "maintainers": [ + { + "name": "andris", + "email": "andris@node.ee" + } + ], + "time": { + "modified": "2011-11-23T14:50:55.907Z", + "created": "2011-11-23T14:50:53.316Z", + "0.1.0": "2011-11-23T14:50:55.907Z" + }, + "author": { + "name": "Andris Reinman" + }, + "repository": { + "type": "git", + "url": "git://github.com/andris9/cipher.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/cipherstream/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "3962857e3b7d65f445657ba583224146d467e360", + "tarball": "http://registry.npmjs.org/cipherstream/-/cipherstream-0.1.0.tgz" + } + }, + "keywords": [ + "cipher", + "stream", + "cryptography" + ], + "url": "http://registry.npmjs.org/cipherstream/" + }, + "circus": { + "name": "circus", + "description": "Circular dependency check for require. Output ready for graphvis's dot - BROKEN", + "dist-tags": {}, + "maintainers": [ + { + "name": "schloerke", + "email": "schloerke@gmail.com" + } + ], + "time": { + "modified": "2011-12-01T04:24:45.008Z", + "created": "2011-12-01T04:24:45.008Z" + }, + "versions": {}, + "dist": {}, + "url": "http://registry.npmjs.org/circus/" + }, + "cjson": { + "name": "cjson", + "description": "cjson - Commented Javascript Object Notation. It is a json loader, which parses only valide json files, but with comments enabled. Usefull for loading configs.", + "dist-tags": { + "latest": "0.0.6", + "stable": "0.0.6" + }, + "maintainers": [ + { + "name": "kof", + "email": "oleg008@gmail.com" + } + ], + "time": { + "modified": "2011-11-14T10:38:45.407Z", + "created": "2011-03-21T23:51:30.878Z", + "0.0.1": "2011-03-21T23:51:31.405Z", + "0.0.2": "2011-03-22T13:52:02.007Z", + "0.0.3": "2011-03-25T22:45:24.026Z", + "0.0.4": "2011-08-31T14:31:29.982Z", + "0.0.5": "2011-10-10T13:10:11.931Z", + "0.0.6": "2011-11-14T10:33:06.702Z" + }, + "author": { + "name": "Oleg Slobodskoi", + "email": "oleg008@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/kof/node-cjson.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/cjson/0.0.1", + "0.0.2": "http://registry.npmjs.org/cjson/0.0.2", + "0.0.3": "http://registry.npmjs.org/cjson/0.0.3", + "0.0.4": "http://registry.npmjs.org/cjson/0.0.4", + "0.0.5": "http://registry.npmjs.org/cjson/0.0.5", + "0.0.6": "http://registry.npmjs.org/cjson/0.0.6" + }, + "dist": { + "0.0.1": { + "shasum": "21c7e4d7f91669ad80f53925fdc5712234513202", + "tarball": "http://registry.npmjs.org/cjson/-/cjson-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "e1760a36cd6f5e25c4a0d8d9365309144c61f6a3", + "tarball": "http://registry.npmjs.org/cjson/-/cjson-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "514b9cd0c768dedd48ae77aff0b198e9ff1bd67f", + "tarball": "http://registry.npmjs.org/cjson/-/cjson-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "ccefb04118591059d20502c552b368d6cbe7981a", + "tarball": "http://registry.npmjs.org/cjson/-/cjson-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "e9abfb63ea4fc806906489243341e522289ab0f3", + "tarball": "http://registry.npmjs.org/cjson/-/cjson-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "f53a8664cd5f195c0bed06235cd4a38df88b4208", + "tarball": "http://registry.npmjs.org/cjson/-/cjson-0.0.6.tgz" + } + }, + "keywords": [ + "json", + "parser", + "comments", + "config", + "loader" + ], + "url": "http://registry.npmjs.org/cjson/" + }, + "ck": { + "name": "ck", + "description": "A smaller, faster Coffeekup.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "kzh", + "email": "kaleb@hornsby.ws" + } + ], + "time": { + "modified": "2011-09-20T00:41:42.500Z", + "created": "2011-09-20T00:41:42.236Z", + "0.0.1": "2011-09-20T00:41:42.500Z" + }, + "author": { + "name": "Kaleb Hornsby", + "email": "kaleb@hornsby.ws", + "url": "kaleb.hornsby.ws" + }, + "repository": { + "type": "git", + "url": "git://github.com/kaleb/ck.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ck/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "3556f11fc94fb2a07dbf631e338f6ca8e7bc4904", + "tarball": "http://registry.npmjs.org/ck/-/ck-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/ck/" + }, + "ckup": { + "name": "ckup", + "description": "Markup as Coco", + "dist-tags": { + "latest": "0.1.6" + }, + "maintainers": [ + { + "name": "satyr", + "email": "murky.satyr@gmail.com" + } + ], + "time": { + "modified": "2011-05-03T22:58:02.248Z", + "created": "2011-01-06T10:40:08.508Z", + "0.1.0": "2011-01-06T10:40:09.205Z", + "0.1.1": "2011-01-06T21:52:30.400Z", + "0.1.2": "2011-01-28T15:24:56.182Z", + "0.1.4": "2011-03-19T12:33:04.570Z", + "0.1.5": "2011-05-02T13:56:28.004Z", + "0.1.6": "2011-05-03T22:57:46.856Z" + }, + "author": { + "name": "satyr", + "email": "murky.satyr@gmail.com", + "url": "http://satyr.github.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/satyr/ckup.git" + }, + "versions": { + "0.1.4": "http://registry.npmjs.org/ckup/0.1.4", + "0.1.6": "http://registry.npmjs.org/ckup/0.1.6" + }, + "dist": { + "0.1.4": { + "shasum": "c35cb4bdd7522e97096464cea2da5fdbe3aad66e", + "tarball": "http://registry.npmjs.org/ckup/-/ckup-0.1.4.tgz" + }, + "0.1.6": { + "shasum": "e03c823f904577d41324ba74ecf567d52f9ae528", + "tarball": "http://registry.npmjs.org/ckup/-/ckup-0.1.6.tgz" + } + }, + "keywords": [ + "html", + "css", + "template", + "coco" + ], + "url": "http://registry.npmjs.org/ckup/" + }, + "clark": { + "name": "clark", + "description": "ASCII sparklines in coffeescript. Based on 'spark' for shell.", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "ajacksified", + "email": "ajacksified@gmail.com" + } + ], + "time": { + "modified": "2011-11-25T18:01:17.034Z", + "created": "2011-11-18T06:43:14.298Z", + "0.0.1": "2011-11-18T06:43:15.757Z", + "0.0.2": "2011-11-18T19:43:01.676Z", + "0.0.3": "2011-11-18T22:12:47.589Z", + "0.0.4": "2011-11-25T18:01:17.034Z" + }, + "author": { + "name": "Jack Lawson", + "email": "jlawson@olivinelabs.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/clark/0.0.1", + "0.0.2": "http://registry.npmjs.org/clark/0.0.2", + "0.0.3": "http://registry.npmjs.org/clark/0.0.3", + "0.0.4": "http://registry.npmjs.org/clark/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "ed994fd9b4d34b1b64226d8f56c89fc79669a7d2", + "tarball": "http://registry.npmjs.org/clark/-/clark-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "6e6f20adcb509589262ca57de0ee6eb793071450", + "tarball": "http://registry.npmjs.org/clark/-/clark-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "5aac0d91255ca27964b89ec1b2154aa0c67b25bf", + "tarball": "http://registry.npmjs.org/clark/-/clark-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "45e7c055163b96408d0d1c75fe1b7099359f2493", + "tarball": "http://registry.npmjs.org/clark/-/clark-0.0.4.tgz" + } + }, + "keywords": [ + "ascii", + "graph", + "spark", + "sparklines" + ], + "url": "http://registry.npmjs.org/clark/" + }, + "class": { + "name": "class", + "description": "Class implementation (tiny)", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/class/0.3.0" + }, + "dist": { + "0.3.0": { + "tarball": "http://packages:5984/class/-/class-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/class/" + }, + "Class": { + "name": "Class", + "description": "Port of Prototype.js inheritance implementation for Node.js.", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "firejune", + "email": "to@firejune.com" + } + ], + "time": { + "modified": "2011-10-19T03:18:38.135Z", + "created": "2011-09-10T02:46:49.442Z", + "0.1.0": "2011-09-10T02:46:53.813Z", + "0.1.1": "2011-09-10T12:21:31.597Z", + "0.1.2": "2011-10-19T03:09:49.145Z", + "0.1.3": "2011-10-19T03:18:38.135Z" + }, + "author": { + "name": "Firejune", + "url": "http://firejune.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/firejune/class.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/Class/0.1.0", + "0.1.1": "http://registry.npmjs.org/Class/0.1.1", + "0.1.2": "http://registry.npmjs.org/Class/0.1.2", + "0.1.3": "http://registry.npmjs.org/Class/0.1.3" + }, + "dist": { + "0.1.0": { + "shasum": "3edeb3418f9d41e664f7f6c27154865bb9d15583", + "tarball": "http://registry.npmjs.org/Class/-/Class-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "ca483ec57c1ea255205ee9ba12ad17df0892e0d2", + "tarball": "http://registry.npmjs.org/Class/-/Class-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "c6596a49cce844f8da02d2a26b665168145f92bb", + "tarball": "http://registry.npmjs.org/Class/-/Class-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "b5b04e554497d029112ebb235cd1b31c8a3e97c0", + "tarball": "http://registry.npmjs.org/Class/-/Class-0.1.3.tgz" + } + }, + "keywords": [ + "prototype", + "prototypejs", + "inheritance", + "implementation", + "class" + ], + "url": "http://registry.npmjs.org/Class/" + }, + "class-42": { + "name": "class-42", + "description": "Classical inheritance in 42 lines.", + "dist-tags": { + "latest": "2.0.0" + }, + "maintainers": [ + { + "name": "twisol", + "email": "twisolar@gmail.com" + } + ], + "time": { + "modified": "2011-11-12T09:18:40.671Z", + "created": "2011-09-20T07:55:17.673Z", + "1.0.0": "2011-09-20T07:55:18.189Z", + "1.1.0": "2011-10-27T05:10:01.016Z", + "1.1.1": "2011-10-29T14:03:49.968Z", + "2.0.0": "2011-11-12T09:18:40.671Z" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/class-42/1.0.0", + "1.1.0": "http://registry.npmjs.org/class-42/1.1.0", + "1.1.1": "http://registry.npmjs.org/class-42/1.1.1", + "2.0.0": "http://registry.npmjs.org/class-42/2.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "c6a573355f5a5411ab08cc5f7b142f805b71cafd", + "tarball": "http://registry.npmjs.org/class-42/-/class-42-1.0.0.tgz" + }, + "1.1.0": { + "shasum": "b37a5abd86d1ec0503ff7be7374a96229a15f88d", + "tarball": "http://registry.npmjs.org/class-42/-/class-42-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "34d5bffe08bf7312ce439fd8a49603c85e6b2766", + "tarball": "http://registry.npmjs.org/class-42/-/class-42-1.1.1.tgz" + }, + "2.0.0": { + "shasum": "2b62ec738c6208a8fa01554b2b0a9ea1458cba1f", + "tarball": "http://registry.npmjs.org/class-42/-/class-42-2.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/class-42/" + }, + "class-js": { + "name": "class-js", + "description": "Simple OO Class factory", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "bnoguchi", + "email": "brian.noguchi@gmail.com" + } + ], + "time": { + "modified": "2011-01-06T10:59:09.027Z", + "created": "2011-01-06T09:20:36.558Z", + "0.0.1": "2011-01-06T09:20:37.507Z", + "0.0.2": "2011-01-06T10:59:09.027Z" + }, + "author": { + "name": "Brian Noguchi", + "email": "brian.noguchi@gmail.com" + }, + "repository": { + "type": "git", + "url": "https://github.com/bnoguchi/class-js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/class-js/0.0.1", + "0.0.2": "http://registry.npmjs.org/class-js/0.0.2" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/class-js/-/class-js-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/class-js/-/class-js-0.0.2.tgz" + } + }, + "keywords": [ + "node", + "class", + "oop", + "inheritance" + ], + "url": "http://registry.npmjs.org/class-js/" + }, + "classes": { + "name": "classes", + "description": "A classical inheritence model", + "dist-tags": { + "latest": "0.1.6" + }, + "readme": null, + "maintainers": [ + { + "name": "k", + "email": "kbjr14@gmail.com" + } + ], + "time": { + "modified": "2011-11-18T12:36:00.490Z", + "created": "2011-11-17T06:48:01.977Z", + "0.1.5": "2011-11-17T06:48:08.383Z", + "0.1.6": "2011-11-18T12:36:00.490Z" + }, + "author": { + "name": "James Brumond", + "email": "kbjr14@gmail.com", + "url": "http://jbrumond.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/kbjr/class.js.git" + }, + "versions": { + "0.1.5": "http://registry.npmjs.org/classes/0.1.5", + "0.1.6": "http://registry.npmjs.org/classes/0.1.6" + }, + "dist": { + "0.1.5": { + "shasum": "b9bd6973a63049bf64576af2f49844af723289a1", + "tarball": "http://registry.npmjs.org/classes/-/classes-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "7e2a4be6232a17090caf30b669e90acfa6f4d84e", + "tarball": "http://registry.npmjs.org/classes/-/classes-0.1.6.tgz" + } + }, + "url": "http://registry.npmjs.org/classes/" + }, + "classify": { + "name": "classify", + "description": "A Ruby-like Module & Class Inheritance Library for Javascript", + "dist-tags": { + "latest": "0.10.0" + }, + "maintainers": [ + { + "name": "petebrowne", + "email": "me@petebrowne.com" + } + ], + "author": { + "name": "Pete Browne", + "email": "me@petebrowne.com", + "url": "http://petebrowne.com" + }, + "versions": { + "0.10.0": "http://registry.npmjs.org/classify/0.10.0" + }, + "dist": { + "0.10.0": { + "tarball": "http://registry.npmjs.org/classify/-/classify-0.10.0.tgz" + } + }, + "keywords": [ + "class", + "inheritance", + "module", + "client", + "browser" + ], + "url": "http://registry.npmjs.org/classify/" + }, + "classloader": { + "name": "classloader", + "description": "classloader helper for nodejs", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "edjafarov", + "email": "djkojb@gmail.com" + } + ], + "time": { + "modified": "2011-12-10T08:49:27.096Z", + "created": "2011-11-26T08:28:51.194Z", + "0.0.2": "2011-11-26T08:39:07.836Z", + "0.0.3": "2011-12-10T08:49:27.096Z" + }, + "author": { + "name": "Eldar Djafarov", + "email": "eldar@djafarov.com" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/classloader/0.0.2", + "0.0.3": "http://registry.npmjs.org/classloader/0.0.3" + }, + "dist": { + "0.0.2": { + "shasum": "5bd90d91cca3f89244c34871d4cc28c2cdf606d3", + "tarball": "http://registry.npmjs.org/classloader/-/classloader-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "e5199f86381e31ba593b7e873be1a7179a75a39e", + "tarball": "http://registry.npmjs.org/classloader/-/classloader-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/classloader/" + }, + "ClassLoader": { + "name": "ClassLoader", + "description": "ClassLoader helper for nodejs", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "edjafarov", + "email": "djkojb@gmail.com" + } + ], + "time": { + "modified": "2011-09-11T21:27:33.068Z", + "created": "2011-09-11T21:27:32.244Z", + "0.0.1": "2011-09-11T21:27:33.068Z" + }, + "author": { + "name": "Eldar Djafarov", + "email": "eldar@djafarov.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ClassLoader/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "1c7028005cbf9ab118038d33be885075b664ac45", + "tarball": "http://registry.npmjs.org/ClassLoader/-/ClassLoader-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/ClassLoader/" + }, + "clay": { + "name": "clay", + "description": "A Node.js Active Record with a charming declaration and simple usage. Supports Redis as backend but can be easily extended", + "dist-tags": { + "latest": "1.2.1" + }, + "maintainers": [ + { + "name": "gabrielfalcao", + "email": "gabriel@nacaolivre.org" + } + ], + "time": { + "modified": "2011-11-25T05:00:49.494Z", + "created": "2011-11-04T01:06:24.007Z", + "1.0.0": "2011-11-04T01:06:26.084Z", + "1.1.0": "2011-11-16T06:06:00.714Z", + "1.1.1": "2011-11-20T23:01:58.690Z", + "1.1.2": "2011-11-21T00:15:39.428Z", + "1.1.3": "2011-11-21T06:25:47.891Z", + "1.1.4": "2011-11-22T07:46:03.988Z", + "1.1.5": "2011-11-22T16:51:37.960Z", + "1.2.0": "2011-11-24T08:15:58.978Z", + "1.2.1": "2011-11-25T05:00:49.494Z" + }, + "users": { + "gabrielfalcao": true + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/clay/1.0.0", + "1.1.0": "http://registry.npmjs.org/clay/1.1.0", + "1.1.1": "http://registry.npmjs.org/clay/1.1.1", + "1.1.2": "http://registry.npmjs.org/clay/1.1.2", + "1.1.3": "http://registry.npmjs.org/clay/1.1.3", + "1.1.4": "http://registry.npmjs.org/clay/1.1.4", + "1.1.5": "http://registry.npmjs.org/clay/1.1.5", + "1.2.0": "http://registry.npmjs.org/clay/1.2.0", + "1.2.1": "http://registry.npmjs.org/clay/1.2.1" + }, + "dist": { + "1.0.0": { + "shasum": "72a6ca93f27fae9749acd0e7a997f5a7923f1250", + "tarball": "http://registry.npmjs.org/clay/-/clay-1.0.0.tgz" + }, + "1.1.0": { + "shasum": "ca42591e7bac07b2d3de2fd7fa4c75be10d5ecb4", + "tarball": "http://registry.npmjs.org/clay/-/clay-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "1b3e227f6873ef082548afb4f487ee4c312b21e4", + "tarball": "http://registry.npmjs.org/clay/-/clay-1.1.1.tgz" + }, + "1.1.2": { + "shasum": "ca62aed1c89786097368108e351211a82cc1905b", + "tarball": "http://registry.npmjs.org/clay/-/clay-1.1.2.tgz" + }, + "1.1.3": { + "shasum": "9f92f573665d89b4d395857105b8c56d52bee74d", + "tarball": "http://registry.npmjs.org/clay/-/clay-1.1.3.tgz" + }, + "1.1.4": { + "shasum": "10d8a5f90ff64043af0dc9594598098940cb9fb7", + "tarball": "http://registry.npmjs.org/clay/-/clay-1.1.4.tgz" + }, + "1.1.5": { + "shasum": "eadd963e3da6143c0b6afb812538ee4514cd3c12", + "tarball": "http://registry.npmjs.org/clay/-/clay-1.1.5.tgz" + }, + "1.2.0": { + "shasum": "306f9ab0279d1716c247351de0639332836eae2f", + "tarball": "http://registry.npmjs.org/clay/-/clay-1.2.0.tgz" + }, + "1.2.1": { + "shasum": "9d0ab82662156b5861c4ae18c277081b45ccb9a0", + "tarball": "http://registry.npmjs.org/clay/-/clay-1.2.1.tgz" + } + }, + "keywords": [ + "Active Record", + "Redis", + "database", + "ORM", + "model", + "models", + "persistence", + "db" + ], + "url": "http://registry.npmjs.org/clay/" + }, + "clean-css": { + "name": "clean-css", + "description": "A well-tested CSS minifier", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "goalsmashers", + "email": "jakub@goalsmashers.com" + } + ], + "time": { + "modified": "2011-11-29T13:07:17.279Z", + "created": "2011-02-28T19:38:45.669Z", + "0.1.0": "2011-02-28T19:38:46.238Z", + "0.2.0": "2011-03-02T21:05:01.592Z", + "0.2.1": "2011-03-20T18:50:12.374Z", + "0.2.2": "2011-04-17T14:53:52.090Z", + "0.2.3": "2011-04-18T07:39:35.264Z", + "0.2.4": "2011-05-25T17:53:53.749Z", + "0.2.5": "2011-11-27T09:13:16.219Z", + "0.2.6": "2011-11-27T15:05:38.304Z", + "0.3.0": "2011-11-29T13:07:17.279Z" + }, + "author": { + "name": "Jakub Pawlowicz", + "email": "jakub@goalsmashers.com", + "url": "http://twitter.com/GoalSmashers" + }, + "repository": { + "type": "git", + "url": "git://github.com/GoalSmashers/clean-css.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/clean-css/0.1.0", + "0.2.0": "http://registry.npmjs.org/clean-css/0.2.0", + "0.2.1": "http://registry.npmjs.org/clean-css/0.2.1", + "0.2.2": "http://registry.npmjs.org/clean-css/0.2.2", + "0.2.3": "http://registry.npmjs.org/clean-css/0.2.3", + "0.2.4": "http://registry.npmjs.org/clean-css/0.2.4", + "0.2.5": "http://registry.npmjs.org/clean-css/0.2.5", + "0.2.6": "http://registry.npmjs.org/clean-css/0.2.6", + "0.3.0": "http://registry.npmjs.org/clean-css/0.3.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/clean-css/-/clean-css-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "38ba392b8781bda410fd2dee37f3cb80df1c6399", + "tarball": "http://registry.npmjs.org/clean-css/-/clean-css-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "d12aef67a3b1b58c7f75ee28ddba8ae5634109d4", + "tarball": "http://registry.npmjs.org/clean-css/-/clean-css-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "8815cf32160dce0277b7ec9028167cb72014f51f", + "tarball": "http://registry.npmjs.org/clean-css/-/clean-css-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "82e154b7a942065050f756314d2d5592efb1ba95", + "tarball": "http://registry.npmjs.org/clean-css/-/clean-css-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "65a332c3d72a8b0dfbf251c227bef2dccbbc99df", + "tarball": "http://registry.npmjs.org/clean-css/-/clean-css-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "22b845ab30b6d501d62b01bc02f145bae4dce58e", + "tarball": "http://registry.npmjs.org/clean-css/-/clean-css-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "dcc080fbc3bc0ceb4dac5e47fc83ac873bca1a7c", + "tarball": "http://registry.npmjs.org/clean-css/-/clean-css-0.2.6.tgz" + }, + "0.3.0": { + "shasum": "edb8128c7b4d292f4a3a32d6e18b8dea420c4b1e", + "tarball": "http://registry.npmjs.org/clean-css/-/clean-css-0.3.0.tgz" + } + }, + "keywords": [ + "css", + "minifier" + ], + "url": "http://registry.npmjs.org/clean-css/" + }, + "clearInterval": { + "name": "clearInterval", + "description": "returns `clearInterval` if present", + "dist-tags": { + "latest": "0.4.9" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-07-14T22:34:34.679Z", + "created": "2011-07-14T22:34:34.306Z", + "0.4.9": "2011-07-14T22:34:34.679Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com", + "url": "http://coolaj86.info" + }, + "repository": { + "type": "git", + "url": "git://github.com/coolaj86/nodejs-libs-4-browser.git" + }, + "versions": { + "0.4.9": "http://registry.npmjs.org/clearInterval/0.4.9" + }, + "dist": { + "0.4.9": { + "shasum": "2b9fa0677af2b2160648bbcdb1fd63f1d501ca4f", + "tarball": "http://registry.npmjs.org/clearInterval/-/clearInterval-0.4.9.tgz" + } + }, + "keywords": [ + "ender", + "clearInterval" + ], + "url": "http://registry.npmjs.org/clearInterval/" + }, + "ClearSilver": { + "name": "ClearSilver", + "description": "ClearSilver template engine bindings for node.js", + "dist-tags": { + "latest": "0.5.0" + }, + "maintainers": [ + { + "name": "mah0x211", + "email": "mah0x211@gmail.com" + } + ], + "time": { + "modified": "2011-03-23T02:01:53.248Z", + "created": "2011-03-23T02:01:52.489Z", + "0.5.0": "2011-03-23T02:01:53.248Z" + }, + "repository": { + "type": "git", + "url": "http://github.com/mah0x211/node-clearsilver.git" + }, + "versions": { + "0.5.0": "http://registry.npmjs.org/ClearSilver/0.5.0" + }, + "dist": { + "0.5.0": { + "shasum": "105e94cdd342dfea043a83a381e46e8a6fb1fa47", + "tarball": "http://registry.npmjs.org/ClearSilver/-/ClearSilver-0.5.0.tgz" + } + }, + "keywords": [ + "template engine", + "ClearSilver" + ], + "url": "http://registry.npmjs.org/ClearSilver/" + }, + "clearTimeout": { + "name": "clearTimeout", + "description": "returns `clearTimeout` if present", + "dist-tags": { + "latest": "0.4.9" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-07-14T22:32:51.171Z", + "created": "2011-07-14T22:32:50.805Z", + "0.4.9": "2011-07-14T22:32:51.171Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com", + "url": "http://coolaj86.info" + }, + "repository": { + "type": "git", + "url": "git://github.com/coolaj86/nodejs-libs-4-browser.git" + }, + "versions": { + "0.4.9": "http://registry.npmjs.org/clearTimeout/0.4.9" + }, + "dist": { + "0.4.9": { + "shasum": "179c90de57907d362e2de1ee0254dfad839a3afc", + "tarball": "http://registry.npmjs.org/clearTimeout/-/clearTimeout-0.4.9.tgz" + } + }, + "keywords": [ + "ender", + "clearTimeout" + ], + "url": "http://registry.npmjs.org/clearTimeout/" + }, + "clerk": { + "name": "clerk", + "description": "CouchDB library for Node.js", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "mikepb", + "email": "michael@mikepb.com" + } + ], + "time": { + "modified": "2011-10-08T00:35:11.978Z", + "created": "2011-10-08T00:35:10.133Z", + "0.0.1": "2011-10-08T00:35:11.979Z" + }, + "author": { + "name": "Michael Phan-Ba", + "email": "michael@mikepb.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mikepb/clerk.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/clerk/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "a3a6b5b6335f68745b390957321876dcdc6b3ee0", + "tarball": "http://registry.npmjs.org/clerk/-/clerk-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/clerk/" + }, + "cli": { + "name": "cli", + "description": "A tool for rapidly building command line apps", + "dist-tags": { + "latest": "0.3.8" + }, + "maintainers": [ + { + "name": "cohara87", + "email": "cohara87@gmail.com" + } + ], + "time": { + "modified": "2011-09-19T12:01:18.040Z", + "created": "2011-01-01T07:20:53.660Z", + "0.1.0": "2011-01-01T07:20:54.661Z", + "0.1.1": "2011-01-02T13:27:25.447Z", + "0.1.3": "2011-01-04T02:42:21.151Z", + "0.1.4": "2011-01-04T03:19:13.491Z", + "0.1.5": "2011-01-04T03:32:32.638Z", + "0.1.6": "2011-01-04T03:38:58.709Z", + "0.1.7": "2011-01-04T04:06:48.213Z", + "0.1.8": "2011-01-04T15:52:54.640Z", + "0.1.9": "2011-01-05T00:38:36.124Z", + "0.2.0": "2011-01-05T00:49:43.059Z", + "0.2.1-1": "2011-01-05T01:10:54.500Z", + "0.2.2-1": "2011-01-06T07:06:25.999Z", + "0.2.3-1": "2011-01-06T11:14:50.363Z", + "0.2.3-2": "2011-01-06T11:23:30.062Z", + "0.2.3-3": "2011-01-08T10:43:28.459Z", + "0.2.3-4": "2011-01-08T10:46:18.266Z", + "0.2.3-5": "2011-01-13T10:24:16.995Z", + "0.2.4-1": "2011-01-14T23:53:37.722Z", + "0.2.4-2": "2011-01-15T00:41:57.116Z", + "0.2.5": "2011-02-01T02:42:51.762Z", + "0.2.6": "2011-02-02T08:26:08.648Z", + "0.2.7": "2011-02-25T19:35:19.533Z", + "0.2.8": "2011-03-12T00:18:59.188Z", + "0.3.0": "2011-05-13T14:10:02.685Z", + "0.3.1": "2011-05-16T10:41:43.959Z", + "0.3.2": "2011-05-19T10:31:56.571Z", + "0.3.3": "2011-05-19T20:54:12.737Z", + "0.3.4": "2011-05-22T00:29:04.266Z", + "0.3.5": "2011-05-24T09:48:14.953Z", + "0.3.6": "2011-05-24T09:52:11.465Z", + "0.3.7": "2011-06-30T02:40:00.918Z", + "0.3.8": "2011-09-19T12:01:18.040Z" + }, + "author": { + "name": "Chris O'Hara", + "email": "cohara87@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/chriso/cli.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/cli/0.1.0", + "0.1.1": "http://registry.npmjs.org/cli/0.1.1", + "0.1.3": "http://registry.npmjs.org/cli/0.1.3", + "0.1.4": "http://registry.npmjs.org/cli/0.1.4", + "0.1.5": "http://registry.npmjs.org/cli/0.1.5", + "0.1.6": "http://registry.npmjs.org/cli/0.1.6", + "0.1.7": "http://registry.npmjs.org/cli/0.1.7", + "0.1.8": "http://registry.npmjs.org/cli/0.1.8", + "0.1.9": "http://registry.npmjs.org/cli/0.1.9", + "0.2.0": "http://registry.npmjs.org/cli/0.2.0", + "0.2.1-1": "http://registry.npmjs.org/cli/0.2.1-1", + "0.2.2-1": "http://registry.npmjs.org/cli/0.2.2-1", + "0.2.3-1": "http://registry.npmjs.org/cli/0.2.3-1", + "0.2.3-2": "http://registry.npmjs.org/cli/0.2.3-2", + "0.2.3-3": "http://registry.npmjs.org/cli/0.2.3-3", + "0.2.3-4": "http://registry.npmjs.org/cli/0.2.3-4", + "0.2.3-5": "http://registry.npmjs.org/cli/0.2.3-5", + "0.2.4-1": "http://registry.npmjs.org/cli/0.2.4-1", + "0.2.4-2": "http://registry.npmjs.org/cli/0.2.4-2", + "0.2.5": "http://registry.npmjs.org/cli/0.2.5", + "0.2.6": "http://registry.npmjs.org/cli/0.2.6", + "0.2.7": "http://registry.npmjs.org/cli/0.2.7", + "0.2.8": "http://registry.npmjs.org/cli/0.2.8", + "0.3.0": "http://registry.npmjs.org/cli/0.3.0", + "0.3.1": "http://registry.npmjs.org/cli/0.3.1", + "0.3.2": "http://registry.npmjs.org/cli/0.3.2", + "0.3.3": "http://registry.npmjs.org/cli/0.3.3", + "0.3.4": "http://registry.npmjs.org/cli/0.3.4", + "0.3.5": "http://registry.npmjs.org/cli/0.3.5", + "0.3.6": "http://registry.npmjs.org/cli/0.3.6", + "0.3.7": "http://registry.npmjs.org/cli/0.3.7", + "0.3.8": "http://registry.npmjs.org/cli/0.3.8" + }, + "dist": { + "0.1.0": { + "shasum": "40066f20d2193b6508a4faf09cb394dbd2f42519", + "tarball": "http://registry.npmjs.org/cli/-/cli-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "d353c04bbc2cd74812a089cde66128c48bf5e354", + "tarball": "http://registry.npmjs.org/cli/-/cli-0.1.1.tgz" + }, + "0.1.3": { + "shasum": "6670647be72f9a3bfb99d0ac071a39e1f179fb83", + "tarball": "http://registry.npmjs.org/cli/-/cli-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "f1881854eb29dd1be61fa5cf669b126b8de166bc", + "tarball": "http://registry.npmjs.org/cli/-/cli-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "4feee13c6ef8089f98acdfc5a3b8682066822d4b", + "tarball": "http://registry.npmjs.org/cli/-/cli-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "7984c77b5d21a2a5bd6365d705a7f4a37d8f2b46", + "tarball": "http://registry.npmjs.org/cli/-/cli-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "16a609c5c84d7b6195f0e13b0d58f66db9a26b47", + "tarball": "http://registry.npmjs.org/cli/-/cli-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "8e641421c14dbc67618367b4dd4c71e07cfc7682", + "tarball": "http://registry.npmjs.org/cli/-/cli-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "005d82883391cbf1c0b67c7ffc6449b1ccd8f650", + "tarball": "http://registry.npmjs.org/cli/-/cli-0.1.9.tgz" + }, + "0.2.0": { + "shasum": "71a16636a2663db9bc40b1f30e5499c71011feca", + "tarball": "http://registry.npmjs.org/cli/-/cli-0.2.0.tgz" + }, + "0.2.1-1": { + "shasum": "91cd3a5c571894555ed77e66b3181cc1da4a5f49", + "tarball": "http://registry.npmjs.org/cli/-/cli-0.2.1-1.tgz" + }, + "0.2.2-1": { + "shasum": "3b9df09dfdeb72453163ab6243cfb4ced148ad21", + "tarball": "http://registry.npmjs.org/cli/-/cli-0.2.2-1.tgz" + }, + "0.2.3-1": { + "shasum": "3cf8911ffed3898f5207a6f19692556e6461a11f", + "tarball": "http://registry.npmjs.org/cli/-/cli-0.2.3-1.tgz" + }, + "0.2.3-2": { + "shasum": "61ea70fa5c0fef594cc66398a52d7fd511f5cd52", + "tarball": "http://registry.npmjs.org/cli/-/cli-0.2.3-2.tgz" + }, + "0.2.3-3": { + "shasum": "8509f21e8de02dcf9ed10a6300f485a9f862c26f", + "tarball": "http://registry.npmjs.org/cli/-/cli-0.2.3-3.tgz" + }, + "0.2.3-4": { + "shasum": "e22544cb152785b0dccd4d60f4318ad63f7c25ef", + "tarball": "http://registry.npmjs.org/cli/-/cli-0.2.3-4.tgz" + }, + "0.2.3-5": { + "shasum": "3960884d9f592819b2299d899d008e120fa6ce39", + "tarball": "http://registry.npmjs.org/cli/-/cli-0.2.3-5.tgz" + }, + "0.2.4-1": { + "shasum": "8796402baf011975ba68bb50f9e6b488b9ffa69e", + "tarball": "http://registry.npmjs.org/cli/-/cli-0.2.4-1.tgz" + }, + "0.2.4-2": { + "shasum": "ca9d805cc3866d94ee80d9fc8a5e9e81df463bde", + "tarball": "http://registry.npmjs.org/cli/-/cli-0.2.4-2.tgz" + }, + "0.2.5": { + "shasum": "c27b331e8409a28761b4d73a4c00d8f067eab0ec", + "tarball": "http://registry.npmjs.org/cli/-/cli-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "5e4eaded66413344493ff70a1836bdeb4e519d35", + "tarball": "http://registry.npmjs.org/cli/-/cli-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "6fe3db18926aade712018fd72e2656b139b08ef0", + "tarball": "http://registry.npmjs.org/cli/-/cli-0.2.7.tgz" + }, + "0.2.8": { + "shasum": "c86ac7fc75193bc836c369ca9eff37022ffec559", + "tarball": "http://registry.npmjs.org/cli/-/cli-0.2.8.tgz" + }, + "0.3.0": { + "shasum": "41852190d974a8d18465a0b1a1ca80c92b31eed1", + "tarball": "http://registry.npmjs.org/cli/-/cli-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "f56ee983212a3a58b697c614f292b1e8c3f3b9fa", + "tarball": "http://registry.npmjs.org/cli/-/cli-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "7b28820e8c3e853b72e30aa4cec0179aa06cdd7f", + "tarball": "http://registry.npmjs.org/cli/-/cli-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "4fdc9746165fc8da7048c4733faee289d6112d69", + "tarball": "http://registry.npmjs.org/cli/-/cli-0.3.3.tgz" + }, + "0.3.4": { + "shasum": "16bfa95a11fe439486daea2c7db448d1eb34cf5c", + "tarball": "http://registry.npmjs.org/cli/-/cli-0.3.4.tgz" + }, + "0.3.5": { + "shasum": "9819d523fab9830b2eeaf7ec9b39918cc9876116", + "tarball": "http://registry.npmjs.org/cli/-/cli-0.3.5.tgz" + }, + "0.3.6": { + "shasum": "f1d627e1300b6afe9575367b1804366d13f81205", + "tarball": "http://registry.npmjs.org/cli/-/cli-0.3.6.tgz" + }, + "0.3.7": { + "shasum": "1b6dd1f267ce6817e353ecc8a5c231eb8aaf4786", + "tarball": "http://registry.npmjs.org/cli/-/cli-0.3.7.tgz" + }, + "0.3.8": { + "shasum": "1d704b92dff637c6bd8baadebd28ca9e1e3c955c", + "tarball": "http://registry.npmjs.org/cli/-/cli-0.3.8.tgz" + } + }, + "keywords": [ + "cli", + "command line", + "opts", + "parseopt", + "opt", + "args", + "console", + "argsparse", + "optparse", + "daemon", + "autocomplete", + "command", + "autocompletion" + ], + "url": "http://registry.npmjs.org/cli/" + }, + "cli-chart": { + "name": "cli-chart", + "description": "Ansi color Bar Charts in your terminal with node.js!", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "andrewjstone", + "email": "andrew.stone@bozuko.com" + } + ], + "time": { + "modified": "2011-10-31T14:50:46.455Z", + "created": "2011-10-25T23:42:32.394Z", + "0.1.0": "2011-10-25T23:42:32.734Z", + "0.2.0": "2011-10-26T19:32:34.518Z", + "0.2.2": "2011-10-26T20:40:17.891Z", + "0.3.0": "2011-10-31T14:50:46.455Z" + }, + "author": { + "name": "Andrew J. Stone", + "email": "andrew.stone@bozuko.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/andrewjstone/cli-chart.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/cli-chart/0.1.0", + "0.2.0": "http://registry.npmjs.org/cli-chart/0.2.0", + "0.2.2": "http://registry.npmjs.org/cli-chart/0.2.2", + "0.3.0": "http://registry.npmjs.org/cli-chart/0.3.0" + }, + "dist": { + "0.1.0": { + "shasum": "eddaeb6558e8bb2020bc93efebbe245048abf5e1", + "tarball": "http://registry.npmjs.org/cli-chart/-/cli-chart-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "40adcc7b0f4614250557dee5774aa0240813292d", + "tarball": "http://registry.npmjs.org/cli-chart/-/cli-chart-0.2.0.tgz" + }, + "0.2.2": { + "shasum": "c7c4d2334fc4860dc29a100e3b02046034b834f9", + "tarball": "http://registry.npmjs.org/cli-chart/-/cli-chart-0.2.2.tgz" + }, + "0.3.0": { + "shasum": "a6cf5ed4f4fc0ba137d87d029a1035b0f6fbbfa4", + "tarball": "http://registry.npmjs.org/cli-chart/-/cli-chart-0.3.0.tgz" + } + }, + "keywords": [ + "terminal", + "ansi", + "chart", + "bar", + "console", + "graph" + ], + "url": "http://registry.npmjs.org/cli-chart/" + }, + "cli-color": { + "name": "cli-color", + "description": "Colors, formatting and other tools for the console", + "dist-tags": { + "latest": "0.1.5" + }, + "maintainers": [ + { + "name": "medikoo", + "email": "medikoo+npm@medikoo.com" + } + ], + "time": { + "modified": "2011-12-12T14:08:47.607Z", + "created": "2011-07-11T15:25:09.329Z", + "0.1.0": "2011-07-11T15:25:10.984Z", + "0.1.1": "2011-07-12T09:56:40.343Z", + "0.1.2": "2011-08-08T12:09:50.751Z", + "0.1.3": "2011-08-08T15:04:46.382Z", + "0.1.4": "2011-10-05T13:51:31.407Z", + "0.1.5": "2011-12-12T14:08:47.607Z" + }, + "author": { + "name": "Mariusz Nowak", + "email": "medikoo+cli-color@medikoo.com", + "url": "http://www.medikoo.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/medikoo/cli-color.git" + }, + "users": { + "dylang": true + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/cli-color/0.1.0", + "0.1.1": "http://registry.npmjs.org/cli-color/0.1.1", + "0.1.2": "http://registry.npmjs.org/cli-color/0.1.2", + "0.1.3": "http://registry.npmjs.org/cli-color/0.1.3", + "0.1.4": "http://registry.npmjs.org/cli-color/0.1.4", + "0.1.5": "http://registry.npmjs.org/cli-color/0.1.5" + }, + "dist": { + "0.1.0": { + "shasum": "c270266f17aa8aafde1b6dbcda3de445bed148c3", + "tarball": "http://registry.npmjs.org/cli-color/-/cli-color-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "3ffdb35e9a30b85497c58c94ee18f6772b98d6db", + "tarball": "http://registry.npmjs.org/cli-color/-/cli-color-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "f1536e0c3e9290c9ea52c59284842d2261c097e6", + "tarball": "http://registry.npmjs.org/cli-color/-/cli-color-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "ad1f914e2195388204d8e55bf3e2c3a709685f77", + "tarball": "http://registry.npmjs.org/cli-color/-/cli-color-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "0b751db7b255c1a9509b7c263caa1a7981717ff9", + "tarball": "http://registry.npmjs.org/cli-color/-/cli-color-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "5029b55d850a99a9e7a13c6771021e6cabbc00a3", + "tarball": "http://registry.npmjs.org/cli-color/-/cli-color-0.1.5.tgz" + } + }, + "keywords": [ + "ansi", + "color", + "console", + "terminal", + "cli", + "shell", + "log", + "logging", + "xterm" + ], + "url": "http://registry.npmjs.org/cli-color/" + }, + "cli-table": { + "name": "cli-table", + "description": "Pretty unicode tables for the CLI", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "rauchg", + "email": "rauchg@gmail.com" + } + ], + "time": { + "modified": "2011-01-04T03:29:59.419Z", + "created": "2011-01-04T03:29:59.109Z", + "0.0.1": "2011-01-04T03:29:59.419Z" + }, + "author": { + "name": "Guillermo Rauch", + "email": "guillermo@learnboost.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/cli-table/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "94ef7bb0eee22ae427b4b8106d9c366b80729602", + "tarball": "http://registry.npmjs.org/cli-table/-/cli-table-0.0.1.tgz" + } + }, + "keywords": [ + "cli", + "colors", + "table" + ], + "url": "http://registry.npmjs.org/cli-table/" + }, + "CLI-UI": { + "name": "CLI-UI", + "description": "A command-line based user interface library for node.js", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "11rcombs", + "email": "rodger.combs@gmail.com" + } + ], + "time": { + "modified": "2011-06-01T19:35:23.745Z", + "created": "2011-06-01T14:20:14.093Z", + "0.1.0": "2011-06-01T14:20:14.357Z", + "0.2.0": "2011-06-01T19:35:23.745Z" + }, + "author": { + "name": "Rodger Combs", + "email": "rodger.combs@gmail.com", + "url": "http://combsconnections.tk/" + }, + "repository": { + "type": "git", + "url": "git://github.com/11rcombs/node-cli-ui.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/CLI-UI/0.1.0", + "0.2.0": "http://registry.npmjs.org/CLI-UI/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "e7021965899455a31db67b6e2bd34d7e7317fd44", + "tarball": "http://registry.npmjs.org/CLI-UI/-/CLI-UI-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "1981367918dcf24a3ef79b7d0c2b2a65d010d4c4", + "tarball": "http://registry.npmjs.org/CLI-UI/-/CLI-UI-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/CLI-UI/" + }, + "clickatell": { + "name": "clickatell", + "description": "Client for the Clickatell SMS gateway.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "pingles", + "email": "paul@oobaloo.co.uk" + } + ], + "time": { + "modified": "2011-09-07T09:03:51.796Z", + "created": "2011-09-07T09:03:51.438Z", + "0.0.1": "2011-09-07T09:03:51.796Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/clickatell/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "be4746da0a001ab78abb25792a0f9726829c2272", + "tarball": "http://registry.npmjs.org/clickatell/-/clickatell-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/clickatell/" + }, + "clicktime": { + "name": "clicktime", + "description": "A wrapper for the ClickTime SOAP API", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "caseyohara", + "email": "caseyo@caseyohara.com" + } + ], + "time": { + "modified": "2011-09-22T02:33:29.296Z", + "created": "2011-09-05T23:40:59.144Z", + "0.0.1": "2011-09-05T23:40:59.780Z", + "0.0.2": "2011-09-06T01:22:46.438Z" + }, + "author": { + "name": "Casey O'Hara", + "email": "caseyo@caseyohara.com", + "url": "http://github.com/caseyohara" + }, + "repository": { + "type": "git", + "url": "git://github.com/caseyohara/node-clicktime.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/clicktime/0.0.1", + "0.0.2": "http://registry.npmjs.org/clicktime/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "3f5ddc467c939dea7d7e98f3e8ad6044ac787283", + "tarball": "http://registry.npmjs.org/clicktime/-/clicktime-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "8a6542baff3c5e097f7f49d27d6d0179b00aafec", + "tarball": "http://registry.npmjs.org/clicktime/-/clicktime-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/clicktime/" + }, + "clientexpress": { + "name": "clientexpress", + "description": "An implementation of the Express API for use in the browser to progressively enhance the user experience using JavaScript", + "dist-tags": { + "latest": "0.7.7" + }, + "maintainers": [ + { + "name": "marknijhof", + "email": "mark.nijhof@cre8ivethought.com" + } + ], + "time": { + "modified": "2011-10-03T11:44:30.936Z", + "created": "2011-08-29T16:58:55.963Z", + "0.7.2": "2011-08-29T16:58:56.659Z", + "0.7.3": "2011-09-28T21:43:34.290Z", + "0.7.4": "2011-09-28T21:57:12.825Z", + "0.7.5": "2011-09-29T20:49:15.280Z", + "0.7.6": "2011-09-29T23:33:42.607Z", + "0.7.7": "2011-10-03T11:44:30.937Z" + }, + "author": { + "name": "Mark Nijhof", + "email": "mark.nijhof@cre8ivethought.com", + "url": "cre8ivethought.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/MarkNijhof/client.express.js.git" + }, + "versions": { + "0.7.2": "http://registry.npmjs.org/clientexpress/0.7.2", + "0.7.3": "http://registry.npmjs.org/clientexpress/0.7.3", + "0.7.4": "http://registry.npmjs.org/clientexpress/0.7.4", + "0.7.5": "http://registry.npmjs.org/clientexpress/0.7.5", + "0.7.6": "http://registry.npmjs.org/clientexpress/0.7.6", + "0.7.7": "http://registry.npmjs.org/clientexpress/0.7.7" + }, + "dist": { + "0.7.2": { + "shasum": "537fca014d7b8671e8cffcf3f071ae9fcc01a3a9", + "tarball": "http://registry.npmjs.org/clientexpress/-/clientexpress-0.7.2.tgz" + }, + "0.7.3": { + "shasum": "e50df951776632299f6d9a8be14a9d36e96d7cc1", + "tarball": "http://registry.npmjs.org/clientexpress/-/clientexpress-0.7.3.tgz" + }, + "0.7.4": { + "shasum": "fcbabd5a8ac77520988261cec549a9e45331bdab", + "tarball": "http://registry.npmjs.org/clientexpress/-/clientexpress-0.7.4.tgz" + }, + "0.7.5": { + "shasum": "c43218a1df56156dd336484bdabcdd94189a7922", + "tarball": "http://registry.npmjs.org/clientexpress/-/clientexpress-0.7.5.tgz" + }, + "0.7.6": { + "shasum": "e29f4d0955408e13122b82895d1e86b4ea7affe4", + "tarball": "http://registry.npmjs.org/clientexpress/-/clientexpress-0.7.6.tgz" + }, + "0.7.7": { + "shasum": "c306f582267feaf0016cc64602888ff616076a91", + "tarball": "http://registry.npmjs.org/clientexpress/-/clientexpress-0.7.7.tgz" + } + }, + "url": "http://registry.npmjs.org/clientexpress/" + }, + "cliff": { + "name": "cliff", + "description": "Your CLI formatting friend.", + "dist-tags": { + "latest": "0.1.5" + }, + "maintainers": [ + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + }, + { + "name": "marak", + "email": "marak.squires@gmail.com" + }, + { + "name": "nicoreed", + "email": "dev@nicoreed.com" + } + ], + "time": { + "modified": "2011-09-12T17:41:54.773Z", + "created": "2011-05-30T03:55:50.813Z", + "0.1.0": "2011-05-30T03:55:51.243Z", + "0.1.1": "2011-05-30T19:19:08.471Z", + "0.1.2": "2011-06-08T03:13:46.716Z", + "0.1.3": "2011-06-21T18:43:42.542Z", + "0.1.4": "2011-09-11T05:10:21.154Z", + "0.1.5": "2011-09-12T17:41:54.773Z" + }, + "author": { + "name": "Nodejitsu", + "email": "info@nodejitsu.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/nodejitsu/cliff.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/cliff/0.1.0", + "0.1.1": "http://registry.npmjs.org/cliff/0.1.1", + "0.1.2": "http://registry.npmjs.org/cliff/0.1.2", + "0.1.3": "http://registry.npmjs.org/cliff/0.1.3", + "0.1.4": "http://registry.npmjs.org/cliff/0.1.4", + "0.1.5": "http://registry.npmjs.org/cliff/0.1.5" + }, + "dist": { + "0.1.0": { + "shasum": "5a9097b26e548199507e3aed42cb761916a9b90a", + "tarball": "http://registry.npmjs.org/cliff/-/cliff-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "170a079ee055a8cd0416282ac725f10d1ca6201b", + "tarball": "http://registry.npmjs.org/cliff/-/cliff-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "a8ade9fe923222017d26741e4cca1e5b421348bc", + "tarball": "http://registry.npmjs.org/cliff/-/cliff-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "9a3573030e3f50f1afdaeb14bb99860f8ddb6c90", + "tarball": "http://registry.npmjs.org/cliff/-/cliff-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "21e42c66e09c0bd7dca795ffcc11f68b95cbd2d1", + "tarball": "http://registry.npmjs.org/cliff/-/cliff-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "d515a5801f16b712c45607711da05bae70327058", + "tarball": "http://registry.npmjs.org/cliff/-/cliff-0.1.5.tgz" + } + }, + "keywords": [ + "cli", + "logging", + "tools", + "winston" + ], + "url": "http://registry.npmjs.org/cliff/" + }, + "clip": { + "name": "clip", + "description": "express meets the CLI", + "dist-tags": { + "latest": "0.1.6" + }, + "maintainers": [ + { + "name": "bradleymeck", + "email": "bradley.meck@gmail.com" + } + ], + "time": { + "modified": "2011-10-03T20:50:38.208Z", + "created": "2011-06-23T19:51:30.597Z", + "0.1.0": "2011-06-23T19:51:31.025Z", + "0.1.1": "2011-06-23T21:09:02.897Z", + "0.1.2": "2011-06-24T14:28:50.285Z", + "0.1.4": "2011-07-08T20:44:37.147Z", + "0.1.5": "2011-09-27T18:57:35.028Z", + "0.1.6": "2011-10-03T20:50:38.208Z" + }, + "author": { + "name": "bradleymeck" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/clip/0.1.0", + "0.1.1": "http://registry.npmjs.org/clip/0.1.1", + "0.1.2": "http://registry.npmjs.org/clip/0.1.2", + "0.1.4": "http://registry.npmjs.org/clip/0.1.4", + "0.1.5": "http://registry.npmjs.org/clip/0.1.5", + "0.1.6": "http://registry.npmjs.org/clip/0.1.6" + }, + "dist": { + "0.1.0": { + "shasum": "f56c97ee976d29c81d5a77e86d0c6847d635457c", + "tarball": "http://registry.npmjs.org/clip/-/clip-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "b6f3a33acae4b1a695ca562525b0e3e72bb4213c", + "tarball": "http://registry.npmjs.org/clip/-/clip-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "668e7fbf7bd8d3b98f8d5be93d6d40c1dc8747a2", + "tarball": "http://registry.npmjs.org/clip/-/clip-0.1.2.tgz" + }, + "0.1.4": { + "shasum": "9ffeae77a859ccb67a15f830a4933f0be8b1e835", + "tarball": "http://registry.npmjs.org/clip/-/clip-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "b1b1ac5811e585bc7320aa97e85463247f9296a8", + "tarball": "http://registry.npmjs.org/clip/-/clip-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "02913eaf7530440232db3728e4745ec26c7d65a4", + "tarball": "http://registry.npmjs.org/clip/-/clip-0.1.6.tgz" + } + }, + "keywords": [ + "CLI" + ], + "url": "http://registry.npmjs.org/clip/" + }, + "clipcrop": { + "name": "clipcrop", + "description": "a tool for detecting structural variations using soft-clipping information", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "shinout", + "email": "shinout310@gmail.com" + } + ], + "time": { + "modified": "2011-11-28T14:14:48.958Z", + "created": "2011-11-16T05:11:52.379Z", + "0.0.2": "2011-11-16T05:11:55.111Z", + "0.0.3": "2011-11-18T02:31:04.661Z", + "0.0.4": "2011-11-18T03:34:27.500Z", + "0.0.5": "2011-11-18T09:48:27.887Z", + "0.0.6": "2011-11-18T12:50:17.711Z", + "0.0.8": "2011-11-21T11:44:52.481Z", + "0.0.10": "2011-11-25T02:51:22.856Z", + "0.0.11": "2011-11-28T03:57:27.919Z", + "0.0.12": "2011-11-28T07:50:30.958Z", + "0.1.0": "2011-11-28T13:42:56.669Z", + "0.1.1": "2011-11-28T14:14:48.958Z" + }, + "author": { + "name": "SHIN Suzuki", + "email": "shinout310@gmail.com" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/clipcrop/0.0.2", + "0.0.3": "http://registry.npmjs.org/clipcrop/0.0.3", + "0.0.4": "http://registry.npmjs.org/clipcrop/0.0.4", + "0.0.5": "http://registry.npmjs.org/clipcrop/0.0.5", + "0.0.6": "http://registry.npmjs.org/clipcrop/0.0.6", + "0.0.8": "http://registry.npmjs.org/clipcrop/0.0.8", + "0.0.10": "http://registry.npmjs.org/clipcrop/0.0.10", + "0.0.11": "http://registry.npmjs.org/clipcrop/0.0.11", + "0.0.12": "http://registry.npmjs.org/clipcrop/0.0.12", + "0.1.0": "http://registry.npmjs.org/clipcrop/0.1.0", + "0.1.1": "http://registry.npmjs.org/clipcrop/0.1.1" + }, + "dist": { + "0.0.2": { + "shasum": "ed7f91dee2df8fa431f9aa4295834dbc374e41f1", + "tarball": "http://registry.npmjs.org/clipcrop/-/clipcrop-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "40a4aacf1959194ec8c89eaa4030f9a9e9dcdbfd", + "tarball": "http://registry.npmjs.org/clipcrop/-/clipcrop-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "504c5618fbfb13c7923bd5e335e489eb12ebf70d", + "tarball": "http://registry.npmjs.org/clipcrop/-/clipcrop-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "0cc5e75d0df32b50c762ef404f9acd6063bb7e2f", + "tarball": "http://registry.npmjs.org/clipcrop/-/clipcrop-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "f17cefc587667b0348e66cb5c03644fc7b695167", + "tarball": "http://registry.npmjs.org/clipcrop/-/clipcrop-0.0.6.tgz" + }, + "0.0.8": { + "shasum": "9fa367039156dc8bc78b444767c2c1f5dcf57cab", + "tarball": "http://registry.npmjs.org/clipcrop/-/clipcrop-0.0.8.tgz" + }, + "0.0.10": { + "shasum": "9021ca2b6378f991d4c05f8452da01ef061be500", + "tarball": "http://registry.npmjs.org/clipcrop/-/clipcrop-0.0.10.tgz" + }, + "0.0.11": { + "shasum": "f129043c2839ccd7b572ab0b13a244092a41b5a1", + "tarball": "http://registry.npmjs.org/clipcrop/-/clipcrop-0.0.11.tgz" + }, + "0.0.12": { + "shasum": "88f2f89f6a651e328659b0eda1ca854101cb4869", + "tarball": "http://registry.npmjs.org/clipcrop/-/clipcrop-0.0.12.tgz" + }, + "0.1.0": { + "shasum": "9ce6ad7f9837f1d11150980b8aaacdf35f3ac5d6", + "tarball": "http://registry.npmjs.org/clipcrop/-/clipcrop-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "b3f778ac04b0b8fd60aacf7de390b6a4e28c16ff", + "tarball": "http://registry.npmjs.org/clipcrop/-/clipcrop-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/clipcrop/" + }, + "clisms": { + "name": "clisms", + "description": "A command-line app to send SMS messages using the Clickatell SMS gateway", + "dist-tags": { + "latest": "0.3.1" + }, + "maintainers": [ + { + "name": "srackham", + "email": "srackham@gmail.com" + } + ], + "time": { + "modified": "2011-10-27T19:30:33.318Z", + "created": "2011-10-27T02:55:45.456Z", + "0.3.0": "2011-10-27T02:55:48.282Z", + "0.3.1": "2011-10-27T19:30:33.318Z" + }, + "author": { + "name": "Stuart Rackham", + "email": "srackham@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/srackham/clisms.git" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/clisms/0.3.0", + "0.3.1": "http://registry.npmjs.org/clisms/0.3.1" + }, + "dist": { + "0.3.0": { + "shasum": "6468e549ec419d21df5c25ec2de0941071078a43", + "tarball": "http://registry.npmjs.org/clisms/-/clisms-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "c1266fa41b31a9bca5935d1b2a87e86da6841741", + "tarball": "http://registry.npmjs.org/clisms/-/clisms-0.3.1.tgz" + } + }, + "keywords": [ + "sms", + "clickatell", + "command-line" + ], + "url": "http://registry.npmjs.org/clisms/" + }, + "CLoader": { + "name": "CLoader", + "description": "ClassLoader helper for nodejs", + "dist-tags": {}, + "maintainers": [ + { + "name": "edjafarov", + "email": "djkojb@gmail.com" + } + ], + "time": { + "modified": "2011-06-17T12:09:44.717Z", + "created": "2011-06-17T12:09:44.717Z" + }, + "versions": {}, + "dist": {}, + "url": "http://registry.npmjs.org/CLoader/" + }, + "clock": { + "name": "clock", + "description": "Indicate and co-ordinate time events", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "medikoo", + "email": "medikoo+npm@medikoo.com" + } + ], + "time": { + "modified": "2011-08-08T14:58:09.555Z", + "created": "2011-08-08T10:57:51.502Z", + "0.1.0": "2011-08-08T10:57:55.136Z", + "0.1.1": "2011-08-08T14:58:09.555Z" + }, + "author": { + "name": "Mariusz Nowak", + "email": "medikoo+clock@medikoo.com", + "url": "http://www.medikoo.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/medikoo/clock.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/clock/0.1.0", + "0.1.1": "http://registry.npmjs.org/clock/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "8ee4ce7862c8bc43593ca0a76df356f9628cf041", + "tarball": "http://registry.npmjs.org/clock/-/clock-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "91c0714a66e9d8c8c3b654119ccd2790bfc6cc2e", + "tarball": "http://registry.npmjs.org/clock/-/clock-0.1.1.tgz" + } + }, + "keywords": [ + "time", + "watch", + "event", + "events", + "clock", + "async", + "asynchronous" + ], + "url": "http://registry.npmjs.org/clock/" + }, + "clog": { + "name": "clog", + "description": "Colorful console output in NodeJS.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "firejune", + "email": "to@firejune.com" + } + ], + "time": { + "modified": "2011-10-19T03:18:55.022Z", + "created": "2011-09-08T16:27:18.643Z", + "0.0.1": "2011-09-08T16:27:21.896Z", + "0.0.2": "2011-09-09T13:45:17.808Z", + "0.0.3": "2011-10-19T03:13:06.281Z", + "0.1.1": "2011-10-19T03:18:55.022Z" + }, + "author": { + "name": "Firejune", + "url": "http://firejune.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/firejune/clog.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/clog/0.0.1", + "0.0.2": "http://registry.npmjs.org/clog/0.0.2", + "0.0.3": "http://registry.npmjs.org/clog/0.0.3", + "0.1.1": "http://registry.npmjs.org/clog/0.1.1" + }, + "dist": { + "0.0.1": { + "shasum": "41503c0c399dc9ec539ba2a647b93fb6e12e1100", + "tarball": "http://registry.npmjs.org/clog/-/clog-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "a4f62f4d30f44585fa50522944a34026d39a237d", + "tarball": "http://registry.npmjs.org/clog/-/clog-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "da2d33ffad0eaa44a549068a2dc93129622b6915", + "tarball": "http://registry.npmjs.org/clog/-/clog-0.0.3.tgz" + }, + "0.1.1": { + "shasum": "cca4d565b93127ca630b79fd997982140a452928", + "tarball": "http://registry.npmjs.org/clog/-/clog-0.1.1.tgz" + } + }, + "keywords": [ + "color", + "console", + "log", + "info", + "warn", + "error" + ], + "url": "http://registry.npmjs.org/clog/" + }, + "clone": { + "name": "clone", + "description": "deep cloning of objects and arrays", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "pvorb", + "email": "paul@vorb.de" + } + ], + "time": { + "modified": "2011-12-06T08:27:23.442Z", + "created": "2011-09-03T01:49:48.705Z", + "0.0.0": "2011-09-03T01:49:51.634Z", + "0.0.1": "2011-09-03T02:19:26.641Z", + "0.0.2": "2011-09-18T00:16:03.912Z", + "0.0.3": "2011-10-06T18:21:26.501Z", + "0.0.4": "2011-12-06T08:27:23.442Z" + }, + "author": { + "name": "Paul Vorbach", + "email": "paul@vorb.de", + "url": "http://vorb.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/pvorb/node-clone.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/clone/0.0.0", + "0.0.1": "http://registry.npmjs.org/clone/0.0.1", + "0.0.2": "http://registry.npmjs.org/clone/0.0.2", + "0.0.3": "http://registry.npmjs.org/clone/0.0.3", + "0.0.4": "http://registry.npmjs.org/clone/0.0.4" + }, + "dist": { + "0.0.0": { + "shasum": "ed7d92f31a09d9aab8a59941e91a2bb34d592599", + "tarball": "http://registry.npmjs.org/clone/-/clone-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "a7e9554be7f06b977a0c126f9b144cd21c7338b3", + "tarball": "http://registry.npmjs.org/clone/-/clone-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "bd6b2dc14abe64e9b7608e6fa99a0bdaa58cce0c", + "tarball": "http://registry.npmjs.org/clone/-/clone-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "4cde8ef4ebafc550bbee7c38ccb815c20f1d97cd", + "tarball": "http://registry.npmjs.org/clone/-/clone-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "7b12de7297526de0f6a211e8a7147e97471d15a7", + "tarball": "http://registry.npmjs.org/clone/-/clone-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/clone/" + }, + "closure": { + "name": "closure", + "description": "Google closure-library wrapper for node.js", + "dist-tags": { + "latest": "1.0.2" + }, + "maintainers": [ + { + "name": "lm1", + "email": "mielicki@gmail.com" + } + ], + "time": { + "modified": "2011-01-24T17:30:54.482Z", + "created": "2011-01-09T22:54:18.143Z", + "1.0.0": "2011-01-09T22:54:18.542Z", + "1.0.1": "2011-01-10T23:15:27.915Z", + "1.0.2": "2011-01-24T17:30:54.482Z" + }, + "author": { + "name": "Lukasz Mielicki", + "email": "mielicki@gmail.com" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/closure/1.0.0", + "1.0.1": "http://registry.npmjs.org/closure/1.0.1", + "1.0.2": "http://registry.npmjs.org/closure/1.0.2" + }, + "dist": { + "1.0.0": { + "shasum": "0541262dd1f485535ef1bc2c37673ba0a377edf7", + "tarball": "http://registry.npmjs.org/closure/-/closure-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "86bae83fefd7d94f779bfb63f356a69cd92dd0a7", + "tarball": "http://registry.npmjs.org/closure/-/closure-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "e96236d80a24b6899c2f1fd069178babf887fe58", + "tarball": "http://registry.npmjs.org/closure/-/closure-1.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/closure/" + }, + "closure-compiler": { + "name": "closure-compiler", + "description": "Bindings to Google's Closure Compiler", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "Tim-Smart", + "email": "tim@fostle.com" + } + ], + "author": { + "name": "Tim-Smart" + }, + "repository": { + "type": "git", + "url": "git://github.com/Tim-Smart/node-closure.git" + }, + "time": { + "modified": "2011-09-13T23:15:49.301Z", + "created": "2011-09-13T23:15:49.301Z", + "0.1.0": "2011-09-13T23:15:49.301Z", + "0.1.1": "2011-09-13T23:15:49.301Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/closure-compiler/0.1.0", + "0.1.1": "http://registry.npmjs.org/closure-compiler/0.1.1" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/closure-compiler/-/closure-compiler-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "387f16cdd70d4a2beb36118c3adb4e6553c517c7", + "tarball": "http://registry.npmjs.org/closure-compiler/-/closure-compiler-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/closure-compiler/" + }, + "cloud": { + "name": "cloud", + "description": "node.js cluster management and monitoring", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "\n# Cloud.js\n\n node.js cluster management and monitoring.\n\n## License \n\n(The MIT License)\n\nCopyright (c) 2011 LearnBoost <tj@learnboost.com>\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "time": { + "modified": "2011-11-10T17:04:51.568Z", + "created": "2011-11-10T17:04:49.953Z", + "0.0.1": "2011-11-10T17:04:51.568Z" + }, + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/cloud/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "04236164f7c1dc74e6d856bdd51dde91d9c8819e", + "tarball": "http://registry.npmjs.org/cloud/-/cloud-0.0.1.tgz" + } + }, + "keywords": [ + "cluster", + "monitor", + "stats" + ], + "url": "http://registry.npmjs.org/cloud/" + }, + "cloud9": { + "name": "cloud9", + "description": "Cloud9 IDE", + "dist-tags": { + "latest": "0.5.1" + }, + "maintainers": [ + { + "name": "mikedeboer", + "email": "info@mikedeboer.nl" + }, + { + "name": "fjakobs", + "email": "fabian.jakobs@web.de" + }, + { + "name": "rendez", + "email": "mail@luismerino.name" + } + ], + "author": { + "name": "Ajax.org B.V.", + "email": "info@ajax.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/ajaxorg/cloud9.git" + }, + "time": { + "modified": "2011-10-03T22:59:31.704Z", + "created": "2011-01-05T13:36:47.668Z", + "0.0.1": "2011-01-05T13:36:47.668Z", + "0.0.2": "2011-01-05T13:36:47.668Z", + "0.0.3": "2011-01-05T13:36:47.668Z", + "0.0.4": "2011-01-05T13:36:47.668Z", + "0.0.5": "2011-01-05T13:36:47.668Z", + "0.0.6": "2011-01-05T13:36:47.668Z", + "0.0.7": "2011-01-05T13:36:47.668Z", + "0.0.8": "2011-01-05T13:36:47.668Z", + "0.1.0": "2011-01-05T13:36:47.668Z", + "0.1.1": "2011-01-05T13:36:47.668Z", + "0.1.2": "2011-01-05T13:36:47.668Z", + "0.1.3": "2011-01-05T13:36:47.668Z", + "0.1.4": "2011-01-05T13:36:47.668Z", + "0.1.5": "2011-01-05T13:36:47.668Z", + "0.2.0": "2011-01-05T13:36:47.668Z", + "0.2.1": "2011-03-28T09:50:57.076Z", + "0.3.0": "2011-03-31T08:32:21.991Z", + "0.5.1": "2011-09-20T08:28:37.742Z" + }, + "versions": { + "0.1.5": "http://registry.npmjs.org/cloud9/0.1.5", + "0.2.0": "http://registry.npmjs.org/cloud9/0.2.0", + "0.3.0": "http://registry.npmjs.org/cloud9/0.3.0", + "0.5.1": "http://registry.npmjs.org/cloud9/0.5.1" + }, + "dist": { + "0.1.5": { + "tarball": "http://registry.npmjs.org/cloud9/-/cloud9-0.1.5.tgz" + }, + "0.2.0": { + "shasum": "5dad6bfe43bf9c52c640fda4d0fcceae9dd2ee7d", + "tarball": "http://registry.npmjs.org/cloud9/-/cloud9-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "7b2bf5b5c6ee0c8e8bce216f0ab8b5524357b513", + "tarball": "http://registry.npmjs.org/cloud9/-/cloud9-0.3.0.tgz" + }, + "0.5.1": { + "shasum": "f7f2c9d3056eef3739d039c5b368d1eb1ee153f7", + "tarball": "http://registry.npmjs.org/cloud9/-/cloud9-0.5.1.tgz" + } + }, + "url": "http://registry.npmjs.org/cloud9/" + }, + "cloudcontrol": { + "name": "cloudcontrol", + "description": "Cloudcontrol API client", + "dist-tags": { + "latest": "0.0.9" + }, + "maintainers": [ + { + "name": "teemow", + "email": "teemow@gmail.com" + } + ], + "time": { + "modified": "2011-10-11T19:15:01.214Z", + "created": "2011-06-26T19:52:04.256Z", + "0.0.1": "2011-06-26T19:52:05.660Z", + "0.0.2": "2011-06-26T20:29:44.986Z", + "0.0.3": "2011-06-26T21:35:30.378Z", + "0.0.4": "2011-07-16T21:28:32.970Z", + "0.0.5": "2011-07-16T21:44:00.261Z", + "0.0.6": "2011-07-16T22:41:25.163Z", + "0.0.7": "2011-07-16T23:03:35.767Z", + "0.0.8": "2011-10-11T18:47:37.932Z", + "0.0.9": "2011-10-11T19:15:01.214Z" + }, + "author": { + "name": "Timo Derstappen", + "email": "teemow@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/cloudcontrol/0.0.1", + "0.0.2": "http://registry.npmjs.org/cloudcontrol/0.0.2", + "0.0.3": "http://registry.npmjs.org/cloudcontrol/0.0.3", + "0.0.4": "http://registry.npmjs.org/cloudcontrol/0.0.4", + "0.0.5": "http://registry.npmjs.org/cloudcontrol/0.0.5", + "0.0.6": "http://registry.npmjs.org/cloudcontrol/0.0.6", + "0.0.7": "http://registry.npmjs.org/cloudcontrol/0.0.7", + "0.0.8": "http://registry.npmjs.org/cloudcontrol/0.0.8", + "0.0.9": "http://registry.npmjs.org/cloudcontrol/0.0.9" + }, + "dist": { + "0.0.1": { + "shasum": "1b34f013843fe3beb445202681aea8e93bbad6f8", + "tarball": "http://registry.npmjs.org/cloudcontrol/-/cloudcontrol-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "bfba5b79866281cff5d0ec3ebf7fda00318718a7", + "tarball": "http://registry.npmjs.org/cloudcontrol/-/cloudcontrol-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "e5c7f0cbbb59b9db915d74f5cb51daf622b52150", + "tarball": "http://registry.npmjs.org/cloudcontrol/-/cloudcontrol-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "fa9a58c05d46dbae8e1e54e1667faa05eb65f502", + "tarball": "http://registry.npmjs.org/cloudcontrol/-/cloudcontrol-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "2fd1e80084aabd8c89c8160d27f4a622beea8755", + "tarball": "http://registry.npmjs.org/cloudcontrol/-/cloudcontrol-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "4431c4153a691f86242c0159e4f3d8a3e3e1aecb", + "tarball": "http://registry.npmjs.org/cloudcontrol/-/cloudcontrol-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "67f6392194f61a4eb6b0bfb377e96e63d8ea58f4", + "tarball": "http://registry.npmjs.org/cloudcontrol/-/cloudcontrol-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "c3d6c4bf66d967e11d6743fbed9f3514ab5f9442", + "tarball": "http://registry.npmjs.org/cloudcontrol/-/cloudcontrol-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "0a5237100d0767b21d31dde6b255f8abc7eca7ea", + "tarball": "http://registry.npmjs.org/cloudcontrol/-/cloudcontrol-0.0.9.tgz" + } + }, + "keywords": [ + "cloud", + "api", + "hosting" + ], + "url": "http://registry.npmjs.org/cloudcontrol/" + }, + "cloudfiles": { + "name": "cloudfiles", + "description": "A client implementation for Rackspace CloudFiles in node.js", + "dist-tags": { + "latest": "0.3.1" + }, + "maintainers": [ + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + } + ], + "author": { + "name": "Charlie Robbins", + "email": "charlie.robbins@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/nodejitsu/node-cloudfiles.git" + }, + "time": { + "modified": "2011-11-14T18:06:03.291Z", + "created": "2010-12-25T06:36:45.544Z", + "0.1.0": "2010-12-25T06:36:45.544Z", + "0.1.1": "2010-12-25T06:36:45.544Z", + "0.1.2": "2010-12-25T06:36:45.544Z", + "0.2.0": "2010-12-25T06:36:45.544Z", + "0.2.1": "2011-01-19T05:28:48.086Z", + "0.2.2": "2011-02-20T03:42:22.841Z", + "0.2.3": "2011-03-08T08:43:45.075Z", + "0.2.4": "2011-03-30T21:07:03.687Z", + "0.2.5": "2011-04-08T06:24:28.304Z", + "0.2.6": "2011-04-08T07:14:49.282Z", + "0.2.7": "2011-05-14T06:38:04.694Z", + "0.2.8": "2011-07-15T14:25:58.583Z", + "0.3.0": "2011-08-19T00:43:08.465Z", + "0.3.1": "2011-11-14T18:06:03.291Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/cloudfiles/0.1.0", + "0.1.1": "http://registry.npmjs.org/cloudfiles/0.1.1", + "0.1.2": "http://registry.npmjs.org/cloudfiles/0.1.2", + "0.2.0": "http://registry.npmjs.org/cloudfiles/0.2.0", + "0.2.1": "http://registry.npmjs.org/cloudfiles/0.2.1", + "0.2.2": "http://registry.npmjs.org/cloudfiles/0.2.2", + "0.2.3": "http://registry.npmjs.org/cloudfiles/0.2.3", + "0.2.4": "http://registry.npmjs.org/cloudfiles/0.2.4", + "0.2.5": "http://registry.npmjs.org/cloudfiles/0.2.5", + "0.2.6": "http://registry.npmjs.org/cloudfiles/0.2.6", + "0.2.7": "http://registry.npmjs.org/cloudfiles/0.2.7", + "0.2.8": "http://registry.npmjs.org/cloudfiles/0.2.8", + "0.3.0": "http://registry.npmjs.org/cloudfiles/0.3.0", + "0.3.1": "http://registry.npmjs.org/cloudfiles/0.3.1" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/cloudfiles/-/cloudfiles-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://packages:5984/cloudfiles/-/cloudfiles-0.1.1.tgz" + }, + "0.1.2": { + "tarball": "http://packages:5984/cloudfiles/-/cloudfiles-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "e8bbe84fbc510836119fa67a4b257ccd523e986b", + "tarball": "http://registry.npmjs.org/cloudfiles/-/cloudfiles-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "3e41a06f8e1c49ab9e94d662347db2723297f5e2", + "tarball": "http://registry.npmjs.org/cloudfiles/-/cloudfiles-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "f1dabb25dc93508fb5244238586a2548e6138750", + "tarball": "http://registry.npmjs.org/cloudfiles/-/cloudfiles-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "ade20fbc8deb280d23b1926878b8c2a16ee730ac", + "tarball": "http://registry.npmjs.org/cloudfiles/-/cloudfiles-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "29a0bd16cb68f8477911f612ebc6512da36e8628", + "tarball": "http://registry.npmjs.org/cloudfiles/-/cloudfiles-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "020ee2ed1601892fff5b1c14a699059a5952f00f", + "tarball": "http://registry.npmjs.org/cloudfiles/-/cloudfiles-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "3c821a4827c5e3be3373b080ea4980506987dac7", + "tarball": "http://registry.npmjs.org/cloudfiles/-/cloudfiles-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "b08f745445504c488d3ebd009d2872b90b828642", + "tarball": "http://registry.npmjs.org/cloudfiles/-/cloudfiles-0.2.7.tgz" + }, + "0.2.8": { + "shasum": "5b3d271790cd604468dfc87cec7d465c09c3f5f6", + "tarball": "http://registry.npmjs.org/cloudfiles/-/cloudfiles-0.2.8.tgz" + }, + "0.3.0": { + "shasum": "e6af79b9fc8da8a91d35aec438a9f7a87f6b6525", + "tarball": "http://registry.npmjs.org/cloudfiles/-/cloudfiles-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "a48aed07a1008431d923e0f18c38bfa5e8c38191", + "tarball": "http://registry.npmjs.org/cloudfiles/-/cloudfiles-0.3.1.tgz" + } + }, + "keywords": [ + "cloud computing", + "api", + "rackspace cloud", + "cloudfiles" + ], + "url": "http://registry.npmjs.org/cloudfiles/" + }, + "cloudfoundry": { + "name": "cloudfoundry", + "description": "Helper library for CloudFoundry", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "igo", + "email": "igo@inspired.sk" + } + ], + "time": { + "modified": "2011-05-08T09:22:29.776Z", + "created": "2011-05-08T09:22:29.227Z", + "0.1.0": "2011-05-08T09:22:29.776Z" + }, + "author": { + "name": "Igor Urminček" + }, + "repository": { + "type": "git", + "url": "git://github.com/igo/cloudfoundry.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/cloudfoundry/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "7ad468b1d250b17902d91f2d0ea8d11fc21e0fbb", + "tarball": "http://registry.npmjs.org/cloudfoundry/-/cloudfoundry-0.1.0.tgz" + } + }, + "keywords": [ + "cloud", + "cloudfoundry", + "helper" + ], + "url": "http://registry.npmjs.org/cloudfoundry/" + }, + "cloudmailin": { + "name": "cloudmailin", + "description": "cloudmailin testing service", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "dscape", + "email": "nunojobpinto@gmail.com" + } + ], + "time": { + "modified": "2011-09-13T02:31:52.698Z", + "created": "2011-09-13T02:31:50.902Z", + "0.0.1": "2011-09-13T02:31:52.698Z" + }, + "author": { + "name": "Nuno Job", + "email": "nunojobpinto@gmail.com", + "url": "http://nunojob.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dscape/cloudmailin.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/cloudmailin/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "717bf32eddaa136c0796c5ced06aaab1f3caabbe", + "tarball": "http://registry.npmjs.org/cloudmailin/-/cloudmailin-0.0.1.tgz" + } + }, + "keywords": [ + "cloudmailin", + "email" + ], + "url": "http://registry.npmjs.org/cloudmailin/" + }, + "cloudnode-cli": { + "name": "cloudnode-cli", + "description": "A CLI tool to allow interaction with the http://cloudno.de/ platform.", + "dist-tags": { + "latest": "0.2.20" + }, + "maintainers": [ + { + "name": "dvbportal", + "email": "hs@cloudno.de" + } + ], + "time": { + "modified": "2011-08-28T16:48:04.485Z", + "created": "2011-02-12T18:56:04.550Z", + "0.1.7": "2011-02-12T18:56:08.151Z", + "0.2.3": "2011-03-13T17:59:39.792Z", + "0.2.19": "2011-08-07T17:35:40.005Z", + "0.2.20": "2011-08-28T16:48:04.485Z" + }, + "author": { + "name": "Hans J Schroeder", + "email": "hs@cloudno.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/dvbportal/cloudnode-cli.git" + }, + "versions": { + "0.1.7": "http://registry.npmjs.org/cloudnode-cli/0.1.7", + "0.2.3": "http://registry.npmjs.org/cloudnode-cli/0.2.3", + "0.2.19": "http://registry.npmjs.org/cloudnode-cli/0.2.19", + "0.2.20": "http://registry.npmjs.org/cloudnode-cli/0.2.20" + }, + "dist": { + "0.1.7": { + "shasum": "769f97dab19eb5986c6a0bac0afc833e92fb21e5", + "tarball": "http://registry.npmjs.org/cloudnode-cli/-/cloudnode-cli-0.1.7.tgz" + }, + "0.2.3": { + "shasum": "b3836034453e3d3202b8685e70c970058aed9d1a", + "tarball": "http://registry.npmjs.org/cloudnode-cli/-/cloudnode-cli-0.2.3.tgz" + }, + "0.2.19": { + "shasum": "45cd0189320509bdc7e19cbcf99142c47aaac4f9", + "tarball": "http://registry.npmjs.org/cloudnode-cli/-/cloudnode-cli-0.2.19.tgz" + }, + "0.2.20": { + "shasum": "2756641a7979c2cad2a54bd11e2012e26d8ef5d5", + "tarball": "http://registry.npmjs.org/cloudnode-cli/-/cloudnode-cli-0.2.20.tgz" + } + }, + "url": "http://registry.npmjs.org/cloudnode-cli/" + }, + "cloudq": { + "name": "cloudq", + "description": "Job Server : Distribute your jobs anywhere.", + "dist-tags": { + "latest": "0.2.0" + }, + "readme": "# node-cloudq\n\nThe job queue you can enqueue and reserve jobs from\nanywhere.", + "maintainers": [ + { + "name": "jackhq", + "email": "tom@jackhq.com" + } + ], + "time": { + "modified": "2011-11-21T22:14:11.937Z", + "created": "2011-11-21T22:14:11.008Z", + "0.2.0": "2011-11-21T22:14:11.937Z" + }, + "author": { + "name": "Tom Wilson" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/cloudq/0.2.0" + }, + "dist": { + "0.2.0": { + "shasum": "01b08b73cc08ac4e4ab507b8602d61c088fa4e80", + "tarball": "http://registry.npmjs.org/cloudq/-/cloudq-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/cloudq/" + }, + "cloudq-client": { + "name": "cloudq-client", + "description": "A Worker Module that can connect to any cloudq service.", + "dist-tags": { + "latest": "0.0.0" + }, + "readme": "# node-workman-client\n\nA simple abstraction layer to connect to a \nworkman server.\n", + "maintainers": [ + { + "name": "jackhq", + "email": "tom@jackhq.com" + } + ], + "time": { + "modified": "2011-11-21T17:51:05.860Z", + "created": "2011-11-21T17:51:05.079Z", + "0.0.0": "2011-11-21T17:51:05.860Z" + }, + "author": { + "name": "Tom Wilson", + "email": "tom@jackhq.com" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/cloudq-client/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "915f24ff36173d2f54f27053ad78dd2889771422", + "tarball": "http://registry.npmjs.org/cloudq-client/-/cloudq-client-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/cloudq-client/" + }, + "cloudservers": { + "name": "cloudservers", + "description": "A client implementation for Rackspace CloudServers in node.js", + "dist-tags": { + "latest": "0.2.7" + }, + "maintainers": [ + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + } + ], + "author": { + "name": "Charlie Robbins", + "email": "charlie.robbins@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/nodejitsu/node-cloudservers.git" + }, + "time": { + "modified": "2011-09-19T03:23:04.678Z", + "created": "2010-12-25T21:48:52.343Z", + "0.1.0": "2010-12-25T21:48:52.343Z", + "0.1.1": "2010-12-25T21:48:52.343Z", + "0.1.2": "2010-12-25T21:48:52.343Z", + "0.1.3": "2010-12-25T21:48:52.343Z", + "0.1.4": "2010-12-25T21:48:52.343Z", + "0.2.0": "2010-12-25T21:48:52.343Z", + "0.2.1": "2011-02-20T03:45:16.720Z", + "0.2.2": "2011-03-29T04:23:58.668Z", + "0.2.3": "2011-04-08T03:03:51.274Z", + "0.2.4": "2011-05-14T07:20:14.546Z", + "0.2.5": "2011-05-23T20:51:42.574Z", + "0.2.6": "2011-06-13T07:00:54.073Z", + "0.2.7": "2011-09-19T03:23:04.678Z" + }, + "versions": { + "0.2.1": "http://registry.npmjs.org/cloudservers/0.2.1", + "0.2.2": "http://registry.npmjs.org/cloudservers/0.2.2", + "0.2.3": "http://registry.npmjs.org/cloudservers/0.2.3", + "0.2.4": "http://registry.npmjs.org/cloudservers/0.2.4", + "0.2.5": "http://registry.npmjs.org/cloudservers/0.2.5", + "0.2.6": "http://registry.npmjs.org/cloudservers/0.2.6", + "0.2.7": "http://registry.npmjs.org/cloudservers/0.2.7" + }, + "dist": { + "0.2.1": { + "shasum": "0bd5aaf7d5d90917247bf97c0c0322facc0c1cef", + "tarball": "http://registry.npmjs.org/cloudservers/-/cloudservers-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "083a941bf39397d4352b8edf985470262a8828c5", + "tarball": "http://registry.npmjs.org/cloudservers/-/cloudservers-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "842469317b4e939b71b745ef13512e9fc0a832a9", + "tarball": "http://registry.npmjs.org/cloudservers/-/cloudservers-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "ff36c7a2dbe831f8b8f63ed0b79f40a4e7b029a2", + "tarball": "http://registry.npmjs.org/cloudservers/-/cloudservers-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "b613da66aa3f7b10c3fc549a1858a8002992e6dd", + "tarball": "http://registry.npmjs.org/cloudservers/-/cloudservers-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "0001f70de1bfc990c10aa6c05b9f8b5aa3500e8e", + "tarball": "http://registry.npmjs.org/cloudservers/-/cloudservers-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "0908b6571365a1027d65bdd2442bea24e711fb7d", + "tarball": "http://registry.npmjs.org/cloudservers/-/cloudservers-0.2.7.tgz" + } + }, + "keywords": [ + "cloud computing", + "api", + "rackspace cloud", + "cloudservers" + ], + "url": "http://registry.npmjs.org/cloudservers/" + }, + "clucene": { + "name": "clucene", + "description": "A CLucene native library for Node.js, for advanced information retrieval.", + "dist-tags": { + "latest": "0.2.3" + }, + "maintainers": [ + { + "name": "erictj", + "email": "ericj@loopshot.com" + } + ], + "time": { + "modified": "2011-10-25T15:50:23.874Z", + "created": "2011-08-15T19:48:13.067Z", + "0.0.1": "2011-08-15T19:48:15.121Z", + "0.0.2": "2011-08-15T23:20:56.636Z", + "0.0.3": "2011-08-16T00:18:24.633Z", + "0.0.4": "2011-08-16T18:25:55.403Z", + "0.0.5": "2011-08-16T19:24:52.980Z", + "0.0.6": "2011-08-16T20:07:15.088Z", + "0.0.7": "2011-08-17T16:27:06.897Z", + "0.0.8": "2011-08-17T20:59:57.347Z", + "0.0.9": "2011-08-17T21:52:09.080Z", + "0.1.0": "2011-08-24T22:37:22.506Z", + "0.1.1": "2011-08-25T16:07:26.855Z", + "0.1.2": "2011-09-02T23:40:39.652Z", + "0.1.3": "2011-09-16T00:33:43.345Z", + "0.1.4": "2011-09-16T00:55:39.130Z", + "0.2.0": "2011-09-29T16:25:11.199Z", + "0.2.1": "2011-10-03T17:08:42.159Z", + "0.2.2": "2011-10-03T19:44:48.773Z", + "0.2.3": "2011-10-25T15:50:23.874Z" + }, + "author": { + "name": "Eric Jennings", + "url": "http://github.com/erictj" + }, + "repository": { + "type": "git", + "url": "git://github.com/erictj/node-clucene.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/clucene/0.0.1", + "0.0.2": "http://registry.npmjs.org/clucene/0.0.2", + "0.0.3": "http://registry.npmjs.org/clucene/0.0.3", + "0.0.4": "http://registry.npmjs.org/clucene/0.0.4", + "0.0.5": "http://registry.npmjs.org/clucene/0.0.5", + "0.0.6": "http://registry.npmjs.org/clucene/0.0.6", + "0.0.7": "http://registry.npmjs.org/clucene/0.0.7", + "0.0.8": "http://registry.npmjs.org/clucene/0.0.8", + "0.0.9": "http://registry.npmjs.org/clucene/0.0.9", + "0.1.0": "http://registry.npmjs.org/clucene/0.1.0", + "0.1.1": "http://registry.npmjs.org/clucene/0.1.1", + "0.1.2": "http://registry.npmjs.org/clucene/0.1.2", + "0.1.3": "http://registry.npmjs.org/clucene/0.1.3", + "0.1.4": "http://registry.npmjs.org/clucene/0.1.4", + "0.2.0": "http://registry.npmjs.org/clucene/0.2.0", + "0.2.1": "http://registry.npmjs.org/clucene/0.2.1", + "0.2.2": "http://registry.npmjs.org/clucene/0.2.2", + "0.2.3": "http://registry.npmjs.org/clucene/0.2.3" + }, + "dist": { + "0.0.1": { + "shasum": "b720ca66ac505467146b5c778232316b2d5d9d60", + "tarball": "http://registry.npmjs.org/clucene/-/clucene-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "00e996e5855b3d551bf88f0d1fdf45894ee5d0a0", + "tarball": "http://registry.npmjs.org/clucene/-/clucene-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "7aebc26e87406afe6447303d2ce232352cc97a04", + "tarball": "http://registry.npmjs.org/clucene/-/clucene-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "9f9f99d305c24cdc99348e756903c7e0bf5ab14c", + "tarball": "http://registry.npmjs.org/clucene/-/clucene-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "6fad0ffe15e31206e880442cb40756832aec7fc5", + "tarball": "http://registry.npmjs.org/clucene/-/clucene-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "645509d949eaac91810341119e6ea4af51644478", + "tarball": "http://registry.npmjs.org/clucene/-/clucene-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "6c0fd1969225e0dba6ac9c9388199f281b482dac", + "tarball": "http://registry.npmjs.org/clucene/-/clucene-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "2811126f02c9adfa083e5742bb2958d842b10df6", + "tarball": "http://registry.npmjs.org/clucene/-/clucene-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "fb419a66def72a2ac89aae64769455a16d067d21", + "tarball": "http://registry.npmjs.org/clucene/-/clucene-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "b7818d90d709b3c6bd6fc9c8e648c0afda387102", + "tarball": "http://registry.npmjs.org/clucene/-/clucene-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "d21087f8da8f58f74867b8d6af0b9830152cf234", + "tarball": "http://registry.npmjs.org/clucene/-/clucene-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "d9c6633365bfe81a75b04659caa0766da9ab535a", + "tarball": "http://registry.npmjs.org/clucene/-/clucene-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "a7314dfc32948a184a1fb1bf83c26a53d0cee278", + "tarball": "http://registry.npmjs.org/clucene/-/clucene-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "9f54ac085c28acf0b0fbc9f1b16e05b74e51f45f", + "tarball": "http://registry.npmjs.org/clucene/-/clucene-0.1.4.tgz" + }, + "0.2.0": { + "shasum": "20dfe1bcfb66635972dcafd1c913c1c455e05ce6", + "tarball": "http://registry.npmjs.org/clucene/-/clucene-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "da025b460eb1fa80fb39e4d7b291fc04688e9096", + "tarball": "http://registry.npmjs.org/clucene/-/clucene-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "4825aa2e4adb892cfa31f5481281ce3a1899489c", + "tarball": "http://registry.npmjs.org/clucene/-/clucene-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "0c19062170ee1c71e12f344c10a6940e02f51952", + "tarball": "http://registry.npmjs.org/clucene/-/clucene-0.2.3.tgz" + } + }, + "url": "http://registry.npmjs.org/clucene/" + }, + "clumix": { + "name": "clumix", + "description": "Virtual server service", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "killthelord", + "email": "killthelord@gmail.com" + } + ], + "time": { + "modified": "2011-12-01T18:38:32.283Z", + "created": "2011-12-01T18:38:26.118Z", + "0.1.0": "2011-12-01T18:38:32.283Z" + }, + "author": { + "name": "Killthelord" + }, + "repository": { + "url": "git@github.com:killthelord/Clumix.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/clumix/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "d15dd06f030f9b6635b6cd15718f4c4200ea26b1", + "tarball": "http://registry.npmjs.org/clumix/-/clumix-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/clumix/" + }, + "clumix-app": { + "name": "clumix-app", + "description": "Clumix backbone application", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "killthelord", + "email": "killthelord@gmail.com" + } + ], + "time": { + "modified": "2011-11-30T22:31:45.383Z", + "created": "2011-11-30T22:31:39.364Z", + "0.1.0": "2011-11-30T22:31:45.383Z" + }, + "author": { + "name": "Killthelord" + }, + "repository": { + "url": "git@github.com:killthelord/Clumix-app.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/clumix-app/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "3b59dff67e4c5783cab41970cb374cc21df54b53", + "tarball": "http://registry.npmjs.org/clumix-app/-/clumix-app-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/clumix-app/" + }, + "clumix-console-logger": { + "name": "clumix-console-logger", + "description": "Clumix console logger plugin", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "killthelord", + "email": "killthelord@gmail.com" + } + ], + "time": { + "modified": "2011-12-01T04:10:30.999Z", + "created": "2011-12-01T04:03:10.571Z", + "0.1.0": "2011-12-01T04:10:30.999Z" + }, + "author": { + "name": "Killthelord" + }, + "repository": { + "url": "git@github.com:killthelord/Clumix-console-logger.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/clumix-console-logger/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "4712ba1ad6d4fa415e9ca8837175b634d0dbbd6c", + "tarball": "http://registry.npmjs.org/clumix-console-logger/-/clumix-console-logger-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/clumix-console-logger/" + }, + "clumix-proxy": { + "name": "clumix-proxy", + "description": "Clumix http websocket proxy plugin", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "killthelord", + "email": "killthelord@gmail.com" + } + ], + "time": { + "modified": "2011-12-01T07:53:24.975Z", + "created": "2011-12-01T07:53:14.761Z", + "0.1.0": "2011-12-01T07:53:24.975Z" + }, + "author": { + "name": "Killthelord" + }, + "repository": { + "url": "git@github.com:killthelord/Clumix-proxy.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/clumix-proxy/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "5d16a8c1c7b63678b7b5e4e781bfd235d4e650cf", + "tarball": "http://registry.npmjs.org/clumix-proxy/-/clumix-proxy-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/clumix-proxy/" + }, + "clumix-server": { + "name": "clumix-server", + "description": "Clumix http websoket server plugin", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "killthelord", + "email": "killthelord@gmail.com" + } + ], + "time": { + "modified": "2011-12-01T04:16:06.159Z", + "created": "2011-12-01T04:15:59.717Z", + "0.1.0": "2011-12-01T04:16:06.159Z" + }, + "author": { + "name": "Killthelord" + }, + "repository": { + "url": "git@github.com:killthelord/Clumix-server.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/clumix-server/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "f13c07afd0c8284a0e76e9ccb0b8ee659c50d19a", + "tarball": "http://registry.npmjs.org/clumix-server/-/clumix-server-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/clumix-server/" + }, + "clumix-socket-logger": { + "name": "clumix-socket-logger", + "description": "Clumix socket logger plugin", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "killthelord", + "email": "killthelord@gmail.com" + } + ], + "time": { + "modified": "2011-12-03T14:00:52.571Z", + "created": "2011-12-03T14:00:33.212Z", + "0.1.0": "2011-12-03T14:00:52.571Z" + }, + "author": { + "name": "Killthelord" + }, + "repository": { + "url": "git@github.com:killthelord/Clumix-socket-logger.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/clumix-socket-logger/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "8131f67dc02a16f0e8a20f1affc6e62267767a85", + "tarball": "http://registry.npmjs.org/clumix-socket-logger/-/clumix-socket-logger-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/clumix-socket-logger/" + }, + "cluster": { + "name": "cluster", + "description": "extensible multi-core server manager", + "dist-tags": { + "latest": "0.7.7" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "time": { + "modified": "2011-10-04T20:10:46.598Z", + "created": "2011-02-16T01:47:41.650Z", + "0.0.1": "2011-02-16T01:47:42.097Z", + "0.0.2": "2011-02-16T02:00:53.588Z", + "0.0.3": "2011-02-16T15:44:37.107Z", + "0.0.4": "2011-02-17T21:29:22.383Z", + "0.1.0": "2011-02-18T18:57:22.624Z", + "0.1.1": "2011-02-19T00:09:37.104Z", + "0.2.0": "2011-02-21T17:04:17.624Z", + "0.2.1": "2011-02-21T17:49:23.855Z", + "0.2.2": "2011-02-22T01:52:15.804Z", + "0.2.3": "2011-02-22T02:54:47.404Z", + "0.2.4": "2011-02-25T17:47:40.733Z", + "0.3.0": "2011-02-28T19:42:05.040Z", + "0.3.1": "2011-03-01T01:56:22.837Z", + "0.3.2": "2011-03-01T20:20:01.360Z", + "0.3.3": "2011-03-03T23:10:40.847Z", + "0.4.0": "2011-03-08T17:33:16.608Z", + "0.4.1": "2011-03-10T19:18:31.765Z", + "0.4.2": "2011-03-15T23:10:04.404Z", + "0.5.0": "2011-03-24T19:00:15.895Z", + "0.5.1": "2011-03-24T21:49:14.236Z", + "0.5.2": "2011-03-25T15:59:59.230Z", + "0.5.3": "2011-03-30T19:30:56.971Z", + "0.5.4": "2011-04-05T23:42:08.537Z", + "0.5.5": "2011-04-06T00:08:59.690Z", + "0.5.6": "2011-04-16T00:51:59.200Z", + "0.5.7": "2011-04-18T04:57:18.472Z", + "0.6.0": "2011-04-19T00:29:49.556Z", + "0.6.1": "2011-04-26T15:33:01.263Z", + "0.6.2": "2011-05-11T18:14:40.426Z", + "0.6.3": "2011-06-11T17:39:06.965Z", + "0.6.4": "2011-06-15T00:04:11.770Z", + "0.6.5": "2011-07-18T19:11:42.838Z", + "0.6.6": "2011-07-18T22:18:10.847Z", + "0.6.7": "2011-07-19T12:34:26.809Z", + "0.6.8": "2011-07-19T13:40:26.467Z", + "0.6.9": "2011-07-20T17:22:52.559Z", + "0.7.0": "2011-08-16T04:25:44.617Z", + "0.7.1": "2011-08-18T16:02:06.103Z", + "0.7.2": "2011-09-12T16:41:04.650Z", + "0.7.3": "2011-09-12T18:31:04.350Z", + "0.7.4": "2011-09-19T17:50:06.289Z", + "0.7.5": "2011-09-23T17:04:50.204Z", + "0.7.6": "2011-10-03T22:38:36.013Z", + "0.7.7": "2011-10-04T20:10:46.599Z" + }, + "author": { + "name": "TJ Holowaychuk", + "email": "tj@learnboost.com", + "url": "http://tjholowaychuk.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/LearnBoost/cluster.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/cluster/0.0.1", + "0.0.2": "http://registry.npmjs.org/cluster/0.0.2", + "0.0.3": "http://registry.npmjs.org/cluster/0.0.3", + "0.0.4": "http://registry.npmjs.org/cluster/0.0.4", + "0.1.0": "http://registry.npmjs.org/cluster/0.1.0", + "0.1.1": "http://registry.npmjs.org/cluster/0.1.1", + "0.2.0": "http://registry.npmjs.org/cluster/0.2.0", + "0.2.1": "http://registry.npmjs.org/cluster/0.2.1", + "0.2.2": "http://registry.npmjs.org/cluster/0.2.2", + "0.2.3": "http://registry.npmjs.org/cluster/0.2.3", + "0.2.4": "http://registry.npmjs.org/cluster/0.2.4", + "0.3.0": "http://registry.npmjs.org/cluster/0.3.0", + "0.3.1": "http://registry.npmjs.org/cluster/0.3.1", + "0.3.2": "http://registry.npmjs.org/cluster/0.3.2", + "0.3.3": "http://registry.npmjs.org/cluster/0.3.3", + "0.4.0": "http://registry.npmjs.org/cluster/0.4.0", + "0.4.1": "http://registry.npmjs.org/cluster/0.4.1", + "0.4.2": "http://registry.npmjs.org/cluster/0.4.2", + "0.5.0": "http://registry.npmjs.org/cluster/0.5.0", + "0.5.1": "http://registry.npmjs.org/cluster/0.5.1", + "0.5.2": "http://registry.npmjs.org/cluster/0.5.2", + "0.5.3": "http://registry.npmjs.org/cluster/0.5.3", + "0.5.4": "http://registry.npmjs.org/cluster/0.5.4", + "0.5.5": "http://registry.npmjs.org/cluster/0.5.5", + "0.5.6": "http://registry.npmjs.org/cluster/0.5.6", + "0.5.7": "http://registry.npmjs.org/cluster/0.5.7", + "0.6.0": "http://registry.npmjs.org/cluster/0.6.0", + "0.6.1": "http://registry.npmjs.org/cluster/0.6.1", + "0.6.2": "http://registry.npmjs.org/cluster/0.6.2", + "0.6.3": "http://registry.npmjs.org/cluster/0.6.3", + "0.6.4": "http://registry.npmjs.org/cluster/0.6.4", + "0.6.5": "http://registry.npmjs.org/cluster/0.6.5", + "0.6.6": "http://registry.npmjs.org/cluster/0.6.6", + "0.6.7": "http://registry.npmjs.org/cluster/0.6.7", + "0.6.8": "http://registry.npmjs.org/cluster/0.6.8", + "0.6.9": "http://registry.npmjs.org/cluster/0.6.9", + "0.7.0": "http://registry.npmjs.org/cluster/0.7.0", + "0.7.1": "http://registry.npmjs.org/cluster/0.7.1", + "0.7.2": "http://registry.npmjs.org/cluster/0.7.2", + "0.7.3": "http://registry.npmjs.org/cluster/0.7.3", + "0.7.4": "http://registry.npmjs.org/cluster/0.7.4", + "0.7.5": "http://registry.npmjs.org/cluster/0.7.5", + "0.7.6": "http://registry.npmjs.org/cluster/0.7.6", + "0.7.7": "http://registry.npmjs.org/cluster/0.7.7" + }, + "dist": { + "0.0.1": { + "shasum": "4b983fb2749683136a323c99bf99d0c7653f2272", + "tarball": "http://registry.npmjs.org/cluster/-/cluster-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f5bea19a83aa195015a079a185526e800b580487", + "tarball": "http://registry.npmjs.org/cluster/-/cluster-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "c3bfbcf25ebb026fe0bec37106e0632885c0f0d0", + "tarball": "http://registry.npmjs.org/cluster/-/cluster-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "67dcb6077167224d97fb86bfacf9108ced164ad7", + "tarball": "http://registry.npmjs.org/cluster/-/cluster-0.0.4.tgz" + }, + "0.1.0": { + "shasum": "6ee865dc7719a069682a444c62516fbe233073e4", + "tarball": "http://registry.npmjs.org/cluster/-/cluster-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "7aebc8d80a6a89f64a18934e689e228d91ceb22b", + "tarball": "http://registry.npmjs.org/cluster/-/cluster-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "94b06f9f25175c8c3129a9c701acb5144d2bda56", + "tarball": "http://registry.npmjs.org/cluster/-/cluster-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "bb4b46f02da8ccaff8bd3846b360884a21dfda43", + "tarball": "http://registry.npmjs.org/cluster/-/cluster-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "583634e2c4cdd8faea4357c55e9bd2c25d6e2b42", + "tarball": "http://registry.npmjs.org/cluster/-/cluster-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "3209e03f5497ca01ff8a03da8eb76b8c74dc4b3b", + "tarball": "http://registry.npmjs.org/cluster/-/cluster-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "fec9eb44b63f16dee1992474e60de9e887b65bcf", + "tarball": "http://registry.npmjs.org/cluster/-/cluster-0.2.4.tgz" + }, + "0.3.0": { + "shasum": "266527276c820afab652350d2bea2b569c1cb616", + "tarball": "http://registry.npmjs.org/cluster/-/cluster-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "bd210242af35772c151b21ac0299cf72b35f2c2f", + "tarball": "http://registry.npmjs.org/cluster/-/cluster-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "3ea173beefbbf2b80145c3d60775032f9c135ab4", + "tarball": "http://registry.npmjs.org/cluster/-/cluster-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "37de66970874e666bb61fe1ea3cf9958d929d935", + "tarball": "http://registry.npmjs.org/cluster/-/cluster-0.3.3.tgz" + }, + "0.4.0": { + "shasum": "b32903346dc6470d10a7e1c2475ab3cd23408414", + "tarball": "http://registry.npmjs.org/cluster/-/cluster-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "3dafe0fac58ed417c076c28126e3c2f15f071ee1", + "tarball": "http://registry.npmjs.org/cluster/-/cluster-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "660fb86f4eef654d128087ee25ea3830e058a44e", + "tarball": "http://registry.npmjs.org/cluster/-/cluster-0.4.2.tgz" + }, + "0.5.0": { + "shasum": "45d13762f06029b8477f7316d3f6189ac970aafb", + "tarball": "http://registry.npmjs.org/cluster/-/cluster-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "e09a5731d978dd60a37e9fe1d6b640e1450f5cfc", + "tarball": "http://registry.npmjs.org/cluster/-/cluster-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "a65470f04f945ea066d80e53e1e90e43203a89df", + "tarball": "http://registry.npmjs.org/cluster/-/cluster-0.5.2.tgz" + }, + "0.5.3": { + "shasum": "e774cbb676b1458bfec4dc367b3e3c9a069cf09a", + "tarball": "http://registry.npmjs.org/cluster/-/cluster-0.5.3.tgz" + }, + "0.5.4": { + "shasum": "e437d6ff65893f93309e7b718aef02ddb1ed522e", + "tarball": "http://registry.npmjs.org/cluster/-/cluster-0.5.4.tgz" + }, + "0.5.5": { + "shasum": "579cc3eb12d20163c19cf97c090bf950d3c42be0", + "tarball": "http://registry.npmjs.org/cluster/-/cluster-0.5.5.tgz" + }, + "0.5.6": { + "shasum": "cd61e985ef8a6dd77a38034f65a0273166e8df44", + "tarball": "http://registry.npmjs.org/cluster/-/cluster-0.5.6.tgz" + }, + "0.5.7": { + "shasum": "71af43f3d9411733b8e0e4860a77c8a755de2326", + "tarball": "http://registry.npmjs.org/cluster/-/cluster-0.5.7.tgz" + }, + "0.6.0": { + "shasum": "b6c3cd0b4a7d72f891323e173874949efd345820", + "tarball": "http://registry.npmjs.org/cluster/-/cluster-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "d02e41b543c9a2978f83d52602f4aa661f61b0b5", + "tarball": "http://registry.npmjs.org/cluster/-/cluster-0.6.1.tgz" + }, + "0.6.2": { + "shasum": "0497cac4e174d529c44d9f2de273c93cc3dfa600", + "tarball": "http://registry.npmjs.org/cluster/-/cluster-0.6.2.tgz" + }, + "0.6.3": { + "shasum": "69c57156c20fafc6104398e16d6febd558fc2fbf", + "tarball": "http://registry.npmjs.org/cluster/-/cluster-0.6.3.tgz" + }, + "0.6.4": { + "shasum": "89bf11df5344642767089026d0101aaa0cf4f23e", + "tarball": "http://registry.npmjs.org/cluster/-/cluster-0.6.4.tgz" + }, + "0.6.5": { + "shasum": "a6eb0e32060426ae92ee44b4d165ebdc67e198e3", + "tarball": "http://registry.npmjs.org/cluster/-/cluster-0.6.5.tgz" + }, + "0.6.6": { + "shasum": "672c82345e30f989c3e415c38738ab8261ffed9f", + "tarball": "http://registry.npmjs.org/cluster/-/cluster-0.6.6.tgz" + }, + "0.6.7": { + "shasum": "90426ab7fd108e0e7bf3c871c2bbca851dba3b4a", + "tarball": "http://registry.npmjs.org/cluster/-/cluster-0.6.7.tgz" + }, + "0.6.8": { + "shasum": "87c55f2b0665bde2b44f9de309b82fe1dd74c043", + "tarball": "http://registry.npmjs.org/cluster/-/cluster-0.6.8.tgz" + }, + "0.6.9": { + "shasum": "6de31ceba5c976fe69adca2ca88620a4fc25f60f", + "tarball": "http://registry.npmjs.org/cluster/-/cluster-0.6.9.tgz" + }, + "0.7.0": { + "shasum": "63ecaf7eb9544019dafdf0798e8480fb3865852b", + "tarball": "http://registry.npmjs.org/cluster/-/cluster-0.7.0.tgz" + }, + "0.7.1": { + "shasum": "5d86c81e37719e3ee9977d4a182d080e8753cb28", + "tarball": "http://registry.npmjs.org/cluster/-/cluster-0.7.1.tgz" + }, + "0.7.2": { + "shasum": "d7b41fec7a1eaae7fab06d86416c011b30b97272", + "tarball": "http://registry.npmjs.org/cluster/-/cluster-0.7.2.tgz" + }, + "0.7.3": { + "shasum": "037c409c84f543ffe3e443c288272743f92092d9", + "tarball": "http://registry.npmjs.org/cluster/-/cluster-0.7.3.tgz" + }, + "0.7.4": { + "shasum": "7fa642d31d550ba48c5bd3693314756190edd707", + "tarball": "http://registry.npmjs.org/cluster/-/cluster-0.7.4.tgz" + }, + "0.7.5": { + "shasum": "ceb3e4601ba17fbb06952c9b465ce6d14e486e59", + "tarball": "http://registry.npmjs.org/cluster/-/cluster-0.7.5.tgz" + }, + "0.7.6": { + "shasum": "645cec9c00561f5534f4a7e34db833ea75f73a53", + "tarball": "http://registry.npmjs.org/cluster/-/cluster-0.7.6.tgz" + }, + "0.7.7": { + "shasum": "e497e267cc956bd0b0513adb4aa393357d0085ef", + "tarball": "http://registry.npmjs.org/cluster/-/cluster-0.7.7.tgz" + } + }, + "keywords": [ + "server", + "spark", + "fugue", + "tcp", + "workers" + ], + "url": "http://registry.npmjs.org/cluster/" + }, + "cluster-airbrake": { + "name": "cluster-airbrake", + "description": "Airbrake exception notification for cluster.js", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "jcbarry", + "email": "jay@jcbarry.com" + } + ], + "time": { + "modified": "2011-11-16T17:10:36.125Z", + "created": "2011-11-03T18:43:17.144Z", + "0.0.1": "2011-11-03T18:43:17.458Z", + "0.0.2": "2011-11-15T20:50:40.061Z", + "0.0.3": "2011-11-16T17:10:36.125Z" + }, + "author": { + "name": "Jason Barry", + "email": "jay@jcbarry.com", + "url": "http://jcbarry.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/JCBarry/cluster-airbrake.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/cluster-airbrake/0.0.1", + "0.0.2": "http://registry.npmjs.org/cluster-airbrake/0.0.2", + "0.0.3": "http://registry.npmjs.org/cluster-airbrake/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "73d5101afe2085a561b32140b8a024a1894a7d20", + "tarball": "http://registry.npmjs.org/cluster-airbrake/-/cluster-airbrake-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "50db6e66b997e03b2657fb781cc5831f50f62611", + "tarball": "http://registry.npmjs.org/cluster-airbrake/-/cluster-airbrake-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "fd349940c9156cf8ad571d8d60564ed5ba2a31d1", + "tarball": "http://registry.npmjs.org/cluster-airbrake/-/cluster-airbrake-0.0.3.tgz" + } + }, + "keywords": [ + "cluster", + "airbrake", + "exception", + "error" + ], + "url": "http://registry.npmjs.org/cluster-airbrake/" + }, + "cluster-isolatable": { + "name": "cluster-isolatable", + "description": "Allows to isolate workers so they only handle one request at a time. Useful for file uploads.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "felixge", + "email": "felix@debuggable.com" + } + ], + "time": { + "modified": "2011-07-19T19:21:25.803Z", + "created": "2011-07-17T16:54:18.527Z", + "0.0.1": "2011-07-17T16:54:19.200Z", + "0.0.2": "2011-07-19T19:21:25.803Z" + }, + "author": { + "name": "Felix Geisendörfer", + "email": "felix@debuggable.com", + "url": "http://debuggable.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/felixge/node-cluster-isolatable.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/cluster-isolatable/0.0.1", + "0.0.2": "http://registry.npmjs.org/cluster-isolatable/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "4d3821dbc7db7c23cfa4293001e7c881acc1dbdf", + "tarball": "http://registry.npmjs.org/cluster-isolatable/-/cluster-isolatable-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "a483d2b3b2761f05073d459fc9ee7854c8f632a1", + "tarball": "http://registry.npmjs.org/cluster-isolatable/-/cluster-isolatable-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/cluster-isolatable/" + }, + "cluster-live": { + "name": "cluster-live", + "description": "Realtime administration and statistics for cluster", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "time": { + "modified": "2011-04-28T21:52:47.378Z", + "created": "2011-04-18T05:14:01.259Z", + "0.0.1": "2011-04-18T05:14:01.633Z", + "0.0.2": "2011-04-18T07:59:53.265Z", + "0.0.3": "2011-04-28T21:52:47.378Z" + }, + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/cluster-live/0.0.1", + "0.0.2": "http://registry.npmjs.org/cluster-live/0.0.2", + "0.0.3": "http://registry.npmjs.org/cluster-live/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "818ecd8039c9569042ee31eb0c5009f354f737c9", + "tarball": "http://registry.npmjs.org/cluster-live/-/cluster-live-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "320ff9be72aa6dd95d50c83209b79af61dfe3784", + "tarball": "http://registry.npmjs.org/cluster-live/-/cluster-live-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "e4ab9a84e33bd2039b4628d33980da4a218fae51", + "tarball": "http://registry.npmjs.org/cluster-live/-/cluster-live-0.0.3.tgz" + } + }, + "keywords": [ + "cluster", + "realtime", + "stats", + "statistics", + "server", + "express" + ], + "url": "http://registry.npmjs.org/cluster-live/" + }, + "cluster-log": { + "name": "cluster-log", + "description": "Cluster logging plugin", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "time": { + "modified": "2011-04-20T18:00:32.049Z", + "created": "2011-04-04T23:51:53.809Z", + "0.0.1": "2011-04-04T23:51:54.167Z", + "0.1.0": "2011-04-20T17:43:23.741Z", + "0.1.1": "2011-04-20T18:00:32.049Z" + }, + "author": { + "name": "TJ Holowaychuk", + "email": "tj@learnboost.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/cluster-log/0.0.1", + "0.1.0": "http://registry.npmjs.org/cluster-log/0.1.0", + "0.1.1": "http://registry.npmjs.org/cluster-log/0.1.1" + }, + "dist": { + "0.0.1": { + "shasum": "be4a2871bd84766989b958535d3fc8571883a432", + "tarball": "http://registry.npmjs.org/cluster-log/-/cluster-log-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "1099494d97174b4743f710374aa09838040c0883", + "tarball": "http://registry.npmjs.org/cluster-log/-/cluster-log-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "a95a727ab33856303b564874b2588903fedda690", + "tarball": "http://registry.npmjs.org/cluster-log/-/cluster-log-0.1.1.tgz" + } + }, + "keywords": [ + "cluster", + "redis", + "log", + "logger", + "express" + ], + "url": "http://registry.npmjs.org/cluster-log/" + }, + "cluster-loggly": { + "name": "cluster-loggly", + "description": "Cluster plugin to send logs to loggly.", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "naitik", + "email": "n@daaku.org" + } + ], + "time": { + "modified": "2011-09-03T17:34:16.922Z", + "created": "2011-09-03T17:34:15.326Z", + "1.0.0": "2011-09-03T17:34:16.922Z" + }, + "author": { + "name": "Naitik Shah", + "email": "n@daaku.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/nshah/nodejs-cluster-loggly.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/cluster-loggly/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "68f92e0f67bc518f76c4a11b2f157f6af4163c05", + "tarball": "http://registry.npmjs.org/cluster-loggly/-/cluster-loggly-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/cluster-loggly/" + }, + "cluster-mail": { + "name": "cluster-mail", + "description": "Email notification plugin for Cluster", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + }, + { + "name": "aheckmann", + "email": "aaron.heckmann+github@gmail.com" + }, + { + "name": "aaron", + "email": "aaron.heckmann+github@gmail.com" + } + ], + "time": { + "modified": "2011-10-06T19:15:25.940Z", + "created": "2011-04-05T19:53:26.998Z", + "0.0.1": "2011-04-05T19:53:27.348Z", + "0.0.2": "2011-04-05T21:15:08.746Z", + "0.1.0": "2011-04-19T22:13:19.765Z", + "0.1.1": "2011-05-16T20:13:59.609Z", + "0.1.2": "2011-09-26T21:12:10.820Z", + "0.1.3": "2011-10-03T18:37:32.356Z", + "0.1.4": "2011-10-06T19:15:25.940Z" + }, + "author": { + "name": "TJ Holowaychuk", + "email": "tj@learnboost.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/cluster-mail/0.0.1", + "0.0.2": "http://registry.npmjs.org/cluster-mail/0.0.2", + "0.1.0": "http://registry.npmjs.org/cluster-mail/0.1.0", + "0.1.1": "http://registry.npmjs.org/cluster-mail/0.1.1", + "0.1.2": "http://registry.npmjs.org/cluster-mail/0.1.2", + "0.1.3": "http://registry.npmjs.org/cluster-mail/0.1.3", + "0.1.4": "http://registry.npmjs.org/cluster-mail/0.1.4" + }, + "dist": { + "0.0.1": { + "shasum": "8d362fd2645b68775fa3c6765c54e8067e184b83", + "tarball": "http://registry.npmjs.org/cluster-mail/-/cluster-mail-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "4b04e1d36eaedc5f2c50459adbf73abe8fc7710b", + "tarball": "http://registry.npmjs.org/cluster-mail/-/cluster-mail-0.0.2.tgz" + }, + "0.1.0": { + "shasum": "6d46fbb9715259f3117fe87f69d55c2a36ae372c", + "tarball": "http://registry.npmjs.org/cluster-mail/-/cluster-mail-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "9f66f57840eec8f06c7b68c024315f30e035df02", + "tarball": "http://registry.npmjs.org/cluster-mail/-/cluster-mail-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "5c4863c0cb326587e81c4c1db5f62fc8efdc5dab", + "tarball": "http://registry.npmjs.org/cluster-mail/-/cluster-mail-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "ab162a84023f05ffea000404fc0caff8dd8bf25d", + "tarball": "http://registry.npmjs.org/cluster-mail/-/cluster-mail-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "10dec72f0d7432b4024fc71387b056c161ce070c", + "tarball": "http://registry.npmjs.org/cluster-mail/-/cluster-mail-0.1.4.tgz" + } + }, + "keywords": [ + "cluster", + "email" + ], + "url": "http://registry.npmjs.org/cluster-mail/" + }, + "cluster-responsetimes": { + "name": "cluster-responsetimes", + "description": "Plugin for cluster to show response time stats", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "mnutt", + "email": "michael@nuttnet.net" + } + ], + "time": { + "modified": "2011-06-22T03:43:57.970Z", + "created": "2011-06-22T03:43:57.750Z", + "0.0.1": "2011-06-22T03:43:57.970Z" + }, + "author": { + "name": "Michael Nutt", + "email": "michael@nuttnet.net" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/cluster-responsetimes/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "7944adae17546aa150fe281e5fd047b035c6d1a2", + "tarball": "http://registry.npmjs.org/cluster-responsetimes/-/cluster-responsetimes-0.0.1.tgz" + } + }, + "keywords": [ + "cluster", + "latency", + "stats", + "metrics" + ], + "url": "http://registry.npmjs.org/cluster-responsetimes/" + }, + "cluster-socket.io": { + "name": "cluster-socket.io", + "description": "A learnboost/cluster plugin for managing learnboost/socket.io child processes", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "tmpvar", + "email": "tmpvar@gmail.com" + } + ], + "time": { + "modified": "2011-03-08T04:22:10.120Z", + "created": "2011-03-06T06:52:08.474Z", + "0.1.0": "2011-03-06T06:52:08.672Z", + "0.1.1": "2011-03-06T19:15:05.243Z", + "0.2.0": "2011-03-08T04:22:10.120Z" + }, + "author": { + "name": "Elijah Insua", + "email": "tmpvar@gmail.com", + "url": "http://tmpvar.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/tmpvar/cluster-socket.io.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/cluster-socket.io/0.1.0", + "0.1.1": "http://registry.npmjs.org/cluster-socket.io/0.1.1", + "0.2.0": "http://registry.npmjs.org/cluster-socket.io/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "6ffb84a49c70400431e86449aec9a0a6ebea76b6", + "tarball": "http://registry.npmjs.org/cluster-socket.io/-/cluster-socket.io-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "dcec7ab33c007ff5788e291a7ef08c95e9a973cd", + "tarball": "http://registry.npmjs.org/cluster-socket.io/-/cluster-socket.io-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "e1748db7e0b224cf01a265d45f670bdb6fd03501", + "tarball": "http://registry.npmjs.org/cluster-socket.io/-/cluster-socket.io-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/cluster-socket.io/" + }, + "cluster-vhost": { + "name": "cluster-vhost", + "description": "virtual host management using cluster", + "dist-tags": { + "latest": "0.2.5" + }, + "maintainers": [ + { + "name": "andreasmadsen", + "email": "amwebdk@gmail.com" + } + ], + "time": { + "modified": "2011-11-05T12:51:57.801Z", + "created": "2011-10-15T16:06:20.151Z", + "0.1.0": "2011-10-15T16:06:21.711Z", + "0.2.4": "2011-11-05T12:45:55.837Z", + "0.2.5": "2011-11-05T12:51:57.801Z" + }, + "author": { + "name": "Andreas Madsen", + "email": "amwebdk@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/AndreasMadsen/cluster-vhost.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/cluster-vhost/0.1.0", + "0.2.4": "http://registry.npmjs.org/cluster-vhost/0.2.4", + "0.2.5": "http://registry.npmjs.org/cluster-vhost/0.2.5" + }, + "dist": { + "0.1.0": { + "shasum": "a3a42b919691fb05b14fb0adcf96aa48fab58310", + "tarball": "http://registry.npmjs.org/cluster-vhost/-/cluster-vhost-0.1.0.tgz" + }, + "0.2.4": { + "shasum": "6389c547c1c390350fd228199e4eea0938951f69", + "tarball": "http://registry.npmjs.org/cluster-vhost/-/cluster-vhost-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "1874f5d1bec7fad5955b0a0d2a515fbe94e63a6a", + "tarball": "http://registry.npmjs.org/cluster-vhost/-/cluster-vhost-0.2.5.tgz" + } + }, + "keywords": [ + "vhost", + "virtual", + "host", + "domain", + "name" + ], + "url": "http://registry.npmjs.org/cluster-vhost/" + }, + "cluster.exception": { + "name": "cluster.exception", + "description": "Exception handling for cluster.js", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "V1", + "email": "info@3rd-Eden.com" + } + ], + "time": { + "modified": "2011-10-22T08:06:52.391Z", + "created": "2011-04-11T19:44:57.263Z", + "0.0.1": "2011-04-11T19:44:57.681Z", + "0.0.2": "2011-10-22T08:06:52.391Z" + }, + "author": { + "name": "Arnout Kazemier", + "email": "info@3rd-Eden.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/cluster.exception/0.0.1", + "0.0.2": "http://registry.npmjs.org/cluster.exception/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "89cc395451d65e941c166241beb0fa8e9d0f9295", + "tarball": "http://registry.npmjs.org/cluster.exception/-/cluster.exception-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "71c4597c3ce731bf7fd4751e2a2546f4071c0982", + "tarball": "http://registry.npmjs.org/cluster.exception/-/cluster.exception-0.0.2.tgz" + } + }, + "keywords": [ + "cluster", + "mail", + "exception", + "error" + ], + "url": "http://registry.npmjs.org/cluster.exception/" + }, + "clusterfck": { + "name": "clusterfck", + "description": "hierarchical clustering", + "dist-tags": { + "latest": "0.5.0" + }, + "readme": "# clusterfck\nA js [hierarchical clustering](http://en.wikipedia.org/wiki/Hierarchical_clustering) lib. [Demo here](http://harthur.github.com/clusterfck/demos/colors/).\n\n# Install\n\tgit clone http://github.com/harthur/clusterfck.git\n\tcd clusterfck\n\tnpm install .\n\n# Usage\n\n```javascript\nvar clusterfck = require(\"clusterfck\");\n\nvar colors = [\n [20, 120, 102],\n [0, 230, 93],\n [250, 255, 253],\n [100, 54, 300]\n];\n\nvar tree = clusterfck.hcluster(colors);\n```\n\n`hcluster` returns an object that represents the hierarchy of the clusters with `left` and `right` subtrees. The leaf clusters have a `value` property which is the vector from the data set.\n\n```\n{\n \"left\": {\n \"left\": {\n \"value\": [0, 230, 93],\n },\n \"right\": {\n \"value\": [20, 120, 102],\n },\n },\n \"right\": {\n \"left\": {\n \"value\": [250, 255, 253],\n },\n \"right\": {\n \"value\": [100, 54, 300],\n },\n },\n}\n\n```\n\n## Distance metric and linkage\n\nSpecify the distance metric, one of `\"euclidean\"` (default), `\"manhattan\"`, and `\"max\"`. The linkage criterion is the third argument, one of `\"average\"` (default), `\"single\"`, and `\"complete\"`.\n\n```javascript\nvar tree = clusterfck.hcluster(colors, \"euclidean\", \"single\");\n```\n", + "maintainers": [ + { + "name": "harth", + "email": "fayearthur@gmail.com" + } + ], + "time": { + "modified": "2011-12-10T21:54:15.817Z", + "created": "2011-12-05T18:39:43.538Z", + "0.2.0": "2011-12-05T18:39:45.503Z", + "0.5.0": "2011-12-10T21:54:15.817Z" + }, + "author": { + "name": "Heather Arthur", + "email": "fayearthur@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/harthur/clusterfck.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/clusterfck/0.2.0", + "0.5.0": "http://registry.npmjs.org/clusterfck/0.5.0" + }, + "dist": { + "0.2.0": { + "shasum": "b5581cb7262eaff48f37eac6d3e5684371dd47e8", + "tarball": "http://registry.npmjs.org/clusterfck/-/clusterfck-0.2.0.tgz" + }, + "0.5.0": { + "shasum": "3be0892cbf85166062e0d22bb09b1fbf097e33ff", + "tarball": "http://registry.npmjs.org/clusterfck/-/clusterfck-0.5.0.tgz" + } + }, + "url": "http://registry.npmjs.org/clusterfck/" + }, + "clusterlite": { + "name": "clusterlite", + "description": "Lite cluster based on 0.6.x Cluster API", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "# Clusterlite\nA silly, rediculously lite implementation of clustering for node web\napps (or others).\n\n## Why?\nI happily thought to use leanboost/cluster, then I found out it doesn't\nwork with the new Node 0.6.x cluster API.\n\n## Usage\n\n # clusterlite func. number of workers = number of cpus\n clusterlite ()->\n < your app code >\n\n # you might want to force a number of workers\n clusterlite.workers = 4\n clusterlite ()->\n ...\n\n\n## Contributing\n\nFork, implement, add tests, pull request, get my everlasting thanks and a respectable place here :).\n\n\n## Copyright\n\nCopyright (c) 2011 [Dotan Nahum](http://gplus.to/dotan) [@jondot](http://twitter.com/jondot). See MIT-LICENSE for further details.\n", + "maintainers": [ + { + "name": "jondot", + "email": "jondotan@gmail.com" + } + ], + "time": { + "modified": "2011-12-07T14:35:31.657Z", + "created": "2011-12-07T14:35:14.537Z", + "0.1.0": "2011-12-07T14:35:31.657Z" + }, + "author": { + "name": "Dotan Nahum", + "email": "jondotan@gmail.com" + }, + "repository": { + "url": "" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/clusterlite/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "07c6ba11debaf8c35ff4addb396919e0a0e76add", + "tarball": "http://registry.npmjs.org/clusterlite/-/clusterlite-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/clusterlite/" + }, + "clutch": { + "name": "clutch", + "description": "no-frills web request routing", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "clement", + "email": "clement.nodet@gmail.com" + } + ], + "author": { + "name": "Clément Nodet", + "email": "clement.nodet@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/clutch/0.1.0", + "0.1.1": "http://registry.npmjs.org/clutch/0.1.1" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/clutch/-/clutch-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://packages:5984/clutch/-/clutch-0.1.1.tgz" + } + }, + "keywords": [ + "web", + "routing", + "router", + "route" + ], + "url": "http://registry.npmjs.org/clutch/" + }, + "CM1": { + "name": "CM1", + "description": "JavaScript API for Brighter Planet's CM1 carbon/impact calculation service", + "dist-tags": { + "latest": "0.6.2" + }, + "maintainers": [ + { + "name": "dkastner", + "email": "dkastner@gmail.com" + } + ], + "time": { + "modified": "2011-11-10T19:57:56.430Z", + "created": "2011-08-25T00:16:32.234Z", + "0.0.1": "2011-08-25T00:16:32.816Z", + "0.0.2": "2011-08-25T20:08:12.883Z", + "0.0.3": "2011-08-25T20:38:35.787Z", + "0.1.0": "2011-09-02T15:48:19.802Z", + "0.2.0": "2011-09-02T17:40:10.608Z", + "0.2.1": "2011-09-08T02:17:40.300Z", + "0.3.0": "2011-09-12T03:03:54.724Z", + "0.4.0": "2011-10-25T14:13:52.945Z", + "0.5.0": "2011-10-31T19:00:17.626Z", + "0.5.1": "2011-10-31T19:29:37.599Z", + "0.6.0": "2011-11-09T21:07:19.982Z", + "0.6.1": "2011-11-10T19:53:34.493Z", + "0.6.2": "2011-11-10T19:57:56.430Z" + }, + "author": { + "name": "Derek Kastner", + "email": "dkastner@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/brighterplanet/CM1.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/CM1/0.0.1", + "0.0.2": "http://registry.npmjs.org/CM1/0.0.2", + "0.0.3": "http://registry.npmjs.org/CM1/0.0.3", + "0.1.0": "http://registry.npmjs.org/CM1/0.1.0", + "0.2.0": "http://registry.npmjs.org/CM1/0.2.0", + "0.2.1": "http://registry.npmjs.org/CM1/0.2.1", + "0.3.0": "http://registry.npmjs.org/CM1/0.3.0", + "0.4.0": "http://registry.npmjs.org/CM1/0.4.0", + "0.5.0": "http://registry.npmjs.org/CM1/0.5.0", + "0.5.1": "http://registry.npmjs.org/CM1/0.5.1", + "0.6.0": "http://registry.npmjs.org/CM1/0.6.0", + "0.6.1": "http://registry.npmjs.org/CM1/0.6.1", + "0.6.2": "http://registry.npmjs.org/CM1/0.6.2" + }, + "dist": { + "0.0.1": { + "shasum": "0c8a7facb97c8ca1bd3a716322262f4b21cb1fd3", + "tarball": "http://registry.npmjs.org/CM1/-/CM1-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "31b39432200ef223cf7e297b69cc9c1129b2a611", + "tarball": "http://registry.npmjs.org/CM1/-/CM1-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "34f132dba5f8cbd4b5d58a126dbae2bfabaf48f5", + "tarball": "http://registry.npmjs.org/CM1/-/CM1-0.0.3.tgz" + }, + "0.1.0": { + "shasum": "61607d49264c56f9e4691f59123a0c96cc698fda", + "tarball": "http://registry.npmjs.org/CM1/-/CM1-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "913186e0002e1be59ccc4c20a2b666eb60f3e7c1", + "tarball": "http://registry.npmjs.org/CM1/-/CM1-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "aedcfa06edd964dbab7f2097a7762a69a112fdb9", + "tarball": "http://registry.npmjs.org/CM1/-/CM1-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "b88ea48ee640f0d9e3383b370d5abd41db04da60", + "tarball": "http://registry.npmjs.org/CM1/-/CM1-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "a09b12a071026583c83f5a147a95f0f18a827c47", + "tarball": "http://registry.npmjs.org/CM1/-/CM1-0.4.0.tgz" + }, + "0.5.0": { + "shasum": "6f8c55b6395cab5e19a4d3e8b3bece969f6650ba", + "tarball": "http://registry.npmjs.org/CM1/-/CM1-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "65c93c37d246a1e6ae7a25bcf20b76c39b2219b4", + "tarball": "http://registry.npmjs.org/CM1/-/CM1-0.5.1.tgz" + }, + "0.6.0": { + "shasum": "5922a038b0fbc02fff8bb1e7c0d65b116637ab0f", + "tarball": "http://registry.npmjs.org/CM1/-/CM1-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "56b66e1e35726f7e44e3fdd51b75ad6959d139e7", + "tarball": "http://registry.npmjs.org/CM1/-/CM1-0.6.1.tgz" + }, + "0.6.2": { + "shasum": "dfe853f377327639b622c592b2406e837b3ff718", + "tarball": "http://registry.npmjs.org/CM1/-/CM1-0.6.2.tgz" + } + }, + "url": "http://registry.npmjs.org/CM1/" + }, + "cm1-route": { + "name": "cm1-route", + "description": "Routing API based on HootRoot", + "dist-tags": { + "latest": "0.5.0" + }, + "maintainers": [ + { + "name": "dkastner", + "email": "dkastner@gmail.com" + } + ], + "time": { + "modified": "2011-10-04T20:02:29.304Z", + "created": "2011-09-06T14:43:43.876Z", + "0.2.0": "2011-09-06T14:43:44.227Z", + "0.2.1": "2011-09-06T18:25:49.649Z", + "0.2.2": "2011-09-07T00:02:03.146Z", + "0.3.0": "2011-09-07T14:39:12.794Z", + "0.3.1": "2011-09-09T18:42:35.450Z", + "0.4.0": "2011-09-12T13:43:21.060Z", + "0.5.0": "2011-10-04T20:02:29.304Z" + }, + "author": { + "name": "Derek Kastner", + "email": "dkastner@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/brighterplanet/cm1-route.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/cm1-route/0.2.0", + "0.2.1": "http://registry.npmjs.org/cm1-route/0.2.1", + "0.2.2": "http://registry.npmjs.org/cm1-route/0.2.2", + "0.3.0": "http://registry.npmjs.org/cm1-route/0.3.0", + "0.3.1": "http://registry.npmjs.org/cm1-route/0.3.1", + "0.4.0": "http://registry.npmjs.org/cm1-route/0.4.0", + "0.5.0": "http://registry.npmjs.org/cm1-route/0.5.0" + }, + "dist": { + "0.2.0": { + "shasum": "af51b5e88467a380881c171371d088b0941dfeed", + "tarball": "http://registry.npmjs.org/cm1-route/-/cm1-route-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "51d830204518dc95401d31528fd799b73740e477", + "tarball": "http://registry.npmjs.org/cm1-route/-/cm1-route-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "34aa1d7cf8ddc500e65509e3777b6c1e409357d6", + "tarball": "http://registry.npmjs.org/cm1-route/-/cm1-route-0.2.2.tgz" + }, + "0.3.0": { + "shasum": "5347882fe6b37dd52d397ad83937c2d6f4bd4723", + "tarball": "http://registry.npmjs.org/cm1-route/-/cm1-route-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "f7d62b5893a07fa310d09b1d7bf65b60b8e9b611", + "tarball": "http://registry.npmjs.org/cm1-route/-/cm1-route-0.3.1.tgz" + }, + "0.4.0": { + "shasum": "7557bcff5219b5bc73fbda9941d59fc8b7075350", + "tarball": "http://registry.npmjs.org/cm1-route/-/cm1-route-0.4.0.tgz" + }, + "0.5.0": { + "shasum": "7f6b05b1a5a09b5471b60b60cfa6e4570776d7b3", + "tarball": "http://registry.npmjs.org/cm1-route/-/cm1-route-0.5.0.tgz" + } + }, + "url": "http://registry.npmjs.org/cm1-route/" + }, + "cmd": { + "name": "cmd", + "description": "Provides support for building module command line applications with node.", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "jon.seymour", + "email": "jon.seymour@gmail.com" + } + ], + "time": { + "modified": "2011-04-21T23:00:49.409Z", + "created": "2011-01-22T16:39:35.691Z", + "0.0.0": "2011-01-22T16:39:36.553Z", + "0.0.2": "2011-01-23T03:44:02.307Z", + "0.0.3": "2011-01-29T10:53:35.751Z", + "0.0.4": "2011-04-21T23:00:49.409Z" + }, + "author": { + "name": "Jon Seymour", + "email": "jon.seymour@gmail.com", + "url": "http://orwelliantremors.blogspot.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jonseymour/node-cmd.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/cmd/0.0.0", + "0.0.2": "http://registry.npmjs.org/cmd/0.0.2", + "0.0.3": "http://registry.npmjs.org/cmd/0.0.3", + "0.0.4": "http://registry.npmjs.org/cmd/0.0.4" + }, + "dist": { + "0.0.0": { + "shasum": "1a23165bd73a3d1b6d1e42511a02065e1e9c3d36", + "tarball": "http://registry.npmjs.org/cmd/-/cmd-0.0.0.tgz" + }, + "0.0.2": { + "shasum": "ab2cbf85e7e3d71f52e6b9ed9c18c9990769ae61", + "tarball": "http://registry.npmjs.org/cmd/-/cmd-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "9d67d376f2c3cec6dd7df09684a17aed225be0be", + "tarball": "http://registry.npmjs.org/cmd/-/cmd-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "a667c3c35006e37f968bf0dab0daaad44c702d02", + "tarball": "http://registry.npmjs.org/cmd/-/cmd-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/cmd/" + }, + "cmdopt": { + "name": "cmdopt", + "description": "command option parser for Node.js", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "kwatch", + "email": "kwa@kuwata-lab.com" + } + ], + "time": { + "modified": "2011-12-13T13:42:27.797Z", + "created": "2011-08-16T08:13:23.559Z", + "0.0.1": "2011-08-16T08:13:31.279Z", + "0.1.0": "2011-12-12T17:27:16.509Z", + "0.2.0": "2011-12-13T13:42:27.797Z" + }, + "author": { + "name": "Makoto Kuwata", + "email": "kwa@kuwata-lab.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/cmdopt/0.0.1", + "0.1.0": "http://registry.npmjs.org/cmdopt/0.1.0", + "0.2.0": "http://registry.npmjs.org/cmdopt/0.2.0" + }, + "dist": { + "0.0.1": { + "shasum": "c9411276b96fb3f42ba75c1415ed7b5f05ffcca1", + "tarball": "http://registry.npmjs.org/cmdopt/-/cmdopt-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "fd917cc3575a6de1af54263d43d56406c4da58b6", + "tarball": "http://registry.npmjs.org/cmdopt/-/cmdopt-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "54793959f86c7f648a05b7d11eeb663050e410fd", + "tarball": "http://registry.npmjs.org/cmdopt/-/cmdopt-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/cmdopt/" + }, + "cmdrkeene-faye": { + "name": "cmdrkeene-faye", + "description": "Simple pub/sub messaging for the web", + "dist-tags": { + "latest": "0.7.0" + }, + "readme": null, + "maintainers": [ + { + "name": "cmdrkeene", + "email": "bkeene@gmail.com" + } + ], + "time": { + "modified": "2011-11-13T23:34:26.801Z", + "created": "2011-11-13T23:34:26.718Z", + "0.7.0": "2011-11-13T23:34:26.801Z" + }, + "author": { + "name": "James Coglan", + "email": "jcoglan@gmail.com", + "url": "http://jcoglan.com/" + }, + "versions": { + "0.7.0": "http://registry.npmjs.org/cmdrkeene-faye/0.7.0" + }, + "dist": { + "0.7.0": { + "shasum": "edd28433de8375f5bbf381cb84d7e830f54aa3ca", + "tarball": "http://registry.npmjs.org/cmdrkeene-faye/-/cmdrkeene-faye-0.7.0.tgz" + } + }, + "keywords": [ + "comet", + "websocket", + "pubsub", + "bayeux", + "ajax", + "http" + ], + "url": "http://registry.npmjs.org/cmdrkeene-faye/" + }, + "cmp": { + "name": "cmp", + "description": "A library for general comparisons", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "mcandre", + "email": "andrew.pennebaker@gmail.com" + } + ], + "time": { + "modified": "2011-09-14T02:45:09.656Z", + "created": "2011-09-14T02:37:24.045Z", + "0.0.1": "2011-09-14T02:37:24.101Z", + "0.0.2": "2011-09-14T02:45:09.656Z" + }, + "author": { + "name": "Andrew Pennebaker", + "email": "andrew.pennebaker@gmail.com", + "url": "http://www.yellosoft.us/" + }, + "repository": { + "type": "git", + "url": "git://github.com/mcandre/node-cmp.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/cmp/0.0.1", + "0.0.2": "http://registry.npmjs.org/cmp/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "86c1d1766efa35648262b2cb292e9a9259ad6c2b", + "tarball": "http://registry.npmjs.org/cmp/-/cmp-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "60f51102faa9b020719bb85f7e90cf3d8b1dc2b6", + "tarball": "http://registry.npmjs.org/cmp/-/cmp-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/cmp/" + }, + "cms": { + "name": "cms", + "description": "Lightweight content management system", + "dist-tags": { + "latest": "0.0.1-1" + }, + "readme": "## thomblake/cms ##\n\nA lightweight CMS\n\nCreated by [Thom Blake](https://github.com/thomblake).\n\n## License ##\n\n\"cms content\" refers to any content in the Markdown (.md) files in the content/ directory.\n\nThis software, excluding cms content, is released under the MIT license:\n\n----\n\nCopyright (C) 2011 by Thom Blake\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n----\n\ncms content, excluding source code contained within cms content, is\nreleased under the following Creative Commons License:\n\n----\n\n\"Creative
This work by Thom Blake is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License.\n\n----\n\nSource code contained within cms content is released under the [WTFPL](http://sam.zoy.org/wtfpl/) unless specified otherwise.\n\n", + "maintainers": [ + { + "name": "thomblake", + "email": "thethomblake@gmail.com" + } + ], + "time": { + "modified": "2011-11-15T20:36:37.300Z", + "created": "2011-11-15T20:36:36.830Z", + "0.0.1-1": "2011-11-15T20:36:37.300Z" + }, + "author": { + "name": "Thom Blake", + "email": "thethomblake@gmail.com", + "url": "http://thomblake.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/thomblake/cms.git" + }, + "versions": { + "0.0.1-1": "http://registry.npmjs.org/cms/0.0.1-1" + }, + "dist": { + "0.0.1-1": { + "shasum": "cd886546c9f4b176eea662abdb76e8e038f0e536", + "tarball": "http://registry.npmjs.org/cms/-/cms-0.0.1-1.tgz" + } + }, + "keywords": [ + "ghm", + "cms" + ], + "url": "http://registry.npmjs.org/cms/" + }, + "cmudict": { + "name": "cmudict", + "description": "A node.js wrapper around the CMU Pronunciation Dictionary", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "nathanielksmith", + "email": "nathanielksmith@gmail.com" + } + ], + "time": { + "modified": "2011-08-23T17:33:02.782Z", + "created": "2011-08-23T17:33:01.999Z", + "1.0.0": "2011-08-23T17:33:02.782Z" + }, + "author": { + "name": "Nathaniel K Smith", + "email": "nathanielksmith@gmail.com", + "url": "http://chiptheglasses.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/nathanielksmith/node-cmudict.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/cmudict/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "446103b6216341c951d9fabfa63c4f27414b96f7", + "tarball": "http://registry.npmjs.org/cmudict/-/cmudict-1.0.0.tgz" + } + }, + "keywords": [ + "cmudict", + "nlp", + "language", + "linguistics", + "english" + ], + "url": "http://registry.npmjs.org/cmudict/" + }, + "cnlogger": { + "name": "cnlogger", + "description": "Logging lib that prints module name and line number", + "dist-tags": { + "latest": "0.3.5" + }, + "maintainers": [ + { + "name": "schloerke", + "email": "schloerke@gmail.com" + } + ], + "time": { + "modified": "2011-09-26T22:26:05.534Z", + "created": "2011-08-08T18:02:36.761Z", + "0.3.1": "2011-08-08T18:02:38.197Z", + "0.3.2": "2011-08-09T00:54:02.160Z", + "0.3.3": "2011-08-09T03:05:31.279Z", + "0.3.4": "2011-09-02T18:50:24.662Z", + "0.3.5": "2011-09-26T22:26:05.534Z" + }, + "author": { + "name": "Barret Schloerke and Igor Urminček" + }, + "repository": { + "type": "git", + "url": "git://github.com/schloerke/nlogger.git" + }, + "versions": { + "0.3.1": "http://registry.npmjs.org/cnlogger/0.3.1", + "0.3.2": "http://registry.npmjs.org/cnlogger/0.3.2", + "0.3.3": "http://registry.npmjs.org/cnlogger/0.3.3", + "0.3.4": "http://registry.npmjs.org/cnlogger/0.3.4", + "0.3.5": "http://registry.npmjs.org/cnlogger/0.3.5" + }, + "dist": { + "0.3.1": { + "shasum": "5ffdbe82da47f3ea8b3b4b8f01c3356b6a264a5a", + "tarball": "http://registry.npmjs.org/cnlogger/-/cnlogger-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "9d30cdf981270cfcddef152d7f153bbc7154f1ae", + "tarball": "http://registry.npmjs.org/cnlogger/-/cnlogger-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "511e4d5deda57a01fb012708668e35698c9342d9", + "tarball": "http://registry.npmjs.org/cnlogger/-/cnlogger-0.3.3.tgz" + }, + "0.3.4": { + "shasum": "9a3c98e9f3c7cd51a5a15b3af8336ef6c1eefe27", + "tarball": "http://registry.npmjs.org/cnlogger/-/cnlogger-0.3.4.tgz" + }, + "0.3.5": { + "shasum": "6d2bd43dd88f994a9cfdddd883a6248401a1b55c", + "tarball": "http://registry.npmjs.org/cnlogger/-/cnlogger-0.3.5.tgz" + } + }, + "keywords": [ + "log", + "logging", + "logger", + "custom", + "color" + ], + "url": "http://registry.npmjs.org/cnlogger/" + }, + "coa": { + "name": "coa", + "description": "Command-Option-Argument: Yet another parser for command line options.", + "dist-tags": { + "latest": "0.3.1" + }, + "maintainers": [ + { + "name": "veged", + "email": "veged@mail.ru" + }, + { + "name": "arikon", + "email": "peimei@ya.ru" + } + ], + "time": { + "modified": "2011-11-11T19:29:48.758Z", + "created": "2011-07-19T22:07:50.546Z", + "0.0.1": "2011-07-19T22:07:51.027Z", + "0.0.2": "2011-07-19T23:51:51.957Z", + "0.0.4": "2011-08-27T23:44:12.888Z", + "0.0.5": "2011-08-31T00:11:29.480Z", + "0.0.6": "2011-09-17T20:48:40.969Z", + "0.1.0": "2011-09-27T10:21:53.565Z", + "0.1.1": "2011-09-29T21:43:35.652Z", + "0.2.0": "2011-10-28T14:54:20.863Z", + "0.2.1": "2011-11-09T15:25:27.265Z", + "0.3.0": "2011-11-11T15:25:26.639Z", + "0.3.1": "2011-11-11T19:29:48.758Z" + }, + "author": { + "name": "Sergey Berezhnoy", + "email": "veged@ya.ru", + "url": "http://github.com/veged" + }, + "repository": { + "type": "git", + "url": "git://github.com/veged/coa.git" + }, + "users": { + "arikon": true + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/coa/0.0.1", + "0.0.2": "http://registry.npmjs.org/coa/0.0.2", + "0.0.4": "http://registry.npmjs.org/coa/0.0.4", + "0.0.5": "http://registry.npmjs.org/coa/0.0.5", + "0.0.6": "http://registry.npmjs.org/coa/0.0.6", + "0.1.0": "http://registry.npmjs.org/coa/0.1.0", + "0.1.1": "http://registry.npmjs.org/coa/0.1.1", + "0.2.0": "http://registry.npmjs.org/coa/0.2.0", + "0.2.1": "http://registry.npmjs.org/coa/0.2.1", + "0.3.0": "http://registry.npmjs.org/coa/0.3.0", + "0.3.1": "http://registry.npmjs.org/coa/0.3.1" + }, + "dist": { + "0.0.1": { + "shasum": "d149600ed37dd6295246ae3fa5b6ca9b893da83e", + "tarball": "http://registry.npmjs.org/coa/-/coa-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "98cd8fba4a4d313fb0eff89b0d24747eed2554ff", + "tarball": "http://registry.npmjs.org/coa/-/coa-0.0.2.tgz" + }, + "0.0.4": { + "shasum": "c8cca760bd9439c6622233ab4dc9571cce4cbd20", + "tarball": "http://registry.npmjs.org/coa/-/coa-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "9e1551c5b6d46e59671e6070297df5bfd3cb6c36", + "tarball": "http://registry.npmjs.org/coa/-/coa-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "c391f9bce2f7ba5f21bb29e24c58591b6cbcdee5", + "tarball": "http://registry.npmjs.org/coa/-/coa-0.0.6.tgz" + }, + "0.1.0": { + "shasum": "e2d412a2889e11224ad09d802004c2c751ffc692", + "tarball": "http://registry.npmjs.org/coa/-/coa-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "c8ef8b4ebe6770b560a5228a5b5af573cda9482c", + "tarball": "http://registry.npmjs.org/coa/-/coa-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "acd479e5acfbf1c8d69a1289071b9eb6ed41d62a", + "tarball": "http://registry.npmjs.org/coa/-/coa-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "b60be00b40dc49416483a0d418ca87b4e260154c", + "tarball": "http://registry.npmjs.org/coa/-/coa-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "808acf4cda2993a2a940391144d5eab724717bab", + "tarball": "http://registry.npmjs.org/coa/-/coa-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "567a213d978a01f70f7b8669904eda9c0254a843", + "tarball": "http://registry.npmjs.org/coa/-/coa-0.3.1.tgz" + } + }, + "url": "http://registry.npmjs.org/coa/" + }, + "cobra": { + "name": "cobra", + "description": "A little JavaScript class library", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "justin", + "email": "jmtulloss@gmail.com" + } + ], + "author": { + "name": "Justin Tulloss", + "email": "justin.tulloss@gmail.com", + "url": "http://justin.harmonize.fm" + }, + "time": { + "modified": "2011-03-12T21:07:46.888Z", + "created": "2011-03-12T21:07:46.888Z", + "0.5.1": "2011-03-12T21:07:46.888Z", + "1.0.1": "2011-03-12T21:07:46.888Z" + }, + "versions": { + "0.5.1": "http://registry.npmjs.org/cobra/0.5.1", + "1.0.1": "http://registry.npmjs.org/cobra/1.0.1" + }, + "dist": { + "0.5.1": { + "shasum": "660703783722607f039746692c37176fa985f0d8", + "tarball": "http://registry.npmjs.org/cobra/-/cobra-0.5.1.tgz" + }, + "1.0.1": { + "shasum": "8b1bdc51f4e5e55ba2b5beda0770fb909e760820", + "tarball": "http://registry.npmjs.org/cobra/-/cobra-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/cobra/" + }, + "cockpit": { + "name": "cockpit", + "description": "Command line component for Skywriter/Ace/Cloud9/etc", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "fjakobs", + "email": "fabian.jakobs@web.de" + } + ], + "time": { + "modified": "2011-07-11T09:58:23.987Z", + "created": "2011-07-11T09:58:23.390Z", + "0.1.1": "2011-07-11T09:58:23.987Z" + }, + "author": { + "name": "Joe Walker", + "email": "jwalker@mozilla.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/joewalker/cockpit.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/cockpit/0.1.1" + }, + "dist": { + "0.1.1": { + "shasum": "ac5d6de329d953b1f32c6ede7196c27322d50177", + "tarball": "http://registry.npmjs.org/cockpit/-/cockpit-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/cockpit/" + }, + "coco": { + "name": "coco", + "description": "Unfancy CoffeeScript", + "dist-tags": { + "latest": "0.6.7" + }, + "maintainers": [ + { + "name": "satyr", + "email": "murky.satyr@gmail.com" + } + ], + "author": { + "name": "satyr", + "email": "murky.satyr@gmail.com", + "url": "http://satyr.github.com" + }, + "time": { + "modified": "2011-11-15T20:08:07.563Z", + "created": "2010-12-20T20:55:40.058Z", + "0.1.0": "2010-12-20T20:55:40.058Z", + "0.1.2": "2010-12-20T20:55:40.058Z", + "0.1.3": "2010-12-20T20:55:40.058Z", + "0.1.4": "2010-12-20T20:55:40.058Z", + "0.1.5": "2010-12-20T20:55:40.058Z", + "0.1.6": "2010-12-20T20:55:40.058Z", + "0.2.0": "2010-12-24T20:15:57.784Z", + "0.2.1": "2011-01-03T08:00:15.619Z", + "0.2.2": "2011-01-06T15:20:00.257Z", + "0.3.0": "2011-01-27T05:57:20.251Z", + "0.3.1": "2011-02-06T01:56:53.047Z", + "0.3.2": "2011-02-11T11:04:38.871Z", + "0.3.3": "2011-03-09T17:04:19.642Z", + "0.4.0": "2011-03-13T19:14:24.877Z", + "0.4.1": "2011-03-23T13:22:15.075Z", + "0.4.2": "2011-04-05T06:13:35.417Z", + "0.5.0": "2011-05-02T09:32:04.998Z", + "0.5.1": "2011-05-10T11:30:53.570Z", + "0.5.2": "2011-05-23T05:07:19.578Z", + "0.5.3": "2011-05-27T13:34:35.016Z", + "0.5.4": "2011-06-07T17:59:39.527Z", + "0.6.0": "2011-08-14T06:40:26.955Z", + "0.6.1": "2011-08-16T07:26:46.296Z", + "0.6.2": "2011-08-26T00:23:17.002Z", + "0.6.3": "2011-09-06T20:21:09.009Z", + "0.6.4": "2011-09-14T06:10:59.523Z", + "0.6.5": "2011-09-15T14:51:49.489Z", + "0.6.6": "2011-09-17T08:55:17.122Z", + "0.6.7": "2011-09-24T20:47:33.181Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/satyr/coco.git" + }, + "users": { + "thejh": true + }, + "versions": { + "0.2.2": "http://registry.npmjs.org/coco/0.2.2", + "0.3.3": "http://registry.npmjs.org/coco/0.3.3", + "0.4.2": "http://registry.npmjs.org/coco/0.4.2", + "0.5.4": "http://registry.npmjs.org/coco/0.5.4", + "0.6.0": "http://registry.npmjs.org/coco/0.6.0", + "0.6.1": "http://registry.npmjs.org/coco/0.6.1", + "0.6.2": "http://registry.npmjs.org/coco/0.6.2", + "0.6.3": "http://registry.npmjs.org/coco/0.6.3", + "0.6.4": "http://registry.npmjs.org/coco/0.6.4", + "0.6.5": "http://registry.npmjs.org/coco/0.6.5", + "0.6.6": "http://registry.npmjs.org/coco/0.6.6", + "0.6.7": "http://registry.npmjs.org/coco/0.6.7" + }, + "dist": { + "0.2.2": { + "shasum": "1cfb4d68a39821da7b7e3bcf42bd75ace165df32", + "tarball": "http://registry.npmjs.org/coco/-/coco-0.2.2.tgz" + }, + "0.3.3": { + "shasum": "787443ac24bde34b1885d3d8b7ce8c31b1874654", + "tarball": "http://registry.npmjs.org/coco/-/coco-0.3.3.tgz" + }, + "0.4.2": { + "shasum": "de422fef134984d00c2f7effcca6695eaf762e2e", + "tarball": "http://registry.npmjs.org/coco/-/coco-0.4.2.tgz" + }, + "0.5.4": { + "shasum": "085c8e15e94e8032599e428976521801e667162f", + "tarball": "http://registry.npmjs.org/coco/-/coco-0.5.4.tgz" + }, + "0.6.0": { + "shasum": "f7509abef09f29ebe6add4371d202c38864eb78f", + "tarball": "http://registry.npmjs.org/coco/-/coco-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "4fa4b0058db756abb20f4c3a2ecaaa361c916b81", + "tarball": "http://registry.npmjs.org/coco/-/coco-0.6.1.tgz" + }, + "0.6.2": { + "shasum": "0a5b6041556ee42b5244588d506ba89f3dd7f79b", + "tarball": "http://registry.npmjs.org/coco/-/coco-0.6.2.tgz" + }, + "0.6.3": { + "shasum": "25fe07a6b8ad96389e42a2372213699230d01c86", + "tarball": "http://registry.npmjs.org/coco/-/coco-0.6.3.tgz" + }, + "0.6.4": { + "shasum": "1e96b0e9bea6a2830e056aa8031d21d5950f81d3", + "tarball": "http://registry.npmjs.org/coco/-/coco-0.6.4.tgz" + }, + "0.6.5": { + "shasum": "4b3cc9831579746fb9d5feeb329357b8d2f5b5d2", + "tarball": "http://registry.npmjs.org/coco/-/coco-0.6.5.tgz" + }, + "0.6.6": { + "shasum": "c4c131f91920a340e414540bb85cf07e479b220f", + "tarball": "http://registry.npmjs.org/coco/-/coco-0.6.6.tgz" + }, + "0.6.7": { + "shasum": "24a80b0dce92daf50bb4a2a18a331869e7a00003", + "tarball": "http://registry.npmjs.org/coco/-/coco-0.6.7.tgz" + } + }, + "keywords": [ + "language", + "compiler", + "coffeescript", + "javascript" + ], + "url": "http://registry.npmjs.org/coco/" + }, + "cocos2d": { + "name": "cocos2d", + "description": "Port of the Cocos2D graphics engine to HTML5", + "dist-tags": { + "latest": "0.1.1", + "unstable": "0.2.0-beta" + }, + "maintainers": [ + { + "name": "ryanwilliams", + "email": "ryan@wigg.ly" + } + ], + "time": { + "modified": "2011-12-01T05:57:28.415Z", + "created": "2011-02-15T09:54:18.459Z", + "0.1.0": "2011-02-15T09:54:19.459Z", + "0.2.0-alpha": "2011-11-26T09:47:28.161Z", + "0.1.1": "2011-12-01T05:56:43.865Z", + "0.2.0-beta": "2011-12-01T05:57:28.415Z" + }, + "author": { + "name": "Ryan Williams", + "email": "ryan@cocos2d-javascript.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/ryanwilliams/cocos2d-javascript.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/cocos2d/0.1.0", + "0.2.0-alpha": "http://registry.npmjs.org/cocos2d/0.2.0-alpha", + "0.1.1": "http://registry.npmjs.org/cocos2d/0.1.1", + "0.2.0-beta": "http://registry.npmjs.org/cocos2d/0.2.0-beta" + }, + "dist": { + "0.1.0": { + "shasum": "27a0c7aaafda913596be21e2d5c200a0ad86acdf", + "tarball": "http://registry.npmjs.org/cocos2d/-/cocos2d-0.1.0.tgz" + }, + "0.2.0-alpha": { + "shasum": "84758126cf1d1e93f9c33af63610fa5a99742101", + "tarball": "http://registry.npmjs.org/cocos2d/-/cocos2d-0.2.0-alpha.tgz" + }, + "0.1.1": { + "shasum": "13c9a9490295499609ad0f66074019284d1bbd13", + "tarball": "http://registry.npmjs.org/cocos2d/-/cocos2d-0.1.1.tgz" + }, + "0.2.0-beta": { + "shasum": "db0f1ea80618cf0d7452cb020377e7b1e82e175b", + "tarball": "http://registry.npmjs.org/cocos2d/-/cocos2d-0.2.0-beta.tgz" + } + }, + "url": "http://registry.npmjs.org/cocos2d/" + }, + "codem-transcode": { + "name": "codem-transcode", + "description": "Offline video transcoding using ffmpeg, with a small HTTP API.", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "tieleman", + "email": "npm@sjoerdtieleman.nl" + } + ], + "time": { + "modified": "2011-09-26T13:48:35.844Z", + "created": "2011-05-24T08:41:22.262Z", + "0.1.0": "2011-05-24T08:41:22.743Z", + "0.1.1": "2011-05-24T08:52:24.202Z", + "0.1.2": "2011-07-11T07:58:53.707Z", + "0.2.0": "2011-08-23T10:07:52.597Z", + "0.2.1": "2011-09-26T13:48:35.844Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/NPO/codem-transcode.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/codem-transcode/0.1.0", + "0.1.1": "http://registry.npmjs.org/codem-transcode/0.1.1", + "0.1.2": "http://registry.npmjs.org/codem-transcode/0.1.2", + "0.2.0": "http://registry.npmjs.org/codem-transcode/0.2.0", + "0.2.1": "http://registry.npmjs.org/codem-transcode/0.2.1" + }, + "dist": { + "0.1.0": { + "shasum": "ab6b28a31fd9b9354fcdd6a07800ba812da335c6", + "tarball": "http://registry.npmjs.org/codem-transcode/-/codem-transcode-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "44a348b5a9fd36503eda564583ab072a3ca2b5ee", + "tarball": "http://registry.npmjs.org/codem-transcode/-/codem-transcode-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "dd8116e9f2dd2ad86eb765d33a3ca1e16b253873", + "tarball": "http://registry.npmjs.org/codem-transcode/-/codem-transcode-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "14ee2edc4162f1501680154e35b4befb9b935a48", + "tarball": "http://registry.npmjs.org/codem-transcode/-/codem-transcode-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "8448a3d0aa992a31b32146d57e2d494d27ca09f0", + "tarball": "http://registry.npmjs.org/codem-transcode/-/codem-transcode-0.2.1.tgz" + } + }, + "url": "http://registry.npmjs.org/codem-transcode/" + }, + "codepad": { + "name": "codepad", + "description": "A simple interface to codepad.org", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "scoates", + "email": "sean@seancoates.com" + } + ], + "time": { + "modified": "2011-07-19T03:51:27.740Z", + "created": "2011-05-28T18:28:10.417Z", + "0.1.0": "2011-05-28T18:28:10.576Z", + "0.1.1": "2011-07-19T03:51:27.740Z" + }, + "author": { + "name": "Sean Coates", + "email": "sean@seancoates.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/scoates/node-codepad.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/codepad/0.1.0", + "0.1.1": "http://registry.npmjs.org/codepad/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "a14e46f998db740292aeb46306ec41b80b95944b", + "tarball": "http://registry.npmjs.org/codepad/-/codepad-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "19c125cba3d9708d8e5311467384e0e39974eacd", + "tarball": "http://registry.npmjs.org/codepad/-/codepad-0.1.1.tgz" + } + }, + "keywords": [ + "code", + "eval", + "pastebin", + "codepad" + ], + "url": "http://registry.npmjs.org/codepad/" + }, + "codesurgeon": { + "name": "codesurgeon", + "description": "Build JS files based on JS code extracted from files", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "hij1nx", + "email": "hij1nx@me.com" + } + ], + "time": { + "modified": "2011-10-26T21:33:40.073Z", + "created": "2011-09-29T14:57:38.948Z", + "0.0.1": "2011-09-29T14:57:39.313Z", + "0.0.2": "2011-09-29T17:09:38.268Z", + "0.1.0": "2011-10-02T02:02:24.468Z", + "0.1.1": "2011-10-02T02:13:31.453Z", + "0.1.2": "2011-10-02T02:23:45.280Z", + "0.1.4": "2011-10-02T03:12:01.683Z", + "0.1.5": "2011-10-02T03:36:11.438Z", + "0.1.6": "2011-10-02T12:28:23.579Z", + "0.1.7": "2011-10-02T12:53:04.522Z", + "0.1.8": "2011-10-08T12:20:58.018Z", + "0.2.0": "2011-10-26T19:45:50.040Z", + "0.2.1": "2011-10-26T21:33:40.073Z" + }, + "author": { + "name": "Nodejitsu Inc", + "email": "info@nodejitsu.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/hij1nx/codesurgeon.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/codesurgeon/0.0.1", + "0.0.2": "http://registry.npmjs.org/codesurgeon/0.0.2", + "0.1.0": "http://registry.npmjs.org/codesurgeon/0.1.0", + "0.1.1": "http://registry.npmjs.org/codesurgeon/0.1.1", + "0.1.2": "http://registry.npmjs.org/codesurgeon/0.1.2", + "0.1.4": "http://registry.npmjs.org/codesurgeon/0.1.4", + "0.1.5": "http://registry.npmjs.org/codesurgeon/0.1.5", + "0.1.6": "http://registry.npmjs.org/codesurgeon/0.1.6", + "0.1.7": "http://registry.npmjs.org/codesurgeon/0.1.7", + "0.1.8": "http://registry.npmjs.org/codesurgeon/0.1.8", + "0.2.0": "http://registry.npmjs.org/codesurgeon/0.2.0", + "0.2.1": "http://registry.npmjs.org/codesurgeon/0.2.1" + }, + "dist": { + "0.0.1": { + "shasum": "55c62c8093cd2db546ffee61e69f47fcb7cb9c73", + "tarball": "http://registry.npmjs.org/codesurgeon/-/codesurgeon-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c2944845cd70b24f7970329da5acb845d967fc21", + "tarball": "http://registry.npmjs.org/codesurgeon/-/codesurgeon-0.0.2.tgz" + }, + "0.1.0": { + "shasum": "ae1404bdd69010eb2eec9bcc2f502464f2f9cd6a", + "tarball": "http://registry.npmjs.org/codesurgeon/-/codesurgeon-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "efdd18794b0880992c3a41af6baaeb6c48a76019", + "tarball": "http://registry.npmjs.org/codesurgeon/-/codesurgeon-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "2dd71ee4606dfbc180e5a9ad15180a207c35dc0c", + "tarball": "http://registry.npmjs.org/codesurgeon/-/codesurgeon-0.1.2.tgz" + }, + "0.1.4": { + "shasum": "a412f80012221f7175aaf445d4d0a5fefc6af909", + "tarball": "http://registry.npmjs.org/codesurgeon/-/codesurgeon-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "9256f9c7da01aeecf87e127282f55356b50a05dd", + "tarball": "http://registry.npmjs.org/codesurgeon/-/codesurgeon-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "c3d873b450d7f814a5fdec5d517ff24388c39d4a", + "tarball": "http://registry.npmjs.org/codesurgeon/-/codesurgeon-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "ab499a6908592f605be78b004eb44d09e50e3a2c", + "tarball": "http://registry.npmjs.org/codesurgeon/-/codesurgeon-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "0ae23d87ce481b97d34e2a6ac39da7f413d19e1d", + "tarball": "http://registry.npmjs.org/codesurgeon/-/codesurgeon-0.1.8.tgz" + }, + "0.2.0": { + "shasum": "e0ac42c5a8c6fa208519640e3a87668dbef9eed3", + "tarball": "http://registry.npmjs.org/codesurgeon/-/codesurgeon-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "df0506dd941247d8a36b6fe40cd733b0871c7f62", + "tarball": "http://registry.npmjs.org/codesurgeon/-/codesurgeon-0.2.1.tgz" + } + }, + "keywords": [ + "build", + "deploy", + "devops" + ], + "url": "http://registry.npmjs.org/codesurgeon/" + }, + "codetube": { + "name": "codetube", + "description": "decentralized git hosting", + "dist-tags": { + "latest": "0.0.0-alpha" + }, + "maintainers": [ + { + "name": "dodo", + "email": "dodo@blacksec.org" + } + ], + "time": { + "modified": "2011-11-14T21:38:44.573Z", + "created": "2011-09-22T13:36:53.473Z", + "0.0.0-alpha": "2011-09-22T13:36:54.560Z" + }, + "users": { + "astro": true + }, + "versions": { + "0.0.0-alpha": "http://registry.npmjs.org/codetube/0.0.0-alpha" + }, + "dist": { + "0.0.0-alpha": { + "shasum": "89473f0a8f4bd7fbfcf8de6040a3e8942eacdca2", + "tarball": "http://registry.npmjs.org/codetube/-/codetube-0.0.0-alpha.tgz" + } + }, + "url": "http://registry.npmjs.org/codetube/" + }, + "codex": { + "name": "codex", + "description": "Static site and code documentation generator.", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "jakeluer", + "email": "jake.luer@incatern.com" + } + ], + "time": { + "modified": "2011-12-07T18:14:18.574Z", + "created": "2011-10-01T23:08:40.313Z", + "0.0.1": "2011-10-01T23:08:40.918Z", + "0.0.2": "2011-10-01T23:46:02.072Z", + "0.0.3": "2011-10-02T06:37:56.195Z", + "0.0.4": "2011-12-07T18:14:18.574Z" + }, + "author": { + "name": "Jake Luer", + "email": "jake@alogicalparadox.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/logicalparadox/codex.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/codex/0.0.1", + "0.0.2": "http://registry.npmjs.org/codex/0.0.2", + "0.0.3": "http://registry.npmjs.org/codex/0.0.3", + "0.0.4": "http://registry.npmjs.org/codex/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "34bb52b44983531b04e143b5c8302eb93f411805", + "tarball": "http://registry.npmjs.org/codex/-/codex-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "3acd9a0e86fdc0f4418928b685a4eb35ea60e5cf", + "tarball": "http://registry.npmjs.org/codex/-/codex-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "012c69c94fc42f40f3406729c6d2ad3ccd2f4c47", + "tarball": "http://registry.npmjs.org/codex/-/codex-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "3ad2085f14148505628160f6f5b043d615c292c3", + "tarball": "http://registry.npmjs.org/codex/-/codex-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/codex/" + }, + "codie": { + "name": "codie", + "description": "JavaScript template engine specialized in generating JavaScript code", + "dist-tags": { + "latest": "0.9.0" + }, + "maintainers": [ + { + "name": "dmajda", + "email": "david@majda.cz" + } + ], + "time": { + "modified": "2011-09-29T13:57:13.818Z", + "created": "2011-09-29T13:57:12.321Z", + "0.9.0": "2011-09-29T13:57:13.818Z" + }, + "author": { + "name": "David Majda", + "email": "david@majda.cz", + "url": "http://majda.cz/" + }, + "repository": { + "type": "git", + "url": "git://github.com/dmajda/codie.git" + }, + "versions": { + "0.9.0": "http://registry.npmjs.org/codie/0.9.0" + }, + "dist": { + "0.9.0": { + "shasum": "1c743bcb1c34f68d76f0b8d0cd5de0602213385a", + "tarball": "http://registry.npmjs.org/codie/-/codie-0.9.0.tgz" + } + }, + "url": "http://registry.npmjs.org/codie/" + }, + "codify": { + "name": "codify", + "description": "Turn integers into base36 codes", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "andrewjstone", + "email": "andrew.stone@bozuko.com" + } + ], + "time": { + "modified": "2011-12-06T16:30:26.377Z", + "created": "2011-12-05T22:25:25.758Z", + "0.2.0": "2011-12-05T22:25:26.080Z", + "0.3.0": "2011-12-06T16:30:26.377Z" + }, + "author": { + "name": "Andrew J. Stone", + "email": "andrew.j.stone.1@bozuko.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/bozuko/codify.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/codify/0.2.0", + "0.3.0": "http://registry.npmjs.org/codify/0.3.0" + }, + "dist": { + "0.2.0": { + "shasum": "bca4634bdfddf3c974183b38b1ea8e152aed0b1c", + "tarball": "http://registry.npmjs.org/codify/-/codify-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "5489ce3b1c087fab99536d25afbb4b14e4d762f1", + "tarball": "http://registry.npmjs.org/codify/-/codify-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/codify/" + }, + "coerce": { + "name": "coerce", + "dist-tags": { + "latest": "0.5.0" + }, + "maintainers": [ + { + "name": "deanmao", + "email": "deanmao@gmail.com" + } + ], + "time": { + "modified": "2011-09-07T05:42:45.803Z", + "created": "2011-09-07T05:42:45.338Z", + "0.5.0": "2011-09-07T05:42:45.803Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/deanmao/coerce.git" + }, + "versions": { + "0.5.0": "http://registry.npmjs.org/coerce/0.5.0" + }, + "dist": { + "0.5.0": { + "shasum": "c4000e9d9035985cdb90d7c55d99c1191678d78e", + "tarball": "http://registry.npmjs.org/coerce/-/coerce-0.5.0.tgz" + } + }, + "url": "http://registry.npmjs.org/coerce/" + }, + "coffee-conf": { + "name": "coffee-conf", + "description": "Write your config files in coffee-script.", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "MSNexploder", + "email": "MSNexploder@gmail.com" + } + ], + "time": { + "modified": "2011-11-20T21:43:21.588Z", + "created": "2011-08-13T15:56:34.704Z", + "0.1.0": "2011-08-13T15:56:37.149Z", + "0.1.1": "2011-11-10T14:41:21.080Z", + "0.1.2": "2011-11-20T21:43:21.588Z" + }, + "author": { + "name": "Stefan Huber", + "email": "MSNexploder@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/MSNexploder/coffee-conf.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/coffee-conf/0.1.0", + "0.1.1": "http://registry.npmjs.org/coffee-conf/0.1.1", + "0.1.2": "http://registry.npmjs.org/coffee-conf/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "c2d381606b2a4f3a2a5b91c2081165c0ba4d1a26", + "tarball": "http://registry.npmjs.org/coffee-conf/-/coffee-conf-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "4beede422d24ae2326d62cccc92a8973fa6105ba", + "tarball": "http://registry.npmjs.org/coffee-conf/-/coffee-conf-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "a05da4fdddbd13615851a49684e2c4148a747f6f", + "tarball": "http://registry.npmjs.org/coffee-conf/-/coffee-conf-0.1.2.tgz" + } + }, + "keywords": [ + "coffee-script", + "config", + "loading", + "application", + "dsl", + "domain", + "specific", + "language" + ], + "url": "http://registry.npmjs.org/coffee-conf/" + }, + "coffee-css": { + "name": "coffee-css", + "description": "More CSS for CoffeeScript", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "khoomeister", + "email": "chris.khoo@gmail.com" + } + ], + "time": { + "modified": "2011-06-05T18:00:06.642Z", + "created": "2011-06-03T03:28:34.453Z", + "0.0.1": "2011-06-03T03:28:35.896Z", + "0.0.2": "2011-06-03T06:08:28.093Z", + "0.0.3": "2011-06-05T08:10:00.005Z", + "0.0.4": "2011-06-05T09:03:38.783Z", + "0.0.5": "2011-06-05T18:00:06.642Z" + }, + "author": { + "name": "khoomeister" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/coffee-css/0.0.1", + "0.0.2": "http://registry.npmjs.org/coffee-css/0.0.2", + "0.0.3": "http://registry.npmjs.org/coffee-css/0.0.3", + "0.0.4": "http://registry.npmjs.org/coffee-css/0.0.4", + "0.0.5": "http://registry.npmjs.org/coffee-css/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "2c647c2b1d35fc5020cce4ff980d65af80e4c06b", + "tarball": "http://registry.npmjs.org/coffee-css/-/coffee-css-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "873d72244a7b70666f6d0e4c32ebbae9062c1b7a", + "tarball": "http://registry.npmjs.org/coffee-css/-/coffee-css-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "b2a334451cf9a667066bca61104df2fd903c08e5", + "tarball": "http://registry.npmjs.org/coffee-css/-/coffee-css-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "8796d1c1d6b663b6ab70473ec3a67500932ccf9d", + "tarball": "http://registry.npmjs.org/coffee-css/-/coffee-css-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "589a822fba5ae0d4f1a0424b22ba7501683275a4", + "tarball": "http://registry.npmjs.org/coffee-css/-/coffee-css-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/coffee-css/" + }, + "coffee-echonest": { + "name": "coffee-echonest", + "description": "Echo Nest API implementation", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "jjenkins", + "email": "jim.jenkins@gmail.com" + } + ], + "time": { + "modified": "2011-05-21T23:05:39.634Z", + "created": "2011-05-21T23:05:39.207Z", + "0.0.1": "2011-05-21T23:05:39.634Z" + }, + "author": { + "name": "Jim Jenkins", + "email": "jim.jenkins@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/jjenkins/coffee-echonest.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/coffee-echonest/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "abcb338cc924e9b156fdb2a2481dcf3701f028e1", + "tarball": "http://registry.npmjs.org/coffee-echonest/-/coffee-echonest-0.0.1.tgz" + } + }, + "keywords": [ + "music", + "echo nest" + ], + "url": "http://registry.npmjs.org/coffee-echonest/" + }, + "coffee-machine": { + "name": "coffee-machine", + "description": "A simple state machine written in CoffeeScript.", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "stephenb", + "email": "stephenrb@gmail.com" + } + ], + "time": { + "modified": "2011-06-11T01:12:05.730Z", + "created": "2011-05-19T16:31:25.691Z", + "0.0.2": "2011-05-19T16:31:26.123Z", + "0.0.3": "2011-05-19T17:53:49.968Z" + }, + "author": { + "name": "Stephen Blankenship" + }, + "repository": { + "type": "git", + "url": "git://github.com/stephenb/coffee-machine.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/coffee-machine/0.0.2", + "0.0.3": "http://registry.npmjs.org/coffee-machine/0.0.3" + }, + "dist": { + "0.0.2": { + "shasum": "a46177176dd8cd8e2c4945642f38cb7cddaea93b", + "tarball": "http://registry.npmjs.org/coffee-machine/-/coffee-machine-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "0ea23f5b67d7957c046ebc406f6f8b4b1db24c1d", + "tarball": "http://registry.npmjs.org/coffee-machine/-/coffee-machine-0.0.3.tgz" + } + }, + "keywords": [ + "state machine", + "statemachine", + "coffee script", + "coffeescript" + ], + "url": "http://registry.npmjs.org/coffee-machine/" + }, + "coffee-new": { + "name": "coffee-new", + "description": "A utility to create & manage CoffeeScript projects", + "dist-tags": { + "latest": "0.0.7" + }, + "maintainers": [ + { + "name": "khoomeister", + "email": "chris.khoo@gmail.com" + } + ], + "time": { + "modified": "2011-09-06T06:26:31.559Z", + "created": "2011-08-31T16:50:55.250Z", + "0.0.1": "2011-08-31T16:50:59.976Z", + "0.0.2": "2011-09-02T08:09:31.962Z", + "0.0.3": "2011-09-03T00:47:37.811Z", + "0.0.4": "2011-09-03T03:11:19.998Z", + "0.0.5": "2011-09-05T03:54:39.999Z", + "0.0.6": "2011-09-05T05:49:43.527Z", + "0.0.7": "2011-09-06T06:11:36.202Z" + }, + "author": { + "name": "khoomeister" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/coffee-new/0.0.1", + "0.0.2": "http://registry.npmjs.org/coffee-new/0.0.2", + "0.0.3": "http://registry.npmjs.org/coffee-new/0.0.3", + "0.0.4": "http://registry.npmjs.org/coffee-new/0.0.4", + "0.0.5": "http://registry.npmjs.org/coffee-new/0.0.5", + "0.0.6": "http://registry.npmjs.org/coffee-new/0.0.6", + "0.0.7": "http://registry.npmjs.org/coffee-new/0.0.7" + }, + "dist": { + "0.0.1": { + "shasum": "65f0527fedc62329e6921b9cb1efeb6a0f961d76", + "tarball": "http://registry.npmjs.org/coffee-new/-/coffee-new-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "eccea8e1fdba64fa102cb10a6ef3dd62205b0d9f", + "tarball": "http://registry.npmjs.org/coffee-new/-/coffee-new-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "2a6f946985e22714fa92d04eb8accc1d6a0380f5", + "tarball": "http://registry.npmjs.org/coffee-new/-/coffee-new-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "dadd1b8eedc3edf570b282ca8fd56d4b56c768d8", + "tarball": "http://registry.npmjs.org/coffee-new/-/coffee-new-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "9352b59393244e607d119f0b8ee37a44cc7ad47a", + "tarball": "http://registry.npmjs.org/coffee-new/-/coffee-new-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "f9ec92e790ce7c6d3e7ceea487e5240de58a8a0d", + "tarball": "http://registry.npmjs.org/coffee-new/-/coffee-new-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "ea94bffe75828bb4d5da52040e852805a0b945c3", + "tarball": "http://registry.npmjs.org/coffee-new/-/coffee-new-0.0.7.tgz" + } + }, + "url": "http://registry.npmjs.org/coffee-new/" + }, + "coffee-resque": { + "name": "coffee-resque", + "description": "Coffeescript/Node.js port of Resque", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "technoweenie", + "email": "technoweenie@gmail.com" + }, + { + "name": "steelThread", + "email": "sean.mcdaniel@me.com" + } + ], + "time": { + "modified": "2011-05-14T16:57:35.139Z", + "created": "2011-02-01T03:35:19.293Z", + "0.0.1": "2011-02-01T03:35:19.510Z", + "0.1.0": "2011-02-24T16:43:23.300Z", + "0.1.2": "2011-03-09T23:13:45.866Z", + "0.1.3": "2011-04-28T00:56:45.509Z", + "0.1.4": "2011-05-14T16:57:35.139Z" + }, + "author": { + "name": "Rick Olson", + "email": "technoweenie@gmail.com", + "url": "http://techno-weenie.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/technoweenie/coffee-resque.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/coffee-resque/0.0.1", + "0.1.0": "http://registry.npmjs.org/coffee-resque/0.1.0", + "0.1.2": "http://registry.npmjs.org/coffee-resque/0.1.2", + "0.1.3": "http://registry.npmjs.org/coffee-resque/0.1.3", + "0.1.4": "http://registry.npmjs.org/coffee-resque/0.1.4" + }, + "dist": { + "0.0.1": { + "shasum": "d6bd84a1cbb26e52bbf43ff9a07e8743551738e2", + "tarball": "http://registry.npmjs.org/coffee-resque/-/coffee-resque-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "7e188d06122e7c5c78d9624c0b19f134c346cd20", + "tarball": "http://registry.npmjs.org/coffee-resque/-/coffee-resque-0.1.0.tgz" + }, + "0.1.2": { + "shasum": "1ddc64be6c4cf8b8c93e5a200fb24719fc62f5af", + "tarball": "http://registry.npmjs.org/coffee-resque/-/coffee-resque-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "42112dc4e9449c8d8f2c3174564d6a1732ffb057", + "tarball": "http://registry.npmjs.org/coffee-resque/-/coffee-resque-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "3ea2a650ace1ee138b4e40b0b3acd4cd81a93300", + "tarball": "http://registry.npmjs.org/coffee-resque/-/coffee-resque-0.1.4.tgz" + } + }, + "keywords": [ + "resque", + "redis", + "queue", + "coffee script" + ], + "url": "http://registry.npmjs.org/coffee-resque/" + }, + "coffee-resque-retry": { + "name": "coffee-resque-retry", + "description": "Adds some retry options to coffee-resque. Concept lifted from Ruby's resque-retry", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "zdzolton", + "email": "zachary.zolton@gmail.com" + } + ], + "time": { + "modified": "2011-11-22T17:13:26.182Z", + "created": "2011-03-29T19:49:59.342Z", + "0.0.1": "2011-03-29T19:49:59.681Z", + "0.0.2": "2011-04-04T18:27:01.068Z", + "0.0.3": "2011-06-02T16:34:17.089Z", + "0.0.4": "2011-07-11T20:58:17.749Z", + "0.0.5": "2011-11-22T17:13:26.182Z" + }, + "author": { + "name": "Zach Zolton", + "email": "zachary.zolton@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/zdzolton/coffee-resque-retry.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/coffee-resque-retry/0.0.1", + "0.0.2": "http://registry.npmjs.org/coffee-resque-retry/0.0.2", + "0.0.3": "http://registry.npmjs.org/coffee-resque-retry/0.0.3", + "0.0.4": "http://registry.npmjs.org/coffee-resque-retry/0.0.4", + "0.0.5": "http://registry.npmjs.org/coffee-resque-retry/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "8962e41f9f51aec99c24a78a32b1713bd8589c5a", + "tarball": "http://registry.npmjs.org/coffee-resque-retry/-/coffee-resque-retry-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "ca6df52789dabf36ccf95a0c21491a7272fbf968", + "tarball": "http://registry.npmjs.org/coffee-resque-retry/-/coffee-resque-retry-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "8853d4b7ca2e05b1b33fbab6c2266d882b00002f", + "tarball": "http://registry.npmjs.org/coffee-resque-retry/-/coffee-resque-retry-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "82aaa5df9369ad1e9b1b3cae8f902056aa9531f4", + "tarball": "http://registry.npmjs.org/coffee-resque-retry/-/coffee-resque-retry-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "73c86670aa8b7abfa0bb27a2289ad890a73d889a", + "tarball": "http://registry.npmjs.org/coffee-resque-retry/-/coffee-resque-retry-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/coffee-resque-retry/" + }, + "coffee-revup": { + "name": "coffee-revup", + "description": "Runs your CoffeeScript and restarts if changes are detected - useful for development", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "khoomeister", + "email": "chris.khoo@gmail.com" + } + ], + "time": { + "modified": "2011-05-16T02:19:18.491Z", + "created": "2011-05-16T02:19:16.849Z", + "0.0.1": "2011-05-16T02:19:18.491Z" + }, + "author": { + "name": "khoomeister" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/coffee-revup/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "4553d35e89ff6cbc533fc8f4b0792b1f26e02c69", + "tarball": "http://registry.npmjs.org/coffee-revup/-/coffee-revup-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/coffee-revup/" + }, + "coffee-roaster": { + "name": "coffee-roaster", + "description": "Watches your .coffee files for changes and compiles to the JavaScript file specified in \"#@compilesTo \".", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "ktusznio", + "email": "kamil.tusznio@gmail.com" + } + ], + "time": { + "modified": "2011-10-05T16:36:29.897Z", + "created": "2011-10-05T16:36:29.174Z", + "0.0.0": "2011-10-05T16:36:29.897Z" + }, + "author": { + "name": "Kamil Tusznio", + "email": "kamil.tusznio@gmail.com" + }, + "repository": { + "type": "git", + "url": "" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/coffee-roaster/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "932cd95dfc121181e6c05965a94c4239a720f8a9", + "tarball": "http://registry.npmjs.org/coffee-roaster/-/coffee-roaster-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/coffee-roaster/" + }, + "coffee-script": { + "name": "coffee-script", + "description": "Unfancy JavaScript", + "dist-tags": { + "latest": "1.1.3", + "stable": "1.1.2" + }, + "maintainers": [ + { + "name": "jashkenas", + "email": "jashkenas@gmail.com" + } + ], + "author": { + "name": "Jeremy Ashkenas" + }, + "time": { + "modified": "2011-11-14T21:30:01.095Z", + "created": "2010-12-24T19:03:36.215Z", + "0.7.0": "2010-12-24T19:03:36.215Z", + "0.7.1": "2010-12-24T19:03:36.215Z", + "0.7.2": "2010-12-24T19:03:36.215Z", + "0.9.0": "2010-12-24T19:03:36.215Z", + "0.9.1": "2010-12-24T19:03:36.215Z", + "0.9.2": "2010-12-24T19:03:36.215Z", + "0.9.3": "2010-12-24T19:03:36.215Z", + "0.9.4": "2010-12-24T19:03:36.215Z", + "0.9.5": "2010-12-24T19:03:36.215Z", + "0.9.6": "2010-12-24T19:03:36.215Z", + "1.0.0": "2010-12-24T19:03:36.215Z", + "1.1.0-pre": "2011-02-01T03:40:06.654Z", + "1.0.1": "2011-02-01T03:42:04.611Z", + "1.1.0": "2011-05-01T16:09:17.054Z", + "1.1.1": "2011-05-10T13:28:00.633Z", + "1.1.2": "2011-08-05T03:18:50.703Z", + "1.1.3": "2011-11-08T23:05:16.149Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/jashkenas/coffee-script.git" + }, + "users": { + "thejh": true, + "pekim": true + }, + "versions": { + "0.7.0": "http://registry.npmjs.org/coffee-script/0.7.0", + "0.7.1": "http://registry.npmjs.org/coffee-script/0.7.1", + "0.7.2": "http://registry.npmjs.org/coffee-script/0.7.2", + "0.9.0": "http://registry.npmjs.org/coffee-script/0.9.0", + "0.9.1": "http://registry.npmjs.org/coffee-script/0.9.1", + "0.9.2": "http://registry.npmjs.org/coffee-script/0.9.2", + "0.9.3": "http://registry.npmjs.org/coffee-script/0.9.3", + "0.9.4": "http://registry.npmjs.org/coffee-script/0.9.4", + "0.9.5": "http://registry.npmjs.org/coffee-script/0.9.5", + "0.9.6": "http://registry.npmjs.org/coffee-script/0.9.6", + "1.0.0": "http://registry.npmjs.org/coffee-script/1.0.0", + "1.0.1": "http://registry.npmjs.org/coffee-script/1.0.1", + "1.1.0": "http://registry.npmjs.org/coffee-script/1.1.0", + "1.1.1": "http://registry.npmjs.org/coffee-script/1.1.1", + "1.1.2": "http://registry.npmjs.org/coffee-script/1.1.2", + "1.1.3": "http://registry.npmjs.org/coffee-script/1.1.3" + }, + "dist": { + "0.7.0": { + "tarball": "http://registry.npmjs.org/coffee-script/-/coffee-script-0.7.0.tgz" + }, + "0.7.1": { + "tarball": "http://registry.npmjs.org/coffee-script/-/coffee-script-0.7.1.tgz" + }, + "0.7.2": { + "tarball": "http://registry.npmjs.org/coffee-script/-/coffee-script-0.7.2.tgz" + }, + "0.9.0": { + "tarball": "http://registry.npmjs.org/coffee-script/-/coffee-script-0.9.0.tgz" + }, + "0.9.1": { + "tarball": "http://registry.npmjs.org/coffee-script/-/coffee-script-0.9.1.tgz" + }, + "0.9.2": { + "tarball": "http://registry.npmjs.org/coffee-script/-/coffee-script-0.9.2.tgz" + }, + "0.9.3": { + "tarball": "http://registry.npmjs.org/coffee-script/-/coffee-script-0.9.3.tgz" + }, + "0.9.4": { + "tarball": "http://registry.npmjs.org/coffee-script/-/coffee-script-0.9.4.tgz" + }, + "0.9.5": { + "tarball": "http://registry.npmjs.org/coffee-script/-/coffee-script-0.9.5.tgz" + }, + "0.9.6": { + "tarball": "http://registry.npmjs.org/coffee-script/-/coffee-script-0.9.6.tgz" + }, + "1.0.0": { + "tarball": "http://registry.npmjs.org/coffee-script/-/coffee-script-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "4fa0049d48208951bc9122b362f8107a560c975c", + "tarball": "http://registry.npmjs.org/coffee-script/-/coffee-script-1.0.1.tgz" + }, + "1.1.0": { + "shasum": "6b4e18b4f9e254723d379d860dfdbea663f460c7", + "tarball": "http://registry.npmjs.org/coffee-script/-/coffee-script-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "b3961915e4f547354dd6178378b3073999526224", + "tarball": "http://registry.npmjs.org/coffee-script/-/coffee-script-1.1.1.tgz" + }, + "1.1.2": { + "shasum": "a530a19d050c37054d83ae6c8041fba0fcd61ed3", + "tarball": "http://registry.npmjs.org/coffee-script/-/coffee-script-1.1.2.tgz" + }, + "1.1.3": { + "shasum": "04cb82e59653fcad6ae6050900c81adf3af6d798", + "tarball": "http://registry.npmjs.org/coffee-script/-/coffee-script-1.1.3.tgz" + } + }, + "keywords": [ + "javascript", + "language", + "coffeescript", + "compiler" + ], + "url": "http://registry.npmjs.org/coffee-script/" + }, + "coffee-son": { + "name": "coffee-son", + "description": "A utility for CoffeeScript literals", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "bat", + "email": "ben@benatkin.com" + } + ], + "time": { + "modified": "2011-07-29T09:55:20.387Z", + "created": "2011-07-29T09:55:18.649Z", + "0.0.0": "2011-07-29T09:55:20.387Z" + }, + "author": { + "name": "Ben Atkin", + "email": "ben@benatkin.com", + "url": "http://benatkin.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/benatkin/coffee-son.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/coffee-son/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "67893ff3c8609c79e90c6f2205a6c9cadc3d28fc", + "tarball": "http://registry.npmjs.org/coffee-son/-/coffee-son-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/coffee-son/" + }, + "coffee-toaster": { + "name": "coffee-toaster", + "description": "Minimalist dependency management system for coffee-script.", + "dist-tags": { + "latest": "0.3.8" + }, + "maintainers": [ + { + "name": "nybras", + "email": "me@nybras.com" + } + ], + "time": { + "modified": "2011-10-29T12:25:59.975Z", + "created": "2011-09-14T16:36:14.887Z", + "0.1.0": "2011-09-14T16:36:17.362Z", + "0.1.2": "2011-09-18T00:41:43.098Z", + "0.2.0": "2011-09-18T22:29:09.444Z", + "0.2.1": "2011-09-22T14:13:09.285Z", + "0.2.2": "2011-10-02T17:46:57.345Z", + "0.3.0": "2011-10-16T20:30:48.411Z", + "0.3.5": "2011-10-24T03:20:49.533Z", + "0.3.6": "2011-10-26T01:17:22.835Z", + "0.3.7": "2011-10-29T12:22:39.300Z", + "0.3.8": "2011-10-29T12:25:59.975Z" + }, + "author": { + "name": "Anderson Arboleya", + "email": "me@nybras.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/serpentem/coffee-toaster.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/coffee-toaster/0.1.0", + "0.1.2": "http://registry.npmjs.org/coffee-toaster/0.1.2", + "0.2.0": "http://registry.npmjs.org/coffee-toaster/0.2.0", + "0.2.1": "http://registry.npmjs.org/coffee-toaster/0.2.1", + "0.2.2": "http://registry.npmjs.org/coffee-toaster/0.2.2", + "0.3.0": "http://registry.npmjs.org/coffee-toaster/0.3.0", + "0.3.5": "http://registry.npmjs.org/coffee-toaster/0.3.5", + "0.3.6": "http://registry.npmjs.org/coffee-toaster/0.3.6", + "0.3.7": "http://registry.npmjs.org/coffee-toaster/0.3.7", + "0.3.8": "http://registry.npmjs.org/coffee-toaster/0.3.8" + }, + "dist": { + "0.1.0": { + "shasum": "fb22e29a8e4437a80319d049320f838bd84d8473", + "tarball": "http://registry.npmjs.org/coffee-toaster/-/coffee-toaster-0.1.0.tgz" + }, + "0.1.2": { + "shasum": "bb82a8d93f959a8f89d51eb3bd61bcc99bf3d338", + "tarball": "http://registry.npmjs.org/coffee-toaster/-/coffee-toaster-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "e5038e4e8a7f8f044850fbb95b0a9529b2bfc884", + "tarball": "http://registry.npmjs.org/coffee-toaster/-/coffee-toaster-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "8f37f57ba6566895ecdc3f001b24f0846d47c092", + "tarball": "http://registry.npmjs.org/coffee-toaster/-/coffee-toaster-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "59ec8a49ecb908ecd09964bedf39d9c2b93367ea", + "tarball": "http://registry.npmjs.org/coffee-toaster/-/coffee-toaster-0.2.2.tgz" + }, + "0.3.0": { + "shasum": "61dc6f4a731910c60026c285864000dd0fd955f4", + "tarball": "http://registry.npmjs.org/coffee-toaster/-/coffee-toaster-0.3.0.tgz" + }, + "0.3.5": { + "shasum": "8e4a1a644de42d2b93c0531929ccd9930e6e3354", + "tarball": "http://registry.npmjs.org/coffee-toaster/-/coffee-toaster-0.3.5.tgz" + }, + "0.3.6": { + "shasum": "170a41291d3ef15b6a4a6c58b9617387b4595536", + "tarball": "http://registry.npmjs.org/coffee-toaster/-/coffee-toaster-0.3.6.tgz" + }, + "0.3.7": { + "shasum": "cc617856547378e8a16b449abfd5fee3afdc7f00", + "tarball": "http://registry.npmjs.org/coffee-toaster/-/coffee-toaster-0.3.7.tgz" + }, + "0.3.8": { + "shasum": "15912ffd3e5504296189b9e192f3d94aec9f2a20", + "tarball": "http://registry.npmjs.org/coffee-toaster/-/coffee-toaster-0.3.8.tgz" + } + }, + "url": "http://registry.npmjs.org/coffee-toaster/" + }, + "coffee-watcher": { + "name": "coffee-watcher", + "description": "A script that can watch a directory and recompile your .coffee scripts if they change", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "amix", + "email": "amix@amix.dk" + } + ], + "time": { + "modified": "2011-03-10T15:55:38.970Z", + "created": "2011-03-10T15:55:38.496Z", + "1.0.0": "2011-03-10T15:55:38.970Z" + }, + "author": { + "name": "amix" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/coffee-watcher/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "428226a8d2ac7cf07ff5b3c5056e683d72d0bed2", + "tarball": "http://registry.npmjs.org/coffee-watcher/-/coffee-watcher-1.0.0.tgz" + } + }, + "keywords": [ + "coffeescript", + "reload", + "watch", + "recompile" + ], + "url": "http://registry.npmjs.org/coffee-watcher/" + }, + "coffee-world": { + "name": "coffee-world", + "description": "Watches the current folder to compile CoffeeScript into CSS, HTML & JS", + "dist-tags": { + "latest": "0.0.7" + }, + "maintainers": [ + { + "name": "khoomeister", + "email": "chris.khoo@gmail.com" + } + ], + "time": { + "modified": "2011-06-05T16:41:02.478Z", + "created": "2011-06-03T00:59:25.404Z", + "0.0.1": "2011-06-03T00:59:27.047Z", + "0.0.2": "2011-06-03T01:53:57.179Z", + "0.0.3": "2011-06-03T02:35:35.745Z", + "0.0.4": "2011-06-03T03:39:01.808Z", + "0.0.5": "2011-06-03T04:41:51.266Z", + "0.0.6": "2011-06-03T06:18:19.358Z", + "0.0.7": "2011-06-05T16:41:02.478Z" + }, + "author": { + "name": "khoomeister" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/coffee-world/0.0.1", + "0.0.2": "http://registry.npmjs.org/coffee-world/0.0.2", + "0.0.3": "http://registry.npmjs.org/coffee-world/0.0.3", + "0.0.4": "http://registry.npmjs.org/coffee-world/0.0.4", + "0.0.5": "http://registry.npmjs.org/coffee-world/0.0.5", + "0.0.6": "http://registry.npmjs.org/coffee-world/0.0.6", + "0.0.7": "http://registry.npmjs.org/coffee-world/0.0.7" + }, + "dist": { + "0.0.1": { + "shasum": "822fdf71cc0ebab49fb40df35f6065430993a5f5", + "tarball": "http://registry.npmjs.org/coffee-world/-/coffee-world-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "dad08c23dd37383043de09495b2d585782454bd2", + "tarball": "http://registry.npmjs.org/coffee-world/-/coffee-world-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "03f650f32663129dbddca0875a71d30754d7b8b6", + "tarball": "http://registry.npmjs.org/coffee-world/-/coffee-world-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "5ee7665bf15147baa61110fbf3a237b33e93bb27", + "tarball": "http://registry.npmjs.org/coffee-world/-/coffee-world-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "7532122554328000249e1cf80c6f5c9257d2f1d8", + "tarball": "http://registry.npmjs.org/coffee-world/-/coffee-world-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "e0bb5a03b195b0e95c5c1aa857fc09f02db10c8f", + "tarball": "http://registry.npmjs.org/coffee-world/-/coffee-world-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "1eaca6d22de2545ca2ca90685f38860dcc9cf2c1", + "tarball": "http://registry.npmjs.org/coffee-world/-/coffee-world-0.0.7.tgz" + } + }, + "url": "http://registry.npmjs.org/coffee-world/" + }, + "coffee4clients": { + "name": "coffee4clients", + "description": "Extends Express.js such that when a .coffee file is accessed through an express server the response is the compiled javascript instead of the source coffeescript", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "balupton", + "email": "b@lupton.cc" + } + ], + "time": { + "modified": "2011-06-28T15:19:11.736Z", + "created": "2011-05-18T04:31:12.475Z", + "0.1.0": "2011-05-18T04:31:14.008Z", + "0.1.1": "2011-05-18T04:32:53.031Z", + "0.1.2": "2011-05-18T05:06:00.818Z", + "0.1.3": "2011-05-18T05:07:37.505Z", + "0.1.4": "2011-06-07T19:00:03.326Z", + "0.2.1": "2011-06-28T15:15:53.772Z", + "0.2.2": "2011-06-28T15:19:11.736Z" + }, + "author": { + "name": "Benjamin Lupton", + "email": "b@lupton.cc", + "url": "http://balupton.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/balupton/coffee4clients.npm.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/coffee4clients/0.1.0", + "0.1.1": "http://registry.npmjs.org/coffee4clients/0.1.1", + "0.1.2": "http://registry.npmjs.org/coffee4clients/0.1.2", + "0.1.3": "http://registry.npmjs.org/coffee4clients/0.1.3", + "0.1.4": "http://registry.npmjs.org/coffee4clients/0.1.4", + "0.2.1": "http://registry.npmjs.org/coffee4clients/0.2.1", + "0.2.2": "http://registry.npmjs.org/coffee4clients/0.2.2" + }, + "dist": { + "0.1.0": { + "shasum": "dec950b1e91459d6f5eea1480f48d585790dd379", + "tarball": "http://registry.npmjs.org/coffee4clients/-/coffee4clients-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "1ccfea4c08b64682b61e844248dc804e4370a190", + "tarball": "http://registry.npmjs.org/coffee4clients/-/coffee4clients-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "363d37f06287149b54ca0c20613cd6c5a9c6abbc", + "tarball": "http://registry.npmjs.org/coffee4clients/-/coffee4clients-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "dfad0d197b2071b048f532397a1759d4e26d9fe7", + "tarball": "http://registry.npmjs.org/coffee4clients/-/coffee4clients-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "63ee2350c100df99963ba50b654474c6000fcfcf", + "tarball": "http://registry.npmjs.org/coffee4clients/-/coffee4clients-0.1.4.tgz" + }, + "0.2.1": { + "shasum": "b0edcfb16bf74879f5e63059446a6db60aa7c001", + "tarball": "http://registry.npmjs.org/coffee4clients/-/coffee4clients-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "890710b3a540c0396dcb87abc33a544c459c29e8", + "tarball": "http://registry.npmjs.org/coffee4clients/-/coffee4clients-0.2.2.tgz" + } + }, + "keywords": [ + "javascript", + "coffeescript", + "compile", + "server", + "expressjs" + ], + "url": "http://registry.npmjs.org/coffee4clients/" + }, + "coffeeapp": { + "name": "coffeeapp", + "description": "CoffeeApp wrapper (handling coffee-script) for CouchApp (http://couchapp.org/).", + "dist-tags": { + "latest": "1.1.4" + }, + "maintainers": [ + { + "name": "andrzejsliwa", + "email": "andrzej.sliwa@i-tool.eu" + } + ], + "author": { + "name": "Andrzej Sliwa", + "email": "andrzej.sliwa@i-tool.eu", + "url": "http://andrzejsliwa.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/andrzejsliwa/coffeeapp.git" + }, + "time": { + "modified": "2011-01-28T23:16:22.971Z", + "created": "2011-01-24T16:50:03.498Z", + "1.0.7": "2011-01-24T16:50:03.498Z", + "1.0.8": "2011-01-24T16:50:03.498Z", + "1.0.9": "2011-01-24T16:50:03.498Z", + "1.1.0": "2011-01-24T16:50:03.498Z", + "1.1.1": "2011-01-24T16:50:03.498Z", + "1.1.2": "2011-01-24T16:50:03.498Z", + "1.1.4": "2011-01-28T23:16:22.971Z" + }, + "versions": { + "1.0.7": "http://registry.npmjs.org/coffeeapp/1.0.7", + "1.0.8": "http://registry.npmjs.org/coffeeapp/1.0.8", + "1.0.9": "http://registry.npmjs.org/coffeeapp/1.0.9", + "1.1.0": "http://registry.npmjs.org/coffeeapp/1.1.0", + "1.1.1": "http://registry.npmjs.org/coffeeapp/1.1.1", + "1.1.2": "http://registry.npmjs.org/coffeeapp/1.1.2", + "1.1.4": "http://registry.npmjs.org/coffeeapp/1.1.4" + }, + "dist": { + "1.0.7": { + "tarball": "http://registry.npmjs.org/coffeeapp/-/coffeeapp@1.0.7.tgz" + }, + "1.0.8": { + "tarball": "http://registry.npmjs.org/coffeeapp/-/coffeeapp@1.0.8.tgz" + }, + "1.0.9": { + "tarball": "http://registry.npmjs.org/coffeeapp/-/coffeeapp@1.0.9.tgz" + }, + "1.1.0": { + "shasum": "a1158e2f3067f17f60630fbd356cb1c57d62148e", + "tarball": "http://registry.npmjs.org/coffeeapp/-/coffeeapp-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "b85780040582946c83461cf80320a2b117fb880c", + "tarball": "http://registry.npmjs.org/coffeeapp/-/coffeeapp-1.1.1.tgz" + }, + "1.1.2": { + "shasum": "51b6bec5c4f9f9dd657cc5407bd9dbbc66aeae1e", + "tarball": "http://registry.npmjs.org/coffeeapp/-/coffeeapp-1.1.2.tgz" + }, + "1.1.4": { + "shasum": "cf3b1dbbe7b1f88b6fe88fcda5f9a9e3e63e6add", + "tarball": "http://registry.npmjs.org/coffeeapp/-/coffeeapp-1.1.4.tgz" + } + }, + "url": "http://registry.npmjs.org/coffeeapp/" + }, + "coffeebot": { + "name": "coffeebot", + "description": "Write cross-network chat bots in CoffeeScript", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "myfreeweb", + "email": "me@myfreeweb.ru" + } + ], + "time": { + "modified": "2011-05-08T15:19:09.597Z", + "created": "2011-05-08T15:19:08.857Z", + "0.1.0": "2011-05-08T15:19:09.597Z" + }, + "author": { + "name": "Grigory V.", + "email": "me@myfreeweb.ru" + }, + "repository": { + "type": "git", + "url": "git://github.com/myfreeweb/coffeebot.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/coffeebot/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "1bb175cf0e992ea60f77c06a4d7eefcc089e71e0", + "tarball": "http://registry.npmjs.org/coffeebot/-/coffeebot-0.1.0.tgz" + } + }, + "keywords": [ + "coffeescript", + "chat", + "irc" + ], + "url": "http://registry.npmjs.org/coffeebot/" + }, + "coffeedoc": { + "name": "coffeedoc", + "description": "An API documentation generator for CoffeeScript", + "dist-tags": { + "latest": "0.1.12" + }, + "maintainers": [ + { + "name": "omarkhan", + "email": "omarkhan@gmx.com" + } + ], + "time": { + "modified": "2011-12-01T14:47:27.600Z", + "created": "2011-07-27T18:59:17.833Z", + "0.1.0": "2011-07-27T18:59:20.098Z", + "0.1.1": "2011-07-28T12:08:52.163Z", + "0.1.2": "2011-07-28T18:03:51.796Z", + "0.1.3": "2011-08-01T21:45:43.283Z", + "0.1.4": "2011-08-04T14:43:30.299Z", + "0.1.5": "2011-08-07T14:42:00.305Z", + "0.1.6": "2011-08-24T17:23:25.236Z", + "0.1.7": "2011-08-25T16:44:08.264Z", + "0.1.8": "2011-08-31T12:32:15.576Z", + "0.1.9": "2011-08-31T14:01:07.609Z", + "0.1.10": "2011-10-11T12:29:33.039Z", + "0.1.11": "2011-10-31T13:16:58.345Z", + "0.1.12": "2011-12-01T14:47:27.600Z" + }, + "author": { + "name": "Omar Khan" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/coffeedoc/0.1.0", + "0.1.1": "http://registry.npmjs.org/coffeedoc/0.1.1", + "0.1.2": "http://registry.npmjs.org/coffeedoc/0.1.2", + "0.1.3": "http://registry.npmjs.org/coffeedoc/0.1.3", + "0.1.4": "http://registry.npmjs.org/coffeedoc/0.1.4", + "0.1.5": "http://registry.npmjs.org/coffeedoc/0.1.5", + "0.1.6": "http://registry.npmjs.org/coffeedoc/0.1.6", + "0.1.7": "http://registry.npmjs.org/coffeedoc/0.1.7", + "0.1.8": "http://registry.npmjs.org/coffeedoc/0.1.8", + "0.1.9": "http://registry.npmjs.org/coffeedoc/0.1.9", + "0.1.10": "http://registry.npmjs.org/coffeedoc/0.1.10", + "0.1.11": "http://registry.npmjs.org/coffeedoc/0.1.11", + "0.1.12": "http://registry.npmjs.org/coffeedoc/0.1.12" + }, + "dist": { + "0.1.0": { + "shasum": "1ee553f6f19b1334c4f17b2f08bf3075b6757800", + "tarball": "http://registry.npmjs.org/coffeedoc/-/coffeedoc-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "a9d6799d2ec4604ecd3534810531ba022b95bb62", + "tarball": "http://registry.npmjs.org/coffeedoc/-/coffeedoc-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "dbc74f320cdbfddc4957d8b7a2a0c87ec35cce46", + "tarball": "http://registry.npmjs.org/coffeedoc/-/coffeedoc-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "9108d73b6250358cd8508bf5678a43ed0dc8c57f", + "tarball": "http://registry.npmjs.org/coffeedoc/-/coffeedoc-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "7c78c413df5d87b60e9dd22bf77d6784c3a7a8a2", + "tarball": "http://registry.npmjs.org/coffeedoc/-/coffeedoc-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "b6cef0bba3f28213cb6ce5469baca88ab27486cb", + "tarball": "http://registry.npmjs.org/coffeedoc/-/coffeedoc-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "9b8a7801522f9cdabd9d657dc372e26056901309", + "tarball": "http://registry.npmjs.org/coffeedoc/-/coffeedoc-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "c9687847157fd8fa7ae12165d24a88bb3a3011cf", + "tarball": "http://registry.npmjs.org/coffeedoc/-/coffeedoc-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "edf7371608cbef4136c0f05e5f78ddaed867dd97", + "tarball": "http://registry.npmjs.org/coffeedoc/-/coffeedoc-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "669fff3434d0a633b2d0e6feccc763d7995f2449", + "tarball": "http://registry.npmjs.org/coffeedoc/-/coffeedoc-0.1.9.tgz" + }, + "0.1.10": { + "shasum": "0ba5ff41c0e02287c6e9f9fafead7b75e71dace0", + "tarball": "http://registry.npmjs.org/coffeedoc/-/coffeedoc-0.1.10.tgz" + }, + "0.1.11": { + "shasum": "b3f647772d78e3698b487c507c2a0bf9fc85a4af", + "tarball": "http://registry.npmjs.org/coffeedoc/-/coffeedoc-0.1.11.tgz" + }, + "0.1.12": { + "shasum": "7cc225329d8840f00626ca9df2d6f66c3d0a1e8a", + "tarball": "http://registry.npmjs.org/coffeedoc/-/coffeedoc-0.1.12.tgz" + } + }, + "keywords": [ + "documentation", + "docs", + "generator", + "coffeescript" + ], + "url": "http://registry.npmjs.org/coffeedoc/" + }, + "coffeegrinder": { + "name": "coffeegrinder", + "description": "Utilities for a CoffeeScript Project", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "markbates", + "email": "mark@markbates.com" + } + ], + "time": { + "modified": "2011-08-17T15:46:55.462Z", + "created": "2011-08-17T14:44:17.169Z", + "0.1.1": "2011-08-17T14:44:18.181Z", + "0.1.2": "2011-08-17T15:16:14.873Z", + "0.1.3": "2011-08-17T15:46:06.982Z", + "0.1.4": "2011-08-17T15:46:55.462Z" + }, + "author": { + "name": "Mark Bates" + }, + "repository": { + "type": "git", + "url": "git://github.com/markbates/coffeegrinder.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/coffeegrinder/0.1.1", + "0.1.2": "http://registry.npmjs.org/coffeegrinder/0.1.2", + "0.1.3": "http://registry.npmjs.org/coffeegrinder/0.1.3", + "0.1.4": "http://registry.npmjs.org/coffeegrinder/0.1.4" + }, + "dist": { + "0.1.1": { + "shasum": "a3b29d67890d9dc28d13c266144c9e641e45491c", + "tarball": "http://registry.npmjs.org/coffeegrinder/-/coffeegrinder-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "b4cebe66aa51bc04d7d3258e19c220cb571c7e9c", + "tarball": "http://registry.npmjs.org/coffeegrinder/-/coffeegrinder-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "bae5c49689ebcdf04d07a87e56b9367d6d66ec3b", + "tarball": "http://registry.npmjs.org/coffeegrinder/-/coffeegrinder-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "ab78b83823927d099e4f9d1c6f03ad17abf8fbfe", + "tarball": "http://registry.npmjs.org/coffeegrinder/-/coffeegrinder-0.1.4.tgz" + } + }, + "keywords": [ + "javascript", + "language", + "coffeescript", + "project", + "utilities" + ], + "url": "http://registry.npmjs.org/coffeegrinder/" + }, + "coffeekup": { + "name": "coffeekup", + "description": "Markup as CoffeeScript.", + "dist-tags": { + "stable": "0.3.0", + "latest": "0.3.1" + }, + "maintainers": [ + { + "name": "mauricemach", + "email": "maurice@bitbending.com" + } + ], + "author": { + "name": "Maurice Machado", + "email": "maurice@bitbending.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mauricemach/coffeekup.git" + }, + "time": { + "modified": "2011-09-29T11:55:30.485Z", + "created": "2011-01-05T17:10:50.739Z", + "0.2.1": "2011-01-05T17:10:50.739Z", + "0.2.0": "2011-01-05T17:10:50.739Z", + "0.1.7": "2011-01-05T17:10:50.739Z", + "0.1.6": "2011-01-05T17:10:50.739Z", + "0.1.5": "2011-01-05T17:10:50.739Z", + "0.2.2": "2011-01-05T17:10:50.739Z", + "0.2.3": "2011-05-07T00:25:59.544Z", + "0.3.0beta": "2011-07-27T23:20:24.616Z", + "0.3.0": "2011-09-04T23:15:29.789Z", + "0.3.1": "2011-09-29T11:55:30.485Z" + }, + "versions": { + "0.2.1": "http://registry.npmjs.org/coffeekup/0.2.1", + "0.2.0": "http://registry.npmjs.org/coffeekup/0.2.0", + "0.1.7": "http://registry.npmjs.org/coffeekup/0.1.7", + "0.1.6": "http://registry.npmjs.org/coffeekup/0.1.6", + "0.1.5": "http://registry.npmjs.org/coffeekup/0.1.5", + "0.2.2": "http://registry.npmjs.org/coffeekup/0.2.2", + "0.2.3": "http://registry.npmjs.org/coffeekup/0.2.3", + "0.3.0beta": "http://registry.npmjs.org/coffeekup/0.3.0beta", + "0.3.0": "http://registry.npmjs.org/coffeekup/0.3.0", + "0.3.1": "http://registry.npmjs.org/coffeekup/0.3.1" + }, + "dist": { + "0.2.1": { + "tarball": "http://registry.npmjs.org/coffeekup/-/coffeekup-0.2.1.tgz" + }, + "0.2.0": { + "tarball": "http://registry.npmjs.org/coffeekup/-/coffeekup-0.2.0.tgz" + }, + "0.1.7": { + "tarball": "http://registry.npmjs.org/coffeekup/-/coffeekup-0.1.7.tgz" + }, + "0.1.6": { + "tarball": "http://registry.npmjs.org/coffeekup/-/coffeekup-0.1.6.tgz" + }, + "0.1.5": { + "tarball": "http://registry.npmjs.org/coffeekup/-/coffeekup-0.1.5.tgz" + }, + "0.2.2": { + "shasum": "597725f5f65f7b614822d227933c523a2325d878", + "tarball": "http://registry.npmjs.org/coffeekup/-/coffeekup-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "50917ca6a1c1adcedc0d90f2ce2f5ad1bb9c90fb", + "tarball": "http://registry.npmjs.org/coffeekup/-/coffeekup-0.2.3.tgz" + }, + "0.3.0beta": { + "shasum": "93c7b72f0794b34dbba5834b4dd14d40e43ab6c2", + "tarball": "http://registry.npmjs.org/coffeekup/-/coffeekup-0.3.0beta.tgz" + }, + "0.3.0": { + "shasum": "eee40a3b3402b49327f9895731c20b94c092aff4", + "tarball": "http://registry.npmjs.org/coffeekup/-/coffeekup-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "78912a46b81a0ed4aa8c25d92ca40b9d8b0052a9", + "tarball": "http://registry.npmjs.org/coffeekup/-/coffeekup-0.3.1.tgz" + } + }, + "keywords": [ + "template", + "view", + "coffeescript" + ], + "url": "http://registry.npmjs.org/coffeekup/" + }, + "coffeelint": { + "name": "coffeelint", + "description": "Lint your CoffeeScript", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "clutchski", + "email": "clutchski@gmail.com" + } + ], + "time": { + "modified": "2011-12-13T01:04:39.181Z", + "created": "2011-12-06T08:51:32.129Z", + "0.0.1": "2011-12-06T08:51:32.503Z", + "0.0.2": "2011-12-06T08:53:15.986Z", + "0.0.3": "2011-12-08T03:59:05.313Z", + "0.0.4": "2011-12-13T01:04:39.181Z" + }, + "author": { + "name": "Matthew Perpick", + "email": "clutchski@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/clutchski/coffeelint.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/coffeelint/0.0.1", + "0.0.2": "http://registry.npmjs.org/coffeelint/0.0.2", + "0.0.3": "http://registry.npmjs.org/coffeelint/0.0.3", + "0.0.4": "http://registry.npmjs.org/coffeelint/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "5529a1e1e207fc3213ed9ce4c294b844612e8788", + "tarball": "http://registry.npmjs.org/coffeelint/-/coffeelint-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "93b8ae7bd4243e692b81f3d3744570fe7436b4c7", + "tarball": "http://registry.npmjs.org/coffeelint/-/coffeelint-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "c87799891f93a1f18adef0b68b69d3280cc6094c", + "tarball": "http://registry.npmjs.org/coffeelint/-/coffeelint-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "5c7b0d08dfc2eeb51d88f2936847e76bf6d4c802", + "tarball": "http://registry.npmjs.org/coffeelint/-/coffeelint-0.0.4.tgz" + } + }, + "keywords": [ + "lint", + "coffeescript", + "coffee-script" + ], + "url": "http://registry.npmjs.org/coffeelint/" + }, + "coffeemaker": { + "name": "coffeemaker", + "description": "Build tools for coffeesript node.js apps", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "petrjanda", + "email": "petrjanda@me.com" + } + ], + "time": { + "modified": "2011-03-26T17:13:17.126Z", + "created": "2011-03-19T21:03:51.170Z", + "0.0.1": "2011-03-19T21:03:51.645Z", + "0.1.0": "2011-03-20T08:34:08.973Z" + }, + "author": { + "name": "Petr Janda", + "email": "petrjanda@me.com", + "url": "http://petrjanda.tumblr.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/petrjanda/coffeemaker.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/coffeemaker/0.0.1", + "0.1.0": "http://registry.npmjs.org/coffeemaker/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "e6db7f33bcb6e808126488d9b90be707e0e66da7", + "tarball": "http://registry.npmjs.org/coffeemaker/-/coffeemaker-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "0fa567bee6329d7428f36db633c7e0466fd12a2d", + "tarball": "http://registry.npmjs.org/coffeemaker/-/coffeemaker-0.1.0.tgz" + } + }, + "keywords": [ + "build", + "tools", + "watch", + "file", + "compile", + "specs", + "coffeescript" + ], + "url": "http://registry.npmjs.org/coffeemaker/" + }, + "coffeemate": { + "name": "coffeemate", + "description": "the coffee creamer!", + "dist-tags": { + "latest": "0.5.1" + }, + "maintainers": [ + { + "name": "coffeemate", + "email": "kadirpekel@gmail.com" + } + ], + "time": { + "modified": "2011-11-10T11:30:34.254Z", + "created": "2011-06-05T02:13:31.023Z", + "0.0.1": "2011-06-05T02:13:31.602Z", + "0.0.2": "2011-06-06T08:31:44.726Z", + "0.0.3": "2011-06-06T10:38:42.566Z", + "0.1.0": "2011-06-08T13:22:41.755Z", + "0.2.1": "2011-06-10T07:31:24.038Z", + "0.2.2": "2011-06-11T20:02:47.450Z", + "0.2.3": "2011-06-12T19:20:18.949Z", + "0.2.4": "2011-06-20T11:31:38.251Z", + "0.3.0": "2011-06-30T22:46:33.522Z", + "0.4.0": "2011-07-03T21:18:14.586Z", + "0.4.1": "2011-07-03T22:31:52.697Z", + "0.4.2": "2011-07-08T10:21:48.769Z", + "0.4.3": "2011-07-13T07:05:44.752Z", + "0.4.4": "2011-07-13T11:17:05.077Z", + "0.5.0": "2011-08-26T11:39:52.091Z", + "0.5.1": "2011-11-10T11:30:07.495Z" + }, + "author": { + "name": "Kadir Pekel", + "email": "kadirpekel@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/kadirpekel/coffeemate.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/coffeemate/0.0.1", + "0.0.2": "http://registry.npmjs.org/coffeemate/0.0.2", + "0.0.3": "http://registry.npmjs.org/coffeemate/0.0.3", + "0.1.0": "http://registry.npmjs.org/coffeemate/0.1.0", + "0.2.1": "http://registry.npmjs.org/coffeemate/0.2.1", + "0.2.2": "http://registry.npmjs.org/coffeemate/0.2.2", + "0.2.3": "http://registry.npmjs.org/coffeemate/0.2.3", + "0.2.4": "http://registry.npmjs.org/coffeemate/0.2.4", + "0.3.0": "http://registry.npmjs.org/coffeemate/0.3.0", + "0.4.0": "http://registry.npmjs.org/coffeemate/0.4.0", + "0.4.1": "http://registry.npmjs.org/coffeemate/0.4.1", + "0.4.2": "http://registry.npmjs.org/coffeemate/0.4.2", + "0.4.3": "http://registry.npmjs.org/coffeemate/0.4.3", + "0.4.4": "http://registry.npmjs.org/coffeemate/0.4.4", + "0.5.0": "http://registry.npmjs.org/coffeemate/0.5.0", + "0.5.1": "http://registry.npmjs.org/coffeemate/0.5.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/coffeemate/-/coffeemate-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/coffeemate/-/coffeemate-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/coffeemate/-/coffeemate-0.0.3.tgz" + }, + "0.1.0": { + "tarball": "http://registry.npmjs.org/coffeemate/-/coffeemate-0.1.0.tgz" + }, + "0.2.1": { + "tarball": "http://registry.npmjs.org/coffeemate/-/coffeemate-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "7683b37b22131165b79efaab9e5cfe71a15b8e37", + "tarball": "http://registry.npmjs.org/coffeemate/-/coffeemate-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "a7912ebfe946ac3cb3570a2dd39ec2c57f89274e", + "tarball": "http://registry.npmjs.org/coffeemate/-/coffeemate-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "e1d0f21108374633371bf97fbf18dbf467f30ad5", + "tarball": "http://registry.npmjs.org/coffeemate/-/coffeemate-0.2.4.tgz" + }, + "0.3.0": { + "shasum": "b85017c0ce7d3047e6afc2d5c16a3a64a25e46f2", + "tarball": "http://registry.npmjs.org/coffeemate/-/coffeemate-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "5632451ad714ec6fdd816a0544ab0742a5f6308e", + "tarball": "http://registry.npmjs.org/coffeemate/-/coffeemate-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "e890542219efe7bb224032618f2561fb001f2b20", + "tarball": "http://registry.npmjs.org/coffeemate/-/coffeemate-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "4b78ebe0f759ec7801f4e58651c94f1715c3761d", + "tarball": "http://registry.npmjs.org/coffeemate/-/coffeemate-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "83fc7bc518b6cd084235729a8038272ab882901b", + "tarball": "http://registry.npmjs.org/coffeemate/-/coffeemate-0.4.3.tgz" + }, + "0.4.4": { + "shasum": "b1248f06e0c730045488f962458d221900687fac", + "tarball": "http://registry.npmjs.org/coffeemate/-/coffeemate-0.4.4.tgz" + }, + "0.5.0": { + "shasum": "f94fa3300b9943099b340ab4801d578b1eac0eb3", + "tarball": "http://registry.npmjs.org/coffeemate/-/coffeemate-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "df7987e8fdb494d36951401c9bd50b3950327647", + "tarball": "http://registry.npmjs.org/coffeemate/-/coffeemate-0.5.1.tgz" + } + }, + "url": "http://registry.npmjs.org/coffeemate/" + }, + "coffeemugg": { + "name": "coffeemugg", + "description": "HTML templating with CoffeeScript.", + "dist-tags": { + "latest": "0.0.3" + }, + "readme": "CoffeeMugg\n==========\n\nCoffeeMugg is a templating engine for [node.js](http://nodejs.org) and browsers that lets you to write your HTML templates in 100% pure [CoffeeScript](http://coffeescript.org).\n\nCoffeeMugg is a branch of [CoffeeKup](https://github.com/mauricemach/coffeekup). The main difference is that instead of local tag functions, tag functions are bound to `this`.\n\nWhy CoffeeMugg?\n===============\n\n * First, a disclaimer: I can't vouch for the usefulness of this branch just yet.\n * I believe this makes it easier to create libraries of view-helper routines, in the manner of RoR ActionView.\n * CoffeeMugg is easier to grok than CoffeeKup, since it's straight up Javascript/Coffeescript without an intermediate compilation step, and local variables obey original Javascript/Coffeescript rules. If you want to create a template dynamically using function closures, why go ahead.\n * There is no compilation step, so rendering on the client may be faster.\n\nSample\n======\n\n coffeemugg.render ->\n @div ->\n @p \"I am a paragraph\"\n\nwith subroutines:\n\n # Create a new class with all the subroutines\n MyContext = CMContext.extend({\n myroutine: ->\n @p 'blah blah'\n })\n \n # Create a rendering instance\n context = new MyContext()\n context.render ->\n @div ->\n @myroutine()\n\nwith arguments:\n\n template = (div_id, contents) ->\n @div id: #div_id, ->\n for content in contents\n @div content\n\n coffeemugg.render template, , \"FRUITS\", [\"Apple\", \"Banana\", \"Raisin\"]\n\nInstallation\n============\n\n npm install coffeemugg\n\nMore\n====\n\nPlease take a look at the excellent [CoffeeScript](http://coffeescript.org) documentation for more information.\n\nSpecial thanks\n==============\n\n - [Jeremy Ashkenas](https://github.com/jashkenas), for the amazing CoffeeScript language.\n - [Maurice Machado](https://github.com/mauricemach), for CoffeeKup. Hope you're OK with this.\n", + "maintainers": [ + { + "name": "jaekwon", + "email": "jkwon.work@gmail.com" + } + ], + "time": { + "modified": "2011-12-13T02:19:59.871Z", + "created": "2011-12-07T23:14:08.278Z", + "0.0.1": "2011-12-07T23:14:09.770Z", + "0.0.2": "2011-12-11T21:36:50.334Z", + "0.0.3": "2011-12-13T02:19:59.871Z" + }, + "author": { + "name": "Jae Kwon", + "email": "jkwon.work@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/jaekwon/coffeemugg.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/coffeemugg/0.0.1", + "0.0.2": "http://registry.npmjs.org/coffeemugg/0.0.2", + "0.0.3": "http://registry.npmjs.org/coffeemugg/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "d8cdae5ee945dddb0da499d83eed45b803e60c52", + "tarball": "http://registry.npmjs.org/coffeemugg/-/coffeemugg-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "9977fe97466c424462746f5536a4fe40ce2f0252", + "tarball": "http://registry.npmjs.org/coffeemugg/-/coffeemugg-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "d271a3568381897a1acdf0a1a596bb9e69357f1d", + "tarball": "http://registry.npmjs.org/coffeemugg/-/coffeemugg-0.0.3.tgz" + } + }, + "keywords": [ + "template", + "view", + "coffeescript", + "coffeekup" + ], + "url": "http://registry.npmjs.org/coffeemugg/" + }, + "coffeepack": { + "name": "coffeepack", + "description": "An implementation of the MessagePack serialization format in pure CoffeeScript for Node.js and the browser.", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "devongovett", + "email": "devongovett@gmail.com" + } + ], + "time": { + "modified": "2011-11-09T06:07:25.994Z", + "created": "2011-08-15T17:49:51.344Z", + "0.1.0": "2011-08-15T17:49:54.386Z", + "0.1.1": "2011-10-05T21:23:59.319Z", + "0.2.0": "2011-10-26T04:48:03.221Z", + "0.2.1": "2011-10-26T06:09:26.387Z", + "0.2.2": "2011-11-09T06:07:25.994Z" + }, + "author": { + "name": "Devon Govett", + "email": "devongovett@gmail.com", + "url": "http://badassjs.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/devongovett/coffeepack.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/coffeepack/0.1.0", + "0.1.1": "http://registry.npmjs.org/coffeepack/0.1.1", + "0.2.0": "http://registry.npmjs.org/coffeepack/0.2.0", + "0.2.1": "http://registry.npmjs.org/coffeepack/0.2.1", + "0.2.2": "http://registry.npmjs.org/coffeepack/0.2.2" + }, + "dist": { + "0.1.0": { + "shasum": "cf93c9fa75c34e5b44d3b235e64f6864fe24f723", + "tarball": "http://registry.npmjs.org/coffeepack/-/coffeepack-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "e9fdf8c2832eb51b94c87a15cac00ccd87bed830", + "tarball": "http://registry.npmjs.org/coffeepack/-/coffeepack-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "a4391e85968b06246a04912f89db569751d0995d", + "tarball": "http://registry.npmjs.org/coffeepack/-/coffeepack-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "9dd28778f6ba055580163f41c8db12a08212272d", + "tarball": "http://registry.npmjs.org/coffeepack/-/coffeepack-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "4a26836fbb258e3b367466ea3ec4858138251c50", + "tarball": "http://registry.npmjs.org/coffeepack/-/coffeepack-0.2.2.tgz" + } + }, + "keywords": [ + "msgpack", + "messagepack" + ], + "url": "http://registry.npmjs.org/coffeepack/" + }, + "coffeeq": { + "name": "coffeeq", + "description": "Redis backed node.js queue implemented in CoffeeScript", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "pcrawfor", + "email": "paul@cometcoast.com" + } + ], + "time": { + "modified": "2011-09-16T14:01:27.108Z", + "created": "2011-05-17T20:26:39.512Z", + "0.0.1": "2011-05-17T20:26:39.659Z", + "0.0.2": "2011-05-17T20:34:12.110Z", + "0.0.3": "2011-05-17T21:00:43.360Z", + "0.0.4": "2011-09-16T14:01:27.108Z" + }, + "author": { + "name": "Paul Crawford", + "email": "paul@cometcoast.com", + "url": "http://cometcoast.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/pcrawfor/coffeeq.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/coffeeq/0.0.1", + "0.0.2": "http://registry.npmjs.org/coffeeq/0.0.2", + "0.0.3": "http://registry.npmjs.org/coffeeq/0.0.3", + "0.0.4": "http://registry.npmjs.org/coffeeq/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "002c49131fdcef0ac0e9cf51835452aceac0732e", + "tarball": "http://registry.npmjs.org/coffeeq/-/coffeeq-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "bc6fc2e9ebe6632353f9aa6db9018361f8e2ba0b", + "tarball": "http://registry.npmjs.org/coffeeq/-/coffeeq-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "814110c28c5e8bc0c7ff24e048c63fd9ce4800cd", + "tarball": "http://registry.npmjs.org/coffeeq/-/coffeeq-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "cb93bdbcec4ce0fc5c922a37f30f9b030c3f2803", + "tarball": "http://registry.npmjs.org/coffeeq/-/coffeeq-0.0.4.tgz" + } + }, + "keywords": [ + "redis", + "queue", + "coffee script", + "coffeeq" + ], + "url": "http://registry.npmjs.org/coffeeq/" + }, + "coffeerize": { + "name": "coffeerize", + "description": "Coffeerize a folder. Convert a javascript folder to a coffeescript folder.", + "dist-tags": { + "latest": "0.0.8" + }, + "maintainers": [ + { + "name": "steerapi", + "email": "steerapi@gmail.com" + } + ], + "time": { + "modified": "2011-11-10T12:46:13.925Z", + "created": "2011-10-29T16:47:06.182Z", + "0.0.1": "2011-10-29T19:41:09.965Z", + "0.0.2": "2011-10-29T20:30:47.235Z", + "0.0.3": "2011-11-10T10:30:45.661Z", + "0.0.4": "2011-11-10T10:34:54.509Z", + "0.0.5": "2011-11-10T12:26:50.406Z", + "0.0.6": "2011-11-10T12:35:03.558Z", + "0.0.7": "2011-11-10T12:40:31.105Z", + "0.0.8": "2011-11-10T12:46:13.925Z" + }, + "author": { + "name": "Surat Teerapittayanon" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/coffeerize/0.0.1", + "0.0.2": "http://registry.npmjs.org/coffeerize/0.0.2", + "0.0.3": "http://registry.npmjs.org/coffeerize/0.0.3", + "0.0.4": "http://registry.npmjs.org/coffeerize/0.0.4", + "0.0.5": "http://registry.npmjs.org/coffeerize/0.0.5", + "0.0.6": "http://registry.npmjs.org/coffeerize/0.0.6", + "0.0.7": "http://registry.npmjs.org/coffeerize/0.0.7", + "0.0.8": "http://registry.npmjs.org/coffeerize/0.0.8" + }, + "dist": { + "0.0.1": { + "shasum": "acce7cf9512238132eef21e8aa6320c8f5631293", + "tarball": "http://registry.npmjs.org/coffeerize/-/coffeerize-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "0b019b7886148da8a958c8ca689b05cdbc4a5cfb", + "tarball": "http://registry.npmjs.org/coffeerize/-/coffeerize-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "cd7ab521d91fbd5c293deaff7f50789ed4cf9b58", + "tarball": "http://registry.npmjs.org/coffeerize/-/coffeerize-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "ef14670bfdf06a45932a948217819a58b5ecd599", + "tarball": "http://registry.npmjs.org/coffeerize/-/coffeerize-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "a15a5503967745c391652ed21ae87142df7533b3", + "tarball": "http://registry.npmjs.org/coffeerize/-/coffeerize-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "1dcc5dee3fc64c2b42838162a921974ae8991c8b", + "tarball": "http://registry.npmjs.org/coffeerize/-/coffeerize-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "4a30a8f12b2b19519579e1bf82f2432da3799087", + "tarball": "http://registry.npmjs.org/coffeerize/-/coffeerize-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "570f9e2d427acae88e32c11fe437d70b8b5e2b02", + "tarball": "http://registry.npmjs.org/coffeerize/-/coffeerize-0.0.8.tgz" + } + }, + "url": "http://registry.npmjs.org/coffeerize/" + }, + "coffeescript-growl": { + "name": "coffeescript-growl", + "description": "Growl notifications for the CoffeeScript Compiler", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "wesbos", + "email": "wesbos@gmail.com" + } + ], + "time": { + "modified": "2011-07-19T18:07:57.247Z", + "created": "2011-07-19T06:01:50.777Z", + "0.1.0": "2011-07-19T06:01:51.027Z", + "0.1.1": "2011-07-19T06:15:09.529Z", + "0.1.2": "2011-07-19T18:07:57.247Z" + }, + "author": { + "name": "Wes Bos", + "email": "wesbos@gmail.com", + "url": "http://wesbos.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/wesbos/coffeescript-growl.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/coffeescript-growl/0.1.0", + "0.1.1": "http://registry.npmjs.org/coffeescript-growl/0.1.1", + "0.1.2": "http://registry.npmjs.org/coffeescript-growl/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "f615c08e26bd7ede378e5af4ccd1addc4969c688", + "tarball": "http://registry.npmjs.org/coffeescript-growl/-/coffeescript-growl-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "f662a4738b037ed79a4dd0e08f4d2240c34717af", + "tarball": "http://registry.npmjs.org/coffeescript-growl/-/coffeescript-growl-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "f32bd1834a0c123cb87b4ea6259ec002695d4edf", + "tarball": "http://registry.npmjs.org/coffeescript-growl/-/coffeescript-growl-0.1.2.tgz" + } + }, + "keywords": [ + "coffeescript", + "growl", + "notifications" + ], + "url": "http://registry.npmjs.org/coffeescript-growl/" + }, + "coffeescript-notify": { + "name": "coffeescript-notify", + "description": "Coffee-Script notify tool for coffee based on the coffeescript-growl tool", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "bdryanovski", + "email": "bozhidar.dryanovski@gmail.com" + } + ], + "time": { + "modified": "2011-09-17T14:34:17.499Z", + "created": "2011-09-17T14:34:15.617Z", + "0.1.0": "2011-09-17T14:34:17.499Z" + }, + "author": { + "name": "Bozhidar Dryanovski", + "email": "bozhidar.dryanovski@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/bdryanovski/coffeescript-notify.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/coffeescript-notify/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "959c0d4d2793fc503949173071d98e5fb4150627", + "tarball": "http://registry.npmjs.org/coffeescript-notify/-/coffeescript-notify-0.1.0.tgz" + } + }, + "keywords": [ + "coffeescript", + "notify-send", + "notifications", + "ubuntu" + ], + "url": "http://registry.npmjs.org/coffeescript-notify/" + }, + "coffeesurgeon": { + "name": "coffeesurgeon", + "description": "Static {analysis,slicing,dicing} of your .coffee", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "andrewschaaf", + "email": "andrew@andrewschaaf.com" + } + ], + "time": { + "modified": "2011-11-03T15:00:57.158Z", + "created": "2011-11-01T22:33:58.181Z", + "0.0.1": "2011-11-01T22:33:59.813Z", + "0.0.2": "2011-11-02T20:59:04.279Z", + "0.0.3": "2011-11-03T15:00:57.158Z" + }, + "author": { + "name": "Andrew Schaaf", + "email": "andrew@andrewschaaf.com", + "url": "http://andrewschaaf.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/andrewschaaf/coffeesurgeon.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/coffeesurgeon/0.0.1", + "0.0.2": "http://registry.npmjs.org/coffeesurgeon/0.0.2", + "0.0.3": "http://registry.npmjs.org/coffeesurgeon/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "42ea3bf1ef099760dc04370ec8cd19947b398a65", + "tarball": "http://registry.npmjs.org/coffeesurgeon/-/coffeesurgeon-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "4df6cc864c2712d8dae84b9d413d8954d350037a", + "tarball": "http://registry.npmjs.org/coffeesurgeon/-/coffeesurgeon-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "c3d28c6497898ae6c16f4a20a2d0305f82277cf8", + "tarball": "http://registry.npmjs.org/coffeesurgeon/-/coffeesurgeon-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/coffeesurgeon/" + }, + "coffin": { + "name": "coffin", + "description": "Coffee dsl for aws cloudformation", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "chrisfjones", + "email": "chris.f.jones@gmail.com" + } + ], + "time": { + "modified": "2011-12-08T00:16:47.302Z", + "created": "2011-11-28T19:48:10.284Z", + "0.0.1": "2011-11-28T19:48:12.348Z", + "0.0.2": "2011-11-29T22:47:01.525Z", + "0.0.3": "2011-12-06T20:40:45.848Z", + "0.0.4": "2011-12-06T23:07:13.961Z", + "0.0.5": "2011-12-08T00:16:47.302Z" + }, + "author": { + "name": "Chris Jones" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/coffin/0.0.1", + "0.0.2": "http://registry.npmjs.org/coffin/0.0.2", + "0.0.3": "http://registry.npmjs.org/coffin/0.0.3", + "0.0.4": "http://registry.npmjs.org/coffin/0.0.4", + "0.0.5": "http://registry.npmjs.org/coffin/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "ae76b5c0f7b64756d76f052ccc444ce1acb67a48", + "tarball": "http://registry.npmjs.org/coffin/-/coffin-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "b876a2fd27c4683f9865eaf01da42b77f8aa9ad7", + "tarball": "http://registry.npmjs.org/coffin/-/coffin-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "f517d6791ad2ae33574cd233ee92d4cc15c9c96c", + "tarball": "http://registry.npmjs.org/coffin/-/coffin-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "b204119ffa0ac6652dca63f43b87a0d5aa25e6ab", + "tarball": "http://registry.npmjs.org/coffin/-/coffin-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "1a93c350a126c1afc9cdc2a6c8c3e2951016a6af", + "tarball": "http://registry.npmjs.org/coffin/-/coffin-0.0.5.tgz" + } + }, + "keywords": [ + "coffeescript", + "coffee-script", + "aws", + "cloudformation" + ], + "url": "http://registry.npmjs.org/coffin/" + }, + "coke": { + "name": "coke", + "description": "A light weight MVC framework base on express", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "# coke\n\nA light weight MVC framework base on [express](http://expressjs.com/). *NOTE : It is still under heavy development, you might not want to use it for now.\n\n\n\n## Description\n\n `coke` does not aim to be the `rails` for `node.js`. It does not add magic to `express`, instead it provides a better format for your project. It makes you easier to manage your code.\n\n\n\n## Requires\n\n - node >= 0.4.x\n - java jre6 for [YUI-compressor](http://developer.yahoo.com/yui/compressor/) which is used on packing assets\n\n\n\n## Installation\n\n> Ubuntu install java jre6\n\n $ sudo apt-get install python-software-properties\n $ sudo add-apt-repository ppa:ferramroberto/java\n $ sudo apt-get update\n $ sudo apt-get install sun-java6-jre\n\n> Install `coke`\n\n npm install coke\n\n\n\n## TODOs\n\n- Adding more docs\n\n\n## License\n\n(The MIT License)\n\nCopyright (c) 2011 dreamerslab <ben@dreamerslab.com>\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "maintainers": [ + { + "name": "dreamerslab", + "email": "ben@dreamerslab.com" + } + ], + "time": { + "modified": "2011-12-06T05:16:27.238Z", + "created": "2011-12-06T05:16:23.025Z", + "0.0.1": "2011-12-06T05:16:27.238Z" + }, + "author": { + "name": "dreamerslab", + "email": "ben@dreamerslab.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dreamerslab/coke.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/coke/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "aecfe282824b13797d430da12dfae1e68bb81aa2", + "tarball": "http://registry.npmjs.org/coke/-/coke-0.0.1.tgz" + } + }, + "keywords": [ + "mvc", + "express", + "express mvc", + "connect", + "coke" + ], + "url": "http://registry.npmjs.org/coke/" + }, + "collectd": { + "name": "collectd", + "description": "A NodeJS module for receiving and parsing the CollectD binary protocol", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "slyons", + "email": "scottalyons@gmail.com" + } + ], + "time": { + "modified": "2011-09-08T18:24:13.186Z", + "created": "2011-09-07T15:27:09.760Z", + "0.0.0": "2011-09-07T15:27:10.333Z", + "0.0.1": "2011-09-08T18:24:13.186Z" + }, + "author": { + "name": "Scott Lyons", + "email": "scottalyons@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/slyons/node-collectd.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/collectd/0.0.0", + "0.0.1": "http://registry.npmjs.org/collectd/0.0.1" + }, + "dist": { + "0.0.0": { + "shasum": "54a638b6069afe816e317fb7b3900ceaaee1df60", + "tarball": "http://registry.npmjs.org/collectd/-/collectd-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "3b41c17ebe842217b4c8c5fc1e0993066f1b0630", + "tarball": "http://registry.npmjs.org/collectd/-/collectd-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/collectd/" + }, + "collection": { + "name": "collection", + "description": "Arrays on steriods.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "felixge", + "email": "felix@debuggable.com" + } + ], + "time": { + "modified": "2011-02-20T17:22:49.407Z", + "created": "2011-02-20T17:22:48.944Z", + "0.0.1": "2011-02-20T17:22:49.407Z" + }, + "author": { + "name": "Felix Geisendörfer", + "email": "felix@debuggable.com", + "url": "http://debuggable.com/" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/collection/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "9d1c636213b2f5d4eee7653dea822fa0d55dc4df", + "tarball": "http://registry.npmjs.org/collection/-/collection-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/collection/" + }, + "collection_functions": { + "name": "collection_functions", + "description": "Provides typical collection/enumerable functions (think underscore.js) - but it's agnostic about storage and iteration details.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "sconover", + "email": "sconover@gmail.com" + } + ], + "time": { + "modified": "2011-02-28T01:28:45.475Z", + "created": "2011-02-28T01:28:45.141Z", + "0.0.1": "2011-02-28T01:28:45.475Z" + }, + "author": { + "name": "Steve Conover", + "email": "sconover@gmail.com", + "url": "https://github.com/sconover" + }, + "repository": { + "type": "git", + "url": "https://github.com/sconover/collection_functions.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/collection_functions/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "8e3b4bf034b9b0fcc798e25872df457e5a46eaff", + "tarball": "http://registry.npmjs.org/collection_functions/-/collection_functions-0.0.1.tgz" + } + }, + "keywords": [ + "collection", + "underscore", + "array", + "enumerable", + "enumerator", + "iterator" + ], + "url": "http://registry.npmjs.org/collection_functions/" + }, + "collections": { + "name": "collections", + "description": "A utility for representing and manipulating collections for nodejs.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "lmsp", + "email": "sijie0413@gmail.com" + } + ], + "time": { + "modified": "2011-03-17T13:01:00.201Z", + "created": "2011-03-17T13:00:59.072Z", + "0.0.1": "2011-03-17T13:01:00.201Z" + }, + "author": { + "name": "Sijie Guo", + "email": "sijie0413@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/hustlmsp/node-collection.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/collections/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "5977bdc71b738cb038867b72d206f498e747559b", + "tarball": "http://registry.npmjs.org/collections/-/collections-0.0.1.tgz" + } + }, + "keywords": [ + "collection", + "TreeMap", + "HashMap" + ], + "url": "http://registry.npmjs.org/collections/" + }, + "color": { + "name": "color", + "description": "Color conversion and manipulation with CSS string support", + "dist-tags": { + "latest": "0.4.1" + }, + "maintainers": [ + { + "name": "harth", + "email": "fayearthur@gmail.com" + } + ], + "time": { + "modified": "2011-10-16T17:13:33.102Z", + "created": "2011-06-23T03:09:53.739Z", + "0.1.0": "2011-06-23T03:09:54.511Z", + "0.1.1": "2011-06-23T16:42:17.743Z", + "0.1.2": "2011-06-24T02:35:44.115Z", + "0.1.3": "2011-06-27T05:33:12.820Z", + "0.2.0": "2011-06-27T20:10:51.343Z", + "0.3.0": "2011-06-28T02:17:14.939Z", + "0.4.0": "2011-08-31T02:00:45.377Z", + "0.4.1": "2011-10-16T17:13:33.102Z" + }, + "author": { + "name": "Heather Arthur", + "email": "fayearthur@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/harthur/color.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/color/0.1.0", + "0.1.1": "http://registry.npmjs.org/color/0.1.1", + "0.1.2": "http://registry.npmjs.org/color/0.1.2", + "0.1.3": "http://registry.npmjs.org/color/0.1.3", + "0.2.0": "http://registry.npmjs.org/color/0.2.0", + "0.3.0": "http://registry.npmjs.org/color/0.3.0", + "0.4.0": "http://registry.npmjs.org/color/0.4.0", + "0.4.1": "http://registry.npmjs.org/color/0.4.1" + }, + "dist": { + "0.1.0": { + "shasum": "fc7a2b0a9d29888ccad3ddb90d720da7b2157af3", + "tarball": "http://registry.npmjs.org/color/-/color-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "e4cbdb831a7c3d8956e17c40e0601bf3a54aba8c", + "tarball": "http://registry.npmjs.org/color/-/color-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "5441638bff8b3198e4e4c431f72bd6b92638df25", + "tarball": "http://registry.npmjs.org/color/-/color-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "a8f665a758fa1bac29b3a394071232d2d2b81d13", + "tarball": "http://registry.npmjs.org/color/-/color-0.1.3.tgz" + }, + "0.2.0": { + "shasum": "4e53a818e2dcf8df64d24b3fe778060464b17b07", + "tarball": "http://registry.npmjs.org/color/-/color-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "b420ce4a8d9bd51be18ed28d0d1f642abaff4b00", + "tarball": "http://registry.npmjs.org/color/-/color-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "fa4f5726cbc4c89e834d54a86959d66a48c44919", + "tarball": "http://registry.npmjs.org/color/-/color-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "54675771e9aeaf7d9034a0af05e4006e3736b375", + "tarball": "http://registry.npmjs.org/color/-/color-0.4.1.tgz" + } + }, + "keywords": [ + "color", + "colour", + "css" + ], + "url": "http://registry.npmjs.org/color/" + }, + "color-convert": { + "name": "color-convert", + "description": "Plain color conversion functions", + "dist-tags": { + "latest": "0.3.1" + }, + "maintainers": [ + { + "name": "harth", + "email": "fayearthur@gmail.com" + } + ], + "time": { + "modified": "2011-10-25T19:06:25.763Z", + "created": "2011-06-10T04:11:24.300Z", + "0.1.0": "2011-06-10T04:11:24.939Z", + "0.2.0": "2011-06-16T17:17:49.090Z", + "0.2.1": "2011-06-23T03:04:46.838Z", + "0.3.0": "2011-10-02T00:52:31.161Z", + "0.3.1": "2011-10-25T19:06:25.763Z" + }, + "author": { + "name": "Heather Arthur", + "email": "fayearthur@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/harthur/color-convert.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/color-convert/0.1.0", + "0.2.0": "http://registry.npmjs.org/color-convert/0.2.0", + "0.2.1": "http://registry.npmjs.org/color-convert/0.2.1", + "0.3.0": "http://registry.npmjs.org/color-convert/0.3.0", + "0.3.1": "http://registry.npmjs.org/color-convert/0.3.1" + }, + "dist": { + "0.1.0": { + "shasum": "1d55fd8784288d323a6fcc31077f79b632a12ec9", + "tarball": "http://registry.npmjs.org/color-convert/-/color-convert-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "004174fa511dac015ef29a796a97ab7cf095cea1", + "tarball": "http://registry.npmjs.org/color-convert/-/color-convert-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "363cab23c94b31a0d64db71048b8c6a940f8c68c", + "tarball": "http://registry.npmjs.org/color-convert/-/color-convert-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "b80a94e5791179ebe70b75284d95c6d43ad1367e", + "tarball": "http://registry.npmjs.org/color-convert/-/color-convert-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "859d892b81dc849eb95cefea35084072cb362c68", + "tarball": "http://registry.npmjs.org/color-convert/-/color-convert-0.3.1.tgz" + } + }, + "keywords": [ + "color", + "colour", + "rgb" + ], + "url": "http://registry.npmjs.org/color-convert/" + }, + "color-string": { + "name": "color-string", + "description": "Parser and generator for CSS color strings", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "harth", + "email": "fayearthur@gmail.com" + } + ], + "time": { + "modified": "2011-06-23T03:04:06.835Z", + "created": "2011-06-19T19:01:39.871Z", + "0.1.0": "2011-06-19T19:01:40.532Z", + "0.1.1": "2011-06-23T03:04:06.835Z" + }, + "author": { + "name": "Heather Arthur", + "email": "fayearthur@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/harthur/color-string.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/color-string/0.1.0", + "0.1.1": "http://registry.npmjs.org/color-string/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "668d0b000b7f9303ad1f91a85b17d0d6778fcbde", + "tarball": "http://registry.npmjs.org/color-string/-/color-string-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "3ea173783bc0603d62c0d1a42a8f876c884df492", + "tarball": "http://registry.npmjs.org/color-string/-/color-string-0.1.1.tgz" + } + }, + "keywords": [ + "color", + "colour", + "rgb", + "css" + ], + "url": "http://registry.npmjs.org/color-string/" + }, + "colorhash": { + "name": "colorhash", + "description": "Make blue midnight color hashes from the full visible spectrum", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": null, + "maintainers": [ + { + "name": "thejh", + "email": "jannhorn@gmail.com" + } + ], + "time": { + "modified": "2011-11-13T10:51:46.946Z", + "created": "2011-11-13T10:51:45.082Z", + "0.1.0": "2011-11-13T10:51:46.946Z" + }, + "author": { + "name": "Jann Horn", + "email": "jannhorn@googlemail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/thejh/node-colorhash.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/colorhash/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "05bf4b7e8d0ca314a434b7b1bb5400f0d94a0692", + "tarball": "http://registry.npmjs.org/colorhash/-/colorhash-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/colorhash/" + }, + "colorize": { + "name": "colorize", + "description": "An expressive interface for ANSI colored strings and terminal output.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "mattpat", + "email": "matt@mattpatenaude.com" + } + ], + "time": { + "modified": "2011-04-01T02:05:53.650Z", + "created": "2011-04-01T02:05:53.221Z", + "0.1.0": "2011-04-01T02:05:53.650Z" + }, + "author": { + "name": "Matt Patenaude", + "email": "matt@mattpatenaude.com", + "url": "http://mattpatenaude.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mattpat/colorize.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/colorize/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "9a567428fc581ca2fe0baf10aec7c7969150608a", + "tarball": "http://registry.npmjs.org/colorize/-/colorize-0.1.0.tgz" + } + }, + "keywords": [ + "color", + "ansi", + "terminal" + ], + "url": "http://registry.npmjs.org/colorize/" + }, + "colorlog": { + "name": "colorlog", + "description": "Color logger with streaming reader", + "dist-tags": { + "latest": "0.1.1" + }, + "readme": "\n# Colorlog.js\n \n Light-weight color logging for [NodeJS](http://nodejs.org), including a \n streaming log reader.\n\n## Installation\n\n $ npm install colorlog\n\n## Example\n\nColorlog level defaults to DEBUG however here we can specify another level, for example WARNING, and just watch logs levels are >= from WARNING.\n\n var Colorlog = require('colorlog')\n , colorlog = new Colorlog('debug');\n\n colorlog.debug('debug message');\n colorlog.info('info message');\n colorlog.error('failed to something');\n\n\n Also possible to use `%s` much like `console.log()` to pass arguments:\n\n colorlog.info('hello from user %s.', user.email);\n\n## Screenshot\n\n![colorlog screenshot](https://img.skitch.com/20111117-1cmfnnd985ewys6kcy994hk6sj.jpg)\n\n## Colorlog Levels\n\n - 0 EMERGENCY\n - 1 ALERT\n - 2 CRITICAL\n - 3 ERROR\n - 4 WARNING\n - 5 NOTICE\n - 6 INFO\n - 7 DEBUG\n\n\n## License \n\n(The MIT License)\n\nCopyright (c) 2011 Andriy Bazyuta <andriy.bazyuta@gmail.com>\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n", + "maintainers": [ + { + "name": "andriy", + "email": "andriy.bazyuta@gmail.com" + } + ], + "time": { + "modified": "2011-11-18T00:26:08.346Z", + "created": "2011-11-18T00:26:06.355Z", + "0.1.1": "2011-11-18T00:26:08.346Z" + }, + "author": { + "name": "Andriy Bazyuta", + "email": "andriy.bazyuta@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/tih-ra/colorlog.js.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/colorlog/0.1.1" + }, + "dist": { + "0.1.1": { + "shasum": "552375de4e30f7d77c4d3f17040f1280cdf537df", + "tarball": "http://registry.npmjs.org/colorlog/-/colorlog-0.1.1.tgz" + } + }, + "keywords": [ + "log", + "logger", + "color" + ], + "url": "http://registry.npmjs.org/colorlog/" + }, + "colors": { + "name": "colors", + "description": "get colors in your node.js console like what", + "dist-tags": { + "latest": "0.6.0-1" + }, + "maintainers": [ + { + "name": "marak", + "email": "marak.squires@gmail.com" + } + ], + "author": { + "name": "Marak Squires" + }, + "repository": { + "type": "git", + "url": "git://github.com/Marak/colors.js.git" + }, + "time": { + "modified": "2011-12-09T12:35:05.501Z", + "created": "2011-03-15T10:12:18.245Z", + "0.3.0": "2011-03-15T10:12:18.245Z", + "0.5.0": "2011-03-15T10:12:18.245Z", + "0.5.1": "2011-09-25T13:04:44.328Z", + "0.6.0": "2011-12-09T11:32:57.649Z", + "0.6.0-1": "2011-12-09T12:35:05.501Z" + }, + "users": { + "avianflu": true, + "pid": true + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/colors/0.3.0", + "0.5.0": "http://registry.npmjs.org/colors/0.5.0", + "0.5.1": "http://registry.npmjs.org/colors/0.5.1", + "0.6.0": "http://registry.npmjs.org/colors/0.6.0", + "0.6.0-1": "http://registry.npmjs.org/colors/0.6.0-1" + }, + "dist": { + "0.3.0": { + "tarball": "http://packages:5984/colors/-/colors-0.3.0.tgz" + }, + "0.5.0": { + "shasum": "ac3ed125fcd8ccbb939b796117bf05d5f15c3e67", + "tarball": "http://registry.npmjs.org/colors/-/colors-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "7d0023eaeb154e8ee9fce75dcb923d0ed1667774", + "tarball": "http://registry.npmjs.org/colors/-/colors-0.5.1.tgz" + }, + "0.6.0": { + "shasum": "07ec10d8ac4f5a2e78f8d820e3e7832b3b463cad", + "tarball": "http://registry.npmjs.org/colors/-/colors-0.6.0.tgz" + }, + "0.6.0-1": { + "shasum": "6dbb68ceb8bc60f2b313dcc5ce1599f06d19e67a", + "tarball": "http://registry.npmjs.org/colors/-/colors-0.6.0-1.tgz" + } + }, + "url": "http://registry.npmjs.org/colors/" + }, + "colorspaces": { + "name": "colorspaces", + "description": "A tiny library for manipulating colors", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "boronine", + "email": "alexei.boronine@gmail.com" + } + ], + "time": { + "modified": "2011-09-29T04:52:06.672Z", + "created": "2011-09-29T04:51:11.336Z", + "0.0.1": "2011-09-29T04:52:06.672Z" + }, + "author": { + "name": "Alexei Boronine", + "email": "alexei.boronine@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/boronine/colorspaces.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/colorspaces/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "a21560fdca73fccf4d3a415277641bc083664974", + "tarball": "http://registry.npmjs.org/colorspaces/-/colorspaces-0.0.1.tgz" + } + }, + "keywords": [ + "color", + "color space", + "CIE", + "RGB" + ], + "url": "http://registry.npmjs.org/colorspaces/" + }, + "colour-extractor": { + "name": "colour-extractor", + "description": "Extract colour palettes from images", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "josip", + "email": "josip@jlx.cc" + } + ], + "time": { + "modified": "2011-03-21T00:27:55.380Z", + "created": "2011-03-21T00:27:54.826Z", + "0.1.0": "2011-03-21T00:27:55.380Z" + }, + "author": { + "name": "Josip Lisec", + "email": "josip@jlx.cc", + "url": "http://jlx.cc" + }, + "repository": { + "type": "git", + "url": "git://github.com/josip/node-colour-extractor.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/colour-extractor/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "a38bb885b68704cb52f7d011eeeba71f33651752", + "tarball": "http://registry.npmjs.org/colour-extractor/-/colour-extractor-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/colour-extractor/" + }, + "coloured": { + "name": "coloured", + "description": "Pretty colours in your terminal.", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "gf3", + "email": "gianni@runlevel6.org" + } + ], + "author": { + "name": "Gianni Chiappetta", + "email": "gianni@runlevel6.org", + "url": "http://gf3.ca" + }, + "repository": { + "type": "git", + "url": "https://gf3@github.com/gf3/coloured.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/coloured/0.1.0", + "0.2.0": "http://registry.npmjs.org/coloured/0.2.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/coloured/-/coloured-0.1.0.tgz" + }, + "0.2.0": { + "tarball": "http://packages:5984/coloured/-/coloured-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/coloured/" + }, + "coloured-log": { + "name": "coloured-log", + "description": "Combines \"coloured\" and \"log.js\" for super simple pretty logging.", + "dist-tags": { + "latest": "0.9.7" + }, + "maintainers": [ + { + "name": "bentruyman", + "email": "bentruyman@gmail.com" + } + ], + "author": { + "name": "Ben Truyman", + "email": "bentruyman@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/bentruyman/coloured-log.git" + }, + "time": { + "modified": "2011-07-08T14:13:33.279Z", + "created": "2011-05-31T23:34:42.451Z", + "0.9.3": "2011-05-31T23:34:42.451Z", + "0.9.4": "2011-05-31T23:34:42.451Z", + "0.9.5": "2011-05-31T23:34:42.451Z", + "0.9.6": "2011-06-01T00:02:32.960Z", + "0.9.7": "2011-07-08T14:13:33.279Z" + }, + "versions": { + "0.9.3": "http://registry.npmjs.org/coloured-log/0.9.3", + "0.9.4": "http://registry.npmjs.org/coloured-log/0.9.4", + "0.9.5": "http://registry.npmjs.org/coloured-log/0.9.5", + "0.9.6": "http://registry.npmjs.org/coloured-log/0.9.6", + "0.9.7": "http://registry.npmjs.org/coloured-log/0.9.7" + }, + "dist": { + "0.9.3": { + "tarball": "http://packages:5984/coloured-log/-/coloured-log-0.9.3.tgz" + }, + "0.9.4": { + "tarball": "http://packages:5984/coloured-log/-/coloured-log-0.9.4.tgz" + }, + "0.9.5": { + "shasum": "3323a4726dc4ffe7e3174bb4cdc1c4b7dbc6f8b9", + "tarball": "http://registry.npmjs.org/coloured-log/-/coloured-log-0.9.5.tgz" + }, + "0.9.6": { + "shasum": "a1a0ab150bdc48b065f2a43a919602b390d01b65", + "tarball": "http://registry.npmjs.org/coloured-log/-/coloured-log-0.9.6.tgz" + }, + "0.9.7": { + "shasum": "e12089da554289b4847c482e5b138971e4f4d41f", + "tarball": "http://registry.npmjs.org/coloured-log/-/coloured-log-0.9.7.tgz" + } + }, + "keywords": [ + "coloured", + "log", + "logger" + ], + "url": "http://registry.npmjs.org/coloured-log/" + }, + "comb": { + "name": "comb", + "description": "A framework for node", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "damartin", + "email": "doug.martin@pollenware.com" + } + ], + "time": { + "modified": "2011-11-18T07:48:23.589Z", + "created": "2011-06-21T11:52:04.727Z", + "0.0.2": "2011-06-21T11:52:05.133Z", + "0.0.3": "2011-06-23T21:54:51.022Z", + "0.0.4": "2011-10-25T18:21:01.276Z", + "0.0.5": "2011-11-18T07:48:23.589Z" + }, + "author": { + "name": "Pollenware", + "url": "http://pollenware.github.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:Pollen/comb.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/comb/0.0.2", + "0.0.3": "http://registry.npmjs.org/comb/0.0.3", + "0.0.4": "http://registry.npmjs.org/comb/0.0.4", + "0.0.5": "http://registry.npmjs.org/comb/0.0.5" + }, + "dist": { + "0.0.2": { + "shasum": "abf4b755a65e625a9df734d240b722662cc408e9", + "tarball": "http://registry.npmjs.org/comb/-/comb-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "2a7f4e03d9f8ea98b156f34d645c2be8ccc4c282", + "tarball": "http://registry.npmjs.org/comb/-/comb-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "0d5aa4376f4658c99a3a6cbe67e2735643827679", + "tarball": "http://registry.npmjs.org/comb/-/comb-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "d92550bff24c86ff5bb0c3df8640a21b9406b376", + "tarball": "http://registry.npmjs.org/comb/-/comb-0.0.5.tgz" + } + }, + "keywords": [ + "OO", + "Object Oriented", + "Collections", + "Tree", + "HashTable", + "Pool", + "Logging", + "Promise", + "Promises" + ], + "url": "http://registry.npmjs.org/comb/" + }, + "combine": { + "name": "combine", + "description": "JavaScript combine and CSS combine", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "flashsoft", + "email": "babyworld@gmail.com" + } + ], + "time": { + "modified": "2011-05-31T10:20:08.402Z", + "created": "2011-04-19T02:07:13.836Z", + "0.1.0": "2011-04-19T02:07:14.574Z", + "0.1.1": "2011-04-19T02:21:47.248Z", + "0.1.2": "2011-04-19T02:30:45.117Z", + "0.1.3": "2011-05-31T10:10:11.604Z", + "0.1.4": "2011-05-31T10:20:08.402Z" + }, + "author": { + "name": "FlashSoft", + "email": "babyworld@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/FlashSoft/combine.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/combine/0.1.0", + "0.1.1": "http://registry.npmjs.org/combine/0.1.1", + "0.1.2": "http://registry.npmjs.org/combine/0.1.2", + "0.1.3": "http://registry.npmjs.org/combine/0.1.3", + "0.1.4": "http://registry.npmjs.org/combine/0.1.4" + }, + "dist": { + "0.1.0": { + "shasum": "db7d0d61f05b9d48d4939794e049d694167a9e75", + "tarball": "http://registry.npmjs.org/combine/-/combine-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "7d9b66f82aeb356f60ae9382d5e1cd72e6749940", + "tarball": "http://registry.npmjs.org/combine/-/combine-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "83ad3d2146dffa8bc394d1f72e7b7818b61775e2", + "tarball": "http://registry.npmjs.org/combine/-/combine-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "c050662f459b79fc86cb72ffa66928ca4e4bf44c", + "tarball": "http://registry.npmjs.org/combine/-/combine-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "c1a23db416623ffa5fdcd6711695ce1511c91351", + "tarball": "http://registry.npmjs.org/combine/-/combine-0.1.4.tgz" + } + }, + "keywords": [ + "combine", + "dev" + ], + "url": "http://registry.npmjs.org/combine/" + }, + "combined-stream": { + "name": "combined-stream", + "description": "A stream that emits multiple other streams one after another.", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "felixge", + "email": "felix@debuggable.com" + } + ], + "time": { + "modified": "2011-05-28T13:49:43.181Z", + "created": "2011-05-24T06:36:14.531Z", + "0.0.0": "2011-05-24T06:36:15.190Z", + "0.0.1": "2011-05-24T09:46:38.486Z", + "0.0.6": "2011-05-27T13:43:57.926Z", + "0.0.2": "2011-05-27T13:46:53.900Z", + "0.0.3": "2011-05-28T13:49:43.181Z" + }, + "author": { + "name": "Felix Geisendörfer", + "email": "felix@debuggable.com", + "url": "http://debuggable.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/felixge/node-combined-stream.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/combined-stream/0.0.0", + "0.0.1": "http://registry.npmjs.org/combined-stream/0.0.1", + "0.0.2": "http://registry.npmjs.org/combined-stream/0.0.2", + "0.0.3": "http://registry.npmjs.org/combined-stream/0.0.3" + }, + "dist": { + "0.0.0": { + "shasum": "45550d8a25ee3b42de817cf675690732240e45d7", + "tarball": "http://registry.npmjs.org/combined-stream/-/combined-stream-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "dff7a316813a9ec58ef03bde5c1fc7133a35f944", + "tarball": "http://registry.npmjs.org/combined-stream/-/combined-stream-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "6c1691577cfb5f842f7ac1fecd8515a13cb99c9c", + "tarball": "http://registry.npmjs.org/combined-stream/-/combined-stream-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "a1d6223c463a000b21c9937c4b15ef41ba001f78", + "tarball": "http://registry.npmjs.org/combined-stream/-/combined-stream-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/combined-stream/" + }, + "combiner": { + "name": "combiner", + "description": "Flexible file-joining library with functional middleware support.", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "azer", + "email": "azer@kodfabrik.com" + } + ], + "time": { + "modified": "2011-07-22T15:54:29.998Z", + "created": "2011-07-22T15:54:29.511Z", + "1.0.0": "2011-07-22T15:54:29.998Z" + }, + "author": { + "name": "Azer Koculu", + "email": "azer@kodfabrik.com" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/combiner/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "037268e00aac275282c710244ed7750e1c857e63", + "tarball": "http://registry.npmjs.org/combiner/-/combiner-1.0.0.tgz" + } + }, + "keywords": [ + "combine", + "combiner", + "fs", + "join", + "merge", + "files" + ], + "url": "http://registry.npmjs.org/combiner/" + }, + "combo": { + "name": "combo", + "description": "callback management", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "jdubie", + "email": "jack@orchestra.com" + } + ], + "time": { + "modified": "2011-09-27T03:58:48.132Z", + "created": "2011-09-27T03:58:47.537Z", + "0.0.1": "2011-09-27T03:58:48.132Z" + }, + "author": { + "name": "Creationix" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/combo/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "853ad63b52d0eb6f8da98aa34b4f8ac12d45f82c", + "tarball": "http://registry.npmjs.org/combo/-/combo-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/combo/" + }, + "combohandler": { + "name": "combohandler", + "description": "Simple Yahoo!-style combo handler.", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "rgrove", + "email": "ryan@wonko.com" + } + ], + "time": { + "modified": "2011-10-31T23:58:22.445Z", + "created": "2011-02-06T04:18:05.694Z", + "0.1.0": "2011-02-06T04:18:06.073Z", + "0.1.1": "2011-04-12T18:44:25.518Z", + "0.1.2": "2011-07-11T18:20:01.820Z", + "0.1.3": "2011-10-31T23:58:22.445Z" + }, + "author": { + "name": "Ryan Grove", + "email": "ryan@wonko.com", + "url": "http://wonko.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/rgrove/combohandler.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/combohandler/0.1.0", + "0.1.1": "http://registry.npmjs.org/combohandler/0.1.1", + "0.1.2": "http://registry.npmjs.org/combohandler/0.1.2", + "0.1.3": "http://registry.npmjs.org/combohandler/0.1.3" + }, + "dist": { + "0.1.0": { + "shasum": "0b60e89db6e5cf0913f2daae0013d1d2c02d7946", + "tarball": "http://registry.npmjs.org/combohandler/-/combohandler-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "a9247b04b724d6b3e660e12b503b6b044e3d74f6", + "tarball": "http://registry.npmjs.org/combohandler/-/combohandler-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "6e606ff33d65a8d63db0cfef6802ed3783b241ea", + "tarball": "http://registry.npmjs.org/combohandler/-/combohandler-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "e36627eb9513a4fc93d005b0084d30f6c940441c", + "tarball": "http://registry.npmjs.org/combohandler/-/combohandler-0.1.3.tgz" + } + }, + "keywords": [ + "combo", + "combohandler", + "combohandle", + "combine", + "cdn", + "yui", + "yui3", + "yui 3", + "js", + "css", + "performance" + ], + "url": "http://registry.npmjs.org/combohandler/" + }, + "combyne": { + "name": "combyne", + "description": "Templating that works *hopefully* the way you'd expect.", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "tbranyen", + "email": "tim@tabdeveloper.com" + } + ], + "time": { + "modified": "2011-11-29T03:09:52.607Z", + "created": "2011-07-21T18:42:33.265Z", + "0.1.0": "2011-07-21T18:42:33.453Z", + "0.1.1": "2011-08-05T18:25:13.127Z", + "0.1.2": "2011-08-05T18:57:06.677Z", + "0.1.3": "2011-08-07T01:46:55.447Z", + "0.1.4": "2011-08-10T00:36:27.456Z", + "0.1.5": "2011-08-11T02:29:55.879Z", + "0.1.6": "2011-08-14T03:15:28.965Z", + "0.1.7": "2011-09-28T01:39:51.516Z", + "0.1.8": "2011-11-28T21:59:42.512Z", + "0.2.0": "2011-11-28T22:39:14.913Z", + "0.2.1": "2011-11-29T03:09:52.607Z" + }, + "author": { + "name": "Tim Branyen", + "email": "tim@tabdeveloper.com", + "url": "http://twitter.com/tbranyen" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/combyne/0.1.0", + "0.1.1": "http://registry.npmjs.org/combyne/0.1.1", + "0.1.2": "http://registry.npmjs.org/combyne/0.1.2", + "0.1.3": "http://registry.npmjs.org/combyne/0.1.3", + "0.1.4": "http://registry.npmjs.org/combyne/0.1.4", + "0.1.5": "http://registry.npmjs.org/combyne/0.1.5", + "0.1.6": "http://registry.npmjs.org/combyne/0.1.6", + "0.1.7": "http://registry.npmjs.org/combyne/0.1.7", + "0.1.8": "http://registry.npmjs.org/combyne/0.1.8", + "0.2.0": "http://registry.npmjs.org/combyne/0.2.0", + "0.2.1": "http://registry.npmjs.org/combyne/0.2.1" + }, + "dist": { + "0.1.0": { + "shasum": "88fcf249f5d3c07eff386ca2a833c383176a77da", + "tarball": "http://registry.npmjs.org/combyne/-/combyne-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "c76200125fcaa705f50d956de3d4f7fba4b12a52", + "tarball": "http://registry.npmjs.org/combyne/-/combyne-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "d3724f060429a92f299a96a749d435fd700a5b15", + "tarball": "http://registry.npmjs.org/combyne/-/combyne-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "9c9e15acd736d1467aad95b02060d9348d48b925", + "tarball": "http://registry.npmjs.org/combyne/-/combyne-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "d028c1d200ddea76ef247f83331f0a3e724b06c6", + "tarball": "http://registry.npmjs.org/combyne/-/combyne-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "89cdaca828c58e3a80dae96fdb19801589fe5453", + "tarball": "http://registry.npmjs.org/combyne/-/combyne-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "be7473d0ee17f4135c0cd40eda57aea7bd05ed92", + "tarball": "http://registry.npmjs.org/combyne/-/combyne-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "9cdeb337986482e68b0ab7038cbca4f029842f52", + "tarball": "http://registry.npmjs.org/combyne/-/combyne-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "8e2db54d6fe2a016631f4c0e41ca5b738ee2d3d8", + "tarball": "http://registry.npmjs.org/combyne/-/combyne-0.1.8.tgz" + }, + "0.2.0": { + "shasum": "245f7eb692c981ecea7eb721b385737a9385e720", + "tarball": "http://registry.npmjs.org/combyne/-/combyne-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "3625996941efb98a1af855723ca652fc596ae3ef", + "tarball": "http://registry.npmjs.org/combyne/-/combyne-0.2.1.tgz" + } + }, + "url": "http://registry.npmjs.org/combyne/" + }, + "comfy": { + "name": "comfy", + "description": "Lightweight CouchDB client", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "damonoehlman", + "email": "damon.oehlman@sidelab.com" + } + ], + "time": { + "modified": "2011-11-08T05:42:45.294Z", + "created": "2011-09-05T22:24:48.369Z", + "0.1.0": "2011-09-05T22:24:49.940Z", + "0.1.1": "2011-09-07T06:07:04.898Z", + "0.1.2": "2011-10-04T01:42:30.885Z", + "0.1.3": "2011-11-02T01:39:17.546Z", + "0.1.4": "2011-11-08T05:42:45.294Z" + }, + "author": { + "name": "Damon Oehlman", + "email": "damon.oehlman@sidelab.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/DamonOehlman/comfy.git" + }, + "versions": { + "0.1.3": "http://registry.npmjs.org/comfy/0.1.3", + "0.1.4": "http://registry.npmjs.org/comfy/0.1.4" + }, + "dist": { + "0.1.3": { + "shasum": "0d3e6af9b2ace39c87b5ec0009829f3251b6503a", + "tarball": "http://registry.npmjs.org/comfy/-/comfy-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "bb313650f4f8e8c96fafa758c65c1468cdf23012", + "tarball": "http://registry.npmjs.org/comfy/-/comfy-0.1.4.tgz" + } + }, + "url": "http://registry.npmjs.org/comfy/" + }, + "command-parser": { + "name": "command-parser", + "description": "The best command parser.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "kami", + "email": "tomaz@tomaz.me" + } + ], + "time": { + "modified": "2011-09-18T20:30:30.758Z", + "created": "2011-09-15T21:17:34.737Z", + "0.1.0": "2011-09-15T21:17:35.487Z", + "0.1.1": "2011-09-18T20:30:30.758Z" + }, + "author": { + "name": "Rackspace US, Inc." + }, + "repository": { + "type": "git", + "url": "git://github.com/racker/node-command-parser.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/command-parser/0.1.0", + "0.1.1": "http://registry.npmjs.org/command-parser/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "fb70ed4a43954d110b2e446297830b102d33b1a6", + "tarball": "http://registry.npmjs.org/command-parser/-/command-parser-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "d06b8355c5ae395962a04394a449b917a0bd76ee", + "tarball": "http://registry.npmjs.org/command-parser/-/command-parser-0.1.1.tgz" + } + }, + "keywords": [ + "opts", + "parseopt", + "opt", + "args", + "console", + "argsparse", + "optparse", + "autocomplete", + "command", + "autocompletion" + ], + "url": "http://registry.npmjs.org/command-parser/" + }, + "commander": { + "name": "commander", + "description": "the complete solution for node.js command-line programs", + "dist-tags": { + "latest": "0.5.0" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "time": { + "modified": "2011-12-04T19:44:41.915Z", + "created": "2011-08-14T22:17:51.639Z", + "0.0.1": "2011-08-14T22:17:52.365Z", + "0.0.3": "2011-08-15T15:30:08.289Z", + "0.0.4": "2011-08-15T15:45:00.595Z", + "0.0.5": "2011-08-19T01:18:17.154Z", + "0.1.0": "2011-08-24T11:45:37.962Z", + "0.2.0": "2011-09-26T15:44:03.241Z", + "0.2.1": "2011-10-24T21:03:27.736Z", + "0.3.0": "2011-10-31T15:36:53.375Z", + "0.3.1": "2011-10-31T22:07:16.209Z", + "0.3.2": "2011-11-01T21:27:35.103Z", + "0.3.3": "2011-11-14T19:02:49.976Z", + "0.4.0": "2011-11-15T16:05:27.872Z", + "0.4.1": "2011-11-18T16:48:21.692Z", + "0.4.2": "2011-11-24T15:22:25.202Z", + "0.4.3": "2011-12-04T17:54:46.487Z", + "0.5.0": "2011-12-04T19:44:41.915Z" + }, + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "repository": { + "type": "git", + "url": "git://github.com/visionmedia/commander.js.git" + }, + "users": { + "vesln": true, + "dresende": true + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/commander/0.0.1", + "0.0.3": "http://registry.npmjs.org/commander/0.0.3", + "0.0.4": "http://registry.npmjs.org/commander/0.0.4", + "0.0.5": "http://registry.npmjs.org/commander/0.0.5", + "0.1.0": "http://registry.npmjs.org/commander/0.1.0", + "0.2.0": "http://registry.npmjs.org/commander/0.2.0", + "0.2.1": "http://registry.npmjs.org/commander/0.2.1", + "0.3.0": "http://registry.npmjs.org/commander/0.3.0", + "0.3.1": "http://registry.npmjs.org/commander/0.3.1", + "0.3.2": "http://registry.npmjs.org/commander/0.3.2", + "0.3.3": "http://registry.npmjs.org/commander/0.3.3", + "0.4.0": "http://registry.npmjs.org/commander/0.4.0", + "0.4.1": "http://registry.npmjs.org/commander/0.4.1", + "0.4.2": "http://registry.npmjs.org/commander/0.4.2", + "0.4.3": "http://registry.npmjs.org/commander/0.4.3", + "0.5.0": "http://registry.npmjs.org/commander/0.5.0" + }, + "dist": { + "0.0.1": { + "shasum": "4d4128672182d377fa53618d31282a985eeb0298", + "tarball": "http://registry.npmjs.org/commander/-/commander-0.0.1.tgz" + }, + "0.0.3": { + "shasum": "9feeaa41be6cd27a5682218cb986773e25b49525", + "tarball": "http://registry.npmjs.org/commander/-/commander-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "72206c96453f4475c0a6e0f041707b217bef8331", + "tarball": "http://registry.npmjs.org/commander/-/commander-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "7824fe04d5357f6dba0045fba86fffcfc843ebfd", + "tarball": "http://registry.npmjs.org/commander/-/commander-0.0.5.tgz" + }, + "0.1.0": { + "shasum": "4f1b767116853b659106f9cf5897c8bac2c189b2", + "tarball": "http://registry.npmjs.org/commander/-/commander-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "61d495ef9c5d9d4ab0a9d168674822ae07e961cc", + "tarball": "http://registry.npmjs.org/commander/-/commander-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "32ca3c217ac340082bd70e1326b5bbd41fbc6cd1", + "tarball": "http://registry.npmjs.org/commander/-/commander-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "02cafd95f625df941eb0697b6bb540127c4778a7", + "tarball": "http://registry.npmjs.org/commander/-/commander-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "a70cc95038d614937abf9349b0b94f5491bcd8eb", + "tarball": "http://registry.npmjs.org/commander/-/commander-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "8a98a6b590d2abab04892739da8f8577da964961", + "tarball": "http://registry.npmjs.org/commander/-/commander-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "388a4097f857e9299c26415352b54d0706b06a2c", + "tarball": "http://registry.npmjs.org/commander/-/commander-0.3.3.tgz" + }, + "0.4.0": { + "shasum": "85f193a56264f4959401bdbbce0bb09e5a8764cf", + "tarball": "http://registry.npmjs.org/commander/-/commander-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "85c30d8e80fb57de9a95ae9bd5084021abc1dfdf", + "tarball": "http://registry.npmjs.org/commander/-/commander-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "f1872070e42d271a2a1c419981628628716ce01c", + "tarball": "http://registry.npmjs.org/commander/-/commander-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "1f9c45f5c2d314c4bc9f9a3dd5b883261fbac8fc", + "tarball": "http://registry.npmjs.org/commander/-/commander-0.4.3.tgz" + }, + "0.5.0": { + "shasum": "8fe03c71e444891dbda97c7dfbb108a33a05eaf3", + "tarball": "http://registry.npmjs.org/commander/-/commander-0.5.0.tgz" + } + }, + "keywords": [ + "command", + "option", + "parser", + "prompt", + "stdin" + ], + "url": "http://registry.npmjs.org/commander/" + }, + "commando": { + "name": "commando", + "description": "CLI Microframework", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "fractal", + "email": "contact@wearefractal.com" + } + ], + "time": { + "modified": "2011-12-06T14:59:49.827Z", + "created": "2011-10-17T17:28:24.512Z", + "0.0.1": "2011-10-17T17:28:26.303Z", + "0.0.2": "2011-12-06T14:59:49.827Z" + }, + "author": { + "name": "Fractal", + "email": "contact@wearefractal.com", + "url": "http://wearefractal.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/wearefractal/commando.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/commando/0.0.1", + "0.0.2": "http://registry.npmjs.org/commando/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "1f32d80434bab70427ea77453d71d92e9ee668ed", + "tarball": "http://registry.npmjs.org/commando/-/commando-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "9e7e5568ac9522149b999c7d071e3f406ad2ad9f", + "tarball": "http://registry.npmjs.org/commando/-/commando-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/commando/" + }, + "Comments": { + "name": "Comments", + "description": "utilities for building a comment server for your website", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "pvorb", + "email": "paul@vorb.de" + } + ], + "time": { + "modified": "2011-11-26T03:07:50.398Z", + "created": "2011-10-01T01:07:26.177Z", + "0.0.0": "2011-10-01T01:07:28.754Z", + "0.1.0": "2011-11-20T23:16:00.289Z", + "0.1.1": "2011-11-21T00:45:39.495Z", + "0.2.0": "2011-11-25T20:36:11.297Z", + "0.3.0": "2011-11-26T03:07:50.398Z" + }, + "author": { + "name": "Paul Vorbach", + "email": "paul@vorb.de", + "url": "https://vorb.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/pvorb/node-comments.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/Comments/0.0.0", + "0.1.0": "http://registry.npmjs.org/Comments/0.1.0", + "0.1.1": "http://registry.npmjs.org/Comments/0.1.1", + "0.2.0": "http://registry.npmjs.org/Comments/0.2.0", + "0.3.0": "http://registry.npmjs.org/Comments/0.3.0" + }, + "dist": { + "0.0.0": { + "shasum": "8a3ac2ec6cdf75e0d5400ac5ec38d7d190617de2", + "tarball": "http://registry.npmjs.org/Comments/-/Comments-0.0.0.tgz" + }, + "0.1.0": { + "shasum": "0c80be48410e59dc9708c81cda81aa4a25219abc", + "tarball": "http://registry.npmjs.org/Comments/-/Comments-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "8e6ef6a3e411fa6ca9279741245337c91573bd8f", + "tarball": "http://registry.npmjs.org/Comments/-/Comments-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "4774b1ed9adff4bcb4ee697e9ff76f0e31d1711e", + "tarball": "http://registry.npmjs.org/Comments/-/Comments-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "c50701b5fa759b27502b6304f20819c6a3d08cf6", + "tarball": "http://registry.npmjs.org/Comments/-/Comments-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/Comments/" + }, + "common": { + "name": "common", + "description": "A utility package with some useful functional stuff", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "mafintosh", + "email": "m@ge.tt" + }, + { + "name": "ianjorgensen", + "email": "jorgensen.ian@gmail.com" + } + ], + "time": { + "modified": "2011-08-31T17:28:47.085Z", + "created": "2011-06-18T11:43:19.591Z", + "0.1.0": "2011-06-18T11:43:20.059Z", + "0.1.1": "2011-06-22T20:17:36.556Z", + "0.1.2": "2011-07-23T18:22:43.620Z", + "0.1.3": "2011-08-03T23:20:23.188Z", + "0.1.4": "2011-08-06T15:26:13.234Z", + "0.2.0": "2011-08-31T17:12:33.062Z", + "0.2.1": "2011-08-31T17:28:47.085Z" + }, + "author": { + "name": "Ge.tt", + "email": "hello@ge.tt" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/common/0.1.0", + "0.1.1": "http://registry.npmjs.org/common/0.1.1", + "0.1.2": "http://registry.npmjs.org/common/0.1.2", + "0.1.3": "http://registry.npmjs.org/common/0.1.3", + "0.1.4": "http://registry.npmjs.org/common/0.1.4", + "0.2.0": "http://registry.npmjs.org/common/0.2.0", + "0.2.1": "http://registry.npmjs.org/common/0.2.1" + }, + "dist": { + "0.1.0": { + "shasum": "500f1e33c728d3090642c6e8b97bcc658db3e6ca", + "tarball": "http://registry.npmjs.org/common/-/common-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "a3572deddeea0c35edb8fc94e67bf0ce64f19f52", + "tarball": "http://registry.npmjs.org/common/-/common-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "95d129c56dc9bd81bd5bec0ff88ac62dd6170865", + "tarball": "http://registry.npmjs.org/common/-/common-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "4a893fb2d57ff3af9a398ee085baff07926515ff", + "tarball": "http://registry.npmjs.org/common/-/common-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "b8f2411cc0224a64032bcc7b778814d76e10bece", + "tarball": "http://registry.npmjs.org/common/-/common-0.1.4.tgz" + }, + "0.2.0": { + "shasum": "95dc43d3e53af23efb4579b35df710d81bf5f548", + "tarball": "http://registry.npmjs.org/common/-/common-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "c537fb11aca1ce09c125d20e0033941bfc0a9454", + "tarball": "http://registry.npmjs.org/common/-/common-0.2.1.tgz" + } + }, + "url": "http://registry.npmjs.org/common/" + }, + "common-exception": { + "name": "common-exception", + "description": "a cross-language standard for representing exceptions", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "andrewschaaf", + "email": "andrew@andrewschaaf.com" + } + ], + "author": { + "name": "Andrew Schaaf", + "email": "andrew@andrewschaaf.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/andrewschaaf/common-exception.git" + }, + "time": { + "modified": "2010-12-23T21:00:26.396Z", + "created": "2010-12-21T20:12:55.716Z", + "0.1.0": "2010-12-21T20:12:55.716Z", + "0.1.1": "2010-12-21T20:12:55.716Z", + "0.1.2": "2010-12-23T21:00:26.396Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/common-exception/0.1.0", + "0.1.1": "http://registry.npmjs.org/common-exception/0.1.1", + "0.1.2": "http://registry.npmjs.org/common-exception/0.1.2" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/common-exception/-/common-exception-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://registry.npmjs.org/common-exception/-/common-exception-0.1.1.tgz" + }, + "0.1.2": { + "tarball": "http://registry.npmjs.org/common-exception/-/common-exception-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/common-exception/" + }, + "common-logger": { + "name": "common-logger", + "description": "Cross-browser and Node.js empowered logging", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "viatropos", + "email": "lancejpollard@gmail.com" + } + ], + "time": { + "modified": "2011-10-22T23:22:29.645Z", + "created": "2011-10-22T23:22:29.091Z", + "0.2.0": "2011-10-22T23:22:29.645Z" + }, + "author": { + "name": "Lance Pollard", + "email": "lancejpollard@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/viatropos/common-logger.js.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/common-logger/0.2.0" + }, + "dist": { + "0.2.0": { + "shasum": "6774335cd9409b63a5ae794c2ffc5f655806c3a3", + "tarball": "http://registry.npmjs.org/common-logger/-/common-logger-0.2.0.tgz" + } + }, + "keywords": [ + "logging", + "node", + "browser" + ], + "url": "http://registry.npmjs.org/common-logger/" + }, + "common-node": { + "name": "common-node", + "description": "Synchronous CommonJS compatibility layer using node-fibers", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "olegp", + "email": "oleg@ionsquare.com" + } + ], + "time": { + "modified": "2011-10-27T12:51:53.089Z", + "created": "2011-08-30T08:17:03.630Z", + "0.2.0": "2011-08-30T08:17:05.885Z", + "0.2.1": "2011-09-07T13:12:25.352Z", + "0.2.2": "2011-10-27T12:51:53.089Z" + }, + "author": { + "name": "Oleg Podsechin", + "email": "oleg@ionsquare.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/olegp/common-node.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/common-node/0.2.0", + "0.2.1": "http://registry.npmjs.org/common-node/0.2.1", + "0.2.2": "http://registry.npmjs.org/common-node/0.2.2" + }, + "dist": { + "0.2.0": { + "shasum": "bdafed289f27dcd79bb29f735327c2e58f0d31e2", + "tarball": "http://registry.npmjs.org/common-node/-/common-node-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "692c3288091261dbb35fdf6b27e126f4c7e40a9e", + "tarball": "http://registry.npmjs.org/common-node/-/common-node-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "360cafb13f73aa0e2f30c6e31057103723d6dc7a", + "tarball": "http://registry.npmjs.org/common-node/-/common-node-0.2.2.tgz" + } + }, + "keywords": [ + "commonjs" + ], + "url": "http://registry.npmjs.org/common-node/" + }, + "common-pool": { + "name": "common-pool", + "description": "Simple resource pool", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "baryshev", + "email": "vadimbaryshev@gmail.com" + } + ], + "time": { + "modified": "2011-09-17T14:47:53.163Z", + "created": "2011-09-17T14:20:43.878Z", + "0.1.0": "2011-09-17T14:20:46.217Z", + "0.1.1": "2011-09-17T14:47:53.163Z" + }, + "author": { + "name": "Vadim M. Baryshev", + "email": "vadimbaryshev@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/baryshev/common-pool.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/common-pool/0.1.0", + "0.1.1": "http://registry.npmjs.org/common-pool/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "72913eee97c92fd760a1163829e4c85d1e43e817", + "tarball": "http://registry.npmjs.org/common-pool/-/common-pool-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "d1d4d3f44f283d05f30183d760fe8872e9f307ff", + "tarball": "http://registry.npmjs.org/common-pool/-/common-pool-0.1.1.tgz" + } + }, + "keywords": [ + "pool" + ], + "url": "http://registry.npmjs.org/common-pool/" + }, + "common-utils": { + "name": "common-utils", + "description": "A collection of pure JavaScript utility modules for server side use", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "olegp", + "email": "oleg@ionsquare.com" + } + ], + "time": { + "modified": "2011-09-07T17:14:57.090Z", + "created": "2011-09-07T17:14:55.146Z", + "0.0.1": "2011-09-07T17:14:57.090Z" + }, + "author": { + "name": "Oleg Podsechin", + "email": "oleg@ionsquare.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/olegp/common-utils.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/common-utils/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "a24311a851a27ca8d14649b1b507918af68edf9d", + "tarball": "http://registry.npmjs.org/common-utils/-/common-utils-0.0.1.tgz" + } + }, + "keywords": [ + "utils" + ], + "url": "http://registry.npmjs.org/common-utils/" + }, + "commondir": { + "name": "commondir", + "description": "Compute the closest common parent for file paths", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-11-16T01:05:05.980Z", + "created": "2011-06-28T09:24:34.299Z", + "0.0.0": "2011-06-28T09:24:34.962Z", + "0.0.1": "2011-11-16T01:05:05.980Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-commondir.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/commondir/0.0.0", + "0.0.1": "http://registry.npmjs.org/commondir/0.0.1" + }, + "dist": { + "0.0.0": { + "shasum": "25fb9c47fa486f81ddf74d6ef061fec59e6260ed", + "tarball": "http://registry.npmjs.org/commondir/-/commondir-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "89f00fdcd51b519c578733fec563e6a6da7f5be2", + "tarball": "http://registry.npmjs.org/commondir/-/commondir-0.0.1.tgz" + } + }, + "keywords": [ + "common", + "path", + "directory", + "file", + "parent", + "root" + ], + "url": "http://registry.npmjs.org/commondir/" + }, + "commonjs": { + "name": "commonjs", + "description": "CommonJS standard library.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "gozala", + "email": "rfobic@gmail.com" + } + ], + "repository": { + "type": "git", + "url": "git://github.com/Gozala/commonjs-node.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/commonjs/0.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/commonjs/-/commonjs-0.0.1.tgz" + } + }, + "keywords": [ + "commonjs" + ], + "url": "http://registry.npmjs.org/commonjs/" + }, + "commonjs-utils": { + "name": "commonjs-utils", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "alexkwolfe", + "email": "alexkwolfe@gmail.com" + } + ], + "author": { + "name": "Kris Zyp" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/commonjs-utils/0.1.1" + }, + "dist": { + "0.1.1": { + "tarball": "http://packages:5984/commonjs-utils/-/commonjs-utils-0.1.1.tgz" + } + }, + "keywords": [ + "json", + "schema", + "query" + ], + "url": "http://registry.npmjs.org/commonjs-utils/" + }, + "commonkv": { + "name": "commonkv", + "description": "Commonkv is designed as an API for accessing NOSQL Key,Value stores. It also includes an implementation of the commonkv API to access a simple in memory KV store.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "billbarnhill", + "email": "w.a.barnhill@gmail.com" + } + ], + "time": { + "modified": "2011-03-21T01:37:28.317Z", + "created": "2011-03-21T01:37:28.139Z", + "0.0.1": "2011-03-21T01:37:28.317Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/commonkv/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "34bd23bf6b8255c9b0c4b027c76f6b88faa8aae2", + "tarball": "http://registry.npmjs.org/commonkv/-/commonkv-0.0.1.tgz" + } + }, + "keywords": [ + "nosql", + "javascript", + "datastore" + ], + "url": "http://registry.npmjs.org/commonkv/" + }, + "commons": { + "name": "commons", + "description": "A stdlib for and set of compatibility shims for CommonJS environments", + "dist-tags": { + "latest": "0.0.1-pre" + }, + "maintainers": [ + { + "name": "deanlandolt", + "email": "dean@deanlandolt.com" + } + ], + "author": { + "name": "Dean Landolt", + "email": "dean@deanlandolt.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/deanlandolt/commons.git" + }, + "versions": { + "0.0.1-pre": "http://registry.npmjs.org/commons/0.0.1-pre" + }, + "dist": { + "0.0.1-pre": { + "tarball": "http://packages:5984/commons/-/commons-0.0.1-pre.tgz" + } + }, + "keywords": [ + "js", + "commonjs", + "standards", + "binary", + "fs", + "node", + "narwhal", + "ringo", + "gpsee", + "flusspferd" + ], + "url": "http://registry.npmjs.org/commons/" + }, + "complete": { + "name": "complete", + "description": "tab completion for your nodejs CLI program", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "hij1nx", + "email": "hij1nx@me.com" + } + ], + "time": { + "modified": "2011-08-30T15:24:15.003Z", + "created": "2011-08-29T02:23:32.871Z", + "0.0.1": "2011-08-29T02:23:34.211Z", + "0.1.0": "2011-08-29T02:26:14.562Z", + "0.1.1": "2011-08-30T15:24:15.003Z" + }, + "author": { + "name": "hij1nx", + "email": "hij1nx@me.com", + "url": "http://www.nodejitsu.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/hij1nx/complete.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/complete/0.0.1", + "0.1.0": "http://registry.npmjs.org/complete/0.1.0", + "0.1.1": "http://registry.npmjs.org/complete/0.1.1" + }, + "dist": { + "0.0.1": { + "shasum": "aa107410b65eecb3436b656404a50fac328f6eb8", + "tarball": "http://registry.npmjs.org/complete/-/complete-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "032f3f63afc0bbde5f59a8a488d9511df87c7008", + "tarball": "http://registry.npmjs.org/complete/-/complete-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "77b9b7d8a8fffb4bf9237b2ec20187b6d42fba4f", + "tarball": "http://registry.npmjs.org/complete/-/complete-0.1.1.tgz" + } + }, + "keywords": [ + "terminal", + "tabs", + "unix", + "posix", + "console", + "complete", + "completion" + ], + "url": "http://registry.npmjs.org/complete/" + }, + "Complex": { + "name": "Complex", + "description": "Do calculations with Complex numbers", + "dist-tags": { + "latest": "2.0.0" + }, + "maintainers": [ + { + "name": "arian", + "email": "stolwijk.arian@gmail.com" + } + ], + "time": { + "modified": "2011-09-27T21:02:55.038Z", + "created": "2011-09-27T21:02:54.212Z", + "2.0.0": "2011-09-27T21:02:55.038Z" + }, + "author": { + "name": "Arian Stolwijk" + }, + "versions": { + "2.0.0": "http://registry.npmjs.org/Complex/2.0.0" + }, + "dist": { + "2.0.0": { + "shasum": "a2746e93b5806719bd37fa55806e30c22ee77e69", + "tarball": "http://registry.npmjs.org/Complex/-/Complex-2.0.0.tgz" + } + }, + "keywords": [ + "Complex Numbers", + "Numbers", + "Math", + "Calculus" + ], + "url": "http://registry.npmjs.org/Complex/" + }, + "complex-search": { + "name": "complex-search", + "description": "Search for stuff with &, | and parens", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "thejh", + "email": "jannhorn@gmail.com" + } + ], + "time": { + "modified": "2011-09-25T18:22:57.548Z", + "created": "2011-08-16T22:08:21.593Z", + "0.1.0": "2011-08-16T22:08:25.481Z" + }, + "author": { + "name": "Jann Horn", + "email": "jannhorn@googlemail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/thejh/node-complex-search.git" + }, + "users": { + "thejh": true + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/complex-search/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "8a0b0c3d04c43d1a737e5d2e6335a1b2109ff44d", + "tarball": "http://registry.npmjs.org/complex-search/-/complex-search-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/complex-search/" + }, + "composable-validator": { + "name": "composable-validator", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "aaronblohowiak", + "email": "aaron.blohowiak@gmail.com" + } + ], + "time": { + "modified": "2011-10-02T07:54:37.810Z", + "created": "2011-10-02T07:54:36.562Z", + "0.0.1": "2011-10-02T07:54:37.810Z" + }, + "author": { + "name": "Aaron Blohowiak" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/composable-validator/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "0c16fb46cbee43b92b6e0fc99f699a3d7e6980ed", + "tarball": "http://registry.npmjs.org/composable-validator/-/composable-validator-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/composable-validator/" + }, + "compose": { + "name": "compose", + "author": { + "name": "Kris Zyp", + "email": "kriszyp@gmail.com" + }, + "maintainers": [ + { + "name": "Kris Zyp", + "email": "kriszyp@gmail.com" + } + ], + "description": "Fast and light object composition based on mixins and traits", + "url": "http://packages.dojofoundation.org/compose", + "time": { + "modified": "2011-01-04T20:58:09.437Z", + "created": "2011-01-04T20:58:09.437Z" + }, + "versions": {}, + "dist": {} + }, + "composer": { + "name": "composer", + "description": "Visually describe functionality, and then execute it", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "tmpvar", + "email": "tmpvar@gmail.com" + } + ], + "versions": { + "0.1.2": "http://registry.npmjs.org/composer/0.1.2" + }, + "dist": { + "0.1.2": { + "tarball": "http://packages:5984/composer/-/composer-0.1.2.tgz" + } + }, + "keywords": [ + "visual programming", + "control/data flow" + ], + "url": "http://registry.npmjs.org/composer/" + }, + "CompoundSignal": { + "name": "CompoundSignal", + "description": "Special Signal that groups multiple Signals together and dispatches after all the group elements are dispatched.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "millermedeiros", + "email": "miller@millermedeiros.com" + } + ], + "time": { + "modified": "2011-11-02T04:32:12.658Z", + "created": "2011-11-02T04:32:10.715Z", + "0.1.0": "2011-11-02T04:32:12.658Z" + }, + "author": { + "name": "Miller Medeiros", + "url": "http://blog.millermedeiros.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/millermedeiros/CompoundSignal.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/CompoundSignal/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "89e9d41a5f99e36448ccc46f45af3be5ede5c10f", + "tarball": "http://registry.npmjs.org/CompoundSignal/-/CompoundSignal-0.1.0.tgz" + } + }, + "keywords": [ + "js-signals", + "signals", + "pub/sub", + "event", + "publish", + "subscribe", + "observer", + "when", + "deferred", + "promises" + ], + "url": "http://registry.npmjs.org/CompoundSignal/" + }, + "compress": { + "name": "compress", + "description": "A streaming compression / gzip library for node.js", + "dist-tags": { + "latest": "0.1.9" + }, + "maintainers": [ + { + "name": "Tim-Smart", + "email": "tim@fostle.com" + } + ], + "author": { + "name": "Rhys" + }, + "repository": { + "type": "git", + "url": "http://github.com/waveto/node-compress.git" + }, + "time": { + "modified": "2011-04-15T21:04:46.187Z", + "created": "2011-01-28T09:19:40.817Z", + "0.1.6": "2011-01-28T09:19:40.817Z", + "0.1.7": "2011-01-28T09:19:40.817Z", + "0.1.8": "2011-01-28T09:19:40.817Z", + "0.1.9": "2011-01-28T09:19:40.817Z" + }, + "versions": { + "0.1.6": "http://registry.npmjs.org/compress/0.1.6", + "0.1.7": "http://registry.npmjs.org/compress/0.1.7", + "0.1.8": "http://registry.npmjs.org/compress/0.1.8", + "0.1.9": "http://registry.npmjs.org/compress/0.1.9" + }, + "dist": { + "0.1.6": { + "tarball": "http://packages:5984/compress/-/compress-0.1.6.tgz" + }, + "0.1.7": { + "tarball": "http://packages:5984/compress/-/compress-0.1.7.tgz" + }, + "0.1.8": { + "tarball": "http://packages:5984/compress/-/compress-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "4be592238535b51f52cc5d05cf72e56d5fe367f9", + "tarball": "http://registry.npmjs.org/compress/-/compress-0.1.9.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "d8e07f8419f9a728c495af22222239ae8d0a1925", + "tarball": "http://registry.npmjs.org/compress/-/compress-0.1.9-0.4-sunos-5.11.tgz" + } + } + } + }, + "url": "http://registry.npmjs.org/compress/" + }, + "compress-buffer": { + "name": "compress-buffer", + "description": "Single-step Buffer compression library for Node.js", + "dist-tags": { + "latest": "0.5.1" + }, + "maintainers": [ + { + "name": "egorfine", + "email": "me@egorfine.com" + } + ], + "time": { + "modified": "2011-11-07T12:31:07.099Z", + "created": "2011-05-10T15:07:35.491Z", + "0.3.0": "2011-05-10T15:07:36.419Z", + "0.3.1": "2011-09-16T08:20:04.050Z", + "0.3.2": "2011-09-16T23:35:19.189Z", + "0.4.0": "2011-09-17T20:54:35.306Z", + "0.4.1": "2011-09-21T09:29:17.713Z", + "0.4.2": "2011-10-31T12:25:06.631Z", + "0.5.0": "2011-11-06T20:09:48.394Z", + "0.5.1": "2011-11-07T12:31:07.099Z" + }, + "author": { + "name": "Egor Egorov" + }, + "repository": { + "type": "git", + "url": "git://github.com/egorfine/node-compress-buffer.git" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/compress-buffer/0.3.0", + "0.3.1": "http://registry.npmjs.org/compress-buffer/0.3.1", + "0.3.2": "http://registry.npmjs.org/compress-buffer/0.3.2", + "0.4.0": "http://registry.npmjs.org/compress-buffer/0.4.0", + "0.4.1": "http://registry.npmjs.org/compress-buffer/0.4.1", + "0.4.2": "http://registry.npmjs.org/compress-buffer/0.4.2", + "0.5.0": "http://registry.npmjs.org/compress-buffer/0.5.0", + "0.5.1": "http://registry.npmjs.org/compress-buffer/0.5.1" + }, + "dist": { + "0.3.0": { + "shasum": "0c49103d51d2d9b62e616109b44ec7edfe042443", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.3.2-darwin-10.7.0": { + "shasum": "ab72a7d8130bd9931e8f72782bc5f29e0f58ab16", + "tarball": "http://registry.npmjs.org/compress-buffer/-/compress-buffer-0.3.0-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.3.2-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/compress-buffer/-/compress-buffer-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "4eca7fdf7a983144265f0faf2e289ac1f2cd58bc", + "tarball": "http://registry.npmjs.org/compress-buffer/-/compress-buffer-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "12a79865603871cbf36b8df203934fc7d5510143", + "tarball": "http://registry.npmjs.org/compress-buffer/-/compress-buffer-0.3.2.tgz" + }, + "0.4.0": { + "shasum": "d24b94f7d1e5877297f831fb5398a3c68019dbd4", + "tarball": "http://registry.npmjs.org/compress-buffer/-/compress-buffer-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "fd9a64531e782108b23d05d0a7d3b020e24ddde4", + "tarball": "http://registry.npmjs.org/compress-buffer/-/compress-buffer-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "f79733bbea9838866982e83be833ccbc8d488200", + "tarball": "http://registry.npmjs.org/compress-buffer/-/compress-buffer-0.4.2.tgz" + }, + "0.5.0": { + "shasum": "7a60cae1830b50354b4033e306428dcec58b8564", + "tarball": "http://registry.npmjs.org/compress-buffer/-/compress-buffer-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "bf516511b119cb1d0bc51434de698ed1559e85ef", + "tarball": "http://registry.npmjs.org/compress-buffer/-/compress-buffer-0.5.1.tgz" + } + }, + "url": "http://registry.npmjs.org/compress-buffer/" + }, + "compress-ds": { + "name": "compress-ds", + "description": "A streaming compression for node.js", + "dist-tags": { + "latest": "0.1.11" + }, + "maintainers": [ + { + "name": "kkaefer", + "email": "kkaefer@gmail.com" + }, + { + "name": "willwhite", + "email": "will@developmentseed.org" + }, + { + "name": "springmeyer", + "email": "dane@dbsgeo.com" + } + ], + "time": { + "modified": "2011-06-03T22:05:49.384Z", + "created": "2011-03-03T14:55:50.458Z", + "0.1.11": "2011-03-03T14:55:50.620Z" + }, + "author": { + "name": "Ivan Egorov" + }, + "repository": { + "type": "git", + "url": "git://github.com/egorich239/node-compress.git" + }, + "versions": { + "0.1.11": "http://registry.npmjs.org/compress-ds/0.1.11" + }, + "dist": { + "0.1.11": { + "shasum": "a1b558c43c68611eae6dbb031c1da9b3c1959b5f", + "tarball": "http://registry.npmjs.org/compress-ds/-/compress-ds-0.1.11.tgz" + } + }, + "url": "http://registry.npmjs.org/compress-ds/" + }, + "compressor": { + "name": "compressor", + "description": "A streaming compression library for node.js", + "dist-tags": { + "latest": "0.1.10" + }, + "maintainers": [ + { + "name": "devongovett", + "email": "devongovett@gmail.com" + } + ], + "time": { + "modified": "2011-02-22T02:36:47.323Z", + "created": "2011-02-22T02:36:46.987Z", + "0.1.10": "2011-02-22T02:36:47.323Z" + }, + "author": { + "name": "Ivan Egorov" + }, + "repository": { + "type": "git", + "url": "git://github.com/egorich239/node-compress.git" + }, + "versions": { + "0.1.10": "http://registry.npmjs.org/compressor/0.1.10" + }, + "dist": { + "0.1.10": { + "shasum": "44b30e4dbf014bb98272d3acd557538200036c82", + "tarball": "http://registry.npmjs.org/compressor/-/compressor-0.1.10.tgz" + } + }, + "url": "http://registry.npmjs.org/compressor/" + }, + "compute-cluster": { + "name": "compute-cluster", + "description": "Local process cluster management for distributed computation", + "dist-tags": { + "latest": "0.0.5" + }, + "readme": "## Distributed Computation for NodeJS\n\nHow can you build a responsive and robust nodejs server that does some heavy\ncomputational lifting? Some node libraries (like the awesome [node-bcrypt][])\ndo their own threading internally and combine that with an async API. This\nallows libraries to internally thread their calls and use multiple cores.\n\n [node-bcrypt]: https://github.com/ncb000gt/node.bcrypt.js\n\nWhile this is pretty awesome, it is significant work for library implementors,\nand as this pattern becomes rampant, the application author looses fine grained\ncontrol over the resource usage of their server as well as the relative priority\nof compute tasks.\n\nIf you just naively run computation on the main evaluation thread, you're blocking\nnode.js from doing *anything else* and making your whole server unresponsive.\n\n## The solution?\n\n`node-compute-cluster` is a tiny abstraction around a group of\nprocesses and the [built-in IPC][] introduced in NodeJS 0.6.x. It provides a simple\nAPI by which you can allocate and run work on a cluster of computation processes.\nThis allows you to perform multiprocessing at a more granular level, and produce\na responsive yet efficient computation server.\n\n [built-in IPC]: http://nodejs.org/docs/v0.6.3/api/all.html#child_process.fork\n\n## Installation\n\n $ npm install compute-cluster\n\n## Usage\n\nFirst you write your main program:\n\n const computecluster = require('compute-cluster');\n \n // allocate a compute cluster\n var cc = new computecluster({\n module: './worker.js'\n });\n \n var toRun = 10\n \n // then you can perform work in parallel\n for (var i = 0; i < toRun; i++) {\n cc.enqueue({}, function(err, r) {\n if (err) console.log(\"an error occured:\", err);\n else console.log(\"it's nice:\", r);\n if (--toRun === 0) cc.exit();\n });\n };\n\nNext you write your `worker.js` program:\n\n process.on('message', function(m) {\n for (var i = 0; i < 100000000; i++);\n process.send('complete');\n });\n\nAll done! Now you're distributing your computational load across multiple processes.\n\n## API\n\n### Constructor - `new require('compute-cluster')();`\n\nAllocates a computation cluster. Options include:\n\n * `module` - **required** the path to the module to load\n * `max_processes` - the maximum number of processes to spawn (default is `ciel(#cpus * 1.25)`)\n * `max_backlog` - the maximum length of the backlog, -1 indicates no limit (default is 10 * max_processes)\n\nExample:\n\n var cc = new require('compute-cluster')({\n module: './foo.js',\n max_backlog: -1\n });\n\n### Event: 'error'\n\nAn error event will be emited in exceptional circumstances. Like if a child crashes.\nCatch error events like this:\n\n cc.on('error', function(e) { console.log('OMG!', e); });\n\nDefault behavior is to exit on error if you don't catch.\n\n### Events: 'debug' or 'info'\n\nEvents raise that hold an english, developer readable string describing\nthe state of the implementation.\n\n### cc.enqueue(, [cb])\n\nenqueue a job to be run on the next available compute process, spawning one\nif required (and `max_processes isn't hit).\n\nargs will be passed into the process (available via `process.on('message', ...)`).\n\n`cb` is optional, and will be invoked with two params, `err` and `response`.\n`err` indicates hard errors, response indicates successful roundtrip to the\ncompute process and is whatever the decided to `process.send()` in response. \n\n### cc.exit([cb])\n\nKill all child processes, invoking callback (with err param) when complete.\n\n## LICENSE\n\nCopyright (c) 2011, Lloyd Hilaiel \n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n", + "maintainers": [ + { + "name": "lloyd", + "email": "lloyd@hilaiel.com" + } + ], + "time": { + "modified": "2011-12-02T23:46:37.306Z", + "created": "2011-11-30T20:11:11.922Z", + "0.0.1": "2011-11-30T20:11:13.083Z", + "0.0.2": "2011-11-30T20:46:44.560Z", + "0.0.3": "2011-11-30T21:09:01.820Z", + "0.0.4": "2011-11-30T22:30:08.073Z", + "0.0.5": "2011-12-02T23:46:37.306Z" + }, + "author": { + "name": "Lloyd Hilaiel", + "email": "lloyd@hilaiel.com", + "url": "http://lloyd.io" + }, + "repository": { + "type": "git", + "url": "git://github.com/lloyd/node-compute-cluster.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/compute-cluster/0.0.1", + "0.0.2": "http://registry.npmjs.org/compute-cluster/0.0.2", + "0.0.3": "http://registry.npmjs.org/compute-cluster/0.0.3", + "0.0.4": "http://registry.npmjs.org/compute-cluster/0.0.4", + "0.0.5": "http://registry.npmjs.org/compute-cluster/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "53ddae16fc40a04d318b053d9800e78a28c95c55", + "tarball": "http://registry.npmjs.org/compute-cluster/-/compute-cluster-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "ba4c31d6527764d987cc0ca1335a9841051277c5", + "tarball": "http://registry.npmjs.org/compute-cluster/-/compute-cluster-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "3a078a85c787e5c1d3b1e5a9135780c7920772fa", + "tarball": "http://registry.npmjs.org/compute-cluster/-/compute-cluster-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "123e3a97c7ec77c2bfbac725eb25c16718ea1478", + "tarball": "http://registry.npmjs.org/compute-cluster/-/compute-cluster-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "69cd4c74d00adbaf159d9725ab5ced2538fca27e", + "tarball": "http://registry.npmjs.org/compute-cluster/-/compute-cluster-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/compute-cluster/" + }, + "comsat": { + "name": "comsat", + "description": "Starcraft 2 replay file parsing in node.js", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "tec27", + "email": "travis@tec27.com" + } + ], + "time": { + "modified": "2011-11-06T07:48:58.112Z", + "created": "2011-11-06T07:25:46.151Z", + "0.1.0": "2011-11-06T07:25:46.740Z", + "0.1.1": "2011-11-06T07:48:58.112Z" + }, + "author": { + "name": "Travis Collins", + "email": "travis@tec27.com", + "url": "http://tec27.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/tec27/comsat.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/comsat/0.1.0", + "0.1.1": "http://registry.npmjs.org/comsat/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "e88d92e8b7549d06f342da0837fe2013674aa2ed", + "tarball": "http://registry.npmjs.org/comsat/-/comsat-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "cf294f7abb6927effc5aebb442d58b9eed23ce90", + "tarball": "http://registry.npmjs.org/comsat/-/comsat-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/comsat/" + }, + "concrete": { + "name": "concrete", + "description": "A minimalistic Continuous Integration server", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "ryankee", + "email": "me@ryankee.com" + } + ], + "time": { + "modified": "2011-09-16T00:17:29.245Z", + "created": "2011-08-17T00:47:01.108Z", + "0.0.1": "2011-08-17T00:47:04.207Z", + "0.0.2": "2011-09-16T00:17:29.245Z" + }, + "author": { + "name": "Ryan Kee", + "email": "me@ryankee.com", + "url": "http://ryankee.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/ryankee/concrete.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/concrete/0.0.1", + "0.0.2": "http://registry.npmjs.org/concrete/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "0bf5fac8066c43e1ac408ca30bb79cfe62b98b27", + "tarball": "http://registry.npmjs.org/concrete/-/concrete-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "3d298e07850387dee7f09d705cee873e7089dccc", + "tarball": "http://registry.npmjs.org/concrete/-/concrete-0.0.2.tgz" + } + }, + "keywords": [ + "coffeescript", + "continuous integration", + "test", + "coffee" + ], + "url": "http://registry.npmjs.org/concrete/" + }, + "condo": { + "name": "condo", + "description": "A notifier for Convore", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "arbales", + "email": "austin@417east.com" + } + ], + "time": { + "modified": "2011-06-10T22:01:07.932Z", + "created": "2011-06-08T09:20:51.310Z", + "0.0.1": "2011-06-08T09:20:51.870Z", + "0.0.1a": "2011-06-08T09:21:48.462Z", + "0.0.1b": "2011-06-08T10:03:17.682Z", + "0.0.2": "2011-06-10T22:01:07.932Z" + }, + "author": { + "name": "Austin Bales", + "email": "austin@417east.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/condo/0.0.1", + "0.0.1a": "http://registry.npmjs.org/condo/0.0.1a", + "0.0.1b": "http://registry.npmjs.org/condo/0.0.1b", + "0.0.2": "http://registry.npmjs.org/condo/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "884aef6d848e0ef4a2d29dde3b115f8d0d68bb11", + "tarball": "http://registry.npmjs.org/condo/-/condo-0.0.1.tgz" + }, + "0.0.1a": { + "shasum": "d553c5953d7c3cfffec8e44ac73f989c1e9d0b9e", + "tarball": "http://registry.npmjs.org/condo/-/condo-0.0.1a.tgz" + }, + "0.0.1b": { + "shasum": "1767eddc1d0fdb10428046178a2563223d387c95", + "tarball": "http://registry.npmjs.org/condo/-/condo-0.0.1b.tgz" + }, + "0.0.2": { + "shasum": "99f7bcb93acc13fb2d2223b91cf62a58dd442506", + "tarball": "http://registry.npmjs.org/condo/-/condo-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/condo/" + }, + "conductor": { + "name": "conductor", + "description": "Conductor is a code execution engine that takes a list of functions with defined inputs and outputs and chains then together in whatever way you can imagine.", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "tmpvar", + "email": "tmpvar@gmail.com" + } + ], + "versions": { + "0.1.0": "http://registry.npmjs.org/conductor/0.1.0", + "0.2.0": "http://registry.npmjs.org/conductor/0.2.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/conductor/-/conductor-0.1.0.tgz" + }, + "0.2.0": { + "tarball": "http://packages:5984/conductor/-/conductor-0.2.0.tgz" + } + }, + "keywords": [ + "" + ], + "url": "http://registry.npmjs.org/conductor/" + }, + "conf": { + "name": "conf", + "description": "Config library for Nodejs", + "dist-tags": { + "latest": "0.8.4" + }, + "maintainers": [ + { + "name": "jfd", + "email": "dahlberg.johan@gmail.com" + } + ], + "time": { + "modified": "2011-08-23T12:11:02.211Z", + "created": "2011-02-27T23:37:13.072Z", + "0.8.0": "2011-02-27T23:37:13.533Z", + "0.8.1": "2011-04-27T18:18:32.500Z", + "0.8.2": "2011-05-30T11:43:31.774Z", + "0.8.3": "2011-06-08T16:20:20.609Z", + "0.8.4": "2011-08-23T12:11:02.211Z" + }, + "author": { + "name": "Johan Dahlberg", + "email": "dahlberg.johan@gmail.com", + "url": "https://github.com/jfd/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jfd/node-conf.git" + }, + "versions": { + "0.8.0": "http://registry.npmjs.org/conf/0.8.0", + "0.8.1": "http://registry.npmjs.org/conf/0.8.1", + "0.8.2": "http://registry.npmjs.org/conf/0.8.2", + "0.8.3": "http://registry.npmjs.org/conf/0.8.3", + "0.8.4": "http://registry.npmjs.org/conf/0.8.4" + }, + "dist": { + "0.8.0": { + "shasum": "84ff8578cb6027866cce518357e2e135aa13f198", + "tarball": "http://registry.npmjs.org/conf/-/conf-0.8.0.tgz" + }, + "0.8.1": { + "shasum": "d1953e023a4f1ac908d810e0ab80c384dfeb03b2", + "tarball": "http://registry.npmjs.org/conf/-/conf-0.8.1.tgz" + }, + "0.8.2": { + "shasum": "1f213f89b9c742cd4d60861852f8cbd7c1adaaca", + "tarball": "http://registry.npmjs.org/conf/-/conf-0.8.2.tgz" + }, + "0.8.3": { + "shasum": "ddc5bb65f209ea6a554e8c9815106b1d62cd3e42", + "tarball": "http://registry.npmjs.org/conf/-/conf-0.8.3.tgz" + }, + "0.8.4": { + "shasum": "278aa5d8fe0108d2d72215b5c794b5f000333598", + "tarball": "http://registry.npmjs.org/conf/-/conf-0.8.4.tgz" + } + }, + "keywords": [ + "dsl", + "conf", + "config", + "script", + "general" + ], + "url": "http://registry.npmjs.org/conf/" + }, + "confi": { + "name": "confi", + "description": "a simple configuration library", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "jga", + "email": "me@jga.me" + } + ], + "time": { + "modified": "2011-11-28T03:11:43.500Z", + "created": "2011-11-03T23:39:10.829Z", + "0.0.1": "2011-11-03T23:39:12.113Z", + "0.0.2": "2011-11-27T22:50:02.667Z", + "0.0.3": "2011-11-28T03:11:43.500Z" + }, + "author": { + "name": "Greg Allen", + "email": "@jgaui", + "url": "http://jga.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/jgallen23/confi.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/confi/0.0.1", + "0.0.2": "http://registry.npmjs.org/confi/0.0.2", + "0.0.3": "http://registry.npmjs.org/confi/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "94ddfcf3ded3441776c20102473788dea40bcf77", + "tarball": "http://registry.npmjs.org/confi/-/confi-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "faa8e8e60158e5876947c91b031fc20dfdc511d1", + "tarball": "http://registry.npmjs.org/confi/-/confi-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "8c474be0199d731c8c4e3fc329c41b9062ee013a", + "tarball": "http://registry.npmjs.org/confi/-/confi-0.0.3.tgz" + } + }, + "keywords": [ + "config", + "settings", + "env" + ], + "url": "http://registry.npmjs.org/confi/" + }, + "config": { + "name": "config", + "description": "Configuration control for production node deployments", + "dist-tags": { + "latest": "0.4.6" + }, + "maintainers": [ + { + "name": "lorenwest", + "email": "npm@lorenwest.com" + } + ], + "author": { + "name": "Loren West", + "email": "open_source@lorenwest.com" + }, + "time": { + "modified": "2011-11-29T16:57:15.297Z", + "created": "2011-01-03T03:59:19.388Z", + "0.2.3": "2011-01-03T03:59:19.388Z", + "0.2.4": "2011-01-03T03:59:19.388Z", + "0.2.5": "2011-01-03T03:59:19.388Z", + "0.2.7": "2011-01-12T06:37:57.495Z", + "0.2.8": "2011-02-09T15:40:16.431Z", + "0.2.9": "2011-02-22T07:03:08.111Z", + "0.4.0": "2011-07-06T17:43:55.612Z", + "0.4.1": "2011-07-07T14:41:42.207Z", + "0.4.2": "2011-07-12T00:20:11.320Z", + "0.4.3": "2011-08-02T09:22:22.634Z", + "0.4.4": "2011-11-09T15:43:27.638Z", + "0.4.5": "2011-11-16T23:45:29.695Z", + "0.4.6": "2011-11-29T16:57:15.297Z" + }, + "versions": { + "0.2.3": "http://registry.npmjs.org/config/0.2.3", + "0.2.4": "http://registry.npmjs.org/config/0.2.4", + "0.2.5": "http://registry.npmjs.org/config/0.2.5", + "0.2.7": "http://registry.npmjs.org/config/0.2.7", + "0.2.8": "http://registry.npmjs.org/config/0.2.8", + "0.2.9": "http://registry.npmjs.org/config/0.2.9", + "0.4.0": "http://registry.npmjs.org/config/0.4.0", + "0.4.1": "http://registry.npmjs.org/config/0.4.1", + "0.4.2": "http://registry.npmjs.org/config/0.4.2", + "0.4.3": "http://registry.npmjs.org/config/0.4.3", + "0.4.4": "http://registry.npmjs.org/config/0.4.4", + "0.4.5": "http://registry.npmjs.org/config/0.4.5", + "0.4.6": "http://registry.npmjs.org/config/0.4.6" + }, + "dist": { + "0.2.3": { + "tarball": "http://registry.npmjs.org/config/-/config-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "c8bf166172610e770e6f2fe528de00460be4dd4c", + "tarball": "http://registry.npmjs.org/config/-/config-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "4ba2a4d81ac3d44ad8918b907e3d30e9559c7134", + "tarball": "http://registry.npmjs.org/config/-/config-0.2.5.tgz" + }, + "0.2.7": { + "shasum": "4c58e739a77f0f944fffe007ed0d431e842c934e", + "tarball": "http://registry.npmjs.org/config/-/config-0.2.7.tgz" + }, + "0.2.8": { + "shasum": "ddc40b3b219812edfbca0ca0237d3f677018f22a", + "tarball": "http://registry.npmjs.org/config/-/config-0.2.8.tgz" + }, + "0.2.9": { + "shasum": "53841c333cbb0d64cd665ddc89dbf6ce1929cb26", + "tarball": "http://registry.npmjs.org/config/-/config-0.2.9.tgz" + }, + "0.4.0": { + "shasum": "95f7cdf56a1c07adb9e01a27440cec903ac1dd1a", + "tarball": "http://registry.npmjs.org/config/-/config-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "3321c051655eb414d6c9ca928b83b0863512a496", + "tarball": "http://registry.npmjs.org/config/-/config-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "d29c7caf1cf51d9bd4304d103d87d4823a012eba", + "tarball": "http://registry.npmjs.org/config/-/config-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "b43e623e7cab68c7a58e3ddda5df538596faa3d1", + "tarball": "http://registry.npmjs.org/config/-/config-0.4.3.tgz" + }, + "0.4.4": { + "shasum": "4969365508bddd04d65494daaa0ab4aac90d831e", + "tarball": "http://registry.npmjs.org/config/-/config-0.4.4.tgz" + }, + "0.4.5": { + "shasum": "6f0abbd25335d97e3799ea34a97be956002d9d78", + "tarball": "http://registry.npmjs.org/config/-/config-0.4.5.tgz" + }, + "0.4.6": { + "shasum": "e8c03ab9dea7f069a222048e5f56eaf1cb5cc67e", + "tarball": "http://registry.npmjs.org/config/-/config-0.4.6.tgz" + } + }, + "url": "http://registry.npmjs.org/config/" + }, + "config-chain": { + "name": "config-chain", + "description": "HANDLE CONFIGURATION ONCE AND FOR ALL", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-11-05T12:50:58.792Z", + "created": "2011-11-05T12:50:54.160Z", + "0.1.0": "2011-11-05T12:50:58.792Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com", + "url": "http://bit.ly/dominictarr" + }, + "repository": { + "type": "git", + "url": "git://github.com/dominictarr/configurator.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/config-chain/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "fd8fa4e9f8db342e21e1d8f4c0f46ba5a23b64c8", + "tarball": "http://registry.npmjs.org/config-chain/-/config-chain-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/config-chain/" + }, + "config-loader": { + "name": "config-loader", + "description": "Recursively load JSON config files", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "deoxxa", + "email": "deoxxa@fknsrs.biz" + } + ], + "time": { + "modified": "2011-07-26T03:37:15.295Z", + "created": "2011-07-26T03:37:13.445Z", + "0.0.1": "2011-07-26T03:37:15.295Z" + }, + "author": { + "name": "Conrad Pankoff", + "email": "deoxxa@fknsrs.biz", + "url": "http://www.fknsrs.biz/" + }, + "repository": { + "type": "git", + "url": "git://github.com/deoxxa/node-config-loader.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/config-loader/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "c38ad17fc0f7baf583507ae035d0115ec9a58884", + "tarball": "http://registry.npmjs.org/config-loader/-/config-loader-0.0.1.tgz" + } + }, + "keywords": [ + "config", + "recursive" + ], + "url": "http://registry.npmjs.org/config-loader/" + }, + "configjs": { + "name": "configjs", + "description": "Configuration loader", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "baryshev", + "email": "vadimbaryshev@gmail.com" + } + ], + "time": { + "modified": "2011-12-07T11:11:24.385Z", + "created": "2011-10-09T01:19:28.362Z", + "0.1.0": "2011-12-07T10:40:49.544Z", + "0.2.0": "2011-12-04T21:44:53.288Z", + "0.2.1": "2011-12-07T10:40:49.544Z", + "0.2.2": "2011-12-07T11:11:24.385Z" + }, + "author": { + "name": "Vadim M. Baryshev", + "email": "vadimbaryshev@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/configjs/0.1.0", + "0.2.0": "http://registry.npmjs.org/configjs/0.2.0", + "0.2.1": "http://registry.npmjs.org/configjs/0.2.1", + "0.2.2": "http://registry.npmjs.org/configjs/0.2.2" + }, + "dist": { + "0.1.0": { + "shasum": "de8f529cabec13c921e8c8d94373d43c23bd65cb", + "tarball": "http://registry.npmjs.org/configjs/-/configjs-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "253fc938905cbf6a3933fe5ad2e9117289ec9b42", + "tarball": "http://registry.npmjs.org/configjs/-/configjs-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "88fabbd9bab14d452a10fa430479da956f00c73f", + "tarball": "http://registry.npmjs.org/configjs/-/configjs-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "dd075d2dd77e1222f97762f26cd5176ff5f238ba", + "tarball": "http://registry.npmjs.org/configjs/-/configjs-0.2.2.tgz" + } + }, + "keywords": [ + "config" + ], + "url": "http://registry.npmjs.org/configjs/" + }, + "configr": { + "name": "configr", + "description": "A library parse JSON configuration files and monitor for changes.", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "# node-configr - Configure your apps\n\n## Installation\n\n npm install configr\n\n## What's it do?\n\nIt allows you to parse and merge multiple JSON configuration files (allowing \nyou to create environment specific configuration) and then access your configuration\nthrough a simple interface.\n\n## Config files\n\nYour applications configuration takes the form of simple JSON files. You create a directory\nto store your config files, the config files stored in the root are merged and form the 'base'\nconfiguration that is shares between all environments.\n\nTo create environment specific overrides you create sub directories, for each environment, and\nplace the configuration files in the there for each environment. For example, you start off with a\nconfig dir, and in there you have 'general.json' and 'db.json' files. See below\n\n // general.json\n {\n \"app_name\" : \"test_app\",\n \"hawtness\" : \"extreme\"\n }\n\n // db.json\n {\n \"host\" : \"127.0.0.1\",\n \"user\" : \"myuser\",\n \"pass\" : \"mypass\",\n \"db\" : \"mydb\"\n }\n\nThese files are merged into an internal structure:\n\n {\n \"general\" : {\n \"app_name\" : \"test_app\",\n \"hawtness\" : \"extreme\"\n },\n\n \"db\" : {\n \"host\" : \"127.0.0.1\",\n \"user\" : \"myuser\",\n \"pass\" : \"mypass\",\n \"db\" : \"mydb\"\n }\n }\n\nYou can then create environment specific config overrides; let's create a dev environment; create \na folder called 'dev' in the config dir, and we add a db.json file with specific overrides for \nthe dev environment. \n\n {\n \"host\" : \"dev.db.com\",\n \"user\" : \"devuser\",\n \"pass\" : \"devpass\"\n }\n\nWhen you create a configr instance (as shown below) with `require(\"configr\").create('dev');` \nThe internal structure will be as follows:\n\n {\n \"general\" : {\n \"app_name\" : \"test_app\",\n \"hawtness\" : \"extreme\"\n },\n\n \"db\" : {\n \"host\" : \"dev.db.com\", // Overriden\n \"user\" : \"devuser\", // Overriden\n \"pass\" : \"devpass\", // Overriden\n \"db\" : \"mydb\"\n }\n }\n\nConfigr will monitor for any changes to loaded config files and load the changed files dynamically.\n\n## Usage\n\n // Create a new configr instance for the provided environment. This is any arbitary name; \n // dev, staging, prod, etc. (you can have multiple configr instances that are independant \n // of one another).\n\n var c = require(\"configr\").create('dev');\n\n // Set the directory that contains your JSON files.\n\n c.addConfigDir('/my/config/dir');\n\t\n // Access the configuration values\n\n c.getConfig().db // will return { \"host\" : \"dev.db.com\", \"user\" : \"devuser\", \"pass\" : \"devpass\", \"db\" : \"mydb\"}\n\n c.getConfig().general.app_name // will return \"test_app\"\n\n## Bugs\n\nSee .\n", + "maintainers": [ + { + "name": "antz29", + "email": "jp@antz29.com" + } + ], + "time": { + "modified": "2011-11-14T10:57:09.986Z", + "created": "2011-11-14T02:51:54.540Z", + "0.0.1": "2011-11-14T02:51:56.200Z", + "0.0.2": "2011-11-14T02:52:08.164Z", + "0.1.0": "2011-11-14T10:56:33.257Z" + }, + "author": { + "name": "John Le Drew", + "email": "jp@antz29.com", + "url": "http://antz29.com" + }, + "repository": { + "type": "git", + "url": "git:/git://github.com/antz29/node-configr.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/configr/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "a0041d88d28d8d0bd7694a88b6c90ce248cd1b2a", + "tarball": "http://registry.npmjs.org/configr/-/configr-0.1.0.tgz" + } + }, + "keywords": [ + "configuration", + "json" + ], + "url": "http://registry.npmjs.org/configr/" + }, + "configurator": { + "name": "configurator", + "description": "Flexible JSON based configurations with inheritence", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "bartt", + "email": "bart@zazengo.com" + } + ], + "author": { + "name": "Bart Teeuwisse", + "email": "bart@zazengo.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/configurator/0.1.0", + "0.1.1": "http://registry.npmjs.org/configurator/0.1.1" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/configurator/-/configurator-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://registry.npmjs.org/configurator/-/configurator-0.1.1.tgz" + } + }, + "keywords": [ + "zazengo", + "configuration" + ], + "url": "http://registry.npmjs.org/configurator/" + }, + "CONFIGURATOR": { + "name": "CONFIGURATOR", + "description": "HANDLE CONFIGURATION ONCE AND FOR ALL", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-08-31T12:27:47.929Z", + "created": "2011-08-31T12:27:43.147Z", + "0.0.0": "2011-08-31T12:27:47.929Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com", + "url": "http://bit.ly/dominictarr" + }, + "repository": { + "type": "git", + "url": "git://github.com/dominictarr/configurator.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/CONFIGURATOR/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "cebdea8fb25d91c793c3787190dbc13505dee9a1", + "tarball": "http://registry.npmjs.org/CONFIGURATOR/-/CONFIGURATOR-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/CONFIGURATOR/" + }, + "confjs": { + "name": "confjs", + "description": "config file reader", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": null, + "maintainers": [ + { + "name": "y", + "email": "y@pont5.com" + } + ], + "time": { + "modified": "2011-11-25T16:55:38.574Z", + "created": "2011-11-25T16:55:37.363Z", + "0.0.1": "2011-11-25T16:55:38.574Z" + }, + "author": { + "name": "Aaron Yodaiken" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/confjs/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "8a4737f5ec2dec7d7d3ee4761408fa9c1a21a8f1", + "tarball": "http://registry.npmjs.org/confjs/-/confjs-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/confjs/" + }, + "confu": { + "name": "confu", + "description": "Simplistic config parsing for node.js", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "stagas", + "email": "gstagas@gmail.com" + } + ], + "time": { + "modified": "2011-04-25T17:28:16.350Z", + "created": "2011-04-25T13:25:33.583Z", + "0.0.1": "2011-04-25T13:25:34.461Z", + "0.0.2": "2011-04-25T13:28:45.213Z", + "0.0.3": "2011-04-25T17:28:16.350Z" + }, + "author": { + "name": "George Stagas", + "email": "gstagas@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/stagas/confu.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/confu/0.0.1", + "0.0.2": "http://registry.npmjs.org/confu/0.0.2", + "0.0.3": "http://registry.npmjs.org/confu/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "5e5d152959dc8b2a0f56c8e2c9102f31beec2e83", + "tarball": "http://registry.npmjs.org/confu/-/confu-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "8110bd18769670da853d81c156815dccc5178c9f", + "tarball": "http://registry.npmjs.org/confu/-/confu-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "9df66809c72d74af70fbdaac31c2bde24f24574d", + "tarball": "http://registry.npmjs.org/confu/-/confu-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/confu/" + }, + "confy": { + "name": "confy", + "description": "Manage settings library, like as pit.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "hokaccha", + "email": "k.hokamura@gmail.com" + } + ], + "time": { + "modified": "2011-11-05T15:13:49.950Z", + "created": "2011-10-03T16:19:10.268Z", + "0.1.0": "2011-10-03T16:19:11.597Z", + "0.1.1": "2011-11-05T15:13:49.950Z" + }, + "author": { + "name": "Kazuhito Hokamura", + "email": "k.hokamura@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/hokaccha/node-confy.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/confy/0.1.0", + "0.1.1": "http://registry.npmjs.org/confy/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "e589a537ef44a21c99a35c473e15fb6016006fe5", + "tarball": "http://registry.npmjs.org/confy/-/confy-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "edebf5d5451dd35b94a8197b9888ea57078fe266", + "tarball": "http://registry.npmjs.org/confy/-/confy-0.1.1.tgz" + } + }, + "keywords": [ + "config", + "cli", + "pit" + ], + "url": "http://registry.npmjs.org/confy/" + }, + "connect": { + "name": "connect", + "description": "High performance middleware framework", + "dist-tags": { + "latest": "1.8.2" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + }, + { + "name": "creationix", + "email": "tim@creationix.com" + } + ], + "time": { + "modified": "2011-12-03T17:19:22.930Z", + "created": "2010-12-28T11:06:24.976Z", + "0.0.1": "2010-12-28T11:06:24.976Z", + "0.0.2": "2010-12-28T11:06:24.976Z", + "0.0.3": "2010-12-28T11:06:24.976Z", + "0.0.4": "2010-12-28T11:06:24.976Z", + "0.0.5": "2010-12-28T11:06:24.976Z", + "0.0.6": "2010-12-28T11:06:24.976Z", + "0.1.0": "2010-12-28T11:06:24.976Z", + "0.2.0": "2010-12-28T11:06:24.976Z", + "0.2.1": "2010-12-28T11:06:24.976Z", + "0.2.2": "2010-12-28T11:06:24.976Z", + "0.2.3": "2010-12-28T11:06:24.976Z", + "0.2.4": "2010-12-28T11:06:24.976Z", + "0.2.5": "2010-12-28T11:06:24.976Z", + "0.2.6": "2010-12-28T11:06:24.976Z", + "0.2.7": "2010-12-28T11:06:24.976Z", + "0.3.0": "2010-12-28T11:06:24.976Z", + "0.4.0": "2010-12-28T11:06:24.976Z", + "0.5.0": "2010-12-28T11:06:24.976Z", + "0.5.1": "2010-12-28T11:06:24.976Z", + "0.5.2": "2010-12-28T12:02:37.013Z", + "0.5.3": "2011-01-05T19:53:11.213Z", + "0.5.4": "2011-01-07T17:53:05.190Z", + "0.5.5": "2011-01-13T18:57:39.841Z", + "0.5.6": "2011-01-23T08:23:42.157Z", + "0.5.7": "2011-02-01T16:30:24.708Z", + "0.5.8": "2011-02-04T21:22:32.044Z", + "0.5.9": "2011-02-09T20:49:45.101Z", + "0.5.10": "2011-02-14T23:20:48.194Z", + "1.0.0": "2011-03-01T18:28:24.806Z", + "1.0.1": "2011-03-02T08:08:16.875Z", + "1.0.2": "2011-03-03T06:22:15.731Z", + "1.0.3": "2011-03-03T18:32:51.196Z", + "1.0.4": "2011-03-09T18:18:47.904Z", + "1.0.5": "2011-03-09T20:58:09.908Z", + "1.0.6": "2011-03-09T23:38:41.257Z", + "1.1.0": "2011-03-17T16:02:07.865Z", + "1.1.1": "2011-03-18T15:50:36.429Z", + "1.1.2": "2011-03-21T19:01:20.029Z", + "1.1.3": "2011-03-21T20:04:19.320Z", + "1.1.4": "2011-03-23T17:03:45.333Z", + "1.1.5": "2011-03-27T19:59:48.859Z", + "1.2.0": "2011-03-30T18:57:53.950Z", + "1.2.1": "2011-03-30T19:17:05.438Z", + "1.2.2": "2011-04-05T17:35:40.823Z", + "1.2.3": "2011-04-05T18:23:49.870Z", + "1.3.0": "2011-04-07T06:55:28.069Z", + "1.4.0": "2011-04-25T16:32:22.757Z", + "1.4.1": "2011-05-08T17:30:43.199Z", + "1.4.2": "2011-05-27T15:45:36.320Z", + "1.4.3": "2011-06-06T17:21:28.943Z", + "1.4.4": "2011-06-16T18:06:22.372Z", + "1.4.5": "2011-06-17T15:27:43.286Z", + "1.4.6": "2011-06-18T23:19:42.120Z", + "1.5.0": "2011-06-21T05:13:53.487Z", + "1.5.1": "2011-06-21T06:07:08.108Z", + "1.5.2": "2011-07-06T16:00:11.234Z", + "1.6.0": "2011-07-10T20:28:15.171Z", + "1.6.1": "2011-08-03T21:31:39.962Z", + "1.6.2": "2011-08-15T23:07:21.103Z", + "1.6.3": "2011-08-26T15:48:53.133Z", + "1.6.4": "2011-08-26T21:19:03.344Z", + "1.7.0": "2011-09-01T00:09:40.672Z", + "1.7.1": "2011-09-12T17:18:02.395Z", + "2.0.0alpha1": "2011-10-05T22:04:03.009Z", + "1.7.2": "2011-10-24T21:34:02.173Z", + "1.7.3": "2011-11-11T17:40:30.424Z", + "1.8.0": "2011-11-17T19:15:11.730Z", + "1.8.1": "2011-11-22T03:08:54.829Z", + "1.8.2": "2011-12-03T17:19:22.930Z" + }, + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca", + "url": "http://tjholowaychuk.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/senchalabs/connect.git" + }, + "users": { + "kwerty": true, + "vesln": true, + "naholyr": true + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/connect/0.0.1", + "0.0.2": "http://registry.npmjs.org/connect/0.0.2", + "0.0.3": "http://registry.npmjs.org/connect/0.0.3", + "0.0.4": "http://registry.npmjs.org/connect/0.0.4", + "0.0.5": "http://registry.npmjs.org/connect/0.0.5", + "0.0.6": "http://registry.npmjs.org/connect/0.0.6", + "0.1.0": "http://registry.npmjs.org/connect/0.1.0", + "0.2.0": "http://registry.npmjs.org/connect/0.2.0", + "0.2.1": "http://registry.npmjs.org/connect/0.2.1", + "0.2.2": "http://registry.npmjs.org/connect/0.2.2", + "0.2.3": "http://registry.npmjs.org/connect/0.2.3", + "0.2.4": "http://registry.npmjs.org/connect/0.2.4", + "0.2.5": "http://registry.npmjs.org/connect/0.2.5", + "0.2.6": "http://registry.npmjs.org/connect/0.2.6", + "0.2.7": "http://registry.npmjs.org/connect/0.2.7", + "0.3.0": "http://registry.npmjs.org/connect/0.3.0", + "0.4.0": "http://registry.npmjs.org/connect/0.4.0", + "0.5.0": "http://registry.npmjs.org/connect/0.5.0", + "0.5.1": "http://registry.npmjs.org/connect/0.5.1", + "0.5.2": "http://registry.npmjs.org/connect/0.5.2", + "0.5.3": "http://registry.npmjs.org/connect/0.5.3", + "0.5.4": "http://registry.npmjs.org/connect/0.5.4", + "0.5.5": "http://registry.npmjs.org/connect/0.5.5", + "0.5.6": "http://registry.npmjs.org/connect/0.5.6", + "0.5.7": "http://registry.npmjs.org/connect/0.5.7", + "0.5.8": "http://registry.npmjs.org/connect/0.5.8", + "0.5.9": "http://registry.npmjs.org/connect/0.5.9", + "0.5.10": "http://registry.npmjs.org/connect/0.5.10", + "1.0.0": "http://registry.npmjs.org/connect/1.0.0", + "1.0.1": "http://registry.npmjs.org/connect/1.0.1", + "1.0.2": "http://registry.npmjs.org/connect/1.0.2", + "1.0.3": "http://registry.npmjs.org/connect/1.0.3", + "1.0.4": "http://registry.npmjs.org/connect/1.0.4", + "1.0.5": "http://registry.npmjs.org/connect/1.0.5", + "1.0.6": "http://registry.npmjs.org/connect/1.0.6", + "1.1.0": "http://registry.npmjs.org/connect/1.1.0", + "1.1.1": "http://registry.npmjs.org/connect/1.1.1", + "1.1.2": "http://registry.npmjs.org/connect/1.1.2", + "1.1.3": "http://registry.npmjs.org/connect/1.1.3", + "1.1.4": "http://registry.npmjs.org/connect/1.1.4", + "1.1.5": "http://registry.npmjs.org/connect/1.1.5", + "1.2.0": "http://registry.npmjs.org/connect/1.2.0", + "1.2.1": "http://registry.npmjs.org/connect/1.2.1", + "1.2.2": "http://registry.npmjs.org/connect/1.2.2", + "1.2.3": "http://registry.npmjs.org/connect/1.2.3", + "1.3.0": "http://registry.npmjs.org/connect/1.3.0", + "1.4.0": "http://registry.npmjs.org/connect/1.4.0", + "1.4.1": "http://registry.npmjs.org/connect/1.4.1", + "1.4.2": "http://registry.npmjs.org/connect/1.4.2", + "1.4.3": "http://registry.npmjs.org/connect/1.4.3", + "1.4.4": "http://registry.npmjs.org/connect/1.4.4", + "1.4.5": "http://registry.npmjs.org/connect/1.4.5", + "1.4.6": "http://registry.npmjs.org/connect/1.4.6", + "1.5.0": "http://registry.npmjs.org/connect/1.5.0", + "1.5.1": "http://registry.npmjs.org/connect/1.5.1", + "1.5.2": "http://registry.npmjs.org/connect/1.5.2", + "1.6.0": "http://registry.npmjs.org/connect/1.6.0", + "1.6.1": "http://registry.npmjs.org/connect/1.6.1", + "1.6.2": "http://registry.npmjs.org/connect/1.6.2", + "1.6.3": "http://registry.npmjs.org/connect/1.6.3", + "1.6.4": "http://registry.npmjs.org/connect/1.6.4", + "1.7.0": "http://registry.npmjs.org/connect/1.7.0", + "1.7.1": "http://registry.npmjs.org/connect/1.7.1", + "1.7.2": "http://registry.npmjs.org/connect/1.7.2", + "1.7.3": "http://registry.npmjs.org/connect/1.7.3", + "1.8.0": "http://registry.npmjs.org/connect/1.8.0", + "1.8.1": "http://registry.npmjs.org/connect/1.8.1", + "1.8.2": "http://registry.npmjs.org/connect/1.8.2" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/connect/-/connect-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/connect/-/connect-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/connect/-/connect-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://registry.npmjs.org/connect/-/connect-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://registry.npmjs.org/connect/-/connect-0.0.5.tgz" + }, + "0.0.6": { + "tarball": "http://registry.npmjs.org/connect/-/connect-0.0.6.tgz" + }, + "0.1.0": { + "tarball": "http://registry.npmjs.org/connect/-/connect-0.1.0.tgz" + }, + "0.2.0": { + "tarball": "http://registry.npmjs.org/connect/-/connect-0.2.0.tgz" + }, + "0.2.1": { + "tarball": "http://registry.npmjs.org/connect/-/connect-0.2.1.tgz" + }, + "0.2.2": { + "tarball": "http://registry.npmjs.org/connect/-/connect-0.2.2.tgz" + }, + "0.2.3": { + "tarball": "http://registry.npmjs.org/connect/-/connect-0.2.3.tgz" + }, + "0.2.4": { + "tarball": "http://registry.npmjs.org/connect/-/connect-0.2.4.tgz" + }, + "0.2.5": { + "tarball": "http://registry.npmjs.org/connect/-/connect-0.2.5.tgz" + }, + "0.2.6": { + "tarball": "http://registry.npmjs.org/connect/-/connect-0.2.6.tgz" + }, + "0.2.7": { + "tarball": "http://registry.npmjs.org/connect/-/connect-0.2.7.tgz" + }, + "0.3.0": { + "tarball": "http://registry.npmjs.org/connect/-/connect-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "98046399291a04efd889643267c8fba17a695ba1", + "tarball": "http://registry.npmjs.org/connect/-/connect-0.4.0.tgz" + }, + "0.5.0": { + "shasum": "c9a1814ba8fa92f2c4910493c568327c0950d977", + "tarball": "http://registry.npmjs.org/connect/-/connect-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "781da5f8c13cc40f0003c02ac824ed7700bb08bf", + "tarball": "http://registry.npmjs.org/connect/-/connect-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "b12c970fe10d75abe0b82c792762ccb7d6d88833", + "tarball": "http://registry.npmjs.org/connect/-/connect-0.5.2.tgz" + }, + "0.5.3": { + "shasum": "2c27ca3f47b8a27cef5d5a9a6c18a1880cbe8a84", + "tarball": "http://registry.npmjs.org/connect/-/connect-0.5.3.tgz" + }, + "0.5.4": { + "shasum": "2b331adf355dc5911958d570b3610f2bd93ffbb7", + "tarball": "http://registry.npmjs.org/connect/-/connect-0.5.4.tgz" + }, + "0.5.5": { + "shasum": "a9f71e934983118cd5ccfcdb704ac9764d97a145", + "tarball": "http://registry.npmjs.org/connect/-/connect-0.5.5.tgz" + }, + "0.5.6": { + "shasum": "3d4e5f913bfc88c4642ab1e86a58ecffbdda8b34", + "tarball": "http://registry.npmjs.org/connect/-/connect-0.5.6.tgz" + }, + "0.5.7": { + "shasum": "0dc47553bdf89ca1ecb4973fffe8be9a5c2a4c1a", + "tarball": "http://registry.npmjs.org/connect/-/connect-0.5.7.tgz" + }, + "0.5.8": { + "shasum": "bd137a1e330057b3f608b7d784e51450afe4a843", + "tarball": "http://registry.npmjs.org/connect/-/connect-0.5.8.tgz" + }, + "0.5.9": { + "shasum": "21068d99fe048528bd4284e8ba82a1834ddf6035", + "tarball": "http://registry.npmjs.org/connect/-/connect-0.5.9.tgz" + }, + "0.5.10": { + "shasum": "195e2559142833df008e5be429f4a3b41238c7dd", + "tarball": "http://registry.npmjs.org/connect/-/connect-0.5.10.tgz" + }, + "1.0.0": { + "shasum": "de35e3c786cddc5269f9f023b1ed5b5b8b552679", + "tarball": "http://registry.npmjs.org/connect/-/connect-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "cddff3723df891024a3f8325fb7143bd52ea4222", + "tarball": "http://registry.npmjs.org/connect/-/connect-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "e46f61c29b75259a6352823bc61767248378fbdd", + "tarball": "http://registry.npmjs.org/connect/-/connect-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "1027e6c7bffb457ecb27e341c0efee93eae342f6", + "tarball": "http://registry.npmjs.org/connect/-/connect-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "fb4f9e0768f2833eb88e300903c18495ac45b950", + "tarball": "http://registry.npmjs.org/connect/-/connect-1.0.4.tgz" + }, + "1.0.5": { + "shasum": "536b870838fd5c58582d78a1c0098bd95d09e76c", + "tarball": "http://registry.npmjs.org/connect/-/connect-1.0.5.tgz" + }, + "1.0.6": { + "shasum": "969602ddba8561fc0fc49e7d6227232c8cf29191", + "tarball": "http://registry.npmjs.org/connect/-/connect-1.0.6.tgz" + }, + "1.1.0": { + "shasum": "32b8ebe8da9336c1658ce1c02495b08cd4c4c121", + "tarball": "http://registry.npmjs.org/connect/-/connect-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "4936f21b585c00d392274b8d39d7be7e2aceade0", + "tarball": "http://registry.npmjs.org/connect/-/connect-1.1.1.tgz" + }, + "1.1.2": { + "shasum": "a61d4eb83540ed870a26cff7e86cbdfb5846705a", + "tarball": "http://registry.npmjs.org/connect/-/connect-1.1.2.tgz" + }, + "1.1.3": { + "shasum": "7fe52ab901a25949c3a8e7c7adab60584663db20", + "tarball": "http://registry.npmjs.org/connect/-/connect-1.1.3.tgz" + }, + "1.1.4": { + "shasum": "e8da0b7705b60d9fd8cb982d8aebd7d57f9cd225", + "tarball": "http://registry.npmjs.org/connect/-/connect-1.1.4.tgz" + }, + "1.1.5": { + "shasum": "ea74ee49b4a4fe37b734d9ec8f36524ad73535da", + "tarball": "http://registry.npmjs.org/connect/-/connect-1.1.5.tgz" + }, + "1.2.0": { + "shasum": "a77ae18e1e114d08792dec86a6d3cf7359e97ddb", + "tarball": "http://registry.npmjs.org/connect/-/connect-1.2.0.tgz" + }, + "1.2.1": { + "shasum": "a20e68ec9af69adda8cc1c500bc61cf811d07104", + "tarball": "http://registry.npmjs.org/connect/-/connect-1.2.1.tgz" + }, + "1.2.2": { + "shasum": "aea0bf18fc7df9b67b81aa3632dbae95943c0569", + "tarball": "http://registry.npmjs.org/connect/-/connect-1.2.2.tgz" + }, + "1.2.3": { + "shasum": "6308d65c3d73a8a07aca1770dee3aef114c421d0", + "tarball": "http://registry.npmjs.org/connect/-/connect-1.2.3.tgz" + }, + "1.3.0": { + "shasum": "ee0d89a79497db60a84f474796ca4842a67da119", + "tarball": "http://registry.npmjs.org/connect/-/connect-1.3.0.tgz" + }, + "1.4.0": { + "shasum": "2479586fd14d3a5555fb6bd587a24a270b07b2cc", + "tarball": "http://registry.npmjs.org/connect/-/connect-1.4.0.tgz" + }, + "1.4.1": { + "shasum": "17d980788e7c1cdf1185d21b33c6d91de2048b41", + "tarball": "http://registry.npmjs.org/connect/-/connect-1.4.1.tgz" + }, + "1.4.2": { + "shasum": "753a90dde8115233ef5eb545b356efb254a6783c", + "tarball": "http://registry.npmjs.org/connect/-/connect-1.4.2.tgz" + }, + "1.4.3": { + "shasum": "4b59ad685b448bb2abf73bd2c0507d89bb69cfb0", + "tarball": "http://registry.npmjs.org/connect/-/connect-1.4.3.tgz" + }, + "1.4.4": { + "shasum": "8c5822eba9f1fd00249a18be8c832bfd4c53709b", + "tarball": "http://registry.npmjs.org/connect/-/connect-1.4.4.tgz" + }, + "1.4.5": { + "shasum": "664ee55901a84c0dc572160bcd5c232676a038d0", + "tarball": "http://registry.npmjs.org/connect/-/connect-1.4.5.tgz" + }, + "1.4.6": { + "shasum": "d4caad1803c074840a5c71aad369d4e84ae94f12", + "tarball": "http://registry.npmjs.org/connect/-/connect-1.4.6.tgz" + }, + "1.5.0": { + "shasum": "9816ca2ca76124161610b7a5f5078fae614fec50", + "tarball": "http://registry.npmjs.org/connect/-/connect-1.5.0.tgz" + }, + "1.5.1": { + "shasum": "1061dbf18f5f4a00f6da52a0c9eab11e70620bfc", + "tarball": "http://registry.npmjs.org/connect/-/connect-1.5.1.tgz" + }, + "1.5.2": { + "shasum": "3efb31448d3c1d1445eebdb542e095e3006cf0d4", + "tarball": "http://registry.npmjs.org/connect/-/connect-1.5.2.tgz" + }, + "1.6.0": { + "shasum": "b6709de655a520f14551ae85362d1214eb81500a", + "tarball": "http://registry.npmjs.org/connect/-/connect-1.6.0.tgz" + }, + "1.6.1": { + "shasum": "fbd6a2c2160d94d79db39970ed471bb374271b45", + "tarball": "http://registry.npmjs.org/connect/-/connect-1.6.1.tgz" + }, + "1.6.2": { + "shasum": "f24bad0ee3df364fb9e462336c2d2d3d12a9b86b", + "tarball": "http://registry.npmjs.org/connect/-/connect-1.6.2.tgz" + }, + "1.6.3": { + "shasum": "97398bd46496f113fb4ac2f302c00acfe5d1013e", + "tarball": "http://registry.npmjs.org/connect/-/connect-1.6.3.tgz" + }, + "1.6.4": { + "shasum": "0ca033ffb6da77969858ae9086064df335979dd6", + "tarball": "http://registry.npmjs.org/connect/-/connect-1.6.4.tgz" + }, + "1.7.0": { + "shasum": "517442de0621b4d4efb0845c38fac744649d9735", + "tarball": "http://registry.npmjs.org/connect/-/connect-1.7.0.tgz" + }, + "1.7.1": { + "shasum": "12fa1de99f887d27160bdefa2ccff864f2be3412", + "tarball": "http://registry.npmjs.org/connect/-/connect-1.7.1.tgz" + }, + "1.7.2": { + "shasum": "ae50fee4a98c939f78451691ea640c1b4d9c1164", + "tarball": "http://registry.npmjs.org/connect/-/connect-1.7.2.tgz" + }, + "1.7.3": { + "shasum": "deab7e7081faf6b2f4eab78122d01b632ea458b9", + "tarball": "http://registry.npmjs.org/connect/-/connect-1.7.3.tgz" + }, + "1.8.0": { + "shasum": "2c88eab3b69e27c1195cba342f5d6fb7b6433f67", + "tarball": "http://registry.npmjs.org/connect/-/connect-1.8.0.tgz" + }, + "1.8.1": { + "shasum": "a37e8c53d7a831d0821edb65634e27eb73b893de", + "tarball": "http://registry.npmjs.org/connect/-/connect-1.8.1.tgz" + }, + "1.8.2": { + "shasum": "83e5dd19144df37de3e4d07faeb33153a849285d", + "tarball": "http://registry.npmjs.org/connect/-/connect-1.8.2.tgz" + } + }, + "keywords": [ + "framework", + "web", + "middleware", + "connect", + "rack" + ], + "url": "http://registry.npmjs.org/connect/" + }, + "connect_facebook": { + "name": "connect_facebook", + "description": "Facebook session support for Connect", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "rsms", + "email": "rasmus@notion.se" + } + ], + "time": { + "modified": "2011-03-20T21:28:18.601Z", + "created": "2011-03-20T21:28:18.213Z", + "0.1.0": "2011-03-20T21:28:18.601Z" + }, + "author": { + "name": "Rasmus Andersson", + "url": "http://rsms.me/" + }, + "repository": { + "type": "git", + "url": "http://github.com/rsms/connect_facebook.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/connect_facebook/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "0eb40ce09b401761399a5ca73b1e5aea5782cfad", + "tarball": "http://registry.npmjs.org/connect_facebook/-/connect_facebook-0.1.0.tgz" + } + }, + "keywords": [ + "connect", + "facebook", + "move" + ], + "url": "http://registry.npmjs.org/connect_facebook/" + }, + "connect_json": { + "name": "connect_json", + "description": "Support for parsing JSON requests and sending JSON responses in Connect", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "rsms", + "email": "rasmus@notion.se" + } + ], + "time": { + "modified": "2011-03-20T17:22:43.468Z", + "created": "2011-03-20T17:22:42.976Z", + "0.1.0": "2011-03-20T17:22:43.468Z" + }, + "author": { + "name": "Rasmus Andersson", + "url": "http://rsms.me/" + }, + "repository": { + "type": "git", + "url": "http://github.com/rsms/connect_json.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/connect_json/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "8a74c7913c884058f28e68ce07becb570c1bc9dc", + "tarball": "http://registry.npmjs.org/connect_json/-/connect_json-0.1.0.tgz" + } + }, + "keywords": [ + "connect", + "move" + ], + "url": "http://registry.npmjs.org/connect_json/" + }, + "connect-access-control": { + "name": "connect-access-control", + "description": "Connect middleware to provide simple role-based access control", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "naholyr", + "email": "naholyr@gmail.com" + } + ], + "time": { + "modified": "2011-07-29T22:08:15.919Z", + "created": "2011-07-29T22:08:14.890Z", + "1.0.0": "2011-07-29T22:08:15.919Z" + }, + "author": { + "name": "Nicolas Chambrier", + "email": "naholyr@gmail.com", + "url": "http://naholyr.fr" + }, + "repository": { + "type": "git", + "url": "git://github.com/naholyr/connect-access-control.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/connect-access-control/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "0a56ec508b9efab1791f48901da1510b3368e607", + "tarball": "http://registry.npmjs.org/connect-access-control/-/connect-access-control-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-access-control/" + }, + "connect-airbrake": { + "name": "connect-airbrake", + "description": "airbrake app middleware for Connect", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "thegoleffect", + "email": "thegoleffect@gmail.com" + } + ], + "time": { + "modified": "2011-09-03T02:02:30.103Z", + "created": "2011-09-03T01:52:12.393Z", + "0.1.0": "2011-09-03T01:52:12.950Z", + "0.2.0": "2011-09-03T02:02:30.103Z" + }, + "author": { + "name": "Van Nguyen", + "email": "thegoleffect@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/connect-airbrake/0.1.0", + "0.2.0": "http://registry.npmjs.org/connect-airbrake/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "0e606f04edb0e7fa58f22c0106825f7b6468c881", + "tarball": "http://registry.npmjs.org/connect-airbrake/-/connect-airbrake-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "cdb573878a8437e5acb01fe9c9bfd26333dfd6c0", + "tarball": "http://registry.npmjs.org/connect-airbrake/-/connect-airbrake-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-airbrake/" + }, + "connect-alive": { + "name": "connect-alive", + "description": "Connect (Node.js) middlware for checking if app is alive or not - optionally via custom condition(s).", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "grimen", + "email": "grimen@gmail.com" + } + ], + "time": { + "modified": "2011-10-29T13:17:29.020Z", + "created": "2011-10-29T13:17:27.018Z", + "0.0.1": "2011-10-29T13:17:29.020Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/merchii/connect-alive.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/connect-alive/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "fe4b33c99f1a001fe596460e3a8f2423f576235d", + "tarball": "http://registry.npmjs.org/connect-alive/-/connect-alive-0.0.1.tgz" + } + }, + "keywords": [ + "connect", + "alive", + "monitoring", + "status" + ], + "url": "http://registry.npmjs.org/connect-alive/" + }, + "connect-analytics": { + "name": "connect-analytics", + "description": "Connect middleware for google analytics (uproxies req.end))", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "quickredfox", + "email": "code@quickredfox.at" + } + ], + "time": { + "modified": "2011-04-03T14:28:50.118Z", + "created": "2011-04-03T14:28:49.871Z", + "0.0.1": "2011-04-03T14:28:50.118Z" + }, + "author": { + "name": "Francois Lafortune", + "email": "code@quickredfox.at", + "url": "http://about.me/quickredfox" + }, + "repository": { + "type": "git", + "url": "git://github.com/quickredfox/connect-analytics.git", + "private": "git@github.com:quickredfox/connect-analytics.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/connect-analytics/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "eafe258827e6852d3eba8fb0fd4bc3c308f9ac1b", + "tarball": "http://registry.npmjs.org/connect-analytics/-/connect-analytics-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-analytics/" + }, + "connect-app-cache": { + "name": "connect-app-cache", + "description": "HTML5 app cache support as connect-middleware", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "podviaznikov", + "email": "podviaznikov@gmail.com" + } + ], + "time": { + "modified": "2011-08-17T22:55:16.983Z", + "created": "2011-08-16T10:50:56.400Z", + "0.0.1": "2011-08-16T10:50:57.384Z", + "0.0.2": "2011-08-16T10:52:02.560Z", + "0.0.3": "2011-08-16T10:52:35.161Z", + "0.0.4": "2011-08-17T08:47:59.608Z", + "0.0.5": "2011-08-17T08:49:52.479Z", + "0.0.6": "2011-08-17T08:59:32.630Z", + "0.0.7": "2011-08-17T09:04:58.940Z", + "0.0.8": "2011-08-17T09:06:08.728Z", + "0.0.9": "2011-08-17T09:09:25.632Z", + "0.1.0": "2011-08-17T09:14:48.708Z", + "0.1.1": "2011-08-17T09:15:44.869Z", + "0.2.0": "2011-08-17T09:36:53.730Z", + "0.2.1": "2011-08-17T22:55:16.983Z" + }, + "author": { + "name": "Enginimation Studio", + "email": "hello@enginimation.com", + "url": "enginimation.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/podviaznikov/connect-app-cache.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/connect-app-cache/0.0.1", + "0.0.2": "http://registry.npmjs.org/connect-app-cache/0.0.2", + "0.0.3": "http://registry.npmjs.org/connect-app-cache/0.0.3", + "0.0.4": "http://registry.npmjs.org/connect-app-cache/0.0.4", + "0.0.5": "http://registry.npmjs.org/connect-app-cache/0.0.5", + "0.0.6": "http://registry.npmjs.org/connect-app-cache/0.0.6", + "0.0.7": "http://registry.npmjs.org/connect-app-cache/0.0.7", + "0.0.8": "http://registry.npmjs.org/connect-app-cache/0.0.8", + "0.0.9": "http://registry.npmjs.org/connect-app-cache/0.0.9", + "0.1.0": "http://registry.npmjs.org/connect-app-cache/0.1.0", + "0.1.1": "http://registry.npmjs.org/connect-app-cache/0.1.1", + "0.2.0": "http://registry.npmjs.org/connect-app-cache/0.2.0", + "0.2.1": "http://registry.npmjs.org/connect-app-cache/0.2.1" + }, + "dist": { + "0.0.1": { + "shasum": "c33a7fc1ab9494b152b49872d362e8303e680496", + "tarball": "http://registry.npmjs.org/connect-app-cache/-/connect-app-cache-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "1c31befa6cd0385b373b05ee037406cbb727fd17", + "tarball": "http://registry.npmjs.org/connect-app-cache/-/connect-app-cache-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "41a4067d40cf90726bf6f9d28729568c0442126f", + "tarball": "http://registry.npmjs.org/connect-app-cache/-/connect-app-cache-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "89e8f87d40aea3dbad7ac23aed90becf64be02d2", + "tarball": "http://registry.npmjs.org/connect-app-cache/-/connect-app-cache-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "4feaf8f6ebb7e16e6e3c71f6c11fabfb7ee224f6", + "tarball": "http://registry.npmjs.org/connect-app-cache/-/connect-app-cache-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "e6afd5a76f74317e442934e27991288db4bc5ab1", + "tarball": "http://registry.npmjs.org/connect-app-cache/-/connect-app-cache-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "f51b5dec695da6b4c7b91a7f4ea9252bd9774ffd", + "tarball": "http://registry.npmjs.org/connect-app-cache/-/connect-app-cache-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "314a923a16ec352883c0423772d9af433529e25c", + "tarball": "http://registry.npmjs.org/connect-app-cache/-/connect-app-cache-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "cc739dd10522868e4aea214c5d27e87b423abe48", + "tarball": "http://registry.npmjs.org/connect-app-cache/-/connect-app-cache-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "cbb0116419a2119d93a2924288dc2eac458afa0c", + "tarball": "http://registry.npmjs.org/connect-app-cache/-/connect-app-cache-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "cee5d7e268a61710c457beb32c0da00e14832ae8", + "tarball": "http://registry.npmjs.org/connect-app-cache/-/connect-app-cache-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "e162203d452eaff59f5edb03bad536aca05a1f62", + "tarball": "http://registry.npmjs.org/connect-app-cache/-/connect-app-cache-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "29d7cf77f402e52a57b92abb0a151830636c562a", + "tarball": "http://registry.npmjs.org/connect-app-cache/-/connect-app-cache-0.2.1.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-app-cache/" + }, + "connect-assetmanager": { + "name": "connect-assetmanager", + "description": "Middleware for Connect (node.js) for handling your static assets.", + "dist-tags": { + "latest": "0.0.24" + }, + "maintainers": [ + { + "name": "mape", + "email": "mape@mape.me" + } + ], + "author": { + "name": "Mathias Pettersson", + "email": "mape@mape.me" + }, + "repository": [ + { + "type": "git", + "url": "http://github.com/mape/connect-assetmanager.git" + } + ], + "time": { + "modified": "2011-10-04T12:35:24.578Z", + "created": "2011-03-02T21:15:15.299Z", + "0.0.1": "2011-03-02T21:15:15.299Z", + "0.0.10": "2011-03-02T21:15:15.299Z", + "0.0.11": "2011-03-02T21:15:15.299Z", + "0.0.12": "2011-03-02T21:15:15.299Z", + "0.0.2": "2011-03-02T21:15:15.299Z", + "0.0.3": "2011-03-02T21:15:15.299Z", + "0.0.4": "2011-03-02T21:15:15.299Z", + "0.0.5": "2011-03-02T21:15:15.299Z", + "0.0.6": "2011-03-02T21:15:15.299Z", + "0.0.7": "2011-03-02T21:15:15.299Z", + "0.0.9": "2011-03-02T21:15:15.299Z", + "0.0.13": "2011-03-02T21:15:15.299Z", + "0.0.14": "2011-03-02T21:15:15.299Z", + "0.0.15": "2011-03-02T21:15:15.299Z", + "0.0.16": "2011-03-02T21:15:15.299Z", + "0.0.17": "2011-03-02T21:15:15.299Z", + "0.0.18": "2011-03-02T21:15:15.299Z", + "0.0.20": "2011-05-30T22:06:03.383Z", + "0.0.21": "2011-07-19T15:52:08.830Z", + "0.0.22": "2011-08-27T00:50:30.218Z", + "0.0.23": "2011-08-27T01:14:50.363Z", + "0.0.24": "2011-10-04T12:35:24.578Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/connect-assetmanager/0.0.1", + "0.0.10": "http://registry.npmjs.org/connect-assetmanager/0.0.10", + "0.0.11": "http://registry.npmjs.org/connect-assetmanager/0.0.11", + "0.0.12": "http://registry.npmjs.org/connect-assetmanager/0.0.12", + "0.0.2": "http://registry.npmjs.org/connect-assetmanager/0.0.2", + "0.0.3": "http://registry.npmjs.org/connect-assetmanager/0.0.3", + "0.0.4": "http://registry.npmjs.org/connect-assetmanager/0.0.4", + "0.0.5": "http://registry.npmjs.org/connect-assetmanager/0.0.5", + "0.0.6": "http://registry.npmjs.org/connect-assetmanager/0.0.6", + "0.0.7": "http://registry.npmjs.org/connect-assetmanager/0.0.7", + "0.0.9": "http://registry.npmjs.org/connect-assetmanager/0.0.9", + "0.0.13": "http://registry.npmjs.org/connect-assetmanager/0.0.13", + "0.0.14": "http://registry.npmjs.org/connect-assetmanager/0.0.14", + "0.0.15": "http://registry.npmjs.org/connect-assetmanager/0.0.15", + "0.0.16": "http://registry.npmjs.org/connect-assetmanager/0.0.16", + "0.0.17": "http://registry.npmjs.org/connect-assetmanager/0.0.17", + "0.0.18": "http://registry.npmjs.org/connect-assetmanager/0.0.18", + "0.0.20": "http://registry.npmjs.org/connect-assetmanager/0.0.20", + "0.0.21": "http://registry.npmjs.org/connect-assetmanager/0.0.21", + "0.0.22": "http://registry.npmjs.org/connect-assetmanager/0.0.22", + "0.0.23": "http://registry.npmjs.org/connect-assetmanager/0.0.23", + "0.0.24": "http://registry.npmjs.org/connect-assetmanager/0.0.24" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/connect-assetmanager/-/connect-assetmanager-0.0.1.tgz" + }, + "0.0.10": { + "tarball": "http://packages:5984/connect-assetmanager/-/connect-assetmanager-0.0.10.tgz" + }, + "0.0.11": { + "tarball": "http://packages:5984/connect-assetmanager/-/connect-assetmanager-0.0.11.tgz" + }, + "0.0.12": { + "tarball": "http://packages:5984/connect-assetmanager/-/connect-assetmanager-0.0.12.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/connect-assetmanager/-/connect-assetmanager-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/connect-assetmanager/-/connect-assetmanager-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://packages:5984/connect-assetmanager/-/connect-assetmanager-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://packages:5984/connect-assetmanager/-/connect-assetmanager-0.0.5.tgz" + }, + "0.0.6": { + "tarball": "http://packages:5984/connect-assetmanager/-/connect-assetmanager-0.0.6.tgz" + }, + "0.0.7": { + "tarball": "http://packages:5984/connect-assetmanager/-/connect-assetmanager-0.0.7.tgz" + }, + "0.0.9": { + "tarball": "http://packages:5984/connect-assetmanager/-/connect-assetmanager-0.0.9.tgz" + }, + "0.0.13": { + "tarball": "http://registry.npmjs.org/connect-assetmanager/-/connect-assetmanager-0.0.13.tgz" + }, + "0.0.14": { + "tarball": "http://registry.npmjs.org/connect-assetmanager/-/connect-assetmanager-0.0.14.tgz" + }, + "0.0.15": { + "tarball": "http://registry.npmjs.org/connect-assetmanager/-/connect-assetmanager-0.0.15.tgz" + }, + "0.0.16": { + "tarball": "http://registry.npmjs.org/connect-assetmanager/-/connect-assetmanager-0.0.16.tgz" + }, + "0.0.17": { + "tarball": "http://registry.npmjs.org/connect-assetmanager/-/connect-assetmanager-0.0.17.tgz" + }, + "0.0.18": { + "shasum": "db0aba91f2043abc82752c65c7c2f325509e8baf", + "tarball": "http://registry.npmjs.org/connect-assetmanager/-/connect-assetmanager-0.0.18.tgz" + }, + "0.0.20": { + "shasum": "fb23f221b560814c39754e2f66be8c156c5b8058", + "tarball": "http://registry.npmjs.org/connect-assetmanager/-/connect-assetmanager-0.0.20.tgz" + }, + "0.0.21": { + "shasum": "6997208034810ad1221bea9ca67be83f422dc74c", + "tarball": "http://registry.npmjs.org/connect-assetmanager/-/connect-assetmanager-0.0.21.tgz" + }, + "0.0.22": { + "shasum": "96a34ed36f5f09f8783ba0bea8d6be869b2468b0", + "tarball": "http://registry.npmjs.org/connect-assetmanager/-/connect-assetmanager-0.0.22.tgz" + }, + "0.0.23": { + "shasum": "5f32d1865ce5b031551fd60c0227380f45a56ed4", + "tarball": "http://registry.npmjs.org/connect-assetmanager/-/connect-assetmanager-0.0.23.tgz" + }, + "0.0.24": { + "shasum": "c315b6d1d16cf47b2d0f666786459658dc905cfd", + "tarball": "http://registry.npmjs.org/connect-assetmanager/-/connect-assetmanager-0.0.24.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-assetmanager/" + }, + "connect-assetmanager-handlers": { + "name": "connect-assetmanager-handlers", + "description": "Post and pre hooks for connect-assetmanager.", + "dist-tags": { + "latest": "0.0.17" + }, + "maintainers": [ + { + "name": "mape", + "email": "mape@mape.me" + } + ], + "author": { + "name": "Mathias Pettersson", + "email": "mape@mape.me" + }, + "repository": { + "type": "git", + "url": "http://github.com/mape/connect-assetmanager-handlers.git" + }, + "time": { + "modified": "2011-01-14T18:59:13.003Z", + "created": "2011-01-04T16:26:54.399Z", + "0.0.1": "2011-01-04T16:26:54.399Z", + "0.0.10": "2011-01-04T16:26:54.399Z", + "0.0.11": "2011-01-04T16:26:54.399Z", + "0.0.12": "2011-01-04T16:26:54.399Z", + "0.0.2": "2011-01-04T16:26:54.399Z", + "0.0.3": "2011-01-04T16:26:54.399Z", + "0.0.4": "2011-01-04T16:26:54.399Z", + "0.0.5": "2011-01-04T16:26:54.399Z", + "0.0.6": "2011-01-04T16:26:54.399Z", + "0.0.7": "2011-01-04T16:26:54.399Z", + "0.0.8": "2011-01-04T16:26:54.399Z", + "0.0.9": "2011-01-04T16:26:54.399Z", + "0.0.13": "2011-01-04T16:26:54.399Z", + "0.0.14": "2011-01-04T16:26:54.399Z", + "0.0.15": "2011-01-04T16:27:49.470Z", + "0.0.16": "2011-01-09T13:48:46.196Z", + "0.0.17": "2011-01-14T18:59:13.003Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/connect-assetmanager-handlers/0.0.1", + "0.0.10": "http://registry.npmjs.org/connect-assetmanager-handlers/0.0.10", + "0.0.11": "http://registry.npmjs.org/connect-assetmanager-handlers/0.0.11", + "0.0.12": "http://registry.npmjs.org/connect-assetmanager-handlers/0.0.12", + "0.0.2": "http://registry.npmjs.org/connect-assetmanager-handlers/0.0.2", + "0.0.3": "http://registry.npmjs.org/connect-assetmanager-handlers/0.0.3", + "0.0.4": "http://registry.npmjs.org/connect-assetmanager-handlers/0.0.4", + "0.0.5": "http://registry.npmjs.org/connect-assetmanager-handlers/0.0.5", + "0.0.6": "http://registry.npmjs.org/connect-assetmanager-handlers/0.0.6", + "0.0.7": "http://registry.npmjs.org/connect-assetmanager-handlers/0.0.7", + "0.0.8": "http://registry.npmjs.org/connect-assetmanager-handlers/0.0.8", + "0.0.9": "http://registry.npmjs.org/connect-assetmanager-handlers/0.0.9", + "0.0.13": "http://registry.npmjs.org/connect-assetmanager-handlers/0.0.13", + "0.0.14": "http://registry.npmjs.org/connect-assetmanager-handlers/0.0.14", + "0.0.15": "http://registry.npmjs.org/connect-assetmanager-handlers/0.0.15", + "0.0.16": "http://registry.npmjs.org/connect-assetmanager-handlers/0.0.16", + "0.0.17": "http://registry.npmjs.org/connect-assetmanager-handlers/0.0.17" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/connect-assetmanager-handlers/-/connect-assetmanager-handlers-0.0.1.tgz" + }, + "0.0.10": { + "tarball": "http://packages:5984/connect-assetmanager-handlers/-/connect-assetmanager-handlers-0.0.10.tgz" + }, + "0.0.11": { + "tarball": "http://packages:5984/connect-assetmanager-handlers/-/connect-assetmanager-handlers-0.0.11.tgz" + }, + "0.0.12": { + "tarball": "http://packages:5984/connect-assetmanager-handlers/-/connect-assetmanager-handlers-0.0.12.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/connect-assetmanager-handlers/-/connect-assetmanager-handlers-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/connect-assetmanager-handlers/-/connect-assetmanager-handlers-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://packages:5984/connect-assetmanager-handlers/-/connect-assetmanager-handlers-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://packages:5984/connect-assetmanager-handlers/-/connect-assetmanager-handlers-0.0.5.tgz" + }, + "0.0.6": { + "tarball": "http://packages:5984/connect-assetmanager-handlers/-/connect-assetmanager-handlers-0.0.6.tgz" + }, + "0.0.7": { + "tarball": "http://packages:5984/connect-assetmanager-handlers/-/connect-assetmanager-handlers-0.0.7.tgz" + }, + "0.0.8": { + "tarball": "http://packages:5984/connect-assetmanager-handlers/-/connect-assetmanager-handlers-0.0.8.tgz" + }, + "0.0.9": { + "tarball": "http://packages:5984/connect-assetmanager-handlers/-/connect-assetmanager-handlers-0.0.9.tgz" + }, + "0.0.13": { + "tarball": "http://registry.npmjs.org/connect-assetmanager-handlers/-/connect-assetmanager-handlers-0.0.13.tgz" + }, + "0.0.14": { + "shasum": "98419800a60d99390de91b5681770285c9dbceb8", + "tarball": "http://registry.npmjs.org/connect-assetmanager-handlers/-/connect-assetmanager-handlers-0.0.14.tgz" + }, + "0.0.15": { + "shasum": "56e899e4265a598eb7495825231740394fb9d308", + "tarball": "http://registry.npmjs.org/connect-assetmanager-handlers/-/connect-assetmanager-handlers-0.0.15.tgz" + }, + "0.0.16": { + "shasum": "9d62962da245f5e67bd5595c575a3e31e3e41c8a", + "tarball": "http://registry.npmjs.org/connect-assetmanager-handlers/-/connect-assetmanager-handlers-0.0.16.tgz" + }, + "0.0.17": { + "shasum": "ba8ad2458eaf4ce59fe2a66325d646fa94874972", + "tarball": "http://registry.npmjs.org/connect-assetmanager-handlers/-/connect-assetmanager-handlers-0.0.17.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-assetmanager-handlers/" + }, + "connect-assets": { + "name": "connect-assets", + "description": "A Rails-like asset pipeline for Connect", + "dist-tags": { + "latest": "2.1.6" + }, + "maintainers": [ + { + "name": "TrevorBurnham", + "email": "trevorburnham@gmail.com" + } + ], + "time": { + "modified": "2011-12-06T18:12:48.361Z", + "created": "2011-08-30T20:40:20.350Z", + "1.0.0-beta1": "2011-12-06T18:12:48.361Z", + "1.0.0-beta2": "2011-12-06T18:12:48.361Z", + "1.0.0-beta3": "2011-12-06T18:12:48.361Z", + "1.0.0-beta4": "2011-12-06T18:12:48.361Z", + "1.0.0-beta5": "2011-12-06T18:12:48.361Z", + "1.0.0-beta6": "2011-12-06T18:12:48.361Z", + "1.0.0": "2011-12-06T18:12:48.361Z", + "2.0.0-alpha1": "2011-12-06T18:12:48.361Z", + "2.0.0-alpha2": "2011-12-06T18:12:48.361Z", + "2.0.0-alpha3": "2011-12-06T18:12:48.361Z", + "2.0.0-beta1": "2011-12-06T18:12:48.361Z", + "2.0.0-beta2": "2011-12-06T18:12:48.361Z", + "2.0.0-beta3": "2011-12-06T18:12:48.361Z", + "2.0.0-beta4": "2011-12-06T18:12:48.361Z", + "2.0.0-beta5": "2011-12-06T18:12:48.361Z", + "2.0.0-rc1": "2011-12-06T18:12:48.361Z", + "2.0.0": "2011-12-06T18:12:48.361Z", + "2.0.1": "2011-12-06T18:12:48.361Z", + "2.0.2": "2011-12-06T18:12:48.361Z", + "2.1.0": "2011-12-06T18:12:48.361Z", + "2.1.1": "2011-12-06T18:12:48.361Z", + "2.1.2": "2011-12-06T18:12:48.361Z", + "2.1.3": "2011-12-06T18:12:48.361Z", + "2.1.4": "2011-12-06T18:12:48.361Z", + "2.1.5": "2011-12-06T18:12:48.361Z", + "2.1.6": "2011-12-06T18:12:48.361Z" + }, + "author": { + "name": "Trevor Burnham", + "url": "http://trevorburnham.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/TrevorBurnham/connect-assets.git" + }, + "versions": { + "1.0.0-beta1": "http://registry.npmjs.org/connect-assets/1.0.0-beta1", + "1.0.0-beta2": "http://registry.npmjs.org/connect-assets/1.0.0-beta2", + "1.0.0-beta3": "http://registry.npmjs.org/connect-assets/1.0.0-beta3", + "1.0.0-beta4": "http://registry.npmjs.org/connect-assets/1.0.0-beta4", + "1.0.0-beta5": "http://registry.npmjs.org/connect-assets/1.0.0-beta5", + "1.0.0-beta6": "http://registry.npmjs.org/connect-assets/1.0.0-beta6", + "1.0.0": "http://registry.npmjs.org/connect-assets/1.0.0", + "2.0.0-alpha1": "http://registry.npmjs.org/connect-assets/2.0.0-alpha1", + "2.0.0-alpha2": "http://registry.npmjs.org/connect-assets/2.0.0-alpha2", + "2.0.0-alpha3": "http://registry.npmjs.org/connect-assets/2.0.0-alpha3", + "2.0.0-beta1": "http://registry.npmjs.org/connect-assets/2.0.0-beta1", + "2.0.0-beta2": "http://registry.npmjs.org/connect-assets/2.0.0-beta2", + "2.0.0-beta3": "http://registry.npmjs.org/connect-assets/2.0.0-beta3", + "2.0.0-beta4": "http://registry.npmjs.org/connect-assets/2.0.0-beta4", + "2.0.0-beta5": "http://registry.npmjs.org/connect-assets/2.0.0-beta5", + "2.0.0-rc1": "http://registry.npmjs.org/connect-assets/2.0.0-rc1", + "2.0.0": "http://registry.npmjs.org/connect-assets/2.0.0", + "2.0.1": "http://registry.npmjs.org/connect-assets/2.0.1", + "2.0.2": "http://registry.npmjs.org/connect-assets/2.0.2", + "2.1.0": "http://registry.npmjs.org/connect-assets/2.1.0", + "2.1.1": "http://registry.npmjs.org/connect-assets/2.1.1", + "2.1.2": "http://registry.npmjs.org/connect-assets/2.1.2", + "2.1.3": "http://registry.npmjs.org/connect-assets/2.1.3", + "2.1.4": "http://registry.npmjs.org/connect-assets/2.1.4", + "2.1.5": "http://registry.npmjs.org/connect-assets/2.1.5", + "2.1.6": "http://registry.npmjs.org/connect-assets/2.1.6" + }, + "dist": { + "1.0.0-beta1": { + "shasum": "92d211e301f05327eb9546423b6df39c8415ea6b", + "tarball": "http://registry.npmjs.org/connect-assets/-/connect-assets-1.0.0-beta1.tgz" + }, + "1.0.0-beta2": { + "shasum": "57ead1fc2c3e692d4133d3b506ae4a2257183984", + "tarball": "http://registry.npmjs.org/connect-assets/-/connect-assets-1.0.0-beta2.tgz" + }, + "1.0.0-beta3": { + "shasum": "245261371a807eb54687c83265e22b0285adf188", + "tarball": "http://registry.npmjs.org/connect-assets/-/connect-assets-1.0.0-beta3.tgz" + }, + "1.0.0-beta4": { + "shasum": "beef397f2d9f7b1b593a790f4acff12450addcf3", + "tarball": "http://registry.npmjs.org/connect-assets/-/connect-assets-1.0.0-beta4.tgz" + }, + "1.0.0-beta5": { + "shasum": "769fb18c9890140bd091a3acc71de120f7699695", + "tarball": "http://registry.npmjs.org/connect-assets/-/connect-assets-1.0.0-beta5.tgz" + }, + "1.0.0-beta6": { + "shasum": "1c2d8566072a21f60b1f09cc9222bfbc70e65f62", + "tarball": "http://registry.npmjs.org/connect-assets/-/connect-assets-1.0.0-beta6.tgz" + }, + "1.0.0": { + "shasum": "fc46d9caafae87680901cfa04a2ed1136cd5e7d7", + "tarball": "http://registry.npmjs.org/connect-assets/-/connect-assets-1.0.0.tgz" + }, + "2.0.0-alpha1": { + "shasum": "09ed066bb3d80b7b2bc3338447eb5eaba0878ede", + "tarball": "http://registry.npmjs.org/connect-assets/-/connect-assets-2.0.0-alpha1.tgz" + }, + "2.0.0-alpha2": { + "shasum": "5f3a93904bc1df14cb46075cc3b2b282f052ec28", + "tarball": "http://registry.npmjs.org/connect-assets/-/connect-assets-2.0.0-alpha2.tgz" + }, + "2.0.0-alpha3": { + "shasum": "5221575976331dac0f49b198eb66c17e2170cd86", + "tarball": "http://registry.npmjs.org/connect-assets/-/connect-assets-2.0.0-alpha3.tgz" + }, + "2.0.0-beta1": { + "shasum": "d62031408e29dc0871c59c4353f3254c1a484be7", + "tarball": "http://registry.npmjs.org/connect-assets/-/connect-assets-2.0.0-beta1.tgz" + }, + "2.0.0-beta2": { + "shasum": "4bc12e661d0adaf97fb3b86f33eb00c3adc2e32a", + "tarball": "http://registry.npmjs.org/connect-assets/-/connect-assets-2.0.0-beta2.tgz" + }, + "2.0.0-beta3": { + "shasum": "10ff91f9fbb9ac3c3eb7271c1c8e7e1d17a1d767", + "tarball": "http://registry.npmjs.org/connect-assets/-/connect-assets-2.0.0-beta3.tgz" + }, + "2.0.0-beta4": { + "shasum": "8a99a733a8cda23cba16e0e72af9854beeee29bc", + "tarball": "http://registry.npmjs.org/connect-assets/-/connect-assets-2.0.0-beta4.tgz" + }, + "2.0.0-beta5": { + "shasum": "b400c701cc307dbe3ef84254382f45c78f1ed5e1", + "tarball": "http://registry.npmjs.org/connect-assets/-/connect-assets-2.0.0-beta5.tgz" + }, + "2.0.0-rc1": { + "shasum": "82d47fc7e99a21c22a9c888a4f53f10e359caba2", + "tarball": "http://registry.npmjs.org/connect-assets/-/connect-assets-2.0.0-rc1.tgz" + }, + "2.0.0": { + "shasum": "d7e890c89c5f2bbff72ee7d3fac27387b9d6da81", + "tarball": "http://registry.npmjs.org/connect-assets/-/connect-assets-2.0.0.tgz" + }, + "2.0.1": { + "shasum": "fe4c339e1acd947a9e14ccac4972826b06d19155", + "tarball": "http://registry.npmjs.org/connect-assets/-/connect-assets-2.0.1.tgz" + }, + "2.0.2": { + "shasum": "0b8d818516bc5b08cb0528b5e893cb1ff912835f", + "tarball": "http://registry.npmjs.org/connect-assets/-/connect-assets-2.0.2.tgz" + }, + "2.1.0": { + "shasum": "a64dedc2b6d7ccde81f655cc0ceae8f4eef76787", + "tarball": "http://registry.npmjs.org/connect-assets/-/connect-assets-2.1.0.tgz" + }, + "2.1.1": { + "shasum": "59e0a4c3a6a24e1e221e0fb173eb711b2ccecb31", + "tarball": "http://registry.npmjs.org/connect-assets/-/connect-assets-2.1.1.tgz" + }, + "2.1.2": { + "shasum": "b4c37219007e0c79a06b4dfcb7528bcacee63d31", + "tarball": "http://registry.npmjs.org/connect-assets/-/connect-assets-2.1.2.tgz" + }, + "2.1.3": { + "shasum": "89a6ddad7227dbd72fd7b5fe38aa918e7692e71a", + "tarball": "http://registry.npmjs.org/connect-assets/-/connect-assets-2.1.3.tgz" + }, + "2.1.4": { + "shasum": "4a098024cb99998ef96f6c17d51550f9c7cb2c69", + "tarball": "http://registry.npmjs.org/connect-assets/-/connect-assets-2.1.4.tgz" + }, + "2.1.5": { + "shasum": "aa350dcfd500462eb600ed3521baf5b4f8634d02", + "tarball": "http://registry.npmjs.org/connect-assets/-/connect-assets-2.1.5.tgz" + }, + "2.1.6": { + "shasum": "6c44c2775e0c0f04fb8b7617dcd3e3e9f48632bb", + "tarball": "http://registry.npmjs.org/connect-assets/-/connect-assets-2.1.6.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-assets/" + }, + "connect-auth": { + "name": "connect-auth", + "description": "Middleware for Connect (node.js) for handling your authentication needs.", + "dist-tags": { + "latest": "0.4.1" + }, + "maintainers": [ + { + "name": "ciaranj", + "email": "ciaranj@gmail.com" + } + ], + "author": { + "name": "Ciaran Jessup", + "email": "ciaranj@gmail.com" + }, + "time": { + "modified": "2011-09-04T22:34:17.661Z", + "created": "2011-03-16T16:01:31.368Z", + "0.0.1": "2011-03-16T16:01:31.368Z", + "0.0.2": "2011-03-16T16:01:31.368Z", + "0.0.3": "2011-03-16T16:01:31.368Z", + "0.1.0": "2011-03-16T16:01:31.368Z", + "0.1.1": "2011-03-16T16:01:31.368Z", + "0.1.2": "2011-03-16T16:01:31.368Z", + "0.1.3": "2011-03-16T16:01:31.368Z", + "0.2.0": "2011-03-16T16:01:31.368Z", + "0.2.1": "2011-03-16T16:01:31.368Z", + "0.2.2": "2011-03-16T16:01:31.368Z", + "0.2.3": "2011-06-22T23:03:18.069Z", + "0.3.0": "2011-07-17T21:38:25.227Z", + "0.3.1": "2011-08-06T20:38:21.140Z", + "0.3.2": "2011-08-15T22:48:06.970Z", + "0.4.0": "2011-08-21T21:44:12.221Z", + "0.4.1": "2011-09-04T22:34:17.661Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/ciaranj/connect-auth.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/connect-auth/0.0.1", + "0.0.2": "http://registry.npmjs.org/connect-auth/0.0.2", + "0.0.3": "http://registry.npmjs.org/connect-auth/0.0.3", + "0.1.0": "http://registry.npmjs.org/connect-auth/0.1.0", + "0.1.1": "http://registry.npmjs.org/connect-auth/0.1.1", + "0.1.2": "http://registry.npmjs.org/connect-auth/0.1.2", + "0.1.3": "http://registry.npmjs.org/connect-auth/0.1.3", + "0.2.0": "http://registry.npmjs.org/connect-auth/0.2.0", + "0.2.1": "http://registry.npmjs.org/connect-auth/0.2.1", + "0.2.2": "http://registry.npmjs.org/connect-auth/0.2.2", + "0.2.3": "http://registry.npmjs.org/connect-auth/0.2.3", + "0.3.0": "http://registry.npmjs.org/connect-auth/0.3.0", + "0.3.1": "http://registry.npmjs.org/connect-auth/0.3.1", + "0.3.2": "http://registry.npmjs.org/connect-auth/0.3.2", + "0.4.0": "http://registry.npmjs.org/connect-auth/0.4.0", + "0.4.1": "http://registry.npmjs.org/connect-auth/0.4.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/connect-auth/-/connect-auth-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/connect-auth/-/connect-auth-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/connect-auth/-/connect-auth-0.0.3.tgz" + }, + "0.1.0": { + "tarball": "http://packages:5984/connect-auth/-/connect-auth-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://packages:5984/connect-auth/-/connect-auth-0.1.1.tgz" + }, + "0.1.2": { + "tarball": "http://packages:5984/connect-auth/-/connect-auth-0.1.2.tgz" + }, + "0.1.3": { + "tarball": "http://packages:5984/connect-auth/-/connect-auth-0.1.3.tgz" + }, + "0.2.0": { + "tarball": "http://packages:5984/connect-auth/-/connect-auth-0.2.0.tgz" + }, + "0.2.1": { + "tarball": "http://registry.npmjs.org/connect-auth/-/connect-auth-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "1c7d14bb5b512dad28f46680244c8bb20e6e57c5", + "tarball": "http://registry.npmjs.org/connect-auth/-/connect-auth-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "1bd1743c26ad54128a878c3b89712deaa317d9e6", + "tarball": "http://registry.npmjs.org/connect-auth/-/connect-auth-0.2.3.tgz" + }, + "0.3.0": { + "shasum": "8aa54a14cc2b19d4a39f7ea9b6dbc00a5e2aaf19", + "tarball": "http://registry.npmjs.org/connect-auth/-/connect-auth-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "1ad8fce9ca82b0ba905d1a67ca4a495798d75ec9", + "tarball": "http://registry.npmjs.org/connect-auth/-/connect-auth-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "36263d7e3491cfa6ac45792ffbd11c85af2094b2", + "tarball": "http://registry.npmjs.org/connect-auth/-/connect-auth-0.3.2.tgz" + }, + "0.4.0": { + "shasum": "cf5bd5545e693061d81020c014b20318ebd0f89f", + "tarball": "http://registry.npmjs.org/connect-auth/-/connect-auth-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "2497f911afa8eb41850efb52019c97c13e365b21", + "tarball": "http://registry.npmjs.org/connect-auth/-/connect-auth-0.4.1.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-auth/" + }, + "connect-cache": { + "name": "connect-cache", + "description": "Caching system for Connect", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "tdebarochez", + "email": "thomas.barochez+npm@gmail.com" + } + ], + "time": { + "modified": "2011-05-04T20:15:16.152Z", + "created": "2011-04-07T22:26:37.258Z", + "0.1.0": "2011-04-07T22:26:37.860Z", + "0.1.1": "2011-04-09T22:18:54.995Z", + "0.1.2": "2011-04-13T22:12:57.548Z", + "0.1.3": "2011-04-25T20:00:25.764Z", + "0.2.1": "2011-05-04T20:15:16.152Z" + }, + "author": { + "name": "Thomas Debarochez", + "email": "thomas.barochez+npm@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/tdebarochez/connect-cache.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/connect-cache/0.1.0", + "0.1.1": "http://registry.npmjs.org/connect-cache/0.1.1", + "0.1.2": "http://registry.npmjs.org/connect-cache/0.1.2", + "0.1.3": "http://registry.npmjs.org/connect-cache/0.1.3", + "0.2.1": "http://registry.npmjs.org/connect-cache/0.2.1" + }, + "dist": { + "0.1.0": { + "shasum": "d74e50efc1727798eb484bf30989054e1114abad", + "tarball": "http://registry.npmjs.org/connect-cache/-/connect-cache-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "ffd195ecc65686b9b67c756adaf99cdfb4d33eca", + "tarball": "http://registry.npmjs.org/connect-cache/-/connect-cache-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "745b22435f7243172beb122f75ab70db76e89975", + "tarball": "http://registry.npmjs.org/connect-cache/-/connect-cache-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "a1674422b7acaf6a2d45a9b68813e106437b3654", + "tarball": "http://registry.npmjs.org/connect-cache/-/connect-cache-0.1.3.tgz" + }, + "0.2.1": { + "shasum": "5f8b9cea9af7df23a0870d6556e47db561b7d601", + "tarball": "http://registry.npmjs.org/connect-cache/-/connect-cache-0.2.1.tgz" + } + }, + "keywords": [ + "connect", + "cache", + "caching system", + "middleware" + ], + "url": "http://registry.npmjs.org/connect-cache/" + }, + "connect-coffee": { + "name": "connect-coffee", + "description": "Automatic compilation and minification for CoffeeScript under Connect", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "TrevorBurnham", + "email": "trevorburnham@gmail.com" + } + ], + "time": { + "modified": "2011-02-16T19:44:54.939Z", + "created": "2011-02-16T19:44:54.200Z", + "0.1.0": "2011-02-16T19:44:54.939Z" + }, + "author": { + "name": "Trevor Burnham" + }, + "repository": { + "type": "git", + "url": "http://github.com/TrevorBurnham/connect-coffee.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/connect-coffee/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "b7d6b7670f2a7221657ca5de62ac4c4c52580a5a", + "tarball": "http://registry.npmjs.org/connect-coffee/-/connect-coffee-0.1.0.tgz" + } + }, + "keywords": [ + "connect", + "middleware", + "static", + "coffeescript", + "compiler" + ], + "url": "http://registry.npmjs.org/connect-coffee/" + }, + "connect-conneg": { + "name": "connect-conneg", + "description": "A Content-Negiotiation processor for the Connect Middleware", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "foxxtrot", + "email": "foxxtrot@foxxtrot.net" + } + ], + "time": { + "modified": "2011-08-29T20:20:12.828Z", + "created": "2011-08-29T20:20:11.944Z", + "0.1.0": "2011-08-29T20:20:12.828Z" + }, + "author": { + "name": "Jeff Craig", + "email": "foxxtrot@foxxtrot.net", + "url": "http://blog.foxxtrot.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/foxxtrot/connect-conneg.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/connect-conneg/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "3d9447688bdece1e43018c91548b1ec0c33bd8dc", + "tarball": "http://registry.npmjs.org/connect-conneg/-/connect-conneg-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-conneg/" + }, + "connect-cookie-session": { + "name": "connect-cookie-session", + "description": "Connect middleware to allow you to store your sessions directly in the client's cookie.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "jpallen", + "email": "jamesallen0108@gmail.com" + } + ], + "time": { + "modified": "2011-11-16T21:41:29.708Z", + "created": "2011-06-14T19:24:26.508Z", + "0.0.1": "2011-06-14T19:24:27.234Z", + "0.0.2": "2011-10-06T11:05:18.770Z" + }, + "author": { + "name": "James P. Allen", + "email": "jamesallen0108@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/jpallen/connect-cookie-session.git" + }, + "users": { + "pid": true + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/connect-cookie-session/0.0.1", + "0.0.2": "http://registry.npmjs.org/connect-cookie-session/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "02b2fdb7e4176807440c778c57616201a432c419", + "tarball": "http://registry.npmjs.org/connect-cookie-session/-/connect-cookie-session-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "cadd881d36e7d17fca102be77eded7f07846be1a", + "tarball": "http://registry.npmjs.org/connect-cookie-session/-/connect-cookie-session-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-cookie-session/" + }, + "connect-cors": { + "name": "connect-cors", + "description": "CORS / XHR2 support for Node.JS's Connect", + "dist-tags": { + "latest": "0.5.0" + }, + "maintainers": [ + { + "name": "antono", + "email": "antono.vasiljev@gmail.com" + } + ], + "author": { + "name": "Antono Vasiljev", + "email": "antono.vasiljev@gmail.com", + "url": "http://antono.info" + }, + "repository": { + "type": "git", + "url": "git://github.com/antono/connect-cors.git" + }, + "time": { + "modified": "2011-09-15T01:40:39.652Z", + "created": "2011-09-15T01:40:39.652Z", + "0.0.1": "2011-09-15T01:40:39.652Z", + "0.0.2": "2011-09-15T01:40:39.652Z", + "0.5.0": "2011-09-15T01:40:39.652Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/connect-cors/0.0.1", + "0.0.2": "http://registry.npmjs.org/connect-cors/0.0.2", + "0.5.0": "http://registry.npmjs.org/connect-cors/0.5.0" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/connect-cors/-/connect-cors-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "bb8ae6f7561c54f7f88f55edef03a462ff489cac", + "tarball": "http://registry.npmjs.org/connect-cors/-/connect-cors-0.0.2.tgz" + }, + "0.5.0": { + "shasum": "02e3e2a039c42fe059e358107cbec1162247ab46", + "tarball": "http://registry.npmjs.org/connect-cors/-/connect-cors-0.5.0.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-cors/" + }, + "connect-couchdb": { + "name": "connect-couchdb", + "description": "CouchDB session store for Connect", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "tdebarochez", + "email": "thomas.barochez+npm@gmail.com" + } + ], + "time": { + "modified": "2011-11-11T08:51:24.071Z", + "created": "2011-02-27T22:40:06.152Z", + "0.1.0": "2011-02-27T22:40:07.462Z", + "0.1.1": "2011-02-27T23:22:44.780Z", + "0.2.0": "2011-07-08T21:43:46.368Z", + "0.2.1": "2011-09-11T10:50:33.485Z", + "0.2.2": "2011-11-11T08:51:24.071Z" + }, + "author": { + "name": "Thomas Debarochez", + "email": "thomas.barochez+npm@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/tdebarochez/connect-couchdb.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/connect-couchdb/0.1.0", + "0.1.1": "http://registry.npmjs.org/connect-couchdb/0.1.1", + "0.2.0": "http://registry.npmjs.org/connect-couchdb/0.2.0", + "0.2.1": "http://registry.npmjs.org/connect-couchdb/0.2.1", + "0.2.2": "http://registry.npmjs.org/connect-couchdb/0.2.2" + }, + "dist": { + "0.1.0": { + "shasum": "29409e8ca03483010b00bc54d1f07b10fb7b4198", + "tarball": "http://registry.npmjs.org/connect-couchdb/-/connect-couchdb-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "1584d554cca090413614fb4e276c7264c17979db", + "tarball": "http://registry.npmjs.org/connect-couchdb/-/connect-couchdb-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "832a57194caf4eac58d8129aabe7b2cf7c1aa2a1", + "tarball": "http://registry.npmjs.org/connect-couchdb/-/connect-couchdb-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "ae0ade22707d88a4c86fa98df366b259fd9dc70e", + "tarball": "http://registry.npmjs.org/connect-couchdb/-/connect-couchdb-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "e790eb58fabf98dda49499997e17d10a9851d102", + "tarball": "http://registry.npmjs.org/connect-couchdb/-/connect-couchdb-0.2.2.tgz" + } + }, + "keywords": [ + "connect", + "session", + "couchdb", + "middleware" + ], + "url": "http://registry.npmjs.org/connect-couchdb/" + }, + "connect-cradle": { + "name": "connect-cradle", + "description": "Cradle (CouchDB) session store for Connect", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "eldios_lele", + "email": "lele@amicofigo.com" + } + ], + "time": { + "modified": "2011-07-27T12:48:28.295Z", + "created": "2011-07-27T12:43:17.198Z", + "0.0.3": "2011-07-27T12:43:17.339Z", + "0.1.0": "2011-07-27T12:48:28.295Z" + }, + "author": { + "name": "El Dios", + "email": "lele@amicofigo.com" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/connect-cradle/0.0.3", + "0.1.0": "http://registry.npmjs.org/connect-cradle/0.1.0" + }, + "dist": { + "0.0.3": { + "shasum": "c023ab5a84d966366ea7a627a4161d5fa4037ea0", + "tarball": "http://registry.npmjs.org/connect-cradle/-/connect-cradle-0.0.3.tgz" + }, + "0.1.0": { + "shasum": "a661bce3c9df6e5afaf0defbe33013101980a883", + "tarball": "http://registry.npmjs.org/connect-cradle/-/connect-cradle-0.1.0.tgz" + } + }, + "keywords": [ + "connect", + "express", + "middleware", + "cradle", + "store", + "session", + "connect-cradle", + "couchdb", + "connect-couchdb" + ], + "url": "http://registry.npmjs.org/connect-cradle/" + }, + "connect-devcaps": { + "name": "connect-devcaps", + "description": "Devcaps implementation built for express and connect", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "damonoehlman", + "email": "damon.oehlman@sidelab.com" + } + ], + "time": { + "modified": "2011-09-30T02:39:33.291Z", + "created": "2011-09-30T02:39:31.575Z", + "0.0.1": "2011-09-30T02:39:33.291Z" + }, + "author": { + "name": "Damon Oehlman", + "email": "damon.oehlman@sidelab.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/devcaps/connect-devcaps.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/connect-devcaps/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "c58b3831d3eec0d67ef553047b5c036200c04f2b", + "tarball": "http://registry.npmjs.org/connect-devcaps/-/connect-devcaps-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-devcaps/" + }, + "connect-docco": { + "name": "connect-docco", + "description": "docco middleware for connect. Mix it with socket.io and watch to get fancy automatic updates.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "mklabs", + "email": "daniel.mickael@gmail.com" + } + ], + "time": { + "modified": "2011-11-08T21:21:25.199Z", + "created": "2011-09-04T19:20:25.824Z", + "0.0.0": "2011-09-04T19:20:26.573Z", + "0.0.1": "2011-09-04T19:35:21.899Z", + "0.0.2": "2011-11-08T21:21:25.199Z" + }, + "author": { + "name": "mklabs" + }, + "repository": { + "type": "git", + "url": "git://github.com/mklabs/connect-docco.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/connect-docco/0.0.0", + "0.0.1": "http://registry.npmjs.org/connect-docco/0.0.1", + "0.0.2": "http://registry.npmjs.org/connect-docco/0.0.2" + }, + "dist": { + "0.0.0": { + "shasum": "9ea1c97a218bb038a4c93aafdcdd4974d87565ad", + "tarball": "http://registry.npmjs.org/connect-docco/-/connect-docco-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "e9ca0ee82f46155b8c4271e869b98452021e04a9", + "tarball": "http://registry.npmjs.org/connect-docco/-/connect-docco-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "e75fe3432d2bdf142141f4eebe46b3d65dc9434d", + "tarball": "http://registry.npmjs.org/connect-docco/-/connect-docco-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-docco/" + }, + "connect-dojo": { + "name": "connect-dojo", + "description": "Connect middleware exposing the Dojo Toolkit", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "david", + "email": "david@adaltas.com" + } + ], + "time": { + "modified": "2011-08-11T12:20:36.422Z", + "created": "2011-05-26T23:56:25.987Z", + "0.0.1": "2011-05-26T23:56:27.745Z", + "0.0.2": "2011-08-02T23:08:28.650Z", + "0.0.3": "2011-08-03T17:50:12.764Z", + "0.0.4": "2011-08-09T15:03:53.949Z" + }, + "author": { + "name": "David Worms", + "email": "david@adaltas.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/wdavidw/node-connect-dojo.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/connect-dojo/0.0.1", + "0.0.2": "http://registry.npmjs.org/connect-dojo/0.0.2", + "0.0.3": "http://registry.npmjs.org/connect-dojo/0.0.3", + "0.0.4": "http://registry.npmjs.org/connect-dojo/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "98596286279f00bd7b93ca0729a85d3f2f5fa80f", + "tarball": "http://registry.npmjs.org/connect-dojo/-/connect-dojo-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "e295052617326469d3d2b211806c7ef401e040db", + "tarball": "http://registry.npmjs.org/connect-dojo/-/connect-dojo-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "096243d2ca02905809a62187ec05022c38a82529", + "tarball": "http://registry.npmjs.org/connect-dojo/-/connect-dojo-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "077c9780d44ecb8d66c75cdf30db88b5ec366d1b", + "tarball": "http://registry.npmjs.org/connect-dojo/-/connect-dojo-0.0.4.tgz" + } + }, + "keywords": [ + "connect", + "express", + "dojo" + ], + "url": "http://registry.npmjs.org/connect-dojo/" + }, + "connect-esi": { + "name": "connect-esi", + "description": "ESI tag processor for the connect framework", + "dist-tags": { + "latest": "0.1.7" + }, + "maintainers": [ + { + "name": "veerman", + "email": "sveerman@postmedia.com" + } + ], + "time": { + "modified": "2011-11-21T22:49:10.890Z", + "created": "2011-08-08T18:48:55.145Z", + "0.0.1": "2011-08-08T18:48:55.402Z", + "0.0.2": "2011-08-09T20:46:02.502Z", + "0.0.3": "2011-08-12T21:02:09.156Z", + "0.0.4": "2011-08-16T18:16:10.232Z", + "0.1.0": "2011-08-18T21:34:06.708Z", + "0.1.1": "2011-08-19T21:57:44.594Z", + "0.1.2": "2011-08-23T18:02:27.352Z", + "0.1.3": "2011-08-25T20:02:51.470Z", + "0.1.4": "2011-09-26T20:39:59.585Z", + "0.1.5": "2011-10-03T17:32:42.501Z", + "0.1.6": "2011-11-11T19:42:06.736Z", + "0.1.7": "2011-11-21T22:49:10.890Z" + }, + "author": { + "name": "Stephen Veerman", + "email": "sveerman@postmedia.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Postmedia/connect-esi.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/connect-esi/0.0.1", + "0.0.2": "http://registry.npmjs.org/connect-esi/0.0.2", + "0.0.3": "http://registry.npmjs.org/connect-esi/0.0.3", + "0.0.4": "http://registry.npmjs.org/connect-esi/0.0.4", + "0.1.0": "http://registry.npmjs.org/connect-esi/0.1.0", + "0.1.1": "http://registry.npmjs.org/connect-esi/0.1.1", + "0.1.2": "http://registry.npmjs.org/connect-esi/0.1.2", + "0.1.3": "http://registry.npmjs.org/connect-esi/0.1.3", + "0.1.4": "http://registry.npmjs.org/connect-esi/0.1.4", + "0.1.5": "http://registry.npmjs.org/connect-esi/0.1.5", + "0.1.6": "http://registry.npmjs.org/connect-esi/0.1.6", + "0.1.7": "http://registry.npmjs.org/connect-esi/0.1.7" + }, + "dist": { + "0.0.1": { + "shasum": "e934aee72d8ff43136f87ed17610ac2fcc521895", + "tarball": "http://registry.npmjs.org/connect-esi/-/connect-esi-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "0990f83351e1781f4acdc117d59f6c1ae8ccd522", + "tarball": "http://registry.npmjs.org/connect-esi/-/connect-esi-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "77bb4ee243635da742cc5843abd8c522ec958762", + "tarball": "http://registry.npmjs.org/connect-esi/-/connect-esi-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "5a0a9a3f0d0690008b508787759a718646cc8095", + "tarball": "http://registry.npmjs.org/connect-esi/-/connect-esi-0.0.4.tgz" + }, + "0.1.0": { + "shasum": "98ed58276b01c1d738408362cd5e713a5a631440", + "tarball": "http://registry.npmjs.org/connect-esi/-/connect-esi-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "9c569ede04700ac51d9192f35c73152bce8c34b9", + "tarball": "http://registry.npmjs.org/connect-esi/-/connect-esi-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "2499afe28ee40369b78828e946dd37c2139fce50", + "tarball": "http://registry.npmjs.org/connect-esi/-/connect-esi-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "23534d2d74b5b1b5ad4b677dc8dacfc73fa4eab9", + "tarball": "http://registry.npmjs.org/connect-esi/-/connect-esi-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "3cc1b70353bd33757e8319115c1641648e5915e3", + "tarball": "http://registry.npmjs.org/connect-esi/-/connect-esi-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "3ccf854c090a668e2a888a8a2c887e7db679fede", + "tarball": "http://registry.npmjs.org/connect-esi/-/connect-esi-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "59494c3ff01fa4f61cbb0603eb3604ba791d65db", + "tarball": "http://registry.npmjs.org/connect-esi/-/connect-esi-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "0e937062da91fbfdddf122461a9f8af0eba2e842", + "tarball": "http://registry.npmjs.org/connect-esi/-/connect-esi-0.1.7.tgz" + } + }, + "keywords": [ + "coffeescript", + "connect", + "esi" + ], + "url": "http://registry.npmjs.org/connect-esi/" + }, + "connect-facebook": { + "name": "connect-facebook", + "description": "Facebook cookie parser middleware for Connect", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "gasi", + "email": "daniel@gasienica.ch" + } + ], + "time": { + "modified": "2011-04-22T09:14:29.385Z", + "created": "2011-04-22T09:14:29.028Z", + "0.0.1": "2011-04-22T09:14:29.385Z" + }, + "author": { + "name": "Daniel Gasienica", + "email": "daniel@gasienica.ch" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/connect-facebook/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "68e6783c42a2a66a4774f07eeeb47b456b13bd93", + "tarball": "http://registry.npmjs.org/connect-facebook/-/connect-facebook-0.0.1.tgz" + } + }, + "keywords": [ + "connect", + "facebook", + "middleware", + "session" + ], + "url": "http://registry.npmjs.org/connect-facebook/" + }, + "connect-file-cache": { + "name": "connect-file-cache", + "description": "A Connect middleware for mapping routes to memory", + "dist-tags": { + "latest": "0.2.4" + }, + "maintainers": [ + { + "name": "TrevorBurnham", + "email": "trevorburnham@gmail.com" + } + ], + "time": { + "modified": "2011-11-14T13:43:04.970Z", + "created": "2011-09-24T21:40:11.813Z", + "0.1.0": "2011-09-24T21:40:12.011Z", + "0.2.0": "2011-10-02T20:22:06.927Z", + "0.2.1": "2011-10-02T20:30:08.701Z", + "0.2.2": "2011-10-05T21:09:36.922Z", + "0.2.3": "2011-10-20T22:54:53.342Z", + "0.2.4": "2011-11-14T13:43:04.970Z" + }, + "author": { + "name": "Trevor Burnham", + "url": "http://trevorburnham.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/TrevorBurnham/connect-file-cache.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/connect-file-cache/0.1.0", + "0.2.0": "http://registry.npmjs.org/connect-file-cache/0.2.0", + "0.2.1": "http://registry.npmjs.org/connect-file-cache/0.2.1", + "0.2.2": "http://registry.npmjs.org/connect-file-cache/0.2.2", + "0.2.3": "http://registry.npmjs.org/connect-file-cache/0.2.3", + "0.2.4": "http://registry.npmjs.org/connect-file-cache/0.2.4" + }, + "dist": { + "0.1.0": { + "shasum": "a063689cb96c35018bf2a4344ca415b98e4d73bb", + "tarball": "http://registry.npmjs.org/connect-file-cache/-/connect-file-cache-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "9ba4a560445d07fe62d874736936177af2afbfd7", + "tarball": "http://registry.npmjs.org/connect-file-cache/-/connect-file-cache-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "0aa73dad113d4b221308a2d0708705d556281f6c", + "tarball": "http://registry.npmjs.org/connect-file-cache/-/connect-file-cache-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "67c0347b8b64740433028b826b73f57916e64cc8", + "tarball": "http://registry.npmjs.org/connect-file-cache/-/connect-file-cache-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "fe00b8a6248d7d2ee35d132ac19d7c8b07fdc84a", + "tarball": "http://registry.npmjs.org/connect-file-cache/-/connect-file-cache-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "6d6afddde29314f2e5cb2c0725d487caadc75913", + "tarball": "http://registry.npmjs.org/connect-file-cache/-/connect-file-cache-0.2.4.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-file-cache/" + }, + "connect-force-domain": { + "name": "connect-force-domain", + "description": "Force all visitors onto a single domain", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "shapeshed", + "email": "george@shapeshed.com" + } + ], + "time": { + "modified": "2011-11-17T17:17:32.961Z", + "created": "2011-02-13T20:16:40.215Z", + "0.0.1": "2011-02-13T20:16:40.635Z", + "0.0.2": "2011-02-17T09:59:55.431Z", + "0.0.3": "2011-11-17T17:17:32.961Z" + }, + "author": { + "name": "George Ornbo", + "email": "george@shapeshed.com", + "url": "http://shapeshed.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/shapeshed/connect-force-domain.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/connect-force-domain/0.0.1", + "0.0.2": "http://registry.npmjs.org/connect-force-domain/0.0.2", + "0.0.3": "http://registry.npmjs.org/connect-force-domain/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "002254ca6c49b91a2776b40b6fe7552df6578fc1", + "tarball": "http://registry.npmjs.org/connect-force-domain/-/connect-force-domain-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "60059e12a8689b409e1a5f69e6d8552ce5e28d9b", + "tarball": "http://registry.npmjs.org/connect-force-domain/-/connect-force-domain-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "c9ffddacab5cf45cfcf09ca750516e1f9dd853c8", + "tarball": "http://registry.npmjs.org/connect-force-domain/-/connect-force-domain-0.0.3.tgz" + } + }, + "keywords": [ + "no-www", + "rack", + "middleware", + "connect" + ], + "url": "http://registry.npmjs.org/connect-force-domain/" + }, + "connect-form": { + "name": "connect-form", + "description": "urlencoded / multipart form parsing middleware for Connect", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "time": { + "modified": "2011-03-25T15:41:56.520Z", + "created": "2011-03-25T15:41:56.520Z", + "0.0.1": "2011-03-25T15:41:56.520Z", + "0.1.0": "2011-03-25T15:41:56.520Z", + "0.1.1": "2011-03-25T15:41:56.520Z", + "0.1.2": "2011-03-25T15:41:56.520Z", + "0.2.0": "2011-03-25T15:41:56.520Z", + "0.2.1": "2011-03-25T15:41:56.520Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/connect-form/0.0.1", + "0.1.0": "http://registry.npmjs.org/connect-form/0.1.0", + "0.1.1": "http://registry.npmjs.org/connect-form/0.1.1", + "0.1.2": "http://registry.npmjs.org/connect-form/0.1.2", + "0.2.0": "http://registry.npmjs.org/connect-form/0.2.0", + "0.2.1": "http://registry.npmjs.org/connect-form/0.2.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/connect-form/-/connect-form-0.0.1.tgz" + }, + "0.1.0": { + "tarball": "http://packages:5984/connect-form/-/connect-form-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://packages:5984/connect-form/-/connect-form-0.1.1.tgz" + }, + "0.1.2": { + "tarball": "http://packages:5984/connect-form/-/connect-form-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "2fa5f7d59567cbb311891b30e7caba1ecd3d2861", + "tarball": "http://registry.npmjs.org/connect-form/-/connect-form-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "227fd460bcd136e3631f8875c6d8ca655b89a639", + "tarball": "http://registry.npmjs.org/connect-form/-/connect-form-0.2.1.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-form/" + }, + "connect-formaline": { + "name": "connect-formaline", + "description": "urlencoded / multipart form parsing middleware for Connect", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "diversario", + "email": "ilya.shaisultanov@gmail.com" + } + ], + "time": { + "modified": "2011-09-29T11:17:12.305Z", + "created": "2011-09-29T11:17:11.836Z", + "0.0.2": "2011-09-29T11:17:12.305Z" + }, + "author": { + "name": "diversario", + "email": "ilya.shaisultanov@gmail.com" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/connect-formaline/0.0.2" + }, + "dist": { + "0.0.2": { + "shasum": "0cef6241029d2ef3abce71abeff191f1b853f82c", + "tarball": "http://registry.npmjs.org/connect-formaline/-/connect-formaline-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-formaline/" + }, + "connect-fs": { + "name": "connect-fs", + "description": "FileSystem session store for Connect", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "tnantoka", + "email": "bornneet@livedoor.com" + } + ], + "time": { + "modified": "2011-10-31T03:51:39.561Z", + "created": "2011-09-24T15:46:11.721Z", + "0.0.1": "2011-09-24T15:46:16.852Z", + "0.1.0": "2011-10-30T15:34:24.597Z", + "0.1.1": "2011-10-31T03:51:39.561Z" + }, + "author": { + "name": "tnantoka", + "email": "bornneet@livedoor.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/connect-fs/0.0.1", + "0.1.0": "http://registry.npmjs.org/connect-fs/0.1.0", + "0.1.1": "http://registry.npmjs.org/connect-fs/0.1.1" + }, + "dist": { + "0.0.1": { + "shasum": "5e8cf03f8908476afbaf04fb793809e49639b53a", + "tarball": "http://registry.npmjs.org/connect-fs/-/connect-fs-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "2177b2a1e2b5aa926a2728782ea3acc434d1fb16", + "tarball": "http://registry.npmjs.org/connect-fs/-/connect-fs-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "a478ac6e6472b82471003ad11ead743c5a3577a6", + "tarball": "http://registry.npmjs.org/connect-fs/-/connect-fs-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-fs/" + }, + "connect-geoip": { + "name": "connect-geoip", + "description": "Connect middleware to query client geolocation from geoip data", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "orktes", + "email": "jaakko@applifier.com" + } + ], + "time": { + "modified": "2011-12-12T10:03:45.146Z", + "created": "2011-06-23T11:27:26.893Z", + "0.0.1": "2011-06-23T11:27:27.683Z", + "0.0.2": "2011-12-12T10:03:45.146Z" + }, + "author": { + "name": "Jaakko Lukkari", + "email": "jaakko@applifier.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Applifier/connect-geoip.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/connect-geoip/0.0.1", + "0.0.2": "http://registry.npmjs.org/connect-geoip/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "1bc61c61c9daad4e579f8f56bd3ade032679f20f", + "tarball": "http://registry.npmjs.org/connect-geoip/-/connect-geoip-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "dcda21eeb570bb355113f65b06ab36b0e9be50f8", + "tarball": "http://registry.npmjs.org/connect-geoip/-/connect-geoip-0.0.2.tgz" + } + }, + "keywords": [ + "geoip", + "connect" + ], + "url": "http://registry.npmjs.org/connect-geoip/" + }, + "connect-googleapps": { + "name": "connect-googleapps", + "description": "Google Apps OpenID auth middleware for Connect", + "dist-tags": { + "latest": "0.2.5" + }, + "maintainers": [ + { + "name": "titanous", + "email": "jonathan@titanous.com" + } + ], + "time": { + "modified": "2011-10-20T15:53:52.938Z", + "created": "2011-05-26T14:10:18.899Z", + "0.1.0": "2011-05-26T14:10:39.362Z", + "0.2.0": "2011-06-16T18:47:45.851Z", + "0.2.1": "2011-06-16T19:51:56.260Z", + "0.2.2": "2011-07-08T15:01:39.614Z", + "0.2.3": "2011-07-08T15:21:42.069Z", + "0.2.4": "2011-07-11T13:42:21.319Z", + "0.2.5": "2011-10-20T15:53:52.938Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/Shopify/connect-googleapps.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/connect-googleapps/0.1.0", + "0.2.0": "http://registry.npmjs.org/connect-googleapps/0.2.0", + "0.2.1": "http://registry.npmjs.org/connect-googleapps/0.2.1", + "0.2.2": "http://registry.npmjs.org/connect-googleapps/0.2.2", + "0.2.3": "http://registry.npmjs.org/connect-googleapps/0.2.3", + "0.2.4": "http://registry.npmjs.org/connect-googleapps/0.2.4", + "0.2.5": "http://registry.npmjs.org/connect-googleapps/0.2.5" + }, + "dist": { + "0.1.0": { + "shasum": "0d24ebd7cacd624c2351fe634ad8a184d904c089", + "tarball": "http://registry.npmjs.org/connect-googleapps/-/connect-googleapps-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "3737a763da71bdb101bcdb360c772264953bb5bb", + "tarball": "http://registry.npmjs.org/connect-googleapps/-/connect-googleapps-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "3bb5a25915575f6921d36941593c802d15da7d57", + "tarball": "http://registry.npmjs.org/connect-googleapps/-/connect-googleapps-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "7ef317d688c80fe859af4492e5b9f0fd569b4a0b", + "tarball": "http://registry.npmjs.org/connect-googleapps/-/connect-googleapps-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "ec83a84fd0033d9bce46f48edde8666ccf59c113", + "tarball": "http://registry.npmjs.org/connect-googleapps/-/connect-googleapps-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "35cf98d71e893adb58dfe9cc7f68a9d9649fef3a", + "tarball": "http://registry.npmjs.org/connect-googleapps/-/connect-googleapps-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "ab9d318c37ef68e2a37f624b9226c18cc96e1786", + "tarball": "http://registry.npmjs.org/connect-googleapps/-/connect-googleapps-0.2.5.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-googleapps/" + }, + "connect-gzip": { + "name": "connect-gzip", + "description": "Gzip middleware for Connect. Based on implementation in Connect 0.5.9. Original source: https://github.com/senchalabs/connect/tree/c9a0c1e0e98451bb5fffb70c622b827a11bf4fc7", + "dist-tags": { + "latest": "0.1.5" + }, + "maintainers": [ + { + "name": "nateps", + "email": "nate@nateps.com" + } + ], + "time": { + "modified": "2011-11-06T08:57:37.299Z", + "created": "2011-04-23T02:26:26.576Z", + "0.0.1": "2011-04-23T02:26:27.051Z", + "0.1.0": "2011-04-26T00:40:19.491Z", + "0.1.1": "2011-09-22T18:33:51.472Z", + "0.1.2": "2011-09-26T18:58:11.523Z", + "0.1.3": "2011-09-27T22:07:55.346Z", + "0.1.4": "2011-10-07T01:24:32.370Z", + "0.1.5": "2011-11-06T08:57:37.299Z" + }, + "author": { + "name": "Nate Smith" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/connect-gzip/0.0.1", + "0.1.0": "http://registry.npmjs.org/connect-gzip/0.1.0", + "0.1.1": "http://registry.npmjs.org/connect-gzip/0.1.1", + "0.1.2": "http://registry.npmjs.org/connect-gzip/0.1.2", + "0.1.3": "http://registry.npmjs.org/connect-gzip/0.1.3", + "0.1.4": "http://registry.npmjs.org/connect-gzip/0.1.4", + "0.1.5": "http://registry.npmjs.org/connect-gzip/0.1.5" + }, + "dist": { + "0.0.1": { + "shasum": "14f61db8b1fdf3cc59c1c5d806dfbd7e1611649a", + "tarball": "http://registry.npmjs.org/connect-gzip/-/connect-gzip-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "2da0502d7c275164f35e9a2f0a97085d4c37f83a", + "tarball": "http://registry.npmjs.org/connect-gzip/-/connect-gzip-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "193a2e1f2e43a78ea35e075860631f8779c4772d", + "tarball": "http://registry.npmjs.org/connect-gzip/-/connect-gzip-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "89444b699c5c4df8544eaf70bbcf7c478ba0dce5", + "tarball": "http://registry.npmjs.org/connect-gzip/-/connect-gzip-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "dbbb7d33900eae3bd5f32e87da3df32223e6c549", + "tarball": "http://registry.npmjs.org/connect-gzip/-/connect-gzip-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "8afc71fe247e6ac396f01324dc95cb70a7db70e2", + "tarball": "http://registry.npmjs.org/connect-gzip/-/connect-gzip-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "4e0a9730c8b0e4a866b38ae4283669f26accb8c6", + "tarball": "http://registry.npmjs.org/connect-gzip/-/connect-gzip-0.1.5.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-gzip/" + }, + "connect-heroku-redis": { + "name": "connect-heroku-redis", + "description": "A heroku Redis session store wrapper for connect-redis.", + "dist-tags": { + "latest": "0.1.5" + }, + "maintainers": [ + { + "name": "mike.hemesath", + "email": "mike.hemesath@gmail.com" + } + ], + "time": { + "modified": "2011-07-12T20:37:07.987Z", + "created": "2011-07-08T14:43:22.331Z", + "0.1.0": "2011-07-08T14:43:23.018Z", + "0.1.1": "2011-07-12T19:43:54.637Z", + "0.1.2": "2011-07-12T19:57:59.478Z", + "0.1.3": "2011-07-12T20:18:26.859Z", + "0.1.4": "2011-07-12T20:27:41.745Z", + "0.1.5": "2011-07-12T20:37:07.987Z" + }, + "author": { + "name": "Mike Hemesath", + "email": "mike.hemesath@gmail.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:mhemesath/connect-heroku-redis.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/connect-heroku-redis/0.1.0", + "0.1.1": "http://registry.npmjs.org/connect-heroku-redis/0.1.1", + "0.1.2": "http://registry.npmjs.org/connect-heroku-redis/0.1.2", + "0.1.3": "http://registry.npmjs.org/connect-heroku-redis/0.1.3", + "0.1.4": "http://registry.npmjs.org/connect-heroku-redis/0.1.4", + "0.1.5": "http://registry.npmjs.org/connect-heroku-redis/0.1.5" + }, + "dist": { + "0.1.0": { + "shasum": "c130011399ad31d5d6f323cd687c47845ae13c9a", + "tarball": "http://registry.npmjs.org/connect-heroku-redis/-/connect-heroku-redis-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "e66935361f4d05af0c390f73a68cdede8942c077", + "tarball": "http://registry.npmjs.org/connect-heroku-redis/-/connect-heroku-redis-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "19e0a3f93d0d1ba960886295c56c67b0efe81a77", + "tarball": "http://registry.npmjs.org/connect-heroku-redis/-/connect-heroku-redis-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "6705efe686ee764d2c338bca3a7a3e2b33a02c5c", + "tarball": "http://registry.npmjs.org/connect-heroku-redis/-/connect-heroku-redis-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "89d8eafa57e06916db8237b609e6b4d55caaaab4", + "tarball": "http://registry.npmjs.org/connect-heroku-redis/-/connect-heroku-redis-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "10d80908205cc50012a494fc89a6c84b07b618bf", + "tarball": "http://registry.npmjs.org/connect-heroku-redis/-/connect-heroku-redis-0.1.5.tgz" + } + }, + "keywords": [ + "heroku", + "redis", + "connect", + "express" + ], + "url": "http://registry.npmjs.org/connect-heroku-redis/" + }, + "connect-hopeful-body-parser": { + "name": "connect-hopeful-body-parser", + "description": "Attempt to parse body data without an Accept header", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "glenjamin", + "email": "glenjamin@gmail.com" + } + ], + "time": { + "modified": "2011-11-04T16:22:18.604Z", + "created": "2011-11-01T11:21:05.599Z", + "0.0.1": "2011-11-01T11:21:06.897Z", + "0.1.0": "2011-11-01T13:17:31.210Z", + "0.1.1": "2011-11-04T16:22:18.604Z" + }, + "author": { + "name": "Glen Mailer", + "email": "glenjamin@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/glenjamin/connect-hopeful-body-parser.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/connect-hopeful-body-parser/0.1.0", + "0.1.1": "http://registry.npmjs.org/connect-hopeful-body-parser/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "f7c830f67cdaf4a497441fed5aacd4b9f1f1cacf", + "tarball": "http://registry.npmjs.org/connect-hopeful-body-parser/-/connect-hopeful-body-parser-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "537e74b2f8bb3ab147786f1417e82a5d9d85ce83", + "tarball": "http://registry.npmjs.org/connect-hopeful-body-parser/-/connect-hopeful-body-parser-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-hopeful-body-parser/" + }, + "connect-i18n": { + "name": "connect-i18n", + "description": "Accept-language header parser middleware", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "masylum", + "email": "masylum@gmail.com" + } + ], + "author": { + "name": "Pau Ramon", + "email": "masylum@gmail.com" + }, + "time": { + "modified": "2011-04-24T18:07:40.132Z", + "created": "2011-04-24T18:07:40.132Z", + "0.0.1": "2011-04-24T18:07:40.132Z", + "0.2.0": "2011-04-24T18:07:40.132Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/connect-i18n/0.0.1", + "0.2.0": "http://registry.npmjs.org/connect-i18n/0.2.0" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/connect-i18n/-/connect-i18n-0.0.1.tgz" + }, + "0.2.0": { + "shasum": "562753bab0b9bdb8e0639891f2665eeb82353897", + "tarball": "http://registry.npmjs.org/connect-i18n/-/connect-i18n-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-i18n/" + }, + "connect-identity": { + "name": "connect-identity", + "description": "Long-lasting identity for connect apps", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "ddollar", + "email": "ddollar@gmail.com" + } + ], + "author": { + "name": "David Dollar" + }, + "repository": { + "type": "git", + "url": "http://github.com/ddollar/connect-identity.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/connect-identity/0.1.0", + "0.1.1": "http://registry.npmjs.org/connect-identity/0.1.1" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/connect-identity/-/connect-identity-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://packages:5984/connect-identity/-/connect-identity-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-identity/" + }, + "connect-image-resizer": { + "name": "connect-image-resizer", + "description": "Image resize on demand middleware for Connect", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "stagas", + "email": "gstagas@gmail.com" + } + ], + "time": { + "modified": "2011-04-15T11:40:34.053Z", + "created": "2011-02-18T02:22:05.225Z", + "0.0.1": "2011-02-18T02:22:06.077Z", + "0.0.2": "2011-03-29T10:13:08.185Z", + "0.0.3": "2011-04-15T11:40:34.053Z" + }, + "author": { + "name": "George Stagas", + "email": "gstagas@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/connect-image-resizer/0.0.1", + "0.0.2": "http://registry.npmjs.org/connect-image-resizer/0.0.2", + "0.0.3": "http://registry.npmjs.org/connect-image-resizer/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "035df79bbdcb751bb45d90d37c8630dba83b31cc", + "tarball": "http://registry.npmjs.org/connect-image-resizer/-/connect-image-resizer-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "bd33fbdeb526f0e6ef41825207881624fcf94a68", + "tarball": "http://registry.npmjs.org/connect-image-resizer/-/connect-image-resizer-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "73eb0358249727bea115a4d2b8393248b3b6ee6d", + "tarball": "http://registry.npmjs.org/connect-image-resizer/-/connect-image-resizer-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-image-resizer/" + }, + "connect-index": { + "name": "connect-index", + "description": "Connect middleware providing automatic directory listings.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "drio", + "email": "driodeiros@gmail.com" + } + ], + "time": { + "modified": "2011-06-07T01:02:19.627Z", + "created": "2011-06-07T01:02:19.280Z", + "0.0.1": "2011-06-07T01:02:19.627Z" + }, + "author": { + "name": "David Rio Deiros", + "email": "driodeiros@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/drio/connect-index.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/connect-index/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "db2d05129eb1feba15b3086f76bbd2db4cca3f4a", + "tarball": "http://registry.npmjs.org/connect-index/-/connect-index-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-index/" + }, + "connect-jsonp": { + "name": "connect-jsonp", + "description": "jsonp middleware for connect", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "steelThread", + "email": "sean.mcdaniel@me.com" + } + ], + "time": { + "modified": "2011-06-15T14:02:26.978Z", + "created": "2011-03-04T01:06:10.651Z", + "0.0.2": "2011-03-04T01:06:10.651Z", + "0.0.3": "2011-03-04T01:06:10.651Z", + "0.0.4": "2011-03-04T01:06:16.149Z", + "0.0.5": "2011-06-15T14:02:26.978Z" + }, + "author": { + "name": "Sean McDaniel", + "email": "sean.mcdaniel@me.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/steelThread/connect-jsonp.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/connect-jsonp/0.0.2", + "0.0.3": "http://registry.npmjs.org/connect-jsonp/0.0.3", + "0.0.4": "http://registry.npmjs.org/connect-jsonp/0.0.4", + "0.0.5": "http://registry.npmjs.org/connect-jsonp/0.0.5" + }, + "dist": { + "0.0.2": { + "tarball": "http://registry.npmjs.org/connect-jsonp/-/connect-jsonp-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/connect-jsonp/-/connect-jsonp@0.0.3.tgz" + }, + "0.0.4": { + "shasum": "778bc86b5a7dbf7dd5e37317c1b24c445eb6c522", + "tarball": "http://registry.npmjs.org/connect-jsonp/-/connect-jsonp-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "bc93ac10c992ab0e4ef8d3aeabbeb4d43a9ec0ae", + "tarball": "http://registry.npmjs.org/connect-jsonp/-/connect-jsonp-0.0.5.tgz" + } + }, + "keywords": [ + "jsonp", + "connect", + "middleware", + "nodejs" + ], + "url": "http://registry.npmjs.org/connect-jsonp/" + }, + "connect-jsonrpc": { + "name": "connect-jsonrpc", + "description": "JSON-RPC 2 middleware for connect", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "versions": { + "0.0.1": "http://registry.npmjs.org/connect-jsonrpc/0.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/connect-jsonrpc/-/connect-jsonrpc-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-jsonrpc/" + }, + "connect-kyoto": { + "name": "connect-kyoto", + "description": "kyoto-tycoon session store for connect", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "kazupon", + "email": "kawakazu80@gmail.com" + } + ], + "time": { + "modified": "2011-10-03T18:33:40.805Z", + "created": "2011-09-20T15:45:12.880Z", + "0.0.1": "2011-09-20T15:45:14.488Z", + "0.1.0": "2011-09-20T17:47:35.953Z", + "0.1.1": "2011-10-03T18:33:40.805Z" + }, + "author": { + "name": "kazupon", + "email": "kawakazu80@gmail.com", + "url": "kazuya kawaguchi" + }, + "repository": { + "type": "git", + "url": "git://github.com/kazupon/connect-kyoto.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/connect-kyoto/0.0.1", + "0.1.0": "http://registry.npmjs.org/connect-kyoto/0.1.0", + "0.1.1": "http://registry.npmjs.org/connect-kyoto/0.1.1" + }, + "dist": { + "0.0.1": { + "shasum": "b9c0bc71c048ce468438cdae1392ef5d0570b757", + "tarball": "http://registry.npmjs.org/connect-kyoto/-/connect-kyoto-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "f60f174823e75868fe32fcf9c8f89345d27dec7e", + "tarball": "http://registry.npmjs.org/connect-kyoto/-/connect-kyoto-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "f062ac09ea568e0125c5713230f787c9ed520555", + "tarball": "http://registry.npmjs.org/connect-kyoto/-/connect-kyoto-0.1.1.tgz" + } + }, + "keywords": [ + "session", + "connect" + ], + "url": "http://registry.npmjs.org/connect-kyoto/" + }, + "connect-less": { + "name": "connect-less", + "description": "A simple `less` middleware for Connect", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "martinodf", + "email": "puntodifuga@gmail.com" + } + ], + "time": { + "modified": "2011-10-31T15:40:42.460Z", + "created": "2011-09-12T02:26:19.511Z", + "0.1.0": "2011-09-12T02:26:19.855Z", + "0.2.0": "2011-10-16T22:05:19.903Z", + "0.2.1": "2011-10-20T20:57:58.293Z", + "0.2.2": "2011-10-31T15:40:42.460Z" + }, + "author": { + "name": "Martino di Filippo", + "email": "puntodifuga@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/MartinodF/connect-less.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/connect-less/0.1.0", + "0.2.0": "http://registry.npmjs.org/connect-less/0.2.0", + "0.2.1": "http://registry.npmjs.org/connect-less/0.2.1", + "0.2.2": "http://registry.npmjs.org/connect-less/0.2.2" + }, + "dist": { + "0.1.0": { + "shasum": "2da12782344efd607d78f4ea003d27718198bb32", + "tarball": "http://registry.npmjs.org/connect-less/-/connect-less-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "a5ecb10766ee97a1a29b35d1dce53271cecc381a", + "tarball": "http://registry.npmjs.org/connect-less/-/connect-less-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "74d45fd9536e9397f1e9c902feff749e9e612bc0", + "tarball": "http://registry.npmjs.org/connect-less/-/connect-less-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "8a86714574e9bcaf663edc8db4a0329795d27990", + "tarball": "http://registry.npmjs.org/connect-less/-/connect-less-0.2.2.tgz" + } + }, + "keywords": [ + "compile", + "compiler", + "connect", + "css", + "express", + "less", + "lesscss", + "middleware" + ], + "url": "http://registry.npmjs.org/connect-less/" + }, + "connect-load-balance": { + "name": "connect-load-balance", + "description": "Load balance system for Connect", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "tdebarochez", + "email": "thomas.barochez+npm@gmail.com" + } + ], + "time": { + "modified": "2011-04-09T13:59:38.564Z", + "created": "2011-04-09T13:59:38.053Z", + "0.1.0": "2011-04-09T13:59:38.564Z" + }, + "author": { + "name": "Thomas Debarochez", + "email": "thomas.barochez+npm@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/tdebarochez/connect-load-balance.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/connect-load-balance/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "e6b1dcfbc7ed1426e16aef8cb81943339462f09c", + "tarball": "http://registry.npmjs.org/connect-load-balance/-/connect-load-balance-0.1.0.tgz" + } + }, + "keywords": [ + "connect", + "load balance", + "proxy", + "http proxy", + "middleware" + ], + "url": "http://registry.npmjs.org/connect-load-balance/" + }, + "connect-logger-statsd": { + "name": "connect-logger-statsd", + "description": "logging to statsd middleware for Connect", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "petef", + "email": "petef@databits.net" + } + ], + "time": { + "modified": "2011-11-22T03:15:26.604Z", + "created": "2011-11-22T03:15:25.531Z", + "0.0.1": "2011-11-22T03:15:26.604Z" + }, + "author": { + "name": "Pete Fritchman", + "email": "petef@databits.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/fetep/connect-logger-statsd.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/connect-logger-statsd/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "e1e350f0f6dc538a50a1868b4008806c45c409ea", + "tarball": "http://registry.npmjs.org/connect-logger-statsd/-/connect-logger-statsd-0.0.1.tgz" + } + }, + "keywords": [ + "connect", + "middleware", + "statsd", + "logging" + ], + "url": "http://registry.npmjs.org/connect-logger-statsd/" + }, + "connect-lrdd": { + "name": "connect-lrdd", + "description": "Link-based Resource Descriptor Document (LRDD) middleware for Connect.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "jaredhanson", + "email": "jaredhanson@gmail.com" + } + ], + "time": { + "modified": "2011-11-14T03:43:03.788Z", + "created": "2011-11-14T03:43:02.205Z", + "0.1.0": "2011-11-14T03:43:03.788Z" + }, + "author": { + "name": "Jared Hanson", + "email": "jaredhanson@gmail.com", + "url": "http://www.jaredhanson.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jaredhanson/connect-lrdd.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/connect-lrdd/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "107abb67ec41b1fe21da6de1766f32cf61808f4b", + "tarball": "http://registry.npmjs.org/connect-lrdd/-/connect-lrdd-0.1.0.tgz" + } + }, + "keywords": [ + "connect", + "express", + "lrdd", + "host-meta", + "webfinger" + ], + "url": "http://registry.npmjs.org/connect-lrdd/" + }, + "connect-memcached": { + "name": "connect-memcached", + "description": "Memcached session store for Connect", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "balor", + "email": "michal@balor.pl" + } + ], + "time": { + "modified": "2011-07-01T11:14:56.929Z", + "created": "2011-07-01T11:14:56.204Z", + "0.0.2": "2011-07-01T11:14:56.929Z" + }, + "author": { + "name": "Michał Thoma", + "email": "michal@balor.pl" + }, + "repository": { + "type": "git", + "url": "git://github.com/balor/connect-memcached.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/connect-memcached/0.0.2" + }, + "dist": { + "0.0.2": { + "shasum": "64ff07d85caa8179c6f818c6f404fef7f96a6b16", + "tarball": "http://registry.npmjs.org/connect-memcached/-/connect-memcached-0.0.2.tgz" + } + }, + "keywords": [ + "memcached", + "connection", + "session", + "store", + "cache" + ], + "url": "http://registry.npmjs.org/connect-memcached/" + }, + "connect-mongo": { + "name": "connect-mongo", + "description": "MongoDB session store for Connect", + "dist-tags": { + "latest": "0.1.5" + }, + "maintainers": [ + { + "name": "kcbanner", + "email": "kcbanner@gmail.com" + } + ], + "time": { + "modified": "2011-11-27T14:34:00.677Z", + "created": "2011-03-08T05:36:36.406Z", + "0.1.0": "2011-03-08T05:36:36.605Z", + "0.1.1": "2011-03-18T01:01:09.965Z", + "0.1.2": "2011-05-18T02:09:51.633Z", + "0.1.3": "2011-06-28T21:50:29.520Z", + "0.1.4": "2011-06-29T04:15:34.515Z", + "0.1.5": "2011-07-08T01:42:40.255Z" + }, + "author": { + "name": "Casey Banner", + "email": "kcbanner@gmail.com" + }, + "users": { + "troygoode": true + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/connect-mongo/0.1.0", + "0.1.1": "http://registry.npmjs.org/connect-mongo/0.1.1", + "0.1.2": "http://registry.npmjs.org/connect-mongo/0.1.2", + "0.1.3": "http://registry.npmjs.org/connect-mongo/0.1.3", + "0.1.4": "http://registry.npmjs.org/connect-mongo/0.1.4", + "0.1.5": "http://registry.npmjs.org/connect-mongo/0.1.5" + }, + "dist": { + "0.1.0": { + "shasum": "01624c23c53dd87bf5ffc77917ea9adad845fcda", + "tarball": "http://registry.npmjs.org/connect-mongo/-/connect-mongo-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "66df471064d0fcecbc8ac8260ac946e5be29d8e6", + "tarball": "http://registry.npmjs.org/connect-mongo/-/connect-mongo-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "3ee5cc4103531536d26a7a9daae308a6656d601c", + "tarball": "http://registry.npmjs.org/connect-mongo/-/connect-mongo-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "7c120f7f102a186f19807724a57b358988d2950e", + "tarball": "http://registry.npmjs.org/connect-mongo/-/connect-mongo-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "da1478d3d8880122762ee2531ad2b7eaa82c06a9", + "tarball": "http://registry.npmjs.org/connect-mongo/-/connect-mongo-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "2c9bf15e9fd2616d3b8e49434e52890f847e77f1", + "tarball": "http://registry.npmjs.org/connect-mongo/-/connect-mongo-0.1.5.tgz" + } + }, + "keywords": [ + "connect", + "mongo", + "mongodb", + "session", + "express" + ], + "url": "http://registry.npmjs.org/connect-mongo/" + }, + "connect-mongodb": { + "name": "connect-mongodb", + "description": "mongodb session store for connect", + "dist-tags": { + "latest": "1.1.1" + }, + "maintainers": [ + { + "name": "masylum", + "email": "masylum@gmail.com" + } + ], + "author": { + "name": "Vladimir Dronnikov", + "email": "dronnikov@gmail.com" + }, + "time": { + "modified": "2011-11-13T21:13:07.539Z", + "created": "2011-01-08T14:15:51.862Z", + "0.0.2": "2011-01-08T14:15:51.862Z", + "0.0.4": "2011-01-08T14:15:51.862Z", + "0.1.0": "2011-01-08T14:15:51.862Z", + "0.1.1": "2011-01-10T00:43:36.794Z", + "0.2.0": "2011-03-13T23:57:27.136Z", + "0.2.1": "2011-03-14T00:16:58.182Z", + "0.2.2": "2011-03-23T18:47:49.944Z", + "0.3.0": "2011-04-28T23:40:57.858Z", + "0.4.0": "2011-05-31T08:06:15.463Z", + "1.0.0beta": "2011-06-29T10:25:52.401Z", + "1.0.0rc": "2011-07-05T10:45:07.244Z", + "1.0.0rc2": "2011-07-13T21:35:39.955Z", + "1.0.0": "2011-07-27T22:06:24.902Z", + "1.1.0": "2011-11-11T08:24:29.784Z", + "1.1.1": "2011-11-13T21:13:07.539Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/masylum/connect-mongodb.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/connect-mongodb/0.0.2", + "0.0.4": "http://registry.npmjs.org/connect-mongodb/0.0.4", + "0.1.0": "http://registry.npmjs.org/connect-mongodb/0.1.0", + "0.1.1": "http://registry.npmjs.org/connect-mongodb/0.1.1", + "0.2.0": "http://registry.npmjs.org/connect-mongodb/0.2.0", + "0.2.1": "http://registry.npmjs.org/connect-mongodb/0.2.1", + "0.2.2": "http://registry.npmjs.org/connect-mongodb/0.2.2", + "0.3.0": "http://registry.npmjs.org/connect-mongodb/0.3.0", + "0.4.0": "http://registry.npmjs.org/connect-mongodb/0.4.0", + "1.0.0beta": "http://registry.npmjs.org/connect-mongodb/1.0.0beta", + "1.0.0rc": "http://registry.npmjs.org/connect-mongodb/1.0.0rc", + "1.0.0rc2": "http://registry.npmjs.org/connect-mongodb/1.0.0rc2", + "1.0.0": "http://registry.npmjs.org/connect-mongodb/1.0.0", + "1.1.0": "http://registry.npmjs.org/connect-mongodb/1.1.0", + "1.1.1": "http://registry.npmjs.org/connect-mongodb/1.1.1" + }, + "dist": { + "0.0.2": { + "tarball": "http://packages:5984/connect-mongodb/-/connect-mongodb-0.0.2.tgz" + }, + "0.0.4": { + "tarball": "http://registry.npmjs.org/connect-mongodb/-/connect-mongodb-0.0.4.tgz" + }, + "0.1.0": { + "shasum": "7be22249204320066c8b50b18a1a99b9fa9fc9b1", + "tarball": "http://registry.npmjs.org/connect-mongodb/-/connect-mongodb-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "cb9dfb2cb5c783ed050f603dfdbc77388f91484c", + "tarball": "http://registry.npmjs.org/connect-mongodb/-/connect-mongodb-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "1343e702fc090515b626b0d60c42b1bd6c702c8c", + "tarball": "http://registry.npmjs.org/connect-mongodb/-/connect-mongodb-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "48dc02ba7667155ac75d8600cd4bf488a4985bea", + "tarball": "http://registry.npmjs.org/connect-mongodb/-/connect-mongodb-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "65d9e1198ae686a856155ee1386ab34d4c4e134e", + "tarball": "http://registry.npmjs.org/connect-mongodb/-/connect-mongodb-0.2.2.tgz" + }, + "0.3.0": { + "shasum": "9f4264d51d868366c3a65ea8482e3b5e48c6372c", + "tarball": "http://registry.npmjs.org/connect-mongodb/-/connect-mongodb-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "c30665f50dcbec51a91410b775166006097239f1", + "tarball": "http://registry.npmjs.org/connect-mongodb/-/connect-mongodb-0.4.0.tgz" + }, + "1.0.0beta": { + "shasum": "13d34863b62a22e3a20918dccd176a61c104f0a3", + "tarball": "http://registry.npmjs.org/connect-mongodb/-/connect-mongodb-1.0.0beta.tgz" + }, + "1.0.0rc": { + "shasum": "23a98cf322964884586ea2447aabf5d95a9243dc", + "tarball": "http://registry.npmjs.org/connect-mongodb/-/connect-mongodb-1.0.0rc.tgz" + }, + "1.0.0rc2": { + "shasum": "41d6ed620e743c43528f4bdd9b2caa545d10e0b8", + "tarball": "http://registry.npmjs.org/connect-mongodb/-/connect-mongodb-1.0.0rc2.tgz" + }, + "1.0.0": { + "shasum": "d323a84395fec7b5b83937174e9ad0ec8720b08a", + "tarball": "http://registry.npmjs.org/connect-mongodb/-/connect-mongodb-1.0.0.tgz" + }, + "1.1.0": { + "shasum": "79606d4ea52070f9edf1e4f9b8f78eadaa196abc", + "tarball": "http://registry.npmjs.org/connect-mongodb/-/connect-mongodb-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "34908827399c33c884947eeeb6c3b76457303ee6", + "tarball": "http://registry.npmjs.org/connect-mongodb/-/connect-mongodb-1.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-mongodb/" + }, + "connect-mongoose": { + "name": "connect-mongoose", + "description": "Mongoose based SessionStorage for connect's session middleware", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "scott", + "email": "scott.rahner@gmail.com" + } + ], + "time": { + "modified": "2011-10-10T13:15:59.992Z", + "created": "2011-07-13T03:50:25.982Z", + "0.0.1": "2011-07-13T03:50:26.187Z", + "0.0.2": "2011-10-10T13:15:59.992Z" + }, + "author": { + "name": "Scott Rahner, N1 Concepts" + }, + "repository": { + "type": "git", + "url": "git://github.com/scott2449/connect-mongoose.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/connect-mongoose/0.0.1", + "0.0.2": "http://registry.npmjs.org/connect-mongoose/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "4583a90f4c2813bf4ba8e6d4558534e72bc7fee3", + "tarball": "http://registry.npmjs.org/connect-mongoose/-/connect-mongoose-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "eb79167ae0da5059069483dd9bc2e49261cb8b7b", + "tarball": "http://registry.npmjs.org/connect-mongoose/-/connect-mongoose-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-mongoose/" + }, + "connect-mongoose-session": { + "name": "connect-mongoose-session", + "description": "mongodb session store for connect and mongoose", + "dist-tags": { + "latest": "0.4.8" + }, + "maintainers": [ + { + "name": "fkei", + "email": "kei.topaz@gmail.com" + } + ], + "time": { + "modified": "2011-08-17T03:32:12.274Z", + "created": "2011-08-17T03:32:09.719Z", + "0.4.8": "2011-08-17T03:32:12.274Z" + }, + "author": { + "name": "Kei Funagayama", + "email": "kei.topaz@gmail.com" + }, + "versions": { + "0.4.8": "http://registry.npmjs.org/connect-mongoose-session/0.4.8" + }, + "dist": { + "0.4.8": { + "shasum": "840ebc874cf01d62402a805f98e0739a9c48d814", + "tarball": "http://registry.npmjs.org/connect-mongoose-session/-/connect-mongoose-session-0.4.8.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-mongoose-session/" + }, + "connect-mongoose-sessionstore": { + "name": "connect-mongoose-sessionstore", + "description": "session store for connect and mongoose", + "dist-tags": { + "latest": "0.4.9" + }, + "maintainers": [ + { + "name": "codemastercode", + "email": "codemastercode@gmail.com" + } + ], + "time": { + "modified": "2011-10-14T22:58:06.618Z", + "created": "2011-10-14T22:58:06.341Z", + "0.4.9": "2011-10-14T22:58:06.618Z" + }, + "author": { + "name": "Code Master" + }, + "versions": { + "0.4.9": "http://registry.npmjs.org/connect-mongoose-sessionstore/0.4.9" + }, + "dist": { + "0.4.9": { + "shasum": "e5e032c505b24e9abac235260c55256bab488ddc", + "tarball": "http://registry.npmjs.org/connect-mongoose-sessionstore/-/connect-mongoose-sessionstore-0.4.9.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-mongoose-sessionstore/" + }, + "connect-mysql-session": { + "name": "connect-mysql-session", + "description": "A MySQL session store for node.js connect.", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "danieldickison", + "email": "ddickison@carnegielearning.com" + } + ], + "time": { + "modified": "2011-09-07T20:19:53.496Z", + "created": "2011-07-20T14:04:25.218Z", + "0.1.0": "2011-07-20T14:04:25.358Z", + "0.1.1": "2011-08-01T21:13:16.149Z", + "0.1.2": "2011-08-03T18:48:38.104Z", + "0.1.3": "2011-09-07T20:19:53.496Z" + }, + "author": { + "name": "Daniel Dickison", + "email": "ddickison@carnegielearning.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/CarnegieLearning/connect-mysql-session.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/connect-mysql-session/0.1.0", + "0.1.1": "http://registry.npmjs.org/connect-mysql-session/0.1.1", + "0.1.2": "http://registry.npmjs.org/connect-mysql-session/0.1.2", + "0.1.3": "http://registry.npmjs.org/connect-mysql-session/0.1.3" + }, + "dist": { + "0.1.0": { + "shasum": "2a2ed294f34e51797a94a3a823b85279da843520", + "tarball": "http://registry.npmjs.org/connect-mysql-session/-/connect-mysql-session-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "801e6e241064ed3e20ff35641d4b0469aa94dddd", + "tarball": "http://registry.npmjs.org/connect-mysql-session/-/connect-mysql-session-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "b2a16650d0bce189a810cee401571e27139d18cf", + "tarball": "http://registry.npmjs.org/connect-mysql-session/-/connect-mysql-session-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "30919df32436727e58a341c769d8c42546e3ed63", + "tarball": "http://registry.npmjs.org/connect-mysql-session/-/connect-mysql-session-0.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-mysql-session/" + }, + "connect-no-www": { + "name": "connect-no-www", + "description": "Simple no-www redirection as connect middleware", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "vincentwoo", + "email": "me@vincentwoo.com" + } + ], + "time": { + "modified": "2011-05-13T22:29:07.627Z", + "created": "2011-05-13T22:29:07.251Z", + "0.1.0": "2011-05-13T22:29:07.627Z" + }, + "author": { + "name": "Vincent Woo", + "email": "me@vincentwoo.com", + "url": "http://vincentwoo.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:vincentwoo/connect-no-www.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/connect-no-www/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "2cbe7c21eea1ea8ac21ebe6a1d241e2f437941bc", + "tarball": "http://registry.npmjs.org/connect-no-www/-/connect-no-www-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-no-www/" + }, + "connect-notifo": { + "name": "connect-notifo", + "description": "Connect middleware for notifo alerts.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "mape", + "email": "mape@mape.me" + } + ], + "time": { + "modified": "2011-07-27T06:10:25.505Z", + "created": "2011-07-27T06:10:24.891Z", + "0.0.1": "2011-07-27T06:10:25.505Z" + }, + "author": { + "name": "Mathias Pettersson", + "email": "mape@mape.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/mape/connect-notifo.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/connect-notifo/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "17b7d1d1c35ab61618b1dabbff4f877a03fd7cf4", + "tarball": "http://registry.npmjs.org/connect-notifo/-/connect-notifo-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-notifo/" + }, + "connect-parallel": { + "name": "connect-parallel", + "description": "Connect middleware that makes possible to run asynchronous middlewares parallel", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "orktes", + "email": "jaakko@applifier.com" + } + ], + "time": { + "modified": "2011-10-14T13:52:27.453Z", + "created": "2011-10-14T13:52:26.472Z", + "0.0.1": "2011-10-14T13:52:27.453Z" + }, + "author": { + "name": "Jaakko Lukkari", + "email": "opensource@applifier.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Applifier/connect-parallel.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/connect-parallel/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "7d774efbf657667ede81927fb57cb097b57bbbde", + "tarball": "http://registry.npmjs.org/connect-parallel/-/connect-parallel-0.0.1.tgz" + } + }, + "keywords": [ + "connect" + ], + "url": "http://registry.npmjs.org/connect-parallel/" + }, + "connect-parameter-router": { + "name": "connect-parameter-router", + "description": "Query and body parameter based routing for connect", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "orktes", + "email": "jaakko@applifier.com" + } + ], + "time": { + "modified": "2011-05-11T13:25:01.107Z", + "created": "2011-05-11T13:25:00.304Z", + "0.0.1": "2011-05-11T13:25:01.107Z" + }, + "author": { + "name": "http://applifier.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Applifier/connect-parameter-router.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/connect-parameter-router/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "14a26f8537faf3b58bddf68af9d480ac618cef3c", + "tarball": "http://registry.npmjs.org/connect-parameter-router/-/connect-parameter-router-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-parameter-router/" + }, + "connect-pg": { + "name": "connect-pg", + "description": "Connect storage using PostgreSQL.", + "dist-tags": { + "latest": "1.1.3" + }, + "maintainers": [ + { + "name": "jebas", + "email": "jeff.l.baskin@gmail.com" + } + ], + "time": { + "modified": "2011-09-22T22:07:21.550Z", + "created": "2011-06-26T13:40:57.402Z", + "1.0.0": "2011-06-26T13:40:57.702Z", + "1.1.0": "2011-08-30T04:21:04.699Z", + "1.1.1": "2011-09-14T02:01:31.565Z", + "1.1.2": "2011-09-20T01:19:03.678Z", + "1.1.3": "2011-09-22T22:07:21.550Z" + }, + "author": { + "name": "Jeff Baskin", + "email": "jeff.l.baskin@gmail.com" + }, + "repository": { + "type": "git", + "url": "ssh://git@github.com/jebas/connect-pg.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/connect-pg/1.0.0", + "1.1.0": "http://registry.npmjs.org/connect-pg/1.1.0", + "1.1.1": "http://registry.npmjs.org/connect-pg/1.1.1", + "1.1.2": "http://registry.npmjs.org/connect-pg/1.1.2", + "1.1.3": "http://registry.npmjs.org/connect-pg/1.1.3" + }, + "dist": { + "1.0.0": { + "shasum": "eee210e00f5eccb582e1202ea8e3bc83de44f63d", + "tarball": "http://registry.npmjs.org/connect-pg/-/connect-pg-1.0.0.tgz" + }, + "1.1.0": { + "shasum": "fc13edec3585f246b320fd51e394f6024b22ff73", + "tarball": "http://registry.npmjs.org/connect-pg/-/connect-pg-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "4f387b6f7478e740a999cb9ad92ff8ce9d2b46a3", + "tarball": "http://registry.npmjs.org/connect-pg/-/connect-pg-1.1.1.tgz" + }, + "1.1.2": { + "shasum": "aac4842538a27665c4d9d5cae27add014f6b16fb", + "tarball": "http://registry.npmjs.org/connect-pg/-/connect-pg-1.1.2.tgz" + }, + "1.1.3": { + "shasum": "e73b2f67961fe9632e12f8bfb226b0d4a59f8eb4", + "tarball": "http://registry.npmjs.org/connect-pg/-/connect-pg-1.1.3.tgz" + } + }, + "keywords": [ + "pg", + "connect", + "postgres", + "postgresql", + "express" + ], + "url": "http://registry.npmjs.org/connect-pg/" + }, + "connect-proxy": { + "name": "connect-proxy", + "description": "Retrieve originating ip/host values when proxying to your connect app", + "dist-tags": { + "latest": "1.0.2" + }, + "maintainers": [ + { + "name": "gonsfx", + "email": "gonsfx@googlemail.com" + } + ], + "time": { + "modified": "2011-05-15T11:26:02.159Z", + "created": "2011-05-09T20:14:38.879Z", + "1.0.0": "2011-05-09T20:14:39.622Z", + "1.0.1": "2011-05-15T11:16:45.093Z", + "1.0.2": "2011-05-15T11:26:02.159Z" + }, + "author": { + "name": "Christoph Werner", + "email": "gonsfx@googlemail.com", + "url": "http://twitter.com/gonsfx" + }, + "repository": { + "type": "git", + "url": "git://github.com/gonsfx/connect-proxy.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/connect-proxy/1.0.0", + "1.0.1": "http://registry.npmjs.org/connect-proxy/1.0.1", + "1.0.2": "http://registry.npmjs.org/connect-proxy/1.0.2" + }, + "dist": { + "1.0.0": { + "shasum": "7ef5864f4ea78606f01d8408f2cc59ab06c790d6", + "tarball": "http://registry.npmjs.org/connect-proxy/-/connect-proxy-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "89735ff4a508d1a7a70d20b623ee907f9c118245", + "tarball": "http://registry.npmjs.org/connect-proxy/-/connect-proxy-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "dd6e9a9ddfc9f78c7fad7328a02d9c08d88523b4", + "tarball": "http://registry.npmjs.org/connect-proxy/-/connect-proxy-1.0.2.tgz" + } + }, + "keywords": [ + "connect", + "middleware", + "proxy", + "apache", + "nginx", + "squid", + "headers" + ], + "url": "http://registry.npmjs.org/connect-proxy/" + }, + "connect-queryparser": { + "name": "connect-queryparser", + "description": "Add req.query and req.pathname as parsed by `url` and `querystring`", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-08-07T00:40:46.136Z", + "created": "2011-08-07T00:40:45.737Z", + "1.0.0": "2011-08-07T00:40:46.136Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com", + "url": "http://coolaj86.info" + }, + "repository": { + "type": "git", + "url": "git://github.com/coolaj86/connect-queryparser.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/connect-queryparser/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "de03602463cd0308e43bbd8f8b057a3d3ec097a7", + "tarball": "http://registry.npmjs.org/connect-queryparser/-/connect-queryparser-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-queryparser/" + }, + "connect-redis": { + "name": "connect-redis", + "description": "Redis session store for Connect", + "dist-tags": { + "latest": "1.2.0" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "time": { + "modified": "2011-11-17T17:12:40.964Z", + "created": "2010-12-20T23:28:47.888Z", + "0.0.1": "2010-12-20T23:28:47.888Z", + "0.0.2": "2010-12-20T23:28:47.888Z", + "0.1.0": "2010-12-20T23:28:47.888Z", + "0.1.1": "2010-12-20T23:28:47.888Z", + "0.1.2": "2010-12-20T23:28:47.888Z", + "0.1.3": "2010-12-20T23:28:47.888Z", + "0.2.0": "2010-12-20T23:28:47.888Z", + "0.2.1": "2010-12-20T23:28:47.888Z", + "0.2.2": "2011-01-02T18:53:52.790Z", + "0.2.3": "2011-02-01T18:17:06.452Z", + "1.0.0": "2011-02-26T01:30:17.670Z", + "1.0.1": "2011-04-14T22:19:00.565Z", + "1.0.2": "2011-04-15T16:21:39.193Z", + "1.0.3": "2011-04-17T23:06:31.736Z", + "1.0.4": "2011-05-01T17:25:49.752Z", + "1.0.5": "2011-06-02T20:47:06.268Z", + "1.0.6": "2011-06-21T15:34:05.551Z", + "1.0.7": "2011-08-04T20:41:28.613Z", + "1.1.0": "2011-10-06T02:09:10.594Z", + "1.2.0": "2011-11-17T17:12:40.964Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/connect-redis/0.0.1", + "0.0.2": "http://registry.npmjs.org/connect-redis/0.0.2", + "0.1.0": "http://registry.npmjs.org/connect-redis/0.1.0", + "0.1.1": "http://registry.npmjs.org/connect-redis/0.1.1", + "0.1.2": "http://registry.npmjs.org/connect-redis/0.1.2", + "0.1.3": "http://registry.npmjs.org/connect-redis/0.1.3", + "0.2.0": "http://registry.npmjs.org/connect-redis/0.2.0", + "0.2.1": "http://registry.npmjs.org/connect-redis/0.2.1", + "0.2.2": "http://registry.npmjs.org/connect-redis/0.2.2", + "0.2.3": "http://registry.npmjs.org/connect-redis/0.2.3", + "1.0.0": "http://registry.npmjs.org/connect-redis/1.0.0", + "1.0.1": "http://registry.npmjs.org/connect-redis/1.0.1", + "1.0.2": "http://registry.npmjs.org/connect-redis/1.0.2", + "1.0.3": "http://registry.npmjs.org/connect-redis/1.0.3", + "1.0.4": "http://registry.npmjs.org/connect-redis/1.0.4", + "1.0.5": "http://registry.npmjs.org/connect-redis/1.0.5", + "1.0.6": "http://registry.npmjs.org/connect-redis/1.0.6", + "1.0.7": "http://registry.npmjs.org/connect-redis/1.0.7", + "1.1.0": "http://registry.npmjs.org/connect-redis/1.1.0", + "1.2.0": "http://registry.npmjs.org/connect-redis/1.2.0" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/connect-redis/-/connect-redis-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/connect-redis/-/connect-redis-0.0.2.tgz" + }, + "0.1.0": { + "tarball": "http://packages:5984/connect-redis/-/connect-redis-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://packages:5984/connect-redis/-/connect-redis-0.1.1.tgz" + }, + "0.1.2": { + "tarball": "http://packages:5984/connect-redis/-/connect-redis-0.1.2.tgz" + }, + "0.1.3": { + "tarball": "http://packages:5984/connect-redis/-/connect-redis-0.1.3.tgz" + }, + "0.2.0": { + "tarball": "http://packages:5984/connect-redis/-/connect-redis-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "d4b166b0ae27b12262f9587a63630c1c321fb473", + "tarball": "http://registry.npmjs.org/connect-redis/-/connect-redis-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "cfbba12d6784da515ff909003e4199a4603bbc38", + "tarball": "http://registry.npmjs.org/connect-redis/-/connect-redis-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "fbe2fa343f41cd89a42f65ec129918889b1f09b1", + "tarball": "http://registry.npmjs.org/connect-redis/-/connect-redis-0.2.3.tgz" + }, + "1.0.0": { + "shasum": "e0f759b452b94c789732bc8a9d1cd4b86963b285", + "tarball": "http://registry.npmjs.org/connect-redis/-/connect-redis-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "4192248f9b3c5398cf5853ec975896c2bf3b961b", + "tarball": "http://registry.npmjs.org/connect-redis/-/connect-redis-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "bc677f7280f240e8b6399236b6a9340b088d93a6", + "tarball": "http://registry.npmjs.org/connect-redis/-/connect-redis-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "98325537d9267fa2bf2a0185b51cbf3f526364c3", + "tarball": "http://registry.npmjs.org/connect-redis/-/connect-redis-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "675f71e5d830f539dd3d469140e58d42cc4d7abd", + "tarball": "http://registry.npmjs.org/connect-redis/-/connect-redis-1.0.4.tgz" + }, + "1.0.5": { + "shasum": "637298d38954e1117a80f1956ed59abea29af960", + "tarball": "http://registry.npmjs.org/connect-redis/-/connect-redis-1.0.5.tgz" + }, + "1.0.6": { + "shasum": "19ea3bcaf4122fd169e4966fd6c834fbd30bc35e", + "tarball": "http://registry.npmjs.org/connect-redis/-/connect-redis-1.0.6.tgz" + }, + "1.0.7": { + "shasum": "6c722dad1aea4e2e6eea96547a3eac1bf008ac74", + "tarball": "http://registry.npmjs.org/connect-redis/-/connect-redis-1.0.7.tgz" + }, + "1.1.0": { + "shasum": "25666eb1ad6913203b7d8820e122bf3fc143c3ac", + "tarball": "http://registry.npmjs.org/connect-redis/-/connect-redis-1.1.0.tgz" + }, + "1.2.0": { + "shasum": "6f45d44361787d1a3135c9be6c9c9ed4b4d47fb7", + "tarball": "http://registry.npmjs.org/connect-redis/-/connect-redis-1.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-redis/" + }, + "connect-restreamer": { + "name": "connect-restreamer", + "description": "re-stream a parsed body so that it can be proxied.", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-07-30T09:02:50.720Z", + "created": "2011-07-30T09:02:48.661Z", + "1.0.0": "2011-07-30T09:02:50.720Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com", + "url": "http://bit.ly/dominictarr" + }, + "repository": { + "type": "git", + "url": "git://github.com/dominictarr/connect-restreamer.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/connect-restreamer/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "4476dc9c40389d80fbb6fc3d1e46663ce780e319", + "tarball": "http://registry.npmjs.org/connect-restreamer/-/connect-restreamer-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-restreamer/" + }, + "connect-riak": { + "name": "connect-riak", + "description": "Riak Session Store for Connect", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "frank06", + "email": "francisco.treacy@gmail.com" + } + ], + "time": { + "modified": "2011-08-14T00:44:59.269Z", + "created": "2011-07-31T14:07:25.812Z", + "0.1.0": "2011-07-31T14:07:26.580Z", + "0.1.1": "2011-08-14T00:44:59.269Z" + }, + "author": { + "name": "Sean Cribbs", + "email": "sean@basho.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/connect-riak/0.1.0", + "0.1.1": "http://registry.npmjs.org/connect-riak/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "3daf1b8268d7735b11cc6407f9d4687e84c4dcee", + "tarball": "http://registry.npmjs.org/connect-riak/-/connect-riak-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "68c21cea95c9ad2c21bdbb67e55da68ff5649f1a", + "tarball": "http://registry.npmjs.org/connect-riak/-/connect-riak-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-riak/" + }, + "connect-rpx": { + "name": "connect-rpx", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "xrdawson", + "email": "xrdawson@gmail.com" + } + ], + "author": { + "name": "Chris Dawson", + "email": "xrdawson@gmail.com" + }, + "time": { + "modified": "2011-01-13T08:24:53.332Z", + "created": "2011-01-04T05:43:52.081Z", + "0.0.1": "2011-01-04T05:43:52.081Z", + "0.0.2": "2011-01-04T05:43:52.081Z", + "0.0.3": "2011-01-04T05:43:52.081Z", + "0.0.4": "2011-01-04T05:43:52.081Z", + "0.0.5": "2011-01-04T21:31:06.147Z", + "0.0.6": "2011-01-04T22:53:27.474Z", + "0.0.7": "2011-01-04T23:06:09.500Z", + "0.1.0": "2011-01-05T19:26:07.875Z", + "0.1.1": "2011-01-05T19:28:23.252Z", + "0.1.2": "2011-01-05T19:32:45.573Z", + "0.1.3": "2011-01-13T08:23:02.849Z", + "0.1.4": "2011-01-13T08:24:53.332Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/connect-rpx/0.0.1", + "0.0.2": "http://registry.npmjs.org/connect-rpx/0.0.2", + "0.0.3": "http://registry.npmjs.org/connect-rpx/0.0.3", + "0.0.4": "http://registry.npmjs.org/connect-rpx/0.0.4", + "0.0.5": "http://registry.npmjs.org/connect-rpx/0.0.5", + "0.0.6": "http://registry.npmjs.org/connect-rpx/0.0.6", + "0.0.7": "http://registry.npmjs.org/connect-rpx/0.0.7", + "0.1.0": "http://registry.npmjs.org/connect-rpx/0.1.0", + "0.1.1": "http://registry.npmjs.org/connect-rpx/0.1.1", + "0.1.2": "http://registry.npmjs.org/connect-rpx/0.1.2", + "0.1.3": "http://registry.npmjs.org/connect-rpx/0.1.3", + "0.1.4": "http://registry.npmjs.org/connect-rpx/0.1.4" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/connect-rpx/-/connect-rpx-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/connect-rpx/-/connect-rpx-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/connect-rpx/-/connect-rpx-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://registry.npmjs.org/connect-rpx/-/connect-rpx-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://registry.npmjs.org/connect-rpx/-/connect-rpx-0.0.5.tgz" + }, + "0.0.6": { + "tarball": "http://registry.npmjs.org/connect-rpx/-/connect-rpx-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "9b7ed19d7d4a9ca094aef3554df0958157b114e7", + "tarball": "http://registry.npmjs.org/connect-rpx/-/connect-rpx-0.0.7.tgz" + }, + "0.1.0": { + "shasum": "399235bcbd5fd71b165d2ce0823940c4daf680b6", + "tarball": "http://registry.npmjs.org/connect-rpx/-/connect-rpx-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "484ef401da22159f2350add895b3d089188bf7a4", + "tarball": "http://registry.npmjs.org/connect-rpx/-/connect-rpx-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "929d04ee81836c581970a478bd39702a6786d3b7", + "tarball": "http://registry.npmjs.org/connect-rpx/-/connect-rpx-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "5a4d581f4b5ea899291da8669b4725968b1058e0", + "tarball": "http://registry.npmjs.org/connect-rpx/-/connect-rpx-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "2f3e3ecce8a0727389e8d47b85d24b35e6586d49", + "tarball": "http://registry.npmjs.org/connect-rpx/-/connect-rpx-0.1.4.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-rpx/" + }, + "connect-security": { + "name": "connect-security", + "description": "Authentication and authorization middleware for Connect.", + "dist-tags": { + "latest": "0.5.2" + }, + "maintainers": [ + { + "name": "superafroman", + "email": "max.stewart@superafroman.com" + } + ], + "author": { + "name": "Max Stewart", + "email": "max.stewart@superafroman.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/superafroman/connect-security.git" + }, + "time": { + "modified": "2011-03-23T18:45:43.077Z", + "created": "2011-03-06T16:54:35.169Z", + "0.0.1": "2011-03-06T16:54:35.169Z", + "0.0.2": "2011-03-06T16:54:35.169Z", + "0.0.3": "2011-03-06T16:54:35.169Z", + "0.5.0": "2011-03-06T16:54:35.169Z", + "0.5.1": "2011-03-06T16:54:35.169Z", + "0.5.2": "2011-03-23T18:45:43.077Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/connect-security/0.0.1", + "0.0.2": "http://registry.npmjs.org/connect-security/0.0.2", + "0.0.3": "http://registry.npmjs.org/connect-security/0.0.3", + "0.5.0": "http://registry.npmjs.org/connect-security/0.5.0", + "0.5.1": "http://registry.npmjs.org/connect-security/0.5.1", + "0.5.2": "http://registry.npmjs.org/connect-security/0.5.2" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/connect-security/-/connect-security-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/connect-security/-/connect-security-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/connect-security/-/connect-security-0.0.3.tgz" + }, + "0.5.0": { + "tarball": "http://registry.npmjs.org/connect-security/-/connect-security-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "90c3c77beebc06c6bc5c426804de235b4ccc045a", + "tarball": "http://registry.npmjs.org/connect-security/-/connect-security-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "bb15248b180cfcc59d79a218acc598c542eaf64a", + "tarball": "http://registry.npmjs.org/connect-security/-/connect-security-0.5.2.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-security/" + }, + "connect-select": { + "name": "connect-select", + "description": "Connect middleware providing server side data filtering using JSONSelect.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "lloyd", + "email": "lloyd@hilaiel.com" + } + ], + "time": { + "modified": "2011-05-27T20:20:05.789Z", + "created": "2011-05-27T20:14:51.882Z", + "0.0.1": "2011-05-27T20:14:52.294Z", + "0.0.2": "2011-05-27T20:20:05.789Z" + }, + "author": { + "name": "Lloyd Hilaiel", + "email": "lloyd@hilaiel.com", + "url": "http://trickyco.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/lloyd/connect-select.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/connect-select/0.0.1", + "0.0.2": "http://registry.npmjs.org/connect-select/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "167bd121ebfe6327457a3fa73e6efc2d807a1bb4", + "tarball": "http://registry.npmjs.org/connect-select/-/connect-select-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "e6b40fa0d3af279f7f6756ba98441182d85123be", + "tarball": "http://registry.npmjs.org/connect-select/-/connect-select-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-select/" + }, + "connect-session-mongo": { + "name": "connect-session-mongo", + "description": "MongoDB Session Store for Connect Middleware", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "bartt", + "email": "bart@zazengo.com" + } + ], + "author": { + "name": "Bart Teeuwisse", + "email": "bart@thecodemill.biz" + }, + "repository": { + "type": "git", + "url": "http://github.com/bartt/connect-session-mongo.git" + }, + "time": { + "modified": "2011-09-13T19:24:20.603Z", + "created": "2011-09-13T19:24:20.603Z", + "0.0.1": "2011-09-13T19:24:20.603Z", + "0.0.2": "2011-09-13T19:24:20.603Z", + "0.0.3": "2011-09-13T19:24:20.603Z", + "0.0.4": "2011-09-13T19:24:20.603Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/connect-session-mongo/0.0.1", + "0.0.2": "http://registry.npmjs.org/connect-session-mongo/0.0.2", + "0.0.3": "http://registry.npmjs.org/connect-session-mongo/0.0.3", + "0.0.4": "http://registry.npmjs.org/connect-session-mongo/0.0.4" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/connect-session-mongo/-/connect-session-mongo-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/connect-session-mongo/-/connect-session-mongo-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/connect-session-mongo/-/connect-session-mongo-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "7f448299110f495e20615bc834679f6c70c4a632", + "tarball": "http://registry.npmjs.org/connect-session-mongo/-/connect-session-mongo-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-session-mongo/" + }, + "connect-session-redis-store": { + "name": "connect-session-redis-store", + "description": "Redis Store for Connect sessions", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "antono", + "email": "antono.vasiljev@gmail.com" + } + ], + "versions": { + "0.0.1": "http://registry.npmjs.org/connect-session-redis-store/0.0.1", + "0.0.2": "http://registry.npmjs.org/connect-session-redis-store/0.0.2" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/connect-session-redis-store/-/connect-session-redis-store-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/connect-session-redis-store/-/connect-session-redis-store-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-session-redis-store/" + }, + "connect-sessionvoc": { + "name": "connect-sessionvoc", + "description": "SessionVOC session store for the connect framework", + "dist-tags": { + "latest": "1.0.3" + }, + "maintainers": [ + { + "name": "triagens", + "email": "info@triagens.de" + } + ], + "time": { + "modified": "2011-08-03T16:19:19.012Z", + "created": "2011-08-03T11:10:19.260Z", + "1.0.2": "2011-08-03T11:10:21.730Z", + "1.0.3": "2011-08-03T16:11:38.571Z" + }, + "author": { + "name": "Frank Celler", + "email": "f.celler@triagens.de" + }, + "versions": { + "1.0.2": "http://registry.npmjs.org/connect-sessionvoc/1.0.2", + "1.0.3": "http://registry.npmjs.org/connect-sessionvoc/1.0.3" + }, + "dist": { + "1.0.2": { + "shasum": "6e44f9111bfc56d7f1613a3b10ca8fa866659ba4", + "tarball": "http://registry.npmjs.org/connect-sessionvoc/-/connect-sessionvoc-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "03026b61b0bf5203190c92091e0e69d77b74d1a9", + "tarball": "http://registry.npmjs.org/connect-sessionvoc/-/connect-sessionvoc-1.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-sessionvoc/" + }, + "connect-spawn": { + "name": "connect-spawn", + "description": "Child process middleware for connect.", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "shannonmoeller", + "email": "me@shannonmoeller.com" + } + ], + "time": { + "modified": "2011-10-02T06:36:12.736Z", + "created": "2011-09-29T18:33:53.628Z", + "0.0.1": "2011-09-29T18:33:55.024Z", + "0.0.2": "2011-09-30T16:12:37.788Z", + "0.0.3": "2011-10-02T06:36:12.736Z" + }, + "author": { + "name": "Shannon Moeller", + "email": "me@shannonmoeller.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/shannonmoeller/connect-spawn.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/connect-spawn/0.0.1", + "0.0.2": "http://registry.npmjs.org/connect-spawn/0.0.2", + "0.0.3": "http://registry.npmjs.org/connect-spawn/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "e34e2540ff31d8fc6120d2e4567548c1bf21679f", + "tarball": "http://registry.npmjs.org/connect-spawn/-/connect-spawn-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "37e237e8347e2c0a95e69c2711d7145718765d08", + "tarball": "http://registry.npmjs.org/connect-spawn/-/connect-spawn-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "bedd0c09a18ad0ffadfc0ac4c73fd7f12fa0dfb0", + "tarball": "http://registry.npmjs.org/connect-spawn/-/connect-spawn-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-spawn/" + }, + "connect-spdy": { + "name": "connect-spdy", + "description": "SPDY-ized connect server.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "eee-c", + "email": "chris@eeecomputes.com" + } + ], + "time": { + "modified": "2011-11-06T19:03:27.448Z", + "created": "2011-06-22T01:53:57.741Z", + "0.0.0": "2011-06-22T01:53:58.201Z", + "0.0.1": "2011-06-22T01:55:33.421Z", + "0.0.2": "2011-06-24T13:49:34.592Z", + "0.0.3": "2011-07-29T01:37:05.011Z", + "0.0.4": "2011-07-29T03:25:53.049Z", + "0.1.0": "2011-11-06T19:03:27.448Z" + }, + "author": { + "name": "Chris Strom", + "email": "chris@eeecomputes.com", + "url": "http://eeecomputes.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/eee-c/connect-spdy.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/connect-spdy/0.0.0", + "0.0.1": "http://registry.npmjs.org/connect-spdy/0.0.1", + "0.0.2": "http://registry.npmjs.org/connect-spdy/0.0.2", + "0.0.3": "http://registry.npmjs.org/connect-spdy/0.0.3", + "0.0.4": "http://registry.npmjs.org/connect-spdy/0.0.4", + "0.1.0": "http://registry.npmjs.org/connect-spdy/0.1.0" + }, + "dist": { + "0.0.0": { + "shasum": "2a723ac589d51e20fae4b13d7b0e76e8b913b12f", + "tarball": "http://registry.npmjs.org/connect-spdy/-/connect-spdy-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "cf4b9508b2a1a17a0cb3762162fcaef551388975", + "tarball": "http://registry.npmjs.org/connect-spdy/-/connect-spdy-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "d623292ac9efa394b0e6fa6b4e0a3e71b627ecac", + "tarball": "http://registry.npmjs.org/connect-spdy/-/connect-spdy-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "ea318e670b6447bc50ed88973ac7f599ef6ae699", + "tarball": "http://registry.npmjs.org/connect-spdy/-/connect-spdy-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "6541410dc2ea221bf9dce92a21b2864af75a5bea", + "tarball": "http://registry.npmjs.org/connect-spdy/-/connect-spdy-0.0.4.tgz" + }, + "0.1.0": { + "shasum": "6cd9c532aad20b94f9d7c7c9fefb4f94fcc31d23", + "tarball": "http://registry.npmjs.org/connect-spdy/-/connect-spdy-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-spdy/" + }, + "connect-sqlite": { + "name": "connect-sqlite", + "description": "SQLite session store for Connect", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "tnantoka", + "email": "bornneet@livedoor.com" + } + ], + "time": { + "modified": "2011-09-24T13:39:43.857Z", + "created": "2011-09-24T13:39:38.726Z", + "0.0.1": "2011-09-24T13:39:43.857Z" + }, + "author": { + "name": "tnantoka", + "email": "bornneet@livedoor.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/connect-sqlite/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "b348b5a2751186ac6db554fea33fc1927fe474e0", + "tarball": "http://registry.npmjs.org/connect-sqlite/-/connect-sqlite-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-sqlite/" + }, + "connect-sts": { + "name": "connect-sts", + "description": "Middleware to add Strict-Transport-Security header", + "dist-tags": { + "latest": "0.4.0" + }, + "maintainers": [ + { + "name": "francois", + "email": "francois@2metz.fr" + } + ], + "time": { + "modified": "2011-03-03T15:55:18.972Z", + "created": "2011-02-07T16:38:15.617Z", + "0.1.0": "2011-02-07T16:38:16.262Z", + "0.2.0": "2011-02-07T16:41:49.923Z", + "0.3.0": "2011-02-07T16:50:05.648Z", + "0.4.0": "2011-03-03T15:55:18.972Z" + }, + "author": { + "name": "François de Metz", + "email": "fdemetz@af83.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/AF83/connect-sts.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/connect-sts/0.1.0", + "0.2.0": "http://registry.npmjs.org/connect-sts/0.2.0", + "0.3.0": "http://registry.npmjs.org/connect-sts/0.3.0", + "0.4.0": "http://registry.npmjs.org/connect-sts/0.4.0" + }, + "dist": { + "0.1.0": { + "shasum": "7c07ab07e46a2c8a6cefe2ff1eb68a0369c3b1e1", + "tarball": "http://registry.npmjs.org/connect-sts/-/connect-sts-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "59117e33a7e206ec34e50593b4e17df76f59541f", + "tarball": "http://registry.npmjs.org/connect-sts/-/connect-sts-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "9dbd052e4ed3e380e9e1c8a83ea7e595cca0053e", + "tarball": "http://registry.npmjs.org/connect-sts/-/connect-sts-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "5321e4774b3753692123112269b18ab141b34aac", + "tarball": "http://registry.npmjs.org/connect-sts/-/connect-sts-0.4.0.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-sts/" + }, + "connect-swd": { + "name": "connect-swd", + "description": "Simple Web Discovery (SWD) middleware for Connect.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "jaredhanson", + "email": "jaredhanson@gmail.com" + } + ], + "time": { + "modified": "2011-11-09T03:45:48.914Z", + "created": "2011-11-09T03:45:46.289Z", + "0.1.0": "2011-11-09T03:45:48.914Z" + }, + "author": { + "name": "Jared Hanson", + "email": "jaredhanson@gmail.com", + "url": "http://www.jaredhanson.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jaredhanson/connect-swd.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/connect-swd/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "8958111ad930a4759c733df51b11492d79fffc73", + "tarball": "http://registry.npmjs.org/connect-swd/-/connect-swd-0.1.0.tgz" + } + }, + "keywords": [ + "connect", + "express", + "swd" + ], + "url": "http://registry.npmjs.org/connect-swd/" + }, + "connect-timeout": { + "name": "connect-timeout", + "description": "Adds timeouts to connect responses", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "aaron", + "email": "aaron.heckmann+github@gmail.com" + }, + { + "name": "rauchg", + "email": "rauchg@gmail.com" + } + ], + "time": { + "modified": "2011-02-09T13:51:31.123Z", + "created": "2011-02-09T13:46:53.101Z", + "0.0.1": "2011-02-09T13:46:53.738Z" + }, + "author": { + "name": "Guillermo Rauch", + "email": "guillermo@learnboost.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/connect-timeout/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "7f5ce841251d6bd0eb7b497b51186a56f37fc97f", + "tarball": "http://registry.npmjs.org/connect-timeout/-/connect-timeout-0.0.1.tgz" + } + }, + "keywords": [ + "connect", + "timeout", + "response" + ], + "url": "http://registry.npmjs.org/connect-timeout/" + }, + "connect-unstable": { + "name": "connect-unstable", + "description": "Unstable, tracking fork of the real connect middleware. Only use if you really, *really* need node 0.5+.", + "dist-tags": { + "latest": "1.6.0" + }, + "maintainers": [ + { + "name": "eee-c", + "email": "chris@eeecomputes.com" + } + ], + "time": { + "modified": "2011-07-29T03:17:32.321Z", + "created": "2011-07-29T03:17:32.000Z", + "1.6.0": "2011-07-29T03:17:32.321Z" + }, + "author": { + "name": "Chris Strom", + "email": "chris@eeecomputes.com", + "url": "http://eeecomputes.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/eee-c/connect.git" + }, + "versions": { + "1.6.0": "http://registry.npmjs.org/connect-unstable/1.6.0" + }, + "dist": { + "1.6.0": { + "shasum": "d1795e5e466ad8737affe86324588e1eafab85e4", + "tarball": "http://registry.npmjs.org/connect-unstable/-/connect-unstable-1.6.0.tgz" + } + }, + "keywords": [ + "framework", + "web", + "middleware", + "connect", + "rack" + ], + "url": "http://registry.npmjs.org/connect-unstable/" + }, + "connect-useragent": { + "name": "connect-useragent", + "description": "Connect user-agent middleware", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "time": { + "modified": "2011-10-31T23:08:26.331Z", + "created": "2011-10-31T23:08:24.942Z", + "0.0.1": "2011-10-31T23:08:26.331Z" + }, + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/connect-useragent/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "f84c7f6f20d7af0cb0dc97eb526b55e6e58ffb29", + "tarball": "http://registry.npmjs.org/connect-useragent/-/connect-useragent-0.0.1.tgz" + } + }, + "keywords": [ + "useragent", + "connect", + "middleware" + ], + "url": "http://registry.npmjs.org/connect-useragent/" + }, + "connect-wormhole": { + "name": "connect-wormhole", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "demetriusj", + "email": "contact@demetriusj.com" + } + ], + "time": { + "modified": "2011-05-19T20:28:38.459Z", + "created": "2011-05-19T20:28:38.253Z", + "0.0.1": "2011-05-19T20:28:38.459Z" + }, + "author": { + "name": "Demetrius Johnson", + "email": "contact@demetriusj.com", + "url": "http://demetriusj.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/demetriusj/connect-wormhole.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/connect-wormhole/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "37b663800dfcdbf9e2848c9f4c90288104046b9c", + "tarball": "http://registry.npmjs.org/connect-wormhole/-/connect-wormhole-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-wormhole/" + }, + "connect-xcors": { + "name": "connect-xcors", + "description": "CORS / XHR2 support for Node.JS's Connect", + "dist-tags": { + "latest": "0.5.1" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-08-11T14:54:46.527Z", + "created": "2011-08-06T23:38:34.345Z", + "0.1.0": "2011-08-06T23:38:34.834Z", + "0.5.0": "2011-08-07T00:15:36.090Z", + "0.5.1": "2011-08-11T14:54:46.527Z" + }, + "author": { + "name": "Antono Vasiljev", + "email": "antono.vasiljev@gmail.com", + "url": "http://antono.info" + }, + "repository": { + "type": "git", + "url": "git://github.com/antono/connect-cors.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/connect-xcors/0.1.0", + "0.5.0": "http://registry.npmjs.org/connect-xcors/0.5.0", + "0.5.1": "http://registry.npmjs.org/connect-xcors/0.5.1" + }, + "dist": { + "0.1.0": { + "shasum": "2db8a308948d2b675fd70b2ab1468a52a507154d", + "tarball": "http://registry.npmjs.org/connect-xcors/-/connect-xcors-0.1.0.tgz" + }, + "0.5.0": { + "shasum": "ac14b88c1442702f66e8c28c0729f4be1e920caa", + "tarball": "http://registry.npmjs.org/connect-xcors/-/connect-xcors-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "53f4236df7ce7e5391704a3771d5abf79e759cfb", + "tarball": "http://registry.npmjs.org/connect-xcors/-/connect-xcors-0.5.1.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-xcors/" + }, + "connectables": { + "name": "connectables", + "description": "Useful middleware for Connect", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "damonoehlman", + "email": "damon.oehlman@sidelab.com" + } + ], + "time": { + "modified": "2011-09-19T23:21:13.512Z", + "created": "2011-09-19T23:21:11.864Z", + "0.0.1": "2011-09-19T23:21:13.512Z" + }, + "author": { + "name": "Damon Oehlman", + "email": "damon.oehlman@sidelab.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/DamonOehlman/connectables.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/connectables/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "3ebab4650b10574f195674c0d7d9a9ca36d67bd8", + "tarball": "http://registry.npmjs.org/connectables/-/connectables-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/connectables/" + }, + "connector": { + "name": "connector", + "description": "Node request manager for HTTP-based API clients", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "mikepb", + "email": "michael@mikepb.com" + } + ], + "time": { + "modified": "2011-10-06T17:50:22.633Z", + "created": "2011-10-06T17:50:20.855Z", + "0.0.1": "2011-10-06T17:50:22.633Z" + }, + "author": { + "name": "Michael Phan-Ba", + "email": "michael@mikepb.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mikepb/connector.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/connector/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "1e08560fec94ccb96d2c8460a7f9f01448a18080", + "tarball": "http://registry.npmjs.org/connector/-/connector-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/connector/" + }, + "connfu": { + "name": "connfu", + "description": "DSL for creating real time voice applications using connFu platform", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "rafeca", + "email": "rafeca@gmail.com" + } + ], + "time": { + "modified": "2011-10-05T23:40:56.656Z", + "created": "2011-09-28T21:30:40.137Z", + "0.1.0": "2011-09-28T21:30:40.879Z", + "0.2.0": "2011-10-05T23:40:56.656Z" + }, + "author": { + "name": "Rafael de Oleza", + "email": "roa@tid.es", + "url": "https://github.com/rafeca" + }, + "repository": { + "type": "git", + "url": "git://github.com/bluevialabs/connfu-node.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/connfu/0.1.0", + "0.2.0": "http://registry.npmjs.org/connfu/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "6d12c32c5e9649dc050bd76b63226aad48ba958f", + "tarball": "http://registry.npmjs.org/connfu/-/connfu-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "3753be4399858b63f1a9988517ae9f56d3be5b7c", + "tarball": "http://registry.npmjs.org/connfu/-/connfu-0.2.0.tgz" + } + }, + "keywords": [ + "VoIP", + "voice", + "social", + "realtime", + "stream", + "chat" + ], + "url": "http://registry.npmjs.org/connfu/" + }, + "conpa": { + "name": "conpa", + "description": "Asset allocation application", + "dist-tags": { + "latest": "1.1.8" + }, + "maintainers": [ + { + "name": "icebox", + "email": "albertosantini@gmail.com" + } + ], + "time": { + "modified": "2011-11-20T15:56:00.603Z", + "created": "2011-09-28T17:09:02.746Z", + "1.0.0": "2011-09-28T17:09:05.828Z", + "1.0.1": "2011-10-01T08:33:19.464Z", + "1.1.0": "2011-10-02T09:39:30.275Z", + "1.1.1": "2011-10-25T18:28:45.536Z", + "1.1.2": "2011-11-13T21:26:29.115Z", + "1.1.3": "2011-11-14T19:35:09.624Z", + "1.1.4": "2011-11-15T08:33:39.441Z", + "1.1.5": "2011-11-17T10:57:18.812Z", + "1.1.6": "2011-11-17T14:24:29.828Z", + "1.1.7": "2011-11-17T22:40:28.601Z", + "1.1.8": "2011-11-20T15:56:00.603Z" + }, + "author": { + "name": "Alberto Santini" + }, + "repository": { + "type": "git", + "url": "git://github.com/albertosantini/node-conpa.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/conpa/1.0.0", + "1.0.1": "http://registry.npmjs.org/conpa/1.0.1", + "1.1.0": "http://registry.npmjs.org/conpa/1.1.0", + "1.1.1": "http://registry.npmjs.org/conpa/1.1.1", + "1.1.2": "http://registry.npmjs.org/conpa/1.1.2", + "1.1.3": "http://registry.npmjs.org/conpa/1.1.3", + "1.1.4": "http://registry.npmjs.org/conpa/1.1.4", + "1.1.5": "http://registry.npmjs.org/conpa/1.1.5", + "1.1.6": "http://registry.npmjs.org/conpa/1.1.6", + "1.1.7": "http://registry.npmjs.org/conpa/1.1.7", + "1.1.8": "http://registry.npmjs.org/conpa/1.1.8" + }, + "dist": { + "1.0.0": { + "shasum": "b77380cc7a98559b01bef64bb1db70a1ef7c4dc3", + "tarball": "http://registry.npmjs.org/conpa/-/conpa-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "bd5e95777b73b480d41d7447293bde32a8c93742", + "tarball": "http://registry.npmjs.org/conpa/-/conpa-1.0.1.tgz" + }, + "1.1.0": { + "shasum": "a63463f30173b0111384e5f76fe100766159e363", + "tarball": "http://registry.npmjs.org/conpa/-/conpa-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "7ee18f200c0961c1e67a84355d21bdd4351f3e07", + "tarball": "http://registry.npmjs.org/conpa/-/conpa-1.1.1.tgz" + }, + "1.1.2": { + "shasum": "feb4c3e959f11b00c1a500e35ac953d9c9ed0057", + "tarball": "http://registry.npmjs.org/conpa/-/conpa-1.1.2.tgz" + }, + "1.1.3": { + "shasum": "90c00bf5bf552eae2a103605a93e0fc7cba06b98", + "tarball": "http://registry.npmjs.org/conpa/-/conpa-1.1.3.tgz" + }, + "1.1.4": { + "shasum": "b905d89bde8bb2007b2cca17176701bca663fc1e", + "tarball": "http://registry.npmjs.org/conpa/-/conpa-1.1.4.tgz" + }, + "1.1.5": { + "shasum": "44fbde78e6d3f246d737777394112fb086add678", + "tarball": "http://registry.npmjs.org/conpa/-/conpa-1.1.5.tgz" + }, + "1.1.6": { + "shasum": "99cc266211f6a6b81c40a849a3d732cbdaa3e65a", + "tarball": "http://registry.npmjs.org/conpa/-/conpa-1.1.6.tgz" + }, + "1.1.7": { + "shasum": "8095fb602f6da80e4fb787cc0fb99e9ea407a432", + "tarball": "http://registry.npmjs.org/conpa/-/conpa-1.1.7.tgz" + }, + "1.1.8": { + "shasum": "bdb9f17272c181c8fd127053faa540c83ae7df47", + "tarball": "http://registry.npmjs.org/conpa/-/conpa-1.1.8.tgz" + } + }, + "keywords": [ + "finance", + "asset allocation", + "optimization" + ], + "url": "http://registry.npmjs.org/conpa/" + }, + "conseq": { + "name": "conseq", + "description": "Small, simple callback chaining for async methods", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "nornagon", + "email": "nornagon@nornagon.net" + } + ], + "time": { + "modified": "2011-02-05T09:00:34.407Z", + "created": "2011-02-05T09:00:33.549Z", + "0.1.0": "2011-02-05T09:00:34.407Z" + }, + "repository": { + "type": "git", + "url": "http://github.com/nornagon/node-conseq" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/conseq/0.1.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/conseq/-/conseq@0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/conseq/" + }, + "consistent-hashing": { + "name": "consistent-hashing", + "description": "A pure JavaScript implementation of Consistent Hashing", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "d_akatsuka", + "email": "d.akatsuka@gmail.com" + } + ], + "time": { + "modified": "2011-10-31T02:47:54.025Z", + "created": "2011-08-13T20:33:39.233Z", + "0.1.0": "2011-08-13T20:33:43.460Z", + "0.2.0": "2011-10-31T02:47:54.025Z" + }, + "author": { + "name": "Dai Akatsuka", + "email": "d.akatsuka@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dakatsuka/node-consistent-hashing.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/consistent-hashing/0.1.0", + "0.2.0": "http://registry.npmjs.org/consistent-hashing/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "f713bbc9fd7d30943f237c064a6a853d25ee35d4", + "tarball": "http://registry.npmjs.org/consistent-hashing/-/consistent-hashing-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "63974073e35dbf4168d71612b65a4bb07b75b701", + "tarball": "http://registry.npmjs.org/consistent-hashing/-/consistent-hashing-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/consistent-hashing/" + }, + "console": { + "name": "console", + "description": "returns `console` if present", + "dist-tags": { + "latest": "0.4.9" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-07-14T22:19:29.325Z", + "created": "2011-07-14T22:19:28.964Z", + "0.4.9": "2011-07-14T22:19:29.325Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com", + "url": "http://coolaj86.info" + }, + "repository": { + "type": "git", + "url": "git://github.com/coolaj86/nodejs-libs-4-browser.git" + }, + "versions": { + "0.4.9": "http://registry.npmjs.org/console/0.4.9" + }, + "dist": { + "0.4.9": { + "shasum": "3245576e772e98ccf57771defd49e196530321f7", + "tarball": "http://registry.npmjs.org/console/-/console-0.4.9.tgz" + } + }, + "keywords": [ + "ender", + "console" + ], + "url": "http://registry.npmjs.org/console/" + }, + "console.log": { + "name": "console.log", + "description": "A console.log implementation that plays *nice* with large amounts of data. It Keeps node alive until the output has flushed to the screen.", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "tmpvar", + "email": "tmpvar@gmail.com" + } + ], + "time": { + "modified": "2011-07-14T05:24:54.466Z", + "created": "2011-07-12T07:36:51.451Z", + "0.1.0": "2011-07-12T07:36:52.014Z", + "0.1.1": "2011-07-12T07:56:56.397Z", + "0.1.2": "2011-07-12T16:40:55.910Z", + "0.1.3": "2011-07-14T05:24:54.466Z" + }, + "author": { + "name": "Elijah Insua", + "email": "tmpvar@gmail.com", + "url": "http://tmpvar.com" + }, + "repository": { + "type": "git", + "url": "git://gist.github.com/1077544.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/console.log/0.1.0", + "0.1.1": "http://registry.npmjs.org/console.log/0.1.1", + "0.1.2": "http://registry.npmjs.org/console.log/0.1.2", + "0.1.3": "http://registry.npmjs.org/console.log/0.1.3" + }, + "dist": { + "0.1.0": { + "shasum": "a19c0156e9256948fbacce8051dd05f78e086a30", + "tarball": "http://registry.npmjs.org/console.log/-/console.log-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "0d855998aa8f54927fc9858b210335f498c54f57", + "tarball": "http://registry.npmjs.org/console.log/-/console.log-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "e7cb2479bde362c7e169c4957e655aa6ecc86f4c", + "tarball": "http://registry.npmjs.org/console.log/-/console.log-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "fb6dc00ceaac79d5b78d3e8170990d4f4ba853ab", + "tarball": "http://registry.npmjs.org/console.log/-/console.log-0.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/console.log/" + }, + "consolemark": { + "name": "consolemark", + "description": "try parse to something console con display.", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "kuno", + "email": "neokuno@gmail.com" + } + ], + "time": { + "modified": "2011-04-16T01:43:08.140Z", + "created": "2011-04-14T09:24:04.787Z", + "0.0.1": "2011-04-14T09:24:26.388Z", + "0.0.2": "2011-04-14T12:53:29.131Z", + "0.0.3": "2011-04-15T09:09:33.501Z", + "0.0.4pre": "2011-04-16T01:38:42.193Z", + "0.0.4": "2011-04-16T01:43:08.140Z" + }, + "author": { + "name": "Guan 'kuno' Qing", + "email": "neokuno AT gmail DOT com" + }, + "repository": { + "type": "git", + "url": "git://github.com/kuno/consolemark.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/consolemark/0.0.1", + "0.0.2": "http://registry.npmjs.org/consolemark/0.0.2", + "0.0.3": "http://registry.npmjs.org/consolemark/0.0.3", + "0.0.4": "http://registry.npmjs.org/consolemark/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "adebf209ba42e3fa809bf59ad6ffc555933b513e", + "tarball": "http://registry.npmjs.org/consolemark/-/consolemark-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f192d9514d75d1db9132f36d99766cc11a19bd91", + "tarball": "http://registry.npmjs.org/consolemark/-/consolemark-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "83f75795a877f0cd06a335ced34ff1308cac730a", + "tarball": "http://registry.npmjs.org/consolemark/-/consolemark-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "780172dd2f45c7c379d32c30b5ab57cbfff2772e", + "tarball": "http://registry.npmjs.org/consolemark/-/consolemark-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/consolemark/" + }, + "consolidate": { + "name": "consolidate", + "description": "Template engine consolidation library", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "\n# consolidate\n\n Template engine consolidation library\n\n## License \n\n(The MIT License)\n\nCopyright (c) 2011 TJ Holowaychuk <tj@vision-media.ca>\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "time": { + "modified": "2011-11-20T07:56:47.243Z", + "created": "2011-11-20T07:56:45.902Z", + "0.0.1": "2011-11-20T07:56:47.243Z" + }, + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/consolidate/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "5aec6cb4ea50bc0e583c4767878c700efdbf0bf4", + "tarball": "http://registry.npmjs.org/consolidate/-/consolidate-0.0.1.tgz" + } + }, + "keywords": [ + "template", + "engine", + "view" + ], + "url": "http://registry.npmjs.org/consolidate/" + }, + "construct": { + "name": "construct", + "description": "Calls a constructor with an arbitrary number of arguments.", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "beatgammit", + "email": "t.jameson.little@gmail.com" + } + ], + "time": { + "modified": "2011-07-16T22:23:41.957Z", + "created": "2011-07-16T22:23:41.577Z", + "1.0.0": "2011-07-16T22:23:41.957Z" + }, + "author": { + "name": "T. Jameson Little", + "email": "t.jameson.little@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/beatgammit/construct.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/construct/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "277836d3a2959d7c114a05a128f91471a761e848", + "tarball": "http://registry.npmjs.org/construct/-/construct-1.0.0.tgz" + } + }, + "keywords": [ + "construct", + "constructor", + "arguments", + "utility", + "browser" + ], + "url": "http://registry.npmjs.org/construct/" + }, + "contemplate": { + "name": "contemplate", + "description": "JavaScript pico small peta fast template engine", + "dist-tags": { + "latest": "0.0.3" + }, + "readme": "# contemplate\n\nJavaScript pico template engine\n\n## API\n\n- contemplate (template, data)\n\n## License \n\n(The MIT License)\n\nCopyright (c) 2011 Enrico Marino <enrico.marino@email.com>\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "maintainers": [ + { + "name": "onirame", + "email": "enrico.marino@email.com" + } + ], + "time": { + "modified": "2011-12-04T22:05:18.603Z", + "created": "2011-12-04T22:05:16.734Z", + "0.0.3": "2011-12-04T22:05:18.603Z" + }, + "author": { + "name": "Enrico Marino", + "email": "enrico.marino@email.com", + "url": "http://onirame.no.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/onirame/contemplate.git" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/contemplate/0.0.3" + }, + "dist": { + "0.0.3": { + "shasum": "cc2049cb44b98c2ddf862bf00f0531d1f2748aae", + "tarball": "http://registry.npmjs.org/contemplate/-/contemplate-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/contemplate/" + }, + "context": { + "name": "context", + "description": "Shared context without passing stuff down all the way", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "thejh", + "email": "jannhorn@gmail.com" + } + ], + "time": { + "modified": "2011-09-17T20:48:53.317Z", + "created": "2011-09-17T20:48:51.527Z", + "0.1.0": "2011-09-17T20:48:53.317Z" + }, + "author": { + "name": "Jann Horn", + "email": "jannhorn@googlemail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/thejh/node-context.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/context/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "dbeb07b5cfae66427ef02e7837bc4947c64eb6a2", + "tarball": "http://registry.npmjs.org/context/-/context-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/context/" + }, + "contextify": { + "name": "contextify", + "description": "Turn an object into a persistent execution context.", + "dist-tags": { + "latest": "0.0.7" + }, + "maintainers": [ + { + "name": "brianmcd", + "email": "brianmcd05@gmail.com" + } + ], + "time": { + "modified": "2011-12-13T18:41:30.837Z", + "created": "2011-08-05T01:31:53.406Z", + "0.0.2": "2011-08-05T01:31:54.923Z", + "0.0.3": "2011-08-08T16:04:32.438Z", + "0.0.4": "2011-08-29T23:59:57.474Z", + "0.0.5": "2011-09-07T01:23:45.671Z", + "0.0.6": "2011-10-10T01:17:57.855Z", + "0.0.7": "2011-12-13T18:41:30.837Z" + }, + "author": { + "name": "Brian McDaniel", + "email": "brianmcd05@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/brianmcd/contextify.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/contextify/0.0.2", + "0.0.3": "http://registry.npmjs.org/contextify/0.0.3", + "0.0.4": "http://registry.npmjs.org/contextify/0.0.4", + "0.0.5": "http://registry.npmjs.org/contextify/0.0.5", + "0.0.6": "http://registry.npmjs.org/contextify/0.0.6", + "0.0.7": "http://registry.npmjs.org/contextify/0.0.7" + }, + "dist": { + "0.0.2": { + "shasum": "75f7df986f4d2a0d25d035e6e8b9c0d93297cf65", + "tarball": "http://registry.npmjs.org/contextify/-/contextify-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "7cee1a92683fc4c6b4f3c464b49dd65671c2072e", + "tarball": "http://registry.npmjs.org/contextify/-/contextify-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "2ca924e2b375ba0d8c8479ed849135031d2a1d45", + "tarball": "http://registry.npmjs.org/contextify/-/contextify-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "3d59e4c405ea7878bdf29ce1fa37f9cb154f1554", + "tarball": "http://registry.npmjs.org/contextify/-/contextify-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "1d373103c9000b93812783b8e1d1e1889b4a73de", + "tarball": "http://registry.npmjs.org/contextify/-/contextify-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "3915faf53ca30a5cec4634c0a860b7768e8c6ff4", + "tarball": "http://registry.npmjs.org/contextify/-/contextify-0.0.7.tgz" + } + }, + "keywords": [ + "context", + "vm" + ], + "url": "http://registry.npmjs.org/contextify/" + }, + "contract": { + "name": "contract", + "description": "A design by contract library", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "raynos", + "email": "raynos2@gmail.com" + } + ], + "time": { + "modified": "2011-08-31T22:38:22.204Z", + "created": "2011-08-31T22:38:20.824Z", + "0.1.2": "2011-08-31T22:38:22.204Z" + }, + "author": { + "name": "Raynos", + "email": "raynos2@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Raynos/contract.git" + }, + "versions": { + "0.1.2": "http://registry.npmjs.org/contract/0.1.2" + }, + "dist": { + "0.1.2": { + "shasum": "98a509434b5b1c834db92b2540e25f18a32bef07", + "tarball": "http://registry.npmjs.org/contract/-/contract-0.1.2.tgz" + } + }, + "keywords": [ + "contract", + "contracts", + "design", + "validation" + ], + "url": "http://registry.npmjs.org/contract/" + }, + "contracts": { + "name": "contracts", + "description": "Validation library to define and validate JSON Schemas for functions and express handlers. Supports filters.", + "dist-tags": { + "latest": "0.3.1" + }, + "maintainers": [ + { + "name": "eirikurn", + "email": "eirikur@nilsson.is" + } + ], + "time": { + "modified": "2011-10-22T18:46:51.459Z", + "created": "2011-05-16T01:24:37.119Z", + "0.1.0": "2011-05-16T01:24:37.826Z", + "0.2.0": "2011-05-17T23:02:49.140Z", + "0.2.1": "2011-07-05T21:59:25.731Z", + "0.3.0": "2011-07-20T23:50:15.457Z", + "0.3.1": "2011-10-22T18:33:02.931Z" + }, + "author": { + "name": "Eirikur Nilsson", + "email": "eirikur@nilsson.is" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/contracts/0.1.0", + "0.2.0": "http://registry.npmjs.org/contracts/0.2.0", + "0.2.1": "http://registry.npmjs.org/contracts/0.2.1", + "0.3.0": "http://registry.npmjs.org/contracts/0.3.0", + "0.3.1": "http://registry.npmjs.org/contracts/0.3.1" + }, + "dist": { + "0.1.0": { + "shasum": "60cf948660c23a5055a0a5317bdd02bcb2c22923", + "tarball": "http://registry.npmjs.org/contracts/-/contracts-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "9bedd06c3dbcc82a505fc587a354456c02de383e", + "tarball": "http://registry.npmjs.org/contracts/-/contracts-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "3b3ef3ac2346aa9cb3788d0f7420e76d83d90897", + "tarball": "http://registry.npmjs.org/contracts/-/contracts-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "9184978c0ad91dd05e727f9ce86085e9db7e7954", + "tarball": "http://registry.npmjs.org/contracts/-/contracts-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "705869df3f45357bed002687d8398e6bbe158595", + "tarball": "http://registry.npmjs.org/contracts/-/contracts-0.3.1.tgz" + } + }, + "keywords": [ + "json schema", + "schema", + "data", + "validation", + "express" + ], + "url": "http://registry.npmjs.org/contracts/" + }, + "contracts.coffee": { + "name": "contracts.coffee", + "description": "A Dialect of CoffeeScript with contracts", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": null, + "maintainers": [ + { + "name": "disnet", + "email": "tim.disney@gmail.com" + } + ], + "time": { + "modified": "2011-11-14T05:14:05.293Z", + "created": "2011-11-14T05:14:03.709Z", + "0.1.0": "2011-11-14T05:14:05.293Z" + }, + "author": { + "name": "Tim Disney" + }, + "repository": { + "type": "git", + "url": "git://github.com/disnet/contracts.coffee.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/contracts.coffee/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "6e083e5d1cd5aac4516d61ef6488e9de9c40cd64", + "tarball": "http://registry.npmjs.org/contracts.coffee/-/contracts.coffee-0.1.0.tgz" + } + }, + "keywords": [ + "javascript", + "language", + "coffeescript", + "compiler", + "contracts" + ], + "url": "http://registry.npmjs.org/contracts.coffee/" + }, + "control": { + "name": "control", + "description": "Scripted asynchronous control of remote machines in parallel via ssh", + "dist-tags": { + "latest": "0.2.2", + "stable": "0.2.2" + }, + "maintainers": [ + { + "name": "tsmith", + "email": "node@thomassmith.com" + } + ], + "author": { + "name": "Thomas Smith", + "email": "node@thomassmith.com" + }, + "time": { + "modified": "2011-07-17T00:54:57.239Z", + "created": "2011-06-10T19:06:24.621Z", + "0.1.1": "2011-06-10T19:06:24.621Z", + "0.1.2": "2011-06-10T19:06:24.621Z", + "0.1.3": "2011-06-10T19:06:24.621Z", + "0.1.4": "2011-06-10T19:06:24.621Z", + "0.1.6": "2011-06-10T19:06:24.621Z", + "0.1.7": "2011-06-10T19:06:24.621Z", + "0.1.8": "2011-06-10T19:06:24.621Z", + "0.1.9": "2011-06-12T23:05:53.441Z", + "0.2.0": "2011-07-10T19:47:16.868Z", + "0.2.1": "2011-07-16T12:20:31.279Z", + "0.2.2": "2011-07-17T00:54:55.660Z" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/control/0.1.1", + "0.1.2": "http://registry.npmjs.org/control/0.1.2", + "0.1.3": "http://registry.npmjs.org/control/0.1.3", + "0.1.4": "http://registry.npmjs.org/control/0.1.4", + "0.1.6": "http://registry.npmjs.org/control/0.1.6", + "0.1.7": "http://registry.npmjs.org/control/0.1.7", + "0.1.8": "http://registry.npmjs.org/control/0.1.8", + "0.1.9": "http://registry.npmjs.org/control/0.1.9", + "0.2.0": "http://registry.npmjs.org/control/0.2.0", + "0.2.1": "http://registry.npmjs.org/control/0.2.1", + "0.2.2": "http://registry.npmjs.org/control/0.2.2" + }, + "dist": { + "0.1.1": { + "tarball": "http://packages:5984/control/-/control-0.1.1.tgz" + }, + "0.1.2": { + "tarball": "http://packages:5984/control/-/control-0.1.2.tgz" + }, + "0.1.3": { + "tarball": "http://packages:5984/control/-/control-0.1.3.tgz" + }, + "0.1.4": { + "tarball": "http://packages:5984/control/-/control-0.1.4.tgz" + }, + "0.1.6": { + "tarball": "http://packages:5984/control/-/control-0.1.6.tgz" + }, + "0.1.7": { + "tarball": "http://packages:5984/control/-/control-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "5ad39485f0e57c5e5e1778eae8c718335f0d93fb", + "tarball": "http://registry.npmjs.org/control/-/control-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "b8fb6e6b540e5283a59da7552979d1b9fa23c23c", + "tarball": "http://registry.npmjs.org/control/-/control-0.1.9.tgz" + }, + "0.2.0": { + "shasum": "b345317f0415380e394850db4bb4bfa2a2fb76a7", + "tarball": "http://registry.npmjs.org/control/-/control-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "cefe700ea1f3e0fdb4b1c6bc0fe965258b5e25c6", + "tarball": "http://registry.npmjs.org/control/-/control-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "5612c0c902564878e3c10a412d21233f06579d56", + "tarball": "http://registry.npmjs.org/control/-/control-0.2.2.tgz" + } + }, + "url": "http://registry.npmjs.org/control/" + }, + "control-port": { + "name": "control-port", + "description": "A TCP based control port for node processes", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "# node-control-port\n\t\n A TCP based control port for node processes\n\n\n## Usage\n\n Code:\t\n\t\t\n\tvar control = new ControlPort();\n\tcontrol.start(6000);\n\t\t\n\tcontrol.register('add', function (a,b) {\n\t\treturn (a+b);\n\t},'Adds two numbers');\n\tcontrol.register('shutdown', function () {\n\t\tprocess.exit(0);\n\t},'Shuts down process');\n\t\n\n In action:\n\t\t\n\t$ nc localhost 6000\n\tNode> menu\n\t--- Menu ---\n\t\n\t add - Adds two numbers\n\t \n\t shutdown - Shuts down process\n\t \n\tNode> add 2 3\n\t5\n\tNode> shutdown\n\t$\n\n\n## Features\n* Set your own Prompt!\n\n\t\tvar control = new ControlPort('Server4');\n\n* Unlimited Commands!\n\n \t\tcontrol.register(name, callback, menuDescription);\n\n* Auto Menu Generation!\n\n \tDon't like the built in menu? Just register a new one!\n\n* Don't like Yellow? \n\t\n\tChange it!\n\t\t\n\t\tcontrol.color = 'red'; //or blue, cyan, green, magenta, yellow, white, grey\n\n* Auto argument parsing:\n \n\targ1, arg2, and arg3 will be passed to command callback\n\t\n\t\tNode> command arg1 arg2 arg3\t\t\n", + "maintainers": [ + { + "name": "maddenpj", + "email": "maddenpj@gmail.com" + } + ], + "time": { + "modified": "2011-12-02T15:16:08.097Z", + "created": "2011-12-02T15:16:07.247Z", + "0.1.0": "2011-12-02T15:16:08.097Z" + }, + "author": { + "name": "Patrick Madden" + }, + "repository": { + "type": "git", + "url": "git://github.com/maddenpj/node-control-port.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/control-port/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "c1eb4d11bc12211c3757dab3ee367eb827f76c0c", + "tarball": "http://registry.npmjs.org/control-port/-/control-port-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/control-port/" + }, + "controljs": { + "name": "controljs", + "description": "JavaScript control base class for both server and client side GUI development. Control is the opposite of templating.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "ewoudj", + "email": "ewoudj@gmail.com" + } + ], + "time": { + "modified": "2011-07-15T22:27:47.871Z", + "created": "2011-07-15T22:27:47.056Z", + "0.0.1": "2011-07-15T22:27:47.871Z" + }, + "author": { + "name": "Ewoud van den Boom", + "email": "ewoudj@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/ewoudj/control.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/controljs/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "68bd4c82206ec81cb49bbdbd0f3c8f4bdfe4e174", + "tarball": "http://registry.npmjs.org/controljs/-/controljs-0.0.1.tgz" + } + }, + "keywords": [ + "GUI", + "HTML", + "javascript", + "rest", + "ajax" + ], + "url": "http://registry.npmjs.org/controljs/" + }, + "convert": { + "name": "convert", + "description": "A simple little string encoding conversion utility", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "m64253", + "email": "mikael.abrahamsson@gmail.com" + } + ], + "time": { + "modified": "2011-03-17T22:00:05.759Z", + "created": "2011-03-17T22:00:05.106Z", + "0.0.1": "2011-03-17T22:00:05.759Z" + }, + "author": { + "name": "Mikael Abrahamsson", + "email": "mikael.abrahamsson@gmail.com", + "url": "tud3.com" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/convert/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "5617154d8344fd7208b2cf2a9fda4ba20a6892c0", + "tarball": "http://registry.npmjs.org/convert/-/convert-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/convert/" + }, + "conway": { + "name": "conway", + "description": "Simple implementation of Conway's Game of Life in CoffeeScript", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "willbailey", + "email": "will.bailey@gmail.com" + } + ], + "time": { + "modified": "2011-10-03T02:07:36.128Z", + "created": "2011-05-15T08:22:09.085Z", + "0.0.1": "2011-05-15T08:22:09.640Z", + "0.0.2": "2011-05-15T08:52:47.721Z", + "0.0.3": "2011-10-03T02:07:36.128Z" + }, + "author": { + "name": "Will Bailey", + "email": "will.bailey@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/willbailey/conway.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/conway/0.0.1", + "0.0.2": "http://registry.npmjs.org/conway/0.0.2", + "0.0.3": "http://registry.npmjs.org/conway/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "f6313fd6f4246b04a76c10ca24d9536d075dcd93", + "tarball": "http://registry.npmjs.org/conway/-/conway-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "a1b60ff9de2de3225187284d2bb645fcf19324ed", + "tarball": "http://registry.npmjs.org/conway/-/conway-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "361f2962789e0fdf159e1470e81085e523d8f4b9", + "tarball": "http://registry.npmjs.org/conway/-/conway-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/conway/" + }, + "cookie": { + "name": "cookie", + "description": "A deprecated node.js library for handling secure cookies.", + "dist-tags": { + "latest": "0.1.5" + }, + "maintainers": [ + { + "name": "jed", + "email": "tr@nslator.jp" + } + ], + "author": { + "name": "Jed Schmidt", + "email": "tr@nslator.jp" + }, + "repository": { + "type": "git", + "url": "http://github.com/jed/cookie-node.git" + }, + "time": { + "modified": "2011-02-25T17:09:47.654Z", + "created": "2010-12-29T13:32:44.803Z", + "0.1.1": "2010-12-29T13:32:44.803Z", + "0.1.2": "2010-12-29T13:32:44.803Z", + "0.1.3": "2010-12-29T13:32:44.803Z", + "0.1.4": "2010-12-29T13:32:44.803Z", + "0.1.5": "2011-02-25T17:09:47.654Z" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/cookie/0.1.1", + "0.1.2": "http://registry.npmjs.org/cookie/0.1.2", + "0.1.3": "http://registry.npmjs.org/cookie/0.1.3", + "0.1.4": "http://registry.npmjs.org/cookie/0.1.4", + "0.1.5": "http://registry.npmjs.org/cookie/0.1.5" + }, + "dist": { + "0.1.1": { + "tarball": "http://packages:5984/cookie/-/cookie-0.1.1.tgz" + }, + "0.1.2": { + "tarball": "http://packages:5984/cookie/-/cookie-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "749bad71509735c40b5edde239253a70aa065dbf", + "tarball": "http://registry.npmjs.org/cookie/-/cookie-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "a2a87ff35a5d908e332873bdab1049e85fdd01e0", + "tarball": "http://registry.npmjs.org/cookie/-/cookie-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "679f4e891ee281c3ecfea49bec296ad3fc6db465", + "tarball": "http://registry.npmjs.org/cookie/-/cookie-0.1.5.tgz" + } + }, + "url": "http://registry.npmjs.org/cookie/" + }, + "cookie-cutter": { + "name": "cookie-cutter", + "description": "Browserify-compatible module to get and set cookies in the browser", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-09-28T06:56:47.113Z", + "created": "2011-09-28T06:56:45.383Z", + "0.0.0": "2011-09-28T06:56:47.113Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/cookie-cutter.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/cookie-cutter/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "77e871c764a65a383025f4d82514ee0878cf3ea6", + "tarball": "http://registry.npmjs.org/cookie-cutter/-/cookie-cutter-0.0.0.tgz" + } + }, + "keywords": [ + "cookie", + "browser", + "browserify" + ], + "url": "http://registry.npmjs.org/cookie-cutter/" + }, + "cookie-monster": { + "name": "cookie-monster", + "description": "a simple cookie library", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "jga", + "email": "me@jga.me" + } + ], + "time": { + "modified": "2011-11-14T03:58:37.108Z", + "created": "2011-10-13T23:25:04.164Z", + "0.0.1": "2011-10-13T23:25:04.779Z", + "0.0.2": "2011-11-14T03:58:37.108Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/jgallen23/cookie-monster.git" + }, + "author": { + "name": "Greg Allen", + "email": "@jgaui", + "url": "http://jga.me" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/cookie-monster/0.0.1", + "0.0.2": "http://registry.npmjs.org/cookie-monster/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "1a3cd4b94765cbc05a88bc90684a0dd45751bd2c", + "tarball": "http://registry.npmjs.org/cookie-monster/-/cookie-monster-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "7a6ce7cc36b1febbce8c3fa0437b32767acb6b9f", + "tarball": "http://registry.npmjs.org/cookie-monster/-/cookie-monster-0.0.2.tgz" + } + }, + "keywords": [ + "ender", + "cookie" + ], + "url": "http://registry.npmjs.org/cookie-monster/" + }, + "cookie-sessions": { + "name": "cookie-sessions", + "description": "Secure cookie-based session middleware for Connect", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "caolan", + "email": "caolan@caolanmcmahon.com" + } + ], + "author": { + "name": "Caolan McMahon" + }, + "repository": { + "type": "git", + "url": "http://github.com/caolan/cookie-sessions.git" + }, + "time": { + "modified": "2011-03-06T20:22:07.602Z", + "created": "2011-03-06T20:22:07.602Z", + "0.0.1": "2011-03-06T20:22:07.602Z", + "0.0.2": "2011-03-06T20:22:07.602Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/cookie-sessions/0.0.1", + "0.0.2": "http://registry.npmjs.org/cookie-sessions/0.0.2" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/cookie-sessions/-/cookie-sessions-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/cookie-sessions/-/cookie-sessions-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/cookie-sessions/" + }, + "cookiejar": { + "name": "cookiejar", + "dist-tags": { + "latest": "1.3.0" + }, + "maintainers": [ + { + "name": "bradleymeck", + "email": "bradley.meck@gmail.com" + } + ], + "author": { + "name": "bradleymeck" + }, + "description": "simple persistent cookiejar system", + "time": { + "modified": "2011-05-24T11:43:08.931Z", + "created": "2011-03-28T13:55:20.875Z", + "1.0.0": "2011-03-28T13:55:20.875Z", + "1.0.3": "2011-03-28T13:55:20.875Z", + "1.0.5": "2011-03-28T13:55:20.875Z", + "1.1.0": "2011-03-28T13:55:20.875Z", + "1.1.1": "2011-03-28T13:55:20.875Z", + "1.2.0": "2011-03-28T13:55:20.875Z", + "1.3.0": "2011-05-24T11:42:07.698Z" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/cookiejar/1.0.0", + "1.0.3": "http://registry.npmjs.org/cookiejar/1.0.3", + "1.0.5": "http://registry.npmjs.org/cookiejar/1.0.5", + "1.1.0": "http://registry.npmjs.org/cookiejar/1.1.0", + "1.1.1": "http://registry.npmjs.org/cookiejar/1.1.1", + "1.2.0": "http://registry.npmjs.org/cookiejar/1.2.0", + "1.3.0": "http://registry.npmjs.org/cookiejar/1.3.0" + }, + "dist": { + "1.0.0": { + "tarball": "http://packages:5984/cookiejar/-/cookiejar-1.0.0.tgz" + }, + "1.0.3": { + "tarball": "http://packages:5984/cookiejar/-/cookiejar-1.0.3.tgz" + }, + "1.0.5": { + "tarball": "http://packages:5984/cookiejar/-/cookiejar-1.0.5.tgz" + }, + "1.1.0": { + "tarball": "http://packages:5984/cookiejar/-/cookiejar-1.1.0.tgz" + }, + "1.1.1": { + "tarball": "http://packages:5984/cookiejar/-/cookiejar-1.1.1.tgz" + }, + "1.2.0": { + "shasum": "a413f3b0b55f379e4bee838cc7e4e729b5b89b97", + "tarball": "http://registry.npmjs.org/cookiejar/-/cookiejar-1.2.0.tgz" + }, + "1.3.0": { + "shasum": "dd00b35679021e99cbd4e855b9ad041913474765", + "tarball": "http://registry.npmjs.org/cookiejar/-/cookiejar-1.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/cookiejar/" + }, + "cookies": { + "name": "cookies", + "description": "Cookies, optionally signed using Keygrip.", + "dist-tags": { + "latest": "0.1.6" + }, + "maintainers": [ + { + "name": "jed", + "email": "tr@nslator.jp" + } + ], + "time": { + "modified": "2011-03-01T03:07:10.560Z", + "created": "2011-02-25T15:30:03.526Z", + "0.1.0": "2011-02-25T15:30:04.200Z", + "0.1.1": "2011-02-25T16:57:20.561Z", + "0.1.2": "2011-02-26T05:34:00.873Z", + "0.1.3": "2011-02-26T05:40:55.056Z", + "0.1.4": "2011-02-26T06:50:50.197Z", + "0.1.5": "2011-02-26T07:45:48.757Z", + "0.1.6": "2011-03-01T03:07:10.560Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/cookies/0.1.0", + "0.1.1": "http://registry.npmjs.org/cookies/0.1.1", + "0.1.2": "http://registry.npmjs.org/cookies/0.1.2", + "0.1.3": "http://registry.npmjs.org/cookies/0.1.3", + "0.1.4": "http://registry.npmjs.org/cookies/0.1.4", + "0.1.5": "http://registry.npmjs.org/cookies/0.1.5", + "0.1.6": "http://registry.npmjs.org/cookies/0.1.6" + }, + "dist": { + "0.1.0": { + "shasum": "18f820dd12d384bf21ab46f0fdad8ddd02dc9c3e", + "tarball": "http://registry.npmjs.org/cookies/-/cookies-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "5ff9be0d3f2e95d0fcca111ee654e6b19ef38c77", + "tarball": "http://registry.npmjs.org/cookies/-/cookies-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "b7d5719597dec946a3ce225222fab008c7c35f70", + "tarball": "http://registry.npmjs.org/cookies/-/cookies-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "e94961b95c9b2ea8e569333ac7e268f6f0b5ffe7", + "tarball": "http://registry.npmjs.org/cookies/-/cookies-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "340283ee97f446acac5b3e9551817719fe55dcb0", + "tarball": "http://registry.npmjs.org/cookies/-/cookies-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "3bce445130205d3f1b76dec7007a7128fa8bffd1", + "tarball": "http://registry.npmjs.org/cookies/-/cookies-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "2129588b8b1e382ffba990d9f9cf9ddf2c142846", + "tarball": "http://registry.npmjs.org/cookies/-/cookies-0.1.6.tgz" + } + }, + "url": "http://registry.npmjs.org/cookies/" + }, + "cool": { + "name": "cool", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "samuraijack", + "email": "nickolay8@gmail.com" + } + ], + "time": { + "modified": "2011-09-05T06:41:13.371Z", + "created": "2011-09-05T06:41:12.535Z", + "0.0.0": "2011-09-05T06:41:13.371Z" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/cool/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "0c5006bde14281d723700650dc259b571fc95d96", + "tarball": "http://registry.npmjs.org/cool/-/cool-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/cool/" + }, + "CoolBeans": { + "name": "CoolBeans", + "description": "CoolBeans is an Inversion of Control (IOC) / Dependency Injection (DI) library for Node.js. CoolBeans is loosely based on ColdSpring for ColdFusion and Spring IOC for Java.", + "dist-tags": { + "latest": "0.0.7" + }, + "maintainers": [ + { + "name": "dhughes", + "email": "dhughes@alagad.com" + } + ], + "time": { + "modified": "2011-12-12T17:38:24.165Z", + "created": "2011-11-29T13:50:25.803Z", + "0.0.1": "2011-11-29T14:44:13.376Z", + "0.0.2": "2011-11-29T14:54:47.524Z", + "0.0.3": "2011-11-29T14:57:38.889Z", + "0.0.4": "2011-11-29T15:35:14.021Z", + "0.0.6": "2011-11-29T16:14:54.656Z", + "0.0.7": "2011-12-12T17:38:24.165Z" + }, + "author": { + "name": "Doug Hughes", + "email": "dhughes@alagad.com", + "url": "http://blog.alagad.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dhughes/CoolBeans.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/CoolBeans/0.0.1", + "0.0.2": "http://registry.npmjs.org/CoolBeans/0.0.2", + "0.0.3": "http://registry.npmjs.org/CoolBeans/0.0.3", + "0.0.4": "http://registry.npmjs.org/CoolBeans/0.0.4", + "0.0.6": "http://registry.npmjs.org/CoolBeans/0.0.6", + "0.0.7": "http://registry.npmjs.org/CoolBeans/0.0.7" + }, + "dist": { + "0.0.1": { + "shasum": "36f4da698b0d10a77f7b3a06cb4e55d4bffef716", + "tarball": "http://registry.npmjs.org/CoolBeans/-/CoolBeans-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "acaf85ef1567eb639c5012cf9040f4c4ff627b47", + "tarball": "http://registry.npmjs.org/CoolBeans/-/CoolBeans-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "0f9c9cf94d34c50e5c05fec9d8ad66fdbbbefa48", + "tarball": "http://registry.npmjs.org/CoolBeans/-/CoolBeans-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "2129a5140f15ab5b27aca5a483ce1ecf6f1f7e57", + "tarball": "http://registry.npmjs.org/CoolBeans/-/CoolBeans-0.0.4.tgz" + }, + "0.0.6": { + "shasum": "0d53b8b46e8aa99f9973b2e99bdb07476cdf8b80", + "tarball": "http://registry.npmjs.org/CoolBeans/-/CoolBeans-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "a71cc9100f3b584dacc20830d82b4ab1f78f99b1", + "tarball": "http://registry.npmjs.org/CoolBeans/-/CoolBeans-0.0.7.tgz" + } + }, + "keywords": [ + "CoolBeans", + "IOC", + "Inversion of Control", + "DI", + "Dependency Injection", + "Spring", + "factory" + ], + "url": "http://registry.npmjs.org/CoolBeans/" + }, + "coolmonitor": { + "name": "coolmonitor", + "description": "Monitor your server in the terminal, just with curl! (with colors)", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "thejh", + "email": "jannhorn@gmail.com" + } + ], + "time": { + "modified": "2011-08-13T16:34:36.763Z", + "created": "2011-08-13T16:34:33.813Z", + "0.0.0": "2011-08-13T16:34:36.763Z" + }, + "author": { + "name": "Jann Horn", + "email": "jannhorn@googlemail.com" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/coolmonitor/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "a18c1a9c40b796ac31e750abf7165345abc8ecc9", + "tarball": "http://registry.npmjs.org/coolmonitor/-/coolmonitor-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/coolmonitor/" + }, + "coop": { + "name": "coop", + "description": "Co-operative multiple inheritance for JavaScript", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "teh_senaus", + "email": "sean@sdmworld.co.uk" + } + ], + "time": { + "modified": "2011-10-01T17:00:37.182Z", + "created": "2011-08-10T15:48:46.950Z", + "0.0.1": "2011-08-10T15:48:47.817Z", + "0.1.0": "2011-09-04T19:46:18.557Z", + "0.1.1": "2011-09-30T19:22:37.569Z", + "0.1.2": "2011-10-01T16:55:49.114Z" + }, + "author": { + "name": "Sean Micklethwaite", + "url": "http://sdmworld.co.uk" + }, + "repository": { + "type": "git", + "url": "git://github.com/tehsenaus/coop-js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/coop/0.0.1", + "0.1.0": "http://registry.npmjs.org/coop/0.1.0", + "0.1.1": "http://registry.npmjs.org/coop/0.1.1", + "0.1.2": "http://registry.npmjs.org/coop/0.1.2" + }, + "dist": { + "0.0.1": { + "shasum": "1354269e8e20c0ff5c450f26f60ae8550074eb0b", + "tarball": "http://registry.npmjs.org/coop/-/coop-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "af0e50b81950e96acfa6b6cacbb1fc1845d93edf", + "tarball": "http://registry.npmjs.org/coop/-/coop-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "49733753397a84d7fdc7a0649de0d222b7eb623c", + "tarball": "http://registry.npmjs.org/coop/-/coop-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "031a2d47dfb67cab7cdb57c54ec739eabcd6fe58", + "tarball": "http://registry.npmjs.org/coop/-/coop-0.1.2.tgz" + } + }, + "keywords": [ + "class", + "inheritance", + "cooperative", + "co-operative", + "pythonic", + "python", + "javascript" + ], + "url": "http://registry.npmjs.org/coop/" + }, + "coordinator": { + "name": "coordinator", + "description": "Converts coordinates (e.g. lat/long to MGRS)", + "dist-tags": { + "latest": "0.4.5" + }, + "maintainers": [ + { + "name": "beatgammit", + "email": "t.jameson.little@gmail.com" + } + ], + "time": { + "modified": "2011-10-27T23:22:05.988Z", + "created": "2011-05-16T21:22:41.449Z", + "0.1.0": "2011-05-16T21:22:41.871Z", + "0.1.1": "2011-05-16T21:42:39.238Z", + "0.1.2": "2011-05-16T21:51:38.880Z", + "0.2.0": "2011-05-18T19:42:35.458Z", + "0.2.1": "2011-05-18T19:50:15.282Z", + "0.2.2": "2011-05-18T20:08:43.816Z", + "0.2.3": "2011-05-18T20:10:02.404Z", + "0.3.0": "2011-05-19T21:40:10.561Z", + "0.3.5": "2011-05-20T00:37:40.788Z", + "0.4.0": "2011-05-24T22:29:31.981Z", + "0.4.1": "2011-05-24T22:54:07.528Z", + "0.4.2": "2011-05-25T17:47:46.704Z", + "0.4.3": "2011-05-25T18:16:55.256Z", + "0.4.4": "2011-05-25T21:48:33.517Z", + "0.4.5": "2011-10-27T23:22:05.988Z" + }, + "author": { + "name": "T. Jameson Little", + "email": "t.jameson.little@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/beatgammit/node-coordinator.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/coordinator/0.1.0", + "0.1.1": "http://registry.npmjs.org/coordinator/0.1.1", + "0.1.2": "http://registry.npmjs.org/coordinator/0.1.2", + "0.2.0": "http://registry.npmjs.org/coordinator/0.2.0", + "0.2.1": "http://registry.npmjs.org/coordinator/0.2.1", + "0.2.2": "http://registry.npmjs.org/coordinator/0.2.2", + "0.2.3": "http://registry.npmjs.org/coordinator/0.2.3", + "0.3.0": "http://registry.npmjs.org/coordinator/0.3.0", + "0.3.5": "http://registry.npmjs.org/coordinator/0.3.5", + "0.4.0": "http://registry.npmjs.org/coordinator/0.4.0", + "0.4.1": "http://registry.npmjs.org/coordinator/0.4.1", + "0.4.2": "http://registry.npmjs.org/coordinator/0.4.2", + "0.4.3": "http://registry.npmjs.org/coordinator/0.4.3", + "0.4.4": "http://registry.npmjs.org/coordinator/0.4.4", + "0.4.5": "http://registry.npmjs.org/coordinator/0.4.5" + }, + "dist": { + "0.1.0": { + "shasum": "47d3ab3c74fdb18e7c842ba74163b94c791d0486", + "tarball": "http://registry.npmjs.org/coordinator/-/coordinator-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "149016708705b8776b0119239220033b4314280c", + "tarball": "http://registry.npmjs.org/coordinator/-/coordinator-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "eea64cf673d3c758605150a0d692f0a4c1c2885a", + "tarball": "http://registry.npmjs.org/coordinator/-/coordinator-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "2d62fb5f6940b1d10062bf11b0e808be9dc4aa4b", + "tarball": "http://registry.npmjs.org/coordinator/-/coordinator-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "760bbc4af601ef9e90c341b52f565ab3fe1b10cb", + "tarball": "http://registry.npmjs.org/coordinator/-/coordinator-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "785d9d6e2712988e433217c17f414f88afca8a05", + "tarball": "http://registry.npmjs.org/coordinator/-/coordinator-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "157c9d0958b4a60e97ab0b724e41a76eadd82657", + "tarball": "http://registry.npmjs.org/coordinator/-/coordinator-0.2.3.tgz" + }, + "0.3.0": { + "shasum": "0aaf2d1177ef167e70d0e29691eaef1f21ede95f", + "tarball": "http://registry.npmjs.org/coordinator/-/coordinator-0.3.0.tgz" + }, + "0.3.5": { + "shasum": "2cc1f62f2d10273a7447e888c1595b96c6dd2bef", + "tarball": "http://registry.npmjs.org/coordinator/-/coordinator-0.3.5.tgz" + }, + "0.4.0": { + "shasum": "aecd1d2ee73257788fca8b3939496bf291595dbc", + "tarball": "http://registry.npmjs.org/coordinator/-/coordinator-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "32f8fc2b9425f276e2b00812fb2ed14a64cf1c59", + "tarball": "http://registry.npmjs.org/coordinator/-/coordinator-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "deeecce2c78afc7d98e5e31a013f79b138cef585", + "tarball": "http://registry.npmjs.org/coordinator/-/coordinator-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "9c2488df23a466c37613a540533af36c26d8ee95", + "tarball": "http://registry.npmjs.org/coordinator/-/coordinator-0.4.3.tgz" + }, + "0.4.4": { + "shasum": "a4533be2fa6cf1cb63be23ce620db50c9547c8e3", + "tarball": "http://registry.npmjs.org/coordinator/-/coordinator-0.4.4.tgz" + }, + "0.4.5": { + "shasum": "b29d077337b857bb08f2f302f5116fbb04ec592f", + "tarball": "http://registry.npmjs.org/coordinator/-/coordinator-0.4.5.tgz" + } + }, + "keywords": [ + "gps", + "coordinates", + "conversion", + "mgrs", + "usng", + "utm", + "latitude", + "longitude", + "lat/long", + "coordinate", + "system" + ], + "url": "http://registry.npmjs.org/coordinator/" + }, + "copper": { + "name": "copper", + "description": "UI library based on ore.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "joehewitt", + "email": "joe@joehewitt.com" + } + ], + "time": { + "modified": "2011-10-10T03:22:36.096Z", + "created": "2011-10-10T03:22:35.093Z", + "0.0.1": "2011-10-10T03:22:36.096Z" + }, + "author": { + "name": "Joe Hewitt", + "email": "joe@joehewitt.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/copper/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "86fe3bed53e8fd8a4790df7baebf2448664d804c", + "tarball": "http://registry.npmjs.org/copper/-/copper-0.0.1.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/copper/" + }, + "core": { + "name": "core", + "description": "Core Libs", + "dist-tags": { + "latest": "0.4.7" + }, + "maintainers": [ + { + "name": "dreamlab", + "email": "janecki@gmail.com" + } + ], + "time": { + "modified": "2011-12-14T08:57:04.563Z", + "created": "2011-10-07T10:54:34.795Z", + "0.3.0": "2011-10-07T10:54:36.725Z", + "0.3.1": "2011-10-07T11:47:08.942Z", + "0.3.2": "2011-10-14T08:57:11.817Z", + "0.3.3": "2011-10-14T10:40:39.668Z", + "0.3.4": "2011-10-14T13:52:54.111Z", + "0.3.5": "2011-10-15T14:12:25.612Z", + "0.3.6": "2011-10-24T12:53:03.260Z", + "0.3.7": "2011-10-24T12:56:07.279Z", + "0.3.8": "2011-10-26T11:13:33.171Z", + "0.4.0": "2011-11-23T09:03:24.667Z", + "0.4.1": "2011-11-23T11:08:55.892Z", + "0.4.2": "2011-11-24T14:44:34.170Z", + "0.4.3": "2011-11-29T13:17:44.770Z", + "0.4.5": "2011-12-06T11:50:38.256Z", + "0.4.6": "2011-12-13T15:10:34.600Z", + "0.4.7": "2011-12-14T08:57:04.563Z" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/core/0.3.0", + "0.3.1": "http://registry.npmjs.org/core/0.3.1", + "0.3.2": "http://registry.npmjs.org/core/0.3.2", + "0.3.3": "http://registry.npmjs.org/core/0.3.3", + "0.3.4": "http://registry.npmjs.org/core/0.3.4", + "0.3.5": "http://registry.npmjs.org/core/0.3.5", + "0.3.6": "http://registry.npmjs.org/core/0.3.6", + "0.3.7": "http://registry.npmjs.org/core/0.3.7", + "0.3.8": "http://registry.npmjs.org/core/0.3.8", + "0.4.0": "http://registry.npmjs.org/core/0.4.0", + "0.4.1": "http://registry.npmjs.org/core/0.4.1", + "0.4.2": "http://registry.npmjs.org/core/0.4.2", + "0.4.3": "http://registry.npmjs.org/core/0.4.3", + "0.4.5": "http://registry.npmjs.org/core/0.4.5", + "0.4.6": "http://registry.npmjs.org/core/0.4.6", + "0.4.7": "http://registry.npmjs.org/core/0.4.7" + }, + "dist": { + "0.3.0": { + "shasum": "59aa0e7c5b2f24729148b154276707533020caa7", + "tarball": "http://registry.npmjs.org/core/-/core-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "68bb71582348958c977b7c6e6fbf54c0c15965d0", + "tarball": "http://registry.npmjs.org/core/-/core-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "eb545c223b8b22ccbfb31f4f5c5c014740346429", + "tarball": "http://registry.npmjs.org/core/-/core-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "7f04269489765979913ecc02e961b10dbe3d7180", + "tarball": "http://registry.npmjs.org/core/-/core-0.3.3.tgz" + }, + "0.3.4": { + "shasum": "3e1b64a110d65edeeded1a33897415a2087ce582", + "tarball": "http://registry.npmjs.org/core/-/core-0.3.4.tgz" + }, + "0.3.5": { + "shasum": "07377181d05052f7b971162055dfb8d4c34a861c", + "tarball": "http://registry.npmjs.org/core/-/core-0.3.5.tgz" + }, + "0.3.6": { + "shasum": "d34c8591ef66d3fd586f7fe22e361fb591ece8d8", + "tarball": "http://registry.npmjs.org/core/-/core-0.3.6.tgz" + }, + "0.3.7": { + "shasum": "aec3defb20f12e8ca36fbb6457d8daab01a9e7ec", + "tarball": "http://registry.npmjs.org/core/-/core-0.3.7.tgz" + }, + "0.3.8": { + "shasum": "6ffb3f86d87f4db378f78af42c6084779954ecdc", + "tarball": "http://registry.npmjs.org/core/-/core-0.3.8.tgz" + }, + "0.4.0": { + "shasum": "93097b94aece68f65cb420d23277559a9410444f", + "tarball": "http://registry.npmjs.org/core/-/core-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "ab43d1098717faf81376656364740aaac893ddc1", + "tarball": "http://registry.npmjs.org/core/-/core-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "51656ec4e01ee7b6e86ec333ef1dff619cd8b6f2", + "tarball": "http://registry.npmjs.org/core/-/core-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "f471c06023544603dcec5fc6d8c2b43a66e0f0d0", + "tarball": "http://registry.npmjs.org/core/-/core-0.4.3.tgz" + }, + "0.4.5": { + "shasum": "11fd768b165790d58573b9a6c423aeab7e8c7112", + "tarball": "http://registry.npmjs.org/core/-/core-0.4.5.tgz" + }, + "0.4.6": { + "shasum": "5a1845d4442d95990bced432c94f519ed3d95c66", + "tarball": "http://registry.npmjs.org/core/-/core-0.4.6.tgz" + }, + "0.4.7": { + "shasum": "bcb2bd4a8edf19c7aa9e89aa858019ba37c36b78", + "tarball": "http://registry.npmjs.org/core/-/core-0.4.7.tgz" + } + }, + "url": "http://registry.npmjs.org/core/" + }, + "core-utils": { + "name": "core-utils", + "description": "Utility library for everyday javasciprt.", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "gozala", + "email": "rfobic@gmail.com" + } + ], + "time": { + "modified": "2011-02-24T16:29:46.186Z", + "created": "2011-01-28T22:31:03.669Z", + "0.0.1": "2011-01-28T22:31:04.301Z", + "0.0.2": "2011-01-28T23:38:25.512Z", + "0.0.3": "2011-02-21T16:02:42.981Z", + "0.0.4": "2011-02-24T16:29:46.186Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/Gozala/core-utils.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/core-utils/0.0.1", + "0.0.2": "http://registry.npmjs.org/core-utils/0.0.2", + "0.0.3": "http://registry.npmjs.org/core-utils/0.0.3", + "0.0.4": "http://registry.npmjs.org/core-utils/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "4e9a8ba3d52a055020370a7c64ec324e5e5a2757", + "tarball": "http://registry.npmjs.org/core-utils/-/core-utils-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "afa233b7f905dc56105488049b9ac9b2faeeb819", + "tarball": "http://registry.npmjs.org/core-utils/-/core-utils-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "8509d3ad8e138c42f03f697d5d743565cf890570", + "tarball": "http://registry.npmjs.org/core-utils/-/core-utils-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "02382478eb706874fbba9ee271098e20ed3c1177", + "tarball": "http://registry.npmjs.org/core-utils/-/core-utils-0.0.4.tgz" + } + }, + "keywords": [ + "utils", + "core" + ], + "url": "http://registry.npmjs.org/core-utils/" + }, + "corn": { + "name": "corn", + "description": "Corn is a simple async template language for node", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": null, + "maintainers": [ + { + "name": "creationix", + "email": "tim@creationix.com" + } + ], + "time": { + "modified": "2011-12-03T17:28:35.634Z", + "created": "2011-12-03T17:28:34.971Z", + "0.0.1": "2011-12-03T17:28:35.634Z" + }, + "author": { + "name": "Tim Caswell", + "email": "tim@creationix.com", + "url": "http://github.com/creationix" + }, + "repository": { + "type": "git", + "url": "git://github.com/creationix/corn.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/corn/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "852e77739ee4f7c8a9b2ea212638666824fc15fb", + "tarball": "http://registry.npmjs.org/corn/-/corn-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/corn/" + }, + "cornerstone": { + "name": "cornerstone", + "description": "Cross platform JavaScript utilities, event emitter and class constructor.", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "# cornerstone\n\nCross platform JavaScript utilities, event emitter and class constructor.\n\n\tvar cornerstone = require('cornerstone').require('index');\n\tappCore.util.idle();\n\n### util\n\nCommon utilities for type checking, invocation, enumeration, random, and assignment.\n\n\tvar util = require('cornerstone').require('util');\n\tutil.enumerate(obj, function (val, key) {\n\t\tif (val) array.push(val);\n\t});\n\n### Class\n\nCombines prototypal inheritance and module design patterns into a hybrid Class solution.\n\n\tvar core = require('cornerstone'),\n\t Class = core.require('Class'),\n\t Emitter = core.require('Emitter');\n\tvar Flight = new Class('Flight', function (obj, proto) {\n\t\tobj.fly = function () {\n\t\t\tthis.isFlying = true;\n\t\t\treturn this;\n\t\t};\n\t\tobj.land = function () {\n\t\t\tdelete this.isFlying;\n\t\t\treturn this;\n\t\t};\n\t});\n\tvar Animal = new Class('Animal', Emitter, function (obj, supr, proto) {\n\t\tobj.initAnimal = function (name) {\n\t\t\tthis.name = name;\n\t\t\treturn this.initEmitter();\n\t\t};\n\t});\n\tvar FlyingAnimal = Animal.extend('FlyingAnimal', function (obj, supr, proto) {\n\t\tif (!Flight.check(obj)) {\n\t\t\tFlight.create(obj);\n\t\t}\n\t});\n\tvar bird = new FlyingAnimal('bird').fly().land();\n\tFlight.check(bird) && Animal.check(bird) && FlyingAnimal.check(bird); //true\n\n### Emitter\n\nCross platform event emitter implementation plus some extras.\n\n\tvar Emitter = require('cornerstone').require('Emitter');\n\tvar events = new Emitter();\n\tevents.on('apocalypse', function () {\n\t\tconsole.log('It\\'s the end');\n\t});\n\tevents.forever('apocalypse');\n\n## Installation\n\n\t$ npm install cornerstone\n\n## Running Tests\n\n\t$ node test\n\n## MIT License \n\nCopyright (C) 2011 by Roland Poulter\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.", + "maintainers": [ + { + "name": "rolandpoulter", + "email": "rolandpoulter@gmail.com" + } + ], + "time": { + "modified": "2011-11-20T01:39:05.215Z", + "created": "2011-11-20T01:39:04.022Z", + "0.1.0": "2011-11-20T01:39:05.215Z" + }, + "author": { + "name": "Roland Poulter" + }, + "repository": { + "type": "git", + "url": "git://github.com/rolandpoulter/cornerstone.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/cornerstone/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "7bf21fbb285a556599e0926498c4299d8a9221a8", + "tarball": "http://registry.npmjs.org/cornerstone/-/cornerstone-0.1.0.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/cornerstone/" + }, + "cornify": { + "name": "cornify", + "description": "A super magical unicorn module", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "drgath", + "email": "drgath@gmail.com" + } + ], + "author": { + "name": "Derek Gathright", + "email": "drgath@gmail.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/drgath/cornify.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/cornify/0.1.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/cornify/-/cornify-0.1.0.tgz" + } + }, + "keywords": [ + "cornify" + ], + "url": "http://registry.npmjs.org/cornify/" + }, + "corpus": { + "name": "corpus", + "description": "Corpus.js is a Javascript framework for large client side web applications.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "lancecarlson", + "email": "lancecarlson@gmail.com" + } + ], + "time": { + "modified": "2011-05-17T12:31:09.836Z", + "created": "2011-05-17T12:31:09.682Z", + "0.0.1": "2011-05-17T12:31:09.836Z" + }, + "author": { + "name": "Lance Carlson", + "email": "lcarlson@healpay.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/corpus/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "6bfb4779b1ae4d5ecd59bd1f897aa98d8b0e2dab", + "tarball": "http://registry.npmjs.org/corpus/-/corpus-0.0.1.tgz" + } + }, + "keywords": [ + "util", + "server", + "client", + "browser" + ], + "url": "http://registry.npmjs.org/corpus/" + }, + "corrector": { + "name": "corrector", + "description": "A really simple spelling correction module based on the levenshtein distance between words.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "kami", + "email": "tomaz@tomaz.me" + } + ], + "time": { + "modified": "2011-04-02T19:38:51.245Z", + "created": "2011-04-02T19:38:50.264Z", + "0.1.0": "2011-04-02T19:38:51.245Z" + }, + "author": { + "name": "Tomaz Muraus", + "email": "tomaz+npm@tomaz.me", + "url": "http://www.tomaz.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/Kami/corrector.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/corrector/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "a32d047cee04f45c343bbcd440c1d781796afea8", + "tarball": "http://registry.npmjs.org/corrector/-/corrector-0.1.0.tgz" + } + }, + "keywords": [ + "spelling", + "speller", + "spell checker", + "spelling correction", + "spell checking" + ], + "url": "http://registry.npmjs.org/corrector/" + }, + "corser": { + "name": "corser", + "description": "A CORS-enabled HTTP reverse proxy.", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "Corser\n=======\n\nA [CORS](http://www.w3.org/TR/cors/)-enabled HTTP reverse proxy.\n\n\nExamples\n--------\n\n### URL\n\n http://localhost:1337/?url=http://enable-cors.org\n\n`/?url=`: Loads and returns the content of url.\n\n### With XMLHttpRequest\n\n#### GET\n\n var xhr;\n xhr = new XMLHttpRequest();\n xhr.open(\"GET\", \"http://localhost:1337/?url=http://enable-cors.org\");\n xhr.onreadystatechange = function () {\n if (xhr.readyState === 4) {\n console.log(xhr.responseText);\n }\n };\n xhr.send(null);\n\n#### POST\n\n var doc, xhr;\n doc = {\n \"some\": \"document\"\n };\n xhr = new XMLHttpRequest();\n xhr.open(\"POST\", \"http://localhost:1337/?url=http://agrueneberg.iriscouch.com/playground\");\n xhr.onreadystatechange = function () {\n if (xhr.readyState === 4) {\n console.log(xhr.responseText);\n }\n };\n xhr.setRequestHeader(\"Content-Type\", \"application/json\");\n xhr.send(JSON.stringify(doc));\n\n\nInstallation\n------------\n\n* `npm install corser -g`\n* `corser --port 1337`\n\n\nSupported HTTP Methods\n----------------------\n\n* `GET`\n* `POST`\n* `PUT`\n* `DELETE`\n\n\nSupported HTTP Headers\n----------------------\n\n### Request\n\n* `Accept`\n* `Content-Type`\n\n### Response\n\n* `Content-Type`\n", + "maintainers": [ + { + "name": "agrueneberg", + "email": "alexander.grueneberg@googlemail.com" + } + ], + "time": { + "modified": "2011-11-28T23:29:24.343Z", + "created": "2011-11-28T23:29:23.758Z", + "0.1.0": "2011-11-28T23:29:24.343Z" + }, + "author": { + "name": "Alexander Grüneberg", + "email": "alexander.grueneberg@googlemail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/agrueneberg/Corser.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/corser/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "a48ee5c28ae58512b1cde09c22181036aac1d7d5", + "tarball": "http://registry.npmjs.org/corser/-/corser-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/corser/" + }, + "cosmos": { + "name": "cosmos", + "description": "A distributed event driven and RPC based application framework for Node.JS", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "aikar", + "email": "aikar@aikar.co" + } + ], + "time": { + "modified": "2011-04-19T02:16:43.330Z", + "created": "2011-04-19T02:16:43.109Z", + "0.0.1": "2011-04-19T02:16:43.330Z" + }, + "author": { + "name": "Aikar", + "email": "aikar@aikar.co" + }, + "repository": { + "type": "git", + "url": "git@github.com:aikar/cosmos" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/cosmos/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "b0338553f6ddca1e9505da69b423212b422434fb", + "tarball": "http://registry.npmjs.org/cosmos/-/cosmos-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/cosmos/" + }, + "couch": { + "name": "couch", + "description": "Stupid simple Couch wrapper based on Request", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "maxogden", + "email": "max@maxogden.com" + } + ], + "time": { + "modified": "2011-11-21T21:35:33.644Z", + "created": "2011-11-21T21:34:07.804Z", + "0.0.1": "2011-11-21T21:35:33.644Z" + }, + "author": { + "name": "Mikeal Rogers", + "email": "mikeal.rogers@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/couch/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "cfbfceb3e075fa2081103a5a90c9dcb925203e3b", + "tarball": "http://registry.npmjs.org/couch/-/couch-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/couch/" + }, + "couch-ar": { + "name": "couch-ar", + "description": "active record for CouchDB", + "dist-tags": { + "latest": "0.2.5" + }, + "maintainers": [ + { + "name": "scottburch", + "email": "scott@bulldoginfo.com" + } + ], + "author": { + "name": "Scott Burch", + "email": "scott@bulldoginfo.com" + }, + "time": { + "modified": "2011-11-05T23:09:27.991Z", + "created": "2011-02-03T01:29:24.057Z", + "0.1.0": "2011-02-03T01:29:24.057Z", + "0.1.1": "2011-02-03T01:29:24.057Z", + "0.1.2": "2011-02-23T03:09:37.650Z", + "0.1.3": "2011-02-23T03:14:15.511Z", + "0.1.4": "2011-03-17T18:00:56.562Z", + "0.1.5": "2011-03-18T13:47:46.244Z", + "0.1.6": "2011-05-23T17:08:43.383Z", + "0.2.0": "2011-08-07T17:00:44.014Z", + "0.2.2": "2011-10-31T04:55:33.406Z", + "0.2.3": "2011-10-31T06:03:57.797Z", + "0.2.4": "2011-10-31T06:38:33.804Z", + "0.2.5": "2011-11-05T23:09:27.991Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/couch-ar/0.1.0", + "0.1.1": "http://registry.npmjs.org/couch-ar/0.1.1", + "0.1.2": "http://registry.npmjs.org/couch-ar/0.1.2", + "0.1.3": "http://registry.npmjs.org/couch-ar/0.1.3", + "0.1.4": "http://registry.npmjs.org/couch-ar/0.1.4", + "0.1.5": "http://registry.npmjs.org/couch-ar/0.1.5", + "0.1.6": "http://registry.npmjs.org/couch-ar/0.1.6", + "0.2.0": "http://registry.npmjs.org/couch-ar/0.2.0", + "0.2.2": "http://registry.npmjs.org/couch-ar/0.2.2", + "0.2.3": "http://registry.npmjs.org/couch-ar/0.2.3", + "0.2.4": "http://registry.npmjs.org/couch-ar/0.2.4", + "0.2.5": "http://registry.npmjs.org/couch-ar/0.2.5" + }, + "dist": { + "0.1.0": { + "shasum": "a33124a08987e4e57e8a1100ed9b167c5c6d80bb", + "tarball": "http://registry.npmjs.org/couch-ar/-/couch-ar-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "07eae507ce87334806f12490b85ca314ae666570", + "tarball": "http://registry.npmjs.org/couch-ar/-/couch-ar-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "7b13ac4ef5a0595db1d962a1867cae39f8f25b04", + "tarball": "http://registry.npmjs.org/couch-ar/-/couch-ar-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "41d44d58a7311eaefe537a2170bd413265a330fb", + "tarball": "http://registry.npmjs.org/couch-ar/-/couch-ar-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "2a2859802db08151ff10d8b427d0b5f4c28cd944", + "tarball": "http://registry.npmjs.org/couch-ar/-/couch-ar-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "4a57d190473bf7c22e74cd767a984075e2bccca8", + "tarball": "http://registry.npmjs.org/couch-ar/-/couch-ar-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "250b834accdeb7ce928af6c16f18ba2a4f298515", + "tarball": "http://registry.npmjs.org/couch-ar/-/couch-ar-0.1.6.tgz" + }, + "0.2.0": { + "shasum": "943db8fee1c64f997369fc8fac81cca51ccd6fe9", + "tarball": "http://registry.npmjs.org/couch-ar/-/couch-ar-0.2.0.tgz" + }, + "0.2.2": { + "shasum": "c8b6ee9458881c9f8778d59e9b41176ba2087acf", + "tarball": "http://registry.npmjs.org/couch-ar/-/couch-ar-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "60cbad80d1733a0ef4340029c50d7b908329157d", + "tarball": "http://registry.npmjs.org/couch-ar/-/couch-ar-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "debe7175036d72b5a7409be4cc221c6752bf50e5", + "tarball": "http://registry.npmjs.org/couch-ar/-/couch-ar-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "afcd42fbaa41f6bc959fb9757c19c1778ec706f3", + "tarball": "http://registry.npmjs.org/couch-ar/-/couch-ar-0.2.5.tgz" + } + }, + "url": "http://registry.npmjs.org/couch-ar/" + }, + "couch-cleaner": { + "name": "couch-cleaner", + "dist-tags": { + "latest": "0.0.11" + }, + "maintainers": [ + { + "name": "manobi", + "email": "manobi.oliveira@gmail.com" + } + ], + "time": { + "modified": "2011-12-10T12:30:02.795Z", + "created": "2011-06-18T18:02:15.188Z", + "0.0.1": "2011-06-18T18:02:16.366Z", + "0.0.2": "2011-06-21T01:58:25.745Z", + "0.0.4": "2011-09-13T03:14:29.589Z", + "0.0.5": "2011-09-20T02:57:08.463Z", + "0.0.7": "2011-09-22T02:20:06.052Z", + "0.0.8": "2011-09-22T02:36:02.124Z", + "0.0.9": "2011-09-22T03:30:48.067Z", + "0.0.10": "2011-10-07T00:07:30.951Z", + "0.0.11": "2011-12-10T12:30:02.795Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/couch-cleaner/0.0.1", + "0.0.2": "http://registry.npmjs.org/couch-cleaner/0.0.2", + "0.0.4": "http://registry.npmjs.org/couch-cleaner/0.0.4", + "0.0.5": "http://registry.npmjs.org/couch-cleaner/0.0.5", + "0.0.7": "http://registry.npmjs.org/couch-cleaner/0.0.7", + "0.0.8": "http://registry.npmjs.org/couch-cleaner/0.0.8", + "0.0.9": "http://registry.npmjs.org/couch-cleaner/0.0.9", + "0.0.10": "http://registry.npmjs.org/couch-cleaner/0.0.10", + "0.0.11": "http://registry.npmjs.org/couch-cleaner/0.0.11" + }, + "dist": { + "0.0.1": { + "shasum": "b678e5cfc57169cfd82066ceb4ad4c6f211b0cac", + "tarball": "http://registry.npmjs.org/couch-cleaner/-/couch-cleaner-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "9067f196301db5bf38b5f72ae753816ab8431194", + "tarball": "http://registry.npmjs.org/couch-cleaner/-/couch-cleaner-0.0.2.tgz" + }, + "0.0.4": { + "shasum": "194b43a10a980de3397a7fc25f7fb10a6a463186", + "tarball": "http://registry.npmjs.org/couch-cleaner/-/couch-cleaner-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "22f404bfcb02a7558f29697218c4df1cd67b5628", + "tarball": "http://registry.npmjs.org/couch-cleaner/-/couch-cleaner-0.0.5.tgz" + }, + "0.0.7": { + "shasum": "f759e606468c75e31438b18eec94dc4fe3aad2a3", + "tarball": "http://registry.npmjs.org/couch-cleaner/-/couch-cleaner-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "b6b480286cb165d4ac8df8c155eed61c2beede64", + "tarball": "http://registry.npmjs.org/couch-cleaner/-/couch-cleaner-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "e21b029884168019f04260f2b0f6e5b9f6b3191a", + "tarball": "http://registry.npmjs.org/couch-cleaner/-/couch-cleaner-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "699de2a92662ab913fb73554c6a8155088c8d4a4", + "tarball": "http://registry.npmjs.org/couch-cleaner/-/couch-cleaner-0.0.10.tgz" + }, + "0.0.11": { + "shasum": "68f6f04d7d1dfea37497b01ff20084e7bd493ea7", + "tarball": "http://registry.npmjs.org/couch-cleaner/-/couch-cleaner-0.0.11.tgz" + } + }, + "url": "http://registry.npmjs.org/couch-cleaner/" + }, + "Couch-cleaner": { + "name": "Couch-cleaner", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "manobi", + "email": "manobi.oliveira@gmail.com" + } + ], + "time": { + "modified": "2011-06-18T17:50:20.300Z", + "created": "2011-06-18T17:50:19.123Z", + "0.0.1": "2011-06-18T17:50:20.300Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/Couch-cleaner/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "1784509cf7cbd8a74a20f706a1eae74447497580", + "tarball": "http://registry.npmjs.org/Couch-cleaner/-/Couch-cleaner-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/Couch-cleaner/" + }, + "couch-client": { + "name": "couch-client", + "description": "A Simple, Fast, and Flexible CouchDB Client", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "creationix", + "email": "tim@creationix.com" + } + ], + "author": { + "name": "Tim Caswell", + "email": "tim@creationix.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/creationix/couch-client.git" + }, + "time": { + "modified": "2011-03-02T18:55:14.057Z", + "created": "2011-03-02T18:55:14.057Z", + "0.0.1": "2011-03-02T18:55:14.057Z", + "0.0.3": "2011-03-02T18:55:14.057Z", + "0.0.4": "2011-03-02T18:55:14.057Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/couch-client/0.0.1", + "0.0.3": "http://registry.npmjs.org/couch-client/0.0.3", + "0.0.4": "http://registry.npmjs.org/couch-client/0.0.4" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/couch-client/-/couch-client-0.0.1.tgz" + }, + "0.0.3": { + "shasum": "3030bc2785165f138fcc95a5da99bed32d39808b", + "tarball": "http://registry.npmjs.org/couch-client/-/couch-client-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "86a6048a7163436b8d3d059171b80102eeed4985", + "tarball": "http://registry.npmjs.org/couch-client/-/couch-client-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/couch-client/" + }, + "couch-session": { + "name": "couch-session", + "description": "connect.js session store for couchdb", + "dist-tags": { + "latest": "0.5.0" + }, + "maintainers": [ + { + "name": "payload", + "email": "payload@lavabit.com" + } + ], + "time": { + "modified": "2011-06-13T13:04:50.694Z", + "created": "2011-06-13T13:04:49.856Z", + "0.5.0": "2011-06-13T13:04:50.694Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/payload/couch-session.git" + }, + "versions": { + "0.5.0": "http://registry.npmjs.org/couch-session/0.5.0" + }, + "dist": { + "0.5.0": { + "shasum": "ab352045f97fd1c10ab7ee7af34d28eb5148a99f", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.16-linux-2.6.35-28-generic": { + "shasum": "71dccb4355f7c10dbd644327439a3766ad94fc70", + "tarball": "http://registry.npmjs.org/couch-session/-/couch-session-0.5.0-0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.16-linux-2.6.35-28-generic.tgz" + } + }, + "tarball": "http://registry.npmjs.org/couch-session/-/couch-session-0.5.0.tgz" + } + }, + "url": "http://registry.npmjs.org/couch-session/" + }, + "couch-sqlite": { + "name": "couch-sqlite", + "description": "Ports data from couchdb to SQLite.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "lxbarth", + "email": "alex@developmentseed.org" + } + ], + "time": { + "modified": "2011-09-13T15:53:28.285Z", + "created": "2011-09-13T15:53:27.998Z", + "0.0.1": "2011-09-13T15:53:28.285Z" + }, + "author": { + "name": "Dmitri Gaskin", + "url": "dmitrig01" + }, + "repository": { + "type": "git", + "url": "git://github.com/developmentseed/couch-sqlite.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/couch-sqlite/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "930c8227dc3efb6cee4a83ea3b13e814edbde24b", + "tarball": "http://registry.npmjs.org/couch-sqlite/-/couch-sqlite-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/couch-sqlite/" + }, + "couch-stream": { + "name": "couch-stream", + "description": "", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-09-20T14:41:17.297Z", + "created": "2011-09-19T15:42:29.382Z", + "0.1.0": "2011-09-19T15:42:33.696Z", + "0.2.0": "2011-09-20T14:41:17.297Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com", + "url": "http://bit.ly/dominictarr" + }, + "repository": { + "type": "git", + "url": "git://github.com/dominictarr/couch-stream.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/couch-stream/0.1.0", + "0.2.0": "http://registry.npmjs.org/couch-stream/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "2ff2b92cb27d2d2f1d802fa3371c4bf034b8d6bd", + "tarball": "http://registry.npmjs.org/couch-stream/-/couch-stream-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "d04a26735c2571703956c9760f3a070e8f73645c", + "tarball": "http://registry.npmjs.org/couch-stream/-/couch-stream-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/couch-stream/" + }, + "couch-sync": { + "name": "couch-sync", + "description": "", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-11-12T05:19:17.769Z", + "created": "2011-11-12T02:57:24.808Z", + "0.0.1": "2011-11-12T02:58:33.854Z", + "0.0.2": "2011-11-12T05:19:17.769Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com", + "url": "http://bit.ly/dominictarr" + }, + "repository": { + "type": "git", + "url": "git://github.com/dominictarr/couch-sync.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/couch-sync/0.0.1", + "0.0.2": "http://registry.npmjs.org/couch-sync/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "8b5864dee15eaec31a1147c99d0bc3056f26fe92", + "tarball": "http://registry.npmjs.org/couch-sync/-/couch-sync-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "d0989fb0bf8ddbb5156029f0c1b62d7cdf2babd7", + "tarball": "http://registry.npmjs.org/couch-sync/-/couch-sync-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/couch-sync/" + }, + "couchapp": { + "name": "couchapp", + "description": "Utilities for building CouchDB applications.", + "dist-tags": { + "latest": "0.9.0" + }, + "maintainers": [ + { + "name": "mikeal", + "email": "mikeal.rogers@gmail.com" + } + ], + "author": { + "name": "Mikeal Rogers", + "email": "mikeal.rogers@gmail.com" + }, + "time": { + "modified": "2011-12-09T17:51:34.384Z", + "created": "2011-01-04T01:24:31.102Z", + "0.2.0": "2011-01-04T01:24:31.102Z", + "0.5.0": "2011-01-04T01:24:31.102Z", + "0.5.1": "2011-01-04T01:24:31.102Z", + "0.7.0": "2011-01-04T01:24:31.102Z", + "0.8.0": "2011-02-19T00:00:43.650Z", + "0.8.1": "2011-08-10T18:26:21.853Z", + "0.9.0": "2011-12-09T17:51:34.384Z" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/couchapp/0.2.0", + "0.5.0": "http://registry.npmjs.org/couchapp/0.5.0", + "0.5.1": "http://registry.npmjs.org/couchapp/0.5.1", + "0.7.0": "http://registry.npmjs.org/couchapp/0.7.0", + "0.8.0": "http://registry.npmjs.org/couchapp/0.8.0", + "0.8.1": "http://registry.npmjs.org/couchapp/0.8.1", + "0.9.0": "http://registry.npmjs.org/couchapp/0.9.0" + }, + "dist": { + "0.2.0": { + "tarball": "http://packages:5984/couchapp/-/couchapp-0.2.0.tgz" + }, + "0.5.0": { + "tarball": "http://packages:5984/couchapp/-/couchapp-0.5.0.tgz" + }, + "0.5.1": { + "tarball": "http://packages:5984/couchapp/-/couchapp-0.5.1.tgz" + }, + "0.7.0": { + "shasum": "0033621434c7376497d80c66d75a727de71e342f", + "tarball": "http://registry.npmjs.org/couchapp/-/couchapp-0.7.0.tgz" + }, + "0.8.0": { + "shasum": "7a89ddd7c8d4cd488499aad76a4ea59766ab76a0", + "tarball": "http://registry.npmjs.org/couchapp/-/couchapp-0.8.0.tgz" + }, + "0.8.1": { + "shasum": "b37d6db3a590ec599e417e273613a651ef69d349", + "tarball": "http://registry.npmjs.org/couchapp/-/couchapp-0.8.1.tgz" + }, + "0.9.0": { + "shasum": "da16b2cbb86c18cacc02ca64c9da17208a2e6ff0", + "tarball": "http://registry.npmjs.org/couchapp/-/couchapp-0.9.0.tgz" + } + }, + "url": "http://registry.npmjs.org/couchapp/" + }, + "couchcmd": { + "name": "couchcmd", + "description": "Couch commandline", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "ssuda", + "email": "sambasivarao@gmail.com" + } + ], + "time": { + "modified": "2011-09-23T17:20:46.932Z", + "created": "2011-09-23T17:20:45.084Z", + "0.0.1": "2011-09-23T17:20:46.932Z" + }, + "author": { + "name": "Sambasiva Suda", + "email": "sambasivarao@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/ssuda/node-couch-cmd.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/couchcmd/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "c13989f812413878f5e116428d5b4eec9dcb5e23", + "tarball": "http://registry.npmjs.org/couchcmd/-/couchcmd-0.0.1.tgz" + } + }, + "keywords": [ + "couchdb", + "commandline" + ], + "url": "http://registry.npmjs.org/couchcmd/" + }, + "CouchCover": { + "name": "CouchCover", + "description": "Provides a mock evironment for testing CouchDB design document functions", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "zdzolton", + "email": "zachary.zolton@gmail.com" + } + ], + "author": { + "name": "Zachary Zolton", + "email": "zachary.zolton@gmail.com" + }, + "time": { + "modified": "2011-06-28T16:28:34.810Z", + "created": "2011-01-17T18:05:38.854Z", + "0.0.1": "2011-01-17T18:05:38.854Z", + "0.0.2": "2011-01-17T18:05:38.854Z", + "0.0.3": "2011-01-17T18:05:38.854Z", + "0.0.4": "2011-01-17T21:06:51.138Z", + "0.0.5": "2011-06-28T16:28:34.810Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/CouchCover/0.0.1", + "0.0.2": "http://registry.npmjs.org/CouchCover/0.0.2", + "0.0.3": "http://registry.npmjs.org/CouchCover/0.0.3", + "0.0.4": "http://registry.npmjs.org/CouchCover/0.0.4", + "0.0.5": "http://registry.npmjs.org/CouchCover/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "f24b22f61777a7a69ad4daff318a202bdade3efc", + "tarball": "http://registry.npmjs.org/CouchCover/-/CouchCover-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "381b4ff67bcf46150d45ed4a3951e08a2afaea5e", + "tarball": "http://registry.npmjs.org/CouchCover/-/CouchCover-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "3847a442feddd7a91814a9185f6fcb376fdf8448", + "tarball": "http://registry.npmjs.org/CouchCover/-/CouchCover-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "9a75294e054f65983e7e5acb9231c8781d3a3b71", + "tarball": "http://registry.npmjs.org/CouchCover/-/CouchCover-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "80f0554e513f13de6a4ba665a2a9993319f661c5", + "tarball": "http://registry.npmjs.org/CouchCover/-/CouchCover-0.0.5.tgz" + } + }, + "keywords": [ + "CouchDB", + "mock", + "testing" + ], + "url": "http://registry.npmjs.org/CouchCover/" + }, + "couchdb": { + "name": "couchdb", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "nathan", + "email": "nrstott@gmail.com" + } + ], + "author": { + "name": "Nathan Stott" + }, + "time": { + "modified": "2011-12-13T23:51:14.965Z", + "created": "2011-05-18T22:38:33.008Z", + "0.0.1": "2011-05-18T22:38:33.008Z", + "0.1.0": "2011-05-18T22:38:33.008Z", + "0.1.1": "2011-05-18T22:38:33.008Z", + "0.1.2": "2011-06-24T14:41:19.517Z", + "0.2.0a": "2011-09-27T14:56:11.584Z", + "0.3.0": "2011-12-13T23:51:14.965Z" + }, + "users": { + "nathan": true + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/couchdb/0.0.1", + "0.1.0": "http://registry.npmjs.org/couchdb/0.1.0", + "0.1.1": "http://registry.npmjs.org/couchdb/0.1.1", + "0.1.2": "http://registry.npmjs.org/couchdb/0.1.2", + "0.2.0a": "http://registry.npmjs.org/couchdb/0.2.0a", + "0.3.0": "http://registry.npmjs.org/couchdb/0.3.0" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/couchdb/-/couchdb-0.0.1.tgz" + }, + "0.1.0": { + "tarball": "http://packages:5984/couchdb/-/couchdb-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "f7a25435fdb62ecd41d4e725cdcefdb9baaf4e98", + "tarball": "http://registry.npmjs.org/couchdb/-/couchdb-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "79865ec3a89f7a48b9e866fe27f197589afc570c", + "tarball": "http://registry.npmjs.org/couchdb/-/couchdb-0.1.2.tgz" + }, + "0.2.0a": { + "shasum": "8308f2afd3bf74263baab56dea42d624eb6069aa", + "tarball": "http://registry.npmjs.org/couchdb/-/couchdb-0.2.0a.tgz" + }, + "0.3.0": { + "shasum": "5c011b0ed96c799c73eb34f083c70843d6f5aa7c", + "tarball": "http://registry.npmjs.org/couchdb/-/couchdb-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/couchdb/" + }, + "couchdb-api": { + "name": "couchdb-api", + "description": "An async wrapper for the CouchDB HTTP API, following Node.js conventions", + "dist-tags": { + "latest": "0.12.0" + }, + "maintainers": [ + { + "name": "dominicbarnes", + "email": "contact@dominicbarnes.us" + } + ], + "time": { + "modified": "2011-12-12T21:19:12.457Z", + "created": "2011-05-24T23:40:06.927Z", + "0.1.0": "2011-12-07T22:26:16.765Z", + "0.1.1": "2011-12-07T22:26:16.765Z", + "0.2.0": "2011-12-07T22:26:16.765Z", + "0.2.5": "2011-12-07T22:26:16.765Z", + "0.3.0": "2011-12-07T22:26:16.765Z", + "0.3.5": "2011-12-07T22:26:16.765Z", + "0.4.0": "2011-12-07T22:26:16.765Z", + "0.5.0": "2011-12-07T22:26:16.765Z", + "0.6.0": "2011-12-07T22:26:16.765Z", + "0.6.1": "2011-12-07T22:26:16.765Z", + "0.7.0": "2011-12-07T22:26:16.765Z", + "0.8.0": "2011-12-07T22:26:16.765Z", + "0.8.1": "2011-12-07T22:26:16.765Z", + "0.9.0": "2011-12-07T22:26:16.765Z", + "0.9.1": "2011-12-07T22:26:16.765Z", + "0.9.5": "2011-12-07T22:26:16.765Z", + "0.9.6": "2011-11-14T15:06:36.963Z", + "0.10.0": "2011-11-26T03:38:41.753Z", + "0.11.0": "2011-12-07T22:26:16.765Z", + "0.12.0": "2011-12-12T21:19:12.457Z" + }, + "author": { + "name": "Dominic Barnes", + "email": "contact@dominicbarnes.us", + "url": "http://dominicbarnes.us" + }, + "repository": { + "type": "git", + "url": "git://github.com/dominicbarnes/node-couchdb-api.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/couchdb-api/0.1.0", + "0.1.1": "http://registry.npmjs.org/couchdb-api/0.1.1", + "0.2.0": "http://registry.npmjs.org/couchdb-api/0.2.0", + "0.2.5": "http://registry.npmjs.org/couchdb-api/0.2.5", + "0.3.0": "http://registry.npmjs.org/couchdb-api/0.3.0", + "0.3.5": "http://registry.npmjs.org/couchdb-api/0.3.5", + "0.4.0": "http://registry.npmjs.org/couchdb-api/0.4.0", + "0.5.0": "http://registry.npmjs.org/couchdb-api/0.5.0", + "0.6.0": "http://registry.npmjs.org/couchdb-api/0.6.0", + "0.6.1": "http://registry.npmjs.org/couchdb-api/0.6.1", + "0.7.0": "http://registry.npmjs.org/couchdb-api/0.7.0", + "0.8.0": "http://registry.npmjs.org/couchdb-api/0.8.0", + "0.8.1": "http://registry.npmjs.org/couchdb-api/0.8.1", + "0.9.0": "http://registry.npmjs.org/couchdb-api/0.9.0", + "0.9.1": "http://registry.npmjs.org/couchdb-api/0.9.1", + "0.9.5": "http://registry.npmjs.org/couchdb-api/0.9.5", + "0.9.6": "http://registry.npmjs.org/couchdb-api/0.9.6", + "0.10.0": "http://registry.npmjs.org/couchdb-api/0.10.0", + "0.11.0": "http://registry.npmjs.org/couchdb-api/0.11.0", + "0.12.0": "http://registry.npmjs.org/couchdb-api/0.12.0" + }, + "dist": { + "0.1.0": { + "shasum": "931e95478f75b81aa39918f064cba6f36585d2c8", + "tarball": "http://registry.npmjs.org/couchdb-api/-/couchdb-api-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "5982f0cfffb4668423c32705010162fb342da1d0", + "tarball": "http://registry.npmjs.org/couchdb-api/-/couchdb-api-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "0989bc853b7b32f33884711d5a8ad9b949b86283", + "tarball": "http://registry.npmjs.org/couchdb-api/-/couchdb-api-0.2.0.tgz" + }, + "0.2.5": { + "shasum": "8ecc46120d50b0450842e812b298eb955f2c5623", + "tarball": "http://registry.npmjs.org/couchdb-api/-/couchdb-api-0.2.5.tgz" + }, + "0.3.0": { + "shasum": "904d5056bf15e60ee07a6e22fb434d3f1d4392b8", + "tarball": "http://registry.npmjs.org/couchdb-api/-/couchdb-api-0.3.0.tgz" + }, + "0.3.5": { + "shasum": "4c32b46ffe279811949cd981c27743de97dfdd27", + "tarball": "http://registry.npmjs.org/couchdb-api/-/couchdb-api-0.3.5.tgz" + }, + "0.4.0": { + "shasum": "dedf7273467ce5e75d3c629b646f3296d0551182", + "tarball": "http://registry.npmjs.org/couchdb-api/-/couchdb-api-0.4.0.tgz" + }, + "0.5.0": { + "shasum": "ac69f88835af2757907d6d8176463dd9180ed4f7", + "tarball": "http://registry.npmjs.org/couchdb-api/-/couchdb-api-0.5.0.tgz" + }, + "0.6.0": { + "shasum": "9595794e690724a4106eae6ecf736f96e2ac7e5b", + "tarball": "http://registry.npmjs.org/couchdb-api/-/couchdb-api-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "e3deb9936356ef78067097a8cf530d7585d810ee", + "tarball": "http://registry.npmjs.org/couchdb-api/-/couchdb-api-0.6.1.tgz" + }, + "0.7.0": { + "shasum": "499a5e7f7b53d5604460c5ba67f78494b01cdec5", + "tarball": "http://registry.npmjs.org/couchdb-api/-/couchdb-api-0.7.0.tgz" + }, + "0.8.0": { + "shasum": "a35d82afbdfa150ea81bbf473588f8f22591f785", + "tarball": "http://registry.npmjs.org/couchdb-api/-/couchdb-api-0.8.0.tgz" + }, + "0.8.1": { + "shasum": "4bbd6926c549942261472797ca123d9c25cb5443", + "tarball": "http://registry.npmjs.org/couchdb-api/-/couchdb-api-0.8.1.tgz" + }, + "0.9.0": { + "shasum": "f021920712206901d96ce605b9f9e6b063cb9986", + "tarball": "http://registry.npmjs.org/couchdb-api/-/couchdb-api-0.9.0.tgz" + }, + "0.9.1": { + "shasum": "2474bf067ff560fc2ada93fcee258eb68c3218f3", + "tarball": "http://registry.npmjs.org/couchdb-api/-/couchdb-api-0.9.1.tgz" + }, + "0.9.5": { + "shasum": "b67e12cb2a90666b2076ffa44c54452bc205dcba", + "tarball": "http://registry.npmjs.org/couchdb-api/-/couchdb-api-0.9.5.tgz" + }, + "0.9.6": { + "shasum": "a45b8fe987a2ad494d5aba718a40ad037f55670c", + "tarball": "http://registry.npmjs.org/couchdb-api/-/couchdb-api-0.9.6.tgz" + }, + "0.10.0": { + "shasum": "0493074fb5cb6ae3f79a1640dd0edb2d2a7486c6", + "tarball": "http://registry.npmjs.org/couchdb-api/-/couchdb-api-0.10.0.tgz" + }, + "0.11.0": { + "shasum": "85bf03d385040ae7d9e21f64b3a79069ed286ccd", + "tarball": "http://registry.npmjs.org/couchdb-api/-/couchdb-api-0.11.0.tgz" + }, + "0.12.0": { + "shasum": "0e0690d208d9ea2bfcd8155984f51717c4990198", + "tarball": "http://registry.npmjs.org/couchdb-api/-/couchdb-api-0.12.0.tgz" + } + }, + "keywords": [ + "couchdb", + "async", + "nosql", + "api", + "http", + "couch", + "rest" + ], + "url": "http://registry.npmjs.org/couchdb-api/" + }, + "couchdb-tmp": { + "name": "couchdb-tmp", + "description": "A CouchDB module following node.js idioms", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "podviaznikov", + "email": "podviaznikov@gmail.com" + } + ], + "time": { + "modified": "2011-02-14T16:48:06.563Z", + "created": "2011-02-14T16:48:05.870Z", + "1.0.1": "2011-02-14T16:48:06.563Z" + }, + "author": { + "name": "Felix Geisendörfer", + "email": "felix@debuggable.com" + }, + "versions": { + "1.0.1": "http://registry.npmjs.org/couchdb-tmp/1.0.1" + }, + "dist": { + "1.0.1": { + "shasum": "99adc15af1fe83bff9bc0af9ae13cb0ad9c1b988", + "tarball": "http://registry.npmjs.org/couchdb-tmp/-/couchdb-tmp-1.0.1.tgz" + } + }, + "keywords": [ + "couch", + "couchdb" + ], + "url": "http://registry.npmjs.org/couchdb-tmp/" + }, + "couchdev": { + "name": "couchdev", + "description": "A utility and lean framework for creating and developing CouchDB based applications.", + "dist-tags": { + "latest": "1.0.0beta" + }, + "maintainers": [ + { + "name": "drtom", + "email": "DrTom@schank.ch" + } + ], + "time": { + "modified": "2011-05-22T14:53:37.362Z", + "created": "2011-05-22T14:53:35.566Z", + "1.0.0beta": "2011-05-22T14:53:37.362Z" + }, + "author": { + "name": "Thomas Schank", + "email": "DrTom@schank.ch", + "url": "http://Dr.Th.Schank.ch/" + }, + "versions": { + "1.0.0beta": "http://registry.npmjs.org/couchdev/1.0.0beta" + }, + "dist": { + "1.0.0beta": { + "shasum": "90f09d3a3315e857a47ad510a64f6eab079a8e3f", + "tarball": "http://registry.npmjs.org/couchdev/-/couchdev-1.0.0beta.tgz" + } + }, + "url": "http://registry.npmjs.org/couchdev/" + }, + "couchlegs": { + "name": "couchlegs", + "description": "setup multiple couch databases", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-06-01T18:09:30.528Z", + "created": "2011-03-14T12:32:52.217Z", + "0.0.0": "2011-03-14T12:32:53.237Z", + "0.0.1": "2011-06-01T18:09:30.528Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com", + "url": "http://dominictarr" + }, + "repository": { + "type": "git", + "url": "git://github.com/dominictarr/couchlegs.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/couchlegs/0.0.0", + "0.0.1": "http://registry.npmjs.org/couchlegs/0.0.1" + }, + "dist": { + "0.0.0": { + "shasum": "2bfd9610c98832fb401549d7210ecb42b13d5a91", + "tarball": "http://registry.npmjs.org/couchlegs/-/couchlegs-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "182f5d6b747246bfa0f6fb8c19975af82bf5d4b4", + "tarball": "http://registry.npmjs.org/couchlegs/-/couchlegs-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/couchlegs/" + }, + "couchnomnom": { + "name": "couchnomnom", + "description": "Replicate all your couchdb databases from A to B", + "dist-tags": { + "latest": "0.0.2" + }, + "readme": "# couchnomnom\n\nreplicate all your couchdb databases from one star to another.\n\n```\n .\n *\n . . .\n . ,\"`.\n . _____ `..'\n _,odO8O8888bo._ .\n ,odOoOoOoOOOO8O888bo. *\n * ,dOoOoOoOoOoOO8O8O88@8@b. .\n ,d8o:o:o:o:o:ooOoOOOO8O88@8b.\n do:o:o:o:o:o:ooooOoOO8O88@8@@@b\n. do::.:.:.:.:.::o:ooooOOOO8888@@@b .\n .o::::.:.:.:.::::o:ooOoOO8O88@@@@@. .\n . |::.:.. . . ..:.::o:ooOoOO8O88@8@@|\n |o::.:.. . ..:.::o:ooOoOO8O88@8@@@|\n |::.:.. . . ..:.::o:ooOoOO8O88@8@@|\n 'o::::.:.:.:.::::o:ooOoOO8O88@@@@@' . *\n Y8::.:.:.:.:.::o:ooooOOOO8888@@@P\n `Y8:o:o:o:o:o:ooooOoOO8O88@8@@@P'\n `Y:o:o:o:o:o:ooOoOOOO8O88@8@P . .\n . . `YOoOoOoOoOoOO8O8O88@8@@P'\n `YoOoOoOoOOOO8O8888@P' .\n `\"*YO8O8888@P*\"'\n . * . .\n\n . .\n * . .\n```\n\n## installation\n\ninstall [npm][1]:\n\n``` sh\ncurl http://npmjs.org/install.sh | sh\n```\n\ninstall `couchnomnom`\n\n``` sh\n[sudo] npm install -g couchnomnom\n```\n\n## usage\n\n``` sh\ncouchnomnom user:pass@master-hostname user:pass@copy-hostname\n```\n\nthat's about it. enjoy.\n\n## roadmap\n\ncheck [issues][2]\n\n## contribute\n\neveryone is welcome to contribute. patches, bugfixes, new features\n\n1. create an [issue][2] on github so the community can comment on your idea\n2. fork `couchnomnom` in github\n3. create a new branch `git checkout -b my_branch`\n4. create tests for the changes you made\n5. make sure you pass both existing and newly inserted tests\n6. commit your changes\n7. push to your branch `git push origin my_branch`\n8. create an pull request\n\n## this is major tom to ground control\n\n```\n _,'/\n _.-''._:\n ,-:`-.-' .:.|\n ;-.'' .::.|\n _..------.._ / (:. .:::.|\n ,'. .. . . .`/ : :. .::::.|\n ,'. . . . ./ \\ ::. .::::::.|\n ,'. . . . . / `.,,::::::::.;\\\n / . . / ,',';_::::::,:_:\n / . . . . / ,',','::`--'':;._;\n: . . / ,',',':::::::_:'_,'\n|.. . . . / ,',','::::::_:'_,'\n|. /,-. /,',':::::_:'_,'\n| .. . . /) /-:/,'::::_:',-'\n: . . . // / ,'):::_:',' ;\n \\ . . // /,' /,-.',' ./\n \\ . . `::./,// ,'' ,' . /\n `. . . `;;;,/_.'' . . ,'\n ,`. . :;;' `:. . ,'\n / `-._,' .. ` _.-'\n ( _,'``------''\n```\n\n* warning: rocket-ship not included.\n* code: `git clone git://github.com/dscape/couchnomnom.git`\n* home: \n* bugs: \n\n`(oO)--',-` in [caos][3]\n\nascii art from [surfhome.de][4]\n\n[1]: http://npmjs.org\n[2]: http://github.com/dscape/couchnomnom/issues\n[3]: http://caos.di.uminho.pt/\n[4]: http://ascii-art.surfhome.de\n", + "maintainers": [ + { + "name": "dscape", + "email": "nunojobpinto@gmail.com" + } + ], + "time": { + "modified": "2011-11-18T18:43:32.679Z", + "created": "2011-11-18T03:01:16.819Z", + "0.0.1": "2011-11-18T03:01:18.760Z", + "0.0.2": "2011-11-18T18:43:32.679Z" + }, + "author": { + "name": "Nuno Job", + "email": "nunojobpinto@gmail.com", + "url": "http://nunojob.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dscape/couchnomnom.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/couchnomnom/0.0.1", + "0.0.2": "http://registry.npmjs.org/couchnomnom/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "3b526a0848638f17af8f9ba37db05cba852ea71f", + "tarball": "http://registry.npmjs.org/couchnomnom/-/couchnomnom-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "69517b219e39d4b497f3adb01a50e47de8188811", + "tarball": "http://registry.npmjs.org/couchnomnom/-/couchnomnom-0.0.2.tgz" + } + }, + "keywords": [ + "couchdb", + "tool", + "replicate", + "replication", + "json", + "bootstrap" + ], + "url": "http://registry.npmjs.org/couchnomnom/" + }, + "couchstream": { + "name": "couchstream", + "description": "Streams changes from a CouchDB and emits events.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "kkaefer", + "email": "kkaefer@gmail.com" + }, + { + "name": "yhahn", + "email": "young@developmentseed.org" + }, + { + "name": "tmcw", + "email": "macwright@gmail.com" + }, + { + "name": "willwhite", + "email": "will@developmentseed.org" + }, + { + "name": "springmeyer", + "email": "dane@dbsgeo.com" + }, + { + "name": "adrianrossouw", + "email": "adrian@developmentseed.org" + }, + { + "name": "ianshward", + "email": "ian@developmentseed.org" + } + ], + "time": { + "modified": "2011-09-27T13:21:40.835Z", + "created": "2011-09-27T13:20:33.540Z", + "0.0.1": "2011-09-27T13:20:35.201Z" + }, + "author": { + "name": "Development Seed", + "email": "info@developmentseed.org", + "url": "http://developmentseed.org/" + }, + "repository": { + "type": "git", + "url": "git://github.com/developmentseed/couchstream.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/couchstream/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "9a84b9c4ee926ecf0de3aa418b8c7cfec03d14e2", + "tarball": "http://registry.npmjs.org/couchstream/-/couchstream-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/couchstream/" + }, + "couchtato": { + "name": "couchtato", + "description": "CouchDB document utility tool.", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "cliffano", + "email": "cliffano@gmail.com" + } + ], + "time": { + "modified": "2011-09-20T13:29:27.998Z", + "created": "2011-06-07T13:06:43.787Z", + "0.0.1": "2011-06-07T13:06:45.978Z", + "0.0.2": "2011-06-18T01:08:30.762Z", + "0.0.3": "2011-08-14T13:17:14.077Z", + "0.0.4": "2011-08-22T13:16:38.245Z", + "0.0.5": "2011-09-20T13:29:27.998Z" + }, + "author": { + "name": "Cliffano Subagio", + "email": "blah@cliffano.com", + "url": "http://blog.cliffano.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/cliffano/couchtato.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/couchtato/0.0.1", + "0.0.2": "http://registry.npmjs.org/couchtato/0.0.2", + "0.0.3": "http://registry.npmjs.org/couchtato/0.0.3", + "0.0.4": "http://registry.npmjs.org/couchtato/0.0.4", + "0.0.5": "http://registry.npmjs.org/couchtato/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "529e3b9a2830472ede79c8b98e924aa1197ab97a", + "tarball": "http://registry.npmjs.org/couchtato/-/couchtato-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "748e66a7c95ea64e6042b8f2a17ddca180adc8a0", + "tarball": "http://registry.npmjs.org/couchtato/-/couchtato-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "e8dbe05027d221ba5da09a64aba44c651ab6f055", + "tarball": "http://registry.npmjs.org/couchtato/-/couchtato-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "46e9583bc75f4eaa506fa763b60ff254ad5bd343", + "tarball": "http://registry.npmjs.org/couchtato/-/couchtato-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "d80ad4dea5a10ff488d6fa622da6b830decadbfb", + "tarball": "http://registry.npmjs.org/couchtato/-/couchtato-0.0.5.tgz" + } + }, + "keywords": [ + "couchdb", + "database", + "document", + "command line", + "utility" + ], + "url": "http://registry.npmjs.org/couchtato/" + }, + "couchy": { + "name": "couchy", + "description": "CouchDB wrapper for CoffeeScript", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "rocky", + "email": "rockymeza@gmail.com" + } + ], + "time": { + "modified": "2011-05-27T05:15:59.548Z", + "created": "2011-04-22T15:26:24.494Z", + "0.0.1": "2011-04-22T15:26:24.862Z", + "0.1.0": "2011-05-04T04:28:44.111Z", + "1.0.0-beta": "2011-05-15T03:09:18.281Z", + "0.2.0": "2011-05-27T04:05:40.311Z", + "0.2.1": "2011-05-27T05:15:59.548Z" + }, + "author": { + "name": "Rocky Meza", + "email": "rockymeza@gmail.com", + "url": "http://rockymeza.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/rockymeza/couchy.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/couchy/0.0.1", + "0.1.0": "http://registry.npmjs.org/couchy/0.1.0", + "0.2.0": "http://registry.npmjs.org/couchy/0.2.0", + "0.2.1": "http://registry.npmjs.org/couchy/0.2.1" + }, + "dist": { + "0.0.1": { + "shasum": "c2609712ade6401c4325e273a597a44af0a60d09", + "tarball": "http://registry.npmjs.org/couchy/-/couchy-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "8f02791238e74e7aa0b7f53368839da25d07322d", + "tarball": "http://registry.npmjs.org/couchy/-/couchy-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "171f8d33f13993931b11b4210ebb28a94f6eb742", + "tarball": "http://registry.npmjs.org/couchy/-/couchy-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "2960d6f3978212e1df8e3c9a83a1901a4a4114ee", + "tarball": "http://registry.npmjs.org/couchy/-/couchy-0.2.1.tgz" + } + }, + "keywords": [ + "couchdb" + ], + "url": "http://registry.npmjs.org/couchy/" + }, + "countdown": { + "name": "countdown", + "description": "A simple JavaScript API for producing an accurate, intuitive description of the timespan between two Date instances.", + "dist-tags": { + "latest": "2.2.0" + }, + "maintainers": [ + { + "name": "mckamey", + "email": "stephen@mckamey.com" + } + ], + "time": { + "modified": "2011-10-01T14:18:29.665Z", + "created": "2011-10-01T00:51:45.345Z", + "2.1.3": "2011-10-01T00:51:46.525Z", + "2.3.0": "2011-10-01T13:46:35.437Z", + "2.2.0": "2011-10-01T13:50:25.545Z" + }, + "author": { + "name": "Stephen McKamey", + "email": "stephen@mckamey.com" + }, + "repository": { + "type": "hg", + "url": "https://bitbucket.org/mckamey/countdown.js" + }, + "versions": { + "2.1.3": "http://registry.npmjs.org/countdown/2.1.3", + "2.2.0": "http://registry.npmjs.org/countdown/2.2.0" + }, + "dist": { + "2.1.3": { + "shasum": "4c8597562d5e1c13fc5a78c4d7c1405132b0ed7d", + "tarball": "http://registry.npmjs.org/countdown/-/countdown-2.1.3.tgz" + }, + "2.2.0": { + "shasum": "98348d4525aedad7943c3f1b0c90ffc9da79e7ce", + "tarball": "http://registry.npmjs.org/countdown/-/countdown-2.2.0.tgz" + } + }, + "keywords": [ + "countdown", + "countdownjs", + "countdown.js", + "timespan", + "date", + "time", + "clock" + ], + "url": "http://registry.npmjs.org/countdown/" + }, + "country": { + "name": "country", + "description": "Minor utility library allowing us to get ISO code for country.", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "podviaznikov", + "email": "podviaznikov@gmail.com" + } + ], + "time": { + "modified": "2011-09-26T11:25:46.114Z", + "created": "2011-09-26T11:25:43.851Z", + "0.2.0": "2011-09-26T11:25:46.114Z" + }, + "author": { + "name": "Anton Podviaznikov", + "email": "anton.podviaznikov@enginimation.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/podviaznikov/country.js.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/country/0.2.0" + }, + "dist": { + "0.2.0": { + "shasum": "cc8a02c31c2c9f97ad5eb4bf10a0dac0882e885e", + "tarball": "http://registry.npmjs.org/country/-/country-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/country/" + }, + "coupon-code": { + "name": "coupon-code", + "description": "An implementation of Perl's Algorithm::CouponCode for NodeJS.", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "An implementation of Perl's [Algorithm::CouponCode][couponcode] for NodeJS. Thanks to [Grant][grant] for the\ninspiration. :)\n\n# Usage\n\n var cc = require('coupon-code');\n\n // generate a 3 part code\n cc.generate();\n => '55G2-DHM0-50NN'\n\n // generate a 4 part code\n cc.generate({ parts : 4 });\n => 'U5H9-HKDH-8RNX-1EX7'\n\n // same code, just lowercased\n cc.validate('55g2-dhm0-50nn');\n => '55G2-DHM0-50NN'\n\n // various letters instead of numbers\n cc.validate('SSGZ-DHMO-SONN');\n => '55G2-DHM0-50NN'\n\n // wrong last character\n cc.validate('55G2-DHM0-50NK');\n => ''\n\n // not enough chars in the 2nd part\n cc.validate('55G2-DHM-50NN');\n => ''\n\n# Example\n\nLet's say you want a user to verify they got something, whether that is an email, letter, fax or carrier pigeon. To\nprove they received it, they have to type the code you sent them into a certain page on your website. You create a code\nwhich they have to type in:\n\n var cc = require('coupon-code');\n\n var verificationCode = cc.generate();\n => 55G2-DHM0-50NN\n\nTime passes, letters get wet, carrier pigeons go on adventures and faxes are just as bad as they ever were. Now the\nuser has to type their code into your website. The problem is, they can hardly read what the code was. Luckily we're\nsomewhat forgiving since Z's and 2's are considered the same, O's and 0's, I's and 1's and S's and 5's are also mapped\nto each other. But even more than that, the 4th character of each group is a checkdigit which can determine if the\nother three in that group are correct. The user types this:\n\n [s5g2-dhmo-50nn]\n\nBecause our codes are case insensitive and have good conversions for similar chars, the code is accepted as correct.\n\nAlso, since we have a checkdigit, we can use a client-side plugin to highlight to the user any mistake in their code\nbefore they submit it. Please see the original project ([Algorithm::CouponCode][couponcode]) for more details of client\nside validation.\n\n# Installation\n\nThe easiest way to get it is via [npm][npm]:\n\n``` bash\n $ npm install coupon-code\n```\n\n# Tests\n\nTo run the tests, use npm:\n\n $ npm test\n\n# Author\n\nWritten by [Andrew Chilton](http://www.chilts.org/blog/)\n\nCopyright 2011 [AppsAttic](http://www.appsattic.com/)\n\n# Inspired By\n\n[Grant McLean](grant)'s [Algorithm::CouponCode][couponcode] - with thanks. :)\n\n# License\n\nMIT.\n\nSee [LICENSE][license] for more details.\n\n[npm]: http://npmjs.org/\n[couponcode]: https://github.com/grantm/Algorithm-CouponCode\n[grant]: http://www.mclean.net.nz/\n[license]: https://raw.github.com/appsattic/node-coupon-code/master/LICENSE\n", + "maintainers": [ + { + "name": "chilts", + "email": "chilts@appsattic.com" + } + ], + "time": { + "modified": "2011-11-22T08:34:07.924Z", + "created": "2011-11-22T08:34:03.610Z", + "0.1.0": "2011-11-22T08:34:07.924Z" + }, + "author": { + "name": "Andrew Chilton", + "email": "chilts@appsattic.com", + "url": "http://www.chilts.org/" + }, + "repository": { + "type": "git", + "url": "git://github.com/appsattic/node-coupon-code.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/coupon-code/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "2ba153caef53c16202106eb6d7e587b6f6b45840", + "tarball": "http://registry.npmjs.org/coupon-code/-/coupon-code-0.1.0.tgz" + } + }, + "keywords": [ + "code", + "token", + "validation token", + "verification token", + "coupon code" + ], + "url": "http://registry.npmjs.org/coupon-code/" + }, + "courier": { + "name": "courier", + "description": "package.coffee -> package.json (dynamic npm packages in CoffeeScript)", + "dist-tags": { + "latest": "0.9.0" + }, + "maintainers": [ + { + "name": "pyrotechnick", + "email": "pyrotechnick@feistystudios.com" + } + ], + "time": { + "modified": "2011-06-23T02:51:47.807Z", + "created": "2011-03-11T07:30:01.287Z", + "0.5.0": "2011-03-11T07:30:02.204Z", + "0.5.1": "2011-03-23T01:06:24.524Z", + "0.6.0": "2011-05-16T04:48:03.125Z", + "0.9.0": "2011-06-23T02:51:47.807Z" + }, + "author": { + "name": "feisty", + "email": "courier@feisty.co", + "url": "http://feisty.co" + }, + "repository": { + "type": "git", + "url": "git://github.com/feisty/courier.git", + "private": "git@github.com:feisty/courier.git", + "web": "http://github.com/feisty/courier" + }, + "versions": { + "0.5.0": "http://registry.npmjs.org/courier/0.5.0", + "0.5.1": "http://registry.npmjs.org/courier/0.5.1", + "0.6.0": "http://registry.npmjs.org/courier/0.6.0", + "0.9.0": "http://registry.npmjs.org/courier/0.9.0" + }, + "dist": { + "0.5.0": { + "shasum": "c2232b48c97065fa61fac637c5e48cbe361464f7", + "tarball": "http://registry.npmjs.org/courier/-/courier-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "88cf1d3557fee99745ec254131c901b228b68064", + "tarball": "http://registry.npmjs.org/courier/-/courier-0.5.1.tgz" + }, + "0.6.0": { + "shasum": "72d8f3cf1d5543af7269852930d4dcd5a75c4732", + "tarball": "http://registry.npmjs.org/courier/-/courier-0.6.0.tgz" + }, + "0.9.0": { + "shasum": "ccc42eb93cf330df214f9cfe416268ee11aae1e3", + "tarball": "http://registry.npmjs.org/courier/-/courier-0.9.0.tgz" + } + }, + "keywords": [ + "courier" + ], + "url": "http://registry.npmjs.org/courier/" + }, + "coverage": { + "name": "coverage", + "description": "Test coverage analyzer for Node.js binary addons", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "Sannis", + "email": "efimovov@gmail.com" + } + ], + "time": { + "modified": "2011-02-24T23:32:43.652Z", + "created": "2011-02-24T23:32:31.774Z", + "0.0.0": "2011-02-24T23:32:31.774Z" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/coverage/0.0.0" + }, + "dist": { + "0.0.0": { + "tarball": "http://packages:5984/coverage/-/coverage-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/coverage/" + }, + "coverage_testing": { + "name": "coverage_testing", + "description": "A simple Node testing library. Forked from async_testing 0.4. Source can be found at https://github.com/osm-spline/node-async-testing", + "dist-tags": { + "latest": "0.5.0" + }, + "maintainers": [ + { + "name": "mren", + "email": "mark.c.engel@gmail.com" + } + ], + "time": { + "modified": "2011-07-07T09:40:51.847Z", + "created": "2011-07-07T09:40:51.133Z", + "0.5.0": "2011-07-07T09:40:51.847Z" + }, + "author": { + "name": "Benjamin Thomas" + }, + "repository": { + "type": "git", + "url": "git://github.com/bentomas/node-async-testing.git" + }, + "versions": { + "0.5.0": "http://registry.npmjs.org/coverage_testing/0.5.0" + }, + "dist": { + "0.5.0": { + "shasum": "2840058dbe6e5bbf0bfcb52ccf5b2b282bca7fe6", + "tarball": "http://registry.npmjs.org/coverage_testing/-/coverage_testing-0.5.0.tgz" + } + }, + "url": "http://registry.npmjs.org/coverage_testing/" + }, + "cpanel-lib": { + "name": "cpanel-lib", + "description": "Node.js library for the cPanel/WHM API", + "dist-tags": { + "latest": "0.0.2" + }, + "readme": "Node.js library for the cPanel/WHM API\n=====\n\n## Instalation\n $ npm install cpanel-lib\n\n## Usage\n var cpanel = require('cpanel-lib');\n \n var options = {\n host: 'whm.example.com',\n port: 2087,\n secure: true,\n username: 'WHM_USERNAME',\n accessKey: 'YOUR_ACCESS_KEY'\n };\n\n var cpanelClient = cpanel.createClient(options);\n\n cpanelClient.call('version', {}, function (result) {\n console.log('WHM Version: %j', result.version);\n });\n\n cpanelClient.call('listaccts', {}, function (result) {\n console.log('Result: %j', result);\n });\n", + "maintainers": [ + { + "name": "vially", + "email": "vially.ichb@gmail.com" + } + ], + "time": { + "modified": "2011-11-14T13:31:26.489Z", + "created": "2011-11-11T11:57:41.427Z", + "0.0.1": "2011-11-11T11:57:43.201Z", + "0.0.2": "2011-11-14T13:31:26.489Z" + }, + "author": { + "name": "Valentin-Costel Hăloiu", + "email": "vially.ichb@gmail.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:vially/cpanel-lib.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/cpanel-lib/0.0.1", + "0.0.2": "http://registry.npmjs.org/cpanel-lib/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "7c87d66266f4b6db70875a844cab0fe016564014", + "tarball": "http://registry.npmjs.org/cpanel-lib/-/cpanel-lib-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "4520e34f8d078517c3fa0c64ea7379c8435a4a78", + "tarball": "http://registry.npmjs.org/cpanel-lib/-/cpanel-lib-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/cpanel-lib/" + }, + "cqs": { + "name": "cqs", + "description": "CouchDB Queue Service: an Amazon SQS implementation on CouchDB", + "dist-tags": { + "latest": "0.6.0" + }, + "maintainers": [ + { + "name": "jhs", + "email": "jhs@couchone.com" + }, + { + "name": "jhs", + "email": "jhs@iriscouch.com" + } + ], + "time": { + "modified": "2011-11-29T04:48:21.324Z", + "created": "2011-06-13T13:11:35.338Z", + "0.1.0": "2011-06-13T13:11:37.651Z", + "0.2.0": "2011-06-13T13:13:59.705Z", + "0.3.0": "2011-06-13T13:15:10.158Z", + "0.3.1": "2011-10-13T15:45:47.733Z", + "0.3.2": "2011-10-13T15:50:48.889Z", + "0.4.0": "2011-10-29T10:55:46.299Z", + "0.5.0": "2011-11-05T12:54:58.379Z", + "0.5.1": "2011-11-22T02:33:38.318Z", + "0.5.2": "2011-11-22T02:57:54.453Z", + "0.5.3": "2011-11-28T13:09:19.024Z", + "0.5.4": "2011-11-29T02:21:05.398Z", + "0.6.0": "2011-11-29T04:48:21.324Z" + }, + "author": { + "name": "Jason Smith", + "email": "jhs@iriscouch.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/iriscouch/cqs.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/cqs/0.1.0", + "0.2.0": "http://registry.npmjs.org/cqs/0.2.0", + "0.3.0": "http://registry.npmjs.org/cqs/0.3.0", + "0.3.1": "http://registry.npmjs.org/cqs/0.3.1", + "0.3.2": "http://registry.npmjs.org/cqs/0.3.2", + "0.4.0": "http://registry.npmjs.org/cqs/0.4.0", + "0.5.0": "http://registry.npmjs.org/cqs/0.5.0", + "0.5.1": "http://registry.npmjs.org/cqs/0.5.1", + "0.5.2": "http://registry.npmjs.org/cqs/0.5.2", + "0.5.3": "http://registry.npmjs.org/cqs/0.5.3", + "0.5.4": "http://registry.npmjs.org/cqs/0.5.4", + "0.6.0": "http://registry.npmjs.org/cqs/0.6.0" + }, + "dist": { + "0.1.0": { + "shasum": "4b600826f3c47db4ca346a8e698e790308e5e63e", + "tarball": "http://registry.npmjs.org/cqs/-/cqs-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "9807445fe0cd822d8bbb0ba693ff691184b8008c", + "tarball": "http://registry.npmjs.org/cqs/-/cqs-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "29de1dfd9a7b436dac9af9bdf5512cab695adc1f", + "tarball": "http://registry.npmjs.org/cqs/-/cqs-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "2978b7e04fb9cbe924d56ceebd1e1fb29425bffe", + "tarball": "http://registry.npmjs.org/cqs/-/cqs-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "731f53c102782b07708cdb437c42f3fc1154c24b", + "tarball": "http://registry.npmjs.org/cqs/-/cqs-0.3.2.tgz" + }, + "0.4.0": { + "shasum": "73c933b8a55ac4227e21f166af7b10186ec0a042", + "tarball": "http://registry.npmjs.org/cqs/-/cqs-0.4.0.tgz" + }, + "0.5.0": { + "shasum": "2f79deb5439d5257b94f4a39c6171567188550b6", + "tarball": "http://registry.npmjs.org/cqs/-/cqs-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "28fa6943f58121abd4615f0bdfcd6ea62ac253f6", + "tarball": "http://registry.npmjs.org/cqs/-/cqs-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "23544ff51380ddea351ff9f64ba4e3338384f077", + "tarball": "http://registry.npmjs.org/cqs/-/cqs-0.5.2.tgz" + }, + "0.5.3": { + "shasum": "966dc89e8093bd708a72c7e6a2fce256dfe3bae7", + "tarball": "http://registry.npmjs.org/cqs/-/cqs-0.5.3.tgz" + }, + "0.5.4": { + "shasum": "05d6d89c74d773fc69dc076975f49d86c318ca6c", + "tarball": "http://registry.npmjs.org/cqs/-/cqs-0.5.4.tgz" + }, + "0.6.0": { + "shasum": "3a60ad7d07234a312b9240d6afde427cd1206a09", + "tarball": "http://registry.npmjs.org/cqs/-/cqs-0.6.0.tgz" + } + }, + "url": "http://registry.npmjs.org/cqs/" + }, + "crab": { + "name": "crab", + "description": "Hacking Appcelerator Titanium applications with CoffeeScript, Haml, Jade, Scss, Sass and Less.", + "dist-tags": { + "latest": "0.5.2" + }, + "maintainers": [ + { + "name": "kossnocorp", + "email": "kossnocorp@gmail.com" + } + ], + "time": { + "modified": "2011-01-05T09:36:56.312Z", + "created": "2011-01-03T18:57:15.652Z", + "0.1.0": "2011-01-03T18:57:16.907Z", + "0.5.0": "2011-01-04T10:34:53.930Z", + "0.5.1": "2011-01-05T09:15:15.494Z", + "0.5.2": "2011-01-05T09:36:56.312Z" + }, + "author": { + "name": "Sasha Koss", + "email": "kossnocorp@gmail.com", + "url": "http://koss.nocorp.me/" + }, + "repository": { + "type": "git", + "url": "https://kossnocorp@github.com/kossnocorp/crab.js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/crab/0.1.0", + "0.5.0": "http://registry.npmjs.org/crab/0.5.0", + "0.5.1": "http://registry.npmjs.org/crab/0.5.1", + "0.5.2": "http://registry.npmjs.org/crab/0.5.2" + }, + "dist": { + "0.1.0": { + "shasum": "b65e65461923a422293bbaa4c4dfea2ac14b64b4", + "tarball": "http://registry.npmjs.org/crab/-/crab-0.1.0.tgz" + }, + "0.5.0": { + "shasum": "7d3ccac3f53da67e35ff99330374c8192af17db2", + "tarball": "http://registry.npmjs.org/crab/-/crab-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "6a26530e251471f174a1c9e8b1527e0015baaab3", + "tarball": "http://registry.npmjs.org/crab/-/crab-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "37c6a5b4b04b760a4254d98d518d6aaf79d28eb2", + "tarball": "http://registry.npmjs.org/crab/-/crab-0.5.2.tgz" + } + }, + "keywords": [ + "titanium", + "coffee", + "haml", + "jade", + "scss", + "sass", + "less" + ], + "url": "http://registry.npmjs.org/crab/" + }, + "cradle": { + "name": "cradle", + "description": "the high-level, caching, CouchDB library", + "dist-tags": { + "latest": "0.5.7", + "stable": "0.2.5", + "unstable": "0.5.0" + }, + "maintainers": [ + { + "name": "cloudhead", + "email": "self@cloudhead.net" + }, + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + } + ], + "author": { + "name": "Alexis Sellier", + "email": "self@cloudhead.net" + }, + "time": { + "modified": "2011-11-15T20:06:05.178Z", + "created": "2011-01-22T20:23:52.695Z", + "0.1.0": "2011-01-22T20:23:52.695Z", + "0.1.2": "2011-01-22T20:23:52.695Z", + "0.1.3": "2011-01-22T20:23:52.695Z", + "0.1.4": "2011-01-22T20:23:52.695Z", + "0.1.5": "2011-01-22T20:23:52.695Z", + "0.2.0": "2011-01-22T20:23:52.695Z", + "0.2.0-pre": "2011-01-22T20:23:52.695Z", + "0.2.0-pre2": "2011-01-22T20:23:52.695Z", + "0.2.1": "2011-01-22T20:23:52.695Z", + "0.2.2": "2011-01-22T20:23:52.695Z", + "0.2.3": "2011-01-22T20:23:52.695Z", + "0.2.4": "2011-01-22T20:23:52.695Z", + "0.2.5": "2011-01-22T20:23:52.695Z", + "0.3.0": "2011-01-22T20:23:52.695Z", + "0.3.1": "2011-01-22T20:23:52.695Z", + "0.4.0": "2011-01-22T20:23:52.695Z", + "0.4.1": "2011-01-27T01:29:00.938Z", + "0.5.0": "2011-01-30T22:52:09.485Z", + "0.5.1": "2011-02-03T19:47:24.633Z", + "0.5.2": "2011-02-04T00:09:40.169Z", + "0.5.3": "2011-03-03T04:37:58.022Z", + "0.5.4": "2011-03-06T23:00:51.825Z", + "0.5.5": "2011-03-08T01:03:39.365Z", + "0.5.6": "2011-09-12T18:18:15.661Z", + "0.5.7": "2011-09-15T04:51:54.773Z" + }, + "users": {}, + "versions": { + "0.1.0": "http://registry.npmjs.org/cradle/0.1.0", + "0.1.2": "http://registry.npmjs.org/cradle/0.1.2", + "0.1.3": "http://registry.npmjs.org/cradle/0.1.3", + "0.1.4": "http://registry.npmjs.org/cradle/0.1.4", + "0.1.5": "http://registry.npmjs.org/cradle/0.1.5", + "0.2.0": "http://registry.npmjs.org/cradle/0.2.0", + "0.2.0-pre": "http://registry.npmjs.org/cradle/0.2.0-pre", + "0.2.0-pre2": "http://registry.npmjs.org/cradle/0.2.0-pre2", + "0.2.1": "http://registry.npmjs.org/cradle/0.2.1", + "0.2.2": "http://registry.npmjs.org/cradle/0.2.2", + "0.2.3": "http://registry.npmjs.org/cradle/0.2.3", + "0.2.4": "http://registry.npmjs.org/cradle/0.2.4", + "0.2.5": "http://registry.npmjs.org/cradle/0.2.5", + "0.3.0": "http://registry.npmjs.org/cradle/0.3.0", + "0.3.1": "http://registry.npmjs.org/cradle/0.3.1", + "0.4.0": "http://registry.npmjs.org/cradle/0.4.0", + "0.4.1": "http://registry.npmjs.org/cradle/0.4.1", + "0.5.0": "http://registry.npmjs.org/cradle/0.5.0", + "0.5.1": "http://registry.npmjs.org/cradle/0.5.1", + "0.5.2": "http://registry.npmjs.org/cradle/0.5.2", + "0.5.3": "http://registry.npmjs.org/cradle/0.5.3", + "0.5.4": "http://registry.npmjs.org/cradle/0.5.4", + "0.5.5": "http://registry.npmjs.org/cradle/0.5.5", + "0.5.7": "http://registry.npmjs.org/cradle/0.5.7" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/cradle/-/cradle-0.1.0.tgz" + }, + "0.1.2": { + "tarball": "http://registry.npmjs.org/cradle/-/cradle-0.1.2.tgz" + }, + "0.1.3": { + "tarball": "http://registry.npmjs.org/cradle/-/cradle-0.1.3.tgz" + }, + "0.1.4": { + "tarball": "http://registry.npmjs.org/cradle/-/cradle-0.1.4.tgz" + }, + "0.1.5": { + "tarball": "http://registry.npmjs.org/cradle/-/cradle-0.1.5.tgz" + }, + "0.2.0": { + "tarball": "http://registry.npmjs.org/cradle/-/cradle-0.2.0.tgz" + }, + "0.2.0-pre": { + "tarball": "http://registry.npmjs.org/cradle/-/cradle-0.2.0-pre.tgz" + }, + "0.2.0-pre2": { + "tarball": "http://registry.npmjs.org/cradle/-/cradle-0.2.0-pre2.tgz" + }, + "0.2.1": { + "tarball": "http://registry.npmjs.org/cradle/-/cradle-0.2.1.tgz" + }, + "0.2.2": { + "tarball": "http://registry.npmjs.org/cradle/-/cradle-0.2.2.tgz" + }, + "0.2.3": { + "tarball": "http://registry.npmjs.org/cradle/-/cradle-0.2.3.tgz" + }, + "0.2.4": { + "tarball": "http://registry.npmjs.org/cradle/-/cradle-0.2.4.tgz" + }, + "0.2.5": { + "tarball": "http://registry.npmjs.org/cradle/-/cradle-0.2.5.tgz" + }, + "0.3.0": { + "tarball": "http://registry.npmjs.org/cradle/-/cradle-0.3.0.tgz" + }, + "0.3.1": { + "tarball": "http://registry.npmjs.org/cradle/-/cradle-0.3.1.tgz" + }, + "0.4.0": { + "shasum": "8bd06ebd200f862c7afc666419bfc18d8964939b", + "tarball": "http://registry.npmjs.org/cradle/-/cradle-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "08be4254767bfb1d958569296fcfd559010a75f5", + "tarball": "http://registry.npmjs.org/cradle/-/cradle-0.4.1.tgz" + }, + "0.5.0": { + "shasum": "28d0ef4e1fd4c6993ce5dfa33e1859968284b409", + "tarball": "http://registry.npmjs.org/cradle/-/cradle-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "fc7336152049b3f7c713aaa9d12f82ed50db2563", + "tarball": "http://registry.npmjs.org/cradle/-/cradle-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "2d43b70af5bad3af7ee4a4db26c5d7431202e156", + "tarball": "http://registry.npmjs.org/cradle/-/cradle-0.5.2.tgz" + }, + "0.5.3": { + "shasum": "91c7fef8d81107bd14b265cfdaf7e5e01a563bee", + "tarball": "http://registry.npmjs.org/cradle/-/cradle-0.5.3.tgz" + }, + "0.5.4": { + "shasum": "b2d9745e5da1ca51cd008869905b6d7c237ba9ee", + "tarball": "http://registry.npmjs.org/cradle/-/cradle-0.5.4.tgz" + }, + "0.5.5": { + "shasum": "dc54c71016427ecb9b86883d46db9a19f1286c22", + "tarball": "http://registry.npmjs.org/cradle/-/cradle-0.5.5.tgz" + }, + "0.5.7": { + "shasum": "c3681ac1294b9c44aab4841da4bc946672e6d7c6", + "tarball": "http://registry.npmjs.org/cradle/-/cradle-0.5.7.tgz" + } + }, + "keywords": [ + "couchdb", + "database", + "couch" + ], + "url": "http://registry.npmjs.org/cradle/" + }, + "cradle-fixed": { + "name": "cradle-fixed", + "description": "the high-level, caching, CouchDB library", + "dist-tags": { + "latest": "0.3.1", + "stable": "0.3.1" + }, + "maintainers": [ + { + "name": "fedor.indutny", + "email": "fedor.indutny@gmail.com" + } + ], + "time": { + "modified": "2011-02-09T15:53:40.275Z", + "created": "2011-02-09T15:53:33.139Z", + "0.3.1": "2011-02-09T15:53:34.148Z" + }, + "author": { + "name": "Alexis Sellier", + "email": "self@cloudhead.net" + }, + "versions": { + "0.3.1": "http://registry.npmjs.org/cradle-fixed/0.3.1" + }, + "dist": { + "0.3.1": { + "shasum": "2be886794d98b45738372107fe01b9ccf9abde25", + "tarball": "http://registry.npmjs.org/cradle-fixed/-/cradle-fixed-0.3.1.tgz" + } + }, + "keywords": [ + "couchdb", + "database", + "couch" + ], + "url": "http://registry.npmjs.org/cradle-fixed/" + }, + "cradle-init": { + "name": "cradle-init", + "description": "sets up cradle/couch nicely", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + }, + { + "name": "dodo", + "email": "dodo@blacksec.org" + } + ], + "time": { + "modified": "2011-11-29T14:11:51.962Z", + "created": "2011-05-28T19:03:56.999Z", + "0.0.0": "2011-05-28T19:03:58.728Z", + "0.0.1": "2011-05-31T03:13:48.167Z", + "0.0.2": "2011-05-31T03:48:46.850Z", + "0.0.3": "2011-06-02T18:50:42.742Z", + "0.0.4": "2011-11-02T22:59:38.636Z", + "0.1.0": "2011-11-09T08:40:58.688Z", + "0.1.1": "2011-11-23T06:28:03.733Z", + "0.1.2": "2011-11-29T14:11:51.962Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dodo/cradle-init.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/cradle-init/0.0.0", + "0.0.1": "http://registry.npmjs.org/cradle-init/0.0.1", + "0.0.2": "http://registry.npmjs.org/cradle-init/0.0.2", + "0.0.3": "http://registry.npmjs.org/cradle-init/0.0.3", + "0.0.4": "http://registry.npmjs.org/cradle-init/0.0.4", + "0.1.0": "http://registry.npmjs.org/cradle-init/0.1.0", + "0.1.1": "http://registry.npmjs.org/cradle-init/0.1.1", + "0.1.2": "http://registry.npmjs.org/cradle-init/0.1.2" + }, + "dist": { + "0.0.0": { + "shasum": "66bbee69f8550b790bea1f375d944158bff5e6b0", + "tarball": "http://registry.npmjs.org/cradle-init/-/cradle-init-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "ca5ed33eab34af64b81aa17e2da0e5a57e09d22c", + "tarball": "http://registry.npmjs.org/cradle-init/-/cradle-init-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "637e39b07994587f444a8d84221e6bea294b8612", + "tarball": "http://registry.npmjs.org/cradle-init/-/cradle-init-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "d20a8300e09e791f2cd47f9f44de3ffac80f8a9f", + "tarball": "http://registry.npmjs.org/cradle-init/-/cradle-init-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "dbc7a74d6dff52ab8a563a0647ac2029074268dd", + "tarball": "http://registry.npmjs.org/cradle-init/-/cradle-init-0.0.4.tgz" + }, + "0.1.0": { + "shasum": "75c1e8f1f4be0afa280a8205716a3d1f7da8e6fa", + "tarball": "http://registry.npmjs.org/cradle-init/-/cradle-init-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "dca197c4b5fe3a440ab2f8f1558bce1274601489", + "tarball": "http://registry.npmjs.org/cradle-init/-/cradle-init-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "4bcb08b79e0f741dcfc71f9cd26b6e1a631fadb4", + "tarball": "http://registry.npmjs.org/cradle-init/-/cradle-init-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/cradle-init/" + }, + "crate": { + "name": "crate", + "description": "Bundle your dependencies easily", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "ecto", + "email": "diffference@gmail.com" + } + ], + "time": { + "modified": "2011-10-26T19:31:14.801Z", + "created": "2011-10-26T19:31:14.369Z", + "0.0.0": "2011-10-26T19:31:14.801Z" + }, + "author": { + "name": "Cam Pedersen", + "email": "diffference@gmail.com", + "url": "http://campedersen.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/ecto/crate.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/crate/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "c600499b17230396db522ad3f31b207708d76cff", + "tarball": "http://registry.npmjs.org/crate/-/crate-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/crate/" + }, + "crawler": { + "name": "crawler", + "description": "Crawler is a web spider written with Nodejs. It gives you the full power of jQuery on the server to parse a big number of pages as they are downloaded, asynchronously.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "sylvinus", + "email": "sylvain@sylvainzimmer.com" + } + ], + "repository": { + "type": "git", + "url": "http://github.com/joshfire/node-crawler.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/crawler/0.0.1", + "0.0.2": "http://registry.npmjs.org/crawler/0.0.2" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/crawler/-/crawler-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/crawler/-/crawler-0.0.2.tgz" + } + }, + "keywords": [ + "dom", + "javascript", + "crawling", + "jquery" + ], + "url": "http://registry.npmjs.org/crawler/" + }, + "crc": { + "name": "crc", + "description": "CRC JavaScript implementation", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "alexgorbatchev", + "email": "alex.gorbatchev@gmail.com" + } + ], + "time": { + "modified": "2010-12-19T22:22:43.690Z", + "created": "2010-12-19T22:22:42.664Z", + "0.1.0": "2010-12-19T22:22:43.690Z" + }, + "author": { + "name": "Alex Gorbatchev", + "email": "alex.gorbatchev@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/alexgorbatchev/node-crc.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/crc/0.1.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/crc/-/crc@0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/crc/" + }, + "crc32": { + "name": "crc32", + "description": "CRC-32 implemented in JavaScript", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "beatgammit", + "email": "t.jameson.little@gmail.com" + } + ], + "time": { + "modified": "2011-11-21T18:45:16.320Z", + "created": "2011-11-05T04:00:34.580Z", + "0.1.0": "2011-11-05T04:00:36.279Z", + "0.1.1": "2011-11-05T04:46:48.915Z", + "0.1.2": "2011-11-05T04:59:44.970Z", + "0.2.0": "2011-11-06T02:13:12.335Z", + "0.2.1": "2011-11-20T05:42:21.617Z", + "0.2.2": "2011-11-21T18:45:16.320Z" + }, + "author": { + "name": "T. Jameson Little", + "email": "t.jameson.little@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/beatgammit/crc32.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/crc32/0.1.0", + "0.1.1": "http://registry.npmjs.org/crc32/0.1.1", + "0.1.2": "http://registry.npmjs.org/crc32/0.1.2", + "0.2.0": "http://registry.npmjs.org/crc32/0.2.0", + "0.2.1": "http://registry.npmjs.org/crc32/0.2.1", + "0.2.2": "http://registry.npmjs.org/crc32/0.2.2" + }, + "dist": { + "0.1.0": { + "shasum": "893b695845c924b3aa0d26c6ad0da8cf6da0844f", + "tarball": "http://registry.npmjs.org/crc32/-/crc32-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "7e19759b12744695f3c722fa210a559493b72778", + "tarball": "http://registry.npmjs.org/crc32/-/crc32-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "531a4fcb6066212dae2d3c73dc607314ff3174a2", + "tarball": "http://registry.npmjs.org/crc32/-/crc32-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "26240c28b073450865e3434cb4b8e3e55dc265f2", + "tarball": "http://registry.npmjs.org/crc32/-/crc32-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "16a3fdab4daeb0359df87d7e5e405cca455edbe0", + "tarball": "http://registry.npmjs.org/crc32/-/crc32-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "7ad220d6ffdcd119f9fc127a7772cacea390a4ba", + "tarball": "http://registry.npmjs.org/crc32/-/crc32-0.2.2.tgz" + } + }, + "url": "http://registry.npmjs.org/crc32/" + }, + "creatary": { + "name": "creatary", + "description": "Official node.js implementation of Creatary API", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "balnagy", + "email": "balazs.1.nagy@nsn.com" + } + ], + "time": { + "modified": "2011-09-14T17:27:36.736Z", + "created": "2011-09-14T17:27:33.454Z", + "0.0.1": "2011-09-14T17:27:36.736Z" + }, + "author": { + "name": "Balazs Nagy", + "email": "balazs.1.nagy@nsn.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/tamdeveloper/creatary-node.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/creatary/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "7ed015c70c2b40fe0ded9886624ecc9397f27bf3", + "tarball": "http://registry.npmjs.org/creatary/-/creatary-0.0.1.tgz" + } + }, + "keywords": [ + "sms", + "mms", + "oauth", + "location", + "charging" + ], + "url": "http://registry.npmjs.org/creatary/" + }, + "create": { + "name": "create", + "description": "The missing Native.create() functions that ECMA forgot.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "TooTallNate", + "email": "nathan@tootallnate.net" + } + ], + "time": { + "modified": "2011-10-27T02:38:20.712Z", + "created": "2011-10-18T01:35:40.163Z", + "0.0.1": "2011-10-18T01:35:41.429Z", + "0.0.2": "2011-10-27T02:38:20.712Z" + }, + "author": { + "name": "Nathan Rajlich", + "email": "nathan@tootallnate.net", + "url": "http://tootallnate.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/TooTallNate/create.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/create/0.0.1", + "0.0.2": "http://registry.npmjs.org/create/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "43359219bd1adf1a44fb145fbfa0bab9acf305c5", + "tarball": "http://registry.npmjs.org/create/-/create-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "a016747ad4e631d2a97de7e3e5ea1ddcc618892b", + "tarball": "http://registry.npmjs.org/create/-/create-0.0.2.tgz" + } + }, + "keywords": [ + "create", + "ecma", + "function", + "subclass", + "prototype", + "array", + "number" + ], + "url": "http://registry.npmjs.org/create/" + }, + "create.js": { + "name": "create.js", + "description": "Instance creation utility", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "manuelstofer", + "email": "manuelstofer@gmail.com" + } + ], + "time": { + "modified": "2011-09-27T21:26:01.749Z", + "created": "2011-09-25T12:38:39.515Z", + "0.0.1": "2011-09-25T12:38:40.177Z", + "0.0.2": "2011-09-25T22:25:19.197Z", + "0.0.3": "2011-09-26T19:29:35.039Z", + "0.0.4": "2011-09-27T21:26:01.749Z" + }, + "author": { + "name": "Manuel Stofer", + "email": "manuelstofer@gmail.com", + "url": "https://github.com/manuelstofer" + }, + "repository": { + "type": "git", + "url": "git://github.com/manuelstofer/create.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/create.js/0.0.1", + "0.0.2": "http://registry.npmjs.org/create.js/0.0.2", + "0.0.3": "http://registry.npmjs.org/create.js/0.0.3", + "0.0.4": "http://registry.npmjs.org/create.js/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "fba5f56aee1c6c023ff204d4014a82293102beef", + "tarball": "http://registry.npmjs.org/create.js/-/create.js-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "519c1bd67a8ac3f3e857185a7c982b71263f2e40", + "tarball": "http://registry.npmjs.org/create.js/-/create.js-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "f0689738832f2565ba2233a0abc82281722d9353", + "tarball": "http://registry.npmjs.org/create.js/-/create.js-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "87cbd5009f1727647c09debbb4c8a5c7c96977de", + "tarball": "http://registry.npmjs.org/create.js/-/create.js-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/create.js/" + }, + "createsend": { + "name": "createsend", + "description": "A wrapper for the Campaign Monitor API.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "jakeluer", + "email": "jake.luer@incatern.com" + } + ], + "time": { + "modified": "2011-12-13T13:08:38.937Z", + "created": "2011-02-19T22:27:41.528Z", + "0.1.0": "2011-02-19T22:27:41.733Z", + "0.1.1": "2011-02-20T05:05:38.786Z", + "0.1.2": "2011-02-21T18:51:44.640Z", + "0.0.1": "2011-12-13T10:27:58.712Z", + "0.0.2": "2011-12-13T13:08:38.937Z" + }, + "author": { + "name": "Jake Luer", + "email": "jake@alogicalparadox.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/logicalparadox/createsend.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/createsend/0.1.0", + "0.1.1": "http://registry.npmjs.org/createsend/0.1.1", + "0.1.2": "http://registry.npmjs.org/createsend/0.1.2", + "0.0.1": "http://registry.npmjs.org/createsend/0.0.1", + "0.0.2": "http://registry.npmjs.org/createsend/0.0.2" + }, + "dist": { + "0.1.0": { + "shasum": "38ac289d685047ac074df07f91ee32c5ebe6a7a1", + "tarball": "http://registry.npmjs.org/createsend/-/createsend-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "5cef97b728e808c4d66876ca5bee263c2fac4113", + "tarball": "http://registry.npmjs.org/createsend/-/createsend-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "240cccf40a77721d76969a40b87b6e2c883a2d88", + "tarball": "http://registry.npmjs.org/createsend/-/createsend-0.1.2.tgz" + }, + "0.0.1": { + "shasum": "a79cce7590d65f4448e18f5dcf8822260d898017", + "tarball": "http://registry.npmjs.org/createsend/-/createsend-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "bde83177490ad0fc0e1758cc745b1eb46e7adcc9", + "tarball": "http://registry.npmjs.org/createsend/-/createsend-0.0.2.tgz" + } + }, + "keywords": [ + "createsend", + "email" + ], + "url": "http://registry.npmjs.org/createsend/" + }, + "creationix": { + "name": "creationix", + "description": "Creationix is a meta package for my personal packages", + "dist-tags": { + "latest": "0.2.4" + }, + "maintainers": [ + { + "name": "creationix", + "email": "tim@creationix.com" + } + ], + "time": { + "modified": "2011-12-13T16:39:38.805Z", + "created": "2010-12-31T05:07:44.944Z", + "0.0.1": "2010-12-31T05:07:45.302Z", + "0.0.2": "2011-01-02T07:07:54.744Z", + "0.0.3": "2011-01-02T07:09:46.331Z", + "0.0.4": "2011-01-03T22:12:05.307Z", + "0.0.5": "2011-01-04T04:53:16.733Z", + "0.0.6": "2011-01-06T05:36:52.275Z", + "0.0.7": "2011-01-14T20:43:51.619Z", + "0.0.8": "2011-02-09T06:24:30.504Z", + "0.0.9": "2011-02-12T21:17:04.840Z", + "0.0.10": "2011-02-18T18:13:26.982Z", + "0.1.0": "2011-02-18T18:29:25.384Z", + "0.1.1": "2011-03-03T06:57:54.702Z", + "0.1.2": "2011-05-05T21:33:00.370Z", + "0.1.3": "2011-07-22T05:18:44.229Z", + "0.1.5": "2011-08-12T23:38:44.644Z", + "0.2.0": "2011-09-15T23:38:50.526Z", + "0.2.1": "2011-09-28T23:39:22.462Z", + "0.2.2": "2011-11-04T20:01:35.782Z", + "0.2.3": "2011-11-29T15:51:39.273Z", + "0.2.4": "2011-12-13T16:39:38.805Z" + }, + "author": { + "name": "Tim Caswell", + "email": "tim@creationix.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/creationix/creationix.git" + }, + "users": { + "creationix": true + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/creationix/0.0.1", + "0.0.2": "http://registry.npmjs.org/creationix/0.0.2", + "0.0.3": "http://registry.npmjs.org/creationix/0.0.3", + "0.0.4": "http://registry.npmjs.org/creationix/0.0.4", + "0.0.5": "http://registry.npmjs.org/creationix/0.0.5", + "0.0.6": "http://registry.npmjs.org/creationix/0.0.6", + "0.0.7": "http://registry.npmjs.org/creationix/0.0.7", + "0.0.8": "http://registry.npmjs.org/creationix/0.0.8", + "0.0.9": "http://registry.npmjs.org/creationix/0.0.9", + "0.0.10": "http://registry.npmjs.org/creationix/0.0.10", + "0.1.0": "http://registry.npmjs.org/creationix/0.1.0", + "0.1.1": "http://registry.npmjs.org/creationix/0.1.1", + "0.1.2": "http://registry.npmjs.org/creationix/0.1.2", + "0.1.3": "http://registry.npmjs.org/creationix/0.1.3", + "0.1.5": "http://registry.npmjs.org/creationix/0.1.5", + "0.2.0": "http://registry.npmjs.org/creationix/0.2.0", + "0.2.1": "http://registry.npmjs.org/creationix/0.2.1", + "0.2.2": "http://registry.npmjs.org/creationix/0.2.2", + "0.2.3": "http://registry.npmjs.org/creationix/0.2.3", + "0.2.4": "http://registry.npmjs.org/creationix/0.2.4" + }, + "dist": { + "0.0.1": { + "shasum": "ed3558dc27a2b1b6851fa961dc3d6c0ec59464b9", + "tarball": "http://registry.npmjs.org/creationix/-/creationix-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "42bf5886c26272bfae191f370b9887dc4ac0172a", + "tarball": "http://registry.npmjs.org/creationix/-/creationix-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "e1eefd27f617700ad9d39ecc0a668f2123c7584c", + "tarball": "http://registry.npmjs.org/creationix/-/creationix-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "7727435fef712c4612ae1aadb85056d251922f13", + "tarball": "http://registry.npmjs.org/creationix/-/creationix-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "83ae3f1fe2ac15968ff387d6974e3da27823c537", + "tarball": "http://registry.npmjs.org/creationix/-/creationix-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "c36e7c02f0460109cb3f05f1ac552db11df239eb", + "tarball": "http://registry.npmjs.org/creationix/-/creationix-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "2cf415421c399c6a259e4ffd11a7f8ba3a6c169e", + "tarball": "http://registry.npmjs.org/creationix/-/creationix-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "0f8191c52e5f4140f1a0dfe76118d30129dac255", + "tarball": "http://registry.npmjs.org/creationix/-/creationix-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "5033e4e92629c2507b704624d738d9761c3223c0", + "tarball": "http://registry.npmjs.org/creationix/-/creationix-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "1a0708ea2aea9cd8785dca3fdef8805da1afffb1", + "tarball": "http://registry.npmjs.org/creationix/-/creationix-0.0.10.tgz" + }, + "0.1.0": { + "shasum": "09fcb86516b4891dd6d31ccd238c63183afce349", + "tarball": "http://registry.npmjs.org/creationix/-/creationix-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "762526f477b12f0ad0b69f09b41272868e8d900c", + "tarball": "http://registry.npmjs.org/creationix/-/creationix-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "0a223db132134ddd4b9f07a12196ce2d0b9840c3", + "tarball": "http://registry.npmjs.org/creationix/-/creationix-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "2e20007207e7be72db09b025ee081d1fa7fa381b", + "tarball": "http://registry.npmjs.org/creationix/-/creationix-0.1.3.tgz" + }, + "0.1.5": { + "shasum": "418f00eba9cb50973fc59226b252cc48b31e0fbf", + "tarball": "http://registry.npmjs.org/creationix/-/creationix-0.1.5.tgz" + }, + "0.2.0": { + "shasum": "e5314e055ea77924f49deb56d3b014e9dd8caaf7", + "tarball": "http://registry.npmjs.org/creationix/-/creationix-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "539037fbb5c2afbe2370667b1e191a5f085d1ebb", + "tarball": "http://registry.npmjs.org/creationix/-/creationix-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "69ca2d6a2fb1ce44d9287531ea2e239a72949634", + "tarball": "http://registry.npmjs.org/creationix/-/creationix-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "7eaa3624f29085f162b00e57454a85b037bea7b9", + "tarball": "http://registry.npmjs.org/creationix/-/creationix-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "f6e9b061bc8caa995ad4ba8cffcda816a4970569", + "tarball": "http://registry.npmjs.org/creationix/-/creationix-0.2.4.tgz" + } + }, + "url": "http://registry.npmjs.org/creationix/" + }, + "creek": { + "name": "creek", + "description": "Configurable stream aggregator", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "andykent", + "email": "andy.kent@me.com" + } + ], + "author": { + "name": "Andy Kent", + "email": "andy@forward.co.uk" + }, + "repository": { + "type": "git", + "url": "git://github.com/andykent/creek.git" + }, + "time": { + "modified": "2011-07-05T10:31:50.550Z", + "created": "2010-12-19T23:19:30.827Z", + "0.1.0": "2010-12-19T23:19:30.827Z", + "0.1.1": "2010-12-19T23:19:30.827Z", + "0.1.2": "2010-12-19T23:19:30.827Z", + "0.1.3": "2010-12-19T23:19:30.827Z", + "0.1.4": "2010-12-21T14:19:00.745Z", + "0.1.5": "2010-12-21T16:25:20.064Z", + "0.1.6": "2011-01-26T23:45:13.952Z", + "0.1.7": "2011-01-27T10:36:53.282Z", + "0.1.8": "2011-02-19T00:59:57.435Z", + "0.2.0": "2011-06-04T12:20:36.815Z", + "0.2.1": "2011-06-21T10:42:24.384Z", + "0.2.2": "2011-07-05T10:22:40.158Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/creek/0.1.0", + "0.1.1": "http://registry.npmjs.org/creek/0.1.1", + "0.1.2": "http://registry.npmjs.org/creek/0.1.2", + "0.1.3": "http://registry.npmjs.org/creek/0.1.3", + "0.1.4": "http://registry.npmjs.org/creek/0.1.4", + "0.1.5": "http://registry.npmjs.org/creek/0.1.5", + "0.1.6": "http://registry.npmjs.org/creek/0.1.6", + "0.1.7": "http://registry.npmjs.org/creek/0.1.7", + "0.1.8": "http://registry.npmjs.org/creek/0.1.8", + "0.2.0": "http://registry.npmjs.org/creek/0.2.0", + "0.2.1": "http://registry.npmjs.org/creek/0.2.1", + "0.2.2": "http://registry.npmjs.org/creek/0.2.2" + }, + "dist": { + "0.1.0": { + "shasum": "0f40495bcd015f20a4f7e55b78a2718b94a94c53", + "tarball": "http://registry.npmjs.org/creek/-/creek-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "ef48fe0a628695f6468655fb98ef64fc2f2e87c8", + "tarball": "http://registry.npmjs.org/creek/-/creek-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "8f7272a8e02931ab27b9b1c12cae4f1927687fe1", + "tarball": "http://registry.npmjs.org/creek/-/creek-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "186088651c7d2f4f2bfd350ecf400a21c7a30285", + "tarball": "http://registry.npmjs.org/creek/-/creek-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "2bd43ed20f08b249c9cc52a5403e5ba159c323e4", + "tarball": "http://registry.npmjs.org/creek/-/creek-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "41a3f593152b26d68e5fa05e998ff9cb52f8e196", + "tarball": "http://registry.npmjs.org/creek/-/creek-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "1c2c6f22724f70c22c1e60a823b2f29d891f77d3", + "tarball": "http://registry.npmjs.org/creek/-/creek-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "d40f91c3681053856069e18ab936c37edd2c30c4", + "tarball": "http://registry.npmjs.org/creek/-/creek-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "3a0472c14b224626dfee94782125e4846b8f83c1", + "tarball": "http://registry.npmjs.org/creek/-/creek-0.1.8.tgz" + }, + "0.2.0": { + "shasum": "eae462fa0930bb1bb1136dfb25b62b960062ddcb", + "tarball": "http://registry.npmjs.org/creek/-/creek-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "9f5c55ede76e6088854278fccff86157133a8d1e", + "tarball": "http://registry.npmjs.org/creek/-/creek-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "3abe6599155dbabb024f0bd133d316b330ecee2d", + "tarball": "http://registry.npmjs.org/creek/-/creek-0.2.2.tgz" + } + }, + "url": "http://registry.npmjs.org/creek/" + }, + "crema": { + "name": "crema", + "description": "syntactic sugar for your javascript functions", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": " \n\n## Example\n\n```javascript\nvar routes = crema('request -method=GET OR -method=POST authorize -> login');\n```\n\nOutput:\n\n```javascript\n[\n {\n \"type\": \"request\",\n \"tags\": {\n \"method\": \"get\"\n },\n \"channel\": {\n \"value\": \"login\",\n \"paths\": [\n {\n \"value\": \"login\",\n \"param\": false\n }\n ]\n },\n \"thru\": {\n \"channel\": {\n \"value\": \"authorize\",\n \"paths\": [\n {\n \"value\": \"authorize\",\n \"param\": false\n }\n ]\n }\n }\n }\n]\n```\n\n## Syntax\n\n```javascript\ncrema('type -tag=value route OR route2');\n```\n\n\n## Use Cases\n\n- [beanpole](beanpole)\n- [dolce](dolce)\n", + "maintainers": [ + { + "name": "architectd", + "email": "craig.j.condon@gmail.com" + } + ], + "time": { + "modified": "2011-12-03T22:55:43.678Z", + "created": "2011-12-03T22:55:43.299Z", + "0.0.1": "2011-12-03T22:55:43.678Z" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/crema/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "1b8b23de75a50e30bdd79c329b0013e7d40d0d6e", + "tarball": "http://registry.npmjs.org/crema/-/crema-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/crema/" + }, + "Critical": { + "name": "Critical", + "description": "A callback and event system to allow critical blocks of code to request that the script delay exiting until it is finished executing.", + "dist-tags": { + "latest": "0.1.6" + }, + "maintainers": [ + { + "name": "bluejeansandrain", + "email": "bluejeansandrain@gmail.com" + } + ], + "time": { + "modified": "2011-11-11T03:35:14.818Z", + "created": "2011-11-01T04:52:51.221Z", + "0.1.0": "2011-11-01T04:52:52.603Z", + "0.1.1": "2011-11-01T04:59:01.322Z", + "0.1.2": "2011-11-01T05:04:14.187Z", + "0.1.3": "2011-11-01T05:13:17.708Z", + "0.1.4": "2011-11-01T05:32:40.365Z", + "0.1.5": "2011-11-01T07:15:34.188Z", + "0.1.6": "2011-11-11T03:35:14.818Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/Critical/0.1.0", + "0.1.1": "http://registry.npmjs.org/Critical/0.1.1", + "0.1.2": "http://registry.npmjs.org/Critical/0.1.2", + "0.1.3": "http://registry.npmjs.org/Critical/0.1.3", + "0.1.4": "http://registry.npmjs.org/Critical/0.1.4", + "0.1.5": "http://registry.npmjs.org/Critical/0.1.5", + "0.1.6": "http://registry.npmjs.org/Critical/0.1.6" + }, + "dist": { + "0.1.0": { + "shasum": "35fe7fe8d3f7acdaf6355cf9dc9a6390f45bebd9", + "tarball": "http://registry.npmjs.org/Critical/-/Critical-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "6becfe3bb7f81e93596cf74a42b81a13bc6e76c3", + "tarball": "http://registry.npmjs.org/Critical/-/Critical-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "b4c6ae2b5aacbbdfc4f45d7f12887cefc4002910", + "tarball": "http://registry.npmjs.org/Critical/-/Critical-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "079ca02a32294b4a16dd28ff835e78c0eaab0960", + "tarball": "http://registry.npmjs.org/Critical/-/Critical-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "9c14a3272628d9535870e488bbb140608c765cfa", + "tarball": "http://registry.npmjs.org/Critical/-/Critical-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "ab5989a90bc4d8b096190d7f346ebed26fadcb56", + "tarball": "http://registry.npmjs.org/Critical/-/Critical-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "3404709e02de39b54f1606d00255cd1296952548", + "tarball": "http://registry.npmjs.org/Critical/-/Critical-0.1.6.tgz" + } + }, + "url": "http://registry.npmjs.org/Critical/" + }, + "cron": { + "name": "cron", + "description": "CronJob's for your node", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "ncb000gt", + "email": "nicholas.j.campbell@gmail.com" + } + ], + "author": { + "name": "James Padolsey", + "url": "http://github.com/jamespadolsey" + }, + "repository": { + "type": "git", + "url": "git://github.com/ncb000gt/node-cron.git" + }, + "time": { + "modified": "2011-08-08T02:19:22.945Z", + "created": "2011-04-09T15:42:55.031Z", + "0.1.0": "2011-04-09T15:42:55.031Z", + "0.1.1": "2011-04-09T15:42:55.031Z", + "0.1.2": "2011-04-09T18:19:38.203Z", + "0.1.3": "2011-08-08T02:19:22.945Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/cron/0.1.0", + "0.1.1": "http://registry.npmjs.org/cron/0.1.1", + "0.1.2": "http://registry.npmjs.org/cron/0.1.2", + "0.1.3": "http://registry.npmjs.org/cron/0.1.3" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/cron/-/cron-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "38f64a20661e2b857f96bfaaf0e316a12c9427aa", + "tarball": "http://registry.npmjs.org/cron/-/cron-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "918ed29764f6be62af82a9e8543317afd81417ea", + "tarball": "http://registry.npmjs.org/cron/-/cron-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "3263f00f0c201ada9db75442c01a1745dc1dea6f", + "tarball": "http://registry.npmjs.org/cron/-/cron-0.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/cron/" + }, + "cron2": { + "name": "cron2", + "description": "CronJob's for your node", + "dist-tags": { + "latest": "0.1.8" + }, + "maintainers": [ + { + "name": "architectd", + "email": "craig.j.condon@gmail.com" + } + ], + "time": { + "modified": "2011-09-12T05:21:41.340Z", + "created": "2011-09-08T01:28:53.797Z", + "0.1.3": "2011-09-08T01:28:54.547Z", + "0.1.4": "2011-09-08T01:33:57.136Z", + "0.1.5": "2011-09-08T01:45:07.749Z", + "0.1.6": "2011-09-08T03:23:58.458Z", + "0.1.7": "2011-09-08T20:29:38.640Z", + "0.1.8": "2011-09-12T05:21:41.340Z" + }, + "author": { + "name": "James Padolsey", + "url": "http://github.com/jamespadolsey" + }, + "repository": { + "type": "git", + "url": "git://github.com/ncb000gt/node-cron.git" + }, + "versions": { + "0.1.3": "http://registry.npmjs.org/cron2/0.1.3", + "0.1.4": "http://registry.npmjs.org/cron2/0.1.4", + "0.1.5": "http://registry.npmjs.org/cron2/0.1.5", + "0.1.6": "http://registry.npmjs.org/cron2/0.1.6", + "0.1.7": "http://registry.npmjs.org/cron2/0.1.7", + "0.1.8": "http://registry.npmjs.org/cron2/0.1.8" + }, + "dist": { + "0.1.3": { + "shasum": "377de47680b4b517d1c4ff37da88181cce1001d9", + "tarball": "http://registry.npmjs.org/cron2/-/cron2-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "20a073aca6b3a9f9d54b54e642bd65b2c995b507", + "tarball": "http://registry.npmjs.org/cron2/-/cron2-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "be10b8ea4a9144c80af843517dd2d453c8f51a5b", + "tarball": "http://registry.npmjs.org/cron2/-/cron2-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "3d9c5b5a1ed62bab3779d7e7e597d6582846fe3a", + "tarball": "http://registry.npmjs.org/cron2/-/cron2-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "43d298a0ac64cc095395092c4be175a201be148f", + "tarball": "http://registry.npmjs.org/cron2/-/cron2-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "8fc04a0eb382dde3f25aef1fa03d0e12a45b3b08", + "tarball": "http://registry.npmjs.org/cron2/-/cron2-0.1.8.tgz" + } + }, + "url": "http://registry.npmjs.org/cron2/" + }, + "crontab": { + "name": "crontab", + "description": "A module for reading, manipulating, and writing user crontabs with node.js", + "dist-tags": { + "latest": "0.2.10" + }, + "maintainers": [ + { + "name": "blago", + "email": "blago@dachev.com" + } + ], + "time": { + "modified": "2011-01-29T06:16:39.113Z", + "created": "2010-12-27T06:54:21.304Z", + "0.1.0": "2010-12-27T06:54:21.784Z", + "0.1.1": "2010-12-27T06:56:59.102Z", + "0.1.2": "2010-12-27T15:25:44.019Z", + "0.1.3": "2010-12-27T19:16:51.498Z", + "0.1.4": "2010-12-28T15:54:20.494Z", + "0.1.5": "2010-12-28T17:05:56.091Z", + "0.2.0": "2011-01-01T00:36:24.666Z", + "0.2.1": "2011-01-01T08:26:06.210Z", + "0.2.2": "2011-01-01T09:39:28.148Z", + "0.2.3": "2011-01-03T00:55:53.509Z", + "0.2.4": "2011-01-03T02:15:56.134Z", + "0.2.5": "2011-01-03T02:33:58.862Z", + "0.2.6": "2011-01-03T04:50:30.274Z", + "0.2.7": "2011-01-08T04:17:12.092Z", + "0.2.8": "2011-01-09T00:55:00.611Z", + "0.2.9": "2011-01-09T01:00:08.067Z", + "0.2.99": "2011-01-28T20:06:53.189Z", + "0.2.10": "2011-01-29T06:16:39.113Z" + }, + "author": { + "name": "Blagovest Dachev", + "email": "blago@dachev.com", + "url": "http://www.dachev.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dachev/node-crontab.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/crontab/0.1.0", + "0.1.1": "http://registry.npmjs.org/crontab/0.1.1", + "0.1.2": "http://registry.npmjs.org/crontab/0.1.2", + "0.1.3": "http://registry.npmjs.org/crontab/0.1.3", + "0.1.4": "http://registry.npmjs.org/crontab/0.1.4", + "0.1.5": "http://registry.npmjs.org/crontab/0.1.5", + "0.2.0": "http://registry.npmjs.org/crontab/0.2.0", + "0.2.1": "http://registry.npmjs.org/crontab/0.2.1", + "0.2.2": "http://registry.npmjs.org/crontab/0.2.2", + "0.2.3": "http://registry.npmjs.org/crontab/0.2.3", + "0.2.4": "http://registry.npmjs.org/crontab/0.2.4", + "0.2.5": "http://registry.npmjs.org/crontab/0.2.5", + "0.2.6": "http://registry.npmjs.org/crontab/0.2.6", + "0.2.7": "http://registry.npmjs.org/crontab/0.2.7", + "0.2.8": "http://registry.npmjs.org/crontab/0.2.8", + "0.2.9": "http://registry.npmjs.org/crontab/0.2.9", + "0.2.99": "http://registry.npmjs.org/crontab/0.2.99", + "0.2.10": "http://registry.npmjs.org/crontab/0.2.10" + }, + "dist": { + "0.1.0": { + "shasum": "d918a61fa7f7d671da6b3b092376829b23d0a52b", + "tarball": "http://registry.npmjs.org/crontab/-/crontab-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "c548c34961742589162ea6e328f9ab2da6ce8e38", + "tarball": "http://registry.npmjs.org/crontab/-/crontab-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "51e8577db82efd31bbbae91d4e87648097a887fb", + "tarball": "http://registry.npmjs.org/crontab/-/crontab-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "77a43e227657c6126a9684bf1d302cc43f4b64f5", + "tarball": "http://registry.npmjs.org/crontab/-/crontab-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "f37efa3f9430eab8a9d094d0948ff4a012f80788", + "tarball": "http://registry.npmjs.org/crontab/-/crontab-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "dd52ccbe924a72f64c923518b3f5fdd8f13862c8", + "tarball": "http://registry.npmjs.org/crontab/-/crontab-0.1.5.tgz" + }, + "0.2.0": { + "shasum": "1a1d0c9f17d8fab75c37b3e00f15a538be022179", + "tarball": "http://registry.npmjs.org/crontab/-/crontab-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "ad4cbcfb721edc379d41e345b7c20147dfde7723", + "tarball": "http://registry.npmjs.org/crontab/-/crontab-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "53066774747487c2263449743d4c75d5637580ef", + "tarball": "http://registry.npmjs.org/crontab/-/crontab-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "8cb9ce24da17752fb9298e7ab7f99f86036ad514", + "tarball": "http://registry.npmjs.org/crontab/-/crontab-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "3eda622d87aa1c1337de831a2b7248ac4917957f", + "tarball": "http://registry.npmjs.org/crontab/-/crontab-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "0abdabd4fa9d6e6b7c25764f3e4b86acd32d2b38", + "tarball": "http://registry.npmjs.org/crontab/-/crontab-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "cece7d6448e2169dc8f67410a79dc1f9910e88d8", + "tarball": "http://registry.npmjs.org/crontab/-/crontab-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "698231e7704b4d26b4573be5f019adbc7543eab6", + "tarball": "http://registry.npmjs.org/crontab/-/crontab-0.2.7.tgz" + }, + "0.2.8": { + "shasum": "167d30dd86af1474af80ab91939e8fc66ff68a3e", + "tarball": "http://registry.npmjs.org/crontab/-/crontab-0.2.8.tgz" + }, + "0.2.9": { + "shasum": "71ca2fa8fd16ed93a3715473030bdadee78609ba", + "tarball": "http://registry.npmjs.org/crontab/-/crontab-0.2.9.tgz" + }, + "0.2.99": { + "shasum": "811e26e6a6f81673de24fc84ef41dd088614133b", + "tarball": "http://registry.npmjs.org/crontab/-/crontab-0.2.99.tgz" + }, + "0.2.10": { + "shasum": "a94b64241267e7a1abc6f64c612140ac4b401388", + "tarball": "http://registry.npmjs.org/crontab/-/crontab-0.2.10.tgz" + } + }, + "keywords": [ + "cron", + "crontab", + "schedule", + "system", + "run", + "process" + ], + "url": "http://registry.npmjs.org/crontab/" + }, + "crop": { + "name": "crop", + "description": "Crop widget", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "amccollum", + "email": "amccollum+npm@gmail.com" + } + ], + "time": { + "modified": "2011-11-08T18:32:04.643Z", + "created": "2011-11-06T16:56:58.854Z", + "0.0.1": "2011-11-06T16:56:59.227Z", + "0.1.0": "2011-11-08T18:32:04.643Z" + }, + "author": { + "name": "Andrew McCollum", + "email": "amccollum@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/crop/0.0.1", + "0.1.0": "http://registry.npmjs.org/crop/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "e8eb273671822353e97d0d6ff76819b5398b3160", + "tarball": "http://registry.npmjs.org/crop/-/crop-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "00158b7e3c4a7909a3f3638b5d1af8ddba1a240d", + "tarball": "http://registry.npmjs.org/crop/-/crop-0.1.0.tgz" + } + }, + "keywords": [ + "ender", + "crop" + ], + "url": "http://registry.npmjs.org/crop/" + }, + "crossmania": { + "name": "crossmania", + "description": "the node module for doing cross-domain CRUD with the browser", + "dist-tags": { + "latest": "0.2.3" + }, + "readme": "# crossmania\n\ntalk crossdomain with your browser. it's available through npm:\n\n\tnpm install crossmania\n\nusage is simple:\n\n``` js\nvar mania = require('crossmania'); // call .string() afterwards to talk raw strings\n\nmania.get('/', function(request, respond) {\n\trespond({hello:'world'}); // yes we talk json\n});\nmania.post('/', function(request, data, respond) {\n\trespond(data); // we echo\n});\nmania.listen(80);\n\n```\n\nmania works by relying on `cors` based ajax if available (chrome, safari, firefox). \nfor IE8+ and Opera it uses an iframe proxy frame and the `postMessage` api.\nfor IE7- and all others it falls back to an jsonp wrapper. \n\nIn the browser use the [crossmania](http://github.com/gett/crossmania-js) available for client-side javascript\n", + "maintainers": [ + { + "name": "mafintosh", + "email": "mathiasbuus@gmail.com" + } + ], + "time": { + "modified": "2011-12-01T15:02:24.758Z", + "created": "2011-11-17T10:58:29.760Z", + "0.2.0": "2011-11-17T10:58:31.223Z", + "0.2.1": "2011-11-17T12:26:20.335Z", + "0.2.2": "2011-11-17T16:20:46.908Z", + "0.2.3": "2011-12-01T15:02:24.758Z" + }, + "author": { + "name": "Ge.tt", + "email": "hello@ge.tt" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/crossmania/0.2.0", + "0.2.1": "http://registry.npmjs.org/crossmania/0.2.1", + "0.2.2": "http://registry.npmjs.org/crossmania/0.2.2", + "0.2.3": "http://registry.npmjs.org/crossmania/0.2.3" + }, + "dist": { + "0.2.0": { + "shasum": "28a6d6fa838125581dd8d30343f76fd8ff1613d3", + "tarball": "http://registry.npmjs.org/crossmania/-/crossmania-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "bba0c3e41ce44e7bbc7b21c3d3d71d0dcd0e84cf", + "tarball": "http://registry.npmjs.org/crossmania/-/crossmania-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "6ac38e23dc053624a1baba83bb6a49cd350919bf", + "tarball": "http://registry.npmjs.org/crossmania/-/crossmania-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "970afa27395c295e6fbebee95f23eed7b418482f", + "tarball": "http://registry.npmjs.org/crossmania/-/crossmania-0.2.3.tgz" + } + }, + "keywords": [ + "cross-domain", + "cors", + "crud", + "browser", + "cross-browser" + ], + "url": "http://registry.npmjs.org/crossmania/" + }, + "crossroads": { + "name": "crossroads", + "description": "Routes System", + "dist-tags": { + "latest": "0.7.0" + }, + "maintainers": [ + { + "name": "millermedeiros", + "email": "miller@millermedeiros.com" + } + ], + "time": { + "modified": "2011-11-02T06:13:08.474Z", + "created": "2011-06-07T03:43:23.739Z", + "0.4.0": "2011-06-07T03:43:24.631Z", + "0.5.0": "2011-08-17T06:45:43.204Z", + "0.6.0": "2011-09-01T02:19:17.905Z", + "0.7.0": "2011-11-02T06:13:08.474Z" + }, + "author": { + "name": "Miller Medeiros", + "url": "http://blog.millermedeiros.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/millermedeiros/crossroads.js.git" + }, + "versions": { + "0.4.0": "http://registry.npmjs.org/crossroads/0.4.0", + "0.5.0": "http://registry.npmjs.org/crossroads/0.5.0", + "0.6.0": "http://registry.npmjs.org/crossroads/0.6.0", + "0.7.0": "http://registry.npmjs.org/crossroads/0.7.0" + }, + "dist": { + "0.4.0": { + "shasum": "299eef462d6949030a9294f47dca945a5f66d878", + "tarball": "http://registry.npmjs.org/crossroads/-/crossroads-0.4.0.tgz" + }, + "0.5.0": { + "shasum": "fa75c938889898d627b2631177f5cf3b351d2cd1", + "tarball": "http://registry.npmjs.org/crossroads/-/crossroads-0.5.0.tgz" + }, + "0.6.0": { + "shasum": "9aa98018de63f7cba8c699e7711bc392c5760e2a", + "tarball": "http://registry.npmjs.org/crossroads/-/crossroads-0.6.0.tgz" + }, + "0.7.0": { + "shasum": "608babf6cfbc8cb6e089fe79c371bd1942cfb780", + "tarball": "http://registry.npmjs.org/crossroads/-/crossroads-0.7.0.tgz" + } + }, + "keywords": [ + "routes", + "event", + "observer", + "routing" + ], + "url": "http://registry.npmjs.org/crossroads/" + }, + "crowdflower": { + "name": "crowdflower", + "description": "A Node interface to CrowdFlower.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "Tim-Smart", + "email": "tim@fostle.com" + } + ], + "time": { + "modified": "2011-02-22T20:10:55.121Z", + "created": "2011-02-22T20:10:54.592Z", + "0.0.1": "2011-02-22T20:10:55.121Z" + }, + "author": { + "name": "Tim Smart", + "email": "tim@fostle.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/votizen/node-crowdflower.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/crowdflower/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "61a40e36a301d50059c5dea34111912a2ad0aa0d", + "tarball": "http://registry.npmjs.org/crowdflower/-/crowdflower-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/crowdflower/" + }, + "crutch": { + "name": "crutch", + "description": "A (terrible) way to use Chronic in Node.", + "dist-tags": { + "latest": "0.0.2" + }, + "readme": "Crutch is a (terrible) way to use Chronic in NodeJS applications.\n\n\nIn a nutshell\n=============\n\n```javascript\nvar parse = require('crutch').parse\n\nparse( 'next tuesday at 2pm', function( err, date, str ){\n \n if (err) throw err;\n \n console.log( 'Javascript date object: ', date );\n\n console.log( 'Chronic actually said: ', str );\n\n})\n\n```\n\n\nGetting Crutch\n===============\n\nInstall via npm, thusly:\n\n```javascript\nnpm install crutch\n```\n\n\nWhy would you do this?\n----------------------\n\nHonestly, because missing Chronic is keeping me from building shit in Node.\n\n\nWhat about (insert JS date-parsing library)?\n--------------------------------------------\n\nI didn't find one I considered \"robust enough\" when I looked.\n\n\"Crutch\" is exactly that: something to lean on until it's no longer useful. I hope that's soon.\n\n\nCan I use it in production?\n---------------------------\n\nI might, but you probably wouldn't want to.\n\n\nHow does it work?\n-----------------\n\nIt spawns a ruby process, then uses JSON-RPC's ugly cousin to coax magic of Chronic#parse.\n\n\nWho are you?\n------------\nSend your hate-mail to: [Kieran Huggins](mailto:kieran@refactory.ca), partner at [Refactory](http://refactory.ca) in Toronto, Canada.", + "maintainers": [ + { + "name": "kieran", + "email": "kieran@kieran.ca" + } + ], + "time": { + "modified": "2011-11-24T08:08:11.383Z", + "created": "2011-11-24T07:28:18.165Z", + "0.0.1": "2011-11-24T07:28:19.086Z", + "0.0.2": "2011-11-24T08:08:11.383Z" + }, + "author": { + "name": "Kieran Huggins", + "email": "kieran@kieran.ca" + }, + "repository": { + "type": "git", + "url": "git://github.com/kieran/crutch.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/crutch/0.0.1", + "0.0.2": "http://registry.npmjs.org/crutch/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "12f90307e5f635a3facac68ec15f77f4b0a045c7", + "tarball": "http://registry.npmjs.org/crutch/-/crutch-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "421e5eb6f9a0e81e72c3c2c5b7ca082d2a2e60fe", + "tarball": "http://registry.npmjs.org/crutch/-/crutch-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/crutch/" + }, + "cruvee": { + "name": "cruvee", + "description": "A Cruvee API Wrapper for NodeJS", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "shama", + "email": "kyle@dontkry.com" + } + ], + "time": { + "modified": "2011-04-23T04:27:42.590Z", + "created": "2011-04-23T04:27:42.242Z", + "0.1.1": "2011-04-23T04:27:42.590Z" + }, + "author": { + "name": "Kyle Robinson Young", + "email": "kyle at dontkry.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/shama/cruveejs.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/cruvee/0.1.1" + }, + "dist": { + "0.1.1": { + "shasum": "dba3ca9b6988b0f5ccb6e268f79b5ae99e42aa60", + "tarball": "http://registry.npmjs.org/cruvee/-/cruvee-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/cruvee/" + }, + "crx": { + "name": "crx", + "description": "Build Google Chrome extensions with node.js", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "jed", + "email": "tr@nslator.jp" + } + ], + "time": { + "modified": "2011-10-11T16:34:33.452Z", + "created": "2011-10-11T16:28:52.807Z", + "0.1.1": "2011-10-11T16:28:54.343Z", + "0.1.2": "2011-10-11T16:34:33.452Z" + }, + "author": { + "name": "Jed Schmidt", + "email": "tr@nslator.jp", + "url": "http://jed.is" + }, + "repository": { + "type": "git", + "url": "git://github.com/jed/crx.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/crx/0.1.1", + "0.1.2": "http://registry.npmjs.org/crx/0.1.2" + }, + "dist": { + "0.1.1": { + "shasum": "382e8a2cf54f75a2135e952f79bdd94226c8caf4", + "tarball": "http://registry.npmjs.org/crx/-/crx-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "35e173c5506c89aceb0e762b9fb54dc44cdcccce", + "tarball": "http://registry.npmjs.org/crx/-/crx-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/crx/" + }, + "crxmake": { + "name": "crxmake", + "description": "Build Google Chrome extensions with node.js", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "jed", + "email": "tr@nslator.jp" + } + ], + "time": { + "modified": "2011-10-09T18:40:43.928Z", + "created": "2011-10-08T15:00:46.835Z", + "0.0.0": "2011-10-08T15:00:48.379Z", + "0.0.1": "2011-10-08T17:07:52.695Z", + "0.1.1": "2011-10-09T18:40:43.928Z" + }, + "author": { + "name": "Jed Schmidt", + "email": "tr@nslator.jp", + "url": "http://jed.is" + }, + "repository": { + "type": "git", + "url": "git://github.com/jed/crxmake.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/crxmake/0.0.0", + "0.0.1": "http://registry.npmjs.org/crxmake/0.0.1", + "0.1.1": "http://registry.npmjs.org/crxmake/0.1.1" + }, + "dist": { + "0.0.0": { + "shasum": "a20717b5369b8f9abbc8510f6a584c5e48469f01", + "tarball": "http://registry.npmjs.org/crxmake/-/crxmake-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "e2680c7755513850f24a7e7b74801c1505bf4f08", + "tarball": "http://registry.npmjs.org/crxmake/-/crxmake-0.0.1.tgz" + }, + "0.1.1": { + "shasum": "ab04a8ecae71f5008517f19fedd29664210f2841", + "tarball": "http://registry.npmjs.org/crxmake/-/crxmake-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/crxmake/" + }, + "cry": { + "name": "cry", + "description": "crypto from the command line", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "ecto", + "email": "diffference@gmail.com" + } + ], + "time": { + "modified": "2011-10-31T21:11:53.190Z", + "created": "2011-10-31T21:11:52.704Z", + "0.0.0": "2011-10-31T21:11:53.190Z" + }, + "author": { + "name": "Cam Pedersen", + "email": "diffference@gmail.com", + "url": "http://campedersen.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/ecto/cry.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/cry/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "e6b641818d523ebd1b1b2fa01ffd5acf79879c7c", + "tarball": "http://registry.npmjs.org/cry/-/cry-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/cry/" + }, + "crypt": { + "name": "crypt", + "description": "utilities for encryption and hashing", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "pvorb", + "email": "paul@vorb.de" + } + ], + "time": { + "modified": "2011-11-20T23:01:38.866Z", + "created": "2011-09-18T17:07:15.820Z", + "0.0.0": "2011-09-18T17:07:18.107Z", + "0.0.1": "2011-11-20T23:01:38.866Z" + }, + "author": { + "name": "Paul Vorbach", + "email": "paul@vorb.de", + "url": "http://vorb.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/pvorb/node-crypt.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/crypt/0.0.0", + "0.0.1": "http://registry.npmjs.org/crypt/0.0.1" + }, + "dist": { + "0.0.0": { + "shasum": "a6976f1663ea9dc71230d57444abecbb055408ed", + "tarball": "http://registry.npmjs.org/crypt/-/crypt-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "5f11b21a6c05ef1b5e79708366da6374ece1e6a2", + "tarball": "http://registry.npmjs.org/crypt/-/crypt-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/crypt/" + }, + "crypto": { + "name": "crypto", + "description": "JavaScript implementations of standard and secure cryptographic algorithms.", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "gozala", + "email": "rfobic@gmail.com" + } + ], + "time": { + "modified": "2011-11-08T17:53:56.084Z", + "created": "2011-04-14T15:34:54.091Z", + "0.0.1": "2011-04-14T15:34:54.493Z", + "0.0.3": "2011-11-08T17:53:56.084Z" + }, + "author": { + "name": "Irakli Gozalishvili", + "email": "rfobic@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Gozala/crypto.git", + "web": "https://github.com/Gozala/crypto" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/crypto/0.0.1", + "0.0.3": "http://registry.npmjs.org/crypto/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "51bc1e4891e9057ec68bd10b6b3a23f51bc9980e", + "tarball": "http://registry.npmjs.org/crypto/-/crypto-0.0.1.tgz" + }, + "0.0.3": { + "shasum": "470a81b86be4c5ee17acc8207a1f5315ae20dbb0", + "tarball": "http://registry.npmjs.org/crypto/-/crypto-0.0.3.tgz" + } + }, + "keywords": [ + "crypto", + "md5", + "sha1" + ], + "url": "http://registry.npmjs.org/crypto/" + }, + "csj": { + "name": "csj", + "description": "Computing Science in JavaScript", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "tanepiper", + "email": "piper.tane@gmail.com" + } + ], + "time": { + "modified": "2011-01-29T20:53:22.679Z", + "created": "2011-01-29T20:53:21.870Z", + "1.0.0": "2011-01-29T20:53:22.679Z" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/csj/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "c8ec038168e53ed8378305171312ca60e678607e", + "tarball": "http://registry.npmjs.org/csj/-/csj-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/csj/" + }, + "cson": { + "name": "cson", + "description": "CoffeeScript-Object-Notation Parser. Same as JSON but for CoffeeScript objects", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "balupton", + "email": "b@lupton.cc" + } + ], + "time": { + "modified": "2011-08-10T03:34:09.096Z", + "created": "2011-06-02T05:40:23.430Z", + "0.1.0": "2011-06-02T05:40:32.720Z", + "0.1.1": "2011-07-01T12:47:34.778Z", + "0.2.0": "2011-08-10T03:34:09.096Z" + }, + "author": { + "name": "Benjamin Lupton", + "email": "b@lupton.cc", + "url": "http://balupton.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/balupton/cson.npm.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/cson/0.1.0", + "0.1.1": "http://registry.npmjs.org/cson/0.1.1", + "0.2.0": "http://registry.npmjs.org/cson/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "44b04840cd4537773c3c0e6564bccb0dcb2bf387", + "tarball": "http://registry.npmjs.org/cson/-/cson-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "0e26456a398f88ea04591f7fd8eed6efeabec4a9", + "tarball": "http://registry.npmjs.org/cson/-/cson-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "cefcce04417017e7202e4990a13fc3b84338ed1e", + "tarball": "http://registry.npmjs.org/cson/-/cson-0.2.0.tgz" + } + }, + "keywords": [ + "javascript", + "coffeescript", + "json", + "cson", + "parse", + "stringify" + ], + "url": "http://registry.npmjs.org/cson/" + }, + "csrf-express": { + "name": "csrf-express", + "description": "CSRF protection for express", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "alfredwesterveld", + "email": "alfredwesterveld@gmail.com" + } + ], + "time": { + "modified": "2011-02-14T17:02:45.476Z", + "created": "2011-02-14T17:02:44.974Z", + "0.0.1": "2011-02-14T17:02:45.476Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/csrf-express/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "ec7f6b4d6eb8035b710e699620b62a5f164014c6", + "tarball": "http://registry.npmjs.org/csrf-express/-/csrf-express-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/csrf-express/" + }, + "css-crawler": { + "name": "css-crawler", + "description": "Crawl web via css selector", + "dist-tags": { + "latest": "0.1.8" + }, + "maintainers": [ + { + "name": "huang47", + "email": "huge.huang@gmail.com" + } + ], + "time": { + "modified": "2011-11-29T08:00:44.477Z", + "created": "2011-06-22T02:40:45.865Z", + "0.1.2": "2011-06-22T02:40:48.898Z", + "0.1.3": "2011-06-23T09:26:30.780Z", + "0.1.4": "2011-06-25T05:54:20.732Z", + "0.1.5": "2011-06-27T07:07:33.311Z", + "0.1.6": "2011-06-30T15:20:23.429Z", + "0.1.7": "2011-06-30T15:27:05.952Z", + "0.1.8": "2011-11-29T08:00:44.477Z" + }, + "author": { + "name": "huang47", + "email": "huge.huang@gmail.com", + "url": "huang47.blogspot.com" + }, + "repository": { + "url": "" + }, + "versions": { + "0.1.2": "http://registry.npmjs.org/css-crawler/0.1.2", + "0.1.3": "http://registry.npmjs.org/css-crawler/0.1.3", + "0.1.4": "http://registry.npmjs.org/css-crawler/0.1.4", + "0.1.5": "http://registry.npmjs.org/css-crawler/0.1.5", + "0.1.6": "http://registry.npmjs.org/css-crawler/0.1.6", + "0.1.7": "http://registry.npmjs.org/css-crawler/0.1.7", + "0.1.8": "http://registry.npmjs.org/css-crawler/0.1.8" + }, + "dist": { + "0.1.2": { + "shasum": "a1923c22745ff955e138405d9e58215cc9b3abe9", + "tarball": "http://registry.npmjs.org/css-crawler/-/css-crawler-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "da588d28978221cd19096d48d01e79660a06de2b", + "tarball": "http://registry.npmjs.org/css-crawler/-/css-crawler-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "b44f9dfac380c9a7730a0d247f1ad7054d3d2602", + "tarball": "http://registry.npmjs.org/css-crawler/-/css-crawler-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "59bee7124f3d77b58a745c6b1debc804985f0c4d", + "tarball": "http://registry.npmjs.org/css-crawler/-/css-crawler-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "2b0e75917f3cfc1555e458e5b2ebffd8b237388e", + "tarball": "http://registry.npmjs.org/css-crawler/-/css-crawler-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "8e1e2e187f689c16e6ae668ff0cd39ce27c35edf", + "tarball": "http://registry.npmjs.org/css-crawler/-/css-crawler-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "3195beee390752a96330eed75f658986653e65a1", + "tarball": "http://registry.npmjs.org/css-crawler/-/css-crawler-0.1.8.tgz" + } + }, + "url": "http://registry.npmjs.org/css-crawler/" + }, + "css-smasher": { + "name": "css-smasher", + "description": "Minimize the size of your CSS without changing it's meaning.", + "dist-tags": { + "latest": "0.5.0" + }, + "maintainers": [ + { + "name": "markbennett", + "email": "mark@burmis.ca" + } + ], + "time": { + "modified": "2011-06-23T23:56:55.154Z", + "created": "2011-06-23T23:56:54.711Z", + "0.5.0": "2011-06-23T23:56:55.154Z" + }, + "author": { + "name": "Mark Bennett", + "email": "mark@burmis.ca", + "url": "http://github.com/MarkBennett" + }, + "repository": { + "type": "git", + "url": "git://github.com/MarkBennett/css-smasher.git" + }, + "versions": { + "0.5.0": "http://registry.npmjs.org/css-smasher/0.5.0" + }, + "dist": { + "0.5.0": { + "shasum": "459fe4c3dc6ae3a794e072dca9b6bfe348886a7f", + "tarball": "http://registry.npmjs.org/css-smasher/-/css-smasher-0.5.0.tgz" + } + }, + "keywords": [ + "css,minify,compress,minimize" + ], + "url": "http://registry.npmjs.org/css-smasher/" + }, + "css-sourcery": { + "name": "css-sourcery", + "description": "A code-as-data take on conjuring up CSS", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "reissbaker", + "email": "matthew.reiss.baker@gmail.com" + } + ], + "time": { + "modified": "2011-10-28T06:12:02.134Z", + "created": "2011-09-17T23:41:28.296Z", + "0.0.1": "2011-09-17T23:41:28.813Z", + "0.0.2": "2011-10-28T06:12:02.134Z" + }, + "author": { + "name": "Matt Baker" + }, + "repository": { + "type": "git", + "url": "git://github.com/reissbaker/css-sourcery.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/css-sourcery/0.0.1", + "0.0.2": "http://registry.npmjs.org/css-sourcery/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "28bd957e10b84a7e861ba550badf3bb48dda4102", + "tarball": "http://registry.npmjs.org/css-sourcery/-/css-sourcery-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "3ddb1db6b1c2f996cb6f3cf47b3fe997dc4cee62", + "tarball": "http://registry.npmjs.org/css-sourcery/-/css-sourcery-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/css-sourcery/" + }, + "css2json": { + "name": "css2json", + "description": "Parse css to json.", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "kesla", + "email": "david.bjorklund@gmail.com" + } + ], + "time": { + "modified": "2011-09-06T23:25:07.134Z", + "created": "2011-09-06T01:34:58.799Z", + "0.0.1": "2011-09-06T01:35:00.522Z", + "0.0.3": "2011-09-06T23:25:07.134Z" + }, + "author": { + "name": "David Björklund", + "email": "david.bjorklund@gmail.com", + "url": "http://davidbjorklund.se" + }, + "repository": { + "type": "git", + "url": "git://github.com/kesla/css2json.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/css2json/0.0.1", + "0.0.3": "http://registry.npmjs.org/css2json/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "039a9515e4a137b64ab4d9ac64fe35ec256c3e92", + "tarball": "http://registry.npmjs.org/css2json/-/css2json-0.0.1.tgz" + }, + "0.0.3": { + "shasum": "ed7faf0030371cddeabeb3b51571e749da768f42", + "tarball": "http://registry.npmjs.org/css2json/-/css2json-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/css2json/" + }, + "cssbeautify": { + "name": "cssbeautify", + "description": "Repackaging of Sencha Labs' cssbeautify as an NPM module", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "wblanchette", + "email": "wb@collectivecognition.com" + } + ], + "time": { + "modified": "2011-10-25T14:53:15.242Z", + "created": "2011-10-25T14:53:14.785Z", + "0.1.0": "2011-10-25T14:53:15.242Z" + }, + "author": { + "name": "William Blanchette", + "email": "wb@collectivecognition.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/drastik/cssbeautify.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/cssbeautify/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "76b4955dd8dad2e69e509a43fe10b0953af6c9c5", + "tarball": "http://registry.npmjs.org/cssbeautify/-/cssbeautify-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/cssbeautify/" + }, + "csskeeper": { + "name": "csskeeper", + "description": "Tools for keeping CSS files and usage in check.", + "dist-tags": { + "latest": "0.2.0beta1" + }, + "maintainers": [ + { + "name": "niklasl", + "email": "lindstream@gmail.com" + } + ], + "time": { + "modified": "2011-01-19T23:10:33.299Z", + "created": "2011-01-11T03:43:56.067Z", + "0.1.0": "2011-01-11T03:43:56.596Z", + "0.2.0beta1": "2011-01-19T23:10:33.299Z" + }, + "author": { + "name": "Niklas Lindström", + "email": "lindstream@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/csskeeper/0.1.0", + "0.2.0beta1": "http://registry.npmjs.org/csskeeper/0.2.0beta1" + }, + "dist": { + "0.1.0": { + "shasum": "8b773f13270fd4af461460593a05b7788e154a25", + "tarball": "http://registry.npmjs.org/csskeeper/-/csskeeper-0.1.0.tgz" + }, + "0.2.0beta1": { + "shasum": "fbb1169e008d4f0722e32edd8c79e3fb859b93a5", + "tarball": "http://registry.npmjs.org/csskeeper/-/csskeeper-0.2.0beta1.tgz" + } + }, + "keywords": [ + "css", + "html", + "tool" + ], + "url": "http://registry.npmjs.org/csskeeper/" + }, + "csslike": { + "name": "csslike", + "description": "a css preprocessor", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "chjj", + "email": "chjjeffrey@gmail.com" + } + ], + "time": { + "modified": "2011-07-20T06:49:34.671Z", + "created": "2011-07-20T06:49:34.195Z", + "0.0.1": "2011-07-20T06:49:34.671Z" + }, + "author": { + "name": "Christopher Jeffrey" + }, + "repository": { + "type": "git", + "url": "git://github.com/chjj/csslike.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/csslike/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "f6e135884e144ffe474a0446d55a1ce4e3854a6f", + "tarball": "http://registry.npmjs.org/csslike/-/csslike-0.0.1.tgz" + } + }, + "keywords": [ + "css", + "preprocessor" + ], + "url": "http://registry.npmjs.org/csslike/" + }, + "csslint": { + "name": "csslint", + "description": "CSSLint", + "dist-tags": { + "latest": "0.8.5" + }, + "maintainers": [ + { + "name": "nzakas", + "email": "nzakas@yahoo-inc.com" + } + ], + "time": { + "modified": "2011-11-15T16:20:55.489Z", + "created": "2011-06-15T17:58:51.762Z", + "0.1.0": "2011-06-15T17:58:52.378Z", + "0.2.0": "2011-06-18T17:07:28.549Z", + "0.3.0": "2011-06-26T17:38:46.071Z", + "0.3.1": "2011-06-26T17:55:54.839Z", + "0.3.2": "2011-06-26T22:43:22.548Z", + "0.4.0": "2011-07-06T01:54:12.221Z", + "0.5.0": "2011-07-30T01:19:27.551Z", + "0.6.0": "2011-09-03T18:00:29.294Z", + "0.6.1": "2011-09-08T15:51:31.377Z", + "0.7.0": "2011-10-14T18:53:50.569Z", + "0.8.0": "2011-10-24T22:15:29.769Z", + "0.8.1": "2011-10-25T16:25:56.419Z", + "0.8.5": "2011-11-15T16:20:55.489Z" + }, + "author": { + "name": "Nicholas C. Zakas" + }, + "repository": { + "type": "git", + "url": "git://github.com/stubbornella/csslint.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/csslint/0.1.0", + "0.2.0": "http://registry.npmjs.org/csslint/0.2.0", + "0.3.0": "http://registry.npmjs.org/csslint/0.3.0", + "0.3.1": "http://registry.npmjs.org/csslint/0.3.1", + "0.3.2": "http://registry.npmjs.org/csslint/0.3.2", + "0.4.0": "http://registry.npmjs.org/csslint/0.4.0", + "0.5.0": "http://registry.npmjs.org/csslint/0.5.0", + "0.6.0": "http://registry.npmjs.org/csslint/0.6.0", + "0.6.1": "http://registry.npmjs.org/csslint/0.6.1", + "0.7.0": "http://registry.npmjs.org/csslint/0.7.0", + "0.8.0": "http://registry.npmjs.org/csslint/0.8.0", + "0.8.1": "http://registry.npmjs.org/csslint/0.8.1", + "0.8.5": "http://registry.npmjs.org/csslint/0.8.5" + }, + "dist": { + "0.1.0": { + "shasum": "591d80b5d068352d0ef777dfee1302bea869d802", + "tarball": "http://registry.npmjs.org/csslint/-/csslint-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "c10f2d6c275e1ca319346f598098b21154e827b0", + "tarball": "http://registry.npmjs.org/csslint/-/csslint-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "2d13a7d065647777832d871da57aebd271b2604f", + "tarball": "http://registry.npmjs.org/csslint/-/csslint-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "d701b370370cf7d7d40ee48f39c70d225965d676", + "tarball": "http://registry.npmjs.org/csslint/-/csslint-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "c55addceed242a5777da0dd92efefc03a10969a5", + "tarball": "http://registry.npmjs.org/csslint/-/csslint-0.3.2.tgz" + }, + "0.4.0": { + "shasum": "e49b0787b7df30fb964160e6ff0dba73757d5eeb", + "tarball": "http://registry.npmjs.org/csslint/-/csslint-0.4.0.tgz" + }, + "0.5.0": { + "shasum": "6c5b6a862a44692af867b70200d1f254df8c479e", + "tarball": "http://registry.npmjs.org/csslint/-/csslint-0.5.0.tgz" + }, + "0.6.0": { + "shasum": "191d6a489fe17ac49a3abf29313f78bc5180073a", + "tarball": "http://registry.npmjs.org/csslint/-/csslint-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "d1381b86932edaabf9aee95e30bb38a4864b1f43", + "tarball": "http://registry.npmjs.org/csslint/-/csslint-0.6.1.tgz" + }, + "0.7.0": { + "shasum": "c2a82bb730e77fb4a14ee5f535310af8ad62bdc4", + "tarball": "http://registry.npmjs.org/csslint/-/csslint-0.7.0.tgz" + }, + "0.8.0": { + "shasum": "c6acfb2cdf553b722614058f2f697bcbe052b32e", + "tarball": "http://registry.npmjs.org/csslint/-/csslint-0.8.0.tgz" + }, + "0.8.1": { + "shasum": "13d9776d7a1d5060901511f9011b40f5dc567e49", + "tarball": "http://registry.npmjs.org/csslint/-/csslint-0.8.1.tgz" + }, + "0.8.5": { + "shasum": "b6c76402186f290a0eeaffc534d6d1f241718d8a", + "tarball": "http://registry.npmjs.org/csslint/-/csslint-0.8.5.tgz" + } + }, + "url": "http://registry.npmjs.org/csslint/" + }, + "cssmin": { + "name": "cssmin", + "description": "A simple CSS minifier that uses a port of YUICompressor in JS", + "dist-tags": { + "latest": "0.3.1" + }, + "maintainers": [ + { + "name": "jbleuzen", + "email": "zenzen77@gmail.com" + } + ], + "author": { + "name": "Johan Bleuzen", + "url": "http://blog.johanbleuzen.fr" + }, + "time": { + "modified": "2011-11-09T08:37:35.089Z", + "created": "2011-04-13T01:07:23.625Z", + "0.1.0": "2011-04-13T01:07:23.625Z", + "0.2.0": "2011-04-13T01:07:23.625Z", + "0.3.0": "2011-04-13T01:07:23.625Z", + "0.3.1": "2011-11-09T08:37:35.089Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/jbleuzen/node-cssmin.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/cssmin/0.1.0", + "0.2.0": "http://registry.npmjs.org/cssmin/0.2.0", + "0.3.0": "http://registry.npmjs.org/cssmin/0.3.0", + "0.3.1": "http://registry.npmjs.org/cssmin/0.3.1" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/cssmin/-/cssmin-0.1.0.tgz" + }, + "0.2.0": { + "tarball": "http://packages:5984/cssmin/-/cssmin-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "d2915b136d97c0a50d175826143ac6da388447f2", + "tarball": "http://registry.npmjs.org/cssmin/-/cssmin-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "db7e733e77d175b1202622f5805f4fe98987e761", + "tarball": "http://registry.npmjs.org/cssmin/-/cssmin-0.3.1.tgz" + } + }, + "url": "http://registry.npmjs.org/cssmin/" + }, + "csso": { + "name": "csso", + "description": "CSSO — CSS optimizer", + "dist-tags": { + "latest": "1.2.8" + }, + "maintainers": [ + { + "name": "afelix", + "email": "skryzhanovsky@gmail.com" + } + ], + "time": { + "modified": "2011-09-29T16:26:04.985Z", + "created": "2011-08-31T14:44:07.611Z", + "1.2.0": "2011-08-31T14:44:08.534Z", + "1.2.1": "2011-09-01T14:52:39.546Z", + "1.2.2": "2011-09-03T11:10:27.357Z", + "1.2.3": "2011-09-05T13:58:53.086Z", + "1.2.4": "2011-09-07T23:53:07.712Z", + "1.2.5": "2011-09-08T12:11:48.165Z", + "1.2.6": "2011-09-08T16:15:41.522Z", + "1.2.7": "2011-09-10T21:48:03.740Z", + "1.2.8": "2011-09-29T16:26:04.985Z" + }, + "author": { + "name": "Sergey Kryzhanovsky", + "email": "skryzhanovsky@ya.ru", + "url": "http://github.com/afelix" + }, + "repository": { + "type": "git", + "url": "git://github.com/afelix/csso.git" + }, + "versions": { + "1.2.0": "http://registry.npmjs.org/csso/1.2.0", + "1.2.1": "http://registry.npmjs.org/csso/1.2.1", + "1.2.2": "http://registry.npmjs.org/csso/1.2.2", + "1.2.3": "http://registry.npmjs.org/csso/1.2.3", + "1.2.4": "http://registry.npmjs.org/csso/1.2.4", + "1.2.5": "http://registry.npmjs.org/csso/1.2.5", + "1.2.6": "http://registry.npmjs.org/csso/1.2.6", + "1.2.7": "http://registry.npmjs.org/csso/1.2.7", + "1.2.8": "http://registry.npmjs.org/csso/1.2.8" + }, + "dist": { + "1.2.0": { + "shasum": "68b6f576509a887b2427095acc1a978689cfd03a", + "tarball": "http://registry.npmjs.org/csso/-/csso-1.2.0.tgz" + }, + "1.2.1": { + "shasum": "8f5c1ca7bd2be9e1aeb98a9133ab218280b42fcd", + "tarball": "http://registry.npmjs.org/csso/-/csso-1.2.1.tgz" + }, + "1.2.2": { + "shasum": "6049e69c0aed69ec48b22e1261e0d4a6cf369f3c", + "tarball": "http://registry.npmjs.org/csso/-/csso-1.2.2.tgz" + }, + "1.2.3": { + "shasum": "0c651c3776c4ffff2ca6f6a3e622c40a6afa052b", + "tarball": "http://registry.npmjs.org/csso/-/csso-1.2.3.tgz" + }, + "1.2.4": { + "shasum": "31f79caaf3123f1527bdc744bc1cca972e5b8985", + "tarball": "http://registry.npmjs.org/csso/-/csso-1.2.4.tgz" + }, + "1.2.5": { + "shasum": "f0447369b5f505fe4af4a430a87acc6cd2c13357", + "tarball": "http://registry.npmjs.org/csso/-/csso-1.2.5.tgz" + }, + "1.2.6": { + "shasum": "918e97a0d042b1d70760ef9999a2e2cfaa10ea3b", + "tarball": "http://registry.npmjs.org/csso/-/csso-1.2.6.tgz" + }, + "1.2.7": { + "shasum": "e5425c3ba75f5e8b4d76c0ee1a076ef955a3d92d", + "tarball": "http://registry.npmjs.org/csso/-/csso-1.2.7.tgz" + }, + "1.2.8": { + "shasum": "3a628367956baa356a29e091e724dfdda9c74da2", + "tarball": "http://registry.npmjs.org/csso/-/csso-1.2.8.tgz" + } + }, + "url": "http://registry.npmjs.org/csso/" + }, + "cssom": { + "name": "cssom", + "description": "CSS Object Model implementation and CSS parser", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "nv", + "email": "me@elv1s.ru" + } + ], + "time": { + "modified": "2011-11-20T12:18:49.773Z", + "created": "2011-10-24T21:58:19.383Z", + "0.2.0": "2011-10-24T21:58:20.263Z", + "0.2.1": "2011-11-20T12:18:49.773Z" + }, + "author": { + "name": "Nikita Vasilyev", + "email": "me@elv1s.ru" + }, + "repository": { + "type": "git", + "url": "git://github.com/NV/CSSOM.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/cssom/0.2.0", + "0.2.1": "http://registry.npmjs.org/cssom/0.2.1" + }, + "dist": { + "0.2.0": { + "shasum": "ce47d8d63b6bfe46b447476c7feac487b44a8a25", + "tarball": "http://registry.npmjs.org/cssom/-/cssom-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "6f8353134a3462df471827ae768cd1715885f652", + "tarball": "http://registry.npmjs.org/cssom/-/cssom-0.2.1.tgz" + } + }, + "keywords": [ + "CSS", + "CSSOM", + "parser", + "styleSheet" + ], + "url": "http://registry.npmjs.org/cssom/" + }, + "cssom-papandreou": { + "name": "cssom-papandreou", + "description": "CSS Object Model implementation and CSS parser (fork that hacks in support for multiple occurrences of the same CSS property in a rule)", + "dist-tags": { + "latest": "0.2.1-patch1" + }, + "maintainers": [ + { + "name": "papandreou", + "email": "andreas@one.com" + } + ], + "time": { + "modified": "2011-11-21T00:07:10.819Z", + "created": "2011-09-23T17:46:15.684Z", + "0.2.0-patch1": "2011-09-23T17:46:17.093Z", + "0.2.1-patch1": "2011-11-21T00:07:10.819Z" + }, + "author": { + "name": "Nikita Vasilyev", + "email": "me@elv1s.ru" + }, + "repository": { + "type": "git", + "url": "git://github.com/papandreou/CSSOM.git" + }, + "versions": { + "0.2.0-patch1": "http://registry.npmjs.org/cssom-papandreou/0.2.0-patch1", + "0.2.1-patch1": "http://registry.npmjs.org/cssom-papandreou/0.2.1-patch1" + }, + "dist": { + "0.2.0-patch1": { + "shasum": "e5fc19c35c47edfa41a6cf2a11640abc0c3f9c07", + "tarball": "http://registry.npmjs.org/cssom-papandreou/-/cssom-papandreou-0.2.0-patch1.tgz" + }, + "0.2.1-patch1": { + "shasum": "025072b228fd39660d3952cfd5b7dac7f9a3b011", + "tarball": "http://registry.npmjs.org/cssom-papandreou/-/cssom-papandreou-0.2.1-patch1.tgz" + } + }, + "keywords": [ + "CSS", + "CSSOM", + "parser", + "styleSheet" + ], + "url": "http://registry.npmjs.org/cssom-papandreou/" + }, + "cssp": { + "name": "cssp", + "description": "CSSP — Ometa-JS based CSS parser", + "dist-tags": { + "latest": "1.0.3" + }, + "maintainers": [ + { + "name": "afelix", + "email": "skryzhanovsky@gmail.com" + } + ], + "time": { + "modified": "2011-11-29T14:59:21.423Z", + "created": "2011-09-01T15:43:03.488Z", + "0.0.11": "2011-09-01T15:43:04.082Z", + "1.0.0": "2011-09-05T17:36:34.373Z", + "1.0.2": "2011-11-08T16:38:40.294Z", + "1.0.3": "2011-11-29T14:59:21.423Z" + }, + "author": { + "name": "Sergey Kryzhanovsky", + "email": "skryzhanovsky@ya.ru", + "url": "http://github.com/afelix" + }, + "repository": { + "type": "git", + "url": "git://github.com/afelix/cssp.git" + }, + "versions": { + "0.0.11": "http://registry.npmjs.org/cssp/0.0.11", + "1.0.0": "http://registry.npmjs.org/cssp/1.0.0", + "1.0.2": "http://registry.npmjs.org/cssp/1.0.2", + "1.0.3": "http://registry.npmjs.org/cssp/1.0.3" + }, + "dist": { + "0.0.11": { + "shasum": "914c2127a0dffd51bbf1356caf338a2b79b44494", + "tarball": "http://registry.npmjs.org/cssp/-/cssp-0.0.11.tgz" + }, + "1.0.0": { + "shasum": "09ccebc57ca457e87ecdea67a87250227a843b22", + "tarball": "http://registry.npmjs.org/cssp/-/cssp-1.0.0.tgz" + }, + "1.0.2": { + "shasum": "84c5ec514af2346d15220a46cfe36b96f8398b12", + "tarball": "http://registry.npmjs.org/cssp/-/cssp-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "f2f9ba2816d5e3bc67d287193847b149edcbf579", + "tarball": "http://registry.npmjs.org/cssp/-/cssp-1.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/cssp/" + }, + "cssunminifier": { + "name": "cssunminifier", + "description": "Make minified CSS readable.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "mrcoles", + "email": "peter.m.coles@gmail.com" + } + ], + "time": { + "modified": "2011-09-16T01:14:33.081Z", + "created": "2011-09-16T01:14:32.698Z", + "0.0.1": "2011-09-16T01:14:33.081Z" + }, + "author": { + "name": "Peter Coles", + "email": "peter@mrcoles.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/cssunminifier/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "a120641eb5eefd060cd5b639f61341bfc647618c", + "tarball": "http://registry.npmjs.org/cssunminifier/-/cssunminifier-0.0.1.tgz" + } + }, + "keywords": [ + "css", + "unminify", + "unminifier" + ], + "url": "http://registry.npmjs.org/cssunminifier/" + }, + "csv": { + "name": "csv", + "description": "CSV parser with simple api, full of options and tested against large datasets.", + "dist-tags": { + "latest": "0.0.10", + "stable": "0.0.2" + }, + "maintainers": [ + { + "name": "david", + "email": "david@adaltas.com" + } + ], + "author": { + "name": "David Worms", + "email": "david@adaltas.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/wdavidw/node-csv-parser.git" + }, + "time": { + "modified": "2011-09-05T22:28:30.155Z", + "created": "2011-01-21T11:48:11.161Z", + "0.0.1": "2011-01-21T11:48:11.161Z", + "0.0.2": "2011-01-21T11:48:11.161Z", + "0.0.3": "2011-01-21T11:48:11.161Z", + "0.0.5": "2011-01-21T11:48:11.161Z", + "0.0.6": "2011-01-27T15:08:41.875Z", + "0.0.7": "2011-02-14T21:26:47.782Z", + "0.0.9": "2011-04-10T14:57:53.983Z", + "0.0.10": "2011-09-05T22:28:30.155Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/csv/0.0.1", + "0.0.2": "http://registry.npmjs.org/csv/0.0.2", + "0.0.3": "http://registry.npmjs.org/csv/0.0.3", + "0.0.5": "http://registry.npmjs.org/csv/0.0.5", + "0.0.6": "http://registry.npmjs.org/csv/0.0.6", + "0.0.7": "http://registry.npmjs.org/csv/0.0.7", + "0.0.9": "http://registry.npmjs.org/csv/0.0.9", + "0.0.10": "http://registry.npmjs.org/csv/0.0.10" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/csv/-/csv-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/csv/-/csv-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/csv/-/csv-0.0.3.tgz" + }, + "0.0.5": { + "tarball": "http://registry.npmjs.org/csv/-/csv-0.0.5.tgz" + }, + "0.0.6": { + "tarball": "http://registry.npmjs.org/csv/-/csv-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "65190b9c40c35f07636987bbef6dc87e01bb4b13", + "tarball": "http://registry.npmjs.org/csv/-/csv-0.0.7.tgz" + }, + "0.0.9": { + "shasum": "09fb6254c7a9341e9aee101d64375285ab0ea8ac", + "tarball": "http://registry.npmjs.org/csv/-/csv-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "7dbe276f607c1a0f412a29de977819b2ecfd8eab", + "tarball": "http://registry.npmjs.org/csv/-/csv-0.0.10.tgz" + } + }, + "keywords": [ + "parser", + "csv" + ], + "url": "http://registry.npmjs.org/csv/" + }, + "csv2mongo": { + "name": "csv2mongo", + "description": "csv 2 mongo converter", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "sebbie", + "email": "sebbie@sebbie.pl" + } + ], + "time": { + "modified": "2011-06-23T06:32:14.869Z", + "created": "2011-06-22T22:16:37.137Z", + "0.0.1": "2011-06-22T22:16:37.938Z", + "0.0.2": "2011-06-23T06:20:05.087Z" + }, + "author": { + "name": "Sebastian Boguszewicz", + "email": "sebbie@sebbie.pl" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/csv2mongo/0.0.1", + "0.0.2": "http://registry.npmjs.org/csv2mongo/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "1eb51fc5af151a7fa0bd47c75288e0e3d7ea6bef", + "tarball": "http://registry.npmjs.org/csv2mongo/-/csv2mongo-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "e641ca4bfa208b93f68c917f82c8be6ed6bef970", + "tarball": "http://registry.npmjs.org/csv2mongo/-/csv2mongo-0.0.2.tgz" + } + }, + "keywords": [ + "csv", + "mongo", + "reader", + "convert" + ], + "url": "http://registry.npmjs.org/csv2mongo/" + }, + "csvjs": { + "name": "csvjs", + "description": "A csv parser for nodejs", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "jackhq", + "email": "tom@jackhq.com" + } + ], + "time": { + "modified": "2011-10-06T23:14:05.289Z", + "created": "2011-10-01T03:39:17.878Z", + "0.0.1": "2011-10-01T03:39:18.840Z", + "0.0.2": "2011-10-01T12:28:21.252Z", + "0.0.3": "2011-10-01T12:50:25.812Z", + "0.0.4": "2011-10-06T02:01:34.046Z", + "0.0.5": "2011-10-06T23:14:05.289Z" + }, + "author": { + "name": "Tom Wilson" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/csvjs/0.0.1", + "0.0.2": "http://registry.npmjs.org/csvjs/0.0.2", + "0.0.3": "http://registry.npmjs.org/csvjs/0.0.3", + "0.0.4": "http://registry.npmjs.org/csvjs/0.0.4", + "0.0.5": "http://registry.npmjs.org/csvjs/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "eb2608a82f20f8d1e06e014b714d35a504f21917", + "tarball": "http://registry.npmjs.org/csvjs/-/csvjs-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c69d4384a821a9572f686a43e21c1cce2d6c823c", + "tarball": "http://registry.npmjs.org/csvjs/-/csvjs-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "25e80f47208939ea03fc4f0320ed9b2310a2b9d1", + "tarball": "http://registry.npmjs.org/csvjs/-/csvjs-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "a3d328945a44e5d74cd07781bfc6ebbb98248134", + "tarball": "http://registry.npmjs.org/csvjs/-/csvjs-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "f64e1e350dcd605d8e67aab0e24a72b143ba5eef", + "tarball": "http://registry.npmjs.org/csvjs/-/csvjs-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/csvjs/" + }, + "csvutils": { + "name": "csvutils", + "description": "A collection of CSV utilities", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "cohara87", + "email": "cohara87@gmail.com" + } + ], + "time": { + "modified": "2011-08-12T23:46:25.341Z", + "created": "2011-05-16T11:22:56.308Z", + "0.1.0": "2011-05-16T11:22:57.826Z", + "0.1.1": "2011-05-16T11:43:04.759Z", + "0.1.2": "2011-05-17T11:07:53.519Z", + "0.1.3": "2011-05-19T10:39:51.585Z", + "0.1.4": "2011-08-12T23:46:25.341Z" + }, + "author": { + "name": "Chris O'Hara", + "email": "cohara87@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/chriso/csv-utils.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/csvutils/0.1.0", + "0.1.1": "http://registry.npmjs.org/csvutils/0.1.1", + "0.1.2": "http://registry.npmjs.org/csvutils/0.1.2", + "0.1.3": "http://registry.npmjs.org/csvutils/0.1.3", + "0.1.4": "http://registry.npmjs.org/csvutils/0.1.4" + }, + "dist": { + "0.1.0": { + "shasum": "efe5e9db3912f9f700365978f98073c3dce93220", + "tarball": "http://registry.npmjs.org/csvutils/-/csvutils-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "23a02efababdf2fd78bf21b439187cafea16448c", + "tarball": "http://registry.npmjs.org/csvutils/-/csvutils-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "ff10dadb7954b801639c6282d3891754aae9d61b", + "tarball": "http://registry.npmjs.org/csvutils/-/csvutils-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "f659cc2ba472a485d1b5d1f0689b2cc3d6484d10", + "tarball": "http://registry.npmjs.org/csvutils/-/csvutils-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "f81a4ffaacfc4b435284593e025c5444c423fb81", + "tarball": "http://registry.npmjs.org/csvutils/-/csvutils-0.1.4.tgz" + } + }, + "url": "http://registry.npmjs.org/csvutils/" + }, + "ctrlflow": { + "name": "ctrlflow", + "description": "mission critical ctrl flow library", + "dist-tags": { + "latest": "4.1.3" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-11-14T01:16:23.831Z", + "created": "2011-03-14T11:00:37.812Z", + "0.0.0": "2011-03-14T11:00:38.627Z", + "0.0.1": "2011-03-28T21:59:09.951Z", + "0.0.2": "2011-06-02T16:47:45.331Z", + "0.0.3": "2011-06-05T02:34:09.264Z", + "1.0.0": "2011-08-15T07:00:00.836Z", + "1.1.0": "2011-08-15T09:33:41.926Z", + "1.2.0": "2011-08-15T11:05:00.482Z", + "2.0.0": "2011-08-17T23:36:48.840Z", + "2.1.0": "2011-08-18T00:49:11.684Z", + "3.0.0": "2011-08-18T02:24:23.672Z", + "3.1.0": "2011-08-18T03:19:36.764Z", + "3.1.1": "2011-08-25T05:55:06.345Z", + "4.0.0": "2011-09-05T13:04:46.779Z", + "4.1.0": "2011-09-08T00:17:43.948Z", + "4.1.1": "2011-09-26T11:18:42.866Z", + "4.1.2": "2011-11-01T05:10:11.679Z", + "4.1.3": "2011-11-14T01:16:23.831Z" + }, + "author": { + "name": "Dominic", + "email": "dominic.tarr@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dominictarr/ctrlflow.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/ctrlflow/0.0.0", + "0.0.1": "http://registry.npmjs.org/ctrlflow/0.0.1", + "0.0.2": "http://registry.npmjs.org/ctrlflow/0.0.2", + "0.0.3": "http://registry.npmjs.org/ctrlflow/0.0.3", + "1.0.0": "http://registry.npmjs.org/ctrlflow/1.0.0", + "1.1.0": "http://registry.npmjs.org/ctrlflow/1.1.0", + "1.2.0": "http://registry.npmjs.org/ctrlflow/1.2.0", + "2.0.0": "http://registry.npmjs.org/ctrlflow/2.0.0", + "2.1.0": "http://registry.npmjs.org/ctrlflow/2.1.0", + "3.0.0": "http://registry.npmjs.org/ctrlflow/3.0.0", + "3.1.0": "http://registry.npmjs.org/ctrlflow/3.1.0", + "3.1.1": "http://registry.npmjs.org/ctrlflow/3.1.1", + "4.0.0": "http://registry.npmjs.org/ctrlflow/4.0.0", + "4.1.0": "http://registry.npmjs.org/ctrlflow/4.1.0", + "4.1.1": "http://registry.npmjs.org/ctrlflow/4.1.1", + "4.1.2": "http://registry.npmjs.org/ctrlflow/4.1.2", + "4.1.3": "http://registry.npmjs.org/ctrlflow/4.1.3" + }, + "dist": { + "0.0.0": { + "shasum": "82c0eac20655c520403cd99f48f4e2bd260cace7", + "tarball": "http://registry.npmjs.org/ctrlflow/-/ctrlflow-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "6eaa9abd9805d126c0a25dd8d9d39971f1cafd1a", + "tarball": "http://registry.npmjs.org/ctrlflow/-/ctrlflow-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "0e46fdb8cf61a5c3e6ea0cf45aa2ae5a8700c35a", + "tarball": "http://registry.npmjs.org/ctrlflow/-/ctrlflow-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "e96c180890dc05c2b3b43735f529a71293e139c0", + "tarball": "http://registry.npmjs.org/ctrlflow/-/ctrlflow-0.0.3.tgz" + }, + "1.0.0": { + "shasum": "9f3ce72060e9c32394f6f1c785fd346429b91e7f", + "tarball": "http://registry.npmjs.org/ctrlflow/-/ctrlflow-1.0.0.tgz" + }, + "1.1.0": { + "shasum": "8f15ebd60eb422b0f42d45c0dcf6e0cf926f5ae2", + "tarball": "http://registry.npmjs.org/ctrlflow/-/ctrlflow-1.1.0.tgz" + }, + "1.2.0": { + "shasum": "3ec64858594925c050856c71949d29f5b29ed139", + "tarball": "http://registry.npmjs.org/ctrlflow/-/ctrlflow-1.2.0.tgz" + }, + "2.0.0": { + "shasum": "480d590bb9df2f7b58cc9d2e27d97f9668c6492f", + "tarball": "http://registry.npmjs.org/ctrlflow/-/ctrlflow-2.0.0.tgz" + }, + "2.1.0": { + "shasum": "131f0715499ccbf0575da80dadfe6d7f35fd2b39", + "tarball": "http://registry.npmjs.org/ctrlflow/-/ctrlflow-2.1.0.tgz" + }, + "3.0.0": { + "shasum": "0f2433ea6fa813d52d846e098b483e2c11815c5a", + "tarball": "http://registry.npmjs.org/ctrlflow/-/ctrlflow-3.0.0.tgz" + }, + "3.1.0": { + "shasum": "4eccf4cf48956b1bb9b46bee8146ddbb419b20ca", + "tarball": "http://registry.npmjs.org/ctrlflow/-/ctrlflow-3.1.0.tgz" + }, + "3.1.1": { + "shasum": "96a667ec5bea84e1377696a933135a106e5718db", + "tarball": "http://registry.npmjs.org/ctrlflow/-/ctrlflow-3.1.1.tgz" + }, + "4.0.0": { + "shasum": "f631e2901d71ca3851a737cbe3155ea3907f94ea", + "tarball": "http://registry.npmjs.org/ctrlflow/-/ctrlflow-4.0.0.tgz" + }, + "4.1.0": { + "shasum": "1dde0faa3b96fe8dec59c72f72d166ede4f78044", + "tarball": "http://registry.npmjs.org/ctrlflow/-/ctrlflow-4.1.0.tgz" + }, + "4.1.1": { + "shasum": "67243df41ebb44f1aff1ba0bea0efee42c8a8f5c", + "tarball": "http://registry.npmjs.org/ctrlflow/-/ctrlflow-4.1.1.tgz" + }, + "4.1.2": { + "shasum": "63668baee932d55f5daf49d271707d9ee73d2611", + "tarball": "http://registry.npmjs.org/ctrlflow/-/ctrlflow-4.1.2.tgz" + }, + "4.1.3": { + "shasum": "3028bec44f01a1c113fd9206fc4f998233784286", + "tarball": "http://registry.npmjs.org/ctrlflow/-/ctrlflow-4.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/ctrlflow/" + }, + "ctrlflow_tests": { + "name": "ctrlflow_tests", + "description": "", + "dist-tags": { + "latest": "2.0.1" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-08-18T00:25:24.946Z", + "created": "2011-08-18T00:25:21.400Z", + "2.0.1": "2011-08-18T00:25:24.946Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com", + "url": "http://bit.ly/dominictarr" + }, + "repository": { + "type": "git", + "url": "git://github.com/dominictarr/ctrlflow_tests.git" + }, + "versions": { + "2.0.1": "http://registry.npmjs.org/ctrlflow_tests/2.0.1" + }, + "dist": { + "2.0.1": { + "shasum": "bad7642d40b0072e3e3a982505450d7fa882bc2e", + "tarball": "http://registry.npmjs.org/ctrlflow_tests/-/ctrlflow_tests-2.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/ctrlflow_tests/" + }, + "ctype": { + "name": "ctype", + "description": "read and write binary structures and data types", + "dist-tags": { + "latest": "0.4.0" + }, + "maintainers": [ + { + "name": "rm", + "email": "rm@fingolfin.org" + } + ], + "time": { + "modified": "2011-12-13T21:39:55.050Z", + "created": "2011-04-22T02:14:59.250Z", + "0.0.1": "2011-04-22T02:14:59.864Z", + "0.0.2": "2011-05-25T05:06:44.989Z", + "0.0.3": "2011-06-26T22:51:01.675Z", + "0.1.0": "2011-09-09T17:34:33.154Z", + "0.2.0": "2011-09-26T23:30:00.925Z", + "0.2.1": "2011-09-28T05:30:57.092Z", + "0.3.0": "2011-10-07T14:56:23.207Z", + "0.3.1": "2011-11-09T17:47:53.702Z", + "0.4.0": "2011-12-13T21:39:55.050Z" + }, + "author": { + "name": "Robert Mustacchi", + "email": "rm@fingolfin.org" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ctype/0.0.1", + "0.0.2": "http://registry.npmjs.org/ctype/0.0.2", + "0.0.3": "http://registry.npmjs.org/ctype/0.0.3", + "0.1.0": "http://registry.npmjs.org/ctype/0.1.0", + "0.2.0": "http://registry.npmjs.org/ctype/0.2.0", + "0.2.1": "http://registry.npmjs.org/ctype/0.2.1", + "0.3.0": "http://registry.npmjs.org/ctype/0.3.0", + "0.3.1": "http://registry.npmjs.org/ctype/0.3.1", + "0.4.0": "http://registry.npmjs.org/ctype/0.4.0" + }, + "dist": { + "0.0.1": { + "shasum": "4c53e94f9f701c8bcea23cc6d1da666f23e111f5", + "tarball": "http://registry.npmjs.org/ctype/-/ctype-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "b18f3d88d9b74c6b247c7f8a285bbe10ce4adfdd", + "tarball": "http://registry.npmjs.org/ctype/-/ctype-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "6adec709db4b5d05bd613a69308181231956952d", + "tarball": "http://registry.npmjs.org/ctype/-/ctype-0.0.3.tgz" + }, + "0.1.0": { + "shasum": "3b3bfb3c45b5d6d0b33eff3d142b5fa696e739d4", + "tarball": "http://registry.npmjs.org/ctype/-/ctype-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "230283e4795bcd6fa1e4662177e1f2e3f3d76474", + "tarball": "http://registry.npmjs.org/ctype/-/ctype-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "b3a767bb923cf9ef2aeba0df58b334a2d3487502", + "tarball": "http://registry.npmjs.org/ctype/-/ctype-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "5ffec2d138bb25ace97dc5740a892b1dba33285e", + "tarball": "http://registry.npmjs.org/ctype/-/ctype-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "5b6f39ca93c081508d1ff1be400c692082c07f41", + "tarball": "http://registry.npmjs.org/ctype/-/ctype-0.3.1.tgz" + }, + "0.4.0": { + "shasum": "67beb93c730e88cddefd96c31a174058455957ce", + "tarball": "http://registry.npmjs.org/ctype/-/ctype-0.4.0.tgz" + } + }, + "url": "http://registry.npmjs.org/ctype/" + }, + "cube": { + "name": "cube", + "description": "A system for time series visualization using MongoDB, Node and D3.", + "dist-tags": { + "latest": "0.0.14" + }, + "maintainers": [ + { + "name": "mbostock", + "email": "mbostock@gmail.com" + } + ], + "time": { + "modified": "2011-11-30T21:00:00.244Z", + "created": "2011-09-15T20:01:12.611Z", + "0.0.1": "2011-09-15T20:01:13.103Z", + "0.0.4": "2011-09-16T22:22:25.378Z", + "0.0.6": "2011-10-05T17:52:22.028Z", + "0.0.8": "2011-10-12T01:16:50.037Z", + "0.0.9": "2011-10-13T18:08:02.958Z", + "0.0.13": "2011-11-30T05:20:50.212Z", + "0.0.14": "2011-11-30T21:00:00.244Z" + }, + "author": { + "name": "Mike Bostock", + "url": "http://bost.ocks.org/mike" + }, + "repository": { + "type": "git", + "url": "git://github.com/square/cube.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/cube/0.0.1", + "0.0.4": "http://registry.npmjs.org/cube/0.0.4", + "0.0.6": "http://registry.npmjs.org/cube/0.0.6", + "0.0.8": "http://registry.npmjs.org/cube/0.0.8", + "0.0.9": "http://registry.npmjs.org/cube/0.0.9", + "0.0.13": "http://registry.npmjs.org/cube/0.0.13", + "0.0.14": "http://registry.npmjs.org/cube/0.0.14" + }, + "dist": { + "0.0.1": { + "shasum": "639083409165855b34930e4f306b750f33642ecf", + "tarball": "http://registry.npmjs.org/cube/-/cube-0.0.1.tgz" + }, + "0.0.4": { + "shasum": "f9d7a5ef25b1fef7262c600f6c1fdb60e1968e30", + "tarball": "http://registry.npmjs.org/cube/-/cube-0.0.4.tgz" + }, + "0.0.6": { + "shasum": "d783cf465500b003025e7494ef14acb4e8f0be9b", + "tarball": "http://registry.npmjs.org/cube/-/cube-0.0.6.tgz" + }, + "0.0.8": { + "shasum": "480697c39b2d4b8e9379cc92346b968f1d300090", + "tarball": "http://registry.npmjs.org/cube/-/cube-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "9c37773d8fd7071d79c4a3d1e66b3e1fbff2f55f", + "tarball": "http://registry.npmjs.org/cube/-/cube-0.0.9.tgz" + }, + "0.0.13": { + "shasum": "dc65979f3568f92af95d8ef48572226ed2bdcd26", + "tarball": "http://registry.npmjs.org/cube/-/cube-0.0.13.tgz" + }, + "0.0.14": { + "shasum": "42d3207321a95f3b8cda12b7320033deb9bffbf0", + "tarball": "http://registry.npmjs.org/cube/-/cube-0.0.14.tgz" + } + }, + "keywords": [ + "time series", + "visualization" + ], + "url": "http://registry.npmjs.org/cube/" + }, + "cucumber": { + "name": "cucumber", + "description": "The official JavaScript implementation of Cucumber.", + "dist-tags": { + "latest": "0.2.3" + }, + "maintainers": [ + { + "name": "jbpros", + "email": "jb@jbpros.com" + } + ], + "time": { + "modified": "2011-12-02T23:10:21.900Z", + "created": "2011-07-28T16:53:31.573Z", + "0.1.1": "2011-07-28T16:53:32.185Z", + "0.1.2": "2011-08-01T20:38:11.904Z", + "0.1.3": "2011-09-03T21:44:22.448Z", + "0.1.4": "2011-09-06T21:56:06.378Z", + "0.1.5": "2011-09-12T21:37:07.707Z", + "0.2.0": "2011-10-12T23:04:56.611Z", + "0.2.1": "2011-10-19T22:58:21.961Z", + "0.2.2": "2011-11-04T23:01:37.154Z", + "0.2.3": "2011-12-02T23:10:21.900Z" + }, + "author": { + "name": "Julien Biezemans", + "email": "jb@jbpros.com", + "url": "http://jbpros.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/cucumber/cucumber-js.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/cucumber/0.1.1", + "0.1.2": "http://registry.npmjs.org/cucumber/0.1.2", + "0.1.3": "http://registry.npmjs.org/cucumber/0.1.3", + "0.1.4": "http://registry.npmjs.org/cucumber/0.1.4", + "0.1.5": "http://registry.npmjs.org/cucumber/0.1.5", + "0.2.0": "http://registry.npmjs.org/cucumber/0.2.0", + "0.2.1": "http://registry.npmjs.org/cucumber/0.2.1", + "0.2.2": "http://registry.npmjs.org/cucumber/0.2.2", + "0.2.3": "http://registry.npmjs.org/cucumber/0.2.3" + }, + "dist": { + "0.1.1": { + "shasum": "b68f510abdabc8107d4b8831aca862d79a8ea71e", + "tarball": "http://registry.npmjs.org/cucumber/-/cucumber-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "a8432e4b9df738c40b0bac6a8ea6321475f36e7e", + "tarball": "http://registry.npmjs.org/cucumber/-/cucumber-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "a3a5e5fd460ba2d0db3dfb742c63bd13365dda01", + "tarball": "http://registry.npmjs.org/cucumber/-/cucumber-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "37f01bc8728e93117c0d508996b652ac1e4cb4e6", + "tarball": "http://registry.npmjs.org/cucumber/-/cucumber-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "ac235b6e9d916d15bdda32335d6731eb1cb3ea84", + "tarball": "http://registry.npmjs.org/cucumber/-/cucumber-0.1.5.tgz" + }, + "0.2.0": { + "shasum": "2c5327a49df46231ec607afe258e1841e281fadf", + "tarball": "http://registry.npmjs.org/cucumber/-/cucumber-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "412d48edcbeb0aa0eb5311f5da629aa3d21aeb38", + "tarball": "http://registry.npmjs.org/cucumber/-/cucumber-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "01d4cdd960e341790c33c04fd4ea22a4670df30a", + "tarball": "http://registry.npmjs.org/cucumber/-/cucumber-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "6db78bc88b9248e9662c4a485174adefc21ee2e8", + "tarball": "http://registry.npmjs.org/cucumber/-/cucumber-0.2.3.tgz" + } + }, + "keywords": [ + "testing", + "bdd", + "cucumber", + "gherkin", + "tests" + ], + "url": "http://registry.npmjs.org/cucumber/" + }, + "cucumber-html": { + "name": "cucumber-html", + "description": "Cross platform HTML formatter for all implementations of Cucumber", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "jbpros", + "email": "jb@jbpros.com" + }, + { + "name": "aslakhellesoy", + "email": "aslak.hellesoy@gmail.com" + }, + { + "name": "cedric.lamalle", + "email": "cedric.lamalle@gmail.com" + } + ], + "time": { + "modified": "2011-12-04T00:10:12.428Z", + "created": "2011-09-23T22:39:39.380Z", + "0.0.0": "2011-09-23T22:39:40.076Z", + "0.1.0": "2011-09-29T21:34:37.934Z", + "0.2.0": "2011-09-30T21:42:06.783Z", + "0.2.1": "2011-12-04T00:10:12.428Z" + }, + "author": { + "name": "Aslak Hellesøy", + "email": "aslak.hellesoy@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/cucumber/cucumber-html.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/cucumber-html/0.0.0", + "0.1.0": "http://registry.npmjs.org/cucumber-html/0.1.0", + "0.2.0": "http://registry.npmjs.org/cucumber-html/0.2.0", + "0.2.1": "http://registry.npmjs.org/cucumber-html/0.2.1" + }, + "dist": { + "0.0.0": { + "shasum": "00deb6953bf78021fed4f712e8a0e9f56d2dfead", + "tarball": "http://registry.npmjs.org/cucumber-html/-/cucumber-html-0.0.0.tgz" + }, + "0.1.0": { + "shasum": "d969974ebe7e036dd14c90255ca8adca53182d09", + "tarball": "http://registry.npmjs.org/cucumber-html/-/cucumber-html-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "4724b7df0002fb51851745992d1f9748fdb06e4f", + "tarball": "http://registry.npmjs.org/cucumber-html/-/cucumber-html-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "9a7f1ab30e19a152fa6558663ff0d652b00beee5", + "tarball": "http://registry.npmjs.org/cucumber-html/-/cucumber-html-0.2.1.tgz" + } + }, + "url": "http://registry.npmjs.org/cucumber-html/" + }, + "cucumis": { + "name": "cucumis", + "description": "BDD Cucumber Style Asynchronous Testing Framework for node.js", + "dist-tags": { + "latest": "1.0.17" + }, + "maintainers": [ + { + "name": "eugeneware", + "email": "eugene@noblesamurai.com" + } + ], + "time": { + "modified": "2011-02-16T13:45:53.427Z", + "created": "2011-02-13T14:35:52.959Z", + "1.0.2": "2011-02-13T14:35:54.242Z", + "1.0.3": "2011-02-13T14:46:38.201Z", + "1.0.4": "2011-02-13T14:47:53.702Z", + "1.0.5": "2011-02-13T16:20:45.190Z", + "1.0.6": "2011-02-14T08:48:40.106Z", + "1.0.7": "2011-02-14T12:12:15.948Z", + "1.0.8": "2011-02-14T12:49:17.581Z", + "1.0.9": "2011-02-14T14:20:40.389Z", + "1.0.10": "2011-02-15T13:16:16.691Z", + "1.0.11": "2011-02-15T13:22:08.772Z", + "1.0.12": "2011-02-16T04:07:18.398Z", + "1.0.13": "2011-02-16T05:54:12.511Z", + "1.0.14": "2011-02-16T08:53:08.959Z", + "1.0.15": "2011-02-16T09:07:09.646Z", + "1.0.16": "2011-02-16T12:37:30.884Z", + "1.0.17": "2011-02-16T13:45:53.427Z" + }, + "author": { + "name": "Eugene Ware", + "email": "eugene@noblesamurai.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/noblesamurai/cucumis.git" + }, + "versions": { + "1.0.2": "http://registry.npmjs.org/cucumis/1.0.2", + "1.0.3": "http://registry.npmjs.org/cucumis/1.0.3", + "1.0.4": "http://registry.npmjs.org/cucumis/1.0.4", + "1.0.5": "http://registry.npmjs.org/cucumis/1.0.5", + "1.0.6": "http://registry.npmjs.org/cucumis/1.0.6", + "1.0.7": "http://registry.npmjs.org/cucumis/1.0.7", + "1.0.8": "http://registry.npmjs.org/cucumis/1.0.8", + "1.0.9": "http://registry.npmjs.org/cucumis/1.0.9", + "1.0.10": "http://registry.npmjs.org/cucumis/1.0.10", + "1.0.11": "http://registry.npmjs.org/cucumis/1.0.11", + "1.0.12": "http://registry.npmjs.org/cucumis/1.0.12", + "1.0.13": "http://registry.npmjs.org/cucumis/1.0.13", + "1.0.14": "http://registry.npmjs.org/cucumis/1.0.14", + "1.0.15": "http://registry.npmjs.org/cucumis/1.0.15", + "1.0.16": "http://registry.npmjs.org/cucumis/1.0.16", + "1.0.17": "http://registry.npmjs.org/cucumis/1.0.17" + }, + "dist": { + "1.0.2": { + "shasum": "c737e306cdabeb9be7baa5a9d89a63f1a187f0a6", + "tarball": "http://registry.npmjs.org/cucumis/-/cucumis-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "61c117f25f0dfb8a9012ef4c6c847c8343d2d207", + "tarball": "http://registry.npmjs.org/cucumis/-/cucumis-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "9c868c4b36d8e0ba7357dcde5246f9a9947548e3", + "tarball": "http://registry.npmjs.org/cucumis/-/cucumis-1.0.4.tgz" + }, + "1.0.5": { + "shasum": "7868c12346092330b9ceb2e4ba81d05fb950e522", + "tarball": "http://registry.npmjs.org/cucumis/-/cucumis-1.0.5.tgz" + }, + "1.0.6": { + "shasum": "626b986e467f188cf66f9ed6642ef9c426d0bb0e", + "tarball": "http://registry.npmjs.org/cucumis/-/cucumis-1.0.6.tgz" + }, + "1.0.7": { + "shasum": "4643b405df2d6bcfaa8690d20a4ac0ae31a236ac", + "tarball": "http://registry.npmjs.org/cucumis/-/cucumis-1.0.7.tgz" + }, + "1.0.8": { + "shasum": "62e3f2ccbb86b4189d4a8b5c5cbace9595a0350d", + "tarball": "http://registry.npmjs.org/cucumis/-/cucumis-1.0.8.tgz" + }, + "1.0.9": { + "shasum": "14b4ae26eb4609e7e292d18adf77666c9ab16877", + "tarball": "http://registry.npmjs.org/cucumis/-/cucumis-1.0.9.tgz" + }, + "1.0.10": { + "shasum": "9724dc0b9ffc103b197326dbc92f71c781a29421", + "tarball": "http://registry.npmjs.org/cucumis/-/cucumis-1.0.10.tgz" + }, + "1.0.11": { + "shasum": "3e3511c18db13e6ccacb1c1c79603980d8912152", + "tarball": "http://registry.npmjs.org/cucumis/-/cucumis-1.0.11.tgz" + }, + "1.0.12": { + "shasum": "1b931276e914b503d13f0bcec133c549afbc2db8", + "tarball": "http://registry.npmjs.org/cucumis/-/cucumis-1.0.12.tgz" + }, + "1.0.13": { + "shasum": "fe2a3f2c2b72d815e873ee3c726bad27696cbb87", + "tarball": "http://registry.npmjs.org/cucumis/-/cucumis-1.0.13.tgz" + }, + "1.0.14": { + "shasum": "3414abca9a5af139ac1aaa2a3598ae83ce4e61b0", + "tarball": "http://registry.npmjs.org/cucumis/-/cucumis-1.0.14.tgz" + }, + "1.0.15": { + "shasum": "f79c04b9a12eb3f718b97c97c6c95204ce939c13", + "tarball": "http://registry.npmjs.org/cucumis/-/cucumis-1.0.15.tgz" + }, + "1.0.16": { + "shasum": "d56ccd2b6a21bd442057520260e267b777d3ff59", + "tarball": "http://registry.npmjs.org/cucumis/-/cucumis-1.0.16.tgz" + }, + "1.0.17": { + "shasum": "cf2e32831c4cc3ab6bbc3072599f1e9fdc701286", + "tarball": "http://registry.npmjs.org/cucumis/-/cucumis-1.0.17.tgz" + } + }, + "keywords": [ + "testing", + "bdd", + "cucumber", + "gherkin", + "tests" + ], + "url": "http://registry.npmjs.org/cucumis/" + }, + "cucumis-rm": { + "name": "cucumis-rm", + "description": "BDD Cucumber Style Asynchronous Testing Framework for node.js", + "dist-tags": { + "latest": "1.0.17" + }, + "maintainers": [ + { + "name": "didit-tech", + "email": "development@didit.com" + } + ], + "time": { + "modified": "2011-03-13T18:26:27.303Z", + "created": "2011-03-13T18:26:27.106Z", + "1.0.17": "2011-03-13T18:26:27.303Z" + }, + "author": { + "name": "malkomalko", + "email": "robmalko@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/malkomalko/cucumis.git" + }, + "versions": { + "1.0.17": "http://registry.npmjs.org/cucumis-rm/1.0.17" + }, + "dist": { + "1.0.17": { + "shasum": "0f9fb2dc21d7c5499601782d3330e1e0d0bdbc65", + "tarball": "http://registry.npmjs.org/cucumis-rm/-/cucumis-rm-1.0.17.tgz" + } + }, + "keywords": [ + "testing", + "bdd", + "cucumber", + "gherkin", + "tests" + ], + "url": "http://registry.npmjs.org/cucumis-rm/" + }, + "cup": { + "name": "cup", + "dist-tags": { + "latest": "0.1.8" + }, + "readme": null, + "maintainers": [ + { + "name": "sjltaylor", + "email": "sjltaylor@gmail.com" + } + ], + "time": { + "modified": "2011-11-19T22:04:56.054Z", + "created": "2011-11-06T14:13:15.390Z", + "0.1.1": "2011-11-06T14:13:16.630Z", + "0.1.2": "2011-11-06T16:17:14.414Z", + "0.1.3": "2011-11-06T22:08:34.697Z", + "0.1.4": "2011-11-06T23:26:13.911Z", + "0.1.5": "2011-11-07T14:04:49.685Z", + "0.1.6": "2011-11-08T11:41:44.008Z", + "0.1.7": "2011-11-14T19:45:26.912Z", + "0.1.8": "2011-11-19T22:04:56.054Z" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/cup/0.1.1", + "0.1.2": "http://registry.npmjs.org/cup/0.1.2", + "0.1.3": "http://registry.npmjs.org/cup/0.1.3", + "0.1.4": "http://registry.npmjs.org/cup/0.1.4", + "0.1.5": "http://registry.npmjs.org/cup/0.1.5", + "0.1.6": "http://registry.npmjs.org/cup/0.1.6", + "0.1.7": "http://registry.npmjs.org/cup/0.1.7", + "0.1.8": "http://registry.npmjs.org/cup/0.1.8" + }, + "dist": { + "0.1.1": { + "shasum": "841a646b55594bd5620169a5c8af1e66485e5548", + "tarball": "http://registry.npmjs.org/cup/-/cup-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "9aae42fd4b3f63647ecffc2d5978d79d4c48a23b", + "tarball": "http://registry.npmjs.org/cup/-/cup-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "65481586b0526ae6e0f665819c3101c5ddf8d55b", + "tarball": "http://registry.npmjs.org/cup/-/cup-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "65d31453f923c45ff139aa1222c095aaf248a5d8", + "tarball": "http://registry.npmjs.org/cup/-/cup-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "679f4928c53ec1d4bb00403d96ec517da3a089c9", + "tarball": "http://registry.npmjs.org/cup/-/cup-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "558e52d1c8374c47ff9b36df01495c94ea3a8323", + "tarball": "http://registry.npmjs.org/cup/-/cup-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "4e33a6e445dda4a0b9f68826fb237a8feebbe024", + "tarball": "http://registry.npmjs.org/cup/-/cup-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "2cb722fd796db387f867447063d33fa593261142", + "tarball": "http://registry.npmjs.org/cup/-/cup-0.1.8.tgz" + } + }, + "url": "http://registry.npmjs.org/cup/" + }, + "cupboard": { + "name": "cupboard", + "description": "Reverse Repo System", + "dist-tags": { + "latest": "0.1.11" + }, + "maintainers": [ + { + "name": "architectd", + "email": "craig.j.condon@gmail.com" + } + ], + "time": { + "modified": "2011-11-30T18:56:45.412Z", + "created": "2011-11-03T21:47:23.837Z", + "0.0.0": "2011-11-03T21:47:24.810Z", + "0.0.2": "2011-11-04T06:56:10.093Z", + "0.0.3": "2011-11-04T07:07:57.324Z", + "0.0.4": "2011-11-07T21:39:32.163Z", + "0.0.5": "2011-11-07T22:03:21.303Z", + "0.0.6": "2011-11-10T20:18:06.931Z", + "0.1.0": "2011-11-13T22:14:32.503Z", + "0.1.1": "2011-11-14T04:30:36.014Z", + "0.1.2": "2011-11-14T22:34:18.553Z", + "0.1.3": "2011-11-14T23:06:55.416Z", + "0.1.4": "2011-11-15T00:58:31.513Z", + "0.1.5": "2011-11-15T09:01:57.726Z", + "0.1.6": "2011-11-19T00:19:21.400Z", + "0.1.7": "2011-11-20T01:04:22.659Z", + "0.1.8": "2011-11-20T01:44:03.076Z", + "0.1.9": "2011-11-22T19:05:19.892Z", + "0.1.10": "2011-11-22T23:46:16.044Z", + "0.1.11": "2011-11-30T18:56:45.412Z" + }, + "author": { + "name": "Craig Condon", + "email": "craig@crcn.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/crcn/cupboard.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/cupboard/0.0.0", + "0.0.2": "http://registry.npmjs.org/cupboard/0.0.2", + "0.0.3": "http://registry.npmjs.org/cupboard/0.0.3", + "0.0.4": "http://registry.npmjs.org/cupboard/0.0.4", + "0.0.5": "http://registry.npmjs.org/cupboard/0.0.5", + "0.0.6": "http://registry.npmjs.org/cupboard/0.0.6", + "0.1.0": "http://registry.npmjs.org/cupboard/0.1.0", + "0.1.1": "http://registry.npmjs.org/cupboard/0.1.1", + "0.1.2": "http://registry.npmjs.org/cupboard/0.1.2", + "0.1.3": "http://registry.npmjs.org/cupboard/0.1.3", + "0.1.4": "http://registry.npmjs.org/cupboard/0.1.4", + "0.1.5": "http://registry.npmjs.org/cupboard/0.1.5", + "0.1.6": "http://registry.npmjs.org/cupboard/0.1.6", + "0.1.7": "http://registry.npmjs.org/cupboard/0.1.7", + "0.1.8": "http://registry.npmjs.org/cupboard/0.1.8", + "0.1.9": "http://registry.npmjs.org/cupboard/0.1.9", + "0.1.10": "http://registry.npmjs.org/cupboard/0.1.10", + "0.1.11": "http://registry.npmjs.org/cupboard/0.1.11" + }, + "dist": { + "0.0.0": { + "shasum": "ff4ada18a4fc51e56963b8efbe315ee51f6331cb", + "tarball": "http://registry.npmjs.org/cupboard/-/cupboard-0.0.0.tgz" + }, + "0.0.2": { + "shasum": "c927d8f608630d9ee476a28b4005db89d7daa788", + "tarball": "http://registry.npmjs.org/cupboard/-/cupboard-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "c7920d68346314cb0a0c3959bb1ac9693f03f548", + "tarball": "http://registry.npmjs.org/cupboard/-/cupboard-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "e97a8d77d56070aeefc5ef67b23a2c553aba0f52", + "tarball": "http://registry.npmjs.org/cupboard/-/cupboard-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "f5985b93217c3e21d97d8834c6220e0acf9ddd51", + "tarball": "http://registry.npmjs.org/cupboard/-/cupboard-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "c7d84759ec02ad46c602576b9f1669653da9d4f3", + "tarball": "http://registry.npmjs.org/cupboard/-/cupboard-0.0.6.tgz" + }, + "0.1.0": { + "shasum": "24bd6e3395b01496f580b04367953193a4f46338", + "tarball": "http://registry.npmjs.org/cupboard/-/cupboard-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "339acc67951bd8446dd88678d59e0d757b9b9bca", + "tarball": "http://registry.npmjs.org/cupboard/-/cupboard-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "4ebcb855aa70cd509050d276e7a8fa52cd712436", + "tarball": "http://registry.npmjs.org/cupboard/-/cupboard-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "1caa144cb2c3694730f191cb0dffdf027e9eeeb4", + "tarball": "http://registry.npmjs.org/cupboard/-/cupboard-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "b8b0813423a4cfeb4b7c1f5c5c2b55d88d8b05c4", + "tarball": "http://registry.npmjs.org/cupboard/-/cupboard-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "f4c67e925608fbfaf56ace1dbe97a3ff5b263936", + "tarball": "http://registry.npmjs.org/cupboard/-/cupboard-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "7925d41509228c9a25b318fd6b8c5f50d086a294", + "tarball": "http://registry.npmjs.org/cupboard/-/cupboard-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "f529088159af7c7ba622eb15a83c2b29db125d4c", + "tarball": "http://registry.npmjs.org/cupboard/-/cupboard-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "325222051f4cd773d9cf74f78eabfffe176b51b7", + "tarball": "http://registry.npmjs.org/cupboard/-/cupboard-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "6138742b9e23769030ea016fbb6ed74111b9b4a6", + "tarball": "http://registry.npmjs.org/cupboard/-/cupboard-0.1.9.tgz" + }, + "0.1.10": { + "shasum": "82878164242fb38f948a03c887d7e7f23eaf6bf1", + "tarball": "http://registry.npmjs.org/cupboard/-/cupboard-0.1.10.tgz" + }, + "0.1.11": { + "shasum": "0fbc4e63e38e6bd12fcdbdde3dacdf1f5baa3bc7", + "tarball": "http://registry.npmjs.org/cupboard/-/cupboard-0.1.11.tgz" + } + }, + "url": "http://registry.npmjs.org/cupboard/" + }, + "cupboard.scaffold": { + "name": "cupboard.scaffold", + "description": "Project Management for cupboard (xcode, textmate)", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "Scaffolding plugin for [cupboard](http://github.com/spiceapps/cupboard) \n\n## Requirements\n\n- cupboard\n\n## Installation\n\n\tcbd install cupboard.scaffold\n\t\n\t\n## TODO\n\n- `cbd scaffold --all `\n- basic html scaffold w/ dependencies (less)\n- basic c / c++ scaffold\n- leche scaffold\n- express scaffold\n- coffeescript scaffold\n\n## Commands\n\n- `cbd scaffold ` - builds content out of the target scaffold\n\t\n## Default Scaffolds\n\n- textmate - creates a textmate project in the current working directory, and appends a `proj` command in the projects .cupboard file\n- node - creates a basic node project in the current working directory\n\n## Example\n\ncreates a textmate project with basic node.js files\n\n````bash\ncbd scaffold textmate+node\n````", + "maintainers": [ + { + "name": "architectd", + "email": "craig.j.condon@gmail.com" + } + ], + "time": { + "modified": "2011-11-30T18:55:26.954Z", + "created": "2011-11-30T18:55:26.276Z", + "0.0.1": "2011-11-30T18:55:26.954Z" + }, + "author": { + "name": "Craig Condon", + "email": "craig.j.condon@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/crcn/cupboard.project.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/cupboard.scaffold/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "55fb7752bd99f6ecb25566f143856e3ef6e80c46", + "tarball": "http://registry.npmjs.org/cupboard.scaffold/-/cupboard.scaffold-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/cupboard.scaffold/" + }, + "cupcake": { + "name": "cupcake", + "description": "Quick Coffee-Script Web App Template Generator", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "jackhq", + "email": "tom@jackhq.com" + } + ], + "time": { + "modified": "2011-11-05T22:04:59.818Z", + "created": "2011-05-25T03:45:29.171Z", + "0.0.2": "2011-05-25T03:45:29.485Z", + "0.0.4": "2011-05-26T12:56:21.603Z", + "0.0.6": "2011-05-27T20:59:25.682Z", + "0.0.7": "2011-06-02T21:35:23.201Z", + "0.0.8": "2011-06-05T04:55:54.312Z", + "0.1.0": "2011-07-16T13:38:39.715Z", + "0.1.1": "2011-07-17T02:50:03.227Z", + "0.2.0": "2011-11-05T22:04:59.818Z" + }, + "author": { + "name": "twilson63" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/cupcake/0.0.2", + "0.0.4": "http://registry.npmjs.org/cupcake/0.0.4", + "0.0.6": "http://registry.npmjs.org/cupcake/0.0.6", + "0.0.7": "http://registry.npmjs.org/cupcake/0.0.7", + "0.0.8": "http://registry.npmjs.org/cupcake/0.0.8", + "0.1.0": "http://registry.npmjs.org/cupcake/0.1.0", + "0.1.1": "http://registry.npmjs.org/cupcake/0.1.1", + "0.2.0": "http://registry.npmjs.org/cupcake/0.2.0" + }, + "dist": { + "0.0.2": { + "shasum": "3d44daa675fef8d12a13c36b70280c81e167c4f4", + "tarball": "http://registry.npmjs.org/cupcake/-/cupcake-0.0.2.tgz" + }, + "0.0.4": { + "shasum": "9116733130e159bef50164f206cd5df169c9b638", + "tarball": "http://registry.npmjs.org/cupcake/-/cupcake-0.0.4.tgz" + }, + "0.0.6": { + "shasum": "00319859925b2b6cb60c2426480e70ecaa534eb7", + "tarball": "http://registry.npmjs.org/cupcake/-/cupcake-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "aff40a759d84c9e4600eeeb5aadd8fb696126cfe", + "tarball": "http://registry.npmjs.org/cupcake/-/cupcake-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "cc1ba022e3fa8941bfc686a42ec9bb73ef687907", + "tarball": "http://registry.npmjs.org/cupcake/-/cupcake-0.0.8.tgz" + }, + "0.1.0": { + "shasum": "4000f138bfd2313308988357e4e05335f4f7f099", + "tarball": "http://registry.npmjs.org/cupcake/-/cupcake-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "0b49e3b6e0a51e0dd50e958ccfd9d461583b79dd", + "tarball": "http://registry.npmjs.org/cupcake/-/cupcake-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "a953dffa8b9d5609304c53291534a7b6a88fb760", + "tarball": "http://registry.npmjs.org/cupcake/-/cupcake-0.2.0.tgz" + } + }, + "keywords": [ + "javascript", + "express", + "coffeescript", + "coffeekup", + "generator", + "eco" + ], + "url": "http://registry.npmjs.org/cupcake/" + }, + "curator": { + "name": "curator", + "description": "A flexible process monitoring and management framework.", + "dist-tags": { + "latest": "0.0.9" + }, + "maintainers": [ + { + "name": "clvv", + "email": "x@wei23.net" + } + ], + "time": { + "modified": "2011-08-14T09:52:39.879Z", + "created": "2011-03-28T21:55:10.769Z", + "0.0.1": "2011-03-28T21:55:11.207Z", + "0.0.2": "2011-03-29T04:34:10.646Z", + "0.0.3": "2011-04-03T04:01:34.520Z", + "0.0.4": "2011-04-24T21:26:05.885Z", + "0.0.5": "2011-05-18T04:44:12.230Z", + "0.0.6": "2011-05-18T04:52:03.856Z", + "0.0.7": "2011-06-14T06:17:21.903Z", + "0.0.8": "2011-08-14T01:40:29.803Z", + "0.0.9": "2011-08-14T09:52:39.879Z" + }, + "author": { + "name": "Wei Dai", + "email": "x@wei23.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/clvv/Curator.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/curator/0.0.1", + "0.0.2": "http://registry.npmjs.org/curator/0.0.2", + "0.0.3": "http://registry.npmjs.org/curator/0.0.3", + "0.0.4": "http://registry.npmjs.org/curator/0.0.4", + "0.0.5": "http://registry.npmjs.org/curator/0.0.5", + "0.0.6": "http://registry.npmjs.org/curator/0.0.6", + "0.0.7": "http://registry.npmjs.org/curator/0.0.7", + "0.0.8": "http://registry.npmjs.org/curator/0.0.8", + "0.0.9": "http://registry.npmjs.org/curator/0.0.9" + }, + "dist": { + "0.0.1": { + "shasum": "c0add830251d28167c016c2cc084db217e225218", + "tarball": "http://registry.npmjs.org/curator/-/curator-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "17e05928eae926129b1cb73883a15ee1e0bfe7c4", + "tarball": "http://registry.npmjs.org/curator/-/curator-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "e1db4cd966a75497996b77717b9e6895e6610c6c", + "tarball": "http://registry.npmjs.org/curator/-/curator-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "4c308a54cebe692e637fbe011278264d6979bff2", + "tarball": "http://registry.npmjs.org/curator/-/curator-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "79a1288b7d17d544fac4159cf69753886d330ea9", + "tarball": "http://registry.npmjs.org/curator/-/curator-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "11909c088b25846e512a23e62278ad03d36aa45e", + "tarball": "http://registry.npmjs.org/curator/-/curator-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "fcf8ec20b8a94d9cfb0b9517414b29c990a38081", + "tarball": "http://registry.npmjs.org/curator/-/curator-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "57bae89ed87cf813c95184dc98cc2929716b4ff8", + "tarball": "http://registry.npmjs.org/curator/-/curator-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "5cfd2c7c286becb3a9642b062123a73edd999fe9", + "tarball": "http://registry.npmjs.org/curator/-/curator-0.0.9.tgz" + } + }, + "keywords": [ + "curator", + "process", + "monitoring", + "management" + ], + "url": "http://registry.npmjs.org/curator/" + }, + "curl": { + "name": "curl", + "description": "client url library, high level request functions", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "ianjorgensen", + "email": "jorgensen.ian@gmail.com" + } + ], + "time": { + "modified": "2011-07-17T12:11:29.457Z", + "created": "2011-07-17T09:45:35.380Z", + "0.1.0": "2011-07-17T09:45:36.188Z", + "0.1.1": "2011-07-17T11:41:55.563Z", + "0.1.2": "2011-07-17T11:47:08.340Z", + "0.1.3": "2011-07-17T11:54:27.345Z", + "0.1.4": "2011-07-17T12:11:29.457Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/curl/0.1.0", + "0.1.1": "http://registry.npmjs.org/curl/0.1.1", + "0.1.2": "http://registry.npmjs.org/curl/0.1.2", + "0.1.3": "http://registry.npmjs.org/curl/0.1.3", + "0.1.4": "http://registry.npmjs.org/curl/0.1.4" + }, + "dist": { + "0.1.0": { + "shasum": "f569838ccbf4e28c71dc7302c00b9d81d735f9ff", + "tarball": "http://registry.npmjs.org/curl/-/curl-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "b2a3a380cbed64f5885fd2bcbab49def47ea17d2", + "tarball": "http://registry.npmjs.org/curl/-/curl-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "817eda930a3c57111c52d38ba7d82b61eef735f2", + "tarball": "http://registry.npmjs.org/curl/-/curl-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "2b343ba8b5f1309f529df0e2d7a3378302c2e9fe", + "tarball": "http://registry.npmjs.org/curl/-/curl-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "c4f5fbe38b3039a6b555bcc2f884a3b033427e23", + "tarball": "http://registry.npmjs.org/curl/-/curl-0.1.4.tgz" + } + }, + "url": "http://registry.npmjs.org/curl/" + }, + "curly": { + "name": "curly", + "description": "a cascading request module", + "dist-tags": { + "latest": "0.2.7" + }, + "maintainers": [ + { + "name": "mafintosh", + "email": "m@ge.tt" + }, + { + "name": "ianjorgensen", + "email": "jorgensen.ian@gmail.com" + } + ], + "time": { + "modified": "2011-10-11T14:19:01.787Z", + "created": "2011-07-31T19:54:22.724Z", + "0.1.0": "2011-07-31T19:54:23.797Z", + "0.1.1": "2011-07-31T20:13:56.344Z", + "0.1.2": "2011-07-31T20:16:21.185Z", + "0.1.3": "2011-07-31T20:22:27.263Z", + "0.1.4": "2011-07-31T22:42:49.442Z", + "0.1.5": "2011-07-31T22:57:43.542Z", + "0.1.6": "2011-07-31T23:08:01.973Z", + "0.1.7": "2011-08-01T00:05:42.632Z", + "0.1.8": "2011-08-12T13:29:38.176Z", + "0.2.0": "2011-08-23T22:24:57.513Z", + "0.2.1": "2011-08-23T22:27:33.157Z", + "0.2.2": "2011-08-24T09:50:39.003Z", + "0.2.4": "2011-09-11T03:40:39.470Z", + "0.2.5": "2011-09-11T03:44:39.841Z", + "0.2.6": "2011-10-11T14:09:36.840Z", + "0.2.7": "2011-10-11T14:19:01.787Z" + }, + "author": { + "name": "Mathias Buus Madsen", + "email": "mathiasbuus@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/curly/0.1.0", + "0.1.1": "http://registry.npmjs.org/curly/0.1.1", + "0.1.2": "http://registry.npmjs.org/curly/0.1.2", + "0.1.3": "http://registry.npmjs.org/curly/0.1.3", + "0.1.4": "http://registry.npmjs.org/curly/0.1.4", + "0.1.5": "http://registry.npmjs.org/curly/0.1.5", + "0.1.6": "http://registry.npmjs.org/curly/0.1.6", + "0.1.7": "http://registry.npmjs.org/curly/0.1.7", + "0.1.8": "http://registry.npmjs.org/curly/0.1.8", + "0.2.0": "http://registry.npmjs.org/curly/0.2.0", + "0.2.1": "http://registry.npmjs.org/curly/0.2.1", + "0.2.2": "http://registry.npmjs.org/curly/0.2.2", + "0.2.4": "http://registry.npmjs.org/curly/0.2.4", + "0.2.5": "http://registry.npmjs.org/curly/0.2.5", + "0.2.6": "http://registry.npmjs.org/curly/0.2.6", + "0.2.7": "http://registry.npmjs.org/curly/0.2.7" + }, + "dist": { + "0.1.0": { + "shasum": "3b5be71b0dc7ef9cfb321a2029839b2f5ff2f473", + "tarball": "http://registry.npmjs.org/curly/-/curly-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "6ee568bbb6419dcc82f10294e90a5e056bd9f0f2", + "tarball": "http://registry.npmjs.org/curly/-/curly-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "9b644ae0890cd2498b61cbc39f8dee4bff468378", + "tarball": "http://registry.npmjs.org/curly/-/curly-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "b500474d76773c449d9626fee8e127ef8f8114b8", + "tarball": "http://registry.npmjs.org/curly/-/curly-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "493b0bae5988c844e269f746e4b43bab6c428d9b", + "tarball": "http://registry.npmjs.org/curly/-/curly-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "9c85b0176b25b807aa43e3ff1b6284048665966f", + "tarball": "http://registry.npmjs.org/curly/-/curly-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "4523d10b45d2b10c47efbc153012952852e6f032", + "tarball": "http://registry.npmjs.org/curly/-/curly-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "c739dc889d2263b89cfeb688d25d9cc08853820d", + "tarball": "http://registry.npmjs.org/curly/-/curly-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "f93e68ad8619c6ed025c92ac4f2ad77ad71ab437", + "tarball": "http://registry.npmjs.org/curly/-/curly-0.1.8.tgz" + }, + "0.2.0": { + "shasum": "10cc60828a02392e33f41926392fa36bf301acd5", + "tarball": "http://registry.npmjs.org/curly/-/curly-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "ff2a7fee1a048fecec97fbbd39087037217bfdf2", + "tarball": "http://registry.npmjs.org/curly/-/curly-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "b500bd252f69980ccdf59864628624a4f1310cb5", + "tarball": "http://registry.npmjs.org/curly/-/curly-0.2.2.tgz" + }, + "0.2.4": { + "shasum": "ae5bf5261869993ba7d3ff0126e0d146acb8f330", + "tarball": "http://registry.npmjs.org/curly/-/curly-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "cc14e576cb1b46bb170686db70fb39f21f37a7dd", + "tarball": "http://registry.npmjs.org/curly/-/curly-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "151c97eaf54c17ab03a6bcb6c742d2e9d6c9734f", + "tarball": "http://registry.npmjs.org/curly/-/curly-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "81f20a02aebc65ec2ba109a2486a6fde3647d213", + "tarball": "http://registry.npmjs.org/curly/-/curly-0.2.7.tgz" + } + }, + "keywords": [ + "request", + "https", + "http" + ], + "url": "http://registry.npmjs.org/curly/" + }, + "curry": { + "name": "curry", + "description": "flexible but simple curry function", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-09-14T14:52:44.612Z", + "created": "2011-02-07T10:07:57.039Z", + "0.0.0": "2011-02-07T10:07:58.632Z", + "0.0.1": "2011-03-03T05:51:14.360Z", + "0.0.2": "2011-03-23T10:40:12.040Z", + "0.0.3": "2011-09-07T23:52:24.367Z", + "0.0.4": "2011-09-14T14:52:44.612Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dominictarr/curry.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/curry/0.0.0", + "0.0.1": "http://registry.npmjs.org/curry/0.0.1", + "0.0.2": "http://registry.npmjs.org/curry/0.0.2", + "0.0.3": "http://registry.npmjs.org/curry/0.0.3", + "0.0.4": "http://registry.npmjs.org/curry/0.0.4" + }, + "dist": { + "0.0.0": { + "shasum": "a1dab8304e926a5bf262e54aebec35c1c94357a8", + "tarball": "http://registry.npmjs.org/curry/-/curry-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "590e4c486475da3ecca7f676796fb688f1363ac5", + "tarball": "http://registry.npmjs.org/curry/-/curry-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "ffda336c4011a2e7cb8c90bca6fa85fe6111810f", + "tarball": "http://registry.npmjs.org/curry/-/curry-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "da7c18390af7d624ca90e380c2146dbf7719847a", + "tarball": "http://registry.npmjs.org/curry/-/curry-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "1750d518d919c44f3d37ff44edc693de1f0d5fcb", + "tarball": "http://registry.npmjs.org/curry/-/curry-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/curry/" + }, + "cursory": { + "name": "cursory", + "description": "compute the relative cursor position on a terminal stream", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-09-05T12:17:56.560Z", + "created": "2011-09-05T12:17:55.413Z", + "0.0.0": "2011-09-05T12:17:56.560Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-cursory.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/cursory/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "afeb4bc2a47cb1ff0a1380b0fcc8717e91671450", + "tarball": "http://registry.npmjs.org/cursory/-/cursory-0.0.0.tgz" + } + }, + "keywords": [ + "terminal", + "ansi", + "cursor", + "console", + "escape", + "sequence" + ], + "url": "http://registry.npmjs.org/cursory/" + }, + "custom-debug": { + "name": "custom-debug", + "description": "You have no need to fix your daemon's init scripts to enable debugging and profiling on the fly", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "bobrik", + "email": "ibobrik@gmail.com" + } + ], + "time": { + "modified": "2011-09-23T10:03:28.891Z", + "created": "2011-09-23T10:03:27.243Z", + "0.1.0": "2011-09-23T10:03:28.891Z" + }, + "author": { + "name": "Ian Babrou", + "email": "ibobrik@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/bobrik/node-custom-debug.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/custom-debug/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "d6e2f2a96bb107adeda93b4d5b2ed141748670e7", + "tarball": "http://registry.npmjs.org/custom-debug/-/custom-debug-0.1.0.tgz" + } + }, + "keywords": [ + "debug", + "debugger", + "profiler", + "v8", + "heap" + ], + "url": "http://registry.npmjs.org/custom-debug/" + }, + "custom-vimeo-site": { + "name": "custom-vimeo-site", + "description": "a simple web site that uses the Vimeo API to create a custom Vimeo home page", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "marak", + "email": "marak.squires@gmail.com" + } + ], + "time": { + "modified": "2011-11-01T00:59:55.600Z", + "created": "2011-11-01T00:59:51.937Z", + "0.1.0": "2011-11-01T00:59:55.600Z" + }, + "author": { + "name": "Nodejitsu", + "email": "support@nodejitsu.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/custom-vimeo-site/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "966ffc3025e950dff75e40a9fd09ab1f0e1caf87", + "tarball": "http://registry.npmjs.org/custom-vimeo-site/-/custom-vimeo-site-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/custom-vimeo-site/" + }, + "czagenda-discovery": { + "name": "czagenda-discovery", + "description": "Broadcast client/server for services autodiscovery", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "oxys", + "email": "contact@oxys.net" + } + ], + "time": { + "modified": "2011-12-08T14:38:18.713Z", + "created": "2011-09-28T09:25:37.200Z", + "0.0.1": "2011-12-08T14:38:18.713Z", + "0.0.2": "2011-12-08T14:38:18.713Z" + }, + "repository": { + "type": "git", + "url": "git@git.oxys.net:czagenda-discovery" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/czagenda-discovery/0.0.1", + "0.0.2": "http://registry.npmjs.org/czagenda-discovery/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "bff142a2c9c8b2756ae020c5ec4d8c136740a2a2", + "tarball": "http://registry.npmjs.org/czagenda-discovery/-/czagenda-discovery-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "181571826259956d6788a6ecd54a2ad83e0f24c7", + "tarball": "http://registry.npmjs.org/czagenda-discovery/-/czagenda-discovery-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/czagenda-discovery/" + }, + "czagenda-http-proxy": { + "name": "czagenda-http-proxy", + "description": "Node loadbalancer with autodiscovery and failover", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "oxys", + "email": "contact@oxys.net" + } + ], + "time": { + "modified": "2011-10-07T10:16:26.953Z", + "created": "2011-10-07T10:16:25.623Z", + "0.0.1": "2011-10-07T10:16:26.953Z" + }, + "repository": { + "type": "git", + "url": "git@git.oxys.net:czagenda-log" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/czagenda-http-proxy/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "c0a86a962f5f7eb19ab0fade350ba3c5b13c1cf8", + "tarball": "http://registry.npmjs.org/czagenda-http-proxy/-/czagenda-http-proxy-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/czagenda-http-proxy/" + }, + "czagenda-log": { + "name": "czagenda-log", + "description": "Logging helper for czagenda", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "oxys", + "email": "contact@oxys.net" + } + ], + "time": { + "modified": "2011-09-28T09:31:49.604Z", + "created": "2011-09-28T09:31:48.259Z", + "0.0.1": "2011-09-28T09:31:49.604Z" + }, + "repository": { + "type": "git", + "url": "git@git.oxys.net:czagenda-log" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/czagenda-log/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "2363bda063901999df58273a4a6689695351ec41", + "tarball": "http://registry.npmjs.org/czagenda-log/-/czagenda-log-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/czagenda-log/" + }, + "d-utils": { + "name": "d-utils", + "description": "Dominic's Utilities", + "dist-tags": { + "latest": "2.3.3" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-09-11T12:06:21.567Z", + "created": "2011-06-24T23:20:09.876Z", + "0.0.0": "2011-06-24T23:20:10.686Z", + "0.0.1": "2011-06-25T00:29:35.991Z", + "1.0.0": "2011-08-15T07:49:59.020Z", + "1.1.0": "2011-08-22T03:17:42.976Z", + "1.1.1": "2011-08-22T03:31:04.485Z", + "1.1.2": "2011-08-22T03:53:02.899Z", + "1.2.0": "2011-08-22T10:08:45.788Z", + "1.3.0": "2011-09-05T14:10:38.691Z", + "1.4.0": "2011-09-05T14:19:07.621Z", + "2.0.0": "2011-09-06T02:24:00.599Z", + "2.1.0": "2011-09-08T02:38:10.446Z", + "2.1.1": "2011-09-08T02:47:07.096Z", + "2.2.0": "2011-09-08T10:03:33.235Z", + "2.3.0": "2011-09-08T11:04:23.542Z", + "2.3.1": "2011-09-09T08:12:44.844Z", + "2.3.3": "2011-09-11T12:06:21.567Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com", + "url": "http://bit.ly/dominictarr" + }, + "repository": { + "type": "git", + "url": "git://github.com/dominictarr/d-utils.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/d-utils/0.0.0", + "0.0.1": "http://registry.npmjs.org/d-utils/0.0.1", + "1.0.0": "http://registry.npmjs.org/d-utils/1.0.0", + "1.1.0": "http://registry.npmjs.org/d-utils/1.1.0", + "1.1.1": "http://registry.npmjs.org/d-utils/1.1.1", + "1.1.2": "http://registry.npmjs.org/d-utils/1.1.2", + "1.2.0": "http://registry.npmjs.org/d-utils/1.2.0", + "1.3.0": "http://registry.npmjs.org/d-utils/1.3.0", + "1.4.0": "http://registry.npmjs.org/d-utils/1.4.0", + "2.0.0": "http://registry.npmjs.org/d-utils/2.0.0", + "2.1.0": "http://registry.npmjs.org/d-utils/2.1.0", + "2.1.1": "http://registry.npmjs.org/d-utils/2.1.1", + "2.2.0": "http://registry.npmjs.org/d-utils/2.2.0", + "2.3.0": "http://registry.npmjs.org/d-utils/2.3.0", + "2.3.1": "http://registry.npmjs.org/d-utils/2.3.1", + "2.3.3": "http://registry.npmjs.org/d-utils/2.3.3" + }, + "dist": { + "0.0.0": { + "shasum": "0b3474f9b9b1f88450dbbc3765983e49d4b883b6", + "tarball": "http://registry.npmjs.org/d-utils/-/d-utils-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "51d7681346cdf1d0ec236b04d7a854cc47771b7f", + "tarball": "http://registry.npmjs.org/d-utils/-/d-utils-0.0.1.tgz" + }, + "1.0.0": { + "shasum": "de66188537b9f4037949ab583a1ff3775b6e2bb6", + "tarball": "http://registry.npmjs.org/d-utils/-/d-utils-1.0.0.tgz" + }, + "1.1.0": { + "shasum": "5c452324c2348fc0b29cbbe42c884b8ebf57a69a", + "tarball": "http://registry.npmjs.org/d-utils/-/d-utils-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "a841015bb55b8b4f3a5d4ad1f3f992aa9f0bdae5", + "tarball": "http://registry.npmjs.org/d-utils/-/d-utils-1.1.1.tgz" + }, + "1.1.2": { + "shasum": "58acfe1057776028f9e9c318b1e2e8e2d9ca6d76", + "tarball": "http://registry.npmjs.org/d-utils/-/d-utils-1.1.2.tgz" + }, + "1.2.0": { + "shasum": "77a48d485b7f7b20850cc8c5c706e9546912846f", + "tarball": "http://registry.npmjs.org/d-utils/-/d-utils-1.2.0.tgz" + }, + "1.3.0": { + "shasum": "6a28b274073d2c74d273af004be86634690fc0ea", + "tarball": "http://registry.npmjs.org/d-utils/-/d-utils-1.3.0.tgz" + }, + "1.4.0": { + "shasum": "4476d248676e5832c6d0fc69e2ed0d10c14c9ff7", + "tarball": "http://registry.npmjs.org/d-utils/-/d-utils-1.4.0.tgz" + }, + "2.0.0": { + "shasum": "91b6ea7a5f519dee45f23caab653e9950024efc5", + "tarball": "http://registry.npmjs.org/d-utils/-/d-utils-2.0.0.tgz" + }, + "2.1.0": { + "shasum": "7b6fe312fec8bc80eabe840d8a2ffefe63e3fa9e", + "tarball": "http://registry.npmjs.org/d-utils/-/d-utils-2.1.0.tgz" + }, + "2.1.1": { + "shasum": "359c6a002049516f042db9e49de302204e1fec3c", + "tarball": "http://registry.npmjs.org/d-utils/-/d-utils-2.1.1.tgz" + }, + "2.2.0": { + "shasum": "e83dc45c2b1ba2e79d93fe38082a3d617d308ba5", + "tarball": "http://registry.npmjs.org/d-utils/-/d-utils-2.2.0.tgz" + }, + "2.3.0": { + "shasum": "88c4000e6b51682a89917c2b9808e94ae90e4c27", + "tarball": "http://registry.npmjs.org/d-utils/-/d-utils-2.3.0.tgz" + }, + "2.3.1": { + "shasum": "c29f3ad0063f6b3aa4912d074186a4716abf9ba6", + "tarball": "http://registry.npmjs.org/d-utils/-/d-utils-2.3.1.tgz" + }, + "2.3.3": { + "shasum": "bad9bb4d68f12ebd5526f535508d83e3fb24173d", + "tarball": "http://registry.npmjs.org/d-utils/-/d-utils-2.3.3.tgz" + } + }, + "url": "http://registry.npmjs.org/d-utils/" + }, + "d3": { + "name": "d3", + "description": "A small, free JavaScript library for manipulating documents based on data.", + "dist-tags": { + "latest": "2.7.0" + }, + "maintainers": [ + { + "name": "mbostock", + "email": "mbostock@gmail.com" + } + ], + "time": { + "modified": "2011-12-09T02:07:46.364Z", + "created": "2011-08-18T17:05:26.410Z", + "1.29.5": "2011-08-18T17:05:29.698Z", + "2.1.3": "2011-09-12T00:34:15.049Z", + "2.2.1": "2011-09-27T15:51:52.305Z", + "2.3.0": "2011-09-28T17:55:54.620Z", + "2.3.2": "2011-10-05T17:42:42.493Z", + "2.3.3": "2011-10-07T19:41:27.514Z", + "2.3.4": "2011-10-07T22:38:46.576Z", + "2.4.0": "2011-10-11T21:59:14.432Z", + "2.4.1": "2011-10-11T23:48:07.823Z", + "2.4.2": "2011-10-12T01:02:44.689Z", + "2.5.1": "2011-11-18T19:19:02.899Z", + "2.5.2": "2011-11-22T22:42:11.399Z", + "2.6.0": "2011-11-23T21:07:17.214Z", + "2.7.0": "2011-12-09T02:07:46.364Z" + }, + "author": { + "name": "Mike Bostock", + "url": "http://bost.ocks.org/mike" + }, + "repository": { + "type": "git", + "url": "git://github.com/mbostock/d3.git" + }, + "versions": { + "1.29.5": "http://registry.npmjs.org/d3/1.29.5", + "2.1.3": "http://registry.npmjs.org/d3/2.1.3", + "2.2.1": "http://registry.npmjs.org/d3/2.2.1", + "2.3.0": "http://registry.npmjs.org/d3/2.3.0", + "2.3.2": "http://registry.npmjs.org/d3/2.3.2", + "2.3.3": "http://registry.npmjs.org/d3/2.3.3", + "2.3.4": "http://registry.npmjs.org/d3/2.3.4", + "2.4.0": "http://registry.npmjs.org/d3/2.4.0", + "2.4.1": "http://registry.npmjs.org/d3/2.4.1", + "2.4.2": "http://registry.npmjs.org/d3/2.4.2", + "2.5.1": "http://registry.npmjs.org/d3/2.5.1", + "2.5.2": "http://registry.npmjs.org/d3/2.5.2", + "2.6.0": "http://registry.npmjs.org/d3/2.6.0", + "2.7.0": "http://registry.npmjs.org/d3/2.7.0" + }, + "dist": { + "1.29.5": { + "shasum": "d22ee4207ab1493e4d8a868df8df04914d37582d", + "tarball": "http://registry.npmjs.org/d3/-/d3-1.29.5.tgz" + }, + "2.1.3": { + "shasum": "dbc1ec0a40305a4cd103dc1f3ae0fd9427217431", + "tarball": "http://registry.npmjs.org/d3/-/d3-2.1.3.tgz" + }, + "2.2.1": { + "shasum": "0a7a4944bd45724432353a7ca5491fc3293fb3ba", + "tarball": "http://registry.npmjs.org/d3/-/d3-2.2.1.tgz" + }, + "2.3.0": { + "shasum": "64016d498b6d80641436801f06f5ec8f07b21ad9", + "tarball": "http://registry.npmjs.org/d3/-/d3-2.3.0.tgz" + }, + "2.3.2": { + "shasum": "d27adbee4d2f8ebb103d1ab7a5c8bdef50642f60", + "tarball": "http://registry.npmjs.org/d3/-/d3-2.3.2.tgz" + }, + "2.3.3": { + "shasum": "57585feafb972d2757097aa9365b53fe4e5a9c8d", + "tarball": "http://registry.npmjs.org/d3/-/d3-2.3.3.tgz" + }, + "2.3.4": { + "shasum": "7bcd345a64127058ba3ae13a12de75a02f976473", + "tarball": "http://registry.npmjs.org/d3/-/d3-2.3.4.tgz" + }, + "2.4.0": { + "shasum": "326ea6fbcaf216f59bd0e506a7a13d032c7e9976", + "tarball": "http://registry.npmjs.org/d3/-/d3-2.4.0.tgz" + }, + "2.4.1": { + "shasum": "1ebf0683ea83112f6225a7c2b2655c55620ecc82", + "tarball": "http://registry.npmjs.org/d3/-/d3-2.4.1.tgz" + }, + "2.4.2": { + "shasum": "19ba2d6613de8c01f432c8ff13a234352ae51806", + "tarball": "http://registry.npmjs.org/d3/-/d3-2.4.2.tgz" + }, + "2.5.1": { + "shasum": "fafa55008f689acb2dfd278ae788c2f8fa8b3fe0", + "tarball": "http://registry.npmjs.org/d3/-/d3-2.5.1.tgz" + }, + "2.5.2": { + "shasum": "f8f885b58c4698a800f7e2c5f56b6c189d840d67", + "tarball": "http://registry.npmjs.org/d3/-/d3-2.5.2.tgz" + }, + "2.6.0": { + "shasum": "0b52b43ea42eea20fc4e2c36f1fb77d1c7eac411", + "tarball": "http://registry.npmjs.org/d3/-/d3-2.6.0.tgz" + }, + "2.7.0": { + "shasum": "274293581b9950d83930878e7145516f23d329d2", + "tarball": "http://registry.npmjs.org/d3/-/d3-2.7.0.tgz" + } + }, + "keywords": [ + "dom", + "w3c", + "visualization", + "svg", + "animation", + "canvas" + ], + "url": "http://registry.npmjs.org/d3/" + }, + "d3bench": { + "name": "d3bench", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "ryah", + "email": "ry@tinyclouds.org" + } + ], + "time": { + "modified": "2011-07-25T02:41:57.253Z", + "created": "2011-07-25T02:41:54.603Z", + "0.0.1": "2011-07-25T02:41:57.253Z" + }, + "author": { + "name": "Ryan Dahl", + "email": "ry@tinyclouds.org" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/d3bench/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "23b1eef02fbd2920abd9d1ebea23e3b2c3613ed0", + "tarball": "http://registry.npmjs.org/d3bench/-/d3bench-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/d3bench/" + }, + "dadu": { + "name": "dadu", + "description": "Drag and Drop Uploads", + "dist-tags": { + "latest": "1.0.2" + }, + "maintainers": [ + { + "name": "sleeplessinc", + "email": "joe@sleepless.com" + } + ], + "time": { + "modified": "2011-10-18T21:56:59.434Z", + "created": "2011-10-18T21:56:57.802Z", + "1.0.2": "2011-10-18T21:56:59.434Z" + }, + "author": { + "name": "Joe Hitchens", + "email": "joe@sleepless.com", + "url": "sleepless.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/sleeplessinc/dadu.git" + }, + "versions": { + "1.0.2": "http://registry.npmjs.org/dadu/1.0.2" + }, + "dist": { + "1.0.2": { + "shasum": "0e32d838ecba83daa66be3e1489b6fe97868fa36", + "tarball": "http://registry.npmjs.org/dadu/-/dadu-1.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/dadu/" + }, + "daemon": { + "name": "daemon", + "description": "Add-on for creating *nix daemons", + "dist-tags": { + "latest": "0.4.0", + "stable": "0.1.0" + }, + "maintainers": [ + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + } + ], + "author": { + "name": "Arthur", + "email": "arthur@norgic.com", + "url": "Slashed" + }, + "repository": { + "type": "git", + "url": "git://github.com/indexzero/daemon.node.git" + }, + "time": { + "modified": "2011-10-22T08:02:45.198Z", + "created": "2011-02-11T15:13:23.258Z", + "0.1.0": "2011-02-11T15:13:23.258Z", + "0.3.0": "2011-02-11T15:13:23.258Z", + "0.3.2": "2011-10-09T03:40:26.980Z", + "0.4.0": "2011-10-22T08:02:45.198Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/daemon/0.1.0", + "0.3.0": "http://registry.npmjs.org/daemon/0.3.0", + "0.3.2": "http://registry.npmjs.org/daemon/0.3.2", + "0.4.0": "http://registry.npmjs.org/daemon/0.4.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/daemon/-/daemon-0.1.0.tgz" + }, + "0.3.0": { + "shasum": "20a36bfa331c2629c64af4f0d0094a8b8d90d158", + "tarball": "http://registry.npmjs.org/daemon/-/daemon-0.3.0.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "50f035906f15ad8348ef6eb1d17db9947e591bbb", + "tarball": "http://registry.npmjs.org/daemon/-/daemon-0.3.0-0.4-sunos-5.11.tgz" + } + } + }, + "0.3.2": { + "shasum": "15a100e841693869e7afa7c7ca6f1c7f4ebe4857", + "tarball": "http://registry.npmjs.org/daemon/-/daemon-0.3.2.tgz" + }, + "0.4.0": { + "shasum": "060cd95276646563bdb5fa1d398e009a577c13cd", + "tarball": "http://registry.npmjs.org/daemon/-/daemon-0.4.0.tgz" + } + }, + "url": "http://registry.npmjs.org/daemon/" + }, + "daemon-tools": { + "name": "daemon-tools", + "description": "Add-on for creating *nix daemons, handling chroots, etc.", + "dist-tags": { + "latest": "0.1.5" + }, + "maintainers": [ + { + "name": "DanBUK", + "email": "dan@f-box.org" + } + ], + "time": { + "modified": "2011-04-15T21:04:50.194Z", + "created": "2011-01-23T13:15:04.078Z", + "0.1.0": "2011-01-23T13:15:04.552Z", + "0.1.1": "2011-01-23T13:30:51.182Z", + "0.1.2": "2011-01-23T13:34:43.964Z", + "0.1.3": "2011-01-23T14:05:04.633Z", + "0.1.4": "2011-01-23T17:43:04.225Z", + "0.1.5": "2011-01-26T15:53:38.758Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/daemon-tools/0.1.0", + "0.1.1": "http://registry.npmjs.org/daemon-tools/0.1.1", + "0.1.2": "http://registry.npmjs.org/daemon-tools/0.1.2", + "0.1.3": "http://registry.npmjs.org/daemon-tools/0.1.3", + "0.1.4": "http://registry.npmjs.org/daemon-tools/0.1.4", + "0.1.5": "http://registry.npmjs.org/daemon-tools/0.1.5" + }, + "dist": { + "0.1.0": { + "shasum": "d5800dd67f078e4c22bc5248f312358519e4d472", + "tarball": "http://registry.npmjs.org/daemon-tools/-/daemon-tools-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "8cf0ff5cb1da8c387910acb234b0d608cbf49299", + "tarball": "http://registry.npmjs.org/daemon-tools/-/daemon-tools-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "258ff69f9709f937d5063614434a285ce97cfb37", + "tarball": "http://registry.npmjs.org/daemon-tools/-/daemon-tools-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "baddcd01d8b39f38eaf4d9a7989eccef5866b299", + "tarball": "http://registry.npmjs.org/daemon-tools/-/daemon-tools-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "bf0be7ed45d05e3a5c0cae6c5418a532c628d007", + "tarball": "http://registry.npmjs.org/daemon-tools/-/daemon-tools-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "860171c3a1fd2bb5658732ceba4844b3d865b98d", + "tarball": "http://registry.npmjs.org/daemon-tools/-/daemon-tools-0.1.5.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "b4056059283eb25db51aff590f897e547a47d3c8", + "tarball": "http://registry.npmjs.org/daemon-tools/-/daemon-tools-0.1.5-0.4-sunos-5.11.tgz" + } + } + } + }, + "url": "http://registry.npmjs.org/daemon-tools/" + }, + "daimyo": { + "name": "daimyo", + "description": "Samurai payment gateway API client library for Node.js", + "dist-tags": { + "latest": "0.1.5" + }, + "maintainers": [ + { + "name": "foxbunny", + "email": "branko@herdhound.com" + } + ], + "time": { + "modified": "2011-09-27T22:40:37.650Z", + "created": "2011-08-16T13:48:27.836Z", + "0.0.1": "2011-08-16T13:48:28.783Z", + "0.0.2": "2011-08-17T15:43:25.954Z", + "0.0.3": "2011-08-19T20:45:49.531Z", + "0.0.4": "2011-08-21T06:36:35.465Z", + "0.0.5": "2011-08-22T10:30:08.892Z", + "0.0.6": "2011-08-23T18:22:10.554Z", + "0.0.7": "2011-08-30T15:21:33.622Z", + "0.0.8": "2011-09-01T18:58:38.463Z", + "0.0.9": "2011-09-17T10:36:56.755Z", + "0.1.0": "2011-09-17T12:48:38.718Z", + "0.1.1": "2011-09-17T14:56:23.651Z", + "0.1.2": "2011-09-17T23:54:45.834Z", + "0.1.3": "2011-09-24T14:43:45.211Z", + "0.1.4": "2011-09-24T16:15:08.518Z", + "0.1.5": "2011-09-27T22:40:37.650Z" + }, + "author": { + "name": "Herd Hound", + "email": "branko@herdhound.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/HerdHound/Daimyo.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/daimyo/0.0.1", + "0.0.2": "http://registry.npmjs.org/daimyo/0.0.2", + "0.0.3": "http://registry.npmjs.org/daimyo/0.0.3", + "0.0.4": "http://registry.npmjs.org/daimyo/0.0.4", + "0.0.5": "http://registry.npmjs.org/daimyo/0.0.5", + "0.0.6": "http://registry.npmjs.org/daimyo/0.0.6", + "0.0.7": "http://registry.npmjs.org/daimyo/0.0.7", + "0.0.8": "http://registry.npmjs.org/daimyo/0.0.8", + "0.0.9": "http://registry.npmjs.org/daimyo/0.0.9", + "0.1.0": "http://registry.npmjs.org/daimyo/0.1.0", + "0.1.1": "http://registry.npmjs.org/daimyo/0.1.1", + "0.1.2": "http://registry.npmjs.org/daimyo/0.1.2", + "0.1.3": "http://registry.npmjs.org/daimyo/0.1.3", + "0.1.4": "http://registry.npmjs.org/daimyo/0.1.4", + "0.1.5": "http://registry.npmjs.org/daimyo/0.1.5" + }, + "dist": { + "0.0.1": { + "shasum": "9ba8871fcff08bc23d93a722cc3a49652f237991", + "tarball": "http://registry.npmjs.org/daimyo/-/daimyo-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "28c693b82e0865500f4dfa2f82d59af2333353c5", + "tarball": "http://registry.npmjs.org/daimyo/-/daimyo-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "2c1f4e061ab27ec50ee04c5deaa15665b17673b0", + "tarball": "http://registry.npmjs.org/daimyo/-/daimyo-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "3f9622b6388b4cb2dceb2b22d6baed9e0812d650", + "tarball": "http://registry.npmjs.org/daimyo/-/daimyo-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "3fc6456710183d05705b22908373cac12da1b44c", + "tarball": "http://registry.npmjs.org/daimyo/-/daimyo-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "9a1be381fe8213f79b3599dc13fc111f10a502db", + "tarball": "http://registry.npmjs.org/daimyo/-/daimyo-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "22bc7ad77bfd97f2351767e2442da4f4b32fb451", + "tarball": "http://registry.npmjs.org/daimyo/-/daimyo-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "152d12cf45c4d826719ba545b56c598126241445", + "tarball": "http://registry.npmjs.org/daimyo/-/daimyo-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "b31fdcb4242a397fb288e3f9601d56d61c629c6b", + "tarball": "http://registry.npmjs.org/daimyo/-/daimyo-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "8f3d8c3f0dc77b1bb7982309c9e088e81a8a35dc", + "tarball": "http://registry.npmjs.org/daimyo/-/daimyo-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "723fea66b93bb4f470162f229e86c56aebe8546d", + "tarball": "http://registry.npmjs.org/daimyo/-/daimyo-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "0cba3c16948585b7e89a22ad6d8dba05ce2a9328", + "tarball": "http://registry.npmjs.org/daimyo/-/daimyo-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "48d8fddad16f4cbdab97235a21d7b534392f4995", + "tarball": "http://registry.npmjs.org/daimyo/-/daimyo-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "e23e19b90fc6c1515eb586e6384f776ceef6c607", + "tarball": "http://registry.npmjs.org/daimyo/-/daimyo-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "e78f1e0bfd4eec84e97557eec83979c6ceefb7e0", + "tarball": "http://registry.npmjs.org/daimyo/-/daimyo-0.1.5.tgz" + } + }, + "keywords": [ + "payment gateway", + "payment processing", + "samurai", + "feefighters" + ], + "url": "http://registry.npmjs.org/daimyo/" + }, + "daisy": { + "name": "daisy", + "description": "Abstracted MQ for rabbitmq", + "dist-tags": { + "latest": "0.0.9" + }, + "maintainers": [ + { + "name": "architectd", + "email": "craig.j.condon@gmail.com" + } + ], + "time": { + "modified": "2011-12-07T05:07:18.283Z", + "created": "2011-10-08T18:36:33.988Z", + "0.0.1": "2011-10-08T18:36:34.744Z", + "0.0.3": "2011-10-08T22:35:37.516Z", + "0.0.4": "2011-10-10T04:04:47.139Z", + "0.0.5": "2011-10-12T21:19:40.748Z", + "0.0.6": "2011-10-12T22:26:55.548Z", + "0.0.7": "2011-12-05T01:30:07.857Z", + "0.0.8": "2011-12-05T07:34:27.902Z", + "0.0.9": "2011-12-07T05:07:18.283Z" + }, + "author": { + "name": "Craig Condon" + }, + "repository": { + "type": "git", + "url": "git://github.com/crcn/daisy.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/daisy/0.0.1", + "0.0.3": "http://registry.npmjs.org/daisy/0.0.3", + "0.0.4": "http://registry.npmjs.org/daisy/0.0.4", + "0.0.5": "http://registry.npmjs.org/daisy/0.0.5", + "0.0.6": "http://registry.npmjs.org/daisy/0.0.6", + "0.0.7": "http://registry.npmjs.org/daisy/0.0.7", + "0.0.8": "http://registry.npmjs.org/daisy/0.0.8", + "0.0.9": "http://registry.npmjs.org/daisy/0.0.9" + }, + "dist": { + "0.0.1": { + "shasum": "cf5029546b1b53ceda32d8fd6a40c3aa361fa5ee", + "tarball": "http://registry.npmjs.org/daisy/-/daisy-0.0.1.tgz" + }, + "0.0.3": { + "shasum": "5f9d40e85dfa7b985e5f98ac4e8efc56e9da464f", + "tarball": "http://registry.npmjs.org/daisy/-/daisy-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "0e952668e6f05cb6121c0372b25c9b3c96ad1102", + "tarball": "http://registry.npmjs.org/daisy/-/daisy-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "5a504ea260c4b1ed761020b35209b1b23340154d", + "tarball": "http://registry.npmjs.org/daisy/-/daisy-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "e914a943cdf34f6e6fefd5e1f1c1284896b39e47", + "tarball": "http://registry.npmjs.org/daisy/-/daisy-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "021a82fab62a0e5d35676fe15ecd243784fe722c", + "tarball": "http://registry.npmjs.org/daisy/-/daisy-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "14c88a5ab85913f35df5f6b6d19dca1a4db9321a", + "tarball": "http://registry.npmjs.org/daisy/-/daisy-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "54c1602a9e9cf53765e3aa5343ceb7ccf70530cf", + "tarball": "http://registry.npmjs.org/daisy/-/daisy-0.0.9.tgz" + } + }, + "url": "http://registry.npmjs.org/daisy/" + }, + "Daisy": { + "name": "Daisy", + "description": "Abstracted MQ for rabbitmq", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "architectd", + "email": "craig.j.condon@gmail.com" + } + ], + "time": { + "modified": "2011-10-08T05:28:36.905Z", + "created": "2011-10-08T05:28:36.222Z", + "0.0.1": "2011-10-08T05:28:36.905Z" + }, + "author": { + "name": "Craig Condon" + }, + "repository": { + "type": "git", + "url": "git://github.com/spiceapps/daisy.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/Daisy/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "61dd8951ca7f81aa41c55a876fe6f6de443e44e8", + "tarball": "http://registry.npmjs.org/Daisy/-/Daisy-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/Daisy/" + }, + "daleth": { + "name": "daleth", + "description": "Simple router for node.js", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "akaspin", + "email": "aka.spin@gmail.com" + } + ], + "author": { + "name": "Alexander Dorofeev" + }, + "repository": { + "type": "git", + "url": "http://github.com/akaspin/daleth.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/daleth/0.1.1" + }, + "dist": { + "0.1.1": { + "shasum": "cb281fc9130c20c91046aac92913e3ffbfb27e44", + "tarball": "http://registry.npmjs.org/daleth/-/daleth-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/daleth/" + }, + "dali": { + "name": "dali", + "description": "Surreal templating for server and browser", + "dist-tags": { + "latest": "1.0.2" + }, + "maintainers": [ + { + "name": "masyl", + "email": "mathieu@ti-coco.com" + } + ], + "time": { + "modified": "2011-05-02T03:46:32.499Z", + "created": "2011-04-30T15:44:24.411Z", + "1.0.1": "2011-04-30T15:44:24.592Z", + "1.0.2": "2011-05-02T03:45:12.868Z" + }, + "author": { + "name": "Mathieu Sylvain", + "email": "mathieu@ti-coco.com", + "url": "https://github.com/masyl" + }, + "repository": { + "type": "git", + "url": "git://github.com/masyl/Dali.git" + }, + "versions": { + "1.0.1": "http://registry.npmjs.org/dali/1.0.1", + "1.0.2": "http://registry.npmjs.org/dali/1.0.2" + }, + "dist": { + "1.0.1": { + "shasum": "de2ac8a3470cd88b3e2474f21935335fe3a32cab", + "tarball": "http://registry.npmjs.org/dali/-/dali-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "8e00d69a408c618a358644a403e510e1893162af", + "tarball": "http://registry.npmjs.org/dali/-/dali-1.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/dali/" + }, + "damncomma": { + "name": "damncomma", + "description": "Remove the damn comma, thereby enabling times of peace to once again settle upon the realm.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "exratione", + "email": "reason@exratione.com" + } + ], + "time": { + "modified": "2011-06-06T01:22:51.909Z", + "created": "2011-06-06T01:22:51.853Z", + "0.0.1": "2011-06-06T01:22:51.909Z" + }, + "author": { + "name": "Reason", + "email": "reason@exratione.com", + "url": "http://www.exratione.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/exratione/damncomma.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/damncomma/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "2c09e66b2fdf09d89f0e7618b404d7d459626a0a", + "tarball": "http://registry.npmjs.org/damncomma/-/damncomma-0.0.1.tgz" + } + }, + "keywords": [ + "damn", + "comma" + ], + "url": "http://registry.npmjs.org/damncomma/" + }, + "dana": { + "name": "dana", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "cushman", + "email": "acushman@gmail.com" + } + ], + "time": { + "modified": "2011-07-09T17:59:00.934Z", + "created": "2011-07-09T17:58:59.623Z", + "0.0.1": "2011-07-09T17:59:00.934Z" + }, + "author": { + "name": "Adrian Cushman", + "email": "acushman@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/dana/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "38c672a81ab02e3b8cf9eb431ccdf6e471e3aea6", + "tarball": "http://registry.npmjs.org/dana/-/dana-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/dana/" + }, + "dandy": { + "name": "dandy", + "description": "Error handling and logging utilities", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "joehewitt", + "email": "joe@joehewitt.com" + } + ], + "time": { + "modified": "2011-10-11T02:20:52.537Z", + "created": "2011-07-25T22:45:36.442Z", + "0.0.1": "2011-07-25T22:45:37.033Z", + "0.0.2": "2011-07-31T01:28:45.936Z", + "0.0.3": "2011-08-13T22:25:44.245Z", + "0.0.4": "2011-08-26T17:14:03.027Z", + "0.0.5": "2011-10-11T02:20:52.537Z" + }, + "author": { + "name": "Joe Hewitt", + "email": "joe@joehewitt.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/joehewitt/dandy.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/dandy/0.0.1", + "0.0.2": "http://registry.npmjs.org/dandy/0.0.2", + "0.0.3": "http://registry.npmjs.org/dandy/0.0.3", + "0.0.4": "http://registry.npmjs.org/dandy/0.0.4", + "0.0.5": "http://registry.npmjs.org/dandy/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "e44c963ac4f2f583957748ec7a0b43473ddf82c5", + "tarball": "http://registry.npmjs.org/dandy/-/dandy-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "597e598ceef2069b931c056d3b3e9cf33853ca2e", + "tarball": "http://registry.npmjs.org/dandy/-/dandy-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "97b1e474fe80e0ff5d961efb52890b982403c3b1", + "tarball": "http://registry.npmjs.org/dandy/-/dandy-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "aed69e8921f04fbcfdf73b6fd1273548b1729cd4", + "tarball": "http://registry.npmjs.org/dandy/-/dandy-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "4a229f73330723ab0598a9bd569d8110c19241b7", + "tarball": "http://registry.npmjs.org/dandy/-/dandy-0.0.5.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/dandy/" + }, + "dash": { + "name": "dash", + "description": "RESTless Evented JavaScript", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "pcolton", + "email": "paul@colton.net" + } + ], + "time": { + "modified": "2011-05-10T03:54:48.795Z", + "created": "2011-05-09T18:32:24.518Z", + "0.2.0": "2011-05-09T18:32:25.132Z", + "0.3.0": "2011-05-10T03:54:48.795Z" + }, + "author": { + "name": "Paul Colton", + "email": "dashjs@colton.net" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/dash/0.2.0", + "0.3.0": "http://registry.npmjs.org/dash/0.3.0" + }, + "dist": { + "0.2.0": { + "shasum": "a2608e2905b834fe62c830cc822aa74a6a203e5f", + "tarball": "http://registry.npmjs.org/dash/-/dash-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "449b6a72fde4c667dc31da46715aaa3bedce6ad9", + "tarball": "http://registry.npmjs.org/dash/-/dash-0.3.0.tgz" + } + }, + "keywords": [ + "util", + "functional", + "server", + "client", + "browser", + "backbone", + "nowjs", + "mobile" + ], + "url": "http://registry.npmjs.org/dash/" + }, + "dash-fu": { + "name": "dash-fu", + "description": "Use me to push data to Dash-fu in real time", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "assaf", + "email": "assaf@labnotes.org" + } + ], + "time": { + "modified": "2011-08-23T03:26:35.365Z", + "created": "2011-08-23T03:26:32.153Z", + "1.0.0": "2011-08-23T03:26:35.365Z" + }, + "author": { + "name": "Assaf Arkin", + "email": "assaf@labnotes.org", + "url": "labnotes.org" + }, + "repository": { + "type": "git", + "url": "git@github.com:assaf/dash-fu-node.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/dash-fu/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "ed0e084f87d1106616c856eda405d549abb05d8a", + "tarball": "http://registry.npmjs.org/dash-fu/-/dash-fu-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/dash-fu/" + }, + "dashboard": { + "name": "dashboard", + "description": "Create dashboards with gadgets on node.js", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "dmarcos", + "email": "diego.marcos@gmail.com" + } + ], + "time": { + "modified": "2011-05-12T08:43:03.953Z", + "created": "2011-05-12T08:43:00.434Z", + "0.0.1": "2011-05-12T08:43:03.953Z" + }, + "author": { + "name": "Diego Marcos", + "email": "diego.marcos@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/dashboard/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "314cc02bfefb553b1a977190cd17f3526e8b9aad", + "tarball": "http://registry.npmjs.org/dashboard/-/dashboard-0.0.1.tgz" + } + }, + "keywords": [ + "gadgets", + "server", + "client", + "dashboard" + ], + "url": "http://registry.npmjs.org/dashboard/" + }, + "data": { + "name": "data", + "description": "A Javascript data manipulation library.", + "dist-tags": { + "latest": "0.4.1" + }, + "maintainers": [ + { + "name": "michael", + "email": "ma@zive.at" + } + ], + "author": { + "name": "Michael Aufreiter" + }, + "time": { + "modified": "2011-07-24T15:45:13.207Z", + "created": "2011-03-10T21:57:38.797Z", + "0.1.0": "2011-03-10T21:57:38.797Z", + "0.2.0": "2011-03-10T21:57:38.797Z", + "0.2.1": "2011-03-12T19:38:54.197Z", + "0.2.2": "2011-03-27T23:27:22.132Z", + "0.3.0": "2011-04-26T23:35:24.909Z", + "0.4.0": "2011-07-14T23:20:35.915Z", + "0.4.1": "2011-07-24T15:45:13.207Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/data/0.1.0", + "0.2.0": "http://registry.npmjs.org/data/0.2.0", + "0.2.1": "http://registry.npmjs.org/data/0.2.1", + "0.2.2": "http://registry.npmjs.org/data/0.2.2", + "0.3.0": "http://registry.npmjs.org/data/0.3.0", + "0.4.0": "http://registry.npmjs.org/data/0.4.0", + "0.4.1": "http://registry.npmjs.org/data/0.4.1" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/data/-/data-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "19c542605fae9538eb765f668f539c3994c1bdf1", + "tarball": "http://registry.npmjs.org/data/-/data-0.2.0.tgz" + }, + "0.2.1": { + "tarball": "http://registry.npmjs.org/data/-/data-0.2.1.tgz" + }, + "0.2.2": { + "tarball": "http://registry.npmjs.org/data/-/data-0.2.2.tgz" + }, + "0.3.0": { + "shasum": "92d61bfc4b8f596503e51c53c45f6ddaed1b0209", + "tarball": "http://registry.npmjs.org/data/-/data-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "fd37a8a5c34d4ff310b42612b5b7d3b58e9b7270", + "tarball": "http://registry.npmjs.org/data/-/data-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "a5294546464544184de96a5e47407ce34b38b1b0", + "tarball": "http://registry.npmjs.org/data/-/data-0.4.1.tgz" + } + }, + "keywords": [ + "util", + "functional", + "linked-data", + "server", + "client", + "browser" + ], + "url": "http://registry.npmjs.org/data/" + }, + "data-layer": { + "name": "data-layer", + "description": "Data layer for nodejs apps. Provides a internal url interface to grab data.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "crypticswarm", + "email": "crypticswarm@gmail.com" + } + ], + "time": { + "modified": "2011-09-04T11:51:13.844Z", + "created": "2011-05-06T06:26:29.379Z", + "0.1.0": "2011-05-06T06:26:29.574Z", + "0.1.1": "2011-09-04T11:50:18.259Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/CrypticSwarm/data-layer.git" + }, + "author": { + "name": "Perrin Westrich", + "email": "crypticswarm@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/data-layer/0.1.0", + "0.1.1": "http://registry.npmjs.org/data-layer/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "97ab56a5456ddbb08d098cc8a9280bfcf3522ac4", + "tarball": "http://registry.npmjs.org/data-layer/-/data-layer-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "0b4b0eca5a5b96ca3f6e8dc7ea25dc3c42a2dffc", + "tarball": "http://registry.npmjs.org/data-layer/-/data-layer-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/data-layer/" + }, + "data-page": { + "name": "data-page", + "description": "Help when paging through sets of results", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "acme", + "email": "acme@astray.com" + } + ], + "time": { + "modified": "2011-08-23T07:46:58.219Z", + "created": "2011-08-23T07:46:56.885Z", + "0.0.1": "2011-08-23T07:46:58.219Z" + }, + "author": { + "name": "Leon Brocard", + "email": "acme@astray.com", + "url": "http://www.astray.com/" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/data-page/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "6509e8657017f1de594cc5678a6b5c69ccfa8414", + "tarball": "http://registry.npmjs.org/data-page/-/data-page-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/data-page/" + }, + "data-section": { + "name": "data-section", + "description": "Read data from comment, like as perl's Data::Section::Simple.", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "hokaccha", + "email": "k.hokamura@gmail.com" + } + ], + "time": { + "modified": "2011-11-05T15:48:10.392Z", + "created": "2011-07-10T05:28:56.674Z", + "0.1.0": "2011-07-10T05:28:57.889Z", + "0.2.0": "2011-07-14T02:33:53.867Z", + "0.2.1": "2011-11-05T15:48:10.392Z" + }, + "author": { + "name": "Kazuhito Hokamura", + "email": "k.hokamura@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/hokaccha/node-data-section.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/data-section/0.1.0", + "0.2.0": "http://registry.npmjs.org/data-section/0.2.0", + "0.2.1": "http://registry.npmjs.org/data-section/0.2.1" + }, + "dist": { + "0.1.0": { + "shasum": "36f19991da826c7176d571d005892624b54af498", + "tarball": "http://registry.npmjs.org/data-section/-/data-section-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "8e2b7a30ec31981ad7cd2c7c36d3f7f272cea2f4", + "tarball": "http://registry.npmjs.org/data-section/-/data-section-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "c96c5faace98fd4833eca420dfd3f0fa3c899994", + "tarball": "http://registry.npmjs.org/data-section/-/data-section-0.2.1.tgz" + } + }, + "keywords": [ + "cli", + "data", + "comment" + ], + "url": "http://registry.npmjs.org/data-section/" + }, + "data-uuid": { + "name": "data-uuid", + "description": "RFC4122v4 complaint UUIDs", + "dist-tags": { + "latest": "0.4.0" + }, + "maintainers": [ + { + "name": "samuraijack", + "email": "nickolay8@gmail.com" + } + ], + "author": { + "name": "Robert Kieffer", + "email": "robert@broofa.com" + }, + "repository": { + "web": "http://github.com/SamuraiJack/Data.UUID/tree", + "url": "git://github.com/SamuraiJack/Data.UUID.git", + "type": "git" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/data-uuid/0.3.0", + "0.4.0": "http://registry.npmjs.org/data-uuid/0.4.0" + }, + "dist": { + "0.3.0": { + "tarball": "http://packages:5984/data-uuid/-/data-uuid-0.3.0.tgz" + }, + "0.4.0": { + "tarball": "http://packages:5984/data-uuid/-/data-uuid-0.4.0.tgz" + } + }, + "url": "http://registry.npmjs.org/data-uuid/" + }, + "data-visitor": { + "name": "data-visitor", + "description": "Visitor style traversal of JavaScript data structures", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "samuraijack", + "email": "nickolay8@gmail.com" + } + ], + "author": { + "name": "Nickolay Platonov", + "email": "nplatonov@cpan.org" + }, + "repository": { + "web": "http://github.com/SamuraiJack/Data.Visitor/tree", + "url": "git://github.com/SamuraiJack/Data.Visitor.git", + "type": "git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/data-visitor/0.2.0" + }, + "dist": { + "0.2.0": { + "tarball": "http://packages:5984/data-visitor/-/data-visitor-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/data-visitor/" + }, + "data2xml": { + "name": "data2xml", + "description": "A data to XML converter with a nice interface (for NodeJS).", + "dist-tags": { + "latest": "0.4.0" + }, + "maintainers": [ + { + "name": "chilts", + "email": "chilts@appsattic.com" + } + ], + "time": { + "modified": "2011-12-08T22:15:09.853Z", + "created": "2011-11-01T23:17:40.492Z", + "0.1.0": "2011-11-01T23:17:44.965Z", + "0.2.0": "2011-11-10T02:38:06.855Z", + "0.3.0": "2011-11-29T21:32:15.541Z", + "0.4.0": "2011-12-08T22:15:09.853Z" + }, + "author": { + "name": "Andrew Chilton", + "email": "chilts@appsattic.com", + "url": "http://www.appsattic.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/appsattic/node-data2xml.git" + }, + "users": { + "chilts": true + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/data2xml/0.1.0", + "0.2.0": "http://registry.npmjs.org/data2xml/0.2.0", + "0.3.0": "http://registry.npmjs.org/data2xml/0.3.0", + "0.4.0": "http://registry.npmjs.org/data2xml/0.4.0" + }, + "dist": { + "0.1.0": { + "shasum": "9fbf33093c5f3ba979675861f9d94bc400be5492", + "tarball": "http://registry.npmjs.org/data2xml/-/data2xml-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "27d251cdec46efd91c1dcd81088089ba089e0f76", + "tarball": "http://registry.npmjs.org/data2xml/-/data2xml-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "f6183b82f240fde9eba5661cc178ce7c96b0c78a", + "tarball": "http://registry.npmjs.org/data2xml/-/data2xml-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "f857f4d9bc7fde313ef5f2781ff90495dc7dc83d", + "tarball": "http://registry.npmjs.org/data2xml/-/data2xml-0.4.0.tgz" + } + }, + "keywords": [ + "data", + "xml", + "data2xml", + "datatoxml", + "js2xml", + "jstoxml", + "json2xml", + "jsontoxml" + ], + "url": "http://registry.npmjs.org/data2xml/" + }, + "databank": { + "name": "databank", + "description": "Abstraction layer for JSON storage", + "dist-tags": { + "latest": "0.5.0" + }, + "readme": "This package is an abstraction tool for document stores or key-value\nstores in Node.js.\n\nMy goal is to hedge my bets by using a simple CRUD + search interface\nfor interacting with a datastore. If at some point I really need the\nspecial snowflake features of Redis or MongoDB or Cassandra or Riak or\nwhatever, I should be able to bust out of this simple abstraction and\nuse their native interface without rewriting a lot of code.\n\nI also want the data structures stored to look roughly like what\nsomeone experienced with the datastore would expect.\n\nI chose the name \"databank\" since it's not in widespread use and won't\ncause name conflicts, and because it sounds like something a 1960s\nrobot would say.\n\nLicense\n-------\n\nCopyright 2011, StatusNet Inc.\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n> http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n\nSchemata\n--------\n\nThis library assumes you have document \"types\" - like \"person\",\n\"chair\", \"photo\", \"bankaccount\", \"trainreservation\" -- that you can\nidentify with a unique scalar key -- email address, URL, UUID, SSN, or\nwhatever.\n\nYour \"document\" is anything that can be JSON-encoded and\ndecoded. Scalar, array and object/tree values are all totally cool.\n\nImplementation classes that support schemata should support a \"schema\"\nelement on the constructor params for `Databank.get()` (see below). A\nschema can have elements for each type, with the following elements:\n\n* pkey: the primary key element name.\n\n* indices: array of element names that should be indexed. You should\n really have an index on each element you search on frequently.\n\nDotted notation\n===============\n\nIn schemata you can use dotted-notation, a la MongoDB, to define\nfields that are part of parts of the object. For example, for an\nobject like this:\n\n { email: \"evan@status.net\", name: { last: \"Prodromou\", first: \"Evan\" } }\n\n...you may have a schema like this:\n\n { person: { pkey: \"email\", indices: [\"name.last\"] } }\n\nDatabank\n========\n\nThe class has a single static method for for initializing an instance:\n\n* `get(driver, params)`\n\n Get an instance of `DriverDatabank` from the module `driverdatabank` and\n initialize it with the provided params (passed as a single object).\n\n This is the place you should usually pass in a schema parameter.\n\n var bank = Databank.get('redis', {schema: {person: {pkey: \"email\"}}});\n\n bank.connect({}, function(err) {\n if (err) {\n console.log(\"Couldn't connect to databank: \" + err.message);\n } else {\n // ... \n }\n });\n\nThe databank interface has these methods:\n\n* `connect(params, onCompletion)`\n\n Connect to the databank. `params` may be used by the underlying server.\n\n `onCompletion` takes one argument: a `DatabankError` object. Null if no error.\n\n* `disconnect(onCompletion)`\n\n Disconnect from the databank. `onCompletion` takes one argument, a DatabankError.\n\n* `create(type, id, value, onCompletion)`\n\n Create a databank entry of type `type` with id `id` and content `value`.\n\n How `type` and `id` are mapped to keys or whatever in the DB is\n unspecified. Don't mix and match.\n\n `onCompletion` takes two arguments: a `DatabankError` (or null) and the\n created object. That created object may have some extra stuff added on.\n\n Common error type here is `AlreadyExistsError`.\n\n store.create('activity', uuid, activity, function(err, value) {\n if (err instanceof AlreadyExistsError) {\n res.writeHead(409, {'Content-Type': 'application/json'});\n res.end(JSON.stringify(err.message));\n } else if (err) {\n res.writeHead(400, {'Content-Type': 'application/json'});\n res.end(JSON.stringify(err.message));\n } else {\n res.writeHead(200, {'Content-Type': 'application/json'});\n res.end(JSON.stringify(value));\n }\n });\n\n* `read(type, id, onCompletion)`\n\n Read an object of type `type` with id `id` from the databank. `onCompletion` will get\n two arguments: a `DatabankError` (or null) and the object if found.\n\n Common error type here is `NoSuchThingError` if the databank has no such object.\n\n bank.read('Book', '978-0141439600', function(err, user) {\n if (err instanceof NoSuchThingError) {\n res.writeHead(404, {'Content-Type': 'application/json'});\n res.end(JSON.stringify(err.message));\n } else if (err) {\n res.writeHead(500, {'Content-Type': 'application/json'});\n res.end(JSON.stringify(err.message));\n } else {\n res.writeHead(200, {'Content-Type': 'application/json'});\n res.end(JSON.stringify(user));\n }\n });\n\n* `update(type, id, value, onCompletion)`\n\n Update the (existing) object of type `type` with id `id` in the databank. `onCompletion`\n will get two arguments: a `DatabankError` (or null) and the object if found.\n\n Common error type here is `NoSuchThingError` if the databank has no such object.\n\n* `save(type, id, value, onCompletion)`\n\n Either create a new object, or update an existing object. For when\n you don't care which.\n\n* `del(type, id, onCompletion)`\n\n Delete the object of type `type` with id `id`. `onCompletion` takes one\n argument, a `DatabankError` (null on success).\n\n \"delete\" is a keyword, so I decided not to use that.\n\n* `search(type, criteria, onResult, onCompletion)`\n\n Finds objects of type `type` which match `criteria`, a map of\n property names to exact value matches. `onResult` is called one time\n for each result, with a single argument, the object that matches the\n criteria. Use a collector array if you want all the results in an array.\n \n Property names can be dotted to indicate deeper structures; for\n example, this object:\n \n\t{name: {last: \"Prodromou\", first: \"Evan\"}, age: 43}\n\n would match the criteria `{\"name.last\": \"Prodromou\"}`.\n\n `onCompletion` takes one argument, a `DatabankError`. A search with\n no results will get a `NoSuchThingError`. I think this is the method\n most likely to elicit a `NotImplementedError`, since most key-value\n stores don't handle this kind of thing.\n\n You're also on your own on sorting.\n\n function getModerators(callback) {\n var results = [];\n\n bank.search('user', {role: 'moderator'}, function(result) {\n results.append(result);\n },\n function(err) {\n if (err) {\n callback(err, null);\n } else {\n results.sort(function(a, b) { \n return a.created - b.created;\n });\n callback(null, results);\n }\n });\n }\n\nDatabankError\n=============\n\nThis is a subclass of `Error` for stuff that went wrong with a\n`Databank`. Subclasses include:\n\n* `NotImplementedError`\n \n That doesn't work (yet).\n\n* `NoSuchThingError`\n\n The type/id pair you were trying to read/update/delete doesn't exist.\n\n* `AlreadyExistsError`\n\n The type/id pair you were trying to create *does* exist.\n\n* `NotConnectedError`\n\n You forgot to call `connect` first.\n\n* `AlreadyConnectedError`\n\n You already called `connect`.\n\nTODO\n----\n\n* LevelDB driver\n* Membase driver\n* Riak driver\n* Cassandra driver\n* CouchDB driver\n* Test for key miss on read(), del(), update()\n* Test for key clash on create()\n* Test for dotted notation in schema\n* Benchmark test with medium-sized (10^5 or 10^6) dataset\n* Better support for automated internal keys (object ID in MongoDB or CouchDB)\n", + "maintainers": [ + { + "name": "evanp", + "email": "evan@status.net" + } + ], + "time": { + "modified": "2011-12-12T17:46:36.605Z", + "created": "2011-11-30T17:33:21.779Z", + "0.1.0": "2011-11-30T17:33:22.461Z", + "0.2.0": "2011-12-02T16:49:27.443Z", + "0.3.0": "2011-12-02T22:15:50.133Z", + "0.4.0": "2011-12-07T20:17:45.692Z", + "0.4.1": "2011-12-10T19:55:23.718Z", + "0.5.0": "2011-12-12T17:46:36.605Z" + }, + "author": { + "name": "Evan Prodromou", + "email": "evan@status.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/evanp/databank.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/databank/0.1.0", + "0.2.0": "http://registry.npmjs.org/databank/0.2.0", + "0.3.0": "http://registry.npmjs.org/databank/0.3.0", + "0.4.0": "http://registry.npmjs.org/databank/0.4.0", + "0.4.1": "http://registry.npmjs.org/databank/0.4.1", + "0.5.0": "http://registry.npmjs.org/databank/0.5.0" + }, + "dist": { + "0.1.0": { + "shasum": "de2fe671be599dca916cd99d1a8579b01bd0d873", + "tarball": "http://registry.npmjs.org/databank/-/databank-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "fc20527b3637c3de3310072dc1bd55a5d298a6c0", + "tarball": "http://registry.npmjs.org/databank/-/databank-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "2cda159083ec6822bcd15296d8cd153e2a3f7b22", + "tarball": "http://registry.npmjs.org/databank/-/databank-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "caceeee49bf05b0124179fc5817ddd71e67269fb", + "tarball": "http://registry.npmjs.org/databank/-/databank-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "cd579c0db23e4c7b78e68f1e14dbf71f8aa8709c", + "tarball": "http://registry.npmjs.org/databank/-/databank-0.4.1.tgz" + }, + "0.5.0": { + "shasum": "5df2d8917a7bf8ae80bf520c19d5c35d96ad0ab3", + "tarball": "http://registry.npmjs.org/databank/-/databank-0.5.0.tgz" + } + }, + "url": "http://registry.npmjs.org/databank/" + }, + "database": { + "name": "database", + "description": "Database API for Node.js", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "viatropos", + "email": "lancejpollard@gmail.com" + } + ], + "time": { + "modified": "2011-11-08T19:34:54.368Z", + "created": "2011-11-08T19:34:53.774Z", + "0.0.1": "2011-11-08T19:34:54.368Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/viatropos/database.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/database/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "cb36ba377c08f8e4315d56fe4537b24d1cce6234", + "tarball": "http://registry.npmjs.org/database/-/database-0.0.1.tgz" + } + }, + "keywords": [ + "framework", + "node" + ], + "url": "http://registry.npmjs.org/database/" + }, + "database-cleaner": { + "name": "database-cleaner", + "description": "Database Cleaner for node.js", + "dist-tags": { + "latest": "0.6.0" + }, + "maintainers": [ + { + "name": "emerleite", + "email": "emerleite@gmail.com" + } + ], + "time": { + "modified": "2011-11-05T22:24:48.792Z", + "created": "2011-02-09T05:12:39.559Z", + "0.1.0": "2011-02-09T05:12:40.183Z", + "0.1.1": "2011-02-09T12:53:51.062Z", + "0.2.0": "2011-03-02T15:32:18.927Z", + "0.3.0": "2011-03-04T23:12:41.149Z", + "0.3.1": "2011-03-09T17:42:26.666Z", + "0.3.2": "2011-05-12T03:31:38.186Z", + "0.4.0": "2011-08-09T00:42:18.773Z", + "0.5.0": "2011-09-27T03:20:50.426Z", + "0.5.1": "2011-11-03T23:22:07.635Z", + "0.6.0": "2011-11-05T22:24:48.792Z" + }, + "author": { + "name": "Emerson Macedo", + "email": "emerleite@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/emerleite/node-database-cleaner.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/database-cleaner/0.1.0", + "0.1.1": "http://registry.npmjs.org/database-cleaner/0.1.1", + "0.2.0": "http://registry.npmjs.org/database-cleaner/0.2.0", + "0.3.0": "http://registry.npmjs.org/database-cleaner/0.3.0", + "0.3.1": "http://registry.npmjs.org/database-cleaner/0.3.1", + "0.3.2": "http://registry.npmjs.org/database-cleaner/0.3.2", + "0.4.0": "http://registry.npmjs.org/database-cleaner/0.4.0", + "0.5.0": "http://registry.npmjs.org/database-cleaner/0.5.0", + "0.6.0": "http://registry.npmjs.org/database-cleaner/0.6.0" + }, + "dist": { + "0.1.0": { + "shasum": "db66ded64af22bedcd549f3a2c252b85b6004f92", + "tarball": "http://registry.npmjs.org/database-cleaner/-/database-cleaner-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "a61850a2866018b6a0cc37d3bd59504ec354e817", + "tarball": "http://registry.npmjs.org/database-cleaner/-/database-cleaner-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "613967e9489196780b47d1659bbff94022fe77f9", + "tarball": "http://registry.npmjs.org/database-cleaner/-/database-cleaner-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "1377401cd9cfb0878d7282f3abeb5126f80c117d", + "tarball": "http://registry.npmjs.org/database-cleaner/-/database-cleaner-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "f1f6a3f633ad00b14546f489f8447f2539da1329", + "tarball": "http://registry.npmjs.org/database-cleaner/-/database-cleaner-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "5081a15ad0ce44f862977c774c7c441776735b92", + "tarball": "http://registry.npmjs.org/database-cleaner/-/database-cleaner-0.3.2.tgz" + }, + "0.4.0": { + "shasum": "96c42b0af99b1aec828ab8d5f124e151486430be", + "tarball": "http://registry.npmjs.org/database-cleaner/-/database-cleaner-0.4.0.tgz" + }, + "0.5.0": { + "shasum": "cc4a9f9d7c4cc79d465578569f38b4449424b40b", + "tarball": "http://registry.npmjs.org/database-cleaner/-/database-cleaner-0.5.0.tgz" + }, + "0.6.0": { + "shasum": "188ce8f780428d79c5fa3f7be945960305b00ddf", + "tarball": "http://registry.npmjs.org/database-cleaner/-/database-cleaner-0.6.0.tgz" + } + }, + "keywords": [ + "database", + "cleaner", + "mongodb", + "redis", + "couchdb", + "tests", + "package.json" + ], + "url": "http://registry.npmjs.org/database-cleaner/" + }, + "database.js": { + "name": "database.js", + "description": "Database API for Node.js", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "viatropos", + "email": "lancejpollard@gmail.com" + } + ], + "time": { + "modified": "2011-11-08T19:34:22.887Z", + "created": "2011-11-08T19:34:22.328Z", + "0.0.1": "2011-11-08T19:34:22.887Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/viatropos/database.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/database.js/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "991aaad143ba67801ec7e04e21be3595c8b72b0e", + "tarball": "http://registry.npmjs.org/database.js/-/database.js-0.0.1.tgz" + } + }, + "keywords": [ + "framework", + "node" + ], + "url": "http://registry.npmjs.org/database.js/" + }, + "datapool": { + "name": "datapool", + "description": "The key/value storage module for node.js.", + "dist-tags": { + "latest": "0.0.1-1-alpha" + }, + "maintainers": [ + { + "name": "samyak_bhuta", + "email": "samyak.bhuta@gmail.com" + } + ], + "time": { + "modified": "2011-04-19T21:33:20.871Z", + "created": "2011-04-19T21:33:18.043Z", + "0.0.1-1-alpha": "2011-04-19T21:33:20.871Z" + }, + "author": { + "name": "Samyak Bhuta", + "email": "samyak.bhuta@gmail.com", + "url": "in.linkedin.com/in/samyakbhuta" + }, + "repository": { + "type": "git", + "url": "git@github.com:samyakbhuta/pool.js.git" + }, + "versions": { + "0.0.1-1-alpha": "http://registry.npmjs.org/datapool/0.0.1-1-alpha" + }, + "dist": { + "0.0.1-1-alpha": { + "shasum": "1892462eaa2f732f0f5dc16e1f5795df9a2c1107", + "tarball": "http://registry.npmjs.org/datapool/-/datapool-0.0.1-1-alpha.tgz" + } + }, + "keywords": [ + "database db store storage listing pool key value associative array" + ], + "url": "http://registry.npmjs.org/datapool/" + }, + "datasift": { + "name": "datasift", + "description": "DataSift streaming API consumer", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "ollieparsley", + "email": "ollie@ollieparsley.com" + } + ], + "time": { + "modified": "2011-08-25T22:19:02.035Z", + "created": "2011-08-25T22:19:00.622Z", + "0.0.1": "2011-08-25T22:19:02.035Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/datasift/NodeJS-Consumer.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/datasift/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "fa12241b7c16b788f69f4b34f0d30740df10ef7e", + "tarball": "http://registry.npmjs.org/datasift/-/datasift-0.0.1.tgz" + } + }, + "keywords": [ + "datasift", + "twitter", + "facebook", + "streaming" + ], + "url": "http://registry.npmjs.org/datasift/" + }, + "datastores": { + "name": "datastores", + "description": "Abstractions and wrappers for datastores.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "andrewschaaf", + "email": "andrew@andrewschaaf.com" + } + ], + "time": { + "modified": "2011-09-29T12:21:23.086Z", + "created": "2011-09-29T12:21:22.514Z", + "0.0.1": "2011-09-29T12:21:23.086Z" + }, + "author": { + "name": "Andrew Schaaf", + "email": "andrew@andrewschaaf.com", + "url": "http://andrewschaaf.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/andrewschaaf/node-datastores.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/datastores/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "ba4cfa8351698be0e483b00833184974576b70d1", + "tarball": "http://registry.npmjs.org/datastores/-/datastores-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/datastores/" + }, + "date": { + "name": "date", + "description": "Date and Time tools for Browser JavaScript and Node.js", + "dist-tags": { + "latest": "1.0.2" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-08-19T03:16:39.539Z", + "created": "2011-03-23T02:20:22.806Z", + "1.0.0": "2011-03-23T02:20:23.400Z", + "1.0.1": "2011-03-30T19:28:03.772Z", + "1.0.2": "2011-08-19T03:16:39.539Z" + }, + "author": { + "name": "Andrea Giammarchi", + "url": "http://http://webreflection.blogspot.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/coolaj86/javascript-date.git" + }, + "versions": { + "1.0.1": "http://registry.npmjs.org/date/1.0.1", + "1.0.2": "http://registry.npmjs.org/date/1.0.2" + }, + "dist": { + "1.0.1": { + "shasum": "e0295aa986507769621ed2e1019cf292e83c8917", + "tarball": "http://registry.npmjs.org/date/-/date-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "9f1503d6519843d94866fc79a91e9be88dcb4776", + "tarball": "http://registry.npmjs.org/date/-/date-1.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/date/" + }, + "date-utils": { + "name": "date-utils", + "description": "Date add-ons for Node.js", + "dist-tags": { + "latest": "1.2.5" + }, + "maintainers": [ + { + "name": "JerrySievert", + "email": "code@legitimatesounding.com" + } + ], + "time": { + "modified": "2011-10-22T16:03:07.000Z", + "created": "2011-01-09T19:35:04.675Z", + "0.1.0": "2011-01-09T19:35:05.044Z", + "0.1.2": "2011-01-11T04:35:14.783Z", + "0.1.3": "2011-01-23T10:37:16.790Z", + "0.1.4": "2011-01-23T13:02:38.908Z", + "0.1.5": "2011-01-23T19:18:01.955Z", + "0.1.6": "2011-01-29T22:14:50.566Z", + "0.1.7": "2011-02-03T01:01:14.284Z", + "0.1.8": "2011-03-22T02:02:51.333Z", + "1.0.0": "2011-06-05T21:03:17.108Z", + "1.1.0": "2011-06-21T03:53:36.716Z", + "1.2.0": "2011-06-25T18:11:55.843Z", + "1.2.1": "2011-08-07T18:38:15.620Z", + "1.2.2": "2011-08-07T18:40:49.582Z", + "1.2.3": "2011-08-10T04:11:59.124Z", + "1.2.4": "2011-08-31T02:55:07.130Z", + "1.2.5": "2011-10-22T16:03:07.000Z" + }, + "author": { + "name": "Jerry Sievert", + "email": "code@legitimatesounding.com", + "url": "http://legitimatesounding.com/blog/" + }, + "repository": { + "type": "git", + "url": "git://github.com/JerrySievert/node-date-utils.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/date-utils/0.1.0", + "0.1.2": "http://registry.npmjs.org/date-utils/0.1.2", + "0.1.3": "http://registry.npmjs.org/date-utils/0.1.3", + "0.1.4": "http://registry.npmjs.org/date-utils/0.1.4", + "0.1.5": "http://registry.npmjs.org/date-utils/0.1.5", + "0.1.6": "http://registry.npmjs.org/date-utils/0.1.6", + "0.1.7": "http://registry.npmjs.org/date-utils/0.1.7", + "0.1.8": "http://registry.npmjs.org/date-utils/0.1.8", + "1.0.0": "http://registry.npmjs.org/date-utils/1.0.0", + "1.1.0": "http://registry.npmjs.org/date-utils/1.1.0", + "1.2.0": "http://registry.npmjs.org/date-utils/1.2.0", + "1.2.1": "http://registry.npmjs.org/date-utils/1.2.1", + "1.2.2": "http://registry.npmjs.org/date-utils/1.2.2", + "1.2.3": "http://registry.npmjs.org/date-utils/1.2.3", + "1.2.4": "http://registry.npmjs.org/date-utils/1.2.4", + "1.2.5": "http://registry.npmjs.org/date-utils/1.2.5" + }, + "dist": { + "0.1.0": { + "shasum": "578a4785a0bb9fa3504b91e139ad37f046a0f1df", + "tarball": "http://registry.npmjs.org/date-utils/-/date-utils-0.1.0.tgz" + }, + "0.1.2": { + "shasum": "2200d55b9e661693192d389a3e925f9151932e4f", + "tarball": "http://registry.npmjs.org/date-utils/-/date-utils-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "e40b84e7aafdc8ab53a741d53fca4ec7b7cb78a6", + "tarball": "http://registry.npmjs.org/date-utils/-/date-utils-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "1e6f69344b19f790b9648d61f76cf29e55c50173", + "tarball": "http://registry.npmjs.org/date-utils/-/date-utils-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "ea75529eb99f6558c31b079f3f9ad56e0166bd46", + "tarball": "http://registry.npmjs.org/date-utils/-/date-utils-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "fb1668f4389c3a66f03bc5452561de3076e10298", + "tarball": "http://registry.npmjs.org/date-utils/-/date-utils-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "4db2987422b88a4837a66f501e15d48b82c5ebe6", + "tarball": "http://registry.npmjs.org/date-utils/-/date-utils-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "f10aabc55eddf43d3aab7a23055cf012a3158bab", + "tarball": "http://registry.npmjs.org/date-utils/-/date-utils-0.1.8.tgz" + }, + "1.0.0": { + "shasum": "6e157466d26ede7923908ee7edc1e7b5818e782d", + "tarball": "http://registry.npmjs.org/date-utils/-/date-utils-1.0.0.tgz" + }, + "1.1.0": { + "shasum": "4fed0244f8870709313f30b04ee43a9f4d8d91ae", + "tarball": "http://registry.npmjs.org/date-utils/-/date-utils-1.1.0.tgz" + }, + "1.2.0": { + "shasum": "0ec9ba1785612c23ec716b6822532cf1d7f829ee", + "tarball": "http://registry.npmjs.org/date-utils/-/date-utils-1.2.0.tgz" + }, + "1.2.1": { + "shasum": "852f82167d0a3bc204cb95499d113a4c8107a8a9", + "tarball": "http://registry.npmjs.org/date-utils/-/date-utils-1.2.1.tgz" + }, + "1.2.2": { + "shasum": "bd88a4473ed08a2596c58e9a53effd754df32aa4", + "tarball": "http://registry.npmjs.org/date-utils/-/date-utils-1.2.2.tgz" + }, + "1.2.3": { + "shasum": "e614f9c4c612a9badb534032e26995fa7d100d06", + "tarball": "http://registry.npmjs.org/date-utils/-/date-utils-1.2.3.tgz" + }, + "1.2.4": { + "shasum": "ab6d59b1a793645e4735740e7b40be68b97f7e5d", + "tarball": "http://registry.npmjs.org/date-utils/-/date-utils-1.2.4.tgz" + }, + "1.2.5": { + "shasum": "5dec76f9ffe1e2fd4aaecc6b05b09155c1bcf326", + "tarball": "http://registry.npmjs.org/date-utils/-/date-utils-1.2.5.tgz" + } + }, + "keywords": [ + "date", + "utils", + "date-utils", + "time" + ], + "url": "http://registry.npmjs.org/date-utils/" + }, + "dateformat": { + "name": "dateformat", + "description": "A node.js package for Steven Levithan's excellent dateFormat() function.", + "dist-tags": { + "latest": "1.0.2-1.2.3" + }, + "maintainers": [ + { + "name": "felixge", + "email": "felix@debuggable.com" + } + ], + "time": { + "modified": "2011-09-28T11:06:44.207Z", + "created": "2011-03-13T16:29:39.060Z", + "0.9.0-1.2.3": "2011-03-13T16:29:39.454Z", + "1.0.0-1.2.3": "2011-03-13T16:32:25.648Z", + "1.0.1-1.2.3": "2011-04-25T15:30:05.199Z", + "1.0.2-1.2.3": "2011-09-28T11:06:44.207Z" + }, + "author": { + "name": "Steven Levithan" + }, + "versions": { + "0.9.0-1.2.3": "http://registry.npmjs.org/dateformat/0.9.0-1.2.3", + "1.0.0-1.2.3": "http://registry.npmjs.org/dateformat/1.0.0-1.2.3", + "1.0.1-1.2.3": "http://registry.npmjs.org/dateformat/1.0.1-1.2.3", + "1.0.2-1.2.3": "http://registry.npmjs.org/dateformat/1.0.2-1.2.3" + }, + "dist": { + "0.9.0-1.2.3": { + "shasum": "ae779067d225240d8bd5ca33718a2c4980bdd8be", + "tarball": "http://registry.npmjs.org/dateformat/-/dateformat-0.9.0-1.2.3.tgz" + }, + "1.0.0-1.2.3": { + "shasum": "dec87d759f2cf83f581459b1bed3b631784991e7", + "tarball": "http://registry.npmjs.org/dateformat/-/dateformat-1.0.0-1.2.3.tgz" + }, + "1.0.1-1.2.3": { + "shasum": "2e5d03039eca89f9d8797f99389de5fb0f4aa2fc", + "tarball": "http://registry.npmjs.org/dateformat/-/dateformat-1.0.1-1.2.3.tgz" + }, + "1.0.2-1.2.3": { + "shasum": "b0220c02de98617433b72851cf47de3df2cdbee9", + "tarball": "http://registry.npmjs.org/dateformat/-/dateformat-1.0.2-1.2.3.tgz" + } + }, + "url": "http://registry.npmjs.org/dateformat/" + }, + "dateformatjs": { + "name": "dateformatjs", + "description": "Formatting Date to String and parsing String to Date module for Node.js, RequireJS, and browser.", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "minodisk", + "email": "daisuke.mino@gmail.com" + } + ], + "time": { + "modified": "2011-07-22T12:58:50.068Z", + "created": "2011-07-22T12:58:49.057Z", + "0.0.6": "2011-07-22T12:58:50.068Z" + }, + "author": { + "name": "Daisuke MINO", + "email": "daisuke.mino@gmail.com" + }, + "versions": { + "0.0.6": "http://registry.npmjs.org/dateformatjs/0.0.6" + }, + "dist": { + "0.0.6": { + "shasum": "f27472d93606457b1653b91110e6de24a4e0534b", + "tarball": "http://registry.npmjs.org/dateformatjs/-/dateformatjs-0.0.6.tgz" + } + }, + "url": "http://registry.npmjs.org/dateformatjs/" + }, + "datejs": { + "name": "datejs", + "description": "datejs, wrapped up as an npm package", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "chrisdew", + "email": "cmsdew@gmail.com" + } + ], + "time": { + "modified": "2011-10-18T10:55:37.518Z", + "created": "2011-10-18T10:55:37.067Z", + "0.0.2": "2011-10-18T10:55:37.518Z" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/datejs/0.0.2" + }, + "dist": { + "0.0.2": { + "shasum": "242cf2e1c7338d9502a5ae4196fd69e234211f4a", + "tarball": "http://registry.npmjs.org/datejs/-/datejs-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/datejs/" + }, + "dateselect": { + "name": "dateselect", + "description": "Dateselect is a time-based job scheduler (like cron). The syntax is built on CSS-like selectors, so it's easy to use while still being powerfull.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "kesla", + "email": "david.bjorklund@gmail.com" + } + ], + "time": { + "modified": "2011-08-28T23:07:13.317Z", + "created": "2011-08-28T23:07:11.252Z", + "0.0.1": "2011-08-28T23:07:13.317Z" + }, + "author": { + "name": "David Björklund", + "email": "davidbj@kth.se", + "url": "http://davidbjorklund.se" + }, + "repository": { + "url": "git://github.com/kesla/dateselect.git", + "type": "git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/dateselect/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "f4584dcdf921b18d40ccd31528ad2a446289b145", + "tarball": "http://registry.npmjs.org/dateselect/-/dateselect-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/dateselect/" + }, + "Dateselect": { + "name": "Dateselect", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "kesla", + "email": "david.bjorklund@gmail.com" + } + ], + "time": { + "modified": "2011-08-28T15:16:00.679Z", + "created": "2011-08-28T15:15:58.996Z", + "0.0.1": "2011-08-28T15:16:00.679Z" + }, + "author": { + "name": "David Björklund", + "email": "davidbj@kth.se", + "url": "http://davidbjorklund.se" + }, + "repository": { + "url": "git://github.com/kesla/dateselect.git", + "type": "git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/Dateselect/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "12078da94912ec5393c38ce7afcd86e48d99d7b9", + "tarball": "http://registry.npmjs.org/Dateselect/-/Dateselect-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/Dateselect/" + }, + "datetime": { + "name": "datetime", + "description": "Date and time formatting", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "joehewitt", + "email": "joe@joehewitt.com" + } + ], + "time": { + "modified": "2011-11-16T20:50:50.502Z", + "created": "2011-07-07T07:51:02.574Z", + "0.0.1": "2011-07-07T07:51:03.110Z", + "0.0.2": "2011-07-07T10:21:37.248Z", + "0.0.3": "2011-08-13T22:15:20.455Z" + }, + "author": { + "name": "Joe Hewitt", + "email": "joe@joehewitt.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/joehewitt/datetime.git" + }, + "users": { + "pid": true + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/datetime/0.0.1", + "0.0.2": "http://registry.npmjs.org/datetime/0.0.2", + "0.0.3": "http://registry.npmjs.org/datetime/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "b2ce572454b02023d40595e81299e332bd8e158f", + "tarball": "http://registry.npmjs.org/datetime/-/datetime-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c2765005528b6db12d51ab97058eeeb9b1b87162", + "tarball": "http://registry.npmjs.org/datetime/-/datetime-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "fa9086d20f81d54e7776a8180ee7320ae367ed78", + "tarball": "http://registry.npmjs.org/datetime/-/datetime-0.0.3.tgz" + } + }, + "keywords": [ + "date", + "time" + ], + "url": "http://registry.npmjs.org/datetime/" + }, + "DateZ": { + "name": "DateZ", + "description": "A wrapper object for the javascript built-in Date object with the missing setTimeZoneOffset() method enhancement.", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "tomouniversalis", + "email": "nagasawa@tomouniversalis.com" + } + ], + "time": { + "modified": "2011-02-15T14:54:38.056Z", + "created": "2011-02-12T18:51:34.126Z", + "0.0.1": "2011-02-12T18:51:34.823Z", + "0.0.2": "2011-02-13T03:01:31.500Z", + "0.0.3": "2011-02-14T22:57:07.989Z", + "0.0.4": "2011-02-15T14:39:56.401Z", + "0.0.5": "2011-02-15T14:41:52.542Z", + "0.0.6": "2011-02-15T14:50:51.834Z" + }, + "author": { + "name": "Tomo Universalis", + "email": "nagasawa@tomouniversalis.com" + }, + "repository": { + "type": "git", + "url": "https://github.com/tomouniversalis/DateZ" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/DateZ/0.0.1", + "0.0.2": "http://registry.npmjs.org/DateZ/0.0.2", + "0.0.3": "http://registry.npmjs.org/DateZ/0.0.3", + "0.0.4": "http://registry.npmjs.org/DateZ/0.0.4", + "0.0.5": "http://registry.npmjs.org/DateZ/0.0.5", + "0.0.6": "http://registry.npmjs.org/DateZ/0.0.6" + }, + "dist": { + "0.0.1": { + "shasum": "d23f5847bd44164cd7644fbdbeae0c476d9bb229", + "tarball": "http://registry.npmjs.org/DateZ/-/DateZ-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "fc4d430401d39453e9782d1188979c711c55ca3b", + "tarball": "http://registry.npmjs.org/DateZ/-/DateZ-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "e1f4bb5fccb8c8a2453fed022d4e9ffb31c8e352", + "tarball": "http://registry.npmjs.org/DateZ/-/DateZ-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "645d114533548eb1368cca9598217fcb12e04cbf", + "tarball": "http://registry.npmjs.org/DateZ/-/DateZ-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "f35db942fdd77297485cfb1ebab24e1e1e0b0a92", + "tarball": "http://registry.npmjs.org/DateZ/-/DateZ-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "6b50af7ce6b8fd0bb73894f0d1ac1f43420c09e6", + "tarball": "http://registry.npmjs.org/DateZ/-/DateZ-0.0.6.tgz" + } + }, + "url": "http://registry.npmjs.org/DateZ/" + }, + "dawanda": { + "name": "dawanda", + "description": "An API client for dawanda", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "teemow", + "email": "teemow@gmail.com" + } + ], + "time": { + "modified": "2011-10-16T15:37:06.584Z", + "created": "2011-10-15T15:37:08.479Z", + "0.0.1": "2011-10-15T15:37:09.587Z", + "0.0.2": "2011-10-16T09:31:03.156Z", + "0.0.3": "2011-10-16T11:47:20.790Z", + "0.0.4": "2011-10-16T15:37:06.584Z" + }, + "author": { + "name": "Timo Derstappen", + "email": "teemow@gmail.com", + "url": "http://teemow.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/teemow/node-dawanda.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/dawanda/0.0.1", + "0.0.2": "http://registry.npmjs.org/dawanda/0.0.2", + "0.0.3": "http://registry.npmjs.org/dawanda/0.0.3", + "0.0.4": "http://registry.npmjs.org/dawanda/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "90e6592815c2a18366bc3b17f6359210f035cd92", + "tarball": "http://registry.npmjs.org/dawanda/-/dawanda-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "9bee9179b38b69686288b17c90d5e1c51e1f61e4", + "tarball": "http://registry.npmjs.org/dawanda/-/dawanda-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "ef2b175779e74e9c6251a7b0fbc493969d07eca4", + "tarball": "http://registry.npmjs.org/dawanda/-/dawanda-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "d35fd0f1a21f3bf5a788c1f132979a42f374328f", + "tarball": "http://registry.npmjs.org/dawanda/-/dawanda-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/dawanda/" + }, + "db": { + "name": "db", + "description": "Easy access to mongodb, redis, or ds", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "sleeplessinc", + "email": "joe@sleepless.com" + } + ], + "time": { + "modified": "2011-10-06T20:14:24.667Z", + "created": "2011-09-17T05:05:47.752Z", + "1.0.0": "2011-09-17T05:05:49.064Z", + "1.0.1": "2011-10-06T20:14:24.667Z" + }, + "author": { + "name": "Joe Hitchens", + "email": "joe@sleepless.com", + "url": "sleepless.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/sleeplessinc/db.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/db/1.0.0", + "1.0.1": "http://registry.npmjs.org/db/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "0047a749642368ac4039df1a675d4c78b93e2fe9", + "tarball": "http://registry.npmjs.org/db/-/db-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "cc5bc0fa280b0a258a218ded0d9792dd98fc2f71", + "tarball": "http://registry.npmjs.org/db/-/db-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/db/" + }, + "db-drizzle": { + "name": "db-drizzle", + "description": "Drizzle database bindings for Node.JS", + "dist-tags": { + "latest": "0.7.5" + }, + "maintainers": [ + { + "name": "mariano", + "email": "mgiglesias@gmail.com" + } + ], + "time": { + "modified": "2011-11-17T19:12:29.052Z", + "created": "2011-03-17T04:00:24.119Z", + "0.3.0": "2011-03-17T04:00:24.842Z", + "0.4.0": "2011-05-08T20:36:13.163Z", + "0.4.1": "2011-05-08T22:41:47.645Z", + "0.4.2": "2011-05-13T19:06:38.536Z", + "0.4.3": "2011-05-13T19:25:38.603Z", + "0.4.5": "2011-05-15T19:39:51.812Z", + "0.4.6": "2011-05-16T20:28:27.206Z", + "0.4.7": "2011-05-17T21:18:04.675Z", + "0.4.8": "2011-05-18T10:18:09.367Z", + "0.4.9": "2011-05-20T19:44:23.863Z", + "0.5.0": "2011-05-21T14:12:19.836Z", + "0.5.1": "2011-05-21T18:54:21.891Z", + "0.5.2": "2011-05-21T21:05:14.714Z", + "0.5.3": "2011-05-21T22:38:51.504Z", + "0.5.4": "2011-05-22T11:20:12.740Z", + "0.5.5": "2011-05-22T17:08:34.109Z", + "0.5.6": "2011-05-22T21:34:08.263Z", + "0.5.7": "2011-05-24T19:58:38.219Z", + "0.5.8": "2011-05-27T15:47:01.687Z", + "0.5.9": "2011-05-27T20:59:00.018Z", + "0.6.0": "2011-05-29T14:10:17.244Z", + "0.6.1": "2011-05-30T14:59:55.950Z", + "0.6.2": "2011-05-30T22:19:19.858Z", + "0.6.3": "2011-05-31T15:45:44.717Z", + "0.6.4": "2011-06-06T21:20:10.426Z", + "0.6.5": "2011-06-17T13:52:07.208Z", + "0.6.6": "2011-06-21T18:40:37.915Z", + "0.6.7": "2011-10-22T22:05:26.600Z", + "0.6.8": "2011-10-23T07:56:09.795Z", + "0.6.9": "2011-10-23T16:57:15.704Z", + "0.7.0": "2011-11-04T13:59:10.911Z", + "0.7.1": "2011-11-05T13:41:16.293Z", + "0.7.2": "2011-11-08T21:37:11.228Z", + "0.7.3": "2011-11-09T17:23:26.345Z", + "0.7.4": "2011-11-10T15:58:33.861Z", + "0.7.5": "2011-11-17T19:12:29.052Z" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/db-drizzle/0.3.0", + "0.4.0": "http://registry.npmjs.org/db-drizzle/0.4.0", + "0.4.1": "http://registry.npmjs.org/db-drizzle/0.4.1", + "0.4.2": "http://registry.npmjs.org/db-drizzle/0.4.2", + "0.4.3": "http://registry.npmjs.org/db-drizzle/0.4.3", + "0.4.5": "http://registry.npmjs.org/db-drizzle/0.4.5", + "0.4.6": "http://registry.npmjs.org/db-drizzle/0.4.6", + "0.4.7": "http://registry.npmjs.org/db-drizzle/0.4.7", + "0.4.8": "http://registry.npmjs.org/db-drizzle/0.4.8", + "0.4.9": "http://registry.npmjs.org/db-drizzle/0.4.9", + "0.5.0": "http://registry.npmjs.org/db-drizzle/0.5.0", + "0.5.1": "http://registry.npmjs.org/db-drizzle/0.5.1", + "0.5.2": "http://registry.npmjs.org/db-drizzle/0.5.2", + "0.5.3": "http://registry.npmjs.org/db-drizzle/0.5.3", + "0.5.4": "http://registry.npmjs.org/db-drizzle/0.5.4", + "0.5.5": "http://registry.npmjs.org/db-drizzle/0.5.5", + "0.5.6": "http://registry.npmjs.org/db-drizzle/0.5.6", + "0.5.7": "http://registry.npmjs.org/db-drizzle/0.5.7", + "0.5.8": "http://registry.npmjs.org/db-drizzle/0.5.8", + "0.5.9": "http://registry.npmjs.org/db-drizzle/0.5.9", + "0.6.0": "http://registry.npmjs.org/db-drizzle/0.6.0", + "0.6.1": "http://registry.npmjs.org/db-drizzle/0.6.1", + "0.6.2": "http://registry.npmjs.org/db-drizzle/0.6.2", + "0.6.3": "http://registry.npmjs.org/db-drizzle/0.6.3", + "0.6.4": "http://registry.npmjs.org/db-drizzle/0.6.4", + "0.6.5": "http://registry.npmjs.org/db-drizzle/0.6.5", + "0.6.6": "http://registry.npmjs.org/db-drizzle/0.6.6", + "0.6.7": "http://registry.npmjs.org/db-drizzle/0.6.7", + "0.6.8": "http://registry.npmjs.org/db-drizzle/0.6.8", + "0.6.9": "http://registry.npmjs.org/db-drizzle/0.6.9", + "0.7.0": "http://registry.npmjs.org/db-drizzle/0.7.0", + "0.7.1": "http://registry.npmjs.org/db-drizzle/0.7.1", + "0.7.2": "http://registry.npmjs.org/db-drizzle/0.7.2", + "0.7.3": "http://registry.npmjs.org/db-drizzle/0.7.3", + "0.7.4": "http://registry.npmjs.org/db-drizzle/0.7.4", + "0.7.5": "http://registry.npmjs.org/db-drizzle/0.7.5" + }, + "dist": { + "0.3.0": { + "shasum": "18c06e1e7ae76a18aa1ee811b9d899411d0c4ec1", + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "eab4917a2e7c1bb266eefac15d7e6a96fc1d5cbc", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "a7fe99133bc886480c27eb2f45f81bd1a12fdb1e", + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.4.0-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "be4bb2dab62ef9aa71f8b0aeef1c7a75ba795410", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "384f6c574cdc98e453aa4bbeb752ae0399699cc1", + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.4.1-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "f526b8fdef42a932341fdd2418a314b81d0c4eba", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "859d0960259906b4fa837e8a21f3da5d6d6766a9", + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.4.2-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "b9ade1803125130c07e8dd87bb317d4c92fa15af", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "0d52087763f421766dd8515ddd3ac0b664e81eea", + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.4.3-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.4.3.tgz" + }, + "0.4.5": { + "shasum": "47a4d1bb0d6a2546318a5936fa4c53bf6974a597", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "12199269b05576d12c03d4b81f0b6b8453bcb922", + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.4.5-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.4.5.tgz" + }, + "0.4.6": { + "shasum": "1986f3a513bc47cd998f4cc8de23478afab1a8a5", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "6b3f69d119e94ca1d82ea29dc621a762364833f8", + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.4.6-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.4.6.tgz" + }, + "0.4.7": { + "shasum": "3bdfe9bf1efc47f9c686323e0e5371857dc78338", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "fbe2900269d4c6f25bba6812e5e209de09e94d77", + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.4.7-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.4.7.tgz" + }, + "0.4.8": { + "shasum": "329938021b7ecdef68d1efde97ba2022d916c2ff", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "680f15ce1bdeceac52fe08618d605fd403db3972", + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.4.8-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.4.8.tgz" + }, + "0.4.9": { + "shasum": "04d2ea940c6306685c805575ea4692d184027922", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "b1f33d433b85a6d57d6fbd25bc7e2067c766201c", + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.4.9-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.4.9.tgz" + }, + "0.5.0": { + "shasum": "7989f6a7f80fd6dacb51d929074ff414f3bdd3ab", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "30c03f2dc24c2be78e41274d055b128e69f42e0c", + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.5.0-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "3f6955c5f2677bfd72dc287e068091b71243c572", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "e53d9750daf64bfd7c018f423bebbf9fdbfc0633", + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.5.1-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "24447d16d918264f2d4c8a05288486e811b4417c", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "8dfc8d8a0957d5584299846d05a961bbdb583d99", + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.5.2-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.5.2.tgz" + }, + "0.5.3": { + "shasum": "54e602619dee09522dc4969c1a17dc3f59803234", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "e0cff03e017ea4e27bc134c1a0821a188731bc3d", + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.5.3-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.5.3.tgz" + }, + "0.5.4": { + "shasum": "a48a76a12950fe37241a1ad6ee00bd49f2d6926a", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "31d69047316689940c13c14c04a00acaf328b5db", + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.5.4-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.5.4.tgz" + }, + "0.5.5": { + "shasum": "f1fdd8ecc4559bc29f72315c945b369f4d1fa6ea", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "fb71daa9cd39be399dfbf45e96fc05c4ce8b3c87", + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.5.5-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.5.5.tgz" + }, + "0.5.6": { + "shasum": "2b9bf8ce11f17190bfad61d3bad5ca3f89455a73", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "f2f6d0824f43cf2b8d18846a39d7b5a5b8e913a5", + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.5.6-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.5.6.tgz" + }, + "0.5.7": { + "shasum": "1bb5435274ab96e36d121997c1de61d47aa6a51f", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "f066ea2662cb3775e02fd5fc75e21e082d51c910", + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.5.7-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.5.7.tgz" + }, + "0.5.8": { + "shasum": "5860b9fa699ebceac23578b09f678c2f81536bb1", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "782b30db1c3a2e00ee51c2e6128955989ad27e4d", + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.5.8-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.5.8.tgz" + }, + "0.5.9": { + "shasum": "7ce0e48bdf6171749cc9d4a2b61bf5ebd4c98662", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "22789c99ac0449be429613ccd3333568447d90a2", + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.5.9-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.5.9.tgz" + }, + "0.6.0": { + "shasum": "6cedbd207a36e20efb8d6ca9d2fac5808faebb48", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "c071501a153831f8551aa7938ff6a4ce030639b5", + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.6.0-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "ec20482c2ce2a8b998977008971c32d1ee97a5ab", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "79393a2c71b2f44374c9b8f5db05f367a618e981", + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.6.1-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.6.1.tgz" + }, + "0.6.2": { + "shasum": "bd572c937ccb7504e6d11b116d1f008dd690528e", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "e0bd73ef479e417ee0b1122a08816aeb1bcaca11", + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.6.2-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.6.2.tgz" + }, + "0.6.3": { + "shasum": "1a1dbab13e8bfc58adcab05046877038f8a11774", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "2e8fa1e33064fa1aa255bc2be30d67f9354260e8", + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.6.3-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.6.3.tgz" + }, + "0.6.4": { + "shasum": "50cc759861310f08031883aa10887c40ffed52ea", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "a0a5f1a7d65d9413876d9c40aa34f8053c7415c4", + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.6.4-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.6.4.tgz" + }, + "0.6.5": { + "shasum": "e1628cc2c23b9b4bc67f36903e2a81593b6a05a5", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-ARCH": { + "shasum": "5b9350cd9b8d0c9ae7239ff883e4cf2f206ed32b", + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.6.5-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.6.5.tgz" + }, + "0.6.6": { + "shasum": "350334b0caee09021bf9cca751264fb815a1bf00", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-ARCH": { + "shasum": "f18f6d9651355c2d5a8c1f2cec997db80c732d0f", + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.6.6-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.6.6.tgz" + }, + "0.6.7": { + "shasum": "68ee8c0238efd08ea0ab8560b4b436613e9665c0", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0e-v83.1.8.26-linux-3.0-ARCH": { + "shasum": "7b526ad54b1e60c760adcc2bc33385603e1abd06", + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.6.7-0.4-ares1.7.4-ev4.4-openssl1.0.0e-v83.1.8.26-linux-3.0-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.6.7.tgz" + }, + "0.6.8": { + "shasum": "808126c2c5968e4e9c6f05f88716dd0964316d05", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0e-v83.1.8.26-linux-3.0-ARCH": { + "shasum": "331c99152d397e478180fbba6d9269e10eb296ae", + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.6.8-0.4-ares1.7.4-ev4.4-openssl1.0.0e-v83.1.8.26-linux-3.0-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.6.8.tgz" + }, + "0.6.9": { + "shasum": "630c9ae60690951f4a6e09994aec6d082f96d05a", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0e-v83.1.8.26-linux-3.0-ARCH": { + "shasum": "3992ede98ecf57f175d289a2a9182e26718929a2", + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.6.9-0.4-ares1.7.4-ev4.4-openssl1.0.0e-v83.1.8.26-linux-3.0-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.6.9.tgz" + }, + "0.7.0": { + "shasum": "a3e0cb953ba8a966ea14cd256103731023dadf79", + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.7.0.tgz" + }, + "0.7.1": { + "shasum": "602e67de0ddb04a70ae4e4d1edf87b05312dcdea", + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.7.1.tgz" + }, + "0.7.2": { + "shasum": "59dae2e2988aeb497de937afee892331b5be0844", + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.7.2.tgz" + }, + "0.7.3": { + "shasum": "2e427d0675e1b35c1e35a15730ccb69ae8b9a8d9", + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.7.3.tgz" + }, + "0.7.4": { + "shasum": "85269ade6de4b182599b10c1011633f8320084c9", + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.7.4.tgz" + }, + "0.7.5": { + "shasum": "5f4fee12a0ec4bbb543859b09b33ae967cfafd16", + "tarball": "http://registry.npmjs.org/db-drizzle/-/db-drizzle-0.7.5.tgz" + } + }, + "keywords": [ + "database", + "db", + "native", + "binding", + "library", + "plugin", + "client", + "drizzle", + "libdrizzle" + ], + "url": "http://registry.npmjs.org/db-drizzle/" + }, + "db-mysql": { + "name": "db-mysql", + "description": "MySQL database bindings for Node.JS", + "dist-tags": { + "latest": "0.7.6" + }, + "maintainers": [ + { + "name": "mariano", + "email": "mgiglesias@gmail.com" + } + ], + "time": { + "modified": "2011-11-17T19:11:32.527Z", + "created": "2011-05-08T20:40:46.400Z", + "0.4.0": "2011-05-08T20:40:47.978Z", + "0.4.1": "2011-05-08T22:42:26.829Z", + "0.4.2": "2011-05-13T19:05:15.586Z", + "0.4.3": "2011-05-13T19:25:04.275Z", + "0.4.4": "2011-05-15T19:13:51.955Z", + "0.4.5": "2011-05-15T19:39:26.540Z", + "0.4.6": "2011-05-16T20:26:35.938Z", + "0.4.7": "2011-05-17T21:18:31.336Z", + "0.4.8": "2011-05-18T10:18:38.830Z", + "0.4.9": "2011-05-20T19:44:02.194Z", + "0.5.0": "2011-05-21T14:12:03.347Z", + "0.5.1": "2011-05-21T18:54:05.467Z", + "0.5.2": "2011-05-21T21:05:30.788Z", + "0.5.3": "2011-05-21T22:38:04.423Z", + "0.5.4": "2011-05-22T11:20:32.754Z", + "0.5.5": "2011-05-22T17:08:23.328Z", + "0.5.6": "2011-05-22T21:34:28.384Z", + "0.5.7": "2011-05-24T16:18:37.316Z", + "0.5.8": "2011-05-27T15:46:32.347Z", + "0.5.9": "2011-05-27T20:58:36.867Z", + "0.6.0": "2011-05-29T14:09:11.450Z", + "0.6.1": "2011-05-30T14:58:52.912Z", + "0.6.2": "2011-05-30T22:18:52.107Z", + "0.6.3": "2011-05-31T15:41:40.894Z", + "0.6.4": "2011-06-06T14:58:28.066Z", + "0.6.5": "2011-06-06T21:17:13.619Z", + "0.6.6": "2011-06-15T16:47:43.655Z", + "0.6.7": "2011-06-17T13:51:30.266Z", + "0.6.8": "2011-10-22T22:04:57.990Z", + "0.6.9": "2011-10-23T07:55:46.418Z", + "0.7.0": "2011-10-23T16:51:49.689Z", + "0.7.1": "2011-11-04T13:58:31.286Z", + "0.7.2": "2011-11-05T13:40:47.134Z", + "0.7.3": "2011-11-08T21:36:52.593Z", + "0.7.4": "2011-11-09T17:23:13.369Z", + "0.7.5": "2011-11-10T15:57:59.769Z", + "0.7.6": "2011-11-17T19:11:32.527Z" + }, + "versions": { + "0.4.0": "http://registry.npmjs.org/db-mysql/0.4.0", + "0.4.1": "http://registry.npmjs.org/db-mysql/0.4.1", + "0.4.2": "http://registry.npmjs.org/db-mysql/0.4.2", + "0.4.3": "http://registry.npmjs.org/db-mysql/0.4.3", + "0.4.4": "http://registry.npmjs.org/db-mysql/0.4.4", + "0.4.5": "http://registry.npmjs.org/db-mysql/0.4.5", + "0.4.6": "http://registry.npmjs.org/db-mysql/0.4.6", + "0.4.7": "http://registry.npmjs.org/db-mysql/0.4.7", + "0.4.8": "http://registry.npmjs.org/db-mysql/0.4.8", + "0.4.9": "http://registry.npmjs.org/db-mysql/0.4.9", + "0.5.0": "http://registry.npmjs.org/db-mysql/0.5.0", + "0.5.1": "http://registry.npmjs.org/db-mysql/0.5.1", + "0.5.2": "http://registry.npmjs.org/db-mysql/0.5.2", + "0.5.3": "http://registry.npmjs.org/db-mysql/0.5.3", + "0.5.4": "http://registry.npmjs.org/db-mysql/0.5.4", + "0.5.5": "http://registry.npmjs.org/db-mysql/0.5.5", + "0.5.6": "http://registry.npmjs.org/db-mysql/0.5.6", + "0.5.7": "http://registry.npmjs.org/db-mysql/0.5.7", + "0.5.8": "http://registry.npmjs.org/db-mysql/0.5.8", + "0.5.9": "http://registry.npmjs.org/db-mysql/0.5.9", + "0.6.0": "http://registry.npmjs.org/db-mysql/0.6.0", + "0.6.1": "http://registry.npmjs.org/db-mysql/0.6.1", + "0.6.2": "http://registry.npmjs.org/db-mysql/0.6.2", + "0.6.3": "http://registry.npmjs.org/db-mysql/0.6.3", + "0.6.4": "http://registry.npmjs.org/db-mysql/0.6.4", + "0.6.5": "http://registry.npmjs.org/db-mysql/0.6.5", + "0.6.6": "http://registry.npmjs.org/db-mysql/0.6.6", + "0.6.7": "http://registry.npmjs.org/db-mysql/0.6.7", + "0.6.8": "http://registry.npmjs.org/db-mysql/0.6.8", + "0.6.9": "http://registry.npmjs.org/db-mysql/0.6.9", + "0.7.0": "http://registry.npmjs.org/db-mysql/0.7.0", + "0.7.1": "http://registry.npmjs.org/db-mysql/0.7.1", + "0.7.2": "http://registry.npmjs.org/db-mysql/0.7.2", + "0.7.3": "http://registry.npmjs.org/db-mysql/0.7.3", + "0.7.4": "http://registry.npmjs.org/db-mysql/0.7.4", + "0.7.5": "http://registry.npmjs.org/db-mysql/0.7.5", + "0.7.6": "http://registry.npmjs.org/db-mysql/0.7.6" + }, + "dist": { + "0.4.0": { + "shasum": "9987533a89ac4c48b63a81e79e8343b26772faf1", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "99af0b9f34909c3aa84aeb0f091288bc27dc0d11", + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.4.0-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "11241941da4022a4f0dae6a8e26426a1f4fab229", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "c6e4b32830b4c92d0af2a916b94791d66091e971", + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.4.1-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "f4333273bb223a5bb49169d1f8c2a00f6eb8a131", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "e149fc46286a1a5ac0a63ae458be9358a57237db", + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.4.2-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "548f808b6cef421b90d1d199216689ab4cf57793", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "c1250e4508608054af89c7d76e86d1c8880583b6", + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.4.3-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.4.3.tgz" + }, + "0.4.4": { + "shasum": "e7e81f7af1461a38423cd85e3a2ec2ccdd67b1de", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "a40474b93509d6d143f3578110a64c405faf7136", + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.4.4-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.4.4.tgz" + }, + "0.4.5": { + "shasum": "6365e03d6ece808f3c28968f1c635618e68900f3", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "6f57c234154a367c2c86bd535014051d75943d6e", + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.4.5-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.4.5.tgz" + }, + "0.4.6": { + "shasum": "0d9e3702947edd06b6e41bca61a0f2d223b91053", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "51878099295446b0a6b2185b8b83de03f4c21082", + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.4.6-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.4.6.tgz" + }, + "0.4.7": { + "shasum": "ce5bbc10aa5a191040006bd6c15602a3742b958b", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "0f7994aa14da97ec3c4f48687fb503a4bc2a85f9", + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.4.7-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.4.7.tgz" + }, + "0.4.8": { + "shasum": "2d2173ebefa3958dc00b3b0ab58d7befffa86fa2", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "e104d8e96f03adaae4193c351960f64e288f2ebe", + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.4.8-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.4.8.tgz" + }, + "0.4.9": { + "shasum": "4aeccf2b1b930bbfe4d4524236ef835b7f4de5cf", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "658296215336346b4b5ea6b3aa638d842f1176b2", + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.4.9-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.4.9.tgz" + }, + "0.5.0": { + "shasum": "6bd24b6ae584498303af8dff12d707f99590abe2", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "5e9b03e788bbbb4d1d70d1d08cef26f2c5b95f4f", + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.5.0-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "87619a725f8b923cda2bb6953043de14870cd9ed", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "6f53cd3e8883cbbc5e0bdb3a0cdbe6e4da040923", + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.5.1-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "34908ca700d91452e733c49b92c9d8d4cbf342e4", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "600fb5916b62a978933d939026e3f26e7bf8d165", + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.5.2-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.5.2.tgz" + }, + "0.5.3": { + "shasum": "d61d0aa6689ac5019cefbc9249ce60463b0ca0fc", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "073260da903f673f6a2c805937dd71056580deb6", + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.5.3-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.5.3.tgz" + }, + "0.5.4": { + "shasum": "e87e564cc56e430cf45f7fc8a18388cd17a9c0c2", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "a1f64e13e1bc55c39531eb42be118362fcc5b69b", + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.5.4-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.5.4.tgz" + }, + "0.5.5": { + "shasum": "aff3c35836306158dcf38c864f45749fe74cb81e", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "7a32c62dc08de382d24e2d6eb311b1ca5ebe9d04", + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.5.5-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.5.5.tgz" + }, + "0.5.6": { + "shasum": "d94931f2685fe22b2567dcb9adcf78302103dab3", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "8f4c27726c470825a1b53f2d3c62c0877e1901d1", + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.5.6-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.5.6.tgz" + }, + "0.5.7": { + "shasum": "58153162d9a22acee00909ee3fc00db455fdbcb5", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "a5b51f6e73c55778a21971249637151744e15b8f", + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.5.7-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.5.7.tgz" + }, + "0.5.8": { + "shasum": "f38e6e407927865bf7caebe50ff175808be7c3df", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "8a2ab1dc3cd181a11a832fcf1e30072487862aca", + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.5.8-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.5.8.tgz" + }, + "0.5.9": { + "shasum": "12932cdacddd65a9d011056d42ae2e09589ac26d", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "069dbc6f83a487fe223d0a4eb22a40ad107fc7fc", + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.5.9-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.5.9.tgz" + }, + "0.6.0": { + "shasum": "dddfef30aa1b90f57973f12d3f37ca95dcccb0b3", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "b0700d1bde80a146d91450cfea742943645bfe44", + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.6.0-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "ee5e6dfc9f116526ae0f3d8571b419eaad8feb01", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "502383f4fd189d63e7fc69f9981cad59b9e2c080", + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.6.1-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.6.1.tgz" + }, + "0.6.2": { + "shasum": "bab7435808075695b873f7bb9bd0c4862b622201", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "528aaf202d186b9751f1dd1e1ea81be5784f1fc3", + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.6.2-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.6.2.tgz" + }, + "0.6.3": { + "shasum": "fcfbe22ff0278c6b0f1ba00a9053479e581a38e0", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "d0317297b2b476803a9ae641e8c0d50cd1421425", + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.6.3-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.6.3.tgz" + }, + "0.6.4": { + "shasum": "e6cd3c6740fe834c37a9658918aa8a7d87158f3d", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "e8ed2277e87271aa9e5cea4d2b518db0b65f4d60", + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.6.4-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.6.4.tgz" + }, + "0.6.5": { + "shasum": "86d0895b296ccdd885d50cb5e15e58ac38b2d3f4", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "3edc29cabbcfe92cb339b658d3622fe588809a9f", + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.6.5-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.6.5.tgz" + }, + "0.6.6": { + "shasum": "37f14cd4afbd62708fc51995c45d94dd3342e93f", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-ARCH": { + "shasum": "925fb9d450d709abb6b277f99b3705f09a6752be", + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.6.6-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.6.6.tgz" + }, + "0.6.7": { + "shasum": "da015eb6be35787189e2d92d241c48e262522f44", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-ARCH": { + "shasum": "770777ab34d94c094dc22f894729e108f87f251b", + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.6.7-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-ARCH.tgz" + }, + "0.4-ares1.7.4-ev4.4-openssl1.0.0e-v83.1.8.26-linux-3.0-ARCH": { + "shasum": "0e8793ca1477dee0dbd394b12115f4ab973346ce", + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.6.7-0.4-ares1.7.4-ev4.4-openssl1.0.0e-v83.1.8.26-linux-3.0-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.6.7.tgz" + }, + "0.6.8": { + "shasum": "d1556e7a46d7d42e9151106b13da921a284f8b08", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0e-v83.1.8.26-linux-3.0-ARCH": { + "shasum": "8bd6bc811a9bc6819c2c7581bd3f0fc09fa5c209", + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.6.8-0.4-ares1.7.4-ev4.4-openssl1.0.0e-v83.1.8.26-linux-3.0-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.6.8.tgz" + }, + "0.6.9": { + "shasum": "c8586ca6d9b75b8d7049cf2f568ad3a5a1fa44d5", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0e-v83.1.8.26-linux-3.0-ARCH": { + "shasum": "2c9256ab0c6457b20c54d51be32e97830b566a7d", + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.6.9-0.4-ares1.7.4-ev4.4-openssl1.0.0e-v83.1.8.26-linux-3.0-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.6.9.tgz" + }, + "0.7.0": { + "shasum": "b0661358d05068406ef088efe4c828c7d65868cb", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0e-v83.1.8.26-linux-3.0-ARCH": { + "shasum": "cd7b8c44b1855af07c7824a5ede320c59ed1d520", + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.7.0-0.4-ares1.7.4-ev4.4-openssl1.0.0e-v83.1.8.26-linux-3.0-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.7.0.tgz" + }, + "0.7.1": { + "shasum": "e731596918a5eabde56d04891e5a2c5a864b0a97", + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.7.1.tgz" + }, + "0.7.2": { + "shasum": "65dacdce593dc6bca4638b55922b842e6b9d77d7", + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.7.2.tgz" + }, + "0.7.3": { + "shasum": "c63b7b49c0e12e030942e203b12dd031bb1e9f1e", + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.7.3.tgz" + }, + "0.7.4": { + "shasum": "84604e8a06f3019eb450b12d0f9b41109e23c35b", + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.7.4.tgz" + }, + "0.7.5": { + "shasum": "9985613b74085eef3c733fc3c9e673c0af581053", + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.7.5.tgz" + }, + "0.7.6": { + "shasum": "ff870557afb1ee4197712211d26b6a05394a7aeb", + "tarball": "http://registry.npmjs.org/db-mysql/-/db-mysql-0.7.6.tgz" + } + }, + "keywords": [ + "database", + "db", + "native", + "binding", + "library", + "plugin", + "client", + "mysql", + "libmysql" + ], + "url": "http://registry.npmjs.org/db-mysql/" + }, + "db-oracle": { + "name": "db-oracle", + "description": "Oracle database bindings for Node.JS", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "mariano", + "email": "mgiglesias@gmail.com" + } + ], + "time": { + "modified": "2011-11-17T19:12:59.307Z", + "created": "2011-06-03T21:47:29.266Z", + "0.1.0": "2011-06-03T21:47:30.497Z", + "0.1.1": "2011-06-06T21:20:33.273Z", + "0.1.2": "2011-06-17T14:12:58.010Z", + "0.1.3": "2011-07-07T13:48:47.268Z", + "0.1.4": "2011-10-22T22:06:06.908Z", + "0.1.5": "2011-10-23T07:56:28.811Z", + "0.1.6": "2011-10-23T16:57:35.078Z", + "0.1.7": "2011-11-04T13:59:38.878Z", + "0.1.8": "2011-11-05T13:42:08.862Z", + "0.1.9": "2011-11-08T21:37:24.787Z", + "0.2.0": "2011-11-09T17:23:38.953Z", + "0.2.1": "2011-11-10T15:59:24.214Z", + "0.2.2": "2011-11-17T19:12:59.307Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/db-oracle/0.1.0", + "0.1.1": "http://registry.npmjs.org/db-oracle/0.1.1", + "0.1.2": "http://registry.npmjs.org/db-oracle/0.1.2", + "0.1.3": "http://registry.npmjs.org/db-oracle/0.1.3", + "0.1.4": "http://registry.npmjs.org/db-oracle/0.1.4", + "0.1.5": "http://registry.npmjs.org/db-oracle/0.1.5", + "0.1.6": "http://registry.npmjs.org/db-oracle/0.1.6", + "0.1.7": "http://registry.npmjs.org/db-oracle/0.1.7", + "0.1.8": "http://registry.npmjs.org/db-oracle/0.1.8", + "0.1.9": "http://registry.npmjs.org/db-oracle/0.1.9", + "0.2.0": "http://registry.npmjs.org/db-oracle/0.2.0", + "0.2.1": "http://registry.npmjs.org/db-oracle/0.2.1", + "0.2.2": "http://registry.npmjs.org/db-oracle/0.2.2" + }, + "dist": { + "0.1.0": { + "shasum": "96a580200fcba3076b700d7330cb1a5696509630", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "7ba38c51b6400836032f63c812f8cd60f0b4d9c0", + "tarball": "http://registry.npmjs.org/db-oracle/-/db-oracle-0.1.0-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-oracle/-/db-oracle-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "b78df8afca8d62109a58254ba977404e0882669c", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH": { + "shasum": "252d14bd538e3267b6ab747f68043e1f8099acfc", + "tarball": "http://registry.npmjs.org/db-oracle/-/db-oracle-0.1.1-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-oracle/-/db-oracle-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "ba4b6679a9f554445890f28ac75c9069163e675a", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-ARCH": { + "shasum": "d9203d3e1b294b1b8f37a58304d77ff2b81ab433", + "tarball": "http://registry.npmjs.org/db-oracle/-/db-oracle-0.1.2-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-oracle/-/db-oracle-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "8edd776b9c8b9ad6bb2060714dd95d4e2b483f7f", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.25-linux-2.6.39-ARCH": { + "shasum": "69c1d5caf03ffac8a26288df47bf78b0a50a447f", + "tarball": "http://registry.npmjs.org/db-oracle/-/db-oracle-0.1.3-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.25-linux-2.6.39-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/db-oracle/-/db-oracle-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "465e605681998b00fd46c4c07f3ff4b18700ab61", + "tarball": "http://registry.npmjs.org/db-oracle/-/db-oracle-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "b8cda7de9cca5142d85d4d80de8818aad8ceb451", + "tarball": "http://registry.npmjs.org/db-oracle/-/db-oracle-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "1384f0d6289f6c98829d094f8210a13d70273825", + "tarball": "http://registry.npmjs.org/db-oracle/-/db-oracle-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "fe40d456e9476f62c7191b9ad9032614051298cb", + "tarball": "http://registry.npmjs.org/db-oracle/-/db-oracle-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "99d8edb330a44b65c3b51405f2ec9fd164b8d829", + "tarball": "http://registry.npmjs.org/db-oracle/-/db-oracle-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "9af661c08cd5b9479f47fb5c55bffd14e81b778e", + "tarball": "http://registry.npmjs.org/db-oracle/-/db-oracle-0.1.9.tgz" + }, + "0.2.0": { + "shasum": "0dfb2b3cd034486f8b41f2d898df0178ba21b103", + "tarball": "http://registry.npmjs.org/db-oracle/-/db-oracle-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "d1333db0b3e49de7c4c0a0372f7d5c276640b1e6", + "tarball": "http://registry.npmjs.org/db-oracle/-/db-oracle-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "db218e7d9979b5824c48c1e97ae8beff6e492f36", + "tarball": "http://registry.npmjs.org/db-oracle/-/db-oracle-0.2.2.tgz" + } + }, + "keywords": [ + "database", + "db", + "native", + "binding", + "library", + "plugin", + "client", + "oracle", + "oci", + "occi" + ], + "url": "http://registry.npmjs.org/db-oracle/" + }, + "db-sqlite": { + "name": "db-sqlite", + "description": "SQLite database bindings for Node.JS", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "# db-sqlite: SQLite database bindings for Node.js #\n\nFor detailed information about this and other Node.js\ndatabase bindings visit the [Node.js db-sqlite homepage] [homepage].\n\nBased on the original works by Mariano Iglesias for node-db-mysql.\n\n## INSTALL ##\n\n```bash\n$ npm install db-sqlite\n```\n\n## QUICK START ##\n\n```javascript\nvar sqlite = require('db-sqlite');\nnew sqlite.Database({\n filename: 'test.db'\n}).connect(function(error) {\n if (error) {\n return console.log(\"CONNECTION ERROR: \" + error);\n }\n\n this.query().select('*').from('users').execute(function(error, rows) {\n if (error) {\n return console.log('ERROR: ' + error);\n }\n console.log(rows.length + ' ROWS');\n });\n});\n```\n\n## LICENSE ##\n\nThis module is released under the [MIT License] [license].\n\n[homepage]: https://github.com/nearinfinity/node-db-sqlite\n[license]: http://www.opensource.org/licenses/mit-license.php\n", + "maintainers": [ + { + "name": "joeferner", + "email": "joe@fernsroth.com" + } + ], + "time": { + "modified": "2011-12-06T16:30:54.645Z", + "created": "2011-12-06T16:30:54.033Z", + "0.0.1": "2011-12-06T16:30:54.645Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/db-sqlite/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "fc96a1da1e9d1b722f9ac35123d69829947aee0e", + "tarball": "http://registry.npmjs.org/db-sqlite/-/db-sqlite-0.0.1.tgz" + } + }, + "keywords": [ + "database", + "db", + "native", + "binding", + "library", + "plugin", + "client", + "sqlite", + "libsqlite" + ], + "url": "http://registry.npmjs.org/db-sqlite/" + }, + "dbdeploy": { + "name": "dbdeploy", + "description": "A port of dbdeploy (data migration tool) in Javascript for Node.js.", + "dist-tags": { + "latest": "0.7.0" + }, + "maintainers": [ + { + "name": "xavier.cambar", + "email": "xavier.cambar@lecoffre.net" + } + ], + "time": { + "modified": "2011-10-10T21:12:01.145Z", + "created": "2011-10-06T23:15:22.058Z", + "0.5.0": "2011-10-06T23:15:23.752Z", + "0.7.0": "2011-10-10T21:12:01.145Z" + }, + "author": { + "name": "Xavier Cambar xavier.cambar@lecoffre.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/xcambar/node-dbdeploy.git" + }, + "versions": { + "0.5.0": "http://registry.npmjs.org/dbdeploy/0.5.0", + "0.7.0": "http://registry.npmjs.org/dbdeploy/0.7.0" + }, + "dist": { + "0.5.0": { + "shasum": "b2c8feaa2c79256fea1118796569bcd890f1e282", + "tarball": "http://registry.npmjs.org/dbdeploy/-/dbdeploy-0.5.0.tgz" + }, + "0.7.0": { + "shasum": "b7d91b7a973f10dc3ed67be79dfb1263e3e4a7b0", + "tarball": "http://registry.npmjs.org/dbdeploy/-/dbdeploy-0.7.0.tgz" + } + }, + "url": "http://registry.npmjs.org/dbdeploy/" + }, + "dbmon": { + "name": "dbmon", + "description": "Database and Filesystem Monitor Utilities for Real Time Apps", + "dist-tags": { + "latest": "1.0.6" + }, + "maintainers": [ + { + "name": "straps", + "email": "fstraps@gmail.com" + } + ], + "time": { + "modified": "2011-11-08T13:36:15.019Z", + "created": "2011-10-25T13:55:12.415Z", + "1.0.2": "2011-10-25T13:55:14.512Z", + "1.0.4": "2011-11-02T08:01:36.292Z", + "1.0.5": "2011-11-05T16:30:57.474Z", + "1.0.6": "2011-11-08T13:36:15.019Z" + }, + "author": { + "name": "Strx", + "email": "f@strx.it" + }, + "repository": { + "type": "git", + "url": "git://github.com/straps/node-dbmon.git" + }, + "versions": { + "1.0.2": "http://registry.npmjs.org/dbmon/1.0.2", + "1.0.4": "http://registry.npmjs.org/dbmon/1.0.4", + "1.0.5": "http://registry.npmjs.org/dbmon/1.0.5", + "1.0.6": "http://registry.npmjs.org/dbmon/1.0.6" + }, + "dist": { + "1.0.2": { + "shasum": "d433b40285657d98204cd2e5f194c10ff02fa181", + "tarball": "http://registry.npmjs.org/dbmon/-/dbmon-1.0.2.tgz" + }, + "1.0.4": { + "shasum": "687ebd9cda921cb5bcaa7bc55551c6d2d5e59a6c", + "tarball": "http://registry.npmjs.org/dbmon/-/dbmon-1.0.4.tgz" + }, + "1.0.5": { + "shasum": "893f34215880936a8fad09e5b6c3891023b2a0d3", + "tarball": "http://registry.npmjs.org/dbmon/-/dbmon-1.0.5.tgz" + }, + "1.0.6": { + "shasum": "16febc0233b3e9267f413b62964731f02c3cf05e", + "tarball": "http://registry.npmjs.org/dbmon/-/dbmon-1.0.6.tgz" + } + }, + "keywords": [ + "dbmon", + "monitoring", + "postgresql", + "mysql", + "oracle", + "polling", + "rdbms", + "faye", + "nowjs" + ], + "url": "http://registry.npmjs.org/dbmon/" + }, + "dbox": { + "name": "dbox", + "description": "NodeJS SDK for the Dropbox API", + "dist-tags": { + "latest": "0.2.0" + }, + "readme": "# dbox \n\n## Instalation\n\nI always recomend you bundle your dependencies with your application. To do\nthis, create a `package.json` file in the root of your project with the minimum\ninformation...\n\n {\n \"name\": \"yourapplication\",\n \"verson\": \"0.0.1\",\n \"dependencies\": {\n \"dbox\": \"0.1.0\"\n }\n }\n\nThen run the following command using npm...\n\n npm install\n\nOR, if you just want to start playing with the library run...\n\n npm install dbox\n\n## Docs\n\nTo create a dbox client that gives us functions to managing a dropbox account we must\ncall `createClient()` with our dropbox app (aka. consumer) credentials.\n\n var dbox = require(\"dbox\")\n\n var client = dbox.createClient({\n app_key : 1234567, // required\n app_secret : \"abcdefg\", // required\n root : \"sandbox\" // optional (defaults to sandbox)\n })\n\nNow we have a client that gives us access to all the api functionality.\n\n### request_token(callback)\n\nWe can now request a `Request Token` to begin the Oauth process. This function\ndoesn't take any arguments other than the callback that you would like called\nonce a valid `Request Token` is generated.\n\n client.request_token(function(status, reply){\n console.log(status)\n // 200\n console.log(reply)\n // {\n // oauth_token : \"h89r0sdfdsfwiko\", // required\n // oauth_token_secret : \"8hielfflk7100mv\", // required\n // }\n })\n\n### Authorization\n\nThe next step is to redirect the user to the dropbox endpoint to recieve\nauthorization from the user. Dbox makes no attempt to do this for you. Simply\npass in the `oauth_token` into the querystring.\n\n https://www.dropbox.com/1/oauth/authorize?oauth_token=h89r0sdfdsfwiko\n\n### access_token(callback)\n\nOne the user has granted authorization we can now generate the access token\nusing the request token to sign the request.\n\n var options = {\n oauth_token : \"h89r0sdfdsfwiko\", // required\n oauth_token_secret : \"8hielfflk7100mv\", // required\n }\n\n client.access_token(options, function(status, reply){\n console.log(status)\n // 200\n console.log(reply)\n // {\n // oauth_token : \"jm0qrf7hohgwiko\",\n // oauth_token_secret : \"5n9687cyzp8xwii\"\n // }\n })\n\n### account(options, callback)\n\nReturns account information.\n\n var options = {\n oauth_token : \"jm0qrf7hohgwiko\", // required\n oauth_token_secret : \"5n9687cyzp8xwii\", // required\n locale: : \"en\" // optional\n }\n\n client.account(options, function(status, reply){\n console.log(status)\n // 200\n console.log(reply)\n // { \n // uid: 123456789,\n // display_name: 'Brock Whitten',\n // email: 'brock@sintaxi.com',\n // country: 'CA',\n // referral_link: 'https://www.dropbox.com/referrals/NTc0NzYwNDc5',\n // quota_info: { \n // shared: 1100727791, \n // quota: 2415919104, \n // normal: 226168599\n // }\n // }\n })\n\n### mkdir(path, options, callback)\n\nCreates directory at specified location.\n\n var options = {\n oauth_token : \"jm0qrf7hohgwiko\", // required\n oauth_token_secret : \"5n9687cyzp8xwii\", // required\n locale: : \"en\", // optional\n root: : \"sandbox\" // optional\n }\n\n client.mkdir(\"foo\", options function(status, reply){\n console.log(status)\n // 200\n console.log(reply)\n // {\n // \"size\": \"0 bytes\",\n // \"rev\": \"1f477dd351f\",\n // \"thumb_exists\": false,\n // \"bytes\": 0,\n // \"modified\": \"Wed, 10 Aug 2011 18:21:30 +0000\",\n // \"path\": \"/foo\",\n // \"is_dir\": true,\n // \"icon\": \"folder\",\n // \"root\": \"sandbox\",\n // \"revision\": 5023410\n // }\n })\n\n### mv(from\\_path, to\\_path, options, callback)\n\nMoves file or directory to a new location.\n\n var options = {\n oauth_token : \"jm0qrf7hohgwiko\", // required\n oauth_token_secret : \"5n9687cyzp8xwii\", // required\n locale: : \"en\", // optional\n root: : \"sandbox\" // optional\n }\n\n client.mv(\"foo\", \"bar\", options function(status, reply){\n console.log(status)\n // 200\n console.log(reply)\n // {\n // \"size\": \"0 bytes\",\n // \"rev\": \"irt77dd3728\",\n // \"thumb_exists\": false,\n // \"bytes\": 0,\n // \"modified\": \"Wed, 10 Aug 2011 18:21:30 +0000\",\n // \"path\": \"/bar\",\n // \"is_dir\": true,\n // \"icon\": \"folder\",\n // \"root\": \"sandbox\",\n // \"revision\": 5023410\n // }\n })\n\n### cp(from\\_path, to\\_path, options, callback)\n\nCopies a file or directory to a new location.\n\n var options = {\n oauth_token : \"jm0qrf7hohgwiko\", // required\n oauth_token_secret : \"5n9687cyzp8xwii\", // required\n locale: : \"en\", // optional\n root: : \"sandbox\" // optional\n }\n\n client.cp(\"bar\", \"baz\", options, function(status, reply){\n console.log(status)\n // 200\n console.log(reply)\n // {\n // \"size\": \"0 bytes\",\n // \"rev\": \"irt77dd3728\",\n // \"thumb_exists\": false,\n // \"bytes\": 0,\n // \"modified\": \"Wed, 10 Aug 2011 18:21:30 +0000\",\n // \"path\": \"/baz\",\n // \"is_dir\": true,\n // \"icon\": \"folder\",\n // \"root\": \"sandbox\",\n // \"revision\": 5023410\n // }\n })\n\n### rm(path, options, callback)\n\nRemoves a file or directory.\n\n var options = {\n oauth_token : \"jm0qrf7hohgwiko\", // required\n oauth_token_secret : \"5n9687cyzp8xwii\", // required\n locale: : \"en\", // optional\n root: : \"sandbox\" // optional\n }\n\n client.rm(\"README.txt\", options, function(status, reply){\n console.log(status)\n // 200\n console.log(reply)\n // {\n // \"size\": \"0 bytes\",\n // \"is_deleted\": true,\n // \"bytes\": 0,\n // \"thumb_exists\": false,\n // \"rev\": \"1f33043551f\",\n // \"modified\": \"Wed, 10 Aug 2011 18:21:30 +0000\",\n // \"path\": \"/README.txt\",\n // \"is_dir\": false,\n // \"icon\": \"page_white_text\",\n // \"root\": \"sandbox\",\n // \"mime_type\": \"text/plain\",\n // \"revision\": 492341\n // }\n })\n\n### put(path, data, options, callback)\n\nCreates or modifies a file with given data.\n\n var options = {\n oauth_token : \"jm0qrf7hohgwiko\", // required\n oauth_token_secret : \"5n9687cyzp8xwii\", // required\n overwrite: : true, // optional\n parent_rev : 8, // optional\n locale: : \"en\" // optional\n }\n\n client.put(\"foo/hello.txt\", \"here is some text\", options, function(status, reply){\n console.log(status)\n // 200\n console.log(reply)\n // {\n // \"size\": \"225.4KB\",\n // \"rev\": \"35e97029684fe\",\n // \"thumb_exists\": false,\n // \"bytes\": 230783,\n // \"modified\": \"Tue, 19 Jul 2011 21:55:38 +0000\",\n // \"path\": \"/foo/hello.txt\",\n // \"is_dir\": false,\n // \"icon\": \"page_white_text\",\n // \"root\": \"sandbox\",\n // \"mime_type\": \"text/plain\",\n // \"revision\": 220823\n // } \n })\n\n### get(path, options, callback)\n\nPulls down file.\n\n var options = {\n oauth_token : \"jm0qrf7hohgwiko\", // required\n oauth_token_secret : \"5n9687cyzp8xwii\", // required\n rev: : 31 // optional\n }\n\n client.get(\"foo/hello.txt\", options, function(status, reply){\n console.log(status)\n // 200\n console.log(reply)\n // here is some text\n })\n\n### metadata(path, options, callback)\n\nRetrieves file or directory metadata.\n\n var options = {\n oauth_token : \"jm0qrf7hohgwiko\", // required\n oauth_token_secret : \"5n9687cyzp8xwii\", // required\n file_limit : 10000, // optional\n hash : ..., // optional\n list : true, // optional\n include_deleted : false, // optional\n rev : 7, // optional\n locale: : \"en\", // optional\n root: : \"sandbox\" // optional\n }\n\n client.metadata(\"Getting_Started.pdf\", options, function(status, reply){\n console.log(status)\n // 200\n console.log(reply)\n // {\n // \"size\": \"225.4KB\",\n // \"rev\": \"35e97029684fe\",\n // \"thumb_exists\": false,\n // \"bytes\": 230783,\n // \"modified\": \"Tue, 19 Jul 2011 21:55:38 +0000\",\n // \"path\": \"/Getting_Started.pdf\",\n // \"is_dir\": false,\n // \"icon\": \"page_white_acrobat\",\n // \"root\": \"sandbox\",\n // \"mime_type\": \"application/pdf\",\n // \"revision\": 220823\n // }\n })\n\n### revisions(path, options, callback)\n\nObtains metadata for the previous revisions of a file.\n\n var options = {\n oauth_token : \"jm0qrf7hohgwiko\", // required\n oauth_token_secret : \"5n9687cyzp8xwii\", // required\n rev_limit : 10, // optional\n locale: : \"en\" // optional\n }\n\n client.revisions(\"foo/hello.txt\", options, function(status, reply){\n console.log(status)\n // 200\n console.log(reply)\n // [\n // {\n // \"is_deleted\": true,\n // \"revision\": 4,\n // \"rev\": \"40000000d\",\n // \"thumb_exists\": false,\n // \"bytes\": 0,\n // \"modified\": \"Wed, 20 Jul 2011 22:41:09 +0000\",\n // \"path\": \"foo/hello.txt\",\n // \"is_dir\": false,\n // \"icon\": \"page_white\",\n // \"root\": \"sandbox\",\n // \"mime_type\": \"text/plain\",\n // \"size\": \"0 bytes\"\n // },\n // {\n // \"revision\": 1,\n // \"rev\": \"10000000d\",\n // \"thumb_exists\": false,\n // \"bytes\": 3,\n // \"modified\": \"Wed, 20 Jul 2011 22:40:43 +0000\",\n // \"path\": \"foo/hello.txt\",\n // \"is_dir\": false,\n // \"icon\": \"page_white\",\n // \"root\": \"sandbox\",\n // \"mime_type\": \"text/plain\",\n // \"size\": \"3 bytes\"\n // }\n // ]\n })\n\n### restore(path, rev, options, callback)\n\nRestores a file path to a previous revision.\n\n var options = {\n oauth_token : \"jm0qrf7hohgwiko\", // required\n oauth_token_secret : \"5n9687cyzp8xwii\", // required\n locale: : \"en\" // optional\n }\n\n client.revisions(\"foo/hello.txt\", 4, options, function(status, reply){\n console.log(status)\n // 200\n console.log(reply)\n // {\n // \"is_deleted\": true,\n // \"revision\": 4,\n // \"rev\": \"40000000d\",\n // \"thumb_exists\": false,\n // \"bytes\": 0,\n // \"modified\": \"Wed, 20 Jul 2011 22:41:09 +0000\",\n // \"path\": \"/foo/hello.txt\",\n // \"is_dir\": false,\n // \"icon\": \"page_white\",\n // \"root\": \"sandbox\",\n // \"mime_type\": \"text/plain\",\n // \"size\": \"0 bytes\"\n // }\n })\n \n### search(path, query, options, callback)\n\nReturns metadata for all files and directories that match the search query.\n\n var options = {\n oauth_token : \"jm0qrf7hohgwiko\", // required\n oauth_token_secret : \"5n9687cyzp8xwii\", // required\n file_limit : 10000, // optional\n include_deleted : false, // optional\n locale: : \"en\" // optional\n }\n\n client.search(\"foo\", \"hello\", options, function(status, reply){\n console.log(status)\n // 200\n console.log(reply)\n // [\n // {\n // \"size\": \"0 bytes\",\n // \"rev\": \"35c1f029684fe\",\n // \"thumb_exists\": false,\n // \"bytes\": 0,\n // \"modified\": \"Mon, 18 Jul 2011 20:13:43 +0000\",\n // \"path\": \"/foo/hello.txt\",\n // \"is_dir\": false,\n // \"icon\": \"page_white_text\",\n // \"root\": \"sandbox\",\n // \"mime_type\": \"text/plain\",\n // \"revision\": 220191\n // }\n // ]\n })\n\n### shares(path, options, callback)\n\nCreates and/or returns a shareable link to a file or directory.\n\n var options = {\n oauth_token : \"jm0qrf7hohgwiko\", // required\n oauth_token_secret : \"5n9687cyzp8xwii\", // required\n locale: : \"en\" // optional\n }\n\n client.shares(\"foo/hello.txt\", options, function(status, reply){\n console.log(status)\n // 200\n console.log(reply)\n // {\n // \"url\": \"http://db.tt/APqhX1\",\n // \"expires\": \"Sat, 17 Aug 2011 02:34:33 +0000\"\n // }\n })\n\n### media(path, options, callback)\n\nCreates and/or returns a shareable link to a file or directory. This endpoint\nis similar to /shares but content is streamable.\n\n var options = {\n oauth_token : \"jm0qrf7hohgwiko\", // required\n oauth_token_secret : \"5n9687cyzp8xwii\", // required\n locale: : \"en\" // optional\n }\n\n client.media(\"foo/hello.txt\", options, function(status, reply){\n console.log(status)\n // 200\n console.log(reply)\n // {\n // \"url\": \"http://www.dropbox.com/s/m/a2mbDa2\",\n // \"expires\": \"Thu, 16 Sep 2011 01:01:25 +0000\"\n // }\n })\n\n### thumbnails(path, options, callback)\n\nGets a thumbnail for an image.\n\n var options = {\n oauth_token : \"jm0qrf7hohgwiko\", // required\n oauth_token_secret : \"5n9687cyzp8xwii\", // required\n locale: : \"en\" // optional\n }\n\n client.thumbnails(\"foo/hello.txt\", options, function(status, reply){\n console.log(status)\n // 200\n console.log(reply)\n // {\n // \"url\": \"http://www.dropbox.com/s/m/a2mbDa2\",\n // \"expires\": \"Thu, 16 Sep 2011 01:01:25 +0000\"\n // }\n })\n\n## License\n\nCopyright 2011 Brock Whitten\nAll rights reserved.\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the \"Software\"), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\nOF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nWHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n", + "maintainers": [ + { + "name": "sintaxi", + "email": "brock@sintaxi.com" + } + ], + "time": { + "modified": "2011-12-10T20:28:11.230Z", + "created": "2011-11-06T07:09:55.839Z", + "0.1.0": "2011-11-06T07:09:57.310Z", + "0.1.1": "2011-12-10T20:20:20.189Z", + "0.2.0": "2011-12-10T20:28:11.230Z" + }, + "author": { + "name": "Brock Whitten", + "email": "brock@sintaxi.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/sintaxi/node-dbox.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/dbox/0.1.0", + "0.1.1": "http://registry.npmjs.org/dbox/0.1.1", + "0.2.0": "http://registry.npmjs.org/dbox/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "839d6647dd0e2a129a0b5e85fe3c03418fcd9235", + "tarball": "http://registry.npmjs.org/dbox/-/dbox-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "5b0809933cc7006e547ca3a3045573c4fec6575e", + "tarball": "http://registry.npmjs.org/dbox/-/dbox-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "72d8c17e02f71b0796fdc815a4c21c2031f3b561", + "tarball": "http://registry.npmjs.org/dbox/-/dbox-0.2.0.tgz" + } + }, + "keywords": [ + "dropbox", + "sdk", + "s3" + ], + "url": "http://registry.npmjs.org/dbox/" + }, + "dbslayer": { + "name": "dbslayer", + "description": "mysql api for node.js", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "robinduckett", + "email": "robin.duckett@gmail.com" + } + ], + "time": { + "modified": "2011-11-09T01:31:13.137Z", + "created": "2011-11-09T01:06:56.922Z", + "0.2.0": "2011-11-09T01:31:13.137Z" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/dbslayer/0.2.0" + }, + "dist": { + "0.2.0": { + "shasum": "0f00a2b2410885964a415cd139c5d7b876c76366", + "tarball": "http://registry.npmjs.org/dbslayer/-/dbslayer-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/dbslayer/" + }, + "dcrp": { + "name": "dcrp", + "description": "Dynamically Configurable Reverse Proxy", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "quackingduck", + "email": "myles@myles.id.au" + } + ], + "time": { + "modified": "2011-10-18T19:28:07.689Z", + "created": "2011-10-11T03:41:16.568Z", + "0.1.0": "2011-10-11T03:41:16.904Z", + "0.1.1": "2011-10-11T04:20:26.307Z", + "0.2.0": "2011-10-11T17:55:20.231Z", + "0.3.0": "2011-10-18T19:28:07.689Z" + }, + "author": { + "name": "Myles Byrne" + }, + "repository": { + "type": "git", + "url": "git://github.com/centro/dcrp.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/dcrp/0.1.0", + "0.1.1": "http://registry.npmjs.org/dcrp/0.1.1", + "0.2.0": "http://registry.npmjs.org/dcrp/0.2.0", + "0.3.0": "http://registry.npmjs.org/dcrp/0.3.0" + }, + "dist": { + "0.1.0": { + "shasum": "577d45782a88729f5163e796d8d1361a400bb5ca", + "tarball": "http://registry.npmjs.org/dcrp/-/dcrp-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "bda763829637aa892cd9dfe6b6cde7c74875bf75", + "tarball": "http://registry.npmjs.org/dcrp/-/dcrp-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "08221a4cc1ca4076bdbea15eb8c9aac290d48472", + "tarball": "http://registry.npmjs.org/dcrp/-/dcrp-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "d7bca9459b55fbb0f2b65d0915ef4c9311ba550c", + "tarball": "http://registry.npmjs.org/dcrp/-/dcrp-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/dcrp/" + }, + "dcrypt": { + "name": "dcrypt", + "description": "extended openssl bindings", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "dekz", + "email": "jacob@dekz.net" + } + ], + "time": { + "modified": "2011-05-08T03:26:25.441Z", + "created": "2011-03-25T23:40:57.792Z", + "0.0.1": "2011-03-25T23:40:58.714Z", + "0.0.2": "2011-03-26T00:14:51.570Z" + }, + "author": { + "name": "Jacob Evans", + "email": "dcrypt@dekz.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/dekz/dcrypt.git", + "private": "git@github.com:dekz/dcrypt.git", + "web": "https://github.com/dekz/dcrypt" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/dcrypt/0.0.1", + "0.0.2": "http://registry.npmjs.org/dcrypt/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "74170366ff90cf59f36a60e7e689353d2441afb0", + "tarball": "http://registry.npmjs.org/dcrypt/-/dcrypt-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "150b880c505932fa5c59f7bf483e3868abd09a5e", + "tarball": "http://registry.npmjs.org/dcrypt/-/dcrypt-0.0.2.tgz" + } + }, + "keywords": [ + "crypt", + "crypto", + "dcrypt", + "openssl" + ], + "url": "http://registry.npmjs.org/dcrypt/" + }, + "ddg-api": { + "name": "ddg-api", + "description": "A library for the DuckDuckGo APIs", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "sujal", + "email": "sujal@variolabs.com" + } + ], + "time": { + "modified": "2011-11-04T21:00:14.917Z", + "created": "2011-11-04T21:00:14.553Z", + "0.0.1": "2011-11-04T21:00:14.917Z" + }, + "author": { + "name": "Sujal Shah", + "email": "sujal@variolabs.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/VarioLabs/ddg-api.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ddg-api/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "c0e7857a8a23daf6ffb21050c03f8cfd9e01ff61", + "tarball": "http://registry.npmjs.org/ddg-api/-/ddg-api-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/ddg-api/" + }, + "ddopson-zookeeper": { + "name": "ddopson-zookeeper", + "description": "apache zookeeper client (zookeeper async API >= 3.4.0)", + "dist-tags": { + "latest": "4.1.0" + }, + "readme": "# Overview\n\nnode-zookeeper - A Node.js client for Apache Zookeeper.\n\nThis module is implemented on top of the ZooKeeper C API; consult the [ZK Reference](http://zookeeper.apache.org/doc/r3.4.0/index.html) for further details on behavior.\n\n# Example\n\n```javascript\nvar ZK = require (\"zookeeper\");\nvar zk = new ZK();\nzk.init ({connect:\"localhost:2181\", timeout:200000, debug_level:ZK.ZOO_LOG_LEVEL_WARNING, host_order_deterministic:false});\nzk.on ('connect', function (zkk) {\n console.log (\"zk session established, id=%s\", zkk.client_id);\n zkk.a_create (\"/node.js1\", \"some value\", ZK.ZOO_SEQUENCE | ZK.ZOO_EPHEMERAL, function (rc, error, path) {\n if (rc != 0)\n console.log (\"zk node create result: %d, error: '%s', path=%s\", rc, error, path);\n else {\n console.log (\"created zk node %s\", path);\n process.nextTick(function () {\n zkk.close ();\n });\n }\n });\n});\n```\n\n# API Reference\n\n### Methods ###\n\n* init ( options )\n* close ( )\n* a_create ( path, data, flags, path_cb )\n* a_exists ( path, watch, stat_cb )\n* a_get ( path, watch, data_cb )\n* a_get_children ( path, watch, child_cb )\n* a_get_children2 ( path, watch, child2_cb )\n* a_set ( path, data, version, stat_cb )\n* a_delete`_` ( path, version, void_cb )\n * (trailing `_` is added to avoid conflict with reserved word `_delete_` since zk_promise.js strips off prefix `a_` from all operations)\n\n*The watcher methods are forward-looking subscriptions that can recieve multiple callbacks whenever a matching event occurs.*\n\n* aw_exists ( path, watch_cb, stat_cb )\n* aw_get ( path, watch_cb, data_cb )\n* aw_get_children ( path, watch_cb, child_cb )\n* aw_get_children2 ( path, watch_cb, child2_cb )\n\n### Callback Signatures ###\n\n * path_cb : function ( rc, error, path )\n * stat_cb : function ( rc, error, stat )\n * data_cb : function ( rc, error, stat, data )\n * child_cb : function ( rc, error, children )\n * child2_cb : function ( rc, error, children, stat )\n * void_cb : function ( rc, error )\n * watch_cb : function ( type, state, path )\n\n### Input Parameters ###\n\n * options : object. valid keys: { connect, timeout, debug_level, host_order_deterministic, data_as_buffer}\n * path : string\n * data : string or Buffer\n * flags : int32\n * version : int32\n * watch : boolean\n\n### Output Parameters ###\n\n * path is a string\n * data is either a Buffer (default), or a string (this is controlled by data_as_buffer = true/false)\n * children is an array of strings\n * rc is an int (error codes from zk api)\n * error is a string (error string from zk api)\n * type is an int event type (from zk api)\n * state is an int (state when the watcher fired from zk api)\n * stat is an object with the following attributes:\n * long czxid // created zxid\n * long mzxid // last modified zxid\n * long ctime // created\n * long mtime // last modified\n * int version // version\n * int cversion // child version\n * int aversion // acl version\n * string ephemeralOwner // owner session id if ephemeral, 0 otw\n * int dataLength //length of the data in the node\n * int numChildren //number of children of this node\n * long pzxid // last modified children\n\n\nSession state machine is well described in Zookeeper docs, i.e.\n![here](http://hadoop.apache.org/zookeeper/docs/r3.3.1/images/state_dia.jpg \"State Diagram\")\n\n# Limitations\n* no zookeeper ACL support\n* no support for authentication\n* tests are not standalone, must run a zk server (easiest if you run at localhost:2181, if not you must pass the connect string to the tests)\n* only asynchronous ZK methods are implemented. Hey, this is node.js ... no sync calls are allowed\n\n# Implementation Notes\n\n### NOTE on Module Status (DDOPSON-2011-11-30):\n* I ported this module to Node v0.6.0. I did my best to retain compatibility with Node v0.4.x. File bugs if you find any.\n* I have also worked to normalized the API style to be more conformant with Node conventions. Again, I did my best to keep backwards compatibility with the old version. File bugs if you find any.\n* The test coverage is pretty spotty. It would be really great if someone converted the tests to Vows and / or using a mock instead of depending on a live ZK server. I can't test and don't really trust the \"promise\" stuff in this module, but the core module itself works and makes my tests pass on downstream dependencies.\n\nFixes:\n* Node v0.6.0 compatibility - There is no native EventEmitter class anymore. Need a JS shim.\n* Node v0.6.0 compatibility - MODULE_INIT macro just plain doesn't work. not sure why, but an init function works just fine.\n* Node v0.6.0 compatibility - 'sys' ==> 'util'\n* Node v0.6.0 compatibility - There was an issue with the EV_A macro in yield(); was able to comment it out without harming behavior\n* events should be strings like 'connect' instead of ZK.on_connected. follow convention here.\n* no sense in \"require('zookeeper').ZooKeeper\" instead of simply \"require('zookeeper')\"\n\nTODO:\n* convert error codes to the names of the constants (eg, ZOO_CONNECT_FAIL instead of -110).\n* method names should map to convention. The \"a_method\" pattern is quite redundant in node.\n* Init should be called \"connect\", and should take a callback. Forcing clients to use the events is awkward and error prone\n* Why do the watchers take two callbacks?\n\n\n### v0.2.x ==> v0.4.x Transition\nData coming out of ZooKeepr (in callbacks) will now default to being Buffer objects. The main ZK handle now has a boolean attribute called 'data_as_buffer', which defaults to true. If you are storing strings only, as was only allowed in the initial implementation, or you wish to have data in callbacks arrive as strings, you add 'data_as_buffer:false' to the init options, or add 'zk.data_as_buffer = false;' before using the handle. The behavior defaults to Buffer objects because this aligns more closely with ZooKeeper itself which uses byte arrays. They are interchangable on input, if the input is a Buffer it will be used directly, otherwise the toString() of the input is used (this will work with utf8 data as well) regardless of mode.\n\nWith the new Buffer changes in the 0.3+ and 0.4+ branches, these will be internal 'SlowBuffer' objects, and you should use Buffer.isBuffer if you are checking the type, as 'instanceof Buffer' will return false.\n\n### yfinkelstein's original implementation notes\n\n* Zookeeper C API library comes in 2 flavours: single-threaded and multi-threaded. For node.js, single-threaded library provides the most sense since all events coming from ZK responses have to be dispatched to the main JS thread.\n* The C++ code uses the same logging facility that ZK C API uses internally. Hence zk_log.h file checked into this project. The file is considered ZK internal and is not installed into /usr/local/include\n* Multiple simultaneous ZK connections are supported and tested\n* All ZK constants are exposed as read-only properties of the ZooKeeper function, like ZK.ZOO_EPHEMERAL\n* All ZK API methods including watchers are supported.\n* lib/zk_promise.js is an optional module that makes use of the very cool **node-promise** library;\n see tests/zk_test_shootout_promise.js for illustration of how it can simplify coding. Isn't the following looking nicer?\n\n```javascript\nzk_r.on_connected().\nthen (\n function (zkk){\n console.log (\"reader on_connected: zk=%j\", zkk);\n return zkk.create (\"/node.js2\", \"some value\", ZK.ZOO_SEQUENCE | ZK.ZOO_EPHEMERAL);\n }\n).then (\n function (path) {\n zk_r.context.path = path;\n console.log (\"node created path=%s\", path);\n return zk_r.w_get (path,\n function (type, state, path_w) { // this is a watcher\n console.log (\"watcher for path %s triggered\", path_w);\n deferred_watcher_triggered.resolve (path_w);\n }\n );\n }\n).then (\n function (stat_and_value) { // this is the response from w_get above\n console.log (\"get node: stat=%j, value=%s\", stat_and_value[0], stat_and_value[1]);\n deferred_watcher_ready.resolve (zk_r.context.path);\n return deferred_watcher_triggered;\n }\n).then (\n function () {\n console.log (\"zk_reader is finished\");\n process.nextTick( function () {\n zk_r.close ();\n });\n }\n);\n```\n\n* Also compare test/zk_test_watcher.js with test/zk_test_watcher_promise.js\n* tests/zk_master.js and tests/zk_worker.js illustrate launching multiple ZK client workers using webworker library. You have to install it first with **\"npm install webworker\"**\n\n# Building the module by hand\n-----\n\n```javascript\nnode-waf configure build [--zookeeper zookeeper-version|prefix-path|'']\n```\n\n- note: for more details on the zk c-client build process, see [here](http://hadoop.apache.org/zookeeper/docs/r3.3.1/zookeeperProgrammers.html#C+Binding \"Build C client\")\n- note: node_compat.h (ala node-png) handles Buffer changes from .2 to .3+, so you should be able to build against older node versions.\n- note: if you wish to build with a specific version of zookeeper C lib, use --zookeeper VERSION (will download/build it) or --zookeeper PATH (if you have downloaded it and possibly made changes etc.)\n- note: if you wish to link against an existing zookeeper lib: use --zoookeeper '', and put your lib/headers it in /usr/local/ (or edit the wscript appropriately)\n- note: if you are building on osx and you get a compile error regarding \"mmacosx-version-min\", you may need to edit the wscript and remove it (anyone with the answer please explain/fix if possible).\n- note: if you are building on a platform for which the options are not working, please add a specific elif for that platform and create a pull request.\n\n# Known Bugs & Issues\n\nDDOPSON-2011-11-30 - are these issues still relevant? unknown.\n\n- The lib will segfault if you try to use a ZooKeeper intance after the on_closed event is delivered (possibly as a result of session timeout etc.) YOU MAY NOT re-use the closed ZooKeeper instance. You should allocate a new one and initialize it as a completely new client. Any and all watchers from your first instance are lost, though they may fire (before the on_close) see below.\n- Any established watches may/will be fired once each when/if your client is expired by the ZK server, the input arguments are observed to be: type=-1, state=1, path=\"\". Care should be taken to handle this differently than a \"real\" watch event if that matters to your application.\n- Otherwise, it just works!\n\n# See Also\n\n- [http://hadoop.apache.org/zookeeper/releases.html](http://hadoop.apache.org/zookeeper/releases.html)\n- [http://hadoop.apache.org/zookeeper/docs/r3.3.1/zookeeperProgrammers.html#ZooKeeper+C+client+API](http://hadoop.apache.org/zookeeper/docs/r3.3.1/zookeeperProgrammers.html#ZooKeeper+C+client+API)\n- [http://github.com/kriszyp/node-promise](http://github.com/kriszyp/node-promise)\n- [http://github.com/pgriess/node-webworker](http://github.com/pgriess/node-webworker)\n\n# Acknowledgments\n\n- **[node-promise](http://github.com/kriszyp/node-promise \"node-promise\") by kriszyp** is a fantastic tool imho. I wish it was distributed as a module so that I could easily 'require' it rather then\n resort to distribution by copy.\n- **[node-webworker](http://github.com/pgriess/node-webworker \"node-webworker\") by pgriess** is used to spawn multiple ZK workers in one of the tests.\n\n# LICENSE\n\nSee [LICENSE-MIT.txt](./LICENSE-MIT.txt) file in the top level folder.\n\n# ORIGINAL AUTHOR\n\nYuri Finkelstein (yurif2003 at yahoo dot com)\n", + "maintainers": [ + { + "name": "ddopson", + "email": "ddopson@gmail.com" + } + ], + "time": { + "modified": "2011-12-01T05:20:59.829Z", + "created": "2011-12-01T05:20:58.243Z", + "4.1.0": "2011-12-01T05:20:59.829Z" + }, + "author": { + "name": "Yuri Finkelstein", + "email": "yurif2003@yahoo.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/ddopson/node-zookeeper.git" + }, + "versions": { + "4.1.0": "http://registry.npmjs.org/ddopson-zookeeper/4.1.0" + }, + "dist": { + "4.1.0": { + "shasum": "d5a377d345fcc851ff825fd509fc7ad8093a099a", + "tarball": "http://registry.npmjs.org/ddopson-zookeeper/-/ddopson-zookeeper-4.1.0.tgz" + } + }, + "keywords": [ + "apache", + "zookeeper", + "client" + ], + "url": "http://registry.npmjs.org/ddopson-zookeeper/" + }, + "deadbolt": { + "name": "deadbolt", + "dist-tags": { + "latest": "0.3.8", + "stable": "0.3.8" + }, + "maintainers": [ + { + "name": "fedor.indutny", + "email": "fedor.indutny@gmail.com" + } + ], + "time": { + "modified": "2011-11-16T08:07:24.908Z", + "created": "2011-10-08T20:07:36.703Z", + "0.0.2": "2011-10-08T20:07:38.105Z", + "0.1.0": "2011-10-08T21:15:47.870Z", + "0.1.1": "2011-10-08T21:34:32.902Z", + "0.1.2": "2011-10-08T21:59:31.963Z", + "0.2.0": "2011-10-08T22:59:04.093Z", + "0.3.0": "2011-10-09T06:16:33.131Z", + "0.3.1": "2011-10-09T07:36:24.087Z", + "0.3.2": "2011-10-09T07:37:55.698Z", + "0.3.3": "2011-10-09T10:49:23.041Z", + "0.3.4": "2011-10-09T13:35:39.343Z", + "0.3.5": "2011-10-09T13:51:09.866Z", + "0.3.6": "2011-10-09T17:21:27.889Z", + "0.3.7": "2011-10-09T18:18:03.459Z", + "0.3.8": "2011-11-16T08:07:19.147Z" + }, + "description": "Autoreleasing locks for node.js", + "author": { + "name": "Fedor Indutny", + "email": "fedor@indutny.com" + }, + "versions": { + "0.1.2": "http://registry.npmjs.org/deadbolt/0.1.2", + "0.2.0": "http://registry.npmjs.org/deadbolt/0.2.0", + "0.3.0": "http://registry.npmjs.org/deadbolt/0.3.0", + "0.3.1": "http://registry.npmjs.org/deadbolt/0.3.1", + "0.3.2": "http://registry.npmjs.org/deadbolt/0.3.2", + "0.3.3": "http://registry.npmjs.org/deadbolt/0.3.3", + "0.3.4": "http://registry.npmjs.org/deadbolt/0.3.4", + "0.3.5": "http://registry.npmjs.org/deadbolt/0.3.5", + "0.3.6": "http://registry.npmjs.org/deadbolt/0.3.6", + "0.3.7": "http://registry.npmjs.org/deadbolt/0.3.7", + "0.3.8": "http://registry.npmjs.org/deadbolt/0.3.8" + }, + "dist": { + "0.1.2": { + "shasum": "a0db316851a45ba2ea7fd316f3ca1f58e173acfc", + "tarball": "http://registry.npmjs.org/deadbolt/-/deadbolt-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "e3e4119b42d7249994d5f6c49ce1fb38a3204f5c", + "tarball": "http://registry.npmjs.org/deadbolt/-/deadbolt-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "e390a755e6ffc67783bbe0fdc3e8a055a2294df6", + "tarball": "http://registry.npmjs.org/deadbolt/-/deadbolt-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "e99c5184157e889dfbef4aa83644fbeac65a550d", + "tarball": "http://registry.npmjs.org/deadbolt/-/deadbolt-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "b96ed91988720ae14790ba7623b278becbaf9ff1", + "tarball": "http://registry.npmjs.org/deadbolt/-/deadbolt-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "ffb3f9f4e11b39f83d059e96c85494b05669641f", + "tarball": "http://registry.npmjs.org/deadbolt/-/deadbolt-0.3.3.tgz" + }, + "0.3.4": { + "shasum": "e7aaa67827bbe26a9253994359bd8d3b9a206c84", + "tarball": "http://registry.npmjs.org/deadbolt/-/deadbolt-0.3.4.tgz" + }, + "0.3.5": { + "shasum": "463e92c77e907f7ebb05fd9a46b6c0be0a3bf121", + "tarball": "http://registry.npmjs.org/deadbolt/-/deadbolt-0.3.5.tgz" + }, + "0.3.6": { + "shasum": "a830187213f9e8c41d015a8eee3c862d686c5d09", + "tarball": "http://registry.npmjs.org/deadbolt/-/deadbolt-0.3.6.tgz" + }, + "0.3.7": { + "shasum": "93dfd4dfb59343f46609769ac7f7dfd224e83c73", + "tarball": "http://registry.npmjs.org/deadbolt/-/deadbolt-0.3.7.tgz" + }, + "0.3.8": { + "shasum": "377ded0cb8437e744d1c15118a244c29d0b994ed", + "tarball": "http://registry.npmjs.org/deadbolt/-/deadbolt-0.3.8.tgz" + } + }, + "url": "http://registry.npmjs.org/deadbolt/" + }, + "deadsea": { + "name": "deadsea", + "description": "a library for preventing map-scrolling fail", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "tmcw", + "email": "macwright@gmail.com" + } + ], + "time": { + "modified": "2011-09-26T16:42:04.230Z", + "created": "2011-09-26T16:27:03.971Z", + "0.0.1": "2011-09-26T16:27:04.296Z", + "0.0.2": "2011-09-26T16:42:04.230Z" + }, + "author": { + "name": "MapBox", + "email": "info@mapbox.com", + "url": "http://mapbox.com/" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/deadsea/0.0.1", + "0.0.2": "http://registry.npmjs.org/deadsea/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "cd49324067d543b54c8689c78ecffb9b6e24fb4b", + "tarball": "http://registry.npmjs.org/deadsea/-/deadsea-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "503fd12c1346725f8ace6a7b0384fb101e0f108a", + "tarball": "http://registry.npmjs.org/deadsea/-/deadsea-0.0.2.tgz" + } + }, + "keywords": [ + "map", + "geo", + "browser" + ], + "url": "http://registry.npmjs.org/deadsea/" + }, + "debug": { + "name": "debug", + "description": "small debugging utility", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "\n# debug\n\n tiny node.js debugging utility.\n\n## Example\n\n This module is modelled after node core's debugging technique, allowing you to enable one or more topic-specific debugging functions, for example core does the following within many modules:\n\n```js\nvar debug;\nif (process.env.NODE_DEBUG && /cluster/.test(process.env.NODE_DEBUG)) {\n debug = function(x) {\n var prefix = process.pid + ',' +\n (process.env.NODE_WORKER_ID ? 'Worker' : 'Master');\n console.error(prefix, x);\n };\n} else {\n debug = function() { };\n}\n```\n\n This concept is extremely simple but it works well. With `debug` you simply invoke the exported function to generate your debug function, passing it a name which will determine if a noop function is returned, or a decorated `console.error`, so all of the `console` format string goodies you're used to work fine. A unique color is selected per-function for visibility.\n \nExample _app.js_:\n\n```js\nvar debug = require('debug')('http')\n , http = require('http')\n , name = 'My App';\n\n// fake app\n\ndebug('booting %s', name);\n\nhttp.createServer(function(req, res){\n debug(req.method + ' ' + req.url);\n res.end('hello\\n');\n}).listen(3000, function(){\n debug('listening');\n});\n\n// fake worker of some kind\n\nrequire('./worker');\n```\n\nExample _worker.js_:\n\n```js\nvar debug = require('debug')('worker');\n\nsetInterval(function(){\n debug('doing some work');\n}, 1000);\n```\n\n The __DEBUG__ environment variable is then used to enable these based on space or comma-delimited names. Here are some examples:\n\n## License \n\n(The MIT License)\n\nCopyright (c) 2011 TJ Holowaychuk <tj@vision-media.ca>\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "time": { + "modified": "2011-12-02T23:16:56.971Z", + "created": "2011-11-29T01:11:23.618Z", + "0.0.1": "2011-11-29T01:11:25.405Z", + "0.1.0": "2011-12-02T23:16:56.971Z" + }, + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/debug/0.0.1", + "0.1.0": "http://registry.npmjs.org/debug/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "0faa51ad6dec7587159b532cdf18d74261376417", + "tarball": "http://registry.npmjs.org/debug/-/debug-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "3026f197b98b823cb51209f3758eb1498a66442c", + "tarball": "http://registry.npmjs.org/debug/-/debug-0.1.0.tgz" + } + }, + "keywords": [ + "debug", + "log", + "debugger" + ], + "url": "http://registry.npmjs.org/debug/" + }, + "decafscript": { + "name": "decafscript", + "description": "adding a pre-processor to js =D", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "aaronblohowiak", + "email": "aaron.blohowiak@gmail.com" + } + ], + "time": { + "modified": "2011-08-07T22:16:46.400Z", + "created": "2011-08-07T22:16:45.825Z", + "0.0.1": "2011-08-07T22:16:46.400Z" + }, + "author": { + "name": "Aaron Blohowiak" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/decafscript/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "551a4e6effdf0637f834499e88868d5c981bc44d", + "tarball": "http://registry.npmjs.org/decafscript/-/decafscript-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/decafscript/" + }, + "decimal": { + "name": "decimal", + "description": "Simple decimal arithmetic for the browser and node.js!", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "shinuza", + "email": "samorigorse@gmail.com" + } + ], + "time": { + "modified": "2011-06-04T00:15:41.914Z", + "created": "2011-06-04T00:15:41.211Z", + "0.0.2": "2011-06-04T00:15:41.914Z" + }, + "author": { + "name": "Samori Gorse", + "email": "samorigorse@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/shinuza/decimaljs.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/decimal/0.0.2" + }, + "dist": { + "0.0.2": { + "shasum": "f913d695ddcf0b208aa6770ca7934ed07aa26e2e", + "tarball": "http://registry.npmjs.org/decimal/-/decimal-0.0.2.tgz" + } + }, + "keywords": [ + "arithmetic", + "decimal", + "float", + "calculation" + ], + "url": "http://registry.npmjs.org/decimal/" + }, + "decimaljson": { + "name": "decimaljson", + "description": "JSON parser that preserves precision", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "wadey", + "email": "wade@wades.im" + } + ], + "time": { + "modified": "2011-07-19T17:47:01.410Z", + "created": "2011-02-10T00:22:16.388Z", + "0.1.0": "2011-02-10T00:22:16.653Z", + "0.2.0": "2011-02-21T07:10:11.372Z", + "0.2.1": "2011-02-28T20:09:19.185Z", + "0.2.2": "2011-07-19T17:47:01.410Z" + }, + "author": { + "name": "Wade Simmons", + "email": "wade@wades.im", + "url": "http://wades.im/mons" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/decimaljson/0.1.0", + "0.2.0": "http://registry.npmjs.org/decimaljson/0.2.0", + "0.2.1": "http://registry.npmjs.org/decimaljson/0.2.1", + "0.2.2": "http://registry.npmjs.org/decimaljson/0.2.2" + }, + "dist": { + "0.1.0": { + "shasum": "3e43c877299b9a7f257c59cdaecd05abe2b27447", + "tarball": "http://registry.npmjs.org/decimaljson/-/decimaljson-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "52b189f4946b50691a582275804227e515f597e9", + "tarball": "http://registry.npmjs.org/decimaljson/-/decimaljson-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "ca4f61c9547a6eb0e21768dcb261c8efd7f3a76b", + "tarball": "http://registry.npmjs.org/decimaljson/-/decimaljson-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "b1cbfddad91ec464fc2fd98aac52be27c0c08250", + "tarball": "http://registry.npmjs.org/decimaljson/-/decimaljson-0.2.2.tgz" + } + }, + "url": "http://registry.npmjs.org/decimaljson/" + }, + "deck": { + "name": "deck", + "description": "Uniform and weighted shuffling and sampling", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-05-01T12:06:47.496Z", + "created": "2011-05-01T02:34:21.982Z", + "0.0.1": "2011-05-01T02:34:22.751Z", + "0.0.2": "2011-05-01T06:05:16.640Z", + "0.0.3": "2011-05-01T12:06:47.496Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-deck.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/deck/0.0.1", + "0.0.2": "http://registry.npmjs.org/deck/0.0.2", + "0.0.3": "http://registry.npmjs.org/deck/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "89f056b7e4772a25bc73e2830d213ea32570a700", + "tarball": "http://registry.npmjs.org/deck/-/deck-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "4e2c246c92025c8721a58bfc69f1772fb8e664bd", + "tarball": "http://registry.npmjs.org/deck/-/deck-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "759508d1c5b39269bd70e0a95a8ff00239da9df6", + "tarball": "http://registry.npmjs.org/deck/-/deck-0.0.3.tgz" + } + }, + "keywords": [ + "shuffle", + "sample", + "normalize", + "pick", + "choose", + "cards", + "weights" + ], + "url": "http://registry.npmjs.org/deck/" + }, + "deckard": { + "name": "deckard", + "description": "A very simple async test runner with setup and teardown support", + "dist-tags": { + "latest": "0.0.9" + }, + "maintainers": [ + { + "name": "devioustree", + "email": "tom@devioustree.co.uk" + } + ], + "time": { + "modified": "2011-01-10T16:31:06.693Z", + "created": "2011-01-10T16:31:06.327Z", + "0.0.9": "2011-01-10T16:31:06.693Z" + }, + "author": { + "name": "Tom Drummond", + "email": "tom@devioustree.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/devioustree/deckard.git" + }, + "versions": { + "0.0.9": "http://registry.npmjs.org/deckard/0.0.9" + }, + "dist": { + "0.0.9": { + "shasum": "0ea12b4858a9a3b77b3c41ebaac912d3876b9d5a", + "tarball": "http://registry.npmjs.org/deckard/-/deckard-0.0.9.tgz" + } + }, + "url": "http://registry.npmjs.org/deckard/" + }, + "deckem": { + "name": "deckem", + "description": "Build deck.js presentations using Jade templating", + "dist-tags": { + "latest": "0.0.7" + }, + "maintainers": [ + { + "name": "damonoehlman", + "email": "damon.oehlman@sidelab.com" + } + ], + "time": { + "modified": "2011-10-04T02:56:02.991Z", + "created": "2011-09-14T02:07:38.300Z", + "0.0.3": "2011-09-14T02:07:41.103Z", + "0.0.4": "2011-09-16T03:04:07.506Z", + "0.0.5": "2011-10-01T10:51:22.397Z", + "0.0.6": "2011-10-01T14:41:05.503Z", + "0.0.7": "2011-10-04T02:56:02.991Z" + }, + "author": { + "name": "Damon Oehlman", + "email": "damon.oehlman@sidelab.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/steelmesh/deckem.git" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/deckem/0.0.3", + "0.0.4": "http://registry.npmjs.org/deckem/0.0.4", + "0.0.5": "http://registry.npmjs.org/deckem/0.0.5", + "0.0.6": "http://registry.npmjs.org/deckem/0.0.6", + "0.0.7": "http://registry.npmjs.org/deckem/0.0.7" + }, + "dist": { + "0.0.3": { + "shasum": "a8498847c5c43b0c12b0fe312bdcff60f546f47d", + "tarball": "http://registry.npmjs.org/deckem/-/deckem-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "a21f9ba45d0b8c77442b43431f2139e5d81d80ef", + "tarball": "http://registry.npmjs.org/deckem/-/deckem-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "982abfded8558950224151d31ed95b0e7b7cd272", + "tarball": "http://registry.npmjs.org/deckem/-/deckem-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "9c13ecd9dd22d81febe8f5b91fc37448da0d7a0c", + "tarball": "http://registry.npmjs.org/deckem/-/deckem-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "db6be26644ec593332bdf129feb77d69ccd4c896", + "tarball": "http://registry.npmjs.org/deckem/-/deckem-0.0.7.tgz" + } + }, + "url": "http://registry.npmjs.org/deckem/" + }, + "defaultable": { + "name": "defaultable", + "description": "Transparent, drop-in helper for overridable, inheritable defaults in CommonJS modules", + "dist-tags": { + "latest": "0.7.2" + }, + "maintainers": [ + { + "name": "jhs", + "email": "jhs@iriscouch.com" + } + ], + "time": { + "modified": "2011-11-17T01:43:38.909Z", + "created": "2011-10-05T18:57:53.887Z", + "0.4.0": "2011-10-05T18:57:54.220Z", + "0.5.0": "2011-10-09T17:12:43.690Z", + "0.6.0": "2011-10-12T04:46:52.948Z", + "0.6.1": "2011-10-12T14:19:36.323Z", + "0.7.0": "2011-11-05T12:51:03.034Z", + "0.7.1": "2011-11-09T03:16:09.991Z", + "0.7.2": "2011-11-17T01:43:38.909Z" + }, + "author": { + "name": "Jason Smith", + "email": "jhs@iriscouch.com", + "url": "http://www.iriscouch.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/iriscouch/defaultable.git" + }, + "versions": { + "0.4.0": "http://registry.npmjs.org/defaultable/0.4.0", + "0.5.0": "http://registry.npmjs.org/defaultable/0.5.0", + "0.6.0": "http://registry.npmjs.org/defaultable/0.6.0", + "0.6.1": "http://registry.npmjs.org/defaultable/0.6.1", + "0.7.0": "http://registry.npmjs.org/defaultable/0.7.0", + "0.7.1": "http://registry.npmjs.org/defaultable/0.7.1", + "0.7.2": "http://registry.npmjs.org/defaultable/0.7.2" + }, + "dist": { + "0.4.0": { + "shasum": "fb2060c83c981f2a0df1bf31a763de35abd29440", + "tarball": "http://registry.npmjs.org/defaultable/-/defaultable-0.4.0.tgz" + }, + "0.5.0": { + "shasum": "5239a901d08fe72765260ca5092bfc1cc0d558ed", + "tarball": "http://registry.npmjs.org/defaultable/-/defaultable-0.5.0.tgz" + }, + "0.6.0": { + "shasum": "ad60c29c323d217c102d8ad20d0a6895aeeda597", + "tarball": "http://registry.npmjs.org/defaultable/-/defaultable-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "22dbb5a4eed29ae5bea64c5fa8363b82b925dd6a", + "tarball": "http://registry.npmjs.org/defaultable/-/defaultable-0.6.1.tgz" + }, + "0.7.0": { + "shasum": "7ffb22b838adcac654e3b5e8b5733ed1eb1c6d49", + "tarball": "http://registry.npmjs.org/defaultable/-/defaultable-0.7.0.tgz" + }, + "0.7.1": { + "shasum": "45072fa9cc26870db8254347903e7fb3c11911af", + "tarball": "http://registry.npmjs.org/defaultable/-/defaultable-0.7.1.tgz" + }, + "0.7.2": { + "shasum": "7c1564ca14f9eca4c4127a539790777d44085bd7", + "tarball": "http://registry.npmjs.org/defaultable/-/defaultable-0.7.2.tgz" + } + }, + "url": "http://registry.npmjs.org/defaultable/" + }, + "defensio": { + "name": "defensio", + "description": "node library to communicate with Defensio's API v. 2.0", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "camilolopez", + "email": "camilo@camilolopez.com" + } + ], + "time": { + "modified": "2011-05-21T04:02:58.986Z", + "created": "2011-05-15T23:59:03.121Z", + "0.1.0": "2011-05-15T23:59:03.569Z", + "0.1.1": "2011-05-21T04:02:58.986Z" + }, + "author": { + "name": "Camilo Lopez", + "email": "camilo@camilolopez.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/camilo/defensio.js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/defensio/0.1.0", + "0.1.1": "http://registry.npmjs.org/defensio/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "b4f491da4184b93d11f6904b5f6e2a7fb7a639f9", + "tarball": "http://registry.npmjs.org/defensio/-/defensio-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "05e1aea799b594f9eddb5761f699ee18323b1df1", + "tarball": "http://registry.npmjs.org/defensio/-/defensio-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/defensio/" + }, + "defer": { + "name": "defer", + "description": "a simple model for callbacks", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "alexbosworth", + "email": "alex.bosworth+npm@gmail.com" + } + ], + "time": { + "modified": "2011-09-13T07:25:37.601Z", + "created": "2011-09-13T07:25:32.582Z", + "0.0.1": "2011-09-13T07:25:37.601Z" + }, + "author": { + "name": "Alex Bosworth", + "email": "alex.bosworth@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/alexbosworth/deferred.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/defer/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "2e56cf2cba77e81f4f3903657cb503e52e675dde", + "tarball": "http://registry.npmjs.org/defer/-/defer-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/defer/" + }, + "deferrable": { + "name": "deferrable", + "description": "Callback indirection for JavaScript", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "rkh", + "email": "k.haase@finn.de" + } + ], + "author": { + "name": "Konstantin Haase", + "email": "k.haase@finn.de" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/deferrable/0.1.0", + "0.1.1": "http://registry.npmjs.org/deferrable/0.1.1" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/deferrable/-/deferrable-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://packages:5984/deferrable/-/deferrable-0.1.1.tgz" + } + }, + "keywords": [ + "events", + "deferrable", + "concurency", + "async" + ], + "url": "http://registry.npmjs.org/deferrable/" + }, + "deferred": { + "name": "deferred", + "description": "Asynchronous control-flow with deferred and promises", + "dist-tags": { + "latest": "0.2.6" + }, + "maintainers": [ + { + "name": "medikoo", + "email": "medikoo+npm@medikoo.com" + } + ], + "time": { + "modified": "2011-12-12T13:59:36.488Z", + "created": "2011-07-05T19:44:00.569Z", + "0.1.0": "2011-07-05T19:44:01.303Z", + "0.1.1": "2011-07-07T19:47:46.840Z", + "0.1.2": "2011-07-11T12:16:51.392Z", + "0.2.0": "2011-08-08T08:33:04.657Z", + "0.2.1": "2011-08-08T12:53:39.227Z", + "0.2.2": "2011-08-08T14:50:15.451Z", + "0.2.3": "2011-08-09T10:30:43.331Z", + "0.2.4": "2011-08-09T10:54:30.530Z", + "0.2.5": "2011-11-08T17:20:23.377Z", + "0.2.6": "2011-12-12T13:59:36.488Z" + }, + "author": { + "name": "Mariusz Nowak", + "email": "medikoo+deferred@medikoo.com", + "url": "http://www.medikoo.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/medikoo/deferred.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/deferred/0.1.0", + "0.1.1": "http://registry.npmjs.org/deferred/0.1.1", + "0.1.2": "http://registry.npmjs.org/deferred/0.1.2", + "0.2.0": "http://registry.npmjs.org/deferred/0.2.0", + "0.2.1": "http://registry.npmjs.org/deferred/0.2.1", + "0.2.2": "http://registry.npmjs.org/deferred/0.2.2", + "0.2.3": "http://registry.npmjs.org/deferred/0.2.3", + "0.2.4": "http://registry.npmjs.org/deferred/0.2.4", + "0.2.5": "http://registry.npmjs.org/deferred/0.2.5", + "0.2.6": "http://registry.npmjs.org/deferred/0.2.6" + }, + "dist": { + "0.1.0": { + "shasum": "61828f5081362dbda4136aeb896553272ec3f90c", + "tarball": "http://registry.npmjs.org/deferred/-/deferred-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "41445cb130a40ac4e4a366b27a5903bd124e65e0", + "tarball": "http://registry.npmjs.org/deferred/-/deferred-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "4dd668bf1ff7727aaafffd3adfe3e7d920246967", + "tarball": "http://registry.npmjs.org/deferred/-/deferred-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "3787b20795729135d19a6bc7d84b4c3bb0a7f09e", + "tarball": "http://registry.npmjs.org/deferred/-/deferred-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "41eded23f16e23e9e152326536cfd9e2d902e8f0", + "tarball": "http://registry.npmjs.org/deferred/-/deferred-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "2142c400bdee36fbe908d53e3aca344b5d5077e5", + "tarball": "http://registry.npmjs.org/deferred/-/deferred-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "d428b98bcf774aae126125e3e40e342d73b51aec", + "tarball": "http://registry.npmjs.org/deferred/-/deferred-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "baab2e468a8c63b078081ee372802f073e356849", + "tarball": "http://registry.npmjs.org/deferred/-/deferred-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "0b5dd26744acfa8d9721689b7ca98ab514d305d4", + "tarball": "http://registry.npmjs.org/deferred/-/deferred-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "e979ed5bce5ca804baef2b1fd8552d9292b1ded3", + "tarball": "http://registry.npmjs.org/deferred/-/deferred-0.2.6.tgz" + } + }, + "keywords": [ + "deferred", + "promise", + "promises", + "async", + "asynchronous", + "future", + "futures", + "continuations", + "flow" + ], + "url": "http://registry.npmjs.org/deferred/" + }, + "Deferred": { + "name": "Deferred", + "description": "A port of the jQuery Deferred library to node js.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "webspinner", + "email": "webspinner.gabriel@gmail.com" + } + ], + "time": { + "modified": "2011-12-11T18:35:41.324Z", + "created": "2011-08-23T17:07:04.781Z", + "0.0.3": "2011-08-23T17:07:05.239Z", + "0.0.4": "2011-10-16T18:58:05.204Z", + "0.1.0": "2011-12-11T18:35:41.324Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/webspinner/Deferred.git" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/Deferred/0.0.3", + "0.0.4": "http://registry.npmjs.org/Deferred/0.0.4", + "0.1.0": "http://registry.npmjs.org/Deferred/0.1.0" + }, + "dist": { + "0.0.3": { + "shasum": "c4dc43352f793b7b0a8ae33fa8c06aea9e918d03", + "tarball": "http://registry.npmjs.org/Deferred/-/Deferred-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "a7c3b07f6cfc5385692d54bfe87417f0ad5fc131", + "tarball": "http://registry.npmjs.org/Deferred/-/Deferred-0.0.4.tgz" + }, + "0.1.0": { + "shasum": "0191c3b6324d90870f7ea8b885ca6d3ca0d9d3ce", + "tarball": "http://registry.npmjs.org/Deferred/-/Deferred-0.1.0.tgz" + } + }, + "keywords": [ + "promises", + "futures", + "deferred", + "jQuery" + ], + "url": "http://registry.npmjs.org/Deferred/" + }, + "define": { + "name": "define", + "description": "An asynchronous module system based on the CommonJS Asynchronous Definition specification.", + "dist-tags": { + "latest": "0.4.5" + }, + "maintainers": [ + { + "name": "weaver", + "email": "ben@orangesoda.net" + } + ], + "author": { + "name": "Ben Weaver", + "email": "ben@orangesoda.net" + }, + "time": { + "modified": "2011-04-25T22:01:26.114Z", + "created": "2011-01-11T16:00:12.320Z", + "0.1.0": "2011-01-11T16:00:12.320Z", + "0.1.1": "2011-01-11T16:00:12.320Z", + "0.1.5": "2011-01-11T16:00:12.320Z", + "0.1.6": "2011-01-11T16:00:12.320Z", + "0.2.2": "2011-01-11T16:00:12.320Z", + "0.2.3": "2011-01-12T22:10:40.412Z", + "0.2.4": "2011-01-27T20:19:57.547Z", + "0.2.5": "2011-01-28T21:52:03.146Z", + "0.3.0": "2011-02-07T20:04:42.410Z", + "0.3.1": "2011-02-24T21:44:02.931Z", + "0.4.0": "2011-02-24T23:29:56.071Z", + "0.4.1": "2011-03-01T22:29:25.517Z", + "0.4.2": "2011-03-02T01:59:50.998Z", + "0.4.3": "2011-03-03T20:35:36.396Z", + "0.4.4": "2011-03-16T20:38:41.735Z", + "0.4.5": "2011-04-25T21:54:10.756Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/define/0.1.0", + "0.1.1": "http://registry.npmjs.org/define/0.1.1", + "0.1.5": "http://registry.npmjs.org/define/0.1.5", + "0.1.6": "http://registry.npmjs.org/define/0.1.6", + "0.2.3": "http://registry.npmjs.org/define/0.2.3", + "0.2.4": "http://registry.npmjs.org/define/0.2.4", + "0.2.5": "http://registry.npmjs.org/define/0.2.5", + "0.3.0": "http://registry.npmjs.org/define/0.3.0", + "0.3.1": "http://registry.npmjs.org/define/0.3.1", + "0.4.0": "http://registry.npmjs.org/define/0.4.0", + "0.4.1": "http://registry.npmjs.org/define/0.4.1", + "0.4.2": "http://registry.npmjs.org/define/0.4.2", + "0.4.3": "http://registry.npmjs.org/define/0.4.3", + "0.4.4": "http://registry.npmjs.org/define/0.4.4", + "0.2.2": "http://registry.npmjs.org/define/0.2.2", + "0.4.5": "http://registry.npmjs.org/define/0.4.5" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/define/-/define-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://registry.npmjs.org/define/-/define-0.1.1.tgz" + }, + "0.1.5": { + "tarball": "http://registry.npmjs.org/define/-/define-0.1.5.tgz" + }, + "0.1.6": { + "tarball": "http://registry.npmjs.org/define/-/define-0.1.6.tgz" + }, + "0.2.3": { + "tarball": "http://registry.npmjs.org/define/-/define-0.2.3.tgz" + }, + "0.2.4": { + "tarball": "http://registry.npmjs.org/define/-/define-0.2.4.tgz" + }, + "0.2.5": { + "tarball": "http://registry.npmjs.org/define/-/define-0.2.5.tgz" + }, + "0.3.0": { + "tarball": "http://registry.npmjs.org/define/-/define-0.3.0.tgz" + }, + "0.3.1": { + "tarball": "http://registry.npmjs.org/define/-/define-0.3.1.tgz" + }, + "0.4.0": { + "tarball": "http://registry.npmjs.org/define/-/define-0.4.0.tgz" + }, + "0.4.1": { + "tarball": "http://registry.npmjs.org/define/-/define-0.4.1.tgz" + }, + "0.4.2": { + "tarball": "http://registry.npmjs.org/define/-/define-0.4.2.tgz" + }, + "0.4.3": { + "tarball": "http://registry.npmjs.org/define/-/define-0.4.3.tgz" + }, + "0.4.4": { + "shasum": "4bc6114beb1b9854ccfcca40c61807447373a9b4", + "tarball": "http://registry.npmjs.org/define/-/define-0.4.4.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "ce3c20afbbcf3ad4497de4ccfb5dbaffc4c2b6b5", + "tarball": "http://registry.npmjs.org/define/-/define-0.4.4-0.4-sunos-5.11.tgz" + } + } + }, + "0.2.2": { + "shasum": "6c75e88b383da28fd7a4e74b32ce6178b0f94e68", + "tarball": "http://registry.npmjs.org/define/-/define-0.2.2.tgz" + }, + "0.4.5": { + "shasum": "cd5ec4fad4323189f65edabecda6b52152d86da1", + "tarball": "http://registry.npmjs.org/define/-/define-0.4.5.tgz" + } + }, + "keywords": [ + "module", + "package", + "commonjs", + "asynchronous", + "define" + ], + "url": "http://registry.npmjs.org/define/" + }, + "deflate": { + "name": "deflate", + "description": "super-simple streaming gzip, wrapping native zlib (deflate/inflate)", + "dist-tags": { + "latest": "1.0.3" + }, + "maintainers": [ + { + "name": "jahewson", + "email": "johnahewson@yahoo.co.uk" + } + ], + "time": { + "modified": "2011-09-30T18:23:21.533Z", + "created": "2011-08-31T20:09:16.452Z", + "1.0.0": "2011-08-31T20:09:17.328Z", + "1.0.1": "2011-08-31T23:28:48.316Z", + "1.0.2": "2011-09-07T10:18:23.653Z", + "1.0.3": "2011-09-30T18:23:21.533Z" + }, + "author": { + "name": "John Hewson" + }, + "repository": { + "type": "git", + "url": "git://github.com/jahewson/node-deflate.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/deflate/1.0.0", + "1.0.1": "http://registry.npmjs.org/deflate/1.0.1", + "1.0.2": "http://registry.npmjs.org/deflate/1.0.2", + "1.0.3": "http://registry.npmjs.org/deflate/1.0.3" + }, + "dist": { + "1.0.0": { + "shasum": "e053b9845cbafefa4c829ce79ad83c4af60faafa", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.8.0": { + "shasum": "fd8a952af9bdce685c899bb6dd3cb5e908f6fac1", + "tarball": "http://registry.npmjs.org/deflate/-/deflate-1.0.0-0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.8.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/deflate/-/deflate-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "e4d53653b878da677f92c695ab3771d1693518bd", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.8.0": { + "shasum": "c3e5f9aa25013ef2f18fa610698df19c468b8c58", + "tarball": "http://registry.npmjs.org/deflate/-/deflate-1.0.1-0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.8.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/deflate/-/deflate-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "e761952074eb49716db56f6dec456f59e40521f8", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.8.0": { + "shasum": "e1f80af81ba837ebd8cd04ec3ed9bd507096ed97", + "tarball": "http://registry.npmjs.org/deflate/-/deflate-1.0.2-0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.8.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/deflate/-/deflate-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "06388e050a1bc2d4f984998c3afe06cc52a5db7f", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8r-v83.1.8.26-darwin-11.0.0": { + "shasum": "37ab457d553f7f474f7e4126a985a8eea4d2cd53", + "tarball": "http://registry.npmjs.org/deflate/-/deflate-1.0.3-0.4-ares1.7.4-ev4.4-openssl0.9.8r-v83.1.8.26-darwin-11.0.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/deflate/-/deflate-1.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/deflate/" + }, + "deflate-js": { + "name": "deflate-js", + "description": "DEFLATE implemented in JavaScript (works in browser and Node)", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "beatgammit", + "email": "t.jameson.little@gmail.com" + } + ], + "time": { + "modified": "2011-11-21T18:43:12.239Z", + "created": "2011-11-14T23:42:32.152Z", + "0.1.0": "2011-11-14T23:42:43.506Z", + "0.2.0": "2011-11-18T18:42:15.279Z", + "0.2.1": "2011-11-20T05:26:12.328Z", + "0.2.2": "2011-11-21T18:43:12.239Z" + }, + "author": { + "name": "Masanao Izumo", + "email": "iz@onicos.co.jp" + }, + "repository": { + "type": "git", + "url": "git://github.com/beatgammit/deflate-js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/deflate-js/0.1.0", + "0.2.0": "http://registry.npmjs.org/deflate-js/0.2.0", + "0.2.1": "http://registry.npmjs.org/deflate-js/0.2.1", + "0.2.2": "http://registry.npmjs.org/deflate-js/0.2.2" + }, + "dist": { + "0.1.0": { + "shasum": "c49803d9a0b7289ae6b6c7c741f5f07e2722e030", + "tarball": "http://registry.npmjs.org/deflate-js/-/deflate-js-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "b9922935f86e3d05e61454bc001899be18a07d18", + "tarball": "http://registry.npmjs.org/deflate-js/-/deflate-js-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "64b73978182883bbfa2275ea1899374c2f44cbef", + "tarball": "http://registry.npmjs.org/deflate-js/-/deflate-js-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "2aac4dfb5e0391470acfc3ebecb36ad03208472e", + "tarball": "http://registry.npmjs.org/deflate-js/-/deflate-js-0.2.2.tgz" + } + }, + "url": "http://registry.npmjs.org/deflate-js/" + }, + "degrees": { + "name": "degrees", + "description": "What are the degrees today?", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "bryanwoods", + "email": "bryanwoods4e@gmail.com" + } + ], + "time": { + "modified": "2011-09-18T04:21:43.495Z", + "created": "2011-09-18T04:06:42.043Z", + "0.0.1": "2011-09-18T04:06:42.320Z", + "0.0.2": "2011-09-18T04:21:43.495Z" + }, + "author": { + "name": "Bryan Woods", + "email": "bryan@howaboutwe.com", + "url": "http://bryanwoods4e.com" + }, + "repository": { + "url": "git://github.com/bryanwoods/degrees.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/degrees/0.0.1", + "0.0.2": "http://registry.npmjs.org/degrees/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "da3ef0e75f3f5f58d8b75cea77088f6602a6e359", + "tarball": "http://registry.npmjs.org/degrees/-/degrees-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "a974f83f17376866b8a52bd33c0d5bd4a968e904", + "tarball": "http://registry.npmjs.org/degrees/-/degrees-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/degrees/" + }, + "deimos": { + "name": "deimos", + "description": "A JSON-RPC 2.0 and 1.0 implementation", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "vinipsmaker", + "email": "vini.ipsmaker@gmail.com" + } + ], + "time": { + "modified": "2011-07-25T00:05:02.312Z", + "created": "2011-07-22T17:39:45.273Z", + "0.2.0": "2011-07-22T17:39:47.358Z", + "0.2.1": "2011-07-22T17:47:04.434Z", + "0.2.2": "2011-07-22T21:07:13.274Z", + "0.2.3": "2011-07-23T02:55:40.633Z", + "0.3.0": "2011-07-25T00:05:02.312Z" + }, + "author": { + "name": "Vinícius dos Santos Oliveira", + "url": "http://vinipsmaker.wordpress.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/vinipsmaker/deimos.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/deimos/0.2.0", + "0.2.1": "http://registry.npmjs.org/deimos/0.2.1", + "0.2.2": "http://registry.npmjs.org/deimos/0.2.2", + "0.2.3": "http://registry.npmjs.org/deimos/0.2.3", + "0.3.0": "http://registry.npmjs.org/deimos/0.3.0" + }, + "dist": { + "0.2.0": { + "shasum": "326a46460d6e0c881a92f4745dd21e2523381f1b", + "tarball": "http://registry.npmjs.org/deimos/-/deimos-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "ecdf96db56283da8ce98a6444174219c04986894", + "tarball": "http://registry.npmjs.org/deimos/-/deimos-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "aa90c08b8e87373c34984a0ab1456843a967c782", + "tarball": "http://registry.npmjs.org/deimos/-/deimos-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "abf84e1f6f380b6c1c58caa9ab5e60b7af6e88c9", + "tarball": "http://registry.npmjs.org/deimos/-/deimos-0.2.3.tgz" + }, + "0.3.0": { + "shasum": "a2266eef3dd636f1bc4f3c0ead0728b9262a5f1d", + "tarball": "http://registry.npmjs.org/deimos/-/deimos-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/deimos/" + }, + "deja": { + "name": "deja", + "description": "CLI utility for managing git versioning of dotfiles, cheetsheets, etc.", + "dist-tags": { + "latest": "0.1.6" + }, + "maintainers": [ + { + "name": "mcantelon", + "email": "mcantelon@gmail.com" + } + ], + "time": { + "modified": "2011-07-27T23:19:40.000Z", + "created": "2011-01-16T00:00:59.352Z", + "0.0.1": "2011-01-16T00:00:59.627Z", + "0.0.2": "2011-01-16T00:23:52.647Z", + "0.0.3": "2011-01-17T08:00:27.127Z", + "0.0.4": "2011-01-18T06:55:34.351Z", + "0.0.5": "2011-01-19T08:00:14.718Z", + "0.0.6": "2011-01-20T08:08:20.848Z", + "0.0.7": "2011-01-22T04:15:23.623Z", + "0.0.8": "2011-01-22T20:10:59.421Z", + "0.0.9": "2011-01-23T01:17:27.152Z", + "0.0.10": "2011-01-27T05:01:54.673Z", + "0.0.11": "2011-02-07T00:21:26.140Z", + "0.0.12": "2011-02-07T01:24:33.996Z", + "0.0.14": "2011-02-15T19:23:12.140Z", + "0.0.15": "2011-02-17T16:40:49.134Z", + "0.1.0": "2011-02-21T06:31:20.115Z", + "0.1.1": "2011-03-06T03:58:11.057Z", + "0.1.2": "2011-03-06T04:08:34.334Z", + "0.1.3": "2011-05-31T17:13:40.939Z", + "0.1.4": "2011-06-02T02:47:04.504Z", + "0.1.5": "2011-06-03T23:01:57.930Z", + "0.1.6": "2011-07-14T20:32:58.911Z" + }, + "author": { + "name": "Mike Cantelon", + "email": "mcantelon@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mcantelon/node-deja.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/deja/0.0.1", + "0.0.2": "http://registry.npmjs.org/deja/0.0.2", + "0.0.3": "http://registry.npmjs.org/deja/0.0.3", + "0.0.4": "http://registry.npmjs.org/deja/0.0.4", + "0.0.5": "http://registry.npmjs.org/deja/0.0.5", + "0.0.6": "http://registry.npmjs.org/deja/0.0.6", + "0.0.7": "http://registry.npmjs.org/deja/0.0.7", + "0.0.8": "http://registry.npmjs.org/deja/0.0.8", + "0.0.9": "http://registry.npmjs.org/deja/0.0.9", + "0.0.10": "http://registry.npmjs.org/deja/0.0.10", + "0.0.11": "http://registry.npmjs.org/deja/0.0.11", + "0.0.12": "http://registry.npmjs.org/deja/0.0.12", + "0.0.14": "http://registry.npmjs.org/deja/0.0.14", + "0.0.15": "http://registry.npmjs.org/deja/0.0.15", + "0.1.0": "http://registry.npmjs.org/deja/0.1.0", + "0.1.1": "http://registry.npmjs.org/deja/0.1.1", + "0.1.2": "http://registry.npmjs.org/deja/0.1.2", + "0.1.5": "http://registry.npmjs.org/deja/0.1.5", + "0.1.6": "http://registry.npmjs.org/deja/0.1.6" + }, + "dist": { + "0.0.1": { + "shasum": "acf21229f50bd2f581d424572221c7ca47d180f1", + "tarball": "http://registry.npmjs.org/deja/-/deja-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "a5ffdb95e3d1825d464d1852f2536a8664a18831", + "tarball": "http://registry.npmjs.org/deja/-/deja-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "18dac64275da47340b734ff5989d1e8fa43db1fb", + "tarball": "http://registry.npmjs.org/deja/-/deja-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "bcb6bfefa6e883eff98fe4a4acba28ddfdc47265", + "tarball": "http://registry.npmjs.org/deja/-/deja-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "369965871dc680f639ad5d6840726d7ec3b495ea", + "tarball": "http://registry.npmjs.org/deja/-/deja-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "cdfa37a5757fa54247e407f80f2759ff37e7807a", + "tarball": "http://registry.npmjs.org/deja/-/deja-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "ee63bc4f80ff4ff77e495775876dbb73776691d0", + "tarball": "http://registry.npmjs.org/deja/-/deja-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "dae95ecf466ecc2881b004a1ec2d455a11326ab2", + "tarball": "http://registry.npmjs.org/deja/-/deja-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "1176b9374cdfa3fa0eadbcd91fc82a66571d8c60", + "tarball": "http://registry.npmjs.org/deja/-/deja-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "96a75e74a67bfca74522eb76a16b534f77cf1f95", + "tarball": "http://registry.npmjs.org/deja/-/deja-0.0.10.tgz" + }, + "0.0.11": { + "shasum": "940fa68f8475c9ee7fbce7ebf3e1d8d94dc4db32", + "tarball": "http://registry.npmjs.org/deja/-/deja-0.0.11.tgz" + }, + "0.0.12": { + "shasum": "504cb5349c4f426c8a2b324d8bfeb17bd4650f0e", + "tarball": "http://registry.npmjs.org/deja/-/deja-0.0.12.tgz" + }, + "0.0.14": { + "shasum": "d35f2eec47eccb7833c45bfa8d5beb5a25bdbec4", + "tarball": "http://registry.npmjs.org/deja/-/deja-0.0.14.tgz" + }, + "0.0.15": { + "shasum": "ea4a562c8a0ec3d69ea5ed874e07e21c9a2ceb63", + "tarball": "http://registry.npmjs.org/deja/-/deja-0.0.15.tgz" + }, + "0.1.0": { + "shasum": "a017029664701a4e3a0fe87d6b8c25827f31cb84", + "tarball": "http://registry.npmjs.org/deja/-/deja-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "3950381ca9a887119f174dc49339356bd35e05bc", + "tarball": "http://registry.npmjs.org/deja/-/deja-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "41e057710b5e0978f505fb547c2c8679f27f1bd6", + "tarball": "http://registry.npmjs.org/deja/-/deja-0.1.2.tgz" + }, + "0.1.5": { + "shasum": "fcdceb406ea947c003f1fde674da1c966d751b9a", + "tarball": "http://registry.npmjs.org/deja/-/deja-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "d4737c542db38240865c6a61850219ba6249b951", + "tarball": "http://registry.npmjs.org/deja/-/deja-0.1.6.tgz" + } + }, + "url": "http://registry.npmjs.org/deja/" + }, + "delayed-stream": { + "name": "delayed-stream", + "description": "Buffers events from a stream until you are ready to handle them.", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "felixge", + "email": "felix@debuggable.com" + } + ], + "time": { + "modified": "2011-05-24T08:09:45.283Z", + "created": "2011-05-22T13:50:32.615Z", + "0.0.0": "2011-05-22T13:50:34.131Z", + "0.0.1": "2011-05-22T20:51:10.182Z", + "0.0.2": "2011-05-22T20:54:55.117Z", + "0.0.3": "2011-05-22T21:39:43.149Z", + "0.0.4": "2011-05-24T08:02:37.327Z", + "0.0.5": "2011-05-24T08:09:45.283Z" + }, + "author": { + "name": "Felix Geisendörfer", + "email": "felix@debuggable.com", + "url": "http://debuggable.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/felixge/node-delayed-stream.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/delayed-stream/0.0.0", + "0.0.1": "http://registry.npmjs.org/delayed-stream/0.0.1", + "0.0.2": "http://registry.npmjs.org/delayed-stream/0.0.2", + "0.0.3": "http://registry.npmjs.org/delayed-stream/0.0.3", + "0.0.4": "http://registry.npmjs.org/delayed-stream/0.0.4", + "0.0.5": "http://registry.npmjs.org/delayed-stream/0.0.5" + }, + "dist": { + "0.0.0": { + "shasum": "4bfe02a4a905b80aff019c3edcc53cadef03db8f", + "tarball": "http://registry.npmjs.org/delayed-stream/-/delayed-stream-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "5a708417b75b3ba0aa9ac02c5f0006e252c53c24", + "tarball": "http://registry.npmjs.org/delayed-stream/-/delayed-stream-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f122955bbbe3f930237111905801dee6b882b5f1", + "tarball": "http://registry.npmjs.org/delayed-stream/-/delayed-stream-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "c504cc899c309fca4a2ac907c6b71957c5f1d272", + "tarball": "http://registry.npmjs.org/delayed-stream/-/delayed-stream-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "318e307e9c061635942f414ca460cc8143ed8c08", + "tarball": "http://registry.npmjs.org/delayed-stream/-/delayed-stream-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "d4b1f43a93e8296dfe02694f4680bc37a313c73f", + "tarball": "http://registry.npmjs.org/delayed-stream/-/delayed-stream-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/delayed-stream/" + }, + "delegator": { + "name": "delegator", + "description": "Browser event delegation.", + "dist-tags": { + "latest": "1.3.1" + }, + "maintainers": [ + { + "name": "naitik", + "email": "n@daaku.org" + } + ], + "time": { + "modified": "2011-10-01T21:29:36.723Z", + "created": "2011-07-31T04:25:34.761Z", + "1.3.0": "2011-07-31T04:25:36.362Z", + "1.3.1": "2011-10-01T21:29:36.723Z" + }, + "author": { + "name": "Naitik Shah", + "email": "n@daaku.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/nshah/js-delegator.git" + }, + "versions": { + "1.3.0": "http://registry.npmjs.org/delegator/1.3.0", + "1.3.1": "http://registry.npmjs.org/delegator/1.3.1" + }, + "dist": { + "1.3.0": { + "shasum": "93177321ad3cb0733d51465128e44fddd28a0d57", + "tarball": "http://registry.npmjs.org/delegator/-/delegator-1.3.0.tgz" + }, + "1.3.1": { + "shasum": "61bbdf55b60928446909241b358ccb570e0589d5", + "tarball": "http://registry.npmjs.org/delegator/-/delegator-1.3.1.tgz" + } + }, + "keywords": [ + "event", + "browser", + "utils" + ], + "url": "http://registry.npmjs.org/delegator/" + }, + "demogen": { + "name": "demogen", + "description": "Clientside JS Library Demo Generator", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "damonoehlman", + "email": "damon.oehlman@sidelab.com" + } + ], + "time": { + "modified": "2011-10-01T13:50:57.173Z", + "created": "2011-09-27T10:41:31.595Z", + "0.0.1": "2011-09-27T10:41:33.754Z", + "0.0.2": "2011-09-28T06:47:05.210Z", + "0.0.3": "2011-10-01T10:44:54.949Z" + }, + "author": { + "name": "Damon Oehlman", + "email": "damon.oehlman@sidelab.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/DamonOehlman/demogen.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/demogen/0.0.1", + "0.0.2": "http://registry.npmjs.org/demogen/0.0.2", + "0.0.3": "http://registry.npmjs.org/demogen/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "a6329d467609f52f7c413824d16c75361fc14c74", + "tarball": "http://registry.npmjs.org/demogen/-/demogen-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f2f4f3c3506a46700cf07f3bd418fa0b5a50b362", + "tarball": "http://registry.npmjs.org/demogen/-/demogen-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "c60118b5a04d99df8d7db2428320047414b249b0", + "tarball": "http://registry.npmjs.org/demogen/-/demogen-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/demogen/" + }, + "dep-graph": { + "name": "dep-graph", + "description": "Simple dependency graph management", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "TrevorBurnham", + "email": "trevorburnham@gmail.com" + } + ], + "time": { + "modified": "2011-11-02T19:37:45.313Z", + "created": "2011-09-19T20:16:06.982Z", + "1.0.0": "2011-09-19T20:16:07.341Z", + "1.0.1": "2011-11-02T19:37:45.313Z" + }, + "author": { + "name": "Trevor Burnham", + "url": "http://trevorburnham.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/TrevorBurnham/dep-graph.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/dep-graph/1.0.0", + "1.0.1": "http://registry.npmjs.org/dep-graph/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "96066cdc7f469a20047ffe1a5cc84c20d1a5d7a8", + "tarball": "http://registry.npmjs.org/dep-graph/-/dep-graph-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "cc0418655eb810419ddc4b355612923ce2ddc4cf", + "tarball": "http://registry.npmjs.org/dep-graph/-/dep-graph-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/dep-graph/" + }, + "dependency-promise": { + "name": "dependency-promise", + "description": "Add the Deferrable Pattern to Your Dependency Graphs", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "bnoguchi", + "email": "brian.noguchi@gmail.com" + } + ], + "time": { + "modified": "2011-05-21T23:06:36.395Z", + "created": "2011-02-23T22:37:02.514Z", + "0.1.0": "2011-02-23T22:37:02.974Z", + "0.2.0": "2011-02-23T23:22:32.102Z", + "0.2.1": "2011-02-24T09:54:10.853Z" + }, + "author": { + "name": "Brian Noguchi", + "email": "brian.noguchi@gmail.com", + "url": "https://github.com/bnoguchi/" + }, + "repository": { + "type": "git", + "url": "git://github.com/bnoguchi/dependency-promise.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/dependency-promise/0.1.0", + "0.2.0": "http://registry.npmjs.org/dependency-promise/0.2.0", + "0.2.1": "http://registry.npmjs.org/dependency-promise/0.2.1" + }, + "dist": { + "0.1.0": { + "shasum": "8abb18501afc7373babce8dd1eea7c952ce0c784", + "tarball": "http://registry.npmjs.org/dependency-promise/-/dependency-promise-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "582e0d12d1459fee90fe63b59a917e3ac5b39771", + "tarball": "http://registry.npmjs.org/dependency-promise/-/dependency-promise-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "e67f0a7c7d016b1b9fd71440e1cf3ebef9d2a1d0", + "tarball": "http://registry.npmjs.org/dependency-promise/-/dependency-promise-0.2.1.tgz" + } + }, + "keywords": [ + "node", + "dependencies", + "promise", + "deferrable" + ], + "url": "http://registry.npmjs.org/dependency-promise/" + }, + "depends": { + "name": "depends", + "description": "Put a stop to JavaScript dependancy accidents.", + "dist-tags": { + "latest": "0.3.1" + }, + "maintainers": [ + { + "name": "defrex", + "email": "defrex@mail.com" + } + ], + "time": { + "modified": "2011-08-05T18:27:11.439Z", + "created": "2011-06-27T04:12:53.577Z", + "0.1.0": "2011-06-27T04:12:53.851Z", + "0.1.1": "2011-06-27T04:16:34.914Z", + "0.1.2": "2011-06-27T13:46:53.289Z", + "0.1.3": "2011-06-27T17:01:12.336Z", + "0.1.4": "2011-06-28T15:27:31.410Z", + "0.1.5": "2011-06-28T17:16:44.028Z", + "0.1.6": "2011-06-28T17:53:45.529Z", + "0.1.7": "2011-06-28T19:14:57.300Z", + "0.1.8": "2011-07-13T18:36:48.801Z", + "0.1.999999999": "2011-07-16T18:45:29.392Z", + "0.2.0": "2011-07-27T16:30:58.820Z", + "0.3.0": "2011-08-05T18:17:31.545Z", + "0.3.1": "2011-08-05T18:27:11.439Z" + }, + "author": { + "name": "defrex" + }, + "repository": { + "type": "git", + "url": "git://github.com/defrex/js-depends.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/depends/0.1.0", + "0.1.1": "http://registry.npmjs.org/depends/0.1.1", + "0.1.2": "http://registry.npmjs.org/depends/0.1.2", + "0.1.3": "http://registry.npmjs.org/depends/0.1.3", + "0.1.4": "http://registry.npmjs.org/depends/0.1.4", + "0.1.5": "http://registry.npmjs.org/depends/0.1.5", + "0.1.6": "http://registry.npmjs.org/depends/0.1.6", + "0.1.7": "http://registry.npmjs.org/depends/0.1.7", + "0.1.8": "http://registry.npmjs.org/depends/0.1.8", + "0.1.999999999": "http://registry.npmjs.org/depends/0.1.999999999", + "0.2.0": "http://registry.npmjs.org/depends/0.2.0", + "0.3.0": "http://registry.npmjs.org/depends/0.3.0", + "0.3.1": "http://registry.npmjs.org/depends/0.3.1" + }, + "dist": { + "0.1.0": { + "shasum": "4ed8ae36f44dfd91e34229d43243493961cedf94", + "tarball": "http://registry.npmjs.org/depends/-/depends-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "7a4be8c96568bf9b7bde539a6e5bdcd5fbe011f2", + "tarball": "http://registry.npmjs.org/depends/-/depends-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "6efa479bce62c6c3b303ca6b4d4ae6c1c08de255", + "tarball": "http://registry.npmjs.org/depends/-/depends-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "6f140daa63ddeb2b1c20c1f678045d340a5a046d", + "tarball": "http://registry.npmjs.org/depends/-/depends-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "eae7a617365c1e5eea515729014f6c50e743a3d2", + "tarball": "http://registry.npmjs.org/depends/-/depends-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "6b2aaa12dec4e91b0111e753f3f02dd9503b7525", + "tarball": "http://registry.npmjs.org/depends/-/depends-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "410fc30e730b22d99f94f7b2cc6652c98963890c", + "tarball": "http://registry.npmjs.org/depends/-/depends-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "8a00627f08465d1f48e359361b2ad4fcd29e6c2b", + "tarball": "http://registry.npmjs.org/depends/-/depends-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "e8815084f2a0e9f0315a785d37f4dc0156fd65ef", + "tarball": "http://registry.npmjs.org/depends/-/depends-0.1.8.tgz" + }, + "0.1.999999999": { + "shasum": "536bf9ab79950edf020b8e8d305079850861a5e7", + "tarball": "http://registry.npmjs.org/depends/-/depends-0.1.999999999.tgz" + }, + "0.2.0": { + "shasum": "9b1bfb1a3fe844144c0956aae7cddb829790f952", + "tarball": "http://registry.npmjs.org/depends/-/depends-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "d4a907a82891d58a32da8cc3c5b406a1bbad3d5a", + "tarball": "http://registry.npmjs.org/depends/-/depends-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "c30f7bcf1af4411582878e5baebbeec6c7b32350", + "tarball": "http://registry.npmjs.org/depends/-/depends-0.3.1.tgz" + } + }, + "url": "http://registry.npmjs.org/depends/" + }, + "deploy": { + "name": "deploy", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "miksago", + "email": "micheil@brandedcode.com" + } + ], + "time": { + "modified": "2011-01-26T18:46:06.244Z", + "created": "2011-01-26T18:46:05.106Z", + "0.0.0": "2011-01-26T18:46:06.244Z" + }, + "repository": { + "type": "git", + "private": "git://github.com:votizen/deploy.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/deploy/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "5c062afaab766d875ce7b96a1db4f329c0cfac28", + "tarball": "http://registry.npmjs.org/deploy/-/deploy-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/deploy/" + }, + "deployjs": { + "name": "deployjs", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "taf2", + "email": "todd.fisher@gmail.com" + } + ], + "time": { + "modified": "2011-07-15T00:48:29.018Z", + "created": "2011-07-15T00:35:25.683Z", + "0.0.1": "2011-07-15T00:35:25.827Z", + "0.0.2": "2011-07-15T00:48:29.018Z" + }, + "description": "simple cluster.js deployment script", + "repository": { + "type": "git", + "url": "git://github.com/taf2/deployjs.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/deployjs/0.0.1", + "0.0.2": "http://registry.npmjs.org/deployjs/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "16df91d31ea8e5533a9e6114226ce5ee02947069", + "tarball": "http://registry.npmjs.org/deployjs/-/deployjs-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c8631f73a20f4b14004920e0894ecd74f6993f21", + "tarball": "http://registry.npmjs.org/deployjs/-/deployjs-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/deployjs/" + }, + "deputy": { + "name": "deputy", + "description": "caching layer for detective", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-11-16T06:42:30.295Z", + "created": "2011-11-16T06:42:28.347Z", + "0.0.0": "2011-11-16T06:42:30.295Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-deputy.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/deputy/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "e518dba029fa62980eef7f826dc6823ab3a7bc64", + "tarball": "http://registry.npmjs.org/deputy/-/deputy-0.0.0.tgz" + } + }, + "keywords": [ + "detective", + "require", + "cache" + ], + "url": "http://registry.npmjs.org/deputy/" + }, + "deputy-client": { + "name": "deputy-client", + "description": "Client for the Deputy job server", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "fictorial", + "email": "brian@fictorial.com" + } + ], + "time": { + "modified": "2011-05-27T20:52:51.177Z", + "created": "2011-05-27T20:52:50.931Z", + "0.0.1": "2011-05-27T20:52:51.177Z" + }, + "author": { + "name": "Brian Hammond", + "email": "brian@fictorial.com", + "url": "http://fictorial.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/fictorial/node-deputy.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/deputy-client/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "0dd855add9cb0f285a5b3d2f3fd5e8744685409f", + "tarball": "http://registry.npmjs.org/deputy-client/-/deputy-client-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/deputy-client/" + }, + "deputy-server": { + "name": "deputy-server", + "description": "A job server", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "fictorial", + "email": "brian@fictorial.com" + } + ], + "time": { + "modified": "2011-05-27T20:52:42.390Z", + "created": "2011-05-27T20:52:42.166Z", + "0.0.1": "2011-05-27T20:52:42.390Z" + }, + "author": { + "name": "Brian Hammond", + "email": "brian@fictorial.com", + "url": "http://fictorial.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/fictorial/deputy.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/deputy-server/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "95155a924300f7b895cdcb84823e38e5fa5c0813", + "tarball": "http://registry.npmjs.org/deputy-server/-/deputy-server-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/deputy-server/" + }, + "deque": { + "name": "deque", + "description": "Double Ended Queue Datastructure - ordered collection with optimized access from its endpoints", + "dist-tags": { + "latest": "0.0.4" + }, + "readme": null, + "maintainers": [ + { + "name": "enki", + "email": "bohmps@gmail.com" + } + ], + "time": { + "modified": "2011-11-17T06:59:31.915Z", + "created": "2011-11-13T08:06:26.107Z", + "0.0.1": "2011-11-13T08:06:27.478Z", + "0.0.2": "2011-11-13T08:10:26.716Z", + "0.0.3": "2011-11-17T06:29:30.437Z", + "0.0.4": "2011-11-17T06:59:31.915Z" + }, + "author": { + "name": "Paul Bohm", + "email": "enki@bbq.io", + "url": "http://paulbohm.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/enki/node-deque.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/deque/0.0.1", + "0.0.2": "http://registry.npmjs.org/deque/0.0.2", + "0.0.3": "http://registry.npmjs.org/deque/0.0.3", + "0.0.4": "http://registry.npmjs.org/deque/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "04ad27c4e6293d9bd6dd55618ea3270402dafce9", + "tarball": "http://registry.npmjs.org/deque/-/deque-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "6054b3eafb09cfbf27e0176c423ca3e8d334a28d", + "tarball": "http://registry.npmjs.org/deque/-/deque-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "e0fd17f85ff455ada782e1218f23b39a2b929735", + "tarball": "http://registry.npmjs.org/deque/-/deque-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "708a302ac1e7a8c199bd95be4e43813a2c8d8566", + "tarball": "http://registry.npmjs.org/deque/-/deque-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/deque/" + }, + "derby": { + "name": "derby", + "description": "MVC framework making it easy to write realtime, collaborative applications that run in both Node.js and browsers.", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "nateps", + "email": "nate@nateps.com" + }, + { + "name": "bnoguchi", + "email": "brian.noguchi@gmail.com" + } + ], + "time": { + "modified": "2011-12-12T20:48:37.818Z", + "created": "2011-08-24T07:44:46.893Z", + "0.0.1": "2011-08-24T07:44:48.173Z", + "0.0.2": "2011-08-25T08:52:11.821Z", + "0.0.3": "2011-09-05T03:21:02.495Z", + "0.0.4": "2011-09-05T03:52:37.626Z", + "0.0.5": "2011-09-05T20:45:34.817Z", + "0.0.6": "2011-09-11T00:14:07.728Z", + "0.0.7": "2011-09-11T06:28:55.824Z", + "0.0.8": "2011-09-11T09:45:39.286Z", + "0.0.9": "2011-09-21T01:13:15.336Z", + "0.0.10": "2011-11-04T00:49:10.497Z", + "0.0.11": "2011-11-04T00:29:58.493Z", + "0.1.0": "2011-11-07T10:05:51.600Z", + "0.1.1": "2011-11-11T19:45:20.524Z", + "0.1.2": "2011-11-28T00:36:21.910Z", + "0.1.3": "2011-12-12T20:48:37.818Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/derby/0.0.1", + "0.0.2": "http://registry.npmjs.org/derby/0.0.2", + "0.0.3": "http://registry.npmjs.org/derby/0.0.3", + "0.0.4": "http://registry.npmjs.org/derby/0.0.4", + "0.0.5": "http://registry.npmjs.org/derby/0.0.5", + "0.0.6": "http://registry.npmjs.org/derby/0.0.6", + "0.0.7": "http://registry.npmjs.org/derby/0.0.7", + "0.0.8": "http://registry.npmjs.org/derby/0.0.8", + "0.0.9": "http://registry.npmjs.org/derby/0.0.9", + "0.0.10": "http://registry.npmjs.org/derby/0.0.10", + "0.1.0": "http://registry.npmjs.org/derby/0.1.0", + "0.1.1": "http://registry.npmjs.org/derby/0.1.1", + "0.1.2": "http://registry.npmjs.org/derby/0.1.2", + "0.1.3": "http://registry.npmjs.org/derby/0.1.3" + }, + "dist": { + "0.0.1": { + "shasum": "e58e0d8a9533a06eb0221c22037b75ff6dc8c730", + "tarball": "http://registry.npmjs.org/derby/-/derby-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "4c7bcda45821c8522635938a0a3a5d20d5f8b44e", + "tarball": "http://registry.npmjs.org/derby/-/derby-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "5d2b3a058440f2ac0f650ade1a3ea45434acc09d", + "tarball": "http://registry.npmjs.org/derby/-/derby-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "0a6bda76f2484e0bba39254bac1fe5bed5635cf4", + "tarball": "http://registry.npmjs.org/derby/-/derby-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "92ffcf151014029e5577466822f05a8e8d81bf0f", + "tarball": "http://registry.npmjs.org/derby/-/derby-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "b5a803c8dc04699df014946a47dfbeb169608f7f", + "tarball": "http://registry.npmjs.org/derby/-/derby-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "98ccbf4fe40b70d3660980a9a00602134df7c05b", + "tarball": "http://registry.npmjs.org/derby/-/derby-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "3cec7723074bc36ac1eb8a5d41e022d9585e010c", + "tarball": "http://registry.npmjs.org/derby/-/derby-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "8e8628fb06a3af9d580f298fed5a0be40514a521", + "tarball": "http://registry.npmjs.org/derby/-/derby-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "4ce01a625696d73d310a0ec1a3e41b556562f1ed", + "tarball": "http://registry.npmjs.org/derby/-/derby-0.0.10.tgz" + }, + "0.1.0": { + "shasum": "391863e85f90fb97d4e467be97106b26032902e5", + "tarball": "http://registry.npmjs.org/derby/-/derby-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "f7fb645b360c8c2b1e794007d660c179b39df159", + "tarball": "http://registry.npmjs.org/derby/-/derby-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "4a5aa6044b9f4c0e52bfe587ec588f701e61ba7e", + "tarball": "http://registry.npmjs.org/derby/-/derby-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "79f8c4d8da1f901da35821dc212b7b0335ae075b", + "tarball": "http://registry.npmjs.org/derby/-/derby-0.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/derby/" + }, + "des": { + "name": "des", + "description": "A C++ module that does DES encryption.", + "dist-tags": { + "latest": "2.0.1" + }, + "maintainers": [ + { + "name": "pkrumins", + "email": "peteris.krumins@gmail.com" + } + ], + "time": { + "modified": "2011-04-15T21:05:03.223Z", + "created": "2011-02-07T01:06:55.891Z", + "1.0.0": "2011-02-07T01:06:55.891Z", + "1.0.1": "2011-02-07T01:06:55.891Z", + "2.0.0": "2011-02-07T01:06:55.891Z", + "2.0.1": "2011-02-12T04:41:10.602Z" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/des/1.0.0", + "1.0.1": "http://registry.npmjs.org/des/1.0.1", + "2.0.1": "http://registry.npmjs.org/des/2.0.1" + }, + "dist": { + "1.0.0": { + "tarball": "http://registry.npmjs.org/des/-/des-1.0.0.tgz" + }, + "1.0.1": { + "tarball": "http://registry.npmjs.org/des/-/des-1.0.1.tgz" + }, + "2.0.1": { + "tarball": "http://registry.npmjs.org/des/-/des-2.0.1.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "9ddbba943e6a90782afce2540d8f449f36b2cb78", + "tarball": "http://registry.npmjs.org/des/-/des-2.0.1-0.4-sunos-5.11.tgz" + } + } + } + }, + "url": "http://registry.npmjs.org/des/" + }, + "descent": { + "name": "descent", + "description": "Recursive descent parser generator", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "time": { + "modified": "2011-08-19T01:37:10.725Z", + "created": "2011-05-12T17:46:39.252Z", + "0.0.1": "2011-05-12T17:46:40.001Z", + "0.0.2": "2011-05-17T19:57:48.049Z", + "0.0.3": "2011-08-19T01:37:10.725Z" + }, + "author": { + "name": "TJ Holowaychuk", + "email": "tj@learnboost.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/descent/0.0.1", + "0.0.2": "http://registry.npmjs.org/descent/0.0.2", + "0.0.3": "http://registry.npmjs.org/descent/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "0fbf8f1aece662ffb74c25c9da55a753bb381c6a", + "tarball": "http://registry.npmjs.org/descent/-/descent-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "8c4598dc460231d459bf05d7369c3dbd207a1a20", + "tarball": "http://registry.npmjs.org/descent/-/descent-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "f9ea8c8573b00185e04254724e698581c863bc22", + "tarball": "http://registry.npmjs.org/descent/-/descent-0.0.3.tgz" + } + }, + "keywords": [ + "peg", + "parser" + ], + "url": "http://registry.npmjs.org/descent/" + }, + "describe": { + "name": "describe", + "description": "An extremely lightweight method for running tests.", + "dist-tags": { + "latest": "0.9.0" + }, + "maintainers": [ + { + "name": "yuffster", + "email": "msteigerwalt@gmail.com" + } + ], + "time": { + "modified": "2011-05-16T00:20:42.798Z", + "created": "2011-05-15T00:30:57.537Z", + "0.8.0": "2011-05-15T00:30:58.052Z", + "0.9.0": "2011-05-16T00:20:42.798Z" + }, + "author": { + "name": "Michelle Steigerwalt", + "url": "http://msteigerwalt.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/yuffster/npm-describe.git" + }, + "versions": { + "0.8.0": "http://registry.npmjs.org/describe/0.8.0", + "0.9.0": "http://registry.npmjs.org/describe/0.9.0" + }, + "dist": { + "0.8.0": { + "shasum": "5ac519e3d8ee2ce7324e07b3145ade86f1ec2d08", + "tarball": "http://registry.npmjs.org/describe/-/describe-0.8.0.tgz" + }, + "0.9.0": { + "shasum": "16878da0c00a2147f11e645f3e946300413509a3", + "tarball": "http://registry.npmjs.org/describe/-/describe-0.9.0.tgz" + } + }, + "url": "http://registry.npmjs.org/describe/" + }, + "deserver": { + "name": "deserver", + "description": "A simple development server", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "mwaylabs", + "email": "s.pfleiderer@mwaysolutions.com" + } + ], + "time": { + "modified": "2011-08-18T17:48:02.251Z", + "created": "2011-08-17T09:39:20.422Z", + "0.0.1": "2011-08-17T09:39:20.964Z", + "0.0.2": "2011-08-18T17:48:02.251Z" + }, + "author": { + "name": "tv" + }, + "repository": { + "type": "git", + "url": "git://github.com/4z3/deserver.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/deserver/0.0.1", + "0.0.2": "http://registry.npmjs.org/deserver/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "5ea1312fc0f1e72f735dd1ab423f60cf62d975db", + "tarball": "http://registry.npmjs.org/deserver/-/deserver-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "515e3e8b23a147ccbcb908a799ef3991caec337b", + "tarball": "http://registry.npmjs.org/deserver/-/deserver-0.0.2.tgz" + } + }, + "keywords": [ + "http", + "file", + "proxy" + ], + "url": "http://registry.npmjs.org/deserver/" + }, + "design.io": { + "name": "design.io", + "description": "Design and Test Your App in Real-Time from TextMate", + "dist-tags": { + "latest": "0.2.7" + }, + "maintainers": [ + { + "name": "viatropos", + "email": "lancejpollard@gmail.com" + } + ], + "time": { + "modified": "2011-11-17T05:33:25.639Z", + "created": "2011-11-04T03:52:12.481Z", + "0.1.4": "2011-11-04T03:52:13.033Z", + "0.1.5": "2011-11-04T04:30:05.066Z", + "0.2.0": "2011-11-08T08:40:24.434Z", + "0.2.2": "2011-11-16T02:38:18.827Z", + "0.2.3": "2011-11-16T03:22:25.518Z", + "0.2.4": "2011-11-16T07:13:19.387Z", + "0.2.6": "2011-11-17T05:20:33.745Z", + "0.2.7": "2011-11-17T05:33:25.639Z" + }, + "author": { + "name": "Lance Pollard", + "email": "lancejpollard@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/viatropos/design.io.git" + }, + "versions": { + "0.1.4": "http://registry.npmjs.org/design.io/0.1.4", + "0.1.5": "http://registry.npmjs.org/design.io/0.1.5", + "0.2.0": "http://registry.npmjs.org/design.io/0.2.0", + "0.2.2": "http://registry.npmjs.org/design.io/0.2.2", + "0.2.3": "http://registry.npmjs.org/design.io/0.2.3", + "0.2.4": "http://registry.npmjs.org/design.io/0.2.4", + "0.2.6": "http://registry.npmjs.org/design.io/0.2.6", + "0.2.7": "http://registry.npmjs.org/design.io/0.2.7" + }, + "dist": { + "0.1.4": { + "shasum": "bf67a228ac0681cfd643ef19870ccc1607befe80", + "tarball": "http://registry.npmjs.org/design.io/-/design.io-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "34641d8961f695d405d726d4987472b2dff7447a", + "tarball": "http://registry.npmjs.org/design.io/-/design.io-0.1.5.tgz" + }, + "0.2.0": { + "shasum": "1a6a0bcb2cc9472620f7964b757a769a00fd5282", + "tarball": "http://registry.npmjs.org/design.io/-/design.io-0.2.0.tgz" + }, + "0.2.2": { + "shasum": "e09a4d66d74cda7dc056c5206389360c24784f3d", + "tarball": "http://registry.npmjs.org/design.io/-/design.io-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "d52a62a0381e0c9bc352cd20ee35be3c11196fc8", + "tarball": "http://registry.npmjs.org/design.io/-/design.io-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "1fb8ed85a7e384d3f15ac9a1c569215bba81c6f0", + "tarball": "http://registry.npmjs.org/design.io/-/design.io-0.2.4.tgz" + }, + "0.2.6": { + "shasum": "76a733a37481352b01939f2f857386f5f0a141ac", + "tarball": "http://registry.npmjs.org/design.io/-/design.io-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "302d88ba219b70b382768f7fcaea12aa30cc63d2", + "tarball": "http://registry.npmjs.org/design.io/-/design.io-0.2.7.tgz" + } + }, + "keywords": [ + "design", + "development", + "node" + ], + "url": "http://registry.npmjs.org/design.io/" + }, + "design.io-javascripts": { + "name": "design.io-javascripts", + "description": "JavaScript Watcher for Design.IO", + "dist-tags": { + "latest": "0.1.3" + }, + "readme": "", + "maintainers": [ + { + "name": "viatropos", + "email": "lancejpollard@gmail.com" + } + ], + "time": { + "modified": "2011-11-17T05:20:15.648Z", + "created": "2011-11-16T02:47:45.014Z", + "0.1.0": "2011-11-16T02:47:46.549Z", + "0.1.3": "2011-11-17T05:20:15.648Z" + }, + "author": { + "name": "Lance Pollard", + "email": "lancejpollard@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/viatropos/design.io-javascripts.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/design.io-javascripts/0.1.0", + "0.1.3": "http://registry.npmjs.org/design.io-javascripts/0.1.3" + }, + "dist": { + "0.1.0": { + "shasum": "b5e5d598d4df79670c88b30c39aa463634b84e16", + "tarball": "http://registry.npmjs.org/design.io-javascripts/-/design.io-javascripts-0.1.0.tgz" + }, + "0.1.3": { + "shasum": "696a3e134b520017e83d77d3621b940ac2c34a1b", + "tarball": "http://registry.npmjs.org/design.io-javascripts/-/design.io-javascripts-0.1.3.tgz" + } + }, + "keywords": [ + "design", + "development", + "node" + ], + "url": "http://registry.npmjs.org/design.io-javascripts/" + }, + "design.io-stylesheets": { + "name": "design.io-stylesheets", + "description": "Stylesheet Watcher for Design.IO", + "dist-tags": { + "latest": "0.1.3" + }, + "readme": "", + "maintainers": [ + { + "name": "viatropos", + "email": "lancejpollard@gmail.com" + } + ], + "time": { + "modified": "2011-11-17T05:21:05.632Z", + "created": "2011-11-16T02:47:38.931Z", + "0.1.0": "2011-11-16T02:47:40.432Z", + "0.1.3": "2011-11-17T05:21:05.632Z" + }, + "author": { + "name": "Lance Pollard", + "email": "lancejpollard@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/viatropos/design.io-stylesheets.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/design.io-stylesheets/0.1.0", + "0.1.3": "http://registry.npmjs.org/design.io-stylesheets/0.1.3" + }, + "dist": { + "0.1.0": { + "shasum": "af066db187d86741a852b55f56d943a035a03d31", + "tarball": "http://registry.npmjs.org/design.io-stylesheets/-/design.io-stylesheets-0.1.0.tgz" + }, + "0.1.3": { + "shasum": "9f223e069f1957e0bd0b9ea719aef0602908566c", + "tarball": "http://registry.npmjs.org/design.io-stylesheets/-/design.io-stylesheets-0.1.3.tgz" + } + }, + "keywords": [ + "design", + "development", + "node" + ], + "url": "http://registry.npmjs.org/design.io-stylesheets/" + }, + "DeskSet": { + "name": "DeskSet", + "description": "YAAJSL (Yet Another Asynchronous JS Library)", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "aaronblohowiak", + "email": "aaron.blohowiak@gmail.com" + } + ], + "time": { + "modified": "2011-09-20T08:08:36.344Z", + "created": "2011-09-20T07:53:55.411Z", + "1.0.0": "2011-09-20T07:53:56.775Z", + "1.0.1": "2011-09-20T08:08:36.344Z" + }, + "author": { + "name": "Aaron Blohowiak", + "email": "aaron.blohowiak@gmail.com", + "url": "http://aaronblohowiak.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/aaronblohowiak/DeskSet.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/DeskSet/1.0.0", + "1.0.1": "http://registry.npmjs.org/DeskSet/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "cbe74a571f08158250138cde306f74a282b18877", + "tarball": "http://registry.npmjs.org/DeskSet/-/DeskSet-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "dcce971c0f6b047f880293e4536047868b5c4161", + "tarball": "http://registry.npmjs.org/DeskSet/-/DeskSet-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/DeskSet/" + }, + "destrruc": { + "name": "destrruc", + "description": "HTTP Restful interface in express for mongoose models defined using modef", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "# destrruc\n\n\n## prerequisites\n[modef](https://github.com/rouzwawi/modef)\n\n\n## Installation\n\tnpm install destrruc\n\n\n## Use\nDefine your models using modef. Here done in a separate module (see modef docs).\n\n\trequire('./model/blog-models.js');\n\nUse destrruc() on express server to set up resource routes.\n\n\tvar express = require('express');\n\tvar app = express.createServer();\n\n\tapp.destrruc({});\n\nThis will set up CRUD routes for all your modef defined models.\n\n\tPOST /:model -> Create Model from req.body.author\n\tGET /:model/:id -> Return Model :id as JSON\n\tPUT /:model/:id -> Update Model :id to req.body.author (per field updates)\n\tDELETE /:model/:id -> Delete Model :id\n\n\n## Setup options\nSetting up destrruc, you can pass these options to customize some of the behavior.\nThis is the default behavior.\n\n\tapp.destrruc({\n\t\trender: function(req, res, modelName, entity, next) {\n\t\t\tres.JSON(entity);\n\t\t},\n\t\tid: function(id) { return { _id: id }; }\n\t});\n\n### render\nA callback function for rendering the entity\n\n### id\nA function for creating a mongoose query object from the :id parameter\n\n\n## Populating connections\nUsing [mongoose populate](http://mongoosejs.com/docs/populate.html) destrruc gives\nyou a way to populate connected fields when doing GETs. Note, this only goes down one\nlevel in the connections.\n\nIf we have a one-to-many connection between Authors and Posts, Authors will have a list\nof references to Posts, and Posts will have a field with a reference to an Author.\nThese fields can be populated using the 'include' query parameter.\n\n\t/author/:id?include=posts\n\t/post/:id?include=author\n\nThe general syntax for the include query parameter is:\n\n\tinclude-caluse = [.[| ...]]\n\t?include=[, ...]\n\nSome examples:\n\n\t# author with posts\n\t/author/:id?include=posts\n\t\n\t# author with posts, but only post heading and date\n\t/author/:id?include=posts.heading|date\n\t\n\t# same as above, but also include the authors pictures names\n\t/author/:id?include=posts.heading|date,pictures.name\n\n\n## Events\n\n\tdestrruc.audit(function(action, modelName, entity, fields) {\n\t\tconsole.log('action:%s, model:%s, id:%s', action, modelName, entity._id);\n\t\tfor (field in fields) {\n\t\t\tconsole.log('\\t %s = %s', field, fields[field]);\n\t\t}\n\t});\n", + "maintainers": [ + { + "name": "rouzwawi", + "email": "rouzwawi@gmail.com" + } + ], + "time": { + "modified": "2011-11-15T23:23:37.253Z", + "created": "2011-11-15T23:23:35.450Z", + "0.1.0": "2011-11-15T23:23:37.253Z" + }, + "author": { + "name": "Rouzbeh Delavari", + "email": "rouzwawi@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/rouzwawi/destrruc.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/destrruc/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "1e56bf4949df603ffa658e6a47cf3973ab41998b", + "tarball": "http://registry.npmjs.org/destrruc/-/destrruc-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/destrruc/" + }, + "detect": { + "name": "detect", + "description": "An npm package for detecting npm package dependencies.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "tfe", + "email": "todd@toddeichel.com" + } + ], + "time": { + "modified": "2011-04-07T00:26:49.556Z", + "created": "2011-04-07T00:26:48.693Z", + "0.0.1": "2011-04-07T00:26:49.556Z" + }, + "author": { + "name": "Todd Eichel", + "email": "todd@toddeichel.com", + "url": "http://toddeichel.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/tfe/npm-detect.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/detect/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "d1301e0c1399d4e6469978246047b1ed7fc5f1da", + "tarball": "http://registry.npmjs.org/detect/-/detect-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/detect/" + }, + "detective": { + "name": "detective", + "description": "Find all calls to require() no matter how crazily nested using a proper walk of the AST", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-11-26T02:55:57.478Z", + "created": "2011-06-18T01:14:25.709Z", + "0.0.0": "2011-06-18T01:14:26.407Z", + "0.0.1": "2011-06-20T01:22:33.001Z", + "0.0.2": "2011-08-03T22:37:08.300Z", + "0.0.3": "2011-09-10T05:26:03.694Z", + "0.0.4": "2011-11-26T02:55:57.478Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-detective.git" + }, + "users": { + "clux": true + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/detective/0.0.0", + "0.0.1": "http://registry.npmjs.org/detective/0.0.1", + "0.0.2": "http://registry.npmjs.org/detective/0.0.2", + "0.0.3": "http://registry.npmjs.org/detective/0.0.3", + "0.0.4": "http://registry.npmjs.org/detective/0.0.4" + }, + "dist": { + "0.0.0": { + "shasum": "ee9734f295d887bfeb35e01fa20cc4058c14be2c", + "tarball": "http://registry.npmjs.org/detective/-/detective-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "702413d1d9fbb879da942313936879d3a4ace810", + "tarball": "http://registry.npmjs.org/detective/-/detective-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "b1c16267b4b8aff2076c29a05bcbc1981c117987", + "tarball": "http://registry.npmjs.org/detective/-/detective-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "c51e7d02b328676ef801e971019fda3ac78266b0", + "tarball": "http://registry.npmjs.org/detective/-/detective-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "fca0be0bbae435ef756aadb14c7837776b851cea", + "tarball": "http://registry.npmjs.org/detective/-/detective-0.0.4.tgz" + } + }, + "keywords": [ + "require", + "source", + "analyze", + "ast" + ], + "url": "http://registry.npmjs.org/detective/" + }, + "dev": { + "name": "dev", + "description": "Reruns the given file whenever the current working dir subtree has modifications.", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "iliakan", + "email": "iliakan@gmail.com" + } + ], + "time": { + "modified": "2011-05-22T12:21:54.152Z", + "created": "2011-05-16T21:17:03.174Z", + "0.1.0": "2011-05-16T21:17:04.100Z", + "0.1.1": "2011-05-20T15:47:54.260Z", + "0.1.1d": "2011-05-20T15:54:20.482Z", + "0.1.1e": "2011-05-20T15:56:56.236Z", + "0.1.1f": "2011-05-20T16:03:59.271Z", + "0.1.1g": "2011-05-20T16:04:45.533Z", + "0.1.1h": "2011-05-20T16:19:45.945Z", + "0.1.1n": "2011-05-20T16:27:36.070Z", + "0.1.1p": "2011-05-21T06:23:30.478Z", + "0.1.2": "2011-05-22T12:15:53.101Z", + "0.1.3": "2011-05-22T12:21:54.152Z" + }, + "author": { + "name": "Ilya Kantor", + "email": "iliakan@gmail.com", + "url": "http://javascript.info/" + }, + "repository": { + "type": "git", + "url": "git://github.com/iliakan/node-dev.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/dev/0.1.0", + "0.1.1": "http://registry.npmjs.org/dev/0.1.1", + "0.1.1d": "http://registry.npmjs.org/dev/0.1.1d", + "0.1.1e": "http://registry.npmjs.org/dev/0.1.1e", + "0.1.1f": "http://registry.npmjs.org/dev/0.1.1f", + "0.1.1g": "http://registry.npmjs.org/dev/0.1.1g", + "0.1.1h": "http://registry.npmjs.org/dev/0.1.1h", + "0.1.1n": "http://registry.npmjs.org/dev/0.1.1n", + "0.1.1p": "http://registry.npmjs.org/dev/0.1.1p", + "0.1.2": "http://registry.npmjs.org/dev/0.1.2", + "0.1.3": "http://registry.npmjs.org/dev/0.1.3" + }, + "dist": { + "0.1.0": { + "shasum": "e6b676c3caa64c893b1d87784e8ced52e8f0c485", + "tarball": "http://registry.npmjs.org/dev/-/dev-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "b602b5eb923b8b6ccfacd7909e67e5e554dc0f7f", + "tarball": "http://registry.npmjs.org/dev/-/dev-0.1.1.tgz" + }, + "0.1.1d": { + "shasum": "a10f969b793f0415da9b104a069f5b19326fdb0c", + "tarball": "http://registry.npmjs.org/dev/-/dev-0.1.1d.tgz" + }, + "0.1.1e": { + "shasum": "493e8b039b52530602990234e18c5a57de9eb47f", + "tarball": "http://registry.npmjs.org/dev/-/dev-0.1.1e.tgz" + }, + "0.1.1f": { + "shasum": "1e66c1bb85ed3c6ec16081326e92624df465b252", + "tarball": "http://registry.npmjs.org/dev/-/dev-0.1.1f.tgz" + }, + "0.1.1g": { + "shasum": "d927935f8e3264c18c2b062a52964483e05999e1", + "tarball": "http://registry.npmjs.org/dev/-/dev-0.1.1g.tgz" + }, + "0.1.1h": { + "shasum": "1dcab460f24a8e4409f0dd335097f6a527a63b44", + "tarball": "http://registry.npmjs.org/dev/-/dev-0.1.1h.tgz" + }, + "0.1.1n": { + "shasum": "b8433fc8f1f2a1995e90bf6a6f833168a97e220d", + "tarball": "http://registry.npmjs.org/dev/-/dev-0.1.1n.tgz" + }, + "0.1.1p": { + "shasum": "8241818c47323195bc1a64a2b5f0f3b462461a31", + "tarball": "http://registry.npmjs.org/dev/-/dev-0.1.1p.tgz" + }, + "0.1.2": { + "shasum": "c707c125e52eea4f613cfc2d427ab80da2a2e7df", + "tarball": "http://registry.npmjs.org/dev/-/dev-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "89fdc08705e0e7eaef92d012e26751e4d744322a", + "tarball": "http://registry.npmjs.org/dev/-/dev-0.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/dev/" + }, + "dev-warnings": { + "name": "dev-warnings", + "description": "Additional warnings for standard functions", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "thejh", + "email": "jannhorn@gmail.com" + } + ], + "time": { + "modified": "2011-07-20T13:00:49.584Z", + "created": "2011-07-20T12:07:15.130Z", + "1.0.0": "2011-07-20T12:07:15.834Z", + "1.0.1": "2011-07-20T13:00:49.584Z" + }, + "author": { + "name": "Jann Horn", + "email": "jannhorn@googlemail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/thejh/node-dev-warnings.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/dev-warnings/1.0.0", + "1.0.1": "http://registry.npmjs.org/dev-warnings/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "55fd030c9a1c79c1af4ffa19ab9ab0f25a94544e", + "tarball": "http://registry.npmjs.org/dev-warnings/-/dev-warnings-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "b27fc2fbbe100050f9003b915e5ecbb98b1f63c2", + "tarball": "http://registry.npmjs.org/dev-warnings/-/dev-warnings-1.0.1.tgz" + } + }, + "keywords": [ + "warn", + "warning", + "debug", + "dev" + ], + "url": "http://registry.npmjs.org/dev-warnings/" + }, + "devnull": { + "name": "devnull", + "description": "A simple logger with automatic function detection.", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "V1", + "email": "info@3rd-Eden.com" + } + ], + "time": { + "modified": "2011-12-09T23:10:46.430Z", + "created": "2011-11-16T22:20:46.267Z", + "0.0.1": "2011-11-16T22:20:48.804Z", + "0.0.2": "2011-11-16T22:49:38.044Z", + "0.0.3": "2011-11-27T23:15:32.166Z", + "0.0.4": "2011-12-09T23:10:46.430Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/observing/devnull.git" + }, + "author": { + "name": "Arnout Kazemier", + "email": "info@3rd-Eden.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/devnull/0.0.1", + "0.0.2": "http://registry.npmjs.org/devnull/0.0.2", + "0.0.3": "http://registry.npmjs.org/devnull/0.0.3", + "0.0.4": "http://registry.npmjs.org/devnull/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "9e5b0e63a8ddc3eadae59b0ff55b38d03e5a4c27", + "tarball": "http://registry.npmjs.org/devnull/-/devnull-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "9ea7fe18ed4d06f4b415ea4fe909560072848097", + "tarball": "http://registry.npmjs.org/devnull/-/devnull-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "fcf9d6e37854bb27b8af33ac7b39c15542b70d3f", + "tarball": "http://registry.npmjs.org/devnull/-/devnull-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "736ddf4ea1848333ab1ce61f22f0a670bad744d1", + "tarball": "http://registry.npmjs.org/devnull/-/devnull-0.0.4.tgz" + } + }, + "keywords": [ + "log", + "logger", + "logging", + "dev/null" + ], + "url": "http://registry.npmjs.org/devnull/" + }, + "dhcpjs": { + "name": "dhcpjs", + "description": "DHCP client and server APIs", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "apaprocki", + "email": "andrew@ishiboo.com" + } + ], + "time": { + "modified": "2011-09-12T13:46:58.810Z", + "created": "2011-09-12T13:46:58.408Z", + "0.1.0": "2011-09-12T13:46:58.810Z" + }, + "author": { + "name": "Andrew Paprocki" + }, + "repository": { + "type": "git", + "url": "git://github.com/apaprocki/node-ldapjs.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/dhcpjs/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "6d04c5f8e2a63af40805d21f28d13ca117016ece", + "tarball": "http://registry.npmjs.org/dhcpjs/-/dhcpjs-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/dhcpjs/" + }, + "dht": { + "name": "dht", + "description": "DHT implementation (http://bittorrent.org/beps/bep_0005.html)", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "stbuehler", + "email": "stbuehler@lighttpd.net" + } + ], + "time": { + "modified": "2010-12-23T15:18:47.472Z", + "created": "2010-12-23T15:18:46.952Z", + "0.0.2": "2010-12-23T15:18:47.472Z" + }, + "author": { + "name": "Stefan Bühler", + "email": "stbuehler@lighttpd.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/stbuehler/node-dht.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/dht/0.0.2" + }, + "dist": { + "0.0.2": { + "shasum": "7a0463b32e239809dad4faef2a4287c4faf51bfa", + "tarball": "http://registry.npmjs.org/dht/-/dht-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/dht/" + }, + "dht-bencode": { + "name": "dht-bencode", + "description": "bencoding with Buffers instead of strings", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "stbuehler", + "email": "stbuehler@lighttpd.net" + } + ], + "time": { + "modified": "2011-08-08T20:41:37.794Z", + "created": "2011-01-29T18:32:32.408Z", + "0.1.1": "2011-01-29T18:32:33.023Z", + "0.1.2": "2011-08-08T20:41:37.794Z" + }, + "author": { + "name": "Stefan Bühler", + "email": "stbuehler@lighttpd.net", + "url": "based on implementation from Anton Ekblad" + }, + "repository": { + "type": "git", + "url": "git://github.com/stbuehler/nodejs-dht-bencode.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/dht-bencode/0.1.1", + "0.1.2": "http://registry.npmjs.org/dht-bencode/0.1.2" + }, + "dist": { + "0.1.1": { + "shasum": "d8a27d92eadd615b0702d7d19dd04ad6abdbe582", + "tarball": "http://registry.npmjs.org/dht-bencode/-/dht-bencode-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "a6800bb51557a2796a0401b95fdf0741cb0342b5", + "tarball": "http://registry.npmjs.org/dht-bencode/-/dht-bencode-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/dht-bencode/" + }, + "di": { + "name": "di", + "description": "Simple dependency injection for create.js", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "manuelstofer", + "email": "manuelstofer@gmail.com" + } + ], + "time": { + "modified": "2011-09-27T21:35:52.778Z", + "created": "2011-09-26T18:00:33.446Z", + "0.0.2": "2011-09-26T18:00:34.638Z", + "0.0.3": "2011-09-26T18:04:31.615Z", + "0.0.4": "2011-09-26T19:29:08.079Z", + "0.0.5": "2011-09-27T21:35:52.778Z" + }, + "author": { + "name": "Manuel Stofer", + "email": "manuelstofer@gmail.com", + "url": "https://github.com/manuelstofer" + }, + "repository": { + "type": "git", + "url": "git://github.com/manuelstofer/di.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/di/0.0.2", + "0.0.3": "http://registry.npmjs.org/di/0.0.3", + "0.0.4": "http://registry.npmjs.org/di/0.0.4", + "0.0.5": "http://registry.npmjs.org/di/0.0.5" + }, + "dist": { + "0.0.2": { + "shasum": "be5a3798a9d54af4cb0ff5b498a695cade95f0e1", + "tarball": "http://registry.npmjs.org/di/-/di-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "364e456d1da99b0053ccb24427893d0e1c7f41b3", + "tarball": "http://registry.npmjs.org/di/-/di-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "e618d391fa771911076a3a65a53c8bb3bf9b0a83", + "tarball": "http://registry.npmjs.org/di/-/di-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "a3cfc46ac624479c97fb8f33af3f7dc3a4e14791", + "tarball": "http://registry.npmjs.org/di/-/di-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/di/" + }, + "dialect": { + "name": "dialect", + "description": "Translations manager for nodejs", + "dist-tags": { + "latest": "1.0.3" + }, + "maintainers": [ + { + "name": "masylum", + "email": "masylum@gmail.com" + } + ], + "author": { + "name": "Pau Ramon", + "email": "masylum@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/masylum/dialect.git" + }, + "time": { + "modified": "2011-11-10T18:33:55.486Z", + "created": "2011-04-13T20:28:56.375Z", + "0.0.4": "2011-04-13T20:28:56.375Z", + "0.0.5": "2011-04-13T20:28:56.375Z", + "1.0.0": "2011-04-13T20:28:56.375Z", + "1.0.1": "2011-05-31T08:13:37.911Z", + "1.0.2": "2011-06-11T15:28:14.078Z", + "1.0.3": "2011-11-10T18:33:55.486Z" + }, + "versions": { + "0.0.4": "http://registry.npmjs.org/dialect/0.0.4", + "0.0.5": "http://registry.npmjs.org/dialect/0.0.5", + "1.0.0": "http://registry.npmjs.org/dialect/1.0.0", + "1.0.1": "http://registry.npmjs.org/dialect/1.0.1", + "1.0.2": "http://registry.npmjs.org/dialect/1.0.2", + "1.0.3": "http://registry.npmjs.org/dialect/1.0.3" + }, + "dist": { + "0.0.4": { + "tarball": "http://registry.npmjs.org/dialect/-/dialect-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://registry.npmjs.org/dialect/-/dialect-0.0.5.tgz" + }, + "1.0.0": { + "shasum": "e225d934b2f870e11e19a71d87771503e7f10f6c", + "tarball": "http://registry.npmjs.org/dialect/-/dialect-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "080ee435748edf72839623e5786532afb11d6ff1", + "tarball": "http://registry.npmjs.org/dialect/-/dialect-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "b7348773b7a35067a7f5b43acfdc1c738bcf89db", + "tarball": "http://registry.npmjs.org/dialect/-/dialect-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "a0f9dfb8773488d60f4e5580a27f79cc828aa6a2", + "tarball": "http://registry.npmjs.org/dialect/-/dialect-1.0.3.tgz" + } + }, + "keywords": [ + "i18n", + "l10n" + ], + "url": "http://registry.npmjs.org/dialect/" + }, + "dialect-http": { + "name": "dialect-http", + "description": "Backend to manage your dialect translations", + "dist-tags": { + "latest": "1.1.3" + }, + "maintainers": [ + { + "name": "masylum", + "email": "masylum@gmail.com" + } + ], + "time": { + "modified": "2011-11-10T23:59:25.725Z", + "created": "2011-04-13T20:26:20.715Z", + "1.0.0": "2011-04-13T20:26:21.878Z", + "1.0.1": "2011-04-13T20:45:15.674Z", + "1.0.2": "2011-04-24T17:10:08.336Z", + "1.0.3": "2011-04-24T17:15:52.346Z", + "1.0.4": "2011-05-31T08:21:58.750Z", + "1.0.5": "2011-06-11T15:55:04.175Z", + "1.1.0": "2011-07-05T12:16:04.618Z", + "1.1.1": "2011-07-15T15:50:48.749Z", + "1.1.2": "2011-08-16T10:55:23.242Z", + "1.1.3": "2011-11-10T23:59:25.725Z" + }, + "author": { + "name": "Pau Ramon", + "email": "masylum@gmail.com" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/dialect-http/1.0.0", + "1.0.1": "http://registry.npmjs.org/dialect-http/1.0.1", + "1.0.2": "http://registry.npmjs.org/dialect-http/1.0.2", + "1.0.3": "http://registry.npmjs.org/dialect-http/1.0.3", + "1.0.4": "http://registry.npmjs.org/dialect-http/1.0.4", + "1.0.5": "http://registry.npmjs.org/dialect-http/1.0.5", + "1.1.0": "http://registry.npmjs.org/dialect-http/1.1.0", + "1.1.1": "http://registry.npmjs.org/dialect-http/1.1.1", + "1.1.2": "http://registry.npmjs.org/dialect-http/1.1.2", + "1.1.3": "http://registry.npmjs.org/dialect-http/1.1.3" + }, + "dist": { + "1.0.0": { + "shasum": "d426833c23f964114bccc12aec66f2e119b0aa45", + "tarball": "http://registry.npmjs.org/dialect-http/-/dialect-http-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "43c927c1860325458cff3b721106d88c6e617450", + "tarball": "http://registry.npmjs.org/dialect-http/-/dialect-http-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "15f4fd0bcc895bd148d7b9d5f8c3166252c8a880", + "tarball": "http://registry.npmjs.org/dialect-http/-/dialect-http-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "5ade37d3f21f836788c5acbb3b7301318f117df2", + "tarball": "http://registry.npmjs.org/dialect-http/-/dialect-http-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "374ab5457447cd0381236fb263f5d579fed031d4", + "tarball": "http://registry.npmjs.org/dialect-http/-/dialect-http-1.0.4.tgz" + }, + "1.0.5": { + "shasum": "8b317103084a1504c4fc3b8e7b73a6eeab86a30c", + "tarball": "http://registry.npmjs.org/dialect-http/-/dialect-http-1.0.5.tgz" + }, + "1.1.0": { + "shasum": "f2e4d88244cb57b43855ea5950139faed1d37028", + "tarball": "http://registry.npmjs.org/dialect-http/-/dialect-http-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "320264634391f6be9d061263a5ab4f81c070fc7d", + "tarball": "http://registry.npmjs.org/dialect-http/-/dialect-http-1.1.1.tgz" + }, + "1.1.2": { + "shasum": "c1fd98ef3bf3950d1e504e915ae514aae9205456", + "tarball": "http://registry.npmjs.org/dialect-http/-/dialect-http-1.1.2.tgz" + }, + "1.1.3": { + "shasum": "a03eef621d0b5551e97a7bf5422c04141b4678b9", + "tarball": "http://registry.npmjs.org/dialect-http/-/dialect-http-1.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/dialect-http/" + }, + "dice-roll": { + "name": "dice-roll", + "description": "A basic A/B test library", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "jga", + "email": "me@jga.me" + } + ], + "time": { + "modified": "2011-10-14T21:13:41.129Z", + "created": "2011-10-14T18:09:35.772Z", + "0.0.1": "2011-10-14T18:09:36.426Z", + "0.0.2": "2011-10-14T21:13:41.129Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/jgallen23/dice-roll.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/dice-roll/0.0.1", + "0.0.2": "http://registry.npmjs.org/dice-roll/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "e93c1c5be38a51a859577a33da02bd831f7f2cd5", + "tarball": "http://registry.npmjs.org/dice-roll/-/dice-roll-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "7a2eb39a41f07097e19d0ac8d14d20675d757b52", + "tarball": "http://registry.npmjs.org/dice-roll/-/dice-roll-0.0.2.tgz" + } + }, + "keywords": [ + "ender", + "testing", + "ab" + ], + "url": "http://registry.npmjs.org/dice-roll/" + }, + "dicks": { + "name": "dicks", + "description": "Prints an arbitrary number of ASCII dicks (default is 5). (Now with an async api!)", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "bshagnasty", + "email": "dicks@libernil.org" + } + ], + "author": { + "name": "Boliver T. Shagnasty", + "email": "dicks@libernil.org" + }, + "versions": { + "0.0.4": "http://registry.npmjs.org/dicks/0.0.4" + }, + "dist": { + "0.0.4": { + "shasum": "95e8fef8e6a69c59686ae38907380a7b531e23f6", + "tarball": "http://registry.npmjs.org/dicks/-/dicks-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/dicks/" + }, + "diet": { + "name": "diet", + "description": "put your images on a diet - resize and compress them", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "jga", + "email": "me@jga.me" + } + ], + "time": { + "modified": "2011-11-13T21:07:20.479Z", + "created": "2011-11-13T20:21:47.128Z", + "0.0.2": "2011-11-13T20:21:48.276Z", + "0.0.3": "2011-11-13T21:07:20.479Z" + }, + "author": { + "name": "Greg Allen", + "email": "@jgaui", + "url": "http://jga.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/jgallen23/node-diet.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/diet/0.0.2", + "0.0.3": "http://registry.npmjs.org/diet/0.0.3" + }, + "dist": { + "0.0.2": { + "shasum": "f5c74840013dbd7635f89a02494a9c9a91e8c3c8", + "tarball": "http://registry.npmjs.org/diet/-/diet-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "d460900587a576d7212a0f4134f78077eceeb887", + "tarball": "http://registry.npmjs.org/diet/-/diet-0.0.3.tgz" + } + }, + "keywords": [ + "image", + "resize", + "compress", + "performance" + ], + "url": "http://registry.npmjs.org/diet/" + }, + "diff": { + "name": "diff", + "description": "A javascript text diff implementation.", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "kpdecker", + "email": "kpdecker@gmail.com" + } + ], + "time": { + "modified": "2011-08-22T07:18:49.539Z", + "created": "2011-03-29T17:19:02.655Z", + "1.0.0": "2011-03-29T17:19:02.881Z", + "1.0.1": "2011-05-08T17:51:33.752Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/kpdecker/jsdiff.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/diff/1.0.0", + "1.0.1": "http://registry.npmjs.org/diff/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "aa6fcaaaa3c05cdf388f08dafeabd5609d11e8bc", + "tarball": "http://registry.npmjs.org/diff/-/diff-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "22c67119000a77e604a1e59cfe197db7a0d2ed46", + "tarball": "http://registry.npmjs.org/diff/-/diff-1.0.1.tgz" + } + }, + "keywords": [ + "diff", + "javascript" + ], + "url": "http://registry.npmjs.org/diff/" + }, + "diff_match_patch": { + "name": "diff_match_patch", + "description": "node module package of the Neil Fraser's diff_match_patch javascript library", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "lfborjas", + "email": "me@lfborjas.com" + } + ], + "author": { + "name": "Neil Fraser" + }, + "repository": { + "type": "git", + "url": "http://github.com/lfborjas/node_diff_match_patch.git" + }, + "time": { + "modified": "2011-04-09T19:01:43.885Z", + "created": "2011-04-09T19:01:43.885Z", + "0.1.0": "2011-04-09T19:01:43.885Z", + "0.1.1": "2011-04-09T19:01:43.885Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/diff_match_patch/0.1.0", + "0.1.1": "http://registry.npmjs.org/diff_match_patch/0.1.1" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/diff_match_patch/-/diff_match_patch-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "d3f14d5b76fb4b5a9cf44706261dadb5bd97edbc", + "tarball": "http://registry.npmjs.org/diff_match_patch/-/diff_match_patch-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/diff_match_patch/" + }, + "diffbot": { + "name": "diffbot", + "description": "Node.js wrapper for the Diffbot Article and Frontpage APIs", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "ecto", + "email": "diffference@gmail.com" + } + ], + "time": { + "modified": "2011-09-21T17:13:09.581Z", + "created": "2011-09-21T17:13:09.137Z", + "0.1.0": "2011-09-21T17:13:09.581Z" + }, + "author": { + "name": "Mark Bao", + "email": "mark@markbao.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/markbao/node-diffbot.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/diffbot/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "c672ed1c4fcfb8a1a50a1a1084b69ee3c1070108", + "tarball": "http://registry.npmjs.org/diffbot/-/diffbot-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/diffbot/" + }, + "digest": { + "name": "digest", + "description": "HTTP Digest authentication for NodeJS", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "contra", + "email": "contra@australia.edu" + } + ], + "time": { + "modified": "2011-10-04T03:41:13.540Z", + "created": "2011-09-05T20:21:54.688Z", + "0.0.1": "2011-09-05T20:21:55.868Z", + "0.0.2": "2011-09-07T22:55:19.021Z", + "0.0.3": "2011-09-17T09:53:23.455Z", + "0.0.4": "2011-10-04T03:41:13.540Z" + }, + "author": { + "name": "Fractal", + "email": "contact@wearefractal.com", + "url": "http://wearefractal.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/wearefractal/node-digest.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/digest/0.0.1", + "0.0.2": "http://registry.npmjs.org/digest/0.0.2", + "0.0.3": "http://registry.npmjs.org/digest/0.0.3", + "0.0.4": "http://registry.npmjs.org/digest/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "3a61f0ada0c0d5219d36ca7e530e60ac213451da", + "tarball": "http://registry.npmjs.org/digest/-/digest-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "7534afbffa9536a12140e8c22a4dbabc8695d21f", + "tarball": "http://registry.npmjs.org/digest/-/digest-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "0deafba368636877c15c8abb3b09b8107c1bd9a9", + "tarball": "http://registry.npmjs.org/digest/-/digest-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "fe6a26755732d02be2a4769009cf4cf18e8d08f9", + "tarball": "http://registry.npmjs.org/digest/-/digest-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/digest/" + }, + "dingbats": { + "name": "dingbats", + "description": "A collection of obscure unicode characters", + "dist-tags": { + "latest": "0.0.0" + }, + "readme": "# dingbats\n\nObscure unicode characters for fun and profit\n\n## Examples:\\\n\n > var d = require(\"./dingbats\");\n > d.alert + \" WARNING: LETHAL LEVELS OF AWESOME\"\n '⚠ WARNING: LETHAL LEVELS OF AWESOME'\n > \"Weather in SF: \"+d.rain\n 'Weather in SF: ☔'\n > \"BERKELEY CITY LIMITS\\n\" + d.radioactive + \" NUCLEAR FREE ZONE\"\n 'BERKELEY CITY LIMITS\\n☢ NUCLEAR FREE ZONE'\n > d.int+\"xyz\"+d.partial + \"x\" + d.partial + \"y\" + d.partial + \"z\"\n '∫xyz∂x∂y∂z'\n > [d.skull, d.recycle, d.snowman, d['``'], d.lesbian, d.star, d.yinyang].join(\", \")\n '☠, ♲, ☃, ❝, ⚢, ★, ☯'\n\n## api:\n\nModule.exports is *just an object*, with keys being in ASCII and values being from some of the more interesting parts of unicode.\n\nToo see what's included, just read the file! I promise, it's nothing special.\n\n## Contribute:\n\nHave a fun character in mind? PLEASE add it. Just send me a pull request!\n\n## License:\n\nMIT/X11.\n", + "maintainers": [ + { + "name": "jesusabdullah", + "email": "josh.holbrook@gmail.com" + } + ], + "time": { + "modified": "2011-11-20T07:28:54.376Z", + "created": "2011-11-20T07:28:52.517Z", + "0.0.0": "2011-11-20T07:28:54.376Z" + }, + "author": { + "name": "Joshua Holbrook", + "email": "josh@nodejitsu.com", + "url": "http://jesusabdullah.github.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:jesusabdullah/node-dingbats.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/dingbats/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "c4e1b3c6dbae3bba3e6a5dd609377a65bd17c722", + "tarball": "http://registry.npmjs.org/dingbats/-/dingbats-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/dingbats/" + }, + "dir": { + "name": "dir", + "description": "Firebug-like dir() for Node.", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "aseemk", + "email": "aseem.kishore@gmail.com" + } + ], + "time": { + "modified": "2011-04-09T19:15:26.080Z", + "created": "2011-04-06T11:35:37.323Z", + "0.1.0": "2011-04-06T11:35:37.843Z", + "0.1.1": "2011-04-06T12:56:20.297Z", + "0.1.2": "2011-04-09T19:15:26.080Z" + }, + "author": { + "name": "Aseem Kishore", + "email": "aseem.kishore@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/aseemk/node-dir.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/dir/0.1.0", + "0.1.1": "http://registry.npmjs.org/dir/0.1.1", + "0.1.2": "http://registry.npmjs.org/dir/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "2923efc90ae494d0ed5738a4b1c8ed942848f1e1", + "tarball": "http://registry.npmjs.org/dir/-/dir-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "63931517ba46c045738e7bdee34281c0079b74a9", + "tarball": "http://registry.npmjs.org/dir/-/dir-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "beb2a2d8ff1000891a7b06192de29cf22c0d3461", + "tarball": "http://registry.npmjs.org/dir/-/dir-0.1.2.tgz" + } + }, + "keywords": [ + "dir", + "shell", + "firebug", + "util", + "inspect" + ], + "url": "http://registry.npmjs.org/dir/" + }, + "dir-watcher": { + "name": "dir-watcher", + "description": "A nodejs library that continuously watches for file changes in specified directories and their subdirectories", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "khoomeister", + "email": "chris.khoo@gmail.com" + } + ], + "time": { + "modified": "2011-09-06T01:59:27.966Z", + "created": "2011-08-31T18:36:07.314Z", + "0.0.1": "2011-08-31T18:36:13.036Z", + "0.0.2": "2011-09-02T04:29:10.608Z", + "0.0.3": "2011-09-02T14:05:05.351Z", + "0.0.4": "2011-09-03T01:42:15.616Z", + "0.0.5": "2011-09-03T10:31:20.213Z" + }, + "author": { + "name": "khoomeister" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/dir-watcher/0.0.1", + "0.0.2": "http://registry.npmjs.org/dir-watcher/0.0.2", + "0.0.3": "http://registry.npmjs.org/dir-watcher/0.0.3", + "0.0.4": "http://registry.npmjs.org/dir-watcher/0.0.4", + "0.0.5": "http://registry.npmjs.org/dir-watcher/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "761095080f8884328c4ccd52c613fbc0c2b61d81", + "tarball": "http://registry.npmjs.org/dir-watcher/-/dir-watcher-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "9b1a65c5d0cd8ef7ffab785d9795152a5bf2805a", + "tarball": "http://registry.npmjs.org/dir-watcher/-/dir-watcher-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "85fe2a3edd01a862ba4bc1b50fe18583882ebc29", + "tarball": "http://registry.npmjs.org/dir-watcher/-/dir-watcher-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "c20c939426d9967e07eb95828c0a2a7bf2c2edf0", + "tarball": "http://registry.npmjs.org/dir-watcher/-/dir-watcher-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "a156199bc64d15047b2ec9047d4224a4bb43dccb", + "tarball": "http://registry.npmjs.org/dir-watcher/-/dir-watcher-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/dir-watcher/" + }, + "dir2html": { + "name": "dir2html", + "description": "Render a directory as HTML.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "mcantelon", + "email": "mcantelon@gmail.com" + } + ], + "time": { + "modified": "2011-03-06T04:17:52.879Z", + "created": "2010-12-29T07:14:18.077Z", + "0.0.1": "2010-12-29T07:14:18.302Z", + "0.0.2": "2011-03-06T04:17:52.879Z" + }, + "author": { + "name": "Mike Cantelon", + "email": "mcantelon@gmail.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/mcantelon/node-dir2html.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/dir2html/0.0.1", + "0.0.2": "http://registry.npmjs.org/dir2html/0.0.2" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/dir2html/-/dir2html@0.0.1.tgz" + }, + "0.0.2": { + "shasum": "5909bfb8eceea89c99329b939687fd514a0ffce6", + "tarball": "http://registry.npmjs.org/dir2html/-/dir2html-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/dir2html/" + }, + "directive": { + "name": "directive", + "description": "Parser for simple line delimited files", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "pmuellr", + "email": "pmuellr@gmail.com" + } + ], + "author": { + "name": "Patrick Mueller" + }, + "repository": { + "type": "git", + "url": "git://github.com/pmuellr/directive.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/directive/0.1.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/directive/-/directive-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/directive/" + }, + "director": { + "name": "director", + "description": "A client Side/Server Side Router", + "dist-tags": { + "latest": "1.0.8" + }, + "readme": "# Director [![Build Status](https://secure.travis-ci.org/flatiron/director.png)](http://travis-ci.org/flatiron/director)\n\n# Overview\nDirector is a router. Routing is the process of determining what code to run when a URL is requested. Director works on the client and the server. Director is dependency free, on the client it does not require any other libraries (such as jQuery).\n\n* [Client-Side Routing](#client-side)\n* [Server-Side HTTP Routing](#http-routing)\n* [Server-Side CLI Routing](#cli-routing)\n* [API Documentation](#api-documentation)\n* [Frequently Asked Questions](#faq)\n\n\n## Client-side Routing\nIt simply watches the hash of the URL to determine what to do, for example:\n\n```\nhttp://foo.com/#/bar\n```\n\nClient-side routing (aka hash-routing) allows you to specify some information about the state of the application using the URL. So that when the user visits a specific URL, the application can be transformed accordingly. \n\n\n\nHere is a simple example:\n\n```html\n \n \n \n \n \n \n \n \n \n```\n\nDirector works great with your favorite DOM library, such as jQuery.\n\n```html\n \n \n \n \n \n \n \n

Author Name
\n
Book1, Book2, Book3
\n \n \n```\n\nYou can find a browser-specific build of `director` [here][0] which has all of the server code stripped away.\n\n\n## Server-Side HTTP Routing\n\nDirector handles routing for HTTP requests similar to `journey` or `express`: \n\n```js\n //\n // require the native http module, as well as director.\n //\n var http = require('http'),\n director = require('director');\n\n //\n // create some logic to be routed to.\n //\n function helloWorld(route) {\n this.res.writeHead(200, { 'Content-Type': 'text/plain' })\n this.res.end('hello world from (' + route + ')');\n }\n\n //\n // define a routing table.\n //\n var router = new director.http.Router({\n '/hello': {\n get: helloWorld\n }\n });\n\n //\n // stup a server and when there is a request, dispatch the\n // route that was requestd in the request object.\n //\n var server = http.createServer(function (req, res) {\n router.dispatch(req, res, function (err) {\n if (err) {\n res.writeHead(404);\n res.end();\n }\n });\n });\n\n //\n // You can also do ad-hoc routing, similar to `journey` or `express`.\n // This can be done with a string or a regexp.\n //\n router.get('/bonjour', helloWorld);\n router.get(/hola/, helloWorld);\n\n //\n // set the server to listen on port `8080`.\n //\n server.listen(8080);\n```\n\n\n## CLI Routing\n\nDirector supports Command Line Interface routing. Routes for cli options are based on command line input (i.e. `process.argv`) instead of a URL.\n\n``` js\n var director = require('director');\n \n var router = new director.cli.Router();\n \n router.on('create', function () {\n console.log('create something');\n });\n \n router.on(/destroy/, function () {\n console.log('destroy something');\n });\n```\n\n\n# API Documentation\n\n* [Constructor](#constructor)\n* [Routing Table](#routing-table)\n* [Adhoc Routing](#adhoc-routing)\n* [Scoped Routing](#scoped-routing)\n* [Routing Events](#routing-events)\n* [Configuration](#configuration)\n* [URL Matching](#url-matching)\n* [URL Params](#url-params)\n* [Route Recursion](#route-recursion)\n* [Async Routing](#async-routing)\n* [Resources](#resources)\n* [Instance Methods](#instance-methods)\n\n\n## Constructor\n\n``` js\n var router = Router(routes);\n```\n\n\n## Routing Table\n\nAn object literal that contains nested route definitions. A potentially nested set of key/value pairs. The keys in the object literal represent each potential part of the URL. The values in the object literal contain references to the functions that should be associated with them. *bark* and *meow* are two functions that you have defined in your code.\n\n``` js\n //\n // Assign routes to an object literal.\n //\n var routes = { \n //\n // a route which assigns the function `bark`.\n //\n '/dog': bark,\n //\n // a route which assigns the functions `meow` and `scratch`.\n //\n '/cat': [meow, scratch]\n };\n\n //\n // Instantiate the router.\n //\n var router = Router(routes); \n```\n\n\n## Adhoc Routing\n\nWhen developing large client-side or server-side applications it is not always possible to define routes in one location. Usually individual decoupled components register their own routes with the application router. We refer to this as _Adhoc Routing._ Lets take a look at the API `director` exposes for adhoc routing:\n\n**Client-side Routing**\n\n``` js\n var router = new Router().init();\n \n router.on('/some/resource', function () {\n //\n // Do something on `/#/some/resource`\n //\n });\n```\n\n**HTTP Routing**\n\n``` js\n var router = new director.http.Router();\n \n router.get(/\\/some\\/resource/, function () {\n //\n // Do something on an GET to `/some/resource` \n //\n });\n```\n\n\n## Scoped Routing\n\nIn large web appliations, both [Client-side](#client-side) and [Server-side](#server-side), routes are often scoped within a few individual resources. Director exposes a simple way to do this for [Adhoc Routing](#adhoc-routing) scenarios:\n\n``` js\n var router = new director.http.Router();\n \n //\n // Create routes inside the `/users` scope.\n //\n router.path(/\\/users\\/(\\w+)/, function () {\n //\n // The `this` context of the function passed to `.path()`\n // is the Router itself.\n //\n \n this.post(function (id) {\n //\n // Create the user with the specified `id`.\n //\n });\n \n this.get(function (id) {\n //\n // Retreive the user with the specified `id`.\n //\n });\n \n this.get(/\\/friends/, function (id) {\n //\n // Get the friends for the user with the specified `id`.\n //\n });\n });\n```\n\n\n## Routing Events\n\nIn `director`, a \"routing event\" is a named property in the [Routing Table](#routing-table) which can be assigned to a function or an Array of functions to be called when a route is matched in a call to `router.dispatch()`.\n\n* **on:** A function or Array of functions to execute when the route is matched.\n* **before:** A function or Array of functions to execute before calling the `on` method(s).\n\n**Client-side only**\n\n* **after:** A function or Array of functions to execute when leaving a particular route.\n* **once:** A function or Array of functions to execute only once for a particular route.\n\n\n## Configuration\n\nGiven the flexible nature of `director` there are several options available for both the [Client-side](#client-side) and [Server-side](#server-side). These options can be set using the `.configure()` method:\n\n``` js\n var router = new director.Router(routes).configure(options);\n```\n\nThe `options` are:\n\n* **recurse:** Controls [route recursion](#route-recursion). Use `forward`, `backward`, or `false`. Default is `false` Client-side, and `backward` Server-side. \n* **strict:** If set to `false`, then trailing slashes (or other delimiters) are allowed in routes. Default is `true`.\n* **async:** Controls [async routing](#async-routing). Use `true` or `false`. Default is `false`.\n* **delimiter:** Character separator between route fragments. Default is `/`.\n* **notfound:** A function to call if no route is found on a call to `router.dispatch()`.\n* **on:** A function (or list of functions) to call on every call to `router.dispatch()` when a route is found.\n* **before:** A function (or list of functions) to call before every call to `router.dispatch()` when a route is found.\n\n**Client-side only**\n\n* **resource:** An object to which string-based routes will be bound. This can be especially useful for late-binding to route functions (such as async client-side requires).\n* **after:** A function (or list of functions) to call when a given route is no longer the active route.\n\n\n## URL Matching\n\n``` js\n var router = Router({\n //\n // given the route '/dog/yella'.\n //\n '/dog': {\n '/:color': {\n //\n // this function will return the value 'yella'.\n //\n on: function (color) { console.log(color) }\n }\n }\n });\n```\n\nRoutes can sometimes become very complex, `simple/:tokens` don't always suffice. Director supports regular expressions inside the route names. The values captured from the regular expressions are passed to your listener function.\n\n``` js\n var router = Router({ \n //\n // given the route '/hello/world'.\n //\n '/hello': {\n '/(\\\\w+)': {\n //\n // this function will return the value 'world'.\n //\n on: function (who) { console.log(who) }\n }\n }\n });\n```\n\n``` js\n var router = Router({\n //\n // given the route '/hello/world/johny/appleseed'.\n //\n '/hello': {\n '/world/?([^\\/]*)\\/([^\\/]*)/?': function (a, b) {\n console.log(a, b);\n }\n }\n });\n```\n\n\n## URL Parameters\n\nWhen you are using the same route fragments it is more descriptive to define these fragments by name and then use them in your [Routing Table](#routing-table) or [Adhoc Routes](#adhoc-routing). Consider a simple example where a `userId` is used repeatedly. \n\n``` js\n //\n // Create a router. This could also be director.cli.Router() or \n // director.http.Router().\n //\n var router = new director.Router();\n \n //\n // A route could be defined using the `userId` explicitly.\n //\n router.on(/([\\w-_]+)/, function (userId) { });\n \n //\n // Define a shorthand for this fragment called `userId`.\n //\n router.param('userId', /([\\\\w\\\\-]+)/);\n \n //\n // Now multiple routes can be defined with the same\n // regular expression.\n //\n router.on('/anything/:userId', function (userId) { });\n router.on('/something-else/:userId', function (userId) { });\n```\n\n\n## Route Recursion\n\nCan be assigned the value of `forward` or `backward`. The recurse option will determine the order in which to fire the listeners that are associated with your routes. If this option is NOT specified or set to null, then only the listeners associated with an exact match will be fired.\n\n### No recursion, with the URL /dog/angry\n\n``` js\n var routes = {\n '/dog': {\n '/angry': {\n //\n // Only this method will be fired.\n //\n on: growl\n },\n on: bark\n }\n };\n\n var router = Router(routes);\n```\n\n### Recursion set to `backward`, with the URL /dog/angry\n\n``` js\n var routes = {\n '/dog': {\n '/angry': {\n //\n // This method will be fired first.\n //\n on: growl \n },\n //\n // This method will be fired second.\n //\n on: bark\n }\n };\n\n var router = Router(routes).configure({ recurse: 'backward' });\n```\n\n### Recursion set to `forward`, with the URL /dog/angry\n\n``` js\n var routes = {\n '/dog': {\n '/angry': {\n //\n // This method will be fired second.\n //\n on: growl\n },\n //\n // This method will be fired first.\n //\n on: bark\n }\n };\n\n var router = Router(routes).configure({ recurse: 'forward' });\n```\n\n### Breaking out of recursion, with the URL /dog/angry\n\n``` js\n var routes = {\n '/dog': {\n '/angry': {\n //\n // This method will be fired first.\n //\n on: function() { return false; } \n },\n //\n // This method will not be fired.\n //\n on: bark \n }\n };\n \n //\n // This feature works in reverse with recursion set to true.\n //\n var router = Router(routes).configure({ recurse: 'backward' });\n```\n\n\n## Async Routing\n\nBefore diving into how Director exposes async routing, you should understand [Route Recursion](#route-recursion). At it's core route recursion is about evaluating a series of functions gathered when traversing the [Routing Table](#routing-table). \n\nNormally this series of functions is evaluated synchronously. In async routing, these functions are evaluated asynchronously. Async routing can be extremely useful both on the client-side and the server-side:\n\n* **Client-side:** To ensure an animation or other async operations (such as HTTP requests for authentication) have completed before continuing evaluation of a route.\n* **Server-side:** To ensure arbitrary async operations (such as performing authentication) have completed before continuing the evaluation of a route.\n\nThe method signatures for route functions in synchronous and asynchronous evaluation are different: async route functions take an additional `next()` callback.\n\n### Synchronous route functions\n\n``` js\n var router = new director.Router();\n \n router.on('/:foo/:bar/:bazz', function (foo, bar, bazz) {\n //\n // Do something asynchronous with `foo`, `bar`, and `bazz`.\n //\n });\n```\n\n### Asynchronous route functions\n\n``` js\n var router = new director.http.Router().configure({ async: true });\n \n router.on('/:foo/:bar/:bazz', function (foo, bar, bazz, next) {\n //\n // Go do something async, and determine that routing should stop\n //\n next(false);\n });\n```\n\n\n## Resources\n\n**Available on the Client-side only.** An object literal containing functions. If a host object is specified, your route definitions can provide string literals that represent the function names inside the host object. A host object can provide the means for better encapsulation and design.\n\n``` js\n\n var router = Router({\n\n '/hello': {\n '/usa': 'americas',\n '/china': 'asia'\n }\n\n }).configure({ resource: container }).init();\n\n var container = {\n americas: function() { return true; },\n china: function() { return true; }\n };\n\n```\n\n\n## Instance methods\n\n### configure(options)\n* `options` {Object}: Options to configure this instance with.\n\nConfigures the Router instance with the specified `options`. See [Configuration](#configuration) for more documentation.\n\n### param(token, matcher)\n* token {string}: Named parameter token to set to the specified `matcher`\n* matcher {string|Regexp}: Matcher for the specified `token`.\n\nAdds a route fragment for the given string `token` to the specified regex `matcher` to this Router instance. See [URL Parameters](#url-parameters) for more documentation.\n\n### on(method, path, route)\n* `method` {string}: Method to insert within the Routing Table (e.g. `on`, `get`, etc.).\n* `path` {string}: Path within the Routing Table to set the `route` to.\n* `route` {function|Array}: Route handler to invoke for the `method` and `path`.\n\nAdds the `route` handler for the specified `method` and `path` within the [Routing Table](#routing-table). \n\n### path(path, routesFn)\n* `path` {string|Regexp}: Scope within the Routing Table to invoke the `routesFn` within.\n* `routesFn` {function}: Adhoc Routing function with calls to `this.on()`, `this.get()` etc.\n\nInvokes the `routesFn` within the scope of the specified `path` for this Router instance.\n\n### dispatch(method, path[, callback])\n* method {string}: Method to invoke handlers for within the Routing Table\n* path {string}: Path within the Routing Table to match\n* callback {function}: Invoked once all route handlers have been called.\n\nDispatches the route handlers matched within the [Routing Table](#routing-table) for this instance for the specified `method` and `path`.\n\n### mount(routes, path)\n* routes {object}: Partial routing table to insert into this instance.\n* path {string|Regexp}: Path within the Routing Table to insert the `routes` into.\n\nInserts the partial [Routing Table](#routing-table), `routes`, into the Routing Table for this Router instance at the specified `path`.\n\n## Instance methods (Client-side only)\n\n### init()\nInitialize the router, start listening for changes to the URL.\n\n### getState()\nReturns the state object that is relative to the current route.\n\n### getRoute([index])\n* `index` {Number}: The hash value is divided by forward slashes, each section then has an index, if this is provided, only that section of the route will be returned. \n\nReturns the entire route or just a section of it.\n\n### setRoute(route)\n* `route` {String}: Supply a route value, such as `home/stats`. \n\nSet the current route.\n \n### setRoute(start, length)\n* `start` {Number} - The position at which to start removing items.\n* `length` {Number} - The number of items to remove from the route.\n\nRemove a segment from the current route.\n\n### setRoute(index, value)\n* `index` {Number} - The hash value is divided by forward slashes, each section then has an index.\n* `value` {String} - The new value to assign the the position indicated by the first parameter.\n\nSet a segment of the current route.\n\n\n# Frequently Asked Questions\n\n## What About SEO?\n\nIs using a Client-side router a problem for SEO? Yes. If advertising is a requirement, you are probably building a \"Web Page\" and not a \"Web Application\". Director on the client is meant for script-heavy Web Applications.\n\n## Is Director compatible with X?\n\nDirector is known to be Ender.js compatible. However, the project still needs solid cross-browser testing.\n\n# Licence\n\n(The MIT License)\n\nCopyright (c) 2010 Nodejitsu Inc. \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n[0]: http://github.com/flatiron/director\n\n", + "maintainers": [ + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + }, + { + "name": "hij1nx", + "email": "hij1nx@me.com" + } + ], + "time": { + "modified": "2011-12-09T08:04:59.403Z", + "created": "2011-11-22T23:33:14.407Z", + "1.0.2": "2011-11-22T23:33:15.983Z", + "1.0.3": "2011-11-24T04:44:18.764Z", + "1.0.4": "2011-11-28T16:52:53.385Z", + "1.0.5": "2011-11-30T03:02:41.699Z", + "1.0.6": "2011-11-30T04:36:13.473Z", + "1.0.7": "2011-12-06T09:48:26.460Z", + "1.0.8": "2011-12-09T08:04:59.403Z" + }, + "author": { + "name": "Nodejitsu Inc", + "email": "info@nodejitsu.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/flatiron/director.git" + }, + "users": { + "wojohowitz": true + }, + "versions": { + "1.0.2": "http://registry.npmjs.org/director/1.0.2", + "1.0.3": "http://registry.npmjs.org/director/1.0.3", + "1.0.4": "http://registry.npmjs.org/director/1.0.4", + "1.0.5": "http://registry.npmjs.org/director/1.0.5", + "1.0.6": "http://registry.npmjs.org/director/1.0.6", + "1.0.7": "http://registry.npmjs.org/director/1.0.7", + "1.0.8": "http://registry.npmjs.org/director/1.0.8" + }, + "dist": { + "1.0.2": { + "shasum": "40ddb68c405811833b50d44983400a2050efafdd", + "tarball": "http://registry.npmjs.org/director/-/director-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "e4e8a0f8f8ce59d0728015a5ac6f3a67b550f055", + "tarball": "http://registry.npmjs.org/director/-/director-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "29cd0cfc28e6d65b3a683536526b82427c8b3280", + "tarball": "http://registry.npmjs.org/director/-/director-1.0.4.tgz" + }, + "1.0.5": { + "shasum": "72e35c988a2e2b750c9a5031d27f3ae0c0501b09", + "tarball": "http://registry.npmjs.org/director/-/director-1.0.5.tgz" + }, + "1.0.6": { + "shasum": "837a67c5624997bfa5fbf99319e69a98c7e65c8f", + "tarball": "http://registry.npmjs.org/director/-/director-1.0.6.tgz" + }, + "1.0.7": { + "shasum": "5e8349391a245ec74bd333e3f69dd89f80c59ec9", + "tarball": "http://registry.npmjs.org/director/-/director-1.0.7.tgz" + }, + "1.0.8": { + "shasum": "2b0c3a2d45d781ce58d602b95e0c6d6ee6b02ffa", + "tarball": "http://registry.npmjs.org/director/-/director-1.0.8.tgz" + } + }, + "keywords": [ + "URL", + "router", + "http", + "cli", + "flatiron", + "client side" + ], + "url": "http://registry.npmjs.org/director/" + }, + "directory": { + "name": "directory", + "description": "require all of the other paths in the current directory", + "dist-tags": { + "latest": "0.0.6" + }, + "readme": "", + "maintainers": [ + { + "name": "tblobaum", + "email": "tblobaum@gmail.com" + } + ], + "time": { + "modified": "2011-12-06T17:05:09.290Z", + "created": "2011-12-06T13:21:37.174Z", + "0.0.0": "2011-12-06T13:21:38.352Z", + "0.0.1": "2011-12-06T13:27:26.763Z", + "0.0.2": "2011-12-06T13:30:40.501Z", + "0.0.3": "2011-12-06T13:44:35.380Z", + "0.0.4": "2011-12-06T13:46:47.991Z", + "0.0.5": "2011-12-06T13:56:26.154Z", + "0.0.6": "2011-12-06T17:05:09.290Z" + }, + "author": { + "name": "Thomas Blobaum", + "email": "tblobaum@gmail.com", + "url": "https://github.com/tblobaum" + }, + "repository": { + "type": "git", + "url": "git://github.com/tblobaum/node-directory.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/directory/0.0.0", + "0.0.6": "http://registry.npmjs.org/directory/0.0.6" + }, + "dist": { + "0.0.0": { + "shasum": "5793c63d244edf6e89b8aac3bc915a96c6f8875a", + "tarball": "http://registry.npmjs.org/directory/-/directory-0.0.0.tgz" + }, + "0.0.6": { + "shasum": "03fecc67a6e8736ed4d12fd643f390ce1aaeae4e", + "tarball": "http://registry.npmjs.org/directory/-/directory-0.0.6.tgz" + } + }, + "url": "http://registry.npmjs.org/directory/" + }, + "dirsum": { + "name": "dirsum", + "description": "A small library that computes checksums of directory trees", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "mcavage", + "email": "mcavage@gmail.com" + } + ], + "time": { + "modified": "2011-05-04T22:16:50.449Z", + "created": "2011-05-04T16:23:35.936Z", + "0.1.0": "2011-05-04T16:23:36.491Z", + "0.1.1": "2011-05-04T22:16:50.449Z" + }, + "author": { + "name": "Mark Cavage", + "email": "mcavage@gmail.com", + "url": "http://www.joyent.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mcavage/node-dirsum.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/dirsum/0.1.0", + "0.1.1": "http://registry.npmjs.org/dirsum/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "fa9e3beebbdb485c63ada07b30a92a18a356f219", + "tarball": "http://registry.npmjs.org/dirsum/-/dirsum-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "770123ae8c06f6bdd957af8e4e7053570ff73e18", + "tarball": "http://registry.npmjs.org/dirsum/-/dirsum-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/dirsum/" + }, + "dirty": { + "name": "dirty", + "description": "A tiny & fast key value store with append-only disk log. Ideal for apps with < 1 million records.", + "dist-tags": { + "latest": "0.9.5" + }, + "maintainers": [ + { + "name": "felixge", + "email": "felix@debuggable.com" + }, + { + "name": "bentaber", + "email": "ben.taber@gmail.com" + } + ], + "time": { + "modified": "2011-11-28T12:47:27.826Z", + "created": "2011-01-13T12:21:39.554Z", + "0.9.0": "2011-01-13T12:21:39.554Z", + "0.9.1": "2011-01-13T12:21:39.554Z", + "0.9.2": "2011-05-24T13:43:35.345Z", + "0.9.4": "2011-09-16T20:12:01.939Z", + "0.9.5": "2011-11-28T12:47:27.826Z" + }, + "versions": { + "0.9.0": "http://registry.npmjs.org/dirty/0.9.0", + "0.9.1": "http://registry.npmjs.org/dirty/0.9.1", + "0.9.2": "http://registry.npmjs.org/dirty/0.9.2", + "0.9.4": "http://registry.npmjs.org/dirty/0.9.4", + "0.9.5": "http://registry.npmjs.org/dirty/0.9.5" + }, + "dist": { + "0.9.0": { + "tarball": "http://packages:5984/dirty/-/dirty-0.9.0.tgz" + }, + "0.9.1": { + "shasum": "b37e8a2461cb63c89179d39044c6bc86aebdb9c7", + "tarball": "http://registry.npmjs.org/dirty/-/dirty-0.9.1.tgz" + }, + "0.9.2": { + "shasum": "d7cdc97de927c10b42709ddea7148f68f8f6753b", + "tarball": "http://registry.npmjs.org/dirty/-/dirty-0.9.2.tgz" + }, + "0.9.4": { + "shasum": "40f3fc1da510a93b5f49f85e59abca64c78ad5ce", + "tarball": "http://registry.npmjs.org/dirty/-/dirty-0.9.4.tgz" + }, + "0.9.5": { + "shasum": "ecd886cd5df86ee4a727532f87fba1ed219500c1", + "tarball": "http://registry.npmjs.org/dirty/-/dirty-0.9.5.tgz" + } + }, + "url": "http://registry.npmjs.org/dirty/" + }, + "dirty-uuid": { + "name": "dirty-uuid", + "description": "Generates non-RFC compliant unique ids.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "felixge", + "email": "felix@debuggable.com" + } + ], + "time": { + "modified": "2011-07-16T15:01:30.230Z", + "created": "2011-07-16T14:59:16.959Z", + "0.0.1": "2011-07-16T14:59:17.594Z", + "0.0.2": "2011-07-16T15:01:30.230Z" + }, + "author": { + "name": "Felix Geisendörfer", + "email": "felix@debuggable.com", + "url": "http://debuggable.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/felixge/node-dirty-uuid.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/dirty-uuid/0.0.1", + "0.0.2": "http://registry.npmjs.org/dirty-uuid/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "a0f6e141ff807e776840eed12927ac54bea92bd1", + "tarball": "http://registry.npmjs.org/dirty-uuid/-/dirty-uuid-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "9db10df4b37c78197ece3882231d352f99e1d5ac", + "tarball": "http://registry.npmjs.org/dirty-uuid/-/dirty-uuid-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/dirty-uuid/" + }, + "discogs": { + "name": "discogs", + "description": "Simple client for Discogs API", + "dist-tags": { + "latest": "0.3.5" + }, + "maintainers": [ + { + "name": "linus", + "email": "linus@hanssonlarsson.se" + } + ], + "time": { + "modified": "2011-08-28T14:33:25.355Z", + "created": "2011-04-07T21:36:10.728Z", + "0.1.0": "2011-04-07T21:36:11.582Z", + "0.1.1": "2011-04-07T21:43:39.886Z", + "0.2.0": "2011-04-09T10:01:47.655Z", + "0.2.1": "2011-07-21T16:17:39.243Z", + "0.3.0": "2011-07-21T17:21:18.061Z", + "0.3.1": "2011-07-21T17:37:12.711Z", + "0.3.2": "2011-08-27T08:08:24.264Z", + "0.3.3": "2011-08-27T08:17:52.182Z", + "0.3.4": "2011-08-27T22:04:07.771Z", + "0.3.5": "2011-08-28T14:33:25.355Z" + }, + "author": { + "name": "Linus G Thiel", + "email": "linus@hanssonlarsson.se", + "url": "http://hanssonlarsson.se/" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/discogs/0.1.0", + "0.1.1": "http://registry.npmjs.org/discogs/0.1.1", + "0.2.0": "http://registry.npmjs.org/discogs/0.2.0", + "0.2.1": "http://registry.npmjs.org/discogs/0.2.1", + "0.3.0": "http://registry.npmjs.org/discogs/0.3.0", + "0.3.1": "http://registry.npmjs.org/discogs/0.3.1", + "0.3.2": "http://registry.npmjs.org/discogs/0.3.2", + "0.3.3": "http://registry.npmjs.org/discogs/0.3.3", + "0.3.4": "http://registry.npmjs.org/discogs/0.3.4", + "0.3.5": "http://registry.npmjs.org/discogs/0.3.5" + }, + "dist": { + "0.1.0": { + "shasum": "2df94af6b74487a0a71c0dd983f787ac9ae6fa75", + "tarball": "http://registry.npmjs.org/discogs/-/discogs-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "3b89aa35332e875815339de7d793b7c649b0be20", + "tarball": "http://registry.npmjs.org/discogs/-/discogs-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "ae64c317a48c4b99d43514a2d3d3257790c05e68", + "tarball": "http://registry.npmjs.org/discogs/-/discogs-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "08bcf4839294fcf7d3fab65421ac34a154305b76", + "tarball": "http://registry.npmjs.org/discogs/-/discogs-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "f9c6532308f8090c03fcd25a6f39e5d1086a2825", + "tarball": "http://registry.npmjs.org/discogs/-/discogs-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "d5f8b2af4d490e7a78377a071d54b7fae1002653", + "tarball": "http://registry.npmjs.org/discogs/-/discogs-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "8c5c20d44aaf1bb37c25598c04500034fc4b8975", + "tarball": "http://registry.npmjs.org/discogs/-/discogs-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "8b495f2232003d56a24d8928c244cdb70ac540f0", + "tarball": "http://registry.npmjs.org/discogs/-/discogs-0.3.3.tgz" + }, + "0.3.4": { + "shasum": "3f20d27380964854e8ced92910f30a00348840a4", + "tarball": "http://registry.npmjs.org/discogs/-/discogs-0.3.4.tgz" + }, + "0.3.5": { + "shasum": "c6e31f9ef0003f7693b7cac1a6f5ccc54ae2729a", + "tarball": "http://registry.npmjs.org/discogs/-/discogs-0.3.5.tgz" + } + }, + "keywords": [ + "api", + "client", + "discogs" + ], + "url": "http://registry.npmjs.org/discogs/" + }, + "discord-engine": { + "name": "discord-engine", + "description": "A LP/Discworld inspired MUD server running on Node.JS and MooTools.", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "yuffster", + "email": "msteigerwalt@gmail.com" + } + ], + "time": { + "modified": "2011-11-04T08:25:31.909Z", + "created": "2011-11-04T08:17:59.412Z", + "0.2.0": "2011-11-04T08:25:31.909Z" + }, + "author": { + "name": "Michelle Steigerwalt" + }, + "repository": { + "type": "git", + "url": "git://github.com/yuffster/discord-engine.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/discord-engine/0.2.0" + }, + "dist": { + "0.2.0": { + "shasum": "db77175728bdd7f81c9b920722485d861b359141", + "tarball": "http://registry.npmjs.org/discord-engine/-/discord-engine-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/discord-engine/" + }, + "discount": { + "name": "discount", + "description": "C markdown implementation using discount", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "time": { + "modified": "2011-09-13T19:27:09.352Z", + "created": "2010-12-28T17:59:39.082Z", + "0.1.2": "2010-12-28T17:59:39.436Z", + "0.1.3": "2011-04-15T23:23:56.684Z", + "0.2.0": "2011-07-27T15:46:58.491Z", + "0.2.1": "2011-09-13T18:32:54.252Z", + "0.2.2": "2011-09-13T19:27:09.352Z" + }, + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "repository": { + "type": "git", + "url": "git://github.com/visionmedia/node-discount.git" + }, + "versions": { + "0.1.2": "http://registry.npmjs.org/discount/0.1.2", + "0.1.3": "http://registry.npmjs.org/discount/0.1.3", + "0.2.0": "http://registry.npmjs.org/discount/0.2.0", + "0.2.1": "http://registry.npmjs.org/discount/0.2.1", + "0.2.2": "http://registry.npmjs.org/discount/0.2.2" + }, + "dist": { + "0.1.2": { + "shasum": "ddf70564b7f198d9a3f88bc913c11abaec82ae50", + "tarball": "http://registry.npmjs.org/discount/-/discount-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "4ab59de1616dcec4407b9d099303e6a9ca2e252f", + "tarball": "http://registry.npmjs.org/discount/-/discount-0.1.3.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "80b296db2a8e6f9b80d5882675bc8a59c59a58be", + "tarball": "http://registry.npmjs.org/discount/-/discount-0.1.3-0.4-sunos-5.11.tgz" + } + } + }, + "0.2.0": { + "shasum": "6b5685ba0a5f69690278ab82a1e098767d71dac3", + "tarball": "http://registry.npmjs.org/discount/-/discount-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "eec4a90ee0abcf9f43ba63cdfc12c039d03fe723", + "tarball": "http://registry.npmjs.org/discount/-/discount-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "ccee9db73ba043b03579961289d64babf6611b6a", + "tarball": "http://registry.npmjs.org/discount/-/discount-0.2.2.tgz" + } + }, + "url": "http://registry.npmjs.org/discount/" + }, + "discovery": { + "name": "discovery", + "description": "Rss/Atom discovery tool", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "tjgillies", + "email": "tjgillies@gmail.com" + } + ], + "time": { + "modified": "2011-05-03T01:00:26.053Z", + "created": "2011-05-03T01:00:23.728Z", + "0.0.0": "2011-05-03T01:00:26.053Z" + }, + "author": { + "name": "Tyler Gillies", + "email": "tjgillies@gmail.com", + "url": "pdxbrain.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/tjgillies/discovery.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/discovery/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "2cd1ea57ce1479a5f5b5d8ee0cf7f8f726191a40", + "tarball": "http://registry.npmjs.org/discovery/-/discovery-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/discovery/" + }, + "diskcache": { + "name": "diskcache", + "description": "Caches data on disk and optionally in memory.", + "dist-tags": { + "latest": "0.0.14" + }, + "maintainers": [ + { + "name": "joehewitt", + "email": "joe@joehewitt.com" + } + ], + "time": { + "modified": "2011-11-29T09:27:21.202Z", + "created": "2011-07-31T01:30:18.138Z", + "0.0.1": "2011-07-31T01:30:18.742Z", + "0.0.2": "2011-08-26T17:12:58.441Z", + "0.0.3": "2011-08-27T01:06:15.826Z", + "0.0.4": "2011-08-31T20:29:17.192Z", + "0.0.5": "2011-09-01T00:23:34.823Z", + "0.0.6": "2011-09-02T22:21:19.326Z", + "0.0.7": "2011-09-03T07:02:57.137Z", + "0.0.8": "2011-09-03T07:32:37.014Z", + "0.0.9": "2011-09-09T05:44:40.842Z", + "0.0.10": "2011-09-13T03:44:22.858Z", + "0.0.11": "2011-09-15T19:15:45.053Z", + "0.0.12": "2011-09-30T05:34:43.018Z", + "0.0.13": "2011-10-10T07:51:44.192Z", + "0.0.14": "2011-11-29T09:27:21.202Z" + }, + "author": { + "name": "Joe Hewitt", + "email": "joe@joehewitt.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/joehewitt/diskcache.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/diskcache/0.0.1", + "0.0.2": "http://registry.npmjs.org/diskcache/0.0.2", + "0.0.3": "http://registry.npmjs.org/diskcache/0.0.3", + "0.0.4": "http://registry.npmjs.org/diskcache/0.0.4", + "0.0.5": "http://registry.npmjs.org/diskcache/0.0.5", + "0.0.6": "http://registry.npmjs.org/diskcache/0.0.6", + "0.0.7": "http://registry.npmjs.org/diskcache/0.0.7", + "0.0.8": "http://registry.npmjs.org/diskcache/0.0.8", + "0.0.9": "http://registry.npmjs.org/diskcache/0.0.9", + "0.0.10": "http://registry.npmjs.org/diskcache/0.0.10", + "0.0.11": "http://registry.npmjs.org/diskcache/0.0.11", + "0.0.12": "http://registry.npmjs.org/diskcache/0.0.12", + "0.0.13": "http://registry.npmjs.org/diskcache/0.0.13", + "0.0.14": "http://registry.npmjs.org/diskcache/0.0.14" + }, + "dist": { + "0.0.1": { + "shasum": "e32efe73132b0a9617687e2c91a79a5c8b5e0748", + "tarball": "http://registry.npmjs.org/diskcache/-/diskcache-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "b70e8c054b4f89dfb9a37a4318d3fc724591c1a6", + "tarball": "http://registry.npmjs.org/diskcache/-/diskcache-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "47265046f6aa44997f5ae23af7341e6436187de4", + "tarball": "http://registry.npmjs.org/diskcache/-/diskcache-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "7cdc598c05747f6b268c3fdf217aeb73884104af", + "tarball": "http://registry.npmjs.org/diskcache/-/diskcache-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "c5caa76180ccfa94b893593f2ac499520c4f39b1", + "tarball": "http://registry.npmjs.org/diskcache/-/diskcache-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "2931f73ad2cf28ee6f8e4c944761ae6250c94690", + "tarball": "http://registry.npmjs.org/diskcache/-/diskcache-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "ece5807e4f0bf073204e763f2c544802fbf0acf1", + "tarball": "http://registry.npmjs.org/diskcache/-/diskcache-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "c029c3f30681d695015b6b1fc9f09892680e4301", + "tarball": "http://registry.npmjs.org/diskcache/-/diskcache-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "f29375024582c1be020bf2f7fb434809c8e9c4a3", + "tarball": "http://registry.npmjs.org/diskcache/-/diskcache-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "b3a19635260cdbb37b6312c1cf34b2d69464dbd7", + "tarball": "http://registry.npmjs.org/diskcache/-/diskcache-0.0.10.tgz" + }, + "0.0.11": { + "shasum": "069acc5462946b877fe3e939a6eda28bebb46591", + "tarball": "http://registry.npmjs.org/diskcache/-/diskcache-0.0.11.tgz" + }, + "0.0.12": { + "shasum": "999c2448098ea0be4c4989bb02703f81e2ae64d6", + "tarball": "http://registry.npmjs.org/diskcache/-/diskcache-0.0.12.tgz" + }, + "0.0.13": { + "shasum": "e41504ce71a15f75311bb9b61bb23e8d0084ab2c", + "tarball": "http://registry.npmjs.org/diskcache/-/diskcache-0.0.13.tgz" + }, + "0.0.14": { + "shasum": "d62c63da40421f04b1cbd794f8091a024823512d", + "tarball": "http://registry.npmjs.org/diskcache/-/diskcache-0.0.14.tgz" + } + }, + "keywords": [ + "cache" + ], + "url": "http://registry.npmjs.org/diskcache/" + }, + "dispatch": { + "name": "dispatch", + "description": "A regular expression URL dispatcher for Connect", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "caolan", + "email": "caolan@caolanmcmahon.com" + } + ], + "author": { + "name": "Caolan McMahon" + }, + "repository": { + "type": "git", + "url": "git://github.com/caolan/dispatch.git" + }, + "time": { + "0.2.0": "2011-10-29T21:50:10.726Z", + "modified": "2011-10-29T21:50:10.726Z", + "created": "2011-10-29T21:50:10.726Z", + "0.0.1": "2011-10-29T21:50:10.726Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/dispatch/0.0.1", + "0.2.0": "http://registry.npmjs.org/dispatch/0.2.0" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/dispatch/-/dispatch-0.0.1.tgz" + }, + "0.2.0": { + "shasum": "74ef9fed34bc427d4f0173c17da780fed20c8e4c", + "tarball": "http://registry.npmjs.org/dispatch/-/dispatch-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/dispatch/" + }, + "dispatcher": { + "name": "dispatcher", + "description": "Pattern matching for JavaScript.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "gozala", + "email": "rfobic@gmail.com" + } + ], + "time": { + "modified": "2011-10-21T07:50:30.260Z", + "created": "2011-10-21T07:50:28.218Z", + "0.0.2": "2011-10-21T07:50:30.260Z" + }, + "author": { + "name": "Irakli Gozalishvili", + "email": "rfobic@gmail.com", + "url": "http://jeditoolkit.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Gozala/dispatcher.git", + "web": "https://github.com/Gozala/dispatcher" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/dispatcher/0.0.2" + }, + "dist": { + "0.0.2": { + "shasum": "42eca3b9d3c2de08c43bac4f14ca36dcd0675158", + "tarball": "http://registry.npmjs.org/dispatcher/-/dispatcher-0.0.2.tgz" + } + }, + "keywords": [ + "functions", + "pattern", + "match", + "cotract", + "dispatch" + ], + "url": "http://registry.npmjs.org/dispatcher/" + }, + "distribute.it": { + "name": "distribute.it", + "description": "Distribute.it aims to provide a solution for distributing data via a fault tolerant protocol such as bittorrent to closed circuit systems that operates in extreme conditions around the globe.", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "peters", + "email": "peter.sunde@gmail.com" + } + ], + "time": { + "modified": "2011-06-07T20:19:01.160Z", + "created": "2011-06-06T16:31:23.576Z", + "0.0.1": "2011-06-06T16:31:24.337Z", + "0.0.2": "2011-06-06T20:19:06.504Z", + "0.0.3": "2011-06-07T07:49:24.849Z", + "0.0.5": "2011-06-07T12:36:35.063Z" + }, + "author": { + "name": "Peter Sunde", + "email": "peter.sunde@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/peters/distribute.it.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/distribute.it/0.0.1", + "0.0.2": "http://registry.npmjs.org/distribute.it/0.0.2", + "0.0.3": "http://registry.npmjs.org/distribute.it/0.0.3", + "0.0.5": "http://registry.npmjs.org/distribute.it/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "7c6044d25c54ebbdb6bc2bf4918224352745a827", + "tarball": "http://registry.npmjs.org/distribute.it/-/distribute.it-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "93621039a4f37c62175021d9d4b865e0a9e62dfd", + "tarball": "http://registry.npmjs.org/distribute.it/-/distribute.it-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "fbdba098d04190b4a7076e0b59068f3160385679", + "tarball": "http://registry.npmjs.org/distribute.it/-/distribute.it-0.0.3.tgz" + }, + "0.0.5": { + "shasum": "b6ffc3521c7a9ad32bb464eda2739400f2dae3e2", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.16-linux-2.6.38-9-generic-pae": { + "shasum": "29dcd22727413c2d14f42d5e4a32f859eca10219", + "tarball": "http://registry.npmjs.org/distribute.it/-/distribute.it-0.0.5-0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.16-linux-2.6.38-9-generic-pae.tgz" + }, + "0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.16-linux-2.6.35-22-generic-pae": { + "shasum": "edc654b11238d911cb981f027f059df136149ff4", + "tarball": "http://registry.npmjs.org/distribute.it/-/distribute.it-0.0.5-0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.16-linux-2.6.35-22-generic-pae.tgz" + } + }, + "tarball": "http://registry.npmjs.org/distribute.it/-/distribute.it-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/distribute.it/" + }, + "dive": { + "name": "dive", + "description": "walk through directory trees and apply an action on every file", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "pvorb", + "email": "paul@vorb.de" + } + ], + "time": { + "modified": "2011-11-03T16:46:16.505Z", + "created": "2011-08-12T16:17:15.246Z", + "0.0.1": "2011-08-12T16:17:18.989Z", + "0.0.2": "2011-08-12T17:20:03.935Z", + "0.0.3": "2011-08-13T13:18:53.225Z", + "0.0.4": "2011-09-20T08:56:18.101Z", + "0.1.0": "2011-09-27T20:36:18.384Z", + "0.1.1": "2011-10-28T13:07:44.202Z", + "0.1.2": "2011-11-03T16:46:16.505Z" + }, + "author": { + "name": "Paul Vorbach", + "email": "paul@vorb.de", + "url": "http://vorb.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/pvorb/node-dive.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/dive/0.0.1", + "0.0.2": "http://registry.npmjs.org/dive/0.0.2", + "0.0.3": "http://registry.npmjs.org/dive/0.0.3", + "0.0.4": "http://registry.npmjs.org/dive/0.0.4", + "0.1.0": "http://registry.npmjs.org/dive/0.1.0", + "0.1.1": "http://registry.npmjs.org/dive/0.1.1", + "0.1.2": "http://registry.npmjs.org/dive/0.1.2" + }, + "dist": { + "0.0.1": { + "shasum": "13c2d13d16c8085a66754c3286efd090f9a2ce26", + "tarball": "http://registry.npmjs.org/dive/-/dive-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "00533f6f0e4bddf8fd062dabf8b7880b0429649f", + "tarball": "http://registry.npmjs.org/dive/-/dive-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "25d9618843a9327e3539b658753b71a3215da740", + "tarball": "http://registry.npmjs.org/dive/-/dive-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "c0fe7a154d410711befb5d58b6ac195c27a985d7", + "tarball": "http://registry.npmjs.org/dive/-/dive-0.0.4.tgz" + }, + "0.1.0": { + "shasum": "3e2474483f5ac07f29efb0a97e94bdb9a807a779", + "tarball": "http://registry.npmjs.org/dive/-/dive-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "e3eb1024aeb266d86e6d1861511e65f073325b86", + "tarball": "http://registry.npmjs.org/dive/-/dive-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "07fd48fd15fc5c0aacf052012ef66f136a49833b", + "tarball": "http://registry.npmjs.org/dive/-/dive-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/dive/" + }, + "diveSync": { + "name": "diveSync", + "description": "walk through directory trees and apply an action on every file (synchronous dive)", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "pvorb", + "email": "paul@vorb.de" + } + ], + "time": { + "modified": "2011-11-12T01:55:59.038Z", + "created": "2011-09-20T09:07:54.948Z", + "0.0.0": "2011-09-20T09:07:56.596Z", + "0.1.0": "2011-09-27T20:43:06.382Z", + "0.1.1": "2011-11-11T13:06:25.365Z", + "0.2.0": "2011-11-12T01:55:59.038Z" + }, + "author": { + "name": "Paul Vorbach", + "email": "paul@vorb.de", + "url": "https://vorb.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/pvorb/node-diveSync.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/diveSync/0.0.0", + "0.1.0": "http://registry.npmjs.org/diveSync/0.1.0", + "0.1.1": "http://registry.npmjs.org/diveSync/0.1.1", + "0.2.0": "http://registry.npmjs.org/diveSync/0.2.0" + }, + "dist": { + "0.0.0": { + "shasum": "3e76779628160b2cf5ad030c3cbe070a7c7c9380", + "tarball": "http://registry.npmjs.org/diveSync/-/diveSync-0.0.0.tgz" + }, + "0.1.0": { + "shasum": "b2c8298a572203ea498308cecd6b50056cd64df5", + "tarball": "http://registry.npmjs.org/diveSync/-/diveSync-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "90ecd4c8249e418044eca7f7380b479253f6149f", + "tarball": "http://registry.npmjs.org/diveSync/-/diveSync-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "036c6e9651a5031c723eba475cd9a4e02b679621", + "tarball": "http://registry.npmjs.org/diveSync/-/diveSync-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/diveSync/" + }, + "djs": { + "name": "djs", + "description": "A media sharing framework", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "khwang", + "email": "k3vinhwang@gmail.com" + } + ], + "time": { + "modified": "2011-10-15T02:28:05.211Z", + "created": "2011-09-25T07:02:34.805Z", + "0.0.0": "2011-09-25T07:02:36.102Z", + "0.0.1": "2011-10-15T01:58:57.905Z", + "0.0.2": "2011-10-15T02:07:26.093Z" + }, + "author": { + "name": "Kevin Hwang", + "email": "k3vinhwang@gmail.com", + "url": "kevinhwang.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/khwang/DJS.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/djs/0.0.0", + "0.0.1": "http://registry.npmjs.org/djs/0.0.1", + "0.0.2": "http://registry.npmjs.org/djs/0.0.2" + }, + "dist": { + "0.0.0": { + "shasum": "6899dab7712ea1dca1858564ed162efe77298cf1", + "tarball": "http://registry.npmjs.org/djs/-/djs-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "8cef4a06b241725c610dbad611a38d78c27d3be9", + "tarball": "http://registry.npmjs.org/djs/-/djs-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "ad34a5f33b7d4cd82930e72bfd4699719c1036a4", + "tarball": "http://registry.npmjs.org/djs/-/djs-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/djs/" + }, + "dk-assets": { + "name": "dk-assets", + "description": "Asset Manager for the Drumkit Framework", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "chrisjpowers", + "email": "chrisjpowers@gmail.com" + } + ], + "time": { + "modified": "2011-12-12T14:05:10.517Z", + "created": "2011-06-25T23:26:00.764Z", + "0.1.0": "2011-06-25T23:26:01.156Z", + "0.1.1": "2011-12-12T14:05:10.517Z" + }, + "author": { + "name": "Chris Powers", + "email": "chrisjpowers@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/chrisjpowers/dk-assets.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/dk-assets/0.1.0", + "0.1.1": "http://registry.npmjs.org/dk-assets/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "f618db06ab8f35b8403423dc0c70622b3cbbba19", + "tarball": "http://registry.npmjs.org/dk-assets/-/dk-assets-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "9933e87b8aed018442dc96d943d9fad23af65f76", + "tarball": "http://registry.npmjs.org/dk-assets/-/dk-assets-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/dk-assets/" + }, + "dk-core": { + "name": "dk-core", + "description": "Core Functionality Plugin for Drumkit Framework", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "chrisjpowers", + "email": "chrisjpowers@gmail.com" + } + ], + "time": { + "modified": "2011-12-12T14:05:20.575Z", + "created": "2011-06-28T01:14:03.665Z", + "0.1.0": "2011-06-28T01:14:04.052Z", + "0.1.1": "2011-12-12T14:05:20.575Z" + }, + "author": { + "name": "Chris Powers", + "email": "chrisjpowers@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/chrisjpowers/dk-core.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/dk-core/0.1.0", + "0.1.1": "http://registry.npmjs.org/dk-core/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "36704b89dc7998e1154a5075b52a542fff8081a9", + "tarball": "http://registry.npmjs.org/dk-core/-/dk-core-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "9920854cd6a0b02c8371fc8df90b3914f43e352f", + "tarball": "http://registry.npmjs.org/dk-core/-/dk-core-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/dk-core/" + }, + "dk-couchdb": { + "name": "dk-couchdb", + "description": "CouchDB Plugin for the Drumkit Framework", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "chrisjpowers", + "email": "chrisjpowers@gmail.com" + } + ], + "time": { + "modified": "2011-12-12T14:05:36.508Z", + "created": "2011-06-25T23:40:27.939Z", + "0.1.0": "2011-06-25T23:40:28.358Z", + "0.1.1": "2011-12-12T14:05:36.508Z" + }, + "author": { + "name": "Chris Powers", + "email": "chrisjpowers@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/chrisjpowers/dk-couchdb.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/dk-couchdb/0.1.0", + "0.1.1": "http://registry.npmjs.org/dk-couchdb/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "f6644a0bb7ff387a401508a35d2eb0788db4cb82", + "tarball": "http://registry.npmjs.org/dk-couchdb/-/dk-couchdb-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "2f6a076500ebeea2bd574ac1c0b67228936cd628", + "tarball": "http://registry.npmjs.org/dk-couchdb/-/dk-couchdb-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/dk-couchdb/" + }, + "dk-model": { + "name": "dk-model", + "description": "Model Interface for the DrumKit Framework", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "chrisjpowers", + "email": "chrisjpowers@gmail.com" + } + ], + "time": { + "modified": "2011-12-12T14:05:47.861Z", + "created": "2011-07-01T05:08:55.610Z", + "0.1.0": "2011-07-01T05:08:56.048Z", + "0.1.1": "2011-12-12T14:05:47.861Z" + }, + "author": { + "name": "Chris Powers", + "email": "chrisjpowers@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/chrisjpowers/dk-model.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/dk-model/0.1.0", + "0.1.1": "http://registry.npmjs.org/dk-model/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "ce1b2496e3e64dae8949f82a9d6c8f53e20f5ad5", + "tarball": "http://registry.npmjs.org/dk-model/-/dk-model-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "6cbff2d4fd78275b2f70a5e5c04be96f7bfc161a", + "tarball": "http://registry.npmjs.org/dk-model/-/dk-model-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/dk-model/" + }, + "dk-model-couchdb": { + "name": "dk-model-couchdb", + "description": "CouchDB Model Implementation for DrumKit", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "chrisjpowers", + "email": "chrisjpowers@gmail.com" + } + ], + "time": { + "modified": "2011-12-12T14:05:58.097Z", + "created": "2011-06-28T02:09:17.070Z", + "0.1.0": "2011-06-28T02:09:17.500Z", + "0.1.1": "2011-12-12T14:05:58.097Z" + }, + "author": { + "name": "Chris Powers", + "email": "chrisjpowers@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/chrisjpowers/dk-model-couchdb.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/dk-model-couchdb/0.1.0", + "0.1.1": "http://registry.npmjs.org/dk-model-couchdb/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "6ae28be4f9ad5e4064576a39486b96401dc36377", + "tarball": "http://registry.npmjs.org/dk-model-couchdb/-/dk-model-couchdb-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "b5198f3a1e193e44fbd11e357d79f46d464a9a11", + "tarball": "http://registry.npmjs.org/dk-model-couchdb/-/dk-model-couchdb-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/dk-model-couchdb/" + }, + "dk-routes": { + "name": "dk-routes", + "description": "Routes Plugin for the DrumKit Framework", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "chrisjpowers", + "email": "chrisjpowers@gmail.com" + } + ], + "time": { + "modified": "2011-12-12T14:06:08.681Z", + "created": "2011-07-01T05:09:13.227Z", + "0.1.0": "2011-07-01T05:09:13.661Z", + "0.1.1": "2011-12-12T14:06:08.681Z" + }, + "author": { + "name": "Chris Powers", + "email": "chrisjpowers@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/chrisjpowers/dk-routes.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/dk-routes/0.1.0", + "0.1.1": "http://registry.npmjs.org/dk-routes/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "b34b6532fdbd427d465d62defab12bbcf34dbb74", + "tarball": "http://registry.npmjs.org/dk-routes/-/dk-routes-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "ed47622e295c6e49df836800cf6bde36fd16ebd5", + "tarball": "http://registry.npmjs.org/dk-routes/-/dk-routes-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/dk-routes/" + }, + "dk-server": { + "name": "dk-server", + "description": "HTTP Server for the DrumKit Framework", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "chrisjpowers", + "email": "chrisjpowers@gmail.com" + } + ], + "time": { + "modified": "2011-12-12T14:06:22.237Z", + "created": "2011-06-25T23:45:45.077Z", + "0.0.1": "2011-06-25T23:45:45.510Z", + "0.1.1": "2011-12-12T14:06:22.237Z" + }, + "author": { + "name": "Chris Powers", + "email": "chrisjpowers@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/chrisjpowers/dk-server.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/dk-server/0.0.1", + "0.1.1": "http://registry.npmjs.org/dk-server/0.1.1" + }, + "dist": { + "0.0.1": { + "shasum": "0bdaecc0a3a443d1d59aa8c210e8d40c864fbfa9", + "tarball": "http://registry.npmjs.org/dk-server/-/dk-server-0.0.1.tgz" + }, + "0.1.1": { + "shasum": "42d303d0641141fa79949dac48122a204bf21f7b", + "tarball": "http://registry.npmjs.org/dk-server/-/dk-server-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/dk-server/" + }, + "dk-template": { + "name": "dk-template", + "description": "Server-side and client-side templating for Drumkit.js", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "chrisjpowers", + "email": "chrisjpowers@gmail.com" + } + ], + "time": { + "modified": "2011-12-12T14:06:34.897Z", + "created": "2011-06-28T01:15:02.947Z", + "0.1.0": "2011-06-28T01:15:03.318Z", + "0.1.1": "2011-12-12T14:06:34.897Z" + }, + "author": { + "name": "Chris Powers", + "email": "chrisjpowers@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/chrisjpowers/dk-template.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/dk-template/0.1.0", + "0.1.1": "http://registry.npmjs.org/dk-template/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "c25f2a96c013047d3af706c407ac0906214a6ead", + "tarball": "http://registry.npmjs.org/dk-template/-/dk-template-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "818c729bf4fa02a63cfb4fa97cd5017685e6a195", + "tarball": "http://registry.npmjs.org/dk-template/-/dk-template-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/dk-template/" + }, + "dk-transport": { + "name": "dk-transport", + "description": "Transparent Server-Client Transport Layer for DrumKit.js", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "chrisjpowers", + "email": "chrisjpowers@gmail.com" + } + ], + "time": { + "modified": "2011-12-12T14:06:57.202Z", + "created": "2011-06-25T23:54:04.614Z", + "0.1.0": "2011-06-25T23:54:05.013Z", + "0.1.1": "2011-12-12T14:06:57.202Z" + }, + "author": { + "name": "Chris Powers", + "email": "chrisjpowers@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/chrisjpowers/dk-transport.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/dk-transport/0.1.0", + "0.1.1": "http://registry.npmjs.org/dk-transport/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "fcfd89adc781f873ef6a1f4ecfd88621901a4709", + "tarball": "http://registry.npmjs.org/dk-transport/-/dk-transport-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "8baf27b4321b844ef6fbfc8fdda2fe69e010c09c", + "tarball": "http://registry.npmjs.org/dk-transport/-/dk-transport-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/dk-transport/" + }, + "dk-websockets": { + "name": "dk-websockets", + "description": "Web Sockets for the DrumKit Framework", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "chrisjpowers", + "email": "chrisjpowers@gmail.com" + } + ], + "time": { + "modified": "2011-12-12T14:07:12.380Z", + "created": "2011-06-28T01:15:40.403Z", + "0.1.0": "2011-06-28T01:15:40.819Z", + "0.1.1": "2011-12-12T14:07:12.380Z" + }, + "author": { + "name": "Chris Powers", + "email": "chrisjpowers@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/chrisjpowers/dk-websockets.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/dk-websockets/0.1.0", + "0.1.1": "http://registry.npmjs.org/dk-websockets/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "1eab4a689e75235d7eb0020735066c977bdf7af3", + "tarball": "http://registry.npmjs.org/dk-websockets/-/dk-websockets-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "a3c010fa1b66d2908cb1b7b0c558e2d0fbdfb381", + "tarball": "http://registry.npmjs.org/dk-websockets/-/dk-websockets-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/dk-websockets/" + }, + "dkastner-browserify": { + "name": "dkastner-browserify", + "description": "Browser-side require() for js directories and npm modules", + "dist-tags": { + "latest": "1.6.2" + }, + "maintainers": [ + { + "name": "dkastner", + "email": "dkastner@gmail.com" + } + ], + "time": { + "modified": "2011-10-26T20:36:47.450Z", + "created": "2011-10-04T17:11:58.374Z", + "1.5.1": "2011-10-04T17:11:58.747Z", + "1.5.2": "2011-10-25T18:15:25.073Z", + "1.5.3": "2011-10-25T21:18:30.033Z", + "1.6.1": "2011-10-26T20:32:42.980Z", + "1.6.2": "2011-10-26T20:36:47.450Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/dkastner/node-browserify.git" + }, + "versions": { + "1.5.1": "http://registry.npmjs.org/dkastner-browserify/1.5.1", + "1.5.2": "http://registry.npmjs.org/dkastner-browserify/1.5.2", + "1.5.3": "http://registry.npmjs.org/dkastner-browserify/1.5.3", + "1.6.1": "http://registry.npmjs.org/dkastner-browserify/1.6.1", + "1.6.2": "http://registry.npmjs.org/dkastner-browserify/1.6.2" + }, + "dist": { + "1.5.1": { + "shasum": "9e242d43b904c550cab4354bc7ccda437c500625", + "tarball": "http://registry.npmjs.org/dkastner-browserify/-/dkastner-browserify-1.5.1.tgz" + }, + "1.5.2": { + "shasum": "ca6ee091753b5f966d70db3a6996135dfa7f282f", + "tarball": "http://registry.npmjs.org/dkastner-browserify/-/dkastner-browserify-1.5.2.tgz" + }, + "1.5.3": { + "shasum": "a7b0316a8a31c7c77223cab7f799ae59d37313a1", + "tarball": "http://registry.npmjs.org/dkastner-browserify/-/dkastner-browserify-1.5.3.tgz" + }, + "1.6.1": { + "shasum": "b222e7c0d1b429443de81c689460b00d4f483b45", + "tarball": "http://registry.npmjs.org/dkastner-browserify/-/dkastner-browserify-1.6.1.tgz" + }, + "1.6.2": { + "shasum": "536309c36765d9216889f0475ef8e649b1dcb3f3", + "tarball": "http://registry.npmjs.org/dkastner-browserify/-/dkastner-browserify-1.6.2.tgz" + } + }, + "keywords": [ + "browser", + "require", + "middleware", + "bundle", + "npm", + "coffee", + "javascript" + ], + "url": "http://registry.npmjs.org/dkastner-browserify/" + }, + "dkastner-http-browserify": { + "name": "dkastner-http-browserify", + "description": "http module compatability for browserify", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "dkastner", + "email": "dkastner@gmail.com" + } + ], + "time": { + "modified": "2011-10-04T18:04:08.323Z", + "created": "2011-10-04T18:04:08.044Z", + "0.0.4": "2011-10-04T18:04:08.323Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/http-browserify.git" + }, + "versions": { + "0.0.4": "http://registry.npmjs.org/dkastner-http-browserify/0.0.4" + }, + "dist": { + "0.0.4": { + "shasum": "418bd369c517e5afffd6cf43457d35379e1a040e", + "tarball": "http://registry.npmjs.org/dkastner-http-browserify/-/dkastner-http-browserify-0.0.4.tgz" + } + }, + "keywords": [ + "http", + "browserify", + "compatible", + "meatless", + "browser" + ], + "url": "http://registry.npmjs.org/dkastner-http-browserify/" + }, + "dkastner-JSONPath": { + "name": "dkastner-JSONPath", + "description": "A JS implementation of JSONPath", + "dist-tags": { + "latest": "0.9.2" + }, + "maintainers": [ + { + "name": "dkastner", + "email": "dkastner@gmail.com" + } + ], + "time": { + "modified": "2011-10-08T04:08:20.712Z", + "created": "2011-10-07T15:57:50.623Z", + "0.9.0": "2011-10-07T15:57:50.997Z", + "0.9.1": "2011-10-07T21:32:03.344Z", + "0.9.2": "2011-10-08T04:08:20.712Z" + }, + "author": { + "name": "Stefan Goessner" + }, + "repository": { + "type": "git", + "url": "git://github.com/dkastner/JSONPath.git" + }, + "versions": { + "0.9.0": "http://registry.npmjs.org/dkastner-JSONPath/0.9.0", + "0.9.1": "http://registry.npmjs.org/dkastner-JSONPath/0.9.1", + "0.9.2": "http://registry.npmjs.org/dkastner-JSONPath/0.9.2" + }, + "dist": { + "0.9.0": { + "shasum": "db4911c606d49fe0ce0215a8694bf732cb0233ee", + "tarball": "http://registry.npmjs.org/dkastner-JSONPath/-/dkastner-JSONPath-0.9.0.tgz" + }, + "0.9.1": { + "shasum": "4a93dd935a1516050a798742ce98425aa00aa869", + "tarball": "http://registry.npmjs.org/dkastner-JSONPath/-/dkastner-JSONPath-0.9.1.tgz" + }, + "0.9.2": { + "shasum": "89b464a7eaa451ea90307de69c7072b014e9e3dc", + "tarball": "http://registry.npmjs.org/dkastner-JSONPath/-/dkastner-JSONPath-0.9.2.tgz" + } + }, + "url": "http://registry.npmjs.org/dkastner-JSONPath/" + }, + "dkastner-punycode": { + "name": "dkastner-punycode", + "description": "Javascript Punycode converter derived from example in RFC3492.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "dkastner", + "email": "dkastner@gmail.com" + } + ], + "time": { + "modified": "2011-10-25T18:13:49.821Z", + "created": "2011-10-25T18:11:23.407Z", + "0.0.1": "2011-10-25T18:11:23.778Z", + "0.0.2": "2011-10-25T18:13:49.821Z" + }, + "author": { + "name": "Francis Gulotta", + "email": "wizard@roborooter.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/reconbot/Node-PunyCode.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/dkastner-punycode/0.0.1", + "0.0.2": "http://registry.npmjs.org/dkastner-punycode/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "8e64182f651117babc5d25a2a6689e2abb1d5745", + "tarball": "http://registry.npmjs.org/dkastner-punycode/-/dkastner-punycode-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "642568eb0ac5d13b2eba6b611670b7c8ba89f389", + "tarball": "http://registry.npmjs.org/dkastner-punycode/-/dkastner-punycode-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/dkastner-punycode/" + }, + "dl": { + "name": "dl", + "description": "DreamLab Libs", + "dist-tags": { + "latest": "0.0.3" + }, + "readme": null, + "maintainers": [ + { + "name": "dreamlab", + "email": "janecki@gmail.com" + } + ], + "time": { + "modified": "2011-12-14T08:30:41.331Z", + "created": "2011-12-06T12:11:46.811Z", + "0.0.1": "2011-12-06T12:11:48.714Z", + "0.0.2": "2011-12-13T15:11:53.484Z", + "0.0.3": "2011-12-14T08:30:41.331Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/dl/0.0.1", + "0.0.2": "http://registry.npmjs.org/dl/0.0.2", + "0.0.3": "http://registry.npmjs.org/dl/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "79aaf5a23a7cf26f103152d3d5f3db62a2002059", + "tarball": "http://registry.npmjs.org/dl/-/dl-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "4e3845200512c364692ee45d1331a718ba9b704e", + "tarball": "http://registry.npmjs.org/dl/-/dl-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "7a543c00320866f6fa34eb0ca0edb63935bc96d2", + "tarball": "http://registry.npmjs.org/dl/-/dl-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/dl/" + }, + "dlite-cache": { + "name": "dlite-cache", + "description": "Small cache library.", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "naitik", + "email": "n@daaku.org" + } + ], + "time": { + "modified": "2011-10-02T01:57:36.413Z", + "created": "2011-10-02T01:57:34.581Z", + "1.0.0": "2011-10-02T01:57:36.413Z" + }, + "author": { + "name": "Naitik Shah", + "email": "n@daaku.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/nshah/dlite-cache.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/dlite-cache/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "7882a6984f117319e145a9d9b8bd485d0a2fe327", + "tarball": "http://registry.npmjs.org/dlite-cache/-/dlite-cache-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/dlite-cache/" + }, + "dlite-event": { + "name": "dlite-event", + "description": "Small event library.", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "naitik", + "email": "n@daaku.org" + } + ], + "time": { + "modified": "2011-10-02T01:36:37.225Z", + "created": "2011-10-02T01:36:35.897Z", + "1.0.0": "2011-10-02T01:36:37.225Z" + }, + "author": { + "name": "Naitik Shah", + "email": "n@daaku.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/nshah/dlite-event.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/dlite-event/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "55262b58368b8ee956472fd07ee10a9043301d28", + "tarball": "http://registry.npmjs.org/dlite-event/-/dlite-event-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/dlite-event/" + }, + "dlite-fb": { + "name": "dlite-fb", + "description": "Small Facebook library.", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "naitik", + "email": "n@daaku.org" + } + ], + "time": { + "modified": "2011-10-02T02:45:43.353Z", + "created": "2011-10-02T02:45:42.077Z", + "1.0.0": "2011-10-02T02:45:43.353Z" + }, + "author": { + "name": "Naitik Shah", + "email": "n@daaku.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/nshah/dlite-fb.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/dlite-fb/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "7cc0b13c2d7c63096b31c5c2ecfa62a01dc76ead", + "tarball": "http://registry.npmjs.org/dlite-fb/-/dlite-fb-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/dlite-fb/" + }, + "dlite-jsonp": { + "name": "dlite-jsonp", + "description": "JSONP support for use via browserify.", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "naitik", + "email": "n@daaku.org" + } + ], + "time": { + "modified": "2011-10-02T01:36:16.127Z", + "created": "2011-10-02T01:36:14.864Z", + "1.0.0": "2011-10-02T01:36:16.127Z" + }, + "author": { + "name": "Naitik Shah", + "email": "n@daaku.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/nshah/dlite-jsonp.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/dlite-jsonp/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "b474935a1f2397d037bdd73e9ed189b57f2e4e6b", + "tarball": "http://registry.npmjs.org/dlite-jsonp/-/dlite-jsonp-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/dlite-jsonp/" + }, + "dlite-qs": { + "name": "dlite-qs", + "description": "Mini query string parsing library for use via browserify.", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "naitik", + "email": "n@daaku.org" + } + ], + "time": { + "modified": "2011-10-02T01:36:58.197Z", + "created": "2011-10-02T01:36:56.895Z", + "1.0.0": "2011-10-02T01:36:58.197Z" + }, + "author": { + "name": "Naitik Shah", + "email": "n@daaku.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/nshah/dlite-qs.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/dlite-qs/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "b67aeec8e0b2c3c99fcfdd539c5348fd9cbc0d63", + "tarball": "http://registry.npmjs.org/dlite-qs/-/dlite-qs-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/dlite-qs/" + }, + "dlite-query": { + "name": "dlite-query", + "description": "Save me, I wrote another query.", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "naitik", + "email": "n@daaku.org" + } + ], + "time": { + "modified": "2011-10-02T01:37:25.983Z", + "created": "2011-10-02T01:37:24.733Z", + "1.0.0": "2011-10-02T01:37:25.983Z" + }, + "author": { + "name": "Naitik Shah", + "email": "n@daaku.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/nshah/dlite-query.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/dlite-query/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "3a89bf8c5679ff3da94bedd4a8fe2a574fb25211", + "tarball": "http://registry.npmjs.org/dlite-query/-/dlite-query-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/dlite-query/" + }, + "dna": { + "name": "dna", + "description": "utility functions to handle DNA/RNA string data", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "shinout", + "email": "shinout310@gmail.com" + } + ], + "time": { + "modified": "2011-11-25T06:22:04.355Z", + "created": "2011-10-28T07:16:50.316Z", + "0.0.1": "2011-10-28T07:16:53.178Z", + "0.0.2": "2011-11-14T09:01:12.726Z", + "0.0.3": "2011-11-14T11:06:30.360Z", + "0.0.4": "2011-11-14T11:23:32.844Z", + "0.0.5": "2011-11-25T06:22:04.355Z" + }, + "author": { + "name": "SHIN Suzuki", + "email": "shinout310@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/dna/0.0.1", + "0.0.2": "http://registry.npmjs.org/dna/0.0.2", + "0.0.3": "http://registry.npmjs.org/dna/0.0.3", + "0.0.4": "http://registry.npmjs.org/dna/0.0.4", + "0.0.5": "http://registry.npmjs.org/dna/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "128deb39a63d8323f6450c109efeb18b133ff574", + "tarball": "http://registry.npmjs.org/dna/-/dna-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "ca9f02b28daf0b145a15d779e59427c588c08539", + "tarball": "http://registry.npmjs.org/dna/-/dna-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "a95c427d0aa2cee58420be86e2c8b789e88c4ff2", + "tarball": "http://registry.npmjs.org/dna/-/dna-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "1244e03a688fa21c5ade1d385dd4089dcfebe513", + "tarball": "http://registry.npmjs.org/dna/-/dna-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "266a8702ad815631194153c0465230ab8bb140d0", + "tarball": "http://registry.npmjs.org/dna/-/dna-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/dna/" + }, + "dnet-index-proxy": { + "name": "dnet-index-proxy", + "description": "dnet-index thrift proxy", + "dist-tags": { + "latest": "0.0.20" + }, + "maintainers": [ + { + "name": "ithkuil", + "email": "marko.mikulicic@isti.cnr.it" + } + ], + "time": { + "modified": "2011-05-05T14:32:56.787Z", + "created": "2011-04-10T12:38:29.022Z", + "0.0.1": "2011-04-10T12:38:29.831Z", + "0.0.2": "2011-04-10T12:43:18.744Z", + "0.0.3": "2011-04-11T13:54:42.502Z", + "0.0.4": "2011-04-11T16:32:03.905Z", + "0.0.5": "2011-04-12T08:09:07.190Z", + "0.0.6": "2011-04-12T09:35:18.263Z", + "0.0.7": "2011-04-12T10:25:01.933Z", + "0.0.8": "2011-04-12T10:38:29.916Z", + "0.0.9": "2011-04-12T21:29:25.369Z", + "0.0.10": "2011-04-12T21:43:04.068Z", + "0.0.11": "2011-04-13T16:44:26.392Z", + "0.0.12": "2011-04-14T14:07:36.739Z", + "0.0.13": "2011-04-14T14:48:37.489Z", + "0.0.14": "2011-04-14T17:15:18.996Z", + "0.0.15": "2011-04-21T17:26:07.838Z", + "0.0.16": "2011-04-21T17:28:48.072Z", + "0.0.17": "2011-04-21T17:50:30.078Z", + "0.0.18": "2011-04-21T18:48:38.378Z", + "0.0.19": "2011-04-27T13:02:18.634Z", + "0.0.20": "2011-05-05T14:32:56.787Z" + }, + "author": { + "name": "Marko Mikulicic", + "email": "marko.mikulicic@isti.cnr.it" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/dnet-index-proxy/0.0.1", + "0.0.2": "http://registry.npmjs.org/dnet-index-proxy/0.0.2", + "0.0.3": "http://registry.npmjs.org/dnet-index-proxy/0.0.3", + "0.0.4": "http://registry.npmjs.org/dnet-index-proxy/0.0.4", + "0.0.5": "http://registry.npmjs.org/dnet-index-proxy/0.0.5", + "0.0.6": "http://registry.npmjs.org/dnet-index-proxy/0.0.6", + "0.0.7": "http://registry.npmjs.org/dnet-index-proxy/0.0.7", + "0.0.8": "http://registry.npmjs.org/dnet-index-proxy/0.0.8", + "0.0.9": "http://registry.npmjs.org/dnet-index-proxy/0.0.9", + "0.0.10": "http://registry.npmjs.org/dnet-index-proxy/0.0.10", + "0.0.11": "http://registry.npmjs.org/dnet-index-proxy/0.0.11", + "0.0.12": "http://registry.npmjs.org/dnet-index-proxy/0.0.12", + "0.0.13": "http://registry.npmjs.org/dnet-index-proxy/0.0.13", + "0.0.14": "http://registry.npmjs.org/dnet-index-proxy/0.0.14", + "0.0.15": "http://registry.npmjs.org/dnet-index-proxy/0.0.15", + "0.0.16": "http://registry.npmjs.org/dnet-index-proxy/0.0.16", + "0.0.17": "http://registry.npmjs.org/dnet-index-proxy/0.0.17", + "0.0.18": "http://registry.npmjs.org/dnet-index-proxy/0.0.18", + "0.0.19": "http://registry.npmjs.org/dnet-index-proxy/0.0.19", + "0.0.20": "http://registry.npmjs.org/dnet-index-proxy/0.0.20" + }, + "dist": { + "0.0.1": { + "shasum": "a01e7d0a3ac4830c89cbc85b816ec094d50337ba", + "tarball": "http://registry.npmjs.org/dnet-index-proxy/-/dnet-index-proxy-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "11480ce679cd50e45830ea3f76a285e4e8a96aa0", + "tarball": "http://registry.npmjs.org/dnet-index-proxy/-/dnet-index-proxy-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "32514354a863a153a8509b8df5310cc62c6f33cd", + "tarball": "http://registry.npmjs.org/dnet-index-proxy/-/dnet-index-proxy-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "12d66d4a47bead4fac00e5e0d5dc9f2ed31cc095", + "tarball": "http://registry.npmjs.org/dnet-index-proxy/-/dnet-index-proxy-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "5946d0cebc2e50b9486e6165c48cbbc224af6910", + "tarball": "http://registry.npmjs.org/dnet-index-proxy/-/dnet-index-proxy-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "3ed3c31ed7109440d72761ccc3f34f370358ea9c", + "tarball": "http://registry.npmjs.org/dnet-index-proxy/-/dnet-index-proxy-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "2dc52803276ca795d447f87ba299f47e9ffc172f", + "tarball": "http://registry.npmjs.org/dnet-index-proxy/-/dnet-index-proxy-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "f3f7f418b39d35ff1ef6f59b35d281574d931919", + "tarball": "http://registry.npmjs.org/dnet-index-proxy/-/dnet-index-proxy-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "49c88df6a2589236d2111dba8b2c0bc54af1e206", + "tarball": "http://registry.npmjs.org/dnet-index-proxy/-/dnet-index-proxy-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "b7726d5bfabedef266216325b73340bf8f6c2acb", + "tarball": "http://registry.npmjs.org/dnet-index-proxy/-/dnet-index-proxy-0.0.10.tgz" + }, + "0.0.11": { + "shasum": "ce18720340e22c45c23df1aa35039b960d4f83d6", + "tarball": "http://registry.npmjs.org/dnet-index-proxy/-/dnet-index-proxy-0.0.11.tgz" + }, + "0.0.12": { + "shasum": "2ab442b9cea7292cc3b0888ffec329de44914fee", + "tarball": "http://registry.npmjs.org/dnet-index-proxy/-/dnet-index-proxy-0.0.12.tgz" + }, + "0.0.13": { + "shasum": "ce39e0c55d7c07f602dab91138041b4539956854", + "tarball": "http://registry.npmjs.org/dnet-index-proxy/-/dnet-index-proxy-0.0.13.tgz" + }, + "0.0.14": { + "shasum": "1537a7b772ea6f2c3ccc0d9e9fe7d997bdd25263", + "tarball": "http://registry.npmjs.org/dnet-index-proxy/-/dnet-index-proxy-0.0.14.tgz" + }, + "0.0.15": { + "shasum": "de26d78690a54837cb064ef4bdfd50689a45377c", + "tarball": "http://registry.npmjs.org/dnet-index-proxy/-/dnet-index-proxy-0.0.15.tgz" + }, + "0.0.16": { + "shasum": "9cecfefb857133c6eec5f33ebadc8dcf10318481", + "tarball": "http://registry.npmjs.org/dnet-index-proxy/-/dnet-index-proxy-0.0.16.tgz" + }, + "0.0.17": { + "shasum": "043b21035c3d8d702056d015054eb237f2f47bdb", + "tarball": "http://registry.npmjs.org/dnet-index-proxy/-/dnet-index-proxy-0.0.17.tgz" + }, + "0.0.18": { + "shasum": "0630cfd4dd1273cb8e3ab31295f86881b26f9470", + "tarball": "http://registry.npmjs.org/dnet-index-proxy/-/dnet-index-proxy-0.0.18.tgz" + }, + "0.0.19": { + "shasum": "33b64c38bae511750c923e70431a9bb16a7c97f9", + "tarball": "http://registry.npmjs.org/dnet-index-proxy/-/dnet-index-proxy-0.0.19.tgz" + }, + "0.0.20": { + "shasum": "474a99a17de4ea2197f5f5923d5eb3a8626c22b4", + "tarball": "http://registry.npmjs.org/dnet-index-proxy/-/dnet-index-proxy-0.0.20.tgz" + } + }, + "url": "http://registry.npmjs.org/dnet-index-proxy/" + }, + "dnode": { + "name": "dnode", + "dist-tags": { + "latest": "0.9.2" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "repository": { + "type": "git", + "url": "git://github.com/substack/dnode.git" + }, + "description": "freestyle RPC", + "time": { + "modified": "2011-12-01T04:18:00.247Z", + "created": "2010-12-20T12:20:43.879Z", + "0.2.10": "2010-12-20T12:20:43.879Z", + "0.2.11": "2010-12-20T12:20:43.879Z", + "0.2.12": "2010-12-20T12:20:43.879Z", + "0.2.13": "2010-12-20T12:20:43.879Z", + "0.2.4": "2010-12-20T12:20:43.879Z", + "0.2.5": "2010-12-20T12:20:43.879Z", + "0.2.6": "2010-12-20T12:20:43.879Z", + "0.2.7": "2010-12-20T12:20:43.879Z", + "0.2.9": "2010-12-20T12:20:43.879Z", + "0.3.0": "2010-12-20T12:20:43.879Z", + "0.3.1": "2010-12-20T12:20:43.879Z", + "0.3.2": "2010-12-20T12:20:43.879Z", + "0.3.3": "2010-12-20T12:20:43.879Z", + "0.3.5": "2010-12-20T12:20:43.879Z", + "0.3.6": "2010-12-20T12:20:43.879Z", + "0.3.7": "2010-12-20T12:20:43.879Z", + "0.3.8": "2010-12-20T12:20:43.879Z", + "0.3.9": "2010-12-20T12:20:43.879Z", + "0.3.10": "2010-12-20T12:20:43.879Z", + "0.3.11": "2010-12-20T12:20:43.879Z", + "0.4.0": "2010-12-20T12:20:43.879Z", + "0.4.1": "2010-12-26T09:18:28.584Z", + "0.4.2": "2010-12-29T08:58:46.694Z", + "0.4.3": "2011-01-05T06:28:24.117Z", + "0.4.4": "2011-01-10T07:09:26.115Z", + "0.4.5": "2011-01-10T08:35:57.496Z", + "0.5.0": "2011-01-26T07:26:32.799Z", + "0.5.1": "2011-01-28T01:00:14.242Z", + "0.5.2": "2011-01-28T01:22:20.495Z", + "0.5.3": "2011-02-15T22:29:50.396Z", + "0.5.4": "2011-02-16T10:48:48.540Z", + "0.5.5": "2011-02-21T02:29:40.713Z", + "0.5.6": "2011-02-21T04:50:36.655Z", + "0.5.7": "2011-03-02T13:03:51.738Z", + "0.5.8": "2011-03-19T00:50:40.738Z", + "0.5.9": "2011-03-22T13:43:20.021Z", + "0.6.0": "2011-03-24T02:01:26.051Z", + "0.6.1": "2011-03-24T09:08:34.506Z", + "0.6.2": "2011-03-28T15:47:02.472Z", + "0.6.3": "2011-03-30T04:02:18.876Z", + "0.6.4": "2011-03-31T17:22:27.846Z", + "0.6.5": "2011-03-31T18:49:41.196Z", + "0.6.6": "2011-04-02T16:20:17.037Z", + "0.6.7": "2011-04-07T06:26:10.504Z", + "0.6.8": "2011-04-21T11:24:39.084Z", + "0.6.9": "2011-04-23T22:08:19.131Z", + "0.6.10": "2011-05-12T17:29:05.943Z", + "0.6.11": "2011-05-18T23:03:08.279Z", + "0.6.12": "2011-05-28T20:38:33.959Z", + "0.7.0": "2011-06-09T05:41:13.241Z", + "0.7.1": "2011-06-09T06:30:05.584Z", + "0.7.2": "2011-06-10T08:13:47.293Z", + "0.7.3": "2011-06-22T01:11:45.509Z", + "0.7.4": "2011-07-27T19:24:35.961Z", + "0.7.5": "2011-08-09T01:02:06.451Z", + "0.8.0": "2011-08-11T12:28:45.748Z", + "0.8.1": "2011-08-11T12:56:38.257Z", + "0.8.2": "2011-08-22T20:10:54.727Z", + "0.9.0": "2011-11-03T22:54:09.426Z", + "0.9.1": "2011-11-04T01:20:11.189Z", + "0.9.2": "2011-11-06T08:05:27.851Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "users": { + "coverslide": true, + "isaacs": true, + "thejh": true, + "tblobaum": true + }, + "versions": { + "0.2.10": "http://registry.npmjs.org/dnode/0.2.10", + "0.2.11": "http://registry.npmjs.org/dnode/0.2.11", + "0.2.12": "http://registry.npmjs.org/dnode/0.2.12", + "0.2.13": "http://registry.npmjs.org/dnode/0.2.13", + "0.2.4": "http://registry.npmjs.org/dnode/0.2.4", + "0.2.5": "http://registry.npmjs.org/dnode/0.2.5", + "0.2.6": "http://registry.npmjs.org/dnode/0.2.6", + "0.2.7": "http://registry.npmjs.org/dnode/0.2.7", + "0.2.9": "http://registry.npmjs.org/dnode/0.2.9", + "0.3.0": "http://registry.npmjs.org/dnode/0.3.0", + "0.3.1": "http://registry.npmjs.org/dnode/0.3.1", + "0.3.2": "http://registry.npmjs.org/dnode/0.3.2", + "0.3.3": "http://registry.npmjs.org/dnode/0.3.3", + "0.3.5": "http://registry.npmjs.org/dnode/0.3.5", + "0.3.6": "http://registry.npmjs.org/dnode/0.3.6", + "0.3.7": "http://registry.npmjs.org/dnode/0.3.7", + "0.3.8": "http://registry.npmjs.org/dnode/0.3.8", + "0.3.9": "http://registry.npmjs.org/dnode/0.3.9", + "0.3.10": "http://registry.npmjs.org/dnode/0.3.10", + "0.3.11": "http://registry.npmjs.org/dnode/0.3.11", + "0.4.0": "http://registry.npmjs.org/dnode/0.4.0", + "0.4.1": "http://registry.npmjs.org/dnode/0.4.1", + "0.4.2": "http://registry.npmjs.org/dnode/0.4.2", + "0.4.3": "http://registry.npmjs.org/dnode/0.4.3", + "0.4.4": "http://registry.npmjs.org/dnode/0.4.4", + "0.4.5": "http://registry.npmjs.org/dnode/0.4.5", + "0.5.0": "http://registry.npmjs.org/dnode/0.5.0", + "0.5.1": "http://registry.npmjs.org/dnode/0.5.1", + "0.5.2": "http://registry.npmjs.org/dnode/0.5.2", + "0.5.3": "http://registry.npmjs.org/dnode/0.5.3", + "0.5.4": "http://registry.npmjs.org/dnode/0.5.4", + "0.5.5": "http://registry.npmjs.org/dnode/0.5.5", + "0.5.6": "http://registry.npmjs.org/dnode/0.5.6", + "0.5.7": "http://registry.npmjs.org/dnode/0.5.7", + "0.5.8": "http://registry.npmjs.org/dnode/0.5.8", + "0.5.9": "http://registry.npmjs.org/dnode/0.5.9", + "0.6.0": "http://registry.npmjs.org/dnode/0.6.0", + "0.6.1": "http://registry.npmjs.org/dnode/0.6.1", + "0.6.2": "http://registry.npmjs.org/dnode/0.6.2", + "0.6.3": "http://registry.npmjs.org/dnode/0.6.3", + "0.6.4": "http://registry.npmjs.org/dnode/0.6.4", + "0.6.5": "http://registry.npmjs.org/dnode/0.6.5", + "0.6.6": "http://registry.npmjs.org/dnode/0.6.6", + "0.6.7": "http://registry.npmjs.org/dnode/0.6.7", + "0.6.8": "http://registry.npmjs.org/dnode/0.6.8", + "0.6.9": "http://registry.npmjs.org/dnode/0.6.9", + "0.6.10": "http://registry.npmjs.org/dnode/0.6.10", + "0.6.11": "http://registry.npmjs.org/dnode/0.6.11", + "0.6.12": "http://registry.npmjs.org/dnode/0.6.12", + "0.7.0": "http://registry.npmjs.org/dnode/0.7.0", + "0.7.1": "http://registry.npmjs.org/dnode/0.7.1", + "0.7.2": "http://registry.npmjs.org/dnode/0.7.2", + "0.7.3": "http://registry.npmjs.org/dnode/0.7.3", + "0.7.4": "http://registry.npmjs.org/dnode/0.7.4", + "0.7.5": "http://registry.npmjs.org/dnode/0.7.5", + "0.8.0": "http://registry.npmjs.org/dnode/0.8.0", + "0.8.1": "http://registry.npmjs.org/dnode/0.8.1", + "0.8.2": "http://registry.npmjs.org/dnode/0.8.2", + "0.9.0": "http://registry.npmjs.org/dnode/0.9.0", + "0.9.1": "http://registry.npmjs.org/dnode/0.9.1", + "0.9.2": "http://registry.npmjs.org/dnode/0.9.2" + }, + "dist": { + "0.2.10": { + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.2.10.tgz" + }, + "0.2.11": { + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.2.11.tgz" + }, + "0.2.12": { + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.2.12.tgz" + }, + "0.2.13": { + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.2.13.tgz" + }, + "0.2.4": { + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.2.4.tgz" + }, + "0.2.5": { + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.2.5.tgz" + }, + "0.2.6": { + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.2.6.tgz" + }, + "0.2.7": { + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.2.7.tgz" + }, + "0.2.9": { + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.2.9.tgz" + }, + "0.3.0": { + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.3.0.tgz" + }, + "0.3.1": { + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.3.1.tgz" + }, + "0.3.2": { + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.3.2.tgz" + }, + "0.3.3": { + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.3.3.tgz" + }, + "0.3.5": { + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.3.5.tgz" + }, + "0.3.6": { + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.3.6.tgz" + }, + "0.3.7": { + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.3.7.tgz" + }, + "0.3.8": { + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.3.8.tgz" + }, + "0.3.9": { + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.3.9.tgz" + }, + "0.3.10": { + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.3.10.tgz" + }, + "0.3.11": { + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.3.11.tgz" + }, + "0.4.0": { + "shasum": "645d11abcb36e5efdf5505843c8a9edbb4d55afa", + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "07819826c4689304fc5a58aa67151556d61c3545", + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "17280e2d1fcba5b0309e325e41dc8d6124e2b6ae", + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "9035867dc5df9bab637d94a4285734a59fb1d901", + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.4.3.tgz" + }, + "0.4.4": { + "shasum": "04983a17bb47c46367cfc6af7d2d37dfde1ad382", + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.4.4.tgz" + }, + "0.4.5": { + "shasum": "35e65d40c69a635ba0ef537e9ff68fef96bcdbbf", + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.4.5.tgz" + }, + "0.5.0": { + "shasum": "4079ecd129b7e480be41a189e31d9d67e8b99cf2", + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "c93c1363a464cf5326f304bd253241323151d4d4", + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "92897ef45db452e3d4406bff757f43ac2b911dfa", + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.5.2.tgz" + }, + "0.5.3": { + "shasum": "ec5aa246d34bda5ffa6608a964ed6c1529998b07", + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.5.3.tgz" + }, + "0.5.4": { + "shasum": "a65b304784b20f8555729e95fcec3c4539b3c7ee", + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.5.4.tgz" + }, + "0.5.5": { + "shasum": "cee0def8d3452ae6f711a9bcfd2651659e7bfa82", + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.5.5.tgz" + }, + "0.5.6": { + "shasum": "9adaa5d702dc58c3124e1085b30cce96bb17f940", + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.5.6.tgz" + }, + "0.5.7": { + "shasum": "31f9e8201bd9a20d5860579e4d7c1e61e4529422", + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.5.7.tgz" + }, + "0.5.8": { + "shasum": "63bf86170190888a25f8df2d2b33a668f446a707", + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.5.8.tgz" + }, + "0.5.9": { + "shasum": "5d4b0e164ba07fe4d02b39c8ee5c16b125eb8b28", + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.5.9.tgz" + }, + "0.6.0": { + "shasum": "8d8dc835a574cf6e8a2705f1d479c7bd7c3be44f", + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "91ce07ac93b7e4f62153f4a13cb5017e81b37265", + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.6.1.tgz" + }, + "0.6.2": { + "shasum": "255051a52b27c0d860508f4b5ffb3c89ac0f0618", + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.6.2.tgz" + }, + "0.6.3": { + "shasum": "be5b997574f48538ee51e8a4f762654bbb47df87", + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.6.3.tgz" + }, + "0.6.4": { + "shasum": "b2b2b7639a4b9d0074ae7f954a800ee3b5056240", + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.6.4.tgz" + }, + "0.6.5": { + "shasum": "f4e2165d9d200c5a7fc461eb2a0beb2c7ae0a724", + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.6.5.tgz" + }, + "0.6.6": { + "shasum": "20d81f0971b11d28474077f42c33cc4f574c67eb", + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.6.6.tgz" + }, + "0.6.7": { + "shasum": "6c2c6912f7bc9553450b09648a57cb99b419ecc4", + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.6.7.tgz" + }, + "0.6.8": { + "shasum": "0d55d5acb28813786550afdda349b42f62d2ea60", + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.6.8.tgz" + }, + "0.6.9": { + "shasum": "c2f70bd12c3c22fe137b81283f003b90db7635e3", + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.6.9.tgz" + }, + "0.6.10": { + "shasum": "bb4fc050698a29540d72cdda8e8b06cc73401f71", + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.6.10.tgz" + }, + "0.6.11": { + "shasum": "7b6678557bf41234bd786cab73754b97d95a9150", + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.6.11.tgz" + }, + "0.6.12": { + "shasum": "f49e424b1153127b97782b58447efde285277c21", + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.6.12.tgz" + }, + "0.7.0": { + "shasum": "3f877e2b2eec10150e6fb6ab9f6ec88299a59ff6", + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.7.0.tgz" + }, + "0.7.1": { + "shasum": "d581c24743f7e3985051008a42c06d2362ebb4a4", + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.7.1.tgz" + }, + "0.7.2": { + "shasum": "ad9968605216931b9a1d22ce75c05d2deb653ad7", + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.7.2.tgz" + }, + "0.7.3": { + "shasum": "5c348fea68c42e55cc93782d1ae6e82fb47045bb", + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.7.3.tgz" + }, + "0.7.4": { + "shasum": "b395b365fddcb925421d9870577c22453d89ab38", + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.7.4.tgz" + }, + "0.7.5": { + "shasum": "d9c675e698dfef00d672f14389ad3fae1642c7dd", + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.7.5.tgz" + }, + "0.8.0": { + "shasum": "6fffd64aa5d21fffb1a4748421c75a284e9d3d87", + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.8.0.tgz" + }, + "0.8.1": { + "shasum": "abaaa3e0a24b1d843240b37d5bf5589bd731cac8", + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.8.1.tgz" + }, + "0.8.2": { + "shasum": "aba3d45641689942f87f8bd2e7d66dc804c4e95c", + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.8.2.tgz" + }, + "0.9.0": { + "shasum": "7603915d5674a784a8db4ffdee22a8cefad1536d", + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.9.0.tgz" + }, + "0.9.1": { + "shasum": "a1f21c398ffc682321b7934235c4a616e1473bc0", + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.9.1.tgz" + }, + "0.9.2": { + "shasum": "e856c9081f0a9db2dacc21b2d9ef9a320b722cad", + "tarball": "http://registry.npmjs.org/dnode/-/dnode-0.9.2.tgz" + } + }, + "keywords": [ + "message passing", + "rpc", + "rmi", + "drb", + "remote", + "communication", + "websockets", + "socket.io" + ], + "url": "http://registry.npmjs.org/dnode/" + }, + "dnode-ez": { + "name": "dnode-ez", + "description": "dnode made even easier!", + "dist-tags": { + "latest": "0.0.7" + }, + "maintainers": [ + { + "name": "rook2pawn", + "email": "rook2pawn@gmail.com" + } + ], + "time": { + "modified": "2011-10-18T02:33:11.591Z", + "created": "2011-08-04T10:11:46.720Z", + "0.0.1": "2011-08-04T10:11:47.628Z", + "0.0.2": "2011-08-05T00:43:11.144Z", + "0.0.3": "2011-10-04T21:16:46.873Z", + "0.0.4": "2011-10-08T06:04:27.305Z", + "0.0.5": "2011-10-09T09:35:39.920Z", + "0.0.6": "2011-10-17T06:49:26.693Z", + "0.0.7": "2011-10-18T02:22:32.005Z" + }, + "author": { + "name": "David Wee", + "email": "rook2pawn@gmail.com", + "url": "http://rook2pawn.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/rook2pawn/node-dnode-ez.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/dnode-ez/0.0.1", + "0.0.2": "http://registry.npmjs.org/dnode-ez/0.0.2", + "0.0.3": "http://registry.npmjs.org/dnode-ez/0.0.3", + "0.0.4": "http://registry.npmjs.org/dnode-ez/0.0.4", + "0.0.5": "http://registry.npmjs.org/dnode-ez/0.0.5", + "0.0.6": "http://registry.npmjs.org/dnode-ez/0.0.6", + "0.0.7": "http://registry.npmjs.org/dnode-ez/0.0.7" + }, + "dist": { + "0.0.1": { + "shasum": "b13fa78f1e3a2753b17d3da1ac39bd83ff2d721c", + "tarball": "http://registry.npmjs.org/dnode-ez/-/dnode-ez-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "840b9cc8fec498a31587e9f61259a396a00be5b1", + "tarball": "http://registry.npmjs.org/dnode-ez/-/dnode-ez-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "08e93ee942d2df3eed8d3a839a8aeba17a15414e", + "tarball": "http://registry.npmjs.org/dnode-ez/-/dnode-ez-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "86e7efe606e4f0d693c3d7a59d93c6417a6f9658", + "tarball": "http://registry.npmjs.org/dnode-ez/-/dnode-ez-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "d18317b5ff84dd95e24fcf61361c01db50a27203", + "tarball": "http://registry.npmjs.org/dnode-ez/-/dnode-ez-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "7368abe96d3b3d44f63fb94bffcf1fccaa2df9e1", + "tarball": "http://registry.npmjs.org/dnode-ez/-/dnode-ez-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "2fb69337fa541cbbf9f8ef7c7092a59ece7ba9f0", + "tarball": "http://registry.npmjs.org/dnode-ez/-/dnode-ez-0.0.7.tgz" + } + }, + "keywords": [ + "message passing", + "rpc", + "rmi", + "drb", + "remote", + "communication", + "websockets", + "socket.io" + ], + "url": "http://registry.npmjs.org/dnode-ez/" + }, + "dnode-protocol": { + "name": "dnode-protocol", + "description": "Implements the dnode protocol abstractly", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-11-04T07:13:52.806Z", + "created": "2011-02-22T23:43:06.559Z", + "0.0.1": "2011-02-22T23:43:07.191Z", + "0.0.2": "2011-02-23T03:08:59.096Z", + "0.0.4": "2011-02-25T09:08:58.451Z", + "0.0.5": "2011-02-25T09:19:32.998Z", + "0.0.6": "2011-04-01T11:05:42.438Z", + "0.0.7": "2011-04-21T10:49:03.198Z", + "0.0.8": "2011-04-28T10:09:45.838Z", + "0.0.9": "2011-05-26T18:15:48.997Z", + "0.0.10": "2011-06-21T19:50:49.418Z", + "0.0.11": "2011-08-09T00:59:35.272Z", + "0.0.12": "2011-08-09T01:09:46.348Z", + "0.1.0": "2011-10-03T06:13:54.220Z", + "0.1.1": "2011-11-04T07:13:52.806Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/dnode-protocol.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/dnode-protocol/0.0.1", + "0.0.2": "http://registry.npmjs.org/dnode-protocol/0.0.2", + "0.0.4": "http://registry.npmjs.org/dnode-protocol/0.0.4", + "0.0.5": "http://registry.npmjs.org/dnode-protocol/0.0.5", + "0.0.6": "http://registry.npmjs.org/dnode-protocol/0.0.6", + "0.0.7": "http://registry.npmjs.org/dnode-protocol/0.0.7", + "0.0.8": "http://registry.npmjs.org/dnode-protocol/0.0.8", + "0.0.9": "http://registry.npmjs.org/dnode-protocol/0.0.9", + "0.0.10": "http://registry.npmjs.org/dnode-protocol/0.0.10", + "0.0.11": "http://registry.npmjs.org/dnode-protocol/0.0.11", + "0.0.12": "http://registry.npmjs.org/dnode-protocol/0.0.12", + "0.1.0": "http://registry.npmjs.org/dnode-protocol/0.1.0", + "0.1.1": "http://registry.npmjs.org/dnode-protocol/0.1.1" + }, + "dist": { + "0.0.1": { + "shasum": "3caa4d3825a38602ba40d4aabe8230223cf59f58", + "tarball": "http://registry.npmjs.org/dnode-protocol/-/dnode-protocol-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c3931f26fa719918abd38a66159c2a664f3da13d", + "tarball": "http://registry.npmjs.org/dnode-protocol/-/dnode-protocol-0.0.2.tgz" + }, + "0.0.4": { + "shasum": "e4cc4080051eecf0301fa42057ba2cbab5aa38f0", + "tarball": "http://registry.npmjs.org/dnode-protocol/-/dnode-protocol-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "e9051986031de636320df89257d3c3f979bf7592", + "tarball": "http://registry.npmjs.org/dnode-protocol/-/dnode-protocol-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "6920bc12be655b4ee17156682d240062da58f7dd", + "tarball": "http://registry.npmjs.org/dnode-protocol/-/dnode-protocol-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "c97b7e097c974e4396c4f936cb7c79a55116c7b3", + "tarball": "http://registry.npmjs.org/dnode-protocol/-/dnode-protocol-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "85dada43aa00ee775d1eda005fc96307dbf64fd8", + "tarball": "http://registry.npmjs.org/dnode-protocol/-/dnode-protocol-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "e22bf0d8e416209f7b717c6bcfdcad0fd9af985e", + "tarball": "http://registry.npmjs.org/dnode-protocol/-/dnode-protocol-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "0be830aabdcc2fa16a6ae30b9afcb8c922c43989", + "tarball": "http://registry.npmjs.org/dnode-protocol/-/dnode-protocol-0.0.10.tgz" + }, + "0.0.11": { + "shasum": "d9739262f0c098240af16572b8044163a6c4677a", + "tarball": "http://registry.npmjs.org/dnode-protocol/-/dnode-protocol-0.0.11.tgz" + }, + "0.0.12": { + "shasum": "8e9be769e1cc55d76b3de9e06f132c2f261d4752", + "tarball": "http://registry.npmjs.org/dnode-protocol/-/dnode-protocol-0.0.12.tgz" + }, + "0.1.0": { + "shasum": "185b87c6f0820d8746ec1be23801791468c70db8", + "tarball": "http://registry.npmjs.org/dnode-protocol/-/dnode-protocol-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "b8a2330cb90e0b85e4c8b4cff5e1aca4e2c6c408", + "tarball": "http://registry.npmjs.org/dnode-protocol/-/dnode-protocol-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/dnode-protocol/" + }, + "dnode-session": { + "name": "dnode-session", + "description": "Expose your connect/express sessions to dnode", + "dist-tags": { + "latest": "0.0.4-1" + }, + "maintainers": [ + { + "name": "tblobaum", + "email": "tblobaum@gmail.com" + } + ], + "time": { + "modified": "2011-11-23T11:01:23.320Z", + "created": "2011-09-27T09:37:19.574Z", + "0.0.1": "2011-09-27T09:37:21.130Z", + "0.0.2": "2011-11-14T10:18:19.667Z", + "0.0.2-1": "2011-11-14T10:45:51.504Z", + "0.0.3": "2011-11-14T12:06:13.868Z", + "0.0.4": "2011-11-18T18:50:27.869Z", + "0.0.4-1": "2011-11-23T11:01:23.320Z" + }, + "author": { + "name": "Thomas Blobaum", + "email": "tblobaum@gmail.com", + "url": "http://tomblobaum.tumblr.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/tblobaum/dnode-session.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/dnode-session/0.0.1", + "0.0.2": "http://registry.npmjs.org/dnode-session/0.0.2", + "0.0.2-1": "http://registry.npmjs.org/dnode-session/0.0.2-1", + "0.0.3": "http://registry.npmjs.org/dnode-session/0.0.3", + "0.0.4": "http://registry.npmjs.org/dnode-session/0.0.4", + "0.0.4-1": "http://registry.npmjs.org/dnode-session/0.0.4-1" + }, + "dist": { + "0.0.1": { + "shasum": "9e8170e73020c8338dae046d0f1d96d4a7d9180a", + "tarball": "http://registry.npmjs.org/dnode-session/-/dnode-session-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "3b96f07226695f42519a914bebf27068d243449c", + "tarball": "http://registry.npmjs.org/dnode-session/-/dnode-session-0.0.2.tgz" + }, + "0.0.2-1": { + "shasum": "53836ecb9b5994beb9bfca53d00b7893e0512026", + "tarball": "http://registry.npmjs.org/dnode-session/-/dnode-session-0.0.2-1.tgz" + }, + "0.0.3": { + "shasum": "9a4e3c9bd08e0ff010918d71c9251ed74e748fb7", + "tarball": "http://registry.npmjs.org/dnode-session/-/dnode-session-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "1f4e0002c95a21c535ce740af61d0d14695c7af9", + "tarball": "http://registry.npmjs.org/dnode-session/-/dnode-session-0.0.4.tgz" + }, + "0.0.4-1": { + "shasum": "461ecc89a70d06334100b34ca2f5d1fea2949112", + "tarball": "http://registry.npmjs.org/dnode-session/-/dnode-session-0.0.4-1.tgz" + } + }, + "url": "http://registry.npmjs.org/dnode-session/" + }, + "dnode-smoothiecharts": { + "name": "dnode-smoothiecharts", + "description": "Smoothie Charts middleware for DNode", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "chrispartridge", + "email": "chrisp@dynamicmethods.com.au" + } + ], + "time": { + "modified": "2011-05-14T05:17:45.091Z", + "created": "2011-05-14T05:17:43.505Z", + "0.0.1": "2011-05-14T05:17:45.091Z" + }, + "author": { + "name": "Chris Partridge", + "email": "chrisp@dynamicmethods.com.au", + "url": "http://www.dynamicmethods.com.au" + }, + "repository": { + "type": "git", + "url": "git://github.com/dynmeth/dnode-smoothiecharts.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/dnode-smoothiecharts/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "a29f60e71425ab94108d42cb8861b9f89af507ab", + "tarball": "http://registry.npmjs.org/dnode-smoothiecharts/-/dnode-smoothiecharts-0.0.1.tgz" + } + }, + "keywords": [ + "dnode", + "smoothiecharts", + "charting" + ], + "url": "http://registry.npmjs.org/dnode-smoothiecharts/" + }, + "dnode-stack": { + "name": "dnode-stack", + "description": "dnode middleware for processing web middleware stacks for socket.io", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-01-29T19:17:10.600Z", + "created": "2011-01-26T09:47:03.914Z", + "0.0.1": "2011-01-26T09:47:04.254Z", + "0.0.2": "2011-01-29T19:15:46.892Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "http://github.com/substack/dnode-stack.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/dnode-stack/0.0.1", + "0.0.2": "http://registry.npmjs.org/dnode-stack/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "5afff0573594380ab72cc57ef8083979b51a4531", + "tarball": "http://registry.npmjs.org/dnode-stack/-/dnode-stack-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "bf1a419c8905cb3e4d3a1c5d1c6c59eb5e53522c", + "tarball": "http://registry.npmjs.org/dnode-stack/-/dnode-stack-0.0.2.tgz" + } + }, + "keywords": [ + "dnode", + "middleware", + "metamiddleware" + ], + "url": "http://registry.npmjs.org/dnode-stack/" + }, + "dnode-worker": { + "name": "dnode-worker", + "description": "Stupid simple workers with DNode", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "stagas", + "email": "gstagas@gmail.com" + } + ], + "time": { + "modified": "2011-10-03T19:56:50.196Z", + "created": "2011-09-15T08:44:27.300Z", + "0.0.1": "2011-09-15T08:44:27.943Z", + "0.0.2": "2011-10-03T19:56:50.196Z" + }, + "author": { + "name": "George Stagas", + "email": "gstagas@gmail.com", + "url": "http://stagas.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/stagas/dnode-worker.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/dnode-worker/0.0.1", + "0.0.2": "http://registry.npmjs.org/dnode-worker/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "066347f6b846364871fd26c147dd3e9a41e56e57", + "tarball": "http://registry.npmjs.org/dnode-worker/-/dnode-worker-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "9089a1aa94594f18de371e65184423b9989a6e89", + "tarball": "http://registry.npmjs.org/dnode-worker/-/dnode-worker-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/dnode-worker/" + }, + "dns-server": { + "name": "dns-server", + "description": "DNS server for Node", + "dist-tags": { + "latest": "0.0.1a" + }, + "maintainers": [ + { + "name": "sh1mmer", + "email": "tom.croucher@gmail.com" + } + ], + "time": { + "modified": "2011-05-19T09:25:19.794Z", + "created": "2011-05-19T09:25:18.921Z", + "0.0.1a": "2011-05-19T09:25:19.794Z" + }, + "author": { + "name": "Tom Hughes-Croucher", + "email": "tom.croucher@gmail.com" + }, + "versions": { + "0.0.1a": "http://registry.npmjs.org/dns-server/0.0.1a" + }, + "dist": { + "0.0.1a": { + "shasum": "40d68a506b7e176540af9f9e48d6c2aebaf05348", + "tarball": "http://registry.npmjs.org/dns-server/-/dns-server-0.0.1a.tgz" + } + }, + "url": "http://registry.npmjs.org/dns-server/" + }, + "dns-srv": { + "name": "dns-srv", + "description": "A small library to help connect using DNS SRV records on node.js", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "dhruvbird", + "email": "dhruvbird@gmail.com" + }, + { + "name": "astro", + "email": "astro@spaceboyz.net" + } + ], + "time": { + "modified": "2011-06-14T17:47:24.384Z", + "created": "2011-06-14T08:53:48.704Z", + "0.0.1": "2011-06-14T08:53:50.681Z", + "0.0.3": "2011-06-14T11:03:00.934Z", + "0.0.4": "2011-06-14T11:09:12.272Z", + "0.0.5": "2011-06-14T13:49:17.741Z", + "0.0.6": "2011-06-14T17:47:24.384Z" + }, + "author": { + "name": "Astro", + "email": "astro@spaceboyz.net", + "url": "http://spaceboyz.net/~astro/" + }, + "repository": { + "type": "git", + "url": "git://github.com/dhruvbird/dns-srv.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/dns-srv/0.0.1", + "0.0.3": "http://registry.npmjs.org/dns-srv/0.0.3", + "0.0.4": "http://registry.npmjs.org/dns-srv/0.0.4", + "0.0.5": "http://registry.npmjs.org/dns-srv/0.0.5", + "0.0.6": "http://registry.npmjs.org/dns-srv/0.0.6" + }, + "dist": { + "0.0.1": { + "shasum": "d0a4e1b26fdf19e9c2406fb2d6caff86d5623be0", + "tarball": "http://registry.npmjs.org/dns-srv/-/dns-srv-0.0.1.tgz" + }, + "0.0.3": { + "shasum": "4bc172b416b0119349c138dcf97f5c43fe8e45cc", + "tarball": "http://registry.npmjs.org/dns-srv/-/dns-srv-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "1cb996787e3e908fe65fc6adb4d1f7438a1674ea", + "tarball": "http://registry.npmjs.org/dns-srv/-/dns-srv-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "c9cebe02bdd73d613eb4006af86f1519de16e1d4", + "tarball": "http://registry.npmjs.org/dns-srv/-/dns-srv-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "4c8e509548ad23b36461b416b9691e2288eda0b9", + "tarball": "http://registry.npmjs.org/dns-srv/-/dns-srv-0.0.6.tgz" + } + }, + "url": "http://registry.npmjs.org/dns-srv/" + }, + "doc": { + "name": "doc", + "description": "Runtime documentation tool for REPL", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "gozala", + "email": "rfobic@gmail.com" + } + ], + "time": { + "modified": "2011-09-04T13:59:47.322Z", + "created": "2011-09-02T15:12:08.201Z", + "0.0.1": "2011-09-02T15:12:11.111Z", + "0.0.2": "2011-09-04T13:59:47.322Z" + }, + "author": { + "name": "Irakli Gozalishvili", + "email": "rfobic@gmail.com", + "url": "http://jeditoolkit.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Gozala/doc.git", + "web": "https://github.com/Gozala/doc" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/doc/0.0.1", + "0.0.2": "http://registry.npmjs.org/doc/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "ec4287396acffce972ee26b1182fc61b24c2e677", + "tarball": "http://registry.npmjs.org/doc/-/doc-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "e05083cc6b6ec3679434eaf70a94c37082814772", + "tarball": "http://registry.npmjs.org/doc/-/doc-0.0.2.tgz" + } + }, + "keywords": [ + "runtime", + "documentation", + "docs", + "repl" + ], + "url": "http://registry.npmjs.org/doc/" + }, + "doc.md": { + "name": "doc.md", + "description": "A simple JSDoc documenation tool that creates markdown for node.js modules", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "pita", + "email": "petermartischka@googlemail.com" + } + ], + "time": { + "modified": "2011-07-30T16:12:16.215Z", + "created": "2011-05-29T18:30:57.859Z", + "0.0.1": "2011-05-29T18:30:58.718Z", + "0.0.2": "2011-05-30T15:11:25.585Z", + "0.0.3": "2011-07-30T16:12:16.215Z" + }, + "author": { + "name": "Peter 'Pita' Martischka", + "email": "petermartischka@googlemail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/doc.md/0.0.1", + "0.0.2": "http://registry.npmjs.org/doc.md/0.0.2", + "0.0.3": "http://registry.npmjs.org/doc.md/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "dd2bef3ff983e280aa1429d707f574da61425f77", + "tarball": "http://registry.npmjs.org/doc.md/-/doc.md-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "5fdaaa148b3425906f5926785937918dbb0c1213", + "tarball": "http://registry.npmjs.org/doc.md/-/doc.md-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "83d08dbbce72609c6678ca8f9e20b2fd455fea00", + "tarball": "http://registry.npmjs.org/doc.md/-/doc.md-0.0.3.tgz" + } + }, + "keywords": [ + "jsdoc", + "documenation", + "markdown" + ], + "url": "http://registry.npmjs.org/doc.md/" + }, + "docbuilder": { + "name": "docbuilder", + "description": "Generate HTML docs from Markdown", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "andris", + "email": "andris@node.ee" + } + ], + "time": { + "modified": "2011-11-02T15:05:54.509Z", + "created": "2011-11-02T15:05:51.182Z", + "0.1.0": "2011-11-02T15:05:54.509Z" + }, + "author": { + "name": "Andris Reinman" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/docbuilder/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "521dae72ac7b0ca29a6e8b2cfcae16c928d6e591", + "tarball": "http://registry.npmjs.org/docbuilder/-/docbuilder-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/docbuilder/" + }, + "docco": { + "name": "docco", + "description": "The Quick and Dirty Literate Programming Documentation Generator", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "documentcloud", + "email": "jeremy@documentcloud.org" + }, + { + "name": "jashkenas", + "email": "jashkenas@gmail.com" + } + ], + "author": { + "name": "Jeremy Ashkenas" + }, + "time": { + "modified": "2011-02-24T20:00:45.977Z", + "created": "2011-02-19T14:22:47.419Z", + "0.2.0": "2011-02-19T14:22:47.419Z", + "0.3.0": "2011-02-19T14:22:48.045Z" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/docco/0.2.0", + "0.3.0": "http://registry.npmjs.org/docco/0.3.0" + }, + "dist": { + "0.2.0": { + "tarball": "http://registry.npmjs.org/docco/-/docco-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "3ac78a1fa75ec2b79617f9cbb4f61444ea1f60fe", + "tarball": "http://registry.npmjs.org/docco/-/docco-0.3.0.tgz" + } + }, + "keywords": [ + "documentation", + "docs", + "generator", + "coffeescript" + ], + "url": "http://registry.npmjs.org/docco/" + }, + "docco-husky": { + "name": "docco-husky", + "description": "Generated static project documentation primarily for node.js projects. A fork of Docco", + "dist-tags": { + "latest": "0.2.3" + }, + "readme": "Overview\n--------\n\nA streamlined static site generator for project documentation based on [Docco](http://jashkenas.github.com/docco/). \"Husky\" because it's bigger and more irregular than Docco, like [Husky](http://www.wisegeek.com/what-is-a-husky-size-in-clothing.htm) Jeans you would buy at Sears back in the day.\n\nA fork of [Docco](http://jashkenas.github.com/docco/), intended to go beyond the appropriate scope of Docco itself. Forked because Docco itself is pretty simple and this is intended to diverge. The initial fork included merged pull requests from [nevir](https://github.com/nevir) and [jswartwood](https://github.com/jswartwood) for their work on supporting recursive directories and an improved \"Jump To\" menu.\n\n\nExamples\n--------\n\nCheck out the [generated documentation](http://mbrevoort.github.com/docco-husky/docco-husky/readme.html) for this project.\n\nOr these other samples\n\n* [batman.js](http://mbrevoort.github.com/docco-husky/batman/readme.html)\n* [backbone.js](http://mbrevoort.github.com/docco-husky/backbone/readme.html)\n\nInstallation\n------------\n\n### Possible Gotchas\n\n* Docco requires [Pygments](http://pygments.org/) to be installed and will try to install it if it's not already. \n* Perl is required for [cloc](http://cloc.sourceforge.net/)\n\nTo install via npm into your project:\n\n\tnpm install docco-husky\n\nInstall globally:\n\n\t[sudo] npm install -g docco-husky\n\nOr include as a dependency in your package.json\n\n\nGenerating Documentation\n------------------------\n\ndocco-husky will generate docs in a ./docs directory. It accepts multiple files (including \nwildcards) and directories for it to recurse.\n\n\tdocco-husky -name \"\" \n\n### Examples\n\n\t# from a local install\n\t./node_modules/.bin/docco-husky app.js lib public\n\t\n\t# with a project name\n\t./node_modules/.bin/docco-husky -name \"My Project\" app.js lib public\n\t\n\t# with wildcards\n\t./node_modules/.bin/docco-husky -name \"My Project\" *.js lib public\n\t\n\t# with global install\n\tdocco-husky -name \"My Project\" *.js lib public\n\t\t\t\n\nOutput\n------------------------\n\ndocco-husky will write generated files to ./docs . \n\nFor all source files, the output will be like \n. (e.g. foo.js) --> .html (e.g. foo.html).\n\nA readme.html will be generate and will include a formatted version of a \nREADME.md if your project includes it, some details from the a package.json file, \nand project stats generated by cloc.", + "maintainers": [ + { + "name": "mbrevoort", + "email": "mike@brevoort.com" + } + ], + "time": { + "modified": "2011-11-30T20:10:14.380Z", + "created": "2011-11-10T04:14:19.395Z", + "0.1.1": "2011-11-10T04:14:23.204Z", + "0.2.0": "2011-11-14T07:21:04.424Z", + "0.2.1": "2011-11-14T20:33:11.744Z", + "0.2.2": "2011-11-16T16:12:04.359Z", + "0.2.3": "2011-11-30T20:10:14.380Z" + }, + "author": { + "name": "Mike Brevoort", + "email": "mike@brevoort.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mbrevoort/docco-husky.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/docco-husky/0.1.1", + "0.2.0": "http://registry.npmjs.org/docco-husky/0.2.0", + "0.2.1": "http://registry.npmjs.org/docco-husky/0.2.1", + "0.2.2": "http://registry.npmjs.org/docco-husky/0.2.2", + "0.2.3": "http://registry.npmjs.org/docco-husky/0.2.3" + }, + "dist": { + "0.1.1": { + "shasum": "eb8dc60b1196f0cb67e150ffa53c0a271839963b", + "tarball": "http://registry.npmjs.org/docco-husky/-/docco-husky-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "2df5c75a7922ff94fd96d5c34ba5a4a21989df04", + "tarball": "http://registry.npmjs.org/docco-husky/-/docco-husky-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "735f5207c005ac3276254e78163d145f2e3759ab", + "tarball": "http://registry.npmjs.org/docco-husky/-/docco-husky-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "8692794bcb9b2b046f1d3344ff1ee0e7a83a5b36", + "tarball": "http://registry.npmjs.org/docco-husky/-/docco-husky-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "75d39cb1997aa122fe80292461e8b6636c916785", + "tarball": "http://registry.npmjs.org/docco-husky/-/docco-husky-0.2.3.tgz" + } + }, + "keywords": [ + "documentation", + "docs", + "generator", + "coffeescript" + ], + "url": "http://registry.npmjs.org/docco-husky/" + }, + "docdown": { + "name": "docdown", + "description": "A simple markdown to html command-line conversion tool", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "mgan59", + "email": "mgan59@gmail.com" + } + ], + "time": { + "modified": "2011-08-24T20:42:17.035Z", + "created": "2011-08-24T20:38:51.354Z", + "0.0.2": "2011-08-24T20:38:51.434Z", + "0.0.3": "2011-08-24T20:42:17.035Z" + }, + "author": { + "name": "Morgan Craft" + }, + "repository": { + "type": "git", + "url": "git://github.com/mgan59/docdown.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/docdown/0.0.2", + "0.0.3": "http://registry.npmjs.org/docdown/0.0.3" + }, + "dist": { + "0.0.2": { + "shasum": "3c71148a1f0fa709512c3bda8dfb3189bdd5ed57", + "tarball": "http://registry.npmjs.org/docdown/-/docdown-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "c439c87a177610adb275ddf5c6d199bfa8189e85", + "tarball": "http://registry.npmjs.org/docdown/-/docdown-0.0.3.tgz" + } + }, + "keywords": [ + "markdown", + "html", + "document", + "command-line" + ], + "url": "http://registry.npmjs.org/docdown/" + }, + "docket": { + "name": "docket", + "description": "minimalist documentation generator", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "ghostfact", + "email": "russell.mcclellan@gmail.com" + } + ], + "time": { + "modified": "2011-09-11T08:35:05.923Z", + "created": "2011-09-11T05:17:38.569Z", + "0.0.1": "2011-09-11T05:17:38.971Z", + "0.0.2": "2011-09-11T07:20:44.881Z", + "0.0.3": "2011-09-11T08:05:25.624Z", + "0.0.4": "2011-09-11T08:35:05.923Z" + }, + "author": { + "name": "Russell McClellan", + "email": "russell.mcclellan@gmail.com", + "url": "http://www.ghostfact.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/ghostfact/node-docket.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/docket/0.0.1", + "0.0.2": "http://registry.npmjs.org/docket/0.0.2", + "0.0.3": "http://registry.npmjs.org/docket/0.0.3", + "0.0.4": "http://registry.npmjs.org/docket/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "676ee60105bffce689fc108c0f496dcb42cd6c1a", + "tarball": "http://registry.npmjs.org/docket/-/docket-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "08f875aece1863c323064ab3688bed89035e8654", + "tarball": "http://registry.npmjs.org/docket/-/docket-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "838c15a2e9963eb4c68d1029b6ef6f6f31f2ecab", + "tarball": "http://registry.npmjs.org/docket/-/docket-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "60b5848d071d3414b96780e53574782ca752429a", + "tarball": "http://registry.npmjs.org/docket/-/docket-0.0.4.tgz" + } + }, + "keywords": [ + "autodoc", + "markdown", + "documentation", + "doc" + ], + "url": "http://registry.npmjs.org/docket/" + }, + "docpad": { + "name": "docpad", + "description": "DocPad (like Jekyll) is a static website generator, unlike Jekyll it's written in CoffeeScript+Node.js instead of Ruby, and also allows the template engine complete access to the document model. This means you have unlimited power as a CMS and the simplicity of a notepad.", + "dist-tags": { + "latest": "2.4.0" + }, + "maintainers": [ + { + "name": "balupton", + "email": "b@lupton.cc" + } + ], + "time": { + "modified": "2011-11-25T13:29:04.702Z", + "created": "2011-05-08T22:08:33.736Z", + "0.1.0": "2011-05-08T22:08:35.296Z", + "0.4.0": "2011-05-09T02:37:11.844Z", + "0.5.0": "2011-05-09T12:29:30.175Z", + "0.5.1": "2011-05-09T12:59:32.033Z", + "0.6.0": "2011-05-12T00:40:18.224Z", + "0.6.1": "2011-05-20T01:57:53.845Z", + "0.7.0": "2011-05-20T03:22:09.943Z", + "0.8.0": "2011-05-23T06:42:53.945Z", + "0.8.1": "2011-05-23T06:45:40.992Z", + "0.8.3": "2011-07-05T03:49:27.684Z", + "0.9.0": "2011-07-06T06:50:19.487Z", + "0.9.1": "2011-07-06T09:39:41.779Z", + "0.9.2": "2011-07-06T10:07:45.304Z", + "0.9.3": "2011-07-07T03:05:54.131Z", + "0.9.4": "2011-07-07T03:09:53.508Z", + "0.9.5": "2011-07-07T04:42:44.591Z", + "0.9.6": "2011-07-07T12:02:06.861Z", + "0.9.7": "2011-07-07T12:11:33.607Z", + "0.9.8": "2011-07-07T13:09:32.631Z", + "0.9.9": "2011-07-07T13:28:11.045Z", + "0.9.10": "2011-07-07T14:37:04.911Z", + "0.9.11": "2011-07-07T14:43:26.722Z", + "0.9.12": "2011-07-07T22:47:13.405Z", + "0.9.13": "2011-07-08T02:23:53.289Z", + "0.9.14": "2011-07-08T08:25:56.960Z", + "0.9.15": "2011-07-14T01:42:06.508Z", + "0.9.16": "2011-07-15T03:16:02.184Z", + "0.9.17": "2011-07-15T04:12:19.548Z", + "0.9.18": "2011-07-15T05:23:27.317Z", + "0.9.19": "2011-07-19T00:28:03.958Z", + "0.9.20": "2011-07-25T00:05:58.579Z", + "0.9.21": "2011-08-15T06:59:48.358Z", + "0.9.22": "2011-09-13T10:38:50.285Z", + "0.10.0": "2011-09-14T12:49:37.349Z", + "1.0.0": "2011-09-20T06:39:16.330Z", + "1.0.1": "2011-09-20T10:33:23.607Z", + "1.0.2": "2011-09-20T10:40:27.756Z", + "1.0.3": "2011-09-20T11:58:36.774Z", + "1.1.1": "2011-09-28T09:20:24.004Z", + "1.1.2": "2011-09-28T10:09:05.285Z", + "1.1.3": "2011-09-28T10:33:53.682Z", + "1.1.4": "2011-09-28T11:45:39.109Z", + "1.1.5": "2011-09-28T11:52:43.355Z", + "1.1.6": "2011-09-28T11:56:54.666Z", + "1.2.0": "2011-09-29T11:30:03.237Z", + "1.2.1": "2011-09-29T12:20:52.571Z", + "1.2.2": "2011-09-30T09:38:39.390Z", + "1.2.3": "2011-10-01T01:23:16.362Z", + "1.2.4": "2011-10-02T04:52:49.362Z", + "1.2.5": "2011-10-02T14:15:45.600Z", + "1.3.0": "2011-10-03T08:35:48.181Z", + "1.3.1": "2011-10-03T11:15:15.194Z", + "1.3.2": "2011-10-05T12:09:50.832Z", + "1.3.3": "2011-10-05T12:42:38.087Z", + "1.3.4": "2011-10-05T22:14:44.060Z", + "1.3.5": "2011-10-06T12:05:04.457Z", + "1.3.6": "2011-10-14T07:21:11.747Z", + "1.3.7": "2011-10-17T09:16:58.189Z", + "1.3.8": "2011-10-18T07:26:22.459Z", + "1.4.0": "2011-10-21T15:06:31.032Z", + "1.4.1": "2011-11-01T12:15:59.078Z", + "2.0.0": "2011-11-08T06:21:16.543Z", + "2.0.1": "2011-11-08T10:23:09.939Z", + "2.0.2": "2011-11-09T08:54:22.211Z", + "2.1.0": "2011-11-10T10:07:22.120Z", + "2.1.1": "2011-11-12T18:16:13.003Z", + "2.2.0": "2011-11-14T08:22:54.795Z", + "2.2.1": "2011-11-18T07:39:04.979Z", + "2.3.0": "2011-11-18T11:18:43.512Z", + "2.3.1": "2011-11-18T11:35:14.545Z", + "2.3.2": "2011-11-18T11:42:34.748Z", + "2.3.3": "2011-11-18T11:44:08.039Z", + "2.3.4": "2011-11-18T11:47:50.869Z", + "2.3.5": "2011-11-19T02:26:53.974Z", + "2.3.6": "2011-11-19T04:20:09.867Z", + "2.3.7": "2011-11-19T04:47:12.216Z", + "2.3.8": "2011-11-22T21:18:21.882Z", + "2.4.0": "2011-11-25T13:29:04.702Z" + }, + "author": { + "name": "Benjamin Lupton", + "email": "b@lupton.cc", + "url": "http://balupton.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/balupton/docpad.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/docpad/0.1.0", + "0.4.0": "http://registry.npmjs.org/docpad/0.4.0", + "0.5.0": "http://registry.npmjs.org/docpad/0.5.0", + "0.5.1": "http://registry.npmjs.org/docpad/0.5.1", + "0.6.0": "http://registry.npmjs.org/docpad/0.6.0", + "0.6.1": "http://registry.npmjs.org/docpad/0.6.1", + "0.7.0": "http://registry.npmjs.org/docpad/0.7.0", + "0.8.0": "http://registry.npmjs.org/docpad/0.8.0", + "0.8.1": "http://registry.npmjs.org/docpad/0.8.1", + "0.8.3": "http://registry.npmjs.org/docpad/0.8.3", + "0.9.0": "http://registry.npmjs.org/docpad/0.9.0", + "0.9.1": "http://registry.npmjs.org/docpad/0.9.1", + "0.9.2": "http://registry.npmjs.org/docpad/0.9.2", + "0.9.3": "http://registry.npmjs.org/docpad/0.9.3", + "0.9.4": "http://registry.npmjs.org/docpad/0.9.4", + "0.9.5": "http://registry.npmjs.org/docpad/0.9.5", + "0.9.6": "http://registry.npmjs.org/docpad/0.9.6", + "0.9.7": "http://registry.npmjs.org/docpad/0.9.7", + "0.9.8": "http://registry.npmjs.org/docpad/0.9.8", + "0.9.9": "http://registry.npmjs.org/docpad/0.9.9", + "0.9.10": "http://registry.npmjs.org/docpad/0.9.10", + "0.9.11": "http://registry.npmjs.org/docpad/0.9.11", + "0.9.12": "http://registry.npmjs.org/docpad/0.9.12", + "0.9.13": "http://registry.npmjs.org/docpad/0.9.13", + "0.9.14": "http://registry.npmjs.org/docpad/0.9.14", + "0.9.15": "http://registry.npmjs.org/docpad/0.9.15", + "0.9.16": "http://registry.npmjs.org/docpad/0.9.16", + "0.9.17": "http://registry.npmjs.org/docpad/0.9.17", + "0.9.18": "http://registry.npmjs.org/docpad/0.9.18", + "0.9.19": "http://registry.npmjs.org/docpad/0.9.19", + "0.9.20": "http://registry.npmjs.org/docpad/0.9.20", + "0.9.21": "http://registry.npmjs.org/docpad/0.9.21", + "0.9.22": "http://registry.npmjs.org/docpad/0.9.22", + "0.10.0": "http://registry.npmjs.org/docpad/0.10.0", + "1.0.0": "http://registry.npmjs.org/docpad/1.0.0", + "1.0.1": "http://registry.npmjs.org/docpad/1.0.1", + "1.0.2": "http://registry.npmjs.org/docpad/1.0.2", + "1.0.3": "http://registry.npmjs.org/docpad/1.0.3", + "1.1.1": "http://registry.npmjs.org/docpad/1.1.1", + "1.1.2": "http://registry.npmjs.org/docpad/1.1.2", + "1.1.3": "http://registry.npmjs.org/docpad/1.1.3", + "1.1.4": "http://registry.npmjs.org/docpad/1.1.4", + "1.1.6": "http://registry.npmjs.org/docpad/1.1.6", + "1.2.0": "http://registry.npmjs.org/docpad/1.2.0", + "1.2.1": "http://registry.npmjs.org/docpad/1.2.1", + "1.2.2": "http://registry.npmjs.org/docpad/1.2.2", + "1.2.3": "http://registry.npmjs.org/docpad/1.2.3", + "1.2.4": "http://registry.npmjs.org/docpad/1.2.4", + "1.2.5": "http://registry.npmjs.org/docpad/1.2.5", + "1.3.0": "http://registry.npmjs.org/docpad/1.3.0", + "1.3.1": "http://registry.npmjs.org/docpad/1.3.1", + "1.3.2": "http://registry.npmjs.org/docpad/1.3.2", + "1.3.3": "http://registry.npmjs.org/docpad/1.3.3", + "1.3.5": "http://registry.npmjs.org/docpad/1.3.5", + "1.3.6": "http://registry.npmjs.org/docpad/1.3.6", + "1.3.7": "http://registry.npmjs.org/docpad/1.3.7", + "1.3.8": "http://registry.npmjs.org/docpad/1.3.8", + "1.4.0": "http://registry.npmjs.org/docpad/1.4.0", + "1.4.1": "http://registry.npmjs.org/docpad/1.4.1", + "2.0.0": "http://registry.npmjs.org/docpad/2.0.0", + "2.0.1": "http://registry.npmjs.org/docpad/2.0.1", + "2.0.2": "http://registry.npmjs.org/docpad/2.0.2", + "2.1.0": "http://registry.npmjs.org/docpad/2.1.0", + "2.1.1": "http://registry.npmjs.org/docpad/2.1.1", + "2.2.0": "http://registry.npmjs.org/docpad/2.2.0", + "2.2.1": "http://registry.npmjs.org/docpad/2.2.1", + "2.3.0": "http://registry.npmjs.org/docpad/2.3.0", + "2.3.1": "http://registry.npmjs.org/docpad/2.3.1", + "2.3.2": "http://registry.npmjs.org/docpad/2.3.2", + "2.3.3": "http://registry.npmjs.org/docpad/2.3.3", + "2.3.4": "http://registry.npmjs.org/docpad/2.3.4", + "2.3.5": "http://registry.npmjs.org/docpad/2.3.5", + "2.3.6": "http://registry.npmjs.org/docpad/2.3.6", + "2.3.7": "http://registry.npmjs.org/docpad/2.3.7", + "2.3.8": "http://registry.npmjs.org/docpad/2.3.8", + "2.4.0": "http://registry.npmjs.org/docpad/2.4.0" + }, + "dist": { + "0.1.0": { + "shasum": "aa7757392a6f757f46d11654bd64bb12a8c485e4", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-0.1.0.tgz" + }, + "0.4.0": { + "shasum": "69c87661fc5a9e63e97d83570af8bb033b1e8add", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-0.4.0.tgz" + }, + "0.5.0": { + "shasum": "00fca4f7528f77b07e17b32880a4714347f33455", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "d3a84eab106f70a7c17f2310a46d331f235fe0d4", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-0.5.1.tgz" + }, + "0.6.0": { + "shasum": "eda8bb8d50e303c516c638458cdb1f5092dcc49a", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "bdb4b8e9325b48fc448af347495e6acb17e745da", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-0.6.1.tgz" + }, + "0.7.0": { + "shasum": "509bfc2d824c39af6dd6e5a991240f42b0a5e3ae", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-0.7.0.tgz" + }, + "0.8.0": { + "shasum": "379efc38b2e00e7bb32fbcffd08e6f02248190a0", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-0.8.0.tgz" + }, + "0.8.1": { + "shasum": "ec7047a69daa82d6bd94a8207c178c347f37da1b", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-0.8.1.tgz" + }, + "0.8.3": { + "shasum": "62a9018ac0c54d2018c2b7380466425c6d1573ae", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-0.8.3.tgz" + }, + "0.9.0": { + "shasum": "eabc85d2d1818d538aa35be513ec6c902cce74e9", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-0.9.0.tgz" + }, + "0.9.1": { + "shasum": "983818463e41a83706ed24801af3f5ebf105decc", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-0.9.1.tgz" + }, + "0.9.2": { + "shasum": "9fd5be92ee71e42837ddadcafa9c16fccee2223b", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-0.9.2.tgz" + }, + "0.9.3": { + "shasum": "b005accb97dcc75ff79e273777958eb614d1c61e", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-0.9.3.tgz" + }, + "0.9.4": { + "shasum": "b8e23f47d9a48d4e205d9d7377a1dca4a4dd67b6", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-0.9.4.tgz" + }, + "0.9.5": { + "shasum": "0029d33bbfde74a0e548ff1708adef22504a3679", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-0.9.5.tgz" + }, + "0.9.6": { + "shasum": "640b4fbb50401052527fb6e3e14cacb8bb5cf803", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-0.9.6.tgz" + }, + "0.9.7": { + "shasum": "59db36cab169756951b4a94bcc39db4d8e405bf5", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-0.9.7.tgz" + }, + "0.9.8": { + "shasum": "e824bac0afb27fedf5f85671279c0268825ba3d2", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-0.9.8.tgz" + }, + "0.9.9": { + "shasum": "24bd7a423229f3f11899d6e2ddbe995f395ed443", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-0.9.9.tgz" + }, + "0.9.10": { + "shasum": "187cd796819b47dc75616a63f96c62338e4ae0a4", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-0.9.10.tgz" + }, + "0.9.11": { + "shasum": "f936dd2950306279f738803f5ac48600291e71cd", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-0.9.11.tgz" + }, + "0.9.12": { + "shasum": "7e2c163dbe70e5c31bcd903cc3fb841f207122d0", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-0.9.12.tgz" + }, + "0.9.13": { + "shasum": "892ad682921cedd861fec99f6d82e46b00568759", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-0.9.13.tgz" + }, + "0.9.14": { + "shasum": "e9ee08340cf8d75dfef274ea71ea25f0d9a219e1", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-0.9.14.tgz" + }, + "0.9.15": { + "shasum": "17fb43e674dcfa9a0a193da255c2afd708c96c17", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-0.9.15.tgz" + }, + "0.9.16": { + "shasum": "19e39824491136d3dbc73de247d540110a4a08ef", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-0.9.16.tgz" + }, + "0.9.17": { + "shasum": "fd8d722862865fd44356e45f7e9a0a8e8437b1ec", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-0.9.17.tgz" + }, + "0.9.18": { + "shasum": "6f61ac88b01c052463f9934a786791a6c6985258", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-0.9.18.tgz" + }, + "0.9.19": { + "shasum": "79b92a71a9ae7ad63a01deb5ec40093db6bfd144", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-0.9.19.tgz" + }, + "0.9.20": { + "shasum": "1209424617012d7d7c07d1608d91c1838830f6c5", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-0.9.20.tgz" + }, + "0.9.21": { + "shasum": "e30d24c0c6d9ee8eb544574fba8ef3ae52caa9ac", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-0.9.21.tgz" + }, + "0.9.22": { + "shasum": "19d1713c7cb39e149db0351f70305475664955b3", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-0.9.22.tgz" + }, + "0.10.0": { + "shasum": "39b31b6c3efb539bbe04bcf3c65fe03fb2a75c19", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-0.10.0.tgz" + }, + "1.0.0": { + "shasum": "40d5e4c63d971d9a88095567ffdccc986a38c2f5", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "88e988b2c5991c456710f86f9eb11df50f7de5c8", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "9bcb8a893a7e4c904efc2efca56220e91c7e33f4", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "085a574b659e213ad293b0073bb548d92936ffc6", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-1.0.3.tgz" + }, + "1.1.1": { + "shasum": "8ffca008520f526337e88f177e85e0974bf8a8b0", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-1.1.1.tgz" + }, + "1.1.2": { + "shasum": "978e7705ef78b03e0130ffcd09af5a11ced1bd74", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-1.1.2.tgz" + }, + "1.1.3": { + "shasum": "372e4cb36271649ef788bc4f700bd89f72a1e033", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-1.1.3.tgz" + }, + "1.1.4": { + "shasum": "14f051d11e2dec43087e83801c538ce645ec58f3", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-1.1.4.tgz" + }, + "1.1.6": { + "shasum": "df5d4bee3bd6354036b31f17b4ee7d1fc8ecd72d", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-1.1.6.tgz" + }, + "1.2.0": { + "shasum": "f0807229ef4c98a70109ccdbb0e12a27b58f40d2", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-1.2.0.tgz" + }, + "1.2.1": { + "shasum": "992cd26365642de75c3e3ea203f1cfb8f6060d00", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-1.2.1.tgz" + }, + "1.2.2": { + "shasum": "3e59c2f10acabd045d1672b085c6804d69fd11c2", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-1.2.2.tgz" + }, + "1.2.3": { + "shasum": "0811c1ec5a1fc32ce2f558b8d62473f7b66eef9a", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-1.2.3.tgz" + }, + "1.2.4": { + "shasum": "022036a7d004fdc4c5a03639ddc46f11693b9f8a", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-1.2.4.tgz" + }, + "1.2.5": { + "shasum": "8304c9bdbe2ac907599721e319a9a356bd01bf8d", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-1.2.5.tgz" + }, + "1.3.0": { + "shasum": "67db56433b1a54bb6d3165063af18f3a6c83dc4e", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-1.3.0.tgz" + }, + "1.3.1": { + "shasum": "aea1d36b977b62e6f1c236b4cacb060155bb959a", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-1.3.1.tgz" + }, + "1.3.2": { + "shasum": "ca7d0a88bb8ca7a912b6752b8f5ecfd47f03836d", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-1.3.2.tgz" + }, + "1.3.3": { + "shasum": "73a912ce3b26625a7132f0718b20ad4f6059af50", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-1.3.3.tgz" + }, + "1.3.5": { + "shasum": "4024be78d25c9d09c20ec3384feadb099d00a066", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-1.3.5.tgz" + }, + "1.3.6": { + "shasum": "cebfd14132c858d85c3cdae2386653c0a1b4972a", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-1.3.6.tgz" + }, + "1.3.7": { + "shasum": "ae6ded7879397f9738aed557abe5ba8ee0a19777", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-1.3.7.tgz" + }, + "1.3.8": { + "shasum": "f7f64f810bb5bd08d7d2848d7c8e97bd603bfcad", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-1.3.8.tgz" + }, + "1.4.0": { + "shasum": "aa0fb011e501fcaa4d743e75157f6d136f81b842", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-1.4.0.tgz" + }, + "1.4.1": { + "shasum": "31af4e5a3c02b492aff2963c3fa9f3075e496d50", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-1.4.1.tgz" + }, + "2.0.0": { + "shasum": "4faa72d36f347b8c6f8e5e4b7e5dce6306f52b65", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-2.0.0.tgz" + }, + "2.0.1": { + "shasum": "e94a876933d5b77742193494509ce9c0a1a4ffe6", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-2.0.1.tgz" + }, + "2.0.2": { + "shasum": "e173a24995a6b113d35ea5fa4b54c24b643ff73f", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-2.0.2.tgz" + }, + "2.1.0": { + "shasum": "2a10595e82e9a3c06fc988e6f097bf802298fa84", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-2.1.0.tgz" + }, + "2.1.1": { + "shasum": "213c7a023e3a81a172b1fec94083b33c8d6904c3", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-2.1.1.tgz" + }, + "2.2.0": { + "shasum": "696b79dfa64a1330d9c05bb50935428aa95d9f6c", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-2.2.0.tgz" + }, + "2.2.1": { + "shasum": "609c21bd2b0776e155af06b195dd779b0123413e", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-2.2.1.tgz" + }, + "2.3.0": { + "shasum": "e09058d4f3bb7ffc2c3694292bf7e113e8909a0f", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-2.3.0.tgz" + }, + "2.3.1": { + "shasum": "597a48366eedd3e25ea8b528c44975eef85457e8", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-2.3.1.tgz" + }, + "2.3.2": { + "shasum": "99d939b8025e79ccb4193fc7536cf0f76471f510", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-2.3.2.tgz" + }, + "2.3.3": { + "shasum": "abfde91e419182b020eecb09613d8dac10f8290c", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-2.3.3.tgz" + }, + "2.3.4": { + "shasum": "33c464618f5c0ea1958f9c37cc87b6e2fc50c883", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-2.3.4.tgz" + }, + "2.3.5": { + "shasum": "064c0f8353a8573ccc474d04117b1d2a1f037320", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-2.3.5.tgz" + }, + "2.3.6": { + "shasum": "f24c2dfd7fc510f0b841c7476ef5d24637f33822", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-2.3.6.tgz" + }, + "2.3.7": { + "shasum": "2b3b82df64bd9d191f39dbe9f5ed12f7251b7863", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-2.3.7.tgz" + }, + "2.3.8": { + "shasum": "932c0fd3330cd0fc59c3fc966ccd4dcacb710ab2", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-2.3.8.tgz" + }, + "2.4.0": { + "shasum": "a3125b35213a0f3f22429ed136b13dab772ba32f", + "tarball": "http://registry.npmjs.org/docpad/-/docpad-2.4.0.tgz" + } + }, + "keywords": [ + "javascript", + "dms", + "documents", + "generator", + "website", + "cms" + ], + "url": "http://registry.npmjs.org/docpad/" + }, + "docs": { + "name": "docs", + "description": "The node documentation project", + "dist-tags": { + "latest": "0.0.0-37" + }, + "maintainers": [ + { + "name": "marak", + "email": "marak.squires@gmail.com" + } + ], + "time": { + "modified": "2011-08-30T11:02:31.331Z", + "created": "2011-08-30T11:02:27.838Z", + "0.0.0-37": "2011-08-30T11:02:31.331Z" + }, + "author": { + "name": "Nodejitsu", + "email": "info@nodejitsu.com" + }, + "versions": { + "0.0.0-37": "http://registry.npmjs.org/docs/0.0.0-37" + }, + "dist": { + "0.0.0-37": { + "shasum": "f359a32505dbe2cc4b47307a24529a4e5b739a9c", + "tarball": "http://registry.npmjs.org/docs/-/docs-0.0.0-37.tgz" + } + }, + "url": "http://registry.npmjs.org/docs/" + }, + "doctor": { + "name": "doctor", + "description": "Create documentation from a JavaScript AST.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "jdeal", + "email": "justin.deal@gmail.com" + } + ], + "time": { + "modified": "2011-11-30T00:27:50.781Z", + "created": "2011-11-01T21:34:33.681Z", + "0.0.0": "2011-11-01T21:34:34.499Z", + "0.0.1": "2011-11-26T23:26:08.584Z", + "0.0.2": "2011-11-30T00:27:50.781Z" + }, + "author": { + "name": "Justin Deal" + }, + "repository": { + "type": "git", + "url": "git://github.com/jdeal/doctor.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/doctor/0.0.0", + "0.0.1": "http://registry.npmjs.org/doctor/0.0.1", + "0.0.2": "http://registry.npmjs.org/doctor/0.0.2" + }, + "dist": { + "0.0.0": { + "shasum": "decd7ffeb31accacaf23df8c0fcc7ce32007ca9f", + "tarball": "http://registry.npmjs.org/doctor/-/doctor-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "99a890c4b86ca52cd0deb2eb0e36dbebac80d00b", + "tarball": "http://registry.npmjs.org/doctor/-/doctor-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "7b6f617f1c78370f943eb1f2a6c3762d23e119e8", + "tarball": "http://registry.npmjs.org/doctor/-/doctor-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/doctor/" + }, + "document-watch": { + "name": "document-watch", + "description": "watch for atomic changes in a document", + "dist-tags": { + "latest": "0.1.2" + }, + "readme": "# Document Watch\n\nDocument is a little module that enables you to do one thing, watch for changes in documents in an atomic way. \nIt's available through npm:\n\n\tnpm install document-watch\n\nAnd it's super easy to use:\n\n``` js\nvar watch = require('document-watch');\n\nvar doc = {hello:'world', count:0};\n\nvar unwatch = watch(doc, function(changes) {\n\tconsole.log(changes);\n});\n\ndoc.hello = 'other world';\ndoc.count++;\ndoc.count++;\n\n// on nextTick the following gets printed:\n\n{hello:'other world', count:2}\n\n```", + "maintainers": [ + { + "name": "mafintosh", + "email": "mathiasbuus@gmail.com" + } + ], + "time": { + "modified": "2011-11-06T22:49:35.319Z", + "created": "2011-11-06T22:25:07.101Z", + "0.1.0": "2011-11-06T22:25:08.469Z", + "0.1.1": "2011-11-06T22:47:51.650Z", + "0.1.2": "2011-11-06T22:49:35.319Z" + }, + "author": { + "name": "Mathias Buus Madsen", + "email": "mathiasbuus@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/document-watch/0.1.0", + "0.1.1": "http://registry.npmjs.org/document-watch/0.1.1", + "0.1.2": "http://registry.npmjs.org/document-watch/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "fe50e468219502320a9f0305c1a41e19af4124d4", + "tarball": "http://registry.npmjs.org/document-watch/-/document-watch-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "5c756bc3d4bed5233ce7f2971df5125c41d61307", + "tarball": "http://registry.npmjs.org/document-watch/-/document-watch-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "16c9c32fe984dfd9046150e32dea2b3d26aec3f8", + "tarball": "http://registry.npmjs.org/document-watch/-/document-watch-0.1.2.tgz" + } + }, + "keywords": [ + "json", + "watch", + "changes", + "document" + ], + "url": "http://registry.npmjs.org/document-watch/" + }, + "dojo-node": { + "name": "dojo-node", + "description": "dono", + "dist-tags": { + "latest": "1.7.0b4edge" + }, + "maintainers": [ + { + "name": "agebrock", + "email": "christoph.hagenbrock@googlemail.com" + } + ], + "time": { + "modified": "2011-08-29T21:06:53.445Z", + "created": "2011-02-27T14:05:19.700Z", + "1.6.0": "2011-02-27T14:05:20.169Z", + "1.6.1": "2011-04-06T14:23:30.360Z", + "1.7.0rc2": "2011-07-03T00:40:42.377Z", + "1.7.0hackrc2": "2011-07-23T10:20:03.296Z", + "1.7.0b1edge": "2011-08-29T20:45:54.371Z", + "1.7.0b4edge": "2011-08-29T21:06:53.445Z" + }, + "author": { + "name": "Agebrock", + "email": "christoph.hagenbrock@googlemail.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:agebrock/dojo-node.git" + }, + "versions": { + "1.6.0": "http://registry.npmjs.org/dojo-node/1.6.0", + "1.6.1": "http://registry.npmjs.org/dojo-node/1.6.1", + "1.7.0rc2": "http://registry.npmjs.org/dojo-node/1.7.0rc2", + "1.7.0hackrc2": "http://registry.npmjs.org/dojo-node/1.7.0hackrc2", + "1.7.0b1edge": "http://registry.npmjs.org/dojo-node/1.7.0b1edge", + "1.7.0b4edge": "http://registry.npmjs.org/dojo-node/1.7.0b4edge" + }, + "dist": { + "1.6.0": { + "shasum": "18d0a4c47c60716bf85425efdbbde7970c0523d8", + "tarball": "http://registry.npmjs.org/dojo-node/-/dojo-node-1.6.0.tgz" + }, + "1.6.1": { + "shasum": "6b0bf779af534016863c3361e2bbc56f0bf7c2f1", + "tarball": "http://registry.npmjs.org/dojo-node/-/dojo-node-1.6.1.tgz" + }, + "1.7.0rc2": { + "shasum": "3e9eef95cb80c9c43b40db939a6ee485ee023915", + "tarball": "http://registry.npmjs.org/dojo-node/-/dojo-node-1.7.0rc2.tgz" + }, + "1.7.0hackrc2": { + "shasum": "78018bd6cad4e02e327a2630f03ab7361ffd5697", + "tarball": "http://registry.npmjs.org/dojo-node/-/dojo-node-1.7.0hackrc2.tgz" + }, + "1.7.0b1edge": { + "shasum": "7cb7f00e05c3baa7e788912f6a4fee131ff5ccb3", + "tarball": "http://registry.npmjs.org/dojo-node/-/dojo-node-1.7.0b1edge.tgz" + }, + "1.7.0b4edge": { + "shasum": "8b26d23596bef34d0fb99b50d8b4742fefcdd815", + "tarball": "http://registry.npmjs.org/dojo-node/-/dojo-node-1.7.0b4edge.tgz" + } + }, + "keywords": [ + "framework", + "web", + "dojo" + ], + "url": "http://registry.npmjs.org/dojo-node/" + }, + "dolce": { + "name": "dolce", + "description": "flow-control library", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "\n```javascript\n\nvar dolce = require('dolce');\n\n\nvar api = dolce({\n\t\n\t/**\n\t */\n\t \n\t'authorize': function(credits, callback) {\n\t\tif(credits.user != 'user' || credits.pass != 'hello') throw new Error('Unauthorized');\n\n\t\tif(!this.next()) callback();\n\t},\n\n\t/**\n\t */\n\n\t'authorize -> getAccountInfo': function(credits, callback) {\n\t\tcallback(false, 'success!');\n\t}\n});\n\n\napi.getAcountInfo({ user: 'user', pass: 'pass' }, function() {\n\t\n});\n\n```", + "maintainers": [ + { + "name": "architectd", + "email": "craig.j.condon@gmail.com" + } + ], + "time": { + "modified": "2011-12-04T22:23:27.082Z", + "created": "2011-12-04T22:23:26.220Z", + "0.0.1": "2011-12-04T22:23:27.082Z" + }, + "author": { + "name": "Craig Condon" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/dolce/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "1dc1fdc71eefba598341db34d1043b0b5028c414", + "tarball": "http://registry.npmjs.org/dolce/-/dolce-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/dolce/" + }, + "dom": { + "name": "dom", + "description": "dom libraru", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "marcuswestin", + "email": "narcvs@gmail.com" + } + ], + "time": { + "modified": "2011-09-07T19:24:58.357Z", + "created": "2011-09-07T19:24:57.807Z", + "0.1.0": "2011-09-07T19:24:58.357Z" + }, + "author": { + "name": "Marcus Westin", + "email": "narcvs@gmail.com", + "url": "http://marcuswest.in/" + }, + "repository": { + "type": "git", + "url": "git://github.com/marcuswestin/dom.js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/dom/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "33ce52488a2ad34e68ad2fc7d9ce4002fc4af669", + "tarball": "http://registry.npmjs.org/dom/-/dom-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/dom/" + }, + "dom-js": { + "name": "dom-js", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "teknopaul", + "email": "teknopaul@gmail.com" + } + ], + "time": { + "modified": "2011-11-04T17:40:20.501Z", + "created": "2011-07-21T18:17:31.997Z", + "0.0.1": "2011-07-21T18:17:35.454Z", + "0.0.2": "2011-08-15T18:27:03.319Z", + "0.0.3": "2011-08-28T19:15:27.206Z", + "0.0.5": "2011-09-22T21:12:45.474Z", + "0.0.6": "2011-11-04T17:40:20.501Z" + }, + "description": "XML DOM based on sax", + "author": { + "name": "teknopaul" + }, + "repository": { + "type": "git", + "url": "git://github.com/teknopaul/dom-js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/dom-js/0.0.1", + "0.0.2": "http://registry.npmjs.org/dom-js/0.0.2", + "0.0.3": "http://registry.npmjs.org/dom-js/0.0.3", + "0.0.5": "http://registry.npmjs.org/dom-js/0.0.5", + "0.0.6": "http://registry.npmjs.org/dom-js/0.0.6" + }, + "dist": { + "0.0.1": { + "shasum": "41cedfefc65e2228628a3bc44b4f12448f9cea9d", + "tarball": "http://registry.npmjs.org/dom-js/-/dom-js-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "bbefe2d8648615ec9715e0b3458bfd6bd657aa7c", + "tarball": "http://registry.npmjs.org/dom-js/-/dom-js-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "30a13e0db4fbb3fa204b3f74eb300a2dee07db76", + "tarball": "http://registry.npmjs.org/dom-js/-/dom-js-0.0.3.tgz" + }, + "0.0.5": { + "shasum": "ca053aa0821a526ce0165a7b842554466e490e89", + "tarball": "http://registry.npmjs.org/dom-js/-/dom-js-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "13a975d3d3ea12e09ff793d3a02b0f1e48223ebe", + "tarball": "http://registry.npmjs.org/dom-js/-/dom-js-0.0.6.tgz" + } + }, + "url": "http://registry.npmjs.org/dom-js/" + }, + "DOM-js": { + "name": "DOM-js", + "description": "DOM based web framework", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "raynos", + "email": "raynos2@gmail.com" + } + ], + "time": { + "modified": "2011-07-23T20:11:27.066Z", + "created": "2011-07-23T19:08:12.934Z", + "0.0.1": "2011-07-23T19:09:05.770Z", + "0.0.2": "2011-07-23T19:23:42.507Z", + "0.0.3": "2011-07-23T20:06:53.608Z", + "0.0.4": "2011-07-23T20:11:27.066Z" + }, + "author": { + "name": "Raynos", + "email": "raynos2@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Raynos/DOM-js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/DOM-js/0.0.1", + "0.0.2": "http://registry.npmjs.org/DOM-js/0.0.2", + "0.0.3": "http://registry.npmjs.org/DOM-js/0.0.3", + "0.0.4": "http://registry.npmjs.org/DOM-js/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "064e8d52478da0c9479d835be4a2ca7ed5eee9e4", + "tarball": "http://registry.npmjs.org/DOM-js/-/DOM-js-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "2554a07c29fd3eca47496b0782d3c019184e8d78", + "tarball": "http://registry.npmjs.org/DOM-js/-/DOM-js-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "05ee8e3cd8658a7e293e253d9db9081ed00ea870", + "tarball": "http://registry.npmjs.org/DOM-js/-/DOM-js-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "13718c75ffecb93f973f7bff1aa366ff6a8133f7", + "tarball": "http://registry.npmjs.org/DOM-js/-/DOM-js-0.0.4.tgz" + } + }, + "keywords": [ + "framework", + "dom", + "web" + ], + "url": "http://registry.npmjs.org/DOM-js/" + }, + "dom-js-ns": { + "name": "dom-js-ns", + "description": "XML DOM based on sax", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "minchenkov", + "email": "pavel@minchenkov.com" + } + ], + "time": { + "modified": "2011-09-25T20:07:04.715Z", + "created": "2011-09-25T20:07:02.855Z", + "0.0.3": "2011-09-25T20:07:04.715Z" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/dom-js-ns/0.0.3" + }, + "dist": { + "0.0.3": { + "shasum": "e576dcdb79907e09bab4bc35b1c7fffb0d52dbdf", + "tarball": "http://registry.npmjs.org/dom-js-ns/-/dom-js-ns-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/dom-js-ns/" + }, + "DOMBuilder": { + "name": "DOMBuilder", + "description": "Builder library - generate HTML with an API which is also usable in the browser", + "dist-tags": { + "latest": "2.1.0alpha1" + }, + "maintainers": [ + { + "name": "insin", + "email": "jonathan.buchanan@gmail.com" + } + ], + "time": { + "modified": "2011-08-18T21:55:28.516Z", + "created": "2011-03-04T03:36:33.180Z", + "1.4.1": "2011-03-04T03:36:33.567Z", + "1.4.2": "2011-04-11T23:42:53.288Z", + "1.4.3": "2011-04-26T20:49:12.289Z", + "1.4.4": "2011-05-19T13:19:49.450Z", + "2.0.0-pre": "2011-07-17T00:03:56.316Z", + "2.0.0": "2011-07-17T01:25:21.927Z", + "2.0.1": "2011-08-06T01:46:42.185Z", + "2.1.0alpha1": "2011-08-18T21:55:28.516Z" + }, + "author": { + "name": "Jonathan Buchanan", + "email": "jonathan.buchanan@gmail.com", + "url": "https://github.com/insin" + }, + "repository": { + "type": "git", + "url": "git://github.com/insin/DOMBuilder.git" + }, + "versions": { + "1.4.1": "http://registry.npmjs.org/DOMBuilder/1.4.1", + "1.4.2": "http://registry.npmjs.org/DOMBuilder/1.4.2", + "1.4.3": "http://registry.npmjs.org/DOMBuilder/1.4.3", + "1.4.4": "http://registry.npmjs.org/DOMBuilder/1.4.4", + "2.0.0": "http://registry.npmjs.org/DOMBuilder/2.0.0", + "2.0.1": "http://registry.npmjs.org/DOMBuilder/2.0.1", + "2.1.0alpha1": "http://registry.npmjs.org/DOMBuilder/2.1.0alpha1" + }, + "dist": { + "1.4.1": { + "shasum": "a5795afe37c12a9c3207dfa22b8ecd4ed164ef02", + "tarball": "http://registry.npmjs.org/DOMBuilder/-/DOMBuilder-1.4.1.tgz" + }, + "1.4.2": { + "shasum": "e3fee6707649c92f2e62e6ef4bb2f023c2379caa", + "tarball": "http://registry.npmjs.org/DOMBuilder/-/DOMBuilder-1.4.2.tgz" + }, + "1.4.3": { + "shasum": "4bd3fbb2cdf2699fdc135e334ac0d5c647ec38e0", + "tarball": "http://registry.npmjs.org/DOMBuilder/-/DOMBuilder-1.4.3.tgz" + }, + "1.4.4": { + "shasum": "25a57c607d2b5460e38fe2826ebdb4ed765edc62", + "tarball": "http://registry.npmjs.org/DOMBuilder/-/DOMBuilder-1.4.4.tgz" + }, + "2.0.0": { + "shasum": "f64e4fba04cfada1a8fbcdf141846c8d1a04521c", + "tarball": "http://registry.npmjs.org/DOMBuilder/-/DOMBuilder-2.0.0.tgz" + }, + "2.0.1": { + "shasum": "7b2e53a25bdef4f7a8a1363d9cb5c224d25c45eb", + "tarball": "http://registry.npmjs.org/DOMBuilder/-/DOMBuilder-2.0.1.tgz" + }, + "2.1.0alpha1": { + "shasum": "9f769d981f65deefb282d27c16ff5e7dfc4b0671", + "tarball": "http://registry.npmjs.org/DOMBuilder/-/DOMBuilder-2.1.0alpha1.tgz" + } + }, + "keywords": [ + "DOM", + "HTML", + "builder", + "fragments" + ], + "url": "http://registry.npmjs.org/DOMBuilder/" + }, + "domjs": { + "name": "domjs", + "description": "Build dom structure easy way with plain js. Client and server side template engine", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "medikoo", + "email": "medikoo+npm@medikoo.com" + } + ], + "time": { + "modified": "2011-05-29T10:58:47.745Z", + "created": "2011-05-29T10:58:47.023Z", + "0.1.0": "2011-05-29T10:58:47.745Z" + }, + "author": { + "name": "Mariusz Nowak", + "email": "medikoo+domjs@medikoo.com", + "url": "http://www.medikoo.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/medikoo/domjs.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/domjs/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "4d0bba3215fc014e92f352a4de2ed74e69bae09b", + "tarball": "http://registry.npmjs.org/domjs/-/domjs-0.1.0.tgz" + } + }, + "keywords": [ + "dom", + "build", + "builder", + "template", + "html" + ], + "url": "http://registry.npmjs.org/domjs/" + }, + "doml": { + "name": "doml", + "description": "a DOM constructor", + "dist-tags": { + "latest": "0.0.1-4" + }, + "maintainers": [ + { + "name": "zhami", + "email": "stuart@yellowhelium.com" + } + ], + "time": { + "modified": "2011-07-27T23:41:02.799Z", + "created": "2011-07-27T16:51:05.758Z", + "0.0.1": "2011-07-27T16:51:06.303Z", + "0.0.1-1": "2011-07-27T19:38:08.581Z", + "0.0.1-2": "2011-07-27T19:43:34.402Z", + "0.0.1-3": "2011-07-27T21:40:55.481Z", + "0.0.1-4": "2011-07-27T23:41:02.799Z" + }, + "author": { + "name": "Stuart Malin", + "email": "@zhami" + }, + "repository": { + "type": "git", + "url": "git://github.com/zhami/doml.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/doml/0.0.1", + "0.0.1-1": "http://registry.npmjs.org/doml/0.0.1-1", + "0.0.1-2": "http://registry.npmjs.org/doml/0.0.1-2", + "0.0.1-3": "http://registry.npmjs.org/doml/0.0.1-3", + "0.0.1-4": "http://registry.npmjs.org/doml/0.0.1-4" + }, + "dist": { + "0.0.1": { + "shasum": "c14d32045b39b139f7a722d5d944770c5a846482", + "tarball": "http://registry.npmjs.org/doml/-/doml-0.0.1.tgz" + }, + "0.0.1-1": { + "shasum": "4b7b4376411faaa548be42bd6dbb958224c33362", + "tarball": "http://registry.npmjs.org/doml/-/doml-0.0.1-1.tgz" + }, + "0.0.1-2": { + "shasum": "ba03c17144308dac85489bb6dbc6d581834f5e0f", + "tarball": "http://registry.npmjs.org/doml/-/doml-0.0.1-2.tgz" + }, + "0.0.1-3": { + "shasum": "98e06e11ad10818ffa733839299aa11dadde1845", + "tarball": "http://registry.npmjs.org/doml/-/doml-0.0.1-3.tgz" + }, + "0.0.1-4": { + "shasum": "9f4d97e28445ded461a9500672c909ced546b3d8", + "tarball": "http://registry.npmjs.org/doml/-/doml-0.0.1-4.tgz" + } + }, + "keywords": [ + "doml", + "render", + "DOM" + ], + "url": "http://registry.npmjs.org/doml/" + }, + "domo": { + "name": "domo", + "description": "Templating, the JavaScript way", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "stagas", + "email": "gstagas@gmail.com" + } + ], + "time": { + "modified": "2011-08-24T05:54:58.841Z", + "created": "2011-08-24T05:54:58.188Z", + "0.0.1": "2011-08-24T05:54:58.841Z" + }, + "author": { + "name": "George Stagas", + "email": "gstagas@gmail.com", + "url": "http://stagas.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/stagas/domo.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/domo/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "3c06e48b6b927cf0980ecd1a0d3848b49c798900", + "tarball": "http://registry.npmjs.org/domo/-/domo-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/domo/" + }, + "domready": { + "name": "domready", + "description": "bullet proof DOM ready method", + "dist-tags": { + "latest": "0.2.10" + }, + "maintainers": [ + { + "name": "ded", + "email": "polvero@gmail.com" + }, + { + "name": "fat", + "email": "jacobthornton@gmail.com" + } + ], + "time": { + "modified": "2011-09-18T03:42:26.759Z", + "created": "2011-04-14T20:29:34.813Z", + "0.0.1": "2011-04-14T20:29:35.102Z", + "0.0.2": "2011-04-14T20:39:41.521Z", + "0.0.3": "2011-04-15T05:49:43.070Z", + "0.0.4": "2011-04-15T19:26:42.080Z", + "0.0.5": "2011-04-16T15:45:20.492Z", + "0.0.6": "2011-04-17T21:42:37.333Z", + "0.0.7": "2011-04-17T22:11:30.295Z", + "0.0.8": "2011-04-18T20:10:08.933Z", + "0.0.9": "2011-04-19T20:18:12.839Z", + "0.1.0": "2011-04-21T22:52:08.159Z", + "0.1.1": "2011-05-17T18:46:46.584Z", + "0.2.0": "2011-06-07T19:43:11.586Z", + "0.2.1": "2011-06-07T19:56:22.164Z", + "0.2.2": "2011-06-19T08:43:15.487Z", + "0.2.3": "2011-06-19T09:05:06.359Z", + "0.2.4": "2011-06-21T20:23:51.591Z", + "0.2.5": "2011-07-05T15:22:24.953Z", + "0.2.6": "2011-09-08T03:16:37.787Z", + "0.2.7": "2011-09-08T03:22:30.636Z", + "0.2.8": "2011-09-16T20:19:22.680Z", + "0.2.9": "2011-09-16T22:58:01.978Z", + "0.2.10": "2011-09-18T03:42:26.759Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/ded/domready.git" + }, + "author": { + "name": "Dustin Diaz", + "email": "dustin@dustindiaz.com", + "url": "http://dustindiaz.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/domready/0.0.1", + "0.0.2": "http://registry.npmjs.org/domready/0.0.2", + "0.0.3": "http://registry.npmjs.org/domready/0.0.3", + "0.0.4": "http://registry.npmjs.org/domready/0.0.4", + "0.0.5": "http://registry.npmjs.org/domready/0.0.5", + "0.0.6": "http://registry.npmjs.org/domready/0.0.6", + "0.0.7": "http://registry.npmjs.org/domready/0.0.7", + "0.0.8": "http://registry.npmjs.org/domready/0.0.8", + "0.0.9": "http://registry.npmjs.org/domready/0.0.9", + "0.1.0": "http://registry.npmjs.org/domready/0.1.0", + "0.1.1": "http://registry.npmjs.org/domready/0.1.1", + "0.2.0": "http://registry.npmjs.org/domready/0.2.0", + "0.2.1": "http://registry.npmjs.org/domready/0.2.1", + "0.2.2": "http://registry.npmjs.org/domready/0.2.2", + "0.2.3": "http://registry.npmjs.org/domready/0.2.3", + "0.2.4": "http://registry.npmjs.org/domready/0.2.4", + "0.2.5": "http://registry.npmjs.org/domready/0.2.5", + "0.2.6": "http://registry.npmjs.org/domready/0.2.6", + "0.2.7": "http://registry.npmjs.org/domready/0.2.7", + "0.2.8": "http://registry.npmjs.org/domready/0.2.8", + "0.2.9": "http://registry.npmjs.org/domready/0.2.9", + "0.2.10": "http://registry.npmjs.org/domready/0.2.10" + }, + "dist": { + "0.0.1": { + "shasum": "ebcd8620e4dce7c9c792427ad0dad8fa44d1a53d", + "tarball": "http://registry.npmjs.org/domready/-/domready-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "72fc4e75ff3d59112ea3ff0ca2539e7061eb2744", + "tarball": "http://registry.npmjs.org/domready/-/domready-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "e9d881d22862129a02f467c6d7b782e9510895b7", + "tarball": "http://registry.npmjs.org/domready/-/domready-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "8bc11cf7733ea1d416403f7e11f4f905edb16c28", + "tarball": "http://registry.npmjs.org/domready/-/domready-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "d0adac1d827caf5008884f2b7b15302aeef96105", + "tarball": "http://registry.npmjs.org/domready/-/domready-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "e53b8e5e646fedd425eefe2050f8c6d101c1746d", + "tarball": "http://registry.npmjs.org/domready/-/domready-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "e07483eee8eb3c9616a11e3276a736f370b4f895", + "tarball": "http://registry.npmjs.org/domready/-/domready-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "fee764e043484d52d5f80a2db4547fc6d792e410", + "tarball": "http://registry.npmjs.org/domready/-/domready-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "5ee38616f8b8922dd904cc7a5142094b1005921d", + "tarball": "http://registry.npmjs.org/domready/-/domready-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "157f8aab52cc56c472771c1fdc00936c2be949b3", + "tarball": "http://registry.npmjs.org/domready/-/domready-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "6b4420a76632717b499dfc2b0a153dd7c6f92ee6", + "tarball": "http://registry.npmjs.org/domready/-/domready-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "5d7c3c97a49dbbd30d676b62d586ce3e48ed4799", + "tarball": "http://registry.npmjs.org/domready/-/domready-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "3cb9f0eb5b9af5e76374a21a422fbf54c9b70ba0", + "tarball": "http://registry.npmjs.org/domready/-/domready-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "84a84dc9e8c50b00f009d662533bc802c8008023", + "tarball": "http://registry.npmjs.org/domready/-/domready-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "6297f541387f85925daff66661076c9f3c5d9dd6", + "tarball": "http://registry.npmjs.org/domready/-/domready-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "dac935a75b2895439b3c0819ae6059acf39c3882", + "tarball": "http://registry.npmjs.org/domready/-/domready-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "0b3f6bb7e2ea031f9441ca396874a4af7a9f3bb9", + "tarball": "http://registry.npmjs.org/domready/-/domready-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "ebf986e7a9ec35f399b71680db10d2a1324c6fd0", + "tarball": "http://registry.npmjs.org/domready/-/domready-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "bcaaf8975e9318f5188e3dd29f74eee7a6ab7498", + "tarball": "http://registry.npmjs.org/domready/-/domready-0.2.7.tgz" + }, + "0.2.8": { + "shasum": "651433781e45871078edb2744c15538b170ad063", + "tarball": "http://registry.npmjs.org/domready/-/domready-0.2.8.tgz" + }, + "0.2.9": { + "shasum": "3178f109938f66b434984bd4a2e54bbe8b43a6b8", + "tarball": "http://registry.npmjs.org/domready/-/domready-0.2.9.tgz" + }, + "0.2.10": { + "shasum": "9a355e88f5c3cf189d71a5784afcdf0bfe0eb3d9", + "tarball": "http://registry.npmjs.org/domready/-/domready-0.2.10.tgz" + } + }, + "keywords": [ + "ender", + "domready", + "dom" + ], + "url": "http://registry.npmjs.org/domready/" + }, + "donkey": { + "name": "donkey", + "description": "EIP for JavaScript, node style", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "biamontidv", + "email": "wildrover78@gmail.com" + } + ], + "time": { + "modified": "2011-06-08T09:50:53.395Z", + "created": "2011-06-08T09:50:52.621Z", + "0.0.1": "2011-06-08T09:50:53.395Z" + }, + "author": { + "name": "Davide Biamonti", + "email": "wildrover78@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/biamontidv/node-donkey.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/donkey/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "61aca4ef9da9787b31936ee9cf178a7c9304204f", + "tarball": "http://registry.npmjs.org/donkey/-/donkey-0.0.1.tgz" + } + }, + "keywords": [ + "EIP", + "Patterns", + "integration patterns" + ], + "url": "http://registry.npmjs.org/donkey/" + }, + "dontusethis": { + "name": "dontusethis", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "evanw", + "email": "evan.exe@gmail.com" + } + ], + "time": { + "modified": "2011-10-14T23:32:22.086Z", + "created": "2011-09-24T02:56:30.406Z", + "0.1.0": "2011-09-24T02:56:30.558Z", + "0.1.1": "2011-10-14T23:27:58.639Z", + "0.1.2": "2011-10-14T23:31:28.683Z", + "0.1.3": "2011-10-14T23:32:22.086Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/dontusethis/0.1.0", + "0.1.1": "http://registry.npmjs.org/dontusethis/0.1.1", + "0.1.2": "http://registry.npmjs.org/dontusethis/0.1.2", + "0.1.3": "http://registry.npmjs.org/dontusethis/0.1.3" + }, + "dist": { + "0.1.0": { + "shasum": "f4a1fceae5b349660056ddd719b5305ef9c6e2c7", + "tarball": "http://registry.npmjs.org/dontusethis/-/dontusethis-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "f155c87cd77dc748891a54aebcdede627349bd41", + "tarball": "http://registry.npmjs.org/dontusethis/-/dontusethis-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "6d605736053131b55bcd981f0007ca89b9863eb6", + "tarball": "http://registry.npmjs.org/dontusethis/-/dontusethis-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "28796e2fc562a5935166ccb3df3a40c44af98405", + "tarball": "http://registry.npmjs.org/dontusethis/-/dontusethis-0.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/dontusethis/" + }, + "doremi-script": { + "name": "doremi-script", + "description": "Letter music notation processor", + "dist-tags": { + "latest": "0.0.3-pre" + }, + "readme": null, + "maintainers": [ + { + "name": "rothfield", + "email": "rthfield@sonic.net" + } + ], + "time": { + "modified": "2011-12-11T08:51:01.267Z", + "created": "2011-12-11T08:50:42.534Z", + "0.0.3-pre": "2011-12-11T08:51:01.267Z" + }, + "author": { + "name": "John Rothfield" + }, + "repository": { + "type": "git", + "url": "git://github.com/rothfield/doremi.git" + }, + "versions": { + "0.0.3-pre": "http://registry.npmjs.org/doremi-script/0.0.3-pre" + }, + "dist": { + "0.0.3-pre": { + "shasum": "1b06014c5b6812b93efc1e79c533be80f7b72e87", + "tarball": "http://registry.npmjs.org/doremi-script/-/doremi-script-0.0.3-pre.tgz" + } + }, + "keywords": [ + "sargam", + "solfege", + "letter music notation", + "doremi", + "lilypond", + "raga", + "Indian Music" + ], + "url": "http://registry.npmjs.org/doremi-script/" + }, + "dot": { + "name": "dot", + "description": "Concise and fast javascript templating compatible with nodejs and other javascript environments", + "dist-tags": { + "latest": "0.1.6" + }, + "maintainers": [ + { + "name": "olado", + "email": "ldoktorova@gmail.com" + } + ], + "time": { + "modified": "2011-06-17T23:14:31.061Z", + "created": "2011-02-15T13:54:36.182Z", + "0.1.0": "2011-02-15T13:54:36.456Z", + "0.1.1": "2011-03-04T06:40:47.658Z", + "0.1.2": "2011-03-12T07:09:18.227Z", + "0.1.3": "2011-04-27T17:46:16.876Z", + "0.1.4": "2011-05-23T21:12:14.978Z", + "0.1.5": "2011-06-03T17:31:10.766Z", + "0.1.6": "2011-06-17T16:07:40.041Z" + }, + "author": { + "name": "Laura Doktorova", + "email": "ldoktorova@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/olado/doT.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/dot/0.1.0", + "0.1.1": "http://registry.npmjs.org/dot/0.1.1", + "0.1.2": "http://registry.npmjs.org/dot/0.1.2", + "0.1.3": "http://registry.npmjs.org/dot/0.1.3", + "0.1.4": "http://registry.npmjs.org/dot/0.1.4", + "0.1.5": "http://registry.npmjs.org/dot/0.1.5", + "0.1.6": "http://registry.npmjs.org/dot/0.1.6" + }, + "dist": { + "0.1.0": { + "shasum": "1472a04da51a9f9c23fbe6cb3788e0226344939e", + "tarball": "http://registry.npmjs.org/dot/-/dot-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "dd81f482c92e862e2ca646c2c7725f95545bb482", + "tarball": "http://registry.npmjs.org/dot/-/dot-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "7004365106d043432e6c8441f2bbf6d04cf4e168", + "tarball": "http://registry.npmjs.org/dot/-/dot-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "5b76eda46f1e72b31d8c684795bdae70c54c781d", + "tarball": "http://registry.npmjs.org/dot/-/dot-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "1378bf793c265dc04af0356aedc57d0f3a4d8257", + "tarball": "http://registry.npmjs.org/dot/-/dot-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "b129dba45a99dbbfdf804b0263f51c321c7dc8fc", + "tarball": "http://registry.npmjs.org/dot/-/dot-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "2a709870a7f7ed0541bb03823bfc9b34cba85aff", + "tarball": "http://registry.npmjs.org/dot/-/dot-0.1.6.tgz" + } + }, + "keywords": [ + "template", + "fast", + "simple", + "templating" + ], + "url": "http://registry.npmjs.org/dot/" + }, + "dotaccess": { + "name": "dotaccess", + "description": "A library to access objects using dot notation strings.", + "dist-tags": { + "latest": "1.0.2" + }, + "maintainers": [ + { + "name": "naitik", + "email": "n@daaku.org" + } + ], + "author": { + "name": "Naitik Shah", + "email": "n@daaku.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/nshah/nodejs-dotaccess.git" + }, + "time": { + "modified": "2011-08-17T21:08:47.496Z", + "created": "2011-02-25T03:19:09.447Z", + "0.0.1": "2011-02-25T03:19:09.447Z", + "0.0.2": "2011-02-25T03:19:09.447Z", + "0.0.3": "2011-04-18T02:20:57.553Z", + "1.0.0": "2011-07-27T17:40:44.413Z", + "1.0.1": "2011-07-28T00:40:43.407Z", + "1.0.2": "2011-08-17T21:08:47.496Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/dotaccess/0.0.1", + "0.0.2": "http://registry.npmjs.org/dotaccess/0.0.2", + "0.0.3": "http://registry.npmjs.org/dotaccess/0.0.3", + "1.0.0": "http://registry.npmjs.org/dotaccess/1.0.0", + "1.0.1": "http://registry.npmjs.org/dotaccess/1.0.1", + "1.0.2": "http://registry.npmjs.org/dotaccess/1.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "1169777d167b1f6c2c39369566ac52dd3bfd2bca", + "tarball": "http://registry.npmjs.org/dotaccess/-/dotaccess-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "3d4fdfcf72bcf2ff8868e6cf0e2272e1f77ea485", + "tarball": "http://registry.npmjs.org/dotaccess/-/dotaccess-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "e0f2594c69563fc02490131a332ddd053102d1e9", + "tarball": "http://registry.npmjs.org/dotaccess/-/dotaccess-0.0.3.tgz" + }, + "1.0.0": { + "shasum": "bdea9de77562abef8f1a1113cd65aa0b4b9addd7", + "tarball": "http://registry.npmjs.org/dotaccess/-/dotaccess-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "1aab75b4a00b277176545c325459a20987ed2368", + "tarball": "http://registry.npmjs.org/dotaccess/-/dotaccess-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "5f9c67175164123210372849e74c04b11331f286", + "tarball": "http://registry.npmjs.org/dotaccess/-/dotaccess-1.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/dotaccess/" + }, + "dotjs": { + "name": "dotjs", + "description": "~/.js using node.", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": null, + "maintainers": [ + { + "name": "tristandunn", + "email": "tristanzdunn@gmail.com" + } + ], + "time": { + "modified": "2011-11-24T23:03:15.878Z", + "created": "2011-11-24T23:02:43.619Z", + "0.1.0": "2011-11-24T23:03:15.878Z" + }, + "author": { + "name": "Tristan Dunn", + "email": "hello@tristandunn.com", + "url": "http://tristandunn.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/tristandunn/dotjs-node.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/dotjs/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "4b46e538e9dbd42134560f6b5aa62c7db6613e13", + "tarball": "http://registry.npmjs.org/dotjs/-/dotjs-0.1.0.tgz" + } + }, + "keywords": [ + "chrome", + "dotjs" + ], + "url": "http://registry.npmjs.org/dotjs/" + }, + "doublemetaphone": { + "name": "doublemetaphone", + "description": "Encode a string into a phonetic code with the Double Metaphone algorithm", + "dist-tags": { + "latest": "0.0.2" + }, + "readme": null, + "maintainers": [ + { + "name": "hgoebl", + "email": "hgoebl@goebl.com" + } + ], + "time": { + "modified": "2011-11-18T21:44:45.056Z", + "created": "2011-11-06T19:20:26.510Z", + "0.0.1": "2011-11-06T19:20:28.444Z", + "0.0.2": "2011-11-18T21:44:45.056Z" + }, + "author": { + "name": "Heinrich Goebl", + "email": "hgoebl@goebl.com", + "url": "http://www.goebl.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/hgoebl/doublemetaphone.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/doublemetaphone/0.0.1", + "0.0.2": "http://registry.npmjs.org/doublemetaphone/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "8ccbc2ea39270504720c088d624b1c93665ad7ca", + "tarball": "http://registry.npmjs.org/doublemetaphone/-/doublemetaphone-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "557539830e703ade84b1eed05f3dbee271c5e1c6", + "tarball": "http://registry.npmjs.org/doublemetaphone/-/doublemetaphone-0.0.2.tgz" + } + }, + "keywords": [ + "phonetic", + "metaphone", + "codec", + "sounds", + "like" + ], + "url": "http://registry.npmjs.org/doublemetaphone/" + }, + "douche": { + "name": "douche", + "description": "A SOAP client based off savon.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "marcgreenstock", + "email": "marc@marcgreenstock.com" + } + ], + "time": { + "modified": "2011-04-26T10:11:17.467Z", + "created": "2011-04-26T10:11:17.117Z", + "0.0.1": "2011-04-26T10:11:17.467Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/douche/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "ac18c67f077ab0dfef8577fc886ef5a650b890e3", + "tarball": "http://registry.npmjs.org/douche/-/douche-0.0.1.tgz" + } + }, + "keywords": [ + "soap" + ], + "url": "http://registry.npmjs.org/douche/" + }, + "dox": { + "name": "dox", + "description": "Markdown / JSdoc documentation generator", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "time": { + "modified": "2011-12-09T03:14:46.590Z", + "created": "2011-01-20T19:20:53.373Z", + "0.0.3": "2011-01-20T19:20:53.373Z", + "0.0.4": "2011-01-20T19:20:53.373Z", + "0.0.5": "2011-03-02T16:32:36.280Z", + "0.1.0": "2011-10-09T18:52:48.499Z", + "0.1.1": "2011-10-10T18:14:43.420Z", + "0.1.2": "2011-10-22T21:26:29.849Z", + "0.1.3": "2011-12-09T03:14:46.590Z" + }, + "users": { + "gevorg": true + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/dox/0.0.3", + "0.0.4": "http://registry.npmjs.org/dox/0.0.4", + "0.0.5": "http://registry.npmjs.org/dox/0.0.5", + "0.1.0": "http://registry.npmjs.org/dox/0.1.0", + "0.1.1": "http://registry.npmjs.org/dox/0.1.1", + "0.1.2": "http://registry.npmjs.org/dox/0.1.2", + "0.1.3": "http://registry.npmjs.org/dox/0.1.3" + }, + "dist": { + "0.0.3": { + "tarball": "http://packages:5984/dox/-/dox-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "985a55a620635d27ab70d4b699d77d31c1ba6655", + "tarball": "http://registry.npmjs.org/dox/-/dox-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "b67afaf8f4b4cfd1abeb082d5634c8bc23369f97", + "tarball": "http://registry.npmjs.org/dox/-/dox-0.0.5.tgz" + }, + "0.1.0": { + "shasum": "162e6085f5be9221adde8065771710d41f8023ea", + "tarball": "http://registry.npmjs.org/dox/-/dox-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "222f8c9ec8f39c94fe35a1dbefe7edf6a3834f93", + "tarball": "http://registry.npmjs.org/dox/-/dox-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "a39466d4f6a42b9c6d320f0961f1d51f28c3a5a1", + "tarball": "http://registry.npmjs.org/dox/-/dox-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "8ded2dd15af871eb820736e1f6dccda89e9269c8", + "tarball": "http://registry.npmjs.org/dox/-/dox-0.1.3.tgz" + } + }, + "keywords": [ + "documentation", + "docs", + "markdown", + "jsdoc" + ], + "url": "http://registry.npmjs.org/dox/" + }, + "dr-js": { + "name": "dr-js", + "description": "Tiny documentation builder", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "damonoehlman", + "email": "damon.oehlman@sidelab.com" + } + ], + "time": { + "modified": "2011-10-28T02:03:25.542Z", + "created": "2011-10-28T02:03:23.504Z", + "0.0.5": "2011-10-28T02:03:25.542Z" + }, + "author": { + "name": "Dmitry Baranovskiy", + "email": "dmitry@baranovskiy.com", + "url": "http://dmitry.baranovskiy.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/DmitryBaranovskiy/dr.js.git" + }, + "versions": { + "0.0.5": "http://registry.npmjs.org/dr-js/0.0.5" + }, + "dist": { + "0.0.5": { + "shasum": "8f34d7c70283bd83e6e6e005a6ef88e9bd894900", + "tarball": "http://registry.npmjs.org/dr-js/-/dr-js-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/dr-js/" + }, + "dracula": { + "name": "dracula", + "description": "PhantomJS testing tool based on Ghostbuster version gem.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "bdryanovski", + "email": "bozhidar.dryanovski@gmail.com" + } + ], + "time": { + "modified": "2011-10-16T15:29:04.393Z", + "created": "2011-10-16T15:29:02.501Z", + "0.0.2": "2011-10-16T15:29:04.393Z" + }, + "author": { + "name": "Bozhidar Dryanovski", + "email": "bozhidar.dryanovski@gmail.com", + "url": "https://github.com/bdryanovski" + }, + "repository": { + "type": "git", + "url": "git://github.com/bdryanovski/dracula.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/dracula/0.0.2" + }, + "dist": { + "0.0.2": { + "shasum": "5213068057ed2a0f83206c793b0cf7859dcfdd23", + "tarball": "http://registry.npmjs.org/dracula/-/dracula-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/dracula/" + }, + "drag": { + "name": "drag", + "description": "a very small drag library for javascript", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "jakeluer", + "email": "jake.luer@incatern.com" + } + ], + "time": { + "modified": "2011-08-28T15:22:03.504Z", + "created": "2011-08-26T13:12:24.261Z", + "0.0.1": "2011-08-26T13:12:24.922Z", + "0.0.2": "2011-08-28T05:16:06.715Z", + "0.0.3": "2011-08-28T06:47:34.792Z", + "0.0.4": "2011-08-28T15:22:03.504Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/logicalparadox/drag.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/drag/0.0.1", + "0.0.2": "http://registry.npmjs.org/drag/0.0.2", + "0.0.3": "http://registry.npmjs.org/drag/0.0.3", + "0.0.4": "http://registry.npmjs.org/drag/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "164784a3c1c1032ebbc03cb96fb6dd176b847112", + "tarball": "http://registry.npmjs.org/drag/-/drag-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "b5c09326b63845352f184d13f09d6411087c02ef", + "tarball": "http://registry.npmjs.org/drag/-/drag-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "61705d3a70b1c64fe2f022464b9879d4fff8ff9f", + "tarball": "http://registry.npmjs.org/drag/-/drag-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "c7853e1c96eaa71e5e3faefa7b187bae1d55ffd7", + "tarball": "http://registry.npmjs.org/drag/-/drag-0.0.4.tgz" + } + }, + "keywords": [ + "ender", + "drag", + "drop", + "microjs" + ], + "url": "http://registry.npmjs.org/drag/" + }, + "drain": { + "name": "drain", + "description": "an event drain (sink) to easy async testing", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "brianc", + "email": "brian.m.carlson@gmail.com" + } + ], + "time": { + "modified": "2011-01-27T05:26:07.821Z", + "created": "2011-01-27T05:26:07.588Z", + "0.1.0": "2011-01-27T05:26:07.821Z" + }, + "author": { + "name": "Brian Carlson", + "email": "brian.m.carlson@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/brianc/drain.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/drain/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "97731f9163db3a44cc80df55de2c6cb7f01882f3", + "tarball": "http://registry.npmjs.org/drain/-/drain-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/drain/" + }, + "draughtsman": { + "name": "draughtsman", + "description": "A development-oriented web server and proxy. Transparent compilation of templates, stylesheets and scripts for stackless HTML interface prototyping.", + "dist-tags": { + "latest": "0.5.0" + }, + "maintainers": [ + { + "name": "stdbrouw", + "email": "stijn@stdout.be" + } + ], + "time": { + "modified": "2011-11-06T16:09:44.310Z", + "created": "2011-10-25T21:38:12.942Z", + "0.2.1": "2011-10-25T21:38:13.491Z", + "0.5.0": "2011-11-06T16:09:44.310Z" + }, + "author": { + "name": "Stijn Debrouwere" + }, + "repository": { + "type": "git", + "url": "git://github.com/stdbrouw/draughtsman.git" + }, + "versions": { + "0.2.1": "http://registry.npmjs.org/draughtsman/0.2.1", + "0.5.0": "http://registry.npmjs.org/draughtsman/0.5.0" + }, + "dist": { + "0.2.1": { + "shasum": "512fd343ed6b4accb712b193cf7665b06fa4e992", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-11.2.0": { + "shasum": "ad47e0447a2e7d7e6ee12afa893a4bac05b4d070", + "tarball": "http://registry.npmjs.org/draughtsman/-/draughtsman-0.2.1-0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-11.2.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/draughtsman/-/draughtsman-0.2.1.tgz" + }, + "0.5.0": { + "shasum": "16794e5e876c058a3dfe2bd940e58172352d3fd8", + "tarball": "http://registry.npmjs.org/draughtsman/-/draughtsman-0.5.0.tgz" + } + }, + "url": "http://registry.npmjs.org/draughtsman/" + }, + "drawback": { + "name": "drawback", + "description": "The drawback framework provides a seamless way to render 2D drawings on the client side using HTML5 technologies with a server-side backend.", + "dist-tags": { + "latest": "0.1.6" + }, + "maintainers": [ + { + "name": "rauchg", + "email": "rauchg@gmail.com" + }, + { + "name": "damian", + "email": "damian@learnboost.com" + }, + { + "name": "aaron", + "email": "aaron.heckmann+github@gmail.com" + } + ], + "author": { + "name": "Damian Suarez", + "email": "damian@learnboost.com" + }, + "time": { + "modified": "2011-11-11T18:30:46.885Z", + "created": "2011-01-06T22:56:41.460Z", + "0.0.2": "2011-01-06T22:56:41.460Z", + "0.0.3": "2011-01-06T22:56:41.460Z", + "0.0.4": "2011-01-06T22:56:41.460Z", + "0.0.5": "2011-01-06T22:56:41.460Z", + "0.0.6": "2011-02-16T19:28:01.610Z", + "0.0.7": "2011-02-21T16:24:04.395Z", + "0.0.8": "2011-02-21T23:53:28.369Z", + "0.0.9": "2011-02-22T18:34:36.742Z", + "0.1.0": "2011-02-22T19:35:17.526Z", + "0.2.0": "2011-02-22T19:36:10.099Z", + "0.1.1": "2011-02-23T13:55:37.295Z", + "0.1.2": "2011-03-09T22:02:36.387Z", + "0.1.3": "2011-11-11T18:18:47.328Z", + "0.1.4": "2011-05-24T23:25:15.886Z", + "0.1.5": "2011-10-05T01:38:28.889Z", + "0.1.6": "2011-11-11T18:30:46.885Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/LearnBoost/drawback.git" + }, + "versions": { + "0.0.5": "http://registry.npmjs.org/drawback/0.0.5", + "0.0.6": "http://registry.npmjs.org/drawback/0.0.6", + "0.0.7": "http://registry.npmjs.org/drawback/0.0.7", + "0.0.8": "http://registry.npmjs.org/drawback/0.0.8", + "0.0.9": "http://registry.npmjs.org/drawback/0.0.9", + "0.1.0": "http://registry.npmjs.org/drawback/0.1.0", + "0.1.1": "http://registry.npmjs.org/drawback/0.1.1", + "0.1.2": "http://registry.npmjs.org/drawback/0.1.2", + "0.1.4": "http://registry.npmjs.org/drawback/0.1.4", + "0.1.5": "http://registry.npmjs.org/drawback/0.1.5", + "0.1.3": "http://registry.npmjs.org/drawback/0.1.3", + "0.1.6": "http://registry.npmjs.org/drawback/0.1.6" + }, + "dist": { + "0.0.5": { + "shasum": "abb699cbd4946f48c8169053bfd2979df6c12da0", + "tarball": "http://registry.npmjs.org/drawback/-/drawback-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "f22039214e59bd1cd530128090de1fa52ec40c1a", + "tarball": "http://registry.npmjs.org/drawback/-/drawback-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "0529ab079973aa9f91cf312a2698f8be51fd5d1f", + "tarball": "http://registry.npmjs.org/drawback/-/drawback-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "4040a071d95153c1f7d84a16fafac74e36b8c9de", + "tarball": "http://registry.npmjs.org/drawback/-/drawback-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "d2074f163e65217e941bff01a51d15c5b5d669f1", + "tarball": "http://registry.npmjs.org/drawback/-/drawback-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "9d42247b4284ebeabeae42fb180c7463a87a4303", + "tarball": "http://registry.npmjs.org/drawback/-/drawback-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "54f529be3ae1015287a9df9377ba5ac9116664a9", + "tarball": "http://registry.npmjs.org/drawback/-/drawback-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "b6907284444ba34754f7df526283f99e2b1f973a", + "tarball": "http://registry.npmjs.org/drawback/-/drawback-0.1.2.tgz" + }, + "0.1.4": { + "shasum": "43af1731b85927522057946394d545086da634c6", + "tarball": "http://registry.npmjs.org/drawback/-/drawback-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "09487fcb1b4f4f54d8b6b70329a3be50776b8885", + "tarball": "http://registry.npmjs.org/drawback/-/drawback-0.1.5.tgz" + }, + "0.1.3": { + "shasum": "caf239a659c17405fbb9deeeac752880a9bc5751", + "tarball": "http://registry.npmjs.org/drawback/-/drawback-0.1.3.tgz" + }, + "0.1.6": { + "shasum": "2b35cfb08b6ba4bfa7623cac092c3100cfa74e4b", + "tarball": "http://registry.npmjs.org/drawback/-/drawback-0.1.6.tgz" + } + }, + "keywords": [ + "canvas", + "node-canvas", + "drawback" + ], + "url": "http://registry.npmjs.org/drawback/" + }, + "dress-shoe": { + "name": "dress-shoe", + "description": "A simple extension of sockjs to allow for namespaced channels of communication over websockets", + "dist-tags": { + "latest": "0.2.5" + }, + "maintainers": [ + { + "name": "reissbaker", + "email": "matthew.reiss.baker@gmail.com" + } + ], + "time": { + "modified": "2011-11-05T07:43:57.721Z", + "created": "2011-10-23T02:18:25.307Z", + "0.0.1": "2011-10-23T02:18:25.678Z", + "0.1.0": "2011-10-23T09:09:51.608Z", + "0.1.1": "2011-10-23T09:31:59.904Z", + "0.1.2": "2011-10-24T01:46:51.475Z", + "0.1.3": "2011-10-25T05:26:56.116Z", + "0.2.3": "2011-10-28T00:40:52.860Z", + "0.2.4": "2011-10-28T06:05:56.471Z", + "0.2.5": "2011-11-05T07:43:57.721Z" + }, + "author": { + "name": "Matt Baker" + }, + "repository": { + "type": "git", + "url": "git://github.com/reissbaker/dress-shoe.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/dress-shoe/0.0.1", + "0.1.0": "http://registry.npmjs.org/dress-shoe/0.1.0", + "0.1.1": "http://registry.npmjs.org/dress-shoe/0.1.1", + "0.1.2": "http://registry.npmjs.org/dress-shoe/0.1.2", + "0.1.3": "http://registry.npmjs.org/dress-shoe/0.1.3", + "0.2.3": "http://registry.npmjs.org/dress-shoe/0.2.3", + "0.2.4": "http://registry.npmjs.org/dress-shoe/0.2.4", + "0.2.5": "http://registry.npmjs.org/dress-shoe/0.2.5" + }, + "dist": { + "0.0.1": { + "shasum": "d87946cd685473f4f12e54e2c14a449f82d3bece", + "tarball": "http://registry.npmjs.org/dress-shoe/-/dress-shoe-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "299bcb8da5f317f154bec4ed8dbd90d1041523a2", + "tarball": "http://registry.npmjs.org/dress-shoe/-/dress-shoe-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "e120228cde2ff13a238f2c2ff2677fa888f2e1db", + "tarball": "http://registry.npmjs.org/dress-shoe/-/dress-shoe-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "05d7075afdda0ae269d6df428db1d470dd8001ce", + "tarball": "http://registry.npmjs.org/dress-shoe/-/dress-shoe-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "412d3bb87eb286ec33ca58705d65a39a39723a31", + "tarball": "http://registry.npmjs.org/dress-shoe/-/dress-shoe-0.1.3.tgz" + }, + "0.2.3": { + "shasum": "3c55be74b94cc9f73d35764985daee79cfcc90cc", + "tarball": "http://registry.npmjs.org/dress-shoe/-/dress-shoe-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "8560c32c344e20404105239d8990f43d77aeabb8", + "tarball": "http://registry.npmjs.org/dress-shoe/-/dress-shoe-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "cac5dd3a9f6acce0edb35f1a57af23ccdf52d66f", + "tarball": "http://registry.npmjs.org/dress-shoe/-/dress-shoe-0.2.5.tgz" + } + }, + "url": "http://registry.npmjs.org/dress-shoe/" + }, + "drev": { + "name": "drev", + "description": "Distributed Redis EventEmitter", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "arunoda", + "email": "arunoda.susiripala@gmail.com" + } + ], + "time": { + "modified": "2011-11-01T02:47:51.134Z", + "created": "2011-09-15T22:46:25.426Z", + "0.0.1": "2011-09-15T22:46:27.687Z", + "0.0.2": "2011-09-17T07:47:45.998Z", + "0.0.3": "2011-09-18T10:59:35.199Z", + "0.0.4": "2011-09-18T12:26:15.894Z", + "0.1.0": "2011-10-20T21:21:52.512Z", + "0.1.1": "2011-10-20T21:53:14.445Z", + "0.1.2": "2011-10-31T19:21:24.938Z", + "0.1.3": "2011-11-01T02:47:51.134Z" + }, + "author": { + "name": "Arunoda Susiripala", + "email": "arunoda.susiripala@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/drev/0.0.1", + "0.0.2": "http://registry.npmjs.org/drev/0.0.2", + "0.0.3": "http://registry.npmjs.org/drev/0.0.3", + "0.0.4": "http://registry.npmjs.org/drev/0.0.4", + "0.1.0": "http://registry.npmjs.org/drev/0.1.0", + "0.1.1": "http://registry.npmjs.org/drev/0.1.1", + "0.1.2": "http://registry.npmjs.org/drev/0.1.2", + "0.1.3": "http://registry.npmjs.org/drev/0.1.3" + }, + "dist": { + "0.0.1": { + "shasum": "fa0482dd891af099dd8a99512bac001846e1817b", + "tarball": "http://registry.npmjs.org/drev/-/drev-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "741fcf9ba2d311907adf11d7a9393460abce05a7", + "tarball": "http://registry.npmjs.org/drev/-/drev-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "8577f7604ec073b537d98d7c570f69a4c2299d3a", + "tarball": "http://registry.npmjs.org/drev/-/drev-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "11a932a52fe7f1fa5bbddcb64790fa4fc8d07d7c", + "tarball": "http://registry.npmjs.org/drev/-/drev-0.0.4.tgz" + }, + "0.1.0": { + "shasum": "03c0450b2f501207e90d408cd4134779c4f12806", + "tarball": "http://registry.npmjs.org/drev/-/drev-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "34053e73ddb4e6c4244fbcbde83d3eddb7d59c88", + "tarball": "http://registry.npmjs.org/drev/-/drev-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "2800857cc8c4099afbce7ad3cdcacb8771de96be", + "tarball": "http://registry.npmjs.org/drev/-/drev-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "269dad79d92f5147a5dfcdf09927449d9dea7a16", + "tarball": "http://registry.npmjs.org/drev/-/drev-0.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/drev/" + }, + "drews-mixins": { + "name": "drews-mixins", + "description": "A couple underscore.js mixins", + "dist-tags": { + "latest": "0.4.0" + }, + "maintainers": [ + { + "name": "drewlesueur", + "email": "drewalex@gmail.com" + } + ], + "time": { + "modified": "2011-06-25T07:17:07.586Z", + "created": "2011-04-07T04:27:58.244Z", + "0.1.0": "2011-04-07T04:27:58.373Z", + "0.2.0": "2011-04-17T08:13:55.753Z", + "0.2.1": "2011-04-24T00:12:11.825Z", + "0.2.2": "2011-04-24T00:16:23.038Z", + "0.2.3": "2011-04-24T04:24:51.889Z", + "0.3.0": "2011-04-25T04:03:24.520Z", + "0.3.1": "2011-04-26T04:37:48.986Z", + "0.4.0": "2011-06-25T07:17:07.586Z" + }, + "author": { + "name": "Drew LeSueur", + "email": "drewalex@gmail.com", + "url": "http://twitter.com/drewlesueur" + }, + "repository": { + "type": "git", + "url": "git://github.com/drewlesueur/drews-mixins.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/drews-mixins/0.1.0", + "0.2.0": "http://registry.npmjs.org/drews-mixins/0.2.0", + "0.2.1": "http://registry.npmjs.org/drews-mixins/0.2.1", + "0.2.2": "http://registry.npmjs.org/drews-mixins/0.2.2", + "0.2.3": "http://registry.npmjs.org/drews-mixins/0.2.3", + "0.3.0": "http://registry.npmjs.org/drews-mixins/0.3.0", + "0.3.1": "http://registry.npmjs.org/drews-mixins/0.3.1", + "0.4.0": "http://registry.npmjs.org/drews-mixins/0.4.0" + }, + "dist": { + "0.1.0": { + "shasum": "41a91237ac4dd1de57d417d7dd9ec32df7ab9ece", + "tarball": "http://registry.npmjs.org/drews-mixins/-/drews-mixins-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "45f39f481487e8a0b726ba29cdc8a0146c3f5cf4", + "tarball": "http://registry.npmjs.org/drews-mixins/-/drews-mixins-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "4d810ca4bbac51eb60b3b3ed272616e560e4f1b8", + "tarball": "http://registry.npmjs.org/drews-mixins/-/drews-mixins-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "bf25fbd45086650997cd29bb61f03394094ead33", + "tarball": "http://registry.npmjs.org/drews-mixins/-/drews-mixins-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "df19bd9aff53b7da462a3df3261ed328049f6ce5", + "tarball": "http://registry.npmjs.org/drews-mixins/-/drews-mixins-0.2.3.tgz" + }, + "0.3.0": { + "shasum": "b2e0c0a8af4d0d2f7f60823aafcfdea3e93ec242", + "tarball": "http://registry.npmjs.org/drews-mixins/-/drews-mixins-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "f3cacb9185c2f514db596ccf65415f5228583c83", + "tarball": "http://registry.npmjs.org/drews-mixins/-/drews-mixins-0.3.1.tgz" + }, + "0.4.0": { + "shasum": "65a21d04a43086261bfae066832f9062493122e5", + "tarball": "http://registry.npmjs.org/drews-mixins/-/drews-mixins-0.4.0.tgz" + } + }, + "keywords": [ + "underscore", + "mixins", + "mixin", + "drew", + "async", + "asynchronous", + "util" + ], + "url": "http://registry.npmjs.org/drews-mixins/" + }, + "drip": { + "name": "drip", + "description": "An EventEmitter alternative for nodejs and the browser that supports namespaces and wildcards.", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "jakeluer", + "email": "jake.luer@incatern.com" + } + ], + "time": { + "modified": "2011-12-07T17:39:57.375Z", + "created": "2011-10-03T08:45:13.564Z", + "0.0.1": "2011-10-03T08:45:14.169Z", + "0.0.2": "2011-10-03T09:39:45.389Z", + "0.0.4": "2011-10-04T11:06:54.392Z", + "0.0.5": "2011-10-05T18:08:50.736Z", + "0.0.6": "2011-10-19T06:14:25.429Z", + "0.1.0": "2011-10-21T17:28:42.325Z", + "0.1.1": "2011-10-22T00:27:20.489Z", + "0.1.2": "2011-10-22T06:53:40.678Z", + "0.1.3": "2011-10-26T18:56:35.123Z", + "0.2.0": "2011-12-06T12:00:12.701Z", + "0.2.1": "2011-12-07T07:54:41.946Z", + "0.2.2": "2011-12-07T17:39:57.375Z" + }, + "author": { + "name": "Jake Luer", + "email": "jake@alogicalparadox.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/logicalparadox/drip.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/drip/0.0.1", + "0.0.2": "http://registry.npmjs.org/drip/0.0.2", + "0.0.4": "http://registry.npmjs.org/drip/0.0.4", + "0.0.5": "http://registry.npmjs.org/drip/0.0.5", + "0.0.6": "http://registry.npmjs.org/drip/0.0.6", + "0.1.0": "http://registry.npmjs.org/drip/0.1.0", + "0.1.1": "http://registry.npmjs.org/drip/0.1.1", + "0.1.2": "http://registry.npmjs.org/drip/0.1.2", + "0.1.3": "http://registry.npmjs.org/drip/0.1.3", + "0.2.0": "http://registry.npmjs.org/drip/0.2.0", + "0.2.1": "http://registry.npmjs.org/drip/0.2.1", + "0.2.2": "http://registry.npmjs.org/drip/0.2.2" + }, + "dist": { + "0.0.1": { + "shasum": "5afc612f05a789b2e11d9e7a1c633b3cfc9f89df", + "tarball": "http://registry.npmjs.org/drip/-/drip-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "30bd7301031804006d1e52f67310ea049205a902", + "tarball": "http://registry.npmjs.org/drip/-/drip-0.0.2.tgz" + }, + "0.0.4": { + "shasum": "0362045b844a9790b74f7ebee0983fbeb68a8938", + "tarball": "http://registry.npmjs.org/drip/-/drip-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "1705e2084372b9516a5238f2e844c3dc838ba05e", + "tarball": "http://registry.npmjs.org/drip/-/drip-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "4d7296c10eaca1cd63bed825be7a6cfbd3f8fe6d", + "tarball": "http://registry.npmjs.org/drip/-/drip-0.0.6.tgz" + }, + "0.1.0": { + "shasum": "e314875b2b3f65414db559e1e9fb7ce9f0c927be", + "tarball": "http://registry.npmjs.org/drip/-/drip-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "a1d70bcfa9711c52b79eca2624e7a88ad24f31bf", + "tarball": "http://registry.npmjs.org/drip/-/drip-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "1b7edf6c044cf4888aafbe8124e2fd8c4803025e", + "tarball": "http://registry.npmjs.org/drip/-/drip-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "baa19fd263205157390f1b1ba1c3b73b38f91fb8", + "tarball": "http://registry.npmjs.org/drip/-/drip-0.1.3.tgz" + }, + "0.2.0": { + "shasum": "3899b9d7d65881bf397c19b5678ee3d76a557f2c", + "tarball": "http://registry.npmjs.org/drip/-/drip-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "c86d6aa1313beb8f25003ecda3f8d4eb96fcab68", + "tarball": "http://registry.npmjs.org/drip/-/drip-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "5fb73a70cee2290642e2ef33bc028f3c224228cc", + "tarball": "http://registry.npmjs.org/drip/-/drip-0.2.2.tgz" + } + }, + "url": "http://registry.npmjs.org/drip/" + }, + "drive": { + "name": "drive", + "description": "CoffeeScript Routing Library for Node", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "cstivers78", + "email": "chris@stivers.us" + } + ], + "time": { + "modified": "2011-09-30T04:49:56.650Z", + "created": "2011-09-30T04:43:34.260Z", + "0.0.0": "2011-09-30T04:43:37.770Z", + "0.0.1": "2011-09-30T04:49:56.650Z" + }, + "author": { + "name": "Chris Stivers", + "email": "chris@stivers.us", + "url": "http://stivers.us" + }, + "repository": { + "type": "git", + "url": "git://github.com/cstivers78/drive.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/drive/0.0.0", + "0.0.1": "http://registry.npmjs.org/drive/0.0.1" + }, + "dist": { + "0.0.0": { + "shasum": "c9c39ccf5cb4ad3d61ea205db584818525b8a090", + "tarball": "http://registry.npmjs.org/drive/-/drive-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "867fcf93f2e52764735f26588980837d9b119af8", + "tarball": "http://registry.npmjs.org/drive/-/drive-0.0.1.tgz" + } + }, + "keywords": [ + "coffeescript", + "http", + "routing" + ], + "url": "http://registry.npmjs.org/drive/" + }, + "drnu": { + "name": "drnu", + "description": "DR Nu player api for Node.js", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "mwl", + "email": "martin@mwl.dk" + } + ], + "time": { + "modified": "2011-07-01T16:14:05.384Z", + "created": "2011-07-01T16:14:04.699Z", + "0.0.2": "2011-07-01T16:14:05.384Z" + }, + "author": { + "name": "Martin Westergaard Lassen", + "email": "martin@mwl.dk" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/drnu/0.0.2" + }, + "dist": { + "0.0.2": { + "shasum": "0af31014acef8faa23b1c51ee0bc2c08e1209645", + "tarball": "http://registry.npmjs.org/drnu/-/drnu-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/drnu/" + }, + "dropbox": { + "name": "dropbox", + "description": "A node.js client module for the official Dropbox API", + "dist-tags": { + "latest": "0.3.3" + }, + "maintainers": [ + { + "name": "evan", + "email": "evan.meagher@gmail.com" + } + ], + "time": { + "modified": "2011-09-08T00:39:27.652Z", + "created": "2011-05-01T23:37:17.161Z", + "0.3.0": "2011-05-01T23:37:17.893Z", + "0.3.1": "2011-05-13T00:07:42.646Z", + "0.3.2": "2011-06-17T22:31:35.708Z", + "0.3.3": "2011-09-08T00:39:27.652Z" + }, + "author": { + "name": "Evan Meagher", + "email": "evan.meagher@gmail.com", + "url": "http://evanmeagher.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/evnm/dropbox-node.git" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/dropbox/0.3.0", + "0.3.1": "http://registry.npmjs.org/dropbox/0.3.1", + "0.3.2": "http://registry.npmjs.org/dropbox/0.3.2", + "0.3.3": "http://registry.npmjs.org/dropbox/0.3.3" + }, + "dist": { + "0.3.0": { + "shasum": "107648362b6e23e372b7df423c677cb7dcd08361", + "tarball": "http://registry.npmjs.org/dropbox/-/dropbox-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "5126bd4b5055267ea08fe1369d68b893ff315c9e", + "tarball": "http://registry.npmjs.org/dropbox/-/dropbox-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "902433cdeda0fd923f61c36868e034c959bd6670", + "tarball": "http://registry.npmjs.org/dropbox/-/dropbox-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "fd1a7e86aaea4511c55fffc40dc522b5779a973b", + "tarball": "http://registry.npmjs.org/dropbox/-/dropbox-0.3.3.tgz" + } + }, + "keywords": [ + "cloud", + "storage", + "REST", + "interface" + ], + "url": "http://registry.npmjs.org/dropbox/" + }, + "dropper": { + "name": "dropper", + "description": "Dropper, is a filter stream that produces fixed size data packets, from every other stream.", + "dist-tags": { + "latest": "0.0.7" + }, + "maintainers": [ + { + "name": "rootslab", + "email": "44gatti@gmail.com" + } + ], + "time": { + "modified": "2011-10-20T21:27:21.325Z", + "created": "2011-10-20T21:27:20.751Z", + "0.0.7": "2011-10-20T21:27:21.325Z" + }, + "author": { + "name": "Guglielmo Ferri", + "email": "44gatti@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/rootslab/dropper.git" + }, + "versions": { + "0.0.7": "http://registry.npmjs.org/dropper/0.0.7" + }, + "dist": { + "0.0.7": { + "shasum": "0a617f05590ed6824b227cdc5eca1184985f59e5", + "tarball": "http://registry.npmjs.org/dropper/-/dropper-0.0.7.tgz" + } + }, + "keywords": [ + "stream", + "dropper", + "streams" + ], + "url": "http://registry.npmjs.org/dropper/" + }, + "drtoms-nodehelpers": { + "name": "drtoms-nodehelpers", + "description": "A library full of helpers.", + "dist-tags": { + "latest": "0.0.9-beta" + }, + "maintainers": [ + { + "name": "drtom", + "email": "DrTom@schank.ch" + } + ], + "time": { + "modified": "2011-05-20T20:25:31.292Z", + "created": "2011-05-20T20:25:30.499Z", + "0.0.9-beta": "2011-05-20T20:25:31.292Z" + }, + "author": { + "name": "Thomas Schank", + "email": "DrTom@schank.ch", + "url": "dr.th.schank.ch" + }, + "versions": { + "0.0.9-beta": "http://registry.npmjs.org/drtoms-nodehelpers/0.0.9-beta" + }, + "dist": { + "0.0.9-beta": { + "shasum": "aa7fcab584dca89e5d901ea20a0baf3d477b0780", + "tarball": "http://registry.npmjs.org/drtoms-nodehelpers/-/drtoms-nodehelpers-0.0.9-beta.tgz" + } + }, + "url": "http://registry.npmjs.org/drtoms-nodehelpers/" + }, + "drty": { + "name": "drty", + "description": "Django port to node.js", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "drtyhbo", + "email": "drtyhbo@gmail.com" + } + ], + "time": { + "modified": "2011-03-05T04:07:17.583Z", + "created": "2011-03-05T04:07:16.960Z", + "0.1.4": "2011-03-05T04:07:17.583Z" + }, + "author": { + "name": "Andreas Binnewies", + "email": "drtyhbo@gmail.com" + }, + "versions": { + "0.1.4": "http://registry.npmjs.org/drty/0.1.4" + }, + "dist": { + "0.1.4": { + "shasum": "b337f49e9be1fb93155a88d296a7827c264a89a8", + "tarball": "http://registry.npmjs.org/drty/-/drty-0.1.4.tgz" + } + }, + "url": "http://registry.npmjs.org/drty/" + }, + "drty-facebook": { + "name": "drty-facebook", + "description": "Adding Facebook support to drty", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "drtyhbo", + "email": "drtyhbo@gmail.com" + } + ], + "time": { + "modified": "2011-02-06T06:28:29.894Z", + "created": "2011-02-06T06:28:29.465Z", + "0.0.1": "2011-02-06T06:28:29.894Z" + }, + "author": { + "name": "Andreas Binnewies", + "email": "drtyhbo@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/drty-facebook/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "e931627f137dec11af6f01c04123b0509468f05e", + "tarball": "http://registry.npmjs.org/drty-facebook/-/drty-facebook-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/drty-facebook/" + }, + "drumkit": { + "name": "drumkit", + "description": "Plugin Driven, Full Stack Web Framework for Node.js", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "chrisjpowers", + "email": "chrisjpowers@gmail.com" + } + ], + "time": { + "modified": "2011-12-12T14:07:53.484Z", + "created": "2011-07-08T03:26:13.544Z", + "0.1.0": "2011-07-08T03:26:13.994Z", + "0.1.1": "2011-12-12T14:07:53.484Z" + }, + "author": { + "name": "Chris Powers", + "email": "chrisjpowers@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/chrisjpowers/drumkit.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/drumkit/0.1.0", + "0.1.1": "http://registry.npmjs.org/drumkit/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "2fe100b4da9d69025695b1e4b4c569e965149dbf", + "tarball": "http://registry.npmjs.org/drumkit/-/drumkit-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "407c9cb6c904364adda0c0ba0ffcbd75890408d9", + "tarball": "http://registry.npmjs.org/drumkit/-/drumkit-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/drumkit/" + }, + "drupal": { + "name": "drupal", + "description": "Implementation of parts of Drupal’s user/access control API.", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "mikl", + "email": "mikkel@hoegh.org" + } + ], + "time": { + "modified": "2011-09-06T02:06:10.815Z", + "created": "2011-06-11T00:32:13.892Z", + "0.1.0": "2011-06-11T00:32:14.605Z", + "0.2.0": "2011-06-18T13:37:01.015Z", + "0.2.1": "2011-06-22T13:02:07.024Z", + "0.2.2": "2011-06-25T20:53:53.693Z", + "0.2.3": "2011-07-07T14:02:54.166Z", + "0.3.0": "2011-09-06T02:06:10.815Z" + }, + "author": { + "name": "Mikkel Hoegh", + "email": "mikkel@hoegh.org", + "url": "http://mikkel.hoegh.org/" + }, + "repository": { + "type": "git", + "url": "git://github.com/mikl/node-drupal.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/drupal/0.1.0", + "0.2.0": "http://registry.npmjs.org/drupal/0.2.0", + "0.2.1": "http://registry.npmjs.org/drupal/0.2.1", + "0.2.2": "http://registry.npmjs.org/drupal/0.2.2", + "0.2.3": "http://registry.npmjs.org/drupal/0.2.3", + "0.3.0": "http://registry.npmjs.org/drupal/0.3.0" + }, + "dist": { + "0.1.0": { + "shasum": "7aaf4ec0caee20519faa162a667cac13835f1870", + "tarball": "http://registry.npmjs.org/drupal/-/drupal-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "d63bfb97c24f4785de47dfd59c290839f2aac0e6", + "tarball": "http://registry.npmjs.org/drupal/-/drupal-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "11821a9a828a138518ccc286d6eb8a3fc4b47a3a", + "tarball": "http://registry.npmjs.org/drupal/-/drupal-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "e1ef597ef91e4e74936422578a84f6e6584480c6", + "tarball": "http://registry.npmjs.org/drupal/-/drupal-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "69b2f0096a0ce683dda46f9fc3c4ffcb6f01d24f", + "tarball": "http://registry.npmjs.org/drupal/-/drupal-0.2.3.tgz" + }, + "0.3.0": { + "shasum": "6568146d184e8cc0f54338750b88ebff16bd1608", + "tarball": "http://registry.npmjs.org/drupal/-/drupal-0.3.0.tgz" + } + }, + "keywords": [ + "framework", + "web" + ], + "url": "http://registry.npmjs.org/drupal/" + }, + "dryice": { + "name": "dryice", + "description": "A CommonJS/RequireJS packaging tool for browser scripts", + "dist-tags": { + "latest": "0.3.1" + }, + "maintainers": [ + { + "name": "joewalker", + "email": "joe@getahead.org" + } + ], + "time": { + "modified": "2011-11-09T18:59:26.284Z", + "created": "2011-01-14T12:05:21.050Z", + "0.1.0": "2011-01-14T12:05:21.342Z", + "0.2.0": "2011-01-27T13:48:57.088Z", + "0.2.1": "2011-01-28T16:34:26.228Z", + "0.2.2": "2011-02-08T16:57:33.344Z", + "0.2.3": "2011-03-30T15:56:01.615Z", + "0.2.4": "2011-04-27T14:27:43.947Z", + "0.2.5": "2011-06-22T15:48:05.754Z", + "0.3.0": "2011-11-06T20:10:58.368Z", + "0.3.1": "2011-11-09T18:59:26.284Z" + }, + "author": { + "name": "Joe Walker", + "email": "joe@getahead.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/mozilla/dryice.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/dryice/0.1.0", + "0.2.0": "http://registry.npmjs.org/dryice/0.2.0", + "0.2.1": "http://registry.npmjs.org/dryice/0.2.1", + "0.2.2": "http://registry.npmjs.org/dryice/0.2.2", + "0.2.3": "http://registry.npmjs.org/dryice/0.2.3", + "0.2.4": "http://registry.npmjs.org/dryice/0.2.4", + "0.2.5": "http://registry.npmjs.org/dryice/0.2.5", + "0.3.0": "http://registry.npmjs.org/dryice/0.3.0", + "0.3.1": "http://registry.npmjs.org/dryice/0.3.1" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/dryice/-/dryice@0.1.0.tgz" + }, + "0.2.0": { + "tarball": "http://registry.npmjs.org/dryice/-/dryice@0.2.0.tgz" + }, + "0.2.1": { + "tarball": "http://registry.npmjs.org/dryice/-/dryice@0.2.1.tgz" + }, + "0.2.2": { + "tarball": "http://registry.npmjs.org/dryice/-/dryice@0.2.2.tgz" + }, + "0.2.3": { + "tarball": "http://registry.npmjs.org/dryice/-/dryice@0.2.3.tgz" + }, + "0.2.4": { + "tarball": "http://registry.npmjs.org/dryice/-/dryice@0.2.4.tgz" + }, + "0.2.5": { + "shasum": "80ca9af7e804b3e68c182a576a968dcaf01b2151", + "tarball": "http://registry.npmjs.org/dryice/-/dryice-0.2.5.tgz" + }, + "0.3.0": { + "shasum": "e913367b3a1fc6c609c5f54e7459ff38fdfadfce", + "tarball": "http://registry.npmjs.org/dryice/-/dryice-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "44dfdc91a93cb82b7f073764118c8d965a9aad16", + "tarball": "http://registry.npmjs.org/dryice/-/dryice-0.3.1.tgz" + } + }, + "keywords": [ + "build", + "requirejs" + ], + "url": "http://registry.npmjs.org/dryice/" + }, + "drykup": { + "name": "drykup", + "description": "A coffeekup-compatible template (dsl) for coffeeScript. Needs no compile.", + "dist-tags": { + "latest": "0.1.2" + }, + "readme": "# DryKup\nMarkup as CoffeeScript Without Magic\n\nDryKup is an informal fork of Maurice Machado's excellent [CoffeeKup](https://github.com/mauricemach/coffeekup). It is not a real fork because there is little common code. Until DryKup has better documentation, you can study coffeeKup and check here for the differences. I wrote a micro-book on coffeekup [here](https://github.com/mark-hahn/coffeekup-intro) and I will do the same for DryKup.\n\nThe dryKup github project can be found [here](https://github.com/mark-hahn/drykup).\n\n## Status: *Version 0.1*\n\nDryKup has only been tested on the three included test files. I will be moving it into existing production code soon so it should get to beta status quite quickly.\n\n## My apology for the weird name, DryKup\n\nThe first reason I named it dryKup is that I like short names as I am a lazy typist. \n\nMore to the point, coffeeKup has what I call *magic*. There are things going on behind the scenes that present a barrier to new users. This magic also causes restrictions in the operation which DryKup tries to remove. The word *natural* is an antonym of *magic*. A type of coffee known as *natural* coffee is also known as *dry* coffee. Hence dryKup is the natural version of coffeeKup.\n\n## Drykup is *just* coffeeKup which is *just* coffeeScript which is *just* javaScript\n\nThe dryKup template code (which is actually a coffescript DSL) is almost compatible with the coffeeKup template function. Here are some differences ...\n \n1) Values returned from arguments with type `function` are ignored. This is how coffeeKup used to work. So this coffeeKup code ...\n\n a href:'/home', -> 'Go Home'\n \n... must be replaced with the following or the *Go Home* will not be in the output. I'm not sure why anyone would put the function in there to begin with.\n\n\ta href:'/home', 'Go Home'\n \n2) DryKup does not destroy the closure for the template. This means you don't have to pass in the *locals* var or other params to any compile function.\n\n3) All variables in the template closure are *live* without using any `with` statement. DryKup can be used in javaScript strict mode.\n\n## How DryKup works compared to CoffeeCup\n\nThere is no compile phase. Unlike coffeeKup, drykup just runs immediately. DryKup is a simple library that you include with your app to generate html directly by executing the dryKup *template*. This may be a disadvantage compared to coffeeKup because coffeKup compiled templates are fast. If you are only running a template once, then dryKup is faster because it doesn't have the compile step overhead. There is a slim chance dryKup may be as fast even for multiple runs. This conjecture needs to be tested.\n\n\n\n## How does DryKup do this?\n\nThere are two major parts of the magic in coffeeKup. Both consist of adding more coffeeScript to the template function source and then creating a new *compiled* function. The first magic is defining the HTML tags as functions. The second magic is adding a hidden variable to keep the HTML results as it is generated.\n\nDryKup gets rid of this magic by explicity defining the HTML tag functions and a dryKup object instance which has a `htmlOut` property to hold the output. So nothing is hidden and everything just executes as normal coffeeScript with no compile phase.\n\n## Why you should use DryKup instead of CoffeeKup.\n\nThe short answer is that there is no reason. CoffeKup has advantages and dryKup has its own. It's a matter of personal style. If I had to pick a single reason for creating dryKup, it would be the retention of closure.\n\n## Example DryKup code: *The Mandatory Hello World*\n\n\t{head, title, body} = drykup = require('drykup')()\n\thead -> \n\t\ttitle 'Hello World'\n\tbody ->\n\nExecuting this code will result in the property `drykup.htmlOut` containing this ...\n\n\t\n\t\tHello World\n\t\n\t\n\t\n\nAs you can see, the executable tag functions, `head`, `title`, and `body`, are simple functions from the dryKup module. These function declarations can get somewhat large, but you can just cut and paste the code. Also, these only need to be defined once in a module with multiple templates. Also, you may be surprised at how few different tags you actually use. You can build up the definition code by just running into function undefined errors and adding them on the fly.\n\nNote that in a browser, dryKup is defined globally as `window.drykup`. And if you are really \nbrave you can make the tag functions themselves be global. Just execute `drykup.defineGlobalTagFuncs()`.\n\nThe dryKup philosophy is that the template is natural code with visible clear definitions. This is no different than requiring variable definitions in the beginning of any source.\n\n## Installing\n\n\tnpm i drykup\n\n## Usage\n\nYou create and instance of the `Drykup` class by calling this factory function. See test examples for real-world usage.\n \n drykup = require('drykup')(options)\n \n`options` is not required. If included it must be an object with optional properties. Here are \nsome examples.\n\n htmlOut: '' # Initial value of the html buffer. Defaults to ''.\n indent:' ' # This text is applied to the beginning of each output line.\n expand: true # This flag will cause all attribute and style specifications\n # to use a weird shorthand languge. I will document it soon.\n\n## License\n\nStandard MIT license. See `LICENSE` file.\n", + "maintainers": [ + { + "name": "mchahn", + "email": "mark@hahnca.com" + } + ], + "time": { + "modified": "2011-11-18T20:22:01.216Z", + "created": "2011-11-15T22:52:55.599Z", + "0.1.0": "2011-11-15T22:52:56.781Z", + "0.1.1": "2011-11-18T20:15:49.704Z", + "0.1.2": "2011-11-18T20:22:01.216Z" + }, + "author": { + "name": "Mark Hahn", + "email": "mark@hahnca.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/drykup/0.1.0", + "0.1.1": "http://registry.npmjs.org/drykup/0.1.1", + "0.1.2": "http://registry.npmjs.org/drykup/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "d928ac25f27cad73bfdc85f7a9c421efbe885450", + "tarball": "http://registry.npmjs.org/drykup/-/drykup-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "dd2af845b02052b1cb87999f868fc1640421c79b", + "tarball": "http://registry.npmjs.org/drykup/-/drykup-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "06af051c62c3a38838195e12b2023368e64d3426", + "tarball": "http://registry.npmjs.org/drykup/-/drykup-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/drykup/" + }, + "dryml": { + "name": "dryml", + "description": "DRYML for Node", + "dist-tags": { + "latest": "0.2.3" + }, + "maintainers": [ + { + "name": "jupiter", + "email": "pieter@wavana.com" + } + ], + "time": { + "modified": "2011-11-24T16:27:11.099Z", + "created": "2011-02-15T12:59:16.142Z", + "0.1.2": "2011-02-15T12:59:17.936Z", + "0.1.3": "2011-02-15T19:29:34.627Z", + "0.1.4": "2011-02-17T11:29:00.558Z", + "0.1.5": "2011-02-23T10:14:03.433Z", + "0.1.6": "2011-02-25T17:38:45.500Z", + "0.1.7": "2011-03-02T13:17:08.110Z", + "0.1.8": "2011-03-09T19:50:38.926Z", + "0.1.9": "2011-03-11T17:44:01.811Z", + "0.1.10": "2011-03-11T17:57:44.113Z", + "0.1.11": "2011-03-11T19:15:43.596Z", + "0.1.12": "2011-03-21T14:45:58.083Z", + "0.1.15": "2011-08-16T10:23:33.407Z", + "0.2.0": "2011-09-23T13:51:16.037Z", + "0.2.1": "2011-09-29T12:01:19.247Z", + "0.2.2": "2011-10-25T15:17:28.643Z", + "0.2.3": "2011-11-24T16:27:11.099Z" + }, + "author": { + "name": "Pieter Raubenheimer", + "email": "pieter@wavana.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/jupiter/node-dryml.git" + }, + "versions": { + "0.1.2": "http://registry.npmjs.org/dryml/0.1.2", + "0.1.3": "http://registry.npmjs.org/dryml/0.1.3", + "0.1.4": "http://registry.npmjs.org/dryml/0.1.4", + "0.1.5": "http://registry.npmjs.org/dryml/0.1.5", + "0.1.6": "http://registry.npmjs.org/dryml/0.1.6", + "0.1.7": "http://registry.npmjs.org/dryml/0.1.7", + "0.1.8": "http://registry.npmjs.org/dryml/0.1.8", + "0.1.9": "http://registry.npmjs.org/dryml/0.1.9", + "0.1.10": "http://registry.npmjs.org/dryml/0.1.10", + "0.1.11": "http://registry.npmjs.org/dryml/0.1.11", + "0.1.12": "http://registry.npmjs.org/dryml/0.1.12", + "0.1.15": "http://registry.npmjs.org/dryml/0.1.15", + "0.2.0": "http://registry.npmjs.org/dryml/0.2.0", + "0.2.1": "http://registry.npmjs.org/dryml/0.2.1", + "0.2.2": "http://registry.npmjs.org/dryml/0.2.2", + "0.2.3": "http://registry.npmjs.org/dryml/0.2.3" + }, + "dist": { + "0.1.2": { + "shasum": "8f80351a24aa498bda3e6ec31b9dc768ad6929c9", + "tarball": "http://registry.npmjs.org/dryml/-/dryml-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "fcf73fe12004066f19f748da2571e51414c746a2", + "tarball": "http://registry.npmjs.org/dryml/-/dryml-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "7dff1664a8b5373a100c7498d4d1bda262b401db", + "tarball": "http://registry.npmjs.org/dryml/-/dryml-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "d194571a06b2e52172bba7185bb8d2d9697b3158", + "tarball": "http://registry.npmjs.org/dryml/-/dryml-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "9c0ec8dcd58787dece98fbd246d87c0479544aee", + "tarball": "http://registry.npmjs.org/dryml/-/dryml-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "218088e1089e0cb0b077e489634ac470974985d8", + "tarball": "http://registry.npmjs.org/dryml/-/dryml-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "75b5816e81600085199603fcbbe3cd60e52439cb", + "tarball": "http://registry.npmjs.org/dryml/-/dryml-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "e71bdd287596aeba7e61ebf23321b9e9cf1d6a53", + "tarball": "http://registry.npmjs.org/dryml/-/dryml-0.1.9.tgz" + }, + "0.1.10": { + "shasum": "56e7482ad4a09d8516386987abea92086eda994c", + "tarball": "http://registry.npmjs.org/dryml/-/dryml-0.1.10.tgz" + }, + "0.1.11": { + "shasum": "6a4cce4171fb2e7e6fbd5ac898314be9d2a0ce41", + "tarball": "http://registry.npmjs.org/dryml/-/dryml-0.1.11.tgz" + }, + "0.1.12": { + "shasum": "897f3bcff9229f58320a733e78e4ea62799c4db0", + "tarball": "http://registry.npmjs.org/dryml/-/dryml-0.1.12.tgz" + }, + "0.1.15": { + "shasum": "5c4d9ec116968384d1e63c1eaa517ea9972cb36d", + "tarball": "http://registry.npmjs.org/dryml/-/dryml-0.1.15.tgz" + }, + "0.2.0": { + "shasum": "ae04e3b12717606796aca884a079c8aabe8bf73c", + "tarball": "http://registry.npmjs.org/dryml/-/dryml-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "a374e719228637904e0ff205d426350d2a5e6390", + "tarball": "http://registry.npmjs.org/dryml/-/dryml-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "db9f72dfb8c05e996cac3075adea2bd63ee35a4b", + "tarball": "http://registry.npmjs.org/dryml/-/dryml-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "b4646607715968f2ea3b4409bfae1b48746f875e", + "tarball": "http://registry.npmjs.org/dryml/-/dryml-0.2.3.tgz" + } + }, + "keywords": [ + "template", + "engine", + "dryml", + "xml", + "html", + "ejs", + "express" + ], + "url": "http://registry.npmjs.org/dryml/" + }, + "ds": { + "name": "ds", + "description": "Simple data store for prototyping", + "dist-tags": { + "latest": "1.4.0" + }, + "maintainers": [ + { + "name": "sleeplessinc", + "email": "joe@sleepless.com" + } + ], + "time": { + "modified": "2011-12-08T02:41:22.136Z", + "created": "2011-08-02T18:13:53.763Z", + "1.0.0": "2011-12-08T02:41:22.136Z", + "1.0.1": "2011-12-08T02:41:22.136Z", + "1.1.0": "2011-12-08T02:41:22.136Z", + "1.2.0": "2011-12-08T02:41:22.136Z", + "1.4.0": "2011-12-08T02:41:22.136Z" + }, + "author": { + "name": "Joe Hitchens", + "email": "joe@sleepless.com", + "url": "sleepless.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/sleeplessinc/ds.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/ds/1.0.0", + "1.0.1": "http://registry.npmjs.org/ds/1.0.1", + "1.1.0": "http://registry.npmjs.org/ds/1.1.0", + "1.2.0": "http://registry.npmjs.org/ds/1.2.0", + "1.4.0": "http://registry.npmjs.org/ds/1.4.0" + }, + "dist": { + "1.0.0": { + "shasum": "63889863475d6e1b74380ff4e66e379746c446b0", + "tarball": "http://registry.npmjs.org/ds/-/ds-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "588c4e39a2125de41288cca7f310a315523d5183", + "tarball": "http://registry.npmjs.org/ds/-/ds-1.0.1.tgz" + }, + "1.1.0": { + "shasum": "9db32b6539d7647ef18c3393f63f767c1cab9526", + "tarball": "http://registry.npmjs.org/ds/-/ds-1.1.0.tgz" + }, + "1.2.0": { + "shasum": "39b38942a53b149e7e27a8930acdad193c86260a", + "tarball": "http://registry.npmjs.org/ds/-/ds-1.2.0.tgz" + }, + "1.4.0": { + "shasum": "6dcc1c52e29dfb18fbde9e51e73e5d760f585b46", + "tarball": "http://registry.npmjs.org/ds/-/ds-1.4.0.tgz" + } + }, + "url": "http://registry.npmjs.org/ds/" + }, + "dt": { + "name": "dt", + "description": "Dates and Times", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "peterbraden", + "email": "peterbraden@peterbraden.co.uk" + } + ], + "time": { + "modified": "2011-04-16T20:39:33.000Z", + "created": "2011-04-16T20:39:32.642Z", + "0.0.1": "2011-04-16T20:39:33.000Z" + }, + "author": { + "name": "Peter Braden", + "email": "peterbraden@peterbraden.co.uk", + "url": "peterbraden.co.uk" + }, + "repository": { + "type": "git", + "url": "git://github.com/peterbraden/dt.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/dt/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "0e8cd8f0209b2cd95fca2a29bf999d8c194256da", + "tarball": "http://registry.npmjs.org/dt/-/dt-0.0.1.tgz" + } + }, + "keywords": [ + "time", + "date" + ], + "url": "http://registry.npmjs.org/dt/" + }, + "dtl": { + "name": "dtl", + "description": "A diff template library binding for node.js", + "dist-tags": { + "latest": "0.0.8" + }, + "maintainers": [ + { + "name": "cubicdaiya", + "email": "cubicdaiya@gmail.com" + } + ], + "time": { + "modified": "2011-11-21T18:00:20.935Z", + "created": "2011-05-16T15:32:10.730Z", + "0.0.2": "2011-05-16T15:32:12.046Z", + "0.0.3": "2011-05-16T15:50:51.523Z", + "0.0.4": "2011-05-17T16:10:21.796Z", + "0.0.5": "2011-05-19T15:55:25.764Z", + "0.0.6": "2011-05-23T00:39:24.628Z", + "0.0.7": "2011-11-20T10:24:20.355Z", + "0.0.8": "2011-11-21T18:00:20.935Z" + }, + "author": { + "name": "Tatsuhiko Kubo", + "email": "cubicdaiya@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/cubicdaiya/node-dtl.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/dtl/0.0.2", + "0.0.3": "http://registry.npmjs.org/dtl/0.0.3", + "0.0.4": "http://registry.npmjs.org/dtl/0.0.4", + "0.0.5": "http://registry.npmjs.org/dtl/0.0.5", + "0.0.6": "http://registry.npmjs.org/dtl/0.0.6", + "0.0.7": "http://registry.npmjs.org/dtl/0.0.7", + "0.0.8": "http://registry.npmjs.org/dtl/0.0.8" + }, + "dist": { + "0.0.2": { + "shasum": "2ec321ae541c9822de78d12ce6c0e7cc957f12f0", + "tarball": "http://registry.npmjs.org/dtl/-/dtl-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "00fef4bbbe785de8676d126a39266e3f72c248df", + "tarball": "http://registry.npmjs.org/dtl/-/dtl-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "66f041b1f9b75996d2e5415077ff6fb5c45b2c84", + "tarball": "http://registry.npmjs.org/dtl/-/dtl-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "7fa1bf158ca76607f575a11b84a93d3305f31209", + "tarball": "http://registry.npmjs.org/dtl/-/dtl-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "800be114ae7e47ba7aa3078939835fa0d92aa38c", + "tarball": "http://registry.npmjs.org/dtl/-/dtl-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "b60a5c821597953b0c83eb287ceeaf92510949c1", + "tarball": "http://registry.npmjs.org/dtl/-/dtl-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "c980c0dcc81d5f3eb6c1c06b7150e14014df9bd8", + "tarball": "http://registry.npmjs.org/dtl/-/dtl-0.0.8.tgz" + } + }, + "keywords": [ + "diff", + "diff3", + "editdistance", + "unified format" + ], + "url": "http://registry.npmjs.org/dtl/" + }, + "dtrace-provider": { + "name": "dtrace-provider", + "description": "Native DTrace providers for node.js applications", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "chrisa", + "email": "chris@nodnol.org" + } + ], + "time": { + "modified": "2011-12-13T21:28:44.654Z", + "created": "2011-01-27T18:36:37.447Z", + "0.0.1": "2011-01-27T18:36:37.927Z", + "0.0.2": "2011-02-05T13:25:07.437Z", + "0.0.3": "2011-08-31T08:57:50.164Z", + "0.0.4": "2011-12-12T14:55:10.220Z", + "0.0.5": "2011-12-13T21:28:44.654Z" + }, + "author": { + "name": "Chris Andrews", + "email": "chris@nodnol.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/chrisa/node-dtrace-provider.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/dtrace-provider/0.0.1", + "0.0.2": "http://registry.npmjs.org/dtrace-provider/0.0.2", + "0.0.3": "http://registry.npmjs.org/dtrace-provider/0.0.3", + "0.0.4": "http://registry.npmjs.org/dtrace-provider/0.0.4", + "0.0.5": "http://registry.npmjs.org/dtrace-provider/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "09bbb1920009be278e279d2c4ab2bc2bf5dcde5f", + "tarball": "http://registry.npmjs.org/dtrace-provider/-/dtrace-provider-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f51b873081717c25b465d7dea5d79b4bd6544461", + "tarball": "http://registry.npmjs.org/dtrace-provider/-/dtrace-provider-0.0.2.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "fbb1a7a6d2e7bc30d3724383f92ab1b597f2a7cb", + "tarball": "http://registry.npmjs.org/dtrace-provider/-/dtrace-provider-0.0.2-0.4-sunos-5.11.tgz" + } + } + }, + "0.0.3": { + "shasum": "cb9897e5ce0bf6db51d0b402b382bff26a55af6a", + "tarball": "http://registry.npmjs.org/dtrace-provider/-/dtrace-provider-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "29688350bc2e057753abe19ec0dc024d2cabcab8", + "tarball": "http://registry.npmjs.org/dtrace-provider/-/dtrace-provider-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "62ab508d7dabdff697b41aa9684d973bd5a59d4e", + "tarball": "http://registry.npmjs.org/dtrace-provider/-/dtrace-provider-0.0.5.tgz" + } + }, + "keywords": [ + "dtrace" + ], + "url": "http://registry.npmjs.org/dtrace-provider/" + }, + "dtrejo": { + "name": "dtrejo", + "description": "David Trejo", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "dtrejo", + "email": "dtrejo@cs.brown.edu" + } + ], + "time": { + "modified": "2011-06-02T06:36:17.788Z", + "created": "2011-06-02T06:36:17.034Z", + "0.1.0": "2011-06-02T06:36:17.788Z" + }, + "author": { + "name": "David Trejo", + "email": "dtrejo@cs.brown.edu", + "url": "http://dtrejo.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/dtrejo.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/dtrejo/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "037a4ddcf4b2fb539e2f8f61b193631262eb0d04", + "tarball": "http://registry.npmjs.org/dtrejo/-/dtrejo-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/dtrejo/" + }, + "dude": { + "name": "dude", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "Tim-Smart", + "email": "tim@fostle.com" + } + ], + "time": { + "modified": "2011-06-14T01:30:01.451Z", + "created": "2011-06-14T01:29:59.863Z", + "0.1.0": "2011-06-14T01:30:01.451Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/dude/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "8c124feca357c6864f35ad3e9cd658a6bdea9ba5", + "tarball": "http://registry.npmjs.org/dude/-/dude-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/dude/" + }, + "duino": { + "name": "duino", + "description": "Arduino framework for mad scientists", + "dist-tags": { + "latest": "0.0.3" + }, + "readme": "# duino\n\nA framework for working with Arduinos in node.js\n\n# install\n\n npm install duino\n\n# usage\n\n````javascript\nvar arduino = require('duino'),\n board = new arduino.Board();\n\nboard.on('connected', function(){\n board.write('Hello world!');\n});\n````\n", + "maintainers": [ + { + "name": "ecto", + "email": "diffference@gmail.com" + } + ], + "time": { + "modified": "2011-12-08T02:59:31.588Z", + "created": "2011-12-01T21:53:58.820Z", + "0.0.0": "2011-12-01T21:53:59.237Z", + "0.0.1": "2011-12-02T09:28:26.987Z", + "0.0.2": "2011-12-05T15:47:04.046Z", + "0.0.3": "2011-12-08T02:59:31.588Z" + }, + "author": { + "name": "Cam Pedersen", + "email": "diffference@gmail.com", + "url": "http://campedersen.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/ecto/duino.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/duino/0.0.0", + "0.0.1": "http://registry.npmjs.org/duino/0.0.1", + "0.0.2": "http://registry.npmjs.org/duino/0.0.2", + "0.0.3": "http://registry.npmjs.org/duino/0.0.3" + }, + "dist": { + "0.0.0": { + "shasum": "5314c8abfa2d6d5bbd3eba7e80ed38c971ca0eb3", + "tarball": "http://registry.npmjs.org/duino/-/duino-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "951a9a710b69029347a685493c9a841fe30b65ae", + "tarball": "http://registry.npmjs.org/duino/-/duino-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "5f34129b722b935594d54a13963e5775d1b0db11", + "tarball": "http://registry.npmjs.org/duino/-/duino-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "6699726f121685dce9a516cd336015262bf4e71b", + "tarball": "http://registry.npmjs.org/duino/-/duino-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/duino/" + }, + "dumb-pgm": { + "name": "dumb-pgm", + "description": "Simple PGM reader and writer", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "thejh", + "email": "jannhorn@gmail.com" + } + ], + "time": { + "modified": "2011-10-15T13:44:40.099Z", + "created": "2011-10-15T13:44:38.306Z", + "0.1.0": "2011-10-15T13:44:40.099Z" + }, + "author": { + "name": "Jann Horn", + "email": "jannhorn@googlemail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/thejh/node-dumb-pgm.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/dumb-pgm/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "03ad899f47d6a75971f00d5fd5949d4dc8d76c76", + "tarball": "http://registry.npmjs.org/dumb-pgm/-/dumb-pgm-0.1.0.tgz" + } + }, + "keywords": [ + "image", + "pgm", + "graymap", + "read", + "write" + ], + "url": "http://registry.npmjs.org/dumb-pgm/" + }, + "dunce": { + "name": "dunce", + "description": "A PHP development server", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "benmills", + "email": "ben@bmdev.org" + } + ], + "time": { + "modified": "2011-08-20T20:18:36.396Z", + "created": "2011-08-20T20:18:34.574Z", + "0.0.1": "2011-08-20T20:18:36.396Z" + }, + "author": { + "name": "Ben Mills" + }, + "repository": { + "type": "git", + "url": "git://github.com/benmills/dunce.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/dunce/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "585b1c5ef2337d167f316fa885c002d8e33fa6be", + "tarball": "http://registry.npmjs.org/dunce/-/dunce-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/dunce/" + }, + "duostack": { + "name": "duostack", + "description": "Duostack command line client: create and manage Duostack apps", + "dist-tags": { + "latest": "0.5.0" + }, + "maintainers": [ + { + "name": "tfe", + "email": "todd@toddeichel.com" + } + ], + "time": { + "modified": "2011-04-30T12:29:05.026Z", + "created": "2011-02-11T22:34:39.922Z", + "0.1.0": "2011-02-11T22:34:40.442Z", + "0.2.0": "2011-02-17T22:21:06.261Z", + "0.2.1": "2011-03-01T08:05:04.878Z", + "0.3.0": "2011-03-04T03:08:18.277Z", + "0.4.0": "2011-03-20T10:03:05.560Z", + "0.5.0": "2011-04-30T12:29:05.026Z" + }, + "author": { + "name": "Todd Eichel", + "email": "todd@toddeichel.com", + "url": "http://toddeichel.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/duostack/duostack-client.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/duostack/0.1.0", + "0.2.0": "http://registry.npmjs.org/duostack/0.2.0", + "0.2.1": "http://registry.npmjs.org/duostack/0.2.1", + "0.3.0": "http://registry.npmjs.org/duostack/0.3.0", + "0.4.0": "http://registry.npmjs.org/duostack/0.4.0", + "0.5.0": "http://registry.npmjs.org/duostack/0.5.0" + }, + "dist": { + "0.1.0": { + "shasum": "fef941673847cdc2f80e734ae21ff1ae6bb8ac79", + "tarball": "http://registry.npmjs.org/duostack/-/duostack-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "f65439cc824af4f0cfd2a9fabb2f5c2e8a7bb964", + "tarball": "http://registry.npmjs.org/duostack/-/duostack-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "9a0ea4013bc0a80294e2c72e3884c09ae3b67601", + "tarball": "http://registry.npmjs.org/duostack/-/duostack-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "1f147f9a69e64cec192c1c13af028f2a63e0e997", + "tarball": "http://registry.npmjs.org/duostack/-/duostack-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "367b25bc006bdf10c1109ed4f86660c6f15d1ffd", + "tarball": "http://registry.npmjs.org/duostack/-/duostack-0.4.0.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "00b9c1961d386849b1186c27e17cab0b1be05ab3", + "tarball": "http://registry.npmjs.org/duostack/-/duostack-0.4.0-0.4-sunos-5.11.tgz" + } + } + }, + "0.5.0": { + "shasum": "5104a02a68869d6c9038b5093143c353592844c4", + "tarball": "http://registry.npmjs.org/duostack/-/duostack-0.5.0.tgz" + } + }, + "keywords": "duostack client cloud hosting platform", + "url": "http://registry.npmjs.org/duostack/" + }, + "duplex-stream": { + "name": "duplex-stream", + "description": "Composable streams. Present a distinct readable stream and a distinct writable stream as a single Stream for reading/writing.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "samcday", + "email": "sam.c.day@gmail.com" + } + ], + "time": { + "modified": "2011-02-19T04:55:18.292Z", + "created": "2011-02-19T04:55:17.370Z", + "0.1.0": "2011-02-19T04:55:18.292Z" + }, + "author": { + "name": "Sam Day", + "email": "sam.c.day@gmail.com" + }, + "repository": { + "type": "git", + "url": "https://github.com/samcday/node-duplex-stream.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/duplex-stream/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "33082a58d36dab91160b5ae2c63192ad6d4c3534", + "tarball": "http://registry.npmjs.org/duplex-stream/-/duplex-stream-0.1.0.tgz" + } + }, + "keywords": "duplex stream, combined stream", + "url": "http://registry.npmjs.org/duplex-stream/" + }, + "durilka": { + "name": "durilka", + "description": "Simple tool for making data URIs from images in CSS files", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "panya", + "email": "panyakor@gmail.com" + } + ], + "time": { + "modified": "2011-08-31T20:11:48.958Z", + "created": "2011-07-31T21:08:24.011Z", + "0.0.1": "2011-07-31T21:08:24.792Z", + "0.0.2": "2011-08-01T22:17:55.257Z", + "0.0.3": "2011-08-01T22:53:16.770Z", + "0.0.4": "2011-08-01T23:27:13.260Z", + "0.0.5": "2011-08-13T21:23:58.893Z", + "0.1.0": "2011-08-30T22:43:35.790Z", + "0.1.1": "2011-08-31T20:11:48.958Z" + }, + "author": { + "name": "Mikhail Korepanov", + "email": "panyakor@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/panya/durilka.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/durilka/0.0.1", + "0.0.2": "http://registry.npmjs.org/durilka/0.0.2", + "0.0.3": "http://registry.npmjs.org/durilka/0.0.3", + "0.0.4": "http://registry.npmjs.org/durilka/0.0.4", + "0.0.5": "http://registry.npmjs.org/durilka/0.0.5", + "0.1.0": "http://registry.npmjs.org/durilka/0.1.0", + "0.1.1": "http://registry.npmjs.org/durilka/0.1.1" + }, + "dist": { + "0.0.1": { + "shasum": "ee46c30e8c6c891b234edaba31c3bbdbfa3c48e6", + "tarball": "http://registry.npmjs.org/durilka/-/durilka-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "58d85e56867528fc6b335138dafba12d82d57470", + "tarball": "http://registry.npmjs.org/durilka/-/durilka-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "5c5c7b135c0c9e4bf5eb5ec5d11c75a985ac8d03", + "tarball": "http://registry.npmjs.org/durilka/-/durilka-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "a97944d07a978e4dc67f2cdbeb5084507d7a4be6", + "tarball": "http://registry.npmjs.org/durilka/-/durilka-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "bf8342c4dd2c6bd48a957745b879bb03e3c9b96b", + "tarball": "http://registry.npmjs.org/durilka/-/durilka-0.0.5.tgz" + }, + "0.1.0": { + "shasum": "f6cc0fa23330221050a41872f6966f948d725766", + "tarball": "http://registry.npmjs.org/durilka/-/durilka-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "5d3fc7bb0a94fb16fddbe8ae45718aa632ec8adc", + "tarball": "http://registry.npmjs.org/durilka/-/durilka-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/durilka/" + }, + "dust": { + "name": "dust", + "description": "Asynchronous templates for the browser and node.js", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "akdubya", + "email": "alekswilliams@earthlink.net" + } + ], + "author": { + "name": "Aleksander Williams" + }, + "time": { + "modified": "2011-01-26T08:31:38.780Z", + "created": "2011-01-07T20:33:21.519Z", + "0.0.1": "2011-01-07T20:33:21.519Z", + "0.1.0": "2011-01-07T20:33:21.519Z", + "0.2.0": "2011-01-07T20:33:21.519Z", + "0.2.5": "2011-01-07T20:33:21.519Z", + "0.3.0": "2011-01-26T08:31:38.780Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/dust/0.0.1", + "0.1.0": "http://registry.npmjs.org/dust/0.1.0", + "0.2.0": "http://registry.npmjs.org/dust/0.2.0", + "0.2.5": "http://registry.npmjs.org/dust/0.2.5", + "0.3.0": "http://registry.npmjs.org/dust/0.3.0" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/dust/-/dust-0.0.1.tgz" + }, + "0.1.0": { + "tarball": "http://registry.npmjs.org/dust/-/dust-0.1.0.tgz" + }, + "0.2.0": { + "tarball": "http://registry.npmjs.org/dust/-/dust-0.2.0.tgz" + }, + "0.2.5": { + "shasum": "81a8d98ab8d41821d17a5c5d9e4c3892d5906c22", + "tarball": "http://registry.npmjs.org/dust/-/dust-0.2.5.tgz" + }, + "0.3.0": { + "shasum": "86b65a9a9769a50de9f2c7ad998503019a1564a5", + "tarball": "http://registry.npmjs.org/dust/-/dust-0.3.0.tgz" + } + }, + "keywords": [ + "templates", + "views" + ], + "url": "http://registry.npmjs.org/dust/" + }, + "dust.js": { + "name": "dust.js", + "description": "Asynchronous templates for the browser and node.js", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "Dust\n====\n\n> Asynchronous templates for the browser and node.js\n\n#### #\n\nWhy?\n----\n\nI like [Mustache](http://mustache.github.com) and variants but none of them offers quite what I need.\n\nUse Dust if you want these things:\n\n* async/streaming operation\n* browser/node compatibility\n* extended Mustache/ctemplate syntax\n* clean, low-level API\n* [high performance](http://akdubya.github.com/dustjs/benchmark/index.html)\n* composable templates\n\nComposable templates?\n---------------------\n\n {^xhr}\n {>base_template/}\n {:else}\n {+main/}\n {/xhr}\n {\n\nDemo & Guide\n------------\n\nExtensive docs and a full demo are available at ", + "maintainers": [ + { + "name": "stanislavfeldman", + "email": "stanislavfeldman@gmail.com" + } + ], + "time": { + "modified": "2011-11-12T11:16:31.374Z", + "created": "2011-11-12T11:16:28.608Z", + "0.1.0": "2011-11-12T11:16:31.374Z" + }, + "author": { + "name": "Stanislav Feldman", + "email": "stanislavfeldman@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/stanislavfeldman/dust.js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/dust.js/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "452d975ec515fd92e8736d09291acbac72b39fe1", + "tarball": "http://registry.npmjs.org/dust.js/-/dust.js-0.1.0.tgz" + } + }, + "keywords": [ + "templates", + "views" + ], + "url": "http://registry.npmjs.org/dust.js/" + }, + "dustfs": { + "name": "dustfs", + "description": "Simplified interface to {dust} and file templates for Node.js", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "jhh", + "email": "jhh@sendanor.com" + } + ], + "time": { + "modified": "2011-08-09T06:41:20.124Z", + "created": "2011-08-09T06:01:23.599Z", + "0.0.1": "2011-08-09T06:01:28.263Z", + "0.0.2": "2011-08-09T06:41:20.124Z" + }, + "author": { + "name": "Jaakko-Heikki Heusala", + "email": "jheusala@iki.fi", + "url": "http://www.jhh.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/jheusala/dustfs.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/dustfs/0.0.1", + "0.0.2": "http://registry.npmjs.org/dustfs/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "4f23fea6a230b09243f6f53de34477ba4a3f3a40", + "tarball": "http://registry.npmjs.org/dustfs/-/dustfs-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "d8b9efa0065847740f9d727285945c2f4ae5ab02", + "tarball": "http://registry.npmjs.org/dustfs/-/dustfs-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/dustfs/" + }, + "dwolla": { + "name": "dwolla", + "description": "Dwolla API for node.js", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "nanek", + "email": "kenan.shifflett@gmail.com" + } + ], + "time": { + "modified": "2011-12-05T18:33:23.769Z", + "created": "2011-11-17T17:21:16.008Z", + "0.0.1": "2011-11-17T17:21:16.312Z", + "0.0.2": "2011-12-01T18:14:59.633Z", + "0.0.3": "2011-12-02T15:34:35.518Z", + "0.0.4": "2011-12-02T15:39:42.447Z", + "0.0.5": "2011-12-05T18:33:23.769Z" + }, + "author": { + "name": "Kenan Shifflett", + "email": "kenan.shifflett@gmail.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:nanek/node-dwolla.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/dwolla/0.0.1", + "0.0.2": "http://registry.npmjs.org/dwolla/0.0.2", + "0.0.3": "http://registry.npmjs.org/dwolla/0.0.3", + "0.0.4": "http://registry.npmjs.org/dwolla/0.0.4", + "0.0.5": "http://registry.npmjs.org/dwolla/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "08a885d622322190e68d0b7007dfc759760eab02", + "tarball": "http://registry.npmjs.org/dwolla/-/dwolla-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c011d6d6d4fe36e2bbfb7a22f6e404b30b31b240", + "tarball": "http://registry.npmjs.org/dwolla/-/dwolla-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "0cc8e2568853a0dca85882bc606b9de8c0431431", + "tarball": "http://registry.npmjs.org/dwolla/-/dwolla-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "25edfea4109c1106eeeef1ef61a8fe3871bfc692", + "tarball": "http://registry.npmjs.org/dwolla/-/dwolla-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "ac194c983286c92cabc097decf88e234df2d97d6", + "tarball": "http://registry.npmjs.org/dwolla/-/dwolla-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/dwolla/" + }, + "dx": { + "name": "dx", + "description": "Send SMS through China Telecom's 189works", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "ussballantyne", + "email": "ussballantyne@gmail.com" + } + ], + "time": { + "modified": "2011-09-03T07:09:33.716Z", + "created": "2011-09-03T07:09:30.686Z", + "0.0.1": "2011-09-03T07:09:33.716Z" + }, + "author": { + "name": "Scott Ballantyne", + "email": "ussballantyne@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/ballantyne/dx.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/dx/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "06952fa4397aa4cfb9e68278deb51c0b42dd2f4c", + "tarball": "http://registry.npmjs.org/dx/-/dx-0.0.1.tgz" + } + }, + "keywords": [ + "sms", + "china" + ], + "url": "http://registry.npmjs.org/dx/" + }, + "dynamic": { + "name": "dynamic", + "description": "Harmony proxies and method catch-alls (noSuchMethod)", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "cohara87", + "email": "cohara87@gmail.com" + } + ], + "time": { + "modified": "2011-05-26T05:30:14.797Z", + "created": "2011-05-26T05:30:13.540Z", + "0.1.0": "2011-05-26T05:30:14.797Z" + }, + "author": { + "name": "Chris O'Hara", + "email": "cohara87@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/chriso/dynamic.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/dynamic/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "136ca4d6a6e3091384c34693ff2e068dece05937", + "tarball": "http://registry.npmjs.org/dynamic/-/dynamic-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/dynamic/" + }, + "dynamictemplate": { + "name": "dynamictemplate", + "description": "async & dynamic templating engine", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "dodo", + "email": "dodo@blacksec.org" + } + ], + "time": { + "modified": "2011-11-29T14:12:41.691Z", + "created": "2011-10-22T04:45:05.082Z", + "0.0.0": "2011-10-22T04:45:06.641Z", + "0.1.0": "2011-10-22T21:57:15.224Z", + "0.1.1": "2011-11-05T02:53:52.810Z", + "0.1.2": "2011-11-08T21:26:35.086Z", + "0.1.3": "2011-11-13T21:30:12.484Z", + "0.2.0": "2011-11-16T17:27:35.166Z", + "0.2.1": "2011-11-29T14:12:41.691Z" + }, + "author": { + "name": "dodo", + "url": "https://github.com/dodo" + }, + "repository": { + "type": "git", + "url": "git://github.com/dodo/node-dynamictemplate.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/dynamictemplate/0.0.0", + "0.1.0": "http://registry.npmjs.org/dynamictemplate/0.1.0", + "0.1.1": "http://registry.npmjs.org/dynamictemplate/0.1.1", + "0.1.2": "http://registry.npmjs.org/dynamictemplate/0.1.2", + "0.1.3": "http://registry.npmjs.org/dynamictemplate/0.1.3", + "0.2.0": "http://registry.npmjs.org/dynamictemplate/0.2.0", + "0.2.1": "http://registry.npmjs.org/dynamictemplate/0.2.1" + }, + "dist": { + "0.0.0": { + "shasum": "3497a5d733779c236df58c4857f669c035089022", + "tarball": "http://registry.npmjs.org/dynamictemplate/-/dynamictemplate-0.0.0.tgz" + }, + "0.1.0": { + "shasum": "3e8e08271652c48d56256cdd6d40b5128db20087", + "tarball": "http://registry.npmjs.org/dynamictemplate/-/dynamictemplate-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "e4ce16401cb09838df55a49e5bca24efd0cb5992", + "tarball": "http://registry.npmjs.org/dynamictemplate/-/dynamictemplate-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "dbe01167ce87c6399de98b83e5771a2be0bc92c7", + "tarball": "http://registry.npmjs.org/dynamictemplate/-/dynamictemplate-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "410d61cbe3adf1837ccf362d3d772ff94a27abf9", + "tarball": "http://registry.npmjs.org/dynamictemplate/-/dynamictemplate-0.1.3.tgz" + }, + "0.2.0": { + "shasum": "e3ea55f44c41f10add9336901f569c416f96fbb1", + "tarball": "http://registry.npmjs.org/dynamictemplate/-/dynamictemplate-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "5e0f3c84775a1e817554520afbb33f8156b2534e", + "tarball": "http://registry.npmjs.org/dynamictemplate/-/dynamictemplate-0.2.1.tgz" + } + }, + "keywords": [ + "async", + "dynamic", + "event", + "template", + "generation", + "stream", + "browser" + ], + "url": "http://registry.npmjs.org/dynamictemplate/" + }, + "dynobj": { + "name": "dynobj", + "description": "Objects with dynamic attributes", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "ckudige", + "email": "npm@kudige.com" + } + ], + "time": { + "modified": "2011-05-24T01:22:10.594Z", + "created": "2011-05-24T01:18:53.713Z", + "0.0.1": "2011-05-24T01:18:54.662Z", + "0.0.2": "2011-05-24T01:22:10.594Z" + }, + "repository": { + "type": "git", + "url": "git@github.com:kudige/dynobj.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/dynobj/0.0.1", + "0.0.2": "http://registry.npmjs.org/dynobj/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "842c940337a8424918c2a49d68a44871de615a87", + "tarball": "http://registry.npmjs.org/dynobj/-/dynobj-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "100e82a7c3677d13d50180be29f79e0177b2ceca", + "tarball": "http://registry.npmjs.org/dynobj/-/dynobj-0.0.2.tgz" + } + }, + "keywords": [ + "dynamic attributes", + "__get__", + "__set__" + ], + "url": "http://registry.npmjs.org/dynobj/" + }, + "DynWorker": { + "name": "DynWorker", + "description": "Web threading made easy - Ender shortcut", + "dist-tags": { + "latest": "1.1.0" + }, + "maintainers": [ + { + "name": "passcod", + "email": "me@passcod.net" + } + ], + "time": { + "modified": "2011-11-08T02:49:46.380Z", + "created": "2011-11-08T02:49:42.544Z", + "1.1.0": "2011-11-08T02:49:46.380Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/passcod/DynWorker.git" + }, + "versions": { + "1.1.0": "http://registry.npmjs.org/DynWorker/1.1.0" + }, + "dist": { + "1.1.0": { + "shasum": "88a903f5f186670b85a253ef21d79e1d788d10cf", + "tarball": "http://registry.npmjs.org/DynWorker/-/DynWorker-1.1.0.tgz" + } + }, + "keywords": [ + "thread", + "webworker", + "worker", + "ender" + ], + "url": "http://registry.npmjs.org/DynWorker/" + }, + "dys": { + "name": "dys", + "description": "HTTP dispatching framework, using an action/interceptor model and Guice-like dependency injection.", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "dpup", + "email": "dan@pupi.us" + } + ], + "time": { + "modified": "2011-11-08T16:36:32.103Z", + "created": "2011-11-02T19:46:54.036Z", + "0.1.0": "2011-11-02T19:50:01.371Z", + "0.1.1": "2011-11-02T20:20:36.013Z", + "0.1.2": "2011-11-02T20:50:52.204Z", + "0.1.3": "2011-11-02T22:27:26.622Z", + "0.1.4": "2011-11-08T16:36:32.103Z" + }, + "author": { + "name": "Daniel Pupius", + "email": "dan@pupi.us", + "url": "http://pupius.co.uk" + }, + "repository": { + "type": "git", + "url": "git://github.com/dpup/node-dys.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/dys/0.1.0", + "0.1.1": "http://registry.npmjs.org/dys/0.1.1", + "0.1.2": "http://registry.npmjs.org/dys/0.1.2", + "0.1.3": "http://registry.npmjs.org/dys/0.1.3", + "0.1.4": "http://registry.npmjs.org/dys/0.1.4" + }, + "dist": { + "0.1.0": { + "shasum": "f8398613154a04b496a627a06c4cd419cfea2309", + "tarball": "http://registry.npmjs.org/dys/-/dys-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "02f03771e0a3e5b4db7ef160ee008232a42ac21d", + "tarball": "http://registry.npmjs.org/dys/-/dys-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "75c422ce0b492e9df7ce48c55dee822a52cd4ecd", + "tarball": "http://registry.npmjs.org/dys/-/dys-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "8333da972bccd42e89e19d77f92ed21c96b464db", + "tarball": "http://registry.npmjs.org/dys/-/dys-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "5b2e6af6ff5ee40119d8cb0b6e3fc66a4027e122", + "tarball": "http://registry.npmjs.org/dys/-/dys-0.1.4.tgz" + } + }, + "keywords": [ + "http", + "web", + "servlet", + "filter", + "action", + "interceptor", + "dependency injection" + ], + "url": "http://registry.npmjs.org/dys/" + }, + "each": { + "name": "each", + "description": "Chained and parallel async iterator in one elegant function", + "dist-tags": { + "latest": "0.0.8" + }, + "maintainers": [ + { + "name": "david", + "email": "david@adaltas.com" + } + ], + "time": { + "modified": "2011-11-28T13:22:08.758Z", + "created": "2011-10-04T10:57:07.151Z", + "0.0.1": "2011-10-04T10:57:09.540Z", + "0.0.2": "2011-10-29T13:15:45.264Z", + "0.0.3": "2011-11-15T21:29:33.479Z", + "0.0.4": "2011-11-17T12:30:33.286Z", + "0.0.5": "2011-11-17T17:19:18.765Z", + "0.0.6": "2011-11-22T09:56:10.468Z", + "0.0.7": "2011-11-28T12:10:59.526Z", + "0.0.8": "2011-11-28T13:22:08.758Z" + }, + "author": { + "name": "David Worms", + "email": "david@adaltas.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/wdavidw/node-each.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/each/0.0.1", + "0.0.2": "http://registry.npmjs.org/each/0.0.2", + "0.0.3": "http://registry.npmjs.org/each/0.0.3", + "0.0.4": "http://registry.npmjs.org/each/0.0.4", + "0.0.5": "http://registry.npmjs.org/each/0.0.5", + "0.0.6": "http://registry.npmjs.org/each/0.0.6", + "0.0.7": "http://registry.npmjs.org/each/0.0.7", + "0.0.8": "http://registry.npmjs.org/each/0.0.8" + }, + "dist": { + "0.0.1": { + "shasum": "fa03805fd820031ce2cbf48f487db1829fb3551d", + "tarball": "http://registry.npmjs.org/each/-/each-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "09da3e4b6969fcff54b1ff1e7f13eab39a0334ae", + "tarball": "http://registry.npmjs.org/each/-/each-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "0d726e5f042b447f581c265a59b55b2cb745075d", + "tarball": "http://registry.npmjs.org/each/-/each-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "c1f315637fe77243973a3a4bd2cecbc1082d4d77", + "tarball": "http://registry.npmjs.org/each/-/each-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "6a8a785430bfc321e537f0780b25e8f4012a6a21", + "tarball": "http://registry.npmjs.org/each/-/each-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "417dd8e22929d5b8be4dc1e12f94f6c19620ec24", + "tarball": "http://registry.npmjs.org/each/-/each-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "1f5450fab5c586275e5ce1169619124f6bd64836", + "tarball": "http://registry.npmjs.org/each/-/each-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "0956e4dc538d716178f8108a534415867ef907d6", + "tarball": "http://registry.npmjs.org/each/-/each-0.0.8.tgz" + } + }, + "keywords": [ + "control flow", + "asynchronous", + "array", + "object", + "each" + ], + "url": "http://registry.npmjs.org/each/" + }, + "eagle": { + "name": "eagle", + "description": "A Realtime Connection Lib between mobile device and web browser", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "btspoony", + "email": "btspoony@gmail.com" + } + ], + "time": { + "modified": "2011-10-19T17:39:49.458Z", + "created": "2011-10-19T17:39:45.526Z", + "0.1.0": "2011-10-19T17:39:49.458Z" + }, + "author": { + "name": "Tang Bo Hao", + "email": "btspoony@gmail.com", + "url": "http://blog.boisgames.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/btspoony/node-eagle.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/eagle/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "5c4291781d4c360b8580cc7b360eb0d08f74aaed", + "tarball": "http://registry.npmjs.org/eagle/-/eagle-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/eagle/" + }, + "ears": { + "name": "ears", + "description": "communicate json data and commands to running applications from any local http source", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "cscade", + "email": "cc@amplego.com" + } + ], + "time": { + "modified": "2011-09-22T20:29:19.388Z", + "created": "2011-09-15T14:07:44.898Z", + "0.1.0": "2011-09-15T14:07:45.514Z", + "0.1.1": "2011-09-15T19:23:27.322Z", + "0.1.2": "2011-09-15T19:54:53.526Z", + "0.1.3": "2011-09-22T16:39:47.698Z", + "0.1.4": "2011-09-22T20:29:19.388Z" + }, + "author": { + "name": "Carson S. Christian", + "email": "cc@amplego.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/cscade/Ears.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/ears/0.1.0", + "0.1.1": "http://registry.npmjs.org/ears/0.1.1", + "0.1.2": "http://registry.npmjs.org/ears/0.1.2", + "0.1.3": "http://registry.npmjs.org/ears/0.1.3", + "0.1.4": "http://registry.npmjs.org/ears/0.1.4" + }, + "dist": { + "0.1.0": { + "shasum": "8e7ea54fb1970aec9c96b5fecf2b26929a24230c", + "tarball": "http://registry.npmjs.org/ears/-/ears-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "b18ae0fbb4850c7599f115c57dd1cd0ff0cf19be", + "tarball": "http://registry.npmjs.org/ears/-/ears-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "53c1342654aadb812d4971f1a0e5dd812228c568", + "tarball": "http://registry.npmjs.org/ears/-/ears-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "483f043710059e66720f3ad44cecb9ca51de75f3", + "tarball": "http://registry.npmjs.org/ears/-/ears-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "8a4e627a0ef6391fb1c4e270eb9bbc84a4a8d16f", + "tarball": "http://registry.npmjs.org/ears/-/ears-0.1.4.tgz" + } + }, + "keywords": [ + "http", + "communicate", + "local", + "listen", + "running", + "commands" + ], + "url": "http://registry.npmjs.org/ears/" + }, + "earth": { + "name": "earth", + "description": "An animation of Earth", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "ecto", + "email": "diffference@gmail.com" + } + ], + "time": { + "modified": "2011-10-23T03:56:28.715Z", + "created": "2011-10-23T02:04:58.627Z", + "0.0.0": "2011-10-23T02:04:59.460Z", + "0.0.1": "2011-10-23T02:50:40.944Z", + "0.0.2": "2011-10-23T03:15:31.338Z", + "0.0.3": "2011-10-23T03:34:44.361Z", + "0.0.4": "2011-10-23T03:49:29.154Z" + }, + "author": { + "name": "Cam Pedersen", + "email": "diffference@gmail.com", + "url": "htttp://campedersen.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/ecto/earth.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/earth/0.0.0", + "0.0.1": "http://registry.npmjs.org/earth/0.0.1", + "0.0.2": "http://registry.npmjs.org/earth/0.0.2", + "0.0.3": "http://registry.npmjs.org/earth/0.0.3", + "0.0.4": "http://registry.npmjs.org/earth/0.0.4" + }, + "dist": { + "0.0.0": { + "shasum": "47c28bb49b1523f1e7e2a0e23c8dcc401efb9830", + "tarball": "http://registry.npmjs.org/earth/-/earth-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "0f96a270b36a4762d4c35e04ca24722ff5f6ab9a", + "tarball": "http://registry.npmjs.org/earth/-/earth-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "4b80d8a5b3f8964ecfdf62ef4feb451f83b71f88", + "tarball": "http://registry.npmjs.org/earth/-/earth-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "9baa27cb9d8d3587a5f5c1a0051e88aa88f9c591", + "tarball": "http://registry.npmjs.org/earth/-/earth-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "0d23e2fbfbd4740b6ad773e41f87f52e7f9b0709", + "tarball": "http://registry.npmjs.org/earth/-/earth-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/earth/" + }, + "ease": { + "name": "ease", + "description": "easy JavaScript ease animation library", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "# ease\n\neasy JavaScript ease animation library\n\n## API\n\nease ... \n\n - blink (t)\n - bounce (t)\n - bounce_past (t)\n - elastic (t)\n - flicker (t)\n - in_back (t)\n - in_strong (t)\n - mirror (t)\n - out (t)\n - out_back (t)\n - out_bonce (t)\n - out_strong (t)\n - pulses (t)\n - sinusoidal (t)\n - spring (t)\n - swing_from (t)\n - swing_to (t)\n - wobble (t)\n\n## License \n\n(The MIT License)\n\nCopyright (c) 2011 Enrico Marino <enrico.marino@email.com>\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "maintainers": [ + { + "name": "onirame", + "email": "enrico.marino@email.com" + } + ], + "time": { + "modified": "2011-12-03T20:22:07.228Z", + "created": "2011-12-03T20:22:05.362Z", + "0.1.0": "2011-12-03T20:22:07.228Z" + }, + "author": { + "name": "Enrico Marino", + "email": "enrico.marino@email.com", + "url": "onirame.no.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/onirame/ease.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/ease/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "bfe42f337f08e90dbfcf53a5ca76d199dbae318c", + "tarball": "http://registry.npmjs.org/ease/-/ease-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/ease/" + }, + "easey": { + "name": "easey", + "description": "Easing for Modest Maps", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "tmcw", + "email": "macwright@gmail.com" + } + ], + "time": { + "modified": "2011-09-07T17:03:34.960Z", + "created": "2011-09-07T17:03:34.612Z", + "0.0.2": "2011-09-07T17:03:34.960Z" + }, + "author": { + "name": "MapBox", + "email": "info@mapbox.com", + "url": "http://mapbox.com/" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/easey/0.0.2" + }, + "dist": { + "0.0.2": { + "shasum": "cc871fb6de0ae92e9d1eba5a02fe978c9110dbb4", + "tarball": "http://registry.npmjs.org/easey/-/easey-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/easey/" + }, + "easing": { + "name": "easing", + "description": "Easing Functions Without the Framework Cruft", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "rook2pawn", + "email": "rook2pawn@gmail.com" + } + ], + "time": { + "modified": "2011-11-12T03:11:53.969Z", + "created": "2011-11-11T14:28:47.256Z", + "0.0.0": "2011-11-11T14:28:49.369Z", + "0.0.1": "2011-11-11T15:05:09.212Z", + "0.0.2": "2011-11-11T16:41:58.115Z", + "0.0.3": "2011-11-12T03:11:53.969Z" + }, + "author": { + "name": "David Wee", + "email": "rook2pawn@gmail.com", + "url": "http://rook2pawn.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:rook2pawn/node-easing.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/easing/0.0.0", + "0.0.1": "http://registry.npmjs.org/easing/0.0.1", + "0.0.2": "http://registry.npmjs.org/easing/0.0.2", + "0.0.3": "http://registry.npmjs.org/easing/0.0.3" + }, + "dist": { + "0.0.0": { + "shasum": "71db28e91ecf05306ca826606196ea3af38dba71", + "tarball": "http://registry.npmjs.org/easing/-/easing-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "bd45a015a7d5d17a6c74abf70910a99123380480", + "tarball": "http://registry.npmjs.org/easing/-/easing-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "fbf1fad4a96999e2339bc1b29c2f70b25903cec8", + "tarball": "http://registry.npmjs.org/easing/-/easing-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "0225adb282ea876107ffb85a7f6f8e73e199580d", + "tarball": "http://registry.npmjs.org/easing/-/easing-0.0.3.tgz" + } + }, + "keywords": [ + "easing", + "animation", + "tween" + ], + "url": "http://registry.npmjs.org/easing/" + }, + "easy": { + "name": "easy", + "description": "A general-purpose namespace container designed to help you better organize your components", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "soggie", + "email": "soggie@gmail.com" + } + ], + "time": { + "modified": "2011-05-19T09:07:41.846Z", + "created": "2011-05-19T09:07:39.570Z", + "0.0.1": "2011-05-19T09:07:41.846Z" + }, + "author": { + "name": "40 Square Software" + }, + "repository": { + "type": "git", + "url": "git@github.com:40square/easy.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/easy/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "1e4e0c4d64d882f0bfc14adb59d88ae2616a2bae", + "tarball": "http://registry.npmjs.org/easy/-/easy-0.0.1.tgz" + } + }, + "keywords": [ + "easy", + "namespace container", + "general purpose", + "preloader" + ], + "url": "http://registry.npmjs.org/easy/" + }, + "easy-oauth": { + "name": "easy-oauth", + "description": "Easy and simple oauth for your Express (node) website", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "robrighter", + "email": "robrighter@gmail.com" + } + ], + "time": { + "modified": "2011-03-11T16:35:00.282Z", + "created": "2011-02-22T20:32:46.064Z", + "0.1.0": "2011-02-22T20:32:46.207Z", + "0.2.0": "2011-03-11T16:35:00.282Z" + }, + "author": { + "name": "Rob Righter", + "email": "robrighter@gmail.com", + "url": "http://github.com/robrighter" + }, + "repository": { + "type": "git", + "url": "git://github.com/robrighter/easy-oauth.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/easy-oauth/0.1.0", + "0.2.0": "http://registry.npmjs.org/easy-oauth/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "abb13623c5b307fd04af5eabf2307de2c4ae9528", + "tarball": "http://registry.npmjs.org/easy-oauth/-/easy-oauth-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "cb07b603530a32cc47b4c6b1ac4a6ca1d6345c76", + "tarball": "http://registry.npmjs.org/easy-oauth/-/easy-oauth-0.2.0.tgz" + } + }, + "keywords": [ + "oauth", + "twitter", + "facebook" + ], + "url": "http://registry.npmjs.org/easy-oauth/" + }, + "easy-websocket": { + "name": "easy-websocket", + "description": "plain and simple websocket client", + "dist-tags": { + "latest": "0.2.5" + }, + "readme": "# easy-websocket #\n\n`easy-websocket` aims to be an easy to use websocket client for node.js, up-to-date against current HyBi protocol versions.\n\n## Usage ##\n\n### Installing ###\n\n`npm install easy-websocket`\n\n### Sending and receiving text data ###\n\n```js\nvar WebSocket = require('easy-websocket');\nvar ws = new WebSocket('ws://www.host.com/path');\nws.on('connected', function() {\n ws.send('something');\n});\nws.on('message', function(message, flags) {\n // flags.binary will be set if a binary message is received\n // flags.masked will be set if the message was masked\n});\n```\n \n### Sending binary data ###\n\n```js\nvar WebSocket = require('easy-websocket');\nvar ws = new WebSocket('ws://www.host.com/path');\nws.on('connected', function() {\n var array = new Float32Array(5);\n for (var i = 0; i < array.length; ++i) array[i] = i / 2;\n ws.send(array, {binary: true, mask: true});\n});\n```\n\nSetting `mask`, as done for the send options above, will cause the message to be masked according to the websocket protocol. The same option applies for text messages.\n\n### Other examples ###\n\nSee the test cases.\n\n### Running the tests ###\n\n`make test`\n\n## Yet to be done ##\n\n- While the receiver does support fragmentation, the sender does currently not do fragmentation -- even for large data pieces. Ideally streams can be transmitted using fragmentation.\n- More tests should be written for the receiving bits, such as for `close`; although these are implicitly tested already since the testserver shares the same receiver.\n\n## License ##\n\n(The MIT License)\n\nCopyright (c) 2011 Einar Otto Stangvik <einaros@gmail.com>\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "maintainers": [ + { + "name": "einaros", + "email": "einaros@gmail.com" + } + ], + "time": { + "modified": "2011-12-03T13:40:07.555Z", + "created": "2011-11-09T22:47:48.529Z", + "0.0.2": "2011-11-09T22:47:50.116Z", + "0.0.3": "2011-11-10T19:09:27.131Z", + "0.0.4": "2011-11-12T12:58:54.372Z", + "0.1.0": "2011-11-13T20:59:20.598Z", + "0.1.1": "2011-11-14T19:21:16.846Z", + "0.1.2": "2011-11-14T21:17:32.909Z", + "0.2.0": "2011-11-26T08:59:24.549Z", + "0.2.5": "2011-12-03T13:40:07.555Z" + }, + "author": { + "name": "Einar Otto Stangvik", + "email": "einaros@gmail.com", + "url": "http://2x.io" + }, + "repository": { + "type": "git", + "url": "git://github.com/einaros/easy-websocket.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/easy-websocket/0.0.2", + "0.0.3": "http://registry.npmjs.org/easy-websocket/0.0.3", + "0.0.4": "http://registry.npmjs.org/easy-websocket/0.0.4", + "0.1.0": "http://registry.npmjs.org/easy-websocket/0.1.0", + "0.1.1": "http://registry.npmjs.org/easy-websocket/0.1.1", + "0.1.2": "http://registry.npmjs.org/easy-websocket/0.1.2", + "0.2.0": "http://registry.npmjs.org/easy-websocket/0.2.0", + "0.2.5": "http://registry.npmjs.org/easy-websocket/0.2.5" + }, + "dist": { + "0.0.2": { + "shasum": "a46420fbfba0fbe94029fdbea49141ba49c2e6ad", + "tarball": "http://registry.npmjs.org/easy-websocket/-/easy-websocket-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "563f5ba3fd07e189ceb986936ed526bf927b983e", + "tarball": "http://registry.npmjs.org/easy-websocket/-/easy-websocket-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "95045c33590dfd424e5d003a5dfcdf27a99057b9", + "tarball": "http://registry.npmjs.org/easy-websocket/-/easy-websocket-0.0.4.tgz" + }, + "0.1.0": { + "shasum": "0303ced0259bc563cf25883f64f938ae560f1ce2", + "tarball": "http://registry.npmjs.org/easy-websocket/-/easy-websocket-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "cb7a8082da610d6eb60cf2da04d959eff9671acf", + "tarball": "http://registry.npmjs.org/easy-websocket/-/easy-websocket-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "2568b7ae434de48a53c7e4e2b00e3ed26468f0d4", + "tarball": "http://registry.npmjs.org/easy-websocket/-/easy-websocket-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "9cf07d5108157b27c3c26395198352911e6a1775", + "tarball": "http://registry.npmjs.org/easy-websocket/-/easy-websocket-0.2.0.tgz" + }, + "0.2.5": { + "shasum": "ca9657524b74506dcdf95142836fcd8b5dc9dea7", + "tarball": "http://registry.npmjs.org/easy-websocket/-/easy-websocket-0.2.5.tgz" + } + }, + "url": "http://registry.npmjs.org/easy-websocket/" + }, + "easyfs": { + "name": "easyfs", + "description": "rubyesque fs wrapper for dummies.", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-02-06T09:28:25.589Z", + "created": "2011-02-06T09:28:24.798Z", + "0.0.0": "2011-02-06T09:28:25.589Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com" + }, + "repository": "git://github.com/dominictarr/easyfs.git", + "versions": { + "0.0.0": "http://registry.npmjs.org/easyfs/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "cced86ca58c520acca91617ed6954dc1f72b4269", + "tarball": "http://registry.npmjs.org/easyfs/-/easyfs-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/easyfs/" + }, + "easyhash": { + "name": "easyhash", + "description": "Use node.js's crypto lib the easy way!", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "aaronblohowiak", + "email": "aaron.blohowiak@gmail.com" + } + ], + "time": { + "modified": "2011-09-23T05:02:41.942Z", + "created": "2011-09-23T05:02:40.699Z", + "0.0.0": "2011-09-23T05:02:41.942Z" + }, + "author": { + "name": "Aaron Blohowiak", + "email": "aaron.blohowiak@gmail.com", + "url": "http://aaronblohowiak.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/aaronblohowiak/easyhash.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/easyhash/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "4bac6fc20776099427e693d4b4f39d7714fc0ee1", + "tarball": "http://registry.npmjs.org/easyhash/-/easyhash-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/easyhash/" + }, + "easyip": { + "name": "easyip", + "description": "Node library for the Fest Easy-IP protocoll", + "dist-tags": { + "latest": "0.2.3" + }, + "readme": "Node.js library for Festo Easy-IP protocol\n==============================================\n\n\n## Disclaimer\nThis library is certanly not stable even though the protocol itself is\n\n## Installation\nnode-easyip is not available as a npm module yet. You have to check out the source.\n\n\n### Dependencies\n [node-jspack](http://github.com/birchroad/node-jspack)\n\n\n## API\n\n### Emits\n* timeout\n* error\n* send\n* listening\n* changing\n* changed\n* request - packet, res, rinfo\n* send - packet, res, rinfo\n* response - packet, rinfo\n* addReq - {Object}\n\n\n## License \n\n(The MIT License)\n\nCopyright (c) 2011 Peter Magnusson <kmpm@birchroad.net>\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n", + "maintainers": [ + { + "name": "birchroad", + "email": "info@birchroad.net" + } + ], + "time": { + "modified": "2011-11-29T10:32:27.727Z", + "created": "2011-11-16T08:26:53.513Z", + "0.1.1": "2011-11-16T08:26:55.526Z", + "0.2.0": "2011-11-16T15:21:43.451Z", + "0.2.1": "2011-11-25T11:59:53.005Z", + "0.2.3": "2011-11-29T10:32:27.727Z" + }, + "author": { + "name": "Peter Magnusson", + "email": "kmpm@birchroad.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/birchroad/node-easyip.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/easyip/0.1.1", + "0.2.0": "http://registry.npmjs.org/easyip/0.2.0", + "0.2.1": "http://registry.npmjs.org/easyip/0.2.1", + "0.2.3": "http://registry.npmjs.org/easyip/0.2.3" + }, + "dist": { + "0.1.1": { + "shasum": "71a4901e35827d6878a8fd39225bbea65e327ce6", + "tarball": "http://registry.npmjs.org/easyip/-/easyip-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "5d3fa20754b778f0714b433d90ec36a582eb39f6", + "tarball": "http://registry.npmjs.org/easyip/-/easyip-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "fb536c449b5c62d479f370dbd59992dd53a0d602", + "tarball": "http://registry.npmjs.org/easyip/-/easyip-0.2.1.tgz" + }, + "0.2.3": { + "shasum": "6f7fdfe9b1baa3dd3eb299333f2bfbba36c94f6a", + "tarball": "http://registry.npmjs.org/easyip/-/easyip-0.2.3.tgz" + } + }, + "url": "http://registry.npmjs.org/easyip/" + }, + "easynexmo": { + "name": "easynexmo", + "description": "A nodejs wrapper for nexmo API to send SMS", + "dist-tags": { + "latest": "0.3.1" + }, + "readme": null, + "maintainers": [ + { + "name": "pvela", + "email": "prabhu.v@gmail.com" + } + ], + "time": { + "modified": "2011-11-23T08:31:26.226Z", + "created": "2011-11-21T09:48:28.796Z", + "0.2.0": "2011-11-21T09:48:29.684Z", + "0.3.0": "2011-11-21T23:32:39.448Z", + "0.3.1": "2011-11-23T08:31:26.226Z" + }, + "author": { + "name": "Prabhu Velayutham" + }, + "repository": { + "type": "git", + "url": "git://github.com/pvela/nexmo.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/easynexmo/0.2.0", + "0.3.0": "http://registry.npmjs.org/easynexmo/0.3.0", + "0.3.1": "http://registry.npmjs.org/easynexmo/0.3.1" + }, + "dist": { + "0.2.0": { + "shasum": "24901602695419081274bb3d0eda50307f0cb79c", + "tarball": "http://registry.npmjs.org/easynexmo/-/easynexmo-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "3432e04d382e1a8b7a1e9ea9ba86b41084e2587c", + "tarball": "http://registry.npmjs.org/easynexmo/-/easynexmo-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "5d31b9a95491629169f49a76dd6843dfc12b9f34", + "tarball": "http://registry.npmjs.org/easynexmo/-/easynexmo-0.3.1.tgz" + } + }, + "keywords": [ + "sms", + "nexmo" + ], + "url": "http://registry.npmjs.org/easynexmo/" + }, + "easyrss": { + "name": "easyrss", + "description": "Easy RSS feed parsing using libxmljs", + "dist-tags": { + "latest": "0.2.3" + }, + "maintainers": [ + { + "name": "drudge", + "email": "drudge@conceited.net" + } + ], + "time": { + "modified": "2011-07-30T13:22:26.521Z", + "created": "2011-06-05T20:10:07.595Z", + "0.1.0": "2011-06-05T20:10:07.721Z", + "0.2.0": "2011-06-05T20:41:40.241Z", + "0.2.2": "2011-07-28T19:13:35.478Z", + "0.2.3": "2011-07-30T13:22:26.521Z" + }, + "author": { + "name": "Nicholas Penree", + "email": "drudge@conceited.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/drudge/node-easyrss.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/easyrss/0.1.0", + "0.2.0": "http://registry.npmjs.org/easyrss/0.2.0", + "0.2.2": "http://registry.npmjs.org/easyrss/0.2.2", + "0.2.3": "http://registry.npmjs.org/easyrss/0.2.3" + }, + "dist": { + "0.1.0": { + "shasum": "fd1c9fbb04f895662f81a95f27c8b5dfe87434a3", + "tarball": "http://registry.npmjs.org/easyrss/-/easyrss-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "874287f90a51cc7b02cc87e3592c2e713e79f836", + "tarball": "http://registry.npmjs.org/easyrss/-/easyrss-0.2.0.tgz" + }, + "0.2.2": { + "shasum": "44461943ecd2b34f746bd29c5e82215eee9a7e94", + "tarball": "http://registry.npmjs.org/easyrss/-/easyrss-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "f33b1e78f44d605a31447c5c047723e5800f876e", + "tarball": "http://registry.npmjs.org/easyrss/-/easyrss-0.2.3.tgz" + } + }, + "keywords": [ + "rss", + "feed", + "atom", + "xml", + "syndication" + ], + "url": "http://registry.npmjs.org/easyrss/" + }, + "easysax": { + "name": "easysax", + "description": "pure javascript xml parser", + "dist-tags": { + "latest": "0.1.4" + }, + "readme": null, + "maintainers": [ + { + "name": "vflash", + "email": "flash.vkv@gmail.com" + } + ], + "time": { + "modified": "2011-12-08T04:30:01.067Z", + "created": "2011-12-04T18:18:30.837Z", + "0.1.1": "2011-12-04T18:18:32.660Z", + "0.1.2": "2011-12-05T06:05:55.353Z", + "0.1.3": "2011-12-07T01:55:55.517Z", + "0.1.4": "2011-12-08T04:30:01.067Z" + }, + "author": { + "name": "Vopilovsky Constantine", + "email": "flash.vkv@gmail.com", + "url": "http://vflash.ru" + }, + "repository": { + "type": "git", + "url": "git://github.com/vflash/easysax.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/easysax/0.1.1", + "0.1.2": "http://registry.npmjs.org/easysax/0.1.2", + "0.1.3": "http://registry.npmjs.org/easysax/0.1.3", + "0.1.4": "http://registry.npmjs.org/easysax/0.1.4" + }, + "dist": { + "0.1.1": { + "shasum": "a8a329b4e128d7018a3a26dccf2f3e59d93c9631", + "tarball": "http://registry.npmjs.org/easysax/-/easysax-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "1c569aeafb16b4f8999a6143f0a34f82a293d2ad", + "tarball": "http://registry.npmjs.org/easysax/-/easysax-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "76b5269022ed49ac7197f1b184574854184503a1", + "tarball": "http://registry.npmjs.org/easysax/-/easysax-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "610bceb0e2048409741797f7e72d983678b11ae4", + "tarball": "http://registry.npmjs.org/easysax/-/easysax-0.1.4.tgz" + } + }, + "keywords": [ + "xml", + "sax" + ], + "url": "http://registry.npmjs.org/easysax/" + }, + "easywebthumb": { + "name": "easywebthumb", + "description": "EasyThumb Bluga.net WebThumb API wrapper", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "carson", + "email": "carson@ioncannon.net" + } + ], + "time": { + "modified": "2011-10-29T19:11:29.180Z", + "created": "2011-10-29T19:10:08.053Z", + "1.0.0": "2011-10-29T19:11:29.180Z" + }, + "author": { + "name": "Carson McDonald", + "email": "carson@ioncannon.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/carsonmcdonald/node-easy-webthumb.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/easywebthumb/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "bfe9df566df27ab2952db25bb242596e06ee84dc", + "tarball": "http://registry.npmjs.org/easywebthumb/-/easywebthumb-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/easywebthumb/" + }, + "ebnf-diagram": { + "name": "ebnf-diagram", + "description": "Generates png diagrams from Extended Backus–Naur Form (EBNF) grammars", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "adiel", + "email": "adrian.longley@gmail.com" + } + ], + "time": { + "modified": "2011-09-08T14:58:00.868Z", + "created": "2011-09-08T14:57:59.529Z", + "0.1.0": "2011-09-08T14:58:00.868Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/ebnf-diagram/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "2de9bc138b979266a911d379c7ca6b42644a8985", + "tarball": "http://registry.npmjs.org/ebnf-diagram/-/ebnf-diagram-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/ebnf-diagram/" + }, + "ec2": { + "name": "ec2", + "dist-tags": { + "latest": "0.0.11" + }, + "maintainers": [ + { + "name": "bigeasy", + "email": "alan@prettyrobots.com" + } + ], + "author": { + "name": "Alan Gutierrez" + }, + "time": { + "modified": "2011-12-13T14:54:32.420Z", + "created": "2011-05-12T04:07:39.602Z", + "0.0.1": "2011-05-12T04:07:39.602Z", + "0.0.2": "2011-05-12T04:07:39.602Z", + "0.0.4": "2011-05-12T04:07:39.602Z", + "0.0.5": "2011-05-12T04:12:25.365Z", + "0.0.6": "2011-05-28T07:02:11.034Z", + "0.0.7": "2011-06-01T08:35:49.712Z", + "0.0.8": "2011-06-02T07:44:34.128Z", + "0.0.9": "2011-12-13T10:01:28.200Z", + "0.0.10": "2011-12-13T14:48:26.963Z", + "0.0.11": "2011-12-13T14:54:32.420Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ec2/0.0.1", + "0.0.2": "http://registry.npmjs.org/ec2/0.0.2", + "0.0.4": "http://registry.npmjs.org/ec2/0.0.4", + "0.0.5": "http://registry.npmjs.org/ec2/0.0.5", + "0.0.6": "http://registry.npmjs.org/ec2/0.0.6", + "0.0.7": "http://registry.npmjs.org/ec2/0.0.7", + "0.0.8": "http://registry.npmjs.org/ec2/0.0.8", + "0.0.9": "http://registry.npmjs.org/ec2/0.0.9", + "0.0.10": "http://registry.npmjs.org/ec2/0.0.10", + "0.0.11": "http://registry.npmjs.org/ec2/0.0.11" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/ec2/-/ec2-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/ec2/-/ec2-0.0.2.tgz" + }, + "0.0.4": { + "shasum": "a29f399a9cc5c3b3f05e254742f93d1fe23a1ff8", + "tarball": "http://registry.npmjs.org/ec2/-/ec2-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "857ba7bde62058b06c72519dcedc3f2ad03d3be9", + "tarball": "http://registry.npmjs.org/ec2/-/ec2-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "b53112d8fe5247b3ecee1904cface1eb7255cb02", + "tarball": "http://registry.npmjs.org/ec2/-/ec2-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "82996f15ea5488a5ebb4c443a94344648401270c", + "tarball": "http://registry.npmjs.org/ec2/-/ec2-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "fab7add7df7c93faa2436a472d9cb772c11f9d8a", + "tarball": "http://registry.npmjs.org/ec2/-/ec2-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "9d2d329c35e22ba3f51dfb052a47bbc0e03af6f6", + "tarball": "http://registry.npmjs.org/ec2/-/ec2-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "f7cba98922f0f6a50a5923c0acd2abc98398b023", + "tarball": "http://registry.npmjs.org/ec2/-/ec2-0.0.10.tgz" + }, + "0.0.11": { + "shasum": "c055202d863e9bf03ecc04e9b085251ef7a9a482", + "tarball": "http://registry.npmjs.org/ec2/-/ec2-0.0.11.tgz" + } + }, + "url": "http://registry.npmjs.org/ec2/" + }, + "ec2metadata": { + "name": "ec2metadata", + "description": "A wrapper for EC2 Instance Metadata API", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "kilianc", + "email": "kilian.ciuffolo@gmail.com" + } + ], + "time": { + "modified": "2011-10-31T23:09:59.735Z", + "created": "2011-10-31T23:09:57.728Z", + "0.1.0": "2011-10-31T23:09:59.735Z" + }, + "author": { + "name": "Kilian Ciuffolo", + "email": "me@nailik.org", + "url": "http://nailik.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/kilianc/node-ec2metadata.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/ec2metadata/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "e10719544a57e95933fce8711bdea33f6b165c70", + "tarball": "http://registry.npmjs.org/ec2metadata/-/ec2metadata-0.1.0.tgz" + } + }, + "keywords": [ + "ec2", + "aws", + "metadata", + "api", + "amazon", + "instance" + ], + "url": "http://registry.npmjs.org/ec2metadata/" + }, + "echo": { + "name": "echo", + "description": "Echo library for node", + "dist-tags": { + "latest": "0.1.9" + }, + "maintainers": [ + { + "name": "echo", + "email": "ed@butter.com.hk" + } + ], + "time": { + "modified": "2011-02-02T17:35:19.990Z", + "created": "2011-01-29T07:11:34.492Z", + "0.1.0": "2011-01-29T07:11:35.360Z", + "0.1.2": "2011-01-29T08:17:58.370Z", + "0.1.3": "2011-02-01T08:42:24.999Z", + "0.1.4": "2011-02-02T11:18:00.847Z", + "0.1.5": "2011-02-02T12:03:05.492Z", + "0.1.6": "2011-02-02T15:30:11.736Z", + "0.1.7": "2011-02-02T16:36:54.598Z", + "0.1.8": "2011-02-02T17:16:31.372Z", + "0.1.9": "2011-02-02T17:35:19.990Z" + }, + "author": { + "name": "TikiBooth Limited" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/echo/0.1.0", + "0.1.2": "http://registry.npmjs.org/echo/0.1.2", + "0.1.3": "http://registry.npmjs.org/echo/0.1.3", + "0.1.4": "http://registry.npmjs.org/echo/0.1.4", + "0.1.5": "http://registry.npmjs.org/echo/0.1.5", + "0.1.6": "http://registry.npmjs.org/echo/0.1.6", + "0.1.7": "http://registry.npmjs.org/echo/0.1.7", + "0.1.8": "http://registry.npmjs.org/echo/0.1.8", + "0.1.9": "http://registry.npmjs.org/echo/0.1.9" + }, + "dist": { + "0.1.0": { + "shasum": "e50bfd9779e7b61f4a74e578ac3813f258fc97df", + "tarball": "http://registry.npmjs.org/echo/-/echo-0.1.0.tgz" + }, + "0.1.2": { + "shasum": "33f247db039cd25c164cfd9310ed45d2536d95e6", + "tarball": "http://registry.npmjs.org/echo/-/echo-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "bc6b8cfccab9fcf5bb34ff90f6ba7c5cc4aa028e", + "tarball": "http://registry.npmjs.org/echo/-/echo-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "6bbe0574e21e76dfeaa2dd7b372368e0f65affde", + "tarball": "http://registry.npmjs.org/echo/-/echo-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "0b1900dd0ac0cc0d79129b40cd0395ee8d9f3fb2", + "tarball": "http://registry.npmjs.org/echo/-/echo-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "2d859287bf4dda6dc332cc523df3b60847311e9a", + "tarball": "http://registry.npmjs.org/echo/-/echo-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "0523cb80a36f64751d79e1f05b46d774a4b42469", + "tarball": "http://registry.npmjs.org/echo/-/echo-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "5ad1554ae73d604e28ead502efafd9cbec690972", + "tarball": "http://registry.npmjs.org/echo/-/echo-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "4a86e7b7e447a8b1980c4c3d461874fc5dad4725", + "tarball": "http://registry.npmjs.org/echo/-/echo-0.1.9.tgz" + } + }, + "url": "http://registry.npmjs.org/echo/" + }, + "ecmascript5": { + "name": "ecmascript5", + "description": "", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "import console;\nmodule util {\n\tprint: (m){console.log(m);};\n};\nexport class Foo {\n\tuse util;\n\tinit: (v){this.v = isFinite(v) ? v:0, this;};\n\tprint: (m){util.print(m), this;};\n\tclass self.Bar {\n\t\textends Foo;\n\t\t'+': (v){isFinite(v) ? v:this.v;};\n\t\tprint: (v){super(this + v);};\n\t};\n};\nfb = new Foo.Bar();\nfb.print(10);", + "maintainers": [ + { + "name": "rolandpoulter", + "email": "rolandpoulter@gmail.com" + } + ], + "time": { + "modified": "2011-11-20T01:37:08.969Z", + "created": "2011-11-20T01:37:07.695Z", + "0.1.0": "2011-11-20T01:37:08.969Z" + }, + "author": { + "name": "Roland Poulter" + }, + "repository": { + "type": "git", + "url": "git://github.com/rolandpoulter/ecmascript5.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/ecmascript5/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "539de70e014e8b7c646a0a03b73e856e3e3c319a", + "tarball": "http://registry.npmjs.org/ecmascript5/-/ecmascript5-0.1.0.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/ecmascript5/" + }, + "eco": { + "name": "eco", + "description": "Embedded CoffeeScript templates", + "dist-tags": { + "latest": "1.1.0-rc-1" + }, + "maintainers": [ + { + "name": "sstephenson", + "email": "sstephenson@gmail.com" + } + ], + "author": { + "name": "Sam Stephenson" + }, + "repository": { + "type": "git", + "url": "git://github.com/sstephenson/eco.git" + }, + "time": { + "modified": "2011-06-04T19:53:42.791Z", + "created": "2011-02-13T14:03:46.659Z", + "1.0.0": "2011-02-13T14:03:46.659Z", + "1.0.1": "2011-02-13T14:03:46.659Z", + "1.0.2": "2011-02-13T14:03:46.659Z", + "1.0.3": "2011-02-21T00:52:43.793Z", + "1.1.0-rc-1": "2011-06-04T19:53:42.791Z" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/eco/1.0.0", + "1.0.1": "http://registry.npmjs.org/eco/1.0.1", + "1.0.2": "http://registry.npmjs.org/eco/1.0.2", + "1.0.3": "http://registry.npmjs.org/eco/1.0.3", + "1.1.0-rc-1": "http://registry.npmjs.org/eco/1.1.0-rc-1" + }, + "dist": { + "1.0.0": { + "tarball": "http://packages:5984/eco/-/eco-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "bf3082cddb75c309da613b1caf3e236ac65c6166", + "tarball": "http://registry.npmjs.org/eco/-/eco-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "ee9ee7be653c98796eadb6b12f3e10d6758e29f3", + "tarball": "http://registry.npmjs.org/eco/-/eco-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "624eacd09c9795ed65d83da865375dc52464e56d", + "tarball": "http://registry.npmjs.org/eco/-/eco-1.0.3.tgz" + }, + "1.1.0-rc-1": { + "shasum": "93dad03fc84affd3eff7d5d30bf68daafcd5e702", + "tarball": "http://registry.npmjs.org/eco/-/eco-1.1.0-rc-1.tgz" + } + }, + "url": "http://registry.npmjs.org/eco/" + }, + "eco-plus": { + "name": "eco-plus", + "description": "Eco templates extension.", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "alexkravets", + "email": "santyor@gmail.com" + } + ], + "time": { + "modified": "2011-12-10T00:24:12.104Z", + "created": "2011-09-24T21:54:09.031Z", + "0.1.0": "2011-09-24T21:54:10.692Z", + "0.1.1": "2011-09-29T20:32:09.051Z", + "0.1.2": "2011-12-10T00:24:12.104Z" + }, + "author": { + "name": "Alex Kravets", + "email": "santyor@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/eco-plus/0.1.0", + "0.1.1": "http://registry.npmjs.org/eco-plus/0.1.1", + "0.1.2": "http://registry.npmjs.org/eco-plus/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "b0d104c5efd0f2011f466e31be8c374aeeb33db4", + "tarball": "http://registry.npmjs.org/eco-plus/-/eco-plus-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "3fcee47a7bdf4682a9befdf3fd8110598e8ee43a", + "tarball": "http://registry.npmjs.org/eco-plus/-/eco-plus-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "b7344e327b85f944175fe57715062f9337597af7", + "tarball": "http://registry.npmjs.org/eco-plus/-/eco-plus-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/eco-plus/" + }, + "ecstatic": { + "name": "ecstatic", + "description": "A simple static file server middleware that works with both Express and Flatiron", + "dist-tags": { + "latest": "0.1.1-1" + }, + "readme": "# Ecstatic\n\nA simple static file server middleware that works with both Express and Flatiron\n\n* simple directory listings\n* show index.html files at directory roots when they exist\n* use it with a raw http server, connect/express, or flatiron/union\n\n# Examples:\n\n## express\n\n``` js\nvar express = require('express');\nvar ecstatic = require('../')(__dirname + '/public');\n\nvar app = express.createServer();\napp.use(ecstatic);\napp.listen(8080);\n\nconsole.log('Listening on :8080');\n```\n\n## union\n\n``` js\nvar union = require('union');\nvar ecstatic = require('../')(__dirname + '/public');\n\nunion.createServer({\n before: [\n ecstatic\n ]\n}).listen(8080);\n\nconsole.log('Listening on :8080');\n```\n\n# API:\n\n## ecstatic(folder);\n\nPass ecstatic a folder, and it will return your middleware!\n\n## middleware(req, res, next);\n\nThis works more or less as you'd expect.\n\n# Tests:\n\n npm test\n\n# Contributing:\n\nThis project's implementation is pretty much g2g (thanks @substack) but currently does not work in Union. This is because Union's response piping is currently broken.\n\nOnce Union is fixed, this will work there as well.\n\n# License:\n\nMIT/X11.\n", + "maintainers": [ + { + "name": "jesusabdullah", + "email": "josh.holbrook@gmail.com" + } + ], + "time": { + "modified": "2011-11-27T23:46:45.845Z", + "created": "2011-11-23T19:54:09.029Z", + "0.0.0": "2011-11-23T19:54:12.792Z", + "0.0.1": "2011-11-26T03:32:30.060Z", + "0.1.0": "2011-11-26T23:10:10.937Z", + "0.1.1": "2011-11-26T23:41:07.640Z", + "0.1.1-1": "2011-11-27T23:46:45.845Z" + }, + "author": { + "name": "Joshua Holbrook", + "email": "josh@nodejitsu.com", + "url": "http://jesusabdullah.net" + }, + "repository": { + "type": "git", + "url": "git@github.com:jesusabdullah/node-ecstatic.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/ecstatic/0.0.0", + "0.0.1": "http://registry.npmjs.org/ecstatic/0.0.1", + "0.1.0": "http://registry.npmjs.org/ecstatic/0.1.0", + "0.1.1": "http://registry.npmjs.org/ecstatic/0.1.1", + "0.1.1-1": "http://registry.npmjs.org/ecstatic/0.1.1-1" + }, + "dist": { + "0.0.0": { + "shasum": "938e4152eca085ae52667b59e583d8d6ca144887", + "tarball": "http://registry.npmjs.org/ecstatic/-/ecstatic-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "9c741a2ba02c2465c6cb543d89452b15ad09ae5b", + "tarball": "http://registry.npmjs.org/ecstatic/-/ecstatic-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "4a8c4b8aeb303b84bd2bf998f028eed4bfd15b4d", + "tarball": "http://registry.npmjs.org/ecstatic/-/ecstatic-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "62cfae01c609cc36d47a3c010472626afd343331", + "tarball": "http://registry.npmjs.org/ecstatic/-/ecstatic-0.1.1.tgz" + }, + "0.1.1-1": { + "shasum": "0c995af7b5a4563590e568de18a2927054c2ccbe", + "tarball": "http://registry.npmjs.org/ecstatic/-/ecstatic-0.1.1-1.tgz" + } + }, + "keywords": [ + "static", + "web", + "server", + "files", + "mime", + "middleware" + ], + "url": "http://registry.npmjs.org/ecstatic/" + }, + "ed": { + "name": "ed", + "description": "Make your existing classes and instances event-driven!", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "ggoodman", + "email": "ggoodman@gmail.com" + } + ], + "time": { + "modified": "2011-08-17T19:49:26.810Z", + "created": "2011-08-17T19:49:26.750Z", + "0.0.1": "2011-08-17T19:49:26.810Z" + }, + "author": { + "name": "Geoffrey Goodman", + "email": "ggoodman+npm@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/ggoodman/ed.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ed/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "529c395b7a26d32a0ecbfb3f54dd223d16073168", + "tarball": "http://registry.npmjs.org/ed/-/ed-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/ed/" + }, + "edate": { + "name": "edate", + "description": "ECMA Script Date extension", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "antono", + "email": "antono.vasiljev@gmail.com" + } + ], + "time": { + "modified": "2011-11-17T06:28:42.169Z", + "created": "2011-09-01T22:21:18.085Z", + "0.0.1": "2011-09-01T22:21:20.356Z", + "0.0.2": "2011-11-17T06:28:42.169Z" + }, + "author": { + "name": "Antono Vasiljev", + "email": "antono.vasiljev@gmail.com", + "url": "http://antono.info" + }, + "repository": { + "type": "git", + "url": "git://github.com/antono/edate.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/edate/0.0.1", + "0.0.2": "http://registry.npmjs.org/edate/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "1ed1dec5028ab86c68c3ef02cdd49d20c5f4d368", + "tarball": "http://registry.npmjs.org/edate/-/edate-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "67159980b75a2eb1b326289c2fe8516b9118c0ae", + "tarball": "http://registry.npmjs.org/edate/-/edate-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/edate/" + }, + "eden": { + "name": "eden", + "description": "ephemeris for humans on node", + "dist-tags": { + "latest": "0.0.1-9" + }, + "maintainers": [ + { + "name": "orlin", + "email": "om@soundsapiens.com" + } + ], + "time": { + "modified": "2011-05-06T11:09:21.697Z", + "created": "2011-04-06T11:38:18.647Z", + "0.0.1-1": "2011-04-06T11:38:19.891Z", + "0.0.1-2": "2011-04-06T13:39:37.168Z", + "0.0.1-3": "2011-04-08T15:48:18.575Z", + "0.0.1-4": "2011-04-20T07:23:12.955Z", + "0.0.1-5": "2011-04-20T07:38:57.012Z", + "0.0.1-6": "2011-04-26T14:23:33.636Z", + "0.0.1-7": "2011-04-28T16:16:06.416Z", + "0.0.1-8": "2011-04-28T20:07:19.196Z", + "0.0.1-9": "2011-05-06T11:09:21.697Z" + }, + "author": { + "name": "Orlin M Bozhinov", + "email": "orlin@astrolet.net", + "url": "http://soundsapiens.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/astrolet/eden.git" + }, + "versions": { + "0.0.1-1": "http://registry.npmjs.org/eden/0.0.1-1", + "0.0.1-2": "http://registry.npmjs.org/eden/0.0.1-2", + "0.0.1-3": "http://registry.npmjs.org/eden/0.0.1-3", + "0.0.1-5": "http://registry.npmjs.org/eden/0.0.1-5", + "0.0.1-6": "http://registry.npmjs.org/eden/0.0.1-6", + "0.0.1-7": "http://registry.npmjs.org/eden/0.0.1-7", + "0.0.1-8": "http://registry.npmjs.org/eden/0.0.1-8", + "0.0.1-9": "http://registry.npmjs.org/eden/0.0.1-9" + }, + "dist": { + "0.0.1-1": { + "shasum": "934a560917ccb3a63852e46b2df757371bf73500", + "tarball": "http://registry.npmjs.org/eden/-/eden-0.0.1-1.tgz" + }, + "0.0.1-2": { + "shasum": "59e46e1073e7ee5ba699d59459e94dbb9c1c076f", + "tarball": "http://registry.npmjs.org/eden/-/eden-0.0.1-2.tgz" + }, + "0.0.1-3": { + "shasum": "68790ee2b473c170c9c31265a2ec2ff2fe7fb339", + "tarball": "http://registry.npmjs.org/eden/-/eden-0.0.1-3.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "3f22c6369cf8ee5615d8e1f85424d991c01f8a9c", + "tarball": "http://registry.npmjs.org/eden/-/eden-0.0.1-3-0.4-sunos-5.11.tgz" + } + } + }, + "0.0.1-5": { + "shasum": "1e67e167fe56314860ab6ae93ddf934c9b0397f7", + "bin": { + "0.4-darwin-10.7.3": { + "shasum": "53a17eb9753d3952076bc5c7075c216f22e7084d", + "tarball": "http://registry.npmjs.org/eden/-/eden-0.0.1-5-0.4-darwin-10.7.3.tgz" + } + }, + "tarball": "http://registry.npmjs.org/eden/-/eden-0.0.1-5.tgz" + }, + "0.0.1-6": { + "shasum": "c827af991477c1f5fc88ec5d772fc189c4284a99", + "bin": { + "0.4-darwin-10.7.3": { + "shasum": "d80f394e277f8635857679496c9cc824061cb3c7", + "tarball": "http://registry.npmjs.org/eden/-/eden-0.0.1-6-0.4-darwin-10.7.3.tgz" + } + }, + "tarball": "http://registry.npmjs.org/eden/-/eden-0.0.1-6.tgz" + }, + "0.0.1-7": { + "shasum": "8a5f5f2e17e5e70de7ffeb7d77ddcb6a0c6f3c7f", + "bin": { + "0.4-darwin-10.7.3": { + "shasum": "29a14e2fee0e969f3288fe875d6540ee1f0942ac", + "tarball": "http://registry.npmjs.org/eden/-/eden-0.0.1-7-0.4-darwin-10.7.3.tgz" + } + }, + "tarball": "http://registry.npmjs.org/eden/-/eden-0.0.1-7.tgz" + }, + "0.0.1-8": { + "shasum": "7f9baca7d5764abe246d9666cca7b388ce4d754d", + "bin": { + "0.4-darwin-10.7.3": { + "shasum": "281d93000544dacfbd4d6ed7d456eb117c59de5c", + "tarball": "http://registry.npmjs.org/eden/-/eden-0.0.1-8-0.4-darwin-10.7.3.tgz" + } + }, + "tarball": "http://registry.npmjs.org/eden/-/eden-0.0.1-8.tgz" + }, + "0.0.1-9": { + "shasum": "9574146b2d8c3b559a43fe01d5b67801232886de", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.3": { + "shasum": "b2a9141054672db7e0c44e1bb514766dbd86c5f8", + "tarball": "http://registry.npmjs.org/eden/-/eden-0.0.1-9-0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.3.tgz" + } + }, + "tarball": "http://registry.npmjs.org/eden/-/eden-0.0.1-9.tgz" + } + }, + "keywords": [ + "astrology", + "ephemeris", + "cli" + ], + "url": "http://registry.npmjs.org/eden/" + }, + "edmond": { + "name": "edmond", + "description": "Simple JavaScript router for web applications.", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "# Edmond\n\nEdmond is simple JavaScript router for web applications. Although Edmond was originally designed for use in the browser, it can also be used with Node.js.\n\n### Features\n\n* Edmond has **no dependencies**\n* **AMD compatible**, you can load it via [RequireJS](https://github.com/jrburke/requirejs)\n* Ultra lightweight, **under 1 KB**\n* Fully **documented**\n\n## Quick Start\n\n1. Add a new route\n\n ```javascript\n edmond.addRoute('/users/:id', function(request) {\n\n // Do something...\n\n });\n ```\n\n2. Listen to the ‘error’ event\n\n ```javascript\n edmond.on('error', function(message) {\n\n // Do something...\n\n });\n ```\n\n3. Dispatch the route\n\n ```javascript\n edmond.dispatchRoute('/users/123');\n ```\n\n *Please see the [Tips](#tips) section for more information about implementing HTML5 history.*\n\n## Download\n\nReleases are available for download from GitHub.\n\n| **Version** | **Description** | **Size** | **Action** |\n|:------------|:----------------|:---------|:-----------|\n| `edmond.js` | *uncompressed, with comments* | 1 KB | [Download](https://raw.github.com/Baggz/Edmond/master/src/edmond.js) |\n| `edmond.min.js` | *compressed, without comments* | 1 KB | [Download](https://raw.github.com/Baggz/Edmond/master/dist/edmond.min.js) |\n\n\n# Tips\n\n## HTML5 History\n\n1. First of all, we need to add a new event listener\n\n ```javascript\n window.addEventListener('popState', function() {\n edmond.dispatchRoute(window.location.pathname);\n });\n ```\n\n2. Secondly, add a new event listener to the `dispatch` event\n\n ```javascript\n edmond.on('dispatch', function(path) {\n history.pushState({}, null, path);\n });\n ```\n\n# Documentation\n\n**Methods**\n\n* [addRoute](#addRoute)\n* [dispatchRoute](#dispatchRoute)\n* [on](#on)\n\n**Objects**\n\n* [request](#request)\n\n\n## AddRoute\n\n### addRoute(route, fn1[, fn2, fn3, ...])\n\nIn `route` you can use placeholders (*for instance `:username`*) which are then available as `request.params`.\n\nThe callback `fn` gets two arguments `request` and `next` where `request` is a `request` object (see [request](#request) for more information) and the second argument `next` allows you to move to the next callback (if defined).\n\n**Example**\n\n```javascript\nedmond.addRoute('/users/:username', function(request, next) {\n\n alert('Hello ' + request.username + '!');\n\n});\n```\n\n\n## DispatchRoute\n\n### dispatchRoute(path)\n\n**Example**\n\n```javascript\nedmond.dispatchRoute('/users/123/delete');\n```\n\n\n## On\n\n### on(event, listener)\n\n**Events**\n\n* `error`\n* `dispatch`\n\n**Example**\n\n```javascript\nedmond.on('error', function(message) {\n\n // Do something...\n\n});\n```\n\n\n## Request\n\n```javascript\n{\n params: {\n ...\n },\n query: {\n ...\n },\n path: ...\n hash: ...\n}\n```\n\n**Example**\n\n```javascript\n{\n params: {\n id: 123,\n action: 'delete'\n },\n query: {\n filter: 'recent'\n },\n path: '/users/123/delete?filter=recent#top'\n hash: '#top',\n route: '/users/:id/:action'\n}\n```\n\n# Running Tests\n\n```\n$ npm tests/\n```\n\n# License\n\n(The MIT License)\n\nCopyright (c) 2011 František Hába <hello@frantisekhaba.com>\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "maintainers": [ + { + "name": "baggz", + "email": "hello@frantisekhaba.com" + } + ], + "time": { + "modified": "2011-11-16T23:47:06.754Z", + "created": "2011-11-16T23:47:04.791Z", + "0.1.0": "2011-11-16T23:47:06.754Z" + }, + "author": { + "name": "František Hába", + "email": "hello@frantisekhaba.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Baggz/Edmond.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/edmond/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "98a9919ea69e9f2db16650f964bdbb75f257e8e2", + "tarball": "http://registry.npmjs.org/edmond/-/edmond-0.1.0.tgz" + } + }, + "keywords": [ + "pushState", + "popState", + "html5", + "router", + "route", + "routes" + ], + "url": "http://registry.npmjs.org/edmond/" + }, + "eio": { + "name": "eio", + "description": "Control libeio from JavaScript", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "kkaefer", + "email": "kkaefer@gmail.com" + }, + { + "name": "springmeyer", + "email": "dane@dbsgeo.com" + }, + { + "name": "tmcw", + "email": "macwright@gmail.com" + }, + { + "name": "yhahn", + "email": "young@developmentseed.org" + }, + { + "name": "willwhite", + "email": "will@developmentseed.org" + } + ], + "time": { + "modified": "2011-11-19T11:04:30.071Z", + "created": "2011-08-01T19:53:39.635Z", + "0.0.1": "2011-08-01T19:53:39.858Z", + "0.0.2": "2011-08-08T17:53:16.368Z" + }, + "author": { + "name": "Development Seed", + "email": "info@developmentseed.org", + "url": "http://developmentseed.org/" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/eio/0.0.1", + "0.0.2": "http://registry.npmjs.org/eio/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "c8c76ed17e7f8caf71ade490d34ebbe9183596e5", + "tarball": "http://registry.npmjs.org/eio/-/eio-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f26147d5c61d946c0bf5e9399588cf683b1108b0", + "tarball": "http://registry.npmjs.org/eio/-/eio-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/eio/" + }, + "ejs": { + "name": "ejs", + "description": "Embedded JavaScript templates", + "dist-tags": { + "latest": "0.6.1" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "time": { + "modified": "2011-12-10T00:03:58.433Z", + "created": "2011-02-14T21:15:53.948Z", + "0.0.1": "2011-02-14T21:15:53.948Z", + "0.0.2": "2011-02-14T21:15:53.948Z", + "0.0.3": "2011-02-14T21:15:53.948Z", + "0.0.4": "2011-02-14T21:15:53.948Z", + "0.1.0": "2011-02-14T21:15:53.948Z", + "0.2.0": "2011-02-14T21:15:53.948Z", + "0.2.1": "2011-02-14T21:15:53.948Z", + "0.3.0": "2011-02-14T21:15:53.948Z", + "0.3.1": "2011-02-24T03:08:47.107Z", + "0.4.0": "2011-04-21T15:38:18.315Z", + "0.4.1": "2011-04-21T16:12:48.085Z", + "0.4.2": "2011-05-11T16:41:52.848Z", + "0.4.3": "2011-06-20T15:43:06.444Z", + "0.5.0": "2011-11-20T19:57:26.230Z", + "0.6.0": "2011-12-09T23:53:35.286Z", + "0.6.1": "2011-12-10T00:03:58.433Z" + }, + "users": { + "naholyr": true + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ejs/0.0.1", + "0.0.2": "http://registry.npmjs.org/ejs/0.0.2", + "0.0.3": "http://registry.npmjs.org/ejs/0.0.3", + "0.0.4": "http://registry.npmjs.org/ejs/0.0.4", + "0.1.0": "http://registry.npmjs.org/ejs/0.1.0", + "0.2.0": "http://registry.npmjs.org/ejs/0.2.0", + "0.2.1": "http://registry.npmjs.org/ejs/0.2.1", + "0.3.0": "http://registry.npmjs.org/ejs/0.3.0", + "0.3.1": "http://registry.npmjs.org/ejs/0.3.1", + "0.4.0": "http://registry.npmjs.org/ejs/0.4.0", + "0.4.1": "http://registry.npmjs.org/ejs/0.4.1", + "0.4.2": "http://registry.npmjs.org/ejs/0.4.2", + "0.4.3": "http://registry.npmjs.org/ejs/0.4.3", + "0.5.0": "http://registry.npmjs.org/ejs/0.5.0", + "0.6.0": "http://registry.npmjs.org/ejs/0.6.0", + "0.6.1": "http://registry.npmjs.org/ejs/0.6.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/ejs/-/ejs-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/ejs/-/ejs-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/ejs/-/ejs-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://packages:5984/ejs/-/ejs-0.0.4.tgz" + }, + "0.1.0": { + "tarball": "http://packages:5984/ejs/-/ejs-0.1.0.tgz" + }, + "0.2.0": { + "tarball": "http://packages:5984/ejs/-/ejs-0.2.0.tgz" + }, + "0.2.1": { + "tarball": "http://packages:5984/ejs/-/ejs-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "d7b8866751f730608b1afcc6f408c3d82483310c", + "tarball": "http://registry.npmjs.org/ejs/-/ejs-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "14efd50a58d0aa24e3626ea674ae123f5d36f94a", + "tarball": "http://registry.npmjs.org/ejs/-/ejs-0.3.1.tgz" + }, + "0.4.0": { + "shasum": "a4a188aee997acd76bab120e5500221d6bfc513f", + "tarball": "http://registry.npmjs.org/ejs/-/ejs-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "d7ec956ca91649b508a1a74dafe990cfaf387409", + "tarball": "http://registry.npmjs.org/ejs/-/ejs-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "6f58faa54fd0fd097b74e31c4009ec16138572a1", + "tarball": "http://registry.npmjs.org/ejs/-/ejs-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "8143c3656955b8934db5d9da83e9be73176f1f4f", + "tarball": "http://registry.npmjs.org/ejs/-/ejs-0.4.3.tgz" + }, + "0.5.0": { + "shasum": "d6f8e7d3baad096383df59c3a2407bd942cf08e8", + "tarball": "http://registry.npmjs.org/ejs/-/ejs-0.5.0.tgz" + }, + "0.6.0": { + "shasum": "c2a4626ed2102e87898db4c9fcda5bc608e17140", + "tarball": "http://registry.npmjs.org/ejs/-/ejs-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "16ccc98eeeac166982927fa67eb3fca8865f6871", + "tarball": "http://registry.npmjs.org/ejs/-/ejs-0.6.1.tgz" + } + }, + "keywords": [ + "template", + "engine", + "ejs" + ], + "url": "http://registry.npmjs.org/ejs/" + }, + "ejs-ext": { + "name": "ejs-ext", + "description": "RailwayJS adaptor for ejs templating engine", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "anatoliy", + "email": "rpm1602@gmail.com" + } + ], + "time": { + "modified": "2011-09-26T07:47:00.302Z", + "created": "2011-06-06T08:51:10.980Z", + "0.0.2": "2011-06-06T08:57:13.665Z", + "0.0.3": "2011-06-22T05:07:40.782Z", + "0.0.4": "2011-09-22T13:19:45.503Z", + "0.0.5": "2011-09-26T07:47:00.302Z" + }, + "author": { + "name": "Anatoliy C." + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/ejs-ext/0.0.2", + "0.0.3": "http://registry.npmjs.org/ejs-ext/0.0.3", + "0.0.4": "http://registry.npmjs.org/ejs-ext/0.0.4", + "0.0.5": "http://registry.npmjs.org/ejs-ext/0.0.5" + }, + "dist": { + "0.0.2": { + "shasum": "6f20930a5b698b0834f2d35ef23749d7cc1e951b", + "tarball": "http://registry.npmjs.org/ejs-ext/-/ejs-ext-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "142ec62c6e1f823725a52f16bb9bb1786a40ce84", + "tarball": "http://registry.npmjs.org/ejs-ext/-/ejs-ext-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "e86788d14b427df5eef1dcd0c468076c53922dd1", + "tarball": "http://registry.npmjs.org/ejs-ext/-/ejs-ext-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "bebfdef6527c1b7625bcebff3466f04d80cee307", + "tarball": "http://registry.npmjs.org/ejs-ext/-/ejs-ext-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/ejs-ext/" + }, + "ejs-extension": { + "name": "ejs-extension", + "description": "Adaptor for ejs templating engine", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "alexferreira", + "email": "alex@dsol.com.br" + } + ], + "time": { + "modified": "2011-10-06T03:03:30.793Z", + "created": "2011-10-06T03:03:28.922Z", + "0.0.1": "2011-10-06T03:03:30.793Z" + }, + "author": { + "name": "Alex Ferreira" + }, + "repository": { + "type": "git", + "url": "git@bitbucket.org:sense8/ejs-extension.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ejs-extension/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "40b59a4411d3e2476f837b080538070a86fc43be", + "tarball": "http://registry.npmjs.org/ejs-extension/-/ejs-extension-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/ejs-extension/" + }, + "ekg": { + "name": "ekg", + "description": "advanced process analytics", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "ecto", + "email": "diffference@gmail.com" + } + ], + "time": { + "modified": "2011-11-01T20:46:10.145Z", + "created": "2011-11-01T18:07:36.497Z", + "0.0.0": "2011-11-01T18:07:36.795Z", + "0.0.1": "2011-11-01T20:46:10.145Z" + }, + "author": { + "name": "Cam Pedersen", + "email": "diffference@gmail.com", + "url": "http://campedersen.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/ecto/ekg.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/ekg/0.0.0", + "0.0.1": "http://registry.npmjs.org/ekg/0.0.1" + }, + "dist": { + "0.0.0": { + "shasum": "49a368d95ad39c9a3815b3f940ce689106d919d5", + "tarball": "http://registry.npmjs.org/ekg/-/ekg-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "16ab576b4e3e4036d0b8798fbe7d7264e4531c4b", + "tarball": "http://registry.npmjs.org/ekg/-/ekg-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/ekg/" + }, + "elastical": { + "name": "elastical", + "description": "An ElasticSearch client.", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "rgrove", + "email": "ryan@wonko.com" + } + ], + "time": { + "modified": "2011-12-08T05:33:04.095Z", + "created": "2011-09-06T21:05:26.768Z", + "0.0.1": "2011-12-08T05:33:04.095Z", + "0.0.2": "2011-12-08T05:33:04.095Z", + "0.0.3": "2011-10-26T21:37:59.241Z", + "0.0.4": "2011-11-18T01:16:10.926Z", + "0.0.5": "2011-11-23T23:09:16.083Z", + "0.0.6": "2011-12-08T05:33:04.095Z" + }, + "author": { + "name": "Ryan Grove", + "email": "ryan@wonko.com", + "url": "http://wonko.com/" + }, + "repository": [ + { + "type": "git", + "url": "git://github.com/rgrove/node-elastical.git" + } + ], + "versions": { + "0.0.1": "http://registry.npmjs.org/elastical/0.0.1", + "0.0.2": "http://registry.npmjs.org/elastical/0.0.2", + "0.0.3": "http://registry.npmjs.org/elastical/0.0.3", + "0.0.4": "http://registry.npmjs.org/elastical/0.0.4", + "0.0.5": "http://registry.npmjs.org/elastical/0.0.5", + "0.0.6": "http://registry.npmjs.org/elastical/0.0.6" + }, + "dist": { + "0.0.1": { + "shasum": "d4f0d3861b8ca64d8f3d6c1492b458e8c0b3d180", + "tarball": "http://registry.npmjs.org/elastical/-/elastical-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "e1f770a3e88debb84da63a99462c97fd26002bc3", + "tarball": "http://registry.npmjs.org/elastical/-/elastical-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "5eac5e2353060fab356a8acee5ecbf8848cd6503", + "tarball": "http://registry.npmjs.org/elastical/-/elastical-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "0dad7f7b7d0cf2bbc83846c038bea398b1a9b362", + "tarball": "http://registry.npmjs.org/elastical/-/elastical-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "d9e0ef1a7cbac7fbcffa4718ebd71e99c9133c90", + "tarball": "http://registry.npmjs.org/elastical/-/elastical-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "aa2a13a8a6a8d75043a0491efc858fe297d82f48", + "tarball": "http://registry.npmjs.org/elastical/-/elastical-0.0.6.tgz" + } + }, + "keywords": [ + "elasticsearch", + "elastic", + "search", + "client", + "lucene" + ], + "url": "http://registry.npmjs.org/elastical/" + }, + "elasticsearchclient": { + "name": "elasticsearchclient", + "description": "A client for Elastic Search", + "dist-tags": { + "latest": "0.1.8" + }, + "maintainers": [ + { + "name": "phill.rosen", + "email": "phill.rosen@gmail.com" + } + ], + "time": { + "modified": "2011-10-27T10:11:28.066Z", + "created": "2011-10-11T15:00:14.017Z", + "0.1.5a": "2011-10-11T15:00:14.249Z", + "0.1.8": "2011-10-27T10:11:28.066Z" + }, + "author": { + "name": "Phillip Rosen", + "email": "phill.rosen@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/phillro/node-elasticsearch-client.git" + }, + "versions": { + "0.1.5a": "http://registry.npmjs.org/elasticsearchclient/0.1.5a", + "0.1.8": "http://registry.npmjs.org/elasticsearchclient/0.1.8" + }, + "dist": { + "0.1.5a": { + "shasum": "fb31b6bf483ba8704901b659c937a425812bb33d", + "tarball": "http://registry.npmjs.org/elasticsearchclient/-/elasticsearchclient-0.1.5a.tgz" + }, + "0.1.8": { + "shasum": "14272981c39532683615dec799c9ffcd288820cf", + "tarball": "http://registry.npmjs.org/elasticsearchclient/-/elasticsearchclient-0.1.8.tgz" + } + }, + "url": "http://registry.npmjs.org/elasticsearchclient/" + }, + "elastiseahclient": { + "name": "elastiseahclient", + "description": "A client for Elastic Search", + "dist-tags": { + "latest": "0.1.5a" + }, + "maintainers": [ + { + "name": "phill.rosen", + "email": "phill.rosen@gmail.com" + } + ], + "time": { + "modified": "2011-10-04T16:35:30.199Z", + "created": "2011-09-17T15:07:58.675Z", + "0.1.3": "2011-09-17T15:07:59.167Z", + "0.1.4": "2011-09-30T18:35:40.173Z", + "0.1.5": "2011-10-04T16:31:22.017Z", + "0.1.5a": "2011-10-04T16:35:30.199Z" + }, + "author": { + "name": "Phillip Rosen", + "email": "phill.rosen@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/phillro/node-elasticsearch-client.git" + }, + "versions": { + "0.1.3": "http://registry.npmjs.org/elastiseahclient/0.1.3", + "0.1.4": "http://registry.npmjs.org/elastiseahclient/0.1.4", + "0.1.5": "http://registry.npmjs.org/elastiseahclient/0.1.5", + "0.1.5a": "http://registry.npmjs.org/elastiseahclient/0.1.5a" + }, + "dist": { + "0.1.3": { + "shasum": "2ad942d772076a7de12075f0e260ef57a38a5cd1", + "tarball": "http://registry.npmjs.org/elastiseahclient/-/elastiseahclient-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "adce096227abd2c1098f9bedb3cf827c0840c989", + "tarball": "http://registry.npmjs.org/elastiseahclient/-/elastiseahclient-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "ea8486da0f7328f699e3e2616f447f2ffd7934ca", + "tarball": "http://registry.npmjs.org/elastiseahclient/-/elastiseahclient-0.1.5.tgz" + }, + "0.1.5a": { + "shasum": "fa7fc13777e2df748cbe6ba2d05a048515314f9c", + "tarball": "http://registry.npmjs.org/elastiseahclient/-/elastiseahclient-0.1.5a.tgz" + } + }, + "url": "http://registry.npmjs.org/elastiseahclient/" + }, + "elementtree": { + "name": "elementtree", + "description": "XML Serialization and Parsing module based on Python's ElementTree.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "kami", + "email": "tomaz@tomaz.me" + }, + { + "name": "pquerna", + "email": "pquerna@apache.org" + }, + { + "name": "rphillips", + "email": "ryan@trolocsis.com" + } + ], + "time": { + "modified": "2011-09-23T20:37:27.088Z", + "created": "2011-09-05T10:02:14.518Z", + "0.1.0": "2011-09-05T10:02:15.227Z", + "0.1.1": "2011-09-23T20:36:13.933Z" + }, + "author": { + "name": "Rackspace US, Inc." + }, + "repository": { + "type": "git", + "url": "git://github.com/racker/node-elementtree.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/elementtree/0.1.0", + "0.1.1": "http://registry.npmjs.org/elementtree/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "7ed964eaab1f18c74ffed45f9e85fc1fa134d001", + "tarball": "http://registry.npmjs.org/elementtree/-/elementtree-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "8a46cbae8d268bfe28909a0f2660a1c9603b511d", + "tarball": "http://registry.npmjs.org/elementtree/-/elementtree-0.1.1.tgz" + } + }, + "keywords": [ + "xml", + "sax", + "parser", + "seralization", + "elementtree" + ], + "url": "http://registry.npmjs.org/elementtree/" + }, + "elf": { + "name": "elf", + "description": "Test", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "mcantelon", + "email": "mcantelon@gmail.com" + } + ], + "time": { + "modified": "2011-09-26T06:04:56.489Z", + "created": "2011-09-23T23:44:51.240Z", + "0.0.1": "2011-09-23T23:44:51.922Z", + "0.0.2": "2011-09-25T04:32:06.497Z" + }, + "author": { + "name": "Mike Cantelon", + "email": "mcantelon@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/elf/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "27e324c70d9f10834f675691f4830d971d935fcb", + "tarball": "http://registry.npmjs.org/elf/-/elf-0.0.1.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/elf/" + }, + "elf-logger": { + "name": "elf-logger", + "description": "A Node.js library for configurable HTTP logging following the W3C Extended Log File Format", + "dist-tags": { + "latest": "0.0.9" + }, + "maintainers": [ + { + "name": "TooTallNate", + "email": "nathan@tootallnate.net" + } + ], + "author": { + "name": "Nathan Rajlich", + "email": "nathan@tootallnate.net" + }, + "versions": { + "0.0.9": "http://registry.npmjs.org/elf-logger/0.0.9" + }, + "dist": { + "0.0.9": { + "tarball": "http://packages:5984/elf-logger/-/elf-logger-0.0.9.tgz" + } + }, + "keywords": [ + "http", + "log", + "w3c", + "elf", + "extended" + ], + "url": "http://registry.npmjs.org/elf-logger/" + }, + "elk": { + "name": "elk", + "description": "Library to interact with 45elks.com messaging service.", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "cau", + "email": "douglas@cau.se" + } + ], + "time": { + "modified": "2011-08-03T18:29:24.487Z", + "created": "2011-07-25T17:08:30.962Z", + "0.0.0": "2011-07-25T17:08:32.515Z", + "0.0.1": "2011-07-25T17:50:08.239Z", + "0.0.2": "2011-07-25T18:01:45.453Z", + "0.0.3": "2011-07-25T18:37:00.928Z", + "0.0.4": "2011-07-28T19:51:36.855Z", + "0.0.5": "2011-08-03T18:29:24.487Z" + }, + "author": { + "name": "Douglas Cau", + "email": "douglas@cau.se" + }, + "repository": { + "type": "git", + "url": "git://github.com/cau/node-elk.git" + }, + "versions": { + "0.0.4": "http://registry.npmjs.org/elk/0.0.4", + "0.0.5": "http://registry.npmjs.org/elk/0.0.5" + }, + "dist": { + "0.0.4": { + "shasum": "811cc13ffa5f4cfbc722b3c5ae112518a420fa7d", + "tarball": "http://registry.npmjs.org/elk/-/elk-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "8ad720141c42bd741d05f4ef4fdb09181e874e5e", + "tarball": "http://registry.npmjs.org/elk/-/elk-0.0.5.tgz" + } + }, + "keywords": [ + "mms", + "sms" + ], + "url": "http://registry.npmjs.org/elk/" + }, + "elucidata-build-tools": { + "name": "elucidata-build-tools", + "description": "Tools for assembling multiple coffee script and less files. Include dev server.", + "dist-tags": { + "latest": "1.0.3" + }, + "maintainers": [ + { + "name": "darthapo", + "email": "matt@elucidata.net" + } + ], + "time": { + "modified": "2011-02-13T17:07:21.337Z", + "created": "2011-02-10T04:06:20.754Z", + "1.0.1": "2011-02-10T04:06:23.414Z", + "1.0.2": "2011-02-10T05:11:05.150Z", + "1.0.3": "2011-02-13T17:07:21.337Z" + }, + "author": { + "name": "Matt McCray", + "email": "matt@elucidata.net", + "url": "http://elucidata.net" + }, + "versions": { + "1.0.1": "http://registry.npmjs.org/elucidata-build-tools/1.0.1", + "1.0.2": "http://registry.npmjs.org/elucidata-build-tools/1.0.2", + "1.0.3": "http://registry.npmjs.org/elucidata-build-tools/1.0.3" + }, + "dist": { + "1.0.1": { + "shasum": "0ac9dcffc89c9909408f8ff11f5555849f059f75", + "tarball": "http://registry.npmjs.org/elucidata-build-tools/-/elucidata-build-tools-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "d46d141e8e545a84f5a5a9b8fdf7ac1ff580d858", + "tarball": "http://registry.npmjs.org/elucidata-build-tools/-/elucidata-build-tools-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "27610f2e7fb85c3d28285fdc66a46600c2d26eba", + "tarball": "http://registry.npmjs.org/elucidata-build-tools/-/elucidata-build-tools-1.0.3.tgz" + } + }, + "keywords": [ + "coffeescript", + "less", + "compiler" + ], + "url": "http://registry.npmjs.org/elucidata-build-tools/" + }, + "email": { + "name": "email", + "description": "A simple wrapper for sendmail.", + "dist-tags": { + "latest": "0.2.4" + }, + "maintainers": [ + { + "name": "aaron", + "email": "aaron.heckmann+github@gmail.com" + } + ], + "author": { + "name": "Aaron Heckmann", + "email": "aaron.heckmann+github@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/aheckmann/node-email.git" + }, + "time": { + "modified": "2011-05-24T12:31:26.884Z", + "created": "2011-04-17T01:17:26.546Z", + "0.0.4": "2011-04-17T01:17:26.546Z", + "0.1.0": "2011-04-17T01:17:26.546Z", + "0.2.1": "2011-04-17T01:17:26.546Z", + "0.2.2": "2011-04-17T01:17:26.546Z", + "0.2.3": "2011-04-17T01:17:26.546Z", + "0.2.4": "2011-05-24T12:31:26.884Z" + }, + "versions": { + "0.0.4": "http://registry.npmjs.org/email/0.0.4", + "0.1.0": "http://registry.npmjs.org/email/0.1.0", + "0.2.1": "http://registry.npmjs.org/email/0.2.1", + "0.2.2": "http://registry.npmjs.org/email/0.2.2", + "0.2.3": "http://registry.npmjs.org/email/0.2.3", + "0.2.4": "http://registry.npmjs.org/email/0.2.4" + }, + "dist": { + "0.0.4": { + "tarball": "http://packages:5984/email/-/email-0.0.4.tgz" + }, + "0.1.0": { + "tarball": "http://packages:5984/email/-/email-0.1.0.tgz" + }, + "0.2.1": { + "tarball": "http://packages:5984/email/-/email-0.2.1.tgz" + }, + "0.2.2": { + "tarball": "http://packages:5984/email/-/email-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "c418a1839e2c71bd8ba7201f9b41f874314a5e73", + "tarball": "http://registry.npmjs.org/email/-/email-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "296f7fd6b9e0b89f80c24d27621a673cdf497992", + "tarball": "http://registry.npmjs.org/email/-/email-0.2.4.tgz" + } + }, + "keywords": [ + "email", + "sendmail", + "node-email" + ], + "url": "http://registry.npmjs.org/email/" + }, + "email-verificationtoken": { + "name": "email-verificationtoken", + "description": "Create Email verification token", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "alfredwesterveld", + "email": "alfredwesterveld@gmail.com" + } + ], + "time": { + "modified": "2011-02-02T00:06:26.583Z", + "created": "2011-02-01T23:45:33.388Z", + "0.0.1": "2011-02-01T23:45:33.749Z", + "0.0.2": "2011-02-02T00:02:42.740Z", + "0.0.3": "2011-02-02T00:06:26.583Z" + }, + "repository": { + "type": "git", + "url": "https://alfredwesterveld@github.com/alfredwesterveld/node-email-verification.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/email-verificationtoken/0.0.1", + "0.0.2": "http://registry.npmjs.org/email-verificationtoken/0.0.2", + "0.0.3": "http://registry.npmjs.org/email-verificationtoken/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "86f186a7bafe3a27f2e3d54341b82268cb2ca1ad", + "tarball": "http://registry.npmjs.org/email-verificationtoken/-/email-verificationtoken-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "84b629e9e80ae6b8232594b3f2bc1ee5e54130fc", + "tarball": "http://registry.npmjs.org/email-verificationtoken/-/email-verificationtoken-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "7e3c4c2cb9d4fea5714c21344f2af07e6322331d", + "tarball": "http://registry.npmjs.org/email-verificationtoken/-/email-verificationtoken-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/email-verificationtoken/" + }, + "emailjs": { + "name": "emailjs", + "description": "send text/html emails and attachments (files, streams and strings) from node.js to any smtp server", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "eleith", + "email": "work@eleith.com" + } + ], + "time": { + "modified": "2011-12-13T23:12:11.869Z", + "created": "2011-02-23T21:50:40.535Z", + "0.1.0": "2011-02-23T21:50:40.846Z", + "0.1.1": "2011-02-23T22:15:28.158Z", + "0.1.2": "2011-02-24T23:06:42.209Z", + "0.1.3": "2011-03-01T19:53:25.117Z", + "0.1.4": "2011-03-07T10:49:10.400Z", + "0.1.5": "2011-03-07T12:01:53.384Z", + "0.1.6": "2011-03-08T18:41:44.255Z", + "0.1.7": "2011-04-04T00:28:51.969Z", + "0.1.8": "2011-04-04T17:37:22.897Z", + "0.1.9": "2011-05-15T01:25:42.080Z", + "0.1.10": "2011-05-16T18:29:29.183Z", + "0.1.11": "2011-05-18T08:35:53.605Z", + "0.1.12": "2011-06-05T10:30:43.063Z", + "0.1.13": "2011-06-06T03:24:30.722Z", + "0.1.14": "2011-06-28T19:44:55.216Z", + "0.1.15": "2011-09-25T22:01:12.790Z", + "0.1.16": "2011-11-11T18:32:28.840Z", + "0.1.17": "2011-11-16T02:10:13.274Z", + "0.1.18": "2011-11-24T22:12:43.744Z", + "0.1.19": "2011-11-25T00:26:52.632Z", + "0.2.0": "2011-12-09T21:53:08.187Z", + "0.2.1": "2011-12-13T23:12:11.869Z" + }, + "author": { + "name": "eleith" + }, + "repository": { + "type": "git", + "url": "git://github.com/eleith/emailjs.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/emailjs/0.1.0", + "0.1.1": "http://registry.npmjs.org/emailjs/0.1.1", + "0.1.2": "http://registry.npmjs.org/emailjs/0.1.2", + "0.1.3": "http://registry.npmjs.org/emailjs/0.1.3", + "0.1.4": "http://registry.npmjs.org/emailjs/0.1.4", + "0.1.5": "http://registry.npmjs.org/emailjs/0.1.5", + "0.1.6": "http://registry.npmjs.org/emailjs/0.1.6", + "0.1.7": "http://registry.npmjs.org/emailjs/0.1.7", + "0.1.8": "http://registry.npmjs.org/emailjs/0.1.8", + "0.1.9": "http://registry.npmjs.org/emailjs/0.1.9", + "0.1.10": "http://registry.npmjs.org/emailjs/0.1.10", + "0.1.11": "http://registry.npmjs.org/emailjs/0.1.11", + "0.1.12": "http://registry.npmjs.org/emailjs/0.1.12", + "0.1.13": "http://registry.npmjs.org/emailjs/0.1.13", + "0.1.14": "http://registry.npmjs.org/emailjs/0.1.14", + "0.1.15": "http://registry.npmjs.org/emailjs/0.1.15", + "0.1.16": "http://registry.npmjs.org/emailjs/0.1.16", + "0.1.17": "http://registry.npmjs.org/emailjs/0.1.17", + "0.1.18": "http://registry.npmjs.org/emailjs/0.1.18", + "0.1.19": "http://registry.npmjs.org/emailjs/0.1.19", + "0.2.0": "http://registry.npmjs.org/emailjs/0.2.0", + "0.2.1": "http://registry.npmjs.org/emailjs/0.2.1" + }, + "dist": { + "0.1.0": { + "shasum": "3a18bbe7ff94f88ae0d275b303c3916e4fcf13e8", + "tarball": "http://registry.npmjs.org/emailjs/-/emailjs-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "15d77d6b0169038d4de9ee2b6d27e244966d9c32", + "tarball": "http://registry.npmjs.org/emailjs/-/emailjs-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "dcd8e4cc8d90c5bcd3718840e494e907f4a43a05", + "tarball": "http://registry.npmjs.org/emailjs/-/emailjs-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "195f71f7041497323d6edf002f6cdeb56cbe0208", + "tarball": "http://registry.npmjs.org/emailjs/-/emailjs-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "9fa0dc2b4d2d22710e973b9aff507576739aba76", + "tarball": "http://registry.npmjs.org/emailjs/-/emailjs-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "d8c57fba3f159d06c63dace5c93f75e05a685873", + "tarball": "http://registry.npmjs.org/emailjs/-/emailjs-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "6ded9f6d0a5adc933e3dc4477d00fa5680927cbf", + "tarball": "http://registry.npmjs.org/emailjs/-/emailjs-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "403d6908afac15462678ca2d290e15718c838f3c", + "tarball": "http://registry.npmjs.org/emailjs/-/emailjs-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "509c6ec8aa3cbf53b4ee46c36a362b604cef7b01", + "tarball": "http://registry.npmjs.org/emailjs/-/emailjs-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "5d2c454f4a5dc9b939fcadddefea0f72ad5ab578", + "tarball": "http://registry.npmjs.org/emailjs/-/emailjs-0.1.9.tgz" + }, + "0.1.10": { + "shasum": "cdf46bf9dba043930d3053c9a3a43c18eb0d6798", + "tarball": "http://registry.npmjs.org/emailjs/-/emailjs-0.1.10.tgz" + }, + "0.1.11": { + "shasum": "3d61a1a06323da6eee96a3017c5746652b77477f", + "tarball": "http://registry.npmjs.org/emailjs/-/emailjs-0.1.11.tgz" + }, + "0.1.12": { + "shasum": "04f5ca1d202f709725c5026e7b89ef702dd5407e", + "tarball": "http://registry.npmjs.org/emailjs/-/emailjs-0.1.12.tgz" + }, + "0.1.13": { + "shasum": "90eba58e1a47f6f190620eaa639332d4794b3339", + "tarball": "http://registry.npmjs.org/emailjs/-/emailjs-0.1.13.tgz" + }, + "0.1.14": { + "shasum": "4066727a477a712c48a6378ed06b4cac6ed15145", + "tarball": "http://registry.npmjs.org/emailjs/-/emailjs-0.1.14.tgz" + }, + "0.1.15": { + "shasum": "756f68c725d1f3a03f9f2935f54c4ae2ead93d84", + "tarball": "http://registry.npmjs.org/emailjs/-/emailjs-0.1.15.tgz" + }, + "0.1.16": { + "shasum": "95981a598e91ac2831a3551dd4c57fb15856a009", + "tarball": "http://registry.npmjs.org/emailjs/-/emailjs-0.1.16.tgz" + }, + "0.1.17": { + "shasum": "db60266a1377360cb1e1bc37873a24d93ec5b604", + "tarball": "http://registry.npmjs.org/emailjs/-/emailjs-0.1.17.tgz" + }, + "0.1.18": { + "shasum": "84b2bb9bb035f888cbdc051f5608e52785989282", + "tarball": "http://registry.npmjs.org/emailjs/-/emailjs-0.1.18.tgz" + }, + "0.1.19": { + "shasum": "e72bc23b6e0541d0a5b557cc651c206380fc77c3", + "tarball": "http://registry.npmjs.org/emailjs/-/emailjs-0.1.19.tgz" + }, + "0.2.0": { + "shasum": "244d7a5802a63cfa2322195a4df811e2928fc3de", + "tarball": "http://registry.npmjs.org/emailjs/-/emailjs-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "0b249a331f598a275df3ccf56a08aabdff9a0190", + "tarball": "http://registry.npmjs.org/emailjs/-/emailjs-0.2.1.tgz" + } + }, + "url": "http://registry.npmjs.org/emailjs/" + }, + "emailyak": { + "name": "emailyak", + "description": "A node.js module for receiving email using the EmailYak API.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "rfadams", + "email": "rfadams@gmail.com" + } + ], + "time": { + "modified": "2011-10-06T22:23:25.564Z", + "created": "2011-10-06T22:23:25.018Z", + "0.0.1": "2011-10-06T22:23:25.564Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/emailyak/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "9c49d7aa3ecb894101e23e66445c949b3f37c931", + "tarball": "http://registry.npmjs.org/emailyak/-/emailyak-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/emailyak/" + }, + "embedly": { + "name": "embedly", + "description": "Embedly client library for node", + "dist-tags": { + "latest": "0.5.0" + }, + "maintainers": [ + { + "name": "doki_pen", + "email": "bob@embed.ly" + } + ], + "time": { + "modified": "2011-12-02T16:41:11.216Z", + "created": "2011-02-10T16:37:01.709Z", + "0.1.0": "2011-02-10T16:37:02.007Z", + "0.1.1": "2011-02-10T18:51:06.242Z", + "0.1.2": "2011-02-10T20:22:55.669Z", + "0.1.3": "2011-02-11T17:58:23.199Z", + "0.1.4": "2011-02-14T16:35:40.844Z", + "0.1.5": "2011-02-14T16:46:23.207Z", + "0.3.0": "2011-03-11T21:38:51.847Z", + "0.3.1": "2011-03-14T00:12:17.328Z", + "0.3.3": "2011-04-13T16:29:31.471Z", + "0.3.4": "2011-04-14T19:25:05.152Z", + "0.4.0": "2011-10-12T19:37:21.168Z", + "0.4.1": "2011-12-02T12:27:35.528Z", + "0.4.2": "2011-12-02T12:35:16.033Z", + "0.5.0": "2011-12-02T16:41:11.216Z" + }, + "author": { + "name": "Bob Corsaro", + "email": "bob@embed.ly", + "url": "http://www.google.com/profiles/rcorsaro" + }, + "repository": { + "type": "git", + "url": "git://github.com/embedly/embedly-node.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/embedly/0.1.0", + "0.1.1": "http://registry.npmjs.org/embedly/0.1.1", + "0.1.2": "http://registry.npmjs.org/embedly/0.1.2", + "0.1.3": "http://registry.npmjs.org/embedly/0.1.3", + "0.1.4": "http://registry.npmjs.org/embedly/0.1.4", + "0.1.5": "http://registry.npmjs.org/embedly/0.1.5", + "0.3.0": "http://registry.npmjs.org/embedly/0.3.0", + "0.3.1": "http://registry.npmjs.org/embedly/0.3.1", + "0.3.3": "http://registry.npmjs.org/embedly/0.3.3", + "0.3.4": "http://registry.npmjs.org/embedly/0.3.4", + "0.4.0": "http://registry.npmjs.org/embedly/0.4.0", + "0.4.1": "http://registry.npmjs.org/embedly/0.4.1", + "0.4.2": "http://registry.npmjs.org/embedly/0.4.2", + "0.5.0": "http://registry.npmjs.org/embedly/0.5.0" + }, + "dist": { + "0.1.0": { + "shasum": "412e9b67df5f98f0e2341014148bf780ec684cde", + "tarball": "http://registry.npmjs.org/embedly/-/embedly-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "8f7a6ba5883f088acc1d50be613faeccaff1ec79", + "tarball": "http://registry.npmjs.org/embedly/-/embedly-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "6855a5998ee07c97d4aa2e5f01866e83852d4661", + "tarball": "http://registry.npmjs.org/embedly/-/embedly-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "055f6647e52d223d3612653276ccd1bf8441629f", + "tarball": "http://registry.npmjs.org/embedly/-/embedly-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "40ad4428c630c9d11203ad11f981cf6c67c90ee7", + "tarball": "http://registry.npmjs.org/embedly/-/embedly-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "fa00c7101210578e9018d659fb314b2932cf9342", + "tarball": "http://registry.npmjs.org/embedly/-/embedly-0.1.5.tgz" + }, + "0.3.0": { + "shasum": "c7a4a1a9e8046415bddeca93801467a6cbc987e4", + "tarball": "http://registry.npmjs.org/embedly/-/embedly-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "4d8a3ea73789f1895a3c51b9ae7cb617395a7db0", + "tarball": "http://registry.npmjs.org/embedly/-/embedly-0.3.1.tgz" + }, + "0.3.3": { + "shasum": "740748540e4c19afbd44ccfce14bd0b058ae6a7e", + "tarball": "http://registry.npmjs.org/embedly/-/embedly-0.3.3.tgz" + }, + "0.3.4": { + "shasum": "ded7503058ab07a69114db30640985334e73f705", + "tarball": "http://registry.npmjs.org/embedly/-/embedly-0.3.4.tgz" + }, + "0.4.0": { + "shasum": "74a9ec7130e4ac1cd7e891f57e2cc33957148c5b", + "tarball": "http://registry.npmjs.org/embedly/-/embedly-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "e161490a1d8db5107ad9a87d852e647d3840d5d7", + "tarball": "http://registry.npmjs.org/embedly/-/embedly-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "2b542962967ff7f93e7a1807444d50e0a55c86ef", + "tarball": "http://registry.npmjs.org/embedly/-/embedly-0.4.2.tgz" + }, + "0.5.0": { + "shasum": "290397bd00bf6f653f5743de596c1d2d0b0e2806", + "tarball": "http://registry.npmjs.org/embedly/-/embedly-0.5.0.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/embedly/" + }, + "embedly-socket": { + "name": "embedly-socket", + "description": "Web Socket proxy for the Embedly API", + "dist-tags": { + "latest": "0.0.4" + }, + "readme": "embedly-socket(1) -- Web Socket proxy over the Embedly API\n==========================================================\n\n## SYNOPSIS\n\n## IMPORTANT\n\n## Simple Install\n", + "maintainers": [ + { + "name": "doki_pen", + "email": "rcorsaro@gmail.com" + } + ], + "time": { + "modified": "2011-12-02T19:53:56.108Z", + "created": "2011-12-01T22:41:09.197Z", + "0.0.1": "2011-12-01T22:41:12.714Z", + "0.0.2": "2011-12-02T16:42:41.014Z", + "0.0.3": "2011-12-02T18:03:28.813Z", + "0.0.4": "2011-12-02T19:53:56.108Z" + }, + "author": { + "name": "Bob Corsaro", + "email": "bob@embed.ly", + "url": "http://bit.ly/rcorsaro" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/embedly-socket/0.0.1", + "0.0.2": "http://registry.npmjs.org/embedly-socket/0.0.2", + "0.0.3": "http://registry.npmjs.org/embedly-socket/0.0.3", + "0.0.4": "http://registry.npmjs.org/embedly-socket/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "a07ac8184efef4ea4ed7cd34b299f8b00d0ee481", + "tarball": "http://registry.npmjs.org/embedly-socket/-/embedly-socket-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "4d1bbb77727bd3f670b73dbd8d13979e166294fa", + "tarball": "http://registry.npmjs.org/embedly-socket/-/embedly-socket-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "2fc6c641c587f39bf428035b32a814f338465a01", + "tarball": "http://registry.npmjs.org/embedly-socket/-/embedly-socket-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "0b6bb52ca950bb4ad1bcd5ab7b9be2edb278f339", + "tarball": "http://registry.npmjs.org/embedly-socket/-/embedly-socket-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/embedly-socket/" + }, + "emile": { + "name": "emile", + "description": "no-thrills stand-alone CSS animation JavaScript framework", + "dist-tags": { + "latest": "1.0.5" + }, + "maintainers": [ + { + "name": "ded", + "email": "polvero@gmail.com" + } + ], + "time": { + "modified": "2011-05-17T18:40:52.840Z", + "created": "2011-04-09T23:42:02.102Z", + "1.0.1": "2011-04-09T23:42:02.547Z", + "1.0.2": "2011-04-14T01:20:10.244Z", + "1.0.3": "2011-04-16T02:37:38.267Z", + "1.0.4": "2011-04-18T21:01:00.033Z", + "1.0.5": "2011-05-17T18:40:52.840Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/ded/emile.git" + }, + "versions": { + "1.0.1": "http://registry.npmjs.org/emile/1.0.1", + "1.0.2": "http://registry.npmjs.org/emile/1.0.2", + "1.0.3": "http://registry.npmjs.org/emile/1.0.3", + "1.0.4": "http://registry.npmjs.org/emile/1.0.4", + "1.0.5": "http://registry.npmjs.org/emile/1.0.5" + }, + "dist": { + "1.0.1": { + "shasum": "86679cfc9b28a449b0f2c62022a5bc1ffdbbf0b6", + "tarball": "http://registry.npmjs.org/emile/-/emile-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "a17c034a3a206ccc21f3f1dad4f2929f35be4ac2", + "tarball": "http://registry.npmjs.org/emile/-/emile-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "ef6ad9b18f9a0e8c9695440baad69e917c748acb", + "tarball": "http://registry.npmjs.org/emile/-/emile-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "ae807c1ad18098faab60ed2ceddcc804fc7d6b64", + "tarball": "http://registry.npmjs.org/emile/-/emile-1.0.4.tgz" + }, + "1.0.5": { + "shasum": "ceb80a35847de588f9f8af1537cfe4fe73a38a42", + "tarball": "http://registry.npmjs.org/emile/-/emile-1.0.5.tgz" + } + }, + "keywords": [ + "ender", + "animation", + "css", + "morph" + ], + "url": "http://registry.npmjs.org/emile/" + }, + "emit": { + "name": "emit", + "description": "A reactive toolkit for JavaScript", + "dist-tags": { + "latest": "0.0.0" + }, + "readme": null, + "maintainers": [ + { + "name": "jed", + "email": "tr@nslator.jp" + } + ], + "time": { + "modified": "2011-11-30T05:20:53.193Z", + "created": "2011-11-30T05:20:49.698Z", + "0.0.0": "2011-11-30T05:20:53.193Z" + }, + "author": { + "name": "Jed Schmidt", + "email": "tr@nslator.jp", + "url": "http://jed.is" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/emit/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "a2038740627faa5625c2d7b530563761e117598e", + "tarball": "http://registry.npmjs.org/emit/-/emit-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/emit/" + }, + "emit.io": { + "name": "emit.io", + "description": "saving the name", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "supershabam", + "email": "dev@supershabam.com" + } + ], + "time": { + "modified": "2011-08-24T08:05:07.988Z", + "created": "2011-08-24T08:05:07.292Z", + "0.0.0": "2011-08-24T08:05:07.988Z" + }, + "author": { + "name": "Ian Hansen", + "email": "dev@supershabam.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/supershabam/websocket.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/emit.io/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "d2b676960fa4a3de381eee3f08385a130dd0d986", + "tarball": "http://registry.npmjs.org/emit.io/-/emit.io-0.0.0.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/emit.io/" + }, + "emre": { + "name": "emre", + "description": "Object selection like a boss", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "dawnerd", + "email": "troy@somanyscientists.com" + } + ], + "time": { + "modified": "2011-07-21T01:48:43.244Z", + "created": "2011-07-21T01:48:42.745Z", + "1.0.0": "2011-07-21T01:48:43.244Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/dawnerd/Emre.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/emre/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "cf59f222a336c3423cd68bc87dba70c6108bf25d", + "tarball": "http://registry.npmjs.org/emre/-/emre-1.0.0.tgz" + } + }, + "keywords": [ + "object", + "utility" + ], + "url": "http://registry.npmjs.org/emre/" + }, + "encrypt": { + "name": "encrypt", + "description": "encrypt", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "alfredwesterveld", + "email": "alfredwesterveld@gmail.com" + } + ], + "time": { + "modified": "2011-02-06T03:32:44.568Z", + "created": "2011-02-06T03:32:44.241Z", + "0.0.1": "2011-02-06T03:32:44.568Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/encrypt/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "8c7c9b7e8f85c8701f090d3b5292efd1d4c3bf8c", + "tarball": "http://registry.npmjs.org/encrypt/-/encrypt-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/encrypt/" + }, + "ender": { + "name": "ender", + "description": "next level JavaScript modules", + "dist-tags": { + "latest": "0.8.2" + }, + "maintainers": [ + { + "name": "ded", + "email": "polvero@gmail.com" + }, + { + "name": "fat", + "email": "jacobthornton@gmail.com" + } + ], + "time": { + "modified": "2011-11-15T01:08:11.149Z", + "created": "2011-04-10T07:14:50.940Z", + "0.0.1": "2011-04-10T07:14:51.322Z", + "0.0.2": "2011-04-11T02:40:00.679Z", + "0.0.3": "2011-04-12T07:25:20.374Z", + "0.0.4": "2011-04-15T00:10:15.828Z", + "0.0.5": "2011-04-15T00:11:18.394Z", + "0.0.6": "2011-04-15T05:37:46.891Z", + "0.0.7": "2011-04-15T20:58:01.890Z", + "0.0.8": "2011-04-16T03:50:12.954Z", + "0.1.1": "2011-04-18T00:53:21.249Z", + "0.1.2": "2011-04-18T06:41:29.595Z", + "0.1.3": "2011-04-18T07:07:40.346Z", + "0.1.4": "2011-04-18T16:05:44.042Z", + "0.1.5": "2011-04-18T16:06:36.803Z", + "0.1.6": "2011-04-18T19:00:08.968Z", + "0.2.0": "2011-04-22T00:22:23.541Z", + "0.2.1": "2011-04-22T17:18:58.516Z", + "0.2.3": "2011-04-26T22:21:48.055Z", + "0.2.4": "2011-04-27T04:47:48.089Z", + "0.2.5": "2011-04-29T04:49:47.625Z", + "0.2.6": "2011-05-02T06:59:16.941Z", + "0.2.7": "2011-05-02T07:20:39.864Z", + "0.3.0": "2011-05-09T23:32:26.031Z", + "0.3.1": "2011-05-10T07:09:57.267Z", + "0.3.2": "2011-05-12T18:49:54.161Z", + "0.3.4": "2011-05-12T20:47:37.687Z", + "0.3.5": "2011-05-13T01:43:38.054Z", + "0.3.6": "2011-05-17T06:33:53.200Z", + "0.3.7": "2011-05-23T00:41:33.442Z", + "0.4.0": "2011-05-24T01:01:08.940Z", + "0.4.1": "2011-06-22T23:26:32.423Z", + "0.4.2": "2011-06-23T05:42:38.631Z", + "0.4.3": "2011-06-23T07:39:50.916Z", + "0.4.4": "2011-06-26T00:52:25.515Z", + "0.5.0": "2011-06-26T22:40:33.603Z", + "0.5.1": "2011-06-27T07:38:26.503Z", + "0.5.2": "2011-06-28T05:28:57.970Z", + "0.5.3": "2011-06-28T05:41:35.451Z", + "0.6.0": "2011-07-29T01:47:51.590Z", + "0.6.2": "2011-07-29T20:51:17.432Z", + "0.6.3": "2011-07-31T02:36:12.702Z", + "0.6.4": "2011-07-31T17:33:50.067Z", + "0.6.5": "2011-08-09T05:59:21.417Z", + "0.6.6": "2011-09-18T04:31:07.493Z", + "0.6.7": "2011-09-25T03:03:30.660Z", + "0.6.8": "2011-09-25T03:18:36.459Z", + "0.6.9": "2011-09-25T08:20:45.482Z", + "0.7.0": "2011-09-28T06:09:42.158Z", + "0.7.1": "2011-09-28T07:07:38.044Z", + "0.7.2": "2011-10-02T19:26:25.064Z", + "0.8.0": "2011-11-09T04:59:33.194Z", + "0.8.2": "2011-11-15T01:08:11.149Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ender/0.0.1", + "0.0.2": "http://registry.npmjs.org/ender/0.0.2", + "0.0.3": "http://registry.npmjs.org/ender/0.0.3", + "0.0.4": "http://registry.npmjs.org/ender/0.0.4", + "0.0.5": "http://registry.npmjs.org/ender/0.0.5", + "0.0.6": "http://registry.npmjs.org/ender/0.0.6", + "0.0.7": "http://registry.npmjs.org/ender/0.0.7", + "0.0.8": "http://registry.npmjs.org/ender/0.0.8", + "0.1.1": "http://registry.npmjs.org/ender/0.1.1", + "0.1.2": "http://registry.npmjs.org/ender/0.1.2", + "0.1.3": "http://registry.npmjs.org/ender/0.1.3", + "0.1.4": "http://registry.npmjs.org/ender/0.1.4", + "0.1.5": "http://registry.npmjs.org/ender/0.1.5", + "0.1.6": "http://registry.npmjs.org/ender/0.1.6", + "0.2.0": "http://registry.npmjs.org/ender/0.2.0", + "0.2.1": "http://registry.npmjs.org/ender/0.2.1", + "0.2.3": "http://registry.npmjs.org/ender/0.2.3", + "0.2.4": "http://registry.npmjs.org/ender/0.2.4", + "0.2.5": "http://registry.npmjs.org/ender/0.2.5", + "0.2.6": "http://registry.npmjs.org/ender/0.2.6", + "0.2.7": "http://registry.npmjs.org/ender/0.2.7", + "0.3.0": "http://registry.npmjs.org/ender/0.3.0", + "0.3.1": "http://registry.npmjs.org/ender/0.3.1", + "0.3.2": "http://registry.npmjs.org/ender/0.3.2", + "0.3.4": "http://registry.npmjs.org/ender/0.3.4", + "0.3.5": "http://registry.npmjs.org/ender/0.3.5", + "0.3.6": "http://registry.npmjs.org/ender/0.3.6", + "0.3.7": "http://registry.npmjs.org/ender/0.3.7", + "0.4.0": "http://registry.npmjs.org/ender/0.4.0", + "0.4.1": "http://registry.npmjs.org/ender/0.4.1", + "0.4.2": "http://registry.npmjs.org/ender/0.4.2", + "0.4.3": "http://registry.npmjs.org/ender/0.4.3", + "0.4.4": "http://registry.npmjs.org/ender/0.4.4", + "0.5.0": "http://registry.npmjs.org/ender/0.5.0", + "0.5.1": "http://registry.npmjs.org/ender/0.5.1", + "0.5.2": "http://registry.npmjs.org/ender/0.5.2", + "0.5.3": "http://registry.npmjs.org/ender/0.5.3", + "0.6.0": "http://registry.npmjs.org/ender/0.6.0", + "0.6.2": "http://registry.npmjs.org/ender/0.6.2", + "0.6.3": "http://registry.npmjs.org/ender/0.6.3", + "0.6.4": "http://registry.npmjs.org/ender/0.6.4", + "0.6.5": "http://registry.npmjs.org/ender/0.6.5", + "0.6.6": "http://registry.npmjs.org/ender/0.6.6", + "0.6.7": "http://registry.npmjs.org/ender/0.6.7", + "0.6.8": "http://registry.npmjs.org/ender/0.6.8", + "0.6.9": "http://registry.npmjs.org/ender/0.6.9", + "0.7.0": "http://registry.npmjs.org/ender/0.7.0", + "0.7.1": "http://registry.npmjs.org/ender/0.7.1", + "0.7.2": "http://registry.npmjs.org/ender/0.7.2", + "0.8.0": "http://registry.npmjs.org/ender/0.8.0", + "0.8.2": "http://registry.npmjs.org/ender/0.8.2" + }, + "dist": { + "0.0.1": { + "shasum": "964e0d850f7138f11cb6ed68ed091d0bd6a46283", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "1f639153845cf1a9553484ab994905a4301d01e9", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "58f58ca875bb2aa5fcb194132b5c899831077e18", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "4f4f476841a4bb584e38271e59078938586e88d9", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "5093dc27cbaf8ded7dbdde8b1608d5f51b6b52a4", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "e19e6ac3e602cd4f252b361274c988d987d9facd", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "c7d358208686688838bfa611c8027c95a04e1f0a", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "aa0c0c6afeff6f48c3c92a4ceef7835f91089c9d", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.0.8.tgz" + }, + "0.1.1": { + "shasum": "0883c9c08ed961a6d1f6f7381a669bc5d4a0deb5", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "95a04ee77fcbb01bf8b28a004101139ab0cf0e26", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "2b8b9e8383eb28247f71d4dd3f25cb477eae3a3d", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "ea938183ce52784fe79261f127d779b8c8d3745a", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "073dad7bf841a361c24b79df0c286d01ccf5776e", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "1061b68a8d5b57ff51ef1474c00c2c47ba49d3a7", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.1.6.tgz" + }, + "0.2.0": { + "shasum": "9f597ceaa2745f132b430f973b2899dab285429c", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "b391ea2a993e6f73f6bb77bcb0901354e5d8d070", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.2.1.tgz" + }, + "0.2.3": { + "shasum": "9dd30ccf7867572c2afb056f51cd83b2b51aead1", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "76200e92dc94aac2151dc316cb30aff40b760ffa", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "4daec3d865fc052bbc77c9160f14dd784f522814", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "38dd953170b81d05811fafe7a96b50a1839190f9", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "13065850074e2c074cafdbf59e1281a1de6cd3c5", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.2.7.tgz" + }, + "0.3.0": { + "shasum": "0af589f8099b7a6ebb038c805a93e69ef3a6e439", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "a7d5a3240496b0810d81395bcf45a5eefa521dca", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "dadd6559b71341b0caa8aa7bf4facc07d6f97417", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.3.2.tgz" + }, + "0.3.4": { + "shasum": "65b99382448030b6e8f1b9013e1a77d4330236f7", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.3.4.tgz" + }, + "0.3.5": { + "shasum": "807d829a0f409a216175f17be6420e63880a2fa5", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.3.5.tgz" + }, + "0.3.6": { + "shasum": "4314a4233e225e3bfdf34a1b978c1d1f3ac5c89e", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.3.6.tgz" + }, + "0.3.7": { + "shasum": "b25a766e4df57b995562a38502fd221b311cbf39", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.3.7.tgz" + }, + "0.4.0": { + "shasum": "f461834c819d144f9a36a2cf933db26bf85ad69a", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "be35e6299631c3adfd05527f50cf298d54e14e24", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "beda4717fc503494ac497bf3d5ceab1462fd609c", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "6b16c33b02251ab6df73af049626edb425dc0dcf", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.4.3.tgz" + }, + "0.4.4": { + "shasum": "8a0d2962181f0c731a9e18a89347f66c118351b0", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.4.4.tgz" + }, + "0.5.0": { + "shasum": "8189e4502fc2d29929fb08f12169f0237660c8df", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "872e54b17f06bda2e6fc9c0291bdfa5d53e26483", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "b4b167884f306a04a66a24efcb023688b81772ba", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.5.2.tgz" + }, + "0.5.3": { + "shasum": "26ba3433cff0df3d7a142dfcca6fb4b014d3cd69", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.5.3.tgz" + }, + "0.6.0": { + "shasum": "73467fffe5d80730a8a3667bdb9f969f7b580ddc", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.6.0.tgz" + }, + "0.6.2": { + "shasum": "b866874f120011c0a20aaffa93ecf982e5b848c0", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.6.2.tgz" + }, + "0.6.3": { + "shasum": "b37920ef9fb97e20434a03753c1258129d060d7c", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.6.3.tgz" + }, + "0.6.4": { + "shasum": "850916ee983e6fff1d0e581d1db3f6006fc5ef0c", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.6.4.tgz" + }, + "0.6.5": { + "shasum": "d6aede9291901434061a9bc092511e75bb1224a0", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.6.5.tgz" + }, + "0.6.6": { + "shasum": "d6c7c525064d890ace5e6e2c384f19689b45d328", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.6.6.tgz" + }, + "0.6.7": { + "shasum": "d68923af91cabbcad873d2f544a75add479c197b", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.6.7.tgz" + }, + "0.6.8": { + "shasum": "1852a4eab60fc3c886b08aa3522b9bf019ba40b9", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.6.8.tgz" + }, + "0.6.9": { + "shasum": "847408e7315c543ba083a52d2df5e1fc0a2aebad", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.6.9.tgz" + }, + "0.7.0": { + "shasum": "3a4d4f1c23dc5643c364587cfc65d918b6dbcffd", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.7.0.tgz" + }, + "0.7.1": { + "shasum": "be5f46329dda5a062acec58a3e52b898c717d9d1", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.7.1.tgz" + }, + "0.7.2": { + "shasum": "e27b267a5a9dea63e9f3f487f835d5f63b235f84", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.7.2.tgz" + }, + "0.8.0": { + "shasum": "c3790270c67aeaa69c5541b47a2758aa120c7b56", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.8.0.tgz" + }, + "0.8.2": { + "shasum": "e5f8d71cf6ae650454852aff6064cc9657c5b8c4", + "tarball": "http://registry.npmjs.org/ender/-/ender-0.8.2.tgz" + } + }, + "keywords": [ + "ender", + "modules", + "builder", + "framework", + "packager" + ], + "url": "http://registry.npmjs.org/ender/" + }, + "ender-dragdealer": { + "name": "ender-dragdealer", + "description": "A drag based javascript library", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "tristen", + "email": "tristen.brown@gmail.com" + } + ], + "time": { + "modified": "2011-08-15T04:50:23.622Z", + "created": "2011-08-12T03:26:53.619Z", + "1.0.0": "2011-08-12T03:26:55.775Z", + "1.0.1": "2011-08-12T04:15:02.416Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/tristen/ender-dragdealer.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/ender-dragdealer/1.0.0", + "1.0.1": "http://registry.npmjs.org/ender-dragdealer/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "7adbc66b8f01befa95230b69efe5ffb6ec0a4142", + "tarball": "http://registry.npmjs.org/ender-dragdealer/-/ender-dragdealer-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "02aee2f98a2d5065eb586afea6e3808b0706c299", + "tarball": "http://registry.npmjs.org/ender-dragdealer/-/ender-dragdealer-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/ender-dragdealer/" + }, + "ender-fermata": { + "name": "ender-fermata", + "description": "ender-able fork of fermata: A succinct native REST client, for client-side web apps and node.js. Turns URLs into magic JavaScript objects.", + "dist-tags": { + "latest": "0.5.2" + }, + "maintainers": [ + { + "name": "skiqh", + "email": "julian.bee@gmail.com" + } + ], + "time": { + "modified": "2011-09-29T17:05:00.455Z", + "created": "2011-09-29T17:04:58.605Z", + "0.5.2": "2011-09-29T17:05:00.455Z" + }, + "author": { + "name": "&yet, LLC" + }, + "repository": { + "type": "git", + "url": "git://github.com/andyet/fermata.git" + }, + "versions": { + "0.5.2": "http://registry.npmjs.org/ender-fermata/0.5.2" + }, + "dist": { + "0.5.2": { + "shasum": "bf330cf54db45b68232b2578a7c4b6bde720b81d", + "tarball": "http://registry.npmjs.org/ender-fermata/-/ender-fermata-0.5.2.tgz" + } + }, + "url": "http://registry.npmjs.org/ender-fermata/" + }, + "ender-fittext": { + "name": "ender-fittext", + "description": "an Ender plugin for inflating web type", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "calvein", + "email": "calvein@gmail.com" + } + ], + "time": { + "modified": "2011-09-07T20:33:14.442Z", + "created": "2011-09-07T19:49:45.269Z", + "1.0.0": "2011-09-07T19:49:46.053Z", + "1.0.1": "2011-09-07T20:33:14.442Z" + }, + "author": { + "name": "François Robichet", + "email": "@calvein", + "url": "http://francois.robichet.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Calvein/ender-fitText.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/ender-fittext/1.0.0", + "1.0.1": "http://registry.npmjs.org/ender-fittext/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "e55cff489d8a1f7e14e6e366d3e4d4a860d21ab0", + "tarball": "http://registry.npmjs.org/ender-fittext/-/ender-fittext-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "a88d9139e76fca40ebd9a5ff695c1f9212ae48dd", + "tarball": "http://registry.npmjs.org/ender-fittext/-/ender-fittext-1.0.1.tgz" + } + }, + "keywords": [ + "ender", + "fittext", + "typography" + ], + "url": "http://registry.npmjs.org/ender-fittext/" + }, + "ender-flowplayer": { + "name": "ender-flowplayer", + "description": "Ender version of the flowplayer.org JS lib", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "jrainbow", + "email": "justin.rainbow@gmail.com" + } + ], + "time": { + "modified": "2011-09-21T18:42:37.401Z", + "created": "2011-09-21T18:42:36.374Z", + "0.1.0": "2011-09-21T18:42:37.401Z" + }, + "repository": { + "url": "git://github.com/sheknows/ender-flowplayer.git", + "type": "git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/ender-flowplayer/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "bdc65839a077afe23b65e7e0785592032a7d3ff0", + "tarball": "http://registry.npmjs.org/ender-flowplayer/-/ender-flowplayer-0.1.0.tgz" + } + }, + "keywords": [ + "flowplayer", + "ender", + "flowplayer api" + ], + "url": "http://registry.npmjs.org/ender-flowplayer/" + }, + "ender-js": { + "name": "ender-js", + "description": "no-library library", + "dist-tags": { + "latest": "0.3.6" + }, + "maintainers": [ + { + "name": "fat", + "email": "jacobthornton@gmail.com" + }, + { + "name": "ded", + "email": "polvero@gmail.com" + } + ], + "time": { + "modified": "2011-10-17T16:01:03.615Z", + "created": "2011-04-18T00:00:05.075Z", + "0.0.1": "2011-04-18T00:00:05.539Z", + "0.0.3": "2011-04-26T20:20:34.474Z", + "0.0.4": "2011-04-26T20:47:14.520Z", + "0.0.5": "2011-04-26T20:49:15.151Z", + "0.0.6": "2011-04-26T20:57:19.273Z", + "0.0.7": "2011-04-26T21:58:14.125Z", + "0.0.8": "2011-04-26T22:11:18.748Z", + "0.0.9": "2011-04-27T00:49:14.919Z", + "0.1.0": "2011-04-27T04:21:34.017Z", + "0.1.1": "2011-04-30T17:53:50.177Z", + "0.1.2": "2011-04-30T19:35:36.189Z", + "0.1.3": "2011-04-30T20:20:21.388Z", + "0.1.4": "2011-04-30T20:22:06.229Z", + "0.1.5": "2011-05-01T15:45:28.195Z", + "0.1.6": "2011-05-02T20:20:39.435Z", + "0.1.7": "2011-05-03T21:23:52.360Z", + "0.1.8": "2011-05-03T22:56:41.523Z", + "0.1.9": "2011-05-10T06:20:35.242Z", + "0.2.0": "2011-05-18T19:59:29.915Z", + "0.2.1": "2011-05-21T17:28:36.257Z", + "0.2.2": "2011-06-01T22:08:08.932Z", + "0.2.3": "2011-06-05T23:47:25.316Z", + "0.2.4": "2011-06-13T07:07:51.259Z", + "0.2.5": "2011-06-26T23:59:03.564Z", + "0.2.6": "2011-06-27T07:17:36.674Z", + "0.2.7": "2011-06-28T01:59:03.443Z", + "0.2.8": "2011-07-23T21:24:54.035Z", + "0.2.9": "2011-07-29T07:16:24.835Z", + "0.3.0": "2011-07-29T07:29:26.560Z", + "0.3.1": "2011-08-10T16:31:59.176Z", + "0.3.2": "2011-09-15T17:54:03.851Z", + "0.3.3": "2011-09-16T16:07:24.360Z", + "0.3.4": "2011-09-16T16:51:13.111Z", + "0.3.5": "2011-09-30T15:46:20.567Z", + "0.3.6": "2011-10-17T16:01:03.615Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ender-js/0.0.1", + "0.0.3": "http://registry.npmjs.org/ender-js/0.0.3", + "0.0.4": "http://registry.npmjs.org/ender-js/0.0.4", + "0.0.5": "http://registry.npmjs.org/ender-js/0.0.5", + "0.0.6": "http://registry.npmjs.org/ender-js/0.0.6", + "0.0.7": "http://registry.npmjs.org/ender-js/0.0.7", + "0.0.8": "http://registry.npmjs.org/ender-js/0.0.8", + "0.0.9": "http://registry.npmjs.org/ender-js/0.0.9", + "0.1.0": "http://registry.npmjs.org/ender-js/0.1.0", + "0.1.1": "http://registry.npmjs.org/ender-js/0.1.1", + "0.1.2": "http://registry.npmjs.org/ender-js/0.1.2", + "0.1.3": "http://registry.npmjs.org/ender-js/0.1.3", + "0.1.4": "http://registry.npmjs.org/ender-js/0.1.4", + "0.1.5": "http://registry.npmjs.org/ender-js/0.1.5", + "0.1.6": "http://registry.npmjs.org/ender-js/0.1.6", + "0.1.7": "http://registry.npmjs.org/ender-js/0.1.7", + "0.1.8": "http://registry.npmjs.org/ender-js/0.1.8", + "0.1.9": "http://registry.npmjs.org/ender-js/0.1.9", + "0.2.0": "http://registry.npmjs.org/ender-js/0.2.0", + "0.2.1": "http://registry.npmjs.org/ender-js/0.2.1", + "0.2.2": "http://registry.npmjs.org/ender-js/0.2.2", + "0.2.3": "http://registry.npmjs.org/ender-js/0.2.3", + "0.2.4": "http://registry.npmjs.org/ender-js/0.2.4", + "0.2.5": "http://registry.npmjs.org/ender-js/0.2.5", + "0.2.6": "http://registry.npmjs.org/ender-js/0.2.6", + "0.2.7": "http://registry.npmjs.org/ender-js/0.2.7", + "0.2.8": "http://registry.npmjs.org/ender-js/0.2.8", + "0.2.9": "http://registry.npmjs.org/ender-js/0.2.9", + "0.3.0": "http://registry.npmjs.org/ender-js/0.3.0", + "0.3.1": "http://registry.npmjs.org/ender-js/0.3.1", + "0.3.2": "http://registry.npmjs.org/ender-js/0.3.2", + "0.3.3": "http://registry.npmjs.org/ender-js/0.3.3", + "0.3.4": "http://registry.npmjs.org/ender-js/0.3.4", + "0.3.5": "http://registry.npmjs.org/ender-js/0.3.5", + "0.3.6": "http://registry.npmjs.org/ender-js/0.3.6" + }, + "dist": { + "0.0.1": { + "shasum": "d949e30d684d10fce6a9a74b572f76a6f755e44e", + "tarball": "http://registry.npmjs.org/ender-js/-/ender-js-0.0.1.tgz" + }, + "0.0.3": { + "shasum": "143905502ba0b82ea99156c745dfc1e3080184a3", + "tarball": "http://registry.npmjs.org/ender-js/-/ender-js-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "9aed3a43efd1cafadb318398e6af19f0f2db1b85", + "tarball": "http://registry.npmjs.org/ender-js/-/ender-js-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "79ee9c5e8799f165b7fa6fee7bec096132d3bce3", + "tarball": "http://registry.npmjs.org/ender-js/-/ender-js-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "0537273ef13fd23fd4357baf41beb714f45155ef", + "tarball": "http://registry.npmjs.org/ender-js/-/ender-js-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "3c369762b24f69a3198b4a5bf58d28207ceccfad", + "tarball": "http://registry.npmjs.org/ender-js/-/ender-js-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "832a0a775a9dbcbca5f0c1f287395c4c898edf09", + "tarball": "http://registry.npmjs.org/ender-js/-/ender-js-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "2e0ece10e762dbb829e72758badeab25b9d07803", + "tarball": "http://registry.npmjs.org/ender-js/-/ender-js-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "bfc05487a8278c41b604c43e36f176dfc898e578", + "tarball": "http://registry.npmjs.org/ender-js/-/ender-js-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "7b7f6335934f02ca10bac97a5451a9211c73f1b4", + "tarball": "http://registry.npmjs.org/ender-js/-/ender-js-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "0e0664450c19bd3b1e869c7d79fea9b367d149db", + "tarball": "http://registry.npmjs.org/ender-js/-/ender-js-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "fd0eb4b51e26638328a3a2c40d1762219d14fe5a", + "tarball": "http://registry.npmjs.org/ender-js/-/ender-js-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "9ef156712f3800c08ae37dd923bfcbc5cd038619", + "tarball": "http://registry.npmjs.org/ender-js/-/ender-js-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "fc5e4662a76e298b638a97c04b3ce2e7f07df099", + "tarball": "http://registry.npmjs.org/ender-js/-/ender-js-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "851858fd1470ba1402d2da027417c50277ff2aeb", + "tarball": "http://registry.npmjs.org/ender-js/-/ender-js-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "2d14415538059a11ced88642888216311768cd53", + "tarball": "http://registry.npmjs.org/ender-js/-/ender-js-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "2dc53e39456c4f5aedebc42ba311b9249157442c", + "tarball": "http://registry.npmjs.org/ender-js/-/ender-js-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "c6c7ff9e908625b9dd75d6714b638aa7113499fc", + "tarball": "http://registry.npmjs.org/ender-js/-/ender-js-0.1.9.tgz" + }, + "0.2.0": { + "shasum": "cfa8f13a360a267b00c5a0eda314c2a056bb0fcd", + "tarball": "http://registry.npmjs.org/ender-js/-/ender-js-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "63324db0e2b6bf29e80024987e023334f28a70e1", + "tarball": "http://registry.npmjs.org/ender-js/-/ender-js-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "fbc1537b4331d930efa94d410573511809299fb2", + "tarball": "http://registry.npmjs.org/ender-js/-/ender-js-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "fd471d9066085bbbb2f33f1ecdb79f9c8819ca71", + "tarball": "http://registry.npmjs.org/ender-js/-/ender-js-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "1c96acf763f96f72c18fe0ed031770724e3ee4d5", + "tarball": "http://registry.npmjs.org/ender-js/-/ender-js-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "c4d7f7d025400a371c990b246587a29d7f6cfee2", + "tarball": "http://registry.npmjs.org/ender-js/-/ender-js-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "573f6481691dae606e15e0ee21dd8c5933cacf84", + "tarball": "http://registry.npmjs.org/ender-js/-/ender-js-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "c63e4c3b87cbc4d4a0d938bbc135a85f019bc7de", + "tarball": "http://registry.npmjs.org/ender-js/-/ender-js-0.2.7.tgz" + }, + "0.2.8": { + "shasum": "770e4d286f02df45e0e8ae08f688cbbcb79baaec", + "tarball": "http://registry.npmjs.org/ender-js/-/ender-js-0.2.8.tgz" + }, + "0.2.9": { + "shasum": "02cd9b8f889f682aecd199f5e6477765b60db3bf", + "tarball": "http://registry.npmjs.org/ender-js/-/ender-js-0.2.9.tgz" + }, + "0.3.0": { + "shasum": "8e2957f5932ec92043d10578b0d55a4824feb0e9", + "tarball": "http://registry.npmjs.org/ender-js/-/ender-js-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "14bf61e7502b0409e3ef7bf0f51b789a851d4240", + "tarball": "http://registry.npmjs.org/ender-js/-/ender-js-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "c8d79b2a27018bd93aaed42fd85476ed3348ec64", + "tarball": "http://registry.npmjs.org/ender-js/-/ender-js-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "162904987004f8e9b2ad3cbcd0033673c19c6384", + "tarball": "http://registry.npmjs.org/ender-js/-/ender-js-0.3.3.tgz" + }, + "0.3.4": { + "shasum": "3bfd7ffaeaebb216a0420e6f9f65f6933f72abe5", + "tarball": "http://registry.npmjs.org/ender-js/-/ender-js-0.3.4.tgz" + }, + "0.3.5": { + "shasum": "22e9633cf6bb0028c5aa11f8f9d026a01a3bb015", + "tarball": "http://registry.npmjs.org/ender-js/-/ender-js-0.3.5.tgz" + }, + "0.3.6": { + "shasum": "b0d008458759713d0310d3395d7ac4ce9b86d01c", + "tarball": "http://registry.npmjs.org/ender-js/-/ender-js-0.3.6.tgz" + } + }, + "keywords": [ + "ender", + "modules", + "library", + "framework", + "packager" + ], + "url": "http://registry.npmjs.org/ender-js/" + }, + "ender-json": { + "name": "ender-json", + "description": "Light-weight, language independent, data interchange format", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "amccollum", + "email": "amccollum+npm@gmail.com" + } + ], + "time": { + "modified": "2011-09-06T16:15:08.286Z", + "created": "2011-09-06T16:15:07.860Z", + "1.0.0": "2011-09-06T16:15:08.287Z" + }, + "author": { + "name": "Douglas Crockford", + "email": "douglas@crockford.com" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/ender-json/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "1d5587f496519f4ace1e7cc1e6cbc4f210261692", + "tarball": "http://registry.npmjs.org/ender-json/-/ender-json-1.0.0.tgz" + } + }, + "keywords": [ + "ender", + "json" + ], + "url": "http://registry.npmjs.org/ender-json/" + }, + "ender-lettering": { + "name": "ender-lettering", + "description": "an Ender plugin for radical web typography", + "dist-tags": { + "latest": "1.0.2" + }, + "maintainers": [ + { + "name": "calvein", + "email": "calvein@gmail.com" + } + ], + "time": { + "modified": "2011-11-05T14:42:31.558Z", + "created": "2011-09-07T21:03:52.725Z", + "1.0.0": "2011-09-07T21:03:54.506Z", + "1.0.1": "2011-11-05T14:27:52.537Z", + "1.0.2": "2011-11-05T14:42:31.558Z" + }, + "author": { + "name": "François Robichet", + "email": "@calvein", + "url": "http://francois.robichet.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Calvein/ender-lettering.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/ender-lettering/1.0.0", + "1.0.1": "http://registry.npmjs.org/ender-lettering/1.0.1", + "1.0.2": "http://registry.npmjs.org/ender-lettering/1.0.2" + }, + "dist": { + "1.0.0": { + "shasum": "db8234a6bf030afa815e771f48d480ad65b2d7b9", + "tarball": "http://registry.npmjs.org/ender-lettering/-/ender-lettering-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "4a93d2c5e2a36d9d5fc9ddc3176e54320a101160", + "tarball": "http://registry.npmjs.org/ender-lettering/-/ender-lettering-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "b3e8f3350ec4d78f200e1ab77863f7aa3734a138", + "tarball": "http://registry.npmjs.org/ender-lettering/-/ender-lettering-1.0.2.tgz" + } + }, + "keywords": [ + "ender", + "lettering", + "typography" + ], + "url": "http://registry.npmjs.org/ender-lettering/" + }, + "ender-modules": { + "name": "ender-modules", + "description": "no-library library", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "fat", + "email": "jacobthornton@gmail.com" + } + ], + "time": { + "modified": "2011-06-19T04:40:11.447Z", + "created": "2011-05-19T05:21:45.853Z", + "0.0.1": "2011-05-19T05:21:46.408Z", + "0.0.2": "2011-06-19T04:40:11.447Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ender-modules/0.0.1", + "0.0.2": "http://registry.npmjs.org/ender-modules/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "8ddd10e90a00b85251ccb028548bf1a742e59bef", + "tarball": "http://registry.npmjs.org/ender-modules/-/ender-modules-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "0c8b94936bd827cc6058adbd1dd00eceba44612d", + "tarball": "http://registry.npmjs.org/ender-modules/-/ender-modules-0.0.2.tgz" + } + }, + "keywords": [ + "ender", + "modules", + "library", + "framework", + "packager" + ], + "url": "http://registry.npmjs.org/ender-modules/" + }, + "ender-overlay": { + "name": "ender-overlay", + "description": "Highly customizable overlay for Ender", + "dist-tags": { + "latest": "0.0.6" + }, + "readme": "# ender-overlay\n\nEnder-overlay is a highly configurable overlay plugin for [Ender](http://ender.no.de).\nIt requires [Jeesh](https://github.com/ender-js/jeesh) and [Morpheus](https://github.com/ded/morpheus) for animations.\nEven though, you can leave Morpheus out if you are fine without animations. You can easily build your \nown gallery or other overlay based logic on the top of this plugin. \n\n**Currently it's in a pre-alpha state, please do not use it in a production environment!**\nCheck back for stable builds. Currently it's tested in Chrome, Firefox, Safari and Opera. \nI'm going to add IE7+ support soon.\n\nMore information, documentation, demos: [http://nemeseri.com/ender-overlay/](http://nemeseri.com/ender-overlay/)", + "maintainers": [ + { + "name": "nemeseri", + "email": "andras@nemeseri.com" + } + ], + "time": { + "modified": "2011-11-16T12:32:32.202Z", + "created": "2011-11-14T09:40:32.031Z", + "0.0.1": "2011-11-14T09:40:34.080Z", + "0.0.2": "2011-11-14T09:49:11.387Z", + "0.0.3": "2011-11-14T21:26:25.071Z", + "0.0.4": "2011-11-14T23:20:22.588Z", + "0.0.5": "2011-11-16T06:56:25.049Z", + "0.0.6": "2011-11-16T12:32:32.202Z" + }, + "author": { + "name": "Andras Nemeseri", + "email": "andras@nemeseri.com", + "url": "http://nemeseri.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/nemeseri/ender-overlay.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ender-overlay/0.0.1", + "0.0.2": "http://registry.npmjs.org/ender-overlay/0.0.2", + "0.0.3": "http://registry.npmjs.org/ender-overlay/0.0.3", + "0.0.4": "http://registry.npmjs.org/ender-overlay/0.0.4", + "0.0.5": "http://registry.npmjs.org/ender-overlay/0.0.5", + "0.0.6": "http://registry.npmjs.org/ender-overlay/0.0.6" + }, + "dist": { + "0.0.1": { + "shasum": "e65b7acd37c980348d40f522995f088166890b42", + "tarball": "http://registry.npmjs.org/ender-overlay/-/ender-overlay-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "71a1eb5790867a72d951c98552a62ed94f43d256", + "tarball": "http://registry.npmjs.org/ender-overlay/-/ender-overlay-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "2727c6b46714f606fd3db6b1545abdbbbbee043e", + "tarball": "http://registry.npmjs.org/ender-overlay/-/ender-overlay-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "3d407bb630c3e02ec7577586e9ba840dbd06bcd0", + "tarball": "http://registry.npmjs.org/ender-overlay/-/ender-overlay-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "f6aad4ddf652ecf04e80e50c0830b6c978ec248d", + "tarball": "http://registry.npmjs.org/ender-overlay/-/ender-overlay-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "903c038bc476d06a79d55fe5757bc4bde27f9a1e", + "tarball": "http://registry.npmjs.org/ender-overlay/-/ender-overlay-0.0.6.tgz" + } + }, + "keywords": [ + "ender", + "overlay", + "ui", + "lightbox", + "fancybox", + "modal" + ], + "url": "http://registry.npmjs.org/ender-overlay/" + }, + "ender-poke": { + "name": "ender-poke", + "description": "An Ender module for handling swipe gestures on mobile devices", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "paulstraw", + "email": "paulstraw@paulstraw.com" + } + ], + "time": { + "modified": "2011-09-07T07:18:04.515Z", + "created": "2011-09-04T22:13:52.011Z", + "0.0.1": "2011-09-04T22:14:02.783Z", + "0.1.1": "2011-09-07T07:18:04.515Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/paulstraw/ender-poke.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ender-poke/0.0.1", + "0.1.1": "http://registry.npmjs.org/ender-poke/0.1.1" + }, + "dist": { + "0.0.1": { + "shasum": "c140c9eacba246c65aa2e600f0e18bfa489ef9eb", + "tarball": "http://registry.npmjs.org/ender-poke/-/ender-poke-0.0.1.tgz" + }, + "0.1.1": { + "shasum": "1dce5bef0acd5e80c02168bafc3eb1fcb7bcab40", + "tarball": "http://registry.npmjs.org/ender-poke/-/ender-poke-0.1.1.tgz" + } + }, + "keywords": [ + "ender", + "touch", + "mobile" + ], + "url": "http://registry.npmjs.org/ender-poke/" + }, + "ender-sc": { + "name": "ender-sc", + "description": "The most essential Ender packages served as a single node package", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "akovalev", + "email": "alexander.kovaleff@gmail.com" + } + ], + "time": { + "modified": "2011-10-06T14:26:42.899Z", + "created": "2011-10-05T14:34:10.884Z", + "0.0.1": "2011-10-05T14:34:12.324Z", + "0.0.2": "2011-10-05T15:08:27.558Z", + "0.0.3": "2011-10-06T14:26:42.899Z" + }, + "author": { + "name": "Alexander Kovalev", + "email": "alexander.kovaleff@gmail.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:akovalev/ender-sc.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ender-sc/0.0.1", + "0.0.2": "http://registry.npmjs.org/ender-sc/0.0.2", + "0.0.3": "http://registry.npmjs.org/ender-sc/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "070e9ce248dc338ac0f1ac230071175ba341c6c1", + "tarball": "http://registry.npmjs.org/ender-sc/-/ender-sc-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f7ebe96403982cebac40b463c968f1aa0d82a94a", + "tarball": "http://registry.npmjs.org/ender-sc/-/ender-sc-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "31c7bca527fb1064e3a0a0fe8be0042346eb1c34", + "tarball": "http://registry.npmjs.org/ender-sc/-/ender-sc-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/ender-sc/" + }, + "ender-test": { + "name": "ender-test", + "description": "a thing that sets color on elements", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "ded", + "email": "polvero@gmail.com" + } + ], + "time": { + "modified": "2011-05-27T01:05:53.159Z", + "created": "2011-05-27T00:54:18.685Z", + "1.0.0": "2011-05-27T00:54:19.290Z", + "1.0.1": "2011-05-27T01:05:53.159Z" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/ender-test/1.0.0", + "1.0.1": "http://registry.npmjs.org/ender-test/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "777e24d9239bb99fc97674e60fb540ef4b7794d5", + "tarball": "http://registry.npmjs.org/ender-test/-/ender-test-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "c4b180b1a28332ecc5631ed6f11d8e8dc3cee8ff", + "tarball": "http://registry.npmjs.org/ender-test/-/ender-test-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/ender-test/" + }, + "ender-tipsy": { + "name": "ender-tipsy", + "description": "Tipsy for Ender", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "ded", + "email": "polvero@gmail.com" + }, + { + "name": "ds", + "email": "dustin@dustinsenos.com" + } + ], + "time": { + "modified": "2011-11-16T18:36:33.690Z", + "created": "2011-05-16T23:10:56.064Z", + "0.0.1": "2011-05-16T23:10:56.726Z", + "0.0.2": "2011-08-02T04:37:41.701Z", + "0.0.3": "2011-11-16T18:36:33.690Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ender-tipsy/0.0.1", + "0.0.2": "http://registry.npmjs.org/ender-tipsy/0.0.2", + "0.0.3": "http://registry.npmjs.org/ender-tipsy/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "42e17e6ee624c1fe52a433a42a71ae9645174089", + "tarball": "http://registry.npmjs.org/ender-tipsy/-/ender-tipsy-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "b500f1c40a5ca4deeae58ca8e3b819dd2edd7cef", + "tarball": "http://registry.npmjs.org/ender-tipsy/-/ender-tipsy-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "6a0187d531765145465e7ffc7f36925170323442", + "tarball": "http://registry.npmjs.org/ender-tipsy/-/ender-tipsy-0.0.3.tgz" + } + }, + "keywords": [ + "ender", + "tipsy", + "ui", + "tooltip" + ], + "url": "http://registry.npmjs.org/ender-tipsy/" + }, + "ender-tween": { + "name": "ender-tween", + "description": "Generic Timing Tweener with Easing support", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "ded", + "email": "polvero@gmail.com" + } + ], + "time": { + "modified": "2011-05-17T22:47:47.396Z", + "created": "2011-05-16T04:20:13.114Z", + "0.0.1": "2011-05-16T04:20:13.655Z", + "0.0.2": "2011-05-16T06:01:25.239Z", + "0.0.3": "2011-05-16T06:05:48.126Z", + "0.0.4": "2011-05-16T06:08:30.325Z", + "0.0.5": "2011-05-16T20:00:25.741Z", + "0.0.6": "2011-05-17T22:47:47.396Z" + }, + "author": { + "name": "Dustin Diaz", + "email": "@ded" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ender-tween/0.0.1", + "0.0.2": "http://registry.npmjs.org/ender-tween/0.0.2", + "0.0.3": "http://registry.npmjs.org/ender-tween/0.0.3", + "0.0.4": "http://registry.npmjs.org/ender-tween/0.0.4", + "0.0.5": "http://registry.npmjs.org/ender-tween/0.0.5", + "0.0.6": "http://registry.npmjs.org/ender-tween/0.0.6" + }, + "dist": { + "0.0.1": { + "shasum": "c32fe1bcf3b5c0a5239533ff977d79a29e39c502", + "tarball": "http://registry.npmjs.org/ender-tween/-/ender-tween-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "5a6d61fd4eaa9e325856bab8029e8f880b190211", + "tarball": "http://registry.npmjs.org/ender-tween/-/ender-tween-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "917d4fd3052f75fd28c281e46171bf90f37ba17e", + "tarball": "http://registry.npmjs.org/ender-tween/-/ender-tween-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "dd9ecf74c2392f9b891ec6087c27ea40f172fc79", + "tarball": "http://registry.npmjs.org/ender-tween/-/ender-tween-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "bfba3ed1934f600987c173fe8007d743361ae3f1", + "tarball": "http://registry.npmjs.org/ender-tween/-/ender-tween-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "8b0404c0886bea635768f6b621a6235c078df053", + "tarball": "http://registry.npmjs.org/ender-tween/-/ender-tween-0.0.6.tgz" + } + }, + "keywords": [ + "ender", + "tween", + "animation", + "easing" + ], + "url": "http://registry.npmjs.org/ender-tween/" + }, + "ender-twitter-bootstrap": { + "name": "ender-twitter-bootstrap", + "description": "*Unofficial* jQuery-less Ender port of Twitter's Bootstrap JS - original by @fat & @mdo", + "dist-tags": { + "latest": "1.4.1" + }, + "maintainers": [ + { + "name": "rvagg", + "email": "rod@vagg.org" + } + ], + "time": { + "modified": "2011-11-22T02:02:54.746Z", + "created": "2011-09-29T10:50:25.733Z", + "1.0.0": "2011-09-29T10:50:29.555Z", + "1.0.1": "2011-09-29T10:57:18.832Z", + "1.0.2": "2011-11-21T01:24:13.285Z", + "1.3.9": "2011-11-21T10:19:34.737Z", + "1.4.0": "2011-11-21T10:42:29.336Z", + "1.4.1": "2011-11-22T02:02:54.746Z" + }, + "author": { + "name": "Rod Vagg" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/ender-twitter-bootstrap/1.0.0", + "1.0.1": "http://registry.npmjs.org/ender-twitter-bootstrap/1.0.1", + "1.0.2": "http://registry.npmjs.org/ender-twitter-bootstrap/1.0.2", + "1.3.9": "http://registry.npmjs.org/ender-twitter-bootstrap/1.3.9", + "1.4.0": "http://registry.npmjs.org/ender-twitter-bootstrap/1.4.0", + "1.4.1": "http://registry.npmjs.org/ender-twitter-bootstrap/1.4.1" + }, + "dist": { + "1.0.0": { + "shasum": "557788c67572ce0b7f54855d0cebcb18a5fb952c", + "tarball": "http://registry.npmjs.org/ender-twitter-bootstrap/-/ender-twitter-bootstrap-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "062e8e098070bb64c87725af6d22270728c90312", + "tarball": "http://registry.npmjs.org/ender-twitter-bootstrap/-/ender-twitter-bootstrap-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "629ef923c25ab6cfd168c028cc497559bd2c1bdc", + "tarball": "http://registry.npmjs.org/ender-twitter-bootstrap/-/ender-twitter-bootstrap-1.0.2.tgz" + }, + "1.3.9": { + "shasum": "4422cd4dd8c146818f2b0ecd971a8a541033ef36", + "tarball": "http://registry.npmjs.org/ender-twitter-bootstrap/-/ender-twitter-bootstrap-1.3.9.tgz" + }, + "1.4.0": { + "shasum": "b8ec7eda128b7e17d22e04bebeaad49b00cde38a", + "tarball": "http://registry.npmjs.org/ender-twitter-bootstrap/-/ender-twitter-bootstrap-1.4.0.tgz" + }, + "1.4.1": { + "shasum": "5b26963067c991850816d5c8a778a11053adf8ee", + "tarball": "http://registry.npmjs.org/ender-twitter-bootstrap/-/ender-twitter-bootstrap-1.4.1.tgz" + } + }, + "keywords": [ + "twitter", + "bootstrap", + "ender" + ], + "url": "http://registry.npmjs.org/ender-twitter-bootstrap/" + }, + "ender-vows": { + "name": "ender-vows", + "description": "Asynchronous BDD & continuous integration for node.js and the browser", + "dist-tags": { + "latest": "0.6.3" + }, + "maintainers": [ + { + "name": "amccollum", + "email": "amccollum+npm@gmail.com" + } + ], + "time": { + "modified": "2011-12-10T22:09:44.427Z", + "created": "2011-09-16T22:21:09.397Z", + "0.5.0": "2011-12-07T00:03:44.938Z", + "0.6.0": "2011-12-07T00:03:44.938Z", + "0.6.1": "2011-11-19T18:52:04.015Z", + "0.6.2": "2011-12-07T00:03:44.938Z", + "0.6.3": "2011-12-10T22:09:44.427Z" + }, + "author": { + "name": "Andrew McCollum", + "email": "amccollum@gmail.com" + }, + "versions": { + "0.5.0": "http://registry.npmjs.org/ender-vows/0.5.0", + "0.6.0": "http://registry.npmjs.org/ender-vows/0.6.0", + "0.6.1": "http://registry.npmjs.org/ender-vows/0.6.1", + "0.6.2": "http://registry.npmjs.org/ender-vows/0.6.2", + "0.6.3": "http://registry.npmjs.org/ender-vows/0.6.3" + }, + "dist": { + "0.5.0": { + "shasum": "ce4cd782fde54ebd515fe183643baa0dd8b2dce5", + "tarball": "http://registry.npmjs.org/ender-vows/-/ender-vows-0.5.0.tgz" + }, + "0.6.0": { + "shasum": "fdc0a121cac02b0a63c1eebc4f397eaf6d4254f3", + "tarball": "http://registry.npmjs.org/ender-vows/-/ender-vows-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "9e87c9aad54f2dea800e9f609d17e547d96b09d5", + "tarball": "http://registry.npmjs.org/ender-vows/-/ender-vows-0.6.1.tgz" + }, + "0.6.2": { + "shasum": "2d646f9006ffe131ce8531bcaf0533c4b329e40b", + "tarball": "http://registry.npmjs.org/ender-vows/-/ender-vows-0.6.2.tgz" + }, + "0.6.3": { + "shasum": "54037d8bd98ef883be616e58698d61a2500ced66", + "tarball": "http://registry.npmjs.org/ender-vows/-/ender-vows-0.6.3.tgz" + } + }, + "url": "http://registry.npmjs.org/ender-vows/" + }, + "ender-wallet": { + "name": "ender-wallet", + "description": "see what's inside your ender $", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "stenson", + "email": "rob.stenson@gmail.com" + } + ], + "time": { + "modified": "2011-07-03T06:49:01.644Z", + "created": "2011-04-30T00:30:17.412Z", + "0.0.1": "2011-04-30T00:30:17.817Z", + "0.0.2": "2011-04-30T23:41:56.055Z", + "0.0.3": "2011-05-01T02:45:14.757Z", + "0.0.4": "2011-05-01T22:18:23.669Z", + "0.0.5": "2011-05-03T23:33:00.821Z", + "0.0.6": "2011-05-04T19:30:49.334Z", + "0.0.7": "2011-05-10T21:43:04.187Z", + "0.0.8": "2011-05-13T17:41:50.523Z", + "0.0.9": "2011-05-16T22:30:17.816Z", + "0.1.0": "2011-07-03T06:49:01.644Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ender-wallet/0.0.1", + "0.0.2": "http://registry.npmjs.org/ender-wallet/0.0.2", + "0.0.3": "http://registry.npmjs.org/ender-wallet/0.0.3", + "0.0.4": "http://registry.npmjs.org/ender-wallet/0.0.4", + "0.0.5": "http://registry.npmjs.org/ender-wallet/0.0.5", + "0.0.6": "http://registry.npmjs.org/ender-wallet/0.0.6", + "0.0.7": "http://registry.npmjs.org/ender-wallet/0.0.7", + "0.0.8": "http://registry.npmjs.org/ender-wallet/0.0.8", + "0.0.9": "http://registry.npmjs.org/ender-wallet/0.0.9", + "0.1.0": "http://registry.npmjs.org/ender-wallet/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "b345bb8a4f443f7eb18512bf1a830d09175c9d4e", + "tarball": "http://registry.npmjs.org/ender-wallet/-/ender-wallet-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "5428a06040c116b579a11d23bb69ad36380c1f6c", + "tarball": "http://registry.npmjs.org/ender-wallet/-/ender-wallet-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "a82b8c8686ddad4b75bccbd21a4f428cd8d85e88", + "tarball": "http://registry.npmjs.org/ender-wallet/-/ender-wallet-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "bcdb256ad0a22087fcb67b0ee8aee244c723b217", + "tarball": "http://registry.npmjs.org/ender-wallet/-/ender-wallet-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "cb907fb23580f5c23e7b5cb3781e971125607461", + "tarball": "http://registry.npmjs.org/ender-wallet/-/ender-wallet-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "9a4fcbbee1bdf8e0a9e695e8850605f881b4568a", + "tarball": "http://registry.npmjs.org/ender-wallet/-/ender-wallet-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "0714b737fadb8ffaa7d272fea50ddfcbe4c9bfd8", + "tarball": "http://registry.npmjs.org/ender-wallet/-/ender-wallet-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "9f1f40e665079e56e2d256034a1f5d968716b559", + "tarball": "http://registry.npmjs.org/ender-wallet/-/ender-wallet-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "cb38e289247b3064f8c6510abf1cc33e44f25938", + "tarball": "http://registry.npmjs.org/ender-wallet/-/ender-wallet-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "56571f28c9096d6c8eedfe874e719378d7cab511", + "tarball": "http://registry.npmjs.org/ender-wallet/-/ender-wallet-0.1.0.tgz" + } + }, + "keywords": [ + "ender", + "api", + "visual", + "app" + ], + "url": "http://registry.npmjs.org/ender-wallet/" + }, + "endtable": { + "name": "endtable", + "description": "An experimental ORM for CouchDB.", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "bcoe", + "email": "bencoe@gmail.com" + } + ], + "author": { + "name": "Ben Coe", + "email": "bencoe@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/bcoe/endtable.git" + }, + "time": { + "modified": "2011-12-11T05:14:17.253Z", + "created": "2011-09-07T23:29:18.532Z", + "0.0.1": "2011-09-07T23:29:18.532Z", + "0.0.2": "2011-09-07T23:29:18.532Z", + "0.0.3": "2011-09-07T23:29:18.532Z", + "0.0.4": "2011-09-07T23:29:18.532Z", + "0.0.5": "2011-09-07T23:29:18.532Z", + "0.0.6": "2011-09-07T23:29:18.532Z", + "0.0.7": "2011-09-07T23:29:18.532Z", + "0.1.0": "2011-09-07T23:29:18.532Z", + "0.1.1": "2011-09-07T23:29:18.532Z", + "0.1.3": "2011-09-07T23:29:18.532Z", + "0.1.4": "2011-09-07T23:29:18.532Z", + "0.1.5": "2011-09-07T23:29:18.532Z", + "0.1.6": "2011-09-07T23:29:18.532Z", + "0.2.0": "2011-09-07T23:29:18.532Z", + "0.2.1": "2011-09-07T23:29:18.532Z", + "0.2.2": "2011-09-07T23:29:18.532Z", + "1.0.0": "2011-12-11T05:14:17.253Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/endtable/0.0.1", + "0.0.2": "http://registry.npmjs.org/endtable/0.0.2", + "0.0.3": "http://registry.npmjs.org/endtable/0.0.3", + "0.0.4": "http://registry.npmjs.org/endtable/0.0.4", + "0.0.5": "http://registry.npmjs.org/endtable/0.0.5", + "0.0.6": "http://registry.npmjs.org/endtable/0.0.6", + "0.0.7": "http://registry.npmjs.org/endtable/0.0.7", + "0.1.0": "http://registry.npmjs.org/endtable/0.1.0", + "0.1.1": "http://registry.npmjs.org/endtable/0.1.1", + "0.1.3": "http://registry.npmjs.org/endtable/0.1.3", + "0.1.4": "http://registry.npmjs.org/endtable/0.1.4", + "0.1.5": "http://registry.npmjs.org/endtable/0.1.5", + "0.1.6": "http://registry.npmjs.org/endtable/0.1.6", + "0.2.0": "http://registry.npmjs.org/endtable/0.2.0", + "0.2.1": "http://registry.npmjs.org/endtable/0.2.1", + "0.2.2": "http://registry.npmjs.org/endtable/0.2.2", + "1.0.0": "http://registry.npmjs.org/endtable/1.0.0" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/endtable/-/endtable-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/endtable/-/endtable-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/endtable/-/endtable-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://registry.npmjs.org/endtable/-/endtable-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://registry.npmjs.org/endtable/-/endtable-0.0.5.tgz" + }, + "0.0.6": { + "tarball": "http://registry.npmjs.org/endtable/-/endtable-0.0.6.tgz" + }, + "0.0.7": { + "tarball": "http://registry.npmjs.org/endtable/-/endtable-0.0.7.tgz" + }, + "0.1.0": { + "tarball": "http://registry.npmjs.org/endtable/-/endtable-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://registry.npmjs.org/endtable/-/endtable-0.1.1.tgz" + }, + "0.1.3": { + "tarball": "http://registry.npmjs.org/endtable/-/endtable-0.1.3.tgz" + }, + "0.1.4": { + "tarball": "http://registry.npmjs.org/endtable/-/endtable-0.1.4.tgz" + }, + "0.1.5": { + "tarball": "http://registry.npmjs.org/endtable/-/endtable-0.1.5.tgz" + }, + "0.1.6": { + "tarball": "http://registry.npmjs.org/endtable/-/endtable-0.1.6.tgz" + }, + "0.2.0": { + "tarball": "http://registry.npmjs.org/endtable/-/endtable-0.2.0.tgz" + }, + "0.2.1": { + "tarball": "http://registry.npmjs.org/endtable/-/endtable-0.2.1.tgz" + }, + "0.2.2": { + "tarball": "http://registry.npmjs.org/endtable/-/endtable-0.2.2.tgz" + }, + "1.0.0": { + "shasum": "e308c3871eb39d6e5834bcc66683990523cbb2b2", + "tarball": "http://registry.npmjs.org/endtable/-/endtable-1.0.0.tgz" + } + }, + "keywords": [ + "couch", + "couchdb", + "orm" + ], + "url": "http://registry.npmjs.org/endtable/" + }, + "engine": { + "name": "engine", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": null, + "maintainers": [ + { + "name": "rauchg", + "email": "rauchg@gmail.com" + } + ], + "time": { + "modified": "2011-11-12T06:33:52.803Z", + "created": "2011-11-12T06:33:51.696Z", + "0.0.1": "2011-11-12T06:33:52.803Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/engine/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "a1a540393acc33a076e5ec47e4553e4bb5a62f64", + "tarball": "http://registry.npmjs.org/engine/-/engine-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/engine/" + }, + "engine.js": { + "name": "engine.js", + "description": "A scriptable task engine", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "rehanift", + "email": "rehan.iftikhar@gmail.com" + } + ], + "time": { + "modified": "2011-12-11T20:11:03.193Z", + "created": "2011-11-07T03:28:37.375Z", + "0.0.1": "2011-11-07T03:28:38.611Z", + "0.1.1": "2011-12-07T14:48:11.528Z", + "0.1.3": "2011-12-11T20:11:03.193Z" + }, + "author": { + "name": "Rehan Iftikhar", + "email": "rehan.iftikhar@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/rehanift/engine.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/engine.js/0.0.1", + "0.1.1": "http://registry.npmjs.org/engine.js/0.1.1", + "0.1.3": "http://registry.npmjs.org/engine.js/0.1.3" + }, + "dist": { + "0.0.1": { + "shasum": "0a142f9f7fa515a0051a7736690885461cf814fd", + "tarball": "http://registry.npmjs.org/engine.js/-/engine.js-0.0.1.tgz" + }, + "0.1.1": { + "shasum": "69f301de90ee4df0ba30356e9f33abf6e675054d", + "tarball": "http://registry.npmjs.org/engine.js/-/engine.js-0.1.1.tgz" + }, + "0.1.3": { + "shasum": "90b775a0cf4deb12fbac08caed3c184ffd9b95ab", + "tarball": "http://registry.npmjs.org/engine.js/-/engine.js-0.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/engine.js/" + }, + "enhance-css": { + "name": "enhance-css", + "description": "A well-tested CSS enhancer (Base64, assets hosts, cache boosters, etc)", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "goalsmashers", + "email": "jakub@goalsmashers.com" + } + ], + "time": { + "modified": "2011-09-25T19:13:02.808Z", + "created": "2011-03-20T19:26:40.301Z", + "0.1.0": "2011-03-20T19:26:41.045Z", + "0.2.0": "2011-04-03T15:56:55.602Z", + "0.2.1": "2011-04-07T15:39:47.217Z", + "0.2.2": "2011-09-25T19:13:02.808Z" + }, + "author": { + "name": "Jakub Pawlowicz", + "email": "jakub@goalsmashers.com", + "url": "http://twitter.com/GoalSmashers" + }, + "repository": { + "type": "git", + "url": "git://github.com/GoalSmashers/enhance-css.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/enhance-css/0.1.0", + "0.2.0": "http://registry.npmjs.org/enhance-css/0.2.0", + "0.2.1": "http://registry.npmjs.org/enhance-css/0.2.1", + "0.2.2": "http://registry.npmjs.org/enhance-css/0.2.2" + }, + "dist": { + "0.1.0": { + "shasum": "9c0091ab7c8e51fbab9a2fcdaa3e354b56efb5da", + "tarball": "http://registry.npmjs.org/enhance-css/-/enhance-css-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "2f457103d45dabbd9e6fef80552581e06befa2e0", + "tarball": "http://registry.npmjs.org/enhance-css/-/enhance-css-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "e072aefcd58425c8ae91e3642e77b47351a629a7", + "tarball": "http://registry.npmjs.org/enhance-css/-/enhance-css-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "54bb29dce444e40aa678572b2259ee12e4b654e7", + "tarball": "http://registry.npmjs.org/enhance-css/-/enhance-css-0.2.2.tgz" + } + }, + "keywords": [ + "css", + "enhance", + "base64", + "assets", + "asset hosts" + ], + "url": "http://registry.npmjs.org/enhance-css/" + }, + "enki": { + "name": "enki", + "description": "Enki - a content management system", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": null, + "maintainers": [ + { + "name": "sh1mmer", + "email": "tom.croucher@gmail.com" + } + ], + "time": { + "modified": "2011-11-29T00:52:38.401Z", + "created": "2011-11-29T00:52:37.037Z", + "0.0.1": "2011-11-29T00:52:38.401Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/enki/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "317521e445e9ec25d3f796961a2862a2e08fb0f3", + "tarball": "http://registry.npmjs.org/enki/-/enki-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/enki/" + }, + "enqjs": { + "name": "enqjs", + "description": "Javascript asynchronous code made easy", + "dist-tags": { + "latest": "0.9.4" + }, + "maintainers": [ + { + "name": "thadeudepaula", + "email": "me@thadeudepaula.net" + } + ], + "time": { + "modified": "2011-10-09T21:21:04.752Z", + "created": "2011-10-09T04:17:09.133Z", + "0.9.3": "2011-10-09T04:17:10.267Z", + "0.9.4": "2011-10-09T21:21:04.752Z" + }, + "author": { + "name": "Thadeu de Paula", + "email": "me@thadeudepaula.net", + "url": "http://thadeudepaula.net/" + }, + "repository": { + "type": "git", + "url": "http://github.com/thadeudepaula/enqjs.git" + }, + "versions": { + "0.9.3": "http://registry.npmjs.org/enqjs/0.9.3", + "0.9.4": "http://registry.npmjs.org/enqjs/0.9.4" + }, + "dist": { + "0.9.3": { + "shasum": "ab9278be3547ab3ba1a2a1a9b64b8b0050a542f0", + "tarball": "http://registry.npmjs.org/enqjs/-/enqjs-0.9.3.tgz" + }, + "0.9.4": { + "shasum": "5aae9ac50ea3b7b2619992ac4b809f205cfba67a", + "tarball": "http://registry.npmjs.org/enqjs/-/enqjs-0.9.4.tgz" + } + }, + "url": "http://registry.npmjs.org/enqjs/" + }, + "ensure": { + "name": "ensure", + "description": "node.js testing made easy", + "dist-tags": { + "latest": "0.4.6" + }, + "maintainers": [ + { + "name": "dscape", + "email": "nunojobpinto@gmail.com" + } + ], + "time": { + "modified": "2011-11-09T02:23:54.612Z", + "created": "2011-08-31T15:52:16.912Z", + "0.0.1": "2011-08-31T15:52:17.852Z", + "0.0.2": "2011-08-31T16:43:01.880Z", + "0.0.3": "2011-08-31T18:11:29.453Z", + "0.1.0": "2011-09-06T16:31:22.660Z", + "0.1.1": "2011-09-09T18:34:26.262Z", + "0.2.1": "2011-09-09T19:08:14.913Z", + "0.2.2": "2011-09-09T23:56:30.304Z", + "0.3.0": "2011-09-10T01:06:44.269Z", + "0.4.1": "2011-09-21T09:06:50.413Z", + "0.4.2": "2011-09-21T09:14:05.519Z", + "0.4.3": "2011-09-21T09:18:23.269Z", + "0.4.4": "2011-09-21T09:24:24.678Z", + "0.4.5": "2011-09-21T09:50:28.016Z", + "0.4.6": "2011-11-09T02:23:54.612Z" + }, + "author": { + "name": "Nuno Job", + "email": "nunojobpinto@gmail.com", + "url": "http://nunojob.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dscape/ensure.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ensure/0.0.1", + "0.0.2": "http://registry.npmjs.org/ensure/0.0.2", + "0.0.3": "http://registry.npmjs.org/ensure/0.0.3", + "0.1.0": "http://registry.npmjs.org/ensure/0.1.0", + "0.1.1": "http://registry.npmjs.org/ensure/0.1.1", + "0.2.1": "http://registry.npmjs.org/ensure/0.2.1", + "0.2.2": "http://registry.npmjs.org/ensure/0.2.2", + "0.3.0": "http://registry.npmjs.org/ensure/0.3.0", + "0.4.1": "http://registry.npmjs.org/ensure/0.4.1", + "0.4.2": "http://registry.npmjs.org/ensure/0.4.2", + "0.4.3": "http://registry.npmjs.org/ensure/0.4.3", + "0.4.4": "http://registry.npmjs.org/ensure/0.4.4", + "0.4.5": "http://registry.npmjs.org/ensure/0.4.5", + "0.4.6": "http://registry.npmjs.org/ensure/0.4.6" + }, + "dist": { + "0.0.1": { + "shasum": "fce858c224c336bd8161b2e11a18edb53241c1d7", + "tarball": "http://registry.npmjs.org/ensure/-/ensure-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "496a1924dac6739e21173ade50dfdb40eadb8d52", + "tarball": "http://registry.npmjs.org/ensure/-/ensure-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "cca040bcb84e705896281a63534a2e043f62907d", + "tarball": "http://registry.npmjs.org/ensure/-/ensure-0.0.3.tgz" + }, + "0.1.0": { + "shasum": "3c6bbceb222686d4d322ca125f705efc246fbe11", + "tarball": "http://registry.npmjs.org/ensure/-/ensure-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "c7c7ffb5faa71dae4a31f3871f2bcfb68100184b", + "tarball": "http://registry.npmjs.org/ensure/-/ensure-0.1.1.tgz" + }, + "0.2.1": { + "shasum": "c90cef7a1e68d1e0dabd90be61337d600e96537f", + "tarball": "http://registry.npmjs.org/ensure/-/ensure-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "24aaf300d44db3003f94fb10e904c748bffacd16", + "tarball": "http://registry.npmjs.org/ensure/-/ensure-0.2.2.tgz" + }, + "0.3.0": { + "shasum": "18e797e8f0bf0412c58a44628b88fc6995305356", + "tarball": "http://registry.npmjs.org/ensure/-/ensure-0.3.0.tgz" + }, + "0.4.1": { + "shasum": "8e7f1ffbe8f194e50ed710e8396d0d3b33fd23f0", + "tarball": "http://registry.npmjs.org/ensure/-/ensure-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "ee9ca4dd3df3471db77a888974923c0d8b2c85d8", + "tarball": "http://registry.npmjs.org/ensure/-/ensure-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "a91ae992aecbe12dd388fc4b92b97b3ea97d4018", + "tarball": "http://registry.npmjs.org/ensure/-/ensure-0.4.3.tgz" + }, + "0.4.4": { + "shasum": "838cfe00a726fd1d9fd2ea5f0890e4abe4fd0a9a", + "tarball": "http://registry.npmjs.org/ensure/-/ensure-0.4.4.tgz" + }, + "0.4.5": { + "shasum": "1fe2306e28ec9eaa52949483c9f0d7adcfe9145c", + "tarball": "http://registry.npmjs.org/ensure/-/ensure-0.4.5.tgz" + }, + "0.4.6": { + "shasum": "005dedc837171bcc94d20d1509d15f84d8345bd9", + "tarball": "http://registry.npmjs.org/ensure/-/ensure-0.4.6.tgz" + } + }, + "keywords": [ + "vows", + "node-tap", + "tap", + "testing", + "tests" + ], + "url": "http://registry.npmjs.org/ensure/" + }, + "ensure-array": { + "name": "ensure-array", + "description": "Ensure that an object is an array. Moves error checking out of your code.", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "jeffbski", + "email": "jeff.barczewski@gmail.com" + } + ], + "time": { + "modified": "2011-12-08T23:17:34.032Z", + "created": "2011-11-08T00:34:01.169Z", + "0.0.2": "2011-11-08T00:34:02.027Z", + "0.0.3": "2011-12-01T19:56:36.032Z", + "0.0.4": "2011-12-08T23:17:34.032Z" + }, + "author": { + "name": "Jeff Barczewski", + "email": "jeff.barczewski@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/jeffbski/ensure-array.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/ensure-array/0.0.2", + "0.0.3": "http://registry.npmjs.org/ensure-array/0.0.3", + "0.0.4": "http://registry.npmjs.org/ensure-array/0.0.4" + }, + "dist": { + "0.0.2": { + "shasum": "43baec9b5b9a12ba17fb890da8671c646b7f88a4", + "tarball": "http://registry.npmjs.org/ensure-array/-/ensure-array-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "2fe42ceb898cb5774c35925cb26d8c0fc882a2d7", + "tarball": "http://registry.npmjs.org/ensure-array/-/ensure-array-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "606449dafd008f88a60cb0b2196f53f21a264184", + "tarball": "http://registry.npmjs.org/ensure-array/-/ensure-array-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/ensure-array/" + }, + "ent": { + "name": "ent", + "description": "Encode and decode HTML entities", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-06-09T22:18:42.740Z", + "created": "2011-02-16T14:13:51.903Z", + "0.0.1": "2011-02-16T14:13:52.460Z", + "0.0.2": "2011-02-24T20:35:24.457Z", + "0.0.3": "2011-06-09T22:09:04.046Z", + "0.0.4": "2011-06-09T22:18:42.740Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-ent.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ent/0.0.1", + "0.0.2": "http://registry.npmjs.org/ent/0.0.2", + "0.0.3": "http://registry.npmjs.org/ent/0.0.3", + "0.0.4": "http://registry.npmjs.org/ent/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "c475d401928b4ba617506405780b1c9468dbd3e5", + "tarball": "http://registry.npmjs.org/ent/-/ent-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "df49c9620a8cc5b962d2c8a3050dcfdd25971b15", + "tarball": "http://registry.npmjs.org/ent/-/ent-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "db9d5147a94f177486191111397b58f8efdd9dfc", + "tarball": "http://registry.npmjs.org/ent/-/ent-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "532820d894818a4b3abd452ba38a625c2ff8b6a7", + "tarball": "http://registry.npmjs.org/ent/-/ent-0.0.4.tgz" + } + }, + "keywords": [ + "entities", + "entitify", + "entity", + "html", + "encode", + "decode" + ], + "url": "http://registry.npmjs.org/ent/" + }, + "enterprisejs": { + "name": "enterprisejs", + "description": "Enterprise support for JS server application", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "templth", + "email": "templth@yahoo.fr" + } + ], + "time": { + "modified": "2011-09-23T08:05:29.658Z", + "created": "2011-09-23T08:05:27.868Z", + "0.1.0": "2011-09-23T08:05:29.658Z" + }, + "author": { + "name": "Thierry Templier", + "email": "templth@yahoo.fr" + }, + "repository": { + "type": "git", + "url": "git://http://github.com/templth/enterprisejs.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/enterprisejs/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "671feeff4d2e897c5dac53d1fc45aa27b03f329f", + "tarball": "http://registry.npmjs.org/enterprisejs/-/enterprisejs-0.1.0.tgz" + } + }, + "keywords": [ + "enterprise", + "js", + "data", + "transaction", + "database", + "rdbms" + ], + "url": "http://registry.npmjs.org/enterprisejs/" + }, + "entity": { + "name": "entity", + "description": "metaobject with a dashes of CLOS and FRP", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "tmpvar", + "email": "tmpvar@gmail.com" + } + ], + "time": { + "modified": "2011-10-20T06:48:19.680Z", + "created": "2011-10-20T06:48:19.056Z", + "0.0.1": "2011-10-20T06:48:19.680Z" + }, + "author": { + "name": "Elijah Insua", + "email": "tmpvar@gmail.com", + "url": "http://tmpvar.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/tmpvar/entity.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/entity/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "f383c96fad6c946d48125b1b65a221c47aac3296", + "tarball": "http://registry.npmjs.org/entity/-/entity-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/entity/" + }, + "entropy": { + "name": "entropy", + "description": "Entropy Web App system", + "dist-tags": { + "latest": "0.0.3-7" + }, + "maintainers": [ + { + "name": "zhami", + "email": "stuart@yellowhelium.com" + } + ], + "time": { + "modified": "2011-06-18T18:32:03.141Z", + "created": "2011-06-06T02:57:57.106Z", + "0.0.1": "2011-06-06T02:57:57.652Z", + "0.0.1-1": "2011-06-06T03:03:42.403Z", + "0.0.3-1": "2011-06-17T15:12:11.285Z", + "0.0.3-2": "2011-06-17T15:16:23.138Z", + "0.0.3-4": "2011-06-17T15:22:30.331Z", + "0.0.3-5": "2011-06-18T18:04:43.517Z", + "0.0.3-6": "2011-06-18T18:08:26.933Z", + "0.0.3-7": "2011-06-18T18:32:03.141Z" + }, + "author": { + "name": "Stuart Malin", + "email": "stuart@yellowhelium.com", + "url": "http://yellowhelium.com/" + }, + "repository": { + "type": "url", + "url": "http://github.com/zhami/entropy" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/entropy/0.0.1", + "0.0.1-1": "http://registry.npmjs.org/entropy/0.0.1-1", + "0.0.3-1": "http://registry.npmjs.org/entropy/0.0.3-1", + "0.0.3-2": "http://registry.npmjs.org/entropy/0.0.3-2", + "0.0.3-4": "http://registry.npmjs.org/entropy/0.0.3-4", + "0.0.3-5": "http://registry.npmjs.org/entropy/0.0.3-5", + "0.0.3-6": "http://registry.npmjs.org/entropy/0.0.3-6", + "0.0.3-7": "http://registry.npmjs.org/entropy/0.0.3-7" + }, + "dist": { + "0.0.1": { + "shasum": "3cb79a89c79b7031b88de5e79164267640292b79", + "tarball": "http://registry.npmjs.org/entropy/-/entropy-0.0.1.tgz" + }, + "0.0.1-1": { + "shasum": "8f1c8290a6e7f351cd7d8d5a0cc4cb1f7046fb27", + "tarball": "http://registry.npmjs.org/entropy/-/entropy-0.0.1-1.tgz" + }, + "0.0.3-1": { + "shasum": "1b8e6e5abfdc8949c4eace0c3c1b6b7b337d523e", + "tarball": "http://registry.npmjs.org/entropy/-/entropy-0.0.3-1.tgz" + }, + "0.0.3-2": { + "shasum": "cd0e977e27e4fcec4275ec3debebc8ea2833ad68", + "tarball": "http://registry.npmjs.org/entropy/-/entropy-0.0.3-2.tgz" + }, + "0.0.3-4": { + "shasum": "a298ee28339cad6411d431b24567e4df3e11a427", + "tarball": "http://registry.npmjs.org/entropy/-/entropy-0.0.3-4.tgz" + }, + "0.0.3-5": { + "shasum": "43f024d1fe845af2ab055de58ad06cd6a17cdc89", + "tarball": "http://registry.npmjs.org/entropy/-/entropy-0.0.3-5.tgz" + }, + "0.0.3-6": { + "shasum": "5e01aef92d2c5d49865f78b046d1f7aac23ca700", + "tarball": "http://registry.npmjs.org/entropy/-/entropy-0.0.3-6.tgz" + }, + "0.0.3-7": { + "shasum": "f7d47c427e4e24cd687f1dcb87ad07eafaf2b910", + "tarball": "http://registry.npmjs.org/entropy/-/entropy-0.0.3-7.tgz" + } + }, + "keywords": [ + "entropy", + "web framework" + ], + "url": "http://registry.npmjs.org/entropy/" + }, + "enumerable": { + "name": "enumerable", + "description": "Enumerable library mimicking the linq api from .NET", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "lukesmith", + "email": "stuff@lukesmith.net" + } + ], + "time": { + "modified": "2011-01-15T17:19:16.994Z", + "created": "2011-01-15T17:19:16.450Z", + "0.0.1": "2011-01-15T17:19:16.994Z" + }, + "author": { + "name": "Luke Smith", + "url": "http://blog.lukesmith.net" + }, + "repository": { + "type": "git", + "url": "http://github.com/lukesmith/enumerablejs.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/enumerable/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "c156f458e4cde7b9704a057b39cedfdb866dfbd6", + "tarball": "http://registry.npmjs.org/enumerable/-/enumerable-0.0.1.tgz" + } + }, + "keywords": [ + "linq", + "enumerable" + ], + "url": "http://registry.npmjs.org/enumerable/" + }, + "env": { + "name": "env", + "description": "Environment variable manager", + "dist-tags": { + "latest": "0.0.2" + }, + "readme": "Env - In your environment managing your variables.\n===\n\n[![Build Status](https://secure.travis-ci.org/dshaw/env.png)](http://travis-ci.org/dshaw/env)\n\nManaging environment variables can be a pain. Env helps make that better.\n\n### Module status\n\nEnv is an evolving project based which came out of discussions with [@joemccann](http://twitter.com/joemccann) and [@clintandrewhall](http://twitter.com/clintandrewhall). I don't consider this package fully baked yet.\n\n### Get Env.\n\n```bash\nnpm install env\n```\n\n### Usage\n\nAdd an env.json file to your repo.\n\n```json\n{\n \"DB_HOST\": 1,\n \"DB_PORT\": 1,\n \"DB_USER\": 1,\n \"DB_PASS\": 1\n}\n```\n\n```javascript\nvar env = require('env')()\n\nenv.ok(function(err) {\n if (!err) return\n console.error(err)\n process.exit(1)\n})\n\n// Yes, it's SYNC, so you can do this too!\n\nfunction handleEnv (err) {\n if (!err) return\n process.exit(1)\n}\n\nif (env.ok(handleEnv)) {\n var port = env.get('SETUP_PORT')\n server.listen(port)\n}\n```\n\nEnv is sync like require, so it's tasks can be accomplished before app execution.\n\n### Follow dshaw\n- [twitter.com/dshaw](http://twitter.com/dshaw)\n- [github.com/dshaw](http://github.com/dshaw)\n", + "maintainers": [ + { + "name": "dshaw", + "email": "dshaw@dshaw.com" + } + ], + "time": { + "modified": "2011-11-28T23:49:28.470Z", + "created": "2011-11-28T12:20:12.104Z", + "0.0.1": "2011-11-28T12:20:13.659Z", + "0.0.2": "2011-11-28T23:49:28.470Z" + }, + "author": { + "name": "Daniel D. Shaw", + "email": "dshaw@dshaw.com", + "url": "http://dshaw.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dshaw/env.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/env/0.0.1", + "0.0.2": "http://registry.npmjs.org/env/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "24d3d4f977ae8e88b94e53c570ab7ba8f0e45a8d", + "tarball": "http://registry.npmjs.org/env/-/env-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "50c19f307b129a45845b6b686df5b39dd40d1cf0", + "tarball": "http://registry.npmjs.org/env/-/env-0.0.2.tgz" + } + }, + "keywords": [ + "process", + "environment", + "env" + ], + "url": "http://registry.npmjs.org/env/" + }, + "envious": { + "name": "envious", + "description": "making environment configuration dead easy", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "markbao", + "email": "mark@markbao.com" + } + ], + "time": { + "modified": "2011-09-22T09:15:16.992Z", + "created": "2011-09-22T09:15:16.763Z", + "0.1.0": "2011-09-22T09:15:16.992Z" + }, + "author": { + "name": "Mark Bao", + "email": "mark@markbao.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/markbao/node-envious.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/envious/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "5c04d2bca76866238e15ccfd1e4a1af317ac88d3", + "tarball": "http://registry.npmjs.org/envious/-/envious-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/envious/" + }, + "environ": { + "name": "environ", + "description": "Cross-platform environment detection library for JavaScript", + "dist-tags": { + "latest": "1.4.0" + }, + "maintainers": [ + { + "name": "azer", + "email": "azer@kodfabrik.com" + } + ], + "time": { + "modified": "2011-11-29T19:04:18.617Z", + "created": "2011-05-29T22:47:28.843Z", + "1.0.0": "2011-05-29T22:47:29.426Z", + "1.1.0": "2011-07-21T09:09:05.515Z", + "1.1.1": "2011-10-15T08:17:06.597Z", + "1.2.0": "2011-11-02T16:37:28.152Z", + "1.3.0": "2011-11-29T07:48:36.666Z", + "1.4.0": "2011-11-29T19:04:18.617Z" + }, + "author": { + "name": "Azer Koculu", + "email": "azer@kodfabrik.com", + "url": "http://azer.kodfabrik.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/azer/environ.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/environ/1.0.0", + "1.1.0": "http://registry.npmjs.org/environ/1.1.0", + "1.1.1": "http://registry.npmjs.org/environ/1.1.1", + "1.2.0": "http://registry.npmjs.org/environ/1.2.0", + "1.3.0": "http://registry.npmjs.org/environ/1.3.0", + "1.4.0": "http://registry.npmjs.org/environ/1.4.0" + }, + "dist": { + "1.0.0": { + "shasum": "2e48d493b02779b7706372a79ccb09bc46556799", + "tarball": "http://registry.npmjs.org/environ/-/environ-1.0.0.tgz" + }, + "1.1.0": { + "shasum": "e638c9d6372e0a6b1499f27b99935fbc83106109", + "tarball": "http://registry.npmjs.org/environ/-/environ-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "2c51ca498a3e9bb29daa5ce68048950ebf6961df", + "tarball": "http://registry.npmjs.org/environ/-/environ-1.1.1.tgz" + }, + "1.2.0": { + "shasum": "c960a4450cc22679f28960e63f50822367a13633", + "tarball": "http://registry.npmjs.org/environ/-/environ-1.2.0.tgz" + }, + "1.3.0": { + "shasum": "e1cc57833ccfa4ed69aaea5416f13318dbe9aa3c", + "tarball": "http://registry.npmjs.org/environ/-/environ-1.3.0.tgz" + }, + "1.4.0": { + "shasum": "4e8535ecc327d8de02de1fa3444067c340c14fe8", + "tarball": "http://registry.npmjs.org/environ/-/environ-1.4.0.tgz" + } + }, + "keywords": [ + "environ", + "browser", + "navigator", + "platform", + "vendor", + "detection" + ], + "url": "http://registry.npmjs.org/environ/" + }, + "epub": { + "name": "epub", + "description": "Parse ePub electronic book files with Node.JS", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "andris", + "email": "andris@node.ee" + } + ], + "time": { + "modified": "2011-06-13T20:31:25.897Z", + "created": "2011-06-13T20:31:22.140Z", + "0.1.0": "2011-06-13T20:31:25.897Z" + }, + "author": { + "name": "Andris Reinman" + }, + "repository": { + "type": "git", + "url": "git://github.com/andris9/epub.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/epub/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "d987a7a51b3395160890e49dc8426c05ddddb2fd", + "tarball": "http://registry.npmjs.org/epub/-/epub-0.1.0.tgz" + } + }, + "keywords": [ + "epub", + "books" + ], + "url": "http://registry.npmjs.org/epub/" + }, + "equality": { + "name": "equality", + "description": "A little utility for testing equality", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "apeace", + "email": "apeace@gmail.com" + } + ], + "time": { + "modified": "2011-10-25T00:28:05.667Z", + "created": "2011-10-20T02:00:29.433Z", + "0.0.1": "2011-10-20T02:00:30.015Z", + "0.0.2": "2011-10-20T15:08:58.289Z", + "0.0.3": "2011-10-20T23:09:31.930Z", + "0.0.4": "2011-10-25T00:28:05.667Z" + }, + "author": { + "name": "Andrew Peace", + "email": "apeace@gmail.com", + "url": "http://github.com/apeace" + }, + "repository": { + "type": "git", + "url": "git://github.com/apeace/equality.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/equality/0.0.1", + "0.0.2": "http://registry.npmjs.org/equality/0.0.2", + "0.0.3": "http://registry.npmjs.org/equality/0.0.3", + "0.0.4": "http://registry.npmjs.org/equality/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "eeb98930ce682b59bd7d5dfaef068bebdee18215", + "tarball": "http://registry.npmjs.org/equality/-/equality-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "2476aa9f93a8a8f22fd01125f922ee9840737ce2", + "tarball": "http://registry.npmjs.org/equality/-/equality-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "b937b733b0396154c5acc91bc846ebf4fc01218b", + "tarball": "http://registry.npmjs.org/equality/-/equality-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "fabc8b99f881fd48493c02fdea49cd66bf747c89", + "tarball": "http://registry.npmjs.org/equality/-/equality-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/equality/" + }, + "erlang": { + "name": "erlang", + "description": "Erlang interoperability with Javascript", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "jhs", + "email": "jhs@iriscouch.com" + }, + { + "name": "jhs", + "email": "jhs@couchone.com" + } + ], + "time": { + "modified": "2011-11-24T02:30:19.182Z", + "created": "2010-12-20T16:13:21.172Z", + "0.1.0": "2010-12-20T16:13:22.146Z", + "0.2.0": "2011-11-24T02:30:19.182Z" + }, + "author": { + "name": "Iris Couch", + "email": "jhs@iriscouch.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/iriscouch/erlang.js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/erlang/0.1.0", + "0.2.0": "http://registry.npmjs.org/erlang/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "0c7b1aae757cade74201e3f6e5888bf3289251ed", + "tarball": "http://registry.npmjs.org/erlang/-/erlang-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "cf1730d1124c89ea1e147aa1be4d7571142c92de", + "tarball": "http://registry.npmjs.org/erlang/-/erlang-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/erlang/" + }, + "err": { + "name": "err", + "description": "Simplified Node.js error-handling", + "dist-tags": { + "latest": "0.6.0" + }, + "maintainers": [ + { + "name": "TrevorBurnham", + "email": "trevorburnham@gmail.com" + } + ], + "time": { + "modified": "2011-04-05T23:16:06.160Z", + "created": "2010-12-28T22:37:28.083Z", + "0.1.0": "2010-12-28T22:37:28.599Z", + "0.1.1": "2010-12-29T20:38:18.521Z", + "0.6.0": "2011-04-05T23:13:25.478Z" + }, + "author": { + "name": "Trevor Burnham" + }, + "repository": { + "type": "git", + "url": "git://github.com/TrevorBurnham/err.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/err/0.1.0", + "0.1.1": "http://registry.npmjs.org/err/0.1.1", + "0.6.0": "http://registry.npmjs.org/err/0.6.0" + }, + "dist": { + "0.1.0": { + "shasum": "94d84b99fd5810e65f0f2adb85aab5da40e1e30a", + "tarball": "http://registry.npmjs.org/err/-/err-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "4a4829ad68b4ef34fe993ed8524525c6b0de3830", + "tarball": "http://registry.npmjs.org/err/-/err-0.1.1.tgz" + }, + "0.6.0": { + "shasum": "1270f3fffecc3f255eb7b10f9294334de8d181ce", + "tarball": "http://registry.npmjs.org/err/-/err-0.6.0.tgz" + } + }, + "keywords": [ + "errors", + "exceptions" + ], + "url": "http://registry.npmjs.org/err/" + }, + "errbacker": { + "name": "errbacker", + "description": "Splits any function(error, result1, result2...) into two separate functions (errback and callback) via currying errback.", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "devgru", + "email": "npm@devg.ru" + } + ], + "time": { + "modified": "2011-03-01T13:00:35.378Z", + "created": "2011-03-01T12:29:10.932Z", + "0.2.0": "2011-03-01T12:29:11.290Z", + "0.2.1": "2011-03-01T13:00:35.378Z" + }, + "author": { + "name": "Devgru", + "email": "git@devg.ru", + "url": "http://home.devg.ru" + }, + "repository": { + "type": "git", + "url": "http://github.com/devgru/errbacker.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/errbacker/0.2.0", + "0.2.1": "http://registry.npmjs.org/errbacker/0.2.1" + }, + "dist": { + "0.2.0": { + "shasum": "ee11f0bee67d5abac10bf58e24fe334fa2fd1d17", + "tarball": "http://registry.npmjs.org/errbacker/-/errbacker-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "242d0c96e490e20e4ef21314bd72b0722b722795", + "tarball": "http://registry.npmjs.org/errbacker/-/errbacker-0.2.1.tgz" + } + }, + "keywords": [ + "errback" + ], + "url": "http://registry.npmjs.org/errbacker/" + }, + "error": { + "name": "error", + "description": "error handling utility", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "raynos", + "email": "raynos2@gmail.com" + } + ], + "time": { + "modified": "2011-11-17T17:53:48.228Z", + "created": "2011-10-19T17:22:52.198Z", + "0.0.1": "2011-10-19T17:22:53.961Z", + "0.0.2": "2011-11-16T17:31:41.763Z", + "0.0.3": "2011-11-17T17:04:37.091Z", + "0.0.4": "2011-11-17T17:18:01.114Z", + "0.0.5": "2011-11-17T17:53:48.228Z" + }, + "author": { + "name": "Jake Verbaten", + "email": "raynos2@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Raynos/error.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/error/0.0.1", + "0.0.2": "http://registry.npmjs.org/error/0.0.2", + "0.0.3": "http://registry.npmjs.org/error/0.0.3", + "0.0.4": "http://registry.npmjs.org/error/0.0.4", + "0.0.5": "http://registry.npmjs.org/error/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "74df840704ef29ba7be53806adcb3efaea38ca01", + "tarball": "http://registry.npmjs.org/error/-/error-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "97790f95fa98614ce66224d4b29579b6d5c1e8b6", + "tarball": "http://registry.npmjs.org/error/-/error-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "f569b0991fcd64bb5e588a6d046f3bd8af58f77b", + "tarball": "http://registry.npmjs.org/error/-/error-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "9d356fa7a7017727d187a1f4af86641873af416b", + "tarball": "http://registry.npmjs.org/error/-/error-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "764afb258e360255abd8f3edcb4fc1731c3f4c9b", + "tarball": "http://registry.npmjs.org/error/-/error-0.0.5.tgz" + } + }, + "keywords": [ + "error", + "arch", + "utility" + ], + "url": "http://registry.npmjs.org/error/" + }, + "es": { + "name": "es", + "description": "A very thin wrapper around elasticsearch for Node", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "gsf", + "email": "gsf747@gmail.com" + } + ], + "time": { + "modified": "2011-11-26T01:23:32.164Z", + "created": "2011-10-16T17:05:30.946Z", + "0.0.3": "2011-10-16T17:05:31.222Z", + "0.0.4": "2011-11-26T01:23:32.164Z" + }, + "author": { + "name": "Gabriel Farrell", + "email": "g@grrawr.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/gsf/node-es.git" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/es/0.0.3", + "0.0.4": "http://registry.npmjs.org/es/0.0.4" + }, + "dist": { + "0.0.3": { + "shasum": "0838630e7a2cb1b9f6fe227e88656a249a8e1b7c", + "tarball": "http://registry.npmjs.org/es/-/es-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "742d248ea6f2938a6f717f2e2421e4655084e6eb", + "tarball": "http://registry.npmjs.org/es/-/es-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/es/" + }, + "es5": { + "name": "es5", + "description": "ES5 support for legacy browsers", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-09-08T00:35:16.524Z", + "created": "2011-09-08T00:35:16.142Z", + "1.0.0": "2011-09-08T00:35:16.524Z" + }, + "author": { + "name": "Kris Kowa", + "email": "kris.kowal@gmail.com", + "url": "http://cixar.com/~kris.kowal/" + }, + "repository": { + "url": "git://github.com/kriskowal/narwhal.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/es5/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "2507bdcd7381df17a5548e8746ef023112b01666", + "tarball": "http://registry.npmjs.org/es5/-/es5-1.0.0.tgz" + } + }, + "keywords": [ + "ender", + "es5", + "browser" + ], + "url": "http://registry.npmjs.org/es5/" + }, + "es5-basic": { + "name": "es5-basic", + "description": "A basic set of ECMAScript 5 shim methods for older browsers", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "amccollum", + "email": "amccollum+npm@gmail.com" + } + ], + "time": { + "modified": "2011-12-10T13:44:17.408Z", + "created": "2011-09-06T16:14:45.460Z", + "0.1.0": "2011-09-06T16:14:45.864Z", + "0.2.0": "2011-09-18T03:44:14.448Z", + "0.2.1": "2011-12-10T13:44:17.408Z" + }, + "author": { + "name": "Andrew McCollum", + "email": "amccollum@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/es5-basic/0.1.0", + "0.2.0": "http://registry.npmjs.org/es5-basic/0.2.0", + "0.2.1": "http://registry.npmjs.org/es5-basic/0.2.1" + }, + "dist": { + "0.1.0": { + "shasum": "5c96a7e2364c4a3f02c20de3134b701e5c9da507", + "tarball": "http://registry.npmjs.org/es5-basic/-/es5-basic-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "9bf0f8a13b9defd3b3a906f2dd0308a90a25bbce", + "tarball": "http://registry.npmjs.org/es5-basic/-/es5-basic-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "f4c75ab4b427dd8b54a58159c72baf2c6ce43a9b", + "tarball": "http://registry.npmjs.org/es5-basic/-/es5-basic-0.2.1.tgz" + } + }, + "keywords": [ + "ender", + "ecmascript5", + "es5", + "shim" + ], + "url": "http://registry.npmjs.org/es5-basic/" + }, + "es5-ext": { + "name": "es5-ext", + "description": "ECMAScript5 extensions", + "dist-tags": { + "latest": "0.6.3" + }, + "maintainers": [ + { + "name": "medikoo", + "email": "medikoo+npm@medikoo.com" + } + ], + "time": { + "modified": "2011-12-12T13:54:08.164Z", + "created": "2011-05-24T12:08:10.946Z", + "0.1.0": "2011-05-24T12:08:13.301Z", + "0.2.0": "2011-05-28T19:45:11.317Z", + "0.2.1": "2011-05-28T19:52:12.161Z", + "0.3.0": "2011-06-24T16:26:12.203Z", + "0.4.0": "2011-07-05T19:40:10.112Z", + "0.5.0": "2011-07-07T19:46:31.289Z", + "0.5.1": "2011-07-11T19:15:11.351Z", + "0.6.0": "2011-08-07T13:47:11.437Z", + "0.6.1": "2011-08-08T14:46:02.854Z", + "0.6.2": "2011-08-12T11:31:10.048Z", + "0.6.3": "2011-12-12T13:54:08.164Z" + }, + "author": { + "name": "Mariusz Nowak", + "email": "medikoo+es5-ext@medikoo.com", + "url": "http://www.medikoo.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/medikoo/es5-ext.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/es5-ext/0.1.0", + "0.2.0": "http://registry.npmjs.org/es5-ext/0.2.0", + "0.2.1": "http://registry.npmjs.org/es5-ext/0.2.1", + "0.3.0": "http://registry.npmjs.org/es5-ext/0.3.0", + "0.4.0": "http://registry.npmjs.org/es5-ext/0.4.0", + "0.5.0": "http://registry.npmjs.org/es5-ext/0.5.0", + "0.5.1": "http://registry.npmjs.org/es5-ext/0.5.1", + "0.6.0": "http://registry.npmjs.org/es5-ext/0.6.0", + "0.6.1": "http://registry.npmjs.org/es5-ext/0.6.1", + "0.6.2": "http://registry.npmjs.org/es5-ext/0.6.2", + "0.6.3": "http://registry.npmjs.org/es5-ext/0.6.3" + }, + "dist": { + "0.1.0": { + "shasum": "16b216b0699c3249c3c62382b350d46611eea0eb", + "tarball": "http://registry.npmjs.org/es5-ext/-/es5-ext-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "18a7e403db4127b77f0a724ef196ff4edd860856", + "tarball": "http://registry.npmjs.org/es5-ext/-/es5-ext-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "8ba548d826fc81c858e4f71997f6164b4f7eb8fb", + "tarball": "http://registry.npmjs.org/es5-ext/-/es5-ext-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "4920dd1cec7b4e98cf67d28077cdf3d56adc0581", + "tarball": "http://registry.npmjs.org/es5-ext/-/es5-ext-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "69dc1d57e2c97485fe58ab662828f7a45a86476f", + "tarball": "http://registry.npmjs.org/es5-ext/-/es5-ext-0.4.0.tgz" + }, + "0.5.0": { + "shasum": "7ef8c2135c1bfc992882d7a6e28b73c58442c225", + "tarball": "http://registry.npmjs.org/es5-ext/-/es5-ext-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "5331943d7aee72dd69b90a8c363119945d54e98f", + "tarball": "http://registry.npmjs.org/es5-ext/-/es5-ext-0.5.1.tgz" + }, + "0.6.0": { + "shasum": "25aefc7c7261f6f38a62d2364bdd1ac9f677faa4", + "tarball": "http://registry.npmjs.org/es5-ext/-/es5-ext-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "80c91f3e9dc08e17e155b8de452e5dab8d45b566", + "tarball": "http://registry.npmjs.org/es5-ext/-/es5-ext-0.6.1.tgz" + }, + "0.6.2": { + "shasum": "65dfed8b36214e177c83316cc0e6742af2c8c589", + "tarball": "http://registry.npmjs.org/es5-ext/-/es5-ext-0.6.2.tgz" + }, + "0.6.3": { + "shasum": "53c14283b92a81474088bd856c021fe186380ba0", + "tarball": "http://registry.npmjs.org/es5-ext/-/es5-ext-0.6.3.tgz" + } + }, + "keywords": [ + "ecmascript", + "ecmascript5", + "es5", + "extensions", + "addons", + "extras", + "javascript" + ], + "url": "http://registry.npmjs.org/es5-ext/" + }, + "es5-shim": { + "name": "es5-shim", + "description": "ES5 as implementable on previous engines", + "dist-tags": { + "latest": "1.2.10" + }, + "maintainers": [ + { + "name": "kriskowal", + "email": "kris.kowal@cixar.com" + }, + { + "name": "gozala", + "email": "rfobic@gmail.com" + } + ], + "author": { + "name": "Kris Kowal", + "email": "kris@cixar.com", + "url": "http://github.com/kriskowal/" + }, + "repository": { + "type": "git", + "url": "git://github.com/kriskowal/es5-shim.git" + }, + "time": { + "modified": "2011-09-23T00:19:50.994Z", + "created": "2011-01-27T22:54:39.953Z", + "0.0.0": "2011-01-27T22:54:39.953Z", + "0.0.1": "2011-01-27T22:54:39.953Z", + "0.0.2": "2011-01-27T22:54:39.953Z", + "0.0.3": "2011-01-27T22:54:39.953Z", + "0.0.4": "2011-01-27T22:54:39.953Z", + "1.0.0": "2011-01-27T22:54:39.953Z", + "1.2.2": "2011-06-03T21:39:22.517Z", + "1.2.3": "2011-06-07T17:43:54.572Z", + "1.2.4": "2011-08-11T22:13:03.126Z", + "1.2.6": "2011-08-12T01:13:22.802Z", + "1.2.7": "2011-08-12T23:10:11.459Z", + "1.2.8": "2011-08-12T23:48:49.058Z", + "1.2.9": "2011-08-13T18:32:29.634Z", + "1.2.10": "2011-09-23T00:19:50.994Z" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/es5-shim/0.0.0", + "0.0.1": "http://registry.npmjs.org/es5-shim/0.0.1", + "0.0.2": "http://registry.npmjs.org/es5-shim/0.0.2", + "0.0.3": "http://registry.npmjs.org/es5-shim/0.0.3", + "0.0.4": "http://registry.npmjs.org/es5-shim/0.0.4", + "1.0.0": "http://registry.npmjs.org/es5-shim/1.0.0", + "1.2.2": "http://registry.npmjs.org/es5-shim/1.2.2", + "1.2.3": "http://registry.npmjs.org/es5-shim/1.2.3", + "1.2.4": "http://registry.npmjs.org/es5-shim/1.2.4", + "1.2.6": "http://registry.npmjs.org/es5-shim/1.2.6", + "1.2.7": "http://registry.npmjs.org/es5-shim/1.2.7", + "1.2.8": "http://registry.npmjs.org/es5-shim/1.2.8", + "1.2.9": "http://registry.npmjs.org/es5-shim/1.2.9", + "1.2.10": "http://registry.npmjs.org/es5-shim/1.2.10" + }, + "dist": { + "0.0.0": { + "tarball": "http://packages:5984/es5-shim/-/es5-shim-0.0.0.tgz" + }, + "0.0.1": { + "tarball": "http://packages:5984/es5-shim/-/es5-shim-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/es5-shim/-/es5-shim-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/es5-shim/-/es5-shim-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://registry.npmjs.org/es5-shim/-/es5-shim-0.0.4.tgz" + }, + "1.0.0": { + "tarball": "http://registry.npmjs.org/es5-shim/-/es5-shim-1.0.0.tgz" + }, + "1.2.2": { + "shasum": "a1651468637f484ea70c42adadfe08ca36b16cc1", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.3-darwin-10.6.0": { + "shasum": "f0ba731fc0157e988226f9276e3bef48fc5d5d74", + "tarball": "http://registry.npmjs.org/es5-shim/-/es5-shim-1.2.2-0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.3-darwin-10.6.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/es5-shim/-/es5-shim-1.2.2.tgz" + }, + "1.2.3": { + "shasum": "dcec027882c8c78e44924fb87c01b3cf759a01c6", + "tarball": "http://registry.npmjs.org/es5-shim/-/es5-shim-1.2.3.tgz" + }, + "1.2.4": { + "shasum": "5d6e58dd1b62ff402cb705bb4f2ca409ac324da4", + "tarball": "http://registry.npmjs.org/es5-shim/-/es5-shim-1.2.4.tgz" + }, + "1.2.6": { + "shasum": "d82f3528fe65a997f9c0088e764a1c1700044dfc", + "tarball": "http://registry.npmjs.org/es5-shim/-/es5-shim-1.2.6.tgz" + }, + "1.2.7": { + "shasum": "c01a75afe94b2e6744e6643a65d9cef174ed420e", + "tarball": "http://registry.npmjs.org/es5-shim/-/es5-shim-1.2.7.tgz" + }, + "1.2.8": { + "shasum": "c6623634d623530a33e4eff53e2a72d677e8b98d", + "tarball": "http://registry.npmjs.org/es5-shim/-/es5-shim-1.2.8.tgz" + }, + "1.2.9": { + "shasum": "a01c027867cc2f0767bb8a8a90e6b0324268dfcb", + "tarball": "http://registry.npmjs.org/es5-shim/-/es5-shim-1.2.9.tgz" + }, + "1.2.10": { + "shasum": "a08e04903e086a969a43a088c3b511ed1ba3488f", + "tarball": "http://registry.npmjs.org/es5-shim/-/es5-shim-1.2.10.tgz" + } + }, + "url": "http://registry.npmjs.org/es5-shim/" + }, + "es5-shimify": { + "name": "es5-shimify", + "description": "ES5-shim lib for browsers", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "maccman", + "email": "maccman@gmail.com" + } + ], + "time": { + "modified": "2011-08-03T16:09:18.862Z", + "created": "2011-08-03T16:09:05.811Z", + "0.0.1": "2011-08-03T16:09:18.862Z" + }, + "author": { + "name": "Alex MacCaw", + "email": "info@eribium.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/maccman/es5-shimify.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/es5-shimify/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "f1a92bbc3e75d7dc3d74259e66f63016a44033d4", + "tarball": "http://registry.npmjs.org/es5-shimify/-/es5-shimify-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/es5-shimify/" + }, + "esc": { + "name": "esc", + "description": "escapes HTML", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "pvorb", + "email": "paul@vorb.de" + } + ], + "time": { + "modified": "2011-11-08T00:08:45.609Z", + "created": "2011-09-15T14:25:58.134Z", + "0.0.0": "2011-09-15T14:26:01.568Z", + "0.0.1": "2011-09-15T15:04:12.075Z", + "0.0.2": "2011-11-08T00:08:45.609Z" + }, + "author": { + "name": "Paul Vorbach", + "email": "paul@vorb.de", + "url": "http://vorb.de/" + }, + "repository": { + "type": "git", + "url": "git://github.com/pvorb/node-esc.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/esc/0.0.0", + "0.0.1": "http://registry.npmjs.org/esc/0.0.1", + "0.0.2": "http://registry.npmjs.org/esc/0.0.2" + }, + "dist": { + "0.0.0": { + "shasum": "346e0a26f3a9cbd34b62fb4d8ab6f45417709ce8", + "tarball": "http://registry.npmjs.org/esc/-/esc-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "108a246be0a7d4d34e42fa9204697ccbd802cd03", + "tarball": "http://registry.npmjs.org/esc/-/esc-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "80040e019fa0262c9eb5fcda29a1cc6c7b6151ed", + "tarball": "http://registry.npmjs.org/esc/-/esc-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/esc/" + }, + "escaperoute": { + "name": "escaperoute", + "description": "A node.js router that implements reverse matching", + "dist-tags": { + "latest": "0.0.7" + }, + "maintainers": [ + { + "name": "chrisdickinson", + "email": "chris@neversaw.us" + } + ], + "author": { + "name": "Chris Dickinson" + }, + "time": { + "modified": "2011-08-27T05:52:05.234Z", + "created": "2011-01-18T07:06:38.699Z", + "0.0.1": "2011-01-18T07:06:38.699Z", + "0.0.2": "2011-01-18T07:06:38.699Z", + "0.0.3": "2011-01-18T07:06:38.699Z", + "0.0.4": "2011-01-18T07:06:38.699Z", + "0.0.5": "2011-01-18T07:06:38.699Z", + "0.0.6": "2011-06-11T05:07:01.969Z", + "0.0.7": "2011-08-27T05:52:05.234Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/escaperoute/0.0.1", + "0.0.2": "http://registry.npmjs.org/escaperoute/0.0.2", + "0.0.3": "http://registry.npmjs.org/escaperoute/0.0.3", + "0.0.4": "http://registry.npmjs.org/escaperoute/0.0.4", + "0.0.5": "http://registry.npmjs.org/escaperoute/0.0.5", + "0.0.6": "http://registry.npmjs.org/escaperoute/0.0.6", + "0.0.7": "http://registry.npmjs.org/escaperoute/0.0.7" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/escaperoute/-/escaperoute-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/escaperoute/-/escaperoute-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/escaperoute/-/escaperoute-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://packages:5984/escaperoute/-/escaperoute-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://registry.npmjs.org/escaperoute/-/escaperoute-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "81d6ee499d2d2d1462d204f97444eeccaa4f09fa", + "tarball": "http://registry.npmjs.org/escaperoute/-/escaperoute-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "897453fe01daed8df1f2c171bc44a3997ae80a38", + "tarball": "http://registry.npmjs.org/escaperoute/-/escaperoute-0.0.7.tgz" + } + }, + "keywords": [ + "router", + "node" + ], + "url": "http://registry.npmjs.org/escaperoute/" + }, + "escort": { + "name": "escort", + "description": "Routing and URL generation middleware", + "dist-tags": { + "latest": "0.0.13" + }, + "maintainers": [ + { + "name": "ckknight", + "email": "ckknight@gmail.com" + } + ], + "time": { + "modified": "2011-04-17T01:27:36.773Z", + "created": "2011-04-02T21:52:29.139Z", + "0.0.1": "2011-04-02T21:52:29.341Z", + "0.0.2": "2011-04-02T23:13:45.411Z", + "0.0.3": "2011-04-07T06:06:46.003Z", + "0.0.4": "2011-04-08T01:07:15.684Z", + "0.0.5": "2011-04-10T05:48:13.959Z", + "0.0.6": "2011-04-10T07:11:32.690Z", + "0.0.7": "2011-04-10T08:50:54.244Z", + "0.0.8": "2011-04-10T09:32:43.516Z", + "0.0.9": "2011-04-10T10:42:14.940Z", + "0.0.10": "2011-04-10T19:02:38.071Z", + "0.0.11": "2011-04-10T19:59:27.638Z", + "0.0.12": "2011-04-14T00:57:45.950Z", + "0.0.13": "2011-04-17T01:27:36.773Z" + }, + "author": { + "name": "Cameron Kenneth Knight", + "email": "ckknight@gmail.com", + "url": "http://ckknight.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/ckknight/escort.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/escort/0.0.1", + "0.0.2": "http://registry.npmjs.org/escort/0.0.2", + "0.0.3": "http://registry.npmjs.org/escort/0.0.3", + "0.0.4": "http://registry.npmjs.org/escort/0.0.4", + "0.0.5": "http://registry.npmjs.org/escort/0.0.5", + "0.0.6": "http://registry.npmjs.org/escort/0.0.6", + "0.0.7": "http://registry.npmjs.org/escort/0.0.7", + "0.0.8": "http://registry.npmjs.org/escort/0.0.8", + "0.0.9": "http://registry.npmjs.org/escort/0.0.9", + "0.0.10": "http://registry.npmjs.org/escort/0.0.10", + "0.0.11": "http://registry.npmjs.org/escort/0.0.11", + "0.0.12": "http://registry.npmjs.org/escort/0.0.12", + "0.0.13": "http://registry.npmjs.org/escort/0.0.13" + }, + "dist": { + "0.0.1": { + "shasum": "d0bb35f28b7ac41ff7d7bfc0feafd4727866691d", + "tarball": "http://registry.npmjs.org/escort/-/escort-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "e2d48e659fd86105742eed22a9a0588989ab14f2", + "tarball": "http://registry.npmjs.org/escort/-/escort-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "2c8e2423bdf68669e15dc62339d9825b1987d795", + "tarball": "http://registry.npmjs.org/escort/-/escort-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "5630325145aef682b2bbf4ffcf21ffe301779d5a", + "tarball": "http://registry.npmjs.org/escort/-/escort-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "f0f515b1c5212ca1abb733fa8ae847a36183f0f3", + "tarball": "http://registry.npmjs.org/escort/-/escort-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "c2c86b469723b3080b595a28062e9c9b68e77e0f", + "tarball": "http://registry.npmjs.org/escort/-/escort-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "a8bc410ad29d8cb445a1957d6f783ef78eb78068", + "tarball": "http://registry.npmjs.org/escort/-/escort-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "19235179c474dc68ab7cbccbe8424a9a7339646d", + "tarball": "http://registry.npmjs.org/escort/-/escort-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "64ae8eca698f9cdadd741a62203d0aad24e152d7", + "tarball": "http://registry.npmjs.org/escort/-/escort-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "73eaca57c9bf574e892e5e3a8317ab2763cb2f58", + "tarball": "http://registry.npmjs.org/escort/-/escort-0.0.10.tgz" + }, + "0.0.11": { + "shasum": "b5dba0f95b7a55a74a35993fe88ba0778f47e6e5", + "tarball": "http://registry.npmjs.org/escort/-/escort-0.0.11.tgz" + }, + "0.0.12": { + "shasum": "1eee09aaf2afcc42059a024891c5d66cfdc5b6d7", + "tarball": "http://registry.npmjs.org/escort/-/escort-0.0.12.tgz" + }, + "0.0.13": { + "shasum": "670512951ddf292767a9c8a37b56bd460d7d2f8c", + "tarball": "http://registry.npmjs.org/escort/-/escort-0.0.13.tgz" + } + }, + "keywords": [ + "framework", + "web", + "middleware", + "connect", + "escort", + "routing", + "url" + ], + "url": "http://registry.npmjs.org/escort/" + }, + "escrito": { + "name": "escrito", + "description": "Collaborative writing with Markdown & Textile", + "dist-tags": { + "latest": "0.2.3" + }, + "maintainers": [ + { + "name": "davidfrancisco", + "email": "hello@dmfranc.com" + } + ], + "time": { + "modified": "2011-11-30T01:31:38.278Z", + "created": "2011-07-14T16:09:41.657Z", + "0.2.1": "2011-07-14T16:09:42.433Z", + "0.2.2": "2011-07-17T00:52:03.908Z", + "0.2.3": "2011-11-30T01:31:38.278Z" + }, + "author": { + "name": "David Francisco", + "email": "hello@dmfranc.com", + "url": "http://dmfranc.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/dmfrancisco/escrito.git" + }, + "versions": { + "0.2.1": "http://registry.npmjs.org/escrito/0.2.1", + "0.2.2": "http://registry.npmjs.org/escrito/0.2.2", + "0.2.3": "http://registry.npmjs.org/escrito/0.2.3" + }, + "dist": { + "0.2.1": { + "shasum": "2f5d064625dc7189aa49b78aa02704dbe2ecbb12", + "tarball": "http://registry.npmjs.org/escrito/-/escrito-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "53eec7c86539a5d22614bcbfedf3862b5e3a87ca", + "tarball": "http://registry.npmjs.org/escrito/-/escrito-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "10bbf34ec253befbfc0512f9f09ea8df43eb8b8a", + "tarball": "http://registry.npmjs.org/escrito/-/escrito-0.2.3.tgz" + } + }, + "keywords": [ + "editor", + "collaboration", + "document", + "markup", + "markdown", + "textile", + "concurrent" + ], + "url": "http://registry.npmjs.org/escrito/" + }, + "esl": { + "name": "esl", + "description": "Client and Server for FreeSwitch Event System", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "shimaore", + "email": "stephane@shimaore.net" + } + ], + "time": { + "modified": "2011-12-05T23:34:45.286Z", + "created": "2011-06-07T13:21:28.230Z", + "0.0.1": "2011-06-07T13:21:28.761Z", + "0.0.2": "2011-06-23T21:24:26.523Z", + "0.0.3": "2011-06-23T21:40:57.793Z", + "0.0.4": "2011-06-23T23:31:02.177Z", + "0.0.5": "2011-09-24T17:39:12.456Z", + "0.0.6": "2011-11-10T21:50:37.053Z", + "0.1.0-alpha": "2011-12-05T20:14:39.208Z", + "0.1.0-alpha2": "2011-12-05T20:20:59.757Z", + "0.1.0-alpha3": "2011-12-05T20:22:50.762Z", + "0.1.0": "2011-12-05T20:54:13.400Z", + "0.1.1": "2011-12-05T23:26:57.478Z" + }, + "author": { + "name": "Stéphane Alnet", + "email": "stephane@shimaore.net" + }, + "repository": { + "type": "git", + "url": "http://stephane.shimaore.net/git/?p=esl.git" + }, + "versions": { + "0.0.6": "http://registry.npmjs.org/esl/0.0.6", + "0.1.1": "http://registry.npmjs.org/esl/0.1.1" + }, + "dist": { + "0.0.6": { + "shasum": "1e5d6f948420e46451dde81427f4d751c7a534e4", + "tarball": "http://registry.npmjs.org/esl/-/esl-0.0.6.tgz" + }, + "0.1.1": { + "shasum": "38fb75f0de5a64f7c324cf30f511356687df0bed", + "tarball": "http://registry.npmjs.org/esl/-/esl-0.1.1.tgz" + } + }, + "keywords": [ + "freeswitch event" + ], + "url": "http://registry.npmjs.org/esl/" + }, + "espresso": { + "name": "espresso", + "description": "Development tools for The-M-Project", + "dist-tags": { + "latest": "0.8.0" + }, + "maintainers": [ + { + "name": "mwaylabs", + "email": "s.pfleiderer@mwaysolutions.com" + } + ], + "time": { + "modified": "2011-12-06T15:41:04.025Z", + "created": "2011-05-10T12:37:07.564Z", + "0.4.0": "2011-05-10T12:37:08.188Z", + "0.4.1": "2011-05-24T13:10:06.532Z", + "0.4.2": "2011-05-24T15:35:16.707Z", + "0.6.0": "2011-07-01T15:17:25.120Z", + "0.6.1": "2011-07-08T08:18:55.107Z", + "0.7.0": "2011-07-22T13:07:51.431Z", + "0.7.1": "2011-07-25T08:17:32.830Z", + "0.7.2": "2011-10-19T11:47:14.515Z", + "0.7.3": "2011-11-23T11:42:05.388Z", + "0.8.0": "2011-12-06T15:41:04.025Z" + }, + "author": { + "name": "M-WAY Solutions GmbH", + "email": "s.pfleiderer@mwaysolutions.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mwaylabs/Espresso.git" + }, + "versions": { + "0.4.0": "http://registry.npmjs.org/espresso/0.4.0", + "0.4.1": "http://registry.npmjs.org/espresso/0.4.1", + "0.4.2": "http://registry.npmjs.org/espresso/0.4.2", + "0.6.0": "http://registry.npmjs.org/espresso/0.6.0", + "0.6.1": "http://registry.npmjs.org/espresso/0.6.1", + "0.7.0": "http://registry.npmjs.org/espresso/0.7.0", + "0.7.1": "http://registry.npmjs.org/espresso/0.7.1", + "0.7.2": "http://registry.npmjs.org/espresso/0.7.2", + "0.7.3": "http://registry.npmjs.org/espresso/0.7.3", + "0.8.0": "http://registry.npmjs.org/espresso/0.8.0" + }, + "dist": { + "0.4.0": { + "shasum": "6b748b30dd592139dab8708ca789f3ad9db7df3b", + "tarball": "http://registry.npmjs.org/espresso/-/espresso-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "dd489fe0add8b688aa7a730301afe3b37687b212", + "tarball": "http://registry.npmjs.org/espresso/-/espresso-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "efd909fd22e0134a5e8dfd8fa10e2ffcf9f228f6", + "tarball": "http://registry.npmjs.org/espresso/-/espresso-0.4.2.tgz" + }, + "0.6.0": { + "shasum": "a0c91d39f6b068abcb1c86c3c3a1749f0850b4ef", + "tarball": "http://registry.npmjs.org/espresso/-/espresso-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "e4d1fab54cf37ba5d912f0a19c95a0055fbe59ca", + "tarball": "http://registry.npmjs.org/espresso/-/espresso-0.6.1.tgz" + }, + "0.7.0": { + "shasum": "f7e804d3b54c21728568a7de652188dbe99a2860", + "tarball": "http://registry.npmjs.org/espresso/-/espresso-0.7.0.tgz" + }, + "0.7.1": { + "shasum": "ee62112de8c08328f2355fc13efec732448491ee", + "tarball": "http://registry.npmjs.org/espresso/-/espresso-0.7.1.tgz" + }, + "0.7.2": { + "shasum": "c8f5f3cd8b49ade2c865070664b2861101d5cf05", + "tarball": "http://registry.npmjs.org/espresso/-/espresso-0.7.2.tgz" + }, + "0.7.3": { + "shasum": "cc749ad393cedc12dd0c950e0b447ae87c48696a", + "tarball": "http://registry.npmjs.org/espresso/-/espresso-0.7.3.tgz" + }, + "0.8.0": { + "shasum": "bfce5a10ae4358617bd67ed604a6ca6ca4bb78e4", + "tarball": "http://registry.npmjs.org/espresso/-/espresso-0.8.0.tgz" + } + }, + "url": "http://registry.npmjs.org/espresso/" + }, + "esprima": { + "name": "esprima", + "description": "ECMAScript parsing infrastructure for multipurpose analysis", + "dist-tags": { + "latest": "0.9.4" + }, + "readme": "Esprima ([esprima.org](http://esprima.org)) is an experimental ECMAScript\n(also popularly known as JavaScript) parsing infrastructure for multipurpose\nanalysis. It is also written in ECMAScript.\n\nEsprima is still in the development, for now please check\n[the wiki documentation](http://code.google.com/p/esprima/wiki/Esprima).\nSince it is not comprehensive nor complete, refer to the\n[issue tracker](http://code.google.com/p/esprima/issues/list) for known\nproblems and future plans.\n\nFeedback and contribution are welcomed! Please read the\n[contribution guide](http://code.google.com/p/esprima/wiki/ContributionGuide)\nfor further info.\n\n\n### License\n\nCopyright (C) 2011 [Ariya Hidayat](http://ariya.ofilabs.com/about)\n (twitter: [@ariyahidayat](http://twitter.com/ariyahidayat)).\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\nARE DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\nTHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n", + "maintainers": [ + { + "name": "ariya", + "email": "ariya.hidayat@gmail.com" + } + ], + "time": { + "modified": "2011-12-13T16:10:32.001Z", + "created": "2011-11-25T05:45:39.271Z", + "0.7.0": "2011-11-25T05:45:41.118Z", + "0.8.0": "2011-11-27T19:59:06.359Z", + "0.8.1": "2011-11-30T15:43:01.939Z", + "0.8.2": "2011-12-01T16:40:18.907Z", + "0.9.0": "2011-12-02T16:10:54.419Z", + "0.9.1": "2011-12-03T18:34:53.006Z", + "0.9.2": "2011-12-05T15:24:51.970Z", + "0.9.3": "2011-12-09T06:36:24.578Z", + "0.9.4": "2011-12-13T16:10:32.001Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/ariya/esprima.git" + }, + "versions": { + "0.7.0": "http://registry.npmjs.org/esprima/0.7.0", + "0.8.0": "http://registry.npmjs.org/esprima/0.8.0", + "0.8.1": "http://registry.npmjs.org/esprima/0.8.1", + "0.8.2": "http://registry.npmjs.org/esprima/0.8.2", + "0.9.0": "http://registry.npmjs.org/esprima/0.9.0", + "0.9.1": "http://registry.npmjs.org/esprima/0.9.1", + "0.9.2": "http://registry.npmjs.org/esprima/0.9.2", + "0.9.3": "http://registry.npmjs.org/esprima/0.9.3", + "0.9.4": "http://registry.npmjs.org/esprima/0.9.4" + }, + "dist": { + "0.7.0": { + "shasum": "73e71270859ab68eb3f806ea5244536670ba7e72", + "tarball": "http://registry.npmjs.org/esprima/-/esprima-0.7.0.tgz" + }, + "0.8.0": { + "shasum": "c3a4d9eb2bab14f050b443296f9acbc83952c9d6", + "tarball": "http://registry.npmjs.org/esprima/-/esprima-0.8.0.tgz" + }, + "0.8.1": { + "shasum": "248b67200011337474e42ddd2afe2c7c7a62756d", + "tarball": "http://registry.npmjs.org/esprima/-/esprima-0.8.1.tgz" + }, + "0.8.2": { + "shasum": "069a33aaacbb45a60b8071b4cfc6fb6929ebcb50", + "tarball": "http://registry.npmjs.org/esprima/-/esprima-0.8.2.tgz" + }, + "0.9.0": { + "shasum": "9b35d752fb826a53f38661bfc1106723ba583ddf", + "tarball": "http://registry.npmjs.org/esprima/-/esprima-0.9.0.tgz" + }, + "0.9.1": { + "shasum": "7f728fda0ee40873d00511eb9267566e6ccc8ba0", + "tarball": "http://registry.npmjs.org/esprima/-/esprima-0.9.1.tgz" + }, + "0.9.2": { + "shasum": "8c6829495376d53580b97b3b6ba88af58e919d17", + "tarball": "http://registry.npmjs.org/esprima/-/esprima-0.9.2.tgz" + }, + "0.9.3": { + "shasum": "e8bba20b413e91a2175441303599a5123b146eb7", + "tarball": "http://registry.npmjs.org/esprima/-/esprima-0.9.3.tgz" + }, + "0.9.4": { + "shasum": "49a0581c2de45aa17d44792540267bddc7574ee1", + "tarball": "http://registry.npmjs.org/esprima/-/esprima-0.9.4.tgz" + } + }, + "url": "http://registry.npmjs.org/esprima/" + }, + "esproxy": { + "name": "esproxy", + "description": "A fault-tolerant proxy layer for ElasticSearch.", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "bcoe", + "email": "bcoe@uoguelph.ca" + } + ], + "time": { + "modified": "2011-08-23T01:13:00.288Z", + "created": "2011-08-23T00:31:27.934Z", + "0.0.1": "2011-08-23T00:31:29.397Z", + "0.0.2": "2011-08-23T00:40:05.815Z", + "0.0.3": "2011-08-23T01:13:00.288Z" + }, + "author": { + "name": "Ben Coe", + "email": "bencoe@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/bcoe/node-elasticsearch-proxy.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/esproxy/0.0.1", + "0.0.2": "http://registry.npmjs.org/esproxy/0.0.2", + "0.0.3": "http://registry.npmjs.org/esproxy/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "b9f447e5551bf3005b4d9602ca92cacd73c65d26", + "tarball": "http://registry.npmjs.org/esproxy/-/esproxy-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "a3f8812961c3d4ebba81d13deac14beb76f5a3b5", + "tarball": "http://registry.npmjs.org/esproxy/-/esproxy-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "2adcc4dc72424f6b8041f20d3170c368623eccd5", + "tarball": "http://registry.npmjs.org/esproxy/-/esproxy-0.0.3.tgz" + } + }, + "keywords": [ + "elasticsearch", + "proxy" + ], + "url": "http://registry.npmjs.org/esproxy/" + }, + "Estro": { + "name": "Estro", + "description": "Extended String Object, Gain more from your strings.", + "dist-tags": { + "latest": "0.1.5" + }, + "maintainers": [ + { + "name": "nijikokun", + "email": "nijikokun@gmail.com" + } + ], + "time": { + "modified": "2011-05-06T04:13:48.281Z", + "created": "2011-05-06T02:21:25.976Z", + "0.1.3": "2011-05-06T02:21:26.359Z", + "0.1.4": "2011-05-06T03:18:25.294Z", + "0.1.5": "2011-05-06T04:13:48.281Z" + }, + "author": { + "name": "Nijikokun", + "email": "nijikokun@gmail.com", + "url": "@nijikokun" + }, + "repository": { + "type": "git", + "url": "git://github.com/Nijikokun/Estro.git" + }, + "versions": { + "0.1.3": "http://registry.npmjs.org/Estro/0.1.3", + "0.1.4": "http://registry.npmjs.org/Estro/0.1.4", + "0.1.5": "http://registry.npmjs.org/Estro/0.1.5" + }, + "dist": { + "0.1.3": { + "shasum": "4954e24c929eb03a32a17b9764ddba973093fc24", + "tarball": "http://registry.npmjs.org/Estro/-/Estro-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "d1ac5caf83dc0c6172732c81f23a48e68bfd0efa", + "tarball": "http://registry.npmjs.org/Estro/-/Estro-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "a37df0ffcc1251dd46558c37fdc7dad284ae844e", + "tarball": "http://registry.npmjs.org/Estro/-/Estro-0.1.5.tgz" + } + }, + "url": "http://registry.npmjs.org/Estro/" + }, + "etch-a-sketch": { + "name": "etch-a-sketch", + "description": "A simplified interface for node-canvas ;)", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "jesusabdullah", + "email": "josh.holbrook@gmail.com" + } + ], + "time": { + "modified": "2011-07-08T07:05:31.224Z", + "created": "2011-07-08T07:05:30.195Z", + "0.0.1": "2011-07-08T07:05:31.224Z" + }, + "author": { + "name": "Joshua Holbrook", + "email": "josh.holbrook@gmail.com", + "url": "http://jesusabdullah.github.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/jesusabdullah/node-etchASketch.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/etch-a-sketch/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "2e8e97eb8d411a77d983d5541edb4e84d281b19c", + "tarball": "http://registry.npmjs.org/etch-a-sketch/-/etch-a-sketch-0.0.1.tgz" + } + }, + "keywords": [ + "etch", + "sketch", + "etch-a-sketch", + "canvas", + "tongue-in-cheek" + ], + "url": "http://registry.npmjs.org/etch-a-sketch/" + }, + "etech": { + "name": "etech", + "description": "Test Module", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": null, + "maintainers": [ + { + "name": "vishal", + "email": "vishal.amitus@gmail.com" + } + ], + "time": { + "modified": "2011-11-23T13:43:24.946Z", + "created": "2011-11-23T13:43:21.049Z", + "0.0.1": "2011-11-23T13:43:24.946Z" + }, + "author": { + "name": "I.M. Awesome", + "email": "awesome@example.com" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/etech/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "04cf687051329ebc5e5d6546a93b28637182c363", + "tarball": "http://registry.npmjs.org/etech/-/etech-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/etech/" + }, + "etherpad-lite-client": { + "name": "etherpad-lite-client", + "description": "Wrapper for the Etherpad Lite API", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "tomassedovic", + "email": "tomas@sedovic.cz" + } + ], + "time": { + "modified": "2011-12-09T23:57:20.744Z", + "created": "2011-09-01T18:47:00.139Z", + "0.1.0": "2011-09-01T18:47:02.337Z", + "0.1.1": "2011-09-01T18:56:09.071Z", + "0.1.2": "2011-09-01T20:00:50.838Z", + "0.1.3": "2011-09-01T20:23:37.316Z", + "0.1.4": "2011-09-01T20:55:21.380Z", + "0.2.0": "2011-12-09T23:57:20.744Z" + }, + "author": { + "name": "Tomas Sedovic", + "email": "tomas@sedovic.cz" + }, + "repository": { + "type": "git", + "url": "git://github.com/tomassedovic/etherpad-lite-client-js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/etherpad-lite-client/0.1.0", + "0.1.1": "http://registry.npmjs.org/etherpad-lite-client/0.1.1", + "0.1.2": "http://registry.npmjs.org/etherpad-lite-client/0.1.2", + "0.1.3": "http://registry.npmjs.org/etherpad-lite-client/0.1.3", + "0.1.4": "http://registry.npmjs.org/etherpad-lite-client/0.1.4", + "0.2.0": "http://registry.npmjs.org/etherpad-lite-client/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "7ce5777579074fc1528ed8954b25322a12a20a0a", + "tarball": "http://registry.npmjs.org/etherpad-lite-client/-/etherpad-lite-client-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "af18de5f3079341891cb62350225f03910695151", + "tarball": "http://registry.npmjs.org/etherpad-lite-client/-/etherpad-lite-client-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "82bbfa26d38367e0f6d39255ab06b1ada8a3acc7", + "tarball": "http://registry.npmjs.org/etherpad-lite-client/-/etherpad-lite-client-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "1ae00f7d66f8d7ad04e90d8393cf574aac132511", + "tarball": "http://registry.npmjs.org/etherpad-lite-client/-/etherpad-lite-client-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "c84a31211cb186246dcc1e60ac75efabf5e059ad", + "tarball": "http://registry.npmjs.org/etherpad-lite-client/-/etherpad-lite-client-0.1.4.tgz" + }, + "0.2.0": { + "shasum": "df3e40864d8e04ff96b82369075e5eed74eea574", + "tarball": "http://registry.npmjs.org/etherpad-lite-client/-/etherpad-lite-client-0.2.0.tgz" + } + }, + "keywords": [ + "etherpad", + "api" + ], + "url": "http://registry.npmjs.org/etherpad-lite-client/" + }, + "etsy": { + "name": "etsy", + "description": "Asynchronous Etsy API REST client.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "Electro", + "email": "owlberteinstein@gmail.com" + } + ], + "time": { + "modified": "2011-02-20T17:46:52.281Z", + "created": "2011-02-15T19:32:41.449Z", + "0.1.0": "2011-02-15T19:32:41.957Z", + "0.1.1": "2011-02-20T17:46:52.281Z" + }, + "author": { + "name": "Mak Nazečić-Andrlon", + "email": "owlberteinstein@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Imperion/node-etsy.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/etsy/0.1.0", + "0.1.1": "http://registry.npmjs.org/etsy/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "c4642ef442c5a0357adde9ce11839771efa43b88", + "tarball": "http://registry.npmjs.org/etsy/-/etsy-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "2f2a7d7c87d40ec20a4227c602edbf125ed304ed", + "tarball": "http://registry.npmjs.org/etsy/-/etsy-0.1.1.tgz" + } + }, + "keywords": [ + "etsy", + "client" + ], + "url": "http://registry.npmjs.org/etsy/" + }, + "eve": { + "name": "eve", + "dist-tags": { + "latest": "0.2.4" + }, + "maintainers": [ + { + "name": "dmitrybaranovskiy", + "email": "dmitry@baranovskiy.com" + } + ], + "time": { + "modified": "2011-04-18T08:34:52.454Z", + "created": "2011-04-18T08:34:50.929Z", + "0.2.4": "2011-04-18T08:34:52.454Z" + }, + "author": { + "name": "Dmitry Baranovskiy", + "email": "dmitry@baranovskiy.com", + "url": "http://dmitry.baranovskiy.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:DmitryBaranovskiy/eve.git" + }, + "versions": { + "0.2.4": "http://registry.npmjs.org/eve/0.2.4" + }, + "dist": { + "0.2.4": { + "shasum": "6324659497bccf9bb794203d7d8a35d3e74f8020", + "tarball": "http://registry.npmjs.org/eve/-/eve-0.2.4.tgz" + } + }, + "url": "http://registry.npmjs.org/eve/" + }, + "EVE": { + "name": "EVE", + "description": "A JavaScript object schema, processor and validation lib.", + "dist-tags": { + "latest": "0.0.4" + }, + "readme": null, + "maintainers": [ + { + "name": "hidden", + "email": "zzdhidden@gmail.com" + } + ], + "time": { + "modified": "2011-12-07T05:22:23.433Z", + "created": "2011-11-28T17:45:25.568Z", + "0.0.1pre": "2011-11-28T17:45:29.515Z", + "0.0.1": "2011-11-29T08:06:05.193Z", + "0.0.2": "2011-11-29T08:27:54.637Z", + "0.0.3": "2011-11-30T15:23:10.792Z", + "0.0.4": "2011-12-07T05:22:23.433Z" + }, + "author": { + "name": "Hidden", + "email": "zzdhidden@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/zzdhidden/EVE.git" + }, + "versions": { + "0.0.1pre": "http://registry.npmjs.org/EVE/0.0.1pre", + "0.0.1": "http://registry.npmjs.org/EVE/0.0.1", + "0.0.2": "http://registry.npmjs.org/EVE/0.0.2", + "0.0.3": "http://registry.npmjs.org/EVE/0.0.3", + "0.0.4": "http://registry.npmjs.org/EVE/0.0.4" + }, + "dist": { + "0.0.1pre": { + "shasum": "a82af4e9bc391fca8cf0312fc5c242902d6d8b07", + "tarball": "http://registry.npmjs.org/EVE/-/EVE-0.0.1pre.tgz" + }, + "0.0.1": { + "shasum": "36fdfd76999bb9bdf6af960f6853e3f6b5dc94d7", + "tarball": "http://registry.npmjs.org/EVE/-/EVE-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "ab6ca65dbbb231b4801224d028040967ec782490", + "tarball": "http://registry.npmjs.org/EVE/-/EVE-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "ab5f30bf16381fdd2316111f973d86d3cd52b7d9", + "tarball": "http://registry.npmjs.org/EVE/-/EVE-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "9429d3279e6430d65ff79113932d77a92aa7bffd", + "tarball": "http://registry.npmjs.org/EVE/-/EVE-0.0.4.tgz" + } + }, + "keywords": [ + "schema", + "process", + "validate" + ], + "url": "http://registry.npmjs.org/EVE/" + }, + "event-emitter": { + "name": "event-emitter", + "description": "Basic event emitter for Node.js and browser", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "medikoo", + "email": "medikoo+npm@medikoo.com" + } + ], + "time": { + "modified": "2011-08-08T14:54:42.697Z", + "created": "2011-08-08T10:29:08.259Z", + "0.1.0": "2011-08-08T10:29:11.216Z", + "0.1.1": "2011-08-08T14:54:42.697Z" + }, + "author": { + "name": "Mariusz Nowak", + "email": "medikoo+event-emitter@medikoo.com", + "url": "http://www.medikoo.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/medikoo/event-emitter.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/event-emitter/0.1.0", + "0.1.1": "http://registry.npmjs.org/event-emitter/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "58fc4e2883290f399f5ce6380c3d5e5910428056", + "tarball": "http://registry.npmjs.org/event-emitter/-/event-emitter-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "6f9d52fdfef38fe2448bcd3e8e6d439981348604", + "tarball": "http://registry.npmjs.org/event-emitter/-/event-emitter-0.1.1.tgz" + } + }, + "keywords": [ + "event", + "events", + "trigger", + "observer", + "listener", + "emitter" + ], + "url": "http://registry.npmjs.org/event-emitter/" + }, + "event-queue": { + "name": "event-queue", + "description": "CommonJS Reactor/A for nodejs", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "gozala", + "email": "rfobic@gmail.com" + } + ], + "repository": { + "type": "git", + "url": "git://github.com/Gozala/reactor-commonjs.git" + }, + "time": { + "modified": "2011-02-24T15:00:17.369Z", + "created": "2011-02-02T13:10:25.187Z", + "0.0.1": "2011-02-02T13:10:25.187Z", + "0.0.2": "2011-02-02T13:10:25.187Z", + "0.0.3": "2011-02-02T13:10:25.187Z", + "0.1.0": "2011-02-24T15:00:17.369Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/event-queue/0.0.1", + "0.0.2": "http://registry.npmjs.org/event-queue/0.0.2", + "0.0.3": "http://registry.npmjs.org/event-queue/0.0.3", + "0.1.0": "http://registry.npmjs.org/event-queue/0.1.0" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/event-queue/-/event-queue-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/event-queue/-/event-queue-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "e477b8c36da7a0aac700c65f5893b83efe0b59b2", + "tarball": "http://registry.npmjs.org/event-queue/-/event-queue-0.0.3.tgz" + }, + "0.1.0": { + "shasum": "e728aca5053f06ca6575c5074e8db7e05dea012b", + "tarball": "http://registry.npmjs.org/event-queue/-/event-queue-0.1.0.tgz" + } + }, + "keywords": [ + "node", + "commonjs", + "reactor", + "event-queue", + "enqueue" + ], + "url": "http://registry.npmjs.org/event-queue/" + }, + "event-stream": { + "name": "event-stream", + "description": "construct pipes of streams of events", + "dist-tags": { + "latest": "0.7.0" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-12-07T06:11:27.548Z", + "created": "2011-08-22T05:26:46.363Z", + "0.1.0": "2011-12-07T06:11:27.548Z", + "0.2.0": "2011-12-07T06:11:27.548Z", + "0.2.1": "2011-12-07T06:11:27.548Z", + "0.3.0": "2011-12-07T06:11:27.548Z", + "0.4.0": "2011-12-07T06:11:27.548Z", + "0.5.0": "2011-12-07T06:11:27.548Z", + "0.5.1": "2011-12-07T06:11:27.548Z", + "0.5.2": "2011-11-01T00:33:33.526Z", + "0.5.3": "2011-11-01T01:16:47.365Z", + "0.6.0": "2011-11-07T08:42:04.761Z", + "0.7.0": "2011-12-07T06:11:27.548Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com", + "url": "http://bit.ly/dominictarr" + }, + "repository": { + "type": "git", + "url": "git://github.com/dominictarr/event-stream.git" + }, + "users": { + "substack": true + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/event-stream/0.1.0", + "0.2.0": "http://registry.npmjs.org/event-stream/0.2.0", + "0.2.1": "http://registry.npmjs.org/event-stream/0.2.1", + "0.3.0": "http://registry.npmjs.org/event-stream/0.3.0", + "0.4.0": "http://registry.npmjs.org/event-stream/0.4.0", + "0.5.0": "http://registry.npmjs.org/event-stream/0.5.0", + "0.5.1": "http://registry.npmjs.org/event-stream/0.5.1", + "0.5.2": "http://registry.npmjs.org/event-stream/0.5.2", + "0.5.3": "http://registry.npmjs.org/event-stream/0.5.3", + "0.6.0": "http://registry.npmjs.org/event-stream/0.6.0", + "0.7.0": "http://registry.npmjs.org/event-stream/0.7.0" + }, + "dist": { + "0.1.0": { + "shasum": "6e9d2d059cf66deeb001d211bd60e45a9c0ae05e", + "tarball": "http://registry.npmjs.org/event-stream/-/event-stream-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "1cbcb8c7b361e5c7d2b72738afca5b6fdfcd31af", + "tarball": "http://registry.npmjs.org/event-stream/-/event-stream-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "8bb45416f8ccffc608a4525e5c0d35fb0c1dc9f5", + "tarball": "http://registry.npmjs.org/event-stream/-/event-stream-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "13185462d01da4b299aa15eb69ba58bbbe1d0e4e", + "tarball": "http://registry.npmjs.org/event-stream/-/event-stream-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "e8c0a3615d4bfb64fb241fbda70aa298c110d78d", + "tarball": "http://registry.npmjs.org/event-stream/-/event-stream-0.4.0.tgz" + }, + "0.5.0": { + "shasum": "afc04362b4a75ff6693b403b1cc996505f78cd6e", + "tarball": "http://registry.npmjs.org/event-stream/-/event-stream-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "39b93b81a5c2012e9bf42013248d1fa867ef680b", + "tarball": "http://registry.npmjs.org/event-stream/-/event-stream-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "a27dda2021993cfade22037178b6da812dd06ea4", + "tarball": "http://registry.npmjs.org/event-stream/-/event-stream-0.5.2.tgz" + }, + "0.5.3": { + "shasum": "b77b9309f7107addfeab63f0c0eafd8db0bd8c1c", + "tarball": "http://registry.npmjs.org/event-stream/-/event-stream-0.5.3.tgz" + }, + "0.6.0": { + "shasum": "5601c6c61f595010d1eabfdc9265b1ad5e9902b8", + "tarball": "http://registry.npmjs.org/event-stream/-/event-stream-0.6.0.tgz" + }, + "0.7.0": { + "shasum": "2d0d12412e0a24f56641766932b9558718e0001f", + "tarball": "http://registry.npmjs.org/event-stream/-/event-stream-0.7.0.tgz" + } + }, + "url": "http://registry.npmjs.org/event-stream/" + }, + "eventable": { + "name": "eventable", + "description": "Eventable is a lightweight asynchronous replacement for node's EventEmitter which also runs beautifully in the browser.", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "lucaswoj", + "email": "lucas@lucaswoj.com" + } + ], + "time": { + "modified": "2011-06-03T21:31:19.800Z", + "created": "2011-06-03T21:31:14.528Z", + "0.0.0": "2011-06-03T21:31:19.800Z" + }, + "author": { + "name": "Lucas Wojciechowski", + "email": "lucas@lucaswoj.com", + "url": "http://lucaswoj.com" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/eventable/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "740a5a53231a8594576c91f67e5cfea4f0de2623", + "tarball": "http://registry.npmjs.org/eventable/-/eventable-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/eventable/" + }, + "eventbrite": { + "name": "eventbrite", + "description": "Eventbrite API Client", + "dist-tags": { + "latest": "0.1.5" + }, + "maintainers": [ + { + "name": "ryanj", + "email": "ryan.jarvinen@gmail.com" + } + ], + "time": { + "modified": "2011-08-19T05:54:02.564Z", + "created": "2011-06-30T01:55:28.593Z", + "0.1.0": "2011-06-30T01:55:29.125Z", + "0.1.1": "2011-06-30T20:26:34.610Z", + "0.1.2": "2011-07-01T05:34:20.596Z", + "0.1.3": "2011-07-25T05:51:20.283Z", + "0.1.4": "2011-07-31T06:33:00.582Z", + "0.1.5": "2011-08-19T05:54:02.564Z" + }, + "author": { + "name": "ryan jarvinen", + "email": "ryan.jarvinen@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/ryanjarvinen/eventbrite.npm.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/eventbrite/0.1.0", + "0.1.1": "http://registry.npmjs.org/eventbrite/0.1.1", + "0.1.2": "http://registry.npmjs.org/eventbrite/0.1.2", + "0.1.3": "http://registry.npmjs.org/eventbrite/0.1.3", + "0.1.4": "http://registry.npmjs.org/eventbrite/0.1.4", + "0.1.5": "http://registry.npmjs.org/eventbrite/0.1.5" + }, + "dist": { + "0.1.0": { + "shasum": "1439bb926c566a1cfb1774a72a9ea5c8b952dd27", + "tarball": "http://registry.npmjs.org/eventbrite/-/eventbrite-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "2215b3c72d48513c80a5a481daa65387a90003f0", + "tarball": "http://registry.npmjs.org/eventbrite/-/eventbrite-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "0114780c89449b2b2f2156979d3ed2293b5147f0", + "tarball": "http://registry.npmjs.org/eventbrite/-/eventbrite-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "32c085498a1ffa1753ff1cd47896bd4c5d4fbfdc", + "tarball": "http://registry.npmjs.org/eventbrite/-/eventbrite-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "d6e0c0fe9a7d9f4873f76d5df5ba200cce3da98d", + "tarball": "http://registry.npmjs.org/eventbrite/-/eventbrite-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "6f908206c926452ed29892154022a59dfe145340", + "tarball": "http://registry.npmjs.org/eventbrite/-/eventbrite-0.1.5.tgz" + } + }, + "keywords": [ + "eventbrite", + "events", + "registration", + "payments", + "location" + ], + "url": "http://registry.npmjs.org/eventbrite/" + }, + "evented": { + "name": "evented", + "description": "A concise event emitter constructor", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "aconbere", + "email": "aconbere@gmail.com" + } + ], + "author": { + "name": "Anders Conbere" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/evented/0.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/evented/-/evented-0.0.1.tgz" + } + }, + "keywords": [ + "event", + "evented" + ], + "url": "http://registry.npmjs.org/evented/" + }, + "evented-twitter": { + "name": "evented-twitter", + "description": "An asynchronous twitter client for node.js", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "polotek", + "email": "marco.rogers@gmail.com" + } + ], + "author": { + "name": "Marco Rogers", + "url": "http://github.com/polotek" + }, + "repository": { + "type": "git", + "url": "http://github.com/polotek/evented-twitter.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/evented-twitter/0.2.0" + }, + "dist": { + "0.2.0": { + "tarball": "http://packages:5984/evented-twitter/-/evented-twitter-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/evented-twitter/" + }, + "eventedsocket": { + "name": "eventedsocket", + "description": "fire events from server to client with evented sockets! - using json over socket.io", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "torgeir", + "email": "torgeir.thoresen@gmail.com" + } + ], + "time": { + "modified": "2011-03-06T14:36:49.097Z", + "created": "2011-01-20T19:23:42.304Z", + "0.0.1": "2011-01-20T19:23:42.775Z", + "0.0.2": "2011-01-21T17:57:01.599Z", + "0.0.3": "2011-01-23T15:41:42.788Z", + "0.0.4": "2011-01-24T20:22:08.068Z", + "0.0.5": "2011-01-25T19:49:20.104Z" + }, + "author": { + "name": "Torgeir Thoresen", + "email": "torgeir.thoresen@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/torgeir/eventedsocket.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/eventedsocket/0.0.1", + "0.0.2": "http://registry.npmjs.org/eventedsocket/0.0.2", + "0.0.3": "http://registry.npmjs.org/eventedsocket/0.0.3", + "0.0.4": "http://registry.npmjs.org/eventedsocket/0.0.4", + "0.0.5": "http://registry.npmjs.org/eventedsocket/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "53e0af1fe462956805a4b181db66295640596807", + "tarball": "http://registry.npmjs.org/eventedsocket/-/eventedsocket-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "31e2bfe08ddc480ce6ed2fd702d19c589cb813a3", + "tarball": "http://registry.npmjs.org/eventedsocket/-/eventedsocket-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "96eb4320dbf8403fbe5a83f75d2e92b509841d13", + "tarball": "http://registry.npmjs.org/eventedsocket/-/eventedsocket-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "a0af49a3da7378834be32b67e59677b5fd5a36ff", + "tarball": "http://registry.npmjs.org/eventedsocket/-/eventedsocket-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "8d9946a4ac09a4ba1fb1ee5c08a78384064f9c54", + "tarball": "http://registry.npmjs.org/eventedsocket/-/eventedsocket-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/eventedsocket/" + }, + "eventemitter": { + "name": "eventemitter", + "description": "Nodejs implementation of EventEmitter", + "dist-tags": { + "latest": "0.3.3" + }, + "maintainers": [ + { + "name": "tmpvar", + "email": "tmpvar@gmail.com" + } + ], + "time": { + "modified": "2011-05-28T23:17:13.398Z", + "created": "2010-12-30T05:30:26.375Z", + "0.3.2": "2010-12-30T05:30:26.519Z", + "0.3.3": "2011-05-28T23:17:13.398Z" + }, + "versions": { + "0.3.2": "http://registry.npmjs.org/eventemitter/0.3.2", + "0.3.3": "http://registry.npmjs.org/eventemitter/0.3.3" + }, + "dist": { + "0.3.2": { + "shasum": "7c96ea3f5b9c85c411dc3e41c3c28743f5b67082", + "tarball": "http://registry.npmjs.org/eventemitter/-/eventemitter-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "d3a0a97edf2d2890b6aa8a703e93a43c03ad8e45", + "tarball": "http://registry.npmjs.org/eventemitter/-/eventemitter-0.3.3.tgz" + } + }, + "keywords": [ + "event", + "node", + "browser", + "observer" + ], + "url": "http://registry.npmjs.org/eventemitter/" + }, + "eventemitter2": { + "name": "eventemitter2", + "description": "A Node.js event emitter implementation with namespaces, wildcards, TTL and browser support.", + "dist-tags": { + "latest": "0.4.1" + }, + "maintainers": [ + { + "name": "hij1nx", + "email": "hij1nx@me.com" + } + ], + "time": { + "modified": "2011-11-23T08:38:26.078Z", + "created": "2011-06-01T08:42:57.907Z", + "0.0.1": "2011-06-01T08:42:58.057Z", + "0.1.0": "2011-06-03T12:30:46.078Z", + "0.1.1": "2011-06-03T12:51:09.514Z", + "0.1.3": "2011-06-11T16:44:31.562Z", + "0.2.5": "2011-06-27T13:58:11.795Z", + "0.2.6": "2011-07-13T18:50:47.731Z", + "0.2.7": "2011-07-25T23:25:05.630Z", + "0.3.5": "2011-07-25T23:27:54.525Z", + "0.3.6": "2011-07-27T02:05:41.295Z", + "0.3.7": "2011-07-28T18:48:59.876Z", + "0.4.0": "2011-07-30T10:56:14.983Z", + "0.4.1": "2011-08-09T21:16:07.328Z" + }, + "author": { + "name": "hij1nx", + "email": "hij1nx@nodejitsu.com" + }, + "users": { + "mvolkmann": true, + "naholyr": true + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/eventemitter2/0.0.1", + "0.1.0": "http://registry.npmjs.org/eventemitter2/0.1.0", + "0.1.1": "http://registry.npmjs.org/eventemitter2/0.1.1", + "0.1.3": "http://registry.npmjs.org/eventemitter2/0.1.3", + "0.2.5": "http://registry.npmjs.org/eventemitter2/0.2.5", + "0.2.6": "http://registry.npmjs.org/eventemitter2/0.2.6", + "0.2.7": "http://registry.npmjs.org/eventemitter2/0.2.7", + "0.3.5": "http://registry.npmjs.org/eventemitter2/0.3.5", + "0.3.6": "http://registry.npmjs.org/eventemitter2/0.3.6", + "0.3.7": "http://registry.npmjs.org/eventemitter2/0.3.7", + "0.4.0": "http://registry.npmjs.org/eventemitter2/0.4.0", + "0.4.1": "http://registry.npmjs.org/eventemitter2/0.4.1" + }, + "dist": { + "0.0.1": { + "shasum": "d7101fd500400ec95295c5f9774ee1c5ce978192", + "tarball": "http://registry.npmjs.org/eventemitter2/-/eventemitter2-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "e4833ce748657878cae71ccdecb5c17092dc0e54", + "tarball": "http://registry.npmjs.org/eventemitter2/-/eventemitter2-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "51b932d79645f439d1e92f92fb713bbd257beeac", + "tarball": "http://registry.npmjs.org/eventemitter2/-/eventemitter2-0.1.1.tgz" + }, + "0.1.3": { + "shasum": "fa5d97c7166432de964a941feeb90f3667110d13", + "tarball": "http://registry.npmjs.org/eventemitter2/-/eventemitter2-0.1.3.tgz" + }, + "0.2.5": { + "shasum": "148c2a868b709bca38e2263e12cc2d8606c3450b", + "tarball": "http://registry.npmjs.org/eventemitter2/-/eventemitter2-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "39efa66b7bedbc3c3ee46240b1dc0c3970ed5d12", + "tarball": "http://registry.npmjs.org/eventemitter2/-/eventemitter2-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "2a069734ac8641bdd74f1d1ddf2084f1788073a5", + "tarball": "http://registry.npmjs.org/eventemitter2/-/eventemitter2-0.2.7.tgz" + }, + "0.3.5": { + "shasum": "ddaf10fe40c6a1e37dfdfed340360cb61c64cb8b", + "tarball": "http://registry.npmjs.org/eventemitter2/-/eventemitter2-0.3.5.tgz" + }, + "0.3.6": { + "shasum": "70de8b0301469ad4e14c4381a6f46149672e414b", + "tarball": "http://registry.npmjs.org/eventemitter2/-/eventemitter2-0.3.6.tgz" + }, + "0.3.7": { + "shasum": "f32760181c841862e3a3f7403d1ed15c7647f540", + "tarball": "http://registry.npmjs.org/eventemitter2/-/eventemitter2-0.3.7.tgz" + }, + "0.4.0": { + "shasum": "c5bc072aa6fc1144c03890b725ab08d2c4e739fc", + "tarball": "http://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "6875a14c1dde52a4c9c8c7ffd033cf79679cd45b", + "tarball": "http://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.1.tgz" + } + }, + "keywords": [ + "event", + "events", + "emitter", + "eventemitter" + ], + "url": "http://registry.npmjs.org/eventemitter2/" + }, + "eventful": { + "name": "eventful", + "description": "EventEmitter based logging for node.js", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "rbradberry", + "email": "rbradberry@gmail.com" + } + ], + "time": { + "modified": "2011-05-03T21:20:17.558Z", + "created": "2011-04-14T20:35:50.246Z", + "0.0.1": "2011-04-14T20:35:50.424Z", + "0.1.1": "2011-04-14T22:43:40.542Z", + "0.1.2": "2011-05-03T21:20:17.558Z" + }, + "author": { + "name": "Russell Bradberry", + "email": "rbradberry@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/eventful/0.0.1", + "0.1.1": "http://registry.npmjs.org/eventful/0.1.1", + "0.1.2": "http://registry.npmjs.org/eventful/0.1.2" + }, + "dist": { + "0.0.1": { + "shasum": "9ba69a383839ecd6f6f11d4e47759da5314dde08", + "tarball": "http://registry.npmjs.org/eventful/-/eventful-0.0.1.tgz" + }, + "0.1.1": { + "shasum": "e4b22347988c08d8c9d100372f63d51596e60623", + "tarball": "http://registry.npmjs.org/eventful/-/eventful-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "851ecd0eb0809179a7ec52c7a9f8ea82f50aec72", + "tarball": "http://registry.npmjs.org/eventful/-/eventful-0.1.2.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/eventful/" + }, + "eventhub": { + "name": "eventhub", + "description": "Message passing in node implemented with EventEmitters", + "dist-tags": { + "latest": "1.0.2" + }, + "maintainers": [ + { + "name": "beatgammit", + "email": "t.jameson.little@gmail.com" + } + ], + "time": { + "modified": "2011-09-20T19:32:55.783Z", + "created": "2011-08-14T06:32:06.334Z", + "1.0.0": "2011-08-14T06:32:08.404Z", + "1.0.1": "2011-09-08T20:29:59.735Z", + "1.0.2": "2011-09-20T19:32:55.783Z" + }, + "author": { + "name": "T. Jameson Little", + "email": "t.jameson.little@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/beatgammit/eventhub.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/eventhub/1.0.0", + "1.0.1": "http://registry.npmjs.org/eventhub/1.0.1", + "1.0.2": "http://registry.npmjs.org/eventhub/1.0.2" + }, + "dist": { + "1.0.0": { + "shasum": "7df0dff484a8176aac2b286aa4858b9dceb3373f", + "tarball": "http://registry.npmjs.org/eventhub/-/eventhub-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "81ba29d630862937522c90ceb2aef08aa8473214", + "tarball": "http://registry.npmjs.org/eventhub/-/eventhub-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "9cad98964b69934bc56524f122f9346633f10d50", + "tarball": "http://registry.npmjs.org/eventhub/-/eventhub-1.0.2.tgz" + } + }, + "keywords": [ + "ender", + "message", + "messages", + "events", + "event", + "hub", + "eventemitter", + "emitter" + ], + "url": "http://registry.npmjs.org/eventhub/" + }, + "eventpipe": { + "name": "eventpipe", + "description": "An Event Pipe for node.js", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "dhruvbird", + "email": "dhruvbird@gmail.com" + } + ], + "time": { + "modified": "2011-06-09T17:25:12.428Z", + "created": "2011-06-06T13:40:41.114Z", + "0.0.1": "2011-06-06T13:40:43.116Z", + "0.0.2": "2011-06-07T08:47:23.356Z", + "0.0.3": "2011-06-09T17:25:12.428Z" + }, + "author": { + "name": "Dhruv Matani" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/eventpipe/0.0.1", + "0.0.2": "http://registry.npmjs.org/eventpipe/0.0.2", + "0.0.3": "http://registry.npmjs.org/eventpipe/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "de54e7ac6e7624b738b7e8fd2f94d1be59bd72db", + "tarball": "http://registry.npmjs.org/eventpipe/-/eventpipe-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "002b4c55d327f060389a9c83ca3365996c9d3bb4", + "tarball": "http://registry.npmjs.org/eventpipe/-/eventpipe-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "4f463f754d9d30c901d0f8ec42013db0b4c302b2", + "tarball": "http://registry.npmjs.org/eventpipe/-/eventpipe-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/eventpipe/" + }, + "eventproxy": { + "name": "eventproxy", + "description": "An implementation of task/event based asynchronous pattern.", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "这个世界上不存在所谓回调函数深度嵌套的问题。 —— Jackson Tian(http://weibo.com/shyvo)\n\n---\n\n[EventProxy API Documentation](http://eventproxy.html5ify.com/jsdoc/symbols/EventProxy.html) \n\n npm install eventproxy\n\n---\nEventProxy.js仅仅是一个很轻量的工具,但是能够带来一种事件式编程的思维变化。有几个特点:\n\n 1. 利用事件机制解耦复杂业务逻辑\n 2. 移除被广为诟病的深度callback嵌套问题\n 3. 将串行等待变成并行等待,提升多异步场景下的执行效率\n 4. 无平台依赖,适合前后端,能用于浏览器和Node.js\n\n现在的,无深度嵌套的,并行的\n\n var proxy = new EventProxy();\n var render = function (template, data, l10n){\n _.template(template, data);\n };\n proxy.assign(\"template\", \"data\", \"l10n\", render);\n $.get(\"template\", function (template) {\n // something\n proxy.trigger(\"template\", template);\n });\n $.get(\"data\", function (data) {\n // something\n proxy.trigger(\"data\", data);\n });\n $.get(\"l10n\", function (l10n) {\n // something\n proxy.trigger(\"l10n\", l10n);\n });\n\n过去的,深度嵌套的,串行的。\n\n var render = function (template, data){\n _.template(template, data);\n };\n $.get(\"template\", function (template) {\n // something\n $.get(\"data\", function (data) {\n // something\n $.get(\"l10n\", function (l10n) {\n // something\n render(template, data);\n });\n });\n });\n\nFor Frontend user:\n\nAssign once. The callback will be executed once when all event were fired.\n\n \n \n\nAssign always. The callback will be executed first time when all event were fired. And after that, any event was fired will trigger callback. It's useful when you need refresh UI with newest data, e.g. stock app.\n\n \n \n\nFor Node.js:\n\n var EventProxy = require(\"eventproxy.js\").EventProxy;\n\n var proxy = new EventProxy();\n var render = function (template, data, l10n){\n return _.template(template, data);\n };\n proxy.assign(\"template\", \"data\", \"l10n\", render);\n $.get(\"template\", function (template) {\n // something\n proxy.trigger(\"template\", template);\n });\n $.get(\"data\", function (data) {\n // something\n proxy.trigger(\"data\", data);\n });\n $.get(\"l10n\", function (l10n) {\n // something\n proxy.trigger(\"l10n\", l10n);\n });\n\n", + "maintainers": [ + { + "name": "jacksontian", + "email": "shyvo1987@gmail.com" + } + ], + "time": { + "modified": "2011-12-07T16:38:53.620Z", + "created": "2011-12-07T16:38:49.177Z", + "0.1.0": "2011-12-07T16:38:53.620Z" + }, + "author": { + "name": "Jackson Tian", + "email": "shyvo1987@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/JacksonTian/eventproxy.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/eventproxy/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "bf41d152280e3cd6a3d75de4da82c23cbc3b77cd", + "tarball": "http://registry.npmjs.org/eventproxy/-/eventproxy-0.1.0.tgz" + } + }, + "keywords": [ + "event", + "task-base", + "event machine", + "nested callback terminator" + ], + "url": "http://registry.npmjs.org/eventproxy/" + }, + "EventProxy.js": { + "name": "EventProxy.js", + "description": "An implementation of task/event based asynchronous pattern.", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "jacksontian", + "email": "shyvo1987@gmail.com" + } + ], + "time": { + "modified": "2011-12-03T14:25:41.030Z", + "created": "2011-07-20T09:44:38.573Z", + "1.1.7": "2011-07-20T09:44:40.980Z", + "0.0.1": "2011-07-20T09:51:06.465Z", + "0.0.2": "2011-10-04T08:47:11.062Z", + "0.0.3": "2011-10-05T09:34:45.802Z", + "0.0.4": "2011-10-27T08:43:58.880Z" + }, + "author": { + "name": "Jackson Tian", + "email": "shyvo1987@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/JacksonTian/eventproxy.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/EventProxy.js/0.0.1", + "0.0.2": "http://registry.npmjs.org/EventProxy.js/0.0.2", + "0.0.3": "http://registry.npmjs.org/EventProxy.js/0.0.3", + "0.0.4": "http://registry.npmjs.org/EventProxy.js/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "9647a50daa0a45c2f64231b65ef96de0cd7d0fee", + "tarball": "http://registry.npmjs.org/EventProxy.js/-/EventProxy.js-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "37c4d2280768fb607f854eb3bbd124ef7d8f0c6d", + "tarball": "http://registry.npmjs.org/EventProxy.js/-/EventProxy.js-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "1da682867110fac53e50e595afb09ea5d5f937c6", + "tarball": "http://registry.npmjs.org/EventProxy.js/-/EventProxy.js-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "aed98504fa8e5379c53fe8fa1f86af80a2610b79", + "tarball": "http://registry.npmjs.org/EventProxy.js/-/EventProxy.js-0.0.4.tgz" + } + }, + "keywords": [ + "event", + "task-base" + ], + "url": "http://registry.npmjs.org/EventProxy.js/" + }, + "eventreactor": { + "name": "eventreactor", + "description": "EventEmitters on a syntax suger rush", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "V1", + "email": "info@3rd-Eden.com" + } + ], + "time": { + "modified": "2011-12-12T09:13:45.090Z", + "created": "2011-09-29T14:17:45.787Z", + "0.0.1": "2011-09-29T14:17:46.297Z", + "0.0.2": "2011-12-12T09:13:45.090Z" + }, + "author": { + "name": "Arnout Kazemier", + "email": "info@3rd-Eden.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/observing/eventreactor.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/eventreactor/0.0.1", + "0.0.2": "http://registry.npmjs.org/eventreactor/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "572237fb15e633d8f86034d2a95a4c4965ceae10", + "tarball": "http://registry.npmjs.org/eventreactor/-/eventreactor-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "bf0d00d635bda126460263047113e28e51d64708", + "tarball": "http://registry.npmjs.org/eventreactor/-/eventreactor-0.0.2.tgz" + } + }, + "keywords": [ + "event", + "eventemitter", + "observer" + ], + "url": "http://registry.npmjs.org/eventreactor/" + }, + "eventrouter": { + "name": "eventrouter", + "description": "Routing and filtering for EventEmitter", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "fractal", + "email": "contact@wearefractal.com" + } + ], + "time": { + "modified": "2011-11-04T14:59:57.063Z", + "created": "2011-11-04T14:59:55.542Z", + "0.0.1": "2011-11-04T14:59:57.063Z" + }, + "author": { + "name": "Fractal", + "email": "contact@wearefractal.com", + "url": "http://wearefractal.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/wearefractal/EventRouter.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/eventrouter/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "bc616335c226d4129a2b508134c1256d8681f046", + "tarball": "http://registry.npmjs.org/eventrouter/-/eventrouter-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/eventrouter/" + }, + "events": { + "name": "events", + "description": "Node's event emitter for all engines.", + "dist-tags": { + "latest": "0.4.0" + }, + "maintainers": [ + { + "name": "gozala", + "email": "rfobic@gmail.com" + } + ], + "time": { + "modified": "2011-07-08T17:25:49.385Z", + "created": "2011-04-22T10:34:40.266Z", + "0.1.0": "2011-04-22T10:34:40.665Z", + "0.1.1": "2011-05-16T21:53:31.239Z", + "0.2.0": "2011-06-10T15:54:38.643Z", + "0.3.0": "2011-07-03T19:16:37.658Z", + "0.4.0": "2011-07-08T17:25:49.385Z" + }, + "author": { + "name": "Irakli Gozalishvili", + "email": "rfobic@gmail.com", + "url": "http://jeditoolkit.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Gozala/events.git", + "web": "https://github.com/Gozala/events" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/events/0.1.0", + "0.1.1": "http://registry.npmjs.org/events/0.1.1", + "0.2.0": "http://registry.npmjs.org/events/0.2.0", + "0.3.0": "http://registry.npmjs.org/events/0.3.0", + "0.4.0": "http://registry.npmjs.org/events/0.4.0" + }, + "dist": { + "0.1.0": { + "shasum": "25457f55620b55b04615521562b11e432e7ddd6a", + "tarball": "http://registry.npmjs.org/events/-/events-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "76c05256f8bc0cdf67d05c87e3a77f45e2d4f044", + "tarball": "http://registry.npmjs.org/events/-/events-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "1eae9afeeb2891a7320bc5b5dc6956647e15841e", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.16-darwin-10.7.0": { + "shasum": "523528886f84b8c0f3f0d3ae482812c07e8007ab", + "tarball": "http://registry.npmjs.org/events/-/events-0.2.0-0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.16-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/events/-/events-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "79d45e0df14f13db3fb8692c58214672a53c156b", + "tarball": "http://registry.npmjs.org/events/-/events-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "623d521a4956e44521d98d30e1c6bb6ad5c0fd5d", + "tarball": "http://registry.npmjs.org/events/-/events-0.4.0.tgz" + } + }, + "keywords": [ + "events", + "eventEmitter", + "eventDispatcher", + "listeners" + ], + "url": "http://registry.npmjs.org/events/" + }, + "events.io": { + "name": "events.io", + "description": "Simple and lightweight Socket.io adapter that exposes a user-defined event-based api for realtime client/server interaction.", + "dist-tags": { + "latest": "0.4.2" + }, + "maintainers": [ + { + "name": "mrmarbles", + "email": "bcarr14@gmail.com" + } + ], + "time": { + "modified": "2011-05-29T03:47:18.767Z", + "created": "2011-05-29T03:47:18.309Z", + "0.4.2": "2011-05-29T03:47:18.767Z" + }, + "author": { + "name": "Brian Carr", + "email": "bcarr14@gmail.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:mrmarbles/events.io.git" + }, + "versions": { + "0.4.2": "http://registry.npmjs.org/events.io/0.4.2" + }, + "dist": { + "0.4.2": { + "shasum": "ab9ef8316f607e801f87684fbcc15892a3a31230", + "tarball": "http://registry.npmjs.org/events.io/-/events.io-0.4.2.tgz" + } + }, + "url": "http://registry.npmjs.org/events.io/" + }, + "events.node": { + "name": "events.node", + "description": "Node.JS events module (packaged for Node.JS and Ender.JS)", + "dist-tags": { + "latest": "0.4.9" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-10-28T17:08:04.753Z", + "created": "2011-10-28T17:08:04.188Z", + "0.4.9": "2011-10-28T17:08:04.753Z" + }, + "author": { + "name": "Joyent", + "url": "http://www.joyent.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/coolaj86/nodejs-libs-4-browser.git" + }, + "versions": { + "0.4.9": "http://registry.npmjs.org/events.node/0.4.9" + }, + "dist": { + "0.4.9": { + "shasum": "82998ea749501145fd2da7cf8ecbe6420fac02a4", + "tarball": "http://registry.npmjs.org/events.node/-/events.node-0.4.9.tgz" + } + }, + "keywords": [ + "ender", + "events" + ], + "url": "http://registry.npmjs.org/events.node/" + }, + "EventServer": { + "name": "EventServer", + "description": "Event driven server", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "jaredjbarnes", + "email": "jared.j.barnes@gmail.com" + } + ], + "time": { + "modified": "2011-09-24T15:40:41.377Z", + "created": "2011-09-22T05:02:39.500Z", + "0.0.1": "2011-09-22T05:02:41.509Z", + "0.0.2": "2011-09-24T15:40:41.377Z" + }, + "author": { + "name": "Jared Barnes", + "email": "jared.j.barnes@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/EventServer/0.0.1", + "0.0.2": "http://registry.npmjs.org/EventServer/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "5e6d2db6dd3a7c6ffb2036fce5b4d882fbddf324", + "tarball": "http://registry.npmjs.org/EventServer/-/EventServer-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c2d0cb8a279dfae43aa0f999b083be3011a828a8", + "tarball": "http://registry.npmjs.org/EventServer/-/EventServer-0.0.2.tgz" + } + }, + "keywords": [ + "http", + "server", + "event", + "static", + "application" + ], + "url": "http://registry.npmjs.org/EventServer/" + }, + "eventstack": { + "name": "eventstack", + "description": "Middleware for EventEmitters", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "stagas", + "email": "gstagas@gmail.com" + } + ], + "time": { + "modified": "2011-10-24T08:17:07.538Z", + "created": "2011-10-24T08:17:06.786Z", + "0.0.1": "2011-10-24T08:17:07.538Z" + }, + "author": { + "name": "George Stagas", + "email": "gstagas@gmail.com", + "url": "http://stagas.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/stagas/eventstack.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/eventstack/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "6d74be878d128619cf5431a0e0f641a16ffc40f4", + "tarball": "http://registry.npmjs.org/eventstack/-/eventstack-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/eventstack/" + }, + "eventstream": { + "name": "eventstream", + "description": "A server-side companion for EventSource", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "k", + "email": "kbjr14@gmail.com" + } + ], + "time": { + "modified": "2011-11-04T02:46:28.516Z", + "created": "2011-08-29T07:56:55.981Z", + "0.0.1": "2011-08-29T07:56:57.182Z", + "0.0.2": "2011-08-29T09:08:18.653Z", + "0.0.3": "2011-11-04T02:46:28.516Z" + }, + "author": { + "name": "James Brumond", + "email": "kbjr14@gmail.com", + "url": "http://jbrumond.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/kbjr/node-eventstream.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/eventstream/0.0.1", + "0.0.2": "http://registry.npmjs.org/eventstream/0.0.2", + "0.0.3": "http://registry.npmjs.org/eventstream/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "9eee1ccff81634de739efdb8b0266f7524e7df09", + "tarball": "http://registry.npmjs.org/eventstream/-/eventstream-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "bfec890b52e23e0a68fcbca82e0cd850cf1c190f", + "tarball": "http://registry.npmjs.org/eventstream/-/eventstream-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "241a9ee243717608be013bc30d5e424b9626c342", + "tarball": "http://registry.npmjs.org/eventstream/-/eventstream-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/eventstream/" + }, + "eventvat": { + "name": "eventvat", + "description": "Evented, in-process key/value store for Node.js and the browser", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "hij1nx", + "email": "hij1nx@me.com" + } + ], + "time": { + "modified": "2011-09-02T13:04:23.369Z", + "created": "2011-09-02T13:04:22.953Z", + "0.1.1": "2011-09-02T13:04:23.369Z" + }, + "author": { + "name": "hij1nx", + "email": "hij1nx@me.com", + "url": "http://www.nodejitsu.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/hij1nx/EventVat.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/eventvat/0.1.1" + }, + "dist": { + "0.1.1": { + "shasum": "927a5690c50622863f0584801f092afb3ba24bce", + "tarball": "http://registry.npmjs.org/eventvat/-/eventvat-0.1.1.tgz" + } + }, + "keywords": [ + "storage", + "database", + "redis" + ], + "url": "http://registry.npmjs.org/eventvat/" + }, + "every-stream": { + "name": "every-stream", + "description": "Generic DSN-based streaming API: Stream('ftp://user@host/path/to/file.txt').pipe(Stream('file:///path/to/local.txt'))", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "naholyr", + "email": "naholyr@gmail.com" + } + ], + "time": { + "modified": "2011-11-23T08:41:10.482Z", + "created": "2011-10-31T22:45:19.072Z", + "0.0.1": "2011-10-31T22:45:20.572Z", + "0.1.0": "2011-11-20T20:24:19.074Z" + }, + "author": { + "name": "Nicolas Chambrier", + "email": "naholyr@gmail.com", + "url": "http://naholyr.fr" + }, + "repository": { + "url": "git@github.com:naholyr/node-every-stream.git" + }, + "users": { + "naholyr": true + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/every-stream/0.0.1", + "0.1.0": "http://registry.npmjs.org/every-stream/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "ce36ee065fa52594c45ca18b97c784ed4ad48e38", + "tarball": "http://registry.npmjs.org/every-stream/-/every-stream-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "ddceebe39b64551536de29ac22c95efa9ca88d2d", + "tarball": "http://registry.npmjs.org/every-stream/-/every-stream-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/every-stream/" + }, + "everyauth": { + "name": "everyauth", + "description": "Auth solution (password, facebook, & more) for your node.js Connect & Express apps", + "dist-tags": { + "latest": "0.2.27" + }, + "maintainers": [ + { + "name": "bnoguchi", + "email": "brian.noguchi@gmail.com" + } + ], + "time": { + "modified": "2011-11-28T00:33:10.007Z", + "created": "2011-04-05T23:28:28.310Z", + "0.0.1": "2011-04-05T23:28:28.703Z", + "0.0.3": "2011-04-06T01:31:33.011Z", + "0.0.4": "2011-04-06T02:30:08.725Z", + "0.0.5": "2011-04-06T03:15:44.469Z", + "0.0.6": "2011-04-07T01:39:19.207Z", + "0.0.8": "2011-04-12T18:26:56.422Z", + "0.0.9": "2011-04-13T23:06:36.210Z", + "0.0.10": "2011-04-14T06:05:56.924Z", + "0.1.0": "2011-04-14T17:48:27.546Z", + "0.1.3": "2011-04-26T20:10:58.883Z", + "0.1.4": "2011-04-27T06:09:28.799Z", + "0.1.5": "2011-04-27T07:53:48.195Z", + "0.1.6": "2011-04-27T20:12:01.833Z", + "0.1.7": "2011-05-03T04:01:02.207Z", + "0.2.0": "2011-05-03T04:17:13.225Z", + "0.2.1": "2011-05-03T09:46:27.610Z", + "0.2.2": "2011-05-07T23:50:31.331Z", + "0.2.3": "2011-05-09T19:00:21.781Z", + "0.2.4": "2011-06-01T01:10:34.828Z", + "0.2.5": "2011-06-04T21:38:23.165Z", + "0.2.6": "2011-06-06T01:52:56.831Z", + "0.2.7": "2011-06-06T21:09:30.809Z", + "0.2.8": "2011-06-11T07:01:42.484Z", + "0.2.9": "2011-06-15T01:09:28.928Z", + "0.2.10": "2011-06-17T23:31:24.455Z", + "0.2.11": "2011-06-18T05:26:15.189Z", + "0.2.12": "2011-06-21T22:14:18.192Z", + "0.2.13": "2011-06-27T11:35:32.857Z", + "0.2.14": "2011-07-01T20:41:37.553Z", + "0.2.15": "2011-07-06T07:30:24.114Z", + "0.2.16": "2011-07-15T01:05:36.321Z", + "0.2.17": "2011-07-20T18:20:38.618Z", + "0.2.18": "2011-08-02T21:20:27.829Z", + "0.2.19": "2011-09-13T18:38:48.945Z", + "0.2.20": "2011-09-13T19:48:41.709Z", + "0.2.21": "2011-10-07T01:20:16.925Z", + "0.2.22": "2011-10-07T01:27:45.249Z", + "0.2.23": "2011-10-07T01:40:37.086Z", + "0.2.24": "2011-11-26T11:10:46.667Z", + "0.2.25": "2011-11-26T21:10:51.432Z", + "0.2.26": "2011-11-27T00:29:13.733Z", + "0.2.27": "2011-11-28T00:33:10.007Z" + }, + "author": { + "name": "Brian Noguchi", + "email": "brian.noguchi@gmail.com", + "url": "https://github.com/bnoguchi/" + }, + "repository": { + "type": "git", + "url": "git://github.com/bnoguchi/everyauth.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/everyauth/0.0.1", + "0.0.3": "http://registry.npmjs.org/everyauth/0.0.3", + "0.0.4": "http://registry.npmjs.org/everyauth/0.0.4", + "0.0.5": "http://registry.npmjs.org/everyauth/0.0.5", + "0.0.6": "http://registry.npmjs.org/everyauth/0.0.6", + "0.0.8": "http://registry.npmjs.org/everyauth/0.0.8", + "0.0.9": "http://registry.npmjs.org/everyauth/0.0.9", + "0.0.10": "http://registry.npmjs.org/everyauth/0.0.10", + "0.1.0": "http://registry.npmjs.org/everyauth/0.1.0", + "0.1.3": "http://registry.npmjs.org/everyauth/0.1.3", + "0.1.4": "http://registry.npmjs.org/everyauth/0.1.4", + "0.1.5": "http://registry.npmjs.org/everyauth/0.1.5", + "0.1.6": "http://registry.npmjs.org/everyauth/0.1.6", + "0.1.7": "http://registry.npmjs.org/everyauth/0.1.7", + "0.2.0": "http://registry.npmjs.org/everyauth/0.2.0", + "0.2.1": "http://registry.npmjs.org/everyauth/0.2.1", + "0.2.2": "http://registry.npmjs.org/everyauth/0.2.2", + "0.2.3": "http://registry.npmjs.org/everyauth/0.2.3", + "0.2.4": "http://registry.npmjs.org/everyauth/0.2.4", + "0.2.5": "http://registry.npmjs.org/everyauth/0.2.5", + "0.2.6": "http://registry.npmjs.org/everyauth/0.2.6", + "0.2.7": "http://registry.npmjs.org/everyauth/0.2.7", + "0.2.8": "http://registry.npmjs.org/everyauth/0.2.8", + "0.2.9": "http://registry.npmjs.org/everyauth/0.2.9", + "0.2.10": "http://registry.npmjs.org/everyauth/0.2.10", + "0.2.11": "http://registry.npmjs.org/everyauth/0.2.11", + "0.2.12": "http://registry.npmjs.org/everyauth/0.2.12", + "0.2.13": "http://registry.npmjs.org/everyauth/0.2.13", + "0.2.14": "http://registry.npmjs.org/everyauth/0.2.14", + "0.2.15": "http://registry.npmjs.org/everyauth/0.2.15", + "0.2.16": "http://registry.npmjs.org/everyauth/0.2.16", + "0.2.17": "http://registry.npmjs.org/everyauth/0.2.17", + "0.2.18": "http://registry.npmjs.org/everyauth/0.2.18", + "0.2.19": "http://registry.npmjs.org/everyauth/0.2.19", + "0.2.20": "http://registry.npmjs.org/everyauth/0.2.20", + "0.2.21": "http://registry.npmjs.org/everyauth/0.2.21", + "0.2.22": "http://registry.npmjs.org/everyauth/0.2.22", + "0.2.23": "http://registry.npmjs.org/everyauth/0.2.23", + "0.2.24": "http://registry.npmjs.org/everyauth/0.2.24", + "0.2.25": "http://registry.npmjs.org/everyauth/0.2.25", + "0.2.26": "http://registry.npmjs.org/everyauth/0.2.26", + "0.2.27": "http://registry.npmjs.org/everyauth/0.2.27" + }, + "dist": { + "0.0.1": { + "shasum": "0d2d93cb900fc599a43cff5ea08bcb9bd5ba4c93", + "tarball": "http://registry.npmjs.org/everyauth/-/everyauth-0.0.1.tgz" + }, + "0.0.3": { + "shasum": "a17a7316907e273e608781aa9c73093aadf13909", + "tarball": "http://registry.npmjs.org/everyauth/-/everyauth-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "5dc4b3c7532bc8c71ba0563ba00d44b5572bc07b", + "tarball": "http://registry.npmjs.org/everyauth/-/everyauth-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "5f2b108921fb517f7a7a3e074867da5b5c7956a0", + "tarball": "http://registry.npmjs.org/everyauth/-/everyauth-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "27009c35badb7b50856b7f8a25d73e72cb2d8bc3", + "tarball": "http://registry.npmjs.org/everyauth/-/everyauth-0.0.6.tgz" + }, + "0.0.8": { + "shasum": "c8776a8b87daeebf4a04f787406b447b6b80e8c7", + "tarball": "http://registry.npmjs.org/everyauth/-/everyauth-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "8e68c7c74fd364d28ea90de01b118e1f7bba8913", + "tarball": "http://registry.npmjs.org/everyauth/-/everyauth-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "5e3d5235fca5c589a399d87f5ebbdd0a02fd5656", + "tarball": "http://registry.npmjs.org/everyauth/-/everyauth-0.0.10.tgz" + }, + "0.1.0": { + "shasum": "50d05aaa245ae70556263407bd74463a7608a822", + "tarball": "http://registry.npmjs.org/everyauth/-/everyauth-0.1.0.tgz" + }, + "0.1.3": { + "shasum": "0439cfec4b413e96c0a9c0f3c749c0ab91168006", + "tarball": "http://registry.npmjs.org/everyauth/-/everyauth-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "d2fecaf33c2ad74ed308967c6e3d53145f01e7ce", + "tarball": "http://registry.npmjs.org/everyauth/-/everyauth-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "35daa99e0ac305946e92410cd45323f7be94499d", + "tarball": "http://registry.npmjs.org/everyauth/-/everyauth-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "bd45e100a80b989b9fccd5940675335e994f882b", + "tarball": "http://registry.npmjs.org/everyauth/-/everyauth-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "0baa82efed5656fa6904dad522dd7fbae45e038e", + "tarball": "http://registry.npmjs.org/everyauth/-/everyauth-0.1.7.tgz" + }, + "0.2.0": { + "shasum": "865935b35c6c2c51398caf10dba1960e92579f80", + "tarball": "http://registry.npmjs.org/everyauth/-/everyauth-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "0b3241a108d8641a8c4ab711037ae4949b82c156", + "tarball": "http://registry.npmjs.org/everyauth/-/everyauth-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "fd59929f250df52697ce9c0ace2109ebcb8904fa", + "tarball": "http://registry.npmjs.org/everyauth/-/everyauth-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "caefb90551f8f2ca02f2238663389594c5c044a1", + "tarball": "http://registry.npmjs.org/everyauth/-/everyauth-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "19596a04d93d33cdc17769c6646d717235c454d5", + "tarball": "http://registry.npmjs.org/everyauth/-/everyauth-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "5465dc8e7c307d66665605df2dbb11c8c5c46ec0", + "tarball": "http://registry.npmjs.org/everyauth/-/everyauth-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "c87bce69515dc5e6434441f24d160212b9af9bd7", + "tarball": "http://registry.npmjs.org/everyauth/-/everyauth-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "2384fffacd734184b3caa73ca4d7f7b632ec8971", + "tarball": "http://registry.npmjs.org/everyauth/-/everyauth-0.2.7.tgz" + }, + "0.2.8": { + "shasum": "5ba900de04a06e4cf0c30b9c5775c62ba24433de", + "tarball": "http://registry.npmjs.org/everyauth/-/everyauth-0.2.8.tgz" + }, + "0.2.9": { + "shasum": "ff4a2da6b0a5337805ccc981f203ec5a6b01e142", + "tarball": "http://registry.npmjs.org/everyauth/-/everyauth-0.2.9.tgz" + }, + "0.2.10": { + "shasum": "91ffd20d4ebbb04e7c48bf0119aa15c60f4e378f", + "tarball": "http://registry.npmjs.org/everyauth/-/everyauth-0.2.10.tgz" + }, + "0.2.11": { + "shasum": "07e4ea1aaa8d2741908127c26e8c58d0571785db", + "tarball": "http://registry.npmjs.org/everyauth/-/everyauth-0.2.11.tgz" + }, + "0.2.12": { + "shasum": "5590a7b32496a4017804d45388a70244d905d116", + "tarball": "http://registry.npmjs.org/everyauth/-/everyauth-0.2.12.tgz" + }, + "0.2.13": { + "shasum": "cea37f818801ec25ddc6613386b6c21c3e752c0c", + "tarball": "http://registry.npmjs.org/everyauth/-/everyauth-0.2.13.tgz" + }, + "0.2.14": { + "shasum": "f7c9f7468c87955f9bb967b1a85e623cfaf8e272", + "tarball": "http://registry.npmjs.org/everyauth/-/everyauth-0.2.14.tgz" + }, + "0.2.15": { + "shasum": "70522ba7c035f1c62ff1892f713a4abf0787a6e3", + "tarball": "http://registry.npmjs.org/everyauth/-/everyauth-0.2.15.tgz" + }, + "0.2.16": { + "shasum": "6304db053de335904003efbe39ad99d9f30db8d6", + "tarball": "http://registry.npmjs.org/everyauth/-/everyauth-0.2.16.tgz" + }, + "0.2.17": { + "shasum": "19e9db6af6cacdc1470980bbfc8db1b4d5b6c5a5", + "tarball": "http://registry.npmjs.org/everyauth/-/everyauth-0.2.17.tgz" + }, + "0.2.18": { + "shasum": "de681299c4230e42ca01ffc084262f8c6c8f1ca2", + "tarball": "http://registry.npmjs.org/everyauth/-/everyauth-0.2.18.tgz" + }, + "0.2.19": { + "shasum": "af2a543f2e3025bd7e3e609400724804c57b1ac6", + "tarball": "http://registry.npmjs.org/everyauth/-/everyauth-0.2.19.tgz" + }, + "0.2.20": { + "shasum": "6bbb4297c2b7fc004d7188e9b4c16d2f40230e40", + "tarball": "http://registry.npmjs.org/everyauth/-/everyauth-0.2.20.tgz" + }, + "0.2.21": { + "shasum": "dd76116fd4b651cbfeb061a476e2f22270716224", + "tarball": "http://registry.npmjs.org/everyauth/-/everyauth-0.2.21.tgz" + }, + "0.2.22": { + "shasum": "1a98c494066c2e23089d990d845e60afd7f5ae8b", + "tarball": "http://registry.npmjs.org/everyauth/-/everyauth-0.2.22.tgz" + }, + "0.2.23": { + "shasum": "ff2692bc316f28ce03b7a3413ef05380403bceea", + "tarball": "http://registry.npmjs.org/everyauth/-/everyauth-0.2.23.tgz" + }, + "0.2.24": { + "shasum": "a88f20f96f7e698eb45f8279f064046e68d59060", + "tarball": "http://registry.npmjs.org/everyauth/-/everyauth-0.2.24.tgz" + }, + "0.2.25": { + "shasum": "57ba78d18f1b05fdac1cd6f1e8a0370728168ca6", + "tarball": "http://registry.npmjs.org/everyauth/-/everyauth-0.2.25.tgz" + }, + "0.2.26": { + "shasum": "1f67949ecafbb966c989b85494f3834a5394c3ec", + "tarball": "http://registry.npmjs.org/everyauth/-/everyauth-0.2.26.tgz" + }, + "0.2.27": { + "shasum": "ca89227eef61538f27908cdf598f636e2aab78ec", + "tarball": "http://registry.npmjs.org/everyauth/-/everyauth-0.2.27.tgz" + } + }, + "keywords": [ + "auth", + "oauth", + "password", + "facebook", + "openid", + "twitter", + "authorization", + "authentication", + "connect", + "express" + ], + "url": "http://registry.npmjs.org/everyauth/" + }, + "ewdDOM": { + "name": "ewdDOM", + "description": "Persistent lightweight DOM using the Globals database", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "robtweed", + "email": "rtweed@mgateway.com" + } + ], + "time": { + "modified": "2011-08-24T18:26:22.024Z", + "created": "2011-08-24T16:54:07.115Z", + "0.0.1": "2011-08-24T16:54:07.535Z", + "0.0.2": "2011-08-24T18:15:35.029Z", + "0.0.3": "2011-08-24T18:26:22.024Z" + }, + "author": { + "name": "Rob Tweed", + "email": "rtweed@mgateway.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/robtweed/ewdDOM.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ewdDOM/0.0.1", + "0.0.2": "http://registry.npmjs.org/ewdDOM/0.0.2", + "0.0.3": "http://registry.npmjs.org/ewdDOM/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "6be32da41cb8fc455709c3cd2db35ea76033bf11", + "tarball": "http://registry.npmjs.org/ewdDOM/-/ewdDOM-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f47a1b169db417bf06020e6545f87e3ffbc11d1b", + "tarball": "http://registry.npmjs.org/ewdDOM/-/ewdDOM-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "b896b5f482d528e4758d9289b19442750eb436b5", + "tarball": "http://registry.npmjs.org/ewdDOM/-/ewdDOM-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/ewdDOM/" + }, + "ewdGateway": { + "name": "ewdGateway", + "description": "Node.js-based EWD Gateway for Cache and GT.M", + "dist-tags": { + "latest": "0.0.22" + }, + "maintainers": [ + { + "name": "robtweed", + "email": "rtweed@mgateway.com" + } + ], + "time": { + "modified": "2011-12-14T09:36:18.285Z", + "created": "2011-07-25T17:58:38.527Z", + "0.0.16": "2011-07-25T17:58:39.218Z", + "0.0.17": "2011-08-25T11:35:07.865Z", + "0.0.18": "2011-09-14T15:27:06.812Z", + "0.0.20": "2011-12-05T17:11:17.191Z", + "0.0.21": "2011-12-13T08:54:59.660Z", + "0.0.22": "2011-12-14T09:36:18.285Z" + }, + "author": { + "name": "Rob Tweed", + "email": "rtweed@mgateway.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/robtweed/ewdGateway.git" + }, + "versions": { + "0.0.16": "http://registry.npmjs.org/ewdGateway/0.0.16", + "0.0.17": "http://registry.npmjs.org/ewdGateway/0.0.17", + "0.0.18": "http://registry.npmjs.org/ewdGateway/0.0.18", + "0.0.20": "http://registry.npmjs.org/ewdGateway/0.0.20", + "0.0.21": "http://registry.npmjs.org/ewdGateway/0.0.21", + "0.0.22": "http://registry.npmjs.org/ewdGateway/0.0.22" + }, + "dist": { + "0.0.16": { + "shasum": "8bddfcd99ba332c8299acc8b970953f2d1e1983d", + "tarball": "http://registry.npmjs.org/ewdGateway/-/ewdGateway-0.0.16.tgz" + }, + "0.0.17": { + "shasum": "57237305baa851ea9872ec95880efe09d1f91a53", + "tarball": "http://registry.npmjs.org/ewdGateway/-/ewdGateway-0.0.17.tgz" + }, + "0.0.18": { + "shasum": "cf5a5d547b011c80c2514364ea1745388228be3d", + "tarball": "http://registry.npmjs.org/ewdGateway/-/ewdGateway-0.0.18.tgz" + }, + "0.0.20": { + "shasum": "b3c81a5a7106396cd765e48850de08d5438d0c21", + "tarball": "http://registry.npmjs.org/ewdGateway/-/ewdGateway-0.0.20.tgz" + }, + "0.0.21": { + "shasum": "c39c038610c09413da4a070d324f98d02090300c", + "tarball": "http://registry.npmjs.org/ewdGateway/-/ewdGateway-0.0.21.tgz" + }, + "0.0.22": { + "shasum": "d7b1fc959dbe3ea16bcc7e52f8a112131e07c81d", + "tarball": "http://registry.npmjs.org/ewdGateway/-/ewdGateway-0.0.22.tgz" + } + }, + "url": "http://registry.npmjs.org/ewdGateway/" + }, + "exceptional": { + "name": "exceptional", + "description": "", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "abi", + "email": "abii@stanford.edu" + } + ], + "time": { + "modified": "2011-09-19T02:58:56.024Z", + "created": "2011-09-18T09:11:26.323Z", + "0.0.1": "2011-09-18T09:11:27.788Z", + "0.0.2": "2011-09-19T02:58:56.024Z" + }, + "author": { + "name": "Abi Raja", + "email": "abii@stanford.edu", + "url": "http://abi.sh" + }, + "repository": { + "type": "git", + "url": "git://github.com/abi/exceptional.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/exceptional/0.0.1", + "0.0.2": "http://registry.npmjs.org/exceptional/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "29e07ab0f3adb71a0907590365f1302020534c97", + "tarball": "http://registry.npmjs.org/exceptional/-/exceptional-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "26f9344447f5ca45a5f088582c43dbbb1a3d56a1", + "tarball": "http://registry.npmjs.org/exceptional/-/exceptional-0.0.2.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/exceptional/" + }, + "exceptional-node": { + "name": "exceptional-node", + "description": "node.js module for getexceptional.com", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "exceptional", + "email": "support@getexceptional.com" + } + ], + "author": { + "name": "Wal McConnell", + "email": "support@getexceptional.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/contrast/exceptional-node.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/exceptional-node/0.1.0", + "0.1.1": "http://registry.npmjs.org/exceptional-node/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "041a5f5da129aab61866c6fb1d79957b81d6c19f", + "tarball": "http://registry.npmjs.org/exceptional-node/-/exceptional-node-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "3fc778b33e4d5c6a6aa73cd25cd9a30fae2e9744", + "tarball": "http://registry.npmjs.org/exceptional-node/-/exceptional-node-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/exceptional-node/" + }, + "exchange-rates": { + "name": "exchange-rates", + "description": "nodeJS exchange rate data loader, with configurable default open-source API service", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "joss", + "email": "josscrowcroft@gmail.com" + } + ], + "time": { + "modified": "2011-10-19T16:33:53.468Z", + "created": "2011-10-19T16:33:52.231Z", + "0.1.0": "2011-10-19T16:33:53.468Z" + }, + "author": { + "name": "Joss Crowcroft", + "email": "josscrowcroft@gmail.com", + "url": "http://www.josscrowcroft.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/josscrowcroft/npm-exchange-rates.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/exchange-rates/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "457be38cd5560606af56ffba0539af9bd6493341", + "tarball": "http://registry.npmjs.org/exchange-rates/-/exchange-rates-0.1.0.tgz" + } + }, + "keywords": [ + "exchange", + "rate", + "currency", + "money", + "fx", + "loader", + "utilities", + "accounting", + "forex" + ], + "url": "http://registry.npmjs.org/exchange-rates/" + }, + "executor": { + "name": "executor", + "description": "Executes a function for a list of arguments but keeps sure that only a limited number of jobs is running at the same time.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "masch", + "email": "masch@masch.it" + } + ], + "time": { + "modified": "2011-01-04T00:35:32.627Z", + "created": "2011-01-04T00:35:31.959Z", + "0.0.1": "2011-01-04T00:35:32.627Z" + }, + "author": { + "name": "Mark Schmale", + "email": "masch@masch.it", + "url": "http://masch.it" + }, + "repository": { + "type": "git", + "url": "https://github.com/themasch/node-executor.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/executor/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "7ef1b291e8301e8fcc75abb52fd8b13bc2529ed6", + "tarball": "http://registry.npmjs.org/executor/-/executor-0.0.1.tgz" + } + }, + "keywords": [ + "function", + "execution" + ], + "url": "http://registry.npmjs.org/executor/" + }, + "exedra": { + "name": "exedra", + "description": "Routes && Functions loader for express", + "dist-tags": { + "latest": "0.0.5-1" + }, + "maintainers": [ + { + "name": "corpix", + "email": "me@corpix.ru" + } + ], + "time": { + "modified": "2011-12-13T00:41:57.570Z", + "created": "2011-10-27T10:44:04.282Z", + "0.0.1": "2011-10-27T10:44:06.643Z", + "0.0.2": "2011-10-27T10:50:07.388Z", + "0.0.3": "2011-10-27T10:56:30.823Z", + "0.0.4": "2011-11-05T09:45:37.507Z", + "0.0.4-1": "2011-11-05T22:43:55.278Z", + "0.0.4-2": "2011-12-01T23:16:58.114Z", + "0.0.5": "2011-12-13T00:38:48.943Z", + "0.0.5-1": "2011-12-13T00:41:57.570Z" + }, + "author": { + "name": "Corpix", + "email": "me@corpix.ru", + "url": "http://corpix.ru" + }, + "repository": { + "type": "git", + "url": "git://github.com/corpix/exedra.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/exedra/0.0.1", + "0.0.2": "http://registry.npmjs.org/exedra/0.0.2", + "0.0.3": "http://registry.npmjs.org/exedra/0.0.3", + "0.0.4": "http://registry.npmjs.org/exedra/0.0.4", + "0.0.4-1": "http://registry.npmjs.org/exedra/0.0.4-1", + "0.0.4-2": "http://registry.npmjs.org/exedra/0.0.4-2", + "0.0.5": "http://registry.npmjs.org/exedra/0.0.5", + "0.0.5-1": "http://registry.npmjs.org/exedra/0.0.5-1" + }, + "dist": { + "0.0.1": { + "shasum": "70cb1dd1e55d35c05b2f3edc3e0b6d685abc93d5", + "tarball": "http://registry.npmjs.org/exedra/-/exedra-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "14a8577836905aeb312cf73bbf72a7f44086830a", + "tarball": "http://registry.npmjs.org/exedra/-/exedra-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "94d46e637326613003e2fd3ff17c083a230be4a4", + "tarball": "http://registry.npmjs.org/exedra/-/exedra-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "a00e8dd71cecfc9c62b9597979f52ad70c23e05b", + "tarball": "http://registry.npmjs.org/exedra/-/exedra-0.0.4.tgz" + }, + "0.0.4-1": { + "shasum": "0f183910e35b6387374d71be26ff7021087f0128", + "tarball": "http://registry.npmjs.org/exedra/-/exedra-0.0.4-1.tgz" + }, + "0.0.4-2": { + "shasum": "5538ca25b7a9fd1e4fe6b460fe9963187ec45af2", + "tarball": "http://registry.npmjs.org/exedra/-/exedra-0.0.4-2.tgz" + }, + "0.0.5": { + "shasum": "a95a9db925cca28c20d9341563de02142654f067", + "tarball": "http://registry.npmjs.org/exedra/-/exedra-0.0.5.tgz" + }, + "0.0.5-1": { + "shasum": "551f7e1efd6970b028545809c0374d1c6f46b2aa", + "tarball": "http://registry.npmjs.org/exedra/-/exedra-0.0.5-1.tgz" + } + }, + "keywords": [ + "exedra", + "express", + "loader" + ], + "url": "http://registry.npmjs.org/exedra/" + }, + "exerciser": { + "name": "exerciser", + "description": "a small http benchmarking lib written in node.js", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "christophsturm", + "email": "me@christophsturm.com" + } + ], + "time": { + "modified": "2011-10-20T14:32:55.746Z", + "created": "2011-10-13T13:27:53.054Z", + "0.1.0": "2011-10-13T13:27:54.888Z", + "0.2.0": "2011-10-20T12:39:39.374Z", + "0.2.1": "2011-10-20T14:32:55.746Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/exerciser/0.1.0", + "0.2.0": "http://registry.npmjs.org/exerciser/0.2.0", + "0.2.1": "http://registry.npmjs.org/exerciser/0.2.1" + }, + "dist": { + "0.1.0": { + "shasum": "2a63716d3dd977bc45178f48c84f41b6f1bdcedb", + "tarball": "http://registry.npmjs.org/exerciser/-/exerciser-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "78c38018d17688d1a0789d22e1d115a4a9c61440", + "tarball": "http://registry.npmjs.org/exerciser/-/exerciser-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "b0ce92b97309853414ec429c4efb179b68a6ff39", + "tarball": "http://registry.npmjs.org/exerciser/-/exerciser-0.2.1.tgz" + } + }, + "url": "http://registry.npmjs.org/exerciser/" + }, + "exif": { + "name": "exif", + "description": "A node.js library to extract Exif metadata from images.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "gomfunkel", + "email": "leinich@gmx.net" + } + ], + "time": { + "modified": "2011-01-28T22:23:27.491Z", + "created": "2011-01-28T22:23:27.002Z", + "0.1.0": "2011-01-28T22:23:27.491Z" + }, + "author": { + "name": "Daniel Leinich", + "email": "leinich@gmx.net" + }, + "repository": { + "type": "git", + "url": "http://github.com/gomfunkel/node-exif.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/exif/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "ac2df0a98ace71911c4d6ed14ac0cd4f279ca6b0", + "tarball": "http://registry.npmjs.org/exif/-/exif-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/exif/" + }, + "expanda": { + "name": "expanda", + "description": "Expand tiny urls in a string", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "deedubs", + "email": "dan@rocketlabsdev.com" + } + ], + "time": { + "modified": "2011-05-22T21:08:35.688Z", + "created": "2011-05-22T21:08:35.308Z", + "0.0.1": "2011-05-22T21:08:35.688Z" + }, + "author": { + "name": "Dan Williams", + "email": "dan@rocketlabsdev.com", + "url": "http://blog.rocketlabsdev.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/rocketlabsdev/expanda.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/expanda/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "f1ddff618fbef183bcc12e03514f6875149f7252", + "tarball": "http://registry.npmjs.org/expanda/-/expanda-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/expanda/" + }, + "expect": { + "name": "expect", + "description": "the essential JavaScript test library", + "dist-tags": { + "latest": "0.0.2" + }, + "readme": null, + "maintainers": [ + { + "name": "onirame", + "email": "enrico.marino@email.com" + } + ], + "time": { + "modified": "2011-12-03T18:40:52.830Z", + "created": "2011-11-29T18:50:39.841Z", + "0.0.0": "2011-11-29T18:50:42.029Z", + "0.0.2": "2011-12-03T18:40:52.830Z" + }, + "author": { + "name": "Enrico Marino", + "email": "enrico.marino@email.com", + "url": "onirame.no.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/onirame/expect.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/expect/0.0.0", + "0.0.2": "http://registry.npmjs.org/expect/0.0.2" + }, + "dist": { + "0.0.0": { + "shasum": "6432338eef9d40bc0409fa90e1d6fb8dde6ec05b", + "tarball": "http://registry.npmjs.org/expect/-/expect-0.0.0.tgz" + }, + "0.0.2": { + "shasum": "4701a0f48e92c02f00d55ea29bf7d43c750bae22", + "tarball": "http://registry.npmjs.org/expect/-/expect-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/expect/" + }, + "express": { + "name": "express", + "description": "Sinatra inspired web development framework", + "dist-tags": { + "latest": "2.5.2" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "time": { + "modified": "2011-12-10T19:09:42.049Z", + "created": "2010-12-29T19:38:25.450Z", + "0.14.0": "2010-12-29T19:38:25.450Z", + "0.14.1": "2010-12-29T19:38:25.450Z", + "1.0.0beta": "2010-12-29T19:38:25.450Z", + "1.0.0beta2": "2010-12-29T19:38:25.450Z", + "1.0.0rc": "2010-12-29T19:38:25.450Z", + "1.0.0rc2": "2010-12-29T19:38:25.450Z", + "1.0.0rc3": "2010-12-29T19:38:25.450Z", + "1.0.0rc4": "2010-12-29T19:38:25.450Z", + "1.0.0": "2010-12-29T19:38:25.450Z", + "1.0.1": "2010-12-29T19:38:25.450Z", + "1.0.2": "2011-01-11T02:09:30.004Z", + "1.0.3": "2011-01-13T22:09:07.840Z", + "1.0.4": "2011-02-05T19:13:15.043Z", + "1.0.5": "2011-02-05T19:16:30.839Z", + "1.0.6": "2011-02-07T21:45:32.271Z", + "1.0.7": "2011-02-07T22:26:51.313Z", + "2.0.0-pre": "2011-02-21T21:46:44.987Z", + "1.0.8": "2011-03-02T02:58:14.314Z", + "2.0.0beta": "2011-03-04T00:19:22.568Z", + "2.0.0beta2": "2011-03-07T17:40:46.229Z", + "2.0.0beta3": "2011-03-09T23:46:02.495Z", + "2.0.0rc": "2011-03-14T22:01:43.971Z", + "2.0.0rc2": "2011-03-17T18:01:26.604Z", + "2.0.0rc3": "2011-03-17T20:02:05.880Z", + "2.0.0": "2011-03-18T01:06:40.271Z", + "2.1.0": "2011-03-24T20:47:46.219Z", + "2.1.1": "2011-03-29T17:40:33.337Z", + "2.2.0": "2011-03-30T18:40:56.080Z", + "2.2.1": "2011-04-04T19:23:50.483Z", + "2.2.2": "2011-04-12T09:44:57.909Z", + "2.3.0": "2011-04-25T16:50:01.384Z", + "2.3.1": "2011-04-26T22:26:27.392Z", + "2.3.2": "2011-04-27T16:13:33.518Z", + "2.3.3": "2011-05-03T18:31:39.123Z", + "2.3.4": "2011-05-08T17:54:04.615Z", + "2.3.5": "2011-05-20T02:07:37.117Z", + "2.3.6": "2011-05-20T16:42:09.750Z", + "2.3.7": "2011-05-23T22:54:25.787Z", + "2.3.8": "2011-05-25T04:53:16.574Z", + "2.3.9": "2011-05-25T17:18:34.557Z", + "2.3.10": "2011-05-27T16:20:13.495Z", + "2.3.11": "2011-06-04T17:51:29.978Z", + "2.3.12": "2011-06-22T20:56:29.997Z", + "2.4.0": "2011-06-28T16:41:30.571Z", + "2.4.1": "2011-07-06T16:57:15.476Z", + "2.4.2": "2011-07-07T03:15:52.511Z", + "2.4.3": "2011-07-14T19:58:45.646Z", + "2.4.4": "2011-08-05T11:30:40.300Z", + "2.4.5": "2011-08-19T17:13:10.685Z", + "2.4.6": "2011-08-22T17:20:21.180Z", + "2.4.7": "2011-10-05T22:42:01.025Z", + "2.5.0": "2011-10-24T23:01:02.271Z", + "2.5.1": "2011-11-18T16:04:40.126Z", + "2.5.2": "2011-12-10T19:09:42.049Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/visionmedia/express.git" + }, + "users": { + "isaacs": true, + "coverslide": true, + "gevorg": true, + "dylang": true, + "kwerty": true, + "vesln": true, + "deedubs": true, + "wojohowitz": true, + "danmilon": true, + "puerkitobio": true, + "raoulmillais": true, + "mvolkmann": true, + "pid": true, + "naholyr": true, + "clux": true, + "troygoode": true, + "shawnb576": true + }, + "versions": { + "0.14.0": "http://registry.npmjs.org/express/0.14.0", + "0.14.1": "http://registry.npmjs.org/express/0.14.1", + "1.0.0beta": "http://registry.npmjs.org/express/1.0.0beta", + "1.0.0beta2": "http://registry.npmjs.org/express/1.0.0beta2", + "1.0.0rc": "http://registry.npmjs.org/express/1.0.0rc", + "1.0.0rc2": "http://registry.npmjs.org/express/1.0.0rc2", + "1.0.0rc3": "http://registry.npmjs.org/express/1.0.0rc3", + "1.0.0rc4": "http://registry.npmjs.org/express/1.0.0rc4", + "1.0.0": "http://registry.npmjs.org/express/1.0.0", + "1.0.1": "http://registry.npmjs.org/express/1.0.1", + "1.0.2": "http://registry.npmjs.org/express/1.0.2", + "1.0.3": "http://registry.npmjs.org/express/1.0.3", + "1.0.4": "http://registry.npmjs.org/express/1.0.4", + "1.0.5": "http://registry.npmjs.org/express/1.0.5", + "1.0.6": "http://registry.npmjs.org/express/1.0.6", + "1.0.7": "http://registry.npmjs.org/express/1.0.7", + "2.0.0beta": "http://registry.npmjs.org/express/2.0.0beta", + "1.0.8": "http://registry.npmjs.org/express/1.0.8", + "2.0.0beta2": "http://registry.npmjs.org/express/2.0.0beta2", + "2.0.0beta3": "http://registry.npmjs.org/express/2.0.0beta3", + "2.0.0rc": "http://registry.npmjs.org/express/2.0.0rc", + "2.0.0rc2": "http://registry.npmjs.org/express/2.0.0rc2", + "2.0.0rc3": "http://registry.npmjs.org/express/2.0.0rc3", + "2.0.0": "http://registry.npmjs.org/express/2.0.0", + "2.1.0": "http://registry.npmjs.org/express/2.1.0", + "2.1.1": "http://registry.npmjs.org/express/2.1.1", + "2.2.0": "http://registry.npmjs.org/express/2.2.0", + "2.2.1": "http://registry.npmjs.org/express/2.2.1", + "2.2.2": "http://registry.npmjs.org/express/2.2.2", + "2.3.0": "http://registry.npmjs.org/express/2.3.0", + "2.3.1": "http://registry.npmjs.org/express/2.3.1", + "2.3.2": "http://registry.npmjs.org/express/2.3.2", + "2.3.3": "http://registry.npmjs.org/express/2.3.3", + "2.3.4": "http://registry.npmjs.org/express/2.3.4", + "2.3.5": "http://registry.npmjs.org/express/2.3.5", + "2.3.6": "http://registry.npmjs.org/express/2.3.6", + "2.3.7": "http://registry.npmjs.org/express/2.3.7", + "2.3.8": "http://registry.npmjs.org/express/2.3.8", + "2.3.9": "http://registry.npmjs.org/express/2.3.9", + "2.3.10": "http://registry.npmjs.org/express/2.3.10", + "2.3.11": "http://registry.npmjs.org/express/2.3.11", + "2.3.12": "http://registry.npmjs.org/express/2.3.12", + "2.4.0": "http://registry.npmjs.org/express/2.4.0", + "2.4.1": "http://registry.npmjs.org/express/2.4.1", + "2.4.2": "http://registry.npmjs.org/express/2.4.2", + "2.4.3": "http://registry.npmjs.org/express/2.4.3", + "2.4.4": "http://registry.npmjs.org/express/2.4.4", + "2.4.5": "http://registry.npmjs.org/express/2.4.5", + "2.4.6": "http://registry.npmjs.org/express/2.4.6", + "2.4.7": "http://registry.npmjs.org/express/2.4.7", + "2.5.0": "http://registry.npmjs.org/express/2.5.0", + "2.5.1": "http://registry.npmjs.org/express/2.5.1", + "2.5.2": "http://registry.npmjs.org/express/2.5.2" + }, + "dist": { + "0.14.0": { + "tarball": "http://registry.npmjs.org/express/-/express-0.14.0.tgz" + }, + "0.14.1": { + "tarball": "http://registry.npmjs.org/express/-/express-0.14.1.tgz" + }, + "1.0.0beta": { + "tarball": "http://registry.npmjs.org/express/-/express-1.0.0beta.tgz" + }, + "1.0.0beta2": { + "tarball": "http://registry.npmjs.org/express/-/express-1.0.0beta2.tgz" + }, + "1.0.0rc": { + "tarball": "http://registry.npmjs.org/express/-/express-1.0.0rc.tgz" + }, + "1.0.0rc2": { + "tarball": "http://registry.npmjs.org/express/-/express-1.0.0rc2.tgz" + }, + "1.0.0rc3": { + "tarball": "http://registry.npmjs.org/express/-/express-1.0.0rc3.tgz" + }, + "1.0.0rc4": { + "tarball": "http://registry.npmjs.org/express/-/express-1.0.0rc4.tgz" + }, + "1.0.0": { + "tarball": "http://registry.npmjs.org/express/-/express-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "53ad8442c3feb46588f08698f1872c4dbf24137f", + "tarball": "http://registry.npmjs.org/express/-/express-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "5985fd1986b2275d8e96976a8b8de011dc823e0d", + "tarball": "http://registry.npmjs.org/express/-/express-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "e07fd860c4af7ffddc77653fd1fd930fce26cb61", + "tarball": "http://registry.npmjs.org/express/-/express-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "fab80c530d40b04f4f558f7f03b2cbf0f9040b14", + "tarball": "http://registry.npmjs.org/express/-/express-1.0.4.tgz" + }, + "1.0.5": { + "shasum": "2d32dff93a8c454e9a717c43b856c5369efc2856", + "tarball": "http://registry.npmjs.org/express/-/express-1.0.5.tgz" + }, + "1.0.6": { + "shasum": "9aee1508f0e9ce4cc2eabdda94ec8793898306f9", + "tarball": "http://registry.npmjs.org/express/-/express-1.0.6.tgz" + }, + "1.0.7": { + "shasum": "ccb14eee039e4177ce410fe5f074e96f68629e6c", + "tarball": "http://registry.npmjs.org/express/-/express-1.0.7.tgz" + }, + "2.0.0beta": { + "shasum": "c2095479887128f161ee13211e7b886edb4d9f98", + "tarball": "http://registry.npmjs.org/express/-/express-2.0.0beta.tgz" + }, + "1.0.8": { + "shasum": "fe254667ad612c23dd87d61180dc194cda1f7d38", + "tarball": "http://registry.npmjs.org/express/-/express-1.0.8.tgz" + }, + "2.0.0beta2": { + "shasum": "274e49af300145688e87ed2f5c5e59f6e26af135", + "tarball": "http://registry.npmjs.org/express/-/express-2.0.0beta2.tgz" + }, + "2.0.0beta3": { + "shasum": "f9c1324023729c4eb96688023e989fe2f8565c61", + "tarball": "http://registry.npmjs.org/express/-/express-2.0.0beta3.tgz" + }, + "2.0.0rc": { + "shasum": "6d3da0301b6cdce94ee437ae40ae6c8c7f5d7ccf", + "tarball": "http://registry.npmjs.org/express/-/express-2.0.0rc.tgz" + }, + "2.0.0rc2": { + "shasum": "381e1388bcd56d0449dbbf2272975f907488f710", + "tarball": "http://registry.npmjs.org/express/-/express-2.0.0rc2.tgz" + }, + "2.0.0rc3": { + "shasum": "538a35c8b0e2b08c455a20528b8d6a5568e901c1", + "tarball": "http://registry.npmjs.org/express/-/express-2.0.0rc3.tgz" + }, + "2.0.0": { + "shasum": "f9f715cf54e9b6f3f00115fe7e1188964d0a74b2", + "tarball": "http://registry.npmjs.org/express/-/express-2.0.0.tgz" + }, + "2.1.0": { + "shasum": "34542d68cf298d5a89d74dc1c8f96b5c4e1b00a7", + "tarball": "http://registry.npmjs.org/express/-/express-2.1.0.tgz" + }, + "2.1.1": { + "shasum": "4ab83c3509050ef917532cdb174bc23d8a007af4", + "tarball": "http://registry.npmjs.org/express/-/express-2.1.1.tgz" + }, + "2.2.0": { + "shasum": "ab38a7eaad67a1c28495021a798d234086d73dea", + "tarball": "http://registry.npmjs.org/express/-/express-2.2.0.tgz" + }, + "2.2.1": { + "shasum": "a4937f9d5e661282cd62d88e227132f79ccbe25f", + "tarball": "http://registry.npmjs.org/express/-/express-2.2.1.tgz" + }, + "2.2.2": { + "shasum": "19c26d4cd36018896fc90a9eef3300052b3e01d2", + "tarball": "http://registry.npmjs.org/express/-/express-2.2.2.tgz" + }, + "2.3.0": { + "shasum": "c32ae9a32a364077976352349eac54820cf21e3e", + "tarball": "http://registry.npmjs.org/express/-/express-2.3.0.tgz" + }, + "2.3.1": { + "shasum": "15a9459c9b9e785d52d14a62595a29d7cbab4882", + "tarball": "http://registry.npmjs.org/express/-/express-2.3.1.tgz" + }, + "2.3.2": { + "shasum": "ad6a3071d59a3bf1a4ed0b1b2942d9f0e510a028", + "tarball": "http://registry.npmjs.org/express/-/express-2.3.2.tgz" + }, + "2.3.3": { + "shasum": "936507d26e0433598679a645a87e403b3292547c", + "tarball": "http://registry.npmjs.org/express/-/express-2.3.3.tgz" + }, + "2.3.4": { + "shasum": "8db976504b3f7f1da32abc845c45c20610a1ffd0", + "tarball": "http://registry.npmjs.org/express/-/express-2.3.4.tgz" + }, + "2.3.5": { + "shasum": "a3113d0d9db4ea118e2c12b044a04c16741e799b", + "tarball": "http://registry.npmjs.org/express/-/express-2.3.5.tgz" + }, + "2.3.6": { + "shasum": "8598e2995fc7c7427b7c3aed53837be652e873c7", + "tarball": "http://registry.npmjs.org/express/-/express-2.3.6.tgz" + }, + "2.3.7": { + "shasum": "6d008ca32c4a23110032e67f4c40843c068e13b7", + "tarball": "http://registry.npmjs.org/express/-/express-2.3.7.tgz" + }, + "2.3.8": { + "shasum": "fac5808b93b5abf84906c886fe314a0d4f44fa89", + "tarball": "http://registry.npmjs.org/express/-/express-2.3.8.tgz" + }, + "2.3.9": { + "shasum": "e5b6a5dc5452e9bcaf8936297f9f0e111b71a2a7", + "tarball": "http://registry.npmjs.org/express/-/express-2.3.9.tgz" + }, + "2.3.10": { + "shasum": "09b5e939b28af0705d1ac46265c703db1016310c", + "tarball": "http://registry.npmjs.org/express/-/express-2.3.10.tgz" + }, + "2.3.11": { + "shasum": "1dcd3a404332565a64c8290797e183707612f25a", + "tarball": "http://registry.npmjs.org/express/-/express-2.3.11.tgz" + }, + "2.3.12": { + "shasum": "9e750c8e50ff976f89b4ed9e1ca6d534bad23014", + "tarball": "http://registry.npmjs.org/express/-/express-2.3.12.tgz" + }, + "2.4.0": { + "shasum": "c6cad05e9ec481a91e3817ca25cfd55ea37c00ce", + "tarball": "http://registry.npmjs.org/express/-/express-2.4.0.tgz" + }, + "2.4.1": { + "shasum": "006d435d5ca4332e51cc56ec3a69c707e40d62b4", + "tarball": "http://registry.npmjs.org/express/-/express-2.4.1.tgz" + }, + "2.4.2": { + "shasum": "bfdd3dfd9c387e3196ac9dc8c7ff8d3a930d4d1a", + "tarball": "http://registry.npmjs.org/express/-/express-2.4.2.tgz" + }, + "2.4.3": { + "shasum": "5f52dd1e2cddbb83b3483cfb4c8c5c24d3975450", + "tarball": "http://registry.npmjs.org/express/-/express-2.4.3.tgz" + }, + "2.4.4": { + "shasum": "ae677e39c6f489e328cb7994b88ebee7db19b6d9", + "tarball": "http://registry.npmjs.org/express/-/express-2.4.4.tgz" + }, + "2.4.5": { + "shasum": "b042984190df1ea06cc6e89c3eb4dfa848376322", + "tarball": "http://registry.npmjs.org/express/-/express-2.4.5.tgz" + }, + "2.4.6": { + "shasum": "df8152c5a40bd89ad74ab07e5ef999fac5a00916", + "tarball": "http://registry.npmjs.org/express/-/express-2.4.6.tgz" + }, + "2.4.7": { + "shasum": "872bbf5427e062100901ade6e80ff577ac24de3f", + "tarball": "http://registry.npmjs.org/express/-/express-2.4.7.tgz" + }, + "2.5.0": { + "shasum": "3f9716eaa0e7380025fbb2c6c9942e3d9c9ed3b9", + "tarball": "http://registry.npmjs.org/express/-/express-2.5.0.tgz" + }, + "2.5.1": { + "shasum": "0644284c2c219264e2955fe94717ce7b462cd5d6", + "tarball": "http://registry.npmjs.org/express/-/express-2.5.1.tgz" + }, + "2.5.2": { + "shasum": "d58c41f7dff9a69696cffcc8e9bde4e81cbbcbef", + "tarball": "http://registry.npmjs.org/express/-/express-2.5.2.tgz" + } + }, + "keywords": [ + "framework", + "sinatra", + "web", + "rest", + "restful" + ], + "url": "http://registry.npmjs.org/express/" + }, + "express-aid": { + "name": "express-aid", + "description": "Making express apps easier since 0.1.0", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "Tim-Smart", + "email": "tim@fostle.com" + } + ], + "time": { + "modified": "2011-06-30T11:14:38.933Z", + "created": "2011-05-28T22:19:43.606Z", + "0.1.0": "2011-05-28T22:19:44.125Z", + "0.1.1": "2011-05-28T22:29:34.871Z", + "0.1.2": "2011-05-28T22:40:35.741Z", + "0.1.3": "2011-05-28T22:43:12.094Z", + "0.1.4": "2011-05-28T22:45:48.490Z", + "0.1.5": "2011-05-29T00:24:24.993Z", + "0.1.6": "2011-06-02T03:31:23.205Z", + "0.3.0": "2011-06-30T11:14:38.933Z" + }, + "author": { + "name": "Tim Smart", + "email": "tim@fostle.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Tim-Smart/express-aid.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/express-aid/0.1.0", + "0.1.1": "http://registry.npmjs.org/express-aid/0.1.1", + "0.1.2": "http://registry.npmjs.org/express-aid/0.1.2", + "0.1.3": "http://registry.npmjs.org/express-aid/0.1.3", + "0.1.4": "http://registry.npmjs.org/express-aid/0.1.4", + "0.1.5": "http://registry.npmjs.org/express-aid/0.1.5", + "0.1.6": "http://registry.npmjs.org/express-aid/0.1.6", + "0.3.0": "http://registry.npmjs.org/express-aid/0.3.0" + }, + "dist": { + "0.1.0": { + "shasum": "f4ceb7b3b5e3d2701fa821ebd9d3476a9dcc9c41", + "tarball": "http://registry.npmjs.org/express-aid/-/express-aid-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "f5c937bbaf908bda4690f50cad8041ed602f2a14", + "tarball": "http://registry.npmjs.org/express-aid/-/express-aid-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "231e7cb891f9f85aea53c6d963c5aad0a20641c0", + "tarball": "http://registry.npmjs.org/express-aid/-/express-aid-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "ac54c3524fbcb0ec56a4cafb76b30936c83ca9f3", + "tarball": "http://registry.npmjs.org/express-aid/-/express-aid-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "af8c8ab7b58d0dea0d5da6c7e196296a8ee50541", + "tarball": "http://registry.npmjs.org/express-aid/-/express-aid-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "58a2611496a74ceecf92a64df28b50956749890d", + "tarball": "http://registry.npmjs.org/express-aid/-/express-aid-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "bf0e0197bb39e4ce60b0f2a096cea16e89f89157", + "tarball": "http://registry.npmjs.org/express-aid/-/express-aid-0.1.6.tgz" + }, + "0.3.0": { + "shasum": "b4b7dbd9d340d94ba53b0049df95ec907112ac1c", + "tarball": "http://registry.npmjs.org/express-aid/-/express-aid-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/express-aid/" + }, + "express-app-bootstrap": { + "name": "express-app-bootstrap", + "description": "The script bootstraps an Express-based node.js RESTful app.", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "georgecalm", + "email": "georgecalm@gmail.com" + } + ], + "time": { + "modified": "2011-08-21T09:42:46.570Z", + "created": "2011-08-21T09:42:46.395Z", + "1.0.0": "2011-08-21T09:42:46.570Z" + }, + "author": { + "name": "Yuriy Nemtsov" + }, + "repository": { + "type": "git", + "url": "git://github.com/georgecalm/express-app-bootstrap.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/express-app-bootstrap/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "3d06ea2e720c4ca99815f8a2f7e54c1705cf3a9b", + "tarball": "http://registry.npmjs.org/express-app-bootstrap/-/express-app-bootstrap-1.0.0.tgz" + } + }, + "keywords": [ + "express", + "bootstrap" + ], + "url": "http://registry.npmjs.org/express-app-bootstrap/" + }, + "express-asset": { + "name": "express-asset", + "description": "Add a simple asset manager to express for adding and rendering script and style elements.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "qard", + "email": "admin@stephenbelanger.com" + } + ], + "time": { + "modified": "2011-06-13T19:30:57.047Z", + "created": "2011-06-13T19:30:56.471Z", + "0.0.1": "2011-06-13T19:30:57.047Z" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/express-asset/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "045ff79aa678d1ae174355d14e50c7aa314459cd", + "tarball": "http://registry.npmjs.org/express-asset/-/express-asset-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/express-asset/" + }, + "express-blocks": { + "name": "express-blocks", + "description": "Express middleware for blocks in views.", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "aseemk", + "email": "aseem.kishore@gmail.com" + } + ], + "time": { + "modified": "2011-10-10T06:24:57.989Z", + "created": "2011-04-20T07:18:30.154Z", + "0.1.0": "2011-04-20T07:18:30.634Z", + "0.2.0": "2011-04-20T09:38:07.802Z", + "0.2.1": "2011-04-20T12:07:12.615Z", + "0.2.2": "2011-10-10T06:24:57.989Z" + }, + "author": { + "name": "Aseem Kishore", + "email": "aseem.kishore@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/aseemk/express-blocks.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/express-blocks/0.1.0", + "0.2.0": "http://registry.npmjs.org/express-blocks/0.2.0", + "0.2.1": "http://registry.npmjs.org/express-blocks/0.2.1", + "0.2.2": "http://registry.npmjs.org/express-blocks/0.2.2" + }, + "dist": { + "0.1.0": { + "shasum": "df2ce8f018f1306804f93e088ff88820aa7c2ddf", + "tarball": "http://registry.npmjs.org/express-blocks/-/express-blocks-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "78760b961b61a43bd631fb8f3efbe6763560f806", + "tarball": "http://registry.npmjs.org/express-blocks/-/express-blocks-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "ca25f48a93e9f1dbdc8183794f31b7d8063ce646", + "tarball": "http://registry.npmjs.org/express-blocks/-/express-blocks-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "6b6edad1530accd59504b41cab1adcffe9bf8421", + "tarball": "http://registry.npmjs.org/express-blocks/-/express-blocks-0.2.2.tgz" + } + }, + "url": "http://registry.npmjs.org/express-blocks/" + }, + "express-bundle": { + "name": "express-bundle", + "description": "an express library to split up your application into multiple sub-apps (bundles)", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "jga", + "email": "me@jga.me" + } + ], + "time": { + "modified": "2011-11-14T00:29:26.397Z", + "created": "2011-11-06T08:30:06.075Z", + "0.0.1": "2011-11-06T08:30:07.297Z", + "0.0.2": "2011-11-07T06:20:43.856Z", + "0.0.3": "2011-11-14T00:29:26.397Z" + }, + "author": { + "name": "Greg Allen", + "email": "@jgaui", + "url": "http://jga.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/jgallen23/express-bundle.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/express-bundle/0.0.1", + "0.0.2": "http://registry.npmjs.org/express-bundle/0.0.2", + "0.0.3": "http://registry.npmjs.org/express-bundle/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "5ff18c9b92ebf2c6fbc8e18d6962231f5625f6e2", + "tarball": "http://registry.npmjs.org/express-bundle/-/express-bundle-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "1af995079249d540795fb17731ba7026b59454a4", + "tarball": "http://registry.npmjs.org/express-bundle/-/express-bundle-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "43acba5a9b3a853d1cc0cac38ebcce8e535b11f4", + "tarball": "http://registry.npmjs.org/express-bundle/-/express-bundle-0.0.3.tgz" + } + }, + "keywords": [ + "bundle", + "express", + "apps" + ], + "url": "http://registry.npmjs.org/express-bundle/" + }, + "express-cache": { + "name": "express-cache", + "description": "Express middleware for caching responses on disk or in memory.", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "joehewitt", + "email": "joe@joehewitt.com" + } + ], + "time": { + "modified": "2011-10-03T21:15:21.712Z", + "created": "2011-09-09T05:43:36.048Z", + "0.0.1": "2011-09-09T05:43:39.535Z", + "0.0.2": "2011-09-13T02:16:24.516Z", + "0.0.3": "2011-10-01T21:05:07.336Z", + "0.0.4": "2011-10-03T21:15:21.712Z" + }, + "author": { + "name": "Joe Hewitt", + "email": "joe@joehewitt.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/joehewitt/express-cache.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/express-cache/0.0.1", + "0.0.2": "http://registry.npmjs.org/express-cache/0.0.2", + "0.0.3": "http://registry.npmjs.org/express-cache/0.0.3", + "0.0.4": "http://registry.npmjs.org/express-cache/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "cf13176224fb2f46179836b431f910914d4c6c53", + "tarball": "http://registry.npmjs.org/express-cache/-/express-cache-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "b8e2ed0fa3cd729d37e6aa8c5bfa7c9d74afe344", + "tarball": "http://registry.npmjs.org/express-cache/-/express-cache-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "8effb374cbd1b9f1000789b6df3cc544d76dbd3b", + "tarball": "http://registry.npmjs.org/express-cache/-/express-cache-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "9e0da9173105f053b49256c0309be5288d0d8347", + "tarball": "http://registry.npmjs.org/express-cache/-/express-cache-0.0.4.tgz" + } + }, + "keywords": [ + "express" + ], + "url": "http://registry.npmjs.org/express-cache/" + }, + "express-chromeframe": { + "name": "express-chromeframe", + "description": "Dead simple middleware to enable chromeframe on connect/express applications.", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "mike.hemesath", + "email": "mike.hemesath@gmail.com" + } + ], + "time": { + "modified": "2011-08-15T18:49:06.090Z", + "created": "2011-06-28T13:24:54.905Z", + "0.1.0": "2011-06-28T13:25:15.480Z", + "0.2.0": "2011-08-15T18:49:06.090Z" + }, + "author": { + "name": "Mike Hemesath", + "email": "mike.hemesath@gmail.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:mhemesath/express-chromeframe.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/express-chromeframe/0.1.0", + "0.2.0": "http://registry.npmjs.org/express-chromeframe/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "f2506703a4971576a86bddc1df6e3eaa4c6154e3", + "tarball": "http://registry.npmjs.org/express-chromeframe/-/express-chromeframe-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "f7ccd6bfb40d24fbe5de7b275495778bf2ed768f", + "tarball": "http://registry.npmjs.org/express-chromeframe/-/express-chromeframe-0.2.0.tgz" + } + }, + "keywords": [ + "chrome", + "chromeframe", + "chrome-frame", + "gcf", + "middleware", + "express", + "connect" + ], + "url": "http://registry.npmjs.org/express-chromeframe/" + }, + "express-coffee": { + "name": "express-coffee", + "description": "An express middleware to automatically compile and serve coffeescript files.", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "qard", + "email": "admin@stephenbelanger.com" + } + ], + "time": { + "modified": "2011-12-13T08:20:59.991Z", + "created": "2011-08-23T22:19:21.430Z", + "0.0.1": "2011-08-23T22:19:22.738Z", + "0.0.2": "2011-08-29T22:04:31.818Z", + "0.0.3": "2011-09-02T22:03:03.193Z", + "0.0.4": "2011-11-16T01:00:45.660Z", + "0.0.5": "2011-12-11T04:50:08.764Z", + "0.0.6": "2011-12-13T08:20:59.991Z" + }, + "author": { + "name": "Stephen Belanger", + "email": "admin@stephenbelanger.com", + "url": "stephenbelanger.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Qard/express-coffee.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/express-coffee/0.0.1", + "0.0.2": "http://registry.npmjs.org/express-coffee/0.0.2", + "0.0.3": "http://registry.npmjs.org/express-coffee/0.0.3", + "0.0.4": "http://registry.npmjs.org/express-coffee/0.0.4", + "0.0.5": "http://registry.npmjs.org/express-coffee/0.0.5", + "0.0.6": "http://registry.npmjs.org/express-coffee/0.0.6" + }, + "dist": { + "0.0.1": { + "shasum": "ed4ff5fc5cdc88cd4f62721f5862b63d1e0a564e", + "tarball": "http://registry.npmjs.org/express-coffee/-/express-coffee-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "2d17d374835ab4916918099756dd0060b95fd8c4", + "tarball": "http://registry.npmjs.org/express-coffee/-/express-coffee-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "083d70ccc63d92ee4b556152eaf74510fa9ebda4", + "tarball": "http://registry.npmjs.org/express-coffee/-/express-coffee-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "18adb4b0e8caf0fee6114a1b7a68bdbf96f6125e", + "tarball": "http://registry.npmjs.org/express-coffee/-/express-coffee-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "45beff026782429ae7999526ea0c9ab7676bb79a", + "tarball": "http://registry.npmjs.org/express-coffee/-/express-coffee-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "52860e4dee5d920bbcac54a6d242a4f29e593873", + "tarball": "http://registry.npmjs.org/express-coffee/-/express-coffee-0.0.6.tgz" + } + }, + "url": "http://registry.npmjs.org/express-coffee/" + }, + "express-config": { + "name": "express-config", + "description": "Super simple express config loader.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "blahed", + "email": "tdunn13@gmail.com" + } + ], + "time": { + "modified": "2011-06-07T03:34:04.446Z", + "created": "2011-06-07T03:34:04.159Z", + "0.0.1": "2011-06-07T03:34:04.446Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/express-config/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "a906ee49e0671631687bf333f42a3c738e3d6085", + "tarball": "http://registry.npmjs.org/express-config/-/express-config-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/express-config/" + }, + "express-configure": { + "name": "express-configure", + "description": "Express async configuration support", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "time": { + "modified": "2011-03-15T15:42:46.354Z", + "created": "2011-02-21T19:34:53.993Z", + "0.0.1": "2011-02-21T19:34:54.335Z", + "0.0.2": "2011-03-04T00:06:51.342Z", + "0.0.3": "2011-03-15T15:42:46.354Z" + }, + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/express-configure/0.0.1", + "0.0.2": "http://registry.npmjs.org/express-configure/0.0.2", + "0.0.3": "http://registry.npmjs.org/express-configure/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "8f67ef269ef138ae4220ed96243c65b2da2a805a", + "tarball": "http://registry.npmjs.org/express-configure/-/express-configure-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "0a5456b827b2ec2f67fe78eff0975cd355ce7cde", + "tarball": "http://registry.npmjs.org/express-configure/-/express-configure-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "157bf52f03325fba010366b01481eca58117a2dd", + "tarball": "http://registry.npmjs.org/express-configure/-/express-configure-0.0.3.tgz" + } + }, + "keywords": [ + "express" + ], + "url": "http://registry.npmjs.org/express-configure/" + }, + "express-contrib": { + "name": "express-contrib", + "description": "Express utilities", + "dist-tags": { + "latest": "0.3.4" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "time": { + "modified": "2011-02-01T20:50:44.070Z", + "created": "2011-01-06T16:42:12.528Z", + "0.0.1": "2011-01-06T16:42:12.528Z", + "0.1.0": "2011-01-06T16:42:12.528Z", + "0.2.0": "2011-01-06T16:42:12.528Z", + "0.3.0": "2011-01-06T16:42:12.528Z", + "0.3.1": "2011-01-06T16:42:12.528Z", + "0.3.2": "2011-01-10T17:24:32.363Z", + "0.3.3": "2011-01-11T03:14:45.449Z", + "0.3.4": "2011-02-01T20:50:44.070Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/express-contrib/0.0.1", + "0.1.0": "http://registry.npmjs.org/express-contrib/0.1.0", + "0.2.0": "http://registry.npmjs.org/express-contrib/0.2.0", + "0.3.0": "http://registry.npmjs.org/express-contrib/0.3.0", + "0.3.1": "http://registry.npmjs.org/express-contrib/0.3.1", + "0.3.2": "http://registry.npmjs.org/express-contrib/0.3.2", + "0.3.3": "http://registry.npmjs.org/express-contrib/0.3.3", + "0.3.4": "http://registry.npmjs.org/express-contrib/0.3.4" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/express-contrib/-/express-contrib-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "58f74ec895321c7f24036ac773bafff2d51bb561", + "tarball": "http://registry.npmjs.org/express-contrib/-/express-contrib-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "09bfd714477cd9b8bd64450567b3460db0089bef", + "tarball": "http://registry.npmjs.org/express-contrib/-/express-contrib-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "c4e911ec478fb4e072816dba48d5c2658c462557", + "tarball": "http://registry.npmjs.org/express-contrib/-/express-contrib-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "1b39d7d871b080c931c92d8da66c46ad1d06c4c9", + "tarball": "http://registry.npmjs.org/express-contrib/-/express-contrib-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "a78286c2d2422606553c203fa0ab3aab4f7f8310", + "tarball": "http://registry.npmjs.org/express-contrib/-/express-contrib-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "508c9078db9ec9e981200034cc93c5ee48dea223", + "tarball": "http://registry.npmjs.org/express-contrib/-/express-contrib-0.3.3.tgz" + }, + "0.3.4": { + "shasum": "2e065d9d3c21595879d3b4607ecf457ad96dda07", + "tarball": "http://registry.npmjs.org/express-contrib/-/express-contrib-0.3.4.tgz" + } + }, + "keywords": [ + "express", + "framework", + "sinatra", + "web", + "rest", + "restful" + ], + "url": "http://registry.npmjs.org/express-contrib/" + }, + "express-controllers": { + "name": "express-controllers", + "description": "MVC routing for express", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "drudge", + "email": "drudge@conceited.net" + } + ], + "time": { + "modified": "2011-05-27T02:14:40.351Z", + "created": "2011-05-27T02:14:40.058Z", + "0.2.0": "2011-05-27T02:14:40.351Z" + }, + "author": { + "name": "Nicholas Penree", + "email": "drudge@conceited.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/drudge/express-controllers.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/express-controllers/0.2.0" + }, + "dist": { + "0.2.0": { + "shasum": "e9d3436c0309a258e610f995553299c517cacac8", + "tarball": "http://registry.npmjs.org/express-controllers/-/express-controllers-0.2.0.tgz" + } + }, + "keywords": [ + "express", + "rest", + "resource", + "mvc", + "controller" + ], + "url": "http://registry.npmjs.org/express-controllers/" + }, + "express-controllers-new": { + "name": "express-controllers-new", + "description": "MVC routing for express", + "dist-tags": { + "latest": "0.3.4" + }, + "maintainers": [ + { + "name": "sjsadowski", + "email": "stephen.sadowski@gmail.com" + } + ], + "time": { + "modified": "2011-06-23T15:28:34.539Z", + "created": "2011-06-22T18:33:44.229Z", + "0.3.2": "2011-06-22T18:33:44.571Z", + "0.3.3": "2011-06-22T18:42:36.950Z", + "0.3.4": "2011-06-23T13:12:00.139Z" + }, + "author": { + "name": "Stephen Sadowski" + }, + "repository": { + "type": "git", + "url": "git://github.com/sjsadowski/express-controllers-new.git" + }, + "versions": { + "0.3.2": "http://registry.npmjs.org/express-controllers-new/0.3.2", + "0.3.3": "http://registry.npmjs.org/express-controllers-new/0.3.3", + "0.3.4": "http://registry.npmjs.org/express-controllers-new/0.3.4" + }, + "dist": { + "0.3.2": { + "shasum": "959e4822bbe69e5fb70cd91fce6f5e7ad700990e", + "tarball": "http://registry.npmjs.org/express-controllers-new/-/express-controllers-new-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "b472fb672d85f774f2d97bc4c6a211814eea351f", + "tarball": "http://registry.npmjs.org/express-controllers-new/-/express-controllers-new-0.3.3.tgz" + }, + "0.3.4": { + "shasum": "1c1335d30ab7556463fef50bbbdc11d59737e41d", + "tarball": "http://registry.npmjs.org/express-controllers-new/-/express-controllers-new-0.3.4.tgz" + } + }, + "keywords": [ + "express", + "rest", + "resource", + "mvc", + "controller" + ], + "url": "http://registry.npmjs.org/express-controllers-new/" + }, + "express-cross-site": { + "name": "express-cross-site", + "description": "Middleware for handling cross site attack", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "drapeko", + "email": "roman.drapeko@gmail.com" + } + ], + "time": { + "modified": "2011-10-04T19:54:51.710Z", + "created": "2011-08-20T11:45:33.549Z", + "0.0.1": "2011-08-20T11:45:37.651Z", + "0.0.2": "2011-08-27T12:08:50.486Z", + "0.0.3": "2011-08-28T10:50:32.078Z", + "0.0.4": "2011-08-28T10:58:23.024Z", + "0.0.5": "2011-08-28T11:30:50.901Z", + "0.0.6": "2011-10-04T19:54:51.710Z" + }, + "author": { + "name": "Roman Drapeko", + "email": "roman.drapeko@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/drapeko/express-cross-site.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/express-cross-site/0.0.1", + "0.0.2": "http://registry.npmjs.org/express-cross-site/0.0.2", + "0.0.3": "http://registry.npmjs.org/express-cross-site/0.0.3", + "0.0.4": "http://registry.npmjs.org/express-cross-site/0.0.4", + "0.0.5": "http://registry.npmjs.org/express-cross-site/0.0.5", + "0.0.6": "http://registry.npmjs.org/express-cross-site/0.0.6" + }, + "dist": { + "0.0.1": { + "shasum": "6c22aaf82569fb6fec892ab6a998c582f827c6bf", + "tarball": "http://registry.npmjs.org/express-cross-site/-/express-cross-site-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "e6ee533f99559b4e8c3b956aec55b11955d9a4d8", + "tarball": "http://registry.npmjs.org/express-cross-site/-/express-cross-site-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "f4b1aaa17895cc6c8377aa5426758f6c36ee5303", + "tarball": "http://registry.npmjs.org/express-cross-site/-/express-cross-site-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "29662b987af66ccd1e36b3d3fcfc126860dc52a7", + "tarball": "http://registry.npmjs.org/express-cross-site/-/express-cross-site-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "b8d257827286340601737ced70747cde810d5b37", + "tarball": "http://registry.npmjs.org/express-cross-site/-/express-cross-site-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "004f61e7982b10523ebdf1bdf1de67437e995432", + "tarball": "http://registry.npmjs.org/express-cross-site/-/express-cross-site-0.0.6.tgz" + } + }, + "keywords": [ + "express", + "csrf", + "cross site" + ], + "url": "http://registry.npmjs.org/express-cross-site/" + }, + "express-csrf": { + "name": "express-csrf", + "description": "Cross-site request forgery protection for Express", + "dist-tags": { + "latest": "0.3.3" + }, + "maintainers": [ + { + "name": "linus", + "email": "linus@hanssonlarsson.se" + } + ], + "author": { + "name": "Linus G Thiel", + "email": "linus@hanssonlarsson.se" + }, + "repository": { + "type": "git", + "url": "git://github.com/hanssonlarsson/express-csrf.git" + }, + "time": { + "modified": "2011-07-21T08:09:47.615Z", + "created": "2011-03-02T15:34:25.450Z", + "0.1.0": "2011-03-02T15:34:25.450Z", + "0.2.0": "2011-03-02T15:34:25.450Z", + "0.3.0": "2011-05-06T13:45:28.376Z", + "0.3.1": "2011-05-08T16:16:01.867Z", + "0.3.2": "2011-05-08T16:27:43.163Z", + "0.3.3": "2011-07-21T07:57:28.049Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/express-csrf/0.1.0", + "0.2.0": "http://registry.npmjs.org/express-csrf/0.2.0", + "0.3.0": "http://registry.npmjs.org/express-csrf/0.3.0", + "0.3.1": "http://registry.npmjs.org/express-csrf/0.3.1", + "0.3.2": "http://registry.npmjs.org/express-csrf/0.3.2", + "0.3.3": "http://registry.npmjs.org/express-csrf/0.3.3" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/express-csrf/-/express-csrf-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "7a0318b558edc130abe4a50e2b3e9ab662b1c673", + "tarball": "http://registry.npmjs.org/express-csrf/-/express-csrf-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "9a3bebcbcaaddffdc2b68f62fa7f9e8fd36780a2", + "tarball": "http://registry.npmjs.org/express-csrf/-/express-csrf-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "8711fdda89cabf38e1a027583181b52f2c2e5daf", + "tarball": "http://registry.npmjs.org/express-csrf/-/express-csrf-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "b6b69965ab9b601ffa95eb1c2eb23072c500f3e5", + "tarball": "http://registry.npmjs.org/express-csrf/-/express-csrf-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "a3bb1617a7e6d18660ec90d5a030129cafc8a7a0", + "tarball": "http://registry.npmjs.org/express-csrf/-/express-csrf-0.3.3.tgz" + } + }, + "keywords": [ + "middleware", + "web", + "csrf" + ], + "url": "http://registry.npmjs.org/express-csrf/" + }, + "express-custom-errors": { + "name": "express-custom-errors", + "description": "Serves custom error views for Expressjs.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "aheckmann", + "email": "aaron.heckmann+github@gmail.com" + } + ], + "author": { + "name": "Aaron Heckmann", + "email": "aaron.heckmann+github@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/express-custom-errors/0.1.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/express-custom-errors/-/express-custom-errors-0.1.0.tgz" + } + }, + "keywords": [ + "express", + "nodejs", + "plugin", + "expressjs", + "error", + "status", + "code" + ], + "url": "http://registry.npmjs.org/express-custom-errors/" + }, + "express-dialect": { + "name": "express-dialect", + "description": "Pluggable express translation tool.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "masylum", + "email": "masylum@gmail.com" + } + ], + "author": { + "name": "Pau Ramon", + "email": "masylum@gmail.com" + }, + "time": { + "modified": "2011-01-09T18:46:45.471Z", + "created": "2011-01-09T18:04:54.435Z", + "0.0.1": "2011-01-09T18:04:54.435Z", + "0.0.2": "2011-01-09T18:04:54.435Z", + "0.0.3": "2011-01-09T18:04:54.435Z", + "0.0.4": "2011-01-09T18:04:54.435Z", + "0.0.6": "2011-01-09T18:04:54.435Z", + "0.0.7": "2011-01-09T18:04:54.435Z", + "0.0.8": "2011-01-09T18:04:54.435Z", + "0.0.9": "2011-01-09T18:04:54.435Z", + "0.1.0": "2011-01-09T18:46:45.471Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/express-dialect/0.0.1", + "0.0.2": "http://registry.npmjs.org/express-dialect/0.0.2", + "0.0.3": "http://registry.npmjs.org/express-dialect/0.0.3", + "0.0.4": "http://registry.npmjs.org/express-dialect/0.0.4", + "0.0.6": "http://registry.npmjs.org/express-dialect/0.0.6", + "0.0.7": "http://registry.npmjs.org/express-dialect/0.0.7", + "0.0.8": "http://registry.npmjs.org/express-dialect/0.0.8", + "0.0.9": "http://registry.npmjs.org/express-dialect/0.0.9", + "0.1.0": "http://registry.npmjs.org/express-dialect/0.1.0" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/express-dialect/-/express-dialect-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/express-dialect/-/express-dialect-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/express-dialect/-/express-dialect-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://registry.npmjs.org/express-dialect/-/express-dialect-0.0.4.tgz" + }, + "0.0.6": { + "tarball": "http://registry.npmjs.org/express-dialect/-/express-dialect-0.0.6.tgz" + }, + "0.0.7": { + "tarball": "http://registry.npmjs.org/express-dialect/-/express-dialect-0.0.7.tgz" + }, + "0.0.8": { + "tarball": "http://registry.npmjs.org/express-dialect/-/express-dialect-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "9ef92698b543ef72723348c57d3abed92020591a", + "tarball": "http://registry.npmjs.org/express-dialect/-/express-dialect-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "2bfac8bb094086d66297c0fd9d8f955038a53b2c", + "tarball": "http://registry.npmjs.org/express-dialect/-/express-dialect-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/express-dialect/" + }, + "express-dust": { + "name": "express-dust", + "description": "ExpressJS DustJS View Renderer", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "davglass", + "email": "davglass@gmail.com" + } + ], + "time": { + "modified": "2011-03-14T13:57:34.816Z", + "created": "2011-03-12T20:54:32.625Z", + "0.1.0": "2011-03-12T20:54:32.933Z", + "0.1.1": "2011-03-14T13:57:34.816Z" + }, + "author": { + "name": "Dav Glass", + "email": "davglass@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/davglass/express-dust.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/express-dust/0.1.0", + "0.1.1": "http://registry.npmjs.org/express-dust/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "3952dd16fb4a0a00712e91e59b879ce78079ff46", + "tarball": "http://registry.npmjs.org/express-dust/-/express-dust-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "385cd1644fa945e0bc13b7acbd5db0a4970a109e", + "tarball": "http://registry.npmjs.org/express-dust/-/express-dust-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/express-dust/" + }, + "express-expose": { + "name": "express-expose", + "description": "Expose helpers and local variables to the client-side", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "time": { + "modified": "2011-04-21T00:52:40.156Z", + "created": "2011-04-08T17:25:41.361Z", + "0.0.1": "2011-04-08T17:25:41.695Z", + "0.1.0": "2011-04-08T20:24:59.109Z", + "0.2.0": "2011-04-21T00:52:40.156Z" + }, + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/express-expose/0.0.1", + "0.1.0": "http://registry.npmjs.org/express-expose/0.1.0", + "0.2.0": "http://registry.npmjs.org/express-expose/0.2.0" + }, + "dist": { + "0.0.1": { + "shasum": "9883133fcfcbaa117bb763224cd400a40fc47a38", + "tarball": "http://registry.npmjs.org/express-expose/-/express-expose-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "9fed9a7676cabd898310a772562f0286c7a6a5c5", + "tarball": "http://registry.npmjs.org/express-expose/-/express-expose-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "5998925a4e7c8688fe0968c41f0486951b8e0cb1", + "tarball": "http://registry.npmjs.org/express-expose/-/express-expose-0.2.0.tgz" + } + }, + "keywords": [ + "express" + ], + "url": "http://registry.npmjs.org/express-expose/" + }, + "express-extras": { + "name": "express-extras", + "description": "ExpressJS Helpers", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "davglass", + "email": "davglass@gmail.com" + } + ], + "author": { + "name": "Dav Glass", + "email": "davglass@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/davglass/express-extras.git" + }, + "time": { + "0.1.1": "2011-12-13T19:52:15.897Z", + "modified": "2011-12-13T19:52:15.897Z", + "created": "2011-12-13T19:52:15.897Z", + "0.1.0": "2011-12-13T19:52:15.897Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/express-extras/0.1.0", + "0.1.1": "http://registry.npmjs.org/express-extras/0.1.1" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/express-extras/-/express-extras-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "e82e528d22665e6ce5650d1ae8924780d3962154", + "tarball": "http://registry.npmjs.org/express-extras/-/express-extras-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/express-extras/" + }, + "express-fibonacci": { + "name": "express-fibonacci", + "description": "Because every Node.js server needs to have the Fibonacci sequence so it can be nice and cancerous.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "nuck", + "email": "peter.lejeck@gmail.com" + } + ], + "time": { + "modified": "2011-10-03T16:08:20.784Z", + "created": "2011-10-03T14:03:54.794Z", + "0.1.0": "2011-10-03T14:03:56.128Z", + "0.1.1": "2011-10-03T14:11:37.490Z" + }, + "author": { + "name": "Peter Lejeck", + "email": "peter.lejeck@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/NuckChorris/express-fibonacci.git" + }, + "users": { + "thejh": true + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/express-fibonacci/0.1.0", + "0.1.1": "http://registry.npmjs.org/express-fibonacci/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "9437e767383362c6bc7a1d7e68829a0eb95fa13f", + "tarball": "http://registry.npmjs.org/express-fibonacci/-/express-fibonacci-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "59e225cbfc7825761f83d87103b34a2a2484ace6", + "tarball": "http://registry.npmjs.org/express-fibonacci/-/express-fibonacci-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/express-fibonacci/" + }, + "express-form": { + "name": "express-form", + "description": "Form validation and data filtering for Express", + "dist-tags": { + "latest": "0.6.2" + }, + "maintainers": [ + { + "name": "dandean", + "email": "me@dandean.com" + } + ], + "time": { + "modified": "2011-10-25T19:40:44.141Z", + "created": "2011-01-09T19:50:48.489Z", + "0.1.0": "2011-01-09T19:50:48.819Z", + "0.1.1": "2011-01-09T20:07:06.471Z", + "0.2.0": "2011-01-15T23:26:09.122Z", + "0.3.0": "2011-01-21T01:34:51.063Z", + "0.4.0": "2011-01-26T06:18:25.591Z", + "0.4.1": "2011-02-06T06:55:39.840Z", + "0.4.2": "2011-02-23T21:03:46.968Z", + "0.5.0": "2011-02-24T06:00:06.716Z", + "0.5.1": "2011-02-27T19:22:16.800Z", + "0.5.2": "2011-03-18T19:35:49.743Z", + "0.5.3": "2011-03-29T04:59:35.023Z", + "0.6.0": "2011-07-21T21:56:47.440Z", + "0.6.1": "2011-07-25T04:37:25.521Z", + "0.6.2": "2011-10-25T19:40:44.141Z" + }, + "author": { + "name": "Dan Dean", + "email": "@dandean", + "url": "http://dandean.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dandean/express-form.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/express-form/0.1.0", + "0.1.1": "http://registry.npmjs.org/express-form/0.1.1", + "0.2.0": "http://registry.npmjs.org/express-form/0.2.0", + "0.3.0": "http://registry.npmjs.org/express-form/0.3.0", + "0.4.0": "http://registry.npmjs.org/express-form/0.4.0", + "0.4.1": "http://registry.npmjs.org/express-form/0.4.1", + "0.4.2": "http://registry.npmjs.org/express-form/0.4.2", + "0.5.0": "http://registry.npmjs.org/express-form/0.5.0", + "0.5.1": "http://registry.npmjs.org/express-form/0.5.1", + "0.5.2": "http://registry.npmjs.org/express-form/0.5.2", + "0.5.3": "http://registry.npmjs.org/express-form/0.5.3", + "0.6.0": "http://registry.npmjs.org/express-form/0.6.0", + "0.6.1": "http://registry.npmjs.org/express-form/0.6.1", + "0.6.2": "http://registry.npmjs.org/express-form/0.6.2" + }, + "dist": { + "0.1.0": { + "shasum": "1ed2c4b83cadab99c6c2cf7abe4b89a14a33afc4", + "tarball": "http://registry.npmjs.org/express-form/-/express-form-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "e943985b7531537ecb00cc7f6a80781adc7ebeae", + "tarball": "http://registry.npmjs.org/express-form/-/express-form-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "f606fa162b036fda516a1420133bf618b931a336", + "tarball": "http://registry.npmjs.org/express-form/-/express-form-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "f9ad3f8464735e9b24cd686a0adb247005726b28", + "tarball": "http://registry.npmjs.org/express-form/-/express-form-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "2ead03ca1e2cbda297641c60b426b30ab93e7e87", + "tarball": "http://registry.npmjs.org/express-form/-/express-form-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "38a37c59a1bea8c63995ff7d6a64a990df9fa3af", + "tarball": "http://registry.npmjs.org/express-form/-/express-form-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "639b32a32668e58267642829e6cc092847254a16", + "tarball": "http://registry.npmjs.org/express-form/-/express-form-0.4.2.tgz" + }, + "0.5.0": { + "shasum": "04f2a8a6ab2986f5f5a7a7103ad8d4e01c8abd8e", + "tarball": "http://registry.npmjs.org/express-form/-/express-form-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "3d6af993dd1ea0fbef204482c71a95131a9c4d60", + "tarball": "http://registry.npmjs.org/express-form/-/express-form-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "5836c19fe565fc065120ab6ab56d711fa7f46cf6", + "tarball": "http://registry.npmjs.org/express-form/-/express-form-0.5.2.tgz" + }, + "0.5.3": { + "shasum": "181e69c82d532386db0505ebc70b132428e4d123", + "tarball": "http://registry.npmjs.org/express-form/-/express-form-0.5.3.tgz" + }, + "0.6.0": { + "shasum": "0815d18ad388aefced907117cc020c34427a9444", + "tarball": "http://registry.npmjs.org/express-form/-/express-form-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "6166dcf9a86078ccd8cba2908f107de6e8dd6cf5", + "tarball": "http://registry.npmjs.org/express-form/-/express-form-0.6.1.tgz" + }, + "0.6.2": { + "shasum": "7e188ed2289c3abdaa15bd91b8943e473bb82573", + "tarball": "http://registry.npmjs.org/express-form/-/express-form-0.6.2.tgz" + } + }, + "keywords": [ + "form", + "validator", + "validation", + "express" + ], + "url": "http://registry.npmjs.org/express-form/" + }, + "express-helpers": { + "name": "express-helpers", + "description": "Express Helpers", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "masahiroh", + "email": "hayashi.masahiro@gmail.com" + } + ], + "time": { + "modified": "2010-12-19T14:39:12.548Z", + "created": "2010-12-19T14:39:11.884Z", + "0.1.0": "2010-12-19T14:39:12.548Z" + }, + "author": { + "name": "Masahiro Hayashi", + "email": "hayashi.masahiro@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/express-helpers/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "1c7c8e774af2f1fbf7f2cf022af6b809f8dc1e83", + "tarball": "http://registry.npmjs.org/express-helpers/-/express-helpers-0.1.0.tgz" + } + }, + "keywords": [ + "express", + "helper", + "ejs" + ], + "url": "http://registry.npmjs.org/express-helpers/" + }, + "express-jsdom": { + "name": "express-jsdom", + "description": "Server-side DOM for express", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "znetstar", + "email": "webmaster@znetstar.net" + } + ], + "time": { + "modified": "2011-10-10T22:54:53.099Z", + "created": "2011-10-10T22:54:52.527Z", + "0.0.1": "2011-10-10T22:54:53.099Z" + }, + "author": { + "name": "Felix Gnass", + "email": "felix.gnass@neteye.de", + "url": "http://fgnass.posterous.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/fgnass/express-jsdom.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/express-jsdom/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "ed476903761b80ccdc85a3825e598a2f60272fb8", + "tarball": "http://registry.npmjs.org/express-jsdom/-/express-jsdom-0.0.1.tgz" + } + }, + "keywords": [ + "express", + "jsdom", + "jquery" + ], + "url": "http://registry.npmjs.org/express-jsdom/" + }, + "express-latency": { + "name": "express-latency", + "description": "Profile route and middleware latency for express.js apps.", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "ivolo", + "email": "ivolo@mit.edu" + } + ], + "time": { + "modified": "2011-10-30T23:04:36.336Z", + "created": "2011-10-30T22:21:52.330Z", + "0.0.3": "2011-10-30T22:21:52.922Z", + "0.0.4": "2011-10-30T23:04:36.336Z" + }, + "author": { + "name": "Ilya Volodarsky", + "email": "ivolo@mit.edu" + }, + "repository": { + "type": "git", + "url": "git://github.com/classmetric/express-latency.git" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/express-latency/0.0.3", + "0.0.4": "http://registry.npmjs.org/express-latency/0.0.4" + }, + "dist": { + "0.0.3": { + "shasum": "10c4b780ac8ee772544e7d016725f5b446739e67", + "tarball": "http://registry.npmjs.org/express-latency/-/express-latency-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "76a35026e841493e1e44e94b4f3ad54cd2301d9e", + "tarball": "http://registry.npmjs.org/express-latency/-/express-latency-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/express-latency/" + }, + "express-livejade": { + "name": "express-livejade", + "description": "Compiles jade templates to javascript functions so jade.js isn't needed client-side", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "qard", + "email": "admin@stephenbelanger.com" + } + ], + "time": { + "modified": "2011-12-12T21:48:53.917Z", + "created": "2011-09-02T21:48:36.203Z", + "0.0.0": "2011-09-02T21:48:37.460Z", + "0.0.1": "2011-09-02T22:05:48.967Z", + "0.0.2": "2011-12-12T21:48:53.917Z" + }, + "author": { + "name": "Stephen Belanger", + "email": "admin@stephenbelanger.com", + "url": "http://stephenbelanger.com" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/express-livejade/0.0.0", + "0.0.1": "http://registry.npmjs.org/express-livejade/0.0.1", + "0.0.2": "http://registry.npmjs.org/express-livejade/0.0.2" + }, + "dist": { + "0.0.0": { + "shasum": "c384aa903d46e67ebfd590756b25b40dd2300163", + "tarball": "http://registry.npmjs.org/express-livejade/-/express-livejade-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "4f8d4e334c15898b457c3231e175b955e41f295e", + "tarball": "http://registry.npmjs.org/express-livejade/-/express-livejade-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "73e3914a3b313da77bc0bedcfb16a6fbd23d909a", + "tarball": "http://registry.npmjs.org/express-livejade/-/express-livejade-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/express-livejade/" + }, + "express-logger": { + "name": "express-logger", + "description": "Express middleware for auto-archiving log files.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "joehewitt", + "email": "joe@joehewitt.com" + } + ], + "time": { + "modified": "2011-09-12T22:51:22.772Z", + "created": "2011-09-09T06:09:12.952Z", + "0.0.1": "2011-09-09T06:09:13.813Z", + "0.0.2": "2011-09-12T22:51:22.772Z" + }, + "author": { + "name": "Joe Hewitt", + "email": "joe@joehewitt.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/joehewitt/express-logger.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/express-logger/0.0.1", + "0.0.2": "http://registry.npmjs.org/express-logger/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "cacee4ee94edd671db5c45130fff2783ba3c8321", + "tarball": "http://registry.npmjs.org/express-logger/-/express-logger-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "5a42a28d238a1d43b6d7225f34c65f65f46898e6", + "tarball": "http://registry.npmjs.org/express-logger/-/express-logger-0.0.2.tgz" + } + }, + "keywords": [ + "express", + "logger" + ], + "url": "http://registry.npmjs.org/express-logger/" + }, + "express-messages": { + "name": "express-messages", + "description": "Express flash notification message rendering", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "time": { + "modified": "2011-04-25T15:39:10.064Z", + "created": "2011-02-21T19:17:42.573Z", + "0.0.1": "2011-02-21T19:17:42.954Z", + "0.0.2": "2011-04-25T15:39:10.064Z" + }, + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/express-messages/0.0.1", + "0.0.2": "http://registry.npmjs.org/express-messages/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "d0ab581632a96137d2d9fb28273cc8b091397a00", + "tarball": "http://registry.npmjs.org/express-messages/-/express-messages-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "9f3116edb69b32f1806392d6fb5c21b0b1df8bcb", + "tarball": "http://registry.npmjs.org/express-messages/-/express-messages-0.0.2.tgz" + } + }, + "keywords": [ + "express" + ], + "url": "http://registry.npmjs.org/express-messages/" + }, + "express-messages-bootstrap": { + "name": "express-messages-bootstrap", + "description": "Express flash notification message rendering compatible with Twitter's bootstrap and based on TJ Holowaychuk's express-messages.", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "jasong", + "email": "jasong@apache.org" + } + ], + "time": { + "modified": "2011-08-24T04:44:10.499Z", + "created": "2011-08-24T04:32:45.178Z", + "0.0.3": "2011-08-24T04:32:45.620Z", + "0.0.4": "2011-08-24T04:44:10.499Z" + }, + "author": { + "name": "Jason Giedymin", + "email": "jasong@apache.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/JasonGiedymin/express-messages-bootstrap.git" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/express-messages-bootstrap/0.0.3", + "0.0.4": "http://registry.npmjs.org/express-messages-bootstrap/0.0.4" + }, + "dist": { + "0.0.3": { + "shasum": "c288bf07a268fbb1ea2215cf826ff9309fb888b4", + "tarball": "http://registry.npmjs.org/express-messages-bootstrap/-/express-messages-bootstrap-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "41a5906c2e95d7a6c90537ac9e0401b563b73a0a", + "tarball": "http://registry.npmjs.org/express-messages-bootstrap/-/express-messages-bootstrap-0.0.4.tgz" + } + }, + "keywords": [ + "express", + "bootstrap", + "flash" + ], + "url": "http://registry.npmjs.org/express-messages-bootstrap/" + }, + "express-mongoose": { + "name": "express-mongoose", + "description": "Adds Mongoose Promise/Query support to Express rendering.", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "aaron", + "email": "aaron.heckmann+github@gmail.com" + } + ], + "time": { + "modified": "2011-09-19T19:33:18.539Z", + "created": "2011-05-03T13:55:06.399Z", + "0.0.1": "2011-05-03T13:55:06.799Z", + "0.0.2": "2011-05-17T14:15:40.572Z", + "0.0.3": "2011-09-13T18:11:21.554Z", + "0.0.4": "2011-09-16T22:50:38.948Z" + }, + "author": { + "name": "Aaron Heckmann", + "email": "aaron@learnboost.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/LearnBoost/express-mongoose.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/express-mongoose/0.0.1", + "0.0.2": "http://registry.npmjs.org/express-mongoose/0.0.2", + "0.0.3": "http://registry.npmjs.org/express-mongoose/0.0.3", + "0.0.4": "http://registry.npmjs.org/express-mongoose/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "e4e0c5f1fbb6e28e339334f88caa5dc69acc45d6", + "tarball": "http://registry.npmjs.org/express-mongoose/-/express-mongoose-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "306449ced9f6f2ef0345af0478ada3c81e3950d3", + "tarball": "http://registry.npmjs.org/express-mongoose/-/express-mongoose-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "6c890a73d2b6c074bff004f15e87f40e2e5cd066", + "tarball": "http://registry.npmjs.org/express-mongoose/-/express-mongoose-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "fdd5a25b1ea2a1517d89cc82308a2c4802f449b2", + "tarball": "http://registry.npmjs.org/express-mongoose/-/express-mongoose-0.0.4.tgz" + } + }, + "keywords": [ + "express", + "mongoose", + "mongo", + "render", + "promise", + "query" + ], + "url": "http://registry.npmjs.org/express-mongoose/" + }, + "express-mvc-bootstrap": { + "name": "express-mvc-bootstrap", + "description": "Express MVC Application Accelerator", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "clifcunn", + "email": "clifton.cunningham@gmail.com" + } + ], + "time": { + "modified": "2011-03-12T09:30:49.853Z", + "created": "2011-03-10T06:53:06.983Z", + "0.1.0": "2011-03-10T06:53:07.377Z", + "0.1.1": "2011-03-11T06:29:10.716Z", + "0.1.2": "2011-03-12T09:30:49.853Z" + }, + "author": { + "name": "Clifton Cunningham", + "email": "clifton.cunningham@gmail.com", + "url": "cliftoncunningham.co.uk" + }, + "repository": { + "type": "git", + "url": "git://github.com/cliftonc/express-mvc-bootstrap.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/express-mvc-bootstrap/0.1.0", + "0.1.1": "http://registry.npmjs.org/express-mvc-bootstrap/0.1.1", + "0.1.2": "http://registry.npmjs.org/express-mvc-bootstrap/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "5f4236d7361f5ee82335d3b8c00306f05ae497a2", + "tarball": "http://registry.npmjs.org/express-mvc-bootstrap/-/express-mvc-bootstrap-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "370bedcd8353bc51b52587f3a69906699f94e076", + "tarball": "http://registry.npmjs.org/express-mvc-bootstrap/-/express-mvc-bootstrap-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "eb0ce22801d6c556df0afb5677394b65b3deb978", + "tarball": "http://registry.npmjs.org/express-mvc-bootstrap/-/express-mvc-bootstrap-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/express-mvc-bootstrap/" + }, + "express-namespace": { + "name": "express-namespace", + "description": "Express namespaced routes extension", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "time": { + "modified": "2011-10-19T16:26:51.261Z", + "created": "2011-02-21T19:27:58.569Z", + "0.0.1": "2011-02-21T19:27:58.913Z", + "0.0.2": "2011-03-04T00:10:22.727Z", + "0.0.3": "2011-03-15T15:46:41.043Z", + "0.0.4": "2011-10-19T16:26:51.261Z" + }, + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/express-namespace/0.0.1", + "0.0.2": "http://registry.npmjs.org/express-namespace/0.0.2", + "0.0.3": "http://registry.npmjs.org/express-namespace/0.0.3", + "0.0.4": "http://registry.npmjs.org/express-namespace/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "87f187450fe4689188afc53be3890f90b2911b01", + "tarball": "http://registry.npmjs.org/express-namespace/-/express-namespace-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "769d565c063b60c73fd5dabbd971f227a20efbd9", + "tarball": "http://registry.npmjs.org/express-namespace/-/express-namespace-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "add095b1fbed0f074968ce1f79d9c59784bf368a", + "tarball": "http://registry.npmjs.org/express-namespace/-/express-namespace-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "5f7416c9efb38840f0aef0696a990eae9159f241", + "tarball": "http://registry.npmjs.org/express-namespace/-/express-namespace-0.0.4.tgz" + } + }, + "keywords": [ + "express" + ], + "url": "http://registry.npmjs.org/express-namespace/" + }, + "express-negotiate": { + "name": "express-negotiate", + "description": "Express content negotiation functions", + "dist-tags": { + "latest": "0.0.3" + }, + "readme": "\n# express-negotiate\n\n Express content negotiation functions.\n\n## Installation\n\n $ npm install express-negotiate\n\n## Usage\n\nRequire the module to add the request.negotiate method:\n\n```javascript\nvar express = require('express')\n , negotiate = require('express-negotiate');\n```\n\nThen use in the route handler:\n\n```javascript\napp.get('/index', function(req, res, next) {\n req.negotiate({\n 'application/json': function() {\n res.send('{ message: \"Hello World\" }');\n },\n 'html': function() {\n res.send('

Hello World

');\n },\n 'default': function() {\n // send HTML anyway\n res.send('

Hello World

');\n }\n });\n});\n```\n\n## Handling unacceptable requests\n\nIf a 'default' handler is not provided, then req.negotiate will throw\na negotiate.NotAcceptable error. This can be caught and handled using\nexpress error handling:\n\n```javascript\napp.get('/index', function(req, res, next) {\n req.negotiate({\n 'application/json': function() {\n res.send('{ message: \"Hello World\" }');\n }\n });\n});\n\napp.error(function(err, req, res, next) {\n if (err instanceof negotiate.NotAcceptable) {\n res.send('Sorry, I dont know how to return any of the content types requested', 406);\n } else {\n next(err);\n }\n});\n```\n\n\n## Allowing route filename extensions to override Accept header\n\nBy parsing out any filename extension on the route, and passing\nthis to req.negotiate, the client can force a particular\nContent-Type regardless of the Accept header.\n\n```javascript\napp.get('/index.:format?', function(req, res, next) {\n req.negotiate(req.params.format, {\n 'application/json': function() {\n res.send('{ message: \"Hello World\" }');\n }\n });\n});\n```\n\n\n## Credits\n\nMethods for parsing HTTP header qStrings taken from connect-conneg,\nby Jeff Craig (https://github.com/foxxtrot/connect-conneg).\n\n## License \n\n(The MIT License)\n\nCopyright (c) 2011 Chris Leishman <chris@leishman.org>\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n", + "maintainers": [ + { + "name": "chrisleishman", + "email": "chris@leishman.org" + } + ], + "time": { + "modified": "2011-12-11T14:43:23.183Z", + "created": "2011-12-07T17:14:53.142Z", + "0.0.1": "2011-12-07T17:14:55.351Z", + "0.0.2": "2011-12-07T22:53:47.036Z", + "0.0.3": "2011-12-11T14:43:23.183Z" + }, + "author": { + "name": "Chris Leishman", + "email": "chris@leishman.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/chrisleishman/express-negotiate.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/express-negotiate/0.0.1", + "0.0.2": "http://registry.npmjs.org/express-negotiate/0.0.2", + "0.0.3": "http://registry.npmjs.org/express-negotiate/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "43bea0b30c51c7aaeacfc886bee448ecd57b9884", + "tarball": "http://registry.npmjs.org/express-negotiate/-/express-negotiate-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "92b19fbe88c7aead2fcbe0e3cd67498e6a828c08", + "tarball": "http://registry.npmjs.org/express-negotiate/-/express-negotiate-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "5eb6e408db2c9264bec0d4299f3b7c26f85cf0fc", + "tarball": "http://registry.npmjs.org/express-negotiate/-/express-negotiate-0.0.3.tgz" + } + }, + "keywords": [ + "express" + ], + "url": "http://registry.npmjs.org/express-negotiate/" + }, + "express-on-railway": { + "name": "express-on-railway", + "description": "RailwayJS - Ruby-on-Rails inspired MVC web framework", + "dist-tags": { + "latest": "0.1.6-2" + }, + "maintainers": [ + { + "name": "anatoliy", + "email": "rpm1602@gmail.com" + } + ], + "time": { + "modified": "2011-06-09T14:28:46.637Z", + "created": "2011-01-13T21:49:07.239Z", + "0.0.2": "2011-01-13T21:49:07.825Z", + "0.1.0": "2011-04-05T18:51:43.130Z", + "0.1.6-2": "2011-06-09T14:28:46.637Z" + }, + "author": { + "name": "Anatoliy Chakkaev" + }, + "repository": { + "type": "git", + "url": "git://github.com/1602/express-on-railway.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/express-on-railway/0.0.2", + "0.1.0": "http://registry.npmjs.org/express-on-railway/0.1.0", + "0.1.6-2": "http://registry.npmjs.org/express-on-railway/0.1.6-2" + }, + "dist": { + "0.0.2": { + "shasum": "238fa331a20a8f8edca6a1fb2e08edd02fca466a", + "tarball": "http://registry.npmjs.org/express-on-railway/-/express-on-railway-0.0.2.tgz" + }, + "0.1.0": { + "shasum": "17b2b1af110f4e361ba05f5f97c7595b7376db89", + "tarball": "http://registry.npmjs.org/express-on-railway/-/express-on-railway-0.1.0.tgz" + }, + "0.1.6-2": { + "shasum": "ad0fda44a0b15ffcc3bbe9f164439e00f5a20582", + "tarball": "http://registry.npmjs.org/express-on-railway/-/express-on-railway-0.1.6-2.tgz" + } + }, + "url": "http://registry.npmjs.org/express-on-railway/" + }, + "express-outdatedhtml": { + "name": "express-outdatedhtml", + "description": "Replace HTML5-element-names with proven old ones, on-the-fly during view render, to reach IE compatibility.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "aldipower", + "email": "nihil.baxter.dev@gmail.com" + } + ], + "time": { + "modified": "2011-11-18T14:24:54.320Z", + "created": "2011-11-18T14:19:45.165Z", + "0.0.1": "2011-11-18T14:24:54.320Z" + }, + "author": { + "name": "Felix Gertz", + "email": "nihil.baxter.dev@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/aldipower/express-outdatedhtml.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/express-outdatedhtml/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "1fc943d79632b837b37f55a14a3d784c1acfe41e", + "tarball": "http://registry.npmjs.org/express-outdatedhtml/-/express-outdatedhtml-0.0.1.tgz" + } + }, + "keywords": [ + "html5", + "internet", + "explorer", + "replacement", + "div", + "element", + "tag", + "replace", + "web" + ], + "url": "http://registry.npmjs.org/express-outdatedhtml/" + }, + "express-params": { + "name": "express-params", + "description": "Express param functions", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "time": { + "modified": "2011-05-23T23:56:03.858Z", + "created": "2011-05-23T23:56:03.294Z", + "0.0.1": "2011-05-23T23:56:03.859Z" + }, + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/express-params/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "66a019793c41fcb52fca5a9fa54f5eaf6fba749f", + "tarball": "http://registry.npmjs.org/express-params/-/express-params-0.0.1.tgz" + } + }, + "keywords": [ + "express" + ], + "url": "http://registry.npmjs.org/express-params/" + }, + "express-pjax": { + "name": "express-pjax", + "description": "Express middleware for Pjax.", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "# express-pjax\n\nExpress middleware for Pjax.\n\n## Installation\n\n```\nnpm install express-pjax\n```\n\n## Usage\n\nIf you use `res.renderPjax` method, the request of pjax will be handled automatically.\n\n```javascript\nvar express = require('express');\nvar pjax = require('express-pjax');\nvar app = express.createServer();\n\napp.configure(function() {\n app.use(pjax());\n // -- snip --\n});\n\napp.get('/', function(req, res) {\n res.renderPjax('index', { locals: { hello: \"Hello World!\" } });\n});\n\napp.get('/foo', function(req, res) {\n res.renderPjax('foo');\n});\n```\n\n## TODO\n\n* Support redirect.\n\n## Copyright\n\nCopyright (C) 2011 Dai Akatsuka, released under the MIT License.\n", + "maintainers": [ + { + "name": "d_akatsuka", + "email": "d.akatsuka@gmail.com" + } + ], + "time": { + "modified": "2011-11-22T19:49:40.395Z", + "created": "2011-11-22T19:49:36.451Z", + "0.0.1": "2011-11-22T19:49:40.395Z" + }, + "author": { + "name": "Dai Akatsuka", + "email": "d.akatsuka@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dakatsuka/express-pjax.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/express-pjax/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "6d9a7031dfbfcd6e899a11f9c685e8eb0f1bcebe", + "tarball": "http://registry.npmjs.org/express-pjax/-/express-pjax-0.0.1.tgz" + } + }, + "keywords": [ + "express", + "pjax" + ], + "url": "http://registry.npmjs.org/express-pjax/" + }, + "express-rate": { + "name": "express-rate", + "description": "Rate monitoring and limiting for express.js apps.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "ivolo", + "email": "ivolo@mit.edu" + } + ], + "time": { + "modified": "2011-10-29T06:41:00.242Z", + "created": "2011-10-29T06:40:59.741Z", + "0.0.1": "2011-10-29T06:41:00.242Z" + }, + "author": { + "name": "Ilya Volodarsky", + "email": "ilya@segment.io" + }, + "repository": { + "type": "git", + "url": "git@github.com:ClassMetric/express-rate.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/express-rate/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "ba0c01b9b09fc434b210950babc7df004650a286", + "tarball": "http://registry.npmjs.org/express-rate/-/express-rate-0.0.1.tgz" + } + }, + "keywords": [ + "rate", + "monitor", + "limit", + "monitoring", + "performance" + ], + "url": "http://registry.npmjs.org/express-rate/" + }, + "express-resource": { + "name": "express-resource", + "description": "Resourceful routing for express", + "dist-tags": { + "latest": "0.2.3" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "time": { + "modified": "2011-11-14T21:22:33.393Z", + "created": "2011-02-25T17:15:02.023Z", + "0.0.1": "2011-02-25T17:15:02.390Z", + "0.0.2": "2011-03-04T00:04:38.603Z", + "0.1.0": "2011-03-29T20:26:15.566Z", + "0.2.0": "2011-04-10T04:49:51.109Z", + "0.2.1": "2011-05-25T21:12:25.178Z", + "0.2.2": "2011-09-08T22:56:50.271Z", + "0.2.3": "2011-09-23T15:14:53.599Z" + }, + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "users": { + "deedubs": true + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/express-resource/0.0.1", + "0.0.2": "http://registry.npmjs.org/express-resource/0.0.2", + "0.1.0": "http://registry.npmjs.org/express-resource/0.1.0", + "0.2.0": "http://registry.npmjs.org/express-resource/0.2.0", + "0.2.1": "http://registry.npmjs.org/express-resource/0.2.1", + "0.2.2": "http://registry.npmjs.org/express-resource/0.2.2", + "0.2.3": "http://registry.npmjs.org/express-resource/0.2.3" + }, + "dist": { + "0.0.1": { + "shasum": "f8de6d2ac5cddcf7c7de042be8ac92b13282010b", + "tarball": "http://registry.npmjs.org/express-resource/-/express-resource-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "632f772ca96da9a0c838a05af82c4629889340c5", + "tarball": "http://registry.npmjs.org/express-resource/-/express-resource-0.0.2.tgz" + }, + "0.1.0": { + "shasum": "d41e058c55abdc705f76eee04e6fe3d12214e2ad", + "tarball": "http://registry.npmjs.org/express-resource/-/express-resource-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "b1c43e6cd3833a86cba2669213a5a0f0003d8154", + "tarball": "http://registry.npmjs.org/express-resource/-/express-resource-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "e9c8187e5edf3b9bc5ccc97d2b8798461fba5a10", + "tarball": "http://registry.npmjs.org/express-resource/-/express-resource-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "649faf3b71ca2d30194a11de504a61a5a9c32c33", + "tarball": "http://registry.npmjs.org/express-resource/-/express-resource-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "cbc020a3d577b5734acbb0a5bb08393d765a338e", + "tarball": "http://registry.npmjs.org/express-resource/-/express-resource-0.2.3.tgz" + } + }, + "keywords": [ + "express", + "rest", + "resource" + ], + "url": "http://registry.npmjs.org/express-resource/" + }, + "express-rewrite": { + "name": "express-rewrite", + "description": "URL rewriting middleware for Express.", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "joehewitt", + "email": "joe@joehewitt.com" + } + ], + "time": { + "modified": "2011-09-13T02:50:32.625Z", + "created": "2011-09-09T05:10:05.338Z", + "0.0.1": "2011-09-09T05:10:06.045Z", + "0.0.2": "2011-09-09T05:16:08.916Z", + "0.0.3": "2011-09-13T02:50:32.625Z" + }, + "author": { + "name": "Joe Hewitt", + "email": "joe@joehewitt.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/joehewitt/express-rewrite.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/express-rewrite/0.0.1", + "0.0.2": "http://registry.npmjs.org/express-rewrite/0.0.2", + "0.0.3": "http://registry.npmjs.org/express-rewrite/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "c3489fe971be7395e07efd40ee9cca16246b4c3b", + "tarball": "http://registry.npmjs.org/express-rewrite/-/express-rewrite-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "ebd4654e1d7a83323cf41db7845427fedf276afa", + "tarball": "http://registry.npmjs.org/express-rewrite/-/express-rewrite-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "1ff4b7b54ca3f77255d34c5dbf4044124b729a85", + "tarball": "http://registry.npmjs.org/express-rewrite/-/express-rewrite-0.0.3.tgz" + } + }, + "keywords": [ + "express" + ], + "url": "http://registry.npmjs.org/express-rewrite/" + }, + "express-route-util": { + "name": "express-route-util", + "description": "A Django-inspired routing and controller organization utility for the Express framework.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "dfellis", + "email": "d.f.ellis@ieee.org" + } + ], + "time": { + "modified": "2011-09-14T20:40:54.641Z", + "created": "2011-08-20T02:10:37.171Z", + "0.0.1": "2011-08-20T02:10:37.321Z", + "0.0.2": "2011-08-20T02:17:34.603Z", + "0.1.0": "2011-08-29T20:02:43.182Z", + "0.1.1": "2011-09-14T20:40:54.641Z" + }, + "author": { + "name": "David Ellis and Alain Rodriguez", + "email": "d.f.ellis@ieee.org", + "url": "http://dfellis.posterous.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/AGROSICA/express-route-util.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/express-route-util/0.0.1", + "0.0.2": "http://registry.npmjs.org/express-route-util/0.0.2", + "0.1.0": "http://registry.npmjs.org/express-route-util/0.1.0", + "0.1.1": "http://registry.npmjs.org/express-route-util/0.1.1" + }, + "dist": { + "0.0.1": { + "shasum": "7cd95259c4c979a3e2515f498fbc6d5252150821", + "tarball": "http://registry.npmjs.org/express-route-util/-/express-route-util-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "5c7c5b9f5a99bc51ee26819a24cd48fc89a12225", + "tarball": "http://registry.npmjs.org/express-route-util/-/express-route-util-0.0.2.tgz" + }, + "0.1.0": { + "shasum": "77d697adab0155659ec41b86d283489f397af0ed", + "tarball": "http://registry.npmjs.org/express-route-util/-/express-route-util-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "f57d6e8f644d4f2760869b352d2fd2f73b8e6647", + "tarball": "http://registry.npmjs.org/express-route-util/-/express-route-util-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/express-route-util/" + }, + "express-rpx": { + "name": "express-rpx", + "dist-tags": { + "latest": "0.1.7" + }, + "maintainers": [ + { + "name": "xrdawson", + "email": "xrdawson@gmail.com" + } + ], + "time": { + "modified": "2011-05-05T06:38:22.510Z", + "created": "2011-05-05T00:08:31.969Z", + "0.1.4": "2011-05-05T00:08:33.294Z", + "0.1.5": "2011-05-05T00:27:51.162Z", + "0.1.6": "2011-05-05T00:32:11.309Z", + "0.1.7": "2011-05-05T06:38:22.510Z" + }, + "author": { + "name": "Chris Dawson", + "email": "xrdawson@gmail.com" + }, + "versions": { + "0.1.4": "http://registry.npmjs.org/express-rpx/0.1.4", + "0.1.5": "http://registry.npmjs.org/express-rpx/0.1.5", + "0.1.6": "http://registry.npmjs.org/express-rpx/0.1.6", + "0.1.7": "http://registry.npmjs.org/express-rpx/0.1.7" + }, + "dist": { + "0.1.4": { + "shasum": "331037fa8f1cbb0e68674e4a1752beebd3f369db", + "tarball": "http://registry.npmjs.org/express-rpx/-/express-rpx-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "95bf3491ecbd8b8b99e95990e9bb022f3c169bf6", + "tarball": "http://registry.npmjs.org/express-rpx/-/express-rpx-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "289605cfd0999bc3530b47f114aa9c855a1128dd", + "tarball": "http://registry.npmjs.org/express-rpx/-/express-rpx-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "46fef5c3f171d4c68062fd2922db7ad79f3fc0d5", + "tarball": "http://registry.npmjs.org/express-rpx/-/express-rpx-0.1.7.tgz" + } + }, + "url": "http://registry.npmjs.org/express-rpx/" + }, + "express-session-mongo": { + "name": "express-session-mongo", + "description": "MongoDB Session Store for ExpressJS", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "davglass", + "email": "davglass@gmail.com" + } + ], + "author": { + "name": "Dav Glass", + "email": "davglass@gmail.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/davglass/express-session-mongo.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/express-session-mongo/0.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/express-session-mongo/-/express-session-mongo-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/express-session-mongo/" + }, + "express-session-mongo-russp": { + "name": "express-session-mongo-russp", + "description": "MongoDB Session Store for ExpressJS", + "dist-tags": { + "latest": "0.0.2-native-fork-dev2" + }, + "maintainers": [ + { + "name": "russp", + "email": "russjp1985@gmail.com" + } + ], + "time": { + "modified": "2011-09-06T17:33:01.007Z", + "created": "2011-09-06T15:23:02.286Z", + "0.0.2-native-fork": "2011-09-06T15:23:02.405Z", + "0.0.2-native-fork-dev1": "2011-09-06T17:24:41.633Z", + "0.0.2-native-fork-dev2": "2011-09-06T17:33:01.008Z" + }, + "author": { + "name": "Dav Glass", + "email": "davglass@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/davglass/express-session-mongo.git" + }, + "versions": { + "0.0.2-native-fork": "http://registry.npmjs.org/express-session-mongo-russp/0.0.2-native-fork", + "0.0.2-native-fork-dev1": "http://registry.npmjs.org/express-session-mongo-russp/0.0.2-native-fork-dev1", + "0.0.2-native-fork-dev2": "http://registry.npmjs.org/express-session-mongo-russp/0.0.2-native-fork-dev2" + }, + "dist": { + "0.0.2-native-fork": { + "shasum": "596c6337108cb075fd8218ae948568acd63bad4a", + "tarball": "http://registry.npmjs.org/express-session-mongo-russp/-/express-session-mongo-russp-0.0.2-native-fork.tgz" + }, + "0.0.2-native-fork-dev1": { + "shasum": "56f1bfa71f8fd6f66d120a9e689a2ace7c433f71", + "tarball": "http://registry.npmjs.org/express-session-mongo-russp/-/express-session-mongo-russp-0.0.2-native-fork-dev1.tgz" + }, + "0.0.2-native-fork-dev2": { + "shasum": "ec78ac62d6cb9f4d040a44160917c213b8c44596", + "tarball": "http://registry.npmjs.org/express-session-mongo-russp/-/express-session-mongo-russp-0.0.2-native-fork-dev2.tgz" + } + }, + "url": "http://registry.npmjs.org/express-session-mongo-russp/" + }, + "express-session-redis": { + "name": "express-session-redis", + "description": "A Redis Session Store for Express.js", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "atmos", + "email": "atmos@atmos.org" + } + ], + "author": { + "name": "Corey Donohoe", + "email": "atmos@atmos.org" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/express-session-redis/0.2.0" + }, + "dist": { + "0.2.0": { + "tarball": "http://packages:5984/express-session-redis/-/express-session-redis-0.2.0.tgz" + } + }, + "keywords": [ + "redis", + "session", + "express" + ], + "url": "http://registry.npmjs.org/express-session-redis/" + }, + "express-share": { + "name": "express-share", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "epeli", + "email": "esa-matti@suuronen.org" + } + ], + "time": { + "modified": "2011-06-19T23:27:29.508Z", + "created": "2011-04-05T08:46:49.983Z", + "0.1.0": "2011-04-05T08:46:50.415Z", + "0.1.1": "2011-06-19T23:27:29.508Z" + }, + "author": { + "name": "Esa-Matti Suuronen" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/express-share/0.1.0", + "0.1.1": "http://registry.npmjs.org/express-share/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "fd171feefa0ca4c8a224ca0844efe2cb851ab9af", + "tarball": "http://registry.npmjs.org/express-share/-/express-share-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "e1f9b9538f6c4fa210f6e9e5b66ceb258d4b5e70", + "tarball": "http://registry.npmjs.org/express-share/-/express-share-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/express-share/" + }, + "express-spdy": { + "name": "express-spdy", + "description": "SPDY-ize express.js sites.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "eee-c", + "email": "chris@eeecomputes.com" + } + ], + "time": { + "modified": "2011-11-06T19:04:12.948Z", + "created": "2011-06-22T01:56:07.036Z", + "0.0.1": "2011-06-22T01:58:19.741Z", + "0.0.2": "2011-06-24T13:49:41.876Z", + "0.0.3": "2011-07-29T01:37:36.497Z", + "0.0.4": "2011-07-29T03:24:47.061Z", + "0.0.5": "2011-08-18T03:21:30.999Z", + "0.1.0": "2011-11-06T19:04:12.948Z" + }, + "author": { + "name": "Chris Strom", + "email": "chris@eeecomputes.com", + "url": "http://eeecomputes.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/eee-c/express-spdy.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/express-spdy/0.0.1", + "0.0.2": "http://registry.npmjs.org/express-spdy/0.0.2", + "0.0.3": "http://registry.npmjs.org/express-spdy/0.0.3", + "0.0.4": "http://registry.npmjs.org/express-spdy/0.0.4", + "0.0.5": "http://registry.npmjs.org/express-spdy/0.0.5", + "0.1.0": "http://registry.npmjs.org/express-spdy/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "bba4b52f922284617fd2da93411bc7ab8270ad5e", + "tarball": "http://registry.npmjs.org/express-spdy/-/express-spdy-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "a92d27e2621b84fd1342bc48aecf177dc4e23aaa", + "tarball": "http://registry.npmjs.org/express-spdy/-/express-spdy-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "f48a03eea6ea6b089051cd3fec40f697871f0d41", + "tarball": "http://registry.npmjs.org/express-spdy/-/express-spdy-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "ac4b2d516d039c90773cc85a1f46cae6846b83ea", + "tarball": "http://registry.npmjs.org/express-spdy/-/express-spdy-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "3a56542d4f2f067b30c8e24171313cb6cef03b6e", + "tarball": "http://registry.npmjs.org/express-spdy/-/express-spdy-0.0.5.tgz" + }, + "0.1.0": { + "shasum": "2d3187022365a19101098c811ae843534f6b4eb9", + "tarball": "http://registry.npmjs.org/express-spdy/-/express-spdy-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/express-spdy/" + }, + "express-template-override": { + "name": "express-template-override", + "description": "Node module that allows you to override the templates in your main Express views directory", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "mcantelon", + "email": "mcantelon@gmail.com" + } + ], + "time": { + "modified": "2011-05-16T07:14:20.988Z", + "created": "2011-05-14T23:09:52.380Z", + "0.0.1": "2011-05-14T23:09:52.946Z", + "0.0.2": "2011-05-16T07:14:20.988Z" + }, + "author": { + "name": "Mike Cantelon", + "email": "mcantelon@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mcantelon/express-template-override.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/express-template-override/0.0.1", + "0.0.2": "http://registry.npmjs.org/express-template-override/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "4700460b3e778cb7d51c1699d2f795e9d8c24f13", + "tarball": "http://registry.npmjs.org/express-template-override/-/express-template-override-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "7ccca737ec3a637773766b49322d844303012cda", + "tarball": "http://registry.npmjs.org/express-template-override/-/express-template-override-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/express-template-override/" + }, + "express-trace": { + "name": "express-trace", + "description": "Express tracer and middleware profiler", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "time": { + "modified": "2011-05-20T19:51:20.207Z", + "created": "2011-05-20T02:05:25.611Z", + "0.0.1": "2011-05-20T02:05:26.172Z", + "0.0.2": "2011-05-20T19:51:20.207Z" + }, + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/express-trace/0.0.1", + "0.0.2": "http://registry.npmjs.org/express-trace/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "fe31e584397699743b056f82a8366d6f3fedcabb", + "tarball": "http://registry.npmjs.org/express-trace/-/express-trace-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "bb58f119456fcae9ad83e206d93b455046e92491", + "tarball": "http://registry.npmjs.org/express-trace/-/express-trace-0.0.2.tgz" + } + }, + "keywords": [ + "express", + "trace", + "profile" + ], + "url": "http://registry.npmjs.org/express-trace/" + }, + "express-twitter": { + "name": "express-twitter", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "mahemoff", + "email": "michael@mahemoff.com" + } + ], + "time": { + "modified": "2011-11-16T21:59:44.172Z", + "created": "2011-09-26T15:07:31.380Z", + "0.0.1": "2011-09-26T15:07:34.695Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/mahemoff/express-twitter.git" + }, + "users": { + "pid": true + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/express-twitter/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "41012fd60e4d95f2823d3e0baddf8cd01dd39186", + "tarball": "http://registry.npmjs.org/express-twitter/-/express-twitter-0.0.1.tgz" + } + }, + "keywords": [ + "twitter", + "connect", + "express", + "middleware", + "oauth" + ], + "url": "http://registry.npmjs.org/express-twitter/" + }, + "express-unstable": { + "name": "express-unstable", + "description": "Unstable, tracking fork of the real express.js framework. Only use if you really, *really* need node 0.5+", + "dist-tags": { + "latest": "2.4.3" + }, + "maintainers": [ + { + "name": "eee-c", + "email": "chris@eeecomputes.com" + } + ], + "time": { + "modified": "2011-07-29T03:20:26.062Z", + "created": "2011-07-29T03:20:23.883Z", + "2.4.3": "2011-07-29T03:20:26.062Z" + }, + "author": { + "name": "Chris Strom", + "email": "chris@eeecomputes.com", + "url": "http://eeecomputes.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/eee-c/express.git" + }, + "versions": { + "2.4.3": "http://registry.npmjs.org/express-unstable/2.4.3" + }, + "dist": { + "2.4.3": { + "shasum": "7b7926a388252b959f9d7d4aae800e0574903e9f", + "tarball": "http://registry.npmjs.org/express-unstable/-/express-unstable-2.4.3.tgz" + } + }, + "keywords": [ + "framework", + "sinatra", + "web", + "rest", + "restful" + ], + "url": "http://registry.npmjs.org/express-unstable/" + }, + "express-validate": { + "name": "express-validate", + "description": "Data validation, filtering and sanitization for express", + "dist-tags": { + "latest": "0.0.8" + }, + "maintainers": [ + { + "name": "corpix", + "email": "me@corpix.ru" + } + ], + "time": { + "modified": "2011-11-16T21:59:00.363Z", + "created": "2011-05-15T14:13:34.405Z", + "0.0.1": "2011-05-15T14:13:34.911Z", + "0.0.2": "2011-05-15T14:40:53.372Z", + "0.0.3": "2011-06-19T16:19:36.025Z", + "0.0.4": "2011-06-19T16:36:23.555Z", + "0.0.5": "2011-06-19T16:41:35.937Z", + "0.0.6": "2011-06-19T21:30:20.940Z", + "0.0.7": "2011-06-19T21:55:12.192Z", + "0.0.8": "2011-10-22T20:17:25.793Z" + }, + "author": { + "name": "Dmitry Petrov", + "email": "me@corpix.ru", + "url": "http://corpix.ru" + }, + "repository": { + "type": "git", + "url": "git@github.com:Dream-Web/express-validate.git" + }, + "users": { + "pid": true + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/express-validate/0.0.1", + "0.0.2": "http://registry.npmjs.org/express-validate/0.0.2", + "0.0.3": "http://registry.npmjs.org/express-validate/0.0.3", + "0.0.4": "http://registry.npmjs.org/express-validate/0.0.4", + "0.0.5": "http://registry.npmjs.org/express-validate/0.0.5", + "0.0.6": "http://registry.npmjs.org/express-validate/0.0.6", + "0.0.7": "http://registry.npmjs.org/express-validate/0.0.7", + "0.0.8": "http://registry.npmjs.org/express-validate/0.0.8" + }, + "dist": { + "0.0.1": { + "shasum": "7a019b4e7bab57869ceae44e6125d6b973dc7d71", + "tarball": "http://registry.npmjs.org/express-validate/-/express-validate-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "17f04306c75845cec4c31c25561b9537b0d5e427", + "tarball": "http://registry.npmjs.org/express-validate/-/express-validate-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "ba36dfa05de5f3b0007f785c53f7246738a88803", + "tarball": "http://registry.npmjs.org/express-validate/-/express-validate-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "9851b0746275bde6096834bb915f7ae67d46849d", + "tarball": "http://registry.npmjs.org/express-validate/-/express-validate-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "28a1dd8e859ce5388207397631d47faa7a24d2af", + "tarball": "http://registry.npmjs.org/express-validate/-/express-validate-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "e775f85767de8069b1f614831c8b200f1e45c55d", + "tarball": "http://registry.npmjs.org/express-validate/-/express-validate-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "4b9030cbb9fe3843c5ca76d870d63276d5b40177", + "tarball": "http://registry.npmjs.org/express-validate/-/express-validate-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "4bea52b8ee4bf51c262ba9b05df6df1486b3bcd3", + "tarball": "http://registry.npmjs.org/express-validate/-/express-validate-0.0.8.tgz" + } + }, + "keywords": [ + "express", + "validator", + "validation", + "validate", + "assert", + "params", + "sanitization", + "xss", + "entities", + "sanitize", + "sanitisation", + "input" + ], + "url": "http://registry.npmjs.org/express-validate/" + }, + "express-validator": { + "name": "express-validator", + "description": "Express middleware for the validator module.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "ctavan", + "email": "dev@tavan.de" + } + ], + "time": { + "modified": "2011-10-20T17:14:19.400Z", + "created": "2011-10-05T09:44:13.681Z", + "0.1.0": "2011-10-05T09:44:15.193Z", + "0.1.1": "2011-10-20T17:14:19.400Z" + }, + "author": { + "name": "Christoph Tavan", + "email": "dev@tavan.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/ctavan/express-validator.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/express-validator/0.1.0", + "0.1.1": "http://registry.npmjs.org/express-validator/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "8851a937bc9be0fd9323ba5f6500f3895e162d63", + "tarball": "http://registry.npmjs.org/express-validator/-/express-validator-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "a39b996057fa83e2b6ef7df9cd9d95abf646078e", + "tarball": "http://registry.npmjs.org/express-validator/-/express-validator-0.1.1.tgz" + } + }, + "keywords": [ + "express", + "validator", + "validation", + "validate", + "sanitize", + "sanitization", + "xss" + ], + "url": "http://registry.npmjs.org/express-validator/" + }, + "express-view-helpers": { + "name": "express-view-helpers", + "description": "Some view helpers for expressjs.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "sdepold", + "email": "sascha@depold.com" + } + ], + "time": { + "modified": "2011-04-25T17:41:06.212Z", + "created": "2011-03-20T18:16:09.829Z", + "0.0.0": "2011-03-20T18:16:10.415Z", + "0.0.1": "2011-03-22T21:05:01.683Z", + "0.0.2": "2011-04-25T17:41:06.212Z" + }, + "author": { + "name": "Sascha Depold", + "email": "sascha@depold.com", + "url": "http://depold.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/sdepold/express-view-helpers.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/express-view-helpers/0.0.0", + "0.0.1": "http://registry.npmjs.org/express-view-helpers/0.0.1", + "0.0.2": "http://registry.npmjs.org/express-view-helpers/0.0.2" + }, + "dist": { + "0.0.0": { + "shasum": "b69dcd44bdd81a384d67068bd6699fe7145f1089", + "tarball": "http://registry.npmjs.org/express-view-helpers/-/express-view-helpers-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "f7b90c87b23147a062809441e0ff4ca05788876d", + "tarball": "http://registry.npmjs.org/express-view-helpers/-/express-view-helpers-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "65804d1c1e9c3ad6f5739252e0575dbc6c8206b7", + "tarball": "http://registry.npmjs.org/express-view-helpers/-/express-view-helpers-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/express-view-helpers/" + }, + "express-with-ease": { + "name": "express-with-ease", + "description": "Extensive wrapper for express.HTTPServer written in CoffeeScript", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "jimpanic", + "email": "a.panek@brainsware.org" + } + ], + "time": { + "modified": "2011-09-30T17:40:41.320Z", + "created": "2011-09-20T05:50:27.975Z", + "0.0.1": "2011-09-20T05:50:30.179Z", + "0.0.2": "2011-09-23T20:25:53.164Z", + "0.0.3": "2011-09-30T17:40:41.320Z" + }, + "author": { + "name": "Alexander Pánek", + "email": "a.panek@brainsware.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/JimPanic/express-with-ease.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/express-with-ease/0.0.1", + "0.0.2": "http://registry.npmjs.org/express-with-ease/0.0.2", + "0.0.3": "http://registry.npmjs.org/express-with-ease/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "eff6a81507b1377469e20c39c25ea41b41433c73", + "tarball": "http://registry.npmjs.org/express-with-ease/-/express-with-ease-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "5ac0b7ad155d5d36312e388737e0effe4aaed09c", + "tarball": "http://registry.npmjs.org/express-with-ease/-/express-with-ease-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "1442fbf5d34cc61f983217ac68b137d5d18686b7", + "tarball": "http://registry.npmjs.org/express-with-ease/-/express-with-ease-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/express-with-ease/" + }, + "express-wormhole": { + "name": "express-wormhole", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "demetriusj", + "email": "contact@demetriusj.com" + } + ], + "time": { + "modified": "2011-10-26T04:30:22.907Z", + "created": "2011-05-22T00:17:00.873Z", + "0.0.1": "2011-05-22T00:17:01.281Z", + "0.0.2": "2011-10-26T04:30:22.907Z" + }, + "author": { + "name": "Demetrius Johnson", + "email": "contact@demetriusj.com", + "url": "http://demetriusj.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/demetriusj/express-wormhole.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/express-wormhole/0.0.1", + "0.0.2": "http://registry.npmjs.org/express-wormhole/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "c6703eabe2ea33cd0eb1289692078503b9e69fce", + "tarball": "http://registry.npmjs.org/express-wormhole/-/express-wormhole-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "6e8938ad1842821feed4d3e0cb25722a057d6a35", + "tarball": "http://registry.npmjs.org/express-wormhole/-/express-wormhole-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/express-wormhole/" + }, + "Expressive": { + "name": "Expressive", + "description": "Make Express more Expressive", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "garrensmith", + "email": "garren.smith@gmail.com" + } + ], + "time": { + "modified": "2011-01-29T13:22:03.243Z", + "created": "2011-01-29T13:22:02.240Z", + "0.1.0": "2011-01-29T13:22:03.243Z" + }, + "author": { + "name": "Garren Smith", + "email": "garren.smith@gmail.com", + "url": "www.garrensmith.com" + }, + "repository": "git://github.com/garrensmith/Expressive.git", + "versions": { + "0.1.0": "http://registry.npmjs.org/Expressive/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "a5ec214e2d1c8f3cbb8c52ba6ea62ae30be8eb08", + "tarball": "http://registry.npmjs.org/Expressive/-/Expressive-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/Expressive/" + }, + "expressling": { + "name": "expressling", + "description": "Expressling ", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "niftylettuce", + "email": "nicholasbaugh@gmail.com" + } + ], + "time": { + "modified": "2011-12-06T15:51:30.824Z", + "created": "2011-11-19T00:11:26.629Z", + "0.0.1": "2011-11-19T00:31:31.383Z", + "0.0.2": "2011-12-02T04:34:29.663Z", + "0.0.3": "2011-12-02T05:37:57.281Z", + "0.0.4": "2011-12-06T15:51:30.824Z" + }, + "author": { + "name": "Nick Baugh", + "email": "niftylettuce@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/niftylettuce/expressling.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/expressling/0.0.1", + "0.0.2": "http://registry.npmjs.org/expressling/0.0.2", + "0.0.3": "http://registry.npmjs.org/expressling/0.0.3", + "0.0.4": "http://registry.npmjs.org/expressling/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "7c5284cd91bb2649f5281cf19c244b46dab61808", + "tarball": "http://registry.npmjs.org/expressling/-/expressling-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "64053d344a89ae0f12d7b196cdd63637477b7e96", + "tarball": "http://registry.npmjs.org/expressling/-/expressling-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "8e1cff36aaf351b157fb3f2c9fdc7bc6d5b4557b", + "tarball": "http://registry.npmjs.org/expressling/-/expressling-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "7b4bc9f054ca1766a497a3b50d8d55ec0adccc59", + "tarball": "http://registry.npmjs.org/expressling/-/expressling-0.0.4.tgz" + } + }, + "keywords": [ + "expressling", + "express", + "html5", + "boilerplate", + "mongo", + "mongodb", + "mongoose", + "orm", + "jade", + "stylus", + "nib" + ], + "url": "http://registry.npmjs.org/expressling/" + }, + "ExpressMVC": { + "name": "ExpressMVC", + "description": "An MVC framework that should be familiar tenough to PHP developers to allow them to get up and running very quickly.\"", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "scull7", + "email": "nathan.sculli@kapinko.com" + } + ], + "time": { + "modified": "2011-11-02T19:45:24.319Z", + "created": "2011-10-28T17:29:19.472Z", + "0.0.1": "2011-10-28T17:29:20.710Z", + "0.0.2": "2011-11-02T19:45:24.319Z" + }, + "author": { + "name": "Nathan A Sculli", + "email": "nathan.sculli@kapinko.com", + "url": "nathansculli.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Kapinko/ExpressMVC.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ExpressMVC/0.0.1", + "0.0.2": "http://registry.npmjs.org/ExpressMVC/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "e490bc33e7d95629cbef015880002371782d5d2d", + "tarball": "http://registry.npmjs.org/ExpressMVC/-/ExpressMVC-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "668e7aa4b6889250abe9516b1a9020533263a63e", + "tarball": "http://registry.npmjs.org/ExpressMVC/-/ExpressMVC-0.0.2.tgz" + } + }, + "keywords": [ + "mvc", + "framework" + ], + "url": "http://registry.npmjs.org/ExpressMVC/" + }, + "expresso": { + "name": "expresso", + "description": "TDD framework, light-weight, fast, CI-friendly", + "dist-tags": { + "latest": "0.9.2" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + }, + { + "name": "kkaefer", + "email": "kkaefer@gmail.com" + } + ], + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "time": { + "modified": "2011-11-24T21:53:56.496Z", + "created": "2010-12-28T23:36:12.405Z", + "0.1.0": "2010-12-28T23:36:12.405Z", + "0.2.0": "2010-12-28T23:36:12.405Z", + "0.2.1": "2010-12-28T23:36:12.405Z", + "0.3.0": "2010-12-28T23:36:12.405Z", + "0.3.1": "2010-12-28T23:36:12.405Z", + "0.4.0": "2010-12-28T23:36:12.405Z", + "0.5.0": "2010-12-28T23:36:12.405Z", + "0.6.0": "2010-12-28T23:36:12.405Z", + "0.6.1": "2010-12-28T23:36:12.405Z", + "0.6.2": "2010-12-28T23:36:12.405Z", + "0.6.3": "2010-12-28T23:36:12.405Z", + "0.6.4": "2010-12-28T23:36:12.405Z", + "0.7.0": "2010-12-28T23:36:12.405Z", + "0.7.1": "2010-12-28T23:36:12.405Z", + "0.7.2": "2010-12-29T18:16:45.602Z", + "0.7.3": "2011-03-03T00:20:27.216Z", + "0.7.4": "2011-03-27T15:29:32.965Z", + "0.7.5": "2011-04-01T02:27:20.862Z", + "0.7.6": "2011-04-20T15:42:24.995Z", + "0.7.7": "2011-05-24T16:50:30.661Z", + "0.7.8": "2011-06-22T15:46:23.549Z", + "0.7.9": "2011-06-24T17:03:22.739Z", + "0.8.0": "2011-07-05T21:07:13.302Z", + "0.8.1": "2011-07-07T16:31:40.339Z", + "0.9.0": "2011-09-22T15:56:08.588Z", + "0.9.1": "2011-10-12T15:10:41.371Z", + "0.9.2": "2011-10-12T15:13:15.700Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/visionmedia/expresso.git" + }, + "users": { + "vesln": true, + "mvolkmann": true, + "pid": true, + "clux": true + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/expresso/0.1.0", + "0.2.0": "http://registry.npmjs.org/expresso/0.2.0", + "0.2.1": "http://registry.npmjs.org/expresso/0.2.1", + "0.3.0": "http://registry.npmjs.org/expresso/0.3.0", + "0.3.1": "http://registry.npmjs.org/expresso/0.3.1", + "0.4.0": "http://registry.npmjs.org/expresso/0.4.0", + "0.5.0": "http://registry.npmjs.org/expresso/0.5.0", + "0.6.0": "http://registry.npmjs.org/expresso/0.6.0", + "0.6.1": "http://registry.npmjs.org/expresso/0.6.1", + "0.6.2": "http://registry.npmjs.org/expresso/0.6.2", + "0.6.3": "http://registry.npmjs.org/expresso/0.6.3", + "0.6.4": "http://registry.npmjs.org/expresso/0.6.4", + "0.7.0": "http://registry.npmjs.org/expresso/0.7.0", + "0.7.1": "http://registry.npmjs.org/expresso/0.7.1", + "0.7.2": "http://registry.npmjs.org/expresso/0.7.2", + "0.7.3": "http://registry.npmjs.org/expresso/0.7.3", + "0.7.4": "http://registry.npmjs.org/expresso/0.7.4", + "0.7.5": "http://registry.npmjs.org/expresso/0.7.5", + "0.7.6": "http://registry.npmjs.org/expresso/0.7.6", + "0.7.7": "http://registry.npmjs.org/expresso/0.7.7", + "0.7.9": "http://registry.npmjs.org/expresso/0.7.9", + "0.8.0": "http://registry.npmjs.org/expresso/0.8.0", + "0.8.1": "http://registry.npmjs.org/expresso/0.8.1", + "0.9.0": "http://registry.npmjs.org/expresso/0.9.0", + "0.9.1": "http://registry.npmjs.org/expresso/0.9.1", + "0.9.2": "http://registry.npmjs.org/expresso/0.9.2" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/expresso/-/expresso-0.1.0.tgz" + }, + "0.2.0": { + "tarball": "http://registry.npmjs.org/expresso/-/expresso-0.2.0.tgz" + }, + "0.2.1": { + "tarball": "http://registry.npmjs.org/expresso/-/expresso-0.2.1.tgz" + }, + "0.3.0": { + "tarball": "http://registry.npmjs.org/expresso/-/expresso-0.3.0.tgz" + }, + "0.3.1": { + "tarball": "http://registry.npmjs.org/expresso/-/expresso-0.3.1.tgz" + }, + "0.4.0": { + "tarball": "http://registry.npmjs.org/expresso/-/expresso-0.4.0.tgz" + }, + "0.5.0": { + "tarball": "http://registry.npmjs.org/expresso/-/expresso-0.5.0.tgz" + }, + "0.6.0": { + "tarball": "http://registry.npmjs.org/expresso/-/expresso-0.6.0.tgz" + }, + "0.6.1": { + "tarball": "http://registry.npmjs.org/expresso/-/expresso-0.6.1.tgz" + }, + "0.6.2": { + "tarball": "http://registry.npmjs.org/expresso/-/expresso-0.6.2.tgz" + }, + "0.6.3": { + "tarball": "http://registry.npmjs.org/expresso/-/expresso-0.6.3.tgz" + }, + "0.6.4": { + "tarball": "http://registry.npmjs.org/expresso/-/expresso-0.6.4.tgz" + }, + "0.7.0": { + "tarball": "http://registry.npmjs.org/expresso/-/expresso-0.7.0.tgz" + }, + "0.7.1": { + "shasum": "1b525256f7d228cc39268e88199467791c6586ba", + "tarball": "http://registry.npmjs.org/expresso/-/expresso-0.7.1.tgz" + }, + "0.7.2": { + "shasum": "5b2dc7c8d8e8e2df265889120fec52486099b377", + "tarball": "http://registry.npmjs.org/expresso/-/expresso-0.7.2.tgz" + }, + "0.7.3": { + "shasum": "22e24f2a340dd3bd0e41d29b499460303e6cf964", + "tarball": "http://registry.npmjs.org/expresso/-/expresso-0.7.3.tgz" + }, + "0.7.4": { + "shasum": "c8d32cb01e500096c843c47c5645cb0dd06f8da9", + "tarball": "http://registry.npmjs.org/expresso/-/expresso-0.7.4.tgz" + }, + "0.7.5": { + "shasum": "08bb9133a4291fe606342de76e577d2c203992cd", + "tarball": "http://registry.npmjs.org/expresso/-/expresso-0.7.5.tgz" + }, + "0.7.6": { + "shasum": "f5e483af4cedb98a428a021d9f73550b47185acc", + "tarball": "http://registry.npmjs.org/expresso/-/expresso-0.7.6.tgz" + }, + "0.7.7": { + "shasum": "d005300f81021c8812e1e06339d91099feedf1eb", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.16-darwin-10.7.0": { + "shasum": "71f520829db0de2802b9c039123eb0cdea6f16a6", + "tarball": "http://registry.npmjs.org/expresso/-/expresso-0.7.7-0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.16-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/expresso/-/expresso-0.7.7.tgz" + }, + "0.7.9": { + "shasum": "2e20a5d99b603a7eadb4f2e87e0cec6fa69e5045", + "tarball": "http://registry.npmjs.org/expresso/-/expresso-0.7.9.tgz" + }, + "0.8.0": { + "shasum": "6a204a84fd6d4528511892f83113d1ce8841a558", + "tarball": "http://registry.npmjs.org/expresso/-/expresso-0.8.0.tgz" + }, + "0.8.1": { + "shasum": "4a6abcfc01d07e047058511c950008793234ec9c", + "tarball": "http://registry.npmjs.org/expresso/-/expresso-0.8.1.tgz" + }, + "0.9.0": { + "shasum": "593845c420633f9c592cea8541b66e57a7aff3ae", + "tarball": "http://registry.npmjs.org/expresso/-/expresso-0.9.0.tgz" + }, + "0.9.1": { + "shasum": "2061d83e2fa0f769b37426781f58d37ad6cc4df6", + "tarball": "http://registry.npmjs.org/expresso/-/expresso-0.9.1.tgz" + }, + "0.9.2": { + "shasum": "177b260908acaebe45ee16ddf74495a3f55862e8", + "tarball": "http://registry.npmjs.org/expresso/-/expresso-0.9.2.tgz" + } + }, + "url": "http://registry.npmjs.org/expresso/" + }, + "expressobdd": { + "name": "expressobdd", + "description": "Add basic multilevel describe/it bdd constructs to expresso", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "eugeneware", + "email": "eugene@noblesamurai.com" + } + ], + "time": { + "modified": "2011-02-11T14:44:50.522Z", + "created": "2011-02-11T14:41:35.142Z", + "1.0.0": "2011-02-11T14:41:36.360Z", + "1.0.1": "2011-02-11T14:44:50.522Z" + }, + "author": { + "name": "Eugene Ware", + "email": "eugene@noblesamurai.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/nharbour/expressobdd.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/expressobdd/1.0.0", + "1.0.1": "http://registry.npmjs.org/expressobdd/1.0.1" + }, + "dist": { + "1.0.0": { + "tarball": "http://registry.npmjs.org/expressobdd/-/expressobdd-v1.0.0.tgz" + }, + "1.0.1": { + "tarball": "http://registry.npmjs.org/expressobdd/-/expressobdd-v1.0.1.tgz" + } + }, + "keywords": [ + "expresso", + "expressobdd", + "bdd", + "test", + "testing", + "tests" + ], + "url": "http://registry.npmjs.org/expressobdd/" + }, + "ext": { + "name": "ext", + "description": "High quality core extensions", + "dist-tags": { + "latest": "0.6.1" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "versions": { + "0.6.1": "http://registry.npmjs.org/ext/0.6.1" + }, + "dist": { + "0.6.1": { + "tarball": "http://packages:5984/ext/-/ext-0.6.1.tgz" + } + }, + "url": "http://registry.npmjs.org/ext/" + }, + "extend": { + "name": "extend", + "description": "Port of jQuery.extend for Node.js", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "justmoon", + "email": "justmoon@members.fsf.org" + } + ], + "time": { + "modified": "2011-05-14T07:38:59.146Z", + "created": "2011-05-14T07:38:58.395Z", + "1.0.0": "2011-05-14T07:38:59.146Z" + }, + "author": { + "name": "Stefan Thomas", + "email": "justmoon@members.fsf.org", + "url": "http://www.justmoon.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/justmoon/node-extend.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/extend/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "126c072b00c6053271a0bf4cf1777c33be023f40", + "tarball": "http://registry.npmjs.org/extend/-/extend-1.0.0.tgz" + } + }, + "keywords": [ + "extend", + "clone", + "merge" + ], + "url": "http://registry.npmjs.org/extend/" + }, + "extendables": { + "name": "extendables", + "description": "Simple and elegant inheritance in JS.", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "gozala", + "email": "rfobic@gmail.com" + } + ], + "time": { + "modified": "2011-06-09T22:32:23.120Z", + "created": "2011-04-11T16:06:11.233Z", + "0.0.1": "2011-04-11T16:06:11.870Z", + "0.1.0": "2011-04-19T14:44:18.167Z", + "0.1.1": "2011-04-21T15:11:10.759Z", + "0.1.2": "2011-04-22T09:06:36.051Z", + "0.2.0": "2011-06-09T22:32:23.120Z" + }, + "author": { + "name": "Irakli Gozalishvili", + "email": "rfobic@gmail.com", + "url": "http://jeditoolkit.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Gozala/extendables.git", + "web": "https://github.com/Gozala/extendables" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/extendables/0.0.1", + "0.1.0": "http://registry.npmjs.org/extendables/0.1.0", + "0.1.1": "http://registry.npmjs.org/extendables/0.1.1", + "0.1.2": "http://registry.npmjs.org/extendables/0.1.2", + "0.2.0": "http://registry.npmjs.org/extendables/0.2.0" + }, + "dist": { + "0.0.1": { + "shasum": "f5725df45829b79df297878a6d5fcadb1030db20", + "tarball": "http://registry.npmjs.org/extendables/-/extendables-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "8df390be5b84d170b9edb5b5bc9855d16d5c7b2c", + "tarball": "http://registry.npmjs.org/extendables/-/extendables-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "0615ebd08a697265b54386a15c436009dd8b33a0", + "tarball": "http://registry.npmjs.org/extendables/-/extendables-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "0e9c272645fa0e120b79a87850ce1733ad44de44", + "tarball": "http://registry.npmjs.org/extendables/-/extendables-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "f5a3890dfbe3e2b1d70fcb11f6c1b799414141bb", + "tarball": "http://registry.npmjs.org/extendables/-/extendables-0.2.0.tgz" + } + }, + "keywords": [ + "oop", + "inheritance", + "class", + "object-oriented", + "klass" + ], + "url": "http://registry.npmjs.org/extendables/" + }, + "extenze": { + "name": "extenze", + "description": "mixin microlib", + "dist-tags": { + "latest": "0.0.2" + }, + "readme": "**extenZe** is a very minimal mixin lib supporting \"extending\" and \"including\" shot out to [http://arcturo.github.com/library/coffeescript/03_classes.html]http://arcturo.github.com/library/coffeescript/03_classes.html\n\n", + "maintainers": [ + { + "name": "fractal", + "email": "contact@wearefractal.com" + } + ], + "time": { + "modified": "2011-12-08T09:25:19.390Z", + "created": "2011-12-06T05:15:48.147Z", + "0.0.1": "2011-12-06T05:15:49.904Z", + "0.0.2": "2011-12-08T09:25:19.390Z" + }, + "author": { + "name": "Fractal", + "email": "contact@wearefractal.com", + "url": "http://wearefractal.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/wearefractal/extenze.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/extenze/0.0.1", + "0.0.2": "http://registry.npmjs.org/extenze/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "1b0522f6955621a82e8abf1a2a0a5b8d60f0dc9d", + "tarball": "http://registry.npmjs.org/extenze/-/extenze-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "cc4ded9b0af27ef628a23bc7ad27eaff7a342a47", + "tarball": "http://registry.npmjs.org/extenze/-/extenze-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/extenze/" + }, + "extjs": { + "name": "extjs", + "description": "Run ExtJS4 data models on Node.js", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "egorfine", + "email": "me@egorfine.com" + } + ], + "time": { + "modified": "2011-10-29T12:01:49.571Z", + "created": "2011-10-29T12:00:52.306Z", + "0.1.0": "2011-10-29T12:01:49.571Z" + }, + "author": { + "name": "Egor Egorov", + "email": "me@egorfine.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/egorfine/node-extjs.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/extjs/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "4e27e9efe93060fcbbbd881153b8499d08d50cd0", + "tarball": "http://registry.npmjs.org/extjs/-/extjs-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/extjs/" + }, + "extjs-node": { + "name": "extjs-node", + "description": "ExtJS framework", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "agebrock", + "email": "christoph.hagenbrock@googlemail.com" + } + ], + "time": { + "modified": "2011-05-12T17:53:59.093Z", + "created": "2011-05-12T17:53:58.620Z", + "0.0.1": "2011-05-12T17:53:59.093Z" + }, + "author": { + "name": "Agebrock", + "email": "christoph.hagenbrock@googlemail.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:agebrock/extjs-node.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/extjs-node/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "f40fa23d5bf0fb0c68e698f57749e3c92c343a36", + "tarball": "http://registry.npmjs.org/extjs-node/-/extjs-node-0.0.1.tgz" + } + }, + "keywords": [ + "framework", + "web", + "extjs" + ], + "url": "http://registry.npmjs.org/extjs-node/" + }, + "extractcontent": { + "name": "extractcontent", + "description": "Utility for extracting title and main contents from an HTML text.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "yssk22", + "email": "yssk22@gmail.com" + } + ], + "author": { + "name": "Yohei Sasaki", + "email": "yssk22@gmail.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/yssk22/extractcontent.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/extractcontent/0.1.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/extractcontent/-/extractcontent-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/extractcontent/" + }, + "extractor": { + "name": "extractor", + "description": "A small utility library for retrieving and scraping web content. It targets scraping content with a unique attribute id, class or tag.", + "dist-tags": { + "latest": "0.0.7b" + }, + "maintainers": [ + { + "name": "rsdoiel", + "email": "rsdoiel@gmail.com" + } + ], + "time": { + "modified": "2011-12-14T03:15:11.876Z", + "created": "2011-08-21T19:05:22.642Z", + "0.0.3": "2011-08-21T19:05:24.268Z", + "0.0.4": "2011-08-25T05:24:38.959Z", + "0.0.5": "2011-11-02T17:54:22.594Z", + "0.0.6": "2011-11-23T00:17:30.320Z", + "0.0.6b": "2011-12-14T00:26:18.315Z", + "0.0.7": "2011-12-14T02:14:03.317Z", + "0.0.7b": "2011-12-14T03:15:11.876Z" + }, + "author": { + "name": "R. S. Doiel", + "email": "rsdoiel@gmail.com", + "url": "https://github.com/rsdoiel" + }, + "repository": { + "type": "git", + "url": "git://github.com/rsdoiel/extractor-js.git" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/extractor/0.0.3", + "0.0.4": "http://registry.npmjs.org/extractor/0.0.4", + "0.0.5": "http://registry.npmjs.org/extractor/0.0.5", + "0.0.6": "http://registry.npmjs.org/extractor/0.0.6", + "0.0.6b": "http://registry.npmjs.org/extractor/0.0.6b", + "0.0.7": "http://registry.npmjs.org/extractor/0.0.7", + "0.0.7b": "http://registry.npmjs.org/extractor/0.0.7b" + }, + "dist": { + "0.0.3": { + "shasum": "2285594b5542558262e0b473f655fd8d1d5c4359", + "tarball": "http://registry.npmjs.org/extractor/-/extractor-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "a477d650da99a3698bcdfa7323875d09f5fd8492", + "tarball": "http://registry.npmjs.org/extractor/-/extractor-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "23a4765f861a1998d27d46d9fe25d92bee5066d4", + "tarball": "http://registry.npmjs.org/extractor/-/extractor-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "f768d84fa88184cadf63263454692a8dbdce930e", + "tarball": "http://registry.npmjs.org/extractor/-/extractor-0.0.6.tgz" + }, + "0.0.6b": { + "shasum": "4155c8659e7f277233312bbc4c7b266243d7e3b7", + "tarball": "http://registry.npmjs.org/extractor/-/extractor-0.0.6b.tgz" + }, + "0.0.7": { + "shasum": "52957e9e50d8f8d45d744751cf5e6742f81b96c0", + "tarball": "http://registry.npmjs.org/extractor/-/extractor-0.0.7.tgz" + }, + "0.0.7b": { + "shasum": "a9dc06ec165bd794718661d23380453a1ab27da4", + "tarball": "http://registry.npmjs.org/extractor/-/extractor-0.0.7b.tgz" + } + }, + "url": "http://registry.npmjs.org/extractor/" + }, + "extx-layout": { + "name": "extx-layout", + "description": "Collection of layouts for ExtJS", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "samuraijack", + "email": "nickolay8@gmail.com" + } + ], + "time": { + "modified": "2011-01-20T10:18:15.542Z", + "created": "2011-01-20T10:18:14.497Z", + "0.0.1": "2011-01-20T10:18:15.542Z" + }, + "author": { + "name": "Nickolay Platonov", + "email": "nplatonov@cpan.org" + }, + "repository": { + "web": "http://github.com/SamuraiJack/ExtX.Layout/tree", + "url": "git://github.com/SamuraiJack/ExtX.Layout.git", + "type": "git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/extx-layout/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "866202c7e64bb7c9bb5cd98bcbd4f538da5a67e2", + "tarball": "http://registry.npmjs.org/extx-layout/-/extx-layout-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/extx-layout/" + }, + "extx-reference-slot": { + "name": "extx-reference-slot", + "description": "ExtJS extension for accessing components hierarchy with mnemonic names", + "dist-tags": { + "latest": "0.2.4" + }, + "maintainers": [ + { + "name": "samuraijack", + "email": "nickolay8@gmail.com" + } + ], + "author": { + "name": "Nickolay Platonov", + "email": "nplatonov@cpan.org" + }, + "repository": { + "web": "http://github.com/SamuraiJack/ExtX-Reference-Slot/tree", + "url": "git://github.com/SamuraiJack/ExtX-Reference-Slot.git", + "type": "git" + }, + "time": { + "modified": "2011-07-16T09:01:09.109Z", + "created": "2011-01-12T15:44:33.004Z", + "0.2.0": "2011-01-12T15:44:33.004Z", + "0.2.1": "2011-01-12T15:44:33.004Z", + "0.2.2": "2011-01-12T15:44:33.004Z", + "0.2.3": "2011-01-12T15:44:33.004Z", + "0.2.4": "2011-07-16T09:01:09.109Z" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/extx-reference-slot/0.2.0", + "0.2.1": "http://registry.npmjs.org/extx-reference-slot/0.2.1", + "0.2.2": "http://registry.npmjs.org/extx-reference-slot/0.2.2", + "0.2.3": "http://registry.npmjs.org/extx-reference-slot/0.2.3", + "0.2.4": "http://registry.npmjs.org/extx-reference-slot/0.2.4" + }, + "dist": { + "0.2.0": { + "tarball": "http://packages:5984/extx-reference-slot/-/extx-reference-slot-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "2d7563479c2c69c9e2fe0f4928b67a2253564558", + "tarball": "http://registry.npmjs.org/extx-reference-slot/-/extx-reference-slot-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "d896898daf2dd64fd90e663afae5fc56910c8f93", + "tarball": "http://registry.npmjs.org/extx-reference-slot/-/extx-reference-slot-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "18ab12943ed73cfca4d2feb73c498ff42da83a16", + "tarball": "http://registry.npmjs.org/extx-reference-slot/-/extx-reference-slot-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "545da2e1152e86c9566883a03bbfdeb35d2be1e8", + "tarball": "http://registry.npmjs.org/extx-reference-slot/-/extx-reference-slot-0.2.4.tgz" + } + }, + "url": "http://registry.npmjs.org/extx-reference-slot/" + }, + "extx-shotenjin": { + "name": "extx-shotenjin", + "description": "Shotenjin templates for ExtJS components", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "samuraijack", + "email": "nickolay8@gmail.com" + } + ], + "time": { + "modified": "2011-01-20T11:38:10.537Z", + "created": "2011-01-17T14:32:09.080Z", + "0.0.1": "2011-01-17T14:32:09.834Z", + "0.0.2": "2011-01-20T11:38:10.537Z" + }, + "author": { + "name": "Nickolay Platonov", + "email": "nplatonov@cpan.org" + }, + "repository": { + "web": "http://github.com/SamuraiJack/ExtX-Shotenjin/tree", + "url": "git://github.com/SamuraiJack/ExtX-Shotenjin.git", + "type": "git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/extx-shotenjin/0.0.1", + "0.0.2": "http://registry.npmjs.org/extx-shotenjin/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "1bfef6bb31b85d8e20de0de57dbf3265448a748c", + "tarball": "http://registry.npmjs.org/extx-shotenjin/-/extx-shotenjin-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "8b2775e31aff776de9db131b9699522e16848c55", + "tarball": "http://registry.npmjs.org/extx-shotenjin/-/extx-shotenjin-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/extx-shotenjin/" + }, + "eyes": { + "name": "eyes", + "description": "a customizable value inspector", + "dist-tags": { + "latest": "0.1.7" + }, + "maintainers": [ + { + "name": "cloudhead", + "email": "self@cloudhead.net" + }, + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + } + ], + "author": { + "name": "Alexis Sellier", + "email": "self@cloudhead.net" + }, + "time": { + "modified": "2011-12-09T00:10:32.764Z", + "created": "2011-12-09T00:10:20.093Z", + "0.1.1": "2011-12-09T00:10:20.093Z", + "0.1.2": "2011-12-09T00:10:20.093Z", + "0.1.3": "2011-12-09T00:10:20.093Z", + "0.1.4": "2011-12-09T00:10:20.093Z", + "0.1.5": "2011-12-09T00:10:20.093Z", + "0.1.6": "2011-12-09T00:10:20.093Z", + "0.1.7": "2011-12-09T00:10:32.764Z" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/eyes/0.1.1", + "0.1.2": "http://registry.npmjs.org/eyes/0.1.2", + "0.1.3": "http://registry.npmjs.org/eyes/0.1.3", + "0.1.4": "http://registry.npmjs.org/eyes/0.1.4", + "0.1.5": "http://registry.npmjs.org/eyes/0.1.5", + "0.1.6": "http://registry.npmjs.org/eyes/0.1.6", + "0.1.7": "http://registry.npmjs.org/eyes/0.1.7" + }, + "dist": { + "0.1.1": { + "tarball": "http://packages:5984/eyes/-/eyes-0.1.1.tgz" + }, + "0.1.2": { + "tarball": "http://packages:5984/eyes/-/eyes-0.1.2.tgz" + }, + "0.1.3": { + "tarball": "http://packages:5984/eyes/-/eyes-0.1.3.tgz" + }, + "0.1.4": { + "tarball": "http://packages:5984/eyes/-/eyes-0.1.4.tgz" + }, + "0.1.5": { + "tarball": "http://packages:5984/eyes/-/eyes-0.1.5.tgz" + }, + "0.1.6": { + "tarball": "http://packages:5984/eyes/-/eyes-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "e9605b91d254e7375a68ee93e2a5937956b058fb", + "tarball": "http://registry.npmjs.org/eyes/-/eyes-0.1.7.tgz" + } + }, + "keywords": [ + "inspector", + "debug", + "inspect", + "print" + ], + "url": "http://registry.npmjs.org/eyes/" + }, + "ezcrypto": { + "name": "ezcrypto", + "description": "Provide standard and secure cryptographic algorithms for NodeJS. Support MD5, SHA-1, SHA-256, RC4, Rabbit, AES, DES, PBKDF2, HMAC, OFB, CFB, CTR, CBC, Base64", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "elmerzhang", + "email": "freeboy6716@gmail.com" + } + ], + "time": { + "modified": "2011-09-30T02:56:04.664Z", + "created": "2011-09-28T02:13:30.096Z", + "0.0.1": "2011-09-28T02:13:33.581Z", + "0.0.2": "2011-09-28T04:25:42.636Z", + "0.0.3": "2011-09-30T02:56:04.664Z" + }, + "author": { + "name": "Elmer Zhang", + "email": "freeboy6716@gmail.com", + "url": "http://www.elmerzhang.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/ElmerZhang/ezcrypto.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ezcrypto/0.0.1", + "0.0.2": "http://registry.npmjs.org/ezcrypto/0.0.2", + "0.0.3": "http://registry.npmjs.org/ezcrypto/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "3a749db760c028a5244712bed65d5586d58d372d", + "tarball": "http://registry.npmjs.org/ezcrypto/-/ezcrypto-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "0441ad177cb5915baa901a0bff57e90d0e0843be", + "tarball": "http://registry.npmjs.org/ezcrypto/-/ezcrypto-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "fd29cfb3a6cd8738f60a77f12c26aa4ff3c1f85e", + "tarball": "http://registry.npmjs.org/ezcrypto/-/ezcrypto-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/ezcrypto/" + }, + "f": { + "name": "f", + "description": "A small functional library", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "neat", + "email": "roly426@gmail.com" + } + ], + "time": { + "modified": "2011-10-05T20:46:38.839Z", + "created": "2011-10-04T06:12:43.109Z", + "0.0.1": "2011-10-04T06:12:46.865Z", + "0.0.2": "2011-10-05T20:46:38.839Z" + }, + "author": { + "name": "Roly Fentanes", + "url": "https://github.com/fent" + }, + "repository": { + "type": "git", + "url": "git://github.com/fent/node-f.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/f/0.0.1", + "0.0.2": "http://registry.npmjs.org/f/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "2f74c32203fa7b78c207a13d036ea65aadc2d5a7", + "tarball": "http://registry.npmjs.org/f/-/f-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "a9a1c67267a4d364bef908d4b5e73b6410fa5fdd", + "tarball": "http://registry.npmjs.org/f/-/f-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/f/" + }, + "F": { + "name": "F", + "description": "Simple middleware", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "dvv", + "email": "dronnikov@gmail.com" + } + ], + "time": { + "modified": "2011-05-16T12:54:46.357Z", + "created": "2011-04-11T12:13:34.597Z", + "0.0.1": "2011-04-11T12:13:35.253Z", + "0.0.2": "2011-04-11T13:49:34.275Z", + "0.0.3": "2011-04-11T17:48:16.897Z", + "0.0.4": "2011-05-16T12:52:16.639Z" + }, + "author": { + "name": "Vladimir Dronnikov", + "email": "dronnikov@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/F/0.0.1", + "0.0.2": "http://registry.npmjs.org/F/0.0.2", + "0.0.3": "http://registry.npmjs.org/F/0.0.3", + "0.0.4": "http://registry.npmjs.org/F/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "c6db544573b980f2ccbb8834ec839a8d68a4a4c6", + "tarball": "http://registry.npmjs.org/F/-/F-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "ece6c54391d24ea31dedcf3f7d5a0bcd6f0ec564", + "tarball": "http://registry.npmjs.org/F/-/F-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "2825e162b2d002092d44e4b33d05d70bc40f36bb", + "tarball": "http://registry.npmjs.org/F/-/F-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "e71c58869678d5a1ba1e97649262a42dcd6aa6f2", + "tarball": "http://registry.npmjs.org/F/-/F-0.0.4.tgz" + } + }, + "keywords": [ + "middleware", + "json", + "schema", + "underscore", + "javascript", + "mongodb", + "rql" + ], + "url": "http://registry.npmjs.org/F/" + }, + "f-core": { + "name": "f-core", + "description": "terse pluggable DSL syntax", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-06-19T22:36:45.384Z", + "created": "2011-06-19T22:36:44.646Z", + "0.0.0": "2011-06-19T22:36:45.384Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com", + "url": "http://bit.ly/dominictarr" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/f-core/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "fd83c516f68856d623859144e57e06dde3778e7d", + "tarball": "http://registry.npmjs.org/f-core/-/f-core-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/f-core/" + }, + "f7u12rl": { + "name": "f7u12rl", + "description": "Replace faces in any image on the web with rage faces", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "aperiodic", + "email": "dlp@aperiodic.org" + } + ], + "time": { + "modified": "2011-09-18T20:48:39.717Z", + "created": "2011-09-18T20:48:38.472Z", + "0.1.0": "2011-09-18T20:48:39.717Z" + }, + "author": { + "name": "Dan Lidral-Porter", + "email": "dlp@aperiodic.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/aperiodic/f7u12rl.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/f7u12rl/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "3f2e824898c2fc2c1310bebaaa2802becf5ed807", + "tarball": "http://registry.npmjs.org/f7u12rl/-/f7u12rl-0.1.0.tgz" + } + }, + "keywords": [ + "face", + "recognition", + "rage", + "reddit" + ], + "url": "http://registry.npmjs.org/f7u12rl/" + }, + "fa": { + "name": "fa", + "description": "fluent async: functional programming support for asynchronous functions.", + "dist-tags": { + "latest": "0.1.1" + }, + "readme": "fa = fluent/functional async\n============================\n\n`fa` is a fluent and functional async library. Inspired by async[1], it\ntakes the functional operators, and adds some modifiers, to enable a\nqueue depth, run to completion regardless of errors, run in series, and\nadd an index to the callback.\n\n```js\nfa.map(\n [1,2,3], \n function(num,cb) { cb(null, num*2); },\n function(err, result) { console.log(result); }\n);\n```\n\n[1] https://github.com/caolan/async\n\n\n", + "maintainers": [ + { + "name": "wvl", + "email": "wayne@larsen.st" + } + ], + "time": { + "modified": "2011-11-23T20:19:31.649Z", + "created": "2011-11-23T18:49:46.208Z", + "0.1.0": "2011-11-23T18:49:47.045Z", + "0.1.1": "2011-11-23T20:19:31.649Z" + }, + "author": { + "name": "Wayne Larsen", + "email": "wayne@larsen.st" + }, + "repository": { + "type": "git", + "url": "git://github.com/wvl/fa.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/fa/0.1.0", + "0.1.1": "http://registry.npmjs.org/fa/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "26b56b3e1186dd2378ec24ca20a6ae3bf5ea0100", + "tarball": "http://registry.npmjs.org/fa/-/fa-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "c2719b39217c4e1210e8f7abdcb041e7346077b6", + "tarball": "http://registry.npmjs.org/fa/-/fa-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/fa/" + }, + "fab": { + "name": "fab", + "description": "a web framework built for streaming", + "dist-tags": { + "latest": "0.5.2" + }, + "maintainers": [ + { + "name": "jed", + "email": "tr@nslator.jp" + } + ], + "author": { + "name": "Jed Schmidt", + "email": "tr@nslator.jp" + }, + "repository": { + "type": "git", + "url": "git://github.com/jed/fab.git" + }, + "time": { + "modified": "2011-03-03T09:56:09.091Z", + "created": "2011-03-03T09:56:09.091Z", + "0.4.0": "2011-03-03T09:56:09.091Z", + "0.5.1": "2011-03-03T09:56:09.091Z", + "0.5.2": "2011-03-03T09:56:09.091Z" + }, + "versions": { + "0.4.0": "http://registry.npmjs.org/fab/0.4.0", + "0.5.1": "http://registry.npmjs.org/fab/0.5.1", + "0.5.2": "http://registry.npmjs.org/fab/0.5.2" + }, + "dist": { + "0.4.0": { + "tarball": "http://packages:5984/fab/-/fab-0.4.0.tgz" + }, + "0.5.1": { + "tarball": "http://packages:5984/fab/-/fab-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "b2fb6d2dc744666fdd7f19d4cf667540b3a3c92e", + "tarball": "http://registry.npmjs.org/fab/-/fab-0.5.2.tgz" + } + }, + "url": "http://registry.npmjs.org/fab/" + }, + "fab.accept": { + "name": "fab.accept", + "description": "Simple (fab) app to respond to Accept HTTP headers", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "eee-c", + "email": "npm@eeecooks.com" + } + ], + "author": { + "name": "Chris Strom" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/fab.accept/0.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/fab.accept/-/fab.accept-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/fab.accept/" + }, + "fab.static": { + "name": "fab.static", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "technoweenie", + "email": "technoweenie@gmail.com" + } + ], + "author": { + "name": "technoweenie" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/fab.static/0.1.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/fab.static/-/fab.static-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/fab.static/" + }, + "fabric": { + "name": "fabric", + "description": "Object model for HTML5 canvas, and SVG-to-canvas parser. Backed by jsdom and node-canvas.", + "dist-tags": { + "latest": "0.7.4" + }, + "maintainers": [ + { + "name": "kangax", + "email": "kangax@gmail.com" + } + ], + "time": { + "modified": "2011-12-09T21:25:39.089Z", + "created": "2011-08-16T20:17:15.294Z", + "0.5.2": "2011-08-16T20:17:19.278Z", + "0.5.3": "2011-08-16T23:06:54.968Z", + "0.5.5": "2011-08-28T18:57:07.328Z", + "0.5.6": "2011-09-06T00:53:32.862Z", + "0.5.7": "2011-09-06T01:02:34.313Z", + "0.5.10": "2011-09-08T19:59:29.139Z", + "0.5.13": "2011-09-20T21:29:19.705Z", + "0.6.4": "2011-10-28T04:10:58.833Z", + "0.6.6": "2011-10-29T18:15:23.662Z", + "0.6.7": "2011-10-29T18:36:43.368Z", + "0.6.8": "2011-11-02T21:25:54.230Z", + "0.6.11": "2011-11-14T20:24:08.637Z", + "0.6.12": "2011-11-18T15:47:04.238Z", + "0.7.1": "2011-12-06T14:58:37.986Z", + "0.7.3": "2011-12-09T21:16:30.494Z", + "0.7.4": "2011-12-09T21:25:39.089Z" + }, + "author": { + "name": "Juriy Zaytsev", + "email": "kangax@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/kangax/fabric.js.git" + }, + "versions": { + "0.5.2": "http://registry.npmjs.org/fabric/0.5.2", + "0.5.3": "http://registry.npmjs.org/fabric/0.5.3", + "0.5.5": "http://registry.npmjs.org/fabric/0.5.5", + "0.5.6": "http://registry.npmjs.org/fabric/0.5.6", + "0.5.7": "http://registry.npmjs.org/fabric/0.5.7", + "0.5.10": "http://registry.npmjs.org/fabric/0.5.10", + "0.5.13": "http://registry.npmjs.org/fabric/0.5.13", + "0.6.4": "http://registry.npmjs.org/fabric/0.6.4", + "0.6.6": "http://registry.npmjs.org/fabric/0.6.6", + "0.6.7": "http://registry.npmjs.org/fabric/0.6.7", + "0.6.8": "http://registry.npmjs.org/fabric/0.6.8", + "0.6.12": "http://registry.npmjs.org/fabric/0.6.12", + "0.7.1": "http://registry.npmjs.org/fabric/0.7.1", + "0.7.3": "http://registry.npmjs.org/fabric/0.7.3", + "0.7.4": "http://registry.npmjs.org/fabric/0.7.4" + }, + "dist": { + "0.5.2": { + "shasum": "a8de0735c78bc1c699494e0190234005d532d402", + "tarball": "http://registry.npmjs.org/fabric/-/fabric-0.5.2.tgz" + }, + "0.5.3": { + "shasum": "04fa93b4986721dede63fad0c7c6cc3a3ef9a264", + "tarball": "http://registry.npmjs.org/fabric/-/fabric-0.5.3.tgz" + }, + "0.5.5": { + "shasum": "d901bbc8eff9b2725683a6665023828031c2a43c", + "tarball": "http://registry.npmjs.org/fabric/-/fabric-0.5.5.tgz" + }, + "0.5.6": { + "shasum": "0cc1568d89a110d5a4ce6f3f941dffc749816de0", + "tarball": "http://registry.npmjs.org/fabric/-/fabric-0.5.6.tgz" + }, + "0.5.7": { + "shasum": "82c9220045fb86645835552a684d8964113852e9", + "tarball": "http://registry.npmjs.org/fabric/-/fabric-0.5.7.tgz" + }, + "0.5.10": { + "shasum": "012ba23db980b4baeb86f4ff8205aa784a739a9e", + "tarball": "http://registry.npmjs.org/fabric/-/fabric-0.5.10.tgz" + }, + "0.5.13": { + "shasum": "aaad774ef51b7447a92136fc4928d15f65dd9ae5", + "tarball": "http://registry.npmjs.org/fabric/-/fabric-0.5.13.tgz" + }, + "0.6.4": { + "shasum": "814de2e75fd771c17a8f7371eed6d5ce297d9ca1", + "tarball": "http://registry.npmjs.org/fabric/-/fabric-0.6.4.tgz" + }, + "0.6.6": { + "shasum": "b14af64298fe52bbd031408e0695ae8cdcf47e56", + "tarball": "http://registry.npmjs.org/fabric/-/fabric-0.6.6.tgz" + }, + "0.6.7": { + "shasum": "3f511d9b557c7245c35573fc8b6215d858b6f75b", + "tarball": "http://registry.npmjs.org/fabric/-/fabric-0.6.7.tgz" + }, + "0.6.8": { + "shasum": "6768f10420b29737a621b0ffbb6865ef1a0e36f8", + "tarball": "http://registry.npmjs.org/fabric/-/fabric-0.6.8.tgz" + }, + "0.6.12": { + "shasum": "18ad44e93734b00e5b770b42d97e668c43c728d3", + "tarball": "http://registry.npmjs.org/fabric/-/fabric-0.6.12.tgz" + }, + "0.7.1": { + "shasum": "1d3ac26d7cc8237335e20529528ba02c817abb41", + "tarball": "http://registry.npmjs.org/fabric/-/fabric-0.7.1.tgz" + }, + "0.7.3": { + "shasum": "86a274ce18ecae249d35137aef77d134d25dfda2", + "tarball": "http://registry.npmjs.org/fabric/-/fabric-0.7.3.tgz" + }, + "0.7.4": { + "shasum": "e85e099d44d4bf4cabb1b255c9566a038ba9a628", + "tarball": "http://registry.npmjs.org/fabric/-/fabric-0.7.4.tgz" + } + }, + "keywords": [ + "canvas", + "graphic", + "graphics", + "SVG", + "node-canvas", + "parser", + "HTML5", + "object model" + ], + "url": "http://registry.npmjs.org/fabric/" + }, + "facade": { + "name": "facade", + "description": "Modify XML snippets on the server-side", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "alexw", + "email": "arexkun11@gmail.com" + } + ], + "time": { + "modified": "2011-11-12T21:51:49.905Z", + "created": "2011-11-10T01:18:45.813Z", + "0.0.0": "2011-11-10T01:18:46.779Z", + "0.0.1": "2011-11-10T01:49:23.823Z", + "0.1.0": "2011-11-12T17:36:41.482Z", + "0.1.1": "2011-11-12T19:30:28.150Z", + "0.1.2": "2011-11-12T21:51:49.905Z" + }, + "author": { + "name": "Alexander N. Wilson", + "email": "arexkun11@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/arexkun/facade.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/facade/0.0.0", + "0.0.1": "http://registry.npmjs.org/facade/0.0.1", + "0.1.0": "http://registry.npmjs.org/facade/0.1.0", + "0.1.1": "http://registry.npmjs.org/facade/0.1.1", + "0.1.2": "http://registry.npmjs.org/facade/0.1.2" + }, + "dist": { + "0.0.0": { + "shasum": "0bc31b54c461cd7a87adcda78e555f44bee4930b", + "tarball": "http://registry.npmjs.org/facade/-/facade-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "fce5f5d8d4ac28f5f42919b4e116eadd736429c3", + "tarball": "http://registry.npmjs.org/facade/-/facade-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "1a22487b21ea4d1dffa6e50187518995e29d1ec0", + "tarball": "http://registry.npmjs.org/facade/-/facade-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "4d8f85ace2eefa6e84b42c2974a402b92459e990", + "tarball": "http://registry.npmjs.org/facade/-/facade-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "ed090d2a43b4479dcaeba189795e9446eae70da3", + "tarball": "http://registry.npmjs.org/facade/-/facade-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/facade/" + }, + "face-detect": { + "name": "face-detect", + "description": "A pure-JS facial detection library", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "orls", + "email": "owen@orls.co.uk" + } + ], + "time": { + "modified": "2011-04-30T17:08:53.404Z", + "created": "2011-04-30T17:08:52.188Z", + "0.0.1": "2011-04-30T17:08:53.404Z" + }, + "author": { + "name": "Owen Smith", + "email": "owen@orls.co.uk" + }, + "repository": { + "url": "https://github.com/orls/ccv-purejs.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/face-detect/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "aaeeb2c7431db4c234efcfc0f8ba66b38556c46d", + "tarball": "http://registry.npmjs.org/face-detect/-/face-detect-0.0.1.tgz" + } + }, + "keywords": [ + "face detection", + "face", + "ccv", + "vision" + ], + "url": "http://registry.npmjs.org/face-detect/" + }, + "facebook": { + "name": "facebook", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "francois", + "email": "francois@2metz.fr" + } + ], + "time": { + "modified": "2011-02-07T22:47:06.585Z", + "created": "2011-02-07T19:39:46.015Z", + "0.0.1": "2011-02-07T19:39:47.123Z", + "0.0.2": "2011-02-07T19:46:41.586Z", + "0.0.3": "2011-02-07T20:30:26.182Z" + }, + "author": { + "name": "Dominiek ter Heide" + }, + "description": "Simple Facebook Integration for NodeJS (and Express)", + "versions": { + "0.0.1": "http://registry.npmjs.org/facebook/0.0.1", + "0.0.3": "http://registry.npmjs.org/facebook/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "66bf34e56deab604b64756e6d57df7704ec786a1", + "tarball": "http://registry.npmjs.org/facebook/-/facebook-0.0.1.tgz" + }, + "0.0.3": { + "shasum": "0d2c5be3df4f2f5327b1ab6332f014f8eb703341", + "tarball": "http://registry.npmjs.org/facebook/-/facebook-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/facebook/" + }, + "facebook-api": { + "name": "facebook-api", + "description": "offering high level and low level calls against the graph API", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "mren", + "email": "mark.c.engel@gmail.com" + } + ], + "time": { + "modified": "2011-03-16T15:28:57.682Z", + "created": "2011-03-10T15:30:07.484Z", + "0.1.0": "2011-03-10T15:30:07.923Z", + "0.1.1": "2011-03-16T15:28:57.682Z" + }, + "author": { + "name": "Mark Engel", + "email": "mark.c.engel@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mren/facebook-api.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/facebook-api/0.1.0", + "0.1.1": "http://registry.npmjs.org/facebook-api/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "38f22a3fa2a4b9af50312b2420946bff32210a19", + "tarball": "http://registry.npmjs.org/facebook-api/-/facebook-api-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "d16fee30b5f99d8607e366ed66e194df0c3e9184", + "tarball": "http://registry.npmjs.org/facebook-api/-/facebook-api-0.1.1.tgz" + } + }, + "keywords": [ + "facebook" + ], + "url": "http://registry.npmjs.org/facebook-api/" + }, + "facebook-client": { + "name": "facebook-client", + "description": "A javascript (nodejs) implementation of facebook's client for oauth and rest+graph api.", + "dist-tags": { + "latest": "1.3.0", + "stable": "1.3.0" + }, + "maintainers": [ + { + "name": "DracoBlue", + "email": "JanS@DracoBlue.de" + } + ], + "author": { + "name": "DracoBlue", + "email": "JanS@DracoBlue.de" + }, + "repository": { + "type": "git", + "web": "http://github.com/DracoBlue/node-facebook-client.git", + "url": "" + }, + "time": { + "modified": "2011-04-26T18:52:59.792Z", + "created": "2010-12-29T11:05:59.824Z", + "1.0.0": "2010-12-29T11:05:59.824Z", + "1.0.1": "2010-12-29T11:05:59.824Z", + "1.1.0": "2010-12-29T12:52:08.312Z", + "1.2.0": "2011-03-09T19:35:41.765Z", + "1.3.0": "2011-04-26T18:52:39.552Z" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/facebook-client/1.0.0", + "1.0.1": "http://registry.npmjs.org/facebook-client/1.0.1", + "1.1.0": "http://registry.npmjs.org/facebook-client/1.1.0", + "1.2.0": "http://registry.npmjs.org/facebook-client/1.2.0", + "1.3.0": "http://registry.npmjs.org/facebook-client/1.3.0" + }, + "dist": { + "1.0.0": { + "tarball": "http://packages:5984/facebook-client/-/facebook-client-1.0.0.tgz" + }, + "1.0.1": { + "tarball": "http://registry.npmjs.org/facebook-client/-/facebook-client@1.0.1.tgz" + }, + "1.1.0": { + "tarball": "http://registry.npmjs.org/facebook-client/-/facebook-client@1.1.0.tgz" + }, + "1.2.0": { + "shasum": "ee9b484bf2f3f0f053f5808fef217c376b106f51", + "tarball": "http://registry.npmjs.org/facebook-client/-/facebook-client-1.2.0.tgz" + }, + "1.3.0": { + "shasum": "9df4845d9c32e10263182997ef345b60089f041a", + "tarball": "http://registry.npmjs.org/facebook-client/-/facebook-client-1.3.0.tgz" + } + }, + "keywords": [ + "facebook", + "oauth", + "client" + ], + "url": "http://registry.npmjs.org/facebook-client/" + }, + "facebook-conduit": { + "name": "facebook-conduit", + "description": "A simple subscriber end-point for Facebook's Real-time Updates", + "dist-tags": { + "latest": "0.1.1" + }, + "readme": "# Facebook-conduit\nAuthor: [Luiz Lopes](http://wickeddeveloper.com)\n\nThis is a simple script that receives events from a facebook callback and then republishes these events through and emitter.\nI took Nolan Caudill's [flickr-conduit](https://github.com/mncaudill/flickr-conduit) idea and stripped the pieces specific for Flick and replaced them with Facebooks.\n\n# LICENSE\n(The MIT License)\n\nCopyright (c) 2011 Nolan Caudill\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n", + "maintainers": [ + { + "name": "theprivileges", + "email": "luizlopes@gmail.com" + } + ], + "time": { + "modified": "2011-11-18T20:57:16.561Z", + "created": "2011-11-18T20:28:57.109Z", + "0.1.0": "2011-11-18T20:28:57.787Z", + "0.1.1": "2011-11-18T20:57:16.561Z" + }, + "author": { + "name": "Luiz Lopes", + "url": "http://wickeddeveloper.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/theprivileges/facebook-conduit.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/facebook-conduit/0.1.0", + "0.1.1": "http://registry.npmjs.org/facebook-conduit/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "5ca552202e41019dfc2c5c7f6c68057370c58220", + "tarball": "http://registry.npmjs.org/facebook-conduit/-/facebook-conduit-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "db90082beca66144aea547881636cc969716a622", + "tarball": "http://registry.npmjs.org/facebook-conduit/-/facebook-conduit-0.1.1.tgz" + } + }, + "keywords": [ + "facebook", + "real time", + "graph api", + "hubbub" + ], + "url": "http://registry.npmjs.org/facebook-conduit/" + }, + "facebook-connect": { + "name": "facebook-connect", + "description": "Misc routines for Facebook Apps developing with node.js", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "egor", + "email": "me@egorfine.com" + } + ], + "author": { + "name": "Egor Egorov", + "email": "me@egorfine.com" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/facebook-connect/0.1.1" + }, + "dist": { + "0.1.1": { + "tarball": "http://packages:5984/facebook-connect/-/facebook-connect-0.1.1.tgz" + } + }, + "keywords": [ + "facebook", + "connect", + "facebook connect", + "hmac_sha256" + ], + "url": "http://registry.npmjs.org/facebook-connect/" + }, + "facebook-express": { + "name": "facebook-express", + "description": "Facebook API and best-practices abstraction layer for express", + "dist-tags": { + "latest": "0.0.23" + }, + "maintainers": [ + { + "name": "aldobucchi", + "email": "aldo.bucchi@gmail.com" + } + ], + "time": { + "modified": "2011-04-13T08:50:02.246Z", + "created": "2011-03-03T00:08:48.656Z", + "0.0.1": "2011-03-03T00:08:49.293Z", + "0.0.2": "2011-03-04T07:01:53.067Z", + "0.0.21": "2011-03-04T07:29:04.206Z", + "0.0.22": "2011-03-06T05:12:35.876Z", + "0.0.23": "2011-04-13T08:50:02.246Z" + }, + "author": { + "name": "Aldo Bucchi", + "email": "aldo.bucchi@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/aldonline/facebook-express.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/facebook-express/0.0.1", + "0.0.2": "http://registry.npmjs.org/facebook-express/0.0.2", + "0.0.21": "http://registry.npmjs.org/facebook-express/0.0.21", + "0.0.22": "http://registry.npmjs.org/facebook-express/0.0.22", + "0.0.23": "http://registry.npmjs.org/facebook-express/0.0.23" + }, + "dist": { + "0.0.1": { + "shasum": "3c8db8e048398503037a3bf9ba14bfd413f57e6f", + "tarball": "http://registry.npmjs.org/facebook-express/-/facebook-express-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "9fee9e848fe2dc3184533676fe01576c9f817735", + "tarball": "http://registry.npmjs.org/facebook-express/-/facebook-express-0.0.2.tgz" + }, + "0.0.21": { + "shasum": "cfdcf740c32a4d349fa19510a2fe3d5cea1132c6", + "tarball": "http://registry.npmjs.org/facebook-express/-/facebook-express-0.0.21.tgz" + }, + "0.0.22": { + "shasum": "e03675ac0ac3d130a05b82f2a5499692e80903dd", + "tarball": "http://registry.npmjs.org/facebook-express/-/facebook-express-0.0.22.tgz" + }, + "0.0.23": { + "shasum": "23d375fdd452d4ecad1502223a3c012eaa65b866", + "tarball": "http://registry.npmjs.org/facebook-express/-/facebook-express-0.0.23.tgz" + } + }, + "keywords": [ + "facebook", + "express" + ], + "url": "http://registry.npmjs.org/facebook-express/" + }, + "facebook-graph": { + "name": "facebook-graph", + "description": "Facebook Node.js SDK", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "gasi", + "email": "daniel@gasienica.ch" + } + ], + "time": { + "modified": "2011-04-04T21:53:44.823Z", + "created": "2011-03-22T06:30:12.344Z", + "0.0.3": "2011-03-22T06:30:12.727Z", + "0.0.4": "2011-03-26T22:21:30.657Z", + "0.0.5": "2011-04-03T10:53:31.807Z", + "0.0.6": "2011-04-04T21:53:44.823Z" + }, + "author": { + "name": "Daniel Gasienica", + "email": "daniel@gasienica.ch" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/facebook-graph/0.0.3", + "0.0.4": "http://registry.npmjs.org/facebook-graph/0.0.4", + "0.0.5": "http://registry.npmjs.org/facebook-graph/0.0.5", + "0.0.6": "http://registry.npmjs.org/facebook-graph/0.0.6" + }, + "dist": { + "0.0.3": { + "shasum": "501d61d6c005ddb304439c6b3cc257ef31fba0dd", + "tarball": "http://registry.npmjs.org/facebook-graph/-/facebook-graph-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "c7493de1e4a37c6b4e1804f29610f6e33854d4a8", + "tarball": "http://registry.npmjs.org/facebook-graph/-/facebook-graph-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "e9b7b9210217dd7f9d73db5644df0ecd4238ca4e", + "tarball": "http://registry.npmjs.org/facebook-graph/-/facebook-graph-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "29cea284a0b3a20beda994c28057f0667526ee52", + "tarball": "http://registry.npmjs.org/facebook-graph/-/facebook-graph-0.0.6.tgz" + } + }, + "keywords": [ + "facebook" + ], + "url": "http://registry.npmjs.org/facebook-graph/" + }, + "facebook-graph-client": { + "name": "facebook-graph-client", + "description": "A Node.js client to the Facebook Graph API", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "miksago", + "email": "micheil@brandedcode.com" + }, + { + "name": "Tim-Smart", + "email": "tim@fostle.com" + } + ], + "time": { + "modified": "2011-02-24T18:12:27.221Z", + "created": "2011-01-24T20:35:43.445Z", + "0.0.1": "2011-01-24T20:35:44.681Z", + "0.0.2": "2011-01-26T14:26:25.477Z", + "0.0.3": "2011-02-24T15:26:03.706Z", + "0.0.4": "2011-02-24T17:58:25.755Z" + }, + "author": { + "name": "Micheil Smith", + "email": "micheil@votizen.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/votizen/facebook-graph-client.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/facebook-graph-client/0.0.1", + "0.0.2": "http://registry.npmjs.org/facebook-graph-client/0.0.2", + "0.0.3": "http://registry.npmjs.org/facebook-graph-client/0.0.3", + "0.0.4": "http://registry.npmjs.org/facebook-graph-client/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "d134c6bd48557998e544789799debb595ed04914", + "tarball": "http://registry.npmjs.org/facebook-graph-client/-/facebook-graph-client-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "98a5aac6ff91f3fe1ef30dfb6d3de60318e11575", + "tarball": "http://registry.npmjs.org/facebook-graph-client/-/facebook-graph-client-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "f8e39311ab92d88a0c86e89fee6a172b95e94f8f", + "tarball": "http://registry.npmjs.org/facebook-graph-client/-/facebook-graph-client-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "4e2ab647a2377a6441ca9444bd1300ce9ec4a3c6", + "tarball": "http://registry.npmjs.org/facebook-graph-client/-/facebook-graph-client-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/facebook-graph-client/" + }, + "facebook-js": { + "name": "facebook-js", + "description": "Minimalistic facebook API client", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "masylum", + "email": "masylum@gmail.com" + } + ], + "author": { + "name": "Pau Ramon", + "email": "masylum@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/masylum/facebook-js.git" + }, + "time": { + "modified": "2011-09-10T00:23:23.377Z", + "created": "2011-03-11T00:31:25.083Z", + "0.0.1": "2011-03-11T00:31:25.083Z", + "0.0.2": "2011-03-11T00:31:25.083Z", + "0.0.3": "2011-03-11T00:31:25.083Z", + "0.0.4": "2011-03-11T00:31:25.083Z", + "0.0.5": "2011-03-11T00:31:25.083Z", + "1.0.0": "2011-06-05T22:52:02.200Z", + "1.0.1": "2011-09-10T00:23:23.377Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/facebook-js/0.0.1", + "0.0.2": "http://registry.npmjs.org/facebook-js/0.0.2", + "0.0.3": "http://registry.npmjs.org/facebook-js/0.0.3", + "0.0.4": "http://registry.npmjs.org/facebook-js/0.0.4", + "0.0.5": "http://registry.npmjs.org/facebook-js/0.0.5", + "1.0.0": "http://registry.npmjs.org/facebook-js/1.0.0", + "1.0.1": "http://registry.npmjs.org/facebook-js/1.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/facebook-js/-/facebook-js-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/facebook-js/-/facebook-js-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/facebook-js/-/facebook-js-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://registry.npmjs.org/facebook-js/-/facebook-js-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "7031f856cf81d780ce03120d32c8eb62c1941f2d", + "tarball": "http://registry.npmjs.org/facebook-js/-/facebook-js-0.0.5.tgz" + }, + "1.0.0": { + "shasum": "5bb50c121ec26036746c94493fd7a81d6abcca69", + "tarball": "http://registry.npmjs.org/facebook-js/-/facebook-js-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "477f5f96a2908a9c435ac6e96ea3a262d2ef23da", + "tarball": "http://registry.npmjs.org/facebook-js/-/facebook-js-1.0.1.tgz" + } + }, + "keywords": [ + "facebook" + ], + "url": "http://registry.npmjs.org/facebook-js/" + }, + "facebook-node-sdk": { + "name": "facebook-node-sdk", + "description": "Node.js SDK for the Facebook API", + "dist-tags": { + "latest": "0.1.3" + }, + "readme": null, + "maintainers": [ + { + "name": "amachang", + "email": "seijro@gmail.com" + } + ], + "time": { + "modified": "2011-12-13T19:26:34.897Z", + "created": "2011-12-07T04:48:42.189Z", + "0.0.1": "2011-12-07T04:48:45.137Z", + "0.1.0": "2011-12-13T07:15:19.894Z", + "0.1.1": "2011-12-13T10:42:49.913Z", + "0.1.2": "2011-12-13T10:54:18.109Z", + "0.1.3": "2011-12-13T19:26:34.897Z" + }, + "author": { + "name": "Hitoshi Amano", + "email": "seijro@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/amachang/facebook-node-sdk.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/facebook-node-sdk/0.0.1", + "0.1.0": "http://registry.npmjs.org/facebook-node-sdk/0.1.0", + "0.1.1": "http://registry.npmjs.org/facebook-node-sdk/0.1.1", + "0.1.2": "http://registry.npmjs.org/facebook-node-sdk/0.1.2", + "0.1.3": "http://registry.npmjs.org/facebook-node-sdk/0.1.3" + }, + "dist": { + "0.0.1": { + "shasum": "3f8186f9e8f963de0d743ed91251318e6d0e8627", + "tarball": "http://registry.npmjs.org/facebook-node-sdk/-/facebook-node-sdk-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "855a640f5dc2aa6c79aee6deb50e4a3977fc9da2", + "tarball": "http://registry.npmjs.org/facebook-node-sdk/-/facebook-node-sdk-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "bdb2a0c731413a8b5ac9a14176dcd4329a671de8", + "tarball": "http://registry.npmjs.org/facebook-node-sdk/-/facebook-node-sdk-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "1a3796d7bb089ebd9a7aacfc0323ae025a174005", + "tarball": "http://registry.npmjs.org/facebook-node-sdk/-/facebook-node-sdk-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "99509772f73b07cde9d214ab0e954f2a33b9648f", + "tarball": "http://registry.npmjs.org/facebook-node-sdk/-/facebook-node-sdk-0.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/facebook-node-sdk/" + }, + "facebook-realtime-graph": { + "name": "facebook-realtime-graph", + "description": "FaceBook Realtime Graph server-endpoint and API client", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "miksago", + "email": "micheil@brandedcode.com" + }, + { + "name": "Tim-Smart", + "email": "tim@fostle.com" + } + ], + "time": { + "modified": "2011-02-25T06:08:24.712Z", + "created": "2011-01-25T12:05:58.003Z", + "0.0.3": "2011-01-25T12:06:00.479Z", + "0.0.4": "2011-02-25T06:08:24.712Z" + }, + "author": { + "name": "Micheil Smith", + "email": "micheil@brandedcode.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/votizen/facebook-realtime-graph.git" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/facebook-realtime-graph/0.0.3", + "0.0.4": "http://registry.npmjs.org/facebook-realtime-graph/0.0.4" + }, + "dist": { + "0.0.3": { + "shasum": "d3fd714905560bbd920b134533832b999b44994a", + "tarball": "http://registry.npmjs.org/facebook-realtime-graph/-/facebook-realtime-graph-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "f3200a1bbecdc222347ca86327fd573804acc081", + "tarball": "http://registry.npmjs.org/facebook-realtime-graph/-/facebook-realtime-graph-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/facebook-realtime-graph/" + }, + "facebook-sdk": { + "name": "facebook-sdk", + "description": "A full port of Facebook's PHP SDK library", + "dist-tags": { + "latest": "0.3.2" + }, + "maintainers": [ + { + "name": "tenorviol", + "email": "tenorviol@yahoo.com" + } + ], + "time": { + "modified": "2011-05-02T17:51:14.697Z", + "created": "2011-02-25T23:03:34.640Z", + "0.2.0": "2011-02-25T23:03:35.044Z", + "0.2.1": "2011-02-28T22:09:15.351Z", + "0.2.2": "2011-03-03T23:25:29.433Z", + "0.2.3": "2011-03-08T08:13:19.140Z", + "0.2.4": "2011-03-08T17:19:55.380Z", + "0.2.5": "2011-03-08T20:12:46.398Z", + "0.2.6": "2011-04-19T07:10:28.163Z", + "0.3.0": "2011-04-19T10:50:46.099Z", + "0.3.1": "2011-04-19T11:01:16.538Z", + "0.3.2": "2011-05-02T17:51:14.697Z" + }, + "author": { + "name": "Christopher Johnson", + "email": "tenorviol@yahoo.com", + "url": "http://github.com/tenorviol" + }, + "repository": { + "type": "git", + "url": "git://github.com/tenorviol/node-facebook-sdk.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/facebook-sdk/0.2.0", + "0.2.1": "http://registry.npmjs.org/facebook-sdk/0.2.1", + "0.2.2": "http://registry.npmjs.org/facebook-sdk/0.2.2", + "0.2.3": "http://registry.npmjs.org/facebook-sdk/0.2.3", + "0.2.4": "http://registry.npmjs.org/facebook-sdk/0.2.4", + "0.2.5": "http://registry.npmjs.org/facebook-sdk/0.2.5", + "0.2.6": "http://registry.npmjs.org/facebook-sdk/0.2.6", + "0.3.0": "http://registry.npmjs.org/facebook-sdk/0.3.0", + "0.3.1": "http://registry.npmjs.org/facebook-sdk/0.3.1", + "0.3.2": "http://registry.npmjs.org/facebook-sdk/0.3.2" + }, + "dist": { + "0.2.0": { + "shasum": "10ca60293e84aa5ac367017c93f972c7cb3f87fe", + "tarball": "http://registry.npmjs.org/facebook-sdk/-/facebook-sdk-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "871d0c4af372ace4e356f81663a8ae511683a253", + "tarball": "http://registry.npmjs.org/facebook-sdk/-/facebook-sdk-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "108f5e901638273581d086d7f19cd5e56a549cf5", + "tarball": "http://registry.npmjs.org/facebook-sdk/-/facebook-sdk-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "dfb3608c6bc0c85e3814fb11d323e9186bd21184", + "tarball": "http://registry.npmjs.org/facebook-sdk/-/facebook-sdk-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "bf479f31dd03fbfe3015362de4736a92f9f2d5f4", + "tarball": "http://registry.npmjs.org/facebook-sdk/-/facebook-sdk-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "bd0f14638b69011065e87146a6346b8c13d8c522", + "tarball": "http://registry.npmjs.org/facebook-sdk/-/facebook-sdk-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "d2202458894c0a79888926661d1f1901fed98568", + "tarball": "http://registry.npmjs.org/facebook-sdk/-/facebook-sdk-0.2.6.tgz" + }, + "0.3.0": { + "shasum": "7bdc489d22ce806a3b232563821bcf0a273063df", + "tarball": "http://registry.npmjs.org/facebook-sdk/-/facebook-sdk-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "b50377acd67e5388dafa278b779c04df910ea47c", + "tarball": "http://registry.npmjs.org/facebook-sdk/-/facebook-sdk-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "1b06d7ac5378d41b9433ff13bfb70ca9f1eeb459", + "tarball": "http://registry.npmjs.org/facebook-sdk/-/facebook-sdk-0.3.2.tgz" + } + }, + "keywords": [ + "facebook", + "sdk", + "graph", + "api", + "connect", + "canvas" + ], + "url": "http://registry.npmjs.org/facebook-sdk/" + }, + "facebook-session-cookie": { + "name": "facebook-session-cookie", + "description": "nodejs/connect middleware that eats facebook cookies that eats and validates facebook cookies from client FB.login() calls and makes the session available as req.fb_session", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "jonas.huckestein", + "email": "jonas.huckestein@gmail.com" + } + ], + "time": { + "modified": "2011-01-26T07:22:33.979Z", + "created": "2011-01-26T07:08:16.061Z", + "0.1.0": "2011-01-26T07:08:16.477Z", + "0.1.1": "2011-01-26T07:15:28.881Z", + "0.1.2": "2011-01-26T07:17:05.129Z", + "0.1.3": "2011-01-26T07:22:33.979Z" + }, + "author": { + "name": "Jonas Huckestein", + "email": "jonas.huckestein@gmail.com", + "url": "http://thezukunft.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/facebook-session-cookie/0.1.0", + "0.1.1": "http://registry.npmjs.org/facebook-session-cookie/0.1.1", + "0.1.2": "http://registry.npmjs.org/facebook-session-cookie/0.1.2", + "0.1.3": "http://registry.npmjs.org/facebook-session-cookie/0.1.3" + }, + "dist": { + "0.1.0": { + "shasum": "090ea63c46bb52755ef009848feb3c99460fbbce", + "tarball": "http://registry.npmjs.org/facebook-session-cookie/-/facebook-session-cookie-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "aa3fa46692771b33ac19fec590a3e68d602eb616", + "tarball": "http://registry.npmjs.org/facebook-session-cookie/-/facebook-session-cookie-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "3aa7f587267bf18911e79dfc196417ab90b67ed5", + "tarball": "http://registry.npmjs.org/facebook-session-cookie/-/facebook-session-cookie-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "544025a066bfddbfbf3161f55f83b5223e067be9", + "tarball": "http://registry.npmjs.org/facebook-session-cookie/-/facebook-session-cookie-0.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/facebook-session-cookie/" + }, + "facebook-signed-request": { + "name": "facebook-signed-request", + "description": "Facebook Signed Request de- and encoder for node.js", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "phuesler", + "email": "patrick.huesler@googlemail.com" + } + ], + "time": { + "modified": "2011-08-25T14:00:37.797Z", + "created": "2011-08-23T16:13:14.410Z", + "0.0.1": "2011-08-23T16:13:15.822Z", + "0.0.2": "2011-08-25T14:00:37.797Z" + }, + "author": { + "name": "Patrick Huesler", + "email": "patrick.huesler@googlemail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/wooga/node-facebook-signed-request.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/facebook-signed-request/0.0.1", + "0.0.2": "http://registry.npmjs.org/facebook-signed-request/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "f0a5ed075e93bc3b5f3627dcae6b0b1746a06ddf", + "tarball": "http://registry.npmjs.org/facebook-signed-request/-/facebook-signed-request-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "be6b0e55bc1ae587debaeef154a3d5e38b7f8ee8", + "tarball": "http://registry.npmjs.org/facebook-signed-request/-/facebook-signed-request-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/facebook-signed-request/" + }, + "facebook-testers-tool": { + "name": "facebook-testers-tool", + "description": "A simple nodejs module to create and connect facebook testers trough their api", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "camilo.tapia", + "email": "camilo.tapia@gmail.com" + } + ], + "time": { + "modified": "2011-11-01T10:18:16.620Z", + "created": "2011-11-01T10:18:14.820Z", + "0.1.1": "2011-11-01T10:18:16.620Z" + }, + "author": { + "name": "camilo tapia", + "email": "camilo.tapia@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Camme/facebook-testers-tool.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/facebook-testers-tool/0.1.1" + }, + "dist": { + "0.1.1": { + "shasum": "aa980ce5cfa4e9540f775f40e3fdf5d6caef66bb", + "tarball": "http://registry.npmjs.org/facebook-testers-tool/-/facebook-testers-tool-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/facebook-testers-tool/" + }, + "facebook-wrapper": { + "name": "facebook-wrapper", + "description": "A basic Facebook API wrapper for Node.js and Express/Connect", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "vladbagrin", + "email": "vlad.bagrin@gmail.com" + } + ], + "time": { + "modified": "2011-10-16T10:51:08.967Z", + "created": "2011-09-27T12:11:10.451Z", + "0.0.1": "2011-09-27T12:11:12.228Z", + "0.0.2": "2011-10-03T20:38:30.247Z" + }, + "author": { + "name": "Vlad Bagrin", + "email": "vlad.bagrin@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/vladbagrin/facebook-api.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/facebook-wrapper/0.0.1", + "0.0.2": "http://registry.npmjs.org/facebook-wrapper/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "c52b6c5ae6659807b59656218ea5452f956c374a", + "tarball": "http://registry.npmjs.org/facebook-wrapper/-/facebook-wrapper-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "86e15429578646b3954def229599215e27e03b14", + "tarball": "http://registry.npmjs.org/facebook-wrapper/-/facebook-wrapper-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/facebook-wrapper/" + }, + "facebook.node": { + "name": "facebook.node", + "description": "Facebook API Client", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "mattinsler", + "email": "matt.insler@gmail.com" + } + ], + "time": { + "modified": "2011-09-07T03:34:38.490Z", + "created": "2011-09-07T03:34:35.985Z", + "0.1.0": "2011-09-07T03:34:38.490Z" + }, + "author": { + "name": "Matt Insler", + "email": "matt.insler@gmail.com", + "url": "www.mattinsler.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mattinsler/facebook.node.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/facebook.node/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "c24fcb4b0bfcb37018cd5d3e4db85a250a326b49", + "tarball": "http://registry.npmjs.org/facebook.node/-/facebook.node-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/facebook.node/" + }, + "facetest": { + "name": "facetest", + "description": "lib to provide easier creation of facebook test users for unit testing", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "##dd What?!\n[FaceTest](http://criso.github.com/facetest/) - nodejs module to facilitate api tests that require facebook test users\n\n## What?!!\nCreating facebook test users is pain. \nIf you're building a `facebook` app or a web app that needs interacts with facebook user objects, this should make your life easier.\n\n\n## Installation via npm\n $ npm install facetest\n\n\n## Init\nWhen creating a `facetest` object you'll need to pass in a facebook config object.\n\n```js\nvar config = {\n appId: ,\n appSecret: ,\n appInstalled: true,\n scope: 'email, user_about_me, user_birthday, user_location, publish_stream, read_stream, friends_location',\n};\n\nvar FaceTest = require('facetest')\n , facetest = new FaceTest(config);\n\n```\n\n## Create a test User\nCreates a facebook test user based on name given\n\n```js\n var FaceTest = require('facetest')\n , facetest = new FaceTest(config);\n\n facetest.createUser('Magic Man', function (err, user) {\n console.log(user); // { 'Magic Man': { id: ..., email: ....} }\n });\n```\n\n## Create several test users\nCreates facebook test users based on an array of names\n\n```js\n var FaceTest = require('facetest')\n , facetest = new FaceTest(config);\n\n var multipleUsers = ['Ricky Bobby', 'El Diablo', 'Magic Man'];\n\n facetest.createUsers(multipleUsers, function(err, users) {\n console.log(users);\n // {\n // 'Ricky Bobby': { id: ..., email: ....}\n // 'El Diablo': { id: ..., email: ....}\n // 'Magic Man': { id: ..., email: ....}\n // }\n });\n```\n\n## Create facebook friends\n`createFriends()` expects an object containing an array of names\nThis will create facebook test users for all the names given. \n \nThe key of the object is an `anchor user`, which will have a friend\nrelationship with all the users in the given array. \n \nEach user will have a `friend object`. \n\n```js\n var FaceTest = require('facetest')\n , facetest = new FaceTest(config);\n\n var friends = {\n 'Ron Burgundy': ['Ricky Bobby', 'El Diablo', 'Veronica Corningstone']\n };\n\n // Ron Burgundy will be friends with Ricky bobby, El Diablo and Veronica Corningstone\n // Ricky Bobby will *NOT* be friends with El Diablo. Infinite Sadness.\n facetest.createFriends(friends, function(err, users) {\n console.log(users);\n // {\n // 'Ron Burgundy': { id: ..., email: ...., friends: [object, object, object]}\n // , 'Ricky Bobby': { id: ..., email: ...., friends: [object]}\n // , 'El Diablo': { id: ..., email: ...., friends: [object]}\n // , 'Veronica Corningstone': { id: ..., email: ...., friends: [object]}\n // }\n });\n```\n\n## Sample test\n```js\n var vows = require('vows')\n , assert = require('assert')\n , FaceTest = require('facetest');\n\n var facetest = new FaceTest();\n\n vows.describe(\"testUser.test\").addBatch({\n 'After multiple users creation': {\n topic: function () {\n var friends = {\n 'Ron Burgundy': ['Ricky Bobby', 'El Diablo', 'Veronica Corningstone']\n };\n\n facetest.createFriends(friends, this.callback);\n },\n\n 'posting a blog post with facebook id': {\n topic: function (users) {\n\n var user = facetest.getFacebookUser('El Diablo');\n client.post('/post/1/facebook_id/' + user.id, this.callback);\n },\n\n 'response': function (err, response) {\n // test response from `/post/1/facebook_id/`\n }\n }\n }\n }).addBatch({\n 'After test is over': {\n topic: function () {\n facetest.removeAllFacebookUsers(this.callback);\n },\n\n 'test users should be deleted': function (err, res) {\n assert.isNull(err);\n assert.equal(res.data, \"true\");\n assert.isEmpty(faceTest.getFacebookUsers());\n }\n }\n }).export(module);\n```\n\n## Running tests\n\n Before running the test suite, add your Facebook `appId` and `appSecret` to `tests/config.js` \n This is needed to create `test users` and to get a test `access_token`\n\n $ npm install\n $ make test\n\n _Tests might fail if the Facebook api has an issue._\n\n## License\n\n(The MIT License)\n\nCopyright (c) 2011 Cristiano Oliveira <ocean.cris@gmail.com>\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n", + "maintainers": [ + { + "name": "criso", + "email": "ocean.cris@gmail.com" + } + ], + "time": { + "modified": "2011-11-25T00:01:54.752Z", + "created": "2011-11-25T00:01:50.850Z", + "0.1.0": "2011-11-25T00:01:54.752Z" + }, + "author": { + "name": "Cristiano Oliveira", + "email": "ocean.cris@gmail.com", + "url": "http://twitter.com/cris_o" + }, + "repository": { + "type": "git", + "url": "git://github.com/criso/facetest.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/facetest/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "654cd1cb34c37328aa3128d021a00b530a140b9f", + "tarball": "http://registry.npmjs.org/facetest/-/facetest-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/facetest/" + }, + "factory-worker": { + "name": "factory-worker", + "description": "NodeJS Datastore-agnostic Factory pattern", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "cadwallion", + "email": "cadwallion@gmail.com" + } + ], + "time": { + "modified": "2011-11-07T23:54:27.375Z", + "created": "2011-07-07T22:12:39.253Z", + "0.1.0": "2011-07-07T22:12:39.827Z", + "0.2.0": "2011-07-08T13:14:26.151Z", + "0.2.1": "2011-07-08T13:19:14.720Z", + "0.2.2": "2011-11-07T23:54:27.375Z" + }, + "author": { + "name": "Andrew Nordman", + "email": "anordman@agoragames.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/agoragames/factory-worker.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/factory-worker/0.1.0", + "0.2.0": "http://registry.npmjs.org/factory-worker/0.2.0", + "0.2.1": "http://registry.npmjs.org/factory-worker/0.2.1", + "0.2.2": "http://registry.npmjs.org/factory-worker/0.2.2" + }, + "dist": { + "0.1.0": { + "shasum": "63ff9d6c6ef443ecee9a3f63e8a6f16bf45b00b6", + "tarball": "http://registry.npmjs.org/factory-worker/-/factory-worker-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "cb7ca2a333095ad510e91e0646f0507769ffbcc6", + "tarball": "http://registry.npmjs.org/factory-worker/-/factory-worker-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "ec6f68fc33291047faa4425a37b458392c722836", + "tarball": "http://registry.npmjs.org/factory-worker/-/factory-worker-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "a2966482a9affe436c1e8a5495229b78d53c7872", + "tarball": "http://registry.npmjs.org/factory-worker/-/factory-worker-0.2.2.tgz" + } + }, + "keywords": [ + "factory", + "datastore", + "testing" + ], + "url": "http://registry.npmjs.org/factory-worker/" + }, + "failif": { + "name": "failif", + "description": "Respect for the uncaught exception handler.", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "sleeplessinc", + "email": "joe@sleepless.com" + } + ], + "time": { + "modified": "2011-11-17T01:28:50.753Z", + "created": "2011-11-17T01:28:49.160Z", + "1.0.0": "2011-11-17T01:28:50.753Z" + }, + "author": { + "name": "Joe Hitchens", + "email": "joe@sleepless.com", + "url": "sleepless.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/sleeplessinc/failif.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/failif/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "e519abe6ecf98285be5a9f44aa89c0f7c917d9f7", + "tarball": "http://registry.npmjs.org/failif/-/failif-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/failif/" + }, + "fake": { + "name": "fake", + "description": "Test your JavaScript with focused programmer tests. Fake depedencies.", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "felixge", + "email": "felix@debuggable.com" + } + ], + "time": { + "modified": "2011-05-28T15:45:25.202Z", + "created": "2011-01-29T10:42:05.164Z", + "0.0.1": "2011-01-29T10:42:05.636Z", + "0.0.3": "2011-03-08T14:06:05.948Z", + "0.0.5": "2011-03-10T09:49:01.791Z", + "0.0.6": "2011-04-03T09:44:58.581Z", + "0.0.7": "2011-04-03T10:36:07.566Z", + "0.0.8": "2011-04-03T10:55:47.922Z", + "0.0.9": "2011-04-03T15:15:38.156Z", + "0.0.10": "2011-04-03T15:19:25.624Z", + "0.0.11": "2011-04-03T15:22:20.050Z", + "0.0.12": "2011-04-03T15:31:25.909Z", + "0.2.0": "2011-05-05T21:24:44.162Z", + "0.2.1": "2011-05-28T15:45:25.202Z" + }, + "author": { + "name": "Felix Geisendörfer", + "email": "felix@debuggable.com", + "url": "http://debuggable.com/" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/fake/0.0.1", + "0.0.3": "http://registry.npmjs.org/fake/0.0.3", + "0.0.5": "http://registry.npmjs.org/fake/0.0.5", + "0.0.6": "http://registry.npmjs.org/fake/0.0.6", + "0.0.7": "http://registry.npmjs.org/fake/0.0.7", + "0.0.8": "http://registry.npmjs.org/fake/0.0.8", + "0.0.9": "http://registry.npmjs.org/fake/0.0.9", + "0.0.10": "http://registry.npmjs.org/fake/0.0.10", + "0.0.11": "http://registry.npmjs.org/fake/0.0.11", + "0.0.12": "http://registry.npmjs.org/fake/0.0.12", + "0.2.0": "http://registry.npmjs.org/fake/0.2.0", + "0.2.1": "http://registry.npmjs.org/fake/0.2.1" + }, + "dist": { + "0.0.1": { + "shasum": "faa94b417bba4e271534af7f25ec77982061167a", + "tarball": "http://registry.npmjs.org/fake/-/fake-0.0.1.tgz" + }, + "0.0.3": { + "shasum": "febcb5d89b392187fd66f78124be7e9082cb8955", + "tarball": "http://registry.npmjs.org/fake/-/fake-0.0.3.tgz" + }, + "0.0.5": { + "shasum": "1bdc270b06cb13bfa509871c79a1d7ca5cdac943", + "tarball": "http://registry.npmjs.org/fake/-/fake-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "c5eaeb4a18053bb26dab7f38d503332107decf28", + "tarball": "http://registry.npmjs.org/fake/-/fake-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "1f2c9f4ab0e0ba35ea7e77d70ea23557cd784e26", + "tarball": "http://registry.npmjs.org/fake/-/fake-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "d8f1f17ce968ccd10912ea11d045be3d461050c3", + "tarball": "http://registry.npmjs.org/fake/-/fake-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "be74822ee744da560a3118523ad05483da806e1e", + "tarball": "http://registry.npmjs.org/fake/-/fake-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "480ca109f5639144f3d680a2ca147939e5b3182f", + "tarball": "http://registry.npmjs.org/fake/-/fake-0.0.10.tgz" + }, + "0.0.11": { + "shasum": "8739324a2adb9b2428df304085e0e13acd0c761b", + "tarball": "http://registry.npmjs.org/fake/-/fake-0.0.11.tgz" + }, + "0.0.12": { + "shasum": "7b1539634451da7bcd5b714fc25aca4602bea754", + "tarball": "http://registry.npmjs.org/fake/-/fake-0.0.12.tgz" + }, + "0.2.0": { + "shasum": "fa123273972b500e3549b5c9efb4b2d1a1a9bdd4", + "tarball": "http://registry.npmjs.org/fake/-/fake-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "fef33f3d45bbd4f9bd0d7457507f1cb30aac43ca", + "tarball": "http://registry.npmjs.org/fake/-/fake-0.2.1.tgz" + } + }, + "url": "http://registry.npmjs.org/fake/" + }, + "fake-queue": { + "name": "fake-queue", + "description": "Simple in-memory queue", + "dist-tags": { + "latest": "1.0.3" + }, + "maintainers": [ + { + "name": "pgte", + "email": "pedro.teixeira@gmail.com" + } + ], + "time": { + "modified": "2011-10-11T16:58:57.498Z", + "created": "2011-09-10T22:11:13.356Z", + "1.0.0": "2011-09-10T22:11:15.163Z", + "1.0.1": "2011-09-10T22:18:44.779Z", + "1.0.2": "2011-09-10T22:43:38.983Z", + "1.0.3": "2011-10-11T16:58:57.498Z" + }, + "author": { + "name": "Pedro Teixeira", + "email": "pedro.teixeira@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/pgte/fake-queue.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/fake-queue/1.0.0", + "1.0.1": "http://registry.npmjs.org/fake-queue/1.0.1", + "1.0.2": "http://registry.npmjs.org/fake-queue/1.0.2", + "1.0.3": "http://registry.npmjs.org/fake-queue/1.0.3" + }, + "dist": { + "1.0.0": { + "shasum": "4cb5fe74ea0a60390e4590704f86ee37ba1dbafb", + "tarball": "http://registry.npmjs.org/fake-queue/-/fake-queue-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "7d9b147c38968cc2a850eb177dd3b55954a073b3", + "tarball": "http://registry.npmjs.org/fake-queue/-/fake-queue-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "bf166d8bbe5dffb7abb19166d98b63cdfad6d932", + "tarball": "http://registry.npmjs.org/fake-queue/-/fake-queue-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "36358481dfbc675808bce0d3389e91fb6e69e5c5", + "tarball": "http://registry.npmjs.org/fake-queue/-/fake-queue-1.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/fake-queue/" + }, + "fakedb": { + "name": "fakedb", + "description": "FakeDB is a tiny document storage module that can be used for small nodejs applications.", + "dist-tags": { + "latest": "1.3.4" + }, + "maintainers": [ + { + "name": "noodlehaus", + "email": "jesus.domingo@gmail.com" + } + ], + "time": { + "modified": "2011-11-07T16:26:55.338Z", + "created": "2011-08-30T14:11:42.662Z", + "0.0.2": "2011-08-30T14:11:43.879Z", + "0.0.3": "2011-08-30T17:13:05.118Z", + "0.0.4": "2011-08-30T17:35:04.241Z", + "0.0.5": "2011-09-01T08:39:15.180Z", + "0.0.6": "2011-09-02T17:19:52.664Z", + "1.0.0": "2011-09-06T17:26:59.063Z", + "1.1.0": "2011-09-07T12:37:49.898Z", + "1.2.0": "2011-09-07T14:35:01.185Z", + "1.2.1": "2011-09-07T17:02:11.031Z", + "1.3.0": "2011-09-08T06:47:56.901Z", + "1.3.1": "2011-09-11T14:56:26.094Z", + "1.3.2": "2011-10-16T11:36:10.011Z", + "1.3.4": "2011-11-07T16:26:55.338Z" + }, + "author": { + "name": "Jesus A. Domingo", + "email": "jesus.domingo@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/noodlehaus/node-fakedb.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/fakedb/0.0.2", + "0.0.3": "http://registry.npmjs.org/fakedb/0.0.3", + "0.0.4": "http://registry.npmjs.org/fakedb/0.0.4", + "0.0.5": "http://registry.npmjs.org/fakedb/0.0.5", + "0.0.6": "http://registry.npmjs.org/fakedb/0.0.6", + "1.0.0": "http://registry.npmjs.org/fakedb/1.0.0", + "1.1.0": "http://registry.npmjs.org/fakedb/1.1.0", + "1.2.0": "http://registry.npmjs.org/fakedb/1.2.0", + "1.2.1": "http://registry.npmjs.org/fakedb/1.2.1", + "1.3.0": "http://registry.npmjs.org/fakedb/1.3.0", + "1.3.1": "http://registry.npmjs.org/fakedb/1.3.1", + "1.3.2": "http://registry.npmjs.org/fakedb/1.3.2", + "1.3.4": "http://registry.npmjs.org/fakedb/1.3.4" + }, + "dist": { + "0.0.2": { + "shasum": "0fd0cadd6e1017145432e071169402574657852a", + "tarball": "http://registry.npmjs.org/fakedb/-/fakedb-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "b70f6848f05fa5b95ff4742b9ba5c0148f8e0911", + "tarball": "http://registry.npmjs.org/fakedb/-/fakedb-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "bfc7e1cd51e618f529cfb0b4665e38f1fae602d7", + "tarball": "http://registry.npmjs.org/fakedb/-/fakedb-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "a334ab5a8fb6dbeacdfc77f39ea60d0e8999fcee", + "tarball": "http://registry.npmjs.org/fakedb/-/fakedb-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "665de801418053897495bc23f9251d93e8630f59", + "tarball": "http://registry.npmjs.org/fakedb/-/fakedb-0.0.6.tgz" + }, + "1.0.0": { + "shasum": "bc35de89e9905a684292e4359af0de66793d5894", + "tarball": "http://registry.npmjs.org/fakedb/-/fakedb-1.0.0.tgz" + }, + "1.1.0": { + "shasum": "c2cf6fb8a6d2f25fc29deb49dda3d1a161419322", + "tarball": "http://registry.npmjs.org/fakedb/-/fakedb-1.1.0.tgz" + }, + "1.2.0": { + "shasum": "e3496be97150e48708c432c7b7bc7d476987c0a2", + "tarball": "http://registry.npmjs.org/fakedb/-/fakedb-1.2.0.tgz" + }, + "1.2.1": { + "shasum": "2d29043232cbc41a32dd138b2a7e5a6630930d77", + "tarball": "http://registry.npmjs.org/fakedb/-/fakedb-1.2.1.tgz" + }, + "1.3.0": { + "shasum": "67e5cf6502b470e3dfca620efebea98f4ff2d344", + "tarball": "http://registry.npmjs.org/fakedb/-/fakedb-1.3.0.tgz" + }, + "1.3.1": { + "shasum": "0debc0cd0ddf88de0e92e2a3937c56af1f86f484", + "tarball": "http://registry.npmjs.org/fakedb/-/fakedb-1.3.1.tgz" + }, + "1.3.2": { + "shasum": "662ee42047f73147643b0066af6b6a3cca0e9368", + "tarball": "http://registry.npmjs.org/fakedb/-/fakedb-1.3.2.tgz" + }, + "1.3.4": { + "shasum": "fa1f6fcdad2ebf2cb3adea04d768fd2e09e79ea8", + "tarball": "http://registry.npmjs.org/fakedb/-/fakedb-1.3.4.tgz" + } + }, + "keywords": [ + "kvs", + "nosql", + "key", + "value", + "store" + ], + "url": "http://registry.npmjs.org/fakedb/" + }, + "Faker": { + "name": "Faker", + "description": "Generate massive amounts of fake contextual data", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "marak", + "email": "marak.squires@gmail.com" + } + ], + "author": { + "name": "Marak Squires", + "email": "marak.squires@gmail.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/Marak/Faker.js.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/Faker/0.1.1", + "0.1.3": "http://registry.npmjs.org/Faker/0.1.3" + }, + "dist": { + "0.1.1": { + "tarball": "http://packages:5984/Faker/-/Faker-0.1.1.tgz" + }, + "0.1.3": { + "tarball": "http://packages:5984/Faker/-/Faker-0.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/Faker/" + }, + "fakeweb": { + "name": "fakeweb", + "description": "HTTP request interception, inspired by chrisk/fakeweb", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "thegreatape", + "email": "Thomas.Mayfield@gmail.com" + } + ], + "time": { + "modified": "2011-05-16T19:53:10.583Z", + "created": "2011-05-16T19:53:10.433Z", + "0.0.1": "2011-05-16T19:53:10.583Z" + }, + "author": { + "name": "Thomas Mayfield", + "email": "Thomas.Mayfield@gmail.com", + "url": "http://zen-hacking.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/thegreatape/node-fakeweb.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/fakeweb/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "5896becd33910f6f4ba6f58fb8d7098e2467beda", + "tarball": "http://registry.npmjs.org/fakeweb/-/fakeweb-0.0.1.tgz" + } + }, + "keywords": [ + "testing", + "http interception", + "mocking" + ], + "url": "http://registry.npmjs.org/fakeweb/" + }, + "fanfeedr": { + "name": "fanfeedr", + "description": "fanfeedr API for Node.js", + "dist-tags": { + "latest": "0.7.0" + }, + "maintainers": [ + { + "name": "podviaznikov", + "email": "podviaznikov@gmail.com" + } + ], + "time": { + "modified": "2011-07-13T13:52:07.149Z", + "created": "2011-07-05T18:36:46.605Z", + "0.1.5": "2011-07-05T18:36:47.602Z", + "0.1.6": "2011-07-05T18:41:16.783Z", + "0.1.7": "2011-07-05T20:33:09.418Z", + "0.2.0": "2011-07-05T20:39:55.925Z", + "0.5.0": "2011-07-08T18:04:36.117Z", + "0.7.0": "2011-07-13T13:52:07.149Z" + }, + "author": { + "name": "Anton Podviaznikov", + "email": "podviaznikov@gmail.com" + }, + "versions": { + "0.1.5": "http://registry.npmjs.org/fanfeedr/0.1.5", + "0.1.6": "http://registry.npmjs.org/fanfeedr/0.1.6", + "0.1.7": "http://registry.npmjs.org/fanfeedr/0.1.7", + "0.2.0": "http://registry.npmjs.org/fanfeedr/0.2.0", + "0.5.0": "http://registry.npmjs.org/fanfeedr/0.5.0", + "0.7.0": "http://registry.npmjs.org/fanfeedr/0.7.0" + }, + "dist": { + "0.1.5": { + "shasum": "81840ade85f22ef763e8143b91c5dc32b4fca4fb", + "tarball": "http://registry.npmjs.org/fanfeedr/-/fanfeedr-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "0051d06a59734636d102f1178d85c80d1fc9bbf3", + "tarball": "http://registry.npmjs.org/fanfeedr/-/fanfeedr-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "2e29742a60622633bbce461717f0b73a2d29112c", + "tarball": "http://registry.npmjs.org/fanfeedr/-/fanfeedr-0.1.7.tgz" + }, + "0.2.0": { + "shasum": "91866b6026fe6af652325cacdcd4388a021fde8d", + "tarball": "http://registry.npmjs.org/fanfeedr/-/fanfeedr-0.2.0.tgz" + }, + "0.5.0": { + "shasum": "e9678011234543b3e81c170c9099cfa92bd2d684", + "tarball": "http://registry.npmjs.org/fanfeedr/-/fanfeedr-0.5.0.tgz" + }, + "0.7.0": { + "shasum": "2ea952f60c77ff26925797d84ab50b90dc1abf87", + "tarball": "http://registry.npmjs.org/fanfeedr/-/fanfeedr-0.7.0.tgz" + } + }, + "keywords": [ + "fanfeedr", + "wrapper", + "api", + "api-client", + "fanfeedr.com" + ], + "url": "http://registry.npmjs.org/fanfeedr/" + }, + "fanout": { + "name": "fanout", + "description": "A simple fanout pubsub message server for node.js", + "dist-tags": { + "latest": "0.3.3" + }, + "maintainers": [ + { + "name": "c0diq", + "email": "c0diq@yahoo.com" + } + ], + "time": { + "modified": "2011-11-10T04:25:45.320Z", + "created": "2011-11-05T06:49:59.892Z", + "0.3.1": "2011-11-05T06:50:01.128Z", + "0.3.2": "2011-11-06T19:29:20.260Z", + "0.3.3": "2011-11-10T04:25:45.320Z" + }, + "author": { + "name": "Chad Etzel", + "email": "chad@jazzychad.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/c0diq/fanout.node.js.git" + }, + "versions": { + "0.3.1": "http://registry.npmjs.org/fanout/0.3.1", + "0.3.2": "http://registry.npmjs.org/fanout/0.3.2", + "0.3.3": "http://registry.npmjs.org/fanout/0.3.3" + }, + "dist": { + "0.3.1": { + "shasum": "8de3f00916f75cdce9a40b6ba0b6f0e51960544e", + "tarball": "http://registry.npmjs.org/fanout/-/fanout-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "597529998df148aa8a2bc5243bf1024ebfcf1022", + "tarball": "http://registry.npmjs.org/fanout/-/fanout-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "2b55920911ec4cdaabf59a97f7d040f05fb21e7b", + "tarball": "http://registry.npmjs.org/fanout/-/fanout-0.3.3.tgz" + } + }, + "url": "http://registry.npmjs.org/fanout/" + }, + "fantomex": { + "name": "fantomex", + "description": "Small persistent queueing library", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "technoweenie", + "email": "technoweenie@gmail.com" + } + ], + "time": { + "modified": "2011-05-27T07:58:54.687Z", + "created": "2011-05-27T07:58:54.078Z", + "0.0.1": "2011-05-27T07:58:54.687Z" + }, + "author": { + "name": "technoweenie" + }, + "repository": { + "type": "git", + "url": "git://github.com/technoweenie/fantomex.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/fantomex/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "921c17b60b9057ad8b7b6d9c829795a04796c58b", + "tarball": "http://registry.npmjs.org/fantomex/-/fantomex-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/fantomex/" + }, + "far": { + "name": "far", + "description": "Find and run node.js files.", + "dist-tags": { + "latest": "0.0.7" + }, + "maintainers": [ + { + "name": "felixge", + "email": "felix@debuggable.com" + } + ], + "time": { + "modified": "2011-08-06T10:42:12.501Z", + "created": "2011-04-24T15:37:15.877Z", + "0.0.0": "2011-04-24T15:37:16.514Z", + "0.0.1": "2011-04-28T23:51:07.960Z", + "0.0.3": "2011-06-26T12:38:11.333Z", + "0.0.4": "2011-07-14T07:54:57.501Z", + "0.0.5": "2011-08-01T12:28:28.910Z", + "0.0.6": "2011-08-01T12:30:37.986Z", + "0.0.7": "2011-08-06T10:42:12.501Z" + }, + "author": { + "name": "Felix Geisendörfer", + "email": "felix@debuggable.com", + "url": "http://debuggable.com/" + }, + "repository": { + "type": "git", + "url": "git@github.com:felixge/node-far.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/far/0.0.0", + "0.0.1": "http://registry.npmjs.org/far/0.0.1", + "0.0.3": "http://registry.npmjs.org/far/0.0.3", + "0.0.4": "http://registry.npmjs.org/far/0.0.4", + "0.0.5": "http://registry.npmjs.org/far/0.0.5", + "0.0.6": "http://registry.npmjs.org/far/0.0.6", + "0.0.7": "http://registry.npmjs.org/far/0.0.7" + }, + "dist": { + "0.0.0": { + "shasum": "70f61af90ce682802bfd467c2f9006e47a26ff8b", + "tarball": "http://registry.npmjs.org/far/-/far-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "8b2c71a638b02d4302a9cba64368fcc159746b0f", + "tarball": "http://registry.npmjs.org/far/-/far-0.0.1.tgz" + }, + "0.0.3": { + "shasum": "67e65d0f55c6c65beab751d21e16520484999a9c", + "tarball": "http://registry.npmjs.org/far/-/far-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "4fa6386d6d2eed31a0ab73e808599e04ef93d146", + "tarball": "http://registry.npmjs.org/far/-/far-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "ba1f3ba8f2d3a353d93fd28221f6be49ed2c3106", + "tarball": "http://registry.npmjs.org/far/-/far-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "f3492cb799cd9a6241e174c108da05f9a4a54f49", + "tarball": "http://registry.npmjs.org/far/-/far-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "01c1fd362bcd26ce9cf161af3938aa34619f79a7", + "tarball": "http://registry.npmjs.org/far/-/far-0.0.7.tgz" + } + }, + "url": "http://registry.npmjs.org/far/" + }, + "farm": { + "name": "farm", + "description": "HTTP/HTTPS server farm made easy", + "dist-tags": { + "latest": "2.0.5" + }, + "maintainers": [ + { + "name": "dvv", + "email": "dronnikov@gmail.com" + } + ], + "time": { + "modified": "2011-09-22T05:54:41.073Z", + "created": "2011-07-08T11:05:46.209Z", + "1.0.0": "2011-07-08T11:05:47.314Z", + "1.0.1": "2011-07-09T09:49:21.679Z", + "2.0.0": "2011-07-12T09:00:59.351Z", + "2.0.2": "2011-07-19T04:45:09.465Z", + "2.0.3": "2011-09-12T12:30:00.585Z", + "2.0.4": "2011-09-13T20:22:22.635Z", + "2.0.5": "2011-09-22T05:54:41.073Z" + }, + "author": { + "name": "Vladimir Dronnikov", + "email": "dronnikov@gmail.com" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/farm/1.0.0", + "1.0.1": "http://registry.npmjs.org/farm/1.0.1", + "2.0.0": "http://registry.npmjs.org/farm/2.0.0", + "2.0.2": "http://registry.npmjs.org/farm/2.0.2", + "2.0.3": "http://registry.npmjs.org/farm/2.0.3", + "2.0.4": "http://registry.npmjs.org/farm/2.0.4", + "2.0.5": "http://registry.npmjs.org/farm/2.0.5" + }, + "dist": { + "1.0.0": { + "shasum": "ef803e6b1ad45adc46988dc443a824c5f83b6b89", + "tarball": "http://registry.npmjs.org/farm/-/farm-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "430af25cd9fcb68fb8519c958ea8f50aaa0a3376", + "tarball": "http://registry.npmjs.org/farm/-/farm-1.0.1.tgz" + }, + "2.0.0": { + "shasum": "d15c70b89ba132f94f547772bb2e647cf9156521", + "tarball": "http://registry.npmjs.org/farm/-/farm-2.0.0.tgz" + }, + "2.0.2": { + "shasum": "5ab0b0184b105a5bf83ee0f9ab21bde100db3b60", + "tarball": "http://registry.npmjs.org/farm/-/farm-2.0.2.tgz" + }, + "2.0.3": { + "shasum": "1fe96c51bb3ccafb97cfb19cd0e5f8e630f84f4c", + "tarball": "http://registry.npmjs.org/farm/-/farm-2.0.3.tgz" + }, + "2.0.4": { + "shasum": "63dd7c24372eb267a512bbec1124302c0e6102e9", + "tarball": "http://registry.npmjs.org/farm/-/farm-2.0.4.tgz" + }, + "2.0.5": { + "shasum": "be5c8e6fdbd5f5e8ca8f5c01502775224ca4c8b4", + "tarball": "http://registry.npmjs.org/farm/-/farm-2.0.5.tgz" + } + }, + "keywords": [ + "websocket", + "socket.io", + "scale", + "multiple", + "haproxy", + "stunnel", + "stud" + ], + "url": "http://registry.npmjs.org/farm/" + }, + "fast-detective": { + "name": "fast-detective", + "description": "Find all calls to require() no matter how crazily nested using a proper walk of the AST", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "maccman", + "email": "maccman@gmail.com" + } + ], + "time": { + "modified": "2011-08-03T20:18:23.671Z", + "created": "2011-08-03T20:14:33.520Z", + "0.0.1": "2011-08-03T20:14:36.409Z", + "0.0.2": "2011-08-03T20:18:23.671Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-detective.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/fast-detective/0.0.1", + "0.0.2": "http://registry.npmjs.org/fast-detective/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "338340fabb3d9a67bef8ab06c68e44e6dd489229", + "tarball": "http://registry.npmjs.org/fast-detective/-/fast-detective-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "14ce29055766d4cffa6ed5494b236c1b901aa379", + "tarball": "http://registry.npmjs.org/fast-detective/-/fast-detective-0.0.2.tgz" + } + }, + "keywords": [ + "require", + "source", + "analyze", + "ast" + ], + "url": "http://registry.npmjs.org/fast-detective/" + }, + "fast-list": { + "name": "fast-list", + "description": "A fast linked list (good for queues, stacks, etc.)", + "dist-tags": { + "latest": "1.0.1" + }, + "readme": "# The Problem\n\nYou've got some thing where you need to push a bunch of stuff into a\nqueue and then shift it out. Or, maybe it's a stack, and you're just\npushing and popping it.\n\nArrays work for this, but are a bit costly performance-wise.\n\n# The Solution\n\nA linked-list implementation that takes advantage of what v8 is good at:\ncreating objects with a known shape.\n\nThis is faster for this use case. How much faster? About 50%.\n\n $ node bench.js\n benchmarking /Users/isaacs/dev-src/js/fast-list/bench.js\n Please be patient.\n { node: '0.6.2-pre',\n v8: '3.6.6.8',\n ares: '1.7.5-DEV',\n uv: '0.1',\n openssl: '0.9.8l' }\n Scores: (bigger is better)\n\n new FastList()\n Raw:\n > 22556.39097744361\n > 23054.755043227666\n > 22770.398481973436\n > 23414.634146341465\n > 23099.133782483157\n Average (mean) 22979.062486293868\n\n []\n Raw:\n > 12195.121951219513\n > 12184.508268059182\n > 12173.91304347826\n > 12216.404886561955\n > 12184.508268059182\n Average (mean) 12190.891283475617\n\n new Array()\n Raw:\n > 12131.715771230503\n > 12184.508268059182\n > 12216.404886561955\n > 12195.121951219513\n > 11940.298507462687\n Average (mean) 12133.609876906768\n\n Winner: new FastList()\n Compared with next highest ([]), it's:\n 46.95% faster\n 1.88 times as fast\n 0.28 order(s) of magnitude faster\n\n Compared with the slowest (new Array()), it's:\n 47.2% faster\n 1.89 times as fast\n 0.28 order(s) of magnitude faster\n\nThis lacks a lot of features that arrays have:\n\n1. You can't specify the size at the outset.\n2. It's not indexable.\n3. There's no join, concat, etc.\n\nIf any of this matters for your use case, you're probably better off\nusing an Array object.\n\n## Installing\n\n```\nnpm install fast-list\n```\n\n## API\n\n```javascript\nvar FastList = require(\"fast-list\")\nvar list = new FastList()\nlist.push(\"foo\")\nlist.unshift(\"bar\")\nlist.push(\"baz\")\nconsole.log(list.length) // 2\nconsole.log(list.pop()) // baz\nconsole.log(list.shift()) // bar\nconsole.log(list.shift()) // foo\n```\n\n### Methods\n\n* `push`: Just like Array.push, but only can take a single entry\n* `pop`: Just like Array.pop\n* `shift`: Just like Array.shift\n* `unshift`: Just like Array.unshift, but only can take a single entry\n* `drop`: Drop all entries\n* `item(n)`: Retrieve the nth item in the list. This involves a walk\n every time. It's very slow. If you find yourself using this,\n consider using a normal Array instead.\n* `slice(start, end)`: Retrieve an array of the items at this position.\n This involves a walk every time. It's very slow. If you find\n yourself using this, consider using a normal Array instead.\n", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "time": { + "modified": "2011-11-23T00:45:44.767Z", + "created": "2011-11-22T02:34:22.617Z", + "1.0.0": "2011-11-22T02:34:23.810Z", + "1.0.1": "2011-11-23T00:45:44.767Z" + }, + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me/" + }, + "repository": { + "type": "git", + "url": "git://github.com/isaacs/fast-list.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/fast-list/1.0.0", + "1.0.1": "http://registry.npmjs.org/fast-list/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "df82a1536280469e185a7592fd72cbbbff32189b", + "tarball": "http://registry.npmjs.org/fast-list/-/fast-list-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "24cc58fbe2900d1985fe38a6f7e9c9fb9cb8d309", + "tarball": "http://registry.npmjs.org/fast-list/-/fast-list-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/fast-list/" + }, + "fast-msgpack-rpc": { + "name": "fast-msgpack-rpc", + "description": "A non-compatible variant of the Msgpack-RPC protocol specification for node.js", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "maxtaco", + "email": "max@okcupid.com" + } + ], + "time": { + "modified": "2011-12-09T21:29:38.649Z", + "created": "2011-08-01T21:01:25.944Z", + "0.0.1": "2011-08-01T21:01:26.104Z", + "0.0.2": "2011-08-01T21:03:08.684Z", + "0.0.3": "2011-08-02T19:54:56.419Z", + "0.0.4": "2011-11-29T14:12:13.066Z", + "0.0.5": "2011-12-01T17:53:27.799Z", + "0.0.6": "2011-12-09T21:29:38.649Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/maxtaco/node-fast-msgpack-rpc.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/fast-msgpack-rpc/0.0.1", + "0.0.2": "http://registry.npmjs.org/fast-msgpack-rpc/0.0.2", + "0.0.3": "http://registry.npmjs.org/fast-msgpack-rpc/0.0.3", + "0.0.4": "http://registry.npmjs.org/fast-msgpack-rpc/0.0.4", + "0.0.5": "http://registry.npmjs.org/fast-msgpack-rpc/0.0.5", + "0.0.6": "http://registry.npmjs.org/fast-msgpack-rpc/0.0.6" + }, + "dist": { + "0.0.1": { + "shasum": "b9fb4ed691a3c1edba50c1f4e5959617fbe7d9c9", + "tarball": "http://registry.npmjs.org/fast-msgpack-rpc/-/fast-msgpack-rpc-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "3da6f37254bb10855ecc43f05fdd1c333c18987c", + "tarball": "http://registry.npmjs.org/fast-msgpack-rpc/-/fast-msgpack-rpc-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "9460e28168b06290eb3bdd6156c3a6950bbb887e", + "tarball": "http://registry.npmjs.org/fast-msgpack-rpc/-/fast-msgpack-rpc-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "33c58df38b8a0e4e4805f2e2a7db685fbcf87ddb", + "tarball": "http://registry.npmjs.org/fast-msgpack-rpc/-/fast-msgpack-rpc-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "aa873e70e62dba4d3e1b72b5e8cf394d84f09bfd", + "tarball": "http://registry.npmjs.org/fast-msgpack-rpc/-/fast-msgpack-rpc-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "65d56f7e87dd48f0145deaf91da50b7e52400a87", + "tarball": "http://registry.npmjs.org/fast-msgpack-rpc/-/fast-msgpack-rpc-0.0.6.tgz" + } + }, + "url": "http://registry.npmjs.org/fast-msgpack-rpc/" + }, + "fast-or-slow": { + "name": "fast-or-slow", + "description": "Are your tests fast or slow? An opinionated testing framework.", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "felixge", + "email": "felix@debuggable.com" + } + ], + "time": { + "modified": "2011-08-20T06:17:38.745Z", + "created": "2011-07-07T23:15:21.607Z", + "0.0.0": "2011-07-07T23:15:22.258Z", + "0.0.1": "2011-08-01T15:03:44.940Z", + "0.0.2": "2011-08-03T09:28:35.821Z", + "0.0.3": "2011-08-06T10:42:48.779Z", + "0.0.4": "2011-08-16T08:18:57.828Z", + "0.0.5": "2011-08-20T06:17:38.745Z" + }, + "author": { + "name": "Felix Geisendörfer", + "email": "felix@debuggable.com", + "url": "http://debuggable.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/felixge/node-fast-or-slow.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/fast-or-slow/0.0.0", + "0.0.1": "http://registry.npmjs.org/fast-or-slow/0.0.1", + "0.0.2": "http://registry.npmjs.org/fast-or-slow/0.0.2", + "0.0.3": "http://registry.npmjs.org/fast-or-slow/0.0.3", + "0.0.4": "http://registry.npmjs.org/fast-or-slow/0.0.4", + "0.0.5": "http://registry.npmjs.org/fast-or-slow/0.0.5" + }, + "dist": { + "0.0.0": { + "shasum": "e12480f5f6cd6abe7607741fb670062adf5c1a6a", + "tarball": "http://registry.npmjs.org/fast-or-slow/-/fast-or-slow-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "de78a4cd608504ae8f16d060ced899f1b0829207", + "tarball": "http://registry.npmjs.org/fast-or-slow/-/fast-or-slow-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "3e7990951ca2b6902b8a90b6277323bf6b2659bc", + "tarball": "http://registry.npmjs.org/fast-or-slow/-/fast-or-slow-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "a657394a596e4a68578ae3e355f00adbc4ab4f19", + "tarball": "http://registry.npmjs.org/fast-or-slow/-/fast-or-slow-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "02604929a92b3a3496cc5d076082611ebd99fd5e", + "tarball": "http://registry.npmjs.org/fast-or-slow/-/fast-or-slow-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "f14aef42136c3a36efa3533823179b41628e125c", + "tarball": "http://registry.npmjs.org/fast-or-slow/-/fast-or-slow-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/fast-or-slow/" + }, + "fast-stats": { + "name": "fast-stats", + "description": "Quickly calculate common statistics on lists of numbers", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "bluesmoon", + "email": "philip@bluesmoon.info" + } + ], + "time": { + "modified": "2011-08-10T03:17:19.272Z", + "created": "2011-08-10T03:17:14.245Z", + "0.0.1": "2011-08-10T03:17:19.272Z" + }, + "author": { + "name": "Philip Tellis", + "email": "philip@bluesmoon.info", + "url": "http://bluesmoon.info/" + }, + "repository": { + "type": "git", + "url": "git://github.com/bluesmoon/node-faststats.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/fast-stats/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "f056b9f3e41504d771af0892895c08133413c6a7", + "tarball": "http://registry.npmjs.org/fast-stats/-/fast-stats-0.0.1.tgz" + } + }, + "keywords": [ + "statistics", + "statistic", + "gauss", + "lognormal", + "normal", + "mean", + "median", + "mode", + "standard deviation", + "margin of error", + "iqr", + "quartile", + "inter quartile range" + ], + "url": "http://registry.npmjs.org/fast-stats/" + }, + "fastareader": { + "name": "fastareader", + "description": "FASTA DNA/RNA sequence reader", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "shinout", + "email": "shinout310@gmail.com" + } + ], + "time": { + "modified": "2011-11-28T23:48:33.141Z", + "created": "2011-10-28T07:21:48.785Z", + "0.1.0": "2011-10-28T07:21:51.604Z", + "0.1.1": "2011-10-28T08:30:35.884Z", + "0.1.2": "2011-11-28T23:48:33.141Z" + }, + "author": { + "name": "SHIN Suzuki", + "email": "shinout310@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/shinout/FASTAReader.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/fastareader/0.1.0", + "0.1.1": "http://registry.npmjs.org/fastareader/0.1.1", + "0.1.2": "http://registry.npmjs.org/fastareader/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "1e83a1de7b868d53b9b1db77b2c6f0474d9970c6", + "tarball": "http://registry.npmjs.org/fastareader/-/fastareader-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "294921150806021a42aee6e78a9ec1f86ed79d82", + "tarball": "http://registry.npmjs.org/fastareader/-/fastareader-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "c7f1a2d505ea15f90fb88fa5f00a9266f0dbb87b", + "tarball": "http://registry.npmjs.org/fastareader/-/fastareader-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/fastareader/" + }, + "fastcgi-stream": { + "name": "fastcgi-stream", + "description": "Fast FastCGI Stream wrapper for reading/writing FCGI records.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "samcday", + "email": "sam.c.day@gmail.com" + } + ], + "time": { + "modified": "2011-03-24T07:05:29.251Z", + "created": "2011-02-23T01:45:00.174Z", + "0.1.0": "2011-02-23T01:45:01.184Z", + "0.1.1": "2011-03-24T07:05:29.251Z" + }, + "author": { + "name": "Sam Day", + "email": "sam.c.day@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/samcday/node-fastcgi-stream.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/fastcgi-stream/0.1.0", + "0.1.1": "http://registry.npmjs.org/fastcgi-stream/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "125abce4440f1563b76ea36ddd6a438bac232261", + "tarball": "http://registry.npmjs.org/fastcgi-stream/-/fastcgi-stream-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "9cff386a3a886ceaad5ab60a01139b5c4667d280", + "tarball": "http://registry.npmjs.org/fastcgi-stream/-/fastcgi-stream-0.1.1.tgz" + } + }, + "keywords": "fcgi, fastcgi", + "url": "http://registry.npmjs.org/fastcgi-stream/" + }, + "FastLegS": { + "name": "FastLegS", + "description": "PostgreSQL ORM on top of node-postgres", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "didit-tech", + "email": "development@didit.com" + } + ], + "time": { + "modified": "2011-08-26T20:59:55.441Z", + "created": "2011-03-04T15:02:44.978Z", + "0.0.2": "2011-03-04T15:02:45.127Z", + "0.0.3": "2011-03-10T04:59:09.991Z", + "0.0.4": "2011-03-10T05:23:59.072Z", + "0.0.5": "2011-03-11T22:08:32.037Z", + "0.0.6": "2011-04-29T20:47:52.199Z", + "0.0.7": "2011-04-29T21:43:37.444Z", + "0.0.8": "2011-05-09T14:23:42.651Z", + "0.0.9": "2011-05-17T19:11:14.867Z", + "0.1.0": "2011-07-25T14:48:14.039Z", + "0.1.1": "2011-08-25T16:01:15.423Z", + "0.1.2": "2011-08-26T18:45:08.865Z" + }, + "author": { + "name": "Didit Tech", + "email": "development@didit.com" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/FastLegS/0.0.2", + "0.0.3": "http://registry.npmjs.org/FastLegS/0.0.3", + "0.0.4": "http://registry.npmjs.org/FastLegS/0.0.4", + "0.0.5": "http://registry.npmjs.org/FastLegS/0.0.5", + "0.0.6": "http://registry.npmjs.org/FastLegS/0.0.6", + "0.0.7": "http://registry.npmjs.org/FastLegS/0.0.7", + "0.0.8": "http://registry.npmjs.org/FastLegS/0.0.8", + "0.0.9": "http://registry.npmjs.org/FastLegS/0.0.9", + "0.1.0": "http://registry.npmjs.org/FastLegS/0.1.0", + "0.1.1": "http://registry.npmjs.org/FastLegS/0.1.1", + "0.1.2": "http://registry.npmjs.org/FastLegS/0.1.2" + }, + "dist": { + "0.0.2": { + "tarball": "http://registry.npmjs.org/FastLegS/-/FastLegS-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "55c553d3f037a8c3173d2804b3f15c8427b2e070", + "tarball": "http://registry.npmjs.org/FastLegS/-/FastLegS-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "0c0d579e143bb843fa6afe44f82dccecb15193d8", + "tarball": "http://registry.npmjs.org/FastLegS/-/FastLegS-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "298302173c19857985bbd2515ee6bbfc25c1830f", + "tarball": "http://registry.npmjs.org/FastLegS/-/FastLegS-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "b1bc9add0ad377ef939ab4b1b938c01ecde20440", + "tarball": "http://registry.npmjs.org/FastLegS/-/FastLegS-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "5f057c904ed701540cc6e4ad278669c6230c7bf1", + "tarball": "http://registry.npmjs.org/FastLegS/-/FastLegS-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "549c5ec9c1b4dc38af20d3be585cdf2387c36418", + "tarball": "http://registry.npmjs.org/FastLegS/-/FastLegS-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "0b0073d2d393453002dddae356dae3b59427a0ec", + "tarball": "http://registry.npmjs.org/FastLegS/-/FastLegS-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "89c96c3f0d6e00423f7415da03eb4d7624f9d6db", + "tarball": "http://registry.npmjs.org/FastLegS/-/FastLegS-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "88a096ebe4b67fed830ac1858457a7a6b1e9617c", + "tarball": "http://registry.npmjs.org/FastLegS/-/FastLegS-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "a32a28c055863fb76b11cd33ba5f1b54779a71a1", + "tarball": "http://registry.npmjs.org/FastLegS/-/FastLegS-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/FastLegS/" + }, + "faye": { + "name": "faye", + "description": "Simple pub/sub messaging for the web", + "dist-tags": { + "latest": "0.7.0" + }, + "maintainers": [ + { + "name": "jcoglan", + "email": "jcoglan@gmail.com" + } + ], + "author": { + "name": "James Coglan", + "email": "jcoglan@gmail.com", + "url": "http://jcoglan.com/" + }, + "time": { + "modified": "2011-12-05T23:27:32.056Z", + "created": "2010-12-19T15:04:47.790Z", + "0.5.0": "2010-12-19T15:04:47.790Z", + "0.5.1": "2010-12-19T15:04:47.790Z", + "0.5.2": "2010-12-19T15:04:47.790Z", + "0.5.3": "2010-12-19T15:04:47.790Z", + "0.5.4": "2010-12-19T15:04:47.790Z", + "0.5.5": "2011-01-16T13:11:51.855Z", + "0.6.0": "2011-05-21T20:10:53.562Z", + "0.6.1": "2011-06-06T20:05:22.738Z", + "0.6.2": "2011-06-19T19:00:10.428Z", + "0.6.3": "2011-07-10T19:18:10.192Z", + "0.6.4": "2011-08-17T23:41:39.941Z", + "0.6.5": "2011-08-29T19:28:44.658Z", + "0.6.6": "2011-09-12T19:02:07.652Z", + "0.6.7": "2011-10-20T20:03:31.952Z", + "0.7.0": "2011-11-22T23:49:00.969Z" + }, + "users": { + "magnars": true + }, + "versions": { + "0.5.0": "http://registry.npmjs.org/faye/0.5.0", + "0.5.1": "http://registry.npmjs.org/faye/0.5.1", + "0.5.2": "http://registry.npmjs.org/faye/0.5.2", + "0.5.3": "http://registry.npmjs.org/faye/0.5.3", + "0.5.4": "http://registry.npmjs.org/faye/0.5.4", + "0.5.5": "http://registry.npmjs.org/faye/0.5.5", + "0.6.0": "http://registry.npmjs.org/faye/0.6.0", + "0.6.1": "http://registry.npmjs.org/faye/0.6.1", + "0.6.2": "http://registry.npmjs.org/faye/0.6.2", + "0.6.3": "http://registry.npmjs.org/faye/0.6.3", + "0.6.4": "http://registry.npmjs.org/faye/0.6.4", + "0.6.5": "http://registry.npmjs.org/faye/0.6.5", + "0.6.6": "http://registry.npmjs.org/faye/0.6.6", + "0.6.7": "http://registry.npmjs.org/faye/0.6.7", + "0.7.0": "http://registry.npmjs.org/faye/0.7.0" + }, + "dist": { + "0.5.0": { + "tarball": "http://packages:5984/faye/-/faye-0.5.0.tgz" + }, + "0.5.1": { + "tarball": "http://packages:5984/faye/-/faye-0.5.1.tgz" + }, + "0.5.2": { + "tarball": "http://packages:5984/faye/-/faye-0.5.2.tgz" + }, + "0.5.3": { + "tarball": "http://packages:5984/faye/-/faye-0.5.3.tgz" + }, + "0.5.4": { + "tarball": "http://registry.npmjs.org/faye/-/faye-0.5.4.tgz" + }, + "0.5.5": { + "shasum": "0ade8839d155eb6f60fadcde86d4409c4b9440d4", + "tarball": "http://registry.npmjs.org/faye/-/faye-0.5.5.tgz" + }, + "0.6.0": { + "shasum": "510aaefc0e99ff1b997e7dd6aa4ad75e5accb1e4", + "tarball": "http://registry.npmjs.org/faye/-/faye-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "2c99ffc7047b230df5aec010f37e6d862956d36e", + "tarball": "http://registry.npmjs.org/faye/-/faye-0.6.1.tgz" + }, + "0.6.2": { + "shasum": "dd7d43d23788284b04cab3fa6eeb0cff30164615", + "tarball": "http://registry.npmjs.org/faye/-/faye-0.6.2.tgz" + }, + "0.6.3": { + "shasum": "676aa4bcec606c63dc570e8c3023b1cb7c8ba630", + "tarball": "http://registry.npmjs.org/faye/-/faye-0.6.3.tgz" + }, + "0.6.4": { + "shasum": "507daa04e592fef548adc1e069fa58296f5122ec", + "tarball": "http://registry.npmjs.org/faye/-/faye-0.6.4.tgz" + }, + "0.6.5": { + "shasum": "3fe420b6bebd57c790af4c66a988291aa57ef98f", + "tarball": "http://registry.npmjs.org/faye/-/faye-0.6.5.tgz" + }, + "0.6.6": { + "shasum": "1442461d2065f6a3dd202787b7aa9edb75004415", + "tarball": "http://registry.npmjs.org/faye/-/faye-0.6.6.tgz" + }, + "0.6.7": { + "shasum": "677089a923615196aba9dcfb41ca964f00304236", + "tarball": "http://registry.npmjs.org/faye/-/faye-0.6.7.tgz" + }, + "0.7.0": { + "shasum": "19aabfc1327dcd62483a0e8707300921357852d6", + "tarball": "http://registry.npmjs.org/faye/-/faye-0.7.0.tgz" + } + }, + "keywords": [ + "comet", + "websocket", + "pubsub", + "bayeux", + "ajax", + "http" + ], + "url": "http://registry.npmjs.org/faye/" + }, + "faye-service": { + "name": "faye-service", + "description": "Mimics support for /service/** channels in Faye.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "matjaz", + "email": "matjazl@gmail.com" + } + ], + "time": { + "modified": "2011-03-06T16:31:26.819Z", + "created": "2011-03-06T16:31:26.305Z", + "0.1.0": "2011-03-06T16:31:26.819Z" + }, + "author": { + "name": "Matjaz Lipus", + "email": "matjazl@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/faye-service/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "b70ef4a4e8344b3e7f56f83c02fc26026fa36b8f", + "tarball": "http://registry.npmjs.org/faye-service/-/faye-service-0.1.0.tgz" + } + }, + "keywords": [ + "comet", + "websocket", + "pubsub", + "bayeux", + "service" + ], + "url": "http://registry.npmjs.org/faye-service/" + }, + "faye-websocket": { + "name": "faye-websocket", + "description": "Robust general-purpose WebSocket server and client", + "dist-tags": { + "latest": "0.1.2" + }, + "readme": null, + "maintainers": [ + { + "name": "jcoglan", + "email": "jcoglan@gmail.com" + } + ], + "time": { + "modified": "2011-12-05T09:59:27.990Z", + "created": "2011-11-28T09:14:29.219Z", + "0.1.0": "2011-11-28T09:14:30.572Z", + "0.1.1": "2011-11-30T00:57:50.689Z", + "0.1.2": "2011-12-05T09:59:27.990Z" + }, + "author": { + "name": "James Coglan", + "email": "jcoglan@gmail.com", + "url": "http://jcoglan.com/" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/faye-websocket/0.1.0", + "0.1.1": "http://registry.npmjs.org/faye-websocket/0.1.1", + "0.1.2": "http://registry.npmjs.org/faye-websocket/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "696de95fac9ac2bc818f7d4f9f4f39b3bf1dad43", + "tarball": "http://registry.npmjs.org/faye-websocket/-/faye-websocket-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "aa35191903be46f35a83417f83659f2ab6c23f47", + "tarball": "http://registry.npmjs.org/faye-websocket/-/faye-websocket-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "763e4e7432b5f23b235d879c1a49a7bc91892797", + "tarball": "http://registry.npmjs.org/faye-websocket/-/faye-websocket-0.1.2.tgz" + } + }, + "keywords": [ + "websocket" + ], + "url": "http://registry.npmjs.org/faye-websocket/" + }, + "Fayer": { + "name": "Fayer", + "description": "Easily kick-off page specific Javascript.", + "dist-tags": { + "latest": "1.0.4" + }, + "maintainers": [ + { + "name": "sandeepjain", + "email": "jainsandeep88@gmail.com" + } + ], + "time": { + "modified": "2011-08-31T09:28:50.273Z", + "created": "2011-08-31T07:29:05.588Z", + "1.0.0": "2011-08-31T07:29:07.193Z", + "1.0.3": "2011-08-31T07:33:26.536Z", + "1.0.4": "2011-08-31T09:28:50.273Z" + }, + "author": { + "name": "Sandeep Jain", + "url": "http://www.jsvrocks.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/sandeepjain/fayer.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/Fayer/1.0.0", + "1.0.3": "http://registry.npmjs.org/Fayer/1.0.3", + "1.0.4": "http://registry.npmjs.org/Fayer/1.0.4" + }, + "dist": { + "1.0.0": { + "shasum": "3462fa3ba37fa9703620ba677fad41c09028cfe1", + "tarball": "http://registry.npmjs.org/Fayer/-/Fayer-1.0.0.tgz" + }, + "1.0.3": { + "shasum": "f431d5d164b7b19ded7a87c2f0eed78041c76eef", + "tarball": "http://registry.npmjs.org/Fayer/-/Fayer-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "e94ac24f261d2c8d12e57076a0e189b1fa8616a7", + "tarball": "http://registry.npmjs.org/Fayer/-/Fayer-1.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/Fayer/" + }, + "fbgraph": { + "name": "fbgraph", + "description": "a cleaner client to access the facebook graph api", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "criso", + "email": "ocean.cris@gmail.com" + } + ], + "time": { + "modified": "2011-11-05T12:46:18.821Z", + "created": "2011-10-05T23:14:29.143Z", + "0.0.2": "2011-10-05T23:14:29.850Z", + "0.1.0": "2011-10-07T22:24:12.952Z", + "0.2.0": "2011-10-09T02:14:48.855Z", + "0.2.1": "2011-11-05T12:46:18.821Z" + }, + "author": { + "name": "Cristiano Oliveira", + "email": "ocean.cris@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/criso/fbgraph.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/fbgraph/0.0.2", + "0.1.0": "http://registry.npmjs.org/fbgraph/0.1.0", + "0.2.0": "http://registry.npmjs.org/fbgraph/0.2.0", + "0.2.1": "http://registry.npmjs.org/fbgraph/0.2.1" + }, + "dist": { + "0.0.2": { + "shasum": "9c8169130a96259ac8b1f49eee52b6747f9bb118", + "tarball": "http://registry.npmjs.org/fbgraph/-/fbgraph-0.0.2.tgz" + }, + "0.1.0": { + "shasum": "1d4cae63f34a10a9a49e61fbefdf1bd771138e5d", + "tarball": "http://registry.npmjs.org/fbgraph/-/fbgraph-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "80915269cc90f9e8fd620b4aea21b196b8a35899", + "tarball": "http://registry.npmjs.org/fbgraph/-/fbgraph-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "7a4532619dadeaaa45b0aa3cad79171986124d4d", + "tarball": "http://registry.npmjs.org/fbgraph/-/fbgraph-0.2.1.tgz" + } + }, + "keywords": [ + "facebook", + "api", + "graph" + ], + "url": "http://registry.npmjs.org/fbgraph/" + }, + "fcombine": { + "name": "fcombine", + "description": "function utility library", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "raynos", + "email": "raynos2@gmail.com" + } + ], + "time": { + "modified": "2011-11-16T17:25:48.985Z", + "created": "2011-10-19T17:16:55.028Z", + "0.0.1": "2011-10-19T17:16:56.815Z", + "0.0.2": "2011-10-19T17:19:37.539Z", + "0.0.3": "2011-10-19T17:21:12.058Z", + "0.0.4": "2011-11-16T17:25:48.985Z" + }, + "author": { + "name": "Jake Verbaten", + "email": "raynos2@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Raynos/fcombine.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/fcombine/0.0.1", + "0.0.2": "http://registry.npmjs.org/fcombine/0.0.2", + "0.0.3": "http://registry.npmjs.org/fcombine/0.0.3", + "0.0.4": "http://registry.npmjs.org/fcombine/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "9520f569557f9571660a0066bf955d29419638e7", + "tarball": "http://registry.npmjs.org/fcombine/-/fcombine-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "acd1bd8df4babda6be1fb586b70bbf8322277b5d", + "tarball": "http://registry.npmjs.org/fcombine/-/fcombine-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "d07de4c3208894a6c204aef0ea6d892e25d51007", + "tarball": "http://registry.npmjs.org/fcombine/-/fcombine-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "19cf2103a857c2c906649ee900413af120323524", + "tarball": "http://registry.npmjs.org/fcombine/-/fcombine-0.0.4.tgz" + } + }, + "keywords": [ + "function", + "f", + "arch", + "utility" + ], + "url": "http://registry.npmjs.org/fcombine/" + }, + "fe-fu": { + "name": "fe-fu", + "description": "Node js Frontend Environment (Transforms .less files and minifies them, minifies javascript with uglify-js)", + "dist-tags": { + "latest": "0.1.9" + }, + "maintainers": [ + { + "name": "erikzaadi", + "email": "erik.zaadi@gmail.com" + } + ], + "time": { + "modified": "2011-05-16T09:28:39.405Z", + "created": "2011-04-21T11:59:25.983Z", + "0.1.0": "2011-04-21T11:59:27.622Z", + "0.1.1": "2011-04-21T13:36:46.483Z", + "0.1.2": "2011-04-21T15:10:05.710Z", + "0.1.3": "2011-04-27T13:27:02.361Z", + "0.1.4": "2011-04-27T13:31:19.060Z", + "0.1.5": "2011-04-30T12:15:24.407Z", + "0.1.6": "2011-04-30T13:54:46.218Z", + "0.1.7": "2011-04-30T14:18:17.025Z", + "0.1.8": "2011-05-16T06:44:28.925Z", + "0.1.9": "2011-05-16T09:28:39.405Z" + }, + "author": { + "name": "Erik Zaadi", + "email": "erik.zaadi@gmail.com", + "url": "http://erikzaadi.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/erikzaadi/node-fe-fu.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/fe-fu/0.1.0", + "0.1.1": "http://registry.npmjs.org/fe-fu/0.1.1", + "0.1.2": "http://registry.npmjs.org/fe-fu/0.1.2", + "0.1.3": "http://registry.npmjs.org/fe-fu/0.1.3", + "0.1.4": "http://registry.npmjs.org/fe-fu/0.1.4", + "0.1.5": "http://registry.npmjs.org/fe-fu/0.1.5", + "0.1.6": "http://registry.npmjs.org/fe-fu/0.1.6", + "0.1.7": "http://registry.npmjs.org/fe-fu/0.1.7", + "0.1.8": "http://registry.npmjs.org/fe-fu/0.1.8", + "0.1.9": "http://registry.npmjs.org/fe-fu/0.1.9" + }, + "dist": { + "0.1.0": { + "shasum": "343050dc7fb8d91cd6843cfce70770a5477068b0", + "tarball": "http://registry.npmjs.org/fe-fu/-/fe-fu-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "2180603f766a9ece4ee01856c894ca0772b40055", + "tarball": "http://registry.npmjs.org/fe-fu/-/fe-fu-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "dccf5bdd0e4f6c51685278ab1dd4b895f82de201", + "tarball": "http://registry.npmjs.org/fe-fu/-/fe-fu-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "91b7cef27432043d42293656c7e24eed8cf2c867", + "tarball": "http://registry.npmjs.org/fe-fu/-/fe-fu-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "d8b6bf2bd8ae997e175eda4f2aa138b85008f70f", + "tarball": "http://registry.npmjs.org/fe-fu/-/fe-fu-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "cc17f8527f7285261fb0f717349ab00e707e8047", + "tarball": "http://registry.npmjs.org/fe-fu/-/fe-fu-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "620a3dd72829bae5caf0b424fe26a383977b5a44", + "tarball": "http://registry.npmjs.org/fe-fu/-/fe-fu-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "31e61eba8ae666070993e749a3d7cafb6602bf99", + "tarball": "http://registry.npmjs.org/fe-fu/-/fe-fu-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "10ddda57157de76bf9ef884dc5a4254da91c55d4", + "tarball": "http://registry.npmjs.org/fe-fu/-/fe-fu-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "2b7d5a662d3372ff9a28d2a5e28b0f4fd7630f0a", + "tarball": "http://registry.npmjs.org/fe-fu/-/fe-fu-0.1.9.tgz" + } + }, + "url": "http://registry.npmjs.org/fe-fu/" + }, + "feather": { + "name": "feather", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "viktort", + "email": "viktor.trako@imagisys.co.uk" + } + ], + "time": { + "modified": "2011-10-29T19:37:53.920Z", + "created": "2011-10-27T23:53:03.106Z", + "0.0.1": "2011-10-28T09:13:46.847Z", + "0.0.2": "2011-10-29T19:37:53.920Z" + }, + "author": { + "name": "Viktor Trako", + "email": "viktor.trako@holidayextras.com", + "url": "http://www.holidayextras.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:holidayextras/feather.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/feather/0.0.1", + "0.0.2": "http://registry.npmjs.org/feather/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "3fccfafe339afeb1d2db73560df7417bf1436774", + "tarball": "http://registry.npmjs.org/feather/-/feather-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "d3a1c07c0dce4411a22dadab526e3cc5087d437d", + "tarball": "http://registry.npmjs.org/feather/-/feather-0.0.2.tgz" + } + }, + "keywords": [ + "logger", + "lightweight", + "Unix style logging", + "info debug warn" + ], + "url": "http://registry.npmjs.org/feather/" + }, + "feed-tables": { + "name": "feed-tables", + "description": "A lightweight parser for Google Spreadsheets tables in cells or list feed JSON data formats.", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "tomvit", + "email": "tomas@vitvar.com" + } + ], + "time": { + "modified": "2011-08-09T14:41:20.128Z", + "created": "2011-07-25T14:51:02.475Z", + "0.1.0": "2011-07-25T14:51:03.028Z", + "0.1.1": "2011-08-09T11:09:19.166Z", + "0.1.2": "2011-08-09T14:27:31.447Z", + "0.1.3": "2011-08-09T14:41:20.128Z" + }, + "author": { + "name": "Tomas Vitvar", + "email": "tomas@vitvar.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/feed-tables/0.1.0", + "0.1.1": "http://registry.npmjs.org/feed-tables/0.1.1", + "0.1.2": "http://registry.npmjs.org/feed-tables/0.1.2", + "0.1.3": "http://registry.npmjs.org/feed-tables/0.1.3" + }, + "dist": { + "0.1.0": { + "shasum": "c257b0c932a30e451b97a62218681b4c917f6a71", + "tarball": "http://registry.npmjs.org/feed-tables/-/feed-tables-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "ebc05e7bf325458f7f9c05ed1319b794d5ae0537", + "tarball": "http://registry.npmjs.org/feed-tables/-/feed-tables-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "991a1c1b43ce862680c0bd0ca9d0efda7c318b6c", + "tarball": "http://registry.npmjs.org/feed-tables/-/feed-tables-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "877cf1e4184deb1a17d0ecd476bd4da18cc2e5d5", + "tarball": "http://registry.npmjs.org/feed-tables/-/feed-tables-0.1.3.tgz" + } + }, + "keywords": [ + "Google Spreadsheets", + "server", + "client", + "Atom feed" + ], + "url": "http://registry.npmjs.org/feed-tables/" + }, + "feedBum": { + "name": "feedBum", + "description": "A port of the PHP project FeedWriter to Node.js. This is a libary to help create RSS and ATOM feeds", + "dist-tags": { + "latest": "0.9.0" + }, + "maintainers": [ + { + "name": "streets-ahead", + "email": "devs@streetsaheadllc.com" + } + ], + "time": { + "modified": "2011-07-26T22:13:22.754Z", + "created": "2011-07-26T22:13:22.340Z", + "0.9.0": "2011-07-26T22:13:22.754Z" + }, + "author": { + "name": "Streets Ahead LLC", + "email": "team@streetsaheadllc.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/streets-ahead/feedBum.git" + }, + "versions": { + "0.9.0": "http://registry.npmjs.org/feedBum/0.9.0" + }, + "dist": { + "0.9.0": { + "shasum": "d7aa6b5868e84795e0827025d06b9de8a86cdfac", + "tarball": "http://registry.npmjs.org/feedBum/-/feedBum-0.9.0.tgz" + } + }, + "keywords": [ + "RSS", + "ATOM", + "FeedWriter", + "feed", + "lazy", + "bum", + "Streets Ahead" + ], + "url": "http://registry.npmjs.org/feedBum/" + }, + "feedme": { + "name": "feedme", + "description": "RSS/Atom feed parser", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "neat", + "email": "roly426@gmail.com" + } + ], + "time": { + "modified": "2011-11-13T21:53:56.257Z", + "created": "2011-10-08T22:32:16.173Z", + "0.0.1": "2011-10-08T22:32:20.364Z", + "0.0.2": "2011-10-10T15:57:53.455Z", + "0.0.3": "2011-10-11T07:42:57.533Z", + "0.0.4": "2011-11-13T21:53:56.257Z" + }, + "author": { + "name": "Roly Fentanes", + "url": "https://github.com/fent" + }, + "repository": { + "type": "git", + "url": "git://github.com/fent/feedme.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/feedme/0.0.1", + "0.0.2": "http://registry.npmjs.org/feedme/0.0.2", + "0.0.3": "http://registry.npmjs.org/feedme/0.0.3", + "0.0.4": "http://registry.npmjs.org/feedme/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "d2c2a5b2a86fb00c4aeda808353af4e8e76bee02", + "tarball": "http://registry.npmjs.org/feedme/-/feedme-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "983f01adcaaeab3ce3a04fd351fdb3bb42908f8c", + "tarball": "http://registry.npmjs.org/feedme/-/feedme-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "22740f5f61687c25a8b0a84bbf8135a03e61b24f", + "tarball": "http://registry.npmjs.org/feedme/-/feedme-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "689c4a1580986a63af2fe4944fdb7dddf9309bf0", + "tarball": "http://registry.npmjs.org/feedme/-/feedme-0.0.4.tgz" + } + }, + "keywords": [ + "feed", + "rss", + "atom", + "parser" + ], + "url": "http://registry.npmjs.org/feedme/" + }, + "feedparser": { + "name": "feedparser", + "description": "Robust RSS, Atom, and RDF feed parsing using sax js", + "dist-tags": { + "latest": "0.4.3" + }, + "maintainers": [ + { + "name": "danmactough", + "email": "danmactough@gmail.com" + } + ], + "time": { + "modified": "2011-12-07T04:45:25.483Z", + "created": "2011-09-15T18:21:57.984Z", + "0.1.0": "2011-12-07T04:39:33.850Z", + "0.1.1": "2011-12-07T04:39:33.850Z", + "0.2.0": "2011-12-07T04:39:33.850Z", + "0.2.1": "2011-12-07T04:39:33.850Z", + "0.2.2": "2011-12-07T04:39:33.850Z", + "0.3.0": "2011-11-05T12:41:20.282Z", + "0.3.1": "2011-11-09T04:19:09.745Z", + "0.3.2": "2011-11-09T04:45:39.583Z", + "0.3.3": "2011-11-11T05:13:21.029Z", + "0.4.0": "2011-11-12T02:42:13.124Z", + "0.4.1": "2011-11-28T05:59:56.974Z", + "0.4.2": "2011-12-07T04:41:16.762Z", + "0.4.3": "2011-12-07T04:45:25.483Z" + }, + "author": { + "name": "Dan MacTough", + "email": "danmactough@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/danmactough/node-feedparser.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/feedparser/0.1.0", + "0.1.1": "http://registry.npmjs.org/feedparser/0.1.1", + "0.2.0": "http://registry.npmjs.org/feedparser/0.2.0", + "0.2.1": "http://registry.npmjs.org/feedparser/0.2.1", + "0.2.2": "http://registry.npmjs.org/feedparser/0.2.2", + "0.3.0": "http://registry.npmjs.org/feedparser/0.3.0", + "0.3.1": "http://registry.npmjs.org/feedparser/0.3.1", + "0.3.2": "http://registry.npmjs.org/feedparser/0.3.2", + "0.3.3": "http://registry.npmjs.org/feedparser/0.3.3", + "0.4.0": "http://registry.npmjs.org/feedparser/0.4.0", + "0.4.1": "http://registry.npmjs.org/feedparser/0.4.1", + "0.4.2": "http://registry.npmjs.org/feedparser/0.4.2", + "0.4.3": "http://registry.npmjs.org/feedparser/0.4.3" + }, + "dist": { + "0.1.0": { + "shasum": "09f4f21f5c1d9798b22a9576229542f1abca4523", + "tarball": "http://registry.npmjs.org/feedparser/-/feedparser-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "bcb30e231a6ca8be258aaac3cb38f4517e936fc3", + "tarball": "http://registry.npmjs.org/feedparser/-/feedparser-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "b6e6d97033770ea9b3af82ed1fbba2b6dd1f50b2", + "tarball": "http://registry.npmjs.org/feedparser/-/feedparser-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "417626157361476b43d26ffec3f8e2235925fd8c", + "tarball": "http://registry.npmjs.org/feedparser/-/feedparser-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "f23df3403ca8ff99f54a50e5e12d2fb79700dc62", + "tarball": "http://registry.npmjs.org/feedparser/-/feedparser-0.2.2.tgz" + }, + "0.3.0": { + "shasum": "0992ee294f8efab5e9cd63835e0f1ec44daf93f1", + "tarball": "http://registry.npmjs.org/feedparser/-/feedparser-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "ddd1ba962ab0628544caa8334943b9a74f1bbfef", + "tarball": "http://registry.npmjs.org/feedparser/-/feedparser-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "966d6b6c211d7c68d9578551ebd891ca5c36e7d9", + "tarball": "http://registry.npmjs.org/feedparser/-/feedparser-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "5892c7bec50841a0bcabce7d29b6e9b33d241555", + "tarball": "http://registry.npmjs.org/feedparser/-/feedparser-0.3.3.tgz" + }, + "0.4.0": { + "shasum": "d06e50351f416408bc2c850c62e31dbcafeb5963", + "tarball": "http://registry.npmjs.org/feedparser/-/feedparser-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "dfad0a0d376e7b2071bfff14479868ba80339d60", + "tarball": "http://registry.npmjs.org/feedparser/-/feedparser-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "f7f3b57a2c7c8535808ccede59850bc6ade4a802", + "tarball": "http://registry.npmjs.org/feedparser/-/feedparser-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "8754f3bff0d430fab71fafb5bd9aefd5d24e765c", + "tarball": "http://registry.npmjs.org/feedparser/-/feedparser-0.4.3.tgz" + } + }, + "keywords": [ + "rss", + "feed", + "atom", + "rdf", + "xml", + "syndication" + ], + "url": "http://registry.npmjs.org/feedparser/" + }, + "feedreader": { + "name": "feedreader", + "description": "Simple RSS / Atom Parser", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "wblanchette", + "email": "wb@collectivecognition.com" + } + ], + "time": { + "modified": "2011-10-18T15:16:27.133Z", + "created": "2011-10-17T20:13:33.895Z", + "0.1.0": "2011-10-17T20:13:34.354Z", + "0.1.1": "2011-10-18T15:14:13.065Z" + }, + "author": { + "name": "William Blanchette", + "email": "wb@collectivecognition.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/drastik/feedreader.js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/feedreader/0.1.0", + "0.1.1": "http://registry.npmjs.org/feedreader/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "190d023e8d32a17ecbe15e8c886dce18eb3d51b5", + "tarball": "http://registry.npmjs.org/feedreader/-/feedreader-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "c2bff25f7531ab1fd34dfe2e9f72e61bc321bb93", + "tarball": "http://registry.npmjs.org/feedreader/-/feedreader-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/feedreader/" + }, + "feedsub": { + "name": "feedsub", + "description": "Reads online feeds notifying on new items.", + "dist-tags": { + "latest": "0.0.9" + }, + "maintainers": [ + { + "name": "neat", + "email": "roly426@gmail.com" + } + ], + "time": { + "modified": "2011-11-17T08:34:04.675Z", + "created": "2011-10-09T19:25:33.747Z", + "0.0.1": "2011-10-09T19:25:37.669Z", + "0.0.2": "2011-10-10T01:03:03.839Z", + "0.0.3": "2011-10-10T01:10:22.348Z", + "0.0.4": "2011-10-10T12:25:08.556Z", + "0.0.5": "2011-10-11T07:46:36.216Z", + "0.0.6": "2011-10-23T08:59:41.997Z", + "0.0.7": "2011-11-08T08:16:57.767Z", + "0.0.8": "2011-11-13T22:45:53.739Z", + "0.0.9": "2011-11-17T08:34:04.675Z" + }, + "author": { + "name": "Roly Fentanes", + "url": "https://github.com/fent" + }, + "repository": { + "type": "git", + "url": "git://github.com/fent/node-feedsub.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/feedsub/0.0.1", + "0.0.2": "http://registry.npmjs.org/feedsub/0.0.2", + "0.0.3": "http://registry.npmjs.org/feedsub/0.0.3", + "0.0.4": "http://registry.npmjs.org/feedsub/0.0.4", + "0.0.5": "http://registry.npmjs.org/feedsub/0.0.5", + "0.0.6": "http://registry.npmjs.org/feedsub/0.0.6", + "0.0.7": "http://registry.npmjs.org/feedsub/0.0.7", + "0.0.8": "http://registry.npmjs.org/feedsub/0.0.8", + "0.0.9": "http://registry.npmjs.org/feedsub/0.0.9" + }, + "dist": { + "0.0.1": { + "shasum": "ba2a53f90142b98304d9acf8d294be86be6c37cd", + "tarball": "http://registry.npmjs.org/feedsub/-/feedsub-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "af5f3bef0559ec0daa23ade44cf0c01cf92c1285", + "tarball": "http://registry.npmjs.org/feedsub/-/feedsub-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "52c85dacab476455f6881c9501025c8edda3dd06", + "tarball": "http://registry.npmjs.org/feedsub/-/feedsub-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "534f5ce5cba093dd7991484db3ebaa046ea2f00e", + "tarball": "http://registry.npmjs.org/feedsub/-/feedsub-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "a2683b6a7882626cbea39965956b5f77fd003c48", + "tarball": "http://registry.npmjs.org/feedsub/-/feedsub-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "d4a48bb4fc09d6cc130393880dcf3a9b78d6c3ba", + "tarball": "http://registry.npmjs.org/feedsub/-/feedsub-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "add1fcfa1c364422c4ceca67eccbd0079fd47b79", + "tarball": "http://registry.npmjs.org/feedsub/-/feedsub-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "24ca338a891420462a7b42a76eb9ecbfc61fd76c", + "tarball": "http://registry.npmjs.org/feedsub/-/feedsub-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "5a1f2bb343d5fb94a621081af65ed0f359f3d804", + "tarball": "http://registry.npmjs.org/feedsub/-/feedsub-0.0.9.tgz" + } + }, + "keywords": [ + "feed", + "rss", + "atom", + "subscribe" + ], + "url": "http://registry.npmjs.org/feedsub/" + }, + "felix-couchdb": { + "name": "felix-couchdb", + "description": "A CouchDB module following node.js idioms, created by Felix Geisendörfer and fixed a little by me", + "dist-tags": { + "latest": "1.0.3" + }, + "maintainers": [ + { + "name": "norlin", + "email": "myxaxaxa@gmail.com" + }, + { + "name": "felixge", + "email": "felix@debuggable.com" + } + ], + "time": { + "modified": "2011-11-20T13:56:45.389Z", + "created": "2011-09-26T13:05:26.440Z", + "1.0.0": "2011-09-26T13:05:27.158Z", + "1.0.1": "2011-10-04T16:47:30.554Z", + "1.0.2": "2011-10-04T17:02:22.722Z", + "1.0.3": "2011-11-20T13:56:45.389Z" + }, + "author": { + "name": "Alexey Makarov", + "email": "alexey@norlin.ru" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/felix-couchdb/1.0.0", + "1.0.1": "http://registry.npmjs.org/felix-couchdb/1.0.1", + "1.0.2": "http://registry.npmjs.org/felix-couchdb/1.0.2", + "1.0.3": "http://registry.npmjs.org/felix-couchdb/1.0.3" + }, + "dist": { + "1.0.0": { + "shasum": "3f4c981099381b13ff120ae451e5b36326478afe", + "tarball": "http://registry.npmjs.org/felix-couchdb/-/felix-couchdb-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "7e636e077a63059c69ef251fa96a4b4f762ee820", + "tarball": "http://registry.npmjs.org/felix-couchdb/-/felix-couchdb-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "beab1f07c7797da7658034046ce02cce3607364a", + "tarball": "http://registry.npmjs.org/felix-couchdb/-/felix-couchdb-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "cd24ce4c3ca16f605e9dc9ca0adad11e36758ee9", + "tarball": "http://registry.npmjs.org/felix-couchdb/-/felix-couchdb-1.0.3.tgz" + } + }, + "keywords": [ + "couch", + "couchdb" + ], + "url": "http://registry.npmjs.org/felix-couchdb/" + }, + "felix-metrics": { + "name": "felix-metrics", + "description": "This is an alternative port of Coda Hale's metrics library.", + "dist-tags": { + "latest": "0.0.9" + }, + "readme": "# felix-metrics\n\n[![Build Status](https://secure.travis-ci.org/felixge/node-felix-metrics.png)](http://travis-ci.org/felixge/node-felix-metrics)\n\nThis is an alternative port of Coda Hale's [metrics library][codametrics].\n\nI created this despite the existing [metrics port][existingmetrics] for node.js\nbecause I wanted to fully understand the underlaying Math and algorithms.\n\n[codametrics]: https://github.com/codahale/metrics\n[existingmetrics]: https://github.com/mikejihbe/metrics\n\n## Install\n\nThis is not ready for you yet\n\n## Usage\n\n**Step 1:** Add metrics to your code. For example, lets track the requests/sec\nof a http server:\n\n```js\nvar metrics = require('felix-metrics');\nvar collection = new metrics.Collection('http');\nvar http = require('http');\n\nvar rps = collection.meter('requestsPerSecond');\nhttp.createServer(function(req, res) {\n meter.mark();\n res.end('Thanks');\n}).listen(3000);\n```\n\n**Step 2:** Show the collected metrics (more advanced examples follow later):\n\n```js\nsetInterval(function() {\n console.log(collection.toJSON());\n}, 1000);\n```\n\nThis will output something like this every second:\n\n```\n{ requestsPerSecond:\n { mean: 1710.2180279856818,\n count: 10511,\n '1MinuteRate': 168.08263156623656,\n '5MinuteRate': 34.74630977619571,\n '15MinuteRate': 11.646507524106095 } }\n```\n\n**Step 3:** Aggregate the data into your backend of choice. I recommend\n[graphite][].\n\n[graphite]: http://graphite.wikidot.com/\n\n## Metrics\n\nThe following metrics are available (both standalone and on the Collection API):\n\n### Gauge\n\nValues that can be read instantly. Example:\n\n```js\nvar gauge = new metrics.Gauge({read: function() {\n return process.memoryUsage().rss;\n});\n```\n\nThere is currently no callback support for Gauges because otherwise it would be\nvery difficult to report the metrics inside a collection within a regular\ninterval.\n\n**Options:**\n\n* `read` A function that returns the current value of the Gauge.\n\n**Methods:**\n\nNone.\n\n### Counter\n\nThings that increment or decrement. Example:\n\n```js\nvar activeUploads = new metrics.Counter();\nhttp.createServer(function(req, res) {\n activeUploads.inc();\n req.on('end', function() {\n activeUploads.dec();\n });\n});\n```\n\n**Options:**\n\n* `count` An initial count for the counter. Defaults to `0`.\n\n**Methods:**\n\n* `inc(n)` Increment the counter by `n`. Defaults to `1`.\n* `dec(n)` Decrement the counter by `n`. Defaults to `1`.\n\n### Meter\n\nThings that are measured as events / interval. Example:\n\n```js\nvar meter = new metrics.Meter();\nhttp.createServer(function(req, res) {\n meter.mark();\n});\n```\n\n**Options:**\n\n* `rateUnit` The rate unit. Defaults to `1000` (1 sec).\n* `tickInterval` The interval in which the averages are updated. Defaults to\n `5000` (5 sec).\n\n**Methods:**\n\n* `mark(n)` Register `n` events as having just occured. Defaults to `1.\n\n### Histogram\n\nThings that are measured as distributions of scalars. Example:\n\n```js\nvar histogram = new metrics.Histogram();\nhttp.createServer(function(req, res) {\n if (req.headers['content-length']) {\n histogram.update(parseInt(req.headers['content-length'], 10));\n }\n});\n```\n\n**Options:**\n\n* `sample` The sample resevoir to use. Defaults to an `ExponentiallyDecayingSample`.\n\n**Methods:**\n\n* `update(value, timestamp)` Pushes `value` into the sample. `timestamp`\n defaults to `Date.now()`.\n\n### Timers\n\nTimers are a combination of Meters and Histograms. They measure the rate as\nwell as distribution of scalar events. Since they are frequently used for\ntracking how long certain things take, they expose an API for that:\n\n```js\nvar timer = new metrics.Timer();\nhttp.createServer(function(req, res) {\n var stopwatch = timer.start();\n req.on('end', function() {\n stopwatch.end();\n });\n});\n```\n\nBut you can also use them as generic histograms that also track the rate of\nevents:\n\n```js\nvar timer = new metrics.Timer();\nhttp.createServer(function(req, res) {\n if (req.headers['content-length']) {\n timer.update(parseInt(req.headers['content-length'], 10));\n }\n});\n```\n\n**Options:**\n\n* `meter` The internal meter to use. Defaults to a new `Meter`.\n* `histogram` The internal histogram to use. Defaults to a new `Histogram`.\n\n**Methods:**\n\n* `start()` Returns a `Stopwatch`.\n* `update(value)` Updates the internal histogram with `value` and marks one\n event on the internal meter.\n\n## Todo\n\n* Implement a graphite reporter and feature it in the usage section.\n\n## License\n\nThis module is licensed under the MIT license.\n", + "maintainers": [ + { + "name": "felixge", + "email": "felix@debuggable.com" + } + ], + "time": { + "modified": "2011-11-23T16:31:12.774Z", + "created": "2011-11-17T15:46:49.774Z", + "0.0.6": "2011-11-17T15:46:51.269Z", + "0.0.7": "2011-11-18T13:33:35.879Z", + "0.0.8": "2011-11-18T13:43:36.237Z", + "0.0.9": "2011-11-23T16:31:12.774Z" + }, + "author": { + "name": "Felix Geisendörfer", + "email": "felix@debuggable.com", + "url": "http://debuggable.com/" + }, + "repository": { + "url": "git://github.com/felixge/node-felix-metrics.git" + }, + "versions": { + "0.0.6": "http://registry.npmjs.org/felix-metrics/0.0.6", + "0.0.7": "http://registry.npmjs.org/felix-metrics/0.0.7", + "0.0.8": "http://registry.npmjs.org/felix-metrics/0.0.8", + "0.0.9": "http://registry.npmjs.org/felix-metrics/0.0.9" + }, + "dist": { + "0.0.6": { + "shasum": "9691c26a10626f00bd5484637843bc74425228cf", + "tarball": "http://registry.npmjs.org/felix-metrics/-/felix-metrics-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "93807921be8a26a50d75ea6a19e03ad89ddff433", + "tarball": "http://registry.npmjs.org/felix-metrics/-/felix-metrics-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "f0ed7519f56e8923078a278ea2603e2fe1f4584f", + "tarball": "http://registry.npmjs.org/felix-metrics/-/felix-metrics-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "cf0ebbc802e262de207d99d398d736c7075bd250", + "tarball": "http://registry.npmjs.org/felix-metrics/-/felix-metrics-0.0.9.tgz" + } + }, + "url": "http://registry.npmjs.org/felix-metrics/" + }, + "fenpgn": { + "name": "fenpgn", + "description": "FEN and PGN Notation Chess in NodeJS", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "rook2pawn", + "email": "rook2pawn@gmail.com" + } + ], + "time": { + "modified": "2011-11-09T18:06:50.284Z", + "created": "2011-10-08T06:41:34.951Z", + "0.0.1": "2011-10-08T06:41:36.094Z", + "0.0.2": "2011-10-09T19:23:28.995Z", + "0.0.3": "2011-10-09T20:15:52.455Z", + "0.0.4": "2011-10-12T11:25:35.379Z", + "0.0.5": "2011-10-17T05:12:35.334Z", + "0.0.7": "2011-10-18T08:55:02.244Z", + "0.0.8": "2011-10-22T12:05:35.946Z", + "0.0.9": "2011-10-29T13:14:13.095Z", + "0.0.10": "2011-11-08T19:34:44.549Z", + "0.1.0": "2011-11-09T18:03:56.347Z", + "0.1.1": "2011-11-09T18:06:50.284Z" + }, + "author": { + "name": "David Wee", + "email": "rook2pawn@gmail.com", + "url": "rook2pawn.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/rook2pawn/node-fenpgn.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/fenpgn/0.0.1", + "0.0.2": "http://registry.npmjs.org/fenpgn/0.0.2", + "0.0.3": "http://registry.npmjs.org/fenpgn/0.0.3", + "0.0.4": "http://registry.npmjs.org/fenpgn/0.0.4", + "0.0.5": "http://registry.npmjs.org/fenpgn/0.0.5", + "0.0.7": "http://registry.npmjs.org/fenpgn/0.0.7", + "0.0.8": "http://registry.npmjs.org/fenpgn/0.0.8", + "0.0.9": "http://registry.npmjs.org/fenpgn/0.0.9", + "0.0.10": "http://registry.npmjs.org/fenpgn/0.0.10", + "0.1.0": "http://registry.npmjs.org/fenpgn/0.1.0", + "0.1.1": "http://registry.npmjs.org/fenpgn/0.1.1" + }, + "dist": { + "0.0.1": { + "shasum": "f28bf87c42ff393d6de90d3e0e4e76a065089ac7", + "tarball": "http://registry.npmjs.org/fenpgn/-/fenpgn-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "a2c5e1397dd6a09334003a64a09b3f51650009ee", + "tarball": "http://registry.npmjs.org/fenpgn/-/fenpgn-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "874d71cfefb06ba11e34767bad8a91cb1e24a43e", + "tarball": "http://registry.npmjs.org/fenpgn/-/fenpgn-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "1bea598e55913b676f997d2b4e8357b34866f76f", + "tarball": "http://registry.npmjs.org/fenpgn/-/fenpgn-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "e182cd48e1cc476c7071d36f2fa4dc6d5ffe3ba1", + "tarball": "http://registry.npmjs.org/fenpgn/-/fenpgn-0.0.5.tgz" + }, + "0.0.7": { + "shasum": "9aaac55d8b3b3c2069cb86f21d8c82fdd9358bc7", + "tarball": "http://registry.npmjs.org/fenpgn/-/fenpgn-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "c2e9103d93d996e654de43d1685fe383f71fdd21", + "tarball": "http://registry.npmjs.org/fenpgn/-/fenpgn-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "07238a6cfb378dcfa5a24760eb20d015cca6d566", + "tarball": "http://registry.npmjs.org/fenpgn/-/fenpgn-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "e1dfb7a7b5f33f1eefcd96b99c0a740deca4ba3c", + "tarball": "http://registry.npmjs.org/fenpgn/-/fenpgn-0.0.10.tgz" + }, + "0.1.0": { + "shasum": "9d255810e608f43b8e03ddc3654c82bebf77be38", + "tarball": "http://registry.npmjs.org/fenpgn/-/fenpgn-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "ef451d27af2edda523d4c32506e9c9c8fb346c2d", + "tarball": "http://registry.npmjs.org/fenpgn/-/fenpgn-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/fenpgn/" + }, + "feral": { + "name": "feral", + "description": "Express + Zombie caching content server.", + "dist-tags": { + "latest": "0.1.5" + }, + "maintainers": [ + { + "name": "syntacticx", + "email": "ryan@syntacticx.com" + } + ], + "time": { + "modified": "2011-05-28T22:26:35.979Z", + "created": "2011-05-18T21:55:21.560Z", + "2.0.2": "2011-05-18T21:55:22.350Z", + "0.1.0": "2011-05-26T22:48:00.970Z", + "0.1.1": "2011-05-26T23:41:07.137Z", + "0.1.2": "2011-05-27T21:46:41.313Z", + "0.1.3": "2011-05-27T23:37:47.340Z", + "0.1.5": "2011-05-28T22:25:03.989Z" + }, + "author": { + "name": "Ryan Eastridge", + "email": "ryan@syntacticx.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/syntacticx/feral.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/feral/0.1.0", + "0.1.1": "http://registry.npmjs.org/feral/0.1.1", + "0.1.2": "http://registry.npmjs.org/feral/0.1.2", + "0.1.3": "http://registry.npmjs.org/feral/0.1.3", + "0.1.5": "http://registry.npmjs.org/feral/0.1.5" + }, + "dist": { + "0.1.0": { + "shasum": "97496c62f66f15d0010b1f28e93e95f971b1dffe", + "tarball": "http://registry.npmjs.org/feral/-/feral-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "f5b76ebcf78c26b2a35f7c83d86e1a8dddaa656f", + "tarball": "http://registry.npmjs.org/feral/-/feral-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "a8db91a30a307044ba6dfb0c7fd01ccd57d88fd7", + "tarball": "http://registry.npmjs.org/feral/-/feral-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "b7cfdccf69269ec67ce11c257becfe7b67197040", + "tarball": "http://registry.npmjs.org/feral/-/feral-0.1.3.tgz" + }, + "0.1.5": { + "shasum": "1eea48e6298d15abb0c3b9a889ad1d566e451686", + "tarball": "http://registry.npmjs.org/feral/-/feral-0.1.5.tgz" + } + }, + "url": "http://registry.npmjs.org/feral/" + }, + "fermata": { + "name": "fermata", + "description": "Succinct native REST client, for client-side web apps and node.js. Turns URLs into magic JavaScript objects. Supports JSON, CouchDB, OAuth 1.0a, form uploads and more!", + "dist-tags": { + "latest": "0.8.2" + }, + "maintainers": [ + { + "name": "natevw", + "email": "natevw@yahoo.com" + } + ], + "time": { + "modified": "2011-12-12T18:25:16.831Z", + "created": "2011-04-04T07:23:40.956Z", + "0.1.0": "2011-04-04T07:23:41.600Z", + "0.2.0": "2011-04-26T00:52:35.369Z", + "0.3.0": "2011-04-29T16:17:56.111Z", + "0.5.0": "2011-04-29T19:41:47.367Z", + "0.5.1": "2011-04-29T21:51:23.797Z", + "0.5.2": "2011-04-29T22:59:06.479Z", + "0.6.0": "2011-08-26T16:13:06.992Z", + "0.6.1": "2011-08-29T18:34:46.102Z", + "0.6.2": "2011-09-15T18:05:59.666Z", + "0.6.2-1": "2011-09-15T18:17:03.710Z", + "0.7.0": "2011-09-15T21:07:47.238Z", + "0.7.1": "2011-09-16T00:55:59.965Z", + "0.8.0": "2011-10-28T00:32:54.497Z", + "0.8.1": "2011-11-19T00:14:46.015Z", + "0.8.2": "2011-12-12T18:25:16.831Z" + }, + "author": { + "name": "&yet, LLC", + "url": "http://andyet.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/andyet/fermata.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/fermata/0.1.0", + "0.2.0": "http://registry.npmjs.org/fermata/0.2.0", + "0.3.0": "http://registry.npmjs.org/fermata/0.3.0", + "0.5.0": "http://registry.npmjs.org/fermata/0.5.0", + "0.5.1": "http://registry.npmjs.org/fermata/0.5.1", + "0.5.2": "http://registry.npmjs.org/fermata/0.5.2", + "0.6.0": "http://registry.npmjs.org/fermata/0.6.0", + "0.6.1": "http://registry.npmjs.org/fermata/0.6.1", + "0.6.2": "http://registry.npmjs.org/fermata/0.6.2", + "0.6.2-1": "http://registry.npmjs.org/fermata/0.6.2-1", + "0.7.0": "http://registry.npmjs.org/fermata/0.7.0", + "0.7.1": "http://registry.npmjs.org/fermata/0.7.1", + "0.8.0": "http://registry.npmjs.org/fermata/0.8.0", + "0.8.1": "http://registry.npmjs.org/fermata/0.8.1", + "0.8.2": "http://registry.npmjs.org/fermata/0.8.2" + }, + "dist": { + "0.1.0": { + "shasum": "7ed88e0732d4afa66a2705a149deef08f176ccfe", + "tarball": "http://registry.npmjs.org/fermata/-/fermata-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "346f7b91a740ce70a7aa22edc7f8dc33ff220007", + "tarball": "http://registry.npmjs.org/fermata/-/fermata-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "75e39ee80b86b10842b827d5847bedca740eed29", + "tarball": "http://registry.npmjs.org/fermata/-/fermata-0.3.0.tgz" + }, + "0.5.0": { + "shasum": "57d8cb7f34551254c6ec499db8e70254f78e08a2", + "tarball": "http://registry.npmjs.org/fermata/-/fermata-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "b601858113405d019fbed6315c67d9b5b313c3fc", + "tarball": "http://registry.npmjs.org/fermata/-/fermata-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "758727022ae4f68245e888445f4a453eab9e21d3", + "tarball": "http://registry.npmjs.org/fermata/-/fermata-0.5.2.tgz" + }, + "0.6.0": { + "shasum": "a239dd93d2b89522881c5a21d8f4c3a735243a73", + "tarball": "http://registry.npmjs.org/fermata/-/fermata-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "0e6122a8e69eff1da08d7fab4cd8f3bd636bf4e0", + "tarball": "http://registry.npmjs.org/fermata/-/fermata-0.6.1.tgz" + }, + "0.6.2": { + "shasum": "7bd832db9007b7cea8bca6724ac60e8a594a0e48", + "tarball": "http://registry.npmjs.org/fermata/-/fermata-0.6.2.tgz" + }, + "0.6.2-1": { + "shasum": "d3459260e30fd1b3a929c2cc2883ca04ee71df6b", + "tarball": "http://registry.npmjs.org/fermata/-/fermata-0.6.2-1.tgz" + }, + "0.7.0": { + "shasum": "f404db1ead8a961682a91a6e1a0030cc67b30436", + "tarball": "http://registry.npmjs.org/fermata/-/fermata-0.7.0.tgz" + }, + "0.7.1": { + "shasum": "7b56426889e8e4a1fe0b6e2309b8db4f37dd8657", + "tarball": "http://registry.npmjs.org/fermata/-/fermata-0.7.1.tgz" + }, + "0.8.0": { + "shasum": "94e62f0115163284455333514bebe982877d346e", + "tarball": "http://registry.npmjs.org/fermata/-/fermata-0.8.0.tgz" + }, + "0.8.1": { + "shasum": "098e098cec3b88d124ebde79bf020bb44cac0ccf", + "tarball": "http://registry.npmjs.org/fermata/-/fermata-0.8.1.tgz" + }, + "0.8.2": { + "shasum": "fa22369a76e652abf01a55f3cd0ebf71fb7a4f98", + "tarball": "http://registry.npmjs.org/fermata/-/fermata-0.8.2.tgz" + } + }, + "url": "http://registry.npmjs.org/fermata/" + }, + "ferret": { + "name": "ferret", + "description": "Adorable mongodb library for node.js with modelling support", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "coreh", + "email": "thecoreh@gmail.com" + } + ], + "time": { + "modified": "2011-08-02T15:03:08.527Z", + "created": "2011-07-25T20:34:29.123Z", + "0.1.0": "2011-07-25T20:34:33.448Z", + "0.2.0": "2011-07-27T03:16:02.462Z", + "0.2.1": "2011-08-02T04:18:51.909Z", + "0.2.2": "2011-08-02T15:03:08.527Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/Coreh/ferret.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/ferret/0.1.0", + "0.2.0": "http://registry.npmjs.org/ferret/0.2.0", + "0.2.1": "http://registry.npmjs.org/ferret/0.2.1", + "0.2.2": "http://registry.npmjs.org/ferret/0.2.2" + }, + "dist": { + "0.1.0": { + "shasum": "9a20fd901f2af31ae48fe10d7c4a7129bafe6a39", + "tarball": "http://registry.npmjs.org/ferret/-/ferret-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "38941c6b3b04c95cff332b218aa5dd13d7dfa70a", + "tarball": "http://registry.npmjs.org/ferret/-/ferret-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "cf4d3ea28e5907ab781f52fea7b7485461c51a16", + "tarball": "http://registry.npmjs.org/ferret/-/ferret-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "5e04881ba2ae5b48b43dbc6afc59b0e3c9066450", + "tarball": "http://registry.npmjs.org/ferret/-/ferret-0.2.2.tgz" + } + }, + "keywords": [ + "mongodb", + "database", + "mongo", + "model" + ], + "url": "http://registry.npmjs.org/ferret/" + }, + "fetch": { + "name": "fetch", + "description": "Fetch URL contents", + "dist-tags": { + "latest": "0.2.5" + }, + "maintainers": [ + { + "name": "andris", + "email": "andris@node.ee" + } + ], + "time": { + "modified": "2011-11-14T12:32:28.592Z", + "created": "2011-10-13T21:56:58.122Z", + "0.1.0": "2011-10-13T21:56:59.742Z", + "0.2.0": "2011-10-14T13:08:58.477Z", + "0.2.1": "2011-10-14T19:39:04.303Z", + "0.2.2": "2011-10-15T05:46:20.904Z", + "0.2.3": "2011-11-03T08:10:50.617Z", + "0.2.4": "2011-11-09T19:40:01.433Z", + "0.2.5": "2011-11-14T12:32:28.592Z" + }, + "author": { + "name": "Andris Reinman" + }, + "repository": { + "type": "git", + "url": "git://github.com/andris9/fetch.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/fetch/0.1.0", + "0.2.0": "http://registry.npmjs.org/fetch/0.2.0", + "0.2.1": "http://registry.npmjs.org/fetch/0.2.1", + "0.2.2": "http://registry.npmjs.org/fetch/0.2.2", + "0.2.3": "http://registry.npmjs.org/fetch/0.2.3", + "0.2.4": "http://registry.npmjs.org/fetch/0.2.4", + "0.2.5": "http://registry.npmjs.org/fetch/0.2.5" + }, + "dist": { + "0.1.0": { + "shasum": "cab81f35bfdfd8f00cfcbb4e01e939fab99e1f04", + "tarball": "http://registry.npmjs.org/fetch/-/fetch-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "c78b7d00488de2573f773cd86c617591826ac1b6", + "tarball": "http://registry.npmjs.org/fetch/-/fetch-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "a0e4cf27075d56fb385a94a1c8828dadf05cb107", + "tarball": "http://registry.npmjs.org/fetch/-/fetch-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "520ab924f4a6dfdb9af2120ef78dda1e89844364", + "tarball": "http://registry.npmjs.org/fetch/-/fetch-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "84856413933e47ae0878c65f6b0666fd4b8a2eda", + "tarball": "http://registry.npmjs.org/fetch/-/fetch-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "17c35fa042bc3dd306b0374cf6197ee02cc639e4", + "tarball": "http://registry.npmjs.org/fetch/-/fetch-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "aa12c790a70ac7ef4460fbf48a313877248e210e", + "tarball": "http://registry.npmjs.org/fetch/-/fetch-0.2.5.tgz" + } + }, + "keywords": [ + "url" + ], + "url": "http://registry.npmjs.org/fetch/" + }, + "fez": { + "name": "fez", + "description": "Have a fez. Css3 framework for stylus.", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "jakeluer", + "email": "jake.luer@incatern.com" + } + ], + "time": { + "modified": "2011-10-10T01:43:21.543Z", + "created": "2011-10-07T07:24:20.375Z", + "0.0.1": "2011-10-07T07:24:20.966Z", + "0.0.2": "2011-10-07T08:58:17.573Z", + "0.0.3": "2011-10-10T01:43:21.543Z" + }, + "author": { + "name": "Jake Luer", + "email": "@jakeluer" + }, + "repository": { + "type": "git", + "url": "git://github.com/logicalparadox/fez.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/fez/0.0.1", + "0.0.2": "http://registry.npmjs.org/fez/0.0.2", + "0.0.3": "http://registry.npmjs.org/fez/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "c6ebc272895d9ff1ee84ef99e37ac1a44cc1d322", + "tarball": "http://registry.npmjs.org/fez/-/fez-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "e45b6c0b9b0d4b4b1f832ac90f895eed864a5075", + "tarball": "http://registry.npmjs.org/fez/-/fez-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "e9081f35fd333a89b5c239ed1fb18a150ff4dd1c", + "tarball": "http://registry.npmjs.org/fez/-/fez-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/fez/" + }, + "ffmpeg-node": { + "name": "ffmpeg-node", + "description": "Node.js Module for ffmpeg library", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "cbenz", + "email": "christophe.benz@gmail.com" + } + ], + "time": { + "modified": "2011-03-21T21:26:40.321Z", + "created": "2011-03-21T21:26:39.776Z", + "0.0.1": "2011-03-21T21:26:40.321Z" + }, + "author": { + "name": "Sean Caetano Martin", + "email": "seancaetanomartin@gmail.com", + "url": "http://www.xonecas.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/xonecas/ffmpeg-node.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ffmpeg-node/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "ac91680b7b361d95f1ec072ea761b0c59bab63c6", + "tarball": "http://registry.npmjs.org/ffmpeg-node/-/ffmpeg-node-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/ffmpeg-node/" + }, + "ffmpeg2theora": { + "name": "ffmpeg2theora", + "description": "Batch encoding video with ffmpeg2theora (http://v2v.cc/~j/ffmpeg2theora/)", + "dist-tags": { + "latest": "0.0.3e" + }, + "maintainers": [ + { + "name": "flybyme", + "email": "price.timmy@gmail.com" + } + ], + "time": { + "modified": "2011-07-30T20:39:41.899Z", + "created": "2011-07-28T20:35:05.353Z", + "0.0.1": "2011-07-28T20:35:05.954Z", + "0.0.2": "2011-07-28T21:48:39.263Z", + "0.0.3": "2011-07-28T22:07:55.360Z", + "0.0.3a": "2011-07-29T05:25:39.256Z", + "0.0.3c": "2011-07-29T22:14:30.456Z", + "0.0.3e": "2011-07-30T20:39:41.899Z" + }, + "author": { + "name": "Tim", + "email": "flybyme@wiyc.info" + }, + "repository": { + "type": "git", + "url": "git://github.com/FLYBYME/node-ffmpeg2theora.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ffmpeg2theora/0.0.1", + "0.0.2": "http://registry.npmjs.org/ffmpeg2theora/0.0.2", + "0.0.3": "http://registry.npmjs.org/ffmpeg2theora/0.0.3", + "0.0.3a": "http://registry.npmjs.org/ffmpeg2theora/0.0.3a", + "0.0.3c": "http://registry.npmjs.org/ffmpeg2theora/0.0.3c", + "0.0.3e": "http://registry.npmjs.org/ffmpeg2theora/0.0.3e" + }, + "dist": { + "0.0.1": { + "shasum": "2bed770403a9663d155272e10a8fd73d0f970a41", + "tarball": "http://registry.npmjs.org/ffmpeg2theora/-/ffmpeg2theora-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "7cc524d810604af8c0bce451b1600846fc311dd0", + "tarball": "http://registry.npmjs.org/ffmpeg2theora/-/ffmpeg2theora-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "69f322ef5480a9752320ab3d1c70d4e8f589a89c", + "tarball": "http://registry.npmjs.org/ffmpeg2theora/-/ffmpeg2theora-0.0.3.tgz" + }, + "0.0.3a": { + "shasum": "ddd22c30ff06020f79960f26cb9cf7ca2525ea6b", + "tarball": "http://registry.npmjs.org/ffmpeg2theora/-/ffmpeg2theora-0.0.3a.tgz" + }, + "0.0.3c": { + "shasum": "deb95c748d9a47b57adaec0f2f524180934ff045", + "tarball": "http://registry.npmjs.org/ffmpeg2theora/-/ffmpeg2theora-0.0.3c.tgz" + }, + "0.0.3e": { + "shasum": "6d609c20b1259b4882d969ea49384ecbcae40ec1", + "tarball": "http://registry.npmjs.org/ffmpeg2theora/-/ffmpeg2theora-0.0.3e.tgz" + } + }, + "keywords": [ + "ffmpeg", + "ffmpeg2theora" + ], + "url": "http://registry.npmjs.org/ffmpeg2theora/" + }, + "fglob": { + "name": "fglob", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": null, + "maintainers": [ + { + "name": "architectd", + "email": "craig.j.condon@gmail.com" + } + ], + "time": { + "modified": "2011-11-30T18:55:02.337Z", + "created": "2011-11-11T04:35:31.271Z", + "0.0.0": "2011-11-11T04:35:33.833Z", + "0.0.1": "2011-11-30T18:55:02.337Z" + }, + "author": { + "name": "Craig Condon" + }, + "repository": { + "type": "git", + "url": "git://github.com/crcn/node-fglob.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/fglob/0.0.0", + "0.0.1": "http://registry.npmjs.org/fglob/0.0.1" + }, + "dist": { + "0.0.0": { + "shasum": "68cce82bbe4889bf79cce7f963ecec5893530431", + "tarball": "http://registry.npmjs.org/fglob/-/fglob-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "094b8218315b6ed430061511a26bbe49adaa3b45", + "tarball": "http://registry.npmjs.org/fglob/-/fglob-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/fglob/" + }, + "fh-fhc": { + "name": "fh-fhc", + "description": "A Command Line Interface for FeedHenry", + "dist-tags": { + "latest": "0.6.2-23" + }, + "maintainers": [ + { + "name": "dberesford", + "email": "damian.beresford@feedhenry.com" + } + ], + "time": { + "modified": "2011-12-12T13:18:39.440Z", + "created": "2011-09-23T12:39:53.499Z", + "0.4.0-45": "2011-12-07T08:43:40.914Z", + "0.4.0-46": "2011-12-07T08:43:40.914Z", + "0.4.0-50": "2011-12-07T08:43:40.914Z", + "0.4.0-51": "2011-12-07T08:43:40.914Z", + "0.5.0-66": "2011-11-17T12:31:25.847Z", + "0.6.0-8": "2011-11-28T17:56:19.442Z", + "0.6.0-9": "2011-11-28T20:03:56.896Z", + "0.6.1-14": "2011-12-06T09:56:39.675Z", + "0.6.1-19": "2011-12-07T08:43:40.914Z", + "0.6.1-20": "2011-12-07T09:35:18.142Z", + "0.6.2-23": "2011-12-12T13:18:39.440Z" + }, + "author": { + "name": "Damian Beresford", + "email": "damian.beresford@feedhenry.com" + }, + "versions": { + "0.4.0-45": "http://registry.npmjs.org/fh-fhc/0.4.0-45", + "0.4.0-46": "http://registry.npmjs.org/fh-fhc/0.4.0-46", + "0.4.0-50": "http://registry.npmjs.org/fh-fhc/0.4.0-50", + "0.4.0-51": "http://registry.npmjs.org/fh-fhc/0.4.0-51", + "0.5.0-66": "http://registry.npmjs.org/fh-fhc/0.5.0-66", + "0.6.0-8": "http://registry.npmjs.org/fh-fhc/0.6.0-8", + "0.6.0-9": "http://registry.npmjs.org/fh-fhc/0.6.0-9", + "0.6.1-14": "http://registry.npmjs.org/fh-fhc/0.6.1-14", + "0.6.1-19": "http://registry.npmjs.org/fh-fhc/0.6.1-19", + "0.6.1-20": "http://registry.npmjs.org/fh-fhc/0.6.1-20", + "0.6.2-23": "http://registry.npmjs.org/fh-fhc/0.6.2-23" + }, + "dist": { + "0.4.0-45": { + "shasum": "5c326cda433101ad07beb3bebdf8993381df5b0a", + "tarball": "http://registry.npmjs.org/fh-fhc/-/fh-fhc-0.4.0-45.tgz" + }, + "0.4.0-46": { + "shasum": "c4cf742cfa2c72362f960270c8bbe000252d0729", + "tarball": "http://registry.npmjs.org/fh-fhc/-/fh-fhc-0.4.0-46.tgz" + }, + "0.4.0-50": { + "shasum": "3ebacf3f58121fbd43c347bc0691bfc6543961c1", + "tarball": "http://registry.npmjs.org/fh-fhc/-/fh-fhc-0.4.0-50.tgz" + }, + "0.4.0-51": { + "shasum": "501754297d295d82eefabbbce3a1c5f93a8f5936", + "tarball": "http://registry.npmjs.org/fh-fhc/-/fh-fhc-0.4.0-51.tgz" + }, + "0.5.0-66": { + "shasum": "59ec7633b571fbc594dcf87f4eaba4c0f29b1e6f", + "tarball": "http://registry.npmjs.org/fh-fhc/-/fh-fhc-0.5.0-66.tgz" + }, + "0.6.0-8": { + "shasum": "6aa5b5975b82359ac657f5bf974861310c330d75", + "tarball": "http://registry.npmjs.org/fh-fhc/-/fh-fhc-0.6.0-8.tgz" + }, + "0.6.0-9": { + "shasum": "bfd01cd5e8f80064bd6853388035648db4c0eaf8", + "tarball": "http://registry.npmjs.org/fh-fhc/-/fh-fhc-0.6.0-9.tgz" + }, + "0.6.1-14": { + "shasum": "b95772125e8f35d54a2652ef456085d91adaed02", + "tarball": "http://registry.npmjs.org/fh-fhc/-/fh-fhc-0.6.1-14.tgz" + }, + "0.6.1-19": { + "shasum": "b1cc3f5c077cbfb820a465669486070bc5bd9ee2", + "tarball": "http://registry.npmjs.org/fh-fhc/-/fh-fhc-0.6.1-19.tgz" + }, + "0.6.1-20": { + "shasum": "05f8dfce78876146bb254b7cfa35a096ed96a727", + "tarball": "http://registry.npmjs.org/fh-fhc/-/fh-fhc-0.6.1-20.tgz" + }, + "0.6.2-23": { + "shasum": "c3aa75de5275b3be1a6c050115032b82e89af2dd", + "tarball": "http://registry.npmjs.org/fh-fhc/-/fh-fhc-0.6.2-23.tgz" + } + }, + "keywords": [ + "cli", + "feedhenry" + ], + "url": "http://registry.npmjs.org/fh-fhc/" + }, + "fiberize": { + "name": "fiberize", + "description": "Node API wrapper for use with fibers.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "lm1", + "email": "mielicki@gmail.com" + } + ], + "time": { + "modified": "2011-01-27T14:18:27.629Z", + "created": "2011-01-26T22:58:43.424Z", + "0.1.0": "2011-01-26T22:58:43.830Z", + "0.1.1": "2011-01-27T14:18:27.629Z" + }, + "author": { + "name": "Lukasz Mielicki", + "email": "mielicki@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/fiberize/0.1.0", + "0.1.1": "http://registry.npmjs.org/fiberize/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "b8a6d418245b41b8ef5d8ccbdaabd324c79fe512", + "tarball": "http://registry.npmjs.org/fiberize/-/fiberize-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "945e62f62d0ed4ad4c11f55de68a54fcbc08ea0e", + "tarball": "http://registry.npmjs.org/fiberize/-/fiberize-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/fiberize/" + }, + "fibers": { + "name": "fibers", + "description": "Cooperative multi-tasking for Javascript; or, the closest thing to a thread you'll see in node", + "dist-tags": { + "latest": "0.6.3" + }, + "maintainers": [ + { + "name": "laverdet", + "email": "marcel.npm@laverdet.com" + } + ], + "time": { + "modified": "2011-10-24T22:39:28.151Z", + "created": "2011-01-23T09:53:42.599Z", + "0.1.0": "2011-01-23T09:53:43.234Z", + "0.1.1": "2011-01-24T16:17:18.486Z", + "0.1.2": "2011-01-26T00:02:39.875Z", + "0.1.3": "2011-02-03T14:15:05.390Z", + "0.1.4": "2011-02-17T16:46:57.002Z", + "0.1.6": "2011-02-18T19:13:41.166Z", + "0.1.7": "2011-02-18T21:26:59.025Z", + "0.1.8": "2011-02-20T17:22:27.151Z", + "0.2.0": "2011-02-22T18:07:40.209Z", + "0.2.1": "2011-02-23T14:23:03.664Z", + "0.2.2": "2011-02-24T14:08:53.993Z", + "0.2.3": "2011-03-11T14:41:19.929Z", + "0.2.4": "2011-03-28T13:31:23.290Z", + "0.2.5": "2011-04-12T23:35:18.315Z", + "0.2.6": "2011-05-03T23:13:32.431Z", + "0.5.0": "2011-07-27T01:56:02.667Z", + "0.6.0": "2011-08-13T10:59:27.615Z", + "0.6.1": "2011-08-30T01:03:33.516Z", + "0.5.1": "2011-09-01T11:23:28.961Z", + "0.6.2": "2011-10-08T08:03:13.688Z", + "0.6.3": "2011-10-24T22:39:28.151Z" + }, + "author": { + "name": "Marcel Laverdet", + "email": "marcel@laverdet.com", + "url": "https://github.com/laverdet/" + }, + "repository": { + "type": "git", + "url": "git://github.com/laverdet/node-fibers.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/fibers/0.1.0", + "0.1.1": "http://registry.npmjs.org/fibers/0.1.1", + "0.1.2": "http://registry.npmjs.org/fibers/0.1.2", + "0.1.3": "http://registry.npmjs.org/fibers/0.1.3", + "0.1.4": "http://registry.npmjs.org/fibers/0.1.4", + "0.1.6": "http://registry.npmjs.org/fibers/0.1.6", + "0.1.7": "http://registry.npmjs.org/fibers/0.1.7", + "0.1.8": "http://registry.npmjs.org/fibers/0.1.8", + "0.2.0": "http://registry.npmjs.org/fibers/0.2.0", + "0.2.1": "http://registry.npmjs.org/fibers/0.2.1", + "0.2.2": "http://registry.npmjs.org/fibers/0.2.2", + "0.2.3": "http://registry.npmjs.org/fibers/0.2.3", + "0.2.4": "http://registry.npmjs.org/fibers/0.2.4", + "0.2.5": "http://registry.npmjs.org/fibers/0.2.5", + "0.2.6": "http://registry.npmjs.org/fibers/0.2.6", + "0.5.0": "http://registry.npmjs.org/fibers/0.5.0", + "0.6.0": "http://registry.npmjs.org/fibers/0.6.0", + "0.5.1": "http://registry.npmjs.org/fibers/0.5.1", + "0.6.1": "http://registry.npmjs.org/fibers/0.6.1", + "0.6.2": "http://registry.npmjs.org/fibers/0.6.2", + "0.6.3": "http://registry.npmjs.org/fibers/0.6.3" + }, + "dist": { + "0.1.0": { + "shasum": "3b0bb5be2b52713ccacf408a97119521fc0dd18c", + "tarball": "http://registry.npmjs.org/fibers/-/fibers-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "a57e987c8158ae4424a0498255b77f26c9ef114b", + "tarball": "http://registry.npmjs.org/fibers/-/fibers-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "5d1868d644e92a09c67fd67ceeec95e51a68bdf2", + "tarball": "http://registry.npmjs.org/fibers/-/fibers-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "c29124209c7b506a52c1a6904e55c00fadbb1dde", + "tarball": "http://registry.npmjs.org/fibers/-/fibers-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "523b518ce8d49485267589ae4de38c335a93bd92", + "tarball": "http://registry.npmjs.org/fibers/-/fibers-0.1.4.tgz" + }, + "0.1.6": { + "shasum": "dc3c9480f840b150a8e3fe5e5714d070f8981d79", + "tarball": "http://registry.npmjs.org/fibers/-/fibers-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "448b4f9a1a94c82ff379030caa6fbeb2ef662527", + "tarball": "http://registry.npmjs.org/fibers/-/fibers-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "b5b6257f1bb561d7bc5b5eb68f331d13d70cf644", + "tarball": "http://registry.npmjs.org/fibers/-/fibers-0.1.8.tgz" + }, + "0.2.0": { + "shasum": "c8c545abb260f295abe5df37b2869bcbefc1b0b8", + "tarball": "http://registry.npmjs.org/fibers/-/fibers-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "424bcf5ca55e8dadfc3fec64f0ebdf19bec668c6", + "tarball": "http://registry.npmjs.org/fibers/-/fibers-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "201358d7600ac790bc847af754556a64bc2fc1b3", + "tarball": "http://registry.npmjs.org/fibers/-/fibers-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "92222f6ef203e4021343f2c33d81d9fc14365391", + "tarball": "http://registry.npmjs.org/fibers/-/fibers-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "8a82b9b43bc3ec35b0332e7fcc3ae0449baebb4b", + "tarball": "http://registry.npmjs.org/fibers/-/fibers-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "a22ea29eb1a3ad158e6692c4c0fa7798464e4d43", + "tarball": "http://registry.npmjs.org/fibers/-/fibers-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "47ce34088f3cf25787e8c2e75b62ed5b5370ca88", + "tarball": "http://registry.npmjs.org/fibers/-/fibers-0.2.6.tgz" + }, + "0.5.0": { + "shasum": "d5868bd8bc97e69d9c420a592547b285d1883d35", + "tarball": "http://registry.npmjs.org/fibers/-/fibers-0.5.0.tgz" + }, + "0.6.0": { + "shasum": "1bf663a30d53c014d22985d1648ae2d190139753", + "tarball": "http://registry.npmjs.org/fibers/-/fibers-0.6.0.tgz" + }, + "0.5.1": { + "shasum": "5bb599571cfa62054b6e87beb586a8be0abf8cc7", + "tarball": "http://registry.npmjs.org/fibers/-/fibers-0.5.1.tgz" + }, + "0.6.1": { + "shasum": "818bda29fc2bd395f18e95f7f964b0e1256e6ff6", + "tarball": "http://registry.npmjs.org/fibers/-/fibers-0.6.1.tgz" + }, + "0.6.2": { + "shasum": "8ac8d30a5dfe87e23d8fc582ca734fed26139180", + "tarball": "http://registry.npmjs.org/fibers/-/fibers-0.6.2.tgz" + }, + "0.6.3": { + "shasum": "bca6e0af4c8af3932616730c6f6f828cf9f17693", + "tarball": "http://registry.npmjs.org/fibers/-/fibers-0.6.3.tgz" + } + }, + "keywords": [ + "fiber", + "fibers", + "coroutine", + "thread", + "async", + "parallel", + "worker", + "future", + "promise" + ], + "url": "http://registry.npmjs.org/fibers/" + }, + "fibers-promise": { + "name": "fibers-promise", + "description": "Simple promises for use with fibers.", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "lm1", + "email": "mielicki@gmail.com" + } + ], + "time": { + "modified": "2011-01-29T23:00:51.257Z", + "created": "2011-01-27T14:17:08.844Z", + "0.0.1": "2011-01-27T14:17:09.231Z", + "0.0.2": "2011-01-27T14:36:52.414Z", + "0.0.3": "2011-01-29T23:00:51.257Z" + }, + "author": { + "name": "Lukasz Mielicki", + "email": "mielicki@gmail.com" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/fibers-promise/0.0.2", + "0.0.3": "http://registry.npmjs.org/fibers-promise/0.0.3" + }, + "dist": { + "0.0.2": { + "shasum": "c0fbabe681e55b9e54853c91bd90e176695b44b3", + "tarball": "http://registry.npmjs.org/fibers-promise/-/fibers-promise-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "54b0be9c4e04e2f11650cfcd40e70de0a8571176", + "tarball": "http://registry.npmjs.org/fibers-promise/-/fibers-promise-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/fibers-promise/" + }, + "fidel": { + "name": "fidel", + "description": "a ui view controller", + "dist-tags": { + "latest": "1.2.3" + }, + "maintainers": [ + { + "name": "jga", + "email": "me@jga.me" + } + ], + "time": { + "modified": "2011-10-16T20:44:30.871Z", + "created": "2011-05-27T03:43:38.221Z", + "0.0.1": "2011-05-27T03:43:38.778Z", + "0.0.2": "2011-05-27T03:52:20.006Z", + "0.0.3": "2011-05-27T04:35:51.028Z", + "0.0.4": "2011-05-31T20:09:44.093Z", + "0.0.5": "2011-06-01T14:33:25.880Z", + "1.0.0": "2011-06-01T14:49:20.998Z", + "1.0.1": "2011-06-02T05:10:10.243Z", + "1.0.2": "2011-06-05T00:20:27.100Z", + "1.0.3": "2011-06-16T22:48:48.546Z", + "1.0.4": "2011-06-24T01:08:49.362Z", + "1.1.0": "2011-06-24T01:40:31.057Z", + "1.1.1": "2011-06-24T15:48:05.017Z", + "1.1.2": "2011-07-03T03:23:05.502Z", + "1.1.3": "2011-07-06T18:43:20.412Z", + "1.2.0": "2011-09-01T05:14:30.109Z", + "1.2.1": "2011-09-02T21:11:12.070Z", + "1.2.2": "2011-10-06T00:40:09.207Z", + "1.2.3": "2011-10-16T20:44:30.871Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/jgallen23/fidel.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/fidel/0.0.1", + "0.0.2": "http://registry.npmjs.org/fidel/0.0.2", + "0.0.3": "http://registry.npmjs.org/fidel/0.0.3", + "0.0.4": "http://registry.npmjs.org/fidel/0.0.4", + "0.0.5": "http://registry.npmjs.org/fidel/0.0.5", + "1.0.0": "http://registry.npmjs.org/fidel/1.0.0", + "1.0.1": "http://registry.npmjs.org/fidel/1.0.1", + "1.0.2": "http://registry.npmjs.org/fidel/1.0.2", + "1.0.3": "http://registry.npmjs.org/fidel/1.0.3", + "1.0.4": "http://registry.npmjs.org/fidel/1.0.4", + "1.1.0": "http://registry.npmjs.org/fidel/1.1.0", + "1.1.1": "http://registry.npmjs.org/fidel/1.1.1", + "1.1.2": "http://registry.npmjs.org/fidel/1.1.2", + "1.1.3": "http://registry.npmjs.org/fidel/1.1.3", + "1.2.0": "http://registry.npmjs.org/fidel/1.2.0", + "1.2.1": "http://registry.npmjs.org/fidel/1.2.1", + "1.2.2": "http://registry.npmjs.org/fidel/1.2.2", + "1.2.3": "http://registry.npmjs.org/fidel/1.2.3" + }, + "dist": { + "0.0.1": { + "shasum": "d2de75c265a891c3802096b5170accfbf316a581", + "tarball": "http://registry.npmjs.org/fidel/-/fidel-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "19bb43917050b15ca1ae051fb1987664c6cad73b", + "tarball": "http://registry.npmjs.org/fidel/-/fidel-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "4d06e70179317febf1f31b78a7e8e3d2ee80b8c5", + "tarball": "http://registry.npmjs.org/fidel/-/fidel-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "55995f06f2fcf0faa3baa375c2cca48e96b10578", + "tarball": "http://registry.npmjs.org/fidel/-/fidel-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "f52490ebf4652768aba67bf259c84213d5aa5a5e", + "tarball": "http://registry.npmjs.org/fidel/-/fidel-0.0.5.tgz" + }, + "1.0.0": { + "shasum": "c10a468783d79ce7e2140886927395b74c9ff6fa", + "tarball": "http://registry.npmjs.org/fidel/-/fidel-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "9b15c4846ee497c2062dd2b1bb952c9ac98a2097", + "tarball": "http://registry.npmjs.org/fidel/-/fidel-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "6b872e7e77fb253ee481da2021769ddd742713f6", + "tarball": "http://registry.npmjs.org/fidel/-/fidel-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "03d060b09081fd14134ae43d8e341e23a9029c51", + "tarball": "http://registry.npmjs.org/fidel/-/fidel-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "32a8a73246ec617c06fe9dabab742b96ebf2ef5c", + "tarball": "http://registry.npmjs.org/fidel/-/fidel-1.0.4.tgz" + }, + "1.1.0": { + "shasum": "a4a529cf21a64d991586baaee2135338030eebcf", + "tarball": "http://registry.npmjs.org/fidel/-/fidel-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "173beb9af0404af1bd3173139799ee5c3af3de74", + "tarball": "http://registry.npmjs.org/fidel/-/fidel-1.1.1.tgz" + }, + "1.1.2": { + "shasum": "3afca01199215019038474291e51144e13b3842f", + "tarball": "http://registry.npmjs.org/fidel/-/fidel-1.1.2.tgz" + }, + "1.1.3": { + "shasum": "dcfdcfae6520e7d8ef7002c71186455c79604bcb", + "tarball": "http://registry.npmjs.org/fidel/-/fidel-1.1.3.tgz" + }, + "1.2.0": { + "shasum": "6753bf2ac46fd4cd97194cb615b73c45a880450a", + "tarball": "http://registry.npmjs.org/fidel/-/fidel-1.2.0.tgz" + }, + "1.2.1": { + "shasum": "6f8309a1c23c4b418f18b449da9c036aafee3e86", + "tarball": "http://registry.npmjs.org/fidel/-/fidel-1.2.1.tgz" + }, + "1.2.2": { + "shasum": "121062121d007e959218ab3955fb45b04e61c8be", + "tarball": "http://registry.npmjs.org/fidel/-/fidel-1.2.2.tgz" + }, + "1.2.3": { + "shasum": "14132b5969a2e217ab5afb09bce853161b8d7712", + "tarball": "http://registry.npmjs.org/fidel/-/fidel-1.2.3.tgz" + } + }, + "keywords": [ + "ender", + "controller", + "mvc" + ], + "url": "http://registry.npmjs.org/fidel/" + }, + "fig": { + "name": "fig", + "description": "async view for node, and the web", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "architectd", + "email": "craig.j.condon@gmail.com" + } + ], + "time": { + "modified": "2011-12-10T22:41:08.121Z", + "created": "2011-09-12T05:18:58.553Z", + "0.0.1": "2011-09-12T05:18:59.222Z", + "0.0.2": "2011-09-12T05:19:18.606Z", + "0.0.3": "2011-09-13T17:42:23.369Z", + "0.0.4": "2011-11-21T20:29:21.323Z", + "0.0.5": "2011-11-22T23:47:08.584Z", + "0.0.6": "2011-12-10T22:41:08.121Z" + }, + "author": { + "name": "Craig Condon" + }, + "repository": { + "type": "git", + "url": "git://github.com/crcn/fig.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/fig/0.0.1", + "0.0.2": "http://registry.npmjs.org/fig/0.0.2", + "0.0.3": "http://registry.npmjs.org/fig/0.0.3", + "0.0.4": "http://registry.npmjs.org/fig/0.0.4", + "0.0.5": "http://registry.npmjs.org/fig/0.0.5", + "0.0.6": "http://registry.npmjs.org/fig/0.0.6" + }, + "dist": { + "0.0.1": { + "shasum": "339a57f495aa07e5b1e16b469234040d95f537ba", + "tarball": "http://registry.npmjs.org/fig/-/fig-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "b45948135a1008afa1d8683dcad785efab503bf0", + "tarball": "http://registry.npmjs.org/fig/-/fig-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "76b7b6db3a4d8fbf246a947485ef756768188b7b", + "tarball": "http://registry.npmjs.org/fig/-/fig-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "f5828039b8d1f18742f1c1121d20dd314179d318", + "tarball": "http://registry.npmjs.org/fig/-/fig-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "863ba419a2886bebfcc6a2eaa688d535b8d27128", + "tarball": "http://registry.npmjs.org/fig/-/fig-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "fd72857dbe2de6797196dbc86ae56ace3a25727f", + "tarball": "http://registry.npmjs.org/fig/-/fig-0.0.6.tgz" + } + }, + "url": "http://registry.npmjs.org/fig/" + }, + "file": { + "name": "file", + "description": "Higher level path and file manipulation functions.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "aconbere", + "email": "aconbere@gmail.com" + } + ], + "author": { + "name": "Anders Conbere", + "email": "aconbere@gmail.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/mikeal/node-utils.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/file/0.1.1" + }, + "dist": { + "0.1.1": { + "tarball": "http://packages:5984/file/-/file-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/file/" + }, + "File": { + "name": "File", + "description": "HTML5 FileAPI `File` for Node.JS.", + "dist-tags": { + "latest": "0.10.0" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-07-15T19:59:49.076Z", + "created": "2011-07-15T19:59:48.683Z", + "0.10.0": "2011-07-15T19:59:49.077Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com" + }, + "versions": { + "0.10.0": "http://registry.npmjs.org/File/0.10.0" + }, + "dist": { + "0.10.0": { + "shasum": "8b4cb79134c219ad1b4b1d2d331efc2560ecaca8", + "tarball": "http://registry.npmjs.org/File/-/File-0.10.0.tgz" + } + }, + "keywords": [ + "html5", + "jsdom", + "file-api", + "file" + ], + "url": "http://registry.npmjs.org/File/" + }, + "file-api": { + "name": "file-api", + "description": "HTML5 FileAPI for Node.JS.", + "dist-tags": { + "latest": "0.9.3" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-03-02T19:28:41.600Z", + "created": "2011-01-12T00:01:31.538Z", + "0.9.0": "2011-01-12T00:01:31.882Z", + "0.9.1": "2011-01-13T22:35:36.632Z", + "0.9.2": "2011-02-16T02:55:04.729Z", + "0.9.3": "2011-03-02T19:28:41.600Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com" + }, + "versions": { + "0.9.0": "http://registry.npmjs.org/file-api/0.9.0", + "0.9.1": "http://registry.npmjs.org/file-api/0.9.1", + "0.9.2": "http://registry.npmjs.org/file-api/0.9.2", + "0.9.3": "http://registry.npmjs.org/file-api/0.9.3" + }, + "dist": { + "0.9.0": { + "tarball": "http://registry.npmjs.org/file-api/-/file-api-0.9.0.tgz" + }, + "0.9.1": { + "tarball": "http://registry.npmjs.org/file-api/-/file-api-0.9.1.tgz" + }, + "0.9.2": { + "shasum": "e7ec4d6c2a475cf651ea5053b46bce73f642cc85", + "tarball": "http://registry.npmjs.org/file-api/-/file-api-0.9.2.tgz" + }, + "0.9.3": { + "shasum": "ec17f2513ed777d325ec72fd18800a9a061f7789", + "tarball": "http://registry.npmjs.org/file-api/-/file-api-0.9.3.tgz" + } + }, + "keywords": [ + "html5", + "jsdom", + "file-api" + ], + "url": "http://registry.npmjs.org/file-api/" + }, + "filechangeemitter": { + "name": "filechangeemitter", + "description": "A simple EventEmitter that listens for file system changes in a given set of files or directories. Attaches filesystem watchers then emits one event per change with the changed file as a param. Adapted from the Reload plugin in Learnboost's Cluster module", + "dist-tags": { + "latest": "0.0.2" + }, + "readme": "", + "maintainers": [ + { + "name": "richmarr", + "email": "richard.marr@gmail.com" + } + ], + "time": { + "modified": "2011-11-19T21:37:56.934Z", + "created": "2011-11-19T21:28:47.345Z", + "0.0.1": "2011-11-19T21:28:49.367Z", + "0.0.2": "2011-11-19T21:37:56.934Z" + }, + "author": { + "name": "Richard Marr", + "email": "richard.marr@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/richmarr/filechangeemitter.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/filechangeemitter/0.0.1", + "0.0.2": "http://registry.npmjs.org/filechangeemitter/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "307dc84a8e359bebdf7b9c98d692b3f6ce2d2e2d", + "tarball": "http://registry.npmjs.org/filechangeemitter/-/filechangeemitter-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "ba75e8eb9269754c851ffacadc9310122abf6090", + "tarball": "http://registry.npmjs.org/filechangeemitter/-/filechangeemitter-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/filechangeemitter/" + }, + "filed": { + "name": "filed", + "description": "Simplified file library.", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "mikeal", + "email": "mikeal.rogers@gmail.com" + } + ], + "time": { + "modified": "2011-11-23T08:39:54.927Z", + "created": "2011-10-28T03:11:23.055Z", + "0.0.1": "2011-10-28T03:11:25.782Z", + "0.0.2": "2011-10-31T02:00:44.689Z", + "0.0.3": "2011-10-31T05:15:16.463Z", + "0.0.4": "2011-10-31T05:17:46.325Z" + }, + "author": { + "name": "Mikeal Rogers", + "email": "mikeal.rogers@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mikeal/filed.git" + }, + "users": { + "naholyr": true + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/filed/0.0.1", + "0.0.2": "http://registry.npmjs.org/filed/0.0.2", + "0.0.3": "http://registry.npmjs.org/filed/0.0.3", + "0.0.4": "http://registry.npmjs.org/filed/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "ba768a2abb43860dd3bec99758bff5ea376bcf46", + "tarball": "http://registry.npmjs.org/filed/-/filed-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "8cd4373bf82aa61e133b7c3b617c3e27b9deef82", + "tarball": "http://registry.npmjs.org/filed/-/filed-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "a76661844ce81eb9c03eb7d6bdc5575f767e1d8e", + "tarball": "http://registry.npmjs.org/filed/-/filed-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "0c38ca11542d883651b037bbb3c25febb7b31b86", + "tarball": "http://registry.npmjs.org/filed/-/filed-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/filed/" + }, + "FileError": { + "name": "FileError", + "description": "HTML5 FileAPI `FileError` for Node.JS.", + "dist-tags": { + "latest": "0.10.0" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-07-15T20:19:01.370Z", + "created": "2011-07-15T20:19:00.990Z", + "0.10.0": "2011-07-15T20:19:01.370Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com" + }, + "versions": { + "0.10.0": "http://registry.npmjs.org/FileError/0.10.0" + }, + "dist": { + "0.10.0": { + "shasum": "3c333d5b3c198b89ee61920af3b6b191de08541b", + "tarball": "http://registry.npmjs.org/FileError/-/FileError-0.10.0.tgz" + } + }, + "keywords": [ + "html5", + "jsdom", + "file-api", + "FileError" + ], + "url": "http://registry.npmjs.org/FileError/" + }, + "fileify": { + "name": "fileify", + "description": "Browserify middleware to load entire files into javascript variables", + "dist-tags": { + "latest": "0.3.1" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-08-07T02:14:10.096Z", + "created": "2011-05-28T04:24:41.537Z", + "0.0.1": "2011-05-28T04:25:03.078Z", + "0.1.0": "2011-06-16T08:47:16.919Z", + "0.1.1": "2011-06-25T10:41:39.679Z", + "0.2.0": "2011-06-27T08:40:37.367Z", + "0.2.1": "2011-07-03T07:57:48.121Z", + "0.2.2": "2011-07-05T01:46:51.300Z", + "0.3.0": "2011-07-09T10:33:18.902Z", + "0.3.1": "2011-08-07T02:14:10.096Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-fileify.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/fileify/0.0.1", + "0.1.0": "http://registry.npmjs.org/fileify/0.1.0", + "0.1.1": "http://registry.npmjs.org/fileify/0.1.1", + "0.2.0": "http://registry.npmjs.org/fileify/0.2.0", + "0.2.1": "http://registry.npmjs.org/fileify/0.2.1", + "0.2.2": "http://registry.npmjs.org/fileify/0.2.2", + "0.3.0": "http://registry.npmjs.org/fileify/0.3.0", + "0.3.1": "http://registry.npmjs.org/fileify/0.3.1" + }, + "dist": { + "0.0.1": { + "shasum": "39e9c1989c904b83f8d4d99fbf9c61dfd5180482", + "tarball": "http://registry.npmjs.org/fileify/-/fileify-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "d1c45e74e14e762ebda92a6f3076598486ff6928", + "tarball": "http://registry.npmjs.org/fileify/-/fileify-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "0212b2ec102841c9bcb1c111342d0712809c0073", + "tarball": "http://registry.npmjs.org/fileify/-/fileify-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "dfeed4027d4ab552307abdaa6fdf843fcc99832d", + "tarball": "http://registry.npmjs.org/fileify/-/fileify-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "d1645c0a42253e0721b702bf3a2cce3f29c2e041", + "tarball": "http://registry.npmjs.org/fileify/-/fileify-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "90754bbf9dbdbcbfb4a66f21597646f63c241509", + "tarball": "http://registry.npmjs.org/fileify/-/fileify-0.2.2.tgz" + }, + "0.3.0": { + "shasum": "2281279381cf6938fab8f33d21c5448d61a42bde", + "tarball": "http://registry.npmjs.org/fileify/-/fileify-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "74fd7fff12938dfaf57b1b2395b2e2733c7d028a", + "tarball": "http://registry.npmjs.org/fileify/-/fileify-0.3.1.tgz" + } + }, + "keywords": [ + "browserify", + "bundle", + "middleware", + "file" + ], + "url": "http://registry.npmjs.org/fileify/" + }, + "FileList": { + "name": "FileList", + "description": "HTML5 FileAPI `FileList` for Node.JS.", + "dist-tags": { + "latest": "0.10.0" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-07-15T19:57:26.756Z", + "created": "2011-07-15T19:57:26.371Z", + "0.10.0": "2011-07-15T19:57:26.756Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com" + }, + "versions": { + "0.10.0": "http://registry.npmjs.org/FileList/0.10.0" + }, + "dist": { + "0.10.0": { + "shasum": "a2464b813a80e153fa140f56bcbab29ab8021e14", + "tarball": "http://registry.npmjs.org/FileList/-/FileList-0.10.0.tgz" + } + }, + "keywords": [ + "html5", + "jsdom", + "file-api", + "file" + ], + "url": "http://registry.npmjs.org/FileList/" + }, + "filepad": { + "name": "filepad", + "description": "FilePad is a file browser and editor built with node.js, coffeecript and nowpad", + "dist-tags": { + "latest": "0.5.0" + }, + "maintainers": [ + { + "name": "balupton", + "email": "b@lupton.cc" + } + ], + "time": { + "modified": "2011-07-08T01:49:51.054Z", + "created": "2011-05-18T06:16:51.674Z", + "0.1.0": "2011-05-18T06:16:53.158Z", + "0.2.0": "2011-05-19T02:40:28.267Z", + "0.2.1": "2011-05-19T02:43:12.675Z", + "0.2.2": "2011-05-20T01:59:23.036Z", + "0.3.0": "2011-05-20T03:24:15.296Z", + "0.3.1": "2011-05-20T05:00:36.259Z", + "0.3.2": "2011-05-20T05:18:05.716Z", + "0.3.3": "2011-05-20T05:29:10.903Z", + "0.4.0": "2011-05-23T02:46:43.573Z", + "0.4.1": "2011-05-23T02:49:39.119Z", + "0.5.0": "2011-07-08T01:49:51.054Z" + }, + "author": { + "name": "Benjamin Lupton", + "email": "b@lupton.cc", + "url": "http://balupton.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/balupton/filepad.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/filepad/0.1.0", + "0.2.0": "http://registry.npmjs.org/filepad/0.2.0", + "0.2.1": "http://registry.npmjs.org/filepad/0.2.1", + "0.2.2": "http://registry.npmjs.org/filepad/0.2.2", + "0.3.0": "http://registry.npmjs.org/filepad/0.3.0", + "0.3.1": "http://registry.npmjs.org/filepad/0.3.1", + "0.3.2": "http://registry.npmjs.org/filepad/0.3.2", + "0.3.3": "http://registry.npmjs.org/filepad/0.3.3", + "0.4.0": "http://registry.npmjs.org/filepad/0.4.0", + "0.4.1": "http://registry.npmjs.org/filepad/0.4.1", + "0.5.0": "http://registry.npmjs.org/filepad/0.5.0" + }, + "dist": { + "0.1.0": { + "shasum": "d6341ff74fe685616687aa5e474720aecce76249", + "tarball": "http://registry.npmjs.org/filepad/-/filepad-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "fbfba8fe40de2e173e4a6e978f472507237af782", + "tarball": "http://registry.npmjs.org/filepad/-/filepad-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "4ab1392fcb3d9c3e978b809537d989729a438a52", + "tarball": "http://registry.npmjs.org/filepad/-/filepad-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "872428bdd75f1a34fc54f4de4481b9ea67bcc1cd", + "tarball": "http://registry.npmjs.org/filepad/-/filepad-0.2.2.tgz" + }, + "0.3.0": { + "shasum": "7f0a76df42d2bb793dcac65df28f959760621956", + "tarball": "http://registry.npmjs.org/filepad/-/filepad-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "1a9a5a2538b4711dabbfa432f53fabdf7d20300a", + "tarball": "http://registry.npmjs.org/filepad/-/filepad-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "ee463b2d66395b0130acadc5fab91a7745cb2240", + "tarball": "http://registry.npmjs.org/filepad/-/filepad-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "cf02760098d1a2c2fe3908d6a70ab2b7b3c22a94", + "tarball": "http://registry.npmjs.org/filepad/-/filepad-0.3.3.tgz" + }, + "0.4.0": { + "shasum": "5b0e63891d60a22c668d197905c0df5e387edf31", + "tarball": "http://registry.npmjs.org/filepad/-/filepad-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "8e252c08f47a115c2665056a22d8c96758e2d45b", + "tarball": "http://registry.npmjs.org/filepad/-/filepad-0.4.1.tgz" + }, + "0.5.0": { + "shasum": "e9f92388563f8e14343c2c7e107b6e9bd8014710", + "tarball": "http://registry.npmjs.org/filepad/-/filepad-0.5.0.tgz" + } + }, + "keywords": [ + "javascript", + "coffeescript", + "files", + "ide", + "editor", + "browser" + ], + "url": "http://registry.npmjs.org/filepad/" + }, + "FileReader": { + "name": "FileReader", + "description": "HTML5 FileAPI `FileReader` for Node.JS.", + "dist-tags": { + "latest": "0.10.2" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-09-13T19:59:01.436Z", + "created": "2011-07-15T20:35:50.307Z", + "0.10.0": "2011-07-15T20:35:50.707Z", + "0.10.1": "2011-08-25T17:02:22.855Z", + "0.10.2": "2011-09-13T19:59:01.436Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com" + }, + "versions": { + "0.10.0": "http://registry.npmjs.org/FileReader/0.10.0", + "0.10.1": "http://registry.npmjs.org/FileReader/0.10.1", + "0.10.2": "http://registry.npmjs.org/FileReader/0.10.2" + }, + "dist": { + "0.10.0": { + "shasum": "72e7775637bae704f7b596bbad3f025606ffb31d", + "tarball": "http://registry.npmjs.org/FileReader/-/FileReader-0.10.0.tgz" + }, + "0.10.1": { + "shasum": "9629e775ccee9f8c5b96fe7e02259fa894213f67", + "tarball": "http://registry.npmjs.org/FileReader/-/FileReader-0.10.1.tgz" + }, + "0.10.2": { + "shasum": "1b117bdb6b5ed85e241ac3cb10f1b7086524e539", + "tarball": "http://registry.npmjs.org/FileReader/-/FileReader-0.10.2.tgz" + } + }, + "keywords": [ + "html5", + "jsdom", + "file-api", + "FileReader" + ], + "url": "http://registry.npmjs.org/FileReader/" + }, + "filerepl": { + "name": "filerepl", + "description": "A simple repl to work with a single file with auto reloading.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "naitik", + "email": "n@daaku.org" + } + ], + "author": { + "name": "Naitik Shah", + "email": "n@daaku.org" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/filerepl/0.0.1", + "0.0.2": "http://registry.npmjs.org/filerepl/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "eb7019e35eb970e2ae398bf0224ed5d2b5fcd570", + "tarball": "http://registry.npmjs.org/filerepl/-/filerepl-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "6a1a1f100926e21d7b7c6025d733599a773a9d2a", + "tarball": "http://registry.npmjs.org/filerepl/-/filerepl-0.0.2.tgz" + } + }, + "keywords": [ + "repl" + ], + "url": "http://registry.npmjs.org/filerepl/" + }, + "FileSaver": { + "name": "FileSaver", + "description": "HTML5 FileAPI `FileSaver` for Node.JS.", + "dist-tags": { + "latest": "0.10.0" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-07-15T20:31:39.660Z", + "created": "2011-07-15T20:31:39.300Z", + "0.10.0": "2011-07-15T20:31:39.660Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com" + }, + "versions": { + "0.10.0": "http://registry.npmjs.org/FileSaver/0.10.0" + }, + "dist": { + "0.10.0": { + "shasum": "7def3889944458042ef5df2e9064c88e3d2281c7", + "tarball": "http://registry.npmjs.org/FileSaver/-/FileSaver-0.10.0.tgz" + } + }, + "keywords": [ + "html5", + "jsdom", + "file-api", + "FileSaver" + ], + "url": "http://registry.npmjs.org/FileSaver/" + }, + "fileset": { + "name": "fileset", + "description": "Wrapper around glob and findit to allow multiple pattern matching and include-exclude", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "mklabs", + "email": "daniel.mickael@gmail.com" + } + ], + "time": { + "modified": "2011-09-04T18:29:58.439Z", + "created": "2011-09-04T18:29:56.730Z", + "0.0.1": "2011-09-04T18:29:58.439Z" + }, + "author": { + "name": "Mickael Daniel" + }, + "repository": { + "type": "git", + "url": "git://github.com/mklabs/node-fileset.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/fileset/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "a3f00ddd41ee44cc8e7ea9fbd645d721efcb564b", + "tarball": "http://registry.npmjs.org/fileset/-/fileset-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/fileset/" + }, + "filestore": { + "name": "filestore", + "description": "A File Store, could use in connect.session", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "fengmk2", + "email": "fengmk2@gmail.com" + } + ], + "time": { + "modified": "2011-05-17T13:18:31.848Z", + "created": "2011-04-21T04:10:17.496Z", + "0.1.0": "2011-04-21T04:10:18.401Z", + "0.1.1": "2011-04-28T10:24:27.943Z", + "0.1.2": "2011-05-17T12:31:03.489Z", + "0.1.3": "2011-05-17T13:18:31.848Z" + }, + "author": { + "name": "fengmk2", + "email": "fengmk2@gmail.com", + "url": "http://fengmk2.cnblogs.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/fengmk2/filestore.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/filestore/0.1.0", + "0.1.1": "http://registry.npmjs.org/filestore/0.1.1", + "0.1.2": "http://registry.npmjs.org/filestore/0.1.2", + "0.1.3": "http://registry.npmjs.org/filestore/0.1.3" + }, + "dist": { + "0.1.0": { + "shasum": "ead60f0604860fddbf09424a32b11a57eb2a10b6", + "tarball": "http://registry.npmjs.org/filestore/-/filestore-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "2948b13280e76830fb6b3fb3b16fad0107098848", + "tarball": "http://registry.npmjs.org/filestore/-/filestore-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "219ab6be24357dadc074170ecdfa133a8bd34cf3", + "tarball": "http://registry.npmjs.org/filestore/-/filestore-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "79a5a123e5ad752361069bc6fff94aca3d36c027", + "tarball": "http://registry.npmjs.org/filestore/-/filestore-0.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/filestore/" + }, + "filesystem-composer": { + "name": "filesystem-composer", + "description": "Library for composing promise based filesystems.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "gozala", + "email": "rfobic@gmail.com" + } + ], + "author": { + "name": "Irakli Gozalishvili", + "email": "rfobic@gmail.com", + "url": "http://jeditoolkit.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Gozala/filesystem-composer.git" + }, + "time": { + "modified": "2011-02-24T15:38:47.061Z", + "created": "2011-01-28T23:02:23.413Z", + "0.0.2": "2011-01-28T23:02:23.413Z", + "0.0.3": "2011-01-28T23:02:23.413Z", + "0.0.4": "2011-01-28T23:02:23.413Z", + "0.0.5": "2011-01-28T23:02:23.413Z", + "0.0.6": "2011-01-28T23:02:23.413Z", + "0.0.7": "2011-01-28T23:02:23.413Z", + "0.0.8": "2011-01-28T23:02:23.413Z", + "0.0.9": "2011-01-28T23:02:23.413Z", + "0.0.10": "2011-01-28T23:02:23.413Z", + "0.0.11": "2011-02-17T00:05:52.027Z", + "0.0.12": "2011-02-17T15:57:08.620Z", + "0.0.13": "2011-02-21T16:05:30.366Z", + "0.1.0": "2011-02-24T15:38:47.061Z" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/filesystem-composer/0.0.2", + "0.0.3": "http://registry.npmjs.org/filesystem-composer/0.0.3", + "0.0.4": "http://registry.npmjs.org/filesystem-composer/0.0.4", + "0.0.5": "http://registry.npmjs.org/filesystem-composer/0.0.5", + "0.0.6": "http://registry.npmjs.org/filesystem-composer/0.0.6", + "0.0.7": "http://registry.npmjs.org/filesystem-composer/0.0.7", + "0.0.8": "http://registry.npmjs.org/filesystem-composer/0.0.8", + "0.0.9": "http://registry.npmjs.org/filesystem-composer/0.0.9", + "0.0.10": "http://registry.npmjs.org/filesystem-composer/0.0.10", + "0.0.11": "http://registry.npmjs.org/filesystem-composer/0.0.11", + "0.0.12": "http://registry.npmjs.org/filesystem-composer/0.0.12", + "0.0.13": "http://registry.npmjs.org/filesystem-composer/0.0.13", + "0.1.0": "http://registry.npmjs.org/filesystem-composer/0.1.0" + }, + "dist": { + "0.0.2": { + "tarball": "http://registry.npmjs.org/filesystem-composer/-/filesystem-composer-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/filesystem-composer/-/filesystem-composer-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://registry.npmjs.org/filesystem-composer/-/filesystem-composer-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://registry.npmjs.org/filesystem-composer/-/filesystem-composer-0.0.5.tgz" + }, + "0.0.6": { + "tarball": "http://registry.npmjs.org/filesystem-composer/-/filesystem-composer-0.0.6.tgz" + }, + "0.0.7": { + "tarball": "http://registry.npmjs.org/filesystem-composer/-/filesystem-composer-0.0.7.tgz" + }, + "0.0.8": { + "tarball": "http://registry.npmjs.org/filesystem-composer/-/filesystem-composer-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "c2735be31ae898b1f6c1cbfff826611cc5446638", + "tarball": "http://registry.npmjs.org/filesystem-composer/-/filesystem-composer-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "cd88d33f7962cbe764a040db9aee27de276df673", + "tarball": "http://registry.npmjs.org/filesystem-composer/-/filesystem-composer-0.0.10.tgz" + }, + "0.0.11": { + "shasum": "769f1e184478f7142cc422d51e8c7b2c27fe4882", + "tarball": "http://registry.npmjs.org/filesystem-composer/-/filesystem-composer-0.0.11.tgz" + }, + "0.0.12": { + "shasum": "3b14608dc626887dc4b33608b6bf175e262cd68e", + "tarball": "http://registry.npmjs.org/filesystem-composer/-/filesystem-composer-0.0.12.tgz" + }, + "0.0.13": { + "shasum": "a8531c64d70d63117dd161c871b64aa65f95dd5e", + "tarball": "http://registry.npmjs.org/filesystem-composer/-/filesystem-composer-0.0.13.tgz" + }, + "0.1.0": { + "shasum": "bafdf3319cab9c915ed0229d403dc86edf1a3144", + "tarball": "http://registry.npmjs.org/filesystem-composer/-/filesystem-composer-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/filesystem-composer/" + }, + "fileup": { + "name": "fileup", + "description": "cross browser async file upload utility", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "jga", + "email": "me@jga.me" + } + ], + "time": { + "modified": "2011-12-02T01:39:20.185Z", + "created": "2011-12-02T01:39:18.976Z", + "0.0.1": "2011-12-02T01:39:20.185Z" + }, + "author": { + "name": "Greg Allen", + "email": "@jgaui", + "url": "http://jga.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/jgallen23/fileup.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/fileup/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "9fb0cccbef58eecf28967fc13189c2d6568f21ff", + "tarball": "http://registry.npmjs.org/fileup/-/fileup-0.0.1.tgz" + } + }, + "keywords": [ + "ender", + "image", + "file", + "ajax", + "upload" + ], + "url": "http://registry.npmjs.org/fileup/" + }, + "fileutils": { + "name": "fileutils", + "description": "Some utilities that diminish the suck of working with the file system in node", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "lukebayes", + "email": "lbayes@patternpark.com" + } + ], + "time": { + "modified": "2011-02-27T16:57:51.154Z", + "created": "2011-02-27T16:57:50.745Z", + "0.0.1": "2011-02-27T16:57:51.154Z" + }, + "author": { + "name": "Luke Bayes", + "email": "lbayes@patternpark.com", + "url": "http://lukebayes.com" + }, + "repository": { + "type": "git", + "url": "https://github.com/lukebayes/node-fileutils" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/fileutils/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "f834e977be33c31e04f589e782f9e1145dc0ad33", + "tarball": "http://registry.npmjs.org/fileutils/-/fileutils-0.0.1.tgz" + } + }, + "keywords": [ + "files", + "directories", + "fileutil" + ], + "url": "http://registry.npmjs.org/fileutils/" + }, + "filewatcher": { + "name": "filewatcher", + "description": "Watches files and executes program when file or directory is changed.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "minodisk", + "email": "daiuske.mino@gmail.com" + } + ], + "time": { + "modified": "2011-10-27T15:45:12.919Z", + "created": "2011-10-27T15:45:09.647Z", + "0.0.1": "2011-10-27T15:45:12.919Z" + }, + "author": { + "name": "Daisuke MINO", + "email": "daisuke.mino@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/filewatcher/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "5897a82189605f5c00af143c7ba137a4820c7ec0", + "tarball": "http://registry.npmjs.org/filewatcher/-/filewatcher-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/filewatcher/" + }, + "FileWriter": { + "name": "FileWriter", + "description": "HTML5 FileAPI `FileWriter` for Node.JS.", + "dist-tags": { + "latest": "0.10.0" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-07-15T20:31:09.987Z", + "created": "2011-07-15T20:31:09.611Z", + "0.10.0": "2011-07-15T20:31:09.987Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com" + }, + "versions": { + "0.10.0": "http://registry.npmjs.org/FileWriter/0.10.0" + }, + "dist": { + "0.10.0": { + "shasum": "87815032d6ddabd0abfb67ac1b2865d354407763", + "tarball": "http://registry.npmjs.org/FileWriter/-/FileWriter-0.10.0.tgz" + } + }, + "keywords": [ + "html5", + "jsdom", + "file-api", + "FileWriter" + ], + "url": "http://registry.npmjs.org/FileWriter/" + }, + "FileWriterSync": { + "name": "FileWriterSync", + "description": "HTML5 FileAPI `FileWriterSync` for Node.JS.", + "dist-tags": { + "latest": "0.10.0" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-07-15T20:32:27.964Z", + "created": "2011-07-15T20:32:27.605Z", + "0.10.0": "2011-07-15T20:32:27.964Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com" + }, + "versions": { + "0.10.0": "http://registry.npmjs.org/FileWriterSync/0.10.0" + }, + "dist": { + "0.10.0": { + "shasum": "ece541b7b43bce390b170ca7e1f6a75679f06ba2", + "tarball": "http://registry.npmjs.org/FileWriterSync/-/FileWriterSync-0.10.0.tgz" + } + }, + "keywords": [ + "html5", + "jsdom", + "file-api", + "FileWriterSync" + ], + "url": "http://registry.npmjs.org/FileWriterSync/" + }, + "filter": { + "name": "filter", + "description": "A stream filter for node, to create pipable filters for arbitary streams.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "Tim-Smart", + "email": "tim@fostle.com" + } + ], + "time": { + "modified": "2011-02-25T16:07:45.485Z", + "created": "2011-02-25T16:07:45.105Z", + "0.1.0": "2011-02-25T16:07:45.485Z" + }, + "author": { + "name": "Tim Smart", + "email": "tim@fostle.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/votizen/node-filter.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/filter/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "a21776d5c01d7a7f7c952a11e95c21eab6ed9bbe", + "tarball": "http://registry.npmjs.org/filter/-/filter-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/filter/" + }, + "filter-chain": { + "name": "filter-chain", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "teknopaul", + "email": "teknopaul@gmail.com" + } + ], + "time": { + "modified": "2011-08-15T18:29:33.859Z", + "created": "2011-07-20T18:43:38.788Z", + "1.0.0": "2011-07-20T18:43:39.702Z", + "1.0.1": "2011-08-15T18:29:33.859Z" + }, + "description": "request chaining ala Servlets filters", + "versions": { + "1.0.0": "http://registry.npmjs.org/filter-chain/1.0.0", + "1.0.1": "http://registry.npmjs.org/filter-chain/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "77af6974e2247d79b5c4a37836700797a6624421", + "tarball": "http://registry.npmjs.org/filter-chain/-/filter-chain-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "ffacf8853263aa11acef4f777a7a90b13e514e47", + "tarball": "http://registry.npmjs.org/filter-chain/-/filter-chain-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/filter-chain/" + }, + "filterchain": { + "name": "filterchain", + "description": "perform work before and after an operation", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "# filterchain\n\nPerform work before and/or after an operation.\n\n## Disclaimer\n\nThis is not meant to be used as async flow control, but is merely a way to dynamically upgrade the functionality of getters and setters.\n\nThis also means that errors will not stop the chain of events here, you must specifically cancel the current layer in order to avoid performing the `core` action.\n\n## Learn by example\n\nThe basic operation of filterchain goes something like this:\n\n```javascript\nvar chain = require('filterchain').createChain([\n function(data, next, cancel) {\n // forward to the next layer\n next('override');\n } // you can add more functions here\n]);\n\nchain('initial data', function(data) {\n console.log(data); // outputs 'override'\n});\n\n```\n\nand here is the outer api\n\n\n```javascript\n// Create a chain with no layers and no core function\nvar chain = filterchain.createChain(/* layers */, /* core */);\n```\n\nWhere `chain` is a function that accepts an optional `data` and a optional `callback` with the arguments `errors` and `data`. The `callback` is called after the filter chain has been executed.\n\n`data` can be any javascript value\n\n```javascript\n// Excerpt to show what the chain callback looks like.\n// `errors` is either null (no errors) or an array\nchain('some optional data', function(errors, data) {})\n```\n\nAnd `layers` is an array of functions\n\n```javascript\nvar chain = require('filterchain').createChain([\n function(data, next, cancel) {\n\n // just forward the data, this is basically a no-op\n next(data);\n }\n], core);\n```\n`next` is a function with the signature `next(data[, bubbleFunction])`\n`cancel` is a function with the signature `cancel([error])`\n\nAnd `core` is the function that will be run after the capture phase but before the bubble phase. The `core` method should accept `data` and `fn`.\n\n```javascript\nvar chain = require('filterchain').createChain([], function(data, fn) {\n\n // send the incoming back the same way it came\n if (data === true) {\n fn(null, 'tricked ya!')\n } else {\n fn('error!')\n }\n\n});\n\nchain(true, function(errors, data) {\n console.log(data); // outputs: 'tricked ya!'\n});\n\nchain(false, function(errors, data) {\n console.log(errors[0]); // outputs: 'error!'\n console.log(data); // outputs: undefined\n});\n\n```\n\n## What (else) does it do?\n\nIn a sense, filter chains are similar to onions. Passing data into the outer husk causes it to flow down through each layer toward the core. Each function (aka: layer) along the path as a chance to either manipulate or validate the data before forwarding it onto the next layer or canceling it.\n\n### Manipulate and forward data\n\n```javascript\nvar chain = require('filterchain').createChain([\n function(data, next, cancel) {\n\n // ignore the incoming data and forward something more\n // to our liking\n next('pass this along');\n }\n]);\n\nchain(function(errors, data) {\n console.log(data); // outputs 'pass this along'\n});\n```\n\n### Cancel + bubble\n\nCancelling causes the flow of the chain to be reversed immediately.\n\n```javascript\nvar chain = require('filterchain').createChain([\n function(data, next, cancel) {\n\n // the first argument to cancel is an optional error. The error\n // will be collected and sent to the final callback for processing\n cancel('fat chance');\n }\n], function(data, fn) {\n\n // this is never called\n fn('some other thing');\n});\n\nchain(function(errors, data) {\n console.log(errors[0]); // ouputs 'fat chance'\n});\n\n```\n\n### Post process data\n\nPassing a function as the second argument to `next` will cause the filter chain to call that method during the bubble phase\n\n```javascript\nvar fc = require('filterchain');\nvar chain = fc.createChain([\n function(data, next, cancel) {\n next(data, function(data, done) {\n // You can return a value here or perform\n // an async operation and send the result through done\n done(null, data + ' + post processing')\n });\n }\n]);\n\nchain('initial value', function(errors, data) {\n console.log(data); // outputs 'initial value + post processing'\n});\n\n```\n\nThe first argument to `done` is an error and the second is the data that will be bubbled back out to the outer husk of the filter chain.\n\n### Compose filter chains\n\n```javascript\n\nvar inner = require('filterchain').createChain([\n function(data, next) {\n next(data + ' (inner capture ->', function(outgoingData, done) {\n done(null, outgoingData + ' inner bubble)');\n });\n }\n], function(data, fn) {\n fn(null, data + '[inner core] ->')\n})\n\nvar outer = require('filterchain').createChain([\n function(data, next) {\n next(data + 'outer capture ->', function(outgoingData, done) {\n done(null, outgoingData + ' outer bubble');\n });\n },\n inner, // add a filterchain into the filterchain.. oh my!\n\n], function(data, fn) {\n fn(null, data + ' [outer core] ->')\n});\n\nouter('run: ', function(errors, data) {\n // outputs: 'run: outer capture -> (inner capture ->[inner core] -> inner bubble) [outer core] -> outer bubble'\n console.log(data);\n})\n```\n\n## Contrived Use Cases\n\n### User creation example\n\n```javascript\nvar createUser = require('filterchain').createChain([\n function unique(username, next, cancel) {\n db.exists({ username : username }, function(err, result) {\n if (err) {\n cancel(err);\n } else if (result === true) {\n cancel('sorry, that username already exists')\n } else {\n next(username);\n }\n });\n }\n], function(data, fn) {\n db.save({ username : username }, fn);\n});\n\ncreateUser('tmpvar', function(errors, data) {\n console.log(errors[0]); // outputs 'sorry, that username already exists'\n});\n\ncreateUser('tmpvar-not-taken', function(errors, data) {\n console.log(errors); // outputs null\n console.log(data); // outputs '{ _id : 2, username: \"tmpvar-not-taken\" }'\n});\n```\n\n### Calculated attriutes in backbone\n\n__note__: this is purely conceptual\n\n```javascript\n\nvar Rectangle = Backbone.Model.extend({\n initialize : function() {\n this.calculatedAttributes = {\n area : filterchain.createChain(function(data, fn) {\n // Not only is the return value calculated, but you\n // can add filters and post processing to your values.\n //\n // Simply add filters to the chain during creation or\n // chain.layers.push(function(data, next, cancel) {});\n\n fn(data.width * data.height);\n });\n }\n },\n get : function(key) {\n var that = this;\n\n if (this.calculatedAttributes[key]) {\n this.calculatedAttributes[key](that.toJSON(), function(result) {\n value = result;\n });\n\n if (typeof value !== 'undefined') {\n return value;\n }\n }\n\n // fall back to the default backbone behavior\n return Backbone.Model.prototype.get.call(this, key);\n }\n});\n\nvar a = new Rectangle({ x: 10, y : 4 });\nconsole.log(a.get('area')); // outputs '40'\n\n```\n\n## Install\n\n### Node.js\n\n npm install filterchain\n\n### Browser\n\nworks with a plain ol' script tag and access it via `window.createChain`\n", + "maintainers": [ + { + "name": "tmpvar", + "email": "tmpvar@gmail.com" + } + ], + "time": { + "modified": "2011-11-18T03:55:32.526Z", + "created": "2011-11-18T03:55:30.385Z", + "0.1.0": "2011-11-18T03:55:32.526Z" + }, + "author": { + "name": "Elijah Insua", + "email": "tmpvar@gmail.com", + "url": "http://tmpvar.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/tmpvar/filterchain.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/filterchain/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "ccd812afa8c91668382804842ebbbbdfa63dbd7d", + "tarball": "http://registry.npmjs.org/filterchain/-/filterchain-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/filterchain/" + }, + "filtered-proxy": { + "name": "filtered-proxy", + "description": "http proxy that offer mime based hook to modify original stream", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "node-proxy - A Simple HTTP[S] Proxy Using Node.js\n=================================================\n\nVery bare HTTP and SSL proxy implementation using node.js. \nThe primary goal of this project was to get acquainted with \nnode.js. \n\n* [node.js](http://nodejs.org/)\n", + "maintainers": [ + { + "name": "yanhkim", + "email": "yanhkim@gmail.com" + } + ], + "time": { + "modified": "2011-11-27T14:16:12.867Z", + "created": "2011-11-27T14:16:08.347Z", + "0.0.1": "2011-11-27T14:16:12.867Z" + }, + "author": { + "name": "Namhoon Kim", + "email": "yanhkim@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/yanhkim/node-proxy.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/filtered-proxy/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "9d7e89182188c737b201791f6ecd58f8b67fbe52", + "tarball": "http://registry.npmjs.org/filtered-proxy/-/filtered-proxy-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/filtered-proxy/" + }, + "fin": { + "name": "fin", + "description": "Realtime data layer for web applications", + "dist-tags": { + "latest": "0.2.16" + }, + "maintainers": [ + { + "name": "marcuswestin", + "email": "narcvs@gmail.com" + } + ], + "time": { + "modified": "2011-08-17T20:53:58.284Z", + "created": "2011-03-25T19:47:05.703Z", + "0.2.5": "2011-03-25T19:47:05.906Z", + "0.2.6": "2011-03-26T20:00:52.877Z", + "0.2.7": "2011-03-26T20:33:25.010Z", + "0.2.8": "2011-03-26T20:48:09.237Z", + "0.2.9": "2011-03-26T21:02:11.762Z", + "0.2.10": "2011-03-26T21:21:47.490Z", + "0.2.11": "2011-03-28T04:09:27.894Z", + "0.2.13": "2011-03-28T04:39:50.722Z", + "0.2.14": "2011-03-28T21:59:53.641Z", + "0.2.16": "2011-08-17T20:53:58.284Z" + }, + "author": { + "name": "Marcus Westin", + "email": "narcvs@gmail.com", + "url": "http://marcuswest.in" + }, + "repository": { + "type": "git", + "url": "git://github.com/marcuswestin/fin.git" + }, + "versions": { + "0.2.5": "http://registry.npmjs.org/fin/0.2.5", + "0.2.6": "http://registry.npmjs.org/fin/0.2.6", + "0.2.7": "http://registry.npmjs.org/fin/0.2.7", + "0.2.8": "http://registry.npmjs.org/fin/0.2.8", + "0.2.9": "http://registry.npmjs.org/fin/0.2.9", + "0.2.10": "http://registry.npmjs.org/fin/0.2.10", + "0.2.11": "http://registry.npmjs.org/fin/0.2.11", + "0.2.13": "http://registry.npmjs.org/fin/0.2.13", + "0.2.14": "http://registry.npmjs.org/fin/0.2.14", + "0.2.16": "http://registry.npmjs.org/fin/0.2.16" + }, + "dist": { + "0.2.5": { + "shasum": "7fd17047f9e25a15855530c2c4880a7ec1be1f32", + "tarball": "http://registry.npmjs.org/fin/-/fin-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "6293d2cd7f93898527f7fa9c6d99c0fa6d85726c", + "tarball": "http://registry.npmjs.org/fin/-/fin-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "0aea9b249f78cf68026ffa73aaf887993a277ad4", + "tarball": "http://registry.npmjs.org/fin/-/fin-0.2.7.tgz" + }, + "0.2.8": { + "shasum": "114822cd5bc1d15342f863a30fddff0bb68eabcb", + "tarball": "http://registry.npmjs.org/fin/-/fin-0.2.8.tgz" + }, + "0.2.9": { + "shasum": "843fc34d3034720a5851f845d12d29da757052c0", + "tarball": "http://registry.npmjs.org/fin/-/fin-0.2.9.tgz" + }, + "0.2.10": { + "shasum": "3259e7877bdceb7c9d2cdf64e4a6e9f3748a6e28", + "tarball": "http://registry.npmjs.org/fin/-/fin-0.2.10.tgz" + }, + "0.2.11": { + "shasum": "1bdbd20c564db0ad62212ea0674055b38c57ca25", + "tarball": "http://registry.npmjs.org/fin/-/fin-0.2.11.tgz" + }, + "0.2.13": { + "shasum": "9578d8e034a3d35fd2c717b88caa37ead0b38490", + "tarball": "http://registry.npmjs.org/fin/-/fin-0.2.13.tgz" + }, + "0.2.14": { + "shasum": "c0648611c613c65aaeb9fd2411828f08ee0df21b", + "tarball": "http://registry.npmjs.org/fin/-/fin-0.2.14.tgz", + "bin": { + "0.4-darwin-10.7.0": { + "shasum": "8102da1bf07c3a7e374105bb6632b04e14e48958", + "tarball": "http://registry.npmjs.org/fin/-/fin-0.2.14-0.4-darwin-10.7.0.tgz" + } + } + }, + "0.2.16": { + "shasum": "74e63f99f6aaafb27fd7b8b75dbc1418728c46c2", + "tarball": "http://registry.npmjs.org/fin/-/fin-0.2.16.tgz" + } + }, + "url": "http://registry.npmjs.org/fin/" + }, + "fin-id": { + "name": "fin-id", + "description": "Finland Identity Number Library", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "jhh", + "email": "jhh@sendanor.com" + } + ], + "time": { + "modified": "2011-11-04T17:11:53.151Z", + "created": "2011-07-29T15:51:32.580Z", + "0.0.0": "2011-07-29T15:51:33.591Z", + "0.0.1": "2011-11-04T17:11:53.151Z" + }, + "author": { + "name": "Jaakko-Heikki Heusala", + "email": "jheusala@iki.fi", + "url": "http://www.jhh.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/jheusala/node-fin-id.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/fin-id/0.0.0", + "0.0.1": "http://registry.npmjs.org/fin-id/0.0.1" + }, + "dist": { + "0.0.0": { + "shasum": "dec9abcda301e4d131fec598493d7c2979d7996b", + "tarball": "http://registry.npmjs.org/fin-id/-/fin-id-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "41cc9996a49a95fe05e25577b036eb8a6fe70fe9", + "tarball": "http://registry.npmjs.org/fin-id/-/fin-id-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/fin-id/" + }, + "finance": { + "name": "finance", + "description": "Module for portfolio optimization, prices and options", + "dist-tags": { + "latest": "1.2.11" + }, + "maintainers": [ + { + "name": "icebox", + "email": "albertosantini@gmail.com" + } + ], + "time": { + "modified": "2011-11-20T15:51:58.582Z", + "created": "2011-09-19T20:21:34.115Z", + "1.0.0": "2011-09-19T20:21:38.712Z", + "1.1.0": "2011-09-24T09:50:39.883Z", + "1.2.0": "2011-09-25T17:54:14.155Z", + "1.2.1": "2011-09-28T16:52:22.078Z", + "1.2.2": "2011-09-29T05:37:11.987Z", + "1.2.3": "2011-10-01T08:25:54.232Z", + "1.2.4": "2011-10-02T09:38:07.965Z", + "1.2.5": "2011-11-13T21:25:48.715Z", + "1.2.6": "2011-11-14T10:54:37.878Z", + "1.2.7": "2011-11-15T08:33:17.539Z", + "1.2.8": "2011-11-17T10:54:26.340Z", + "1.2.9": "2011-11-17T14:11:04.139Z", + "1.2.10": "2011-11-17T22:37:42.381Z", + "1.2.11": "2011-11-20T15:51:58.582Z" + }, + "author": { + "name": "Alberto Santini" + }, + "repository": { + "type": "git", + "url": "git://github.com/albertosantini/node-finance.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/finance/1.0.0", + "1.1.0": "http://registry.npmjs.org/finance/1.1.0", + "1.2.0": "http://registry.npmjs.org/finance/1.2.0", + "1.2.1": "http://registry.npmjs.org/finance/1.2.1", + "1.2.2": "http://registry.npmjs.org/finance/1.2.2", + "1.2.3": "http://registry.npmjs.org/finance/1.2.3", + "1.2.4": "http://registry.npmjs.org/finance/1.2.4", + "1.2.5": "http://registry.npmjs.org/finance/1.2.5", + "1.2.6": "http://registry.npmjs.org/finance/1.2.6", + "1.2.7": "http://registry.npmjs.org/finance/1.2.7", + "1.2.8": "http://registry.npmjs.org/finance/1.2.8", + "1.2.9": "http://registry.npmjs.org/finance/1.2.9", + "1.2.10": "http://registry.npmjs.org/finance/1.2.10", + "1.2.11": "http://registry.npmjs.org/finance/1.2.11" + }, + "dist": { + "1.0.0": { + "shasum": "203db93ecbc4e3170ba5c688429b7de05b7fae28", + "tarball": "http://registry.npmjs.org/finance/-/finance-1.0.0.tgz" + }, + "1.1.0": { + "shasum": "d5ba65d56de341b661d1f91cd81c2d40b0a584d8", + "tarball": "http://registry.npmjs.org/finance/-/finance-1.1.0.tgz" + }, + "1.2.0": { + "shasum": "aa265c293e80de6b202590eef3b13c2edae76426", + "tarball": "http://registry.npmjs.org/finance/-/finance-1.2.0.tgz" + }, + "1.2.1": { + "shasum": "964610349171d13606d7e94c6ec7887dd8d9cc8e", + "tarball": "http://registry.npmjs.org/finance/-/finance-1.2.1.tgz" + }, + "1.2.2": { + "shasum": "fac91bb665b8f19d03d87306c0313c6169edf099", + "tarball": "http://registry.npmjs.org/finance/-/finance-1.2.2.tgz" + }, + "1.2.3": { + "shasum": "a69223bf5a0b84b699cf0fd0292e976d0d372c4d", + "tarball": "http://registry.npmjs.org/finance/-/finance-1.2.3.tgz" + }, + "1.2.4": { + "shasum": "ce12920bcb616756d47e6e627c0cd68968f2a50f", + "tarball": "http://registry.npmjs.org/finance/-/finance-1.2.4.tgz" + }, + "1.2.5": { + "shasum": "e282c44bc136b38c3ddcafc58dd918e038dbb7b7", + "tarball": "http://registry.npmjs.org/finance/-/finance-1.2.5.tgz" + }, + "1.2.6": { + "shasum": "9a2ce26ffee3c4a5cb7f484f7939869f54770a71", + "tarball": "http://registry.npmjs.org/finance/-/finance-1.2.6.tgz" + }, + "1.2.7": { + "shasum": "c7bfedd1364994cfffa9255d7e44090e67571524", + "tarball": "http://registry.npmjs.org/finance/-/finance-1.2.7.tgz" + }, + "1.2.8": { + "shasum": "4ace0841e7f4f231412209a97284fe10243dc2f2", + "tarball": "http://registry.npmjs.org/finance/-/finance-1.2.8.tgz" + }, + "1.2.9": { + "shasum": "acca73c87f217768c8c98291305de830f9da8c18", + "tarball": "http://registry.npmjs.org/finance/-/finance-1.2.9.tgz" + }, + "1.2.10": { + "shasum": "fc6e27135390015e2eb77cbf2ed606fd305087d2", + "tarball": "http://registry.npmjs.org/finance/-/finance-1.2.10.tgz" + }, + "1.2.11": { + "shasum": "3d8345b30743bc1273d91f1aef37e5deef060169", + "tarball": "http://registry.npmjs.org/finance/-/finance-1.2.11.tgz" + } + }, + "keywords": [ + "finance", + "portfolio", + "optimization", + "yahoo" + ], + "url": "http://registry.npmjs.org/finance/" + }, + "finder": { + "name": "finder", + "description": "Highly configurable file finder for NodeJS (works synchronously or asynchronously)", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "as-jpolo", + "email": "julien.polo@altshift.fr" + } + ], + "author": { + "name": "Julien Polo", + "email": "julien.polo@gmail.com", + "url": "http://github.com/jpolo" + }, + "repository": { + "type": "git", + "url": "git://github.com/jpolo/node-finder.git" + }, + "time": { + "modified": "2011-08-01T21:31:08.533Z", + "created": "2011-03-09T15:18:36.078Z", + "0.1.0": "2011-03-09T15:18:36.078Z", + "0.1.1": "2011-03-09T15:18:36.078Z", + "0.1.2": "2011-03-09T15:18:36.078Z", + "0.1.3": "2011-03-09T15:18:36.078Z", + "0.1.3-1": "2011-03-09T15:18:36.078Z", + "0.1.4": "2011-08-01T21:31:08.533Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/finder/0.1.0", + "0.1.1": "http://registry.npmjs.org/finder/0.1.1", + "0.1.2": "http://registry.npmjs.org/finder/0.1.2", + "0.1.3": "http://registry.npmjs.org/finder/0.1.3", + "0.1.3-1": "http://registry.npmjs.org/finder/0.1.3-1", + "0.1.4": "http://registry.npmjs.org/finder/0.1.4" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/finder/-/finder-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://registry.npmjs.org/finder/-/finder-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "92cbbae6303145d0b77e884e5bfa80a3ae143bd0", + "tarball": "http://registry.npmjs.org/finder/-/finder-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "1e585eafcdd08dab7dc6a08aea671126a66d779d", + "tarball": "http://registry.npmjs.org/finder/-/finder-0.1.3.tgz" + }, + "0.1.3-1": { + "shasum": "94550bd3bf15fd839f2f29e5987cb170b2c4b2ff", + "tarball": "http://registry.npmjs.org/finder/-/finder-0.1.3-1.tgz" + }, + "0.1.4": { + "shasum": "1a439a5c2f41f68022662c0dee67a09e18c8adbc", + "tarball": "http://registry.npmjs.org/finder/-/finder-0.1.4.tgz" + } + }, + "keywords": [ + "file", + "finder", + "walk", + "recursive" + ], + "url": "http://registry.npmjs.org/finder/" + }, + "findit": { + "name": "findit", + "description": "Walk a directory tree.", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-12-05T20:15:37.960Z", + "created": "2011-02-02T11:57:43.745Z", + "0.0.1": "2011-02-02T11:57:44.134Z", + "0.0.2": "2011-02-02T12:12:50.983Z", + "0.0.3": "2011-02-26T13:07:54.400Z", + "0.0.4": "2011-05-28T01:29:23.365Z", + "0.0.5": "2011-06-17T19:00:57.056Z", + "0.1.0": "2011-06-17T21:52:44.172Z", + "0.1.1": "2011-07-09T09:22:19.553Z", + "0.1.2": "2011-12-05T20:15:37.960Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-findit.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/findit/0.0.1", + "0.0.2": "http://registry.npmjs.org/findit/0.0.2", + "0.0.3": "http://registry.npmjs.org/findit/0.0.3", + "0.0.4": "http://registry.npmjs.org/findit/0.0.4", + "0.0.5": "http://registry.npmjs.org/findit/0.0.5", + "0.1.0": "http://registry.npmjs.org/findit/0.1.0", + "0.1.1": "http://registry.npmjs.org/findit/0.1.1", + "0.1.2": "http://registry.npmjs.org/findit/0.1.2" + }, + "dist": { + "0.0.1": { + "shasum": "18decbe277d982776541d6736ac9aa70a2a562ae", + "tarball": "http://registry.npmjs.org/findit/-/findit-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "e471665fac9445a990f4380be5a3e73800d68442", + "tarball": "http://registry.npmjs.org/findit/-/findit-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "0831fb0cc35b98aa142f2fbea37d9b95da0cab4e", + "tarball": "http://registry.npmjs.org/findit/-/findit-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "a7efad9bdae28ed39f1d9d99a8445360e9dd2496", + "tarball": "http://registry.npmjs.org/findit/-/findit-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "1da9daef8d38e6cd9ca1f5757d6813cf3167d2c0", + "tarball": "http://registry.npmjs.org/findit/-/findit-0.0.5.tgz" + }, + "0.1.0": { + "shasum": "d9fdd35743858caaa82d3e53adb924a2417e9b2e", + "tarball": "http://registry.npmjs.org/findit/-/findit-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "b14f8289de2e3f0571ba9a73033a046b462dd81b", + "tarball": "http://registry.npmjs.org/findit/-/findit-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "ac7fe600cd6a32a35672836b74cf6f1dde2e11f8", + "tarball": "http://registry.npmjs.org/findit/-/findit-0.1.2.tgz" + } + }, + "keywords": [ + "find", + "walk", + "directory", + "recursive", + "tree" + ], + "url": "http://registry.npmjs.org/findit/" + }, + "fingerprint": { + "name": "fingerprint", + "description": "Stylus plugin to append fingerprints to your images", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "lucasmazza", + "email": "luc4smazza@gmail.com" + } + ], + "time": { + "modified": "2011-06-22T02:25:46.266Z", + "created": "2011-06-22T02:25:44.689Z", + "0.0.1": "2011-06-22T02:25:46.266Z" + }, + "author": { + "name": "Lucas Mazza", + "email": "luc4smazza@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/lucasmazza/fingerprint.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/fingerprint/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "8ad7e2bfd46ca58c0a62e611524feab3106db889", + "tarball": "http://registry.npmjs.org/fingerprint/-/fingerprint-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/fingerprint/" + }, + "finjector": { + "name": "finjector", + "description": "Injects a string to a file between given delimiters.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "tmedema", + "email": "tommedema@gmail.com" + } + ], + "time": { + "modified": "2011-09-15T19:48:30.493Z", + "created": "2011-09-15T19:17:09.190Z", + "0.1.0": "2011-09-15T19:17:10.730Z", + "0.1.1": "2011-09-15T19:48:30.493Z" + }, + "author": { + "name": "Tom Medema", + "email": "tommedema@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/tommedema/node-finjector.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/finjector/0.1.0", + "0.1.1": "http://registry.npmjs.org/finjector/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "e7108ae02578545764b5d779cca462167935dbda", + "tarball": "http://registry.npmjs.org/finjector/-/finjector-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "1af43c75acb36a03602c40b5cea8a175a331f0f4", + "tarball": "http://registry.npmjs.org/finjector/-/finjector-0.1.1.tgz" + } + }, + "keywords": [ + "inject", + "file", + "delimiter" + ], + "url": "http://registry.npmjs.org/finjector/" + }, + "fire": { + "name": "fire", + "description": "An experimental Framework that uses JSON structures to simplify the definition of complex behaviors from asynchronous sources in Node.js", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "# fire.js\n[![Build Status](https://secure.travis-ci.org/firejs/fire.png)](http://travis-ci.org/firejs/fire)\n\nFire.js is an experimental framework that aims to reduce the amount of javascript code and callbacks when developing in Node.js by the orchestration of tiny building blocks called Expressions defined in JSON documents.\n\n### Example\n\nExample JSON app using a [MongoDB](http://www.mongodb.org/) database and the [MongoDB expressions](https://github.com/firebaseco/mongodb-expressions):\n\n`MongoApp.fjson`\n\n {\n\t\t\"name\": \"MongoApp.Main\",\n\t\t\"json\": {\n\t\t \"enabledEmails\": {\n\t\t\t\t\"@Mongo.Find(users)\": {\n\t\t\t\t\t\"conditions\": {\n\t\t\t\t\t\t\"enabled\": true\t\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"@each\": {\n\t\t\t\t\t\"@get(CurrentItem.email)\": null\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"disabledEmails\": {\n\t\t\t\t\"@Mongo.Find(users)\": {\n\t\t\t\t\t\"conditions\": {\n\t\t\t\t\t\t\"enabled\": false\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t\"@each\": {\n\t\t\t\t\t\"@get(CurrentItem.email)\": null\n\t\t\t\t}\n\t\t\t}\n\t }\n\t}\n\nThe result will be:\n\n\t{\n\t\t\"enabledEmails\": [\"email1@example.com\", \"email2@example.com\", \"email3@example.com\"],\n\t\t\"disabledEmails\": [\"email4@example.com\", \"email5@example.com\", \"email6@example.com\"]\n\t}\n\n## Installation\n\nThe easiest way to install fire.js is using the awesome Node Package Manager.\n\n npm install -g fire\n\nThe `firejs` command line utility should be ready to run your scripts.\n\n## Learn more\n\n+ [Tutorials](https://github.com/firejs/fire/wiki/Tutorials)\n\n+ [Wiki](https://github.com/firejs/fire/wiki)\n\n+ [Official Blog](http://firejs.firebase.co)\n\n+ [Fire.js IDE](https://github.com/firejs/fire-ide)\n\n## Supported Node Versions\n\n* 0.4.5 and above\n* 0.5\n* 0.6\n\n## Cloning the Repository\n\n git clone https://github.com/firejs/fire.git\n\n\n## Tests\n\n npm test\n\n## Contributors\n\n* Johan (author). Email: *johan@firebase.co*\n\n## MIT License\n\nCopyright (c) 2011 Firebase.co and Contributors - http://www.firebase.co\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.", + "maintainers": [ + { + "name": "firebaseco", + "email": "npm@firebase.co" + } + ], + "time": { + "modified": "2011-12-04T08:31:14.890Z", + "created": "2011-12-04T08:31:13.196Z", + "0.1.0": "2011-12-04T08:31:14.890Z" + }, + "author": { + "name": "Firebase.co", + "email": "npm@firebase.co", + "url": "http://www.firebase.co" + }, + "repository": { + "type": "git", + "url": "git://github.com/firejs/fire.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/fire/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "9547ca4d656cd93eb77cceaf9fa0e615cba11115", + "tarball": "http://registry.npmjs.org/fire/-/fire-0.1.0.tgz" + } + }, + "keywords": [ + "JSON", + "framework", + "runtime" + ], + "url": "http://registry.npmjs.org/fire/" + }, + "fire-assert": { + "name": "fire-assert", + "description": "Assertion Expressions for fire.js", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "#fire-assert\n\nAssertion expressions for [fire.js](https://github.com/firejs/firejs)\n***\n\n## Installing\n\n### using NPM\n\n npm install fire-assert\n\n### using Github(unstable)\nIn the root of your project run:\n\n git clone git://github.com/firejs/fire-assert.git node_modules/fire-assert\n\n## Expressions\n\n* @Assert.Empty\n* @Assert.NotEmpty\n* @Assert.Empty\n* @Assert.Error\n\n## Localization Support\n\n`fire-assert` has built-in support for a small set of languages via [fire-i18n](https://github.com/firejs/fire-i18n), [check the wiki for more information](https://github.com/firejs/fire-assert/wiki/Localization).\n\n## Cloning the Repository\n\n git clone git://github.com/firejs/fire-assert.git\n\n## MIT License\n\nCopyright (c) 2011 Firebase.co - http://www.firebase.co\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.", + "maintainers": [ + { + "name": "firebaseco", + "email": "npm@firebase.co" + } + ], + "time": { + "modified": "2011-11-21T07:46:59.624Z", + "created": "2011-11-21T07:46:58.835Z", + "0.1.0": "2011-11-21T07:46:59.624Z" + }, + "author": { + "name": "Firebase.co", + "email": "npm@firebase.co", + "url": "http://www.firebase.co" + }, + "repository": { + "type": "git", + "url": "git://github.com/firejs/fire-assert.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/fire-assert/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "717667ac72c536483b11ee17d06e7743698c00c1", + "tarball": "http://registry.npmjs.org/fire-assert/-/fire-assert-0.1.0.tgz" + } + }, + "keywords": [ + "assert", + "fire", + "fire.js", + "validation", + "ignitable" + ], + "url": "http://registry.npmjs.org/fire-assert/" + }, + "fire-commons": { + "name": "fire-commons", + "description": "Common Expressions for fire.js", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "#fire-commons\n[![Build Status](https://secure.travis-ci.org/firejs/fire-commons.png)](http://travis-ci.org/firejs/fire-commons)\n\nCommon expressions for [fire.js](https://github.com/firejs/fire).\n***\n\n## Installing\n\n### using NPM\n\n npm install fire-commons\n\n## Expressions\n\n* @Commons.JSON.Parse\n* @Commons.JSON.Stringify\n* @Commons.Object.Keys\n* @Commons.Object.SetKey\n* @Commons.QueryString.Stringify\n\n## Cloning the Repository\n\n git clone git://github.com/firejs/fire-commons.git\n\n### Contributors\n\n* Johan (author). Email: *johan@firebase.co*\n\n## MIT License\n\nCopyright (c) 2011 Firebase.co - http://www.firebase.co\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.", + "maintainers": [ + { + "name": "firebaseco", + "email": "npm@firebase.co" + } + ], + "time": { + "modified": "2011-12-06T07:34:21.166Z", + "created": "2011-12-06T07:34:19.447Z", + "0.1.0": "2011-12-06T07:34:21.166Z" + }, + "author": { + "name": "Firebase.co", + "email": "npm@firebase.co", + "url": "http://www.firebase.co" + }, + "repository": { + "type": "git", + "url": "git://github.com/firejs/fire-commons.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/fire-commons/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "2f60c5058f56b12c2e527395e6d20d6eec1e4a9b", + "tarball": "http://registry.npmjs.org/fire-commons/-/fire-commons-0.1.0.tgz" + } + }, + "keywords": [ + "fire", + "fire.js", + "JSON", + "QueryString", + "Stringify", + "ignitable" + ], + "url": "http://registry.npmjs.org/fire-commons/" + }, + "fire-http": { + "name": "fire-http", + "description": "HTTP expressions for fire.js", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "#fire-http\n[![Build Status](https://secure.travis-ci.org/firejs/fire-http.png)](http://travis-ci.org/firejs/fire-http)\n\nHttp expressions for [fire.js](https://github.com/firejs/fire)\n***\n\n## Installing\n\n### using NPM\n\n npm install fire-http\n\n## Expressions\n\n* @Http\n* @Http.Headers.Authorization\n\n## Usage\n\n`Sending a GET`\n\n \"@Http(GET)\": {\n\t\t\"uri\": \"http://127.0.0.1:3600/\"\n\t}\n\nor with dynamic method:\n\n \"@Http\": {\n\t\t\"method\": \"GET\",\n\t\t\"uri\": \"http://127.0.0.1:3600/\"\n\t}\n\n`Sending a POST with Body`\n\n \"@Http(POST)\": {\n\t\turi: \"http://127.0.0.1:3603/\",\n\t\tbody: \"Content of the Body\"\n }\n\n`Headers`\n\n \"@Http(GET)\": {\n\t\turi: \"http://127.0.0.1:3604/\",\n\t\theaders: {\n\t\t\t\"CustomHeader\": \"Stuff\"\n\t\t}\n }\n\n`Basic Authorization`\n\n\t\"@Http(GET)\": {\n\t\turi: \"http://127.0.0.1:3604/\",\n\t\theaders: {\n\t\t\t\"Authorization\": {\n\t\t\t\t\"@Http.Headers.Authorization(Basic)\": {\n\t\t\t\t\t\"user\": \"Chuck\",\n\t\t\t\t\t\"password\": \"SuperChuck\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n }\n \n\nor \n\n \"@Http(GET)\": {\n\t\turi: \"http://127.0.0.1:3604/\",\n\t\theaders: {\n\t\t\t\"Authorization\": {\n\t\t\t\t\"@Http.Headers.Authorization\": {\n\t\t\t\t\t\"scheme\": \"Basic\",\n\t\t\t\t\t\"user\": \"Chuck\",\n\t\t\t\t\t\"password\": \"SuperChuck\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n## Cloning the Repository\n\n git clone git://github.com/firejs/fire-http.git\n\n### Tests\n\n make run-tests\n\n### Contributors\n\n* Johan (author). Email: *johan@firebase.co*\n\n## MIT License\n\nCopyright (c) 2011 Firebase.co - http://www.firebase.co\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.", + "maintainers": [ + { + "name": "firebaseco", + "email": "npm@firebase.co" + } + ], + "time": { + "modified": "2011-11-22T11:17:36.508Z", + "created": "2011-11-22T11:17:34.631Z", + "0.1.0": "2011-11-22T11:17:36.508Z" + }, + "author": { + "name": "Firebase.co", + "email": "npm@firebase.co", + "url": "http://www.firebase.co" + }, + "repository": { + "type": "git", + "url": "git://github.com/firejs/fire-http.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/fire-http/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "1d9e6059596559125d6de1bb73823b3a9ba7ef13", + "tarball": "http://registry.npmjs.org/fire-http/-/fire-http-0.1.0.tgz" + } + }, + "keywords": [ + "HTTP", + "request", + "ignitable" + ], + "url": "http://registry.npmjs.org/fire-http/" + }, + "fire-i18n": { + "name": "fire-i18n", + "description": "Localization expressions for fire.js", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "#fire-i18n\n[![Build Status](https://secure.travis-ci.org/firejs/fire-i18n.png)](http://travis-ci.org/firejs/fire-i18n)\n\nInternationalization module for [fire.js](https://github.com/firejs/fire)\n***\n\n## Installing\n\n### using NPM\n\n npm install fire-i18n\n\n### using Github(unstable)\nIn the root of your project run:\n\n git clone git://github.com/firejs/fire-i18n.git node_modules/fire-i18n\n\n## Working with i18n\n\nThe language is set by a variable called \"currentLocaleId\". If not set, the default locale is \"en\".\n\n## @i18n\n\nReturns the string for the current locale. The hint is the key in the global dictionary you want to retrieve. If the key can not be found, it will return a empty string. The input of the expression will be used as replacement of the tokens as the translation is retrieved.\n\n### Example with key\n\nAssuming that you have a dictionary like this:\n\n {\n\t\t\"en\": {\n\t\t\t\"InvalidUser\": \"Invalid user\"\n\t\t},\n\t\t\"es\": {\n\t\t\t\"InvalidUser\": \"Usuario invalido\"\n\t\t}\n\t}\n\nWhen you use `@i18n` with the key `InvalidUser`:\n \n\t{\n\t\t\"@i18n(InvalidUser)\":null\n\t}\n\nIt will return \"Invalid user\" for `en-us` and \"Usuario invalido\" for `en-es`.\n\n### Example with replacement tokens\n\nDictionaries can contain replacement tokens in the translations.\n\nExample, given the following dictionary:\n\n \"en\": {\n\t\t\"ChannelNotAvailable\": \"Channel '{name}' is not available\"\n\t}\n\nWhen you use `i18n` with an input:\n\n\t{\n\t\t\"@i18n(ChannelNotAvailable)\": {\n\t\t\tname: \"News\"\n\t\t}\n\t}\n\nIt will return \"Channel 'News' is not available\"\n\n## Implementing i18n resources for a fire.js application\n\ni18n module will try to load all the .i18n.json files from the i18n in the root of the application.\n\nExample:\n\nIf you have a program in the following path `./MyApp.fjson` i18n will try load all the `i18n..json` files from `./i18n/`.\n\n## Implementing i18n resources in a custom module\n\nImplementing i18n resources in a module works the same way than applications, except for a simple call you have to make in your main script:\n\n require('fire-i18n').enableModule(module)\n\n**Note:** You must pass `module` and not `exports` or `module.exports`.\n\nWhen you call `enableModule` i18n will load all the resources for your module using the following rules:\n\n* A module defined as `./MyModule.js` will load resources from `./i18n/`\n* A module defined as `./node_modules/MyModule.js` will load resources from `./node_modules/i18n/`\n* A module defined as `./node_modules/MyModule/index.js` will load resources from `./node_modules/MyModule/i18n/`\n\n### Custom Expressions\n\nCustom expressions written in Javascript can also take advantage of i18n by calling `enableExpression`, example:\n\nExample:\n\n var i18n = require('fire-i18n')\n\tvar fire = require('fire')\n function SampleExpression1() {\n\t\n\t}\n\tSampleExpression1.prototype = new fire.Expression()\n\ti18n.enableExpression(SampleExpression1)\n\n\tSampleExpression1.prototype.execute = function() {\n\t\tthis.setResult(this.getI18nText('sampleModule1.ErrorMsgExpression',{number:422}))\n\t}\n\nYou just need to pass the expression class and you should be able to use `getI18nText` using a key and replacements object.\n\nFor a full example check [test at test/testFromModule](https://github.com/firejs/fire-i18n/tree/master/test/testFromModule).\n\n## Considerations\n\nfire-i18n uses the standard key discovery strategy:\n\n* If the locale id specifies the region(e.g \"en-us\"), it will look for the language and region. If the key can not be found, it will look for the key using the language only(e.g \"en\").\n* If the locale id only specifies the language(e.g \"en\"), it will look for the language key only.\n* If the key can not be found using lang-region or lang only strategies, a discovery will be perfomed in the default language(en).\n* If the key can not be found in the default language, an empty string is returned.\n\nWhen you set the locale id using the variable `currentLocaleId` remember that the values must use lowercase dash notation, meaning that if you want to provide the locale for English in Region United States then you should use \"en-us\" and not \"en-US\", \"en\\_us\" or \"en\\_US\".\n\n\n## Cloning the Repository\n\n git clone git://github.com/firejs/fire-i18n.git\n\n### Tests\n\n make run-tests\n\n### Collaborating\n\n* Johan (author). Email: *johan@firebase.co*, Skype: *thepumpkin1979*\n\n## MIT License\n\nCopyright (c) 2011 Firebase.co - http://www.firebase.co\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.", + "maintainers": [ + { + "name": "firebaseco", + "email": "npm@firebase.co" + } + ], + "time": { + "modified": "2011-11-25T20:51:10.403Z", + "created": "2011-11-25T20:51:08.182Z", + "0.1.0": "2011-11-25T20:51:10.403Z" + }, + "author": { + "name": "Firebase.co", + "email": "npm@firebase.co", + "url": "http://www.firebase.co" + }, + "repository": { + "type": "git", + "url": "git://github.com/firejs/fire-i18n.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/fire-i18n/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "1d023f793de631e92cc04a2db47906a3c26e9c2c", + "tarball": "http://registry.npmjs.org/fire-i18n/-/fire-i18n-0.1.0.tgz" + } + }, + "keywords": [ + "firejs", + "fire.js", + "localization", + "i18n", + "internationalization", + "localization", + "locale", + "multi-language", + "languages", + "ignitable" + ], + "url": "http://registry.npmjs.org/fire-i18n/" + }, + "fire-ide": { + "name": "fire-ide", + "description": "Web-based Integrated Development Environment for fire.js", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "# fire-ide\n\nWeb based Integrated Development Environment for fire.js\n\n## Installation\n\n### NPM\n\n npm install -g fire-ide\n\n### Usage\n\n fire-ide /path/to/some/project\n\nOpen your browser in port 3500: http://localhost:3500/\n\nIf you want to run multiple instances at the same time you need to change the port everytime with --port or -p\n\n fire-ide --port 8080 /path/to/some/project\n\nOpen your browser this time in port 8080: http://localhost:8080/\n\n## Cloning the Repository\n\n git clone https://github.com/firejs/fire-ide.git\n\n### Authors\n\n* Johan (author). Email: *johan@firebase.co*\n\n## MIT License\n\nCopyright (c) 2011 Firebase.co - http://www.firebase.co\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.", + "maintainers": [ + { + "name": "firebaseco", + "email": "npm@firebase.co" + } + ], + "time": { + "modified": "2011-12-06T07:52:22.372Z", + "created": "2011-12-06T07:52:20.722Z", + "0.1.0": "2011-12-06T07:52:22.372Z" + }, + "author": { + "name": "Firebase.co", + "email": "npm@firebase.co", + "url": "http://www.firebase.co" + }, + "repository": { + "type": "git", + "url": "git://github.com/firejs/fire-ide.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/fire-ide/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "b13a46d2a3e89c74b1cd353f5e10f497632dd98b", + "tarball": "http://registry.npmjs.org/fire-ide/-/fire-ide-0.1.0.tgz" + } + }, + "keywords": [ + "fire", + "ide", + "fire.js", + "JSON", + "editor", + "vcap", + "cloudfoundry" + ], + "url": "http://registry.npmjs.org/fire-ide/" + }, + "fire-test": { + "name": "fire-test", + "description": "Test Framework for fire.js", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "#fire-test\n\nTesting Expressions for [fire.js](https://github.com/firejs/firejs)\n***\n\n## Installing\n\n### using NPM\n\n npm install fire-test\n\n### using Github(unstable)\nIn the root of your project run:\n\n git clone git://github.com/firejs/fire-test.git node_modules/fire-test\n\n## Expressions\n\n* @Test.Scenario\n* @Test.And\n* @Test.When\n* @Test.Then\n* @Test.Topic\n* @Test.Path\n* @Test.Context.Run\n* @Test.CommandLine.Run\n\n## Cloning the Repository\n\n git clone git://github.com/firejs/fire-test.git\n\n## Test\n\n make\n\n### Contributors\n\n* Johan (author). Email: *johan@firebase.co*\n\n## MIT License\n\nCopyright (c) 2011 Firebase.co - http://www.firebase.co\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.", + "maintainers": [ + { + "name": "firebaseco", + "email": "npm@firebase.co" + } + ], + "time": { + "modified": "2011-11-21T07:47:12.641Z", + "created": "2011-11-21T07:47:11.888Z", + "0.1.0": "2011-11-21T07:47:12.641Z" + }, + "author": { + "name": "Firebase.co", + "email": "npm@firebase.co", + "url": "http://www.firebase.co" + }, + "repository": { + "type": "git", + "url": "git://github.com/firejs/fire-test.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/fire-test/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "308311aa548043d400cc6b7f7c061167a0de7318", + "tarball": "http://registry.npmjs.org/fire-test/-/fire-test-0.1.0.tgz" + } + }, + "keywords": [ + "test", + "bdd", + "testing", + "fire.js", + "spec", + "rspec", + "vows", + "ignitable" + ], + "url": "http://registry.npmjs.org/fire-test/" + }, + "fire-validations": { + "name": "fire-validations", + "description": "Validation expressions for fire.js", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "#fire-validations\n\nValidations module for [fire.js](https://github.com/firejs/firejs) and [fire-assert](https://github.com/firejs/fire-assert)\n***\n\n## Installing\n\n### using NPM\n\n npm install fire-validations\n\n### using Github(unstable)\nIn the root of your project run:\n\n git clone git://github.com/firejs/fire-validations.git node_modules/fire-validations\n\n## Introduction\n\nValidation works providing the context for assertions based on [fire-assert](https://github.com/firejs/fire-assert) and tracking the paths of the errors found.\n\n## Expressions\n\n### @Validations.Context\n\nExecutes a set of validations on a variable path given in the hint. Returns an array with all the errors found. A variable called \"validation\" is provided in the input and contains the context of the current validation and also the path. \"validation.target\" contains what is the object being validated and \"validation.path\" contains what is the path of the validation.\n\n### @Validations.Property\n\nTakes a hint with the name of the member to validate in the current target. Bypass the result in the block.\n\n### @Validations.Array\n\nTakes a hint with the name of the array to validate in the current target. Executes the input per item in the array. If the member is not an array it will bypass. Bypass the result in the block.\n\nThe member name in the hint is optional, this way to can validate the current target as an array.\n\n**Note:** `@Validations.Array` is not a loop, using `@break` or `@continue` will not affect the iteration. If you want to interrupt the sequence on the first error in the array use `@Validations.Checkpoint`.\n\n### @Validations.Checkpoint\n\nCheck for errors reported by previous validations and stop the execution of further validations, otherwise it just bypass:\n\nExample:\n\n \"@Validations.Context(contacts)\": {\n\t\t\"@Validations.Property(name)\": {\n\t\t\t\"@Assert.NotEmpty\": null\n\t\t},\n\t\t\"@Validations.Property(age)\": {\n\t\t\t\"@Assert.NotEmpty\": null\n\t\t},\n\t\t\"@Validations.Checkpoint\": null,\n\t\t\"@Validations.Property(tags)\": {\n\t\t\t\"@Assert.NotEmpty\": null\n\t\t}\n\t}\n\n## Examples:\n\n### Validating a Simple Field\n\n \"@set(person)\": {\n\t\t\"email\": \"\"\n\t},\n\t\"@Validations.Context(person)\": {\n\t\t\"@Validations.Property(email)\": {\n\t\t\t\"@Assert.NotEmpty\": null\n\t\t}\n\t}\n\nThe result:\n\n [{\"path\":\"/email\",\"message\":\"Can't be empty\"}]\n\n### Validating an Array\n\n \"@set(person)\": {\n\t\t\"emails\": [\"chuch@examplecom\", \"chuch at examplescom\"]\n\t},\n\t\"@Validations.Context(person)\": {\n\t\t\"@Validations.Array(emails)\": {\n\t\t\t\"@Assert.NotEmpty\": null,\n\t\t\t\"@Assert.Email\": null\n\t\t}\n\t}\n\nThe result, both email addresses are invalid so we get two messages:\n\n [{\"path\":\"/emails/0\",\"message\":\"Not a valid Email address\"},{\"path\":\"/emails/1\",\"message\":\"Not a valid Email address\"}]\n\n### Validating nested objects in Arrays\n\n \"@set(categories)\": [\n\t\t{\n\t\t\t\"name\": \"Category A\",\n\t\t\t\"description\": null \n\t\t},\n\t\t{\n\t\t\t\"description\": \"Description for Category B\" \n\t\t}]\n\t,\n\t\"@Validations.Context(categories)\": {\n\t\t\"@Validations.Array\": {\n\t\t\t\"@Validations.Property(name)\": {\n\t\t\t\t\"@Assert.NotEmpty\": null\n\t\t\t},\n\t\t\t\"@Validations.Property(description)\": {\n\t\t\t\t\"@Assert.NotEmpty\": null\n\t\t\t}\n\t\t}\n\t}\n\nThe result:\n\n [{\"path\":\"/0/description\",\"message\":\"Can't be empty\"},{\"path\":\"/1/name\",\"message\":\"Can't be empty\"}]\n\n\n## Understanding Paths\n\npaths provide an easy and readable way to know at which level of the object the error occurred.\n\nAll the paths begins with slash '/', this is known as the `root of the validation` which is the value in the variable path to `@Validations.Context`. A slash is also the separator of the path.\n\nExamples:\n\n* `/`: the error was reported at the root value.\n* `/name`: the error was reported at the *name* property .\n* `/tags/0/`: the error was reported at the index *0* of the *tags* array.\n* `/tags/0/name`: the error was reported at the property *name* of the index *0* of the *tags* array.\n* `/0`: the root value is an `Array` and the error was reported at index *0*. \n\n## Considerations with empty values.\n\nA validator will validate only a certain aspect of the logic and just bypass if they can't accomplish the validation, the goal of this is to avoid repeating validation logic across different validators. \n\nIn the following example the Email validator will not report any error because the field is empty:\n\n \"@set(contact)\": {\n \"email\": null\n }\n ,\n \"@Validations.Context(contact)\": {\n \"@Validations.Property(email)\": {\n \"@Assert.Email\": null\n }\n }\n\nThis makes sense because Email will only validate if the value matches an email address, it will not validate the presence of the field because that's not part of what 'validating the email address' means, in fact, checking if the field is empty or not is part of another validator called `@Assert.NotEmpty`.\n\nThis is when you must use multiple validators over the same field.\n\nLike this:\n\n {\n\t \"name\": \"TestVal.Main\",\n\t \"json\": {\n\t \"@set(contact)\": {\n\t \"email\": null\n\t }\n\t ,\n\t \"@Validations.Context(contact)\": {\n\t \"@Validations.Property(email)\": {\n\t\t\t\t\t\"@Assert.NotEmpty\": null,\n\t \"@Assert.Email\": null\n\t }\n\t }\n\t }\n\t}\n\nThe result:\n\n [{\"path\":\"/email\",\"message\":\"Can't be empty\"}]\n\nStill you will not see the Email validator reporting any error because NonEmpty is reporting first. This situations changes when Email validator founds a value to validate like in the following example:\n\n {\n\t \"name\": \"TestVal.Main\",\n\t \"json\": {\n\t \"@set(contact)\": {\n\t \"email\": \"some invalid email value\"\n\t }\n\t ,\n\t \"@Validations.Context(contact)\": {\n\t \"@Validations.Property(email)\": {\n\t\t\t\t\t\"@Assert.NotEmpty\": null,\n\t \"@Assert.Email\": null\n\t }\n\t }\n\t }\n\t}\n\nThe result:\n\n [{\"path\":\"/email\",\"message\":\"Not a valid Email address\"}]\n\nNow you see the Email validator doing it's job.\n\n## Localization Support\n\n`fire-validations` has built-in support for a small set of languages via [fire-i18n](https://github.com/firejs/fire-i18n), [check the wiki for more information](https://github.com/firejs/fire-validations/wiki/Localization).\n\n## Reporting validation errors\n\nIf you want to report validations errors you can use `@Validations.Error`, which input is the message of the error:\n\nExample\n\n @Validations.Context(contacts)\": {\n\t\t\"@Validations.Error\": \"This is my custom error report\"\n\t}\n\t\nThe result is:\n\n [{ \"path\": \"/\", \"message\": \"This is my custom error report\" }]\n\n## Cloning the Repository\n\n git clone git://github.com/firejs/fire-validations.git\n\n\n## Tests\n\n make\n\n### Contributors\n\n* Johan (author). Email: *johan@firebase.co*\n\n## MIT License\n\nCopyright (c) 2011 Firebase.co - http://www.firebase.co\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.", + "maintainers": [ + { + "name": "firebaseco", + "email": "npm@firebase.co" + } + ], + "time": { + "modified": "2011-11-21T07:47:24.792Z", + "created": "2011-11-21T07:47:23.713Z", + "0.1.0": "2011-11-21T07:47:24.792Z" + }, + "author": { + "name": "Firebase.co", + "email": "npm@firebase.co", + "url": "http://www.firebase.co" + }, + "repository": { + "type": "git", + "url": "git://github.com/firejs/fire-validations.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/fire-validations/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "6bf6a7afddd5845c5195f9c5540c9e3ddd88d485", + "tarball": "http://registry.npmjs.org/fire-validations/-/fire-validations-0.1.0.tgz" + } + }, + "keywords": [ + "fire", + "fire.js", + "assert", + "validation", + "validations", + "input", + "ignitable" + ], + "url": "http://registry.npmjs.org/fire-validations/" + }, + "fire-web": { + "name": "fire-web", + "description": "RESTful API and Web Development Expressions for fire.js on top of express.js", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "# fire-web\n[![Build Status](https://secure.travis-ci.org/firejs/fire-web.png)](http://travis-ci.org/firejs/fire-web)\n\nRESTful API and Web Development Expressions for [fire.js](https://github.com/firejs/fire) and [express.js](http://expressjs.com/)\n\n## How to use\n\nInstall [fire.js](https://github.com/firejs/firejs) globally and run the following JSON file.\n\n // app.fjson\n\t{\n\t\t\"name\": \"app\",\n\t\t\"json\": {\n\t\t\t\"@Web.Server.Boot\": null\n\t\t}\n }\n\n $ fire app.fjson\n\nThis will initialize a fire.js Runtime and run a express.js server in port 3500(for both development and test environments). If you want it to run in port 80(production) you need to run it as superuser and set the environment variable *NODE_ENV=production*.\n\n## Web Expressions\n\nWeb Expressions are regular fire.js expressions especially decorated to be invoked using HTTP. To publish your fire.js expression as web expressions you just need to add a `route` attribute:\n\nExample:\n\n {\n\t\t\"Web.Endpoint\": \"GET /hello\",\n\t\t\"name\": \"basicService.hello\",\n\t\t\"json\": \"Hello World\"\n\t}\n\nIf some http client invokes /hello it will get the following response:\n\n {\"response\": \"Hello World\"}\n\n## Protocols\n\nProtocols defines the shape of the API responses, by default `Web.Protocols.Response` is used.\n\nThe protocol can be changed globally if you set `defaultResponseProtocol` in the configurations.\n\nExample:\n\n {\n\t\t\"modules\": [\"fire-web\"],\n\t\t\"environments\": {\n\t\t\t\"development\": {\n\t\t\t\t\"fire-web\": {\n\t\t\t\t\t\"port\": 3503,\n\t\t\t\t\t\"defaultResponseProtocol\": \"customProtocols.CustomProtocol\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\nSome operation may require a custom protocol, using the `responseProtocol` attribute each expression can define it's own custom protocol.\n\nExample:\n\n {\n\t\t\"Web.Endpoint\": \"GET /hello\",\n\t\t\"Web.Response.Protocol\": \"customProtocols.CustomOverride\",\n\t\t\"name\": \"useOverride.hello\",\n\t\t\"json\": \"Hello World\"\n\t}\n\n\n### Contributors\n\n* Johan (author). Email: *johan@firebase.co*\n\n## Cloning the Repository\n\n git clone https://github.com/firejs/fire-web.git\n\n### Tests\n\n make run-tests\n\n## MIT License\n\nCopyright (c) 2011 Firebase.co and Contributors - http://www.firebase.co\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.", + "maintainers": [ + { + "name": "firebaseco", + "email": "npm@firebase.co" + } + ], + "time": { + "modified": "2011-11-23T04:21:19.634Z", + "created": "2011-11-23T04:21:16.749Z", + "0.1.0": "2011-11-23T04:21:19.634Z" + }, + "author": { + "name": "Firebase.co", + "email": "npm@firebase.co", + "url": "http://www.firebase.co" + }, + "repository": { + "type": "git", + "url": "git://github.com/firejs/fire-web.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/fire-web/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "105a2aa6b2d85f17878fa14b701b60201191c546", + "tarball": "http://registry.npmjs.org/fire-web/-/fire-web-0.1.0.tgz" + } + }, + "keywords": [ + "fire", + "fire.js", + "API", + "REST", + "RESTful", + "JSON", + "ignitable" + ], + "url": "http://registry.npmjs.org/fire-web/" + }, + "firebird": { + "name": "firebird", + "description": "Firebird binding to node, uses libfbclient.", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "xdenser", + "email": "xdenser@gmail.com" + } + ], + "time": { + "modified": "2011-11-29T22:19:03.211Z", + "created": "2011-01-24T22:53:13.754Z", + "0.0.2": "2011-01-24T22:53:14.440Z", + "0.0.5": "2011-11-29T22:19:03.211Z", + "0.0.7": "2011-11-29T22:12:15.701Z", + "0.0.8": "2011-11-29T21:25:21.560Z", + "0.0.6": "2011-11-29T22:16:30.470Z" + }, + "author": { + "name": "Denys Khanzhiyev" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/firebird/0.0.2", + "0.0.8": "http://registry.npmjs.org/firebird/0.0.8", + "0.0.7": "http://registry.npmjs.org/firebird/0.0.7", + "0.0.6": "http://registry.npmjs.org/firebird/0.0.6", + "0.0.5": "http://registry.npmjs.org/firebird/0.0.5" + }, + "dist": { + "0.0.2": { + "shasum": "05afb0aa17dd0e00f71845883cca9a3aaf0ea8a0", + "tarball": "http://registry.npmjs.org/firebird/-/firebird-0.0.2.tgz" + }, + "0.0.8": { + "shasum": "cf015dc36e7b322de4468c221fd4c9d6137c1ef4", + "tarball": "http://registry.npmjs.org/firebird/-/firebird-0.0.8.tgz" + }, + "0.0.7": { + "shasum": "61aaa37fc9faf0d7727124e525741b5b7e25b943", + "tarball": "http://registry.npmjs.org/firebird/-/firebird-0.0.7.tgz" + }, + "0.0.6": { + "shasum": "8e65b969bedd861e0d2b2c4028c189529cef52a8", + "tarball": "http://registry.npmjs.org/firebird/-/firebird-0.0.6.tgz" + }, + "0.0.5": { + "shasum": "4da47b4e72fabc91c1dd5e122fae4978c23bbdd7", + "tarball": "http://registry.npmjs.org/firebird/-/firebird-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/firebird/" + }, + "firefly": { + "name": "firefly", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "deltachaos", + "email": "maximilian.ruta@xtain.net" + } + ], + "time": { + "modified": "2011-10-16T07:27:53.177Z", + "created": "2011-10-16T07:27:51.650Z", + "0.0.1": "2011-10-16T07:27:53.177Z" + }, + "author": { + "name": "Maximilian Ruta", + "email": "mruta@xtain.net", + "url": "http://deltachaos.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/fireflyjs/firefly.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/firefly/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "ffcd3f19a9ed2fc2567acb6816e200fb380d327f", + "tarball": "http://registry.npmjs.org/firefly/-/firefly-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/firefly/" + }, + "firefly-wave": { + "name": "firefly-wave", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "deltachaos", + "email": "maximilian.ruta@xtain.net" + } + ], + "time": { + "modified": "2011-10-16T07:28:05.779Z", + "created": "2011-10-16T07:28:04.230Z", + "0.0.1": "2011-10-16T07:28:05.779Z" + }, + "author": { + "name": "Maximilian Ruta", + "email": "mruta@xtain.net", + "url": "http://deltachaos.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/fireflyjs/wave.firefly.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/firefly-wave/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "a06cbc864094d8ea2a76aa5b690b14780e41734d", + "tarball": "http://registry.npmjs.org/firefly-wave/-/firefly-wave-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/firefly-wave/" + }, + "firmata": { + "name": "firmata", + "description": "A library to control an arduino running firmata", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "jgautier", + "email": "julian.gautier@alumni.neumont.edu" + } + ], + "time": { + "modified": "2011-09-08T04:34:52.763Z", + "created": "2011-06-02T06:20:16.947Z", + "0.1.0": "2011-06-02T06:20:17.598Z", + "0.1.1": "2011-06-07T03:32:19.560Z", + "0.1.2": "2011-06-08T05:12:54.030Z", + "0.1.3": "2011-07-10T15:48:44.861Z" + }, + "author": { + "name": "Julian Gautier" + }, + "repository": { + "type": "git", + "url": "git://github.com/jgautier/firmata.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/firmata/0.1.0", + "0.1.1": "http://registry.npmjs.org/firmata/0.1.1", + "0.1.2": "http://registry.npmjs.org/firmata/0.1.2", + "0.1.3": "http://registry.npmjs.org/firmata/0.1.3" + }, + "dist": { + "0.1.0": { + "shasum": "d8d852dd9e9672a06d8c0281ce1ba8a5c7fd97e5", + "tarball": "http://registry.npmjs.org/firmata/-/firmata-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "ef2d7c0c1268746f7a3b84fc42883f82552ba952", + "tarball": "http://registry.npmjs.org/firmata/-/firmata-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "ef76d227f12d372e6cb583fe701e3f980d76b17f", + "tarball": "http://registry.npmjs.org/firmata/-/firmata-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "e23ad35368eac90aa159894675b421ff74a2417a", + "tarball": "http://registry.npmjs.org/firmata/-/firmata-0.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/firmata/" + }, + "first": { + "name": "first", + "description": "A tiny control-flow library for node", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "dev0", + "email": "daniel.baulig@gmx.de" + } + ], + "time": { + "modified": "2011-07-25T11:16:36.023Z", + "created": "2011-07-25T11:16:35.526Z", + "0.0.1": "2011-07-25T11:16:36.023Z" + }, + "author": { + "name": "Daniel Baulig", + "email": "daniel.baulig@gmx.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/DanielBaulig/first.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/first/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "cd218f6bb03ff5ca45f15fa6068dca3ea048daea", + "tarball": "http://registry.npmjs.org/first/-/first-0.0.1.tgz" + } + }, + "keywords": [ + "flow-control", + "async", + "callback", + "asynchronous" + ], + "url": "http://registry.npmjs.org/first/" + }, + "fishback": { + "name": "fishback", + "description": "Simple RFC2616-compliant caching proxy server", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "mjs", + "email": "mjs@beebo.org" + } + ], + "time": { + "modified": "2011-03-06T11:55:53.525Z", + "created": "2011-02-01T22:01:33.276Z", + "0.1.0": "2011-02-01T22:01:33.642Z", + "0.1.1": "2011-02-01T23:00:40.072Z", + "0.1.2": "2011-02-06T19:39:06.581Z", + "0.1.3": "2011-02-06T19:44:58.888Z", + "0.1.4": "2011-02-06T19:52:51.857Z", + "0.1.5": "2011-02-20T12:58:33.806Z", + "0.2.0": "2011-02-27T23:10:22.905Z", + "0.2.1": "2011-03-02T22:50:43.019Z", + "0.2.2": "2011-03-06T11:55:53.525Z" + }, + "author": { + "name": "Michael Stillwell", + "email": "mjs@beebo.org", + "url": "http://beebo.org/" + }, + "repository": { + "type": "git", + "url": "git://github.com/ithinkihaveacat/node-fishback.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/fishback/0.1.0", + "0.1.1": "http://registry.npmjs.org/fishback/0.1.1", + "0.1.2": "http://registry.npmjs.org/fishback/0.1.2", + "0.1.3": "http://registry.npmjs.org/fishback/0.1.3", + "0.1.4": "http://registry.npmjs.org/fishback/0.1.4", + "0.1.5": "http://registry.npmjs.org/fishback/0.1.5", + "0.2.0": "http://registry.npmjs.org/fishback/0.2.0", + "0.2.1": "http://registry.npmjs.org/fishback/0.2.1", + "0.2.2": "http://registry.npmjs.org/fishback/0.2.2" + }, + "dist": { + "0.1.0": { + "shasum": "2577dba853e238763834d546407cfbf0ee56c5bc", + "tarball": "http://registry.npmjs.org/fishback/-/fishback-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "701792f146bf361a182619c502c8f443e1ded15c", + "tarball": "http://registry.npmjs.org/fishback/-/fishback-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "37595b36154d9e8a8e66a44e2af7a94e1b1154fd", + "tarball": "http://registry.npmjs.org/fishback/-/fishback-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "059e55c9782e3ee9fe9d020913684a81ad1affe7", + "tarball": "http://registry.npmjs.org/fishback/-/fishback-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "5a467249fdb96eecccf307f6bc1a1ad2e4ec2e4d", + "tarball": "http://registry.npmjs.org/fishback/-/fishback-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "efa4cac778c0cae4cdbdd59c39b7f4d666126f1c", + "tarball": "http://registry.npmjs.org/fishback/-/fishback-0.1.5.tgz" + }, + "0.2.0": { + "shasum": "87bd0aae33f6ab71430fa6805563e8a6eef63fea", + "tarball": "http://registry.npmjs.org/fishback/-/fishback-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "697614f9c78a930af4a4f9106972fb83f404b9a6", + "tarball": "http://registry.npmjs.org/fishback/-/fishback-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "e3a33cedc6aeb0281e0641607a23b3213badfcf2", + "tarball": "http://registry.npmjs.org/fishback/-/fishback-0.2.2.tgz" + } + }, + "url": "http://registry.npmjs.org/fishback/" + }, + "fitbit-js": { + "name": "fitbit-js", + "description": "Simple FitBit API client", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "smurthas", + "email": "simon@murtha-smith.com" + } + ], + "time": { + "modified": "2011-05-31T04:41:43.018Z", + "created": "2011-05-31T04:41:41.390Z", + "0.0.0": "2011-05-31T04:41:43.018Z" + }, + "author": { + "name": "Simon Murtha-Smith", + "email": "simon@murtha-smith.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/smurthas/fitbit-js.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/fitbit-js/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "7443884ef791f2b7c02978d065070b36e2559e95", + "tarball": "http://registry.npmjs.org/fitbit-js/-/fitbit-js-0.0.0.tgz" + } + }, + "keywords": [ + "fitbit" + ], + "url": "http://registry.npmjs.org/fitbit-js/" + }, + "fix": { + "name": "fix", + "description": "FIX Protocol library", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "falcon", + "email": "shahbazc@gmail.com" + } + ], + "time": { + "modified": "2011-10-06T02:19:28.206Z", + "created": "2011-02-06T03:21:34.233Z", + "0.0.1": "2011-02-06T03:21:34.346Z", + "0.0.2": "2011-02-06T06:46:53.079Z", + "0.0.3": "2011-02-06T23:41:07.337Z", + "0.0.4": "2011-06-13T04:47:33.210Z", + "0.0.5": "2011-10-06T02:19:28.206Z" + }, + "author": { + "name": "Shahbaz Chaudhary", + "email": "shahbazc@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/falconair/nodefix.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/fix/0.0.1", + "0.0.2": "http://registry.npmjs.org/fix/0.0.2", + "0.0.3": "http://registry.npmjs.org/fix/0.0.3", + "0.0.4": "http://registry.npmjs.org/fix/0.0.4", + "0.0.5": "http://registry.npmjs.org/fix/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "62e180093c4593ad57a0e45a1c7f061791c97f50", + "tarball": "http://registry.npmjs.org/fix/-/fix-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "8a07797c4011845641a456bc5bda3b93e08149d9", + "tarball": "http://registry.npmjs.org/fix/-/fix-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "2599d9e72422b6eb5364bd89baf31c145636767a", + "tarball": "http://registry.npmjs.org/fix/-/fix-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "529c17946a0a29ae67729aa32f3cb0c5c08e8552", + "tarball": "http://registry.npmjs.org/fix/-/fix-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "82d0dd3efa03ffd359687343d346bc831256fbc3", + "tarball": "http://registry.npmjs.org/fix/-/fix-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/fix/" + }, + "fixmyjs": { + "name": "fixmyjs", + "description": "Automatically fixes silly errors from jshint", + "dist-tags": { + "latest": "0.6.2" + }, + "readme": "# node-fixmyjs\n\nThis is the nodejs package for `jshint-autofix`\n\nMeant to automatically fix your lint errors in a non-destructive way.\n\n## How to Install\n\n sudo npm install fixmyjs -g\n", + "maintainers": [ + { + "name": "goatslacker", + "email": "josh@goatslacker.com" + } + ], + "time": { + "modified": "2011-12-05T11:02:08.084Z", + "created": "2011-11-14T09:19:39.556Z", + "0.4.5": "2011-11-14T09:19:41.507Z", + "0.5.0": "2011-11-15T09:38:29.385Z", + "0.5.1": "2011-11-20T04:07:08.346Z", + "0.5.5": "2011-11-27T05:54:50.678Z", + "0.6.0": "2011-11-27T12:33:10.972Z", + "0.6.2": "2011-12-05T11:02:08.084Z" + }, + "author": { + "name": "Josh Perez", + "email": "josh@goatslacker.com", + "url": "http://github.com/goatslacker" + }, + "versions": { + "0.4.5": "http://registry.npmjs.org/fixmyjs/0.4.5", + "0.5.0": "http://registry.npmjs.org/fixmyjs/0.5.0", + "0.5.1": "http://registry.npmjs.org/fixmyjs/0.5.1", + "0.5.5": "http://registry.npmjs.org/fixmyjs/0.5.5", + "0.6.0": "http://registry.npmjs.org/fixmyjs/0.6.0", + "0.6.2": "http://registry.npmjs.org/fixmyjs/0.6.2" + }, + "dist": { + "0.4.5": { + "shasum": "2d591d38ca24611f1b9a13f951210519652c11c6", + "tarball": "http://registry.npmjs.org/fixmyjs/-/fixmyjs-0.4.5.tgz" + }, + "0.5.0": { + "shasum": "f736c2eb1b1aeb486f329c6bf9f4d7fff3577c2d", + "tarball": "http://registry.npmjs.org/fixmyjs/-/fixmyjs-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "6972f89c92f0e653ca375e202b25836f74cd5274", + "tarball": "http://registry.npmjs.org/fixmyjs/-/fixmyjs-0.5.1.tgz" + }, + "0.5.5": { + "shasum": "fdf67d4bae1510abb95c30401fb013401ea0e385", + "tarball": "http://registry.npmjs.org/fixmyjs/-/fixmyjs-0.5.5.tgz" + }, + "0.6.0": { + "shasum": "5d35b31a5b64675ec8bbff748e00cb854f82ed05", + "tarball": "http://registry.npmjs.org/fixmyjs/-/fixmyjs-0.6.0.tgz" + }, + "0.6.2": { + "shasum": "0011b6ef91a56abdaa018ae6568b8547b61fdd55", + "tarball": "http://registry.npmjs.org/fixmyjs/-/fixmyjs-0.6.2.tgz" + } + }, + "keywords": [ + "jshint", + "hint", + "lint", + "jslint" + ], + "url": "http://registry.npmjs.org/fixmyjs/" + }, + "fixtures": { + "name": "fixtures", + "description": "Tests with fixtures as JSON data", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "ppcano", + "email": "ppcanodehuelva@gmail.com" + } + ], + "time": { + "modified": "2011-10-11T14:12:07.059Z", + "created": "2011-10-04T15:59:41.307Z", + "0.0.1": "2011-10-04T15:59:42.320Z", + "0.0.2": "2011-10-06T10:03:29.317Z" + }, + "author": { + "name": "Pepe Cano", + "email": "ppcanodehuelva@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/ppcano/fixtures.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/fixtures/0.0.1", + "0.0.2": "http://registry.npmjs.org/fixtures/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "0f42130d0859a212fd064f9d742c47607e2c8d39", + "tarball": "http://registry.npmjs.org/fixtures/-/fixtures-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "09d9b0cb994439e334b0c9469fe2ed52c91f7cc9", + "tarball": "http://registry.npmjs.org/fixtures/-/fixtures-0.0.2.tgz" + } + }, + "keywords": [ + "fixtures", + "testing", + "tdd", + "bdd" + ], + "url": "http://registry.npmjs.org/fixtures/" + }, + "flagpoll": { + "name": "flagpoll", + "description": "Polling made easy", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "didit-tech", + "email": "development@didit.com" + } + ], + "time": { + "modified": "2011-08-26T15:43:15.758Z", + "created": "2011-08-26T15:43:15.561Z", + "0.0.1": "2011-08-26T15:43:15.758Z" + }, + "author": { + "name": "Didit Tech", + "email": "development@didit.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/didit-tech/flagpoll.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/flagpoll/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "77fcb3c52bd5c9431b139430775b73fc0fbbb915", + "tarball": "http://registry.npmjs.org/flagpoll/-/flagpoll-0.0.1.tgz" + } + }, + "keywords": [ + "poll", + "polling", + "poller", + "repeat", + "repetitive" + ], + "url": "http://registry.npmjs.org/flagpoll/" + }, + "flags": { + "name": "flags", + "description": "Flag library for node.js", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "dpup", + "email": "dan@pupi.us" + } + ], + "time": { + "modified": "2011-11-02T19:53:15.783Z", + "created": "2011-04-04T14:58:54.210Z", + "0.1.0": "2011-04-04T14:58:55.383Z", + "0.1.1": "2011-11-02T19:53:15.783Z" + }, + "author": { + "name": "Daniel Pupius", + "email": "dan@pupi.us", + "url": "http://pupius.co.uk" + }, + "repository": { + "type": "git", + "url": "git://github.com/dpup/node-flags.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/flags/0.1.0", + "0.1.1": "http://registry.npmjs.org/flags/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "b9b99edceb4ec4ec17cda50d39fa7de32b00be2a", + "tarball": "http://registry.npmjs.org/flags/-/flags-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "0bd1bc177b3918155dc593483cdf272f6086d84c", + "tarball": "http://registry.npmjs.org/flags/-/flags-0.1.1.tgz" + } + }, + "keywords": [ + "flag", + "args", + "command line" + ], + "url": "http://registry.npmjs.org/flags/" + }, + "flate": { + "name": "flate", + "description": "Simple, synchronous deflate/inflate for buffers", + "dist-tags": { + "latest": "1.0.5" + }, + "maintainers": [ + { + "name": "devongovett", + "email": "devongovett@gmail.com" + } + ], + "time": { + "modified": "2011-10-22T20:39:48.286Z", + "created": "2011-10-22T20:39:46.832Z", + "1.0.5": "2011-10-22T20:39:48.286Z" + }, + "author": { + "name": "Konstantin Käfer", + "email": "kkaefer@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/kkaefer/node-zlib.git" + }, + "versions": { + "1.0.5": "http://registry.npmjs.org/flate/1.0.5" + }, + "dist": { + "1.0.5": { + "shasum": "2f448f00c709de5f96a9eede1bf62ddf05c25ae4", + "tarball": "http://registry.npmjs.org/flate/-/flate-1.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/flate/" + }, + "flatiron": { + "name": "flatiron", + "description": "An elegant blend of convention and configuration for building apps in Node.js and the browser", + "dist-tags": { + "latest": "0.1.5-1" + }, + "readme": "# [flatiron](http://flatironjs.org)\n\n*An elegant blend of convention and configuration for building apps in Node.js and the browser*\n\n![](http://flatironjs.org/img/flatiron.png)\n\n# About Flatiron\n\n* [Scaling Isomorphic Javascript Code](http://blog.nodejitsu.com/scaling-isomorphic-javascript-code)\n* [Introducing Flatiron](http://blog.nodejitsu.com/introducing-flatiron)\n\n# Pieces\n\n* [Broadway](https://github.com/flatiron/broadway)\n* [Union](https://github.com/flatiron/union)\n* [Director](https://github.com/flatiron/director)\n* [Plates](https://github.com/flatiron/plates)\n* [Resourceful](https://github.com/flatiron/resourceful)\n* [And More](https://github.com/flatiron)!\n\n# Want more? Check back tomorrow.\n\n### This is only the beginning.\n", + "maintainers": [ + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + } + ], + "time": { + "modified": "2011-12-09T11:13:20.923Z", + "created": "2011-11-21T00:39:49.685Z", + "0.1.2": "2011-11-21T00:39:52.184Z", + "0.1.3": "2011-12-02T09:49:54.061Z", + "0.1.4": "2011-12-06T09:50:29.613Z", + "0.1.5": "2011-12-09T08:08:28.580Z", + "0.1.5-1": "2011-12-09T11:13:20.923Z" + }, + "author": { + "name": "Nodejitsu Inc", + "email": "info@nodejitsu.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/flatiron/flatiron.git" + }, + "users": { + "wojohowitz": true + }, + "versions": { + "0.1.2": "http://registry.npmjs.org/flatiron/0.1.2", + "0.1.3": "http://registry.npmjs.org/flatiron/0.1.3", + "0.1.4": "http://registry.npmjs.org/flatiron/0.1.4", + "0.1.5": "http://registry.npmjs.org/flatiron/0.1.5", + "0.1.5-1": "http://registry.npmjs.org/flatiron/0.1.5-1" + }, + "dist": { + "0.1.2": { + "shasum": "35a574db65cec8f5a865116a44c41327cbed6bde", + "tarball": "http://registry.npmjs.org/flatiron/-/flatiron-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "5ab19f26df78e19e331e655d677bf7d232d0d044", + "tarball": "http://registry.npmjs.org/flatiron/-/flatiron-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "641acdd9b0bceb92566010b6486daec2ff335f9c", + "tarball": "http://registry.npmjs.org/flatiron/-/flatiron-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "1b3208838218d1eb2dc972fac1a484888872a062", + "tarball": "http://registry.npmjs.org/flatiron/-/flatiron-0.1.5.tgz" + }, + "0.1.5-1": { + "shasum": "c1ad6b6177629f17ea77b84d0d5e0536194f2747", + "tarball": "http://registry.npmjs.org/flatiron/-/flatiron-0.1.5-1.tgz" + } + }, + "url": "http://registry.npmjs.org/flatiron/" + }, + "fleck": { + "name": "fleck", + "description": "a functional-style string inflection library", + "dist-tags": { + "latest": "0.5.1" + }, + "maintainers": [ + { + "name": "trek", + "email": "trek.glowacki@gmail.com" + } + ], + "time": { + "modified": "2011-10-19T15:30:31.910Z", + "created": "2011-10-19T15:28:16.639Z", + "0.5.0": "2011-10-19T15:28:17.303Z", + "0.5.1": "2011-10-19T15:30:31.910Z" + }, + "author": { + "name": "Trek Glowacki", + "email": "trek.glowacki@gmail.com", + "url": "http://github.com/trek" + }, + "repository": { + "type": "git", + "url": "git://github.com/trek/fleck.git" + }, + "versions": { + "0.5.0": "http://registry.npmjs.org/fleck/0.5.0", + "0.5.1": "http://registry.npmjs.org/fleck/0.5.1" + }, + "dist": { + "0.5.0": { + "shasum": "32ee0a9ace09ff0e893eb0353e54d5e14d8c6acb", + "tarball": "http://registry.npmjs.org/fleck/-/fleck-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "4d25e3c30eba2d8c0f3f0dae02554f0311ebf078", + "tarball": "http://registry.npmjs.org/fleck/-/fleck-0.5.1.tgz" + } + }, + "keywords": [ + "fleck", + "ender", + "sting", + "inflection", + "pluralize" + ], + "url": "http://registry.npmjs.org/fleck/" + }, + "flexcache": { + "name": "flexcache", + "description": "flexible cacher for async functions and event emitters with switchable backends. redis/memory", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "poelzi", + "email": "git@poelzi.org" + } + ], + "time": { + "modified": "2011-11-15T03:25:17.086Z", + "created": "2011-09-09T20:02:07.745Z", + "0.0.1": "2011-09-09T20:02:09.381Z", + "0.0.5": "2011-09-13T02:31:27.112Z", + "0.0.6": "2011-09-14T12:54:15.616Z", + "0.0.7": "2011-09-16T03:17:09.746Z", + "0.0.8": "2011-09-17T07:32:08.762Z", + "0.0.9": "2011-10-03T20:09:00.450Z", + "0.1.0": "2011-11-15T03:25:17.086Z" + }, + "author": { + "name": "poelzi", + "url": "http://poelzi.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/poelzi/node-flexcache.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/flexcache/0.0.1", + "0.0.5": "http://registry.npmjs.org/flexcache/0.0.5", + "0.0.6": "http://registry.npmjs.org/flexcache/0.0.6", + "0.0.7": "http://registry.npmjs.org/flexcache/0.0.7", + "0.0.8": "http://registry.npmjs.org/flexcache/0.0.8", + "0.0.9": "http://registry.npmjs.org/flexcache/0.0.9", + "0.1.0": "http://registry.npmjs.org/flexcache/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "7fca9058dd91ea3c34deaf477e6e1853ec1cedd7", + "tarball": "http://registry.npmjs.org/flexcache/-/flexcache-0.0.1.tgz" + }, + "0.0.5": { + "shasum": "21d0708ccfeba4cd311bfebf0669afa52f892ed7", + "tarball": "http://registry.npmjs.org/flexcache/-/flexcache-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "30c4fefa4e1bc2985233963576394a9758030198", + "tarball": "http://registry.npmjs.org/flexcache/-/flexcache-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "57dd3bcc004da8e0bb597b261e4209337d360fda", + "tarball": "http://registry.npmjs.org/flexcache/-/flexcache-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "05cd8df5ec9b559a6e80fef6a62a658ed4963902", + "tarball": "http://registry.npmjs.org/flexcache/-/flexcache-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "4159e76a8cf1adc27a25630ad59d3020b8a5d122", + "tarball": "http://registry.npmjs.org/flexcache/-/flexcache-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "4181da6e8d45555ed042711852ac162e6f2fc1a6", + "tarball": "http://registry.npmjs.org/flexcache/-/flexcache-0.1.0.tgz" + } + }, + "keywords": [ + "cache", + "async", + "redis" + ], + "url": "http://registry.npmjs.org/flexcache/" + }, + "flickr-conduit": { + "name": "flickr-conduit", + "description": "A subscriber endpoint for Flickr's real-time PuSH feed", + "dist-tags": { + "latest": "0.1.5" + }, + "maintainers": [ + { + "name": "mncaudill", + "email": "nolan@nolancaudill.com" + } + ], + "time": { + "modified": "2011-10-26T06:04:29.645Z", + "created": "2011-08-23T23:13:04.100Z", + "0.1.0": "2011-08-23T23:13:04.334Z", + "0.1.1": "2011-08-23T23:26:11.023Z", + "0.1.2": "2011-08-24T04:35:13.018Z", + "0.1.3": "2011-09-27T23:53:06.973Z", + "0.1.4": "2011-10-20T15:43:42.574Z", + "0.1.5": "2011-10-26T06:04:29.645Z" + }, + "author": { + "name": "Nolan Caudill", + "email": "nolan@nolancaudill.com", + "url": "http://nolancaudill.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mncaudill/flickr-conduit.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/flickr-conduit/0.1.0", + "0.1.1": "http://registry.npmjs.org/flickr-conduit/0.1.1", + "0.1.2": "http://registry.npmjs.org/flickr-conduit/0.1.2", + "0.1.3": "http://registry.npmjs.org/flickr-conduit/0.1.3", + "0.1.4": "http://registry.npmjs.org/flickr-conduit/0.1.4", + "0.1.5": "http://registry.npmjs.org/flickr-conduit/0.1.5" + }, + "dist": { + "0.1.0": { + "shasum": "eab5d6f0af8faabc75ac05b7aacc37b0e2955ff5", + "tarball": "http://registry.npmjs.org/flickr-conduit/-/flickr-conduit-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "4377b23469498ada34cab0070445d904c7b1442e", + "tarball": "http://registry.npmjs.org/flickr-conduit/-/flickr-conduit-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "5e64ffe532f3504be6b85b5052e6353b27886518", + "tarball": "http://registry.npmjs.org/flickr-conduit/-/flickr-conduit-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "fef4045f918aa94375cc0ef6508af5f7799539b7", + "tarball": "http://registry.npmjs.org/flickr-conduit/-/flickr-conduit-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "3d0c7e58f9d5f158a179129a00911b1a1bff177a", + "tarball": "http://registry.npmjs.org/flickr-conduit/-/flickr-conduit-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "f606d588f0e921bd8fe45b637a0ac82ad66c4b43", + "tarball": "http://registry.npmjs.org/flickr-conduit/-/flickr-conduit-0.1.5.tgz" + } + }, + "url": "http://registry.npmjs.org/flickr-conduit/" + }, + "flickr-js": { + "name": "flickr-js", + "description": "Simple Flickr API client", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "smurthas", + "email": "simon@murtha-smith.com" + } + ], + "time": { + "modified": "2011-09-16T01:13:32.787Z", + "created": "2011-08-31T00:11:18.940Z", + "0.0.0": "2011-08-31T00:11:20.279Z", + "0.0.1": "2011-09-16T01:13:32.787Z" + }, + "author": { + "name": "Simon Murtha-Smith", + "email": "simon@murtha-smith.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/smurthas/flickr-js.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/flickr-js/0.0.0", + "0.0.1": "http://registry.npmjs.org/flickr-js/0.0.1" + }, + "dist": { + "0.0.0": { + "shasum": "58b218c899c9277868a4b28e79776ecfb89b3db5", + "tarball": "http://registry.npmjs.org/flickr-js/-/flickr-js-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "8c9389d422519ca4833cd0431456dd2af20fe465", + "tarball": "http://registry.npmjs.org/flickr-js/-/flickr-js-0.0.1.tgz" + } + }, + "keywords": [ + "flickr", + "api" + ], + "url": "http://registry.npmjs.org/flickr-js/" + }, + "flickr-reflection": { + "name": "flickr-reflection", + "description": "A flickr client using their reflection API", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "teemow", + "email": "teemow@gmail.com" + } + ], + "author": { + "name": "Timo Derstappen", + "email": "teemow@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/flickr-reflection/0.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/flickr-reflection/-/flickr-reflection-0.0.1.tgz" + } + }, + "keywords": [ + "flickr", + "api", + "photos" + ], + "url": "http://registry.npmjs.org/flickr-reflection/" + }, + "flo": { + "name": "flo", + "description": "Redis powered node.js autocompleter inspired by soulmate", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "siong1987", + "email": "siong1987@gmail.com" + } + ], + "time": { + "modified": "2011-09-10T23:21:43.827Z", + "created": "2011-09-10T23:21:22.977Z", + "0.1.0": "2011-09-10T23:21:43.827Z" + }, + "author": { + "name": "Teng Siong Ong", + "email": "siong1987@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/FLOChip/flo.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/flo/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "b074728f5dce7b1ee419ce27ad690152843b5318", + "tarball": "http://registry.npmjs.org/flo/-/flo-0.1.0.tgz" + } + }, + "keywords": [ + "autocompleter", + "soulmate", + "redis", + "flo" + ], + "url": "http://registry.npmjs.org/flo/" + }, + "flow": { + "name": "flow", + "description": "Flow-JS makes it easy to express multi-step asynchronous logic in Node or the browser", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "willconant", + "email": "will.conant@gmail.com" + } + ], + "author": { + "name": "Will Conant", + "email": "will.conant@gmail.com" + }, + "versions": { + "0.2.2": "http://registry.npmjs.org/flow/0.2.2" + }, + "dist": { + "0.2.2": { + "tarball": "http://packages:5984/flow/-/flow-0.2.2.tgz" + } + }, + "keywords": [ + "util", + "functional", + "server", + "client", + "browser" + ], + "url": "http://registry.npmjs.org/flow/" + }, + "flowcontrol": { + "name": "flowcontrol", + "description": "asynchronous flow-control micro library", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "jetienne", + "email": "jerome.etienne@gmail.com" + } + ], + "time": { + "modified": "2011-07-20T11:45:11.424Z", + "created": "2011-07-20T11:45:11.035Z", + "1.0.0": "2011-07-20T11:45:11.424Z" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/flowcontrol/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "367e7f63b1446f346b20361fd3a757fc7b25a7db", + "tarball": "http://registry.npmjs.org/flowcontrol/-/flowcontrol-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/flowcontrol/" + }, + "flowdock": { + "name": "flowdock", + "description": "Flowdock client/API for node.js", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "lautis", + "email": "lautis@gmail.com" + } + ], + "time": { + "modified": "2011-11-01T17:17:35.942Z", + "created": "2011-10-07T12:24:25.799Z", + "0.1.0": "2011-10-07T12:24:26.520Z", + "0.2.0": "2011-10-31T10:54:50.236Z", + "0.2.1": "2011-11-01T09:40:56.357Z", + "0.2.2": "2011-11-01T17:17:35.942Z" + }, + "author": { + "name": "Ville Lautanala", + "email": "lautis@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/flowdock/0.1.0", + "0.2.0": "http://registry.npmjs.org/flowdock/0.2.0", + "0.2.1": "http://registry.npmjs.org/flowdock/0.2.1", + "0.2.2": "http://registry.npmjs.org/flowdock/0.2.2" + }, + "dist": { + "0.1.0": { + "shasum": "169ea6919e7d58be73c360e47563a1bd3f50f65f", + "tarball": "http://registry.npmjs.org/flowdock/-/flowdock-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "6f69c6e963c8e8cef71699adb6f0800e8b29e648", + "tarball": "http://registry.npmjs.org/flowdock/-/flowdock-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "bcb4735a1e780b74c84b2f28dca0bbd65ad7c7a6", + "tarball": "http://registry.npmjs.org/flowdock/-/flowdock-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "d51a7ac8c7083fe5d46283afe33501d20f11432b", + "tarball": "http://registry.npmjs.org/flowdock/-/flowdock-0.2.2.tgz" + } + }, + "keywords": [ + "flowdock" + ], + "url": "http://registry.npmjs.org/flowdock/" + }, + "flowjs": { + "name": "flowjs", + "description": "asynchronous flow-control micro library", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "jetienne", + "email": "jerome.etienne@gmail.com" + } + ], + "time": { + "modified": "2011-07-20T11:36:20.300Z", + "created": "2011-07-20T11:36:19.916Z", + "1.0.0": "2011-07-20T11:36:20.300Z" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/flowjs/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "608120c2e19230cd8c64d87f3c0b11cb07df6ff1", + "tarball": "http://registry.npmjs.org/flowjs/-/flowjs-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/flowjs/" + }, + "fluent": { + "name": "fluent", + "description": "Chain asynchronous operations naturally.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "twisol", + "email": "twisolar@gmail.com" + } + ], + "time": { + "modified": "2011-10-31T07:13:06.219Z", + "created": "2011-10-31T07:13:05.315Z", + "0.0.1": "2011-10-31T07:13:06.219Z" + }, + "author": { + "name": "Jonathan Castello" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/fluent/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "3b8e7d6fdc2bcf8661905120bb6ec5771f3a2f19", + "tarball": "http://registry.npmjs.org/fluent/-/fluent-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/fluent/" + }, + "fluent-ffmpeg": { + "name": "fluent-ffmpeg", + "description": "A fluent API to FFMPEG (http://www.ffmpeg.org)", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "schaermu", + "email": "schaermu@gmail.com" + } + ], + "time": { + "modified": "2011-12-02T15:17:01.673Z", + "created": "2011-04-12T06:45:18.963Z", + "0.0.1": "2011-04-12T06:45:19.351Z", + "0.0.2": "2011-04-15T10:11:55.370Z", + "0.0.3": "2011-04-15T10:18:55.153Z", + "0.0.4": "2011-04-15T15:25:47.419Z", + "0.0.5": "2011-04-18T12:21:14.414Z", + "0.0.6": "2011-04-18T13:29:43.037Z", + "0.0.7": "2011-04-19T11:57:07.853Z", + "0.0.8": "2011-04-19T15:10:58.020Z", + "0.0.10": "2011-04-20T08:37:00.806Z", + "0.0.11": "2011-04-20T11:36:00.620Z", + "0.0.12": "2011-04-20T14:00:59.058Z", + "0.0.13": "2011-04-20T14:14:11.004Z", + "0.0.14": "2011-04-20T14:52:12.258Z", + "0.0.15": "2011-04-27T07:04:39.621Z", + "0.0.16": "2011-04-27T07:44:42.240Z", + "0.0.19": "2011-06-16T06:53:45.200Z", + "0.1.0": "2011-12-02T15:16:09.509Z", + "0.1.1": "2011-12-02T15:17:01.673Z" + }, + "author": { + "name": "Stefan Schaermeli", + "email": "schaermu@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/schaermu/node-fluent-ffmpeg.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/fluent-ffmpeg/0.0.1", + "0.0.2": "http://registry.npmjs.org/fluent-ffmpeg/0.0.2", + "0.0.3": "http://registry.npmjs.org/fluent-ffmpeg/0.0.3", + "0.0.4": "http://registry.npmjs.org/fluent-ffmpeg/0.0.4", + "0.0.5": "http://registry.npmjs.org/fluent-ffmpeg/0.0.5", + "0.0.6": "http://registry.npmjs.org/fluent-ffmpeg/0.0.6", + "0.0.7": "http://registry.npmjs.org/fluent-ffmpeg/0.0.7", + "0.0.8": "http://registry.npmjs.org/fluent-ffmpeg/0.0.8", + "0.0.10": "http://registry.npmjs.org/fluent-ffmpeg/0.0.10", + "0.0.11": "http://registry.npmjs.org/fluent-ffmpeg/0.0.11", + "0.0.12": "http://registry.npmjs.org/fluent-ffmpeg/0.0.12", + "0.0.13": "http://registry.npmjs.org/fluent-ffmpeg/0.0.13", + "0.0.14": "http://registry.npmjs.org/fluent-ffmpeg/0.0.14", + "0.0.15": "http://registry.npmjs.org/fluent-ffmpeg/0.0.15", + "0.0.16": "http://registry.npmjs.org/fluent-ffmpeg/0.0.16", + "0.0.19": "http://registry.npmjs.org/fluent-ffmpeg/0.0.19", + "0.1.0": "http://registry.npmjs.org/fluent-ffmpeg/0.1.0", + "0.1.1": "http://registry.npmjs.org/fluent-ffmpeg/0.1.1" + }, + "dist": { + "0.0.1": { + "shasum": "b71be245911cbedc9d59159512940bc7d1add92d", + "tarball": "http://registry.npmjs.org/fluent-ffmpeg/-/fluent-ffmpeg-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "95a91ae9de35c5e6cc17173ed5020708d930357d", + "tarball": "http://registry.npmjs.org/fluent-ffmpeg/-/fluent-ffmpeg-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "9960b65a45de3e86d134e0a20944b713a9f309fc", + "tarball": "http://registry.npmjs.org/fluent-ffmpeg/-/fluent-ffmpeg-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "144d87e0f45db2e16c674c3ecef7ce8c22ccd682", + "tarball": "http://registry.npmjs.org/fluent-ffmpeg/-/fluent-ffmpeg-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "012f7f2ea0372860be59838aeb23324093cc1afd", + "tarball": "http://registry.npmjs.org/fluent-ffmpeg/-/fluent-ffmpeg-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "493a51e60034fa3c7415eebd3e27387870186586", + "tarball": "http://registry.npmjs.org/fluent-ffmpeg/-/fluent-ffmpeg-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "c7bfb0361906bca063dfae98b21a21ce88762d05", + "tarball": "http://registry.npmjs.org/fluent-ffmpeg/-/fluent-ffmpeg-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "38cd81f9715929969969bdc38b95242dbe90db9a", + "tarball": "http://registry.npmjs.org/fluent-ffmpeg/-/fluent-ffmpeg-0.0.8.tgz" + }, + "0.0.10": { + "shasum": "97cf7567b458fc91f265fa6d12332dd23696ddc9", + "tarball": "http://registry.npmjs.org/fluent-ffmpeg/-/fluent-ffmpeg-0.0.10.tgz" + }, + "0.0.11": { + "shasum": "4c18d09fec583347fa714dbc8191f8f8b01ef51f", + "tarball": "http://registry.npmjs.org/fluent-ffmpeg/-/fluent-ffmpeg-0.0.11.tgz" + }, + "0.0.12": { + "shasum": "4f925fe14c0b9e4894376cfef0ceb698617f9b4a", + "tarball": "http://registry.npmjs.org/fluent-ffmpeg/-/fluent-ffmpeg-0.0.12.tgz" + }, + "0.0.13": { + "shasum": "1478a39c1eddc0dc2ff2d861cc0f4be17ed555cb", + "tarball": "http://registry.npmjs.org/fluent-ffmpeg/-/fluent-ffmpeg-0.0.13.tgz" + }, + "0.0.14": { + "shasum": "7ecde755e7fabc4af16c00422da87c26e0b0989d", + "tarball": "http://registry.npmjs.org/fluent-ffmpeg/-/fluent-ffmpeg-0.0.14.tgz" + }, + "0.0.15": { + "shasum": "4dea9fbbb514752f1e537d8463fac6ab8cffc25e", + "tarball": "http://registry.npmjs.org/fluent-ffmpeg/-/fluent-ffmpeg-0.0.15.tgz" + }, + "0.0.16": { + "shasum": "269494e9734fb49220e8790920188ff5fc1ade64", + "tarball": "http://registry.npmjs.org/fluent-ffmpeg/-/fluent-ffmpeg-0.0.16.tgz" + }, + "0.0.19": { + "shasum": "7037e325d6e86f18629cee41b4f7d389d9dac46a", + "tarball": "http://registry.npmjs.org/fluent-ffmpeg/-/fluent-ffmpeg-0.0.19.tgz" + }, + "0.1.0": { + "shasum": "3fcb7c558d47721d51f935ec11c64b2f2682428d", + "tarball": "http://registry.npmjs.org/fluent-ffmpeg/-/fluent-ffmpeg-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "e212a8b68d9f0aef6e097947abd12aaa1002e4a3", + "tarball": "http://registry.npmjs.org/fluent-ffmpeg/-/fluent-ffmpeg-0.1.1.tgz" + } + }, + "keywords": [ + "ffmpeg" + ], + "url": "http://registry.npmjs.org/fluent-ffmpeg/" + }, + "fluent-logger": { + "name": "fluent-logger", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "yssk22", + "email": "yssk22@gmail.com" + } + ], + "time": { + "modified": "2011-10-07T14:41:16.089Z", + "created": "2011-10-07T14:41:14.950Z", + "0.0.1": "2011-10-07T14:41:16.089Z" + }, + "author": { + "name": "Yohei Sasaki", + "email": "yssk22@gmail.com", + "url": "http://github.com/yssk22" + }, + "repository": { + "type": "git", + "url": "git://github.com/yssk22/fluent-logger-node.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/fluent-logger/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "3043d6372200868e2175754f113dbcdd7416d2c2", + "tarball": "http://registry.npmjs.org/fluent-logger/-/fluent-logger-0.0.1.tgz" + } + }, + "keywords": [ + "logger", + "fluent" + ], + "url": "http://registry.npmjs.org/fluent-logger/" + }, + "flume-rpc": { + "name": "flume-rpc", + "description": "flume RPC sink and source for node.js; allows a node.js process to interoperate with Apache flume via its RPC mechanism", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "jeremybarnes", + "email": "jeremy@barneso.com" + } + ], + "time": { + "modified": "2011-09-14T14:00:06.101Z", + "created": "2011-09-12T03:55:38.220Z", + "0.0.1": "2011-09-12T03:55:38.334Z", + "0.0.2": "2011-09-12T13:36:26.307Z", + "0.0.3": "2011-09-14T14:00:06.101Z" + }, + "author": { + "name": "Jeremy Barnes", + "email": "jeremy@recoset.com", + "url": "www.recoset.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/recoset/node-flume-rpc.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/flume-rpc/0.0.1", + "0.0.2": "http://registry.npmjs.org/flume-rpc/0.0.2", + "0.0.3": "http://registry.npmjs.org/flume-rpc/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "6a338190b9c4cb11212f5b82aefc319de40717d2", + "tarball": "http://registry.npmjs.org/flume-rpc/-/flume-rpc-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f2bc4d828cee557d04241f61cc814b07645eebaa", + "tarball": "http://registry.npmjs.org/flume-rpc/-/flume-rpc-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "0693f0232874cda0c780675b92ed3bf5ea0fb804", + "tarball": "http://registry.npmjs.org/flume-rpc/-/flume-rpc-0.0.3.tgz" + } + }, + "keywords": [ + "flume", + "sink", + "source", + "RPC", + "logging", + "hadoop" + ], + "url": "http://registry.npmjs.org/flume-rpc/" + }, + "flux": { + "name": "flux", + "description": "Easily find and acquire torrents from public torrent sites.", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "projectmoon", + "email": "rei@thermetics.net" + } + ], + "time": { + "modified": "2011-10-31T14:09:56.595Z", + "created": "2011-09-03T15:44:48.836Z", + "1.0.0": "2011-09-03T15:44:49.062Z", + "1.0.1": "2011-10-31T14:09:56.595Z" + }, + "author": { + "name": "ProjectMoon" + }, + "repository": { + "type": "git", + "url": "git://github.com/ProjectMoon/flux.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/flux/1.0.0", + "1.0.1": "http://registry.npmjs.org/flux/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "26da8d6168a63ab20425e496328a2d9eab642bc8", + "tarball": "http://registry.npmjs.org/flux/-/flux-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "fb2a1ba4a1cab0512bbb08b99d3b6a5b93f5dcdb", + "tarball": "http://registry.npmjs.org/flux/-/flux-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/flux/" + }, + "fly": { + "name": "fly", + "description": "Pretty colorful console output for your applications in NodeJS", + "dist-tags": { + "latest": "0.1.50" + }, + "maintainers": [ + { + "name": "goatslacker", + "email": "josh@goatslacker.com" + } + ], + "time": { + "modified": "2011-07-17T01:15:07.645Z", + "created": "2011-07-06T02:12:52.504Z", + "0.1.32": "2011-07-06T02:12:53.088Z", + "0.1.33": "2011-07-06T02:23:55.442Z", + "0.1.46": "2011-07-11T06:22:27.098Z", + "0.1.50": "2011-07-17T01:15:07.645Z" + }, + "author": { + "name": "Josh Perez", + "email": "josh@goatslacker.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/goatslacker/fly.git" + }, + "versions": { + "0.1.32": "http://registry.npmjs.org/fly/0.1.32", + "0.1.33": "http://registry.npmjs.org/fly/0.1.33", + "0.1.46": "http://registry.npmjs.org/fly/0.1.46", + "0.1.50": "http://registry.npmjs.org/fly/0.1.50" + }, + "dist": { + "0.1.32": { + "shasum": "c1313123cd70464f84f9b8fd7a6d8b616d6fefb1", + "tarball": "http://registry.npmjs.org/fly/-/fly-0.1.32.tgz" + }, + "0.1.33": { + "shasum": "5d8ceff41511916c9d78efa0b957da2daa2af58e", + "tarball": "http://registry.npmjs.org/fly/-/fly-0.1.33.tgz" + }, + "0.1.46": { + "shasum": "2937be20694cc484f25828a1aa0411221bd60a98", + "tarball": "http://registry.npmjs.org/fly/-/fly-0.1.46.tgz" + }, + "0.1.50": { + "shasum": "014564279634bf8cd1f62a4b68e7246dea092fb5", + "tarball": "http://registry.npmjs.org/fly/-/fly-0.1.50.tgz" + } + }, + "keywords": [ + "colors", + "console", + "styles", + "terminal" + ], + "url": "http://registry.npmjs.org/fly/" + }, + "flywheel": { + "name": "flywheel", + "description": "Game/Animation loop microlib/utility for the clientside.", + "dist-tags": { + "latest": "0.9.3" + }, + "maintainers": [ + { + "name": "hughfdjackson", + "email": "hughfdjackson@googlemail.com" + } + ], + "time": { + "modified": "2011-10-04T13:53:37.535Z", + "created": "2011-09-26T18:01:09.020Z", + "0.0.1": "2011-09-26T18:01:10.477Z", + "0.0.2": "2011-09-26T18:18:22.738Z", + "0.0.3": "2011-09-26T18:24:00.582Z", + "0.0.4": "2011-09-26T19:06:54.042Z", + "0.1.0": "2011-09-27T22:11:05.065Z", + "0.9.0": "2011-10-01T00:33:51.879Z", + "0.9.1": "2011-10-02T17:19:35.713Z", + "0.9.2": "2011-10-02T20:27:03.538Z", + "0.9.3": "2011-10-04T13:53:37.535Z" + }, + "repository": { + "type": "git", + "url": "git@github.com:hughfdjackson/flywheel.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/flywheel/0.0.1", + "0.0.2": "http://registry.npmjs.org/flywheel/0.0.2", + "0.0.3": "http://registry.npmjs.org/flywheel/0.0.3", + "0.0.4": "http://registry.npmjs.org/flywheel/0.0.4", + "0.1.0": "http://registry.npmjs.org/flywheel/0.1.0", + "0.9.0": "http://registry.npmjs.org/flywheel/0.9.0", + "0.9.1": "http://registry.npmjs.org/flywheel/0.9.1", + "0.9.2": "http://registry.npmjs.org/flywheel/0.9.2", + "0.9.3": "http://registry.npmjs.org/flywheel/0.9.3" + }, + "dist": { + "0.0.1": { + "shasum": "59cd02bf13116a823708c97cb1dcbeaf29b5375c", + "tarball": "http://registry.npmjs.org/flywheel/-/flywheel-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "76744124c013d1bbf8f6b11c499ab299fe105e3f", + "tarball": "http://registry.npmjs.org/flywheel/-/flywheel-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "ba1489c9305598b926bab2f41b76ce6aa3dc65a6", + "tarball": "http://registry.npmjs.org/flywheel/-/flywheel-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "cd67452fe0e8f09afed805897ab6766ffe560ef4", + "tarball": "http://registry.npmjs.org/flywheel/-/flywheel-0.0.4.tgz" + }, + "0.1.0": { + "shasum": "7af560d0e173b85dcbbed337caea05e5559c84d2", + "tarball": "http://registry.npmjs.org/flywheel/-/flywheel-0.1.0.tgz" + }, + "0.9.0": { + "shasum": "5001a077a0ce8c7d6750c3ba84b8cae9e2ebfc51", + "tarball": "http://registry.npmjs.org/flywheel/-/flywheel-0.9.0.tgz" + }, + "0.9.1": { + "shasum": "80aaf42f33f65587059fcead7e718957a98a6ff7", + "tarball": "http://registry.npmjs.org/flywheel/-/flywheel-0.9.1.tgz" + }, + "0.9.2": { + "shasum": "abedc6c1691b0ce3941952214952766d9475ed07", + "tarball": "http://registry.npmjs.org/flywheel/-/flywheel-0.9.2.tgz" + }, + "0.9.3": { + "shasum": "21d16c07ced6990ad36c96c664952af99275611c", + "tarball": "http://registry.npmjs.org/flywheel/-/flywheel-0.9.3.tgz" + } + }, + "keywords": [ + "game", + "animation", + "engine", + "loop", + "ender" + ], + "url": "http://registry.npmjs.org/flywheel/" + }, + "fmamsg": { + "name": "fmamsg", + "description": "Encode/decode of Sun FMA Message IDs (e.g. ZFS-8000-1W)", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "jclulow", + "email": "josh@sysmgr.org" + } + ], + "time": { + "modified": "2011-11-07T06:46:53.550Z", + "created": "2011-11-07T06:46:50.242Z", + "0.0.1": "2011-11-07T06:46:53.550Z" + }, + "author": { + "name": "Joshua M. Clulow", + "email": "josh@sysmgr.org", + "url": "http://blog.sysmgr.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/jclulow/node-fmamsg.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/fmamsg/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "01a2559e6f3554dc4d2a92fa9fedc2ec1144f7a3", + "tarball": "http://registry.npmjs.org/fmamsg/-/fmamsg-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/fmamsg/" + }, + "fn": { + "name": "fn", + "description": "Coming soon..", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "jakobm", + "email": "jakob.mattsson@gmail.com" + } + ], + "time": { + "modified": "2011-07-13T20:49:55.054Z", + "created": "2011-07-13T11:27:27.962Z", + "0.0.1": "2011-07-13T11:27:28.553Z", + "0.1.0": "2011-07-13T20:49:55.054Z" + }, + "author": { + "name": "Jakob Mattsson", + "email": "jakob@burtcorp.com", + "url": "http://www.jakobmattsson.se" + }, + "repository": { + "type": "git", + "url": "git://github.com/jakobmattsson/fn.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/fn/0.0.1", + "0.1.0": "http://registry.npmjs.org/fn/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "7fb671c44766bc39bb46dd005df987c2a1a57f02", + "tarball": "http://registry.npmjs.org/fn/-/fn-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "1c28c206b43b8f7142d8a3f275bea5ba0d19d4db", + "tarball": "http://registry.npmjs.org/fn/-/fn-0.1.0.tgz" + } + }, + "keywords": [ + "functional", + "util" + ], + "url": "http://registry.npmjs.org/fn/" + }, + "fnProxy": { + "name": "fnProxy", + "description": "A function timenout proxy", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "flockonus", + "email": "fabianosoriani@gmail.com" + } + ], + "time": { + "modified": "2011-08-25T19:09:52.585Z", + "created": "2011-08-25T19:09:51.882Z", + "0.0.1": "2011-08-25T19:09:52.585Z" + }, + "author": { + "name": "Fabiano Pereira Soriani", + "email": "fabianosoriani@gmail.com", + "url": "https://github.com/flockonus" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/fnProxy/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "78f002b98db00df2aef2722c938b8cca660b437c", + "tarball": "http://registry.npmjs.org/fnProxy/-/fnProxy-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/fnProxy/" + }, + "fnqueue": { + "name": "fnqueue", + "description": "A powerful utility for function chaining", + "dist-tags": { + "latest": "2.0.1" + }, + "maintainers": [ + { + "name": "kilianc", + "email": "kilian.ciuffolo@gmail.com" + } + ], + "time": { + "modified": "2011-11-23T11:54:52.376Z", + "created": "2011-10-15T11:23:39.872Z", + "1.0.2": "2011-10-15T11:23:41.876Z", + "1.0.3": "2011-10-15T23:54:03.852Z", + "1.0.4": "2011-10-29T12:50:09.018Z", + "1.0.5": "2011-10-30T22:31:29.335Z", + "2.0.0": "2011-11-18T18:46:02.426Z", + "2.0.1": "2011-11-23T11:54:52.376Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/kilianc/node-fnqueue.git" + }, + "author": { + "name": "Kilian Ciuffolo", + "email": "me@nailik.org", + "url": "http://nailik.org" + }, + "versions": { + "1.0.2": "http://registry.npmjs.org/fnqueue/1.0.2", + "1.0.3": "http://registry.npmjs.org/fnqueue/1.0.3", + "1.0.4": "http://registry.npmjs.org/fnqueue/1.0.4", + "1.0.5": "http://registry.npmjs.org/fnqueue/1.0.5", + "2.0.0": "http://registry.npmjs.org/fnqueue/2.0.0", + "2.0.1": "http://registry.npmjs.org/fnqueue/2.0.1" + }, + "dist": { + "1.0.2": { + "shasum": "ea20257e5f55b7e37667b0be40ea22cb68c38a48", + "tarball": "http://registry.npmjs.org/fnqueue/-/fnqueue-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "c16ff89d605c635da6db5b06fe08b9f68d138e82", + "tarball": "http://registry.npmjs.org/fnqueue/-/fnqueue-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "5ab66be5c1a6715e23acee2f58764f7df816b2ae", + "tarball": "http://registry.npmjs.org/fnqueue/-/fnqueue-1.0.4.tgz" + }, + "1.0.5": { + "shasum": "01d8eb17c9f1e4394d23c9bfd951c199635d6d0c", + "tarball": "http://registry.npmjs.org/fnqueue/-/fnqueue-1.0.5.tgz" + }, + "2.0.0": { + "shasum": "3a0a1faf225a9a1a91daf70fd4dc92f69040a0ea", + "tarball": "http://registry.npmjs.org/fnqueue/-/fnqueue-2.0.0.tgz" + }, + "2.0.1": { + "shasum": "fdb40b1d5f22229655f2e95de505eeaddb7d06b4", + "tarball": "http://registry.npmjs.org/fnqueue/-/fnqueue-2.0.1.tgz" + } + }, + "keywords": [ + "async", + "queue", + "promise", + "flow", + "parallel", + "chain" + ], + "url": "http://registry.npmjs.org/fnqueue/" + }, + "folio": { + "name": "folio", + "description": "Asset aggregation and browserfication.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "jakeluer", + "email": "jake.luer@incatern.com" + } + ], + "time": { + "modified": "2011-11-02T07:28:28.005Z", + "created": "2011-10-14T02:21:29.818Z", + "0.0.4": "2011-10-14T02:21:30.390Z", + "0.1.0": "2011-11-01T07:34:16.055Z", + "0.1.1": "2011-11-02T07:28:28.005Z" + }, + "author": { + "name": "Jake Luer", + "email": "@jakeluer" + }, + "repository": { + "type": "git", + "url": "git://github.com/logicalparadox/folio.git" + }, + "versions": { + "0.0.4": "http://registry.npmjs.org/folio/0.0.4", + "0.1.0": "http://registry.npmjs.org/folio/0.1.0", + "0.1.1": "http://registry.npmjs.org/folio/0.1.1" + }, + "dist": { + "0.0.4": { + "shasum": "3afcd83d23a295b441658aecc8ea7e36c2cbc3b8", + "tarball": "http://registry.npmjs.org/folio/-/folio-0.0.4.tgz" + }, + "0.1.0": { + "shasum": "f213f5fa0212945b320eee7ff2157311efd8a8d3", + "tarball": "http://registry.npmjs.org/folio/-/folio-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "b701f3c0a763eb94dab0f83534d0dd011a04164f", + "tarball": "http://registry.npmjs.org/folio/-/folio-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/folio/" + }, + "follow": { + "name": "follow", + "description": "Extremely robust, fault-tolerant CouchDB changes follower", + "dist-tags": { + "latest": "0.5.0" + }, + "maintainers": [ + { + "name": "jhs", + "email": "jhs@iriscouch.com" + }, + { + "name": "jhs", + "email": "jhs@couchone.com" + } + ], + "time": { + "modified": "2011-12-13T02:45:23.698Z", + "created": "2011-06-08T13:13:06.894Z", + "0.1.0": "2011-06-08T13:13:09.721Z", + "0.2.0": "2011-09-27T02:28:36.130Z", + "0.4.0": "2011-11-06T02:10:27.560Z", + "0.4.1": "2011-11-22T02:49:38.623Z", + "0.5.0": "2011-12-13T02:45:23.698Z" + }, + "author": { + "name": "Jason Smith", + "email": "jhs@iriscouch.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/iriscouch/follow.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/follow/0.1.0", + "0.2.0": "http://registry.npmjs.org/follow/0.2.0", + "0.4.0": "http://registry.npmjs.org/follow/0.4.0", + "0.4.1": "http://registry.npmjs.org/follow/0.4.1", + "0.5.0": "http://registry.npmjs.org/follow/0.5.0" + }, + "dist": { + "0.1.0": { + "shasum": "bd7d1694ecd824423e4bcc10a715a80cecaf08fc", + "tarball": "http://registry.npmjs.org/follow/-/follow-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "0957cbbfb76ac18ea51908eb3ad1751d542b11f0", + "tarball": "http://registry.npmjs.org/follow/-/follow-0.2.0.tgz" + }, + "0.4.0": { + "shasum": "13346cdcb2db8851ba620c6c3671cb270be44e2b", + "tarball": "http://registry.npmjs.org/follow/-/follow-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "c8e30793224156de0ec96d9452ab8fd4ac01179e", + "tarball": "http://registry.npmjs.org/follow/-/follow-0.4.1.tgz" + }, + "0.5.0": { + "shasum": "156128d64ca7960faefe393b90a885f210172f21", + "tarball": "http://registry.npmjs.org/follow/-/follow-0.5.0.tgz" + } + }, + "url": "http://registry.npmjs.org/follow/" + }, + "fomatto": { + "name": "fomatto", + "description": "Lightweight JavaScript String Interpolation.", + "dist-tags": { + "latest": "0.5.0" + }, + "maintainers": [ + { + "name": "Ivo Wetzel", + "email": "ivo.wetzel@googlemail.com" + } + ], + "time": { + "modified": "2011-03-04T12:55:10.834Z", + "created": "2011-02-27T11:49:13.566Z", + "0.4.9": "2011-02-27T11:49:13.974Z", + "0.5.0": "2011-03-04T12:54:57.248Z" + }, + "author": { + "name": "Ivo Wetzel", + "email": "ivo.wetzel@googlemail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/BonsaiDen/fomatto.git" + }, + "versions": { + "0.5.0": "http://registry.npmjs.org/fomatto/0.5.0" + }, + "dist": { + "0.5.0": { + "shasum": "cd661a08ca58693c2e36136ff721c801eee4311e", + "tarball": "http://registry.npmjs.org/fomatto/-/fomatto-0.5.0.tgz" + } + }, + "keywords": [ + "string", + "interpolation", + "formatting" + ], + "url": "http://registry.npmjs.org/fomatto/" + }, + "foo": { + "name": "foo", + "description": "A test module with no `main`, `lib`, or `dependencies` specified", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-10-21T23:45:45.878Z", + "created": "2011-10-21T23:45:45.286Z", + "1.0.0": "2011-10-21T23:45:45.878Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com", + "url": "http://coolaj86.info" + }, + "repository": { + "type": "git", + "url": "git://github.com/coolaj86/node-pakman.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/foo/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "943e0ec03df00ebeb6273a5b94b916ba54b47581", + "tarball": "http://registry.npmjs.org/foo/-/foo-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/foo/" + }, + "foobar": { + "name": "foobar", + "description": "A test module", + "dist-tags": { + "latest": "1.1.0" + }, + "maintainers": [ + { + "name": "jergason", + "email": "jergason@gmail.com" + } + ], + "time": { + "modified": "2011-11-04T02:20:58.139Z", + "created": "2011-11-04T02:13:08.067Z", + "1.0.0": "2011-11-04T02:13:09.038Z", + "1.1.0": "2011-11-04T02:20:58.139Z" + }, + "author": { + "name": "Jamison Dance", + "email": "jergason@gmail.com", + "url": "http://jamisondance.com/" + }, + "repository": { + "url": "" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/foobar/1.0.0", + "1.1.0": "http://registry.npmjs.org/foobar/1.1.0" + }, + "dist": { + "1.0.0": { + "shasum": "116ff82f61ce1e9545c5ba302ead651f5bb31247", + "tarball": "http://registry.npmjs.org/foobar/-/foobar-1.0.0.tgz" + }, + "1.1.0": { + "shasum": "0b76cc4e6c5b8d592db598fb870414c290511df2", + "tarball": "http://registry.npmjs.org/foobar/-/foobar-1.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/foobar/" + }, + "foobar.browser": { + "name": "foobar.browser", + "description": "A test module", + "dist-tags": { + "latest": "1.1.0" + }, + "maintainers": [ + { + "name": "jergason", + "email": "jergason@gmail.com" + } + ], + "time": { + "modified": "2011-11-04T02:29:35.210Z", + "created": "2011-11-04T02:29:34.253Z", + "1.1.0": "2011-11-04T02:29:35.210Z" + }, + "author": { + "name": "Jamison Dance", + "email": "jergason@gmail.com", + "url": "http://jamisondance.com/" + }, + "repository": { + "url": "" + }, + "versions": { + "1.1.0": "http://registry.npmjs.org/foobar.browser/1.1.0" + }, + "dist": { + "1.1.0": { + "shasum": "3609393a186f7999bc5f2c6794b7d0c951017013", + "tarball": "http://registry.npmjs.org/foobar.browser/-/foobar.browser-1.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/foobar.browser/" + }, + "fool": { + "name": "fool", + "description": "Fake object-oriented library", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "joehewitt", + "email": "joe@joehewitt.com" + } + ], + "time": { + "modified": "2011-10-10T01:45:52.585Z", + "created": "2011-10-10T01:45:26.501Z", + "0.0.1": "2011-10-10T01:45:52.585Z" + }, + "author": { + "name": "Joe Hewitt", + "email": "joe@joehewitt.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/joehewitt/fool.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/fool/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "3400cd15164dac407e0a666e3f297b913857354b", + "tarball": "http://registry.npmjs.org/fool/-/fool-0.0.1.tgz" + } + }, + "keywords": [ + "oo" + ], + "url": "http://registry.npmjs.org/fool/" + }, + "foounit": { + "name": "foounit", + "description": "Cross environment BDD test framework", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "foobarfighter", + "email": "bob.remeika@gmail.com" + } + ], + "time": { + "modified": "2011-06-21T05:47:24.714Z", + "created": "2011-05-16T22:42:17.850Z", + "0.0.1": "2011-05-16T22:42:18.384Z", + "0.0.2": "2011-05-17T06:44:01.984Z", + "0.0.3": "2011-05-18T00:27:34.874Z", + "0.0.4": "2011-05-19T19:32:26.760Z", + "0.0.5": "2011-06-07T00:56:47.859Z", + "0.0.6": "2011-06-08T11:20:53.247Z", + "0.0.7": "2011-06-13T21:23:43.276Z", + "0.1.0": "2011-06-21T05:47:24.714Z" + }, + "author": { + "name": "Bob Remeika" + }, + "repository": { + "type": "git", + "url": "git://github.com/foobarfighter/foounit.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/foounit/0.0.1", + "0.0.2": "http://registry.npmjs.org/foounit/0.0.2", + "0.0.3": "http://registry.npmjs.org/foounit/0.0.3", + "0.0.4": "http://registry.npmjs.org/foounit/0.0.4", + "0.0.5": "http://registry.npmjs.org/foounit/0.0.5", + "0.0.6": "http://registry.npmjs.org/foounit/0.0.6", + "0.0.7": "http://registry.npmjs.org/foounit/0.0.7", + "0.1.0": "http://registry.npmjs.org/foounit/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "435c0ba927f2c911548130fd11e8fb87e73ba5bb", + "tarball": "http://registry.npmjs.org/foounit/-/foounit-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "769c6ee395086bf7291e428123456bd781bc8f3c", + "tarball": "http://registry.npmjs.org/foounit/-/foounit-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "f4628863cbfb044373918fbe47b0bb2d435792a7", + "tarball": "http://registry.npmjs.org/foounit/-/foounit-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "4cc7cc2fc4e3625fb83e2f1569dc464dfc7e1229", + "tarball": "http://registry.npmjs.org/foounit/-/foounit-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "cf750ddbd2aeaf3b2b36ba502407659e90c1ef31", + "tarball": "http://registry.npmjs.org/foounit/-/foounit-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "5bd5530f9883d45c8c6ce38eba2b4e3677a8a679", + "tarball": "http://registry.npmjs.org/foounit/-/foounit-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "6095c90847064376cd8451d555a02dda99deb9ff", + "tarball": "http://registry.npmjs.org/foounit/-/foounit-0.0.7.tgz" + }, + "0.1.0": { + "shasum": "539fe4dfbe2d3283fd171bdea5f0438a888ebae9", + "tarball": "http://registry.npmjs.org/foounit/-/foounit-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/foounit/" + }, + "forEachAsync": { + "name": "forEachAsync", + "description": "The forEachAsync module of FuturesJS (Ender.JS and Node.JS)", + "dist-tags": { + "latest": "2.1.1" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-07-13T20:39:18.499Z", + "created": "2011-07-13T20:39:18.056Z", + "2.1.1": "2011-07-13T20:39:18.499Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com", + "url": "http://coolaj86.info" + }, + "repository": { + "type": "git", + "url": "git://github.com/coolaj86/futures.git" + }, + "versions": { + "2.1.1": "http://registry.npmjs.org/forEachAsync/2.1.1" + }, + "dist": { + "2.1.1": { + "shasum": "b0512c32d81a77a17463ffb735b4e38f173580b2", + "tarball": "http://registry.npmjs.org/forEachAsync/-/forEachAsync-2.1.1.tgz" + } + }, + "keywords": [ + "flow-control", + "async", + "asynchronous", + "futures", + "forEachAsync", + "chain", + "step", + "util", + "browser" + ], + "url": "http://registry.npmjs.org/forEachAsync/" + }, + "forever": { + "name": "forever", + "description": "A simple CLI tool for ensuring that a given node script runs continuously (i.e. forever)", + "dist-tags": { + "latest": "0.7.5" + }, + "maintainers": [ + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + } + ], + "author": { + "name": "Nodejitsu Inc", + "email": "info@nodejitsu.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/nodejitsu/forever.git" + }, + "time": { + "modified": "2011-12-02T16:44:24.189Z", + "created": "2010-12-25T05:01:45.504Z", + "0.1.0": "2010-12-25T05:01:45.504Z", + "0.2.0": "2010-12-25T05:01:45.504Z", + "0.2.5": "2010-12-25T05:01:45.504Z", + "0.2.6": "2010-12-25T05:01:45.504Z", + "0.2.7": "2010-12-25T05:01:45.504Z", + "0.3.0": "2010-12-25T05:01:45.504Z", + "0.3.1": "2010-12-25T05:01:45.504Z", + "0.3.5": "2011-02-11T15:13:42.559Z", + "0.4.0": "2011-02-16T08:22:44.298Z", + "0.4.1": "2011-02-20T03:54:02.091Z", + "0.4.2": "2011-04-13T20:04:35.575Z", + "0.5.0": "2011-05-01T07:01:58.244Z", + "0.5.1": "2011-05-01T08:04:13.194Z", + "0.5.2": "2011-05-13T19:38:01.616Z", + "0.5.3": "2011-05-29T20:48:18.721Z", + "0.5.4": "2011-05-31T03:36:58.025Z", + "0.5.5": "2011-05-31T14:27:22.549Z", + "0.5.6": "2011-06-08T03:27:56.926Z", + "0.6.0": "2011-07-11T18:24:18.667Z", + "0.6.1": "2011-07-15T13:35:29.475Z", + "0.6.2": "2011-07-20T06:37:29.749Z", + "0.6.3": "2011-07-24T05:57:57.985Z", + "0.6.4": "2011-08-12T03:38:17.562Z", + "0.6.5": "2011-08-13T02:25:19.587Z", + "0.6.6": "2011-08-28T05:01:56.082Z", + "0.6.7": "2011-09-12T17:44:55.216Z", + "0.6.8": "2011-10-01T11:59:57.618Z", + "0.6.9": "2011-10-03T23:24:18.518Z", + "0.7.0": "2011-10-09T03:54:20.909Z", + "0.7.1": "2011-10-09T04:30:40.848Z", + "0.7.2": "2011-10-22T06:29:30.808Z", + "0.7.3": "2011-11-18T04:22:54.751Z", + "0.7.4": "2011-11-25T01:36:25.965Z", + "0.7.5": "2011-12-02T16:44:24.189Z" + }, + "users": { + "naholyr": true + }, + "versions": { + "0.6.0": "http://registry.npmjs.org/forever/0.6.0", + "0.6.1": "http://registry.npmjs.org/forever/0.6.1", + "0.6.2": "http://registry.npmjs.org/forever/0.6.2", + "0.6.3": "http://registry.npmjs.org/forever/0.6.3", + "0.6.4": "http://registry.npmjs.org/forever/0.6.4", + "0.6.5": "http://registry.npmjs.org/forever/0.6.5", + "0.6.6": "http://registry.npmjs.org/forever/0.6.6", + "0.6.7": "http://registry.npmjs.org/forever/0.6.7", + "0.6.8": "http://registry.npmjs.org/forever/0.6.8", + "0.6.9": "http://registry.npmjs.org/forever/0.6.9", + "0.7.0": "http://registry.npmjs.org/forever/0.7.0", + "0.7.1": "http://registry.npmjs.org/forever/0.7.1", + "0.7.2": "http://registry.npmjs.org/forever/0.7.2", + "0.7.3": "http://registry.npmjs.org/forever/0.7.3", + "0.7.4": "http://registry.npmjs.org/forever/0.7.4", + "0.7.5": "http://registry.npmjs.org/forever/0.7.5" + }, + "dist": { + "0.6.0": { + "shasum": "52a3ffcdd0c4b64320990a8d5e2c56f8c8e6de53", + "tarball": "http://registry.npmjs.org/forever/-/forever-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "aed7c1095d0291d1ae361fb333c69e141e60336b", + "tarball": "http://registry.npmjs.org/forever/-/forever-0.6.1.tgz" + }, + "0.6.2": { + "shasum": "588689ff05a6110fad76f95a79a838db4b3798dd", + "tarball": "http://registry.npmjs.org/forever/-/forever-0.6.2.tgz" + }, + "0.6.3": { + "shasum": "ed80d237223363c76ca7f3499c836b49db37de4d", + "tarball": "http://registry.npmjs.org/forever/-/forever-0.6.3.tgz" + }, + "0.6.4": { + "shasum": "cee814fa84f6a2671175fb11833147a8e8ff1dac", + "tarball": "http://registry.npmjs.org/forever/-/forever-0.6.4.tgz" + }, + "0.6.5": { + "shasum": "303b73a61626d87949514c8298f5a4c2db6e2066", + "tarball": "http://registry.npmjs.org/forever/-/forever-0.6.5.tgz" + }, + "0.6.6": { + "shasum": "fc15888180551250323b57be9c91aaa63cb92364", + "tarball": "http://registry.npmjs.org/forever/-/forever-0.6.6.tgz" + }, + "0.6.7": { + "shasum": "d8169adb504ff8d32614c93b86dc49af09ced786", + "tarball": "http://registry.npmjs.org/forever/-/forever-0.6.7.tgz" + }, + "0.6.8": { + "shasum": "f3eea98ad8c7ac07e9bb1f2f6f1dd93979e15f2d", + "tarball": "http://registry.npmjs.org/forever/-/forever-0.6.8.tgz" + }, + "0.6.9": { + "shasum": "47eed5fdabddb4d94bab013816cd372b93045f6e", + "tarball": "http://registry.npmjs.org/forever/-/forever-0.6.9.tgz" + }, + "0.7.0": { + "shasum": "52bd7ebfc6e782383e17d09cd64bd69140017cf0", + "tarball": "http://registry.npmjs.org/forever/-/forever-0.7.0.tgz" + }, + "0.7.1": { + "shasum": "26cc34f291f239ff03d5b4cc6dd90cd1001feec1", + "tarball": "http://registry.npmjs.org/forever/-/forever-0.7.1.tgz" + }, + "0.7.2": { + "shasum": "a44e31aeaadf97dccc98df7921354e31ec0dfb9d", + "tarball": "http://registry.npmjs.org/forever/-/forever-0.7.2.tgz" + }, + "0.7.3": { + "shasum": "bbf5fda345fdf1fae4b384f9de3a65f2b2963b16", + "tarball": "http://registry.npmjs.org/forever/-/forever-0.7.3.tgz" + }, + "0.7.4": { + "shasum": "5b9323c83e67582d4adc0249f41bc94f10a6c2b8", + "tarball": "http://registry.npmjs.org/forever/-/forever-0.7.4.tgz" + }, + "0.7.5": { + "shasum": "3c120583737b025dac21c071346f4af04f6d771e", + "tarball": "http://registry.npmjs.org/forever/-/forever-0.7.5.tgz" + } + }, + "keywords": [ + "cli", + "fault tolerant", + "sysadmin", + "tools" + ], + "url": "http://registry.npmjs.org/forever/" + }, + "forever-webui": { + "name": "forever-webui", + "description": "Forever Web UI", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "Forever Web UI beta\n===================================\nSimple web UI for efficient nodejs administration\n-----------------------------------\n\nJust a little experimentation with Backbone.js\n \n git clone git@github.com:FGRibreau/forever-webui.git\n cd forever-webui/\n \n npm install\n\n node app.js\n\n![Screen shot v0.1.0](/fgribreau/forever-webui/raw/master/public/img/v0.1.0.png)", + "maintainers": [ + { + "name": "fgribreau", + "email": "npm@fgribreau.com" + } + ], + "time": { + "modified": "2011-11-22T14:41:27.227Z", + "created": "2011-11-22T14:41:25.406Z", + "0.1.0": "2011-11-22T14:41:27.227Z" + }, + "author": { + "name": "Francois-Guillaume Ribreau", + "email": "npm@fgribreau.com", + "url": "http://fgribreau.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/forever-webui/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "827a69b306fbc69ac2e18b8b4d22c8efa607499c", + "tarball": "http://registry.npmjs.org/forever-webui/-/forever-webui-0.1.0.tgz" + } + }, + "keywords": [ + "forever", + "web ui" + ], + "url": "http://registry.npmjs.org/forever-webui/" + }, + "forge": { + "name": "forge", + "description": "An easy to use CLI tool for compiling projects", + "dist-tags": { + "latest": "1.0.4" + }, + "maintainers": [ + { + "name": "goatslacker", + "email": "josh@goatslacker.com" + } + ], + "time": { + "modified": "2011-06-16T08:25:15.540Z", + "created": "2011-05-30T12:05:32.160Z", + "1.0.0": "2011-05-30T12:05:32.884Z", + "1.0.2": "2011-05-31T06:16:27.804Z", + "1.0.3": "2011-06-04T23:48:21.125Z", + "1.0.4": "2011-06-16T08:25:15.540Z" + }, + "author": { + "name": "Josh Perez", + "email": "josh@goatslacker.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/goatslacker/forge.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/forge/1.0.0", + "1.0.2": "http://registry.npmjs.org/forge/1.0.2", + "1.0.3": "http://registry.npmjs.org/forge/1.0.3", + "1.0.4": "http://registry.npmjs.org/forge/1.0.4" + }, + "dist": { + "1.0.0": { + "shasum": "694647cfe33e8e3156144ac72adc5bff41349fbf", + "tarball": "http://registry.npmjs.org/forge/-/forge-1.0.0.tgz" + }, + "1.0.2": { + "shasum": "c1d9a4de259fb429734cdba7e8aafc3aef43b749", + "tarball": "http://registry.npmjs.org/forge/-/forge-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "f0a24f1d8a41ffdfce52273fd22a677e36ae5324", + "tarball": "http://registry.npmjs.org/forge/-/forge-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "5303e0d23603574959d661f94fc002bea28ab1cf", + "tarball": "http://registry.npmjs.org/forge/-/forge-1.0.4.tgz" + } + }, + "keywords": [ + "build", + "compile", + "compress" + ], + "url": "http://registry.npmjs.org/forge/" + }, + "fork": { + "name": "fork", + "description": "Very simple support for process forking", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "ryantenney", + "email": "ryan@10e.us" + } + ], + "author": { + "name": "Ryan W Tenney" + }, + "repository": { + "type": "git", + "url": "http://github.com/ryantenney/node-fork.git" + }, + "time": { + "modified": "2011-04-15T21:06:43.162Z", + "created": "2011-03-31T07:58:08.918Z", + "0.0.1": "2011-03-31T07:58:08.918Z", + "0.0.2": "2011-03-31T07:58:08.918Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/fork/0.0.1", + "0.0.2": "http://registry.npmjs.org/fork/0.0.2" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/fork/-/fork-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/fork/-/fork-0.0.2.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "2ea6aa8d58e35fc8c78d9f8b59902d3bf91ef7f6", + "tarball": "http://registry.npmjs.org/fork/-/fork-0.0.2-0.4-sunos-5.11.tgz" + } + } + } + }, + "url": "http://registry.npmjs.org/fork/" + }, + "forker": { + "name": "forker", + "description": "A forking HTTP proxy (you heard me)", + "dist-tags": { + "latest": "1.3.1" + }, + "maintainers": [ + { + "name": "sleeplessinc", + "email": "joe@sleepless.com" + } + ], + "time": { + "modified": "2011-09-16T23:17:55.198Z", + "created": "2011-09-16T00:40:36.992Z", + "1.0.0": "2011-09-16T00:40:38.630Z", + "1.1.0": "2011-09-16T05:33:22.614Z", + "1.2.0": "2011-09-16T06:22:17.882Z", + "1.3.0": "2011-09-16T18:53:36.157Z", + "1.3.1": "2011-09-16T23:17:55.199Z" + }, + "author": { + "name": "Joe Hitchens", + "email": "joe@sleepless.com", + "url": "sleepless.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/sleeplessinc/forker.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/forker/1.0.0", + "1.1.0": "http://registry.npmjs.org/forker/1.1.0", + "1.2.0": "http://registry.npmjs.org/forker/1.2.0", + "1.3.0": "http://registry.npmjs.org/forker/1.3.0", + "1.3.1": "http://registry.npmjs.org/forker/1.3.1" + }, + "dist": { + "1.0.0": { + "shasum": "93fd56cc5b37ec97230febe996df15cfc811657c", + "tarball": "http://registry.npmjs.org/forker/-/forker-1.0.0.tgz" + }, + "1.1.0": { + "shasum": "5d1ae6974774b004e16dcf1b70da4c2b7872c711", + "tarball": "http://registry.npmjs.org/forker/-/forker-1.1.0.tgz" + }, + "1.2.0": { + "shasum": "e774ad24654dfd6ab8f22c5cd84b3551a83e8960", + "tarball": "http://registry.npmjs.org/forker/-/forker-1.2.0.tgz" + }, + "1.3.0": { + "shasum": "746ccf278b31c85e63c28a69b87f242105b0b471", + "tarball": "http://registry.npmjs.org/forker/-/forker-1.3.0.tgz" + }, + "1.3.1": { + "shasum": "0e130e35e08a97f8b9587ce1f4cee7377a9c0b17", + "tarball": "http://registry.npmjs.org/forker/-/forker-1.3.1.tgz" + } + }, + "url": "http://registry.npmjs.org/forker/" + }, + "form": { + "name": "form", + "description": "Form processor for filter and validation form data", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "baryshev", + "email": "vadimbaryshev@gmail.com" + } + ], + "time": { + "modified": "2011-10-08T19:45:09.787Z", + "created": "2011-10-08T19:43:50.402Z", + "0.1.0": "2011-10-08T19:43:52.481Z", + "0.1.1": "2011-10-08T19:45:09.787Z" + }, + "author": { + "name": "Vadim M. Baryshev", + "email": "vadimbaryshev@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/baryshev/form.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/form/0.1.0", + "0.1.1": "http://registry.npmjs.org/form/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "ec79ffa78eb8772d1cc5ff95269dde37f0bc5f7c", + "tarball": "http://registry.npmjs.org/form/-/form-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "cc75771c10437a5f1d732f1cf7a3396c1b354e16", + "tarball": "http://registry.npmjs.org/form/-/form-0.1.1.tgz" + } + }, + "keywords": [ + "form" + ], + "url": "http://registry.npmjs.org/form/" + }, + "form-data": { + "name": "form-data", + "description": "A module to create readable `\"application/x-www-form-urlencoded\"` streams. Can be used to submit forms and file uploads to other web applications.", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "felixge", + "email": "felix@debuggable.com" + } + ], + "time": { + "modified": "2011-05-16T14:58:22.532Z", + "created": "2011-05-16T14:58:21.870Z", + "0.0.0": "2011-05-16T14:58:22.532Z" + }, + "author": { + "name": "Felix Geisendörfer", + "email": "felix@debuggable.com", + "url": "http://debuggable.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/felixge/form-data.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/form-data/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "c18c31c227bbb33b053217e8fec0c2255e06a1e8", + "tarball": "http://registry.npmjs.org/form-data/-/form-data-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/form-data/" + }, + "form-validator": { + "name": "form-validator", + "description": "A simple form validator that allows for complex validation scenarios and client side sharing (through browserify).", + "dist-tags": { + "latest": "0.0.11" + }, + "maintainers": [ + { + "name": "jgreene", + "email": "justin.j.greene@gmail.com" + } + ], + "time": { + "modified": "2011-09-14T18:48:35.086Z", + "created": "2011-09-14T18:12:04.381Z", + "0.0.1": "2011-09-14T18:12:04.670Z", + "0.0.11": "2011-09-14T18:28:19.756Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/jgreene/form-validator.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/form-validator/0.0.1", + "0.0.11": "http://registry.npmjs.org/form-validator/0.0.11" + }, + "dist": { + "0.0.1": { + "shasum": "5990f4260d74a1386395a71199d5d9c3e887adeb", + "tarball": "http://registry.npmjs.org/form-validator/-/form-validator-0.0.1.tgz" + }, + "0.0.11": { + "shasum": "4a7a259e24f055d6c47a481205a0fe3b2ec4f83b", + "tarball": "http://registry.npmjs.org/form-validator/-/form-validator-0.0.11.tgz" + } + }, + "url": "http://registry.npmjs.org/form-validator/" + }, + "form-warden": { + "name": "form-warden", + "description": "Validation Framework for both server and client side validation in nodejs and clientside browser", + "dist-tags": { + "latest": "1.0.1" + }, + "readme": "# Features\n\nCurrently Form Warden does all these things.\n\n* Decoupled form validation from the UI library\n* Allows easy overriding of processErrors\n* Regex support\n* Work in all browsers >IE6, FF, Chrome, Safari\n\n# Example\n\nAdd your script references\n\n \n \n\nPlace an additional script tag just inside of the close body tag.\n\n \n\nFor more advanced examples, such as defining your own validator or overriding the processErrors behavor check out validation_only.html and validation_and_visibility.html.\n\n# The MIT License (MIT)\nCopyright (c) 2011 Whiteboard-IT, LCC\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "maintainers": [ + { + "name": "soitgoes", + "email": "martin.murphy@whiteboard-it.com" + } + ], + "time": { + "modified": "2011-12-07T06:01:09.966Z", + "created": "2011-12-07T05:50:38.217Z", + "1.0.0": "2011-12-07T05:50:39.752Z", + "1.0.1": "2011-12-07T06:01:09.966Z" + }, + "author": { + "name": "Martin Murphy" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/form-warden/1.0.0", + "1.0.1": "http://registry.npmjs.org/form-warden/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "67c9b6c111f9d8bd98f427f913573e42c506c69b", + "tarball": "http://registry.npmjs.org/form-warden/-/form-warden-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "b9f8a3afc46387113ab362893a5ff784768fa715", + "tarball": "http://registry.npmjs.org/form-warden/-/form-warden-1.0.1.tgz" + } + }, + "keywords": [ + "form", + "warden", + "validation" + ], + "url": "http://registry.npmjs.org/form-warden/" + }, + "form2json": { + "name": "form2json", + "description": "Alternative decoder for form-urlencoded data", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "fgnass", + "email": "fgnass@gmail.com" + } + ], + "author": { + "name": "Felix Gnass", + "email": "felix.gnass@neteye.de", + "url": "http://fgnass.posterous.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/fgnass/form2json.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/form2json/0.0.1", + "0.0.2": "http://registry.npmjs.org/form2json/0.0.2" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/form2json/-/form2json-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/form2json/-/form2json-0.0.2.tgz" + } + }, + "keywords": [ + "form", + "urlencoded", + "bodyDecoder", + "querystring" + ], + "url": "http://registry.npmjs.org/form2json/" + }, + "formaline": { + "name": "formaline", + "description": "formaline is a full-featured low-level module for handling form requests ( HTTP POST / PUT ) and for fast parsing of file uploads, it is also ready to use with middlewares like connect", + "dist-tags": { + "latest": "0.6.4" + }, + "maintainers": [ + { + "name": "rootslab", + "email": "44gatti@gmail.com" + } + ], + "time": { + "modified": "2011-11-16T20:50:49.393Z", + "created": "2011-09-27T01:04:04.385Z", + "0.6.4": "2011-09-27T01:04:04.937Z" + }, + "author": { + "name": "Guglielmo Ferri", + "email": "44gatti@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/rootslab/formaline.git" + }, + "users": { + "pid": true + }, + "versions": { + "0.6.4": "http://registry.npmjs.org/formaline/0.6.4" + }, + "dist": { + "0.6.4": { + "shasum": "86857a3ab2fbc87f4d12f4ef801da9f36e8b0393", + "tarball": "http://registry.npmjs.org/formaline/-/formaline-0.6.4.tgz" + } + }, + "keywords": [ + "form", + "upload", + "multipart", + "urlencoded", + "formaline", + "parser", + "connect", + "post" + ], + "url": "http://registry.npmjs.org/formaline/" + }, + "format": { + "name": "format", + "description": "printf, sprintf, and vsprintf for JavaScript", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "sjs", + "email": "sami@samhuri.net" + } + ], + "author": { + "name": "Sami Samhuri", + "email": "sami@samhuri.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/samsonjs/format.git" + }, + "time": { + "modified": "2011-11-06T02:00:26.183Z", + "created": "2011-06-05T23:45:32.359Z", + "0.1.0": "2011-06-05T23:45:32.359Z", + "0.1.1": "2011-06-05T23:45:32.359Z", + "0.1.2": "2011-07-29T07:08:58.777Z", + "0.1.3": "2011-11-05T22:59:35.897Z", + "0.1.4": "2011-11-06T02:00:26.183Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/format/0.1.0", + "0.1.1": "http://registry.npmjs.org/format/0.1.1", + "0.1.2": "http://registry.npmjs.org/format/0.1.2", + "0.1.3": "http://registry.npmjs.org/format/0.1.3", + "0.1.4": "http://registry.npmjs.org/format/0.1.4" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/format/-/format-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "3074f01de024a0874f2db840b8f5c3b9dd10ec0d", + "tarball": "http://registry.npmjs.org/format/-/format-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "197ce2f6e8e8d23af09b9d1ad66987a4392acf36", + "tarball": "http://registry.npmjs.org/format/-/format-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "2c7209e3b95bdf25af6627f2d2dbcb80a73ed70d", + "tarball": "http://registry.npmjs.org/format/-/format-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "848c3578a7e46635a7106d236aa7eaccff2c1358", + "tarball": "http://registry.npmjs.org/format/-/format-0.1.4.tgz" + } + }, + "url": "http://registry.npmjs.org/format/" + }, + "formatdate": { + "name": "formatdate", + "description": "a little bit more than just strftime", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "dodo", + "email": "dodo@blacksec.org" + } + ], + "time": { + "modified": "2011-11-29T15:41:44.064Z", + "created": "2011-09-16T03:02:17.142Z", + "0.0.1": "2011-09-16T03:02:17.804Z", + "0.1.1": "2011-11-02T16:31:58.988Z", + "0.1.2": "2011-11-29T15:41:44.064Z" + }, + "author": { + "name": "dodo", + "url": "https://github.com/dodo" + }, + "repository": { + "type": "git", + "url": "git://github.com/dodo/node-formatdate.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/formatdate/0.0.1", + "0.1.1": "http://registry.npmjs.org/formatdate/0.1.1", + "0.1.2": "http://registry.npmjs.org/formatdate/0.1.2" + }, + "dist": { + "0.0.1": { + "shasum": "75709dbb17bbefac4ff0705263cff0b6695e2395", + "tarball": "http://registry.npmjs.org/formatdate/-/formatdate-0.0.1.tgz" + }, + "0.1.1": { + "shasum": "fabd2dfbaeb8b13b729ebb9c6f3c4073577f6c6b", + "tarball": "http://registry.npmjs.org/formatdate/-/formatdate-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "35de7855c0d8098ba85e14f2bcf243a89c650ae8", + "tarball": "http://registry.npmjs.org/formatdate/-/formatdate-0.1.2.tgz" + } + }, + "keywords": [ + "format", + "date", + "live", + "time", + "strftime", + "css", + "hook" + ], + "url": "http://registry.npmjs.org/formatdate/" + }, + "FormData": { + "name": "FormData", + "description": "HTML5 FileAPI `FormData` for Node.JS.", + "dist-tags": { + "latest": "0.10.0" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-07-15T22:59:37.274Z", + "created": "2011-07-15T22:59:36.912Z", + "0.10.0": "2011-07-15T22:59:37.274Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com" + }, + "versions": { + "0.10.0": "http://registry.npmjs.org/FormData/0.10.0" + }, + "dist": { + "0.10.0": { + "shasum": "9d01ef00038eebc29347e1a572d8b1da574ceaef", + "tarball": "http://registry.npmjs.org/FormData/-/FormData-0.10.0.tgz" + } + }, + "keywords": [ + "html5", + "jsdom", + "file-api", + "FormData" + ], + "url": "http://registry.npmjs.org/FormData/" + }, + "formidable": { + "name": "formidable", + "dist-tags": { + "latest": "1.0.8" + }, + "maintainers": [ + { + "name": "felixge", + "email": "felix@debuggable.com" + } + ], + "time": { + "modified": "2011-11-29T07:56:38.907Z", + "created": "2011-01-18T21:38:52.010Z", + "0.3.0": "2011-01-18T21:38:52.010Z", + "0.4.0": "2011-01-18T21:38:52.010Z", + "0.5.0": "2011-01-18T21:38:52.010Z", + "0.6.0": "2011-01-18T21:38:52.010Z", + "0.7.0": "2011-01-18T21:38:52.010Z", + "0.8.0": "2011-01-18T21:38:52.010Z", + "0.9.0": "2011-01-18T21:38:52.010Z", + "0.9.1": "2011-01-18T21:38:52.010Z", + "0.9.2": "2011-01-18T21:38:52.010Z", + "0.9.3": "2011-01-18T21:38:52.010Z", + "0.9.4": "2011-01-18T21:38:52.010Z", + "0.9.5": "2011-01-18T21:38:52.010Z", + "0.9.6": "2011-01-18T21:38:52.010Z", + "0.9.7": "2011-01-18T21:38:52.010Z", + "0.9.8": "2011-01-18T21:38:52.010Z", + "0.9.9": "2011-01-18T21:38:52.010Z", + "0.9.10": "2011-01-18T21:38:52.010Z", + "0.9.11": "2011-01-18T21:38:52.010Z", + "1.0.0": "2011-04-13T20:44:27.943Z", + "1.0.1": "2011-04-27T12:08:45.419Z", + "1.0.2": "2011-05-23T10:10:50.452Z", + "1.0.3": "2011-09-10T22:32:10.344Z", + "1.0.4": "2011-09-15T21:53:54.455Z", + "1.0.5": "2011-09-16T19:48:47.627Z", + "1.0.6": "2011-09-21T06:17:40.012Z", + "1.0.7": "2011-11-04T09:28:17.232Z", + "1.0.8": "2011-11-29T07:56:38.907Z" + }, + "description": "A node.js module for parsing form data, especially file uploads.", + "keywords": [ + "multipart", + "form", + "upload", + "file" + ], + "users": { + "vesln": true, + "tjholowaychuk": true, + "naholyr": true + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/formidable/0.3.0", + "0.4.0": "http://registry.npmjs.org/formidable/0.4.0", + "0.5.0": "http://registry.npmjs.org/formidable/0.5.0", + "0.6.0": "http://registry.npmjs.org/formidable/0.6.0", + "0.7.0": "http://registry.npmjs.org/formidable/0.7.0", + "0.8.0": "http://registry.npmjs.org/formidable/0.8.0", + "0.9.0": "http://registry.npmjs.org/formidable/0.9.0", + "0.9.1": "http://registry.npmjs.org/formidable/0.9.1", + "0.9.2": "http://registry.npmjs.org/formidable/0.9.2", + "0.9.3": "http://registry.npmjs.org/formidable/0.9.3", + "0.9.4": "http://registry.npmjs.org/formidable/0.9.4", + "0.9.5": "http://registry.npmjs.org/formidable/0.9.5", + "0.9.6": "http://registry.npmjs.org/formidable/0.9.6", + "0.9.7": "http://registry.npmjs.org/formidable/0.9.7", + "0.9.8": "http://registry.npmjs.org/formidable/0.9.8", + "0.9.9": "http://registry.npmjs.org/formidable/0.9.9", + "0.9.10": "http://registry.npmjs.org/formidable/0.9.10", + "0.9.11": "http://registry.npmjs.org/formidable/0.9.11", + "1.0.0": "http://registry.npmjs.org/formidable/1.0.0", + "1.0.1": "http://registry.npmjs.org/formidable/1.0.1", + "1.0.2": "http://registry.npmjs.org/formidable/1.0.2", + "1.0.3": "http://registry.npmjs.org/formidable/1.0.3", + "1.0.4": "http://registry.npmjs.org/formidable/1.0.4", + "1.0.5": "http://registry.npmjs.org/formidable/1.0.5", + "1.0.6": "http://registry.npmjs.org/formidable/1.0.6", + "1.0.7": "http://registry.npmjs.org/formidable/1.0.7", + "1.0.8": "http://registry.npmjs.org/formidable/1.0.8" + }, + "dist": { + "0.3.0": { + "tarball": "http://registry.npmjs.org/formidable/-/formidable-0.3.0.tgz" + }, + "0.4.0": { + "tarball": "http://registry.npmjs.org/formidable/-/formidable-0.4.0.tgz" + }, + "0.5.0": { + "tarball": "http://registry.npmjs.org/formidable/-/formidable-0.5.0.tgz" + }, + "0.6.0": { + "tarball": "http://registry.npmjs.org/formidable/-/formidable-0.6.0.tgz" + }, + "0.7.0": { + "tarball": "http://registry.npmjs.org/formidable/-/formidable-0.7.0.tgz" + }, + "0.8.0": { + "tarball": "http://registry.npmjs.org/formidable/-/formidable-0.8.0.tgz" + }, + "0.9.0": { + "tarball": "http://registry.npmjs.org/formidable/-/formidable-0.9.0.tgz" + }, + "0.9.1": { + "tarball": "http://registry.npmjs.org/formidable/-/formidable-0.9.1.tgz" + }, + "0.9.2": { + "tarball": "http://registry.npmjs.org/formidable/-/formidable-0.9.2.tgz" + }, + "0.9.3": { + "tarball": "http://registry.npmjs.org/formidable/-/formidable-0.9.3.tgz" + }, + "0.9.4": { + "tarball": "http://registry.npmjs.org/formidable/-/formidable-0.9.4.tgz" + }, + "0.9.5": { + "tarball": "http://registry.npmjs.org/formidable/-/formidable-0.9.5.tgz" + }, + "0.9.6": { + "tarball": "http://registry.npmjs.org/formidable/-/formidable-0.9.6.tgz" + }, + "0.9.7": { + "tarball": "http://registry.npmjs.org/formidable/-/formidable-0.9.7.tgz" + }, + "0.9.8": { + "tarball": "http://registry.npmjs.org/formidable/-/formidable-0.9.8.tgz" + }, + "0.9.9": { + "tarball": "http://registry.npmjs.org/formidable/-/formidable-0.9.9.tgz" + }, + "0.9.10": { + "shasum": "cee802aa5fb11024cca112a7ee2e2e89956aeb80", + "tarball": "http://registry.npmjs.org/formidable/-/formidable-0.9.10.tgz" + }, + "0.9.11": { + "shasum": "35285f3c2c5f115742a13717e2f0c1556994c4f3", + "tarball": "http://registry.npmjs.org/formidable/-/formidable-0.9.11.tgz" + }, + "1.0.0": { + "shasum": "4eb41d5d99c99fd54773a0132075c11822ca103f", + "tarball": "http://registry.npmjs.org/formidable/-/formidable-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "d9fe626c303e8cbca9d29115497a47da6eff29e9", + "tarball": "http://registry.npmjs.org/formidable/-/formidable-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "6e7887db43be310c57970143671dfc91d46f939d", + "tarball": "http://registry.npmjs.org/formidable/-/formidable-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "55c314201245f4d21b0f0c58373d30c85e53d6e9", + "tarball": "http://registry.npmjs.org/formidable/-/formidable-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "e2447795406a95b30b4b5b58ac572abb207fae4a", + "tarball": "http://registry.npmjs.org/formidable/-/formidable-1.0.4.tgz" + }, + "1.0.5": { + "shasum": "55e60b34931f3bb03eedbb6777312177eb6f87b4", + "tarball": "http://registry.npmjs.org/formidable/-/formidable-1.0.5.tgz" + }, + "1.0.6": { + "shasum": "fb92046525c6e5781d9683c54324afd36edd24a0", + "tarball": "http://registry.npmjs.org/formidable/-/formidable-1.0.6.tgz" + }, + "1.0.7": { + "shasum": "ac9f74432f222199d685555d5197e19212972992", + "tarball": "http://registry.npmjs.org/formidable/-/formidable-1.0.7.tgz" + }, + "1.0.8": { + "shasum": "ac119ceaf039a288d57649aeec38f03b6269bbce", + "tarball": "http://registry.npmjs.org/formidable/-/formidable-1.0.8.tgz" + } + }, + "url": "http://registry.npmjs.org/formidable/" + }, + "formroller": { + "name": "formroller", + "description": "create forms from data", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "hij1nx", + "email": "hij1nx@me.com" + } + ], + "time": { + "modified": "2011-09-26T00:00:36.263Z", + "created": "2011-09-26T00:00:33.964Z", + "0.0.1": "2011-09-26T00:00:36.263Z" + }, + "author": { + "name": "hij1nx", + "email": "hij1nx@nodejitsu.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/flatiron/formroller.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/formroller/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "c9388a9c5b5fe88b9daac3866aae833ce2aa78e7", + "tarball": "http://registry.npmjs.org/formroller/-/formroller-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/formroller/" + }, + "forms": { + "name": "forms", + "description": "An easy way to create, parse and validate forms", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "caolan", + "email": "caolan@caolanmcmahon.com" + } + ], + "author": { + "name": "Caolan McMahon" + }, + "repository": { + "type": "git", + "url": "http://github.com/caolan/forms.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/forms/0.1.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/forms/-/forms-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/forms/" + }, + "formulate": { + "name": "formulate", + "description": "a thin wrapper for formidable, making it more convenient.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "aaronblohowiak", + "email": "aaron.blohowiak@gmail.com" + } + ], + "time": { + "modified": "2011-10-02T04:09:24.445Z", + "created": "2011-10-02T04:09:23.130Z", + "0.1.1": "2011-10-02T04:09:24.445Z" + }, + "author": { + "name": "Aaron Blohowiak", + "email": "aaron.blohowiak@gmail.com", + "url": "http://aaronblohowiak.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/aaronblohowiak/formulate.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/formulate/0.1.1" + }, + "dist": { + "0.1.1": { + "shasum": "9911a5df4c630d1a1e2ad52b2fbf83139dc9805f", + "tarball": "http://registry.npmjs.org/formulate/-/formulate-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/formulate/" + }, + "forrst": { + "name": "forrst", + "description": "Simple wrapper for the Forrst.com API (http://forrst.com/api). ", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "fczuardi", + "email": "fabricio@fabricio.org" + } + ], + "time": { + "modified": "2011-06-06T06:29:58.158Z", + "created": "2011-06-06T06:29:55.768Z", + "0.1.0": "2011-06-06T06:29:58.158Z" + }, + "author": { + "name": "Fabricio C Zuardi" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/forrst/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "5b919f5c4f569f719201a8be8c04eba3173603f2", + "tarball": "http://registry.npmjs.org/forrst/-/forrst-0.1.0.tgz" + } + }, + "keywords": [ + "forrst", + "wrapper", + "api", + "api-client", + "forrst.com" + ], + "url": "http://registry.npmjs.org/forrst/" + }, + "fortumo": { + "name": "fortumo", + "description": "Unofficial bindings for Fortumo SMS Payment API", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "andris", + "email": "andris@node.ee" + } + ], + "author": { + "name": "Andris Reinman" + }, + "repository": { + "type": "git", + "url": "http://github.com/andris9/node-fortumo.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/fortumo/0.1.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/fortumo/-/fortumo-0.1.0.tgz" + } + }, + "keywords": [ + "sms", + "payment" + ], + "url": "http://registry.npmjs.org/fortumo/" + }, + "foss-credits": { + "name": "foss-credits", + "description": "Generate FOSS credits HTML", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "andrewschaaf", + "email": "andrew@andrewschaaf.com" + } + ], + "time": { + "modified": "2011-05-19T12:49:59.856Z", + "created": "2011-05-19T12:49:55.897Z", + "0.0.1": "2011-05-19T12:49:59.856Z" + }, + "author": { + "name": "Andrew Schaaf", + "email": "andrew@andrewschaaf.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/andrewschaaf/foss-credits.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/foss-credits/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "4832aaa78b43c3cc22fb1f3949b8b876e819266b", + "tarball": "http://registry.npmjs.org/foss-credits/-/foss-credits-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/foss-credits/" + }, + "foss-credits-collection": { + "name": "foss-credits-collection", + "description": "A collection of credits for foss-credits", + "dist-tags": { + "latest": "0.0.8" + }, + "maintainers": [ + { + "name": "andrewschaaf", + "email": "andrew@andrewschaaf.com" + } + ], + "time": { + "modified": "2011-05-28T00:49:02.417Z", + "created": "2011-05-19T01:00:20.801Z", + "0.0.1": "2011-05-19T01:00:21.703Z", + "0.0.2": "2011-05-19T01:13:04.410Z", + "0.0.3": "2011-05-19T01:17:51.542Z", + "0.0.4": "2011-05-19T15:22:19.181Z", + "0.0.5": "2011-05-20T18:55:51.788Z", + "0.0.6": "2011-05-25T13:10:02.138Z", + "0.0.7": "2011-05-25T13:47:08.395Z", + "0.0.8": "2011-05-28T00:49:02.417Z" + }, + "author": { + "name": "Andrew Schaaf", + "email": "andrew@andrewschaaf.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/andrewschaaf/foss-credits-collection.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/foss-credits-collection/0.0.1", + "0.0.2": "http://registry.npmjs.org/foss-credits-collection/0.0.2", + "0.0.3": "http://registry.npmjs.org/foss-credits-collection/0.0.3", + "0.0.4": "http://registry.npmjs.org/foss-credits-collection/0.0.4", + "0.0.5": "http://registry.npmjs.org/foss-credits-collection/0.0.5", + "0.0.6": "http://registry.npmjs.org/foss-credits-collection/0.0.6", + "0.0.7": "http://registry.npmjs.org/foss-credits-collection/0.0.7", + "0.0.8": "http://registry.npmjs.org/foss-credits-collection/0.0.8" + }, + "dist": { + "0.0.1": { + "shasum": "c942a921b744a88bd6608bd81006cf2194e9f27f", + "tarball": "http://registry.npmjs.org/foss-credits-collection/-/foss-credits-collection-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "67a6c38dcbc98c046c465e8990587f2b1b036f2d", + "tarball": "http://registry.npmjs.org/foss-credits-collection/-/foss-credits-collection-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "039526b690f7ea2443d022aa19e69b9eb2706a35", + "tarball": "http://registry.npmjs.org/foss-credits-collection/-/foss-credits-collection-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "3a778fac8ba5fcceadb683ea9fa452f769839628", + "tarball": "http://registry.npmjs.org/foss-credits-collection/-/foss-credits-collection-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "9491b01959e9ba199153d28bb373981cb78cc380", + "tarball": "http://registry.npmjs.org/foss-credits-collection/-/foss-credits-collection-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "46656f6e619400bc70deb5ff713a5d5eaa906f01", + "tarball": "http://registry.npmjs.org/foss-credits-collection/-/foss-credits-collection-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "bb0d5ea57ea490df94fbb49eff4b6e20627cdbf8", + "tarball": "http://registry.npmjs.org/foss-credits-collection/-/foss-credits-collection-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "a8f1af7eb3336d63fd685edd3865019dccddf234", + "tarball": "http://registry.npmjs.org/foss-credits-collection/-/foss-credits-collection-0.0.8.tgz" + } + }, + "url": "http://registry.npmjs.org/foss-credits-collection/" + }, + "foursquareonnode": { + "name": "foursquareonnode", + "description": "Foursquare on Node, Foursquare API v2 wrapper for Node JS.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "yikulju", + "email": "kelemen.viktor@gmail.com" + } + ], + "time": { + "modified": "2011-02-21T05:18:33.343Z", + "created": "2011-02-04T09:56:49.689Z", + "0.0.1": "2011-02-04T09:56:50.348Z", + "0.0.2": "2011-02-21T05:18:33.343Z" + }, + "repository": { + "type": "git", + "url": "https://yikulju@github.com/yikulju/Foursquare-on-node.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/foursquareonnode/0.0.1", + "0.0.2": "http://registry.npmjs.org/foursquareonnode/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "3854ef40b58bf0f9593f42482b8b3aec5aa19f3d", + "tarball": "http://registry.npmjs.org/foursquareonnode/-/foursquareonnode-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "30040a18b965271733763d14c3a743aab57e476b", + "tarball": "http://registry.npmjs.org/foursquareonnode/-/foursquareonnode-0.0.2.tgz" + } + }, + "keywords": [ + "foursquare", + "4sq" + ], + "url": "http://registry.npmjs.org/foursquareonnode/" + }, + "fraggle": { + "name": "fraggle", + "description": "A command line utility to deploy different versions of nodejs applications", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "gimenete", + "email": "gimenete@gmail.com" + } + ], + "time": { + "modified": "2011-08-23T15:54:10.792Z", + "created": "2011-08-23T11:07:09.054Z", + "0.1.0": "2011-08-23T11:07:10.168Z", + "0.1.1": "2011-08-23T15:22:09.996Z", + "0.1.2": "2011-08-23T15:54:10.792Z" + }, + "author": { + "name": "Alberto Gimeno Brieba", + "email": "gimenete@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/fraggle/0.1.0", + "0.1.1": "http://registry.npmjs.org/fraggle/0.1.1", + "0.1.2": "http://registry.npmjs.org/fraggle/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "94b2f00e75db06fe66ace56fd4a502b05573ff9e", + "tarball": "http://registry.npmjs.org/fraggle/-/fraggle-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "7b18f1359d26c59a0ba82f980dc5f679b44032a1", + "tarball": "http://registry.npmjs.org/fraggle/-/fraggle-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "ee93b457b7774ff34de20b4e653a65dcc1681217", + "tarball": "http://registry.npmjs.org/fraggle/-/fraggle-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/fraggle/" + }, + "framejax": { + "name": "framejax", + "description": "a iframe ajax library for uploading files", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "jga", + "email": "me@jga.me" + } + ], + "time": { + "modified": "2011-12-01T23:08:20.766Z", + "created": "2011-11-30T01:52:35.704Z", + "0.0.1": "2011-11-30T01:52:36.992Z", + "0.0.2": "2011-12-01T22:49:13.417Z", + "0.0.3": "2011-12-01T23:08:20.766Z" + }, + "author": { + "name": "Greg Allen", + "email": "@jgaui", + "url": "http://jga.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/jgallen23/framejax.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/framejax/0.0.1", + "0.0.2": "http://registry.npmjs.org/framejax/0.0.2", + "0.0.3": "http://registry.npmjs.org/framejax/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "bbf5f8aae8d2e58865dfe5d48c07519ec4372ea0", + "tarball": "http://registry.npmjs.org/framejax/-/framejax-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "192d7b8e015fc6443694b8196aa358c2544b3560", + "tarball": "http://registry.npmjs.org/framejax/-/framejax-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "b43f248c1a2a2a1039e8014c1d4d24663f357909", + "tarball": "http://registry.npmjs.org/framejax/-/framejax-0.0.3.tgz" + } + }, + "keywords": [ + "ender", + "iframe", + "ajax", + "upload" + ], + "url": "http://registry.npmjs.org/framejax/" + }, + "framework": { + "name": "framework", + "description": "A framework for node.js", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "mikeal", + "email": "mikeal.rogers@gmail.com" + } + ], + "time": { + "modified": "2011-07-12T17:27:53.299Z", + "created": "2011-07-12T17:27:52.343Z", + "0.0.0": "2011-07-12T17:27:53.299Z" + }, + "author": { + "name": "Mikeal Rogers", + "email": "mikeal.rogers@gmail.com", + "url": "http://www.mikealrogers.com" + }, + "repository": { + "url": "git://github.com/mikeal/framework.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/framework/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "035cdff4782ab52956a2934d8109b6675fa33632", + "tarball": "http://registry.npmjs.org/framework/-/framework-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/framework/" + }, + "frameworkjs": { + "name": "frameworkjs", + "description": "Javascript application framework based on control (https://github.com/ewoudj/control).", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "ewoudj", + "email": "ewoudj@gmail.com" + } + ], + "time": { + "modified": "2011-09-01T20:33:31.151Z", + "created": "2011-08-27T21:43:01.873Z", + "0.0.1": "2011-08-27T21:43:03.689Z", + "0.0.2": "2011-08-27T21:49:08.962Z", + "0.0.3": "2011-09-01T20:33:31.151Z" + }, + "author": { + "name": "Ewoud van den Boom", + "email": "ewoudj@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/ewoudj/framework.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/frameworkjs/0.0.1", + "0.0.2": "http://registry.npmjs.org/frameworkjs/0.0.2", + "0.0.3": "http://registry.npmjs.org/frameworkjs/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "3aa053e0b76992d27126a343a4a5b1c4a75d7a38", + "tarball": "http://registry.npmjs.org/frameworkjs/-/frameworkjs-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "5f7aee1bb9bf91aaf80d39fd2fe2ddadd5ca1376", + "tarball": "http://registry.npmjs.org/frameworkjs/-/frameworkjs-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "4c5c5a4df9e9351bf708d47685ff9e04e4cdf612", + "tarball": "http://registry.npmjs.org/frameworkjs/-/frameworkjs-0.0.3.tgz" + } + }, + "keywords": [ + "Application", + "Framework", + "javascript", + "rest", + "ajax" + ], + "url": "http://registry.npmjs.org/frameworkjs/" + }, + "frank": { + "name": "frank", + "description": "Yet another Sinatra-like microframework for Node", + "dist-tags": { + "latest": "1.2.1" + }, + "maintainers": [ + { + "name": "mvrilo", + "email": "mvrilo@gmail.com" + } + ], + "author": { + "name": "Murilo Santana", + "email": "mvrilo@gmail.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/mvrilo/frank.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/frank/1.0.0", + "1.1.0": "http://registry.npmjs.org/frank/1.1.0", + "1.2.0": "http://registry.npmjs.org/frank/1.2.0", + "1.2.1": "http://registry.npmjs.org/frank/1.2.1" + }, + "dist": { + "1.0.0": { + "tarball": "http://packages:5984/frank/-/frank-1.0.0.tgz" + }, + "1.1.0": { + "tarball": "http://packages:5984/frank/-/frank-1.1.0.tgz" + }, + "1.2.0": { + "tarball": "http://packages:5984/frank/-/frank-1.2.0.tgz" + }, + "1.2.1": { + "tarball": "http://packages:5984/frank/-/frank-1.2.1.tgz" + } + }, + "keywords": [ + "sinatra", + "framework", + "http" + ], + "url": "http://registry.npmjs.org/frank/" + }, + "freakset": { + "name": "freakset", + "description": "A Workflow module that supports steps, groups, guards, rescues, parallel execution, events and dynamic stack modifications.", + "dist-tags": { + "latest": "0.10.0" + }, + "maintainers": [ + { + "name": "phunkwork", + "email": "andreas@phunkwork.com" + }, + { + "name": "rubyphunk", + "email": "andreas@urge.io" + } + ], + "author": { + "name": "Andreas Wolff", + "email": "andreas@urge.io", + "url": "http://urge.io" + }, + "repository": { + "type": "git", + "url": "git://github.com/urgeio/freakset.git" + }, + "time": { + "modified": "2011-03-01T15:56:37.694Z", + "created": "2011-03-01T15:56:37.694Z", + "0.1.0": "2011-03-01T15:56:37.694Z", + "0.2.0": "2011-03-01T15:56:37.694Z", + "0.3.1": "2011-03-01T15:56:37.694Z", + "0.4.0": "2011-03-01T15:56:37.694Z", + "0.5.0": "2011-03-01T15:56:37.694Z", + "0.5.1": "2011-03-01T15:56:37.694Z", + "0.5.3": "2011-03-01T15:56:37.694Z", + "0.10.0": "2011-03-01T15:56:37.694Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/freakset/0.1.0", + "0.2.0": "http://registry.npmjs.org/freakset/0.2.0", + "0.3.1": "http://registry.npmjs.org/freakset/0.3.1", + "0.4.0": "http://registry.npmjs.org/freakset/0.4.0", + "0.5.0": "http://registry.npmjs.org/freakset/0.5.0", + "0.5.1": "http://registry.npmjs.org/freakset/0.5.1", + "0.5.3": "http://registry.npmjs.org/freakset/0.5.3", + "0.10.0": "http://registry.npmjs.org/freakset/0.10.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/freakset/-/freakset-0.1.0.tgz" + }, + "0.2.0": { + "tarball": "http://packages:5984/freakset/-/freakset-0.2.0.tgz" + }, + "0.3.1": { + "tarball": "http://packages:5984/freakset/-/freakset-0.3.1.tgz" + }, + "0.4.0": { + "tarball": "http://packages:5984/freakset/-/freakset-0.4.0.tgz" + }, + "0.5.0": { + "tarball": "http://packages:5984/freakset/-/freakset-0.5.0.tgz" + }, + "0.5.1": { + "tarball": "http://packages:5984/freakset/-/freakset-0.5.1.tgz" + }, + "0.5.3": { + "shasum": "075cd55ed3dc4a0479feb31e8be184105986ace9", + "tarball": "http://registry.npmjs.org/freakset/-/freakset-0.5.3.tgz" + }, + "0.10.0": { + "shasum": "1816863639f10e44a90b85b9ad24d03093f63f29", + "tarball": "http://registry.npmjs.org/freakset/-/freakset-0.10.0.tgz" + } + }, + "keywords": [ + "workflow", + "callback", + "module" + ], + "url": "http://registry.npmjs.org/freakset/" + }, + "freckle": { + "name": "freckle", + "description": "Node.js freckle api bindings", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "tbranyen", + "email": "tim@tabdeveloper.com" + } + ], + "time": { + "modified": "2011-05-17T19:43:13.261Z", + "created": "2011-05-17T19:43:10.096Z", + "0.0.1": "2011-05-17T19:43:13.261Z" + }, + "author": { + "name": "Tim Branyen", + "email": "tim@tabdeveloper.com", + "url": "http://twitter.com/tbranyen" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/freckle/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "766dab2ebc63221262b751bb070dbc634c186121", + "tarball": "http://registry.npmjs.org/freckle/-/freckle-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/freckle/" + }, + "freebase": { + "name": "freebase", + "description": "a nice way to work with data from freebase.com", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "spencermountain", + "email": "spencerwater@gmail.com" + } + ], + "time": { + "modified": "2011-07-15T16:21:57.044Z", + "created": "2011-07-12T16:11:46.922Z", + "0.0.0": "2011-07-12T16:11:47.931Z", + "1.0.0": "2011-07-15T16:17:27.616Z", + "1.0.1": "2011-07-15T16:21:57.044Z" + }, + "author": { + "name": "Spencer Kelly", + "email": "spencerwater@gmail.com", + "url": "http://spencerwaterbed.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/spencermountain/Freebase-nodejs.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/freebase/0.0.0", + "1.0.0": "http://registry.npmjs.org/freebase/1.0.0", + "1.0.1": "http://registry.npmjs.org/freebase/1.0.1" + }, + "dist": { + "0.0.0": { + "shasum": "556165f029463b6e64105a21eae4b757781ae5d1", + "tarball": "http://registry.npmjs.org/freebase/-/freebase-0.0.0.tgz" + }, + "1.0.0": { + "shasum": "f2ec21d5525cfe6faf92eccd58e7753ce5057da4", + "tarball": "http://registry.npmjs.org/freebase/-/freebase-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "253870a17589cec9f30fbf226187e12af7d20d09", + "tarball": "http://registry.npmjs.org/freebase/-/freebase-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/freebase/" + }, + "freecontrol": { + "name": "freecontrol", + "description": "Scripted setup, deployment, and management of FreeBSD machine clusters", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "tsmith", + "email": "node@thomassmith.com" + } + ], + "author": { + "name": "Thomas Smith", + "email": "node@thomassmith.com" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/freecontrol/0.1.1" + }, + "dist": { + "0.1.1": { + "tarball": "http://packages:5984/freecontrol/-/freecontrol-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/freecontrol/" + }, + "freestyle": { + "name": "freestyle", + "description": "Really terrible freestyle markov rapping", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-05-05T08:12:55.010Z", + "created": "2011-05-02T02:25:20.368Z", + "0.0.1": "2011-05-02T02:25:21.403Z", + "0.0.2": "2011-05-02T19:18:25.599Z", + "0.0.3": "2011-05-04T21:39:49.947Z", + "0.0.4": "2011-05-05T08:12:55.010Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-freestyle.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/freestyle/0.0.1", + "0.0.2": "http://registry.npmjs.org/freestyle/0.0.2", + "0.0.3": "http://registry.npmjs.org/freestyle/0.0.3", + "0.0.4": "http://registry.npmjs.org/freestyle/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "0443f03551204a8eb04d0593aceb4d5de1615949", + "tarball": "http://registry.npmjs.org/freestyle/-/freestyle-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f1375c7812c5b225fa7a229e2ff8adb5683aee6e", + "tarball": "http://registry.npmjs.org/freestyle/-/freestyle-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "f9e4651f3a4c7400a36d6dab3b67ecd41b7eb9e5", + "tarball": "http://registry.npmjs.org/freestyle/-/freestyle-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "497d056e1a6eac2062dd52d3f0f7d9d9df86b955", + "tarball": "http://registry.npmjs.org/freestyle/-/freestyle-0.0.4.tgz" + } + }, + "keywords": [ + "rap", + "battle", + "freestyle", + "rhyme", + "rhyming", + "mic", + "beats", + "poet", + "poem", + "couplet" + ], + "url": "http://registry.npmjs.org/freestyle/" + }, + "Frenchpress": { + "name": "Frenchpress", + "description": "A simple content management system inspired by flat file CMSs such as Toto and Jekyll", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "natehunzaker", + "email": "nate.hunzaker@gmail.com" + } + ], + "time": { + "modified": "2011-09-21T02:10:37.911Z", + "created": "2011-09-21T02:10:37.626Z", + "0.1.0": "2011-09-21T02:10:37.911Z" + }, + "author": { + "name": "Nate Hunzaker", + "email": "nate.hunzaker@gmail.com", + "url": "natehunzaker.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/nhunzaker/frenchpress.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/Frenchpress/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "041a1887860c51a93ece645e6da4ab13e02cc679", + "tarball": "http://registry.npmjs.org/Frenchpress/-/Frenchpress-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/Frenchpress/" + }, + "FreshDocs": { + "name": "FreshDocs", + "description": "MongoDB ODM that keeps your docs from getting stale", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "coderzach", + "email": "x.coder.zach@gmail.com" + } + ], + "time": { + "modified": "2011-03-15T22:34:49.517Z", + "created": "2011-03-15T16:32:33.357Z", + "0.0.2": "2011-03-15T16:32:33.676Z", + "0.0.3": "2011-03-15T22:34:49.517Z" + }, + "author": { + "name": "Zach Smith", + "email": "x.coder.zach@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/xcoderzach/FreshDocs.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/FreshDocs/0.0.2", + "0.0.3": "http://registry.npmjs.org/FreshDocs/0.0.3" + }, + "dist": { + "0.0.2": { + "shasum": "95ead49d4bbc553c7dc9247b6ef98399d91d91a4", + "tarball": "http://registry.npmjs.org/FreshDocs/-/FreshDocs-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "52ce32447e272c034cbcdbba65c03a2c047e6f52", + "tarball": "http://registry.npmjs.org/FreshDocs/-/FreshDocs-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/FreshDocs/" + }, + "friendlyjs": { + "name": "friendlyjs", + "description": "make friendly URLs by stripping out non lating chars, and convert other chars to their latin counterparts", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "nakedslavin", + "email": "vladimirslavin@gmail.com" + } + ], + "time": { + "modified": "2011-11-11T22:51:09.398Z", + "created": "2011-11-11T22:51:08.072Z", + "0.0.1": "2011-11-11T22:51:09.398Z" + }, + "author": { + "name": "Vladimir Slavin", + "email": "vladimirslavin@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/ludopoli/friendlyjs.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/friendlyjs/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "97ac147d6145e9b91e30403097bd4b9c558726db", + "tarball": "http://registry.npmjs.org/friendlyjs/-/friendlyjs-0.0.1.tgz" + } + }, + "keywords": [ + "url", + "friendly", + "transcription", + "multilingual", + "localization" + ], + "url": "http://registry.npmjs.org/friendlyjs/" + }, + "frisby": { + "name": "frisby", + "description": "REST API Endpoint Testing built on Jasmine", + "dist-tags": { + "latest": "0.1.8" + }, + "maintainers": [ + { + "name": "brightbit", + "email": "hello@brightb.it" + } + ], + "time": { + "modified": "2011-12-06T21:02:33.637Z", + "created": "2011-11-07T21:52:37.063Z", + "0.0.1": "2011-11-07T21:52:37.424Z", + "0.0.2": "2011-11-08T16:59:03.052Z", + "0.0.3": "2011-11-09T03:33:36.009Z", + "0.0.4": "2011-11-14T21:14:25.784Z", + "0.0.5": "2011-11-15T20:21:10.544Z", + "0.0.6": "2011-11-15T20:36:26.275Z", + "0.1.0": "2011-11-21T22:43:45.764Z", + "0.1.1": "2011-11-21T23:04:39.655Z", + "0.1.2": "2011-11-22T17:30:26.875Z", + "0.1.3": "2011-11-22T18:11:50.573Z", + "0.1.4": "2011-11-28T19:45:55.600Z", + "0.1.5": "2011-12-01T17:35:06.217Z", + "0.1.6": "2011-12-06T18:46:21.114Z", + "0.1.7": "2011-12-06T19:38:45.279Z", + "0.1.8": "2011-12-06T21:02:33.637Z" + }, + "author": { + "name": "Vance Lucas", + "email": "vance@vancelucas.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/brightbit/frisby.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/frisby/0.0.1", + "0.0.2": "http://registry.npmjs.org/frisby/0.0.2", + "0.0.3": "http://registry.npmjs.org/frisby/0.0.3", + "0.0.4": "http://registry.npmjs.org/frisby/0.0.4", + "0.0.5": "http://registry.npmjs.org/frisby/0.0.5", + "0.0.6": "http://registry.npmjs.org/frisby/0.0.6", + "0.1.0": "http://registry.npmjs.org/frisby/0.1.0", + "0.1.1": "http://registry.npmjs.org/frisby/0.1.1", + "0.1.2": "http://registry.npmjs.org/frisby/0.1.2", + "0.1.3": "http://registry.npmjs.org/frisby/0.1.3", + "0.1.4": "http://registry.npmjs.org/frisby/0.1.4", + "0.1.5": "http://registry.npmjs.org/frisby/0.1.5", + "0.1.6": "http://registry.npmjs.org/frisby/0.1.6", + "0.1.7": "http://registry.npmjs.org/frisby/0.1.7", + "0.1.8": "http://registry.npmjs.org/frisby/0.1.8" + }, + "dist": { + "0.0.1": { + "shasum": "0185e2ff5e5043907c615f077e2e5777a566d866", + "tarball": "http://registry.npmjs.org/frisby/-/frisby-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "9c4a770db8309f2cb7c943e70ce5da4665984f54", + "tarball": "http://registry.npmjs.org/frisby/-/frisby-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "0b907408a47d0e5d17a939893448c230af85f89b", + "tarball": "http://registry.npmjs.org/frisby/-/frisby-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "758cbff469e4075fd1f502937ebeeed27994815d", + "tarball": "http://registry.npmjs.org/frisby/-/frisby-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "bafd6e5071d08698f60442834bac7783d66c61a7", + "tarball": "http://registry.npmjs.org/frisby/-/frisby-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "a3e4b8c75e2bdbabfc1842c43eb41c9473c63361", + "tarball": "http://registry.npmjs.org/frisby/-/frisby-0.0.6.tgz" + }, + "0.1.0": { + "shasum": "d25289ac63132e211b0a65cb8ac6ae86d42b1d0b", + "tarball": "http://registry.npmjs.org/frisby/-/frisby-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "eb6b46341b458324269de87b583269f270644fd8", + "tarball": "http://registry.npmjs.org/frisby/-/frisby-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "41af0f879b8c0435cc0221a32955a82a79fb76fc", + "tarball": "http://registry.npmjs.org/frisby/-/frisby-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "dc2c3bd36d8e424770b1508e99c37689157d9b6f", + "tarball": "http://registry.npmjs.org/frisby/-/frisby-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "58439df417c261c8daa23c16fabbd6d05ca6cb5a", + "tarball": "http://registry.npmjs.org/frisby/-/frisby-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "814eb6094e9d29938501eab79c0819b8e14f4fee", + "tarball": "http://registry.npmjs.org/frisby/-/frisby-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "74f183d429f2feb25e51a208928f1702060401c9", + "tarball": "http://registry.npmjs.org/frisby/-/frisby-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "31d860ef32f23bd8f799992311b5574b9c124cd9", + "tarball": "http://registry.npmjs.org/frisby/-/frisby-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "f2708a021339478160be5ebf3d07e85bd1df18ba", + "tarball": "http://registry.npmjs.org/frisby/-/frisby-0.1.8.tgz" + } + }, + "keywords": [ + "testing", + "api", + "REST", + "jasmine", + "bdd", + "frisby" + ], + "url": "http://registry.npmjs.org/frisby/" + }, + "fructose": { + "name": "fructose", + "description": "My own sugar", + "dist-tags": { + "latest": "0.0.5-1" + }, + "maintainers": [ + { + "name": "corpix", + "email": "me@corpix.ru" + } + ], + "time": { + "modified": "2011-11-25T08:24:30.419Z", + "created": "2011-10-22T20:16:28.640Z", + "0.0.1": "2011-10-22T20:16:30.854Z", + "0.0.2": "2011-10-22T21:31:18.457Z", + "0.0.3": "2011-10-27T10:16:46.327Z", + "0.0.4": "2011-10-27T10:47:45.134Z", + "0.0.5": "2011-11-23T20:19:25.731Z", + "0.0.5-1": "2011-11-25T08:24:30.419Z" + }, + "author": { + "name": "Corpix", + "email": "me@corpix.ru", + "url": "http://corpix.ru" + }, + "repository": { + "type": "git", + "url": "git://github.com/corpix/fructose.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/fructose/0.0.1", + "0.0.2": "http://registry.npmjs.org/fructose/0.0.2", + "0.0.3": "http://registry.npmjs.org/fructose/0.0.3", + "0.0.4": "http://registry.npmjs.org/fructose/0.0.4", + "0.0.5": "http://registry.npmjs.org/fructose/0.0.5", + "0.0.5-1": "http://registry.npmjs.org/fructose/0.0.5-1" + }, + "dist": { + "0.0.1": { + "shasum": "b4bc918860ae4c6435dfe50a9f59b5b760f694f5", + "tarball": "http://registry.npmjs.org/fructose/-/fructose-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "5f7dadb051551aef537124619c1211f7fc6ae797", + "tarball": "http://registry.npmjs.org/fructose/-/fructose-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "efe2d1a308fe72a28e5557101d895363ad0d69a3", + "tarball": "http://registry.npmjs.org/fructose/-/fructose-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "fe2cd699fe1dfd7cd258cf7361a534ee093e54a6", + "tarball": "http://registry.npmjs.org/fructose/-/fructose-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "7f2696ae9ba421ccd32dbef244a3f76ebb092b7c", + "tarball": "http://registry.npmjs.org/fructose/-/fructose-0.0.5.tgz" + }, + "0.0.5-1": { + "shasum": "7391dac46ae6501ef4e4f5d39fa15656582db695", + "tarball": "http://registry.npmjs.org/fructose/-/fructose-0.0.5-1.tgz" + } + }, + "url": "http://registry.npmjs.org/fructose/" + }, + "fs-boot": { + "name": "fs-boot", + "description": "Pure JavaScript implementation of common file-system API components", + "dist-tags": { + "latest": "0.0.7" + }, + "maintainers": [ + { + "name": "kriskowal", + "email": "kris.kowal@cixar.com" + } + ], + "author": { + "name": "Kris Kowal", + "email": "kris@cixar.com", + "url": "http://github.com/kriskowal/" + }, + "repository": { + "type": "git", + "url": "git://github.com/kriskowal/fs-boot.git" + }, + "time": { + "modified": "2011-08-30T20:40:27.125Z", + "created": "2011-02-09T00:01:57.467Z", + "0.0.0": "2011-02-09T00:01:57.467Z", + "0.0.1": "2011-02-09T00:01:57.467Z", + "0.0.2": "2011-02-09T00:01:57.467Z", + "0.0.3": "2011-02-09T00:01:57.467Z", + "0.0.4": "2011-05-18T19:30:46.448Z", + "0.0.5": "2011-05-19T00:56:57.143Z", + "0.0.6": "2011-08-30T20:37:31.568Z", + "0.0.7": "2011-08-30T20:40:27.125Z" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/fs-boot/0.0.0", + "0.0.1": "http://registry.npmjs.org/fs-boot/0.0.1", + "0.0.2": "http://registry.npmjs.org/fs-boot/0.0.2", + "0.0.3": "http://registry.npmjs.org/fs-boot/0.0.3", + "0.0.4": "http://registry.npmjs.org/fs-boot/0.0.4", + "0.0.5": "http://registry.npmjs.org/fs-boot/0.0.5", + "0.0.6": "http://registry.npmjs.org/fs-boot/0.0.6", + "0.0.7": "http://registry.npmjs.org/fs-boot/0.0.7" + }, + "dist": { + "0.0.0": { + "tarball": "http://packages:5984/fs-boot/-/fs-boot-0.0.0.tgz" + }, + "0.0.1": { + "tarball": "http://packages:5984/fs-boot/-/fs-boot-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/fs-boot/-/fs-boot-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/fs-boot/-/fs-boot-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "21711ebeebfb46e77f78047d8031205236070d67", + "tarball": "http://registry.npmjs.org/fs-boot/-/fs-boot-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "03045e118ddb52dfd76497999828611b0b39c105", + "tarball": "http://registry.npmjs.org/fs-boot/-/fs-boot-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "52fd371d03eb36927dbdaf5bcf8dc2f3792ddc40", + "tarball": "http://registry.npmjs.org/fs-boot/-/fs-boot-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "ba468ad124d4afe74bdc256ad9ef3eb4c3aa65ec", + "tarball": "http://registry.npmjs.org/fs-boot/-/fs-boot-0.0.7.tgz" + } + }, + "url": "http://registry.npmjs.org/fs-boot/" + }, + "fs-ext": { + "name": "fs-ext", + "description": "Extensions to core 'fs' module.", + "dist-tags": { + "latest": "0.2.3" + }, + "maintainers": [ + { + "name": "msergeant", + "email": "helpme@gmail.com" + } + ], + "time": { + "modified": "2011-11-09T21:25:42.670Z", + "created": "2011-06-10T20:40:55.687Z", + "0.2.0": "2011-06-10T20:40:55.982Z", + "0.2.1": "2011-06-10T21:39:12.245Z", + "0.2.2": "2011-06-10T21:39:54.703Z", + "0.2.3": "2011-11-09T21:25:42.670Z" + }, + "author": { + "name": "Matt Sergeant", + "email": "helpme@gmail.com", + "url": "http://baudehlo.wordpress.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/baudehlo/node-fs-ext.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/fs-ext/0.2.0", + "0.2.1": "http://registry.npmjs.org/fs-ext/0.2.1", + "0.2.2": "http://registry.npmjs.org/fs-ext/0.2.2", + "0.2.3": "http://registry.npmjs.org/fs-ext/0.2.3" + }, + "dist": { + "0.2.0": { + "shasum": "c8bb26f98dac68dc08b7b574154f15f119bc1d76", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.0": { + "shasum": "c5c03e118c3ce6dbb99bd24078a44122bedc5112", + "tarball": "http://registry.npmjs.org/fs-ext/-/fs-ext-0.2.0-0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/fs-ext/-/fs-ext-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "b87cff5abb565637e6663fe9ee3d3dcf346db95f", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.0": { + "shasum": "a4442097c00879637caf1d72acdbdfadcaf0291b", + "tarball": "http://registry.npmjs.org/fs-ext/-/fs-ext-0.2.1-0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/fs-ext/-/fs-ext-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "e0d1414aa4dc0bfee94a98e740502447848084d8", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.0": { + "shasum": "572eb51a2ee6e9d66fec9a04aa6d70f4882f7027", + "tarball": "http://registry.npmjs.org/fs-ext/-/fs-ext-0.2.2-0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/fs-ext/-/fs-ext-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "b241f9ddf47feaa6c25057d59fbc22af20c14643", + "tarball": "http://registry.npmjs.org/fs-ext/-/fs-ext-0.2.3.tgz" + } + }, + "keywords": [ + "fs", + "filesystem", + "flock", + "seek" + ], + "url": "http://registry.npmjs.org/fs-ext/" + }, + "fs-extra": { + "name": "fs-extra", + "description": "fs-extra contains methods that aren't included in the vanilla Node.js fs package.", + "dist-tags": { + "latest": "0.0.11" + }, + "readme": null, + "maintainers": [ + { + "name": "jp", + "email": "jprichardson@gmail.com" + } + ], + "time": { + "modified": "2011-11-16T22:36:44.739Z", + "created": "2011-11-16T21:47:16.814Z", + "0.0.1": "2011-11-16T21:47:17.459Z", + "0.0.11": "2011-11-16T22:36:44.739Z" + }, + "author": { + "name": "JP Richardson", + "email": "jprichardson@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/jprichardson/node-fs-extra.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/fs-extra/0.0.1", + "0.0.11": "http://registry.npmjs.org/fs-extra/0.0.11" + }, + "dist": { + "0.0.1": { + "shasum": "3b98a23769ed92961f81653fe9f347092fa67f3c", + "tarball": "http://registry.npmjs.org/fs-extra/-/fs-extra-0.0.1.tgz" + }, + "0.0.11": { + "shasum": "3aaa3f6e0b62cb19f794d4308c6b2dfddd3bf6f3", + "tarball": "http://registry.npmjs.org/fs-extra/-/fs-extra-0.0.11.tgz" + } + }, + "keywords": [ + "fs", + "file", + "file system", + "copy" + ], + "url": "http://registry.npmjs.org/fs-extra/" + }, + "fs-streamer": { + "name": "fs-streamer", + "description": "streamer 4 fs", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "gozala", + "email": "rfobic@gmail.com" + } + ], + "time": { + "modified": "2011-09-29T02:33:39.433Z", + "created": "2011-09-29T02:33:37.945Z", + "0.0.1": "2011-09-29T02:33:39.433Z" + }, + "author": { + "name": "Irakli Gozalishvili", + "email": "rfobic@gmail.com", + "url": "http://jeditoolkit.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Gozala/fs-streamer.git", + "web": "https://github.com/Gozala/fs-streamer" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/fs-streamer/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "f9a3f61f1386eb0ad3d97df6040741dd33cf8848", + "tarball": "http://registry.npmjs.org/fs-streamer/-/fs-streamer-0.0.1.tgz" + } + }, + "keywords": [ + "fs", + "file-system", + "stream" + ], + "url": "http://registry.npmjs.org/fs-streamer/" + }, + "fs-tools": { + "name": "fs-tools", + "description": "fs helper utilities (walk, copy, mkdir -p)", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "vitaly", + "email": "vitaly@rcdesign.ru" + } + ], + "time": { + "modified": "2011-11-24T01:02:02.242Z", + "created": "2011-11-24T01:02:00.091Z", + "0.1.0": "2011-11-24T01:02:02.242Z" + }, + "author": { + "name": "Aleksey V Zapparov", + "email": "ixti@member.fsf.org", + "url": "http://www.ixti.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/nodeca/fs-tools.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/fs-tools/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "54092ccf7598bf47079bfe352cbe6f9d1b96d70f", + "tarball": "http://registry.npmjs.org/fs-tools/-/fs-tools-0.1.0.tgz" + } + }, + "keywords": [ + "fs", + "file", + "utils" + ], + "url": "http://registry.npmjs.org/fs-tools/" + }, + "fs.extra": { + "name": "fs.extra", + "description": "fs.move and fs.copy for Node.JS", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-11-10T07:39:10.302Z", + "created": "2011-11-10T07:39:09.390Z", + "1.0.0": "2011-11-10T07:39:10.302Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com", + "url": "http://coolaj86.info/" + }, + "repository": { + "type": "git", + "url": "git://github.com/coolaj86/node-examples-js.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/fs.extra/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "1ba5dcfd6ad1180fbfe45add8c58d431ef0e04bb", + "tarball": "http://registry.npmjs.org/fs.extra/-/fs.extra-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/fs.extra/" + }, + "fsevents": { + "name": "fsevents", + "description": "Native Access to Mac OS-X FSEvents", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "phidelta", + "email": "phidelta@phideltacity.net" + } + ], + "time": { + "modified": "2011-05-23T20:26:36.806Z", + "created": "2011-02-23T23:55:12.303Z", + "0.0.1": "2011-02-23T23:55:12.861Z", + "0.0.2": "2011-05-23T20:26:36.806Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/fsevents/0.0.1", + "0.0.2": "http://registry.npmjs.org/fsevents/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "c6228e9561eb180a8c1ad4705e5216d1396e9876", + "tarball": "http://registry.npmjs.org/fsevents/-/fsevents-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f50aec7e1a16c4aa448be21e680e6904952be3ff", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.16-darwin-10.7.0": { + "shasum": "bc21835919add1b5f275c25af0172c49566d4b4a", + "tarball": "http://registry.npmjs.org/fsevents/-/fsevents-0.0.2-0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.16-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/fsevents/-/fsevents-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/fsevents/" + }, + "fsext": { + "name": "fsext", + "description": "'fsext' is a small extention for the nodejs FS module", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "yellowbean", + "email": "apirsig@web.de" + } + ], + "time": { + "modified": "2011-04-15T07:21:21.181Z", + "created": "2011-04-14T14:01:23.923Z", + "0.0.1alpha1": "2011-04-14T14:01:24.281Z", + "0.0.2": "2011-04-15T07:05:39.389Z" + }, + "author": { + "name": "Alexander Pirsig", + "email": "apirsig@web.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/piscis/fsext.git" + }, + "versions": { + "0.0.1alpha1": "http://registry.npmjs.org/fsext/0.0.1alpha1", + "0.0.2": "http://registry.npmjs.org/fsext/0.0.2" + }, + "dist": { + "0.0.1alpha1": { + "shasum": "056527e4d07d48c76b150d0bb0d79d173bcc0101", + "tarball": "http://registry.npmjs.org/fsext/-/fsext-0.0.1alpha1.tgz" + }, + "0.0.2": { + "shasum": "0ba966443eabe26dd986a28c031874e6e6d3937d", + "tarball": "http://registry.npmjs.org/fsext/-/fsext-0.0.2.tgz" + } + }, + "keywords": [ + "fs", + "file", + "copy", + "duplicating", + "filesystem", + "fs extention", + "fsext" + ], + "url": "http://registry.npmjs.org/fsext/" + }, + "fsh": { + "name": "fsh", + "description": "Filesystem helpers - This is a library I use all over but probably needs a lot of love", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "foobarfighter", + "email": "bob.remeika@gmail.com" + } + ], + "time": { + "modified": "2011-06-21T05:28:40.126Z", + "created": "2011-05-17T09:08:44.299Z", + "0.0.1aplpha1": "2011-05-17T09:08:44.832Z", + "0.0.2": "2011-06-21T05:28:40.126Z" + }, + "author": { + "name": "Bob Remeika" + }, + "repository": { + "type": "git", + "url": "git://github.com/foobarfighter/node-fsh.git" + }, + "versions": { + "0.0.1aplpha1": "http://registry.npmjs.org/fsh/0.0.1aplpha1", + "0.0.2": "http://registry.npmjs.org/fsh/0.0.2" + }, + "dist": { + "0.0.1aplpha1": { + "shasum": "ab680882ab209a69f6aeefb6526649f0a63198ba", + "tarball": "http://registry.npmjs.org/fsh/-/fsh-0.0.1aplpha1.tgz" + }, + "0.0.2": { + "shasum": "549fc3b83409ded9635f44248ac7c506ea695ccf", + "tarball": "http://registry.npmjs.org/fsh/-/fsh-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/fsh/" + }, + "fsm": { + "name": "fsm", + "description": "Finite State Machine - Separate Control Flow from IO", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-06-15T22:37:45.638Z", + "created": "2011-06-13T04:10:55.020Z", + "0.0.0": "2011-06-13T04:11:15.862Z", + "0.0.1": "2011-06-15T22:37:45.638Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com", + "url": "http://bit.ly/dominictarr" + }, + "repository": { + "type": "git", + "url": "git://github.com/dominictarr/fsm.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/fsm/0.0.0", + "0.0.1": "http://registry.npmjs.org/fsm/0.0.1" + }, + "dist": { + "0.0.0": { + "shasum": "85764a52545c1b1a091082c5ca41c954b4034860", + "tarball": "http://registry.npmjs.org/fsm/-/fsm-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "c90705b8736f9c2f7185ee007a7380fd347e7e36", + "tarball": "http://registry.npmjs.org/fsm/-/fsm-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/fsm/" + }, + "fstream": { + "name": "fstream", + "description": "Advanced file system stream things", + "dist-tags": { + "latest": "0.1.9" + }, + "readme": "Like FS streams, but with stat on them, and supporting directories and\nsymbolic links, as well as normal files. Also, you can use this to set\nthe stats on a file, even if you don't change its contents, or to create\na symlink, etc.\n\nSo, for example, you can \"write\" a directory, and it'll call `mkdir`. You\ncan specify a uid and gid, and it'll call `chown`. You can specify a\n`mtime` and `atime`, and it'll call `utimes`. You can call it a symlink\nand provide a `linkpath` and it'll call `symlink`.\n\nNote that it won't automatically resolve symbolic links. So, if you\ncall `fstream.Reader('/some/symlink')` then you'll get an object\nthat stats and then ends immediately (since it has no data). To follow\nsymbolic links, do this: `fstream.Reader({path:'/some/symlink', follow:\ntrue })`.\n\nThere are various checks to make sure that the bytes emitted are the\nsame as the intended size, if the size is set.\n\n## Examples\n\n```javascript\nfstream\n .Writer({ path: \"path/to/file\"\n , mode: 0755\n , size: 6\n })\n .write(\"hello\\n\")\n .end()\n```\n\nThis will create the directories if they're missing, and then write\n`hello\\n` into the file, chmod it to 0755, and assert that 6 bytes have\nbeen written when it's done.\n\n```javascript\nfstream\n .Writer({ path: \"path/to/file\"\n , mode: 0755\n , size: 6\n , flags: \"a\"\n })\n .write(\"hello\\n\")\n .end()\n```\n\nYou can pass flags in, if you want to append to a file.\n\n```javascript\nfstream\n .Writer({ path: \"path/to/symlink\"\n , linkpath: \"./file\"\n , SymbolicLink: true\n , mode: \"0755\" // octal strings supported\n })\n .end()\n```\n\nIf isSymbolicLink is a function, it'll be called, and if it returns\ntrue, then it'll treat it as a symlink. If it's not a function, then\nany truish value will make a symlink, or you can set `type:\n'SymbolicLink'`, which does the same thing.\n\nNote that the linkpath is relative to the symbolic link location, not\nthe parent dir or cwd.\n\n```javascript\nfstream\n .Reader(\"path/to/dir\")\n .pipe(fstream.Writer(\"path/to/other/dir\"))\n```\n\nThis will do like `cp -Rp path/to/dir path/to/other/dir`. If the other\ndir exists and isn't a directory, then it'll emit an error. It'll also\nset the uid, gid, mode, etc. to be identical. In this way, it's more\nlike `rsync -a` than simply a copy.\n", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "time": { + "modified": "2011-12-09T02:10:35.493Z", + "created": "2011-11-01T00:05:58.625Z", + "0.0.0": "2011-11-01T00:05:59.755Z", + "0.0.1": "2011-11-08T01:36:30.916Z", + "0.1.0": "2011-11-20T07:40:38.400Z", + "0.1.1": "2011-11-23T00:45:27.393Z", + "0.1.2": "2011-11-29T01:17:18.898Z", + "0.1.3": "2011-11-29T02:46:40.880Z", + "0.1.5": "2011-11-30T18:54:06.331Z", + "0.1.6": "2011-12-03T02:28:11.557Z", + "0.1.7": "2011-12-08T17:59:56.620Z", + "0.1.8": "2011-12-09T01:59:39.726Z", + "0.1.9": "2011-12-09T02:10:35.493Z" + }, + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me/" + }, + "repository": { + "type": "git", + "url": "git://github.com/isaacs/fstream.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/fstream/0.0.0", + "0.0.1": "http://registry.npmjs.org/fstream/0.0.1", + "0.1.0": "http://registry.npmjs.org/fstream/0.1.0", + "0.1.1": "http://registry.npmjs.org/fstream/0.1.1", + "0.1.2": "http://registry.npmjs.org/fstream/0.1.2", + "0.1.3": "http://registry.npmjs.org/fstream/0.1.3", + "0.1.5": "http://registry.npmjs.org/fstream/0.1.5", + "0.1.6": "http://registry.npmjs.org/fstream/0.1.6", + "0.1.7": "http://registry.npmjs.org/fstream/0.1.7", + "0.1.8": "http://registry.npmjs.org/fstream/0.1.8", + "0.1.9": "http://registry.npmjs.org/fstream/0.1.9" + }, + "dist": { + "0.0.0": { + "shasum": "dfaf06bfe592b1ff5deee32734e14eb185353f12", + "tarball": "http://registry.npmjs.org/fstream/-/fstream-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "c7c43f70580fe9e1fa61e255039b958da2c94c6b", + "tarball": "http://registry.npmjs.org/fstream/-/fstream-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "9f7ba8b240ea82317bf60ea8a320b65546f963cd", + "tarball": "http://registry.npmjs.org/fstream/-/fstream-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "6e6b66de1320684198570fd7b975c3fcebd9fa02", + "tarball": "http://registry.npmjs.org/fstream/-/fstream-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "ecd8102214b8f24029f912675efe0e133cf2ca6e", + "tarball": "http://registry.npmjs.org/fstream/-/fstream-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "a99cde7c968a693f6d85085943b4f8db5a55e570", + "tarball": "http://registry.npmjs.org/fstream/-/fstream-0.1.3.tgz" + }, + "0.1.5": { + "shasum": "38f446bd5c34924ba578d91540f4cc4ddead9db0", + "tarball": "http://registry.npmjs.org/fstream/-/fstream-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "77f0a8a1ab7e467894eb8ff1d27f7f459a865d80", + "tarball": "http://registry.npmjs.org/fstream/-/fstream-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "1f4d58b614773aa17ff5cf294bbf9ecedea2352b", + "tarball": "http://registry.npmjs.org/fstream/-/fstream-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "57bae43e6e1c8a1d7171226d266563580b035e80", + "tarball": "http://registry.npmjs.org/fstream/-/fstream-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "7eb48a015c1f17e59beac8599c006dda15f645ce", + "tarball": "http://registry.npmjs.org/fstream/-/fstream-0.1.9.tgz" + } + }, + "url": "http://registry.npmjs.org/fstream/" + }, + "fswatch": { + "name": "fswatch", + "description": "Node.js file system events watcher", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "afelix", + "email": "skryzhanovsky@gmail.com" + } + ], + "time": { + "modified": "2011-08-07T17:38:44.883Z", + "created": "2011-07-11T16:45:05.484Z", + "0.1.0": "2011-07-11T16:45:06.147Z", + "0.1.1": "2011-07-19T12:52:38.209Z", + "0.1.2": "2011-07-19T13:54:01.277Z", + "0.1.3": "2011-08-01T14:15:36.296Z", + "0.1.4": "2011-08-07T17:38:44.883Z" + }, + "author": { + "name": "Sergey Kryzhanovsky", + "email": "skryzhanovsky@gmail.com", + "url": "http://github.com/afelix" + }, + "repository": { + "type": "git", + "url": "git://github.com/afelix/fswatch.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/fswatch/0.1.0", + "0.1.1": "http://registry.npmjs.org/fswatch/0.1.1", + "0.1.2": "http://registry.npmjs.org/fswatch/0.1.2", + "0.1.3": "http://registry.npmjs.org/fswatch/0.1.3", + "0.1.4": "http://registry.npmjs.org/fswatch/0.1.4" + }, + "dist": { + "0.1.0": { + "shasum": "23e15f3fda4297be46639add895ab7b493d43fc1", + "tarball": "http://registry.npmjs.org/fswatch/-/fswatch-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "76a35973b2065f75765837722ff97a3d241a2f68", + "tarball": "http://registry.npmjs.org/fswatch/-/fswatch-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "1733de27b15fdf433944fd895f479f9bf9a758ab", + "tarball": "http://registry.npmjs.org/fswatch/-/fswatch-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "0f85b2e00039c22f573b8fa4a484048cfa5be77a", + "tarball": "http://registry.npmjs.org/fswatch/-/fswatch-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "34b12d1f814989e6da960ee490cc0e051b9bb485", + "tarball": "http://registry.npmjs.org/fswatch/-/fswatch-0.1.4.tgz" + } + }, + "url": "http://registry.npmjs.org/fswatch/" + }, + "fsx": { + "name": "fsx", + "description": "Simple recursive file and directory reader using synchronous node fs calls", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "clux", + "email": "analsandblaster@gmail.com" + } + ], + "time": { + "modified": "2011-11-03T08:43:26.542Z", + "created": "2011-11-03T08:43:25.247Z", + "1.0.0": "2011-11-03T08:43:26.542Z" + }, + "author": { + "name": "Eirik Albrigtsen", + "email": "analsandblaster@gmail.com" + }, + "repository": { + "url": "" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/fsx/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "b91a566a025e1a8f8ff262d01bf035e01c3e469c", + "tarball": "http://registry.npmjs.org/fsx/-/fsx-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/fsx/" + }, + "ftp": { + "name": "ftp", + "description": "An FTP client module for node.js", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "mscdex", + "email": "mscdex@mscdex.net" + } + ], + "time": { + "modified": "2011-04-17T18:29:06.753Z", + "created": "2011-04-10T04:37:58.230Z", + "0.1.0": "2011-04-10T04:37:58.603Z", + "0.1.1": "2011-04-17T18:29:06.753Z" + }, + "author": { + "name": "Brian White", + "email": "mscdex@mscdex.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/mscdex/node-ftp.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/ftp/0.1.0", + "0.1.1": "http://registry.npmjs.org/ftp/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "2966666b4cf967efffd85acf2ab42fe5e10bdb35", + "tarball": "http://registry.npmjs.org/ftp/-/ftp-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "3349d08a87363187fefacd4a658b2b0963603a48", + "tarball": "http://registry.npmjs.org/ftp/-/ftp-0.1.1.tgz" + } + }, + "keywords": [ + "ftp", + "client", + "transfer" + ], + "url": "http://registry.npmjs.org/ftp/" + }, + "ftp-get": { + "name": "ftp-get", + "description": "Simple to use node.js FTP client for downloading remote files", + "dist-tags": { + "latest": "0.2.7" + }, + "maintainers": [ + { + "name": "saltwaterc", + "email": "saltwaterc@gmail.com" + } + ], + "time": { + "modified": "2011-10-27T10:19:04.302Z", + "created": "2011-07-15T14:48:24.908Z", + "0.1.0": "2011-07-15T14:48:26.040Z", + "0.1.1": "2011-07-16T10:49:51.973Z", + "0.1.2": "2011-07-17T09:45:00.415Z", + "0.1.3": "2011-07-17T13:04:53.783Z", + "0.1.4": "2011-07-20T14:07:59.325Z", + "0.1.5": "2011-07-25T15:04:50.535Z", + "0.2.0": "2011-08-03T09:58:20.283Z", + "0.2.1": "2011-09-05T13:35:16.919Z", + "0.2.2": "2011-09-05T14:18:04.164Z", + "0.2.3": "2011-09-05T18:05:02.255Z", + "0.2.4": "2011-09-06T08:06:52.833Z", + "0.2.5": "2011-09-23T11:51:38.878Z", + "0.2.6": "2011-10-27T09:26:22.815Z", + "0.2.7": "2011-10-27T10:19:04.302Z" + }, + "author": { + "name": "Stefan Rusu", + "url": "http://www.saltwaterc.eu/" + }, + "repository": { + "type": "git", + "url": "git://github.com/SaltwaterC/ftp-get.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/ftp-get/0.1.0", + "0.1.1": "http://registry.npmjs.org/ftp-get/0.1.1", + "0.1.2": "http://registry.npmjs.org/ftp-get/0.1.2", + "0.1.3": "http://registry.npmjs.org/ftp-get/0.1.3", + "0.1.4": "http://registry.npmjs.org/ftp-get/0.1.4", + "0.1.5": "http://registry.npmjs.org/ftp-get/0.1.5", + "0.2.0": "http://registry.npmjs.org/ftp-get/0.2.0", + "0.2.1": "http://registry.npmjs.org/ftp-get/0.2.1", + "0.2.2": "http://registry.npmjs.org/ftp-get/0.2.2", + "0.2.3": "http://registry.npmjs.org/ftp-get/0.2.3", + "0.2.4": "http://registry.npmjs.org/ftp-get/0.2.4", + "0.2.5": "http://registry.npmjs.org/ftp-get/0.2.5", + "0.2.6": "http://registry.npmjs.org/ftp-get/0.2.6", + "0.2.7": "http://registry.npmjs.org/ftp-get/0.2.7" + }, + "dist": { + "0.1.0": { + "shasum": "94555af05110515cc8306880ba74ad1cc463e339", + "tarball": "http://registry.npmjs.org/ftp-get/-/ftp-get-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "f941d1ba55c0508c6648b7e73be7c7118b96f206", + "tarball": "http://registry.npmjs.org/ftp-get/-/ftp-get-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "770010810d9746f370190a59fa139067820d096e", + "tarball": "http://registry.npmjs.org/ftp-get/-/ftp-get-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "22574cc29e985b15fe9fbe073991295e4035c113", + "tarball": "http://registry.npmjs.org/ftp-get/-/ftp-get-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "e73bd45d50707d77aee72690c27062200e5273bb", + "tarball": "http://registry.npmjs.org/ftp-get/-/ftp-get-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "470c721fc86e82735164a31da8e65b1538b690cd", + "tarball": "http://registry.npmjs.org/ftp-get/-/ftp-get-0.1.5.tgz" + }, + "0.2.0": { + "shasum": "ee40c9b05bf2390cc3bfadbc8a7d6f69e565685a", + "tarball": "http://registry.npmjs.org/ftp-get/-/ftp-get-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "7c06fb2d5cd3a80fc4cabeee3c558ad4d63f13fa", + "tarball": "http://registry.npmjs.org/ftp-get/-/ftp-get-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "f178b04631777c8bd327f8c32d58d646e5e578f1", + "tarball": "http://registry.npmjs.org/ftp-get/-/ftp-get-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "cbbdd0e35d8c705acf6e461b816db19eacef8928", + "tarball": "http://registry.npmjs.org/ftp-get/-/ftp-get-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "8f59d2ea107f6ccb3cccfb71c212ba4babadc2ca", + "tarball": "http://registry.npmjs.org/ftp-get/-/ftp-get-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "0a63d13b15151a68b65460ae7b1b64d159c76908", + "tarball": "http://registry.npmjs.org/ftp-get/-/ftp-get-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "09479dbe87f7a9400d7a6238caf09e9480118caa", + "tarball": "http://registry.npmjs.org/ftp-get/-/ftp-get-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "4a19e225866ec6e1e78cfbe4933b2ecbba18b26c", + "tarball": "http://registry.npmjs.org/ftp-get/-/ftp-get-0.2.7.tgz" + } + }, + "keywords": [ + "ftp", + "get", + "download" + ], + "url": "http://registry.npmjs.org/ftp-get/" + }, + "ftp-server": { + "name": "ftp-server", + "description": "Featureless FTP server", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "[![Build Status](https://secure.travis-ci.org/naholyr/node-ftp-server.png)](http://travis-ci.org/naholyr/node-ftp-server)\n\n# FTP Server -- Simple featureless FTP server\n\nThis is a very simple FTP server. At first it's aimed to simply provide a full-Node implementation of FTP server to be embedded for Unit Testing purpose.\n\nIt's currently highly experimental and could crash anytime. It could become a real FTP server if you want to contribute a bit ;) Don't be afraid: FTP protocol is quite simple.\n\n## Install\n\n```bash\n# Using NPM\nnpm install ftp-server\n```\n\nOr from source:\n\n```bash\n# Install from sources...\ngit clone git://github.com/naholyr/node-ftp-server.git ftp-server\ncd ftp-server\nnpm link\n\n# ...Then in your project\nnpm link ftp-server\n```\n\nYou can run unit tests:\n\n```bash\n# From your project where ftp-server has been installed as a module\nnpm test ftp-server\n\n# Or directly from ftp-server\nnpm test\n```\n\n## Usage\n\nExample: Simply serve a given directory:\n\n```javascript\nvar ftpd = require('ftp-server')\n// Path to your FTP root\nftpd.fsOptions.root = '/path/to/ftp-root'\n// Start listening on port 21 (you need to be root for ports < 1024)\nftpd.listen(21)\n```\n\n## Extend server\n\nJust look at the code. I'll fully document the ways to extend the server with additional features when it's at least more stable.\n\n## Paternity\n\nNote that the original implementation I based my work on was [@billywhizz 's from GitHub](https://github.com/billywhizz/nodeftpd).\n\n## Roadmap\n\n * Add support for rename commands\n * Better implementation of `LIST` and `NLST` to be cross-platform\n * Add support for `REST` command (restart an interrupted download)\n * Maybe wrap all this stuff in a class or at least a function with options (like what FS we'll use)\n * Add better documentation on how to extend server (add \"features\") or new FS wrappers\n * Implement MemoryFS\n * Support authentication from config or even from database\n * Implement all the RFCs from FTP protocol\n", + "maintainers": [ + { + "name": "naholyr", + "email": "naholyr@gmail.com" + } + ], + "time": { + "modified": "2011-11-23T08:41:10.577Z", + "created": "2011-11-23T08:27:13.760Z", + "0.1.0": "2011-11-23T08:27:15.666Z" + }, + "author": { + "name": "Nicolas Chambrier", + "email": "naholyr@gmail.com", + "url": "http://naholyr.fr" + }, + "repository": { + "type": "git", + "url": "git://github.com/naholyr/node-ftp-server.git" + }, + "users": { + "naholyr": true + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/ftp-server/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "27ff0ce3f0983b1bc270ff56dba899a2ad0a14ce", + "tarball": "http://registry.npmjs.org/ftp-server/-/ftp-server-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/ftp-server/" + }, + "fu": { + "name": "fu", + "description": "Functional CoffeeScript", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "cstivers78", + "email": "chris@stivers.us" + } + ], + "time": { + "modified": "2011-09-30T04:57:05.176Z", + "created": "2011-09-30T04:56:57.542Z", + "0.0.0": "2011-09-30T04:57:05.176Z" + }, + "author": { + "name": "Chris Stivers", + "email": "chris@stivers.us", + "url": "http://stivers.us" + }, + "repository": { + "type": "git", + "url": "git://github.com/cstivers78/fu.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/fu/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "af0437404b0bcefe9cab1abd258f0dbe5a70cf3c", + "tarball": "http://registry.npmjs.org/fu/-/fu-0.0.0.tgz" + } + }, + "keywords": [ + "utilities", + "coffeescript" + ], + "url": "http://registry.npmjs.org/fu/" + }, + "fugue": { + "name": "fugue", + "description": "Unicorn for node", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "pgte", + "email": "pedro.teixeira@gmail.com" + } + ], + "author": { + "name": "Pedro Teixeira", + "email": "pedro.teixeira@gmail.com", + "url": "http://www.metaduck.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/pgte/fugue.git" + }, + "time": { + "modified": "2011-12-07T15:27:12.803Z", + "created": "2010-12-22T19:50:31.033Z", + "0.0.1": "2011-12-07T15:27:12.803Z", + "0.0.10": "2011-12-07T15:27:12.803Z", + "0.0.11": "2011-12-07T15:27:12.803Z", + "0.0.12": "2011-12-07T15:27:12.803Z", + "0.0.13": "2011-12-07T15:27:12.803Z", + "0.0.14": "2011-12-07T15:27:12.803Z", + "0.0.15": "2011-12-07T15:27:12.803Z", + "0.0.19": "2011-12-07T15:27:12.803Z", + "0.0.20": "2011-12-07T15:27:12.803Z", + "0.0.21": "2011-12-07T15:27:12.803Z", + "0.0.22": "2011-12-07T15:27:12.803Z", + "0.0.24": "2011-12-07T15:27:12.803Z", + "0.0.25": "2011-12-07T15:27:12.803Z", + "0.0.26": "2011-12-07T15:27:12.803Z", + "0.0.27": "2011-12-07T15:27:12.803Z", + "0.0.28": "2011-12-07T15:27:12.803Z", + "0.0.29": "2011-12-07T15:27:12.803Z", + "0.0.30": "2011-12-07T15:27:12.803Z", + "0.0.31": "2011-12-07T15:27:12.803Z", + "0.0.32": "2011-12-07T15:27:12.803Z", + "0.0.33": "2011-12-07T15:27:12.803Z", + "0.0.34": "2011-12-07T15:27:12.803Z", + "0.0.35": "2011-12-07T15:27:12.803Z", + "0.0.36": "2011-12-07T15:27:12.803Z", + "0.0.37": "2011-12-07T15:27:12.803Z", + "0.0.4": "2011-12-07T15:27:12.803Z", + "0.0.5": "2011-12-07T15:27:12.803Z", + "0.0.6": "2011-12-07T15:27:12.803Z", + "0.0.7": "2011-12-07T15:27:12.803Z", + "0.0.8": "2011-12-07T15:27:12.803Z", + "0.0.9": "2011-12-07T15:27:12.803Z", + "0.0.38": "2011-12-07T15:27:12.803Z", + "0.1.0": "2011-12-07T15:27:12.803Z", + "0.1.1": "2011-12-07T15:27:12.803Z", + "0.1.2": "2011-12-07T15:27:12.803Z", + "0.1.3": "2011-12-07T15:27:12.803Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/fugue/0.0.1", + "0.0.10": "http://registry.npmjs.org/fugue/0.0.10", + "0.0.11": "http://registry.npmjs.org/fugue/0.0.11", + "0.0.12": "http://registry.npmjs.org/fugue/0.0.12", + "0.0.13": "http://registry.npmjs.org/fugue/0.0.13", + "0.0.14": "http://registry.npmjs.org/fugue/0.0.14", + "0.0.15": "http://registry.npmjs.org/fugue/0.0.15", + "0.0.19": "http://registry.npmjs.org/fugue/0.0.19", + "0.0.20": "http://registry.npmjs.org/fugue/0.0.20", + "0.0.21": "http://registry.npmjs.org/fugue/0.0.21", + "0.0.22": "http://registry.npmjs.org/fugue/0.0.22", + "0.0.24": "http://registry.npmjs.org/fugue/0.0.24", + "0.0.25": "http://registry.npmjs.org/fugue/0.0.25", + "0.0.26": "http://registry.npmjs.org/fugue/0.0.26", + "0.0.27": "http://registry.npmjs.org/fugue/0.0.27", + "0.0.28": "http://registry.npmjs.org/fugue/0.0.28", + "0.0.29": "http://registry.npmjs.org/fugue/0.0.29", + "0.0.30": "http://registry.npmjs.org/fugue/0.0.30", + "0.0.31": "http://registry.npmjs.org/fugue/0.0.31", + "0.0.32": "http://registry.npmjs.org/fugue/0.0.32", + "0.0.33": "http://registry.npmjs.org/fugue/0.0.33", + "0.0.34": "http://registry.npmjs.org/fugue/0.0.34", + "0.0.35": "http://registry.npmjs.org/fugue/0.0.35", + "0.0.36": "http://registry.npmjs.org/fugue/0.0.36", + "0.0.37": "http://registry.npmjs.org/fugue/0.0.37", + "0.0.4": "http://registry.npmjs.org/fugue/0.0.4", + "0.0.5": "http://registry.npmjs.org/fugue/0.0.5", + "0.0.6": "http://registry.npmjs.org/fugue/0.0.6", + "0.0.7": "http://registry.npmjs.org/fugue/0.0.7", + "0.0.8": "http://registry.npmjs.org/fugue/0.0.8", + "0.0.9": "http://registry.npmjs.org/fugue/0.0.9", + "0.0.38": "http://registry.npmjs.org/fugue/0.0.38", + "0.1.0": "http://registry.npmjs.org/fugue/0.1.0", + "0.1.1": "http://registry.npmjs.org/fugue/0.1.1", + "0.1.2": "http://registry.npmjs.org/fugue/0.1.2", + "0.1.3": "http://registry.npmjs.org/fugue/0.1.3" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/fugue/-/fugue-0.0.1.tgz" + }, + "0.0.10": { + "tarball": "http://packages:5984/fugue/-/fugue-0.0.10.tgz" + }, + "0.0.11": { + "tarball": "http://packages:5984/fugue/-/fugue-0.0.11.tgz" + }, + "0.0.12": { + "tarball": "http://packages:5984/fugue/-/fugue-0.0.12.tgz" + }, + "0.0.13": { + "tarball": "http://packages:5984/fugue/-/fugue-0.0.13.tgz" + }, + "0.0.14": { + "tarball": "http://packages:5984/fugue/-/fugue-0.0.14.tgz" + }, + "0.0.15": { + "tarball": "http://packages:5984/fugue/-/fugue-0.0.15.tgz" + }, + "0.0.19": { + "tarball": "http://packages:5984/fugue/-/fugue-0.0.19.tgz" + }, + "0.0.20": { + "tarball": "http://packages:5984/fugue/-/fugue-0.0.20.tgz" + }, + "0.0.21": { + "tarball": "http://packages:5984/fugue/-/fugue-0.0.21.tgz" + }, + "0.0.22": { + "tarball": "http://packages:5984/fugue/-/fugue-0.0.22.tgz" + }, + "0.0.24": { + "tarball": "http://packages:5984/fugue/-/fugue-0.0.24.tgz" + }, + "0.0.25": { + "tarball": "http://packages:5984/fugue/-/fugue-0.0.25.tgz" + }, + "0.0.26": { + "tarball": "http://packages:5984/fugue/-/fugue-0.0.26.tgz" + }, + "0.0.27": { + "tarball": "http://packages:5984/fugue/-/fugue-0.0.27.tgz" + }, + "0.0.28": { + "tarball": "http://packages:5984/fugue/-/fugue-0.0.28.tgz" + }, + "0.0.29": { + "tarball": "http://packages:5984/fugue/-/fugue-0.0.29.tgz" + }, + "0.0.30": { + "tarball": "http://packages:5984/fugue/-/fugue-0.0.30.tgz" + }, + "0.0.31": { + "tarball": "http://packages:5984/fugue/-/fugue-0.0.31.tgz" + }, + "0.0.32": { + "tarball": "http://packages:5984/fugue/-/fugue-0.0.32.tgz" + }, + "0.0.33": { + "tarball": "http://packages:5984/fugue/-/fugue-0.0.33.tgz" + }, + "0.0.34": { + "tarball": "http://packages:5984/fugue/-/fugue-0.0.34.tgz" + }, + "0.0.35": { + "tarball": "http://packages:5984/fugue/-/fugue-0.0.35.tgz" + }, + "0.0.36": { + "tarball": "http://packages:5984/fugue/-/fugue-0.0.36.tgz" + }, + "0.0.37": { + "tarball": "http://packages:5984/fugue/-/fugue-0.0.37.tgz" + }, + "0.0.4": { + "tarball": "http://packages:5984/fugue/-/fugue-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://packages:5984/fugue/-/fugue-0.0.5.tgz" + }, + "0.0.6": { + "tarball": "http://packages:5984/fugue/-/fugue-0.0.6.tgz" + }, + "0.0.7": { + "tarball": "http://packages:5984/fugue/-/fugue-0.0.7.tgz" + }, + "0.0.8": { + "tarball": "http://packages:5984/fugue/-/fugue-0.0.8.tgz" + }, + "0.0.9": { + "tarball": "http://packages:5984/fugue/-/fugue-0.0.9.tgz" + }, + "0.0.38": { + "tarball": "http://registry.npmjs.org/fugue/-/fugue@0.0.38.tgz" + }, + "0.1.0": { + "tarball": "http://registry.npmjs.org/fugue/-/fugue@0.1.0.tgz" + }, + "0.1.1": { + "shasum": "b192c56ce3e49eac4ab086af55aa964eaa239eaf", + "tarball": "http://registry.npmjs.org/fugue/-/fugue-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "ebb6eca6ca3cfaa5a1eba48e9cc5f1dec0b1fd58", + "tarball": "http://registry.npmjs.org/fugue/-/fugue-0.1.2.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "87b6a60a971cbf5eddc8aa214c979c8f86ee44f9", + "tarball": "http://registry.npmjs.org/fugue/-/fugue-0.1.2-0.4-sunos-5.11.tgz" + } + } + }, + "0.1.3": { + "shasum": "5e500cad77dd0368e0c50c111127bf2b9779b47f", + "tarball": "http://registry.npmjs.org/fugue/-/fugue-0.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/fugue/" + }, + "fun": { + "name": "fun", + "description": "A programming language for realtime web applications", + "dist-tags": { + "latest": "0.2.4" + }, + "maintainers": [ + { + "name": "marcuswestin", + "email": "narcvs@gmail.com" + } + ], + "time": { + "modified": "2011-07-13T02:51:10.807Z", + "created": "2011-03-25T19:45:04.495Z", + "0.1.0-31-g4bacf63": "2011-03-25T19:45:04.686Z", + "0.2.0": "2011-03-27T02:53:14.472Z", + "0.2.2": "2011-03-28T04:09:11.850Z", + "0.2.5": "2011-04-13T16:44:55.382Z", + "0.2.6": "2011-07-13T02:43:04.596Z", + "0.2.4": "2011-07-13T02:51:10.807Z" + }, + "author": { + "name": "Marcus Westin", + "email": "narcvs@gmail.com", + "url": "http://marcuswest.in" + }, + "repository": { + "type": "git", + "url": "git://github.com/marcuswestin/fun.git" + }, + "versions": { + "0.1.0-31-g4bacf63": "http://registry.npmjs.org/fun/0.1.0-31-g4bacf63", + "0.2.0": "http://registry.npmjs.org/fun/0.2.0", + "0.2.2": "http://registry.npmjs.org/fun/0.2.2", + "0.2.5": "http://registry.npmjs.org/fun/0.2.5", + "0.2.6": "http://registry.npmjs.org/fun/0.2.6", + "0.2.4": "http://registry.npmjs.org/fun/0.2.4" + }, + "dist": { + "0.1.0-31-g4bacf63": { + "shasum": "2c01c2f527a1cd155c9c8d6e56844e858091d5eb", + "tarball": "http://registry.npmjs.org/fun/-/fun-0.1.0-31-g4bacf63.tgz" + }, + "0.2.0": { + "shasum": "7b7fd85b37bea9ef284b25c2aaf0ccc86106259c", + "tarball": "http://registry.npmjs.org/fun/-/fun-0.2.0.tgz" + }, + "0.2.2": { + "shasum": "18624c61e046b434c4dce8eac73b7e74dfe6134d", + "tarball": "http://registry.npmjs.org/fun/-/fun-0.2.2.tgz" + }, + "0.2.5": { + "shasum": "79672763ccd2ad94680e00dd674017392187d107", + "tarball": "http://registry.npmjs.org/fun/-/fun-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "eaf3e9011aa88b8b188b06a24c2a0ca9abb288ea", + "tarball": "http://registry.npmjs.org/fun/-/fun-0.2.6.tgz" + }, + "0.2.4": { + "shasum": "00f75c534d6b8534116991386e2da4931f1f5cd0", + "tarball": "http://registry.npmjs.org/fun/-/fun-0.2.4.tgz" + } + }, + "url": "http://registry.npmjs.org/fun/" + }, + "func": { + "name": "func", + "description": "JavaScript's functional programming helper library.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "tlorenz", + "email": "tlorenz@lab49.com" + } + ], + "time": { + "modified": "2011-10-29T02:40:27.759Z", + "created": "2011-10-29T02:40:27.342Z", + "0.1.0": "2011-10-29T02:40:27.759Z" + }, + "author": { + "name": "Thorsten Lorenz", + "email": "thlorenz@gmx.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/thlorenz/func.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/func/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "b0011bb3cf890044c2164df9f23199c6fced9141", + "tarball": "http://registry.npmjs.org/func/-/func-0.1.0.tgz" + } + }, + "keywords": [ + "util", + "functional", + "server", + "client", + "browser" + ], + "url": "http://registry.npmjs.org/func/" + }, + "functional": { + "name": "functional", + "description": "functional javascript <3", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "gozala", + "email": "rfobic@gmail.com" + } + ], + "time": { + "modified": "2011-09-29T02:51:12.457Z", + "created": "2011-07-25T14:12:45.204Z", + "0.0.1": "2011-07-25T14:12:45.805Z", + "0.0.2": "2011-08-16T09:15:35.036Z", + "0.0.3": "2011-09-29T02:51:12.457Z" + }, + "author": { + "name": "Irakli Gozalishvili", + "email": "rfobic@gmail.com", + "url": "http://jeditoolkit.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Gozala/functional.git", + "web": "https://github.com/Gozala/functional" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/functional/0.0.1", + "0.0.2": "http://registry.npmjs.org/functional/0.0.2", + "0.0.3": "http://registry.npmjs.org/functional/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "6996e0d1e15b11d78d4fb2f2e4dceb9ae288e88d", + "tarball": "http://registry.npmjs.org/functional/-/functional-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "48b52a2fffa46cd4aad341aeeca2aa0bc18597d9", + "tarball": "http://registry.npmjs.org/functional/-/functional-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "6db0d860f49408e90a0fcf1a5ee53ea4d24b6fb0", + "tarball": "http://registry.npmjs.org/functional/-/functional-0.0.3.tgz" + } + }, + "keywords": [ + "functional", + "utils" + ], + "url": "http://registry.npmjs.org/functional/" + }, + "functionpool": { + "name": "functionpool", + "description": "Provides a pool of functions that can be used to execute tasks in Node.js.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "jaredhanson", + "email": "jaredhanson@gmail.com" + } + ], + "time": { + "modified": "2011-12-02T09:13:19.027Z", + "created": "2011-12-02T09:13:17.526Z", + "0.1.0": "2011-12-02T09:13:19.027Z" + }, + "author": { + "name": "Jared Hanson", + "email": "jaredhanson@gmail.com", + "url": "http://www.jaredhanson.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jaredhanson/node-functionpool.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/functionpool/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "0b0d46c664b3a34f21ee871d0ee3fb602e626ddd", + "tarball": "http://registry.npmjs.org/functionpool/-/functionpool-0.1.0.tgz" + } + }, + "keywords": [ + "pool", + "queue", + "function", + "thread", + "task" + ], + "url": "http://registry.npmjs.org/functionpool/" + }, + "functions": { + "name": "functions", + "description": "tools for dealing with functions in JavaScript", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "mmalecki", + "email": "maciej.malecki@notimplemented.org" + } + ], + "time": { + "modified": "2011-10-17T16:35:52.073Z", + "created": "2011-10-16T15:48:58.768Z", + "0.0.1": "2011-10-16T15:49:04.364Z", + "0.0.2": "2011-10-16T16:22:14.033Z", + "0.0.4": "2011-10-16T18:33:20.040Z", + "0.0.5": "2011-10-17T16:35:52.073Z" + }, + "author": { + "name": "Maciej Małecki", + "email": "maciej.malecki@notimplemented.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/mmalecki/node-functions.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/functions/0.0.1", + "0.0.2": "http://registry.npmjs.org/functions/0.0.2", + "0.0.4": "http://registry.npmjs.org/functions/0.0.4", + "0.0.5": "http://registry.npmjs.org/functions/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "4b5c9138d2345cac32af6788d6fa8b3ad9e4fab5", + "tarball": "http://registry.npmjs.org/functions/-/functions-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "0f03d5f4d293145ec7710db6b4eec20695a6aec5", + "tarball": "http://registry.npmjs.org/functions/-/functions-0.0.2.tgz" + }, + "0.0.4": { + "shasum": "6701013cb02728c4c050eaeaa4cacc4a1fbc8884", + "tarball": "http://registry.npmjs.org/functions/-/functions-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "391215af4b3649d8d975573a30f9e7f800223c75", + "tarball": "http://registry.npmjs.org/functions/-/functions-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/functions/" + }, + "functools": { + "name": "functools", + "description": "A minimal library of functional operations", + "dist-tags": { + "latest": "1.1.3" + }, + "maintainers": [ + { + "name": "azer", + "email": "azer@kodfabrik.com" + } + ], + "time": { + "modified": "2011-11-21T07:22:02.603Z", + "created": "2011-01-31T09:37:48.726Z", + "1.0.0": "2011-01-31T09:37:49.028Z", + "1.1.0": "2011-07-21T08:56:44.015Z", + "1.1.1": "2011-11-11T11:50:19.444Z", + "1.1.2": "2011-11-14T09:45:59.871Z", + "1.1.3": "2011-11-21T07:22:02.603Z" + }, + "author": { + "name": "Azer Koculu", + "email": "azer@kodfabrik.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/azer/functools.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/functools/1.0.0", + "1.1.0": "http://registry.npmjs.org/functools/1.1.0", + "1.1.1": "http://registry.npmjs.org/functools/1.1.1", + "1.1.2": "http://registry.npmjs.org/functools/1.1.2", + "1.1.3": "http://registry.npmjs.org/functools/1.1.3" + }, + "dist": { + "1.0.0": { + "shasum": "32af3f6bd8acf0cbfcc8921ca2d1326bb624e84c", + "tarball": "http://registry.npmjs.org/functools/-/functools-1.0.0.tgz" + }, + "1.1.0": { + "shasum": "94c27f19115e60803fea830bac1597a9b4031ced", + "tarball": "http://registry.npmjs.org/functools/-/functools-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "6ff8958076530811e3965ed68167e03258e72492", + "tarball": "http://registry.npmjs.org/functools/-/functools-1.1.1.tgz" + }, + "1.1.2": { + "shasum": "498e8359b8698991f3ac09fcdbb310f66e339d83", + "tarball": "http://registry.npmjs.org/functools/-/functools-1.1.2.tgz" + }, + "1.1.3": { + "shasum": "4716b3a7affc6a3bbe30097093740496630296ff", + "tarball": "http://registry.npmjs.org/functools/-/functools-1.1.3.tgz" + } + }, + "keywords": [ + "functional", + "fp" + ], + "url": "http://registry.npmjs.org/functools/" + }, + "funk": { + "name": "funk", + "description": "Asynchronous functions made funky!", + "dist-tags": { + "latest": "1.5.1" + }, + "maintainers": [ + { + "name": "masylum", + "email": "masylum@gmail.com" + } + ], + "author": { + "name": "Pau Ramon", + "email": "masylum@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/masylum/funk.git" + }, + "time": { + "modified": "2011-09-08T18:08:38.753Z", + "created": "2011-01-23T22:16:30.146Z", + "0.0.2": "2011-01-23T22:16:30.146Z", + "1.0.0": "2011-01-23T22:16:30.146Z", + "1.0.1": "2011-01-27T23:47:43.251Z", + "1.5.0": "2011-05-31T11:40:51.380Z", + "1.5.1": "2011-09-08T18:08:38.753Z" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/funk/0.0.2", + "1.0.0": "http://registry.npmjs.org/funk/1.0.0", + "1.0.1": "http://registry.npmjs.org/funk/1.0.1", + "1.5.0": "http://registry.npmjs.org/funk/1.5.0", + "1.5.1": "http://registry.npmjs.org/funk/1.5.1" + }, + "dist": { + "0.0.2": { + "tarball": "http://packages:5984/funk/-/funk-0.0.2.tgz" + }, + "1.0.0": { + "shasum": "094224a5587baba483613304f20676e677d7dc14", + "tarball": "http://registry.npmjs.org/funk/-/funk-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "1f092f18c4ccefc2afa480a72872a2e09a6763dd", + "tarball": "http://registry.npmjs.org/funk/-/funk-1.0.1.tgz" + }, + "1.5.0": { + "shasum": "aeb9ca3b1db8f8cdecc70d6bb7a6c1e308bd46f3", + "tarball": "http://registry.npmjs.org/funk/-/funk-1.5.0.tgz" + }, + "1.5.1": { + "shasum": "e6828dcea134cd087735ea6d0a52bfe6ed395bf3", + "tarball": "http://registry.npmjs.org/funk/-/funk-1.5.1.tgz" + } + }, + "url": "http://registry.npmjs.org/funk/" + }, + "fuse": { + "name": "fuse", + "description": "Command line combiner for fusing mutliple JavaScript files into one", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "smebberson", + "email": "scott@scottmebberson.com" + } + ], + "time": { + "modified": "2011-11-20T12:09:58.345Z", + "created": "2011-11-09T10:19:58.961Z", + "0.0.2": "2011-11-09T11:01:33.271Z", + "0.0.3": "2011-11-11T11:05:15.602Z", + "0.0.4": "2011-11-13T23:22:12.328Z", + "0.0.5": "2011-11-20T12:09:58.345Z" + }, + "author": { + "name": "Scott Mebberson", + "email": "scott@scottmebberson.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/smebberson/fuse.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/fuse/0.0.2", + "0.0.3": "http://registry.npmjs.org/fuse/0.0.3", + "0.0.4": "http://registry.npmjs.org/fuse/0.0.4", + "0.0.5": "http://registry.npmjs.org/fuse/0.0.5" + }, + "dist": { + "0.0.2": { + "shasum": "d11075d1cff936a617fba470249686372693b475", + "tarball": "http://registry.npmjs.org/fuse/-/fuse-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "53ce6103de20334673590870b119709cb1996044", + "tarball": "http://registry.npmjs.org/fuse/-/fuse-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "e85637b1557e6d7957e90a3f6fbf5f30360d2095", + "tarball": "http://registry.npmjs.org/fuse/-/fuse-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "e99390671964a061431e4550d4a0cee4cab41d43", + "tarball": "http://registry.npmjs.org/fuse/-/fuse-0.0.5.tgz" + } + }, + "keywords": [ + "combiner", + "javascript", + "cli", + "parser", + "command", + "packager" + ], + "url": "http://registry.npmjs.org/fuse/" + }, + "fusion": { + "name": "fusion", + "description": "Merge Files into Javascript Namespace", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "nikgraf", + "email": "nik@deck.cc" + } + ], + "time": { + "modified": "2011-03-15T09:11:24.051Z", + "created": "2011-01-18T13:40:34.068Z", + "0.0.1": "2011-01-18T13:40:34.505Z", + "0.0.2": "2011-01-20T01:02:05.832Z", + "0.0.3": "2011-01-20T02:29:06.827Z", + "0.0.4": "2011-01-31T06:05:13.001Z", + "0.0.5": "2011-01-31T12:54:20.877Z", + "0.0.6": "2011-02-16T01:15:23.348Z", + "0.0.7": "2011-02-16T17:39:54.834Z", + "0.0.8": "2011-02-17T11:25:11.649Z", + "0.1.0": "2011-03-15T09:11:24.051Z" + }, + "author": { + "name": "Nik Graf @nikgraf" + }, + "repository": { + "type": "git", + "url": "https://github.com/brunch/fusion.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/fusion/0.0.1", + "0.0.2": "http://registry.npmjs.org/fusion/0.0.2", + "0.0.3": "http://registry.npmjs.org/fusion/0.0.3", + "0.0.4": "http://registry.npmjs.org/fusion/0.0.4", + "0.0.5": "http://registry.npmjs.org/fusion/0.0.5", + "0.0.6": "http://registry.npmjs.org/fusion/0.0.6", + "0.0.7": "http://registry.npmjs.org/fusion/0.0.7", + "0.0.8": "http://registry.npmjs.org/fusion/0.0.8", + "0.1.0": "http://registry.npmjs.org/fusion/0.1.0" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/fusion/-/fusion-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/fusion/-/fusion-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/fusion/-/fusion-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://registry.npmjs.org/fusion/-/fusion-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://registry.npmjs.org/fusion/-/fusion-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "b643c6436226e074c737e7667952cf1d7b080e22", + "tarball": "http://registry.npmjs.org/fusion/-/fusion-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "a12c4d2ed92fcced0bc47636cd4e75b5190fb8f1", + "tarball": "http://registry.npmjs.org/fusion/-/fusion-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "331a111cf18277881f50283bdf2acfe5c4161d18", + "tarball": "http://registry.npmjs.org/fusion/-/fusion-0.0.8.tgz" + }, + "0.1.0": { + "shasum": "178b06d3f90935cba4589c01bad5b8baf77b0bd2", + "tarball": "http://registry.npmjs.org/fusion/-/fusion-0.1.0.tgz" + } + }, + "keywords": [ + "jst", + "templates", + "namespace", + "merge", + "fusion" + ], + "url": "http://registry.npmjs.org/fusion/" + }, + "fusker": { + "name": "fusker", + "description": "Application firewall. Detect, prevent, and fight back against hackers in the lulziest ways possible", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "fractal", + "email": "contact@wearefractal.com" + }, + { + "name": "contra", + "email": "contra@australia.edu" + } + ], + "time": { + "modified": "2011-10-04T03:16:29.655Z", + "created": "2011-07-22T09:48:17.885Z", + "0.0.4": "2011-07-22T09:48:18.325Z", + "0.0.5": "2011-07-22T11:03:11.810Z", + "0.0.6": "2011-07-22T22:32:55.583Z", + "0.0.7": "2011-07-22T23:18:58.448Z", + "0.0.8": "2011-07-23T04:16:25.063Z", + "0.0.9": "2011-07-25T23:38:11.735Z", + "0.1.0": "2011-07-31T12:30:51.453Z", + "0.1.1": "2011-08-01T03:55:23.120Z", + "0.1.2": "2011-08-13T02:57:41.564Z", + "0.1.3": "2011-09-02T13:21:02.754Z", + "0.1.4": "2011-09-02T18:19:32.724Z", + "0.1.5": "2011-09-05T05:36:41.313Z", + "0.1.7": "2011-09-07T22:53:58.073Z", + "0.1.8": "2011-09-07T23:00:53.640Z", + "0.1.9": "2011-09-17T09:09:45.889Z", + "0.2.0": "2011-10-04T03:15:04.356Z" + }, + "author": { + "name": "Contra", + "email": "contra@australia.edu", + "url": "http://wearefractal.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/wearefractal/fusker.git" + }, + "versions": { + "0.0.4": "http://registry.npmjs.org/fusker/0.0.4", + "0.0.5": "http://registry.npmjs.org/fusker/0.0.5", + "0.0.6": "http://registry.npmjs.org/fusker/0.0.6", + "0.0.7": "http://registry.npmjs.org/fusker/0.0.7", + "0.0.8": "http://registry.npmjs.org/fusker/0.0.8", + "0.0.9": "http://registry.npmjs.org/fusker/0.0.9", + "0.1.0": "http://registry.npmjs.org/fusker/0.1.0", + "0.1.1": "http://registry.npmjs.org/fusker/0.1.1", + "0.1.2": "http://registry.npmjs.org/fusker/0.1.2", + "0.1.3": "http://registry.npmjs.org/fusker/0.1.3", + "0.1.4": "http://registry.npmjs.org/fusker/0.1.4", + "0.1.5": "http://registry.npmjs.org/fusker/0.1.5", + "0.1.7": "http://registry.npmjs.org/fusker/0.1.7", + "0.1.8": "http://registry.npmjs.org/fusker/0.1.8", + "0.1.9": "http://registry.npmjs.org/fusker/0.1.9", + "0.2.0": "http://registry.npmjs.org/fusker/0.2.0" + }, + "dist": { + "0.0.4": { + "shasum": "ce3961b74a496209e333d392415df2c39ecb78f4", + "tarball": "http://registry.npmjs.org/fusker/-/fusker-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "6e40f81f5f7ad5d18756212886747d44b9f0a49d", + "tarball": "http://registry.npmjs.org/fusker/-/fusker-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "a6cb1ce9c0ed1414f97c1861a01a538d6ac3289b", + "tarball": "http://registry.npmjs.org/fusker/-/fusker-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "c44fbe6b30e1431f5bd9f0ed6c5f6725fe3b6cf9", + "tarball": "http://registry.npmjs.org/fusker/-/fusker-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "cb3239f2eaa8223051d1b5475eb5472b05f7b7e3", + "tarball": "http://registry.npmjs.org/fusker/-/fusker-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "5e6813f1515c26def555ed114e2e5f0eb176bfa9", + "tarball": "http://registry.npmjs.org/fusker/-/fusker-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "1917af77c39708bbbfd18cf4f7a1906929e60229", + "tarball": "http://registry.npmjs.org/fusker/-/fusker-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "3498771118d75d76daf6769192e24ab0f4663e47", + "tarball": "http://registry.npmjs.org/fusker/-/fusker-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "1140f503c29814d29d26365596bf63afda8db6ef", + "tarball": "http://registry.npmjs.org/fusker/-/fusker-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "c4c795871c24edee48cf430758a4351639513485", + "tarball": "http://registry.npmjs.org/fusker/-/fusker-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "decf0dff9c29634c12994901228dff7b3bc93b1b", + "tarball": "http://registry.npmjs.org/fusker/-/fusker-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "62e0e1e2a7a0845970472468ada3b7189cbdaa34", + "tarball": "http://registry.npmjs.org/fusker/-/fusker-0.1.5.tgz" + }, + "0.1.7": { + "shasum": "f76931d779d12a4e71d31a391e8de6c94bc7f785", + "tarball": "http://registry.npmjs.org/fusker/-/fusker-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "f0a96c0d663dc5ae78508e5a1e30925b92439624", + "tarball": "http://registry.npmjs.org/fusker/-/fusker-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "dc871db00b4241b2d78f419f7a8e13493902466c", + "tarball": "http://registry.npmjs.org/fusker/-/fusker-0.1.9.tgz" + }, + "0.2.0": { + "shasum": "ba0b215ed9b56341dae766e94071bd356d89f135", + "tarball": "http://registry.npmjs.org/fusker/-/fusker-0.2.0.tgz" + } + }, + "keywords": [ + "fusker", + "hack", + "protect", + "csrf", + "lfi", + "xss", + "sqli", + "injection", + "attack", + "blacklist", + "express", + "socket", + "security", + "firewall" + ], + "url": "http://registry.npmjs.org/fusker/" + }, + "future": { + "name": "future", + "description": "The promise / subscribe / deferred module of FuturesJS (Ender.JS and Node.JS)", + "dist-tags": { + "latest": "2.1.1" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-07-13T20:13:37.233Z", + "created": "2011-07-13T20:13:36.863Z", + "2.1.1": "2011-07-13T20:13:37.233Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com", + "url": "http://coolaj86.info" + }, + "repository": { + "type": "git", + "url": "git://github.com/coolaj86/futures.git" + }, + "versions": { + "2.1.1": "http://registry.npmjs.org/future/2.1.1" + }, + "dist": { + "2.1.1": { + "shasum": "0e395c1dd26925d72c4f57b079269a0457316eff", + "tarball": "http://registry.npmjs.org/future/-/future-2.1.1.tgz" + } + }, + "keywords": [ + "flow-control", + "async", + "asynchronous", + "futures", + "promises", + "deferreds", + "util", + "browser" + ], + "url": "http://registry.npmjs.org/future/" + }, + "futures": { + "name": "futures", + "description": "An asynchronous flow-control library for JavaScript (Browser and Node.js)", + "dist-tags": { + "latest": "2.3.1" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com", + "url": "http://coolaj86.info" + }, + "time": { + "modified": "2011-08-19T03:43:37.577Z", + "created": "2011-01-09T22:35:45.341Z", + "0.9.1": "2011-01-09T22:35:45.341Z", + "0.9.7": "2011-01-09T22:35:45.341Z", + "1.9.1": "2011-01-09T22:35:45.341Z", + "1.9.2": "2011-02-03T22:18:37.893Z", + "1.9.4": "2011-02-27T19:56:27.255Z", + "1.0.0": "2011-03-29T20:12:30.279Z", + "2.0.0": "2011-03-29T20:20:15.212Z", + "2.0.1": "2011-04-03T17:37:10.993Z", + "2.0.2": "2011-04-14T03:35:22.862Z", + "2.0.3": "2011-04-25T23:04:00.816Z", + "2.1.0": "2011-05-25T23:03:27.109Z", + "2.1.1": "2011-07-13T20:45:07.842Z", + "2.2.0": "2011-07-13T22:03:02.557Z", + "2.3.0": "2011-07-15T17:20:27.947Z", + "2.3.1": "2011-08-19T03:43:37.577Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/coolaj86/futures.git" + }, + "versions": { + "0.9.1": "http://registry.npmjs.org/futures/0.9.1", + "0.9.7": "http://registry.npmjs.org/futures/0.9.7", + "1.9.2": "http://registry.npmjs.org/futures/1.9.2", + "1.9.4": "http://registry.npmjs.org/futures/1.9.4", + "2.0.0": "http://registry.npmjs.org/futures/2.0.0", + "2.0.1": "http://registry.npmjs.org/futures/2.0.1", + "2.0.2": "http://registry.npmjs.org/futures/2.0.2", + "2.0.3": "http://registry.npmjs.org/futures/2.0.3", + "2.1.0": "http://registry.npmjs.org/futures/2.1.0", + "2.2.0": "http://registry.npmjs.org/futures/2.2.0", + "2.3.0": "http://registry.npmjs.org/futures/2.3.0", + "2.3.1": "http://registry.npmjs.org/futures/2.3.1" + }, + "dist": { + "0.9.1": { + "tarball": "http://registry.npmjs.org/futures/-/futures-0.9.1.tgz" + }, + "0.9.7": { + "tarball": "http://registry.npmjs.org/futures/-/futures-0.9.7.tgz" + }, + "1.9.2": { + "tarball": "http://registry.npmjs.org/futures/-/futures-1.9.2.tgz" + }, + "1.9.4": { + "shasum": "c685ff1dfa57060cf466f461c0227d3186ccf21d", + "tarball": "http://registry.npmjs.org/futures/-/futures-1.9.4.tgz" + }, + "2.0.0": { + "shasum": "e8310d3fe7f3c88a52054e7b8056811857919a9f", + "tarball": "http://registry.npmjs.org/futures/-/futures-2.0.0.tgz" + }, + "2.0.1": { + "shasum": "5312f939298b1b3565d076c1d2d748c888c65cb3", + "tarball": "http://registry.npmjs.org/futures/-/futures-2.0.1.tgz" + }, + "2.0.2": { + "shasum": "367e373fde9253a72091e9dd04a3d5f274b029f1", + "tarball": "http://registry.npmjs.org/futures/-/futures-2.0.2.tgz" + }, + "2.0.3": { + "shasum": "52f18681b2d3d53148c39d0d083f7ca555a11432", + "tarball": "http://registry.npmjs.org/futures/-/futures-2.0.3.tgz" + }, + "2.1.0": { + "shasum": "65530f9ed48ed6a7a76d6d52611bf9f6b0465b14", + "tarball": "http://registry.npmjs.org/futures/-/futures-2.1.0.tgz" + }, + "2.2.0": { + "shasum": "852a78ea17d34dee403ff7600af1c2ff57242626", + "tarball": "http://registry.npmjs.org/futures/-/futures-2.2.0.tgz" + }, + "2.3.0": { + "shasum": "1e0a7eb72877c983c57e56f5a1d45fbe1acfc863", + "tarball": "http://registry.npmjs.org/futures/-/futures-2.3.0.tgz" + }, + "2.3.1": { + "shasum": "5646d394cda65630e0bade0d7b4d4c68106ac1d0", + "tarball": "http://registry.npmjs.org/futures/-/futures-2.3.1.tgz" + } + }, + "keywords": [ + "flow-control", + "sequence", + "chain", + "join", + "async", + "asynchronous", + "futures", + "promises", + "deferreds", + "subscriptions", + "chaining", + "util", + "server", + "client", + "browser" + ], + "url": "http://registry.npmjs.org/futures/" + }, + "fuzzy_file_finder": { + "name": "fuzzy_file_finder", + "description": "A JavaScript/node.js implementation of Jamis Buck's fuzzy_file_finder", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "puls", + "email": "jim@nondifferentiable.com" + } + ], + "author": { + "name": "Jim Puls", + "email": "jim@nondifferentiable.com", + "url": "http://nondifferentiable.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/puls/fuzzy_file_finder.js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/fuzzy_file_finder/0.1.0", + "0.2.0": "http://registry.npmjs.org/fuzzy_file_finder/0.2.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/fuzzy_file_finder/-/fuzzy_file_finder-0.1.0.tgz" + }, + "0.2.0": { + "tarball": "http://packages:5984/fuzzy_file_finder/-/fuzzy_file_finder-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/fuzzy_file_finder/" + }, + "fuzzylogic": { + "name": "fuzzylogic", + "description": "A fuzzy logic module for node.js", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "sebs", + "email": "sschuermann303@yahoo.de" + } + ], + "author": { + "name": "Sebastian Schürmann", + "email": "sschuermann303@yahoo.de" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/fuzzylogic/0.0.1", + "0.0.3": "http://registry.npmjs.org/fuzzylogic/0.0.3" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/fuzzylogic/-/fuzzylogic-0.0.1.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/fuzzylogic/-/fuzzylogic-0.0.3.tgz" + } + }, + "keywords": [ + "fuzzylogic" + ], + "url": "http://registry.npmjs.org/fuzzylogic/" + }, + "fxs": { + "name": "fxs", + "description": "A cross domain policy file server for Adobe Flash clients.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "muji", + "email": "freeformsystems@gmail.com" + } + ], + "time": { + "modified": "2011-03-26T20:07:21.922Z", + "created": "2011-03-26T20:07:21.556Z", + "0.1.0": "2011-03-26T20:07:21.922Z" + }, + "author": { + "name": "muji", + "email": "freeformsystems@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/freeformsystems/node-fxs.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/fxs/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "db3edca2276afdc2bc289cbe981b1c0421875b8f", + "tarball": "http://registry.npmjs.org/fxs/-/fxs-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/fxs/" + }, + "g": { + "name": "g", + "description": "Globalizes module functions", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "sleeplessinc", + "email": "joe@sleepless.com" + } + ], + "time": { + "modified": "2011-09-17T04:28:09.207Z", + "created": "2011-09-17T04:28:07.973Z", + "1.0.0": "2011-09-17T04:28:09.207Z" + }, + "author": { + "name": "Joe Hitchens", + "email": "joe@sleepless.com", + "url": "sleepless.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/sleeplessinc/g.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/g/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "97f0d6eee6cb6e70df721c48f7b293d396420576", + "tarball": "http://registry.npmjs.org/g/-/g-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/g/" + }, + "g.raphael": { + "name": "g.raphael", + "description": "An npm package of g.raphael", + "dist-tags": { + "latest": "1.4.7-npm-1.0.1" + }, + "maintainers": [ + { + "name": "marcuswestin", + "email": "narcvs@gmail.com" + } + ], + "time": { + "modified": "2011-04-19T19:53:57.583Z", + "created": "2011-04-19T19:50:46.182Z", + "1.4.7-npm-1.0.0": "2011-04-19T19:51:26.924Z", + "1.4.7-npm-1.0.1": "2011-04-19T19:53:57.583Z" + }, + "author": { + "name": "Dmitry Baranovskiy" + }, + "repository": { + "type": "git", + "url": "git://github.com/marcuswestin/raphael.git" + }, + "versions": { + "1.4.7-npm-1.0.0": "http://registry.npmjs.org/g.raphael/1.4.7-npm-1.0.0", + "1.4.7-npm-1.0.1": "http://registry.npmjs.org/g.raphael/1.4.7-npm-1.0.1" + }, + "dist": { + "1.4.7-npm-1.0.0": { + "shasum": "476c472a2ee777ef810e3bc915fdbfb9e36ab53c", + "tarball": "http://registry.npmjs.org/g.raphael/-/g.raphael-1.4.7-npm-1.0.0.tgz" + }, + "1.4.7-npm-1.0.1": { + "shasum": "dda7b4038be60652ef602dc1af067ea20ed7bd1f", + "tarball": "http://registry.npmjs.org/g.raphael/-/g.raphael-1.4.7-npm-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/g.raphael/" + }, + "ga": { + "name": "ga", + "description": "server side google analytics", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "jga", + "email": "me@jga.me" + } + ], + "time": { + "modified": "2011-09-08T14:58:09.449Z", + "created": "2011-09-08T14:58:08.959Z", + "0.0.1": "2011-09-08T14:58:09.449Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/jgallen23/node-ga.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ga/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "a8c5cd5efb4f2293fe8b80e52bae5b82357170ac", + "tarball": "http://registry.npmjs.org/ga/-/ga-0.0.1.tgz" + } + }, + "keywords": [ + "google analytics" + ], + "url": "http://registry.npmjs.org/ga/" + }, + "galletita": { + "name": "galletita", + "description": "Cookie helper functions", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "ianjorgensen", + "email": "jorgensen.ian@gmail.com" + } + ], + "time": { + "modified": "2011-07-11T14:25:24.828Z", + "created": "2011-07-11T14:25:24.077Z", + "0.1.1": "2011-07-11T14:25:24.828Z" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/galletita/0.1.1" + }, + "dist": { + "0.1.1": { + "shasum": "703b5c8950af3e42e824f0ef6b2c67fb9d870390", + "tarball": "http://registry.npmjs.org/galletita/-/galletita-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/galletita/" + }, + "game": { + "name": "game", + "description": "A simple adventure game", + "dist-tags": { + "latest": "1.0.2" + }, + "maintainers": [ + { + "name": "sleeplessinc", + "email": "joe@sleepless.com" + } + ], + "time": { + "modified": "2011-10-31T22:11:34.832Z", + "created": "2011-09-17T03:45:01.948Z", + "1.0.0": "2011-09-17T03:45:03.221Z", + "1.0.1": "2011-10-06T20:12:29.458Z", + "1.0.2": "2011-10-31T22:11:34.832Z" + }, + "author": { + "name": "Joe Hitchens", + "email": "joe@sleepless.com", + "url": "sleepless.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/sleeplessinc/game.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/game/1.0.0", + "1.0.1": "http://registry.npmjs.org/game/1.0.1", + "1.0.2": "http://registry.npmjs.org/game/1.0.2" + }, + "dist": { + "1.0.0": { + "shasum": "29b27834015ddfa2eb47932c0b549cd947ce7abc", + "tarball": "http://registry.npmjs.org/game/-/game-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "60d752d4594501bd8c433c604a7d33fe7c174f89", + "tarball": "http://registry.npmjs.org/game/-/game-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "fadce901f204232209fa3ba571149b9b92e75d56", + "tarball": "http://registry.npmjs.org/game/-/game-1.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/game/" + }, + "gamina": { + "name": "gamina", + "description": "Composition architecture, cross platform, targeting mobile first, for node, javascript (w/ actionscript fall back) to help complete projects", + "dist-tags": { + "latest": "0.3.10" + }, + "maintainers": [ + { + "name": "puppetmaster3", + "email": "vic.cvc@gmx.com" + } + ], + "time": { + "modified": "2011-09-09T02:57:45.488Z", + "created": "2011-09-04T01:05:16.019Z", + "0.2.92": "2011-09-04T01:05:16.559Z", + "0.3.00": "2011-09-04T02:52:20.472Z", + "0.3.01": "2011-09-04T23:26:15.226Z", + "0.3.02": "2011-09-06T03:24:04.978Z", + "0.3.03": "2011-09-06T04:58:54.569Z", + "0.3.05": "2011-09-08T03:25:32.491Z", + "0.3.10": "2011-09-09T02:57:45.488Z" + }, + "versions": { + "0.2.92": "http://registry.npmjs.org/gamina/0.2.92", + "0.3.00": "http://registry.npmjs.org/gamina/0.3.00", + "0.3.01": "http://registry.npmjs.org/gamina/0.3.01", + "0.3.02": "http://registry.npmjs.org/gamina/0.3.02", + "0.3.03": "http://registry.npmjs.org/gamina/0.3.03", + "0.3.05": "http://registry.npmjs.org/gamina/0.3.05", + "0.3.10": "http://registry.npmjs.org/gamina/0.3.10" + }, + "dist": { + "0.2.92": { + "shasum": "7c9b2652d9b72f9eda8532438f0e4736ec3321cb", + "tarball": "http://registry.npmjs.org/gamina/-/gamina-0.2.92.tgz" + }, + "0.3.00": { + "shasum": "386828b6cddf05c3c362894cead22af69aeaf77b", + "tarball": "http://registry.npmjs.org/gamina/-/gamina-0.3.00.tgz" + }, + "0.3.01": { + "shasum": "c112f883da65a4b0f75ac12bc6fe28525caa8a11", + "tarball": "http://registry.npmjs.org/gamina/-/gamina-0.3.01.tgz" + }, + "0.3.02": { + "shasum": "d6309c8c577db7f2281a1868367cb3f6adc276d3", + "tarball": "http://registry.npmjs.org/gamina/-/gamina-0.3.02.tgz" + }, + "0.3.03": { + "shasum": "1a1b4ea14d9b2b56af8ea9ebf0a8c7746e2790ff", + "tarball": "http://registry.npmjs.org/gamina/-/gamina-0.3.03.tgz" + }, + "0.3.05": { + "shasum": "1c1f7b6c6bf8b51a3044752e28d41070e7598b1d", + "tarball": "http://registry.npmjs.org/gamina/-/gamina-0.3.05.tgz" + }, + "0.3.10": { + "shasum": "a28985ed26fd6dc7fe76e320955dff601e64921d", + "tarball": "http://registry.npmjs.org/gamina/-/gamina-0.3.10.tgz" + } + }, + "keywords": [ + "mobile", + "cross-platform", + "composition", + "ios", + "android", + "mobile", + "actionscript", + "websockets" + ], + "url": "http://registry.npmjs.org/gamina/" + }, + "gang-bang": { + "name": "gang-bang", + "description": "An execution flow-control utility.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "alexkwolfe", + "email": "alexkwolfe@gmail.com" + } + ], + "author": { + "name": "Alex Wolfe", + "email": "alexkwolfe@gmail.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/alexkwolfe/gang-bang.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/gang-bang/0.1.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/gang-bang/-/gang-bang-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/gang-bang/" + }, + "gapserver": { + "name": "gapserver", + "description": "a server for building out phonegap apps", + "dist-tags": { + "latest": "1.1.3" + }, + "maintainers": [ + { + "name": "jga", + "email": "me@jga.me" + } + ], + "time": { + "modified": "2011-10-22T19:26:57.902Z", + "created": "2011-06-04T21:19:34.243Z", + "1.0.1": "2011-06-04T21:19:34.740Z", + "1.0.2": "2011-06-22T15:03:12.338Z", + "1.1.0": "2011-06-30T14:37:03.640Z", + "1.1.1": "2011-08-22T00:50:08.704Z", + "1.1.2": "2011-10-22T17:08:14.657Z", + "1.1.3": "2011-10-22T19:26:57.902Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/jgallen23/gapserver.git" + }, + "author": { + "name": "Greg Allen", + "email": "@jgaui", + "url": "http://jga.me" + }, + "versions": { + "1.0.1": "http://registry.npmjs.org/gapserver/1.0.1", + "1.0.2": "http://registry.npmjs.org/gapserver/1.0.2", + "1.1.0": "http://registry.npmjs.org/gapserver/1.1.0", + "1.1.1": "http://registry.npmjs.org/gapserver/1.1.1", + "1.1.2": "http://registry.npmjs.org/gapserver/1.1.2", + "1.1.3": "http://registry.npmjs.org/gapserver/1.1.3" + }, + "dist": { + "1.0.1": { + "shasum": "8d65477d70ed359460c7cb82d3b21adce076cbc8", + "tarball": "http://registry.npmjs.org/gapserver/-/gapserver-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "f3ea8f0833a8bd8529d8ce70d2f9a8997c40fcf8", + "tarball": "http://registry.npmjs.org/gapserver/-/gapserver-1.0.2.tgz" + }, + "1.1.0": { + "shasum": "2bbbb4eac547c7790d23c48e7b01dd71625bb74e", + "tarball": "http://registry.npmjs.org/gapserver/-/gapserver-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "2a1b36ef9cb8826f27b1aff189b8413cf8be3549", + "tarball": "http://registry.npmjs.org/gapserver/-/gapserver-1.1.1.tgz" + }, + "1.1.2": { + "shasum": "119a9d371b20150b9d4bf2045f06190f9e24792b", + "tarball": "http://registry.npmjs.org/gapserver/-/gapserver-1.1.2.tgz" + }, + "1.1.3": { + "shasum": "38e115d9c484516cae08ad9cd85f6b1db44a6270", + "tarball": "http://registry.npmjs.org/gapserver/-/gapserver-1.1.3.tgz" + } + }, + "keywords": [ + "phonegap" + ], + "url": "http://registry.npmjs.org/gapserver/" + }, + "garbage": { + "name": "garbage", + "description": "generate garbage json data", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-08-21T12:04:21.766Z", + "created": "2011-08-21T12:04:20.147Z", + "0.0.0": "2011-08-21T12:04:21.766Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-garbage.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/garbage/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "599bd878653f73f60f67bcc2cb0a512fa433f458", + "tarball": "http://registry.npmjs.org/garbage/-/garbage-0.0.0.tgz" + } + }, + "keywords": [ + "garbage", + "dummy", + "random", + "data" + ], + "url": "http://registry.npmjs.org/garbage/" + }, + "gaseous": { + "name": "gaseous", + "description": "exposes nodejs module apis to the browser", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "brentlintner", + "email": "brent.lintner@gmail.com" + } + ], + "time": { + "modified": "2011-02-16T03:51:09.274Z", + "created": "2011-02-16T03:51:09.107Z", + "0.1.0": "2011-02-16T03:51:09.274Z" + }, + "author": { + "name": "Brent Lintner", + "email": "brent.lintner@gmail.com", + "url": "http://github.com/brentlintner" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/gaseous/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "1ccbded40eedc304c94ad51de7c14bc18d9b62c6", + "tarball": "http://registry.npmjs.org/gaseous/-/gaseous-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/gaseous/" + }, + "gatekeeper": { + "name": "gatekeeper", + "description": "multi purpose data validation library", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "V1", + "email": "info@3rd-Eden.com" + } + ], + "time": { + "modified": "2011-11-11T20:40:48.824Z", + "created": "2011-11-01T18:57:26.338Z", + "0.0.1": "2011-11-01T18:57:29.861Z", + "0.0.2": "2011-11-11T20:40:48.824Z" + }, + "author": { + "name": "Arnout Kazemier", + "email": "info@3rd-Eden.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/observing/gatekeeper.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/gatekeeper/0.0.1", + "0.0.2": "http://registry.npmjs.org/gatekeeper/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "f019f63b385c4d89417d855c514a0d5b0748199a", + "tarball": "http://registry.npmjs.org/gatekeeper/-/gatekeeper-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f3e4cca3f4c3517bbeb45cbfdb1196dad8060d66", + "tarball": "http://registry.npmjs.org/gatekeeper/-/gatekeeper-0.0.2.tgz" + } + }, + "keywords": [ + "schema", + "validation", + "json", + "validate", + "data" + ], + "url": "http://registry.npmjs.org/gatekeeper/" + }, + "gaudium": { + "name": "gaudium", + "description": "Web Server and NodeJs Runner", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "nbjayme", + "email": "nbjayme@gmail.com" + } + ], + "time": { + "modified": "2011-09-13T13:05:15.664Z", + "created": "2011-09-02T04:30:03.050Z", + "0.1.0": "2011-09-02T04:50:56.301Z", + "0.1.1": "2011-09-02T10:14:51.186Z", + "0.1.2": "2011-09-04T06:49:21.530Z", + "0.1.3": "2011-09-06T04:19:15.944Z", + "0.2.0": "2011-09-13T13:05:15.664Z" + }, + "author": { + "name": "Nathaniel Jayme" + }, + "repository": { + "type": "bazaar", + "url": "lp:~nbjayme-o/gaudium/trunk" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/gaudium/0.1.0", + "0.1.1": "http://registry.npmjs.org/gaudium/0.1.1", + "0.1.2": "http://registry.npmjs.org/gaudium/0.1.2", + "0.1.3": "http://registry.npmjs.org/gaudium/0.1.3", + "0.2.0": "http://registry.npmjs.org/gaudium/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "4542721c88c2197ca9a33c8d85cb2a4ef01a747d", + "tarball": "http://registry.npmjs.org/gaudium/-/gaudium-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "13bc238e0ef5fe8abea5a3a5fded0355862e1aa8", + "tarball": "http://registry.npmjs.org/gaudium/-/gaudium-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "f60e5c901e2990df215ca4b36f38b8b39f3a4e04", + "tarball": "http://registry.npmjs.org/gaudium/-/gaudium-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "80cb6995069662fe2f059bbc060061ca330658cf", + "tarball": "http://registry.npmjs.org/gaudium/-/gaudium-0.1.3.tgz" + }, + "0.2.0": { + "shasum": "c4729a80ce98ed7d2a41db1bc261d1a9b9e74b59", + "tarball": "http://registry.npmjs.org/gaudium/-/gaudium-0.2.0.tgz" + } + }, + "keywords": [ + "webserver", + "httpd", + "nodejs", + "http" + ], + "url": "http://registry.npmjs.org/gaudium/" + }, + "gauss": { + "name": "gauss", + "description": "JavaScript statistics and analytics library", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "wayoutmind", + "email": "fgaloso@stackd.com" + } + ], + "time": { + "modified": "2011-10-12T17:47:12.933Z", + "created": "2011-05-25T18:35:18.552Z", + "0.1.0": "2011-05-25T18:35:18.870Z", + "0.2.0": "2011-10-10T22:57:00.840Z", + "0.2.1": "2011-10-12T17:47:12.933Z" + }, + "author": { + "name": "Fredrick Galoso", + "email": "fgaloso@stackd.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/stackd/gauss.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/gauss/0.1.0", + "0.2.0": "http://registry.npmjs.org/gauss/0.2.0", + "0.2.1": "http://registry.npmjs.org/gauss/0.2.1" + }, + "dist": { + "0.1.0": { + "shasum": "2d591f865e03d6e59ea9c3b0435a11947133751a", + "tarball": "http://registry.npmjs.org/gauss/-/gauss-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "78b09c98b900cf17e124c08b1162b845a10875e0", + "tarball": "http://registry.npmjs.org/gauss/-/gauss-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "feee02ad6a1c3b02c78e6c34331717c681b02d14", + "tarball": "http://registry.npmjs.org/gauss/-/gauss-0.2.1.tgz" + } + }, + "url": "http://registry.npmjs.org/gauss/" + }, + "gbgcity": { + "name": "gbgcity", + "description": "Gothenburg City Webservice API wrapper for Node.js", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "oskarhagberg", + "email": "oskar.hagberg@gmail.com" + } + ], + "time": { + "modified": "2011-10-07T12:47:06.692Z", + "created": "2011-09-23T22:45:01.746Z", + "0.1.0": "2011-09-23T22:45:02.349Z", + "0.1.1": "2011-09-26T08:21:22.006Z", + "0.1.2": "2011-10-07T12:47:06.692Z" + }, + "author": { + "name": "Oskar Hagberg", + "url": "http://oskarhagberg.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/oskarhagberg/gbgcity.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/gbgcity/0.1.0", + "0.1.1": "http://registry.npmjs.org/gbgcity/0.1.1", + "0.1.2": "http://registry.npmjs.org/gbgcity/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "ca4464f6750e89646de3a8905b8deebfa81e6226", + "tarball": "http://registry.npmjs.org/gbgcity/-/gbgcity-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "698a61c64b9b98951dd43206c018d7fa07d12cd7", + "tarball": "http://registry.npmjs.org/gbgcity/-/gbgcity-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "fb952d0e4765a1db345b02722843ef974dbc0f84", + "tarball": "http://registry.npmjs.org/gbgcity/-/gbgcity-0.1.2.tgz" + } + }, + "keywords": [ + "gothenburg", + "gbg", + "gbgcity" + ], + "url": "http://registry.npmjs.org/gbgcity/" + }, + "gcalfilter": { + "name": "gcalfilter", + "description": "This filters the private ICS feed from Google Calendar based on extendedProperties", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "jsjohnst", + "email": "npm@jeremyjohnstone.com" + } + ], + "time": { + "modified": "2011-10-20T22:42:48.521Z", + "created": "2011-10-20T22:42:48.074Z", + "0.0.1": "2011-10-20T22:42:48.521Z" + }, + "author": { + "name": "Jeremy Johnstone", + "email": "npm-node-vcal@jeremyjohnstone.com", + "url": "jeremyjohnstone.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/jsjohnst/node-gcalfilter.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/gcalfilter/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "96996424be75e48a954b34df54575d6de384e74b", + "tarball": "http://registry.npmjs.org/gcalfilter/-/gcalfilter-0.0.1.tgz" + } + }, + "keywords": [ + "vcal", + "ics", + "calendar", + "ical", + "gcal", + "google" + ], + "url": "http://registry.npmjs.org/gcalfilter/" + }, + "gcli": { + "name": "gcli", + "description": "Command line component for Skywriter/Ace/Cloud9/etc", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "joewalker", + "email": "joe@getahead.org" + } + ], + "time": { + "modified": "2011-04-27T19:31:43.281Z", + "created": "2011-04-27T19:31:43.031Z", + "0.1.1": "2011-04-27T19:31:43.281Z" + }, + "author": { + "name": "Joe Walker", + "email": "jwalker@mozilla.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/joewalker/gcli.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/gcli/0.1.1" + }, + "dist": { + "0.1.1": { + "tarball": "http://registry.npmjs.org/gcli/-/gcli@0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/gcli/" + }, + "gcw2html": { + "name": "gcw2html", + "description": "Convert Google Code wiki markup to HTML using wikiwym", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "reidab", + "email": "mail@reidbeels.com" + } + ], + "time": { + "modified": "2011-08-04T05:15:34.825Z", + "created": "2011-08-04T05:15:32.146Z", + "0.1.0": "2011-08-04T05:15:34.825Z" + }, + "author": { + "name": "Reid Beels", + "email": "mail@reidbeels.com", + "url": "http://reidbeels.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/reidab/gcw2html.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/gcw2html/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "a656c49c99cf55522ea122cd5cea263824a6fb8f", + "tarball": "http://registry.npmjs.org/gcw2html/-/gcw2html-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/gcw2html/" + }, + "gd": { + "name": "gd", + "description": "Node.js bindings for gd graphics library", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "linus", + "email": "linus@hanssonlarsson.se" + } + ], + "time": { + "modified": "2011-05-07T14:27:33.276Z", + "created": "2011-05-07T14:27:32.571Z", + "0.1.0": "2011-05-07T14:27:33.276Z" + }, + "author": { + "name": "taggon", + "email": "gonom9@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/hanssonlarsson/node-gd.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/gd/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "44634d4b2e9b3198842a9174f2a264893c1854c2", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.8-linux-2.6.38-8-generic": { + "shasum": "b4f9d5646bbe03b0779764c1bbf6317e967a976b", + "tarball": "http://registry.npmjs.org/gd/-/gd-0.1.0-0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.8-linux-2.6.38-8-generic.tgz" + } + }, + "tarball": "http://registry.npmjs.org/gd/-/gd-0.1.0.tgz" + } + }, + "keywords": [ + "graphics" + ], + "url": "http://registry.npmjs.org/gd/" + }, + "gdata": { + "name": "gdata", + "description": "A Google Data API client for node.js. Only the latest release (version 3) of the GData protocol supported.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "neyric", + "email": "eric.abouaf@gmail.com" + } + ], + "time": { + "modified": "2011-02-25T23:58:59.829Z", + "created": "2011-02-25T23:58:59.329Z", + "0.1.0": "2011-02-25T23:58:59.829Z" + }, + "author": { + "name": "Amir Malik" + }, + "repository": { + "type": "git", + "url": "git://github.com/ammmir/node-gdata.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/gdata/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "c891b6ecebca160b9b14fc3238304cb5eae8ff9c", + "tarball": "http://registry.npmjs.org/gdata/-/gdata-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/gdata/" + }, + "gdata-js": { + "name": "gdata-js", + "description": "Simple OAuth 2.0 GData API client", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "smurthas", + "email": "simon@murtha-smith.com" + } + ], + "time": { + "modified": "2011-10-11T15:53:06.832Z", + "created": "2011-06-10T01:19:30.163Z", + "0.0.0": "2011-06-10T01:19:30.700Z", + "0.0.1": "2011-06-10T16:59:18.623Z", + "0.0.2": "2011-07-14T00:21:55.531Z", + "0.0.3": "2011-07-21T23:21:16.158Z", + "0.0.4": "2011-07-26T01:09:52.024Z", + "0.0.5": "2011-08-31T00:39:04.708Z", + "0.0.6": "2011-09-02T18:14:31.475Z", + "0.1.0": "2011-09-06T18:44:19.269Z", + "0.1.1": "2011-10-11T15:53:06.832Z" + }, + "author": { + "name": "Simon Murtha-Smith", + "email": "simon@murtha-smith.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/smurthas/gdata-js.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/gdata-js/0.0.0", + "0.0.1": "http://registry.npmjs.org/gdata-js/0.0.1", + "0.0.2": "http://registry.npmjs.org/gdata-js/0.0.2", + "0.0.3": "http://registry.npmjs.org/gdata-js/0.0.3", + "0.0.4": "http://registry.npmjs.org/gdata-js/0.0.4", + "0.0.5": "http://registry.npmjs.org/gdata-js/0.0.5", + "0.0.6": "http://registry.npmjs.org/gdata-js/0.0.6", + "0.1.0": "http://registry.npmjs.org/gdata-js/0.1.0", + "0.1.1": "http://registry.npmjs.org/gdata-js/0.1.1" + }, + "dist": { + "0.0.0": { + "shasum": "3a66935c1fe16c2961f24ac64163372edce102bb", + "tarball": "http://registry.npmjs.org/gdata-js/-/gdata-js-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "f2f01e10bfda9c25a87a748ba9490d7acead0d47", + "tarball": "http://registry.npmjs.org/gdata-js/-/gdata-js-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "e704d63e37c094dc309b62e4211e3055b46c474c", + "tarball": "http://registry.npmjs.org/gdata-js/-/gdata-js-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "1f088fe1b1bccb06ecc663e9e1b5ed39f1fd2d5e", + "tarball": "http://registry.npmjs.org/gdata-js/-/gdata-js-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "4d1268466139738ba76d94e97817426b3bdf4755", + "tarball": "http://registry.npmjs.org/gdata-js/-/gdata-js-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "d1f052143a1d364d2b1758620942f3d4b6b094be", + "tarball": "http://registry.npmjs.org/gdata-js/-/gdata-js-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "992423465b065cbd8ce2381bb0968457e10b0092", + "tarball": "http://registry.npmjs.org/gdata-js/-/gdata-js-0.0.6.tgz" + }, + "0.1.0": { + "shasum": "816578b9a9c0ce83fb356abad9cb11ce44b838f9", + "tarball": "http://registry.npmjs.org/gdata-js/-/gdata-js-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "7e914ded4413c319ea8ddf4f0ce57df6dd0de086", + "tarball": "http://registry.npmjs.org/gdata-js/-/gdata-js-0.1.1.tgz" + } + }, + "keywords": [ + "google", + "gdata" + ], + "url": "http://registry.npmjs.org/gdata-js/" + }, + "gearman": { + "name": "gearman", + "description": "Client library for Gearman", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "gearmanhq", + "email": "gearman@gearmanhq.com" + }, + { + "name": "smith", + "email": "nlloyds@gmail.com" + } + ], + "time": { + "modified": "2011-05-03T02:33:53.273Z", + "created": "2011-04-12T18:32:07.140Z", + "0.1.0": "2011-04-12T18:32:07.374Z", + "0.2.0": "2011-04-15T17:07:35.773Z", + "0.3.0": "2011-05-03T02:33:53.273Z" + }, + "author": { + "name": "Nathan L Smith", + "email": "gearman@gearmanhq.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/cramerdev/gearman-node.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/gearman/0.1.0", + "0.2.0": "http://registry.npmjs.org/gearman/0.2.0", + "0.3.0": "http://registry.npmjs.org/gearman/0.3.0" + }, + "dist": { + "0.1.0": { + "shasum": "ec14eb04e208df6f3d596b8f22f5aa0b841d1aa5", + "tarball": "http://registry.npmjs.org/gearman/-/gearman-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "01703840741bfa624b837d370fe5b968cbdf5f17", + "tarball": "http://registry.npmjs.org/gearman/-/gearman-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "9a6dbc2ce0684515d5bfea31cc740bcae945abee", + "tarball": "http://registry.npmjs.org/gearman/-/gearman-0.3.0.tgz" + } + }, + "keywords": [ + "gearman", + "job", + "worker", + "background" + ], + "url": "http://registry.npmjs.org/gearman/" + }, + "gearnode": { + "name": "gearnode", + "description": "Gearman client/worker module for Node.JS", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "andris", + "email": "andris@node.ee" + } + ], + "time": { + "modified": "2011-06-26T19:20:05.905Z", + "created": "2011-06-24T13:49:26.294Z", + "0.1.0": "2011-06-24T13:49:27.163Z", + "0.1.1": "2011-06-25T18:48:22.413Z", + "0.1.2": "2011-06-26T19:20:05.905Z" + }, + "author": { + "name": "Andris Reinman" + }, + "repository": { + "type": "git", + "url": "git://github.com/andris9/nodemailer.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/gearnode/0.1.0", + "0.1.1": "http://registry.npmjs.org/gearnode/0.1.1", + "0.1.2": "http://registry.npmjs.org/gearnode/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "5dc67b2fa6d3663817b29a1a076883b232c29f0f", + "tarball": "http://registry.npmjs.org/gearnode/-/gearnode-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "56e681d4101927f95348c2d4635a180759aa1991", + "tarball": "http://registry.npmjs.org/gearnode/-/gearnode-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "eebc7a7e95483bb40fb0944a119b0f674e93c288", + "tarball": "http://registry.npmjs.org/gearnode/-/gearnode-0.1.2.tgz" + } + }, + "keywords": [ + "gearman", + "worker", + "message queue" + ], + "url": "http://registry.npmjs.org/gearnode/" + }, + "geck": { + "name": "geck", + "description": "Resourceful services made brain-dead easy.", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "qard", + "email": "admin@stephenbelanger.com" + } + ], + "time": { + "modified": "2011-08-11T22:43:46.151Z", + "created": "2011-07-17T00:30:28.017Z", + "0.0.1": "2011-07-17T00:30:28.590Z", + "0.0.2": "2011-07-28T18:27:42.807Z", + "0.0.3": "2011-08-09T19:52:26.365Z", + "0.0.4": "2011-08-09T20:41:37.334Z" + }, + "author": { + "name": "Stephen Belanger", + "email": "admin@stephenbelanger.com", + "url": "http://stephenbelanger.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Qard/GECK.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/geck/0.0.1", + "0.0.2": "http://registry.npmjs.org/geck/0.0.2", + "0.0.3": "http://registry.npmjs.org/geck/0.0.3", + "0.0.4": "http://registry.npmjs.org/geck/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "5d72a78b044a36e504f09ddcacffc95070bbc835", + "tarball": "http://registry.npmjs.org/geck/-/geck-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "e39acf6bbed02e6aaf4920153c0a4b83133d8b69", + "tarball": "http://registry.npmjs.org/geck/-/geck-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "86738afc60786a4b23fc4e68b8b7cd0e61b87233", + "tarball": "http://registry.npmjs.org/geck/-/geck-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "c629a9c34037889d2913d547d781144e68d3bead", + "tarball": "http://registry.npmjs.org/geck/-/geck-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/geck/" + }, + "geddy": { + "name": "geddy", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "mde", + "email": "mde@fleegix.org" + } + ], + "author": { + "name": "Matthew Eernisse", + "email": "mde@fleegix.org", + "url": "http://fleegix.org" + }, + "time": { + "modified": "2011-12-14T05:03:36.385Z", + "created": "2011-03-31T07:58:23.640Z", + "0.1.1": "2011-03-31T07:58:23.640Z", + "0.1.3": "2011-03-31T07:58:23.640Z", + "0.2.0": "2011-11-25T00:18:31.999Z", + "0.2.1": "2011-12-02T00:39:14.960Z", + "0.2.2": "2011-12-14T05:03:36.385Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/mde/geddy.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/geddy/0.1.1", + "0.1.3": "http://registry.npmjs.org/geddy/0.1.3", + "0.2.0": "http://registry.npmjs.org/geddy/0.2.0", + "0.2.1": "http://registry.npmjs.org/geddy/0.2.1", + "0.2.2": "http://registry.npmjs.org/geddy/0.2.2" + }, + "dist": { + "0.1.1": { + "tarball": "http://packages:5984/geddy/-/geddy-0.1.1.tgz" + }, + "0.1.3": { + "tarball": "http://registry.npmjs.org/geddy/-/geddy-0.1.3.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "fb5038600bbc8e59a90065f7cbc8b48b38180dff", + "tarball": "http://registry.npmjs.org/geddy/-/geddy-0.1.3-0.4-sunos-5.11.tgz" + } + } + }, + "0.2.0": { + "shasum": "fb8bb9cd0be88ab088fefa726edfef1884ad1311", + "tarball": "http://registry.npmjs.org/geddy/-/geddy-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "d8295a9ad103a82f21e706316c77c4347dad6267", + "tarball": "http://registry.npmjs.org/geddy/-/geddy-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "5f10ba62aa3a34c5bc44308ced192934d71c8455", + "tarball": "http://registry.npmjs.org/geddy/-/geddy-0.2.2.tgz" + } + }, + "url": "http://registry.npmjs.org/geddy/" + }, + "gen": { + "name": "gen", + "description": "Generate Empty Node project", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-06-20T09:05:57.600Z", + "created": "2011-06-20T09:05:56.776Z", + "0.0.0": "2011-06-20T09:05:57.600Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com", + "url": "http://bit.ly/dominictarr" + }, + "repository": { + "type": "git", + "url": "git://github.com/dominictarr/gen.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/gen/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "67dadb8e9294ccad0d09c0fe669fac29f7acb742", + "tarball": "http://registry.npmjs.org/gen/-/gen-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/gen/" + }, + "genData": { + "name": "genData", + "description": "A normalization pattern to build, query, and manipulate everything.", + "dist-tags": { + "latest": "1.2.0" + }, + "readme": "# genData\nA normalization pattern to build, query, and manipulate everything.\n\n(11/21/11)\nversion 1.2.0\nby Bemi Faison\n\n\n## DESCRIPTION\n\ngenData is a recursive, depth-first iterator and generic parser, for querying objects. genData lets you control iteration and parsing behavior, along with the returned dataset.\n\n\n## FILES\n\n* gendata-min.js - genData source file (minified with [UglifyJS](http://marijnhaverbeke.nl/uglifyjs) )\n* LICENSE - The legal terms and conditions under which this software may be used\n* README.md - This readme file\n* src/ - Directory containing the source code\n* src-test/ - Directory containing [Qunit](http://docs.jquery.com/Qunit) test files\n\n\n## INSTALL\n\nWithin web browsers, reference the gendata-min.js, as you would any external JavaScript file.\n\n```html\n \n \n```\n\nFor Node, install genData source files manually, or via npm (recommended).\n\n```bash\n npm install genData\n```\n\nThen, for commonJS environments (like Node), require the genData module, and reference the exported genData function.\n\n```js\n var genData = require('genData').genData;\n\n // Your code that uses genData...\n```\n\n## USAGE\n\n**Warning:** genData scans objects _recursively_!! Make sure to check for previously inspected objects, or avoid passing self-referencing structures!\n\n### Normalize\n\ngenData translates anything into a _dataset_. A dataset is an array of objects with a common structure. By default, genData assigns a _name_ and _value_ member to dataset objects. The examples below, demonstrate how genData normalizes _data_, the first argument.\n\nUse genData to normalize an object...\n\n```js\n genData({hello: \"world\"});\n\n /*\n returns this array...\n [\n {\n name: '',\n value: {hello: 'world', pie: \"sky\"}\n },\n {\n name: 'hello',\n value: 'world'\n },\n {\n name: 'pie',\n value: 'sky'\n }\n ]\n */\n```\n\nUse genData to normalize an array...\n\n```js\n genData([9276, {ping: \"pong\"}, \"foo\"]);\n\n /*\n returns this array...\n [\n {\n name: '',\n value: [9276, {ping: \"pong\"}, \"foo\"]\n },\n {\n name: '0',\n value: 9276\n },\n {\n name: '1',\n value: {ping: \"pong\"}\n },\n {\n name: 'ping',\n value: 'pong'\n },\n {\n name: '2',\n value: 'foo'\n }\n ]\n */\n```\n\nUse genData to normalize nothing...\n\n```js\n genData();\n\n /*\n returns this array...\n [\n {\n name: '',\n value: undefined\n }\n ]\n */\n```\n\n### Build\n\nThe second argument may be a function or array of functions, called _parsers_.\n\nUse genData with a parser that manipulates members of each data object in the dataset...\n\n```js\n genData(\n [{hello: 'world', pie: \"sky\"}],\n function () {\n this.randId = Math.random();\n delete this.name;\n }\n );\n /*\n returns this array...\n [\n {\n value: {hello: 'world', pie: \"sky\"},\n randId: 0.9093414132948965\n },\n {\n value: 'world',\n randId: 0.20426166336983442\n },\n {\n value: 'sky',\n randId: 0.5697704532649368\n }\n ]\n */\n```\n\n### Query & Parse\n\nParsers also control what genData iterates and returns, by performing logic and setting iteration flags from the following function signature.\n\n1. **name** - _String_, The original name of this data object.\n2. **value** - _Mixed_, The original value of this data object.\n3. **parent** - _Data_, The data object that was scanned in order to create this data object.\n4. **dataset** - _Array_, The array that will be returned when genData completes iterating.\n5. **flags** - _Object_, A collection of keys used to for controlling genData.\n * _parent_: The object to be scanned next, in order to create subsequent data objects.\n * _omit_: When truthy, the current data object is excluded from the final dataset.\n * _scan_: When falsy, the current data object will not be scanned by genData.\n * _exit_: When truthy, genData will abort all parsing and iteration queues.\n6. **shared** - _Object_, An (initially) empty object that is preserved between parsers invocations, until genData completes all iterations.\n\nUse genData to query the numeric values of an object...\n\n```js\n genData(\n [10, [\"echo\", {top: 20}], true, 30, \"charlie\"],\n function (name, value, parent, dataset, flags) {\n flags.omit = typeof value !== 'number';\n }\n );\n /*\n returns this array...\n [\n {\n name: '0',\n value: 10\n },\n {\n name: 'top',\n value: 20\n },\n {\n name: '3',\n value: 50\n }\n ]\n */\n```\n\nUse genData to capture all strings of an object...\n\n```js\n genData(\n [10, [\"echo\", {top: 20}], true, 30, \"charlie\"],\n function (name, value, parent, dataset, flags) {\n flags.omit = 1;\n if (typeof value === 'string') {\n dataset.push(value);\n }\n }\n );\n /*\n returns this array...\n [\n 'echo',\n 'charlie'\n ]\n */\n```\n\n### Generators\n\nGenerators are functions that capture and extend complex parsing logic.\n\nFor example, this generator returns all found functions.\n\n```js\n var extractFncs = new genData(\n function (name, value, parent, dataset, flags) {\n flags.omit = 1;\n if (typeof value === 'function') {\n dataset.push(value);\n }\n }\n );\n```\n\nYou can then pass anything to the @extractFncs@ generator, and it will call genData as if you included the parsers manually.\n\n```js\nvar foundFncs = extractFns(aBigConfigObject);\n```\n\nYou can also spawn new generators and pass (additional) parser functions to any generator. Below, we'll spawn a generator from our @extractFncs@ generator, to _further_ exclude functions that have a length greater than 2.\n\n```js\n var extractFncsLessThan3 = new extractFncs(\n function (name, value, parent, dataset) {\n if (typeof value === 'function' && value.length > 2) {\n dataset.pop();\n }\n }\n );\n```\n\n### Prototyping\n\ngenData, along with each generator, supplies a prototype chain to each data object. Below, we define an @.isArray()@ method to the genData prototype, then access this method through a generator.\n\n```js\n genData.prototype.isArray = function () {\n return !!~{}.toString.call(this.value).indexOf('y');\n };\n\n var extractArrays = new genData(\n function (name, value, parent, dataset, flags) {\n flags.omit = !this.isArray();\n }\n );\n```\n\nYou may also pass a third parameter to genData (or a generator), an object or function, to serve as the prototype for the returned data objects.\n\n```js\n var dataset = genData(\n stuff,\n [], // this could also be \"falsy\"\n {\n myFamiliarMethod: function () {\n // \"this\" will be the data object\n }\n }\n );\n\n dataset[0].myFamiliarMethod();\n```\n\n**Note:** Generators only branch/extend the genData prototype chain.\n\n\n## LICENSE\n\ngenData is available under the terms of the [MIT-License](http://en.wikipedia.org/wiki/MIT_License#License_terms).\n\nCopyright 2011, Bemi Faison", + "maintainers": [ + { + "name": "bemson", + "email": "bemson@gmail.com" + } + ], + "time": { + "modified": "2011-11-22T20:12:39.860Z", + "created": "2011-11-22T20:12:33.043Z", + "1.2.0": "2011-11-22T20:12:39.860Z" + }, + "author": { + "name": "Bemi Faison", + "email": "bemson@gmail.com", + "url": "https://github.com/bemson" + }, + "repository": { + "type": "git", + "url": "git://github.com/bemson/genData.git" + }, + "versions": { + "1.2.0": "http://registry.npmjs.org/genData/1.2.0" + }, + "dist": { + "1.2.0": { + "shasum": "72e31ffed7c01b7cae5f840589c2fff746d228b2", + "tarball": "http://registry.npmjs.org/genData/-/genData-1.2.0.tgz" + } + }, + "keywords": [ + "data", + "dataset", + "parse", + "query", + "convert", + "translate", + "generator" + ], + "url": "http://registry.npmjs.org/genData/" + }, + "generic-function": { + "name": "generic-function", + "description": "A generic function implementation for node.js based on CLOS.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "ceineke", + "email": "npm@chriseineke.com" + } + ], + "time": { + "modified": "2011-09-17T05:43:02.961Z", + "created": "2011-09-12T23:23:00.999Z", + "0.0.1": "2011-09-12T23:23:01.634Z", + "0.0.2": "2011-09-17T05:43:02.961Z" + }, + "author": { + "name": "Chris Eineke", + "email": "chris@chriseineke.com", + "url": "http://chriseineke.com/" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/generic-function/0.0.1", + "0.0.2": "http://registry.npmjs.org/generic-function/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "0b5166e1919f11f530958ef9a31c98f72d364fd4", + "tarball": "http://registry.npmjs.org/generic-function/-/generic-function-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "2bb01ead2f59eb990eeccbbaba1d510a1a9d8a0b", + "tarball": "http://registry.npmjs.org/generic-function/-/generic-function-0.0.2.tgz" + } + }, + "keywords": [ + "generic", + "function", + "common", + "lisp", + "object", + "system" + ], + "url": "http://registry.npmjs.org/generic-function/" + }, + "generic-pool": { + "name": "generic-pool", + "description": "Generic resource pooling for Node.JS", + "dist-tags": { + "latest": "1.0.8" + }, + "maintainers": [ + { + "name": "coopernurse", + "email": "james@bitmechanic.com" + } + ], + "author": { + "name": "James Cooper", + "email": "james@bitmechanic.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/coopernurse/node-pool.git" + }, + "time": { + "modified": "2011-11-17T04:38:51.882Z", + "created": "2011-01-25T16:29:52.460Z", + "1.0.0": "2011-01-25T16:29:52.460Z", + "1.0.1": "2011-01-25T16:29:52.460Z", + "1.0.2": "2011-01-25T16:29:52.460Z", + "1.0.3": "2011-01-25T16:29:52.460Z", + "1.0.4": "2011-01-25T16:29:52.460Z", + "1.0.5": "2011-04-20T22:18:56.591Z", + "1.0.6": "2011-05-23T17:46:10.239Z", + "1.0.7": "2011-10-18T03:20:51.120Z", + "1.0.8": "2011-11-17T04:38:51.882Z" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/generic-pool/1.0.0", + "1.0.1": "http://registry.npmjs.org/generic-pool/1.0.1", + "1.0.2": "http://registry.npmjs.org/generic-pool/1.0.2", + "1.0.3": "http://registry.npmjs.org/generic-pool/1.0.3", + "1.0.4": "http://registry.npmjs.org/generic-pool/1.0.4", + "1.0.5": "http://registry.npmjs.org/generic-pool/1.0.5", + "1.0.6": "http://registry.npmjs.org/generic-pool/1.0.6", + "1.0.7": "http://registry.npmjs.org/generic-pool/1.0.7", + "1.0.8": "http://registry.npmjs.org/generic-pool/1.0.8" + }, + "dist": { + "1.0.0": { + "tarball": "http://packages:5984/generic-pool/-/generic-pool-1.0.0.tgz" + }, + "1.0.1": { + "tarball": "http://packages:5984/generic-pool/-/generic-pool-1.0.1.tgz" + }, + "1.0.2": { + "tarball": "http://registry.npmjs.org/generic-pool/-/generic-pool@1.0.2.tgz" + }, + "1.0.3": { + "tarball": "http://registry.npmjs.org/generic-pool/-/generic-pool@1.0.3.tgz" + }, + "1.0.4": { + "tarball": "http://registry.npmjs.org/generic-pool/-/generic-pool@1.0.4.tgz" + }, + "1.0.5": { + "shasum": "d29dc81114807cfecc5ee7f3a8ae34899934362b", + "tarball": "http://registry.npmjs.org/generic-pool/-/generic-pool-1.0.5.tgz" + }, + "1.0.6": { + "shasum": "241e1e6e22c9d5cd18146eab08e25e43006e4f83", + "tarball": "http://registry.npmjs.org/generic-pool/-/generic-pool-1.0.6.tgz" + }, + "1.0.7": { + "shasum": "ceab1036aefa8c80af0488731ea5df351d8e6a8d", + "tarball": "http://registry.npmjs.org/generic-pool/-/generic-pool-1.0.7.tgz" + }, + "1.0.8": { + "shasum": "78ab9674c291b7332d845b1a95ce6e293c59bd62", + "tarball": "http://registry.npmjs.org/generic-pool/-/generic-pool-1.0.8.tgz" + } + }, + "keywords": [ + "pool", + "pooling", + "throttle" + ], + "url": "http://registry.npmjs.org/generic-pool/" + }, + "genji": { + "name": "genji", + "description": "A simple micro-framework for nodejs.", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "zir", + "email": "zir.echo@gmail.com" + } + ], + "author": { + "name": "Senmiao Liu", + "email": "zir.echo@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/zir/genji.git" + }, + "time": { + "modified": "2011-09-08T01:57:12.149Z", + "created": "2011-06-13T07:23:02.078Z", + "0.0.1": "2011-06-13T07:23:02.078Z", + "0.0.2": "2011-06-13T07:23:02.078Z", + "0.0.3": "2011-06-13T07:23:02.078Z", + "0.1.0-pre": "2011-06-27T17:33:41.886Z", + "0.1.0": "2011-06-29T08:40:25.662Z", + "0.2.0": "2011-07-09T16:28:33.900Z", + "0.2.1": "2011-08-11T09:08:03.956Z", + "0.2.2": "2011-09-08T01:57:12.149Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/genji/0.0.1", + "0.0.2": "http://registry.npmjs.org/genji/0.0.2", + "0.0.3": "http://registry.npmjs.org/genji/0.0.3", + "0.1.0": "http://registry.npmjs.org/genji/0.1.0", + "0.2.0": "http://registry.npmjs.org/genji/0.2.0", + "0.2.1": "http://registry.npmjs.org/genji/0.2.1", + "0.2.2": "http://registry.npmjs.org/genji/0.2.2" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/genji/-/genji-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/genji/-/genji-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "aaf00598d8e142702206ae7d3cf2afdde15e9f5c", + "tarball": "http://registry.npmjs.org/genji/-/genji-0.0.3.tgz" + }, + "0.1.0": { + "shasum": "2d2a7ef935fff3dcc02eac94fbf9932052bda32f", + "tarball": "http://registry.npmjs.org/genji/-/genji-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "b58f9f5735229c8ed466968689ac4064c781063a", + "tarball": "http://registry.npmjs.org/genji/-/genji-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "747ae6225004b4fa8404bd9f6691635415207e54", + "tarball": "http://registry.npmjs.org/genji/-/genji-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "0b38a46e8e7578ce08e08c649f1f4134c0c94fcd", + "tarball": "http://registry.npmjs.org/genji/-/genji-0.2.2.tgz" + } + }, + "keywords": [ + "middleware", + "router", + "async", + "micro" + ], + "url": "http://registry.npmjs.org/genji/" + }, + "genpkg": { + "name": "genpkg", + "description": "Generates NPM packages from single JavaScript files.", + "dist-tags": { + "latest": "0.0.2" + }, + "readme": "genpkg simplifies installation and update for unpackaged JavaScript files.\n\n## Usage Example\n```bash\n$ genpkg install https://raw.github.com/azer/sjcl/master/sjcl.js node_modules\nPackage \"sjcl\" saved successfully.\n\n$ ls node_modules/sjcl\nsjcl.js package.json\n\n$ genpkg update\nChecking for updates...\nPackage sjcl is already up to date\nDone.\n```\n\n## Installation\n\n```bash\n$ npm install genpkg\n```\n\n## Tests\n\n```bash\nmake test\n```\n", + "maintainers": [ + { + "name": "azer", + "email": "azer@kodfabrik.com" + } + ], + "time": { + "modified": "2011-11-21T09:49:45.413Z", + "created": "2011-11-21T05:43:56.996Z", + "0.0.1": "2011-11-21T05:43:57.417Z", + "0.0.2": "2011-11-21T09:49:45.413Z" + }, + "author": { + "name": "Azer Koculu", + "email": "azer@kodfabrik.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/azer/genpkg.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/genpkg/0.0.1", + "0.0.2": "http://registry.npmjs.org/genpkg/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "fbf068ae3a24e198fd144517f23f2dc8f9ffbb85", + "tarball": "http://registry.npmjs.org/genpkg/-/genpkg-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "0ef39397c3f3c7153b42f8008d5853057c3eda57", + "tarball": "http://registry.npmjs.org/genpkg/-/genpkg-0.0.2.tgz" + } + }, + "keywords": [ + "package", + "packaging" + ], + "url": "http://registry.npmjs.org/genpkg/" + }, + "genstatic": { + "name": "genstatic", + "description": "A static site generator", + "dist-tags": { + "latest": "0.0.3b" + }, + "maintainers": [ + { + "name": "pascalopitz", + "email": "contact@pascalopitz.com" + } + ], + "time": { + "modified": "2011-03-10T05:39:03.569Z", + "created": "2011-03-06T11:01:35.910Z", + "0.0.1b": "2011-03-06T11:01:36.332Z", + "0.0.2b": "2011-03-10T04:42:32.358Z", + "0.0.3b": "2011-03-10T05:27:37.935Z" + }, + "author": { + "name": "Pascal Opitz", + "email": "pascal@ilikecode.co.uk", + "url": "http://www.ilikecode.co.uk" + }, + "versions": { + "0.0.1b": "http://registry.npmjs.org/genstatic/0.0.1b", + "0.0.2b": "http://registry.npmjs.org/genstatic/0.0.2b", + "0.0.3b": "http://registry.npmjs.org/genstatic/0.0.3b" + }, + "dist": { + "0.0.1b": { + "shasum": "70ad2d8722b6f9e898536ff98ef6720bca17fb95", + "tarball": "http://registry.npmjs.org/genstatic/-/genstatic-0.0.1b.tgz" + }, + "0.0.2b": { + "shasum": "1c783a53da5100d8edae61aaa02f3090ef379d2f", + "tarball": "http://registry.npmjs.org/genstatic/-/genstatic-0.0.2b.tgz" + }, + "0.0.3b": { + "shasum": "99c2c456dce39187c38944a906e34b581c242890", + "tarball": "http://registry.npmjs.org/genstatic/-/genstatic-0.0.3b.tgz" + } + }, + "keywords": [ + "static" + ], + "url": "http://registry.npmjs.org/genstatic/" + }, + "gently": { + "name": "gently", + "dist-tags": { + "latest": "0.9.1" + }, + "maintainers": [ + { + "name": "felixge", + "email": "felix@debuggable.com" + } + ], + "time": { + "modified": "2011-05-24T13:40:08.508Z", + "created": "2011-05-03T16:45:23.222Z", + "0.1.0": "2011-05-03T16:45:23.222Z", + "0.2.0": "2011-05-03T16:45:23.222Z", + "0.3.0": "2011-05-03T16:45:23.222Z", + "0.4.0": "2011-05-03T16:45:23.222Z", + "0.5.0": "2011-05-03T16:45:23.222Z", + "0.6.0": "2011-05-03T16:45:23.222Z", + "0.7.0": "2011-05-03T16:45:23.222Z", + "0.8.0": "2011-05-03T16:45:23.222Z", + "0.9.0": "2011-05-03T16:45:23.222Z", + "0.9.1": "2011-05-24T13:40:08.508Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/gently/0.1.0", + "0.2.0": "http://registry.npmjs.org/gently/0.2.0", + "0.3.0": "http://registry.npmjs.org/gently/0.3.0", + "0.4.0": "http://registry.npmjs.org/gently/0.4.0", + "0.5.0": "http://registry.npmjs.org/gently/0.5.0", + "0.6.0": "http://registry.npmjs.org/gently/0.6.0", + "0.7.0": "http://registry.npmjs.org/gently/0.7.0", + "0.8.0": "http://registry.npmjs.org/gently/0.8.0", + "0.9.0": "http://registry.npmjs.org/gently/0.9.0", + "0.9.1": "http://registry.npmjs.org/gently/0.9.1" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/gently/-/gently-0.1.0.tgz" + }, + "0.2.0": { + "tarball": "http://packages:5984/gently/-/gently-0.2.0.tgz" + }, + "0.3.0": { + "tarball": "http://packages:5984/gently/-/gently-0.3.0.tgz" + }, + "0.4.0": { + "tarball": "http://packages:5984/gently/-/gently-0.4.0.tgz" + }, + "0.5.0": { + "tarball": "http://packages:5984/gently/-/gently-0.5.0.tgz" + }, + "0.6.0": { + "tarball": "http://packages:5984/gently/-/gently-0.6.0.tgz" + }, + "0.7.0": { + "tarball": "http://packages:5984/gently/-/gently-0.7.0.tgz" + }, + "0.8.0": { + "tarball": "http://packages:5984/gently/-/gently-0.8.0.tgz" + }, + "0.9.0": { + "shasum": "f6d73a8cf774917fd419e0df276edb4c272719d2", + "tarball": "http://registry.npmjs.org/gently/-/gently-0.9.0.tgz" + }, + "0.9.1": { + "shasum": "280c3b4004305d42830dd49e07af3502c45e4a0b", + "tarball": "http://registry.npmjs.org/gently/-/gently-0.9.1.tgz" + } + }, + "url": "http://registry.npmjs.org/gently/" + }, + "genx": { + "name": "genx", + "description": "Evented XML generation using the Genx C library", + "dist-tags": { + "latest": "0.8.3" + }, + "maintainers": [ + { + "name": "wezm", + "email": "wes@wezm.net" + } + ], + "time": { + "modified": "2011-06-22T02:54:16.614Z", + "created": "2011-01-26T16:45:16.656Z", + "0.8.1": "2011-01-26T16:45:37.856Z", + "0.8.2": "2011-02-24T15:53:12.119Z", + "0.8.3": "2011-06-22T02:54:16.614Z" + }, + "author": { + "name": "Wesley Moore", + "email": "wes@wezm.net", + "url": "http://www.wezm.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/wezm/node-genx.git" + }, + "versions": { + "0.8.1": "http://registry.npmjs.org/genx/0.8.1", + "0.8.2": "http://registry.npmjs.org/genx/0.8.2", + "0.8.3": "http://registry.npmjs.org/genx/0.8.3" + }, + "dist": { + "0.8.1": { + "shasum": "ca520b60a4f37a8ea5c797e118e3f32ebf906fc1", + "tarball": "http://registry.npmjs.org/genx/-/genx-0.8.1.tgz" + }, + "0.8.2": { + "shasum": "8910a1829f2e207b0107584b58ba6e16bc6ce292", + "tarball": "http://registry.npmjs.org/genx/-/genx-0.8.2.tgz" + }, + "0.8.3": { + "shasum": "0f11c2f0e27e1ac9619734561686b6da44639b0d", + "tarball": "http://registry.npmjs.org/genx/-/genx-0.8.3.tgz" + } + }, + "keywords": [ + "xml", + "generation", + "generator", + "builder" + ], + "url": "http://registry.npmjs.org/genx/" + }, + "geo": { + "name": "geo", + "description": "Geo is a very basic, but simple and extendable, geocode library for Node.js. Currently it only supports Google's Geocode API (v3) - Geo Spatial features are coming out soon", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "felipera", + "email": "felipera@gmail.com" + } + ], + "time": { + "modified": "2011-03-12T16:15:09.226Z", + "created": "2011-03-09T20:02:56.952Z", + "0.0.1": "2011-03-09T20:02:57.200Z", + "0.0.2": "2011-03-10T17:25:12.268Z", + "0.0.3": "2011-03-12T16:15:09.226Z" + }, + "author": { + "name": "Felipe Oliveira", + "email": "felipera@gmail.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:feliperazeek/geonode.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/geo/0.0.1", + "0.0.2": "http://registry.npmjs.org/geo/0.0.2", + "0.0.3": "http://registry.npmjs.org/geo/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "cb3db8e2269a48115dcf204e50bce5bc1e7357b5", + "tarball": "http://registry.npmjs.org/geo/-/geo-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "60a2e32a0e267adbafeff19c7e000a0ba59e6ca2", + "tarball": "http://registry.npmjs.org/geo/-/geo-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "e95510ed7607deefd0f1d9da8b9a2c142db92200", + "tarball": "http://registry.npmjs.org/geo/-/geo-0.0.3.tgz" + } + }, + "keywords": [ + "geo", + "geospatial", + "geocode", + "geocoding", + "geohash" + ], + "url": "http://registry.npmjs.org/geo/" + }, + "geo-distance": { + "name": "geo-distance", + "description": "Common JS module for calculating and converting Earth distances using correct great-circle distance formula.", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "walling", + "email": "bwp@bwp.dk" + } + ], + "time": { + "modified": "2011-07-01T15:15:10.356Z", + "created": "2011-07-01T12:51:55.551Z", + "0.1.0": "2011-07-01T12:51:56.120Z", + "0.1.1": "2011-07-01T14:58:27.824Z", + "0.1.2": "2011-07-01T15:15:10.356Z" + }, + "author": { + "name": "Bjarke Walling", + "email": "bwp@bwp.dk" + }, + "repository": { + "type": "git", + "url": "git://github.com/walling/geo-distance.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/geo-distance/0.1.0", + "0.1.1": "http://registry.npmjs.org/geo-distance/0.1.1", + "0.1.2": "http://registry.npmjs.org/geo-distance/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "1940d0ea90c518431fcad65f9172eed5cc05891c", + "tarball": "http://registry.npmjs.org/geo-distance/-/geo-distance-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "6b048160f7d52febb4d5cc9ffdeecc1502434e78", + "tarball": "http://registry.npmjs.org/geo-distance/-/geo-distance-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "578fe83438d594fffa7f4cfb95afbc390af20c4b", + "tarball": "http://registry.npmjs.org/geo-distance/-/geo-distance-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/geo-distance/" + }, + "geocoder": { + "name": "geocoder", + "description": "node wrapper around google's geocoder api", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "wyattdanger", + "email": "stephen.wyatt@gmail.com" + } + ], + "time": { + "modified": "2011-07-20T23:19:19.474Z", + "created": "2011-07-15T18:07:04.376Z", + "0.0.1": "2011-07-15T18:07:04.970Z", + "0.0.2": "2011-07-15T18:17:54.540Z", + "0.0.3": "2011-07-15T19:04:51.417Z", + "0.0.4": "2011-07-16T02:05:28.734Z", + "0.0.5": "2011-07-20T23:19:19.474Z" + }, + "author": { + "name": "Stephen Wyatt Bush", + "email": "stephen.wyatt@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/wyattdanger/geocoder.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/geocoder/0.0.1", + "0.0.2": "http://registry.npmjs.org/geocoder/0.0.2", + "0.0.3": "http://registry.npmjs.org/geocoder/0.0.3", + "0.0.4": "http://registry.npmjs.org/geocoder/0.0.4", + "0.0.5": "http://registry.npmjs.org/geocoder/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "79f0ab7c7e81850750cd5c931e5ad11396046b7b", + "tarball": "http://registry.npmjs.org/geocoder/-/geocoder-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "33ad8275349ac8cfd506ca88d359a8024b200ab0", + "tarball": "http://registry.npmjs.org/geocoder/-/geocoder-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "0ee197571b3cbcfd0fd465c26081be5d960cac79", + "tarball": "http://registry.npmjs.org/geocoder/-/geocoder-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "256a137de5680544ed4087e949d4ec8a558c4fee", + "tarball": "http://registry.npmjs.org/geocoder/-/geocoder-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "0dd4566e11d1847421960726fff2cefd36c59c36", + "tarball": "http://registry.npmjs.org/geocoder/-/geocoder-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/geocoder/" + }, + "geohash": { + "name": "geohash", + "description": "GeoHash Algorithm first described by Gustavo Niemeyer in February 2008. By interleaving latitude and longitude information in a bitwise fashion, a composite value is generated that provides a high resolution geographic point, and is well suited for storage or transmission as a character string.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "unscene", + "email": "ryan.fairchild@gmail.com" + } + ], + "author": [ + "Chris Williams", + "David Troy" + ], + "versions": { + "0.0.1": "http://registry.npmjs.org/geohash/0.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/geohash/-/geohash-0.0.1.tgz" + } + }, + "keywords": [ + "geocode", + "geohash", + "geolocation" + ], + "url": "http://registry.npmjs.org/geohash/" + }, + "geoip": { + "name": "geoip", + "description": "GeoIP binding for node", + "dist-tags": { + "beta1": "0.4.0beta1", + "beta2": "0.4.0beta2", + "rc": "0.4.0rc", + "latest": "0.4.5" + }, + "maintainers": [ + { + "name": "kuno", + "email": "neokuno@gmail.com" + } + ], + "author": { + "name": "Guan 'kuno' Qing", + "email": "neokuno at Gmail dot com" + }, + "repository": { + "type": "git", + "url": "git://github.com/kuno/GeoIP.git" + }, + "time": { + "modified": "2011-11-07T09:44:01.072Z", + "created": "2011-01-06T03:53:52.972Z", + "0.1.0": "2011-01-06T03:53:52.972Z", + "0.1.3": "2011-01-06T03:53:52.972Z", + "0.2.0": "2011-01-06T03:53:52.972Z", + "0.2.1": "2011-01-06T03:53:52.972Z", + "0.3.0": "2011-01-06T03:53:52.972Z", + "0.3.1": "2011-01-06T03:53:52.972Z", + "0.3.1-1": "2011-01-06T03:53:52.972Z", + "0.3.2": "2011-01-22T04:26:41.289Z", + "0.3.3": "2011-02-06T01:26:17.444Z", + "0.3.3-1": "2011-02-12T09:11:23.396Z", + "0.3.4": "2011-02-15T02:54:46.059Z", + "0.3.4-1": "2011-03-07T04:36:55.965Z", + "0.4.0beta1": "2011-05-11T02:18:52.067Z", + "0.4.0beta2": "2011-05-16T02:12:58.801Z", + "0.4.0rc": "2011-05-20T02:03:43.381Z", + "0.4.0": "2011-05-23T01:17:33.327Z", + "0.4.0final": "2011-05-24T07:12:50.848Z", + "0.4.1": "2011-06-21T05:06:28.461Z", + "0.4.2": "2011-07-23T05:35:59.831Z", + "0.4.2-1": "2011-07-24T14:21:56.861Z", + "0.4.2-2": "2011-08-01T14:25:07.478Z", + "0.4.3": "2011-08-03T09:48:56.618Z", + "0.4.4": "2011-09-15T09:53:37.038Z", + "0.4.5": "2011-11-07T09:44:01.072Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/geoip/0.1.0", + "0.1.3": "http://registry.npmjs.org/geoip/0.1.3", + "0.2.0": "http://registry.npmjs.org/geoip/0.2.0", + "0.2.1": "http://registry.npmjs.org/geoip/0.2.1", + "0.3.0": "http://registry.npmjs.org/geoip/0.3.0", + "0.3.1": "http://registry.npmjs.org/geoip/0.3.1", + "0.3.1-1": "http://registry.npmjs.org/geoip/0.3.1-1", + "0.3.2": "http://registry.npmjs.org/geoip/0.3.2", + "0.3.3": "http://registry.npmjs.org/geoip/0.3.3", + "0.3.3-1": "http://registry.npmjs.org/geoip/0.3.3-1", + "0.3.4": "http://registry.npmjs.org/geoip/0.3.4", + "0.3.4-1": "http://registry.npmjs.org/geoip/0.3.4-1", + "0.4.0beta1": "http://registry.npmjs.org/geoip/0.4.0beta1", + "0.4.0beta2": "http://registry.npmjs.org/geoip/0.4.0beta2", + "0.4.0rc": "http://registry.npmjs.org/geoip/0.4.0rc", + "0.4.0final": "http://registry.npmjs.org/geoip/0.4.0final", + "0.4.1": "http://registry.npmjs.org/geoip/0.4.1", + "0.4.2": "http://registry.npmjs.org/geoip/0.4.2", + "0.4.2-1": "http://registry.npmjs.org/geoip/0.4.2-1", + "0.4.2-2": "http://registry.npmjs.org/geoip/0.4.2-2", + "0.4.3": "http://registry.npmjs.org/geoip/0.4.3", + "0.4.4": "http://registry.npmjs.org/geoip/0.4.4", + "0.4.5": "http://registry.npmjs.org/geoip/0.4.5" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/geoip/-/geoip-0.1.0.tgz" + }, + "0.1.3": { + "shasum": "0fb782b9d5ee1f2528b2890f44fe99a269f20193", + "tarball": "http://registry.npmjs.org/geoip/-/geoip-0.1.3.tgz" + }, + "0.2.0": { + "shasum": "f42aaccf4f00274431b2338a70d8b26b3d7d5fc6", + "tarball": "http://registry.npmjs.org/geoip/-/geoip-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "850c36e94f1733e93a25ce8010c4490aff26b67c", + "tarball": "http://registry.npmjs.org/geoip/-/geoip-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "ca04c41fbff3e8a2844c903df91db33dce504150", + "tarball": "http://registry.npmjs.org/geoip/-/geoip-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "832fd508d4779431b5baedcec3177c44b8d9340f", + "tarball": "http://registry.npmjs.org/geoip/-/geoip-0.3.1.tgz" + }, + "0.3.1-1": { + "shasum": "835ca4a5c8f8cc5008553cb2fc956492afcc440e", + "tarball": "http://registry.npmjs.org/geoip/-/geoip-0.3.1-1.tgz" + }, + "0.3.2": { + "shasum": "6410481d651ba6a62739e4c90df3ca1457ac7a3c", + "tarball": "http://registry.npmjs.org/geoip/-/geoip-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "5050c977d9b6467730ff1245a9a1d31b9193a67f", + "tarball": "http://registry.npmjs.org/geoip/-/geoip-0.3.3.tgz" + }, + "0.3.3-1": { + "shasum": "d3b485fb45da2e4f1290aa8b012f069a25d266ef", + "tarball": "http://registry.npmjs.org/geoip/-/geoip-0.3.3-1.tgz" + }, + "0.3.4": { + "shasum": "9a407071e7ccdd98563a1e6ef061249e6f38edbf", + "tarball": "http://registry.npmjs.org/geoip/-/geoip-0.3.4.tgz" + }, + "0.3.4-1": { + "shasum": "1c70e47e6477969d43f2140f5b124ea42dfd6d9d", + "tarball": "http://registry.npmjs.org/geoip/-/geoip-0.3.4-1.tgz" + }, + "0.4.0beta1": { + "shasum": "2c504992cd0c0db67e11afd84e1a45a721fe5315", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.2.10.2-linux-2.6.38-ARCH": { + "shasum": "b6b97409637bacdfc57ee2c0f97b26ad9613ef1a", + "tarball": "http://registry.npmjs.org/geoip/-/geoip-0.4.0beta1-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.2.10.2-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/geoip/-/geoip-0.4.0beta1.tgz" + }, + "0.4.0beta2": { + "shasum": "f8b5c2a8e8a63596cb158f1e732daf6411496b00", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.2.10.2-linux-2.6.38-ARCH": { + "shasum": "a0a52ffcbde6c61c692501b0d183f2ac1f9e26d8", + "tarball": "http://registry.npmjs.org/geoip/-/geoip-0.4.0beta2-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.2.10.2-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/geoip/-/geoip-0.4.0beta2.tgz" + }, + "0.4.0rc": { + "shasum": "5947db19a51e6037ca550651a1ffe5e0ba3ab690", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.2.10.2-linux-2.6.38-ARCH": { + "shasum": "4ff5d58bf9f04c96688f939f32fb50d66d14b209", + "tarball": "http://registry.npmjs.org/geoip/-/geoip-0.4.0rc-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.2.10.2-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/geoip/-/geoip-0.4.0rc.tgz" + }, + "0.4.0final": { + "shasum": "22da8db57f716afab0ad9e46d40832c62e3f5398", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.2.10.2-linux-2.6.38-ARCH": { + "shasum": "db0670ce7392d1a390cae3b40ef0b611d4a40703", + "tarball": "http://registry.npmjs.org/geoip/-/geoip-0.4.0final-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.2.10.2-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/geoip/-/geoip-0.4.0final.tgz" + }, + "0.4.1": { + "shasum": "8597205856a37e7e91f93a552f425831b1213197", + "tarball": "http://registry.npmjs.org/geoip/-/geoip-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "7d1a8f26e8a6e52281ed1cc65c69c2bc78834db1", + "tarball": "http://registry.npmjs.org/geoip/-/geoip-0.4.2.tgz" + }, + "0.4.2-1": { + "shasum": "990d1cfafb7f8a4ff8ab38b16e6586597f48143f", + "tarball": "http://registry.npmjs.org/geoip/-/geoip-0.4.2-1.tgz" + }, + "0.4.2-2": { + "shasum": "d1e3d6e69be4b8d088cfc55d23e8f7825a9dcbcd", + "tarball": "http://registry.npmjs.org/geoip/-/geoip-0.4.2-2.tgz" + }, + "0.4.3": { + "shasum": "bc01cff3baa08dbf917af94f42f507bb821f991a", + "tarball": "http://registry.npmjs.org/geoip/-/geoip-0.4.3.tgz" + }, + "0.4.4": { + "shasum": "cf7e749b89599b91b3fe0bfa3ce27a8597c415e1", + "tarball": "http://registry.npmjs.org/geoip/-/geoip-0.4.4.tgz" + }, + "0.4.5": { + "shasum": "07911aab8cd97ccfe2d303832e85fdea62379565", + "tarball": "http://registry.npmjs.org/geoip/-/geoip-0.4.5.tgz" + } + }, + "url": "http://registry.npmjs.org/geoip/" + }, + "geoip-lite": { + "name": "geoip-lite", + "description": "A light weight native JavaScript implementation of GeoIP API from MaxMind", + "dist-tags": { + "latest": "1.0.3" + }, + "maintainers": [ + { + "name": "bluesmoon", + "email": "philip@bluesmoon.info" + } + ], + "time": { + "modified": "2011-10-25T22:12:34.059Z", + "created": "2011-08-05T03:04:11.405Z", + "1.0.0": "2011-08-05T03:04:14.325Z", + "1.0.0-1": "2011-08-05T07:26:10.919Z", + "1.0.1": "2011-08-19T16:48:16.508Z", + "1.0.2": "2011-09-10T05:55:07.178Z", + "1.0.3": "2011-10-25T22:12:34.059Z" + }, + "author": { + "name": "Philip Tellis", + "email": "philip@bluesmoon.info", + "url": "http://bluesmoon.info/" + }, + "repository": { + "type": "git", + "url": "git://github.com/bluesmoon/node-geoip.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/geoip-lite/1.0.0", + "1.0.0-1": "http://registry.npmjs.org/geoip-lite/1.0.0-1", + "1.0.1": "http://registry.npmjs.org/geoip-lite/1.0.1", + "1.0.2": "http://registry.npmjs.org/geoip-lite/1.0.2", + "1.0.3": "http://registry.npmjs.org/geoip-lite/1.0.3" + }, + "dist": { + "1.0.0": { + "shasum": "5ef428114d2c3243767afeedad6a2cd761753703", + "tarball": "http://registry.npmjs.org/geoip-lite/-/geoip-lite-1.0.0.tgz" + }, + "1.0.0-1": { + "shasum": "0598e655fd91be4988b93c3761f445b5581deaab", + "tarball": "http://registry.npmjs.org/geoip-lite/-/geoip-lite-1.0.0-1.tgz" + }, + "1.0.1": { + "shasum": "1c35d234af28155922b7691662f0a39b845f1f4e", + "tarball": "http://registry.npmjs.org/geoip-lite/-/geoip-lite-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "c3ea9e39857c406bafa049e5a3b0cdcc87b32ffc", + "tarball": "http://registry.npmjs.org/geoip-lite/-/geoip-lite-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "d014867ffb28893309c64e8b883971994cf0da55", + "tarball": "http://registry.npmjs.org/geoip-lite/-/geoip-lite-1.0.3.tgz" + } + }, + "keywords": [ + "geo", + "geoip", + "ip", + "ipv4", + "ipv6", + "geolookup", + "maxmind", + "geolite" + ], + "url": "http://registry.npmjs.org/geoip-lite/" + }, + "geojs": { + "name": "geojs", + "description": "Simple Geospatial Types and Tools for Javascript", + "dist-tags": { + "latest": "0.1.8" + }, + "maintainers": [ + { + "name": "damonoehlman", + "email": "damon.oehlman@sidelab.com" + } + ], + "time": { + "modified": "2011-11-14T04:49:47.815Z", + "created": "2011-09-12T07:01:12.943Z", + "0.1.4": "2011-09-12T07:01:15.114Z", + "0.1.5": "2011-09-12T23:48:50.258Z", + "0.1.6": "2011-09-13T04:00:07.033Z", + "0.1.7": "2011-10-11T01:15:58.140Z", + "0.1.8": "2011-11-14T04:49:47.815Z" + }, + "author": { + "name": "Damon Oehlman" + }, + "repository": { + "type": "git", + "url": "git://github.com/DamonOehlman/geojs.git" + }, + "versions": { + "0.1.4": "http://registry.npmjs.org/geojs/0.1.4", + "0.1.5": "http://registry.npmjs.org/geojs/0.1.5", + "0.1.6": "http://registry.npmjs.org/geojs/0.1.6", + "0.1.7": "http://registry.npmjs.org/geojs/0.1.7", + "0.1.8": "http://registry.npmjs.org/geojs/0.1.8" + }, + "dist": { + "0.1.4": { + "shasum": "4400c369ee63c0e6226b787201e7b8dcea951871", + "tarball": "http://registry.npmjs.org/geojs/-/geojs-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "5889bd4ccd80e702072d3a1eb89e4e05c2c5a1e5", + "tarball": "http://registry.npmjs.org/geojs/-/geojs-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "73534a610f6949f36a845622ac81d200cfb4de4d", + "tarball": "http://registry.npmjs.org/geojs/-/geojs-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "64ccc57a7ce682ddbffe3f00ab97947a54718c57", + "tarball": "http://registry.npmjs.org/geojs/-/geojs-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "f994752b00be19f63b65a9e8e66a5af5ebb52957", + "tarball": "http://registry.npmjs.org/geojs/-/geojs-0.1.8.tgz" + } + }, + "url": "http://registry.npmjs.org/geojs/" + }, + "geolib": { + "name": "geolib", + "description": "Growing library to perform geo specific tasks", + "dist-tags": { + "latest": "1.1.7" + }, + "maintainers": [ + { + "name": "manuelbieh", + "email": "node@manuelbieh.de" + } + ], + "time": { + "modified": "2011-09-23T06:30:50.280Z", + "created": "2011-09-23T06:30:48.898Z", + "1.1.7": "2011-09-23T06:30:50.280Z" + }, + "author": { + "name": "Manuel Bieh", + "url": "http://www.manuelbieh.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/manuelbieh/geolib.git" + }, + "versions": { + "1.1.7": "http://registry.npmjs.org/geolib/1.1.7" + }, + "dist": { + "1.1.7": { + "shasum": "fd66a3ef3335a6e7a567429b8042073fab63517b", + "tarball": "http://registry.npmjs.org/geolib/-/geolib-1.1.7.tgz" + } + }, + "keywords": [ + "geolocation", + "geo", + "distance" + ], + "url": "http://registry.npmjs.org/geolib/" + }, + "geoloqi": { + "name": "geoloqi", + "description": "Library for interacting with the Geoloqi API. Works on Node.js and the client side.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "kyledrake", + "email": "kyledrake@gmail.com" + } + ], + "time": { + "modified": "2011-10-12T21:12:50.897Z", + "created": "2011-10-12T21:12:50.513Z", + "0.0.1": "2011-10-12T21:12:50.897Z" + }, + "author": { + "name": "Kyle Drake", + "email": "kyledrake@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/geoloqi/geoloqi-js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/geoloqi/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "9ea2f4e729a6a80611230ad262e34662aea36ffe", + "tarball": "http://registry.npmjs.org/geoloqi/-/geoloqi-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/geoloqi/" + }, + "geonode": { + "name": "geonode", + "description": "Geography for Node.js", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "proppy", + "email": "proppy@aminche.com" + } + ], + "author": { + "name": "Paul Smith", + "email": "paulsmith@pobox.com" + }, + "time": { + "modified": "2011-04-16T00:38:50.706Z", + "created": "2011-04-14T23:04:53.949Z", + "0.0.1": "2011-04-14T23:04:53.949Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/geonode/0.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/geonode/-/geonode-0.0.1.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "4d0dbc950b9f2953073102148e00e41944916910", + "tarball": "http://registry.npmjs.org/geonode/-/geonode-0.0.1-0.4-sunos-5.11.tgz" + } + } + } + }, + "keywords": [ + "geography", + "geo", + "gis", + "geos", + "client" + ], + "url": "http://registry.npmjs.org/geonode/" + }, + "geoutils": { + "name": "geoutils", + "description": "Geographic Formulas for CommonJS", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "moshen", + "email": "moshen.colin@gmail.com" + } + ], + "versions": { + "0.1.0": "http://registry.npmjs.org/geoutils/0.1.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/geoutils/-/geoutils-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/geoutils/" + }, + "gerbil": { + "name": "gerbil", + "description": "Gerbil: Inquisitive, friendly animals that rarely bite, TDD for the rest of us", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "elcuervo", + "email": "elcuervo@elcuervo.co" + } + ], + "time": { + "modified": "2011-12-01T22:14:39.553Z", + "created": "2011-09-05T18:21:51.446Z", + "0.1.0": "2011-09-05T18:21:52.469Z", + "0.2.0": "2011-11-30T22:48:41.435Z", + "0.2.1": "2011-12-01T22:14:39.553Z" + }, + "author": { + "name": "elCuervo", + "email": "elcuervo@elcuervo.co" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/gerbil/0.1.0", + "0.2.0": "http://registry.npmjs.org/gerbil/0.2.0", + "0.2.1": "http://registry.npmjs.org/gerbil/0.2.1" + }, + "dist": { + "0.1.0": { + "shasum": "b36acecdf8ac570026bccbb455ca8c4cdca1933c", + "tarball": "http://registry.npmjs.org/gerbil/-/gerbil-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "26fd5f9c77eeee97e66310784cd2443e36591ca4", + "tarball": "http://registry.npmjs.org/gerbil/-/gerbil-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "183e807784d09abbe6fa14b635aae5590de9974a", + "tarball": "http://registry.npmjs.org/gerbil/-/gerbil-0.2.1.tgz" + } + }, + "keywords": [ + "tdd", + "testing", + "gerbil", + "simple" + ], + "url": "http://registry.npmjs.org/gerbil/" + }, + "gerenuk": { + "name": "gerenuk", + "description": "Friendly dependency injection container", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "naneau", + "email": "npm@naneau.nl" + } + ], + "time": { + "modified": "2011-04-04T17:45:43.440Z", + "created": "2011-04-03T19:43:58.099Z", + "0.0.1": "2011-04-03T19:43:58.454Z", + "0.0.2": "2011-04-04T15:50:26.268Z", + "0.0.3": "2011-04-04T16:45:32.020Z", + "0.0.4": "2011-04-04T17:45:43.440Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/naneau/gerenuk.git" + }, + "author": { + "name": "Maurice Fonk", + "email": "gerenuk@naneau.nl" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/gerenuk/0.0.1", + "0.0.2": "http://registry.npmjs.org/gerenuk/0.0.2", + "0.0.3": "http://registry.npmjs.org/gerenuk/0.0.3", + "0.0.4": "http://registry.npmjs.org/gerenuk/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "c06cabbd8b22ac9653c9a34b00027491f3426b87", + "tarball": "http://registry.npmjs.org/gerenuk/-/gerenuk-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "7d7ca24b541c2fb18a48485807a0dbacac420ae4", + "tarball": "http://registry.npmjs.org/gerenuk/-/gerenuk-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "4496bad96a21f318df55f7fe9a5d075e3d691bf9", + "tarball": "http://registry.npmjs.org/gerenuk/-/gerenuk-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "e2f9d20e219e0331e7b05cedb9e333df55e6cbf6", + "tarball": "http://registry.npmjs.org/gerenuk/-/gerenuk-0.0.4.tgz" + } + }, + "keywords": [ + "dependency injection", + "dependencies", + "injection", + "dic" + ], + "url": "http://registry.npmjs.org/gerenuk/" + }, + "gesundheit": { + "name": "gesundheit", + "description": "Concise SQL generation in coffee-script", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "grncdr", + "email": "glurgle@gmail.com" + } + ], + "time": { + "modified": "2011-12-07T05:35:39.478Z", + "created": "2011-10-11T19:18:51.312Z", + "0.0.1": "2011-10-11T19:18:52.748Z", + "0.0.2": "2011-10-13T01:01:18.252Z", + "0.0.3": "2011-10-15T22:19:14.711Z", + "0.0.4": "2011-10-16T01:51:18.927Z", + "0.1.1": "2011-10-17T04:06:44.161Z", + "0.1.2": "2011-10-17T04:40:42.202Z", + "0.1.3": "2011-10-24T18:14:58.243Z", + "0.1.4": "2011-10-26T23:08:12.474Z", + "0.1.5": "2011-12-07T01:41:14.217Z", + "0.2.1": "2011-12-07T05:35:39.478Z" + }, + "author": { + "name": "Stephen Sugden", + "email": "stephen@betsmartmedia.com", + "url": "http://www.betsmartmedia.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/gesundheit/0.0.1", + "0.0.2": "http://registry.npmjs.org/gesundheit/0.0.2", + "0.0.3": "http://registry.npmjs.org/gesundheit/0.0.3", + "0.0.4": "http://registry.npmjs.org/gesundheit/0.0.4", + "0.1.1": "http://registry.npmjs.org/gesundheit/0.1.1", + "0.1.2": "http://registry.npmjs.org/gesundheit/0.1.2", + "0.1.3": "http://registry.npmjs.org/gesundheit/0.1.3", + "0.1.4": "http://registry.npmjs.org/gesundheit/0.1.4", + "0.1.5": "http://registry.npmjs.org/gesundheit/0.1.5", + "0.2.1": "http://registry.npmjs.org/gesundheit/0.2.1" + }, + "dist": { + "0.0.1": { + "shasum": "f11c8e537b733517971a62cde77cd3e7be1c6e48", + "tarball": "http://registry.npmjs.org/gesundheit/-/gesundheit-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "ccc8fae67e09fee1c1cecc94b510f7fc4e0f1d48", + "tarball": "http://registry.npmjs.org/gesundheit/-/gesundheit-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "46ad8730cc908af8161ee92fff872af0339c19df", + "tarball": "http://registry.npmjs.org/gesundheit/-/gesundheit-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "4358a9d34f4ce8e7b160e619c8617af278fc55cf", + "tarball": "http://registry.npmjs.org/gesundheit/-/gesundheit-0.0.4.tgz" + }, + "0.1.1": { + "shasum": "22b44e7926288e8c5dba5a5345b950b3315ac967", + "tarball": "http://registry.npmjs.org/gesundheit/-/gesundheit-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "adc0ec9739cf75ec7168dc92af81ddfa701c7a0e", + "tarball": "http://registry.npmjs.org/gesundheit/-/gesundheit-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "fb0a2cff70f5a1250535bbf7427e4dfa5d6afc9c", + "tarball": "http://registry.npmjs.org/gesundheit/-/gesundheit-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "ec64f63c66c0c55bce8d8c26689f943ca0175cea", + "tarball": "http://registry.npmjs.org/gesundheit/-/gesundheit-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "dfad6ea59599735f25646768ec87b2cfc8105272", + "tarball": "http://registry.npmjs.org/gesundheit/-/gesundheit-0.1.5.tgz" + }, + "0.2.1": { + "shasum": "e57ac8d1ca13b52b8449131be7dcf6b751bd7758", + "tarball": "http://registry.npmjs.org/gesundheit/-/gesundheit-0.2.1.tgz" + } + }, + "url": "http://registry.npmjs.org/gesundheit/" + }, + "get": { + "name": "get", + "description": "A slightly higher-level HTTP client for node.", + "dist-tags": { + "latest": "1.1.2" + }, + "maintainers": [ + { + "name": "tmcw", + "email": "macwright@gmail.com" + }, + { + "name": "kkaefer", + "email": "kkaefer@gmail.com" + } + ], + "time": { + "modified": "2011-12-01T18:17:36.026Z", + "created": "2011-04-28T18:25:45.724Z", + "0.1.1": "2011-04-28T18:25:45.871Z", + "0.2.1": "2011-05-09T15:55:56.770Z", + "0.3.0": "2011-05-09T17:30:00.073Z", + "0.4.0": "2011-07-01T17:16:46.915Z", + "0.4.1": "2011-07-01T19:12:34.945Z", + "0.4.2": "2011-07-18T19:59:38.630Z", + "1.0.0": "2011-10-17T17:03:20.148Z", + "1.1.0": "2011-10-17T23:02:58.025Z", + "1.1.1": "2011-11-30T18:45:44.993Z", + "1.1.2": "2011-12-01T18:17:36.026Z" + }, + "author": { + "name": "Tom MacWright", + "email": "macwright@gmail.com" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/get/0.1.1", + "0.2.1": "http://registry.npmjs.org/get/0.2.1", + "0.3.0": "http://registry.npmjs.org/get/0.3.0", + "0.4.0": "http://registry.npmjs.org/get/0.4.0", + "0.4.1": "http://registry.npmjs.org/get/0.4.1", + "0.4.2": "http://registry.npmjs.org/get/0.4.2", + "1.0.0": "http://registry.npmjs.org/get/1.0.0", + "1.1.0": "http://registry.npmjs.org/get/1.1.0", + "1.1.1": "http://registry.npmjs.org/get/1.1.1", + "1.1.2": "http://registry.npmjs.org/get/1.1.2" + }, + "dist": { + "0.1.1": { + "shasum": "b9b6abb73e56af7f565e5740d3b78e691c68f62a", + "tarball": "http://registry.npmjs.org/get/-/get-0.1.1.tgz" + }, + "0.2.1": { + "shasum": "0c009ccfcb4563746d08ec843bd09ef1830abb77", + "tarball": "http://registry.npmjs.org/get/-/get-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "fa5ba3df7132c5aeb7ae77f6f5e4cf3de3ac3dac", + "tarball": "http://registry.npmjs.org/get/-/get-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "acad72fdbc4e19677c73b2467d8f5200803224fd", + "tarball": "http://registry.npmjs.org/get/-/get-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "1e99f6e8df9cbb65e0536cbd4057783365cff7e4", + "tarball": "http://registry.npmjs.org/get/-/get-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "3a9a80e7f5f4470f65be747886980fcd0a82ecb8", + "tarball": "http://registry.npmjs.org/get/-/get-0.4.2.tgz" + }, + "1.0.0": { + "shasum": "64d6f70914babd5c7b4d4d2368b1deb49cff8c6f", + "tarball": "http://registry.npmjs.org/get/-/get-1.0.0.tgz" + }, + "1.1.0": { + "shasum": "c6a87f8a9b08c46b834c6ccacdd4746916388126", + "tarball": "http://registry.npmjs.org/get/-/get-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "ea2230e507a3e4a878628bdf878fd31f1ba8d844", + "tarball": "http://registry.npmjs.org/get/-/get-1.1.1.tgz" + }, + "1.1.2": { + "shasum": "e4a5bf37d0af6d78c4a59c6e45aebf652db60a7e", + "tarball": "http://registry.npmjs.org/get/-/get-1.1.2.tgz" + } + }, + "keywords": [ + "http", + "client", + "request", + "get" + ], + "url": "http://registry.npmjs.org/get/" + }, + "get-post": { + "name": "get-post", + "description": "Simple Wrapper around Request to provide cli get and post", + "dist-tags": { + "latest": "0.0.4444" + }, + "maintainers": [ + { + "name": "jackhq", + "email": "tom@jackhq.com" + } + ], + "time": { + "modified": "2011-10-01T18:33:14.416Z", + "created": "2011-09-27T03:24:05.905Z", + "0.0.2": "2011-09-27T03:24:06.768Z", + "0.0.3": "2011-09-27T03:29:05.723Z", + "0.0.4444": "2011-10-01T18:33:14.416Z" + }, + "author": { + "name": "Tom Wilson" + }, + "repository": { + "type": "git", + "url": "git://github.com/twilson63/get-post.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/get-post/0.0.2", + "0.0.3": "http://registry.npmjs.org/get-post/0.0.3", + "0.0.4444": "http://registry.npmjs.org/get-post/0.0.4444" + }, + "dist": { + "0.0.2": { + "shasum": "1b89338ba6a2e7c5dbc70259619709bcada45776", + "tarball": "http://registry.npmjs.org/get-post/-/get-post-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "ed3846a2f721cf37afd162e2b2b4ea349e11ed9d", + "tarball": "http://registry.npmjs.org/get-post/-/get-post-0.0.3.tgz" + }, + "0.0.4444": { + "shasum": "60f5133aae2563925bd12a17e34da6e815ddc0a8", + "tarball": "http://registry.npmjs.org/get-post/-/get-post-0.0.4444.tgz" + } + }, + "url": "http://registry.npmjs.org/get-post/" + }, + "getline": { + "name": "getline", + "description": "Classes for reading line-terminated data in files", + "dist-tags": { + "latest": "1.0.2" + }, + "readme": null, + "maintainers": [ + { + "name": "cvine", + "email": "chris@cvine.freeserve.co.uk" + } + ], + "time": { + "modified": "2011-11-16T09:35:03.822Z", + "created": "2011-11-07T13:32:55.382Z", + "0.0.1": "2011-11-07T13:32:56.903Z", + "0.0.2": "2011-11-09T09:51:12.777Z", + "1.0.0": "2011-11-10T12:42:54.474Z", + "1.0.1": "2011-11-13T10:20:22.506Z", + "1.0.2": "2011-11-16T09:35:03.822Z" + }, + "author": { + "name": "Chris Vine", + "email": "chris@cvine.freeserve.co.uk" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/getline/0.0.1", + "0.0.2": "http://registry.npmjs.org/getline/0.0.2", + "1.0.0": "http://registry.npmjs.org/getline/1.0.0", + "1.0.1": "http://registry.npmjs.org/getline/1.0.1", + "1.0.2": "http://registry.npmjs.org/getline/1.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "668bcdad85e12ffb46043271b873fcd701f06360", + "tarball": "http://registry.npmjs.org/getline/-/getline-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c62d0039a99c4592e6911f1d784039f2a2f42697", + "tarball": "http://registry.npmjs.org/getline/-/getline-0.0.2.tgz" + }, + "1.0.0": { + "shasum": "ae305af7b6fb4fcedc6355fd379be131aa49c6b9", + "tarball": "http://registry.npmjs.org/getline/-/getline-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "31bf24f796bcb99ac2b272bd68897d707f9e90fb", + "tarball": "http://registry.npmjs.org/getline/-/getline-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "942af6ddb8f618243ce275d3d2e43409d0b55381", + "tarball": "http://registry.npmjs.org/getline/-/getline-1.0.2.tgz" + } + }, + "keywords": [ + "files", + "getline", + "extracting lines", + "reading file lines" + ], + "url": "http://registry.npmjs.org/getline/" + }, + "getopt": { + "name": "getopt", + "description": "NodeJS command line 'parser'", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "dresende", + "email": "dresende@thinkdigital.pt" + } + ], + "time": { + "modified": "2011-03-25T14:48:15.753Z", + "created": "2011-03-25T14:48:07.368Z", + "0.1.0": "2011-03-25T14:48:15.753Z" + }, + "author": { + "name": "Diogo Resende", + "email": "dresende@thinkdigital.pt", + "url": "http://www.thinkdigital.pt" + }, + "repository": { + "type": "git", + "url": "git://github.com/dresende/node-getopt.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/getopt/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "14af82a87a015e63877a2b0ea147e26ab53f806c", + "tarball": "http://registry.npmjs.org/getopt/-/getopt-0.1.0.tgz" + } + }, + "keywords": [ + "getopt", + "command", + "console", + "parameter" + ], + "url": "http://registry.npmjs.org/getopt/" + }, + "getrusage": { + "name": "getrusage", + "description": "C++ Port of Unix getrusage for getting cputime, usertime and other process information", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "davglass", + "email": "davglass@gmail.com" + } + ], + "time": { + "modified": "2011-11-11T17:49:13.494Z", + "created": "2011-03-06T04:28:28.175Z", + "0.1.3": "2011-03-06T04:28:28.410Z", + "0.1.4": "2011-11-11T16:57:28.697Z", + "0.2.0": "2011-11-11T17:49:13.494Z" + }, + "versions": { + "0.1.3": "http://registry.npmjs.org/getrusage/0.1.3", + "0.1.4": "http://registry.npmjs.org/getrusage/0.1.4", + "0.2.0": "http://registry.npmjs.org/getrusage/0.2.0" + }, + "dist": { + "0.1.3": { + "shasum": "5cf6eb2363c160a269639ca45a30a4b735cf316d", + "tarball": "http://registry.npmjs.org/getrusage/-/getrusage-0.1.3.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "1eec5f94d5b45d891d91cd053a195c0e4282a072", + "tarball": "http://registry.npmjs.org/getrusage/-/getrusage-0.1.3-0.4-sunos-5.11.tgz" + } + } + }, + "0.1.4": { + "shasum": "5d878f085246d5ac2caf82b13fc8b4f6cd0f4510", + "tarball": "http://registry.npmjs.org/getrusage/-/getrusage-0.1.4.tgz" + }, + "0.2.0": { + "shasum": "47be8462c3d30d4b3a72e509b65420f765a07eb0", + "tarball": "http://registry.npmjs.org/getrusage/-/getrusage-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/getrusage/" + }, + "gettext": { + "name": "gettext", + "description": "A GNU gettext implementation for node.js", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "dev0", + "email": "daniel.baulig@gmx.de" + } + ], + "time": { + "modified": "2011-05-02T19:27:48.301Z", + "created": "2011-05-02T19:27:47.974Z", + "0.0.1": "2011-05-02T19:27:48.301Z" + }, + "author": { + "name": "Daniel Baulig", + "email": "daniel.baulig@gmx.de", + "url": "http://www.danielbaulig.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/DanielBaulig/node-gettext.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/gettext/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "95c1bdbe191b57449380973928e0b486cb8beb6b", + "tarball": "http://registry.npmjs.org/gettext/-/gettext-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/gettext/" + }, + "getz": { + "name": "getz", + "description": "A simple way of extracting the page GET variables", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "gorillatron", + "email": "jornandretangen@gmail.com" + } + ], + "time": { + "modified": "2011-08-22T11:09:24.323Z", + "created": "2011-08-22T11:00:09.149Z", + "0.0.1": "2011-08-22T11:00:09.882Z", + "0.0.2": "2011-08-22T11:07:23.127Z" + }, + "author": { + "name": "Jorn Andre Tangen @gorillatron" + }, + "repository": { + "type": "git", + "url": "git://github.com/andtan/getz.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/getz/0.0.1", + "0.0.2": "http://registry.npmjs.org/getz/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "d252af1305bcb81979668052ff6e2d9e410efd18", + "tarball": "http://registry.npmjs.org/getz/-/getz-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "0a46d101dc5a49c6da3e0900fbbb4de4f34534a4", + "tarball": "http://registry.npmjs.org/getz/-/getz-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/getz/" + }, + "gex": { + "name": "gex", + "description": "Glob expressions for JavaScript", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "rjrodger", + "email": "richard@ricebridge.com" + } + ], + "time": { + "modified": "2011-03-03T23:48:26.649Z", + "created": "2011-03-03T23:48:26.206Z", + "0.0.1": "2011-03-03T23:48:26.649Z" + }, + "author": { + "name": "Richard Rodger", + "email": "richard@ricebridge.com", + "url": "http://richardrodger.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/rjrodger/gex.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/gex/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "0c5910af0a3d72f07c9393810af69cfe4f928d3f", + "tarball": "http://registry.npmjs.org/gex/-/gex-0.0.1.tgz" + } + }, + "keywords": [ + "glob", + "star", + "question", + "mark", + "expression", + "regular" + ], + "url": "http://registry.npmjs.org/gex/" + }, + "gexode": { + "name": "gexode", + "description": "Primitive XML generator for node.js", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "pirxpilot", + "email": "pirxpilot@code42day.org" + } + ], + "time": { + "modified": "2011-02-20T23:38:24.293Z", + "created": "2011-02-20T23:38:23.976Z", + "0.0.1": "2011-02-20T23:38:24.293Z" + }, + "author": { + "name": "Damian Krzeminski", + "email": "pirxpilot@code42day.org" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/gexode/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "ecaf39f30df09b9f521d2e057b74292ea5424fce", + "tarball": "http://registry.npmjs.org/gexode/-/gexode-0.0.1.tgz" + } + }, + "keywords": [ + "xml" + ], + "url": "http://registry.npmjs.org/gexode/" + }, + "gfx": { + "name": "gfx", + "description": "3D CSS3 animation library for jQuery", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "maccman", + "email": "maccman@gmail.com" + } + ], + "time": { + "modified": "2011-09-17T11:07:09.896Z", + "created": "2011-08-06T00:51:11.334Z", + "0.0.1": "2011-08-06T00:51:13.975Z", + "0.0.2": "2011-09-15T11:59:29.503Z", + "0.0.3": "2011-09-15T12:52:10.754Z", + "0.0.4": "2011-09-17T11:07:09.896Z" + }, + "author": { + "name": "maccman" + }, + "repository": { + "type": "git", + "url": "git://github.com/maccman/gfx.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/gfx/0.0.1", + "0.0.2": "http://registry.npmjs.org/gfx/0.0.2", + "0.0.3": "http://registry.npmjs.org/gfx/0.0.3", + "0.0.4": "http://registry.npmjs.org/gfx/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "aece1ff6bd6bf48e811e0ae032f018b0430caaff", + "tarball": "http://registry.npmjs.org/gfx/-/gfx-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f1c1e25a0a44785a29eb235a6bbdec23116ce853", + "tarball": "http://registry.npmjs.org/gfx/-/gfx-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "ca9eb720bf6a44658cf060c0443c297adb500c1f", + "tarball": "http://registry.npmjs.org/gfx/-/gfx-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "5ad4831207cb692b0dfba1b3f84e8f3a415e61f7", + "tarball": "http://registry.npmjs.org/gfx/-/gfx-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/gfx/" + }, + "gh-markdown": { + "name": "gh-markdown", + "description": "Quick & Dirty github-flavored command-line application", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "mattmueller", + "email": "mattmuelle@gmail.com" + } + ], + "time": { + "modified": "2011-10-23T08:57:05.394Z", + "created": "2011-10-23T08:14:10.126Z", + "0.0.1": "2011-10-23T08:14:12.156Z", + "0.0.2": "2011-10-23T08:57:05.394Z" + }, + "author": { + "name": "Matt Mueller", + "email": "mattmuelle@gmail.com" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/gh-markdown/0.0.1", + "0.0.2": "http://registry.npmjs.org/gh-markdown/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "78a9b5de149df9cb766556ecc120120e1d7de0fb", + "tarball": "http://registry.npmjs.org/gh-markdown/-/gh-markdown-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "4da60fdefb0cd55dba2a20e0c66ef3438d11b84f", + "tarball": "http://registry.npmjs.org/gh-markdown/-/gh-markdown-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/gh-markdown/" + }, + "gherkin": { + "name": "gherkin", + "description": "A fast Gherkin lexer/parser based on the Ragel State Machine Compiler.", + "dist-tags": { + "latest": "2.7.1" + }, + "maintainers": [ + { + "name": "aslakhellesoy", + "email": "aslak.hellesoy@gmail.com" + } + ], + "time": { + "modified": "2011-12-10T16:40:50.666Z", + "created": "2011-04-19T05:14:25.302Z", + "2.3.4": "2011-04-19T05:14:25.921Z", + "2.3.6": "2011-04-19T23:36:55.236Z", + "2.3.7": "2011-05-02T14:10:45.742Z", + "2.3.8": "2011-05-16T22:12:06.053Z", + "2.3.9": "2011-05-23T22:15:12.230Z", + "2.3.10": "2011-05-30T18:48:21.079Z", + "2.4.0": "2011-06-05T20:18:45.805Z", + "2.4.1": "2011-06-19T23:12:46.512Z", + "2.4.2": "2011-07-08T06:52:56.144Z", + "2.4.3": "2011-07-09T21:16:37.763Z", + "2.4.4": "2011-07-10T02:11:28.235Z", + "2.4.5": "2011-07-10T02:28:01.337Z", + "2.4.6": "2011-08-07T11:30:20.557Z", + "2.4.7": "2011-08-17T00:39:06.525Z", + "2.4.8": "2011-08-17T01:11:10.375Z", + "2.4.9": "2011-08-17T10:09:49.816Z", + "2.4.10": "2011-08-17T10:34:27.393Z", + "2.4.11": "2011-08-17T10:51:52.737Z", + "2.4.13": "2011-08-20T12:33:49.312Z", + "2.4.14": "2011-08-20T15:11:30.974Z", + "2.4.15": "2011-08-23T21:59:56.482Z", + "2.4.16": "2011-08-25T21:00:03.915Z", + "2.4.17": "2011-09-04T21:31:53.902Z", + "2.4.18": "2011-09-05T07:57:16.016Z", + "2.4.19": "2011-09-16T22:29:25.688Z", + "2.4.20": "2011-09-16T22:41:08.787Z", + "2.4.21": "2011-09-16T23:30:08.009Z", + "2.5.0": "2011-09-22T19:37:47.330Z", + "2.5.1": "2011-09-23T19:23:27.347Z", + "2.5.2": "2011-10-13T15:13:39.671Z", + "2.5.3": "2011-10-18T18:21:25.679Z", + "2.5.4": "2011-10-20T07:44:29.238Z", + "2.6.0": "2011-10-30T22:24:02.181Z", + "2.6.1": "2011-10-30T23:29:25.749Z", + "2.6.2": "2011-10-31T23:11:50.839Z", + "2.6.3": "2011-11-11T15:16:57.848Z", + "2.6.4": "2011-11-12T15:27:22.282Z", + "2.6.5": "2011-11-15T18:59:50.286Z", + "2.6.6": "2011-11-19T10:03:41.977Z", + "2.6.7": "2011-11-22T09:45:10.066Z", + "2.6.8": "2011-11-23T22:11:10.165Z", + "2.6.9": "2011-12-03T21:45:50.150Z", + "2.7.1": "2011-12-10T16:40:50.666Z" + }, + "author": { + "name": "Aslak Hellesøy", + "email": "aslak.hellesoy@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/cucumber/gherkin.git" + }, + "versions": { + "2.3.4": "http://registry.npmjs.org/gherkin/2.3.4", + "2.3.6": "http://registry.npmjs.org/gherkin/2.3.6", + "2.3.7": "http://registry.npmjs.org/gherkin/2.3.7", + "2.3.8": "http://registry.npmjs.org/gherkin/2.3.8", + "2.3.9": "http://registry.npmjs.org/gherkin/2.3.9", + "2.3.10": "http://registry.npmjs.org/gherkin/2.3.10", + "2.4.0": "http://registry.npmjs.org/gherkin/2.4.0", + "2.4.1": "http://registry.npmjs.org/gherkin/2.4.1", + "2.4.2": "http://registry.npmjs.org/gherkin/2.4.2", + "2.4.3": "http://registry.npmjs.org/gherkin/2.4.3", + "2.4.4": "http://registry.npmjs.org/gherkin/2.4.4", + "2.4.5": "http://registry.npmjs.org/gherkin/2.4.5", + "2.4.6": "http://registry.npmjs.org/gherkin/2.4.6", + "2.4.7": "http://registry.npmjs.org/gherkin/2.4.7", + "2.4.8": "http://registry.npmjs.org/gherkin/2.4.8", + "2.4.9": "http://registry.npmjs.org/gherkin/2.4.9", + "2.4.10": "http://registry.npmjs.org/gherkin/2.4.10", + "2.4.11": "http://registry.npmjs.org/gherkin/2.4.11", + "2.4.13": "http://registry.npmjs.org/gherkin/2.4.13", + "2.4.14": "http://registry.npmjs.org/gherkin/2.4.14", + "2.4.15": "http://registry.npmjs.org/gherkin/2.4.15", + "2.4.16": "http://registry.npmjs.org/gherkin/2.4.16", + "2.4.17": "http://registry.npmjs.org/gherkin/2.4.17", + "2.4.18": "http://registry.npmjs.org/gherkin/2.4.18", + "2.4.19": "http://registry.npmjs.org/gherkin/2.4.19", + "2.4.20": "http://registry.npmjs.org/gherkin/2.4.20", + "2.4.21": "http://registry.npmjs.org/gherkin/2.4.21", + "2.5.0": "http://registry.npmjs.org/gherkin/2.5.0", + "2.5.1": "http://registry.npmjs.org/gherkin/2.5.1", + "2.5.2": "http://registry.npmjs.org/gherkin/2.5.2", + "2.5.3": "http://registry.npmjs.org/gherkin/2.5.3", + "2.5.4": "http://registry.npmjs.org/gherkin/2.5.4", + "2.6.0": "http://registry.npmjs.org/gherkin/2.6.0", + "2.6.1": "http://registry.npmjs.org/gherkin/2.6.1", + "2.6.2": "http://registry.npmjs.org/gherkin/2.6.2", + "2.6.3": "http://registry.npmjs.org/gherkin/2.6.3", + "2.6.4": "http://registry.npmjs.org/gherkin/2.6.4", + "2.6.5": "http://registry.npmjs.org/gherkin/2.6.5", + "2.6.6": "http://registry.npmjs.org/gherkin/2.6.6", + "2.6.7": "http://registry.npmjs.org/gherkin/2.6.7", + "2.6.8": "http://registry.npmjs.org/gherkin/2.6.8", + "2.6.9": "http://registry.npmjs.org/gherkin/2.6.9", + "2.7.1": "http://registry.npmjs.org/gherkin/2.7.1" + }, + "dist": { + "2.3.4": { + "shasum": "45c37eaf6e6fea1e9808d620e8df1459cf28de8f", + "tarball": "http://registry.npmjs.org/gherkin/-/gherkin-2.3.4.tgz" + }, + "2.3.6": { + "shasum": "6da9fafd36408775bea085401d9d10165b7284e0", + "tarball": "http://registry.npmjs.org/gherkin/-/gherkin-2.3.6.tgz" + }, + "2.3.7": { + "shasum": "0ae7009ad8626ff7e27339406647f2dcc6f48b53", + "tarball": "http://registry.npmjs.org/gherkin/-/gherkin-2.3.7.tgz" + }, + "2.3.8": { + "shasum": "07ce0a60f63388efa1eb92ab6205fee6ef353cd2", + "tarball": "http://registry.npmjs.org/gherkin/-/gherkin-2.3.8.tgz" + }, + "2.3.9": { + "shasum": "9d7e595eeb6bcdd6b92dc5f44c0c90d42571ff5d", + "tarball": "http://registry.npmjs.org/gherkin/-/gherkin-2.3.9.tgz" + }, + "2.3.10": { + "shasum": "855cb1ac8711461a9e5ee56f3c2a07dfa0a3c321", + "tarball": "http://registry.npmjs.org/gherkin/-/gherkin-2.3.10.tgz" + }, + "2.4.0": { + "shasum": "705aed58dd39187a0588a4acf2a540de58db3047", + "tarball": "http://registry.npmjs.org/gherkin/-/gherkin-2.4.0.tgz" + }, + "2.4.1": { + "shasum": "aadc3ceb63a5ff093589a0d9e933a6fd34efa0dc", + "tarball": "http://registry.npmjs.org/gherkin/-/gherkin-2.4.1.tgz" + }, + "2.4.2": { + "shasum": "ec169e312c8ccd6691b3feb4c4f0ebcb90f74baa", + "tarball": "http://registry.npmjs.org/gherkin/-/gherkin-2.4.2.tgz" + }, + "2.4.3": { + "shasum": "96daf1dcb7f46c7461954ef2e75a7bae50d46a64", + "tarball": "http://registry.npmjs.org/gherkin/-/gherkin-2.4.3.tgz" + }, + "2.4.4": { + "shasum": "b2e129ec8548025c32eece73e983fdb8caa61308", + "tarball": "http://registry.npmjs.org/gherkin/-/gherkin-2.4.4.tgz" + }, + "2.4.5": { + "shasum": "e8b1df496a868601a7aca30802640d4ea7b6ef98", + "tarball": "http://registry.npmjs.org/gherkin/-/gherkin-2.4.5.tgz" + }, + "2.4.6": { + "shasum": "3039a4c78a43b375510c3ca96a53bd843cbf57eb", + "tarball": "http://registry.npmjs.org/gherkin/-/gherkin-2.4.6.tgz" + }, + "2.4.7": { + "shasum": "05efca9852ae914149ce5b9bc80341e67a690563", + "tarball": "http://registry.npmjs.org/gherkin/-/gherkin-2.4.7.tgz" + }, + "2.4.8": { + "shasum": "04fc72cd3973c91f842718f1fdc2d1fdc020f329", + "tarball": "http://registry.npmjs.org/gherkin/-/gherkin-2.4.8.tgz" + }, + "2.4.9": { + "shasum": "bbc8dbd1db944c966bdff74fb0f25dba15ca14a3", + "tarball": "http://registry.npmjs.org/gherkin/-/gherkin-2.4.9.tgz" + }, + "2.4.10": { + "shasum": "4d972de41db952c592fb3ddd2adb88be8b0835b7", + "tarball": "http://registry.npmjs.org/gherkin/-/gherkin-2.4.10.tgz" + }, + "2.4.11": { + "shasum": "48f9c0014df44ccbee714acdbd9fd2a7f236bc52", + "tarball": "http://registry.npmjs.org/gherkin/-/gherkin-2.4.11.tgz" + }, + "2.4.13": { + "shasum": "a78dcee4403594da1760b48550e80f4e3e9b8f9b", + "tarball": "http://registry.npmjs.org/gherkin/-/gherkin-2.4.13.tgz" + }, + "2.4.14": { + "shasum": "5bcdeb70ddf57c6f66ff833796f48f72486e1ca5", + "tarball": "http://registry.npmjs.org/gherkin/-/gherkin-2.4.14.tgz" + }, + "2.4.15": { + "shasum": "d766fa3bbaa6d56f32827fd5e84452824be73c39", + "tarball": "http://registry.npmjs.org/gherkin/-/gherkin-2.4.15.tgz" + }, + "2.4.16": { + "shasum": "ca6096d4348c85e18e525c5f5e0de79bbcc88736", + "tarball": "http://registry.npmjs.org/gherkin/-/gherkin-2.4.16.tgz" + }, + "2.4.17": { + "shasum": "2384de818b036f4c75a3fc6e850266d3ae85ff17", + "tarball": "http://registry.npmjs.org/gherkin/-/gherkin-2.4.17.tgz" + }, + "2.4.18": { + "shasum": "e0ebfff23105f1257eae7ce30f410f6beb3007af", + "tarball": "http://registry.npmjs.org/gherkin/-/gherkin-2.4.18.tgz" + }, + "2.4.19": { + "shasum": "fa38c83237f4210b19955b74fb273ca1cbc4c5f3", + "tarball": "http://registry.npmjs.org/gherkin/-/gherkin-2.4.19.tgz" + }, + "2.4.20": { + "shasum": "d3010f1eaeec153d26616dae133d536376ebcf32", + "tarball": "http://registry.npmjs.org/gherkin/-/gherkin-2.4.20.tgz" + }, + "2.4.21": { + "shasum": "8a4a63f79bce128a0834ec2a24b6694d700f5976", + "tarball": "http://registry.npmjs.org/gherkin/-/gherkin-2.4.21.tgz" + }, + "2.5.0": { + "shasum": "6ea60be567a5803c3d51a4bc5b5506b64a24ec83", + "tarball": "http://registry.npmjs.org/gherkin/-/gherkin-2.5.0.tgz" + }, + "2.5.1": { + "shasum": "867e219a3b1e242e136ae409c8feb34bea27b618", + "tarball": "http://registry.npmjs.org/gherkin/-/gherkin-2.5.1.tgz" + }, + "2.5.2": { + "shasum": "f79aa58f6e9970e3558ef2b30c678cd7907cab37", + "tarball": "http://registry.npmjs.org/gherkin/-/gherkin-2.5.2.tgz" + }, + "2.5.3": { + "shasum": "838eebfc9679546c8a1c48dc4e705ae87f34f4db", + "tarball": "http://registry.npmjs.org/gherkin/-/gherkin-2.5.3.tgz" + }, + "2.5.4": { + "shasum": "cf9a6a2100911511461ae203509b3dee62125225", + "tarball": "http://registry.npmjs.org/gherkin/-/gherkin-2.5.4.tgz" + }, + "2.6.0": { + "shasum": "0a99688660ecef90bb5c8025bcb93af5c941e855", + "tarball": "http://registry.npmjs.org/gherkin/-/gherkin-2.6.0.tgz" + }, + "2.6.1": { + "shasum": "a694ec31525bfc456bce57bfeb22db3d3cc6e0ef", + "tarball": "http://registry.npmjs.org/gherkin/-/gherkin-2.6.1.tgz" + }, + "2.6.2": { + "shasum": "f430fc71bd62624169c5ab30509d7f2bd5fc2120", + "tarball": "http://registry.npmjs.org/gherkin/-/gherkin-2.6.2.tgz" + }, + "2.6.3": { + "shasum": "fbb7b62aae42a2f9c27b724a486f3dc4131f1876", + "tarball": "http://registry.npmjs.org/gherkin/-/gherkin-2.6.3.tgz" + }, + "2.6.4": { + "shasum": "22118305d41589cbd093f6664a969f7f4738994c", + "tarball": "http://registry.npmjs.org/gherkin/-/gherkin-2.6.4.tgz" + }, + "2.6.5": { + "shasum": "357e4b8b49d4d0e4f329b42da4b97461629e8f53", + "tarball": "http://registry.npmjs.org/gherkin/-/gherkin-2.6.5.tgz" + }, + "2.6.6": { + "shasum": "f96f4a0910e18729144be025ec46ec04239e3e66", + "tarball": "http://registry.npmjs.org/gherkin/-/gherkin-2.6.6.tgz" + }, + "2.6.7": { + "shasum": "b927e0e6d318f82b4b5141acbbc531ab71eba581", + "tarball": "http://registry.npmjs.org/gherkin/-/gherkin-2.6.7.tgz" + }, + "2.6.8": { + "shasum": "b6be8a72834d34431f97fd9f7fa2afb1db6f23e7", + "tarball": "http://registry.npmjs.org/gherkin/-/gherkin-2.6.8.tgz" + }, + "2.6.9": { + "shasum": "55607da3eab581e3a0e89afc7070c3b6503e2217", + "tarball": "http://registry.npmjs.org/gherkin/-/gherkin-2.6.9.tgz" + }, + "2.7.1": { + "shasum": "91cc66c2294c5ca05ad5415e12941769a29241af", + "tarball": "http://registry.npmjs.org/gherkin/-/gherkin-2.7.1.tgz" + } + }, + "keywords": [ + "testing", + "bdd", + "cucumber", + "gherkin", + "tests" + ], + "url": "http://registry.npmjs.org/gherkin/" + }, + "gherkin-ace": { + "name": "gherkin-ace", + "description": "I18n Gherkin modes for Ace", + "dist-tags": { + "latest": "1.0.0" + }, + "readme": null, + "maintainers": [ + { + "name": "aslakhellesoy", + "email": "aslak.hellesoy@gmail.com" + } + ], + "time": { + "modified": "2011-11-12T18:52:04.238Z", + "created": "2011-11-12T18:52:02.957Z", + "1.0.0": "2011-11-12T18:52:04.238Z" + }, + "author": { + "name": "Aslak Hellesøy", + "email": "aslak.hellesoy@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/cucumber/gherkin-syntax-highlighters.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/gherkin-ace/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "7cff4bae7b8cee94e683cc42b403a8035e21d88c", + "tarball": "http://registry.npmjs.org/gherkin-ace/-/gherkin-ace-1.0.0.tgz" + } + }, + "keywords": [ + "testing", + "bdd", + "cucumber", + "gherkin", + "tests" + ], + "url": "http://registry.npmjs.org/gherkin-ace/" + }, + "ghm": { + "name": "ghm", + "description": "github-flavored-markdown maintained by thomblake", + "dist-tags": { + "latest": "1.0.0-1" + }, + "maintainers": [ + { + "name": "thomblake", + "email": "thethomblake@gmail.com" + } + ], + "time": { + "modified": "2011-11-15T20:35:44.866Z", + "created": "2011-09-19T18:02:14.972Z", + "1.0.0": "2011-09-19T18:02:15.621Z", + "1.0.0-1": "2011-11-15T20:35:44.866Z" + }, + "author": { + "name": "tekkup", + "email": "git@tekkub.net", + "url": "http://tekkub.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/thomblake/github-flavored-markdown.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/ghm/1.0.0", + "1.0.0-1": "http://registry.npmjs.org/ghm/1.0.0-1" + }, + "dist": { + "1.0.0": { + "shasum": "5e9847c8d268b87e1be84d85acac15472275db1d", + "tarball": "http://registry.npmjs.org/ghm/-/ghm-1.0.0.tgz" + }, + "1.0.0-1": { + "shasum": "dcdb794a7cdd1ab2783500aee407c0d99f895ace", + "tarball": "http://registry.npmjs.org/ghm/-/ghm-1.0.0-1.tgz" + } + }, + "url": "http://registry.npmjs.org/ghm/" + }, + "ghost": { + "name": "ghost", + "description": "decompose and recompose functions", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "ecto", + "email": "diffference@gmail.com" + } + ], + "time": { + "modified": "2011-11-03T01:29:24.858Z", + "created": "2011-11-03T01:29:24.517Z", + "0.0.1": "2011-11-03T01:29:24.858Z" + }, + "author": { + "name": "Cam Pedersen", + "email": "diffference@gmail.com", + "url": "http://campedersen.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/ecto/ghost.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ghost/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "822547bf9c6365c1b3e60d0e2543ffbd35b57dc7", + "tarball": "http://registry.npmjs.org/ghost/-/ghost-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/ghost/" + }, + "gif": { + "name": "gif", + "description": "A C++ module for node-js that converts RGB and RGBA buffers to a GIF images (in memory).", + "dist-tags": { + "latest": "2.0.0" + }, + "maintainers": [ + { + "name": "pkrumins", + "email": "peteris.krumins@gmail.com" + } + ], + "time": { + "modified": "2011-03-18T19:42:17.235Z", + "created": "2011-03-18T19:42:17.235Z", + "1.0.0": "2011-03-18T19:42:17.235Z", + "1.0.1": "2011-03-18T19:42:17.235Z", + "1.0.2": "2011-03-18T19:42:17.235Z", + "1.0.3": "2011-03-18T19:42:17.235Z", + "2.0.0": "2011-03-18T19:42:17.235Z" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/gif/1.0.0", + "1.0.1": "http://registry.npmjs.org/gif/1.0.1", + "1.0.2": "http://registry.npmjs.org/gif/1.0.2", + "1.0.3": "http://registry.npmjs.org/gif/1.0.3", + "2.0.0": "http://registry.npmjs.org/gif/2.0.0" + }, + "dist": { + "1.0.0": { + "tarball": "http://packages:5984/gif/-/gif-1.0.0.tgz" + }, + "1.0.1": { + "tarball": "http://packages:5984/gif/-/gif-1.0.1.tgz" + }, + "1.0.2": { + "tarball": "http://packages:5984/gif/-/gif-1.0.2.tgz" + }, + "1.0.3": { + "tarball": "http://packages:5984/gif/-/gif-1.0.3.tgz" + }, + "2.0.0": { + "tarball": "http://registry.npmjs.org/gif/-/gif-2.0.0.tgz" + } + }, + "keywords": [ + "gif", + "rgba", + "rgb", + "image", + "picture" + ], + "url": "http://registry.npmjs.org/gif/" + }, + "gimme": { + "name": "gimme", + "description": "Simple command line utility that takes a name and shows domain and twitter availability.", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "dmotz", + "email": "motzdc@gmail.com" + } + ], + "time": { + "modified": "2011-08-11T19:12:26.470Z", + "created": "2011-07-19T22:43:32.647Z", + "0.1.0": "2011-07-19T22:43:32.803Z", + "0.2.0": "2011-08-09T20:24:55.218Z", + "0.2.1": "2011-08-11T19:12:26.470Z" + }, + "author": { + "name": "Dan Motzenbecker", + "url": "http://github.com/dmotz" + }, + "repository": { + "type": "git", + "url": "git://github.com/dmotz/gimme.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/gimme/0.1.0", + "0.2.0": "http://registry.npmjs.org/gimme/0.2.0", + "0.2.1": "http://registry.npmjs.org/gimme/0.2.1" + }, + "dist": { + "0.1.0": { + "shasum": "a540c939bee725abcd2296286082e205cff947b3", + "tarball": "http://registry.npmjs.org/gimme/-/gimme-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "634aa03e51d4f31ac22af08f32bcd7a766e2252a", + "tarball": "http://registry.npmjs.org/gimme/-/gimme-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "736950996bc43acaae945d039cf04f2fe42f48e8", + "tarball": "http://registry.npmjs.org/gimme/-/gimme-0.2.1.tgz" + } + }, + "keywords": [ + "domain", + "twitter", + "whois" + ], + "url": "http://registry.npmjs.org/gimme/" + }, + "giraffi": { + "name": "giraffi", + "description": "A small client that posts and retrieves your app logs", + "dist-tags": { + "latest": "0.1.9" + }, + "maintainers": [ + { + "name": "azukiwasher", + "email": "azukiwasher@higanworks.com" + }, + { + "name": "sutetotanuki", + "email": "sutetotanuki@gmail.com" + } + ], + "time": { + "modified": "2011-10-27T02:06:41.313Z", + "created": "2011-10-26T10:59:05.604Z", + "0.1.2": "2011-10-26T10:59:10.062Z", + "0.1.3": "2011-10-26T11:04:36.332Z", + "0.1.7": "2011-10-26T22:38:26.089Z", + "0.1.8": "2011-10-27T00:49:12.424Z", + "0.1.9": "2011-10-27T02:06:41.313Z" + }, + "author": { + "name": "azukiwasher" + }, + "repository": { + "type": "git", + "url": "git://github.com/giraffi/node-giraffi.git" + }, + "versions": { + "0.1.7": "http://registry.npmjs.org/giraffi/0.1.7", + "0.1.8": "http://registry.npmjs.org/giraffi/0.1.8", + "0.1.9": "http://registry.npmjs.org/giraffi/0.1.9" + }, + "dist": { + "0.1.7": { + "shasum": "dc8997e78739dfb38475d89464099d1bb7272b29", + "tarball": "http://registry.npmjs.org/giraffi/-/giraffi-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "58da3baa6c8da35cb21dfc881837b9c274d6cd9c", + "tarball": "http://registry.npmjs.org/giraffi/-/giraffi-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "3638af1507725ad5232c7f15ea4df132790a58c9", + "tarball": "http://registry.npmjs.org/giraffi/-/giraffi-0.1.9.tgz" + } + }, + "url": "http://registry.npmjs.org/giraffi/" + }, + "gist": { + "name": "gist", + "description": "Gist api client for node.js", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "emerleite", + "email": "emerleite@gmail.com" + } + ], + "time": { + "modified": "2011-11-06T16:07:06.052Z", + "created": "2011-03-04T04:37:57.087Z", + "0.1.0": "2011-03-04T04:37:57.641Z", + "0.1.1": "2011-03-09T18:39:22.471Z", + "0.1.2": "2011-05-10T13:04:18.404Z", + "0.2.0": "2011-11-06T16:07:06.052Z" + }, + "author": { + "name": "Emerson Macedo", + "email": "emerleite@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/emerleite/node-gist.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/gist/0.1.0", + "0.1.1": "http://registry.npmjs.org/gist/0.1.1", + "0.1.2": "http://registry.npmjs.org/gist/0.1.2", + "0.2.0": "http://registry.npmjs.org/gist/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "9972eb58da673e89a705f754d707d9a837f92a49", + "tarball": "http://registry.npmjs.org/gist/-/gist-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "f5e4087332e8bca1a7478c90b45df56b5dc13e12", + "tarball": "http://registry.npmjs.org/gist/-/gist-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "770c47c9af457cef81bffb08d15e75eaab2906c1", + "tarball": "http://registry.npmjs.org/gist/-/gist-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "d1a6ec3d4e86d5f406a73da5b2516cf72e8667f8", + "tarball": "http://registry.npmjs.org/gist/-/gist-0.2.0.tgz" + } + }, + "keywords": [ + "gist", + "github", + "api", + "package.json" + ], + "url": "http://registry.npmjs.org/gist/" + }, + "gist-clone": { + "name": "gist-clone", + "description": "clone all gists", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "tbranyen", + "email": "tim@tabdeveloper.com" + } + ], + "time": { + "modified": "2011-09-30T17:56:19.337Z", + "created": "2011-09-30T17:56:19.070Z", + "0.0.0": "2011-09-30T17:56:19.337Z" + }, + "author": { + "name": "@tbranyen", + "email": "tim@tabdeveloper.com" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/gist-clone/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "6f3f2b051591fcabad0ec956e0f736ec86051d8a", + "tarball": "http://registry.npmjs.org/gist-clone/-/gist-clone-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/gist-clone/" + }, + "gista": { + "name": "gista", + "description": "Simple cli utility for using gist.github.com like a unix pro.", + "dist-tags": { + "latest": "0.2.5" + }, + "maintainers": [ + { + "name": "Tim-Smart", + "email": "tim@fostle.com" + } + ], + "time": { + "modified": "2011-09-27T00:10:32.793Z", + "created": "2011-03-31T11:20:14.433Z", + "0.0.1": "2011-03-31T11:20:16.688Z", + "0.0.2": "2011-03-31T11:24:37.833Z", + "0.0.3": "2011-03-31T11:32:42.973Z", + "0.0.4": "2011-03-31T23:06:48.490Z", + "0.2.0": "2011-06-08T02:18:47.098Z", + "0.2.1": "2011-06-08T03:33:48.817Z", + "0.2.2": "2011-06-29T04:34:21.706Z", + "0.2.3": "2011-06-29T04:44:39.755Z", + "0.2.4": "2011-06-30T13:44:41.057Z", + "0.2.5": "2011-09-27T00:10:32.793Z" + }, + "author": { + "name": "Tim Smart" + }, + "repository": { + "type": "git", + "url": "git://github.com/Tim-Smart/gista.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/gista/0.0.1", + "0.0.2": "http://registry.npmjs.org/gista/0.0.2", + "0.0.3": "http://registry.npmjs.org/gista/0.0.3", + "0.0.4": "http://registry.npmjs.org/gista/0.0.4", + "0.2.0": "http://registry.npmjs.org/gista/0.2.0", + "0.2.1": "http://registry.npmjs.org/gista/0.2.1", + "0.2.2": "http://registry.npmjs.org/gista/0.2.2", + "0.2.3": "http://registry.npmjs.org/gista/0.2.3", + "0.2.4": "http://registry.npmjs.org/gista/0.2.4", + "0.2.5": "http://registry.npmjs.org/gista/0.2.5" + }, + "dist": { + "0.0.1": { + "shasum": "21ff5b80b80bdc8a1167ea21c17a081947f54988", + "tarball": "http://registry.npmjs.org/gista/-/gista-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "6e51edb16b35ce4c57651f179144bffa70b94a98", + "tarball": "http://registry.npmjs.org/gista/-/gista-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "653546ccb6e70e2374f9260c079b6e504c19901d", + "tarball": "http://registry.npmjs.org/gista/-/gista-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "25dc06e059bc7096e47147971b726858774b1b3f", + "tarball": "http://registry.npmjs.org/gista/-/gista-0.0.4.tgz" + }, + "0.2.0": { + "shasum": "ad2b4b41f43860d58c05827e6d01138b576637f9", + "tarball": "http://registry.npmjs.org/gista/-/gista-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "c36fa74b6291421d03c05e2cacd3258000000803", + "tarball": "http://registry.npmjs.org/gista/-/gista-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "b0158241714f699e9b687321f98e4d181905d369", + "tarball": "http://registry.npmjs.org/gista/-/gista-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "a981a2bd8993353fd3f384b629391198d9b5d22a", + "tarball": "http://registry.npmjs.org/gista/-/gista-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "a23a0504c131a067544f25f18adacca8e67600db", + "tarball": "http://registry.npmjs.org/gista/-/gista-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "ff2e127b0362876722c0567d8c6ad8b9c9d714e6", + "tarball": "http://registry.npmjs.org/gista/-/gista-0.2.5.tgz" + } + }, + "url": "http://registry.npmjs.org/gista/" + }, + "gisty": { + "name": "gisty", + "description": "Wrapper for the GitHub gist API v3", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "meritt", + "email": "alexey@simonenko.su" + } + ], + "time": { + "modified": "2011-08-17T13:29:52.936Z", + "created": "2011-08-16T13:48:00.940Z", + "0.0.1": "2011-08-16T13:48:04.151Z", + "0.0.2": "2011-08-17T13:29:52.936Z" + }, + "author": { + "name": "Alexey Simonenko", + "email": "alexey@simonenko.su" + }, + "repository": { + "type": "git", + "url": "git://github.com/meritt/node-gisty.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/gisty/0.0.1", + "0.0.2": "http://registry.npmjs.org/gisty/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "e2c672550f99d1e666de09440c47238b2f14bc31", + "tarball": "http://registry.npmjs.org/gisty/-/gisty-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "cd37f346bfb9e253a54416990f46d828497c480e", + "tarball": "http://registry.npmjs.org/gisty/-/gisty-0.0.2.tgz" + } + }, + "keywords": [ + "github", + "gist", + "api", + "wrapper" + ], + "url": "http://registry.npmjs.org/gisty/" + }, + "git": { + "name": "git", + "description": "A node.js library for git", + "dist-tags": { + "stable": "0.1.3", + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "christkv", + "email": "christkv@gmail.com" + } + ], + "author": { + "name": "Christian Amor Kvalheim", + "email": "christkv@gmail.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:christkv/node-git.git" + }, + "time": { + "modified": "2011-07-30T09:56:47.568Z", + "created": "2011-02-27T13:36:23.677Z", + "0.1.0": "2011-02-27T13:36:23.677Z", + "0.1.1": "2011-02-27T13:36:23.677Z", + "0.1.2": "2011-05-25T15:00:30.159Z", + "0.1.3": "2011-07-30T09:35:17.228Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/git/0.1.0", + "0.1.1": "http://registry.npmjs.org/git/0.1.1", + "0.1.2": "http://registry.npmjs.org/git/0.1.2", + "0.1.3": "http://registry.npmjs.org/git/0.1.3" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/git/-/git-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "5162b7ed666e2330303276c246a788ecef7b9a99", + "tarball": "http://registry.npmjs.org/git/-/git-0.1.1.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "9435de6b783b38c8f102c1f37f1e1c8b41998788", + "tarball": "http://registry.npmjs.org/git/-/git-0.1.1-0.4-sunos-5.11.tgz" + } + } + }, + "0.1.2": { + "shasum": "150c51c45c2e652dc5df3762fb7edfeaeca1a58a", + "tarball": "http://registry.npmjs.org/git/-/git-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "fc63766b25a5f40a4affa22099e6a4054960ec55", + "tarball": "http://registry.npmjs.org/git/-/git-0.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/git/" + }, + "git-emit": { + "name": "git-emit", + "description": "expose git hooks through an event emitter", + "dist-tags": { + "latest": "0.0.0" + }, + "readme": null, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-11-19T12:07:04.951Z", + "created": "2011-11-19T12:07:03.031Z", + "0.0.0": "2011-11-19T12:07:04.951Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-git-emit.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/git-emit/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "41a8162fab4b2353df73af22d2e802ae0bb0e7c3", + "tarball": "http://registry.npmjs.org/git-emit/-/git-emit-0.0.0.tgz" + } + }, + "keywords": [ + "git", + "hook", + "emit", + "repository" + ], + "url": "http://registry.npmjs.org/git-emit/" + }, + "git-fs": { + "name": "git-fs", + "description": "Git as a filesystem.", + "dist-tags": { + "latest": "0.0.7" + }, + "maintainers": [ + { + "name": "creationix", + "email": "tim@creationix.com" + } + ], + "author": { + "name": "Tim Caswell", + "email": "tim@creationix.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/creationix/node-git.git" + }, + "time": { + "modified": "2011-09-14T17:02:04.148Z", + "created": "2011-03-05T08:11:39.660Z", + "0.0.3": "2011-03-05T08:11:39.660Z", + "0.0.4": "2011-03-05T08:11:39.660Z", + "0.0.5": "2011-03-05T08:11:39.660Z", + "0.0.6": "2011-03-05T08:11:39.660Z", + "0.0.7": "2011-09-14T17:02:04.148Z" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/git-fs/0.0.3", + "0.0.4": "http://registry.npmjs.org/git-fs/0.0.4", + "0.0.5": "http://registry.npmjs.org/git-fs/0.0.5", + "0.0.6": "http://registry.npmjs.org/git-fs/0.0.6", + "0.0.7": "http://registry.npmjs.org/git-fs/0.0.7" + }, + "dist": { + "0.0.3": { + "tarball": "http://packages:5984/git-fs/-/git-fs-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://packages:5984/git-fs/-/git-fs-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://packages:5984/git-fs/-/git-fs-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "b13375fa698b8e01df5dfd669bc2d78bc697d80e", + "tarball": "http://registry.npmjs.org/git-fs/-/git-fs-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "688ac9ddc2ea59dc8f3f68b4d1dac208a94689d6", + "tarball": "http://registry.npmjs.org/git-fs/-/git-fs-0.0.7.tgz" + } + }, + "url": "http://registry.npmjs.org/git-fs/" + }, + "git-stats": { + "name": "git-stats", + "description": "personal git statistics for fun", + "dist-tags": { + "latest": "0.0.2" + }, + "readme": "", + "maintainers": [ + { + "name": "goatslacker", + "email": "josh@goatslacker.com" + } + ], + "time": { + "modified": "2011-12-12T07:25:10.857Z", + "created": "2011-11-23T23:29:43.352Z", + "0.0.5": "2011-11-23T23:29:44.862Z", + "0.0.1": "2011-12-12T01:51:29.165Z", + "0.0.2": "2011-12-12T07:25:10.857Z" + }, + "author": { + "name": "Josh Perez", + "email": "josh@goatslacker.com", + "url": "http://github.com/goatslacker" + }, + "repository": { + "type": "git", + "url": "git://github.com/goatslacker/git-stats.git" + }, + "versions": { + "0.0.5": "http://registry.npmjs.org/git-stats/0.0.5", + "0.0.1": "http://registry.npmjs.org/git-stats/0.0.1", + "0.0.2": "http://registry.npmjs.org/git-stats/0.0.2" + }, + "dist": { + "0.0.5": { + "shasum": "b6401d9172ec2d41d370189b30a9f889609d4fe7", + "tarball": "http://registry.npmjs.org/git-stats/-/git-stats-0.0.5.tgz" + }, + "0.0.1": { + "shasum": "b26417d534297cd3947dbf9c827884c3f62403fe", + "tarball": "http://registry.npmjs.org/git-stats/-/git-stats-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "b1f188a4086d6b4718b708417cea4be063dd7013", + "tarball": "http://registry.npmjs.org/git-stats/-/git-stats-0.0.2.tgz" + } + }, + "keywords": [ + "git", + "statistics", + "tracking", + "scrobbling" + ], + "url": "http://registry.npmjs.org/git-stats/" + }, + "github": { + "name": "github", + "dist-tags": { + "latest": "0.0.7" + }, + "maintainers": [ + { + "name": "fjakobs", + "email": "fabian.jakobs@web.de" + } + ], + "author": { + "name": "Fabian Jakobs", + "email": "fabian.jakobs@web.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/ajaxorg/node-github.git" + }, + "description": "Wrapper for the GitHub API", + "time": { + "modified": "2011-10-27T09:00:45.425Z", + "created": "2010-12-19T14:51:58.332Z", + "0.0.1": "2010-12-19T14:51:58.332Z", + "0.0.2": "2010-12-19T14:51:58.332Z", + "0.0.3": "2010-12-19T14:51:58.332Z", + "0.0.4": "2010-12-19T14:51:58.332Z", + "0.0.5": "2011-02-27T10:14:18.065Z", + "0.0.6": "2011-04-13T12:53:24.806Z", + "0.0.7": "2011-10-27T09:00:45.425Z" + }, + "users": { + "thejh": true + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/github/0.0.1", + "0.0.2": "http://registry.npmjs.org/github/0.0.2", + "0.0.3": "http://registry.npmjs.org/github/0.0.3", + "0.0.4": "http://registry.npmjs.org/github/0.0.4", + "0.0.5": "http://registry.npmjs.org/github/0.0.5", + "0.0.6": "http://registry.npmjs.org/github/0.0.6", + "0.0.7": "http://registry.npmjs.org/github/0.0.7" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/github/-/github-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/github/-/github-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/github/-/github-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "a0ae7720bf24806428e88d528fc73d07bddb932a", + "tarball": "http://registry.npmjs.org/github/-/github-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "029c319abb8e86b68965bcf382374ea4e9e3be15", + "tarball": "http://registry.npmjs.org/github/-/github-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "f9c197b569aa4e7a3c9d23236db0ab93a78960a9", + "tarball": "http://registry.npmjs.org/github/-/github-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "557aedb2991f409e600076afa7df21334299cc88", + "tarball": "http://registry.npmjs.org/github/-/github-0.0.7.tgz" + } + }, + "url": "http://registry.npmjs.org/github/" + }, + "github-flavored-markdown": { + "name": "github-flavored-markdown", + "description": "The port of Showdown used on github.com", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "time": { + "modified": "2011-03-07T04:24:54.630Z", + "created": "2011-03-07T04:24:54.182Z", + "1.0.0": "2011-03-07T04:24:54.630Z" + }, + "author": { + "name": "tekkup", + "email": "git@tekkub.net", + "url": "http://tekkub.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/isaacs/github-flavored-markdown.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/github-flavored-markdown/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "f5b89935ecb3edf27357b2827510fed8a2ff3402", + "tarball": "http://registry.npmjs.org/github-flavored-markdown/-/github-flavored-markdown-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/github-flavored-markdown/" + }, + "github-hook": { + "name": "github-hook", + "description": "A quick tie-in for Github's Post-Receive Hooks", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-11-11T04:32:00.902Z", + "created": "2011-10-12T21:32:31.318Z", + "1.0.0": "2011-10-12T21:32:32.398Z", + "1.0.1": "2011-11-11T04:32:00.902Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com", + "url": "http://coolaj86.info" + }, + "repository": { + "type": "git", + "url": "git://github.com/coolaj86/connect-vhoster.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/github-hook/1.0.0", + "1.0.1": "http://registry.npmjs.org/github-hook/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "a1da8e5d71dcf0fa195cc5e66db5a3162a4e25b7", + "tarball": "http://registry.npmjs.org/github-hook/-/github-hook-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "70c2c3d404f3848fd849f99a360eb4407de52002", + "tarball": "http://registry.npmjs.org/github-hook/-/github-hook-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/github-hook/" + }, + "github3": { + "name": "github3", + "description": "NodeJS GitHub API (v3) Wrapper", + "dist-tags": { + "latest": "0.0.3" + }, + "readme": "\n# GitHub3 - NodeJS GitHub API (v3) Wrapper\n\n***\n\n```bash\n$ npm install github3\n```\n\n***\n\n### Example Code (Checkout /tests, same jazz)\n\n```javascript\n\nvar github3 = require('github3');\n\ngithub3.getUser(user, function('edwardhotchkiss', user) {\n console.log(user);\n});\n\ngithub3.getUserRepos('edwardhotchkiss', function(error, repos) {\n console.log(repos);\n});\n\ngithub3.getUsersWatched('edwardhotchkiss', function(error, watched) {\n console.log(watched);\n});\n\ngithub3.getOrgMembers('ingklabs', function(error, members) {\n console.log('members');\n});\n\n/* EOF */\n```\n\n***", + "maintainers": [ + { + "name": "edwardhotchkiss", + "email": "e@ingk.com" + } + ], + "time": { + "modified": "2011-11-30T23:47:08.968Z", + "created": "2011-11-30T23:46:59.460Z", + "0.0.3": "2011-11-30T23:47:08.968Z" + }, + "author": { + "name": "Edward Hotchkiss", + "email": "e@ingk.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/edwardhotchkiss/github3.git" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/github3/0.0.3" + }, + "dist": { + "0.0.3": { + "shasum": "d8e5d52d14100f043ba5628c27cf7791721f2921", + "tarball": "http://registry.npmjs.org/github3/-/github3-0.0.3.tgz" + } + }, + "keywords": [ + "github", + "api", + "wrapper", + "git", + "code" + ], + "url": "http://registry.npmjs.org/github3/" + }, + "gitio": { + "name": "gitio", + "description": "Library for nodejs to call the git.io URL shortner", + "dist-tags": { + "latest": "1.0.1" + }, + "readme": "Nodejs git.io module\n====================\n\nA simple module to call the [git.io url shortner service](https://github.com/blog/985-git-io-github-url-shortener) with\nnodejs, the module returns a simple object with the status code and URL if created.\n\nUsage\n-----\n\n var gitio = require('gitio');\n\n // Pass a direct URL and get back a random URL\n gitio('https://github.com/tanepiper/node-gitio', function(err, data) {\n var url = data.url;\n });\n\n // Pass an optional key to get the URL of your request\n gitio('https://github.com/joyent/node', 'nodejs', function(err, data) {\n var url = data.url;\n });\n", + "maintainers": [ + { + "name": "tanepiper", + "email": "piper.tane@gmail.com" + } + ], + "time": { + "modified": "2011-11-16T22:17:23.333Z", + "created": "2011-11-16T21:52:51.749Z", + "1.0.0": "2011-11-16T21:52:54.037Z", + "1.0.1": "2011-11-16T22:17:23.333Z" + }, + "author": { + "name": "Tane Piper", + "email": "piper.tane@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/tanepiper/node-gitio.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/gitio/1.0.0", + "1.0.1": "http://registry.npmjs.org/gitio/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "0d0e6c33d4f3b21425fb53805c71aa4d4f5440fd", + "tarball": "http://registry.npmjs.org/gitio/-/gitio-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "267852323c5d38a473e27d582ed66c773b702230", + "tarball": "http://registry.npmjs.org/gitio/-/gitio-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/gitio/" + }, + "gitProvider": { + "name": "gitProvider", + "description": "An http/connect/stack layer to serve the contents of a 'git' repository over HTTP.", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "TooTallNate", + "email": "nathan@tootallnate.net" + } + ], + "time": { + "modified": "2011-04-29T17:47:19.629Z", + "created": "2011-03-29T03:14:26.414Z", + "0.0.1": "2011-03-29T03:14:26.877Z", + "0.0.2": "2011-04-02T02:54:20.249Z", + "0.0.3": "2011-04-29T17:10:38.191Z", + "0.0.4": "2011-04-29T17:47:19.629Z" + }, + "author": { + "name": "Nathan Rajlich", + "email": "nathan@tootallnate.net", + "url": "http://tootallnate.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/TooTallNate/node-gitProvider.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/gitProvider/0.0.1", + "0.0.2": "http://registry.npmjs.org/gitProvider/0.0.2", + "0.0.3": "http://registry.npmjs.org/gitProvider/0.0.3", + "0.0.4": "http://registry.npmjs.org/gitProvider/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "f3fb2c4eb4395c6af2f4689ad93be38a13b0613d", + "tarball": "http://registry.npmjs.org/gitProvider/-/gitProvider-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f540d0deee5ecf23b57ac54a1735ebf22a04f95e", + "tarball": "http://registry.npmjs.org/gitProvider/-/gitProvider-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "ff2f38f988b2010fa065f5b12ad38249deefe613", + "tarball": "http://registry.npmjs.org/gitProvider/-/gitProvider-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "71c1c0e7f9107d1f5f2fad4cf54ecfaa148a71b3", + "tarball": "http://registry.npmjs.org/gitProvider/-/gitProvider-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/gitProvider/" + }, + "gitteh": { + "name": "gitteh", + "description": "Bindings to libgit2.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "samcday", + "email": "sam.c.day@gmail.com" + } + ], + "time": { + "modified": "2011-04-03T06:51:04.132Z", + "created": "2011-03-19T17:03:14.016Z", + "0.0.1": "2011-03-19T17:03:14.938Z", + "0.0.2": "2011-03-19T17:03:49.185Z", + "0.0.3": "2011-03-20T12:23:02.704Z", + "0.0.4": "2011-03-29T06:40:49.685Z", + "0.1.0": "2011-04-03T06:51:04.132Z" + }, + "author": { + "name": "Sam Day", + "email": "sam.c.day@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/samcday/node-gitteh.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/gitteh/0.0.1", + "0.0.2": "http://registry.npmjs.org/gitteh/0.0.2", + "0.0.3": "http://registry.npmjs.org/gitteh/0.0.3", + "0.0.4": "http://registry.npmjs.org/gitteh/0.0.4", + "0.1.0": "http://registry.npmjs.org/gitteh/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "25c22a70a75c174a3bf71dcbaa7e80e0a49c1ef0", + "tarball": "http://registry.npmjs.org/gitteh/-/gitteh-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "e653e4c729889f9a9ab853e25234c782de55444a", + "tarball": "http://registry.npmjs.org/gitteh/-/gitteh-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "c39c1c463305c948112f6a4bb49957d26b3af337", + "tarball": "http://registry.npmjs.org/gitteh/-/gitteh-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "5034bf9f1065219c811fb4540f2fcf0235fc65b6", + "tarball": "http://registry.npmjs.org/gitteh/-/gitteh-0.0.4.tgz" + }, + "0.1.0": { + "shasum": "a95320d168ef2ddab85aaf40be928b176d469e73", + "tarball": "http://registry.npmjs.org/gitteh/-/gitteh-0.1.0.tgz" + } + }, + "keywords": "git, libgit2, bindings", + "url": "http://registry.npmjs.org/gitteh/" + }, + "gitter": { + "name": "gitter", + "description": "GitHub client (API v2)", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "sjs", + "email": "sami@samhuri.net" + } + ], + "author": { + "name": "Sami Samhuri", + "email": "sami.samhuri@gmail.com" + }, + "repository": { + "type": "git", + "url": "https://github.com/samsonjs/gitter" + }, + "time": { + "modified": "2011-01-04T00:52:14.097Z", + "created": "2011-01-04T00:13:38.816Z", + "0.0.1": "2011-01-04T00:13:38.816Z", + "0.0.2": "2011-01-04T00:13:38.816Z", + "0.0.3": "2011-01-04T00:13:38.816Z", + "0.1.0": "2011-01-04T00:13:38.816Z", + "0.1.1": "2011-01-04T00:13:38.816Z", + "0.1.2": "2011-01-04T00:52:14.097Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/gitter/0.0.1", + "0.0.2": "http://registry.npmjs.org/gitter/0.0.2", + "0.0.3": "http://registry.npmjs.org/gitter/0.0.3", + "0.1.0": "http://registry.npmjs.org/gitter/0.1.0", + "0.1.1": "http://registry.npmjs.org/gitter/0.1.1", + "0.1.2": "http://registry.npmjs.org/gitter/0.1.2" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/gitter/-/gitter-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/gitter/-/gitter-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/gitter/-/gitter-0.0.3.tgz" + }, + "0.1.0": { + "shasum": "0d0a37b166c713924cc7079b0313b732f67422d5", + "tarball": "http://registry.npmjs.org/gitter/-/gitter-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "bef053183d7cfc622b49aabcf1e491410c79de59", + "tarball": "http://registry.npmjs.org/gitter/-/gitter-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "c1f31637c008451770c3e7d5766c1f37db91bc2d", + "tarball": "http://registry.npmjs.org/gitter/-/gitter-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/gitter/" + }, + "gittyup": { + "name": "gittyup", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "architectd", + "email": "craig.j.condon@gmail.com" + } + ], + "time": { + "modified": "2011-12-09T21:59:54.521Z", + "created": "2011-09-18T13:28:05.606Z", + "0.0.1": "2011-09-18T13:28:06.502Z", + "0.0.2": "2011-09-18T13:49:34.672Z", + "0.0.4": "2011-09-19T02:14:04.071Z", + "0.0.5": "2011-09-20T04:01:28.725Z", + "0.0.6": "2011-09-21T17:42:15.681Z", + "0.0.7": "2011-09-22T04:35:32.437Z", + "0.0.8": "2011-09-22T06:02:07.019Z", + "0.0.9": "2011-09-22T07:31:30.972Z", + "0.0.10": "2011-09-24T19:12:18.436Z", + "0.0.11": "2011-09-25T03:42:54.368Z", + "0.0.12": "2011-09-26T22:19:03.207Z", + "0.0.13": "2011-09-26T23:06:36.359Z", + "0.0.14": "2011-09-27T02:35:06.027Z", + "0.0.15": "2011-09-27T02:41:06.459Z", + "0.0.16": "2011-09-27T02:45:01.775Z", + "0.0.17": "2011-10-15T03:31:32.047Z", + "0.0.18": "2011-10-15T03:36:17.385Z", + "0.0.19": "2011-10-15T03:38:07.612Z", + "0.0.20": "2011-10-26T18:16:47.667Z", + "0.0.21": "2011-11-30T18:55:16.158Z", + "0.0.22": "2011-12-04T22:23:16.971Z", + "0.1.1": "2011-12-05T01:40:29.577Z", + "0.1.2": "2011-12-05T19:25:35.095Z", + "0.1.3": "2011-12-09T21:58:30.164Z", + "0.1.4": "2011-12-09T21:59:54.521Z" + }, + "author": { + "name": "Craig Condon", + "email": "craig@crcn.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/crcn/gittyup.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/gittyup/0.0.1", + "0.0.2": "http://registry.npmjs.org/gittyup/0.0.2", + "0.0.4": "http://registry.npmjs.org/gittyup/0.0.4", + "0.0.5": "http://registry.npmjs.org/gittyup/0.0.5", + "0.0.6": "http://registry.npmjs.org/gittyup/0.0.6", + "0.0.7": "http://registry.npmjs.org/gittyup/0.0.7", + "0.0.8": "http://registry.npmjs.org/gittyup/0.0.8", + "0.0.9": "http://registry.npmjs.org/gittyup/0.0.9", + "0.0.10": "http://registry.npmjs.org/gittyup/0.0.10", + "0.0.11": "http://registry.npmjs.org/gittyup/0.0.11", + "0.0.12": "http://registry.npmjs.org/gittyup/0.0.12", + "0.0.13": "http://registry.npmjs.org/gittyup/0.0.13", + "0.0.14": "http://registry.npmjs.org/gittyup/0.0.14", + "0.0.15": "http://registry.npmjs.org/gittyup/0.0.15", + "0.0.16": "http://registry.npmjs.org/gittyup/0.0.16", + "0.0.17": "http://registry.npmjs.org/gittyup/0.0.17", + "0.0.18": "http://registry.npmjs.org/gittyup/0.0.18", + "0.0.19": "http://registry.npmjs.org/gittyup/0.0.19", + "0.0.20": "http://registry.npmjs.org/gittyup/0.0.20", + "0.0.21": "http://registry.npmjs.org/gittyup/0.0.21", + "0.0.22": "http://registry.npmjs.org/gittyup/0.0.22", + "0.1.1": "http://registry.npmjs.org/gittyup/0.1.1", + "0.1.2": "http://registry.npmjs.org/gittyup/0.1.2", + "0.1.3": "http://registry.npmjs.org/gittyup/0.1.3", + "0.1.4": "http://registry.npmjs.org/gittyup/0.1.4" + }, + "dist": { + "0.0.1": { + "shasum": "1c45fcc880214b66b8d2bd482cb568ec3ca96ec0", + "tarball": "http://registry.npmjs.org/gittyup/-/gittyup-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "80b1be5a161b2348e544b16d44eb0135b7daeebe", + "tarball": "http://registry.npmjs.org/gittyup/-/gittyup-0.0.2.tgz" + }, + "0.0.4": { + "shasum": "64691a0338bd1fc40b9da56465af5de98954ae28", + "tarball": "http://registry.npmjs.org/gittyup/-/gittyup-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "14d496831e989d7ca02096ab438b859aa00aa305", + "tarball": "http://registry.npmjs.org/gittyup/-/gittyup-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "6664b1d4bce868481bb975d70f2976325bb3436c", + "tarball": "http://registry.npmjs.org/gittyup/-/gittyup-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "b8f02faadb42c90098f04851700bb0cafda193ad", + "tarball": "http://registry.npmjs.org/gittyup/-/gittyup-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "1eeba1cc4629b9e6683bb5adf596e8ca057c98f1", + "tarball": "http://registry.npmjs.org/gittyup/-/gittyup-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "8bc11aacef853cb7b600d484647530a14fa711f2", + "tarball": "http://registry.npmjs.org/gittyup/-/gittyup-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "7384f4c6d89e948f01bbce64d60c54c221c8845e", + "tarball": "http://registry.npmjs.org/gittyup/-/gittyup-0.0.10.tgz" + }, + "0.0.11": { + "shasum": "d6a9817186f506b716bf44054579205d33050ca5", + "tarball": "http://registry.npmjs.org/gittyup/-/gittyup-0.0.11.tgz" + }, + "0.0.12": { + "shasum": "d41e978f4b8a469b45155649dd96faa6dcab96bf", + "tarball": "http://registry.npmjs.org/gittyup/-/gittyup-0.0.12.tgz" + }, + "0.0.13": { + "shasum": "daf23697f600c5527e1ee4dc49a19adf9146c7dc", + "tarball": "http://registry.npmjs.org/gittyup/-/gittyup-0.0.13.tgz" + }, + "0.0.14": { + "shasum": "1083690651181707c7e02c9deda1751cd7dbf2b5", + "tarball": "http://registry.npmjs.org/gittyup/-/gittyup-0.0.14.tgz" + }, + "0.0.15": { + "shasum": "56027cf980bb84bc26e3173c2b2e764a71420d16", + "tarball": "http://registry.npmjs.org/gittyup/-/gittyup-0.0.15.tgz" + }, + "0.0.16": { + "shasum": "c3f9b11c127609e8c44dd37b804d9db1babc9bb6", + "tarball": "http://registry.npmjs.org/gittyup/-/gittyup-0.0.16.tgz" + }, + "0.0.17": { + "shasum": "251037c278bae86ca84cf8281888318fa5b27be3", + "tarball": "http://registry.npmjs.org/gittyup/-/gittyup-0.0.17.tgz" + }, + "0.0.18": { + "shasum": "f3060be4ab8d8bdabce4009b284b17435ba7f96d", + "tarball": "http://registry.npmjs.org/gittyup/-/gittyup-0.0.18.tgz" + }, + "0.0.19": { + "shasum": "7469349dcaa25368f31546bdb9e3c088d5e0fce3", + "tarball": "http://registry.npmjs.org/gittyup/-/gittyup-0.0.19.tgz" + }, + "0.0.20": { + "shasum": "2e1e45be20a376c67607640d352e320c489a6163", + "tarball": "http://registry.npmjs.org/gittyup/-/gittyup-0.0.20.tgz" + }, + "0.0.21": { + "shasum": "a0303bba41989afcd62011c14100c81532d5f408", + "tarball": "http://registry.npmjs.org/gittyup/-/gittyup-0.0.21.tgz" + }, + "0.0.22": { + "shasum": "fe9278bc808cde58c184c2fb237cc8294f6695e8", + "tarball": "http://registry.npmjs.org/gittyup/-/gittyup-0.0.22.tgz" + }, + "0.1.1": { + "shasum": "ce6a28501b4d55dad91c0071f9935d30d24ecd1c", + "tarball": "http://registry.npmjs.org/gittyup/-/gittyup-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "1da63c19980d2b94373081fae2d675d7b06be9a8", + "tarball": "http://registry.npmjs.org/gittyup/-/gittyup-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "ae1fdb798475c5d9cea4a960dde27e3b2f5926a2", + "tarball": "http://registry.npmjs.org/gittyup/-/gittyup-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "4806ccc3de755c01246733dbca0e614f455ca544", + "tarball": "http://registry.npmjs.org/gittyup/-/gittyup-0.1.4.tgz" + } + }, + "url": "http://registry.npmjs.org/gittyup/" + }, + "gitweb": { + "name": "gitweb", + "description": "Directly invoke and serve GitWeb through NodeJS.", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "TooTallNate", + "email": "nathan@tootallnate.net" + } + ], + "time": { + "modified": "2011-11-07T06:33:56.406Z", + "created": "2011-02-17T22:21:36.336Z", + "0.0.1": "2011-02-17T22:21:36.957Z", + "0.0.2": "2011-02-18T18:09:10.796Z", + "0.0.3": "2011-03-28T20:28:32.475Z", + "0.1.0": "2011-05-18T22:06:23.362Z", + "0.1.1": "2011-11-04T19:06:36.916Z", + "0.1.2": "2011-11-07T06:33:56.406Z" + }, + "author": { + "name": "Nathan Rajlich", + "email": "nathan@tootallnate.net", + "url": "http://tootallnate.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/TooTallNate/node-gitweb.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/gitweb/0.0.1", + "0.0.2": "http://registry.npmjs.org/gitweb/0.0.2", + "0.0.3": "http://registry.npmjs.org/gitweb/0.0.3", + "0.1.0": "http://registry.npmjs.org/gitweb/0.1.0", + "0.1.1": "http://registry.npmjs.org/gitweb/0.1.1", + "0.1.2": "http://registry.npmjs.org/gitweb/0.1.2" + }, + "dist": { + "0.0.1": { + "shasum": "eccc4b58be9ef260a79460fed8137b5013922ad7", + "tarball": "http://registry.npmjs.org/gitweb/-/gitweb-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "dac32f36b05f7278a6122c8e8b688d0a557692d7", + "tarball": "http://registry.npmjs.org/gitweb/-/gitweb-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "0468b825c5a4c60bf0a2f95ef748ef6946debae9", + "tarball": "http://registry.npmjs.org/gitweb/-/gitweb-0.0.3.tgz" + }, + "0.1.0": { + "shasum": "ff62d42ce1e5c29d5d08535e4b16b417bfae21e9", + "tarball": "http://registry.npmjs.org/gitweb/-/gitweb-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "d4972f7ef0c5de4bab51fb2ad497c0fa49385b8c", + "tarball": "http://registry.npmjs.org/gitweb/-/gitweb-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "630e2c9af9995ce18edad41f65838ab11ff542af", + "tarball": "http://registry.npmjs.org/gitweb/-/gitweb-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/gitweb/" + }, + "gitwiki": { + "name": "gitwiki", + "description": "Wiki module built on top of gitteh", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "milani", + "email": "mrtz.milani@gmail.com" + } + ], + "time": { + "modified": "2011-08-25T11:42:42.468Z", + "created": "2011-07-31T21:43:05.188Z", + "0.2.0": "2011-07-31T21:43:30.714Z", + "0.2.1": "2011-08-03T12:23:23.034Z" + }, + "author": { + "name": "Morteza Milani", + "email": "mrtz.milani@googlemail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/milani/node-gitwiki.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/gitwiki/0.2.0", + "0.2.1": "http://registry.npmjs.org/gitwiki/0.2.1" + }, + "dist": { + "0.2.0": { + "shasum": "1acbf83e3acaf273ecdadeb13b90d4ab6a7ce576", + "tarball": "http://registry.npmjs.org/gitwiki/-/gitwiki-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "769c6a7ee7f6c68b1175c64704b2a6ff6e7909b2", + "tarball": "http://registry.npmjs.org/gitwiki/-/gitwiki-0.2.1.tgz" + } + }, + "keywords": [ + "wiki", + "web", + "git", + "gitteh" + ], + "url": "http://registry.npmjs.org/gitwiki/" + }, + "givenwhenthen": { + "name": "givenwhenthen", + "description": "BDD semantics for Selenium and Sauce Labs in Node.js", + "dist-tags": { + "latest": "0.0.9" + }, + "readme": "# Given When Then\nSimple web app acceptance testing with [BDD](http://dannorth.net/introducing-bdd/)\nsemantics using Selenium and [Sauce Labs](http://saucelabs.com/).\n\nSee the [Given When Then](http://mulabs.io/givenwhenthen) site for usage instructions.\n\n## Installation\n\n npm install givenwhenthen\n\n## Authors\n* Doug Wright [wright-io](https://github.com/wright-io)\n* Phil Cockfield [philcockfield](https://github.com/philcockfield)\n\n\n## License\nThe [MIT License](http://www.opensource.org/licenses/mit-license.php) (MIT) \nCopyright © 2011 Phil Cockfield, Doug Wright\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,\nINCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\nPARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "maintainers": [ + { + "name": "wright-io", + "email": "doug@umanu.net" + } + ], + "time": { + "modified": "2011-12-03T23:59:10.241Z", + "created": "2011-12-03T23:11:49.526Z", + "0.0.8": "2011-12-03T23:11:50.141Z", + "0.0.9": "2011-12-03T23:59:10.241Z" + }, + "author": { + "name": "Doug Wright", + "url": "https://github.com/wright-io" + }, + "repository": { + "type": "git", + "url": "git://github.com/wright-io/givenwhenthen.git" + }, + "versions": { + "0.0.8": "http://registry.npmjs.org/givenwhenthen/0.0.8", + "0.0.9": "http://registry.npmjs.org/givenwhenthen/0.0.9" + }, + "dist": { + "0.0.8": { + "shasum": "e907359246d615bae3691caa658cb8dba6423c0c", + "tarball": "http://registry.npmjs.org/givenwhenthen/-/givenwhenthen-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "09d8f03aa273b268934bc638a6be46f2fe18af51", + "tarball": "http://registry.npmjs.org/givenwhenthen/-/givenwhenthen-0.0.9.tgz" + } + }, + "keywords": [ + "bdd", + "tdd", + "cucumber", + "sauce labs", + "selenium", + "soda", + "testing", + "acceptance testing", + "integration testing", + "behavior driven development", + "test driven development", + "Dan North" + ], + "url": "http://registry.npmjs.org/givenwhenthen/" + }, + "gizmo": { + "name": "gizmo", + "description": "Simple Javascript object system", + "dist-tags": { + "latest": "1.1.0" + }, + "maintainers": [ + { + "name": "zoips", + "email": "downturn@gmail.com" + } + ], + "time": { + "modified": "2011-05-27T04:42:23.703Z", + "created": "2011-03-11T04:43:12.018Z", + "1.0.2": "2011-03-11T04:43:12.424Z", + "1.1.0": "2011-05-27T04:42:23.703Z" + }, + "author": { + "name": "Matt Eberts", + "email": "downturn@gmail.com" + }, + "versions": { + "1.0.2": "http://registry.npmjs.org/gizmo/1.0.2", + "1.1.0": "http://registry.npmjs.org/gizmo/1.1.0" + }, + "dist": { + "1.0.2": { + "shasum": "f30b145219e735c255b9553750313da285206f86", + "tarball": "http://registry.npmjs.org/gizmo/-/gizmo-1.0.2.tgz" + }, + "1.1.0": { + "shasum": "de54031d5bfd914b94a366c6bcd42aac7c088a8e", + "tarball": "http://registry.npmjs.org/gizmo/-/gizmo-1.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/gizmo/" + }, + "gleak": { + "name": "gleak", + "description": "Node global variable leak detector", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "aaron", + "email": "aaron.heckmann+github@gmail.com" + } + ], + "time": { + "modified": "2011-11-23T15:35:01.063Z", + "created": "2011-09-03T04:29:38.245Z", + "0.0.1": "2011-09-03T04:29:38.835Z", + "0.0.2": "2011-09-07T01:58:57.966Z", + "0.1.0": "2011-09-07T03:31:46.698Z", + "0.1.1": "2011-09-07T12:51:57.001Z", + "0.1.2": "2011-09-08T14:17:21.847Z", + "0.1.3": "2011-09-22T17:31:19.549Z", + "0.2.0": "2011-10-12T00:03:10.541Z", + "0.2.1": "2011-10-18T14:06:43.497Z", + "0.2.2": "2011-11-23T15:35:01.063Z" + }, + "author": { + "name": "Aaron Heckmann", + "email": "aaron.heckmann+github@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/aheckmann/gleak.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/gleak/0.0.1", + "0.0.2": "http://registry.npmjs.org/gleak/0.0.2", + "0.1.0": "http://registry.npmjs.org/gleak/0.1.0", + "0.1.1": "http://registry.npmjs.org/gleak/0.1.1", + "0.1.2": "http://registry.npmjs.org/gleak/0.1.2", + "0.1.3": "http://registry.npmjs.org/gleak/0.1.3", + "0.2.0": "http://registry.npmjs.org/gleak/0.2.0", + "0.2.1": "http://registry.npmjs.org/gleak/0.2.1", + "0.2.2": "http://registry.npmjs.org/gleak/0.2.2" + }, + "dist": { + "0.0.1": { + "shasum": "2289ea6533f1f10d65fbaaa02c1bcb3f2bd5011e", + "tarball": "http://registry.npmjs.org/gleak/-/gleak-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "3e2123a6df095ca7330c2bf29a1e1ead19e4dd92", + "tarball": "http://registry.npmjs.org/gleak/-/gleak-0.0.2.tgz" + }, + "0.1.0": { + "shasum": "0e12badfe92511218ecdc18908b8c47888d7b64c", + "tarball": "http://registry.npmjs.org/gleak/-/gleak-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "0759940427f996b2c8245ad1ce2096a196cb4611", + "tarball": "http://registry.npmjs.org/gleak/-/gleak-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "43a4b58e7f4d7fc6cb83f160b5860957516f6d7c", + "tarball": "http://registry.npmjs.org/gleak/-/gleak-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "bed46299a1849adde6ab1aeb9a604f694b9fa9a4", + "tarball": "http://registry.npmjs.org/gleak/-/gleak-0.1.3.tgz" + }, + "0.2.0": { + "shasum": "c6fb550cca4aec27de1def599f75dea6a2d1c592", + "tarball": "http://registry.npmjs.org/gleak/-/gleak-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "35362835f3067b137d821df6e324c013e4aa3a11", + "tarball": "http://registry.npmjs.org/gleak/-/gleak-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "185fd140200d97509e737fb4edf78d614c7f8033", + "tarball": "http://registry.npmjs.org/gleak/-/gleak-0.2.2.tgz" + } + }, + "url": "http://registry.npmjs.org/gleak/" + }, + "glMath": { + "name": "glMath", + "description": "", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "rolandpoulter", + "email": "rolandpoulter@gmail.com" + } + ], + "time": { + "modified": "2011-10-26T01:16:29.344Z", + "created": "2011-10-26T01:16:27.461Z", + "0.1.0": "2011-10-26T01:16:29.344Z" + }, + "author": { + "name": "Roland Poulter" + }, + "repository": { + "type": "git", + "url": "git://github.com/rolandpoulter/glMath.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/glMath/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "2345bd7d4c89565922306e415a67d3dfa70fe70f", + "tarball": "http://registry.npmjs.org/glMath/-/glMath-0.1.0.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/glMath/" + }, + "glob": { + "name": "glob", + "description": "glob/fnmatch binding for node", + "dist-tags": { + "latest": "2.1.0" + }, + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me/" + }, + "time": { + "modified": "2011-11-15T20:33:53.922Z", + "created": "2011-01-02T22:10:36.356Z", + "1.0.0": "2011-01-02T22:10:36.356Z", + "1.0.1": "2011-01-02T22:10:36.356Z", + "1.0.2": "2011-01-02T22:10:36.356Z", + "1.0.3": "2011-01-02T22:10:36.356Z", + "1.1.0": "2011-01-13T20:36:17.606Z", + "2.0.0": "2011-02-19T21:35:22.467Z", + "2.0.1": "2011-02-20T20:02:51.964Z", + "2.0.2": "2011-02-20T20:30:44.507Z", + "2.0.3": "2011-02-23T06:26:28.871Z", + "2.0.4": "2011-02-23T21:10:09.983Z", + "2.0.5": "2011-02-24T01:12:39.828Z", + "2.0.6": "2011-03-17T04:36:08.989Z", + "2.0.7-bindist-testing": "2011-03-28T20:58:45.880Z", + "2.0.7": "2011-06-14T01:03:08.948Z", + "2.0.8": "2011-08-25T23:08:56.278Z", + "2.0.9": "2011-09-30T17:37:00.615Z", + "2.1.0": "2011-11-15T20:33:53.922Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/isaacs/node-glob.git" + }, + "versions": { + "1.1.0": "http://registry.npmjs.org/glob/1.1.0", + "2.0.9": "http://registry.npmjs.org/glob/2.0.9", + "2.0.8": "http://registry.npmjs.org/glob/2.0.8", + "2.0.7": "http://registry.npmjs.org/glob/2.0.7", + "2.1.0": "http://registry.npmjs.org/glob/2.1.0" + }, + "dist": { + "1.1.0": { + "shasum": "b855e0709ddc7d9c5f884acc6155677b437ec135", + "tarball": "http://registry.npmjs.org/glob/-/glob-1.1.0.tgz" + }, + "2.0.9": { + "shasum": "cc550540fed1001d82326e2f16763da4d20071f7", + "tarball": "http://registry.npmjs.org/glob/-/glob-2.0.9.tgz" + }, + "2.0.8": { + "shasum": "5342337c3f194250e1d7625ed6b77b5195a41845", + "tarball": "http://registry.npmjs.org/glob/-/glob-2.0.8.tgz" + }, + "2.0.7": { + "shasum": "4f2b7b496b7b72e5e680449d1279800b7db82459", + "tarball": "http://registry.npmjs.org/glob/-/glob-2.0.7.tgz" + }, + "2.1.0": { + "shasum": "69fd2f3541a4802a2d928270c5caaaa0009552b0", + "tarball": "http://registry.npmjs.org/glob/-/glob-2.1.0.tgz" + } + }, + "keywords": [ + "glob", + "pattern", + "match", + "filesystem", + "posix", + "fnmatch" + ], + "url": "http://registry.npmjs.org/glob/" + }, + "glob-trie.js": { + "name": "glob-trie.js", + "description": "A pattern matching search trie for Node.js. Allows fast (logarithmic time) searching against large sets (10,000+) of simple pattern matching expressions.", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "rbranson", + "email": "rick@diodeware.com" + } + ], + "author": { + "name": "Rick Branson" + }, + "repository": { + "type": "git", + "url": "http://github.com/rbranson/glob-trie.js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/glob-trie.js/0.1.0", + "0.2.0": "http://registry.npmjs.org/glob-trie.js/0.2.0", + "0.2.1": "http://registry.npmjs.org/glob-trie.js/0.2.1" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/glob-trie.js/-/glob-trie.js-0.1.0.tgz" + }, + "0.2.0": { + "tarball": "http://registry.npmjs.org/glob-trie.js/-/glob-trie.js-0.2.0.tgz" + }, + "0.2.1": { + "tarball": "http://registry.npmjs.org/glob-trie.js/-/glob-trie.js-0.2.1.tgz" + } + }, + "url": "http://registry.npmjs.org/glob-trie.js/" + }, + "global": { + "name": "global", + "description": "Implementation of Global Pattern for Node.js", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "JerrySievert", + "email": "code@legitimatesounding.com" + } + ], + "time": { + "modified": "2011-07-14T00:49:49.210Z", + "created": "2011-07-14T00:49:47.540Z", + "1.0.0": "2011-07-14T00:49:49.210Z" + }, + "author": { + "name": "Jerry Sievert", + "email": "code@legitimatesounding.com", + "url": "http://legitimatesounding.com/blog/" + }, + "repository": { + "type": "git", + "url": "git://github.com/JerrySievert/global.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/global/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "182b85601200302f4f8e9c375b4422ffacb61f24", + "tarball": "http://registry.npmjs.org/global/-/global-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/global/" + }, + "globalize": { + "name": "globalize", + "description": "New age globalization and localization. Formats and parses strings, dates and numbers in over 350 cultures.", + "dist-tags": { + "latest": "0.1.0a2" + }, + "maintainers": [ + { + "name": "rdworth", + "email": "rdworth@gmail.com" + } + ], + "time": { + "modified": "2011-06-20T15:53:14.010Z", + "created": "2011-06-19T13:17:32.652Z", + "0.1.0a1": "2011-06-19T13:17:32.829Z", + "0.1.0a2": "2011-06-20T15:53:14.010Z" + }, + "author": { + "name": "Dave Reed", + "email": "dareed@microsoft.com", + "url": "http://weblogs.asp.net/infinitiesloop" + }, + "repository": { + "type": "git", + "url": "git://github.com/jquery/globalize.git" + }, + "versions": { + "0.1.0a1": "http://registry.npmjs.org/globalize/0.1.0a1", + "0.1.0a2": "http://registry.npmjs.org/globalize/0.1.0a2" + }, + "dist": { + "0.1.0a1": { + "shasum": "ebae00a623a2e23fac3b9beab00326db6ed4b271", + "tarball": "http://registry.npmjs.org/globalize/-/globalize-0.1.0a1.tgz" + }, + "0.1.0a2": { + "shasum": "7f28b382ebefd9ba0cb3d803635fbba64a87f294", + "tarball": "http://registry.npmjs.org/globalize/-/globalize-0.1.0a2.tgz" + } + }, + "keywords": [ + "utility", + "globalization", + "internationalization", + "multilingualization", + "localization", + "g11n", + "i18n", + "m17n", + "L10n", + "localize", + "format", + "parse", + "translate", + "strings", + "numbers", + "dates", + "times", + "calendars", + "cultures", + "languages", + "locales" + ], + "url": "http://registry.npmjs.org/globalize/" + }, + "glossary": { + "name": "glossary", + "description": "Term extraction module", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "harth", + "email": "fayearthur@gmail.com" + } + ], + "time": { + "modified": "2011-10-02T20:06:26.995Z", + "created": "2011-08-17T06:52:18.592Z", + "0.1.0": "2011-08-17T06:52:19.262Z", + "0.1.1": "2011-10-02T20:06:26.995Z" + }, + "author": { + "name": "Heather Arthur", + "email": "fayearthur@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/harthur/glossary.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/glossary/0.1.0", + "0.1.1": "http://registry.npmjs.org/glossary/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "cc80486d393940c987ac1d05d190defa2c6fb18f", + "tarball": "http://registry.npmjs.org/glossary/-/glossary-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "db9b49b24ffdadbf894c723e90b0fd5e982036cb", + "tarball": "http://registry.npmjs.org/glossary/-/glossary-0.1.1.tgz" + } + }, + "keywords": [ + "term extraction", + "keyword", + "tag", + "auto tag" + ], + "url": "http://registry.npmjs.org/glossary/" + }, + "glossy": { + "name": "glossy", + "description": "Syslog parser and producer", + "dist-tags": { + "latest": "0.0.9" + }, + "maintainers": [ + { + "name": "squeeks", + "email": "privacymyass@gmail.com" + } + ], + "time": { + "modified": "2011-12-09T14:00:01.821Z", + "created": "2011-02-09T20:28:27.516Z", + "0.0.1": "2011-02-09T20:28:27.914Z", + "0.0.2": "2011-02-18T14:22:43.517Z", + "0.0.3": "2011-05-09T13:56:10.772Z", + "0.0.4": "2011-05-10T10:36:17.717Z", + "0.0.5": "2011-10-03T15:25:30.394Z", + "0.0.6": "2011-11-23T00:47:01.150Z", + "0.0.7": "2011-11-23T17:43:12.006Z", + "0.0.8": "2011-11-28T11:43:49.097Z", + "0.0.9": "2011-12-09T14:00:01.821Z" + }, + "author": { + "name": "Squeeks", + "email": "privacymyass@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/squeeks/glossy.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/glossy/0.0.1", + "0.0.2": "http://registry.npmjs.org/glossy/0.0.2", + "0.0.3": "http://registry.npmjs.org/glossy/0.0.3", + "0.0.4": "http://registry.npmjs.org/glossy/0.0.4", + "0.0.5": "http://registry.npmjs.org/glossy/0.0.5", + "0.0.6": "http://registry.npmjs.org/glossy/0.0.6", + "0.0.7": "http://registry.npmjs.org/glossy/0.0.7", + "0.0.8": "http://registry.npmjs.org/glossy/0.0.8", + "0.0.9": "http://registry.npmjs.org/glossy/0.0.9" + }, + "dist": { + "0.0.1": { + "shasum": "521a567f6432738f7023d88af41e2b00e05d12ae", + "tarball": "http://registry.npmjs.org/glossy/-/glossy-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "45becdd3bbf0861181dbfbf84d2a63e551132e1d", + "tarball": "http://registry.npmjs.org/glossy/-/glossy-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "512df2fcd39745614063988723931ccbc76bec71", + "tarball": "http://registry.npmjs.org/glossy/-/glossy-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "5e9f4c1255723718d1c07c7522241af09a6ae183", + "tarball": "http://registry.npmjs.org/glossy/-/glossy-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "fb63471b860a7856c89e07edb2c3cd0a508e7f0c", + "tarball": "http://registry.npmjs.org/glossy/-/glossy-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "268220fe1cb321e787b3eaf5f46beb697e415c84", + "tarball": "http://registry.npmjs.org/glossy/-/glossy-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "1ced8661ff6acb0fe4d9304cd9462f98a632146e", + "tarball": "http://registry.npmjs.org/glossy/-/glossy-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "0afdf44a3c8ee131db08d7e6b53d255357e9fe94", + "tarball": "http://registry.npmjs.org/glossy/-/glossy-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "cbba48c39d43f519bd0361693052ffd8db551b64", + "tarball": "http://registry.npmjs.org/glossy/-/glossy-0.0.9.tgz" + } + }, + "keywords": [ + "syslog", + "logging" + ], + "url": "http://registry.npmjs.org/glossy/" + }, + "gm": { + "name": "gm", + "description": "Graphics Magick for node.", + "dist-tags": { + "latest": "0.5.0" + }, + "maintainers": [ + { + "name": "aaron", + "email": "aaron.heckmann+github@gmail.com" + } + ], + "author": { + "name": "Aaron Heckmann", + "email": "aaron.heckmann+github@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/aheckmann/gm.git" + }, + "time": { + "modified": "2011-07-12T13:09:27.564Z", + "created": "2011-04-29T01:07:41.212Z", + "0.1.1": "2011-04-29T01:07:41.212Z", + "0.1.2": "2011-04-29T01:07:41.212Z", + "0.2.0": "2011-04-29T01:07:41.212Z", + "0.2.1": "2011-04-29T01:07:41.212Z", + "0.3.0": "2011-04-29T01:07:41.212Z", + "0.3.1": "2011-04-29T01:07:41.212Z", + "0.3.2": "2011-04-29T01:07:41.212Z", + "0.4.0": "2011-04-29T01:07:41.212Z", + "0.4.1": "2011-04-29T01:07:41.212Z", + "0.4.2": "2011-05-10T12:06:00.871Z", + "0.4.3": "2011-05-18T01:18:35.542Z", + "0.5.0": "2011-07-12T13:09:27.564Z" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/gm/0.1.1", + "0.1.2": "http://registry.npmjs.org/gm/0.1.2", + "0.2.0": "http://registry.npmjs.org/gm/0.2.0", + "0.2.1": "http://registry.npmjs.org/gm/0.2.1", + "0.3.0": "http://registry.npmjs.org/gm/0.3.0", + "0.3.1": "http://registry.npmjs.org/gm/0.3.1", + "0.3.2": "http://registry.npmjs.org/gm/0.3.2", + "0.4.0": "http://registry.npmjs.org/gm/0.4.0", + "0.4.1": "http://registry.npmjs.org/gm/0.4.1", + "0.4.2": "http://registry.npmjs.org/gm/0.4.2", + "0.4.3": "http://registry.npmjs.org/gm/0.4.3", + "0.5.0": "http://registry.npmjs.org/gm/0.5.0" + }, + "dist": { + "0.1.1": { + "tarball": "http://packages:5984/gm/-/gm-0.1.1.tgz" + }, + "0.1.2": { + "tarball": "http://packages:5984/gm/-/gm-0.1.2.tgz" + }, + "0.2.0": { + "tarball": "http://packages:5984/gm/-/gm-0.2.0.tgz" + }, + "0.2.1": { + "tarball": "http://packages:5984/gm/-/gm-0.2.1.tgz" + }, + "0.3.0": { + "tarball": "http://packages:5984/gm/-/gm-0.3.0.tgz" + }, + "0.3.1": { + "tarball": "http://packages:5984/gm/-/gm-0.3.1.tgz" + }, + "0.3.2": { + "tarball": "http://packages:5984/gm/-/gm-0.3.2.tgz" + }, + "0.4.0": { + "tarball": "http://packages:5984/gm/-/gm-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "0c19a790f9d2065bf5793fb4d6b6960c9850c56d", + "tarball": "http://registry.npmjs.org/gm/-/gm-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "654ce6dbc2d39e0f1483d442580d98551c99e136", + "tarball": "http://registry.npmjs.org/gm/-/gm-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "be6bbc9b2fc2dee4cfb5e7b1cfb18f4675801588", + "tarball": "http://registry.npmjs.org/gm/-/gm-0.4.3.tgz" + }, + "0.5.0": { + "shasum": "6f963bdc26201664efe18a39d9fd59a6ea0c2250", + "tarball": "http://registry.npmjs.org/gm/-/gm-0.5.0.tgz" + } + }, + "keywords": [ + "nodejs", + "graphics magick", + "graphics", + "magick", + "image" + ], + "url": "http://registry.npmjs.org/gm/" + }, + "gnarly": { + "name": "gnarly", + "description": "A simple web framework.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "dalsgaard", + "email": "kim@kimdalsgaard.com" + } + ], + "time": { + "modified": "2011-06-30T21:26:33.690Z", + "created": "2011-06-30T21:26:32.820Z", + "0.0.1": "2011-06-30T21:26:33.690Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/gnarly/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "c5ccac1a523f70f23114e56a7c256e9286909a02", + "tarball": "http://registry.npmjs.org/gnarly/-/gnarly-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/gnarly/" + }, + "gnomenotify": { + "name": "gnomenotify", + "description": "C++ bindings for GNOME libnotify on-screen notifications", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "bodil", + "email": "bodil@bodil.tv" + } + ], + "time": { + "modified": "2011-08-20T20:26:07.705Z", + "created": "2011-01-23T20:25:55.961Z", + "0.0.1": "2011-01-23T20:25:56.661Z", + "0.0.2": "2011-01-27T22:51:32.830Z", + "0.0.3": "2011-01-27T23:23:43.519Z", + "0.0.4": "2011-08-20T20:26:07.705Z" + }, + "author": { + "name": "Bodil Stokke", + "email": "bodil@bodil.tv" + }, + "repository": { + "type": "git", + "url": "git://github.com/bodil/node-gnomenotify.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/gnomenotify/0.0.1", + "0.0.2": "http://registry.npmjs.org/gnomenotify/0.0.2", + "0.0.3": "http://registry.npmjs.org/gnomenotify/0.0.3", + "0.0.4": "http://registry.npmjs.org/gnomenotify/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "1ea625fdbddab1536546b04db3eddc3056aba6c6", + "tarball": "http://registry.npmjs.org/gnomenotify/-/gnomenotify-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "361d081bceb315f263c6f27033827e6aad934249", + "tarball": "http://registry.npmjs.org/gnomenotify/-/gnomenotify-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "6990ce929507499ad63cbad75bcb9e25eaef50d5", + "tarball": "http://registry.npmjs.org/gnomenotify/-/gnomenotify-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "320bba68f08dec7929c5705bd24e4fc3eec899e0", + "tarball": "http://registry.npmjs.org/gnomenotify/-/gnomenotify-0.0.4.tgz" + } + }, + "keywords": [ + "libnotify" + ], + "url": "http://registry.npmjs.org/gnomenotify/" + }, + "gofer": { + "name": "gofer", + "description": "Static web server with canonical host redirection (wraps Paperboy)", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "grantheaslip", + "email": "me@grantheaslip.com" + } + ], + "time": { + "modified": "2011-07-14T00:51:07.721Z", + "created": "2011-07-04T02:56:49.112Z", + "0.1.0": "2011-07-04T02:56:49.338Z", + "0.1.1": "2011-07-05T23:59:24.160Z", + "0.1.2": "2011-07-06T00:14:13.971Z", + "0.1.3": "2011-07-06T01:06:33.631Z", + "0.2.0": "2011-07-06T01:13:02.864Z", + "0.2.1": "2011-07-14T00:51:07.721Z" + }, + "author": { + "name": "Grant Heaslip", + "email": "me@grantheaslip.com", + "url": "http://grantheaslip.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/grantheaslip/gofer.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/gofer/0.1.0", + "0.1.1": "http://registry.npmjs.org/gofer/0.1.1", + "0.1.2": "http://registry.npmjs.org/gofer/0.1.2", + "0.2.0": "http://registry.npmjs.org/gofer/0.2.0", + "0.2.1": "http://registry.npmjs.org/gofer/0.2.1" + }, + "dist": { + "0.1.0": { + "shasum": "6e0a54e407c5fb912079bd1a80776f49c194413d", + "tarball": "http://registry.npmjs.org/gofer/-/gofer-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "d5fba3629643e80eae5e85c2c37440cae28bedcf", + "tarball": "http://registry.npmjs.org/gofer/-/gofer-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "35ae9be25e71458a34c6639263d35c702dc81b17", + "tarball": "http://registry.npmjs.org/gofer/-/gofer-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "7b7a8eb643597651ed2f1dbefde0c4b9ecd36c8b", + "tarball": "http://registry.npmjs.org/gofer/-/gofer-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "5b65b20e7731910adf27aca31aa85cb5138fedeb", + "tarball": "http://registry.npmjs.org/gofer/-/gofer-0.2.1.tgz" + } + }, + "keywords": [ + "static", + "server", + "web server", + "canonical", + "canonical host", + "paperboy" + ], + "url": "http://registry.npmjs.org/gofer/" + }, + "goo.gl": { + "name": "goo.gl", + "description": "A url shortener and expander powered by Google's URL shorting service", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "kai", + "email": "kmallea@gmail.com" + } + ], + "time": { + "modified": "2011-07-21T09:26:34.954Z", + "created": "2011-07-07T04:21:18.185Z", + "0.0.1": "2011-07-07T04:21:18.380Z", + "0.0.2": "2011-07-08T19:34:07.358Z" + }, + "author": { + "name": "Kai Mallea", + "email": "kmallea@gmail.com", + "url": "http://www.mallea.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/kaimallea/node-googl.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/goo.gl/0.0.1", + "0.0.2": "http://registry.npmjs.org/goo.gl/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "3dd19909ca79670a9c15a6800f2c295d468cd069", + "tarball": "http://registry.npmjs.org/goo.gl/-/goo.gl-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "30537ef4e342f021c81fc368603407fef20c31f3", + "tarball": "http://registry.npmjs.org/goo.gl/-/goo.gl-0.0.2.tgz" + } + }, + "keywords": [ + "google", + "googl", + "goo.gl", + "urls", + "shortner", + "expander" + ], + "url": "http://registry.npmjs.org/goo.gl/" + }, + "goodreads": { + "name": "goodreads", + "description": "Wrapper for the Goodreads API", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "bdickason", + "email": "dickason@gmail.com" + } + ], + "time": { + "modified": "2011-07-24T16:05:31.932Z", + "created": "2011-07-23T20:19:17.787Z", + "0.0.1": "2011-07-23T20:19:17.971Z", + "0.0.2": "2011-07-24T16:05:31.932Z" + }, + "author": { + "name": "Brad Dickason", + "email": "dickason@gmail.com", + "url": "http://braddickason.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/bdickason/node-goodreads.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/goodreads/0.0.1", + "0.0.2": "http://registry.npmjs.org/goodreads/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "75fdd11cf56cbb1cbc0d445a1beba34bffef5db9", + "tarball": "http://registry.npmjs.org/goodreads/-/goodreads-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "ccbbb03aa0968f1810b7c9f14baa013f6d8557a5", + "tarball": "http://registry.npmjs.org/goodreads/-/goodreads-0.0.2.tgz" + } + }, + "keywords": [ + "goodreads", + "books", + "lists" + ], + "url": "http://registry.npmjs.org/goodreads/" + }, + "goog": { + "name": "goog", + "description": "Server-side Google Closure with Node.js", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "hsch", + "email": "hendrik.schnepel@gmail.com" + } + ], + "author": { + "name": "Hendrik Schnepel", + "url": "hendrik.schnepel@gmail.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:hsch/node-goog.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/goog/0.2.0", + "0.2.1": "http://registry.npmjs.org/goog/0.2.1" + }, + "dist": { + "0.2.0": { + "tarball": "http://registry.npmjs.org/goog/-/goog-0.2.0.tgz" + }, + "0.2.1": { + "tarball": "http://registry.npmjs.org/goog/-/goog-0.2.1.tgz" + } + }, + "url": "http://registry.npmjs.org/goog/" + }, + "googl": { + "name": "googl", + "description": "Goo.gl API for Node.js", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "ukstv", + "email": "ukstv@ya.ru" + } + ], + "author": { + "name": "Sergey Ukustov", + "email": "ukstv@ya.ru" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/googl/0.1.0", + "0.2.0": "http://registry.npmjs.org/googl/0.2.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/googl/-/googl-0.1.0.tgz" + }, + "0.2.0": { + "tarball": "http://packages:5984/googl/-/googl-0.2.0.tgz" + } + }, + "keywords": [ + "googl", + "urls", + "url shortner", + "url expander" + ], + "url": "http://registry.npmjs.org/googl/" + }, + "Google_Plus_API": { + "name": "Google_Plus_API", + "description": "Employs the official Google+ API", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "tmarshall", + "email": "timothyjmarshall@gmail.com" + } + ], + "time": { + "modified": "2011-09-15T22:55:57.354Z", + "created": "2011-09-15T22:55:56.835Z", + "0.0.1": "2011-09-15T22:55:57.354Z" + }, + "author": { + "name": "Timothy J. Marshall", + "email": "timothyjmarshall@gmail.com", + "url": "http://timothyjmarshall.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/tmarshall/Google-Plus-API.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/Google_Plus_API/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "41aa65e7265c3fdebfde7146ddd3ba9df4af8cc7", + "tarball": "http://registry.npmjs.org/Google_Plus_API/-/Google_Plus_API-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/Google_Plus_API/" + }, + "google-images": { + "name": "google-images", + "description": "Search images using Google Images", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "vdemedes", + "email": "sbioko@gmail.com" + } + ], + "time": { + "modified": "2011-12-08T11:08:39.435Z", + "created": "2011-12-02T16:58:38.487Z", + "0.0.1": "2011-12-02T16:58:39.985Z", + "0.0.2": "2011-12-08T11:08:39.435Z" + }, + "author": { + "name": "Vadim Demedes", + "email": "sbioko@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/google-images/0.0.1", + "0.0.2": "http://registry.npmjs.org/google-images/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "51b1b02982bef58e77d22bd5d037113b61379337", + "tarball": "http://registry.npmjs.org/google-images/-/google-images-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "e17f6a02a9326eccd4fc2f23a71d8b174f900326", + "tarball": "http://registry.npmjs.org/google-images/-/google-images-0.0.2.tgz" + } + }, + "keywords": [ + "google", + "images", + "google images", + "image search" + ], + "url": "http://registry.npmjs.org/google-images/" + }, + "google-openid": { + "name": "google-openid", + "description": "Authenticate for Google OpenID", + "dist-tags": { + "latest": "0.1.8" + }, + "maintainers": [ + { + "name": "alfredwesterveld", + "email": "alfredwesterveld@gmail.com" + } + ], + "time": { + "modified": "2011-01-31T23:37:30.236Z", + "created": "2011-01-30T02:37:14.113Z", + "0.1.0": "2011-01-30T02:37:14.421Z", + "0.1.1": "2011-01-30T07:28:00.708Z", + "0.1.2": "2011-01-30T21:49:03.676Z", + "0.1.3": "2011-01-30T23:59:02.695Z", + "0.1.4": "2011-01-31T00:01:02.790Z", + "0.1.5": "2011-01-31T00:22:17.049Z", + "0.1.6": "2011-01-31T20:29:00.826Z", + "0.1.7": "2011-01-31T20:34:56.240Z", + "0.1.8": "2011-01-31T23:37:30.236Z" + }, + "repository": { + "type": "git", + "url": "https://alfredwesterveld@github.com/alfredwesterveld/node-googleopenid.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/google-openid/0.1.0", + "0.1.1": "http://registry.npmjs.org/google-openid/0.1.1", + "0.1.2": "http://registry.npmjs.org/google-openid/0.1.2", + "0.1.3": "http://registry.npmjs.org/google-openid/0.1.3", + "0.1.4": "http://registry.npmjs.org/google-openid/0.1.4", + "0.1.5": "http://registry.npmjs.org/google-openid/0.1.5", + "0.1.6": "http://registry.npmjs.org/google-openid/0.1.6", + "0.1.7": "http://registry.npmjs.org/google-openid/0.1.7", + "0.1.8": "http://registry.npmjs.org/google-openid/0.1.8" + }, + "dist": { + "0.1.0": { + "shasum": "259c8c6fd3532b895979bab37024c34cbace1d3e", + "tarball": "http://registry.npmjs.org/google-openid/-/google-openid-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "d65260b139adbba8042d289fd2303c134d11bf3d", + "tarball": "http://registry.npmjs.org/google-openid/-/google-openid-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "cab6c719c146a855e3224825633aa6ee581fbbdb", + "tarball": "http://registry.npmjs.org/google-openid/-/google-openid-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "e3f06f6a2fdbfdc9d83c8fc41bc7cbcdd8452599", + "tarball": "http://registry.npmjs.org/google-openid/-/google-openid-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "ac12e03757d90e4c3536a8303208e8c77cc33262", + "tarball": "http://registry.npmjs.org/google-openid/-/google-openid-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "ecfc381cd5f43f3d39bc47dc9c0e99e0ac46e319", + "tarball": "http://registry.npmjs.org/google-openid/-/google-openid-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "b9d7072262979d7082de6d241b5ccf88109fe040", + "tarball": "http://registry.npmjs.org/google-openid/-/google-openid-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "dff313ab509b3919f98a9cc7bc0d2bc700817536", + "tarball": "http://registry.npmjs.org/google-openid/-/google-openid-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "bd2475453f666b921861fba7d8862acaeb8c3de1", + "tarball": "http://registry.npmjs.org/google-openid/-/google-openid-0.1.8.tgz" + } + }, + "url": "http://registry.npmjs.org/google-openid/" + }, + "google-spreadsheets": { + "name": "google-spreadsheets", + "description": "Google Spreadsheet Data API for Node.js", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "sam.c.day", + "email": "sam.c.day@gmail.com" + } + ], + "time": { + "modified": "2011-11-09T10:06:10.474Z", + "created": "2011-08-01T07:56:58.012Z", + "0.0.1": "2011-08-01T07:56:59.536Z", + "0.0.2": "2011-11-09T04:18:03.169Z", + "0.0.3": "2011-11-09T10:06:10.474Z" + }, + "author": { + "name": "Sam", + "email": "sam.c.day@gmail.com", + "url": "http://sam.is-super-awesome.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/samcday/node-google-spreadsheets.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/google-spreadsheets/0.0.1", + "0.0.2": "http://registry.npmjs.org/google-spreadsheets/0.0.2", + "0.0.3": "http://registry.npmjs.org/google-spreadsheets/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "18e30f42249c790a7aefd63c339eaaabaf6b669e", + "tarball": "http://registry.npmjs.org/google-spreadsheets/-/google-spreadsheets-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "56d3b994f180a9a4fc3b00f438af68cafc6340cb", + "tarball": "http://registry.npmjs.org/google-spreadsheets/-/google-spreadsheets-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "8910dffa2ed8a996524b5dc1fcc58aeb5651deac", + "tarball": "http://registry.npmjs.org/google-spreadsheets/-/google-spreadsheets-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/google-spreadsheets/" + }, + "google-voice": { + "name": "google-voice", + "description": "A Google Voice api for node.js that allows: placing calls/sending SMS/scheduling calls using Google Calendar/accessing & manipulating GV data.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "ampersand", + "email": "alexstets@gmail.com" + } + ], + "time": { + "modified": "2011-06-03T00:07:26.132Z", + "created": "2011-06-02T10:12:29.437Z", + "0.0.1": "2011-06-02T10:12:29.646Z", + "0.0.2": "2011-06-02T16:01:00.053Z" + }, + "author": { + "name": "AXS" + }, + "repository": { + "type": "git", + "url": "git://github.com/amper5and/node-google-voice.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/google-voice/0.0.1", + "0.0.2": "http://registry.npmjs.org/google-voice/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "2f70608f7a27faecdb95f995b19ea3045c0f55f5", + "tarball": "http://registry.npmjs.org/google-voice/-/google-voice-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "cd92a8a736016f43857b59fe6cbb8962ba3dffd5", + "tarball": "http://registry.npmjs.org/google-voice/-/google-voice-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/google-voice/" + }, + "googleanalytics": { + "name": "googleanalytics", + "description": "Google Analytics library.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "ncb000gt", + "email": "nicholas.j.campbell@gmail.com" + } + ], + "author": { + "name": "Nick Campbell", + "url": "http://github.com/ncb000gt" + }, + "repository": { + "type": "git", + "url": "http://github.com/ncb000gt/node-googleanalytics.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/googleanalytics/0.1.0", + "0.1.1": "http://registry.npmjs.org/googleanalytics/0.1.1" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/googleanalytics/-/googleanalytics-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://packages:5984/googleanalytics/-/googleanalytics-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/googleanalytics/" + }, + "googleclientlogin": { + "name": "googleclientlogin", + "description": "Log in to Google services using CllientLogin method", + "dist-tags": { + "latest": "0.2.3" + }, + "maintainers": [ + { + "name": "ajnasz", + "email": "ajnasz@ajnasz.hu" + } + ], + "time": { + "modified": "2011-12-12T07:54:06.419Z", + "created": "2011-02-21T04:44:20.340Z", + "0.1.0": "2011-02-21T04:44:20.717Z", + "0.1.1": "2011-05-02T14:52:10.393Z", + "0.1.2": "2011-05-25T12:02:52.609Z", + "0.1.3": "2011-05-31T07:28:14.102Z", + "0.1.4": "2011-06-02T20:18:43.649Z", + "0.1.5": "2011-06-03T08:05:19.922Z", + "0.2.0": "2011-06-06T17:23:09.256Z", + "0.2.1": "2011-06-26T17:00:11.194Z", + "0.2.2": "2011-07-03T09:22:06.252Z", + "0.2.3": "2011-12-12T07:54:06.419Z" + }, + "author": { + "name": "Lajos Koszti", + "email": "ajnasz@ajnasz.hu", + "url": "http://ajnasz.hu" + }, + "repository": { + "type": "git", + "url": "git://github.com/Ajnasz/GoogleClientLogin.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/googleclientlogin/0.1.0", + "0.1.1": "http://registry.npmjs.org/googleclientlogin/0.1.1", + "0.1.2": "http://registry.npmjs.org/googleclientlogin/0.1.2", + "0.1.3": "http://registry.npmjs.org/googleclientlogin/0.1.3", + "0.1.4": "http://registry.npmjs.org/googleclientlogin/0.1.4", + "0.1.5": "http://registry.npmjs.org/googleclientlogin/0.1.5", + "0.2.0": "http://registry.npmjs.org/googleclientlogin/0.2.0", + "0.2.1": "http://registry.npmjs.org/googleclientlogin/0.2.1", + "0.2.2": "http://registry.npmjs.org/googleclientlogin/0.2.2", + "0.2.3": "http://registry.npmjs.org/googleclientlogin/0.2.3" + }, + "dist": { + "0.1.0": { + "shasum": "6f56073b94b9014e4414ab24b121b4837407c665", + "tarball": "http://registry.npmjs.org/googleclientlogin/-/googleclientlogin-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "9d2828f27c978c07c0d06b4b5712b1d9a0fb35e5", + "tarball": "http://registry.npmjs.org/googleclientlogin/-/googleclientlogin-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "1c12cec5e7016bd7eda68074f62d03b32e9bb5f5", + "tarball": "http://registry.npmjs.org/googleclientlogin/-/googleclientlogin-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "ec45c0d92c69d3c532de7ed4059e3a8b01e190a9", + "tarball": "http://registry.npmjs.org/googleclientlogin/-/googleclientlogin-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "c8d37249eb72193aae4de737a28cb73b3a7e0a1f", + "tarball": "http://registry.npmjs.org/googleclientlogin/-/googleclientlogin-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "0d13b697d5b6aa6344ecc225a50b0233c8ec50cc", + "tarball": "http://registry.npmjs.org/googleclientlogin/-/googleclientlogin-0.1.5.tgz" + }, + "0.2.0": { + "shasum": "ae40897083e5ca00deb0bf1c54cdd19f15f5416f", + "tarball": "http://registry.npmjs.org/googleclientlogin/-/googleclientlogin-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "14245879ed8fbc82d123b3bbbff15826cc228283", + "tarball": "http://registry.npmjs.org/googleclientlogin/-/googleclientlogin-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "39129352ef00f90b91416106a38f93de31c951da", + "tarball": "http://registry.npmjs.org/googleclientlogin/-/googleclientlogin-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "6783e2ce59067836b15c02802e02cfca590ccc05", + "tarball": "http://registry.npmjs.org/googleclientlogin/-/googleclientlogin-0.2.3.tgz" + } + }, + "keywords": [ + "google", + "service", + "authentication", + "api", + "clientlogin" + ], + "url": "http://registry.npmjs.org/googleclientlogin/" + }, + "googlediff": { + "name": "googlediff", + "description": "using jsinc and a simple index file. drop in the original code form google-diff-match-patch/ svn, thus easy to update.", + "dist-tags": { + "latest": "0.0.90" + }, + "maintainers": [ + { + "name": "shimondoodkin", + "email": "helpmepro1@gmail.com" + } + ], + "time": { + "modified": "2011-07-15T17:11:46.830Z", + "created": "2011-07-15T17:11:45.534Z", + "0.0.90": "2011-07-15T17:11:46.830Z" + }, + "author": { + "name": "Neil Fraser", + "email": "root@neil.fraser.name", + "url": "http://neil.fraser.name/" + }, + "repository": { + "type": "git", + "url": "git://github.com/shimondoodkin/googlediff.git" + }, + "versions": { + "0.0.90": "http://registry.npmjs.org/googlediff/0.0.90" + }, + "dist": { + "0.0.90": { + "shasum": "cff8b7c0cd67b86cbd38d228d7551f15af39952a", + "tarball": "http://registry.npmjs.org/googlediff/-/googlediff-0.0.90.tgz" + } + }, + "url": "http://registry.npmjs.org/googlediff/" + }, + "googlemaps": { + "name": "googlemaps", + "description": "A simple way to query the Google Maps API from Node.js", + "dist-tags": { + "latest": "0.1.5" + }, + "maintainers": [ + { + "name": "moshen", + "email": "moshen.colin@gmail.com" + } + ], + "repository": { + "type": "git", + "url": "git://github.com/moshen/node-googlemaps.git" + }, + "time": { + "modified": "2011-12-06T06:11:52.747Z", + "created": "2011-05-11T15:41:51.917Z", + "0.1.0": "2011-05-11T15:41:51.917Z", + "0.1.1": "2011-05-11T15:41:51.917Z", + "0.1.2": "2011-05-11T15:41:51.917Z", + "0.1.3": "2011-07-24T22:12:52.950Z", + "0.1.4": "2011-09-16T05:39:26.826Z", + "0.1.5": "2011-12-06T06:11:52.747Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/googlemaps/0.1.0", + "0.1.1": "http://registry.npmjs.org/googlemaps/0.1.1", + "0.1.2": "http://registry.npmjs.org/googlemaps/0.1.2", + "0.1.3": "http://registry.npmjs.org/googlemaps/0.1.3", + "0.1.4": "http://registry.npmjs.org/googlemaps/0.1.4", + "0.1.5": "http://registry.npmjs.org/googlemaps/0.1.5" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/googlemaps/-/googlemaps-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://registry.npmjs.org/googlemaps/-/googlemaps-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "7c3b1972abf8eab61c9e966a40ec9c32e054e8bf", + "tarball": "http://registry.npmjs.org/googlemaps/-/googlemaps-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "0e2fdffada809553ee998afd237fc1ec679c8658", + "tarball": "http://registry.npmjs.org/googlemaps/-/googlemaps-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "8a83f3475a8b1f961f8f95d6430fdc43c68ced9d", + "tarball": "http://registry.npmjs.org/googlemaps/-/googlemaps-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "fc792b1204f0d1dc49d5c4e6f0bb81f401cb8c79", + "tarball": "http://registry.npmjs.org/googlemaps/-/googlemaps-0.1.5.tgz" + } + }, + "keywords": [ + "map", + "geo", + "api" + ], + "url": "http://registry.npmjs.org/googlemaps/" + }, + "googleplus-scraper": { + "name": "googleplus-scraper", + "description": "Retrieve profile infos and posts from Google+ users", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "fhemberger", + "email": "mail@frederic-hemberger.de" + } + ], + "time": { + "modified": "2011-09-11T17:17:58.049Z", + "created": "2011-07-30T10:20:40.980Z", + "0.0.1": "2011-07-30T10:20:41.625Z", + "0.0.2": "2011-08-11T20:46:32.111Z", + "0.0.3": "2011-09-11T17:17:58.049Z" + }, + "author": { + "name": "Frederic Hemberger", + "url": "http://frederic-hemberger.de/" + }, + "repository": { + "type": "git", + "url": "git://github.com/fhemberger/googleplus-scraper.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/googleplus-scraper/0.0.1", + "0.0.2": "http://registry.npmjs.org/googleplus-scraper/0.0.2", + "0.0.3": "http://registry.npmjs.org/googleplus-scraper/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "7951d7bd4d0aea8044be19d3b54f277908a9d86f", + "tarball": "http://registry.npmjs.org/googleplus-scraper/-/googleplus-scraper-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "66423609ff2b12ceb21adad940816dcf85e5fd8c", + "tarball": "http://registry.npmjs.org/googleplus-scraper/-/googleplus-scraper-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "afc48851ddcc9562f2457196c04e6d96cdbd7c72", + "tarball": "http://registry.npmjs.org/googleplus-scraper/-/googleplus-scraper-0.0.3.tgz" + } + }, + "keywords": [ + "google+", + "google plus" + ], + "url": "http://registry.npmjs.org/googleplus-scraper/" + }, + "googlereaderauth": { + "name": "googlereaderauth", + "description": "OAuth for Google Reader", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "tobbe", + "email": "tobbe@tlundberg.com" + } + ], + "time": { + "modified": "2011-07-21T09:58:17.198Z", + "created": "2011-07-20T22:29:01.525Z", + "0.1.0": "2011-07-20T22:29:02.322Z", + "0.1.1": "2011-07-21T09:58:17.198Z" + }, + "author": { + "name": "Tobbe Lundberg", + "url": "www.tlundberg.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Tobbe/googlereaderauth.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/googlereaderauth/0.1.0", + "0.1.1": "http://registry.npmjs.org/googlereaderauth/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "eeb4b9415804b9da760a00eb9effe15a4c29fd2b", + "tarball": "http://registry.npmjs.org/googlereaderauth/-/googlereaderauth-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "692f675786d6ba30882d5e6467f653ea41877d9c", + "tarball": "http://registry.npmjs.org/googlereaderauth/-/googlereaderauth-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/googlereaderauth/" + }, + "googlesets": { + "name": "googlesets", + "description": "A dead simple API for Google Sets", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "ktamas", + "email": "ktamas@ktamas.com" + } + ], + "time": { + "modified": "2011-04-24T21:03:20.393Z", + "created": "2011-04-24T09:55:14.561Z", + "0.0.1": "2011-04-24T09:55:15.012Z", + "0.0.2": "2011-04-24T21:03:20.393Z" + }, + "author": { + "name": "Tamas Kadar", + "email": "ktamas@ktamas.com", + "url": "http://blog.ktamas.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/KTamas/googlesets.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/googlesets/0.0.1", + "0.0.2": "http://registry.npmjs.org/googlesets/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "6b8edfbc89e77231df47444146f14e046c162c7d", + "tarball": "http://registry.npmjs.org/googlesets/-/googlesets-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "6b3b5fb3a670deaac36a8ca99e10dda2541601a7", + "tarball": "http://registry.npmjs.org/googlesets/-/googlesets-0.0.2.tgz" + } + }, + "keywords": [ + "google", + "sets", + "googlesets" + ], + "url": "http://registry.npmjs.org/googlesets/" + }, + "googleweather": { + "name": "googleweather", + "description": "Unofficial client for Google's unofficial weather API.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "maxkueng", + "email": "me@maxkueng.com" + } + ], + "time": { + "modified": "2011-05-15T01:16:56.600Z", + "created": "2011-05-15T01:16:56.129Z", + "0.1.0": "2011-05-15T01:16:56.600Z" + }, + "author": { + "name": "Max Kueng", + "email": "me@maxkueng.com", + "url": "http://maxkueng.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/maxkueng/node-googleweather.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/googleweather/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "0faf0317443473b8e5669d7e772a94f47c49bded", + "tarball": "http://registry.npmjs.org/googleweather/-/googleweather-0.1.0.tgz" + } + }, + "keywords": [ + "weather", + "forecast", + "google", + "api" + ], + "url": "http://registry.npmjs.org/googleweather/" + }, + "gopostal.node": { + "name": "gopostal.node", + "description": "GoPostal API Client", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "mattinsler", + "email": "matt.insler@gmail.com" + } + ], + "time": { + "modified": "2011-05-23T21:04:23.801Z", + "created": "2011-05-23T21:04:23.508Z", + "0.1.0": "2011-05-23T21:04:23.801Z" + }, + "author": { + "name": "Matt Insler", + "email": "matt.insler@gmail.com", + "url": "www.mattinsler.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mattinsler/gopostal.node.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/gopostal.node/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "866956a03b3608714adc79644667d8acaa9552c4", + "tarball": "http://registry.npmjs.org/gopostal.node/-/gopostal.node-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/gopostal.node/" + }, + "Gord": { + "name": "Gord", + "description": "An object conversion thingy.", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "dawnerd", + "email": "troy@somanyscientists.com" + } + ], + "time": { + "modified": "2011-05-31T17:53:51.630Z", + "created": "2011-05-31T17:14:31.237Z", + "0.0.1": "2011-05-31T17:14:31.729Z", + "0.0.2": "2011-05-31T17:18:00.413Z", + "0.0.4": "2011-05-31T17:28:22.096Z", + "0.0.5": "2011-05-31T17:52:08.597Z", + "0.0.6": "2011-05-31T17:53:51.630Z" + }, + "author": { + "name": "Troy Whiteley", + "email": "troy@somanyscientists.com", + "url": "@dawnerd" + }, + "repository": { + "type": "git", + "url": "git://github.com/dawnerd/Gord.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/Gord/0.0.1", + "0.0.2": "http://registry.npmjs.org/Gord/0.0.2", + "0.0.4": "http://registry.npmjs.org/Gord/0.0.4", + "0.0.5": "http://registry.npmjs.org/Gord/0.0.5", + "0.0.6": "http://registry.npmjs.org/Gord/0.0.6" + }, + "dist": { + "0.0.1": { + "shasum": "c50fc833160edda29dcfd1eaf72b0b8e205c0521", + "tarball": "http://registry.npmjs.org/Gord/-/Gord-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f8df26bd5ab01c053e2dab088c2ca422feec60fa", + "tarball": "http://registry.npmjs.org/Gord/-/Gord-0.0.2.tgz" + }, + "0.0.4": { + "shasum": "6d845df5062b8630ec3d2075a845442295c70a81", + "tarball": "http://registry.npmjs.org/Gord/-/Gord-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "f37b613b6aef8d8dafe1e39edd3105ad5879cb93", + "tarball": "http://registry.npmjs.org/Gord/-/Gord-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "63f8e29952cfce3c0e0f0eb2af60c87a37342d52", + "tarball": "http://registry.npmjs.org/Gord/-/Gord-0.0.6.tgz" + } + }, + "keywords": [ + "utility", + "object", + "data conversion" + ], + "url": "http://registry.npmjs.org/Gord/" + }, + "gowallan": { + "name": "gowallan", + "description": "Thin wrapper for the gowalla REST api, DO NOT USE, very incomplete", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "lamp", + "email": "matt@madebylamp.com" + } + ], + "time": { + "modified": "2011-05-29T00:41:33.059Z", + "created": "2011-05-29T00:41:32.297Z", + "0.0.0": "2011-05-29T00:41:33.059Z" + }, + "author": { + "name": "lamp" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/gowallan/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "a6d013a12f11b2e0230bb3277f5fdb562eb082d8", + "tarball": "http://registry.npmjs.org/gowallan/-/gowallan-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/gowallan/" + }, + "gowiththeflow": { + "name": "gowiththeflow", + "description": "asynchronous flow-control micro library", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "jetienne", + "email": "jerome.etienne@gmail.com" + } + ], + "time": { + "modified": "2011-07-21T10:07:49.637Z", + "created": "2011-07-21T10:07:49.229Z", + "1.0.0": "2011-07-21T10:07:49.637Z" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/gowiththeflow/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "6ebe74fd8061e116433811e76d11663d1135c893", + "tarball": "http://registry.npmjs.org/gowiththeflow/-/gowiththeflow-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/gowiththeflow/" + }, + "gpg": { + "name": "gpg", + "description": "GPG encryption and decryption in node.js by way of the gpg command-line tool", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "drudge", + "email": "drudge@conceited.net" + } + ], + "time": { + "modified": "2011-09-02T19:53:57.719Z", + "created": "2011-06-05T18:49:53.219Z", + "0.1.0": "2011-06-05T18:49:53.347Z", + "0.2.0": "2011-09-02T19:53:57.719Z" + }, + "author": { + "name": "Nicholas Penree", + "email": "drudge@conceited.net", + "url": "http://penr.ee" + }, + "repository": { + "type": "git", + "url": "git://github.com/drudge/node-gpg.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/gpg/0.1.0", + "0.2.0": "http://registry.npmjs.org/gpg/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "dbb6d54dfd0e2a4bb4958deeebf849dc4033ef52", + "tarball": "http://registry.npmjs.org/gpg/-/gpg-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "499ac523516c50d0164b14a50e4bfe11f6a0f12d", + "tarball": "http://registry.npmjs.org/gpg/-/gpg-0.2.0.tgz" + } + }, + "keywords": [ + "gpg", + "encrypt", + "decrypt", + "pgp", + "gnupg" + ], + "url": "http://registry.npmjs.org/gpg/" + }, + "graceful-fs": { + "name": "graceful-fs", + "description": "fs monkey-patching to avoid EMFILE and other problems", + "dist-tags": { + "latest": "1.1.2" + }, + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "time": { + "modified": "2011-12-03T02:27:37.810Z", + "created": "2011-07-20T08:49:36.339Z", + "1.0.0": "2011-07-20T08:49:38.481Z", + "1.0.1": "2011-09-25T00:33:29.942Z", + "1.0.2": "2011-11-18T21:15:46.607Z", + "1.1.0": "2011-11-23T00:45:14.407Z", + "1.1.1": "2011-11-28T23:32:21.075Z", + "1.1.2": "2011-12-03T02:27:37.810Z" + }, + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/isaacs/node-graceful-fs.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/graceful-fs/1.0.0", + "1.0.1": "http://registry.npmjs.org/graceful-fs/1.0.1", + "1.0.2": "http://registry.npmjs.org/graceful-fs/1.0.2", + "1.1.0": "http://registry.npmjs.org/graceful-fs/1.1.0", + "1.1.1": "http://registry.npmjs.org/graceful-fs/1.1.1", + "1.1.2": "http://registry.npmjs.org/graceful-fs/1.1.2" + }, + "dist": { + "1.0.0": { + "shasum": "ba8e39479ec46658d59eb305f878f8b0820fa8e5", + "tarball": "http://registry.npmjs.org/graceful-fs/-/graceful-fs-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "63647ef7ca9bf0abc561cdb72d2a58704a11cc2f", + "tarball": "http://registry.npmjs.org/graceful-fs/-/graceful-fs-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "79ac9f685c97c391d88a95e4cde5a1313c3807de", + "tarball": "http://registry.npmjs.org/graceful-fs/-/graceful-fs-1.0.2.tgz" + }, + "1.1.0": { + "shasum": "c36f1d3b31d71b4cef3da303b784074f6d578037", + "tarball": "http://registry.npmjs.org/graceful-fs/-/graceful-fs-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "2f10989f7e9addfcea6592d95f52bb0c2d7e5bd2", + "tarball": "http://registry.npmjs.org/graceful-fs/-/graceful-fs-1.1.1.tgz" + }, + "1.1.2": { + "shasum": "e82181f54de6620c67034e736fbc0d8fee8c1ffa", + "tarball": "http://registry.npmjs.org/graceful-fs/-/graceful-fs-1.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/graceful-fs/" + }, + "gracie": { + "name": "gracie", + "description": "On-the-fly javascript contacatenator, minifier and dependency resolver for client-side JS", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "dmcquay", + "email": "dmcquay@gmail.com" + } + ], + "time": { + "modified": "2011-02-24T23:13:25.595Z", + "created": "2011-02-24T23:13:25.360Z", + "0.2.1": "2011-02-24T23:13:25.595Z" + }, + "author": { + "name": "Dustin McQuay", + "email": "dmcquay@gmail.com", + "url": "http://www.synchrosinteractive.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/dmcquay/gracie.git" + }, + "versions": { + "0.2.1": "http://registry.npmjs.org/gracie/0.2.1" + }, + "dist": { + "0.2.1": { + "shasum": "54d8e375a9b8263dbd9b16f8d64701541ba86448", + "tarball": "http://registry.npmjs.org/gracie/-/gracie-0.2.1.tgz" + } + }, + "url": "http://registry.npmjs.org/gracie/" + }, + "graff": { + "name": "graff", + "description": "A Node.JS graph theory library.", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "rfrankel", + "email": "richard@frankel.tv" + } + ], + "time": { + "modified": "2011-06-28T03:35:12.303Z", + "created": "2011-04-17T07:08:54.299Z", + "0.0.1": "2011-04-17T07:08:54.434Z", + "0.0.2": "2011-04-17T20:16:58.224Z", + "0.0.3": "2011-06-28T03:35:12.303Z" + }, + "author": { + "name": "Richard Frankel", + "email": "richard@frankel.tv" + }, + "repository": { + "type": "git", + "url": "git://github.com:rofrankel/graff.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/graff/0.0.1", + "0.0.2": "http://registry.npmjs.org/graff/0.0.2", + "0.0.3": "http://registry.npmjs.org/graff/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "6b4e7275309873aa14fdfc37dd45d3c40284f2d0", + "tarball": "http://registry.npmjs.org/graff/-/graff-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "2b721cfabdfbe9562af06ab359063267a72d9721", + "tarball": "http://registry.npmjs.org/graff/-/graff-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "3e185beab1f3cb199a262fece8b82bda22af8c24", + "tarball": "http://registry.npmjs.org/graff/-/graff-0.0.3.tgz" + } + }, + "keywords": [ + "graph", + "graph theory" + ], + "url": "http://registry.npmjs.org/graff/" + }, + "graffiti": { + "name": "graffiti", + "description": "", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "rolandpoulter", + "email": "rolandpoulter@gmail.com" + } + ], + "time": { + "modified": "2011-10-26T01:16:54.120Z", + "created": "2011-10-26T01:16:52.831Z", + "0.1.0": "2011-10-26T01:16:54.120Z" + }, + "author": { + "name": "Roland Poulter" + }, + "repository": { + "type": "git", + "url": "git://github.com/rolandpoulter/graffiti.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/graffiti/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "b59c6bbf68bcdfd05e26c24428869f7dfef7817c", + "tarball": "http://registry.npmjs.org/graffiti/-/graffiti-0.1.0.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/graffiti/" + }, + "graft": { + "name": "graft", + "description": "A library for template binding to facilitate view-first development.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "shadowfiend", + "email": "savedfastcool@gmail.com" + } + ], + "time": { + "modified": "2011-03-01T05:03:00.022Z", + "created": "2011-03-01T05:02:59.844Z", + "0.1.0": "2011-03-01T05:03:00.022Z" + }, + "author": { + "name": "Antonio Salazar Cardozo", + "email": "savedfastcool@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/graft/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "be51a0a8d6dcb1162d1d4336141d7a9fe11f31b5", + "tarball": "http://registry.npmjs.org/graft/-/graft-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/graft/" + }, + "grain": { + "name": "grain", + "description": "Grain is an async framework for node.js template languages", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "creationix", + "email": "tim@creationix.com" + } + ], + "time": { + "modified": "2011-12-03T15:09:05.369Z", + "created": "2010-12-27T05:18:51.191Z", + "0.0.1": "2010-12-27T05:18:51.530Z", + "0.0.2": "2011-12-03T00:27:41.841Z", + "0.1.0": "2011-12-03T15:09:05.369Z" + }, + "author": { + "name": "Tim Caswell", + "email": "tim@creationix.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/creationix/grain.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/grain/0.0.1", + "0.0.2": "http://registry.npmjs.org/grain/0.0.2", + "0.1.0": "http://registry.npmjs.org/grain/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "7a610a9225142c29a565c6daf8297183a5902dc8", + "tarball": "http://registry.npmjs.org/grain/-/grain-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "460512d1616f05d90c9ada371df473e66865e6bf", + "tarball": "http://registry.npmjs.org/grain/-/grain-0.0.2.tgz" + }, + "0.1.0": { + "shasum": "e49c5f478686a7a1ad9356848f6c5fe0137f0b6a", + "tarball": "http://registry.npmjs.org/grain/-/grain-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/grain/" + }, + "grainstore": { + "name": "grainstore", + "description": "Stores map styles and generates postgis friendly MML & XML for Mapnik", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "tokumine", + "email": "si@tinypla.net" + } + ], + "time": { + "modified": "2011-12-08T23:03:40.550Z", + "created": "2011-08-11T00:37:52.019Z", + "0.0.1": "2011-08-11T00:37:56.303Z", + "0.0.2": "2011-08-11T11:47:23.548Z", + "0.0.3": "2011-08-15T14:26:41.781Z", + "0.0.4": "2011-08-15T14:33:03.233Z", + "0.0.5": "2011-09-04T21:07:11.071Z", + "0.0.6": "2011-09-06T13:39:39.451Z", + "0.0.7": "2011-09-14T06:12:22.765Z", + "0.0.8": "2011-09-20T02:33:46.718Z", + "0.0.9": "2011-09-20T23:21:51.318Z", + "0.0.10": "2011-10-07T14:45:27.363Z", + "0.0.11": "2011-11-25T15:08:12.796Z", + "0.0.12": "2011-11-30T14:42:44.183Z", + "0.2.0": "2011-12-08T23:03:40.550Z" + }, + "author": { + "name": "Simon Tokumine", + "email": "si@tinypla.net", + "url": "http://tokumine.com/" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/grainstore/0.0.1", + "0.0.2": "http://registry.npmjs.org/grainstore/0.0.2", + "0.0.3": "http://registry.npmjs.org/grainstore/0.0.3", + "0.0.4": "http://registry.npmjs.org/grainstore/0.0.4", + "0.0.5": "http://registry.npmjs.org/grainstore/0.0.5", + "0.0.6": "http://registry.npmjs.org/grainstore/0.0.6", + "0.0.7": "http://registry.npmjs.org/grainstore/0.0.7", + "0.0.8": "http://registry.npmjs.org/grainstore/0.0.8", + "0.0.9": "http://registry.npmjs.org/grainstore/0.0.9", + "0.0.10": "http://registry.npmjs.org/grainstore/0.0.10", + "0.0.11": "http://registry.npmjs.org/grainstore/0.0.11", + "0.0.12": "http://registry.npmjs.org/grainstore/0.0.12", + "0.2.0": "http://registry.npmjs.org/grainstore/0.2.0" + }, + "dist": { + "0.0.1": { + "shasum": "8f4c3d33cc628d21f2a667e88f51063d509c0771", + "tarball": "http://registry.npmjs.org/grainstore/-/grainstore-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "88ff97c1a7d3be2aef03a1625f4050e731606c24", + "tarball": "http://registry.npmjs.org/grainstore/-/grainstore-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "23cbe0105249e75ff11cf9b96561cc49e0f80b40", + "tarball": "http://registry.npmjs.org/grainstore/-/grainstore-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "4befab58d99979ecc9f144d9986110d26bd3b56f", + "tarball": "http://registry.npmjs.org/grainstore/-/grainstore-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "1ee88b8a715588fdb3952730a8d12e2116b43b20", + "tarball": "http://registry.npmjs.org/grainstore/-/grainstore-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "b8fa177ce8d5fb96b7fe7b7c8c90ade02fcbf199", + "tarball": "http://registry.npmjs.org/grainstore/-/grainstore-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "de8f1847002f62a4f085ef45757d087bb3789335", + "tarball": "http://registry.npmjs.org/grainstore/-/grainstore-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "0fb06df4593276d5ae835974fe9d0a74ee8eafbc", + "tarball": "http://registry.npmjs.org/grainstore/-/grainstore-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "6988afa719bc9b2b5f01377d92905ca652fce9cd", + "tarball": "http://registry.npmjs.org/grainstore/-/grainstore-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "e0a815e58614e3ff68e0db2044e2bcdd61613fc0", + "tarball": "http://registry.npmjs.org/grainstore/-/grainstore-0.0.10.tgz" + }, + "0.0.11": { + "shasum": "a9c671deb49191e99f5583adf814f693a799858b", + "tarball": "http://registry.npmjs.org/grainstore/-/grainstore-0.0.11.tgz" + }, + "0.0.12": { + "shasum": "53ebc4f8070059a6795e5ee60c2b715fcb42c9b2", + "tarball": "http://registry.npmjs.org/grainstore/-/grainstore-0.0.12.tgz" + }, + "0.2.0": { + "shasum": "bf451ea8eb825e36bbfcefd336d2efca27c34ca1", + "tarball": "http://registry.npmjs.org/grainstore/-/grainstore-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/grainstore/" + }, + "graph": { + "name": "graph", + "description": "library for manipulating directed and undirected graphs", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "tantalor", + "email": "john.tantalo@gmail.com" + } + ], + "time": { + "modified": "2011-02-07T06:33:32.369Z", + "created": "2011-02-07T06:28:32.918Z", + "0.0.0": "2011-02-07T06:28:33.246Z", + "0.0.1": "2011-02-07T06:31:44.507Z", + "0.0.2": "2011-02-07T06:33:32.369Z" + }, + "author": { + "name": "John Tantalo", + "email": "john.tantalo@gmail.com", + "url": "http://johntantalo.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/tantalor/graphjs.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/graph/0.0.0", + "0.0.1": "http://registry.npmjs.org/graph/0.0.1", + "0.0.2": "http://registry.npmjs.org/graph/0.0.2" + }, + "dist": { + "0.0.0": { + "shasum": "ea9830805b4ce0140d116c67e8f97903f7ef4257", + "tarball": "http://registry.npmjs.org/graph/-/graph-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "34524623dd08950ff040834b04550ae42a5a8012", + "tarball": "http://registry.npmjs.org/graph/-/graph-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "76193c77a140f555896f52e5e2c12d40f10606df", + "tarball": "http://registry.npmjs.org/graph/-/graph-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/graph/" + }, + "Graph": { + "name": "Graph", + "description": "A mathematical Graph theory library.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "yoni", + "email": "yoni.bmesh@gmail.com" + } + ], + "author": { + "name": "Yoni Ben-Meshulam", + "email": "yoni.bmesh@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/Graph/0.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/Graph/-/Graph-0.0.1.tgz" + } + }, + "keywords": [ + "graph", + "graph theory", + "vertex", + "edge", + "node", + "connection" + ], + "url": "http://registry.npmjs.org/Graph/" + }, + "graphite": { + "name": "graphite", + "description": "A node.js client for graphite.", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "felixge", + "email": "felix@debuggable.com" + } + ], + "time": { + "modified": "2011-11-22T09:28:14.093Z", + "created": "2011-10-31T15:14:17.616Z", + "0.0.1": "2011-10-31T15:14:19.135Z", + "0.0.2": "2011-10-31T16:30:03.857Z", + "0.0.3": "2011-11-04T12:43:33.036Z", + "0.0.4": "2011-11-18T13:18:54.077Z", + "0.0.5": "2011-11-18T14:05:11.016Z", + "0.0.6": "2011-11-22T09:28:14.093Z" + }, + "author": { + "name": "Felix Geisendörfer", + "email": "felix@debuggable.com", + "url": "http://debuggable.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/felixge/node-graphite.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/graphite/0.0.1", + "0.0.2": "http://registry.npmjs.org/graphite/0.0.2", + "0.0.3": "http://registry.npmjs.org/graphite/0.0.3", + "0.0.4": "http://registry.npmjs.org/graphite/0.0.4", + "0.0.5": "http://registry.npmjs.org/graphite/0.0.5", + "0.0.6": "http://registry.npmjs.org/graphite/0.0.6" + }, + "dist": { + "0.0.1": { + "shasum": "79af57d39622cb5f8b84e5512692a91f27592d4d", + "tarball": "http://registry.npmjs.org/graphite/-/graphite-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "a665500e3b0a664c4ac3e377fc0c930797bd8a52", + "tarball": "http://registry.npmjs.org/graphite/-/graphite-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "72faaf14fd83ae8da93c5d474300d13f78bbc2eb", + "tarball": "http://registry.npmjs.org/graphite/-/graphite-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "865bbd2b98d1324111324836ccc0179ad3080bb3", + "tarball": "http://registry.npmjs.org/graphite/-/graphite-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "47797ba1bbc0b3a86bfb3aef2cd617861eac7699", + "tarball": "http://registry.npmjs.org/graphite/-/graphite-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "235fc2a07af3d4820666b09883d4cd2dabc910d5", + "tarball": "http://registry.npmjs.org/graphite/-/graphite-0.0.6.tgz" + } + }, + "url": "http://registry.npmjs.org/graphite/" + }, + "graphquire": { + "name": "graphquire", + "description": "module graph builder and installer.", + "dist-tags": { + "latest": "0.8.0" + }, + "maintainers": [ + { + "name": "gozala", + "email": "rfobic@gmail.com" + } + ], + "time": { + "modified": "2011-07-08T17:25:24.350Z", + "created": "2011-05-26T10:22:15.258Z", + "0.2.0": "2011-05-26T10:22:15.826Z", + "0.3.0": "2011-05-27T20:49:35.004Z", + "0.4.0": "2011-05-27T23:29:15.960Z", + "0.5.0": "2011-05-29T18:55:18.283Z", + "0.5.1": "2011-05-29T19:06:02.600Z", + "0.5.2": "2011-05-29T19:33:25.853Z", + "0.5.3": "2011-05-30T08:58:32.210Z", + "0.5.4": "2011-05-30T09:17:41.994Z", + "0.5.5": "2011-06-01T15:19:28.903Z", + "0.6.0": "2011-06-09T06:43:16.206Z", + "0.6.1": "2011-06-12T10:19:36.247Z", + "0.7.0": "2011-07-03T19:21:44.736Z", + "0.8.0": "2011-07-08T17:25:24.350Z" + }, + "author": { + "name": "Irakli Gozalishvili", + "email": "rfobic@gmail.com", + "url": "http://jeditoolkit.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/Gozala/graphquire.git", + "web": "https://github.com/Gozala/graphquire" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/graphquire/0.2.0", + "0.3.0": "http://registry.npmjs.org/graphquire/0.3.0", + "0.4.0": "http://registry.npmjs.org/graphquire/0.4.0", + "0.5.0": "http://registry.npmjs.org/graphquire/0.5.0", + "0.5.1": "http://registry.npmjs.org/graphquire/0.5.1", + "0.5.2": "http://registry.npmjs.org/graphquire/0.5.2", + "0.5.3": "http://registry.npmjs.org/graphquire/0.5.3", + "0.5.4": "http://registry.npmjs.org/graphquire/0.5.4", + "0.5.5": "http://registry.npmjs.org/graphquire/0.5.5", + "0.6.0": "http://registry.npmjs.org/graphquire/0.6.0", + "0.6.1": "http://registry.npmjs.org/graphquire/0.6.1", + "0.7.0": "http://registry.npmjs.org/graphquire/0.7.0", + "0.8.0": "http://registry.npmjs.org/graphquire/0.8.0" + }, + "dist": { + "0.2.0": { + "shasum": "d1504f6fbe4ca350cbd6479dba1136c955a2d79b", + "tarball": "http://registry.npmjs.org/graphquire/-/graphquire-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "bdad28f50f72e758f31888029cda2eeae992f2ff", + "tarball": "http://registry.npmjs.org/graphquire/-/graphquire-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "75495035ae772bae89a0141009c80bf8dcf2555d", + "tarball": "http://registry.npmjs.org/graphquire/-/graphquire-0.4.0.tgz" + }, + "0.5.0": { + "shasum": "549ff8a2381005ba37290c33913bf65184b8d18f", + "tarball": "http://registry.npmjs.org/graphquire/-/graphquire-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "298330f20a8dc59b96d2b26b39e9342435c0b34b", + "tarball": "http://registry.npmjs.org/graphquire/-/graphquire-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "9d7ced9bb9a4a614af6123f311a2bb7fbcb01698", + "tarball": "http://registry.npmjs.org/graphquire/-/graphquire-0.5.2.tgz" + }, + "0.5.3": { + "shasum": "f58c9f51b9f57a790ce67ee222de295d52af13cb", + "tarball": "http://registry.npmjs.org/graphquire/-/graphquire-0.5.3.tgz" + }, + "0.5.4": { + "shasum": "a356ac9ada634d58ce4a86a504d4b08754345b92", + "tarball": "http://registry.npmjs.org/graphquire/-/graphquire-0.5.4.tgz" + }, + "0.5.5": { + "shasum": "984c6c14edc5d512502086069be4e08ec51bfea6", + "tarball": "http://registry.npmjs.org/graphquire/-/graphquire-0.5.5.tgz" + }, + "0.6.0": { + "shasum": "b6d9589366633f59165e7263abbc2b58403abe91", + "tarball": "http://registry.npmjs.org/graphquire/-/graphquire-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "384cc8260e6b2dc0fa312e377619506ec511bcf4", + "tarball": "http://registry.npmjs.org/graphquire/-/graphquire-0.6.1.tgz" + }, + "0.7.0": { + "shasum": "f4b2692ecc80b430902accbb3b22d2e468a4611f", + "tarball": "http://registry.npmjs.org/graphquire/-/graphquire-0.7.0.tgz" + }, + "0.8.0": { + "shasum": "9335e50365d22fb70bbe09527f6f36a31c1569bf", + "tarball": "http://registry.npmjs.org/graphquire/-/graphquire-0.8.0.tgz" + } + }, + "keywords": [ + "dependencies", + "graph", + "modules", + "require", + "linker" + ], + "url": "http://registry.npmjs.org/graphquire/" + }, + "graphviz": { + "name": "graphviz", + "description": "Node.js interface to the GraphViz graphing tool", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "greg", + "email": "gregoire.lejeune@free.fr" + } + ], + "author": { + "name": "Gregoire Lejeune", + "mail": "gregoire.lejeune@free.fr" + }, + "repository": { + "type": "git", + "url": "http://github.com/glejeune/node-graphviz.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/graphviz/0.0.2", + "0.0.3": "http://registry.npmjs.org/graphviz/0.0.3" + }, + "dist": { + "0.0.2": { + "tarball": "http://packages:5984/graphviz/-/graphviz-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/graphviz/-/graphviz-0.0.3.tgz" + } + }, + "keywords": [ + "graphviz", + "dot" + ], + "url": "http://registry.npmjs.org/graphviz/" + }, + "grasshopper": { + "name": "grasshopper", + "dist-tags": { + "latest": "0.5.0" + }, + "maintainers": [ + { + "name": "tuxychandru", + "email": "chandru.in@gmail.com" + } + ], + "description": "A feature-rich and flexible MVC framework.", + "time": { + "modified": "2011-11-15T16:00:44.200Z", + "created": "2011-01-25T16:55:45.775Z", + "0.3.0": "2011-01-25T16:55:45.775Z", + "0.3.1": "2011-01-25T16:55:45.775Z", + "0.3.2": "2011-01-25T16:55:45.775Z", + "0.3.3": "2011-01-25T16:55:45.775Z", + "0.3.4": "2011-01-25T16:55:45.775Z", + "0.4.0": "2011-02-10T11:34:05.370Z", + "0.4.1": "2011-04-12T17:48:35.741Z", + "0.4.2": "2011-07-19T04:03:52.376Z", + "0.4.3": "2011-09-20T09:19:01.838Z", + "0.5.0": "2011-11-15T16:00:44.200Z" + }, + "author": { + "name": "Chandra Sekar S", + "email": "chandru.in@gmail.com", + "url": "http://tuxychandru.blogspot.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/tuxychandru/grasshopper.git" + }, + "versions": { + "0.4.0": "http://registry.npmjs.org/grasshopper/0.4.0", + "0.4.1": "http://registry.npmjs.org/grasshopper/0.4.1", + "0.4.2": "http://registry.npmjs.org/grasshopper/0.4.2", + "0.4.3": "http://registry.npmjs.org/grasshopper/0.4.3", + "0.5.0": "http://registry.npmjs.org/grasshopper/0.5.0" + }, + "dist": { + "0.4.0": { + "shasum": "4887d138791181800e7a954d93f4d5c61d0219d4", + "tarball": "http://registry.npmjs.org/grasshopper/-/grasshopper-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "9c9cbc3ce014d30b64fc9cb1a09356ce311891a8", + "tarball": "http://registry.npmjs.org/grasshopper/-/grasshopper-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "674cb7955f40613ab34510613df1ffdb48a25e33", + "tarball": "http://registry.npmjs.org/grasshopper/-/grasshopper-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "e7775f84b04b86eec8e9048535d6df7ec7e78248", + "tarball": "http://registry.npmjs.org/grasshopper/-/grasshopper-0.4.3.tgz" + }, + "0.5.0": { + "shasum": "eee9867a52f5e14b53edde61ea95601691bd7579", + "tarball": "http://registry.npmjs.org/grasshopper/-/grasshopper-0.5.0.tgz" + } + }, + "url": "http://registry.npmjs.org/grasshopper/" + }, + "gravatar": { + "name": "gravatar", + "description": "Gravatar Node.js library", + "dist-tags": { + "latest": "1.0.3" + }, + "maintainers": [ + { + "name": "emerleite", + "email": "emerleite@gmail.com" + } + ], + "time": { + "modified": "2011-10-15T02:25:31.370Z", + "created": "2011-02-19T19:42:29.119Z", + "1.0.0": "2011-02-19T19:42:29.672Z", + "1.0.1": "2011-03-03T01:31:27.239Z", + "1.0.2": "2011-03-09T18:47:51.026Z", + "1.0.3": "2011-10-15T02:25:31.370Z" + }, + "author": { + "name": "Emerson Macedo", + "email": "emerleite@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/emerleite/node-gravatar.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/gravatar/1.0.0", + "1.0.1": "http://registry.npmjs.org/gravatar/1.0.1", + "1.0.2": "http://registry.npmjs.org/gravatar/1.0.2", + "1.0.3": "http://registry.npmjs.org/gravatar/1.0.3" + }, + "dist": { + "1.0.0": { + "shasum": "5f0ea1731a635d15153a893cc0aa676b929e8c58", + "tarball": "http://registry.npmjs.org/gravatar/-/gravatar-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "1fd6fd83b357f4713cbe8b14dfde2531defa392a", + "tarball": "http://registry.npmjs.org/gravatar/-/gravatar-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "f49d2fed707090528c260d29675948a5d5610178", + "tarball": "http://registry.npmjs.org/gravatar/-/gravatar-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "5be354281e4b99495656779c96672220d1b51075", + "tarball": "http://registry.npmjs.org/gravatar/-/gravatar-1.0.3.tgz" + } + }, + "keywords": [ + "gravatar", + "avatar", + "package.json" + ], + "url": "http://registry.npmjs.org/gravatar/" + }, + "grave": { + "name": "grave", + "description": "Version tracking for couchdb views with cradle", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-04-05T19:22:34.832Z", + "created": "2011-04-05T19:22:33.295Z", + "0.0.1": "2011-04-05T19:22:34.832Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-grave.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/grave/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "53d89659b3b5c693fd3fe620894170ef86011d66", + "tarball": "http://registry.npmjs.org/grave/-/grave-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/grave/" + }, + "gravity": { + "name": "gravity", + "description": "naming space stuff through time", + "dist-tags": { + "latest": "0.0.1-2" + }, + "maintainers": [ + { + "name": "orlin", + "email": "om@soundsapiens.com" + } + ], + "time": { + "modified": "2011-04-24T20:30:39.401Z", + "created": "2011-04-06T12:50:23.517Z", + "0.0.1-1": "2011-04-06T12:50:24.654Z", + "0.0.1-2": "2011-04-24T20:30:39.401Z" + }, + "author": { + "name": "Orlin M Bozhinov", + "email": "orlin@astrolet.net", + "url": "http://soundsapiens.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/astrolet/sin.git" + }, + "versions": { + "0.0.1-1": "http://registry.npmjs.org/gravity/0.0.1-1", + "0.0.1-2": "http://registry.npmjs.org/gravity/0.0.1-2" + }, + "dist": { + "0.0.1-1": { + "shasum": "3dd4cff30ad5240c447850b5aa7b11814fa24d44", + "tarball": "http://registry.npmjs.org/gravity/-/gravity-0.0.1-1.tgz" + }, + "0.0.1-2": { + "shasum": "723ce6fbfe63000a1629817f63388658c468f483", + "tarball": "http://registry.npmjs.org/gravity/-/gravity-0.0.1-2.tgz" + } + }, + "keywords": [ + "astrology", + "ephemeris", + "data" + ], + "url": "http://registry.npmjs.org/gravity/" + }, + "graylog": { + "name": "graylog", + "description": "Graylog2 client library for node.js", + "dist-tags": { + "latest": "0.0.10" + }, + "maintainers": [ + { + "name": "egorfine", + "email": "me@egorfine.com" + } + ], + "time": { + "modified": "2011-11-06T20:09:36.496Z", + "created": "2011-07-12T13:50:18.390Z", + "0.0.8": "2011-07-12T13:50:19.160Z", + "0.0.9": "2011-09-19T09:45:23.795Z", + "0.0.10": "2011-11-06T20:09:36.496Z" + }, + "author": { + "name": "Egor Egorov" + }, + "repository": { + "type": "git", + "url": "git://github.com/egorfine/node-graylog.git" + }, + "versions": { + "0.0.8": "http://registry.npmjs.org/graylog/0.0.8", + "0.0.9": "http://registry.npmjs.org/graylog/0.0.9", + "0.0.10": "http://registry.npmjs.org/graylog/0.0.10" + }, + "dist": { + "0.0.8": { + "shasum": "a9da6879d483e758c684aacf6675df7b20a8e273", + "tarball": "http://registry.npmjs.org/graylog/-/graylog-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "6e06ae794f358764dc189ac74e64fe01c8354b3d", + "tarball": "http://registry.npmjs.org/graylog/-/graylog-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "63f4007ade7c4511c493e3a6c434bd7258077e47", + "tarball": "http://registry.npmjs.org/graylog/-/graylog-0.0.10.tgz" + } + }, + "url": "http://registry.npmjs.org/graylog/" + }, + "greenlight": { + "name": "greenlight", + "description": "A simple stop and go interace to node-fiber", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "axkibe", + "email": "axkibe@gmail.com" + } + ], + "time": { + "modified": "2011-10-17T15:54:32.322Z", + "created": "2011-10-16T06:47:13.697Z", + "0.0.1": "2011-10-16T06:47:15.099Z", + "0.0.2": "2011-10-17T15:54:32.322Z" + }, + "author": { + "name": "Axel Kittenberger", + "email": "axkibe@gmail.com", + "url": "https://github.com/axkibe/" + }, + "repository": { + "type": "git", + "url": "git://github.com/axkibe/node-green-light.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/greenlight/0.0.1", + "0.0.2": "http://registry.npmjs.org/greenlight/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "4c74a93800356ec07cd07321aaec389b177f74d2", + "tarball": "http://registry.npmjs.org/greenlight/-/greenlight-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "47a87b72e43cfc09b7f5d2f59a030a1a65c78847", + "tarball": "http://registry.npmjs.org/greenlight/-/greenlight-0.0.2.tgz" + } + }, + "keywords": [ + "fiber", + "fibers", + "coroutine", + "stop", + "go", + "green", + "red" + ], + "url": "http://registry.npmjs.org/greenlight/" + }, + "greg": { + "name": "greg", + "description": "Unique, memorable ids for your Node app", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "linus", + "email": "linus@hanssonlarsson.se" + } + ], + "time": { + "modified": "2011-09-15T09:15:14.466Z", + "created": "2011-09-14T01:01:57.973Z", + "0.0.1": "2011-09-14T01:02:02.249Z", + "0.0.2": "2011-09-15T09:15:14.466Z" + }, + "author": { + "name": "Linus G Thiel", + "email": "linus@hanssonlarsson.se" + }, + "repository": { + "type": "git", + "url": "git://github.com/linus/greg.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/greg/0.0.1", + "0.0.2": "http://registry.npmjs.org/greg/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "d7fe1b26c022b76bebf7283eeb4d858242247920", + "tarball": "http://registry.npmjs.org/greg/-/greg-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "7a008db178c645556967354cbf321301babf2a90", + "tarball": "http://registry.npmjs.org/greg/-/greg-0.0.2.tgz" + } + }, + "keywords": [ + "word", + "id", + "generator", + "error code" + ], + "url": "http://registry.npmjs.org/greg/" + }, + "grid": { + "name": "grid", + "description": "distributed processing of large data sets across clusters", + "dist-tags": { + "latest": "1.0.0-rc1" + }, + "readme": null, + "maintainers": [ + { + "name": "pksunkara", + "email": "pavan.sss1991@gmail.com" + } + ], + "time": { + "modified": "2011-11-20T19:46:52.988Z", + "created": "2011-11-20T19:46:51.705Z", + "1.0.0-rc1": "2011-11-20T19:46:52.988Z" + }, + "author": { + "name": "Pavan Kumar Sunkara", + "email": "pavan.sss1991@gmail.com", + "url": "http://pkumar.github.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/pkumar/node-grid.git" + }, + "versions": { + "1.0.0-rc1": "http://registry.npmjs.org/grid/1.0.0-rc1" + }, + "dist": { + "1.0.0-rc1": { + "shasum": "2da9a1ed526d152bad1049ebb5ae3a8e8c6baa35", + "tarball": "http://registry.npmjs.org/grid/-/grid-1.0.0-rc1.tgz" + } + }, + "keywords": [ + "distributed", + "data", + "hadoop", + "mapreduce", + "clusters" + ], + "url": "http://registry.npmjs.org/grid/" + }, + "gridcentric": { + "name": "gridcentric", + "description": "Bindings for libgridcentric (guest tools)", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "amscanne", + "email": "adin@scannell.ca" + } + ], + "time": { + "modified": "2011-05-06T23:18:40.970Z", + "created": "2011-05-06T23:18:40.677Z", + "0.0.1": "2011-05-06T23:18:40.970Z" + }, + "repository": { + "type": "mercurial", + "url": "http://code.gridcentric.ca/nodejs-bindings" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/gridcentric/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "0cef5d345c267b231e18227afe27061f2cbba904", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.10-linux-2.6.32-27-generic": { + "shasum": "58943516009b5c2a239efbdbf1c42ed66127f041", + "tarball": "http://registry.npmjs.org/gridcentric/-/gridcentric-0.0.1-0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.10-linux-2.6.32-27-generic.tgz" + } + }, + "tarball": "http://registry.npmjs.org/gridcentric/-/gridcentric-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/gridcentric/" + }, + "GridFS": { + "name": "GridFS", + "description": "GridFS made easy.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "siddmahen", + "email": "siddharth_mahen@me.com" + } + ], + "time": { + "modified": "2011-11-23T21:04:10.302Z", + "created": "2011-07-21T11:30:02.514Z", + "0.0.2": "2011-07-21T11:30:03.273Z", + "0.0.3": "2011-07-21T20:05:49.851Z", + "0.0.4": "2011-07-23T11:50:46.881Z", + "0.0.5": "2011-07-24T12:55:47.513Z", + "0.0.6": "2011-07-25T12:53:34.031Z", + "0.0.7": "2011-08-03T17:55:24.203Z", + "0.0.8": "2011-09-09T17:12:43.574Z", + "0.0.9": "2011-11-06T00:31:31.994Z", + "0.1.0": "2011-11-23T21:04:10.302Z" + }, + "author": { + "name": "Siddharth Mahendraker", + "email": "siddharth_mahen@me.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/siddMahen/GridFS.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/GridFS/0.0.2", + "0.0.3": "http://registry.npmjs.org/GridFS/0.0.3", + "0.0.4": "http://registry.npmjs.org/GridFS/0.0.4", + "0.0.5": "http://registry.npmjs.org/GridFS/0.0.5", + "0.0.6": "http://registry.npmjs.org/GridFS/0.0.6", + "0.0.7": "http://registry.npmjs.org/GridFS/0.0.7", + "0.0.8": "http://registry.npmjs.org/GridFS/0.0.8", + "0.0.9": "http://registry.npmjs.org/GridFS/0.0.9", + "0.1.0": "http://registry.npmjs.org/GridFS/0.1.0" + }, + "dist": { + "0.0.2": { + "shasum": "58f12316477598b992ea82af657ddd7bad7cd8ff", + "tarball": "http://registry.npmjs.org/GridFS/-/GridFS-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "a340e0d9d11bc248263351a46c4dc0d8a0195bc1", + "tarball": "http://registry.npmjs.org/GridFS/-/GridFS-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "a0a9968205ff7f32556f7dfc71f3ead69a558868", + "tarball": "http://registry.npmjs.org/GridFS/-/GridFS-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "b76eb2ea3ca7779698be7c69c4c44e1204d9119a", + "tarball": "http://registry.npmjs.org/GridFS/-/GridFS-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "2e3d0a61d4ad942e725f040406f33a7501a21633", + "tarball": "http://registry.npmjs.org/GridFS/-/GridFS-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "afe94611ab3b821d587f18198259bb1fe334affd", + "tarball": "http://registry.npmjs.org/GridFS/-/GridFS-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "a1a6c1bb46e272748900ffe0fcb967e7b744cfab", + "tarball": "http://registry.npmjs.org/GridFS/-/GridFS-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "1d9c78ea06b0c6a8c022c9bd90e108dd91e67d6a", + "tarball": "http://registry.npmjs.org/GridFS/-/GridFS-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "068bbb6a8b5f2be6f569b2d5f2a8a4fbe5aefeeb", + "tarball": "http://registry.npmjs.org/GridFS/-/GridFS-0.1.0.tgz" + } + }, + "keywords": [ + "GridFS", + "mongodb" + ], + "url": "http://registry.npmjs.org/GridFS/" + }, + "gridly": { + "name": "gridly", + "dist-tags": { + "latest": "0.0.2" + }, + "readme": null, + "maintainers": [ + { + "name": "architectd", + "email": "craig.j.condon@gmail.com" + } + ], + "time": { + "modified": "2011-11-30T18:54:49.390Z", + "created": "2011-11-30T18:54:48.530Z", + "0.0.2": "2011-11-30T18:54:49.390Z" + }, + "author": { + "name": "Craig Condon", + "email": "craig@crcn.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/crcn/gridly.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/gridly/0.0.2" + }, + "dist": { + "0.0.2": { + "shasum": "024cd64726f4aa147ecc4bfd32f2397a26fcf1c6", + "tarball": "http://registry.npmjs.org/gridly/-/gridly-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/gridly/" + }, + "grinder": { + "name": "grinder", + "description": "Simple router written in CoffeeScript", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "federomero", + "email": "federico.romero@outboxlabs.com" + } + ], + "time": { + "modified": "2011-06-28T23:09:05.190Z", + "created": "2011-06-13T17:12:42.414Z", + "0.1.0": "2011-06-13T17:12:43.839Z", + "0.1.1": "2011-06-13T17:15:47.011Z", + "0.1.2": "2011-06-13T18:48:28.249Z", + "0.1.3": "2011-06-28T23:09:05.190Z" + }, + "author": { + "name": "Federico Romero", + "email": "federico.romero@outboxlabs.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/outbox/grinder.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/grinder/0.1.0", + "0.1.1": "http://registry.npmjs.org/grinder/0.1.1", + "0.1.2": "http://registry.npmjs.org/grinder/0.1.2", + "0.1.3": "http://registry.npmjs.org/grinder/0.1.3" + }, + "dist": { + "0.1.0": { + "shasum": "515e99c9383096dfd20519548ff4ab1c7799f075", + "tarball": "http://registry.npmjs.org/grinder/-/grinder-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "7f99ff2e8e181297a3aab10e989db3a13b437a24", + "tarball": "http://registry.npmjs.org/grinder/-/grinder-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "b49114504ae7164c40f2b371741e60202deb9439", + "tarball": "http://registry.npmjs.org/grinder/-/grinder-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "39ac8e9cbab22130dea9b1a6e90b3e4d83f96e38", + "tarball": "http://registry.npmjs.org/grinder/-/grinder-0.1.3.tgz" + } + }, + "keywords": [ + "router", + "framework" + ], + "url": "http://registry.npmjs.org/grinder/" + }, + "grit": { + "name": "grit", + "description": "A Backbone-style model class, usable in Node or in the browser", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "reissbaker", + "email": "matthew.reiss.baker@gmail.com" + } + ], + "time": { + "modified": "2011-12-01T02:52:04.564Z", + "created": "2011-10-28T03:15:08.462Z", + "0.0.1": "2011-10-28T03:15:09.022Z", + "0.0.2": "2011-10-28T04:20:42.139Z", + "0.0.3": "2011-10-28T04:35:06.856Z", + "0.0.4": "2011-10-28T05:49:24.779Z", + "0.0.5": "2011-10-28T06:14:34.323Z", + "0.0.6": "2011-10-29T09:24:02.584Z", + "0.0.7": "2011-10-29T23:47:36.283Z", + "0.0.8": "2011-10-30T03:33:43.459Z", + "0.0.9": "2011-10-30T03:41:17.075Z", + "0.1.0": "2011-10-30T07:39:50.885Z", + "0.2.0": "2011-12-01T02:52:04.564Z" + }, + "author": { + "name": "Matt Baker" + }, + "repository": { + "type": "git", + "url": "git://github.com/reissbaker/grit.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/grit/0.0.1", + "0.0.2": "http://registry.npmjs.org/grit/0.0.2", + "0.0.3": "http://registry.npmjs.org/grit/0.0.3", + "0.0.4": "http://registry.npmjs.org/grit/0.0.4", + "0.0.5": "http://registry.npmjs.org/grit/0.0.5", + "0.0.6": "http://registry.npmjs.org/grit/0.0.6", + "0.0.7": "http://registry.npmjs.org/grit/0.0.7", + "0.0.8": "http://registry.npmjs.org/grit/0.0.8", + "0.0.9": "http://registry.npmjs.org/grit/0.0.9", + "0.1.0": "http://registry.npmjs.org/grit/0.1.0", + "0.2.0": "http://registry.npmjs.org/grit/0.2.0" + }, + "dist": { + "0.0.1": { + "shasum": "0fdcf1c92b9a37f4d6fb47680c0315a909725df7", + "tarball": "http://registry.npmjs.org/grit/-/grit-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "90b92cf00dece74bef3ffbcac9fee18d6a8a015a", + "tarball": "http://registry.npmjs.org/grit/-/grit-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "f8cc3026a75f8d08f6388cc8fe3231647b30b99d", + "tarball": "http://registry.npmjs.org/grit/-/grit-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "755942e2f30ffd358de1d2f60df135b203564703", + "tarball": "http://registry.npmjs.org/grit/-/grit-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "cc024057d8696cf8cb8ec6051c0a99495beb5bc5", + "tarball": "http://registry.npmjs.org/grit/-/grit-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "679bfab4e795f33225843fc43fc66ff5ca43f341", + "tarball": "http://registry.npmjs.org/grit/-/grit-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "18d0e25d36c6e80a74c6b84ce80e07f51a8b6302", + "tarball": "http://registry.npmjs.org/grit/-/grit-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "e49d3baa129abf84b090385ba95c13b2359831b9", + "tarball": "http://registry.npmjs.org/grit/-/grit-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "ed798fdcfe48ed49c3b6141623a9732ae42cc43e", + "tarball": "http://registry.npmjs.org/grit/-/grit-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "daf56143d0eee1317698f52351f0a309464c51db", + "tarball": "http://registry.npmjs.org/grit/-/grit-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "b0e0ce45c20deb1b4a431fe7358775370b711ccc", + "tarball": "http://registry.npmjs.org/grit/-/grit-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/grit/" + }, + "groan": { + "name": "groan", + "description": "A PHP session file parser written in JavaScript", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "mscdex", + "email": "mscdex@mscdex.net" + } + ], + "time": { + "modified": "2011-10-07T11:36:03.795Z", + "created": "2011-10-07T11:36:02.080Z", + "0.0.1": "2011-10-07T11:36:03.795Z" + }, + "author": { + "name": "Brian White", + "email": "mscdex@mscdex.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/mscdex/groan.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/groan/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "37ff407a523589df877e1629ddb9e5500def2fb7", + "tarball": "http://registry.npmjs.org/groan/-/groan-0.0.1.tgz" + } + }, + "keywords": [ + "php", + "session", + "parser" + ], + "url": "http://registry.npmjs.org/groan/" + }, + "groc": { + "name": "groc", + "description": "Documentation generation, in the spirit of literate programming.", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "nevir", + "email": "ian@nevir.net" + } + ], + "time": { + "modified": "2011-12-14T05:49:04.160Z", + "created": "2011-12-07T04:36:26.159Z", + "0.1.0": "2011-12-07T04:36:44.276Z", + "0.1.1": "2011-12-13T00:15:12.253Z", + "0.2.0": "2011-12-14T05:49:04.160Z" + }, + "author": { + "name": "Ian MacLeod", + "email": "ian@nevir.net", + "url": "https://github.com/nevir" + }, + "repository": { + "type": "git", + "url": "git://github.com/nevir/groc.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/groc/0.1.0", + "0.1.1": "http://registry.npmjs.org/groc/0.1.1", + "0.2.0": "http://registry.npmjs.org/groc/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "54d48b005fb5c60232ecae0edd9e34f8df06d036", + "tarball": "http://registry.npmjs.org/groc/-/groc-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "9662609e135fbfda52eae472d878d55e58599abf", + "tarball": "http://registry.npmjs.org/groc/-/groc-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "57c1e1d1251a5cac031d7f18fcb4b3da911b2069", + "tarball": "http://registry.npmjs.org/groc/-/groc-0.2.0.tgz" + } + }, + "keywords": [ + "documentation", + "docs", + "generator" + ], + "url": "http://registry.npmjs.org/groc/" + }, + "groundcrew": { + "name": "groundcrew", + "description": "view handler/template abstraction layer for connect", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "sjsadowski", + "email": "stephen.sadowski@tmrsg.com" + } + ], + "time": { + "modified": "2011-07-16T23:34:00.600Z", + "created": "2011-07-16T23:34:00.308Z", + "0.1.0": "2011-07-16T23:34:00.600Z" + }, + "author": { + "name": "Stephen Sadowski" + }, + "repository": { + "type": "git", + "url": "git://github.com/sjsadowski/groundcrew.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/groundcrew/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "bd2f5af198c89b9bd31582bf62868deb6b0ee1fb", + "tarball": "http://registry.npmjs.org/groundcrew/-/groundcrew-0.1.0.tgz" + } + }, + "keywords": [ + "connect", + "views", + "view handler", + "template" + ], + "url": "http://registry.npmjs.org/groundcrew/" + }, + "groupie": { + "name": "groupie", + "description": "A simple flow control library for node.js for executing multiple functions as a group or in a chain, calling back when all functions have finished.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "alexkwolfe", + "email": "alexkwolfe@gmail.com" + } + ], + "author": { + "name": "Alex Wolfe", + "email": "alexkwolfe@gmail.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/alexkwolfe/groupie.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/groupie/0.1.1" + }, + "dist": { + "0.1.1": { + "tarball": "http://packages:5984/groupie/-/groupie-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/groupie/" + }, + "groupon": { + "name": "groupon", + "description": "Node client for the Groupon API", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "lalitkapoor", + "email": "lalitkapoor@gmail.com" + } + ], + "time": { + "modified": "2011-08-12T08:24:25.683Z", + "created": "2011-08-01T07:20:23.598Z", + "0.0.1": "2011-08-01T07:20:24.094Z", + "0.0.2": "2011-08-11T20:50:29.375Z", + "0.0.3": "2011-08-12T05:31:09.522Z", + "0.0.4": "2011-08-12T08:19:31.955Z" + }, + "author": { + "name": "Lalit Kapoor", + "email": "lalitkapoor@gmail.com", + "url": "http://www.lalitkapoor.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/lalitkapoor/node-groupon-api.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/groupon/0.0.1", + "0.0.2": "http://registry.npmjs.org/groupon/0.0.2", + "0.0.3": "http://registry.npmjs.org/groupon/0.0.3", + "0.0.4": "http://registry.npmjs.org/groupon/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "16e4e249836dae8784bf2e2fd5db584d87fbca0f", + "tarball": "http://registry.npmjs.org/groupon/-/groupon-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "bd72dde9358a2fdb7c2194ed65183e89c4de1462", + "tarball": "http://registry.npmjs.org/groupon/-/groupon-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "d4e17f137cad5f8cc5ec6aff1b78b4a73dac413d", + "tarball": "http://registry.npmjs.org/groupon/-/groupon-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "166dc26d5d34a0f7b5a3e2e943c9c909acfb7032", + "tarball": "http://registry.npmjs.org/groupon/-/groupon-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/groupon/" + }, + "growing-file": { + "name": "growing-file", + "description": "A readable file stream for files that are growing.", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "felixge", + "email": "felix@debuggable.com" + } + ], + "time": { + "modified": "2011-07-04T14:26:36.426Z", + "created": "2011-04-05T23:41:47.575Z", + "0.1.1": "2011-04-05T23:41:48.260Z", + "0.1.2": "2011-07-04T14:19:14.248Z", + "0.1.3": "2011-07-04T14:26:36.426Z" + }, + "author": { + "name": "Felix Geisendörfer", + "email": "felix@debuggable.com", + "url": "http://debuggable.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/felixge/node-growing-file.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/growing-file/0.1.1", + "0.1.2": "http://registry.npmjs.org/growing-file/0.1.2", + "0.1.3": "http://registry.npmjs.org/growing-file/0.1.3" + }, + "dist": { + "0.1.1": { + "shasum": "d8baa2127219e60e258eff616ba70b7594bebd16", + "tarball": "http://registry.npmjs.org/growing-file/-/growing-file-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "d1bb4eb5543447f9498bc989acfbdaec4c8e54cf", + "tarball": "http://registry.npmjs.org/growing-file/-/growing-file-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "c7c8c24f53e8e2a71483a50b646d6194f0a5adae", + "tarball": "http://registry.npmjs.org/growing-file/-/growing-file-0.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/growing-file/" + }, + "growl": { + "name": "growl", + "description": "Growl unobtrusive notifications", + "dist-tags": { + "latest": "1.2.0" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "time": { + "modified": "2011-10-06T21:37:19.052Z", + "created": "2011-03-18T18:48:55.778Z", + "1.0.1": "2011-03-18T18:48:55.778Z", + "1.0.2": "2011-03-18T18:48:55.778Z", + "1.1.0": "2011-03-18T18:48:55.778Z", + "1.2.0": "2011-10-06T21:37:19.052Z" + }, + "versions": { + "1.0.1": "http://registry.npmjs.org/growl/1.0.1", + "1.0.2": "http://registry.npmjs.org/growl/1.0.2", + "1.1.0": "http://registry.npmjs.org/growl/1.1.0", + "1.2.0": "http://registry.npmjs.org/growl/1.2.0" + }, + "dist": { + "1.0.1": { + "tarball": "http://packages:5984/growl/-/growl-1.0.1.tgz" + }, + "1.0.2": { + "tarball": "http://packages:5984/growl/-/growl-1.0.2.tgz" + }, + "1.1.0": { + "shasum": "93808dd6df4e336785d5213b9d47c5047f363623", + "tarball": "http://registry.npmjs.org/growl/-/growl-1.1.0.tgz" + }, + "1.2.0": { + "shasum": "6ce8efc633a9df9497f938e4981d9aff9f20e105", + "tarball": "http://registry.npmjs.org/growl/-/growl-1.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/growl/" + }, + "growl-deploy": { + "name": "growl-deploy", + "description": "Display Beanstalk deployments in growl", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "dleavitt", + "email": "daniel.leavitt@gmail.com" + } + ], + "time": { + "modified": "2011-10-20T07:58:08.785Z", + "created": "2011-10-20T07:58:08.247Z", + "0.0.1": "2011-10-20T07:58:08.785Z" + }, + "author": { + "name": "Daniel Leavitt", + "email": "daniel@hyfn.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dleavitt/growl-deploy.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/growl-deploy/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "433d0d98cae8e6535bddd2fe8147af4b1e03ebaa", + "tarball": "http://registry.npmjs.org/growl-deploy/-/growl-deploy-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/growl-deploy/" + }, + "growler": { + "name": "growler", + "description": "Send notifications to remote and local Growl clients using GNTP", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "\nNode Growler\n============\nA [Growl][1] server for [node.js][2] which sends notifications to remote and\nlocal Growl clients using [GNTP][3]. Could for example be used to notify you when\nsomething happens on your node.js server, e.g. a user just logged in.\n\nInstallation\n------------\n\tnpm install growler\n\nDependencies\n------------\n* node.js >= 0.6\n* [Underscore.js][4] >=1.1.5\n\nUsage\n-----\n\tvar growler = require('growler');\n\tvar myApp = new growler.GrowlApplication('Simple Growl App');\n\tmyApp.setNotifications({\n\t 'Server Status': {}\n\t});\n\tmyApp.register();\n\tmyApp.sendNotification('Server Status', {\n\t title: 'Node Growler online',\n\t text: 'Wasn\\'t that hard was it?'\n\t});\n\nAlso, check the examples directory.\n\nFeatures\n--------\n* Custom notification icons\n* Send notifications to password protected clients over the network\n* Send encrypted notifications (not supported yet by Growl for OS X)\n\nAuthor and license\n------------------\nNode Growler, Copyright 2011, Didrik Nordström\n\nDual licensed under the MIT or GPL Version 3 licenses.\n\n[1]:\thttp://growl.info/\n[2]:\thttp://nodejs.org/\n[3]:\thttp://www.growlforwindows.com/gfw/help/gntp.aspx\n[4]:\thttp://documentcloud.github.com/underscore/\n", + "maintainers": [ + { + "name": "betamos", + "email": "didrik@betamos.se" + } + ], + "time": { + "modified": "2011-11-25T03:48:22.907Z", + "created": "2011-11-25T03:48:21.125Z", + "0.0.1": "2011-11-25T03:48:22.907Z" + }, + "author": { + "name": "Didrik Nordström", + "email": "didrik@betamos.se", + "url": "http://betamos.se/" + }, + "repository": { + "type": "git", + "url": "git://github.com/betamos/Node-Growler.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/growler/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "248fb7d8079e4d041fd8f6c70f0a88de90c81669", + "tarball": "http://registry.npmjs.org/growler/-/growler-0.0.1.tgz" + } + }, + "keywords": [ + "Growl", + "GNTP", + "notifications" + ], + "url": "http://registry.npmjs.org/growler/" + }, + "gsl": { + "name": "gsl", + "description": "GNU Scientific Library for NodeJS.", + "dist-tags": { + "latest": "0.0.8" + }, + "maintainers": [ + { + "name": "david", + "email": "david@adaltas.com" + } + ], + "time": { + "modified": "2011-12-01T17:59:30.471Z", + "created": "2011-04-11T13:49:25.382Z", + "0.0.1": "2011-04-11T13:49:25.979Z", + "0.0.2": "2011-04-17T14:50:08.106Z", + "0.0.3": "2011-04-19T00:19:16.218Z", + "0.0.4": "2011-04-19T02:35:09.098Z", + "0.0.5": "2011-04-20T00:50:51.803Z", + "0.0.6": "2011-04-25T22:45:46.181Z", + "0.0.7": "2011-12-01T17:40:17.736Z", + "0.0.8": "2011-12-01T17:59:30.471Z" + }, + "author": { + "name": "David Worms", + "email": "david@adaltas.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/wdavidw/node-gsl.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/gsl/0.0.1", + "0.0.2": "http://registry.npmjs.org/gsl/0.0.2", + "0.0.3": "http://registry.npmjs.org/gsl/0.0.3", + "0.0.4": "http://registry.npmjs.org/gsl/0.0.4", + "0.0.5": "http://registry.npmjs.org/gsl/0.0.5", + "0.0.6": "http://registry.npmjs.org/gsl/0.0.6", + "0.0.7": "http://registry.npmjs.org/gsl/0.0.7", + "0.0.8": "http://registry.npmjs.org/gsl/0.0.8" + }, + "dist": { + "0.0.1": { + "shasum": "d72a758eab748c016dfa76ad4e3d411600be14cb", + "tarball": "http://registry.npmjs.org/gsl/-/gsl-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "38928fe84dda23700a6572fefb63f081f8ae8066", + "tarball": "http://registry.npmjs.org/gsl/-/gsl-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "ffaa48d628d3a2cbf2b3f3171d8f08c97e5bb1c2", + "tarball": "http://registry.npmjs.org/gsl/-/gsl-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "9c3b262db7cc292aaddd5b798106fbaf0e0d3862", + "tarball": "http://registry.npmjs.org/gsl/-/gsl-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "ae96a06632be7d15ebae4bcadf2dd9e70f127800", + "tarball": "http://registry.npmjs.org/gsl/-/gsl-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "98b6adab9966b1d14d8d8417fd7fba25a48a29c4", + "tarball": "http://registry.npmjs.org/gsl/-/gsl-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "98d67c2f2f9de0cf03b9eb9ce613089e0728dae5", + "tarball": "http://registry.npmjs.org/gsl/-/gsl-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "31cd7e9735d447f339c385cdef084b64067773d9", + "tarball": "http://registry.npmjs.org/gsl/-/gsl-0.0.8.tgz" + } + }, + "keywords": [ + "library", + "gsl", + "mathematics", + "random", + "gaussian" + ], + "url": "http://registry.npmjs.org/gsl/" + }, + "gspell": { + "name": "gspell", + "description": "Checks the spelling of text and gives suggestions", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "cartercole", + "email": "node@cartercole.com" + } + ], + "time": { + "modified": "2011-11-24T07:28:32.478Z", + "created": "2011-11-24T07:28:31.954Z", + "0.0.1": "2011-11-24T07:28:32.478Z" + }, + "author": { + "name": "Carter Cole", + "email": "node@cartercole.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:neopunisher/node-gspell.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/gspell/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "f3c06be52df3c8fb705c2b2d33c7f76cf60870ac", + "tarball": "http://registry.npmjs.org/gspell/-/gspell-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/gspell/" + }, + "gss": { + "name": "gss", + "description": "Golden Section Search for javascript. (a line search technique used to minimize or maximize the output a function, also known as `argmax`).", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "dtrejo", + "email": "dtrejo@cs.brown.edu" + } + ], + "time": { + "modified": "2011-03-01T03:47:06.728Z", + "created": "2011-03-01T03:47:06.612Z", + "0.1.0": "2011-03-01T03:47:06.728Z" + }, + "author": { + "name": "David Trejo", + "email": "david+npm@dtrejo.com", + "url": "http://dtrejo.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/DTrejo/gss.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/gss/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "4719abea6938818adfb1e18db27fcb32cd72d3f8", + "tarball": "http://registry.npmjs.org/gss/-/gss-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/gss/" + }, + "guards": { + "name": "guards", + "description": "Data type & structure checking, runtime analog of types", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "gozala", + "email": "rfobic@gmail.com" + } + ], + "time": { + "modified": "2011-07-03T19:11:33.219Z", + "created": "2011-03-02T20:42:06.342Z", + "0.0.1": "2011-03-02T20:42:06.670Z", + "0.2.0": "2011-06-10T15:38:39.226Z", + "0.3.0": "2011-07-03T19:11:33.219Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/Gozala/guards.git", + "web": "https://github.com/Gozala/guards" + }, + "author": { + "name": "Irakli Gozalishvili", + "email": "rfobic@gmail.com", + "url": "http://jeditoolkit.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/guards/0.0.1", + "0.2.0": "http://registry.npmjs.org/guards/0.2.0", + "0.3.0": "http://registry.npmjs.org/guards/0.3.0" + }, + "dist": { + "0.0.1": { + "shasum": "dc551ec0f0589107881126d187bc661579e2c6a0", + "tarball": "http://registry.npmjs.org/guards/-/guards-0.0.1.tgz" + }, + "0.2.0": { + "shasum": "09bae9ce2370b3a010f42fb95f757e15a77e5db4", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.16-darwin-10.7.0": { + "shasum": "39e2ef9d34c01934b1ad051b9937299d2c32f1e6", + "tarball": "http://registry.npmjs.org/guards/-/guards-0.2.0-0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.16-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/guards/-/guards-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "48284c8553a27f8547444ffb308f6fc6330d68d4", + "tarball": "http://registry.npmjs.org/guards/-/guards-0.3.0.tgz" + } + }, + "keywords": [ + "guards", + "structures", + "structs", + "types" + ], + "url": "http://registry.npmjs.org/guards/" + }, + "guardtime": { + "name": "guardtime", + "description": "GuardTime signing service access/verification API for node.js", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "risto", + "email": "risto.laanoja@guardtime.com" + } + ], + "time": { + "modified": "2011-12-05T14:30:14.200Z", + "created": "2011-08-05T20:27:21.797Z", + "0.0.3": "2011-08-05T20:27:23.162Z", + "0.0.4": "2011-11-19T11:41:51.223Z", + "0.0.5": "2011-12-05T14:30:14.200Z" + }, + "author": { + "name": "Risto Laanoja" + }, + "repository": { + "type": "git", + "url": "git://github.com/ristik/node-guardtime.git" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/guardtime/0.0.3", + "0.0.4": "http://registry.npmjs.org/guardtime/0.0.4", + "0.0.5": "http://registry.npmjs.org/guardtime/0.0.5" + }, + "dist": { + "0.0.3": { + "tarball": "http://registry.npmjs.org/guardtime/-/guardtime-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "45cb55f097d9590d9e974e37a2a7af431296fb09", + "tarball": "http://registry.npmjs.org/guardtime/-/guardtime-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "56c589c9edebeea60c47cd7ed58467a46c0d3d04", + "tarball": "http://registry.npmjs.org/guardtime/-/guardtime-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/guardtime/" + }, + "guava": { + "name": "guava", + "description": "Push for mongodb", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "architectd", + "email": "craig.j.condon@gmail.com" + } + ], + "time": { + "modified": "2011-12-04T22:05:26.787Z", + "created": "2011-08-12T16:10:54.659Z", + "0.0.1": "2011-08-12T16:10:55.550Z", + "0.0.2": "2011-08-13T04:28:56.530Z", + "0.0.3": "2011-08-13T04:55:21.878Z", + "0.0.4": "2011-11-07T20:02:17.387Z", + "0.0.5": "2011-12-04T22:05:26.787Z" + }, + "author": { + "name": "Craig Condon" + }, + "repository": { + "type": "git", + "url": "git://github.com/crcn/mango.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/guava/0.0.1", + "0.0.2": "http://registry.npmjs.org/guava/0.0.2", + "0.0.3": "http://registry.npmjs.org/guava/0.0.3", + "0.0.4": "http://registry.npmjs.org/guava/0.0.4", + "0.0.5": "http://registry.npmjs.org/guava/0.0.5" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/guava/-/guava-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/guava/-/guava-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/guava/-/guava-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "02487aebf0e1ec7270c54bdb18091258ad61637b", + "tarball": "http://registry.npmjs.org/guava/-/guava-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "94d99aeba1335f7165f11bc69c3b81f9175c7506", + "tarball": "http://registry.npmjs.org/guava/-/guava-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/guava/" + }, + "gui": { + "name": "gui", + "description": "GTK+ porting for node.js", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "fool", + "email": "zcbenz@gmail.com" + } + ], + "time": { + "modified": "2011-10-19T10:09:06.063Z", + "created": "2011-10-19T10:09:01.942Z", + "0.0.1": "2011-10-19T10:09:06.063Z" + }, + "author": { + "name": "Zhao Cheng", + "email": "zcbenz@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/zcbenz/node-gui.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/gui/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "3b0fb5135e111bbe03b305e0c643e883e9540842", + "tarball": "http://registry.npmjs.org/gui/-/gui-0.0.1.tgz" + } + }, + "keywords": [ + "GTK+", + "gui" + ], + "url": "http://registry.npmjs.org/gui/" + }, + "guid": { + "name": "guid", + "description": "A Guid generator and validator.", + "dist-tags": { + "latest": "0.0.10" + }, + "maintainers": [ + { + "name": "dandean", + "email": "me@dandean.com" + } + ], + "author": { + "name": "Dan Dean", + "email": "@dandean", + "url": "http://dandean.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dandean/guid.git" + }, + "time": { + "modified": "2011-07-13T06:31:43.011Z", + "created": "2011-07-13T06:18:20.454Z", + "0.0.5": "2011-07-13T06:18:20.454Z", + "0.0.6": "2011-07-13T06:18:20.454Z", + "0.0.7": "2011-07-13T06:18:20.454Z", + "0.0.8": "2011-07-13T06:20:11.963Z", + "0.0.9": "2011-07-13T06:28:39.676Z", + "0.0.10": "2011-07-13T06:31:43.011Z" + }, + "versions": { + "0.0.5": "http://registry.npmjs.org/guid/0.0.5", + "0.0.6": "http://registry.npmjs.org/guid/0.0.6", + "0.0.7": "http://registry.npmjs.org/guid/0.0.7", + "0.0.8": "http://registry.npmjs.org/guid/0.0.8", + "0.0.9": "http://registry.npmjs.org/guid/0.0.9", + "0.0.10": "http://registry.npmjs.org/guid/0.0.10" + }, + "dist": { + "0.0.5": { + "tarball": "http://packages:5984/guid/-/guid-0.0.5.tgz" + }, + "0.0.6": { + "tarball": "http://registry.npmjs.org/guid/-/guid@0.0.6.tgz" + }, + "0.0.7": { + "shasum": "9c188d811982ae4d24fad0394cbebb72b9fb68cf", + "tarball": "http://registry.npmjs.org/guid/-/guid-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "214bb50bac30a7eef2a39cbb8b40bfad150bd122", + "tarball": "http://registry.npmjs.org/guid/-/guid-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "23926f2490b6c37076f08fa9caa04f8513b1bddb", + "tarball": "http://registry.npmjs.org/guid/-/guid-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "1cc2afe26d933114dcd255740318ae577284ec2b", + "tarball": "http://registry.npmjs.org/guid/-/guid-0.0.10.tgz" + } + }, + "url": "http://registry.npmjs.org/guid/" + }, + "guide": { + "name": "guide", + "description": "Another path router.", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "### guide\n\n\tvar Guide = require('guide');\n\tvar router = new Guide({\n\t\tuser: {\n\t\t\t'': function (req, res) {}\n\t\t\t'^[0-9]+': {\n\t\t\t\t_name_: 'id', '': function (req, res) {\n\t\t\t\t\treq.routeInfo.id;\n\t\t\t\t},\n\t\t\t\tedit: function (req, res) {},\n\t\t\t\tremove: function (req, res) {}\n\t\t\t},\n\t\t\t'new': function (req, res) {}\n\t\t}\n\t});\n\n## Installation\n\n\t$ npm install guide\n\n## Running Tests\n\n\t$ node test\n\n## MIT License \n\nCopyright (C) 2011 by Roland Poulter\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.", + "maintainers": [ + { + "name": "rolandpoulter", + "email": "rolandpoulter@gmail.com" + } + ], + "time": { + "modified": "2011-11-20T01:38:06.802Z", + "created": "2011-11-20T01:38:05.525Z", + "0.1.0": "2011-11-20T01:38:06.802Z" + }, + "author": { + "name": "Roland Poulter" + }, + "repository": { + "type": "git", + "url": "git://github.com/rolandpoulter/guide.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/guide/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "0b372756020fbe6d14ff5b2c8f308c4808939717", + "tarball": "http://registry.npmjs.org/guide/-/guide-0.1.0.tgz" + } + }, + "keywords": [ + "router", + "routes", + "path", + "regex", + "browser" + ], + "url": "http://registry.npmjs.org/guide/" + }, + "gumbo": { + "name": "gumbo", + "description": "node.js db", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "architectd", + "email": "craig.j.condon@gmail.com" + } + ], + "time": { + "modified": "2011-11-30T18:55:15.504Z", + "created": "2011-09-10T01:33:47.350Z", + "0.0.1": "2011-09-10T01:33:48.078Z", + "0.0.2": "2011-09-10T02:27:29.090Z", + "0.0.3": "2011-09-12T05:20:07.923Z", + "0.0.5": "2011-09-19T02:20:17.733Z", + "0.0.6": "2011-09-20T02:23:17.406Z", + "0.0.7": "2011-09-24T19:16:12.452Z", + "0.0.8": "2011-09-26T17:47:42.139Z", + "0.0.9": "2011-10-15T03:49:27.647Z", + "0.0.10": "2011-10-15T03:52:47.109Z", + "0.1.0": "2011-11-07T20:02:16.252Z", + "0.1.1": "2011-11-10T03:57:52.479Z", + "0.1.2": "2011-11-30T18:55:15.504Z" + }, + "author": { + "name": "Craig Condon" + }, + "repository": { + "type": "git", + "url": "git://github.com/crcn/gumbo.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/gumbo/0.0.1", + "0.0.2": "http://registry.npmjs.org/gumbo/0.0.2", + "0.0.3": "http://registry.npmjs.org/gumbo/0.0.3", + "0.0.5": "http://registry.npmjs.org/gumbo/0.0.5", + "0.0.6": "http://registry.npmjs.org/gumbo/0.0.6", + "0.0.7": "http://registry.npmjs.org/gumbo/0.0.7", + "0.0.8": "http://registry.npmjs.org/gumbo/0.0.8", + "0.0.9": "http://registry.npmjs.org/gumbo/0.0.9", + "0.0.10": "http://registry.npmjs.org/gumbo/0.0.10", + "0.1.0": "http://registry.npmjs.org/gumbo/0.1.0", + "0.1.1": "http://registry.npmjs.org/gumbo/0.1.1", + "0.1.2": "http://registry.npmjs.org/gumbo/0.1.2" + }, + "dist": { + "0.0.1": { + "shasum": "947edd79d4cc2f2040828dc3a2ee589d9214e909", + "tarball": "http://registry.npmjs.org/gumbo/-/gumbo-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "86059bee07acf2d9a54bddde657c4bc0be6c3c86", + "tarball": "http://registry.npmjs.org/gumbo/-/gumbo-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "2944b8dc0753fc8a5b35d2acdef22ac8171f4403", + "tarball": "http://registry.npmjs.org/gumbo/-/gumbo-0.0.3.tgz" + }, + "0.0.5": { + "shasum": "a45d7fc55a566b76baf42c4ee97c8e8bcb7d4267", + "tarball": "http://registry.npmjs.org/gumbo/-/gumbo-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "a42a01f1b84d9ecc07fea103f9078652477a7cbe", + "tarball": "http://registry.npmjs.org/gumbo/-/gumbo-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "198ea805cc9d03226047a09db3ae6241551af3ae", + "tarball": "http://registry.npmjs.org/gumbo/-/gumbo-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "5ca105af443966fe70c031ee06254152f2e50555", + "tarball": "http://registry.npmjs.org/gumbo/-/gumbo-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "70a4d12d3b1590da75161c10a5f0258a9198f9b9", + "tarball": "http://registry.npmjs.org/gumbo/-/gumbo-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "611a924900f3234afe839739676d40c98e598c69", + "tarball": "http://registry.npmjs.org/gumbo/-/gumbo-0.0.10.tgz" + }, + "0.1.0": { + "shasum": "395219a98cf46fd0727e2d9c0033a55cb900e2fa", + "tarball": "http://registry.npmjs.org/gumbo/-/gumbo-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "31bd3314bc93b6fea9d13e879233cf2c0fe4dc95", + "tarball": "http://registry.npmjs.org/gumbo/-/gumbo-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "b3cb6d8f49446af499643c2d6d858d9e6ea1beae", + "tarball": "http://registry.npmjs.org/gumbo/-/gumbo-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/gumbo/" + }, + "gunther": { + "name": "gunther", + "description": "Gunther is a template/view drop-in for Backbone.js", + "dist-tags": { + "latest": "0.0.9" + }, + "maintainers": [ + { + "name": "naneau", + "email": "npm@naneau.net" + } + ], + "time": { + "modified": "2011-12-10T16:24:04.237Z", + "created": "2011-08-26T12:21:35.890Z", + "0.0.1": "2011-08-26T12:21:37.015Z", + "0.0.2": "2011-08-30T12:58:22.542Z", + "0.0.3": "2011-08-30T13:08:40.971Z", + "0.0.4": "2011-08-30T13:25:37.040Z", + "0.0.5": "2011-10-16T19:07:48.307Z", + "0.0.6": "2011-10-17T11:18:29.314Z", + "0.0.7": "2011-10-20T10:09:36.388Z", + "0.0.8": "2011-12-09T19:06:35.345Z", + "0.0.9": "2011-12-10T16:24:04.237Z" + }, + "author": { + "name": "Maurice Fonk", + "email": "npm@naneau.net", + "url": "http://naneau.net/" + }, + "repository": { + "type": "git", + "url": "git@github.com:naneau/gunther.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/gunther/0.0.1", + "0.0.2": "http://registry.npmjs.org/gunther/0.0.2", + "0.0.3": "http://registry.npmjs.org/gunther/0.0.3", + "0.0.4": "http://registry.npmjs.org/gunther/0.0.4", + "0.0.5": "http://registry.npmjs.org/gunther/0.0.5", + "0.0.6": "http://registry.npmjs.org/gunther/0.0.6", + "0.0.7": "http://registry.npmjs.org/gunther/0.0.7", + "0.0.8": "http://registry.npmjs.org/gunther/0.0.8", + "0.0.9": "http://registry.npmjs.org/gunther/0.0.9" + }, + "dist": { + "0.0.1": { + "shasum": "f2c0795ddaed1546b36898c64029fe007f54b232", + "tarball": "http://registry.npmjs.org/gunther/-/gunther-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "cc8249a3513339bc00ea5e8f97d221ff163075d1", + "tarball": "http://registry.npmjs.org/gunther/-/gunther-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "4737931fbe89c05fb4e99cf9c0c310d3a6cdd195", + "tarball": "http://registry.npmjs.org/gunther/-/gunther-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "67f964d6d8b3c4cf723d7a7854d453a8933001fc", + "tarball": "http://registry.npmjs.org/gunther/-/gunther-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "df254bb9ed5b3848570cb189a4d41e2af8395b23", + "tarball": "http://registry.npmjs.org/gunther/-/gunther-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "a8b51a756e6404d2b18a2f55d50e1ed35874b01f", + "tarball": "http://registry.npmjs.org/gunther/-/gunther-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "53dce97553513bfa14b7a64a514dcc7f95e13bd4", + "tarball": "http://registry.npmjs.org/gunther/-/gunther-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "d3b731c0658eb269be538258d4fcf3e7200de7b9", + "tarball": "http://registry.npmjs.org/gunther/-/gunther-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "c30aa0824a1ffd35a55530e81db57bd114dec469", + "tarball": "http://registry.npmjs.org/gunther/-/gunther-0.0.9.tgz" + } + }, + "url": "http://registry.npmjs.org/gunther/" + }, + "gutter": { + "name": "gutter", + "description": "streaming JSON.stringify() for nested streams", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-11-10T09:06:30.399Z", + "created": "2011-11-10T08:26:23.418Z", + "0.0.0": "2011-11-10T08:26:25.950Z", + "0.0.1": "2011-11-10T09:06:30.399Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-gutter.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/gutter/0.0.0", + "0.0.1": "http://registry.npmjs.org/gutter/0.0.1" + }, + "dist": { + "0.0.0": { + "shasum": "37806fea529bc13c6872a36125e21375ee7a6e0d", + "tarball": "http://registry.npmjs.org/gutter/-/gutter-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "d7e5403973ff2d73ca33ab91ebaf896132ed3fd5", + "tarball": "http://registry.npmjs.org/gutter/-/gutter-0.0.1.tgz" + } + }, + "keywords": [ + "stream", + "stringify", + "json" + ], + "url": "http://registry.npmjs.org/gutter/" + }, + "gwan": { + "name": "gwan", + "description": "BDD-inspired testing", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "fractal", + "email": "contact@wearefractal.com" + } + ], + "time": { + "modified": "2011-11-05T11:35:51.537Z", + "created": "2011-10-18T12:16:28.523Z", + "0.0.1": "2011-10-18T12:16:30.924Z", + "0.0.2": "2011-10-18T13:35:48.499Z" + }, + "author": { + "name": "Fractal", + "email": "contact@wearefractal.com", + "url": "http://wearefractal.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/wearefractal/gwan.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/gwan/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "cfff8a109e59bc7ee8dcbf0a3b17d094642f8c28", + "tarball": "http://registry.npmjs.org/gwan/-/gwan-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/gwan/" + }, + "gzbz2": { + "name": "gzbz2", + "description": "streaming gzip/gunzip bzip/bunzip (2) for node, requires libz/libbz2 (built on wave.to/node-compress)", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "woodya", + "email": "woody.anderson@gmail.com" + } + ], + "time": { + "modified": "2011-11-07T02:21:36.640Z", + "created": "2011-06-10T07:51:46.010Z", + "0.1.0": "2011-06-10T07:51:46.331Z", + "0.1.1": "2011-09-30T06:12:02.218Z", + "0.1.2": "2011-10-08T18:44:32.091Z", + "0.1.3": "2011-10-28T05:01:04.223Z", + "0.1.4": "2011-11-07T02:21:36.640Z" + }, + "author": { + "name": "Woody Anderson", + "email": "woody.anderson@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/woodya/node-gzbz2.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/gzbz2/0.1.0", + "0.1.1": "http://registry.npmjs.org/gzbz2/0.1.1", + "0.1.2": "http://registry.npmjs.org/gzbz2/0.1.2", + "0.1.3": "http://registry.npmjs.org/gzbz2/0.1.3", + "0.1.4": "http://registry.npmjs.org/gzbz2/0.1.4" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/gzbz2/-/gzbz2-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "28422b815a4f48da815cfcc5bfe5bc453dd210a1", + "tarball": "http://registry.npmjs.org/gzbz2/-/gzbz2-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "8ee9443756673d0b3c0d4e0cf8a1111675109cfc", + "tarball": "http://registry.npmjs.org/gzbz2/-/gzbz2-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "df29ee8722fe60ef062c93498c53a01ddd3b00d2", + "tarball": "http://registry.npmjs.org/gzbz2/-/gzbz2-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "8077e55be69091861de838dfa32ccece051a2270", + "tarball": "http://registry.npmjs.org/gzbz2/-/gzbz2-0.1.4.tgz" + } + }, + "url": "http://registry.npmjs.org/gzbz2/" + }, + "gzip": { + "name": "gzip", + "description": "Gzip for node", + "dist-tags": { + "latest": "0.1.0", + "stable": "0.1.0" + }, + "maintainers": [ + { + "name": "fedor.indutny", + "email": "fedor.indutny@gmail.com" + } + ], + "author": { + "name": "Fedor Indutny", + "email": "fedor.indutny@gmail.com", + "url": "http://github.com/donnerjack13589" + }, + "repository": { + "type": "git", + "url": "http://github.com/donnerjack13589/node.gzip.git" + }, + "time": { + "modified": "2011-01-22T22:54:20.038Z", + "created": "2011-01-22T22:54:05.645Z", + "0.0.1": "2011-01-22T22:54:05.645Z", + "0.0.3": "2011-01-22T22:54:05.645Z", + "0.0.5": "2011-01-22T22:54:05.645Z", + "0.0.6": "2011-01-22T22:54:05.645Z", + "0.1.0": "2011-01-22T22:54:05.645Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/gzip/0.0.1", + "0.0.3": "http://registry.npmjs.org/gzip/0.0.3", + "0.0.5": "http://registry.npmjs.org/gzip/0.0.5", + "0.0.6": "http://registry.npmjs.org/gzip/0.0.6", + "0.1.0": "http://registry.npmjs.org/gzip/0.1.0" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/gzip/-/gzip-0.0.1.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/gzip/-/gzip-0.0.3.tgz" + }, + "0.0.5": { + "shasum": "003ae5f6c5238485ffc40dd771c4edf5e8eb00b7", + "tarball": "http://registry.npmjs.org/gzip/-/gzip-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "eb39fd657b8a0e878ac98fa629e4a1b1eef71cb7", + "tarball": "http://registry.npmjs.org/gzip/-/gzip-0.0.6.tgz" + }, + "0.1.0": { + "shasum": "775341d20ea2f1d1a176e73f4b6bc8678703fd8e", + "tarball": "http://registry.npmjs.org/gzip/-/gzip-0.1.0.tgz" + } + }, + "keywords": [ + "deflate", + "gzip" + ], + "url": "http://registry.npmjs.org/gzip/" + }, + "gzip-buffer": { + "name": "gzip-buffer", + "description": "GZips and GUnzips via a buffer rather than a stream", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "rbradberry", + "email": "rbradberry@gmail.com" + } + ], + "time": { + "modified": "2011-10-31T21:49:34.692Z", + "created": "2011-10-31T21:33:03.838Z", + "0.0.1": "2011-10-31T21:33:04.195Z", + "0.0.2": "2011-10-31T21:49:34.692Z" + }, + "author": { + "name": "Russell Bradberry", + "email": "rbradberry@gmail.com" + }, + "users": { + "thejh": true, + "rbradberry": true + }, + "repository": { + "type": "git", + "url": "git@github.com:devdazed/gzip-buffer.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/gzip-buffer/0.0.1", + "0.0.2": "http://registry.npmjs.org/gzip-buffer/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "19b4d9b348c38e92ab34318341ae3aabc44c6153", + "tarball": "http://registry.npmjs.org/gzip-buffer/-/gzip-buffer-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "4a754b30c83712a80ce37e7e21394a41915dcc09", + "tarball": "http://registry.npmjs.org/gzip-buffer/-/gzip-buffer-0.0.2.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/gzip-buffer/" + }, + "gzip-js": { + "name": "gzip-js", + "description": "GZIP in pure JavaScript (works in the browser)", + "dist-tags": { + "latest": "0.3.1" + }, + "maintainers": [ + { + "name": "beatgammit", + "email": "t.jameson.little@gmail.com" + } + ], + "time": { + "modified": "2011-11-21T18:46:24.195Z", + "created": "2011-11-20T05:49:31.046Z", + "0.1.0": "2011-11-20T05:49:32.052Z", + "0.2.0": "2011-11-20T06:04:26.787Z", + "0.2.1": "2011-11-20T06:06:29.098Z", + "0.3.0": "2011-11-21T18:41:41.053Z", + "0.3.1": "2011-11-21T18:46:24.195Z" + }, + "author": { + "name": "T. Jameson Little", + "email": "t.jameson.little@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/beatgammit/gzip-js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/gzip-js/0.1.0", + "0.2.0": "http://registry.npmjs.org/gzip-js/0.2.0", + "0.2.1": "http://registry.npmjs.org/gzip-js/0.2.1", + "0.3.0": "http://registry.npmjs.org/gzip-js/0.3.0", + "0.3.1": "http://registry.npmjs.org/gzip-js/0.3.1" + }, + "dist": { + "0.1.0": { + "shasum": "6d85433c3357bce4c5caae96c13a0c59e0df0ca3", + "tarball": "http://registry.npmjs.org/gzip-js/-/gzip-js-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "bb878b5939a3b68b7a6d27f8a36de92990204e3e", + "tarball": "http://registry.npmjs.org/gzip-js/-/gzip-js-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "b8e9bd8d0695838c586a72b5ac1ad40a4af58d71", + "tarball": "http://registry.npmjs.org/gzip-js/-/gzip-js-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "8ccbe9d576221523cacecd5ff2d008443c0b7555", + "tarball": "http://registry.npmjs.org/gzip-js/-/gzip-js-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "7a367c4d40921033010218a2740659db8caf2792", + "tarball": "http://registry.npmjs.org/gzip-js/-/gzip-js-0.3.1.tgz" + } + }, + "url": "http://registry.npmjs.org/gzip-js/" + }, + "gzip-stack": { + "name": "gzip-stack", + "description": "A `StreamStack` implementation for encoding and decoding `Gzip` content.", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "TooTallNate", + "email": "nathan@tootallnate.net" + } + ], + "author": { + "name": "Nathan Rajlich", + "email": "nathan@tootallnate.net" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/gzip-stack/0.0.1", + "1.0.0": "http://registry.npmjs.org/gzip-stack/1.0.0" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/gzip-stack/-/gzip-stack-0.0.1.tgz" + }, + "1.0.0": { + "shasum": "ebb5ef7128e392e2a3aacab7b9aeb454a06e14db", + "tarball": "http://registry.npmjs.org/gzip-stack/-/gzip-stack-1.0.0.tgz" + } + }, + "keywords": [ + "stream", + "stack", + "gzip", + "gunzip", + "encoder", + "decoder" + ], + "url": "http://registry.npmjs.org/gzip-stack/" + }, + "gzippo": { + "name": "gzippo", + "description": "Gzip middleware for Connect using the native zlib library in node >= 0.6", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "tomgallacher", + "email": "tomgallacher23@gmail.com" + } + ], + "time": { + "modified": "2011-11-21T00:52:17.304Z", + "created": "2011-05-25T00:09:07.529Z", + "0.0.1": "2011-05-25T00:09:08.822Z", + "0.0.2": "2011-06-05T22:35:40.712Z", + "0.0.3": "2011-07-01T14:59:25.013Z", + "0.0.4": "2011-07-21T00:37:35.724Z", + "0.0.5": "2011-08-20T22:37:54.024Z", + "0.0.6": "2011-10-04T16:45:18.711Z", + "0.0.7": "2011-11-21T00:10:46.713Z", + "0.1.0": "2011-11-21T00:52:17.304Z" + }, + "author": { + "name": "Tom Gallacher" + }, + "repository": { + "type": "git", + "url": "git://github.com/tomgallacher/gzippo.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/gzippo/0.0.1", + "0.0.2": "http://registry.npmjs.org/gzippo/0.0.2", + "0.0.3": "http://registry.npmjs.org/gzippo/0.0.3", + "0.0.4": "http://registry.npmjs.org/gzippo/0.0.4", + "0.0.5": "http://registry.npmjs.org/gzippo/0.0.5", + "0.0.6": "http://registry.npmjs.org/gzippo/0.0.6", + "0.0.7": "http://registry.npmjs.org/gzippo/0.0.7", + "0.1.0": "http://registry.npmjs.org/gzippo/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "8f51b5219cdefde7d4772975f2e46c83dd161088", + "tarball": "http://registry.npmjs.org/gzippo/-/gzippo-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "fb9d23bfaa92d82e5269a5736fdd9c5960035932", + "tarball": "http://registry.npmjs.org/gzippo/-/gzippo-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "475f16c4132c90cd012c6175485f9554db298e25", + "tarball": "http://registry.npmjs.org/gzippo/-/gzippo-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "3a30bba06ae8d369764d48772252d66c08463d6e", + "tarball": "http://registry.npmjs.org/gzippo/-/gzippo-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "e37ebe5d15d3d04426cb2ba165c8384599f21a94", + "tarball": "http://registry.npmjs.org/gzippo/-/gzippo-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "90e84b95e251ac062ab10a6e7d86a4c41a9d02f3", + "tarball": "http://registry.npmjs.org/gzippo/-/gzippo-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "0594ca50612af587a87955d4704f375f24e263f9", + "tarball": "http://registry.npmjs.org/gzippo/-/gzippo-0.0.7.tgz" + }, + "0.1.0": { + "shasum": "dfafe8cebce9bc544b8e4310a51251d5faef31cd", + "tarball": "http://registry.npmjs.org/gzippo/-/gzippo-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/gzippo/" + }, + "h5.buffers": { + "name": "h5.buffers", + "description": "A set of classes to simplify and extend reading from and writing to node.js Buffers.", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "# h5.buffers\n\nA set of classes to simplify and extend reading from and writing to\nnode.js Buffers.\n\n## How to install\n\n $ npm install h5.buffers\n\n## How to use\n\nRequire the module:\n\n```javascript\nvar buffers = require('h5.buffers');\n```\n\nInstantiate any class and look up its API:\n\n```javascript\n var reader = new buffers.BufferReader(new Buffer(256));\n var builder = new buffers.BufferBuilder();\n var queueReader = new buffers.BufferQueueReader();\n```\n\n## API\n\nCheck out JSDoc comment in source files or\n[doc/](https://github.com/morkai/h5.buffers/tree/master/doc/api/)\ndirectory for API generated from these comments.\n\n## Examples\n\nCheck out [example/](https://github.com/morkai/h5.buffers/tree/master/example)\nand [spec/](https://github.com/morkai/h5.buffers/tree/master/spec)\ndirectories.\n\n## Tests\n\nTo run tests, you'll need\n[jasmine-node](https://github.com/mhevery/jasmine-node).\n\n $ npm install -g jasmine-node\n\nRun tests by executing the following command:\n\n $ npm test h5.buffers\n\n## License\n\nSee [License.md](https://raw.github.com/morkai/h5.buffers/master/License.md)\n(it's MIT).\n", + "maintainers": [ + { + "name": "morkai", + "email": "lukasz@walukiewicz.eu" + } + ], + "time": { + "modified": "2011-11-22T22:43:25.278Z", + "created": "2011-11-22T22:43:22.972Z", + "0.1.0": "2011-11-22T22:43:25.278Z" + }, + "author": { + "name": "Łukasz Walukiewicz", + "email": "lukasz@walukiewicz.eu", + "url": "http://lukasz.walukiewicz.eu/" + }, + "repository": { + "type": "git", + "url": "git://github.com/morkai/h5.buffers.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/h5.buffers/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "6191c1b2b5f72188107332ee964666fd65f205d6", + "tarball": "http://registry.npmjs.org/h5.buffers/-/h5.buffers-0.1.0.tgz" + } + }, + "keywords": [ + "h5", + "buffer", + "reader", + "builder", + "queue", + "binary" + ], + "url": "http://registry.npmjs.org/h5.buffers/" + }, + "h5eb": { + "name": "h5eb", + "description": "HTML5 Express Boilerplate", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "niftylettuce", + "email": "nicholasbaugh@gmail.com" + } + ], + "time": { + "modified": "2011-09-04T13:56:48.989Z", + "created": "2011-09-04T13:56:48.267Z", + "0.0.1": "2011-09-04T13:56:48.989Z" + }, + "author": { + "name": "Nick Baugh", + "email": "niftylettuce@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/niftylettuce/html5-express-boilerplate.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/h5eb/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "d34e36881f49dfdba49f15b19da4475c70e7db16", + "tarball": "http://registry.npmjs.org/h5eb/-/h5eb-0.0.1.tgz" + } + }, + "keywords": [ + "h5eb", + "html5", + "express", + "boilerplate", + "jade", + "stylus" + ], + "url": "http://registry.npmjs.org/h5eb/" + }, + "haba": { + "name": "haba", + "description": "Plugin library", + "dist-tags": { + "latest": "0.0.3" + }, + "readme": "### Plugin Library for node.js\n\n### Motivation\n\n- Modularity - encourages code-reuse, abstraction, and encapsulation\n- Easily drop plugins in and out without breaking your program\n- Maintainability\n- *soon* asyncronously load remote plugins via [dnode](/substack/dnode), [now.js](/flotype/now), [hookio](/hookio/hook.io), [beanpoll](beanpole), etc.\n- *soon* double as online async module loader (similar to [head](https://github.com/headjs/headjs)).\n\n## Basic Usage\n\nA simple use case with express:\n\n```javascript\n\nvar haba = require('haba')(),\nserver = require('express').createServer();\n\nhaba.options(server, true).\nrequire(\"path/to/plugins/dir\");\n\nserver.listen(8080);\n\n```\n\nIn your `hello world` plugin:\n\n```javascript\n\nexports.plugin = function(server) {\n\t\n\tserver.get('/', function(req, res) {\n\t\t\n\t\tres.send(\"Hello World!\");\n\t});\n}\n\n```\n\n\n## Haba API\n\n### haba.require(path)\n\nrequires a given haba\n\n```javascript\nplugins.require('path/to/plugin.js'). // require one plugin\nrequire('path/to/plugins/dir'). // require all plugins in directory\nrequire('path/to/plugins/**/*.plugin.js'). // find plugins, and load them\nrequire('dnode+https://localhost:9090'). // plugin another server\nrequire({\t\t\t\t\t\t\t // include obj\n\tname: 'my.plugin',\n\tplugin: function() {\n\t\t\n\t}\n}).\nrequire('plugin1.js','plugin2.js','plugin3.js'). //multiple plugin args\nrequire('./package.json'). //load plugins in configuration file { plugins: ['my/plugin.js','...'] }\n```\n\n### haba.paths(path)\n\nadds a path to scan when requiring plugins. Similar to the old `require.paths.unshift`\n\n```javascript\nhaba.paths('/path/to/plugins').require('my-plugin');\n\nconsole.log(haba.paths());// ['/path/to/plugins','/path/to/node_modules','...'];\n```\n\n### haba.params(params)\n\nparams specific to plugin - like constructor parameters\n\nbootstrap.js:\n\n```javascript\nhaba.params({\n\t'api.server': {\n\t\t'port': 8080\n\t}\n}).\n\n//or\nparams('api.server', { port: 8080 }).\nrequire('api.server');\n```\n\napi.server/index.js:\n\n```javascript\nexports.plugin = function(ops, params) {\n\tconsole.log(params.port); //8080\t\n}\n```\n\n\n### haba.options(ops)\n\nAdds / returns options which as passed in the first parameter for each plugin.\n\nbootstrap.js:\n\n```javascript\nhaba.options({ message: 'hello world!' }).require('hello.plugin.js');\n```\n\nhello.plugin.js:\n\n```javascript\nexports.plugin = function(ops) {\n\tconsole.log(ops.message); //hello world!\n}\n```\n\n### haba.call(method)\n\nCalls a method against all loaded plugins. If the method doesn't exist, it'll be ignored.\n\nbootstrap.js:\n\n```javascript\nhaba.require('api.server').call(\"prepare\").call(\"init\");\n```\n\napi.server/index.js:\n\n```javascript\nexports.plugin = function() {\n\t\n\treturn {\n\t\tprepare: function() {\n\t\t\tconsole.log(\"PREPARE\");\t\n\t\t},\n\t\tinit: function() {\n\t\t\tconsole.log(\"INIT\");\n\t\t}\n\t};\n}\n```\n\n### haba.init()\n\nWrapper for `haba.call(\"init\")`\n\n\n### haba.plugin(search)\n\nReturns a *single* based on the search criteria given.\n\nboostrap.js:\n\n```javascript\nhaba.require('plugin1.js','plugin2.js').init();\n```\n\nplugin1.js:\n\n```javascript\n\nexports.plugin = function() {\n\t\n\tvar haba = this;\n\n\treturn {\n\t\tinit: function() {\n\t\t\thaba.plugin('plugin2').sayHello();\n\t\t}\n\t}\n}\n```\n\nplugin2.js\n\n```javascript\nexports.plugin = function() {\n\treturn {\n\t\tsayHello: function() {\n\t\t\tconsole.log('hello!');\n\t\t}\n\t}\n}\n```\n\n### haba.plugins(search)\n\nReturns *multiple* plugins based on the search criteria.\n\n### haba.loaders\n\nLoads plugins passed into `haba.require()`.\n\n```javascript\n//dnode plugin\nhaba.loaders.push({\n\ttest: function(path) {\n\t\treturn !!path.match(/dnode+\\w+:\\/\\//); //dnode+https://my-dnode-server.com\n\t},\n\tload: function(path, callback) {\n\t\t//load dnode module here\n\t}\n});\n```\n\n### haba.newPlugin\n\nPlugin factory for haba. Setting this method will change the way modules are loaded in.\n\n```javascript\n\n\nhaba.newPlugin = function(module, options, params) {\t\n\treturn module(options, params); //instead of exports.plugin = function(){}, it would be module.exports = function(options, params)\n};\n\n```\n\n\n\n## Plugins API\n\n\n### exports.require\n\nDependencies for the given haba. This is checked once `haba.call`, or `haba.init` is invoked. An exception is thrown if there are any missing dependencies.\n\n```javascript\n\nexports.require = ['api.services.photos.*','another-plugin']; //requires any photo services. E.g: api.services.photos.facebook, api.services.photos.flickr\n\nexports.require = [/api\\.\\w+/]; //regexp test\n\nexports.require = function(name) { //function test\n\treturn name.indexOf('api.services.photos') > -1\n};\n\n\n```\n\nYou can also load in any given plugin via `exports.require`:\n\n```javascript\n\nexports.require = {\n\t'myPlugin' : 'api.services.photos.*'\n};\n\n\nexports.plugin = function() {\n\t\n\treturn {\n\t\tinit: function() {\n\t\t\t\n\t\t\tconsole.log(this.require.myPlugin.plugin); //return a single instance\n\t\t\tconsole.log(this.require.myPlugin.plugins); //return multiple instances \n\t\t}\n\t}\n}\n```\n\n### exports.name\n\nOptional name for the plugin. The default value is name provided when requiring the plugin.\n\n\n### Plugin exports.plugin(options, params, haba)\n\nCalled when the plugin is loaded. \n\n- `options` - options which are passed to the plugin, along with every other plugin.\n- `params` - parameters which are specific to the loaded plugin.\n- `haba` - the haba loader. Also accessible via `this`.\n- return type can be `void`, or an `object`.\n\n\n\n\n \n\n", + "maintainers": [ + { + "name": "architectd", + "email": "craig.j.condon@gmail.com" + } + ], + "time": { + "modified": "2011-12-04T23:49:53.606Z", + "created": "2011-11-28T21:44:22.149Z", + "0.0.1": "2011-11-28T21:44:22.903Z", + "0.0.2": "2011-12-03T23:26:57.288Z", + "0.0.3": "2011-12-04T23:49:53.606Z" + }, + "author": { + "name": "Craig Condon" + }, + "repository": { + "type": "git", + "url": "git://github.com/crcn/haba.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/haba/0.0.1", + "0.0.2": "http://registry.npmjs.org/haba/0.0.2", + "0.0.3": "http://registry.npmjs.org/haba/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "e12f370ad44a6cab2fa806da1523f083dcb6c04c", + "tarball": "http://registry.npmjs.org/haba/-/haba-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "ef84604c1e3fbe4056dfd246de038eb81a53983a", + "tarball": "http://registry.npmjs.org/haba/-/haba-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "705b64e24ff592f7ef688970d60c628cb6382daa", + "tarball": "http://registry.npmjs.org/haba/-/haba-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/haba/" + }, + "hack": { + "name": "hack", + "description": "object navigator/manipulator for browsers", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "pyrotechnick", + "email": "pyrotechnick@gmail.com" + } + ], + "time": { + "modified": "2011-03-22T02:02:25.587Z", + "created": "2011-03-22T02:02:24.441Z", + "0.1.0": "2011-03-22T02:02:25.587Z" + }, + "author": { + "name": "Feisty Studios", + "email": "hack@feistystudios.com", + "url": "http://feistystudios.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/feisty/hack.git", + "private": "git@github.com:feisty/hack.git", + "web": "http://github.com/feisty/hack" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/hack/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "6c681ebdb1a4a7ceb7b050e2d4e50c1b1d21585a", + "tarball": "http://registry.npmjs.org/hack/-/hack-0.1.0.tgz" + } + }, + "keywords": [ + "hack" + ], + "url": "http://registry.npmjs.org/hack/" + }, + "hack.io": { + "name": "hack.io", + "description": "hack.io is hook.io unless...", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "coffeemate", + "email": "kadirpekel@gmail.com" + } + ], + "time": { + "modified": "2011-06-14T07:02:52.806Z", + "created": "2011-06-12T22:06:40.579Z", + "0.0.1": "2011-06-12T22:06:41.614Z", + "0.1.0": "2011-06-13T13:41:56.395Z", + "0.1.1": "2011-06-13T14:42:49.206Z", + "0.1.2": "2011-06-14T05:43:38.950Z", + "0.1.3": "2011-06-14T05:47:43.997Z", + "0.2.1": "2011-06-14T07:02:24.640Z" + }, + "author": { + "name": "Kadir Pekel", + "email": "kadirpekel@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/coffeemate/hack.io.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/hack.io/0.0.1", + "0.1.0": "http://registry.npmjs.org/hack.io/0.1.0", + "0.1.1": "http://registry.npmjs.org/hack.io/0.1.1", + "0.1.2": "http://registry.npmjs.org/hack.io/0.1.2", + "0.1.3": "http://registry.npmjs.org/hack.io/0.1.3", + "0.2.1": "http://registry.npmjs.org/hack.io/0.2.1" + }, + "dist": { + "0.0.1": { + "shasum": "5d085124a2d13b13c89750505cd076582520867f", + "tarball": "http://registry.npmjs.org/hack.io/-/hack.io-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "95b7153c704e960ec90c368e0a85b010076c7460", + "tarball": "http://registry.npmjs.org/hack.io/-/hack.io-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "f7f2f514fb39e8ffffbba84ba350f4608672dde1", + "tarball": "http://registry.npmjs.org/hack.io/-/hack.io-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "10131e60123bbd4dcc984d98685bbb0d746c0f8d", + "tarball": "http://registry.npmjs.org/hack.io/-/hack.io-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "e8011b607450e0a6ac8b1a51f4f2b54eea619d61", + "tarball": "http://registry.npmjs.org/hack.io/-/hack.io-0.1.3.tgz" + }, + "0.2.1": { + "shasum": "00f2b5d8d7f2ab878a4edaddb2327a472e66e4e4", + "tarball": "http://registry.npmjs.org/hack.io/-/hack.io-0.2.1.tgz" + } + }, + "url": "http://registry.npmjs.org/hack.io/" + }, + "hacktor": { + "name": "hacktor", + "description": "Actor-like concurrent messaging for Node.js", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "yonkeltron", + "email": "yonkeltron@gmail.com" + } + ], + "time": { + "modified": "2010-12-19T20:44:43.461Z", + "created": "2010-12-19T20:44:43.288Z", + "0.0.1": "2010-12-19T20:44:43.461Z" + }, + "author": { + "name": "yonkeltron", + "url": "http://yonkeltron.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/hacktor/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "ea6e1c276dc9a9f0976c08a975d82a9c5d32751c", + "tarball": "http://registry.npmjs.org/hacktor/-/hacktor-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/hacktor/" + }, + "hadoop-jute": { + "name": "hadoop-jute", + "description": "Hadoop record I/O in pure JavaScript", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": null, + "maintainers": [ + { + "name": "enaeseth", + "email": "eric@naeseth.com" + } + ], + "time": { + "modified": "2011-12-04T02:08:31.052Z", + "created": "2011-12-04T02:08:28.757Z", + "0.1.0": "2011-12-04T02:08:31.052Z" + }, + "author": { + "name": "Eric Naeseth", + "email": "eric@naeseth.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/enaeseth/node-jute.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/hadoop-jute/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "4e25a1ee2b16b3dc10bbf39375eb9513dcae94b2", + "tarball": "http://registry.npmjs.org/hadoop-jute/-/hadoop-jute-0.1.0.tgz" + } + }, + "keywords": [ + "jute", + "hadoop", + "serialization" + ], + "url": "http://registry.npmjs.org/hadoop-jute/" + }, + "haibu": { + "name": "haibu", + "description": "A node.js application server - spawn your own node.js clouds, on your own hardware", + "dist-tags": { + "latest": "0.6.0" + }, + "maintainers": [ + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + } + ], + "time": { + "modified": "2011-12-08T03:26:25.892Z", + "created": "2011-05-05T22:17:24.427Z", + "0.1.0": "2011-05-05T22:17:25.897Z", + "0.1.1": "2011-05-14T04:22:08.213Z", + "0.1.2": "2011-05-14T04:36:11.282Z", + "0.2.0": "2011-05-23T04:43:36.129Z", + "0.2.1": "2011-05-29T20:52:45.289Z", + "0.2.1-1": "2011-05-31T02:42:23.972Z", + "0.2.1-2": "2011-05-31T12:22:08.563Z", + "0.2.1-3": "2011-05-31T13:07:51.696Z", + "0.2.2": "2011-06-06T04:48:27.138Z", + "0.2.2-1": "2011-06-06T09:53:57.145Z", + "0.2.4": "2011-06-14T06:20:32.088Z", + "0.2.5": "2011-06-16T20:10:30.048Z", + "0.2.6": "2011-12-08T03:26:25.892Z", + "0.3.1": "2011-08-03T07:33:44.051Z", + "0.3.2": "2011-08-05T04:56:00.571Z", + "0.3.3": "2011-08-08T03:41:20.277Z", + "0.3.3-1": "2011-12-08T03:26:25.892Z", + "0.3.4": "2011-12-08T03:26:25.892Z", + "0.3.4-1": "2011-12-08T03:26:25.892Z", + "0.3.4-2": "2011-12-08T03:26:25.892Z", + "0.3.5": "2011-12-08T03:26:25.892Z", + "0.3.6": "2011-12-08T03:26:25.892Z", + "0.3.7": "2011-12-08T03:26:25.892Z", + "0.3.8": "2011-12-08T03:26:25.892Z", + "0.3.10": "2011-12-08T03:26:25.892Z", + "0.3.11": "2011-12-08T03:26:25.892Z", + "0.3.13": "2011-12-08T03:26:25.892Z", + "0.4.0": "2011-12-08T03:26:25.892Z", + "0.4.1": "2011-12-08T03:26:25.892Z", + "0.4.2": "2011-12-08T03:26:25.892Z", + "0.4.3": "2011-12-08T03:26:25.892Z", + "0.4.4": "2011-12-08T03:26:25.892Z", + "0.4.5": "2011-12-08T03:26:25.892Z", + "0.4.6": "2011-12-08T03:26:25.892Z", + "0.4.6-1": "2011-12-08T03:26:25.892Z", + "0.5.0": "2011-12-08T03:26:25.892Z", + "0.5.3": "2011-12-08T03:26:25.892Z", + "0.5.5": "2011-10-27T20:49:17.895Z", + "0.5.5-1": "2011-11-01T07:00:39.710Z", + "0.5.6": "2011-11-18T06:32:17.320Z", + "0.5.6-2": "2011-12-05T23:07:21.764Z", + "0.6.0": "2011-12-08T03:26:25.892Z" + }, + "author": { + "name": "Nodejitsu Inc.", + "email": "info@nodejitsu.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/nodejitsu/haibu.git" + }, + "versions": { + "0.2.6": "http://registry.npmjs.org/haibu/0.2.6", + "0.3.3-1": "http://registry.npmjs.org/haibu/0.3.3-1", + "0.3.4": "http://registry.npmjs.org/haibu/0.3.4", + "0.3.4-1": "http://registry.npmjs.org/haibu/0.3.4-1", + "0.3.4-2": "http://registry.npmjs.org/haibu/0.3.4-2", + "0.3.5": "http://registry.npmjs.org/haibu/0.3.5", + "0.3.6": "http://registry.npmjs.org/haibu/0.3.6", + "0.3.7": "http://registry.npmjs.org/haibu/0.3.7", + "0.3.8": "http://registry.npmjs.org/haibu/0.3.8", + "0.3.10": "http://registry.npmjs.org/haibu/0.3.10", + "0.3.11": "http://registry.npmjs.org/haibu/0.3.11", + "0.3.13": "http://registry.npmjs.org/haibu/0.3.13", + "0.4.0": "http://registry.npmjs.org/haibu/0.4.0", + "0.4.1": "http://registry.npmjs.org/haibu/0.4.1", + "0.4.2": "http://registry.npmjs.org/haibu/0.4.2", + "0.4.3": "http://registry.npmjs.org/haibu/0.4.3", + "0.4.4": "http://registry.npmjs.org/haibu/0.4.4", + "0.4.5": "http://registry.npmjs.org/haibu/0.4.5", + "0.4.6": "http://registry.npmjs.org/haibu/0.4.6", + "0.4.6-1": "http://registry.npmjs.org/haibu/0.4.6-1", + "0.5.0": "http://registry.npmjs.org/haibu/0.5.0", + "0.5.3": "http://registry.npmjs.org/haibu/0.5.3", + "0.5.5": "http://registry.npmjs.org/haibu/0.5.5", + "0.5.5-1": "http://registry.npmjs.org/haibu/0.5.5-1", + "0.5.6": "http://registry.npmjs.org/haibu/0.5.6", + "0.5.6-2": "http://registry.npmjs.org/haibu/0.5.6-2", + "0.6.0": "http://registry.npmjs.org/haibu/0.6.0" + }, + "dist": { + "0.2.6": { + "shasum": "9d4509db6815acef5d9e75233adfe8559dbe4a0e", + "tarball": "http://registry.npmjs.org/haibu/-/haibu-0.2.6.tgz" + }, + "0.3.3-1": { + "shasum": "c013fe6c20197b6554dd7f1ca0a5ef664058d7de", + "tarball": "http://registry.npmjs.org/haibu/-/haibu-0.3.3-1.tgz" + }, + "0.3.4": { + "shasum": "d0cb36e40f9ac0b8382c92fcad3b6beb707919b9", + "tarball": "http://registry.npmjs.org/haibu/-/haibu-0.3.4.tgz" + }, + "0.3.4-1": { + "shasum": "ea6eb0b9fa98a024f79b0c662266a23adb68668d", + "tarball": "http://registry.npmjs.org/haibu/-/haibu-0.3.4-1.tgz" + }, + "0.3.4-2": { + "shasum": "3d763aabcc8ae18b191f4b7ba18cca5d242f25d1", + "tarball": "http://registry.npmjs.org/haibu/-/haibu-0.3.4-2.tgz" + }, + "0.3.5": { + "shasum": "9e95991b039e98a9a03505afdd0e1c61a10e7749", + "tarball": "http://registry.npmjs.org/haibu/-/haibu-0.3.5.tgz" + }, + "0.3.6": { + "shasum": "f0a195271aeca3e8b8f2b704344be0240e8bd245", + "tarball": "http://registry.npmjs.org/haibu/-/haibu-0.3.6.tgz" + }, + "0.3.7": { + "shasum": "c48c28116642b2fb3985621dc69623b2b05ed087", + "tarball": "http://registry.npmjs.org/haibu/-/haibu-0.3.7.tgz" + }, + "0.3.8": { + "shasum": "a542653716b776cfdf68db5dff7cb1a00898bb91", + "tarball": "http://registry.npmjs.org/haibu/-/haibu-0.3.8.tgz" + }, + "0.3.10": { + "shasum": "842c84e0646ef02ee733e77202f404f1eb5378f3", + "tarball": "http://registry.npmjs.org/haibu/-/haibu-0.3.10.tgz" + }, + "0.3.11": { + "shasum": "992bee6529244220c75d87781755d46ffaa12c7d", + "tarball": "http://registry.npmjs.org/haibu/-/haibu-0.3.11.tgz" + }, + "0.3.13": { + "shasum": "b7c769f5027d1dd0563ebf811907dc018b74f6d5", + "tarball": "http://registry.npmjs.org/haibu/-/haibu-0.3.13.tgz" + }, + "0.4.0": { + "shasum": "63b7dc71f5ad485b6e40daa0a4854a9b470d6035", + "tarball": "http://registry.npmjs.org/haibu/-/haibu-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "6ce5732ba4ab63b45ec8929ed49f1be10bd24600", + "tarball": "http://registry.npmjs.org/haibu/-/haibu-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "0c455d09ea9e960d8edec053c9c464200b0bde3b", + "tarball": "http://registry.npmjs.org/haibu/-/haibu-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "58de6350aa4a1e289c2cce9a21e7a1498046601b", + "tarball": "http://registry.npmjs.org/haibu/-/haibu-0.4.3.tgz" + }, + "0.4.4": { + "shasum": "40042ce799e7995574d490668756d84228bd4029", + "tarball": "http://registry.npmjs.org/haibu/-/haibu-0.4.4.tgz" + }, + "0.4.5": { + "shasum": "c1568e256df459d3b244798cf5f7790f38f718d3", + "tarball": "http://registry.npmjs.org/haibu/-/haibu-0.4.5.tgz" + }, + "0.4.6": { + "shasum": "7fe79e682bffa42170dd988d89cf493c35b8d8fd", + "tarball": "http://registry.npmjs.org/haibu/-/haibu-0.4.6.tgz" + }, + "0.4.6-1": { + "shasum": "e2ee52577aed5b5b859ae536ecdb4b33bc57814c", + "tarball": "http://registry.npmjs.org/haibu/-/haibu-0.4.6-1.tgz" + }, + "0.5.0": { + "shasum": "65ff4d61f697341377b4d5238529a5411027d773", + "tarball": "http://registry.npmjs.org/haibu/-/haibu-0.5.0.tgz" + }, + "0.5.3": { + "shasum": "f364503d56437d428ff77669d39840f08534b1db", + "tarball": "http://registry.npmjs.org/haibu/-/haibu-0.5.3.tgz" + }, + "0.5.5": { + "shasum": "48a8ede6917f2da4333ac7b879bf7413a970a0cf", + "tarball": "http://registry.npmjs.org/haibu/-/haibu-0.5.5.tgz" + }, + "0.5.5-1": { + "shasum": "32001f3df5f4c7c70b2f0d2f483e40b37de96fb3", + "tarball": "http://registry.npmjs.org/haibu/-/haibu-0.5.5-1.tgz" + }, + "0.5.6": { + "shasum": "f432353641f1d1828cb42bab1d3adcf7882b8abd", + "tarball": "http://registry.npmjs.org/haibu/-/haibu-0.5.6.tgz" + }, + "0.5.6-2": { + "shasum": "a645ac9668ed9437505918066b780d2a4c7e915e", + "tarball": "http://registry.npmjs.org/haibu/-/haibu-0.5.6-2.tgz" + }, + "0.6.0": { + "shasum": "8c98cfb57f537212d6c2cc5548856584ce66e458", + "tarball": "http://registry.npmjs.org/haibu/-/haibu-0.6.0.tgz" + } + }, + "keywords": [ + "cloud computing", + "automated deployment", + "platform-as-a-service" + ], + "url": "http://registry.npmjs.org/haibu/" + }, + "haibu-carapace": { + "name": "haibu-carapace", + "dist-tags": { + "latest": "0.2.9" + }, + "maintainers": [ + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + }, + { + "name": "bradleymeck", + "email": "bradley.meck@gmail.com" + } + ], + "time": { + "modified": "2011-11-28T18:34:18.737Z", + "created": "2011-07-26T09:11:16.953Z", + "0.1.0": "2011-07-26T09:11:21.594Z", + "0.2.0": "2011-08-03T05:16:26.272Z", + "0.2.1": "2011-08-03T07:04:04.454Z", + "0.2.2": "2011-08-05T04:53:25.301Z", + "0.2.3": "2011-08-08T03:34:40.777Z", + "0.2.4": "2011-08-08T05:01:00.327Z", + "0.2.6": "2011-08-23T01:15:38.879Z", + "0.2.7": "2011-10-09T05:25:02.840Z", + "0.2.9": "2011-11-28T18:34:18.737Z" + }, + "versions": { + "0.2.1": "http://registry.npmjs.org/haibu-carapace/0.2.1", + "0.2.2": "http://registry.npmjs.org/haibu-carapace/0.2.2", + "0.2.3": "http://registry.npmjs.org/haibu-carapace/0.2.3", + "0.2.4": "http://registry.npmjs.org/haibu-carapace/0.2.4", + "0.2.6": "http://registry.npmjs.org/haibu-carapace/0.2.6", + "0.2.7": "http://registry.npmjs.org/haibu-carapace/0.2.7", + "0.2.9": "http://registry.npmjs.org/haibu-carapace/0.2.9" + }, + "dist": { + "0.2.1": { + "shasum": "2cf04d7d3a5b565ed0d9fec3f9e32ac00688c37a", + "tarball": "http://registry.npmjs.org/haibu-carapace/-/haibu-carapace-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "8d7bb888afa484e7d52d7236dc6ea9eb747fcd98", + "tarball": "http://registry.npmjs.org/haibu-carapace/-/haibu-carapace-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "189cc40db59613e8a11776e5578e6683a90e1191", + "tarball": "http://registry.npmjs.org/haibu-carapace/-/haibu-carapace-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "c7fed49eb5056e8a6b3011677b36181bfbd26beb", + "tarball": "http://registry.npmjs.org/haibu-carapace/-/haibu-carapace-0.2.4.tgz" + }, + "0.2.6": { + "shasum": "56215a92f46a75fff07c4b74a32edea3e335db9a", + "tarball": "http://registry.npmjs.org/haibu-carapace/-/haibu-carapace-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "35e3528ed375e7c0cc7ba1cb5463f8c64875e3a3", + "tarball": "http://registry.npmjs.org/haibu-carapace/-/haibu-carapace-0.2.7.tgz" + }, + "0.2.9": { + "shasum": "88af96e3b5ef92d31eb136afd9bec5b389caaff5", + "tarball": "http://registry.npmjs.org/haibu-carapace/-/haibu-carapace-0.2.9.tgz" + } + }, + "url": "http://registry.npmjs.org/haibu-carapace/" + }, + "haibu-nginx": { + "name": "haibu-nginx", + "description": "nginx configuration generator for haibu", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "sylvinus", + "email": "sylvain@sylvainzimmer.com" + } + ], + "time": { + "modified": "2011-08-18T00:02:38.155Z", + "created": "2011-08-17T22:47:24.445Z", + "0.0.2": "2011-08-17T22:47:26.378Z", + "0.0.3": "2011-08-17T23:34:06.069Z", + "0.0.4": "2011-08-18T00:02:38.155Z" + }, + "author": { + "name": "Sylvain Zimmer @ Joshfire" + }, + "repository": { + "type": "git", + "url": "git://github.com/joshfire/haibu-nginx.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/haibu-nginx/0.0.2", + "0.0.3": "http://registry.npmjs.org/haibu-nginx/0.0.3", + "0.0.4": "http://registry.npmjs.org/haibu-nginx/0.0.4" + }, + "dist": { + "0.0.2": { + "shasum": "b1e8cccb467424f2854e7e2d19c012a3207a1d3b", + "tarball": "http://registry.npmjs.org/haibu-nginx/-/haibu-nginx-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "fcc0c6bc82ac01ec868c9cc459aa26692b212ba6", + "tarball": "http://registry.npmjs.org/haibu-nginx/-/haibu-nginx-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "69b79425f3be0ba57dfcef0186ac175a53ffdf5f", + "tarball": "http://registry.npmjs.org/haibu-nginx/-/haibu-nginx-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/haibu-nginx/" + }, + "halfstreamxml": { + "name": "halfstreamxml", + "description": "converts a stream of XML to a stream of objects", + "dist-tags": { + "latest": "0.1.2-1" + }, + "maintainers": [ + { + "name": "thejh", + "email": "jannhorn@gmail.com" + } + ], + "time": { + "modified": "2011-06-02T12:16:47.597Z", + "created": "2011-06-02T11:55:47.220Z", + "0.1.0": "2011-06-02T11:55:47.663Z", + "0.1.1": "2011-06-02T12:01:00.864Z", + "0.1.2-1": "2011-06-02T12:16:47.597Z" + }, + "author": { + "name": "Jann Horn" + }, + "repository": { + "type": "git", + "url": "http://github.com/thejh/node-halfstreamxml.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/halfstreamxml/0.1.0", + "0.1.1": "http://registry.npmjs.org/halfstreamxml/0.1.1", + "0.1.2-1": "http://registry.npmjs.org/halfstreamxml/0.1.2-1" + }, + "dist": { + "0.1.0": { + "shasum": "c5fec20354376859146ec86ee3ecbceb53d53071", + "tarball": "http://registry.npmjs.org/halfstreamxml/-/halfstreamxml-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "50e357b95c155ea98e15ae31251a72b0ba0f9016", + "tarball": "http://registry.npmjs.org/halfstreamxml/-/halfstreamxml-0.1.1.tgz" + }, + "0.1.2-1": { + "shasum": "936dcf5d86be5d469135817aaa1e7c06558ba79d", + "tarball": "http://registry.npmjs.org/halfstreamxml/-/halfstreamxml-0.1.2-1.tgz" + } + }, + "keywords": [ + "XML", + "stream", + "SAX" + ], + "url": "http://registry.npmjs.org/halfstreamxml/" + }, + "ham": { + "name": "ham", + "description": "Node.js application framework based on hubs, actors and messages", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "ilya42", + "email": "ilya42@gmail.com" + } + ], + "time": { + "modified": "2011-05-19T06:05:13.037Z", + "created": "2011-05-19T06:05:12.533Z", + "0.0.1": "2011-05-19T06:05:13.037Z" + }, + "author": { + "name": "Ilya Simenko" + }, + "repository": { + "type": "git", + "url": "git://github.com/ilya42/ham.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ham/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "36b6d3709bbb863982973d2fcbee16fe954acbda", + "tarball": "http://registry.npmjs.org/ham/-/ham-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/ham/" + }, + "haml": { + "name": "haml", + "description": "Haml ported to server-side Javascript. This is a traditional server-side templating language.", + "dist-tags": { + "latest": "0.4.2" + }, + "maintainers": [ + { + "name": "creationix", + "email": "tim@creationix.com" + }, + { + "name": "aaronblohowiak", + "email": "aaron.blohowiak@gmail.com" + } + ], + "author": { + "name": "Aaron Blohowiak", + "email": "aaron.blohowiak@gmail.com" + }, + "time": { + "modified": "2011-07-16T04:23:58.152Z", + "created": "2011-05-09T05:18:46.628Z", + "0.2.5": "2011-05-09T05:18:46.628Z", + "0.3.0": "2011-05-09T05:31:15.485Z", + "0.4.0": "2011-05-11T06:22:10.032Z", + "0.4.1": "2011-07-16T03:35:33.088Z", + "0.4.2": "2011-07-16T04:23:58.152Z" + }, + "versions": { + "0.2.5": "http://registry.npmjs.org/haml/0.2.5", + "0.3.0": "http://registry.npmjs.org/haml/0.3.0", + "0.4.0": "http://registry.npmjs.org/haml/0.4.0", + "0.4.1": "http://registry.npmjs.org/haml/0.4.1", + "0.4.2": "http://registry.npmjs.org/haml/0.4.2" + }, + "dist": { + "0.2.5": { + "tarball": "http://packages:5984/haml/-/haml-0.2.5.tgz" + }, + "0.3.0": { + "shasum": "e40d99b46c44bb47afa9cee55d9c4cfad29e7842", + "tarball": "http://registry.npmjs.org/haml/-/haml-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "0a118c152ebf5022b7e22b65d9c83a36aa64acd9", + "tarball": "http://registry.npmjs.org/haml/-/haml-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "8161ba02dfcc0baf8673eb068456d97919f39270", + "tarball": "http://registry.npmjs.org/haml/-/haml-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "cf3f4b0cc59cf06d98a1a959b3da45f98c1e68ad", + "tarball": "http://registry.npmjs.org/haml/-/haml-0.4.2.tgz" + } + }, + "keywords": [ + "haml", + "template" + ], + "url": "http://registry.npmjs.org/haml/" + }, + "haml-coffee": { + "name": "haml-coffee", + "description": "HAML Parser where you can write inline CoffeeScript.", + "dist-tags": { + "latest": "0.5.2" + }, + "readme": "# Haml Coffee Templates [![Build Status](https://secure.travis-ci.org/9elements/haml-coffee.png)](http://travis-ci.org/9elements/haml-coffee)\n\nHaml Coffee is a Haml parser that understands CoffeeScript. It will generate a JavaSript template that can be rendered\nto HTML. Those templates can be used in your [Backbone.js](http://documentcloud.github.com/backbone/) application.\n\nIt is heavily inspired by Tim Caswells [haml-js](https://github.com/creationix/haml-js). We developed it since we love\nHaml & CoffeeScript and we don't want to have a media break in our tool chain. If you want to see it in action feel free\nto take a look at our [website](http://www.9elements.com/).\n\nWe also written a motivational [blog post](http://9elements.com/io/?p=551) where we explain our tool chain.\n\n## Installation\n\nHaml Coffee is available in NPM and you can install it with:\n\n```bash\n$ npm install haml-coffee\n```\n\nYou may want to have a look at the related projects section for alternative ways of getting Haml Coffee.\n\n## Compile Haml Coffee\n\nAfter the installation you will have a `haml-coffee` binary:\n\n```bash\n$ haml-coffee\nUsage: node haml-coffee\n\nOptions:\n -i, --input Either a file or a directory name to be compiled [required]\n -o, --output Set the output filename\n -n, --namespace Set a custom template namespace [default: \"window.HAML\"]\n -t, --template Set a custom template name\n -f, --format Set HTML output format, either `xhtml`, `html4` or `html5` [default: \"html5\"]\n -e, --custom-html-escape Set the custom HTML escaping function name\n -c, --custom-clean-value Set the custom code value clean function name\n --disable-html-attribute-escaping Disable any HTML attribute escaping [boolean]\n --disable-html-escaping Disable any HTML escaping [boolean]\n```\n\n### `-i`/`--input` option\n\nYou can either specify a single template or a directory. When you supply a directory, templates are being searched\nwithin it:\n\n```bash\n$ haml-coffee -i template.haml\n```\n\nThis will generate a template with the same name but the extension changed to `jst`. The above command for example would\ngenerate a template named `template.jst`.\n\nValid Haml Coffee template must have one of the following extensions: `.haml`, `.html.haml`, `.hamlc` or\n`.html.hamlc`.\n\n### `-o`/`--output` option\n\nYou can specify a single output file name to be used instead of the automatic generated output file name:\n\n```bash\n$ haml-coffee -i template.haml -o t.js\n```\n\nThis creates a template named `t.js`. You can also set a directory as input and give a output file name for\nconcatenating all output into a single file:\n\n```bash\n$ haml-coffee -i templates -o all.js\n```\n\nThis will create all the templates under the `templates` directory into a single, combined output file `all.js`.\n\n### `-n`/`--namespace` option\n\nEach template will register itself by default under the `window.HAML` namespace, but you can change the namespace with:\n\n``` bash\n$ haml-coffee -i template.haml -n exports.JST\n```\n\n### `-t`/`--template` option\n\nEach template must have a unique name under which it can be addressed. By default the template name is derived from the\ntemplate file name, by stripping of all extensions and remove illegal characters. Directory names are converted to\nnested namespaces under the default namespace.\n\nFor example, a template named `user/show-admin.html.haml` will result in a template name `window.HAML.user.show_admin`,\nbut you can override this behaviour:\n\n``` bash\n$ haml-coffee -i template.haml -n exports.JST -t other\n```\n\nWill result in a template that can be accessed with `exports.JST.other`.\n\n### `-f`/`--format` option\n\nThe Haml parser knows different HTML formats to which a given template can be rendered and it must be one of:\n\n* xhtml\n* html4\n* html5\n\nDoctype, self-closing tags and attributes handling depends on this setting. Please consult the official\n[Haml reference](http://haml-lang.com/docs/yardoc/file.HAML_REFERENCE.html) for more details.\n\n### `-e`/`--custom-html-escape` option\n\nEvery data that is evaluated at render time will be escaped. The escaping function is included in every template and\nwith a growing number of templates, there is a lot of duplication that can be avoided in order to reduce your template\nsize.\n\nYou can specify a custom escape function that will be used to render the template:\n\n```bash\n$ haml-coffee -i template.haml -e HAML.escape\n```\n\nNow the escaping function isn't included in your template anymore and you have to make sure the function is available\nwhen the template is rendered. The default implementation is quite simple:\n\n```coffeescript\nwindow.HAML.htmlEscape ||= (text) ->\n \"#{ text }\"\n .replace(/&/g, '&')\n .replace(//g, '>')\n .replace(/\\\"/g, '"')\n```\n\n### `-c`/`--custom-clean-value` option\n\nEvery data that is evaluated at render time will be cleaned, so that `null` and `undefined` values are shown as empty\nstring. The clean value function is included in every template and with a growing number of templates, there is a lot of\nduplication that can be avoided in order to reduce your template size.\n\nYou can specify a custom clean value function that will be used to render the template:\n\n```bash\n$ haml-coffee -i template.haml -c HAML.cleanValue\n```\n\nNow the clean value function isn't included in your template anymore and you have to make sure the function is available\nwhen the template is rendered. The default implementation is quite simple:\n\n```coffeescript\nwindow.HAML.cleanValue ||= (text) -> if text is null or text is undefined then '' else text\n```\n\n### `--disable-html-attribute-escaping` option\n\nAll dynamic generated HTML attributes are escaped by default, but can be turned off with:\n\n```bash\n$ haml-coffee -i template.haml --disable-html-attribute-escaping\n```\n\n### `--disable-html-escaping` option\n\nAlthough not recommended, escaping can also be turned off completely:\n\n```bash\n$ haml-coffee -i template.haml --disable-html-escaping\n```\n\n## Render Haml Coffee\n\nYour template is compiled into a JavaScript file that can be rendered by instantiating the template with data that to\nbe evaluated.\n\nConsider the given template `template.haml`:\n\n```haml\n%h1\n = @project\n%section.content\n %h2 Tags\n %ul\n - for tag in @tags\n %li\n = project\n```\n\nthat has been successful compiled with:\n\n```coffeescript\n$ haml-coffe -i template.haml\n```\n\nNow you can render the template `template.jst` in the browser with:\n\n```coffeescript\nhtml = HAML.template({\n project : \"Haml Coffee\"\n tags : ['Haml', 'CoffeeScript']\n})\n```\n\nAnd the following HTML will be rendered to the variable `haml`:\n\n```html\n

\n Haml Coffee\n

\n
\n

Tags

\n
    \n
  • \n Haml\n
  • \n
  • \n CoffeeScript\n
  • \n
\n
\n```\n\nThe generated template function will be called using the hash as context, so inside the templates you can access all\nkeys using `this` or `@`.\n\n## Haml support\n\nHaml Coffee implements the [Haml Spec](https://github.com/norman/haml-spec) to ensure some degree of compatibility\nto other implementations, and the following sections are fully compatible to Ruby Haml:\n\n* Plain text\n* Multiline: `|`\n* Element names `%`\n* Attributes: `{}` or `()`\n* Class and ID: `.` and `#`, implicit `div` elements\n* Self-closing tags: `/`\n* Doctype: `!!!`\n* HTML comments: `/`, conditional comments: `/[]`, Haml comments: `-#`\n* Running CoffeeScript: `-`, inserting CoffeeScript: `=`\n* CoffeeScript interpolation: `#{}`\n* Whitespace preservation: `~`\n* Whitespace removal: `>` and `<`\n* Escaping `\\`\n* Escaping HTML: `&=`, unescaping HTML: `!=`\n* Filters: `:plain`, `:javascript`, `:css`, `:cdata`, `:escaped`, `:preserve`\n* Boolean attributes conversion\n\nPlease consult the official [Haml reference](http://haml-lang.com/docs/yardoc/file.HAML_REFERENCE.html) for more\ndetails.\n\nHaml Coffee supports both, Ruby 1.8 and Ruby 1.9 style attributes:\n\n```haml\n%a{ :href => 'http://haml-lang.com/' } Haml\n```\n\ncan also be written as:\n\n```haml\n%a{ href: 'http://haml-lang.com/' } Haml\n```\n\n## CoffeeScript support\n\nHaml and CoffeeScript are a winning team, both use indention for blocks and are a perfect match for this reason.\nYou can use CoffeeScript instead of Ruby in your Haml tags and the attributes.\n\n**It's not recommended to put too much logic into the template, but simple conditions and loops are fine.**\n\n### Attributes\n\nWhen you defining a tag attribute without putting it into quotes (single or double quote), it's considered to be code\nto be run at render time. By default, attributes values from CoffeeScript code is escaped before inserted into the\ndocument. You can turn off attribute escaping with the `--disable-html-attribute-escaping` compile option.\n\nHTML style attributes are the most limited and can only assign a simple local variable:\n\n```haml\n%img(src='/images/demo.png' width=@width height=@height alt=alt)\n```\n\nBoth the `@width` and `@height` values must be passed as context when rendering the template, and `alt` must be defined\nbefore it.\n\nRuby style tags can be more complex and can call functions:\n\n```haml\n%header\n %user{ :class => App.currentUser.get('status') }= App.currentUser.getDisplayName()\n```\n\nAttribute definitions are also supported in the Ruby 1.9 style:\n\n```haml\n%header\n %user{ class: App.currentUser.get('status') }= App.currentUser.getDisplayName()\n```\n\nMore fancy stuff can be done when use interpolation within a quoted attribute:\n\n```haml\n%header\n %user{ class: \"#{ if @user.get('roles').indexOf('admin') is -1 then 'normal' else 'admin' }\" }= @user.getDisplayName()\n```\n\nBut think about it twice before putting such fancy stuff into your template, there are better places like models,\ncontrollers or helpers to put heavy logic into.\n\nYou can define your attributes over multiple lines and the next line must not be indented properly, so you can\nalign them:\n \n```haml\n%input#password.hint{ type: 'password', name: 'registration[password]',\n data: { hint: \"Something very imporant\", align: 'left' } }\n```\n\nIn the above example you see the proper usage for generating HTML data attributes.\n\n### Running Code\n\nYou can run any CoffeeScript code in your template:\n\n```haml\n- for project in @projects\n - if project.visible\n .project\n %h1= project.name\n %p&= project.description\n```\n\nThere are several supported types to run your code:\n\n* Run code without insert anything into the document: `-`\n* Run code and insert the result into the document: `=`\n\nBy default, all inserted content from running code is escaped. You can turn it off with the `--disable-html-escaping`\ncompile option. There are three variations for run code and insert into the document, two of them to change the escaping\nstyle chosen in the compile option:\n\n* Run code and do not escape the result: `!=`\n* Run code and escape the result: `&=`\n* Preserve whitespace when insert the result: `~`\n\nAgain, please consult the official [Haml reference](http://haml-lang.com/docs/yardoc/file.HAML_REFERENCE.html) for more\ndetails. Haml Coffee implements the same functionality like Ruby Haml, only for CoffeeScript.\n\nRunning code is able to define functions that generates Haml:\n\n```haml\n- sum(a, b) ->\n #div\n #span= a\n #span= b\n #span= a+b\n= sum(1,2)\n= sum(3,4)\n```\n\n### CoffeeScript filter\n\nIn addition to the filters `:plain`, `:javascript`, `:css`, `:cdata`, `:escaped` and `:preserve`, which are also\nprovided by Ruby Haml, Haml Coffee has a `:coffeescript` filter.\n\nThe content of the `:coffeescript` filter is run when the template is rendered and doesn't output anything into the\nresulting document. This comes in handy when have code to run over multiple lines and don't want to prefix each line\nwith `-`:\n\n```haml\n%body\n :coffeescript\n tags = ['CoffeeScript', 'Haml']\n project = 'Haml Coffee'\n %h2= project\n %ul\n - for tag in tags\n %li= tag\n```\n\n## Related projects\n\nHaml Coffee in the Rails asset pipeline:\n\n* [haml-coffee-assets](https://github.com/netzpirat/haml_coffee_assets)\n* [ruby-haml-coffe](https://github.com/bfrydl/ruby-haml-coffee)\n* [haml-coffee-rails](https://github.com/voidseeker/haml-coffee-rails)\n\n## Development\n\nYou'll need the latest version of `node.js`, `npm`, `coffee-script` and `jasmine-node` to run everything. Start\nthe CoffeeScript compilation in the project root directory by running:\n\n```bash\n$ cake watch\n```\n\nAnd run the tests by calling:\n\n```bash\n$ jasmine-node\n```\n\nYou can optionally install [Guard](https://github.com/guard/guard) with the [Bundler](http://gembundler.com/):\n\n```bash\n$ bundle install\n```\n\nand run Guard to automatically compile your CoffeeScripts and run the Jasmine specs on file modification:\n\n```bash\n$ bundle exec guard\n```\n\n## Changelog\n\nFeel free to take a look at the [changelog](https://github.com/9elements/haml-coffee/blob/master/CHANGELOG.md).\n\n## Authors\n\n* [Sebastion Deutsch](https://github.com/sebastiandeutsch) ([@sippndipp](http://twitter.com/#!/sippndipp))\n* [Michael Kessler](https://github.com/netzpirat) ([@netzpirat](http://twitter.com/#!/netzpirat))\n* [Jan Varwig](https://github.com/janv) ([@agento](http://twitter.com/#!/agento))\n\n## Contributors\n\nSee all contributors on [the contributor page](https://github.com/9elements/haml-coffee/contributors).\n\n## License\n\n(The MIT License)\n\nCopyright (c) 2011 9elements\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n", + "maintainers": [ + { + "name": "netzpirat", + "email": "michi@netzpiraten.ch" + } + ], + "time": { + "modified": "2011-12-13T10:55:10.084Z", + "created": "2011-11-28T12:45:40.905Z", + "0.3.0": "2011-11-28T12:45:44.190Z", + "0.3.1": "2011-11-28T13:25:42.298Z", + "0.4.0": "2011-12-08T13:33:52.976Z", + "0.5.0": "2011-12-11T14:14:09.416Z", + "0.5.1": "2011-12-11T22:31:14.956Z", + "0.5.2": "2011-12-13T10:55:10.084Z" + }, + "author": { + "name": "Michael Kessler", + "email": "michi@netzpiraten.ch" + }, + "repository": { + "type": "git", + "url": "git://github.com/9elements/haml-coffee.git" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/haml-coffee/0.3.0", + "0.3.1": "http://registry.npmjs.org/haml-coffee/0.3.1", + "0.4.0": "http://registry.npmjs.org/haml-coffee/0.4.0", + "0.5.0": "http://registry.npmjs.org/haml-coffee/0.5.0", + "0.5.1": "http://registry.npmjs.org/haml-coffee/0.5.1", + "0.5.2": "http://registry.npmjs.org/haml-coffee/0.5.2" + }, + "dist": { + "0.3.0": { + "shasum": "95a41345f1dea00f06248bbfb1ab037156df0099", + "tarball": "http://registry.npmjs.org/haml-coffee/-/haml-coffee-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "afac0d126775fe6cffd688a5e4da4d2e23d3f3b3", + "tarball": "http://registry.npmjs.org/haml-coffee/-/haml-coffee-0.3.1.tgz" + }, + "0.4.0": { + "shasum": "49707c0f19096828f45bf51721c0edbad69977a2", + "tarball": "http://registry.npmjs.org/haml-coffee/-/haml-coffee-0.4.0.tgz" + }, + "0.5.0": { + "shasum": "4d9dd9f052c0f5c9e811304c8bc3cdd99e8e6fb8", + "tarball": "http://registry.npmjs.org/haml-coffee/-/haml-coffee-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "50570c0d9cc8fc62408866b40209ae3d8d9bd2cb", + "tarball": "http://registry.npmjs.org/haml-coffee/-/haml-coffee-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "755bcad89c368b0b12bd6eb8075de4fc2fa5dd42", + "tarball": "http://registry.npmjs.org/haml-coffee/-/haml-coffee-0.5.2.tgz" + } + }, + "keywords": [ + "haml", + "coffeescript", + "templating", + "html", + "javascript", + "language", + "compiler" + ], + "url": "http://registry.npmjs.org/haml-coffee/" + }, + "haml-edge": { + "name": "haml-edge", + "description": "Haml ported to server-side Javascript. This is a traditional server-side templating language.", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "aaronblohowiak", + "email": "aaron.blohowiak@gmail.com" + } + ], + "time": { + "modified": "2011-05-09T04:39:47.118Z", + "created": "2011-05-09T03:01:33.325Z", + "0.2.6": "2011-05-09T03:01:33.723Z", + "0.3.0": "2011-05-09T04:39:47.118Z" + }, + "author": { + "name": "Aaron Blohowiak", + "email": "aaron.blohowiak@gmail.com" + }, + "versions": { + "0.2.6": "http://registry.npmjs.org/haml-edge/0.2.6", + "0.3.0": "http://registry.npmjs.org/haml-edge/0.3.0" + }, + "dist": { + "0.2.6": { + "shasum": "47815a5de9d71b42c8f0bda0aab798f04418acec", + "tarball": "http://registry.npmjs.org/haml-edge/-/haml-edge-0.2.6.tgz" + }, + "0.3.0": { + "shasum": "73f51459bbbfda29f500d33913cd7ebf9d6f031f", + "tarball": "http://registry.npmjs.org/haml-edge/-/haml-edge-0.3.0.tgz" + } + }, + "keywords": [ + "haml", + "template" + ], + "url": "http://registry.npmjs.org/haml-edge/" + }, + "hamljs": { + "name": "hamljs", + "description": "Faster / Express compliant Haml implementation", + "dist-tags": { + "latest": "0.5.2" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca", + "url": "http://tjholowaychuk.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/visionmedia/haml.js.git" + }, + "time": { + "modified": "2011-12-08T23:23:00.903Z", + "created": "2011-03-04T16:42:46.184Z", + "0.4.5": "2011-03-04T16:42:46.184Z", + "0.5.0": "2011-03-04T16:42:46.184Z", + "0.5.1": "2011-03-30T17:31:51.080Z", + "0.5.2": "2011-12-08T23:23:00.903Z" + }, + "versions": { + "0.4.5": "http://registry.npmjs.org/hamljs/0.4.5", + "0.5.0": "http://registry.npmjs.org/hamljs/0.5.0", + "0.5.1": "http://registry.npmjs.org/hamljs/0.5.1", + "0.5.2": "http://registry.npmjs.org/hamljs/0.5.2" + }, + "dist": { + "0.4.5": { + "tarball": "http://packages:5984/hamljs/-/hamljs-0.4.5.tgz" + }, + "0.5.0": { + "shasum": "170a0c7ab3dd236ff6ab6fcc0e28ff27fafde583", + "tarball": "http://registry.npmjs.org/hamljs/-/hamljs-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "ce4ac23b23cb2886fa72c898acc96c8ec08a91a3", + "tarball": "http://registry.npmjs.org/hamljs/-/hamljs-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "5dace9b858cdbe1ab27381d85a965d7b16703afa", + "tarball": "http://registry.npmjs.org/hamljs/-/hamljs-0.5.2.tgz" + } + }, + "keywords": [ + "haml", + "template", + "engine", + "view", + "nodejs" + ], + "url": "http://registry.npmjs.org/hamljs/" + }, + "hamljs-coffee": { + "name": "hamljs-coffee", + "description": "Extension that allows for use of coffeescript inside of haml templates", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "hammerdr", + "email": "derek.r.hammer@gmail.com" + } + ], + "time": { + "modified": "2011-03-31T06:55:42.530Z", + "created": "2011-03-31T06:55:41.799Z", + "0.0.1": "2011-03-31T06:55:42.530Z" + }, + "author": { + "name": "Derek Hammer", + "email": "derek.r.hammer@gmail.com", + "url": "http://www.derekhammer.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/hammerdr/hamljs-coffee.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/hamljs-coffee/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "01887f4ba0f84841446a39ca9a5c983bba36c304", + "tarball": "http://registry.npmjs.org/hamljs-coffee/-/hamljs-coffee-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/hamljs-coffee/" + }, + "handlebars": { + "name": "handlebars", + "description": "Extension of the Mustache logicless template language", + "dist-tags": { + "latest": "1.0.2beta" + }, + "maintainers": [ + { + "name": "kpdecker", + "email": "kpdecker@gmail.com" + }, + { + "name": "commondream", + "email": "alan@commondream.net" + } + ], + "time": { + "modified": "2011-09-04T14:50:58.580Z", + "created": "2011-08-22T07:43:35.895Z", + "1.0.2beta": "2011-08-22T07:43:36.484Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/kpdecker/handlebars.js.git" + }, + "versions": { + "1.0.2beta": "http://registry.npmjs.org/handlebars/1.0.2beta" + }, + "dist": { + "1.0.2beta": { + "shasum": "533aa8755d1cd4ac616e48b9f77b9c98d0088a91", + "tarball": "http://registry.npmjs.org/handlebars/-/handlebars-1.0.2beta.tgz" + } + }, + "keywords": [ + "handlebars mustache template html" + ], + "url": "http://registry.npmjs.org/handlebars/" + }, + "handlebars-jst": { + "name": "handlebars-jst", + "description": "Pre-compiled jQuery Templates", + "dist-tags": { + "latest": "0.0.3" + }, + "readme": "# JST for Handlebars\n\nhandlebars-jst: Pre-compiled Handlebars with Node.js\n\n## Install with NPM\nThe best / easiest way to start using handlebars-jst is to install it\nwith npm, which looks something like this: `npm install handlebars-jst`\n\nBe sure to use the `--global` option if you'd like to use the command\nline tool.\n\n## Basic usage\n\nIncant handlebars-jst into your application with a require statement,\nand jquery-tmpl-just will expose 2 functions: `build` and `process`\n\n var tmpl = require('handlebars-jst');\n\n // Builds a template string\n tmpl.build( 'path/to/my/templates', function( output ){\n\n // Creates a file called templates.js\n tmpl.process( output, 'path/to/output/dir' );\n });\n\nBuild creates a string of executable javascript from a directory of\ntemplates. It accepts the location of your templates and a callback\nfunction.\n\nProcess creates a file called `templates.js` in the specified target\ndirectory. It accepts a template string and a the target location.\n\n## CLI usage\n\nhandlebars-jst also comes with a command line tool, which you can use\nlike this:\n\n $ tmpl path/to/templates path/to/save\n\nThis creates the file `templates.js` to the target directory. If no\narguments are passed, the current path will be used instead.\n\n## Using as a Cakefile\n\nSince this is really meant to be used as a build tool, a Cakefile is\nincluded as well, but keep in mind that _coffee-script must be included\nas a dependency in order to use the Cakefile_.\n\nModify the Cakefile's `targetDir` and `templateDir` variables to point\nto you desired build location and the location of your templates,\nrespectively.\n\nRun `cake build` or `cake watch` from the root of your project to\ngenerate the compiled templates. `cake watch` will listen for changes in\nyour templates directory and run the build process on demand.\n\n## JST Output\n\nTo start using the compiled templates, just include `templates.js`. Keep\nin mind that these are just your templates, so you'll also need jQuery\nand jQuery-tmpl in there too.\n\n`templates.js` creates a global object called `window.JST`.\n\nThe `JST` object includes a `templates` object containing all of your\nprecompiled templates:\n\n JST = {\n ,\n ,\n ...\n }\n\nThe helper methods are meant to make using templates as easy as\npossible, so they are functions that take JSON data to be templated as\nthe only argument.\n\nThe functions themselves look like this:\n\n JST. = function( data ){\n return $.tmpl( JST.template., data );\n }\n\nAnd it's final usage would look something like this:\n\n var data = { title: \"foobar\" },\n compiled_template = window.JST.sample_template( my_data );\n\n $('body').html( compiled_template );\n\n\n## Multiple Named Templates from a single file\n\nAdd as many sub-templates as you want to a single JST file by writing a\nc-style comment with the sub-template name.\n\n multiple_templates.JST\n ---\n Nothing to see here\n\n /* foo */\n

{foo}

\n

Check out this other awesome template

\n\nThis file will product 2 templates:\n\n JST = {\n multiple_templates,\n multiple_templates_foo\n }\n\n\n## Contributing\n\nThis is a need-based project, so I only wrote it to account for my\nneeds as of right now.\n\nIf you've got any suggestestions, opinions, optimizations or fixes,\nplease fork and pull request to contribute.\n\nEverything original is MIT, everything else honors whatever license it\nwas written under.\n", + "maintainers": [ + { + "name": "wookiehangover", + "email": "sam@quickleft.com" + } + ], + "time": { + "modified": "2011-11-14T04:24:21.179Z", + "created": "2011-11-07T02:16:13.499Z", + "0.0.1": "2011-11-07T02:16:14.527Z", + "0.0.2": "2011-11-07T22:03:53.659Z", + "0.0.3": "2011-11-14T04:24:21.179Z" + }, + "author": { + "name": "wookiehangover", + "email": "sam@quickleft.com" + }, + "repository": { + "type": "git", + "url": "github.com:wookiehangover/handlebars-jst.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/handlebars-jst/0.0.1", + "0.0.2": "http://registry.npmjs.org/handlebars-jst/0.0.2", + "0.0.3": "http://registry.npmjs.org/handlebars-jst/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "144a78048777736179ca4bfb84d97c0bdfef3b7d", + "tarball": "http://registry.npmjs.org/handlebars-jst/-/handlebars-jst-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "9b85aa19983d7aec2011f3155757545394c37ab9", + "tarball": "http://registry.npmjs.org/handlebars-jst/-/handlebars-jst-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "d8087e967f75601a03c4379d4ccb0961d259e1b8", + "tarball": "http://registry.npmjs.org/handlebars-jst/-/handlebars-jst-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/handlebars-jst/" + }, + "hanging_gardens_registry": { + "name": "hanging_gardens_registry", + "description": "A registry of non official (Hanging Gardens compatible) JS library distributions", + "dist-tags": { + "latest": "2.0.8" + }, + "maintainers": [ + { + "name": "fd", + "email": "simon.menke@gmail.com" + } + ], + "author": { + "name": "Simon Menke", + "email": "simon.menke@gmail.com", + "url": "https://github.com/fd" + }, + "time": { + "modified": "2011-12-02T13:45:12.319Z", + "created": "2011-02-07T12:49:15.775Z", + "1.0.0": "2011-02-07T12:49:15.775Z", + "1.0.1": "2011-02-07T12:49:15.775Z", + "1.0.2": "2011-02-07T12:49:15.775Z", + "1.0.3": "2011-03-02T17:27:19.918Z", + "1.0.4": "2011-03-16T09:56:17.776Z", + "2.0.0": "2011-06-27T08:23:37.235Z", + "2.0.1": "2011-06-28T13:48:13.653Z", + "2.0.2": "2011-08-30T11:41:27.765Z", + "2.0.3": "2011-09-28T12:12:43.854Z", + "2.0.4": "2011-09-28T15:12:16.602Z", + "2.0.5": "2011-09-28T15:15:35.684Z", + "2.0.6": "2011-11-23T16:00:49.429Z", + "2.0.7": "2011-11-28T12:29:31.364Z", + "2.0.8": "2011-12-02T13:45:12.319Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/fd/hanging_gardens_registry.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/hanging_gardens_registry/1.0.0", + "1.0.1": "http://registry.npmjs.org/hanging_gardens_registry/1.0.1", + "1.0.2": "http://registry.npmjs.org/hanging_gardens_registry/1.0.2", + "1.0.3": "http://registry.npmjs.org/hanging_gardens_registry/1.0.3", + "1.0.4": "http://registry.npmjs.org/hanging_gardens_registry/1.0.4", + "2.0.0": "http://registry.npmjs.org/hanging_gardens_registry/2.0.0", + "2.0.1": "http://registry.npmjs.org/hanging_gardens_registry/2.0.1", + "2.0.2": "http://registry.npmjs.org/hanging_gardens_registry/2.0.2", + "2.0.3": "http://registry.npmjs.org/hanging_gardens_registry/2.0.3", + "2.0.4": "http://registry.npmjs.org/hanging_gardens_registry/2.0.4", + "2.0.5": "http://registry.npmjs.org/hanging_gardens_registry/2.0.5", + "2.0.6": "http://registry.npmjs.org/hanging_gardens_registry/2.0.6", + "2.0.7": "http://registry.npmjs.org/hanging_gardens_registry/2.0.7", + "2.0.8": "http://registry.npmjs.org/hanging_gardens_registry/2.0.8" + }, + "dist": { + "1.0.0": { + "shasum": "0808bb08813ffc84f6625c525e37b6804c8176b8", + "tarball": "http://registry.npmjs.org/hanging_gardens_registry/-/hanging_gardens_registry-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "13e0452cdc00e573e2efaea43917d2e5a3d49910", + "tarball": "http://registry.npmjs.org/hanging_gardens_registry/-/hanging_gardens_registry-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "f3796ffcdfd7302266b6ad23e9c6591e5a037a99", + "tarball": "http://registry.npmjs.org/hanging_gardens_registry/-/hanging_gardens_registry-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "1a76aaa69c6d1da0ad68ff670a00db6ad40a7b68", + "tarball": "http://registry.npmjs.org/hanging_gardens_registry/-/hanging_gardens_registry-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "972d4303b4f7c7d516efb4bda6e3f1b5f5ffeab7", + "tarball": "http://registry.npmjs.org/hanging_gardens_registry/-/hanging_gardens_registry-1.0.4.tgz" + }, + "2.0.0": { + "shasum": "1ae98564538276decf856e59adfa17326362537c", + "tarball": "http://registry.npmjs.org/hanging_gardens_registry/-/hanging_gardens_registry-2.0.0.tgz" + }, + "2.0.1": { + "shasum": "f7d9ae1aa21e934a18aba7afba5b1dbbc621ec5c", + "tarball": "http://registry.npmjs.org/hanging_gardens_registry/-/hanging_gardens_registry-2.0.1.tgz" + }, + "2.0.2": { + "shasum": "08bebf49ef8c60a8b4549f27e4729043d22a07e4", + "tarball": "http://registry.npmjs.org/hanging_gardens_registry/-/hanging_gardens_registry-2.0.2.tgz" + }, + "2.0.3": { + "shasum": "86adb357e2b876100c73031a2e7d3410bdb78661", + "tarball": "http://registry.npmjs.org/hanging_gardens_registry/-/hanging_gardens_registry-2.0.3.tgz" + }, + "2.0.4": { + "shasum": "d0105b6864dbe87ddac3f8373446d35e74060785", + "tarball": "http://registry.npmjs.org/hanging_gardens_registry/-/hanging_gardens_registry-2.0.4.tgz" + }, + "2.0.5": { + "shasum": "54fad68f54a3897026fcf2e50ac9509a4f9566d7", + "tarball": "http://registry.npmjs.org/hanging_gardens_registry/-/hanging_gardens_registry-2.0.5.tgz" + }, + "2.0.6": { + "shasum": "b95d67196c92fc3a6d9d7f5e346501c7bfc70a74", + "tarball": "http://registry.npmjs.org/hanging_gardens_registry/-/hanging_gardens_registry-2.0.6.tgz" + }, + "2.0.7": { + "shasum": "b2a48efc2b218c2dbb0dd8503a0878dcfe018f06", + "tarball": "http://registry.npmjs.org/hanging_gardens_registry/-/hanging_gardens_registry-2.0.7.tgz" + }, + "2.0.8": { + "shasum": "1003b41742803280aff0a7ab07fa869ff12ce35f", + "tarball": "http://registry.npmjs.org/hanging_gardens_registry/-/hanging_gardens_registry-2.0.8.tgz" + } + }, + "url": "http://registry.npmjs.org/hanging_gardens_registry/" + }, + "hanging-gardens": { + "name": "hanging-gardens", + "description": "A JavaScript project structure for NoRIA webpages.", + "dist-tags": { + "latest": "2.0.2" + }, + "maintainers": [ + { + "name": "fd", + "email": "simon.menke@gmail.com" + } + ], + "author": { + "name": "Simon Menke" + }, + "repository": { + "type": "git", + "url": "git://github.com/fd/hanging_gardens.js.git" + }, + "time": { + "modified": "2011-06-27T09:44:20.643Z", + "created": "2010-12-21T12:13:44.950Z", + "0.0.1": "2010-12-21T12:13:44.950Z", + "0.0.2": "2010-12-21T12:13:44.950Z", + "0.0.3": "2010-12-21T12:13:44.950Z", + "0.0.4": "2010-12-21T12:13:44.950Z", + "1.0.0": "2010-12-21T12:13:44.950Z", + "1.0.1": "2010-12-21T12:13:44.950Z", + "1.1.0": "2010-12-21T12:13:44.950Z", + "1.1.1": "2010-12-21T16:21:25.337Z", + "1.1.2": "2010-12-22T16:11:00.848Z", + "1.1.3": "2010-12-23T09:31:24.868Z", + "2.0.0": "2011-06-27T08:24:38.468Z", + "2.0.1": "2011-06-27T09:42:12.031Z", + "2.0.2": "2011-06-27T09:44:20.643Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/hanging-gardens/0.0.1", + "0.0.2": "http://registry.npmjs.org/hanging-gardens/0.0.2", + "0.0.3": "http://registry.npmjs.org/hanging-gardens/0.0.3", + "0.0.4": "http://registry.npmjs.org/hanging-gardens/0.0.4", + "1.0.0": "http://registry.npmjs.org/hanging-gardens/1.0.0", + "1.0.1": "http://registry.npmjs.org/hanging-gardens/1.0.1", + "1.1.0": "http://registry.npmjs.org/hanging-gardens/1.1.0", + "1.1.1": "http://registry.npmjs.org/hanging-gardens/1.1.1", + "1.1.2": "http://registry.npmjs.org/hanging-gardens/1.1.2", + "1.1.3": "http://registry.npmjs.org/hanging-gardens/1.1.3", + "2.0.0": "http://registry.npmjs.org/hanging-gardens/2.0.0", + "2.0.1": "http://registry.npmjs.org/hanging-gardens/2.0.1", + "2.0.2": "http://registry.npmjs.org/hanging-gardens/2.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "bb8b1d0983e650f3e80e9a22e61529bd55919102", + "tarball": "http://registry.npmjs.org/hanging-gardens/-/hanging-gardens-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "823686c904952f45b805fbce09fa2061c45528b1", + "tarball": "http://registry.npmjs.org/hanging-gardens/-/hanging-gardens-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "225ee340fe39e77790a47a829a2c3860eee09313", + "tarball": "http://registry.npmjs.org/hanging-gardens/-/hanging-gardens-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "0d11b9b1eeb64a8e33addb74f0187b5811336638", + "tarball": "http://registry.npmjs.org/hanging-gardens/-/hanging-gardens-0.0.4.tgz" + }, + "1.0.0": { + "shasum": "43ef8f7609afff7dffe5f07bd0baae0a2920daae", + "tarball": "http://registry.npmjs.org/hanging-gardens/-/hanging-gardens-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "41f178ad9be54954ace5bfc179b558f89b14a539", + "tarball": "http://registry.npmjs.org/hanging-gardens/-/hanging-gardens-1.0.1.tgz" + }, + "1.1.0": { + "shasum": "7064cdef174d969c58eddd29dbd30820cc4f5af1", + "tarball": "http://registry.npmjs.org/hanging-gardens/-/hanging-gardens-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "34dabde73e1b92dff9228cf08a8e07695a628c82", + "tarball": "http://registry.npmjs.org/hanging-gardens/-/hanging-gardens-1.1.1.tgz" + }, + "1.1.2": { + "shasum": "57edf61e24220866a7883134ea89b1dd5bbd005b", + "tarball": "http://registry.npmjs.org/hanging-gardens/-/hanging-gardens-1.1.2.tgz" + }, + "1.1.3": { + "shasum": "1452bd66397b2044ef1ef99cd603c24af3afe6ba", + "tarball": "http://registry.npmjs.org/hanging-gardens/-/hanging-gardens-1.1.3.tgz" + }, + "2.0.0": { + "shasum": "50b483ad2edd6d2b8f23ceded80cbf10cd241fc5", + "tarball": "http://registry.npmjs.org/hanging-gardens/-/hanging-gardens-2.0.0.tgz" + }, + "2.0.1": { + "shasum": "55301f12654d2b8f7d2021967d6176107413c1ea", + "tarball": "http://registry.npmjs.org/hanging-gardens/-/hanging-gardens-2.0.1.tgz" + }, + "2.0.2": { + "shasum": "21661a1e4d3b182a364bf17fcdb2bffa5d6f736d", + "tarball": "http://registry.npmjs.org/hanging-gardens/-/hanging-gardens-2.0.2.tgz" + } + }, + "keywords": [ + "javascript", + "language", + "compiler", + "packager", + "validator" + ], + "url": "http://registry.npmjs.org/hanging-gardens/" + }, + "hapi": { + "name": "hapi", + "description": "HTTP API Server based on Express with native OAuth 2.0 support", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "hueniverse", + "email": "eran@hueniverse.com" + } + ], + "time": { + "modified": "2011-11-29T17:20:49.211Z", + "created": "2011-08-06T00:41:58.808Z", + "0.0.1": "2011-08-06T00:41:59.373Z", + "0.0.2": "2011-11-20T20:46:31.424Z", + "0.0.3": "2011-11-20T20:51:32.742Z", + "0.0.4": "2011-11-21T00:54:38.933Z", + "0.0.5": "2011-11-23T01:12:59.808Z", + "0.0.6": "2011-11-29T17:20:49.211Z" + }, + "author": { + "name": "Eran Hammer-Lahav", + "email": "eran@hueniverse.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/hueniverse/hapi.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/hapi/0.0.1", + "0.0.2": "http://registry.npmjs.org/hapi/0.0.2", + "0.0.3": "http://registry.npmjs.org/hapi/0.0.3", + "0.0.4": "http://registry.npmjs.org/hapi/0.0.4", + "0.0.5": "http://registry.npmjs.org/hapi/0.0.5", + "0.0.6": "http://registry.npmjs.org/hapi/0.0.6" + }, + "dist": { + "0.0.1": { + "shasum": "fbf22dbb502824659ade93eee3e30cb72df97bee", + "tarball": "http://registry.npmjs.org/hapi/-/hapi-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "582451da95ca4a650755f6d6f04d4e13539423b8", + "tarball": "http://registry.npmjs.org/hapi/-/hapi-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "08d84a883e38a610d49f2c413e57cfe717411127", + "tarball": "http://registry.npmjs.org/hapi/-/hapi-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "3a739045c3ad04b8747155d10ee544820bfab71f", + "tarball": "http://registry.npmjs.org/hapi/-/hapi-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "c461c3ced42ead36d8b69daa9b8d7ad0684a92b6", + "tarball": "http://registry.npmjs.org/hapi/-/hapi-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "3b0fe1b9c1e728dd06347cde57bb7d46193e3012", + "tarball": "http://registry.npmjs.org/hapi/-/hapi-0.0.6.tgz" + } + }, + "keywords": [ + "http", + "mac", + "authentication", + "oauth", + "api" + ], + "url": "http://registry.npmjs.org/hapi/" + }, + "Haraka": { + "name": "Haraka", + "description": "An SMTP Server project.", + "dist-tags": { + "latest": "1.0.2" + }, + "maintainers": [ + { + "name": "msergeant", + "email": "helpme+npm@gmail.com" + } + ], + "time": { + "modified": "2011-11-11T20:15:58.691Z", + "created": "2011-05-11T21:12:54.824Z", + "0.5.0": "2011-05-11T21:12:55.461Z", + "0.5.1": "2011-05-12T21:55:52.721Z", + "0.5.2": "2011-05-20T05:07:28.494Z", + "0.5.3": "2011-05-24T23:57:56.860Z", + "0.5.4": "2011-05-27T23:25:10.627Z", + "0.5.5": "2011-05-30T12:40:29.099Z", + "0.5.6": "2011-06-02T22:59:19.248Z", + "0.5.7": "2011-06-03T12:40:35.444Z", + "0.5.8": "2011-06-04T15:32:48.343Z", + "0.5.9": "2011-06-11T21:27:56.660Z", + "0.5.10": "2011-06-17T21:58:23.400Z", + "0.5.11": "2011-06-18T01:09:59.321Z", + "0.6.0": "2011-06-29T22:50:24.847Z", + "0.6.1": "2011-07-07T19:22:10.450Z", + "0.7.0": "2011-08-04T18:53:57.072Z", + "0.7.1": "2011-08-06T01:42:04.606Z", + "0.7.2": "2011-08-11T03:31:56.814Z", + "0.8.0": "2011-08-18T22:36:18.844Z", + "0.9.0": "2011-09-12T23:06:17.074Z", + "1.0.0": "2011-10-14T18:13:43.470Z", + "1.0.1": "2011-10-25T22:46:02.670Z", + "1.0.2": "2011-11-11T20:15:58.691Z" + }, + "author": { + "name": "Matt Sergeant", + "email": "helpme@gmail.com", + "url": "http://baudehlo.wordpress.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/baudehlo/Haraka.git" + }, + "versions": { + "0.5.0": "http://registry.npmjs.org/Haraka/0.5.0", + "0.5.1": "http://registry.npmjs.org/Haraka/0.5.1", + "0.5.2": "http://registry.npmjs.org/Haraka/0.5.2", + "0.5.3": "http://registry.npmjs.org/Haraka/0.5.3", + "0.5.4": "http://registry.npmjs.org/Haraka/0.5.4", + "0.5.5": "http://registry.npmjs.org/Haraka/0.5.5", + "0.5.6": "http://registry.npmjs.org/Haraka/0.5.6", + "0.5.7": "http://registry.npmjs.org/Haraka/0.5.7", + "0.5.8": "http://registry.npmjs.org/Haraka/0.5.8", + "0.5.9": "http://registry.npmjs.org/Haraka/0.5.9", + "0.5.10": "http://registry.npmjs.org/Haraka/0.5.10", + "0.5.11": "http://registry.npmjs.org/Haraka/0.5.11", + "0.6.0": "http://registry.npmjs.org/Haraka/0.6.0", + "0.6.1": "http://registry.npmjs.org/Haraka/0.6.1", + "0.7.0": "http://registry.npmjs.org/Haraka/0.7.0", + "0.7.1": "http://registry.npmjs.org/Haraka/0.7.1", + "0.7.2": "http://registry.npmjs.org/Haraka/0.7.2", + "0.8.0": "http://registry.npmjs.org/Haraka/0.8.0", + "0.9.0": "http://registry.npmjs.org/Haraka/0.9.0", + "1.0.0": "http://registry.npmjs.org/Haraka/1.0.0", + "1.0.1": "http://registry.npmjs.org/Haraka/1.0.1", + "1.0.2": "http://registry.npmjs.org/Haraka/1.0.2" + }, + "dist": { + "0.5.0": { + "shasum": "35e5431b6c76460e52e2d1b2ac7082b28aab80ce", + "tarball": "http://registry.npmjs.org/Haraka/-/Haraka-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "4215e5ccfd092c1ab0b258de12f397a06cc1d114", + "tarball": "http://registry.npmjs.org/Haraka/-/Haraka-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "279da5ce9efd6cf8eb70af11757f8049a429d9e8", + "tarball": "http://registry.npmjs.org/Haraka/-/Haraka-0.5.2.tgz" + }, + "0.5.3": { + "shasum": "d2828f8967bb6955668b7454cd6491bd7d826139", + "tarball": "http://registry.npmjs.org/Haraka/-/Haraka-0.5.3.tgz" + }, + "0.5.4": { + "shasum": "e4a1873b778b32a6daca1a652790ce68d17ca90d", + "tarball": "http://registry.npmjs.org/Haraka/-/Haraka-0.5.4.tgz" + }, + "0.5.5": { + "shasum": "abb112a82680c57fd1d1645548d5ad1a4e4e442a", + "tarball": "http://registry.npmjs.org/Haraka/-/Haraka-0.5.5.tgz" + }, + "0.5.6": { + "shasum": "eced928218fc23db96fbec98a3a6d52d1c019aa0", + "tarball": "http://registry.npmjs.org/Haraka/-/Haraka-0.5.6.tgz" + }, + "0.5.7": { + "shasum": "998b87ef4121b3e35801f35688435100d7736002", + "tarball": "http://registry.npmjs.org/Haraka/-/Haraka-0.5.7.tgz" + }, + "0.5.8": { + "shasum": "05265a5f91ec142f10da06dcbe8b2aae8b947188", + "tarball": "http://registry.npmjs.org/Haraka/-/Haraka-0.5.8.tgz" + }, + "0.5.9": { + "shasum": "0217f0588cdc515f164d63bd2049d3917cb63697", + "tarball": "http://registry.npmjs.org/Haraka/-/Haraka-0.5.9.tgz" + }, + "0.5.10": { + "shasum": "a316aced1006c62f8691b5a602fa734e47422d64", + "tarball": "http://registry.npmjs.org/Haraka/-/Haraka-0.5.10.tgz" + }, + "0.5.11": { + "shasum": "e584f5c619360f3b73e6e35720f99e5f6cae716e", + "tarball": "http://registry.npmjs.org/Haraka/-/Haraka-0.5.11.tgz" + }, + "0.6.0": { + "shasum": "4fe3d15d9bd812643dc473c66e67614c10b07763", + "tarball": "http://registry.npmjs.org/Haraka/-/Haraka-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "85d1490d3d03ddaf9cafd97a98b5340788b5e63f", + "tarball": "http://registry.npmjs.org/Haraka/-/Haraka-0.6.1.tgz" + }, + "0.7.0": { + "shasum": "73543fefe615c2c5a524ba11d8196bc47f8201e6", + "tarball": "http://registry.npmjs.org/Haraka/-/Haraka-0.7.0.tgz" + }, + "0.7.1": { + "shasum": "45d5b3a2f0d04a959284e561c11908840df53366", + "tarball": "http://registry.npmjs.org/Haraka/-/Haraka-0.7.1.tgz" + }, + "0.7.2": { + "shasum": "9a8a9254bb053fef693d2a571a4b8f9a5b49f23a", + "tarball": "http://registry.npmjs.org/Haraka/-/Haraka-0.7.2.tgz" + }, + "0.8.0": { + "shasum": "3df5d9ba8f0a11ccfe1ebc5bfde243de21d3fc5e", + "tarball": "http://registry.npmjs.org/Haraka/-/Haraka-0.8.0.tgz" + }, + "0.9.0": { + "shasum": "1f46dc1e29b32dd9c708f5cd8e95af9ed723167a", + "tarball": "http://registry.npmjs.org/Haraka/-/Haraka-0.9.0.tgz" + }, + "1.0.0": { + "shasum": "20448065213b198e461ea54f632fa0a858f82ac2", + "tarball": "http://registry.npmjs.org/Haraka/-/Haraka-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "d492ce72bd723c9d0f9ee9f1c364b1ab9bb88274", + "tarball": "http://registry.npmjs.org/Haraka/-/Haraka-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "b5d07c4ce87c08ffa48ec5c174ef276382ad55d3", + "tarball": "http://registry.npmjs.org/Haraka/-/Haraka-1.0.2.tgz" + } + }, + "keywords": [ + "haraka", + "smtp", + "server", + "email", + "cluster" + ], + "url": "http://registry.npmjs.org/Haraka/" + }, + "harlot": { + "name": "harlot", + "description": "Cleans cruft of building new hook.io hooks and servers.", + "dist-tags": { + "latest": "0.0.0" + }, + "readme": "", + "maintainers": [ + { + "name": "qard", + "email": "admin@stephenbelanger.com" + } + ], + "time": { + "modified": "2011-11-18T06:00:37.047Z", + "created": "2011-11-18T06:00:35.575Z", + "0.0.0": "2011-11-18T06:00:37.047Z" + }, + "author": { + "name": "Stephen Belanger", + "email": "admin@stephenbelanger.com", + "url": "stephenbelanger.com" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/harlot/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "2400198e75ced121f403783a1d352e72bc5648fc", + "tarball": "http://registry.npmjs.org/harlot/-/harlot-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/harlot/" + }, + "harmony": { + "name": "harmony", + "description": "File upload parsing middleware for Connect", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "originalmachine", + "email": "nicholas@originalmachine.com" + } + ], + "time": { + "modified": "2011-08-04T14:43:35.145Z", + "created": "2011-08-04T14:43:29.517Z", + "0.0.1": "2011-08-04T14:43:35.145Z" + }, + "author": { + "name": "Nicholas Young", + "email": "nicholas@nicholaswyoung.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/harmony/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "da575f7c10e82ea36e6b6aa04d3d58bfec9fc11c", + "tarball": "http://registry.npmjs.org/harmony/-/harmony-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/harmony/" + }, + "hascan": { + "name": "hascan", + "description": "Build tools for has.js.", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "joehewitt", + "email": "joe@joehewitt.com" + } + ], + "time": { + "modified": "2011-09-14T05:13:15.088Z", + "created": "2011-07-25T22:48:32.576Z", + "0.0.1": "2011-07-25T22:48:33.179Z", + "0.0.2": "2011-07-31T01:31:12.115Z", + "0.0.3": "2011-08-13T21:55:40.718Z", + "0.0.4": "2011-09-04T07:42:31.309Z", + "0.0.5": "2011-09-04T08:51:08.935Z", + "0.0.6": "2011-09-14T05:13:15.088Z" + }, + "author": { + "name": "Joe Hewitt", + "email": "joe@joehewitt.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/joehewitt/hascan.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/hascan/0.0.1", + "0.0.2": "http://registry.npmjs.org/hascan/0.0.2", + "0.0.3": "http://registry.npmjs.org/hascan/0.0.3", + "0.0.4": "http://registry.npmjs.org/hascan/0.0.4", + "0.0.5": "http://registry.npmjs.org/hascan/0.0.5", + "0.0.6": "http://registry.npmjs.org/hascan/0.0.6" + }, + "dist": { + "0.0.1": { + "shasum": "6afe912933661959bbdd8a0fd4c5c3444f53a6f8", + "tarball": "http://registry.npmjs.org/hascan/-/hascan-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "a12c79b454277767934a1403298853fc9bf96dc1", + "tarball": "http://registry.npmjs.org/hascan/-/hascan-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "6325ccefd3b8004acc445543460186431a627a7d", + "tarball": "http://registry.npmjs.org/hascan/-/hascan-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "85cef03ec3679f4431ce3c1f0c44f577a3a92f5d", + "tarball": "http://registry.npmjs.org/hascan/-/hascan-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "d950325c415b3e7e4c1660cbdd1a24599a07e2c8", + "tarball": "http://registry.npmjs.org/hascan/-/hascan-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "efad93debee797466840d43497ddac31c8779d36", + "tarball": "http://registry.npmjs.org/hascan/-/hascan-0.0.6.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/hascan/" + }, + "hash_file": { + "name": "hash_file", + "description": "A simple utility for getting a hash of a file", + "dist-tags": { + "latest": "0.0.7" + }, + "readme": "Hash File: A simple utility for getting the hash of a file\n============================================\n\nThis module is a super simple, super fast (using file stream) utility for getting the SHA1 hash of a file \n\n### Supported Hash Types\n\n* md5\n* sha1\n* sha256\n\n## Installation\n```\n npm install hash_file\n```\n\nor\n\n```\n git clone https://github.com/secoif/hash_file\n```\n\n## Usage \n\n```javascript\nvar hash_file = require('hash_file')\n\nhash_file('./README.md', 'md5', function(err, hash) {\n console.log(hash)\n})\n```\n\n## Running the tests\n\n```shell\nnpm install --dev\nnpm test\n```\n\n## Credits\n\nOriginal Module Author - Gregor Schwab <greg@synaptic-labs.net> ([dotmaster](http://github.com/dotmaster))\n\n## License \n\n(The MIT License)\n\nCopyright (c) 2011 Gregor Schwab <dev@synaptic-labs.net>\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n", + "maintainers": [ + { + "name": "secoif", + "email": "secoif@gmail.com" + } + ], + "time": { + "modified": "2011-11-30T13:57:04.051Z", + "created": "2011-11-28T16:48:32.118Z", + "0.0.5": "2011-11-28T16:48:36.096Z", + "0.0.6": "2011-11-28T16:51:57.011Z", + "0.0.7": "2011-11-30T13:57:04.051Z" + }, + "author": { + "name": "Tim Oxley", + "email": "secoif@gmail.com", + "url": "http://unit.io" + }, + "repository": { + "type": "git", + "url": "git://github.com/secoif/hash_file.git" + }, + "versions": { + "0.0.5": "http://registry.npmjs.org/hash_file/0.0.5", + "0.0.6": "http://registry.npmjs.org/hash_file/0.0.6", + "0.0.7": "http://registry.npmjs.org/hash_file/0.0.7" + }, + "dist": { + "0.0.5": { + "shasum": "9fa2d0d2ad1894f69dfbc78edab1a759540c32fe", + "tarball": "http://registry.npmjs.org/hash_file/-/hash_file-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "b136b8430b3a0bf056c1471aec63d476cad9d48a", + "tarball": "http://registry.npmjs.org/hash_file/-/hash_file-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "7b769f91df64cc041fba8fb667c025c4fd8297d2", + "tarball": "http://registry.npmjs.org/hash_file/-/hash_file-0.0.7.tgz" + } + }, + "keywords": [ + "hash", + "md5", + "sha1", + "crypto", + "file" + ], + "url": "http://registry.npmjs.org/hash_file/" + }, + "hash_ring": { + "name": "hash_ring", + "description": "Consistent hashing C++ Add-on for node.js", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "bnoguchi", + "email": "brian.noguchi@gmail.com" + } + ], + "author": { + "name": "Brian Noguchi", + "email": "brian.noguchi@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/bnoguchi/node-hash-ring.git" + }, + "time": { + "modified": "2011-05-05T16:12:07.677Z", + "created": "2011-04-26T01:09:26.528Z", + "0.1.0": "2011-04-26T01:09:26.528Z", + "0.2.0": "2011-04-26T01:09:26.528Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/hash_ring/0.1.0", + "0.2.0": "http://registry.npmjs.org/hash_ring/0.2.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/hash_ring/-/hash_ring-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "772b5da8478bbfd533d835f19138bb68e4b8468e", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8k-v83.1.8.3-linux-2.6.32-31-generic": { + "shasum": "33361ab78cab2e8b7f482e0ac7e1e957c08b831f", + "tarball": "http://registry.npmjs.org/hash_ring/-/hash_ring-0.2.0-0.4-ares1.7.4-ev4.4-openssl0.9.8k-v83.1.8.3-linux-2.6.32-31-generic.tgz" + } + }, + "tarball": "http://registry.npmjs.org/hash_ring/-/hash_ring-0.2.0.tgz" + } + }, + "keywords": [ + "node", + "hash ring", + "consistent hashing", + "sharding", + "distributed" + ], + "url": "http://registry.npmjs.org/hash_ring/" + }, + "hashbangify": { + "name": "hashbangify", + "description": "Make your node scripts executable!", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "avianflu", + "email": "charlie@charlieistheman.com" + } + ], + "time": { + "modified": "2011-08-23T07:22:20.070Z", + "created": "2011-08-16T00:38:08.043Z", + "0.0.0": "2011-08-16T00:38:10.384Z", + "0.1.0": "2011-08-23T07:22:20.070Z" + }, + "author": { + "name": "AvianFlu", + "email": "charlie@charlieistheman.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/AvianFlu/hashbangify.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/hashbangify/0.0.0", + "0.1.0": "http://registry.npmjs.org/hashbangify/0.1.0" + }, + "dist": { + "0.0.0": { + "shasum": "7852ad0ce1221e271f42a7a7f808ac5c2d52e799", + "tarball": "http://registry.npmjs.org/hashbangify/-/hashbangify-0.0.0.tgz" + }, + "0.1.0": { + "shasum": "70e7e67c570985ffd929d1aa6162c87bef47b9cd", + "tarball": "http://registry.npmjs.org/hashbangify/-/hashbangify-0.1.0.tgz" + } + }, + "keywords": [ + "cli", + "hashbang" + ], + "url": "http://registry.npmjs.org/hashbangify/" + }, + "hashchange": { + "name": "hashchange", + "description": "Cross-browser hashchange event shim", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "amccollum", + "email": "amccollum+npm@gmail.com" + } + ], + "time": { + "modified": "2011-11-05T17:20:07.039Z", + "created": "2011-11-05T17:20:06.598Z", + "0.0.1": "2011-11-05T17:20:07.039Z" + }, + "author": { + "name": "Andrew McCollum", + "email": "amccollum@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/hashchange/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "79d9e800a42a924b670316dcd94f4e671061f0f8", + "tarball": "http://registry.npmjs.org/hashchange/-/hashchange-0.0.1.tgz" + } + }, + "keywords": [ + "ender", + "hashchange", + "history" + ], + "url": "http://registry.npmjs.org/hashchange/" + }, + "hashish": { + "name": "hashish", + "description": "Hash data structure manipulation functions", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-07-23T00:08:00.295Z", + "created": "2011-02-09T13:03:22.418Z", + "0.0.1": "2011-02-09T13:03:22.921Z", + "0.0.2": "2011-02-12T04:37:36.218Z", + "0.0.3": "2011-06-15T06:25:31.485Z", + "0.0.4": "2011-07-23T00:08:00.295Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-hashish.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/hashish/0.0.1", + "0.0.2": "http://registry.npmjs.org/hashish/0.0.2", + "0.0.3": "http://registry.npmjs.org/hashish/0.0.3", + "0.0.4": "http://registry.npmjs.org/hashish/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "088b26565d8f4b5edb8a5dc331bd20d6f563b24c", + "tarball": "http://registry.npmjs.org/hashish/-/hashish-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "5422907a80fcf4702bf0ffdd8f839822a7986886", + "tarball": "http://registry.npmjs.org/hashish/-/hashish-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "8ead8cc73ea6245bc61a2d87c511ccf0a9724e40", + "tarball": "http://registry.npmjs.org/hashish/-/hashish-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "6d60bc6ffaf711b6afd60e426d077988014e6554", + "tarball": "http://registry.npmjs.org/hashish/-/hashish-0.0.4.tgz" + } + }, + "keywords": [ + "hash", + "object", + "convenience", + "manipulation", + "data structure" + ], + "url": "http://registry.npmjs.org/hashish/" + }, + "hashkeys": { + "name": "hashkeys", + "description": "A simple library for retrieving hash keys and values", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "mcandre", + "email": "andrew.pennebaker@gmail.com" + } + ], + "time": { + "modified": "2011-09-14T02:11:42.808Z", + "created": "2011-09-14T02:11:42.740Z", + "0.0.1": "2011-09-14T02:11:42.808Z" + }, + "author": { + "name": "Andrew Pennebaker", + "email": "andrew.pennebaker@gmail.com", + "url": "http://www.yellosoft.us/" + }, + "repository": { + "type": "git", + "url": "git://github.com/mcandre/node-hashkeys.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/hashkeys/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "e1f69717158e9d1c2c704dc81473fadf5e289ffb", + "tarball": "http://registry.npmjs.org/hashkeys/-/hashkeys-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/hashkeys/" + }, + "hashlib": { + "name": "hashlib", + "description": "lib for node which makes hashes", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "brainfucker", + "email": "oleg@emby.ru" + } + ], + "time": { + "modified": "2011-07-25T22:25:54.628Z", + "created": "2011-04-13T18:19:31.554Z", + "1.0.0": "2011-04-13T18:19:32.112Z", + "1.0.1": "2011-07-25T22:25:54.628Z" + }, + "author": { + "name": "Illarionov Oleg" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/hashlib/1.0.0", + "1.0.1": "http://registry.npmjs.org/hashlib/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "e17b82d04d92d58838db0e8a38a246fcb9d4fa3f", + "tarball": "http://registry.npmjs.org/hashlib/-/hashlib-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "68d7c4924c10f2f67dd20ede79316397e772107c", + "tarball": "http://registry.npmjs.org/hashlib/-/hashlib-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/hashlib/" + }, + "hashring": { + "name": "hashring", + "description": "A pure JavaScript hash ring based on libketama", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "V1", + "email": "info@3rd-Eden.com" + } + ], + "time": { + "modified": "2011-06-05T19:10:20.651Z", + "created": "2011-04-20T20:30:02.991Z", + "0.0.1": "2011-04-20T20:30:03.461Z", + "0.0.2": "2011-04-21T20:47:03.562Z", + "0.0.3": "2011-04-22T17:30:38.314Z", + "0.0.4": "2011-05-06T09:11:44.814Z", + "0.0.5": "2011-06-05T19:10:20.651Z" + }, + "author": { + "name": "Arnout Kazemier" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/hashring/0.0.1", + "0.0.2": "http://registry.npmjs.org/hashring/0.0.2", + "0.0.3": "http://registry.npmjs.org/hashring/0.0.3", + "0.0.4": "http://registry.npmjs.org/hashring/0.0.4", + "0.0.5": "http://registry.npmjs.org/hashring/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "aebb218fc27383bc2973fffaa49b1e2c9adf5fd3", + "tarball": "http://registry.npmjs.org/hashring/-/hashring-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "d1d9ca29744c89924dcd321f0533842f010f2024", + "tarball": "http://registry.npmjs.org/hashring/-/hashring-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "1fe686aaebfbeb47d728d37092766af54139d316", + "tarball": "http://registry.npmjs.org/hashring/-/hashring-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "ee75c58369a27c4057eed846a5739339dbf6f9ed", + "tarball": "http://registry.npmjs.org/hashring/-/hashring-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "165587b39fd5234cd306c82de391e710a611c28d", + "tarball": "http://registry.npmjs.org/hashring/-/hashring-0.0.5.tgz" + } + }, + "keywords": [ + "hashring", + "hash ring", + "hashing", + "hash", + "consistent hashing", + "libketama" + ], + "url": "http://registry.npmjs.org/hashring/" + }, + "hashtable": { + "name": "hashtable", + "description": "Hashtables in javascript. Use *anything* as a key, not just strings.", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "benekastah", + "email": "benekastah@gmail.com" + } + ], + "time": { + "modified": "2011-09-23T09:08:17.218Z", + "created": "2011-09-21T01:55:31.720Z", + "0.0.1": "2011-09-21T01:55:32.846Z", + "0.0.2": "2011-09-21T04:01:38.902Z", + "0.0.3": "2011-09-21T06:14:05.157Z", + "0.0.4": "2011-09-23T09:08:17.218Z" + }, + "author": { + "name": "Paul Harper", + "email": "benekastah@gmail.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:benekastah/js-hashtable.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/hashtable/0.0.1", + "0.0.2": "http://registry.npmjs.org/hashtable/0.0.2", + "0.0.3": "http://registry.npmjs.org/hashtable/0.0.3", + "0.0.4": "http://registry.npmjs.org/hashtable/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "f19fab9f1233b892866ff4d75efb8f89c11d4fd8", + "tarball": "http://registry.npmjs.org/hashtable/-/hashtable-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "e9c16ac0c4195046d7a6b46271f8b6c488bfe5a4", + "tarball": "http://registry.npmjs.org/hashtable/-/hashtable-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "98409ed4e88520bdaf7b724e370dbb1805af0c23", + "tarball": "http://registry.npmjs.org/hashtable/-/hashtable-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "065f5f36446ad5917535db289ea52d4e94ae0c38", + "tarball": "http://registry.npmjs.org/hashtable/-/hashtable-0.0.4.tgz" + } + }, + "keywords": [ + "hash", + "hashtable", + "hash table" + ], + "url": "http://registry.npmjs.org/hashtable/" + }, + "hat": { + "name": "hat", + "description": "generate random IDs and avoid collisions", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-08-06T11:53:59.127Z", + "created": "2011-08-06T03:02:15.728Z", + "0.0.0": "2011-08-06T03:02:17.306Z", + "0.0.1": "2011-08-06T04:18:33.326Z", + "0.0.2": "2011-08-06T04:35:37.762Z", + "0.0.3": "2011-08-06T11:53:59.127Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-hat.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/hat/0.0.0", + "0.0.1": "http://registry.npmjs.org/hat/0.0.1", + "0.0.2": "http://registry.npmjs.org/hat/0.0.2", + "0.0.3": "http://registry.npmjs.org/hat/0.0.3" + }, + "dist": { + "0.0.0": { + "shasum": "ab78b054f24084fc7c324157811d3162fbd0f70b", + "tarball": "http://registry.npmjs.org/hat/-/hat-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "55451b82c7c595fabafdb90acd65dde4852f63ba", + "tarball": "http://registry.npmjs.org/hat/-/hat-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "31431b21a1d3d0a9a84cad7295f2e2cc58f9d976", + "tarball": "http://registry.npmjs.org/hat/-/hat-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "bb014a9e64b3788aed8005917413d4ff3d502d8a", + "tarball": "http://registry.npmjs.org/hat/-/hat-0.0.3.tgz" + } + }, + "keywords": [ + "id", + "uid", + "uuid", + "random", + "hat", + "rack", + "unique" + ], + "url": "http://registry.npmjs.org/hat/" + }, + "hax": { + "name": "hax", + "description": "lolwut", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "ecto", + "email": "diffference@gmail.com" + } + ], + "time": { + "modified": "2011-10-21T18:56:48.343Z", + "created": "2011-10-21T03:29:57.612Z", + "0.0.0": "2011-10-21T03:29:57.960Z", + "0.0.1": "2011-10-21T03:32:24.704Z", + "0.1.0": "2011-10-21T18:56:48.343Z" + }, + "author": { + "name": "Cam Pedersen", + "email": "diffference@gmail.com", + "url": "http://campedersen.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/ecto/hax.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/hax/0.0.0", + "0.0.1": "http://registry.npmjs.org/hax/0.0.1", + "0.1.0": "http://registry.npmjs.org/hax/0.1.0" + }, + "dist": { + "0.0.0": { + "shasum": "00e7b4cbe82a9e072e136c092403883dfeb5e449", + "tarball": "http://registry.npmjs.org/hax/-/hax-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "eb5e1aa5c6bdb6df6f2ab024cec5e74aa6c7241d", + "tarball": "http://registry.npmjs.org/hax/-/hax-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "03422b7c400b4346ea55faa360b0c10c3f227de5", + "tarball": "http://registry.npmjs.org/hax/-/hax-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/hax/" + }, + "hbase": { + "name": "hbase", + "description": "HBase client using the REST connector", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "david", + "email": "david@adaltas.com" + } + ], + "author": { + "name": "David Worms", + "email": "david@adaltas.com" + }, + "time": { + "modified": "2011-12-01T18:15:21.685Z", + "created": "2011-03-18T14:06:47.174Z", + "0.0.1": "2011-03-18T14:06:47.174Z", + "0.0.2": "2011-03-18T14:06:47.174Z", + "0.0.3": "2011-03-18T14:06:47.174Z", + "0.0.4": "2011-03-18T14:06:47.174Z", + "0.0.5": "2011-03-18T14:06:47.174Z", + "0.0.7": "2011-03-18T14:06:47.174Z", + "0.0.8": "2011-03-18T14:06:47.174Z", + "0.0.9": "2011-03-19T17:20:43.209Z", + "0.1.0": "2011-12-01T18:15:21.685Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/hbase/0.0.1", + "0.0.2": "http://registry.npmjs.org/hbase/0.0.2", + "0.0.3": "http://registry.npmjs.org/hbase/0.0.3", + "0.0.4": "http://registry.npmjs.org/hbase/0.0.4", + "0.0.5": "http://registry.npmjs.org/hbase/0.0.5", + "0.0.7": "http://registry.npmjs.org/hbase/0.0.7", + "0.0.8": "http://registry.npmjs.org/hbase/0.0.8", + "0.0.9": "http://registry.npmjs.org/hbase/0.0.9", + "0.1.0": "http://registry.npmjs.org/hbase/0.1.0" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/hbase/-/hbase-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/hbase/-/hbase-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/hbase/-/hbase-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://packages:5984/hbase/-/hbase-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://packages:5984/hbase/-/hbase-0.0.5.tgz" + }, + "0.0.7": { + "tarball": "http://registry.npmjs.org/hbase/-/hbase-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "a24797d80bde073506503010600f5bd53af6012e", + "tarball": "http://registry.npmjs.org/hbase/-/hbase-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "54028d8a093bbf0f5c495add36b216352b3df515", + "tarball": "http://registry.npmjs.org/hbase/-/hbase-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "06e23ec256841a89e36a32316dc4408a5d8935e9", + "tarball": "http://registry.npmjs.org/hbase/-/hbase-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/hbase/" + }, + "hbase-thrift": { + "name": "hbase-thrift", + "description": "Hbase Thrift Client", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "andykent", + "email": "andy.kent@me.com" + } + ], + "time": { + "modified": "2011-08-25T14:41:24.965Z", + "created": "2011-08-25T14:25:06.345Z", + "0.0.1": "2011-08-25T14:25:06.905Z", + "0.0.2": "2011-08-25T14:27:15.117Z", + "0.0.3": "2011-08-25T14:41:24.965Z" + }, + "author": { + "name": "Andy Kent", + "email": "andy@forward.co.uk" + }, + "repository": { + "type": "git", + "url": "git://github.com/forward/node-hbase-thrift.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/hbase-thrift/0.0.1", + "0.0.2": "http://registry.npmjs.org/hbase-thrift/0.0.2", + "0.0.3": "http://registry.npmjs.org/hbase-thrift/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "40e675828dec93b8afce5bc46eee991edd656a8d", + "tarball": "http://registry.npmjs.org/hbase-thrift/-/hbase-thrift-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "9a215c16eec2652758fb45638998f05de18ff37e", + "tarball": "http://registry.npmjs.org/hbase-thrift/-/hbase-thrift-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "39bc8237ed19a0a4122c7093222e4547586ae1af", + "tarball": "http://registry.npmjs.org/hbase-thrift/-/hbase-thrift-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/hbase-thrift/" + }, + "hbs": { + "name": "hbs", + "description": "Express.js template engine plugin for Handlebars", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "donpark", + "email": "donpark@docuverse.com" + } + ], + "author": { + "name": "Don Park", + "email": "donpark@docuverse.com", + "url": "http://blog.docuverse.com" + }, + "time": { + "modified": "2011-11-14T23:43:10.818Z", + "created": "2011-01-20T00:16:20.795Z", + "0.0.2-1": "2011-01-20T00:16:20.795Z", + "0.0.2-2": "2011-01-20T00:16:20.795Z", + "0.0.2-3": "2011-01-20T00:16:20.795Z", + "0.0.3": "2011-01-20T00:16:20.795Z", + "0.0.3-1": "2011-01-20T00:16:20.795Z", + "0.0.3-2": "2011-01-20T00:16:20.795Z", + "0.0.3-3": "2011-01-20T00:16:20.795Z", + "0.0.3-4": "2011-01-20T00:16:20.795Z", + "0.0.4": "2011-01-20T00:16:20.795Z", + "0.0.5": "2011-03-15T23:18:25.816Z", + "0.0.6": "2011-03-18T00:32:37.609Z", + "0.0.7": "2011-03-31T13:46:14.402Z", + "1.0.0": "2011-09-05T22:54:51.753Z", + "1.0.1": "2011-09-13T21:09:35.821Z" + }, + "users": { + "dresende": true + }, + "versions": { + "0.0.2-1": "http://registry.npmjs.org/hbs/0.0.2-1", + "0.0.2-2": "http://registry.npmjs.org/hbs/0.0.2-2", + "0.0.2-3": "http://registry.npmjs.org/hbs/0.0.2-3", + "0.0.3": "http://registry.npmjs.org/hbs/0.0.3", + "0.0.3-1": "http://registry.npmjs.org/hbs/0.0.3-1", + "0.0.3-2": "http://registry.npmjs.org/hbs/0.0.3-2", + "0.0.3-3": "http://registry.npmjs.org/hbs/0.0.3-3", + "0.0.3-4": "http://registry.npmjs.org/hbs/0.0.3-4", + "0.0.4": "http://registry.npmjs.org/hbs/0.0.4", + "0.0.5": "http://registry.npmjs.org/hbs/0.0.5", + "0.0.6": "http://registry.npmjs.org/hbs/0.0.6", + "0.0.7": "http://registry.npmjs.org/hbs/0.0.7", + "1.0.0": "http://registry.npmjs.org/hbs/1.0.0", + "1.0.1": "http://registry.npmjs.org/hbs/1.0.1" + }, + "dist": { + "0.0.2-1": { + "shasum": "68a9f2e7b2133e195b67904e20a622ec62c1e2c5", + "tarball": "http://registry.npmjs.org/hbs/-/hbs-0.0.2-1.tgz" + }, + "0.0.2-2": { + "shasum": "37f1113a3d07abbbf7d0e6d31b8aee789c372c4c", + "tarball": "http://registry.npmjs.org/hbs/-/hbs-0.0.2-2.tgz" + }, + "0.0.2-3": { + "shasum": "172b8e8704a18cb6012d3b962242d1f3364a7051", + "tarball": "http://registry.npmjs.org/hbs/-/hbs-0.0.2-3.tgz" + }, + "0.0.3": { + "shasum": "d36f41e7b4d4d818af401cb591658400b4d273d3", + "tarball": "http://registry.npmjs.org/hbs/-/hbs-0.0.3.tgz" + }, + "0.0.3-1": { + "shasum": "e1eef42c6dde3c3a67b529e34b9f503862308472", + "tarball": "http://registry.npmjs.org/hbs/-/hbs-0.0.3-1.tgz" + }, + "0.0.3-2": { + "shasum": "f585ec813eca05e1f76bb36c9f485258282ef654", + "tarball": "http://registry.npmjs.org/hbs/-/hbs-0.0.3-2.tgz" + }, + "0.0.3-3": { + "shasum": "f83ab194740f945cd5d78e0fcce04233fbb1d83d", + "tarball": "http://registry.npmjs.org/hbs/-/hbs-0.0.3-3.tgz" + }, + "0.0.3-4": { + "shasum": "26eff55846fa2934836d38757a80b07c59f2411a", + "tarball": "http://registry.npmjs.org/hbs/-/hbs-0.0.3-4.tgz" + }, + "0.0.4": { + "shasum": "2b0a48117cc1b2986e25ed53cabb3462d0eb765f", + "tarball": "http://registry.npmjs.org/hbs/-/hbs-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "cd700adc9a3819353259169baef2659c7a8657bd", + "tarball": "http://registry.npmjs.org/hbs/-/hbs-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "ba154d4323434ffaeeac177e92ccc4ae7cd042e8", + "tarball": "http://registry.npmjs.org/hbs/-/hbs-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "8360a011e547e10ebc8eb80911691b43a3f72e54", + "tarball": "http://registry.npmjs.org/hbs/-/hbs-0.0.7.tgz" + }, + "1.0.0": { + "shasum": "b34d4542a01abc47d0125e8e640fb01453dc6fa9", + "tarball": "http://registry.npmjs.org/hbs/-/hbs-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "6ae24c9a00ad2e7a3880477a8ab9b9181be2facc", + "tarball": "http://registry.npmjs.org/hbs/-/hbs-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/hbs/" + }, + "hc-server": { + "name": "hc-server", + "description": "Server application for Home Control client application (for webOS).", + "dist-tags": { + "latest": "0.7.7" + }, + "readme": null, + "maintainers": [ + { + "name": "sconix", + "email": "scorpio.iix@gmail.com" + } + ], + "time": { + "modified": "2011-12-13T23:16:24.357Z", + "created": "2011-11-28T17:29:39.928Z", + "0.7.1": "2011-11-28T17:29:42.173Z", + "0.7.2": "2011-11-30T22:48:05.069Z", + "0.7.3": "2011-12-01T03:39:30.122Z", + "0.7.4": "2011-12-01T14:26:20.843Z", + "0.7.5": "2011-12-01T23:36:46.022Z", + "0.7.6": "2011-12-13T16:30:20.197Z", + "0.7.7": "2011-12-13T23:16:24.357Z" + }, + "author": { + "name": "Janne Julkunen", + "email": "scorpio.iix@gmail.com" + }, + "versions": { + "0.7.1": "http://registry.npmjs.org/hc-server/0.7.1", + "0.7.2": "http://registry.npmjs.org/hc-server/0.7.2", + "0.7.3": "http://registry.npmjs.org/hc-server/0.7.3", + "0.7.4": "http://registry.npmjs.org/hc-server/0.7.4", + "0.7.5": "http://registry.npmjs.org/hc-server/0.7.5", + "0.7.6": "http://registry.npmjs.org/hc-server/0.7.6", + "0.7.7": "http://registry.npmjs.org/hc-server/0.7.7" + }, + "dist": { + "0.7.1": { + "shasum": "0493b19507cb0af9e6d89b102631b4560dc1b9dd", + "tarball": "http://registry.npmjs.org/hc-server/-/hc-server-0.7.1.tgz" + }, + "0.7.2": { + "shasum": "d8cf9ee18f50631554bbc3e5f6f4b2583972df4c", + "tarball": "http://registry.npmjs.org/hc-server/-/hc-server-0.7.2.tgz" + }, + "0.7.3": { + "shasum": "5a826545f43942415bc082537792b7331294510b", + "tarball": "http://registry.npmjs.org/hc-server/-/hc-server-0.7.3.tgz" + }, + "0.7.4": { + "shasum": "6b20b4327c609215546308791b346be31f205e13", + "tarball": "http://registry.npmjs.org/hc-server/-/hc-server-0.7.4.tgz" + }, + "0.7.5": { + "shasum": "ec81133875b23d0c7b511a02d062b55fd3c483aa", + "tarball": "http://registry.npmjs.org/hc-server/-/hc-server-0.7.5.tgz" + }, + "0.7.6": { + "shasum": "c4922bc71cf79123d1c88b84f180ee6477038122", + "tarball": "http://registry.npmjs.org/hc-server/-/hc-server-0.7.6.tgz" + }, + "0.7.7": { + "shasum": "9d1bd2dc1960c2d63a96eee6a936f0854c8b96c7", + "tarball": "http://registry.npmjs.org/hc-server/-/hc-server-0.7.7.tgz" + } + }, + "keywords": [ + "Home Control", + "webOS" + ], + "url": "http://registry.npmjs.org/hc-server/" + }, + "header-stack": { + "name": "header-stack", + "description": "A `StreamStack` subclass that parses headers until an emtpy line is found.", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "TooTallNate", + "email": "nathan@tootallnate.net" + } + ], + "time": { + "modified": "2011-08-10T02:40:23.447Z", + "created": "2011-03-25T00:16:13.004Z", + "0.0.1": "2011-03-25T00:16:13.491Z", + "0.0.2": "2011-03-25T01:49:18.687Z", + "0.1.0": "2011-04-05T19:42:59.551Z", + "0.1.1": "2011-04-05T20:08:49.365Z", + "0.1.2": "2011-06-24T19:31:37.062Z", + "0.1.3": "2011-08-10T02:40:23.448Z" + }, + "author": { + "name": "Nathan Rajlich", + "email": "nathan@tootallnate.net", + "url": "http://tootallnate.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/TooTallNate/node-header-stack.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/header-stack/0.0.1", + "0.0.2": "http://registry.npmjs.org/header-stack/0.0.2", + "0.1.0": "http://registry.npmjs.org/header-stack/0.1.0", + "0.1.1": "http://registry.npmjs.org/header-stack/0.1.1", + "0.1.2": "http://registry.npmjs.org/header-stack/0.1.2", + "0.1.3": "http://registry.npmjs.org/header-stack/0.1.3" + }, + "dist": { + "0.0.1": { + "shasum": "1564948de92f387fc43efb8a9e37490b0e696f7d", + "tarball": "http://registry.npmjs.org/header-stack/-/header-stack-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "460d72b16d38652ce451e232536971b31e84d60f", + "tarball": "http://registry.npmjs.org/header-stack/-/header-stack-0.0.2.tgz" + }, + "0.1.0": { + "shasum": "9d0eb55426ad64df33ccdde6d0f8fdd187461af5", + "tarball": "http://registry.npmjs.org/header-stack/-/header-stack-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "d2a86a37d370e18ce1d103668d36f455912f98d0", + "tarball": "http://registry.npmjs.org/header-stack/-/header-stack-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "abedfbd1514adfd1fb21c2c4de3ffb14ad51c937", + "tarball": "http://registry.npmjs.org/header-stack/-/header-stack-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "ac7cf463ebe2dfc17ad3b6605775ce0544159090", + "tarball": "http://registry.npmjs.org/header-stack/-/header-stack-0.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/header-stack/" + }, + "headers": { + "name": "headers", + "dist-tags": { + "latest": "0.9.6" + }, + "maintainers": [ + { + "name": "s3u", + "email": "subbu@subbu.org" + } + ], + "author": { + "name": "Subbu Allamaraju", + "email": "subbu@subbu.org", + "url": "http://www.subbu.org" + }, + "time": { + "modified": "2011-10-08T18:22:48.358Z", + "created": "2011-07-17T16:23:21.032Z", + "0.9.0": "2011-07-17T16:23:21.032Z", + "0.9.1": "2011-07-17T16:23:21.032Z", + "0.9.2": "2011-07-17T16:23:21.032Z", + "0.9.3": "2011-07-17T16:23:21.032Z", + "0.9.4": "2011-08-20T19:11:22.756Z", + "0.9.5": "2011-08-20T22:01:33.702Z", + "0.9.6": "2011-10-08T18:22:48.358Z" + }, + "versions": { + "0.9.0": "http://registry.npmjs.org/headers/0.9.0", + "0.9.1": "http://registry.npmjs.org/headers/0.9.1", + "0.9.2": "http://registry.npmjs.org/headers/0.9.2", + "0.9.3": "http://registry.npmjs.org/headers/0.9.3", + "0.9.4": "http://registry.npmjs.org/headers/0.9.4", + "0.9.5": "http://registry.npmjs.org/headers/0.9.5", + "0.9.6": "http://registry.npmjs.org/headers/0.9.6" + }, + "dist": { + "0.9.0": { + "tarball": "http://registry.npmjs.org/headers/-/headers-0.9.0.tgz" + }, + "0.9.1": { + "tarball": "http://registry.npmjs.org/headers/-/headers-0.9.1.tgz" + }, + "0.9.2": { + "tarball": "http://registry.npmjs.org/headers/-/headers-0.9.2.tgz" + }, + "0.9.3": { + "shasum": "57ad94d1fdc3035634eab312c6d5a8d2da06c771", + "tarball": "http://registry.npmjs.org/headers/-/headers-0.9.3.tgz" + }, + "0.9.4": { + "shasum": "08bbe89823c2636c55c28c3a9396e1db2874c2f6", + "tarball": "http://registry.npmjs.org/headers/-/headers-0.9.4.tgz" + }, + "0.9.5": { + "shasum": "5f9e2ae3ae836d5b916f86dfcb54ba27b5f2287a", + "tarball": "http://registry.npmjs.org/headers/-/headers-0.9.5.tgz" + }, + "0.9.6": { + "shasum": "c4db620346d23a58068388660e73f8fa069cdf1e", + "tarball": "http://registry.npmjs.org/headers/-/headers-0.9.6.tgz" + } + }, + "url": "http://registry.npmjs.org/headers/" + }, + "healthety": { + "name": "healthety", + "description": "Realtime monitoring framework.", + "dist-tags": { + "latest": "0.0.27" + }, + "maintainers": [ + { + "name": "i0rek", + "email": "hans.hasselberg@googlemail.com" + }, + { + "name": "martinjagusch", + "email": "m@martinjagusch.com" + } + ], + "time": { + "modified": "2011-11-14T09:56:07.898Z", + "created": "2011-04-21T10:41:00.515Z", + "0.0.1": "2011-04-21T10:41:00.960Z", + "0.0.2": "2011-04-21T12:44:31.955Z", + "0.0.3": "2011-04-26T10:22:09.756Z", + "0.0.4": "2011-04-27T08:32:18.426Z", + "0.0.5": "2011-04-28T08:21:00.205Z", + "0.0.6": "2011-04-28T11:07:00.903Z", + "0.0.7": "2011-04-28T11:46:31.237Z", + "0.0.8": "2011-04-28T12:33:03.818Z", + "0.0.9": "2011-04-28T12:35:58.759Z", + "0.0.10": "2011-04-29T06:14:21.820Z", + "0.0.11": "2011-04-29T06:38:39.498Z", + "0.0.12": "2011-04-29T07:03:19.899Z", + "0.0.13": "2011-05-02T16:12:15.784Z", + "0.0.14": "2011-05-03T07:06:03.924Z", + "0.0.15": "2011-05-03T07:48:04.136Z", + "0.0.16": "2011-05-03T08:21:01.383Z", + "0.0.17": "2011-05-03T12:20:12.174Z", + "0.0.18": "2011-05-04T05:55:39.484Z", + "0.0.19": "2011-05-04T06:04:39.824Z", + "0.0.20": "2011-05-05T12:40:17.163Z", + "0.0.21": "2011-05-05T16:24:23.431Z", + "0.0.22": "2011-05-06T12:05:50.375Z", + "0.0.23": "2011-05-06T12:24:02.667Z", + "0.0.24": "2011-05-11T07:49:13.698Z", + "0.0.25": "2011-05-16T09:34:50.981Z", + "0.0.26": "2011-11-14T09:40:43.404Z", + "0.0.27": "2011-11-14T09:56:07.898Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/healthety/healthety.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/healthety/0.0.1", + "0.0.2": "http://registry.npmjs.org/healthety/0.0.2", + "0.0.3": "http://registry.npmjs.org/healthety/0.0.3", + "0.0.4": "http://registry.npmjs.org/healthety/0.0.4", + "0.0.5": "http://registry.npmjs.org/healthety/0.0.5", + "0.0.6": "http://registry.npmjs.org/healthety/0.0.6", + "0.0.7": "http://registry.npmjs.org/healthety/0.0.7", + "0.0.8": "http://registry.npmjs.org/healthety/0.0.8", + "0.0.9": "http://registry.npmjs.org/healthety/0.0.9", + "0.0.10": "http://registry.npmjs.org/healthety/0.0.10", + "0.0.11": "http://registry.npmjs.org/healthety/0.0.11", + "0.0.12": "http://registry.npmjs.org/healthety/0.0.12", + "0.0.13": "http://registry.npmjs.org/healthety/0.0.13", + "0.0.14": "http://registry.npmjs.org/healthety/0.0.14", + "0.0.15": "http://registry.npmjs.org/healthety/0.0.15", + "0.0.16": "http://registry.npmjs.org/healthety/0.0.16", + "0.0.17": "http://registry.npmjs.org/healthety/0.0.17", + "0.0.18": "http://registry.npmjs.org/healthety/0.0.18", + "0.0.19": "http://registry.npmjs.org/healthety/0.0.19", + "0.0.20": "http://registry.npmjs.org/healthety/0.0.20", + "0.0.21": "http://registry.npmjs.org/healthety/0.0.21", + "0.0.22": "http://registry.npmjs.org/healthety/0.0.22", + "0.0.23": "http://registry.npmjs.org/healthety/0.0.23", + "0.0.24": "http://registry.npmjs.org/healthety/0.0.24", + "0.0.25": "http://registry.npmjs.org/healthety/0.0.25", + "0.0.26": "http://registry.npmjs.org/healthety/0.0.26", + "0.0.27": "http://registry.npmjs.org/healthety/0.0.27" + }, + "dist": { + "0.0.1": { + "shasum": "7b6705f386a0d6b8aec47184ca16b3aa7e7c3a56", + "tarball": "http://registry.npmjs.org/healthety/-/healthety-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "13a68125a132c6ec22763db198cdb4a155e54396", + "tarball": "http://registry.npmjs.org/healthety/-/healthety-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "06b601d4cd37c3057171160972b08880a7c8d38b", + "tarball": "http://registry.npmjs.org/healthety/-/healthety-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "f319f4105965390c816b974219f0b92dfce437e0", + "tarball": "http://registry.npmjs.org/healthety/-/healthety-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "45352cfcdf44c405c157bcd63a2e14d149030b73", + "tarball": "http://registry.npmjs.org/healthety/-/healthety-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "84c4fe5a6a19434dd924b8a4494ef7eafc491439", + "tarball": "http://registry.npmjs.org/healthety/-/healthety-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "c041ad0b028b56f53a12c9ee7e9ba9beea3ec3e3", + "tarball": "http://registry.npmjs.org/healthety/-/healthety-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "6abfbc53714eff952d692b5978f7662eb8a41095", + "tarball": "http://registry.npmjs.org/healthety/-/healthety-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "3f63dcf2de0b0bd89ae077122a05b5049d715a97", + "tarball": "http://registry.npmjs.org/healthety/-/healthety-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "b040f4436cbe19ed286622ce47d079ce6bce0b32", + "tarball": "http://registry.npmjs.org/healthety/-/healthety-0.0.10.tgz" + }, + "0.0.11": { + "shasum": "d5ca9a4fc37f73ee986d729542bae9203909fb80", + "tarball": "http://registry.npmjs.org/healthety/-/healthety-0.0.11.tgz" + }, + "0.0.12": { + "shasum": "ca97baddd26f7ce5a4477b6b39aac89215d0d60e", + "tarball": "http://registry.npmjs.org/healthety/-/healthety-0.0.12.tgz" + }, + "0.0.13": { + "shasum": "bcecb3808896341d2702bc516a514da91350c4ae", + "tarball": "http://registry.npmjs.org/healthety/-/healthety-0.0.13.tgz" + }, + "0.0.14": { + "shasum": "4d067bdf240b264ef0e0ed7a47199a5fff6204c5", + "tarball": "http://registry.npmjs.org/healthety/-/healthety-0.0.14.tgz" + }, + "0.0.15": { + "shasum": "44fc0616113027fc4363c304d8155aa632c8abbb", + "tarball": "http://registry.npmjs.org/healthety/-/healthety-0.0.15.tgz" + }, + "0.0.16": { + "shasum": "cdbb171879809c75a00532f5fcf7a45c8b6c97c6", + "tarball": "http://registry.npmjs.org/healthety/-/healthety-0.0.16.tgz" + }, + "0.0.17": { + "shasum": "b24c1e83004d5050b487d795dbfefcf1b69f9ad4", + "tarball": "http://registry.npmjs.org/healthety/-/healthety-0.0.17.tgz" + }, + "0.0.18": { + "shasum": "ca55dc338c7489dabeeacc4f2ef5c15baf9a34fd", + "tarball": "http://registry.npmjs.org/healthety/-/healthety-0.0.18.tgz" + }, + "0.0.19": { + "shasum": "b561561af1374f07add68e01dcc54d874be5f158", + "tarball": "http://registry.npmjs.org/healthety/-/healthety-0.0.19.tgz" + }, + "0.0.20": { + "shasum": "877c27adeccaac4296d154c6db063be3e0e69645", + "tarball": "http://registry.npmjs.org/healthety/-/healthety-0.0.20.tgz" + }, + "0.0.21": { + "shasum": "169c748c7978481c987accee96c3e0d8ba99fb28", + "tarball": "http://registry.npmjs.org/healthety/-/healthety-0.0.21.tgz" + }, + "0.0.22": { + "shasum": "60209120ef2091838ed6882ce6dba01cc827e214", + "tarball": "http://registry.npmjs.org/healthety/-/healthety-0.0.22.tgz" + }, + "0.0.23": { + "shasum": "41194e186b58f5002a65b19e2df2766a2af0acda", + "tarball": "http://registry.npmjs.org/healthety/-/healthety-0.0.23.tgz" + }, + "0.0.24": { + "shasum": "40fe17c0c6996869c4ff03197cf0aa5efd576355", + "tarball": "http://registry.npmjs.org/healthety/-/healthety-0.0.24.tgz" + }, + "0.0.25": { + "shasum": "cb380cff1e4e3aa0d936eb4c5e12e35fb2e8cd72", + "tarball": "http://registry.npmjs.org/healthety/-/healthety-0.0.25.tgz" + }, + "0.0.26": { + "shasum": "26bc33fe7adb7c402d19ac7e4302ff0b5a6acead", + "tarball": "http://registry.npmjs.org/healthety/-/healthety-0.0.26.tgz" + }, + "0.0.27": { + "shasum": "c95a2915fc9c9b2592576f89c0e0e24937f9e2e2", + "tarball": "http://registry.npmjs.org/healthety/-/healthety-0.0.27.tgz" + } + }, + "url": "http://registry.npmjs.org/healthety/" + }, + "heatmap": { + "name": "heatmap", + "description": "canvas heat maps for node and the browser", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-08-27T11:19:31.331Z", + "created": "2011-07-29T15:08:50.790Z", + "0.0.0": "2011-07-29T15:08:51.527Z", + "0.0.1": "2011-07-29T17:35:49.212Z", + "0.0.2": "2011-08-27T11:01:23.600Z", + "0.0.3": "2011-08-27T11:19:31.331Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-heatmap.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/heatmap/0.0.0", + "0.0.1": "http://registry.npmjs.org/heatmap/0.0.1", + "0.0.2": "http://registry.npmjs.org/heatmap/0.0.2", + "0.0.3": "http://registry.npmjs.org/heatmap/0.0.3" + }, + "dist": { + "0.0.0": { + "shasum": "019b86cdce007c586c5d19e6a108d17017b25c1b", + "tarball": "http://registry.npmjs.org/heatmap/-/heatmap-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "f9da8fadc59a13380e78184aa5bfee0abfd1f1a5", + "tarball": "http://registry.npmjs.org/heatmap/-/heatmap-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "3be81cf62c8904f7227b36116b245693d0b52569", + "tarball": "http://registry.npmjs.org/heatmap/-/heatmap-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "9d65cd4b062277e65f4c979c92e634b70033f9bc", + "tarball": "http://registry.npmjs.org/heatmap/-/heatmap-0.0.3.tgz" + } + }, + "keywords": [ + "heatmap", + "canvas", + "browser" + ], + "url": "http://registry.npmjs.org/heatmap/" + }, + "heavy-flow": { + "name": "heavy-flow", + "description": "An async flow-control library", + "dist-tags": { + "latest": "0.2.3" + }, + "maintainers": [ + { + "name": "reissbaker", + "email": "matthew.reiss.baker@gmail.com" + } + ], + "time": { + "modified": "2011-12-08T23:31:42.956Z", + "created": "2011-09-18T05:20:39.675Z", + "0.1.0": "2011-09-18T05:20:40.242Z", + "0.1.1": "2011-09-18T05:23:22.795Z", + "0.2.1": "2011-10-11T00:19:40.828Z", + "0.2.2": "2011-10-28T06:08:03.140Z", + "0.2.3": "2011-12-08T23:31:42.956Z" + }, + "author": { + "name": "Matt Baker" + }, + "repository": { + "type": "git", + "url": "git://github.com/reissbaker/heavy-flow.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/heavy-flow/0.1.0", + "0.1.1": "http://registry.npmjs.org/heavy-flow/0.1.1", + "0.2.1": "http://registry.npmjs.org/heavy-flow/0.2.1", + "0.2.2": "http://registry.npmjs.org/heavy-flow/0.2.2", + "0.2.3": "http://registry.npmjs.org/heavy-flow/0.2.3" + }, + "dist": { + "0.1.0": { + "shasum": "fcd7d1fa8670b8a3a28b5c9751dc0b85199b5fd0", + "tarball": "http://registry.npmjs.org/heavy-flow/-/heavy-flow-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "3e8050db6fdcc23ef56502fdbdffb60c9c195022", + "tarball": "http://registry.npmjs.org/heavy-flow/-/heavy-flow-0.1.1.tgz" + }, + "0.2.1": { + "shasum": "55391b453fc836481cb130de96b59981edb2bb78", + "tarball": "http://registry.npmjs.org/heavy-flow/-/heavy-flow-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "9a1595cdc59e7889dc25a1993ccba7489fec6249", + "tarball": "http://registry.npmjs.org/heavy-flow/-/heavy-flow-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "1241795bf2c7c1f75c35326ad1ead93905993316", + "tarball": "http://registry.npmjs.org/heavy-flow/-/heavy-flow-0.2.3.tgz" + } + }, + "url": "http://registry.npmjs.org/heavy-flow/" + }, + "heckle": { + "name": "heckle", + "description": "a nodejs project site generator", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "tmcw", + "email": "macwright@gmail.com" + } + ], + "time": { + "modified": "2011-08-19T04:00:06.769Z", + "created": "2011-08-16T14:21:03.498Z", + "0.0.0": "2011-08-16T14:21:04.034Z", + "0.0.1": "2011-08-19T03:56:39.562Z" + }, + "author": { + "name": "Tom MacWright", + "url": "http://macwright.org/" + }, + "repository": { + "type": "git", + "url": "git://github.com/tmcw/heckle.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/heckle/0.0.0", + "0.0.1": "http://registry.npmjs.org/heckle/0.0.1" + }, + "dist": { + "0.0.0": { + "shasum": "f7dcc4bb7622c7e9e527dba0972c890ddf540a88", + "tarball": "http://registry.npmjs.org/heckle/-/heckle-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "5230aa6bef6a2f1c662c3441faf664f846c16318", + "tarball": "http://registry.npmjs.org/heckle/-/heckle-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/heckle/" + }, + "heco": { + "name": "heco", + "description": "Hadoop Ecosystem", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "david", + "email": "david@adaltas.com" + } + ], + "time": { + "modified": "2011-11-15T23:18:22.234Z", + "created": "2011-10-20T15:39:58.126Z", + "0.0.1": "2011-10-20T15:40:00.176Z", + "0.0.2": "2011-11-15T23:18:22.234Z" + }, + "author": { + "name": "David Worms" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/heco/0.0.1", + "0.0.2": "http://registry.npmjs.org/heco/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "421f64f709d425f394e7351a42ce5813d7c5faee", + "tarball": "http://registry.npmjs.org/heco/-/heco-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c464091078be09ce33be6d04bda19371c8c87aeb", + "tarball": "http://registry.npmjs.org/heco/-/heco-0.0.2.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/heco/" + }, + "heco-core": { + "name": "heco-core", + "description": "Core cookbooks and utilities for managing an Hadoop ecosystem", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "david", + "email": "david@adaltas.com" + } + ], + "time": { + "modified": "2011-12-05T01:39:25.408Z", + "created": "2011-10-20T14:54:20.849Z", + "0.0.1": "2011-10-20T14:54:24.046Z", + "0.0.2": "2011-11-15T23:00:22.771Z", + "0.0.3": "2011-11-24T22:38:38.600Z", + "0.0.4": "2011-12-05T01:39:25.408Z" + }, + "author": { + "name": "David Worms" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/heco-core/0.0.1", + "0.0.2": "http://registry.npmjs.org/heco-core/0.0.2", + "0.0.3": "http://registry.npmjs.org/heco-core/0.0.3", + "0.0.4": "http://registry.npmjs.org/heco-core/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "d93da536ce950b29c884c00811708dd83b8d8372", + "tarball": "http://registry.npmjs.org/heco-core/-/heco-core-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "d89fd55fed7be0b490abfe650bb718fb0d9f8463", + "tarball": "http://registry.npmjs.org/heco-core/-/heco-core-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "73385f7f7d64520c260b07738711d2ea46a1f4bc", + "tarball": "http://registry.npmjs.org/heco-core/-/heco-core-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "bf916e5d391c80c247f493a6bd5d1d1c4f257c4e", + "tarball": "http://registry.npmjs.org/heco-core/-/heco-core-0.0.4.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/heco-core/" + }, + "heco-flume": { + "name": "heco-flume", + "description": "Flume cookbook for Hadooper", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "david", + "email": "david@adaltas.com" + } + ], + "time": { + "modified": "2011-11-14T23:45:21.619Z", + "created": "2011-10-20T14:54:41.367Z", + "0.0.1": "2011-10-20T14:54:43.410Z", + "0.0.2": "2011-11-14T23:45:21.619Z" + }, + "author": { + "name": "David Worms" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/heco-flume/0.0.1", + "0.0.2": "http://registry.npmjs.org/heco-flume/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "ee6f8897fba8b841770cfdcb9fbc2dbc173979e6", + "tarball": "http://registry.npmjs.org/heco-flume/-/heco-flume-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "ba3f368dd3448146bb576adb4fb17d6eb63cc5d5", + "tarball": "http://registry.npmjs.org/heco-flume/-/heco-flume-0.0.2.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/heco-flume/" + }, + "heco-hadoop": { + "name": "heco-hadoop", + "description": "Hadoop cookbook for Hadooper", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "david", + "email": "david@adaltas.com" + } + ], + "time": { + "modified": "2011-11-15T23:01:38.432Z", + "created": "2011-10-20T14:55:23.452Z", + "0.0.1": "2011-10-20T14:56:27.796Z", + "0.0.2": "2011-11-15T23:01:38.432Z" + }, + "author": { + "name": "David Worms" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/heco-hadoop/0.0.1", + "0.0.2": "http://registry.npmjs.org/heco-hadoop/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "1b12f89ed2db9bfd71209ad3828a26d6926eed22", + "tarball": "http://registry.npmjs.org/heco-hadoop/-/heco-hadoop-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f1a38f6d4959820509787a18b5e0452cc9965a13", + "tarball": "http://registry.npmjs.org/heco-hadoop/-/heco-hadoop-0.0.2.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/heco-hadoop/" + }, + "heco-hbase": { + "name": "heco-hbase", + "description": "HBase cookbook for Hadooper", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "david", + "email": "david@adaltas.com" + } + ], + "time": { + "modified": "2011-11-23T22:04:02.652Z", + "created": "2011-10-20T14:57:22.304Z", + "0.0.1": "2011-10-20T14:57:24.310Z", + "0.0.2": "2011-11-15T23:02:36.751Z", + "0.0.3": "2011-11-23T22:04:02.652Z" + }, + "author": { + "name": "David Worms" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/heco-hbase/0.0.1", + "0.0.2": "http://registry.npmjs.org/heco-hbase/0.0.2", + "0.0.3": "http://registry.npmjs.org/heco-hbase/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "811f94bf054a598a3305e0d457b4d7b530b146f0", + "tarball": "http://registry.npmjs.org/heco-hbase/-/heco-hbase-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "692c145af0b9c70b6f87f3d9a6531ba8b5471922", + "tarball": "http://registry.npmjs.org/heco-hbase/-/heco-hbase-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "788e4eacc741d90f79ad05bbd2cf716c9f481ec1", + "tarball": "http://registry.npmjs.org/heco-hbase/-/heco-hbase-0.0.3.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/heco-hbase/" + }, + "heco-hive": { + "name": "heco-hive", + "description": "Hive cookbook for Hadooper", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "david", + "email": "david@adaltas.com" + } + ], + "time": { + "modified": "2011-12-05T00:57:47.456Z", + "created": "2011-10-20T14:58:15.088Z", + "0.0.1": "2011-10-20T14:59:01.491Z", + "0.0.2": "2011-11-15T23:03:26.705Z", + "0.0.3": "2011-12-05T00:57:47.456Z" + }, + "author": { + "name": "David Worms" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/heco-hive/0.0.1", + "0.0.2": "http://registry.npmjs.org/heco-hive/0.0.2", + "0.0.3": "http://registry.npmjs.org/heco-hive/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "32c198ed7f309cf7abb0d4c429b76abe16c9bd18", + "tarball": "http://registry.npmjs.org/heco-hive/-/heco-hive-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "ebd1f775bb28d69d42172c521df1d62f56247df0", + "tarball": "http://registry.npmjs.org/heco-hive/-/heco-hive-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "e7c9e7e4f5f0f881f4d517d0d5ee00a7c8d425bd", + "tarball": "http://registry.npmjs.org/heco-hive/-/heco-hive-0.0.3.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/heco-hive/" + }, + "heco-hue": { + "name": "heco-hue", + "description": "Hue cookbook for Hadooper", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "david", + "email": "david@adaltas.com" + } + ], + "time": { + "modified": "2011-11-15T09:12:07.459Z", + "created": "2011-10-20T14:59:22.388Z", + "0.0.1": "2011-10-20T14:59:44.388Z", + "0.0.2": "2011-11-15T09:12:07.459Z" + }, + "author": { + "name": "David Worms" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/heco-hue/0.0.1", + "0.0.2": "http://registry.npmjs.org/heco-hue/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "edc640407fb21df4883eead9bead9e45e3c9a8f5", + "tarball": "http://registry.npmjs.org/heco-hue/-/heco-hue-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "833473e995c3e37810c5895f279617ed068f5589", + "tarball": "http://registry.npmjs.org/heco-hue/-/heco-hue-0.0.2.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/heco-hue/" + }, + "heco-oozie": { + "name": "heco-oozie", + "description": "Oozie cookbook for Hadooper", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "david", + "email": "david@adaltas.com" + } + ], + "time": { + "modified": "2011-11-15T09:15:17.493Z", + "created": "2011-10-20T15:00:44.170Z", + "0.0.1": "2011-10-20T15:00:46.223Z", + "0.0.2": "2011-11-15T09:15:17.493Z" + }, + "author": { + "name": "David Worms" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/heco-oozie/0.0.1", + "0.0.2": "http://registry.npmjs.org/heco-oozie/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "e7c4c21dc45b2ea0402b546415c838ee688ee29f", + "tarball": "http://registry.npmjs.org/heco-oozie/-/heco-oozie-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f9d80a5b901af73621abc6df0412ae01c2951ced", + "tarball": "http://registry.npmjs.org/heco-oozie/-/heco-oozie-0.0.2.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/heco-oozie/" + }, + "heco-pig": { + "name": "heco-pig", + "description": "Pig cookbook for Hadooper", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "david", + "email": "david@adaltas.com" + } + ], + "time": { + "modified": "2011-11-15T09:16:18.375Z", + "created": "2011-10-20T15:15:20.059Z", + "0.0.1": "2011-10-20T15:15:22.085Z", + "0.0.2": "2011-11-15T09:16:18.375Z" + }, + "author": { + "name": "David Worms" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/heco-pig/0.0.1", + "0.0.2": "http://registry.npmjs.org/heco-pig/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "ae0777a3eb332e9681507c98955cdced0e0b6a3b", + "tarball": "http://registry.npmjs.org/heco-pig/-/heco-pig-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "9676852554335ae4b20cfdaf3ba8d65a9ebff8a0", + "tarball": "http://registry.npmjs.org/heco-pig/-/heco-pig-0.0.2.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/heco-pig/" + }, + "heco-sqoop": { + "name": "heco-sqoop", + "description": "Sqoop cookbook for Hadooper", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "david", + "email": "david@adaltas.com" + } + ], + "time": { + "modified": "2011-11-15T09:18:14.412Z", + "created": "2011-10-20T15:07:51.916Z", + "0.0.1": "2011-10-20T15:07:53.907Z", + "0.0.2": "2011-11-15T09:18:14.412Z" + }, + "author": { + "name": "David Worms" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/heco-sqoop/0.0.1", + "0.0.2": "http://registry.npmjs.org/heco-sqoop/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "b178cc7ce6716c4294c3da759779fef7a9eb1818", + "tarball": "http://registry.npmjs.org/heco-sqoop/-/heco-sqoop-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "5ea4667a9f590b1d7637705b658b452ad3f30e34", + "tarball": "http://registry.npmjs.org/heco-sqoop/-/heco-sqoop-0.0.2.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/heco-sqoop/" + }, + "heco-thrift": { + "name": "heco-thrift", + "description": "Thrift cookbook for Hadooper", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "david", + "email": "david@adaltas.com" + } + ], + "time": { + "modified": "2011-11-15T09:22:13.327Z", + "created": "2011-10-20T15:17:01.534Z", + "0.0.1": "2011-10-20T15:17:26.554Z", + "0.0.2": "2011-11-15T09:22:13.327Z" + }, + "author": { + "name": "David Worms" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/heco-thrift/0.0.1", + "0.0.2": "http://registry.npmjs.org/heco-thrift/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "ec8360cfa108f056050a038cab57f5dbbc1e3cda", + "tarball": "http://registry.npmjs.org/heco-thrift/-/heco-thrift-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "95d40ac7d5de0c18547e9311f2b47e0745739a58", + "tarball": "http://registry.npmjs.org/heco-thrift/-/heco-thrift-0.0.2.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/heco-thrift/" + }, + "heco-zookeeper": { + "name": "heco-zookeeper", + "description": "Zookeeper cookbook for Hadooper", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "david", + "email": "david@adaltas.com" + } + ], + "time": { + "modified": "2011-11-15T23:04:36.609Z", + "created": "2011-10-20T15:19:53.870Z", + "0.0.1": "2011-10-20T15:20:16.869Z", + "0.0.2": "2011-11-15T23:04:36.609Z" + }, + "author": { + "name": "David Worms" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/heco-zookeeper/0.0.1", + "0.0.2": "http://registry.npmjs.org/heco-zookeeper/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "b5c0934095adcf99bbf86d46c0d1e77d4b73c776", + "tarball": "http://registry.npmjs.org/heco-zookeeper/-/heco-zookeeper-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "88d9dab288ee66f325abf725519766a06337f405", + "tarball": "http://registry.npmjs.org/heco-zookeeper/-/heco-zookeeper-0.0.2.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/heco-zookeeper/" + }, + "helium": { + "name": "helium", + "description": "Engine for Helium system", + "dist-tags": { + "latest": "0.0.1-1" + }, + "maintainers": [ + { + "name": "zhami", + "email": "stuart@yellowhelium.com" + } + ], + "time": { + "modified": "2011-06-16T19:56:46.865Z", + "created": "2011-06-16T19:56:46.361Z", + "0.0.1-1": "2011-06-16T19:56:46.865Z" + }, + "author": { + "name": "Stuart Malin", + "email": "stuart@yellowhelium.com", + "url": "http://yellowhelium.com/" + }, + "repository": { + "type": "url", + "url": "http://github.com/zhami/helium" + }, + "versions": { + "0.0.1-1": "http://registry.npmjs.org/helium/0.0.1-1" + }, + "dist": { + "0.0.1-1": { + "shasum": "42dc7d25e395a454bfbdba4601c4a9b6f41af338", + "tarball": "http://registry.npmjs.org/helium/-/helium-0.0.1-1.tgz" + } + }, + "keywords": [ + "helium", + "framework" + ], + "url": "http://registry.npmjs.org/helium/" + }, + "hello": { + "name": "hello", + "description": "desc", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "gutenye", + "email": "ywzhaifei@gmail.com" + } + ], + "time": { + "modified": "2011-10-29T02:41:30.136Z", + "created": "2011-10-29T02:41:25.739Z", + "0.0.1": "2011-10-29T02:41:30.136Z" + }, + "author": { + "name": "Guten", + "email": "ywzhaifei@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/hello/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "6db2c8ab647e1da5f292a2b5765b1b1e38f0b9d1", + "tarball": "http://registry.npmjs.org/hello/-/hello-0.0.1.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/hello/" + }, + "hello-world": { + "name": "hello-world", + "description": "My first teleport app.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "gozala", + "email": "rfobic@gmail.com" + } + ], + "time": { + "modified": "2011-02-02T13:26:41.982Z", + "created": "2011-02-02T13:26:41.600Z", + "0.0.2": "2011-02-02T13:26:41.982Z" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/hello-world/0.0.2" + }, + "dist": { + "0.0.2": { + "shasum": "3a68f72356c587bcd7ec378b4f746b1799f2c786", + "tarball": "http://registry.npmjs.org/hello-world/-/hello-world-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/hello-world/" + }, + "hello.io": { + "name": "hello.io", + "description": "Simple Socket.io server for testing", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "dshaw", + "email": "dshaw@dshaw.com" + } + ], + "time": { + "modified": "2011-08-04T07:10:52.506Z", + "created": "2011-08-04T07:10:50.069Z", + "0.0.2": "2011-08-04T07:10:52.506Z" + }, + "author": { + "name": "Daniel Shaw", + "email": "dshaw@dshaw.com" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/hello.io/0.0.2" + }, + "dist": { + "0.0.2": { + "shasum": "2416e51161c548d3e04dda9693baa25ac9493d52", + "tarball": "http://registry.npmjs.org/hello.io/-/hello.io-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/hello.io/" + }, + "helloworld": { + "name": "helloworld", + "description": "A hello world application for use on Nodejitsu.", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "avianflu", + "email": "charlie@charlieistheman.com" + } + ], + "time": { + "modified": "2011-09-20T23:58:58.133Z", + "created": "2011-09-20T23:58:56.241Z", + "0.0.0": "2011-09-20T23:58:58.133Z" + }, + "author": { + "name": "AvianFlu", + "email": "charlie@charlieistheman.com" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/helloworld/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "2e5cc78b0fe5708bde8410e0f4dd2b9e328dd357", + "tarball": "http://registry.npmjs.org/helloworld/-/helloworld-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/helloworld/" + }, + "helpful": { + "name": "helpful", + "description": "Helpful functions for Express", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "stagas", + "email": "gstagas@gmail.com" + } + ], + "time": { + "modified": "2011-03-29T13:27:15.646Z", + "created": "2011-01-23T18:30:28.920Z", + "0.0.4": "2011-01-23T18:30:29.808Z", + "0.0.5": "2011-03-29T11:31:06.116Z" + }, + "author": { + "name": "George Stagas", + "email": "gstagas@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/stagas/express-helpful.git" + }, + "versions": { + "0.0.4": "http://registry.npmjs.org/helpful/0.0.4", + "0.0.5": "http://registry.npmjs.org/helpful/0.0.5" + }, + "dist": { + "0.0.4": { + "shasum": "6443e0c7c0cc6bf471a81f4d445e1c9944d47d4c", + "tarball": "http://registry.npmjs.org/helpful/-/helpful-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "b7c395b76dcc89826fe7d4246491b11d1aa3bf3d", + "tarball": "http://registry.npmjs.org/helpful/-/helpful-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/helpful/" + }, + "hem": { + "name": "hem", + "description": "CommonJS stitcher.", + "dist-tags": { + "latest": "0.1.6", + "beta": "0.1.7" + }, + "maintainers": [ + { + "name": "maccman", + "email": "maccman@gmail.com" + } + ], + "time": { + "modified": "2011-11-20T00:18:08.763Z", + "created": "2011-08-03T00:30:45.170Z", + "0.0.1": "2011-08-03T00:30:55.039Z", + "0.0.2": "2011-08-03T16:11:21.097Z", + "0.0.3": "2011-08-03T16:51:16.788Z", + "0.0.4": "2011-08-03T20:35:34.489Z", + "0.0.5": "2011-08-04T14:22:53.770Z", + "0.0.6": "2011-08-04T19:36:15.050Z", + "0.0.7": "2011-08-06T03:45:16.886Z", + "0.0.8": "2011-08-28T08:52:11.059Z", + "0.0.9": "2011-09-09T19:57:37.193Z", + "0.1.0": "2011-09-17T11:01:54.896Z", + "0.1.1": "2011-09-20T17:57:10.477Z", + "0.1.2": "2011-10-03T07:59:41.314Z", + "0.1.3": "2011-10-03T08:06:20.480Z", + "0.1.5": "2011-11-08T17:56:16.216Z", + "0.1.6": "2011-11-08T18:01:50.095Z", + "0.1.7": "2011-11-20T00:18:08.763Z" + }, + "author": { + "name": "maccman" + }, + "repository": { + "type": "git", + "url": "git://github.com/maccman/hem.git" + }, + "users": { + "sonneym": true + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/hem/0.0.1", + "0.0.2": "http://registry.npmjs.org/hem/0.0.2", + "0.0.3": "http://registry.npmjs.org/hem/0.0.3", + "0.0.4": "http://registry.npmjs.org/hem/0.0.4", + "0.0.5": "http://registry.npmjs.org/hem/0.0.5", + "0.0.6": "http://registry.npmjs.org/hem/0.0.6", + "0.0.7": "http://registry.npmjs.org/hem/0.0.7", + "0.0.8": "http://registry.npmjs.org/hem/0.0.8", + "0.0.9": "http://registry.npmjs.org/hem/0.0.9", + "0.1.0": "http://registry.npmjs.org/hem/0.1.0", + "0.1.1": "http://registry.npmjs.org/hem/0.1.1", + "0.1.2": "http://registry.npmjs.org/hem/0.1.2", + "0.1.3": "http://registry.npmjs.org/hem/0.1.3", + "0.1.5": "http://registry.npmjs.org/hem/0.1.5", + "0.1.6": "http://registry.npmjs.org/hem/0.1.6", + "0.1.7": "http://registry.npmjs.org/hem/0.1.7" + }, + "dist": { + "0.0.1": { + "shasum": "958e8bf33872e92b28650a96045a4878badbb4b6", + "tarball": "http://registry.npmjs.org/hem/-/hem-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "556f059c984a2748195581261cba5b4ff2d48b60", + "tarball": "http://registry.npmjs.org/hem/-/hem-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "bdd6a6472255c39837a2b3556e0d0efd025a5cd8", + "tarball": "http://registry.npmjs.org/hem/-/hem-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "c0a950894abea9d02bdd1a63ba6ad812c5531fd2", + "tarball": "http://registry.npmjs.org/hem/-/hem-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "781652b48184e7ffebfb6877d025a158ad82eff1", + "tarball": "http://registry.npmjs.org/hem/-/hem-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "2bd57d4534dbe5a42e5a24eebc92af59c28b182d", + "tarball": "http://registry.npmjs.org/hem/-/hem-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "7bcc2f77f65b60c76e901b9877af8ab187a3a420", + "tarball": "http://registry.npmjs.org/hem/-/hem-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "3f401071161e84b5767b6e93a0bf7c54574c529a", + "tarball": "http://registry.npmjs.org/hem/-/hem-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "7815496b045b3b3d2a93ac7c53944782bae9860e", + "tarball": "http://registry.npmjs.org/hem/-/hem-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "ddc3c4bea5dd9a23f53d672a10a88f5ee1e7dfad", + "tarball": "http://registry.npmjs.org/hem/-/hem-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "cb34f7df54824c11364c87b4e9776a1541c1f39c", + "tarball": "http://registry.npmjs.org/hem/-/hem-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "0ae2f60f89ef282b81fbc42a3dcb0dfa7df4906d", + "tarball": "http://registry.npmjs.org/hem/-/hem-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "476c8368feca52d226e13904c7b8b38c6f52bec9", + "tarball": "http://registry.npmjs.org/hem/-/hem-0.1.3.tgz" + }, + "0.1.5": { + "shasum": "a4f4b7020cfba32c2eeb3c5ab9089be99abe77b8", + "tarball": "http://registry.npmjs.org/hem/-/hem-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "e9cb465f9db89151fd23793391a8dd97e5d425f0", + "tarball": "http://registry.npmjs.org/hem/-/hem-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "302ea4a3ed4f97b32258da5b533a1124aeef4c86", + "tarball": "http://registry.npmjs.org/hem/-/hem-0.1.7.tgz" + } + }, + "url": "http://registry.npmjs.org/hem/" + }, + "hempwick": { + "name": "hempwick", + "description": "An array manipulation library", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "jesusabdullah", + "email": "josh.holbrook@gmail.com" + } + ], + "time": { + "modified": "2011-06-06T06:09:45.820Z", + "created": "2011-04-03T21:48:16.015Z", + "0.0.0": "2011-04-03T21:48:16.811Z", + "0.0.1": "2011-04-13T07:57:21.602Z", + "0.0.2": "2011-06-06T06:09:45.820Z" + }, + "author": { + "name": "Joshua Holbrook", + "email": "josh.holbrook@gmail.com", + "url": "http://jesusabdullah.github.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:jesusabdullah/hempwick.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/hempwick/0.0.0", + "0.0.1": "http://registry.npmjs.org/hempwick/0.0.1", + "0.0.2": "http://registry.npmjs.org/hempwick/0.0.2" + }, + "dist": { + "0.0.0": { + "shasum": "1d9fb14fadc9ff848c1680f5e8ef2ccc0d591793", + "tarball": "http://registry.npmjs.org/hempwick/-/hempwick-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "83ba77b7e514ca3dbe5272740a5403f53710e6d5", + "tarball": "http://registry.npmjs.org/hempwick/-/hempwick-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c97c0f272ae8fb28ac3630cf71e88ff0bfa5b3bc", + "tarball": "http://registry.npmjs.org/hempwick/-/hempwick-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/hempwick/" + }, + "heritable": { + "name": "heritable", + "description": "Inheritance provider", + "dist-tags": { + "latest": "0.0.2-1" + }, + "maintainers": [ + { + "name": "zhami", + "email": "stuart@yellowhelium.com" + } + ], + "time": { + "modified": "2011-06-06T03:04:23.465Z", + "created": "2011-06-02T17:14:49.008Z", + "0.0.1-1": "2011-06-02T17:14:49.556Z", + "0.0.1-2": "2011-06-02T17:18:25.967Z", + "0.0.1-3": "2011-06-02T17:21:18.446Z", + "0.0.2-1": "2011-06-06T03:04:23.465Z" + }, + "author": { + "name": "Stuart Malin", + "email": "stuart@yellowhelium.com", + "url": "http://yellowhelium.com/" + }, + "repository": { + "type": "url", + "url": "http://github.com/zhami/heritable" + }, + "versions": { + "0.0.1-2": "http://registry.npmjs.org/heritable/0.0.1-2", + "0.0.1-3": "http://registry.npmjs.org/heritable/0.0.1-3", + "0.0.1-1": "http://registry.npmjs.org/heritable/0.0.1-1", + "0.0.2-1": "http://registry.npmjs.org/heritable/0.0.2-1" + }, + "dist": { + "0.0.1-2": { + "shasum": "46616b4603c39626f93529153508249698cdd7e0", + "tarball": "http://registry.npmjs.org/heritable/-/heritable-0.0.1-2.tgz" + }, + "0.0.1-3": { + "shasum": "57bd58be558cbb0d96739fa99e0adb60698fa11e", + "tarball": "http://registry.npmjs.org/heritable/-/heritable-0.0.1-3.tgz" + }, + "0.0.1-1": { + "shasum": "2a4437661aa30d8cb006ec8bac8d926347bac0d3", + "tarball": "http://registry.npmjs.org/heritable/-/heritable-0.0.1-1.tgz" + }, + "0.0.2-1": { + "shasum": "0403cbad4bac03d141283218df8f37392284aaa9", + "tarball": "http://registry.npmjs.org/heritable/-/heritable-0.0.2-1.tgz" + } + }, + "keywords": [ + "inheritance", + "class" + ], + "url": "http://registry.npmjs.org/heritable/" + }, + "hermes-raw-client": { + "name": "hermes-raw-client", + "description": "Stateless Hermes client", + "dist-tags": { + "latest": "0.8.4" + }, + "maintainers": [ + { + "name": "jfd", + "email": "dahlberg.johan@gmail.com" + } + ], + "time": { + "modified": "2011-04-24T15:59:50.363Z", + "created": "2011-03-28T15:23:10.656Z", + "0.8.0": "2011-03-28T15:23:11.122Z", + "0.8.1": "2011-03-29T10:33:52.876Z", + "0.8.2": "2011-03-29T13:47:59.223Z", + "0.8.3": "2011-04-12T09:02:37.700Z", + "0.8.4": "2011-04-24T15:59:50.363Z" + }, + "author": { + "name": "Hydna AB", + "email": "info@hydna.com", + "url": "http://www.hydna.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/hydna/hermes-raw-client.git" + }, + "versions": { + "0.8.0": "http://registry.npmjs.org/hermes-raw-client/0.8.0", + "0.8.1": "http://registry.npmjs.org/hermes-raw-client/0.8.1", + "0.8.2": "http://registry.npmjs.org/hermes-raw-client/0.8.2", + "0.8.3": "http://registry.npmjs.org/hermes-raw-client/0.8.3", + "0.8.4": "http://registry.npmjs.org/hermes-raw-client/0.8.4" + }, + "dist": { + "0.8.0": { + "shasum": "8e13d2d42a171e4f6a427a7b5010f57a3d5e6d87", + "tarball": "http://registry.npmjs.org/hermes-raw-client/-/hermes-raw-client-0.8.0.tgz" + }, + "0.8.1": { + "shasum": "fdc3ef94030c76f37ceba789f29c9bc8cec8a182", + "tarball": "http://registry.npmjs.org/hermes-raw-client/-/hermes-raw-client-0.8.1.tgz" + }, + "0.8.2": { + "shasum": "c1e37fd2da160aa2125e8cb994ac018e742a015a", + "tarball": "http://registry.npmjs.org/hermes-raw-client/-/hermes-raw-client-0.8.2.tgz" + }, + "0.8.3": { + "shasum": "5127651a4fa216970e25277b2c7121217790f3ea", + "tarball": "http://registry.npmjs.org/hermes-raw-client/-/hermes-raw-client-0.8.3.tgz" + }, + "0.8.4": { + "shasum": "ae278877f392e0ed0f99e94cefd27dd4e02108fb", + "tarball": "http://registry.npmjs.org/hermes-raw-client/-/hermes-raw-client-0.8.4.tgz" + } + }, + "keywords": [ + "hermes", + "wink", + "comet", + "tcp", + "messaging" + ], + "url": "http://registry.npmjs.org/hermes-raw-client/" + }, + "heru": { + "name": "heru", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "tomc", + "email": "tomas.carnecky@gmail.com" + } + ], + "time": { + "modified": "2011-09-12T17:32:46.336Z", + "created": "2011-09-12T17:32:41.334Z", + "0.0.1": "2011-09-12T17:32:46.336Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/heru/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "3038df68a6af385b1be8c831d6c011a540277d32", + "tarball": "http://registry.npmjs.org/heru/-/heru-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/heru/" + }, + "hexdump": { + "name": "hexdump", + "description": "A javascript utility for pretty hexdump output.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "mephux", + "email": "dustin.webber@gmail.com" + } + ], + "time": { + "modified": "2011-06-10T00:53:11.999Z", + "created": "2011-06-10T00:53:11.802Z", + "0.1.0": "2011-06-10T00:53:11.999Z" + }, + "author": { + "name": "Dustin Willis Webber", + "email": "dustin.webber@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mephux/hexdump.js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/hexdump/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "f24ff7ef15077e39f4ab92528af4209efcadcead", + "tarball": "http://registry.npmjs.org/hexdump/-/hexdump-0.1.0.tgz" + } + }, + "keywords": [ + "hex", + "dump", + "hexdump" + ], + "url": "http://registry.npmjs.org/hexdump/" + }, + "hexedit": { + "name": "hexedit", + "description": "Hexadecimal Editor", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "time": { + "modified": "2011-10-29T00:30:48.748Z", + "created": "2011-10-28T22:40:45.092Z", + "1.0.0": "2011-10-28T22:40:46.099Z", + "1.0.1": "2011-10-29T00:30:48.748Z" + }, + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me/" + }, + "repository": { + "type": "git", + "url": "git://github.com/isaacs/node-hexedit.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/hexedit/1.0.0", + "1.0.1": "http://registry.npmjs.org/hexedit/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "84ce71dd881bf1b50177aa5dbcfbade6873da93b", + "tarball": "http://registry.npmjs.org/hexedit/-/hexedit-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "560268d6135922552c98df973982f21a7cfaba79", + "tarball": "http://registry.npmjs.org/hexedit/-/hexedit-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/hexedit/" + }, + "hexy": { + "name": "hexy", + "description": "hexdump, binary pretty-printing", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "a2800276", + "email": "tim.becker@kuriositaet.de" + } + ], + "author": { + "name": "Tim Becker", + "email": "tim.becker@kuriositaet.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/a2800276/hexy.js.git" + }, + "time": { + "modified": "2011-06-04T17:07:00.571Z", + "created": "2011-01-24T21:52:44.077Z", + "0.1.2": "2011-01-24T21:52:44.077Z", + "0.1.3": "2011-01-25T19:39:44.803Z", + "0.2.0": "2011-06-02T19:02:34.279Z", + "0.2.1": "2011-06-04T17:07:00.571Z" + }, + "versions": { + "0.1.2": "http://registry.npmjs.org/hexy/0.1.2", + "0.1.3": "http://registry.npmjs.org/hexy/0.1.3", + "0.2.0": "http://registry.npmjs.org/hexy/0.2.0", + "0.2.1": "http://registry.npmjs.org/hexy/0.2.1" + }, + "dist": { + "0.1.2": { + "tarball": "http://registry.npmjs.org/hexy/-/hexy-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "4080205ccb33b9b60ccac71115e31b68c6c506f9", + "tarball": "http://registry.npmjs.org/hexy/-/hexy-0.1.3.tgz" + }, + "0.2.0": { + "shasum": "dacffabc9533a4794c8c666e014ea2b009df689b", + "tarball": "http://registry.npmjs.org/hexy/-/hexy-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "4f7acff7c8480a6417389419278405f18ba4bc29", + "tarball": "http://registry.npmjs.org/hexy/-/hexy-0.2.1.tgz" + } + }, + "url": "http://registry.npmjs.org/hexy/" + }, + "highkick": { + "name": "highkick", + "description": "Asynchronous, no-style, super simple testing tool.", + "dist-tags": { + "latest": "1.3.4" + }, + "maintainers": [ + { + "name": "azer", + "email": "azer@kodfabrik.com" + } + ], + "time": { + "modified": "2011-12-14T05:08:04.445Z", + "created": "2011-09-28T23:34:32.657Z", + "1.0.0": "2011-09-28T23:34:33.765Z", + "1.1.0": "2011-10-14T19:22:17.713Z", + "1.1.1": "2011-10-14T19:49:27.788Z", + "1.2.0": "2011-11-11T06:29:08.092Z", + "1.2.1": "2011-11-11T11:41:19.529Z", + "1.2.2": "2011-11-11T11:49:30.402Z", + "1.2.3": "2011-11-13T01:18:14.767Z", + "1.3.0": "2011-11-20T11:17:14.149Z", + "1.3.1": "2011-11-20T20:43:16.188Z", + "1.3.2": "2011-11-27T02:44:58.772Z", + "1.3.3": "2011-12-09T04:23:19.017Z", + "1.3.4": "2011-12-14T05:08:04.445Z" + }, + "author": { + "name": "Azer Koculu", + "email": "azer@kodfabrik.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/azer/highkick.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/highkick/1.0.0", + "1.1.0": "http://registry.npmjs.org/highkick/1.1.0", + "1.1.1": "http://registry.npmjs.org/highkick/1.1.1", + "1.2.0": "http://registry.npmjs.org/highkick/1.2.0", + "1.2.1": "http://registry.npmjs.org/highkick/1.2.1", + "1.2.2": "http://registry.npmjs.org/highkick/1.2.2", + "1.2.3": "http://registry.npmjs.org/highkick/1.2.3", + "1.3.0": "http://registry.npmjs.org/highkick/1.3.0", + "1.3.1": "http://registry.npmjs.org/highkick/1.3.1", + "1.3.2": "http://registry.npmjs.org/highkick/1.3.2", + "1.3.3": "http://registry.npmjs.org/highkick/1.3.3", + "1.3.4": "http://registry.npmjs.org/highkick/1.3.4" + }, + "dist": { + "1.0.0": { + "shasum": "e4ca56622be550d05aa8523ff98e9953784b67d5", + "tarball": "http://registry.npmjs.org/highkick/-/highkick-1.0.0.tgz" + }, + "1.1.0": { + "shasum": "96d6a7866870369884bf1d731d8f93182928641a", + "tarball": "http://registry.npmjs.org/highkick/-/highkick-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "2dc338b7609ce7bd832af9bd80c892c8c8d3e74c", + "tarball": "http://registry.npmjs.org/highkick/-/highkick-1.1.1.tgz" + }, + "1.2.0": { + "shasum": "0260cdef1fdabc21b7d9879a4b7d24627e33c185", + "tarball": "http://registry.npmjs.org/highkick/-/highkick-1.2.0.tgz" + }, + "1.2.1": { + "shasum": "c4d1413993b780ccaacaedfe1917985958f3e3c5", + "tarball": "http://registry.npmjs.org/highkick/-/highkick-1.2.1.tgz" + }, + "1.2.2": { + "shasum": "7e4a28619f03c35d7cc0f5fa85dd7bbaeddf3519", + "tarball": "http://registry.npmjs.org/highkick/-/highkick-1.2.2.tgz" + }, + "1.2.3": { + "shasum": "e0d05291dca5bb3f614b29b6bc12a67fd4c76749", + "tarball": "http://registry.npmjs.org/highkick/-/highkick-1.2.3.tgz" + }, + "1.3.0": { + "shasum": "4488e00db336a7145a706830c5dc768b1ee6e730", + "tarball": "http://registry.npmjs.org/highkick/-/highkick-1.3.0.tgz" + }, + "1.3.1": { + "shasum": "d3f8a170b4c1a3eef9265ec547717d2478f1bf74", + "tarball": "http://registry.npmjs.org/highkick/-/highkick-1.3.1.tgz" + }, + "1.3.2": { + "shasum": "0246ed23770535b5a96d505d0f71ec9f37219ab9", + "tarball": "http://registry.npmjs.org/highkick/-/highkick-1.3.2.tgz" + }, + "1.3.3": { + "shasum": "66ce29ac90df84ed11cbd599e8240c2d1f9eba25", + "tarball": "http://registry.npmjs.org/highkick/-/highkick-1.3.3.tgz" + }, + "1.3.4": { + "shasum": "c900874b2522a7bf0cfc2e3ec3a607f68eccb915", + "tarball": "http://registry.npmjs.org/highkick/-/highkick-1.3.4.tgz" + } + }, + "keywords": [ + "testing", + "test" + ], + "url": "http://registry.npmjs.org/highkick/" + }, + "highlight": { + "name": "highlight", + "description": "Highlight code syntax with node.js", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "andris", + "email": "andris@node.ee" + }, + { + "name": "guileen", + "email": "guileen@gmail.com" + } + ], + "author": { + "name": "Andris Reinman" + }, + "repository": { + "type": "git", + "url": "git://github.com/andris9/highlight.git" + }, + "time": { + "modified": "2011-07-11T08:57:39.295Z", + "created": "2011-06-03T10:03:21.833Z", + "0.1.0": "2011-06-03T10:03:21.834Z", + "0.2.0": "2011-07-11T08:57:39.296Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/highlight/0.1.0", + "0.2.0": "http://registry.npmjs.org/highlight/0.2.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/highlight/-/highlight-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "3dfbc27877c19cfc95ed59d9751e40aeaec2e088", + "tarball": "http://registry.npmjs.org/highlight/-/highlight-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/highlight/" + }, + "highlight.js": { + "name": "highlight.js", + "description": "A node clone of highlight.js syntax highlighter library", + "dist-tags": { + "latest": "1.0.2" + }, + "maintainers": [ + { + "name": "jga", + "email": "me@jga.me" + } + ], + "time": { + "modified": "2011-09-24T20:22:48.623Z", + "created": "2011-07-15T00:49:11.377Z", + "1.0.0": "2011-07-15T00:49:11.892Z", + "1.0.1": "2011-09-18T20:33:23.216Z", + "1.0.2": "2011-09-24T20:22:48.623Z" + }, + "author": { + "name": "Ivan Sagalaev, Greg Allen", + "url": "@jgaui" + }, + "repository": { + "type": "git", + "url": "git://github.com/jgallen23/highlight.js.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/highlight.js/1.0.0", + "1.0.1": "http://registry.npmjs.org/highlight.js/1.0.1", + "1.0.2": "http://registry.npmjs.org/highlight.js/1.0.2" + }, + "dist": { + "1.0.0": { + "shasum": "e9aeab1e143aecd9bdacc5c6fcd3c4127a47694e", + "tarball": "http://registry.npmjs.org/highlight.js/-/highlight.js-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "8854fbb1aafdc5eac8371786830e28710cc964cc", + "tarball": "http://registry.npmjs.org/highlight.js/-/highlight.js-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "e8f5bbd139094b70065c062019a521ec9b4d4602", + "tarball": "http://registry.npmjs.org/highlight.js/-/highlight.js-1.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/highlight.js/" + }, + "hiker": { + "name": "hiker", + "description": "A library the parses objects from URIs", + "dist-tags": { + "latest": "0.2.3" + }, + "maintainers": [ + { + "name": "rubyphunk", + "email": "andreas@urge.io" + } + ], + "time": { + "modified": "2011-05-19T19:36:12.162Z", + "created": "2010-12-21T21:53:26.580Z", + "0.2.0": "2010-12-21T21:53:27.003Z", + "0.2.1": "2011-03-01T15:57:32.684Z", + "0.2.2": "2011-05-18T14:15:08.946Z", + "0.2.3": "2011-05-19T19:36:12.162Z" + }, + "author": { + "name": "Andreas Wolff", + "email": "andreas@urge.io", + "url": "http://urge.io" + }, + "repository": { + "type": "git", + "url": "git://github.com/urgeio/hiker.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/hiker/0.2.0", + "0.2.1": "http://registry.npmjs.org/hiker/0.2.1", + "0.2.2": "http://registry.npmjs.org/hiker/0.2.2", + "0.2.3": "http://registry.npmjs.org/hiker/0.2.3" + }, + "dist": { + "0.2.0": { + "shasum": "0e12e2b4cfe33500da25c39e2f9502df44aa76bc", + "tarball": "http://registry.npmjs.org/hiker/-/hiker-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "aa202204f13f942d6681c25dd770cda9d2326ada", + "tarball": "http://registry.npmjs.org/hiker/-/hiker-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "5afe1658bd683cca25731542716eaea769f24cd4", + "tarball": "http://registry.npmjs.org/hiker/-/hiker-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "4252f67133c547e17e671f2df19cfa4956bea676", + "tarball": "http://registry.npmjs.org/hiker/-/hiker-0.2.3.tgz" + } + }, + "keywords": [ + "uri", + "url", + "parser" + ], + "url": "http://registry.npmjs.org/hiker/" + }, + "hipchat": { + "name": "hipchat", + "description": "Full-featured HipChat interface", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "qard", + "email": "admin@stephenbelanger.com" + } + ], + "time": { + "modified": "2011-08-12T02:37:25.235Z", + "created": "2011-08-12T02:37:22.830Z", + "0.0.1": "2011-08-12T02:37:25.235Z" + }, + "author": { + "name": "Stephen Belanger", + "email": "admin@stephenbelanger.com", + "url": "http://stephenbelanger.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Qard/node-hipchat.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/hipchat/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "183261fed0ab837eefead89152e1145aec8c327f", + "tarball": "http://registry.npmjs.org/hipchat/-/hipchat-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/hipchat/" + }, + "hipchat-js": { + "name": "hipchat-js", + "description": "Simple HipChat API client", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "smurthas", + "email": "simon@murtha-smith.com" + } + ], + "time": { + "modified": "2011-06-09T07:53:46.389Z", + "created": "2011-06-09T07:53:45.788Z", + "0.0.0": "2011-06-09T07:53:46.389Z" + }, + "author": { + "name": "Simon Murtha-Smith", + "email": "simon@murtha-smith.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/smurthas/hipchat-js.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/hipchat-js/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "9ce1240ebf194881768dc96638e5994d7e7e0f46", + "tarball": "http://registry.npmjs.org/hipchat-js/-/hipchat-js-0.0.0.tgz" + } + }, + "keywords": [ + "hipchat" + ], + "url": "http://registry.npmjs.org/hipchat-js/" + }, + "hipshot": { + "name": "hipshot", + "description": "Beanstalk release to HipChat API adapter", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "dleavitt", + "email": "daniel.leavitt@gmail.com" + } + ], + "time": { + "modified": "2011-12-02T09:12:55.881Z", + "created": "2011-12-02T09:12:53.404Z", + "0.0.1": "2011-12-02T09:12:55.881Z" + }, + "author": { + "name": "Daniel Leavitt", + "email": "daniel@hyfn.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dleavitt/hipshot.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/hipshot/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "b129f38dccd09bc9e2d2a7ea3764296bd66bca00", + "tarball": "http://registry.npmjs.org/hipshot/-/hipshot-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/hipshot/" + }, + "hiredis": { + "name": "hiredis", + "description": "Wrapper for reply processing code in hiredis", + "dist-tags": { + "latest": "0.1.13" + }, + "maintainers": [ + { + "name": "pietern", + "email": "pcnoordhuis@gmail.com" + } + ], + "author": { + "name": "Pieter Noordhuis", + "email": "pcnoordhuis@gmail.com" + }, + "time": { + "modified": "2011-11-14T21:24:32.709Z", + "created": "2011-01-05T13:13:46.838Z", + "0.1.0": "2011-01-05T13:13:46.838Z", + "0.1.1": "2011-01-05T13:13:46.838Z", + "0.1.2": "2011-01-05T13:13:46.838Z", + "0.1.3": "2011-01-05T13:13:46.838Z", + "0.1.4": "2011-01-05T13:13:46.838Z", + "0.1.5": "2011-01-05T13:13:46.838Z", + "0.1.6": "2011-01-05T13:13:46.838Z", + "0.1.7": "2011-02-08T13:11:46.016Z", + "0.1.8": "2011-02-08T20:45:26.728Z", + "0.1.9": "2011-04-07T10:39:19.487Z", + "0.1.10": "2011-05-10T09:25:49.540Z", + "0.1.11": "2011-06-19T13:18:46.102Z", + "0.1.12": "2011-06-19T13:38:09.061Z", + "0.1.13": "2011-11-13T07:32:25.141Z" + }, + "users": { + "deedubs": true + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/hiredis/0.1.0", + "0.1.1": "http://registry.npmjs.org/hiredis/0.1.1", + "0.1.2": "http://registry.npmjs.org/hiredis/0.1.2", + "0.1.3": "http://registry.npmjs.org/hiredis/0.1.3", + "0.1.4": "http://registry.npmjs.org/hiredis/0.1.4", + "0.1.5": "http://registry.npmjs.org/hiredis/0.1.5", + "0.1.6": "http://registry.npmjs.org/hiredis/0.1.6", + "0.1.8": "http://registry.npmjs.org/hiredis/0.1.8", + "0.1.9": "http://registry.npmjs.org/hiredis/0.1.9", + "0.1.10": "http://registry.npmjs.org/hiredis/0.1.10", + "0.1.12": "http://registry.npmjs.org/hiredis/0.1.12", + "0.1.13": "http://registry.npmjs.org/hiredis/0.1.13" + }, + "dist": { + "0.1.0": { + "shasum": "9183a35277e6fdaeb2da1c65da2e6b45652c5732", + "tarball": "http://registry.npmjs.org/hiredis/-/hiredis-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "a9dc7fed2c2b22dbb363855ba60002176e27deac", + "tarball": "http://registry.npmjs.org/hiredis/-/hiredis-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "5b4b7ed2304fccf43563dc0c9e583faa09f2a875", + "tarball": "http://registry.npmjs.org/hiredis/-/hiredis-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "2f419334d2abb065a5728df6f764e62b181451c6", + "tarball": "http://registry.npmjs.org/hiredis/-/hiredis-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "31e9e34192cfbe5ead0c930b7c79ba2e2c37f4c1", + "tarball": "http://registry.npmjs.org/hiredis/-/hiredis-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "33095e455a38466d8e354f842cc4b0a2abb52786", + "tarball": "http://registry.npmjs.org/hiredis/-/hiredis-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "1b78901cc2912397ef664649aaabe1605369431f", + "tarball": "http://registry.npmjs.org/hiredis/-/hiredis-0.1.6.tgz" + }, + "0.1.8": { + "shasum": "018156774f802a56f367d826e9a855db6d45d220", + "tarball": "http://registry.npmjs.org/hiredis/-/hiredis-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "e3baa3d1c4fbc4d9cff69175496f32fe65508e75", + "tarball": "http://registry.npmjs.org/hiredis/-/hiredis-0.1.9.tgz" + }, + "0.1.10": { + "shasum": "54e3b9981f90cd24befafce453fbb9bb492f5331", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.0": { + "shasum": "b2803c0804daba82343c809c26f293a21f6c9ab2", + "tarball": "http://registry.npmjs.org/hiredis/-/hiredis-0.1.10-0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/hiredis/-/hiredis-0.1.10.tgz" + }, + "0.1.12": { + "shasum": "cf6158b93b00bf680c43f9726f71251f36f2ea29", + "tarball": "http://registry.npmjs.org/hiredis/-/hiredis-0.1.12.tgz" + }, + "0.1.13": { + "shasum": "a704d37f61bbedb628bfdb672aa1375e4975a8f0", + "tarball": "http://registry.npmjs.org/hiredis/-/hiredis-0.1.13.tgz" + } + }, + "url": "http://registry.npmjs.org/hiredis/" + }, + "hive": { + "name": "hive", + "description": "MVC for modern web and mobile apps", + "dist-tags": { + "latest": "0.1.6" + }, + "maintainers": [ + { + "name": "ritch", + "email": "skawful@gmail.com" + } + ], + "time": { + "modified": "2011-08-23T00:05:21.991Z", + "created": "2011-05-18T03:06:27.763Z", + "0.0.1": "2011-05-18T03:06:28.289Z", + "0.1.0": "2011-06-22T08:00:30.639Z", + "0.1.1": "2011-07-09T14:57:19.185Z", + "0.1.3": "2011-07-27T04:53:37.270Z", + "0.1.4": "2011-07-27T05:16:19.412Z", + "0.1.5": "2011-07-27T05:27:33.098Z", + "0.1.6": "2011-08-23T00:05:21.991Z" + }, + "author": { + "name": "Ritchie Martori" + }, + "repository": { + "type": "git", + "url": "git://github.com/ritch/hive.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/hive/0.0.1", + "0.1.0": "http://registry.npmjs.org/hive/0.1.0", + "0.1.1": "http://registry.npmjs.org/hive/0.1.1", + "0.1.3": "http://registry.npmjs.org/hive/0.1.3", + "0.1.4": "http://registry.npmjs.org/hive/0.1.4", + "0.1.5": "http://registry.npmjs.org/hive/0.1.5", + "0.1.6": "http://registry.npmjs.org/hive/0.1.6" + }, + "dist": { + "0.0.1": { + "shasum": "7b5d975a32d3813699878e1af1649c930c9112c9", + "tarball": "http://registry.npmjs.org/hive/-/hive-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "571f7ada4ead123804a38e6c6e8c4b4fb5376e9c", + "tarball": "http://registry.npmjs.org/hive/-/hive-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "48b5f5924c216009ef38cb38b5a9260c91fe901e", + "tarball": "http://registry.npmjs.org/hive/-/hive-0.1.1.tgz" + }, + "0.1.3": { + "shasum": "fec72f7d45051563276669e213c5015d7eedf89d", + "tarball": "http://registry.npmjs.org/hive/-/hive-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "a2206f6a987795054d1227d7970cd723db78aca0", + "tarball": "http://registry.npmjs.org/hive/-/hive-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "cd870fb90e6841904e6d4e035fb801a491a78aea", + "tarball": "http://registry.npmjs.org/hive/-/hive-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "08a11e91c5ca3fdb29d756cdf2a0528d9a12e559", + "tarball": "http://registry.npmjs.org/hive/-/hive-0.1.6.tgz" + } + }, + "keywords": [ + "framework" + ], + "url": "http://registry.npmjs.org/hive/" + }, + "hive-cache": { + "name": "hive-cache", + "description": "A caching tool for node", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "damartin", + "email": "doug.martin@pollenware.com" + } + ], + "time": { + "modified": "2011-11-18T07:48:44.074Z", + "created": "2011-05-20T13:17:58.883Z", + "0.0.1": "2011-05-20T13:17:59.633Z", + "0.0.2": "2011-11-18T07:48:44.074Z" + }, + "author": { + "name": "Doug Martin", + "url": "http://pollenware.github.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:Pollen/hive.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/hive-cache/0.0.1", + "0.0.2": "http://registry.npmjs.org/hive-cache/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "ee8ab19b4f16959c819daa760fc715cc234433de", + "tarball": "http://registry.npmjs.org/hive-cache/-/hive-cache-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "018e8d021a23c012edb8fd6a71d4cbe27a141fde", + "tarball": "http://registry.npmjs.org/hive-cache/-/hive-cache-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/hive-cache/" + }, + "hljs": { + "name": "hljs", + "description": "Syntax highlighting with language autodetection. (yet another modification of highlight.js with commonjs support)", + "dist-tags": { + "latest": "6.1.0" + }, + "maintainers": [ + { + "name": "pumbur", + "email": "pumbur@pumbur.net" + } + ], + "time": { + "modified": "2011-10-10T09:12:23.631Z", + "created": "2011-10-10T09:12:21.662Z", + "6.1.0": "2011-10-10T09:12:23.631Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/pumbur/highlight.git" + }, + "versions": { + "6.1.0": "http://registry.npmjs.org/hljs/6.1.0" + }, + "dist": { + "6.1.0": { + "shasum": "c780e8a4916e7105c2d4de30493f7b8a353b8006", + "tarball": "http://registry.npmjs.org/hljs/-/hljs-6.1.0.tgz" + } + }, + "keywords": [ + "highlight", + "syntax" + ], + "url": "http://registry.npmjs.org/hljs/" + }, + "hn": { + "name": "hn", + "description": "a hacker news API client", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "ecto", + "email": "diffference@gmail.com" + } + ], + "time": { + "modified": "2011-11-28T00:50:24.733Z", + "created": "2011-11-28T00:50:04.077Z", + "0.0.0": "2011-11-28T00:50:24.733Z" + }, + "author": { + "name": "Cam Pedersen", + "email": "diffference@gmail.com", + "url": "http://campedersen.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/ecto/node-hackernews.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/hn/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "e7636527fbe70e9b27300d10966e723dad65e40c", + "tarball": "http://registry.npmjs.org/hn/-/hn-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/hn/" + }, + "hoard": { + "name": "hoard", + "description": "node.js lib for storing time series data on disk, similar to RRD.", + "dist-tags": { + "latest": "0.1.5" + }, + "maintainers": [ + { + "name": "cgbystrom", + "email": "cgbystrom+npm@gmail.com" + } + ], + "time": { + "modified": "2011-08-18T20:28:48.587Z", + "created": "2011-08-15T22:31:28.736Z", + "0.1.0": "2011-08-15T22:31:30.443Z", + "0.1.1": "2011-08-16T18:42:38.835Z", + "0.1.2": "2011-08-16T18:50:31.841Z", + "0.1.3": "2011-08-16T18:53:41.461Z", + "0.1.4": "2011-08-16T19:00:45.175Z", + "0.1.5": "2011-08-18T20:28:48.587Z" + }, + "author": { + "name": "Carl Byström", + "email": "cgbystrom@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/cgbystrom/hoard.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/hoard/0.1.0", + "0.1.1": "http://registry.npmjs.org/hoard/0.1.1", + "0.1.2": "http://registry.npmjs.org/hoard/0.1.2", + "0.1.3": "http://registry.npmjs.org/hoard/0.1.3", + "0.1.4": "http://registry.npmjs.org/hoard/0.1.4", + "0.1.5": "http://registry.npmjs.org/hoard/0.1.5" + }, + "dist": { + "0.1.0": { + "shasum": "a89e3ac7f2a9b5e8901e289a35f60e604509513e", + "tarball": "http://registry.npmjs.org/hoard/-/hoard-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "49c2076ec113a993ee80634f45869b9db24b052a", + "tarball": "http://registry.npmjs.org/hoard/-/hoard-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "1d51ebe44b472b5b5df5e0ee13be04ee08c76986", + "tarball": "http://registry.npmjs.org/hoard/-/hoard-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "b6a4342c9eca6bcefe8e95dbd59454b606a9ad07", + "tarball": "http://registry.npmjs.org/hoard/-/hoard-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "f83398531a895909fc8577d362cedb441d425beb", + "tarball": "http://registry.npmjs.org/hoard/-/hoard-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "3951c421069de417b52b0525c45f7072febe1708", + "tarball": "http://registry.npmjs.org/hoard/-/hoard-0.1.5.tgz" + } + }, + "keywords": [ + "timeseries", + "rrd", + "rrdtool", + "db", + "database", + "metric", + "stats", + "statistics" + ], + "url": "http://registry.npmjs.org/hoard/" + }, + "hook": { + "name": "hook", + "description": "NodeJS Throttler", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "jeffsu", + "email": "me@jeffsu.com" + } + ], + "time": { + "modified": "2011-08-03T19:07:48.887Z", + "created": "2011-04-27T00:50:30.136Z", + "0.0.1": "2011-04-27T00:50:30.505Z", + "0.0.3": "2011-08-03T19:06:34.244Z", + "0.0.4": "2011-08-03T19:07:48.887Z" + }, + "author": { + "name": "Jeff Su" + }, + "repository": { + "type": "git", + "url": "git://github.com/jeffsu/hook.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/hook/0.0.1", + "0.0.3": "http://registry.npmjs.org/hook/0.0.3", + "0.0.4": "http://registry.npmjs.org/hook/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "3d6d8b8106eb8c7ad48c6f93a0ac700bbca2b0db", + "tarball": "http://registry.npmjs.org/hook/-/hook-0.0.1.tgz" + }, + "0.0.3": { + "shasum": "eeaead5eb0bef829a28b8c61ec403332fbd08562", + "tarball": "http://registry.npmjs.org/hook/-/hook-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "adcb88b837b4771b8dc67f9a67c8f4ceb4233e29", + "tarball": "http://registry.npmjs.org/hook/-/hook-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/hook/" + }, + "hook.io": { + "name": "hook.io", + "dist-tags": { + "latest": "0.8.4-7" + }, + "maintainers": [ + { + "name": "marak", + "email": "marak.squires@gmail.com" + }, + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + } + ], + "time": { + "modified": "2011-12-03T08:52:49.673Z", + "created": "2011-06-15T05:34:07.725Z", + "0.4.0": "2011-06-15T05:34:09.597Z", + "0.4.1": "2011-06-17T10:15:55.486Z", + "0.4.2": "2011-06-22T02:33:44.083Z", + "0.4.3": "2011-06-25T06:13:13.326Z", + "0.4.4": "2011-06-26T01:10:20.016Z", + "0.4.5": "2011-07-05T22:43:00.942Z", + "0.5.0": "2011-07-22T09:39:13.407Z", + "0.5.1": "2011-07-22T23:50:14.569Z", + "0.5.2": "2011-07-24T07:32:23.600Z", + "0.5.3": "2011-07-26T09:10:27.034Z", + "0.6.0": "2011-07-31T07:13:25.138Z", + "0.6.1": "2011-08-10T18:22:50.298Z", + "0.7.0": "2011-09-03T07:17:01.574Z", + "0.7.1": "2011-09-12T11:49:12.436Z", + "0.7.2": "2011-09-17T06:51:23.579Z", + "0.7.3": "2011-09-18T04:53:40.106Z", + "0.7.4": "2011-09-18T06:48:05.043Z", + "0.7.5": "2011-09-20T10:36:56.920Z", + "0.7.6": "2011-09-21T19:53:25.164Z", + "0.7.7": "2011-09-23T00:40:57.997Z", + "0.8.0": "2011-11-16T08:15:32.397Z", + "0.8.0-1": "2011-11-16T09:59:50.037Z", + "0.8.1": "2011-11-16T11:43:14.678Z", + "0.8.2": "2011-11-20T09:24:35.863Z", + "0.8.2-1": "2011-11-20T09:40:55.718Z", + "0.8.3": "2011-11-28T08:11:44.171Z", + "0.8.4": "2011-12-03T07:06:29.864Z", + "0.8.4-1": "2011-12-03T07:25:23.029Z", + "0.8.4-2": "2011-12-03T07:29:29.804Z", + "0.8.4-3": "2011-12-03T07:38:06.801Z", + "0.8.4-4": "2011-12-03T08:08:24.709Z", + "0.8.4-5": "2011-12-03T08:25:32.049Z", + "0.8.4-7": "2011-12-03T08:52:49.673Z" + }, + "author": { + "name": "Marak Squires", + "email": "marak.squires@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/hookio/hook.io.git" + }, + "users": { + "avianflu": true, + "wojohowitz": true + }, + "versions": { + "0.4.3": "http://registry.npmjs.org/hook.io/0.4.3", + "0.4.4": "http://registry.npmjs.org/hook.io/0.4.4", + "0.4.5": "http://registry.npmjs.org/hook.io/0.4.5", + "0.5.0": "http://registry.npmjs.org/hook.io/0.5.0", + "0.5.1": "http://registry.npmjs.org/hook.io/0.5.1", + "0.5.2": "http://registry.npmjs.org/hook.io/0.5.2", + "0.5.3": "http://registry.npmjs.org/hook.io/0.5.3", + "0.6.0": "http://registry.npmjs.org/hook.io/0.6.0", + "0.6.1": "http://registry.npmjs.org/hook.io/0.6.1", + "0.7.0": "http://registry.npmjs.org/hook.io/0.7.0", + "0.7.1": "http://registry.npmjs.org/hook.io/0.7.1", + "0.7.2": "http://registry.npmjs.org/hook.io/0.7.2", + "0.7.3": "http://registry.npmjs.org/hook.io/0.7.3", + "0.7.4": "http://registry.npmjs.org/hook.io/0.7.4", + "0.7.5": "http://registry.npmjs.org/hook.io/0.7.5", + "0.7.6": "http://registry.npmjs.org/hook.io/0.7.6", + "0.7.7": "http://registry.npmjs.org/hook.io/0.7.7", + "0.8.0": "http://registry.npmjs.org/hook.io/0.8.0", + "0.8.0-1": "http://registry.npmjs.org/hook.io/0.8.0-1", + "0.8.1": "http://registry.npmjs.org/hook.io/0.8.1", + "0.8.2": "http://registry.npmjs.org/hook.io/0.8.2", + "0.8.2-1": "http://registry.npmjs.org/hook.io/0.8.2-1", + "0.8.3": "http://registry.npmjs.org/hook.io/0.8.3", + "0.8.4-1": "http://registry.npmjs.org/hook.io/0.8.4-1", + "0.8.4-2": "http://registry.npmjs.org/hook.io/0.8.4-2", + "0.8.4-4": "http://registry.npmjs.org/hook.io/0.8.4-4", + "0.8.4-7": "http://registry.npmjs.org/hook.io/0.8.4-7" + }, + "dist": { + "0.4.3": { + "shasum": "781f66742ec9885cd3afe42fb2e53b051a85012c", + "tarball": "http://registry.npmjs.org/hook.io/-/hook.io-0.4.3.tgz" + }, + "0.4.4": { + "shasum": "3b5802c98d7a17136d7760e9461982e48135cb33", + "tarball": "http://registry.npmjs.org/hook.io/-/hook.io-0.4.4.tgz" + }, + "0.4.5": { + "shasum": "807955024d71945ab83860292d73ebf064633aee", + "tarball": "http://registry.npmjs.org/hook.io/-/hook.io-0.4.5.tgz" + }, + "0.5.0": { + "shasum": "cbd752c7b26ee4b8aed2a90b95018781c8774854", + "tarball": "http://registry.npmjs.org/hook.io/-/hook.io-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "43c5ded2a69b821549c3793baadf3c201d64c0ff", + "tarball": "http://registry.npmjs.org/hook.io/-/hook.io-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "352d3258fb2cf88e8427b50986f941e5ec76bcae", + "tarball": "http://registry.npmjs.org/hook.io/-/hook.io-0.5.2.tgz" + }, + "0.5.3": { + "shasum": "e49a89ebe2ff392875dcce405c16c86258449eb5", + "tarball": "http://registry.npmjs.org/hook.io/-/hook.io-0.5.3.tgz" + }, + "0.6.0": { + "shasum": "51976f16e32c12910505fbe5645f2a09f3833aa4", + "tarball": "http://registry.npmjs.org/hook.io/-/hook.io-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "5d1ef9b3d8849a01c9a569e7ea15885ee88e4d18", + "tarball": "http://registry.npmjs.org/hook.io/-/hook.io-0.6.1.tgz" + }, + "0.7.0": { + "shasum": "a61e40633412ee7a656f74edb8312004a5fbeeee", + "tarball": "http://registry.npmjs.org/hook.io/-/hook.io-0.7.0.tgz" + }, + "0.7.1": { + "shasum": "33ed3f00c92e8842d7b13076a5f7e0f90ee15d2f", + "tarball": "http://registry.npmjs.org/hook.io/-/hook.io-0.7.1.tgz" + }, + "0.7.2": { + "shasum": "bb0b8422f0ca57c45adde69522b24790751fe1a1", + "tarball": "http://registry.npmjs.org/hook.io/-/hook.io-0.7.2.tgz" + }, + "0.7.3": { + "shasum": "cfdcc7676e00579f924d287414f9425c9bfdf3ff", + "tarball": "http://registry.npmjs.org/hook.io/-/hook.io-0.7.3.tgz" + }, + "0.7.4": { + "shasum": "e22b7f5f4f94af1f97d9956f7bc8374758040469", + "tarball": "http://registry.npmjs.org/hook.io/-/hook.io-0.7.4.tgz" + }, + "0.7.5": { + "shasum": "60f38bf7e468fb4b1e89f1e7adab4d453806233a", + "tarball": "http://registry.npmjs.org/hook.io/-/hook.io-0.7.5.tgz" + }, + "0.7.6": { + "shasum": "0f9c743bff80a208e77702ea96556c537f78bb02", + "tarball": "http://registry.npmjs.org/hook.io/-/hook.io-0.7.6.tgz" + }, + "0.7.7": { + "shasum": "a32945911628943450f20266ea3c51d33c32f586", + "tarball": "http://registry.npmjs.org/hook.io/-/hook.io-0.7.7.tgz" + }, + "0.8.0": { + "shasum": "8c4a4ca54b3b3d12734e15edd7a83958cc4cd0d7", + "tarball": "http://registry.npmjs.org/hook.io/-/hook.io-0.8.0.tgz" + }, + "0.8.0-1": { + "shasum": "2dff32a2f9cea4e6a5822be04792a2823070ad29", + "tarball": "http://registry.npmjs.org/hook.io/-/hook.io-0.8.0-1.tgz" + }, + "0.8.1": { + "shasum": "c90bfcc0339091b78770a01b079c83a69f558be9", + "tarball": "http://registry.npmjs.org/hook.io/-/hook.io-0.8.1.tgz" + }, + "0.8.2": { + "shasum": "9803ef47fe072848e44059bae5c63b89043359fe", + "tarball": "http://registry.npmjs.org/hook.io/-/hook.io-0.8.2.tgz" + }, + "0.8.2-1": { + "shasum": "19d85eeb8508304d470d05f9ae3acc9bb7dfd437", + "tarball": "http://registry.npmjs.org/hook.io/-/hook.io-0.8.2-1.tgz" + }, + "0.8.3": { + "shasum": "47b163279297f2a3b43be659f4b7be179be01d7e", + "tarball": "http://registry.npmjs.org/hook.io/-/hook.io-0.8.3.tgz" + }, + "0.8.4-1": { + "shasum": "e1d93f2c43b236ec07e0d810a25f42c057fb4c02", + "tarball": "http://registry.npmjs.org/hook.io/-/hook.io-0.8.4-1.tgz" + }, + "0.8.4-2": { + "shasum": "088a64172224b51efd28361806000425f4f31564", + "tarball": "http://registry.npmjs.org/hook.io/-/hook.io-0.8.4-2.tgz" + }, + "0.8.4-4": { + "shasum": "0c429642ca1f7c7c0743afd37097d10c98e5f588", + "tarball": "http://registry.npmjs.org/hook.io/-/hook.io-0.8.4-4.tgz" + }, + "0.8.4-7": { + "shasum": "0caa6f65c166fa6b6fe520a547836386d91e030b", + "tarball": "http://registry.npmjs.org/hook.io/-/hook.io-0.8.4-7.tgz" + } + }, + "url": "http://registry.npmjs.org/hook.io/" + }, + "hook.io-amqp-listener": { + "name": "hook.io-amqp-listener", + "description": "A hook that listens to an amqp queue and forwards messages to the hook.io bus", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "mwawrusch", + "email": "martin@wawrusch.com" + } + ], + "time": { + "modified": "2011-11-09T08:06:48.679Z", + "created": "2011-11-09T05:32:44.975Z", + "0.0.1": "2011-11-09T05:32:46.856Z", + "0.0.2": "2011-11-09T08:06:48.679Z" + }, + "author": { + "name": "Martin Wawrusch", + "email": "martin@wawrusch.com", + "url": "http://martinatsunset.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/scottyapp/hook.io-amqp-listener.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/hook.io-amqp-listener/0.0.1", + "0.0.2": "http://registry.npmjs.org/hook.io-amqp-listener/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "8e863994afaee1dfe3894556d4345ca97e496868", + "tarball": "http://registry.npmjs.org/hook.io-amqp-listener/-/hook.io-amqp-listener-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "70f0e2efcdb90047680cf47ee57e6f5f5c979150", + "tarball": "http://registry.npmjs.org/hook.io-amqp-listener/-/hook.io-amqp-listener-0.0.2.tgz" + } + }, + "keywords": [ + "hook.io", + "amqp", + "listen", + "amqp-listener", + "node-amqp-listener", + "forward", + "node-amqp", + "rabbitmq", + "queue" + ], + "url": "http://registry.npmjs.org/hook.io-amqp-listener/" + }, + "hook.io-blueprint-coffeescript": { + "name": "hook.io-blueprint-coffeescript", + "description": "A blueprint for your own hook.io hooks using Coffeescript and Vows", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "mwawrusch", + "email": "martin@wawrusch.com" + } + ], + "time": { + "modified": "2011-11-09T08:12:52.555Z", + "created": "2011-11-07T14:51:35.665Z", + "0.0.1": "2011-11-07T14:51:37.966Z", + "0.0.2": "2011-11-09T08:12:52.555Z" + }, + "author": { + "name": "Martin Wawrusch", + "email": "martin@wawrusch.com", + "url": "http://martinatsunset.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/scottyapp/hook.io-blueprint-coffeescript.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/hook.io-blueprint-coffeescript/0.0.1", + "0.0.2": "http://registry.npmjs.org/hook.io-blueprint-coffeescript/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "32594354bfcb7f5dd70f356cc7fd3497a67ebc1d", + "tarball": "http://registry.npmjs.org/hook.io-blueprint-coffeescript/-/hook.io-blueprint-coffeescript-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "4993201c316352a9a83df1cf14ed5a8d2ad7a681", + "tarball": "http://registry.npmjs.org/hook.io-blueprint-coffeescript/-/hook.io-blueprint-coffeescript-0.0.2.tgz" + } + }, + "keywords": [ + "hook.io", + "scaffold", + "blueprint-coffeescript", + "blueprint" + ], + "url": "http://registry.npmjs.org/hook.io-blueprint-coffeescript/" + }, + "hook.io-boxcar": { + "name": "hook.io-boxcar", + "description": "Provides a hook to your Boxcar service, sending and receiving notifications", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "ejeklint", + "email": "ejeklint@me.com" + } + ], + "time": { + "modified": "2011-11-27T16:16:03.674Z", + "created": "2011-09-29T16:12:47.704Z", + "0.1.0": "2011-09-29T16:12:49.305Z", + "0.2.0": "2011-11-27T16:16:03.674Z" + }, + "author": { + "name": "Per Ejeklint", + "email": "ejeklint@me.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/ejeklint/boxcar.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/hook.io-boxcar/0.1.0", + "0.2.0": "http://registry.npmjs.org/hook.io-boxcar/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "952f44adebe310b41f2c0854ee170245ef5dd8a0", + "tarball": "http://registry.npmjs.org/hook.io-boxcar/-/hook.io-boxcar-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "12279a35ef8cf4be6fe141de08c6b800ccefd89e", + "tarball": "http://registry.npmjs.org/hook.io-boxcar/-/hook.io-boxcar-0.2.0.tgz" + } + }, + "keywords": [ + "hook", + "hook.io", + "boxcar", + "notifications", + "iOS", + "iPhone", + "iPad" + ], + "url": "http://registry.npmjs.org/hook.io-boxcar/" + }, + "hook.io-browser": { + "name": "hook.io-browser", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "marak", + "email": "marak.squires@gmail.com" + } + ], + "time": { + "modified": "2011-09-14T12:32:51.396Z", + "created": "2011-09-14T12:32:50.030Z", + "0.1.0": "2011-09-14T12:32:51.396Z" + }, + "author": { + "name": "Marak Squires", + "email": "marak.squires@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/hookio/browser.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/hook.io-browser/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "83e4aa496c3980c6bfd7d23575085021d5bc5f2f", + "tarball": "http://registry.npmjs.org/hook.io-browser/-/hook.io-browser-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/hook.io-browser/" + }, + "hook.io-couch": { + "name": "hook.io-couch", + "description": "emit hook.io events based on your CouchDB _changes feed", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "marak", + "email": "marak.squires@gmail.com" + } + ], + "time": { + "modified": "2011-09-11T10:20:14.502Z", + "created": "2011-09-11T10:20:13.254Z", + "0.1.0": "2011-09-11T10:20:14.502Z" + }, + "author": { + "name": "Marak Squires", + "email": "marak.squires@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/hookio/couch.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/hook.io-couch/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "44467659063c193e25f7052d64f7f9d3d4dd0978", + "tarball": "http://registry.npmjs.org/hook.io-couch/-/hook.io-couch-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/hook.io-couch/" + }, + "hook.io-cron": { + "name": "hook.io-cron", + "description": "emit arbitrary Hook.io events with arbitrary data on specified time intervals", + "dist-tags": { + "latest": "0.4.0" + }, + "maintainers": [ + { + "name": "marak", + "email": "marak.squires@gmail.com" + }, + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + }, + { + "name": "jameson", + "email": "jameson@nodejitsu.com" + } + ], + "time": { + "modified": "2011-09-20T10:42:54.557Z", + "created": "2011-07-05T22:28:18.652Z", + "0.1.0": "2011-07-05T22:28:20.139Z", + "0.2.0": "2011-07-24T07:01:45.585Z", + "0.3.0": "2011-07-31T07:17:48.965Z", + "0.3.1": "2011-08-05T08:29:11.111Z", + "0.3.2": "2011-09-12T04:48:32.307Z", + "0.4.0": "2011-09-20T10:42:54.557Z" + }, + "author": { + "name": "Marak Squires", + "email": "marak.squires@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/hookio/cron.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/hook.io-cron/0.1.0", + "0.2.0": "http://registry.npmjs.org/hook.io-cron/0.2.0", + "0.3.0": "http://registry.npmjs.org/hook.io-cron/0.3.0", + "0.3.1": "http://registry.npmjs.org/hook.io-cron/0.3.1", + "0.3.2": "http://registry.npmjs.org/hook.io-cron/0.3.2", + "0.4.0": "http://registry.npmjs.org/hook.io-cron/0.4.0" + }, + "dist": { + "0.1.0": { + "shasum": "8dd75a0b7ef15eb65fd575c31684575a9f8c6251", + "tarball": "http://registry.npmjs.org/hook.io-cron/-/hook.io-cron-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "b7c6d467cbc5bafaabcd620dc1985d311e61d4c4", + "tarball": "http://registry.npmjs.org/hook.io-cron/-/hook.io-cron-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "bf7dba676d356a790cc75de845ae875f2ae79b25", + "tarball": "http://registry.npmjs.org/hook.io-cron/-/hook.io-cron-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "7cfe27c9ff4f7cb8b99694ce55bebd96798bb215", + "tarball": "http://registry.npmjs.org/hook.io-cron/-/hook.io-cron-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "f50740e12b744dc25602a0a30c2e8d8642a4ef81", + "tarball": "http://registry.npmjs.org/hook.io-cron/-/hook.io-cron-0.3.2.tgz" + }, + "0.4.0": { + "shasum": "4edda5c0f815c455102c24f54126709ca6012696", + "tarball": "http://registry.npmjs.org/hook.io-cron/-/hook.io-cron-0.4.0.tgz" + } + }, + "url": "http://registry.npmjs.org/hook.io-cron/" + }, + "hook.io-feed": { + "name": "hook.io-feed", + "description": "a Hook for creating consumable RSS, JSON, ATOM feeds", + "dist-tags": { + "latest": "0.8.1" + }, + "maintainers": [ + { + "name": "pksunkara", + "email": "pavan.sss1991@gmail.com" + }, + { + "name": "marak", + "email": "marak.squires@gmail.com" + } + ], + "time": { + "modified": "2011-11-28T07:40:31.920Z", + "created": "2011-10-02T09:47:33.855Z", + "0.4.0": "2011-10-02T09:47:52.206Z", + "0.8.1": "2011-11-28T07:40:31.920Z" + }, + "author": { + "name": "Marak Squires", + "email": "marak.squires@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/hookio/feed.git" + }, + "versions": { + "0.4.0": "http://registry.npmjs.org/hook.io-feed/0.4.0", + "0.8.1": "http://registry.npmjs.org/hook.io-feed/0.8.1" + }, + "dist": { + "0.4.0": { + "shasum": "250e2b69fb1eb5521cfea5a78952b3b728e342a2", + "tarball": "http://registry.npmjs.org/hook.io-feed/-/hook.io-feed-0.4.0.tgz" + }, + "0.8.1": { + "shasum": "5d2246f00d13ec02c66874d8dbac70f57a116830", + "tarball": "http://registry.npmjs.org/hook.io-feed/-/hook.io-feed-0.8.1.tgz" + } + }, + "url": "http://registry.npmjs.org/hook.io-feed/" + }, + "hook.io-feedsub": { + "name": "hook.io-feedsub", + "description": "Emits hook.io events on new feed items.", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "neat", + "email": "roly426@gmail.com" + } + ], + "time": { + "modified": "2011-12-11T13:52:46.090Z", + "created": "2011-10-10T16:08:27.602Z", + "0.1.0": "2011-10-10T16:08:29.079Z", + "0.1.1": "2011-10-11T07:51:52.482Z", + "0.1.2": "2011-11-17T10:35:48.805Z", + "0.2.0": "2011-12-11T13:52:46.090Z" + }, + "author": { + "name": "Roly Fentanes", + "url": "https://github.com/fent" + }, + "repository": { + "type": "git", + "url": "git://github.com/fent/hook.io-feedsub.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/hook.io-feedsub/0.1.0", + "0.1.1": "http://registry.npmjs.org/hook.io-feedsub/0.1.1", + "0.1.2": "http://registry.npmjs.org/hook.io-feedsub/0.1.2", + "0.2.0": "http://registry.npmjs.org/hook.io-feedsub/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "12c0f4808455e8f495eb4de6aa458f677b717a6c", + "tarball": "http://registry.npmjs.org/hook.io-feedsub/-/hook.io-feedsub-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "519b4f99c7e0978fde4c0b7112788d050fc992d2", + "tarball": "http://registry.npmjs.org/hook.io-feedsub/-/hook.io-feedsub-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "7312ead939fca8e48b7fd7d45a2c5efe3126177b", + "tarball": "http://registry.npmjs.org/hook.io-feedsub/-/hook.io-feedsub-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "c8bbbe6e769ae01ddbc161a48d6d248dfd18c713", + "tarball": "http://registry.npmjs.org/hook.io-feedsub/-/hook.io-feedsub-0.2.0.tgz" + } + }, + "keywords": [ + "hook.io", + "feed", + "rss", + "atom", + "subscribe" + ], + "url": "http://registry.npmjs.org/hook.io-feedsub/" + }, + "hook.io-github-hook": { + "name": "hook.io-github-hook", + "description": "A webhook to process github post receive", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "joshholt44", + "email": "holt.josh@gmail.com" + } + ], + "time": { + "modified": "2011-10-23T18:12:07.384Z", + "created": "2011-10-23T18:12:07.241Z", + "0.0.1": "2011-10-23T18:12:07.384Z" + }, + "author": { + "name": "Josh Holt", + "email": "holt.josh@gmail.com", + "url": "http://joshholt.github.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/joshholt/hook.io-github-hook.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/hook.io-github-hook/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "b126553cf647234e1f733081bae9779f23542c67", + "tarball": "http://registry.npmjs.org/hook.io-github-hook/-/hook.io-github-hook-0.0.1.tgz" + } + }, + "keywords": [ + "hook.io", + "hook" + ], + "url": "http://registry.npmjs.org/hook.io-github-hook/" + }, + "hook.io-gzbz2": { + "name": "hook.io-gzbz2", + "description": "A hook to compress and uncompress. Operates synchronously for now.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "mwawrusch", + "email": "martin@wawrusch.com" + } + ], + "time": { + "modified": "2011-11-07T13:42:26.588Z", + "created": "2011-10-13T15:08:15.148Z", + "0.0.1": "2011-10-13T15:08:17.122Z", + "0.0.2": "2011-11-07T13:42:26.588Z" + }, + "author": { + "name": "Martin Wawrusch", + "email": "martin@wawrusch.com", + "url": "http://martinatsunset.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/scottyapp/hook.io-gzbz2.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/hook.io-gzbz2/0.0.1", + "0.0.2": "http://registry.npmjs.org/hook.io-gzbz2/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "31e6e7b331d3f0b6b27830b9d0add67dba4dfc4f", + "tarball": "http://registry.npmjs.org/hook.io-gzbz2/-/hook.io-gzbz2-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "22ba6a28e067062ea78573a1ea01a05d7a402489", + "tarball": "http://registry.npmjs.org/hook.io-gzbz2/-/hook.io-gzbz2-0.0.2.tgz" + } + }, + "keywords": [ + "hook.io", + "compress", + "uncompress", + "gzbz2", + "node-gzbz2", + "gzip", + "bzip2" + ], + "url": "http://registry.npmjs.org/hook.io-gzbz2/" + }, + "hook.io-helloworld": { + "name": "hook.io-helloworld", + "description": "a simple simple hook for hook.io", + "dist-tags": { + "latest": "0.8.0" + }, + "maintainers": [ + { + "name": "marak", + "email": "marak.squires@gmail.com" + }, + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + }, + { + "name": "jameson", + "email": "jameson@nodejitsu.com" + } + ], + "time": { + "modified": "2011-11-18T13:17:29.755Z", + "created": "2011-06-14T09:51:20.917Z", + "0.1.0": "2011-06-14T09:51:21.549Z", + "0.1.1": "2011-06-22T02:13:50.767Z", + "0.2.0": "2011-07-26T18:49:33.819Z", + "0.2.1": "2011-07-26T19:17:18.739Z", + "0.3.0": "2011-08-05T02:19:45.634Z", + "0.4.0": "2011-09-21T22:28:46.255Z", + "0.8.0": "2011-11-18T13:17:29.755Z" + }, + "author": { + "name": "Marak Squires", + "email": "marak.squires@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/hookio/helloworld.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/hook.io-helloworld/0.1.0", + "0.1.1": "http://registry.npmjs.org/hook.io-helloworld/0.1.1", + "0.2.0": "http://registry.npmjs.org/hook.io-helloworld/0.2.0", + "0.2.1": "http://registry.npmjs.org/hook.io-helloworld/0.2.1", + "0.3.0": "http://registry.npmjs.org/hook.io-helloworld/0.3.0", + "0.4.0": "http://registry.npmjs.org/hook.io-helloworld/0.4.0", + "0.8.0": "http://registry.npmjs.org/hook.io-helloworld/0.8.0" + }, + "dist": { + "0.1.0": { + "shasum": "189291da1b4a00c59be541ceccdf2bb01ff7b2c1", + "tarball": "http://registry.npmjs.org/hook.io-helloworld/-/hook.io-helloworld-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "5e4415b5b0d69ed30a33a06ea8a959d72c23c84f", + "tarball": "http://registry.npmjs.org/hook.io-helloworld/-/hook.io-helloworld-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "4b1644c2fe149a38ab4bb6c63cf9b3156955aec0", + "tarball": "http://registry.npmjs.org/hook.io-helloworld/-/hook.io-helloworld-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "2bcd31a84a6dab32915f5ece58ddf65bda230708", + "tarball": "http://registry.npmjs.org/hook.io-helloworld/-/hook.io-helloworld-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "8176cf1eadd3e260217e88905fff246112ac3a96", + "tarball": "http://registry.npmjs.org/hook.io-helloworld/-/hook.io-helloworld-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "f1a842cf6e3becdce7f70ab4fad1f423362ed171", + "tarball": "http://registry.npmjs.org/hook.io-helloworld/-/hook.io-helloworld-0.4.0.tgz" + }, + "0.8.0": { + "shasum": "f950a23ce741bce4660c3dd11a59f9d41841e9a0", + "tarball": "http://registry.npmjs.org/hook.io-helloworld/-/hook.io-helloworld-0.8.0.tgz" + } + }, + "url": "http://registry.npmjs.org/hook.io-helloworld/" + }, + "hook.io-irc": { + "name": "hook.io-irc", + "description": "IRC Client for hook.io", + "dist-tags": { + "latest": "0.6.0" + }, + "maintainers": [ + { + "name": "marak", + "email": "marak.squires@gmail.com" + } + ], + "time": { + "modified": "2011-11-16T10:24:11.271Z", + "created": "2011-08-02T05:17:18.959Z", + "0.3.0": "2011-08-02T05:17:21.045Z", + "0.4.0": "2011-09-03T07:40:14.240Z", + "0.6.0": "2011-11-16T10:24:11.271Z" + }, + "author": { + "name": "Nodejitsu", + "email": "support@nodejitsu.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/hookio/irc.git" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/hook.io-irc/0.3.0", + "0.4.0": "http://registry.npmjs.org/hook.io-irc/0.4.0", + "0.6.0": "http://registry.npmjs.org/hook.io-irc/0.6.0" + }, + "dist": { + "0.3.0": { + "shasum": "3b0a74618b1d9d69a3c2e47d379c6b8d247d2991", + "tarball": "http://registry.npmjs.org/hook.io-irc/-/hook.io-irc-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "8b83489ef1dc01bbdfae33758ccf7631660c9906", + "tarball": "http://registry.npmjs.org/hook.io-irc/-/hook.io-irc-0.4.0.tgz" + }, + "0.6.0": { + "shasum": "a0370e94bb5f64293ef919550dda958a75857164", + "tarball": "http://registry.npmjs.org/hook.io-irc/-/hook.io-irc-0.6.0.tgz" + } + }, + "url": "http://registry.npmjs.org/hook.io-irc/" + }, + "hook.io-irc-tmp": { + "name": "hook.io-irc-tmp", + "description": "IRC Client for hook.io", + "dist-tags": { + "latest": "0.4.2" + }, + "maintainers": [ + { + "name": "pksunkara", + "email": "pavan.sss1991@gmail.com" + } + ], + "time": { + "modified": "2011-10-14T17:32:44.645Z", + "created": "2011-10-14T17:32:40.898Z", + "0.4.2": "2011-10-14T17:32:44.645Z" + }, + "author": { + "name": "AvianFlu", + "email": "charlie@charlieistheman.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/hookio/irc.git" + }, + "versions": { + "0.4.2": "http://registry.npmjs.org/hook.io-irc-tmp/0.4.2" + }, + "dist": { + "0.4.2": { + "shasum": "5603d0ed8d2ddd77b3844076aceec846e9272d18", + "tarball": "http://registry.npmjs.org/hook.io-irc-tmp/-/hook.io-irc-tmp-0.4.2.tgz" + } + }, + "url": "http://registry.npmjs.org/hook.io-irc-tmp/" + }, + "hook.io-logger": { + "name": "hook.io-logger", + "description": "a Hook logger ( supports Redis, Mongo, Console, Webhook, etc )", + "dist-tags": { + "latest": "0.3.0-1" + }, + "maintainers": [ + { + "name": "marak", + "email": "marak.squires@gmail.com" + } + ], + "time": { + "modified": "2011-09-25T15:53:27.062Z", + "created": "2011-06-14T08:42:14.753Z", + "0.1.0": "2011-06-14T08:42:15.354Z", + "0.1.1": "2011-06-22T02:16:02.218Z", + "0.2.0": "2011-07-26T06:51:49.968Z", + "0.3.0": "2011-08-01T05:24:43.960Z", + "0.3.0-1": "2011-09-25T15:53:27.062Z" + }, + "author": { + "name": "Marak Squires", + "email": "marak.squires@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/hookio/logger.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/hook.io-logger/0.1.0", + "0.1.1": "http://registry.npmjs.org/hook.io-logger/0.1.1", + "0.2.0": "http://registry.npmjs.org/hook.io-logger/0.2.0", + "0.3.0": "http://registry.npmjs.org/hook.io-logger/0.3.0", + "0.3.0-1": "http://registry.npmjs.org/hook.io-logger/0.3.0-1" + }, + "dist": { + "0.1.0": { + "shasum": "cc58e83078afb3d6f7ec0ecc3884debf19c91e4c", + "tarball": "http://registry.npmjs.org/hook.io-logger/-/hook.io-logger-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "38e798133361c35a6b3bfe254a8d1fb209267ec9", + "tarball": "http://registry.npmjs.org/hook.io-logger/-/hook.io-logger-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "5f0aa1f6e31470056c3d2cbc7212564882cb5dc4", + "tarball": "http://registry.npmjs.org/hook.io-logger/-/hook.io-logger-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "29c355d43ecbb3a526b5b95ca23f2d4b35c23597", + "tarball": "http://registry.npmjs.org/hook.io-logger/-/hook.io-logger-0.3.0.tgz" + }, + "0.3.0-1": { + "shasum": "98aa3b51b62d288111d7dde232d8274ae9879a23", + "tarball": "http://registry.npmjs.org/hook.io-logger/-/hook.io-logger-0.3.0-1.tgz" + } + }, + "url": "http://registry.npmjs.org/hook.io-logger/" + }, + "hook.io-mailer": { + "name": "hook.io-mailer", + "dist-tags": { + "latest": "0.3.1" + }, + "maintainers": [ + { + "name": "marak", + "email": "marak.squires@gmail.com" + }, + { + "name": "jameson", + "email": "jameson@nodejitsu.com" + }, + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + } + ], + "time": { + "modified": "2011-11-02T00:45:24.457Z", + "created": "2011-07-11T07:49:25.723Z", + "0.0.1": "2011-07-11T07:49:26.390Z", + "0.2.0": "2011-07-26T08:41:02.678Z", + "0.3.0": "2011-08-01T06:58:46.131Z", + "0.3.1": "2011-10-22T00:40:21.236Z" + }, + "author": { + "name": "Marak Squires", + "email": "marak.squires@gmail.com" + }, + "repository": { + "url": "git://github.com/hookio/mailer.git" + }, + "description": "a simple Hook for sending emails", + "versions": { + "0.0.1": "http://registry.npmjs.org/hook.io-mailer/0.0.1", + "0.2.0": "http://registry.npmjs.org/hook.io-mailer/0.2.0", + "0.3.0": "http://registry.npmjs.org/hook.io-mailer/0.3.0", + "0.3.1": "http://registry.npmjs.org/hook.io-mailer/0.3.1" + }, + "dist": { + "0.0.1": { + "shasum": "71e114ae3abf12aa8eeee550e5e6112bef858001", + "tarball": "http://registry.npmjs.org/hook.io-mailer/-/hook.io-mailer-0.0.1.tgz" + }, + "0.2.0": { + "shasum": "be1d4a6c4c31a4b618dee5e5c75ac827e706cb99", + "tarball": "http://registry.npmjs.org/hook.io-mailer/-/hook.io-mailer-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "2dd4f7c12ec00f140f94eac915a38783b7f1cb89", + "tarball": "http://registry.npmjs.org/hook.io-mailer/-/hook.io-mailer-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "9ea2ea3af8e6aacc317f702432a857d5639e2a80", + "tarball": "http://registry.npmjs.org/hook.io-mailer/-/hook.io-mailer-0.3.1.tgz" + } + }, + "url": "http://registry.npmjs.org/hook.io-mailer/" + }, + "hook.io-mock": { + "name": "hook.io-mock", + "description": "A hook to mock messages to debug your composite hooks. It listens to messages and replies with messages and custom data if a match is found. VERY 0.0.1", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "mwawrusch", + "email": "martin@wawrusch.com" + } + ], + "time": { + "modified": "2011-11-07T13:49:14.868Z", + "created": "2011-10-14T17:10:28.658Z", + "0.0.1": "2011-10-14T17:10:30.870Z", + "0.0.2": "2011-10-15T08:09:45.805Z", + "0.0.3": "2011-10-15T08:20:34.830Z", + "0.0.4": "2011-11-07T13:49:14.868Z" + }, + "author": { + "name": "Martin Wawrusch", + "email": "martin@wawrusch.com", + "url": "http://martinatsunset.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/scottyapp/hook.io-mock.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/hook.io-mock/0.0.1", + "0.0.2": "http://registry.npmjs.org/hook.io-mock/0.0.2", + "0.0.3": "http://registry.npmjs.org/hook.io-mock/0.0.3", + "0.0.4": "http://registry.npmjs.org/hook.io-mock/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "dfc57f63c38727a80f42c960b3f208fe1fa02bdd", + "tarball": "http://registry.npmjs.org/hook.io-mock/-/hook.io-mock-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "0345de651ae1b7dac2b9b28f24248b99e918546b", + "tarball": "http://registry.npmjs.org/hook.io-mock/-/hook.io-mock-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "00e0ace0351c38e601ee52375079c2f4da48ad8b", + "tarball": "http://registry.npmjs.org/hook.io-mock/-/hook.io-mock-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "49ee919009867d31ae385780e9adcdb6fca6abc5", + "tarball": "http://registry.npmjs.org/hook.io-mock/-/hook.io-mock-0.0.4.tgz" + } + }, + "keywords": [ + "hook.io", + "mock", + "bdd", + "testing", + "voews" + ], + "url": "http://registry.npmjs.org/hook.io-mock/" + }, + "hook.io-notify-send": { + "name": "hook.io-notify-send", + "description": "A hook that uses notify-send to make pop-up alerts", + "dist-tags": { + "latest": "0.0.0" + }, + "readme": null, + "maintainers": [ + { + "name": "jesusabdullah", + "email": "josh.holbrook@gmail.com" + } + ], + "time": { + "modified": "2011-11-23T08:21:08.493Z", + "created": "2011-11-23T08:21:07.140Z", + "0.0.0": "2011-11-23T08:21:08.493Z" + }, + "author": { + "name": "Joshua Holbrook", + "email": "josh@nodejitsu.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/jesusabdullah/hookio-notify-send.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/hook.io-notify-send/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "8a9401e2bee875639633ed8d6c571a467c635ea7", + "tarball": "http://registry.npmjs.org/hook.io-notify-send/-/hook.io-notify-send-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/hook.io-notify-send/" + }, + "hook.io-pinger": { + "name": "hook.io-pinger", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "marak", + "email": "marak.squires@gmail.com" + } + ], + "time": { + "modified": "2011-07-08T00:05:51.839Z", + "created": "2011-07-05T22:36:05.697Z", + "0.1.0": "2011-07-05T22:36:06.380Z", + "0.1.1": "2011-07-07T23:42:05.714Z" + }, + "author": { + "name": "Marak Squires", + "email": "marak.squires@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Marak/hook.io-pinger.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/hook.io-pinger/0.1.0", + "0.1.1": "http://registry.npmjs.org/hook.io-pinger/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "3db1739f7fd768b761d197fde0287b1717a3c7a3", + "tarball": "http://registry.npmjs.org/hook.io-pinger/-/hook.io-pinger-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "351f18d60920f6591fd526d4df7b7e7400ecc0ae", + "tarball": "http://registry.npmjs.org/hook.io-pinger/-/hook.io-pinger-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/hook.io-pinger/" + }, + "hook.io-repl": { + "name": "hook.io-repl", + "description": "a simple hook.io enabled REPL for interacting with your Hook cloud", + "dist-tags": { + "latest": "0.4.0" + }, + "maintainers": [ + { + "name": "marak", + "email": "marak.squires@gmail.com" + } + ], + "time": { + "modified": "2011-09-21T22:25:58.571Z", + "created": "2011-06-13T03:36:30.383Z", + "0.1.0": "2011-06-13T03:36:51.018Z", + "0.2.0": "2011-07-24T12:38:19.568Z", + "0.3.0": "2011-08-01T02:13:13.707Z", + "0.4.0": "2011-09-21T22:25:58.571Z" + }, + "author": { + "name": "Marak Squires", + "email": "marak.squires@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/hookio/repl.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/hook.io-repl/0.1.0", + "0.2.0": "http://registry.npmjs.org/hook.io-repl/0.2.0", + "0.3.0": "http://registry.npmjs.org/hook.io-repl/0.3.0", + "0.4.0": "http://registry.npmjs.org/hook.io-repl/0.4.0" + }, + "dist": { + "0.1.0": { + "shasum": "2dc2e2e7fa788c84fcd662ad276b84f4f1ac8b77", + "tarball": "http://registry.npmjs.org/hook.io-repl/-/hook.io-repl-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "98afcd3e54589198f2c857d788b3404f84809353", + "tarball": "http://registry.npmjs.org/hook.io-repl/-/hook.io-repl-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "ebdecb43824023aadf903cda06bf0aba7bf89bd0", + "tarball": "http://registry.npmjs.org/hook.io-repl/-/hook.io-repl-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "e140a54fb368425e20719357359e1283956044c0", + "tarball": "http://registry.npmjs.org/hook.io-repl/-/hook.io-repl-0.4.0.tgz" + } + }, + "url": "http://registry.npmjs.org/hook.io-repl/" + }, + "hook.io-request": { + "name": "hook.io-request", + "description": "a simple Hook for making outgoing http requests", + "dist-tags": { + "latest": "0.4.0" + }, + "maintainers": [ + { + "name": "marak", + "email": "marak.squires@gmail.com" + }, + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + }, + { + "name": "jameson", + "email": "jameson@nodejitsu.com" + } + ], + "time": { + "modified": "2011-09-20T10:45:20.281Z", + "created": "2011-07-05T22:31:25.166Z", + "0.1.0": "2011-07-05T22:31:25.765Z", + "0.2.0": "2011-07-24T08:54:12.236Z", + "0.3.0": "2011-08-01T02:41:29.498Z", + "0.3.2": "2011-08-10T02:32:27.275Z", + "0.4.0": "2011-09-20T10:45:20.281Z" + }, + "author": { + "name": "Marak Squires", + "email": "marak.squires@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/hookio/request.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/hook.io-request/0.1.0", + "0.2.0": "http://registry.npmjs.org/hook.io-request/0.2.0", + "0.3.0": "http://registry.npmjs.org/hook.io-request/0.3.0", + "0.3.2": "http://registry.npmjs.org/hook.io-request/0.3.2", + "0.4.0": "http://registry.npmjs.org/hook.io-request/0.4.0" + }, + "dist": { + "0.1.0": { + "shasum": "2c3e10074674be88ffabfc09e9f6d6c701dbc042", + "tarball": "http://registry.npmjs.org/hook.io-request/-/hook.io-request-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "6f2f472eb38b0c21ca46eb6378e7d307fc5d2ce3", + "tarball": "http://registry.npmjs.org/hook.io-request/-/hook.io-request-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "26c66b045ceda7ed96be9c263d6562930f6eb004", + "tarball": "http://registry.npmjs.org/hook.io-request/-/hook.io-request-0.3.0.tgz" + }, + "0.3.2": { + "shasum": "f0fd2e6fee8f4749d82b0dccbb63fe90cf149ffd", + "tarball": "http://registry.npmjs.org/hook.io-request/-/hook.io-request-0.3.2.tgz" + }, + "0.4.0": { + "shasum": "5bc1d8577953a6376c9f1776010eedd9c08f1a27", + "tarball": "http://registry.npmjs.org/hook.io-request/-/hook.io-request-0.4.0.tgz" + } + }, + "url": "http://registry.npmjs.org/hook.io-request/" + }, + "hook.io-say": { + "name": "hook.io-say", + "description": "hook.io interface to say.js", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "mmalecki", + "email": "maciej.malecki@notimplemented.org" + } + ], + "time": { + "modified": "2011-10-23T17:30:13.692Z", + "created": "2011-10-22T15:42:23.728Z", + "0.1.0": "2011-10-22T15:42:25.999Z", + "0.1.1": "2011-10-23T17:30:13.692Z" + }, + "author": { + "name": "Maciej Małecki", + "email": "maciej.malecki@notimplemented.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/mmalecki/hook.io-say.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/hook.io-say/0.1.0", + "0.1.1": "http://registry.npmjs.org/hook.io-say/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "9f8ff9daa1830f3d53c088fc73350120aa7655b1", + "tarball": "http://registry.npmjs.org/hook.io-say/-/hook.io-say-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "a05f22f43e2a5dd6c3e767eff1bc48333d6b3a8f", + "tarball": "http://registry.npmjs.org/hook.io-say/-/hook.io-say-0.1.1.tgz" + } + }, + "keywords": [ + "say", + "tts", + "hook.io", + "speech" + ], + "url": "http://registry.npmjs.org/hook.io-say/" + }, + "hook.io-sitemonitor": { + "name": "hook.io-sitemonitor", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "marak", + "email": "marak.squires@gmail.com" + }, + { + "name": "kesla", + "email": "david.bjorklund@gmail.com" + } + ], + "time": { + "modified": "2011-09-20T10:48:50.182Z", + "created": "2011-08-10T07:24:00.893Z", + "0.1.0": "2011-08-10T07:24:01.521Z", + "0.1.1": "2011-08-11T06:13:47.072Z", + "0.2.0": "2011-09-20T10:48:50.182Z" + }, + "author": { + "name": "Marak Squires", + "email": "marak.squires@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/hookio/sitemonitor.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/hook.io-sitemonitor/0.1.0", + "0.1.1": "http://registry.npmjs.org/hook.io-sitemonitor/0.1.1", + "0.2.0": "http://registry.npmjs.org/hook.io-sitemonitor/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "14151cdbd424991e5675989c07851cf56701d26f", + "tarball": "http://registry.npmjs.org/hook.io-sitemonitor/-/hook.io-sitemonitor-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "342ca038309637249fe41dd5906a5f1a2a07b1c5", + "tarball": "http://registry.npmjs.org/hook.io-sitemonitor/-/hook.io-sitemonitor-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "38d0308d337a7f240ae521b5a5de389f4205141f", + "tarball": "http://registry.npmjs.org/hook.io-sitemonitor/-/hook.io-sitemonitor-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/hook.io-sitemonitor/" + }, + "hook.io-tar": { + "name": "hook.io-tar", + "description": "A hook to archive and unarchive with tar. Operates synchronously for now.", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "mwawrusch", + "email": "martin@wawrusch.com" + } + ], + "time": { + "modified": "2011-11-07T14:02:12.836Z", + "created": "2011-10-14T07:55:03.937Z", + "0.0.1": "2011-10-14T07:55:07.440Z", + "0.0.2": "2011-11-07T13:56:44.339Z", + "0.0.3": "2011-11-07T14:02:12.836Z" + }, + "author": { + "name": "Martin Wawrusch", + "email": "martin@wawrusch.com", + "url": "http://martinatsunset.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/scottyapp/hook.io-tar.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/hook.io-tar/0.0.1", + "0.0.2": "http://registry.npmjs.org/hook.io-tar/0.0.2", + "0.0.3": "http://registry.npmjs.org/hook.io-tar/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "d19350a6507c0d9c1dc25a95ee47a182ff32f9d0", + "tarball": "http://registry.npmjs.org/hook.io-tar/-/hook.io-tar-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "d51a1b9492c5b89f7ea2a9806b1f18fcabc37a7c", + "tarball": "http://registry.npmjs.org/hook.io-tar/-/hook.io-tar-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "bfa1e4e3d54b86af6820b27fd8fd328e1667cdeb", + "tarball": "http://registry.npmjs.org/hook.io-tar/-/hook.io-tar-0.0.3.tgz" + } + }, + "keywords": [ + "hook.io", + "tar", + "untar", + "tar", + "tar-async", + "untar", + "archive", + "unarchive" + ], + "url": "http://registry.npmjs.org/hook.io-tar/" + }, + "hook.io-tmp": { + "name": "hook.io-tmp", + "dist-tags": { + "latest": "0.7.7" + }, + "maintainers": [ + { + "name": "pksunkara", + "email": "pavan.sss1991@gmail.com" + } + ], + "time": { + "modified": "2011-10-14T17:34:09.250Z", + "created": "2011-10-14T17:34:04.504Z", + "0.7.7": "2011-10-14T17:34:09.250Z" + }, + "author": { + "name": "Marak Squires", + "email": "marak.squires@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/hookio/hook.io.git" + }, + "versions": { + "0.7.7": "http://registry.npmjs.org/hook.io-tmp/0.7.7" + }, + "dist": { + "0.7.7": { + "shasum": "21e5f556bc23fed5046457fb62174aee878b973d", + "tarball": "http://registry.npmjs.org/hook.io-tmp/-/hook.io-tmp-0.7.7.tgz" + } + }, + "url": "http://registry.npmjs.org/hook.io-tmp/" + }, + "hook.io-twilio": { + "name": "hook.io-twilio", + "description": "a Hook for sending sms messages, making phone calls, and getting phone calls", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "marak", + "email": "marak.squires@gmail.com" + } + ], + "time": { + "modified": "2011-08-01T05:55:01.996Z", + "created": "2011-07-07T23:53:04.625Z", + "0.1.0": "2011-07-07T23:53:05.229Z", + "0.2.0": "2011-07-26T20:18:06.693Z", + "0.3.0": "2011-08-01T05:55:01.996Z" + }, + "author": { + "name": "Marak Squires", + "email": "marak.squires@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/hookio/twilio.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/hook.io-twilio/0.1.0", + "0.2.0": "http://registry.npmjs.org/hook.io-twilio/0.2.0", + "0.3.0": "http://registry.npmjs.org/hook.io-twilio/0.3.0" + }, + "dist": { + "0.1.0": { + "shasum": "fb37aadba776ead0971aeedcdb71ddf3491ea9af", + "tarball": "http://registry.npmjs.org/hook.io-twilio/-/hook.io-twilio-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "3d047202911302036234ce49e5d81e426030899f", + "tarball": "http://registry.npmjs.org/hook.io-twilio/-/hook.io-twilio-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "4332a3f2012ec607a8406bdb5522922253b5a633", + "tarball": "http://registry.npmjs.org/hook.io-twilio/-/hook.io-twilio-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/hook.io-twilio/" + }, + "hook.io-twitter": { + "name": "hook.io-twitter", + "description": "Twitter API Client for hook.io", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "marak", + "email": "marak.squires@gmail.com" + }, + { + "name": "avianflu", + "email": "charlie@charlieistheman.com" + } + ], + "time": { + "modified": "2011-10-25T02:04:03.010Z", + "created": "2011-09-04T00:03:44.953Z", + "0.2.0": "2011-09-04T00:03:46.522Z", + "0.2.1": "2011-10-20T22:20:42.397Z", + "0.2.2": "2011-10-25T02:04:03.010Z" + }, + "author": { + "name": "AvianFlu" + }, + "repository": { + "type": "git", + "url": "git://github.com/hookio/twitter.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/hook.io-twitter/0.2.0", + "0.2.1": "http://registry.npmjs.org/hook.io-twitter/0.2.1", + "0.2.2": "http://registry.npmjs.org/hook.io-twitter/0.2.2" + }, + "dist": { + "0.2.0": { + "shasum": "051db8a7c518f95f4212108eb76df099e8962488", + "tarball": "http://registry.npmjs.org/hook.io-twitter/-/hook.io-twitter-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "d0aa800c809724c5d19b4ca317956501af4f020b", + "tarball": "http://registry.npmjs.org/hook.io-twitter/-/hook.io-twitter-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "6073e22e46bb9642b8d192f5ccc27a527db44d77", + "tarball": "http://registry.npmjs.org/hook.io-twitter/-/hook.io-twitter-0.2.2.tgz" + } + }, + "url": "http://registry.npmjs.org/hook.io-twitter/" + }, + "hook.io-vanilla": { + "name": "hook.io-vanilla", + "description": "The Vanilla Hook", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "joshholt44", + "email": "holt.josh@gmail.com" + } + ], + "time": { + "modified": "2011-10-23T18:57:08.561Z", + "created": "2011-10-23T18:11:52.497Z", + "0.0.1": "2011-10-23T18:11:52.654Z", + "0.0.2": "2011-10-23T18:19:49.886Z", + "0.0.3": "2011-10-23T18:57:08.561Z" + }, + "author": { + "name": "Josh Holt", + "email": "holt.josh@gmail.com", + "url": "http://joshholt.github.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/joshholt/hook.io-vanilla.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/hook.io-vanilla/0.0.1", + "0.0.2": "http://registry.npmjs.org/hook.io-vanilla/0.0.2", + "0.0.3": "http://registry.npmjs.org/hook.io-vanilla/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "7dc6e149273e4d4b449eef8c872b503396397422", + "tarball": "http://registry.npmjs.org/hook.io-vanilla/-/hook.io-vanilla-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "362043b6eff1d35ca1ff8f117c88d9534d3d6ae7", + "tarball": "http://registry.npmjs.org/hook.io-vanilla/-/hook.io-vanilla-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "b5d53522402a24f0401016d0b44683d814ad80cc", + "tarball": "http://registry.npmjs.org/hook.io-vanilla/-/hook.io-vanilla-0.0.3.tgz" + } + }, + "keywords": [ + "hook.io", + "hook" + ], + "url": "http://registry.npmjs.org/hook.io-vanilla/" + }, + "hook.io-web": { + "name": "hook.io-web", + "description": "A webhook to process github post receive", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "joshholt44", + "email": "holt.josh@gmail.com" + } + ], + "time": { + "modified": "2011-10-23T18:12:14.138Z", + "created": "2011-10-23T18:12:14.006Z", + "0.0.1": "2011-10-23T18:12:14.138Z" + }, + "author": { + "name": "Josh Holt", + "email": "holt.josh@gmail.com", + "url": "http://joshholt.github.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/joshholt/hook.io-web.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/hook.io-web/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "8ad79f199a77862db02a4f0715ca7e20823b19da", + "tarball": "http://registry.npmjs.org/hook.io-web/-/hook.io-web-0.0.1.tgz" + } + }, + "keywords": [ + "hook.io", + "hook" + ], + "url": "http://registry.npmjs.org/hook.io-web/" + }, + "hook.io-webhook": { + "name": "hook.io-webhook", + "description": "a simple Hook which creates a httpServer and emits incoming requests to your Hook cloud", + "dist-tags": { + "latest": "0.8.1" + }, + "maintainers": [ + { + "name": "marak", + "email": "marak.squires@gmail.com" + } + ], + "time": { + "modified": "2011-11-28T08:01:26.839Z", + "created": "2011-06-13T09:49:52.295Z", + "0.1.0": "2011-06-13T09:49:52.882Z", + "0.1.1": "2011-06-25T14:18:44.001Z", + "0.1.2": "2011-07-06T00:08:24.482Z", + "0.2.0": "2011-07-24T13:46:13.083Z", + "0.3.0": "2011-08-01T05:25:07.843Z", + "0.8.0": "2011-11-16T10:36:05.481Z", + "0.8.1": "2011-11-28T08:01:26.839Z" + }, + "author": { + "name": "Marak Squires", + "email": "marak.squires@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/hookio/webhook.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/hook.io-webhook/0.1.0", + "0.1.1": "http://registry.npmjs.org/hook.io-webhook/0.1.1", + "0.1.2": "http://registry.npmjs.org/hook.io-webhook/0.1.2", + "0.2.0": "http://registry.npmjs.org/hook.io-webhook/0.2.0", + "0.3.0": "http://registry.npmjs.org/hook.io-webhook/0.3.0", + "0.8.0": "http://registry.npmjs.org/hook.io-webhook/0.8.0", + "0.8.1": "http://registry.npmjs.org/hook.io-webhook/0.8.1" + }, + "dist": { + "0.1.0": { + "shasum": "ac413bc0ccbcf971c21f4179585ee01aee9bd6d1", + "tarball": "http://registry.npmjs.org/hook.io-webhook/-/hook.io-webhook-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "b9d3902539243c54b73a1b5da54163a2cfd94d6f", + "tarball": "http://registry.npmjs.org/hook.io-webhook/-/hook.io-webhook-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "ca34179414662d66ae6a4281c03ed2fabebdfa40", + "tarball": "http://registry.npmjs.org/hook.io-webhook/-/hook.io-webhook-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "479b6583746411adda2211d279253e10eff24f8d", + "tarball": "http://registry.npmjs.org/hook.io-webhook/-/hook.io-webhook-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "0813ec4678b098d096d96af2872925097994e958", + "tarball": "http://registry.npmjs.org/hook.io-webhook/-/hook.io-webhook-0.3.0.tgz" + }, + "0.8.0": { + "shasum": "ae0ae38ab70063d52cacda69acc5cf9b067b9d68", + "tarball": "http://registry.npmjs.org/hook.io-webhook/-/hook.io-webhook-0.8.0.tgz" + }, + "0.8.1": { + "shasum": "69b80c3f441ce1bbea81cf13a8fdf2c9cb9a6664", + "tarball": "http://registry.npmjs.org/hook.io-webhook/-/hook.io-webhook-0.8.1.tgz" + } + }, + "url": "http://registry.npmjs.org/hook.io-webhook/" + }, + "hook.io-webserver": { + "name": "hook.io-webserver", + "description": "basic hook.io enabled webserver with socket.io browser bridge", + "dist-tags": { + "latest": "0.8.1" + }, + "maintainers": [ + { + "name": "marak", + "email": "marak.squires@gmail.com" + } + ], + "time": { + "modified": "2011-11-28T08:08:41.777Z", + "created": "2011-06-27T18:48:13.595Z", + "0.1.0": "2011-06-27T18:48:14.219Z", + "0.1.1": "2011-07-05T22:28:02.560Z", + "0.1.2": "2011-07-07T23:41:14.113Z", + "0.2.0": "2011-08-11T08:41:00.105Z", + "0.3.0": "2011-09-14T12:37:53.652Z", + "0.4.0": "2011-09-22T08:20:39.690Z", + "0.8.0": "2011-11-24T00:08:33.730Z", + "0.8.1": "2011-11-28T08:08:41.777Z" + }, + "author": { + "name": "Marak Squires", + "email": "marak.squires@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/hookio/webserver.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/hook.io-webserver/0.1.0", + "0.1.1": "http://registry.npmjs.org/hook.io-webserver/0.1.1", + "0.1.2": "http://registry.npmjs.org/hook.io-webserver/0.1.2", + "0.2.0": "http://registry.npmjs.org/hook.io-webserver/0.2.0", + "0.3.0": "http://registry.npmjs.org/hook.io-webserver/0.3.0", + "0.4.0": "http://registry.npmjs.org/hook.io-webserver/0.4.0", + "0.8.0": "http://registry.npmjs.org/hook.io-webserver/0.8.0", + "0.8.1": "http://registry.npmjs.org/hook.io-webserver/0.8.1" + }, + "dist": { + "0.1.0": { + "shasum": "a09d76e0e48c5d61a2aee416547b6acb692a407f", + "tarball": "http://registry.npmjs.org/hook.io-webserver/-/hook.io-webserver-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "f552de9f17e3171d11092426213807a4da2e39f3", + "tarball": "http://registry.npmjs.org/hook.io-webserver/-/hook.io-webserver-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "83bbc48559de0d374f367d4989d1f3033a2e4d87", + "tarball": "http://registry.npmjs.org/hook.io-webserver/-/hook.io-webserver-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "d84472ecb6fe7d33c92baa8eadcb198944d52c10", + "tarball": "http://registry.npmjs.org/hook.io-webserver/-/hook.io-webserver-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "f9e112044a34ae0a10f3dd551561c40b88146c44", + "tarball": "http://registry.npmjs.org/hook.io-webserver/-/hook.io-webserver-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "62f7d61a8ffc2bf4dcb2c940b003a67a5b69dc5d", + "tarball": "http://registry.npmjs.org/hook.io-webserver/-/hook.io-webserver-0.4.0.tgz" + }, + "0.8.0": { + "shasum": "d9331e4547e276d1e4a46e4f24f30dc0071a552d", + "tarball": "http://registry.npmjs.org/hook.io-webserver/-/hook.io-webserver-0.8.0.tgz" + }, + "0.8.1": { + "shasum": "4bd73a7896553e8ae0728380f2803d350861e993", + "tarball": "http://registry.npmjs.org/hook.io-webserver/-/hook.io-webserver-0.8.1.tgz" + } + }, + "url": "http://registry.npmjs.org/hook.io-webserver/" + }, + "hook.io-wget": { + "name": "hook.io-wget", + "description": "A hook to retrieve files through http. Based on the http-get module by Stefan Rusu.", + "dist-tags": { + "latest": "0.0.7" + }, + "maintainers": [ + { + "name": "mwawrusch", + "email": "martin@wawrusch.com" + } + ], + "time": { + "modified": "2011-11-07T14:06:21.881Z", + "created": "2011-10-12T15:32:13.433Z", + "0.0.4": "2011-10-12T15:32:15.365Z", + "0.0.5": "2011-10-12T15:38:35.626Z", + "0.0.6": "2011-10-12T15:44:00.575Z", + "0.0.7": "2011-11-07T14:06:21.881Z" + }, + "author": { + "name": "Martin Wawrusch", + "email": "martin@wawrusch.com", + "url": "http://martinatsunset.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/scottyapp/hook.io-wget.git" + }, + "versions": { + "0.0.4": "http://registry.npmjs.org/hook.io-wget/0.0.4", + "0.0.5": "http://registry.npmjs.org/hook.io-wget/0.0.5", + "0.0.6": "http://registry.npmjs.org/hook.io-wget/0.0.6", + "0.0.7": "http://registry.npmjs.org/hook.io-wget/0.0.7" + }, + "dist": { + "0.0.4": { + "shasum": "93354bbe301badfcc9032353f9a536e4411edec1", + "tarball": "http://registry.npmjs.org/hook.io-wget/-/hook.io-wget-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "b94cb14a0174a169990973de3a384ae2d7b26679", + "tarball": "http://registry.npmjs.org/hook.io-wget/-/hook.io-wget-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "57c88609a1139b4e23e95111ea078af43ae50f2d", + "tarball": "http://registry.npmjs.org/hook.io-wget/-/hook.io-wget-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "da905b90e31f015add1efc3f3117b70dba6671fa", + "tarball": "http://registry.npmjs.org/hook.io-wget/-/hook.io-wget-0.0.7.tgz" + } + }, + "keywords": [ + "hook.io", + "download", + "wget", + "downloader", + "http" + ], + "url": "http://registry.npmjs.org/hook.io-wget/" + }, + "hook.io-ws": { + "name": "hook.io-ws", + "description": "hook for websocket connection", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "cronopio", + "email": "aristizabal.daniel@gmail.com" + }, + { + "name": "marak", + "email": "marak.squires@gmail.com" + } + ], + "time": { + "modified": "2011-09-16T00:43:22.132Z", + "created": "2011-09-16T00:41:30.297Z", + "0.0.1": "2011-09-16T00:41:31.581Z" + }, + "author": { + "name": "Daniel Aristizabal", + "email": "aristizabal.daniel@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/cronopio/hook.io-ws.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/hook.io-ws/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "0af67707634448c809c18292665ebbb53afd10f6", + "tarball": "http://registry.npmjs.org/hook.io-ws/-/hook.io-ws-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/hook.io-ws/" + }, + "hooks": { + "name": "hooks", + "description": "Adds pre and post hook functionality to your JavaScript methods.", + "dist-tags": { + "latest": "0.1.9" + }, + "maintainers": [ + { + "name": "bnoguchi", + "email": "brian.noguchi@gmail.com" + } + ], + "time": { + "modified": "2011-07-20T18:35:30.062Z", + "created": "2011-02-19T01:16:51.223Z", + "0.0.1": "2011-02-19T01:16:51.634Z", + "0.1.0": "2011-02-23T02:17:57.779Z", + "0.1.1": "2011-03-25T21:46:00.970Z", + "0.1.2": "2011-05-22T00:19:14.184Z", + "0.1.3": "2011-05-22T05:43:29.358Z", + "0.1.4": "2011-05-22T06:35:20.971Z", + "0.1.5": "2011-05-22T19:31:56.828Z", + "0.1.6": "2011-06-03T21:30:31.630Z", + "0.1.7": "2011-06-07T21:36:00.985Z", + "0.1.9": "2011-06-14T06:02:48.418Z" + }, + "author": { + "name": "Brian Noguchi", + "email": "brian.noguchi@gmail.com", + "url": "https://github.com/bnoguchi/" + }, + "repository": { + "type": "git", + "url": "git://github.com/bnoguchi/hooks-js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/hooks/0.0.1", + "0.1.0": "http://registry.npmjs.org/hooks/0.1.0", + "0.1.1": "http://registry.npmjs.org/hooks/0.1.1", + "0.1.2": "http://registry.npmjs.org/hooks/0.1.2", + "0.1.3": "http://registry.npmjs.org/hooks/0.1.3", + "0.1.4": "http://registry.npmjs.org/hooks/0.1.4", + "0.1.5": "http://registry.npmjs.org/hooks/0.1.5", + "0.1.6": "http://registry.npmjs.org/hooks/0.1.6", + "0.1.7": "http://registry.npmjs.org/hooks/0.1.7", + "0.1.9": "http://registry.npmjs.org/hooks/0.1.9" + }, + "dist": { + "0.0.1": { + "shasum": "8c8b671930e83a5ff9bacaf09cb3c3657378763e", + "tarball": "http://registry.npmjs.org/hooks/-/hooks-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "b43e7a2d3708406e5164f6d2ceea80d9c9fae522", + "tarball": "http://registry.npmjs.org/hooks/-/hooks-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "258bf659f81608bd457012a46d3b0e3afc16043c", + "tarball": "http://registry.npmjs.org/hooks/-/hooks-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "23a1a7889479662b79016a6381cdacff6b4eb12f", + "tarball": "http://registry.npmjs.org/hooks/-/hooks-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "28b731b077922fbea629865870695bcc6a16aa95", + "tarball": "http://registry.npmjs.org/hooks/-/hooks-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "8e9cd1f79090aeca8d391d18cd1de59d63f523bc", + "tarball": "http://registry.npmjs.org/hooks/-/hooks-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "7b145c6d01b9904215e32f4e4c632d0b97b30e13", + "tarball": "http://registry.npmjs.org/hooks/-/hooks-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "b19ff60ae05bdb7f96aa7df9baf3c5bb45a10fc3", + "tarball": "http://registry.npmjs.org/hooks/-/hooks-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "1c624f5146a4f8b28344a716750c857cbdcead2b", + "tarball": "http://registry.npmjs.org/hooks/-/hooks-0.1.7.tgz" + }, + "0.1.9": { + "shasum": "5f861def6916a53071d42ba4d0e2da3e76fc04b8", + "tarball": "http://registry.npmjs.org/hooks/-/hooks-0.1.9.tgz" + } + }, + "keywords": [ + "node", + "hooks", + "middleware", + "pre", + "post" + ], + "url": "http://registry.npmjs.org/hooks/" + }, + "horaa": { + "name": "horaa", + "description": "Mocking NodeJS Modules", + "dist-tags": { + "latest": "0.1.1alpha" + }, + "maintainers": [ + { + "name": "arunoda", + "email": "arunoda.susiripala@gmail.com" + } + ], + "time": { + "modified": "2011-07-15T11:43:21.615Z", + "created": "2011-07-14T17:37:42.288Z", + "0.1.0alpha": "2011-07-14T17:38:06.185Z", + "0.1.1alpha": "2011-07-15T11:43:21.615Z" + }, + "author": { + "name": "Arunoda Susiripala", + "email": "arunoda.susiripala@gmail.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:arunoda/horaa.git" + }, + "versions": { + "0.1.0alpha": "http://registry.npmjs.org/horaa/0.1.0alpha", + "0.1.1alpha": "http://registry.npmjs.org/horaa/0.1.1alpha" + }, + "dist": { + "0.1.0alpha": { + "shasum": "95bc3dbb9f484480675d0803465279b099950413", + "tarball": "http://registry.npmjs.org/horaa/-/horaa-0.1.0alpha.tgz" + }, + "0.1.1alpha": { + "shasum": "7ea96824db1d9a5c91c5086921568718426ddedc", + "tarball": "http://registry.npmjs.org/horaa/-/horaa-0.1.1alpha.tgz" + } + }, + "url": "http://registry.npmjs.org/horaa/" + }, + "hornet": { + "name": "hornet", + "description": "Realtime engine for secured pub/sub in web applications. Backed by Socket.io, redis.", + "dist-tags": { + "latest": "0.2.3" + }, + "maintainers": [ + { + "name": "robink", + "email": "robin.komiwes@gmail.com" + }, + { + "name": "maximebrazeilles", + "email": "maxime.brazeilles@gmail.com" + } + ], + "time": { + "modified": "2011-09-19T15:46:59.355Z", + "created": "2011-06-17T16:00:21.767Z", + "0.1.0": "2011-06-17T16:00:22.306Z", + "0.1.1": "2011-06-20T11:58:31.890Z", + "0.1.2": "2011-06-20T12:00:38.963Z", + "0.1.3": "2011-06-20T12:03:29.664Z", + "0.1.4": "2011-06-20T12:14:51.764Z", + "0.1.5": "2011-06-20T15:07:13.314Z", + "0.2.0": "2011-07-01T17:19:33.023Z", + "0.2.1": "2011-07-27T13:36:08.473Z", + "0.2.2": "2011-08-05T08:35:28.762Z", + "0.2.3": "2011-09-19T15:46:59.355Z" + }, + "author": { + "name": "Nectify" + }, + "repository": { + "type": "git", + "url": "git@github.com:nectify/hornet.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/hornet/0.1.0", + "0.1.1": "http://registry.npmjs.org/hornet/0.1.1", + "0.1.2": "http://registry.npmjs.org/hornet/0.1.2", + "0.1.3": "http://registry.npmjs.org/hornet/0.1.3", + "0.1.4": "http://registry.npmjs.org/hornet/0.1.4", + "0.1.5": "http://registry.npmjs.org/hornet/0.1.5", + "0.2.0": "http://registry.npmjs.org/hornet/0.2.0", + "0.2.1": "http://registry.npmjs.org/hornet/0.2.1", + "0.2.2": "http://registry.npmjs.org/hornet/0.2.2", + "0.2.3": "http://registry.npmjs.org/hornet/0.2.3" + }, + "dist": { + "0.1.0": { + "shasum": "2437d6da135af90b1ec30ef63f7ce3b9f79dee79", + "tarball": "http://registry.npmjs.org/hornet/-/hornet-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "b90dcda23b98383528a5c79053e40ae203156cf3", + "tarball": "http://registry.npmjs.org/hornet/-/hornet-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "f1d0f1ef91d022febca3fa792cd036150de39281", + "tarball": "http://registry.npmjs.org/hornet/-/hornet-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "e71cbc135d90eaaaf422c0bfd7ae28d11b333aa8", + "tarball": "http://registry.npmjs.org/hornet/-/hornet-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "63e135f59cc510a917f5eb4f1e1ed64b298000ee", + "tarball": "http://registry.npmjs.org/hornet/-/hornet-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "b6e507cce4dea8260b50ca7c04091345f6fae6a4", + "tarball": "http://registry.npmjs.org/hornet/-/hornet-0.1.5.tgz" + }, + "0.2.0": { + "shasum": "9f57272cc9e4e935fd5b2a5961f6ea6590f65cee", + "tarball": "http://registry.npmjs.org/hornet/-/hornet-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "8916fefde8f4207ef4e8f84f00efad9a59e12ec7", + "tarball": "http://registry.npmjs.org/hornet/-/hornet-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "e3c7231ccdbcd6d2b4bc0961e239afa46f19731f", + "tarball": "http://registry.npmjs.org/hornet/-/hornet-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "1310ce5cc477fc1e2239f5355da71e9271a6f835", + "tarball": "http://registry.npmjs.org/hornet/-/hornet-0.2.3.tgz" + } + }, + "url": "http://registry.npmjs.org/hornet/" + }, + "horseman": { + "name": "horseman", + "description": "A headless browser environment for unit testing", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "benrady", + "email": "benrady@gmail.com" + } + ], + "time": { + "modified": "2011-08-02T19:53:23.430Z", + "created": "2011-08-01T17:25:24.429Z", + "0.1.0": "2011-08-01T17:25:24.614Z", + "0.1.1": "2011-08-01T17:34:40.917Z", + "0.1.2": "2011-08-01T17:45:34.144Z", + "0.2.0": "2011-08-02T18:57:49.198Z", + "0.2.1": "2011-08-02T19:53:23.430Z" + }, + "author": { + "name": "Ben Rady", + "email": "benrady@gmail.com", + "url": "http://benrady.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/benrady/horseman.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/horseman/0.1.0", + "0.1.1": "http://registry.npmjs.org/horseman/0.1.1", + "0.1.2": "http://registry.npmjs.org/horseman/0.1.2", + "0.2.0": "http://registry.npmjs.org/horseman/0.2.0", + "0.2.1": "http://registry.npmjs.org/horseman/0.2.1" + }, + "dist": { + "0.1.0": { + "shasum": "0dd9b4d11ef368c9337301fc5d24eea838f4b838", + "tarball": "http://registry.npmjs.org/horseman/-/horseman-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "7067dd7745e3ee436feca5204797e94fdf058fad", + "tarball": "http://registry.npmjs.org/horseman/-/horseman-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "04467989d8023d0d0abd15b2192da29ff98075b7", + "tarball": "http://registry.npmjs.org/horseman/-/horseman-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "f8cd633ff716085114e851b361608cb12373f247", + "tarball": "http://registry.npmjs.org/horseman/-/horseman-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "9af336bd8073a33357fd9b481e1dc67a51883efd", + "tarball": "http://registry.npmjs.org/horseman/-/horseman-0.2.1.tgz" + } + }, + "url": "http://registry.npmjs.org/horseman/" + }, + "hostify": { + "name": "hostify", + "description": "A simple http/https vhost manager, config file driven", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "coverslide", + "email": "coverslide@gmail.com" + } + ], + "time": { + "modified": "2011-07-15T12:21:38.385Z", + "created": "2011-07-13T06:34:04.370Z", + "0.0.0": "2011-07-13T06:34:05.203Z", + "0.0.1": "2011-07-14T22:58:58.444Z", + "0.0.2": "2011-07-15T12:21:38.385Z" + }, + "author": { + "name": "Richard Hoffman" + }, + "repository": { + "type": "git", + "url": "git://github.com/coverslide/node-hostify.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/hostify/0.0.0", + "0.0.1": "http://registry.npmjs.org/hostify/0.0.1", + "0.0.2": "http://registry.npmjs.org/hostify/0.0.2" + }, + "dist": { + "0.0.0": { + "shasum": "bd0641a84e4daa2ee90ff60148055ac153bddce2", + "tarball": "http://registry.npmjs.org/hostify/-/hostify-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "4337c988e177afae188611f5c438ebc71376ee5f", + "tarball": "http://registry.npmjs.org/hostify/-/hostify-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "01f719f8a9af1e037143a1e0e41b64ff462c4569", + "tarball": "http://registry.npmjs.org/hostify/-/hostify-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/hostify/" + }, + "hostinfo": { + "name": "hostinfo", + "description": "Uses the hostinfo database to geocode ip addresses", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "cartercole", + "email": "node@cartercole.com" + } + ], + "time": { + "modified": "2011-08-22T16:18:40.714Z", + "created": "2011-08-22T16:12:12.703Z", + "0.0.1": "2011-08-22T16:12:20.092Z", + "0.0.2": "2011-08-22T16:18:40.714Z" + }, + "author": { + "name": "Carter Cole", + "email": "node@cartercole.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/neopunisher/node-hostip.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/hostinfo/0.0.1", + "0.0.2": "http://registry.npmjs.org/hostinfo/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "590f42197719d102d78e715b2aaf76d4a3836660", + "tarball": "http://registry.npmjs.org/hostinfo/-/hostinfo-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "886f1ed85e1afd5edf1803b505886e4892595f06", + "tarball": "http://registry.npmjs.org/hostinfo/-/hostinfo-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/hostinfo/" + }, + "hostip": { + "name": "hostip", + "description": "Resolves the IPs to locations using the hostip.info APIs", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "sugendran", + "email": "sugendran@sugendran.net" + } + ], + "time": { + "modified": "2011-09-16T13:50:50.098Z", + "created": "2011-09-16T13:50:48.553Z", + "0.0.1": "2011-09-16T13:50:50.098Z" + }, + "author": { + "name": "Sugendran Ganess" + }, + "repository": { + "type": "git", + "url": "git://github.com/sugendran/node-hostip.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/hostip/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "1ec61f1f5202afb54b76bcad3a2e550d3df6bc06", + "tarball": "http://registry.npmjs.org/hostip/-/hostip-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/hostip/" + }, + "hostname": { + "name": "hostname", + "description": "A simple utility for getting the hostname of your machine, even before the os module introduced in node 0.4", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "dotmaster", + "email": "isimpl@gmail.com" + } + ], + "time": { + "modified": "2011-03-04T19:41:07.249Z", + "created": "2011-03-04T19:38:43.916Z", + "0.0.1": "2011-03-04T19:38:44.302Z", + "0.0.2": "2011-03-04T19:40:18.200Z", + "0.0.3": "2011-03-04T19:41:07.249Z" + }, + "author": { + "name": "Gregor Schwab", + "email": "greg@synaptic-labs.net", + "url": "www.synaptic-labs.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/dotmaster/hostname.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/hostname/0.0.1", + "0.0.2": "http://registry.npmjs.org/hostname/0.0.2", + "0.0.3": "http://registry.npmjs.org/hostname/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "f36bc96025ba9dfd3f067aa1828a61223079c2b8", + "tarball": "http://registry.npmjs.org/hostname/-/hostname-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "9cbaf3ea0326d5fc52467c793430b7a6ef6a94d8", + "tarball": "http://registry.npmjs.org/hostname/-/hostname-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "3ca6dd2d30d07231a8b62cc06e7d2451f9384448", + "tarball": "http://registry.npmjs.org/hostname/-/hostname-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/hostname/" + }, + "hotcode": { + "name": "hotcode", + "description": "File monitor script for local development.", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "mape", + "email": "mape@mape.me" + } + ], + "time": { + "modified": "2011-10-19T17:14:03.282Z", + "created": "2011-10-18T21:11:31.906Z", + "0.0.1": "2011-10-18T21:11:32.824Z", + "0.0.2": "2011-10-18T21:21:38.822Z", + "0.0.3": "2011-10-19T11:29:55.274Z", + "0.0.4": "2011-10-19T11:43:01.789Z", + "0.0.5": "2011-10-19T17:06:48.010Z", + "0.0.6": "2011-10-19T17:14:03.282Z" + }, + "author": { + "name": "Mathias Pettersson", + "url": "http://github.com/mape" + }, + "repository": { + "type": "git", + "url": "git://github.com/mape/node-hotcode.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/hotcode/0.0.1", + "0.0.2": "http://registry.npmjs.org/hotcode/0.0.2", + "0.0.3": "http://registry.npmjs.org/hotcode/0.0.3", + "0.0.4": "http://registry.npmjs.org/hotcode/0.0.4", + "0.0.5": "http://registry.npmjs.org/hotcode/0.0.5", + "0.0.6": "http://registry.npmjs.org/hotcode/0.0.6" + }, + "dist": { + "0.0.1": { + "shasum": "14f576e132af765e70ed5b6dfe161b808a5f7dce", + "tarball": "http://registry.npmjs.org/hotcode/-/hotcode-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "1122a3416c1d31ce6d1c8dc9036e54fec6c1a670", + "tarball": "http://registry.npmjs.org/hotcode/-/hotcode-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "a5cb875c313f771041b2ec15f46a8d83d0ec8fb9", + "tarball": "http://registry.npmjs.org/hotcode/-/hotcode-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "3d3c9f76fcf314f60f15a36d3abe057c0a27aebc", + "tarball": "http://registry.npmjs.org/hotcode/-/hotcode-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "edbf00c991617ec7fdcc1fb96c8975385d62ee55", + "tarball": "http://registry.npmjs.org/hotcode/-/hotcode-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "dcdfd1cacd6606490908c5cca2f74514341558ad", + "tarball": "http://registry.npmjs.org/hotcode/-/hotcode-0.0.6.tgz" + } + }, + "keywords": [ + "monitor", + "development", + "restart", + "autoload", + "reload", + "terminal" + ], + "url": "http://registry.npmjs.org/hotcode/" + }, + "hotflex": { + "name": "hotflex", + "description": "Compile on save for Adobe Flex projects", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "srirangan", + "email": "srirangan@gmail.com" + } + ], + "time": { + "modified": "2011-09-26T12:06:30.377Z", + "created": "2011-09-26T12:06:26.181Z", + "0.0.1": "2011-09-26T12:06:30.377Z" + }, + "author": { + "name": "Srirangan", + "email": "srirangan@gmail.com", + "url": "http://srirangan.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/Srirangan/hotflex.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/hotflex/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "21eebf7d97c4c02e99545f0136da0337824de292", + "tarball": "http://registry.npmjs.org/hotflex/-/hotflex-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/hotflex/" + }, + "hotnode": { + "name": "hotnode", + "description": "Hot code loading for node.js", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "saschagehlich", + "email": "sascha@gehlich.us" + } + ], + "author": { + "name": "Sascha Gehlich", + "email": "contact@filshmedia.net", + "url": "http://www.filshmedia.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/saschagehlich/hotnode.git" + }, + "time": { + "modified": "2011-11-26T08:49:51.241Z", + "created": "2011-03-11T17:36:44.065Z", + "0.0.1": "2011-03-11T17:36:44.065Z", + "0.0.2": "2011-03-11T17:36:44.065Z", + "0.0.3": "2011-03-11T17:36:44.065Z", + "0.0.4": "2011-03-11T17:36:44.065Z", + "0.0.5": "2011-11-26T08:49:51.241Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/hotnode/0.0.1", + "0.0.2": "http://registry.npmjs.org/hotnode/0.0.2", + "0.0.3": "http://registry.npmjs.org/hotnode/0.0.3", + "0.0.4": "http://registry.npmjs.org/hotnode/0.0.4", + "0.0.5": "http://registry.npmjs.org/hotnode/0.0.5" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/hotnode/-/hotnode-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/hotnode/-/hotnode-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/hotnode/-/hotnode-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "63185e6bad0755d1d116a26dcdf659a7a22acdad", + "tarball": "http://registry.npmjs.org/hotnode/-/hotnode-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "98dea9fd6a9d46e3a8459ade91028388b66edb83", + "tarball": "http://registry.npmjs.org/hotnode/-/hotnode-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/hotnode/" + }, + "hotrequire": { + "name": "hotrequire", + "description": "Extends require object by adding the require.hot(path, callback) method. This enables you to hot-load modules into the current scope.", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "krnlde", + "email": "the-kernel32@web.de" + } + ], + "time": { + "modified": "2011-09-29T23:26:15.504Z", + "created": "2011-09-29T21:58:41.077Z", + "0.1.0": "2011-09-29T21:58:44.454Z", + "0.2.0": "2011-09-29T23:26:15.504Z" + }, + "author": { + "name": "Kai Dorschner https://github.com/krnlde/" + }, + "repository": { + "type": "git", + "url": "git://github.com/krnlde/hotrequire.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/hotrequire/0.1.0", + "0.2.0": "http://registry.npmjs.org/hotrequire/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "5cf40ed6fcf111acccfb6d185d2cabcdef3d7bb6", + "tarball": "http://registry.npmjs.org/hotrequire/-/hotrequire-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "53e290f714927820524e4bc0de781e25ed308fcc", + "tarball": "http://registry.npmjs.org/hotrequire/-/hotrequire-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/hotrequire/" + }, + "howmuchtime": { + "name": "howmuchtime", + "description": "Tells how much time (in µs) a callback has taken to be called", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "temsa", + "email": "florian.traverse+npm@gmail.com" + } + ], + "time": { + "modified": "2011-08-16T15:02:59.850Z", + "created": "2011-08-16T15:02:57.708Z", + "0.1.0": "2011-08-16T15:02:59.850Z" + }, + "author": { + "name": "Florian Traverse", + "email": "florian.traverse@gmail.com", + "url": "https://github.com/temsa/" + }, + "repository": { + "type": "git", + "url": "git://github.com/temsa/howmuchtime.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/howmuchtime/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "3ed49cff08f6d6ecdc44a98aa015a89d07d140ae", + "tarball": "http://registry.npmjs.org/howmuchtime/-/howmuchtime-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/howmuchtime/" + }, + "hstore": { + "name": "hstore", + "description": "Library for transforming JavaScript objects to hstore format, used by the PostgreSQL RDBMS.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "mikl", + "email": "mikkel@hoegh.org" + } + ], + "time": { + "modified": "2011-08-20T18:21:35.015Z", + "created": "2011-08-20T18:21:31.966Z", + "0.0.1": "2011-08-20T18:21:35.015Z" + }, + "author": { + "name": "Mikkel Hoegh", + "email": "mikkel@hoegh.org", + "url": "http://mikkel.hoegh.org/" + }, + "repository": { + "type": "git", + "url": "git://github.com/mikl/node-hstore.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/hstore/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "035e79fcf25689e4773fba30c2f646f614ab65b8", + "tarball": "http://registry.npmjs.org/hstore/-/hstore-0.0.1.tgz" + } + }, + "keywords": [ + "postgres", + "postgre", + "database", + "rdbms" + ], + "url": "http://registry.npmjs.org/hstore/" + }, + "hsume2-socket.io": { + "name": "hsume2-socket.io", + "description": "The cross-browser WebSocket", + "dist-tags": { + "latest": "0.6.172" + }, + "maintainers": [ + { + "name": "hsume2", + "email": "hhsu@zendesk.com" + } + ], + "time": { + "modified": "2011-09-06T17:57:56.554Z", + "created": "2011-09-06T17:54:29.732Z", + "0.6.171": "2011-09-06T17:54:30.181Z", + "0.6.172": "2011-09-06T17:57:56.554Z" + }, + "author": { + "name": "Henry Hsu", + "email": "hhsu@zendesk.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/hsume2/socket.io.git" + }, + "versions": { + "0.6.171": "http://registry.npmjs.org/hsume2-socket.io/0.6.171", + "0.6.172": "http://registry.npmjs.org/hsume2-socket.io/0.6.172" + }, + "dist": { + "0.6.171": { + "shasum": "aee397d9c7f38208b072101951d134b8548cbe72", + "tarball": "http://registry.npmjs.org/hsume2-socket.io/-/hsume2-socket.io-0.6.171.tgz" + }, + "0.6.172": { + "shasum": "27a0051a97c2fae3ab93f490b005fd22df0d905b", + "tarball": "http://registry.npmjs.org/hsume2-socket.io/-/hsume2-socket.io-0.6.172.tgz" + } + }, + "url": "http://registry.npmjs.org/hsume2-socket.io/" + }, + "htdigest": { + "name": "htdigest", + "description": "Node.js package for HTTP Digest Authentication password file utility.", + "dist-tags": { + "latest": "1.0.6" + }, + "maintainers": [ + { + "name": "gevorg", + "email": "gevorg.ha@gmail.com" + } + ], + "time": { + "modified": "2011-12-04T19:48:47.003Z", + "created": "2011-12-04T18:19:45.088Z", + "1.0.0": "2011-12-04T18:19:47.730Z", + "1.0.1": "2011-12-04T18:50:29.757Z", + "1.0.2": "2011-12-04T18:51:38.315Z", + "1.0.3": "2011-12-04T18:54:46.012Z", + "1.0.4": "2011-12-04T18:56:11.452Z", + "1.0.5": "2011-12-04T19:00:22.303Z", + "1.0.6": "2011-12-04T19:48:47.003Z" + }, + "author": { + "name": "Gevorg Harutyunyan", + "url": "http://github.com/gevorg" + }, + "repository": { + "type": "git", + "url": "git://github.com/gevorg/htdigest.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/htdigest/1.0.0", + "1.0.1": "http://registry.npmjs.org/htdigest/1.0.1", + "1.0.2": "http://registry.npmjs.org/htdigest/1.0.2", + "1.0.3": "http://registry.npmjs.org/htdigest/1.0.3", + "1.0.4": "http://registry.npmjs.org/htdigest/1.0.4", + "1.0.5": "http://registry.npmjs.org/htdigest/1.0.5", + "1.0.6": "http://registry.npmjs.org/htdigest/1.0.6" + }, + "dist": { + "1.0.0": { + "shasum": "c7ba5486d0c1f8484ba82110c402722ca3ee1752", + "tarball": "http://registry.npmjs.org/htdigest/-/htdigest-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "5d8c302cb98a2999c8a96b5c8ccfc5bf2fca4cce", + "tarball": "http://registry.npmjs.org/htdigest/-/htdigest-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "22d8c057997399d827301df4a66eabd0956773a7", + "tarball": "http://registry.npmjs.org/htdigest/-/htdigest-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "2394f298faf732a3e0116f10692d5afc96663126", + "tarball": "http://registry.npmjs.org/htdigest/-/htdigest-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "94f3cd97ee80806f2fd6ffc699961fc031da047e", + "tarball": "http://registry.npmjs.org/htdigest/-/htdigest-1.0.4.tgz" + }, + "1.0.5": { + "shasum": "3827e15e9c73105470b6315319ed919762de43ba", + "tarball": "http://registry.npmjs.org/htdigest/-/htdigest-1.0.5.tgz" + }, + "1.0.6": { + "shasum": "09eae987934fdce4672eaf690c61741d7bbbdbe7", + "tarball": "http://registry.npmjs.org/htdigest/-/htdigest-1.0.6.tgz" + } + }, + "keywords": [ + "node", + "htdigest", + "http", + "server", + "digest", + "access", + "authentication" + ], + "url": "http://registry.npmjs.org/htdigest/" + }, + "htdoc": { + "name": "htdoc", + "description": "glue for html", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "bat", + "email": "ben@benatkin.com" + } + ], + "time": { + "modified": "2011-05-01T23:45:19.600Z", + "created": "2011-05-01T23:45:18.268Z", + "0.0.1": "2011-05-01T23:45:19.600Z" + }, + "author": { + "name": "Ben Atkin", + "email": "ben@benatkin.com", + "url": "http://benatkin.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/benatkin/htdoc.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/htdoc/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "df8b5e5656d3f9018f9db7adb96f6e9112d5d3fd", + "tarball": "http://registry.npmjs.org/htdoc/-/htdoc-0.0.1.tgz" + } + }, + "keywords": [ + "browser", + "document-driven", + "DSL", + "html", + "glue", + "JSON" + ], + "url": "http://registry.npmjs.org/htdoc/" + }, + "html": { + "name": "html", + "description": "HTML pretty printer.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "maxogden", + "email": "max@maxogden.com" + } + ], + "time": { + "modified": "2011-09-10T22:11:19.877Z", + "created": "2011-09-10T22:11:19.250Z", + "0.0.1": "2011-09-10T22:11:19.877Z" + }, + "author": { + "name": "Max Ogden", + "email": "max@maxogden.com", + "url": "http://maxogden.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/maxogden/commonjs-html-prettyprinter.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/html/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "53f8ca6d5052a93c8b038fc7902a2aee179c92f6", + "tarball": "http://registry.npmjs.org/html/-/html-0.0.1.tgz" + } + }, + "keywords": [ + "html", + "tabifier", + "beautifier", + "prettyprinter", + "prettifier", + "pretty", + "command", + "shell" + ], + "url": "http://registry.npmjs.org/html/" + }, + "html-minifier": { + "name": "html-minifier", + "description": "HTML minifier with lint-like capabilities.", + "dist-tags": { + "latest": "0.4.5" + }, + "maintainers": [ + { + "name": "kangax", + "email": "kangax@gmail.com" + } + ], + "time": { + "modified": "2011-08-08T22:54:04.206Z", + "created": "2011-08-05T22:37:09.311Z", + "0.4.3": "2011-08-05T22:37:11.460Z", + "0.4.4": "2011-08-08T22:42:57.057Z", + "0.4.5": "2011-08-08T22:54:04.206Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/kangax/html-minifier.git" + }, + "versions": { + "0.4.3": "http://registry.npmjs.org/html-minifier/0.4.3", + "0.4.4": "http://registry.npmjs.org/html-minifier/0.4.4", + "0.4.5": "http://registry.npmjs.org/html-minifier/0.4.5" + }, + "dist": { + "0.4.3": { + "shasum": "193b65f5e1a901b74356e656aab24453494fb872", + "tarball": "http://registry.npmjs.org/html-minifier/-/html-minifier-0.4.3.tgz" + }, + "0.4.4": { + "shasum": "9d76bb2328cbc1524b1c1bfcfb6bd694de5d18a8", + "tarball": "http://registry.npmjs.org/html-minifier/-/html-minifier-0.4.4.tgz" + }, + "0.4.5": { + "shasum": "763a1c806c0c18ee8117021bf137b18db056e786", + "tarball": "http://registry.npmjs.org/html-minifier/-/html-minifier-0.4.5.tgz" + } + }, + "keywords": [ + "html", + "minifier", + "lint" + ], + "url": "http://registry.npmjs.org/html-minifier/" + }, + "html-schema": { + "name": "html-schema", + "description": "Schema.org and Microformats", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "viatropos", + "email": "lancejpollard@gmail.com" + } + ], + "time": { + "modified": "2011-11-05T00:45:03.923Z", + "created": "2011-11-05T00:45:03.395Z", + "0.1.0": "2011-11-05T00:45:03.923Z" + }, + "author": { + "name": "Lance Pollard", + "email": "lancejpollard@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/viatropos/html-schema.js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/html-schema/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "98ac49721c3453935e037f02c9972ff0d7389f0e", + "tarball": "http://registry.npmjs.org/html-schema/-/html-schema-0.1.0.tgz" + } + }, + "keywords": [ + "schema.org", + "microdata", + "microformats" + ], + "url": "http://registry.npmjs.org/html-schema/" + }, + "html-sourcery": { + "name": "html-sourcery", + "description": "A pure-Javascript library for conjuring up HTML", + "dist-tags": { + "latest": "0.1.5" + }, + "maintainers": [ + { + "name": "reissbaker", + "email": "matthew.reiss.baker@gmail.com" + } + ], + "time": { + "modified": "2011-10-28T06:02:21.734Z", + "created": "2011-08-28T07:48:56.893Z", + "0.1.0": "2011-08-28T07:48:57.326Z", + "0.1.1": "2011-08-28T08:41:45.932Z", + "0.1.2": "2011-08-28T22:35:41.367Z", + "0.1.3": "2011-08-28T22:55:15.800Z", + "0.1.4": "2011-09-21T03:58:49.728Z", + "0.1.5": "2011-10-28T06:02:21.734Z" + }, + "author": { + "name": "Matt Baker" + }, + "repository": { + "type": "git", + "url": "git://github.com/reissbaker/html-sourcery.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/html-sourcery/0.1.0", + "0.1.1": "http://registry.npmjs.org/html-sourcery/0.1.1", + "0.1.2": "http://registry.npmjs.org/html-sourcery/0.1.2", + "0.1.3": "http://registry.npmjs.org/html-sourcery/0.1.3", + "0.1.4": "http://registry.npmjs.org/html-sourcery/0.1.4", + "0.1.5": "http://registry.npmjs.org/html-sourcery/0.1.5" + }, + "dist": { + "0.1.0": { + "shasum": "1ecdf4aa646d2c852918ed4b3296ae4fa2cfc25b", + "tarball": "http://registry.npmjs.org/html-sourcery/-/html-sourcery-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "66727f2240c79b27dff065e2e78cba2888460ed6", + "tarball": "http://registry.npmjs.org/html-sourcery/-/html-sourcery-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "fca56f1d9582522c6347f939fd0397c46787d408", + "tarball": "http://registry.npmjs.org/html-sourcery/-/html-sourcery-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "922e984b222371f4de9d6f982406581bf5d3f47f", + "tarball": "http://registry.npmjs.org/html-sourcery/-/html-sourcery-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "e86b7ecdb87929232fc40a2bca07c4900d74182d", + "tarball": "http://registry.npmjs.org/html-sourcery/-/html-sourcery-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "d842ae47d3b6bbad02835b06226f86a9e12e0eb6", + "tarball": "http://registry.npmjs.org/html-sourcery/-/html-sourcery-0.1.5.tgz" + } + }, + "url": "http://registry.npmjs.org/html-sourcery/" + }, + "html2coffeekup": { + "name": "html2coffeekup", + "description": "Converts HTML to Coffeekup markup", + "dist-tags": { + "latest": "1.4.0" + }, + "maintainers": [ + { + "name": "brandonbloom", + "email": "brandon@brandonbloom.name" + } + ], + "time": { + "modified": "2011-11-02T23:42:17.239Z", + "created": "2011-09-05T22:11:48.744Z", + "0.0.2": "2011-09-05T22:11:49.783Z", + "1.0.0": "2011-09-20T08:16:16.409Z", + "1.1.0": "2011-10-04T08:47:27.066Z", + "1.1.1": "2011-11-02T09:01:28.041Z", + "1.2.0": "2011-11-02T09:32:06.658Z", + "1.3.0": "2011-11-02T23:00:36.429Z", + "1.4.0": "2011-11-02T23:42:17.239Z" + }, + "author": { + "name": "Brandon Bloom", + "email": "brandon@brandonbloom.name" + }, + "repository": { + "type": "git", + "url": "git://github.com/brandonbloom/html2coffeekup.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/html2coffeekup/0.0.2", + "1.0.0": "http://registry.npmjs.org/html2coffeekup/1.0.0", + "1.1.0": "http://registry.npmjs.org/html2coffeekup/1.1.0", + "1.1.1": "http://registry.npmjs.org/html2coffeekup/1.1.1", + "1.2.0": "http://registry.npmjs.org/html2coffeekup/1.2.0", + "1.3.0": "http://registry.npmjs.org/html2coffeekup/1.3.0", + "1.4.0": "http://registry.npmjs.org/html2coffeekup/1.4.0" + }, + "dist": { + "0.0.2": { + "shasum": "d3748ee30ac7765fd1d12ebda2a2d22ac12ae5de", + "tarball": "http://registry.npmjs.org/html2coffeekup/-/html2coffeekup-0.0.2.tgz" + }, + "1.0.0": { + "shasum": "e7700a3d165bc4306b66164dc2db5eac9e5344a6", + "tarball": "http://registry.npmjs.org/html2coffeekup/-/html2coffeekup-1.0.0.tgz" + }, + "1.1.0": { + "shasum": "feeeb68e1e27b35e9ba65f9a8317d3468b18f913", + "tarball": "http://registry.npmjs.org/html2coffeekup/-/html2coffeekup-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "d0adaeec85a5f413a9bea8a62b9107a1c98684b0", + "tarball": "http://registry.npmjs.org/html2coffeekup/-/html2coffeekup-1.1.1.tgz" + }, + "1.2.0": { + "shasum": "ffe7a097783a9ddc3d792455ac6e673e4e8e4cda", + "tarball": "http://registry.npmjs.org/html2coffeekup/-/html2coffeekup-1.2.0.tgz" + }, + "1.3.0": { + "shasum": "6941d197ba6ea1366ea6bafe6754c40bd1df42a9", + "tarball": "http://registry.npmjs.org/html2coffeekup/-/html2coffeekup-1.3.0.tgz" + }, + "1.4.0": { + "shasum": "8aa499d782a19ce6b86a977bedb9ee7cf95ded87", + "tarball": "http://registry.npmjs.org/html2coffeekup/-/html2coffeekup-1.4.0.tgz" + } + }, + "keywords": [ + "coffeekup" + ], + "url": "http://registry.npmjs.org/html2coffeekup/" + }, + "html2coffeekup-bal": { + "name": "html2coffeekup-bal", + "description": "Converts HTML to Coffeekup markup", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "balupton", + "email": "b@lupton.cc" + } + ], + "time": { + "modified": "2011-09-20T05:30:45.362Z", + "created": "2011-09-20T05:19:02.194Z", + "0.0.3": "2011-09-20T05:19:08.954Z", + "0.0.4": "2011-09-20T05:30:45.362Z" + }, + "author": { + "name": "Brandon Bloom", + "email": "brandon@brandonbloom.name" + }, + "repository": { + "type": "git", + "url": "git://github.com/brandonbloom/html2coffeekup.git" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/html2coffeekup-bal/0.0.3", + "0.0.4": "http://registry.npmjs.org/html2coffeekup-bal/0.0.4" + }, + "dist": { + "0.0.3": { + "shasum": "b2c40ff94928b824b8c82feeafadb563f564b7c5", + "tarball": "http://registry.npmjs.org/html2coffeekup-bal/-/html2coffeekup-bal-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "daaf0c3e192487518049e2921fcb7e0c688ba14a", + "tarball": "http://registry.npmjs.org/html2coffeekup-bal/-/html2coffeekup-bal-0.0.4.tgz" + } + }, + "keywords": [ + "coffeekup" + ], + "url": "http://registry.npmjs.org/html2coffeekup-bal/" + }, + "html2jade": { + "name": "html2jade", + "description": "HTML to Jade conversion tool", + "dist-tags": { + "latest": "0.1.16" + }, + "maintainers": [ + { + "name": "donpark", + "email": "donpark@docuverse.com" + } + ], + "time": { + "modified": "2011-12-07T13:03:26.788Z", + "created": "2011-04-24T04:02:59.316Z", + "0.0.2": "2011-12-06T22:34:26.778Z", + "0.0.3": "2011-12-06T22:34:26.778Z", + "0.0.4": "2011-12-06T22:34:26.778Z", + "0.0.5": "2011-12-06T22:34:26.778Z", + "0.0.6": "2011-12-06T22:34:26.778Z", + "0.0.7": "2011-12-06T22:34:26.778Z", + "0.0.8": "2011-10-28T23:12:07.067Z", + "0.1.0": "2011-11-05T06:36:47.619Z", + "0.1.1": "2011-12-02T20:34:58.552Z", + "0.1.2": "2011-12-03T22:20:07.867Z", + "0.1.3": "2011-12-06T22:34:26.778Z", + "0.1.4": "2011-12-06T22:46:08.067Z", + "0.1.15": "2011-12-07T04:17:28.922Z", + "0.1.16": "2011-12-07T13:03:26.788Z" + }, + "author": { + "name": "Don Park", + "email": "donpark@docuverse.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/donpark/html2jade.git" + }, + "users": { + "pid": true + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/html2jade/0.0.2", + "0.0.3": "http://registry.npmjs.org/html2jade/0.0.3", + "0.0.4": "http://registry.npmjs.org/html2jade/0.0.4", + "0.0.5": "http://registry.npmjs.org/html2jade/0.0.5", + "0.0.6": "http://registry.npmjs.org/html2jade/0.0.6", + "0.0.7": "http://registry.npmjs.org/html2jade/0.0.7", + "0.0.8": "http://registry.npmjs.org/html2jade/0.0.8", + "0.1.0": "http://registry.npmjs.org/html2jade/0.1.0", + "0.1.1": "http://registry.npmjs.org/html2jade/0.1.1", + "0.1.2": "http://registry.npmjs.org/html2jade/0.1.2", + "0.1.3": "http://registry.npmjs.org/html2jade/0.1.3", + "0.1.4": "http://registry.npmjs.org/html2jade/0.1.4", + "0.1.15": "http://registry.npmjs.org/html2jade/0.1.15", + "0.1.16": "http://registry.npmjs.org/html2jade/0.1.16" + }, + "dist": { + "0.0.2": { + "shasum": "4f798f9890fc3a285db668fea676d4d91d50cedf", + "tarball": "http://registry.npmjs.org/html2jade/-/html2jade-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "6b60eb50e7799098412f951aa9936cb5cee72807", + "tarball": "http://registry.npmjs.org/html2jade/-/html2jade-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "8e6464d9af9d24479c7442e537d395fcd6ef5ac0", + "tarball": "http://registry.npmjs.org/html2jade/-/html2jade-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "0d5752e2eaf8a8cd4c29daf6d687aff6397e04c7", + "tarball": "http://registry.npmjs.org/html2jade/-/html2jade-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "10904a377d007a99e6c648a18d6edbef82f6a73c", + "tarball": "http://registry.npmjs.org/html2jade/-/html2jade-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "271cdb3d01d08dbe434a9c922c37e2b1fa12c6d3", + "tarball": "http://registry.npmjs.org/html2jade/-/html2jade-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "51d0cf8cfa3a9a4fc9d60e1e26ac7b1f8b836a53", + "tarball": "http://registry.npmjs.org/html2jade/-/html2jade-0.0.8.tgz" + }, + "0.1.0": { + "shasum": "62b0f20d77bb3833b2aeaa33c621a62052d360f2", + "tarball": "http://registry.npmjs.org/html2jade/-/html2jade-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "165e72ef112f9616afad2b2c0993a4d4ad50612c", + "tarball": "http://registry.npmjs.org/html2jade/-/html2jade-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "fcdb1cdb4c72ed183b52878db3025c0812af7356", + "tarball": "http://registry.npmjs.org/html2jade/-/html2jade-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "cde60b6826503de1184f75a7a2aea990d78c51a8", + "tarball": "http://registry.npmjs.org/html2jade/-/html2jade-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "90a44a56fba4c2872eea6282b5b0eb66721f59ec", + "tarball": "http://registry.npmjs.org/html2jade/-/html2jade-0.1.4.tgz" + }, + "0.1.15": { + "shasum": "3331199bde596379972f161905afa35410592a8e", + "tarball": "http://registry.npmjs.org/html2jade/-/html2jade-0.1.15.tgz" + }, + "0.1.16": { + "shasum": "8fb97bf65965592dd1ae0023453070b6c899a8df", + "tarball": "http://registry.npmjs.org/html2jade/-/html2jade-0.1.16.tgz" + } + }, + "url": "http://registry.npmjs.org/html2jade/" + }, + "html5": { + "name": "html5", + "description": "HTML5 HTML parser, including support for SVG and MathML foreign content", + "dist-tags": { + "latest": "0.3.5" + }, + "maintainers": [ + { + "name": "aredridel", + "email": "aredridel@nbtsc.org" + } + ], + "author": { + "name": "Aria Stewart", + "email": "aredridel@nbtsc.org", + "url": "http://dinhe.net/~aredridel/" + }, + "repository": [ + { + "type": "git", + "url": "git://github.com/aredridel/html5.git" + }, + { + "type": "git", + "url": "http://theinternetco.net/~aredridel/projects/js/html5.git" + } + ], + "time": { + "modified": "2011-11-16T04:33:06.459Z", + "created": "2011-01-01T19:45:01.074Z", + "0.2.2": "2011-01-01T19:45:01.074Z", + "0.2.3": "2011-01-01T19:45:01.074Z", + "0.2.4": "2011-01-01T19:45:01.074Z", + "0.2.5": "2011-01-01T19:45:01.074Z", + "0.2.6": "2011-01-01T19:45:01.074Z", + "0.2.7": "2011-01-02T01:15:50.034Z", + "0.2.9": "2011-01-07T04:13:17.263Z", + "0.2.10": "2011-01-08T05:20:51.458Z", + "0.2.11": "2011-01-09T19:46:35.328Z", + "0.2.12": "2011-01-09T22:00:18.104Z", + "0.2.13": "2011-02-02T06:27:11.174Z", + "0.2.14": "2011-02-17T20:18:47.302Z", + "0.2.15": "2011-04-11T01:50:14.264Z", + "0.2.16": "2011-05-21T05:06:38.118Z", + "0.3.0": "2011-06-29T18:10:47.058Z", + "0.3.1": "2011-08-25T02:49:26.988Z", + "0.3.2": "2011-08-25T02:54:49.705Z", + "0.3.4": "2011-11-14T02:48:52.416Z", + "0.3.5": "2011-11-16T04:33:06.459Z" + }, + "versions": { + "0.2.2": "http://registry.npmjs.org/html5/0.2.2", + "0.2.3": "http://registry.npmjs.org/html5/0.2.3", + "0.2.4": "http://registry.npmjs.org/html5/0.2.4", + "0.2.5": "http://registry.npmjs.org/html5/0.2.5", + "0.2.6": "http://registry.npmjs.org/html5/0.2.6", + "0.2.7": "http://registry.npmjs.org/html5/0.2.7", + "0.2.9": "http://registry.npmjs.org/html5/0.2.9", + "0.2.10": "http://registry.npmjs.org/html5/0.2.10", + "0.2.11": "http://registry.npmjs.org/html5/0.2.11", + "0.2.12": "http://registry.npmjs.org/html5/0.2.12", + "0.2.13": "http://registry.npmjs.org/html5/0.2.13", + "0.2.14": "http://registry.npmjs.org/html5/0.2.14", + "0.2.15": "http://registry.npmjs.org/html5/0.2.15", + "0.2.16": "http://registry.npmjs.org/html5/0.2.16", + "0.3.0": "http://registry.npmjs.org/html5/0.3.0", + "0.3.1": "http://registry.npmjs.org/html5/0.3.1", + "0.3.2": "http://registry.npmjs.org/html5/0.3.2", + "0.3.4": "http://registry.npmjs.org/html5/0.3.4", + "0.3.5": "http://registry.npmjs.org/html5/0.3.5" + }, + "dist": { + "0.2.2": { + "tarball": "http://registry.npmjs.org/html5/-/html5-0.2.2.tgz" + }, + "0.2.3": { + "tarball": "http://registry.npmjs.org/html5/-/html5-0.2.3.tgz" + }, + "0.2.4": { + "tarball": "http://registry.npmjs.org/html5/-/html5-0.2.4.tgz" + }, + "0.2.5": { + "tarball": "http://registry.npmjs.org/html5/-/html5-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "ad2ae30d9a1a03d9d845834fc4598defebefb9f5", + "tarball": "http://registry.npmjs.org/html5/-/html5-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "3936657d8f86109a8134037ad3b1593f4f0051ab", + "tarball": "http://registry.npmjs.org/html5/-/html5-0.2.7.tgz" + }, + "0.2.9": { + "shasum": "97bc0bf67d059ce887799281b3f823f55b2c25e9", + "tarball": "http://registry.npmjs.org/html5/-/html5-0.2.9.tgz" + }, + "0.2.10": { + "shasum": "8f7b000b5915551b0ec219356ebdfc25b701bf36", + "tarball": "http://registry.npmjs.org/html5/-/html5-0.2.10.tgz" + }, + "0.2.11": { + "shasum": "9131d551c7754993d77a92294acd0e4df2a5236b", + "tarball": "http://registry.npmjs.org/html5/-/html5-0.2.11.tgz" + }, + "0.2.12": { + "shasum": "0d6a0c9f4918d72651368523fb295e27932b32f0", + "tarball": "http://registry.npmjs.org/html5/-/html5-0.2.12.tgz" + }, + "0.2.13": { + "shasum": "ab279d78328308dc357d7b89fb7c3237af24f54a", + "tarball": "http://registry.npmjs.org/html5/-/html5-0.2.13.tgz" + }, + "0.2.14": { + "shasum": "f76b20896906fbd9cb5ad3817129558d947ed3f1", + "tarball": "http://registry.npmjs.org/html5/-/html5-0.2.14.tgz" + }, + "0.2.15": { + "shasum": "d8a2b6dd8d4cc9e431296742e0f997024fad5ce6", + "tarball": "http://registry.npmjs.org/html5/-/html5-0.2.15.tgz" + }, + "0.2.16": { + "shasum": "56e7d6870f24928c2deabf02c1d2cfe81a4d1cd4", + "tarball": "http://registry.npmjs.org/html5/-/html5-0.2.16.tgz" + }, + "0.3.0": { + "shasum": "fda1153d003f123d4d429bcd37330faa9d5d950e", + "tarball": "http://registry.npmjs.org/html5/-/html5-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "50ed6477e01d033d5df5960885b3d3fdbe92b726", + "tarball": "http://registry.npmjs.org/html5/-/html5-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "47d0c77f7968c3868f88b8c2a136651c51fd890e", + "tarball": "http://registry.npmjs.org/html5/-/html5-0.3.2.tgz" + }, + "0.3.4": { + "shasum": "41eb9243d6ef5c3dc9da1b17090bfbcb26a7b601", + "tarball": "http://registry.npmjs.org/html5/-/html5-0.3.4.tgz" + }, + "0.3.5": { + "shasum": "1c1977a3d55cba8a3b01b3d75204905bc8c787df", + "tarball": "http://registry.npmjs.org/html5/-/html5-0.3.5.tgz" + } + }, + "url": "http://registry.npmjs.org/html5/" + }, + "html5edit": { + "name": "html5edit", + "description": "Lightweight R&D project surrounding HTML5's contenteditable feature", + "dist-tags": { + "latest": "0.2.4" + }, + "maintainers": [ + { + "name": "balupton", + "email": "b@lupton.cc" + } + ], + "time": { + "modified": "2011-06-12T01:19:26.648Z", + "created": "2011-06-12T00:55:53.226Z", + "0.2.0": "2011-06-12T00:55:56.007Z", + "0.2.1": "2011-06-12T01:11:12.057Z", + "0.2.2": "2011-06-12T01:13:00.698Z", + "0.2.3": "2011-06-12T01:18:34.218Z", + "0.2.4": "2011-06-12T01:19:26.648Z" + }, + "author": { + "name": "Benjamin Lupton", + "email": "b@lupton.cc", + "url": "http://balupton.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/balupton/html5edit.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/html5edit/0.2.0", + "0.2.1": "http://registry.npmjs.org/html5edit/0.2.1", + "0.2.2": "http://registry.npmjs.org/html5edit/0.2.2", + "0.2.3": "http://registry.npmjs.org/html5edit/0.2.3", + "0.2.4": "http://registry.npmjs.org/html5edit/0.2.4" + }, + "dist": { + "0.2.0": { + "shasum": "c52ad638431992f8355fb4f11270716ad7fb513a", + "tarball": "http://registry.npmjs.org/html5edit/-/html5edit-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "6fc4706c61412fe8f94f3347389e608c36baffaa", + "tarball": "http://registry.npmjs.org/html5edit/-/html5edit-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "c6521fe88c0b2e10910917b38479d1d300a04ccd", + "tarball": "http://registry.npmjs.org/html5edit/-/html5edit-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "4d563803788f5aa89e2839e0113101b543162a11", + "tarball": "http://registry.npmjs.org/html5edit/-/html5edit-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "dba60f1352fa10f7e043df70725343c24a863c1e", + "tarball": "http://registry.npmjs.org/html5edit/-/html5edit-0.2.4.tgz" + } + }, + "keywords": [ + "javascript", + "coffeescript", + "contenteditable", + "wysiwyg" + ], + "url": "http://registry.npmjs.org/html5edit/" + }, + "htmlKompressor": { + "name": "htmlKompressor", + "description": "Node.js Module for compressing html files", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "xonecas", + "email": "seancaetanomartin@gmail.com" + } + ], + "time": { + "modified": "2011-06-04T18:48:09.136Z", + "created": "2011-06-02T22:46:55.675Z", + "0.0.1": "2011-06-02T22:46:56.567Z", + "0.0.2": "2011-06-03T08:27:34.486Z", + "0.0.3": "2011-06-04T00:43:12.349Z", + "0.0.4": "2011-06-04T18:23:46.567Z", + "0.0.5": "2011-06-04T18:32:28.358Z", + "0.0.6": "2011-06-04T18:48:09.136Z" + }, + "author": { + "name": "Sean Caetano Martin", + "email": "seancaetanomartin@gmail.com", + "url": "http://www.xonecas.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/xonecas/htmlKompressor.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/htmlKompressor/0.0.1", + "0.0.2": "http://registry.npmjs.org/htmlKompressor/0.0.2", + "0.0.3": "http://registry.npmjs.org/htmlKompressor/0.0.3", + "0.0.4": "http://registry.npmjs.org/htmlKompressor/0.0.4", + "0.0.5": "http://registry.npmjs.org/htmlKompressor/0.0.5", + "0.0.6": "http://registry.npmjs.org/htmlKompressor/0.0.6" + }, + "dist": { + "0.0.1": { + "shasum": "691fdcd8271d34621f20e59255b1a53b90cdeb07", + "tarball": "http://registry.npmjs.org/htmlKompressor/-/htmlKompressor-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "1eec745943db0ecf800725f323a81fe6a22b58d0", + "tarball": "http://registry.npmjs.org/htmlKompressor/-/htmlKompressor-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "5f778d4779964aab4c7a9048a273d82bd6651a24", + "tarball": "http://registry.npmjs.org/htmlKompressor/-/htmlKompressor-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "0a1052cd79e29f5ac93001afdae501bb0fd07aca", + "tarball": "http://registry.npmjs.org/htmlKompressor/-/htmlKompressor-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "004cbd85f752fe386b5c48d2dbf4e3237d183033", + "tarball": "http://registry.npmjs.org/htmlKompressor/-/htmlKompressor-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "fbfcccb09ea0af5290e6cd5274fbfbeeaa9330e6", + "tarball": "http://registry.npmjs.org/htmlKompressor/-/htmlKompressor-0.0.6.tgz" + } + }, + "url": "http://registry.npmjs.org/htmlKompressor/" + }, + "htmlkup": { + "name": "htmlkup", + "description": "Converts html to coffeekup. Uses state maching written in coffeescript.", + "dist-tags": { + "latest": "1.2.2" + }, + "maintainers": [ + { + "name": "colinta", + "email": "colinta@mac.com" + } + ], + "time": { + "modified": "2011-09-21T17:20:29.853Z", + "created": "2011-09-19T00:05:06.216Z", + "0.0.1": "2011-09-19T00:05:07.544Z", + "1.0.0": "2011-09-19T01:27:58.630Z", + "1.0.1": "2011-09-19T02:05:32.990Z", + "1.0.2": "2011-09-19T02:32:04.750Z", + "1.0.3": "2011-09-19T02:40:02.798Z", + "1.1.0": "2011-09-19T16:26:16.018Z", + "1.1.1": "2011-09-19T17:05:31.857Z", + "1.1.2": "2011-09-19T17:28:13.513Z", + "1.1.3": "2011-09-19T17:42:59.544Z", + "1.1.4": "2011-09-19T17:52:31.078Z", + "1.2.0": "2011-09-19T20:43:30.393Z", + "1.2.1": "2011-09-19T23:35:38.615Z", + "1.2.2": "2011-09-21T17:20:29.853Z" + }, + "author": { + "name": "Colin Thomas-Arnold", + "email": "colinta@mac.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/htmlkup/0.0.1", + "1.0.0": "http://registry.npmjs.org/htmlkup/1.0.0", + "1.0.1": "http://registry.npmjs.org/htmlkup/1.0.1", + "1.0.2": "http://registry.npmjs.org/htmlkup/1.0.2", + "1.0.3": "http://registry.npmjs.org/htmlkup/1.0.3", + "1.1.0": "http://registry.npmjs.org/htmlkup/1.1.0", + "1.1.1": "http://registry.npmjs.org/htmlkup/1.1.1", + "1.1.2": "http://registry.npmjs.org/htmlkup/1.1.2", + "1.1.3": "http://registry.npmjs.org/htmlkup/1.1.3", + "1.1.4": "http://registry.npmjs.org/htmlkup/1.1.4", + "1.2.0": "http://registry.npmjs.org/htmlkup/1.2.0", + "1.2.1": "http://registry.npmjs.org/htmlkup/1.2.1", + "1.2.2": "http://registry.npmjs.org/htmlkup/1.2.2" + }, + "dist": { + "0.0.1": { + "shasum": "52670879dd8587c7107fc32bf724846c35eea2e3", + "tarball": "http://registry.npmjs.org/htmlkup/-/htmlkup-0.0.1.tgz" + }, + "1.0.0": { + "shasum": "e275e0516dcecfd4ade4139834db5823c2392a1f", + "tarball": "http://registry.npmjs.org/htmlkup/-/htmlkup-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "904827c49eaacac17f41a002910e77040914b138", + "tarball": "http://registry.npmjs.org/htmlkup/-/htmlkup-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "a6aaa62c475b0842378c9b48e4c3b398078e310d", + "tarball": "http://registry.npmjs.org/htmlkup/-/htmlkup-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "af4026eb3285ec240c313fd59b0ec2b442463bf5", + "tarball": "http://registry.npmjs.org/htmlkup/-/htmlkup-1.0.3.tgz" + }, + "1.1.0": { + "shasum": "8180387666de767efdfc2cce11ebb93b46539b72", + "tarball": "http://registry.npmjs.org/htmlkup/-/htmlkup-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "07afbe1b8ab4dc11e568b0330aad35870bf5bfec", + "tarball": "http://registry.npmjs.org/htmlkup/-/htmlkup-1.1.1.tgz" + }, + "1.1.2": { + "shasum": "88be72511896563c055efa5c5837fbaa1c7b9ea7", + "tarball": "http://registry.npmjs.org/htmlkup/-/htmlkup-1.1.2.tgz" + }, + "1.1.3": { + "shasum": "4d5e10447a4195b9b31181933b7290e6734be5fa", + "tarball": "http://registry.npmjs.org/htmlkup/-/htmlkup-1.1.3.tgz" + }, + "1.1.4": { + "shasum": "92347f854b010bbce3a7deefaebe0603031628bc", + "tarball": "http://registry.npmjs.org/htmlkup/-/htmlkup-1.1.4.tgz" + }, + "1.2.0": { + "shasum": "81e3d5b6103f6edb78b5d053f9528b8a3c361af3", + "tarball": "http://registry.npmjs.org/htmlkup/-/htmlkup-1.2.0.tgz" + }, + "1.2.1": { + "shasum": "cfd9d33cf09424d587d5eeae553435b290e15bc4", + "tarball": "http://registry.npmjs.org/htmlkup/-/htmlkup-1.2.1.tgz" + }, + "1.2.2": { + "shasum": "f0e37b75465a57d67ab34272763970fe30236b98", + "tarball": "http://registry.npmjs.org/htmlkup/-/htmlkup-1.2.2.tgz" + } + }, + "url": "http://registry.npmjs.org/htmlkup/" + }, + "htmlparser": { + "name": "htmlparser", + "description": "Forgiving HTML/XML/RSS Parser in JS for *both* Node and Browsers", + "dist-tags": { + "latest": "1.7.3" + }, + "maintainers": [ + { + "name": "tautologistics", + "email": "chris@winberry.net" + } + ], + "author": { + "name": "Chris Winberry", + "email": "chris@winberry.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/tautologistics/node-htmlparser.git" + }, + "versions": { + "1.6.2": "http://registry.npmjs.org/htmlparser/1.6.2", + "1.7.0": "http://registry.npmjs.org/htmlparser/1.7.0", + "1.7.1": "http://registry.npmjs.org/htmlparser/1.7.1", + "1.7.2": "http://registry.npmjs.org/htmlparser/1.7.2", + "1.7.3": "http://registry.npmjs.org/htmlparser/1.7.3" + }, + "dist": { + "1.6.2": { + "tarball": "http://packages:5984/htmlparser/-/htmlparser-1.6.2.tgz" + }, + "1.7.0": { + "tarball": "http://registry.npmjs.org/htmlparser/-/htmlparser-1.7.0.tgz" + }, + "1.7.1": { + "tarball": "http://registry.npmjs.org/htmlparser/-/htmlparser-1.7.1.tgz" + }, + "1.7.2": { + "tarball": "http://registry.npmjs.org/htmlparser/-/htmlparser-1.7.2.tgz" + }, + "1.7.3": { + "shasum": "67a98b21aeabbf2a8703bbdd4debe30f80f33217", + "tarball": "http://registry.npmjs.org/htmlparser/-/htmlparser-1.7.3.tgz" + } + }, + "url": "http://registry.npmjs.org/htmlparser/" + }, + "htmlparser2": { + "name": "htmlparser2", + "description": "Forgiving HTML/XML/RSS Parser for Node. This version is optimised and cleaned and provides a SAX interface.", + "dist-tags": { + "latest": "2.0.1" + }, + "maintainers": [ + { + "name": "feedic", + "email": "me@feedic.com" + } + ], + "time": { + "modified": "2011-12-10T00:00:12.167Z", + "created": "2011-08-28T11:32:26.564Z", + "1.0.0": "2011-08-28T11:32:27.937Z", + "1.1.0": "2011-10-21T12:40:26.907Z", + "1.5.0": "2011-11-05T19:04:15.797Z", + "1.9.0": "2011-11-27T12:32:20.236Z", + "2.0.0": "2011-11-27T14:02:55.423Z", + "2.0.1": "2011-12-10T00:00:12.167Z" + }, + "author": { + "name": "Felix Boehm", + "email": "me@feedic.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/fb55/node-htmlparser.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/htmlparser2/1.0.0", + "1.1.0": "http://registry.npmjs.org/htmlparser2/1.1.0", + "1.5.0": "http://registry.npmjs.org/htmlparser2/1.5.0", + "2.0.0": "http://registry.npmjs.org/htmlparser2/2.0.0", + "2.0.1": "http://registry.npmjs.org/htmlparser2/2.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "5bc30aa170e439652cdaeafc80c7cf8c20534af2", + "tarball": "http://registry.npmjs.org/htmlparser2/-/htmlparser2-1.0.0.tgz" + }, + "1.1.0": { + "shasum": "7449d714006d3f0f6c5cfff771ca1f7250431b0f", + "tarball": "http://registry.npmjs.org/htmlparser2/-/htmlparser2-1.1.0.tgz" + }, + "1.5.0": { + "shasum": "f579bbd9f3a7a58c966f7b39fae8c80ca08cfddd", + "tarball": "http://registry.npmjs.org/htmlparser2/-/htmlparser2-1.5.0.tgz" + }, + "2.0.0": { + "shasum": "4f3726cb094c0075c09adcb068cfe9718de87a8b", + "tarball": "http://registry.npmjs.org/htmlparser2/-/htmlparser2-2.0.0.tgz" + }, + "2.0.1": { + "shasum": "73a9d3e9e30f051e7473ef71f6638581c7588fea", + "tarball": "http://registry.npmjs.org/htmlparser2/-/htmlparser2-2.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/htmlparser2/" + }, + "htmlscanner": { + "name": "htmlscanner", + "description": "A fast C++ HTML scanner that can also parse badly formed HTML", + "dist-tags": { + "latest": "0.7.0" + }, + "readme": "# Introduction\n\nHTMLScanner is a fast HTML/XML scanner/tokenizer for node.js. The scanner tries to be forgiven and is ideal those messy HTML documents. It should parse most HTML files and ofcourse also valid XML files. \n\nPlease note there is no explicit support for namespaces. If you need a full blown XML parser, there are already many good alternatives available for Node.js. \n\nThe core of the scanner module is a fast C++ module and is for 80% based on the excelent XHScanner created by Andrew Fedoniouk, see also [http://www.codeproject.com/KB/recipes/HTML_XML_Scanner.aspx]. Without this module HTMLScanner would not be here today.\n\n## Installation\n\nJust run the npm install command:\n\n```bash\n$ npm install htmlscanner\n```\n\nOr if you like to do it yourself:\n\n```bash\n$ git clone git@github.com:jbaron/htmlscanner.git\n$ cd htmlscanner\n$ node-waf configure build install\n```\n\n\nYou should now have a file called **htmlscanner.node** in the lib directory. We use node-waf to build this module. Please note that older versions of node-waf use a different build directory. In that case you should find the file somewhere under the build/default directory. There are also some simple test cases included with this module. Just type for example:\n\n```bash\n$ node test/test_simple.js\n```\n\n## Usage\n\nThe usage is straight forward:\n\n```javascript\nvar Scanner = require(\"../lib/htmlscanner\").Scanner;\nvar scanner = new Scanner(\"

hello
\");\ndo {\n\ttoken = scanner.next();\n\tconsole.dir(token);\n} while (token[0]);\n```\n\nThe token you get back from the scanner.next() call contains all the info. The above sample would produce the following output.\n\n```javascript\n[1,\"div\",\"id\",\"12\",\"class\",\"important\"] // Type 1 indicates OPEN TAG. Attribute key/value pairs are also included.\n[4,\"hello\"]\t\t\t\t// Type 3 indicates TEXT\n[2,\"div\"] \t\t\t\t// Type 2 indicates CLOSE TAG\n[0]\t\t\t\t\t// Type 0 indicates END OF FILE\n```\n\nThe first element in the array is the type, the other elements in the array depend on the first one.\n\n## TODO\n\nThere are several things still to do:\n\n * Entity decoding of text. Although much of the code is already there, it is not yet Unicode ready.\n * Add routines for entity encoding.\n * Add support for Buffers. Right now only Strings are supported.\n * Add some additional robustness checks.\n * Compile on other platforms besides Linux. The code should be portable, but has never been tested on any other platform besides Linux. So if you have success compiling and using this on OSX or Windows please let us know.\n\n## Background\n\nThere is not much that cannot be done in plain JavaScript. The Chrome team did a great job making the V8 engine a very fast JavaScript solution. However one area that could become a bottleneck is when you start having to iterate over String, character at the time. For example when peforming encodings or parsing of XML Strings. And to be honest this is not only a problem that is specific to JavaScript. For example when you profile a highly optimized Java program that does a lot of XML parsing and serializing, you see these same type of methods at the top of the CPU usage. So for these types of operations this library contains a set of optimized C/C++ modules to speed up these tasks within V8.\n\n", + "maintainers": [ + { + "name": "jbaron", + "email": "peter@jbaron.com" + } + ], + "time": { + "modified": "2011-11-12T14:46:54.954Z", + "created": "2011-11-12T14:46:53.358Z", + "0.7.0": "2011-11-12T14:46:54.954Z" + }, + "author": { + "name": "JBaron", + "email": "info@jbaron.com" + }, + "repository": { + "type": "git", + "url": "git://github.com:jbaron/htmlscanner.git" + }, + "versions": { + "0.7.0": "http://registry.npmjs.org/htmlscanner/0.7.0" + }, + "dist": { + "0.7.0": { + "shasum": "0e331daff986be1866a14cde23b3fc7055878f4d", + "tarball": "http://registry.npmjs.org/htmlscanner/-/htmlscanner-0.7.0.tgz" + } + }, + "url": "http://registry.npmjs.org/htmlscanner/" + }, + "htpasswd": { + "name": "htpasswd", + "description": "Node.js package for HTTP Basic Authentication password file utility.", + "dist-tags": { + "latest": "1.0.9" + }, + "maintainers": [ + { + "name": "gevorg", + "email": "gevorg.ha@gmail.com" + } + ], + "time": { + "modified": "2011-12-04T19:46:29.786Z", + "created": "2011-12-03T14:35:27.819Z", + "1.0.0": "2011-12-03T14:35:31.279Z", + "1.0.1": "2011-12-03T18:37:06.933Z", + "1.0.2": "2011-12-03T19:10:10.869Z", + "1.0.3": "2011-12-03T19:18:39.000Z", + "1.0.4": "2011-12-03T19:21:38.029Z", + "1.0.5": "2011-12-03T19:38:38.238Z", + "1.0.6": "2011-12-03T19:44:53.980Z", + "1.0.7": "2011-12-04T09:11:39.525Z", + "1.0.8": "2011-12-04T09:30:11.266Z", + "1.0.9": "2011-12-04T19:46:29.786Z" + }, + "author": { + "name": "Gevorg Harutyunyan", + "url": "http://github.com/gevorg" + }, + "repository": { + "type": "git", + "url": "git://github.com/gevorg/htpasswd.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/htpasswd/1.0.0", + "1.0.1": "http://registry.npmjs.org/htpasswd/1.0.1", + "1.0.2": "http://registry.npmjs.org/htpasswd/1.0.2", + "1.0.3": "http://registry.npmjs.org/htpasswd/1.0.3", + "1.0.4": "http://registry.npmjs.org/htpasswd/1.0.4", + "1.0.5": "http://registry.npmjs.org/htpasswd/1.0.5", + "1.0.6": "http://registry.npmjs.org/htpasswd/1.0.6", + "1.0.7": "http://registry.npmjs.org/htpasswd/1.0.7", + "1.0.8": "http://registry.npmjs.org/htpasswd/1.0.8", + "1.0.9": "http://registry.npmjs.org/htpasswd/1.0.9" + }, + "dist": { + "1.0.0": { + "shasum": "44b2b1bc48066aa96608ee478c0fd4128cc3ab58", + "tarball": "http://registry.npmjs.org/htpasswd/-/htpasswd-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "bd7ab5255cb265f652cc6218beda53146787effc", + "tarball": "http://registry.npmjs.org/htpasswd/-/htpasswd-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "28b5fca35ccca8ba86bcbe90e005d403764fc7fb", + "tarball": "http://registry.npmjs.org/htpasswd/-/htpasswd-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "21b473e6b2e9a7164dc0a9589742c177a027af84", + "tarball": "http://registry.npmjs.org/htpasswd/-/htpasswd-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "8c60d74f345fc8c96e02a3d0617b8e106ff19d82", + "tarball": "http://registry.npmjs.org/htpasswd/-/htpasswd-1.0.4.tgz" + }, + "1.0.5": { + "shasum": "5dec675bece47bcbfd54f0ea51ae3a50941caacf", + "tarball": "http://registry.npmjs.org/htpasswd/-/htpasswd-1.0.5.tgz" + }, + "1.0.6": { + "shasum": "a88dbdcc06617435e5d84d08c6eced9cb8ec478f", + "tarball": "http://registry.npmjs.org/htpasswd/-/htpasswd-1.0.6.tgz" + }, + "1.0.7": { + "shasum": "cee0431b32c89d7364585dd1fbd8da79dc80cd1f", + "tarball": "http://registry.npmjs.org/htpasswd/-/htpasswd-1.0.7.tgz" + }, + "1.0.8": { + "shasum": "79b5e244111ccfc51c8650ace2cb341ee30cfe3a", + "tarball": "http://registry.npmjs.org/htpasswd/-/htpasswd-1.0.8.tgz" + }, + "1.0.9": { + "shasum": "fdddbfe0aee1f41de5d6fe62c491d4dba4667bd2", + "tarball": "http://registry.npmjs.org/htpasswd/-/htpasswd-1.0.9.tgz" + } + }, + "keywords": [ + "node", + "htpasswd", + "http", + "server", + "basic", + "access", + "authentication" + ], + "url": "http://registry.npmjs.org/htpasswd/" + }, + "htracr": { + "name": "htracr", + "description": "HTTP sniffing and low-level visualisation", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "mnot", + "email": "mnot@mnot.net" + } + ], + "author": { + "name": "Mark Nottingham", + "email": "mnot@mnot.net", + "url": "http://www.mnot.net/" + }, + "repository": { + "type": "git", + "url": "http://github.com/mnot/htracr.git" + }, + "time": { + "modified": "2011-03-02T07:55:37.151Z", + "created": "2011-02-01T23:46:41.964Z", + "0.1.0": "2011-02-01T23:46:41.964Z", + "0.1.1": "2011-02-01T23:46:41.964Z", + "0.1.2": "2011-02-01T23:46:41.964Z", + "0.1.3": "2011-02-01T23:46:41.964Z", + "0.1.4": "2011-02-01T23:46:41.964Z", + "0.1.5": "2011-02-09T05:10:20.148Z", + "0.1.6": "2011-02-10T23:38:56.789Z", + "0.1.7": "2011-02-11T00:02:46.561Z", + "0.1.8": "2011-02-11T00:08:15.531Z", + "0.1.9": "2011-02-11T00:20:42.027Z", + "0.2.0": "2011-02-11T00:29:16.793Z", + "0.2.1": "2011-03-01T05:57:10.137Z", + "0.2.2": "2011-03-02T07:55:37.151Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/htracr/0.1.0", + "0.1.1": "http://registry.npmjs.org/htracr/0.1.1", + "0.1.2": "http://registry.npmjs.org/htracr/0.1.2", + "0.1.3": "http://registry.npmjs.org/htracr/0.1.3", + "0.1.4": "http://registry.npmjs.org/htracr/0.1.4", + "0.1.5": "http://registry.npmjs.org/htracr/0.1.5", + "0.1.6": "http://registry.npmjs.org/htracr/0.1.6", + "0.1.7": "http://registry.npmjs.org/htracr/0.1.7", + "0.1.8": "http://registry.npmjs.org/htracr/0.1.8", + "0.1.9": "http://registry.npmjs.org/htracr/0.1.9", + "0.2.0": "http://registry.npmjs.org/htracr/0.2.0", + "0.2.1": "http://registry.npmjs.org/htracr/0.2.1", + "0.2.2": "http://registry.npmjs.org/htracr/0.2.2" + }, + "dist": { + "0.1.0": { + "shasum": "98fd6b0f8358e842f1ee195af6db5f429e73ca40", + "tarball": "http://registry.npmjs.org/htracr/-/htracr-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "40a5af144017d19fdf134adc233d5ac75b51ac7d", + "tarball": "http://registry.npmjs.org/htracr/-/htracr-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "906f6a662f6628bc56cfd000f63574888c475072", + "tarball": "http://registry.npmjs.org/htracr/-/htracr-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "195dc3596a9d4829efe418d09988271603c86bf2", + "tarball": "http://registry.npmjs.org/htracr/-/htracr-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "a3438b00b1739750180fdb73b4982a8cca7d52c9", + "tarball": "http://registry.npmjs.org/htracr/-/htracr-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "b0a64000044976a6aa2e8d3680586ac0d03fa137", + "tarball": "http://registry.npmjs.org/htracr/-/htracr-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "eb4285a73c43ebf42d53129e6c72753a5f85e309", + "tarball": "http://registry.npmjs.org/htracr/-/htracr-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "a769f7b2870f6d2e7c6a70548c3d42d05b696b2b", + "tarball": "http://registry.npmjs.org/htracr/-/htracr-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "a751ae1baba13c741c21c79d67b754b2808cb13b", + "tarball": "http://registry.npmjs.org/htracr/-/htracr-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "4cc5f944eee0eb77cec2b32d8f6687de6f4fca41", + "tarball": "http://registry.npmjs.org/htracr/-/htracr-0.1.9.tgz" + }, + "0.2.0": { + "shasum": "6e0d11b44df5dbba470e4317076ff7e6b2ac7d4e", + "tarball": "http://registry.npmjs.org/htracr/-/htracr-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "61b4c929c21f9033b8587e9c08fc9ce55816770a", + "tarball": "http://registry.npmjs.org/htracr/-/htracr-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "98e7a87f295629410126ecf49f3d28eaa0209e6d", + "tarball": "http://registry.npmjs.org/htracr/-/htracr-0.2.2.tgz" + } + }, + "keywords": [ + "sniffer", + "HTTP", + "trace" + ], + "url": "http://registry.npmjs.org/htracr/" + }, + "http": { + "name": "http", + "description": "Make http calls", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "agilbert", + "email": "alain.gilbert.15@gmail.com" + } + ], + "time": { + "modified": "2011-09-14T05:04:49.716Z", + "created": "2011-09-14T05:04:49.476Z", + "0.0.0": "2011-09-14T05:04:49.716Z" + }, + "author": { + "name": "Alain Gilbert", + "email": "alain.gilbert.15@gmail.com", + "url": "http://agilbert.name/" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/http/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "9f898ecc138ba480e9b94b1719dd0dc1f292bba2", + "tarball": "http://registry.npmjs.org/http/-/http-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/http/" + }, + "http_compat": { + "name": "http_compat", + "description": "Http compatability library to bridge the gap between 0.2.x and 0.4.x for library development.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "ncb000gt", + "email": "nicholas.j.campbell@gmail.com" + } + ], + "time": { + "modified": "2011-03-10T19:56:31.902Z", + "created": "2011-03-10T19:56:31.813Z", + "0.1.0": "2011-03-10T19:56:31.902Z" + }, + "author": { + "name": "Nick Campbell", + "url": "http://github.com/ncb000gt" + }, + "repository": { + "type": "git", + "url": "http://github.com/ncb000gt/node-http_compat.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/http_compat/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "8aaf16bbc4ada5d7b30f5f81e2cbd4c8104c9e64", + "tarball": "http://registry.npmjs.org/http_compat/-/http_compat-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/http_compat/" + }, + "http_router": { + "name": "http_router", + "description": "URL routing and generation in js", + "dist-tags": { + "latest": "0.9.2" + }, + "maintainers": [ + { + "name": "joshbuddy", + "email": "joshbuddy@gmail.com" + } + ], + "time": { + "modified": "2011-07-24T17:43:50.936Z", + "created": "2011-07-16T20:07:55.187Z", + "0.9.0": "2011-07-16T20:07:56.831Z", + "0.9.1": "2011-07-23T03:49:04.843Z", + "0.9.2": "2011-07-24T17:43:50.936Z" + }, + "author": { + "name": "Joshua Hull", + "email": "joshbuddy@gmail.com" + }, + "versions": { + "0.9.0": "http://registry.npmjs.org/http_router/0.9.0", + "0.9.1": "http://registry.npmjs.org/http_router/0.9.1", + "0.9.2": "http://registry.npmjs.org/http_router/0.9.2" + }, + "dist": { + "0.9.0": { + "shasum": "9fec2c3763689191e1861f889cb79eedbc1ed4ec", + "tarball": "http://registry.npmjs.org/http_router/-/http_router-0.9.0.tgz" + }, + "0.9.1": { + "shasum": "f803dd9d7b2e998601d532490b38d514fd879c5a", + "tarball": "http://registry.npmjs.org/http_router/-/http_router-0.9.1.tgz" + }, + "0.9.2": { + "shasum": "4946afd390d9d98b7feb7825e124951596327062", + "tarball": "http://registry.npmjs.org/http_router/-/http_router-0.9.2.tgz" + } + }, + "url": "http://registry.npmjs.org/http_router/" + }, + "http_trace": { + "name": "http_trace", + "description": "Live HTTP and WebSocket packet capture and protocol decoding", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "mjr", + "email": "mjr@ranney.com" + } + ], + "author": { + "name": "Matt Ranney", + "email": "mjr@ranney.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mranney/http_trace.git" + }, + "time": { + "modified": "2011-02-01T19:39:58.409Z", + "created": "2011-01-19T00:56:57.449Z", + "0.2.4": "2011-01-19T00:56:57.449Z", + "0.2.5": "2011-01-19T00:56:57.449Z", + "0.3.0": "2011-02-01T19:39:58.409Z" + }, + "versions": { + "0.2.4": "http://registry.npmjs.org/http_trace/0.2.4", + "0.2.5": "http://registry.npmjs.org/http_trace/0.2.5", + "0.3.0": "http://registry.npmjs.org/http_trace/0.3.0" + }, + "dist": { + "0.2.4": { + "shasum": "c5e6ad4eda8210d5d553a51b5a71cb61fe0e198d", + "tarball": "http://registry.npmjs.org/http_trace/-/http_trace-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "5299e20d295db643e0c0b40bf68638989b37b992", + "tarball": "http://registry.npmjs.org/http_trace/-/http_trace-0.2.5.tgz" + }, + "0.3.0": { + "shasum": "c4455112077ff4b21f4778792327c6d74f06e50a", + "tarball": "http://registry.npmjs.org/http_trace/-/http_trace-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/http_trace/" + }, + "http-agent": { + "name": "http-agent", + "description": "A simple agent for performing a sequence of http requests in node.js", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + } + ], + "author": { + "name": "Charlie Robbins", + "email": "charlie.robbins@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/indexzero/http-agent.git" + }, + "time": { + "modified": "2011-07-15T15:33:26.649Z", + "created": "2011-05-25T05:43:28.231Z", + "0.1.0": "2011-05-25T05:43:28.231Z", + "0.1.1": "2011-05-25T05:43:28.231Z", + "0.1.2": "2011-07-15T15:33:26.650Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/http-agent/0.1.0", + "0.1.1": "http://registry.npmjs.org/http-agent/0.1.1", + "0.1.2": "http://registry.npmjs.org/http-agent/0.1.2" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/http-agent/-/http-agent-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "52a9da46b914bb798c1a7e2f1efb0ed3b724ff54", + "tarball": "http://registry.npmjs.org/http-agent/-/http-agent-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "aaacd633c87e5ab42ed4f90827a1a5f1e2bac4b8", + "tarball": "http://registry.npmjs.org/http-agent/-/http-agent-0.1.2.tgz" + } + }, + "keywords": [ + "http-agent", + "iterator", + "http", + "webcrawler" + ], + "url": "http://registry.npmjs.org/http-agent/" + }, + "http-auth": { + "name": "http-auth", + "description": "Node.js package for HTTP basic and digest access authentication.", + "dist-tags": { + "latest": "1.1.4" + }, + "maintainers": [ + { + "name": "gevorg", + "email": "gevorg.ha@gmail.com" + } + ], + "time": { + "modified": "2011-12-04T19:48:22.005Z", + "created": "2011-09-18T22:29:57.228Z", + "1.0.0": "2011-09-18T22:29:59.501Z", + "1.0.1": "2011-09-29T01:40:34.185Z", + "1.0.2": "2011-09-29T20:46:19.654Z", + "1.0.3": "2011-09-29T21:16:17.630Z", + "1.0.4": "2011-10-04T00:19:45.673Z", + "1.0.5": "2011-10-04T23:10:54.564Z", + "1.0.6": "2011-10-06T21:39:48.504Z", + "1.0.7": "2011-10-07T01:03:25.988Z", + "1.0.8": "2011-10-08T19:22:28.018Z", + "1.0.9": "2011-11-28T19:38:54.338Z", + "1.1.0": "2011-12-03T20:19:39.758Z", + "1.1.1": "2011-12-04T09:36:55.402Z", + "1.1.2": "2011-12-04T19:08:36.414Z", + "1.1.3": "2011-12-04T19:26:06.723Z", + "1.1.4": "2011-12-04T19:48:22.005Z" + }, + "author": { + "name": "Gevorg Harutyunyan", + "url": "http://github.com/gevorg" + }, + "repository": { + "type": "git", + "url": "git://github.com/gevorg/http-auth.git" + }, + "users": {}, + "versions": { + "1.0.0": "http://registry.npmjs.org/http-auth/1.0.0", + "1.0.1": "http://registry.npmjs.org/http-auth/1.0.1", + "1.0.2": "http://registry.npmjs.org/http-auth/1.0.2", + "1.0.3": "http://registry.npmjs.org/http-auth/1.0.3", + "1.0.4": "http://registry.npmjs.org/http-auth/1.0.4", + "1.0.5": "http://registry.npmjs.org/http-auth/1.0.5", + "1.0.6": "http://registry.npmjs.org/http-auth/1.0.6", + "1.0.7": "http://registry.npmjs.org/http-auth/1.0.7", + "1.0.8": "http://registry.npmjs.org/http-auth/1.0.8", + "1.0.9": "http://registry.npmjs.org/http-auth/1.0.9", + "1.1.0": "http://registry.npmjs.org/http-auth/1.1.0", + "1.1.1": "http://registry.npmjs.org/http-auth/1.1.1", + "1.1.2": "http://registry.npmjs.org/http-auth/1.1.2", + "1.1.3": "http://registry.npmjs.org/http-auth/1.1.3", + "1.1.4": "http://registry.npmjs.org/http-auth/1.1.4" + }, + "dist": { + "1.0.0": { + "shasum": "4df0532c059eeb8e29731c7d0b0bf18ce1590470", + "tarball": "http://registry.npmjs.org/http-auth/-/http-auth-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "692ed155d1e3cf82cdf37894db8d9f455261dbf3", + "tarball": "http://registry.npmjs.org/http-auth/-/http-auth-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "2982f2d41f9f4e62328e88234e9d97e61899d7f6", + "tarball": "http://registry.npmjs.org/http-auth/-/http-auth-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "c5425ee7ba9d7a64032e49e199c91a18906584a2", + "tarball": "http://registry.npmjs.org/http-auth/-/http-auth-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "e0ff76ff2c1f75c18978b66c29d1415bb1347f6b", + "tarball": "http://registry.npmjs.org/http-auth/-/http-auth-1.0.4.tgz" + }, + "1.0.5": { + "shasum": "55eace13829717ac4bf28e53b1e288a19e7734a0", + "tarball": "http://registry.npmjs.org/http-auth/-/http-auth-1.0.5.tgz" + }, + "1.0.6": { + "shasum": "abc837aa40ee6dfa36fd265088dfaf052d1768d4", + "tarball": "http://registry.npmjs.org/http-auth/-/http-auth-1.0.6.tgz" + }, + "1.0.7": { + "shasum": "525732bd8def920ed70e453ca4afcf7f46d3ecda", + "tarball": "http://registry.npmjs.org/http-auth/-/http-auth-1.0.7.tgz" + }, + "1.0.8": { + "shasum": "a3b7c0f7debd54f7243e5eba55193d1a1a7b5387", + "tarball": "http://registry.npmjs.org/http-auth/-/http-auth-1.0.8.tgz" + }, + "1.0.9": { + "shasum": "87f8264a7929a5cf77fbd71b23ec05d9db6de9dd", + "tarball": "http://registry.npmjs.org/http-auth/-/http-auth-1.0.9.tgz" + }, + "1.1.0": { + "shasum": "2e256f86a75b4f743778a4853ec464a386b93dfc", + "tarball": "http://registry.npmjs.org/http-auth/-/http-auth-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "da2eb444b058317bd9dcae14bb23993773b18d7b", + "tarball": "http://registry.npmjs.org/http-auth/-/http-auth-1.1.1.tgz" + }, + "1.1.2": { + "shasum": "388cc29320f2edaa2f9ebe51223cdb9731bd0905", + "tarball": "http://registry.npmjs.org/http-auth/-/http-auth-1.1.2.tgz" + }, + "1.1.3": { + "shasum": "1ecffee0102bbcb3505393cbd9e278fa25b447b8", + "tarball": "http://registry.npmjs.org/http-auth/-/http-auth-1.1.3.tgz" + }, + "1.1.4": { + "shasum": "b39baa6f09e16290bf2290e47eead408e4698aa7", + "tarball": "http://registry.npmjs.org/http-auth/-/http-auth-1.1.4.tgz" + } + }, + "keywords": [ + "node", + "http", + "server", + "basic", + "digest", + "access", + "authentication" + ], + "url": "http://registry.npmjs.org/http-auth/" + }, + "http-auth2": { + "name": "http-auth2", + "description": "HTTP server with basic authentication.", + "dist-tags": { + "latest": "1.1.0" + }, + "maintainers": [ + { + "name": "sasadjolic", + "email": "sasa.djolic@gmail.com" + } + ], + "time": { + "modified": "2011-09-25T07:27:22.842Z", + "created": "2011-09-25T07:27:22.369Z", + "1.1.0": "2011-09-25T07:27:22.842Z" + }, + "author": { + "name": "Sasa Djolic", + "url": "Based on work by Gevorg Harutyunyan" + }, + "repository": { + "type": "git", + "url": "git://github.com/SDA/http-auth2.git" + }, + "versions": { + "1.1.0": "http://registry.npmjs.org/http-auth2/1.1.0" + }, + "dist": { + "1.1.0": { + "shasum": "1782393af6adbc13d99f617ae72b82c18f5eece0", + "tarball": "http://registry.npmjs.org/http-auth2/-/http-auth2-1.1.0.tgz" + } + }, + "keywords": [ + "node", + "http", + "server", + "authentication" + ], + "url": "http://registry.npmjs.org/http-auth2/" + }, + "http-basic-auth": { + "name": "http-basic-auth", + "description": "HTTP Client with basic authentication support", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "tomas.heran", + "email": "tomas.heran@gmail.com" + } + ], + "versions": { + "0.1.0": "http://registry.npmjs.org/http-basic-auth/0.1.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/http-basic-auth/-/http-basic-auth-0.1.0.tgz" + } + }, + "keywords": [ + "http", + "basic", + "auth" + ], + "url": "http://registry.npmjs.org/http-basic-auth/" + }, + "http-booter": { + "name": "http-booter", + "description": "http-booter", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "jiangmiao", + "email": "jiangfriend@gmail.com" + } + ], + "time": { + "modified": "2011-10-29T13:46:30.820Z", + "created": "2011-10-29T13:36:05.965Z", + "0.1.0": "2011-10-29T13:46:30.820Z" + }, + "author": { + "name": "Jiang Miao", + "email": "jiangfriend@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/jiangmiao/node-http-booter.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/http-booter/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "10de709504d8d36b76bb999037cc195deea6ff3f", + "tarball": "http://registry.npmjs.org/http-booter/-/http-booter-0.1.0.tgz" + } + }, + "keywords": [ + "http-booter", + "http", + "booter", + "multipart" + ], + "url": "http://registry.npmjs.org/http-booter/" + }, + "http-browserify": { + "name": "http-browserify", + "description": "http module compatability for browserify", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-08-20T05:26:20.606Z", + "created": "2011-08-20T05:26:19.722Z", + "0.0.0": "2011-08-20T05:26:20.606Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/http-browserify.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/http-browserify/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "10876a100209f94a6f72044df4337a6cca7b31b7", + "tarball": "http://registry.npmjs.org/http-browserify/-/http-browserify-0.0.0.tgz" + } + }, + "keywords": [ + "http", + "browserify", + "compatible", + "meatless", + "browser" + ], + "url": "http://registry.npmjs.org/http-browserify/" + }, + "http-console": { + "name": "http-console", + "description": "Speak HTTP like a native", + "dist-tags": { + "latest": "0.6.1", + "stable": "0.5.1" + }, + "maintainers": [ + { + "name": "cloudhead", + "email": "self@cloudhead.net" + } + ], + "author": { + "name": "Alexis Sellier", + "email": "self@cloudhead.net" + }, + "time": { + "modified": "2011-07-18T14:02:48.871Z", + "created": "2011-01-26T19:50:27.555Z", + "0.1.0": "2011-01-26T19:50:27.555Z", + "0.1.1": "2011-01-26T19:50:27.555Z", + "0.1.2": "2011-01-26T19:50:27.555Z", + "0.2.0": "2011-01-26T19:50:27.555Z", + "0.2.1": "2011-01-26T19:50:27.555Z", + "0.2.2": "2011-01-26T19:50:27.555Z", + "0.2.3": "2011-01-26T19:50:27.555Z", + "0.2.4": "2011-01-26T19:50:27.555Z", + "0.2.5": "2011-01-26T19:50:27.555Z", + "0.3.0": "2011-01-26T19:50:27.555Z", + "0.3.1": "2011-01-26T19:50:27.555Z", + "0.3.2": "2011-01-26T19:50:27.555Z", + "0.3.3": "2011-01-26T19:50:27.555Z", + "0.3.4": "2011-01-26T19:50:27.555Z", + "0.4.0": "2011-01-26T19:50:27.555Z", + "0.5.0": "2011-01-26T19:50:27.555Z", + "0.5.1": "2011-01-26T19:50:27.555Z", + "0.6.0": "2011-01-26T19:50:27.555Z", + "0.6.1": "2011-07-18T14:02:48.871Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/http-console/0.1.0", + "0.1.1": "http://registry.npmjs.org/http-console/0.1.1", + "0.1.2": "http://registry.npmjs.org/http-console/0.1.2", + "0.2.0": "http://registry.npmjs.org/http-console/0.2.0", + "0.2.1": "http://registry.npmjs.org/http-console/0.2.1", + "0.2.2": "http://registry.npmjs.org/http-console/0.2.2", + "0.2.3": "http://registry.npmjs.org/http-console/0.2.3", + "0.2.4": "http://registry.npmjs.org/http-console/0.2.4", + "0.2.5": "http://registry.npmjs.org/http-console/0.2.5", + "0.3.0": "http://registry.npmjs.org/http-console/0.3.0", + "0.3.1": "http://registry.npmjs.org/http-console/0.3.1", + "0.3.2": "http://registry.npmjs.org/http-console/0.3.2", + "0.3.3": "http://registry.npmjs.org/http-console/0.3.3", + "0.3.4": "http://registry.npmjs.org/http-console/0.3.4", + "0.4.0": "http://registry.npmjs.org/http-console/0.4.0", + "0.5.0": "http://registry.npmjs.org/http-console/0.5.0", + "0.5.1": "http://registry.npmjs.org/http-console/0.5.1", + "0.6.0": "http://registry.npmjs.org/http-console/0.6.0", + "0.6.1": "http://registry.npmjs.org/http-console/0.6.1" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/http-console/-/http-console-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://packages:5984/http-console/-/http-console-0.1.1.tgz" + }, + "0.1.2": { + "tarball": "http://packages:5984/http-console/-/http-console-0.1.2.tgz" + }, + "0.2.0": { + "tarball": "http://packages:5984/http-console/-/http-console-0.2.0.tgz" + }, + "0.2.1": { + "tarball": "http://packages:5984/http-console/-/http-console-0.2.1.tgz" + }, + "0.2.2": { + "tarball": "http://packages:5984/http-console/-/http-console-0.2.2.tgz" + }, + "0.2.3": { + "tarball": "http://packages:5984/http-console/-/http-console-0.2.3.tgz" + }, + "0.2.4": { + "tarball": "http://packages:5984/http-console/-/http-console-0.2.4.tgz" + }, + "0.2.5": { + "tarball": "http://packages:5984/http-console/-/http-console-0.2.5.tgz" + }, + "0.3.0": { + "tarball": "http://packages:5984/http-console/-/http-console-0.3.0.tgz" + }, + "0.3.1": { + "tarball": "http://packages:5984/http-console/-/http-console-0.3.1.tgz" + }, + "0.3.2": { + "tarball": "http://packages:5984/http-console/-/http-console-0.3.2.tgz" + }, + "0.3.3": { + "tarball": "http://packages:5984/http-console/-/http-console-0.3.3.tgz" + }, + "0.3.4": { + "tarball": "http://packages:5984/http-console/-/http-console-0.3.4.tgz" + }, + "0.4.0": { + "tarball": "http://packages:5984/http-console/-/http-console-0.4.0.tgz" + }, + "0.5.0": { + "tarball": "http://registry.npmjs.org/http-console/-/http-console-0.5.0.tgz" + }, + "0.5.1": { + "tarball": "http://registry.npmjs.org/http-console/-/http-console-0.5.1.tgz" + }, + "0.6.0": { + "shasum": "1648913e18136c6a14d928f1e94a62daa70c0eda", + "tarball": "http://registry.npmjs.org/http-console/-/http-console-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "ea0be82d25bc3cea36fccff6fbff89f701257a17", + "tarball": "http://registry.npmjs.org/http-console/-/http-console-0.6.1.tgz" + } + }, + "keywords": [ + "http", + "console", + "repl" + ], + "url": "http://registry.npmjs.org/http-console/" + }, + "http-console2": { + "name": "http-console2", + "description": "Speak HTTP like a native", + "dist-tags": { + "latest": "0.6.1" + }, + "readme": "http-console\n============\n\n> Speak HTTP like a local\n\nTalking to an HTTP server with `curl` can be fun, but most of the time it's a `PITA`.\n\n`http-console` is a simple and intuitive interface for speaking the HTTP protocol.\n\n*PS: HTTP has never been this much fun.*\n\nsynopsis\n--------\n\n![http-console](http://dl.dropbox.com/u/251849/http-console.png)\n\ninstallation\n------------\n\n*http-console* was written for [node](http://nodejs.org), so make sure you have that installed\nfirst. Then you need [npm](http://github.com/isaacs/npm), node's package manager.\n\nOnce you're all set, run:\n\n $ npm install http-console\n\nIt'll download the dependencies, and install the command-line tool in `/usr/local/bin`.\n\n### Installing the bleeding edge #\n\nThe latest release will often be available on npm as `http-console@latest`, so you can run:\n\n $ npm install http-console@latest\n\nAlternatively, you can download a tarball of this repo, or clone it. Just make sure you have\nthe latest version of node.\n\nintroduction\n------------\n\nLet's assume we have a [CouchDB](http://couchdb.apache.org) instance running locally.\n\n### connecting #\n\nTo connect, we run `http-console`, passing it the server host and port as such:\n\n $ http-console 127.0.0.1:5984 \n\n### navigating #\n\nOnce connected, we should see the *http prompt*:\n\n http://127.0.0.1:5984/>\n\nserver navigation is similar to directory navigation, except a little simpler:\n\n http://127.0.0.1:5984/> /logs\n http://127.0.0.1:5984/logs> /46\n http://127.0.0.1:5984/logs/46> ..\n http://127.0.0.1:5984/logs> ..\n http://127.0.0.1:5984/>\n\n### requesting #\n\nHTTP requests are issued with the HTTP verbs *GET*, *PUT*, *POST*, *HEAD* and *DELETE*, and\na relative path:\n\n http://127.0.0.1:5984/> GET /\n HTTP/1.1 200 OK\n Date: Mon, 31 May 2010 04:43:39 GMT\n Content-Length: 41\n\n {\n couchdb: \"Welcome\",\n version: \"0.11.0\"\n }\n\n http://127.0.0.1:5984/> GET /bob\n HTTP/1.1 404 Not Found\n Date: Mon, 31 May 2010 04:45:32 GMT\n Content-Length: 44\n\n {\n error: \"not_found\",\n reason: \"no_db_file\"\n }\n\nWhen issuing *POST* and *PUT* commands, we have the opportunity to send data too:\n\n http://127.0.0.1:5984/> /rabbits\n http://127.0.0.1:5984/rabbits> POST\n ... {\"name\":\"Roger\"}\n\n HTTP/1.1 201 Created\n Location: http://127.0.0.1/rabbits/2fd9db055885e6982462a10e54003127\n Date: Mon, 31 May 2010 05:09:15 GMT\n Content-Length: 95\n\n {\n ok: true,\n id: \"2fd9db055885e6982462a10e54003127\",\n rev: \"1-0c3db91854f26486d1c3922f1a651d86\"\n }\n\nMake sure you have your `Content-Type` header set properly, if the API requires it. More\nin the section below.\n\n> Note that if you're trying to POST to a form handler, you'll most probably want to send data\nin `multipart/form-data` format, such as `name=roger&hair=black`. http-console sends your POST/PUT data *as is*,\nso make sure you've got the format right, and the appropriate `Content-Type` header.\n\n### setting headers #\n\nSometimes, it's useful to set HTTP headers:\n\n http://127.0.0.1:5984/> Accept: application/json\n http://127.0.0.1:5984/> X-Lodge: black\n\nThese headers are sent with all requests in this session. To see all active headers,\nrun the `.headers` command:\n\n http://127.0.0.1:5984/> .headers\n Accept: application/json\n X-Lodge: black\n\nRemoving headers is just as easy:\n\n http://127.0.0.1:5984/> Accept:\n http://127.0.0.1:5984/> .headers\n X-Lodge: black\n\nBecause JSON is such a common data format, http-console has a way to automatically set\nthe `Content-Type` header to `application/json`. Just pass the `--json` option when\nstarting http-cosnole, or run the `.json` command:\n\n $ http-console 127.0.0.1:5984 --json\n http://127.0.0.1:5984/> .headers\n Accept: */*\n Content-Type: application/json\n\n### cookies #\n\nYou can enable cookie tracking with the `--cookies` option flag.\nTo see what cookies are stored, use the `.cookies` command.\n\n### SSL #\n\nTo enable SSL, pass the `--ssl` flag, or specify the address with `https`.\n\n### quitting #\n\n http://127.0.0.1:5984/> .q\n\nnuff' said.\n\n\n\n", + "maintainers": [ + { + "name": "mmalecki", + "email": "maciej.malecki@notimplemented.org" + } + ], + "time": { + "modified": "2011-11-10T09:23:33.800Z", + "created": "2011-11-10T09:23:31.909Z", + "0.6.1": "2011-11-10T09:23:33.800Z" + }, + "author": { + "name": "Alexis Sellier", + "email": "self@cloudhead.net" + }, + "versions": { + "0.6.1": "http://registry.npmjs.org/http-console2/0.6.1" + }, + "dist": { + "0.6.1": { + "shasum": "19d2c7bf8507e8ade5c0fca556c259062dd02e51", + "tarball": "http://registry.npmjs.org/http-console2/-/http-console2-0.6.1.tgz" + } + }, + "keywords": [ + "http", + "console", + "repl" + ], + "url": "http://registry.npmjs.org/http-console2/" + }, + "http-digest": { + "name": "http-digest", + "description": "Enables your web server to use HTTP Digest authentication", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "thedjinn", + "email": "emil@koffietijd.net" + } + ], + "author": { + "name": "Emil Loer", + "email": "emil@koffietijd.net" + }, + "repository": { + "type": "git", + "url": "http://github.com/thedjinn/node-http-digest.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/http-digest/0.1.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/http-digest/-/http-digest-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/http-digest/" + }, + "http-digest-auth": { + "name": "http-digest-auth", + "description": "Functions to perform http digest authentication", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "erikdubbelboer", + "email": "erik@dubbelboer.com" + } + ], + "time": { + "modified": "2011-08-23T08:40:31.714Z", + "created": "2011-08-06T11:13:56.966Z", + "0.1.0": "2011-08-06T11:13:57.472Z", + "0.1.1": "2011-08-22T10:14:14.896Z", + "0.1.2": "2011-08-23T08:40:31.714Z" + }, + "author": { + "name": "Erik Dubbelboer", + "email": "erik@dubbelboer.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/http-digest-auth/0.1.0", + "0.1.1": "http://registry.npmjs.org/http-digest-auth/0.1.1", + "0.1.2": "http://registry.npmjs.org/http-digest-auth/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "9f1607988bee761c017e1150796f6831f7867eee", + "tarball": "http://registry.npmjs.org/http-digest-auth/-/http-digest-auth-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "ade5ebe648f1a20b6f3733c7fb1e9fa364937333", + "tarball": "http://registry.npmjs.org/http-digest-auth/-/http-digest-auth-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "e1f338897b8866dd77ef81d54ef3eb50bad94ca5", + "tarball": "http://registry.npmjs.org/http-digest-auth/-/http-digest-auth-0.1.2.tgz" + } + }, + "keywords": [ + "http", + "digest", + "auth" + ], + "url": "http://registry.npmjs.org/http-digest-auth/" + }, + "http-get": { + "name": "http-get", + "description": "Simple to use node.js HTTP / HTTPS client for downloading remote files. Supports transparent gzip decoding.", + "dist-tags": { + "latest": "0.3.12" + }, + "maintainers": [ + { + "name": "saltwaterc", + "email": "saltwaterc@gmail.com" + } + ], + "time": { + "modified": "2011-12-13T10:38:48.484Z", + "created": "2011-07-18T13:12:55.027Z", + "0.1.0": "2011-12-08T09:47:04.682Z", + "0.1.1": "2011-12-08T09:47:04.682Z", + "0.1.2": "2011-12-08T09:47:04.682Z", + "0.1.3": "2011-12-08T09:47:04.682Z", + "0.1.4": "2011-12-08T09:47:04.682Z", + "0.1.5": "2011-12-08T09:47:04.682Z", + "0.1.6": "2011-12-08T09:47:04.682Z", + "0.2.0": "2011-12-08T09:47:04.682Z", + "0.2.1": "2011-12-08T09:47:04.682Z", + "0.3.0": "2011-12-08T09:47:04.682Z", + "0.3.1": "2011-12-08T09:47:04.682Z", + "0.3.2": "2011-12-08T09:47:04.682Z", + "0.3.3": "2011-12-08T09:47:04.682Z", + "0.3.4": "2011-12-08T09:47:04.682Z", + "0.3.5": "2011-12-08T09:47:04.682Z", + "0.3.6": "2011-12-08T09:47:04.682Z", + "0.3.7": "2011-12-08T09:47:04.682Z", + "0.3.8": "2011-12-08T09:47:04.682Z", + "0.3.9": "2011-12-08T09:47:04.682Z", + "0.3.10": "2011-11-24T08:20:25.945Z", + "0.3.11": "2011-12-08T09:47:04.682Z", + "0.3.12": "2011-12-13T10:38:48.484Z" + }, + "author": { + "name": "Stefan Rusu", + "url": "http://www.saltwaterc.eu/" + }, + "repository": { + "type": "git", + "url": "git://github.com/SaltwaterC/http-get.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/http-get/0.1.0", + "0.1.1": "http://registry.npmjs.org/http-get/0.1.1", + "0.1.2": "http://registry.npmjs.org/http-get/0.1.2", + "0.1.3": "http://registry.npmjs.org/http-get/0.1.3", + "0.1.4": "http://registry.npmjs.org/http-get/0.1.4", + "0.1.5": "http://registry.npmjs.org/http-get/0.1.5", + "0.1.6": "http://registry.npmjs.org/http-get/0.1.6", + "0.2.0": "http://registry.npmjs.org/http-get/0.2.0", + "0.2.1": "http://registry.npmjs.org/http-get/0.2.1", + "0.3.0": "http://registry.npmjs.org/http-get/0.3.0", + "0.3.1": "http://registry.npmjs.org/http-get/0.3.1", + "0.3.2": "http://registry.npmjs.org/http-get/0.3.2", + "0.3.3": "http://registry.npmjs.org/http-get/0.3.3", + "0.3.4": "http://registry.npmjs.org/http-get/0.3.4", + "0.3.5": "http://registry.npmjs.org/http-get/0.3.5", + "0.3.6": "http://registry.npmjs.org/http-get/0.3.6", + "0.3.7": "http://registry.npmjs.org/http-get/0.3.7", + "0.3.8": "http://registry.npmjs.org/http-get/0.3.8", + "0.3.9": "http://registry.npmjs.org/http-get/0.3.9", + "0.3.10": "http://registry.npmjs.org/http-get/0.3.10", + "0.3.11": "http://registry.npmjs.org/http-get/0.3.11", + "0.3.12": "http://registry.npmjs.org/http-get/0.3.12" + }, + "dist": { + "0.1.0": { + "shasum": "6148298a9ced4a2d293359417605d36132e3d327", + "tarball": "http://registry.npmjs.org/http-get/-/http-get-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "3f3b49b90599aea8a3b488213f902c4b997274cc", + "tarball": "http://registry.npmjs.org/http-get/-/http-get-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "e9e4bbcbbc072c78d0d23ed01fc404b2747dc1ac", + "tarball": "http://registry.npmjs.org/http-get/-/http-get-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "be72c51e7e1c41aadce12c4ea1b5078c3875bcb9", + "tarball": "http://registry.npmjs.org/http-get/-/http-get-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "585ed35c34a370041e5510146a88ccb0e2d4bfde", + "tarball": "http://registry.npmjs.org/http-get/-/http-get-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "78a51fc6a874fa4aea8ed513b4f0dd1d2524317f", + "tarball": "http://registry.npmjs.org/http-get/-/http-get-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "8bc0e24f475368a35ca73433e74d6ea54cdf7e6f", + "tarball": "http://registry.npmjs.org/http-get/-/http-get-0.1.6.tgz" + }, + "0.2.0": { + "shasum": "42133cf74a7cd35c2a247e9af29116d8f25a24db", + "tarball": "http://registry.npmjs.org/http-get/-/http-get-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "c4ac17f65b22023742eed0ed3716d9d59161bb75", + "tarball": "http://registry.npmjs.org/http-get/-/http-get-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "21838fa6f84cada14578a7f31a337425a5155da6", + "tarball": "http://registry.npmjs.org/http-get/-/http-get-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "9eab89b34b48faa20db402dd4b4a8de9c9ff72c6", + "tarball": "http://registry.npmjs.org/http-get/-/http-get-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "974d23e94b41ac48052d176c5f8cba14b60f61e2", + "tarball": "http://registry.npmjs.org/http-get/-/http-get-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "23393f21bbfbfb1629adfd2644b7837c6a4d9d51", + "tarball": "http://registry.npmjs.org/http-get/-/http-get-0.3.3.tgz" + }, + "0.3.4": { + "shasum": "080bcde20c16fd1065b6571c8b19cad84fdf4f01", + "tarball": "http://registry.npmjs.org/http-get/-/http-get-0.3.4.tgz" + }, + "0.3.5": { + "shasum": "25a51687091d070efeed8991c3a97713d3d7e682", + "tarball": "http://registry.npmjs.org/http-get/-/http-get-0.3.5.tgz" + }, + "0.3.6": { + "shasum": "3b9011e21dc2e7fe44e96599dd0f753b0cabf5f0", + "tarball": "http://registry.npmjs.org/http-get/-/http-get-0.3.6.tgz" + }, + "0.3.7": { + "shasum": "4c038e31cad3053129b6d43ba298a227aec68843", + "tarball": "http://registry.npmjs.org/http-get/-/http-get-0.3.7.tgz" + }, + "0.3.8": { + "shasum": "d9fa0fb840a4ac91cac6263fd4b9ed602ac12a5c", + "tarball": "http://registry.npmjs.org/http-get/-/http-get-0.3.8.tgz" + }, + "0.3.9": { + "shasum": "c8d0cd77cdfade00d5f86bc567a98c38e420a832", + "tarball": "http://registry.npmjs.org/http-get/-/http-get-0.3.9.tgz" + }, + "0.3.10": { + "shasum": "aacf96b1a5ff01571df3b975c35d2fcb56a43ab0", + "tarball": "http://registry.npmjs.org/http-get/-/http-get-0.3.10.tgz" + }, + "0.3.11": { + "shasum": "33b464d9bc291e444632fc7eba28dba0574326f1", + "tarball": "http://registry.npmjs.org/http-get/-/http-get-0.3.11.tgz" + }, + "0.3.12": { + "shasum": "4d9836812006338bf7e47c5369c931686f281d3e", + "tarball": "http://registry.npmjs.org/http-get/-/http-get-0.3.12.tgz" + } + }, + "keywords": [ + "http", + "https", + "get", + "head", + "download", + "gzip" + ], + "url": "http://registry.npmjs.org/http-get/" + }, + "http-gzip": { + "name": "http-gzip", + "description": "Extremely simple gzip layer for native http.Server", + "dist-tags": { + "latest": "1.0.0" + }, + "readme": null, + "maintainers": [ + { + "name": "jankuca", + "email": "jan@jankuca.com" + } + ], + "time": { + "modified": "2011-11-12T17:18:58.272Z", + "created": "2011-11-12T17:18:56.705Z", + "1.0.0": "2011-11-12T17:18:58.272Z" + }, + "author": { + "name": "Jan Kuča", + "email": "jan@jankuca.com", + "url": "http://jankuca.com" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/http-gzip/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "d79a579fadad13df75431f2f58a9d70d12845364", + "tarball": "http://registry.npmjs.org/http-gzip/-/http-gzip-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/http-gzip/" + }, + "http-load": { + "name": "http-load", + "description": "Simple load testing tool for HTTP applications", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "stilkov", + "email": "stefan.tilkov@innoq.com" + } + ], + "time": { + "modified": "2011-03-06T17:49:45.326Z", + "created": "2011-03-06T17:49:44.647Z", + "0.1.0": "2011-03-06T17:49:45.326Z" + }, + "author": { + "name": "Stefan Tilkov", + "email": "stefan.tilkov@innoq.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/stilkov/http-load.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/http-load/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "8e4ac4acf9cd0411eb3c396ba09b28e068db5f26", + "tarball": "http://registry.npmjs.org/http-load/-/http-load-0.1.0.tgz" + } + }, + "keywords": [ + "test", + "load", + "http" + ], + "url": "http://registry.npmjs.org/http-load/" + }, + "http-proxy": { + "name": "http-proxy", + "description": "A full-featured http reverse proxy for node.js", + "dist-tags": { + "latest": "0.7.6" + }, + "maintainers": [ + { + "name": "marak", + "email": "marak.squires@gmail.com" + }, + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + } + ], + "author": { + "name": "Charlie Robbins", + "email": "charlie.robbins@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/nodejitsu/node-http-proxy.git" + }, + "time": { + "modified": "2011-11-24T02:59:28.035Z", + "created": "2011-03-20T18:37:42.115Z", + "0.1.5": "2011-03-20T18:37:42.115Z", + "0.2.0": "2011-03-20T18:37:42.115Z", + "0.3.0": "2011-03-20T18:37:42.115Z", + "0.3.1": "2011-03-20T18:37:42.115Z", + "0.4.0": "2011-03-20T18:37:42.115Z", + "0.4.1": "2011-03-20T21:42:39.710Z", + "0.4.2": "2011-04-13T21:24:43.807Z", + "0.5.0": "2011-04-18T01:37:47.127Z", + "0.5.1": "2011-05-10T22:31:25.797Z", + "0.5.2": "2011-05-17T22:40:59.948Z", + "0.5.3": "2011-05-18T01:38:07.066Z", + "0.5.4": "2011-05-19T01:10:09.614Z", + "0.5.5": "2011-05-19T04:38:37.820Z", + "0.5.6": "2011-05-19T06:00:15.396Z", + "0.5.7": "2011-05-19T06:46:03.717Z", + "0.5.8": "2011-05-21T14:43:40.621Z", + "0.5.9": "2011-05-23T06:19:07.714Z", + "0.5.10": "2011-06-13T06:53:20.983Z", + "0.5.11": "2011-06-26T17:26:08.499Z", + "0.6.0": "2011-07-26T01:21:02.357Z", + "0.6.1": "2011-08-02T14:08:09.011Z", + "0.7.0": "2011-08-04T13:00:37.432Z", + "0.6.2": "2011-08-09T10:35:13.520Z", + "0.6.4": "2011-08-28T23:34:01.455Z", + "0.6.5": "2011-08-29T01:15:15.681Z", + "0.6.6": "2011-08-31T15:49:12.708Z", + "0.7.2": "2011-09-30T08:22:30.123Z", + "0.7.3": "2011-10-04T19:18:15.451Z", + "0.7.4": "2011-11-10T06:01:09.076Z", + "0.7.5": "2011-11-11T01:28:13.015Z", + "0.7.6": "2011-11-14T20:44:10.580Z" + }, + "users": { + "pgte": true + }, + "versions": { + "0.5.9": "http://registry.npmjs.org/http-proxy/0.5.9", + "0.5.10": "http://registry.npmjs.org/http-proxy/0.5.10", + "0.5.11": "http://registry.npmjs.org/http-proxy/0.5.11", + "0.6.0": "http://registry.npmjs.org/http-proxy/0.6.0", + "0.6.1": "http://registry.npmjs.org/http-proxy/0.6.1", + "0.6.2": "http://registry.npmjs.org/http-proxy/0.6.2", + "0.6.4": "http://registry.npmjs.org/http-proxy/0.6.4", + "0.6.5": "http://registry.npmjs.org/http-proxy/0.6.5", + "0.6.6": "http://registry.npmjs.org/http-proxy/0.6.6", + "0.7.0": "http://registry.npmjs.org/http-proxy/0.7.0", + "0.7.2": "http://registry.npmjs.org/http-proxy/0.7.2", + "0.7.3": "http://registry.npmjs.org/http-proxy/0.7.3", + "0.7.4": "http://registry.npmjs.org/http-proxy/0.7.4", + "0.7.5": "http://registry.npmjs.org/http-proxy/0.7.5", + "0.7.6": "http://registry.npmjs.org/http-proxy/0.7.6" + }, + "dist": { + "0.5.9": { + "shasum": "957103fa0515e475f99a2b4c5bfe3507d513a81e", + "tarball": "http://registry.npmjs.org/http-proxy/-/http-proxy-0.5.9.tgz" + }, + "0.5.10": { + "shasum": "acd2b9126569dea265fc01bcaca1b2293232067b", + "tarball": "http://registry.npmjs.org/http-proxy/-/http-proxy-0.5.10.tgz" + }, + "0.5.11": { + "shasum": "f58f2572765d06c71749b09275b1ba167ffabdf2", + "tarball": "http://registry.npmjs.org/http-proxy/-/http-proxy-0.5.11.tgz" + }, + "0.6.0": { + "shasum": "4fbcdc84d01f20c2531f375c437ec619c9e1012c", + "tarball": "http://registry.npmjs.org/http-proxy/-/http-proxy-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "0e786540c438fa139781d1b0be3521c3d7c6e728", + "tarball": "http://registry.npmjs.org/http-proxy/-/http-proxy-0.6.1.tgz" + }, + "0.6.2": { + "shasum": "5114c56b4cf6dbe33094d6f0bbcb79d757210708", + "tarball": "http://registry.npmjs.org/http-proxy/-/http-proxy-0.6.2.tgz" + }, + "0.6.4": { + "shasum": "1301de97d023eadbf7bdda81e1dc7efb5cedf4c5", + "tarball": "http://registry.npmjs.org/http-proxy/-/http-proxy-0.6.4.tgz" + }, + "0.6.5": { + "shasum": "1b17209ee173b71fd74961e23a1f6f369978077f", + "tarball": "http://registry.npmjs.org/http-proxy/-/http-proxy-0.6.5.tgz" + }, + "0.6.6": { + "shasum": "5a9cdbb02fc3cb740f2e511497da5e9e2b3ac469", + "tarball": "http://registry.npmjs.org/http-proxy/-/http-proxy-0.6.6.tgz" + }, + "0.7.0": { + "shasum": "36c843818cdab7052f2f93aeed778e0f3cde5ada", + "tarball": "http://registry.npmjs.org/http-proxy/-/http-proxy-0.7.0.tgz" + }, + "0.7.2": { + "shasum": "4e2e473b2c8875313101fbc657b2706e064525dd", + "tarball": "http://registry.npmjs.org/http-proxy/-/http-proxy-0.7.2.tgz" + }, + "0.7.3": { + "shasum": "4f4bc8bbd08a206c6d822ba7a3dc582f4e8e7b32", + "tarball": "http://registry.npmjs.org/http-proxy/-/http-proxy-0.7.3.tgz" + }, + "0.7.4": { + "shasum": "385556d7e84ca1f367f8a3887f4c8263f8d8a3ca", + "tarball": "http://registry.npmjs.org/http-proxy/-/http-proxy-0.7.4.tgz" + }, + "0.7.5": { + "shasum": "ce69c26ccd432837548caf606ea44d2997d9d337", + "tarball": "http://registry.npmjs.org/http-proxy/-/http-proxy-0.7.5.tgz" + }, + "0.7.6": { + "shasum": "7193cca1ebdf828d1582e740630b5caf816fd1e0", + "tarball": "http://registry.npmjs.org/http-proxy/-/http-proxy-0.7.6.tgz" + } + }, + "keywords": [ + "reverse", + "proxy", + "http" + ], + "url": "http://registry.npmjs.org/http-proxy/" + }, + "http-proxy-backward": { + "name": "http-proxy-backward", + "description": "A full-featured http reverse proxy for node.js", + "dist-tags": { + "latest": "0.5.11" + }, + "maintainers": [ + { + "name": "diorahman", + "email": "diorahman@gmail.com" + } + ], + "time": { + "modified": "2011-07-05T10:35:28.554Z", + "created": "2011-07-05T10:34:43.136Z", + "0.5.11": "2011-07-05T10:35:28.554Z" + }, + "author": { + "name": "Charlie Robbins", + "email": "charlie.robbins@gmail.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/nodejitsu/node-http-proxy.git" + }, + "versions": { + "0.5.11": "http://registry.npmjs.org/http-proxy-backward/0.5.11" + }, + "dist": { + "0.5.11": { + "shasum": "888f474d5f90b7cbc4c0a81dd3e7f5848c403f2f", + "tarball": "http://registry.npmjs.org/http-proxy-backward/-/http-proxy-backward-0.5.11.tgz" + } + }, + "keywords": [ + "reverse", + "proxy", + "http" + ], + "url": "http://registry.npmjs.org/http-proxy-backward/" + }, + "http-proxy-glimpse": { + "name": "http-proxy-glimpse", + "description": "A full-featured http reverse proxy for node.js", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "alterdio", + "email": "alterdio@gmail.com" + } + ], + "time": { + "modified": "2011-07-05T10:46:37.112Z", + "created": "2011-07-05T10:46:15.722Z", + "0.0.1": "2011-07-05T10:46:37.112Z" + }, + "author": { + "name": "Charlie Robbins", + "email": "charlie.robbins@gmail.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/nodejitsu/node-http-proxy.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/http-proxy-glimpse/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "dd328ee9bebf8c89e2b294259371f5c9432c753f", + "tarball": "http://registry.npmjs.org/http-proxy-glimpse/-/http-proxy-glimpse-0.0.1.tgz" + } + }, + "keywords": [ + "reverse", + "proxy", + "http" + ], + "url": "http://registry.npmjs.org/http-proxy-glimpse/" + }, + "http-proxy-no-line-184-error": { + "name": "http-proxy-no-line-184-error", + "description": "A full-featured http reverse proxy for node.js, minus that error.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "joelklabo", + "email": "joelklabo@gmail.com" + } + ], + "time": { + "modified": "2011-02-01T05:47:55.806Z", + "created": "2011-02-01T05:47:55.403Z", + "0.0.1": "2011-02-01T05:47:55.806Z" + }, + "author": { + "name": "Charlie Robbins", + "email": "charlie.robbins@gmail.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/joelklabo/node-http-proxy.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/http-proxy-no-line-184-error/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "1f47fc0662f51d296a012c8810a53e774fd9e722", + "tarball": "http://registry.npmjs.org/http-proxy-no-line-184-error/-/http-proxy-no-line-184-error-0.0.1.tgz" + } + }, + "keywords": [ + "reverse", + "proxy", + "http" + ], + "url": "http://registry.npmjs.org/http-proxy-no-line-184-error/" + }, + "http-proxy-selective": { + "name": "http-proxy-selective", + "description": "http proxy also serves static files", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "zentooo", + "email": "zentoooo@gmail.com" + } + ], + "author": { + "name": "zentooo", + "email": "zentoooo@gmail.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/zentooo/node-http-proxy-selective.git" + }, + "time": { + "modified": "2010-12-21T16:52:00.502Z", + "created": "2010-12-21T16:52:00.502Z", + "0.1.0": "2010-12-21T16:52:00.502Z", + "0.1.1": "2010-12-21T16:52:00.502Z", + "0.1.2": "2010-12-21T16:52:00.502Z", + "0.1.3": "2010-12-21T16:52:00.502Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/http-proxy-selective/0.1.0", + "0.1.1": "http://registry.npmjs.org/http-proxy-selective/0.1.1", + "0.1.2": "http://registry.npmjs.org/http-proxy-selective/0.1.2", + "0.1.3": "http://registry.npmjs.org/http-proxy-selective/0.1.3" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/http-proxy-selective/-/http-proxy-selective-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://packages:5984/http-proxy-selective/-/http-proxy-selective-0.1.1.tgz" + }, + "0.1.2": { + "tarball": "http://registry.npmjs.org/http-proxy-selective/-/http-proxy-selective-0.1.2.tgz" + }, + "0.1.3": { + "tarball": "http://registry.npmjs.org/http-proxy-selective/-/http-proxy-selective-0.1.3.tgz" + } + }, + "keywords": [ + "reverse", + "proxy", + "http", + "static" + ], + "url": "http://registry.npmjs.org/http-proxy-selective/" + }, + "http-recorder": { + "name": "http-recorder", + "description": "A tool to record and play back raw http requests.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "felixge", + "email": "felix@debuggable.com" + } + ], + "time": { + "modified": "2011-05-13T08:50:53.845Z", + "created": "2011-05-13T08:50:53.166Z", + "0.0.1": "2011-05-13T08:50:53.845Z" + }, + "author": { + "name": "Felix Geisendörfer", + "email": "felix@debuggable.com", + "url": "http://debuggable.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/felixge/node-http-recorder.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/http-recorder/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "e0961432ecb492af2eec85b8062ae7c2fe085c63", + "tarball": "http://registry.npmjs.org/http-recorder/-/http-recorder-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/http-recorder/" + }, + "http-request-provider": { + "name": "http-request-provider", + "description": "Some clever yet compact description", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "samuraijack", + "email": "nickolay8@gmail.com" + } + ], + "author": { + "name": "Nickolay Platonov", + "email": "nplatonov@cpan.org" + }, + "repository": { + "web": "http://github.com/SamuraiJack/HTTP-Request-Provider/tree", + "url": "git://github.com/SamuraiJack/HTTP-Request-Provider.git", + "type": "git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/http-request-provider/0.2.0" + }, + "dist": { + "0.2.0": { + "tarball": "http://packages:5984/http-request-provider/-/http-request-provider-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/http-request-provider/" + }, + "http-server": { + "name": "http-server", + "description": "a simple zero-configuration command-line http server", + "dist-tags": { + "latest": "0.4.0" + }, + "maintainers": [ + { + "name": "marak", + "email": "marak.squires@gmail.com" + } + ], + "time": { + "modified": "2011-12-04T01:39:56.926Z", + "created": "2011-06-17T00:03:43.653Z", + "0.1.0": "2011-06-17T00:03:45.722Z", + "0.1.1": "2011-06-17T01:19:48.364Z", + "0.1.3": "2011-07-16T00:17:56.070Z", + "0.2.1": "2011-08-25T21:48:53.416Z", + "0.2.2": "2011-08-25T22:03:44.657Z", + "0.2.3": "2011-08-30T09:04:11.158Z", + "0.2.4": "2011-08-30T09:47:22.000Z", + "0.2.5": "2011-09-02T04:47:02.242Z", + "0.2.6": "2011-10-20T02:15:42.225Z", + "0.2.9": "2011-10-31T20:29:38.070Z", + "0.3.0": "2011-11-25T00:41:38.383Z", + "0.4.0": "2011-12-04T01:39:56.926Z" + }, + "author": { + "name": "Nodejitsu", + "email": "support@nodejitsu.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/nodejitsu/http-server.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/http-server/0.1.0", + "0.1.1": "http://registry.npmjs.org/http-server/0.1.1", + "0.1.3": "http://registry.npmjs.org/http-server/0.1.3", + "0.2.1": "http://registry.npmjs.org/http-server/0.2.1", + "0.2.2": "http://registry.npmjs.org/http-server/0.2.2", + "0.2.3": "http://registry.npmjs.org/http-server/0.2.3", + "0.2.4": "http://registry.npmjs.org/http-server/0.2.4", + "0.2.5": "http://registry.npmjs.org/http-server/0.2.5", + "0.2.6": "http://registry.npmjs.org/http-server/0.2.6", + "0.2.9": "http://registry.npmjs.org/http-server/0.2.9", + "0.3.0": "http://registry.npmjs.org/http-server/0.3.0", + "0.4.0": "http://registry.npmjs.org/http-server/0.4.0" + }, + "dist": { + "0.1.0": { + "shasum": "386e44acfdd908a709221365aae9c13d23ff3030", + "tarball": "http://registry.npmjs.org/http-server/-/http-server-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "8c66aa50a7157dbcf9250dbb05673f10d4033890", + "tarball": "http://registry.npmjs.org/http-server/-/http-server-0.1.1.tgz" + }, + "0.1.3": { + "shasum": "cb1fd28c5a4dda09f8d89bcf9517e401f0e740f4", + "tarball": "http://registry.npmjs.org/http-server/-/http-server-0.1.3.tgz" + }, + "0.2.1": { + "shasum": "81647760cec33c290106b6dcb3da76bb30aa4a70", + "tarball": "http://registry.npmjs.org/http-server/-/http-server-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "f4e42efe6131139238f2a63fbc62bc363b04eff2", + "tarball": "http://registry.npmjs.org/http-server/-/http-server-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "c89fc33f45d49353b412750d4c60a6dd298683a6", + "tarball": "http://registry.npmjs.org/http-server/-/http-server-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "f9f3f836908db990dd5e5c694a62494c5c12bd76", + "tarball": "http://registry.npmjs.org/http-server/-/http-server-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "0459ad4bb1d52fe8adb905145a667211da625135", + "tarball": "http://registry.npmjs.org/http-server/-/http-server-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "a8de2633f5366d7e7e8bc8e52ca7ac4999f223b6", + "tarball": "http://registry.npmjs.org/http-server/-/http-server-0.2.6.tgz" + }, + "0.2.9": { + "shasum": "9b0c070662e74414fdd7574bc216e0dd93d11165", + "tarball": "http://registry.npmjs.org/http-server/-/http-server-0.2.9.tgz" + }, + "0.3.0": { + "shasum": "9c56633779117176f80e81e418e1013cc32a9048", + "tarball": "http://registry.npmjs.org/http-server/-/http-server-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "888aced0b8497f224e0c795c2d8faf6965fab7bc", + "tarball": "http://registry.npmjs.org/http-server/-/http-server-0.4.0.tgz" + } + }, + "keywords": [ + "cli", + "command" + ], + "url": "http://registry.npmjs.org/http-server/" + }, + "http-signature": { + "name": "http-signature", + "description": "Reference implementation of Joyent's HTTP Signature Scheme", + "dist-tags": { + "latest": "0.9.7" + }, + "maintainers": [ + { + "name": "mcavage", + "email": "mcavage@gmail.com" + } + ], + "time": { + "modified": "2011-12-01T22:11:13.562Z", + "created": "2011-07-14T21:21:46.738Z", + "0.9.0": "2011-07-14T21:21:47.284Z", + "0.9.2": "2011-09-04T01:42:03.454Z", + "0.9.3": "2011-09-04T13:14:46.733Z", + "0.9.4": "2011-09-14T23:36:49.612Z", + "0.9.5": "2011-10-13T22:57:52.139Z", + "0.9.6": "2011-11-17T20:32:42.757Z", + "0.9.7": "2011-12-01T22:11:13.562Z" + }, + "author": { + "name": "Joyent, Inc" + }, + "repository": { + "type": "git", + "url": "git://github.com/joyent/node-http-signature.git" + }, + "versions": { + "0.9.0": "http://registry.npmjs.org/http-signature/0.9.0", + "0.9.2": "http://registry.npmjs.org/http-signature/0.9.2", + "0.9.3": "http://registry.npmjs.org/http-signature/0.9.3", + "0.9.4": "http://registry.npmjs.org/http-signature/0.9.4", + "0.9.5": "http://registry.npmjs.org/http-signature/0.9.5", + "0.9.6": "http://registry.npmjs.org/http-signature/0.9.6", + "0.9.7": "http://registry.npmjs.org/http-signature/0.9.7" + }, + "dist": { + "0.9.0": { + "shasum": "b1df2888b77e2ac471b1d32c0dae9ce699b88cf0", + "tarball": "http://registry.npmjs.org/http-signature/-/http-signature-0.9.0.tgz" + }, + "0.9.2": { + "shasum": "0b9dbc04b7c5ec2179fb82c0319b574fde6a4a0e", + "tarball": "http://registry.npmjs.org/http-signature/-/http-signature-0.9.2.tgz" + }, + "0.9.3": { + "shasum": "08c023a61528d5de8513f05e7b72adc771898abf", + "tarball": "http://registry.npmjs.org/http-signature/-/http-signature-0.9.3.tgz" + }, + "0.9.4": { + "shasum": "981c932e4b78f76f8f0fb52d0787f39a739abdeb", + "tarball": "http://registry.npmjs.org/http-signature/-/http-signature-0.9.4.tgz" + }, + "0.9.5": { + "shasum": "913839b60e0b04b63103e78d50186fb51d38cfff", + "tarball": "http://registry.npmjs.org/http-signature/-/http-signature-0.9.5.tgz" + }, + "0.9.6": { + "shasum": "634010383d84b79eb88616d44928f1c2b18c7290", + "tarball": "http://registry.npmjs.org/http-signature/-/http-signature-0.9.6.tgz" + }, + "0.9.7": { + "shasum": "562c4c0324ab5f26371ddda9abb92ec66714d9ff", + "tarball": "http://registry.npmjs.org/http-signature/-/http-signature-0.9.7.tgz" + } + }, + "url": "http://registry.npmjs.org/http-signature/" + }, + "http-stack": { + "name": "http-stack", + "description": "A `StreamStack` implementation of the HTTP protocol.", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "TooTallNate", + "email": "nathan@tootallnate.net" + } + ], + "author": { + "name": "Nathan Rajlich", + "email": "nathan@tootallnate.net" + }, + "time": { + "modified": "2011-04-15T18:43:38.211Z", + "created": "2011-01-22T02:48:43.060Z", + "0.0.2": "2011-01-22T02:48:43.060Z", + "0.1.1": "2011-01-22T02:48:43.060Z", + "0.1.2": "2011-04-05T20:45:23.926Z", + "0.1.3": "2011-04-15T18:43:38.211Z" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/http-stack/0.0.2", + "0.1.1": "http://registry.npmjs.org/http-stack/0.1.1", + "0.1.2": "http://registry.npmjs.org/http-stack/0.1.2", + "0.1.3": "http://registry.npmjs.org/http-stack/0.1.3" + }, + "dist": { + "0.0.2": { + "tarball": "http://registry.npmjs.org/http-stack/-/http-stack-0.0.2.tgz" + }, + "0.1.1": { + "shasum": "0a00fd36f2587867d5da2264c1c84626dc791ef5", + "tarball": "http://registry.npmjs.org/http-stack/-/http-stack-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "3c8c026cd90d72ec6f9146117fee33ed47b7ffa1", + "tarball": "http://registry.npmjs.org/http-stack/-/http-stack-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "1b635f48b7a1d7c2a47d07efd7e8a8b47b722783", + "tarball": "http://registry.npmjs.org/http-stack/-/http-stack-0.1.3.tgz" + } + }, + "keywords": [ + "stream", + "stack", + "http", + "protocol" + ], + "url": "http://registry.npmjs.org/http-stack/" + }, + "http-status": { + "name": "http-status", + "description": "Interact with HTTP status code", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "david", + "email": "david@adaltas.com" + } + ], + "time": { + "modified": "2011-12-13T20:14:10.819Z", + "created": "2011-03-25T23:41:05.349Z", + "0.0.1": "2011-03-25T23:41:05.786Z", + "0.1.0": "2011-04-18T23:42:36.947Z", + "0.1.1": "2011-12-13T20:14:10.819Z" + }, + "author": { + "name": "David Worms", + "email": "david@adaltas.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/http-status/0.0.1", + "0.1.0": "http://registry.npmjs.org/http-status/0.1.0", + "0.1.1": "http://registry.npmjs.org/http-status/0.1.1" + }, + "dist": { + "0.0.1": { + "shasum": "26a56d6fe9a35b21144a62d68db860c93e692ebc", + "tarball": "http://registry.npmjs.org/http-status/-/http-status-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "fb9cbb5aed019e8a1f5793407f086ab22e785a2d", + "tarball": "http://registry.npmjs.org/http-status/-/http-status-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "4393ebba9ed4ad18777abf42c0897abc2be4b7fb", + "tarball": "http://registry.npmjs.org/http-status/-/http-status-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/http-status/" + }, + "http-streamer": { + "name": "http-streamer", + "description": "HTTP as a stream.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "gozala", + "email": "rfobic@gmail.com" + } + ], + "time": { + "modified": "2011-09-29T05:03:39.482Z", + "created": "2011-09-29T05:03:37.883Z", + "0.0.1": "2011-09-29T05:03:39.482Z" + }, + "author": { + "name": "Irakli Gozalishvili", + "email": "rfobic@gmail.com", + "url": "http://jeditoolkit.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Gozala/http-streamer.git", + "web": "https://github.com/Gozala/http-streamer" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/http-streamer/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "032b1ffcd9ce95a9b4e0ba450adea775dff0bfe8", + "tarball": "http://registry.npmjs.org/http-streamer/-/http-streamer-0.0.1.tgz" + } + }, + "keywords": [ + "http", + "stream" + ], + "url": "http://registry.npmjs.org/http-streamer/" + }, + "httpd": { + "name": "httpd", + "description": "Small http server useful for development", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "dxld", + "email": "dxld@darkboxed.org" + } + ], + "time": { + "modified": "2011-10-19T19:32:35.587Z", + "created": "2011-02-07T15:09:24.661Z", + "0.0.1": "2011-02-07T15:09:25.090Z", + "0.0.2": "2011-10-19T19:32:35.587Z" + }, + "author": { + "name": "Daniel Gröber", + "email": "dxld@darkboxed.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/DanielG/node-httpd.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/httpd/0.0.1", + "0.0.2": "http://registry.npmjs.org/httpd/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "0fcc77040ecb6c5af4dea0d6d719c0fbbeaf173e", + "tarball": "http://registry.npmjs.org/httpd/-/httpd-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "4e2b247eac6fdf7f920c032697d19336e1e05813", + "tarball": "http://registry.npmjs.org/httpd/-/httpd-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/httpd/" + }, + "httpmock": { + "name": "httpmock", + "description": "An framework for stubbing out third-party network dependencies", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "bbyars", + "email": "brandon.byars@gmail.com" + } + ], + "time": { + "modified": "2011-05-29T17:56:51.021Z", + "created": "2011-05-29T17:56:50.549Z", + "0.2.0": "2011-05-29T17:56:51.021Z" + }, + "author": { + "name": "Brandon Byars", + "email": "brandon.byars@gmail.com", + "url": "http://brandonbyars.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/bbyars/httpmock.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/httpmock/0.2.0" + }, + "dist": { + "0.2.0": { + "shasum": "c528f71f0c96866bd7d68ebe209eeaa2b6d22469", + "tarball": "http://registry.npmjs.org/httpmock/-/httpmock-0.2.0.tgz" + } + }, + "keywords": [ + "testing", + "REST" + ], + "url": "http://registry.npmjs.org/httpmock/" + }, + "https-detect": { + "name": "https-detect", + "description": "Detect whether a stream is http or https and forward accordingly", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-11-15T02:37:01.611Z", + "created": "2011-11-15T02:36:59.000Z", + "0.0.0": "2011-11-15T02:37:01.611Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-https-detect.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/https-detect/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "b7fadfa86ce57e3a0eba51ee80b08b68ebb160a7", + "tarball": "http://registry.npmjs.org/https-detect/-/https-detect-0.0.0.tgz" + } + }, + "keywords": [ + "http", + "https", + "tls", + "detect", + "bounce", + "route" + ], + "url": "http://registry.npmjs.org/https-detect/" + }, + "https-proxied": { + "name": "https-proxied", + "description": "A https client that works with SSL proxies", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "vpulim", + "email": "v@pulim.com" + } + ], + "time": { + "modified": "2011-10-11T20:04:46.139Z", + "created": "2011-09-02T00:06:05.380Z", + "0.0.1": "2011-09-02T00:06:05.641Z", + "0.0.2": "2011-09-08T22:27:45.149Z", + "0.0.3": "2011-10-11T20:04:46.139Z" + }, + "author": { + "name": "Vinay Pulim", + "email": "v@pulim.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/milewise/node-https-proxied.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/https-proxied/0.0.1", + "0.0.2": "http://registry.npmjs.org/https-proxied/0.0.2", + "0.0.3": "http://registry.npmjs.org/https-proxied/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "ba7931c73cd31cf803a45a8543b5300a7018a986", + "tarball": "http://registry.npmjs.org/https-proxied/-/https-proxied-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "3fd831e97bbd69844756a8a2aa21a78649ae9182", + "tarball": "http://registry.npmjs.org/https-proxied/-/https-proxied-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "53d39023e1fa1631dd42893bb3765c76d114be07", + "tarball": "http://registry.npmjs.org/https-proxied/-/https-proxied-0.0.3.tgz" + } + }, + "keywords": [ + "https", + "proxy", + "ssl" + ], + "url": "http://registry.npmjs.org/https-proxied/" + }, + "httpsync-sf": { + "name": "httpsync-sf", + "description": "Module for http sync requests", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "egripasov", + "email": "gripasovegor@gmail.com" + } + ], + "time": { + "modified": "2011-11-09T13:14:08.384Z", + "created": "2011-11-09T12:43:00.908Z", + "0.0.1": "2011-11-09T12:43:02.940Z", + "0.0.2": "2011-11-09T13:14:08.384Z" + }, + "author": { + "name": "Egor Gripasov" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/httpsync-sf/0.0.1", + "0.0.2": "http://registry.npmjs.org/httpsync-sf/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "5116bed4b6f4afcff862590f81279a475267e731", + "tarball": "http://registry.npmjs.org/httpsync-sf/-/httpsync-sf-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "519cdd260b9bc4d487f48831f6ba8f94440f8e56", + "tarball": "http://registry.npmjs.org/httpsync-sf/-/httpsync-sf-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/httpsync-sf/" + }, + "httpu": { + "name": "httpu", + "description": "HTTP over Unix Domain Sockets", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "mcavage", + "email": "mcavage@gmail.com" + } + ], + "time": { + "modified": "2011-09-04T01:39:41.593Z", + "created": "2011-04-24T20:44:19.955Z", + "0.0.1": "2011-04-24T20:44:20.539Z", + "1.0.0": "2011-09-04T01:39:41.593Z" + }, + "author": { + "name": "Mark Cavage", + "email": "mcavage@gmail.com", + "url": "http://www.joyent.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mcavage/node-httpu.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/httpu/0.0.1", + "1.0.0": "http://registry.npmjs.org/httpu/1.0.0" + }, + "dist": { + "0.0.1": { + "shasum": "b610d0a00163aa6da8098ea5db4150ce226e5126", + "tarball": "http://registry.npmjs.org/httpu/-/httpu-0.0.1.tgz" + }, + "1.0.0": { + "shasum": "c835bf2d93e8ed42195dd93fd8681eaff605fd37", + "tarball": "http://registry.npmjs.org/httpu/-/httpu-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/httpu/" + }, + "hubot": { + "name": "hubot", + "description": "A simple helpful Robot for your Company", + "dist-tags": { + "latest": "2.0.7" + }, + "maintainers": [ + { + "name": "atmos", + "email": "atmos@atmos.org" + } + ], + "time": { + "modified": "2011-12-07T23:53:09.909Z", + "created": "2011-10-25T18:28:10.336Z", + "1.0.0": "2011-10-25T18:28:11.487Z", + "1.0.2": "2011-10-25T20:25:40.623Z", + "1.0.3": "2011-10-26T00:40:14.133Z", + "1.0.4": "2011-10-26T06:13:11.321Z", + "1.0.5": "2011-10-26T06:19:16.400Z", + "1.0.6": "2011-10-26T06:54:30.309Z", + "1.1.0": "2011-10-27T21:34:28.323Z", + "1.1.1": "2011-10-28T03:43:03.721Z", + "1.1.2": "2011-10-28T04:55:07.066Z", + "1.1.3": "2011-10-28T05:49:37.589Z", + "1.1.4": "2011-10-28T09:39:25.872Z", + "1.1.5": "2011-10-29T22:58:22.778Z", + "1.1.6": "2011-10-29T23:00:50.189Z", + "1.1.7": "2011-10-31T19:20:01.770Z", + "1.1.8": "2011-11-01T00:14:14.152Z", + "1.1.9": "2011-11-01T03:49:00.717Z", + "1.1.10": "2011-11-02T23:06:16.341Z", + "1.1.11": "2011-11-07T22:16:49.265Z", + "2.0.2": "2011-11-25T19:03:20.633Z", + "2.0.4": "2011-11-25T20:02:00.080Z", + "2.0.5": "2011-12-01T02:06:32.571Z", + "2.0.6": "2011-12-06T22:39:02.223Z", + "2.0.7": "2011-12-07T23:53:09.909Z" + }, + "author": { + "name": "hubot" + }, + "repository": { + "type": "git", + "url": "git://github.com/github/hubot.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/hubot/1.0.0", + "1.0.2": "http://registry.npmjs.org/hubot/1.0.2", + "1.0.3": "http://registry.npmjs.org/hubot/1.0.3", + "1.0.4": "http://registry.npmjs.org/hubot/1.0.4", + "1.0.5": "http://registry.npmjs.org/hubot/1.0.5", + "1.0.6": "http://registry.npmjs.org/hubot/1.0.6", + "1.1.0": "http://registry.npmjs.org/hubot/1.1.0", + "1.1.1": "http://registry.npmjs.org/hubot/1.1.1", + "1.1.2": "http://registry.npmjs.org/hubot/1.1.2", + "1.1.3": "http://registry.npmjs.org/hubot/1.1.3", + "1.1.4": "http://registry.npmjs.org/hubot/1.1.4", + "1.1.5": "http://registry.npmjs.org/hubot/1.1.5", + "1.1.6": "http://registry.npmjs.org/hubot/1.1.6", + "1.1.7": "http://registry.npmjs.org/hubot/1.1.7", + "1.1.8": "http://registry.npmjs.org/hubot/1.1.8", + "1.1.9": "http://registry.npmjs.org/hubot/1.1.9", + "1.1.10": "http://registry.npmjs.org/hubot/1.1.10", + "1.1.11": "http://registry.npmjs.org/hubot/1.1.11", + "2.0.2": "http://registry.npmjs.org/hubot/2.0.2", + "2.0.4": "http://registry.npmjs.org/hubot/2.0.4", + "2.0.5": "http://registry.npmjs.org/hubot/2.0.5", + "2.0.6": "http://registry.npmjs.org/hubot/2.0.6", + "2.0.7": "http://registry.npmjs.org/hubot/2.0.7" + }, + "dist": { + "1.0.0": { + "shasum": "1a31ec321ed196f19081b503bb3618ec95784bf7", + "tarball": "http://registry.npmjs.org/hubot/-/hubot-1.0.0.tgz" + }, + "1.0.2": { + "shasum": "189b3bebcc0d9361d2ece356583b7903427df4b0", + "tarball": "http://registry.npmjs.org/hubot/-/hubot-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "f228c8fb2d118a0e3e1d557a5b8f2c4177290f6f", + "tarball": "http://registry.npmjs.org/hubot/-/hubot-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "b0f3f452288291d483a1d8850bf8f8eac0c74be8", + "tarball": "http://registry.npmjs.org/hubot/-/hubot-1.0.4.tgz" + }, + "1.0.5": { + "shasum": "0c7153742de192ac0c3bd348637b7c91c2aa7691", + "tarball": "http://registry.npmjs.org/hubot/-/hubot-1.0.5.tgz" + }, + "1.0.6": { + "shasum": "303d205384b944096fd75fbadb6d0f4e0d706712", + "tarball": "http://registry.npmjs.org/hubot/-/hubot-1.0.6.tgz" + }, + "1.1.0": { + "shasum": "490d49f3608a0ab0b19ee95ddf833be0b9a9785a", + "tarball": "http://registry.npmjs.org/hubot/-/hubot-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "3f11258928c71c833e373ea0626edb65699bab73", + "tarball": "http://registry.npmjs.org/hubot/-/hubot-1.1.1.tgz" + }, + "1.1.2": { + "shasum": "acdc02858eaeadd00f588e66fcf22979847e31f1", + "tarball": "http://registry.npmjs.org/hubot/-/hubot-1.1.2.tgz" + }, + "1.1.3": { + "shasum": "0e0e6e5ada506a1f52a22116cf91447f11241150", + "tarball": "http://registry.npmjs.org/hubot/-/hubot-1.1.3.tgz" + }, + "1.1.4": { + "shasum": "f7282b30f21aa5de2778a42894a38aa9a3572590", + "tarball": "http://registry.npmjs.org/hubot/-/hubot-1.1.4.tgz" + }, + "1.1.5": { + "shasum": "98d6d5b72e3f4157667e6268b8e9bdb317365ad0", + "tarball": "http://registry.npmjs.org/hubot/-/hubot-1.1.5.tgz" + }, + "1.1.6": { + "shasum": "6ab3cfe3815f07a92a61c5c5148538f28b45631c", + "tarball": "http://registry.npmjs.org/hubot/-/hubot-1.1.6.tgz" + }, + "1.1.7": { + "shasum": "ee23ab504bbf8e8909b443dda2d318408152a07f", + "tarball": "http://registry.npmjs.org/hubot/-/hubot-1.1.7.tgz" + }, + "1.1.8": { + "shasum": "288e45cbf5b8838da346ad700730e8d0b7f75d2b", + "tarball": "http://registry.npmjs.org/hubot/-/hubot-1.1.8.tgz" + }, + "1.1.9": { + "shasum": "e531d7aeafa855cabc7a01cc1efb64d071f5504e", + "tarball": "http://registry.npmjs.org/hubot/-/hubot-1.1.9.tgz" + }, + "1.1.10": { + "shasum": "666f253b14158394efea88a511682891d09bc52d", + "tarball": "http://registry.npmjs.org/hubot/-/hubot-1.1.10.tgz" + }, + "1.1.11": { + "shasum": "44d6139b0548720a747483ca79b2091487944086", + "tarball": "http://registry.npmjs.org/hubot/-/hubot-1.1.11.tgz" + }, + "2.0.2": { + "shasum": "f7a3f9b898e72d5e6a365ca7ec40c79f41da9606", + "tarball": "http://registry.npmjs.org/hubot/-/hubot-2.0.2.tgz" + }, + "2.0.4": { + "shasum": "4a56a56bbcbccb5d4274a834b6858dad112b2f2b", + "tarball": "http://registry.npmjs.org/hubot/-/hubot-2.0.4.tgz" + }, + "2.0.5": { + "shasum": "ec7d5ab3a122fc045366982fc1046b7c1a42af0f", + "tarball": "http://registry.npmjs.org/hubot/-/hubot-2.0.5.tgz" + }, + "2.0.6": { + "shasum": "0e3fb67323194adaa855d4c472a740a4f9ef8ef5", + "tarball": "http://registry.npmjs.org/hubot/-/hubot-2.0.6.tgz" + }, + "2.0.7": { + "shasum": "342f03b1dd26f8f1aab7edaa65ce2a7ff760f2ad", + "tarball": "http://registry.npmjs.org/hubot/-/hubot-2.0.7.tgz" + } + }, + "keywords": [ + "github hubot campfire bot" + ], + "url": "http://registry.npmjs.org/hubot/" + }, + "hubot-faye": { + "name": "hubot-faye", + "description": "A faye adapter for hubot", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "nna", + "email": "nico.nardone@gmail.com" + } + ], + "time": { + "modified": "2011-12-05T21:53:13.829Z", + "created": "2011-12-05T21:53:12.604Z", + "0.0.2": "2011-12-05T21:53:13.829Z" + }, + "author": { + "name": "nna" + }, + "repository": { + "type": "git", + "url": "git://github.com/nna/hubot-faye.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/hubot-faye/0.0.2" + }, + "dist": { + "0.0.2": { + "shasum": "f69ea2a05abb8360389bf0338056f703d3c113d8", + "tarball": "http://registry.npmjs.org/hubot-faye/-/hubot-faye-0.0.2.tgz" + } + }, + "keywords": [ + "github hubot faye adapter" + ], + "url": "http://registry.npmjs.org/hubot-faye/" + }, + "hubot-flowdock": { + "name": "hubot-flowdock", + "description": "A Flowdock adapter for hubot", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "arttu", + "email": "arttu.tervo@gmail.com" + } + ], + "time": { + "modified": "2011-11-28T08:28:39.693Z", + "created": "2011-11-14T15:20:43.576Z", + "0.1.0": "2011-11-14T15:20:45.315Z", + "0.1.1": "2011-11-28T08:14:25.722Z", + "0.1.2": "2011-11-28T08:28:39.693Z" + }, + "author": { + "name": "Flowdock" + }, + "repository": { + "type": "git", + "url": "git://github.com/flowdock/hubot-flowdock.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/hubot-flowdock/0.1.0", + "0.1.1": "http://registry.npmjs.org/hubot-flowdock/0.1.1", + "0.1.2": "http://registry.npmjs.org/hubot-flowdock/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "1abdcb89c7b0f7c28bb6c18339b3e07cae2d2089", + "tarball": "http://registry.npmjs.org/hubot-flowdock/-/hubot-flowdock-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "906920f3f5521f7fe9eaae2032b7d7d8b636cee8", + "tarball": "http://registry.npmjs.org/hubot-flowdock/-/hubot-flowdock-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "84e1814112f4067764e5131099dd0b26e830dbb9", + "tarball": "http://registry.npmjs.org/hubot-flowdock/-/hubot-flowdock-0.1.2.tgz" + } + }, + "keywords": [ + "hubot flowdock adapter" + ], + "url": "http://registry.npmjs.org/hubot-flowdock/" + }, + "hubot-gtalk": { + "name": "hubot-gtalk", + "description": "A GTalk adapter for hubot based on the one located third-party folder of hubot but to make it easier for >=2.0.X users", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": null, + "maintainers": [ + { + "name": "johnnyhalife", + "email": "johnny.halife@me.com" + } + ], + "time": { + "modified": "2011-12-02T15:05:21.995Z", + "created": "2011-12-02T15:05:18.569Z", + "0.0.1": "2011-12-02T15:05:21.995Z" + }, + "author": { + "name": "Johnny Halife" + }, + "repository": { + "type": "git", + "url": "git://github.com/johnnyhalife/hubot-gtalk.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/hubot-gtalk/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "2e301c33be17e7c5e7f8bc80719c4f7c424d2905", + "tarball": "http://registry.npmjs.org/hubot-gtalk/-/hubot-gtalk-0.0.1.tgz" + } + }, + "keywords": [ + "github hubot gtalk adapter" + ], + "url": "http://registry.npmjs.org/hubot-gtalk/" + }, + "hubot-hipchat": { + "name": "hubot-hipchat", + "description": "A Hipchat adapter for hubot", + "dist-tags": { + "latest": "1.0.0" + }, + "readme": null, + "maintainers": [ + { + "name": "warorface", + "email": "warorface@gmail.com" + } + ], + "time": { + "modified": "2011-11-30T18:46:28.740Z", + "created": "2011-11-30T18:46:26.804Z", + "1.0.0": "2011-11-30T18:46:28.740Z" + }, + "author": { + "name": "hipchat" + }, + "repository": { + "type": "git", + "url": "git://github.com/hipchat/hubot-hipchat.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/hubot-hipchat/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "87ca73ddc68d65d55549b1ec56a7c6505cce388e", + "tarball": "http://registry.npmjs.org/hubot-hipchat/-/hubot-hipchat-1.0.0.tgz" + } + }, + "keywords": [ + "github hubot hipchat adapter" + ], + "url": "http://registry.npmjs.org/hubot-hipchat/" + }, + "hubot-irc": { + "name": "hubot-irc", + "description": "IRC adapter for Hubot.", + "dist-tags": { + "latest": "0.0.5" + }, + "readme": "# Hubot IRC Adapter\n\nNOTICE: I did not created the IRC adapter, just created the NPM package. Did not intended to take over the adapter I just wanted to use the adapter sooner than later.\n\n## Description\n\nThis is the IRC adapter for hubot.\n\n## Installation\n\n* Add `hubot-irc` as a dependency in your hubot's `package.json`\n* Install dependencies with `npm install`\n* Run hubot with `bin/hubot -a irc`\n\n### Note if running on Heroku\n\nYou will need to change the process type from `app` to `web` in the `Procfile`.\n\n## Usage\n\nYou will need to set some environment variables to use this adapter.\n\n### Heroku\n\n % heroku config:add HUBOT_IRC_NICK=\"hubot\"\n\n % heroku config:add HUBOT_IRC_ROOMS=\"#hubot,#hubot-irc\"\n\n % heroku config:add HUBOT_IRC_SERVER=\"irc.freenode.net\"\n\n### Non-Heroku environment variables\n\n % export HUBOT_IRC_NICK=\"hubot\"\n\n % export HUBOT_IRC_ROOMS=\"#hubot,#hubot-irc\"\n\n % export HUBOT_IRC_SERVER=\"irc.freenode.net\"\n\n## Contribute\n\nHere's the most direct way to get your work merged into the project.\n\n1. Fork the project\n2. Clone down your fork\n3. Create a feature branch\n4. Hack away and add tests, not necessarily in that order\n5. Make sure everything still passes by running tests\n6. If necessary, rebase your commits into logical chunks without errors\n7. Push the branch up to your fork\n8. Send a pull request for your branch\n\n## Copyright\n\nCopyright © Fernando Ortiz. See LICENSE for details.\n\n", + "maintainers": [ + { + "name": "nandub", + "email": "fortiz2k@gmail.com" + } + ], + "time": { + "modified": "2011-12-04T03:08:44.864Z", + "created": "2011-11-27T07:18:39.618Z", + "0.0.1": "2011-11-27T07:18:40.501Z", + "0.0.2": "2011-11-27T08:16:32.829Z", + "0.0.3": "2011-11-27T08:23:22.160Z", + "0.0.4": "2011-12-01T00:57:14.849Z", + "0.0.5": "2011-12-04T03:08:44.864Z" + }, + "author": { + "name": "Fernando Ortiz", + "email": "fortiz2k@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/nandub/hubot-irc.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/hubot-irc/0.0.1", + "0.0.2": "http://registry.npmjs.org/hubot-irc/0.0.2", + "0.0.3": "http://registry.npmjs.org/hubot-irc/0.0.3", + "0.0.4": "http://registry.npmjs.org/hubot-irc/0.0.4", + "0.0.5": "http://registry.npmjs.org/hubot-irc/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "837e9d4a67952725f2d71ff39110185e734a035f", + "tarball": "http://registry.npmjs.org/hubot-irc/-/hubot-irc-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "2756c5588e9f804bd08c0790b07d37e626c14615", + "tarball": "http://registry.npmjs.org/hubot-irc/-/hubot-irc-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "817ac90be821c420e0ed59f11f7d1d006d2cc65a", + "tarball": "http://registry.npmjs.org/hubot-irc/-/hubot-irc-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "132ceddec060815d72032a7c8c7887e7186765bf", + "tarball": "http://registry.npmjs.org/hubot-irc/-/hubot-irc-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "233898bfddad58e7adf2a0adb74f20a9ca079687", + "tarball": "http://registry.npmjs.org/hubot-irc/-/hubot-irc-0.0.5.tgz" + } + }, + "keywords": [ + "hubot irc adapter" + ], + "url": "http://registry.npmjs.org/hubot-irc/" + }, + "hubot-partychat-hooks": { + "name": "hubot-partychat-hooks", + "description": "A Partychat-hooks adapter for hubot", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "iangreenleaf", + "email": "ian.greenleaf@gmail.com" + } + ], + "time": { + "modified": "2011-12-09T00:39:08.582Z", + "created": "2011-11-23T00:27:53.647Z", + "0.1.0": "2011-11-23T00:27:57.431Z", + "0.2.0": "2011-11-29T01:45:50.803Z", + "0.2.1": "2011-12-09T00:39:08.582Z" + }, + "author": { + "name": "Ian Young" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/hubot-partychat-hooks/0.1.0", + "0.2.0": "http://registry.npmjs.org/hubot-partychat-hooks/0.2.0", + "0.2.1": "http://registry.npmjs.org/hubot-partychat-hooks/0.2.1" + }, + "dist": { + "0.1.0": { + "shasum": "f58bd3347b0a086a90f713ffd65f5f31feb7a59d", + "tarball": "http://registry.npmjs.org/hubot-partychat-hooks/-/hubot-partychat-hooks-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "01f69008e63f1cd11ad3d9b76a2d3cd2349bd425", + "tarball": "http://registry.npmjs.org/hubot-partychat-hooks/-/hubot-partychat-hooks-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "c83ff48062da511d3c96711f729605debc2a8d6e", + "tarball": "http://registry.npmjs.org/hubot-partychat-hooks/-/hubot-partychat-hooks-0.2.1.tgz" + } + }, + "keywords": [ + "github hubot partychat-hooks adapter" + ], + "url": "http://registry.npmjs.org/hubot-partychat-hooks/" + }, + "hubot-scripts": { + "name": "hubot-scripts", + "description": "Allows you to opt in to a variety of scripts", + "dist-tags": { + "latest": "2.0.3" + }, + "maintainers": [ + { + "name": "atmos", + "email": "atmos@atmos.org" + } + ], + "time": { + "modified": "2011-11-25T20:15:42.695Z", + "created": "2011-10-25T18:23:44.425Z", + "1.0.0": "2011-10-25T18:23:45.566Z", + "1.0.3": "2011-10-26T00:41:01.902Z", + "1.0.4": "2011-10-26T05:49:19.469Z", + "1.1.0": "2011-10-27T21:34:09.661Z", + "1.1.1": "2011-10-28T05:08:14.005Z", + "1.1.2": "2011-10-28T06:27:38.155Z", + "1.1.3": "2011-10-28T08:41:31.246Z", + "1.1.4": "2011-10-29T22:56:30.145Z", + "1.1.5": "2011-10-31T19:22:04.491Z", + "1.1.6": "2011-11-02T22:53:43.838Z", + "1.1.7": "2011-11-07T22:05:47.546Z", + "1.1.8": "2011-11-08T00:25:46.845Z", + "2.0.1": "2011-11-25T19:18:23.748Z", + "2.0.2": "2011-11-25T19:21:03.636Z", + "2.0.3": "2011-11-25T20:15:42.695Z" + }, + "author": { + "name": "hubot" + }, + "repository": { + "type": "git", + "url": "git://github.com/github/hubot-scripts.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/hubot-scripts/1.0.0", + "1.0.3": "http://registry.npmjs.org/hubot-scripts/1.0.3", + "1.0.4": "http://registry.npmjs.org/hubot-scripts/1.0.4", + "1.1.0": "http://registry.npmjs.org/hubot-scripts/1.1.0", + "1.1.1": "http://registry.npmjs.org/hubot-scripts/1.1.1", + "1.1.2": "http://registry.npmjs.org/hubot-scripts/1.1.2", + "1.1.3": "http://registry.npmjs.org/hubot-scripts/1.1.3", + "1.1.4": "http://registry.npmjs.org/hubot-scripts/1.1.4", + "1.1.5": "http://registry.npmjs.org/hubot-scripts/1.1.5", + "1.1.6": "http://registry.npmjs.org/hubot-scripts/1.1.6", + "1.1.7": "http://registry.npmjs.org/hubot-scripts/1.1.7", + "1.1.8": "http://registry.npmjs.org/hubot-scripts/1.1.8", + "2.0.1": "http://registry.npmjs.org/hubot-scripts/2.0.1", + "2.0.2": "http://registry.npmjs.org/hubot-scripts/2.0.2", + "2.0.3": "http://registry.npmjs.org/hubot-scripts/2.0.3" + }, + "dist": { + "1.0.0": { + "shasum": "79a21786430ebaff2aa60c9ede188e4a12412249", + "tarball": "http://registry.npmjs.org/hubot-scripts/-/hubot-scripts-1.0.0.tgz" + }, + "1.0.3": { + "shasum": "2d5eb26ca0129339e9ecb57b77fab1a7c118b500", + "tarball": "http://registry.npmjs.org/hubot-scripts/-/hubot-scripts-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "083904101e87ffe33a107075cb24b06be785143b", + "tarball": "http://registry.npmjs.org/hubot-scripts/-/hubot-scripts-1.0.4.tgz" + }, + "1.1.0": { + "shasum": "a75ebca109a3f9b02bc76962a19c9f6f89471b9f", + "tarball": "http://registry.npmjs.org/hubot-scripts/-/hubot-scripts-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "ff4e28acce0205ae902914a01dfc23644ac8f037", + "tarball": "http://registry.npmjs.org/hubot-scripts/-/hubot-scripts-1.1.1.tgz" + }, + "1.1.2": { + "shasum": "e65cf152457fb4bf70910c5fd91b4e397251deb7", + "tarball": "http://registry.npmjs.org/hubot-scripts/-/hubot-scripts-1.1.2.tgz" + }, + "1.1.3": { + "shasum": "c5a540af518c244af50938b13e01dff4d2f14142", + "tarball": "http://registry.npmjs.org/hubot-scripts/-/hubot-scripts-1.1.3.tgz" + }, + "1.1.4": { + "shasum": "c9f141ae06a35a0bc7eaa7e6439457c6d9ace8e4", + "tarball": "http://registry.npmjs.org/hubot-scripts/-/hubot-scripts-1.1.4.tgz" + }, + "1.1.5": { + "shasum": "090806031d0471c9d698c0a4aa45a6d42c98440d", + "tarball": "http://registry.npmjs.org/hubot-scripts/-/hubot-scripts-1.1.5.tgz" + }, + "1.1.6": { + "shasum": "fc93d65e38b4442d4dbf6f91299b07a17b9cef17", + "tarball": "http://registry.npmjs.org/hubot-scripts/-/hubot-scripts-1.1.6.tgz" + }, + "1.1.7": { + "shasum": "c831cb002206d450cf6190faba781d437504f1d5", + "tarball": "http://registry.npmjs.org/hubot-scripts/-/hubot-scripts-1.1.7.tgz" + }, + "1.1.8": { + "shasum": "4c8c6d51ecdc02d15d7fdecfded35bdbdfe12c77", + "tarball": "http://registry.npmjs.org/hubot-scripts/-/hubot-scripts-1.1.8.tgz" + }, + "2.0.1": { + "shasum": "3054abae789b57e6e3be9238edd0b5c138051fb6", + "tarball": "http://registry.npmjs.org/hubot-scripts/-/hubot-scripts-2.0.1.tgz" + }, + "2.0.2": { + "shasum": "9dcbbbfc4f4aeed70708a6613edede50c82d5f7d", + "tarball": "http://registry.npmjs.org/hubot-scripts/-/hubot-scripts-2.0.2.tgz" + }, + "2.0.3": { + "shasum": "b932de4daf3bbe5268eadbbb80d28bb9e2244994", + "tarball": "http://registry.npmjs.org/hubot-scripts/-/hubot-scripts-2.0.3.tgz" + } + }, + "keywords": [ + "hubot plugin scripts campfire bot robot" + ], + "url": "http://registry.npmjs.org/hubot-scripts/" + }, + "hubot-talker": { + "name": "hubot-talker", + "description": "Talker adapter for hubot", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "unixcharles", + "email": "unixcharles@gmail.com" + } + ], + "time": { + "modified": "2011-12-09T13:02:12.178Z", + "created": "2011-11-25T20:24:18.926Z", + "0.1.0": "2011-11-25T20:35:11.291Z", + "0.1.1": "2011-11-25T20:45:24.805Z", + "1.0.0": "2011-11-25T21:10:35.707Z", + "1.0.1": "2011-12-09T13:02:12.178Z" + }, + "author": { + "name": "Charles Barbier", + "email": "unixcharles@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/unixcharles/hubot-talker.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/hubot-talker/1.0.0", + "1.0.1": "http://registry.npmjs.org/hubot-talker/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "832450b6be4e52eb99b9c15130d77cb19ef582e5", + "tarball": "http://registry.npmjs.org/hubot-talker/-/hubot-talker-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "3db1150127be1cd6dcd2eb3b9b4a0bc7a55a1b01", + "tarball": "http://registry.npmjs.org/hubot-talker/-/hubot-talker-1.0.1.tgz" + } + }, + "keywords": [ + "github hubot talker adapter" + ], + "url": "http://registry.npmjs.org/hubot-talker/" + }, + "hubot-tetalab": { + "name": "hubot-tetalab", + "description": "A Tetalab adapter for hubot", + "dist-tags": { + "latest": "1.0.0" + }, + "readme": "# Hubot Twilio Adapter\n\n## Description\n\nThis is the [Tetalab](http://tetalab.org) adapter for hubot that will connect\nto Tetalab barbabot chatroom and help people there.\n\nBascily, it's a hubot-gtalk adapter, with redefined regexp, and maybe more someday.\n\n## Installation\n\n* Add `hubot-tetalab` as a dependency in your hubot's `package.json`\n* Install dependencies with `npm install`\n* Run hubot with `bin/hubot -a tetalab`\n\n## Usage\n\nYou will need to set some environment variables to use this adapter.\n\n % export HUBOT_GTALK_PASSWORD=........\n\n % export HUBOT_GTALK_USERNAME=tatibotto@gmail.com\n\n## Contribute\n\nHere's the most direct way to get your work merged into the project.\n\n1. Fork the project\n2. Clone down your fork\n3. Create a feature branch\n4. Hack away and add tests, not necessarily in that order\n5. Make sure everything still passes by running tests\n6. If necessary, rebase your commits into logical chunks without errors\n7. Push the branch up to your fork\n8. Send a pull request for your branch\n\n", + "maintainers": [ + { + "name": "peeloo", + "email": "npm@alexgirard.com" + } + ], + "time": { + "modified": "2011-11-21T12:51:59.471Z", + "created": "2011-11-21T12:51:57.473Z", + "1.0.0": "2011-11-21T12:51:59.471Z" + }, + "author": { + "name": "Alexandre Girard" + }, + "repository": { + "type": "git", + "url": "git://github.com/alx/hubot-tetalab.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/hubot-tetalab/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "ea4249662ea0842ec10bd1dbd38a196de66ed1f1", + "tarball": "http://registry.npmjs.org/hubot-tetalab/-/hubot-tetalab-1.0.0.tgz" + } + }, + "keywords": [ + "github hubot tetalab adapter" + ], + "url": "http://registry.npmjs.org/hubot-tetalab/" + }, + "hubot-twilio": { + "name": "hubot-twilio", + "description": "A Twilio adapter for hubot", + "dist-tags": { + "latest": "2.0.1" + }, + "readme": "# Hubot Twilio Adapter\n\n## Description\n\nThis is the [Twilio](http://twilio.com) adapter for hubot that allows you to\nsend an SMS to your Hubot and he will send an SMS back with the response.\n\n## Installation\n\n* Add `hubot-twilio` as a dependency in your hubot's `package.json`\n* Install dependencies with `npm install`\n* Run hubot with `bin/hubot -a twilio`\n\n### Note if running on Heroku\n\nYou will need to change the process type from `app` to `web` in the `Procfile`.\n\n## Usage\n\nYou will need to set some environment variables to use this adapter.\n\n### Heroku\n\n % heroku config:add HUBOT_SMS_FROM=\"+14156662671\"\n\n % heroku config:add HUBOT_SMS_SID=\"AC5d10e5624da757326d12f8d31c08c20b\"\n\n % heroku config:add HUBOT_SMS_TOKEN=\"4ada63e18146a204e468fb6289030231\"\n\n### Non-Heroku environment variables\n\n % export HUBOT_SMS_FROM=\"+14156662671\"\n\n % export HUBOT_SMS_SID=\"AC5d10e5624da757326d12f8d31c08c20b\"\n\n % export HUBOT_SMS_TOKEN=\"4ada63e18146a204e468fb6289030231\"\n\nThen you will need to set the HTTP endpoint on Twilio to point to your server\nand make sure the request type is set to `GET`.\n\n## Contribute\n\nHere's the most direct way to get your work merged into the project.\n\n1. Fork the project\n2. Clone down your fork\n3. Create a feature branch\n4. Hack away and add tests, not necessarily in that order\n5. Make sure everything still passes by running tests\n6. If necessary, rebase your commits into logical chunks without errors\n7. Push the branch up to your fork\n8. Send a pull request for your branch\n\n## Copyright\n\nCopyright © Tom Bell. See LICENSE for details.\n\n", + "maintainers": [ + { + "name": "tombell", + "email": "tomb@tombell.org.uk" + } + ], + "time": { + "modified": "2011-12-03T19:30:02.331Z", + "created": "2011-11-28T11:33:43.212Z", + "2.0.0": "2011-11-28T11:33:44.543Z", + "2.0.1": "2011-12-03T19:30:02.331Z" + }, + "author": { + "name": "Tom Bell" + }, + "repository": { + "type": "git", + "url": "git://github.com/tombell/hubot-twilio.git" + }, + "versions": { + "2.0.0": "http://registry.npmjs.org/hubot-twilio/2.0.0", + "2.0.1": "http://registry.npmjs.org/hubot-twilio/2.0.1" + }, + "dist": { + "2.0.0": { + "shasum": "96cbaf5aa57333321d73ba6315fe8fc13e9c6e80", + "tarball": "http://registry.npmjs.org/hubot-twilio/-/hubot-twilio-2.0.0.tgz" + }, + "2.0.1": { + "shasum": "16b16e46a421de8022ecb65d43060c8fe399ab92", + "tarball": "http://registry.npmjs.org/hubot-twilio/-/hubot-twilio-2.0.1.tgz" + } + }, + "keywords": [ + "github hubot twilio adapter" + ], + "url": "http://registry.npmjs.org/hubot-twilio/" + }, + "hubot-twitter": { + "name": "hubot-twitter", + "description": "A Twitter adapter for hubot", + "dist-tags": { + "latest": "2.0.4" + }, + "readme": "# Hubot Twitter Adapter\n\n## Description\n\nThis is the [Twitter](http://twitter.com) adapter for hubot that allows you to\nsend an tweet to your Hubot and he will send an tweet back with the response.\n\n## Installation\n\n* Add `hubot-twitter` as a dependency in your hubot's `package.json`\n* Install dependencies with `npm install`\n* Run hubot with `bin/hubot -a twitter`\n\n### Note if running on Heroku\n\nYou will need to change the process type from `app` to `web` in the `Procfile`.\n\n## Usage\n\nYou will need to set some environment variables to use this adapter.\n\n### Heroku\n\n heroku config:add HUBOT_TWITTER_KEY=\"key\" HUBOT_TWITTER_SECRET=\"secret\" HUBOT_TWITTER_TOKEN=\"token\" HUBOT_TWITTER_TOKEN_SECRET=\"secret\"\n\n\n### Non-Heroku environment variables\n\n export HUBOT_TWITTER_KEY=\"key\"\n export HUBOT_TWITTER_SECRET=\"secret\"\n export HUBOT_TWITTER_TOKEN=\"token\"\n export HUBOT_TWITTER_TOKEN_SECRET=\"secret\"\n\nThen you will need to set the HTTP endpoint on Twilio to point to your server\nand make sure the request type is set to `GET`.\n\n## Contribute\n\nHere's the most direct way to get your work merged into the project.\n\n1. Fork the project\n2. Clone down your fork\n3. Create a feature branch\n4. Hack away and add tests, not necessarily in that order\n5. Make sure everything still passes by running tests\n6. If necessary, rebase your commits into logical chunks without errors\n7. Push the branch up to your fork\n8. Send a pull request for your branch\n\n## Copyright\n\nCopyright © Mathilde Lem�e. See LICENSE for details.\n\n", + "maintainers": [ + { + "name": "mathilde_lemee", + "email": "mathilde.lemee@yahoo.fr" + } + ], + "time": { + "modified": "2011-12-12T21:09:43.781Z", + "created": "2011-11-23T22:33:58.656Z", + "2.0.0": "2011-11-23T22:34:00.257Z", + "2.0.1": "2011-12-06T21:28:52.120Z", + "2.0.2": "2011-12-07T20:49:07.012Z", + "2.0.4": "2011-12-12T21:09:43.781Z" + }, + "author": { + "name": "Mathilde Lemee" + }, + "repository": { + "type": "git", + "url": "git://github.com/mathildelemee/hubot-twitter.git" + }, + "versions": { + "2.0.0": "http://registry.npmjs.org/hubot-twitter/2.0.0", + "2.0.1": "http://registry.npmjs.org/hubot-twitter/2.0.1", + "2.0.2": "http://registry.npmjs.org/hubot-twitter/2.0.2", + "2.0.4": "http://registry.npmjs.org/hubot-twitter/2.0.4" + }, + "dist": { + "2.0.0": { + "shasum": "6fcecb63c2e6d5bc411db2b4095d4cc24b2432f2", + "tarball": "http://registry.npmjs.org/hubot-twitter/-/hubot-twitter-2.0.0.tgz" + }, + "2.0.1": { + "shasum": "dc561efe40dcc709f6d6f541a1e7790c79dbdf04", + "tarball": "http://registry.npmjs.org/hubot-twitter/-/hubot-twitter-2.0.1.tgz" + }, + "2.0.2": { + "shasum": "0aba9cb83f3ff5b24772c3ae4619909c095b5db5", + "tarball": "http://registry.npmjs.org/hubot-twitter/-/hubot-twitter-2.0.2.tgz" + }, + "2.0.4": { + "shasum": "966fa65f6695b56b970ae952578252f441985957", + "tarball": "http://registry.npmjs.org/hubot-twitter/-/hubot-twitter-2.0.4.tgz" + } + }, + "keywords": [ + "github hubot twitter adapter" + ], + "url": "http://registry.npmjs.org/hubot-twitter/" + }, + "hubot-xmpp": { + "name": "hubot-xmpp", + "description": "XMPP adapter for Hubot.", + "dist-tags": { + "latest": "0.0.4" + }, + "readme": null, + "maintainers": [ + { + "name": "markstory", + "email": "mark@mark-story.com" + } + ], + "time": { + "modified": "2011-12-06T04:32:16.411Z", + "created": "2011-11-23T01:46:14.955Z", + "0.0.1": "2011-11-23T01:46:15.419Z", + "0.0.2": "2011-11-26T02:47:24.783Z", + "0.0.3": "2011-11-26T03:31:01.724Z", + "0.0.4": "2011-12-06T04:32:16.411Z" + }, + "author": { + "name": "Mark Story", + "email": "mark@mark-story.com", + "url": "http://mark-story.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/markstory/hubot-xmpp.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/hubot-xmpp/0.0.1", + "0.0.2": "http://registry.npmjs.org/hubot-xmpp/0.0.2", + "0.0.3": "http://registry.npmjs.org/hubot-xmpp/0.0.3", + "0.0.4": "http://registry.npmjs.org/hubot-xmpp/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "3c2a57c07c44c5bdc207eede352a4b3bf40d0de4", + "tarball": "http://registry.npmjs.org/hubot-xmpp/-/hubot-xmpp-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "ebfe8c2ac5d3397584576ea1dd0d05b5e61c8cee", + "tarball": "http://registry.npmjs.org/hubot-xmpp/-/hubot-xmpp-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "3318609a33cd90cc095b0452f88639bb4d637e17", + "tarball": "http://registry.npmjs.org/hubot-xmpp/-/hubot-xmpp-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "cd43feb3bae8e27b9c3d2802a29145c0f9cde825", + "tarball": "http://registry.npmjs.org/hubot-xmpp/-/hubot-xmpp-0.0.4.tgz" + } + }, + "keywords": [ + "hubot xmpp adapter" + ], + "url": "http://registry.npmjs.org/hubot-xmpp/" + }, + "hubot-zeromq": { + "name": "hubot-zeromq", + "dist-tags": {}, + "maintainers": [ + { + "name": "technoweenie", + "email": "technoweenie@gmail.com" + } + ], + "time": { + "modified": "2011-10-27T06:59:47.142Z", + "created": "2011-10-27T06:59:47.142Z" + }, + "versions": {}, + "dist": {}, + "url": "http://registry.npmjs.org/hubot-zeromq/" + }, + "hungarian-magic": { + "name": "hungarian-magic", + "description": "hungarian typechecking magic", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "thejh", + "email": "jannhorn@gmail.com" + } + ], + "time": { + "modified": "2011-09-16T21:47:15.875Z", + "created": "2011-08-10T00:48:58.936Z", + "0.1.0": "2011-08-10T00:49:01.480Z" + }, + "author": { + "name": "Jann Horn", + "email": "jannhorn@googlemail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/thejh/node-hungarian-magic.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/hungarian-magic/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "fd01a04c6919c7de95858dcd74beca2cb497c682", + "tarball": "http://registry.npmjs.org/hungarian-magic/-/hungarian-magic-0.1.0.tgz" + } + }, + "keywords": [ + "hungarian", + "typechecking", + "type", + "check", + "safety", + "security", + "wrapper" + ], + "url": "http://registry.npmjs.org/hungarian-magic/" + }, + "huntergatherer": { + "name": "huntergatherer", + "description": "A parallel REST client for speedy API calls", + "dist-tags": { + "latest": "0.6.9" + }, + "maintainers": [ + { + "name": "erictj", + "email": "ericj@loopshot.com" + } + ], + "time": { + "modified": "2011-10-12T02:28:14.282Z", + "created": "2011-05-12T05:50:36.640Z", + "0.0.1": "2011-05-12T05:50:37.095Z", + "0.1.0": "2011-06-13T18:36:40.360Z", + "0.5.0": "2011-09-07T15:38:09.496Z", + "0.5.1": "2011-09-07T20:17:16.432Z", + "0.6.0": "2011-09-25T01:29:02.705Z", + "0.6.1": "2011-09-25T02:24:37.435Z", + "0.6.5": "2011-09-25T23:39:27.148Z", + "0.6.6": "2011-09-25T23:52:07.937Z", + "0.6.7": "2011-09-26T01:17:03.447Z", + "0.6.8": "2011-10-06T02:18:12.069Z", + "0.6.9": "2011-10-12T02:28:14.282Z" + }, + "author": { + "name": "Eric Jennings", + "email": "ericj@loopshot.com", + "url": "http://profile.io/erictj" + }, + "repository": { + "type": "git", + "url": "git://github.com/erictj/node-huntergatherer.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/huntergatherer/0.0.1", + "0.1.0": "http://registry.npmjs.org/huntergatherer/0.1.0", + "0.5.0": "http://registry.npmjs.org/huntergatherer/0.5.0", + "0.5.1": "http://registry.npmjs.org/huntergatherer/0.5.1", + "0.6.0": "http://registry.npmjs.org/huntergatherer/0.6.0", + "0.6.1": "http://registry.npmjs.org/huntergatherer/0.6.1", + "0.6.5": "http://registry.npmjs.org/huntergatherer/0.6.5", + "0.6.6": "http://registry.npmjs.org/huntergatherer/0.6.6", + "0.6.7": "http://registry.npmjs.org/huntergatherer/0.6.7", + "0.6.8": "http://registry.npmjs.org/huntergatherer/0.6.8", + "0.6.9": "http://registry.npmjs.org/huntergatherer/0.6.9" + }, + "dist": { + "0.0.1": { + "shasum": "5dfe89cecf4e975542a3cc500cc591efba8446fb", + "tarball": "http://registry.npmjs.org/huntergatherer/-/huntergatherer-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "044804f440434f8146affeeb78d95ee61afd0053", + "tarball": "http://registry.npmjs.org/huntergatherer/-/huntergatherer-0.1.0.tgz" + }, + "0.5.0": { + "shasum": "ff9737db8b42fb6597febaeaa0a0dd7ff3bf3e40", + "tarball": "http://registry.npmjs.org/huntergatherer/-/huntergatherer-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "2ff6608ca31bb16e686970eb3965f1bb40454d0c", + "tarball": "http://registry.npmjs.org/huntergatherer/-/huntergatherer-0.5.1.tgz" + }, + "0.6.0": { + "shasum": "2b9140faa4184e09cdf2c25a41218513b16c2242", + "tarball": "http://registry.npmjs.org/huntergatherer/-/huntergatherer-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "cb3a22cb67ef8d78a124a816e87e7f65be07b7a4", + "tarball": "http://registry.npmjs.org/huntergatherer/-/huntergatherer-0.6.1.tgz" + }, + "0.6.5": { + "shasum": "a664031ec73e1a16631e340299a37a65b7c1760f", + "tarball": "http://registry.npmjs.org/huntergatherer/-/huntergatherer-0.6.5.tgz" + }, + "0.6.6": { + "shasum": "f5068273b3daee69d8d855ee6c5bb67390bcf500", + "tarball": "http://registry.npmjs.org/huntergatherer/-/huntergatherer-0.6.6.tgz" + }, + "0.6.7": { + "shasum": "c6e6a11277455dc266952795c73cfc79115a05d0", + "tarball": "http://registry.npmjs.org/huntergatherer/-/huntergatherer-0.6.7.tgz" + }, + "0.6.8": { + "shasum": "de67918155ca570e9cc4f3010ba56afbb75ec394", + "tarball": "http://registry.npmjs.org/huntergatherer/-/huntergatherer-0.6.8.tgz" + }, + "0.6.9": { + "shasum": "f1bf2f1d8a19b55c3ef340128c1127995c33da1e", + "tarball": "http://registry.npmjs.org/huntergatherer/-/huntergatherer-0.6.9.tgz" + } + }, + "url": "http://registry.npmjs.org/huntergatherer/" + }, + "hxp": { + "name": "hxp", + "description": "HXP Generates RegExps for matching specific html tags", + "dist-tags": { + "latest": "0.1.1", + "stable": "0.1.1" + }, + "maintainers": [ + { + "name": "donnerjack13589", + "email": "fedor.indutny@gmail.com" + } + ], + "time": { + "modified": "2011-07-09T11:51:46.139Z", + "created": "2011-07-08T21:20:23.688Z", + "0.1.0": "2011-07-08T21:20:29.428Z", + "0.1.1": "2011-07-09T11:51:31.689Z" + }, + "author": { + "name": "Fedor Indutny", + "email": "fedor.indutny@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/hxp/0.1.0", + "0.1.1": "http://registry.npmjs.org/hxp/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "5e6137610a06eb6b25fb63e162fe79d3b2021ea9", + "tarball": "http://registry.npmjs.org/hxp/-/hxp-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "54987f0e898081f9ae71cee84a84712f21d94355", + "tarball": "http://registry.npmjs.org/hxp/-/hxp-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/hxp/" + }, + "hyde": { + "name": "hyde", + "description": "like jekyll, for node", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "pvorb", + "email": "paul@vorb.de" + } + ], + "time": { + "modified": "2011-09-03T14:27:40.971Z", + "created": "2011-09-03T14:27:37.932Z", + "0.0.0": "2011-09-03T14:27:40.971Z" + }, + "author": { + "name": "Paul Vorbach", + "email": "paul@vorb.de", + "url": "http://vorb.de/" + }, + "repository": { + "type": "git", + "url": "git://github.com/pvorb/node-hyde.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/hyde/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "d2027d86ef814a48cbcdc99a26c2306b090121ae", + "tarball": "http://registry.npmjs.org/hyde/-/hyde-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/hyde/" + }, + "hydna": { + "name": "hydna", + "description": "Hydna client", + "dist-tags": { + "latest": "1.0.0" + }, + "readme": null, + "maintainers": [ + { + "name": "jfd", + "email": "dahlberg.johan@gmail.com" + } + ], + "time": { + "modified": "2011-12-01T14:19:42.720Z", + "created": "2011-12-01T14:19:41.218Z", + "1.0.0": "2011-12-01T14:19:42.720Z" + }, + "author": { + "name": "Hydna AB", + "email": "info@hydna.com", + "url": "http://www.hydna.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/hydna/node-hydna.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/hydna/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "73308f0d20b813c617ea66f7875b06a83fc9ff90", + "tarball": "http://registry.npmjs.org/hydna/-/hydna-1.0.0.tgz" + } + }, + "keywords": [ + "hermes", + "wink", + "client", + "hydna", + "real-time", + "messaging" + ], + "url": "http://registry.npmjs.org/hydna/" + }, + "hydra": { + "name": "hydra", + "description": "Double-headed HTTP: allow both clients and servers to issue HTTP requests", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "mjs", + "email": "mjs@beebo.org" + } + ], + "author": { + "name": "Michael Stillwell", + "email": "mjs@beebo.org" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/hydra/0.1.0", + "0.1.1": "http://registry.npmjs.org/hydra/0.1.1" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/hydra/-/hydra-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://packages:5984/hydra/-/hydra-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/hydra/" + }, + "hyperpublic": { + "name": "hyperpublic", + "description": "Node.js wrapper for the Hyperpublic API.", + "dist-tags": { + "latest": "0.3.1" + }, + "maintainers": [ + { + "name": "jgv", + "email": "jvingiano@gmail.com" + } + ], + "time": { + "modified": "2011-06-17T19:56:01.646Z", + "created": "2011-05-04T16:10:56.906Z", + "0.1.0": "2011-05-04T16:10:57.116Z", + "0.1.1": "2011-05-04T16:29:22.514Z", + "0.2.0": "2011-06-03T21:13:12.334Z", + "0.3.0": "2011-06-06T22:32:55.388Z", + "0.3.1": "2011-06-17T19:56:01.646Z" + }, + "author": { + "name": "Jonathan Vingiano", + "email": "jonathan@hyperpublic.com", + "url": "@jgv" + }, + "repository": { + "type": "git", + "url": "git://github.com/hyperpublic/hyperpublic_node.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/hyperpublic/0.1.0", + "0.1.1": "http://registry.npmjs.org/hyperpublic/0.1.1", + "0.2.0": "http://registry.npmjs.org/hyperpublic/0.2.0", + "0.3.0": "http://registry.npmjs.org/hyperpublic/0.3.0", + "0.3.1": "http://registry.npmjs.org/hyperpublic/0.3.1" + }, + "dist": { + "0.1.0": { + "shasum": "952fbb30bc4188935c244cbecc23336c143641b0", + "tarball": "http://registry.npmjs.org/hyperpublic/-/hyperpublic-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "9ec4658a1cd435cdebe99f0cd8218fd4e714d420", + "tarball": "http://registry.npmjs.org/hyperpublic/-/hyperpublic-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "b8573eb7495291bbd0b087925f181cf76a3d1cb2", + "tarball": "http://registry.npmjs.org/hyperpublic/-/hyperpublic-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "f94bf0ed1d8c1340b78bad684526345486a5ee81", + "tarball": "http://registry.npmjs.org/hyperpublic/-/hyperpublic-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "78901b47129c47924ca327bb2a632e03b068fdb8", + "tarball": "http://registry.npmjs.org/hyperpublic/-/hyperpublic-0.3.1.tgz" + } + }, + "keywords": [ + "hyperpublic", + "location" + ], + "url": "http://registry.npmjs.org/hyperpublic/" + }, + "i18n": { + "name": "i18n", + "description": "lightweight simple translation module with dynamic json storage", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "mashpie", + "email": "marcus.spiegel@gmail.com" + } + ], + "time": { + "modified": "2011-03-29T13:13:57.656Z", + "created": "2011-03-25T23:35:52.892Z", + "0.0.1a": "2011-03-25T23:35:53.918Z", + "0.1.0": "2011-03-28T13:58:47.736Z", + "0.3.0": "2011-03-29T13:13:57.656Z" + }, + "author": { + "name": "Marcus Spiegel", + "email": "marcus.spiegel@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mashpie/i18n-node.git" + }, + "versions": { + "0.0.1a": "http://registry.npmjs.org/i18n/0.0.1a", + "0.1.0": "http://registry.npmjs.org/i18n/0.1.0", + "0.3.0": "http://registry.npmjs.org/i18n/0.3.0" + }, + "dist": { + "0.0.1a": { + "shasum": "40d696d38c20b2756c219b5013987377e34a4c72", + "tarball": "http://registry.npmjs.org/i18n/-/i18n-0.0.1a.tgz" + }, + "0.1.0": { + "shasum": "c04646d03b2e06bdeb5659bc99ef3e0bb9e070e2", + "tarball": "http://registry.npmjs.org/i18n/-/i18n-0.1.0.tgz" + }, + "0.3.0": { + "shasum": "96149c2d295c4f74f2bc621348787f11b459edd8", + "tarball": "http://registry.npmjs.org/i18n/-/i18n-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/i18n/" + }, + "i18n.js": { + "name": "i18n.js", + "description": "I18n API for Node.js", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "viatropos", + "email": "lancejpollard@gmail.com" + } + ], + "time": { + "modified": "2011-11-08T19:51:12.165Z", + "created": "2011-11-08T19:51:11.548Z", + "0.0.1": "2011-11-08T19:51:12.165Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/viatropos/i18n.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/i18n.js/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "3cd1e69179e199a9113e8ed65b49e501c6c3cdfd", + "tarball": "http://registry.npmjs.org/i18n.js/-/i18n.js-0.0.1.tgz" + } + }, + "keywords": [ + "framework", + "node" + ], + "url": "http://registry.npmjs.org/i18n.js/" + }, + "iap_verifier": { + "name": "iap_verifier", + "description": "iOS In App Purchase Receipt Verification library", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "pcrawfor", + "email": "paul@cometcoast.com" + } + ], + "time": { + "modified": "2011-10-25T15:03:06.854Z", + "created": "2011-10-25T14:49:50.937Z", + "0.0.1": "2011-10-25T14:49:51.020Z", + "0.0.2": "2011-10-25T15:03:06.854Z" + }, + "author": { + "name": "Paul Crawford", + "email": "paul@cometcoast.com", + "url": "http://cometcoast.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/pcrawfor/iap_verifier.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/iap_verifier/0.0.1", + "0.0.2": "http://registry.npmjs.org/iap_verifier/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "9b2d4c4682a42360bfcfd0301d819accce03c2b1", + "tarball": "http://registry.npmjs.org/iap_verifier/-/iap_verifier-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "0b0d425000cabf83ba493fa1ce72680e2c07b4c3", + "tarball": "http://registry.npmjs.org/iap_verifier/-/iap_verifier-0.0.2.tgz" + } + }, + "keywords": [ + "ios", + "iap", + "in app purchase", + "iphone", + "ipad", + "verifier", + "verify", + "verify in app purchase" + ], + "url": "http://registry.npmjs.org/iap_verifier/" + }, + "ical": { + "name": "ical", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "peterbraden", + "email": "peterbraden@peterbraden.co.uk" + } + ], + "time": { + "modified": "2011-04-13T21:53:36.984Z", + "created": "2011-03-10T01:57:08.756Z", + "0.0.0": "2011-03-10T01:57:09.061Z", + "0.0.2": "2011-03-10T22:04:06.351Z", + "0.0.3": "2011-03-16T00:20:56.491Z", + "0.0.4": "2011-04-13T21:49:51.306Z" + }, + "description": "A tolerant, minimal icalendar parser", + "author": { + "name": "Peter Braden", + "email": "peterbraden@peterbraden.co.uk", + "url": "peterbraden.co.uk" + }, + "repository": { + "type": "git", + "url": "git://github.com/peterbraden/node-ical.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/ical/0.0.0", + "0.0.2": "http://registry.npmjs.org/ical/0.0.2", + "0.0.3": "http://registry.npmjs.org/ical/0.0.3", + "0.0.4": "http://registry.npmjs.org/ical/0.0.4" + }, + "dist": { + "0.0.0": { + "shasum": "4b79724005779e619df5025a1e56a508f49cb3a0", + "tarball": "http://registry.npmjs.org/ical/-/ical-0.0.0.tgz" + }, + "0.0.2": { + "shasum": "077bb780a7cad541c597670ece0439291f543135", + "tarball": "http://registry.npmjs.org/ical/-/ical-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "15bd4b6236b1843b18aa300d336807b53f816815", + "tarball": "http://registry.npmjs.org/ical/-/ical-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "82d7a1f926381c94fe792289c06987374e5805d3", + "tarball": "http://registry.npmjs.org/ical/-/ical-0.0.4.tgz" + } + }, + "keywords": [ + "ical", + "ics", + "calendar" + ], + "url": "http://registry.npmjs.org/ical/" + }, + "icalendar": { + "name": "icalendar", + "description": "An iCalendar formatter", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "marook", + "email": "markus.pielmeier@googlemail.com" + } + ], + "time": { + "modified": "2011-08-29T19:42:08.007Z", + "created": "2011-08-29T19:20:52.488Z", + "0.0.1": "2011-08-29T19:20:53.137Z", + "0.0.2": "2011-08-29T19:42:08.007Z" + }, + "author": { + "name": "Markus Pielmeier", + "email": "markus.pielmeier@googlemail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/marook/icalendar.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/icalendar/0.0.1", + "0.0.2": "http://registry.npmjs.org/icalendar/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "4baa04b896a57e5908705bf283b4b4fa5637757a", + "tarball": "http://registry.npmjs.org/icalendar/-/icalendar-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "48ade0b2d664bf1020c75f9178200887ee7de4ef", + "tarball": "http://registry.npmjs.org/icalendar/-/icalendar-0.0.2.tgz" + } + }, + "keywords": [ + "ical", + "ics", + "calendar" + ], + "url": "http://registry.npmjs.org/icalendar/" + }, + "icecap": { + "name": "icecap", + "description": "Icecap client library for Node.js", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "jhh", + "email": "jhh@sendanor.com" + } + ], + "time": { + "modified": "2011-08-28T20:14:23.603Z", + "created": "2011-08-17T21:25:14.028Z", + "0.0.1": "2011-08-17T21:25:24.542Z", + "0.0.2": "2011-08-28T13:01:13.357Z", + "0.0.3": "2011-08-28T19:48:36.902Z", + "0.0.4": "2011-08-28T20:14:23.603Z" + }, + "author": { + "name": "Jaakko-Heikki Heusala", + "email": "jheusala@iki.fi", + "url": "http://www.jhh.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/jheusala/node-icecap.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/icecap/0.0.1", + "0.0.2": "http://registry.npmjs.org/icecap/0.0.2", + "0.0.3": "http://registry.npmjs.org/icecap/0.0.3", + "0.0.4": "http://registry.npmjs.org/icecap/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "74d16f0af8fc26b8b3d7385860d083dbdd2e23e9", + "tarball": "http://registry.npmjs.org/icecap/-/icecap-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "7851267684529b6e03a970d0e721af9292a9cc28", + "tarball": "http://registry.npmjs.org/icecap/-/icecap-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "e6c0f6ff756fd2c1af264fcf94988070923fdc6c", + "tarball": "http://registry.npmjs.org/icecap/-/icecap-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "bed081284f46cce5df8fe7be3bca8a28ae26f080", + "tarball": "http://registry.npmjs.org/icecap/-/icecap-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/icecap/" + }, + "icecapdjs": { + "name": "icecapdjs", + "description": "Local daemon to relay icecapd to remote webserver over HTTP. Part of NKO 2011 from Oulu team.", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "jhh", + "email": "jhh@sendanor.com" + } + ], + "time": { + "modified": "2011-08-28T20:18:01.527Z", + "created": "2011-08-28T12:34:46.414Z", + "0.0.1": "2011-08-28T12:34:48.383Z", + "0.0.2": "2011-08-28T12:53:22.128Z", + "0.0.4": "2011-08-28T14:14:06.492Z", + "0.0.5": "2011-08-28T16:03:22.946Z", + "0.0.6": "2011-08-28T20:18:01.527Z" + }, + "author": { + "name": "Jaakko-Heikki Heusala", + "email": "jheusala@iki.fi" + }, + "repository": { + "type": "git", + "url": "git://github.com/nko2/oulu.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/icecapdjs/0.0.1", + "0.0.2": "http://registry.npmjs.org/icecapdjs/0.0.2", + "0.0.4": "http://registry.npmjs.org/icecapdjs/0.0.4", + "0.0.5": "http://registry.npmjs.org/icecapdjs/0.0.5", + "0.0.6": "http://registry.npmjs.org/icecapdjs/0.0.6" + }, + "dist": { + "0.0.1": { + "shasum": "4b2bb83d21bd94a5e92afb407c5cd75acfa02b7f", + "tarball": "http://registry.npmjs.org/icecapdjs/-/icecapdjs-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "e7ade55133a6f46b2012b5b3d9a85c8f035f574e", + "tarball": "http://registry.npmjs.org/icecapdjs/-/icecapdjs-0.0.2.tgz" + }, + "0.0.4": { + "shasum": "3654c65f8f77d473a99361efa38d1a947d3cf7e5", + "tarball": "http://registry.npmjs.org/icecapdjs/-/icecapdjs-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "a637c695117a9b5e0e47a868cd9473cfaa2df6ff", + "tarball": "http://registry.npmjs.org/icecapdjs/-/icecapdjs-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "04d1dc1a4c4bcf69fee081806181d0bc1a5b3070", + "tarball": "http://registry.npmjs.org/icecapdjs/-/icecapdjs-0.0.6.tgz" + } + }, + "url": "http://registry.npmjs.org/icecapdjs/" + }, + "icecast-stack": { + "name": "icecast-stack", + "description": "A `StreamStack` implementation for parsing and/or injecting metadata with SHOUTcast/Icecast radio streams.", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "TooTallNate", + "email": "nathan@tootallnate.net" + } + ], + "author": { + "name": "Nathan Rajlich", + "email": "nathan@tootallnate.net" + }, + "time": { + "modified": "2011-08-03T06:15:53.033Z", + "created": "2011-08-03T06:15:53.033Z", + "0.1.0": "2011-08-03T06:15:53.033Z", + "0.2.0": "2011-08-03T06:15:53.033Z", + "0.2.1": "2011-08-03T06:15:53.033Z", + "0.2.2": "2011-08-03T06:15:53.033Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/icecast-stack/0.1.0", + "0.2.0": "http://registry.npmjs.org/icecast-stack/0.2.0", + "0.2.1": "http://registry.npmjs.org/icecast-stack/0.2.1", + "0.2.2": "http://registry.npmjs.org/icecast-stack/0.2.2" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/icecast-stack/-/icecast-stack-0.1.0.tgz" + }, + "0.2.0": { + "tarball": "http://registry.npmjs.org/icecast-stack/-/icecast-stack-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "f0394f0dd54b7406ea439daface709fe3879d29b", + "tarball": "http://registry.npmjs.org/icecast-stack/-/icecast-stack-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "7b27666e4e872b25b99a1c13f36459591e705507", + "tarball": "http://registry.npmjs.org/icecast-stack/-/icecast-stack-0.2.2.tgz" + } + }, + "keywords": [ + "SHOUTcast", + "Icecast", + "Radio", + "Internet", + "Metadata", + "ReadStream", + "StreamStack" + ], + "url": "http://registry.npmjs.org/icecast-stack/" + }, + "ichabod": { + "name": "ichabod", + "description": "A test harness for writing client side js tests and automating test runs.", + "dist-tags": { + "latest": "0.5.0" + }, + "maintainers": [ + { + "name": "larrymyers", + "email": "larry@larrymyers.com" + } + ], + "time": { + "modified": "2011-03-30T22:13:08.025Z", + "created": "2011-02-20T15:38:56.774Z", + "0.0.1": "2011-02-20T15:38:56.891Z", + "0.1.0": "2011-02-20T15:40:34.393Z", + "0.2.0": "2011-02-21T22:44:48.955Z", + "0.5.0": "2011-03-30T22:10:06.892Z" + }, + "author": { + "name": "Larry Myers", + "email": "larry@larrymyers.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/larrymyers/ichabod.git" + }, + "versions": { + "0.5.0": "http://registry.npmjs.org/ichabod/0.5.0" + }, + "dist": { + "0.5.0": { + "shasum": "0cf4060d475bc55d3eaddd4fd2dfc35ced545fcf", + "tarball": "http://registry.npmjs.org/ichabod/-/ichabod-0.5.0.tgz" + } + }, + "url": "http://registry.npmjs.org/ichabod/" + }, + "icing": { + "name": "icing", + "description": "Dependency management for cake command.", + "dist-tags": { + "latest": "0.3.1" + }, + "maintainers": [ + { + "name": "KrisJordan", + "email": "krisjordan@gmail.com" + } + ], + "time": { + "modified": "2011-06-17T16:01:31.322Z", + "created": "2011-01-06T18:29:58.855Z", + "0.1.0": "2011-01-06T18:29:59.079Z", + "0.2.0": "2011-01-07T04:25:40.445Z", + "0.2.1": "2011-01-07T04:41:35.844Z", + "0.3.0": "2011-01-10T13:56:32.519Z", + "0.3.1": "2011-06-17T16:01:31.322Z" + }, + "author": { + "name": "Kris Jordan" + }, + "repository": { + "type": "git", + "url": "git://github.com/KrisJordan/icing.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/icing/0.1.0", + "0.2.0": "http://registry.npmjs.org/icing/0.2.0", + "0.2.1": "http://registry.npmjs.org/icing/0.2.1", + "0.3.0": "http://registry.npmjs.org/icing/0.3.0", + "0.3.1": "http://registry.npmjs.org/icing/0.3.1" + }, + "dist": { + "0.1.0": { + "shasum": "0dca5a0c8672bcd78fe52f061f43381e66a36eb3", + "tarball": "http://registry.npmjs.org/icing/-/icing-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "411f31f3975b7b4820e6fa2ba2c9f00729e7a86f", + "tarball": "http://registry.npmjs.org/icing/-/icing-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "70d5eef10c474acf963087dfc594569ab30b9df8", + "tarball": "http://registry.npmjs.org/icing/-/icing-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "c7b6035af05e7a57f1966c2678e8dc7991bb6642", + "tarball": "http://registry.npmjs.org/icing/-/icing-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "ad84f8c16f38fc57c4d52a40985a0d41bb86657e", + "tarball": "http://registry.npmjs.org/icing/-/icing-0.3.1.tgz" + } + }, + "keywords": [ + "cake", + "dependency", + "build", + "watch" + ], + "url": "http://registry.npmjs.org/icing/" + }, + "ico": { + "name": "ico", + "description": "A graph plotting library", + "dist-tags": { + "latest": "0.3.3" + }, + "maintainers": [ + { + "name": "alexyoung", + "email": "a@alexyoung.org" + } + ], + "time": { + "modified": "2011-09-14T23:06:33.564Z", + "created": "2011-09-14T23:06:32.844Z", + "0.3.3": "2011-09-14T23:06:33.564Z" + }, + "author": { + "name": "Alex R. Young", + "email": "alex@helicoid.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/alexyoung/ico.git" + }, + "versions": { + "0.3.3": "http://registry.npmjs.org/ico/0.3.3" + }, + "dist": { + "0.3.3": { + "shasum": "bf725463595ea3fd01d7a16650d166eecaa20dc8", + "tarball": "http://registry.npmjs.org/ico/-/ico-0.3.3.tgz" + } + }, + "url": "http://registry.npmjs.org/ico/" + }, + "iconv": { + "name": "iconv", + "description": "Text recoding in JavaScript for fun and profit!", + "dist-tags": { + "latest": "1.1.3" + }, + "maintainers": [ + { + "name": "bnoordhuis", + "email": "info@bnoordhuis.nl" + } + ], + "time": { + "modified": "2011-12-07T14:22:56.322Z", + "created": "2011-02-24T19:28:02.979Z", + "1.0.0": "2011-12-07T14:22:56.322Z", + "1.0.1": "2011-12-07T14:22:56.322Z", + "1.1.0": "2011-12-07T14:22:56.322Z", + "1.1.1": "2011-12-07T14:22:56.322Z", + "1.1.2": "2011-12-07T14:22:56.322Z", + "1.1.3": "2011-12-07T14:22:56.322Z" + }, + "author": { + "name": "Ben Noordhuis", + "email": "info@bnoordhuis.nl", + "url": "http://bnoordhuis.nl/" + }, + "repository": { + "type": "git", + "url": "git://github.com/bnoordhuis/node-iconv.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/iconv/1.0.0", + "1.0.1": "http://registry.npmjs.org/iconv/1.0.1", + "1.1.0": "http://registry.npmjs.org/iconv/1.1.0", + "1.1.1": "http://registry.npmjs.org/iconv/1.1.1", + "1.1.2": "http://registry.npmjs.org/iconv/1.1.2", + "1.1.3": "http://registry.npmjs.org/iconv/1.1.3" + }, + "dist": { + "1.0.0": { + "shasum": "3666ebc23d5b1ee3ab19f10bff4e47c852f3e2b5", + "tarball": "http://registry.npmjs.org/iconv/-/iconv-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "b2c2d6b7fb95cd3e06b879bfa99ece74e8315ae8", + "tarball": "http://registry.npmjs.org/iconv/-/iconv-1.0.1.tgz" + }, + "1.1.0": { + "shasum": "e3f5cca3430d3ae09748242ade9a493634ba5417", + "tarball": "http://registry.npmjs.org/iconv/-/iconv-1.1.0.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "6a3506d1f8ad8f076a2177d7fceeb5eaee3e603f", + "tarball": "http://registry.npmjs.org/iconv/-/iconv-1.1.0-0.4-sunos-5.11.tgz" + } + } + }, + "1.1.1": { + "shasum": "dbd8e35bf1999fe25dd281c8fce6b780457a3a3b", + "tarball": "http://registry.npmjs.org/iconv/-/iconv-1.1.1.tgz" + }, + "1.1.2": { + "shasum": "779d3bcf64c3f8c2e5ebc6637e42b1c4470b57e1", + "tarball": "http://registry.npmjs.org/iconv/-/iconv-1.1.2.tgz" + }, + "1.1.3": { + "shasum": "b2cc11cceeb3cd298f484d7a5694240d64cbf259", + "tarball": "http://registry.npmjs.org/iconv/-/iconv-1.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/iconv/" + }, + "iconv-jp": { + "name": "iconv-jp", + "description": "Text recoding in JavaScript for fun and profit! fork from https://github.com/bnoordhuis/node-iconv", + "dist-tags": { + "latest": "1.1.3" + }, + "maintainers": [ + { + "name": "kotsutsumi", + "email": "kotsutsumi@xenophy.com" + } + ], + "time": { + "modified": "2011-10-30T18:04:48.339Z", + "created": "2011-08-12T21:20:24.629Z", + "1.1.2": "2011-08-12T21:20:29.037Z", + "1.1.3": "2011-10-30T18:04:48.339Z" + }, + "author": { + "name": "Kazuhiro Kotsutsumi", + "email": "kotsutsumi@xenophy.com", + "url": "http://www.xenophy.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/xenophy/node-iconv.git" + }, + "versions": { + "1.1.2": "http://registry.npmjs.org/iconv-jp/1.1.2", + "1.1.3": "http://registry.npmjs.org/iconv-jp/1.1.3" + }, + "dist": { + "1.1.2": { + "shasum": "0564904f2c6b5355bcdbedaba2a140a31900318b", + "tarball": "http://registry.npmjs.org/iconv-jp/-/iconv-jp-1.1.2.tgz" + }, + "1.1.3": { + "shasum": "348546761494459e7bc1d04c62912d19b4068766", + "tarball": "http://registry.npmjs.org/iconv-jp/-/iconv-jp-1.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/iconv-jp/" + }, + "iconv-lite": { + "name": "iconv-lite", + "description": "Convert character encodings in pure javascript.", + "dist-tags": { + "latest": "0.1.1" + }, + "readme": "iconv-lite - native javascript conversion between character encodings.\n======================================================================\n\n## Usage\n\n var iconv = require('iconv-lite');\n \n // Convert from an encoded buffer to string.\n str = icon.fromEncoding(buf, 'win-1251');\n \n // Convert from string to an encoded buffer.\n buf = iconv.toEncoding(\"Sample input string\", 'win-1251');\n\n\n## Supported encodings\n\nCurrently only a small part of encodings supported:\n\n* All node.js native encodings: 'utf8', 'ucs2', 'ascii', 'binary', 'base64'.\n* 'latin1'\n* Cyrillic encodings: 'windows-1251', 'koi8-r', 'iso 8859-5'.\n\nOther encodings are easy to add, see the source. Please, participate.\n\n\n## Encoding/decoding speed\n\nComparison with iconv module (1000 times 256kb, on Core i5/2.5 GHz).\n\n Operation\\module iconv iconv-lite (this)\n toEncoding('win1251') 19.57 mb/s 49.04 mb/s\n fromEncoding('win1251') 16.39 mb/s 24.11 mb/s\n\n\n## Notes\n\nThis module is JavaScript-only, thus can be used in a sandboxed environment like [Cloud9](http://c9.io).\n\nUntranslatable characters are set to '?'. No transliteration is currently supported, pull requests are welcome.\n\n## Testing\n\n npm install --dev iconv-lite\n vows\n", + "maintainers": [ + { + "name": "ashtuchkin", + "email": "ashtuchkin@gmail.com" + } + ], + "time": { + "modified": "2011-11-23T12:55:22.201Z", + "created": "2011-11-09T17:51:01.242Z", + "0.1.0": "2011-11-09T17:51:05.090Z", + "0.1.1": "2011-11-23T12:55:22.201Z" + }, + "author": { + "name": "Alexander Shtuchkin", + "email": "ashtuchkin@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/ashtuchkin/node-iconv.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/iconv-lite/0.1.0", + "0.1.1": "http://registry.npmjs.org/iconv-lite/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "bb686e9e87899523e69c313d01ffae9d7850e1eb", + "tarball": "http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "7844849646a553d2b65711d4e8e3188c2d0a5106", + "tarball": "http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.1.1.tgz" + } + }, + "keywords": [ + "iconv", + "convert", + "charset" + ], + "url": "http://registry.npmjs.org/iconv-lite/" + }, + "id3": { + "name": "id3", + "description": "A ID3 library for node, using pure Javascript.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "Tim-Smart", + "email": "tim@fostle.com" + } + ], + "author": { + "name": "Tim Smart" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/id3/0.0.1", + "0.0.2": "http://registry.npmjs.org/id3/0.0.2" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/id3/-/id3-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/id3/-/id3-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/id3/" + }, + "idea": { + "name": "idea", + "description": "Generates IDs and \"handles\" in node.js (uuid, greek, etc)", + "dist-tags": { + "latest": "0.5.0" + }, + "maintainers": [ + { + "name": "pyrotechnick", + "email": "pyrotechnick@feistystudios.com" + } + ], + "time": { + "modified": "2011-03-11T07:38:56.032Z", + "created": "2011-03-11T07:32:05.543Z", + "0.1.0": "2011-03-11T07:32:06.482Z", + "0.5.0": "2011-03-11T07:36:27.013Z" + }, + "author": { + "name": "Feisty Studios", + "email": "idea@feistystudios.com", + "url": "http://feistystudios.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/feisty/idea.git", + "private": "git@github.com:feisty/idea.git", + "web": "http://github.com/feisty/idea" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/idea/0.1.0", + "0.5.0": "http://registry.npmjs.org/idea/0.5.0" + }, + "dist": { + "0.1.0": { + "shasum": "b5183fb5958d048c7ffee7808f368a09b1b5efbf", + "tarball": "http://registry.npmjs.org/idea/-/idea-0.1.0.tgz" + }, + "0.5.0": { + "shasum": "4d1888b160bc3981ac8aa2eb12282fe715244118", + "tarball": "http://registry.npmjs.org/idea/-/idea-0.5.0.tgz" + } + }, + "keywords": [ + "idea" + ], + "url": "http://registry.npmjs.org/idea/" + }, + "identify.js": { + "name": "identify.js", + "description": "Parse identify (image-magick) output into JS object.", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "sdepold", + "email": "sascha@depold.com" + } + ], + "time": { + "modified": "2011-09-26T13:29:40.938Z", + "created": "2011-09-26T13:21:51.934Z", + "0.1.0": "2011-09-26T13:21:52.595Z", + "0.1.1": "2011-09-26T13:23:15.958Z", + "0.1.2": "2011-09-26T13:29:40.938Z" + }, + "author": { + "name": "DaWanda GmbH", + "email": "mirko@dawanda.com", + "url": "http://dawanda.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dawanda/identify.js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/identify.js/0.1.0", + "0.1.1": "http://registry.npmjs.org/identify.js/0.1.1", + "0.1.2": "http://registry.npmjs.org/identify.js/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "c82b4f55cdbcf5e35c845f655f4ae04696b14222", + "tarball": "http://registry.npmjs.org/identify.js/-/identify.js-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "26cc7630293cd3bbed997cf3c128d25ae655843a", + "tarball": "http://registry.npmjs.org/identify.js/-/identify.js-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "78fdf2590e517d4474de626e855f6cdcb985b3a9", + "tarball": "http://registry.npmjs.org/identify.js/-/identify.js-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/identify.js/" + }, + "idiomatic-console": { + "name": "idiomatic-console", + "description": "Provide modules with a local console that can be rebound as required with targets for each stream", + "dist-tags": { + "latest": "0.0.9" + }, + "maintainers": [ + { + "name": "jon.seymour", + "email": "jon.seymour@gmail.com" + } + ], + "time": { + "modified": "2011-09-19T02:59:15.624Z", + "created": "2011-04-26T10:20:23.506Z", + "0.0.6": "2011-04-26T10:20:25.819Z", + "0.0.7": "2011-04-26T10:35:47.380Z", + "0.0.8": "2011-04-26T15:39:26.155Z", + "0.0.9": "2011-09-19T02:52:10.366Z" + }, + "author": { + "name": "Jon Seymour", + "email": "jon.seymour@gmail.com", + "url": "http://orwelliantremors.blogspot.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jonseymour/idiomatic-console.git" + }, + "versions": { + "0.0.6": "http://registry.npmjs.org/idiomatic-console/0.0.6", + "0.0.9": "http://registry.npmjs.org/idiomatic-console/0.0.9" + }, + "dist": { + "0.0.6": { + "shasum": "504a2e5324a7f6a41256087d610b99d552b8ca99", + "tarball": "http://registry.npmjs.org/idiomatic-console/-/idiomatic-console-0.0.6.tgz" + }, + "0.0.9": { + "shasum": "6612aeff4d2acc99f7db88b95cc99238c265223a", + "tarball": "http://registry.npmjs.org/idiomatic-console/-/idiomatic-console-0.0.9.tgz" + } + }, + "url": "http://registry.npmjs.org/idiomatic-console/" + }, + "idiomatic-stdio": { + "name": "idiomatic-stdio", + "description": "Redirect console.log and console.info to process.stderr", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "jon.seymour", + "email": "jon.seymour@gmail.com" + } + ], + "time": { + "modified": "2011-04-26T10:20:43.903Z", + "created": "2011-04-19T11:57:44.279Z", + "0.0.0": "2011-04-19T11:57:46.111Z", + "0.0.1": "2011-04-19T14:54:59.935Z", + "0.0.2": "2011-04-21T11:51:29.072Z", + "0.0.3": "2011-04-21T22:05:45.985Z", + "0.0.4": "2011-04-21T22:15:38.413Z", + "0.0.5": "2011-04-22T03:44:51.010Z" + }, + "author": { + "name": "Jon Seymour", + "email": "jon.seymour@gmail.com", + "url": "http://orwelliantremors.blogspot.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jonseymour/node-idoiomatic-stdio.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/idiomatic-stdio/0.0.0", + "0.0.1": "http://registry.npmjs.org/idiomatic-stdio/0.0.1", + "0.0.2": "http://registry.npmjs.org/idiomatic-stdio/0.0.2", + "0.0.3": "http://registry.npmjs.org/idiomatic-stdio/0.0.3", + "0.0.4": "http://registry.npmjs.org/idiomatic-stdio/0.0.4" + }, + "dist": { + "0.0.0": { + "shasum": "e890873005f52a076e1cebe102a4fe45cf37808f", + "tarball": "http://registry.npmjs.org/idiomatic-stdio/-/idiomatic-stdio-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "81c607135175d384f84de0f5ba2894311bec41d0", + "tarball": "http://registry.npmjs.org/idiomatic-stdio/-/idiomatic-stdio-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "2814f688e54a9ddc509b17606ebeecd2374d684d", + "tarball": "http://registry.npmjs.org/idiomatic-stdio/-/idiomatic-stdio-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "505dd0810270aa849436cd148da07bbdd7336cfd", + "tarball": "http://registry.npmjs.org/idiomatic-stdio/-/idiomatic-stdio-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "c01b1a8d3e9a732021c74526d8da93fe6c17836a", + "tarball": "http://registry.npmjs.org/idiomatic-stdio/-/idiomatic-stdio-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/idiomatic-stdio/" + }, + "iff-parser": { + "name": "iff-parser", + "description": "Parses Amiga IFF files", + "dist-tags": { + "latest": "0.0.2", + "iff": "0.0.1" + }, + "readme": "The node-iff-parser parses Amiga IFF files (of all kinds) according to [specifications](http://www.martinreddy.net/gfx/2d/IFF.txt).\n\n## Usage\n\n var IFFParser = require('iff-parser').Parser;\n var settings = {}; //Optional\n var parser = new IFFParser('/path/to/file', settings);\n parser.parse(function(error, result) {\n //Do something with the result\n });\n\nIFF Chunks are parsed into nodes. There are nodes for container chunks (chunks that can contain other chunks), `ContainerChunk`, and nodes for data-only chunks (`DataChunk`). The top-level object returned is of type `File`, which is a special container chunk that can only contain one chunk. Said chunk can be accessed using the `.content` property (or using `chunkById('FORM')` for compatibility). The chunk returned is (for all valid files) a container of type `FORM`.\n\n### Shared properties\n\nData and Container chunks both contain the following properties:\n\n* `chunkType` containing `\"DataChunk\"`, `\"File\"` or `\"ContainerChunk\"`, respectively.\n* `ckID` the type of the chunk as parsed as ascii string.\n* `ckSize` the size (in bytes) that the chunk header specifies.\n* `ckData` a Buffer of the data in the chunk (except id and size header fields). Note that this data is sliced for the data of the child chunks so changing this will also change the data of the child chunks.\n\n### Properties specific to container chunks:\n\nContainer chunks additionally contain the following:\n\n* `chunks` array of child chunks.\n* `chunkById` convenience method to get the first child chunk of a specific type or null if no such chunk exists.\n* `chunksById` convenience method to get an array of all child chunks of a specific types.\n\n### Additional properties\n\nEach chunk, before being made into an object of either type, is processed by a `processor`. There are built-in processors for various types such as the basic `LIST`, `FORM`, `CAT ` and `PROP` chunk types as well as some chunk types specific to the ILBM image file type. To create your own processor, simply pass the option `processors`. This option should be an object with the chunk types you wish to parse as keys and the processor function as value:\n\n settings = {\n processors: {\n \"FXHD\": function(chunk_info, parentChunk) {\n //chunk_info contains ckID, ckSize and ckData fields\n var props = {\n width = chunk_info.ckData.readUInt16BE(0),\n …\n }\n return {additionalData: props, innerChunkBuffer: null}\n },\n …\n }\n };\n\nIf the returned `innerChunkBuffer` of a processor is non-null, the returned Buffer (which should be a sliced version of `chunk_info.ckData`) is used to parse child chunks. The default implementation will return `null` for unknown chunks (meaning they become `DataChunk`s).\n\nAll the properties from `additionalData` will be copied into the created chunk object.\n\n## Utilities\n\nThere are currently two utility functions that can be accessed using `require('iff-parser').utils`.\n\n### unpack(bufferprops = {buffer, offset}, compression, length)\n\n`unpack` will return a new buffer derived from the current buffer in bufferprops and the given compression schemes, resulting in a buffer of `length` bytes. bufferprops.offset will be updated accordingly. Currently, the supported values for `compression` are `\"cmpNone\"` and `\"cmpByteRun1\"`.\n\n### ilbm_canvas(file)\n\n`ilbm_canvas` will try to load the iff-parsed file as ILBM (inter-leaved bitmap) into a new node-canvas, returning said canvas. Requires [node-canvas](https://github.com/LearnBoost/node-canvas) to be installed.\n\n## To-Do\n\n* Better robustness for incorrect buffer sizes in the header field.\n\n## License\n\nnode-iff-parser is freely distributable under the terms of an MIT-style license.\n\nCopyright (c) 2011 Raphael Schweikert, http://sabberworm.com/\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n", + "maintainers": [ + { + "name": "sabberworm", + "email": "any@sabberworm.com" + } + ], + "time": { + "modified": "2011-11-22T20:23:42.078Z", + "created": "2011-11-18T08:13:25.175Z", + "0.0.1": "2011-11-18T08:13:26.965Z", + "0.0.2": "2011-11-22T20:23:42.078Z" + }, + "author": { + "name": "Raphael Schweikert", + "email": "any@sabberworm.com", + "url": "http://sabberworm.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/sabberworm/node-iff-parser.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/iff-parser/0.0.1", + "0.0.2": "http://registry.npmjs.org/iff-parser/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "78d39c654748d2dbe9facf7263a8b15914b615b1", + "tarball": "http://registry.npmjs.org/iff-parser/-/iff-parser-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f1eea1ff444a0752c67289632e0a6b82e49b864a", + "tarball": "http://registry.npmjs.org/iff-parser/-/iff-parser-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/iff-parser/" + }, + "iform": { + "name": "iform", + "description": "generate html5 style form and do validation", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "node-iform\n====\n\nnode-iform is a connect middleware help you validate and convert form data.\n\n\n*NOTE* You need to view [node-validator](https://github.com/chriso/node-validator)\nfor more information, if you want to use this node-iform.\n\n*NOTE* If you find a bug, or want some feature, send a pull request.\n\nExample\n----\n\n```javascript\n var iform = require('iform');\n\n var userForm = iform({\n username: {\n required : true,\n len : [4, 15]\n },\n password: {\n required : true,\n len : [6, 20]\n },\n\n email : {\n type : 'email'\n },\n\n birth : {\n type : Date,\n isAfter: new Date('01/01/1900'),\n isBefore : null // means now\n },\n\n avatar : {\n defaultValue : function(req) {\n return '/avatar/' + req.body.username + '.png';\n }\n },\n\n age : 'int',\n\n blog : 'url'\n });\n\n app.post('/signup', userForm(), function(req, res, next) {\n if(req.iform.errors) {\n return res.json(req.iform.errors);\n }\n db.users.insert(req.iform.data, function(err, data) {\n res.json({success : true, message: 'Sign up successfully'});\n });\n });\n\n app.post('/profile', userForm('birth', 'age', 'blog'), function(req, res, next){\n if(req.iform.errors) {\n return res.json(req.iform.errors);\n }\n db.users.update({username : req.session.user.username}, req.iform.data, function(err, data) {\n res.json({success : true, message: 'Update profile successfully'});\n });\n });\n```\n\n### define rules\n\nAt first you need define some rules for validation\n\nAs you see in the example, define a form like this : `var form = iform(rules);`\n\n`rules` is like `{fieldName : fieldRules, ...}`\n\n`fieldRules` is like `{ruleName : ruleParameter, ...}`\n\n```javascript\n // field name | rule name | rule parameters\n username :{ len : [4, 15] }\n```\n\nThe rule names can find at [node-validator](https://github.com/chriso/node-validator) project page.\n\nAll the methods of Validator and Filter of node-validator can be use as a rule name.\nThe rule parameters is the arguments for that method.\n\nThe `len` is defined by [node-validator](https://github.com/chriso/node-validator) like this\n\n```javascript\n Validator.prototype.len = function(min, max) { ... }\n```\n\nIt takes two parameters. so we use a array as the parameters.\n\nThe `type` is a special rule ,e.g.\n\n```javascript\n email : {\n type : 'email'\n }\n```\n\nit is equals to\n\n```javascript\n email : {\n 'isEmail' : []\n }\n```\n\nyou can also use `int`, `date` etc, cause the Validator defined `isInt` and `isDate`\n\nall the method of Valiator starts with `is` and take no arguments can be use as a type.\n\nif you only have a type rule you can use `fieldName : type` define it.\n\nYou can also use `Date` `Number` instead of `'date'`, `'number'`\n\n### use the middleware\n\n`userForm` you just defined is a function which returns a middleware, use like this\n\n```javascript\n app.post('/signup', userForm(), function(req, res, next) {\n if(req.iform.errors) {\n return res.json(req.iform.errors);\n }\n db.users.insert(req.iform.data, function(err, data) {\n res.json({success : true, message: 'Sign up successfully'});\n });\n });\n```\n\nthe middleware will check the `req.body` by your rules, all the validation errors \ngo to `req.iform.errors`, and the filtered and converted data go to `req.iform.data`.\n\nSince the data has been cleaned, you can use it immediately.\n\nIf there is another page also use the smae rules but only part of fields,\nyou can reuse it like this.\n\n```javascript\n app.post('/profile', userForm('birth', 'age', 'blog'), function(req, res, next){\n if(req.iform.errors) {\n return res.json(req.iform.errors);\n }\n db.users.update({username : req.session.user.username}, req.iform.data, function(err, data) {\n res.json({success : true, message: 'Update profile successfully'});\n });\n });\n```\n", + "maintainers": [ + { + "name": "guileen", + "email": "guileen@gmail.com" + } + ], + "time": { + "modified": "2011-11-19T18:06:31.203Z", + "created": "2011-11-19T18:06:27.231Z", + "0.0.1": "2011-11-19T18:06:31.203Z" + }, + "author": { + "name": "Lin Gui", + "email": "guileen@gmail.com" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/iform/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "b803ed0db0775c16692376ec576fd2595be85b9b", + "tarball": "http://registry.npmjs.org/iform/-/iform-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/iform/" + }, + "iglob": { + "name": "iglob", + "description": "Incremental file scanner/globber", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "pcapr", + "email": "kowsik@gmail.com" + } + ], + "author": { + "name": "pcapr", + "url": "http://www.pcapr.net" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/iglob/0.1.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/iglob/-/iglob-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/iglob/" + }, + "ignite": { + "name": "ignite", + "description": "An easy-to-use async programming framework inspired by UML2 state machines.", + "dist-tags": { + "latest": "0.1.5" + }, + "maintainers": [ + { + "name": "ignitejs", + "email": "richard@ignitejs.com" + } + ], + "time": { + "modified": "2011-10-25T16:20:35.437Z", + "created": "2011-08-11T21:13:14.688Z", + "0.1.0": "2011-08-11T21:13:21.717Z", + "0.1.1": "2011-08-12T12:39:07.105Z", + "0.1.2": "2011-08-23T09:43:41.882Z", + "0.1.3": "2011-08-31T20:20:11.126Z", + "0.1.4": "2011-09-08T14:12:31.724Z", + "0.1.5": "2011-10-25T16:20:35.437Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/ignite/0.1.0", + "0.1.1": "http://registry.npmjs.org/ignite/0.1.1", + "0.1.2": "http://registry.npmjs.org/ignite/0.1.2", + "0.1.3": "http://registry.npmjs.org/ignite/0.1.3", + "0.1.4": "http://registry.npmjs.org/ignite/0.1.4", + "0.1.5": "http://registry.npmjs.org/ignite/0.1.5" + }, + "dist": { + "0.1.0": { + "shasum": "eb7b128cddca4989ab1072315e0f7b9fa4864f8f", + "tarball": "http://registry.npmjs.org/ignite/-/ignite-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "cdb54e5392a4b0d227a810c68c6b01cbcd69c485", + "tarball": "http://registry.npmjs.org/ignite/-/ignite-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "e1ab0f8a6243130d6cdf7cda41496cadacb39aff", + "tarball": "http://registry.npmjs.org/ignite/-/ignite-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "0048171db5f9df89934c47b8e954e15caf1cf77c", + "tarball": "http://registry.npmjs.org/ignite/-/ignite-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "0f4fc249ebb740d5e472df15932e227f69adcad2", + "tarball": "http://registry.npmjs.org/ignite/-/ignite-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "c2d0f19d7d8a4e0c8aeb5a9580497397c780a48b", + "tarball": "http://registry.npmjs.org/ignite/-/ignite-0.1.5.tgz" + } + }, + "keywords": [ + "ignite", + "async", + "framework", + "state machine", + "FSM", + "UML" + ], + "url": "http://registry.npmjs.org/ignite/" + }, + "ignoring-deep-equals": { + "name": "ignoring-deep-equals", + "description": "Check equalness ignoring a specific path in the objects", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "thejh", + "email": "jannhorn@gmail.com" + } + ], + "time": { + "modified": "2011-11-08T16:49:15.903Z", + "created": "2011-11-08T16:49:13.779Z", + "1.0.0": "2011-11-08T16:49:15.903Z" + }, + "author": { + "name": "Jann Horn", + "email": "jannhorn@googlemail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/thejh/node-ignoring-deep-equals.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/ignoring-deep-equals/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "3526a4d50be32ebe9c0f722a3235bcf1386f4af5", + "tarball": "http://registry.npmjs.org/ignoring-deep-equals/-/ignoring-deep-equals-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/ignoring-deep-equals/" + }, + "ii": { + "name": "ii", + "description": "A JSON formatter for the command-line", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "tmcw", + "email": "macwright@gmail.com" + } + ], + "time": { + "modified": "2011-10-27T15:38:48.360Z", + "created": "2011-10-04T18:29:28.316Z", + "0.0.0": "2011-10-04T18:29:28.647Z", + "0.1.0": "2011-10-27T15:38:48.360Z" + }, + "author": { + "name": "Tom MacWright", + "email": "macwright@gmail.com" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/ii/0.0.0", + "0.1.0": "http://registry.npmjs.org/ii/0.1.0" + }, + "dist": { + "0.0.0": { + "shasum": "4ff566821cfab6c7b6dec9e11198e3f1436d452d", + "tarball": "http://registry.npmjs.org/ii/-/ii-0.0.0.tgz" + }, + "0.1.0": { + "shasum": "6ea1ce4b8da542dd321e29e926d56702e13746dd", + "tarball": "http://registry.npmjs.org/ii/-/ii-0.1.0.tgz" + } + }, + "keywords": [ + "readme" + ], + "url": "http://registry.npmjs.org/ii/" + }, + "iles-forked-irc-js": { + "name": "iles-forked-irc-js", + "description": "An IRC library for node.js", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "ilkkah", + "email": "ilkkah@gmail.com" + } + ], + "time": { + "modified": "2011-06-27T03:06:06.225Z", + "created": "2011-06-26T03:32:56.974Z", + "0.1.0": "2011-06-26T03:32:57.765Z", + "0.1.1": "2011-06-27T02:32:49.915Z", + "0.1.2": "2011-06-27T03:06:06.225Z" + }, + "author": { + "name": "Gianni Chiappetta", + "email": "gianni@runlevel6.org", + "url": "http://gf3.ca" + }, + "repository": { + "type": "git", + "url": "git://github.com/ile/iles-forked-irc-js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/iles-forked-irc-js/0.1.0", + "0.1.1": "http://registry.npmjs.org/iles-forked-irc-js/0.1.1", + "0.1.2": "http://registry.npmjs.org/iles-forked-irc-js/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "79ec6d4cb9256ac12546afb443dce496e581cab5", + "tarball": "http://registry.npmjs.org/iles-forked-irc-js/-/iles-forked-irc-js-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "41a6abbc427e1453a8ba7e4d6084bfec02795078", + "tarball": "http://registry.npmjs.org/iles-forked-irc-js/-/iles-forked-irc-js-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "717fc9225798ab60c05b9906446919a87f00ab78", + "tarball": "http://registry.npmjs.org/iles-forked-irc-js/-/iles-forked-irc-js-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/iles-forked-irc-js/" + }, + "image": { + "name": "image", + "description": "This is a node.js module that unifies node-png, node-gif and node-jpeg modules.", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "pkrumins", + "email": "peteris.krumins@gmail.com" + } + ], + "versions": { + "1.0.0": "http://registry.npmjs.org/image/1.0.0", + "1.0.1": "http://registry.npmjs.org/image/1.0.1" + }, + "dist": { + "1.0.0": { + "tarball": "http://packages:5984/image/-/image-1.0.0.tgz" + }, + "1.0.1": { + "tarball": "http://packages:5984/image/-/image-1.0.1.tgz" + } + }, + "keywords": [ + "png", + "gif", + "jpeg", + "rgb", + "rgba", + "bgr", + "bgra", + "picture", + "image" + ], + "url": "http://registry.npmjs.org/image/" + }, + "imageable": { + "name": "imageable", + "description": "On-demand image manipulation middleware for express and connect.", + "dist-tags": { + "latest": "0.8.6" + }, + "maintainers": [ + { + "name": "sdepold", + "email": "sascha@dawanda.com" + } + ], + "time": { + "modified": "2011-11-03T14:21:55.989Z", + "created": "2011-05-25T14:30:53.378Z", + "0.0.1": "2011-05-25T14:30:54.090Z", + "0.0.2": "2011-05-25T14:36:28.739Z", + "0.0.3": "2011-05-26T07:14:21.394Z", + "0.0.4": "2011-05-26T07:52:45.902Z", + "0.0.5": "2011-05-26T08:56:13.108Z", + "0.0.6": "2011-05-26T09:16:09.367Z", + "0.1.0": "2011-05-31T07:45:43.906Z", + "0.1.1": "2011-05-31T17:32:20.762Z", + "0.1.2": "2011-06-20T13:26:56.103Z", + "0.2.0": "2011-06-22T09:06:56.815Z", + "0.2.1": "2011-06-22T13:37:13.049Z", + "0.2.2": "2011-06-27T11:52:34.530Z", + "0.2.3": "2011-06-27T12:53:35.534Z", + "0.3.0": "2011-06-28T14:24:33.665Z", + "0.3.1": "2011-06-29T06:49:16.692Z", + "0.3.2": "2011-06-29T07:02:26.093Z", + "0.3.3": "2011-07-04T07:06:37.194Z", + "0.3.4": "2011-07-04T11:45:07.179Z", + "0.3.5": "2011-08-22T14:41:52.111Z", + "0.4.0": "2011-09-05T08:23:47.834Z", + "0.5.0": "2011-09-08T06:36:31.907Z", + "0.5.1": "2011-09-08T06:46:32.725Z", + "0.5.2": "2011-09-08T06:50:19.112Z", + "0.6.0": "2011-09-12T11:04:48.936Z", + "0.6.1": "2011-09-12T11:50:18.096Z", + "0.6.2": "2011-09-14T08:52:57.398Z", + "0.7.0": "2011-09-20T09:20:09.334Z", + "0.7.1": "2011-09-20T09:58:49.053Z", + "0.7.2": "2011-09-23T07:46:02.597Z", + "0.7.3": "2011-09-23T19:12:56.979Z", + "0.8.0": "2011-09-26T13:36:11.667Z", + "0.8.1": "2011-09-26T13:40:13.141Z", + "0.8.2": "2011-09-27T08:22:01.887Z", + "0.8.3": "2011-10-10T06:02:39.718Z", + "0.8.4": "2011-10-10T07:05:02.355Z", + "0.8.5": "2011-10-10T07:34:15.279Z", + "0.8.6": "2011-11-03T14:21:55.989Z" + }, + "author": { + "name": "DaWanda GmbH", + "email": "mirko@dawanda.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dawanda/node-imageable.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/imageable/0.0.1", + "0.0.2": "http://registry.npmjs.org/imageable/0.0.2", + "0.0.3": "http://registry.npmjs.org/imageable/0.0.3", + "0.0.4": "http://registry.npmjs.org/imageable/0.0.4", + "0.0.5": "http://registry.npmjs.org/imageable/0.0.5", + "0.0.6": "http://registry.npmjs.org/imageable/0.0.6", + "0.1.0": "http://registry.npmjs.org/imageable/0.1.0", + "0.1.1": "http://registry.npmjs.org/imageable/0.1.1", + "0.1.2": "http://registry.npmjs.org/imageable/0.1.2", + "0.2.0": "http://registry.npmjs.org/imageable/0.2.0", + "0.2.1": "http://registry.npmjs.org/imageable/0.2.1", + "0.2.2": "http://registry.npmjs.org/imageable/0.2.2", + "0.2.3": "http://registry.npmjs.org/imageable/0.2.3", + "0.3.0": "http://registry.npmjs.org/imageable/0.3.0", + "0.3.1": "http://registry.npmjs.org/imageable/0.3.1", + "0.3.2": "http://registry.npmjs.org/imageable/0.3.2", + "0.3.3": "http://registry.npmjs.org/imageable/0.3.3", + "0.3.4": "http://registry.npmjs.org/imageable/0.3.4", + "0.3.5": "http://registry.npmjs.org/imageable/0.3.5", + "0.4.0": "http://registry.npmjs.org/imageable/0.4.0", + "0.5.0": "http://registry.npmjs.org/imageable/0.5.0", + "0.5.1": "http://registry.npmjs.org/imageable/0.5.1", + "0.5.2": "http://registry.npmjs.org/imageable/0.5.2", + "0.6.0": "http://registry.npmjs.org/imageable/0.6.0", + "0.6.1": "http://registry.npmjs.org/imageable/0.6.1", + "0.6.2": "http://registry.npmjs.org/imageable/0.6.2", + "0.7.0": "http://registry.npmjs.org/imageable/0.7.0", + "0.7.1": "http://registry.npmjs.org/imageable/0.7.1", + "0.7.2": "http://registry.npmjs.org/imageable/0.7.2", + "0.7.3": "http://registry.npmjs.org/imageable/0.7.3", + "0.8.0": "http://registry.npmjs.org/imageable/0.8.0", + "0.8.1": "http://registry.npmjs.org/imageable/0.8.1", + "0.8.2": "http://registry.npmjs.org/imageable/0.8.2", + "0.8.3": "http://registry.npmjs.org/imageable/0.8.3", + "0.8.4": "http://registry.npmjs.org/imageable/0.8.4", + "0.8.5": "http://registry.npmjs.org/imageable/0.8.5", + "0.8.6": "http://registry.npmjs.org/imageable/0.8.6" + }, + "dist": { + "0.0.1": { + "shasum": "12d495083bf13f8b37b954f7b2ee1043e5b0de31", + "tarball": "http://registry.npmjs.org/imageable/-/imageable-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "8d4603ca1b288c81cd35ca49a107e63b7219e3ce", + "tarball": "http://registry.npmjs.org/imageable/-/imageable-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "a66ac9f970224824f7149e697f6a669b6f27c913", + "tarball": "http://registry.npmjs.org/imageable/-/imageable-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "67e2eddf6b15efa1abdd315e907c06d7c579ce5c", + "tarball": "http://registry.npmjs.org/imageable/-/imageable-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "7a9cd0eabc41a649e5a48f0729c100c48247d552", + "tarball": "http://registry.npmjs.org/imageable/-/imageable-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "920333f1894adc36ca96e3f0387b176f1a69d504", + "tarball": "http://registry.npmjs.org/imageable/-/imageable-0.0.6.tgz" + }, + "0.1.0": { + "shasum": "4e6f89a682a2920686b5a657db5427ece19389b0", + "tarball": "http://registry.npmjs.org/imageable/-/imageable-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "06e4fa7252fb54a163c374b9536656040d178830", + "tarball": "http://registry.npmjs.org/imageable/-/imageable-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "5d803cc77bd1a8f39f63de5ba39af0a6c095ddea", + "tarball": "http://registry.npmjs.org/imageable/-/imageable-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "443578fb34dbde86a37408762fb34541b6bc0c34", + "tarball": "http://registry.npmjs.org/imageable/-/imageable-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "8184b8ce67b858a52980627de2271e0a147bff91", + "tarball": "http://registry.npmjs.org/imageable/-/imageable-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "cd4bbaed7ee0907d3b01ca49cd785e9266d6e8ae", + "tarball": "http://registry.npmjs.org/imageable/-/imageable-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "f7def3ee0b867b87231f64a4e280e92d9d236fce", + "tarball": "http://registry.npmjs.org/imageable/-/imageable-0.2.3.tgz" + }, + "0.3.0": { + "shasum": "588dcc7132c7d4172597b9330455daa001949cbe", + "tarball": "http://registry.npmjs.org/imageable/-/imageable-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "38b50f2a45718a9808179f902ef058fa57eb77c4", + "tarball": "http://registry.npmjs.org/imageable/-/imageable-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "355eafb2a687cc4d0c9b90af1052862a3e72f13a", + "tarball": "http://registry.npmjs.org/imageable/-/imageable-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "d6d06895ab69db5d08731d29e1c6e874cb0933ee", + "tarball": "http://registry.npmjs.org/imageable/-/imageable-0.3.3.tgz" + }, + "0.3.4": { + "shasum": "9d3d7d3f06a3bf7786994b31bea4e91a3b6622ce", + "tarball": "http://registry.npmjs.org/imageable/-/imageable-0.3.4.tgz" + }, + "0.3.5": { + "shasum": "6809449f0751316383a12943b72e6c5ae8578605", + "tarball": "http://registry.npmjs.org/imageable/-/imageable-0.3.5.tgz" + }, + "0.4.0": { + "shasum": "1a2887707044ba348a3ce2236e7954b435a5f7a7", + "tarball": "http://registry.npmjs.org/imageable/-/imageable-0.4.0.tgz" + }, + "0.5.0": { + "shasum": "d88c6b2c3568cd04f9ab49b2d151fdeaf8a38bc4", + "tarball": "http://registry.npmjs.org/imageable/-/imageable-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "02f8cc77d5ae06083a9aceebc6abdef8522471b6", + "tarball": "http://registry.npmjs.org/imageable/-/imageable-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "76669721a764bcc56691c5bc24cc2aa0a9923014", + "tarball": "http://registry.npmjs.org/imageable/-/imageable-0.5.2.tgz" + }, + "0.6.0": { + "shasum": "02321e4843d28509c44debd33c72fd680f875b64", + "tarball": "http://registry.npmjs.org/imageable/-/imageable-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "10ffdd42ad929e73acdeefa0cc488a1ab29ea4a4", + "tarball": "http://registry.npmjs.org/imageable/-/imageable-0.6.1.tgz" + }, + "0.6.2": { + "shasum": "37b175681152e5aa1f828534cfbb026ba81af3e4", + "tarball": "http://registry.npmjs.org/imageable/-/imageable-0.6.2.tgz" + }, + "0.7.0": { + "shasum": "e285bc826ae41f1043c4f04e59d3c0b653c35353", + "tarball": "http://registry.npmjs.org/imageable/-/imageable-0.7.0.tgz" + }, + "0.7.1": { + "shasum": "f77f86ba8e6a381799026bff65ffb38623b7d3a5", + "tarball": "http://registry.npmjs.org/imageable/-/imageable-0.7.1.tgz" + }, + "0.7.2": { + "shasum": "4a6e8210ab785fe9c185cd56b87ea9c4d4ab7475", + "tarball": "http://registry.npmjs.org/imageable/-/imageable-0.7.2.tgz" + }, + "0.7.3": { + "shasum": "4b4e778f2277263fe4e4574a05dc7695c230a25e", + "tarball": "http://registry.npmjs.org/imageable/-/imageable-0.7.3.tgz" + }, + "0.8.0": { + "shasum": "4fa7197b3ea6aa1f8da5d86b2976e3475cf5914d", + "tarball": "http://registry.npmjs.org/imageable/-/imageable-0.8.0.tgz" + }, + "0.8.1": { + "shasum": "38c6dfadec8436764b0ec8c1f62fbad02dee331b", + "tarball": "http://registry.npmjs.org/imageable/-/imageable-0.8.1.tgz" + }, + "0.8.2": { + "shasum": "bba5af63645e3f8bd4c59fe0999adf6a03a65f28", + "tarball": "http://registry.npmjs.org/imageable/-/imageable-0.8.2.tgz" + }, + "0.8.3": { + "shasum": "e119f8b4ad3f87c6529f5fb3a58cda4afd6b1669", + "tarball": "http://registry.npmjs.org/imageable/-/imageable-0.8.3.tgz" + }, + "0.8.4": { + "shasum": "6447f617cf73b2ede380863a1b54d94a4d9e5951", + "tarball": "http://registry.npmjs.org/imageable/-/imageable-0.8.4.tgz" + }, + "0.8.5": { + "shasum": "fd7bd35cadbe5fd92bc7d5e781d022bdd9b543bd", + "tarball": "http://registry.npmjs.org/imageable/-/imageable-0.8.5.tgz" + }, + "0.8.6": { + "shasum": "4b799e01e6dc4ad8fd6527d642dc6ee11f240acc", + "tarball": "http://registry.npmjs.org/imageable/-/imageable-0.8.6.tgz" + } + }, + "url": "http://registry.npmjs.org/imageable/" + }, + "imageinfo": { + "name": "imageinfo", + "description": "A node.js package that returns information about an image or flash file such as type, dimensions etc.", + "dist-tags": { + "latest": "1.0.4" + }, + "maintainers": [ + { + "name": "norganna", + "email": "staff@norganna.org" + } + ], + "time": { + "modified": "2011-09-04T12:08:49.718Z", + "created": "2011-08-25T05:11:55.145Z", + "1.0.0": "2011-08-25T05:11:58.337Z", + "1.0.1": "2011-08-25T08:36:29.293Z", + "1.0.2": "2011-08-25T08:41:26.159Z", + "1.0.3": "2011-09-03T08:19:50.182Z", + "1.0.4": "2011-09-04T12:08:49.718Z" + }, + "author": { + "name": "Norganna", + "email": "ken@norganna.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/NorgannasAddOns/node-imageinfo.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/imageinfo/1.0.0", + "1.0.1": "http://registry.npmjs.org/imageinfo/1.0.1", + "1.0.2": "http://registry.npmjs.org/imageinfo/1.0.2", + "1.0.3": "http://registry.npmjs.org/imageinfo/1.0.3", + "1.0.4": "http://registry.npmjs.org/imageinfo/1.0.4" + }, + "dist": { + "1.0.0": { + "shasum": "e60540ebab38249a2662cd100ca9fcdeabbde5c8", + "tarball": "http://registry.npmjs.org/imageinfo/-/imageinfo-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "e294be181490ab83ce0627c0df52e836eabffdbd", + "tarball": "http://registry.npmjs.org/imageinfo/-/imageinfo-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "71014331709a15676243016a58c8e04a33ce9e9c", + "tarball": "http://registry.npmjs.org/imageinfo/-/imageinfo-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "5a26c6eb1b7b6e1578b9d8805a74e34f91f60e50", + "tarball": "http://registry.npmjs.org/imageinfo/-/imageinfo-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "1dd2456ecb96fc395f0aa1179c467dfb3d5d7a2a", + "tarball": "http://registry.npmjs.org/imageinfo/-/imageinfo-1.0.4.tgz" + } + }, + "keywords": [ + "image", + "info", + "jpg", + "jpeg", + "png", + "gif", + "swf", + "dimensions", + "size", + "type", + "mime", + "format" + ], + "url": "http://registry.npmjs.org/imageinfo/" + }, + "imagemagick": { + "name": "imagemagick", + "description": "A wrapper around the imagemagick cli", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "rsms", + "email": "rasmus@notion.se" + } + ], + "author": { + "name": "Rasmus Andersson" + }, + "repository": { + "type": "git", + "url": "http://github.com/rsms/node-imagemagick.git" + }, + "time": { + "modified": "2011-02-18T20:47:13.328Z", + "created": "2011-02-18T20:47:13.328Z", + "0.1.0": "2011-02-18T20:47:13.328Z", + "0.1.1": "2011-02-18T20:47:13.328Z", + "0.1.2": "2011-02-18T20:47:13.328Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/imagemagick/0.1.0", + "0.1.1": "http://registry.npmjs.org/imagemagick/0.1.1", + "0.1.2": "http://registry.npmjs.org/imagemagick/0.1.2" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/imagemagick/-/imagemagick-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://packages:5984/imagemagick/-/imagemagick-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "d2c18a7abd21396c926e5e47a2f3a0bb8910b0dd", + "tarball": "http://registry.npmjs.org/imagemagick/-/imagemagick-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/imagemagick/" + }, + "imagemagick-identify-parser": { + "name": "imagemagick-identify-parser", + "description": "Parses output from the `identify` program into an object.", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "dandean", + "email": "me@dandean.com" + } + ], + "time": { + "modified": "2011-12-06T17:10:05.705Z", + "created": "2011-12-01T07:43:55.826Z", + "0.0.1": "2011-12-01T16:30:01.585Z", + "0.0.2": "2011-12-01T16:33:19.356Z", + "0.0.3": "2011-12-06T17:10:05.705Z" + }, + "author": { + "name": "Dan Dean", + "email": "@dandean", + "url": "http://dandean.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dandean/imagemagick-identify-parser.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/imagemagick-identify-parser/0.0.1", + "0.0.2": "http://registry.npmjs.org/imagemagick-identify-parser/0.0.2", + "0.0.3": "http://registry.npmjs.org/imagemagick-identify-parser/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "631858bac66af20eded42f2aead3abe01cd19aae", + "tarball": "http://registry.npmjs.org/imagemagick-identify-parser/-/imagemagick-identify-parser-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "3ca809453b56324fec2e78320ddbe7e81bf019d1", + "tarball": "http://registry.npmjs.org/imagemagick-identify-parser/-/imagemagick-identify-parser-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "160fc8b5e9bf96342f0a4b818cf5cf496f5869c8", + "tarball": "http://registry.npmjs.org/imagemagick-identify-parser/-/imagemagick-identify-parser-0.0.3.tgz" + } + }, + "keywords": [ + "imagemagick", + "magick", + "parser", + "verbose" + ], + "url": "http://registry.npmjs.org/imagemagick-identify-parser/" + }, + "imagick": { + "name": "imagick", + "description": "A ImageMagick addon for nodejs.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "fabiomcosta", + "email": "fabiomcosta@gmail.com" + } + ], + "time": { + "modified": "2011-03-27T19:07:10.633Z", + "created": "2011-03-27T19:07:10.001Z", + "0.1.0": "2011-03-27T19:07:10.633Z" + }, + "author": { + "name": "Fábio Miranda Costa" + }, + "repository": { + "type": "git", + "url": "git://github.com/fabiomcosta/node-imagick.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/imagick/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "92e3143008d0da861013aefb604666fdbbf2ba68", + "tarball": "http://registry.npmjs.org/imagick/-/imagick-0.1.0.tgz" + } + }, + "keywords": [ + "image", + "magick", + "imagick", + "imagemagick", + "image-magick" + ], + "url": "http://registry.npmjs.org/imagick/" + }, + "imap": { + "name": "imap", + "description": "An IMAP module for node.js that makes communicating with IMAP servers easy", + "dist-tags": { + "latest": "0.2.7" + }, + "maintainers": [ + { + "name": "mscdex", + "email": "mscdex@mscdex.net" + } + ], + "author": { + "name": "Brian White", + "email": "mscdex@mscdex.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/mscdex/node-imap.git" + }, + "time": { + "modified": "2011-11-13T11:45:39.196Z", + "created": "2011-04-10T04:38:38.986Z", + "0.1.0": "2011-04-10T04:38:38.986Z", + "0.2.1": "2011-04-10T04:38:38.986Z", + "0.2.2": "2011-04-13T20:57:59.541Z", + "0.2.3": "2011-04-24T10:47:12.473Z", + "0.2.4": "2011-09-06T09:45:55.351Z", + "0.2.5": "2011-09-13T16:30:36.286Z", + "0.2.6": "2011-11-13T00:15:10.015Z", + "0.2.7": "2011-11-13T11:45:39.196Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/imap/0.1.0", + "0.2.1": "http://registry.npmjs.org/imap/0.2.1", + "0.2.2": "http://registry.npmjs.org/imap/0.2.2", + "0.2.3": "http://registry.npmjs.org/imap/0.2.3", + "0.2.4": "http://registry.npmjs.org/imap/0.2.4", + "0.2.5": "http://registry.npmjs.org/imap/0.2.5", + "0.2.6": "http://registry.npmjs.org/imap/0.2.6", + "0.2.7": "http://registry.npmjs.org/imap/0.2.7" + }, + "dist": { + "0.1.0": { + "shasum": "5b8ab2bfae8cda338c70de3463eaa85b6da0b76a", + "tarball": "http://registry.npmjs.org/imap/-/imap-0.1.0.tgz" + }, + "0.2.1": { + "shasum": "776aaa67b42738041baea5229967ee432b1c7f4b", + "tarball": "http://registry.npmjs.org/imap/-/imap-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "6cf0bc599fcd3ef86ad77395ffbe9aaeb6ec5008", + "tarball": "http://registry.npmjs.org/imap/-/imap-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "8e5b97c40c717b6200ecf2b8509e644f3e5541be", + "tarball": "http://registry.npmjs.org/imap/-/imap-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "ef63af17007793c497ebe01f2a49e2405eecd518", + "tarball": "http://registry.npmjs.org/imap/-/imap-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "c7695502ea7d8f5c1873d029f2355fb3cf5371a6", + "tarball": "http://registry.npmjs.org/imap/-/imap-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "1423c832aaebe8079f86cbd40a259843610d0599", + "tarball": "http://registry.npmjs.org/imap/-/imap-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "f8d0782b8c69de035718445d40e81c901cb0a071", + "tarball": "http://registry.npmjs.org/imap/-/imap-0.2.7.tgz" + } + }, + "keywords": [ + "imap", + "mail", + "email", + "reader", + "client" + ], + "url": "http://registry.npmjs.org/imap/" + }, + "imbot": { + "name": "imbot", + "description": "An IM Bot for NodeJs, base on bot.im API. Simple to create the AIM, Yahoo, Jabber, and MSN bot.", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "leizongmin", + "email": "leizongmin@gmail.com" + } + ], + "time": { + "modified": "2011-08-08T10:55:41.301Z", + "created": "2011-08-08T06:33:42.715Z", + "0.1.0": "2011-08-08T06:33:45.842Z", + "0.1.1": "2011-08-08T06:37:14.723Z", + "0.1.2": "2011-08-08T06:45:01.459Z", + "0.1.3": "2011-08-08T06:52:11.852Z", + "0.1.4": "2011-08-08T10:55:41.301Z" + }, + "author": { + "name": "leizongmin", + "email": "leizongmin@gmail.com", + "url": "http://lab.ucdok.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:leizongmin/imbot.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/imbot/0.1.0", + "0.1.1": "http://registry.npmjs.org/imbot/0.1.1", + "0.1.2": "http://registry.npmjs.org/imbot/0.1.2", + "0.1.3": "http://registry.npmjs.org/imbot/0.1.3", + "0.1.4": "http://registry.npmjs.org/imbot/0.1.4" + }, + "dist": { + "0.1.0": { + "shasum": "40763afd5c5637d0af97b15d528e49f3a739c88f", + "tarball": "http://registry.npmjs.org/imbot/-/imbot-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "9ce50912117f038ac47432f3dbed5249e1c5ba31", + "tarball": "http://registry.npmjs.org/imbot/-/imbot-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "cb74725aaf6fd24063f2529355c4553eed936889", + "tarball": "http://registry.npmjs.org/imbot/-/imbot-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "0ef63a23dd921333be79e03df937e6ed8e6f71bd", + "tarball": "http://registry.npmjs.org/imbot/-/imbot-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "0977ade9086f1f7f4c4a986ddfa86916571a6235", + "tarball": "http://registry.npmjs.org/imbot/-/imbot-0.1.4.tgz" + } + }, + "url": "http://registry.npmjs.org/imbot/" + }, + "imdb": { + "name": "imdb", + "description": "Loops a dir and returns the IMDB ranking + genre of each movie", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "mendelbenjamin", + "email": "mendel@bind.io" + } + ], + "time": { + "modified": "2011-07-14T22:35:59.441Z", + "created": "2011-07-14T21:31:01.033Z", + "0.0.1": "2011-07-14T21:31:01.778Z", + "0.0.2": "2011-07-14T22:13:36.879Z", + "0.0.3": "2011-07-14T22:35:59.441Z" + }, + "author": { + "name": "Mendel Looije", + "email": "mendel@bind.io" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/imdb/0.0.1", + "0.0.2": "http://registry.npmjs.org/imdb/0.0.2", + "0.0.3": "http://registry.npmjs.org/imdb/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "1e5d9ff71fae08dfd74f589cf9401b0b8da9a2c7", + "tarball": "http://registry.npmjs.org/imdb/-/imdb-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "22847c90b7b4131049ab8a58c69fd97a0a9cdbf3", + "tarball": "http://registry.npmjs.org/imdb/-/imdb-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "0ef09bae7821e7985e5690dee2238780bc3b1da6", + "tarball": "http://registry.npmjs.org/imdb/-/imdb-0.0.3.tgz" + } + }, + "keywords": [ + "imdb" + ], + "url": "http://registry.npmjs.org/imdb/" + }, + "imgur": { + "name": "imgur", + "description": "Simple command-line uploader for imgur.com", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "kai", + "email": "kmallea@gmail.com" + } + ], + "time": { + "modified": "2011-07-15T01:36:15.527Z", + "created": "2011-07-15T01:36:15.340Z", + "0.0.1": "2011-07-15T01:36:15.527Z" + }, + "author": { + "name": "Kai Mallea", + "email": "kmallea@gmail.com", + "url": "http://www.mallea.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/kaimallea/node-imgur.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/imgur/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "35f02e6901c8498b3a7a675d7f212d5c1f4f5499", + "tarball": "http://registry.npmjs.org/imgur/-/imgur-0.0.1.tgz" + } + }, + "keywords": [ + "imgur", + "image", + "images", + "upload", + "uploader" + ], + "url": "http://registry.npmjs.org/imgur/" + }, + "impact": { + "name": "impact", + "description": "nodejs backend for impactjs (http://impactjs.com)", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "cpetzold", + "email": "cpetzold@gmail.com" + } + ], + "time": { + "modified": "2011-10-20T06:32:31.825Z", + "created": "2011-01-22T00:51:55.850Z", + "0.0.2": "2011-01-22T00:51:56.206Z", + "0.0.3": "2011-01-25T21:26:44.238Z", + "0.1.0": "2011-03-22T23:33:17.689Z", + "0.1.1": "2011-10-20T06:32:31.825Z" + }, + "author": { + "name": "Conner Petzold", + "email": "cpetzold@gmail.com" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/impact/0.0.2", + "0.0.3": "http://registry.npmjs.org/impact/0.0.3", + "0.1.0": "http://registry.npmjs.org/impact/0.1.0", + "0.1.1": "http://registry.npmjs.org/impact/0.1.1" + }, + "dist": { + "0.0.2": { + "shasum": "77da6a22387ae975303d8077cdf90991a1baf318", + "tarball": "http://registry.npmjs.org/impact/-/impact-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "5655c448c79b8974f9820272c06d4fed939cecc2", + "tarball": "http://registry.npmjs.org/impact/-/impact-0.0.3.tgz" + }, + "0.1.0": { + "shasum": "1ef8eea01e46a9158e2147ce64c4ac365ec8a671", + "tarball": "http://registry.npmjs.org/impact/-/impact-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "d55bf0219624eb6d5cf091031927ca2a5c4568aa", + "tarball": "http://registry.npmjs.org/impact/-/impact-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/impact/" + }, + "imsi": { + "name": "imsi", + "description": "imsi app test", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "aspes", + "email": "asopes@gmail.com" + } + ], + "time": { + "modified": "2011-07-23T06:50:29.137Z", + "created": "2011-07-23T06:50:25.914Z", + "0.0.1": "2011-07-23T06:50:29.137Z" + }, + "author": { + "name": "Imsi Go", + "email": "imsi@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/imsi/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "2c8589e3d7e10c39956925204d3bde9f708b3d31", + "tarball": "http://registry.npmjs.org/imsi/-/imsi-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/imsi/" + }, + "inca": { + "name": "inca", + "description": "easy mix of mustaches and jsons", + "dist-tags": { + "latest": "0.1.6" + }, + "maintainers": [ + { + "name": "rstenson", + "email": "rob.stenson@gmail.com" + } + ], + "time": { + "modified": "2011-10-31T06:10:53.694Z", + "created": "2011-09-26T06:51:07.234Z", + "0.0.1": "2011-09-26T06:51:07.749Z", + "0.0.2": "2011-10-04T05:27:35.814Z", + "0.0.3": "2011-10-04T15:40:03.125Z", + "0.1.0": "2011-10-08T17:45:49.223Z", + "0.1.1": "2011-10-10T07:07:30.439Z", + "0.1.2": "2011-10-11T19:28:41.806Z", + "0.1.3": "2011-10-17T07:15:13.698Z", + "0.1.4": "2011-10-17T19:58:17.895Z", + "0.1.5": "2011-10-20T15:46:13.261Z", + "0.1.6": "2011-10-31T06:10:53.694Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/inca/0.0.1", + "0.0.2": "http://registry.npmjs.org/inca/0.0.2", + "0.0.3": "http://registry.npmjs.org/inca/0.0.3", + "0.1.0": "http://registry.npmjs.org/inca/0.1.0", + "0.1.1": "http://registry.npmjs.org/inca/0.1.1", + "0.1.2": "http://registry.npmjs.org/inca/0.1.2", + "0.1.3": "http://registry.npmjs.org/inca/0.1.3", + "0.1.4": "http://registry.npmjs.org/inca/0.1.4", + "0.1.5": "http://registry.npmjs.org/inca/0.1.5", + "0.1.6": "http://registry.npmjs.org/inca/0.1.6" + }, + "dist": { + "0.0.1": { + "shasum": "1e622fd60d262c103c15bcad8d54bc1b3d6f2760", + "tarball": "http://registry.npmjs.org/inca/-/inca-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f3471679679a205e7b71476b886ea5fb433c6ba4", + "tarball": "http://registry.npmjs.org/inca/-/inca-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "08827062e9f293cbce91e9a1b3ae3d7b326fcd9f", + "tarball": "http://registry.npmjs.org/inca/-/inca-0.0.3.tgz" + }, + "0.1.0": { + "shasum": "240e5293971dae82e5bc23f2cb386e5bd1050533", + "tarball": "http://registry.npmjs.org/inca/-/inca-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "5b3dbd0db38934f7807344fadce54a7602ab8e8e", + "tarball": "http://registry.npmjs.org/inca/-/inca-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "f45e5d7b6adc6e6dcc9cbd188572e723e8c3ba63", + "tarball": "http://registry.npmjs.org/inca/-/inca-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "5bf16f3a5356a7e000995479c9a2ce469f29ce1a", + "tarball": "http://registry.npmjs.org/inca/-/inca-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "f1ab89a1cf13332e811e7194d79c0bebd2e29e6d", + "tarball": "http://registry.npmjs.org/inca/-/inca-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "9ab3cd5f88d860869d0834b6181ee37ffbd1768a", + "tarball": "http://registry.npmjs.org/inca/-/inca-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "a3c7c7328edc07dd7312114de29538280298f294", + "tarball": "http://registry.npmjs.org/inca/-/inca-0.1.6.tgz" + } + }, + "keywords": [ + "design", + "mustache" + ], + "url": "http://registry.npmjs.org/inca/" + }, + "index": { + "name": "index", + "description": "Append only B+ Tree Index engine for node.js", + "dist-tags": { + "stable": "0.4.0", + "latest": "0.4.0" + }, + "maintainers": [ + { + "name": "fedor.indutny", + "email": "fedor.indutny@gmail.com" + } + ], + "time": { + "modified": "2011-11-07T17:37:57.170Z", + "created": "2011-05-05T17:17:59.830Z", + "0.0.1": "2011-05-05T17:18:01.208Z", + "0.1.0": "2011-06-20T18:08:32.315Z", + "0.2.0": "2011-09-07T16:10:49.032Z", + "0.3.0": "2011-09-25T17:44:46.298Z", + "0.4.0": "2011-11-07T17:37:50.524Z" + }, + "author": { + "name": "Fedor Indutny", + "email": "fedor.indutny@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/index/0.0.1", + "0.1.0": "http://registry.npmjs.org/index/0.1.0", + "0.2.0": "http://registry.npmjs.org/index/0.2.0", + "0.3.0": "http://registry.npmjs.org/index/0.3.0", + "0.4.0": "http://registry.npmjs.org/index/0.4.0" + }, + "dist": { + "0.0.1": { + "shasum": "e8fc8799525eb9239b169c189ae7407717782f43", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.10-linux-2.6.38-8-generic": { + "shasum": "54b23b95f791f8ea5a3fa0eba475e64da45b4d22", + "tarball": "http://registry.npmjs.org/index/-/index-0.0.1-0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.10-linux-2.6.38-8-generic.tgz" + } + }, + "tarball": "http://registry.npmjs.org/index/-/index-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "878fae91772992ea2b497c7710ef7bae0e857ef8", + "tarball": "http://registry.npmjs.org/index/-/index-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "6d3568888dac5ba99290f8a2c491e989f47e56f8", + "tarball": "http://registry.npmjs.org/index/-/index-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "adab23fe9d3483add3ca48f0b03e8d9f4d2a90fd", + "tarball": "http://registry.npmjs.org/index/-/index-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "e9a6b1c8404f2aa8b44f52c6edd4805c70c1cf75", + "tarball": "http://registry.npmjs.org/index/-/index-0.4.0.tgz" + } + }, + "url": "http://registry.npmjs.org/index/" + }, + "Index": { + "name": "Index", + "description": "bakes index files, feeds and tag pages for websites", + "dist-tags": { + "latest": "0.3.2" + }, + "maintainers": [ + { + "name": "pvorb", + "email": "paul@vorb.de" + } + ], + "time": { + "modified": "2011-12-09T17:16:11.887Z", + "created": "2011-08-26T13:32:47.652Z", + "0.0.0": "2011-08-26T13:32:50.320Z", + "0.0.1": "2011-08-27T19:36:40.527Z", + "0.0.2": "2011-08-27T19:59:10.902Z", + "0.1.0": "2011-08-29T16:53:36.399Z", + "0.1.1": "2011-08-29T17:22:13.907Z", + "0.1.2": "2011-09-01T18:03:04.417Z", + "0.1.3": "2011-09-03T03:10:18.267Z", + "0.1.4": "2011-09-03T03:32:46.603Z", + "0.1.5": "2011-09-03T12:03:48.151Z", + "0.1.6": "2011-09-03T14:55:40.270Z", + "0.2.0": "2011-09-03T17:21:11.222Z", + "0.3.0": "2011-09-15T15:09:40.322Z", + "0.3.1": "2011-12-09T17:14:00.322Z", + "0.3.2": "2011-12-09T17:16:11.887Z" + }, + "author": { + "name": "Paul Vorbach", + "email": "paul@vorb.de", + "url": "http://vorb.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/pvorb/node-index.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/Index/0.0.0", + "0.0.1": "http://registry.npmjs.org/Index/0.0.1", + "0.0.2": "http://registry.npmjs.org/Index/0.0.2", + "0.1.0": "http://registry.npmjs.org/Index/0.1.0", + "0.1.1": "http://registry.npmjs.org/Index/0.1.1", + "0.1.2": "http://registry.npmjs.org/Index/0.1.2", + "0.1.3": "http://registry.npmjs.org/Index/0.1.3", + "0.1.4": "http://registry.npmjs.org/Index/0.1.4", + "0.1.5": "http://registry.npmjs.org/Index/0.1.5", + "0.1.6": "http://registry.npmjs.org/Index/0.1.6", + "0.2.0": "http://registry.npmjs.org/Index/0.2.0", + "0.3.0": "http://registry.npmjs.org/Index/0.3.0", + "0.3.1": "http://registry.npmjs.org/Index/0.3.1", + "0.3.2": "http://registry.npmjs.org/Index/0.3.2" + }, + "dist": { + "0.0.0": { + "shasum": "48ccfb4aaf4276dc0b349eacffffc54259ee1779", + "tarball": "http://registry.npmjs.org/Index/-/Index-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "a20ef5f67a785075373b5396ade4e890650c2ce0", + "tarball": "http://registry.npmjs.org/Index/-/Index-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "0051e8ba73d6f8fda9d090db03f8252add89072b", + "tarball": "http://registry.npmjs.org/Index/-/Index-0.0.2.tgz" + }, + "0.1.0": { + "shasum": "0265f9f101961941c85982fbb3258918f7cb3214", + "tarball": "http://registry.npmjs.org/Index/-/Index-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "c6d647db350f03f1e59d701b5efea56fbb493d31", + "tarball": "http://registry.npmjs.org/Index/-/Index-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "6347b48b03b4b96884a4dbad6649f0e81d736ac1", + "tarball": "http://registry.npmjs.org/Index/-/Index-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "fd86b2a63d3e1b13e92ee8aaaf0c74c572a2a831", + "tarball": "http://registry.npmjs.org/Index/-/Index-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "81b3c9d430b53089cf2b9bc53ff0ee37a8db3830", + "tarball": "http://registry.npmjs.org/Index/-/Index-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "6a7b4710769b24d4391d330da6e5e2e35ae514ea", + "tarball": "http://registry.npmjs.org/Index/-/Index-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "06d4143794f530f2bdef4aa1aaa084de65083a7f", + "tarball": "http://registry.npmjs.org/Index/-/Index-0.1.6.tgz" + }, + "0.2.0": { + "shasum": "b527fc676020f68841d0ad198606154daa2247c9", + "tarball": "http://registry.npmjs.org/Index/-/Index-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "ab03d68907fc27155623d15fec59741770c46a1f", + "tarball": "http://registry.npmjs.org/Index/-/Index-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "0cde198b80e9e8178f406a5c102a68481b259690", + "tarball": "http://registry.npmjs.org/Index/-/Index-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "31ba1925dac2e7cd2cfcf95348b7359cc67f5cbe", + "tarball": "http://registry.npmjs.org/Index/-/Index-0.3.2.tgz" + } + }, + "url": "http://registry.npmjs.org/Index/" + }, + "indexer": { + "name": "indexer", + "description": "the indexing module used by fakedb", + "dist-tags": { + "latest": "1.0.2" + }, + "maintainers": [ + { + "name": "noodlehaus", + "email": "jesus.domingo@gmail.com" + } + ], + "time": { + "modified": "2011-11-07T16:22:23.751Z", + "created": "2011-09-02T08:10:39.640Z", + "0.0.1": "2011-09-02T08:10:45.168Z", + "0.0.2": "2011-09-03T15:24:19.904Z", + "0.0.3": "2011-09-17T16:49:52.183Z", + "0.0.4": "2011-09-19T08:30:18.568Z", + "1.0.0": "2011-09-29T14:10:24.082Z", + "1.0.1": "2011-09-30T06:52:39.366Z", + "1.0.2": "2011-11-07T16:22:23.751Z" + }, + "author": { + "name": "Jesus A. Domingo", + "email": "jesus.domingo@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/noodlehaus/node-indexer.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/indexer/0.0.1", + "0.0.2": "http://registry.npmjs.org/indexer/0.0.2", + "0.0.3": "http://registry.npmjs.org/indexer/0.0.3", + "0.0.4": "http://registry.npmjs.org/indexer/0.0.4", + "1.0.0": "http://registry.npmjs.org/indexer/1.0.0", + "1.0.1": "http://registry.npmjs.org/indexer/1.0.1", + "1.0.2": "http://registry.npmjs.org/indexer/1.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "eac2315728c3fcd2223721f4b512676754c29bf5", + "tarball": "http://registry.npmjs.org/indexer/-/indexer-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "132d45ef164cc8f6214f28182049cae9e805a35f", + "tarball": "http://registry.npmjs.org/indexer/-/indexer-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "99c09f7702b9a0626b1a4d832fbee8031ce7e95b", + "tarball": "http://registry.npmjs.org/indexer/-/indexer-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "4700be9a1b232d9bcf0361d1269465a8e87a752a", + "tarball": "http://registry.npmjs.org/indexer/-/indexer-0.0.4.tgz" + }, + "1.0.0": { + "shasum": "03677d758eb51195abf2f4840fc15665ea85bfdd", + "tarball": "http://registry.npmjs.org/indexer/-/indexer-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "9af6a892828f12de500a36e09ed261be8d537048", + "tarball": "http://registry.npmjs.org/indexer/-/indexer-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "5c85417f067768da37557c5b0ca5103ec531b574", + "tarball": "http://registry.npmjs.org/indexer/-/indexer-1.0.2.tgz" + } + }, + "keywords": [ + "index", + "binary", + "search", + "fakedb" + ], + "url": "http://registry.npmjs.org/indexer/" + }, + "inflect": { + "name": "inflect", + "description": "A port of the Rails / ActiveSupport inflector to JavaScript.", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "MSNexploder", + "email": "MSNexploder@gmail.com" + } + ], + "time": { + "modified": "2011-12-04T20:36:24.176Z", + "created": "2011-04-24T18:56:24.304Z", + "0.1.0": "2011-04-24T18:56:24.728Z", + "0.1.1": "2011-07-31T13:59:23.949Z", + "0.1.2": "2011-08-07T20:28:44.495Z", + "0.1.3": "2011-08-11T10:13:57.406Z", + "0.1.4": "2011-11-10T12:02:14.818Z", + "0.1.5": "2011-11-20T21:40:12.911Z", + "0.2.0": "2011-12-04T20:36:24.176Z" + }, + "author": { + "name": "Stefan Huber", + "email": "MSNexploder@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/MSNexploder/inflect.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/inflect/0.1.0", + "0.1.1": "http://registry.npmjs.org/inflect/0.1.1", + "0.1.2": "http://registry.npmjs.org/inflect/0.1.2", + "0.1.3": "http://registry.npmjs.org/inflect/0.1.3", + "0.1.4": "http://registry.npmjs.org/inflect/0.1.4", + "0.1.5": "http://registry.npmjs.org/inflect/0.1.5", + "0.2.0": "http://registry.npmjs.org/inflect/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "4581aa0041530159d82b3214f5aebc1c3af53e1d", + "tarball": "http://registry.npmjs.org/inflect/-/inflect-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "203cc0f432f9ae1aa7148f42535d23b09ff5cf63", + "tarball": "http://registry.npmjs.org/inflect/-/inflect-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "6c6767fc7afccd2059b68d8ee7e068c4b2b410f3", + "tarball": "http://registry.npmjs.org/inflect/-/inflect-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "5880ad6f69880777f8c67af789fe81e5500e611b", + "tarball": "http://registry.npmjs.org/inflect/-/inflect-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "24b2d410d8839320d72c5f3b21f3217a42295606", + "tarball": "http://registry.npmjs.org/inflect/-/inflect-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "6dcc93d1b2003077b459dfa089b7ee9f8a859b15", + "tarball": "http://registry.npmjs.org/inflect/-/inflect-0.1.5.tgz" + }, + "0.2.0": { + "shasum": "616b0e4da9f64255bd9af0344c4ce867947cb01c", + "tarball": "http://registry.npmjs.org/inflect/-/inflect-0.2.0.tgz" + } + }, + "keywords": [ + "inflect", + "activerecord", + "rails", + "activesupport", + "string" + ], + "url": "http://registry.npmjs.org/inflect/" + }, + "inflectjs": { + "name": "inflectjs", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "qard", + "email": "admin@stephenbelanger.com" + } + ], + "time": { + "modified": "2011-07-26T03:48:52.314Z", + "created": "2011-07-26T03:48:51.787Z", + "0.0.1": "2011-07-26T03:48:52.314Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/inflectjs/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "76fbec9377f814484738ccb044e6696d144fd6cf", + "tarball": "http://registry.npmjs.org/inflectjs/-/inflectjs-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/inflectjs/" + }, + "inflector": { + "name": "inflector", + "description": "Inflector for Node.js, ported from Codeigniter PHP Framework", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "sbioko", + "email": "sbioko@gmail.com" + } + ], + "time": { + "modified": "2011-03-22T10:36:21.245Z", + "created": "2011-03-22T10:36:20.792Z", + "0.0.1": "2011-03-22T10:36:21.245Z" + }, + "author": { + "name": "Vadim Demedes", + "email": "sbioko@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/inflector/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "1d36b2f266368238d292d8c7826a4c273556a7c4", + "tarball": "http://registry.npmjs.org/inflector/-/inflector-0.0.1.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/inflector/" + }, + "inherit": { + "name": "inherit", + "description": "Inheritance module for node", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "dfilatov", + "email": "dfilatov@yandex-team.ru" + } + ], + "time": { + "modified": "2011-10-30T09:10:48.902Z", + "created": "2011-10-12T10:29:38.143Z", + "1.0.0": "2011-10-12T10:29:39.843Z" + }, + "author": { + "name": "Dmitry Filatov", + "email": "dfilatov@yandex-team.ru" + }, + "repository": { + "type": "git", + "url": "git://github.com/dfilatov/node-inherit.git" + }, + "users": { + "arikon": true + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/inherit/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "c7ac619a9477232cc801df90498746088443608d", + "tarball": "http://registry.npmjs.org/inherit/-/inherit-1.0.0.tgz" + } + }, + "keywords": [ + "inheritance" + ], + "url": "http://registry.npmjs.org/inherit/" + }, + "inheritance": { + "name": "inheritance", + "description": "Simple functions for extending JavaScript objects", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "aron", + "email": "aron@aroncarroll.com" + } + ], + "time": { + "modified": "2011-08-26T18:31:39.047Z", + "created": "2011-08-26T18:31:38.493Z", + "0.2.1": "2011-08-26T18:31:39.047Z" + }, + "author": { + "name": "Aron Carroll", + "email": "self@aroncarroll.com", + "url": "http://aroncarroll.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/aron/inheritance.js.git" + }, + "versions": { + "0.2.1": "http://registry.npmjs.org/inheritance/0.2.1" + }, + "dist": { + "0.2.1": { + "shasum": "c169d23bf61d814b306cd19e6e2a388fa8c031b6", + "tarball": "http://registry.npmjs.org/inheritance/-/inheritance-0.2.1.tgz" + } + }, + "keywords": [ + "inheritance", + "inherits", + "extend" + ], + "url": "http://registry.npmjs.org/inheritance/" + }, + "inherits": { + "name": "inherits", + "description": "A tiny simple way to do classic inheritance in js", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "time": { + "modified": "2011-04-07T00:35:15.718Z", + "created": "2011-04-07T00:35:14.848Z", + "1.0.0": "2011-04-07T00:35:15.718Z" + }, + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me/" + }, + "repository": { + "type": "git", + "url": "git://github.com/isaacs/inherits.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/inherits/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "38e1975285bf1f7ba9c84da102bb12771322ac48", + "tarball": "http://registry.npmjs.org/inherits/-/inherits-1.0.0.tgz" + } + }, + "keywords": [ + "inheritance", + "class", + "klass", + "oop", + "object-oriented" + ], + "url": "http://registry.npmjs.org/inherits/" + }, + "ini": { + "name": "ini", + "description": "An ini encoder/decoder for node", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "time": { + "modified": "2011-09-13T17:03:01.369Z", + "created": "2011-08-07T07:05:10.072Z", + "1.0.0": "2011-08-07T07:05:12.514Z", + "1.0.1": "2011-09-13T17:03:01.369Z" + }, + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me/" + }, + "repository": { + "type": "git", + "url": "git://github.com/isaacs/ini.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/ini/1.0.0", + "1.0.1": "http://registry.npmjs.org/ini/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "a17171a4fc9149e26c7951e28db44b1ffab40676", + "tarball": "http://registry.npmjs.org/ini/-/ini-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "09de7da168015db47155b981bc18821e7ee4a1f6", + "tarball": "http://registry.npmjs.org/ini/-/ini-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/ini/" + }, + "iniparser": { + "name": "iniparser", + "description": "a simple .ini parser", + "dist-tags": { + "latest": "1.0.4" + }, + "maintainers": [ + { + "name": "shockie", + "email": "jordyvangelder@gmail.com" + } + ], + "author": { + "name": "Jordy van Gelder", + "email": "jordyvangelder@gmail.com" + }, + "time": { + "modified": "2011-09-22T12:22:01.017Z", + "created": "2010-12-28T09:27:25.154Z", + "1.0.0": "2010-12-28T09:27:25.154Z", + "1.0.1": "2010-12-28T09:27:25.154Z", + "1.0.2": "2011-02-17T15:14:07.938Z", + "1.0.3": "2011-03-11T09:09:21.860Z", + "1.0.4": "2011-09-22T12:22:01.017Z" + }, + "repository": { + "type": "git", + "url": "https://github.com/shockie/node-iniparser.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/iniparser/1.0.0", + "1.0.1": "http://registry.npmjs.org/iniparser/1.0.1", + "1.0.2": "http://registry.npmjs.org/iniparser/1.0.2", + "1.0.3": "http://registry.npmjs.org/iniparser/1.0.3", + "1.0.4": "http://registry.npmjs.org/iniparser/1.0.4" + }, + "dist": { + "1.0.0": { + "tarball": "http://packages:5984/iniparser/-/iniparser-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "17c72904975eb309ab5ba6194c62ba29475a3522", + "tarball": "http://registry.npmjs.org/iniparser/-/iniparser-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "898e71cec31f5f44f53bb73abc4c0432462f7dfd", + "tarball": "http://registry.npmjs.org/iniparser/-/iniparser-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "11f080ba93ba89a9306b06c934b3ec577766ff9c", + "tarball": "http://registry.npmjs.org/iniparser/-/iniparser-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "82218ea5d001bdf70e914f96e887052c91b79dfc", + "tarball": "http://registry.npmjs.org/iniparser/-/iniparser-1.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/iniparser/" + }, + "inireader": { + "name": "inireader", + "description": "Module to create, read and/or change ini configuration files", + "dist-tags": { + "latest": "0.2.3" + }, + "maintainers": [ + { + "name": "ajnasz", + "email": "ajnasz@ajnasz.hu" + } + ], + "time": { + "modified": "2011-10-04T19:58:19.177Z", + "created": "2011-05-18T18:31:26.238Z", + "0.1.0": "2011-05-18T18:31:27.016Z", + "0.1.1": "2011-05-18T18:39:41.840Z", + "0.2.0": "2011-05-21T10:07:42.840Z", + "0.2.1": "2011-07-23T10:50:29.358Z", + "0.2.2": "2011-07-28T17:33:45.444Z", + "0.2.3": "2011-10-04T19:58:19.177Z" + }, + "author": { + "name": "Lajos Koszti", + "email": "ajnasz@ajnasz.hu", + "url": "http://ajnasz.hu" + }, + "repository": { + "type": "git", + "url": "git://github.com/Ajnasz/IniReader.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/inireader/0.1.0", + "0.1.1": "http://registry.npmjs.org/inireader/0.1.1", + "0.2.0": "http://registry.npmjs.org/inireader/0.2.0", + "0.2.1": "http://registry.npmjs.org/inireader/0.2.1", + "0.2.2": "http://registry.npmjs.org/inireader/0.2.2", + "0.2.3": "http://registry.npmjs.org/inireader/0.2.3" + }, + "dist": { + "0.1.0": { + "shasum": "2ccd4508488d77f25e750b3ff52a95539a880e6e", + "tarball": "http://registry.npmjs.org/inireader/-/inireader-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "d64c9b50958cdd04acec33e6b833f36a7265a469", + "tarball": "http://registry.npmjs.org/inireader/-/inireader-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "4d3a3ab427dbb6659c7517765289aba0624a9253", + "tarball": "http://registry.npmjs.org/inireader/-/inireader-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "efeafd4661e3cbe0a5716d1cce6cb2890be25309", + "tarball": "http://registry.npmjs.org/inireader/-/inireader-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "fc886f0e6a5bdfb319f6235996ea8fd06c8f4756", + "tarball": "http://registry.npmjs.org/inireader/-/inireader-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "5abe8adcb5e3d1edc4b995ef17a1df3d1f05ec12", + "tarball": "http://registry.npmjs.org/inireader/-/inireader-0.2.3.tgz" + } + }, + "keywords": [ + "ini", + "config", + "configuration", + "parser" + ], + "url": "http://registry.npmjs.org/inireader/" + }, + "init": { + "name": "init", + "description": "Turn your node daemon into an LSB-like init script", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "frodwith", + "email": "frodwith@gmail.com" + } + ], + "time": { + "modified": "2011-10-04T14:26:11.010Z", + "created": "2011-05-05T20:35:04.157Z", + "0.1.0": "2011-05-05T20:35:04.468Z", + "0.1.1": "2011-05-18T18:54:40.817Z", + "0.1.2": "2011-10-04T14:17:56.262Z" + }, + "author": { + "name": "Paul Driver", + "email": "frodwith@gmail.com" + }, + "repository": { + "url": "git://github.com/frodwith/node-init.git", + "type": "git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/init/0.1.0", + "0.1.1": "http://registry.npmjs.org/init/0.1.1", + "0.1.2": "http://registry.npmjs.org/init/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "86b3cda833d3b914d8f871789f1f0304b438deb0", + "tarball": "http://registry.npmjs.org/init/-/init-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "80b7780241c8dc9de6edeb88b1073c3ed7604574", + "tarball": "http://registry.npmjs.org/init/-/init-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "9882ac152707bccba7fe2207c8df8050875c1504", + "tarball": "http://registry.npmjs.org/init/-/init-0.1.2.tgz" + } + }, + "keywords": [ + "daemon", + "init", + "service", + "LSB" + ], + "url": "http://registry.npmjs.org/init/" + }, + "inject": { + "name": "inject", + "description": "Dynamically inject classes into the prototype chain in CoffeeScript", + "dist-tags": { + "latest": "1.0.0beta2" + }, + "maintainers": [ + { + "name": "so8res", + "email": "nate@natesoares.com" + } + ], + "time": { + "modified": "2011-08-29T14:08:31.339Z", + "created": "2011-08-29T12:10:58.768Z", + "1.0.0beta1": "2011-08-29T12:10:59.474Z", + "1.0.0beta2": "2011-08-29T14:08:31.339Z" + }, + "author": { + "name": "Nate Soares", + "email": "nate@natesoares.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Soares/inject.git" + }, + "versions": { + "1.0.0beta1": "http://registry.npmjs.org/inject/1.0.0beta1", + "1.0.0beta2": "http://registry.npmjs.org/inject/1.0.0beta2" + }, + "dist": { + "1.0.0beta1": { + "shasum": "bab0ee246cdb8dfe2d49d7a94391ffaed3d98c4e", + "tarball": "http://registry.npmjs.org/inject/-/inject-1.0.0beta1.tgz" + }, + "1.0.0beta2": { + "shasum": "00f1f5445a4f7c4741f051541fc7fb4873abaff9", + "tarball": "http://registry.npmjs.org/inject/-/inject-1.0.0beta2.tgz" + } + }, + "keywords": [ + "inject", + "inheritance", + "coffeescript" + ], + "url": "http://registry.npmjs.org/inject/" + }, + "inliner": { + "name": "inliner", + "description": "Utility to inline images, CSS and JavaScript for a web page - useful for mobile sites", + "dist-tags": { + "latest": "0.1.11" + }, + "maintainers": [ + { + "name": "remy", + "email": "remy@remysharp.com" + } + ], + "time": { + "modified": "2011-11-29T16:19:23.371Z", + "created": "2011-03-14T12:42:35.923Z", + "0.0.1": "2011-03-14T12:42:36.333Z", + "0.0.2": "2011-03-14T12:44:17.408Z", + "0.0.3": "2011-03-14T12:55:47.394Z", + "0.0.4": "2011-05-16T09:20:11.337Z", + "0.0.5": "2011-05-16T10:59:30.975Z", + "0.0.6": "2011-05-16T11:02:43.175Z", + "0.0.7": "2011-05-19T12:47:48.302Z", + "0.0.8": "2011-05-19T19:24:01.321Z", + "0.0.9": "2011-05-23T19:14:22.735Z", + "0.0.10": "2011-05-24T08:22:13.995Z", + "0.0.11": "2011-05-24T08:45:44.637Z", + "0.0.12": "2011-05-25T13:50:15.260Z", + "0.0.13": "2011-05-25T15:36:13.052Z", + "0.1.0": "2011-05-29T23:49:37.524Z", + "0.1.1": "2011-05-30T12:38:27.313Z", + "0.1.2": "2011-06-11T11:10:22.352Z", + "0.1.3": "2011-06-11T11:50:18.242Z", + "0.1.4": "2011-06-11T11:55:04.313Z", + "0.1.5": "2011-06-11T15:29:17.266Z", + "0.1.6": "2011-06-11T16:16:17.782Z", + "0.1.7": "2011-06-11T16:51:21.544Z", + "0.1.8": "2011-06-22T17:39:45.257Z", + "0.1.9": "2011-11-06T00:35:45.006Z", + "0.1.10": "2011-11-29T16:08:30.744Z", + "0.1.11": "2011-11-29T16:19:23.371Z" + }, + "author": { + "name": "Remy Sharp", + "url": "http://github.com/remy" + }, + "repository": { + "type": "git", + "url": "git://github.com/remy/inliner.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/inliner/0.0.1", + "0.0.2": "http://registry.npmjs.org/inliner/0.0.2", + "0.0.3": "http://registry.npmjs.org/inliner/0.0.3", + "0.0.4": "http://registry.npmjs.org/inliner/0.0.4", + "0.0.5": "http://registry.npmjs.org/inliner/0.0.5", + "0.0.6": "http://registry.npmjs.org/inliner/0.0.6", + "0.0.7": "http://registry.npmjs.org/inliner/0.0.7", + "0.0.8": "http://registry.npmjs.org/inliner/0.0.8", + "0.0.9": "http://registry.npmjs.org/inliner/0.0.9", + "0.0.10": "http://registry.npmjs.org/inliner/0.0.10", + "0.0.11": "http://registry.npmjs.org/inliner/0.0.11", + "0.0.12": "http://registry.npmjs.org/inliner/0.0.12", + "0.0.13": "http://registry.npmjs.org/inliner/0.0.13", + "0.1.0": "http://registry.npmjs.org/inliner/0.1.0", + "0.1.1": "http://registry.npmjs.org/inliner/0.1.1", + "0.1.2": "http://registry.npmjs.org/inliner/0.1.2", + "0.1.3": "http://registry.npmjs.org/inliner/0.1.3", + "0.1.4": "http://registry.npmjs.org/inliner/0.1.4", + "0.1.5": "http://registry.npmjs.org/inliner/0.1.5", + "0.1.6": "http://registry.npmjs.org/inliner/0.1.6", + "0.1.7": "http://registry.npmjs.org/inliner/0.1.7", + "0.1.8": "http://registry.npmjs.org/inliner/0.1.8", + "0.1.9": "http://registry.npmjs.org/inliner/0.1.9", + "0.1.10": "http://registry.npmjs.org/inliner/0.1.10", + "0.1.11": "http://registry.npmjs.org/inliner/0.1.11" + }, + "dist": { + "0.0.1": { + "shasum": "f9c75ee77912949b0122da7606dfc0e40ff14d64", + "tarball": "http://registry.npmjs.org/inliner/-/inliner-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "99d9f0d2eb99e2682a50c077bc5a4c90bc3f9d27", + "tarball": "http://registry.npmjs.org/inliner/-/inliner-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "5a27de2bdf56d955ac153b7b9716443933421c2a", + "tarball": "http://registry.npmjs.org/inliner/-/inliner-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "ade887e072d2ceafe62e2ca7263652f2f42d6cb2", + "tarball": "http://registry.npmjs.org/inliner/-/inliner-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "bcd5a3c10f4bac9e947f360fc7ad785f31c50437", + "tarball": "http://registry.npmjs.org/inliner/-/inliner-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "cc173fa2ed174ec4c8376c3f0e735b5892e80d2a", + "tarball": "http://registry.npmjs.org/inliner/-/inliner-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "5ee888922e6db32c93d3119681e4ec4db32b1b53", + "tarball": "http://registry.npmjs.org/inliner/-/inliner-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "99455498ed0f8e9e61d6f13a5c4751390f5e660f", + "tarball": "http://registry.npmjs.org/inliner/-/inliner-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "e0ceebd7ffb1c4862de1aa54e269c502b70fd82a", + "tarball": "http://registry.npmjs.org/inliner/-/inliner-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "c26c8c2c6f043005d0de0c7352a2f572e64beb77", + "tarball": "http://registry.npmjs.org/inliner/-/inliner-0.0.10.tgz" + }, + "0.0.11": { + "shasum": "284310c3ae413c9691584ff115d985e172fed488", + "tarball": "http://registry.npmjs.org/inliner/-/inliner-0.0.11.tgz" + }, + "0.0.12": { + "shasum": "303113039d1879c1e855bfccbdac09281738a3d2", + "tarball": "http://registry.npmjs.org/inliner/-/inliner-0.0.12.tgz" + }, + "0.0.13": { + "shasum": "c3f8bd146bf63a91eccbc50331ac96ed8c3e82ac", + "tarball": "http://registry.npmjs.org/inliner/-/inliner-0.0.13.tgz" + }, + "0.1.0": { + "shasum": "9f5a702bee673f9d34e1e1f6949b5231b9593e36", + "tarball": "http://registry.npmjs.org/inliner/-/inliner-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "35cc55b0c61e1b9199ba9f60ced6e72335eea6c7", + "tarball": "http://registry.npmjs.org/inliner/-/inliner-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "4036aa3ab549e60f25494680b1b1cf157bbc7570", + "tarball": "http://registry.npmjs.org/inliner/-/inliner-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "91d5397f63c11a780fd2272aec296f17891ea940", + "tarball": "http://registry.npmjs.org/inliner/-/inliner-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "4bc5ae3f657dbf0e975ac23dd8bfab45d1f8c2dc", + "tarball": "http://registry.npmjs.org/inliner/-/inliner-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "2c2a685a4fbf3358aeea88898786e68b3d1c4c04", + "tarball": "http://registry.npmjs.org/inliner/-/inliner-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "75ac2101350d5639b3ff4ab325d90799a6f51760", + "tarball": "http://registry.npmjs.org/inliner/-/inliner-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "b0dc5696f46985859280b8199a764f21b399e815", + "tarball": "http://registry.npmjs.org/inliner/-/inliner-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "92871d00b45b969d2de42b4883c5149222354feb", + "tarball": "http://registry.npmjs.org/inliner/-/inliner-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "49e4422859532ddd2239ef9fbb4af4dcb4a182c4", + "tarball": "http://registry.npmjs.org/inliner/-/inliner-0.1.9.tgz" + }, + "0.1.10": { + "shasum": "8d45e56eaebf4fb45a546249196f606ed9b938d5", + "tarball": "http://registry.npmjs.org/inliner/-/inliner-0.1.10.tgz" + }, + "0.1.11": { + "shasum": "558ed265d12c3821f4023638f6c9e69283adbdcb", + "tarball": "http://registry.npmjs.org/inliner/-/inliner-0.1.11.tgz" + } + }, + "keywords": [ + "mobile", + "inline", + "production", + "build", + "minify" + ], + "url": "http://registry.npmjs.org/inliner/" + }, + "inode": { + "name": "inode", + "description": "inode is a better interactive shell", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "poelzi", + "email": "git@poelzi.org" + } + ], + "time": { + "modified": "2011-11-15T02:22:18.407Z", + "created": "2011-09-18T04:34:52.093Z", + "0.0.1": "2011-09-18T04:34:53.634Z", + "0.0.2": "2011-09-20T16:28:33.592Z", + "0.0.3": "2011-09-21T09:29:53.891Z", + "0.0.4": "2011-11-15T02:22:18.407Z" + }, + "author": { + "name": "poelzi", + "url": "http://poelzi.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/poelzi/node-inode.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/inode/0.0.1", + "0.0.2": "http://registry.npmjs.org/inode/0.0.2", + "0.0.3": "http://registry.npmjs.org/inode/0.0.3", + "0.0.4": "http://registry.npmjs.org/inode/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "3a0403fd02b5a82f8287da621aa4036e1d9b6a5f", + "tarball": "http://registry.npmjs.org/inode/-/inode-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "a7fe8ef21b2fd12c24fd34152c03127654d78457", + "tarball": "http://registry.npmjs.org/inode/-/inode-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "326d0748d128122fff683a0ba132336b72935455", + "tarball": "http://registry.npmjs.org/inode/-/inode-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "f9ce53188a3b90a3a6001eef300333642a027b8c", + "tarball": "http://registry.npmjs.org/inode/-/inode-0.0.4.tgz" + } + }, + "keywords": [ + "cache", + "async", + "redis" + ], + "url": "http://registry.npmjs.org/inode/" + }, + "inotify": { + "name": "inotify", + "description": "inotify bindings for v8 javascript engine", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "camilo", + "email": "camilo@cloudescape.com" + } + ], + "author": { + "name": "Camilo Aguilar", + "email": "camilo@cloudescape.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/c4milo/node-inotify.git" + }, + "time": { + "modified": "2011-11-15T04:30:02.804Z", + "created": "2011-09-17T18:06:32.043Z", + "0.1.2": "2011-09-17T18:06:32.043Z", + "0.1.3": "2011-09-17T18:06:32.043Z", + "0.1.4": "2011-09-17T18:06:32.043Z", + "0.1.5": "2011-09-17T18:06:32.043Z", + "0.1.6": "2011-09-17T18:06:32.043Z", + "0.1.7": "2011-09-17T18:06:32.043Z", + "0.1.8": "2011-09-20T01:09:02.597Z", + "0.2.0": "2011-11-09T04:36:32.903Z", + "0.2.1": "2011-11-09T04:51:36.710Z", + "0.2.2": "2011-11-15T04:30:02.804Z" + }, + "versions": { + "0.1.2": "http://registry.npmjs.org/inotify/0.1.2", + "0.1.3": "http://registry.npmjs.org/inotify/0.1.3", + "0.1.4": "http://registry.npmjs.org/inotify/0.1.4", + "0.1.5": "http://registry.npmjs.org/inotify/0.1.5", + "0.1.6": "http://registry.npmjs.org/inotify/0.1.6", + "0.1.7": "http://registry.npmjs.org/inotify/0.1.7", + "0.1.8": "http://registry.npmjs.org/inotify/0.1.8", + "0.2.0": "http://registry.npmjs.org/inotify/0.2.0", + "0.2.1": "http://registry.npmjs.org/inotify/0.2.1", + "0.2.2": "http://registry.npmjs.org/inotify/0.2.2" + }, + "dist": { + "0.1.2": { + "tarball": "http://packages:5984/inotify/-/inotify-0.1.2.tgz" + }, + "0.1.3": { + "tarball": "http://packages:5984/inotify/-/inotify-0.1.3.tgz" + }, + "0.1.4": { + "tarball": "http://packages:5984/inotify/-/inotify-0.1.4.tgz" + }, + "0.1.5": { + "tarball": "http://packages:5984/inotify/-/inotify-0.1.5.tgz" + }, + "0.1.6": { + "tarball": "http://packages:5984/inotify/-/inotify-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "0e5e90052dbf958799805ab22ce63111d8277abe", + "tarball": "http://registry.npmjs.org/inotify/-/inotify-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "1620f7cee34c6d6f25de6dcee51af3103fc29558", + "tarball": "http://registry.npmjs.org/inotify/-/inotify-0.1.8.tgz" + }, + "0.2.0": { + "shasum": "9909753e201b102fa2c746c31a811c34dc12a73c", + "tarball": "http://registry.npmjs.org/inotify/-/inotify-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "99df0b30e4d62386c57feb67bb8a20f9cb0a4da9", + "tarball": "http://registry.npmjs.org/inotify/-/inotify-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "3933f9c4c61d495d59586164942aec3d02e89c2c", + "tarball": "http://registry.npmjs.org/inotify/-/inotify-0.2.2.tgz" + } + }, + "keywords": [ + "inotify", + "watch", + "monitor", + "watch files", + "watch directories" + ], + "url": "http://registry.npmjs.org/inotify/" + }, + "inotify-plusplus": { + "name": "inotify-plusplus", + "description": "A wrapper around node-inotify that is more like JavaScript, less like C, and easier for beginners", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com" + }, + "time": { + "modified": "2011-08-26T18:39:17.780Z", + "created": "2011-08-26T18:39:17.780Z", + "0.9.0": "2011-08-26T18:39:17.780Z", + "1.0.0": "2011-08-26T18:39:17.780Z", + "1.0.1": "2011-08-26T18:39:17.780Z" + }, + "versions": { + "0.9.0": "http://registry.npmjs.org/inotify-plusplus/0.9.0", + "1.0.0": "http://registry.npmjs.org/inotify-plusplus/1.0.0", + "1.0.1": "http://registry.npmjs.org/inotify-plusplus/1.0.1" + }, + "dist": { + "0.9.0": { + "tarball": "http://packages:5984/inotify-plusplus/-/inotify-plusplus-0.9.0.tgz" + }, + "1.0.0": { + "tarball": "http://packages:5984/inotify-plusplus/-/inotify-plusplus-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "1b120c917d986d54da46ec6bd2dc557baad54171", + "tarball": "http://registry.npmjs.org/inotify-plusplus/-/inotify-plusplus-1.0.1.tgz" + } + }, + "keywords": [ + "util", + "inotify" + ], + "url": "http://registry.npmjs.org/inotify-plusplus/" + }, + "insanehash": { + "name": "insanehash", + "description": "Use the lastest SHA3 cryptographic hash algorithm from NIST Hash Competition based on Chris Drost implementation @ https://github.com/drostie/sha3-js", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "codewarrioraq", + "email": "codewarrioraq@gmail.com" + } + ], + "time": { + "modified": "2011-10-07T22:09:29.501Z", + "created": "2011-10-07T22:09:27.416Z", + "0.0.1": "2011-10-07T22:09:29.502Z" + }, + "author": { + "name": "codewarrior", + "email": "codewarrioraq@gmail.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:CodeWarriorAQ/insanehash.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/insanehash/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "34bc75cdc8f1da4071b3dc1fe68b82c35271cfbd", + "tarball": "http://registry.npmjs.org/insanehash/-/insanehash-0.0.1.tgz" + } + }, + "keywords": [ + "hash", + "cryptography", + "NIST", + "SHA3" + ], + "url": "http://registry.npmjs.org/insanehash/" + }, + "inspect": { + "name": "inspect", + "description": "Object method inspector", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "time": { + "modified": "2011-02-02T17:53:54.718Z", + "created": "2011-01-27T21:24:51.572Z", + "0.0.1": "2011-01-27T21:24:51.923Z", + "0.0.2": "2011-02-02T17:53:54.718Z" + }, + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/inspect/0.0.1", + "0.0.2": "http://registry.npmjs.org/inspect/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "63c137a6a4f61d17e216c6bf1e5962b0f1dca48b", + "tarball": "http://registry.npmjs.org/inspect/-/inspect-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f073838b546f9c0b96a3a7744f247f887c226f8b", + "tarball": "http://registry.npmjs.org/inspect/-/inspect-0.0.2.tgz" + } + }, + "keywords": [ + "console", + "inspect" + ], + "url": "http://registry.npmjs.org/inspect/" + }, + "instagram": { + "name": "instagram", + "description": "Instagram API wrapper for node.", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "swizec", + "email": "swizec@swizec.com" + } + ], + "time": { + "modified": "2011-03-08T16:31:31.597Z", + "created": "2011-03-06T17:38:55.579Z", + "0.0.2": "2011-03-06T17:38:55.985Z", + "0.0.4": "2011-03-08T16:31:31.597Z" + }, + "author": { + "name": "Swizec", + "email": "swizec@swizec.com", + "url": "http://swizec.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Swizec/nodestagram.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/instagram/0.0.2", + "0.0.4": "http://registry.npmjs.org/instagram/0.0.4" + }, + "dist": { + "0.0.2": { + "shasum": "801ee9997ac85eb9149795ceb1d01b18b0b8c280", + "tarball": "http://registry.npmjs.org/instagram/-/instagram-0.0.2.tgz" + }, + "0.0.4": { + "shasum": "ed49e921279330267cb1d98ff1bd59187af8791b", + "tarball": "http://registry.npmjs.org/instagram/-/instagram-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/instagram/" + }, + "instagram-node-lib": { + "name": "instagram-node-lib", + "description": "This package is a wrapper for the Instagram API.", + "dist-tags": { + "latest": "0.0.7" + }, + "maintainers": [ + { + "name": "mckelvey", + "email": "david@mckelveycreative.com" + } + ], + "time": { + "modified": "2011-06-23T20:55:35.684Z", + "created": "2011-04-11T03:50:13.179Z", + "0.0.1": "2011-04-11T03:50:13.373Z", + "0.0.2": "2011-04-11T03:59:18.396Z", + "0.0.3": "2011-04-16T06:48:04.426Z", + "0.0.4": "2011-05-04T03:33:27.301Z", + "0.0.5": "2011-05-22T00:23:38.807Z", + "0.0.7": "2011-06-23T20:55:35.684Z" + }, + "author": { + "name": "David W. McKelvey", + "email": "david@mckelveycreative.com", + "url": "http://david.mckelveycreative.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/mckelvey/instagram-node-lib.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/instagram-node-lib/0.0.1", + "0.0.2": "http://registry.npmjs.org/instagram-node-lib/0.0.2", + "0.0.3": "http://registry.npmjs.org/instagram-node-lib/0.0.3", + "0.0.4": "http://registry.npmjs.org/instagram-node-lib/0.0.4", + "0.0.5": "http://registry.npmjs.org/instagram-node-lib/0.0.5", + "0.0.7": "http://registry.npmjs.org/instagram-node-lib/0.0.7" + }, + "dist": { + "0.0.1": { + "shasum": "f1bcfa06d78ae9ad9e317af5e0c858a225bc24c0", + "tarball": "http://registry.npmjs.org/instagram-node-lib/-/instagram-node-lib-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "5e773b78aa08b5e3965d082796b647de254bcfe3", + "tarball": "http://registry.npmjs.org/instagram-node-lib/-/instagram-node-lib-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "feff36c843bc17d697c97f7fbcb9c983361d1f5c", + "tarball": "http://registry.npmjs.org/instagram-node-lib/-/instagram-node-lib-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "9f06960310d2684e5b6af00309137a00b11ce0a9", + "tarball": "http://registry.npmjs.org/instagram-node-lib/-/instagram-node-lib-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "d2478f464fbce1e5ff69787d2e22ad14f9f47200", + "tarball": "http://registry.npmjs.org/instagram-node-lib/-/instagram-node-lib-0.0.5.tgz" + }, + "0.0.7": { + "shasum": "f4b016ed1570c235b5a1562e0b6d3ff733e0821a", + "tarball": "http://registry.npmjs.org/instagram-node-lib/-/instagram-node-lib-0.0.7.tgz" + } + }, + "keywords": [ + "instagram", + "api", + "lib" + ], + "url": "http://registry.npmjs.org/instagram-node-lib/" + }, + "instant-styleguide": { + "name": "instant-styleguide", + "description": "Instantly present CSS stylesheets as HTML styleguides.", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "aglemann", + "email": "aeron.glemann@gmail.com" + } + ], + "time": { + "modified": "2011-10-27T20:25:12.749Z", + "created": "2011-09-05T14:38:54.229Z", + "0.0.1": "2011-09-05T14:38:55.239Z", + "0.0.2": "2011-09-05T14:41:56.782Z", + "0.0.3": "2011-09-05T15:13:05.168Z", + "0.0.4": "2011-09-06T00:33:32.044Z", + "0.0.5": "2011-10-27T20:25:12.749Z" + }, + "author": { + "name": "Aeron Glemann", + "email": "aeron.glemann@gmail.com", + "url": "http://www.electricprism.com/aeron" + }, + "repository": { + "type": "git", + "url": "git://github.com/aglemann/instant-styleguide.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/instant-styleguide/0.0.1", + "0.0.2": "http://registry.npmjs.org/instant-styleguide/0.0.2", + "0.0.3": "http://registry.npmjs.org/instant-styleguide/0.0.3", + "0.0.4": "http://registry.npmjs.org/instant-styleguide/0.0.4", + "0.0.5": "http://registry.npmjs.org/instant-styleguide/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "1f305ce73cf5a4eb3231dd5e7ad0d224958be9c0", + "tarball": "http://registry.npmjs.org/instant-styleguide/-/instant-styleguide-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "d2c8be0338dbcfbdbeeee6eb845434a7a4ee8ee2", + "tarball": "http://registry.npmjs.org/instant-styleguide/-/instant-styleguide-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "091c4818eddbaea635bedd8ee7985d7578901728", + "tarball": "http://registry.npmjs.org/instant-styleguide/-/instant-styleguide-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "3d5e338db82e560759e62447b9f9dbe66ad40655", + "tarball": "http://registry.npmjs.org/instant-styleguide/-/instant-styleguide-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "58e6d653347ed8e65b82f054cd2281f7f93a2f00", + "tarball": "http://registry.npmjs.org/instant-styleguide/-/instant-styleguide-0.0.5.tgz" + } + }, + "keywords": [ + "css", + "stylesheet", + "css2html", + "styleguide", + "instaguide", + "instant styleguide" + ], + "url": "http://registry.npmjs.org/instant-styleguide/" + }, + "instrumented-proxy": { + "name": "instrumented-proxy", + "description": "The HTTP proxy with a bunch of logging added to it.", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "jesusabdullah", + "email": "josh.holbrook@gmail.com" + } + ], + "time": { + "modified": "2011-09-28T23:40:49.988Z", + "created": "2011-09-28T22:37:42.835Z", + "0.0.0": "2011-09-28T22:37:43.360Z", + "0.0.1": "2011-09-28T22:41:23.965Z", + "0.0.2": "2011-09-28T23:39:43.940Z", + "0.0.3": "2011-09-28T23:40:49.988Z" + }, + "author": { + "name": "Joshua Holbrook", + "email": "josh@nodejitsu.com" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/instrumented-proxy/0.0.0", + "0.0.1": "http://registry.npmjs.org/instrumented-proxy/0.0.1", + "0.0.2": "http://registry.npmjs.org/instrumented-proxy/0.0.2", + "0.0.3": "http://registry.npmjs.org/instrumented-proxy/0.0.3" + }, + "dist": { + "0.0.0": { + "shasum": "1e65a2af14908260d96639f163fa6618fb8e2d18", + "tarball": "http://registry.npmjs.org/instrumented-proxy/-/instrumented-proxy-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "4c212efe91775c62b6b5dca0b9c73d68e7cfdae3", + "tarball": "http://registry.npmjs.org/instrumented-proxy/-/instrumented-proxy-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "95c8f7391826b45c970c80bce36e53dda4d39cb3", + "tarball": "http://registry.npmjs.org/instrumented-proxy/-/instrumented-proxy-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "973e933e3773214a8608bebf799b748c7eee2657", + "tarball": "http://registry.npmjs.org/instrumented-proxy/-/instrumented-proxy-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/instrumented-proxy/" + }, + "intercept": { + "name": "intercept", + "description": "Intercepts ServerResponse methods so you can apply filters", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "beatgammit", + "email": "t.jameson.little@gmail.com" + } + ], + "time": { + "modified": "2011-05-21T20:32:09.334Z", + "created": "2011-03-22T05:15:32.769Z", + "0.1.0": "2011-03-22T05:15:33.325Z", + "0.2.0": "2011-03-22T16:29:19.287Z", + "0.2.1": "2011-03-22T19:32:14.690Z", + "0.3.0": "2011-05-21T20:32:09.334Z" + }, + "author": { + "name": "T. Jameson Little", + "email": "t.jameson.little@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/beatgammit/node-intercept.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/intercept/0.1.0", + "0.2.0": "http://registry.npmjs.org/intercept/0.2.0", + "0.2.1": "http://registry.npmjs.org/intercept/0.2.1", + "0.3.0": "http://registry.npmjs.org/intercept/0.3.0" + }, + "dist": { + "0.1.0": { + "shasum": "92e43d2bde6a9fb39488460fd1a4d88c9b7d63bd", + "tarball": "http://registry.npmjs.org/intercept/-/intercept-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "c0b29fb89e5a786b9bcb9d0019ef4cad6cefae29", + "tarball": "http://registry.npmjs.org/intercept/-/intercept-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "d9cb79dc6ebbbe8a3fbf1dc3e3c78075b488714b", + "tarball": "http://registry.npmjs.org/intercept/-/intercept-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "14376163768389cf4b2b65bd9e5374c07b03c2ce", + "tarball": "http://registry.npmjs.org/intercept/-/intercept-0.3.0.tgz" + } + }, + "keywords": [ + "response", + "filter", + "server", + "connect" + ], + "url": "http://registry.npmjs.org/intercept/" + }, + "intercom": { + "name": "intercom", + "description": "dnode-protocol and EventEmitter2 based event intercom using lookalike child_process.fork() function. Including child process lifecycle functions based on Forever.", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "stolsma", + "email": "npm@tolsma.net" + } + ], + "time": { + "modified": "2011-12-13T22:07:18.778Z", + "created": "2011-10-05T18:18:38.011Z", + "0.1.1": "2011-10-05T18:18:39.642Z", + "0.1.2": "2011-10-14T08:07:12.965Z", + "0.1.3": "2011-10-15T18:46:59.745Z", + "0.2.0": "2011-10-16T08:14:50.620Z", + "0.2.1": "2011-10-16T08:34:58.290Z", + "0.2.3": "2011-10-17T20:19:34.852Z", + "0.2.4": "2011-10-27T06:27:44.392Z", + "0.3.0": "2011-12-13T22:07:18.778Z" + }, + "author": { + "name": "Sander Tolsma", + "email": "sander at tolsma.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/stolsma/intercom.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/intercom/0.1.1", + "0.1.2": "http://registry.npmjs.org/intercom/0.1.2", + "0.1.3": "http://registry.npmjs.org/intercom/0.1.3", + "0.2.0": "http://registry.npmjs.org/intercom/0.2.0", + "0.2.1": "http://registry.npmjs.org/intercom/0.2.1", + "0.2.3": "http://registry.npmjs.org/intercom/0.2.3", + "0.2.4": "http://registry.npmjs.org/intercom/0.2.4", + "0.3.0": "http://registry.npmjs.org/intercom/0.3.0" + }, + "dist": { + "0.1.1": { + "shasum": "e95db37db2370d60b7c5bc7ac2959a1edce44be8", + "tarball": "http://registry.npmjs.org/intercom/-/intercom-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "5b1815ccf87fc549308a0f9702f97e348937399f", + "tarball": "http://registry.npmjs.org/intercom/-/intercom-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "491d3c31253cc1ea14ba60cb152d6cad9cf5ba2f", + "tarball": "http://registry.npmjs.org/intercom/-/intercom-0.1.3.tgz" + }, + "0.2.0": { + "shasum": "37c010f8ca8f9d165f436b773be718d6b7c638e9", + "tarball": "http://registry.npmjs.org/intercom/-/intercom-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "b66861dc101128127c053ac370814837566965ab", + "tarball": "http://registry.npmjs.org/intercom/-/intercom-0.2.1.tgz" + }, + "0.2.3": { + "shasum": "b8e53877934274cdd4cecabcd2a98c154ba729c5", + "tarball": "http://registry.npmjs.org/intercom/-/intercom-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "bde5b2707a755b69fb1229f6619126772dfc6a7a", + "tarball": "http://registry.npmjs.org/intercom/-/intercom-0.2.4.tgz" + }, + "0.3.0": { + "shasum": "60b9af1f01ea61d1f682722196c385290d103bc7", + "tarball": "http://registry.npmjs.org/intercom/-/intercom-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/intercom/" + }, + "interface": { + "name": "interface", + "description": "System for development. Middleware for libraries and applications.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "bradleymeck", + "email": "bradley.meck@gmail.com" + } + ], + "author": { + "name": "Bradley Meck", + "email": "bradley.meck@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/interface/0.0.1", + "0.1.0": "http://registry.npmjs.org/interface/0.1.0", + "0.1.1": "http://registry.npmjs.org/interface/0.1.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/interface/-/interface-0.0.1.tgz" + }, + "0.1.0": { + "tarball": "http://packages:5984/interface/-/interface-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://packages:5984/interface/-/interface-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/interface/" + }, + "interleave": { + "name": "interleave", + "description": "Clientside JS build tool", + "dist-tags": { + "latest": "0.0.11" + }, + "maintainers": [ + { + "name": "damonoehlman", + "email": "damon.oehlman@sidelab.com" + } + ], + "time": { + "modified": "2011-11-08T04:47:36.337Z", + "created": "2011-09-01T05:46:19.102Z", + "0.0.1": "2011-09-01T05:46:20.720Z", + "0.0.2": "2011-09-01T11:30:54.869Z", + "0.0.3": "2011-09-02T01:35:06.235Z", + "0.0.4": "2011-09-02T10:07:35.886Z", + "0.0.5": "2011-09-02T12:08:34.751Z", + "0.0.6": "2011-09-12T11:39:14.928Z", + "0.0.7": "2011-10-20T00:44:32.067Z", + "0.0.8": "2011-10-20T01:13:22.338Z", + "0.0.9": "2011-10-26T06:08:19.123Z", + "0.0.10": "2011-11-08T04:09:51.919Z", + "0.0.11": "2011-11-08T04:45:07.909Z" + }, + "author": { + "name": "Damon Oehlman", + "email": "damon.oehlman@sidelab.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/DamonOehlman/interleave.git" + }, + "versions": { + "0.0.11": "http://registry.npmjs.org/interleave/0.0.11" + }, + "dist": { + "0.0.11": { + "shasum": "761ca168c2cd0451ceabfd200165bab3df324507", + "tarball": "http://registry.npmjs.org/interleave/-/interleave-0.0.11.tgz" + } + }, + "url": "http://registry.npmjs.org/interleave/" + }, + "interstate": { + "name": "interstate", + "description": "A simple node.js wrapper for the v2 Interstate API", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "simon", + "email": "simon@bakedcode.com" + } + ], + "time": { + "modified": "2011-09-02T22:17:09.568Z", + "created": "2011-09-02T22:17:07.692Z", + "0.0.1": "2011-09-02T22:17:09.568Z" + }, + "author": { + "name": "Simon Fletcher", + "email": "simon@interstateapp.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Interstate/node-interstate.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/interstate/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "2262a9e345169d7e35ccfbc01600a57a36598ead", + "tarball": "http://registry.npmjs.org/interstate/-/interstate-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/interstate/" + }, + "intervals": { + "name": "intervals", + "description": "Command line util for myintervals.com API", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "francois", + "email": "francois@2metz.fr" + } + ], + "time": { + "modified": "2011-06-26T20:45:51.308Z", + "created": "2011-04-01T20:30:51.183Z", + "0.0.4": "2011-04-01T20:30:51.629Z", + "0.0.5": "2011-04-13T20:45:12.576Z", + "0.0.6": "2011-04-19T16:35:59.994Z", + "0.0.7": "2011-05-01T18:28:57.524Z", + "0.0.8": "2011-05-02T17:42:46.740Z", + "0.0.9": "2011-05-02T22:18:58.765Z", + "0.0.10": "2011-05-03T17:12:31.890Z", + "0.1.0": "2011-06-17T17:57:54.290Z", + "0.1.1": "2011-06-19T16:30:47.265Z", + "0.2.0": "2011-06-26T20:45:51.308Z" + }, + "author": { + "name": "François de Metz", + "email": "francois@2metz.fr" + }, + "repository": { + "type": "git", + "url": "git://github.com/francois2metz/node-intervals.git" + }, + "versions": { + "0.0.4": "http://registry.npmjs.org/intervals/0.0.4", + "0.0.5": "http://registry.npmjs.org/intervals/0.0.5", + "0.0.6": "http://registry.npmjs.org/intervals/0.0.6", + "0.0.7": "http://registry.npmjs.org/intervals/0.0.7", + "0.0.8": "http://registry.npmjs.org/intervals/0.0.8", + "0.0.9": "http://registry.npmjs.org/intervals/0.0.9", + "0.0.10": "http://registry.npmjs.org/intervals/0.0.10", + "0.1.0": "http://registry.npmjs.org/intervals/0.1.0", + "0.1.1": "http://registry.npmjs.org/intervals/0.1.1", + "0.2.0": "http://registry.npmjs.org/intervals/0.2.0" + }, + "dist": { + "0.0.4": { + "tarball": "http://registry.npmjs.org/intervals/-/intervals-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "845e272cdfbd923732b3dbdca4705147b2b69c2b", + "tarball": "http://registry.npmjs.org/intervals/-/intervals-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "38f5cf4916437c2cb4ab8a66884ef570e3e3a35a", + "tarball": "http://registry.npmjs.org/intervals/-/intervals-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "b9e2f4e85de2aaf04166a82547c7708d19547065", + "tarball": "http://registry.npmjs.org/intervals/-/intervals-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "cb9be6f965c814a293b969a71e0bf0a47ce37ea1", + "tarball": "http://registry.npmjs.org/intervals/-/intervals-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "54e40f2d456d00b4f7e12e23d357aa847ad557f1", + "tarball": "http://registry.npmjs.org/intervals/-/intervals-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "9b76327ec77094037502bac7f3f4634c343d34c8", + "tarball": "http://registry.npmjs.org/intervals/-/intervals-0.0.10.tgz" + }, + "0.1.0": { + "shasum": "f770ffaa75026971db9f192043a945270c101fbc", + "tarball": "http://registry.npmjs.org/intervals/-/intervals-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "75b73eed6eebe7cef810e26311288a26fd7075bc", + "tarball": "http://registry.npmjs.org/intervals/-/intervals-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "028b2ec8d56b8352a3cbb05f8cf2b4aa37c703ad", + "tarball": "http://registry.npmjs.org/intervals/-/intervals-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/intervals/" + }, + "intestine": { + "name": "intestine", + "description": "roll your own test frameworks", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-07-26T09:07:33.617Z", + "created": "2011-07-26T09:07:32.890Z", + "0.0.0": "2011-07-26T09:07:33.617Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-intestine.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/intestine/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "1321b0c0de8bddb923b066559449c415e0eb879d", + "tarball": "http://registry.npmjs.org/intestine/-/intestine-0.0.0.tgz" + } + }, + "keywords": [ + "test", + "framework", + "guts" + ], + "url": "http://registry.npmjs.org/intestine/" + }, + "introspect": { + "name": "introspect", + "description": "A fast and powerful Function introspection", + "dist-tags": { + "latest": "0.0.2" + }, + "readme": "# node-introspect ![project status](http://dl.dropbox.com/u/2208502/maintained.png)\n\nA fast and powerful Function introspection. This is such a kind of experiment, any thought on this is welcomed.\n\n## Engine\n\n- nodejs v0.4.12+ (tested with v0.6.x)\n\n## Installation with npm\n\n $ npm install introspect\n\n## Syntax\n\n```javascript\nintrospect(fn);\n```\n\n##Parameters\n\n1. `fn` _(Function)_: a function to be introspected\n\n##Notes\n\nIntrospect returns an array of all the function parameters names\n\n##Example\n\n```javascript\nvar introspect = require('introspect');\n\nfunction fn (foo, bar, callback) {\n // function body\n}\n\nvar arguments = introspect(fn);\nconsole.log(arguments);\n```\n\n## Benchmark\n\nBenchmark results are pretty good.\n\n npm run-script benchmark\n\n![profile](http://f.cl.ly/items/2L2G183k1Z071C3a3E3x/introspect_v0.0.1.png)\n\n## Test\n\nTests depends on http://vowsjs.org/ then\n\n npm install -g vows\n npm install\n npm test\n\n![tests](http://f.cl.ly/items/2G2V0M3A1C423q1v1E3V/introspect_v0.0.1.png)\n\n## License\n\n_This software is released under the MIT license cited below_.\n\n Copyright (c) 2010 Kilian Ciuffolo, me@nailik.org. All Rights Reserved.\n\n Permission is hereby granted, free of charge, to any person\n obtaining a copy of this software and associated documentation\n files (the 'Software'), to deal in the Software without\n restriction, including without limitation the rights to use,\n copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the\n Software is furnished to do so, subject to the following\n conditions:\n \n The above copyright notice and this permission notice shall be\n included in all copies or substantial portions of the Software.\n \n THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\n EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES\n OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\n HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\n WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\n OTHER DEALINGS IN THE SOFTWARE.", + "maintainers": [ + { + "name": "kilianc", + "email": "kilian.ciuffolo@gmail.com" + } + ], + "time": { + "modified": "2011-11-23T11:56:04.025Z", + "created": "2011-11-20T13:50:12.347Z", + "0.0.1": "2011-11-20T13:50:15.426Z", + "0.0.2": "2011-11-23T11:56:04.025Z" + }, + "author": { + "name": "Kilian Ciuffolo", + "email": "me@nailik.org", + "url": "http://nailik.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/kilianc/node-introspect.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/introspect/0.0.1", + "0.0.2": "http://registry.npmjs.org/introspect/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "2b34059e92bfbc8109d9566b462cb397362f300b", + "tarball": "http://registry.npmjs.org/introspect/-/introspect-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "604004ea223a9c9cafd32cd3d680db6ac04a9e2e", + "tarball": "http://registry.npmjs.org/introspect/-/introspect-0.0.2.tgz" + } + }, + "keywords": [ + "reflection", + "introspection", + "arguments", + "args" + ], + "url": "http://registry.npmjs.org/introspect/" + }, + "io": { + "name": "io", + "description": "", + "dist-tags": { + "latest": "0.1.6" + }, + "maintainers": [ + { + "name": "cohara87", + "email": "cohara87@gmail.com" + } + ], + "time": { + "modified": "2011-10-11T11:03:38.791Z", + "created": "2011-10-09T03:51:50.282Z", + "0.1.0": "2011-10-09T03:51:53.935Z", + "0.1.1": "2011-10-09T05:53:08.834Z", + "0.1.2": "2011-10-09T06:16:58.140Z", + "0.1.3": "2011-10-09T07:05:35.149Z", + "0.1.5": "2011-10-10T10:26:44.929Z", + "0.1.6": "2011-10-11T11:03:38.791Z" + }, + "author": { + "name": "Chris O'Hara", + "email": "cohara87@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/chriso/io.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/io/0.1.0", + "0.1.1": "http://registry.npmjs.org/io/0.1.1", + "0.1.2": "http://registry.npmjs.org/io/0.1.2", + "0.1.3": "http://registry.npmjs.org/io/0.1.3", + "0.1.5": "http://registry.npmjs.org/io/0.1.5", + "0.1.6": "http://registry.npmjs.org/io/0.1.6" + }, + "dist": { + "0.1.0": { + "shasum": "9b61dd4a65429fd96f15242bcae7df7d1010cb77", + "tarball": "http://registry.npmjs.org/io/-/io-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "ba70be76f11334e2fc6cfc89dba943a4aa443e2d", + "tarball": "http://registry.npmjs.org/io/-/io-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "8c0c1d27bdd5f6605dbc01d6a4b520ce7a323590", + "tarball": "http://registry.npmjs.org/io/-/io-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "e01e1e772324fb26825bb1aaaf24af906a4e5eb0", + "tarball": "http://registry.npmjs.org/io/-/io-0.1.3.tgz" + }, + "0.1.5": { + "shasum": "87026e31f0be5833ff366aa6cb507d648f2ca7f6", + "tarball": "http://registry.npmjs.org/io/-/io-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "260edd6a797cc5b0e6a81abfec071d826679b3f4", + "tarball": "http://registry.npmjs.org/io/-/io-0.1.6.tgz" + } + }, + "url": "http://registry.npmjs.org/io/" + }, + "IO": { + "name": "IO", + "description": "Rapid Testing of available/unavailable .IO TLDs w/ WordLists", + "dist-tags": { + "latest": "0.0.2" + }, + "readme": "\nIO\n==\n\n\tRapid Testing of available/unavailable .IO TLDs w/ WordLists & REST API", + "maintainers": [ + { + "name": "edwardhotchkiss", + "email": "e@ingk.com" + } + ], + "time": { + "modified": "2011-11-21T23:56:35.252Z", + "created": "2011-11-21T23:56:34.786Z", + "0.0.2": "2011-11-21T23:56:35.252Z" + }, + "author": { + "name": "Edward Hotchkiss", + "email": "e@ingk.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/edwardhotchkiss/IO.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/IO/0.0.2" + }, + "dist": { + "0.0.2": { + "shasum": "0c343780a2c82148c490e47f2a781cd6f73ad8ec", + "tarball": "http://registry.npmjs.org/IO/-/IO-0.0.2.tgz" + } + }, + "keywords": [ + "io", + ".io", + "register", + "registrar", + "bulk" + ], + "url": "http://registry.npmjs.org/IO/" + }, + "ios7crypt": { + "name": "ios7crypt", + "description": "Encrypt and decrypt Cisco IOS7 passwords", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "mcandre", + "email": "andrew.pennebaker@gmail.com" + } + ], + "time": { + "modified": "2011-09-14T14:16:43.202Z", + "created": "2011-08-02T02:14:55.241Z", + "0.0.1": "2011-08-02T02:14:55.305Z", + "0.0.2": "2011-08-03T01:32:42.364Z", + "0.0.3": "2011-09-14T14:16:43.202Z" + }, + "author": { + "name": "Andrew Pennebaker", + "email": "andrew.pennebaker@gmail.com", + "url": "http://www.yellosoft.us/" + }, + "repository": { + "type": "git", + "url": "git://github.com/mcandre/node-ios7crypt.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ios7crypt/0.0.1", + "0.0.2": "http://registry.npmjs.org/ios7crypt/0.0.2", + "0.0.3": "http://registry.npmjs.org/ios7crypt/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "9546d81af30617764e091adaff1f39a0f43a2cd5", + "tarball": "http://registry.npmjs.org/ios7crypt/-/ios7crypt-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "e039fe0e335e4dbbc1aaa58ffc0919570f2089c5", + "tarball": "http://registry.npmjs.org/ios7crypt/-/ios7crypt-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "2d1c75f76f54393526f6edd5e794971faad7d123", + "tarball": "http://registry.npmjs.org/ios7crypt/-/ios7crypt-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/ios7crypt/" + }, + "iostat": { + "name": "iostat", + "description": "sysstat's iostat wrapper for monitoring i/o usage on a unix machine with iostat installed (package sysstat)", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "temsa", + "email": "florian.traverse+npm@gmail.com" + } + ], + "time": { + "modified": "2011-07-26T16:42:35.639Z", + "created": "2011-07-13T17:52:39.834Z", + "0.1.0": "2011-07-13T17:52:40.362Z", + "0.1.1": "2011-07-18T09:43:12.113Z", + "0.2.0": "2011-07-26T16:40:00.825Z", + "0.2.1": "2011-07-26T16:40:25.467Z", + "0.2.2": "2011-07-26T16:42:35.639Z" + }, + "author": { + "name": "Florian Traverse", + "email": "florian.traverse@gmail.com", + "url": "http://pullrequest.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/temsa/node-iostat.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/iostat/0.1.0", + "0.1.1": "http://registry.npmjs.org/iostat/0.1.1", + "0.2.0": "http://registry.npmjs.org/iostat/0.2.0", + "0.2.1": "http://registry.npmjs.org/iostat/0.2.1", + "0.2.2": "http://registry.npmjs.org/iostat/0.2.2" + }, + "dist": { + "0.1.0": { + "shasum": "d9b2c44064c90e24c7ac04e0cc1bbd1e6bf969aa", + "tarball": "http://registry.npmjs.org/iostat/-/iostat-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "7cafaebd24815518931f0061669b46843800ac7b", + "tarball": "http://registry.npmjs.org/iostat/-/iostat-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "341607d3323035c8f95613c486a55454947d3db4", + "tarball": "http://registry.npmjs.org/iostat/-/iostat-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "5911601412c3dd9d3815041797ad7f39a1c37daa", + "tarball": "http://registry.npmjs.org/iostat/-/iostat-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "6ea6c75d8d80705363323a6a881c2267235fb9fb", + "tarball": "http://registry.npmjs.org/iostat/-/iostat-0.2.2.tgz" + } + }, + "url": "http://registry.npmjs.org/iostat/" + }, + "iostream": { + "name": "iostream", + "description": "Tornado-like Buffered IOStream for Node.JS", + "dist-tags": { + "latest": "0.0.2" + }, + "readme": null, + "maintainers": [ + { + "name": "enki", + "email": "bohmps@gmail.com" + } + ], + "time": { + "modified": "2011-11-17T06:30:20.275Z", + "created": "2011-11-13T08:17:38.159Z", + "0.0.1": "2011-11-13T08:17:39.399Z", + "0.0.2": "2011-11-17T06:30:20.275Z" + }, + "author": { + "name": "Paul Bohm", + "email": "enki@bbq.io", + "url": "http://paulbohm.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/enki/node-iostream.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/iostream/0.0.1", + "0.0.2": "http://registry.npmjs.org/iostream/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "c49791bb9e174dae0cd3dd328b2ad4b4869ad70e", + "tarball": "http://registry.npmjs.org/iostream/-/iostream-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "25cdeb8b77fdfed34470d398b5ab8e46e6cd95a8", + "tarball": "http://registry.npmjs.org/iostream/-/iostream-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/iostream/" + }, + "ip2cc": { + "name": "ip2cc", + "description": "Efficiently convert IP addresses to two-letter country codes", + "dist-tags": { + "latest": "0.9.3" + }, + "maintainers": [ + { + "name": "eagereyes", + "email": "rkosara@me.com" + } + ], + "time": { + "modified": "2011-04-24T20:14:47.100Z", + "created": "2011-04-24T03:07:07.773Z", + "0.9.0": "2011-04-24T03:07:10.874Z", + "0.9.1": "2011-04-24T12:07:00.693Z", + "0.9.2": "2011-04-24T15:07:54.942Z", + "0.9.3": "2011-04-24T20:14:47.100Z" + }, + "author": { + "name": "Robert Kosara", + "email": "rkosara@me.com", + "url": "http://eagereyes.org/" + }, + "repository": { + "type": "git", + "url": "git://github.com/eagereyes/node-ip2cc.git" + }, + "versions": { + "0.9.0": "http://registry.npmjs.org/ip2cc/0.9.0", + "0.9.1": "http://registry.npmjs.org/ip2cc/0.9.1", + "0.9.2": "http://registry.npmjs.org/ip2cc/0.9.2", + "0.9.3": "http://registry.npmjs.org/ip2cc/0.9.3" + }, + "dist": { + "0.9.0": { + "shasum": "e096fb59c86450e5776cd3ae80ab8ddcddd4882a", + "tarball": "http://registry.npmjs.org/ip2cc/-/ip2cc-0.9.0.tgz" + }, + "0.9.1": { + "shasum": "0f90b4f5ea3fd9ec73305f02b35fc22e771b30cc", + "tarball": "http://registry.npmjs.org/ip2cc/-/ip2cc-0.9.1.tgz" + }, + "0.9.2": { + "shasum": "48eb2a6b25afa0a1c4c1b95e42462fbd9bfbe979", + "tarball": "http://registry.npmjs.org/ip2cc/-/ip2cc-0.9.2.tgz" + }, + "0.9.3": { + "shasum": "debd0d7d2d932960b62a3f647638546f9a8b8699", + "tarball": "http://registry.npmjs.org/ip2cc/-/ip2cc-0.9.3.tgz" + } + }, + "url": "http://registry.npmjs.org/ip2cc/" + }, + "ipaddr.js": { + "name": "ipaddr.js", + "description": "A library for manipulating IPv4 and IPv6 addresses in JavaScript.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "whitequark", + "email": "whitequark@whitequark.org" + } + ], + "time": { + "modified": "2011-07-30T16:00:04.710Z", + "created": "2011-07-28T15:57:38.697Z", + "0.1.0": "2011-07-28T15:57:40.643Z", + "0.1.1": "2011-07-30T16:00:04.710Z" + }, + "author": { + "name": "Peter Zotov", + "email": "whitequark@whitequark.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/whitequark/ipaddr.js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/ipaddr.js/0.1.0", + "0.1.1": "http://registry.npmjs.org/ipaddr.js/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "d67fc6dcc153b15a8ed475a44158f854728b037e", + "tarball": "http://registry.npmjs.org/ipaddr.js/-/ipaddr.js-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "28c6a7c116a021c555544f906ab1ad540b1d635a", + "tarball": "http://registry.npmjs.org/ipaddr.js/-/ipaddr.js-0.1.1.tgz" + } + }, + "keywords": [ + "ip", + "ipv4", + "ipv6" + ], + "url": "http://registry.npmjs.org/ipaddr.js/" + }, + "ips-chat": { + "name": "ips-chat", + "description": "IPS chat module for nodejs", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "gcr", + "email": "gcr@sneakygcr.net" + } + ], + "time": { + "modified": "2011-10-02T05:18:23.253Z", + "created": "2011-10-01T00:46:09.975Z", + "0.0.1": "2011-10-01T00:46:10.401Z", + "0.0.2": "2011-10-02T05:18:23.253Z" + }, + "author": { + "name": "gcr", + "email": "gcr@sneakygcr.net", + "url": "http://sneakygcr.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/gcr/ips-lurker.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ips-chat/0.0.1", + "0.0.2": "http://registry.npmjs.org/ips-chat/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "8c84d1181e7fd4c01e39dc9eb815200e78a37fff", + "tarball": "http://registry.npmjs.org/ips-chat/-/ips-chat-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "cf8426aa98a49b200765b671414dc7c2280881c8", + "tarball": "http://registry.npmjs.org/ips-chat/-/ips-chat-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/ips-chat/" + }, + "iptables": { + "name": "iptables", + "description": "Run iptables commands from node.js", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "pkrumins", + "email": "peteris.krumins@gmail.com" + } + ], + "time": { + "modified": "2011-06-26T21:09:25.943Z", + "created": "2011-04-02T00:13:59.911Z", + "0.0.1": "2011-04-02T00:14:00.378Z", + "0.0.2": "2011-04-03T23:36:54.332Z", + "0.0.3": "2011-06-26T21:09:25.943Z" + }, + "author": { + "name": "Peteris Krumins", + "email": "peteris.krumins@gmail.com", + "url": "http://www.catonmat.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/pkrumins/node-iptables.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/iptables/0.0.1", + "0.0.2": "http://registry.npmjs.org/iptables/0.0.2", + "0.0.3": "http://registry.npmjs.org/iptables/0.0.3" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/iptables/-/iptables-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/iptables/-/iptables-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "34518b2b6ce549dc6e53ad3bba1bf62f9786487f", + "tarball": "http://registry.npmjs.org/iptables/-/iptables-0.0.3.tgz" + } + }, + "keywords": [ + "iptables", + "firewall" + ], + "url": "http://registry.npmjs.org/iptables/" + }, + "iptrie": { + "name": "iptrie", + "description": "IP tries (prefix tree)", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "postwait", + "email": "jesus@omniti.com" + } + ], + "time": { + "modified": "2011-05-20T20:34:14.632Z", + "created": "2011-05-20T20:34:14.473Z", + "0.0.2": "2011-05-20T20:34:14.632Z" + }, + "author": { + "name": "Theo Schlossnagle" + }, + "repository": { + "type": "git", + "url": "git://github.com/postwait/node-iptrie.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/iptrie/0.0.2" + }, + "dist": { + "0.0.2": { + "shasum": "a83a1d0b40374c0c0432ea1ef28c17bb7caa9355", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0c-v83.1.8.3-darwin-10.7.0": { + "shasum": "05eb25b535b7ff3bfb99860e56575a164033576e", + "tarball": "http://registry.npmjs.org/iptrie/-/iptrie-0.0.2-0.4-ares1.7.4-ev4.4-openssl1.0.0c-v83.1.8.3-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/iptrie/-/iptrie-0.0.2.tgz" + } + }, + "keywords": [ + "iptrie", + "blocklist", + "IP", + "acl" + ], + "url": "http://registry.npmjs.org/iptrie/" + }, + "ipv6": { + "name": "ipv6", + "description": "A browser- and node-compatible library for parsing IPv6 addresses", + "dist-tags": { + "latest": "1.0.0", + "stable": "0.0.1" + }, + "maintainers": [ + { + "name": "beaugunderson", + "email": "beau@beaugunderson.com" + } + ], + "time": { + "modified": "2011-08-15T08:50:40.431Z", + "created": "2011-04-27T21:39:21.755Z", + "0.0.1": "2011-04-27T21:39:22.059Z", + "1.0.0": "2011-08-15T08:50:40.431Z" + }, + "author": { + "name": "Beau Gunderson", + "email": "beau@beaugunderson.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/beaugunderson/javascript-ipv6.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ipv6/0.0.1", + "1.0.0": "http://registry.npmjs.org/ipv6/1.0.0" + }, + "dist": { + "0.0.1": { + "shasum": "e6a51aa5bf947da2a93c10fbd03fe61fccc46255", + "tarball": "http://registry.npmjs.org/ipv6/-/ipv6-0.0.1.tgz" + }, + "1.0.0": { + "shasum": "d6ac91984c9ed724fffdaa0c60e5e3d20f351e2c", + "tarball": "http://registry.npmjs.org/ipv6/-/ipv6-1.0.0.tgz" + } + }, + "keywords": [ + "ipv6", + "browser", + "validation" + ], + "url": "http://registry.npmjs.org/ipv6/" + }, + "iqengines": { + "name": "iqengines", + "description": "IQ Engines API Bindings", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "huyng", + "email": "huy@huyng.com" + } + ], + "time": { + "modified": "2011-04-21T19:32:48.028Z", + "created": "2011-04-21T19:32:47.724Z", + "0.0.1": "2011-04-21T19:32:48.028Z" + }, + "author": { + "name": "Huy Nguyen", + "email": "huy@iqengines.com" + }, + "repository": { + "url": "https://github.com/iqengines/nodejs-iqengines" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/iqengines/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "c38332bf37c615dc1304ee5b3981c6e3bb2ab16a", + "tarball": "http://registry.npmjs.org/iqengines/-/iqengines-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/iqengines/" + }, + "irc": { + "name": "irc", + "description": "An IRC client library for node", + "dist-tags": { + "latest": "0.3.3" + }, + "maintainers": [ + { + "name": "martyn", + "email": "martyn@dollyfish.net.nz" + } + ], + "author": { + "name": "Martyn Smith", + "email": "martyn@dollyfish.net.nz" + }, + "repository": { + "type": "git", + "url": "git://github.com/martynsmith/node-irc.git" + }, + "time": { + "modified": "2011-11-16T21:21:05.589Z", + "created": "2011-04-29T10:58:41.621Z", + "0.1.2": "2011-04-29T10:58:41.621Z", + "0.2.0": "2011-04-29T10:58:41.621Z", + "0.2.1": "2011-10-01T00:23:56.565Z", + "0.3.0": "2011-10-28T09:56:18.570Z", + "0.3.1": "2011-10-29T21:42:54.368Z", + "0.3.2": "2011-10-30T01:35:04.010Z", + "0.3.3": "2011-11-16T07:53:33.111Z" + }, + "users": { + "isaacs": true, + "avianflu": true, + "chilts": true + }, + "versions": { + "0.1.2": "http://registry.npmjs.org/irc/0.1.2", + "0.2.0": "http://registry.npmjs.org/irc/0.2.0", + "0.2.1": "http://registry.npmjs.org/irc/0.2.1", + "0.3.0": "http://registry.npmjs.org/irc/0.3.0", + "0.3.1": "http://registry.npmjs.org/irc/0.3.1", + "0.3.2": "http://registry.npmjs.org/irc/0.3.2", + "0.3.3": "http://registry.npmjs.org/irc/0.3.3" + }, + "dist": { + "0.1.2": { + "tarball": "http://packages:5984/irc/-/irc-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "6b59b7ef30a16467247c7abb1d776687aaa936d3", + "tarball": "http://registry.npmjs.org/irc/-/irc-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "6029d9f18e6925a96db379e4bc017df8b61d1486", + "tarball": "http://registry.npmjs.org/irc/-/irc-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "297afeb14b9c712a18adcf26337472bb49ed120b", + "tarball": "http://registry.npmjs.org/irc/-/irc-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "e584c32171911751e9977213cda75458e7b9e89a", + "tarball": "http://registry.npmjs.org/irc/-/irc-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "2c0ded58ff5653e1719c6c81f5b7654b7a96b827", + "tarball": "http://registry.npmjs.org/irc/-/irc-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "f39f41fb25782217d2e57183654c520dd5fea9be", + "tarball": "http://registry.npmjs.org/irc/-/irc-0.3.3.tgz" + } + }, + "url": "http://registry.npmjs.org/irc/" + }, + "irc-colors": { + "name": "irc-colors", + "description": "Color and formatting for irc made easy.", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "neat", + "email": "wrapper476@gmail.com" + } + ], + "time": { + "modified": "2011-09-20T08:20:04.667Z", + "created": "2011-07-24T02:48:38.636Z", + "1.0.0": "2011-07-24T02:48:39.548Z", + "1.0.1": "2011-08-03T01:22:14.239Z" + }, + "author": { + "name": "Roly Fentanes", + "url": "https://github.com/fent" + }, + "repository": { + "type": "git", + "url": "git://github.com/fent/irc-colors.js.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/irc-colors/1.0.0", + "1.0.1": "http://registry.npmjs.org/irc-colors/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "ef8539c4a2f3c6283248d599d98c0b61b2b484bb", + "tarball": "http://registry.npmjs.org/irc-colors/-/irc-colors-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "8a823903798a1f3817a4184a678db6bd06c1608e", + "tarball": "http://registry.npmjs.org/irc-colors/-/irc-colors-1.0.1.tgz" + } + }, + "keywords": [ + "irc", + "color", + "colour" + ], + "url": "http://registry.npmjs.org/irc-colors/" + }, + "irc-js": { + "name": "irc-js", + "description": "An IRC library for node.js", + "dist-tags": { + "latest": "0.2.27" + }, + "maintainers": [ + { + "name": "gf3", + "email": "gianni@runlevel6.org" + } + ], + "author": { + "name": "Gianni Chiappetta", + "email": "gianni@runlevel6.org", + "url": "http://gf3.ca" + }, + "repository": { + "type": "git", + "url": "git://github.com/gf3/IRC-js.git" + }, + "time": { + "modified": "2011-12-05T14:44:23.516Z", + "created": "2010-12-20T01:55:29.444Z", + "0.2.2": "2010-12-20T01:55:29.444Z", + "0.2.3": "2010-12-20T01:55:29.444Z", + "0.2.4": "2010-12-20T01:55:29.444Z", + "0.2.5": "2010-12-20T01:55:29.444Z", + "0.2.6": "2010-12-20T01:55:29.444Z", + "0.2.7": "2010-12-20T01:55:29.444Z", + "0.2.8": "2010-12-20T01:55:29.444Z", + "0.2.9": "2010-12-20T01:55:29.444Z", + "0.2.10": "2010-12-20T01:55:29.444Z", + "0.2.11": "2010-12-20T01:55:29.444Z", + "0.2.12": "2011-01-10T23:40:51.180Z", + "0.2.13": "2011-01-12T16:03:25.781Z", + "0.2.14": "2011-02-04T05:23:33.248Z", + "0.2.15": "2011-02-07T17:59:10.096Z", + "0.2.16": "2011-03-11T05:36:35.406Z", + "0.2.17": "2011-04-07T17:47:43.778Z", + "0.2.18": "2011-05-05T14:48:49.918Z", + "0.2.19": "2011-05-30T19:31:15.814Z", + "0.2.20": "2011-05-31T13:28:01.964Z", + "0.2.21": "2011-06-01T00:07:10.604Z", + "0.2.22": "2011-06-15T20:37:42.156Z", + "0.2.23": "2011-06-15T21:36:49.056Z", + "0.2.24": "2011-06-16T14:35:29.266Z", + "0.2.25": "2011-06-17T19:44:08.774Z", + "0.2.26": "2011-07-18T19:56:33.652Z", + "0.2.27": "2011-12-05T14:44:23.516Z" + }, + "users": { + "thejh": true + }, + "versions": { + "0.2.2": "http://registry.npmjs.org/irc-js/0.2.2", + "0.2.3": "http://registry.npmjs.org/irc-js/0.2.3", + "0.2.4": "http://registry.npmjs.org/irc-js/0.2.4", + "0.2.5": "http://registry.npmjs.org/irc-js/0.2.5", + "0.2.6": "http://registry.npmjs.org/irc-js/0.2.6", + "0.2.7": "http://registry.npmjs.org/irc-js/0.2.7", + "0.2.8": "http://registry.npmjs.org/irc-js/0.2.8", + "0.2.9": "http://registry.npmjs.org/irc-js/0.2.9", + "0.2.10": "http://registry.npmjs.org/irc-js/0.2.10", + "0.2.11": "http://registry.npmjs.org/irc-js/0.2.11", + "0.2.12": "http://registry.npmjs.org/irc-js/0.2.12", + "0.2.13": "http://registry.npmjs.org/irc-js/0.2.13", + "0.2.14": "http://registry.npmjs.org/irc-js/0.2.14", + "0.2.15": "http://registry.npmjs.org/irc-js/0.2.15", + "0.2.16": "http://registry.npmjs.org/irc-js/0.2.16", + "0.2.17": "http://registry.npmjs.org/irc-js/0.2.17", + "0.2.18": "http://registry.npmjs.org/irc-js/0.2.18", + "0.2.19": "http://registry.npmjs.org/irc-js/0.2.19", + "0.2.20": "http://registry.npmjs.org/irc-js/0.2.20", + "0.2.21": "http://registry.npmjs.org/irc-js/0.2.21", + "0.2.22": "http://registry.npmjs.org/irc-js/0.2.22", + "0.2.23": "http://registry.npmjs.org/irc-js/0.2.23", + "0.2.24": "http://registry.npmjs.org/irc-js/0.2.24", + "0.2.25": "http://registry.npmjs.org/irc-js/0.2.25", + "0.2.26": "http://registry.npmjs.org/irc-js/0.2.26", + "0.2.27": "http://registry.npmjs.org/irc-js/0.2.27" + }, + "dist": { + "0.2.2": { + "tarball": "http://registry.npmjs.org/irc-js/-/irc-js-0.2.2.tgz" + }, + "0.2.3": { + "tarball": "http://registry.npmjs.org/irc-js/-/irc-js-0.2.3.tgz" + }, + "0.2.4": { + "tarball": "http://registry.npmjs.org/irc-js/-/irc-js-0.2.4.tgz" + }, + "0.2.5": { + "tarball": "http://registry.npmjs.org/irc-js/-/irc-js-0.2.5.tgz" + }, + "0.2.6": { + "tarball": "http://registry.npmjs.org/irc-js/-/irc-js-0.2.6.tgz" + }, + "0.2.7": { + "tarball": "http://registry.npmjs.org/irc-js/-/irc-js-0.2.7.tgz" + }, + "0.2.8": { + "tarball": "http://registry.npmjs.org/irc-js/-/irc-js-0.2.8.tgz" + }, + "0.2.9": { + "shasum": "26af909aff4215df21b7527983c6981e14082e83", + "tarball": "http://registry.npmjs.org/irc-js/-/irc-js-0.2.9.tgz" + }, + "0.2.10": { + "shasum": "c1de3228d9eadf1c31cc2935f00c4cdbd99403d7", + "tarball": "http://registry.npmjs.org/irc-js/-/irc-js-0.2.10.tgz" + }, + "0.2.11": { + "shasum": "c42de8b76d40ccf829399936f01b000b4447daba", + "tarball": "http://registry.npmjs.org/irc-js/-/irc-js-0.2.11.tgz" + }, + "0.2.12": { + "shasum": "b525885f69bbcfffc0de5310971270ddeaceffb7", + "tarball": "http://registry.npmjs.org/irc-js/-/irc-js-0.2.12.tgz" + }, + "0.2.13": { + "shasum": "b8e23e31f7ce334d9af0ac2d183da0a9361e277b", + "tarball": "http://registry.npmjs.org/irc-js/-/irc-js-0.2.13.tgz" + }, + "0.2.14": { + "shasum": "5d3ef075f9eac85dcb33d7ef22752287409a1907", + "tarball": "http://registry.npmjs.org/irc-js/-/irc-js-0.2.14.tgz" + }, + "0.2.15": { + "shasum": "5ec634bef0cca1d8273b5548adad3f2927c41225", + "tarball": "http://registry.npmjs.org/irc-js/-/irc-js-0.2.15.tgz" + }, + "0.2.16": { + "shasum": "e27be4632b7f144f912b69451115c0cee6667359", + "tarball": "http://registry.npmjs.org/irc-js/-/irc-js-0.2.16.tgz" + }, + "0.2.17": { + "shasum": "5ca29a8dc29a6e0cad08f1fc8e2b58b76d8853b7", + "tarball": "http://registry.npmjs.org/irc-js/-/irc-js-0.2.17.tgz" + }, + "0.2.18": { + "shasum": "48b3fe7422376a1744447a8101854f0b2d58e14c", + "tarball": "http://registry.npmjs.org/irc-js/-/irc-js-0.2.18.tgz" + }, + "0.2.19": { + "shasum": "b6b8f2c25082aac520978b7b0a9e32b68934954f", + "tarball": "http://registry.npmjs.org/irc-js/-/irc-js-0.2.19.tgz" + }, + "0.2.20": { + "shasum": "5ccd8798ffe13d8dfe0adae58936e1a117780f96", + "tarball": "http://registry.npmjs.org/irc-js/-/irc-js-0.2.20.tgz" + }, + "0.2.21": { + "shasum": "6b3d5fcee3d71e41ca402ebffce35743c2c3a435", + "tarball": "http://registry.npmjs.org/irc-js/-/irc-js-0.2.21.tgz" + }, + "0.2.22": { + "shasum": "af163cbfb1f08ccc10989007c77e5edc0c950f6f", + "tarball": "http://registry.npmjs.org/irc-js/-/irc-js-0.2.22.tgz" + }, + "0.2.23": { + "shasum": "ef27ea0cd41a9e887e83bbf85e5f14bb584771f4", + "tarball": "http://registry.npmjs.org/irc-js/-/irc-js-0.2.23.tgz" + }, + "0.2.24": { + "shasum": "6227a335726b80484ecc80aa5189d5395f17d210", + "tarball": "http://registry.npmjs.org/irc-js/-/irc-js-0.2.24.tgz" + }, + "0.2.25": { + "shasum": "225cb3c0822f297f392976a90effc2264d1e5f0d", + "tarball": "http://registry.npmjs.org/irc-js/-/irc-js-0.2.25.tgz" + }, + "0.2.26": { + "shasum": "f8918a6745150026717bc3fd674936b1b6bb577a", + "tarball": "http://registry.npmjs.org/irc-js/-/irc-js-0.2.26.tgz" + }, + "0.2.27": { + "shasum": "39056ec0ce5145b989a001322d9926facb3098f1", + "tarball": "http://registry.npmjs.org/irc-js/-/irc-js-0.2.27.tgz" + } + }, + "url": "http://registry.npmjs.org/irc-js/" + }, + "ircat.js": { + "name": "ircat.js", + "description": "A simple IRC bot you pipe messages to", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "atmos", + "email": "atmos@atmos.org" + } + ], + "author": { + "name": "Corey Donohoe", + "email": "atmos@atmos.org" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/ircat.js/0.1.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/ircat.js/-/ircat.js-0.1.0.tgz" + } + }, + "keywords": [ + "irc", + "bot" + ], + "url": "http://registry.npmjs.org/ircat.js/" + }, + "ircbot": { + "name": "ircbot", + "description": "A simple irc bot with a reloadable plugin system", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "draggor", + "email": "draggor@gmail.com" + } + ], + "time": { + "modified": "2011-09-19T20:10:08.072Z", + "created": "2011-04-06T23:22:48.225Z", + "0.0.1": "2011-04-06T23:22:48.550Z", + "0.0.2": "2011-09-19T20:09:15.913Z" + }, + "author": { + "name": "Draggor ZippyTanx", + "email": "draggor@gmail.com", + "url": "http://github.com/draggor/" + }, + "repository": { + "type": "git", + "url": "git://github.com/draggor/node-ircbot.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ircbot/0.0.1", + "0.0.2": "http://registry.npmjs.org/ircbot/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "c897f57dbbac0eb002897bad2a526a0aed721d5b", + "tarball": "http://registry.npmjs.org/ircbot/-/ircbot-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "6b00c65313d4096d15a51b7d8b4addda325d53ba", + "tarball": "http://registry.npmjs.org/ircbot/-/ircbot-0.0.2.tgz" + } + }, + "keywords": [ + "irc", + "bot", + "plugin" + ], + "url": "http://registry.npmjs.org/ircbot/" + }, + "irccd": { + "name": "irccd", + "description": "An IRC \"client-daemon\" which lets you daemonize multiple IRC clients and publish their events to your desktop.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "monokrome", + "email": "monokrome@limpidtech.com" + } + ], + "time": { + "modified": "2011-05-09T09:51:36.964Z", + "created": "2011-05-09T09:51:36.257Z", + "0.0.1": "2011-05-09T09:51:36.964Z" + }, + "author": { + "name": "Brandon R. Stoner", + "email": "monokrome@limpidtech.com", + "url": "http://monokro.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/LimpidTech/irccd.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/irccd/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "1fb4507d2bef3c7784a70d6d7c11dff648c63c84", + "tarball": "http://registry.npmjs.org/irccd/-/irccd-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/irccd/" + }, + "ircd": { + "name": "ircd", + "description": "IRC daemon and server library", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "aredridel", + "email": "aredridel@nbtsc.org" + } + ], + "time": { + "modified": "2011-06-02T17:02:11.436Z", + "created": "2011-02-12T23:19:12.641Z", + "0.0.0": "2011-02-12T23:19:13.054Z", + "0.0.1": "2011-02-13T06:54:15.709Z", + "0.1.0": "2011-06-02T17:02:11.436Z" + }, + "author": { + "name": "Aria Stewart" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/ircd/0.0.0", + "0.0.1": "http://registry.npmjs.org/ircd/0.0.1", + "0.1.0": "http://registry.npmjs.org/ircd/0.1.0" + }, + "dist": { + "0.0.0": { + "shasum": "390b6521696f7a3c3d1b5cd9adf82cac9f0160f9", + "tarball": "http://registry.npmjs.org/ircd/-/ircd-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "24f2c6ea0b42076a7584998d082d682426bb8a49", + "tarball": "http://registry.npmjs.org/ircd/-/ircd-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "19ade93c1b3c003bd0ae02c5eba5b37b9eaf51e1", + "tarball": "http://registry.npmjs.org/ircd/-/ircd-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/ircd/" + }, + "ircdjs": { + "name": "ircdjs", + "description": "An IRCD for Node", + "dist-tags": { + "latest": "0.0.7" + }, + "maintainers": [ + { + "name": "alexyoung", + "email": "alex@alexyoung.org" + } + ], + "author": { + "name": "Alex R. Young", + "url": "http://alexyoung.org" + }, + "time": { + "modified": "2011-12-11T11:11:13.438Z", + "created": "2011-09-09T10:24:13.934Z", + "0.0.1": "2011-09-09T10:24:13.934Z", + "0.0.2": "2011-09-09T10:24:13.934Z", + "0.0.3": "2011-09-09T10:24:13.934Z", + "0.0.4": "2011-10-31T14:13:09.570Z", + "0.0.5": "2011-12-03T10:14:41.391Z", + "0.0.6": "2011-12-11T10:54:30.009Z", + "0.0.7": "2011-12-11T11:11:13.438Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ircdjs/0.0.1", + "0.0.2": "http://registry.npmjs.org/ircdjs/0.0.2", + "0.0.3": "http://registry.npmjs.org/ircdjs/0.0.3", + "0.0.4": "http://registry.npmjs.org/ircdjs/0.0.4", + "0.0.5": "http://registry.npmjs.org/ircdjs/0.0.5", + "0.0.6": "http://registry.npmjs.org/ircdjs/0.0.6", + "0.0.7": "http://registry.npmjs.org/ircdjs/0.0.7" + }, + "dist": { + "0.0.1": { + "shasum": "778bfc53404d8c53c39f11c543125a835ca793e9", + "tarball": "http://registry.npmjs.org/ircdjs/-/ircdjs-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "be3e00ecd990b386ad03159836b3afbc6da30b2b", + "tarball": "http://registry.npmjs.org/ircdjs/-/ircdjs-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "c1f78a2625df0b44e6072d4de433953342217522", + "tarball": "http://registry.npmjs.org/ircdjs/-/ircdjs-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "b267eceee015ae371761700bf94bdd56ee331604", + "tarball": "http://registry.npmjs.org/ircdjs/-/ircdjs-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "b7b85382f4c2ee6e95ac47eeca203abc9b46cca9", + "tarball": "http://registry.npmjs.org/ircdjs/-/ircdjs-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "af2bc4b9fe4cda379968bc02d9b55b5b61c7ba14", + "tarball": "http://registry.npmjs.org/ircdjs/-/ircdjs-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "1e8dd78b0496467c012d8924f57d5533823fb45f", + "tarball": "http://registry.npmjs.org/ircdjs/-/ircdjs-0.0.7.tgz" + } + }, + "url": "http://registry.npmjs.org/ircdjs/" + }, + "irclog": { + "name": "irclog", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "dvv", + "email": "dronnikov@gmail.com" + } + ], + "author": { + "name": "Vladimir Dronnikov", + "email": "dronnikov@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/irclog/0.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/irclog/-/irclog-0.0.1.tgz" + } + }, + "keywords": [ + "node", + "irc", + "mongo", + "log", + "logger" + ], + "url": "http://registry.npmjs.org/irclog/" + }, + "ircrpc": { + "name": "ircrpc", + "description": "RPC with IRC!", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "jesusabdullah", + "email": "josh.holbrook@gmail.com" + } + ], + "time": { + "modified": "2011-04-19T02:26:00.333Z", + "created": "2011-04-19T01:29:34.341Z", + "0.0.0": "2011-04-19T01:29:35.094Z", + "0.0.1": "2011-04-19T02:26:00.333Z" + }, + "author": { + "name": "Joshua Holbrook", + "email": "josh.holbrook@gmail.com", + "url": "http://jesusabdullah.github.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/jesusabdullah/ircrpc.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/ircrpc/0.0.0", + "0.0.1": "http://registry.npmjs.org/ircrpc/0.0.1" + }, + "dist": { + "0.0.0": { + "shasum": "8544abbb187887abc739719d276394247df117c2", + "tarball": "http://registry.npmjs.org/ircrpc/-/ircrpc-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "2e37601c0cda8dad3a3f32c26b2fc3b35e8d57d0", + "tarball": "http://registry.npmjs.org/ircrpc/-/ircrpc-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/ircrpc/" + }, + "irrklang": { + "name": "irrklang", + "description": "rough integration with irrKlang", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "tmpvar", + "email": "tmpvar@gmail.com" + } + ], + "time": { + "modified": "2011-02-13T07:27:00.696Z", + "created": "2011-02-13T07:27:00.493Z", + "0.0.1": "2011-02-13T07:27:00.696Z" + }, + "author": { + "name": "Elijah Insua", + "email": "tmpvar@gmail.com", + "url": "http://tmpvar.com" + }, + "repository": "git://github.com//tmpvar/node-irrklang.git", + "versions": { + "0.0.1": "http://registry.npmjs.org/irrklang/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "4939c69011609ba720ec33f3c0af48c5073f0b69", + "tarball": "http://registry.npmjs.org/irrklang/-/irrklang-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/irrklang/" + }, + "is": { + "name": "is", + "description": "the definitive JavaScript type testing library", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "onirame", + "email": "enrico.marino@email.com" + } + ], + "time": { + "modified": "2011-12-10T23:10:55.235Z", + "created": "2011-11-19T23:50:28.498Z", + "0.0.7": "2011-11-20T00:41:44.402Z", + "0.1.0": "2011-12-03T15:30:35.083Z", + "0.1.1": "2011-12-03T17:19:42.852Z", + "0.1.2": "2011-12-05T00:19:02.461Z", + "0.1.3": "2011-12-10T22:46:58.847Z", + "0.1.4": "2011-12-10T23:10:55.235Z" + }, + "author": { + "name": "Enrico Marino", + "email": "enrico.marino@email.com", + "url": "http://onirame.no.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/onirame/is.git" + }, + "versions": { + "0.0.7": "http://registry.npmjs.org/is/0.0.7", + "0.1.0": "http://registry.npmjs.org/is/0.1.0", + "0.1.1": "http://registry.npmjs.org/is/0.1.1", + "0.1.2": "http://registry.npmjs.org/is/0.1.2", + "0.1.3": "http://registry.npmjs.org/is/0.1.3", + "0.1.4": "http://registry.npmjs.org/is/0.1.4" + }, + "dist": { + "0.0.7": { + "shasum": "52c5638db4cd610ae6243f1277c6ea7e73d815ae", + "tarball": "http://registry.npmjs.org/is/-/is-0.0.7.tgz" + }, + "0.1.0": { + "shasum": "affadef63ed027f4ce6f8299a62e20f48457b133", + "tarball": "http://registry.npmjs.org/is/-/is-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "c466aeba376cdc5ecceda1c59eed650df4f05855", + "tarball": "http://registry.npmjs.org/is/-/is-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "721fe290ff453c8e3f801ff456ba00eafe024a64", + "tarball": "http://registry.npmjs.org/is/-/is-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "0f40777ee837943426fc376e579e19d776a3837a", + "tarball": "http://registry.npmjs.org/is/-/is-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "599c40253cffaa3e6dfb6b2812fa7740222edade", + "tarball": "http://registry.npmjs.org/is/-/is-0.1.4.tgz" + } + }, + "keywords": [ + "util", + "test", + "type", + "sniff", + "server", + "client", + "browser" + ], + "url": "http://registry.npmjs.org/is/" + }, + "isaacs": { + "name": "isaacs", + "description": "Your very own isaacs.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-08-03T06:33:18.776Z", + "created": "2011-07-31T01:35:59.927Z", + "0.0.0": "2011-07-31T01:36:00.642Z", + "0.0.1": "2011-07-31T01:39:28.558Z", + "0.0.2": "2011-08-03T06:33:18.776Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-isaacs.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/isaacs/0.0.0", + "0.0.1": "http://registry.npmjs.org/isaacs/0.0.1", + "0.0.2": "http://registry.npmjs.org/isaacs/0.0.2" + }, + "dist": { + "0.0.0": { + "shasum": "d0a5171285f9ba975d3a378e54966f878bcb0a5c", + "tarball": "http://registry.npmjs.org/isaacs/-/isaacs-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "ba635533d995548f67977456c1ca2fbaad63a8ff", + "tarball": "http://registry.npmjs.org/isaacs/-/isaacs-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "901d3ad93672090f3852153753f9cd017d91c297", + "tarball": "http://registry.npmjs.org/isaacs/-/isaacs-0.0.2.tgz" + } + }, + "keywords": [ + "isaac", + "z", + "schlueter", + "markov", + "impersonation", + "crude", + "digital", + "clone", + "brain upload", + "a sign of things to come" + ], + "url": "http://registry.npmjs.org/isaacs/" + }, + "isbn": { + "name": "isbn", + "description": "ISBN parsing, validation, and formatting utilities", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-07-13T07:16:42.215Z", + "created": "2011-07-13T07:16:41.818Z", + "0.1.0": "2011-07-13T07:16:42.215Z" + }, + "author": { + "name": "Hetappi", + "email": "hetappi.pm@gmail.com", + "url": "http://twitter.com/#!/hetappi" + }, + "repository": { + "type": "git", + "url": "git://github.com/coolaj86/isbnjs.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/isbn/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "88a74ef6bae16ddf0694621f87c6415bafd920ac", + "tarball": "http://registry.npmjs.org/isbn/-/isbn-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/isbn/" + }, + "iscroll": { + "name": "iscroll", + "description": "smooth scrolling for mobile webkit", + "dist-tags": { + "latest": "4.1.9" + }, + "maintainers": [ + { + "name": "ded", + "email": "polvero@gmail.com" + }, + { + "name": "cubiq", + "email": "matteo@cubiq.org" + } + ], + "time": { + "modified": "2011-09-14T17:31:55.717Z", + "created": "2011-09-14T00:56:51.593Z", + "4.1.9": "2011-09-14T00:56:52.650Z" + }, + "author": { + "name": "Matteo Spinelli", + "url": "http://cubiq.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/cubiq/iscroll.git" + }, + "versions": { + "4.1.9": "http://registry.npmjs.org/iscroll/4.1.9" + }, + "dist": { + "4.1.9": { + "shasum": "a42a54889270f25898ff04d35e8c29a64a67e73e", + "tarball": "http://registry.npmjs.org/iscroll/-/iscroll-4.1.9.tgz" + } + }, + "keywords": [ + "ender", + "iscroll", + "scrolling", + "webkit", + "iphone", + "android" + ], + "url": "http://registry.npmjs.org/iscroll/" + }, + "isodate": { + "name": "isodate", + "description": "JavaScript ISO 8061 date/time parser", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "pvorb", + "email": "paul@vorb.de" + } + ], + "time": { + "modified": "2011-11-26T00:15:35.370Z", + "created": "2011-08-26T01:29:34.414Z", + "0.0.0": "2011-08-26T01:29:37.139Z", + "0.0.1": "2011-08-29T14:34:39.651Z", + "0.0.2": "2011-09-03T13:18:04.653Z", + "0.0.3": "2011-11-25T23:48:41.893Z", + "0.1.0": "2011-11-26T00:15:35.370Z" + }, + "author": { + "name": "Paul Vorbach", + "email": "paul@vorb.de", + "url": "http://vorb.de/" + }, + "repository": { + "type": "git", + "url": "git://github.com/pvorb/node-isodate.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/isodate/0.0.0", + "0.0.1": "http://registry.npmjs.org/isodate/0.0.1", + "0.0.2": "http://registry.npmjs.org/isodate/0.0.2", + "0.0.3": "http://registry.npmjs.org/isodate/0.0.3", + "0.1.0": "http://registry.npmjs.org/isodate/0.1.0" + }, + "dist": { + "0.0.0": { + "shasum": "e1b229f23a431896bf23e4b7a626b0c28b2bcf2d", + "tarball": "http://registry.npmjs.org/isodate/-/isodate-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "43a671a8860e5bc83afdc69be7c31e8f52e9be7b", + "tarball": "http://registry.npmjs.org/isodate/-/isodate-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "defb37f93f45255974f9ac2487fbb1b6cab142b8", + "tarball": "http://registry.npmjs.org/isodate/-/isodate-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "0589cd3be642d1384b44d5f8e4c88d413af3f621", + "tarball": "http://registry.npmjs.org/isodate/-/isodate-0.0.3.tgz" + }, + "0.1.0": { + "shasum": "1c69e104aa13996e3e50596b48e06d4c7406e0f7", + "tarball": "http://registry.npmjs.org/isodate/-/isodate-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/isodate/" + }, + "it-is": { + "name": "it-is", + "description": "terse functional assertion framework", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-10-15T09:16:44.577Z", + "created": "2011-02-04T10:56:42.991Z", + "0.0.0": "2011-02-04T10:56:43.780Z", + "0.0.1": "2011-02-08T04:24:06.268Z", + "0.0.2": "2011-05-24T17:02:33.143Z", + "0.0.2-2": "2011-05-28T19:02:18.539Z", + "0.0.3": "2011-07-24T01:19:55.671Z", + "1.0.0": "2011-08-05T12:53:25.785Z", + "1.0.1": "2011-10-15T09:16:44.577Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dominictarr/it-is.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/it-is/0.0.0", + "0.0.1": "http://registry.npmjs.org/it-is/0.0.1", + "0.0.2": "http://registry.npmjs.org/it-is/0.0.2", + "0.0.2-2": "http://registry.npmjs.org/it-is/0.0.2-2", + "0.0.3": "http://registry.npmjs.org/it-is/0.0.3", + "1.0.0": "http://registry.npmjs.org/it-is/1.0.0", + "1.0.1": "http://registry.npmjs.org/it-is/1.0.1" + }, + "dist": { + "0.0.0": { + "shasum": "0d3d71f359b1fbeaece486e82d634a831a8fc5c9", + "tarball": "http://registry.npmjs.org/it-is/-/it-is-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "ec9e2025d36505461d21271fa59709de5118e76d", + "tarball": "http://registry.npmjs.org/it-is/-/it-is-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "1f5c1512d792de44050f4ba5c6ae6ece9576a90d", + "tarball": "http://registry.npmjs.org/it-is/-/it-is-0.0.2.tgz" + }, + "0.0.2-2": { + "shasum": "5af9be88be2004aaaf9be29448929feb9360be15", + "tarball": "http://registry.npmjs.org/it-is/-/it-is-0.0.2-2.tgz" + }, + "0.0.3": { + "shasum": "9ccb52669c5372558c0be2dbcf3d1bc4df07008d", + "tarball": "http://registry.npmjs.org/it-is/-/it-is-0.0.3.tgz" + }, + "1.0.0": { + "shasum": "5174db33fd49c6e05bfcc5ecbe269850b04c3293", + "tarball": "http://registry.npmjs.org/it-is/-/it-is-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "0662eeda509ec51faf871f4f8a400ca7c5d8e28c", + "tarball": "http://registry.npmjs.org/it-is/-/it-is-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/it-is/" + }, + "iterator": { + "name": "iterator", + "description": "JavaScript iterator tools.", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "kriskowal", + "email": "kris@cixar.com" + } + ], + "time": { + "modified": "2011-09-03T18:21:49.587Z", + "created": "2011-09-03T18:21:48.337Z", + "0.0.0": "2011-09-03T18:21:49.587Z" + }, + "author": { + "name": "Kris Kowal", + "email": "kris.kowal@cixar.com", + "url": "http://github.com/kriskowal/" + }, + "repository": { + "type": "git", + "url": "git://github.com/kriskowal/iterator.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/iterator/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "b3e3ff2ffd1a9309c25671c7335834a5af8f4516", + "tarball": "http://registry.npmjs.org/iterator/-/iterator-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/iterator/" + }, + "itunes": { + "name": "itunes", + "description": "An implementation of the iTunes API in NodeJS", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "garrettwilkin", + "email": "garrett.wilkin@gmail.com" + } + ], + "time": { + "modified": "2011-11-01T04:43:06.983Z", + "created": "2011-03-08T04:39:27.991Z", + "0.0.1": "2011-03-08T04:39:28.248Z", + "0.0.2": "2011-03-21T20:11:51.369Z", + "0.0.3": "2011-03-28T07:05:41.743Z", + "0.0.4": "2011-10-29T03:32:15.199Z", + "0.0.5": "2011-10-29T03:36:55.914Z", + "0.0.6": "2011-11-01T04:43:06.983Z" + }, + "author": { + "name": "Garrett Wilkin", + "email": "garrett.wilkin@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/garrettwilkin/iTunes.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/itunes/0.0.1", + "0.0.2": "http://registry.npmjs.org/itunes/0.0.2", + "0.0.3": "http://registry.npmjs.org/itunes/0.0.3", + "0.0.4": "http://registry.npmjs.org/itunes/0.0.4", + "0.0.5": "http://registry.npmjs.org/itunes/0.0.5", + "0.0.6": "http://registry.npmjs.org/itunes/0.0.6" + }, + "dist": { + "0.0.1": { + "shasum": "1336a406fa2f2a1755c7d198df3ffbb192154d1a", + "tarball": "http://registry.npmjs.org/itunes/-/itunes-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "614b8f79f931ba8eee232d241b951cd81a487e2c", + "tarball": "http://registry.npmjs.org/itunes/-/itunes-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "4020ca8e91f877affb966bac76a04da1c5d6bbcd", + "tarball": "http://registry.npmjs.org/itunes/-/itunes-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "e2dd6ee70311445c799b97a7f045a11e9faa0bdc", + "tarball": "http://registry.npmjs.org/itunes/-/itunes-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "23d769eefffd487ca5a9fc3cbb34d605737fcca7", + "tarball": "http://registry.npmjs.org/itunes/-/itunes-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "d3c76dfe3a24dc72e82aac25e497b6f6f729ae0b", + "tarball": "http://registry.npmjs.org/itunes/-/itunes-0.0.6.tgz" + } + }, + "keywords": [ + "itunes", + "music" + ], + "url": "http://registry.npmjs.org/itunes/" + }, + "itunes-epf-feedcheck": { + "name": "itunes-epf-feedcheck", + "description": "A module that checks the itunes EPF server for new files.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "mwawrusch", + "email": "martin@wawrusch.com" + } + ], + "time": { + "modified": "2011-10-03T00:20:50.794Z", + "created": "2011-10-03T00:20:48.888Z", + "0.0.1": "2011-10-03T00:20:50.794Z" + }, + "author": { + "name": "Martin Wawrusch", + "email": "martin@wawrusch.com", + "url": "http://martinatsunset.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/freshfugu/itunes-epf-feedcheck.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/itunes-epf-feedcheck/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "05746e1b12c346950008f3600611e030bcd7f828", + "tarball": "http://registry.npmjs.org/itunes-epf-feedcheck/-/itunes-epf-feedcheck-0.0.1.tgz" + } + }, + "keywords": [ + "itunes", + "epf" + ], + "url": "http://registry.npmjs.org/itunes-epf-feedcheck/" + }, + "iWeYou": { + "name": "iWeYou", + "description": "iWeYou is a view engine built over what the shell", + "dist-tags": { + "latest": "0.0.0" + }, + "readme": null, + "maintainers": [ + { + "name": "robinkc", + "email": "arora.k.robin@gmail.com" + } + ], + "time": { + "modified": "2011-11-20T06:09:36.428Z", + "created": "2011-11-20T06:09:33.017Z", + "0.0.0": "2011-11-20T06:09:36.428Z" + }, + "author": { + "name": "Robin KC", + "email": "arora.k.robin@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/robinkc/iWeYou.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/iWeYou/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "860924eaf192c633329cc7dca9eb89001904c953", + "tarball": "http://registry.npmjs.org/iWeYou/-/iWeYou-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/iWeYou/" + }, + "iws": { + "name": "iws", + "description": "Webservice For Blue Banner Inventory", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "arook", + "email": "arook@vip.qq.com" + } + ], + "time": { + "modified": "2011-08-01T06:58:50.780Z", + "created": "2011-08-01T06:58:48.416Z", + "0.0.1": "2011-08-01T06:58:50.780Z" + }, + "author": { + "name": "Mars", + "email": "mars@thousandshores.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/arook/iws.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/iws/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "6224aef09677b049c1dfa57b6d59cd00c43e3f15", + "tarball": "http://registry.npmjs.org/iws/-/iws-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/iws/" + }, + "jaaulde-cookies": { + "name": "jaaulde-cookies", + "description": "browser cookie handling library", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "ded", + "email": "polvero@gmail.com" + } + ], + "time": { + "modified": "2011-06-02T01:19:01.756Z", + "created": "2011-06-02T01:19:01.189Z", + "1.0.0": "2011-06-02T01:19:01.756Z" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/jaaulde-cookies/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "049ed7c2f31f42d4cf6fa8a6c8f612990c30c1e4", + "tarball": "http://registry.npmjs.org/jaaulde-cookies/-/jaaulde-cookies-1.0.0.tgz" + } + }, + "keywords": [ + "ender", + "cookies" + ], + "url": "http://registry.npmjs.org/jaaulde-cookies/" + }, + "jacker": { + "name": "jacker", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "jnordberg", + "email": "its@johan-nordberg.com" + } + ], + "time": { + "modified": "2011-12-12T14:31:20.156Z", + "created": "2011-09-06T00:49:37.052Z", + "0.1.0": "2011-09-06T00:49:38.660Z", + "0.1.1": "2011-12-12T14:31:20.156Z" + }, + "author": { + "name": "Johan Nordberg", + "email": "its@johan-nordberg.com", + "url": "http://johan-nordberg.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jnordberg/jacker.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/jacker/0.1.0", + "0.1.1": "http://registry.npmjs.org/jacker/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "f8efa13c9e0c931f7a7106415febbfca8b14e406", + "tarball": "http://registry.npmjs.org/jacker/-/jacker-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "c0a543937aa7981170d3497a47101b26885faf87", + "tarball": "http://registry.npmjs.org/jacker/-/jacker-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/jacker/" + }, + "jaCodeMap": { + "name": "jaCodeMap", + "description": "japanese unicode full/half width code mapping library", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "mah0x211", + "email": "mah0x211@gmail.com" + } + ], + "time": { + "modified": "2011-03-13T14:14:57.697Z", + "created": "2011-03-09T16:33:27.574Z", + "0.0.1": "2011-03-09T16:33:28.294Z", + "0.0.3": "2011-03-13T08:16:16.776Z", + "0.0.4": "2011-03-13T14:14:57.697Z" + }, + "repository": { + "type": "git", + "url": "http://github.com/mah0x211/jaCodeMap.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jaCodeMap/0.0.1", + "0.0.3": "http://registry.npmjs.org/jaCodeMap/0.0.3", + "0.0.4": "http://registry.npmjs.org/jaCodeMap/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "410fdb3113a959cd61b53506238b6b8679b6b164", + "tarball": "http://registry.npmjs.org/jaCodeMap/-/jaCodeMap-0.0.1.tgz" + }, + "0.0.3": { + "shasum": "1dc82d9a175104627d04ae0ac7396c737f1c6283", + "tarball": "http://registry.npmjs.org/jaCodeMap/-/jaCodeMap-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "ee24bf142b51e333760673a789914c63eeeed88e", + "tarball": "http://registry.npmjs.org/jaCodeMap/-/jaCodeMap-0.0.4.tgz" + } + }, + "keywords": [ + "japanese", + "unicode", + "converter" + ], + "url": "http://registry.npmjs.org/jaCodeMap/" + }, + "jade": { + "name": "jade", + "description": "Jade template engine", + "dist-tags": { + "latest": "0.19.0" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "time": { + "modified": "2011-12-02T23:20:33.882Z", + "created": "2010-12-19T22:37:03.716Z", + "0.0.1": "2010-12-19T22:37:03.716Z", + "0.0.2": "2010-12-19T22:37:03.716Z", + "0.1.0": "2010-12-19T22:37:03.716Z", + "0.2.0": "2010-12-19T22:37:03.716Z", + "0.2.1": "2010-12-19T22:37:03.716Z", + "0.2.2": "2010-12-19T22:37:03.716Z", + "0.2.3": "2010-12-19T22:37:03.716Z", + "0.2.4": "2010-12-19T22:37:03.716Z", + "0.3.0": "2010-12-19T22:37:03.716Z", + "0.4.0": "2010-12-19T22:37:03.716Z", + "0.4.1": "2010-12-19T22:37:03.716Z", + "0.5.0": "2010-12-19T22:37:03.716Z", + "0.5.1": "2010-12-19T22:37:03.716Z", + "0.5.2": "2010-12-19T22:37:03.716Z", + "0.5.3": "2010-12-19T22:37:03.716Z", + "0.5.4": "2010-12-19T22:37:03.716Z", + "0.5.5": "2010-12-19T22:37:03.716Z", + "0.5.6": "2010-12-19T22:37:03.716Z", + "0.5.7": "2010-12-19T22:37:03.716Z", + "0.6.0": "2010-12-19T22:37:03.716Z", + "0.6.1": "2010-12-28T12:59:03.712Z", + "0.6.3": "2011-02-02T17:41:37.230Z", + "0.7.0": "2011-03-05T01:49:13.872Z", + "0.7.1": "2011-03-05T02:00:11.570Z", + "0.8.0": "2011-03-05T02:33:15.139Z", + "0.8.1": "2011-03-05T02:46:53.386Z", + "0.8.2": "2011-03-07T16:37:26.514Z", + "0.8.3": "2011-03-07T17:06:03.665Z", + "0.8.4": "2011-03-08T17:01:21.022Z", + "0.8.5": "2011-03-09T17:46:09.287Z", + "0.8.6": "2011-03-12T00:03:31.591Z", + "0.8.7": "2011-03-14T22:43:03.916Z", + "0.8.8": "2011-03-14T22:50:01.256Z", + "0.8.9": "2011-03-15T19:30:47.303Z", + "0.9.0": "2011-03-16T16:18:20.967Z", + "0.9.1": "2011-03-16T17:22:49.418Z", + "0.9.2": "2011-03-23T17:39:00.658Z", + "0.9.3": "2011-03-24T19:45:08.584Z", + "0.9.4": "2011-03-25T04:06:46.732Z", + "0.10.0": "2011-03-25T16:22:58.395Z", + "0.10.1": "2011-03-28T20:35:37.906Z", + "0.10.2": "2011-03-30T18:23:26.075Z", + "0.10.3": "2011-03-30T22:30:42.549Z", + "0.10.4": "2011-04-05T09:49:47.670Z", + "0.10.5": "2011-04-26T15:22:25.976Z", + "0.10.6": "2011-04-29T15:46:27.441Z", + "0.10.7": "2011-05-04T17:40:51.455Z", + "0.11.0": "2011-05-14T18:53:07.746Z", + "0.11.1": "2011-06-01T17:05:28.737Z", + "0.12.0": "2011-06-03T20:23:57.555Z", + "0.12.1": "2011-06-04T18:28:36.138Z", + "0.12.2": "2011-06-16T17:41:40.421Z", + "0.12.3": "2011-06-21T18:55:34.290Z", + "0.12.4": "2011-06-23T20:40:33.517Z", + "0.13.0": "2011-07-13T23:03:50.378Z", + "0.14.0": "2011-08-11T15:16:59.109Z", + "0.14.1": "2011-08-14T17:58:16.244Z", + "0.14.2": "2011-08-16T16:15:11.359Z", + "0.15.0": "2011-08-26T18:32:58.076Z", + "0.15.1": "2011-08-26T20:55:06.558Z", + "0.15.2": "2011-08-26T21:50:56.217Z", + "0.15.3": "2011-08-30T16:04:44.783Z", + "0.15.4": "2011-09-05T18:15:33.479Z", + "0.16.0": "2011-09-26T18:32:12.395Z", + "0.16.1": "2011-09-30T00:42:48.512Z", + "0.16.2": "2011-09-30T16:48:46.788Z", + "0.16.3": "2011-10-24T15:59:43.902Z", + "0.16.4": "2011-10-24T23:15:28.457Z", + "0.17.0": "2011-11-10T21:54:15.185Z", + "0.18.0": "2011-11-24T16:22:55.301Z", + "0.19.0": "2011-12-02T23:20:33.882Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/visionmedia/jade.git" + }, + "users": { + "coverslide": true, + "vesln": true, + "deedubs": true, + "pid": true + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jade/0.0.1", + "0.0.2": "http://registry.npmjs.org/jade/0.0.2", + "0.1.0": "http://registry.npmjs.org/jade/0.1.0", + "0.2.0": "http://registry.npmjs.org/jade/0.2.0", + "0.2.1": "http://registry.npmjs.org/jade/0.2.1", + "0.2.2": "http://registry.npmjs.org/jade/0.2.2", + "0.2.3": "http://registry.npmjs.org/jade/0.2.3", + "0.2.4": "http://registry.npmjs.org/jade/0.2.4", + "0.3.0": "http://registry.npmjs.org/jade/0.3.0", + "0.4.0": "http://registry.npmjs.org/jade/0.4.0", + "0.4.1": "http://registry.npmjs.org/jade/0.4.1", + "0.5.0": "http://registry.npmjs.org/jade/0.5.0", + "0.5.1": "http://registry.npmjs.org/jade/0.5.1", + "0.5.2": "http://registry.npmjs.org/jade/0.5.2", + "0.5.3": "http://registry.npmjs.org/jade/0.5.3", + "0.5.4": "http://registry.npmjs.org/jade/0.5.4", + "0.5.5": "http://registry.npmjs.org/jade/0.5.5", + "0.5.6": "http://registry.npmjs.org/jade/0.5.6", + "0.5.7": "http://registry.npmjs.org/jade/0.5.7", + "0.6.0": "http://registry.npmjs.org/jade/0.6.0", + "0.6.1": "http://registry.npmjs.org/jade/0.6.1", + "0.6.3": "http://registry.npmjs.org/jade/0.6.3", + "0.7.0": "http://registry.npmjs.org/jade/0.7.0", + "0.7.1": "http://registry.npmjs.org/jade/0.7.1", + "0.8.0": "http://registry.npmjs.org/jade/0.8.0", + "0.8.1": "http://registry.npmjs.org/jade/0.8.1", + "0.8.2": "http://registry.npmjs.org/jade/0.8.2", + "0.8.3": "http://registry.npmjs.org/jade/0.8.3", + "0.8.4": "http://registry.npmjs.org/jade/0.8.4", + "0.8.5": "http://registry.npmjs.org/jade/0.8.5", + "0.8.6": "http://registry.npmjs.org/jade/0.8.6", + "0.8.7": "http://registry.npmjs.org/jade/0.8.7", + "0.8.8": "http://registry.npmjs.org/jade/0.8.8", + "0.8.9": "http://registry.npmjs.org/jade/0.8.9", + "0.9.0": "http://registry.npmjs.org/jade/0.9.0", + "0.9.1": "http://registry.npmjs.org/jade/0.9.1", + "0.9.2": "http://registry.npmjs.org/jade/0.9.2", + "0.9.3": "http://registry.npmjs.org/jade/0.9.3", + "0.10.0": "http://registry.npmjs.org/jade/0.10.0", + "0.10.1": "http://registry.npmjs.org/jade/0.10.1", + "0.10.2": "http://registry.npmjs.org/jade/0.10.2", + "0.10.3": "http://registry.npmjs.org/jade/0.10.3", + "0.10.4": "http://registry.npmjs.org/jade/0.10.4", + "0.10.5": "http://registry.npmjs.org/jade/0.10.5", + "0.10.6": "http://registry.npmjs.org/jade/0.10.6", + "0.10.7": "http://registry.npmjs.org/jade/0.10.7", + "0.11.0": "http://registry.npmjs.org/jade/0.11.0", + "0.11.1": "http://registry.npmjs.org/jade/0.11.1", + "0.12.0": "http://registry.npmjs.org/jade/0.12.0", + "0.12.1": "http://registry.npmjs.org/jade/0.12.1", + "0.12.2": "http://registry.npmjs.org/jade/0.12.2", + "0.12.3": "http://registry.npmjs.org/jade/0.12.3", + "0.12.4": "http://registry.npmjs.org/jade/0.12.4", + "0.13.0": "http://registry.npmjs.org/jade/0.13.0", + "0.14.0": "http://registry.npmjs.org/jade/0.14.0", + "0.14.1": "http://registry.npmjs.org/jade/0.14.1", + "0.14.2": "http://registry.npmjs.org/jade/0.14.2", + "0.15.0": "http://registry.npmjs.org/jade/0.15.0", + "0.15.1": "http://registry.npmjs.org/jade/0.15.1", + "0.15.2": "http://registry.npmjs.org/jade/0.15.2", + "0.15.3": "http://registry.npmjs.org/jade/0.15.3", + "0.15.4": "http://registry.npmjs.org/jade/0.15.4", + "0.16.0": "http://registry.npmjs.org/jade/0.16.0", + "0.16.1": "http://registry.npmjs.org/jade/0.16.1", + "0.16.2": "http://registry.npmjs.org/jade/0.16.2", + "0.16.3": "http://registry.npmjs.org/jade/0.16.3", + "0.16.4": "http://registry.npmjs.org/jade/0.16.4", + "0.17.0": "http://registry.npmjs.org/jade/0.17.0", + "0.18.0": "http://registry.npmjs.org/jade/0.18.0", + "0.19.0": "http://registry.npmjs.org/jade/0.19.0" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/jade/-/jade-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/jade/-/jade-0.0.2.tgz" + }, + "0.1.0": { + "tarball": "http://registry.npmjs.org/jade/-/jade-0.1.0.tgz" + }, + "0.2.0": { + "tarball": "http://registry.npmjs.org/jade/-/jade-0.2.0.tgz" + }, + "0.2.1": { + "tarball": "http://registry.npmjs.org/jade/-/jade-0.2.1.tgz" + }, + "0.2.2": { + "tarball": "http://registry.npmjs.org/jade/-/jade-0.2.2.tgz" + }, + "0.2.3": { + "tarball": "http://registry.npmjs.org/jade/-/jade-0.2.3.tgz" + }, + "0.2.4": { + "tarball": "http://registry.npmjs.org/jade/-/jade-0.2.4.tgz" + }, + "0.3.0": { + "tarball": "http://registry.npmjs.org/jade/-/jade-0.3.0.tgz" + }, + "0.4.0": { + "tarball": "http://registry.npmjs.org/jade/-/jade-0.4.0.tgz" + }, + "0.4.1": { + "tarball": "http://registry.npmjs.org/jade/-/jade-0.4.1.tgz" + }, + "0.5.0": { + "tarball": "http://registry.npmjs.org/jade/-/jade-0.5.0.tgz" + }, + "0.5.1": { + "tarball": "http://registry.npmjs.org/jade/-/jade-0.5.1.tgz" + }, + "0.5.2": { + "tarball": "http://registry.npmjs.org/jade/-/jade-0.5.2.tgz" + }, + "0.5.3": { + "tarball": "http://registry.npmjs.org/jade/-/jade-0.5.3.tgz" + }, + "0.5.4": { + "tarball": "http://registry.npmjs.org/jade/-/jade-0.5.4.tgz" + }, + "0.5.5": { + "tarball": "http://registry.npmjs.org/jade/-/jade-0.5.5.tgz" + }, + "0.5.6": { + "tarball": "http://registry.npmjs.org/jade/-/jade-0.5.6.tgz" + }, + "0.5.7": { + "shasum": "268ec75f0722906ee8b0a828fae7c2ef2943e841", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.5.7.tgz" + }, + "0.6.0": { + "shasum": "d2fc539c278d83ea9578b92dfb860808a980dde8", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "5dabcfabbdc7bbd47b25ce556a7fb6dba97a5fd2", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.6.1.tgz" + }, + "0.6.3": { + "shasum": "4fb43aedba8df180b6352cfd3d1a2e478ae98dd3", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.6.3.tgz" + }, + "0.7.0": { + "shasum": "b01c739991dbc18baa0b9d3c26572b30651f29ed", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.7.0.tgz" + }, + "0.7.1": { + "shasum": "61728d5ca44b5f7260f9525d4253642aa250ea57", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.7.1.tgz" + }, + "0.8.0": { + "shasum": "f09aeb7e840b1b4e4189c8cf269a4207d36c7d12", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.8.0.tgz" + }, + "0.8.1": { + "shasum": "bb46454f12811e4f97273e9ddf8e0bfab885f58b", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.8.1.tgz" + }, + "0.8.2": { + "shasum": "377c82c11da23739c0ee0a7b19cc137193198b06", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.8.2.tgz" + }, + "0.8.3": { + "shasum": "967b0d590ef3db8f7bd800721cef0827692171f1", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.8.3.tgz" + }, + "0.8.4": { + "shasum": "67d6df1915a98ff67b4b2f0dc4510531faa15ae2", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.8.4.tgz" + }, + "0.8.5": { + "shasum": "d3573352a8dcc83526d0148c4c8ee88111817471", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.8.5.tgz" + }, + "0.8.6": { + "shasum": "6f3215230de87689be1942e4d248911d087be161", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.8.6.tgz" + }, + "0.8.7": { + "shasum": "290f153232785be7a3d2173045b06a3857ec9903", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.8.7.tgz" + }, + "0.8.8": { + "shasum": "a721b05c560c86ddd7f658c6252471bb07cad4cb", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.8.8.tgz" + }, + "0.8.9": { + "shasum": "17052e1668b7cb814d34f23c9e1d276d21d2ebc4", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.8.9.tgz" + }, + "0.9.0": { + "shasum": "5a413c62ee4f415088d971f1cb70ddcb32e21ec6", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.9.0.tgz" + }, + "0.9.1": { + "shasum": "297e613c6d0560ae506fd66fbe7b65fcacd48141", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.9.1.tgz" + }, + "0.9.2": { + "shasum": "f1fb6266421ba2a8e8c56d34543a052e376546ad", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.9.2.tgz" + }, + "0.9.3": { + "shasum": "8c7647d21c811ffc1bd937e7383f45d88ea07a51", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.9.3.tgz" + }, + "0.10.0": { + "shasum": "6a2f4a576bffe2342dd402018157cc705133dc52", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.10.0.tgz" + }, + "0.10.1": { + "shasum": "1e06e4846297d96a2f4ed9d40dc9c36d119ada14", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.10.1.tgz" + }, + "0.10.2": { + "shasum": "f4cdb8437ca52b2109b3cba068c8025088ceac2b", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.10.2.tgz" + }, + "0.10.3": { + "shasum": "063749f8c9f0931ca0fa259747ee7c485e113773", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.10.3.tgz" + }, + "0.10.4": { + "shasum": "6fdd6018d1deb8ac935f023f7f54192fb35b8b66", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.10.4.tgz" + }, + "0.10.5": { + "shasum": "1f5555233b24e63a0417375f8419e6f631bb1bf9", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.10.5.tgz" + }, + "0.10.6": { + "shasum": "a8f2c5ae1f659c383b8eed13a2ec864d496c2c19", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.10.6.tgz" + }, + "0.10.7": { + "shasum": "b1d78799bb85c5e1d52dce6840e9bc69d9945224", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.10.7.tgz" + }, + "0.11.0": { + "shasum": "ed8494ab1f2552d469c68bb6e408c371dac053f8", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.11.0.tgz" + }, + "0.11.1": { + "shasum": "6604a44210b2cfc0b29cfa88c00930a371f293d1", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.11.1.tgz" + }, + "0.12.0": { + "shasum": "3a1d30d3c74a406b4e072b639fb82903a3db8b1f", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.12.0.tgz" + }, + "0.12.1": { + "shasum": "a8b3c25c0af866ad3cc5d1351819eced05e9b544", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.12.1.tgz" + }, + "0.12.2": { + "shasum": "024332bd841921cfef707d339c6a3eede905b827", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.12.2.tgz" + }, + "0.12.3": { + "shasum": "b6c080d5d634704b948832bb1f4d2c6bd1bf477f", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.12.3.tgz" + }, + "0.12.4": { + "shasum": "c3f446d1a65496287abd8a3118b90a6965239ad0", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.12.4.tgz" + }, + "0.13.0": { + "shasum": "b0b80b8c67759eb32fcc4e5d6cdd6f032f9b6c41", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.13.0.tgz" + }, + "0.14.0": { + "shasum": "6e22d76c2b84959846626e14a9ac448fcf7b5b3f", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.14.0.tgz" + }, + "0.14.1": { + "shasum": "cd44fff2e2362406853ebdaddff6089b1ca18c54", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.14.1.tgz" + }, + "0.14.2": { + "shasum": "18189ef89d51ca80e257cda9fd275deb6978f436", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.14.2.tgz" + }, + "0.15.0": { + "shasum": "6b5b626ee8d127d30c708f2e922c280bb56fdd33", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.15.0.tgz" + }, + "0.15.1": { + "shasum": "62ebd0037d16590b7cd94ef0ca1ac21171a1302d", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.15.1.tgz" + }, + "0.15.2": { + "shasum": "3bb540762e1c5dd4912647009ebab121bdff9992", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.15.2.tgz" + }, + "0.15.3": { + "shasum": "91dd5cf8213f9ec8ea9ed21bd93c615bdba218a4", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.15.3.tgz" + }, + "0.15.4": { + "shasum": "fd3835a955e0365052ba06dc465fcd2c619997b0", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.15.4.tgz" + }, + "0.16.0": { + "shasum": "00a88b887958b93106cdd5a78ee07842e08d70f7", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.16.0.tgz" + }, + "0.16.1": { + "shasum": "68438a44fbfabd29c6227e1a6f3eb08ddb928425", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.16.1.tgz" + }, + "0.16.2": { + "shasum": "514de77b161b9101a9a65eb4f1553fcf395c618a", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.16.2.tgz" + }, + "0.16.3": { + "shasum": "b76d473bea61ac551d1f0785b4d423dc442d0779", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.16.3.tgz" + }, + "0.16.4": { + "shasum": "0bc3378930b173c44a535964557c2ed6c3cb6cd7", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.16.4.tgz" + }, + "0.17.0": { + "shasum": "44ef71a52a631d4c58c99e2fe5d996dc9bb028b8", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.17.0.tgz" + }, + "0.18.0": { + "shasum": "2868cc3f4686b37be59becc506b7c79b254888e6", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.18.0.tgz" + }, + "0.19.0": { + "shasum": "f4225c5e34230d9d09d4d8f515df579dda47de94", + "tarball": "http://registry.npmjs.org/jade/-/jade-0.19.0.tgz" + } + }, + "url": "http://registry.npmjs.org/jade/" + }, + "jade-browser": { + "name": "jade-browser", + "description": "express/connect middleware that serves jade compiled templates to the browser", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "nw", + "email": "nw@nwhite.net" + }, + { + "name": "storify", + "email": "dev@storify.com" + } + ], + "time": { + "modified": "2011-10-22T01:49:10.571Z", + "created": "2011-08-17T22:35:54.613Z", + "0.0.1": "2011-08-17T22:35:55.104Z", + "0.0.2": "2011-08-17T23:50:13.007Z", + "0.0.4": "2011-10-22T01:45:25.872Z" + }, + "author": { + "name": "Storify", + "email": "dev@storify.com" + }, + "repository": { + "url": "https://github.com/storify/jade-browser/" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jade-browser/0.0.1", + "0.0.2": "http://registry.npmjs.org/jade-browser/0.0.2", + "0.0.4": "http://registry.npmjs.org/jade-browser/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "b1bc493a79515e1dd26a9f39043833f1832011bb", + "tarball": "http://registry.npmjs.org/jade-browser/-/jade-browser-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "d9fe2d5f19e987d8f2a7a74440e06d65c344ce13", + "tarball": "http://registry.npmjs.org/jade-browser/-/jade-browser-0.0.2.tgz" + }, + "0.0.4": { + "shasum": "70a9590b30d49d1bf1a35a7fe2eb17060cda8dfd", + "tarball": "http://registry.npmjs.org/jade-browser/-/jade-browser-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/jade-browser/" + }, + "jade-client-connect": { + "name": "jade-client-connect", + "description": "Jade Client Connect - A compiler to help use templates on a web client", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "sioked", + "email": "sioked@gmail.com" + } + ], + "time": { + "modified": "2011-09-13T03:02:10.471Z", + "created": "2011-09-11T20:49:41.148Z", + "0.0.1": "2011-09-11T20:49:41.924Z", + "0.0.2": "2011-09-13T03:02:10.471Z" + }, + "author": { + "name": "Ed Siok", + "email": "@sioked" + }, + "repository": { + "type": "git", + "url": "git://github.com/sioked/jade-client-connect.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jade-client-connect/0.0.1", + "0.0.2": "http://registry.npmjs.org/jade-client-connect/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "5c251dc6f8a098c275d8b54d9fc19fb1463a3601", + "tarball": "http://registry.npmjs.org/jade-client-connect/-/jade-client-connect-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "aa1cb88256c9f9ed91ffba83574727fcf8cc8ef3", + "tarball": "http://registry.npmjs.org/jade-client-connect/-/jade-client-connect-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/jade-client-connect/" + }, + "jade-ext": { + "name": "jade-ext", + "description": "RailwayJS adaptor for jade templating engine", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "anatoliy", + "email": "rpm1602@gmail.com" + } + ], + "time": { + "modified": "2011-09-22T14:24:52.223Z", + "created": "2011-06-09T19:23:59.776Z", + "0.0.1": "2011-06-09T19:24:00.640Z", + "0.0.2": "2011-09-22T14:13:57.558Z" + }, + "author": { + "name": "Anatoliy C." + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jade-ext/0.0.1", + "0.0.2": "http://registry.npmjs.org/jade-ext/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "9bd2045f0dfa9ea1644a72b1a3cc732e9fd9b18c", + "tarball": "http://registry.npmjs.org/jade-ext/-/jade-ext-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "cb39d57bfc40c8fcfb1e6e213f9065e80ded04f9", + "tarball": "http://registry.npmjs.org/jade-ext/-/jade-ext-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/jade-ext/" + }, + "jade-extension": { + "name": "jade-extension", + "description": "Adaptor for jade templating engine", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "alexferreira", + "email": "alex@dsol.com.br" + } + ], + "time": { + "modified": "2011-10-06T03:01:12.323Z", + "created": "2011-10-06T03:01:10.337Z", + "0.0.1": "2011-10-06T03:01:12.323Z" + }, + "author": { + "name": "Alex Ferreira" + }, + "repository": { + "type": "git", + "url": "git@bitbucket.org:sense8/jade-extension.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jade-extension/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "3b06d7404e4c3aa8d58c1c699f51a6288b0ea278", + "tarball": "http://registry.npmjs.org/jade-extension/-/jade-extension-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/jade-extension/" + }, + "jade-flatiron": { + "name": "jade-flatiron", + "description": "FlatironJs Jade Plugin", + "dist-tags": { + "latest": "0.0.2" + }, + "readme": null, + "maintainers": [ + { + "name": "beautifulnode", + "email": "tom@beautifulnode.com" + } + ], + "time": { + "modified": "2011-12-07T02:01:33.958Z", + "created": "2011-12-06T04:03:21.804Z", + "0.0.1": "2011-12-06T04:03:26.175Z", + "0.0.2": "2011-12-07T02:01:33.958Z" + }, + "author": { + "name": "Tom Wilson", + "email": "tom@beautifulnode.com" + }, + "repository": { + "url": "https://github.com/beautifulnode/jade-flatiron.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jade-flatiron/0.0.1", + "0.0.2": "http://registry.npmjs.org/jade-flatiron/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "ac5294cff7df64f3ad5a94d65bad5913ffe1b079", + "tarball": "http://registry.npmjs.org/jade-flatiron/-/jade-flatiron-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "b745109d50e841db08ff797f890555bf72ba74e2", + "tarball": "http://registry.npmjs.org/jade-flatiron/-/jade-flatiron-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/jade-flatiron/" + }, + "jade-i18n": { + "name": "jade-i18n", + "description": "Internationalization layer for jade", + "dist-tags": { + "latest": "0.6.0" + }, + "maintainers": [ + { + "name": "rauchg", + "email": "rauchg@gmail.com" + } + ], + "author": { + "name": "Guillermo Rauch", + "email": "guillermo@learnboost.com", + "url": "http://www.learnboost.com" + }, + "time": { + "modified": "2011-11-30T19:39:00.205Z", + "created": "2011-06-02T14:43:09.255Z", + "0.0.1": "2011-06-02T14:43:09.255Z", + "0.0.2": "2011-06-02T14:43:09.255Z", + "0.1.0": "2011-09-19T00:38:34.014Z", + "0.2.0": "2011-09-19T23:07:07.388Z", + "0.2.1": "2011-09-20T01:35:28.522Z", + "0.3.0": "2011-09-21T17:10:44.775Z", + "0.3.1": "2011-09-22T21:51:27.379Z", + "0.3.2": "2011-09-22T22:32:55.647Z", + "0.3.3": "2011-09-23T00:50:21.689Z", + "0.3.4": "2011-09-26T02:23:27.567Z", + "0.4.0": "2011-09-26T21:58:14.867Z", + "0.4.1": "2011-09-27T18:23:48.758Z", + "0.4.2": "2011-09-29T02:14:33.029Z", + "0.4.3": "2011-09-29T17:15:09.100Z", + "0.4.4": "2011-10-02T01:08:14.788Z", + "0.4.5": "2011-10-02T21:47:44.891Z", + "0.5.0": "2011-11-30T17:46:18.658Z", + "0.6.0": "2011-11-30T19:39:00.205Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/LearnBoost/cfg.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jade-i18n/0.0.1", + "0.0.2": "http://registry.npmjs.org/jade-i18n/0.0.2", + "0.1.0": "http://registry.npmjs.org/jade-i18n/0.1.0", + "0.2.0": "http://registry.npmjs.org/jade-i18n/0.2.0", + "0.2.1": "http://registry.npmjs.org/jade-i18n/0.2.1", + "0.3.0": "http://registry.npmjs.org/jade-i18n/0.3.0", + "0.3.1": "http://registry.npmjs.org/jade-i18n/0.3.1", + "0.3.2": "http://registry.npmjs.org/jade-i18n/0.3.2", + "0.3.3": "http://registry.npmjs.org/jade-i18n/0.3.3", + "0.3.4": "http://registry.npmjs.org/jade-i18n/0.3.4", + "0.4.0": "http://registry.npmjs.org/jade-i18n/0.4.0", + "0.4.1": "http://registry.npmjs.org/jade-i18n/0.4.1", + "0.4.2": "http://registry.npmjs.org/jade-i18n/0.4.2", + "0.4.3": "http://registry.npmjs.org/jade-i18n/0.4.3", + "0.4.4": "http://registry.npmjs.org/jade-i18n/0.4.4", + "0.4.5": "http://registry.npmjs.org/jade-i18n/0.4.5", + "0.5.0": "http://registry.npmjs.org/jade-i18n/0.5.0", + "0.6.0": "http://registry.npmjs.org/jade-i18n/0.6.0" + }, + "dist": { + "0.0.1": { + "shasum": "4d7f83666872c8c4a5cf577cff4cb4bc7c62bf69", + "tarball": "http://registry.npmjs.org/jade-i18n/-/jade-i18n-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "fe38a66ab7e2aba687c5e6bf20816c61fbe403ee", + "tarball": "http://registry.npmjs.org/jade-i18n/-/jade-i18n-0.0.2.tgz" + }, + "0.1.0": { + "shasum": "5695a7257461d42d1c0a1a6f70ff398e3a593085", + "tarball": "http://registry.npmjs.org/jade-i18n/-/jade-i18n-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "5bfc43c77d9ee47b0f1c8aef58e8dc04f1e7f326", + "tarball": "http://registry.npmjs.org/jade-i18n/-/jade-i18n-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "7e454dcb69b9838a39b99466cc1b1061e752fe3b", + "tarball": "http://registry.npmjs.org/jade-i18n/-/jade-i18n-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "2e5e8552d428fd17d6a4c66330d779e9e2e34598", + "tarball": "http://registry.npmjs.org/jade-i18n/-/jade-i18n-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "b2cce0a7e8b0048de33461f7ea1e1089985838f4", + "tarball": "http://registry.npmjs.org/jade-i18n/-/jade-i18n-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "84e8b5f7100e1b820edb2953473e60a110626fcb", + "tarball": "http://registry.npmjs.org/jade-i18n/-/jade-i18n-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "be10ef3be35da511197d7a9782652d9db90a51e5", + "tarball": "http://registry.npmjs.org/jade-i18n/-/jade-i18n-0.3.3.tgz" + }, + "0.3.4": { + "shasum": "0cabd8e75b8a7667ac84ae21b31e88ef78a8c5f3", + "tarball": "http://registry.npmjs.org/jade-i18n/-/jade-i18n-0.3.4.tgz" + }, + "0.4.0": { + "shasum": "5f9365d1aab9afdb9eb5ac477ac5ebb1536df3eb", + "tarball": "http://registry.npmjs.org/jade-i18n/-/jade-i18n-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "7597739d0cf98d2c9a58388ea04f6bb30e94ead9", + "tarball": "http://registry.npmjs.org/jade-i18n/-/jade-i18n-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "3373c8b26d39e7df8d1f902a944cef5a148948fb", + "tarball": "http://registry.npmjs.org/jade-i18n/-/jade-i18n-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "37b38e09b1cb5ac89d0374ee95a78aead2e1722f", + "tarball": "http://registry.npmjs.org/jade-i18n/-/jade-i18n-0.4.3.tgz" + }, + "0.4.4": { + "shasum": "4927b38968d3b52207b95959ae0afcec1dc491c2", + "tarball": "http://registry.npmjs.org/jade-i18n/-/jade-i18n-0.4.4.tgz" + }, + "0.4.5": { + "shasum": "2c6fe26f0e701d8e69bdc7cfee598a4b24651ad4", + "tarball": "http://registry.npmjs.org/jade-i18n/-/jade-i18n-0.4.5.tgz" + }, + "0.5.0": { + "shasum": "e6ab44a57bafc3da21e7123f2fb1cf7bc2fdc9c6", + "tarball": "http://registry.npmjs.org/jade-i18n/-/jade-i18n-0.5.0.tgz" + }, + "0.6.0": { + "shasum": "9d998e14a5fa21269d028dd60b5a3b1b513f8887", + "tarball": "http://registry.npmjs.org/jade-i18n/-/jade-i18n-0.6.0.tgz" + } + }, + "url": "http://registry.npmjs.org/jade-i18n/" + }, + "jade-ie": { + "name": "jade-ie", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "rauchg", + "email": "rauchg@gmail.com" + } + ], + "time": { + "modified": "2011-10-11T15:21:43.763Z", + "created": "2011-10-11T15:21:42.626Z", + "0.0.1": "2011-10-11T15:21:43.763Z" + }, + "author": { + "name": "Guillermo Rauch", + "email": "guillermo@learnboost.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jade-ie/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "f126dc6f23fe595f9a972c884e52f6a371ef88a4", + "tarball": "http://registry.npmjs.org/jade-ie/-/jade-ie-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/jade-ie/" + }, + "jade-serial": { + "name": "jade-serial", + "description": "Jade serialization module", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "rauchg", + "email": "rauchg@gmail.com" + } + ], + "time": { + "modified": "2011-06-02T15:34:27.089Z", + "created": "2011-06-02T15:34:26.056Z", + "0.0.1": "2011-06-02T15:34:27.089Z" + }, + "author": { + "name": "Guillermo Rauch", + "email": "guillermo@learnboost.com", + "url": "http://www.learnboost.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jade-serial/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "e6eb6bb159aa6739e6b6be7ac86344ac9494b419", + "tarball": "http://registry.npmjs.org/jade-serial/-/jade-serial-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/jade-serial/" + }, + "jadedown": { + "name": "jadedown", + "description": "A lightweight markup language", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "alexyoung", + "email": "alex@alexyoung.org" + } + ], + "time": { + "modified": "2011-08-04T19:04:41.635Z", + "created": "2011-07-31T22:02:48.672Z", + "0.0.1": "2011-07-31T22:02:49.493Z", + "0.0.2": "2011-08-04T09:19:20.742Z", + "0.0.3": "2011-08-04T18:56:11.798Z" + }, + "author": { + "name": "Alex R. Young", + "email": "alex@helicoid.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/alexyoung/jadedown.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jadedown/0.0.1", + "0.0.2": "http://registry.npmjs.org/jadedown/0.0.2", + "0.0.3": "http://registry.npmjs.org/jadedown/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "b3ee206917f4537ce6f773149525149ba4af7283", + "tarball": "http://registry.npmjs.org/jadedown/-/jadedown-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "e65ea33cebbc65f468c4bd2970c6a3774e1cf5ee", + "tarball": "http://registry.npmjs.org/jadedown/-/jadedown-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "a6625b5e8dbd56ed5752ca8556e42f6e43552c5b", + "tarball": "http://registry.npmjs.org/jadedown/-/jadedown-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/jadedown/" + }, + "jadeify": { + "name": "jadeify", + "description": "Browserify middleware to render jade templates browser-side", + "dist-tags": { + "latest": "0.3.1" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-07-11T10:18:51.866Z", + "created": "2011-05-28T06:02:07.702Z", + "0.0.1": "2011-05-28T06:02:08.506Z", + "0.0.3": "2011-05-29T01:41:20.479Z", + "0.1.0": "2011-05-30T05:11:41.150Z", + "0.2.0": "2011-06-27T21:20:30.141Z", + "0.2.1": "2011-07-03T09:44:51.069Z", + "0.2.2": "2011-07-04T10:17:54.960Z", + "0.3.0": "2011-07-08T10:40:33.212Z", + "0.3.1": "2011-07-11T10:18:51.866Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-jadeify.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jadeify/0.0.1", + "0.0.3": "http://registry.npmjs.org/jadeify/0.0.3", + "0.1.0": "http://registry.npmjs.org/jadeify/0.1.0", + "0.2.0": "http://registry.npmjs.org/jadeify/0.2.0", + "0.2.1": "http://registry.npmjs.org/jadeify/0.2.1", + "0.2.2": "http://registry.npmjs.org/jadeify/0.2.2", + "0.3.0": "http://registry.npmjs.org/jadeify/0.3.0", + "0.3.1": "http://registry.npmjs.org/jadeify/0.3.1" + }, + "dist": { + "0.0.1": { + "shasum": "a48f6af74564a8ec440de1b6e0b34c124a6ae6ac", + "tarball": "http://registry.npmjs.org/jadeify/-/jadeify-0.0.1.tgz" + }, + "0.0.3": { + "shasum": "261c6e5ac3c5d9f7b47052fa2517d6b74e0ff290", + "tarball": "http://registry.npmjs.org/jadeify/-/jadeify-0.0.3.tgz" + }, + "0.1.0": { + "shasum": "bc3a4512a5a8168476980c2911920a3d09759845", + "tarball": "http://registry.npmjs.org/jadeify/-/jadeify-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "30ddff96d2d24af61ab73f1ce20182d17d7d2417", + "tarball": "http://registry.npmjs.org/jadeify/-/jadeify-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "1556bf220ca27d02fa7e2e4a015ee5830cd5d84a", + "tarball": "http://registry.npmjs.org/jadeify/-/jadeify-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "f8ff57e1552b965fa639630552b4d23ce67c9893", + "tarball": "http://registry.npmjs.org/jadeify/-/jadeify-0.2.2.tgz" + }, + "0.3.0": { + "shasum": "270ce253e4180d545edfd4f77d000eb9db7a657d", + "tarball": "http://registry.npmjs.org/jadeify/-/jadeify-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "e982bcd41eba069e775ca78a36830a3d17079673", + "tarball": "http://registry.npmjs.org/jadeify/-/jadeify-0.3.1.tgz" + } + }, + "keywords": [ + "browserify", + "bundle", + "middleware", + "jade", + "template" + ], + "url": "http://registry.npmjs.org/jadeify/" + }, + "jadevu": { + "name": "jadevu", + "dist-tags": { + "latest": "0.0.9" + }, + "maintainers": [ + { + "name": "rauchg", + "email": "rauchg@gmail.com" + } + ], + "time": { + "modified": "2011-09-30T01:08:51.463Z", + "created": "2011-08-16T23:33:18.379Z", + "0.0.1": "2011-08-16T23:33:23.903Z", + "0.0.2": "2011-08-18T01:41:14.899Z", + "0.0.3": "2011-08-18T02:58:28.218Z", + "0.0.4": "2011-08-26T17:11:59.405Z", + "0.0.5": "2011-08-26T17:18:37.410Z", + "0.0.6": "2011-08-31T22:27:04.443Z", + "0.0.7": "2011-09-19T00:56:39.952Z", + "0.0.8": "2011-09-30T00:51:58.733Z", + "0.0.9": "2011-09-30T01:08:51.463Z" + }, + "author": { + "name": "Guillermo Rauch", + "email": "guillermo@learnboost.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jadevu/0.0.1", + "0.0.2": "http://registry.npmjs.org/jadevu/0.0.2", + "0.0.3": "http://registry.npmjs.org/jadevu/0.0.3", + "0.0.4": "http://registry.npmjs.org/jadevu/0.0.4", + "0.0.5": "http://registry.npmjs.org/jadevu/0.0.5", + "0.0.6": "http://registry.npmjs.org/jadevu/0.0.6", + "0.0.7": "http://registry.npmjs.org/jadevu/0.0.7", + "0.0.8": "http://registry.npmjs.org/jadevu/0.0.8", + "0.0.9": "http://registry.npmjs.org/jadevu/0.0.9" + }, + "dist": { + "0.0.1": { + "shasum": "8e395426247f38ee7d14a451009c4d08e9d33552", + "tarball": "http://registry.npmjs.org/jadevu/-/jadevu-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "4c6388edb66255253d3fc58f7f1dff97630278b1", + "tarball": "http://registry.npmjs.org/jadevu/-/jadevu-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "768a47e1bbb45415ef5caac9dae919a324580299", + "tarball": "http://registry.npmjs.org/jadevu/-/jadevu-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "5f83b00982d2fc41e5ba0145f013305f4d2ecb85", + "tarball": "http://registry.npmjs.org/jadevu/-/jadevu-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "beebb2bd150c37030b3ffe2a26964e7a9b762746", + "tarball": "http://registry.npmjs.org/jadevu/-/jadevu-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "b9a72ec830106faa118f11ed8d04158e76b60108", + "tarball": "http://registry.npmjs.org/jadevu/-/jadevu-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "7ebfc1cb4b91f8a39f055c721edd9871b69aa5a7", + "tarball": "http://registry.npmjs.org/jadevu/-/jadevu-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "c3552e3ec9b0c0a06438db9a561741cfaf22ec2e", + "tarball": "http://registry.npmjs.org/jadevu/-/jadevu-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "901f443279c0a736e0c780c4bf6aa263c6f2b08d", + "tarball": "http://registry.npmjs.org/jadevu/-/jadevu-0.0.9.tgz" + } + }, + "url": "http://registry.npmjs.org/jadevu/" + }, + "jah": { + "name": "jah", + "description": "Enable CommonJS in browser applications", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "ryanwilliams", + "email": "npm@wigg.ly" + } + ], + "time": { + "modified": "2011-12-10T00:38:55.999Z", + "created": "2011-08-22T20:50:18.918Z", + "0.0.1": "2011-08-22T20:50:20.464Z", + "0.0.2": "2011-11-13T09:37:31.896Z", + "0.0.3": "2011-12-10T00:38:55.999Z", + "0.0.4-beta": "2011-11-26T09:01:34.332Z", + "0.0.4-beta2": "2011-11-26T09:06:43.015Z" + }, + "author": { + "name": "Ryan Williams", + "email": "ryan@wigg.ly" + }, + "repository": { + "type": "git", + "url": "git://github.com/ryanwilliams/jah.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jah/0.0.1", + "0.0.2": "http://registry.npmjs.org/jah/0.0.2", + "0.0.3": "http://registry.npmjs.org/jah/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "48ee118b235fb356a54f8babe65c688238124245", + "tarball": "http://registry.npmjs.org/jah/-/jah-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "3b995843c9fd1975c61d3603272191f5e51923dc", + "tarball": "http://registry.npmjs.org/jah/-/jah-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "5a9dc323de41a0d470ecdce738af1a598ea71f21", + "tarball": "http://registry.npmjs.org/jah/-/jah-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/jah/" + }, + "jailguard": { + "name": "jailguard", + "description": "Safe Way to Run User Provided JavaScript with NodeJS", + "dist-tags": { + "latest": "0.1.7" + }, + "maintainers": [ + { + "name": "arunoda", + "email": "arunoda.susiripala@gmail.com" + } + ], + "time": { + "modified": "2011-10-23T12:36:40.115Z", + "created": "2011-10-19T15:54:05.209Z", + "0.1.1": "2011-10-19T15:54:10.908Z", + "0.1.2": "2011-10-19T16:15:02.377Z", + "0.1.3": "2011-10-19T16:18:47.335Z", + "0.1.4": "2011-10-22T16:51:34.433Z", + "0.1.5": "2011-10-22T22:15:36.506Z", + "0.1.6": "2011-10-22T22:31:18.018Z", + "0.1.7": "2011-10-23T12:36:40.115Z" + }, + "author": { + "name": "Arunoda Susiripala", + "email": "arunoda.susiripala@gmail.com" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/jailguard/0.1.1", + "0.1.2": "http://registry.npmjs.org/jailguard/0.1.2", + "0.1.3": "http://registry.npmjs.org/jailguard/0.1.3", + "0.1.4": "http://registry.npmjs.org/jailguard/0.1.4", + "0.1.5": "http://registry.npmjs.org/jailguard/0.1.5", + "0.1.6": "http://registry.npmjs.org/jailguard/0.1.6", + "0.1.7": "http://registry.npmjs.org/jailguard/0.1.7" + }, + "dist": { + "0.1.1": { + "shasum": "be7a83523b44cebf9af9a156a18c69ffe70f1014", + "tarball": "http://registry.npmjs.org/jailguard/-/jailguard-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "aa43c2488a000d0e44532a4c786fe452afe62d14", + "tarball": "http://registry.npmjs.org/jailguard/-/jailguard-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "9f0209cf8e29688a9c9c02b38410f220658fa5aa", + "tarball": "http://registry.npmjs.org/jailguard/-/jailguard-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "833d5ddfe9c0392f9765cf3facf2a9c64c14dd18", + "tarball": "http://registry.npmjs.org/jailguard/-/jailguard-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "143a59222e7e0c923940f9882ccd708d2c0b9005", + "tarball": "http://registry.npmjs.org/jailguard/-/jailguard-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "55e4edbdd6d0f995a5b9919819746807c81deafe", + "tarball": "http://registry.npmjs.org/jailguard/-/jailguard-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "b516a890d392a5f91b6215e95a4c5f7ec9c1f544", + "tarball": "http://registry.npmjs.org/jailguard/-/jailguard-0.1.7.tgz" + } + }, + "url": "http://registry.npmjs.org/jailguard/" + }, + "jake": { + "name": "jake", + "dist-tags": { + "latest": "0.1.22" + }, + "maintainers": [ + { + "name": "mde", + "email": "mde@fleegix.org" + } + ], + "author": { + "name": "Matthew Eernisse", + "email": "mde@fleegix.org", + "url": "http://fleegix.org" + }, + "time": { + "modified": "2011-12-01T04:03:57.775Z", + "created": "2011-03-26T22:06:58.184Z", + "0.1.0": "2011-03-26T22:06:58.184Z", + "0.1.2": "2011-03-26T22:06:58.184Z", + "0.1.3": "2011-03-26T22:06:58.184Z", + "0.1.4": "2011-03-26T22:06:58.184Z", + "0.1.5": "2011-03-26T22:06:58.184Z", + "0.1.6": "2011-03-26T22:06:58.184Z", + "0.1.7": "2011-03-26T22:06:58.184Z", + "0.1.8": "2011-03-26T22:06:58.184Z", + "0.1.9": "2011-03-26T22:06:58.184Z", + "0.1.10": "2011-03-27T18:53:08.445Z", + "0.1.11": "2011-04-16T22:17:08.870Z", + "0.1.12": "2011-04-25T04:47:24.967Z", + "0.1.13": "2011-06-30T06:42:03.660Z", + "0.1.14": "2011-07-06T03:29:05.375Z", + "0.1.16": "2011-09-18T19:38:43.673Z", + "0.1.17": "2011-09-19T00:20:34.002Z", + "0.1.18": "2011-09-28T04:01:42.666Z", + "0.1.19": "2011-10-04T01:43:56.456Z", + "0.1.20": "2011-11-15T21:59:53.882Z", + "0.1.21": "2011-11-26T22:01:52.868Z", + "0.1.22": "2011-12-01T04:03:57.775Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/mde/jake.git" + }, + "users": { + "mvolkmann": true + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/jake/0.1.0", + "0.1.2": "http://registry.npmjs.org/jake/0.1.2", + "0.1.3": "http://registry.npmjs.org/jake/0.1.3", + "0.1.4": "http://registry.npmjs.org/jake/0.1.4", + "0.1.5": "http://registry.npmjs.org/jake/0.1.5", + "0.1.6": "http://registry.npmjs.org/jake/0.1.6", + "0.1.7": "http://registry.npmjs.org/jake/0.1.7", + "0.1.8": "http://registry.npmjs.org/jake/0.1.8", + "0.1.9": "http://registry.npmjs.org/jake/0.1.9", + "0.1.10": "http://registry.npmjs.org/jake/0.1.10", + "0.1.11": "http://registry.npmjs.org/jake/0.1.11", + "0.1.12": "http://registry.npmjs.org/jake/0.1.12", + "0.1.13": "http://registry.npmjs.org/jake/0.1.13", + "0.1.14": "http://registry.npmjs.org/jake/0.1.14", + "0.1.16": "http://registry.npmjs.org/jake/0.1.16", + "0.1.17": "http://registry.npmjs.org/jake/0.1.17", + "0.1.18": "http://registry.npmjs.org/jake/0.1.18", + "0.1.19": "http://registry.npmjs.org/jake/0.1.19", + "0.1.20": "http://registry.npmjs.org/jake/0.1.20", + "0.1.21": "http://registry.npmjs.org/jake/0.1.21", + "0.1.22": "http://registry.npmjs.org/jake/0.1.22" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/jake/-/jake-0.1.0.tgz" + }, + "0.1.2": { + "tarball": "http://packages:5984/jake/-/jake-0.1.2.tgz" + }, + "0.1.3": { + "tarball": "http://packages:5984/jake/-/jake-0.1.3.tgz" + }, + "0.1.4": { + "tarball": "http://packages:5984/jake/-/jake-0.1.4.tgz" + }, + "0.1.5": { + "tarball": "http://packages:5984/jake/-/jake-0.1.5.tgz" + }, + "0.1.6": { + "tarball": "http://packages:5984/jake/-/jake-0.1.6.tgz" + }, + "0.1.7": { + "tarball": "http://packages:5984/jake/-/jake-0.1.7.tgz" + }, + "0.1.8": { + "tarball": "http://registry.npmjs.org/jake/-/jake-0.1.8.tgz" + }, + "0.1.9": { + "tarball": "http://registry.npmjs.org/jake/-/jake-0.1.9.tgz" + }, + "0.1.10": { + "tarball": "http://registry.npmjs.org/jake/-/jake-0.1.10.tgz" + }, + "0.1.11": { + "shasum": "9b3fd2dd0185734b008e5bd0909e46191f09df2c", + "tarball": "http://registry.npmjs.org/jake/-/jake-0.1.11.tgz" + }, + "0.1.12": { + "shasum": "b7f739b2a93832b9fd0204250b129d1dde806360", + "tarball": "http://registry.npmjs.org/jake/-/jake-0.1.12.tgz" + }, + "0.1.13": { + "shasum": "243aec7e447504626a76fdcac80c2f855d3f1b34", + "tarball": "http://registry.npmjs.org/jake/-/jake-0.1.13.tgz" + }, + "0.1.14": { + "shasum": "74afb3e2166b804115f6cbe5d8b39b15184a98cc", + "tarball": "http://registry.npmjs.org/jake/-/jake-0.1.14.tgz" + }, + "0.1.16": { + "shasum": "aa64c8398acaf5ab4eeacdd6c07b4c76598c3c30", + "tarball": "http://registry.npmjs.org/jake/-/jake-0.1.16.tgz" + }, + "0.1.17": { + "shasum": "8fa27ca4cbab59b28bb28710b4b503729d0b133f", + "tarball": "http://registry.npmjs.org/jake/-/jake-0.1.17.tgz" + }, + "0.1.18": { + "shasum": "7c5a37819d177b732a39bbabdbb277c42e9a91f5", + "tarball": "http://registry.npmjs.org/jake/-/jake-0.1.18.tgz" + }, + "0.1.19": { + "shasum": "b9a0f50e088e6f28a1ae01917355e578c45fd3e4", + "tarball": "http://registry.npmjs.org/jake/-/jake-0.1.19.tgz" + }, + "0.1.20": { + "shasum": "198bab63f4ddfd454d54307705b7feb3ae695e65", + "tarball": "http://registry.npmjs.org/jake/-/jake-0.1.20.tgz" + }, + "0.1.21": { + "shasum": "e8f3347d611d9c1011315b6b6d1e8c84621be0cd", + "tarball": "http://registry.npmjs.org/jake/-/jake-0.1.21.tgz" + }, + "0.1.22": { + "shasum": "f3b3bd1f4e91189d167427ae2afb17f98cbdf0f6", + "tarball": "http://registry.npmjs.org/jake/-/jake-0.1.22.tgz" + } + }, + "url": "http://registry.npmjs.org/jake/" + }, + "jake-uglify": { + "name": "jake-uglify", + "description": "Uglify helper for jake", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "bitcoinjs", + "email": "bitcoinjs@justmoon.net" + } + ], + "time": { + "modified": "2011-09-26T17:47:45.511Z", + "created": "2011-09-26T13:58:50.948Z", + "1.0.0": "2011-09-26T13:58:52.706Z", + "1.0.1": "2011-09-26T17:47:45.511Z" + }, + "author": { + "name": "Stefan Thomas", + "email": "justmoon@members.fsf.org", + "url": "http://www.justmoon.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/justmoon/node-jake-uglify.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/jake-uglify/1.0.0", + "1.0.1": "http://registry.npmjs.org/jake-uglify/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "6ed247b34c6d4fdb70574deab6720fe96fa78107", + "tarball": "http://registry.npmjs.org/jake-uglify/-/jake-uglify-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "57b122817228536f1fe774e2fec73c30b4061d83", + "tarball": "http://registry.npmjs.org/jake-uglify/-/jake-uglify-1.0.1.tgz" + } + }, + "keywords": [ + "minify", + "uglify", + "build", + "jake" + ], + "url": "http://registry.npmjs.org/jake-uglify/" + }, + "jammit-express": { + "name": "jammit-express", + "description": "Jammit Helpers for Express.js", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "neyric", + "email": "eric.abouaf@gmail.com" + } + ], + "author": { + "name": "Eric Abouaf", + "email": "eric.abouaf@gmail.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/neyric/jammit-express.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jammit-express/0.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/jammit-express/-/jammit-express-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/jammit-express/" + }, + "janitor": { + "name": "janitor", + "description": "Coffeescript unit test framework for node and the browser heavily inspired by Ruby's Test::Unit.", + "dist-tags": { + "latest": "0.1.1" + }, + "readme": null, + "maintainers": [ + { + "name": "rrn", + "email": "rasmusrnielsen@gmail.com" + } + ], + "time": { + "modified": "2011-11-22T22:24:33.129Z", + "created": "2011-11-22T22:24:31.418Z", + "0.1.1": "2011-11-22T22:24:33.129Z" + }, + "author": { + "name": "Rasmus Rønn Nielsen", + "email": "rasmusrnielsen@gmail.com" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/janitor/0.1.1" + }, + "dist": { + "0.1.1": { + "shasum": "418d14a2c08935e05e1379323b905c4e10b3aab2", + "tarball": "http://registry.npmjs.org/janitor/-/janitor-0.1.1.tgz" + } + }, + "keywords": [ + "testing" + ], + "url": "http://registry.npmjs.org/janitor/" + }, + "janrain": { + "name": "janrain", + "description": "Node API for Janrain", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "podviaznikov", + "email": "podviaznikov@gmail.com" + } + ], + "time": { + "modified": "2011-01-16T14:25:05.269Z", + "created": "2011-01-16T14:05:26.818Z", + "0.0.2": "2011-01-16T14:05:27.485Z", + "0.0.3": "2011-01-16T14:25:05.269Z" + }, + "author": { + "name": "Anton Podviaznikov", + "email": "podviaznikov@gmail.com" + }, + "repository": "git://github.com/podviaznikov/node-janrain-api.git", + "versions": { + "0.0.2": "http://registry.npmjs.org/janrain/0.0.2", + "0.0.3": "http://registry.npmjs.org/janrain/0.0.3" + }, + "dist": { + "0.0.2": { + "shasum": "f5e6fadd0895901964fa4e55c64b5cea777c77cb", + "tarball": "http://registry.npmjs.org/janrain/-/janrain-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "782e9007530b01f3e4440e8645cf532b9bae053c", + "tarball": "http://registry.npmjs.org/janrain/-/janrain-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/janrain/" + }, + "janrain-api": { + "name": "janrain-api", + "description": "Janrain Engage API", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "demetriusj", + "email": "contact@demetriusj.com" + } + ], + "time": { + "modified": "2011-05-19T12:44:59.680Z", + "created": "2011-05-19T12:44:59.421Z", + "0.0.1": "2011-05-19T12:44:59.680Z" + }, + "author": { + "name": "Demetrius Johnson", + "email": "demetriusj", + "url": "http://demetriusj.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/demetriusj/janrain.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/janrain-api/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "6529b539e72c0120e5c5f867435c7629ed000e29", + "tarball": "http://registry.npmjs.org/janrain-api/-/janrain-api-0.0.1.tgz" + } + }, + "keywords": [ + "janrain", + "api", + "wrapper", + "RPX" + ], + "url": "http://registry.npmjs.org/janrain-api/" + }, + "jaque": { + "name": "jaque", + "description": "Q HTTP Begin-, Middle-, and End-wares", + "dist-tags": { + "latest": "1.3.0" + }, + "maintainers": [ + { + "name": "kriskowal", + "email": "kris.kowal@cixar.com" + } + ], + "repository": { + "type": "git", + "url": "git://github.com/kriskowal/jaque.git" + }, + "time": { + "modified": "2011-11-01T20:17:45.438Z", + "created": "2011-06-15T03:14:19.771Z", + "0.1.1": "2011-06-15T03:14:19.771Z", + "0.1.2": "2011-06-15T03:14:19.771Z", + "0.1.3": "2011-06-15T03:14:19.771Z", + "0.1.4": "2011-06-15T03:14:19.771Z", + "0.1.6": "2011-06-15T03:14:19.771Z", + "0.1.7": "2011-06-15T03:14:19.771Z", + "0.1.8": "2011-06-15T03:14:19.771Z", + "0.1.9": "2011-06-15T03:14:19.771Z", + "0.1.10": "2011-06-22T21:16:02.955Z", + "0.1.11": "2011-06-23T20:44:01.088Z", + "0.1.12": "2011-08-11T22:26:21.280Z", + "0.1.13": "2011-08-31T21:50:28.035Z", + "0.1.15": "2011-09-20T19:15:58.417Z", + "0.1.16": "2011-09-22T05:11:57.625Z", + "0.1.18": "2011-09-27T16:59:19.841Z", + "0.1.19": "2011-09-29T22:39:12.561Z", + "1.0.0": "2011-10-12T01:38:55.422Z", + "1.1.0": "2011-10-13T21:00:28.858Z", + "1.2.2": "2011-11-01T19:58:36.944Z", + "1.3.0": "2011-11-01T20:17:45.438Z" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/jaque/0.1.1", + "0.1.2": "http://registry.npmjs.org/jaque/0.1.2", + "0.1.3": "http://registry.npmjs.org/jaque/0.1.3", + "0.1.4": "http://registry.npmjs.org/jaque/0.1.4", + "0.1.6": "http://registry.npmjs.org/jaque/0.1.6", + "0.1.7": "http://registry.npmjs.org/jaque/0.1.7", + "0.1.8": "http://registry.npmjs.org/jaque/0.1.8", + "0.1.9": "http://registry.npmjs.org/jaque/0.1.9", + "0.1.10": "http://registry.npmjs.org/jaque/0.1.10", + "0.1.11": "http://registry.npmjs.org/jaque/0.1.11", + "0.1.12": "http://registry.npmjs.org/jaque/0.1.12", + "0.1.13": "http://registry.npmjs.org/jaque/0.1.13", + "0.1.15": "http://registry.npmjs.org/jaque/0.1.15", + "0.1.16": "http://registry.npmjs.org/jaque/0.1.16", + "0.1.18": "http://registry.npmjs.org/jaque/0.1.18", + "0.1.19": "http://registry.npmjs.org/jaque/0.1.19", + "1.0.0": "http://registry.npmjs.org/jaque/1.0.0", + "1.1.0": "http://registry.npmjs.org/jaque/1.1.0", + "1.2.2": "http://registry.npmjs.org/jaque/1.2.2", + "1.3.0": "http://registry.npmjs.org/jaque/1.3.0" + }, + "dist": { + "0.1.1": { + "tarball": "http://packages:5984/jaque/-/jaque-0.1.1.tgz" + }, + "0.1.2": { + "tarball": "http://packages:5984/jaque/-/jaque-0.1.2.tgz" + }, + "0.1.3": { + "tarball": "http://packages:5984/jaque/-/jaque-0.1.3.tgz" + }, + "0.1.4": { + "tarball": "http://packages:5984/jaque/-/jaque-0.1.4.tgz" + }, + "0.1.6": { + "tarball": "http://packages:5984/jaque/-/jaque-0.1.6.tgz" + }, + "0.1.7": { + "tarball": "http://packages:5984/jaque/-/jaque-0.1.7.tgz" + }, + "0.1.8": { + "tarball": "http://registry.npmjs.org/jaque/-/jaque-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "f01da0a54206c56c152f2cceb345c268011395c8", + "tarball": "http://registry.npmjs.org/jaque/-/jaque-0.1.9.tgz" + }, + "0.1.10": { + "shasum": "7e71c5cae6a2b39eaa7fed8c160d57df3814638f", + "tarball": "http://registry.npmjs.org/jaque/-/jaque-0.1.10.tgz" + }, + "0.1.11": { + "shasum": "0208692f95bd24460cc8b991fb540e1c03015a0d", + "tarball": "http://registry.npmjs.org/jaque/-/jaque-0.1.11.tgz" + }, + "0.1.12": { + "shasum": "3e31ea3edc3a37a77fa22704f0e8328163fde97c", + "tarball": "http://registry.npmjs.org/jaque/-/jaque-0.1.12.tgz" + }, + "0.1.13": { + "shasum": "fcd5dbe8c3e789a04198be2a15fd4ae8a8de670a", + "tarball": "http://registry.npmjs.org/jaque/-/jaque-0.1.13.tgz" + }, + "0.1.15": { + "shasum": "cf88fee7f285ad855893504407b8ae985f4b1c4e", + "tarball": "http://registry.npmjs.org/jaque/-/jaque-0.1.15.tgz" + }, + "0.1.16": { + "shasum": "501a53a58e08a7aa19f366047c66296b7749810b", + "tarball": "http://registry.npmjs.org/jaque/-/jaque-0.1.16.tgz" + }, + "0.1.18": { + "shasum": "0652eaabb6a3f30a7179aeb5be8e4ca3c7d1b697", + "tarball": "http://registry.npmjs.org/jaque/-/jaque-0.1.18.tgz" + }, + "0.1.19": { + "shasum": "6215230bb7d4ff0e91f8ee76b703d617e73e2458", + "tarball": "http://registry.npmjs.org/jaque/-/jaque-0.1.19.tgz" + }, + "1.0.0": { + "shasum": "70817a6d08caf868f6992d5ab90050220a544291", + "tarball": "http://registry.npmjs.org/jaque/-/jaque-1.0.0.tgz" + }, + "1.1.0": { + "shasum": "0860819716ebe5dcbe413bca67f5529cdd879a1c", + "tarball": "http://registry.npmjs.org/jaque/-/jaque-1.1.0.tgz" + }, + "1.2.2": { + "shasum": "b291d8ee174ee79650c25574ba7e750bdd1b04be", + "tarball": "http://registry.npmjs.org/jaque/-/jaque-1.2.2.tgz" + }, + "1.3.0": { + "shasum": "6cc0cea3479bcabefb00fce77e80dc578f6cb3f2", + "tarball": "http://registry.npmjs.org/jaque/-/jaque-1.3.0.tgz" + } + }, + "keywords": [ + "http", + "route", + "middleware", + "q", + "jack" + ], + "url": "http://registry.npmjs.org/jaque/" + }, + "jar": { + "name": "jar", + "description": "Basic cookie handling", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "amccollum", + "email": "amccollum+npm@gmail.com" + } + ], + "time": { + "modified": "2011-11-09T19:57:00.551Z", + "created": "2011-11-09T19:57:00.165Z", + "0.1.0": "2011-11-09T19:57:00.551Z" + }, + "author": { + "name": "Andrew McCollum", + "email": "amccollum@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/jar/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "f68c2c0550246924f31d093bbfc44af9ac07cf2e", + "tarball": "http://registry.npmjs.org/jar/-/jar-0.1.0.tgz" + } + }, + "keywords": [ + "ender", + "cookies" + ], + "url": "http://registry.npmjs.org/jar/" + }, + "jarvis": { + "name": "jarvis", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "broofa", + "email": "robert@broofa.com" + } + ], + "time": { + "modified": "2011-09-10T14:23:35.053Z", + "created": "2011-09-10T14:23:33.696Z", + "0.0.1": "2011-09-10T14:23:35.053Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jarvis/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "b98548beebe27a6cbc1e21efbcf09a22b6fb0890", + "tarball": "http://registry.npmjs.org/jarvis/-/jarvis-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/jarvis/" + }, + "jarvis-test": { + "name": "jarvis-test", + "description": "Client-side/server-side unit testing framework.", + "dist-tags": { + "latest": "2.0.3" + }, + "maintainers": [ + { + "name": "tmont", + "email": "tmont@tmont.com" + } + ], + "time": { + "modified": "2011-11-03T08:16:36.656Z", + "created": "2011-09-19T18:20:20.321Z", + "2.0.0": "2011-09-19T18:20:20.974Z", + "2.0.1": "2011-09-19T18:49:54.965Z", + "2.0.2": "2011-10-13T18:25:57.123Z", + "2.0.3": "2011-11-03T08:16:36.656Z" + }, + "author": { + "name": "Tommy Montgomery", + "email": "tmont@tmont.com", + "url": "http://tmont.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/tmont/jarvis.git" + }, + "versions": { + "2.0.0": "http://registry.npmjs.org/jarvis-test/2.0.0", + "2.0.1": "http://registry.npmjs.org/jarvis-test/2.0.1", + "2.0.2": "http://registry.npmjs.org/jarvis-test/2.0.2", + "2.0.3": "http://registry.npmjs.org/jarvis-test/2.0.3" + }, + "dist": { + "2.0.0": { + "shasum": "973b5a73e6d4da48f300f6a685565d44a18c0faa", + "tarball": "http://registry.npmjs.org/jarvis-test/-/jarvis-test-2.0.0.tgz" + }, + "2.0.1": { + "shasum": "cda1045af88bc3a513830f740d8e54296ff1a82f", + "tarball": "http://registry.npmjs.org/jarvis-test/-/jarvis-test-2.0.1.tgz" + }, + "2.0.2": { + "shasum": "2bce63b23a8d63f810c7fa6a57b262842e70dfde", + "tarball": "http://registry.npmjs.org/jarvis-test/-/jarvis-test-2.0.2.tgz" + }, + "2.0.3": { + "shasum": "ae008de969375979499d2ab08bb75cf4cc7ecb9e", + "tarball": "http://registry.npmjs.org/jarvis-test/-/jarvis-test-2.0.3.tgz" + } + }, + "keywords": [ + "testing", + "unit", + "test", + "selenium" + ], + "url": "http://registry.npmjs.org/jarvis-test/" + }, + "jasbin": { + "name": "jasbin", + "description": "Simple command line runner for jasmine, a BDD Javascript Testing Framework", + "dist-tags": { + "latest": "1.0.11" + }, + "maintainers": [ + { + "name": "eugeneware", + "email": "eugene@noblesamurai.com" + } + ], + "author": { + "name": "Davis W. Frank", + "email": "dwfrank@pivotallabs.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/noblesamurai/jasbin.git" + }, + "time": { + "modified": "2011-03-20T02:43:12.965Z", + "created": "2011-01-17T04:38:43.255Z", + "1.0.0": "2011-01-17T04:38:43.255Z", + "1.0.1": "2011-01-17T04:38:43.255Z", + "1.0.2": "2011-01-17T04:38:43.255Z", + "1.0.3": "2011-01-17T04:38:43.255Z", + "1.0.4": "2011-01-17T04:40:20.638Z", + "1.0.5": "2011-01-17T04:44:11.981Z", + "1.0.6": "2011-01-17T04:45:24.743Z", + "1.0.7": "2011-01-17T08:49:24.013Z", + "1.0.8": "2011-01-22T10:35:37.106Z", + "1.0.9": "2011-03-20T02:32:54.601Z", + "1.0.10": "2011-03-20T02:35:05.506Z", + "1.0.11": "2011-03-20T02:43:12.965Z" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/jasbin/1.0.0", + "1.0.1": "http://registry.npmjs.org/jasbin/1.0.1", + "1.0.2": "http://registry.npmjs.org/jasbin/1.0.2", + "1.0.3": "http://registry.npmjs.org/jasbin/1.0.3", + "1.0.4": "http://registry.npmjs.org/jasbin/1.0.4", + "1.0.5": "http://registry.npmjs.org/jasbin/1.0.5", + "1.0.6": "http://registry.npmjs.org/jasbin/1.0.6", + "1.0.7": "http://registry.npmjs.org/jasbin/1.0.7", + "1.0.8": "http://registry.npmjs.org/jasbin/1.0.8", + "1.0.9": "http://registry.npmjs.org/jasbin/1.0.9", + "1.0.10": "http://registry.npmjs.org/jasbin/1.0.10", + "1.0.11": "http://registry.npmjs.org/jasbin/1.0.11" + }, + "dist": { + "1.0.0": { + "tarball": "http://registry.npmjs.org/jasbin/-/jasbin-v1.0.0.tgz" + }, + "1.0.1": { + "tarball": "http://registry.npmjs.org/jasbin/-/jasbin-v1.0.1.tgz" + }, + "1.0.2": { + "tarball": "http://registry.npmjs.org/jasbin/-/jasbin-v1.0.2.tgz" + }, + "1.0.3": { + "tarball": "http://registry.npmjs.org/jasbin/-/jasbin-v1.0.3.tgz" + }, + "1.0.4": { + "tarball": "http://registry.npmjs.org/jasbin/-/jasbin-v1.0.4.tgz" + }, + "1.0.5": { + "tarball": "http://registry.npmjs.org/jasbin/-/jasbin-v1.0.5.tgz" + }, + "1.0.6": { + "tarball": "http://registry.npmjs.org/jasbin/-/jasbin-v1.0.6.tgz" + }, + "1.0.7": { + "tarball": "http://registry.npmjs.org/jasbin/-/jasbin-v1.0.7.tgz" + }, + "1.0.8": { + "tarball": "http://registry.npmjs.org/jasbin/-/jasbin-v1.0.8.tgz" + }, + "1.0.9": { + "shasum": "b64f0c952b12590ccdf408c45caeb3310ee96c90", + "tarball": "http://registry.npmjs.org/jasbin/-/jasbin-1.0.9.tgz" + }, + "1.0.10": { + "shasum": "903f3eb5fc6984f08fe569fac43fd68ef2b4215f", + "tarball": "http://registry.npmjs.org/jasbin/-/jasbin-1.0.10.tgz" + }, + "1.0.11": { + "shasum": "5310aad3a5f01e269ec41dddc27eaa326e70b327", + "tarball": "http://registry.npmjs.org/jasbin/-/jasbin-1.0.11.tgz" + } + }, + "keywords": [ + "testing", + "bdd", + "jasmine", + "jasbin" + ], + "url": "http://registry.npmjs.org/jasbin/" + }, + "jasmine-dom": { + "name": "jasmine-dom", + "description": "Run your jasmine html SpecRunner in node.js.", + "dist-tags": { + "latest": "0.2.6" + }, + "maintainers": [ + { + "name": "andrewpmckenzie", + "email": "andrew@mckenzie.name" + } + ], + "time": { + "modified": "2011-10-11T02:51:09.131Z", + "created": "2011-08-06T08:26:33.930Z", + "0.0.1": "2011-08-06T08:26:35.457Z", + "0.1.0": "2011-08-06T09:50:53.759Z", + "0.2.0": "2011-08-06T11:23:16.486Z", + "0.2.1": "2011-08-06T11:30:34.838Z", + "0.2.2": "2011-08-07T09:50:52.240Z", + "0.2.3": "2011-08-12T12:55:16.418Z", + "0.2.4": "2011-09-07T07:46:29.696Z", + "0.2.5": "2011-09-08T09:00:58.778Z", + "0.2.6": "2011-10-11T02:51:09.131Z" + }, + "author": { + "name": "Andrew McKenzie", + "email": "andrew@mckenzie.name", + "url": "http://andrew.mckenzie.name" + }, + "repository": { + "type": "git", + "url": "git://github.com/andrewpmckenzie/node-jasmine-dom.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jasmine-dom/0.0.1", + "0.1.0": "http://registry.npmjs.org/jasmine-dom/0.1.0", + "0.2.0": "http://registry.npmjs.org/jasmine-dom/0.2.0", + "0.2.1": "http://registry.npmjs.org/jasmine-dom/0.2.1", + "0.2.2": "http://registry.npmjs.org/jasmine-dom/0.2.2", + "0.2.3": "http://registry.npmjs.org/jasmine-dom/0.2.3", + "0.2.4": "http://registry.npmjs.org/jasmine-dom/0.2.4", + "0.2.5": "http://registry.npmjs.org/jasmine-dom/0.2.5", + "0.2.6": "http://registry.npmjs.org/jasmine-dom/0.2.6" + }, + "dist": { + "0.0.1": { + "shasum": "2cb40dc25f07ab20e74c35af6dddbd6ac4b494c2", + "tarball": "http://registry.npmjs.org/jasmine-dom/-/jasmine-dom-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "43c53c03a133ae0cdda284bd8d967e5f95245da0", + "tarball": "http://registry.npmjs.org/jasmine-dom/-/jasmine-dom-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "e2f60078c2231b9b291220067c7ef66f96f80f58", + "tarball": "http://registry.npmjs.org/jasmine-dom/-/jasmine-dom-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "fe5fa339c91d1b34fcf8d205b9fa7ba3a4918437", + "tarball": "http://registry.npmjs.org/jasmine-dom/-/jasmine-dom-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "1e24b7590c79d525eb3eec39abe4873ee2e53a42", + "tarball": "http://registry.npmjs.org/jasmine-dom/-/jasmine-dom-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "e7ee83bd4c16856c0f4dc6066a27fa0310f4eaf9", + "tarball": "http://registry.npmjs.org/jasmine-dom/-/jasmine-dom-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "bffeea810948000211d3a6800f60f310f89daf86", + "tarball": "http://registry.npmjs.org/jasmine-dom/-/jasmine-dom-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "62ffced2af671278d7f37b26362a91f9edfefe1c", + "tarball": "http://registry.npmjs.org/jasmine-dom/-/jasmine-dom-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "da2c9072e33ede72a2679af5f1d18d2143f7b7c9", + "tarball": "http://registry.npmjs.org/jasmine-dom/-/jasmine-dom-0.2.6.tgz" + } + }, + "keywords": [ + "javascript testing", + "bdd", + "jasmine" + ], + "url": "http://registry.npmjs.org/jasmine-dom/" + }, + "jasmine-jquery": { + "name": "jasmine-jquery", + "description": "jQuery fixture functions for jasmine", + "dist-tags": { + "latest": "1.3.3" + }, + "maintainers": [ + { + "name": "dkastner", + "email": "dkastner@gmail.com" + } + ], + "time": { + "modified": "2011-08-30T23:04:17.049Z", + "created": "2011-08-30T22:18:55.533Z", + "1.3.1": "2011-08-30T22:18:56.223Z", + "1.3.2": "2011-08-30T23:01:33.923Z", + "1.3.3": "2011-08-30T23:04:17.049Z" + }, + "author": { + "name": "Derek Kastner", + "email": "dkastner@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dkastner/node-jasmine-jquery.git" + }, + "versions": { + "1.3.1": "http://registry.npmjs.org/jasmine-jquery/1.3.1", + "1.3.2": "http://registry.npmjs.org/jasmine-jquery/1.3.2", + "1.3.3": "http://registry.npmjs.org/jasmine-jquery/1.3.3" + }, + "dist": { + "1.3.1": { + "shasum": "9eaa73ad274bfad07e1d92451593277c8854071a", + "tarball": "http://registry.npmjs.org/jasmine-jquery/-/jasmine-jquery-1.3.1.tgz" + }, + "1.3.2": { + "shasum": "426824b8f4a80982a027f41397bff4470891a886", + "tarball": "http://registry.npmjs.org/jasmine-jquery/-/jasmine-jquery-1.3.2.tgz" + }, + "1.3.3": { + "shasum": "3ac73816eefb27ed9f76c3a8e476caad876c3653", + "tarball": "http://registry.npmjs.org/jasmine-jquery/-/jasmine-jquery-1.3.3.tgz" + } + }, + "url": "http://registry.npmjs.org/jasmine-jquery/" + }, + "jasmine-node": { + "name": "jasmine-node", + "description": "DOM-less simple JavaScript BDD testing framework for Node", + "dist-tags": { + "latest": "1.0.13" + }, + "maintainers": [ + { + "name": "mhevery", + "email": "misko@hevery.com" + } + ], + "time": { + "modified": "2011-11-16T22:51:02.866Z", + "created": "2010-12-28T13:35:58.306Z", + "1.0.0rc1": "2010-12-28T13:35:58.642Z", + "1.0.0rc2": "2011-04-05T16:29:39.641Z", + "1.0.0rc3": "2011-04-05T17:32:46.258Z", + "1.0.1": "2011-04-20T16:34:19.628Z", + "1.0.2": "2011-04-22T16:58:22.484Z", + "1.0.3": "2011-04-22T17:24:35.561Z", + "1.0.4": "2011-04-25T17:11:31.935Z", + "1.0.5": "2011-05-02T21:21:06.672Z", + "1.0.6": "2011-05-03T16:57:32.424Z", + "1.0.7": "2011-08-31T18:23:23.156Z", + "1.0.8": "2011-08-31T18:39:10.335Z", + "1.0.9": "2011-09-08T16:30:15.855Z", + "1.0.10": "2011-09-19T18:12:12.679Z", + "1.0.11": "2011-09-29T18:10:42.475Z", + "1.0.12": "2011-10-17T16:47:55.263Z", + "1.0.13": "2011-11-16T22:51:02.866Z" + }, + "author": { + "name": "Misko Hevery", + "email": "misko@hevery.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mhevery/jasmine-node.git" + }, + "users": { + "vesln": true + }, + "versions": { + "1.0.0rc1": "http://registry.npmjs.org/jasmine-node/1.0.0rc1", + "1.0.0rc2": "http://registry.npmjs.org/jasmine-node/1.0.0rc2", + "1.0.0rc3": "http://registry.npmjs.org/jasmine-node/1.0.0rc3", + "1.0.1": "http://registry.npmjs.org/jasmine-node/1.0.1", + "1.0.2": "http://registry.npmjs.org/jasmine-node/1.0.2", + "1.0.3": "http://registry.npmjs.org/jasmine-node/1.0.3", + "1.0.4": "http://registry.npmjs.org/jasmine-node/1.0.4", + "1.0.5": "http://registry.npmjs.org/jasmine-node/1.0.5", + "1.0.6": "http://registry.npmjs.org/jasmine-node/1.0.6", + "1.0.7": "http://registry.npmjs.org/jasmine-node/1.0.7", + "1.0.8": "http://registry.npmjs.org/jasmine-node/1.0.8", + "1.0.9": "http://registry.npmjs.org/jasmine-node/1.0.9", + "1.0.10": "http://registry.npmjs.org/jasmine-node/1.0.10", + "1.0.11": "http://registry.npmjs.org/jasmine-node/1.0.11", + "1.0.12": "http://registry.npmjs.org/jasmine-node/1.0.12", + "1.0.13": "http://registry.npmjs.org/jasmine-node/1.0.13" + }, + "dist": { + "1.0.0rc1": { + "shasum": "4a04092bca427d2e5cb5fb158878edd7b2325861", + "tarball": "http://registry.npmjs.org/jasmine-node/-/jasmine-node-1.0.0rc1.tgz" + }, + "1.0.0rc2": { + "shasum": "5c777e059ca757b43232bee0416bc438c37382ad", + "tarball": "http://registry.npmjs.org/jasmine-node/-/jasmine-node-1.0.0rc2.tgz" + }, + "1.0.0rc3": { + "shasum": "4c89f75fc5b2def07adf83025688f6aac9815219", + "tarball": "http://registry.npmjs.org/jasmine-node/-/jasmine-node-1.0.0rc3.tgz" + }, + "1.0.1": { + "shasum": "1150f17a6c8138ebdd66233de13a48e677d16dfd", + "tarball": "http://registry.npmjs.org/jasmine-node/-/jasmine-node-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "c0e47e86164323a40b4d91a8c54baa3a80db1a3a", + "tarball": "http://registry.npmjs.org/jasmine-node/-/jasmine-node-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "433f1c5067b42bf78fd74d7f6de4e1f98445c12a", + "tarball": "http://registry.npmjs.org/jasmine-node/-/jasmine-node-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "4c6826ec2009486d45e976f1f40aaa63dc930724", + "tarball": "http://registry.npmjs.org/jasmine-node/-/jasmine-node-1.0.4.tgz" + }, + "1.0.5": { + "shasum": "ea1ff190e911fe741b02fb991cb46bea4b999ed5", + "tarball": "http://registry.npmjs.org/jasmine-node/-/jasmine-node-1.0.5.tgz" + }, + "1.0.6": { + "shasum": "9ba57a5b95600b209e1e4f78a99d3c4144abe890", + "tarball": "http://registry.npmjs.org/jasmine-node/-/jasmine-node-1.0.6.tgz" + }, + "1.0.7": { + "shasum": "f4707bba5b7af7f7e6b856a4561cf12ba90319a6", + "tarball": "http://registry.npmjs.org/jasmine-node/-/jasmine-node-1.0.7.tgz" + }, + "1.0.8": { + "shasum": "01de8bb7eb0e45e848830213635810550f5b2a07", + "tarball": "http://registry.npmjs.org/jasmine-node/-/jasmine-node-1.0.8.tgz" + }, + "1.0.9": { + "shasum": "40ed75581002666c7ea7ebe45f7b264c076cc4e3", + "tarball": "http://registry.npmjs.org/jasmine-node/-/jasmine-node-1.0.9.tgz" + }, + "1.0.10": { + "shasum": "e9bc18de848b2df88f24df29b695de2942fee9c0", + "tarball": "http://registry.npmjs.org/jasmine-node/-/jasmine-node-1.0.10.tgz" + }, + "1.0.11": { + "shasum": "10f2f5eb879d2d6e503556fd5cf587219330c45c", + "tarball": "http://registry.npmjs.org/jasmine-node/-/jasmine-node-1.0.11.tgz" + }, + "1.0.12": { + "shasum": "b3707c77ca855b82c21e9197a62c3c07ae6dbf06", + "tarball": "http://registry.npmjs.org/jasmine-node/-/jasmine-node-1.0.12.tgz" + }, + "1.0.13": { + "shasum": "05ec05737c59c695e416719c08591d556ea3fe9e", + "tarball": "http://registry.npmjs.org/jasmine-node/-/jasmine-node-1.0.13.tgz" + } + }, + "keywords": [ + "testing", + "bdd" + ], + "url": "http://registry.npmjs.org/jasmine-node/" + }, + "jasmine-reporters": { + "name": "jasmine-reporters", + "description": "Reporters for the Jasmine BDD Framework", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "bloveridge", + "email": "bloveridge@gmail.com" + } + ], + "time": { + "modified": "2011-08-31T15:40:42.675Z", + "created": "2011-08-31T15:40:41.876Z", + "0.1.0": "2011-08-31T15:40:42.675Z" + }, + "author": { + "name": "Larry Myers" + }, + "repository": { + "type": "git", + "url": "git://github.com/larrymyers/jasmine-reporters.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/jasmine-reporters/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "aeac534d7dbf807593a31aa2b7a57af19cc2ba59", + "tarball": "http://registry.npmjs.org/jasmine-reporters/-/jasmine-reporters-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/jasmine-reporters/" + }, + "jasmine-runner": { + "name": "jasmine-runner", + "description": "Jasmine BDD utility tool and commandline runner", + "dist-tags": { + "latest": "0.2.9" + }, + "maintainers": [ + { + "name": "jamescarr", + "email": "james.r.carr@gmail.com" + } + ], + "time": { + "modified": "2011-05-13T08:19:17.844Z", + "created": "2011-03-02T07:14:27.838Z", + "0.1.0": "2011-03-02T07:14:28.115Z", + "0.2.0": "2011-05-13T03:14:10.862Z", + "0.2.1": "2011-05-13T03:40:44.219Z", + "0.2.2": "2011-05-13T07:22:34.472Z", + "0.2.3": "2011-05-13T07:34:22.163Z", + "0.2.4": "2011-05-13T07:49:03.680Z", + "0.2.5": "2011-05-13T07:53:50.679Z", + "0.2.6": "2011-05-13T08:01:14.710Z", + "0.2.7": "2011-05-13T08:03:33.994Z", + "0.2.8": "2011-05-13T08:15:42.265Z", + "0.2.9": "2011-05-13T08:19:17.844Z" + }, + "author": { + "name": "James R. Carr", + "email": "james.r.carr@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/jamescarr/jasmine-tool.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/jasmine-runner/0.1.0", + "0.2.0": "http://registry.npmjs.org/jasmine-runner/0.2.0", + "0.2.1": "http://registry.npmjs.org/jasmine-runner/0.2.1", + "0.2.2": "http://registry.npmjs.org/jasmine-runner/0.2.2", + "0.2.3": "http://registry.npmjs.org/jasmine-runner/0.2.3", + "0.2.4": "http://registry.npmjs.org/jasmine-runner/0.2.4", + "0.2.5": "http://registry.npmjs.org/jasmine-runner/0.2.5", + "0.2.6": "http://registry.npmjs.org/jasmine-runner/0.2.6", + "0.2.7": "http://registry.npmjs.org/jasmine-runner/0.2.7", + "0.2.8": "http://registry.npmjs.org/jasmine-runner/0.2.8", + "0.2.9": "http://registry.npmjs.org/jasmine-runner/0.2.9" + }, + "dist": { + "0.1.0": { + "shasum": "852d6f16ea37680ea9c0a67dd277901e774a9a1a", + "tarball": "http://registry.npmjs.org/jasmine-runner/-/jasmine-runner-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "7bbbfaba7eb345eca64a4d07a2e2579c336ba884", + "tarball": "http://registry.npmjs.org/jasmine-runner/-/jasmine-runner-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "2a6ba5edbdadc94a64a1bae018d5cd6206332653", + "tarball": "http://registry.npmjs.org/jasmine-runner/-/jasmine-runner-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "d19f7a584332a935ea30755caecc0d75a68f363d", + "tarball": "http://registry.npmjs.org/jasmine-runner/-/jasmine-runner-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "65d6928392408f163a671b220589b13ba5ca5bee", + "tarball": "http://registry.npmjs.org/jasmine-runner/-/jasmine-runner-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "314f063a6db2998616c3b822c23d32737db8cd78", + "tarball": "http://registry.npmjs.org/jasmine-runner/-/jasmine-runner-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "fd5014a6642ccfee7b93a4169fe4cd363fbaf4d1", + "tarball": "http://registry.npmjs.org/jasmine-runner/-/jasmine-runner-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "a9d69825890753cb5395bf4dc1932598ce5bf8e4", + "tarball": "http://registry.npmjs.org/jasmine-runner/-/jasmine-runner-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "d554bb1446deb2327e8aa360012fbde3e26165af", + "tarball": "http://registry.npmjs.org/jasmine-runner/-/jasmine-runner-0.2.7.tgz" + }, + "0.2.8": { + "shasum": "3f1a62adc679df638d8ba82dd0fdbbf79179a679", + "tarball": "http://registry.npmjs.org/jasmine-runner/-/jasmine-runner-0.2.8.tgz" + }, + "0.2.9": { + "shasum": "2e21efc4529bf9ca7ec1564295c8e870a20ed623", + "tarball": "http://registry.npmjs.org/jasmine-runner/-/jasmine-runner-0.2.9.tgz" + } + }, + "keywords": [ + "testing", + "spec", + "test", + "BDD" + ], + "url": "http://registry.npmjs.org/jasmine-runner/" + }, + "jasminy": { + "name": "jasminy", + "description": "A Headless Jasmine TDD Tool", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "collinwat", + "email": "watson.collin@gmail.com" + } + ], + "time": { + "modified": "2011-09-12T05:57:57.685Z", + "created": "2011-09-12T05:57:57.108Z", + "0.0.1": "2011-09-12T05:57:57.685Z" + }, + "author": { + "name": "Collin Watson" + }, + "repository": { + "type": "git", + "url": "git://github.com/collinwat/jasminy.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jasminy/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "f8ee44753671f2ca35881ad5976cb445cecf9187", + "tarball": "http://registry.npmjs.org/jasminy/-/jasminy-0.0.1.tgz" + } + }, + "keywords": [ + "jasmine", + "headless", + "CoffeeScript" + ], + "url": "http://registry.npmjs.org/jasminy/" + }, + "jason": { + "name": "jason", + "description": "A JSON CORS/XHR2 application platform", + "dist-tags": { + "latest": "0.3.1" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-11-12T01:43:05.523Z", + "created": "2011-08-11T14:56:03.003Z", + "0.1.1": "2011-08-11T14:56:05.766Z", + "0.1.3": "2011-08-15T21:58:45.891Z", + "0.1.4": "2011-08-18T21:12:21.230Z", + "0.1.5": "2011-09-24T02:05:40.745Z", + "0.3.0": "2011-11-11T21:23:57.884Z", + "0.3.1": "2011-11-12T01:43:05.523Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com", + "url": "http://coolaj86.info" + }, + "repository": { + "type": "git", + "url": "git://github.com/coolaj86/jason.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/jason/0.1.1", + "0.1.3": "http://registry.npmjs.org/jason/0.1.3", + "0.1.4": "http://registry.npmjs.org/jason/0.1.4", + "0.1.5": "http://registry.npmjs.org/jason/0.1.5", + "0.3.0": "http://registry.npmjs.org/jason/0.3.0", + "0.3.1": "http://registry.npmjs.org/jason/0.3.1" + }, + "dist": { + "0.1.1": { + "shasum": "3b3a7c393abffc401654675af833858f7f5be965", + "tarball": "http://registry.npmjs.org/jason/-/jason-0.1.1.tgz" + }, + "0.1.3": { + "shasum": "9bb2fe687c9a6e2c4836771b2fe3f3386ca73129", + "tarball": "http://registry.npmjs.org/jason/-/jason-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "b6624f5026ceb604eb926e24ff8d6045ecbdcdf7", + "tarball": "http://registry.npmjs.org/jason/-/jason-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "e68fced062b92b3048a1329ce2724185895598ce", + "tarball": "http://registry.npmjs.org/jason/-/jason-0.1.5.tgz" + }, + "0.3.0": { + "shasum": "9934c3fdd5910782ec895728384781f2ad41d55c", + "tarball": "http://registry.npmjs.org/jason/-/jason-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "b64af2b7d5b40c0ddba37c724cb61c13f6e78c1e", + "tarball": "http://registry.npmjs.org/jason/-/jason-0.3.1.tgz" + } + }, + "url": "http://registry.npmjs.org/jason/" + }, + "jast": { + "name": "jast", + "description": "A parser and tools for a JavaScript AST in JSON.", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "timcameronryan", + "email": "tim@timryan.org" + } + ], + "time": { + "modified": "2011-10-24T20:22:21.079Z", + "created": "2011-09-26T23:21:56.345Z", + "0.0.2": "2011-09-26T23:21:57.487Z", + "0.0.3": "2011-09-26T23:24:45.010Z", + "0.0.4": "2011-09-27T00:12:29.023Z", + "0.1.0": "2011-09-29T04:07:54.802Z", + "0.1.1": "2011-09-29T04:11:45.702Z", + "0.1.2": "2011-09-29T09:25:44.657Z", + "0.2.0": "2011-10-02T08:15:47.716Z", + "0.2.1": "2011-10-24T20:22:21.079Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/timcameronryan/jast.git" + }, + "author": { + "name": "Tim Cameron Ryan", + "email": "tim@timryan.org" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/jast/0.0.2", + "0.0.3": "http://registry.npmjs.org/jast/0.0.3", + "0.0.4": "http://registry.npmjs.org/jast/0.0.4", + "0.1.0": "http://registry.npmjs.org/jast/0.1.0", + "0.1.1": "http://registry.npmjs.org/jast/0.1.1", + "0.1.2": "http://registry.npmjs.org/jast/0.1.2", + "0.2.0": "http://registry.npmjs.org/jast/0.2.0", + "0.2.1": "http://registry.npmjs.org/jast/0.2.1" + }, + "dist": { + "0.0.2": { + "shasum": "97ca617bed7cf93c74725b91fdbe98a1bb3bd785", + "tarball": "http://registry.npmjs.org/jast/-/jast-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "9204682a05c0730a2cc181e2d859bf2036ae6a84", + "tarball": "http://registry.npmjs.org/jast/-/jast-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "8cd726126c111d9c44c73d4db1cb2fd2bda38cf5", + "tarball": "http://registry.npmjs.org/jast/-/jast-0.0.4.tgz" + }, + "0.1.0": { + "shasum": "d34ff80a638993fa659876f1302392934f9f6022", + "tarball": "http://registry.npmjs.org/jast/-/jast-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "5a44884c44b3747c128ed62fbb0b1e89da24e256", + "tarball": "http://registry.npmjs.org/jast/-/jast-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "f12ac53c39536cba6f2b368032bde497b2740ea2", + "tarball": "http://registry.npmjs.org/jast/-/jast-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "823309bc5712d177f33ab9113f0d35e9a48e9fff", + "tarball": "http://registry.npmjs.org/jast/-/jast-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "5c776808a1a19ace496613dbf185844341665983", + "tarball": "http://registry.npmjs.org/jast/-/jast-0.2.1.tgz" + } + }, + "keywords": [ + "ast", + "javascript", + "parser", + "tools", + "walker" + ], + "url": "http://registry.npmjs.org/jast/" + }, + "javiary": { + "name": "javiary", + "description": "Aviary Effects API Library", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "bdotdub", + "email": "benny@bwong.net" + } + ], + "time": { + "modified": "2011-05-05T15:04:24.753Z", + "created": "2011-05-05T05:54:56.351Z", + "0.0.1": "2011-05-05T05:54:56.543Z", + "0.0.2": "2011-05-05T15:04:24.753Z" + }, + "author": { + "name": "Benny Wong", + "email": "benny@bwong.net", + "url": "http://bwong.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/bdotdub/javiary.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/javiary/0.0.1", + "0.0.2": "http://registry.npmjs.org/javiary/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "9b9a2b1dcb86b1ba7fb7ff39f34d77272624c9a0", + "tarball": "http://registry.npmjs.org/javiary/-/javiary-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "4b6f9865e6c68b5881e6ca391a108d17f6c7474d", + "tarball": "http://registry.npmjs.org/javiary/-/javiary-0.0.2.tgz" + } + }, + "keywords": [ + "aviary", + "photo", + "efects" + ], + "url": "http://registry.npmjs.org/javiary/" + }, + "jazz": { + "name": "jazz", + "description": "A simple template engine built specifically for nodejs.", + "dist-tags": { + "latest": "0.0.14" + }, + "maintainers": [ + { + "name": "cliffano", + "email": "cliffano@gmail.com" + } + ], + "author": { + "name": "Thomas Lee", + "email": "thomas.lee@shinetech.com" + }, + "time": { + "modified": "2011-02-14T08:22:58.914Z", + "created": "2011-02-14T08:22:58.914Z", + "0.0.1": "2011-02-14T08:22:58.914Z", + "0.0.3": "2011-02-14T08:22:58.914Z", + "0.0.4": "2011-02-14T08:22:58.914Z", + "0.0.14": "2011-02-14T08:22:58.914Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jazz/0.0.1", + "0.0.3": "http://registry.npmjs.org/jazz/0.0.3", + "0.0.4": "http://registry.npmjs.org/jazz/0.0.4", + "0.0.14": "http://registry.npmjs.org/jazz/0.0.14" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/jazz/-/jazz-0.0.1.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/jazz/-/jazz-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://packages:5984/jazz/-/jazz-0.0.4.tgz" + }, + "0.0.14": { + "shasum": "33cb3bc0ca5ab7ea902c2954a3215cfab7de3608", + "tarball": "http://registry.npmjs.org/jazz/-/jazz-0.0.14.tgz" + } + }, + "keywords": [ + "template", + "engine" + ], + "url": "http://registry.npmjs.org/jazz/" + }, + "jDataView": { + "name": "jDataView", + "description": "A unique way to read a binary file in the browser and the server.", + "dist-tags": { + "latest": "1.0.1" + }, + "readme": null, + "maintainers": [ + { + "name": "vjeux", + "email": "vjeuxx@gmail.com" + } + ], + "time": { + "modified": "2011-12-02T17:16:25.665Z", + "created": "2011-11-30T16:00:57.096Z", + "1.0.0": "2011-11-30T16:00:58.800Z", + "1.0.1": "2011-12-02T17:16:25.665Z" + }, + "author": { + "name": "Vjeux", + "email": "vjeuxx@gmail.com", + "url": "http://blog.vjeux.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/vjeux/jDataView.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/jDataView/1.0.0", + "1.0.1": "http://registry.npmjs.org/jDataView/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "e3bbce42c5f2681b1d11bc26e92d3e23f30adfe4", + "tarball": "http://registry.npmjs.org/jDataView/-/jDataView-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "4d95a2b56039d8bb1463cea00db590cc77a298a3", + "tarball": "http://registry.npmjs.org/jDataView/-/jDataView-1.0.1.tgz" + } + }, + "keywords": [ + "buffer", + "binary", + "file", + "read" + ], + "url": "http://registry.npmjs.org/jDataView/" + }, + "jdoc": { + "name": "jdoc", + "description": "jDoc: Turn JSON objects into queryable documents.", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "bjorg", + "email": "steve.bjorg@gmail.com" + } + ], + "time": { + "modified": "2011-06-16T09:11:04.992Z", + "created": "2011-06-16T09:11:04.534Z", + "0.2.0": "2011-06-16T09:11:04.992Z" + }, + "author": { + "name": "Steve Bjorg", + "email": "steve.bjorg@gmail.com", + "url": "http://twitter.com/bjorg" + }, + "repository": { + "type": "git", + "url": "git://github.com/bjorg/jDoc.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/jdoc/0.2.0" + }, + "dist": { + "0.2.0": { + "shasum": "013102c44c3f3d051b65f30f491fb8a3c31bc380", + "tarball": "http://registry.npmjs.org/jdoc/-/jdoc-0.2.0.tgz" + } + }, + "keywords": [ + "json", + "document", + "query", + "server", + "client", + "browser" + ], + "url": "http://registry.npmjs.org/jdoc/" + }, + "jeans": { + "name": "jeans", + "description": "Opinionated config", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "ecto", + "email": "diffference@gmail.com" + } + ], + "time": { + "modified": "2011-10-18T20:46:15.032Z", + "created": "2011-10-18T19:46:06.827Z", + "0.0.0": "2011-10-18T19:46:07.452Z", + "0.0.1": "2011-10-18T19:49:32.994Z", + "0.1.0": "2011-10-18T19:58:57.152Z", + "0.1.1": "2011-10-18T20:44:55.324Z" + }, + "author": { + "name": "Cam Pedersen", + "email": "diffference@gmail.com", + "url": "http://campedersen.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/ecto/jeans.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/jeans/0.0.0", + "0.0.1": "http://registry.npmjs.org/jeans/0.0.1", + "0.1.0": "http://registry.npmjs.org/jeans/0.1.0", + "0.1.1": "http://registry.npmjs.org/jeans/0.1.1" + }, + "dist": { + "0.0.0": { + "shasum": "dc615b3de8035fa8332de0c57f22371c2d71aff9", + "tarball": "http://registry.npmjs.org/jeans/-/jeans-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "5e30d295020f5e99c1370efb18fee29fb4d3e7ee", + "tarball": "http://registry.npmjs.org/jeans/-/jeans-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "54dda36ac522722a1253e4c4b1b1a0d091932e20", + "tarball": "http://registry.npmjs.org/jeans/-/jeans-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "cab09ff113f74bf775c1040393cd96445beed665", + "tarball": "http://registry.npmjs.org/jeans/-/jeans-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/jeans/" + }, + "jeesh": { + "name": "jeesh", + "description": "The official starter pack for Ender.", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "fat", + "email": "jacobthornton@gmail.com" + }, + { + "name": "ded", + "email": "polvero@gmail.com" + } + ], + "time": { + "modified": "2011-11-16T06:00:39.488Z", + "created": "2011-04-29T05:10:17.448Z", + "0.0.1": "2011-04-29T05:10:18.441Z", + "0.0.2": "2011-05-02T21:54:34.827Z", + "0.0.3": "2011-05-02T22:12:26.971Z", + "0.0.4": "2011-05-03T03:29:26.569Z", + "0.0.5": "2011-05-03T05:20:21.458Z", + "0.0.6": "2011-06-28T05:38:49.566Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jeesh/0.0.1", + "0.0.2": "http://registry.npmjs.org/jeesh/0.0.2", + "0.0.3": "http://registry.npmjs.org/jeesh/0.0.3", + "0.0.4": "http://registry.npmjs.org/jeesh/0.0.4", + "0.0.5": "http://registry.npmjs.org/jeesh/0.0.5", + "0.0.6": "http://registry.npmjs.org/jeesh/0.0.6" + }, + "dist": { + "0.0.1": { + "shasum": "123d7f3a15066bfbb0b30a9c78cbdaf32f1ff989", + "tarball": "http://registry.npmjs.org/jeesh/-/jeesh-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c75114ac9a876ebcf805ad2f90684980ed000c59", + "tarball": "http://registry.npmjs.org/jeesh/-/jeesh-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "fae75ece8b5ee056166082b5a308f4014b25fd50", + "tarball": "http://registry.npmjs.org/jeesh/-/jeesh-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "9642ab7b42c072ff1d596b8548e2fdf7194fe504", + "tarball": "http://registry.npmjs.org/jeesh/-/jeesh-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "53185f0ceec713a052c8edb77d21419e29b92c9b", + "tarball": "http://registry.npmjs.org/jeesh/-/jeesh-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "ddf68d5e28315d0f68832739232d695e5a82fcea", + "tarball": "http://registry.npmjs.org/jeesh/-/jeesh-0.0.6.tgz" + } + }, + "keywords": [ + "ender", + "jeesh" + ], + "url": "http://registry.npmjs.org/jeesh/" + }, + "jekyllandhyde": { + "name": "jekyllandhyde", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "dworthen", + "email": "worthend.derek@gmail.com" + } + ], + "time": { + "modified": "2011-10-14T07:31:49.647Z", + "created": "2011-10-14T07:31:45.350Z", + "0.0.1": "2011-10-14T07:31:49.647Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jekyllandhyde/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "eeb50c58253f7c7a3883875499b5e328420a7305", + "tarball": "http://registry.npmjs.org/jekyllandhyde/-/jekyllandhyde-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/jekyllandhyde/" + }, + "jellyfish": { + "name": "jellyfish", + "description": "A framework for launching environments and running JS", + "dist-tags": { + "latest": "0.0.11" + }, + "readme": "# Jellyfish -- Browser launcher and Javascript execution engine.\n\nJellyfish bridges the gap between server and client side javascript by allowing \ncontrol of all the major browsers from a node script.\n\nFrom running unit tests across platforms, to automating browser based workflows,\njellyfish aims to free javascript from the confines of a single environment.\n\n## Install\n\n
\nnpm install jellyfish\n
\n\nOr from source:\n\n
\ngit clone git://github.com/admc/jellyfish.git \ncd jellyfish\nnpm link .\n
\n\n## Platforms\n\nMacOSX 10.6
\nUbuntu 10.x\n\n## Browsers\nFirefox 3.x, 4b
\nGoogle Chrome
\nSafari (MacOSX)
\nSelenium 2/WebDriver
\nSauce Labs OnDemand
\nZombie (headless node.js browser)
\n\n(Provides hooks to Saucelabs OnDemand platform allowing execution in\nall major browsers.)\n\n## Usage\nnpm require\n
\nvar jellyfish = require('jellyfish'),\n  , assert = require('assert');\n
\n\ninit a browser (createFirefox, createChrome, createZombie)\n
\nvar browser = jellyfish.createFirefox();\n
\n\ngoto a web site\n
\nbrowser.go(\"http://www.jelly.io\")\n
\n\nverify the title\n
\n.js(\"document.title\", function(o) {\n  assert.equal(o.result, \"Jelly.io: Jellyfish Home\")\n})\n
\n\nrun some local javascript\n
\n.jsfile(\"./test.js\", function(o) {\n  assert.equal(o.result, \"alerted: Jellyfish local file loaded successfully!\")\n})\n
\n\nrun some remote javascript, stop the browser, then exit\n
\n.jsurl(\"http://jelly.io/test.js\", function(o) { \n  assert.equal(o.result, \"alerted: Jellyfish remote file loaded successfully!\")\n  browser.stop(function() {\n    setTimeout(process.exit(), 2000);\n  })\n})\n
\n\n## Reporting\n\n
\nvar jellyfish = require('jellyfish')\n\nvar browser = jellyfish.createFirefox(function(){\n  browser.couch({uri:'my couch url', port:5984, db:'mydbname'})\n});\n\n// You can just do browser.couch() and it will default to:\n// {uri:'localhost', port:5984, db:'jellyfish'}\n\n// Do stuff and it will automatically get reported to couch!\n
\n\n## ~/.jfrc\n\n
\n{\n  , \"firefox\": \"/path/to/binary\" //binary path to firefox if you want to set it manually\n  , \"chrome\": \"path/to/binary\" //binary path\n  , \"safari\": \"path/to/binary\" //binary path\n  , \"interface\": \"Airport\" // required for safari testing (proxy setting)\n  , \"username\": \"username\" //sauce labs username\n  , \"accessKey\": \"apikey\" //sauce labs apikey\n  , \"browserName\": \"firefox\" //sauce labs default browser\n  , \"version\": \"4.0\" // sauce labs default browser version\n}\n
", + "maintainers": [ + { + "name": "admc", + "email": "adam.christian@gmail.com" + } + ], + "time": { + "modified": "2011-12-09T07:31:09.215Z", + "created": "2011-12-09T07:31:07.570Z", + "0.0.11": "2011-12-09T07:31:09.215Z" + }, + "author": { + "name": "Adam Christian", + "email": "adam.christian@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/admc/jellyfish.git" + }, + "versions": { + "0.0.11": "http://registry.npmjs.org/jellyfish/0.0.11" + }, + "dist": { + "0.0.11": { + "shasum": "0a69a7d0aee83eac0c0f1ba9281c33e5b75794e2", + "tarball": "http://registry.npmjs.org/jellyfish/-/jellyfish-0.0.11.tgz" + } + }, + "url": "http://registry.npmjs.org/jellyfish/" + }, + "jen": { + "name": "jen", + "description": "jen static site generator", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "rfunduk", + "email": "ryan.funduk@gmail.com" + } + ], + "time": { + "modified": "2011-11-07T19:15:40.333Z", + "created": "2011-09-18T23:33:34.088Z", + "0.1.0": "2011-09-18T23:33:34.647Z", + "0.2.0": "2011-11-07T19:15:40.333Z" + }, + "author": { + "name": "Ryan Funduk", + "email": "ryan.funduk@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/rfunduk/jen.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/jen/0.1.0", + "0.2.0": "http://registry.npmjs.org/jen/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "cf83b8e5cf4d358194b4ab92b10dae4128c4b3e8", + "tarball": "http://registry.npmjs.org/jen/-/jen-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "6d53ab69ac234018cca748fca19bb513f8dfbcf0", + "tarball": "http://registry.npmjs.org/jen/-/jen-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/jen/" + }, + "jendoc": { + "name": "jendoc", + "description": "Javascript documentation generator", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "abresas", + "email": "abresas@kamibu.com" + } + ], + "time": { + "modified": "2011-10-25T21:06:55.474Z", + "created": "2011-10-18T10:52:38.110Z", + "0.1.0": "2011-10-18T10:52:39.001Z", + "0.1.1": "2011-10-25T21:06:55.474Z" + }, + "author": { + "name": "Aleksis Brezas", + "email": "abresas@kamibu.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:kamibu/jendoc.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/jendoc/0.1.0", + "0.1.1": "http://registry.npmjs.org/jendoc/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "e26864a8464ea75edfb15dc91fd4b1ab5d446177", + "tarball": "http://registry.npmjs.org/jendoc/-/jendoc-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "25aa0549f990dd8399bfd40f24ae25d541c4a3af", + "tarball": "http://registry.npmjs.org/jendoc/-/jendoc-0.1.1.tgz" + } + }, + "keywords": [ + "documentation" + ], + "url": "http://registry.npmjs.org/jendoc/" + }, + "jerk": { + "name": "jerk", + "description": "Stupidly simple IRC bots in Javascript.", + "dist-tags": { + "latest": "1.1.17" + }, + "maintainers": [ + { + "name": "gf3", + "email": "gianni@runlevel6.org" + } + ], + "author": { + "name": "Gianni Chiappetta", + "email": "gianni@runlevel6.org", + "url": "http://gf3.ca" + }, + "repository": { + "type": "git", + "url": "git://github.com/gf3/Jerk.git" + }, + "time": { + "modified": "2011-12-14T08:42:06.140Z", + "created": "2010-12-20T02:00:33.422Z", + "1.0.0": "2010-12-20T02:00:33.422Z", + "1.1.1": "2010-12-20T02:00:33.422Z", + "1.1.2": "2011-01-20T15:56:34.210Z", + "1.1.4": "2011-02-07T18:08:45.792Z", + "1.1.5": "2011-02-07T18:18:44.987Z", + "1.1.6": "2011-03-11T05:48:16.394Z", + "1.1.7": "2011-04-07T20:35:58.689Z", + "1.1.8": "2011-04-21T02:16:47.850Z", + "1.1.9": "2011-04-26T05:53:05.635Z", + "1.1.10": "2011-04-26T06:04:53.119Z", + "1.1.11": "2011-06-01T00:11:22.473Z", + "1.1.12": "2011-06-01T01:09:10.045Z", + "1.1.13": "2011-06-15T20:54:33.079Z", + "1.1.14": "2011-06-15T21:38:36.964Z", + "1.1.15": "2011-06-22T00:03:54.746Z", + "1.1.16": "2011-12-14T08:05:13.184Z", + "1.1.17": "2011-12-14T08:42:06.140Z" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/jerk/1.0.0", + "1.1.1": "http://registry.npmjs.org/jerk/1.1.1", + "1.1.2": "http://registry.npmjs.org/jerk/1.1.2", + "1.1.4": "http://registry.npmjs.org/jerk/1.1.4", + "1.1.5": "http://registry.npmjs.org/jerk/1.1.5", + "1.1.6": "http://registry.npmjs.org/jerk/1.1.6", + "1.1.7": "http://registry.npmjs.org/jerk/1.1.7", + "1.1.8": "http://registry.npmjs.org/jerk/1.1.8", + "1.1.9": "http://registry.npmjs.org/jerk/1.1.9", + "1.1.10": "http://registry.npmjs.org/jerk/1.1.10", + "1.1.11": "http://registry.npmjs.org/jerk/1.1.11", + "1.1.12": "http://registry.npmjs.org/jerk/1.1.12", + "1.1.13": "http://registry.npmjs.org/jerk/1.1.13", + "1.1.14": "http://registry.npmjs.org/jerk/1.1.14", + "1.1.15": "http://registry.npmjs.org/jerk/1.1.15", + "1.1.16": "http://registry.npmjs.org/jerk/1.1.16", + "1.1.17": "http://registry.npmjs.org/jerk/1.1.17" + }, + "dist": { + "1.0.0": { + "tarball": "http://packages:5984/jerk/-/jerk-1.0.0.tgz" + }, + "1.1.1": { + "shasum": "fbae3f916a560db1311a7c58bad279ce75b16509", + "tarball": "http://registry.npmjs.org/jerk/-/jerk-1.1.1.tgz" + }, + "1.1.2": { + "shasum": "bd7a2d9c3b8f7d29f82d7decb648fc9403c59ea2", + "tarball": "http://registry.npmjs.org/jerk/-/jerk-1.1.2.tgz" + }, + "1.1.4": { + "shasum": "15c280a6d1f62c4797f5ec6fbaabe1ab6a389c94", + "tarball": "http://registry.npmjs.org/jerk/-/jerk-1.1.4.tgz" + }, + "1.1.5": { + "shasum": "0dc67942cfd92194b441571b2464956538e5be73", + "tarball": "http://registry.npmjs.org/jerk/-/jerk-1.1.5.tgz" + }, + "1.1.6": { + "shasum": "dbc0654233a07fb2f15e99e89dbd0b03e9e74032", + "tarball": "http://registry.npmjs.org/jerk/-/jerk-1.1.6.tgz" + }, + "1.1.7": { + "shasum": "814532f7ed098cd97d58d4e87c5f4a7cc8718456", + "tarball": "http://registry.npmjs.org/jerk/-/jerk-1.1.7.tgz" + }, + "1.1.8": { + "shasum": "82f7c59bc8df55771eed4dda1b23ff850f7ab1a3", + "tarball": "http://registry.npmjs.org/jerk/-/jerk-1.1.8.tgz" + }, + "1.1.9": { + "shasum": "6eb322bf6d5c0d24d033a3be98274593d2e7b4ab", + "tarball": "http://registry.npmjs.org/jerk/-/jerk-1.1.9.tgz" + }, + "1.1.10": { + "shasum": "f0136c8ffd60923812f21dd98d521fe198b1430c", + "tarball": "http://registry.npmjs.org/jerk/-/jerk-1.1.10.tgz" + }, + "1.1.11": { + "shasum": "8a9d41ad775f04223f596ae8d551bcfb8d3ca314", + "tarball": "http://registry.npmjs.org/jerk/-/jerk-1.1.11.tgz" + }, + "1.1.12": { + "shasum": "8ba84b9cda924f21e65833aa04e630ddae240449", + "tarball": "http://registry.npmjs.org/jerk/-/jerk-1.1.12.tgz" + }, + "1.1.13": { + "shasum": "11b6cdd349ede1c10f1da5a68cd2c1bd247a0e2a", + "tarball": "http://registry.npmjs.org/jerk/-/jerk-1.1.13.tgz" + }, + "1.1.14": { + "shasum": "eae6bd53cd5fc77af90efb4c5a801fd26ab2fb87", + "tarball": "http://registry.npmjs.org/jerk/-/jerk-1.1.14.tgz" + }, + "1.1.15": { + "shasum": "c22d0bc02cf9ad563bb0c232e12fc70745a6352b", + "tarball": "http://registry.npmjs.org/jerk/-/jerk-1.1.15.tgz" + }, + "1.1.16": { + "shasum": "6a9aa599fe998da7b7f139907b341311e98fc623", + "tarball": "http://registry.npmjs.org/jerk/-/jerk-1.1.16.tgz" + }, + "1.1.17": { + "shasum": "5d6f681845fe6afb2f87117d75a4ad6dbb58afed", + "tarball": "http://registry.npmjs.org/jerk/-/jerk-1.1.17.tgz" + } + }, + "url": "http://registry.npmjs.org/jerk/" + }, + "jessie": { + "name": "jessie", + "description": "Node runner for Jasmine JavaScript BDD testing framework", + "dist-tags": { + "latest": "0.3.7" + }, + "maintainers": [ + { + "name": "marcinbunsch", + "email": "marcin@futuresimple.com" + } + ], + "time": { + "modified": "2011-06-23T21:44:58.034Z", + "created": "2011-04-17T18:49:04.714Z", + "0.2.0": "2011-04-17T18:49:05.333Z", + "0.2.1": "2011-04-17T19:55:06.946Z", + "0.3.0": "2011-04-19T22:08:11.996Z", + "0.3.1": "2011-05-11T17:43:30.675Z", + "0.3.2": "2011-05-26T08:01:03.423Z", + "0.3.4": "2011-05-31T21:11:02.464Z", + "0.3.5": "2011-06-03T15:38:53.323Z", + "0.3.6": "2011-06-11T15:37:08.186Z", + "0.3.7": "2011-06-23T21:44:58.034Z" + }, + "author": { + "name": "Marcin Bunsch", + "email": "marcin@futuresimple.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/futuresimple/jessie.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/jessie/0.2.0", + "0.2.1": "http://registry.npmjs.org/jessie/0.2.1", + "0.3.0": "http://registry.npmjs.org/jessie/0.3.0", + "0.3.1": "http://registry.npmjs.org/jessie/0.3.1", + "0.3.2": "http://registry.npmjs.org/jessie/0.3.2", + "0.3.4": "http://registry.npmjs.org/jessie/0.3.4", + "0.3.5": "http://registry.npmjs.org/jessie/0.3.5", + "0.3.6": "http://registry.npmjs.org/jessie/0.3.6", + "0.3.7": "http://registry.npmjs.org/jessie/0.3.7" + }, + "dist": { + "0.2.0": { + "shasum": "bb98091f6001417b963c2cfcf56f83588db8dc53", + "tarball": "http://registry.npmjs.org/jessie/-/jessie-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "341b5038541f71af1d33ef82e13b3f9612d9e6ed", + "tarball": "http://registry.npmjs.org/jessie/-/jessie-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "96936533cb46dee653ae8177b4ce3eac0a6c15d0", + "tarball": "http://registry.npmjs.org/jessie/-/jessie-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "81b3352c4d8df4d34b7fa4294b147407f0f4e566", + "tarball": "http://registry.npmjs.org/jessie/-/jessie-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "ac60e73e304f7fb5fce4ae314e64bd5b733bc0a8", + "tarball": "http://registry.npmjs.org/jessie/-/jessie-0.3.2.tgz" + }, + "0.3.4": { + "shasum": "055fbb37fdcb391401d5165fd1555e3a32e10d27", + "tarball": "http://registry.npmjs.org/jessie/-/jessie-0.3.4.tgz" + }, + "0.3.5": { + "shasum": "7168d6a20f6d6c93ceeab85f4bf84db7b5a1f1a0", + "tarball": "http://registry.npmjs.org/jessie/-/jessie-0.3.5.tgz" + }, + "0.3.6": { + "shasum": "5cea9631d539d6c78c3e102e6c860f2dc13e4396", + "tarball": "http://registry.npmjs.org/jessie/-/jessie-0.3.6.tgz" + }, + "0.3.7": { + "shasum": "54e58a5d82dc3ed1f7b74b48b446a78f78b6ee0f", + "tarball": "http://registry.npmjs.org/jessie/-/jessie-0.3.7.tgz" + } + }, + "keywords": [ + "testing", + "bdd" + ], + "url": "http://registry.npmjs.org/jessie/" + }, + "jezebel": { + "name": "jezebel", + "description": "A REPL and continuous test runner for Jasmine tests", + "dist-tags": { + "latest": "0.3.2" + }, + "maintainers": [ + { + "name": "benrady", + "email": "benrady@gmail.com" + } + ], + "time": { + "modified": "2011-06-29T03:10:02.635Z", + "created": "2011-05-17T03:29:22.850Z", + "0.1.0": "2011-05-17T03:29:23.103Z", + "0.2.0": "2011-05-19T01:41:28.505Z", + "0.2.1": "2011-05-19T04:57:07.038Z", + "0.2.2": "2011-05-24T15:39:51.905Z", + "0.3.0": "2011-05-26T01:09:37.452Z", + "0.3.1": "2011-05-26T04:40:56.013Z", + "0.3.2": "2011-06-29T03:10:02.635Z" + }, + "author": { + "name": "Ben Rady", + "email": "benrady@gmail.com", + "url": "http://benrady.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/benrady/jezebel.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/jezebel/0.1.0", + "0.2.0": "http://registry.npmjs.org/jezebel/0.2.0", + "0.2.1": "http://registry.npmjs.org/jezebel/0.2.1", + "0.2.2": "http://registry.npmjs.org/jezebel/0.2.2", + "0.3.0": "http://registry.npmjs.org/jezebel/0.3.0", + "0.3.1": "http://registry.npmjs.org/jezebel/0.3.1", + "0.3.2": "http://registry.npmjs.org/jezebel/0.3.2" + }, + "dist": { + "0.1.0": { + "shasum": "f0e41bf537496ea066bf89bd9e51dcc27ecc7cbc", + "tarball": "http://registry.npmjs.org/jezebel/-/jezebel-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "936c31ff6f53449ebccef8c919f2540720c0a45e", + "tarball": "http://registry.npmjs.org/jezebel/-/jezebel-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "8dc860772ecea978626c2bfb3ba78797d4d48fb8", + "tarball": "http://registry.npmjs.org/jezebel/-/jezebel-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "a6b5342b4066a09090f0721469032cbb8bbddf28", + "tarball": "http://registry.npmjs.org/jezebel/-/jezebel-0.2.2.tgz" + }, + "0.3.0": { + "shasum": "6942ab0a6d11180b4111f0c3728747f0787cbbc4", + "tarball": "http://registry.npmjs.org/jezebel/-/jezebel-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "f6ec720bcca13b2b2175cf44d3685e103e43eb86", + "tarball": "http://registry.npmjs.org/jezebel/-/jezebel-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "087149d3a9af04cf5060b80dd4f21076243e0f3e", + "tarball": "http://registry.npmjs.org/jezebel/-/jezebel-0.3.2.tgz" + } + }, + "url": "http://registry.npmjs.org/jezebel/" + }, + "jheri-curl": { + "name": "jheri-curl", + "description": "JSON Lint + CURL", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "## Jheri-Curl\n#### JSL + CURL = WTF\n\nMashup of JSON Lint (special thanks to the team at jsonlint.com) and CURL. Useful when running CURL against JSON APIs.\n\n## Install\n sudo npm install jheri-curl -g\n \n## Usage\n jcurl http://api.twitter.com/1/statuses/public_timeline.json\n\n## Returns\n [\n {\n \"contributors\": null,\n \"place\": null,\n \"id_str\": \"136170502657024000\",\n \"favorited\": false,\n \"in_reply_to_user_id\": null,\n \"geo\": null,\n \"user\": {\n [...]\n },\n \"retweet_count\": 0,\n \"in_reply_to_screen_name\": null,\n \"coordinates\": null,\n \"in_reply_to_status_id\": null,\n \"retweeted\": false,\n \"in_reply_to_status_id_str\": null,\n \"truncated\": false,\n \"source\": \"\\u003Ca href=\\\"http:\\/\\/blackberry.com\\/twitter\\\" rel=\\\"nofollow\\\"\\u003ETwitter for BlackBerry\\u00ae\\u003C\\/a\\u003E\",\n \"created_at\": \"Mon Nov 14 19:55:52 +0000 2011\",\n \"id\": 136170502657024000,\n \"in_reply_to_user_id_str\": null,\n \"text\": \"Morgen laatste twee uurtjes vrij (: Maar 4 uur dus. #hellyeah\"\n },\n [...]\n ]\n\n## Test\n vows test/*", + "maintainers": [ + { + "name": "thisandagain", + "email": "thisandagain@gmail.com" + } + ], + "time": { + "modified": "2011-11-15T03:13:33.462Z", + "created": "2011-11-15T03:13:32.823Z", + "0.0.1": "2011-11-15T03:13:33.462Z" + }, + "author": { + "name": "Andrew Sliwinski", + "url": "http://github.com/thisandagain" + }, + "repository": { + "type": "git", + "url": "git://github.com/thisandagain/jheri-curl.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jheri-curl/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "32cb988c1d7c2c6b492d71f782f1921647863501", + "tarball": "http://registry.npmjs.org/jheri-curl/-/jheri-curl-0.0.1.tgz" + } + }, + "keywords": [ + "curl", + "json", + "lint", + "console" + ], + "url": "http://registry.npmjs.org/jheri-curl/" + }, + "jig": { + "name": "jig", + "description": "Jenkins-IRC-Github integration.", + "dist-tags": {}, + "maintainers": [ + { + "name": "jsocol", + "email": "james.socol@gmail.com" + } + ], + "time": { + "modified": "2011-10-25T22:56:25.435Z", + "created": "2011-10-25T22:56:25.435Z" + }, + "versions": {}, + "dist": {}, + "url": "http://registry.npmjs.org/jig/" + }, + "jils": { + "name": "jils", + "dist-tags": { + "latest": "0.5.4" + }, + "maintainers": [ + { + "name": "pw", + "email": "pablovidal85@gmail.com" + } + ], + "time": { + "modified": "2011-12-10T20:57:49.545Z", + "created": "2011-12-06T20:12:49.810Z", + "0.2.0": "2011-12-06T20:20:46.167Z", + "0.3.0": "2011-12-06T22:58:38.715Z", + "0.3.1": "2011-12-07T12:03:31.977Z", + "0.4.0": "2011-12-07T22:45:35.918Z", + "0.4.1": "2011-12-07T22:54:19.438Z", + "0.4.2": "2011-12-08T07:59:57.316Z", + "0.5.0": "2011-12-10T15:23:00.885Z", + "0.5.1": "2011-12-10T15:39:42.269Z", + "0.5.2": "2011-12-10T17:46:42.580Z", + "0.5.3": "2011-12-10T17:47:56.456Z", + "0.5.4": "2011-12-10T20:57:49.545Z" + }, + "description": "A simple lisp-style parser", + "versions": { + "0.2.0": "http://registry.npmjs.org/jils/0.2.0", + "0.3.0": "http://registry.npmjs.org/jils/0.3.0", + "0.3.1": "http://registry.npmjs.org/jils/0.3.1", + "0.4.0": "http://registry.npmjs.org/jils/0.4.0", + "0.4.1": "http://registry.npmjs.org/jils/0.4.1", + "0.4.2": "http://registry.npmjs.org/jils/0.4.2", + "0.5.0": "http://registry.npmjs.org/jils/0.5.0", + "0.5.1": "http://registry.npmjs.org/jils/0.5.1", + "0.5.2": "http://registry.npmjs.org/jils/0.5.2", + "0.5.3": "http://registry.npmjs.org/jils/0.5.3", + "0.5.4": "http://registry.npmjs.org/jils/0.5.4" + }, + "dist": { + "0.2.0": { + "shasum": "50c09ca151a756e2abdbc6e99eb7ca7bfbafa112", + "tarball": "http://registry.npmjs.org/jils/-/jils-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "0246ec07fae58a9d65cc18b477769ad6b39f2ce2", + "tarball": "http://registry.npmjs.org/jils/-/jils-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "e3d716da63f9ebaf50a7447abd597276f60e40f2", + "tarball": "http://registry.npmjs.org/jils/-/jils-0.3.1.tgz" + }, + "0.4.0": { + "shasum": "6ce03646c37600fc76c1152e46fbdfd2dade19f5", + "tarball": "http://registry.npmjs.org/jils/-/jils-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "9c11ec6471a0e5398de5cdcbf623455d9603bcbd", + "tarball": "http://registry.npmjs.org/jils/-/jils-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "657a8ebe59c7a4b87b8e35c21e3c582d9649a5cd", + "tarball": "http://registry.npmjs.org/jils/-/jils-0.4.2.tgz" + }, + "0.5.0": { + "shasum": "f6544dde172bb8a302928b750ba7bd5e80ad18a5", + "tarball": "http://registry.npmjs.org/jils/-/jils-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "debb80eaf47128cdfe898a6837f5bec716163974", + "tarball": "http://registry.npmjs.org/jils/-/jils-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "bc6a2d22b92abb7e907e8c74231c66436a477e6e", + "tarball": "http://registry.npmjs.org/jils/-/jils-0.5.2.tgz" + }, + "0.5.3": { + "shasum": "0123978e4b44b37a65ba335183483a6dc8952bec", + "tarball": "http://registry.npmjs.org/jils/-/jils-0.5.3.tgz" + }, + "0.5.4": { + "shasum": "4b0bfe14dec9725fa6f002e3393d1633ff25cbb8", + "tarball": "http://registry.npmjs.org/jils/-/jils-0.5.4.tgz" + } + }, + "url": "http://registry.npmjs.org/jils/" + }, + "jimi": { + "name": "jimi", + "description": "A framework for writing modular web applications in node.js", + "dist-tags": { + "latest": "0.0.8" + }, + "maintainers": [ + { + "name": "colingourlay", + "email": "colin.j.gourlay@gmail.com" + } + ], + "versions": { + "0.0.4": "http://registry.npmjs.org/jimi/0.0.4", + "0.0.7": "http://registry.npmjs.org/jimi/0.0.7", + "0.0.8": "http://registry.npmjs.org/jimi/0.0.8" + }, + "dist": { + "0.0.4": { + "tarball": "http://packages:5984/jimi/-/jimi-0.0.4.tgz" + }, + "0.0.7": { + "tarball": "http://packages:5984/jimi/-/jimi-0.0.7.tgz" + }, + "0.0.8": { + "tarball": "http://packages:5984/jimi/-/jimi-0.0.8.tgz" + } + }, + "url": "http://registry.npmjs.org/jimi/" + }, + "jinjs": { + "name": "jinjs", + "description": "A templating language in the Jinja(python)/Twig(php) family for Javascript.\nIt's objective is to compile document templates into Javascript functions\nComes with a CLI tool to use it on static documents and not only for the web.\nIs also made in tandem with Pwilang, which can then be (optionally) used to make HaML-like templates.", + "dist-tags": { + "latest": "0.3.4" + }, + "maintainers": [ + { + "name": "christophe.eymard", + "email": "christophe.eymard@ravelsoft.com" + } + ], + "time": { + "modified": "2011-11-17T23:48:54.469Z", + "created": "2011-06-12T18:20:10.955Z", + "0.1.0": "2011-06-12T18:20:11.995Z", + "0.1.1": "2011-06-14T20:48:38.580Z", + "0.1.2": "2011-06-15T12:01:57.446Z", + "0.1.3": "2011-07-22T13:52:39.553Z", + "0.1.4": "2011-07-22T14:05:33.687Z", + "0.1.5": "2011-07-25T12:07:40.722Z", + "0.2.0": "2011-08-03T10:24:09.974Z", + "0.2.1": "2011-08-10T10:39:19.317Z", + "0.2.2": "2011-08-10T10:50:08.374Z", + "0.2.3": "2011-08-10T14:41:53.729Z", + "0.2.4": "2011-08-11T15:11:38.805Z", + "0.2.5": "2011-08-14T12:55:30.458Z", + "0.2.6": "2011-08-15T13:58:28.344Z", + "0.3.0": "2011-08-18T11:50:55.604Z", + "0.3.1": "2011-08-21T14:06:09.718Z", + "0.3.2": "2011-08-21T14:20:44.562Z", + "0.3.3": "2011-10-25T10:16:02.058Z", + "0.3.4": "2011-11-17T23:48:54.469Z" + }, + "author": { + "name": "Christophe Eymard", + "email": "christophe.eymard@ravelsoft.com", + "url": "http://www.ravelsoft.com" + }, + "repository": { + "type": "hg", + "url": "https://bitbucket.org/ravelsoft/node-jinjs" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/jinjs/0.1.0", + "0.1.1": "http://registry.npmjs.org/jinjs/0.1.1", + "0.1.2": "http://registry.npmjs.org/jinjs/0.1.2", + "0.1.3": "http://registry.npmjs.org/jinjs/0.1.3", + "0.1.4": "http://registry.npmjs.org/jinjs/0.1.4", + "0.1.5": "http://registry.npmjs.org/jinjs/0.1.5", + "0.2.0": "http://registry.npmjs.org/jinjs/0.2.0", + "0.2.1": "http://registry.npmjs.org/jinjs/0.2.1", + "0.2.2": "http://registry.npmjs.org/jinjs/0.2.2", + "0.2.3": "http://registry.npmjs.org/jinjs/0.2.3", + "0.2.4": "http://registry.npmjs.org/jinjs/0.2.4", + "0.2.5": "http://registry.npmjs.org/jinjs/0.2.5", + "0.2.6": "http://registry.npmjs.org/jinjs/0.2.6", + "0.3.0": "http://registry.npmjs.org/jinjs/0.3.0", + "0.3.1": "http://registry.npmjs.org/jinjs/0.3.1", + "0.3.2": "http://registry.npmjs.org/jinjs/0.3.2", + "0.3.3": "http://registry.npmjs.org/jinjs/0.3.3", + "0.3.4": "http://registry.npmjs.org/jinjs/0.3.4" + }, + "dist": { + "0.1.0": { + "shasum": "711f93f75654cafbb9d7ba0e233a4c78adbf3ae4", + "tarball": "http://registry.npmjs.org/jinjs/-/jinjs-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "f3609877e45e3b4ed82a0ad999c82020eab50022", + "tarball": "http://registry.npmjs.org/jinjs/-/jinjs-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "5b2bf311711c46043eab20801e6c87930223b747", + "tarball": "http://registry.npmjs.org/jinjs/-/jinjs-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "b97e324f0c043cd88831d54c15973d2c1c28a3f0", + "tarball": "http://registry.npmjs.org/jinjs/-/jinjs-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "cbed1a289d734ef89955a61ac61f87218f412d80", + "tarball": "http://registry.npmjs.org/jinjs/-/jinjs-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "79b86894b932f7d11042cc8bccea9c3b068d47ae", + "tarball": "http://registry.npmjs.org/jinjs/-/jinjs-0.1.5.tgz" + }, + "0.2.0": { + "shasum": "d590bc77e20192793da8ab091ddd0f0f0d3f5aab", + "tarball": "http://registry.npmjs.org/jinjs/-/jinjs-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "aa1ba73029eb7a6e9b7355c0e1e4b31e26e746ac", + "tarball": "http://registry.npmjs.org/jinjs/-/jinjs-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "b994745e425c68a5c25d423ec962deb7fe438d2d", + "tarball": "http://registry.npmjs.org/jinjs/-/jinjs-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "cbac3f0bdb168daa90034708b9d327f8c510819e", + "tarball": "http://registry.npmjs.org/jinjs/-/jinjs-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "19fb847a1b08ab745d2706cd4fa747e2c084a3ee", + "tarball": "http://registry.npmjs.org/jinjs/-/jinjs-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "3ea24e3e49be9478ebb0a57a36123ae93d7eefeb", + "tarball": "http://registry.npmjs.org/jinjs/-/jinjs-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "cb6356e78927caaa4c597f55c65d312b3cff2b99", + "tarball": "http://registry.npmjs.org/jinjs/-/jinjs-0.2.6.tgz" + }, + "0.3.0": { + "shasum": "58947785d53e652bad6c339e6731691982384da0", + "tarball": "http://registry.npmjs.org/jinjs/-/jinjs-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "0de3855e0fd62e44327719cadabae63f3bbddfd0", + "tarball": "http://registry.npmjs.org/jinjs/-/jinjs-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "c19b328e17263ff194cfa7d6c5bd286ae797f75e", + "tarball": "http://registry.npmjs.org/jinjs/-/jinjs-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "3804f67edf7cf1185c2f94eaa94303fc0bd24b09", + "tarball": "http://registry.npmjs.org/jinjs/-/jinjs-0.3.3.tgz" + }, + "0.3.4": { + "shasum": "18c23286f018e89be58aed6cdece67d88eb5d6fe", + "tarball": "http://registry.npmjs.org/jinjs/-/jinjs-0.3.4.tgz" + } + }, + "keywords": [ + "language", + "compiler", + "templating", + "pwilang", + "html", + "xml", + "jinjs" + ], + "url": "http://registry.npmjs.org/jinjs/" + }, + "jinkies": { + "name": "jinkies", + "description": "Translate GitHub post commits to Jenkins CI builds and back", + "dist-tags": { + "latest": "0.2.11" + }, + "maintainers": [ + { + "name": "atmos", + "email": "atmos@atmos.org" + }, + { + "name": "tmm1", + "email": "aman@tmm1.net" + } + ], + "time": { + "modified": "2011-05-08T05:44:14.491Z", + "created": "2011-03-05T00:09:21.491Z", + "0.2.4": "2011-03-05T00:09:21.786Z", + "0.2.5": "2011-03-05T00:12:52.650Z", + "0.2.6": "2011-03-05T04:14:36.142Z", + "0.2.7": "2011-03-07T21:58:55.892Z", + "0.2.8": "2011-03-09T01:13:57.114Z", + "0.3.1": "2011-03-21T21:38:10.327Z", + "0.3.2": "2011-03-21T21:54:34.342Z", + "0.3.3": "2011-03-21T22:13:30.248Z", + "0.3.4": "2011-03-22T06:42:22.828Z", + "0.3.5": "2011-03-22T07:15:57.054Z", + "0.3.6": "2011-03-22T08:07:36.594Z", + "0.2.9": "2011-05-08T05:07:00.079Z", + "0.2.10": "2011-05-08T05:21:40.338Z", + "0.2.11": "2011-05-08T05:44:14.491Z" + }, + "author": { + "name": "Corey Donohoe" + }, + "repository": { + "type": "git", + "url": "git://github.com/atmos/jinkies.git" + }, + "versions": { + "0.2.4": "http://registry.npmjs.org/jinkies/0.2.4", + "0.2.5": "http://registry.npmjs.org/jinkies/0.2.5", + "0.2.6": "http://registry.npmjs.org/jinkies/0.2.6", + "0.2.7": "http://registry.npmjs.org/jinkies/0.2.7", + "0.2.8": "http://registry.npmjs.org/jinkies/0.2.8", + "0.3.1": "http://registry.npmjs.org/jinkies/0.3.1", + "0.3.2": "http://registry.npmjs.org/jinkies/0.3.2", + "0.3.3": "http://registry.npmjs.org/jinkies/0.3.3", + "0.3.4": "http://registry.npmjs.org/jinkies/0.3.4", + "0.3.5": "http://registry.npmjs.org/jinkies/0.3.5", + "0.3.6": "http://registry.npmjs.org/jinkies/0.3.6", + "0.2.9": "http://registry.npmjs.org/jinkies/0.2.9", + "0.2.10": "http://registry.npmjs.org/jinkies/0.2.10", + "0.2.11": "http://registry.npmjs.org/jinkies/0.2.11" + }, + "dist": { + "0.2.4": { + "shasum": "a0353032984c6e95e7e231f9da53f655490a2358", + "tarball": "http://registry.npmjs.org/jinkies/-/jinkies-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "08fc294fe25bf19c8ba1327fbc6ef5b77d262a90", + "tarball": "http://registry.npmjs.org/jinkies/-/jinkies-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "5cf0e0fec80e00e3858b299d2b6c212bd214eb7a", + "tarball": "http://registry.npmjs.org/jinkies/-/jinkies-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "b6609032c9a3516ae942682dd17c13eea22ba783", + "tarball": "http://registry.npmjs.org/jinkies/-/jinkies-0.2.7.tgz" + }, + "0.2.8": { + "shasum": "e14ddf4df5723d658949064c8d9f8026ff95f3c3", + "tarball": "http://registry.npmjs.org/jinkies/-/jinkies-0.2.8.tgz" + }, + "0.3.1": { + "shasum": "a3468084b949fb21eb5f802901d0350f053462b7", + "tarball": "http://registry.npmjs.org/jinkies/-/jinkies-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "209baee2fb5af68c714dc0d337fa24c999a360eb", + "tarball": "http://registry.npmjs.org/jinkies/-/jinkies-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "e1459178b8b928cff6791bf3ec1e22f7663fba58", + "tarball": "http://registry.npmjs.org/jinkies/-/jinkies-0.3.3.tgz" + }, + "0.3.4": { + "shasum": "2a152aa1e5e4385ba92871c1d445a1e99f19b8dd", + "tarball": "http://registry.npmjs.org/jinkies/-/jinkies-0.3.4.tgz" + }, + "0.3.5": { + "shasum": "a4223b648d467552c0e9e4ae071dbdf6662318ae", + "tarball": "http://registry.npmjs.org/jinkies/-/jinkies-0.3.5.tgz" + }, + "0.3.6": { + "shasum": "22222bae12230cb9aaed229c0633d69669d3572e", + "tarball": "http://registry.npmjs.org/jinkies/-/jinkies-0.3.6.tgz" + }, + "0.2.9": { + "shasum": "c425c620d21f22af73817f8b6282acdae59c8bda", + "tarball": "http://registry.npmjs.org/jinkies/-/jinkies-0.2.9.tgz" + }, + "0.2.10": { + "shasum": "5ac5acb3e561014d68250579ae99d0093a221d92", + "tarball": "http://registry.npmjs.org/jinkies/-/jinkies-0.2.10.tgz" + }, + "0.2.11": { + "shasum": "fe70151eb262e8a687c5e4fc5a1cccdf1750e292", + "tarball": "http://registry.npmjs.org/jinkies/-/jinkies-0.2.11.tgz" + } + }, + "keywords": "github post-receive hudson jenkins", + "url": "http://registry.npmjs.org/jinkies/" + }, + "jira": { + "name": "jira", + "description": "Wrapper for the JIRA API", + "dist-tags": { + "latest": "0.0.2" + }, + "readme": "# JavaScript JIRA API for node.js\n\nA node.js module, which provides an object oriented wrapper for the JIRA REST API.\n\nThis library is built to support version `2.0.alpha1` of the JIRA REST API.\n\nJIRA REST API documentation can be found [here](http://docs.atlassian.com/jira/REST/latest/)\n\n## Installation\n\n Install with the node package manager [npm](http://npmjs.org):\n\n $ npm install jira\n\nor\n\n Install via git clone:\n\n $ git clone git://git://github.com/steves/node-jira.git\n $ cd node-jira\n $ npm install\n\n## Example\n\nFind the status of an issue.\n\n JiraApi = require('jira').JiraApi;\n\n var jira = new JiraApi('https', config.host, config.port, config.user, config.password, '2.0.alpha1');\n jira.findIssue(issueNumber, function(error, issue) {\n console.log('Status: ' + issue.fields.status.value.name);\n });\n\nCurrently there is no explicit login call necessary as each API call makes a call to `login` before processing. This causes a lot of unnecessary logins and will be cleaned up in a future version.\n\n## Implemented APIs\n\n* Authentication\n* Pulling an issue\n* Pulling a project\n* Pulling unresolved issues count for a specific version\n* Issue linking\n\n## TODO\n\n* API docs\n * Better most methods are currently undocumented\n* Tests\n* Refactor currently implemented APIs to be more Object Oriented\n* Refactor to make use of built-in node.js events and classes\n* Auto-redirect between `http` and `https` following headers", + "maintainers": [ + { + "name": "steves", + "email": "steven.surowiec@gmail.com" + } + ], + "time": { + "modified": "2011-11-11T05:19:33.168Z", + "created": "2011-11-11T05:15:37.928Z", + "0.0.1": "2011-11-11T05:15:40.133Z", + "0.0.2": "2011-11-11T05:19:33.168Z" + }, + "author": { + "name": "Steven Surowiec", + "email": "steven.surowiec@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/steves/node-jira.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jira/0.0.1", + "0.0.2": "http://registry.npmjs.org/jira/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "14818da6ce9450a7be4ef14398a49961172da49d", + "tarball": "http://registry.npmjs.org/jira/-/jira-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "d02f526def61cfc416cf9c29b99b02f91de62d42", + "tarball": "http://registry.npmjs.org/jira/-/jira-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/jira/" + }, + "jison": { + "name": "jison", + "dist-tags": { + "latest": "0.2.13" + }, + "maintainers": [ + { + "name": "zaach", + "email": "zack.carter@gmail.com" + } + ], + "author": { + "name": "Zach Carter", + "email": "zach@carter.name", + "url": "http://zaa.ch" + }, + "time": { + "modified": "2011-12-03T16:55:54.324Z", + "created": "2010-12-18T20:04:58.119Z", + "0.1.20": "2010-12-18T20:04:58.119Z", + "0.1.21": "2010-12-18T20:04:58.119Z", + "0.1.24": "2010-12-18T20:04:58.119Z", + "0.1.25": "2010-12-18T20:04:58.119Z", + "0.1.26": "2010-12-18T20:04:58.119Z", + "0.1.27": "2010-12-18T20:04:58.119Z", + "0.2.0": "2010-12-18T20:04:58.119Z", + "0.2.1": "2011-01-21T21:42:27.318Z", + "0.2.2": "2011-01-22T21:34:49.206Z", + "0.2.4": "2011-03-27T08:24:17.411Z", + "0.2.5": "2011-04-11T23:10:07.857Z", + "0.2.6": "2011-04-14T16:25:03.026Z", + "0.2.7": "2011-04-20T21:47:31.816Z", + "0.2.8": "2011-05-10T17:09:21.082Z", + "0.2.9": "2011-05-10T18:30:54.452Z", + "0.2.10": "2011-07-06T19:43:22.797Z", + "0.2.11": "2011-07-06T20:04:46.670Z", + "0.2.12": "2011-12-03T16:13:35.326Z", + "0.2.13": "2011-12-03T16:55:54.324Z" + }, + "description": "A parser generator with Bison's API", + "repository": { + "type": "git", + "url": "git://github.com/zaach/jison.git" + }, + "versions": { + "0.1.20": "http://registry.npmjs.org/jison/0.1.20", + "0.1.21": "http://registry.npmjs.org/jison/0.1.21", + "0.1.24": "http://registry.npmjs.org/jison/0.1.24", + "0.1.25": "http://registry.npmjs.org/jison/0.1.25", + "0.1.26": "http://registry.npmjs.org/jison/0.1.26", + "0.1.27": "http://registry.npmjs.org/jison/0.1.27", + "0.2.0": "http://registry.npmjs.org/jison/0.2.0", + "0.2.1": "http://registry.npmjs.org/jison/0.2.1", + "0.2.2": "http://registry.npmjs.org/jison/0.2.2", + "0.2.4": "http://registry.npmjs.org/jison/0.2.4", + "0.2.5": "http://registry.npmjs.org/jison/0.2.5", + "0.2.6": "http://registry.npmjs.org/jison/0.2.6", + "0.2.7": "http://registry.npmjs.org/jison/0.2.7", + "0.2.8": "http://registry.npmjs.org/jison/0.2.8", + "0.2.9": "http://registry.npmjs.org/jison/0.2.9", + "0.2.10": "http://registry.npmjs.org/jison/0.2.10", + "0.2.11": "http://registry.npmjs.org/jison/0.2.11", + "0.2.12": "http://registry.npmjs.org/jison/0.2.12", + "0.2.13": "http://registry.npmjs.org/jison/0.2.13" + }, + "dist": { + "0.1.20": { + "tarball": "http://registry.npmjs.org/jison/-/jison-0.1.20.tgz" + }, + "0.1.21": { + "tarball": "http://registry.npmjs.org/jison/-/jison-0.1.21.tgz" + }, + "0.1.24": { + "tarball": "http://registry.npmjs.org/jison/-/jison-0.1.24.tgz" + }, + "0.1.25": { + "tarball": "http://registry.npmjs.org/jison/-/jison-0.1.25.tgz" + }, + "0.1.26": { + "tarball": "http://registry.npmjs.org/jison/-/jison-0.1.26.tgz" + }, + "0.1.27": { + "tarball": "http://registry.npmjs.org/jison/-/jison-0.1.27.tgz" + }, + "0.2.0": { + "shasum": "19e2f7b38ac486e5c39fdb79278cfce9915e0e87", + "tarball": "http://registry.npmjs.org/jison/-/jison-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "d049722e50b0af23ed5262bec3e70a913b1ededc", + "tarball": "http://registry.npmjs.org/jison/-/jison-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "ea934142000ac6ed15f849fce3283fa0ff710efa", + "tarball": "http://registry.npmjs.org/jison/-/jison-0.2.2.tgz" + }, + "0.2.4": { + "shasum": "9ec29c68d6244346a8133936f8a56fca5da5ed69", + "tarball": "http://registry.npmjs.org/jison/-/jison-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "ba05d4bc849484f758951398a970910ea1c82379", + "tarball": "http://registry.npmjs.org/jison/-/jison-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "b4da95982af2f0f04aa38962fee78a2d385c423a", + "tarball": "http://registry.npmjs.org/jison/-/jison-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "ff1966fb1a69d0ce76e36d67785016e24d7369a8", + "tarball": "http://registry.npmjs.org/jison/-/jison-0.2.7.tgz" + }, + "0.2.8": { + "shasum": "2d888d3df6aafda8308d896efe2b805076ec3772", + "tarball": "http://registry.npmjs.org/jison/-/jison-0.2.8.tgz" + }, + "0.2.9": { + "shasum": "05d4146fc33ef19f1a68c66239b17e0a54974ead", + "tarball": "http://registry.npmjs.org/jison/-/jison-0.2.9.tgz" + }, + "0.2.10": { + "shasum": "59ac6bad35d7ad16c45d8717fe40fb76b4d68b19", + "tarball": "http://registry.npmjs.org/jison/-/jison-0.2.10.tgz" + }, + "0.2.11": { + "shasum": "27a1744ff7df2554d46dbe771c6ac5c6605ad9de", + "tarball": "http://registry.npmjs.org/jison/-/jison-0.2.11.tgz" + }, + "0.2.12": { + "shasum": "4d56cfbf5f1a36ee1102ca802eb0542480f617df", + "tarball": "http://registry.npmjs.org/jison/-/jison-0.2.12.tgz" + }, + "0.2.13": { + "shasum": "b98ded7748391c2b059fe889258a3c761625324c", + "tarball": "http://registry.npmjs.org/jison/-/jison-0.2.13.tgz" + } + }, + "keywords": [ + "jison", + "bison", + "yacc", + "parser", + "generator", + "lexer", + "flex", + "tokenizer", + "compiler" + ], + "url": "http://registry.npmjs.org/jison/" + }, + "jitsu": { + "name": "jitsu", + "description": "Flawless command line deployment of your Node.js apps to the cloud", + "dist-tags": { + "latest": "0.7.2-1" + }, + "maintainers": [ + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + }, + { + "name": "marak", + "email": "marak.squires@gmail.com" + }, + { + "name": "bradleymeck", + "email": "bradley.meck@gmail.com" + }, + { + "name": "avianflu", + "email": "charlie@charlieistheman.com" + } + ], + "time": { + "modified": "2011-12-06T08:43:19.099Z", + "created": "2011-04-09T20:29:19.733Z", + "0.1.1": "2011-04-09T20:29:19.919Z", + "0.1.1-1": "2011-04-09T21:17:38.573Z", + "0.1.1-2": "2011-04-10T00:44:14.511Z", + "0.1.1-3": "2011-04-10T07:17:11.541Z", + "0.1.2": "2011-04-11T08:11:53.985Z", + "0.1.3": "2011-04-12T15:59:39.431Z", + "0.1.3-1": "2011-04-12T16:05:31.708Z", + "0.2.0": "2011-04-14T10:22:50.490Z", + "0.2.1": "2011-04-17T10:46:39.744Z", + "0.3.0": "2011-04-25T13:34:34.576Z", + "0.3.1": "2011-04-25T19:00:17.406Z", + "0.3.2": "2011-04-26T00:33:35.214Z", + "0.3.3": "2011-04-27T10:37:39.939Z", + "0.3.4": "2011-05-14T07:40:06.763Z", + "0.3.5": "2011-05-30T07:48:54.366Z", + "0.3.5-1": "2011-05-31T02:40:03.460Z", + "0.3.5-2": "2011-05-31T08:30:18.866Z", + "0.3.5-3": "2011-06-01T09:26:20.445Z", + "0.3.6": "2011-06-04T05:02:53.466Z", + "0.3.7": "2011-06-08T04:29:19.545Z", + "0.3.8": "2011-06-14T22:46:22.760Z", + "0.3.12": "2011-07-08T21:31:13.695Z", + "0.4.0": "2011-08-10T18:57:24.922Z", + "0.4.1": "2011-08-17T01:54:03.837Z", + "0.4.2": "2011-08-17T18:37:27.664Z", + "0.4.3": "2011-08-19T16:59:12.547Z", + "0.4.4": "2011-08-21T00:43:20.532Z", + "0.4.5": "2011-08-22T00:49:32.766Z", + "0.4.6": "2011-08-23T19:56:05.365Z", + "0.4.7": "2011-08-23T21:04:47.170Z", + "0.4.8": "2011-08-25T10:49:14.424Z", + "0.4.9": "2011-08-26T12:45:20.936Z", + "0.4.91": "2011-08-26T21:31:54.260Z", + "0.4.92": "2011-08-26T23:44:11.112Z", + "0.4.93": "2011-08-27T00:07:53.874Z", + "0.4.94": "2011-09-03T04:03:51.527Z", + "0.4.10": "2011-09-11T20:26:51.680Z", + "0.4.11": "2011-09-13T04:35:21.033Z", + "0.4.12": "2011-09-16T04:50:39.270Z", + "0.4.13": "2011-09-16T21:45:57.352Z", + "0.4.14": "2011-09-24T22:23:09.044Z", + "0.4.15": "2011-09-26T19:56:28.404Z", + "0.4.16": "2011-09-27T17:58:40.499Z", + "0.5.0": "2011-10-22T02:42:13.806Z", + "0.5.0-1": "2011-10-24T23:40:04.796Z", + "0.6.0": "2011-11-01T01:18:24.363Z", + "0.6.1": "2011-11-01T06:19:22.932Z", + "0.6.1-1": "2011-11-04T22:36:23.178Z", + "0.6.2": "2011-11-10T21:23:16.264Z", + "0.6.3": "2011-11-11T00:34:22.498Z", + "0.7.0": "2011-11-18T11:42:24.904Z", + "0.7.0-1": "2011-11-18T23:43:15.749Z", + "0.7.0-2": "2011-11-21T02:12:16.797Z", + "0.7.1": "2011-11-28T23:14:22.714Z", + "0.7.2": "2011-12-05T23:11:07.751Z", + "0.7.2-1": "2011-12-06T08:43:19.099Z" + }, + "author": { + "name": "Nodejitsu Inc.", + "email": "support@nodejitsu.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/nodejitsu/jitsu.git" + }, + "versions": { + "0.4.14": "http://registry.npmjs.org/jitsu/0.4.14", + "0.4.15": "http://registry.npmjs.org/jitsu/0.4.15", + "0.4.16": "http://registry.npmjs.org/jitsu/0.4.16", + "0.5.0": "http://registry.npmjs.org/jitsu/0.5.0", + "0.5.0-1": "http://registry.npmjs.org/jitsu/0.5.0-1", + "0.6.0": "http://registry.npmjs.org/jitsu/0.6.0", + "0.6.1": "http://registry.npmjs.org/jitsu/0.6.1", + "0.6.1-1": "http://registry.npmjs.org/jitsu/0.6.1-1", + "0.6.2": "http://registry.npmjs.org/jitsu/0.6.2", + "0.6.3": "http://registry.npmjs.org/jitsu/0.6.3", + "0.7.0": "http://registry.npmjs.org/jitsu/0.7.0", + "0.7.0-1": "http://registry.npmjs.org/jitsu/0.7.0-1", + "0.7.0-2": "http://registry.npmjs.org/jitsu/0.7.0-2", + "0.7.1": "http://registry.npmjs.org/jitsu/0.7.1", + "0.7.2": "http://registry.npmjs.org/jitsu/0.7.2", + "0.7.2-1": "http://registry.npmjs.org/jitsu/0.7.2-1" + }, + "dist": { + "0.4.14": { + "shasum": "dd32aef5a8a1b529ead57e54d66c0c95c4f88120", + "tarball": "http://registry.npmjs.org/jitsu/-/jitsu-0.4.14.tgz" + }, + "0.4.15": { + "shasum": "bc527296483f11b92d24bac3a5d95730ac54a710", + "tarball": "http://registry.npmjs.org/jitsu/-/jitsu-0.4.15.tgz" + }, + "0.4.16": { + "shasum": "e10f5e83a5b40a31f1b44ff5fb5f80f78456006b", + "tarball": "http://registry.npmjs.org/jitsu/-/jitsu-0.4.16.tgz" + }, + "0.5.0": { + "shasum": "309611b909ac64374b1c4e6a35ad8e0acd18c94e", + "tarball": "http://registry.npmjs.org/jitsu/-/jitsu-0.5.0.tgz" + }, + "0.5.0-1": { + "shasum": "5440b8bf5a22ccf09406fa0de15214773a821e91", + "tarball": "http://registry.npmjs.org/jitsu/-/jitsu-0.5.0-1.tgz" + }, + "0.6.0": { + "shasum": "db0535b659f978bdf99ae1d10dbe999624f52ed6", + "tarball": "http://registry.npmjs.org/jitsu/-/jitsu-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "d12e574e776ac3215647a466b53723ec37e8afc7", + "tarball": "http://registry.npmjs.org/jitsu/-/jitsu-0.6.1.tgz" + }, + "0.6.1-1": { + "shasum": "44906ce49afaa05fa42e3cedc34afed87162751c", + "tarball": "http://registry.npmjs.org/jitsu/-/jitsu-0.6.1-1.tgz" + }, + "0.6.2": { + "shasum": "7b70958b324754b9f06c1333b54841d73e8b213c", + "tarball": "http://registry.npmjs.org/jitsu/-/jitsu-0.6.2.tgz" + }, + "0.6.3": { + "shasum": "5f9d4991032e43b3ac666bf8c46af09df008e6da", + "tarball": "http://registry.npmjs.org/jitsu/-/jitsu-0.6.3.tgz" + }, + "0.7.0": { + "shasum": "9bb5b192f688678a67e9c3f219471c26b5b7f2b2", + "tarball": "http://registry.npmjs.org/jitsu/-/jitsu-0.7.0.tgz" + }, + "0.7.0-1": { + "shasum": "9ee1d7a0e8602358f622b33d8e4a4615273c709f", + "tarball": "http://registry.npmjs.org/jitsu/-/jitsu-0.7.0-1.tgz" + }, + "0.7.0-2": { + "shasum": "49d73040edb12322da4f4b0b2180dd4d8dc6547d", + "tarball": "http://registry.npmjs.org/jitsu/-/jitsu-0.7.0-2.tgz" + }, + "0.7.1": { + "shasum": "eb7fb9b462c6c5456b6db0e3809a642f252571ff", + "tarball": "http://registry.npmjs.org/jitsu/-/jitsu-0.7.1.tgz" + }, + "0.7.2": { + "shasum": "6fda45db6b996e02c3d064bb85d5c136be5d66bb", + "tarball": "http://registry.npmjs.org/jitsu/-/jitsu-0.7.2.tgz" + }, + "0.7.2-1": { + "shasum": "c63ef0b8b8c8e09a71b12d1c65ecc7876e355a5e", + "tarball": "http://registry.npmjs.org/jitsu/-/jitsu-0.7.2-1.tgz" + } + }, + "keywords": [ + "cli", + "nodejitsu", + "cloud hosting", + "platform-as-a-service", + "deployment" + ], + "url": "http://registry.npmjs.org/jitsu/" + }, + "jitsudb": { + "name": "jitsudb", + "description": "Have Nodejitsu? Enjoy your database.", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "jesusabdullah", + "email": "josh.holbrook@gmail.com" + } + ], + "time": { + "modified": "2011-10-17T04:27:35.513Z", + "created": "2011-10-17T04:27:34.295Z", + "0.0.0": "2011-10-17T04:27:35.513Z" + }, + "author": { + "name": "Joshua Holbrook", + "email": "josh.holbrook@gmail.com", + "url": "http://jesusabdullah.github.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:jesusabdullah/jitsudb.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/jitsudb/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "cf1123fcb0f212e05fd2c4841821e5095d2ff728", + "tarball": "http://registry.npmjs.org/jitsudb/-/jitsudb-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/jitsudb/" + }, + "jitter": { + "name": "jitter", + "description": "Simple continuous compilation for CoffeeScript", + "dist-tags": { + "latest": "1.1.1" + }, + "maintainers": [ + { + "name": "TrevorBurnham", + "email": "trevorburnham@gmail.com" + } + ], + "author": { + "name": "Trevor Burnham" + }, + "time": { + "modified": "2011-12-07T19:03:51.225Z", + "created": "2011-03-10T04:11:34.263Z", + "0.9.2": "2011-12-07T19:03:51.225Z", + "0.9.4": "2011-12-07T19:03:51.225Z", + "1.0.1": "2011-12-07T19:03:51.225Z", + "1.1.0": "2011-12-07T19:03:51.225Z", + "1.1.1": "2011-12-07T19:03:51.225Z" + }, + "versions": { + "0.9.2": "http://registry.npmjs.org/jitter/0.9.2", + "0.9.4": "http://registry.npmjs.org/jitter/0.9.4", + "1.0.1": "http://registry.npmjs.org/jitter/1.0.1", + "1.1.0": "http://registry.npmjs.org/jitter/1.1.0", + "1.1.1": "http://registry.npmjs.org/jitter/1.1.1" + }, + "dist": { + "0.9.2": { + "tarball": "http://registry.npmjs.org/jitter/-/jitter-0.9.2.tgz" + }, + "0.9.4": { + "tarball": "http://registry.npmjs.org/jitter/-/jitter-0.9.4.tgz" + }, + "1.0.1": { + "shasum": "98ea74d2d39cf803d2fd86ca8ab52a73b55b0fae", + "tarball": "http://registry.npmjs.org/jitter/-/jitter-1.0.1.tgz" + }, + "1.1.0": { + "shasum": "dd76472101217c66ca861742cdbdc094682096db", + "tarball": "http://registry.npmjs.org/jitter/-/jitter-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "c88715bfaab5c428fb2c26515d4e275b6e1d5814", + "tarball": "http://registry.npmjs.org/jitter/-/jitter-1.1.1.tgz" + } + }, + "keywords": [ + "coffeescript", + "compiler" + ], + "url": "http://registry.npmjs.org/jitter/" + }, + "jj": { + "name": "jj", + "description": "A \"someone's got to do it\" solution to the lack of a jquery plugin/package management system. Similar to Ender, but focuses on jquery.", + "dist-tags": { + "latest": "0.0.13" + }, + "maintainers": [ + { + "name": "colinta", + "email": "colinta@mac.com" + } + ], + "time": { + "modified": "2011-09-14T19:37:43.815Z", + "created": "2011-09-06T18:20:27.976Z", + "0.0.0": "2011-09-06T18:20:31.897Z", + "0.0.1": "2011-09-06T18:21:52.144Z", + "0.0.2": "2011-09-06T18:29:04.377Z", + "0.0.3": "2011-09-06T18:32:16.687Z", + "0.0.4": "2011-09-07T05:48:25.704Z", + "0.0.8": "2011-09-07T17:24:54.164Z", + "0.0.9": "2011-09-07T17:27:28.130Z", + "0.0.10": "2011-09-14T06:47:03.207Z", + "0.0.12": "2011-09-14T15:21:57.565Z", + "0.0.13": "2011-09-14T19:37:43.815Z" + }, + "author": { + "name": "Colin Thomas-Arnold", + "email": "colinta@mac.com", + "url": "http://echonull.colinta.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/colinta/jj.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/jj/0.0.0", + "0.0.1": "http://registry.npmjs.org/jj/0.0.1", + "0.0.2": "http://registry.npmjs.org/jj/0.0.2", + "0.0.3": "http://registry.npmjs.org/jj/0.0.3", + "0.0.4": "http://registry.npmjs.org/jj/0.0.4", + "0.0.8": "http://registry.npmjs.org/jj/0.0.8", + "0.0.9": "http://registry.npmjs.org/jj/0.0.9", + "0.0.10": "http://registry.npmjs.org/jj/0.0.10", + "0.0.12": "http://registry.npmjs.org/jj/0.0.12", + "0.0.13": "http://registry.npmjs.org/jj/0.0.13" + }, + "dist": { + "0.0.0": { + "shasum": "6399df935c75af30811e3a08449545464dbefe9e", + "tarball": "http://registry.npmjs.org/jj/-/jj-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "cebc5b0e514e4fa66937bda423530c666d6afb72", + "tarball": "http://registry.npmjs.org/jj/-/jj-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "026a36c78e9acdd47545cd0818486d905f3906db", + "tarball": "http://registry.npmjs.org/jj/-/jj-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "2e667bc0d07a64c7f51ab7e751e8c54301ef339a", + "tarball": "http://registry.npmjs.org/jj/-/jj-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "b2709dbaf806472e8f900e410076040b06b070d8", + "tarball": "http://registry.npmjs.org/jj/-/jj-0.0.4.tgz" + }, + "0.0.8": { + "shasum": "cae570d3e419edef76d4186fd988d1676ffa26b7", + "tarball": "http://registry.npmjs.org/jj/-/jj-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "9d4ef5e426c8c698379fe2a3b05da53f683c87c9", + "tarball": "http://registry.npmjs.org/jj/-/jj-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "c4e65f203396163521558f38c5982f4b6d5b77c1", + "tarball": "http://registry.npmjs.org/jj/-/jj-0.0.10.tgz" + }, + "0.0.12": { + "shasum": "fb9251caab548d26275f42f2161e41520030857a", + "tarball": "http://registry.npmjs.org/jj/-/jj-0.0.12.tgz" + }, + "0.0.13": { + "shasum": "a4d7f410c17811f545de287e3a1ade8b03e27285", + "tarball": "http://registry.npmjs.org/jj/-/jj-0.0.13.tgz" + } + }, + "keywords": [ + "jquery", + "package manager", + "plugin manager" + ], + "url": "http://registry.npmjs.org/jj/" + }, + "jjw": { + "name": "jjw", + "description": "jsdom + jquery using workers for async scraping", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "stagas", + "email": "gstagas@gmail.com" + } + ], + "time": { + "modified": "2011-03-02T20:18:19.730Z", + "created": "2011-03-01T23:13:27.980Z", + "0.0.1": "2011-03-01T23:13:28.683Z", + "0.0.2": "2011-03-02T09:28:37.282Z", + "0.0.3": "2011-03-02T19:51:50.949Z", + "0.0.4": "2011-03-02T20:18:19.730Z" + }, + "author": { + "name": "George Stagas", + "email": "gstagas@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/stagas/jjw.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jjw/0.0.1", + "0.0.2": "http://registry.npmjs.org/jjw/0.0.2", + "0.0.3": "http://registry.npmjs.org/jjw/0.0.3", + "0.0.4": "http://registry.npmjs.org/jjw/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "14fe43e651cc6e801c8dc2ae43a79ec53ed8bc26", + "tarball": "http://registry.npmjs.org/jjw/-/jjw-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c9203905b58ae4e0cc4771d421268d88c84c1636", + "tarball": "http://registry.npmjs.org/jjw/-/jjw-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "1ecb2fcab87a56154b596fe81f504239cec7bdf3", + "tarball": "http://registry.npmjs.org/jjw/-/jjw-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "c4f7684a2d0a32ac3f7f2ea965a8da2ba85ccb3b", + "tarball": "http://registry.npmjs.org/jjw/-/jjw-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/jjw/" + }, + "jkwery": { + "name": "jkwery", + "description": "Another command-line jQuery", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "Hypher", + "email": "pierre.gotab@gmail.com" + } + ], + "time": { + "modified": "2011-02-10T08:35:35.234Z", + "created": "2011-02-09T21:24:21.943Z", + "0.1.0": "2011-02-09T21:24:22.303Z", + "0.1.1": "2011-02-09T22:06:00.490Z", + "0.1.2": "2011-02-10T00:13:00.205Z", + "0.1.3": "2011-02-10T02:27:44.045Z", + "0.1.4": "2011-02-10T08:35:35.234Z" + }, + "author": { + "name": "P Gotab" + }, + "repository": { + "type": "git", + "url": "http://github.com/Hypher/jkwery.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/jkwery/0.1.0", + "0.1.1": "http://registry.npmjs.org/jkwery/0.1.1", + "0.1.2": "http://registry.npmjs.org/jkwery/0.1.2", + "0.1.3": "http://registry.npmjs.org/jkwery/0.1.3", + "0.1.4": "http://registry.npmjs.org/jkwery/0.1.4" + }, + "dist": { + "0.1.0": { + "shasum": "c4c3fdaaba95b675095ed299fbd3dd5f4cd4aef1", + "tarball": "http://registry.npmjs.org/jkwery/-/jkwery-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "eeaf294da2a93be49c6d13ada05b3ae06ae14502", + "tarball": "http://registry.npmjs.org/jkwery/-/jkwery-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "427adb00d2ae0e1231ec3fee84cf1d6b7448c887", + "tarball": "http://registry.npmjs.org/jkwery/-/jkwery-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "d4352b44a9c1ffadccab40d15c054e132c3ca56a", + "tarball": "http://registry.npmjs.org/jkwery/-/jkwery-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "c13f628a498fa95b5330294a0e55ee3e61f27890", + "tarball": "http://registry.npmjs.org/jkwery/-/jkwery-0.1.4.tgz" + } + }, + "keywords": [ + "jquery", + "html", + "dom", + "parser" + ], + "url": "http://registry.npmjs.org/jkwery/" + }, + "jmen": { + "name": "jmen", + "description": "watch javascript files, merge them into one file whenever one of those files is updated.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "xianhuazhou", + "email": "xianhua.zhou@gmail.com" + } + ], + "time": { + "modified": "2011-08-01T06:39:23.654Z", + "created": "2011-08-01T06:38:58.738Z", + "0.1.0": "2011-08-01T06:39:23.654Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/xianhuazhou/jmen.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/jmen/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "462c017066081fbbadaad159491892f1938506d7", + "tarball": "http://registry.npmjs.org/jmen/-/jmen-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/jmen/" + }, + "job_board": { + "name": "job_board", + "description": "Job Queueing done easy", + "dist-tags": { + "latest": "0.1.4" + }, + "readme": "# JOB BOARD\n\n## Components\n- Receiver\n- Pusher\n- Queue\n- Storage\n- Job\n- JobBoard\n- CLI Interface\n\n## Receiver\nListens for job requests. Pushes them into the Queue and Storage. Receivers must register their Pusher before requests will be processed. Requests that don't have a corresponding receiver will be ignored.\n\n## Pusher\nPulls requests off the Queue and pushes them to their processors. Only deletes a request from the Queue after callback calls done().\n\n## Queue\nAdd and remove request, can be reset from Storage given a timestamp.\n\n## Storage\nPermanent storage of requests and jobs. Requests indexed by time_created. Deleted after a month.\n\n## Job\nManages a job lifecycle. Registers a Receiver and a Pusher to a Queue. Handles errors for Receiver, Pusher, and Queue.\n\n## JobBoard\nlist of available Jobs, keyed by domain. Allows for run-time configuration changes to job processing.\n\n## CLI Interface\nList, Create, Update and Delete running Jobs via the JobBoard", + "maintainers": [ + { + "name": "hainish", + "email": "bill.budington@gmail.com" + } + ], + "time": { + "modified": "2011-12-14T02:51:37.893Z", + "created": "2011-12-02T23:39:52.449Z", + "0.0.5": "2011-12-02T23:39:53.860Z", + "0.1.0": "2011-12-07T04:08:34.139Z", + "0.1.1": "2011-12-07T05:30:50.773Z", + "0.1.2": "2011-12-08T00:02:12.973Z", + "0.1.3": "2011-12-08T21:57:58.996Z", + "0.1.4": "2011-12-14T02:51:37.893Z" + }, + "author": { + "name": "tedsuo,Hainish,jackaperkins" + }, + "repository": { + "type": "git", + "url": "git://github.com/tedsuo/Job-Board.git" + }, + "versions": { + "0.0.5": "http://registry.npmjs.org/job_board/0.0.5", + "0.1.0": "http://registry.npmjs.org/job_board/0.1.0", + "0.1.1": "http://registry.npmjs.org/job_board/0.1.1", + "0.1.2": "http://registry.npmjs.org/job_board/0.1.2", + "0.1.3": "http://registry.npmjs.org/job_board/0.1.3", + "0.1.4": "http://registry.npmjs.org/job_board/0.1.4" + }, + "dist": { + "0.0.5": { + "shasum": "68c57fdfcef9454217c2be564bb66b06c041c326", + "tarball": "http://registry.npmjs.org/job_board/-/job_board-0.0.5.tgz" + }, + "0.1.0": { + "shasum": "38135e15d0099cb36cc44545b2022e1192aaf0d7", + "tarball": "http://registry.npmjs.org/job_board/-/job_board-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "cbbb0db34cbe094d7e2e08d0f9f8acf6e478dbf9", + "tarball": "http://registry.npmjs.org/job_board/-/job_board-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "d8d136d1c82bec2ecfd4e7468474cba1fba9c3e5", + "tarball": "http://registry.npmjs.org/job_board/-/job_board-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "bcc19e7d0ba5b4dd584d39702e2389d5fc376a3e", + "tarball": "http://registry.npmjs.org/job_board/-/job_board-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "5949504d78c9312db647f3918b2251b8ed9b6095", + "tarball": "http://registry.npmjs.org/job_board/-/job_board-0.1.4.tgz" + } + }, + "url": "http://registry.npmjs.org/job_board/" + }, + "jobmanager": { + "name": "jobmanager", + "description": "Simple async job manager. Allows you to execute serial or parallel jobs.", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "demian85", + "email": "demian85@gmail.com" + } + ], + "time": { + "modified": "2011-09-21T18:57:21.829Z", + "created": "2011-09-03T18:20:41.785Z", + "0.0.1": "2011-09-03T18:20:45.099Z", + "0.0.2": "2011-09-05T20:54:43.063Z", + "0.0.3": "2011-09-06T20:10:23.231Z", + "0.0.4": "2011-09-14T21:48:38.757Z", + "0.0.5": "2011-09-21T18:57:21.829Z" + }, + "author": { + "name": "Demián Andrés Rodriguez", + "email": "demian85@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/demian85/node-jobmanager.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jobmanager/0.0.1", + "0.0.2": "http://registry.npmjs.org/jobmanager/0.0.2", + "0.0.3": "http://registry.npmjs.org/jobmanager/0.0.3", + "0.0.4": "http://registry.npmjs.org/jobmanager/0.0.4", + "0.0.5": "http://registry.npmjs.org/jobmanager/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "740927755331d5b0ba36ddd656c6a243dfef5251", + "tarball": "http://registry.npmjs.org/jobmanager/-/jobmanager-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "1f29607c3688c0b7c09f42c84d785895b12dbe80", + "tarball": "http://registry.npmjs.org/jobmanager/-/jobmanager-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "bb4e6f8e37719b0f240ab819bc6ee5c0a66ad889", + "tarball": "http://registry.npmjs.org/jobmanager/-/jobmanager-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "7c9221573af65dc6b1e2e6aa7fe78fb4d5850248", + "tarball": "http://registry.npmjs.org/jobmanager/-/jobmanager-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "4082ea15e438f672e61b83bb7b32dbc17e7011fd", + "tarball": "http://registry.npmjs.org/jobmanager/-/jobmanager-0.0.5.tgz" + } + }, + "keywords": [ + "job manager", + "queue", + "async", + "parallel" + ], + "url": "http://registry.npmjs.org/jobmanager/" + }, + "jobs": { + "name": "jobs", + "description": "simple redis backed jobs runner", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "weepy", + "email": "jonahfox@gmail.com" + } + ], + "author": { + "name": "weepy" + }, + "repository": { + "type": "git", + "url": "git://github.com/weepy/node-jobs.git" + }, + "time": { + "modified": "2011-09-15T21:14:33.135Z", + "created": "2011-09-15T21:14:33.135Z", + "0.0.1": "2011-09-15T21:14:33.135Z", + "0.0.2": "2011-09-15T21:14:33.135Z", + "0.0.3": "2011-09-15T21:14:33.135Z", + "0.0.4": "2011-09-15T21:14:33.135Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jobs/0.0.1", + "0.0.2": "http://registry.npmjs.org/jobs/0.0.2", + "0.0.3": "http://registry.npmjs.org/jobs/0.0.3", + "0.0.4": "http://registry.npmjs.org/jobs/0.0.4" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/jobs/-/jobs-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/jobs/-/jobs-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/jobs/-/jobs-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "2e90ffbb653688a29f8deb996e00d0150523a015", + "tarball": "http://registry.npmjs.org/jobs/-/jobs-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/jobs/" + }, + "jobvite": { + "name": "jobvite", + "description": "Access job listings and reports from Jobvite.", + "dist-tags": { + "latest": "0.2.3" + }, + "maintainers": [ + { + "name": "dylang", + "email": "dylang@gmail.com" + } + ], + "author": { + "name": "Dylan Greene", + "email": "dylang@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dylang/jobvite.git" + }, + "time": { + "modified": "2011-10-28T18:50:55.226Z", + "created": "2011-01-04T17:07:31.155Z", + "0.0.1": "2011-01-04T17:07:31.155Z", + "0.0.2": "2011-01-04T17:07:31.155Z", + "0.0.3": "2011-01-04T17:07:31.155Z", + "0.0.4": "2011-01-04T17:07:31.155Z", + "0.0.5": "2011-01-04T17:07:31.155Z", + "0.0.6": "2011-01-04T17:07:31.155Z", + "0.0.7": "2011-01-04T17:07:31.155Z", + "0.0.9": "2011-01-04T17:07:31.155Z", + "0.1.0": "2011-01-04T17:07:31.155Z", + "0.1.1": "2011-01-04T17:07:31.155Z", + "0.1.2": "2011-01-21T20:30:37.091Z", + "0.1.3": "2011-01-21T21:19:17.812Z", + "0.1.4": "2011-01-21T21:22:18.179Z", + "0.1.5": "2011-01-24T17:30:56.691Z", + "0.1.8": "2011-01-24T17:48:22.392Z", + "0.1.9": "2011-01-25T19:19:08.503Z", + "0.1.10": "2011-01-28T17:17:34.673Z", + "0.4.1": "2011-02-11T04:52:51.693Z", + "0.4.2": "2011-02-11T04:56:53.002Z", + "0.1.15": "2011-03-02T21:27:50.784Z", + "0.1.17": "2011-03-05T23:04:43.828Z", + "0.1.18": "2011-03-29T15:35:38.448Z", + "0.1.20": "2011-03-29T16:29:43.992Z", + "0.2.0": "2011-04-17T21:22:29.573Z", + "0.2.1": "2011-07-19T17:43:47.916Z", + "0.2.2": "2011-07-19T17:44:48.135Z", + "0.2.3": "2011-10-28T18:50:55.226Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jobvite/0.0.1", + "0.0.2": "http://registry.npmjs.org/jobvite/0.0.2", + "0.0.3": "http://registry.npmjs.org/jobvite/0.0.3", + "0.0.4": "http://registry.npmjs.org/jobvite/0.0.4", + "0.0.5": "http://registry.npmjs.org/jobvite/0.0.5", + "0.0.6": "http://registry.npmjs.org/jobvite/0.0.6", + "0.0.7": "http://registry.npmjs.org/jobvite/0.0.7", + "0.0.9": "http://registry.npmjs.org/jobvite/0.0.9", + "0.1.0": "http://registry.npmjs.org/jobvite/0.1.0", + "0.1.1": "http://registry.npmjs.org/jobvite/0.1.1", + "0.1.2": "http://registry.npmjs.org/jobvite/0.1.2", + "0.1.3": "http://registry.npmjs.org/jobvite/0.1.3", + "0.1.4": "http://registry.npmjs.org/jobvite/0.1.4", + "0.1.5": "http://registry.npmjs.org/jobvite/0.1.5", + "0.1.8": "http://registry.npmjs.org/jobvite/0.1.8", + "0.1.9": "http://registry.npmjs.org/jobvite/0.1.9", + "0.1.10": "http://registry.npmjs.org/jobvite/0.1.10", + "0.4.1": "http://registry.npmjs.org/jobvite/0.4.1", + "0.4.2": "http://registry.npmjs.org/jobvite/0.4.2", + "0.1.15": "http://registry.npmjs.org/jobvite/0.1.15", + "0.1.17": "http://registry.npmjs.org/jobvite/0.1.17", + "0.1.18": "http://registry.npmjs.org/jobvite/0.1.18", + "0.1.20": "http://registry.npmjs.org/jobvite/0.1.20", + "0.2.0": "http://registry.npmjs.org/jobvite/0.2.0", + "0.2.1": "http://registry.npmjs.org/jobvite/0.2.1", + "0.2.2": "http://registry.npmjs.org/jobvite/0.2.2", + "0.2.3": "http://registry.npmjs.org/jobvite/0.2.3" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/jobvite/-/jobvite-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/jobvite/-/jobvite-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/jobvite/-/jobvite-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://packages:5984/jobvite/-/jobvite-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://packages:5984/jobvite/-/jobvite-0.0.5.tgz" + }, + "0.0.6": { + "tarball": "http://packages:5984/jobvite/-/jobvite-0.0.6.tgz" + }, + "0.0.7": { + "tarball": "http://packages:5984/jobvite/-/jobvite-0.0.7.tgz" + }, + "0.0.9": { + "tarball": "http://registry.npmjs.org/jobvite/-/jobvite-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "07541541ba8584c8497c06d1985ff5a2ed44dd7e", + "tarball": "http://registry.npmjs.org/jobvite/-/jobvite-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "404dbb9aba5ae38c9a830f1560699244a0fdb0e9", + "tarball": "http://registry.npmjs.org/jobvite/-/jobvite-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "d2779442a5de74cb03d678e98b1a9ed2948c279c", + "tarball": "http://registry.npmjs.org/jobvite/-/jobvite-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "59fd162ef61f2e0aeaa454d7c867cbcea586143a", + "tarball": "http://registry.npmjs.org/jobvite/-/jobvite-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "20fe73bf752422e3b00b2681996d99b5c954886a", + "tarball": "http://registry.npmjs.org/jobvite/-/jobvite-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "362405a30884f2db34162c7fdb3b628cd9ca011d", + "tarball": "http://registry.npmjs.org/jobvite/-/jobvite-0.1.5.tgz" + }, + "0.1.8": { + "shasum": "205588be02a0f8b1383b4fb7ceb5a0432cdd98dc", + "tarball": "http://registry.npmjs.org/jobvite/-/jobvite-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "61f41003b5f5bca8a83206781a066ca5a58d4be2", + "tarball": "http://registry.npmjs.org/jobvite/-/jobvite-0.1.9.tgz" + }, + "0.1.10": { + "shasum": "8252d3adcadb9b735142856f56958556e5fe0293", + "tarball": "http://registry.npmjs.org/jobvite/-/jobvite-0.1.10.tgz" + }, + "0.4.1": { + "shasum": "007c2c4509489037dddb1d7be17173229f12d50f", + "tarball": "http://registry.npmjs.org/jobvite/-/jobvite-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "b483fe189f4496c8086e36c0d4f9343bb6f375fc", + "tarball": "http://registry.npmjs.org/jobvite/-/jobvite-0.4.2.tgz" + }, + "0.1.15": { + "shasum": "1e1b8b0e4be322471c1d9f65e0856bae8668f4b9", + "tarball": "http://registry.npmjs.org/jobvite/-/jobvite-0.1.15.tgz" + }, + "0.1.17": { + "shasum": "20e6fc2ff16491cce159bff9baa3e1107a872bd7", + "tarball": "http://registry.npmjs.org/jobvite/-/jobvite-0.1.17.tgz" + }, + "0.1.18": { + "shasum": "a7fa01b7cb880aab9b65324aa561d492858ac765", + "tarball": "http://registry.npmjs.org/jobvite/-/jobvite-0.1.18.tgz" + }, + "0.1.20": { + "shasum": "d356c2d6c8e280e11a66e746fd90d07984e5a9e3", + "tarball": "http://registry.npmjs.org/jobvite/-/jobvite-0.1.20.tgz" + }, + "0.2.0": { + "shasum": "d542b06c9adc8db40e406497420bc7849c3bed43", + "tarball": "http://registry.npmjs.org/jobvite/-/jobvite-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "f42cd004514f63e6268daa27d01840e425a7f38c", + "tarball": "http://registry.npmjs.org/jobvite/-/jobvite-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "e34a7751fda81652bfc603753ba1eefb702f24ac", + "tarball": "http://registry.npmjs.org/jobvite/-/jobvite-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "e862da5ca16aabfa20233d8b9269df719c17a8aa", + "tarball": "http://registry.npmjs.org/jobvite/-/jobvite-0.2.3.tgz" + } + }, + "url": "http://registry.npmjs.org/jobvite/" + }, + "jodoc": { + "name": "jodoc", + "description": "Generate documentation from embedded Markdown comments in javascript source", + "dist-tags": { + "latest": "1.0.2" + }, + "maintainers": [ + { + "name": "azakus", + "email": "dfreedm2@gmail.com" + } + ], + "time": { + "modified": "2011-08-14T02:26:52.035Z", + "created": "2011-08-14T02:26:46.132Z", + "1.0.2": "2011-08-14T02:26:52.035Z" + }, + "author": { + "name": "Daniel Freedman", + "email": "dfreedm2@gmail.com", + "url": "http://github.com/azakus" + }, + "repository": { + "type": "git", + "url": "git://github.com/azakus/jodoc-js.git" + }, + "versions": { + "1.0.2": "http://registry.npmjs.org/jodoc/1.0.2" + }, + "dist": { + "1.0.2": { + "shasum": "7657915036755156d410badae57eceb8fd43d042", + "tarball": "http://registry.npmjs.org/jodoc/-/jodoc-1.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/jodoc/" + }, + "Jody": { + "name": "Jody", + "description": "Descriptive BDD Framework for nodejs", + "dist-tags": { + "latest": "0.2.4" + }, + "maintainers": [ + { + "name": "garrensmith", + "email": "garren.smith@gmail.com" + } + ], + "author": { + "name": "Garren Smith", + "email": "garren.smith@gmail.com", + "url": "www.garrensmith.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/garrensmith/Jody.git" + }, + "time": { + "modified": "2011-11-13T13:07:42.808Z", + "created": "2010-12-27T07:54:21.247Z", + "0.0.3": "2010-12-27T07:54:21.247Z", + "0.0.4": "2010-12-27T07:54:21.247Z", + "0.0.5": "2010-12-27T07:54:21.247Z", + "0.0.6": "2011-01-21T12:36:05.984Z", + "0.0.7": "2011-01-21T12:47:54.421Z", + "0.2.0beta1": "2011-03-11T10:45:58.551Z", + "0.2.0beta2": "2011-03-15T15:14:42.049Z", + "0.2.0beta3": "2011-03-19T13:04:32.892Z", + "0.2.0beta4": "2011-03-31T14:36:58.178Z", + "0.2.0beta5": "2011-04-26T12:51:01.352Z", + "0.2.0": "2011-06-13T14:23:10.745Z", + "0.2.1": "2011-07-08T10:08:46.634Z", + "0.2.2": "2011-09-10T15:15:20.909Z", + "0.2.3": "2011-10-16T15:27:19.937Z", + "0.2.4": "2011-11-13T13:07:42.808Z" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/Jody/0.0.3", + "0.0.4": "http://registry.npmjs.org/Jody/0.0.4", + "0.0.5": "http://registry.npmjs.org/Jody/0.0.5", + "0.0.6": "http://registry.npmjs.org/Jody/0.0.6", + "0.0.7": "http://registry.npmjs.org/Jody/0.0.7", + "0.2.0beta1": "http://registry.npmjs.org/Jody/0.2.0beta1", + "0.2.0beta2": "http://registry.npmjs.org/Jody/0.2.0beta2", + "0.2.0beta3": "http://registry.npmjs.org/Jody/0.2.0beta3", + "0.2.0beta4": "http://registry.npmjs.org/Jody/0.2.0beta4", + "0.2.0beta5": "http://registry.npmjs.org/Jody/0.2.0beta5", + "0.2.0": "http://registry.npmjs.org/Jody/0.2.0", + "0.2.1": "http://registry.npmjs.org/Jody/0.2.1", + "0.2.2": "http://registry.npmjs.org/Jody/0.2.2", + "0.2.3": "http://registry.npmjs.org/Jody/0.2.3", + "0.2.4": "http://registry.npmjs.org/Jody/0.2.4" + }, + "dist": { + "0.0.3": { + "tarball": "http://registry.npmjs.org/Jody/-/Jody-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "7962cac316f4d9a1ea5505e092b6334e79d5c073", + "tarball": "http://registry.npmjs.org/Jody/-/Jody-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "b038cf2434425b03ab1fe769ba871769415ee723", + "tarball": "http://registry.npmjs.org/Jody/-/Jody-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "28c9bb0dac0de3ada046b8e65532febec823132e", + "tarball": "http://registry.npmjs.org/Jody/-/Jody-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "57a9461eaf849cd74413850bc881f13eecee283f", + "tarball": "http://registry.npmjs.org/Jody/-/Jody-0.0.7.tgz" + }, + "0.2.0beta1": { + "shasum": "8290d8765d8d118618bd68a6846df52657b50bbe", + "tarball": "http://registry.npmjs.org/Jody/-/Jody-0.2.0beta1.tgz" + }, + "0.2.0beta2": { + "shasum": "8b04d42296d223599730e695ceb910a8eae48467", + "tarball": "http://registry.npmjs.org/Jody/-/Jody-0.2.0beta2.tgz" + }, + "0.2.0beta3": { + "shasum": "68a9bae05736edd8417e1683f6fdfac4f90e1ddc", + "tarball": "http://registry.npmjs.org/Jody/-/Jody-0.2.0beta3.tgz" + }, + "0.2.0beta4": { + "shasum": "5d51fc74334606d726b22973ac2420026e28011f", + "tarball": "http://registry.npmjs.org/Jody/-/Jody-0.2.0beta4.tgz" + }, + "0.2.0beta5": { + "shasum": "754037446b7f92d0789de0fd147aab0d88979888", + "tarball": "http://registry.npmjs.org/Jody/-/Jody-0.2.0beta5.tgz" + }, + "0.2.0": { + "shasum": "376db0deee6463e091fe964217d76bc3393f4bd6", + "tarball": "http://registry.npmjs.org/Jody/-/Jody-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "bf71e2101e08474946020b503c480590c71417b5", + "tarball": "http://registry.npmjs.org/Jody/-/Jody-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "1754e13b36debdafacb09f0b2748ada9f2c8610c", + "tarball": "http://registry.npmjs.org/Jody/-/Jody-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "3495907cf411bbbc497960f83dff802cbf79212c", + "tarball": "http://registry.npmjs.org/Jody/-/Jody-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "705c383a211af3717c258638887e6c9e32e87f12", + "tarball": "http://registry.npmjs.org/Jody/-/Jody-0.2.4.tgz" + } + }, + "keywords": [ + "bdd", + "testing", + "unit" + ], + "url": "http://registry.npmjs.org/Jody/" + }, + "johana": { + "name": "johana", + "description": "Web and API's development framework", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "vovazolotoy", + "email": "vovazolotoy@gmail.com" + } + ], + "time": { + "modified": "2011-10-17T22:37:20.681Z", + "created": "2011-10-17T22:37:19.001Z", + "0.0.1": "2011-10-17T22:37:20.681Z" + }, + "author": { + "name": "Johana Team", + "email": "johanaframework@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/johanaframework/core.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/johana/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "4d0fbb2b9ed78d90cad73a1adea1be2defd0d47e", + "tarball": "http://registry.npmjs.org/johana/-/johana-0.0.1.tgz" + } + }, + "keywords": [ + "framework", + "api", + "web" + ], + "url": "http://registry.npmjs.org/johana/" + }, + "johana-cache": { + "name": "johana-cache", + "description": "Cache module for Johana framework", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "vovazolotoy", + "email": "vovazolotoy@gmail.com" + } + ], + "time": { + "modified": "2011-10-16T13:13:26.848Z", + "created": "2011-10-16T13:13:25.130Z", + "0.0.1": "2011-10-16T13:13:26.848Z" + }, + "author": { + "name": "Johana Team", + "email": "johanaframework@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/johanaframework/cache.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/johana-cache/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "30c0ca857c77894470d3dde9e18f6a876f1e0e19", + "tarball": "http://registry.npmjs.org/johana-cache/-/johana-cache-0.0.1.tgz" + } + }, + "keywords": [ + "framework", + "api", + "web", + "cache", + "memcached" + ], + "url": "http://registry.npmjs.org/johana-cache/" + }, + "johnny-mnemonic": { + "name": "johnny-mnemonic", + "description": "Yet another `ajax back button` implementation, on Joose3, with the test suite and w/o required page markup at this time", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "samuraijack", + "email": "nickolay8@gmail.com" + } + ], + "author": { + "name": "Nickolay Platonov", + "email": "nplatonov@cpan.org" + }, + "repository": { + "web": "http://github.com/SamuraiJack/Johnny-Mnemonic/tree", + "url": "git://github.com/SamuraiJack/Johnny-Mnemonic.git", + "type": "git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/johnny-mnemonic/0.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/johnny-mnemonic/-/johnny-mnemonic-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/johnny-mnemonic/" + }, + "join": { + "name": "join", + "description": "The join / synchronize module of FuturesJS (Ender.JS and Node.JS)", + "dist-tags": { + "latest": "2.3.0" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-07-15T17:15:04.511Z", + "created": "2011-07-13T20:21:40.830Z", + "2.1.1": "2011-07-13T20:21:41.202Z", + "2.3.0": "2011-07-15T17:15:04.511Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com", + "url": "http://coolaj86.info" + }, + "repository": { + "type": "git", + "url": "git://github.com/coolaj86/futures.git" + }, + "versions": { + "2.1.1": "http://registry.npmjs.org/join/2.1.1", + "2.3.0": "http://registry.npmjs.org/join/2.3.0" + }, + "dist": { + "2.1.1": { + "shasum": "95925e2097baba201f4930feca908894440130bb", + "tarball": "http://registry.npmjs.org/join/-/join-2.1.1.tgz" + }, + "2.3.0": { + "shasum": "a8d26bb72abe506a5da0b42aa244a60d6a704699", + "tarball": "http://registry.npmjs.org/join/-/join-2.3.0.tgz" + } + }, + "keywords": [ + "flow-control", + "async", + "asynchronous", + "futures", + "promises", + "deferreds", + "join", + "synchronize", + "util", + "browser" + ], + "url": "http://registry.npmjs.org/join/" + }, + "jolokia-client": { + "name": "jolokia-client", + "description": "execute queries agains the jolokia JMX bridge", + "dist-tags": { + "latest": "0.0.8" + }, + "maintainers": [ + { + "name": "jfk", + "email": "jfk@jolira.com" + } + ], + "time": { + "modified": "2011-11-15T05:41:19.200Z", + "created": "2011-06-28T19:13:57.582Z", + "0.0.1": "2011-06-28T19:13:58.201Z", + "0.0.2": "2011-07-06T00:34:43.799Z", + "0.0.3": "2011-07-06T06:21:28.333Z", + "0.0.4": "2011-08-08T01:26:31.061Z", + "0.0.5": "2011-08-08T23:51:40.126Z", + "0.0.6": "2011-08-24T06:47:22.607Z", + "0.0.7": "2011-08-24T22:43:19.908Z", + "0.0.8": "2011-11-15T05:41:19.200Z" + }, + "author": { + "name": "Joachim Kainz", + "email": "info@jolira.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/jolira/jolokia-client.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jolokia-client/0.0.1", + "0.0.2": "http://registry.npmjs.org/jolokia-client/0.0.2", + "0.0.3": "http://registry.npmjs.org/jolokia-client/0.0.3", + "0.0.4": "http://registry.npmjs.org/jolokia-client/0.0.4", + "0.0.5": "http://registry.npmjs.org/jolokia-client/0.0.5", + "0.0.6": "http://registry.npmjs.org/jolokia-client/0.0.6", + "0.0.7": "http://registry.npmjs.org/jolokia-client/0.0.7", + "0.0.8": "http://registry.npmjs.org/jolokia-client/0.0.8" + }, + "dist": { + "0.0.1": { + "shasum": "1466f027b9bf3f96d8b881d06aee6cef3953cc42", + "tarball": "http://registry.npmjs.org/jolokia-client/-/jolokia-client-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "56f4e5008b6e68159860cfb0d18ad05df29508db", + "tarball": "http://registry.npmjs.org/jolokia-client/-/jolokia-client-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "7bdbf492bbbb67d091933f19cba59fcb3b2b2c74", + "tarball": "http://registry.npmjs.org/jolokia-client/-/jolokia-client-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "3b13c0f2d066832ea63e6c9f6a4792cc46eaf200", + "tarball": "http://registry.npmjs.org/jolokia-client/-/jolokia-client-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "8cffd7855b4db5ff75236719caea7a9af77de3b1", + "tarball": "http://registry.npmjs.org/jolokia-client/-/jolokia-client-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "ce1697d56f3db8702df31108712efaa90405925c", + "tarball": "http://registry.npmjs.org/jolokia-client/-/jolokia-client-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "a07e5f9240968e96dbd60bb46c55f41b5eba90a3", + "tarball": "http://registry.npmjs.org/jolokia-client/-/jolokia-client-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "0ead5fb1cb5c2789149de55402ee29b1a0f6f694", + "tarball": "http://registry.npmjs.org/jolokia-client/-/jolokia-client-0.0.8.tgz" + } + }, + "keywords": [ + "node.js", + "jmx", + "jolokia" + ], + "url": "http://registry.npmjs.org/jolokia-client/" + }, + "joo": { + "name": "joo", + "description": "Simple class declaration function to write OO code in JavaScript", + "dist-tags": { + "latest": "1.0.5" + }, + "maintainers": [ + { + "name": "hiroshi.kuwabara", + "email": "hiroshi.kuwabara.81@gmail.com" + } + ], + "time": { + "modified": "2011-07-27T06:30:04.010Z", + "created": "2011-06-02T07:32:53.363Z", + "1.0.0": "2011-06-02T07:32:54.490Z", + "1.0.1": "2011-06-02T09:04:11.838Z", + "1.0.2": "2011-06-03T10:16:01.913Z", + "1.0.3": "2011-07-09T17:11:14.253Z", + "1.0.5": "2011-07-27T06:30:04.010Z" + }, + "author": { + "name": "Hiroshi Kuwabara", + "email": "hiroshi.kuwabara.81@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/kuwabarahiroshi/joo.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/joo/1.0.0", + "1.0.1": "http://registry.npmjs.org/joo/1.0.1", + "1.0.2": "http://registry.npmjs.org/joo/1.0.2", + "1.0.3": "http://registry.npmjs.org/joo/1.0.3", + "1.0.5": "http://registry.npmjs.org/joo/1.0.5" + }, + "dist": { + "1.0.0": { + "shasum": "2ecc4f43fdb96ff4824a5c79111028523633300c", + "tarball": "http://registry.npmjs.org/joo/-/joo-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "79aeb6a633a394f5865da5f928fa7a0ac574834e", + "tarball": "http://registry.npmjs.org/joo/-/joo-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "1652eebf64a0ab3ca2ea407d8148d46e0c391682", + "tarball": "http://registry.npmjs.org/joo/-/joo-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "fe2084d7972e39ad850d3875f1fe202fa7f0a6e5", + "tarball": "http://registry.npmjs.org/joo/-/joo-1.0.3.tgz" + }, + "1.0.5": { + "shasum": "af001660f1a5c6fd369abc200c6cc6e47d8bd98d", + "tarball": "http://registry.npmjs.org/joo/-/joo-1.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/joo/" + }, + "jools": { + "name": "jools", + "description": "Business Rules Engine for JavaScript", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "tdegrunt", + "email": "tom@degrunt.nl" + } + ], + "time": { + "modified": "2011-05-10T19:55:48.272Z", + "created": "2011-05-10T19:55:47.569Z", + "0.0.1": "2011-05-10T19:55:48.272Z" + }, + "author": { + "name": "Tom de Grunt", + "email": "tom@degrunt.nl" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jools/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "75bf8699c2abfa50f310fcc62d7d1e9032e9a6ca", + "tarball": "http://registry.npmjs.org/jools/-/jools-0.0.1.tgz" + } + }, + "keywords": [ + "bre", + "rules", + "engine" + ], + "url": "http://registry.npmjs.org/jools/" + }, + "joose": { + "name": "joose", + "description": "Post modern self-hosting meta object system for JavaScript with support for classes, inheritance, roles, traits, method modifiers and more.", + "dist-tags": { + "latest": "3.50.0" + }, + "maintainers": [ + { + "name": "samuraijack", + "email": "nickolay8@gmail.com" + } + ], + "author": { + "name": "Nickolay Platonov", + "email": "nplatonov@cpan.org" + }, + "repository": { + "web": "http://github.com/Joose/Joose/tree", + "url": "git://github.com/Joose/Joose.git", + "type": "git" + }, + "time": { + "modified": "2011-09-14T09:52:08.281Z", + "created": "2011-01-12T15:33:28.479Z", + "3.011.0": "2011-01-12T15:33:28.479Z", + "3.12.0": "2011-01-12T15:33:28.479Z", + "3.13.0": "2011-01-12T15:33:28.479Z", + "3.14.0": "2011-01-12T15:33:28.479Z", + "3.15.0": "2011-01-12T15:33:28.479Z", + "3.16.0": "2011-01-12T15:33:28.479Z", + "3.17.0": "2011-01-12T15:33:28.479Z", + "3.18.0": "2011-03-12T09:58:57.038Z", + "3.50.0": "2011-09-14T09:52:08.281Z" + }, + "versions": { + "3.011.0": "http://registry.npmjs.org/joose/3.011.0", + "3.12.0": "http://registry.npmjs.org/joose/3.12.0", + "3.13.0": "http://registry.npmjs.org/joose/3.13.0", + "3.14.0": "http://registry.npmjs.org/joose/3.14.0", + "3.15.0": "http://registry.npmjs.org/joose/3.15.0", + "3.16.0": "http://registry.npmjs.org/joose/3.16.0", + "3.17.0": "http://registry.npmjs.org/joose/3.17.0", + "3.18.0": "http://registry.npmjs.org/joose/3.18.0", + "3.50.0": "http://registry.npmjs.org/joose/3.50.0" + }, + "dist": { + "3.011.0": { + "tarball": "http://packages:5984/joose/-/joose-3.011.0.tgz" + }, + "3.12.0": { + "tarball": "http://packages:5984/joose/-/joose-3.12.0.tgz" + }, + "3.13.0": { + "tarball": "http://packages:5984/joose/-/joose-3.13.0.tgz" + }, + "3.14.0": { + "tarball": "http://packages:5984/joose/-/joose-3.14.0.tgz" + }, + "3.15.0": { + "tarball": "http://registry.npmjs.org/joose/-/joose-3.15.0.tgz" + }, + "3.16.0": { + "shasum": "00bdd50a783d161c95f88bd86744a6b07ee4f0a3", + "tarball": "http://registry.npmjs.org/joose/-/joose-3.16.0.tgz" + }, + "3.17.0": { + "shasum": "f5e24e65097ca230fcc19fc023b8d8921fcd1f22", + "tarball": "http://registry.npmjs.org/joose/-/joose-3.17.0.tgz" + }, + "3.18.0": { + "shasum": "2938340f70f65e39b418331fdc7efa332e301217", + "tarball": "http://registry.npmjs.org/joose/-/joose-3.18.0.tgz" + }, + "3.50.0": { + "shasum": "0926824d43f640a0f47370bfca748a929344b483", + "tarball": "http://registry.npmjs.org/joose/-/joose-3.50.0.tgz" + } + }, + "url": "http://registry.npmjs.org/joose/" + }, + "joosex-attribute": { + "name": "joosex-attribute", + "description": "Additional features for Joose attributes", + "dist-tags": { + "latest": "0.11.0" + }, + "maintainers": [ + { + "name": "samuraijack", + "email": "nickolay8@gmail.com" + } + ], + "author": { + "name": "Nickolay Platonov", + "email": "nplatonov@cpan.org" + }, + "repository": { + "web": "http://github.com/SamuraiJack/JooseX-Attribute/tree", + "url": "git://github.com/SamuraiJack/JooseX-Attribute.git", + "type": "git" + }, + "time": { + "modified": "2011-01-12T15:52:05.827Z", + "created": "2011-01-12T15:52:05.827Z", + "0.05.0": "2011-01-12T15:52:05.827Z", + "0.6.0": "2011-01-12T15:52:05.827Z", + "0.7.0": "2011-01-12T15:52:05.827Z", + "0.8.0": "2011-01-12T15:52:05.827Z", + "0.9.0": "2011-01-12T15:52:05.827Z", + "0.10.0": "2011-01-12T15:52:05.827Z", + "0.11.0": "2011-01-12T15:52:05.827Z" + }, + "versions": { + "0.05.0": "http://registry.npmjs.org/joosex-attribute/0.05.0", + "0.6.0": "http://registry.npmjs.org/joosex-attribute/0.6.0", + "0.7.0": "http://registry.npmjs.org/joosex-attribute/0.7.0", + "0.8.0": "http://registry.npmjs.org/joosex-attribute/0.8.0", + "0.9.0": "http://registry.npmjs.org/joosex-attribute/0.9.0", + "0.10.0": "http://registry.npmjs.org/joosex-attribute/0.10.0", + "0.11.0": "http://registry.npmjs.org/joosex-attribute/0.11.0" + }, + "dist": { + "0.05.0": { + "tarball": "http://packages:5984/joosex-attribute/-/joosex-attribute-0.05.0.tgz" + }, + "0.6.0": { + "tarball": "http://packages:5984/joosex-attribute/-/joosex-attribute-0.6.0.tgz" + }, + "0.7.0": { + "tarball": "http://packages:5984/joosex-attribute/-/joosex-attribute-0.7.0.tgz" + }, + "0.8.0": { + "tarball": "http://packages:5984/joosex-attribute/-/joosex-attribute-0.8.0.tgz" + }, + "0.9.0": { + "tarball": "http://packages:5984/joosex-attribute/-/joosex-attribute-0.9.0.tgz" + }, + "0.10.0": { + "shasum": "06149aa4bdc28f11340d9a3562ad9de8343aa431", + "tarball": "http://registry.npmjs.org/joosex-attribute/-/joosex-attribute-0.10.0.tgz" + }, + "0.11.0": { + "shasum": "730fc723f0a9ab6911b01be89343727f9a558e13", + "tarball": "http://registry.npmjs.org/joosex-attribute/-/joosex-attribute-0.11.0.tgz" + } + }, + "url": "http://registry.npmjs.org/joosex-attribute/" + }, + "joosex-bridge-ext": { + "name": "joosex-bridge-ext", + "description": "Bridge from Joose to Ext3 class system", + "dist-tags": { + "latest": "0.3.3" + }, + "maintainers": [ + { + "name": "samuraijack", + "email": "nickolay8@gmail.com" + } + ], + "author": { + "name": "Nickolay Platonov", + "email": "nplatonov@cpan.org" + }, + "repository": { + "web": "http://github.com/SamuraiJack/joosex-bridge-ext/tree", + "url": "git://github.com/SamuraiJack/joosex-bridge-ext.git", + "type": "git" + }, + "time": { + "modified": "2011-07-16T08:55:40.520Z", + "created": "2011-01-12T15:42:18.075Z", + "0.2.0": "2011-01-12T15:42:18.075Z", + "0.2.1": "2011-01-12T15:42:18.075Z", + "0.2.2": "2011-01-12T15:42:18.075Z", + "0.2.3": "2011-01-12T15:42:18.075Z", + "0.3.0": "2011-01-12T15:42:18.075Z", + "0.3.1": "2011-01-12T15:42:18.075Z", + "0.3.2": "2011-07-15T15:34:10.995Z", + "0.3.3": "2011-07-16T08:55:40.520Z" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/joosex-bridge-ext/0.2.0", + "0.2.1": "http://registry.npmjs.org/joosex-bridge-ext/0.2.1", + "0.2.2": "http://registry.npmjs.org/joosex-bridge-ext/0.2.2", + "0.2.3": "http://registry.npmjs.org/joosex-bridge-ext/0.2.3", + "0.3.0": "http://registry.npmjs.org/joosex-bridge-ext/0.3.0", + "0.3.1": "http://registry.npmjs.org/joosex-bridge-ext/0.3.1", + "0.3.2": "http://registry.npmjs.org/joosex-bridge-ext/0.3.2", + "0.3.3": "http://registry.npmjs.org/joosex-bridge-ext/0.3.3" + }, + "dist": { + "0.2.0": { + "tarball": "http://packages:5984/joosex-bridge-ext/-/joosex-bridge-ext-0.2.0.tgz" + }, + "0.2.1": { + "tarball": "http://packages:5984/joosex-bridge-ext/-/joosex-bridge-ext-0.2.1.tgz" + }, + "0.2.2": { + "tarball": "http://packages:5984/joosex-bridge-ext/-/joosex-bridge-ext-0.2.2.tgz" + }, + "0.2.3": { + "tarball": "http://registry.npmjs.org/joosex-bridge-ext/-/joosex-bridge-ext-0.2.3.tgz" + }, + "0.3.0": { + "shasum": "e93a61a5b2c97f9f94b12fbd7fb03daa01733820", + "tarball": "http://registry.npmjs.org/joosex-bridge-ext/-/joosex-bridge-ext-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "bc5fd1f35844b3571632cfa55cd502fbd49b272e", + "tarball": "http://registry.npmjs.org/joosex-bridge-ext/-/joosex-bridge-ext-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "c72a828042b9d9743ead7c54420f61c78e72a578", + "tarball": "http://registry.npmjs.org/joosex-bridge-ext/-/joosex-bridge-ext-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "a062a359b2c33241215f5c1be19831b601a7d7b9", + "tarball": "http://registry.npmjs.org/joosex-bridge-ext/-/joosex-bridge-ext-0.3.3.tgz" + } + }, + "url": "http://registry.npmjs.org/joosex-bridge-ext/" + }, + "joosex-class-simpleconstructor": { + "name": "joosex-class-simpleconstructor", + "description": "A trait for class, making the 'new' keyword optional during instantiation", + "dist-tags": { + "latest": "0.4.0" + }, + "maintainers": [ + { + "name": "samuraijack", + "email": "nickolay8@gmail.com" + } + ], + "author": { + "name": "Nickolay Platonov", + "email": "nplatonov@cpan.org" + }, + "repository": { + "web": "http://github.com/SamuraiJack/JooseX-Class-SimpleConstructor/tree", + "url": "git://github.com/SamuraiJack/JooseX-Class-SimpleConstructor.git", + "type": "git" + }, + "versions": { + "0.4.0": "http://registry.npmjs.org/joosex-class-simpleconstructor/0.4.0" + }, + "dist": { + "0.4.0": { + "tarball": "http://packages:5984/joosex-class-simpleconstructor/-/joosex-class-simpleconstructor-0.4.0.tgz" + } + }, + "url": "http://registry.npmjs.org/joosex-class-simpleconstructor/" + }, + "joosex-class-singleton": { + "name": "joosex-class-singleton", + "description": "A trait, turning your class into singleton", + "dist-tags": { + "latest": "0.4.0" + }, + "maintainers": [ + { + "name": "samuraijack", + "email": "nickolay8@gmail.com" + } + ], + "author": { + "name": "Nickolay Platonov", + "email": "nplatonov@cpan.org" + }, + "repository": { + "web": "http://github.com/SamuraiJack/JooseX-Class-Singleton/tree", + "url": "git://github.com/SamuraiJack/JooseX-Class-Singleton.git", + "type": "git" + }, + "versions": { + "0.4.0": "http://registry.npmjs.org/joosex-class-singleton/0.4.0" + }, + "dist": { + "0.4.0": { + "tarball": "http://packages:5984/joosex-class-singleton/-/joosex-class-singleton-0.4.0.tgz" + } + }, + "url": "http://registry.npmjs.org/joosex-class-singleton/" + }, + "joosex-cps": { + "name": "joosex-cps", + "description": "Continuation Passing Style for Joose classes", + "dist-tags": { + "latest": "0.17.0" + }, + "maintainers": [ + { + "name": "samuraijack", + "email": "nickolay8@gmail.com" + } + ], + "author": { + "name": "Nickolay Platonov", + "email": "nplatonov@cpan.org" + }, + "repository": { + "web": "http://github.com/SamuraiJack/JooseX-CPS/tree", + "url": "git://github.com/SamuraiJack/JooseX-CPS.git", + "type": "git" + }, + "time": { + "modified": "2011-04-03T15:44:25.450Z", + "created": "2011-01-12T15:54:03.433Z", + "0.10.0": "2011-01-12T15:54:03.433Z", + "0.11.0": "2011-01-12T15:54:03.433Z", + "0.12.0": "2011-01-12T15:54:03.433Z", + "0.13.0": "2011-01-12T15:54:03.433Z", + "0.14.0": "2011-01-12T15:54:03.433Z", + "0.15.0": "2011-01-12T15:54:03.433Z", + "0.16.0": "2011-03-12T10:12:39.266Z", + "0.17.0": "2011-04-03T15:44:25.450Z" + }, + "versions": { + "0.10.0": "http://registry.npmjs.org/joosex-cps/0.10.0", + "0.11.0": "http://registry.npmjs.org/joosex-cps/0.11.0", + "0.12.0": "http://registry.npmjs.org/joosex-cps/0.12.0", + "0.13.0": "http://registry.npmjs.org/joosex-cps/0.13.0", + "0.14.0": "http://registry.npmjs.org/joosex-cps/0.14.0", + "0.15.0": "http://registry.npmjs.org/joosex-cps/0.15.0", + "0.16.0": "http://registry.npmjs.org/joosex-cps/0.16.0", + "0.17.0": "http://registry.npmjs.org/joosex-cps/0.17.0" + }, + "dist": { + "0.10.0": { + "tarball": "http://packages:5984/joosex-cps/-/joosex-cps-0.10.0.tgz" + }, + "0.11.0": { + "tarball": "http://packages:5984/joosex-cps/-/joosex-cps-0.11.0.tgz" + }, + "0.12.0": { + "tarball": "http://packages:5984/joosex-cps/-/joosex-cps-0.12.0.tgz" + }, + "0.13.0": { + "tarball": "http://packages:5984/joosex-cps/-/joosex-cps-0.13.0.tgz" + }, + "0.14.0": { + "shasum": "ece6311ee607f19ef49bfedfe0a5cae962bb74e5", + "tarball": "http://registry.npmjs.org/joosex-cps/-/joosex-cps-0.14.0.tgz" + }, + "0.15.0": { + "shasum": "7d535d11d4f50d9c789ba3c9e4b8199b716b1872", + "tarball": "http://registry.npmjs.org/joosex-cps/-/joosex-cps-0.15.0.tgz" + }, + "0.16.0": { + "shasum": "6d40d3d6d2e7c8b1271a889d98d923980b12f39c", + "tarball": "http://registry.npmjs.org/joosex-cps/-/joosex-cps-0.16.0.tgz" + }, + "0.17.0": { + "shasum": "0fb71251275b7819803d5814d863c6a6b43427da", + "tarball": "http://registry.npmjs.org/joosex-cps/-/joosex-cps-0.17.0.tgz" + } + }, + "url": "http://registry.npmjs.org/joosex-cps/" + }, + "joosex-meta-lazy": { + "name": "joosex-meta-lazy", + "description": "A trait to make your metaclasses lazy", + "dist-tags": { + "latest": "0.3.2" + }, + "maintainers": [ + { + "name": "samuraijack", + "email": "nickolay8@gmail.com" + } + ], + "author": { + "name": "Nickolay Platonov", + "email": "nplatonov@cpan.org" + }, + "repository": { + "web": "http://github.com/SamuraiJack/JooseX-Meta-Lazy/tree", + "url": "git://github.com/SamuraiJack/JooseX-Meta-Lazy.git", + "type": "git" + }, + "time": { + "modified": "2011-01-12T15:49:23.006Z", + "created": "2011-01-12T15:49:23.006Z", + "0.3.0": "2011-01-12T15:49:23.006Z", + "0.3.1": "2011-01-12T15:49:23.006Z", + "0.3.2": "2011-01-12T15:49:23.006Z" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/joosex-meta-lazy/0.3.0", + "0.3.1": "http://registry.npmjs.org/joosex-meta-lazy/0.3.1", + "0.3.2": "http://registry.npmjs.org/joosex-meta-lazy/0.3.2" + }, + "dist": { + "0.3.0": { + "tarball": "http://registry.npmjs.org/joosex-meta-lazy/-/joosex-meta-lazy-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "e51f03f881c1c5a9c8503af5255e1a25ad72c0ba", + "tarball": "http://registry.npmjs.org/joosex-meta-lazy/-/joosex-meta-lazy-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "fe2022da9c0f146c111cb2230e079a011a6cb6c3", + "tarball": "http://registry.npmjs.org/joosex-meta-lazy/-/joosex-meta-lazy-0.3.2.tgz" + } + }, + "url": "http://registry.npmjs.org/joosex-meta-lazy/" + }, + "joosex-namespace-depended": { + "name": "joosex-namespace-depended", + "description": "Cross-platform (browser/NodeJS), non-blocking, dependencies handling implementation, integrated with Joose3", + "dist-tags": { + "latest": "0.17.0" + }, + "maintainers": [ + { + "name": "samuraijack", + "email": "nickolay8@gmail.com" + } + ], + "author": { + "name": "Nickolay Platonov", + "email": "nplatonov@cpan.org" + }, + "repository": { + "web": "http://github.com/SamuraiJack/JooseX-Namespace-Depended/tree", + "url": "git://github.com/SamuraiJack/JooseX-Namespace-Depended.git", + "type": "git" + }, + "time": { + "modified": "2011-06-27T06:59:22.008Z", + "created": "2011-01-12T18:40:56.367Z", + "0.09.0": "2011-01-12T18:40:56.367Z", + "0.10.0": "2011-01-12T18:40:56.367Z", + "0.11.0": "2011-01-12T18:40:56.367Z", + "0.12.0": "2011-01-12T18:40:56.367Z", + "0.13.0": "2011-01-12T18:40:56.367Z", + "0.14.0": "2011-01-12T18:40:56.367Z", + "0.15.0": "2011-01-12T18:40:56.367Z", + "0.16.0": "2011-01-23T09:40:31.435Z", + "0.17.0": "2011-06-27T06:59:22.008Z" + }, + "versions": { + "0.09.0": "http://registry.npmjs.org/joosex-namespace-depended/0.09.0", + "0.10.0": "http://registry.npmjs.org/joosex-namespace-depended/0.10.0", + "0.11.0": "http://registry.npmjs.org/joosex-namespace-depended/0.11.0", + "0.12.0": "http://registry.npmjs.org/joosex-namespace-depended/0.12.0", + "0.13.0": "http://registry.npmjs.org/joosex-namespace-depended/0.13.0", + "0.14.0": "http://registry.npmjs.org/joosex-namespace-depended/0.14.0", + "0.15.0": "http://registry.npmjs.org/joosex-namespace-depended/0.15.0", + "0.16.0": "http://registry.npmjs.org/joosex-namespace-depended/0.16.0", + "0.17.0": "http://registry.npmjs.org/joosex-namespace-depended/0.17.0" + }, + "dist": { + "0.09.0": { + "tarball": "http://packages:5984/joosex-namespace-depended/-/joosex-namespace-depended-0.09.0.tgz" + }, + "0.10.0": { + "tarball": "http://packages:5984/joosex-namespace-depended/-/joosex-namespace-depended-0.10.0.tgz" + }, + "0.11.0": { + "tarball": "http://packages:5984/joosex-namespace-depended/-/joosex-namespace-depended-0.11.0.tgz" + }, + "0.12.0": { + "tarball": "http://registry.npmjs.org/joosex-namespace-depended/-/joosex-namespace-depended-0.12.0.tgz" + }, + "0.13.0": { + "shasum": "374cd566fb7ffd5b896a8248e1cff4fea63be9ce", + "tarball": "http://registry.npmjs.org/joosex-namespace-depended/-/joosex-namespace-depended-0.13.0.tgz" + }, + "0.14.0": { + "shasum": "3b1121c24346634c62ccc394459954a1a68bc278", + "tarball": "http://registry.npmjs.org/joosex-namespace-depended/-/joosex-namespace-depended-0.14.0.tgz" + }, + "0.15.0": { + "shasum": "62d58c350e2514fc72641f5e68145b9104014c0c", + "tarball": "http://registry.npmjs.org/joosex-namespace-depended/-/joosex-namespace-depended-0.15.0.tgz" + }, + "0.16.0": { + "shasum": "b79f7c0ea496ad70edd866ab9fdf8074e8135010", + "tarball": "http://registry.npmjs.org/joosex-namespace-depended/-/joosex-namespace-depended-0.16.0.tgz" + }, + "0.17.0": { + "shasum": "667ec52b02ca06d531580d75a8beb4615e77f67f", + "tarball": "http://registry.npmjs.org/joosex-namespace-depended/-/joosex-namespace-depended-0.17.0.tgz" + } + }, + "url": "http://registry.npmjs.org/joosex-namespace-depended/" + }, + "joosex-observable": { + "name": "joosex-observable", + "description": "cross-plaform implementation of the Observable pattern", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "samuraijack", + "email": "nickolay8@gmail.com" + } + ], + "author": { + "name": "Nickolay Platonov", + "email": "nplatonov@cpan.org" + }, + "repository": { + "web": "http://github.com/SamuraiJack/JooseX-Observable/tree", + "url": "git://github.com/SamuraiJack/JooseX-Observable.git", + "type": "git" + }, + "time": { + "modified": "2011-01-13T17:06:18.861Z", + "created": "2011-01-13T17:06:18.861Z", + "0.1.0": "2011-01-13T17:06:18.861Z", + "0.2.0": "2011-01-13T17:06:18.861Z", + "0.3.0": "2011-01-13T17:06:18.861Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/joosex-observable/0.1.0", + "0.2.0": "http://registry.npmjs.org/joosex-observable/0.2.0", + "0.3.0": "http://registry.npmjs.org/joosex-observable/0.3.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/joosex-observable/-/joosex-observable-0.1.0.tgz" + }, + "0.2.0": { + "tarball": "http://registry.npmjs.org/joosex-observable/-/joosex-observable-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "08c0467eb25927449999497ffa4807fb440a81d1", + "tarball": "http://registry.npmjs.org/joosex-observable/-/joosex-observable-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/joosex-observable/" + }, + "joosex-role-parameterized": { + "name": "joosex-role-parameterized", + "description": "Parameterized roles implementation for Joose", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "samuraijack", + "email": "nickolay8@gmail.com" + } + ], + "author": { + "name": "Nickolay Platonov", + "email": "nplatonov@cpan.org" + }, + "repository": { + "web": "http://github.com/SamuraiJack/JooseX-Role-Parameterized/tree", + "url": "git://github.com/SamuraiJack/JooseX-Role-Parameterized.git", + "type": "git" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/joosex-role-parameterized/0.3.0" + }, + "dist": { + "0.3.0": { + "tarball": "http://packages:5984/joosex-role-parameterized/-/joosex-role-parameterized-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/joosex-role-parameterized/" + }, + "joosex-simplerequest": { + "name": "joosex-simplerequest", + "description": "Simple XHR request abstraction", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "samuraijack", + "email": "nickolay8@gmail.com" + } + ], + "author": { + "name": "Nickolay Platonov", + "email": "nplatonov@cpan.org" + }, + "repository": { + "web": "http://github.com/SamuraiJack/JooseX-SimpleRequest/tree", + "url": "git://github.com/SamuraiJack/JooseX-SimpleRequest.git", + "type": "git" + }, + "time": { + "modified": "2011-01-12T15:50:25.811Z", + "created": "2011-01-12T15:50:25.811Z", + "0.2.0": "2011-01-12T15:50:25.811Z", + "0.2.1": "2011-01-12T15:50:25.811Z", + "0.2.2": "2011-01-12T15:50:25.811Z" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/joosex-simplerequest/0.2.0", + "0.2.1": "http://registry.npmjs.org/joosex-simplerequest/0.2.1", + "0.2.2": "http://registry.npmjs.org/joosex-simplerequest/0.2.2" + }, + "dist": { + "0.2.0": { + "tarball": "http://packages:5984/joosex-simplerequest/-/joosex-simplerequest-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "c02bbc26ccbb89a7a1436530af8f54e498b5a3e3", + "tarball": "http://registry.npmjs.org/joosex-simplerequest/-/joosex-simplerequest-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "0c9e1cb0d00a2e760abc1fded3be4977f81847c0", + "tarball": "http://registry.npmjs.org/joosex-simplerequest/-/joosex-simplerequest-0.2.2.tgz" + } + }, + "url": "http://registry.npmjs.org/joosex-simplerequest/" + }, + "josp": { + "name": "josp", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "cushman", + "email": "acushman@gmail.com" + } + ], + "time": { + "modified": "2011-07-31T01:41:39.614Z", + "created": "2011-07-31T01:41:36.104Z", + "0.0.1": "2011-07-31T01:41:39.614Z" + }, + "author": { + "name": "Adrian Cushman", + "email": "acushman@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/josp/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "a03b9f7b189a6efc0e6c4fdca248b97d39bbc664", + "tarball": "http://registry.npmjs.org/josp/-/josp-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/josp/" + }, + "jot": { + "name": "jot", + "description": "Markup DSL", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "dbrans", + "email": "dbrans@gmail.com" + } + ], + "time": { + "modified": "2011-06-23T20:43:55.015Z", + "created": "2011-06-23T20:43:54.666Z", + "0.0.1": "2011-06-23T20:43:55.015Z" + }, + "author": { + "name": "Derek Brans" + }, + "repository": { + "type": "git", + "url": "git://github.com/dbrans/jot.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jot/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "d8a0f48dd2a8919a36b158aab88a0fd3034f7230", + "tarball": "http://registry.npmjs.org/jot/-/jot-0.0.1.tgz" + } + }, + "keywords": [ + "coffeescript", + "javascript", + "DSL", + "markup", + "jot" + ], + "url": "http://registry.npmjs.org/jot/" + }, + "Journaling-Hash": { + "name": "Journaling-Hash", + "description": "records the history of where keys are set for easy debugging", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "aaronblohowiak", + "email": "aaron.blohowiak@gmail.com" + } + ], + "time": { + "modified": "2011-04-23T08:02:36.322Z", + "created": "2011-04-23T08:02:35.988Z", + "1.0.0": "2011-04-23T08:02:36.322Z" + }, + "author": { + "name": "Aaron Blohowiak", + "email": "aaron.blohowiak@gmail.com", + "url": "http://aaronblohowiak.com" + }, + "repository": "git://github.com/aaronblohowiak/Journaling-Hash.git", + "versions": { + "1.0.0": "http://registry.npmjs.org/Journaling-Hash/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "ff984c35f35ce9e6061c7267c9e8c08448798cdb", + "tarball": "http://registry.npmjs.org/Journaling-Hash/-/Journaling-Hash-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/Journaling-Hash/" + }, + "journey": { + "name": "journey", + "description": "liberal JSON-only HTTP request routing for node", + "dist-tags": { + "latest": "0.4.0-pre-2", + "stable": "0.2.9" + }, + "maintainers": [ + { + "name": "cloudhead", + "email": "self@cloudhead.net" + }, + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + } + ], + "author": { + "name": "Alexis Sellier", + "email": "self@cloudhead.net" + }, + "time": { + "modified": "2011-08-30T22:41:52.436Z", + "created": "2011-02-01T20:26:47.633Z", + "0.1.2": "2011-02-01T20:26:47.633Z", + "0.1.3": "2011-02-01T20:26:47.633Z", + "0.2.0": "2011-02-01T20:26:47.633Z", + "0.2.1": "2011-02-01T20:26:47.633Z", + "0.2.2": "2011-02-01T20:26:47.633Z", + "0.2.3": "2011-02-01T20:26:47.633Z", + "0.2.4": "2011-02-01T20:26:47.633Z", + "0.2.5": "2011-02-01T20:26:47.633Z", + "0.2.6": "2011-02-01T20:26:47.633Z", + "0.2.7": "2011-02-01T20:26:47.633Z", + "0.2.8": "2011-02-01T20:26:47.633Z", + "0.2.9": "2011-02-01T20:26:47.633Z", + "0.3.0": "2011-02-01T20:26:47.633Z", + "0.3.1": "2011-02-01T22:26:53.456Z", + "0.4.0-pre": "2011-02-08T03:32:21.897Z", + "0.4.0-pre-2": "2011-02-28T10:49:30.680Z" + }, + "versions": { + "0.1.2": "http://registry.npmjs.org/journey/0.1.2", + "0.1.3": "http://registry.npmjs.org/journey/0.1.3", + "0.2.0": "http://registry.npmjs.org/journey/0.2.0", + "0.2.1": "http://registry.npmjs.org/journey/0.2.1", + "0.2.2": "http://registry.npmjs.org/journey/0.2.2", + "0.2.3": "http://registry.npmjs.org/journey/0.2.3", + "0.2.4": "http://registry.npmjs.org/journey/0.2.4", + "0.2.5": "http://registry.npmjs.org/journey/0.2.5", + "0.2.6": "http://registry.npmjs.org/journey/0.2.6", + "0.2.7": "http://registry.npmjs.org/journey/0.2.7", + "0.2.8": "http://registry.npmjs.org/journey/0.2.8", + "0.2.9": "http://registry.npmjs.org/journey/0.2.9", + "0.3.1": "http://registry.npmjs.org/journey/0.3.1", + "0.4.0-pre": "http://registry.npmjs.org/journey/0.4.0-pre", + "0.4.0-pre-2": "http://registry.npmjs.org/journey/0.4.0-pre-2" + }, + "dist": { + "0.1.2": { + "tarball": "http://registry.npmjs.org/journey/-/journey-0.1.2.tgz" + }, + "0.1.3": { + "tarball": "http://registry.npmjs.org/journey/-/journey-0.1.3.tgz" + }, + "0.2.0": { + "tarball": "http://registry.npmjs.org/journey/-/journey-0.2.0.tgz" + }, + "0.2.1": { + "tarball": "http://registry.npmjs.org/journey/-/journey-0.2.1.tgz" + }, + "0.2.2": { + "tarball": "http://registry.npmjs.org/journey/-/journey-0.2.2.tgz" + }, + "0.2.3": { + "tarball": "http://registry.npmjs.org/journey/-/journey-0.2.3.tgz" + }, + "0.2.4": { + "tarball": "http://registry.npmjs.org/journey/-/journey-0.2.4.tgz" + }, + "0.2.5": { + "tarball": "http://registry.npmjs.org/journey/-/journey-0.2.5.tgz" + }, + "0.2.6": { + "tarball": "http://registry.npmjs.org/journey/-/journey-0.2.6.tgz" + }, + "0.2.7": { + "tarball": "http://registry.npmjs.org/journey/-/journey-0.2.7.tgz" + }, + "0.2.8": { + "tarball": "http://registry.npmjs.org/journey/-/journey-0.2.8.tgz" + }, + "0.2.9": { + "tarball": "http://registry.npmjs.org/journey/-/journey-0.2.9.tgz" + }, + "0.3.1": { + "shasum": "a86d0e7fe3e1b0c7c3b82620196db1122603d4fe", + "tarball": "http://registry.npmjs.org/journey/-/journey-0.3.1.tgz" + }, + "0.4.0-pre": { + "shasum": "5f74be3296a65e8f99e7568be2902dd470094fc1", + "tarball": "http://registry.npmjs.org/journey/-/journey-0.4.0-pre.tgz" + }, + "0.4.0-pre-2": { + "shasum": "3c19e6e04b047dcb8450b18bf50a447aac0e3824", + "tarball": "http://registry.npmjs.org/journey/-/journey-0.4.0-pre-2.tgz" + } + }, + "keywords": [ + "http", + "router", + "json" + ], + "url": "http://registry.npmjs.org/journey/" + }, + "jParser": { + "name": "jParser", + "description": "Parsing binary files made easy.", + "dist-tags": { + "latest": "1.0.1" + }, + "readme": null, + "maintainers": [ + { + "name": "vjeux", + "email": "vjeuxx@gmail.com" + } + ], + "time": { + "modified": "2011-12-02T17:28:25.713Z", + "created": "2011-12-02T17:15:49.352Z", + "1.0.0": "2011-12-02T17:15:51.513Z", + "1.0.1": "2011-12-02T17:28:25.713Z" + }, + "author": { + "name": "Vjeux", + "email": "vjeuxx@gmail.com", + "url": "http://blog.vjeux.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/vjeux/jParser.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/jParser/1.0.0", + "1.0.1": "http://registry.npmjs.org/jParser/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "1572b92e7c1f6e6afe2a474e69dbddeae720df12", + "tarball": "http://registry.npmjs.org/jParser/-/jParser-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "77aaf254872153c755f051b4f62ecf222dfa72aa", + "tarball": "http://registry.npmjs.org/jParser/-/jParser-1.0.1.tgz" + } + }, + "keywords": [ + "parser", + "buffer", + "binary", + "file", + "read" + ], + "url": "http://registry.npmjs.org/jParser/" + }, + "jpeg": { + "name": "jpeg", + "description": "A C++ module for node-js that converts RGB and RGBA buffers to a JPEG images (in memory).", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "pkrumins", + "email": "peteris.krumins@gmail.com" + } + ], + "versions": { + "1.0.0": "http://registry.npmjs.org/jpeg/1.0.0", + "1.0.1": "http://registry.npmjs.org/jpeg/1.0.1" + }, + "dist": { + "1.0.0": { + "tarball": "http://packages:5984/jpeg/-/jpeg-1.0.0.tgz" + }, + "1.0.1": { + "tarball": "http://packages:5984/jpeg/-/jpeg-1.0.1.tgz" + } + }, + "keywords": [ + "jpg", + "rgba", + "rgb", + "image", + "picture" + ], + "url": "http://registry.npmjs.org/jpeg/" + }, + "jpmobile-ip": { + "name": "jpmobile-ip", + "description": "Get japanese carrier from ip (Based on jpmobile-ipaddresses rails plugin by jpmobile)", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": null, + "maintainers": [ + { + "name": "powertengu", + "email": "faeldt_kristian@cyberagent.co.jp" + } + ], + "time": { + "modified": "2011-12-07T10:16:53.908Z", + "created": "2011-12-07T10:16:51.107Z", + "0.0.1": "2011-12-07T10:16:53.908Z" + }, + "author": { + "name": "Kristian Faeldt", + "email": "faeldt_kristian@cyberagent.co.jp" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jpmobile-ip/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "c2952d2a52608858f476a479f6d1eae7bf8c4d98", + "tarball": "http://registry.npmjs.org/jpmobile-ip/-/jpmobile-ip-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/jpmobile-ip/" + }, + "jps": { + "name": "jps", + "description": "A scraper for the jpopsuki torrent tracker", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "neat", + "email": "roly426@gmail.com" + } + ], + "time": { + "modified": "2011-11-21T11:00:29.606Z", + "created": "2011-10-04T10:39:19.854Z", + "0.0.1": "2011-10-04T10:39:21.716Z", + "0.0.2": "2011-10-04T12:19:12.172Z", + "0.0.3": "2011-10-04T15:12:14.283Z", + "0.0.4": "2011-10-18T00:41:07.294Z", + "0.0.5": "2011-11-17T19:55:53.464Z", + "0.0.6": "2011-11-21T11:00:29.606Z" + }, + "author": { + "name": "Roly Fentanes", + "url": "https://github.com/fent" + }, + "repository": { + "type": "git", + "url": "git://github.com/fent/jps.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jps/0.0.1", + "0.0.2": "http://registry.npmjs.org/jps/0.0.2", + "0.0.3": "http://registry.npmjs.org/jps/0.0.3", + "0.0.4": "http://registry.npmjs.org/jps/0.0.4", + "0.0.5": "http://registry.npmjs.org/jps/0.0.5", + "0.0.6": "http://registry.npmjs.org/jps/0.0.6" + }, + "dist": { + "0.0.1": { + "shasum": "af9fa686c8a3564911f8c6942bcd30d88a76f550", + "tarball": "http://registry.npmjs.org/jps/-/jps-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "77baef2fc8312053940a9c3976d4f0d03385bb36", + "tarball": "http://registry.npmjs.org/jps/-/jps-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "467d3effcaddb42ede8b59d5c1ef4f0f2dfebf16", + "tarball": "http://registry.npmjs.org/jps/-/jps-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "23b1e257994008879d98b19328ed6c8856a80d9d", + "tarball": "http://registry.npmjs.org/jps/-/jps-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "27904aadf0e05c98a172434d4a98c345fcfbcb42", + "tarball": "http://registry.npmjs.org/jps/-/jps-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "1a5104b16018e86ced7574775fdbd5b6e89d0550", + "tarball": "http://registry.npmjs.org/jps/-/jps-0.0.6.tgz" + } + }, + "url": "http://registry.npmjs.org/jps/" + }, + "jq": { + "name": "jq", + "description": "server-side jQuery wrapper for node", + "dist-tags": { + "latest": "1.6.4" + }, + "readme": "# jQ\n\nUse jQuery on the server side of your node.js apps.\n\n $ npm install jq\n\nThe versions on `npm` will coincide with jQuery releases.\n\nThen use:\n\n```js\nvar $ = require('jq').jQuery;\n\nvar doc = '
Universe!
',\n hello = $('#hello', doc).html();\n\nconsole.log('Hello ' + hello); // Hello Universe!\n```\n\nSee tests for other use cases.\n\n## Using other versions of jQuery\n\nInspired by other jQuery node implementions, but has a version switch tool.\n\nClone or add as submodule to your project. Then from within `jq` directory get dev dependancies:\n\n $ npm install\n\nAnd then use `build` command to switch to a version of your choice:\n\n $ ./bin/jq build 1.6.4\n \nWill accept any version that is listed as tag at [github.com/jquery/jquery](http://github.com/jquery/jquery).\n\n## Tests\n\nTests require [expresso](https://github.com/visionmedia/expresso).\n\n $ expresso\n\n## Another one?\n\nThis tool is based on the awesome [coolaj86/node-jquery](https://github.com/coolaj86/node-jquery) but with a \ndifferent build system. Needed a little more control over versioning with some upcoming projects.", + "maintainers": [ + { + "name": "jakeluer", + "email": "jake.luer@incatern.com" + } + ], + "time": { + "modified": "2011-11-21T19:58:36.649Z", + "created": "2011-11-21T19:58:36.030Z", + "1.6.4": "2011-11-21T19:58:36.649Z" + }, + "author": { + "name": "Jake Luer", + "email": "jake@alogicalparadox.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/logicalparadox/jq.git" + }, + "versions": { + "1.6.4": "http://registry.npmjs.org/jq/1.6.4" + }, + "dist": { + "1.6.4": { + "shasum": "6e7ffbbe615459703ea1492957e83debe13700d1", + "tarball": "http://registry.npmjs.org/jq/-/jq-1.6.4.tgz" + } + }, + "url": "http://registry.npmjs.org/jq/" + }, + "jqbuild": { + "name": "jqbuild", + "description": "A command line build tool for jQuery plugins.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "cowboy", + "email": "cowboy@rj3.net" + } + ], + "time": { + "modified": "2011-06-14T01:09:18.396Z", + "created": "2011-06-14T01:09:18.229Z", + "0.1.0": "2011-06-14T01:09:18.396Z" + }, + "author": { + "name": "\"Cowboy\" Ben Alman", + "email": "plugins@benalman.com", + "url": "http://benalman.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/cowboy/node-jqbuild.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/jqbuild/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "42736bc4fc14c07abb3c7676f0286dc4793a81e4", + "tarball": "http://registry.npmjs.org/jqbuild/-/jqbuild-0.1.0.tgz" + } + }, + "keywords": [ + "cli", + "cowboy", + "jquery", + "plugin" + ], + "url": "http://registry.npmjs.org/jqbuild/" + }, + "jqNode": { + "name": "jqNode", + "description": "An easy to use jQuery-esque library for NodeJS", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "pradeek", + "email": "jpradeek@gmail.com" + } + ], + "time": { + "modified": "2011-07-21T15:00:17.949Z", + "created": "2011-07-21T15:00:16.320Z", + "0.0.1": "2011-07-21T15:00:17.949Z" + }, + "author": { + "name": "Pradeek", + "email": "jpradeek@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/pradeek/jqNode.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jqNode/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "3bb58a3417c16c36ae31141f1a0285dac172fc5b", + "tarball": "http://registry.npmjs.org/jqNode/-/jqNode-0.0.1.tgz" + } + }, + "keywords": [ + "framework", + "jquery", + "web" + ], + "url": "http://registry.npmjs.org/jqNode/" + }, + "jqserve": { + "name": "jqserve", + "description": "Utility that allows you to run arbitrary server-side jquery code against an html file before serving it.", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "dtrejo", + "email": "dtrejo@cs.brown.edu" + } + ], + "time": { + "modified": "2011-05-08T17:52:53.440Z", + "created": "2011-05-08T17:52:52.936Z", + "0.0.5": "2011-05-08T17:52:53.440Z" + }, + "author": { + "name": "David Trejo", + "email": "dtrejo@cs.brown.edu", + "url": "dtrejo.com" + }, + "versions": { + "0.0.5": "http://registry.npmjs.org/jqserve/0.0.5" + }, + "dist": { + "0.0.5": { + "shasum": "fb4a1224821583fb5ea6e21f12be7fba2c44ac48", + "tarball": "http://registry.npmjs.org/jqserve/-/jqserve-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/jqserve/" + }, + "jqtpl": { + "name": "jqtpl", + "description": "A port of jQuery's template engine", + "dist-tags": { + "stable": "1.0.7", + "latest": "1.0.7" + }, + "maintainers": [ + { + "name": "kof", + "email": "oleg008@gmail.com" + } + ], + "author": { + "name": "Oleg Slobodskoi", + "email": "oleg008@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/kof/node-jqtpl.git" + }, + "time": { + "modified": "2011-10-10T11:51:56.969Z", + "created": "2010-12-30T11:25:09.464Z", + "0.0.1": "2010-12-30T11:25:09.465Z", + "0.0.2": "2010-12-30T11:25:09.465Z", + "0.0.3": "2010-12-30T11:25:09.465Z", + "0.0.4": "2010-12-30T11:25:09.465Z", + "0.0.5": "2010-12-30T11:25:09.465Z", + "0.0.6": "2011-02-01T16:13:08.956Z", + "0.0.7": "2011-02-11T11:29:32.401Z", + "0.0.8": "2011-02-15T12:54:25.203Z", + "0.0.9": "2011-02-18T09:16:21.130Z", + "0.0.91": "2011-03-06T17:03:54.374Z", + "0.1.0": "2011-03-11T11:47:06.538Z", + "1.0.0": "2011-04-11T20:01:16.854Z", + "1.0.1": "2011-04-19T10:50:10.164Z", + "1.0.2": "2011-04-25T21:30:16.891Z", + "1.0.3": "2011-04-28T11:28:47.368Z", + "1.0.4": "2011-04-30T12:19:08.904Z", + "1.0.5": "2011-05-30T13:40:23.979Z", + "1.0.6": "2011-08-29T17:02:06.940Z", + "1.0.7": "2011-10-10T11:51:32.756Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jqtpl/0.0.1", + "0.0.2": "http://registry.npmjs.org/jqtpl/0.0.2", + "0.0.3": "http://registry.npmjs.org/jqtpl/0.0.3", + "0.0.4": "http://registry.npmjs.org/jqtpl/0.0.4", + "0.0.5": "http://registry.npmjs.org/jqtpl/0.0.5", + "0.0.6": "http://registry.npmjs.org/jqtpl/0.0.6", + "0.0.7": "http://registry.npmjs.org/jqtpl/0.0.7", + "0.0.8": "http://registry.npmjs.org/jqtpl/0.0.8", + "0.0.9": "http://registry.npmjs.org/jqtpl/0.0.9", + "0.0.91": "http://registry.npmjs.org/jqtpl/0.0.91", + "0.1.0": "http://registry.npmjs.org/jqtpl/0.1.0", + "1.0.0": "http://registry.npmjs.org/jqtpl/1.0.0", + "1.0.1": "http://registry.npmjs.org/jqtpl/1.0.1", + "1.0.2": "http://registry.npmjs.org/jqtpl/1.0.2", + "1.0.3": "http://registry.npmjs.org/jqtpl/1.0.3", + "1.0.4": "http://registry.npmjs.org/jqtpl/1.0.4", + "1.0.5": "http://registry.npmjs.org/jqtpl/1.0.5", + "1.0.6": "http://registry.npmjs.org/jqtpl/1.0.6", + "1.0.7": "http://registry.npmjs.org/jqtpl/1.0.7" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/jqtpl/-/jqtpl-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/jqtpl/-/jqtpl-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/jqtpl/-/jqtpl-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://registry.npmjs.org/jqtpl/-/jqtpl-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "77d5e84ecc2169daafcaefe55cc002f8fdc3d615", + "tarball": "http://registry.npmjs.org/jqtpl/-/jqtpl-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "fdddbf92abd892750ed6b313abae51caac7958c1", + "tarball": "http://registry.npmjs.org/jqtpl/-/jqtpl-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "2814d2024c1da956f1c441c00d727262506ca1bb", + "tarball": "http://registry.npmjs.org/jqtpl/-/jqtpl-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "02379316e985004653a0aa49ea04d73b458387e0", + "tarball": "http://registry.npmjs.org/jqtpl/-/jqtpl-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "08835ba976807ce2a8934895a9759e3d5810b6e1", + "tarball": "http://registry.npmjs.org/jqtpl/-/jqtpl-0.0.9.tgz" + }, + "0.0.91": { + "shasum": "c82030e1aef1039f8414f0e1e0cd8d900d3a1a99", + "tarball": "http://registry.npmjs.org/jqtpl/-/jqtpl-0.0.91.tgz" + }, + "0.1.0": { + "shasum": "803bdb7b1aa2d7753d9ae5da6dd50049aef77b88", + "tarball": "http://registry.npmjs.org/jqtpl/-/jqtpl-0.1.0.tgz" + }, + "1.0.0": { + "shasum": "4e67ceede003b0b90c9875da63bfb29decf5a2f8", + "tarball": "http://registry.npmjs.org/jqtpl/-/jqtpl-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "170004b9e22520c512a423d275cc12a6feadf176", + "tarball": "http://registry.npmjs.org/jqtpl/-/jqtpl-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "dde29876f5238d303d575a5a6d7dcc8de454a70d", + "tarball": "http://registry.npmjs.org/jqtpl/-/jqtpl-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "9b5d92c599929385560fbd9288dea04bcb036c99", + "tarball": "http://registry.npmjs.org/jqtpl/-/jqtpl-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "afc905377bc11ab6bcb028239e4886bd8bd1e13a", + "tarball": "http://registry.npmjs.org/jqtpl/-/jqtpl-1.0.4.tgz" + }, + "1.0.5": { + "shasum": "7a744f2c351ff3fdee71a99c29739f70afc05e0c", + "tarball": "http://registry.npmjs.org/jqtpl/-/jqtpl-1.0.5.tgz" + }, + "1.0.6": { + "shasum": "2eeb27635d6b542e2d50ca8fd8e922d4195d094d", + "tarball": "http://registry.npmjs.org/jqtpl/-/jqtpl-1.0.6.tgz" + }, + "1.0.7": { + "shasum": "2bff65ca8368bd77cb80db62185fe44103c6bb8c", + "tarball": "http://registry.npmjs.org/jqtpl/-/jqtpl-1.0.7.tgz" + } + }, + "keywords": [ + "template", + "engine", + "jquery", + "jquery-tmpl", + "django", + "logicless", + "express" + ], + "url": "http://registry.npmjs.org/jqtpl/" + }, + "jquajax": { + "name": "jquajax", + "description": "Provides the functionality of jQuery.ajax without needing to use jQuery in jsdom.", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "qard", + "email": "admin@stephenbelanger.com" + } + ], + "time": { + "modified": "2011-09-01T17:52:02.425Z", + "created": "2011-09-01T17:52:01.095Z", + "0.0.0": "2011-09-01T17:52:02.425Z" + }, + "author": { + "name": "Stephen Belanger", + "email": "admin@stephenbelanger.com", + "url": "http://stephenbelanger.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Qard/node-jquajax.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/jquajax/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "873435f555fd445201e30bbb589119b73bfb081d", + "tarball": "http://registry.npmjs.org/jquajax/-/jquajax-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/jquajax/" + }, + "jquery": { + "name": "jquery", + "description": "jQuery: The Write Less, Do More, JavaScript Library (packaged for Node.JS)", + "dist-tags": { + "latest": "1.6.3" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-09-13T16:20:49.122Z", + "created": "2011-03-19T07:19:56.392Z", + "1.5.1": "2011-03-19T07:19:56.956Z", + "1.6.2": "2011-07-06T16:13:21.519Z", + "1.6.3": "2011-09-12T19:05:34.373Z" + }, + "author": { + "name": "John Resig", + "email": "jeresig@gmail.com" + }, + "versions": { + "1.5.1": "http://registry.npmjs.org/jquery/1.5.1", + "1.6.2": "http://registry.npmjs.org/jquery/1.6.2", + "1.6.3": "http://registry.npmjs.org/jquery/1.6.3" + }, + "dist": { + "1.5.1": { + "shasum": "2ae2d661e906c1a01e044a71bb5b2743942183e5", + "tarball": "http://registry.npmjs.org/jquery/-/jquery-1.5.1.tgz" + }, + "1.6.2": { + "shasum": "01757a4c5beea29e8ae697527c3131abbe997a28", + "tarball": "http://registry.npmjs.org/jquery/-/jquery-1.6.2.tgz" + }, + "1.6.3": { + "shasum": "e1f732fa7e718a6adb3ec20ae0eb2a64fd95ef01", + "tarball": "http://registry.npmjs.org/jquery/-/jquery-1.6.3.tgz" + } + }, + "keywords": [ + "util", + "dom", + "jquery" + ], + "url": "http://registry.npmjs.org/jquery/" + }, + "jQuery": { + "name": "jQuery", + "description": "jQuery: The Write Less, Do More, JavaScript Library (packaged for Ender.JS)", + "dist-tags": { + "latest": "1.6.3" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-09-13T16:20:47.617Z", + "created": "2011-08-18T05:06:51.428Z", + "1.6.2": "2011-08-18T05:06:54.171Z", + "1.6.3": "2011-09-12T19:04:18.507Z" + }, + "author": { + "name": "John Resig", + "email": "jeresig@gmail.com" + }, + "versions": { + "1.6.2": "http://registry.npmjs.org/jQuery/1.6.2", + "1.6.3": "http://registry.npmjs.org/jQuery/1.6.3" + }, + "dist": { + "1.6.2": { + "shasum": "0358db32ea0d2653bda6ff7dae5b4c1d62ec780c", + "tarball": "http://registry.npmjs.org/jQuery/-/jQuery-1.6.2.tgz" + }, + "1.6.3": { + "shasum": "45d0773b8585e8f8e727c751c4cc2322d15a4516", + "tarball": "http://registry.npmjs.org/jQuery/-/jQuery-1.6.3.tgz" + } + }, + "keywords": [ + "util", + "dom", + "jquery", + "ender" + ], + "url": "http://registry.npmjs.org/jQuery/" + }, + "jquery-autosuggestion": { + "name": "jquery-autosuggestion", + "description": "a simple jquery plugin with which input fields can be extended so that they show a suggestion part", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "dodo", + "email": "dodo@blacksec.org" + } + ], + "time": { + "modified": "2011-12-13T03:44:52.270Z", + "created": "2011-10-25T16:48:09.774Z", + "0.0.1": "2011-10-25T16:48:11.494Z", + "0.0.2": "2011-12-03T23:49:59.830Z", + "0.0.3": "2011-12-13T03:44:52.270Z" + }, + "author": { + "name": "dodo", + "url": "https://github.com/dodo" + }, + "repository": { + "type": "git", + "url": "git://github.com/dodo/jquery-autosuggestion.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jquery-autosuggestion/0.0.1", + "0.0.2": "http://registry.npmjs.org/jquery-autosuggestion/0.0.2", + "0.0.3": "http://registry.npmjs.org/jquery-autosuggestion/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "b9a85c0dae47594caa4a5469a4bb1101fdc09279", + "tarball": "http://registry.npmjs.org/jquery-autosuggestion/-/jquery-autosuggestion-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "bc3f1b58e76a2bf96d90c2b16e92fab260e85083", + "tarball": "http://registry.npmjs.org/jquery-autosuggestion/-/jquery-autosuggestion-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "da6228bfa13aec0dab1d3d9ccdde26caff9c4b1b", + "tarball": "http://registry.npmjs.org/jquery-autosuggestion/-/jquery-autosuggestion-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/jquery-autosuggestion/" + }, + "jquery-browserify": { + "name": "jquery-browserify", + "description": "jQuery: The Write Less, Do More, JavaScript Library, packaged for browserify", + "dist-tags": { + "latest": "1.6.2" + }, + "maintainers": [ + { + "name": "jmars", + "email": "marshall.jaye@gmail.com" + } + ], + "time": { + "modified": "2011-07-25T09:03:51.458Z", + "created": "2011-07-02T03:25:06.308Z", + "1.5.0": "2011-07-02T03:25:07.959Z", + "1.6.0": "2011-07-02T03:25:53.002Z", + "1.6.1": "2011-07-02T03:26:10.144Z", + "1.6.2": "2011-07-25T09:03:51.458Z" + }, + "author": { + "name": "John Resig", + "email": "jeresig@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/jmars/jquery-browserify.git" + }, + "versions": { + "1.5.0": "http://registry.npmjs.org/jquery-browserify/1.5.0", + "1.6.0": "http://registry.npmjs.org/jquery-browserify/1.6.0", + "1.6.1": "http://registry.npmjs.org/jquery-browserify/1.6.1", + "1.6.2": "http://registry.npmjs.org/jquery-browserify/1.6.2" + }, + "dist": { + "1.5.0": { + "shasum": "150c24ab1aedcdc1d06dc10d83c2e1339aa96ce4", + "tarball": "http://registry.npmjs.org/jquery-browserify/-/jquery-browserify-1.5.0.tgz" + }, + "1.6.0": { + "shasum": "8a4a6ae32e5b94a91e51eb7c1f99c9465ef3d220", + "tarball": "http://registry.npmjs.org/jquery-browserify/-/jquery-browserify-1.6.0.tgz" + }, + "1.6.1": { + "shasum": "a9ab164a9a9040f23820e93a114a83ae09896eef", + "tarball": "http://registry.npmjs.org/jquery-browserify/-/jquery-browserify-1.6.1.tgz" + }, + "1.6.2": { + "shasum": "ec5767fd5406d0fc41fa14f1b54194b3e8e7c16d", + "tarball": "http://registry.npmjs.org/jquery-browserify/-/jquery-browserify-1.6.2.tgz" + } + }, + "keywords": [ + "util", + "dom", + "jquery" + ], + "url": "http://registry.npmjs.org/jquery-browserify/" + }, + "jquery-cli": { + "name": "jquery-cli", + "description": "Use jquery to manipulate piped-in html", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "jesusabdullah", + "email": "josh.holbrook@gmail.com" + } + ], + "time": { + "modified": "2011-10-13T02:22:13.629Z", + "created": "2011-10-13T02:22:12.502Z", + "0.0.0": "2011-10-13T02:22:13.629Z" + }, + "author": { + "name": "Joshua Holbrook", + "email": "josh@nodejitsu.com" + }, + "repository": { + "url": "https://github.com/jesusabdullah/jquery-cli.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/jquery-cli/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "de51ecbe035ffcc1b449b210cb3a8d3bba713577", + "tarball": "http://registry.npmjs.org/jquery-cli/-/jquery-cli-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/jquery-cli/" + }, + "jquery-deferred": { + "name": "jquery-deferred", + "description": "jQuery deferred lib for nodeJS.", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "hidden", + "email": "zzdhidden@gmail.com" + } + ], + "time": { + "modified": "2011-12-09T08:53:20.536Z", + "created": "2011-09-12T18:13:27.824Z", + "0.1.0": "2011-09-12T18:13:31.358Z", + "0.1.1": "2011-09-21T13:02:59.909Z", + "0.2.0": "2011-12-09T08:53:20.536Z" + }, + "author": { + "name": "Hidden", + "email": "zzdhidden@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/zzdhidden/node-jquery-deferred.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/jquery-deferred/0.1.0", + "0.1.1": "http://registry.npmjs.org/jquery-deferred/0.1.1", + "0.2.0": "http://registry.npmjs.org/jquery-deferred/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "d474a1702fb050529e889925abac2d6fd3cd9d60", + "tarball": "http://registry.npmjs.org/jquery-deferred/-/jquery-deferred-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "c6f4934937058e278ee639b5bfd6fc4a9d005009", + "tarball": "http://registry.npmjs.org/jquery-deferred/-/jquery-deferred-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "abc5384f249a378419b0de88f47421dbf20d3052", + "tarball": "http://registry.npmjs.org/jquery-deferred/-/jquery-deferred-0.2.0.tgz" + } + }, + "keywords": [ + "deferred" + ], + "url": "http://registry.npmjs.org/jquery-deferred/" + }, + "jquery-drive": { + "name": "jquery-drive", + "description": "A jQuery plugin to construct the DOM using basic jQuery selectors.", + "dist-tags": { + "latest": "1.2.0" + }, + "maintainers": [ + { + "name": "lfortin", + "email": "laurent.fortin@gmail.com" + } + ], + "time": { + "modified": "2011-05-09T03:24:06.985Z", + "created": "2011-05-09T03:24:06.837Z", + "1.2.0": "2011-05-09T03:24:06.985Z" + }, + "author": { + "name": "Laurent Fortin", + "email": "laurent.fortin@gmail.com", + "url": "http://lfortin.github.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/lfortin/drive-jquery-plugin.git" + }, + "versions": { + "1.2.0": "http://registry.npmjs.org/jquery-drive/1.2.0" + }, + "dist": { + "1.2.0": { + "shasum": "53deaaa24433fac80e91047a3fefff7eed387bac", + "tarball": "http://registry.npmjs.org/jquery-drive/-/jquery-drive-1.2.0.tgz" + } + }, + "keywords": [ + "DOM", + "builder", + "jquery" + ], + "url": "http://registry.npmjs.org/jquery-drive/" + }, + "jquery-inputevent": { + "name": "jquery-inputevent", + "description": "Cross browser oninput event for jQuery", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "dodo", + "email": "dodo@blacksec.org" + } + ], + "time": { + "modified": "2011-12-12T23:46:10.075Z", + "created": "2011-12-04T02:14:41.781Z", + "0.1.2": "2011-12-04T02:14:43.379Z", + "0.1.3": "2011-12-10T17:50:23.699Z", + "0.1.4": "2011-12-12T23:46:10.075Z" + }, + "author": { + "name": "Andy Earnshaw", + "url": "http://whattheheadsaid.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/dodo/jquery-inputevent.git" + }, + "versions": { + "0.1.2": "http://registry.npmjs.org/jquery-inputevent/0.1.2", + "0.1.3": "http://registry.npmjs.org/jquery-inputevent/0.1.3", + "0.1.4": "http://registry.npmjs.org/jquery-inputevent/0.1.4" + }, + "dist": { + "0.1.2": { + "shasum": "54301cf75ac110c174cc0bcc31b7f6344a95b146", + "tarball": "http://registry.npmjs.org/jquery-inputevent/-/jquery-inputevent-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "341516b2e3f8dc185357725c235164749e46aca4", + "tarball": "http://registry.npmjs.org/jquery-inputevent/-/jquery-inputevent-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "d6fd08b0c29c65e8532925f23178f5e5df052225", + "tarball": "http://registry.npmjs.org/jquery-inputevent/-/jquery-inputevent-0.1.4.tgz" + } + }, + "url": "http://registry.npmjs.org/jquery-inputevent/" + }, + "jquery-mousewheel": { + "name": "jquery-mousewheel", + "description": "A jQuery plugin that adds cross-browser mouse wheel support.", + "dist-tags": { + "latest": "3.0.4" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-04-07T07:08:47.261Z", + "created": "2011-04-07T07:08:46.767Z", + "3.0.4": "2011-04-07T07:08:47.261Z" + }, + "author": { + "name": "Brandon Aaron", + "email": "brandon.aaron@gmail.com", + "url": "http://brandonaaron.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/brandonaaron/jquery-mousewheel.git" + }, + "versions": { + "3.0.4": "http://registry.npmjs.org/jquery-mousewheel/3.0.4" + }, + "dist": { + "3.0.4": { + "shasum": "9a7d5548b7993c1d7f407f091d6a3da9d05e1a5e", + "tarball": "http://registry.npmjs.org/jquery-mousewheel/-/jquery-mousewheel-3.0.4.tgz" + } + }, + "keywords": [ + "jquery", + "mousewheel", + "plugin", + "browser" + ], + "url": "http://registry.npmjs.org/jquery-mousewheel/" + }, + "jquery-placeholdize": { + "name": "jquery-placeholdize", + "description": "simulates the HTML5 'placeholder' attribute for legacy browsers", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "dkastner", + "email": "dkastner@gmail.com" + } + ], + "time": { + "modified": "2011-09-06T03:50:27.221Z", + "created": "2011-09-06T03:50:26.858Z", + "0.3.0": "2011-09-06T03:50:27.221Z" + }, + "author": { + "name": "Romain Ruetschi", + "email": "romain.ruetschi@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/romac/jQuery.placeHoldize.git" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/jquery-placeholdize/0.3.0" + }, + "dist": { + "0.3.0": { + "shasum": "0ac83234c2defe3a5031b26b677bcc5559b9983a", + "tarball": "http://registry.npmjs.org/jquery-placeholdize/-/jquery-placeholdize-0.3.0.tgz" + } + }, + "keywords": [ + "jquery", + "html5", + "plugin", + "browser" + ], + "url": "http://registry.npmjs.org/jquery-placeholdize/" + }, + "jquery-textsaver": { + "name": "jquery-textsaver", + "description": "Use the power of jQuery and localStorage and allow your users to fill out forms worry-free", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "dodo", + "email": "dodo@blacksec.org" + } + ], + "time": { + "modified": "2011-12-12T23:52:15.691Z", + "created": "2011-11-29T12:10:18.180Z", + "0.0.1": "2011-11-29T12:10:19.834Z", + "0.0.2": "2011-11-29T12:46:47.817Z", + "0.1.2": "2011-11-29T22:05:11.969Z", + "0.1.3": "2011-12-03T23:36:40.647Z", + "0.1.4": "2011-12-12T23:52:15.691Z" + }, + "author": { + "name": "David Hu", + "url": "http://d.aweed.us" + }, + "repository": { + "type": "git", + "url": "git://github.com/dodo/jquery-textsaver.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jquery-textsaver/0.0.1", + "0.0.2": "http://registry.npmjs.org/jquery-textsaver/0.0.2", + "0.1.2": "http://registry.npmjs.org/jquery-textsaver/0.1.2", + "0.1.3": "http://registry.npmjs.org/jquery-textsaver/0.1.3", + "0.1.4": "http://registry.npmjs.org/jquery-textsaver/0.1.4" + }, + "dist": { + "0.0.1": { + "shasum": "d05328b22dc2237e301aab1d9e312e16e4c9ba33", + "tarball": "http://registry.npmjs.org/jquery-textsaver/-/jquery-textsaver-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "7e96f1f8b1e3dfb5087bc1fb007286cb05868c5a", + "tarball": "http://registry.npmjs.org/jquery-textsaver/-/jquery-textsaver-0.0.2.tgz" + }, + "0.1.2": { + "shasum": "d7e22ef954cc853f61b45bbac5438f342d13d10a", + "tarball": "http://registry.npmjs.org/jquery-textsaver/-/jquery-textsaver-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "12380294b9812dc5c5e9f5ada3cc23bb8941a143", + "tarball": "http://registry.npmjs.org/jquery-textsaver/-/jquery-textsaver-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "2bbbe9fe0da29fe104f6fe4fdc8101eb3cb8d10e", + "tarball": "http://registry.npmjs.org/jquery-textsaver/-/jquery-textsaver-0.1.4.tgz" + } + }, + "url": "http://registry.npmjs.org/jquery-textsaver/" + }, + "jquery-tmpl-jst": { + "name": "jquery-tmpl-jst", + "description": "Pre-compiled jQuery Templates", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "wookiehangover", + "email": "sam@quickleft.com" + } + ], + "time": { + "modified": "2011-11-06T06:22:49.041Z", + "created": "2011-08-01T04:41:03.288Z", + "0.0.1": "2011-08-01T04:41:03.668Z", + "0.0.2": "2011-08-06T05:31:59.804Z", + "0.0.3": "2011-09-28T20:16:30.022Z", + "0.0.4": "2011-09-29T18:48:54.927Z", + "0.0.5": "2011-11-06T06:17:05.016Z", + "0.0.6": "2011-11-06T06:22:49.041Z" + }, + "author": { + "name": "wookiehangover", + "email": "sam@quickleft.com" + }, + "repository": { + "type": "git", + "url": "github.com:wookiehangover/jquery-tmpl-jst.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jquery-tmpl-jst/0.0.1", + "0.0.2": "http://registry.npmjs.org/jquery-tmpl-jst/0.0.2", + "0.0.3": "http://registry.npmjs.org/jquery-tmpl-jst/0.0.3", + "0.0.4": "http://registry.npmjs.org/jquery-tmpl-jst/0.0.4", + "0.0.5": "http://registry.npmjs.org/jquery-tmpl-jst/0.0.5", + "0.0.6": "http://registry.npmjs.org/jquery-tmpl-jst/0.0.6" + }, + "dist": { + "0.0.1": { + "shasum": "3e8ce1f6fa6bea8708bbc0a646855ac2a0e28057", + "tarball": "http://registry.npmjs.org/jquery-tmpl-jst/-/jquery-tmpl-jst-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f04f0a72bb40d8d06ebe2a61f887d0841cc5cf9d", + "tarball": "http://registry.npmjs.org/jquery-tmpl-jst/-/jquery-tmpl-jst-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "0a4b6a93bcaf765881707fd10740bd0f7843a60b", + "tarball": "http://registry.npmjs.org/jquery-tmpl-jst/-/jquery-tmpl-jst-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "83a7ed86e2f2ed749de26d3c930191b0d3317be5", + "tarball": "http://registry.npmjs.org/jquery-tmpl-jst/-/jquery-tmpl-jst-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "91588b4399441e0ab5fe12a3a5aa5571c1b7adf8", + "tarball": "http://registry.npmjs.org/jquery-tmpl-jst/-/jquery-tmpl-jst-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "22c3a404ed2d85578afadcdbb35ea298eb953760", + "tarball": "http://registry.npmjs.org/jquery-tmpl-jst/-/jquery-tmpl-jst-0.0.6.tgz" + } + }, + "url": "http://registry.npmjs.org/jquery-tmpl-jst/" + }, + "jquery.effects.blind": { + "name": "jquery.effects.blind", + "description": "A jQuery UI widget.", + "dist-tags": { + "latest": "1.8.13" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-06-14T15:58:34.181Z", + "created": "2011-06-14T15:58:33.677Z", + "1.8.13": "2011-06-14T15:58:34.181Z" + }, + "versions": { + "1.8.13": "http://registry.npmjs.org/jquery.effects.blind/1.8.13" + }, + "dist": { + "1.8.13": { + "shasum": "0f82b66e3040b2a4bba52835531bc2236fb3b385", + "tarball": "http://registry.npmjs.org/jquery.effects.blind/-/jquery.effects.blind-1.8.13.tgz" + } + }, + "url": "http://registry.npmjs.org/jquery.effects.blind/" + }, + "jquery.effects.bounce": { + "name": "jquery.effects.bounce", + "description": "A jQuery UI widget.", + "dist-tags": { + "latest": "1.8.13" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-06-14T15:58:40.746Z", + "created": "2011-06-14T15:58:40.273Z", + "1.8.13": "2011-06-14T15:58:40.746Z" + }, + "versions": { + "1.8.13": "http://registry.npmjs.org/jquery.effects.bounce/1.8.13" + }, + "dist": { + "1.8.13": { + "shasum": "4bbdc22a80ffcb2370bfb4e8abdf9feea287579f", + "tarball": "http://registry.npmjs.org/jquery.effects.bounce/-/jquery.effects.bounce-1.8.13.tgz" + } + }, + "url": "http://registry.npmjs.org/jquery.effects.bounce/" + }, + "jquery.effects.clip": { + "name": "jquery.effects.clip", + "description": "A jQuery UI widget.", + "dist-tags": { + "latest": "1.8.13" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-06-14T15:58:46.194Z", + "created": "2011-06-14T15:58:45.732Z", + "1.8.13": "2011-06-14T15:58:46.194Z" + }, + "versions": { + "1.8.13": "http://registry.npmjs.org/jquery.effects.clip/1.8.13" + }, + "dist": { + "1.8.13": { + "shasum": "42d5f2b7bd17ae523ba303132204d0f60c5e99fa", + "tarball": "http://registry.npmjs.org/jquery.effects.clip/-/jquery.effects.clip-1.8.13.tgz" + } + }, + "url": "http://registry.npmjs.org/jquery.effects.clip/" + }, + "jquery.effects.core": { + "name": "jquery.effects.core", + "description": "A jQuery UI widget.", + "dist-tags": { + "latest": "1.8.13" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-06-14T15:58:50.454Z", + "created": "2011-06-14T15:58:49.935Z", + "1.8.13": "2011-06-14T15:58:50.454Z" + }, + "versions": { + "1.8.13": "http://registry.npmjs.org/jquery.effects.core/1.8.13" + }, + "dist": { + "1.8.13": { + "shasum": "0c87319101c4397d0f23335b1ac2123f3b8069b7", + "tarball": "http://registry.npmjs.org/jquery.effects.core/-/jquery.effects.core-1.8.13.tgz" + } + }, + "url": "http://registry.npmjs.org/jquery.effects.core/" + }, + "jquery.effects.drop": { + "name": "jquery.effects.drop", + "description": "A jQuery UI widget.", + "dist-tags": { + "latest": "1.8.13" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-06-14T15:58:56.920Z", + "created": "2011-06-14T15:58:56.418Z", + "1.8.13": "2011-06-14T15:58:56.920Z" + }, + "versions": { + "1.8.13": "http://registry.npmjs.org/jquery.effects.drop/1.8.13" + }, + "dist": { + "1.8.13": { + "shasum": "e34a3d6180730fd10180c27338c2b2a9c5a78143", + "tarball": "http://registry.npmjs.org/jquery.effects.drop/-/jquery.effects.drop-1.8.13.tgz" + } + }, + "url": "http://registry.npmjs.org/jquery.effects.drop/" + }, + "jquery.effects.explode": { + "name": "jquery.effects.explode", + "description": "A jQuery UI widget.", + "dist-tags": { + "latest": "1.8.13" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-06-14T15:59:00.607Z", + "created": "2011-06-14T15:59:00.133Z", + "1.8.13": "2011-06-14T15:59:00.607Z" + }, + "versions": { + "1.8.13": "http://registry.npmjs.org/jquery.effects.explode/1.8.13" + }, + "dist": { + "1.8.13": { + "shasum": "675102669a30cfd81f1bc5ba70a932c219c91501", + "tarball": "http://registry.npmjs.org/jquery.effects.explode/-/jquery.effects.explode-1.8.13.tgz" + } + }, + "url": "http://registry.npmjs.org/jquery.effects.explode/" + }, + "jquery.effects.fade": { + "name": "jquery.effects.fade", + "description": "A jQuery UI widget.", + "dist-tags": { + "latest": "1.8.13" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-06-14T15:59:04.477Z", + "created": "2011-06-14T15:59:03.981Z", + "1.8.13": "2011-06-14T15:59:04.477Z" + }, + "versions": { + "1.8.13": "http://registry.npmjs.org/jquery.effects.fade/1.8.13" + }, + "dist": { + "1.8.13": { + "shasum": "0a420d168dfc596b0ca6287413bfee2daa1b5da0", + "tarball": "http://registry.npmjs.org/jquery.effects.fade/-/jquery.effects.fade-1.8.13.tgz" + } + }, + "url": "http://registry.npmjs.org/jquery.effects.fade/" + }, + "jquery.effects.fold": { + "name": "jquery.effects.fold", + "description": "A jQuery UI widget.", + "dist-tags": { + "latest": "1.8.13" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-06-14T15:59:08.065Z", + "created": "2011-06-14T15:59:07.588Z", + "1.8.13": "2011-06-14T15:59:08.065Z" + }, + "versions": { + "1.8.13": "http://registry.npmjs.org/jquery.effects.fold/1.8.13" + }, + "dist": { + "1.8.13": { + "shasum": "67e1f16057a2b3b27414241668f69d7c70ee5110", + "tarball": "http://registry.npmjs.org/jquery.effects.fold/-/jquery.effects.fold-1.8.13.tgz" + } + }, + "url": "http://registry.npmjs.org/jquery.effects.fold/" + }, + "jquery.effects.highlight": { + "name": "jquery.effects.highlight", + "description": "A jQuery UI widget.", + "dist-tags": { + "latest": "1.8.13" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-06-14T15:59:12.875Z", + "created": "2011-06-14T15:59:12.413Z", + "1.8.13": "2011-06-14T15:59:12.875Z" + }, + "versions": { + "1.8.13": "http://registry.npmjs.org/jquery.effects.highlight/1.8.13" + }, + "dist": { + "1.8.13": { + "shasum": "ca5881f26fd577f29ff3191d907bb3e40ed67af5", + "tarball": "http://registry.npmjs.org/jquery.effects.highlight/-/jquery.effects.highlight-1.8.13.tgz" + } + }, + "url": "http://registry.npmjs.org/jquery.effects.highlight/" + }, + "jquery.effects.pulsate": { + "name": "jquery.effects.pulsate", + "description": "A jQuery UI widget.", + "dist-tags": { + "latest": "1.8.13" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-06-14T15:59:17.869Z", + "created": "2011-06-14T15:59:17.377Z", + "1.8.13": "2011-06-14T15:59:17.869Z" + }, + "versions": { + "1.8.13": "http://registry.npmjs.org/jquery.effects.pulsate/1.8.13" + }, + "dist": { + "1.8.13": { + "shasum": "f9976516e8fb09e4e9b6011a3c648d8eec38a81d", + "tarball": "http://registry.npmjs.org/jquery.effects.pulsate/-/jquery.effects.pulsate-1.8.13.tgz" + } + }, + "url": "http://registry.npmjs.org/jquery.effects.pulsate/" + }, + "jquery.effects.scale": { + "name": "jquery.effects.scale", + "description": "A jQuery UI widget.", + "dist-tags": { + "latest": "1.8.13" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-06-14T15:59:22.537Z", + "created": "2011-06-14T15:59:22.063Z", + "1.8.13": "2011-06-14T15:59:22.537Z" + }, + "versions": { + "1.8.13": "http://registry.npmjs.org/jquery.effects.scale/1.8.13" + }, + "dist": { + "1.8.13": { + "shasum": "4d55b0d8d26414adb074c687e2a5e056d36e8f5e", + "tarball": "http://registry.npmjs.org/jquery.effects.scale/-/jquery.effects.scale-1.8.13.tgz" + } + }, + "url": "http://registry.npmjs.org/jquery.effects.scale/" + }, + "jquery.effects.shake": { + "name": "jquery.effects.shake", + "description": "A jQuery UI widget.", + "dist-tags": { + "latest": "1.8.13" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-06-14T15:59:26.340Z", + "created": "2011-06-14T15:59:25.842Z", + "1.8.13": "2011-06-14T15:59:26.340Z" + }, + "versions": { + "1.8.13": "http://registry.npmjs.org/jquery.effects.shake/1.8.13" + }, + "dist": { + "1.8.13": { + "shasum": "6a93ad3cb34022fad269972c827a930975acb565", + "tarball": "http://registry.npmjs.org/jquery.effects.shake/-/jquery.effects.shake-1.8.13.tgz" + } + }, + "url": "http://registry.npmjs.org/jquery.effects.shake/" + }, + "jquery.effects.slide": { + "name": "jquery.effects.slide", + "description": "A jQuery UI widget.", + "dist-tags": { + "latest": "1.8.13" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-06-14T15:59:29.565Z", + "created": "2011-06-14T15:59:29.111Z", + "1.8.13": "2011-06-14T15:59:29.565Z" + }, + "versions": { + "1.8.13": "http://registry.npmjs.org/jquery.effects.slide/1.8.13" + }, + "dist": { + "1.8.13": { + "shasum": "223b5eb104597ba06f8c9600a5d4bf2c46e07277", + "tarball": "http://registry.npmjs.org/jquery.effects.slide/-/jquery.effects.slide-1.8.13.tgz" + } + }, + "url": "http://registry.npmjs.org/jquery.effects.slide/" + }, + "jquery.effects.transfer": { + "name": "jquery.effects.transfer", + "description": "A jQuery UI widget.", + "dist-tags": { + "latest": "1.8.13" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-06-14T15:59:34.255Z", + "created": "2011-06-14T15:59:33.771Z", + "1.8.13": "2011-06-14T15:59:34.255Z" + }, + "versions": { + "1.8.13": "http://registry.npmjs.org/jquery.effects.transfer/1.8.13" + }, + "dist": { + "1.8.13": { + "shasum": "a76f0a07c230323eee2e468bdfe615e389c326ae", + "tarball": "http://registry.npmjs.org/jquery.effects.transfer/-/jquery.effects.transfer-1.8.13.tgz" + } + }, + "url": "http://registry.npmjs.org/jquery.effects.transfer/" + }, + "jquery.flash": { + "name": "jquery.flash", + "description": "flash embedding for jQuery", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "secondplanet", + "email": "contact@secondplanetanimation.com" + } + ], + "time": { + "modified": "2011-10-02T16:18:27.172Z", + "created": "2011-10-02T16:18:26.628Z", + "1.0.0": "2011-10-02T16:18:27.172Z" + }, + "author": { + "name": "Luke Lutman" + }, + "repository": { + "type": "git", + "url": "git://github.com/secondplanet/jquery-flash.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/jquery.flash/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "3322c7eb707df36c053f53be0c007ad3ab302d13", + "tarball": "http://registry.npmjs.org/jquery.flash/-/jquery.flash-1.0.0.tgz" + } + }, + "keywords": [ + "ender", + "flash", + "jQuery" + ], + "url": "http://registry.npmjs.org/jquery.flash/" + }, + "jquery.tmpl": { + "name": "jquery.tmpl", + "description": "jQuery.tmpl lib for browsers", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "maccman", + "email": "maccman@gmail.com" + } + ], + "time": { + "modified": "2011-08-03T17:01:09.330Z", + "created": "2011-08-03T15:40:17.723Z", + "0.0.1": "2011-08-03T15:40:20.682Z", + "0.0.2": "2011-08-03T17:01:09.330Z" + }, + "author": { + "name": "Alex MacCaw", + "email": "info@eribium.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/maccman/jquery.tmpl.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jquery.tmpl/0.0.1", + "0.0.2": "http://registry.npmjs.org/jquery.tmpl/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "b4822ef81ee8371eadddaa95de7464a002fce278", + "tarball": "http://registry.npmjs.org/jquery.tmpl/-/jquery.tmpl-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "5c5aec1525d1e5be4c240383fb674d8e10cb2255", + "tarball": "http://registry.npmjs.org/jquery.tmpl/-/jquery.tmpl-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/jquery.tmpl/" + }, + "jquery.ui.accordion": { + "name": "jquery.ui.accordion", + "description": "A jQuery UI widget.", + "dist-tags": { + "latest": "1.8.13" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-06-14T15:59:41.456Z", + "created": "2011-06-14T15:59:41.014Z", + "1.8.13": "2011-06-14T15:59:41.456Z" + }, + "versions": { + "1.8.13": "http://registry.npmjs.org/jquery.ui.accordion/1.8.13" + }, + "dist": { + "1.8.13": { + "shasum": "4aad53fabba34d36632260ece9ca3c6ddf923c4a", + "tarball": "http://registry.npmjs.org/jquery.ui.accordion/-/jquery.ui.accordion-1.8.13.tgz" + } + }, + "url": "http://registry.npmjs.org/jquery.ui.accordion/" + }, + "jquery.ui.autocomplete": { + "name": "jquery.ui.autocomplete", + "description": "A jQuery UI widget.", + "dist-tags": { + "latest": "1.8.13" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-06-14T15:59:48.847Z", + "created": "2011-06-14T15:59:48.321Z", + "1.8.13": "2011-06-14T15:59:48.847Z" + }, + "versions": { + "1.8.13": "http://registry.npmjs.org/jquery.ui.autocomplete/1.8.13" + }, + "dist": { + "1.8.13": { + "shasum": "fd2ca5dd9aa9b674e97d2745482b3e3b807b4148", + "tarball": "http://registry.npmjs.org/jquery.ui.autocomplete/-/jquery.ui.autocomplete-1.8.13.tgz" + } + }, + "url": "http://registry.npmjs.org/jquery.ui.autocomplete/" + }, + "jquery.ui.button": { + "name": "jquery.ui.button", + "description": "A jQuery UI widget.", + "dist-tags": { + "latest": "1.8.13" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-06-14T15:59:53.573Z", + "created": "2011-06-14T15:59:53.085Z", + "1.8.13": "2011-06-14T15:59:53.573Z" + }, + "versions": { + "1.8.13": "http://registry.npmjs.org/jquery.ui.button/1.8.13" + }, + "dist": { + "1.8.13": { + "shasum": "143bcacec6b7f03a29204f6b8c3b71facef62f62", + "tarball": "http://registry.npmjs.org/jquery.ui.button/-/jquery.ui.button-1.8.13.tgz" + } + }, + "url": "http://registry.npmjs.org/jquery.ui.button/" + }, + "jquery.ui.core": { + "name": "jquery.ui.core", + "description": "A jQuery UI widget.", + "dist-tags": { + "latest": "1.8.13" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-06-14T16:08:58.367Z", + "created": "2011-06-14T16:08:57.916Z", + "1.8.13": "2011-06-14T16:08:58.367Z" + }, + "versions": { + "1.8.13": "http://registry.npmjs.org/jquery.ui.core/1.8.13" + }, + "dist": { + "1.8.13": { + "shasum": "92736f8d822bd1bbfca9d5186bfb05504463f4b9", + "tarball": "http://registry.npmjs.org/jquery.ui.core/-/jquery.ui.core-1.8.13.tgz" + } + }, + "url": "http://registry.npmjs.org/jquery.ui.core/" + }, + "jquery.ui.datepicker": { + "name": "jquery.ui.datepicker", + "description": "A jQuery UI widget.", + "dist-tags": { + "latest": "1.8.13" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-06-14T16:00:05.119Z", + "created": "2011-06-14T16:00:04.632Z", + "1.8.13": "2011-06-14T16:00:05.119Z" + }, + "versions": { + "1.8.13": "http://registry.npmjs.org/jquery.ui.datepicker/1.8.13" + }, + "dist": { + "1.8.13": { + "shasum": "b7b9a5cf067059fe6b8bb7de8682b6663376fcd6", + "tarball": "http://registry.npmjs.org/jquery.ui.datepicker/-/jquery.ui.datepicker-1.8.13.tgz" + } + }, + "url": "http://registry.npmjs.org/jquery.ui.datepicker/" + }, + "jquery.ui.dialog": { + "name": "jquery.ui.dialog", + "description": "A jQuery UI widget.", + "dist-tags": { + "latest": "1.8.13" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-06-14T16:00:11.763Z", + "created": "2011-06-14T16:00:11.214Z", + "1.8.13": "2011-06-14T16:00:11.763Z" + }, + "versions": { + "1.8.13": "http://registry.npmjs.org/jquery.ui.dialog/1.8.13" + }, + "dist": { + "1.8.13": { + "shasum": "4cf6f0940dd9f903370bcb66d03f0594ef5dc0a6", + "tarball": "http://registry.npmjs.org/jquery.ui.dialog/-/jquery.ui.dialog-1.8.13.tgz" + } + }, + "url": "http://registry.npmjs.org/jquery.ui.dialog/" + }, + "jquery.ui.draggable": { + "name": "jquery.ui.draggable", + "description": "A jQuery UI widget.", + "dist-tags": { + "latest": "1.8.13" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-06-14T16:00:17.158Z", + "created": "2011-06-14T16:00:16.665Z", + "1.8.13": "2011-06-14T16:00:17.158Z" + }, + "versions": { + "1.8.13": "http://registry.npmjs.org/jquery.ui.draggable/1.8.13" + }, + "dist": { + "1.8.13": { + "shasum": "95346da098205ae1b07d77258e71a79c329c920d", + "tarball": "http://registry.npmjs.org/jquery.ui.draggable/-/jquery.ui.draggable-1.8.13.tgz" + } + }, + "url": "http://registry.npmjs.org/jquery.ui.draggable/" + }, + "jquery.ui.droppable": { + "name": "jquery.ui.droppable", + "description": "A jQuery UI widget.", + "dist-tags": { + "latest": "1.8.13" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-06-14T16:00:21.720Z", + "created": "2011-06-14T16:00:21.235Z", + "1.8.13": "2011-06-14T16:00:21.720Z" + }, + "versions": { + "1.8.13": "http://registry.npmjs.org/jquery.ui.droppable/1.8.13" + }, + "dist": { + "1.8.13": { + "shasum": "15ea4c5c15dc4d8874d011480b69777a3b24af70", + "tarball": "http://registry.npmjs.org/jquery.ui.droppable/-/jquery.ui.droppable-1.8.13.tgz" + } + }, + "url": "http://registry.npmjs.org/jquery.ui.droppable/" + }, + "jquery.ui.mouse": { + "name": "jquery.ui.mouse", + "description": "A jQuery UI widget.", + "dist-tags": { + "latest": "1.8.13" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-06-14T16:00:27.207Z", + "created": "2011-06-14T16:00:26.703Z", + "1.8.13": "2011-06-14T16:00:27.207Z" + }, + "versions": { + "1.8.13": "http://registry.npmjs.org/jquery.ui.mouse/1.8.13" + }, + "dist": { + "1.8.13": { + "shasum": "e7ec02eb3872a71bd56270ac23c241791dbbbf5d", + "tarball": "http://registry.npmjs.org/jquery.ui.mouse/-/jquery.ui.mouse-1.8.13.tgz" + } + }, + "url": "http://registry.npmjs.org/jquery.ui.mouse/" + }, + "jquery.ui.position": { + "name": "jquery.ui.position", + "description": "A jQuery UI widget.", + "dist-tags": { + "latest": "1.8.13" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-06-14T16:00:34.309Z", + "created": "2011-06-14T16:00:33.858Z", + "1.8.13": "2011-06-14T16:00:34.309Z" + }, + "versions": { + "1.8.13": "http://registry.npmjs.org/jquery.ui.position/1.8.13" + }, + "dist": { + "1.8.13": { + "shasum": "7f237ce1e17172072d97ff360b480ba09e4912f9", + "tarball": "http://registry.npmjs.org/jquery.ui.position/-/jquery.ui.position-1.8.13.tgz" + } + }, + "url": "http://registry.npmjs.org/jquery.ui.position/" + }, + "jquery.ui.progressbar": { + "name": "jquery.ui.progressbar", + "description": "A jQuery UI widget.", + "dist-tags": { + "latest": "1.8.13" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-06-14T16:00:40.134Z", + "created": "2011-06-14T16:00:39.655Z", + "1.8.13": "2011-06-14T16:00:40.134Z" + }, + "versions": { + "1.8.13": "http://registry.npmjs.org/jquery.ui.progressbar/1.8.13" + }, + "dist": { + "1.8.13": { + "shasum": "a9c054804c5ff3e8f9f51740e6667cb48f408f3a", + "tarball": "http://registry.npmjs.org/jquery.ui.progressbar/-/jquery.ui.progressbar-1.8.13.tgz" + } + }, + "url": "http://registry.npmjs.org/jquery.ui.progressbar/" + }, + "jquery.ui.resizable": { + "name": "jquery.ui.resizable", + "description": "A jQuery UI widget.", + "dist-tags": { + "latest": "1.8.13" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-06-14T16:00:46.797Z", + "created": "2011-06-14T16:00:46.328Z", + "1.8.13": "2011-06-14T16:00:46.797Z" + }, + "versions": { + "1.8.13": "http://registry.npmjs.org/jquery.ui.resizable/1.8.13" + }, + "dist": { + "1.8.13": { + "shasum": "5c94fed6d69856f7ae0ff5b992feb3a3758f6e48", + "tarball": "http://registry.npmjs.org/jquery.ui.resizable/-/jquery.ui.resizable-1.8.13.tgz" + } + }, + "url": "http://registry.npmjs.org/jquery.ui.resizable/" + }, + "jquery.ui.selectable": { + "name": "jquery.ui.selectable", + "description": "A jQuery UI widget.", + "dist-tags": { + "latest": "1.8.13" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-06-14T16:00:51.883Z", + "created": "2011-06-14T16:00:51.394Z", + "1.8.13": "2011-06-14T16:00:51.883Z" + }, + "versions": { + "1.8.13": "http://registry.npmjs.org/jquery.ui.selectable/1.8.13" + }, + "dist": { + "1.8.13": { + "shasum": "0d38bdbda9a5437875c87b9a2095a5abbf7f2ad9", + "tarball": "http://registry.npmjs.org/jquery.ui.selectable/-/jquery.ui.selectable-1.8.13.tgz" + } + }, + "url": "http://registry.npmjs.org/jquery.ui.selectable/" + }, + "jquery.ui.slider": { + "name": "jquery.ui.slider", + "description": "A jQuery UI widget.", + "dist-tags": { + "latest": "1.8.13" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-06-14T16:00:56.274Z", + "created": "2011-06-14T16:00:55.791Z", + "1.8.13": "2011-06-14T16:00:56.274Z" + }, + "versions": { + "1.8.13": "http://registry.npmjs.org/jquery.ui.slider/1.8.13" + }, + "dist": { + "1.8.13": { + "shasum": "d61eed07ac2c60854f9e5590331eb35d7443d76c", + "tarball": "http://registry.npmjs.org/jquery.ui.slider/-/jquery.ui.slider-1.8.13.tgz" + } + }, + "url": "http://registry.npmjs.org/jquery.ui.slider/" + }, + "jquery.ui.sortable": { + "name": "jquery.ui.sortable", + "description": "A jQuery UI widget.", + "dist-tags": { + "latest": "1.8.13" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-06-14T16:01:00.966Z", + "created": "2011-06-14T16:01:00.439Z", + "1.8.13": "2011-06-14T16:01:00.966Z" + }, + "versions": { + "1.8.13": "http://registry.npmjs.org/jquery.ui.sortable/1.8.13" + }, + "dist": { + "1.8.13": { + "shasum": "9218196111a3e00864b938acc26e1fbdde6e7467", + "tarball": "http://registry.npmjs.org/jquery.ui.sortable/-/jquery.ui.sortable-1.8.13.tgz" + } + }, + "url": "http://registry.npmjs.org/jquery.ui.sortable/" + }, + "jquery.ui.tabs": { + "name": "jquery.ui.tabs", + "description": "A jQuery UI widget.", + "dist-tags": { + "latest": "1.8.13" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-06-14T16:01:05.629Z", + "created": "2011-06-14T16:01:05.146Z", + "1.8.13": "2011-06-14T16:01:05.629Z" + }, + "versions": { + "1.8.13": "http://registry.npmjs.org/jquery.ui.tabs/1.8.13" + }, + "dist": { + "1.8.13": { + "shasum": "888e55beb2095e54e09a30a75109cd58c94db1a6", + "tarball": "http://registry.npmjs.org/jquery.ui.tabs/-/jquery.ui.tabs-1.8.13.tgz" + } + }, + "url": "http://registry.npmjs.org/jquery.ui.tabs/" + }, + "jquery.ui.widget": { + "name": "jquery.ui.widget", + "description": "A jQuery UI widget.", + "dist-tags": { + "latest": "1.8.13" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-06-14T16:01:11.514Z", + "created": "2011-06-14T16:01:10.977Z", + "1.8.13": "2011-06-14T16:01:11.514Z" + }, + "versions": { + "1.8.13": "http://registry.npmjs.org/jquery.ui.widget/1.8.13" + }, + "dist": { + "1.8.13": { + "shasum": "f3f5f45412a6ed15b81c35ff5cd076cd3ce25c1d", + "tarball": "http://registry.npmjs.org/jquery.ui.widget/-/jquery.ui.widget-1.8.13.tgz" + } + }, + "url": "http://registry.npmjs.org/jquery.ui.widget/" + }, + "jqueryify": { + "name": "jqueryify", + "description": "jQuery lib for browsers", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "maccman", + "email": "maccman@gmail.com" + } + ], + "time": { + "modified": "2011-12-02T17:52:28.021Z", + "created": "2011-08-03T16:47:39.325Z", + "0.0.1": "2011-08-03T16:47:42.447Z", + "0.0.2": "2011-12-02T17:52:28.021Z" + }, + "author": { + "name": "Alex MacCaw", + "email": "info@eribium.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/maccman/jqueryify.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jqueryify/0.0.1", + "0.0.2": "http://registry.npmjs.org/jqueryify/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "acf7e2471a34d21dee020693f03dac2aac513f8b", + "tarball": "http://registry.npmjs.org/jqueryify/-/jqueryify-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "d4f9f9764e976772ab467c800f660b9adb890100", + "tarball": "http://registry.npmjs.org/jqueryify/-/jqueryify-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/jqueryify/" + }, + "jraphical": { + "name": "jraphical", + "description": "Graphs for Bongo", + "dist-tags": { + "latest": "0.0.0" + }, + "readme": null, + "maintainers": [ + { + "name": "chris.thorn", + "email": "chris@koding.com" + } + ], + "time": { + "modified": "2011-11-24T00:46:05.289Z", + "created": "2011-11-24T00:46:03.940Z", + "0.0.0": "2011-11-24T00:46:05.289Z" + }, + "author": { + "name": "Christopher Thorn", + "email": "chris@koding.com", + "url": "http://koding.com" + }, + "repository": { + "url": "git@kodingen.beanstalkapp.com:/jraphical.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/jraphical/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "737f71d4e4ba8351ca2c307771ac4ecf60ce50e8", + "tarball": "http://registry.npmjs.org/jraphical/-/jraphical-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/jraphical/" + }, + "jrep": { + "name": "jrep", + "description": "", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-09-22T11:29:20.365Z", + "created": "2011-09-22T11:29:16.803Z", + "0.0.0": "2011-09-22T11:29:20.365Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com", + "url": "http://bit.ly/dominictarr" + }, + "repository": { + "type": "git", + "url": "git://github.com/dominictarr/jrep.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/jrep/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "fa1141dd001708f2dc330e6c24702c19bdccf2dc", + "tarball": "http://registry.npmjs.org/jrep/-/jrep-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/jrep/" + }, + "js-beautify-node": { + "name": "js-beautify-node", + "description": "Javascript beautifier. Working on node'ifying it.", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "dotmaster", + "email": "isimpl@gmail.com" + } + ], + "time": { + "modified": "2011-07-01T19:47:58.232Z", + "created": "2011-07-01T19:47:57.801Z", + "1.0.0": "2011-07-01T19:47:58.232Z" + }, + "author": { + "name": "Gregor Schwab", + "email": "mail@synaptic-labs.net", + "url": "www.grenzgenial.com" + }, + "repository": { + "type": "git", + "url": "https://github.com/dotmaster/js-beautify-node" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/js-beautify-node/1.0.0" + }, + "dist": { + "1.0.0": { + "tarball": "http://registry.npmjs.org/js-beautify-node/-/js-beautify-node-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/js-beautify-node/" + }, + "JS-Entities": { + "name": "JS-Entities", + "description": "Character encoding generation and html/xml encodings included.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "bradleymeck", + "email": "bradley.meck@gmail.com" + } + ], + "author": { + "name": "bradley.meck@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/JS-Entities/0.1.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/JS-Entities/-/JS-Entities-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/JS-Entities/" + }, + "js-jango": { + "name": "js-jango", + "description": "A javascript interface to the JangoMail service", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "bryan.rockwood", + "email": "bryan.rockwood@pollenware.com" + } + ], + "time": { + "modified": "2011-06-28T18:37:28.274Z", + "created": "2011-06-28T18:37:27.923Z", + "0.0.1": "2011-06-28T18:37:28.274Z" + }, + "author": { + "name": "Pollenware", + "url": "http://pollenware.github.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/js-jango/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "7d906664cd82df2021b7ab2ee3a33ee2d36c85f5", + "tarball": "http://registry.npmjs.org/js-jango/-/js-jango-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/js-jango/" + }, + "js-loader": { + "name": "js-loader", + "description": "On-the-fly javascript contacatenator, minifier and dependency resolver for client-side JS", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "dmcquay", + "email": "dmcquay@gmail.com" + } + ], + "time": { + "modified": "2011-02-17T16:49:04.983Z", + "created": "2011-02-13T19:19:10.542Z", + "0.0.1": "2011-02-13T19:19:11.470Z", + "0.0.2": "2011-02-14T04:56:05.003Z", + "0.0.3": "2011-02-14T06:32:38.076Z", + "0.0.4": "2011-02-14T18:23:27.227Z", + "0.1.0": "2011-02-16T07:52:04.982Z", + "0.1.1": "2011-02-17T16:49:04.983Z" + }, + "author": { + "name": "Dustin McQuay", + "email": "dmcquay@gmail.com", + "url": "http://www.synchrosinteractive.com/" + }, + "repository": "git://github.com/dmcquay/node-js-loader.git", + "versions": { + "0.0.1": "http://registry.npmjs.org/js-loader/0.0.1", + "0.0.2": "http://registry.npmjs.org/js-loader/0.0.2", + "0.0.3": "http://registry.npmjs.org/js-loader/0.0.3", + "0.0.4": "http://registry.npmjs.org/js-loader/0.0.4", + "0.1.0": "http://registry.npmjs.org/js-loader/0.1.0", + "0.1.1": "http://registry.npmjs.org/js-loader/0.1.1" + }, + "dist": { + "0.0.1": { + "shasum": "10b1f356cee3703d1d781b3893b53f6295fff836", + "tarball": "http://registry.npmjs.org/js-loader/-/js-loader-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "0148fa43f84ace67d265a7c01238c7d9efed5cfc", + "tarball": "http://registry.npmjs.org/js-loader/-/js-loader-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "3ae8933889f2405e1b5e69efeb31034502458e3f", + "tarball": "http://registry.npmjs.org/js-loader/-/js-loader-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "225311c29361b79c23728034a7ecf6f80db43c2a", + "tarball": "http://registry.npmjs.org/js-loader/-/js-loader-0.0.4.tgz" + }, + "0.1.0": { + "shasum": "03c45b359d867e8bd73f8f8be8c97fe9fa4fff6c", + "tarball": "http://registry.npmjs.org/js-loader/-/js-loader-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "f4f9929d337f22df1a9c4a286b4af373e8ddb8cd", + "tarball": "http://registry.npmjs.org/js-loader/-/js-loader-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/js-loader/" + }, + "js-manager": { + "name": "js-manager", + "description": "browser side javascript package manager", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "mizchi", + "email": "miz404@gmail.com" + } + ], + "time": { + "modified": "2011-08-13T02:35:19.648Z", + "created": "2011-08-13T02:15:51.865Z", + "0.0.1": "2011-08-13T02:15:53.463Z", + "0.0.2": "2011-08-13T02:35:19.648Z" + }, + "author": { + "name": "mizchi", + "email": "miz404@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/js-manager/0.0.1", + "0.0.2": "http://registry.npmjs.org/js-manager/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "aca008943df8779a425d87a1362cf45f90c97929", + "tarball": "http://registry.npmjs.org/js-manager/-/js-manager-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "e14e77f7e9d0eea4b95c549fbf9e396e0dbe8df5", + "tarball": "http://registry.npmjs.org/js-manager/-/js-manager-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/js-manager/" + }, + "js-nts": { + "name": "js-nts", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "nomospace", + "email": "jinlu_hz@163.com" + } + ], + "time": { + "modified": "2011-05-30T05:39:28.592Z", + "created": "2011-05-30T05:39:27.047Z", + "0.0.0": "2011-05-30T05:39:28.592Z" + }, + "author": { + "name": "nomospace", + "email": "jinlu_hz@163.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/nomospace/nodejs-nts.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/js-nts/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "ff09eafd6bb286710b23d7079a34a5eec099117f", + "tarball": "http://registry.npmjs.org/js-nts/-/js-nts-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/js-nts/" + }, + "js-openstack": { + "name": "js-openstack", + "description": "Library for accessing openstack object store", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "tobowers", + "email": "topper@toppingdesign.com" + } + ], + "time": { + "modified": "2011-05-13T14:46:52.361Z", + "created": "2011-05-12T21:46:25.590Z", + "0.0.1": "2011-05-12T21:46:25.754Z", + "0.0.2": "2011-05-12T22:00:43.796Z", + "0.0.3": "2011-05-13T12:59:47.530Z", + "0.0.4": "2011-05-13T13:25:02.275Z", + "0.0.5": "2011-05-13T14:46:52.362Z" + }, + "author": { + "name": "Topper Bowers", + "email": "topper@toppingdesign.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/js-openstack/0.0.1", + "0.0.2": "http://registry.npmjs.org/js-openstack/0.0.2", + "0.0.3": "http://registry.npmjs.org/js-openstack/0.0.3", + "0.0.4": "http://registry.npmjs.org/js-openstack/0.0.4", + "0.0.5": "http://registry.npmjs.org/js-openstack/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "25fa1489e12373d9be76277e460fb066648a45d7", + "tarball": "http://registry.npmjs.org/js-openstack/-/js-openstack-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "75047993dd1a5338d6877d237a63aa3430a19fab", + "tarball": "http://registry.npmjs.org/js-openstack/-/js-openstack-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "b8e6b47794e80fbc196d00ce9b04d86d6c15754c", + "tarball": "http://registry.npmjs.org/js-openstack/-/js-openstack-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "675b8fcb5bebfc39b124fb7e7e96ef9ed52e5ee1", + "tarball": "http://registry.npmjs.org/js-openstack/-/js-openstack-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "738bca8d891683f494e25e08443663dc3a654fb0", + "tarball": "http://registry.npmjs.org/js-openstack/-/js-openstack-0.0.5.tgz" + } + }, + "keywords": [ + "cloudfiles", + "swift", + "openstack", + "objectstore", + "client" + ], + "url": "http://registry.npmjs.org/js-openstack/" + }, + "js-select": { + "name": "js-select", + "description": "Traverse and modify objects with JSONSelect selectors", + "dist-tags": { + "latest": "0.5.0" + }, + "maintainers": [ + { + "name": "harth", + "email": "fayearthur@gmail.com" + } + ], + "time": { + "modified": "2011-07-27T01:46:37.072Z", + "created": "2011-07-23T03:48:10.311Z", + "0.1.0": "2011-07-23T03:48:11.083Z", + "0.2.0": "2011-07-24T05:48:56.480Z", + "0.4.0": "2011-07-26T06:31:46.542Z", + "0.5.0": "2011-07-27T01:46:37.072Z" + }, + "author": { + "name": "Heather Arthur", + "email": "fayearthur@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/harthur/js-select.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/js-select/0.1.0", + "0.2.0": "http://registry.npmjs.org/js-select/0.2.0", + "0.4.0": "http://registry.npmjs.org/js-select/0.4.0", + "0.5.0": "http://registry.npmjs.org/js-select/0.5.0" + }, + "dist": { + "0.1.0": { + "shasum": "7c8cf725ee0bb0d9b1445bf33c2db40f690bb37b", + "tarball": "http://registry.npmjs.org/js-select/-/js-select-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "42562788fd339bfc5acbe78e1070f18be9643a2e", + "tarball": "http://registry.npmjs.org/js-select/-/js-select-0.2.0.tgz" + }, + "0.4.0": { + "shasum": "db516c15e460536ce3e01e4d2f5613791796815f", + "tarball": "http://registry.npmjs.org/js-select/-/js-select-0.4.0.tgz" + }, + "0.5.0": { + "shasum": "815f88dd39fdfc17f36d0ffbb499861e3cd2000e", + "tarball": "http://registry.npmjs.org/js-select/-/js-select-0.5.0.tgz" + } + }, + "keywords": [ + "json" + ], + "url": "http://registry.npmjs.org/js-select/" + }, + "js-yaml": { + "name": "js-yaml", + "description": "YAML 1.1 Parser", + "dist-tags": { + "latest": "0.3.1" + }, + "maintainers": [ + { + "name": "vitaly", + "email": "vitaly@rcdesign.ru" + } + ], + "time": { + "modified": "2011-11-18T04:40:26.297Z", + "created": "2011-11-02T01:56:02.870Z", + "0.2.0": "2011-11-02T01:56:04.988Z", + "0.2.1": "2011-11-02T15:44:59.476Z", + "0.2.2": "2011-11-06T19:36:46.376Z", + "0.3.0": "2011-11-09T11:50:52.572Z", + "0.3.1": "2011-11-18T04:40:26.297Z" + }, + "author": { + "name": "Aleksey V Zapparov", + "email": "ixti@member.fsf.org", + "url": "http://www.ixti.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/nodeca/js-yaml.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/js-yaml/0.2.0", + "0.2.1": "http://registry.npmjs.org/js-yaml/0.2.1", + "0.2.2": "http://registry.npmjs.org/js-yaml/0.2.2", + "0.3.0": "http://registry.npmjs.org/js-yaml/0.3.0", + "0.3.1": "http://registry.npmjs.org/js-yaml/0.3.1" + }, + "dist": { + "0.2.0": { + "shasum": "a2480a4db3c6896e4a5db16b99b504cb2768cc32", + "tarball": "http://registry.npmjs.org/js-yaml/-/js-yaml-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "f42ad812a3c3a72740d571f4fb016e31f4bb9344", + "tarball": "http://registry.npmjs.org/js-yaml/-/js-yaml-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "79650583b962457ef4eba143fcbd8b57f0972c07", + "tarball": "http://registry.npmjs.org/js-yaml/-/js-yaml-0.2.2.tgz" + }, + "0.3.0": { + "shasum": "ed2aecd85e9f474c6c766bde89b3e27a88754f97", + "tarball": "http://registry.npmjs.org/js-yaml/-/js-yaml-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "221a8b84dcddd5ee463311b10366574a091c42dd", + "tarball": "http://registry.npmjs.org/js-yaml/-/js-yaml-0.3.1.tgz" + } + }, + "keywords": [ + "yaml", + "parser", + "pyyaml" + ], + "url": "http://registry.npmjs.org/js-yaml/" + }, + "js.io": { + "name": "js.io", + "description": "Networking library for realtime browser communication", + "dist-tags": { + "latest": "3.2.1" + }, + "maintainers": [ + { + "name": "jacoblyles", + "email": "jacob.lyles@gmail.com" + } + ], + "time": { + "modified": "2011-02-22T01:21:50.922Z", + "created": "2011-02-22T01:21:50.576Z", + "3.2.1": "2011-02-22T01:21:50.922Z" + }, + "author": { + "name": "Martin Hunt", + "email": "martin@gameclosure.com" + }, + "versions": { + "3.2.1": "http://registry.npmjs.org/js.io/3.2.1" + }, + "dist": { + "3.2.1": { + "shasum": "f893bd189949d29835e5b339104b84aacd62d44b", + "tarball": "http://registry.npmjs.org/js.io/-/js.io-3.2.1.tgz" + } + }, + "keywords": [ + "realtime", + "networking" + ], + "url": "http://registry.npmjs.org/js.io/" + }, + "js.perlin": { + "name": "js.perlin", + "description": "Perlin noise implementation", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "# JS.Perlin\n\n## Installation\n\n```npm install js.perlin```\n\n## Usage\n\n- *new Perlin( [ table ] )*\n\nReturns a new generator instance. If `table` is set, then it will be used\nas random lookup table otherwise a random table will be generated.\n\n- *[instance].octaves*\n- *[instance].frequency*\n- *[instance].persistence*\n\nGenerator configurations variables.\n\n- *[instance].generate( start, size, callback )*\n\nThis function will call `callback()` for each pixel in the N-dimensional\nrange between `start` and `start+size`, with two parameters : the\ncoordinates of the current pixel, and the related Perlin value.\n\n```javascript\nvar Perlin = require( 'js.perlin' ).Perlin;\n\nvar map = new Perlin( );\n\nmap.generate( [ 0, 0 ], [ 2, 2 ], function ( point, value ) {\n console.log( point, value );\n} );\n```\n\n## To do\n\nI need to :\n\n- Understand why implements Perlin.random as `Math.random( ) * 2 - 1`\n just doesn't work.\n\n- Implement _real_ Perlin noises (standard & simplex).\n\nIf you can help me on one of these two issues, please feel free to post an issue\nand / or make pull requests !\n\n## Authors\n\nImplementation by Maël Nison, from Jeremy Cochoy's [paper][1].\n\n[1]: http://zenol.fr/dl/perlin_noise.pdf\n", + "maintainers": [ + { + "name": "arcanis", + "email": "nison.mael@gmail.com" + } + ], + "time": { + "modified": "2011-12-02T09:17:02.866Z", + "created": "2011-12-02T09:16:59.891Z", + "0.0.1": "2011-12-02T09:17:02.866Z" + }, + "author": { + "name": "Mael Nison", + "email": "nison.mael@gmail.com", + "url": "http://www.arcastel.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/arcanin/js.perlin.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/js.perlin/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "9d97f8ee89bb0b875b974a8de689708c78c44f3a", + "tarball": "http://registry.npmjs.org/js.perlin/-/js.perlin-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/js.perlin/" + }, + "js2": { + "name": "js2", + "description": "Javascript Sugar", + "dist-tags": { + "latest": "0.3.21" + }, + "maintainers": [ + { + "name": "jeffsu", + "email": "me@jeffsu.com" + } + ], + "time": { + "modified": "2011-09-14T17:27:42.354Z", + "created": "2011-02-28T23:21:43.393Z", + "0.3.0pre1": "2011-02-28T23:21:44.636Z", + "0.3.0pre2": "2011-02-28T23:33:02.370Z", + "0.3.0pre3": "2011-03-02T23:40:44.694Z", + "0.3.0pre4": "2011-03-05T23:45:31.971Z", + "0.3.0pre5": "2011-03-05T23:50:14.339Z", + "0.3.4": "2011-03-10T10:06:03.463Z", + "0.3.6": "2011-03-22T06:26:04.911Z", + "0.3.7": "2011-03-22T19:49:10.147Z", + "0.3.9": "2011-03-29T16:50:48.202Z", + "0.3.13": "2011-04-04T16:20:29.539Z", + "0.3.15": "2011-04-05T20:43:29.411Z", + "0.3.16": "2011-04-08T16:43:51.766Z", + "0.3.17": "2011-04-13T15:49:00.783Z", + "0.3.18": "2011-04-15T16:24:33.553Z", + "0.3.19": "2011-07-02T09:38:05.080Z", + "0.3.20": "2011-07-13T21:28:32.927Z", + "0.3.21": "2011-09-14T17:27:42.354Z" + }, + "author": { + "name": "Jeff Su" + }, + "repository": { + "type": "git", + "url": "git://github.com/jeffsu/js2.git" + }, + "versions": { + "0.3.0pre1": "http://registry.npmjs.org/js2/0.3.0pre1", + "0.3.0pre2": "http://registry.npmjs.org/js2/0.3.0pre2", + "0.3.0pre3": "http://registry.npmjs.org/js2/0.3.0pre3", + "0.3.0pre4": "http://registry.npmjs.org/js2/0.3.0pre4", + "0.3.0pre5": "http://registry.npmjs.org/js2/0.3.0pre5", + "0.3.4": "http://registry.npmjs.org/js2/0.3.4", + "0.3.6": "http://registry.npmjs.org/js2/0.3.6", + "0.3.7": "http://registry.npmjs.org/js2/0.3.7", + "0.3.9": "http://registry.npmjs.org/js2/0.3.9", + "0.3.13": "http://registry.npmjs.org/js2/0.3.13", + "0.3.15": "http://registry.npmjs.org/js2/0.3.15", + "0.3.16": "http://registry.npmjs.org/js2/0.3.16", + "0.3.17": "http://registry.npmjs.org/js2/0.3.17", + "0.3.18": "http://registry.npmjs.org/js2/0.3.18", + "0.3.19": "http://registry.npmjs.org/js2/0.3.19", + "0.3.20": "http://registry.npmjs.org/js2/0.3.20", + "0.3.21": "http://registry.npmjs.org/js2/0.3.21" + }, + "dist": { + "0.3.0pre1": { + "shasum": "63385328981659d5c64640966acb66c907e70902", + "tarball": "http://registry.npmjs.org/js2/-/js2-0.3.0pre1.tgz" + }, + "0.3.0pre2": { + "shasum": "8a37d09035ae91411ec12fb19ddc1f3d82228243", + "tarball": "http://registry.npmjs.org/js2/-/js2-0.3.0pre2.tgz" + }, + "0.3.0pre3": { + "shasum": "393d09238af7c21b328bb65466bb011911e24dad", + "tarball": "http://registry.npmjs.org/js2/-/js2-0.3.0pre3.tgz" + }, + "0.3.0pre4": { + "shasum": "7dce516f0d3a065292747d2b2e338d841dc2acf4", + "tarball": "http://registry.npmjs.org/js2/-/js2-0.3.0pre4.tgz" + }, + "0.3.0pre5": { + "shasum": "72b104a40d3a446805a7a42289e306d99e85f253", + "tarball": "http://registry.npmjs.org/js2/-/js2-0.3.0pre5.tgz" + }, + "0.3.4": { + "shasum": "168c542e2ca6d66952d879fdd194640d5250dd92", + "tarball": "http://registry.npmjs.org/js2/-/js2-0.3.4.tgz" + }, + "0.3.6": { + "shasum": "922eb808e6fc4b879c3990283ce4d62439d87cc9", + "tarball": "http://registry.npmjs.org/js2/-/js2-0.3.6.tgz" + }, + "0.3.7": { + "shasum": "96b6f298df8f2156cae650caf6c04b84b13bef5d", + "tarball": "http://registry.npmjs.org/js2/-/js2-0.3.7.tgz" + }, + "0.3.9": { + "shasum": "6b2d0ac4e4aa51a4304a2be6eb5d6188e30de5bf", + "tarball": "http://registry.npmjs.org/js2/-/js2-0.3.9.tgz" + }, + "0.3.13": { + "shasum": "f3ffb3d1ded02a141e48732f75513ff83493756f", + "tarball": "http://registry.npmjs.org/js2/-/js2-0.3.13.tgz" + }, + "0.3.15": { + "shasum": "1acf3e875cf6e199b43ecda79aa5bd41158b75ee", + "tarball": "http://registry.npmjs.org/js2/-/js2-0.3.15.tgz" + }, + "0.3.16": { + "shasum": "aad5a248be8f461d7d9f9211f5f9299376577873", + "tarball": "http://registry.npmjs.org/js2/-/js2-0.3.16.tgz" + }, + "0.3.17": { + "shasum": "837507e5aa3e85d9573363b2b1524257f7e409b5", + "tarball": "http://registry.npmjs.org/js2/-/js2-0.3.17.tgz" + }, + "0.3.18": { + "shasum": "d3f676eafe89bfa9cc4b9ab18bdc99dc248b2cca", + "tarball": "http://registry.npmjs.org/js2/-/js2-0.3.18.tgz" + }, + "0.3.19": { + "shasum": "740ae32da0e046110f029dd504b01a10d0142233", + "tarball": "http://registry.npmjs.org/js2/-/js2-0.3.19.tgz" + }, + "0.3.20": { + "shasum": "1bbe77e464b4acc692dbd2c1a4f46257a036cd77", + "tarball": "http://registry.npmjs.org/js2/-/js2-0.3.20.tgz" + }, + "0.3.21": { + "shasum": "2291d02b8bdf15999d3cd9a3a69d158dfe0e47e4", + "tarball": "http://registry.npmjs.org/js2/-/js2-0.3.21.tgz" + } + }, + "url": "http://registry.npmjs.org/js2/" + }, + "js2bash": { + "name": "js2bash", + "description": "Use JavaScript data in the bash", + "dist-tags": { + "latest": "0.1.0alpha" + }, + "maintainers": [ + { + "name": "akidee", + "email": "mail@akidee.de" + } + ], + "time": { + "modified": "2011-10-30T13:20:09.597Z", + "created": "2011-10-30T13:20:07.382Z", + "0.1.0alpha": "2011-10-30T13:20:09.597Z" + }, + "author": { + "name": "Andreas Kalsch", + "email": "mail@akidee.de", + "url": "http://akidee.de/" + }, + "versions": { + "0.1.0alpha": "http://registry.npmjs.org/js2bash/0.1.0alpha" + }, + "dist": { + "0.1.0alpha": { + "shasum": "af785cc5911fc1130ddccb1e60f9ca3190a7ec97", + "tarball": "http://registry.npmjs.org/js2bash/-/js2bash-0.1.0alpha.tgz" + } + }, + "keywords": [ + "bash", + "data", + "config", + "sh", + "shell", + "convert" + ], + "url": "http://registry.npmjs.org/js2bash/" + }, + "js2coffee": { + "name": "js2coffee", + "description": "JavaScript to CoffeeScript compiler", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "rstacruz", + "email": "rico@ricostacruz.com" + } + ], + "time": { + "modified": "2011-07-09T02:07:25.376Z", + "created": "2011-06-03T10:36:55.475Z", + "0.0.1": "2011-06-03T10:36:57.564Z", + "0.0.2": "2011-06-03T23:56:30.589Z", + "0.0.3": "2011-06-05T04:17:33.094Z", + "0.0.4": "2011-06-08T21:11:08.464Z", + "0.0.5": "2011-06-09T20:22:06.774Z", + "0.1.0": "2011-06-12T18:46:28.863Z", + "0.1.1": "2011-07-09T02:07:25.376Z" + }, + "author": { + "name": "Rico Sta. Cruz" + }, + "repository": { + "type": "git", + "url": "git://github.com/rstacruz/js2coffee.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/js2coffee/0.0.1", + "0.0.2": "http://registry.npmjs.org/js2coffee/0.0.2", + "0.0.3": "http://registry.npmjs.org/js2coffee/0.0.3", + "0.0.4": "http://registry.npmjs.org/js2coffee/0.0.4", + "0.0.5": "http://registry.npmjs.org/js2coffee/0.0.5", + "0.1.0": "http://registry.npmjs.org/js2coffee/0.1.0", + "0.1.1": "http://registry.npmjs.org/js2coffee/0.1.1" + }, + "dist": { + "0.0.1": { + "shasum": "623dbeb1cf846be94a9235eab422574942ebf324", + "tarball": "http://registry.npmjs.org/js2coffee/-/js2coffee-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "b6491dd637da8faf7a3037ecc5aca857504f2953", + "tarball": "http://registry.npmjs.org/js2coffee/-/js2coffee-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "4bcfc4fec8e6360ee263c2a476fa1144c1e93e7c", + "tarball": "http://registry.npmjs.org/js2coffee/-/js2coffee-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "027490d4c99899c73e985ed2bb2e808ab7269f9b", + "tarball": "http://registry.npmjs.org/js2coffee/-/js2coffee-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "9e5790117346a33e4c7301709448c8641f755b38", + "tarball": "http://registry.npmjs.org/js2coffee/-/js2coffee-0.0.5.tgz" + }, + "0.1.0": { + "shasum": "97cf7732b24f901d8c31bec8bba32ac407a6ac90", + "tarball": "http://registry.npmjs.org/js2coffee/-/js2coffee-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "63bdb56fcf6e3e70e7e9297e8747b7984eb05d24", + "tarball": "http://registry.npmjs.org/js2coffee/-/js2coffee-0.1.1.tgz" + } + }, + "keywords": [ + "javascript", + "coffeescript", + "language", + "compiler" + ], + "url": "http://registry.npmjs.org/js2coffee/" + }, + "jsapp": { + "name": "jsapp", + "description": "A command line interface to jsapp.us", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "matthewfl", + "email": "matthew@matthewfl.com" + } + ], + "time": { + "modified": "2011-01-03T19:22:05.916Z", + "created": "2011-01-03T19:22:05.204Z", + "0.0.1": "2011-01-03T19:22:05.916Z" + }, + "author": { + "name": "Matthew Francis-Landau", + "email": "matthew@matthewfl.com", + "url": "http://matthewfl.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jsapp/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "27f0edab55a4b32b50950fc93d394af6ab1c2efc", + "tarball": "http://registry.npmjs.org/jsapp/-/jsapp-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/jsapp/" + }, + "jscc-node": { + "name": "jscc-node", + "description": "JSCC assembling a complete compiler for nodejs", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "badlee", + "email": "badlee.oshimin@gmail.com" + } + ], + "time": { + "modified": "2011-05-19T16:09:19.120Z", + "created": "2011-05-19T16:09:18.298Z", + "0.3.0": "2011-05-19T16:09:19.120Z" + }, + "author": { + "name": "Badlee Oshimin", + "email": "badlee.oshimin@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/badlee/JSCC-NODE.git" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/jscc-node/0.3.0" + }, + "dist": { + "0.3.0": { + "tarball": "http://registry.npmjs.org/jscc-node/-/jscc-node-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/jscc-node/" + }, + "jscex-async": { + "name": "jscex-async", + "description": "", + "dist-tags": { + "latest": "0.5.0" + }, + "readme": null, + "maintainers": [ + { + "name": "jeffz", + "email": "jeffz@live.com" + } + ], + "time": { + "modified": "2011-12-11T08:39:38.454Z", + "created": "2011-12-11T08:39:33.931Z", + "0.5.0": "2011-12-11T08:39:38.454Z" + }, + "author": { + "name": "Jeffrey Zhao", + "email": "jeffz@live.com", + "url": "http://zhaojie.me/" + }, + "versions": { + "0.5.0": "http://registry.npmjs.org/jscex-async/0.5.0" + }, + "dist": { + "0.5.0": { + "shasum": "b94a81c6a1147188b0231c581af1119872a0030e", + "tarball": "http://registry.npmjs.org/jscex-async/-/jscex-async-0.5.0.tgz" + } + }, + "url": "http://registry.npmjs.org/jscex-async/" + }, + "jscex-jit": { + "name": "jscex-jit", + "description": "The JIT compiler for Jscex, providing the monadic code transformation ability without losing traditional JavaScript programming experience.", + "dist-tags": { + "latest": "0.5.0" + }, + "readme": null, + "maintainers": [ + { + "name": "jeffz", + "email": "jeffz@live.com" + } + ], + "time": { + "modified": "2011-12-10T16:55:44.511Z", + "created": "2011-12-10T16:55:39.552Z", + "0.5.0": "2011-12-10T16:55:44.511Z" + }, + "author": { + "name": "Jeffrey Zhao", + "email": "jeffz@live.com", + "url": "http://zhaojie.me/" + }, + "versions": { + "0.5.0": "http://registry.npmjs.org/jscex-jit/0.5.0" + }, + "dist": { + "0.5.0": { + "shasum": "72f05ce0cfc3011b9c63bb24db548510065cac40", + "tarball": "http://registry.npmjs.org/jscex-jit/-/jscex-jit-0.5.0.tgz" + } + }, + "url": "http://registry.npmjs.org/jscex-jit/" + }, + "jscheckstyle": { + "name": "jscheckstyle", + "description": "Static analysis tool for javascript - calculates cyclomatic complexity, amongst other things", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "csausdev", + "email": "gareth.jones@sensis.com.au" + } + ], + "time": { + "modified": "2011-10-20T03:13:04.897Z", + "created": "2011-09-15T12:29:11.352Z", + "0.0.1": "2011-09-15T12:29:17.631Z", + "0.0.2": "2011-09-19T07:03:00.820Z", + "0.0.3": "2011-10-20T01:00:01.003Z", + "0.0.4": "2011-10-20T03:13:04.897Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/csausdev/jscheckstyle.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jscheckstyle/0.0.1", + "0.0.2": "http://registry.npmjs.org/jscheckstyle/0.0.2", + "0.0.3": "http://registry.npmjs.org/jscheckstyle/0.0.3", + "0.0.4": "http://registry.npmjs.org/jscheckstyle/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "89d06217608fa3639556f83e2338eb460309f897", + "tarball": "http://registry.npmjs.org/jscheckstyle/-/jscheckstyle-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "7be761dafa20f13fc257313f77a0bcd4db29dbda", + "tarball": "http://registry.npmjs.org/jscheckstyle/-/jscheckstyle-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "39b29bac6ed3103bce59f851db63483490b02db8", + "tarball": "http://registry.npmjs.org/jscheckstyle/-/jscheckstyle-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "7886712c66887bcec1ac6dfab058a9d8b8c8746e", + "tarball": "http://registry.npmjs.org/jscheckstyle/-/jscheckstyle-0.0.4.tgz" + } + }, + "keywords": [ + "static", + "analysis", + "cyclomatic", + "complexity" + ], + "url": "http://registry.npmjs.org/jscheckstyle/" + }, + "jsclass": { + "name": "jsclass", + "description": "Portable class library for JavaScript", + "dist-tags": { + "latest": "3.0.5" + }, + "maintainers": [ + { + "name": "jcoglan", + "email": "jcoglan@gmail.com" + } + ], + "time": { + "modified": "2011-12-06T00:14:38.997Z", + "created": "2011-06-19T17:40:25.481Z", + "3.0.1": "2011-06-19T17:40:26.089Z", + "3.0.2": "2011-07-16T12:05:39.725Z", + "3.0.3": "2011-08-15T09:08:28.703Z", + "3.0.4": "2011-08-18T21:20:05.923Z", + "3.0.5": "2011-12-06T00:14:38.997Z" + }, + "author": { + "name": "James Coglan", + "email": "jcoglan@gmail.com", + "url": "http://jcoglan.com/" + }, + "versions": { + "3.0.1": "http://registry.npmjs.org/jsclass/3.0.1", + "3.0.2": "http://registry.npmjs.org/jsclass/3.0.2", + "3.0.3": "http://registry.npmjs.org/jsclass/3.0.3", + "3.0.4": "http://registry.npmjs.org/jsclass/3.0.4", + "3.0.5": "http://registry.npmjs.org/jsclass/3.0.5" + }, + "dist": { + "3.0.1": { + "shasum": "ab799c4c86c4b137734962b7257363e9cc14857e", + "tarball": "http://registry.npmjs.org/jsclass/-/jsclass-3.0.1.tgz" + }, + "3.0.2": { + "shasum": "2dd27b72b4d7cf106e8a98a74d1ed18aa490ca8c", + "tarball": "http://registry.npmjs.org/jsclass/-/jsclass-3.0.2.tgz" + }, + "3.0.3": { + "shasum": "fc9e7734855677379967e3aa4a83e2d4e504cd75", + "tarball": "http://registry.npmjs.org/jsclass/-/jsclass-3.0.3.tgz" + }, + "3.0.4": { + "shasum": "464a6b2b17c0d9c6fd70ca23205841034935d59f", + "tarball": "http://registry.npmjs.org/jsclass/-/jsclass-3.0.4.tgz" + }, + "3.0.5": { + "shasum": "af9a4f92cc42ac1337921d84bffb6a28586d7a10", + "tarball": "http://registry.npmjs.org/jsclass/-/jsclass-3.0.5.tgz" + } + }, + "keywords": [ + "oop", + "data-structures", + "framework", + "ruby" + ], + "url": "http://registry.npmjs.org/jsclass/" + }, + "jsconfig": { + "name": "jsconfig", + "description": "async configuration loader with cli support", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "dodo", + "email": "dodo@blacksec.org" + } + ], + "time": { + "modified": "2011-12-05T12:17:58.580Z", + "created": "2011-09-09T18:08:21.851Z", + "0.0.1": "2011-09-09T18:08:22.486Z", + "0.1.0": "2011-10-29T20:35:11.535Z", + "0.1.1": "2011-12-05T12:17:58.580Z" + }, + "author": { + "name": "dodo", + "url": "https://github.com/dodo" + }, + "repository": { + "type": "git", + "url": "git://github.com/dodo/node-jsconfig.git" + }, + "users": { + "astro": true + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jsconfig/0.0.1", + "0.1.0": "http://registry.npmjs.org/jsconfig/0.1.0", + "0.1.1": "http://registry.npmjs.org/jsconfig/0.1.1" + }, + "dist": { + "0.0.1": { + "shasum": "2666524d6a788f7388c6e51eaadd5212114c351c", + "tarball": "http://registry.npmjs.org/jsconfig/-/jsconfig-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "e282b06de7803c5ded20ac0f76ee949c78217f0b", + "tarball": "http://registry.npmjs.org/jsconfig/-/jsconfig-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "191ce36fc71d05cceeda010461a54adcc53b715a", + "tarball": "http://registry.npmjs.org/jsconfig/-/jsconfig-0.1.1.tgz" + } + }, + "keywords": [ + "configure", + "configuration", + "async" + ], + "url": "http://registry.npmjs.org/jsconfig/" + }, + "jscssp": { + "name": "jscssp", + "description": "JSCSSP is a CSS parser. It parses a string containing CSS styles and outputs a CSS Object Model.", + "dist-tags": { + "latest": "0.5.0" + }, + "maintainers": [ + { + "name": "NV", + "email": "me@elv1s.ru" + } + ], + "author": { + "name": "Daniel Glazman" + }, + "versions": { + "0.5.0": "http://registry.npmjs.org/jscssp/0.5.0" + }, + "dist": { + "0.5.0": { + "tarball": "http://packages:5984/jscssp/-/jscssp-0.5.0.tgz" + } + }, + "keywords": [ + "CSS", + "parser" + ], + "url": "http://registry.npmjs.org/jscssp/" + }, + "jsdata": { + "name": "jsdata", + "description": "A simple JSON file database.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "iwillwen", + "email": "i@iwillwen.com" + } + ], + "time": { + "modified": "2011-07-26T06:48:44.560Z", + "created": "2011-07-26T06:31:43.453Z", + "0.0.1": "2011-07-26T06:31:44.981Z", + "0.0.2": "2011-07-26T06:48:44.560Z" + }, + "author": { + "name": "Will Wen Gunn", + "email": "i@iwillwen.com", + "url": "http://www.iwillwen.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/iwillwen/JSData.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jsdata/0.0.1", + "0.0.2": "http://registry.npmjs.org/jsdata/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "1ce8adcae9bd632ecdb33fc37532b0f9b85ca6a1", + "tarball": "http://registry.npmjs.org/jsdata/-/jsdata-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "89b71fb4d015044b48ab3380dddb3da4324430a7", + "tarball": "http://registry.npmjs.org/jsdata/-/jsdata-0.0.2.tgz" + } + }, + "keywords": [ + "database", + "json", + "file", + "simple" + ], + "url": "http://registry.npmjs.org/jsdata/" + }, + "jsDAV": { + "name": "jsDAV", + "description": "jsDAV allows you to easily add WebDAV support to a NodeJS application. jsDAV is meant to cover the entire standard, and attempts to allow integration using an easy to understand API.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "mikedeboer", + "email": "info@mikedeboer.nl" + } + ], + "author": { + "name": "Mike de Boer", + "email": "info@mikedeboer.nl" + }, + "repository": { + "type": "git", + "url": "git://github.com/mikedeboer/jsDAV.git" + }, + "time": { + "modified": "2011-03-16T10:59:54.590Z", + "created": "2011-03-16T10:56:29.226Z", + "0.1.0": "2011-03-16T10:56:29.227Z", + "0.1.1": "2011-03-16T10:56:29.227Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/jsDAV/0.1.0", + "0.1.1": "http://registry.npmjs.org/jsDAV/0.1.1" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/jsDAV/-/jsDAV-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "a78b2164f82e76b6194b6c278087309cfd9a807e", + "tarball": "http://registry.npmjs.org/jsDAV/-/jsDAV-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/jsDAV/" + }, + "jsdeferred": { + "name": "jsdeferred", + "description": "Asynchronous library in JavaScript. Standalone and Compact.", + "dist-tags": { + "latest": "0.4.0" + }, + "maintainers": [ + { + "name": "cho45", + "email": "cho45@lowreal.net" + } + ], + "author": { + "name": "cho45", + "email": "cho45@lowreal.net", + "url": "http://www.lowreal.net/" + }, + "repository": { + "url": "git://github.com/cho45/jsdeferred.git", + "type": "git" + }, + "time": { + "modified": "2011-04-13T06:42:32.401Z", + "created": "2011-04-13T06:42:32.401Z", + "0.3.4": "2011-04-13T06:42:32.401Z", + "0.4.0": "2011-04-13T06:42:32.401Z" + }, + "versions": { + "0.3.4": "http://registry.npmjs.org/jsdeferred/0.3.4", + "0.4.0": "http://registry.npmjs.org/jsdeferred/0.4.0" + }, + "dist": { + "0.3.4": { + "tarball": "http://packages:5984/jsdeferred/-/jsdeferred-0.3.4.tgz" + }, + "0.4.0": { + "tarball": "http://registry.npmjs.org/jsdeferred/-/jsdeferred@0.4.0.tgz" + } + }, + "url": "http://registry.npmjs.org/jsdeferred/" + }, + "jsdoc": { + "name": "jsdoc", + "description": "JSDoc Toolkit", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "kzh", + "email": "kaleb@hornsby.ws" + } + ], + "time": { + "modified": "2011-09-19T20:52:42.931Z", + "created": "2011-09-19T20:52:42.664Z", + "0.0.0": "2011-09-19T20:52:42.931Z" + }, + "author": { + "name": "Kaleb Hornsby", + "email": "kaleb@hornsby.ws", + "url": "kaleb.hornsby.ws" + }, + "repository": { + "type": "git", + "url": "git://github.com/kaleb/node-jsdoc-toolkit.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/jsdoc/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "111ea12dd4c0de1c618056d2be647ec3239a2fbe", + "tarball": "http://registry.npmjs.org/jsdoc/-/jsdoc-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/jsdoc/" + }, + "jsdog": { + "name": "jsdog", + "description": "Simple JSDoc documentation generator", + "dist-tags": { + "latest": "0.6.7" + }, + "maintainers": [ + { + "name": "psema4", + "email": "psema4@gmail.com" + } + ], + "time": { + "modified": "2011-06-02T15:16:28.452Z", + "created": "2011-05-20T20:19:52.102Z", + "0.6.3": "2011-05-20T20:19:52.282Z", + "0.6.4": "2011-06-01T15:31:09.621Z", + "0.6.5": "2011-06-01T21:57:45.909Z", + "0.6.6": "2011-06-02T03:06:33.169Z", + "0.6.7": "2011-06-02T15:16:28.452Z" + }, + "author": { + "name": "Scott Elcomb", + "email": "psema4@gmail.com", + "url": "http://www.psema4.com/" + }, + "repository": { + "url": "git@github.com:psema4/JSDog.git" + }, + "versions": { + "0.6.3": "http://registry.npmjs.org/jsdog/0.6.3", + "0.6.4": "http://registry.npmjs.org/jsdog/0.6.4", + "0.6.5": "http://registry.npmjs.org/jsdog/0.6.5", + "0.6.6": "http://registry.npmjs.org/jsdog/0.6.6", + "0.6.7": "http://registry.npmjs.org/jsdog/0.6.7" + }, + "dist": { + "0.6.3": { + "shasum": "d88f10b563185c7a6970e6372c3735eb90f2a67f", + "tarball": "http://registry.npmjs.org/jsdog/-/jsdog-0.6.3.tgz" + }, + "0.6.4": { + "shasum": "3898be8cdabea72faf1ea03f52814b3148f318ba", + "tarball": "http://registry.npmjs.org/jsdog/-/jsdog-0.6.4.tgz" + }, + "0.6.5": { + "shasum": "107108ee07f2f9ea3bdc6300e8f6671a5744761c", + "tarball": "http://registry.npmjs.org/jsdog/-/jsdog-0.6.5.tgz" + }, + "0.6.6": { + "shasum": "bc71ff0d99aef0465e17d2f3c6d0fbd492abf3eb", + "tarball": "http://registry.npmjs.org/jsdog/-/jsdog-0.6.6.tgz" + }, + "0.6.7": { + "shasum": "61981fbe17534756befaecd2f7c28c60bbc8bc01", + "tarball": "http://registry.npmjs.org/jsdog/-/jsdog-0.6.7.tgz" + } + }, + "keywords": [ + "documentation", + "docs", + "jsdoc" + ], + "url": "http://registry.npmjs.org/jsdog/" + }, + "jsdom": { + "name": "jsdom", + "description": "A javascript implementation of the W3C DOM", + "dist-tags": { + "latest": "0.2.10" + }, + "readme": "# jsdom\n\nCommonJS implementation of the DOM intended to be platform independent and as minimal/light as possible while completely adhering to the w3c DOM specifications.\n\nCurrently Implemented and w3c Compliant:\n\n - DOM Level 1 (html/svg/xml) \n - Browser (BOM) Augmentation (getElementsByClassName, getElementById, etc..)\n\n\n**Note**: Running the tests now requires [mjsunit.runner][]\n\nsee: [testlog][] for w3 test compliance\n\nsee: [plan][] for roadmap and thoughts about this project\n\nsee: [project site][] for additional information\n\n [project site]: http://www.jsdom.org\n [mjsunit.runner]: http://github.com/tmpvar/mjsunit.runner\n [testlog]: http://github.com/tmpvar/jsdom/blob/master/test/testlog.txt\n [plan]: http://github.com/tmpvar/jsdom/blob/master/PLAN.md\n ", + "maintainers": [ + { + "name": "tmpvar", + "email": "tmpvar@gmail.com" + } + ], + "time": { + "modified": "2011-11-21T03:29:08.202Z", + "created": "2011-11-21T03:09:04.421Z", + "0.0.1": "2011-11-21T03:09:05.477Z", + "0.1.2": "2011-11-21T03:09:53.766Z", + "0.1.4": "2011-11-21T03:10:38.441Z", + "0.1.5": "2011-11-21T03:11:18.142Z", + "0.1.6": "2011-11-21T03:11:57.872Z", + "0.1.7": "2011-11-21T03:12:37.152Z", + "0.1.8": "2011-11-21T03:13:15.555Z", + "0.1.9": "2011-11-21T03:13:55.435Z", + "0.1.10": "2011-11-21T03:14:37.965Z", + "0.1.11": "2011-11-21T03:15:12.565Z", + "0.1.12": "2011-11-21T03:15:46.441Z", + "0.1.13": "2011-11-21T03:16:22.598Z", + "0.1.15": "2011-11-21T03:16:57.935Z", + "0.1.16": "2011-11-21T03:17:31.089Z", + "0.1.17": "2011-11-21T03:18:04.410Z", + "0.1.18": "2011-11-21T03:18:37.311Z", + "0.1.19": "2011-11-21T03:19:10.313Z", + "0.1.20": "2011-11-21T03:19:43.587Z", + "0.1.21": "2011-11-21T03:20:17.251Z", + "0.1.22": "2011-11-21T03:20:51.248Z", + "0.1.23": "2011-11-21T03:21:28.854Z", + "0.2.0": "2011-11-21T03:22:02.086Z", + "0.2.1": "2011-11-21T03:22:20.006Z", + "0.2.2": "2011-11-21T03:22:39.637Z", + "0.2.3": "2011-11-21T03:23:02.172Z", + "0.2.4": "2011-11-21T03:23:25.921Z", + "0.2.5": "2011-11-21T03:27:21.095Z", + "0.2.6": "2011-11-21T03:27:44.349Z", + "0.2.7": "2011-11-21T03:28:04.973Z", + "0.2.8": "2011-11-21T03:28:25.916Z", + "0.2.9": "2011-11-21T03:28:47.572Z", + "0.2.10": "2011-11-21T03:29:08.202Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jsdom/0.0.1", + "0.1.2": "http://registry.npmjs.org/jsdom/0.1.2", + "0.1.4": "http://registry.npmjs.org/jsdom/0.1.4", + "0.1.5": "http://registry.npmjs.org/jsdom/0.1.5", + "0.1.6": "http://registry.npmjs.org/jsdom/0.1.6", + "0.1.7": "http://registry.npmjs.org/jsdom/0.1.7", + "0.1.8": "http://registry.npmjs.org/jsdom/0.1.8", + "0.1.9": "http://registry.npmjs.org/jsdom/0.1.9", + "0.1.10": "http://registry.npmjs.org/jsdom/0.1.10", + "0.1.11": "http://registry.npmjs.org/jsdom/0.1.11", + "0.1.12": "http://registry.npmjs.org/jsdom/0.1.12", + "0.1.13": "http://registry.npmjs.org/jsdom/0.1.13", + "0.1.15": "http://registry.npmjs.org/jsdom/0.1.15", + "0.1.16": "http://registry.npmjs.org/jsdom/0.1.16", + "0.1.17": "http://registry.npmjs.org/jsdom/0.1.17", + "0.1.18": "http://registry.npmjs.org/jsdom/0.1.18", + "0.1.19": "http://registry.npmjs.org/jsdom/0.1.19", + "0.1.20": "http://registry.npmjs.org/jsdom/0.1.20", + "0.1.21": "http://registry.npmjs.org/jsdom/0.1.21", + "0.1.22": "http://registry.npmjs.org/jsdom/0.1.22", + "0.1.23": "http://registry.npmjs.org/jsdom/0.1.23", + "0.2.0": "http://registry.npmjs.org/jsdom/0.2.0", + "0.2.1": "http://registry.npmjs.org/jsdom/0.2.1", + "0.2.2": "http://registry.npmjs.org/jsdom/0.2.2", + "0.2.3": "http://registry.npmjs.org/jsdom/0.2.3", + "0.2.4": "http://registry.npmjs.org/jsdom/0.2.4", + "0.2.5": "http://registry.npmjs.org/jsdom/0.2.5", + "0.2.6": "http://registry.npmjs.org/jsdom/0.2.6", + "0.2.7": "http://registry.npmjs.org/jsdom/0.2.7", + "0.2.8": "http://registry.npmjs.org/jsdom/0.2.8", + "0.2.9": "http://registry.npmjs.org/jsdom/0.2.9", + "0.2.10": "http://registry.npmjs.org/jsdom/0.2.10" + }, + "dist": { + "0.0.1": { + "shasum": "b270a7e2a79875d0dba3e9c59cea8cefb32f2ad1", + "tarball": "http://registry.npmjs.org/jsdom/-/jsdom-0.0.1.tgz" + }, + "0.1.2": { + "shasum": "5117bfe0e7962b3dd577931e5b7b335db030ced1", + "tarball": "http://registry.npmjs.org/jsdom/-/jsdom-0.1.2.tgz" + }, + "0.1.4": { + "shasum": "2c9ee02ea3ea2f0b4e387b1821ccf5424b31dca5", + "tarball": "http://registry.npmjs.org/jsdom/-/jsdom-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "5096c757e444016d77f02edb82864ec130b6d9a5", + "tarball": "http://registry.npmjs.org/jsdom/-/jsdom-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "40da4aa5eaa1d3652185f5372e610a2194fe5214", + "tarball": "http://registry.npmjs.org/jsdom/-/jsdom-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "b767b38cbae8226f3ca1e8c80860be11d5da0450", + "tarball": "http://registry.npmjs.org/jsdom/-/jsdom-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "4d79b47fc734ff30f7b3ef137f1fa76a622eddda", + "tarball": "http://registry.npmjs.org/jsdom/-/jsdom-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "90970ee0062390204b283033c53e41a60a549c00", + "tarball": "http://registry.npmjs.org/jsdom/-/jsdom-0.1.9.tgz" + }, + "0.1.10": { + "shasum": "c9b62e962e6ee72dc21cf0ba5989af99cdf73894", + "tarball": "http://registry.npmjs.org/jsdom/-/jsdom-0.1.10.tgz" + }, + "0.1.11": { + "shasum": "bc25e30aa7d5f01dec8279999ae2ce1f94585aa4", + "tarball": "http://registry.npmjs.org/jsdom/-/jsdom-0.1.11.tgz" + }, + "0.1.12": { + "shasum": "35c5a675ca6cf5b46b1805cfdbd6397584685d54", + "tarball": "http://registry.npmjs.org/jsdom/-/jsdom-0.1.12.tgz" + }, + "0.1.13": { + "shasum": "dc8348808ab1e6184e6ac19463a77136e5be01d3", + "tarball": "http://registry.npmjs.org/jsdom/-/jsdom-0.1.13.tgz" + }, + "0.1.15": { + "shasum": "ce04889fcc01fcd16c2a3ae43cb57b130e7329ed", + "tarball": "http://registry.npmjs.org/jsdom/-/jsdom-0.1.15.tgz" + }, + "0.1.16": { + "shasum": "7130725853437060820c4fecd3cee94bee80734f", + "tarball": "http://registry.npmjs.org/jsdom/-/jsdom-0.1.16.tgz" + }, + "0.1.17": { + "shasum": "0a56ed01b9801ac42b853e5796bf8359563a16b5", + "tarball": "http://registry.npmjs.org/jsdom/-/jsdom-0.1.17.tgz" + }, + "0.1.18": { + "shasum": "27c57f52dee9b5ba16709dde5ba178ca5dce053c", + "tarball": "http://registry.npmjs.org/jsdom/-/jsdom-0.1.18.tgz" + }, + "0.1.19": { + "shasum": "c4e73293362380ed49a3f2ba90d82604e934a51d", + "tarball": "http://registry.npmjs.org/jsdom/-/jsdom-0.1.19.tgz" + }, + "0.1.20": { + "shasum": "488049dbcb3f5c3ac7088d1a7e3742744f0a8b6f", + "tarball": "http://registry.npmjs.org/jsdom/-/jsdom-0.1.20.tgz" + }, + "0.1.21": { + "shasum": "95c1e9562e22ae55d6b526a2450ca30a2b3dbab4", + "tarball": "http://registry.npmjs.org/jsdom/-/jsdom-0.1.21.tgz" + }, + "0.1.22": { + "shasum": "4be2e7faa490562f5fffdab4290a626ea46d2a40", + "tarball": "http://registry.npmjs.org/jsdom/-/jsdom-0.1.22.tgz" + }, + "0.1.23": { + "shasum": "f866d0a1bb5fe4785bedb360f5e720197eb325ed", + "tarball": "http://registry.npmjs.org/jsdom/-/jsdom-0.1.23.tgz" + }, + "0.2.0": { + "shasum": "03b2ab99052b3171d9d010606c939513eaebc746", + "tarball": "http://registry.npmjs.org/jsdom/-/jsdom-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "b8b600610e4e46a9b323b5b7e049e3de959942e3", + "tarball": "http://registry.npmjs.org/jsdom/-/jsdom-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "0bcfbbf6c2547e07a714d67252a3cd3c6ff31a1e", + "tarball": "http://registry.npmjs.org/jsdom/-/jsdom-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "d162cb9cb32ae91be046622bb97f39b977b9b47b", + "tarball": "http://registry.npmjs.org/jsdom/-/jsdom-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "9072421fe9537f568ce837bc747e04cd716e59bb", + "tarball": "http://registry.npmjs.org/jsdom/-/jsdom-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "316a582966936326835cd2ec19f739c6262bf18a", + "tarball": "http://registry.npmjs.org/jsdom/-/jsdom-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "58c8c0143b2e41e0bf25d32f20ee333ed4adaa62", + "tarball": "http://registry.npmjs.org/jsdom/-/jsdom-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "85bf57dfa7d79ab01e8fdb1b05cda19cc608a2d3", + "tarball": "http://registry.npmjs.org/jsdom/-/jsdom-0.2.7.tgz" + }, + "0.2.8": { + "shasum": "527b41dbae1be8b52fae24d58ed7c24108145ff6", + "tarball": "http://registry.npmjs.org/jsdom/-/jsdom-0.2.8.tgz" + }, + "0.2.9": { + "shasum": "997104091dcdb0400d9792eb8a6e62175c29ea2c", + "tarball": "http://registry.npmjs.org/jsdom/-/jsdom-0.2.9.tgz" + }, + "0.2.10": { + "shasum": "445e36549318aea97f6cc59985cd1e2fc885537f", + "tarball": "http://registry.npmjs.org/jsdom/-/jsdom-0.2.10.tgz" + } + }, + "keywords": [ + "dom", + "w3c", + "javascript" + ], + "url": "http://registry.npmjs.org/jsdom/" + }, + "jsdom-nocontextifiy": { + "name": "jsdom-nocontextifiy", + "description": "A javascript implementation of the W3C DOM", + "dist-tags": { + "latest": "0.2.10" + }, + "readme": "# jsdom\n\nA javascript implementation of the W3C DOM.\n\n## Install\n\n npm install jsdom\n\nor\n\n git clone http://github.com/tmpvar/jsdom.git\n cd jsdom\n npm link\n\n## Human contact\n\nsee: [mailing list][]\n\n [mailing list]: http://groups.google.com/group/jsdom\n\n\n\n\n## Easymode\n\nBootstrapping a DOM is generally a difficult process involving many error prone steps. We didn't want jsdom to fall into the same trap and that is why a new method, `jsdom.env()`, has been added in jsdom 0.2.0 which should make everyone's lives easier.\n\nwith URL\n\n // Count all of the links from the nodejs build page\n var jsdom = require(\"jsdom\");\n\n jsdom.env(\"http://nodejs.org/dist/\", [\n 'http://code.jquery.com/jquery-1.5.min.js'\n ],\n function(errors, window) {\n console.log(\"there have been\", window.$(\"a\").length, \"nodejs releases!\");\n });\n\nor with raw html\n\n // Run some jQuery on a html fragment\n var jsdom = require('jsdom');\n\n jsdom.env('

JSDOM\\'s Homepage

', [\n 'http://code.jquery.com/jquery-1.5.min.js'\n ],\n function(errors, window) {\n console.log(\"contents of a.the-link:\", window.$(\"a.the-link\").text());\n });\n\n\nor with a configuration object\n\n // Print all of the news items on hackernews\n var jsdom = require('jsdom');\n\n jsdom.env({\n html: 'http://news.ycombinator.com/',\n scripts: [\n 'http://code.jquery.com/jquery-1.5.min.js'\n ],\n done: function(errors, window) {\n var $ = window.$;\n console.log('HN Links');\n $('td.title:not(:last) a').each(function() {\n console.log(' -', $(this).text());\n });\n }\n });\n\nor with raw javascript source\n\n // Print all of the news items on hackernews\n var jsdom = require('jsdom');\n var fs = require('fs');\n var jquery = fs.readFileSync(\"./jquery-1.6.2.min.js\").toString();\n\n jsdom.env({\n html: 'http://news.ycombinator.com/',\n src: [\n jquery\n ],\n done: function(errors, window) {\n var $ = window.$;\n console.log('HN Links');\n $('td.title:not(:last) a').each(function() {\n console.log(' -', $(this).text());\n });\n }\n });\n\n### How it works\n `jsdom.env` is built for ease of use, which is rare in the world of the DOM! Since the web has some absolutely horrible javascript on it, as of jsdom 0.2.0 `jsdom.env` will not process external resources (scripts, images, etc). If you want to process the javascript use one of the methods below (`jsdom.jsdom` or `jsdom.jQueryify`)\n\n jsdom.env(html, [scripts], [config], callback)\n\n - `html` (**required**)\n May be a url, html fragment, or file\n\n - `scripts` (**optional**)\n May contain files or urls\n\n - `callback` (**required**)\n Takes 2 arguments:\n - `errors` : array of errors\n - `window` : a brand new window\n\n _example:_ jsdom.env(html, function(`errors`, `window`) {})\n\n\nIf you would like to specify a configuration object\n\n jsdom.env({ /* config */ })\n\n - config.html : see `html` above\n - config.scripts : see `scripts` above\n - config.src : An array of javascript strings that will be evaluated against the resulting document. Similar to `scripts`, but it accepts javascript instead of paths/urls.\n - config.done : see `callback` above\n - config.document :\n - referer : the new document will have this referer\n - cookie : manually set a cookie value i.e. `'key=value; expires=Wed, Sep 21 2011 12:00:00 GMT; path=/'`\n - config.features : see `Flexibility` section below. **Note**: the default feature set for jsdom.env does _not_ include fetching remote javascript and executing it. This is something that you will need to **carefully** enable yourself.\n\n## For the hardcore\n\nIf you want to spawn a document/window and specify all sorts of options this is the section for you. This section covers the `jsdom.jsdom` method:\n\n var jsdom = require(\"jsdom\").jsdom,\n doc = jsdom(markup, level, options),\n window = doc.createWindow();\n\n - `markup` is an html/xml document to be parsed. You can also pass `null` or an undefined value to get a basic document with empty head and body tags. Document fragments are also supported (including `\"\"`), and will behave as sanely as possible (eg. the resulting document will lack the `head`, `body` and `documentElement` properties if the corresponding elements aren't included).\n - `level` is `null` (which means level3) by default, but you can pass another level if you'd like.\n\n\n var jsdom = require('jsdom'),\n doc = jsdom.jsdom('', jsdom.dom.level1.core)\n\n - `options` see the **Flexibility** section below\n\n### Flexibility\n\nOne of the goals of jsdom is to be as minimal and light as possible. This section details how\nsomeone can change the behavior of `Document`s on the fly. These features are baked into\nthe `DOMImplementation` that every `Document` has, and may be tweaked in two ways:\n\n1. When you create a new `Document` using the jsdom builder (`require('jsdom').jsdom()`)\n\n var jsdom = require('jsdom').jsdom,\n doc = jsdom(\"\", null, {\n features: {\n FetchExternalResources : ['img']\n }\n });\n\n Do note, that this will only affect the document that is currently being created. All other documents\nwill use the defaults specified below (see: Default Features)\n\n2. Previous to creating any documents you can modify the defaults for all future documents\n\n require('jsdom').defaultDocumentFeatures = {\n FetchExternalResources : ['script'],\n ProcessExternalResources : false,\n MutationEvents : false,\n QuerySelector : false\n }\n\n\n\n#### Default Features\n\nDefault features are extremely important for jsdom as they lower the configuration requirement and present developers a set of consistent default behaviors. The following sections detail the available features, their defaults, and the values that jsdom uses.\n\n\n`FetchExternalResources`\n_Default_: ['script']\n_Allowed_: ['script', 'img', 'css', 'frame', 'link'] or false\n\nEnables/Disables fetching files over the filesystem/http\n\n`ProcessExternalResources`\n_default_: ['script']\n_allowed_: ['script'] or false\n\nDisabling this will disable script execution (currently only javascript).\n\n`MutationEvents`\n_default_: '2.0'\n_allowed_ : '2.0' or false\n\nInitially enabled to be up to spec. Disable this if you do not need mutation events and want jsdom to be a bit more efficient.\n\n**Note**: `ProcessExternalResources` requires this to be enabled\n\n`QuerySelector`\n_default_ : false\n_allowed_ : true\n\nThis feature is backed by [sizzle][] but currently causes problems with some libraries. Enable this if you want `document.querySelector` and friends, but be aware that many libraries feature detect for this, and it may cause you a bit of trouble.\n\n[sizzle]:http://sizzlejs.com/\n\n# More Examples\n\n## Creating a document-less window\n\n var jsdom = require(\"jsdom\"),\n window = jsdom.createWindow();\n\n console.log(window.document);\n // output: undefined\n\n## Creating a document\n var jsdom = require(\"jsdom\"),\n doc = new (jsdom.dom.level1.core.Document)();\n console.log(doc.nodeName);\n // outputs: #document\n\n## Creating a browser-like BOM/DOM/Window\n\n var jsdom = require(\"./lib/jsdom\").jsdom,\n document = jsdom(\"hello world\"),\n window = document.createWindow();\n\n console.log(window.document.innerHTML);\n // output: 'hello world'\n\n console.log(window.innerWidth)\n // output: 1024\n\n console.log(typeof window.document.getElementsByClassName);\n // outputs: function\n\n\n## jQueryify\n\n var jsdom = require(\"jsdom\"),\n window = jsdom.jsdom().createWindow();\n\n jsdom.jQueryify(window, 'http://code.jquery.com/jquery-1.4.2.min.js' , function() {\n window.$('body').append('
Hello World, It works
');\n console.log(window.$('.testing').text());\n });\n\n# Test Compliance:\n\n level1/core 531/531 100%\n level1/html 238/238 100%\n level1/svg 527/527 100%\n level2/core 283/283 100%\n level2/html 687/687 100%\n level2/style 4/4 100%\n level2/extra 4/4 100%\n level3/xpath 93/93 100%\n window/index 5/5 100%\n window/script 8/8 100%\n window/frame 14/14 100%\n sizzle/index 12/15 80%\n jsdom/index 63/63 100%\n --------------------------------------\n TOTALS: 3/2472 failed; 99% success\n TIME: 16730ms\n\n## Running the tests\n\nFirst you'll want to `npm install -g nodeunit` then `npm install --dev`\n\nUsing `test/runner` you can slice and dice which tests your want to run from different levels. Usage is as follows:\n\n test/runner --help\n Run the jsdom test suite\n\n Options:\n -s, --suites suites that you want to run. ie: -s level1/core,1/html,html [string]\n -f, --fail-fast stop on the first failed test\n -h, --help show the help\n -t, --tests choose the test cases to run. ie: -t jquery", + "maintainers": [ + { + "name": "pita", + "email": "petermartischka@googlemail.com" + } + ], + "time": { + "modified": "2011-12-04T15:54:05.970Z", + "created": "2011-12-04T15:54:03.817Z", + "0.2.10": "2011-12-04T15:54:05.970Z" + }, + "versions": { + "0.2.10": "http://registry.npmjs.org/jsdom-nocontextifiy/0.2.10" + }, + "dist": { + "0.2.10": { + "shasum": "440bbd5c1836b8f8ae75796a16b218f960397e46", + "tarball": "http://registry.npmjs.org/jsdom-nocontextifiy/-/jsdom-nocontextifiy-0.2.10.tgz" + } + }, + "keywords": [ + "dom", + "w3c", + "javascript" + ], + "url": "http://registry.npmjs.org/jsdom-nocontextifiy/" + }, + "jsDump": { + "name": "jsDump", + "description": "returns a string containing a human-readable representation of object", + "dist-tags": { + "latest": "1.1.0" + }, + "maintainers": [ + { + "name": "nv", + "email": "me@elv1s.ru" + } + ], + "time": { + "modified": "2011-10-14T15:58:08.378Z", + "created": "2011-02-27T16:54:31.116Z", + "1.0.0": "2011-02-27T16:54:31.709Z", + "1.1.0": "2011-08-20T10:13:24.358Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/NV/jsDump.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/jsDump/1.0.0", + "1.1.0": "http://registry.npmjs.org/jsDump/1.1.0" + }, + "dist": { + "1.0.0": { + "shasum": "7a1e1c01a07acd9591d5127148c511044f74a659", + "tarball": "http://registry.npmjs.org/jsDump/-/jsDump-1.0.0.tgz" + }, + "1.1.0": { + "shasum": "bf4e57f625316bad3e771986f6fe872657cd5c9c", + "tarball": "http://registry.npmjs.org/jsDump/-/jsDump-1.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/jsDump/" + }, + "jsftp": { + "name": "jsftp", + "description": "A sane FTP client implementation for NodeJS", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "sergi", + "email": "sergi.mansilla@gmail.com" + } + ], + "time": { + "modified": "2011-09-15T13:08:32.116Z", + "created": "2011-07-25T09:38:57.484Z", + "0.0.1": "2011-07-25T09:38:58.148Z", + "0.0.2": "2011-07-25T09:45:53.826Z", + "0.0.3": "2011-07-25T12:15:39.970Z", + "0.0.4": "2011-07-26T12:50:33.361Z", + "0.0.5": "2011-07-28T09:08:12.024Z", + "0.0.6": "2011-08-02T14:08:20.540Z", + "0.0.7": "2011-08-04T17:09:30.019Z", + "0.0.8": "2011-08-10T10:33:12.805Z", + "0.0.9": "2011-08-11T14:36:53.113Z", + "0.1.0": "2011-08-24T14:37:17.330Z", + "0.1.1": "2011-08-24T15:12:58.137Z", + "0.1.2": "2011-08-26T08:54:03.119Z", + "0.1.3": "2011-08-26T15:08:13.952Z", + "0.1.4": "2011-08-30T22:09:54.633Z", + "0.1.5": "2011-09-03T20:19:11.266Z", + "0.1.6": "2011-09-11T13:03:20.253Z", + "0.2.0": "2011-09-15T13:08:32.116Z" + }, + "author": { + "name": "Sergi Mansilla", + "email": "sergi.mansilla@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/sergi/jsftp.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jsftp/0.0.1", + "0.0.2": "http://registry.npmjs.org/jsftp/0.0.2", + "0.0.3": "http://registry.npmjs.org/jsftp/0.0.3", + "0.0.4": "http://registry.npmjs.org/jsftp/0.0.4", + "0.0.5": "http://registry.npmjs.org/jsftp/0.0.5", + "0.0.6": "http://registry.npmjs.org/jsftp/0.0.6", + "0.0.7": "http://registry.npmjs.org/jsftp/0.0.7", + "0.0.8": "http://registry.npmjs.org/jsftp/0.0.8", + "0.0.9": "http://registry.npmjs.org/jsftp/0.0.9", + "0.1.0": "http://registry.npmjs.org/jsftp/0.1.0", + "0.1.1": "http://registry.npmjs.org/jsftp/0.1.1", + "0.1.2": "http://registry.npmjs.org/jsftp/0.1.2", + "0.1.3": "http://registry.npmjs.org/jsftp/0.1.3", + "0.1.4": "http://registry.npmjs.org/jsftp/0.1.4", + "0.1.5": "http://registry.npmjs.org/jsftp/0.1.5", + "0.1.6": "http://registry.npmjs.org/jsftp/0.1.6", + "0.2.0": "http://registry.npmjs.org/jsftp/0.2.0" + }, + "dist": { + "0.0.1": { + "shasum": "c516b049be2ca8656d86112182e15f7c059e9f3d", + "tarball": "http://registry.npmjs.org/jsftp/-/jsftp-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "a112400a30b2bdacfb05728f83174dd60ffe6f1a", + "tarball": "http://registry.npmjs.org/jsftp/-/jsftp-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "d2ba134738f30e05156b5ae47aaa8ac93aa21b8d", + "tarball": "http://registry.npmjs.org/jsftp/-/jsftp-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "06ba68d58475bf785cc6d45baea48bf7851203c8", + "tarball": "http://registry.npmjs.org/jsftp/-/jsftp-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "2dc092581f4195e8a7576d56f029d630598616de", + "tarball": "http://registry.npmjs.org/jsftp/-/jsftp-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "51d12a76440fb0717a571911e26f425aa0e153b8", + "tarball": "http://registry.npmjs.org/jsftp/-/jsftp-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "e22831cfd8507cd401f52d4f13dd5f9fa24befde", + "tarball": "http://registry.npmjs.org/jsftp/-/jsftp-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "e6a039f7116531981d564ebc2d943cc3580dc7cf", + "tarball": "http://registry.npmjs.org/jsftp/-/jsftp-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "30d80013cb677c593004d0c863c7412a5bad1e04", + "tarball": "http://registry.npmjs.org/jsftp/-/jsftp-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "51af1dffb392ec83c0c878037666b1ccf2799668", + "tarball": "http://registry.npmjs.org/jsftp/-/jsftp-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "2c5c687714dfd099913b3988c3cad972a7b2b831", + "tarball": "http://registry.npmjs.org/jsftp/-/jsftp-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "f06f43d8eccd5e1ef25b064759a6a8fe52fe0996", + "tarball": "http://registry.npmjs.org/jsftp/-/jsftp-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "1a1338bb92e327196268b8a910a93351f9e0da4b", + "tarball": "http://registry.npmjs.org/jsftp/-/jsftp-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "d276c5a941117f3fc8c6b14e2ab210caa98756df", + "tarball": "http://registry.npmjs.org/jsftp/-/jsftp-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "903a91885232cf668302e204030581fde0d5c23a", + "tarball": "http://registry.npmjs.org/jsftp/-/jsftp-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "c3285cacf72e4037e4a1f7f8968c5f11de816f4a", + "tarball": "http://registry.npmjs.org/jsftp/-/jsftp-0.1.6.tgz" + }, + "0.2.0": { + "shasum": "feaf76dcf8ca29231cadaef31132438dc4ca3aee", + "tarball": "http://registry.npmjs.org/jsftp/-/jsftp-0.2.0.tgz" + } + }, + "keywords": [ + "ftp", + "streams", + "files", + "server", + "client", + "async" + ], + "url": "http://registry.npmjs.org/jsftp/" + }, + "jsgi": { + "name": "jsgi", + "dist-tags": { + "latest": "0.2.5" + }, + "maintainers": [ + { + "name": "nathan", + "email": "nrstott@gmail.com" + } + ], + "author": { + "name": "Kris Zyp" + }, + "time": { + "modified": "2011-11-15T15:25:21.249Z", + "created": "2011-06-08T15:45:00.553Z", + "0.0.1": "2011-06-08T15:45:00.553Z", + "0.2.2": "2011-06-08T15:45:00.553Z", + "0.2.4ssl": "2011-06-08T15:45:00.553Z", + "0.2.5": "2011-08-12T21:05:53.603Z" + }, + "description": "JSGI middleware server for NodeJS", + "users": { + "nathan": true + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jsgi/0.0.1", + "0.2.2": "http://registry.npmjs.org/jsgi/0.2.2", + "0.2.4ssl": "http://registry.npmjs.org/jsgi/0.2.4ssl", + "0.2.5": "http://registry.npmjs.org/jsgi/0.2.5" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/jsgi/-/jsgi-0.0.1.tgz" + }, + "0.2.2": { + "tarball": "http://registry.npmjs.org/jsgi/-/jsgi-0.2.2.tgz" + }, + "0.2.4ssl": { + "shasum": "000ac6607f536423332a698175a9641d6e230d87", + "tarball": "http://registry.npmjs.org/jsgi/-/jsgi-0.2.4ssl.tgz" + }, + "0.2.5": { + "shasum": "47cda6c8681f8c5e318b01df747727219eaaf4db", + "tarball": "http://registry.npmjs.org/jsgi/-/jsgi-0.2.5.tgz" + } + }, + "url": "http://registry.npmjs.org/jsgi/" + }, + "jsgi-node": { + "name": "jsgi-node", + "version": "0.2.5", + "directories": { + "lib": "./lib" + }, + "main": "./lib/jsgi-node", + "author": "Kris Zyp", + "maintainers": [ + { + "name": "Kris Zyp", + "email": "kriszyp@gmail.com" + } + ], + "url": "http://packages.dojofoundation.org/jsgi-node", + "location": "http://packages.dojofoundation.org/jsgi-node", + "time": { + "modified": "2011-07-01T15:19:12.789Z", + "created": "2011-07-01T15:19:12.789Z" + }, + "versions": {}, + "dist": {} + }, + "jsgrep": { + "name": "jsgrep", + "description": "JQuery CSS selectors to grep HTML documents", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "sinjax", + "email": "sinjax@gmail.com" + } + ], + "time": { + "modified": "2011-08-19T08:43:43.229Z", + "created": "2011-03-21T19:22:15.693Z", + "0.1.0": "2011-03-21T19:22:16.045Z", + "0.2.0": "2011-08-19T07:56:53.375Z", + "0.3.0": "2011-08-19T08:43:43.229Z" + }, + "author": { + "name": "Sina Samangooei", + "email": "sinjax@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/sinjax/jsgrep.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/jsgrep/0.1.0", + "0.2.0": "http://registry.npmjs.org/jsgrep/0.2.0", + "0.3.0": "http://registry.npmjs.org/jsgrep/0.3.0" + }, + "dist": { + "0.1.0": { + "shasum": "389b6320a5317b66e3301ad7baf6e129c8487ba4", + "tarball": "http://registry.npmjs.org/jsgrep/-/jsgrep-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "03afc25653fc47e2ba2339550eddd48764f15137", + "tarball": "http://registry.npmjs.org/jsgrep/-/jsgrep-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "068068d72f961461106fa0cdb7690a087f5a403c", + "tarball": "http://registry.npmjs.org/jsgrep/-/jsgrep-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/jsgrep/" + }, + "jshelpers": { + "name": "jshelpers", + "description": "Helpers for JavaScript", + "dist-tags": { + "latest": "1.0.7" + }, + "maintainers": [ + { + "name": "catchen", + "email": "cathsfz@gmail.com" + } + ], + "time": { + "modified": "2011-11-14T07:18:18.570Z", + "created": "2011-06-24T15:20:46.807Z", + "0.9.9": "2011-06-24T15:20:48.716Z", + "1.0.0": "2011-07-11T13:18:05.324Z", + "1.0.1": "2011-07-14T03:44:38.193Z", + "1.0.2": "2011-07-15T04:01:18.287Z", + "1.0.3": "2011-07-19T05:40:49.700Z", + "1.0.6": "2011-11-11T11:52:18.324Z", + "1.0.7": "2011-11-14T07:18:18.570Z" + }, + "author": { + "name": "Cat Chen", + "email": "catchen@catchen.me", + "url": "http://catchen.me" + }, + "versions": { + "0.9.9": "http://registry.npmjs.org/jshelpers/0.9.9", + "1.0.0": "http://registry.npmjs.org/jshelpers/1.0.0", + "1.0.1": "http://registry.npmjs.org/jshelpers/1.0.1", + "1.0.2": "http://registry.npmjs.org/jshelpers/1.0.2", + "1.0.3": "http://registry.npmjs.org/jshelpers/1.0.3", + "1.0.6": "http://registry.npmjs.org/jshelpers/1.0.6", + "1.0.7": "http://registry.npmjs.org/jshelpers/1.0.7" + }, + "dist": { + "0.9.9": { + "shasum": "ea2922d44234d914dd08e3ef398fefbfd1c7cff7", + "tarball": "http://registry.npmjs.org/jshelpers/-/jshelpers-0.9.9.tgz" + }, + "1.0.0": { + "shasum": "c62573ee50119ed1729b6ef16b3650c6f34ace13", + "tarball": "http://registry.npmjs.org/jshelpers/-/jshelpers-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "80934290a62d13810ca5820fb88a1d7029178e55", + "tarball": "http://registry.npmjs.org/jshelpers/-/jshelpers-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "4de97c79cd9dff846659b7f8bcb28aad4cf0e158", + "tarball": "http://registry.npmjs.org/jshelpers/-/jshelpers-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "d2f142d53692e43f0d2fac2ebd641a581ddea866", + "tarball": "http://registry.npmjs.org/jshelpers/-/jshelpers-1.0.3.tgz" + }, + "1.0.6": { + "shasum": "66fa23fa0dfd7e8cb1bfd91688102898e7671920", + "tarball": "http://registry.npmjs.org/jshelpers/-/jshelpers-1.0.6.tgz" + }, + "1.0.7": { + "shasum": "23f11a99efed0dc8dbd99c0d1ea9f7897c7a1a41", + "tarball": "http://registry.npmjs.org/jshelpers/-/jshelpers-1.0.7.tgz" + } + }, + "url": "http://registry.npmjs.org/jshelpers/" + }, + "jshint": { + "name": "jshint", + "description": "A CLI for JSHint", + "dist-tags": { + "latest": "0.5.5" + }, + "maintainers": [ + { + "name": "brentlintner", + "email": "brent.lintner@gmail.com" + } + ], + "time": { + "modified": "2011-12-12T23:04:51.885Z", + "created": "2011-03-27T18:32:36.942Z", + "0.1.8": "2011-03-27T18:32:37.263Z", + "0.1.9": "2011-03-30T01:23:22.132Z", + "0.2.0": "2011-04-07T01:29:17.412Z", + "0.2.1": "2011-05-06T15:19:59.724Z", + "0.2.2": "2011-05-26T02:28:56.346Z", + "0.2.3": "2011-06-22T00:20:15.092Z", + "0.3.0": "2011-08-20T23:55:34.317Z", + "0.3.1": "2011-09-05T17:43:21.706Z", + "0.4.0": "2011-10-11T01:30:17.763Z", + "0.5.0": "2011-10-13T02:31:28.177Z", + "0.5.1": "2011-10-15T20:27:49.794Z", + "0.5.2": "2011-10-27T23:47:13.813Z", + "0.5.3": "2011-12-06T17:04:23.138Z", + "0.5.4": "2011-12-09T16:22:22.276Z", + "0.5.5": "2011-12-12T23:04:51.885Z" + }, + "author": { + "name": "Brent Lintner", + "email": "brent.lintner@gmail.com", + "url": "http://github.com/brentlintner" + }, + "users": { + "mvolkmann": true + }, + "versions": { + "0.1.8": "http://registry.npmjs.org/jshint/0.1.8", + "0.1.9": "http://registry.npmjs.org/jshint/0.1.9", + "0.2.0": "http://registry.npmjs.org/jshint/0.2.0", + "0.2.1": "http://registry.npmjs.org/jshint/0.2.1", + "0.2.2": "http://registry.npmjs.org/jshint/0.2.2", + "0.2.3": "http://registry.npmjs.org/jshint/0.2.3", + "0.3.0": "http://registry.npmjs.org/jshint/0.3.0", + "0.3.1": "http://registry.npmjs.org/jshint/0.3.1", + "0.4.0": "http://registry.npmjs.org/jshint/0.4.0", + "0.5.0": "http://registry.npmjs.org/jshint/0.5.0", + "0.5.1": "http://registry.npmjs.org/jshint/0.5.1", + "0.5.2": "http://registry.npmjs.org/jshint/0.5.2", + "0.5.3": "http://registry.npmjs.org/jshint/0.5.3", + "0.5.4": "http://registry.npmjs.org/jshint/0.5.4", + "0.5.5": "http://registry.npmjs.org/jshint/0.5.5" + }, + "dist": { + "0.1.8": { + "shasum": "d90e12dccb1bc490409a079defa01e21ee16a6e8", + "tarball": "http://registry.npmjs.org/jshint/-/jshint-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "4ec9f0415c6746021de4b7eb5a3ca1a3ed7f33a7", + "tarball": "http://registry.npmjs.org/jshint/-/jshint-0.1.9.tgz" + }, + "0.2.0": { + "shasum": "0c63f41429bb1a764ce5936f7aaaf806b771d947", + "tarball": "http://registry.npmjs.org/jshint/-/jshint-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "c8589746ff9750d89c4b9e3a0996a9f81b6493bc", + "tarball": "http://registry.npmjs.org/jshint/-/jshint-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "77091e70ea88bc28904d8e0e7ae2c45b638b477a", + "tarball": "http://registry.npmjs.org/jshint/-/jshint-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "d31480ae27228f1c4a7267d521b85fcb9662e53e", + "tarball": "http://registry.npmjs.org/jshint/-/jshint-0.2.3.tgz" + }, + "0.3.0": { + "shasum": "b011c63b3a805e80e03453768f5a399e02fe5bc0", + "tarball": "http://registry.npmjs.org/jshint/-/jshint-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "260df1eaaa6462becf1693da55e831fa87abcb69", + "tarball": "http://registry.npmjs.org/jshint/-/jshint-0.3.1.tgz" + }, + "0.4.0": { + "shasum": "8349e2e7bb89147c8c8b47c8b1353d735af6dfeb", + "tarball": "http://registry.npmjs.org/jshint/-/jshint-0.4.0.tgz" + }, + "0.5.0": { + "shasum": "a2351b0dbd7ba63f7b94da7d0769ac600e788fdd", + "tarball": "http://registry.npmjs.org/jshint/-/jshint-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "3bc469d32d67e818055799cc2f7212a6f9b8d25a", + "tarball": "http://registry.npmjs.org/jshint/-/jshint-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "2db6c1b8597fd820ae161f60d77c9db12efe40b9", + "tarball": "http://registry.npmjs.org/jshint/-/jshint-0.5.2.tgz" + }, + "0.5.3": { + "shasum": "7519c1c8d42eca0799f4f30e58b172ff806f5e78", + "tarball": "http://registry.npmjs.org/jshint/-/jshint-0.5.3.tgz" + }, + "0.5.4": { + "shasum": "7660480d2a99fd693addbaeecb56ac5d6ad4e1e2", + "tarball": "http://registry.npmjs.org/jshint/-/jshint-0.5.4.tgz" + }, + "0.5.5": { + "shasum": "f2a2a69ea0d159058cfd56a6bd481866e6d82a82", + "tarball": "http://registry.npmjs.org/jshint/-/jshint-0.5.5.tgz" + } + }, + "url": "http://registry.npmjs.org/jshint/" + }, + "jshint-mode": { + "name": "jshint-mode", + "description": "JSHint", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "daleharvey", + "email": "dale@arandomurl.com" + } + ], + "time": { + "modified": "2011-03-22T16:35:12.007Z", + "created": "2011-03-22T11:50:14.548Z", + "0.0.1": "2011-03-22T11:50:14.944Z", + "0.0.2": "2011-03-22T16:35:12.007Z" + }, + "author": { + "name": "Dale Harvey", + "url": "http://arandomurl.com/" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jshint-mode/0.0.1", + "0.0.2": "http://registry.npmjs.org/jshint-mode/0.0.2" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/jshint-mode/-/jshint-mode@0.0.1.tgz" + }, + "0.0.2": { + "shasum": "eb430a4c6fd5818c6ac2b5b6c8ef1c9d933b792b", + "tarball": "http://registry.npmjs.org/jshint-mode/-/jshint-mode-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/jshint-mode/" + }, + "jshint-runner": { + "name": "jshint-runner", + "description": "Command-line runner for JSHint (http://jshint.com)", + "dist-tags": { + "latest": "1.0.2" + }, + "maintainers": [ + { + "name": "sjwalter", + "email": "stephenwalters@gmail.com" + } + ], + "time": { + "modified": "2011-05-10T05:54:51.937Z", + "created": "2011-05-09T19:34:10.190Z", + "1.0.0": "2011-05-09T19:34:10.625Z", + "1.0.1": "2011-05-10T03:36:36.506Z", + "1.0.2": "2011-05-10T05:54:51.937Z" + }, + "author": { + "name": "Stephen J. Walters" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/jshint-runner/1.0.0", + "1.0.1": "http://registry.npmjs.org/jshint-runner/1.0.1", + "1.0.2": "http://registry.npmjs.org/jshint-runner/1.0.2" + }, + "dist": { + "1.0.0": { + "shasum": "e6078794e6449ce40960345ee67eb407da5ad7ab", + "tarball": "http://registry.npmjs.org/jshint-runner/-/jshint-runner-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "f47a97aa10dc6eb1a6c405af26800598ceb3e6e0", + "tarball": "http://registry.npmjs.org/jshint-runner/-/jshint-runner-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "fd716b031e639f1113f183a106fdb66a2125b0e9", + "tarball": "http://registry.npmjs.org/jshint-runner/-/jshint-runner-1.0.2.tgz" + } + }, + "keywords": [ + "jshint", + "code quality", + "lint" + ], + "url": "http://registry.npmjs.org/jshint-runner/" + }, + "jshtml": { + "name": "jshtml", + "description": "razor template engine", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "elmerbulthuis", + "email": "elmerbulthuis@gmail.com" + } + ], + "time": { + "modified": "2011-10-27T08:11:53.459Z", + "created": "2011-10-18T16:29:39.562Z", + "0.1.5": "2011-10-18T16:29:42.529Z", + "0.1.7": "2011-10-21T12:41:03.326Z", + "0.2.0": "2011-10-22T14:30:30.536Z", + "0.2.1": "2011-10-25T10:47:24.076Z", + "0.2.2": "2011-10-27T08:11:53.459Z" + }, + "author": { + "name": "Elmer Bulthuis", + "email": "elmerbulthuis@gmail.com" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/jshtml/0.2.0", + "0.2.1": "http://registry.npmjs.org/jshtml/0.2.1", + "0.2.2": "http://registry.npmjs.org/jshtml/0.2.2" + }, + "dist": { + "0.2.0": { + "shasum": "5ddb64ef9e1c63bf0860453ed7051226f86efaef", + "tarball": "http://registry.npmjs.org/jshtml/-/jshtml-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "70909648a95f8d0ff016c0f4af3d81a52027026f", + "tarball": "http://registry.npmjs.org/jshtml/-/jshtml-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "bba9b919794fda00fc66190849ccfbf4781ac965", + "tarball": "http://registry.npmjs.org/jshtml/-/jshtml-0.2.2.tgz" + } + }, + "url": "http://registry.npmjs.org/jshtml/" + }, + "jsinc": { + "name": "jsinc", + "description": "Include non module javascript file as module", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "shimondoodkin", + "email": "helpmepro1@gmail.com" + } + ], + "time": { + "modified": "2011-08-02T21:38:19.609Z", + "created": "2011-06-03T12:51:41.607Z", + "0.1.0": "2011-06-03T12:51:42.618Z", + "0.1.2": "2011-07-27T03:47:23.448Z", + "0.1.3": "2011-08-02T07:47:39.936Z", + "0.1.4": "2011-08-02T21:38:19.609Z" + }, + "author": { + "name": "Shimon Doodkin", + "email": "helpmepro1@gmail.com", + "url": "http://doodkin.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/shimondoodkin/jsinc.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/jsinc/0.1.0", + "0.1.2": "http://registry.npmjs.org/jsinc/0.1.2", + "0.1.3": "http://registry.npmjs.org/jsinc/0.1.3", + "0.1.4": "http://registry.npmjs.org/jsinc/0.1.4" + }, + "dist": { + "0.1.0": { + "shasum": "cd4a72b5e4bddc5b5aed4894828983caa1790a84", + "tarball": "http://registry.npmjs.org/jsinc/-/jsinc-0.1.0.tgz" + }, + "0.1.2": { + "shasum": "99e2094c25bfa56a6e6cdbb4d7e1c43cb1eb6d47", + "tarball": "http://registry.npmjs.org/jsinc/-/jsinc-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "9bed73a8902373006c68dff07159c8c7f6024865", + "tarball": "http://registry.npmjs.org/jsinc/-/jsinc-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "85ba1be100382d90e930d641a3fb1d3cab0ca88d", + "tarball": "http://registry.npmjs.org/jsinc/-/jsinc-0.1.4.tgz" + } + }, + "url": "http://registry.npmjs.org/jsinc/" + }, + "jslardo": { + "name": "jslardo", + "description": "a social CMS. will be... (the project has just started. come back in a few weeks!)", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "federicocarrara", + "email": "federico@obliquid.it" + } + ], + "time": { + "modified": "2011-12-10T19:12:30.967Z", + "created": "2011-12-10T19:12:28.446Z", + "0.0.1": "2011-12-10T19:12:30.967Z" + }, + "author": { + "name": "federico carrara", + "email": "federico@obliquid.it" + }, + "repository": { + "type": "git", + "url": "git://github.com/obliquid/jslardo.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jslardo/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "dcf297c002026c3d87f37f3d33b178b6bae550a6", + "tarball": "http://registry.npmjs.org/jslardo/-/jslardo-0.0.1.tgz" + } + }, + "keywords": [ + "cms", + "express", + "mongodb" + ], + "url": "http://registry.npmjs.org/jslardo/" + }, + "jslint": { + "name": "jslint", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "reid", + "email": "me@reidburke.com" + } + ], + "author": { + "name": "Reid Burke", + "email": "me@reidburke.com" + }, + "description": "The JavaScript Code Quality Tool", + "repository": { + "type": "git", + "url": "git://github.com/reid/node-jslint.git" + }, + "time": { + "modified": "2011-05-03T19:04:21.076Z", + "created": "2011-05-03T19:04:21.076Z", + "0.0.2": "2011-05-03T19:04:21.076Z", + "0.0.3": "2011-05-03T19:04:21.076Z", + "0.1.0": "2011-05-03T19:04:21.076Z" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/jslint/0.0.2", + "0.0.3": "http://registry.npmjs.org/jslint/0.0.3", + "0.1.0": "http://registry.npmjs.org/jslint/0.1.0" + }, + "dist": { + "0.0.2": { + "tarball": "http://packages:5984/jslint/-/jslint-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/jslint/-/jslint-0.0.3.tgz" + }, + "0.1.0": { + "shasum": "a60181457587355c196173f20c2eae64cd5ee25f", + "tarball": "http://registry.npmjs.org/jslint/-/jslint-0.1.0.tgz" + } + }, + "keywords": [ + "lint" + ], + "url": "http://registry.npmjs.org/jslint/" + }, + "JSLint-commonJS": { + "name": "JSLint-commonJS", + "description": "JSLint with commonJS exportability and package.json", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "mikebannister", + "email": "mikebannister@gmail.com" + } + ], + "author": { + "name": "Douglas Crockford", + "email": "douglas@crockford.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/JSLint-commonJS/0.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/JSLint-commonJS/-/JSLint-commonJS-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/JSLint-commonJS/" + }, + "jslint-core": { + "name": "jslint-core", + "description": "The JavaScript Code Quality Tool", + "dist-tags": { + "latest": "2011.01.09" + }, + "maintainers": [ + { + "name": "bramstein", + "email": "b.l.stein@gmail.com" + } + ], + "time": { + "modified": "2011-01-17T11:33:48.580Z", + "created": "2011-01-17T11:33:48.311Z", + "2011.01.09": "2011-01-17T11:33:48.580Z" + }, + "author": { + "name": "Douglas Crockford" + }, + "versions": { + "2011.01.09": "http://registry.npmjs.org/jslint-core/2011.01.09" + }, + "dist": { + "2011.01.09": { + "tarball": "http://registry.npmjs.org/jslint-core/-/jslint-core@2011.01.09.tgz" + } + }, + "keywords": [ + "JavaScript", + "lint", + "jslint", + "jslint-core", + "fulljslint" + ], + "url": "http://registry.npmjs.org/jslint-core/" + }, + "jslint-strict": { + "name": "jslint-strict", + "description": "A fork of Douglas Crockford's JSLint for Node.JS that auto-updates", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-08-19T03:00:58.714Z", + "created": "2011-03-29T00:23:43.971Z", + "1.0.0": "2011-03-29T00:23:44.269Z", + "1.0.1": "2011-08-19T03:00:58.714Z" + }, + "author": { + "name": "Douglas Crockford", + "email": "douglas@crockford.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/coolaj86/JSLint.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/jslint-strict/1.0.0", + "1.0.1": "http://registry.npmjs.org/jslint-strict/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "2ae3c4ec0a7bc675d2fc87d67390ef01866ff5e2", + "tarball": "http://registry.npmjs.org/jslint-strict/-/jslint-strict-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "37ae67edac8cc283b8028ac9eb8a1cc182f8bb93", + "tarball": "http://registry.npmjs.org/jslint-strict/-/jslint-strict-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/jslint-strict/" + }, + "jslinux": { + "name": "jslinux", + "description": "jslinux (http://bellard.org/jslinux/) adapted for Node.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "tlrobinson", + "email": "tlrobinson@gmail.com" + } + ], + "time": { + "modified": "2011-05-22T01:37:52.902Z", + "created": "2011-05-20T12:47:51.014Z", + "0.0.1": "2011-05-20T12:47:51.374Z", + "0.0.2": "2011-05-22T01:16:26.711Z" + }, + "repository": { + "type": "git", + "url": "https://github.com/tlrobinson/node-jslinux.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jslinux/0.0.1", + "0.0.2": "http://registry.npmjs.org/jslinux/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "41d5d61fd4f248410b20f204e1f73ada58166610", + "tarball": "http://registry.npmjs.org/jslinux/-/jslinux-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "ad44e4e7fdc3384e850cabcfd11072f3b64a68b5", + "tarball": "http://registry.npmjs.org/jslinux/-/jslinux-0.0.2.tgz" + } + }, + "keywords": [ + "jslinux", + "linux", + "emulator", + "emulators" + ], + "url": "http://registry.npmjs.org/jslinux/" + }, + "jslitmus": { + "name": "jslitmus", + "description": "Cross-platform performance testing framework", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "broofa", + "email": "robert@broofa.com" + } + ], + "author": { + "name": "Robert Kieffer", + "email": "robert@broofa.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/jslitmus/0.1.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/jslitmus/-/jslitmus-0.1.0.tgz" + } + }, + "keywords": [ + "testing", + "performance" + ], + "url": "http://registry.npmjs.org/jslitmus/" + }, + "jsmeter": { + "name": "jsmeter", + "description": "JavaScript code metrics via static analysis", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "noahpeters", + "email": "noahpeters@gmail.com" + } + ], + "time": { + "modified": "2011-09-15T02:31:57.642Z", + "created": "2011-09-15T02:21:36.920Z", + "1.0.0": "2011-09-15T02:21:37.098Z", + "1.0.1": "2011-09-15T02:31:57.642Z" + }, + "author": { + "name": "Noah Peters", + "email": "noahpeters@gmail.com" + }, + "repository": { + "url": "" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/jsmeter/1.0.0", + "1.0.1": "http://registry.npmjs.org/jsmeter/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "215b95ce463f98c0af932eae8adf7f388d0a5546", + "tarball": "http://registry.npmjs.org/jsmeter/-/jsmeter-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "e792b4586bacbbcbbcaa837c46c6492b258c6656", + "tarball": "http://registry.npmjs.org/jsmeter/-/jsmeter-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/jsmeter/" + }, + "jsmin": { + "name": "jsmin", + "description": "A node.js module for javascript minification", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "pkrumins", + "email": "peteris.krumins@gmail.com" + } + ], + "versions": { + "1.0.0": "http://registry.npmjs.org/jsmin/1.0.0" + }, + "dist": { + "1.0.0": { + "tarball": "http://packages:5984/jsmin/-/jsmin-1.0.0.tgz" + } + }, + "keywords": [ + "jsmin", + "javascript min", + "javascript minification", + "javascript minimization", + "js minification", + "js minimization" + ], + "url": "http://registry.npmjs.org/jsmin/" + }, + "json": { + "name": "json", + "description": "JSON command line processing toolkit.", + "dist-tags": { + "latest": "0.0.8" + }, + "maintainers": [ + { + "name": "zpoley", + "email": "zpoley@gmail.com" + } + ], + "time": { + "modified": "2011-03-20T04:58:44.192Z", + "created": "2011-02-26T23:24:31.702Z", + "0.0.8": "2011-02-26T23:24:32.067Z", + "0.0.8-exp": "2011-03-19T20:15:02.657Z", + "0.0.0-exp": "2011-03-19T21:05:09.593Z" + }, + "author": { + "name": "Zachary Poley", + "email": "zpoley@gmail.com", + "url": "http://zpoley.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/zpoley/json-command.git" + }, + "versions": { + "0.0.8": "http://registry.npmjs.org/json/0.0.8" + }, + "dist": { + "0.0.8": { + "shasum": "70fd27f71db65a78e9aa83243ae30a51f0a2031a", + "tarball": "http://registry.npmjs.org/json/-/json-0.0.8.tgz" + } + }, + "keywords": [ + "json", + "command", + "shell" + ], + "url": "http://registry.npmjs.org/json/" + }, + "JSON": { + "name": "JSON", + "description": "Douglas Crockford's json2.js", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-09-08T00:38:16.795Z", + "created": "2011-09-08T00:38:16.426Z", + "1.0.0": "2011-09-08T00:38:16.795Z" + }, + "author": { + "name": "Douglas Crockford", + "email": "douglas@crockford.com", + "url": "http://crockford.com" + }, + "repository": { + "url": "git://github.com/douglascrockford/JSON-js.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/JSON/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "8681531c28f8438a075589ff07248246ea960d8c", + "tarball": "http://registry.npmjs.org/JSON/-/JSON-1.0.0.tgz" + } + }, + "keywords": [ + "ender" + ], + "url": "http://registry.npmjs.org/JSON/" + }, + "json_req": { + "name": "json_req", + "description": "Overlay for the request package to ease access to JSON REST interfaces", + "dist-tags": { + "latest": "0.0.7" + }, + "maintainers": [ + { + "name": "shimaore", + "email": "stephane@shimaore.net" + } + ], + "time": { + "modified": "2011-07-07T22:36:22.613Z", + "created": "2011-06-07T13:21:18.954Z", + "0.0.1": "2011-06-07T13:21:19.421Z", + "0.0.2": "2011-06-23T21:24:32.678Z", + "0.0.3": "2011-06-23T21:41:05.351Z", + "0.0.4": "2011-06-23T23:30:45.458Z", + "0.0.5": "2011-06-24T17:54:06.908Z", + "0.0.6": "2011-07-07T22:29:29.680Z", + "0.0.7": "2011-07-07T22:36:22.613Z" + }, + "author": { + "name": "Stephane Alnet", + "email": "stephane@shimaore.net" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/json_req/0.0.1", + "0.0.2": "http://registry.npmjs.org/json_req/0.0.2", + "0.0.3": "http://registry.npmjs.org/json_req/0.0.3", + "0.0.4": "http://registry.npmjs.org/json_req/0.0.4", + "0.0.5": "http://registry.npmjs.org/json_req/0.0.5", + "0.0.6": "http://registry.npmjs.org/json_req/0.0.6", + "0.0.7": "http://registry.npmjs.org/json_req/0.0.7" + }, + "dist": { + "0.0.1": { + "shasum": "d8cc182d631244f3c5b18287094a330d2ddb0b9c", + "tarball": "http://registry.npmjs.org/json_req/-/json_req-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "23b58ba612d95e0ad0e9351530f2943cb66c383a", + "tarball": "http://registry.npmjs.org/json_req/-/json_req-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "047adc1f73ca9d70008a22b0941ef699c6d89802", + "tarball": "http://registry.npmjs.org/json_req/-/json_req-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "cc174cb43839b436c3cf0c2810a0ed46140398b8", + "tarball": "http://registry.npmjs.org/json_req/-/json_req-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "d5fea1431a32c34570f31b3b5e21716e0d406527", + "tarball": "http://registry.npmjs.org/json_req/-/json_req-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "7704e688a7015689bb78ed4010ebc3308ab29922", + "tarball": "http://registry.npmjs.org/json_req/-/json_req-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "2b1d1d05d9de57b0fcc315cfe53ef30b82c66290", + "tarball": "http://registry.npmjs.org/json_req/-/json_req-0.0.7.tgz" + } + }, + "keywords": [ + "json request" + ], + "url": "http://registry.npmjs.org/json_req/" + }, + "json-browser": { + "name": "json-browser", + "description": "JSON in JavaScript", + "dist-tags": { + "latest": "3.0.0" + }, + "maintainers": [ + { + "name": "ded", + "email": "polvero@gmail.com" + }, + { + "name": "dvv", + "email": "dronnikov@gmail.com" + } + ], + "time": { + "modified": "2011-05-13T08:07:21.122Z", + "created": "2011-05-03T21:00:17.850Z", + "2.0.0": "2011-05-03T21:00:18.405Z", + "3.0.0": "2011-05-13T08:07:21.122Z" + }, + "author": { + "name": "Douglas Crockford" + }, + "repository": { + "type": "git", + "url": "git://github.com/douglascrockford/JSON-js.git" + }, + "versions": { + "2.0.0": "http://registry.npmjs.org/json-browser/2.0.0", + "3.0.0": "http://registry.npmjs.org/json-browser/3.0.0" + }, + "dist": { + "2.0.0": { + "shasum": "f4bc1edc784a9953a1cd56e37868a510d53edee9", + "tarball": "http://registry.npmjs.org/json-browser/-/json-browser-2.0.0.tgz" + }, + "3.0.0": { + "shasum": "b67cb00949cd88ec1fef4d3b4b25035839f05215", + "tarball": "http://registry.npmjs.org/json-browser/-/json-browser-3.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/json-browser/" + }, + "json-builder": { + "name": "json-builder", + "description": "Big JSON streams for JS without creating big objects.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "michaelku", + "email": "michael@thefoundation.de" + } + ], + "time": { + "modified": "2011-04-07T23:40:42.595Z", + "created": "2011-03-31T15:44:17.011Z", + "0.0.1": "2011-03-31T15:44:17.672Z", + "0.0.2": "2011-04-07T23:40:42.595Z" + }, + "author": { + "name": "Michael Kurze", + "email": "michael@thefoundation.de", + "url": "http://thefoundation.de/michael" + }, + "repository": { + "type": "git", + "url": "git://github.com/michaelku/json-builder.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/json-builder/0.0.1", + "0.0.2": "http://registry.npmjs.org/json-builder/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "3f39571f9669a4cb4d6ed512ce7f107213b5136d", + "tarball": "http://registry.npmjs.org/json-builder/-/json-builder-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "ae7fe3082d5be99aea3624eb83dcc751ed44b5bf", + "tarball": "http://registry.npmjs.org/json-builder/-/json-builder-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/json-builder/" + }, + "json-cherry-pick": { + "name": "json-cherry-pick", + "description": "A commandline utility to cherry-pick a value from a JSON response", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-11-09T23:55:55.928Z", + "created": "2011-11-09T23:55:55.297Z", + "1.0.0": "2011-11-09T23:55:55.928Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com", + "url": "http://coolaj86.info" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/json-cherry-pick/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "59abe05c8b4e06674facddc72478a261b973c488", + "tarball": "http://registry.npmjs.org/json-cherry-pick/-/json-cherry-pick-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/json-cherry-pick/" + }, + "json-command": { + "name": "json-command", + "description": "JSON command line processing toolkit.", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "zpoley", + "email": "zpoley@gmail.com" + } + ], + "author": { + "name": "Zachary Poley", + "email": "zpoley@gmail.com", + "url": "http://zpoley.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/zpoley/json-command.git" + }, + "time": { + "modified": "2011-02-25T21:42:36.027Z", + "created": "2010-12-22T15:09:29.535Z", + "0.0.4": "2010-12-22T15:09:29.535Z", + "0.0.5": "2010-12-22T15:09:29.535Z", + "0.0.6": "2011-02-21T08:16:42.669Z" + }, + "versions": { + "0.0.6": "http://registry.npmjs.org/json-command/0.0.6" + }, + "dist": { + "0.0.6": { + "shasum": "67a80f116f79ae1cb0d36813def945490d601bd8", + "tarball": "http://registry.npmjs.org/json-command/-/json-command-0.0.6.tgz" + } + }, + "keywords": [ + "json", + "command", + "shell" + ], + "url": "http://registry.npmjs.org/json-command/" + }, + "json-fu": { + "name": "json-fu", + "description": "Kick-ass JSON utilities for JavaScript and CoffeeScript", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "greatfoundry", + "email": "bloggins@greatfoundry.com" + } + ], + "time": { + "modified": "2011-07-03T02:20:06.087Z", + "created": "2011-07-03T02:16:11.546Z", + "0.1.0": "2011-07-03T02:16:11.841Z", + "0.2.1": "2011-07-03T02:20:06.087Z" + }, + "author": { + "name": "GreatFoundry Software, Inc." + }, + "repository": { + "type": "git", + "url": "git://github.com/greatfoundry/json-fu.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/json-fu/0.1.0", + "0.2.1": "http://registry.npmjs.org/json-fu/0.2.1" + }, + "dist": { + "0.1.0": { + "shasum": "685b3905322ab6bbd2827baf751d431cafd0f6f4", + "tarball": "http://registry.npmjs.org/json-fu/-/json-fu-0.1.0.tgz" + }, + "0.2.1": { + "shasum": "fc0af51bd00e0786359e4d26dc243a05bdd57074", + "tarball": "http://registry.npmjs.org/json-fu/-/json-fu-0.2.1.tgz" + } + }, + "keywords": [ + "json", + "javascript", + "coffeescript", + "serialization", + "deserialization", + "persistence" + ], + "url": "http://registry.npmjs.org/json-fu/" + }, + "json-line-protocol": { + "name": "json-line-protocol", + "description": "Stream protocol handler for CRLF-delimited JSON values", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "fictorial", + "email": "brian@fictorial.com" + } + ], + "time": { + "modified": "2011-05-25T19:34:00.859Z", + "created": "2011-05-25T18:39:00.577Z", + "0.0.1": "2011-05-25T18:39:00.903Z", + "0.0.2": "2011-05-25T19:01:19.693Z", + "0.0.3": "2011-05-25T19:34:00.859Z" + }, + "author": { + "name": "Brian Hammond", + "email": "brian@fictorial.com", + "url": "http://fictorial.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/fictorial/json-line-protocol.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/json-line-protocol/0.0.1", + "0.0.2": "http://registry.npmjs.org/json-line-protocol/0.0.2", + "0.0.3": "http://registry.npmjs.org/json-line-protocol/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "7574194306fe9f2ee435c49052fb6949f07aad50", + "tarball": "http://registry.npmjs.org/json-line-protocol/-/json-line-protocol-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "93ce7292d9d0c4d2c279cca8e3a06bd24fe7fd64", + "tarball": "http://registry.npmjs.org/json-line-protocol/-/json-line-protocol-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "25244fc217b1d1653c3265c32b413f688d4e853a", + "tarball": "http://registry.npmjs.org/json-line-protocol/-/json-line-protocol-0.0.3.tgz" + } + }, + "keywords": [ + "protocol", + "stream", + "json", + "line" + ], + "url": "http://registry.npmjs.org/json-line-protocol/" + }, + "json-object": { + "name": "json-object", + "description": "JSON extended to fully support JavaScript objects", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "jhh", + "email": "jhh@sendanor.com" + } + ], + "time": { + "modified": "2011-08-14T12:45:22.257Z", + "created": "2011-08-14T00:09:48.992Z", + "0.0.1": "2011-08-14T00:09:51.744Z", + "0.0.2": "2011-08-14T00:42:42.620Z", + "0.0.3": "2011-08-14T12:45:22.257Z" + }, + "author": { + "name": "Jaakko-Heikki Heusala", + "email": "jheusala@iki.fi", + "url": "http://www.jhh.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/jheusala/node-json-object.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/json-object/0.0.1", + "0.0.2": "http://registry.npmjs.org/json-object/0.0.2", + "0.0.3": "http://registry.npmjs.org/json-object/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "efc554df9c3340cc8ec7dde69fd9da88f5bec892", + "tarball": "http://registry.npmjs.org/json-object/-/json-object-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "fc59c3bea6386e1a880b64283077489cca394ac1", + "tarball": "http://registry.npmjs.org/json-object/-/json-object-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "35361b7c1bd02cf945893695c8022140ec199234", + "tarball": "http://registry.npmjs.org/json-object/-/json-object-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/json-object/" + }, + "json-parse": { + "name": "json-parse", + "description": "Simple module that parses a given JSON file", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "muted87", + "email": "somicide@gmail.com" + } + ], + "time": { + "modified": "2011-09-25T01:35:35.084Z", + "created": "2011-09-24T18:41:22.486Z", + "0.0.1": "2011-09-24T18:41:23.275Z", + "0.0.2": "2011-09-24T19:29:19.986Z", + "0.0.3": "2011-09-24T22:31:26.315Z", + "0.0.4": "2011-09-25T01:35:35.084Z" + }, + "author": { + "name": "muted87" + }, + "repository": { + "type": "git", + "url": "git://github.com/muted87/json-parse.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/json-parse/0.0.1", + "0.0.2": "http://registry.npmjs.org/json-parse/0.0.2", + "0.0.3": "http://registry.npmjs.org/json-parse/0.0.3", + "0.0.4": "http://registry.npmjs.org/json-parse/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "5ee14c6cd2b508e3fe0e31857db72884b67ccf9e", + "tarball": "http://registry.npmjs.org/json-parse/-/json-parse-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "824448faaea9b9e66ebf709c3ee0b25742d952a9", + "tarball": "http://registry.npmjs.org/json-parse/-/json-parse-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "fbf9b0d10e5bf5f1b7a24530c44780be5e64f25a", + "tarball": "http://registry.npmjs.org/json-parse/-/json-parse-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "d99f03206ebcb153b625459ba8fd03ae642f82c8", + "tarball": "http://registry.npmjs.org/json-parse/-/json-parse-0.0.4.tgz" + } + }, + "keywords": [ + "json", + "config", + "parse", + "parser", + "flatfile" + ], + "url": "http://registry.npmjs.org/json-parse/" + }, + "json-ref": { + "name": "json-ref", + "description": "A JavaScript implementation of the default referencing scheme used by Json.NET to encode object and array references", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "jdknezek", + "email": "jdknezek@gmail.com" + } + ], + "time": { + "modified": "2011-03-20T04:53:29.681Z", + "created": "2011-03-20T04:53:05.349Z", + "1.0.0": "2011-03-20T04:53:29.681Z" + }, + "author": { + "name": "Jonathan Knezek", + "email": "jdknezek@gmail.com", + "url": "https://github.com/jdknezek" + }, + "repository": { + "type": "git", + "url": "git://github.com/jdknezek/json-ref.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/json-ref/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "463ae461d6cfacf4d8858db6ff6f033149e23625", + "tarball": "http://registry.npmjs.org/json-ref/-/json-ref-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/json-ref/" + }, + "json-rest": { + "name": "json-rest", + "description": "", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-11-11T09:58:07.667Z", + "created": "2011-11-11T09:58:02.802Z", + "1.0.0": "2011-11-11T09:58:07.667Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com", + "url": "http://bit.ly/dominictarr" + }, + "repository": { + "type": "git", + "url": "git://github.com/dominictarr/json-rest.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/json-rest/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "039f017f36563862cce104516bd3b16cf0b10d9a", + "tarball": "http://registry.npmjs.org/json-rest/-/json-rest-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/json-rest/" + }, + "json-san": { + "name": "json-san", + "description": "A JSON module with Actually Useful parse errors by jshint, *and* support for callbacks! But mostly the parse errors.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "jesusabdullah", + "email": "josh.holbrook@gmail.com" + } + ], + "time": { + "modified": "2011-09-03T04:50:27.903Z", + "created": "2011-08-30T04:48:15.638Z", + "0.0.0": "2011-08-30T04:48:17.502Z", + "0.0.1": "2011-09-03T04:36:32.848Z", + "0.0.2": "2011-09-03T04:50:27.903Z" + }, + "author": { + "name": "Joshua Holbrook", + "email": "josh.holbrook@gmail.com", + "url": "http://jesusabdullah.github.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:jesusabdullah/json-san.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/json-san/0.0.0", + "0.0.1": "http://registry.npmjs.org/json-san/0.0.1", + "0.0.2": "http://registry.npmjs.org/json-san/0.0.2" + }, + "dist": { + "0.0.0": { + "shasum": "7d8b29f17beeb4d581f1914e35044c54c4c09ac7", + "tarball": "http://registry.npmjs.org/json-san/-/json-san-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "779f37357a2ca205d3a65071748a5d0b148afd1c", + "tarball": "http://registry.npmjs.org/json-san/-/json-san-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "a0dcc7bcf29ab5f9b71ed727911b9f903616fd63", + "tarball": "http://registry.npmjs.org/json-san/-/json-san-0.0.2.tgz" + } + }, + "keywords": [ + "json", + "parse", + "stringify", + "jshint" + ], + "url": "http://registry.npmjs.org/json-san/" + }, + "json-schema": { + "name": "json-schema", + "version": "0.2.0", + "author": "Kris Zyp", + "maintainers": [ + { + "name": "Kris Zyp", + "email": "kriszyp@gmail.com" + } + ], + "keywords": [ + "json", + "schema" + ], + "licenses": [ + { + "type": "AFLv2.1", + "url": "http://trac.dojotoolkit.org/browser/dojo/trunk/LICENSE#L43" + }, + { + "type": "BSD", + "url": "http://trac.dojotoolkit.org/browser/dojo/trunk/LICENSE#L13" + } + ], + "repository": { + "type": "git", + "url": "http://github.com/kriszyp/json-schema" + }, + "directories": { + "lib": "./lib" + }, + "main": "./lib/validate.js", + "devDependencies": { + "vows": "*" + }, + "scripts": { + "test": "echo TESTS DISABLED vows --spec test/*.js" + }, + "url": "http://packages.dojofoundation.org/json-schema", + "location": "http://packages.dojofoundation.org/json-schema", + "time": { + "modified": "2011-07-06T13:07:27.863Z", + "created": "2011-07-06T13:07:27.863Z" + }, + "versions": {}, + "dist": {} + }, + "json-sockets": { + "name": "json-sockets", + "description": "a socket optimized for cross-domain use for the web and node", + "dist-tags": { + "latest": "0.4.0" + }, + "maintainers": [ + { + "name": "mafintosh", + "email": "m@ge.tt" + }, + { + "name": "ianjorgensen", + "email": "jorgensen.ian@gmail.com" + } + ], + "time": { + "modified": "2011-11-17T12:03:01.147Z", + "created": "2011-07-03T17:38:48.095Z", + "0.1.0": "2011-07-03T17:38:48.851Z", + "0.1.1": "2011-07-03T22:49:21.466Z", + "0.1.2": "2011-07-03T22:55:53.512Z", + "0.1.3": "2011-07-03T22:59:35.752Z", + "0.1.4": "2011-07-03T23:02:22.590Z", + "0.1.5": "2011-07-08T07:56:58.084Z", + "0.1.6": "2011-07-08T07:58:30.923Z", + "0.1.7": "2011-07-08T08:07:14.766Z", + "0.1.8": "2011-07-17T22:00:36.799Z", + "0.2.0": "2011-07-17T22:25:32.144Z", + "0.2.1": "2011-08-10T19:49:28.796Z", + "0.2.2": "2011-08-10T20:18:57.589Z", + "0.2.3": "2011-10-03T18:50:55.241Z", + "0.2.4": "2011-10-06T14:56:12.778Z", + "0.2.5": "2011-10-06T14:58:15.361Z", + "0.2.6": "2011-10-06T15:01:33.111Z", + "0.3.0": "2011-10-06T15:13:14.095Z", + "0.4.0": "2011-11-17T12:03:01.147Z" + }, + "author": { + "name": "Ge.tt", + "email": "hello@ge.tt" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/json-sockets/0.1.0", + "0.1.1": "http://registry.npmjs.org/json-sockets/0.1.1", + "0.1.2": "http://registry.npmjs.org/json-sockets/0.1.2", + "0.1.3": "http://registry.npmjs.org/json-sockets/0.1.3", + "0.1.4": "http://registry.npmjs.org/json-sockets/0.1.4", + "0.1.5": "http://registry.npmjs.org/json-sockets/0.1.5", + "0.1.6": "http://registry.npmjs.org/json-sockets/0.1.6", + "0.1.7": "http://registry.npmjs.org/json-sockets/0.1.7", + "0.1.8": "http://registry.npmjs.org/json-sockets/0.1.8", + "0.2.0": "http://registry.npmjs.org/json-sockets/0.2.0", + "0.2.1": "http://registry.npmjs.org/json-sockets/0.2.1", + "0.2.2": "http://registry.npmjs.org/json-sockets/0.2.2", + "0.2.3": "http://registry.npmjs.org/json-sockets/0.2.3", + "0.2.4": "http://registry.npmjs.org/json-sockets/0.2.4", + "0.2.5": "http://registry.npmjs.org/json-sockets/0.2.5", + "0.2.6": "http://registry.npmjs.org/json-sockets/0.2.6", + "0.3.0": "http://registry.npmjs.org/json-sockets/0.3.0", + "0.4.0": "http://registry.npmjs.org/json-sockets/0.4.0" + }, + "dist": { + "0.1.0": { + "shasum": "53b0aa2fb93926ce134c4ac42e0048296952d004", + "tarball": "http://registry.npmjs.org/json-sockets/-/json-sockets-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "d5454f54213d9362ea8356728117062901b1a681", + "tarball": "http://registry.npmjs.org/json-sockets/-/json-sockets-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "b605da95d35bb85bcf500e96ee1cb4d528d83f83", + "tarball": "http://registry.npmjs.org/json-sockets/-/json-sockets-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "322dedfd6471946a3283ba433b081f77721f1d0f", + "tarball": "http://registry.npmjs.org/json-sockets/-/json-sockets-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "66137b388cc0f73893545e5f48def7b14d758039", + "tarball": "http://registry.npmjs.org/json-sockets/-/json-sockets-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "fd2aa68c6aae42b3645e5da2e4ed3da1741a0f40", + "tarball": "http://registry.npmjs.org/json-sockets/-/json-sockets-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "15cb3790d6bec9ea8714db4a0e5e84fed3344150", + "tarball": "http://registry.npmjs.org/json-sockets/-/json-sockets-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "f5d50b2cb0c181beaa2a84696e162f2293218e1f", + "tarball": "http://registry.npmjs.org/json-sockets/-/json-sockets-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "bd8578e91925dafa82ddafa637f5dcad700a6d6e", + "tarball": "http://registry.npmjs.org/json-sockets/-/json-sockets-0.1.8.tgz" + }, + "0.2.0": { + "shasum": "686eba4948dc246ac3d85577a17d034e4c964e26", + "tarball": "http://registry.npmjs.org/json-sockets/-/json-sockets-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "e04264a1daaf186e0e24d8fed57137fadbc828b7", + "tarball": "http://registry.npmjs.org/json-sockets/-/json-sockets-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "8354d15d7a6913137e78a7943b733c8cc0948c08", + "tarball": "http://registry.npmjs.org/json-sockets/-/json-sockets-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "4323053e53310495298dd350a42c13e4b4cb30a4", + "tarball": "http://registry.npmjs.org/json-sockets/-/json-sockets-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "b38c9af9376e27c07deb7734603c970f7a38bf08", + "tarball": "http://registry.npmjs.org/json-sockets/-/json-sockets-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "2f2dcad06897471740cd8e31dfea20e9bfeaeafd", + "tarball": "http://registry.npmjs.org/json-sockets/-/json-sockets-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "b1bf206100ecf0fbb8d2e58d1c82bf90af2d8a23", + "tarball": "http://registry.npmjs.org/json-sockets/-/json-sockets-0.2.6.tgz" + }, + "0.3.0": { + "shasum": "8040c274ab0d1c244578a35a2dab3c5f6993313d", + "tarball": "http://registry.npmjs.org/json-sockets/-/json-sockets-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "01ce34f6691aa77815bc928ee778640139aee000", + "tarball": "http://registry.npmjs.org/json-sockets/-/json-sockets-0.4.0.tgz" + } + }, + "keywords": [ + "cross-domain", + "cors", + "socket", + "sockets" + ], + "url": "http://registry.npmjs.org/json-sockets/" + }, + "json-storage": { + "name": "json-storage", + "description": "A wrapper for storage engines which use the W3C Storage API", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-09-07T07:15:10.497Z", + "created": "2011-09-07T07:15:09.960Z", + "1.0.1": "2011-09-07T07:15:10.497Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com", + "url": "http://coolaj86.info" + }, + "repository": { + "type": "git", + "url": "git://github.com/coolaj86/json-storage-js.git" + }, + "versions": { + "1.0.1": "http://registry.npmjs.org/json-storage/1.0.1" + }, + "dist": { + "1.0.1": { + "shasum": "ae34e32b410bff0d56b39e302e2c519dc773e331", + "tarball": "http://registry.npmjs.org/json-storage/-/json-storage-1.0.1.tgz" + } + }, + "keywords": [ + "ender", + "localStorage", + "sessionStorage", + "globalStorage", + "Storage" + ], + "url": "http://registry.npmjs.org/json-storage/" + }, + "json-storage-model": { + "name": "json-storage-model", + "description": "An abstraction for models to be stored in json-storage", + "dist-tags": { + "latest": "0.9.1" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-09-07T07:15:50.922Z", + "created": "2011-09-07T07:15:50.494Z", + "0.9.1": "2011-09-07T07:15:50.922Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com", + "url": "http://coolaj86.info" + }, + "repository": { + "type": "git", + "url": "git://github.com/coolaj86/json-storage-js.git" + }, + "versions": { + "0.9.1": "http://registry.npmjs.org/json-storage-model/0.9.1" + }, + "dist": { + "0.9.1": { + "shasum": "403ef5a86c4b9d981f0342b0947198d29c14f619", + "tarball": "http://registry.npmjs.org/json-storage-model/-/json-storage-model-0.9.1.tgz" + } + }, + "keywords": [ + "ender", + "model", + "json-storage", + "localStorage", + "sessionStorage", + "globalStorage", + "Storage" + ], + "url": "http://registry.npmjs.org/json-storage-model/" + }, + "json-streamer": { + "name": "json-streamer", + "description": "A really basic library for streaming JSON", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "# node-json-streamer\nA really basic library wrapping a node TCP socket sending and parsing multiple JSON objects.\nAll this does is add an escape character on the client side (\\u2603: A unicode snowman), split up the messages received on ]\\u2603 || }\\u2603, then emit 'msg' with the parsed JSON or nothing at all if it failed.\nIt does some error checking so if you send fluff down the socket then proper JSON it'll trim the fluff (without any kind of notification at all).\nOh it'll also randomly purge the buffer if it hits 512kb without any valid JSON. You know, just FYI.\n\n## Installation\n $ npm link path/to/json-streamer\n $ npm install json-streamer\n\n## Requirements\n- A recent version of node. package.json says v0.6.0 but I'm sure it can handle less than that.\n- Willingness to accept cuddles.\n\n## Features\n- Send and receive JSON reusing the same TCP connection\n- Error correction, if you send fluff then valid JSON it will recover (by deleting the fluff)\n\n## Example\n\n```javascript\nvar jsonStreamer = require('jsonStreamer');\n\nvar server = jsonStreamer.listen(3001);\n\nserver.on('connection', function (client) {\n client.on('msg', function gotMsg(msg) {\n console.log('Server received message: ', msg.content);\n client.writeJSON({ ok: true });\n })\n});\n\nvar client = jsonStreamer.connect(3001, function connectListener() {\n console.log(\"Connected\");\n client.writeJSON({ a: 'b', c: 'd'});\n client.writeJSON(JSON.stringify({ b: 'b', d: 'd'}));\n client.writeJSON(\"BAHABABAHBAHABHA\" + JSON.stringify({a: 'ok'}));\n client.writeJSON(\"OH GOD WHY\");\n client.writeJSON('{\"a\":\"b\"}');\n client.writeJSON('{\"a\":');\n client.writeJSON('\"b\"}');\n});\n\nclient.on('msg', function gotMsg(msg) {\n console.log('Client received message: ', msg.content);\n});\n```\n", + "maintainers": [ + { + "name": "dbrain", + "email": "npm@biboop.com" + } + ], + "time": { + "modified": "2011-11-21T07:07:01.168Z", + "created": "2011-11-21T07:06:52.312Z", + "0.0.1": "2011-11-21T07:07:01.168Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/json-streamer/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "36ebc021ce41a024ad0ba469dcf166fb91153bc1", + "tarball": "http://registry.npmjs.org/json-streamer/-/json-streamer-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/json-streamer/" + }, + "json-streamify": { + "name": "json-streamify", + "description": "Streaming version of `JSON.stringify`", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "dtrejo", + "email": "dtrejo@cs.brown.edu" + } + ], + "time": { + "modified": "2011-11-13T23:54:45.509Z", + "created": "2011-03-27T02:56:07.956Z", + "0.1.0": "2011-03-27T02:56:08.036Z", + "0.1.1": "2011-04-04T22:36:56.891Z", + "0.1.2": "2011-11-13T23:54:45.509Z" + }, + "author": { + "name": "David Trejo", + "email": "dtrejo@cs.brown.edu", + "url": "http://dtrejo.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/DTrejo/json-streamify.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/json-streamify/0.1.0", + "0.1.1": "http://registry.npmjs.org/json-streamify/0.1.1", + "0.1.2": "http://registry.npmjs.org/json-streamify/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "b823ff3adf7bff295c43ba70fea0f92e4862bb66", + "tarball": "http://registry.npmjs.org/json-streamify/-/json-streamify-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "5b5fd4fefa2e04d5adbffeada2801ea1bdf9b88f", + "tarball": "http://registry.npmjs.org/json-streamify/-/json-streamify-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "1a00557322b1c3b6f11079c960cbd2bc492584ef", + "tarball": "http://registry.npmjs.org/json-streamify/-/json-streamify-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/json-streamify/" + }, + "json-streams": { + "name": "json-streams", + "description": "Streams for parsing and stringifying big JSON objects", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "floby", + "email": "florent.jaby@gmail.com" + } + ], + "time": { + "modified": "2011-04-15T20:41:56.334Z", + "created": "2011-04-15T20:41:55.757Z", + "0.1.0": "2011-04-15T20:41:56.334Z" + }, + "author": { + "name": "Florent Jaby", + "email": "florent.jaby@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/floby/node-json-streams.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/json-streams/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "40104f79619854e1f9caa50434c07f25e6958ee7", + "tarball": "http://registry.npmjs.org/json-streams/-/json-streams-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/json-streams/" + }, + "json-tables": { + "name": "json-tables", + "description": "An abstraction for models to be stored in json-storage", + "dist-tags": { + "latest": "0.7.1" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-09-07T14:26:34.936Z", + "created": "2011-09-07T14:26:34.541Z", + "0.7.1": "2011-09-07T14:26:34.936Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com", + "url": "http://coolaj86.info" + }, + "repository": { + "type": "git", + "url": "git://github.com/coolaj86/json-storage-js.git" + }, + "versions": { + "0.7.1": "http://registry.npmjs.org/json-tables/0.7.1" + }, + "dist": { + "0.7.1": { + "shasum": "fb8dd82ebad5957e899d19208e42dc3c9588e10f", + "tarball": "http://registry.npmjs.org/json-tables/-/json-tables-0.7.1.tgz" + } + }, + "keywords": [ + "ender", + "orm", + "sql", + "model", + "json-storage", + "localStorage", + "sessionStorage", + "globalStorage", + "Storage" + ], + "url": "http://registry.npmjs.org/json-tables/" + }, + "json-template": { + "name": "json-template", + "description": "Minimal but powerful templating language implemented in multiple languages.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "trevor", + "email": "trevor@caira.com" + } + ], + "author": { + "name": "Andy Chu", + "url": "andy@chubot.org" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/json-template/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "ae5036ffbc59ffe5f426ec4f03874d41a98aadc3", + "tarball": "http://registry.npmjs.org/json-template/-/json-template-0.1.0.tgz" + } + }, + "keywords": [ + "template", + "json" + ], + "url": "http://registry.npmjs.org/json-template/" + }, + "json-validate": { + "name": "json-validate", + "description": "JavaScript fast json schema validation library", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "# schema.js\n\nJavaScript fast json schema validation library\n\n## API\n\n- validate\n\n## License \n\n(The MIT License)\n\nCopyright (c) 2011 Enrico Marino <enrico.marino@email.com>\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "maintainers": [ + { + "name": "onirame", + "email": "enrico.marino@email.com" + } + ], + "time": { + "modified": "2011-12-01T01:24:15.639Z", + "created": "2011-12-01T01:24:13.624Z", + "0.0.1": "2011-12-01T01:24:15.639Z" + }, + "author": { + "name": "Enrico Marino", + "email": "enrico.marino@email.com", + "url": "onirame.no.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/onirame/json-validate.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/json-validate/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "c82c8d2b41f18163cfee3b32973c5cb9d4583492", + "tarball": "http://registry.npmjs.org/json-validate/-/json-validate-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/json-validate/" + }, + "JSON.sh": { + "name": "JSON.sh", + "description": "", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-10-25T09:43:41.713Z", + "created": "2011-10-25T09:43:36.732Z", + "0.0.0": "2011-10-25T09:43:41.713Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com", + "url": "http://bit.ly/dominictarr" + }, + "repository": { + "type": "git", + "url": "git://github.com/dominictarr/JSON-sh.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/JSON.sh/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "1f2372624c7a02a76f7b10027bb8eb43fb11c453", + "tarball": "http://registry.npmjs.org/JSON.sh/-/JSON.sh-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/JSON.sh/" + }, + "json2": { + "name": "json2", + "description": "json2 / native JSON normalizer for Joose", + "dist-tags": { + "latest": "0.4.0" + }, + "maintainers": [ + { + "name": "samuraijack", + "email": "nickolay8@gmail.com" + } + ], + "author": { + "name": "Nickolay Platonov", + "email": "nplatonov@cpan.org" + }, + "repository": { + "web": "http://github.com/SamuraiJack/JSON2/tree", + "url": "git://github.com/SamuraiJack/JSON2.git", + "type": "git" + }, + "versions": { + "0.01.0": "http://registry.npmjs.org/json2/0.01.0", + "0.02.0": "http://registry.npmjs.org/json2/0.02.0", + "0.3.0": "http://registry.npmjs.org/json2/0.3.0", + "0.4.0": "http://registry.npmjs.org/json2/0.4.0" + }, + "dist": { + "0.01.0": { + "tarball": "http://packages:5984/json2/-/json2-0.01.0.tgz" + }, + "0.02.0": { + "tarball": "http://packages:5984/json2/-/json2-0.02.0.tgz" + }, + "0.3.0": { + "tarball": "http://packages:5984/json2/-/json2-0.3.0.tgz" + }, + "0.4.0": { + "tarball": "http://packages:5984/json2/-/json2-0.4.0.tgz" + } + }, + "url": "http://registry.npmjs.org/json2/" + }, + "json2ify": { + "name": "json2ify", + "description": "JSON2 lib for browsers", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "maccman", + "email": "maccman@gmail.com" + } + ], + "time": { + "modified": "2011-08-03T15:36:55.396Z", + "created": "2011-08-03T15:36:52.724Z", + "0.0.1": "2011-08-03T15:36:55.396Z" + }, + "author": { + "name": "Alex MacCaw", + "email": "info@eribium.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/maccman/json2.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/json2ify/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "f9b9ac1337e1e3734f60dd43c460615d9872691e", + "tarball": "http://registry.npmjs.org/json2ify/-/json2ify-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/json2ify/" + }, + "json2xml": { + "name": "json2xml", + "description": "JSON 2 XML Parser", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "estheban", + "email": "el@evocatio.com" + } + ], + "time": { + "modified": "2011-06-09T21:50:05.607Z", + "created": "2011-06-09T21:50:05.150Z", + "0.0.1": "2011-06-09T21:50:05.607Z" + }, + "author": { + "name": "Etienne Lachance", + "email": "et@etiennelachance.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/estheban/node-json2xml.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/json2xml/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "6d0dbd5e565b2439ea49741068dfc77485f29e1c", + "tarball": "http://registry.npmjs.org/json2xml/-/json2xml-0.0.1.tgz" + } + }, + "keywords": [ + "json", + "xml" + ], + "url": "http://registry.npmjs.org/json2xml/" + }, + "jsonapi": { + "name": "jsonapi", + "description": "Create API scaffolds from JSON documents.", + "dist-tags": { + "latest": "0.2.5" + }, + "readme": null, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-12-09T08:25:30.523Z", + "created": "2011-12-09T08:25:15.504Z", + "0.2.2": "2011-12-09T08:25:18.231Z", + "0.2.5": "2011-12-09T08:25:30.523Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com", + "url": "http://coolaj86.info" + }, + "repository": { + "type": "git", + "url": "git://github.com/coolaj86/jsonapi.git" + }, + "versions": { + "0.2.2": "http://registry.npmjs.org/jsonapi/0.2.2", + "0.2.5": "http://registry.npmjs.org/jsonapi/0.2.5" + }, + "dist": { + "0.2.2": { + "shasum": "f83ebea957e72605b82a9dd618eceac0b372f485", + "tarball": "http://registry.npmjs.org/jsonapi/-/jsonapi-0.2.2.tgz" + }, + "0.2.5": { + "shasum": "ceb49b62bdfb568be25835195053e4a72992293e", + "tarball": "http://registry.npmjs.org/jsonapi/-/jsonapi-0.2.5.tgz" + } + }, + "keywords": [ + "ender", + "api", + "rest", + "server", + "client", + "browser" + ], + "url": "http://registry.npmjs.org/jsonapi/" + }, + "jsonconfig": { + "name": "jsonconfig", + "description": "Simple JSON configuration", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "trevor", + "email": "trevor@caira.com" + } + ], + "time": { + "modified": "2011-02-13T06:02:33.265Z", + "created": "2011-01-14T09:40:03.003Z", + "0.1.0": "2011-01-14T09:40:03.190Z", + "0.2.0": "2011-02-13T06:02:33.265Z" + }, + "author": { + "name": "Trevor Caira", + "email": "trevor@caira.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/jsonconfig/0.1.0", + "0.2.0": "http://registry.npmjs.org/jsonconfig/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "a9e41fb9785ed8062cd484595800db3d7fe39eb4", + "tarball": "http://registry.npmjs.org/jsonconfig/-/jsonconfig-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "a14bbd2e016b8573b3fc37729ce4bc1f9800bd7a", + "tarball": "http://registry.npmjs.org/jsonconfig/-/jsonconfig-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/jsonconfig/" + }, + "jsond": { + "name": "jsond", + "description": "Implements a simple server for sending and receiving JSON messages over HTTP", + "dist-tags": { + "latest": "2.2.0" + }, + "maintainers": [ + { + "name": "sleeplessinc", + "email": "joe@sleepless.com" + } + ], + "time": { + "modified": "2011-09-10T00:18:17.559Z", + "created": "2011-08-05T00:07:43.217Z", + "2.1.0": "2011-08-05T00:07:45.647Z", + "2.1.1": "2011-08-10T01:22:11.742Z", + "2.1.2": "2011-08-10T06:01:04.123Z", + "2.1.3": "2011-08-10T06:03:04.774Z", + "2.1.5": "2011-09-09T20:56:48.395Z", + "2.2.0": "2011-09-10T00:18:17.559Z" + }, + "author": { + "name": "Joe Hitchens", + "email": "joe@sleepless.com", + "url": "sleepless.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/sleeplessinc/jsond.git" + }, + "versions": { + "2.1.0": "http://registry.npmjs.org/jsond/2.1.0", + "2.1.1": "http://registry.npmjs.org/jsond/2.1.1", + "2.1.2": "http://registry.npmjs.org/jsond/2.1.2", + "2.1.3": "http://registry.npmjs.org/jsond/2.1.3", + "2.1.5": "http://registry.npmjs.org/jsond/2.1.5", + "2.2.0": "http://registry.npmjs.org/jsond/2.2.0" + }, + "dist": { + "2.1.0": { + "shasum": "6f5cb961076ef53302cc7ff8ad8b4a37836efc0c", + "tarball": "http://registry.npmjs.org/jsond/-/jsond-2.1.0.tgz" + }, + "2.1.1": { + "shasum": "d61b97a416e3afb5f58d3f850ef098182c3ca6e0", + "tarball": "http://registry.npmjs.org/jsond/-/jsond-2.1.1.tgz" + }, + "2.1.2": { + "shasum": "09196a6654f576c76e3efc2fba3fc02725ed03ac", + "tarball": "http://registry.npmjs.org/jsond/-/jsond-2.1.2.tgz" + }, + "2.1.3": { + "shasum": "a6bfa2cc9154f574d82ebaa7775ddb707afff71b", + "tarball": "http://registry.npmjs.org/jsond/-/jsond-2.1.3.tgz" + }, + "2.1.5": { + "shasum": "dd4155e82392edb998b6342b8b913ac14ad4ba39", + "tarball": "http://registry.npmjs.org/jsond/-/jsond-2.1.5.tgz" + }, + "2.2.0": { + "shasum": "b81b389d0a6357168675b1ac2636ea2c1c7eb7e4", + "tarball": "http://registry.npmjs.org/jsond/-/jsond-2.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/jsond/" + }, + "jsondate": { + "name": "jsondate", + "description": "Date deserialization for JSON.parse", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "stagas", + "email": "gstagas@gmail.com" + } + ], + "time": { + "modified": "2011-04-10T11:58:17.490Z", + "created": "2011-04-10T11:58:16.837Z", + "0.0.1": "2011-04-10T11:58:17.490Z" + }, + "author": { + "name": "George Stagas", + "email": "gstagas@gmail.com", + "url": "http://stagas.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/stagas/jsondate.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jsondate/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "457a9ae01826d19faf7e87c9be263d4f3aa237fc", + "tarball": "http://registry.npmjs.org/jsondate/-/jsondate-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/jsondate/" + }, + "jsonds": { + "name": "jsonds", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "lfdoherty", + "email": "lfdoherty@gmail.com" + } + ], + "time": { + "modified": "2011-04-28T21:45:33.480Z", + "created": "2011-04-28T06:23:18.300Z", + "0.1.0": "2011-04-28T06:23:18.865Z", + "0.1.1": "2011-04-28T06:26:43.081Z", + "0.1.2": "2011-04-28T07:30:23.817Z", + "0.1.3": "2011-04-28T21:45:33.480Z" + }, + "author": { + "name": "Liam Doherty" + }, + "description": "The most agile, unscalable data store possible - a JSON blob periodically flushed to disk.", + "versions": { + "0.1.0": "http://registry.npmjs.org/jsonds/0.1.0", + "0.1.1": "http://registry.npmjs.org/jsonds/0.1.1", + "0.1.2": "http://registry.npmjs.org/jsonds/0.1.2", + "0.1.3": "http://registry.npmjs.org/jsonds/0.1.3" + }, + "dist": { + "0.1.0": { + "shasum": "baae4040934f0a4ee38d2fe08702d9ddf5d5e5d4", + "tarball": "http://registry.npmjs.org/jsonds/-/jsonds-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "e26881dfb56d222a2c3b079e626ca7247fc6b349", + "tarball": "http://registry.npmjs.org/jsonds/-/jsonds-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "68a82950a8e847ad82db2ef1ae64bdb877545f66", + "tarball": "http://registry.npmjs.org/jsonds/-/jsonds-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "93bf48dc997a0ea2af16ae67175e39832dc52583", + "tarball": "http://registry.npmjs.org/jsonds/-/jsonds-0.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/jsonds/" + }, + "jsonds2": { + "name": "jsonds2", + "description": "A complete redesign of jsonds, with the same philosophy but a more scalable architecture.", + "dist-tags": { + "latest": "2.0.0" + }, + "maintainers": [ + { + "name": "lfdoherty", + "email": "lfdoherty@gmail.com" + } + ], + "time": { + "modified": "2011-07-12T06:38:07.552Z", + "created": "2011-07-12T06:38:06.819Z", + "2.0.0": "2011-07-12T06:38:07.552Z" + }, + "author": { + "name": "Liam Doherty" + }, + "versions": { + "2.0.0": "http://registry.npmjs.org/jsonds2/2.0.0" + }, + "dist": { + "2.0.0": { + "shasum": "ddb71b27785267b03817623f640ab7c81d15708a", + "tarball": "http://registry.npmjs.org/jsonds2/-/jsonds2-2.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/jsonds2/" + }, + "jsonfig": { + "name": "jsonfig", + "description": "Simple json config folder manager", + "dist-tags": { + "latest": "0.0.3" + }, + "readme": "# JSONFig\nJSONFig makes it dead easy to manage a folder full of json config files your app depends on.\n\n## Requirements\n* Node.js 0.4+\n\n## Install\n\n npm install jsonfig\n\n## Usage\n\n jsonfig.env('production').load(__dirname+'/config', function (conf) {\n console.log(conf.get('redis.host'))\n })\n\n#### jsonfig.env(name)\nSets the environment name to scope to in your json configs, if available.\n\n#### jsonfig.path(path)\nSets the folder to load json configs. NOTE: sub directories aren't supported yet. I'll deal with that later.\n\n#### jsonfig.load([path], callback)\nThis tells jsonfig to start loading the json files and run the callback when it's complete. The callback takes two arguments (err, conf)\n\n#### conf.get(path)\nAs a little bonus, the conf object passed into the jsonfig.load() callback includes a handy little helper for searching for values using a dot-path string. For example; conf.get('redis.host')\n\n---\n\n### Copyright (c) 2011 Stephen Belanger\n#### Licensed under MIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "maintainers": [ + { + "name": "qard", + "email": "admin@stephenbelanger.com" + } + ], + "time": { + "modified": "2011-12-13T20:25:46.582Z", + "created": "2011-11-10T05:29:08.085Z", + "0.0.0": "2011-11-10T05:29:09.424Z", + "0.0.1": "2011-11-19T20:08:41.581Z", + "0.0.2": "2011-12-13T20:16:29.001Z", + "0.0.3": "2011-12-13T20:25:46.582Z" + }, + "author": { + "name": "Stephen Belanger", + "email": "admin@stephenbelanger.com", + "url": "http://stephenbelanger.com" + }, + "repository": { + "url": "git://github.com/Qard/jsonfig.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/jsonfig/0.0.0", + "0.0.1": "http://registry.npmjs.org/jsonfig/0.0.1", + "0.0.2": "http://registry.npmjs.org/jsonfig/0.0.2", + "0.0.3": "http://registry.npmjs.org/jsonfig/0.0.3" + }, + "dist": { + "0.0.0": { + "shasum": "86a6084cf297335f125ea266578eeac9376ddbb8", + "tarball": "http://registry.npmjs.org/jsonfig/-/jsonfig-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "be88b667f716092d55527eef91cf31b5b84d700a", + "tarball": "http://registry.npmjs.org/jsonfig/-/jsonfig-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "1fe30fa7f656364fb15be98e6a1833142517967a", + "tarball": "http://registry.npmjs.org/jsonfig/-/jsonfig-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "b32247fe4470a7a9329325d60a8fc6575cbd5fc7", + "tarball": "http://registry.npmjs.org/jsonfig/-/jsonfig-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/jsonfig/" + }, + "jsonfiles": { + "name": "jsonfiles", + "description": "Simple flat file database of json object.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "mikeal", + "email": "mikeal.rogers@gmail.com" + } + ], + "time": { + "modified": "2011-06-07T18:00:42.549Z", + "created": "2011-06-07T18:00:41.984Z", + "0.0.1": "2011-06-07T18:00:42.549Z" + }, + "author": { + "name": "Mikeal Rogers", + "email": "mikeal.rogers@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mikeal/jsonfiles.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jsonfiles/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "4cbdbc618ee2f58204899c9b52673b51664723eb", + "tarball": "http://registry.npmjs.org/jsonfiles/-/jsonfiles-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/jsonfiles/" + }, + "jsonh": { + "name": "jsonh", + "dist-tags": { + "latest": "0.0.2" + }, + "readme": "[JSONH](http://webreflection.blogspot.com/2011/08/last-version-of-json-hpack.html) - JSON Homogeneous Collections Compressor\n============================================================================================================================\n\nWhat is JSONH\n-------------\n\nJSONH is one of the most performant, yet safe, cross programming language, way to pack and unpack generic homogenous collections.\nBased on native or shimmed JSON implementation, JSONH is nothing different than a procedure performed right before `JSON.stringify(data)` or right after `JSON.parse(data)`\n\n[It is demonstrated](http://jsperf.com/jsonh/2) that overall performances of JSONH are up to 3 times faster in compression and 2 times in parsing thanks to smaller and simplified nature of the collection/string.\n\nIt is also demonstrated that resulting bandwidth size will be incrementally smaller than equivalent JSON operation reaching, in certain cases, down to 30% of original size and without gzip/deflate compression in place.\n\nJSONH is the latest version of [json.hpack](https://github.com/WebReflection/json.hpack) project and based on [JSONDB concept](http://michaux.ca/articles/json-db-a-compressed-json-format).\n\nNew in version 0.0.2 ( JS only )\n--------------------------------\n * added experimental and optional `schema` argument at the end of all methods in order to parse automatically one or more nested homogenous collections\n * covered via unit tests pack/unpack with or without the usage of a schema\n\n\nWhat is an Homogenous Collection\n--------------------------------\n\nUsually a database result set, stored as list of objects where all of them contains the same amount of keys with identical name.\nThis is a basic homogeneous collection example: `[{\"a\":\"A\",\"b\":\"B\"},{\"a\":\"C\",\"b\":\"D\"},{\"a\":\"E\",\"b\":\"F\"}]`\nWe all have exchange over the network one or more homogenous collections at least once.\nJSONH is able to pack the example into `[2,\"a\",\"b\",\"A\",\"B\",\"C\",\"D\",\"E\",\"F\"]` and unpack it into original collection at light speed.\n\n\nJSONH is suitable for\n---------------------\n\n * runtime data compression with or without gzip/deflate on both client and server side\n * creation of static JavaScript files to serve in order to save space on Hard Drive and eventually make runtime gzip/deflate compression easier (smaller input)\n * send huge collection of data from the client to the server and improving performances over `JSON.stringify(data)` and required network bandwidth\n\nIf the generic object/data contains one or more homogenous collections, JSONH is suitable for these cases too via `pack` and `unpack` operations.\nPlease read the [related post](http://webreflection.blogspot.com/2011/08/jsonh-and-hybrid-js-objects.html) to know more.\n\n\nJSONH API\n---------\nEvery implementation is suitable for the programming language code style and every method supports original JSON signature.\nAs example the JavaScript version is a global `JSONH` object with `stringify`, `parse`, `pack`, and `unpack` methods.\n\nThe python version is a module similar to `json` one with current methods: `dump`, `dumps`, `load`, `loads`, `pack`, and `unpack`.\n\n import jsonh\n \n print(jsonh.dumps(\n [{\"a\": \"A\", \"b\": \"B\"}, {\"a\": \"C\", \"b\": \"D\"}, {\"a\": \"E\", \"b\": \"F\"}],\n separator = (',',':')\n ))\n\n\nThe php 5 version is a static class plus some function in order to let developers decide for their favorite stile.\nExtra arguments accepted by `json_encode` and `json_decode` are supported as well.\n\n require_once('JSONH.class.php');\n \n // classic style\n jsonh_encode($object); // jsonh_decode($str)\n \n // static public style\n JSONH::stringify($object); // JSONH::parse($str);\n \n // singleton style\n JSONH()->stringify($object); // JSONH()->parse($str)\n \n\n\nTODO\n----\n\n * clean up locally tests and use a standard one able to cover all aspects per each implementation\n * C# version, and hopefully with other developers help other languages too\n * simplified yet cross platform way to *map* hybrid objects, specifying via white list one or more nested properties to `pack` on stringify, and `unpack` on parse (automated and addressed compression for complex objects)\n\nJavaScript And Native JSON Escape Problems\n------------------------------------------\nAs [@garethheyes](https://twitter.com/garethheyes) pointed out by in [this post](http://www.thespanner.co.uk/2011/07/25/the-json-specification-is-now-wrong/), native `JSON.stringify(data)` may produce invalid JavaScript.\nSince JSONH aim is *not* to change native JSON behavior, neither is JSONH a replacement for JSON, all I can suggest is to perform this replacement when and if data could be corrupted:\n\n JSONH.stringify(data).replace(\n /\\u2028|\\u2029/g,\n function (m) {\n return \"\\\\u202\" + (m === \"\\u2028\" ? \"8\" : \"9\");\n })\n\nThis will ensure proper escape for those characters plus performances will be still better thanks to reduced string output size (compared with the euivalent operation performed by `JSON.stringify(data)`).", + "maintainers": [ + { + "name": "webreflection", + "email": "andrea.giammarchi@gmail.com" + } + ], + "time": { + "modified": "2011-12-05T22:08:49.320Z", + "created": "2011-12-05T22:08:46.141Z", + "0.0.2": "2011-12-05T22:08:49.320Z" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/jsonh/0.0.2" + }, + "dist": { + "0.0.2": { + "shasum": "42b014cb028357bf8deda3c07b3b0d3fd982ef6a", + "tarball": "http://registry.npmjs.org/jsonh/-/jsonh-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/jsonh/" + }, + "jsonify": { + "name": "jsonify", + "description": "JSON without touching any globals", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-08-21T12:22:24.348Z", + "created": "2011-08-21T12:22:23.032Z", + "0.0.0": "2011-08-21T12:22:24.348Z" + }, + "author": { + "name": "Douglas Crockford", + "url": "http://crockford.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/jsonify.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/jsonify/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "2c74b6ee41d93ca51b7b5aaee8f503631d252a73", + "tarball": "http://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz" + } + }, + "keywords": [ + "json", + "browser" + ], + "url": "http://registry.npmjs.org/jsonify/" + }, + "jsonize": { + "name": "jsonize", + "description": "a module for creating JSON apis", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "mafintosh", + "email": "mathiasbuus@gmail.com" + } + ], + "time": { + "modified": "2011-08-29T00:17:28.286Z", + "created": "2011-08-29T00:17:26.529Z", + "0.1.0": "2011-08-29T00:17:28.286Z" + }, + "author": { + "name": "Mathias Buus Madsen", + "email": "mathiasbuus@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/jsonize/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "24d872c04b9a8bb5d24450d4ce9bb42a890ec57a", + "tarball": "http://registry.npmjs.org/jsonize/-/jsonize-0.1.0.tgz" + } + }, + "keywords": [ + "wrapper", + "JSON", + "api", + "request" + ], + "url": "http://registry.npmjs.org/jsonize/" + }, + "jsonlint": { + "name": "jsonlint", + "description": "Validate JSON", + "dist-tags": { + "latest": "1.2.1" + }, + "maintainers": [ + { + "name": "zaach", + "email": "zack.carter@gmail.com" + } + ], + "time": { + "modified": "2011-11-22T00:50:10.496Z", + "created": "2011-05-01T21:37:12.642Z", + "1.0.0": "2011-05-01T21:37:13.495Z", + "1.0.1": "2011-05-21T05:30:38.422Z", + "1.1.0": "2011-06-01T21:57:13.504Z", + "1.1.1": "2011-06-04T14:32:26.954Z", + "1.2.0": "2011-06-12T17:43:16.360Z", + "1.2.1": "2011-11-22T00:50:10.496Z" + }, + "author": { + "name": "Zach Carter", + "email": "zach@carter.name", + "url": "http://zaa.ch" + }, + "repository": { + "type": "git", + "url": "git://github.com/zaach/jsonlint.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/jsonlint/1.0.0", + "1.0.1": "http://registry.npmjs.org/jsonlint/1.0.1", + "1.1.0": "http://registry.npmjs.org/jsonlint/1.1.0", + "1.1.1": "http://registry.npmjs.org/jsonlint/1.1.1", + "1.2.0": "http://registry.npmjs.org/jsonlint/1.2.0", + "1.2.1": "http://registry.npmjs.org/jsonlint/1.2.1" + }, + "dist": { + "1.0.0": { + "shasum": "5531c1ea1c8df005a98555263e441b37fd3a4a53", + "tarball": "http://registry.npmjs.org/jsonlint/-/jsonlint-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "257139950ee864d308809ff27b38cc691075ef08", + "tarball": "http://registry.npmjs.org/jsonlint/-/jsonlint-1.0.1.tgz" + }, + "1.1.0": { + "shasum": "3dc4054b5f2ec538ff08033ed8b20d0955da16b5", + "tarball": "http://registry.npmjs.org/jsonlint/-/jsonlint-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "f68bedbc939a68d7a02fd6e251c2064301bf83dd", + "tarball": "http://registry.npmjs.org/jsonlint/-/jsonlint-1.1.1.tgz" + }, + "1.2.0": { + "shasum": "103cbe5e379bb10704c87f3b68b6bd92ccade69c", + "tarball": "http://registry.npmjs.org/jsonlint/-/jsonlint-1.2.0.tgz" + }, + "1.2.1": { + "shasum": "96e3614e0b48b712db837cdb0d8fc042e41250f2", + "tarball": "http://registry.npmjs.org/jsonlint/-/jsonlint-1.2.1.tgz" + } + }, + "keywords": [ + "json", + "validation", + "lint", + "jsonlint" + ], + "url": "http://registry.npmjs.org/jsonlint/" + }, + "JSONloops": { + "name": "JSONloops", + "description": "a real-time multiuser audio sequencer", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "marak", + "email": "marak.squires@gmail.com" + } + ], + "time": { + "modified": "2011-03-01T19:43:12.973Z", + "created": "2011-03-01T19:43:12.391Z", + "0.1.0": "2011-03-01T19:43:12.973Z" + }, + "author": { + "name": "Marak Squires", + "email": "marak.squires@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Marak/JSONloops.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/JSONloops/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "91ac9c86d704cc999b42f227cea54aab4f6b53ab", + "tarball": "http://registry.npmjs.org/JSONloops/-/JSONloops-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/JSONloops/" + }, + "jsonml": { + "name": "jsonml", + "description": "JsonML library", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "raszi", + "email": "npm@spam.raszi.hu" + } + ], + "time": { + "modified": "2011-10-21T12:10:13.318Z", + "created": "2011-09-07T12:33:43.180Z", + "0.0.1": "2011-09-07T12:33:44.801Z", + "0.0.2": "2011-10-21T12:10:13.318Z" + }, + "author": { + "name": "KARASZI István", + "email": "github@spam.raszi.hu", + "url": "http://raszi.hu/" + }, + "repository": { + "type": "git", + "url": "git://github.com/raszi/node-jsonml.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jsonml/0.0.1", + "0.0.2": "http://registry.npmjs.org/jsonml/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "56a484cd37b16653ca4c424586cd0a727c37c1cc", + "tarball": "http://registry.npmjs.org/jsonml/-/jsonml-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "09d05d3f7fcb743a12a8af130068b3884df1a991", + "tarball": "http://registry.npmjs.org/jsonml/-/jsonml-0.0.2.tgz" + } + }, + "keywords": [ + "json", + "xml", + "jsonml" + ], + "url": "http://registry.npmjs.org/jsonml/" + }, + "jsonp-filter": { + "name": "jsonp-filter", + "description": "JSONP filter for express", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "veerman", + "email": "sveerman@postmedia.com" + } + ], + "time": { + "modified": "2011-10-03T14:32:39.474Z", + "created": "2011-10-03T14:32:39.270Z", + "0.0.2": "2011-10-03T14:32:39.474Z" + }, + "author": { + "name": "Stephen Veerman", + "email": "sveerman@postmedia.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Postmedia/jsonp-filter.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/jsonp-filter/0.0.2" + }, + "dist": { + "0.0.2": { + "shasum": "3d45b8ec22273b9e66599b391aed81c988f8bb63", + "tarball": "http://registry.npmjs.org/jsonp-filter/-/jsonp-filter-0.0.2.tgz" + } + }, + "keywords": [ + "coffeescript", + "express", + "json", + "jsonp" + ], + "url": "http://registry.npmjs.org/jsonp-filter/" + }, + "jsonparse": { + "name": "jsonparse", + "description": "This is a pure-js JSON streaming parser for node.js", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "creationix", + "email": "tim@creationix.com" + } + ], + "time": { + "modified": "2011-11-14T21:23:13.346Z", + "created": "2011-01-18T23:15:12.936Z", + "0.0.1": "2011-01-18T23:15:13.506Z" + }, + "author": { + "name": "Tim Caswell", + "email": "tim@creationix.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/creationix/jsonparse.git" + }, + "users": { + "creationix": true + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jsonparse/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "75df8104e735a59adb24a502ce7dd9c9072ad62c", + "tarball": "http://registry.npmjs.org/jsonparse/-/jsonparse-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/jsonparse/" + }, + "jsonpatch": { + "name": "jsonpatch", + "description": "An implementation of JSON Patch and JSON Pointer IETF drafts", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "almost", + "email": "tom@almostobsolete.net" + } + ], + "time": { + "modified": "2011-10-28T11:23:28.113Z", + "created": "2011-10-28T11:03:35.772Z", + "0.0.1": "2011-10-28T11:23:28.113Z" + }, + "author": { + "name": "Thomas Parslow", + "email": "tom@almostobsolete.net", + "url": "http://almostobsolete.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/dhamrafly/jsonpatch.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jsonpatch/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "a9b4a8f2ce1614232e707abea50492c3a3c7616a", + "tarball": "http://registry.npmjs.org/jsonpatch/-/jsonpatch-0.0.1.tgz" + } + }, + "keywords": [ + "diff", + "patch", + "json", + "jsonpatch", + "jsonpointer" + ], + "url": "http://registry.npmjs.org/jsonpatch/" + }, + "JSONPath": { + "name": "JSONPath", + "description": "A JS implementation of JSONPath", + "dist-tags": { + "latest": "0.8.5" + }, + "maintainers": [ + { + "name": "s3u", + "email": "subbu@subbu.org" + } + ], + "time": { + "modified": "2011-12-02T22:19:51.851Z", + "created": "2011-05-07T20:12:46.559Z", + "0.8.0": "2011-05-07T20:12:47.217Z", + "0.8.1": "2011-08-27T04:22:26.843Z", + "0.8.2": "2011-09-19T17:23:54.870Z", + "0.8.3": "2011-11-03T15:20:02.085Z", + "0.8.4": "2011-11-18T04:08:06.154Z", + "0.8.5": "2011-12-02T22:19:51.851Z" + }, + "author": { + "name": "Stefan Goessner" + }, + "repository": { + "type": "git", + "url": "git://github.com/s3u/JSONPath.git" + }, + "versions": { + "0.8.0": "http://registry.npmjs.org/JSONPath/0.8.0", + "0.8.1": "http://registry.npmjs.org/JSONPath/0.8.1", + "0.8.2": "http://registry.npmjs.org/JSONPath/0.8.2", + "0.8.3": "http://registry.npmjs.org/JSONPath/0.8.3", + "0.8.4": "http://registry.npmjs.org/JSONPath/0.8.4", + "0.8.5": "http://registry.npmjs.org/JSONPath/0.8.5" + }, + "dist": { + "0.8.0": { + "shasum": "52b8e9d3856150cb154e1d35dca2d0824dd01028", + "tarball": "http://registry.npmjs.org/JSONPath/-/JSONPath-0.8.0.tgz" + }, + "0.8.1": { + "shasum": "cf9e815d98b3ccd1a43e87111306220ea23eab3d", + "tarball": "http://registry.npmjs.org/JSONPath/-/JSONPath-0.8.1.tgz" + }, + "0.8.2": { + "shasum": "d43f88418d0e069bc8178492d76e4b0d4951ebec", + "tarball": "http://registry.npmjs.org/JSONPath/-/JSONPath-0.8.2.tgz" + }, + "0.8.3": { + "shasum": "9aaa306261e11ee26e09ea9942a9f3bed9abf3d3", + "tarball": "http://registry.npmjs.org/JSONPath/-/JSONPath-0.8.3.tgz" + }, + "0.8.4": { + "shasum": "140f03aa4f4f5ca5f83b8eb899e500c71a56c204", + "tarball": "http://registry.npmjs.org/JSONPath/-/JSONPath-0.8.4.tgz" + }, + "0.8.5": { + "shasum": "7019cacd1e7c620804f21bf1a89e1d1f7aef59ca", + "tarball": "http://registry.npmjs.org/JSONPath/-/JSONPath-0.8.5.tgz" + } + }, + "url": "http://registry.npmjs.org/JSONPath/" + }, + "jsonpointer": { + "name": "jsonpointer", + "description": "Simple JSON Addressing.", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "jan", + "email": "jan@apache.org" + } + ], + "time": { + "modified": "2011-07-31T19:30:55.058Z", + "created": "2011-07-13T22:20:36.647Z", + "1.0.0": "2011-07-13T22:20:37.406Z", + "1.0.1": "2011-07-31T19:30:55.058Z" + }, + "author": { + "name": "Jan Lehnardt", + "email": "jan@apache.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/janl/node-jsonpointer.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/jsonpointer/1.0.0", + "1.0.1": "http://registry.npmjs.org/jsonpointer/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "846c00c02608c312122cacc86292bec186e2d2a8", + "tarball": "http://registry.npmjs.org/jsonpointer/-/jsonpointer-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "ad2d547d447214f4d0c595fad0cea10c9e063c55", + "tarball": "http://registry.npmjs.org/jsonpointer/-/jsonpointer-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/jsonpointer/" + }, + "jsonprettify": { + "name": "jsonprettify", + "description": "prettify JSON documents", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "drtom", + "email": "DrTom@schank.ch" + } + ], + "time": { + "modified": "2011-05-20T21:24:30.397Z", + "created": "2011-05-20T21:24:28.686Z", + "0.1.1": "2011-05-20T21:24:30.397Z" + }, + "author": { + "name": "Thomas Schank", + "email": "DrTom@schank.ch", + "url": "http://Dr.Th.Schank.ch/" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/jsonprettify/0.1.1" + }, + "dist": { + "0.1.1": { + "shasum": "3c6215f42e6c921e73244bdd045c6eabdf9b30fb", + "tarball": "http://registry.npmjs.org/jsonprettify/-/jsonprettify-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/jsonprettify/" + }, + "jsonpwrapper-com": { + "name": "jsonpwrapper-com", + "description": "http://jsonpwrapper.com/", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "nv", + "email": "me@elv1s.ru" + } + ], + "time": { + "modified": "2011-11-22T00:44:39.863Z", + "created": "2011-11-22T00:44:39.102Z", + "1.0.0": "2011-11-22T00:44:39.863Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/NV/jsonpwrapper.com.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/jsonpwrapper-com/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "afdc3365b0ea2b8152f88f4d2975603908d86709", + "tarball": "http://registry.npmjs.org/jsonpwrapper-com/-/jsonpwrapper-com-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/jsonpwrapper-com/" + }, + "jsonreq": { + "name": "jsonreq", + "description": "JSON requests made easy.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "aseemk", + "email": "aseem.kishore@gmail.com" + } + ], + "time": { + "modified": "2011-04-10T08:04:37.404Z", + "created": "2011-04-09T01:20:26.053Z", + "0.0.1": "2011-04-09T01:20:26.767Z", + "0.1.0": "2011-04-10T08:04:37.404Z" + }, + "author": { + "name": "Aseem Kishore", + "email": "aseem.kishore@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/aseemk/node-jsonreq.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jsonreq/0.0.1", + "0.1.0": "http://registry.npmjs.org/jsonreq/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "197f14798543c6c6958fb2fbe0df57a8d2ff7541", + "tarball": "http://registry.npmjs.org/jsonreq/-/jsonreq-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "a82c23b06ec13952bbfce363dfe7d560fa3bc52b", + "tarball": "http://registry.npmjs.org/jsonreq/-/jsonreq-0.1.0.tgz" + } + }, + "keywords": [ + "json", + "request", + "http", + "get", + "post" + ], + "url": "http://registry.npmjs.org/jsonreq/" + }, + "jsonrpc": { + "name": "jsonrpc", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "andris", + "email": "andris@node.ee" + } + ], + "time": { + "modified": "2011-06-22T07:42:01.478Z", + "created": "2011-06-22T07:23:12.701Z", + "0.1.0-beta": "2011-06-22T07:23:12.701Z", + "0.1.0": "2011-06-22T07:23:12.701Z", + "0.1.1": "2011-06-22T07:42:01.478Z" + }, + "versions": { + "0.1.0-beta": "http://registry.npmjs.org/jsonrpc/0.1.0-beta", + "0.1.0": "http://registry.npmjs.org/jsonrpc/0.1.0", + "0.1.1": "http://registry.npmjs.org/jsonrpc/0.1.1" + }, + "dist": { + "0.1.0-beta": { + "tarball": "http://packages:5984/jsonrpc/-/jsonrpc-0.1.0-beta.tgz" + }, + "0.1.0": { + "shasum": "e44bc1cfb5bcc59adeec2a7f6bea162de49def7f", + "tarball": "http://registry.npmjs.org/jsonrpc/-/jsonrpc-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "4e5d8e8b78c9ab109bac6df7501cca648089bdbd", + "tarball": "http://registry.npmjs.org/jsonrpc/-/jsonrpc-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/jsonrpc/" + }, + "jsonrpc-client": { + "name": "jsonrpc-client", + "description": "Lightweight JSON-RPC client using scoped-http-client", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "andyfowler", + "email": "andy@andyfowler.com" + } + ], + "time": { + "modified": "2011-10-31T02:55:08.365Z", + "created": "2011-10-31T02:55:07.756Z", + "0.1.1": "2011-10-31T02:55:08.365Z" + }, + "author": { + "name": "Andy Fowler", + "url": "http://github.com/andyfowler" + }, + "repository": { + "type": "git", + "url": "git://github.com/andyfowler/node-jsonrpc-client.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/jsonrpc-client/0.1.1" + }, + "dist": { + "0.1.1": { + "shasum": "44e14aa6f44b24cfaa87a693fcf72b15f94a8424", + "tarball": "http://registry.npmjs.org/jsonrpc-client/-/jsonrpc-client-0.1.1.tgz" + } + }, + "keywords": [ + "json-rpc", + "jsonrpc", + "coffeescript" + ], + "url": "http://registry.npmjs.org/jsonrpc-client/" + }, + "jsonrpc-ws": { + "name": "jsonrpc-ws", + "description": "A json rpc library over web sockets.", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "enix", + "email": "ernstnaezer@gmail.com" + } + ], + "time": { + "modified": "2011-04-09T20:31:08.803Z", + "created": "2011-04-09T12:18:15.619Z", + "0.0.1": "2011-04-09T12:18:16.048Z", + "0.0.2": "2011-04-09T12:43:52.110Z", + "0.0.3": "2011-04-09T20:31:08.803Z" + }, + "author": { + "name": "Ernst Naezer", + "email": "ernstnaezer@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/enix/node-jsonrpc-ws.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jsonrpc-ws/0.0.1", + "0.0.2": "http://registry.npmjs.org/jsonrpc-ws/0.0.2", + "0.0.3": "http://registry.npmjs.org/jsonrpc-ws/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "223e6a8ca040f3388422317934e6cbdd28ee7bc0", + "tarball": "http://registry.npmjs.org/jsonrpc-ws/-/jsonrpc-ws-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "e9c1f25d4a74a953aa280ac405b9e2f9962a8d91", + "tarball": "http://registry.npmjs.org/jsonrpc-ws/-/jsonrpc-ws-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "0b7366879e1d19217ced6a2d15a34139a8761a0f", + "tarball": "http://registry.npmjs.org/jsonrpc-ws/-/jsonrpc-ws-0.0.3.tgz" + } + }, + "keywords": [ + "rpc", + "web socket", + "json" + ], + "url": "http://registry.npmjs.org/jsonrpc-ws/" + }, + "jsonrpc2": { + "name": "jsonrpc2", + "description": "JSON-RPC server and client library", + "dist-tags": { + "latest": "0.0.8" + }, + "maintainers": [ + { + "name": "bitcoinjs", + "email": "bitcoinjs@justmoon.net" + } + ], + "time": { + "modified": "2011-12-04T01:48:08.635Z", + "created": "2011-07-01T21:18:55.381Z", + "0.0.1": "2011-07-01T21:18:56.103Z", + "0.0.2": "2011-07-01T21:19:27.307Z", + "0.0.3": "2011-07-04T18:31:39.823Z", + "0.0.4": "2011-07-05T12:09:39.347Z", + "0.0.5": "2011-07-05T12:19:42.829Z", + "0.0.6": "2011-07-16T19:16:24.013Z", + "0.0.8": "2011-12-04T01:48:08.635Z" + }, + "author": { + "name": "Eric Florenzano", + "email": "floguy@gmail.com", + "url": "eflorenzano.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/bitcoinjs/node-jsonrpc2.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jsonrpc2/0.0.1", + "0.0.2": "http://registry.npmjs.org/jsonrpc2/0.0.2", + "0.0.3": "http://registry.npmjs.org/jsonrpc2/0.0.3", + "0.0.4": "http://registry.npmjs.org/jsonrpc2/0.0.4", + "0.0.5": "http://registry.npmjs.org/jsonrpc2/0.0.5", + "0.0.6": "http://registry.npmjs.org/jsonrpc2/0.0.6", + "0.0.8": "http://registry.npmjs.org/jsonrpc2/0.0.8" + }, + "dist": { + "0.0.1": { + "shasum": "84b20c1bfe1ff141b508400c344cc471e0689191", + "tarball": "http://registry.npmjs.org/jsonrpc2/-/jsonrpc2-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "73ce4cbad90abe6c7722ec75759a85ce533ee786", + "tarball": "http://registry.npmjs.org/jsonrpc2/-/jsonrpc2-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "528536e7f7e43886de11665ee67e6565a35907c7", + "tarball": "http://registry.npmjs.org/jsonrpc2/-/jsonrpc2-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "e80c31d92a68e2e779976fb4fca005b139583884", + "tarball": "http://registry.npmjs.org/jsonrpc2/-/jsonrpc2-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "6d9f98ece956decdaf53cb3f239c906eab8f190b", + "tarball": "http://registry.npmjs.org/jsonrpc2/-/jsonrpc2-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "90946d962913359f41407aa0f7c662c94b4c199a", + "tarball": "http://registry.npmjs.org/jsonrpc2/-/jsonrpc2-0.0.6.tgz" + }, + "0.0.8": { + "shasum": "112524080ad6add85c62804c6b1281093992052f", + "tarball": "http://registry.npmjs.org/jsonrpc2/-/jsonrpc2-0.0.8.tgz" + } + }, + "keywords": [ + "json", + "rpc", + "server", + "client" + ], + "url": "http://registry.npmjs.org/jsonrpc2/" + }, + "JSONSelect": { + "name": "JSONSelect", + "description": "CSS-like selectors for JSON", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "lloyd", + "email": "lloyd@hilaiel.com" + } + ], + "time": { + "modified": "2011-10-25T19:07:00.266Z", + "created": "2011-05-22T14:52:09.489Z", + "0.0.1": "2011-05-22T14:52:09.864Z", + "0.1.0": "2011-06-01T21:12:59.691Z", + "0.2.0": "2011-06-03T15:33:11.086Z", + "0.2.1": "2011-06-12T14:14:18.637Z", + "0.2.2": "2011-10-25T19:07:00.266Z" + }, + "author": { + "name": "Lloyd Hilaiel", + "email": "lloyd@hilaiel.com", + "url": "http://trickyco.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/lloyd/JSONSelect.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/JSONSelect/0.0.1", + "0.1.0": "http://registry.npmjs.org/JSONSelect/0.1.0", + "0.2.0": "http://registry.npmjs.org/JSONSelect/0.2.0", + "0.2.1": "http://registry.npmjs.org/JSONSelect/0.2.1", + "0.2.2": "http://registry.npmjs.org/JSONSelect/0.2.2" + }, + "dist": { + "0.0.1": { + "shasum": "7e6a64a1c3e6e1d505ccdcfcee710017048c867f", + "tarball": "http://registry.npmjs.org/JSONSelect/-/JSONSelect-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "4425af3d551ce413a1dae22f11668091ea307c15", + "tarball": "http://registry.npmjs.org/JSONSelect/-/JSONSelect-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "c7e22be1ffeb1b975880e465c5b748496f07366c", + "tarball": "http://registry.npmjs.org/JSONSelect/-/JSONSelect-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "415418a526d33fe31d74b4defa3c836d485ec203", + "tarball": "http://registry.npmjs.org/JSONSelect/-/JSONSelect-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "c6f081f5305de89f9f4e64a203304edc0177f8d5", + "tarball": "http://registry.npmjs.org/JSONSelect/-/JSONSelect-0.2.2.tgz" + } + }, + "url": "http://registry.npmjs.org/JSONSelect/" + }, + "jsonsp": { + "name": "jsonsp", + "description": "JSON Stream Parser for Node.js.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "jaredhanson", + "email": "jaredhanson@gmail.com" + } + ], + "time": { + "modified": "2011-10-27T03:35:08.216Z", + "created": "2011-10-27T03:35:06.675Z", + "0.1.0": "2011-10-27T03:35:08.216Z" + }, + "author": { + "name": "Jared Hanson", + "email": "jaredhanson@gmail.com", + "url": "http://www.jaredhanson.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jaredhanson/node-jsonsp.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/jsonsp/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "e43ac0bfba01cee3b2aaaccc3502d89915820350", + "tarball": "http://registry.npmjs.org/jsonsp/-/jsonsp-0.1.0.tgz" + } + }, + "keywords": [ + "json" + ], + "url": "http://registry.npmjs.org/jsonsp/" + }, + "JSONStream": { + "name": "JSONStream", + "description": "rawStream.pipe(JSONStream.parse()).pipe(streamOfObjects)", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-12-04T10:14:27.411Z", + "created": "2011-09-23T11:01:36.806Z", + "0.0.0": "2011-09-23T11:01:40.295Z", + "0.1.0": "2011-09-23T12:45:34.218Z", + "0.1.1": "2011-09-26T02:57:57.814Z", + "0.1.2": "2011-10-05T11:53:45.443Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com", + "url": "http://bit.ly/dominictarr" + }, + "repository": { + "type": "git", + "url": "git://github.com/dominictarr/JSONStream.git" + }, + "users": { + "substack": true + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/JSONStream/0.0.0", + "0.1.0": "http://registry.npmjs.org/JSONStream/0.1.0", + "0.1.1": "http://registry.npmjs.org/JSONStream/0.1.1", + "0.1.2": "http://registry.npmjs.org/JSONStream/0.1.2" + }, + "dist": { + "0.0.0": { + "shasum": "cd81636260f432847780fb5a48ab0be0ed264ba6", + "tarball": "http://registry.npmjs.org/JSONStream/-/JSONStream-0.0.0.tgz" + }, + "0.1.0": { + "shasum": "66d9f4fe782cd91c1f671193f30fcbd2a7d4ebc7", + "tarball": "http://registry.npmjs.org/JSONStream/-/JSONStream-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "e2c482fdf9a78be634a50d063e576a95f4e6bca7", + "tarball": "http://registry.npmjs.org/JSONStream/-/JSONStream-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "ee0908f1612c3c280683f5c91b426cb15513c122", + "tarball": "http://registry.npmjs.org/JSONStream/-/JSONStream-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/JSONStream/" + }, + "jsontool": { + "name": "jsontool", + "description": "a 'json' command for massaging JSON on your Unix command line", + "dist-tags": { + "latest": "2.1.0" + }, + "maintainers": [ + { + "name": "trentm", + "email": "trentm@gmail.com" + } + ], + "time": { + "modified": "2011-12-01T06:04:25.880Z", + "created": "2011-05-08T20:43:25.123Z", + "1.3.0": "2011-05-08T20:43:25.743Z", + "1.3.1": "2011-05-30T19:10:27.471Z", + "1.3.2": "2011-08-03T23:36:35.772Z", + "1.3.3": "2011-08-11T06:49:30.384Z", + "1.3.4": "2011-08-11T07:38:50.650Z", + "1.4.0": "2011-09-16T16:39:50.768Z", + "1.4.1": "2011-09-29T20:13:22.093Z", + "2.0.0": "2011-10-05T17:58:39.095Z", + "2.0.1": "2011-10-25T21:44:48.416Z", + "2.0.2": "2011-11-08T05:58:01.897Z", + "2.0.3": "2011-11-08T19:31:05.206Z", + "2.1.0": "2011-12-01T06:04:25.880Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/trentm/json.git" + }, + "users": { + "isaacs": true + }, + "versions": { + "1.3.0": "http://registry.npmjs.org/jsontool/1.3.0", + "1.3.1": "http://registry.npmjs.org/jsontool/1.3.1", + "1.3.2": "http://registry.npmjs.org/jsontool/1.3.2", + "1.3.3": "http://registry.npmjs.org/jsontool/1.3.3", + "1.3.4": "http://registry.npmjs.org/jsontool/1.3.4", + "1.4.0": "http://registry.npmjs.org/jsontool/1.4.0", + "1.4.1": "http://registry.npmjs.org/jsontool/1.4.1", + "2.0.0": "http://registry.npmjs.org/jsontool/2.0.0", + "2.0.1": "http://registry.npmjs.org/jsontool/2.0.1", + "2.0.2": "http://registry.npmjs.org/jsontool/2.0.2", + "2.0.3": "http://registry.npmjs.org/jsontool/2.0.3", + "2.1.0": "http://registry.npmjs.org/jsontool/2.1.0" + }, + "dist": { + "1.3.0": { + "shasum": "91d4cf778725519a98ee7d48e211301da041f619", + "tarball": "http://registry.npmjs.org/jsontool/-/jsontool-1.3.0.tgz" + }, + "1.3.1": { + "shasum": "9b8ef2b998bdf2ee70c3ff1fb356ad691adf1285", + "tarball": "http://registry.npmjs.org/jsontool/-/jsontool-1.3.1.tgz" + }, + "1.3.2": { + "shasum": "202e6bc631b3a57fc7c81b0615b8027e79c30cb0", + "tarball": "http://registry.npmjs.org/jsontool/-/jsontool-1.3.2.tgz" + }, + "1.3.3": { + "shasum": "bf60070eb7647bfba9c6679b9abe6bcb8f779744", + "tarball": "http://registry.npmjs.org/jsontool/-/jsontool-1.3.3.tgz" + }, + "1.3.4": { + "shasum": "1c032047116790cebeeecb3f96d843e8688cc5d4", + "tarball": "http://registry.npmjs.org/jsontool/-/jsontool-1.3.4.tgz" + }, + "1.4.0": { + "shasum": "08bb2784aad9f0fcf424d7b2d4e84dd9da00d7e9", + "tarball": "http://registry.npmjs.org/jsontool/-/jsontool-1.4.0.tgz" + }, + "1.4.1": { + "shasum": "189db9f419c7f8b9b2ee280768d398a236172057", + "tarball": "http://registry.npmjs.org/jsontool/-/jsontool-1.4.1.tgz" + }, + "2.0.0": { + "shasum": "9ce4f4fcf383debfe8a52d9afcc52bc9a5fdaaf8", + "tarball": "http://registry.npmjs.org/jsontool/-/jsontool-2.0.0.tgz" + }, + "2.0.1": { + "shasum": "3aca1efc97d1a58ca51c60e4d1640dac53b2c980", + "tarball": "http://registry.npmjs.org/jsontool/-/jsontool-2.0.1.tgz" + }, + "2.0.2": { + "shasum": "4ef17e9972af07d32669fb9c0884d1eb4efaaff0", + "tarball": "http://registry.npmjs.org/jsontool/-/jsontool-2.0.2.tgz" + }, + "2.0.3": { + "shasum": "3cd84c4483c911bdb42f754a52039ec44b7ba844", + "tarball": "http://registry.npmjs.org/jsontool/-/jsontool-2.0.3.tgz" + }, + "2.1.0": { + "shasum": "97ebcc951db956e62ee5aeb0788f4f40d022ad7a", + "tarball": "http://registry.npmjs.org/jsontool/-/jsontool-2.1.0.tgz" + } + }, + "keywords": [ + "json", + "jsontool", + "filter", + "command", + "shell" + ], + "url": "http://registry.npmjs.org/jsontool/" + }, + "jsontoxml": { + "name": "jsontoxml", + "description": "This renders a simple javascript object structure into reasonably complicated xml/html. js objects are easier to modify than strings so no need to parse a whole dom to reliably add a few elements", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "soldair", + "email": "soldair@gmail.com" + } + ], + "repository": { + "type": "git", + "url": "git://github.com/soldair/node-jsontoxml.git" + }, + "time": { + "modified": "2011-04-11T13:16:33.982Z", + "created": "2011-04-11T13:16:33.982Z", + "0.0.1": "2011-04-11T13:16:33.982Z", + "0.0.2": "2011-04-11T13:16:33.982Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jsontoxml/0.0.1", + "0.0.2": "http://registry.npmjs.org/jsontoxml/0.0.2" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/jsontoxml/-/jsontoxml-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "609dd147f48e92ff773d1da35759e478c6df04d5", + "tarball": "http://registry.npmjs.org/jsontoxml/-/jsontoxml-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/jsontoxml/" + }, + "jsontry": { + "name": "jsontry", + "description": "JSON.parse() in a try", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "stagas", + "email": "gstagas@gmail.com" + } + ], + "time": { + "modified": "2011-03-31T10:56:18.637Z", + "created": "2011-03-31T10:56:17.967Z", + "0.0.1": "2011-03-31T10:56:18.637Z" + }, + "author": { + "name": "George Stagas", + "email": "gstagas@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/stagas/jsontry.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jsontry/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "c5e3f12c2ac6d599f37f9da5be46643264adae13", + "tarball": "http://registry.npmjs.org/jsontry/-/jsontry-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/jsontry/" + }, + "jsonX": { + "name": "jsonX", + "description": "a port of xpath for json", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "matthandlersux", + "email": "matt.handler@gmail.com" + } + ], + "time": { + "modified": "2011-09-29T16:28:39.819Z", + "created": "2011-09-29T16:28:39.415Z", + "0.1.0": "2011-09-29T16:28:39.819Z" + }, + "author": { + "name": "matt handler", + "url": "http://github.com/matthandlersux" + }, + "repository": { + "type": "git", + "url": "git@github.com:matthandlersux/jsonX.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/jsonX/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "585a6b3277d141cfac6319ec65f4b201de6eab01", + "tarball": "http://registry.npmjs.org/jsonX/-/jsonX-0.1.0.tgz" + } + }, + "keywords": [ + "parse", + "json", + "jsonx", + "freddy", + "freddy vs json", + "xpath", + "api" + ], + "url": "http://registry.npmjs.org/jsonX/" + }, + "jsorm-i18n": { + "name": "jsorm-i18n", + "description": "A JavaScript library for i18n: calendar conversions (Gregorian, Julian, Hebrew, Islamic, Sym010, Sym454, others), timezones, i18n resource bundles, currency rendering", + "dist-tags": { + "latest": "2.0.2" + }, + "maintainers": [ + { + "name": "deitch", + "email": "avi@deitcher.net" + } + ], + "time": { + "modified": "2011-12-12T15:04:58.610Z", + "created": "2011-09-22T10:06:11.996Z", + "2.0.0": "2011-09-22T10:06:13.318Z", + "2.0.1": "2011-09-26T15:55:20.566Z", + "2.0.2": "2011-12-12T15:04:58.610Z" + }, + "author": { + "name": "Avi Deitcher", + "email": "avi@deitcher.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/deitch/jsorm-i18n.git" + }, + "versions": { + "2.0.0": "http://registry.npmjs.org/jsorm-i18n/2.0.0", + "2.0.1": "http://registry.npmjs.org/jsorm-i18n/2.0.1", + "2.0.2": "http://registry.npmjs.org/jsorm-i18n/2.0.2" + }, + "dist": { + "2.0.0": { + "shasum": "5b57ac4711f0a0fe9daa3bd7666667f7a5a5405d", + "tarball": "http://registry.npmjs.org/jsorm-i18n/-/jsorm-i18n-2.0.0.tgz" + }, + "2.0.1": { + "shasum": "e10d4856d8fa76abd69de69da0750724d5de8eed", + "tarball": "http://registry.npmjs.org/jsorm-i18n/-/jsorm-i18n-2.0.1.tgz" + }, + "2.0.2": { + "shasum": "a14c0f444a7095cff5eb8752f6fa1ab114561b87", + "tarball": "http://registry.npmjs.org/jsorm-i18n/-/jsorm-i18n-2.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/jsorm-i18n/" + }, + "jsorm-utilities": { + "name": "jsorm-utilities", + "description": "A JavaScript library for basic utilities", + "dist-tags": { + "latest": "1.3.0" + }, + "maintainers": [ + { + "name": "deitch", + "email": "avi@deitcher.net" + } + ], + "time": { + "modified": "2011-09-19T10:51:34.043Z", + "created": "2011-09-19T10:51:12.955Z", + "1.3.0": "2011-09-19T10:51:34.043Z" + }, + "author": { + "name": "Avi Deitcher", + "email": "avi@deitcher.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/deitch/jsorm-utilities.git" + }, + "versions": { + "1.3.0": "http://registry.npmjs.org/jsorm-utilities/1.3.0" + }, + "dist": { + "1.3.0": { + "shasum": "7ba1d5775adf9e5f02a8e7c3f5fc460b8560f5be", + "tarball": "http://registry.npmjs.org/jsorm-utilities/-/jsorm-utilities-1.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/jsorm-utilities/" + }, + "jspack": { + "name": "jspack", + "description": "JavaScript library to pack primitives to octet arrays, packaged for NodeJS.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "birchroad", + "email": "info@birchroad.net" + } + ], + "time": { + "modified": "2011-08-06T06:59:43.822Z", + "created": "2011-08-06T06:59:41.256Z", + "0.0.1": "2011-08-06T06:59:43.822Z" + }, + "author": { + "name": "https://github.com/pgriess" + }, + "repository": { + "type": "git", + "url": "git://github.com/birchroad/node-jspack.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jspack/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "a8180239391f395dc4b328aea97fa2bddfce8376", + "tarball": "http://registry.npmjs.org/jspack/-/jspack-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/jspack/" + }, + "jspackle": { + "name": "jspackle", + "dist-tags": { + "latest": "1.0.6" + }, + "readme": null, + "maintainers": [ + { + "name": "russp", + "email": "russjp1985@gmail.com" + } + ], + "time": { + "modified": "2011-12-12T21:57:24.965Z", + "created": "2011-11-21T21:07:15.028Z", + "1.0.0": "2011-11-21T21:07:15.689Z", + "1.0.1": "2011-11-22T14:56:35.963Z", + "1.0.2": "2011-12-06T18:41:39.747Z", + "1.0.3": "2011-12-06T18:45:29.611Z", + "1.0.4-alpha": "2011-12-12T16:32:54.577Z", + "1.0.4": "2011-12-12T16:40:46.829Z", + "1.0.5-alpha": "2011-12-12T18:12:46.590Z", + "1.0.5-beta": "2011-12-12T20:24:12.269Z", + "1.0.5-beta2": "2011-12-12T20:25:34.244Z", + "1.0.5-beta3": "2011-12-12T20:51:28.437Z", + "1.0.5": "2011-12-12T21:26:17.664Z", + "1.0.6": "2011-12-12T21:57:24.965Z" + }, + "author": { + "name": "Russ Posluszny", + "email": "russ@russposluszny.com" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/jspackle/1.0.0", + "1.0.1": "http://registry.npmjs.org/jspackle/1.0.1", + "1.0.2": "http://registry.npmjs.org/jspackle/1.0.2", + "1.0.3": "http://registry.npmjs.org/jspackle/1.0.3", + "1.0.4-alpha": "http://registry.npmjs.org/jspackle/1.0.4-alpha", + "1.0.4": "http://registry.npmjs.org/jspackle/1.0.4", + "1.0.5-alpha": "http://registry.npmjs.org/jspackle/1.0.5-alpha", + "1.0.5-beta": "http://registry.npmjs.org/jspackle/1.0.5-beta", + "1.0.5-beta2": "http://registry.npmjs.org/jspackle/1.0.5-beta2", + "1.0.5-beta3": "http://registry.npmjs.org/jspackle/1.0.5-beta3", + "1.0.5": "http://registry.npmjs.org/jspackle/1.0.5", + "1.0.6": "http://registry.npmjs.org/jspackle/1.0.6" + }, + "dist": { + "1.0.0": { + "shasum": "0c5f1436578eec1d631236c6d06cbb752fa8ff59", + "tarball": "http://registry.npmjs.org/jspackle/-/jspackle-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "1d69022c9c674589f06976b4a99ea637d84579d1", + "tarball": "http://registry.npmjs.org/jspackle/-/jspackle-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "6c93d3d86e35d3066eec0718e2a2414f6e369d22", + "tarball": "http://registry.npmjs.org/jspackle/-/jspackle-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "54cd91a5d3154b4c89a7bbd61be3eaa170330d75", + "tarball": "http://registry.npmjs.org/jspackle/-/jspackle-1.0.3.tgz" + }, + "1.0.4-alpha": { + "shasum": "c62fa647dcfc2f45a2a1ed7781c09e41cc101204", + "tarball": "http://registry.npmjs.org/jspackle/-/jspackle-1.0.4-alpha.tgz" + }, + "1.0.4": { + "shasum": "ab9556b4aa1521f29c061516044a6719d04705e5", + "tarball": "http://registry.npmjs.org/jspackle/-/jspackle-1.0.4.tgz" + }, + "1.0.5-alpha": { + "shasum": "8bb5e0965d4430d16d8d63749064a88e00a642af", + "tarball": "http://registry.npmjs.org/jspackle/-/jspackle-1.0.5-alpha.tgz" + }, + "1.0.5-beta": { + "shasum": "0584bd1146edfd18c8873dc1feb998d3366672b9", + "tarball": "http://registry.npmjs.org/jspackle/-/jspackle-1.0.5-beta.tgz" + }, + "1.0.5-beta2": { + "shasum": "7e7d76cb7eb2165e5f15dbb0c57bc636c969c1b8", + "tarball": "http://registry.npmjs.org/jspackle/-/jspackle-1.0.5-beta2.tgz" + }, + "1.0.5-beta3": { + "shasum": "f14c90ce36cd9fe60b8297a8947663ce241e8c89", + "tarball": "http://registry.npmjs.org/jspackle/-/jspackle-1.0.5-beta3.tgz" + }, + "1.0.5": { + "shasum": "f12dca5af57dc4095511fa2b67dd21a9019d6920", + "tarball": "http://registry.npmjs.org/jspackle/-/jspackle-1.0.5.tgz" + }, + "1.0.6": { + "shasum": "a883054042c7ce372a481b925d54b6119b56607c", + "tarball": "http://registry.npmjs.org/jspackle/-/jspackle-1.0.6.tgz" + } + }, + "url": "http://registry.npmjs.org/jspackle/" + }, + "jspkg": { + "name": "jspkg", + "description": "Jspkg is a script concatenator/builder that takes into consideration dependencies between javascript files.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "fabiomcosta", + "email": "fabiomcosta@gmail.com" + } + ], + "time": { + "modified": "2011-06-07T13:45:22.785Z", + "created": "2011-06-06T20:02:26.919Z", + "0.1.0": "2011-06-06T20:02:27.716Z", + "0.1.1": "2011-06-07T13:45:22.785Z" + }, + "author": { + "name": "Fábio Miranda Costa" + }, + "repository": { + "type": "git", + "url": "git://github.com/fabiomcosta/jspkg.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/jspkg/0.1.0", + "0.1.1": "http://registry.npmjs.org/jspkg/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "92656eeda493a7cddcfa26242178e80ecb74f4fa", + "tarball": "http://registry.npmjs.org/jspkg/-/jspkg-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "12cc6c22bdfb4678ad7c4c0d5f83e618510b3da1", + "tarball": "http://registry.npmjs.org/jspkg/-/jspkg-0.1.1.tgz" + } + }, + "keywords": [ + "jspkg", + "concatenator", + "builder", + "dependency" + ], + "url": "http://registry.npmjs.org/jspkg/" + }, + "jspp": { + "name": "jspp", + "description": "JavaScript Pre-Processor.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "mikeal", + "email": "mikeal.rogers@gmail.com" + } + ], + "time": { + "modified": "2011-01-04T00:07:22.548Z", + "created": "2011-01-03T00:59:33.498Z", + "0.0.1": "2011-01-03T00:59:33.833Z", + "0.1.0": "2011-01-03T05:24:51.509Z", + "0.1.1": "2011-01-04T00:07:22.548Z" + }, + "author": { + "name": "Mikeal Rogers", + "email": "mikeal.rogers@gmail.com" + }, + "keywords": [ + "php", + "jquery", + "template" + ], + "versions": { + "0.0.1": "http://registry.npmjs.org/jspp/0.0.1", + "0.1.0": "http://registry.npmjs.org/jspp/0.1.0", + "0.1.1": "http://registry.npmjs.org/jspp/0.1.1" + }, + "dist": { + "0.0.1": { + "shasum": "84fbef8358125f20230fa8eb0a684532504060df", + "tarball": "http://registry.npmjs.org/jspp/-/jspp-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "e9c47f484787bc02c3d8a5f940a9b04dbd1019e1", + "tarball": "http://registry.npmjs.org/jspp/-/jspp-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "a1945f33c07e08631e5099f9b6649f15ab94ddf0", + "tarball": "http://registry.npmjs.org/jspp/-/jspp-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/jspp/" + }, + "JSPP": { + "name": "JSPP", + "description": "JavaScript preprocessor", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "schrodingerz-kitten", + "email": "schrodingerz.kitten@gmail.com" + } + ], + "time": { + "modified": "2011-07-21T01:28:01.608Z", + "created": "2011-07-21T00:01:00.520Z", + "0.1.0": "2011-07-21T00:01:02.570Z", + "0.1.1": "2011-07-21T00:24:57.718Z", + "0.1.2": "2011-07-21T01:28:01.608Z" + }, + "author": { + "name": "schrodingerz.kitten@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/JSPP/0.1.0", + "0.1.1": "http://registry.npmjs.org/JSPP/0.1.1", + "0.1.2": "http://registry.npmjs.org/JSPP/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "bfb160a6d57db1be03105ab2c909fb416226e166", + "tarball": "http://registry.npmjs.org/JSPP/-/JSPP-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "30d0c9f63bbe8644871df81d86b1cb2c2614b84e", + "tarball": "http://registry.npmjs.org/JSPP/-/JSPP-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "80a63cbab3c0d04ecdeb04fafed477b2c253be31", + "tarball": "http://registry.npmjs.org/JSPP/-/JSPP-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/JSPP/" + }, + "jsrender": { + "name": "jsrender", + "description": "jsrender expressjs middleware", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "shtylman", + "email": "shtylman@gmail.com" + } + ], + "time": { + "modified": "2011-11-08T04:23:13.244Z", + "created": "2011-10-24T04:32:40.548Z", + "0.0.1": "2011-10-24T04:32:40.979Z", + "0.0.3": "2011-11-08T04:23:13.244Z" + }, + "author": { + "name": "Roman Shtylman", + "email": "shtylman@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/shtylman/node-jsrender.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jsrender/0.0.1", + "0.0.3": "http://registry.npmjs.org/jsrender/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "518822e7a92f6cd9efd81112ca079a6001705df5", + "tarball": "http://registry.npmjs.org/jsrender/-/jsrender-0.0.1.tgz" + }, + "0.0.3": { + "shasum": "c74ed2e4e7a2a2a5494c19b12629ce79e8f298a6", + "tarball": "http://registry.npmjs.org/jsrender/-/jsrender-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/jsrender/" + }, + "jss": { + "name": "jss", + "description": "Javascript JSON stream filtering and formatting", + "dist-tags": { + "latest": "0.1.6" + }, + "maintainers": [ + { + "name": "jhs", + "email": "jhs@couchone.com" + } + ], + "time": { + "modified": "2011-06-16T13:29:02.843Z", + "created": "2011-02-09T05:23:32.351Z", + "0.1.0": "2011-02-09T05:23:33.493Z", + "0.1.1": "2011-02-15T06:30:33.021Z", + "0.1.2": "2011-02-20T12:25:51.697Z", + "0.1.3": "2011-05-13T13:51:23.458Z", + "0.1.4": "2011-06-11T13:14:03.959Z", + "0.1.5": "2011-06-12T05:23:10.204Z", + "0.1.6": "2011-06-16T13:29:02.843Z" + }, + "author": { + "name": "Jason Smith", + "email": "jhs@couchone.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/jhs/jss.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/jss/0.1.0", + "0.1.1": "http://registry.npmjs.org/jss/0.1.1", + "0.1.2": "http://registry.npmjs.org/jss/0.1.2", + "0.1.3": "http://registry.npmjs.org/jss/0.1.3", + "0.1.4": "http://registry.npmjs.org/jss/0.1.4", + "0.1.5": "http://registry.npmjs.org/jss/0.1.5", + "0.1.6": "http://registry.npmjs.org/jss/0.1.6" + }, + "dist": { + "0.1.0": { + "shasum": "1737003490700ad62af6256f9c4d67b74794a09a", + "tarball": "http://registry.npmjs.org/jss/-/jss-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "ada5d67f639bc2e00759b81b2392e7e254d2d746", + "tarball": "http://registry.npmjs.org/jss/-/jss-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "ae61988b322c814eff2d683511d5886da39d9cf9", + "tarball": "http://registry.npmjs.org/jss/-/jss-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "876e9ea6b82293b2eb63914f75dcc125bbaa12bf", + "tarball": "http://registry.npmjs.org/jss/-/jss-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "51b367021bba49f808a87023d77e729d49b9333f", + "tarball": "http://registry.npmjs.org/jss/-/jss-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "2a1e1d7c76f4c54cb7cb50e0ca52a650c057e733", + "tarball": "http://registry.npmjs.org/jss/-/jss-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "bdf215d2e7846c454cdd5944fe56d151f1ffff3d", + "tarball": "http://registry.npmjs.org/jss/-/jss-0.1.6.tgz" + } + }, + "url": "http://registry.npmjs.org/jss/" + }, + "jsSourceCodeParser": { + "name": "jsSourceCodeParser", + "description": "Javascript syntaxis parser, contexts analyser, dependancies analyser, source code modifier", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "edjafarov", + "email": "djkojb@gmail.com" + } + ], + "time": { + "modified": "2011-09-11T21:23:10.602Z", + "created": "2011-09-11T21:23:09.824Z", + "0.0.1": "2011-09-11T21:23:10.602Z" + }, + "author": { + "name": "Eldar Djafarov", + "email": "eldar@djafarov.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jsSourceCodeParser/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "1c3287307c945b3f01c23a1652095528488f9b1f", + "tarball": "http://registry.npmjs.org/jsSourceCodeParser/-/jsSourceCodeParser-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/jsSourceCodeParser/" + }, + "jst": { + "name": "jst", + "description": "Node JavaScript Template, A pretty high performance template engine", + "dist-tags": { + "latest": "0.0.13" + }, + "maintainers": [ + { + "name": "shaun", + "email": "shonhen@gmail.com" + } + ], + "time": { + "modified": "2011-05-08T04:18:03.206Z", + "created": "2011-04-28T12:27:05.012Z", + "0.0.1": "2011-04-28T12:27:26.048Z", + "0.0.2": "2011-04-28T15:59:29.829Z", + "0.0.3": "2011-04-29T01:33:49.128Z", + "0.0.4": "2011-04-29T03:19:43.308Z", + "0.0.5": "2011-04-29T07:46:43.568Z", + "0.0.6": "2011-04-30T04:21:15.000Z", + "0.0.7": "2011-04-30T16:39:05.400Z", + "0.0.8": "2011-04-30T17:27:04.467Z", + "0.0.9": "2011-05-01T04:43:58.874Z", + "0.0.10": "2011-05-03T06:09:44.162Z", + "0.0.11": "2011-05-05T02:16:44.445Z", + "0.0.12": "2011-05-05T06:14:25.545Z", + "0.0.13": "2011-05-08T04:18:03.206Z" + }, + "author": { + "name": "Shaun Li", + "email": "shonhen@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jst/0.0.1", + "0.0.2": "http://registry.npmjs.org/jst/0.0.2", + "0.0.3": "http://registry.npmjs.org/jst/0.0.3", + "0.0.4": "http://registry.npmjs.org/jst/0.0.4", + "0.0.5": "http://registry.npmjs.org/jst/0.0.5", + "0.0.6": "http://registry.npmjs.org/jst/0.0.6", + "0.0.7": "http://registry.npmjs.org/jst/0.0.7", + "0.0.8": "http://registry.npmjs.org/jst/0.0.8", + "0.0.9": "http://registry.npmjs.org/jst/0.0.9", + "0.0.10": "http://registry.npmjs.org/jst/0.0.10", + "0.0.11": "http://registry.npmjs.org/jst/0.0.11", + "0.0.12": "http://registry.npmjs.org/jst/0.0.12", + "0.0.13": "http://registry.npmjs.org/jst/0.0.13" + }, + "dist": { + "0.0.1": { + "shasum": "0ccec1b28d68cc27f16b6b40e7fd65f2646b527f", + "tarball": "http://registry.npmjs.org/jst/-/jst-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "b828afdf3326b32e8183d1c9727b212a3fe04647", + "tarball": "http://registry.npmjs.org/jst/-/jst-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "ace3d690bd85c22ea350502e9f456d61a6e35ebd", + "tarball": "http://registry.npmjs.org/jst/-/jst-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "cead88104ff906e2f5d89e89951a1d85ffd33037", + "tarball": "http://registry.npmjs.org/jst/-/jst-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "649eac9d3eed9690ffe1d9ab4dc51d7200a3008d", + "tarball": "http://registry.npmjs.org/jst/-/jst-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "a4fc665f7e602d3bdfc71f771867707b95c28c3d", + "tarball": "http://registry.npmjs.org/jst/-/jst-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "ba44125de6bbf69168424720f49995b694b29ceb", + "tarball": "http://registry.npmjs.org/jst/-/jst-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "9ff7853253582cc1a2eab5e84c8dffe298403415", + "tarball": "http://registry.npmjs.org/jst/-/jst-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "4efde1d92efea3e325561d155764195a22b95846", + "tarball": "http://registry.npmjs.org/jst/-/jst-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "0d541fa30df1ac4cd6ec8057e26642e462c2ce86", + "tarball": "http://registry.npmjs.org/jst/-/jst-0.0.10.tgz" + }, + "0.0.11": { + "shasum": "da5f40441e50074605a663017635f7ce909fe336", + "tarball": "http://registry.npmjs.org/jst/-/jst-0.0.11.tgz" + }, + "0.0.12": { + "shasum": "77c901a1b89d1edb108b93286f73d689e7b5893a", + "tarball": "http://registry.npmjs.org/jst/-/jst-0.0.12.tgz" + }, + "0.0.13": { + "shasum": "b72603d53c5986162729425c4a10d7d63f56fac1", + "tarball": "http://registry.npmjs.org/jst/-/jst-0.0.13.tgz" + } + }, + "keywords": [ + "template", + "engine", + "jst" + ], + "url": "http://registry.npmjs.org/jst/" + }, + "jstestdriver": { + "name": "jstestdriver", + "description": "Wrapper for Google's jstestdriver", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "rlayte", + "email": "rich.layte@gmail.com" + } + ], + "time": { + "modified": "2011-05-09T17:54:45.655Z", + "created": "2011-05-09T17:54:45.084Z", + "1.0.0": "2011-05-09T17:54:45.655Z" + }, + "author": { + "name": "Richard Layte" + }, + "repository": { + "type": "git", + "url": "git@github.com:rlayte/jstestdriver-wrapper.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/jstestdriver/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "8415df116be3c7c3c4349ae9d3d23ecc388f3169", + "tarball": "http://registry.npmjs.org/jstestdriver/-/jstestdriver-1.0.0.tgz" + } + }, + "keywords": [ + "testing", + "tdd", + "command-line" + ], + "url": "http://registry.npmjs.org/jstestdriver/" + }, + "jstoxml": { + "name": "jstoxml", + "description": "Everyone loves JSON, and the world is moving that direction, but we still need things outputted in XML! Particularly for RSS and Podcast feeds. jstoxml makes it easy to contruct those feeds in JavaScript and output them to XML", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "davidcalhoun", + "email": "david.b.calhoun@gmail.com" + } + ], + "time": { + "modified": "2011-10-25T04:21:07.103Z", + "created": "2011-07-30T05:01:33.086Z", + "0.0.1": "2011-07-30T05:01:34.892Z", + "0.0.2": "2011-07-30T05:13:54.609Z", + "0.0.3": "2011-07-30T05:33:10.062Z", + "0.0.4a": "2011-07-30T07:13:32.493Z", + "0.0.5": "2011-07-30T08:02:14.073Z", + "0.0.6": "2011-07-30T09:39:17.197Z", + "0.0.7": "2011-07-30T10:33:13.589Z", + "0.1.0": "2011-10-25T04:21:07.103Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/davidcalhoun/jstoxml.git" + }, + "author": { + "name": "David Calhoun", + "email": "david.b.calhoun@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jstoxml/0.0.1", + "0.0.2": "http://registry.npmjs.org/jstoxml/0.0.2", + "0.0.3": "http://registry.npmjs.org/jstoxml/0.0.3", + "0.0.4a": "http://registry.npmjs.org/jstoxml/0.0.4a", + "0.0.5": "http://registry.npmjs.org/jstoxml/0.0.5", + "0.0.6": "http://registry.npmjs.org/jstoxml/0.0.6", + "0.0.7": "http://registry.npmjs.org/jstoxml/0.0.7", + "0.1.0": "http://registry.npmjs.org/jstoxml/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "84e8589436ca80511306370c76cb0a5f31654c96", + "tarball": "http://registry.npmjs.org/jstoxml/-/jstoxml-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "7235770405ef0662d2316d188d70ad96a978421f", + "tarball": "http://registry.npmjs.org/jstoxml/-/jstoxml-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "ce2a303d42b9b64f1f2df45f75779aac8d2ecd87", + "tarball": "http://registry.npmjs.org/jstoxml/-/jstoxml-0.0.3.tgz" + }, + "0.0.4a": { + "shasum": "3c0b495fa50b1f5b4f533beffaadfa792c3821d1", + "tarball": "http://registry.npmjs.org/jstoxml/-/jstoxml-0.0.4a.tgz" + }, + "0.0.5": { + "shasum": "742ecd1174449f303fbaadd8ef6ebdd190dfd16e", + "tarball": "http://registry.npmjs.org/jstoxml/-/jstoxml-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "347474c3413d5c4fbbd46345cb15717623fc8337", + "tarball": "http://registry.npmjs.org/jstoxml/-/jstoxml-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "b8f1e5b2b0a64455d2a6b41828194d43e7c05b83", + "tarball": "http://registry.npmjs.org/jstoxml/-/jstoxml-0.0.7.tgz" + }, + "0.1.0": { + "shasum": "abf95d6d76cd9adbbfe4e37a09f68c4c0a43b20c", + "tarball": "http://registry.npmjs.org/jstoxml/-/jstoxml-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/jstoxml/" + }, + "jsup": { + "name": "jsup", + "description": "modify json files in-place, preserving formatting", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-07-20T09:36:12.447Z", + "created": "2011-07-20T09:36:11.523Z", + "0.0.0": "2011-07-20T09:36:12.447Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/jsup.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/jsup/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "ee8539b42bc7ed2f1e5ade9da85feba50ec9a57d", + "tarball": "http://registry.npmjs.org/jsup/-/jsup-0.0.0.tgz" + } + }, + "keywords": [ + "json", + "update", + "in-place", + "preserve", + "whitespace", + "format" + ], + "url": "http://registry.npmjs.org/jsup/" + }, + "jsurl": { + "name": "jsurl", + "description": "URL friendly JSON-like formatting and parsing", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "bjouhier", + "email": "bjouhier@gmail.com" + } + ], + "time": { + "modified": "2011-11-04T22:39:39.064Z", + "created": "2011-11-04T22:39:37.757Z", + "0.1.0": "2011-11-04T22:39:39.064Z" + }, + "author": { + "name": "Bruno Jouhier" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/jsurl/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "a8f3cfa67b57eae41f82d347b97be50e02bf2dfa", + "tarball": "http://registry.npmjs.org/jsurl/-/jsurl-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/jsurl/" + }, + "JSV": { + "name": "JSV", + "description": "A JavaScript implementation of a extendable, fully compliant JSON Schema validator.", + "dist-tags": { + "latest": "3.5.0" + }, + "maintainers": [ + { + "name": "garycourt", + "email": "gary.court@gmail.com" + } + ], + "time": { + "modified": "2011-05-16T19:11:11.806Z", + "created": "2011-05-16T19:11:11.393Z", + "3.5.0": "2011-05-16T19:11:11.806Z" + }, + "author": { + "name": "Gary Court", + "email": "gary.court@gmail.com" + }, + "versions": { + "3.5.0": "http://registry.npmjs.org/JSV/3.5.0" + }, + "dist": { + "3.5.0": { + "shasum": "f017ec75629e8c89b8359dc79a2ceee92ef9471e", + "tarball": "http://registry.npmjs.org/JSV/-/JSV-3.5.0.tgz" + } + }, + "keywords": [ + "json", + "schema", + "validator" + ], + "url": "http://registry.npmjs.org/JSV/" + }, + "jthon": { + "name": "jthon", + "description": "A toy lisp in json", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "jesusabdullah", + "email": "josh.holbrook@gmail.com" + } + ], + "time": { + "modified": "2011-07-10T09:46:38.510Z", + "created": "2011-07-10T05:50:06.252Z", + "0.0.0": "2011-07-10T05:50:06.866Z", + "0.0.1": "2011-07-10T09:46:38.510Z" + }, + "author": { + "name": "Joshua Holbrook", + "email": "josh.holbrook@gmail.com", + "url": "http://jesusabdullah.github.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/jesusabdullah/jthon.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/jthon/0.0.0", + "0.0.1": "http://registry.npmjs.org/jthon/0.0.1" + }, + "dist": { + "0.0.0": { + "shasum": "7566f5f00c94e4040bece2d2681e7466a9c05323", + "tarball": "http://registry.npmjs.org/jthon/-/jthon-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "8ad742e3c488e7e44103b143cd128f8f48d33972", + "tarball": "http://registry.npmjs.org/jthon/-/jthon-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/jthon/" + }, + "juggernaut": { + "name": "juggernaut", + "description": "Realtime PubSub server push.", + "dist-tags": { + "latest": "2.1.0" + }, + "maintainers": [ + { + "name": "maccman", + "email": "maccman@gmail.com" + } + ], + "author": { + "name": "maccman" + }, + "repository": { + "type": "git", + "url": "git://github.com/maccman/juggernaut.git" + }, + "time": { + "modified": "2011-10-31T14:23:58.103Z", + "created": "2011-03-23T21:34:41.793Z", + "2.0.0": "2011-03-23T21:34:41.793Z", + "2.0.1": "2011-03-23T21:34:41.793Z", + "2.0.2": "2011-03-23T21:45:53.367Z", + "2.0.3": "2011-03-30T00:51:40.453Z", + "2.0.4": "2011-04-04T23:30:21.967Z", + "2.0.5": "2011-05-16T21:48:56.966Z", + "2.0.6": "2011-09-21T18:00:31.218Z", + "2.0.7": "2011-09-21T22:14:19.189Z", + "2.0.8": "2011-09-27T20:47:42.979Z", + "2.0.9": "2011-09-28T12:31:16.296Z", + "2.1.0": "2011-10-31T14:23:58.103Z" + }, + "versions": { + "2.0.0": "http://registry.npmjs.org/juggernaut/2.0.0", + "2.0.1": "http://registry.npmjs.org/juggernaut/2.0.1", + "2.0.2": "http://registry.npmjs.org/juggernaut/2.0.2", + "2.0.3": "http://registry.npmjs.org/juggernaut/2.0.3", + "2.0.4": "http://registry.npmjs.org/juggernaut/2.0.4", + "2.0.5": "http://registry.npmjs.org/juggernaut/2.0.5", + "2.0.6": "http://registry.npmjs.org/juggernaut/2.0.6", + "2.0.7": "http://registry.npmjs.org/juggernaut/2.0.7", + "2.0.8": "http://registry.npmjs.org/juggernaut/2.0.8", + "2.0.9": "http://registry.npmjs.org/juggernaut/2.0.9", + "2.1.0": "http://registry.npmjs.org/juggernaut/2.1.0" + }, + "dist": { + "2.0.0": { + "tarball": "http://packages:5984/juggernaut/-/juggernaut-2.0.0.tgz" + }, + "2.0.1": { + "shasum": "551fb927665108c2709f2bba2758160558f37025", + "tarball": "http://registry.npmjs.org/juggernaut/-/juggernaut-2.0.1.tgz" + }, + "2.0.2": { + "shasum": "2877f0c4d1cc5b01c1932c1e27d73651d159ef69", + "tarball": "http://registry.npmjs.org/juggernaut/-/juggernaut-2.0.2.tgz" + }, + "2.0.3": { + "shasum": "6c1106e184fc0a6b8209060be3eeb597b9609f85", + "tarball": "http://registry.npmjs.org/juggernaut/-/juggernaut-2.0.3.tgz" + }, + "2.0.4": { + "shasum": "d8f77bfa737305dbd7e12c4c2d2f4e759791d7ff", + "tarball": "http://registry.npmjs.org/juggernaut/-/juggernaut-2.0.4.tgz" + }, + "2.0.5": { + "shasum": "1c15e8b2beda88b5d5c6a466dbd1506f48ecacb5", + "tarball": "http://registry.npmjs.org/juggernaut/-/juggernaut-2.0.5.tgz" + }, + "2.0.6": { + "shasum": "89b056a37e05f922a4f1fc3ab20cff556743a22c", + "tarball": "http://registry.npmjs.org/juggernaut/-/juggernaut-2.0.6.tgz" + }, + "2.0.7": { + "shasum": "91db608843a5bb7ce99120f38356114cfc843615", + "tarball": "http://registry.npmjs.org/juggernaut/-/juggernaut-2.0.7.tgz" + }, + "2.0.8": { + "shasum": "261ea71cdc484e05dd94cab0ee297f8a20076f6b", + "tarball": "http://registry.npmjs.org/juggernaut/-/juggernaut-2.0.8.tgz" + }, + "2.0.9": { + "shasum": "fffb430b8a00521ce0fbbc3f85a55444a6e01bbb", + "tarball": "http://registry.npmjs.org/juggernaut/-/juggernaut-2.0.9.tgz" + }, + "2.1.0": { + "shasum": "44884a5abf5811448f903f09ebc03908334139d5", + "tarball": "http://registry.npmjs.org/juggernaut/-/juggernaut-2.1.0.tgz" + } + }, + "keywords": [ + "http", + "websocket", + "socket", + "server", + "realtime" + ], + "url": "http://registry.npmjs.org/juggernaut/" + }, + "juggernaut-yoomee": { + "name": "juggernaut-yoomee", + "description": "Realtime PubSub server push.", + "dist-tags": { + "latest": "2.0.6" + }, + "maintainers": [ + { + "name": "yoomee", + "email": "developers@yoomee.com" + } + ], + "time": { + "modified": "2011-04-14T15:41:49.407Z", + "created": "2011-04-13T10:25:14.536Z", + "2.0.4": "2011-04-13T10:25:15.081Z", + "2.0.5": "2011-04-13T11:42:10.290Z", + "2.0.6": "2011-04-14T15:41:49.407Z" + }, + "author": { + "name": "Yoomee" + }, + "repository": { + "type": "git", + "url": "git://github.com/Yoomee/juggernaut.git" + }, + "versions": { + "2.0.4": "http://registry.npmjs.org/juggernaut-yoomee/2.0.4", + "2.0.5": "http://registry.npmjs.org/juggernaut-yoomee/2.0.5", + "2.0.6": "http://registry.npmjs.org/juggernaut-yoomee/2.0.6" + }, + "dist": { + "2.0.4": { + "shasum": "70588969f100a67a538d474c0be1e26ba5230732", + "tarball": "http://registry.npmjs.org/juggernaut-yoomee/-/juggernaut-yoomee-2.0.4.tgz" + }, + "2.0.5": { + "shasum": "d7972a2b7ebcf35d18d9e8baaafa1dec4e767bc6", + "tarball": "http://registry.npmjs.org/juggernaut-yoomee/-/juggernaut-yoomee-2.0.5.tgz" + }, + "2.0.6": { + "shasum": "fdbdd1f6afe674ce71c60745b8bef50412e50ed3", + "tarball": "http://registry.npmjs.org/juggernaut-yoomee/-/juggernaut-yoomee-2.0.6.tgz" + } + }, + "url": "http://registry.npmjs.org/juggernaut-yoomee/" + }, + "jugglingdb": { + "name": "jugglingdb", + "description": "ORM for every database: redis, mysql, neo4j, mongodb", + "dist-tags": { + "latest": "0.0.7" + }, + "maintainers": [ + { + "name": "anatoliy", + "email": "rpm1602@gmail.com" + } + ], + "time": { + "modified": "2011-11-21T21:41:33.714Z", + "created": "2011-10-10T13:29:33.407Z", + "0.0.1": "2011-10-10T13:29:35.462Z", + "0.0.2": "2011-10-16T17:25:49.000Z", + "0.0.3": "2011-11-04T09:25:41.294Z", + "0.0.4": "2011-11-05T10:23:34.684Z", + "0.0.5": "2011-11-11T13:19:49.979Z", + "0.0.6": "2011-11-13T08:06:35.925Z", + "0.0.7": "2011-11-21T21:41:33.714Z" + }, + "author": { + "name": "Anatoliy Chakkaev" + }, + "repository": { + "url": "https://github.com/1602/jugglingdb" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jugglingdb/0.0.1", + "0.0.2": "http://registry.npmjs.org/jugglingdb/0.0.2", + "0.0.3": "http://registry.npmjs.org/jugglingdb/0.0.3", + "0.0.4": "http://registry.npmjs.org/jugglingdb/0.0.4", + "0.0.5": "http://registry.npmjs.org/jugglingdb/0.0.5", + "0.0.6": "http://registry.npmjs.org/jugglingdb/0.0.6", + "0.0.7": "http://registry.npmjs.org/jugglingdb/0.0.7" + }, + "dist": { + "0.0.1": { + "shasum": "83205f4230485a5ff871a08dc04b2a95a30390a9", + "tarball": "http://registry.npmjs.org/jugglingdb/-/jugglingdb-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "cce48dd56f7be8c5ef6373b9c93a38db40c096da", + "tarball": "http://registry.npmjs.org/jugglingdb/-/jugglingdb-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "0dbe16ff0f6fdacdae9f93665f3e665d599571bc", + "tarball": "http://registry.npmjs.org/jugglingdb/-/jugglingdb-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "ef7e7d50022043fc6a24025eeb56f31a9196ef53", + "tarball": "http://registry.npmjs.org/jugglingdb/-/jugglingdb-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "0ce22ba7f42c868579d1715d49fe315202d9133e", + "tarball": "http://registry.npmjs.org/jugglingdb/-/jugglingdb-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "d029bc416e5c678dfb513d87d76a61772ecd0820", + "tarball": "http://registry.npmjs.org/jugglingdb/-/jugglingdb-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "a8a8eb5e02675b9d8131475c6434a5e7799bcb89", + "tarball": "http://registry.npmjs.org/jugglingdb/-/jugglingdb-0.0.7.tgz" + } + }, + "url": "http://registry.npmjs.org/jugglingdb/" + }, + "juice": { + "name": "juice", + "description": "Inlines css into html source", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "rauchg", + "email": "rauchg@gmail.com" + } + ], + "time": { + "modified": "2011-10-10T19:03:01.609Z", + "created": "2011-10-09T23:46:26.159Z", + "0.0.1": "2011-10-09T23:46:27.534Z", + "0.0.2": "2011-10-09T23:47:20.348Z", + "0.0.3": "2011-10-09T23:57:58.819Z", + "0.0.4": "2011-10-10T17:53:02.837Z", + "0.0.5": "2011-10-10T19:03:01.609Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/juice/0.0.1", + "0.0.2": "http://registry.npmjs.org/juice/0.0.2", + "0.0.3": "http://registry.npmjs.org/juice/0.0.3", + "0.0.4": "http://registry.npmjs.org/juice/0.0.4", + "0.0.5": "http://registry.npmjs.org/juice/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "61f4c2c3473fbfd84ca20cc1b053cbb5d5769ecd", + "tarball": "http://registry.npmjs.org/juice/-/juice-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c6bc28bcc34e3bbffe358eb9cf7f2ae69b95ac1c", + "tarball": "http://registry.npmjs.org/juice/-/juice-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "8b02e67a99181788437f19004924322b8b8c3ce9", + "tarball": "http://registry.npmjs.org/juice/-/juice-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "7456d00b9b81e337c571704bb0bfdfb97ff633bf", + "tarball": "http://registry.npmjs.org/juice/-/juice-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "2a44d2586fe1923d451bf55de031c88ff90a6a41", + "tarball": "http://registry.npmjs.org/juice/-/juice-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/juice/" + }, + "jump": { + "name": "jump", + "description": "autosuggest change directory", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "afriggeri", + "email": "adrien@friggeri.net" + } + ], + "time": { + "modified": "2011-09-09T08:33:38.661Z", + "created": "2011-09-03T21:57:49.170Z", + "0.0.1": "2011-09-03T21:57:50.795Z", + "0.0.2": "2011-09-03T21:59:29.458Z", + "0.0.3": "2011-09-04T00:53:59.710Z", + "0.0.4": "2011-09-06T12:29:42.659Z", + "0.0.5": "2011-09-07T18:30:01.709Z" + }, + "author": { + "name": "Adrien Friggeri", + "email": "adrien@friggeri.net", + "url": "http://friggeri.net" + }, + "repository": { + "url": "git://github.com/afriggeri/jump.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jump/0.0.1", + "0.0.2": "http://registry.npmjs.org/jump/0.0.2", + "0.0.3": "http://registry.npmjs.org/jump/0.0.3", + "0.0.4": "http://registry.npmjs.org/jump/0.0.4", + "0.0.5": "http://registry.npmjs.org/jump/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "1d2d2dfe5fbffa49d181ec135184a7ade990b09f", + "tarball": "http://registry.npmjs.org/jump/-/jump-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "2a74766b59aaaf95bd795f9e7d5d2bdcaf105124", + "tarball": "http://registry.npmjs.org/jump/-/jump-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "1b20019076963768b011a4fa274a74676f6ac256", + "tarball": "http://registry.npmjs.org/jump/-/jump-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "29c96ddbd75fbd2205a6a1a074ab100b9a3d8867", + "tarball": "http://registry.npmjs.org/jump/-/jump-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "d854514dab62fccfca86b685d032f96dcdaa9013", + "tarball": "http://registry.npmjs.org/jump/-/jump-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/jump/" + }, + "jumprope": { + "name": "jumprope", + "description": "Fast string editing in Javascript using skip lists", + "dist-tags": { + "latest": "1.0.0rc1", + "rc": "1.0.0" + }, + "maintainers": [ + { + "name": "josephg", + "email": "josephg@gmail.com" + } + ], + "time": { + "modified": "2011-05-03T04:46:18.251Z", + "created": "2011-03-29T10:01:01.415Z", + "1.0.0rc1": "2011-03-29T10:01:02.498Z", + "1.0.0": "2011-05-03T04:46:18.251Z" + }, + "author": { + "name": "Joseph Gentle", + "email": "josephg@gmail.com", + "url": "josephgentle.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/josephg/jumprope.git" + }, + "versions": { + "1.0.0rc1": "http://registry.npmjs.org/jumprope/1.0.0rc1", + "1.0.0": "http://registry.npmjs.org/jumprope/1.0.0" + }, + "dist": { + "1.0.0rc1": { + "shasum": "93b71dc94e6e95ed52ffb4af40669ea2b8cf605f", + "tarball": "http://registry.npmjs.org/jumprope/-/jumprope-1.0.0rc1.tgz" + }, + "1.0.0": { + "shasum": "20791c15dc030a0897f45b26445610f7c0e0fa21", + "tarball": "http://registry.npmjs.org/jumprope/-/jumprope-1.0.0.tgz" + } + }, + "keywords": [ + "rope", + "string", + "algorithm" + ], + "url": "http://registry.npmjs.org/jumprope/" + }, + "junar": { + "name": "junar", + "description": "Performs operations against the Junar API.", + "dist-tags": { + "latest": "0.0.2" + }, + "readme": null, + "maintainers": [ + { + "name": "matias_mi", + "email": "lumen.night@gmail.com" + } + ], + "time": { + "modified": "2011-11-29T01:14:47.197Z", + "created": "2011-11-29T00:10:44.017Z", + "0.0.1": "2011-11-29T00:10:48.941Z", + "0.0.2": "2011-11-29T01:14:47.197Z" + }, + "author": { + "name": "Matías Mirabelli", + "email": "lumen.night@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/junar/0.0.1", + "0.0.2": "http://registry.npmjs.org/junar/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "d933301e5c95816fa9cb384ec4d286d2fdf7776e", + "tarball": "http://registry.npmjs.org/junar/-/junar-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c6182dbf5a72dc3bd54604ed24ffbce2f4e4926a", + "tarball": "http://registry.npmjs.org/junar/-/junar-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/junar/" + }, + "junction": { + "name": "junction", + "description": "XMPP middleware framework.", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "jaredhanson", + "email": "jaredhanson@gmail.com" + } + ], + "time": { + "modified": "2011-10-01T20:20:37.062Z", + "created": "2011-06-12T15:52:13.627Z", + "0.1.0": "2011-06-12T15:52:14.352Z", + "0.1.1": "2011-10-01T18:16:55.131Z", + "0.1.2": "2011-10-01T19:26:46.257Z", + "0.1.3": "2011-10-01T20:20:37.062Z" + }, + "author": { + "name": "Jared Hanson", + "email": "jaredhanson@gmail.com", + "url": "http://www.jaredhanson.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jaredhanson/junction.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/junction/0.1.0", + "0.1.1": "http://registry.npmjs.org/junction/0.1.1", + "0.1.2": "http://registry.npmjs.org/junction/0.1.2", + "0.1.3": "http://registry.npmjs.org/junction/0.1.3" + }, + "dist": { + "0.1.0": { + "shasum": "c3292f1108c7e6db61f0f62c9a260b544666eafc", + "tarball": "http://registry.npmjs.org/junction/-/junction-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "18ac2b76a87269154d267b9055797556046c398d", + "tarball": "http://registry.npmjs.org/junction/-/junction-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "4a31ed7a6fddb6c752c9dc6a16455521f454eb11", + "tarball": "http://registry.npmjs.org/junction/-/junction-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "6d8b8340b1c02319557462492a0d1a573548870c", + "tarball": "http://registry.npmjs.org/junction/-/junction-0.1.3.tgz" + } + }, + "keywords": [ + "xmpp", + "jabber", + "middleware" + ], + "url": "http://registry.npmjs.org/junction/" + }, + "junction-disco": { + "name": "junction-disco", + "description": "Service Discovery development framework for Junction.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "jaredhanson", + "email": "jaredhanson@gmail.com" + } + ], + "time": { + "modified": "2011-10-01T20:26:10.617Z", + "created": "2011-10-01T20:26:09.937Z", + "0.1.0": "2011-10-01T20:26:10.617Z" + }, + "author": { + "name": "Jared Hanson", + "email": "jaredhanson@gmail.com", + "url": "http://www.jaredhanson.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jaredhanson/junction-disco.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/junction-disco/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "7aa61b527325a492dea4a303441bc53b13ee7bdf", + "tarball": "http://registry.npmjs.org/junction-disco/-/junction-disco-0.1.0.tgz" + } + }, + "keywords": [ + "junction", + "disco", + "xmpp", + "jabber", + "xep0030" + ], + "url": "http://registry.npmjs.org/junction-disco/" + }, + "junjo": { + "name": "junjo", + "description": "Yet Another Flow Control (YAFC)", + "dist-tags": { + "latest": "0.2.7" + }, + "maintainers": [ + { + "name": "shinout", + "email": "shinout310@gmail.com" + } + ], + "time": { + "modified": "2011-11-14T11:44:53.738Z", + "created": "2011-10-17T05:57:40.085Z", + "0.1.0": "2011-10-17T05:57:42.630Z", + "0.1.1": "2011-10-19T01:10:45.062Z", + "0.2.0": "2011-10-24T14:26:14.571Z", + "0.2.1": "2011-10-24T18:13:16.938Z", + "0.2.2": "2011-10-24T18:15:08.070Z", + "0.2.3": "2011-10-24T18:39:53.407Z", + "0.2.4": "2011-10-24T23:09:46.635Z", + "0.2.5": "2011-10-24T23:16:02.494Z", + "0.2.6": "2011-11-05T16:18:27.586Z", + "0.2.7": "2011-11-14T11:44:53.738Z" + }, + "author": { + "name": "SHIN Suzuki", + "email": "shinout310@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/shinout/Junjo.js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/junjo/0.1.0", + "0.1.1": "http://registry.npmjs.org/junjo/0.1.1", + "0.2.0": "http://registry.npmjs.org/junjo/0.2.0", + "0.2.1": "http://registry.npmjs.org/junjo/0.2.1", + "0.2.2": "http://registry.npmjs.org/junjo/0.2.2", + "0.2.3": "http://registry.npmjs.org/junjo/0.2.3", + "0.2.4": "http://registry.npmjs.org/junjo/0.2.4", + "0.2.5": "http://registry.npmjs.org/junjo/0.2.5", + "0.2.6": "http://registry.npmjs.org/junjo/0.2.6", + "0.2.7": "http://registry.npmjs.org/junjo/0.2.7" + }, + "dist": { + "0.1.0": { + "shasum": "30e92d80da36412f81224e609c0757927488e351", + "tarball": "http://registry.npmjs.org/junjo/-/junjo-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "2305af622994ecdfd32534905cd30838ec31059f", + "tarball": "http://registry.npmjs.org/junjo/-/junjo-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "4433de2149d001149a3757ea201d3bbb80041402", + "tarball": "http://registry.npmjs.org/junjo/-/junjo-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "1c41ca05a2004e68d22ca4791a1a020ddc6e09fc", + "tarball": "http://registry.npmjs.org/junjo/-/junjo-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "6a26dd13ba0785995b0003dca82834cee919e6dd", + "tarball": "http://registry.npmjs.org/junjo/-/junjo-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "7ec5e532ef73c3b3a766bb5e00a4ff9ab194373c", + "tarball": "http://registry.npmjs.org/junjo/-/junjo-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "fe3083ec6cde21c84ae048aaa5a11ae334b4e4d4", + "tarball": "http://registry.npmjs.org/junjo/-/junjo-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "8fb28403d9353842b5cdb76b7a823fc17117d355", + "tarball": "http://registry.npmjs.org/junjo/-/junjo-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "7614aca39cd723ac29c412857cad3d7512d4c629", + "tarball": "http://registry.npmjs.org/junjo/-/junjo-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "6a77c09460cd10d861335d355760daa793e9503c", + "tarball": "http://registry.npmjs.org/junjo/-/junjo-0.2.7.tgz" + } + }, + "url": "http://registry.npmjs.org/junjo/" + }, + "jus-config": { + "name": "jus-config", + "description": "Configuration handler, accepts multiple file formats, and overriding over multiple directories and filenames. Main usage: require('jus-config')(configNames, dirNames, callback).", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "naholyr", + "email": "naholyr@gmail.com" + } + ], + "time": { + "modified": "2011-11-23T08:41:10.488Z", + "created": "2011-05-23T21:21:58.696Z", + "0.0.1": "2011-05-23T21:21:59.728Z", + "0.0.2": "2011-05-24T12:43:52.423Z" + }, + "author": { + "name": "Nicolas Chambrier", + "email": "naholyr@gmail.com", + "url": "http://naholyr.fr" + }, + "repository": { + "url": "" + }, + "users": { + "naholyr": true + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jus-config/0.0.1", + "0.0.2": "http://registry.npmjs.org/jus-config/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "a6aa23dd284a5c34b98b9e21f2ba517c3f3a40a8", + "tarball": "http://registry.npmjs.org/jus-config/-/jus-config-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "4d1a25c1e2946cd5a04b992651fd33baf7684d42", + "tarball": "http://registry.npmjs.org/jus-config/-/jus-config-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/jus-config/" + }, + "jus-i18n": { + "name": "jus-i18n", + "description": "Real I18N implementation, with a true support for plural forms, and many storage engines. Works best with Express or Jus Framework", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "naholyr", + "email": "naholyr@gmail.com" + } + ], + "time": { + "modified": "2011-11-23T08:41:10.606Z", + "created": "2011-05-16T20:58:58.381Z", + "0.1.1": "2011-05-16T20:58:59.812Z" + }, + "author": { + "name": "Nicolas Chambrier", + "email": "naholyr@gmail.com", + "url": "http://naholyr.fr" + }, + "repository": { + "type": "git", + "url": "git://github.com/naholyr/node-i18n.git" + }, + "users": { + "naholyr": true + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/jus-i18n/0.1.1" + }, + "dist": { + "0.1.1": { + "shasum": "53c67cd62fe9df0059dd7efe890c0fd4f380e429", + "tarball": "http://registry.npmjs.org/jus-i18n/-/jus-i18n-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/jus-i18n/" + }, + "jus-task": { + "name": "jus-task", + "description": "Easy namespaced task handling in CLI", + "dist-tags": { + "latest": "1.0.5" + }, + "maintainers": [ + { + "name": "naholyr", + "email": "naholyr@gmail.com" + } + ], + "time": { + "modified": "2011-11-23T08:41:10.545Z", + "created": "2011-05-06T22:16:00.283Z", + "1.0.0": "2011-05-06T22:16:01.084Z", + "1.0.1": "2011-05-07T13:02:24.550Z", + "1.0.2": "2011-05-08T23:09:06.411Z", + "1.0.3": "2011-05-09T08:04:08.279Z", + "1.0.4": "2011-05-10T16:29:38.349Z", + "1.0.5": "2011-05-13T08:39:09.095Z" + }, + "author": { + "name": "Nicolas Chambrier", + "email": "naholyr@gmail.com", + "url": "http://naholyr.fr" + }, + "repository": { + "type": "git", + "url": "git://github.com/naholyr/node-jus-task.git" + }, + "users": { + "naholyr": true + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/jus-task/1.0.0", + "1.0.1": "http://registry.npmjs.org/jus-task/1.0.1", + "1.0.2": "http://registry.npmjs.org/jus-task/1.0.2", + "1.0.3": "http://registry.npmjs.org/jus-task/1.0.3", + "1.0.4": "http://registry.npmjs.org/jus-task/1.0.4", + "1.0.5": "http://registry.npmjs.org/jus-task/1.0.5" + }, + "dist": { + "1.0.0": { + "shasum": "943677d68558b75f4ac53117a60fe80fcc8313f3", + "tarball": "http://registry.npmjs.org/jus-task/-/jus-task-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "90b89a9c540f9274d652e35f4dfec238efbd05e6", + "tarball": "http://registry.npmjs.org/jus-task/-/jus-task-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "b73b1f11de92bdd4ceaa8037e759380541f9b22f", + "tarball": "http://registry.npmjs.org/jus-task/-/jus-task-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "9bb7c0da29e85ba4ae60117c7f04c3d8c884e261", + "tarball": "http://registry.npmjs.org/jus-task/-/jus-task-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "25fc73b197947eecbbd2c133261c49a63d6ddbd1", + "tarball": "http://registry.npmjs.org/jus-task/-/jus-task-1.0.4.tgz" + }, + "1.0.5": { + "shasum": "f8638d3e49cbcd49f62b216464b7ca362ecef9df", + "tarball": "http://registry.npmjs.org/jus-task/-/jus-task-1.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/jus-task/" + }, + "justtest": { + "name": "justtest", + "description": "Unit tests with JSDOM wrapper.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "joshmarshall", + "email": "catchjosh@gmail.com" + } + ], + "time": { + "modified": "2011-09-17T04:26:55.972Z", + "created": "2011-09-16T17:53:18.659Z", + "0.0.1": "2011-09-16T17:53:19.157Z", + "0.0.2": "2011-09-17T03:29:51.351Z" + }, + "author": { + "name": "Josh Marshall", + "email": "catchjosh@gmail.com", + "url": "http://openjosh.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/justtest/0.0.1", + "0.0.2": "http://registry.npmjs.org/justtest/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "59bcf72f08dacc3c5312f42f5e9307d12572a4bb", + "tarball": "http://registry.npmjs.org/justtest/-/justtest-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "9d9bb8272567fc2d7a057bc31e9d75b45c763ccc", + "tarball": "http://registry.npmjs.org/justtest/-/justtest-0.0.2.tgz" + } + }, + "keywords": [ + "unittest", + "dom", + "test" + ], + "url": "http://registry.npmjs.org/justtest/" + }, + "jute": { + "name": "jute", + "description": "Javascript Unit Test Environment", + "dist-tags": { + "latest": "0.0.58" + }, + "maintainers": [ + { + "name": "zzo", + "email": "mark@zzo.com" + } + ], + "time": { + "modified": "2011-12-02T20:31:03.053Z", + "created": "2011-08-01T06:16:18.938Z", + "0.0.1": "2011-08-01T06:16:56.806Z", + "0.0.2": "2011-08-02T17:24:15.273Z", + "0.0.4": "2011-08-02T19:25:19.731Z", + "0.0.6": "2011-08-04T09:48:42.901Z", + "0.0.7": "2011-08-04T21:55:35.967Z", + "0.0.8": "2011-08-10T08:14:16.222Z", + "0.0.9": "2011-08-10T17:25:59.989Z", + "0.0.10": "2011-08-10T21:41:06.150Z", + "0.0.11": "2011-08-15T22:57:59.398Z", + "0.0.12": "2011-08-16T03:49:38.508Z", + "0.0.13": "2011-08-16T18:48:12.548Z", + "0.0.14": "2011-08-17T03:21:40.378Z", + "0.0.15": "2011-08-17T17:57:44.166Z", + "0.0.16": "2011-08-17T23:53:50.749Z", + "0.0.17": "2011-08-19T03:40:23.341Z", + "0.0.18": "2011-08-19T15:26:46.585Z", + "0.0.20": "2011-08-19T21:20:48.673Z", + "0.0.21": "2011-08-19T21:45:41.958Z", + "0.0.22": "2011-08-19T22:51:08.392Z", + "0.0.23": "2011-08-19T23:06:04.385Z", + "0.0.24": "2011-08-21T09:27:05.905Z", + "0.0.25": "2011-08-22T03:37:56.232Z", + "0.0.26": "2011-08-22T05:42:47.033Z", + "0.0.27": "2011-08-22T22:47:29.780Z", + "0.0.28": "2011-08-22T22:55:23.534Z", + "0.0.29": "2011-08-22T22:58:24.329Z", + "0.0.30": "2011-08-22T23:04:12.057Z", + "0.0.31": "2011-08-23T00:13:57.889Z", + "0.0.32": "2011-08-23T00:15:32.891Z", + "0.0.33": "2011-08-23T00:19:16.815Z", + "0.0.35": "2011-08-23T00:26:35.582Z", + "0.0.36": "2011-08-23T06:40:46.744Z", + "0.0.37": "2011-08-23T16:58:46.697Z", + "0.0.38": "2011-08-23T20:52:36.401Z", + "0.0.39": "2011-08-23T21:45:16.951Z", + "0.0.40": "2011-08-23T21:47:09.114Z", + "0.0.41": "2011-08-24T05:39:22.313Z", + "0.0.42": "2011-08-24T15:41:46.876Z", + "0.0.43": "2011-08-25T19:46:34.168Z", + "0.0.44": "2011-08-26T00:17:01.444Z", + "0.0.45": "2011-08-26T03:31:31.832Z", + "0.0.46": "2011-08-26T06:46:23.136Z", + "0.0.47": "2011-08-27T00:21:39.057Z", + "0.0.48": "2011-08-27T00:54:56.529Z", + "0.0.49": "2011-08-27T09:28:22.974Z", + "0.0.50": "2011-08-29T04:42:35.478Z", + "0.0.51": "2011-08-29T05:46:07.252Z", + "0.0.52": "2011-09-14T20:22:33.709Z", + "0.0.53": "2011-09-15T01:08:55.526Z", + "0.0.54": "2011-10-06T01:07:21.582Z", + "0.0.55": "2011-11-09T21:01:59.465Z", + "0.0.56": "2011-11-09T22:32:55.750Z", + "0.0.57": "2011-11-21T22:50:25.246Z", + "0.0.58": "2011-12-02T20:31:03.053Z" + }, + "author": { + "name": "Mark Ethan Trostler", + "email": "mark@zzo.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/zzo/JUTE.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jute/0.0.1", + "0.0.2": "http://registry.npmjs.org/jute/0.0.2", + "0.0.4": "http://registry.npmjs.org/jute/0.0.4", + "0.0.6": "http://registry.npmjs.org/jute/0.0.6", + "0.0.7": "http://registry.npmjs.org/jute/0.0.7", + "0.0.8": "http://registry.npmjs.org/jute/0.0.8", + "0.0.9": "http://registry.npmjs.org/jute/0.0.9", + "0.0.10": "http://registry.npmjs.org/jute/0.0.10", + "0.0.11": "http://registry.npmjs.org/jute/0.0.11", + "0.0.12": "http://registry.npmjs.org/jute/0.0.12", + "0.0.13": "http://registry.npmjs.org/jute/0.0.13", + "0.0.14": "http://registry.npmjs.org/jute/0.0.14", + "0.0.15": "http://registry.npmjs.org/jute/0.0.15", + "0.0.16": "http://registry.npmjs.org/jute/0.0.16", + "0.0.17": "http://registry.npmjs.org/jute/0.0.17", + "0.0.18": "http://registry.npmjs.org/jute/0.0.18", + "0.0.20": "http://registry.npmjs.org/jute/0.0.20", + "0.0.21": "http://registry.npmjs.org/jute/0.0.21", + "0.0.22": "http://registry.npmjs.org/jute/0.0.22", + "0.0.23": "http://registry.npmjs.org/jute/0.0.23", + "0.0.24": "http://registry.npmjs.org/jute/0.0.24", + "0.0.25": "http://registry.npmjs.org/jute/0.0.25", + "0.0.26": "http://registry.npmjs.org/jute/0.0.26", + "0.0.27": "http://registry.npmjs.org/jute/0.0.27", + "0.0.28": "http://registry.npmjs.org/jute/0.0.28", + "0.0.29": "http://registry.npmjs.org/jute/0.0.29", + "0.0.30": "http://registry.npmjs.org/jute/0.0.30", + "0.0.31": "http://registry.npmjs.org/jute/0.0.31", + "0.0.32": "http://registry.npmjs.org/jute/0.0.32", + "0.0.33": "http://registry.npmjs.org/jute/0.0.33", + "0.0.35": "http://registry.npmjs.org/jute/0.0.35", + "0.0.36": "http://registry.npmjs.org/jute/0.0.36", + "0.0.37": "http://registry.npmjs.org/jute/0.0.37", + "0.0.38": "http://registry.npmjs.org/jute/0.0.38", + "0.0.39": "http://registry.npmjs.org/jute/0.0.39", + "0.0.40": "http://registry.npmjs.org/jute/0.0.40", + "0.0.41": "http://registry.npmjs.org/jute/0.0.41", + "0.0.42": "http://registry.npmjs.org/jute/0.0.42", + "0.0.43": "http://registry.npmjs.org/jute/0.0.43", + "0.0.44": "http://registry.npmjs.org/jute/0.0.44", + "0.0.45": "http://registry.npmjs.org/jute/0.0.45", + "0.0.46": "http://registry.npmjs.org/jute/0.0.46", + "0.0.47": "http://registry.npmjs.org/jute/0.0.47", + "0.0.48": "http://registry.npmjs.org/jute/0.0.48", + "0.0.49": "http://registry.npmjs.org/jute/0.0.49", + "0.0.50": "http://registry.npmjs.org/jute/0.0.50", + "0.0.51": "http://registry.npmjs.org/jute/0.0.51", + "0.0.52": "http://registry.npmjs.org/jute/0.0.52", + "0.0.53": "http://registry.npmjs.org/jute/0.0.53", + "0.0.54": "http://registry.npmjs.org/jute/0.0.54", + "0.0.55": "http://registry.npmjs.org/jute/0.0.55", + "0.0.56": "http://registry.npmjs.org/jute/0.0.56", + "0.0.57": "http://registry.npmjs.org/jute/0.0.57", + "0.0.58": "http://registry.npmjs.org/jute/0.0.58" + }, + "dist": { + "0.0.1": { + "shasum": "4af0f5aa75be1665629a5ac260697077ab075aa6", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "0e1c842759643ce90a6239de77cd651e37779348", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.2.tgz" + }, + "0.0.4": { + "shasum": "c8d4c6ecfa91585b6add36d0d4ba65ab324c7211", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.4.tgz" + }, + "0.0.6": { + "shasum": "c7119dcc23ca2c5396c400bbb1213a8f3b353290", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "b6455d73ca23974a08ca10318568a1067e32bd88", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "0bfd2cf03505e88af2a0d45dfd1a50ee7cab1340", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "a5668550a3c742bdd46dcccc6cca845b2a1e82d0", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "73422668ff566fd707346fde017cdeaf6f5f4136", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.10.tgz" + }, + "0.0.11": { + "shasum": "bfa85832cdd0176ce02ec3227861876aba4c390a", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.11.tgz" + }, + "0.0.12": { + "shasum": "6828d4e5e910ff91dc6671cd8aa227f97c51069d", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.12.tgz" + }, + "0.0.13": { + "shasum": "3934a66d2c20919469a07a5a18f3148b2d2c028a", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.13.tgz" + }, + "0.0.14": { + "shasum": "01fdc018503c23e2c9a9ba16da49308017986329", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.14.tgz" + }, + "0.0.15": { + "shasum": "01aa84b9715c1a73da6ceae4127231a84ca80f31", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.15.tgz" + }, + "0.0.16": { + "shasum": "57e8556cc58c95623b468e0795995b19dea85899", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.16.tgz" + }, + "0.0.17": { + "shasum": "bee348845b6a52ae945e0d4f9ea67433510ef132", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.17.tgz" + }, + "0.0.18": { + "shasum": "e0c841694dc7afb7b6cc949027f06ab26553cd20", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.18.tgz" + }, + "0.0.20": { + "shasum": "1eee037faa747df00defc1f29e7d80a0c8a3b084", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.20.tgz" + }, + "0.0.21": { + "shasum": "f694fa3d552b7d7cf4c381620e5e9906814f410d", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.21.tgz" + }, + "0.0.22": { + "shasum": "40979248651ddbcea1b5be981e094078cddd4979", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.22.tgz" + }, + "0.0.23": { + "shasum": "390180b9a5d02bd5f6f9cc64c0dbc551f187061f", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.23.tgz" + }, + "0.0.24": { + "shasum": "166784da5f7c83f95e8eec38740552670b5ac225", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.24.tgz" + }, + "0.0.25": { + "shasum": "5213dcdf632f2dce0c741f5180308ac8d83b2bfb", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.25.tgz" + }, + "0.0.26": { + "shasum": "8185a421bd3cd122055b74831f7c8448b078a0dc", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.26.tgz" + }, + "0.0.27": { + "shasum": "723f48ea6b48415f42062a2ad2a87d3df7f21b37", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.27.tgz" + }, + "0.0.28": { + "shasum": "a5852256702cb6aa5c4e6bf580bc369ef2574ccb", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.28.tgz" + }, + "0.0.29": { + "shasum": "fea231e9c2e115843e9093885d3cd72fcacbb121", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.29.tgz" + }, + "0.0.30": { + "shasum": "78ea8c3cdaa921047ed2a4e39ee65ec4d1079393", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.30.tgz" + }, + "0.0.31": { + "shasum": "a760a488c9ae95c3aed345d66db23e8a96e194e5", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.31.tgz" + }, + "0.0.32": { + "shasum": "6416c2bafd218c65ca4a6814d647c7d65ac53561", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.32.tgz" + }, + "0.0.33": { + "shasum": "e2f2429205f644688d9617ce08a1155238894cf0", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.33.tgz" + }, + "0.0.35": { + "shasum": "36c393485cabef48310800a2ca4ca4d9a126b495", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.35.tgz" + }, + "0.0.36": { + "shasum": "20edfd62600fac1a30b3aaf2907102121ef8d3a0", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.36.tgz" + }, + "0.0.37": { + "shasum": "e2da224bb49bad35b0b25f1d3a43f136f5ed79c3", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.37.tgz" + }, + "0.0.38": { + "shasum": "0bdca45795b5c457da03ac2fdfc40728ad6d5e3c", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.38.tgz" + }, + "0.0.39": { + "shasum": "6898ecea8558c2d00feade18faa20ef76b939fb5", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.39.tgz" + }, + "0.0.40": { + "shasum": "ad361588ae93713720b11738b68af5ed8299fd1d", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.40.tgz" + }, + "0.0.41": { + "shasum": "5945eda9de09044470b3889cb7329fd6e5fb7de5", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.41.tgz" + }, + "0.0.42": { + "shasum": "bcea33211e842d5144f1a78652655395399cec94", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.42.tgz" + }, + "0.0.43": { + "shasum": "9fced6ea444b4839ee6e48bed0fae38c9299c57d", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.43.tgz" + }, + "0.0.44": { + "shasum": "718e3e0a46e3ca65ce68a18e9fb3c3aee25f8fbe", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.44.tgz" + }, + "0.0.45": { + "shasum": "b8741e8e452a64f7fdc499680d64cd8bf258ac32", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.45.tgz" + }, + "0.0.46": { + "shasum": "644d45faa04889fe2956bb7b877513d0f058bae7", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.46.tgz" + }, + "0.0.47": { + "shasum": "29781b8ea74a6a656f23e7f8a1072fecdc47f347", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.47.tgz" + }, + "0.0.48": { + "shasum": "35601102b321a5a2dcea86046556a252e3f2b29e", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.48.tgz" + }, + "0.0.49": { + "shasum": "d1e7faac523ab9fd17083eb397410f4df4963fe5", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.49.tgz" + }, + "0.0.50": { + "shasum": "aaa202734864b150039620227e13635589afafdf", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.50.tgz" + }, + "0.0.51": { + "shasum": "0788792753ffe45367dd559ac7069e7e72c29ba8", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.51.tgz" + }, + "0.0.52": { + "shasum": "4b0629ea19dab269911cc0dc3bae3ed2a1665bdf", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.52.tgz" + }, + "0.0.53": { + "shasum": "749511bf13908e89802148a7c8c5dd2de4c7c9ed", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.53.tgz" + }, + "0.0.54": { + "shasum": "a162033d805db7dd0faefd5084f1b5ac1d09fe21", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.54.tgz" + }, + "0.0.55": { + "shasum": "dbf2c6f223e2a8a722d4e7352ca8c4ee9412821f", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.55.tgz" + }, + "0.0.56": { + "shasum": "e226711a95d445f5cf1af8d9220d37655250406e", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.56.tgz" + }, + "0.0.57": { + "shasum": "d55010324e402aeb958ceec9ae73f493741313f5", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.57.tgz" + }, + "0.0.58": { + "shasum": "5b3444f4e9b2d75d7bef8ac557dbd81ffd699824", + "tarball": "http://registry.npmjs.org/jute/-/jute-0.0.58.tgz" + } + }, + "keywords": [ + "selenium", + "test", + "testing", + "unit", + "tests" + ], + "url": "http://registry.npmjs.org/jute/" + }, + "jwcrypto": { + "name": "jwcrypto", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "JavaScript implementation of the Verified Email Protocol\n\n- libs contains third-party libraries that need to be included. See\nlibs/dependencies.txt and libs/package.txt\n\n- This is written as CommonJS modules for node and\n such. Browserify is used to bundle it all up.", + "maintainers": [ + { + "name": "lloyd", + "email": "lloyd@hilaiel.com" + } + ], + "time": { + "modified": "2011-12-09T00:45:31.744Z", + "created": "2011-11-24T17:27:43.368Z", + "0.0.1": "2011-11-24T17:27:44.424Z", + "0.0.2": "2011-11-28T19:28:53.529Z", + "0.0.3": "2011-12-09T00:36:40.814Z", + "0.1.0": "2011-12-09T00:45:31.744Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/mozilla/jwcrypto.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/jwcrypto/0.0.1", + "0.0.2": "http://registry.npmjs.org/jwcrypto/0.0.2", + "0.0.3": "http://registry.npmjs.org/jwcrypto/0.0.3", + "0.1.0": "http://registry.npmjs.org/jwcrypto/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "92ce0e3abf97204ce6bd82a34831c8e0c06bae05", + "tarball": "http://registry.npmjs.org/jwcrypto/-/jwcrypto-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "7eb189c7f0568dae3680d7f78dfff61b51e619a0", + "tarball": "http://registry.npmjs.org/jwcrypto/-/jwcrypto-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "507df2b17a63c3478006746cc494c8e417d3dae1", + "tarball": "http://registry.npmjs.org/jwcrypto/-/jwcrypto-0.0.3.tgz" + }, + "0.1.0": { + "shasum": "7035ad656e1fe334198634ec5775c8a79306cd01", + "tarball": "http://registry.npmjs.org/jwcrypto/-/jwcrypto-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/jwcrypto/" + }, + "jwerty": { + "name": "jwerty", + "description": "Awesome handling of keyboard events", + "dist-tags": { + "latest": "0.3.1" + }, + "maintainers": [ + { + "name": "keithamus", + "email": "npm@keithcirkel.co.uk" + } + ], + "time": { + "modified": "2011-10-10T11:28:44.377Z", + "created": "2011-10-03T08:58:06.484Z", + "0.1.0": "2011-10-03T08:58:06.929Z", + "0.3.0": "2011-10-09T18:54:26.000Z", + "0.2.0": "2011-10-09T18:56:49.961Z", + "0.3.1": "2011-10-10T11:28:44.377Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/jwerty/0.1.0", + "0.2.0": "http://registry.npmjs.org/jwerty/0.2.0", + "0.3.0": "http://registry.npmjs.org/jwerty/0.3.0", + "0.3.1": "http://registry.npmjs.org/jwerty/0.3.1" + }, + "dist": { + "0.1.0": { + "shasum": "11cac29d27124190f651abe66a0d713a91a19bd0", + "tarball": "http://registry.npmjs.org/jwerty/-/jwerty-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "ecf6c9e93cb1df563e641b147ad2d9b645347c92", + "tarball": "http://registry.npmjs.org/jwerty/-/jwerty-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "5b90bbf4c99adc07c93439ceed6c38776a6e6bf6", + "tarball": "http://registry.npmjs.org/jwerty/-/jwerty-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "92130a3cf810075c1841e6c1fe31359c42cc7f6f", + "tarball": "http://registry.npmjs.org/jwerty/-/jwerty-0.3.1.tgz" + } + }, + "keywords": [ + "key", + "dom", + "keyup", + "KeyboardEvent", + "addEventListener", + "jQuery", + "Zepto", + "browser", + "ender" + ], + "url": "http://registry.npmjs.org/jwerty/" + }, + "jWorkflow": { + "name": "jWorkflow", + "description": "dude, wheres my workflow?", + "dist-tags": { + "latest": "0.6.0" + }, + "maintainers": [ + { + "name": "gtanner", + "email": "gtanner@gmail.com" + } + ], + "time": { + "modified": "2011-11-21T19:14:32.162Z", + "created": "2011-03-09T02:41:44.913Z", + "0.3.0": "2011-03-09T02:41:45.118Z", + "0.4.0": "2011-03-10T04:01:17.969Z", + "0.5.0": "2011-05-09T02:13:50.227Z", + "0.6.0": "2011-11-21T19:14:32.162Z" + }, + "author": { + "name": "gtanner" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/jWorkflow/0.3.0", + "0.4.0": "http://registry.npmjs.org/jWorkflow/0.4.0", + "0.5.0": "http://registry.npmjs.org/jWorkflow/0.5.0", + "0.6.0": "http://registry.npmjs.org/jWorkflow/0.6.0" + }, + "dist": { + "0.3.0": { + "shasum": "7128aada58ce083874116c7442e80ea77284a890", + "tarball": "http://registry.npmjs.org/jWorkflow/-/jWorkflow-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "85b62b97658146251efc3e8588d8bc61c08930f4", + "tarball": "http://registry.npmjs.org/jWorkflow/-/jWorkflow-0.4.0.tgz" + }, + "0.5.0": { + "shasum": "9d8a17b68ea2b41b42d1826d540c9af56aac7b76", + "tarball": "http://registry.npmjs.org/jWorkflow/-/jWorkflow-0.5.0.tgz" + }, + "0.6.0": { + "shasum": "152cd5ce3e318c5114a187a0654ad986909d830d", + "tarball": "http://registry.npmjs.org/jWorkflow/-/jWorkflow-0.6.0.tgz" + } + }, + "url": "http://registry.npmjs.org/jWorkflow/" + }, + "jwt": { + "name": "jwt", + "description": "JSON Web Token for node.js", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "mattrobenolt", + "email": "matt@ydekproductions.com" + } + ], + "time": { + "modified": "2011-07-28T18:08:05.857Z", + "created": "2011-07-28T18:02:31.714Z", + "0.1.0": "2011-07-28T18:08:05.857Z" + }, + "author": { + "name": "Michael Hanson/Matt Robenolt" + }, + "repository": { + "type": "git", + "url": "git://github.com/mattrobenolt/jwt-node.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/jwt/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "42a6787809e0ffda824f135d3ff044440d7e37a3", + "tarball": "http://registry.npmjs.org/jwt/-/jwt-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/jwt/" + }, + "jxLoader": { + "name": "jxLoader", + "description": "A javascript loader designed for specifically for JxLib but generic enough to work with any JS library adhering to the MooTools header standard", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": null, + "maintainers": [ + { + "name": "jonlb", + "email": "jon@solagratiadesigns.com" + } + ], + "time": { + "modified": "2011-11-12T17:36:24.115Z", + "created": "2011-11-12T17:36:22.495Z", + "0.1.0": "2011-11-12T17:36:24.115Z" + }, + "author": { + "name": "Jonathan Bomgardner", + "email": "jon@solagratiadesigns.com", + "url": "http://solagratiadesigns.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/jonlb/node-jxLoader.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/jxLoader/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "3f2ea9e6adeab2087c9c9cbb12c8cb099d254edd", + "tarball": "http://registry.npmjs.org/jxLoader/-/jxLoader-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/jxLoader/" + }, + "kabin": { + "name": "kabin", + "description": "Simple JSON file database for nodejs", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "tnlogy", + "email": "nurmiranta@gmail.com" + } + ], + "time": { + "modified": "2011-10-24T14:52:09.839Z", + "created": "2011-10-12T18:32:36.316Z", + "0.0.1": "2011-10-12T18:32:37.892Z", + "0.0.3": "2011-10-24T14:52:09.839Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/tnlogy/kabin.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/kabin/0.0.1", + "0.0.3": "http://registry.npmjs.org/kabin/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "e05ca7f65e1a9235f0133f302352ef29de8ffaf2", + "tarball": "http://registry.npmjs.org/kabin/-/kabin-0.0.1.tgz" + }, + "0.0.3": { + "shasum": "3e4fcb6ba13b09fac4742e4ecde4c624dd88ae80", + "tarball": "http://registry.npmjs.org/kabin/-/kabin-0.0.3.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/kabin/" + }, + "kaffeine": { + "name": "kaffeine", + "description": "Enhanced Syntax for Javascript", + "dist-tags": { + "latest": "0.1.5" + }, + "maintainers": [ + { + "name": "weepy", + "email": "jonahfox@gmail.com" + } + ], + "author": { + "name": "weepy" + }, + "repository": { + "type": "git", + "url": "git://github.com/weepy/kaffeine.git" + }, + "time": { + "modified": "2011-07-23T16:35:55.633Z", + "created": "2011-03-16T18:41:27.547Z", + "0.0.1": "2011-03-16T18:41:27.547Z", + "0.0.2": "2011-03-16T18:41:27.547Z", + "0.0.3": "2011-03-16T18:41:27.547Z", + "0.0.4": "2011-03-16T18:41:27.547Z", + "0.0.5": "2011-03-16T18:41:27.547Z", + "0.0.6": "2011-03-16T18:41:27.547Z", + "0.0.8": "2011-04-22T18:01:53.865Z", + "0.1.0": "2011-05-10T21:34:03.586Z", + "0.1.1": "2011-05-12T10:25:31.727Z", + "0.1.2": "2011-05-12T16:36:19.274Z", + "0.1.3": "2011-05-13T15:31:11.980Z", + "0.1.4": "2011-05-15T18:02:32.656Z", + "0.1.5": "2011-07-23T16:35:55.633Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/kaffeine/0.0.1", + "0.0.2": "http://registry.npmjs.org/kaffeine/0.0.2", + "0.0.3": "http://registry.npmjs.org/kaffeine/0.0.3", + "0.0.4": "http://registry.npmjs.org/kaffeine/0.0.4", + "0.0.5": "http://registry.npmjs.org/kaffeine/0.0.5", + "0.0.6": "http://registry.npmjs.org/kaffeine/0.0.6", + "0.0.8": "http://registry.npmjs.org/kaffeine/0.0.8", + "0.1.0": "http://registry.npmjs.org/kaffeine/0.1.0", + "0.1.1": "http://registry.npmjs.org/kaffeine/0.1.1", + "0.1.2": "http://registry.npmjs.org/kaffeine/0.1.2", + "0.1.3": "http://registry.npmjs.org/kaffeine/0.1.3", + "0.1.4": "http://registry.npmjs.org/kaffeine/0.1.4", + "0.1.5": "http://registry.npmjs.org/kaffeine/0.1.5" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/kaffeine/-/kaffeine-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/kaffeine/-/kaffeine-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/kaffeine/-/kaffeine-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://registry.npmjs.org/kaffeine/-/kaffeine-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://registry.npmjs.org/kaffeine/-/kaffeine-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "25e5093db42274cbc1a1b0ec5cdf119835780b22", + "tarball": "http://registry.npmjs.org/kaffeine/-/kaffeine-0.0.6.tgz" + }, + "0.0.8": { + "shasum": "9a59cd72e4b9a6dc530f07517c7717d9d58b6d28", + "tarball": "http://registry.npmjs.org/kaffeine/-/kaffeine-0.0.8.tgz" + }, + "0.1.0": { + "shasum": "52f020037d4d005b8c511045465ad3c0c2615446", + "tarball": "http://registry.npmjs.org/kaffeine/-/kaffeine-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "9b5136bdc36d5c3da80591a4e78e286caa8b7d81", + "tarball": "http://registry.npmjs.org/kaffeine/-/kaffeine-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "3ad8ce3b5833f8d7bdd24dd42300e2f0c3e9b378", + "tarball": "http://registry.npmjs.org/kaffeine/-/kaffeine-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "1083106889f90184a0133551106461968750a92e", + "tarball": "http://registry.npmjs.org/kaffeine/-/kaffeine-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "52897443ff8edc098f5c2e99cf9a6fe3c2cbb7ab", + "tarball": "http://registry.npmjs.org/kaffeine/-/kaffeine-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "15ae6b161f05be2c87617f6ff7476089b2136a92", + "tarball": "http://registry.npmjs.org/kaffeine/-/kaffeine-0.1.5.tgz" + } + }, + "keywords": [ + "javascript", + "language", + "compiler", + "coffeescript", + "altjs" + ], + "url": "http://registry.npmjs.org/kaffeine/" + }, + "kafka": { + "name": "kafka", + "description": "A node client for Kafka", + "dist-tags": { + "latest": "0.1.7" + }, + "maintainers": [ + { + "name": "marcuswestin", + "email": "narcvs@gmail.com" + } + ], + "time": { + "modified": "2011-04-05T04:19:35.719Z", + "created": "2011-03-31T19:28:26.608Z", + "0.1.3": "2011-03-31T19:28:26.893Z", + "0.1.4": "2011-03-31T19:32:18.236Z", + "0.1.6": "2011-04-05T03:34:56.427Z", + "0.1.7": "2011-04-05T04:19:35.719Z" + }, + "author": { + "name": "Marcus Westin", + "email": "narcvs@gmail.com", + "url": "http://marcuswest.in" + }, + "repository": { + "type": "git", + "url": "git://github.com/marcuswestin/node-kafka.git" + }, + "versions": { + "0.1.3": "http://registry.npmjs.org/kafka/0.1.3", + "0.1.4": "http://registry.npmjs.org/kafka/0.1.4", + "0.1.6": "http://registry.npmjs.org/kafka/0.1.6", + "0.1.7": "http://registry.npmjs.org/kafka/0.1.7" + }, + "dist": { + "0.1.3": { + "shasum": "1052ec40d9c63675dfd4720824d56925845e52b1", + "tarball": "http://registry.npmjs.org/kafka/-/kafka-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "988e44ffb2ef8a9d80490ba47525c4ad99ef1009", + "tarball": "http://registry.npmjs.org/kafka/-/kafka-0.1.4.tgz" + }, + "0.1.6": { + "shasum": "31d61d184d640fe4a585492e377b9bb63d187a71", + "tarball": "http://registry.npmjs.org/kafka/-/kafka-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "ac9423e0106ce2e55c3979f5b79d3f9f2769e855", + "tarball": "http://registry.npmjs.org/kafka/-/kafka-0.1.7.tgz" + } + }, + "url": "http://registry.npmjs.org/kafka/" + }, + "kahan": { + "name": "kahan", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "viktors", + "email": "viktors.rotanovs@gmail.com" + } + ], + "time": { + "modified": "2011-05-31T15:13:34.660Z", + "created": "2011-05-31T15:11:57.119Z", + "0.0.2": "2011-05-31T15:11:58.136Z", + "0.0.3": "2011-05-31T15:13:34.660Z" + }, + "author": { + "name": "Viktors Rotanovs", + "email": "viktors.rotanovs@gmail.com", + "url": "http://rotanovs.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/viktors/node-kahan.git" + }, + "description": "Kahan summation algorithm for node.js", + "versions": { + "0.0.2": "http://registry.npmjs.org/kahan/0.0.2", + "0.0.3": "http://registry.npmjs.org/kahan/0.0.3" + }, + "dist": { + "0.0.2": { + "shasum": "9339740aea62b5b42b508376b2224fd6d59602e9", + "tarball": "http://registry.npmjs.org/kahan/-/kahan-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "ff1df8f79aabf2a01dde37e7252eb1ac9a65eac7", + "tarball": "http://registry.npmjs.org/kahan/-/kahan-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/kahan/" + }, + "Kahana": { + "name": "Kahana", + "dist-tags": { + "latest": "1.3.19" + }, + "maintainers": [ + { + "name": "mah0x211", + "email": "mah0x211@gmail.com" + } + ], + "time": { + "modified": "2011-07-26T09:42:39.767Z", + "created": "2011-01-25T09:33:45.949Z", + "1.0.0": "2011-01-25T09:33:46.754Z", + "1.0.1": "2011-01-27T00:15:49.697Z", + "1.0.2": "2011-01-29T08:27:30.297Z", + "1.1.0": "2011-01-30T17:19:22.933Z", + "1.1.1": "2011-01-30T17:32:29.813Z", + "1.1.2": "2011-01-31T10:46:51.630Z", + "1.2.0": "2011-02-08T15:41:50.570Z", + "1.2.1": "2011-02-08T15:45:39.916Z", + "1.2.8": "2011-02-09T10:55:52.912Z", + "1.3.14": "2011-05-27T19:55:27.457Z", + "1.3.18": "2011-07-14T11:38:02.011Z", + "1.3.19": "2011-07-26T09:42:39.767Z" + }, + "author": { + "name": "Masatoshi Teruya", + "email": "mah0x211@gmail.com", + "url": "http://kontext.jp/" + }, + "repository": { + "type": "git", + "url": "git://github.com/mah0x211/node-kahana.git" + }, + "description": "tiny node.js framework", + "versions": { + "1.0.0": "http://registry.npmjs.org/Kahana/1.0.0", + "1.0.1": "http://registry.npmjs.org/Kahana/1.0.1", + "1.0.2": "http://registry.npmjs.org/Kahana/1.0.2", + "1.1.0": "http://registry.npmjs.org/Kahana/1.1.0", + "1.1.1": "http://registry.npmjs.org/Kahana/1.1.1", + "1.1.2": "http://registry.npmjs.org/Kahana/1.1.2", + "1.2.0": "http://registry.npmjs.org/Kahana/1.2.0", + "1.3.14": "http://registry.npmjs.org/Kahana/1.3.14", + "1.3.18": "http://registry.npmjs.org/Kahana/1.3.18", + "1.3.19": "http://registry.npmjs.org/Kahana/1.3.19" + }, + "dist": { + "1.0.0": { + "shasum": "aca3e68201f9727e5cce507e117bfdf8f49f5716", + "tarball": "http://registry.npmjs.org/Kahana/-/Kahana-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "03d40b710b749e497e04e3fd742fe2568a5274df", + "tarball": "http://registry.npmjs.org/Kahana/-/Kahana-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "9396c2f078be9978c388b6f14d27273d3f6bef3b", + "tarball": "http://registry.npmjs.org/Kahana/-/Kahana-1.0.2.tgz" + }, + "1.1.0": { + "shasum": "36a0659db48d0e0388054a0f79252567557e533b", + "tarball": "http://registry.npmjs.org/Kahana/-/Kahana-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "16faec0985202c12d8afd770a0b2e17396049261", + "tarball": "http://registry.npmjs.org/Kahana/-/Kahana-1.1.1.tgz" + }, + "1.1.2": { + "shasum": "36ae1f38ab5d1a18bdfdf84c341ef4d0ff66efba", + "tarball": "http://registry.npmjs.org/Kahana/-/Kahana-1.1.2.tgz" + }, + "1.2.0": { + "shasum": "fe97367aa92e6a956bb9fd16c963ce48dc963459", + "tarball": "http://registry.npmjs.org/Kahana/-/Kahana-1.2.0.tgz" + }, + "1.3.14": { + "shasum": "81262ee652de33c81379c67e86f3147af703ce17", + "tarball": "http://registry.npmjs.org/Kahana/-/Kahana-1.3.14.tgz" + }, + "1.3.18": { + "shasum": "3e376ffd18dba82fd18e958cd03363d33f84926f", + "tarball": "http://registry.npmjs.org/Kahana/-/Kahana-1.3.18.tgz" + }, + "1.3.19": { + "shasum": "cf41efcd27e1792b093c0006245e0333431f1d48", + "tarball": "http://registry.npmjs.org/Kahana/-/Kahana-1.3.19.tgz" + } + }, + "keywords": [ + "observer", + "Router", + "HTTP Server" + ], + "url": "http://registry.npmjs.org/Kahana/" + }, + "kahve-ansi": { + "name": "kahve-ansi", + "description": "Easy-mode ANSI control codes.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "jmalloc", + "email": "james.harris@icecave.com.au" + } + ], + "time": { + "modified": "2011-08-04T01:06:29.750Z", + "created": "2011-07-26T06:20:11.058Z", + "0.0.1": "2011-07-26T06:20:12.456Z", + "0.0.2": "2011-08-04T01:06:29.750Z" + }, + "author": { + "name": "James Harris" + }, + "repository": { + "type": "git", + "url": "git://github.com/jmalloc/kahve-ansi.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/kahve-ansi/0.0.1", + "0.0.2": "http://registry.npmjs.org/kahve-ansi/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "fa20eaf12dcf4415d6d9c1ad91006aa03a9e590b", + "tarball": "http://registry.npmjs.org/kahve-ansi/-/kahve-ansi-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "37336d7a82e935861cdc02f999fa1fb91bdadba5", + "tarball": "http://registry.npmjs.org/kahve-ansi/-/kahve-ansi-0.0.2.tgz" + } + }, + "keywords": [ + "console" + ], + "url": "http://registry.npmjs.org/kahve-ansi/" + }, + "kahve-cake": { + "name": "kahve-cake", + "description": "Standard Cakefile commands for Kahve projects.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "jmalloc", + "email": "james.harris@icecave.com.au" + } + ], + "time": { + "modified": "2011-08-01T03:08:02.730Z", + "created": "2011-08-01T03:08:01.285Z", + "0.0.1": "2011-08-01T03:08:02.730Z" + }, + "author": { + "name": "James Harris" + }, + "repository": { + "type": "git", + "url": "git://github.com/jmalloc/kahve-cake.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/kahve-cake/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "80bcf1e20bf51da8463d119ff89a019975147902", + "tarball": "http://registry.npmjs.org/kahve-cake/-/kahve-cake-0.0.1.tgz" + } + }, + "keywords": [ + "cake", + "cakefile", + "build" + ], + "url": "http://registry.npmjs.org/kahve-cake/" + }, + "kahve-classmethod": { + "name": "kahve-classmethod", + "description": "A Pythonesque 'classmethod' implementation for CoffeeScript.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "jmalloc", + "email": "james.harris@icecave.com.au" + } + ], + "time": { + "modified": "2011-08-01T02:33:44.037Z", + "created": "2011-08-01T02:33:42.748Z", + "0.0.1": "2011-08-01T02:33:44.037Z" + }, + "author": { + "name": "James Harris" + }, + "repository": { + "type": "git", + "url": "git://github.com/jmalloc/kahve-classmethod.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/kahve-classmethod/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "51bc919324ced9b65b6c59bd3feb77517f71d7a6", + "tarball": "http://registry.npmjs.org/kahve-classmethod/-/kahve-classmethod-0.0.1.tgz" + } + }, + "keywords": [ + "classmethod" + ], + "url": "http://registry.npmjs.org/kahve-classmethod/" + }, + "kahve-exception": { + "name": "kahve-exception", + "description": "An exception object model for CoffeeScript.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "jmalloc", + "email": "james.harris@icecave.com.au" + } + ], + "time": { + "modified": "2011-08-08T03:47:21.180Z", + "created": "2011-08-08T03:47:17.521Z", + "0.0.1": "2011-08-08T03:47:21.180Z" + }, + "author": { + "name": "James Harris" + }, + "repository": { + "type": "git", + "url": "git://github.com/jmalloc/kahve-exception.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/kahve-exception/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "927be436cbeb0f917afd41dfab38875d70cebbec", + "tarball": "http://registry.npmjs.org/kahve-exception/-/kahve-exception-0.0.1.tgz" + } + }, + "keywords": [ + "exception", + "error" + ], + "url": "http://registry.npmjs.org/kahve-exception/" + }, + "kahve-progress": { + "name": "kahve-progress", + "description": "Simple meter for reporting progress to the console.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "jmalloc", + "email": "james.harris@icecave.com.au" + } + ], + "time": { + "modified": "2011-05-19T10:08:17.467Z", + "created": "2011-05-19T10:08:16.044Z", + "0.0.1": "2011-05-19T10:08:17.467Z" + }, + "author": { + "name": "James Harris" + }, + "repository": { + "type": "git", + "url": "git://github.com/jmalloc/kahve-progress.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/kahve-progress/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "592eff2bd30b85e278a1f2301497b6b52791cb79", + "tarball": "http://registry.npmjs.org/kahve-progress/-/kahve-progress-0.0.1.tgz" + } + }, + "keywords": [ + "console" + ], + "url": "http://registry.npmjs.org/kahve-progress/" + }, + "kanshi": { + "name": "kanshi", + "description": "Simple script for monitoring websites", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "tnantoka", + "email": "bornneet@livedoor.com" + } + ], + "time": { + "modified": "2011-09-29T08:31:33.678Z", + "created": "2011-09-25T07:32:27.918Z", + "0.1.0": "2011-09-25T07:32:31.785Z", + "0.1.1": "2011-09-29T08:31:33.678Z" + }, + "author": { + "name": "tnantoka", + "email": "bornneet@livedoor.com", + "url": "http://blog.bornneet.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/tnantoka/kanshi.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/kanshi/0.1.0", + "0.1.1": "http://registry.npmjs.org/kanshi/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "7622fb8f8a8673e42a2c35f4f7e3504dda5ec02b", + "tarball": "http://registry.npmjs.org/kanshi/-/kanshi-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "21f319a59d4e26afbc9267eae3623e93d8e31118", + "tarball": "http://registry.npmjs.org/kanshi/-/kanshi-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/kanshi/" + }, + "kanso": { + "name": "kanso", + "description": "The surprisingly simple way to write CouchApps", + "dist-tags": { + "latest": "0.0.7" + }, + "maintainers": [ + { + "name": "caolan", + "email": "caolan@caolanmcmahon.com" + } + ], + "time": { + "modified": "2011-08-17T03:30:21.720Z", + "created": "2011-01-26T13:57:46.857Z", + "0.0.1": "2011-01-26T13:57:47.244Z", + "0.0.2": "2011-01-29T22:50:07.779Z", + "0.0.3": "2011-04-27T16:02:03.055Z", + "0.0.4": "2011-05-08T22:13:15.334Z", + "0.0.5": "2011-05-10T17:25:13.422Z", + "0.0.6": "2011-05-21T18:58:51.043Z", + "0.0.7": "2011-06-24T19:11:09.746Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/caolan/kanso.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/kanso/0.0.1", + "0.0.2": "http://registry.npmjs.org/kanso/0.0.2", + "0.0.3": "http://registry.npmjs.org/kanso/0.0.3", + "0.0.4": "http://registry.npmjs.org/kanso/0.0.4", + "0.0.5": "http://registry.npmjs.org/kanso/0.0.5", + "0.0.6": "http://registry.npmjs.org/kanso/0.0.6", + "0.0.7": "http://registry.npmjs.org/kanso/0.0.7" + }, + "dist": { + "0.0.1": { + "shasum": "dc8462ce14a0973f23cf7665b920e8a37a0e770a", + "tarball": "http://registry.npmjs.org/kanso/-/kanso-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "2f7f6e246ac12a8e11fab9b17a8ebe37e5038043", + "tarball": "http://registry.npmjs.org/kanso/-/kanso-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "ea54dc4726d17a3dda75bf5a0a5c3d396deb9264", + "tarball": "http://registry.npmjs.org/kanso/-/kanso-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "e3209c3b8af1904e13dd14c348f93d7e5db4e9f3", + "tarball": "http://registry.npmjs.org/kanso/-/kanso-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "e23127d41a91d73ba31bb6df86fe74ab4ba77756", + "tarball": "http://registry.npmjs.org/kanso/-/kanso-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "413c5c06c37727c8585c5b15d785d6fd740758dd", + "tarball": "http://registry.npmjs.org/kanso/-/kanso-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "385441651402c56dc542713ac16867ea19aab1d7", + "tarball": "http://registry.npmjs.org/kanso/-/kanso-0.0.7.tgz" + } + }, + "url": "http://registry.npmjs.org/kanso/" + }, + "kaph": { + "name": "kaph", + "description": "Loose-coupled set of tools for handle requests under node.js", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "akaspin", + "email": "aka.spin@gmail.com" + } + ], + "author": { + "name": "Alexander Dorofeev" + }, + "repository": { + "type": "git", + "url": "http://github.com/akaspin/kaph.git" + }, + "versions": { + "0.1.2": "http://registry.npmjs.org/kaph/0.1.2" + }, + "dist": { + "0.1.2": { + "tarball": "http://registry.npmjs.org/kaph/-/kaph-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/kaph/" + }, + "karait": { + "name": "karait", + "description": "A ridiculously simple queuing system, with clients in various languages, built on top of MongoDB.", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "bcoe", + "email": "bcoe@uoguelph.ca" + } + ], + "time": { + "modified": "2011-12-04T20:32:50.037Z", + "created": "2011-09-07T04:50:34.757Z", + "0.0.1": "2011-09-07T04:50:36.084Z", + "0.0.2": "2011-09-07T05:10:51.793Z", + "0.0.3": "2011-09-12T21:10:35.243Z", + "0.0.4": "2011-09-12T21:24:57.294Z", + "1.0.0": "2011-12-04T20:32:50.037Z" + }, + "author": { + "name": "Ben Coe", + "email": "bencoe@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/bcoe/karait.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/karait/0.0.1", + "0.0.2": "http://registry.npmjs.org/karait/0.0.2", + "0.0.3": "http://registry.npmjs.org/karait/0.0.3", + "0.0.4": "http://registry.npmjs.org/karait/0.0.4", + "1.0.0": "http://registry.npmjs.org/karait/1.0.0" + }, + "dist": { + "0.0.1": { + "shasum": "db3bde07ff29cb4386328ec842eb32587d5c024b", + "tarball": "http://registry.npmjs.org/karait/-/karait-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/karait/-/karait-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/karait/-/karait-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://registry.npmjs.org/karait/-/karait-0.0.4.tgz" + }, + "1.0.0": { + "shasum": "c00a8343fe194cdb9bcda397e4cf5cc3b683a016", + "tarball": "http://registry.npmjs.org/karait/-/karait-1.0.0.tgz" + } + }, + "keywords": [ + "mongodb", + "queue" + ], + "url": "http://registry.npmjs.org/karait/" + }, + "kasabi": { + "name": "kasabi", + "description": "A node.js client for Kasabi", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "ldodds", + "email": "leigh@ldodds.com" + } + ], + "time": { + "modified": "2011-05-20T15:51:22.619Z", + "created": "2011-05-20T15:51:21.992Z", + "0.0.1": "2011-05-20T15:51:22.619Z" + }, + "author": { + "name": "Leigh Dodds", + "email": "leigh.dodds@talis.com", + "url": "http://ldodds.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/kasabi/kasabi.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/kasabi/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "6816dddc202811b1de490fa70a871c57efca1201", + "tarball": "http://registry.npmjs.org/kasabi/-/kasabi-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/kasabi/" + }, + "kassit": { + "name": "kassit", + "description": "Kassit - Rapid Client-Side AJAX Applications Development Framework", + "dist-tags": { + "latest": "0.1.5" + }, + "maintainers": [ + { + "name": "marxus", + "email": "marxus@gmail.com" + } + ], + "time": { + "modified": "2011-10-21T19:02:30.998Z", + "created": "2011-06-21T14:12:29.432Z", + "0.1.0": "2011-06-21T14:12:30.410Z", + "0.1.1": "2011-06-25T18:44:28.588Z", + "0.1.2": "2011-07-27T21:40:09.176Z", + "0.1.3": "2011-10-20T23:48:39.863Z", + "0.1.4": "2011-10-21T14:31:00.441Z", + "0.1.5": "2011-10-21T19:02:30.998Z" + }, + "author": { + "name": "Amit Marcus" + }, + "repository": { + "type": "git", + "url": "git://github.com/marxus85/kassit.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/kassit/0.1.0", + "0.1.1": "http://registry.npmjs.org/kassit/0.1.1", + "0.1.2": "http://registry.npmjs.org/kassit/0.1.2", + "0.1.3": "http://registry.npmjs.org/kassit/0.1.3", + "0.1.4": "http://registry.npmjs.org/kassit/0.1.4", + "0.1.5": "http://registry.npmjs.org/kassit/0.1.5" + }, + "dist": { + "0.1.0": { + "shasum": "1bf54834e3ef5a86eadba365766fd619fdcbe978", + "tarball": "http://registry.npmjs.org/kassit/-/kassit-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "b86f829d2a60502ff774fc6c49c7b1213ac0bf08", + "tarball": "http://registry.npmjs.org/kassit/-/kassit-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "7aa051e172c18f221bbeafe866f48e60b0a7ee50", + "tarball": "http://registry.npmjs.org/kassit/-/kassit-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "1f80f166a0b95d6b64cff28fb26e6fef4cafd5fa", + "tarball": "http://registry.npmjs.org/kassit/-/kassit-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "08a7f3fa58ecc951fb8f7e505a135f28447fecbc", + "tarball": "http://registry.npmjs.org/kassit/-/kassit-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "fc86ee65a4de238b25eccec07492a43abd6428ea", + "tarball": "http://registry.npmjs.org/kassit/-/kassit-0.1.5.tgz" + } + }, + "url": "http://registry.npmjs.org/kassit/" + }, + "katu": { + "name": "katu", + "description": "Backbone style routing for Connect.", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "jakeluer", + "email": "jake.luer@incatern.com" + } + ], + "time": { + "modified": "2011-10-15T02:51:26.545Z", + "created": "2011-10-15T01:47:42.084Z", + "0.0.1": "2011-10-15T01:47:42.706Z", + "0.0.2": "2011-10-15T02:24:22.847Z", + "0.0.3": "2011-10-15T02:51:26.545Z" + }, + "author": { + "name": "Jake Luer", + "email": "@jakeluer" + }, + "repository": { + "type": "git", + "url": "git://github.com/logicalparadox/katu.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/katu/0.0.1", + "0.0.2": "http://registry.npmjs.org/katu/0.0.2", + "0.0.3": "http://registry.npmjs.org/katu/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "60f821e569c1ed1e867c8541bc9ad2630e9d98ff", + "tarball": "http://registry.npmjs.org/katu/-/katu-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "4c09dff09b142a6d213f8f58fb71b13e039dc61c", + "tarball": "http://registry.npmjs.org/katu/-/katu-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "c15d087b31d4ba9dce346adc7824662ce4e8664f", + "tarball": "http://registry.npmjs.org/katu/-/katu-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/katu/" + }, + "Katy": { + "name": "Katy", + "description": "CoffeeScript Combinators", + "dist-tags": { + "latest": "1.0.0" + }, + "readme": "Katy: Coffeescript Combinators\n===\n\nKaty makes writing [fluent][fluent] Coffeescript easy by providing the `.K` and `.T` combinators for Coffeescript objects.\n\nThe **tl;dr** is that Katy adds two methods, `.K` and `.T` to any class or classes you desire:\n\n```coffeescript\nKT = require('Katy').KT\n\nKT.mixInto(String)\n\n# K calls a function on the receiver and returns the receiver\n\n'Hello'.K (s) -> s + ' World'\n # => returns 'Hello'\n \n# T calls a function on the receiver and returns the result\n\n'Hello'.K (s) -> s + ' World'\n # => returns 'Hello World'\n```\n\nYou can also call any method by name:\n\n```coffeescript\nKT.mixInto(Array)\n\n[1..10]\n .K('pop')\n .K('pop')\n .K('pop')\n .T('pop')\n # => returns 7\n```\n\n## How does that make my code more fluent?\n\nYou're familiar with [fluent interfaces][fluent]. They're great, but they rely on the author of the API making sure that each function returns its receiver. The `.K` method allows you to make any function or method \"fluent\" even if the original author has other ideas. The `.K` and `.T` methods also allow you to write your own methods and 'call' them just as if they were baked into the original object. For example, you can fake an `identifiers` filter for arrays of strings:\n\n[fluent]: http://en.wikipedia.org/wiki/Fluent_interface\n\n```coffeescript\nrequire 'underscore'\n\nidentifiers = (arrOfSymbols) ->\n _.select arrOfSymbols, (str) ->\n /^[_a-zA-Z]\\w*$/.test(str)\n \nsomeArray\n .T(identifiers)\n .K('someMethodName')\n .T(someOtherFilter)\n```\n\nThis is cleaner than trying to mix oridinary functions with methods and adopting tenporary variables when you want to work around what the function was written to return. In this example, having extended `Array.prototype` with `.K` and `.T` once, you need not extend it any more to add your own custom methods.\n\nTo recap:\n\n1. You can make any function into something that can be called like a method, making your code read more naturally, and;\n2. You can give any function or built-in method either \"fluent\" (return the receiver) or \"pipeline\" (return its value) semantics as you please.\n\n## Monkey-patching is evil!\n\nI agree. `KT(foo).K(...)` and `KT(foo).T(...)` work just fine without mixing `.K` and `.T` into an existing class, much as `_(...).tap` and other methods work without modifying an existing class. Also:\n\n```coffeescript\n\nKT([1..10])\n .chain()\n .K('pop')\n .K('pop')\n .K('pop')\n .T('pop')\n .value()\n # => returns 7\n```\n\n## Stuff and nonsense, this is a syntax issue, not a functional issue\n\n[I agree][sans-titre], but that being said:\n\n1. You can use katy now instead of waiting to see if Coffeescript adopts a syntax for chaining methods, and;\n2. The `.K` and `.T` methods turn any function into something you can call like a method, which makes your code read more cleanly.\n\n[sans-titre]: https://github.com/raganwald/homoiconic/blob/master/2011/11/sans-titre.md \"Sans Titre\"\n \n## Is Katy any good?\n\n[Yes][y].\n\n[y]: http://news.ycombinator.com/item?id=3067434\n\n[um]: https://github.com/raganwald/Underscore-Matchers-for-Jasmine\n\n## Cool! Does it work with jQuery?\n\nYes, but if you like jQuery and like Katy, you'll love [jQuery Combinators][jc].\n\n[jc]: https://github.com/raganwald/JQuery-Combinators\n\n## Calling a method by name is cool, but can you do more with Strings?\n\nTry `KT.installStringLambdas()`. The result is not to everybody's taste, but those who like it, like it a lot.\n\n## What's with the naming conventions?\n\n`.T` is known in some CS circles as the [Thrush][t] or `T` combinator. Likewise, `.K` is known in combinatory logic circles as the \"K Combinator\" or [Kestrel][k]. To simplify the explanation radically, `T` and `K` are called combinators because they combine things to produce a result in different ways. Functional programmers call such things higher-order functions, but what makes combinators interesting is that combinators work by rearranging the order of things in an expression.\n\nFor example, `T` reverses the order of two things. Think about it: Instead of writing `identifiers(some_array)`, we use `T` to write `some_array.T(identifiers)`. That rearrangement is very handy for making our code conform to fluent style. Likewise, `K` leaves them in the same order but removes something. This ability to rearrange things is what makes them so useful for taking code that would normally have function calls sprinkled throughout it and rearranging it into a nice tree of method calls in fluent style.\n\nMany other combinators exist, and they are all interesting with applications for functional and OO programmers. With combinators you can even get rid of parentheses in a programming language! If you aren't familiar with Combinatory Logic, I encourage you to follow the links to my posts about Kestrels and Thrushes, and better still do a little digging about Combinatory Logic in general. It's a rich, fascinating field of study that is so simple it's incredibly easy to pick up, and it leads naturally into functional and [concatenative][joy] languages.\n\n[k]: http://github.com/raganwald/homoiconic/blob/master/2008-10-29/kestrel.markdown#readme\n[t]: http://github.com/raganwald/homoiconic/blob/master/2008-10-30/thrush.markdown#readme\n[joy]: http://github.com/raganwald/homoiconic/blob/master/2008-11-16/joy.md#readme", + "maintainers": [ + { + "name": "raganwald", + "email": "raganwald@gmail.com" + } + ], + "time": { + "modified": "2011-12-08T16:17:43.776Z", + "created": "2011-12-05T23:53:48.245Z", + "0.0.4": "2011-12-05T23:53:49.053Z", + "0.0.5": "2011-12-06T00:17:28.138Z", + "0.0.6": "2011-12-07T21:43:22.649Z", + "1.0.0": "2011-12-08T16:17:43.776Z" + }, + "author": { + "name": "Reg Braithwaite", + "email": "raganwald@gmail.com", + "url": "http://reginald.braythwayt.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/raganwald/Katy.git" + }, + "versions": { + "0.0.4": "http://registry.npmjs.org/Katy/0.0.4", + "0.0.5": "http://registry.npmjs.org/Katy/0.0.5", + "0.0.6": "http://registry.npmjs.org/Katy/0.0.6", + "1.0.0": "http://registry.npmjs.org/Katy/1.0.0" + }, + "dist": { + "0.0.4": { + "shasum": "fec8e7c9d88eed7ba7814380c2130b92580242f9", + "tarball": "http://registry.npmjs.org/Katy/-/Katy-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "aafd4f113e480b9f3efd3604d800ea5a8b6c3f7f", + "tarball": "http://registry.npmjs.org/Katy/-/Katy-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "eafbfd8f2164ad6da91fefa91aa774c274e227fb", + "tarball": "http://registry.npmjs.org/Katy/-/Katy-0.0.6.tgz" + }, + "1.0.0": { + "shasum": "8f71053110b43438728e7fc474f8c12e2891ca0a", + "tarball": "http://registry.npmjs.org/Katy/-/Katy-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/Katy/" + }, + "kdtree": { + "name": "kdtree", + "description": "Basic libkdtree binding to node", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "justinethier", + "email": "justin.ethier@gmail.com" + } + ], + "time": { + "modified": "2011-03-23T03:02:44.325Z", + "created": "2011-03-20T03:06:54.639Z", + "0.0.1": "2011-03-20T03:06:54.780Z", + "0.0.2": "2011-03-21T02:59:35.552Z", + "0.0.3": "2011-03-22T02:53:53.878Z", + "0.0.4": "2011-03-23T03:02:44.325Z" + }, + "author": { + "name": "Justin Ethier" + }, + "repository": { + "type": "git", + "url": "git://github.com/justinethier/node-kdtree.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/kdtree/0.0.1", + "0.0.2": "http://registry.npmjs.org/kdtree/0.0.2", + "0.0.3": "http://registry.npmjs.org/kdtree/0.0.3", + "0.0.4": "http://registry.npmjs.org/kdtree/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "c8a7d61ed3d768a614c692adbc6bfcd20dbde0af", + "tarball": "http://registry.npmjs.org/kdtree/-/kdtree-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "020f3e648d95b6420acbeec42f1c1e6e345d71ce", + "tarball": "http://registry.npmjs.org/kdtree/-/kdtree-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "cc46b961c42d304588c6e6877b8741937357b270", + "tarball": "http://registry.npmjs.org/kdtree/-/kdtree-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "c6bcd4be589e683ef3549537cc0068e1ee142fe5", + "tarball": "http://registry.npmjs.org/kdtree/-/kdtree-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/kdtree/" + }, + "keeper": { + "name": "keeper", + "description": "Work In Progress ORM", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "brianc", + "email": "brian.m.carlson@gmail.com" + } + ], + "time": { + "modified": "2011-07-17T22:13:42.818Z", + "created": "2011-06-22T03:28:02.705Z", + "0.0.1": "2011-06-22T03:28:02.937Z", + "0.0.2": "2011-06-23T15:22:54.008Z", + "0.0.3": "2011-07-17T20:07:07.933Z", + "0.0.4": "2011-07-17T21:39:22.385Z", + "0.0.5": "2011-07-17T21:50:52.488Z", + "0.0.6": "2011-07-17T22:13:42.818Z" + }, + "author": { + "name": "brianc", + "email": "brian.m.carlson@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/brianc/keeper.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/keeper/0.0.1", + "0.0.2": "http://registry.npmjs.org/keeper/0.0.2", + "0.0.3": "http://registry.npmjs.org/keeper/0.0.3", + "0.0.4": "http://registry.npmjs.org/keeper/0.0.4", + "0.0.5": "http://registry.npmjs.org/keeper/0.0.5", + "0.0.6": "http://registry.npmjs.org/keeper/0.0.6" + }, + "dist": { + "0.0.1": { + "shasum": "29726460559af13b2a801d10e2381a9350d277a6", + "tarball": "http://registry.npmjs.org/keeper/-/keeper-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f95491caf6dc8cb0e690ba009c0df0f64e9a863f", + "tarball": "http://registry.npmjs.org/keeper/-/keeper-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "e865b4300e3f4cad307885407a6e5227911f9b21", + "tarball": "http://registry.npmjs.org/keeper/-/keeper-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "a29a92e0c76ea7022cc8fb82c08714bbfdcfb479", + "tarball": "http://registry.npmjs.org/keeper/-/keeper-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "fcbcc8f9b66f573dfa329d1f6959519e435641b4", + "tarball": "http://registry.npmjs.org/keeper/-/keeper-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "fb9f59c023c779ddd181310ed1c5b883d30194e9", + "tarball": "http://registry.npmjs.org/keeper/-/keeper-0.0.6.tgz" + } + }, + "url": "http://registry.npmjs.org/keeper/" + }, + "kepler": { + "name": "kepler", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "dworthen", + "email": "worthend.derek@gmail.com" + } + ], + "time": { + "modified": "2011-11-16T05:09:13.297Z", + "created": "2011-10-30T20:05:45.368Z", + "0.0.1": "2011-10-30T20:05:48.537Z", + "0.0.11": "2011-10-30T21:33:42.670Z", + "0.1.0": "2011-11-16T05:09:13.297Z" + }, + "author": { + "name": "Derek Worthen" + }, + "description": "Static website generator", + "versions": { + "0.0.1": "http://registry.npmjs.org/kepler/0.0.1", + "0.0.11": "http://registry.npmjs.org/kepler/0.0.11", + "0.1.0": "http://registry.npmjs.org/kepler/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "ceba8373478189ed64b68a2c182bd6ff12fbe9a0", + "tarball": "http://registry.npmjs.org/kepler/-/kepler-0.0.1.tgz" + }, + "0.0.11": { + "shasum": "ddb96638f89de71367f4025f2886dec7cff41346", + "tarball": "http://registry.npmjs.org/kepler/-/kepler-0.0.11.tgz" + }, + "0.1.0": { + "shasum": "4cc2046bb851228540c6ba9f1db3e7dcbafbbbb2", + "tarball": "http://registry.npmjs.org/kepler/-/kepler-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/kepler/" + }, + "kestrel": { + "name": "kestrel", + "description": "Node.js client for Kestrel", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "matomesc", + "email": "matomesc@gmail.com" + } + ], + "time": { + "modified": "2011-06-28T23:24:58.914Z", + "created": "2011-06-28T23:24:58.582Z", + "0.0.1": "2011-06-28T23:24:58.914Z" + }, + "author": { + "name": "Mihai Tomescu", + "email": "matomesc@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/kestrel/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "7ffd12e8f1f5dd701a49e91aa5e7aba79f0ac9c9", + "tarball": "http://registry.npmjs.org/kestrel/-/kestrel-0.0.1.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/kestrel/" + }, + "kettle": { + "name": "kettle", + "description": "a scrolling content widget based on drag.js", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "jakeluer", + "email": "jake.luer@incatern.com" + } + ], + "time": { + "modified": "2011-08-28T15:43:39.862Z", + "created": "2011-08-28T15:43:39.259Z", + "0.0.1": "2011-08-28T15:43:39.862Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/logicalparadox/kettle.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/kettle/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "0683061fad55277c61ea62a52a83bdcf23e07bd9", + "tarball": "http://registry.npmjs.org/kettle/-/kettle-0.0.1.tgz" + } + }, + "keywords": [ + "ender", + "drag", + "drop", + "microjs" + ], + "url": "http://registry.npmjs.org/kettle/" + }, + "kexec": { + "name": "kexec", + "description": "Replace your Node.js process with another process. Like Ruby exec.", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": null, + "maintainers": [ + { + "name": "jp", + "email": "jprichardson@gmail.com" + } + ], + "time": { + "modified": "2011-12-05T15:16:51.669Z", + "created": "2011-12-05T15:16:50.071Z", + "0.0.1": "2011-12-05T15:16:51.669Z" + }, + "author": { + "name": "JP Richardson", + "email": "jprichardson@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/jprichardson/node-kexec.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/kexec/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "41f08cfc5c9c44f342179299a4026bdfa682e921", + "tarball": "http://registry.npmjs.org/kexec/-/kexec-0.0.1.tgz" + } + }, + "keywords": [ + "exec", + "spawn", + "process" + ], + "url": "http://registry.npmjs.org/kexec/" + }, + "KeyboardJS": { + "name": "KeyboardJS", + "description": "Ender Module for Keyboard binding without the pain.", + "dist-tags": { + "latest": "0.0.2" + }, + "readme": "KeyboardJS Library\n==================\n\nGetting Started\n---------------\nDownload the [library](https://github.com/RobertWHurst/KeyboardJS/zipball/master) and\nplace it somewhere in your project. All methods are accessed via the KeyboardJS namespace.\n\n##### Example Structure\n\n /\n /keyboard.js\n /app.js\n /index.html\n\nload the script with a script tag.\n\n##### Example index.html\n\n \n \n \n KeyboardJS Demo\n \n \n \n \n \n \n \n \n\nWhat can I do with KeyboardJS?\n------------------------------\nKeyboardJS will allow you to bind to any key the browser can detect. It allows for\nsetting up complex key combos or even single key binds with ease. It is aware of combo\noverlap and will not fire simpler combos or single key bindings when they share key with\nlarger combos.\n\nBasically if you want to use the keyboard, this will let you do it without restrictions.\n\nMethods\n-------\n\n### KeyboardJS.bind.key\n\n###### Usage\n\n KeyboardJS.bind.key(keyCombo, onDownCallback, onUpCallback);\n\nBinds any key or key combo. See 'keyCombo' definition below\nfor details. The onDownCallback is fired once the key or key combo becomes active. The\nonUpCallback is fired when the combo no longer active (a single key is released).\n\nBoth the onUpCallback and the onUpCallback are passed three arguments. The first is the\nkey event, the second is the keys pressed, and the third is the key combo string.\n\n###### Returned\nReturns an object containing the following methods.\n\n* clear - Removes the key or key combo binding.\n\n### KeyboardJS.bind.axis\n\n###### Usage\n\n KeyboardJS.bind.axis(upkeyCombo, downkeyCombo, leftkeyCombo, rightkeyCombo, callback);\n\nBinds four keys or key combos as an up, down, left, right \naxis. See 'keyCombo' definition above for details. The callback is fired when any of the key\ncombos are active. It is passed an axis object. See 'axis' definition below for more details.\n\n###### Returned\nReturns an object containing the following methods.\n\n* clear - Removes the axis binding.\n\n### KeyboardJS.activeKeys\n\n###### Usage\n\n KeyboardJS.activeKeys();\n\nReturns an array of active keys by name.\n\n### KeyboardJS.unbind.key\n\n###### Usage\n\n KeyboardJS.unbind.key(keyCombo);\n\nRemoves all bindings with a key or key combo. See 'keyCombo' definition for more details.\n\nDefinitions\n-----------\n\n### keyCombo\n\nA comma separated string of keys. Combos can be created using the + sign instead of a comma.\n\n###### examples\n\n* 'a' - binds to the 'a' key. Pressing 'a' will match this keyCombo.\n* 'a, b' - binds to the 'a' and 'b' keys. Pressing ether of these keys will match this keyCombo.\n* 'a + b' - binds to the 'a' and 'b' keys. Pressing both of these keys will match this keyCombo.\n* 'a + b, c + d' - binds to the 'a', 'b', 'c' and 'd' keys. Pressing ether the 'a' key and the 'b' key,\nor the 'c' and the 'd' key will match this keyCombo.\n\n### axis\n\nAn array containing two numbers. The first value represents x and the second represents y. These values\nare 1, 0, or -1.\n\n###### example\n\n [x, y]\n\nLanguage Support\n----------------\nKeyboardJS is an amd module for binding to keyboards with the US character set.\nAdding other character sets is also possible by editing the key code map variable\nnamed 'keys' in the module.\n\nCredits\n-------\nI made this to enable better access to key controls in my appications. I'd like to share\nit with fellow devs. Feel free to fork this project and make your own changes.\n", + "maintainers": [ + { + "name": "robertwhurst", + "email": "robertwhurst@gmail.com" + } + ], + "time": { + "modified": "2011-12-05T05:14:25.989Z", + "created": "2011-12-05T05:14:24.261Z", + "0.0.2": "2011-12-05T05:14:25.989Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/RobertWHurst/KeyboardJS.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/KeyboardJS/0.0.2" + }, + "dist": { + "0.0.2": { + "shasum": "826aeb373d85ae54ed02c20fedf1c134b90a74d9", + "tarball": "http://registry.npmjs.org/KeyboardJS/-/KeyboardJS-0.0.2.tgz" + } + }, + "keywords": [ + "keyboard", + "KeyboardJS", + "Robert Hurst", + "ender" + ], + "url": "http://registry.npmjs.org/KeyboardJS/" + }, + "keyed_list": { + "name": "keyed_list", + "description": "A keyed, enumerable list data type.", + "dist-tags": { + "latest": "1.0.2" + }, + "maintainers": [ + { + "name": "beastaugh", + "email": "benedict@eastaugh.net" + } + ], + "time": { + "modified": "2011-06-20T08:41:01.367Z", + "created": "2011-06-20T08:30:17.702Z", + "1.0.1": "2011-06-20T08:30:18.178Z", + "1.0.2": "2011-06-20T08:41:01.367Z" + }, + "author": { + "name": "Benedict Eastaugh", + "email": "benedict@eastaugh.net", + "url": "http://extralogical.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/othermedia/keyed_list.git" + }, + "versions": { + "1.0.1": "http://registry.npmjs.org/keyed_list/1.0.1", + "1.0.2": "http://registry.npmjs.org/keyed_list/1.0.2" + }, + "dist": { + "1.0.1": { + "shasum": "5a6a8de49d5ddb7b2c0eb730f93396bf8d789dba", + "tarball": "http://registry.npmjs.org/keyed_list/-/keyed_list-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "06c73d31e19b8cc37daab6d8e752c8d3f6c14411", + "tarball": "http://registry.npmjs.org/keyed_list/-/keyed_list-1.0.2.tgz" + } + }, + "keywords": [ + "data-structures", + "enumerable" + ], + "url": "http://registry.npmjs.org/keyed_list/" + }, + "keyframely": { + "name": "keyframely", + "description": "A rewrite of KuraFire's runloop plugin designed to work without jQuery", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "chrisdickinson", + "email": "chris@neversaw.us" + } + ], + "time": { + "modified": "2011-02-07T05:23:34.174Z", + "created": "2011-02-07T05:18:46.742Z", + "0.0.1": "2011-02-07T05:18:47.493Z", + "0.0.2": "2011-02-07T05:23:34.174Z" + }, + "author": { + "name": "Chris Dickinson" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/keyframely/0.0.1", + "0.0.2": "http://registry.npmjs.org/keyframely/0.0.2" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/keyframely/-/keyframely-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/keyframely/-/keyframely-0.0.2.tgz" + } + }, + "keywords": [ + "runloop" + ], + "url": "http://registry.npmjs.org/keyframely/" + }, + "keygrip": { + "name": "keygrip", + "description": "Key signing and verification for rotated credentials", + "dist-tags": { + "latest": "0.1.7" + }, + "maintainers": [ + { + "name": "jed", + "email": "tr@nslator.jp" + } + ], + "time": { + "modified": "2011-04-15T21:23:08.762Z", + "created": "2011-02-25T06:37:17.025Z", + "0.1.0": "2011-02-25T06:37:17.968Z", + "0.1.1": "2011-02-25T07:32:04.793Z", + "0.1.2": "2011-02-25T08:21:54.468Z", + "0.1.3": "2011-02-25T14:26:56.580Z", + "0.1.6": "2011-02-26T12:51:21.301Z", + "0.1.7": "2011-03-01T02:14:58.924Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/jed/keygrip.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/keygrip/0.1.0", + "0.1.1": "http://registry.npmjs.org/keygrip/0.1.1", + "0.1.2": "http://registry.npmjs.org/keygrip/0.1.2", + "0.1.3": "http://registry.npmjs.org/keygrip/0.1.3", + "0.1.6": "http://registry.npmjs.org/keygrip/0.1.6", + "0.1.7": "http://registry.npmjs.org/keygrip/0.1.7" + }, + "dist": { + "0.1.0": { + "shasum": "8c7a2ebeb0a5c21afb503e1353202bbc8e310d5a", + "tarball": "http://registry.npmjs.org/keygrip/-/keygrip-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "1ef1b716a00271255877c1aa9db9900d6ec46072", + "tarball": "http://registry.npmjs.org/keygrip/-/keygrip-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "ca95cfbb013cf6da70a3d61b6a6e30a2cc0d2df8", + "tarball": "http://registry.npmjs.org/keygrip/-/keygrip-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "7758cad837162a15267cc5e1a981cbe471091f85", + "tarball": "http://registry.npmjs.org/keygrip/-/keygrip-0.1.3.tgz" + }, + "0.1.6": { + "shasum": "cb43ff9354e16768f17e915bea4b743597d63b12", + "tarball": "http://registry.npmjs.org/keygrip/-/keygrip-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "9b86ff1323fac9c5da30d2a83eb266027640bf4d", + "tarball": "http://registry.npmjs.org/keygrip/-/keygrip-0.1.7.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "5389d3dee597b6c498d3bf64d51390f5a0db82fc", + "tarball": "http://registry.npmjs.org/keygrip/-/keygrip-0.1.7-0.4-sunos-5.11.tgz" + } + } + } + }, + "url": "http://registry.npmjs.org/keygrip/" + }, + "keyjson": { + "name": "keyjson", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "andrewschaaf", + "email": "andrew@andrewschaaf.com" + } + ], + "author": { + "name": "Andrew Schaaf", + "email": "andrew@andrewschaaf.com" + }, + "description": "binary JSON encoding with an awesome property: sorted(encoded bytestrings) == sorted(underlying values)", + "repository": { + "type": "git", + "url": "git://github.com/andrewschaaf/node-keyjson.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/keyjson/1.0.0", + "1.0.1": "http://registry.npmjs.org/keyjson/1.0.1" + }, + "dist": { + "1.0.0": { + "tarball": "http://registry.npmjs.org/keyjson/-/keyjson-1.0.0.tgz" + }, + "1.0.1": { + "tarball": "http://registry.npmjs.org/keyjson/-/keyjson-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/keyjson/" + }, + "keymaster": { + "name": "keymaster", + "description": "library for defining and dispatching keyboard shortcuts", + "dist-tags": { + "latest": "1.0.2" + }, + "maintainers": [ + { + "name": "ded", + "email": "polvero@gmail.com" + }, + { + "name": "thomasfuchs", + "email": "thomas@fesch.at" + } + ], + "time": { + "modified": "2011-09-13T16:57:41.913Z", + "created": "2011-08-31T21:49:45.020Z", + "1.0.0": "2011-08-31T21:49:45.665Z", + "1.0.1": "2011-08-31T21:55:27.844Z", + "1.0.2": "2011-09-08T05:49:02.496Z" + }, + "author": { + "name": "Thomas Fuchs" + }, + "repository": { + "type": "git", + "url": "git://github.com/madrobby/keymaster.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/keymaster/1.0.0", + "1.0.1": "http://registry.npmjs.org/keymaster/1.0.1", + "1.0.2": "http://registry.npmjs.org/keymaster/1.0.2" + }, + "dist": { + "1.0.0": { + "shasum": "3ef52ab4ca6df242729012b978b222a14251a4c4", + "tarball": "http://registry.npmjs.org/keymaster/-/keymaster-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "3ef0474ce342ca6e3a240a25e8f1b3e5e521ca47", + "tarball": "http://registry.npmjs.org/keymaster/-/keymaster-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "3aaf143ec9ea7e47900317ad6b09bc2e57d21f83", + "tarball": "http://registry.npmjs.org/keymaster/-/keymaster-1.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/keymaster/" + }, + "keys": { + "name": "keys", + "description": "Unified api for node key/value stores", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/keys/0.0.1", + "0.1.0": "http://registry.npmjs.org/keys/0.1.0", + "0.1.1": "http://registry.npmjs.org/keys/0.1.1", + "0.1.2": "http://registry.npmjs.org/keys/0.1.2" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/keys/-/keys-0.0.1.tgz" + }, + "0.1.0": { + "tarball": "http://packages:5984/keys/-/keys-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://packages:5984/keys/-/keys-0.1.1.tgz" + }, + "0.1.2": { + "tarball": "http://packages:5984/keys/-/keys-0.1.2.tgz" + } + }, + "keywords": [ + "store", + "database", + "db", + "redis", + "nstore", + "riak" + ], + "url": "http://registry.npmjs.org/keys/" + }, + "keysym": { + "name": "keysym", + "description": "Look up X11 keysyms, unicode positions, and names.", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "repository": { + "type": "git", + "url": "git://github.com/substack/node-keysym.git" + }, + "time": { + "modified": "2011-07-11T11:50:01.829Z", + "created": "2011-02-14T20:05:40.670Z", + "0.0.1": "2011-02-14T20:05:40.670Z", + "0.0.2": "2011-02-14T20:05:40.670Z", + "0.0.3": "2011-03-30T12:02:43.364Z", + "0.0.4": "2011-03-31T15:16:23.871Z", + "0.0.5": "2011-04-28T05:18:36.200Z", + "0.0.6": "2011-07-11T11:50:01.829Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/keysym/0.0.1", + "0.0.2": "http://registry.npmjs.org/keysym/0.0.2", + "0.0.3": "http://registry.npmjs.org/keysym/0.0.3", + "0.0.4": "http://registry.npmjs.org/keysym/0.0.4", + "0.0.5": "http://registry.npmjs.org/keysym/0.0.5", + "0.0.6": "http://registry.npmjs.org/keysym/0.0.6" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/keysym/-/keysym-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "cfa1624af8ae8169055938d5a782bd7a7724c4ba", + "tarball": "http://registry.npmjs.org/keysym/-/keysym-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "8de6b5d505e5daaae4f11b3953c249af1c24f89b", + "tarball": "http://registry.npmjs.org/keysym/-/keysym-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "e27ed2b4967426c600ab3b9df4b8e493b0952e77", + "tarball": "http://registry.npmjs.org/keysym/-/keysym-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "129e39bad0d058065d6e824473d1918597b322e0", + "tarball": "http://registry.npmjs.org/keysym/-/keysym-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "a17bde3fd27ad22e19ab1bc6653396a6a7da6b87", + "tarball": "http://registry.npmjs.org/keysym/-/keysym-0.0.6.tgz" + } + }, + "keywords": [ + "x11", + "keysym", + "key", + "unicode" + ], + "url": "http://registry.npmjs.org/keysym/" + }, + "keyx": { + "name": "keyx", + "description": "Algorithms and file formats for public key cryptography key exchange", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-03-01T16:17:45.047Z", + "created": "2011-03-01T16:17:43.624Z", + "0.0.1": "2011-03-01T16:17:45.047Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-keyx.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/keyx/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "d1f4f5dc8cd964f7e4177b61629b9d6b417646e6", + "tarball": "http://registry.npmjs.org/keyx/-/keyx-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/keyx/" + }, + "khronos": { + "name": "khronos", + "description": "Cache for timed/expiring objects. Built for data acquired from an API that gives a response valid for an amount of time.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "warorface", + "email": "warorface@gmail.com" + } + ], + "time": { + "modified": "2011-08-29T19:34:52.219Z", + "created": "2011-08-29T19:34:52.049Z", + "0.1.0": "2011-08-29T19:34:52.219Z" + }, + "author": { + "name": "Diego Torres", + "email": "contact@dtorres.me", + "url": "http://dtorres.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/warorface/node-khronos.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/khronos/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "091cd328bea0f10d10a63d81054e8636a8b1117a", + "tarball": "http://registry.npmjs.org/khronos/-/khronos-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/khronos/" + }, + "kibi": { + "name": "kibi", + "description": "a single-page javascript app framework in 1,024 bytes", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "kibi.js\n=======\n\nGoal\n----\n\nAn easy-to-use single-page app framework in 1,024 bytes of JavaScript. kibi.js currently weighs in about 200 bytes less, so there's still room for improvement.\n\nBackground\n----------\n\nkibi.js was inspired by running [140byt.es](http://140byt.es). Having learned so much about tuning tiny code, I figured I would take code golfing to its logical extreme, and create the tiniest web framework possible.\n\nI intentionally planned to release kibi.js at [JSConf.eu '11](http://jsconf.eu), but unfortunately, ran out of time and had to scale back my slides. But I did write some interesting code, and wanted to share it.\n\nThis repo is a snapshot of what I had built, published as an exploration of the cool things still possible with very little code. If you'd like to develop it yourself, please feel free to take over this fork!\n\nFeatures\n--------\n\nRight now, kibi.js includes:\n\n- a template engine,\n- a router,\n- a JSONP implementation\n- a page load indicator, and\n- pushState support.\n\nBuilding a kibi.js app\n----------------------\n\nkibi.js apps are declarative, and consist of several named/routed templates, each of which lives in its own script tag. When kibi.js loads, it parses every script tag with a `data-kibi` attribute into its own template. The `data-kibi` attribute should be set to a loose JSON object with the following keys:\n\n- `pathname` (optional): a regular expression. when this is matched, the template is rendered to the page body.\n- `id` (optional): a string. this allows templates to be called from within other templates by name, on the global `kibi.template` object.\n- `location` (optional): a JSONP url. when a template with a location is rendered, it is rendered using the data returned from the url. pretty neat, eh?\n\nA kibi.js app should have this structure:\n\n```html\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n```\n\nFor a better example, see the kibi sample app itself.\n\nInstallation and Setup\n----------------------\n\nTo install, enter:\n\n $ npm install kibi\n\nTo see the demo, enter:\n\n $ npm start kibi\n\nand then head to http://localhost:8080.\n\nTo build kibi and the demo, enter:\n\n $ node ./tools/build.js\n\nfrom the root of the project.\n\nLicense\n-------\n\nCopyright (c) 2011 Jed Schmidt, http://jed.is/\n \nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n \nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n \nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "maintainers": [ + { + "name": "jed", + "email": "tr@nslator.jp" + } + ], + "time": { + "modified": "2011-11-17T17:04:59.318Z", + "created": "2011-11-17T10:29:13.651Z", + "0.0.0": "2011-11-17T10:29:17.804Z", + "0.0.1": "2011-11-17T17:04:59.318Z" + }, + "author": { + "name": "Jed Schmidt", + "email": "tr@nslator.jp", + "url": "http://jed.is" + }, + "repository": { + "type": "git", + "url": "git://github.com/jed/kibi.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/kibi/0.0.0", + "0.0.1": "http://registry.npmjs.org/kibi/0.0.1" + }, + "dist": { + "0.0.0": { + "shasum": "1d72103b382e0683f561f35e66649635d8dcfcf6", + "tarball": "http://registry.npmjs.org/kibi/-/kibi-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "ddb5996cd20a2286736512f98df909f303536cd0", + "tarball": "http://registry.npmjs.org/kibi/-/kibi-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/kibi/" + }, + "killdrev": { + "name": "killdrev", + "description": "A utility for sending lots and lots of activity to drev instances", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "apeace", + "email": "apeace@gmail.com" + } + ], + "time": { + "modified": "2011-11-03T19:13:21.892Z", + "created": "2011-11-03T19:13:21.588Z", + "0.0.1": "2011-11-03T19:13:21.892Z" + }, + "author": { + "name": "Andrew Peace", + "email": "apeace@gmail.com", + "url": "http://github.com/apeace" + }, + "repository": { + "type": "git", + "url": "git://github.com/apeace/killdrev.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/killdrev/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "f645031be5b0c1a204ba5e65694aff727623042f", + "tarball": "http://registry.npmjs.org/killdrev/-/killdrev-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/killdrev/" + }, + "kindred": { + "name": "kindred", + "description": "A simple, DIY blogging engine", + "dist-tags": { + "latest": "1.1.0" + }, + "maintainers": [ + { + "name": "nathanielksmith", + "email": "nathanielksmith@gmail.com" + } + ], + "time": { + "modified": "2011-09-19T18:57:33.633Z", + "created": "2011-09-04T04:29:34.997Z", + "1.0.0": "2011-09-04T04:29:35.193Z", + "1.1.0": "2011-09-19T18:57:33.633Z" + }, + "author": { + "name": "Nathaniel K Smith", + "email": "nathanielksmith@gmail.com", + "url": "http://chiptheglasses.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/nathanielksmith/kindred.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/kindred/1.0.0", + "1.1.0": "http://registry.npmjs.org/kindred/1.1.0" + }, + "dist": { + "1.0.0": { + "shasum": "816831e8068173b57658eb538584ff79a1797dd4", + "tarball": "http://registry.npmjs.org/kindred/-/kindred-1.0.0.tgz" + }, + "1.1.0": { + "shasum": "8b60a8d1990ec198879437463663c35bffa388d2", + "tarball": "http://registry.npmjs.org/kindred/-/kindred-1.1.0.tgz" + } + }, + "keywords": [ + "blog", + "markdown", + "minimal" + ], + "url": "http://registry.npmjs.org/kindred/" + }, + "kiokujs": { + "name": "kiokujs", + "description": "Persistent layer for Joose, mostly targeting NoSQL backends", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "samuraijack", + "email": "nickolay8@gmail.com" + } + ], + "author": { + "name": "Nickolay Platonov", + "email": "nplatonov@cpan.org" + }, + "repository": { + "web": "http://github.com/SamuraiJack/KiokuJS/tree", + "url": "git://github.com/SamuraiJack/KiokuJS.git", + "type": "git" + }, + "time": { + "modified": "2011-03-18T12:28:30.060Z", + "created": "2011-03-18T12:28:30.060Z", + "0.2.0": "2011-03-18T12:28:30.060Z", + "0.3.0": "2011-03-18T12:28:30.060Z" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/kiokujs/0.2.0", + "0.3.0": "http://registry.npmjs.org/kiokujs/0.3.0" + }, + "dist": { + "0.2.0": { + "tarball": "http://packages:5984/kiokujs/-/kiokujs-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "75dddef6a766d6c08990482d490d7cc95507a6a4", + "tarball": "http://registry.npmjs.org/kiokujs/-/kiokujs-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/kiokujs/" + }, + "kiokujs-backend-batch": { + "name": "kiokujs-backend-batch", + "description": "Some clever yet compact description", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "samuraijack", + "email": "nickolay8@gmail.com" + } + ], + "time": { + "modified": "2011-03-18T12:38:10.793Z", + "created": "2011-03-18T12:38:09.902Z", + "0.3.0": "2011-03-18T12:38:10.793Z" + }, + "author": { + "name": "Nickolay Platonov", + "email": "nplatonov@cpan.org" + }, + "repository": { + "web": "http://github.com/SamuraiJack/KiokuJS-Backend-Batch/tree", + "url": "git://github.com/SamuraiJack/KiokuJS-Backend-Batch.git", + "type": "git" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/kiokujs-backend-batch/0.3.0" + }, + "dist": { + "0.3.0": { + "shasum": "ab115a2ce71da0d4210f1f68f8f1a0e3405c9156", + "tarball": "http://registry.npmjs.org/kiokujs-backend-batch/-/kiokujs-backend-batch-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/kiokujs-backend-batch/" + }, + "kiokujs-backend-couchdb": { + "name": "kiokujs-backend-couchdb", + "description": "Some clever yet compact description", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "samuraijack", + "email": "nickolay8@gmail.com" + } + ], + "author": { + "name": "Nickolay Platonov", + "email": "nplatonov@cpan.org" + }, + "repository": { + "web": "http://github.com/SamuraiJack/KiokuJS-Backend-CouchDB/tree", + "url": "git://github.com/SamuraiJack/KiokuJS-Backend-CouchDB.git", + "type": "git" + }, + "time": { + "modified": "2011-03-18T12:39:05.588Z", + "created": "2011-03-18T12:39:05.588Z", + "0.2.0": "2011-03-18T12:39:05.588Z", + "0.3.0": "2011-03-18T12:39:05.588Z" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/kiokujs-backend-couchdb/0.2.0", + "0.3.0": "http://registry.npmjs.org/kiokujs-backend-couchdb/0.3.0" + }, + "dist": { + "0.2.0": { + "tarball": "http://packages:5984/kiokujs-backend-couchdb/-/kiokujs-backend-couchdb-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "59fd09f13c3b84726d50782433d8538ce5e4c2c1", + "tarball": "http://registry.npmjs.org/kiokujs-backend-couchdb/-/kiokujs-backend-couchdb-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/kiokujs-backend-couchdb/" + }, + "kiss.js": { + "name": "kiss.js", + "description": "Web framework for node.js in CoffeeScript. Simple and sexy.", + "dist-tags": { + "latest": "0.8.0" + }, + "maintainers": [ + { + "name": "stanislavfeldman", + "email": "stanislavfeldman@gmail.com" + } + ], + "time": { + "modified": "2011-11-19T09:26:20.171Z", + "created": "2011-09-18T18:13:10.059Z", + "0.1.0": "2011-09-18T18:13:13.452Z", + "0.1.1": "2011-09-19T08:24:36.559Z", + "0.1.2": "2011-09-20T11:12:47.880Z", + "0.2.0": "2011-09-22T08:58:32.491Z", + "0.2.5": "2011-09-22T15:52:51.952Z", + "0.3.0": "2011-09-25T10:44:30.825Z", + "0.4.0": "2011-09-28T12:04:12.016Z", + "0.4.1": "2011-09-29T09:31:24.219Z", + "0.4.2": "2011-09-29T17:12:31.027Z", + "0.4.3": "2011-09-30T12:02:05.521Z", + "0.4.4": "2011-10-02T12:16:31.555Z", + "0.4.5": "2011-10-03T18:35:44.437Z", + "0.4.6": "2011-10-08T13:00:34.568Z", + "0.5.0": "2011-10-08T16:43:54.919Z", + "0.5.1": "2011-10-08T18:43:04.314Z", + "0.5.2": "2011-10-08T20:17:12.586Z", + "0.5.3": "2011-10-09T07:59:49.687Z", + "0.5.4": "2011-10-09T11:51:16.442Z", + "0.5.5": "2011-10-10T18:55:44.561Z", + "0.6.0": "2011-10-11T13:08:26.040Z", + "0.6.1": "2011-10-15T13:44:41.608Z", + "0.6.2": "2011-11-08T10:18:10.849Z", + "0.6.3": "2011-11-08T12:17:59.824Z", + "0.7.0": "2011-11-12T11:24:16.101Z", + "0.7.1": "2011-11-14T13:13:25.489Z", + "0.7.2": "2011-11-14T15:11:00.020Z", + "0.7.3": "2011-11-15T07:45:56.108Z", + "0.8.0": "2011-11-19T09:26:20.171Z" + }, + "author": { + "name": "Stanislav Feldman", + "email": "stanislavfeldman@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/stanislavfeldman/kiss.js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/kiss.js/0.1.0", + "0.1.1": "http://registry.npmjs.org/kiss.js/0.1.1", + "0.1.2": "http://registry.npmjs.org/kiss.js/0.1.2", + "0.2.0": "http://registry.npmjs.org/kiss.js/0.2.0", + "0.2.5": "http://registry.npmjs.org/kiss.js/0.2.5", + "0.3.0": "http://registry.npmjs.org/kiss.js/0.3.0", + "0.4.0": "http://registry.npmjs.org/kiss.js/0.4.0", + "0.4.1": "http://registry.npmjs.org/kiss.js/0.4.1", + "0.4.2": "http://registry.npmjs.org/kiss.js/0.4.2", + "0.4.3": "http://registry.npmjs.org/kiss.js/0.4.3", + "0.4.4": "http://registry.npmjs.org/kiss.js/0.4.4", + "0.4.5": "http://registry.npmjs.org/kiss.js/0.4.5", + "0.4.6": "http://registry.npmjs.org/kiss.js/0.4.6", + "0.5.0": "http://registry.npmjs.org/kiss.js/0.5.0", + "0.5.1": "http://registry.npmjs.org/kiss.js/0.5.1", + "0.5.2": "http://registry.npmjs.org/kiss.js/0.5.2", + "0.5.3": "http://registry.npmjs.org/kiss.js/0.5.3", + "0.5.4": "http://registry.npmjs.org/kiss.js/0.5.4", + "0.5.5": "http://registry.npmjs.org/kiss.js/0.5.5", + "0.6.0": "http://registry.npmjs.org/kiss.js/0.6.0", + "0.6.1": "http://registry.npmjs.org/kiss.js/0.6.1", + "0.6.2": "http://registry.npmjs.org/kiss.js/0.6.2", + "0.6.3": "http://registry.npmjs.org/kiss.js/0.6.3", + "0.7.0": "http://registry.npmjs.org/kiss.js/0.7.0", + "0.7.1": "http://registry.npmjs.org/kiss.js/0.7.1", + "0.7.2": "http://registry.npmjs.org/kiss.js/0.7.2", + "0.7.3": "http://registry.npmjs.org/kiss.js/0.7.3", + "0.8.0": "http://registry.npmjs.org/kiss.js/0.8.0" + }, + "dist": { + "0.1.0": { + "shasum": "558071f9b6914dfd7765bbabe38780cab00bfdac", + "tarball": "http://registry.npmjs.org/kiss.js/-/kiss.js-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "d0906ec7f303ed0a1552ba6c64fe10809fe11a8e", + "tarball": "http://registry.npmjs.org/kiss.js/-/kiss.js-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "ebb57648c673653c59b27e5171c681605b695e19", + "tarball": "http://registry.npmjs.org/kiss.js/-/kiss.js-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "292b7f58b4d32859beeb2821945587776db28c10", + "tarball": "http://registry.npmjs.org/kiss.js/-/kiss.js-0.2.0.tgz" + }, + "0.2.5": { + "shasum": "4f4e4bd7235227ed77dadc27893bf272ecfd4a4c", + "tarball": "http://registry.npmjs.org/kiss.js/-/kiss.js-0.2.5.tgz" + }, + "0.3.0": { + "shasum": "7f371ad5f267975f37a72033815e1023c5251333", + "tarball": "http://registry.npmjs.org/kiss.js/-/kiss.js-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "0f983e05c73097f7b66b2c136d3dcb894e4e197c", + "tarball": "http://registry.npmjs.org/kiss.js/-/kiss.js-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "2d5604fb05e757eaf980fe94299d41afe0348897", + "tarball": "http://registry.npmjs.org/kiss.js/-/kiss.js-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "ffc2617fb50a1a52b905c0d51c801778b401b1bf", + "tarball": "http://registry.npmjs.org/kiss.js/-/kiss.js-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "33d705046b97f9643f2af295be5a859b2e527c5f", + "tarball": "http://registry.npmjs.org/kiss.js/-/kiss.js-0.4.3.tgz" + }, + "0.4.4": { + "shasum": "77301630d3ccba23b84c8ce98c7dddd854b58fe1", + "tarball": "http://registry.npmjs.org/kiss.js/-/kiss.js-0.4.4.tgz" + }, + "0.4.5": { + "shasum": "06c98137d9b01773d3ab11813786fad9253e4c90", + "tarball": "http://registry.npmjs.org/kiss.js/-/kiss.js-0.4.5.tgz" + }, + "0.4.6": { + "shasum": "1c8f0b5c69bea388cb49e982a963bc5019dbd425", + "tarball": "http://registry.npmjs.org/kiss.js/-/kiss.js-0.4.6.tgz" + }, + "0.5.0": { + "shasum": "f6b1819a25882cf75aa4d47a37560a86cfbf15fd", + "tarball": "http://registry.npmjs.org/kiss.js/-/kiss.js-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "174e4c20d15364ac6dc4b6a0b37da0958f6f9777", + "tarball": "http://registry.npmjs.org/kiss.js/-/kiss.js-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "f6e4fb554785d256523d90c1a0c26f02d5e92194", + "tarball": "http://registry.npmjs.org/kiss.js/-/kiss.js-0.5.2.tgz" + }, + "0.5.3": { + "shasum": "a889340e5936bc53f6dfca1992e1a1230740ac25", + "tarball": "http://registry.npmjs.org/kiss.js/-/kiss.js-0.5.3.tgz" + }, + "0.5.4": { + "shasum": "aaa8ee25baa0399d03f52c59c8fa3ce2b5fcd16c", + "tarball": "http://registry.npmjs.org/kiss.js/-/kiss.js-0.5.4.tgz" + }, + "0.5.5": { + "shasum": "1c52179c86fb4c3081bdee83531bf20c783b804a", + "tarball": "http://registry.npmjs.org/kiss.js/-/kiss.js-0.5.5.tgz" + }, + "0.6.0": { + "shasum": "43450acdf2fc4651637d7a9b41c1e8ea8aa65f48", + "tarball": "http://registry.npmjs.org/kiss.js/-/kiss.js-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "829c043e3612e7138e5f72adce4af1ebf4cc8065", + "tarball": "http://registry.npmjs.org/kiss.js/-/kiss.js-0.6.1.tgz" + }, + "0.6.2": { + "shasum": "7798c5d0a8162afd62b74c73775444850025562b", + "tarball": "http://registry.npmjs.org/kiss.js/-/kiss.js-0.6.2.tgz" + }, + "0.6.3": { + "shasum": "df60eda6f691712628755807f57881d91769058f", + "tarball": "http://registry.npmjs.org/kiss.js/-/kiss.js-0.6.3.tgz" + }, + "0.7.0": { + "shasum": "25e315672def7205d574ad3c140873e186dec7a9", + "tarball": "http://registry.npmjs.org/kiss.js/-/kiss.js-0.7.0.tgz" + }, + "0.7.1": { + "shasum": "75631ae1ad7adcd1599a1c72241e93c0c488102c", + "tarball": "http://registry.npmjs.org/kiss.js/-/kiss.js-0.7.1.tgz" + }, + "0.7.2": { + "shasum": "515c3e1e0711f24652162decfab5225ecd8340e4", + "tarball": "http://registry.npmjs.org/kiss.js/-/kiss.js-0.7.2.tgz" + }, + "0.7.3": { + "shasum": "fd95c7787ec243fb9e6e176fe682e9eca68866ca", + "tarball": "http://registry.npmjs.org/kiss.js/-/kiss.js-0.7.3.tgz" + }, + "0.8.0": { + "shasum": "1219349cc80ca3ca334f4212530d1a7dd14a4e7e", + "tarball": "http://registry.npmjs.org/kiss.js/-/kiss.js-0.8.0.tgz" + } + }, + "keywords": [ + "web", + "framework", + "coffeescript" + ], + "url": "http://registry.npmjs.org/kiss.js/" + }, + "kissmetrics": { + "name": "kissmetrics", + "description": "Library for KISSmetrics REST API", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "glesperance", + "email": "gabriel@wavo.me" + } + ], + "time": { + "modified": "2011-10-14T19:05:37.210Z", + "created": "2011-10-07T02:33:11.324Z", + "0.0.1": "2011-10-07T02:33:11.903Z", + "0.0.2": "2011-10-07T20:35:37.306Z", + "0.0.3": "2011-10-14T15:54:32.044Z", + "0.0.4": "2011-10-14T19:05:37.210Z" + }, + "author": { + "name": "Gabriel Lesperance", + "email": "gabriel@wavo.me", + "url": "glesperance.com / wavo.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/glesperance/node-kissmetrics.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/kissmetrics/0.0.1", + "0.0.2": "http://registry.npmjs.org/kissmetrics/0.0.2", + "0.0.3": "http://registry.npmjs.org/kissmetrics/0.0.3", + "0.0.4": "http://registry.npmjs.org/kissmetrics/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "a30d5163e98bba3f4081401fb7839ca09680d1d9", + "tarball": "http://registry.npmjs.org/kissmetrics/-/kissmetrics-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "afd101fd625668997b306cb15f389a6f975f8acd", + "tarball": "http://registry.npmjs.org/kissmetrics/-/kissmetrics-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "469ac7d53643082263f60ca3921f5026a5d965e9", + "tarball": "http://registry.npmjs.org/kissmetrics/-/kissmetrics-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "536fa333f03c7f31de2b34bf327af211dacff6cd", + "tarball": "http://registry.npmjs.org/kissmetrics/-/kissmetrics-0.0.4.tgz" + } + }, + "keywords": [ + "kissmetrics", + "kiss", + "metrics", + "analytics", + "REST", + "API" + ], + "url": "http://registry.npmjs.org/kissmetrics/" + }, + "kissy": { + "name": "kissy", + "description": "KISSY Library on NodeJS", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "jayli", + "email": "lijing00333@163.com" + } + ], + "author": { + "name": "Jayli", + "email": "lijing00333@163.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/jayli/nodejs-kissy.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/kissy/0.1.0", + "0.1.1": "http://registry.npmjs.org/kissy/0.1.1" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/kissy/-/kissy-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://packages:5984/kissy/-/kissy-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/kissy/" + }, + "kitkat": { + "name": "kitkat", + "description": "Kontinuos Integrated Testing Koffee Application Template", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "mehtryx", + "email": "kbenedict@postmedia.com" + } + ], + "time": { + "modified": "2011-09-22T13:57:45.688Z", + "created": "2011-08-03T19:48:34.479Z", + "0.0.7": "2011-08-03T19:48:34.666Z", + "0.1.0": "2011-08-08T19:08:17.225Z", + "0.1.1": "2011-08-09T14:43:13.987Z", + "0.1.2": "2011-08-12T20:11:18.728Z", + "0.1.3": "2011-09-06T19:59:01.819Z", + "0.2.0": "2011-09-09T12:32:42.987Z", + "0.2.1": "2011-09-09T15:42:08.511Z", + "0.2.2": "2011-09-12T17:18:35.655Z", + "0.2.3": "2011-09-13T14:04:10.576Z", + "0.3.0": "2011-09-22T13:54:02.566Z" + }, + "author": { + "name": "Postmedia Network Inc." + }, + "repository": { + "type": "git", + "url": "git://github.com/Postmedia/kitkat.git" + }, + "versions": { + "0.0.7": "http://registry.npmjs.org/kitkat/0.0.7", + "0.1.0": "http://registry.npmjs.org/kitkat/0.1.0", + "0.1.1": "http://registry.npmjs.org/kitkat/0.1.1", + "0.1.2": "http://registry.npmjs.org/kitkat/0.1.2", + "0.1.3": "http://registry.npmjs.org/kitkat/0.1.3", + "0.2.0": "http://registry.npmjs.org/kitkat/0.2.0", + "0.2.1": "http://registry.npmjs.org/kitkat/0.2.1", + "0.2.2": "http://registry.npmjs.org/kitkat/0.2.2", + "0.2.3": "http://registry.npmjs.org/kitkat/0.2.3", + "0.3.0": "http://registry.npmjs.org/kitkat/0.3.0" + }, + "dist": { + "0.0.7": { + "shasum": "d02fea06b4de7dc4538d3a8794ca890659c9061f", + "tarball": "http://registry.npmjs.org/kitkat/-/kitkat-0.0.7.tgz" + }, + "0.1.0": { + "shasum": "316a68be5f5f5d8ffce4d9ecc1f1134c674ddc20", + "tarball": "http://registry.npmjs.org/kitkat/-/kitkat-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "840c599f0f2cb3978b8c5e1352f3cf18d01239ab", + "tarball": "http://registry.npmjs.org/kitkat/-/kitkat-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "a45cef40f62baa87b263f15d6a820ffc63499bc7", + "tarball": "http://registry.npmjs.org/kitkat/-/kitkat-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "68076d38ea8cba3b42d3f850a19250750300148a", + "tarball": "http://registry.npmjs.org/kitkat/-/kitkat-0.1.3.tgz" + }, + "0.2.0": { + "shasum": "6d0301c347f339313bfab1d8a66ba67dafc8ee49", + "tarball": "http://registry.npmjs.org/kitkat/-/kitkat-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "741d5c214ff43005e3599bacfeec69509fabf146", + "tarball": "http://registry.npmjs.org/kitkat/-/kitkat-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "860e56be4fef7de8763db0252db9a3d3ea090250", + "tarball": "http://registry.npmjs.org/kitkat/-/kitkat-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "702677037b3cb12245d4fa2d2ac4f89612737e0c", + "tarball": "http://registry.npmjs.org/kitkat/-/kitkat-0.2.3.tgz" + }, + "0.3.0": { + "shasum": "e02459b3c6571fd0400b8977423171e80ff3a7cd", + "tarball": "http://registry.npmjs.org/kitkat/-/kitkat-0.3.0.tgz" + } + }, + "keywords": [ + "integration", + "testing", + "framework", + "expresso", + "jasmine", + "coffeescript", + "rhino" + ], + "url": "http://registry.npmjs.org/kitkat/" + }, + "kitkat-express": { + "name": "kitkat-express", + "description": "Kontinuos Integrated Testing Koffee Application Template - Simplified branch for express", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "mehtryx", + "email": "kbenedict@postmedia.com" + } + ], + "time": { + "modified": "2011-08-15T19:09:35.643Z", + "created": "2011-08-15T19:09:35.452Z", + "0.1.3": "2011-08-15T19:09:35.643Z" + }, + "author": { + "name": "Postmedia Network Inc." + }, + "repository": { + "type": "git", + "url": "git://github.com/mehtryx/kitkat.git" + }, + "versions": { + "0.1.3": "http://registry.npmjs.org/kitkat-express/0.1.3" + }, + "dist": { + "0.1.3": { + "shasum": "527227876f8ef4ea99e44a910114ebd6175ec7e7", + "tarball": "http://registry.npmjs.org/kitkat-express/-/kitkat-express-0.1.3.tgz" + } + }, + "keywords": [ + "Simplified", + "integration", + "testing", + "framework", + "coffeescript" + ], + "url": "http://registry.npmjs.org/kitkat-express/" + }, + "kitty": { + "name": "kitty", + "description": "Command line kitties", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "bryanwoods", + "email": "bryanwoods4e@gmail.com" + } + ], + "time": { + "modified": "2011-10-16T20:57:06.534Z", + "created": "2011-10-16T20:57:06.341Z", + "0.0.1": "2011-10-16T20:57:06.534Z" + }, + "author": { + "name": "Bryan Woods", + "email": "bryanwoods4e@gmail.com", + "url": "http://bryanwoods4e.com" + }, + "repository": { + "url": "git://github.com/bryanwoods/kitty-cljs.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/kitty/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "2a5a9c91f02211b301c852148ce0b578796a225f", + "tarball": "http://registry.npmjs.org/kitty/-/kitty-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/kitty/" + }, + "kiwf": { + "name": "kiwf", + "description": "in-process node.js process kill-switch, forces node processes to crash based on certain restrictions like memory usage or uptime.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "marak", + "email": "marak.squires@gmail.com" + } + ], + "time": { + "modified": "2011-10-23T16:59:32.616Z", + "created": "2011-10-23T06:07:24.048Z", + "0.1.0": "2011-10-23T06:07:26.769Z", + "0.1.1": "2011-10-23T16:59:32.616Z" + }, + "author": { + "name": "Marak Squires", + "email": "marak.squires@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/marak/node-kiwf.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/kiwf/0.1.0", + "0.1.1": "http://registry.npmjs.org/kiwf/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "1d3168ca0db5a3f16d03085ad6d1e65a0e5209a4", + "tarball": "http://registry.npmjs.org/kiwf/-/kiwf-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "d87e5c09fd1730c084c19e156f6668be051d2746", + "tarball": "http://registry.npmjs.org/kiwf/-/kiwf-0.1.1.tgz" + } + }, + "keywords": [ + "process", + "ram", + "uptime", + "monitor" + ], + "url": "http://registry.npmjs.org/kiwf/" + }, + "kizzy": { + "name": "kizzy", + "description": "x-browser LocalStorage API with a memcached interface", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "ded", + "email": "polvero@gmail.com" + } + ], + "time": { + "modified": "2011-05-17T18:42:11.644Z", + "created": "2011-04-26T17:15:12.582Z", + "0.0.1": "2011-04-26T17:15:12.897Z", + "0.0.2": "2011-05-17T18:42:11.644Z" + }, + "author": { + "name": "Dustin Diaz", + "email": "@ded" + }, + "repository": { + "type": "git", + "url": "git://github.com/ded/kizzy.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/kizzy/0.0.1", + "0.0.2": "http://registry.npmjs.org/kizzy/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "bde7add48b017f9d78a6244f7cb2d1173c52bf80", + "tarball": "http://registry.npmjs.org/kizzy/-/kizzy-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "ad4427b14fa6814f2834d9bc8568067ba504dc0d", + "tarball": "http://registry.npmjs.org/kizzy/-/kizzy-0.0.2.tgz" + } + }, + "keywords": [ + "ender", + "cache", + "local storage", + "caching", + "expiration", + "dom" + ], + "url": "http://registry.npmjs.org/kizzy/" + }, + "kjs": { + "name": "kjs", + "description": "tool for js module create and load", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "kindy", + "email": "kindy61@gmail.com" + } + ], + "time": { + "modified": "2011-06-14T12:01:29.860Z", + "created": "2011-06-14T12:01:26.953Z", + "0.2.0": "2011-06-14T12:01:29.860Z" + }, + "author": { + "name": "kindy lin", + "email": "kindy61@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/kindy/loader.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/kjs/0.2.0" + }, + "dist": { + "0.2.0": { + "shasum": "a2241a362eac60b48412d250593dc01e1abf2e54", + "tarball": "http://registry.npmjs.org/kjs/-/kjs-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/kjs/" + }, + "kju": { + "name": "kju", + "description": "Fault tolerant queue that queues data for bulk updates", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "V1", + "email": "info@3rd-Eden.com" + } + ], + "time": { + "modified": "2011-10-21T14:51:34.537Z", + "created": "2011-09-16T21:00:56.667Z", + "0.0.1": "2011-09-16T21:00:57.306Z", + "0.0.2": "2011-09-16T22:52:00.960Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/observing/kju.git" + }, + "author": { + "name": "Arnout Kazemier", + "email": "info@3rd-Eden.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/kju/0.0.1", + "0.0.2": "http://registry.npmjs.org/kju/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "f65903adad7f5344ef464920aa34f2f3b34e44e1", + "tarball": "http://registry.npmjs.org/kju/-/kju-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "7adf9c5804e2d7882798781f147eb6f1f61a1bd1", + "tarball": "http://registry.npmjs.org/kju/-/kju-0.0.2.tgz" + } + }, + "keywords": [ + "kju", + "queue", + "bulk", + "batch", + "updates" + ], + "url": "http://registry.npmjs.org/kju/" + }, + "klass": { + "name": "klass", + "description": "Class provider with classical inheritance interface", + "dist-tags": { + "latest": "1.2.1" + }, + "maintainers": [ + { + "name": "polvero", + "email": "polvero@gmail.com" + }, + { + "name": "ded", + "email": "polvero@gmail.com" + }, + { + "name": "fat", + "email": "jacobthornton@gmail.com" + } + ], + "time": { + "modified": "2011-09-28T02:10:02.665Z", + "created": "2011-03-10T00:19:24.963Z", + "0.0.1": "2011-03-10T00:19:25.277Z", + "0.0.2": "2011-03-10T09:00:48.851Z", + "0.0.3": "2011-03-10T22:16:38.653Z", + "0.0.4": "2011-03-10T22:20:03.564Z", + "0.0.6": "2011-03-12T21:04:23.125Z", + "0.0.5": "2011-03-12T21:05:22.932Z", + "0.0.7": "2011-03-14T21:49:13.546Z", + "0.0.8": "2011-03-15T03:54:37.473Z", + "0.0.9": "2011-03-17T06:11:02.078Z", + "1.0.0": "2011-03-21T22:21:35.944Z", + "1.0.1": "2011-04-09T23:39:29.265Z", + "1.0.2": "2011-04-10T08:49:22.032Z", + "1.0.3": "2011-04-21T19:22:47.978Z", + "1.0.4": "2011-05-17T18:47:25.667Z", + "1.0.5": "2011-06-10T19:59:38.213Z", + "1.0.6": "2011-06-26T23:12:34.004Z", + "1.1.0": "2011-09-12T20:52:45.755Z", + "1.2.0": "2011-09-13T02:58:47.645Z", + "1.2.1": "2011-09-28T02:10:02.665Z" + }, + "author": { + "name": "Dustin Diaz", + "email": "polvero@gmail.com", + "url": "http://dustindiaz.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/ded/klass.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/klass/0.0.1", + "0.0.2": "http://registry.npmjs.org/klass/0.0.2", + "0.0.3": "http://registry.npmjs.org/klass/0.0.3", + "0.0.4": "http://registry.npmjs.org/klass/0.0.4", + "0.0.6": "http://registry.npmjs.org/klass/0.0.6", + "0.0.5": "http://registry.npmjs.org/klass/0.0.5", + "0.0.7": "http://registry.npmjs.org/klass/0.0.7", + "0.0.8": "http://registry.npmjs.org/klass/0.0.8", + "0.0.9": "http://registry.npmjs.org/klass/0.0.9", + "1.0.0": "http://registry.npmjs.org/klass/1.0.0", + "1.0.1": "http://registry.npmjs.org/klass/1.0.1", + "1.0.2": "http://registry.npmjs.org/klass/1.0.2", + "1.0.3": "http://registry.npmjs.org/klass/1.0.3", + "1.0.4": "http://registry.npmjs.org/klass/1.0.4", + "1.0.5": "http://registry.npmjs.org/klass/1.0.5", + "1.0.6": "http://registry.npmjs.org/klass/1.0.6", + "1.1.0": "http://registry.npmjs.org/klass/1.1.0", + "1.2.0": "http://registry.npmjs.org/klass/1.2.0", + "1.2.1": "http://registry.npmjs.org/klass/1.2.1" + }, + "dist": { + "0.0.1": { + "shasum": "ede6f21457bb64b4f477cff64f772732e5834696", + "tarball": "http://registry.npmjs.org/klass/-/klass-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "a3fb64554e68201d2b49e12b5e9dfb828d4f73e3", + "tarball": "http://registry.npmjs.org/klass/-/klass-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "9b55da12a7b21b6a5cc86f47c3971d389761a521", + "tarball": "http://registry.npmjs.org/klass/-/klass-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "3069932b5d2ee8c9201802b265a5574ea9ca80f7", + "tarball": "http://registry.npmjs.org/klass/-/klass-0.0.4.tgz" + }, + "0.0.6": { + "shasum": "4dc12e01c7b979169873b66596516e9c59062ece", + "tarball": "http://registry.npmjs.org/klass/-/klass-0.0.6.tgz" + }, + "0.0.5": { + "shasum": "7074f90da4189165aee3ab2590ceb06a82fd3055", + "tarball": "http://registry.npmjs.org/klass/-/klass-0.0.5.tgz" + }, + "0.0.7": { + "shasum": "78d5a787940fc2aa60eb44072b3be9af35b0a3b9", + "tarball": "http://registry.npmjs.org/klass/-/klass-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "a7bcf7b30e2d98235616e9999c625c6c9f88c62c", + "tarball": "http://registry.npmjs.org/klass/-/klass-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "da3c4c850fa9c30c45a4c6e8d8f06d26a88d3b64", + "tarball": "http://registry.npmjs.org/klass/-/klass-0.0.9.tgz" + }, + "1.0.0": { + "shasum": "04b95653c997cb34af30e0c89bbc66068e8ca055", + "tarball": "http://registry.npmjs.org/klass/-/klass-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "756b6bf5fe8de2e61a359ec55ad076524d3dad24", + "tarball": "http://registry.npmjs.org/klass/-/klass-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "a1c47e2b31e83dfcecac487777a2e048312661e7", + "tarball": "http://registry.npmjs.org/klass/-/klass-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "5e131ef61d3d9e182b3076133671f50474e35a6f", + "tarball": "http://registry.npmjs.org/klass/-/klass-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "8fc8ae268a0e705f3a6b6e1abfd9ac0b49080ab2", + "tarball": "http://registry.npmjs.org/klass/-/klass-1.0.4.tgz" + }, + "1.0.5": { + "shasum": "7e7646e395705af4cec462c9314bd824ea86be7c", + "tarball": "http://registry.npmjs.org/klass/-/klass-1.0.5.tgz" + }, + "1.0.6": { + "shasum": "dfdf7e5e19d5144d956f077751700e579375d00f", + "tarball": "http://registry.npmjs.org/klass/-/klass-1.0.6.tgz" + }, + "1.1.0": { + "shasum": "43a91e06c9d091c90a86a11829c112c69d0592f2", + "tarball": "http://registry.npmjs.org/klass/-/klass-1.1.0.tgz" + }, + "1.2.0": { + "shasum": "148f8b03b42fcf4c10d5aa375022f513eba41f3a", + "tarball": "http://registry.npmjs.org/klass/-/klass-1.2.0.tgz" + }, + "1.2.1": { + "shasum": "1f27050d4d25a061ab875cf0ef65c9a8895906aa", + "tarball": "http://registry.npmjs.org/klass/-/klass-1.2.1.tgz" + } + }, + "keywords": [ + "ender", + "class", + "prototype", + "inheritance", + "oop" + ], + "url": "http://registry.npmjs.org/klass/" + }, + "klout": { + "name": "klout", + "description": "NodeJS Klout API Wrapper", + "dist-tags": { + "latest": "0.2.3" + }, + "readme": "\n# klout\n\n## NodeJS Klout API Wrapper \n\n### Download\n\n```bash\n$ npm install klout\n```\n\n### Examples\n\n ```javascript\nvar klout = require(\"klout\");\nklout.init(\"MY_API_KEY\", \"FORMAT\", \"VERSION\");;\n\nklout.get(\"kisshotch\", function(error, klout) {\n if (error) {\n console.error(error); \n } else {\n console.log(\"Klout Score for @kisshotch:\", klout);\n };\n});\n ```\n", + "maintainers": [ + { + "name": "edwardhotchkiss", + "email": "e@ingk.com" + } + ], + "time": { + "modified": "2011-12-09T01:20:24.680Z", + "created": "2011-11-26T16:58:18.614Z", + "0.0.0": "2011-11-26T16:58:20.179Z", + "0.0.1": "2011-11-27T01:23:59.702Z", + "0.1.0": "2011-11-27T01:29:12.281Z", + "0.1.1": "2011-11-28T14:30:34.942Z", + "0.2.0": "2011-11-28T14:58:51.510Z", + "0.2.1": "2011-11-28T15:06:07.493Z", + "0.2.2": "2011-12-05T00:56:22.845Z", + "0.2.3": "2011-12-09T01:20:24.680Z" + }, + "author": { + "name": "Edward Hotchkiss", + "email": "e@ingk.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/edwardhotchkiss/klout.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/klout/0.0.0", + "0.0.1": "http://registry.npmjs.org/klout/0.0.1", + "0.1.0": "http://registry.npmjs.org/klout/0.1.0", + "0.1.1": "http://registry.npmjs.org/klout/0.1.1", + "0.2.0": "http://registry.npmjs.org/klout/0.2.0", + "0.2.1": "http://registry.npmjs.org/klout/0.2.1", + "0.2.2": "http://registry.npmjs.org/klout/0.2.2", + "0.2.3": "http://registry.npmjs.org/klout/0.2.3" + }, + "dist": { + "0.0.0": { + "shasum": "2ca40a00ddb72403551de11c7c0fa94a5d7c2b3b", + "tarball": "http://registry.npmjs.org/klout/-/klout-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "918a94333589f91d37b1503781f329629f6dbefe", + "tarball": "http://registry.npmjs.org/klout/-/klout-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "5cf0b756b2ce1bbe4b33391716580e53e0c06326", + "tarball": "http://registry.npmjs.org/klout/-/klout-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "b554a553b54ce02558074a05d3fc90d61376359b", + "tarball": "http://registry.npmjs.org/klout/-/klout-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "a38e61ee1590db5e60ca324ef4c8fc6b42ed796e", + "tarball": "http://registry.npmjs.org/klout/-/klout-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "704462a6f7a7c144b2d08758cd98e21ef02e3b70", + "tarball": "http://registry.npmjs.org/klout/-/klout-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "d653e9609652fdb703cb4c3ab09e72394b8be4be", + "tarball": "http://registry.npmjs.org/klout/-/klout-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "2b1ac0800333be8f303cbabaaa5e521c72f4df28", + "tarball": "http://registry.npmjs.org/klout/-/klout-0.2.3.tgz" + } + }, + "keywords": [ + "klout", + "twitter", + "rank", + "api", + "influence" + ], + "url": "http://registry.npmjs.org/klout/" + }, + "klout-js": { + "name": "klout-js", + "description": "A simple wrapper around the Klout API", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "smurthasmith", + "email": "simon@murtha-smith.com" + }, + { + "name": "smurthas", + "email": "simon@murtha-smith.com" + } + ], + "time": { + "modified": "2011-05-31T15:32:40.736Z", + "created": "2011-04-29T07:09:50.887Z", + "0.0.0": "2011-04-29T07:09:51.578Z", + "0.0.1": "2011-04-29T18:12:12.892Z", + "0.0.2": "2011-05-31T15:32:40.736Z" + }, + "author": { + "name": "Simon Murtha-Smith", + "email": "simon@murtha-smith.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/smurthas/klout-js.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/klout-js/0.0.0", + "0.0.1": "http://registry.npmjs.org/klout-js/0.0.1", + "0.0.2": "http://registry.npmjs.org/klout-js/0.0.2" + }, + "dist": { + "0.0.0": { + "shasum": "46a84c22702b7dc0e524b2be9f32f87aaad1dfbb", + "tarball": "http://registry.npmjs.org/klout-js/-/klout-js-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "3ec66086290642a46774cc1a2b6c2764c41376f8", + "tarball": "http://registry.npmjs.org/klout-js/-/klout-js-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "80945ae932cab77cd045914424fe8ad2f5c3fbb1", + "tarball": "http://registry.npmjs.org/klout-js/-/klout-js-0.0.2.tgz" + } + }, + "keywords": [ + "klout" + ], + "url": "http://registry.npmjs.org/klout-js/" + }, + "knid": { + "name": "knid", + "description": "Quickly post things to couchdb", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "bat", + "email": "ben@benatkin.com" + } + ], + "time": { + "modified": "2011-02-25T02:26:41.291Z", + "created": "2011-02-23T02:17:41.362Z", + "0.0.1": "2011-02-23T02:17:41.723Z", + "0.0.2": "2011-02-23T09:43:09.713Z", + "0.0.4": "2011-02-25T02:26:41.291Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/knid/0.0.1", + "0.0.2": "http://registry.npmjs.org/knid/0.0.2", + "0.0.4": "http://registry.npmjs.org/knid/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "fefdd811c4fd2fec056725bb000706aee016cb6f", + "tarball": "http://registry.npmjs.org/knid/-/knid-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "6e0913618438b50d1abfedb8dd1633233df5f009", + "tarball": "http://registry.npmjs.org/knid/-/knid-0.0.2.tgz" + }, + "0.0.4": { + "shasum": "5380ea72670ea7614b69fdd03f1ed378dc3b6754", + "tarball": "http://registry.npmjs.org/knid/-/knid-0.0.4.tgz" + } + }, + "keywords": [ + "couchdb", + "command-line", + "posting" + ], + "url": "http://registry.npmjs.org/knid/" + }, + "knife": { + "name": "knife", + "description": "Parse shitty JSON!", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "ecto", + "email": "diffference@gmail.com" + } + ], + "time": { + "modified": "2011-10-28T00:17:26.837Z", + "created": "2011-10-27T23:12:34.580Z", + "0.0.0": "2011-10-27T23:12:34.927Z", + "0.0.1": "2011-10-28T00:12:11.621Z", + "0.0.2": "2011-10-28T00:17:26.837Z" + }, + "author": { + "name": "Cam Pedersen", + "email": "diffference@gmail.com", + "url": "http://campedersen.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/ecto/knife.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/knife/0.0.0", + "0.0.1": "http://registry.npmjs.org/knife/0.0.1", + "0.0.2": "http://registry.npmjs.org/knife/0.0.2" + }, + "dist": { + "0.0.0": { + "shasum": "cffe04d97a98803e26e840cdbc786e9b4c7ae5db", + "tarball": "http://registry.npmjs.org/knife/-/knife-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "defb891972f9338c716a60635cf9131442892d74", + "tarball": "http://registry.npmjs.org/knife/-/knife-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "677b1089eb77805882463acdbf2604df93cbdb6a", + "tarball": "http://registry.npmjs.org/knife/-/knife-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/knife/" + }, + "knotifo": { + "name": "knotifo", + "description": "Real-time notifications pushed to your mobile phone (and more).", + "dist-tags": { + "latest": "1.2.1" + }, + "maintainers": [ + { + "name": "kilianc", + "email": "kilian.ciuffolo@gmail.com" + } + ], + "time": { + "modified": "2011-10-17T14:57:33.239Z", + "created": "2011-10-17T14:52:57.606Z", + "1.2.0": "2011-10-17T14:53:01.064Z", + "1.2.1": "2011-10-17T14:57:33.239Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/kilianc/node-knotifo.git" + }, + "versions": { + "1.2.0": "http://registry.npmjs.org/knotifo/1.2.0", + "1.2.1": "http://registry.npmjs.org/knotifo/1.2.1" + }, + "dist": { + "1.2.0": { + "shasum": "cbcd05316448fcb2d1b8afd2bd5f6e2e46b5c5ae", + "tarball": "http://registry.npmjs.org/knotifo/-/knotifo-1.2.0.tgz" + }, + "1.2.1": { + "shasum": "f509fd7adb91ab4c7b69f4c3d68fcfc78747be70", + "tarball": "http://registry.npmjs.org/knotifo/-/knotifo-1.2.1.tgz" + } + }, + "url": "http://registry.npmjs.org/knotifo/" + }, + "knox": { + "name": "knox", + "description": "Amazon S3 client", + "dist-tags": { + "latest": "0.0.9" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "author": { + "name": "TJ Holowaychuk", + "email": "tj@learnboost.com" + }, + "time": { + "modified": "2011-06-20T16:03:52.459Z", + "created": "2011-01-11T01:04:52.529Z", + "0.0.1": "2011-01-11T01:04:52.529Z", + "0.0.2": "2011-01-11T01:04:52.529Z", + "0.0.3": "2011-04-12T22:53:05.920Z", + "0.0.4": "2011-05-20T23:07:56.945Z", + "0.0.5": "2011-05-20T23:10:59.441Z", + "0.0.6": "2011-06-07T16:34:55.620Z", + "0.0.7": "2011-06-14T23:10:41.094Z", + "0.0.8": "2011-06-17T14:54:13.357Z", + "0.0.9": "2011-06-20T16:03:52.459Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/LearnBoost/knox.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/knox/0.0.1", + "0.0.2": "http://registry.npmjs.org/knox/0.0.2", + "0.0.3": "http://registry.npmjs.org/knox/0.0.3", + "0.0.4": "http://registry.npmjs.org/knox/0.0.4", + "0.0.5": "http://registry.npmjs.org/knox/0.0.5", + "0.0.6": "http://registry.npmjs.org/knox/0.0.6", + "0.0.7": "http://registry.npmjs.org/knox/0.0.7", + "0.0.8": "http://registry.npmjs.org/knox/0.0.8", + "0.0.9": "http://registry.npmjs.org/knox/0.0.9" + }, + "dist": { + "0.0.1": { + "shasum": "705dc73a16f097c69af566b80c1352b71250a468", + "tarball": "http://registry.npmjs.org/knox/-/knox-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "209a2db2fb12b3ed98cd5dcc2575733ea2a193a7", + "tarball": "http://registry.npmjs.org/knox/-/knox-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "823784a93bbae5313636aa2d349a3a37a9c7c6cd", + "tarball": "http://registry.npmjs.org/knox/-/knox-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "e7b1f679f958e98609b65d35738e9b3a7c65dcb0", + "tarball": "http://registry.npmjs.org/knox/-/knox-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "7a8a0bbe5286e38b240ce6b5696979ea681b9898", + "tarball": "http://registry.npmjs.org/knox/-/knox-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "fd7b3ea407eb04f98340669931bcf9c29bee3b32", + "tarball": "http://registry.npmjs.org/knox/-/knox-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "c4f8724a296ff48dd6f104a9f6f622ccc0ab02d8", + "tarball": "http://registry.npmjs.org/knox/-/knox-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "6d52df4c196297666c07cebd0d8a740a9ce19331", + "tarball": "http://registry.npmjs.org/knox/-/knox-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "d9b4de9bae1f26af0254d502b9da90c32c8b67ad", + "tarball": "http://registry.npmjs.org/knox/-/knox-0.0.9.tgz" + } + }, + "keywords": [ + "aws", + "amazon", + "s3" + ], + "url": "http://registry.npmjs.org/knox/" + }, + "knox-stream": { + "name": "knox-stream", + "description": "Amazon S3 client variant optimized for known mime type and existing buffer.", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "muji", + "email": "freeformsystems@gmail.com" + } + ], + "time": { + "modified": "2011-04-24T13:40:48.697Z", + "created": "2011-04-17T11:13:28.469Z", + "0.0.2": "2011-04-17T11:13:29.249Z", + "0.0.3": "2011-04-18T15:21:59.347Z", + "0.0.4": "2011-04-18T15:23:53.111Z" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/knox-stream/0.0.2", + "0.0.3": "http://registry.npmjs.org/knox-stream/0.0.3" + }, + "dist": { + "0.0.2": { + "shasum": "8735f09a12dea7747480c54544f1550c5c37ca3f", + "tarball": "http://registry.npmjs.org/knox-stream/-/knox-stream-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "f7eb1b6474575a69372f185c202056a6ac037fdf", + "tarball": "http://registry.npmjs.org/knox-stream/-/knox-stream-0.0.3.tgz" + } + }, + "keywords": [ + "aws", + "amazon", + "s3" + ], + "url": "http://registry.npmjs.org/knox-stream/" + }, + "kns": { + "name": "kns", + "description": "A module to raise events to KNS.", + "dist-tags": { + "latest": "1.0.3" + }, + "maintainers": [ + { + "name": "JessieAMorris", + "email": "jam@kynetx.com" + } + ], + "author": { + "name": "Jessie A. Morris", + "email": "jam@kynetx.com", + "url": "http://www.jessieamorris.com/" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/kns/1.0.0", + "1.0.1": "http://registry.npmjs.org/kns/1.0.1", + "1.0.2": "http://registry.npmjs.org/kns/1.0.2", + "1.0.3": "http://registry.npmjs.org/kns/1.0.3" + }, + "dist": { + "1.0.0": { + "shasum": "289e6c1f515bd6996dfd334c5e5f30ea2a842337", + "tarball": "http://registry.npmjs.org/kns/-/kns-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "542db5a153897bd98da4c9f16b6a74b94496d2db", + "tarball": "http://registry.npmjs.org/kns/-/kns-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "5649cbed34ad946946a15010f59f67ae28d194ba", + "tarball": "http://registry.npmjs.org/kns/-/kns-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "9ceb08b5e0eed5516e7342b5e28b772973cef74f", + "tarball": "http://registry.npmjs.org/kns/-/kns-1.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/kns/" + }, + "ko": { + "name": "ko", + "description": "Knockout Competition Stats Collector", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "wadey", + "email": "wade@wades.im" + } + ], + "time": { + "modified": "2011-08-28T04:12:19.874Z", + "created": "2011-08-24T02:47:36.825Z", + "0.1.0": "2011-08-24T02:47:38.652Z", + "0.1.1": "2011-08-24T02:59:13.469Z", + "0.1.2": "2011-08-24T03:31:21.793Z", + "0.1.3": "2011-08-28T04:12:19.874Z" + }, + "author": { + "name": "Wade Simmons", + "email": "wade@wades.im", + "url": "http://wades.im/mons" + }, + "repository": { + "type": "git", + "url": "git://github.com/wadey/ko.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/ko/0.1.0", + "0.1.1": "http://registry.npmjs.org/ko/0.1.1", + "0.1.2": "http://registry.npmjs.org/ko/0.1.2", + "0.1.3": "http://registry.npmjs.org/ko/0.1.3" + }, + "dist": { + "0.1.0": { + "shasum": "b4d04dfe4a647de7b4ac9139e6211d4cd4c4784c", + "tarball": "http://registry.npmjs.org/ko/-/ko-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "5caae9837fb613a446d6608102c71687c65483d8", + "tarball": "http://registry.npmjs.org/ko/-/ko-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "de9589a3b1a3c4e9ee490049413e0a64d8ad9c49", + "tarball": "http://registry.npmjs.org/ko/-/ko-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "903df84d0ac8af5f7fa6109e743b83be54a74faf", + "tarball": "http://registry.npmjs.org/ko/-/ko-0.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/ko/" + }, + "koala": { + "name": "koala", + "description": "Code syntax highlighting library", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/koala/0.1.1", + "0.1.2": "http://registry.npmjs.org/koala/0.1.2" + }, + "dist": { + "0.1.1": { + "tarball": "http://packages:5984/koala/-/koala-0.1.1.tgz" + }, + "0.1.2": { + "tarball": "http://packages:5984/koala/-/koala-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/koala/" + }, + "kohai": { + "name": "kohai", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "marak", + "email": "marak.squires@gmail.com" + } + ], + "time": { + "modified": "2011-05-21T15:30:00.654Z", + "created": "2011-05-21T15:29:59.792Z", + "0.0.1": "2011-05-21T15:30:00.654Z" + }, + "author": { + "name": "nodejitsu" + }, + "repository": { + "type": "git", + "url": "git@github.com:nodejitsu/kohai.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/kohai/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "660ccd77a4f66ba3b275be42a03dcf4e0251ac8a", + "tarball": "http://registry.npmjs.org/kohai/-/kohai-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/kohai/" + }, + "koku": { + "name": "koku", + "description": "Node.js bindings for the Mac finance app Koku", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "cgiffard", + "email": "christopher.giffard@cgiffard.com" + } + ], + "time": { + "modified": "2011-06-02T11:46:05.406Z", + "created": "2011-06-02T09:47:37.785Z", + "0.1.0": "2011-06-02T09:47:39.500Z", + "0.1.1": "2011-06-02T11:46:05.406Z" + }, + "author": { + "name": "Christopher Giffard", + "email": "christopher.giffard@cgiffard.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/cgiffard/node-koku.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/koku/0.1.0", + "0.1.1": "http://registry.npmjs.org/koku/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "4fe12e828744901f4bf2080edd681826c8253ddd", + "tarball": "http://registry.npmjs.org/koku/-/koku-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "1142270b5fe52d8ddb3fd9f210d7582abcad9b92", + "tarball": "http://registry.npmjs.org/koku/-/koku-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/koku/" + }, + "komainu": { + "name": "komainu", + "description": "Lightweight, evented security middleware designed for use with Connect based web applications. Integrates seamlessly with ExpressJS.", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "mrmarbles", + "email": "bcarr14@gmail.com" + } + ], + "time": { + "modified": "2011-05-14T04:40:42.332Z", + "created": "2011-05-10T02:07:21.788Z", + "0.1.0": "2011-05-10T02:07:22.246Z", + "0.2.0": "2011-05-14T04:40:42.332Z" + }, + "author": { + "name": "Brian Carr", + "email": "bcarr14@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mrmarbles/komainu.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/komainu/0.1.0", + "0.2.0": "http://registry.npmjs.org/komainu/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "9628a411279841acd9fde0ff231170a8fe2a1e2c", + "tarball": "http://registry.npmjs.org/komainu/-/komainu-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "38bcb98d22b58c3dd70ed309907fa661db42f7d0", + "tarball": "http://registry.npmjs.org/komainu/-/komainu-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/komainu/" + }, + "komodo-debug": { + "name": "komodo-debug", + "description": "This package contains the bits required for debugging node.js application with Komodo IDE remotely.", + "dist-tags": { + "latest": "1.0.0" + }, + "readme": null, + "maintainers": [ + { + "name": "activestate", + "email": "support@activestate.com" + } + ], + "time": { + "modified": "2011-12-06T21:29:28.549Z", + "created": "2011-12-06T21:29:26.523Z", + "1.0.0": "2011-12-06T21:29:28.549Z" + }, + "author": { + "name": "ActiveState Software Inc.", + "email": "support@activestate.com", + "url": "http://www.activestate.com" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/komodo-debug/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "7f011fe7a3ca6dd6495676ed25f87b8bb433637d", + "tarball": "http://registry.npmjs.org/komodo-debug/-/komodo-debug-1.0.0.tgz" + } + }, + "keywords": [ + "Komodo", + "IDE", + "debug", + "debugger", + "dbgp" + ], + "url": "http://registry.npmjs.org/komodo-debug/" + }, + "komodo-scheme": { + "name": "komodo-scheme", + "description": "A class for parsing Komodo Edit/IDE scheme files (*.ksf) into a workable format.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "wastingtape", + "email": "wastingtape@gmail.com" + } + ], + "time": { + "modified": "2011-08-27T20:01:23.765Z", + "created": "2011-08-27T20:01:22.136Z", + "0.1.0": "2011-08-27T20:01:23.765Z" + }, + "author": { + "name": "Titus", + "email": "titus@kolormodo.com", + "url": "http://twitter.com/andstuff" + }, + "repository": { + "type": "git", + "url": "git://github.com/tstone/komodo-scheme-js.git", + "web": "http://github.com/tstone/komodo-scheme-js" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/komodo-scheme/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "cd366fd312618f4161b744578733c2a8b1a07d9e", + "tarball": "http://registry.npmjs.org/komodo-scheme/-/komodo-scheme-0.1.0.tgz" + } + }, + "keywords": [ + "komodo", + "scheme" + ], + "url": "http://registry.npmjs.org/komodo-scheme/" + }, + "konami": { + "name": "konami", + "description": "A quick and silly script for adding the konami code easter egg to your site. Works with gestures on iPhone as well.", + "dist-tags": { + "latest": "1.3.3" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-09-30T17:10:30.644Z", + "created": "2011-09-30T17:10:30.012Z", + "1.3.3": "2011-09-30T17:10:30.644Z" + }, + "author": { + "name": "George Mandis", + "email": "george@snaptortoise.com", + "url": "http://georgemandis.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/georgemandis/konami-js.git" + }, + "versions": { + "1.3.3": "http://registry.npmjs.org/konami/1.3.3" + }, + "dist": { + "1.3.3": { + "shasum": "1c8cc19ae61ea87f0aa6006ab147d2fd97a89491", + "tarball": "http://registry.npmjs.org/konami/-/konami-1.3.3.tgz" + } + }, + "keywords": [ + "ender" + ], + "url": "http://registry.npmjs.org/konami/" + }, + "konphyg": { + "name": "konphyg", + "description": "Cascading configuration files made easy in Node.js.", + "dist-tags": { + "latest": "1.0.5" + }, + "maintainers": [ + { + "name": "pgte", + "email": "pedro.teixeira@gmail.com" + } + ], + "time": { + "modified": "2011-11-22T13:36:48.014Z", + "created": "2011-09-21T14:07:47.879Z", + "1.0.0": "2011-09-21T14:07:49.991Z", + "1.0.1": "2011-09-21T15:07:41.709Z", + "1.0.2": "2011-09-21T15:14:52.936Z", + "1.0.3": "2011-09-26T08:35:54.536Z", + "1.0.4": "2011-11-17T15:38:25.088Z", + "1.0.5": "2011-11-17T15:46:08.845Z" + }, + "author": { + "name": "Pedro Teixeira", + "email": "pedro.teixeira@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/pgte/konphyg.git" + }, + "users": { + "pgte": true + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/konphyg/1.0.0", + "1.0.1": "http://registry.npmjs.org/konphyg/1.0.1", + "1.0.2": "http://registry.npmjs.org/konphyg/1.0.2", + "1.0.3": "http://registry.npmjs.org/konphyg/1.0.3", + "1.0.4": "http://registry.npmjs.org/konphyg/1.0.4", + "1.0.5": "http://registry.npmjs.org/konphyg/1.0.5" + }, + "dist": { + "1.0.0": { + "shasum": "0fdab86c3ee32916fc5a704ed36610e1d5b8ffec", + "tarball": "http://registry.npmjs.org/konphyg/-/konphyg-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "90df441a339b0700fff7734ae67a585bbf6d34e9", + "tarball": "http://registry.npmjs.org/konphyg/-/konphyg-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "7b4914d3e167637696ba1b01ea7057418ffddcd1", + "tarball": "http://registry.npmjs.org/konphyg/-/konphyg-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "9d068e4aebd10d32859cb7b3025c3d24bb2176c5", + "tarball": "http://registry.npmjs.org/konphyg/-/konphyg-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "5dde3077fdd369d20b66fa482dd25a9f668be602", + "tarball": "http://registry.npmjs.org/konphyg/-/konphyg-1.0.4.tgz" + }, + "1.0.5": { + "shasum": "559d394b18bef210c23970539eeb15e5747a4c8c", + "tarball": "http://registry.npmjs.org/konphyg/-/konphyg-1.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/konphyg/" + }, + "koopa": { + "name": "koopa", + "description": "Browser sniffing for node/jquery/not jquery", + "dist-tags": { + "latest": "1.0.2" + }, + "maintainers": [ + { + "name": "tmont", + "email": "tmont@tmont.com" + } + ], + "time": { + "modified": "2011-11-11T04:53:35.342Z", + "created": "2011-11-08T09:42:42.415Z", + "1.0.0": "2011-11-08T09:44:59.997Z", + "1.0.1": "2011-11-09T09:26:02.161Z", + "1.0.2": "2011-11-11T04:53:35.342Z" + }, + "author": { + "name": "Tommy Montgomery", + "email": "tmont@tmont.com", + "url": "http://tmont.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/tmont/koopa.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/koopa/1.0.0", + "1.0.1": "http://registry.npmjs.org/koopa/1.0.1", + "1.0.2": "http://registry.npmjs.org/koopa/1.0.2" + }, + "dist": { + "1.0.0": { + "shasum": "87499bd29ee83f1c6d8afe8bfbb8e86479c7b24f", + "tarball": "http://registry.npmjs.org/koopa/-/koopa-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "3bc854ca1b12f23ad4b0ef0cf37d9eed2245e549", + "tarball": "http://registry.npmjs.org/koopa/-/koopa-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "cb9cb46dcffe219e2ef5e70db1b72d938c824b1b", + "tarball": "http://registry.npmjs.org/koopa/-/koopa-1.0.2.tgz" + } + }, + "keywords": [ + "browser", + "useragent", + "user-agent", + "sniff", + "user", + "agent", + "sniffing" + ], + "url": "http://registry.npmjs.org/koopa/" + }, + "kranium": { + "name": "kranium", + "description": "Bigger brains for Titanium Mobile", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "krawaller", + "email": "dev@krawaller.se" + } + ], + "time": { + "modified": "2011-12-05T08:23:17.164Z", + "created": "2011-09-19T14:12:10.808Z", + "0.1.3": "2011-09-19T14:12:11.563Z", + "0.1.4": "2011-12-05T08:23:17.164Z" + }, + "author": { + "name": "Jacob Waller", + "email": "jacob@krawaller.se", + "url": "http://blog.krawaller.se" + }, + "repository": { + "type": "git", + "url": "git://github.com/krawaller/kranium.git" + }, + "versions": { + "0.1.3": "http://registry.npmjs.org/kranium/0.1.3", + "0.1.4": "http://registry.npmjs.org/kranium/0.1.4" + }, + "dist": { + "0.1.3": { + "shasum": "44bc0a30409e8f13e6848cf27b7868edfd131bda", + "tarball": "http://registry.npmjs.org/kranium/-/kranium-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "a78a04d190e77243a2b0db5aab2567191c8a3850", + "tarball": "http://registry.npmjs.org/kranium/-/kranium-0.1.4.tgz" + } + }, + "url": "http://registry.npmjs.org/kranium/" + }, + "krowlr": { + "name": "krowlr", + "description": "A fast asynchrone crawler", + "dist-tags": { + "latest": "0.0.3" + }, + "readme": null, + "maintainers": [ + { + "name": "fe_lix_", + "email": "felix.delval@ravelsoft.com" + } + ], + "time": { + "modified": "2011-12-07T13:46:03.405Z", + "created": "2011-11-18T07:12:14.396Z", + "0.0.1": "2011-11-18T07:12:16.747Z", + "0.0.2": "2011-11-18T11:12:43.081Z", + "0.0.3": "2011-12-07T13:46:03.405Z" + }, + "author": { + "name": "Félix Delval", + "email": "felix.delval@ravelsoft.com", + "url": "http://www.ravelsoft.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/krowlr/0.0.1", + "0.0.2": "http://registry.npmjs.org/krowlr/0.0.2", + "0.0.3": "http://registry.npmjs.org/krowlr/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "0addecc1bc609813834dfef029249072fa082331", + "tarball": "http://registry.npmjs.org/krowlr/-/krowlr-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "ac73e6a8a4c4602da518c7d455845484f11de0fa", + "tarball": "http://registry.npmjs.org/krowlr/-/krowlr-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "2f9f3ec1d47aac3628fedc8c0baeaefb391658ae", + "tarball": "http://registry.npmjs.org/krowlr/-/krowlr-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/krowlr/" + }, + "kue": { + "name": "kue", + "description": "Feature rich priority job queue backed by redis", + "dist-tags": { + "latest": "0.3.3" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "time": { + "modified": "2011-11-28T18:03:50.867Z", + "created": "2011-07-05T00:02:52.044Z", + "0.0.1": "2011-07-05T00:02:52.614Z", + "0.0.2": "2011-07-05T19:28:15.031Z", + "0.0.3": "2011-07-07T22:18:25.313Z", + "0.0.4": "2011-07-19T16:16:48.160Z", + "0.1.0": "2011-07-25T21:22:15.192Z", + "0.2.0": "2011-07-25T21:24:41.514Z", + "0.3.0": "2011-08-11T22:24:16.742Z", + "0.3.1": "2011-08-25T16:42:17.191Z", + "0.3.2": "2011-10-04T16:13:48.398Z", + "0.3.3": "2011-11-28T18:03:50.867Z" + }, + "author": { + "name": "TJ Holowaychuk", + "email": "tj@learnboost.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/kue/0.0.1", + "0.0.2": "http://registry.npmjs.org/kue/0.0.2", + "0.0.3": "http://registry.npmjs.org/kue/0.0.3", + "0.0.4": "http://registry.npmjs.org/kue/0.0.4", + "0.1.0": "http://registry.npmjs.org/kue/0.1.0", + "0.2.0": "http://registry.npmjs.org/kue/0.2.0", + "0.3.0": "http://registry.npmjs.org/kue/0.3.0", + "0.3.1": "http://registry.npmjs.org/kue/0.3.1", + "0.3.2": "http://registry.npmjs.org/kue/0.3.2", + "0.3.3": "http://registry.npmjs.org/kue/0.3.3" + }, + "dist": { + "0.0.1": { + "shasum": "51f2a53fe04b80a89791afed082b219c539ee4f8", + "tarball": "http://registry.npmjs.org/kue/-/kue-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "4992ee7b90771971976d35ddc5c30c042cd950e2", + "tarball": "http://registry.npmjs.org/kue/-/kue-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "6de4f8fb514832ac22d6dbe00000bd7def820c8a", + "tarball": "http://registry.npmjs.org/kue/-/kue-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "524d9312d66128622168f95d24dc85c234d337f9", + "tarball": "http://registry.npmjs.org/kue/-/kue-0.0.4.tgz" + }, + "0.1.0": { + "shasum": "9e0d2b5dd684ea635581124a97a679abf026dab9", + "tarball": "http://registry.npmjs.org/kue/-/kue-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "08b2456dac49eb673ebe31c6013a703826b38d70", + "tarball": "http://registry.npmjs.org/kue/-/kue-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "e834d79cf5707afc1296a00ccab22ef7cb916ca9", + "tarball": "http://registry.npmjs.org/kue/-/kue-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "ae1459fc87f46569a9ef49c514ac5d2f771296dd", + "tarball": "http://registry.npmjs.org/kue/-/kue-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "e320f96eca729188460ad3662d5d9055d57ff6e0", + "tarball": "http://registry.npmjs.org/kue/-/kue-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "14751302e573c9b4c81b5401d54ef7c2a80a6327", + "tarball": "http://registry.npmjs.org/kue/-/kue-0.3.3.tgz" + } + }, + "keywords": [ + "redis", + "job", + "queue", + "worker", + "redis" + ], + "url": "http://registry.npmjs.org/kue/" + }, + "kuebk-zookeeper": { + "name": "kuebk-zookeeper", + "description": "apache zookeeper client for node.js (zookeeper async API >= 3.3.1)", + "dist-tags": { + "latest": "3.3.3-x" + }, + "maintainers": [ + { + "name": "kuebk", + "email": "kuebzky@gmail.com" + } + ], + "time": { + "modified": "2011-11-22T15:48:12.484Z", + "created": "2011-11-22T15:41:40.642Z", + "3.3.3-1": "2011-11-22T15:43:00.347Z", + "3.3.3-x": "2011-11-22T15:47:58.448Z" + }, + "author": { + "name": "Yuri Finkelstein", + "email": "yurif2003@yahoo.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/kuebk/node-zookeeper.git" + }, + "versions": { + "3.3.3-x": "http://registry.npmjs.org/kuebk-zookeeper/3.3.3-x" + }, + "dist": { + "3.3.3-x": { + "shasum": "d47b0640c794c2c69fa91b146824a1783b923056", + "tarball": "http://registry.npmjs.org/kuebk-zookeeper/-/kuebk-zookeeper-3.3.3-x.tgz" + } + }, + "keywords": [ + "apache", + "zookeeper", + "client" + ], + "url": "http://registry.npmjs.org/kuebk-zookeeper/" + }, + "kyatchi": { + "name": "kyatchi", + "description": "Catch the Mail!", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "hamin", + "email": "aminharis7@gmail.com" + } + ], + "time": { + "modified": "2011-07-05T23:50:19.722Z", + "created": "2011-06-09T17:45:42.011Z", + "0.0.1": "2011-06-09T17:45:42.130Z", + "0.0.2": "2011-06-10T16:33:10.548Z", + "0.0.3": "2011-06-22T23:57:06.560Z", + "0.0.4": "2011-07-05T23:49:41.504Z" + }, + "author": { + "name": "Haris Amin", + "email": "aminharis7@gmail.com", + "url": "http://github.com/hamin" + }, + "repository": { + "type": "git", + "url": "git://github.com/hamin/kyatchi.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/kyatchi/0.0.1", + "0.0.2": "http://registry.npmjs.org/kyatchi/0.0.2", + "0.0.3": "http://registry.npmjs.org/kyatchi/0.0.3", + "0.0.4": "http://registry.npmjs.org/kyatchi/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "5221acf6ad62de2a51300f53046e6896f3e382cc", + "tarball": "http://registry.npmjs.org/kyatchi/-/kyatchi-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "19f23be099f3106d315c3b7cbc6237b660085cd3", + "tarball": "http://registry.npmjs.org/kyatchi/-/kyatchi-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "59aaa2ee3ae765890ae59f52e6774c7f981d3729", + "tarball": "http://registry.npmjs.org/kyatchi/-/kyatchi-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "f1516fa1cd68e605c580be856a32e28a893cc4ee", + "tarball": "http://registry.npmjs.org/kyatchi/-/kyatchi-0.0.4.tgz" + } + }, + "keywords": [ + "smtp", + "email", + "mail", + "development" + ], + "url": "http://registry.npmjs.org/kyatchi/" + }, + "kyoto": { + "name": "kyoto", + "description": "Kyoto Cabinet bindings for Node.JS", + "dist-tags": { + "latest": "0.2.3" + }, + "maintainers": [ + { + "name": "weaver", + "email": "ben@orangesoda.net" + } + ], + "time": { + "modified": "2011-06-26T17:17:39.422Z", + "created": "2011-06-20T16:17:01.344Z", + "0.1.1": "2011-06-20T16:17:01.577Z", + "0.2.0": "2011-06-20T20:31:33.203Z", + "0.2.1": "2011-06-20T22:14:19.513Z", + "0.2.2": "2011-06-20T22:39:33.479Z", + "0.2.3": "2011-06-26T17:17:39.422Z" + }, + "author": { + "name": "Ben Weaver", + "email": "ben@orangesoda.net" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/kyoto/0.1.1", + "0.2.0": "http://registry.npmjs.org/kyoto/0.2.0", + "0.2.1": "http://registry.npmjs.org/kyoto/0.2.1", + "0.2.2": "http://registry.npmjs.org/kyoto/0.2.2", + "0.2.3": "http://registry.npmjs.org/kyoto/0.2.3" + }, + "dist": { + "0.1.1": { + "shasum": "9bbf95863df6a3845c1cfd17f898b1ddaace0db4", + "bin": { + "0.4-linux-2.6.38-ARCH": { + "shasum": "03c824c2558b5b8728558e07f48e52cae8cc6f3f", + "tarball": "http://registry.npmjs.org/kyoto/-/kyoto-0.1.1-0.4-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/kyoto/-/kyoto-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "915c14f7db168d534602d80b679b7672f45961ae", + "bin": { + "0.4-linux-2.6.38-ARCH": { + "shasum": "b6cf822ba009726ffc44c2b3000768d9d97164d4", + "tarball": "http://registry.npmjs.org/kyoto/-/kyoto-0.2.0-0.4-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/kyoto/-/kyoto-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "b396120e3c187a545b4c2b4c4f83186573987aee", + "bin": { + "0.4-linux-2.6.38-ARCH": { + "shasum": "01bdbb28c9721649916670b7df93f2873775576f", + "tarball": "http://registry.npmjs.org/kyoto/-/kyoto-0.2.1-0.4-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/kyoto/-/kyoto-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "38730241a916f18751ae353d6e6710dd46cf9ed8", + "bin": { + "0.4-linux-2.6.38-ARCH": { + "shasum": "be2df8960c4a7fcbcd17490e1c0a8e08c8372899", + "tarball": "http://registry.npmjs.org/kyoto/-/kyoto-0.2.2-0.4-linux-2.6.38-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/kyoto/-/kyoto-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "b4500257d7eda85752c3bb822205a717dcf5ef73", + "tarball": "http://registry.npmjs.org/kyoto/-/kyoto-0.2.3.tgz" + } + }, + "url": "http://registry.npmjs.org/kyoto/" + }, + "kyoto-client": { + "name": "kyoto-client", + "description": "Client for Kyoto Tycoon", + "dist-tags": { + "latest": "0.4.0" + }, + "maintainers": [ + { + "name": "wezm", + "email": "wes@wezm.net" + } + ], + "time": { + "modified": "2011-06-30T03:15:14.462Z", + "created": "2011-02-08T16:39:20.873Z", + "0.1.0": "2011-02-08T16:39:42.409Z", + "0.1.1": "2011-02-08T16:54:52.339Z", + "0.2.0": "2011-03-14T01:09:44.825Z", + "0.3.0": "2011-04-25T03:40:11.330Z", + "0.4.0": "2011-06-30T03:15:14.462Z" + }, + "author": { + "name": "Wesley Moore", + "email": "wes@wezm.net", + "url": "http://www.wezm.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/wezm/kyoto-client.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/kyoto-client/0.1.0", + "0.1.1": "http://registry.npmjs.org/kyoto-client/0.1.1", + "0.2.0": "http://registry.npmjs.org/kyoto-client/0.2.0", + "0.3.0": "http://registry.npmjs.org/kyoto-client/0.3.0", + "0.4.0": "http://registry.npmjs.org/kyoto-client/0.4.0" + }, + "dist": { + "0.1.0": { + "shasum": "eef75875af4e678349affb09baf78955aefb7391", + "tarball": "http://registry.npmjs.org/kyoto-client/-/kyoto-client-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "5b8584415f76c036d11233b33f86832c63931385", + "tarball": "http://registry.npmjs.org/kyoto-client/-/kyoto-client-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "3c65696e2e293930b3c36d02223925364cc8275e", + "tarball": "http://registry.npmjs.org/kyoto-client/-/kyoto-client-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "79ee2784a58fd26f6b05921e29b1aa5a3f10d0b3", + "tarball": "http://registry.npmjs.org/kyoto-client/-/kyoto-client-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "5cb94453fa44068045011e3df3453f9b5376bf45", + "tarball": "http://registry.npmjs.org/kyoto-client/-/kyoto-client-0.4.0.tgz" + } + }, + "keywords": [ + "kyoto", + "tycoon", + "client", + "cabinet", + "nosql", + "database", + "datastore" + ], + "url": "http://registry.npmjs.org/kyoto-client/" + }, + "kyoto-tycoon": { + "name": "kyoto-tycoon", + "dist-tags": { + "latest": "0.0.7" + }, + "maintainers": [ + { + "name": "swdyh", + "email": "youhei@gmail.com" + } + ], + "author": { + "name": "swdyh" + }, + "time": { + "modified": "2011-02-27T03:15:11.829Z", + "created": "2011-02-24T13:36:05.419Z", + "0.0.1": "2011-02-24T13:36:05.419Z", + "0.0.2": "2011-02-24T13:36:05.419Z", + "0.0.3": "2011-02-24T13:36:05.419Z", + "0.0.4": "2011-02-24T13:36:05.419Z", + "0.0.5": "2011-02-25T05:04:17.312Z", + "0.0.6": "2011-02-25T06:25:09.084Z", + "0.0.7": "2011-02-27T03:15:11.829Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/kyoto-tycoon/0.0.1", + "0.0.2": "http://registry.npmjs.org/kyoto-tycoon/0.0.2", + "0.0.3": "http://registry.npmjs.org/kyoto-tycoon/0.0.3", + "0.0.4": "http://registry.npmjs.org/kyoto-tycoon/0.0.4", + "0.0.5": "http://registry.npmjs.org/kyoto-tycoon/0.0.5", + "0.0.6": "http://registry.npmjs.org/kyoto-tycoon/0.0.6", + "0.0.7": "http://registry.npmjs.org/kyoto-tycoon/0.0.7" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/kyoto-tycoon/-/kyoto-tycoon-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/kyoto-tycoon/-/kyoto-tycoon-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/kyoto-tycoon/-/kyoto-tycoon-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "9714db9802b4754db62c741feb1c881b5d9e6488", + "tarball": "http://registry.npmjs.org/kyoto-tycoon/-/kyoto-tycoon-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "414ce7bb681774fc954baef15f79c941e069dadc", + "tarball": "http://registry.npmjs.org/kyoto-tycoon/-/kyoto-tycoon-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "39852fb9f76f2e533ba200c615637a499ca1d2fb", + "tarball": "http://registry.npmjs.org/kyoto-tycoon/-/kyoto-tycoon-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "810959d7eb741a23ad41ae98c4c2a58410a9bbb3", + "tarball": "http://registry.npmjs.org/kyoto-tycoon/-/kyoto-tycoon-0.0.7.tgz" + } + }, + "url": "http://registry.npmjs.org/kyoto-tycoon/" + }, + "kyuri": { + "name": "kyuri", + "description": "a cucumber implementation with a few extra asynchronous keywords. supports 160+ languages and exports to VowsJS stubs", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "marak", + "email": "marak.squires@gmail.com" + }, + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + } + ], + "author": { + "name": "Charlie Robbins", + "email": "charlie.robbins@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/nodejitsu/kyuri.git" + }, + "time": { + "modified": "2011-05-14T07:27:49.457Z", + "created": "2011-05-14T06:13:33.867Z", + "0.1.0": "2011-05-14T06:13:33.867Z", + "0.1.1": "2011-05-14T07:27:49.457Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/kyuri/0.1.0", + "0.1.1": "http://registry.npmjs.org/kyuri/0.1.1" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/kyuri/-/kyuri-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "1dc62727b28cc4bc6713655e129f64f23e543777", + "tarball": "http://registry.npmjs.org/kyuri/-/kyuri-0.1.1.tgz" + } + }, + "keywords": [ + "kyuri", + "cucumber", + "gherkin", + "VowsJS" + ], + "url": "http://registry.npmjs.org/kyuri/" + }, + "l": { + "name": "l", + "description": "Web application framework for linking everything together", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "# Yobiengine\n\nFramework for stateful oop combining class based programming with statechart principles\n\n## Principles\n\n- Transition has a trigger: event, condition, idle timeout and delay.\n- A composite state is used to encapsulate states with the same events. Fewer arrows.\n- History state can only be in a composite state.\n- Shallow history state: Remembers the state in the same level.\n- Deep history state: Remembers the state that can be very deep in the hierarchy.\n- A composite state can transition to a sibling state no matter which substate is active. Use deep history state to remember what substate to enter when the composite state is entered again.\n- Final state: terminates the statechart. Could be multiple final states. They have no outgoing transitions.\n\n## Tutorials\n\n- http://publib.boulder.ibm.com/infocenter/rsmhelp/v7r5m0/index.jsp?topic=%2Fcom.ibm.xtools.modeler.doc%2Ftopics%2Ftwrksmd.html\n- http://jcsites.juniata.edu/faculty/rhodes/smui/statechart.htm\n- http://www.lkn.ei.tum.de/arbeiten/faq/man/tau_uml_45_doc/doc/user/mg/dgmsuml7.html\n- http://www.xjtek.com/files/book/Designing_state-based_behavior-statecharts.pdf\n- http://www.inf.ed.ac.uk/teaching/courses/seoc/2007_2008/notes/LectureNote12_slides.pdf\n- http://www3.informatik.uni-erlangen.de/Lectures/UMLEmbSys/WS2001/slides/Statecharts.pdf\n- http://www.agilemodeling.com/artifacts/stateMachineDiagram.htm\n- http://santos.cis.ksu.edu/771-Distribution/Reading/uml-section3.73-94.pdf\n- http://www.tutorialspoint.com/uml/uml_statechart_diagram.htm\n- http://www.developer.com/design/article.php/2238131/State-Diagram-in-UML.htm\n- http://www.slideshare.net/erant/uml-statechart-diagrams\n- http://www.uml.org.cn/UMLApplication/pdf/bestbook.pdf\n- http://www.boost.org/doc/libs/1_41_0/libs/statechart/doc/tutorial.html\n", + "maintainers": [ + { + "name": "johnnywengluu", + "email": "johnny.weng.luu@gmail.com" + } + ], + "time": { + "modified": "2011-11-30T06:55:38.624Z", + "created": "2011-11-30T06:55:35.033Z", + "0.0.1": "2011-11-30T06:55:38.624Z" + }, + "author": { + "name": "Yobi" + }, + "repository": { + "type": "git", + "url": "git://github.com/johnnywengluu/link.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/l/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "18dd6a4db10059ab08863fbdf0390dd2dfb73196", + "tarball": "http://registry.npmjs.org/l/-/l-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/l/" + }, + "labBuilder": { + "name": "labBuilder", + "description": "Construct your dependencies from a file or programatically", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "34m0", + "email": "eamonnoconnell@gmail.com" + } + ], + "time": { + "modified": "2011-06-15T09:04:21.987Z", + "created": "2011-06-08T15:39:47.008Z", + "0.0.1": "2011-06-08T15:39:47.907Z", + "0.0.2": "2011-06-14T15:21:01.494Z", + "0.0.3": "2011-06-15T07:19:40.545Z" + }, + "author": { + "name": "eamonnoconnell@gmail.com, twitter: @34m0" + }, + "repository": { + "type": "git", + "url": "git://github.com/halfbaked/labBuilder.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/labBuilder/0.0.1", + "0.0.2": "http://registry.npmjs.org/labBuilder/0.0.2", + "0.0.3": "http://registry.npmjs.org/labBuilder/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "3d1cc2901bd6448773887a2dc92c92b313b8303e", + "tarball": "http://registry.npmjs.org/labBuilder/-/labBuilder-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "6c8a965b0285845ce5a7fc2ed8796ba875440e2a", + "tarball": "http://registry.npmjs.org/labBuilder/-/labBuilder-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "c56c51953db04dc8d9f085c130af9f5a349dd003", + "tarball": "http://registry.npmjs.org/labBuilder/-/labBuilder-0.0.3.tgz" + } + }, + "keywords": [ + "lab" + ], + "url": "http://registry.npmjs.org/labBuilder/" + }, + "laconic": { + "name": "laconic", + "description": "dom sanity", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "joestelmach", + "email": "joestelmach@gmail.com" + } + ], + "time": { + "modified": "2011-07-18T03:53:56.924Z", + "created": "2011-07-18T03:53:56.772Z", + "0.0.0": "2011-07-18T03:53:56.924Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/joestelmach/laconic.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/laconic/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "570cc00368d593ac849cea30dfa35289df104c46", + "tarball": "http://registry.npmjs.org/laconic/-/laconic-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/laconic/" + }, + "lam": { + "name": "lam", + "description": "Local app", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "mcantelon", + "email": "mcantelon@gmail.com" + } + ], + "time": { + "modified": "2011-09-27T05:55:52.294Z", + "created": "2011-09-26T03:46:14.974Z", + "0.0.1": "2011-09-26T03:46:16.176Z", + "0.0.2": "2011-09-26T05:15:33.833Z", + "0.0.3": "2011-09-26T05:33:33.462Z", + "0.0.4": "2011-09-27T05:55:52.294Z" + }, + "author": { + "name": "Mike Cantelon", + "email": "mcantelon@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/lam/0.0.1", + "0.0.2": "http://registry.npmjs.org/lam/0.0.2", + "0.0.3": "http://registry.npmjs.org/lam/0.0.3", + "0.0.4": "http://registry.npmjs.org/lam/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "1f3085e913f281136223e372734b49e0dd26e2b2", + "tarball": "http://registry.npmjs.org/lam/-/lam-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "5fd81a651ca7dd5aa98942e3802af35768382d36", + "tarball": "http://registry.npmjs.org/lam/-/lam-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "880bad5d15ec20d4edebfbd81d1f4d4595814c27", + "tarball": "http://registry.npmjs.org/lam/-/lam-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "da616b291dc663e4fa8068b0bc93cedc49a6b20c", + "tarball": "http://registry.npmjs.org/lam/-/lam-0.0.4.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/lam/" + }, + "lam-example": { + "name": "lam-example", + "description": "Example lam local web application and package.json", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "mcantelon", + "email": "mcantelon@gmail.com" + } + ], + "time": { + "modified": "2011-09-26T06:19:52.921Z", + "created": "2011-09-26T06:19:52.218Z", + "0.0.1": "2011-09-26T06:19:52.921Z" + }, + "author": { + "name": "Mike Cantelon", + "email": "mcantelon@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/lam-example/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "a501fab51fcbfe3cadfe4bddd1e02b723b19911b", + "tarball": "http://registry.npmjs.org/lam-example/-/lam-example-0.0.1.tgz" + } + }, + "keywords": [ + "local", + "lam" + ], + "url": "http://registry.npmjs.org/lam-example/" + }, + "lame": { + "name": "lame", + "description": "NodeJS native bindings to libmp3lame & libmpg123.", + "dist-tags": { + "latest": "0.0.3" + }, + "readme": "node-lame\n=========\n### NodeJS native bindings to libmp3lame\n\nFor all your async streaming MP3 encoding/decoding needs, there's `node-lame`!\nThis module hooks into libmp3lame, the library that the `lame` command uses, to\nprovide an `Encoder` and `Decoder` class to NodeJS.\n\n\nInstallation\n------------\n\nInstall with `npm`:\n\n``` bash\n$ npm install lame\n```\n\n\nExample\n-------\n\nHere's an example of using `node-lame` to decode an MP3 file to raw PCM data and\npipe that to `process.stdout`:\n\n``` javascript\nvar fs = require('fs')\n , lame = require('lame')\n\n// Create the Decoder instance\nvar decoder = lame.createDecoder({\n channels: 2 // 2 channels (left and right)\n , signed: true // Signed data values\n , sampleSize: 16 // 16-bit samples\n , sampleRate: 44100 // 44,100 Hz sample rate\n , endianness: 'little' // Little-endian samples\n});\n\n// The decoder should have an MP3 file written to it\nfs.createReadStream('/some/audio/file.mp3').pipe(decoder);\n\n// Raw PCM data gets fed to stdout. play the stream with `ffplay` or somethin'\ndecoder.pipe(process.stdout);\n```\n\n\nAPI\n---\n\n### Decoder class\n\nThe `Decoder` class is a `Stream` subclass that accepts MP3 data written to it,\nand emits raw PCM as `data` events.\n\n### Encoder class\n\nThe `Encoder` class is a `Stream` subclass that accepts raw PCM data written to\nit, and emits MP3 data as `data` events.\n\n### Parser class\n\nThe `Parser` class is an `EventEmitter` subclass that accepts MP3 data being\nwritten to it, and emits events as the different structures of the MP3 file are\nencountered:\n\n * `id3v2` event - fired one time when the ID3v2 data at the beginning of the MP3 file has been parsed. A single `Buffer` argument is passed to the callbacks.\n * `frame` events - fired multiple times as each complete MP3 frame gets written. A single `Buffer` argument is passed that is a complete MP3 frame.\n * `id3v1` event - fired one time when the ID3v1 data at the end of the MP3 file has been parsed. A single `Buffer` argument is passed that is the ID3 info.\n * `end` event - fired one time when then end of the MP3 file is encountered.\n", + "maintainers": [ + { + "name": "TooTallNate", + "email": "nathan@tootallnate.net" + } + ], + "time": { + "modified": "2011-12-03T00:47:04.875Z", + "created": "2011-11-12T20:48:27.676Z", + "0.0.1": "2011-11-12T20:48:29.655Z", + "0.0.2": "2011-11-15T08:12:24.442Z", + "0.0.3": "2011-11-26T04:41:34.793Z" + }, + "author": { + "name": "Nathan Rajlich", + "email": "nathan@tootallnate.net", + "url": "http://tootallnate.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/TooTallNate/node-lame.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/lame/0.0.1", + "0.0.3": "http://registry.npmjs.org/lame/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "aead3d6fa6057a91990ff6e61684a541a5287d26", + "tarball": "http://registry.npmjs.org/lame/-/lame-0.0.1.tgz" + }, + "0.0.3": { + "shasum": "e184b3b621f28d22facbb95985aba80591f12d3f", + "tarball": "http://registry.npmjs.org/lame/-/lame-0.0.3.tgz" + } + }, + "keywords": [ + "lame", + "mp3", + "mpeg", + "mpg", + "encode", + "decode", + "parse" + ], + "url": "http://registry.npmjs.org/lame/" + }, + "lang": { + "name": "lang", + "description": "common function for javascript on nodejs", + "dist-tags": { + "latest": "0.1.13" + }, + "maintainers": [ + { + "name": "inotseeyou", + "email": "inotseeyou@gmail.com" + } + ], + "time": { + "modified": "2011-11-20T03:33:19.502Z", + "created": "2011-11-20T03:33:18.059Z", + "0.1.13": "2011-11-20T03:33:19.502Z" + }, + "author": { + "name": "inotseeyou", + "email": "inotseeyou@gmail.com", + "url": "http://inotseeyou.com" + }, + "repository": { + "url": "" + }, + "versions": { + "0.1.13": "http://registry.npmjs.org/lang/0.1.13" + }, + "dist": { + "0.1.13": { + "shasum": "7c04c6b9320a43da77b53ba878393191257095f9", + "tarball": "http://registry.npmjs.org/lang/-/lang-0.1.13.tgz" + } + }, + "keywords": [ + "tool", + "help", + "lang", + "common", + "format", + "tip", + "knife" + ], + "url": "http://registry.npmjs.org/lang/" + }, + "languagedetect": { + "name": "languagedetect", + "description": "Nodejs language detection library using n-gram", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "fgribreau", + "email": "npm@fgribreau.com" + } + ], + "time": { + "modified": "2011-07-18T10:17:19.250Z", + "created": "2011-07-18T10:17:18.795Z", + "0.0.1": "2011-07-18T10:17:19.250Z" + }, + "author": { + "name": "Francois-Guillaume Ribreau", + "email": "npm@fgribreau.com", + "url": "http://fgribreau.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/FGRibreau/node-language-detect.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/languagedetect/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "37a7f7dc784a2d110c428708ee38827e361b2287", + "tarball": "http://registry.npmjs.org/languagedetect/-/languagedetect-0.0.1.tgz" + } + }, + "keywords": [ + "n-gram", + "language", + "language detection" + ], + "url": "http://registry.npmjs.org/languagedetect/" + }, + "lape-user": { + "name": "lape-user", + "description": "Lape.Me user management", + "dist-tags": { + "latest": "1.0.3" + }, + "maintainers": [ + { + "name": "rodchyn", + "email": "rodchyn@gmail.com" + } + ], + "time": { + "modified": "2011-09-26T19:43:18.626Z", + "created": "2011-09-26T19:03:54.207Z", + "1.0.0": "2011-09-26T19:03:54.496Z", + "1.0.1": "2011-09-26T19:08:54.477Z", + "1.0.2": "2011-09-26T19:40:59.709Z", + "1.0.3": "2011-09-26T19:43:18.626Z" + }, + "author": { + "name": "Yura Rodchyn", + "email": "rodchyn@gmail.com" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/lape-user/1.0.0", + "1.0.1": "http://registry.npmjs.org/lape-user/1.0.1", + "1.0.2": "http://registry.npmjs.org/lape-user/1.0.2", + "1.0.3": "http://registry.npmjs.org/lape-user/1.0.3" + }, + "dist": { + "1.0.0": { + "shasum": "6c90154ac061c448927c72dd878f914a8abde937", + "tarball": "http://registry.npmjs.org/lape-user/-/lape-user-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "700342d96f0a441fde9c1aed2cb9939d5d70b4ac", + "tarball": "http://registry.npmjs.org/lape-user/-/lape-user-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "6df01638c1f0dca40b229bf2e27ed2be50e2f60d", + "tarball": "http://registry.npmjs.org/lape-user/-/lape-user-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "f5e2dba44a16472ad5a859930567869ef8f2a90b", + "tarball": "http://registry.npmjs.org/lape-user/-/lape-user-1.0.3.tgz" + } + }, + "keywords": [ + "lape", + "user", + "lape-user", + "user management" + ], + "url": "http://registry.npmjs.org/lape-user/" + }, + "lastfm": { + "name": "lastfm", + "description": "Read and write to Last.fm", + "dist-tags": { + "latest": "0.8.0" + }, + "maintainers": [ + { + "name": "jammus", + "email": "jammus@gmail.com" + } + ], + "author": { + "name": "James Scott", + "email": "jammus@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/jammus/lastfm-node.git" + }, + "time": { + "modified": "2011-09-24T16:30:57.560Z", + "created": "2011-01-22T12:50:34.667Z", + "0.1.0": "2011-01-22T12:50:34.667Z", + "0.2.0": "2011-01-22T12:50:34.667Z", + "0.2.1": "2011-01-22T12:50:34.667Z", + "0.2.2": "2011-01-22T12:50:34.667Z", + "0.3.0": "2011-01-22T12:50:34.667Z", + "0.3.1": "2011-01-22T12:50:34.667Z", + "0.3.2": "2011-01-22T12:50:34.667Z", + "0.3.3": "2011-01-22T12:50:34.667Z", + "0.3.4": "2011-01-22T12:50:34.667Z", + "0.3.5": "2011-01-22T12:50:34.667Z", + "0.4.0": "2011-01-22T12:50:34.667Z", + "0.4.1": "2011-01-22T12:50:34.667Z", + "0.4.2": "2011-01-22T12:50:34.667Z", + "0.4.3": "2011-01-22T12:50:34.667Z", + "0.4.4": "2011-01-22T12:50:34.667Z", + "0.5.0": "2011-01-24T23:56:45.884Z", + "0.5.1": "2011-04-05T21:42:44.673Z", + "0.6.0": "2011-04-20T21:21:03.099Z", + "0.6.1": "2011-05-14T11:38:47.149Z", + "0.6.2": "2011-05-22T12:59:18.898Z", + "0.6.3": "2011-06-12T14:01:21.361Z", + "0.7.0": "2011-08-07T20:14:09.450Z", + "0.8.0": "2011-09-24T16:30:57.560Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/lastfm/0.1.0", + "0.2.0": "http://registry.npmjs.org/lastfm/0.2.0", + "0.2.1": "http://registry.npmjs.org/lastfm/0.2.1", + "0.2.2": "http://registry.npmjs.org/lastfm/0.2.2", + "0.3.0": "http://registry.npmjs.org/lastfm/0.3.0", + "0.3.1": "http://registry.npmjs.org/lastfm/0.3.1", + "0.3.2": "http://registry.npmjs.org/lastfm/0.3.2", + "0.3.3": "http://registry.npmjs.org/lastfm/0.3.3", + "0.3.4": "http://registry.npmjs.org/lastfm/0.3.4", + "0.3.5": "http://registry.npmjs.org/lastfm/0.3.5", + "0.4.0": "http://registry.npmjs.org/lastfm/0.4.0", + "0.4.1": "http://registry.npmjs.org/lastfm/0.4.1", + "0.4.2": "http://registry.npmjs.org/lastfm/0.4.2", + "0.4.3": "http://registry.npmjs.org/lastfm/0.4.3", + "0.4.4": "http://registry.npmjs.org/lastfm/0.4.4", + "0.5.0": "http://registry.npmjs.org/lastfm/0.5.0", + "0.5.1": "http://registry.npmjs.org/lastfm/0.5.1", + "0.6.0": "http://registry.npmjs.org/lastfm/0.6.0", + "0.6.1": "http://registry.npmjs.org/lastfm/0.6.1", + "0.6.2": "http://registry.npmjs.org/lastfm/0.6.2", + "0.6.3": "http://registry.npmjs.org/lastfm/0.6.3", + "0.7.0": "http://registry.npmjs.org/lastfm/0.7.0", + "0.8.0": "http://registry.npmjs.org/lastfm/0.8.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/lastfm/-/lastfm-0.1.0.tgz" + }, + "0.2.0": { + "tarball": "http://registry.npmjs.org/lastfm/-/lastfm-0.2.0.tgz" + }, + "0.2.1": { + "tarball": "http://registry.npmjs.org/lastfm/-/lastfm-0.2.1.tgz" + }, + "0.2.2": { + "tarball": "http://registry.npmjs.org/lastfm/-/lastfm-0.2.2.tgz" + }, + "0.3.0": { + "tarball": "http://registry.npmjs.org/lastfm/-/lastfm-0.3.0.tgz" + }, + "0.3.1": { + "tarball": "http://registry.npmjs.org/lastfm/-/lastfm-0.3.1.tgz" + }, + "0.3.2": { + "tarball": "http://registry.npmjs.org/lastfm/-/lastfm-0.3.2.tgz" + }, + "0.3.3": { + "tarball": "http://registry.npmjs.org/lastfm/-/lastfm-0.3.3.tgz" + }, + "0.3.4": { + "tarball": "http://registry.npmjs.org/lastfm/-/lastfm-0.3.4.tgz" + }, + "0.3.5": { + "tarball": "http://registry.npmjs.org/lastfm/-/lastfm-0.3.5.tgz" + }, + "0.4.0": { + "tarball": "http://registry.npmjs.org/lastfm/-/lastfm-0.4.0.tgz" + }, + "0.4.1": { + "tarball": "http://registry.npmjs.org/lastfm/-/lastfm-0.4.1.tgz" + }, + "0.4.2": { + "tarball": "http://registry.npmjs.org/lastfm/-/lastfm-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "9f404659e0ade8747c794b2bf4afe9430196450e", + "tarball": "http://registry.npmjs.org/lastfm/-/lastfm-0.4.3.tgz" + }, + "0.4.4": { + "shasum": "421284395ed80a13661f5cf1a37446a73c16fce4", + "tarball": "http://registry.npmjs.org/lastfm/-/lastfm-0.4.4.tgz" + }, + "0.5.0": { + "shasum": "1443c63d215800917306bbc3463fa6f5709d4322", + "tarball": "http://registry.npmjs.org/lastfm/-/lastfm-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "c9be7feea5d18457a50e883e11372c3916658e92", + "tarball": "http://registry.npmjs.org/lastfm/-/lastfm-0.5.1.tgz" + }, + "0.6.0": { + "shasum": "2c313f2190734b77f8c0b8b5afebd817c4afe488", + "tarball": "http://registry.npmjs.org/lastfm/-/lastfm-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "98fa9a1d9daaec1735c0e3a933542657108059d6", + "tarball": "http://registry.npmjs.org/lastfm/-/lastfm-0.6.1.tgz" + }, + "0.6.2": { + "shasum": "bc93836e99be1beedbbee4a278861c0b369e049f", + "tarball": "http://registry.npmjs.org/lastfm/-/lastfm-0.6.2.tgz" + }, + "0.6.3": { + "shasum": "18e2e94796febd34a8c0fd3a06f56ceba735dab3", + "tarball": "http://registry.npmjs.org/lastfm/-/lastfm-0.6.3.tgz" + }, + "0.7.0": { + "shasum": "b791e1c6eecdfbccacc3b1d3d677e8c2afbaed2b", + "tarball": "http://registry.npmjs.org/lastfm/-/lastfm-0.7.0.tgz" + }, + "0.8.0": { + "shasum": "475316616122bc3ac4387b21b98717d6674ba3b3", + "tarball": "http://registry.npmjs.org/lastfm/-/lastfm-0.8.0.tgz" + } + }, + "url": "http://registry.npmjs.org/lastfm/" + }, + "lastname": { + "name": "lastname", + "description": "Package for search proper names in text. Can be used for incline some proper names.", + "dist-tags": { + "latest": "0.3.37" + }, + "maintainers": [ + { + "name": "selead", + "email": "allselead@gmail.com" + } + ], + "time": { + "modified": "2011-11-27T23:42:05.823Z", + "created": "2011-10-27T06:37:24.352Z", + "0.2.6": "2011-10-27T06:37:26.215Z", + "0.3.19": "2011-11-24T12:28:24.837Z", + "0.3.21": "2011-11-24T22:46:29.127Z", + "0.3.31": "2011-11-26T21:53:07.536Z", + "0.3.37": "2011-11-27T23:42:05.823Z" + }, + "author": { + "name": "Temnov Kirill", + "email": "allselead@gmail.com" + }, + "versions": { + "0.2.6": "http://registry.npmjs.org/lastname/0.2.6", + "0.3.19": "http://registry.npmjs.org/lastname/0.3.19", + "0.3.21": "http://registry.npmjs.org/lastname/0.3.21", + "0.3.31": "http://registry.npmjs.org/lastname/0.3.31", + "0.3.37": "http://registry.npmjs.org/lastname/0.3.37" + }, + "dist": { + "0.2.6": { + "shasum": "61e18c31aa2d7561012582a9b68ff47119c5e394", + "tarball": "http://registry.npmjs.org/lastname/-/lastname-0.2.6.tgz" + }, + "0.3.19": { + "shasum": "243a61dee98ee67284e2436488ff21a7ea220836", + "tarball": "http://registry.npmjs.org/lastname/-/lastname-0.3.19.tgz" + }, + "0.3.21": { + "shasum": "f46f17009999f7b30322ffc87b81018401f3300c", + "tarball": "http://registry.npmjs.org/lastname/-/lastname-0.3.21.tgz" + }, + "0.3.31": { + "shasum": "e449c90ccec6fd1e776cf6053bcbee3f8ee2b56d", + "tarball": "http://registry.npmjs.org/lastname/-/lastname-0.3.31.tgz" + }, + "0.3.37": { + "shasum": "52c6002ea59012f32b7da4dd2c45b95edc706032", + "tarball": "http://registry.npmjs.org/lastname/-/lastname-0.3.37.tgz" + } + }, + "keywords": [ + "morphology", + "analysis" + ], + "url": "http://registry.npmjs.org/lastname/" + }, + "latLngCluster": { + "name": "latLngCluster", + "description": "Cluster Lat Lng points together based on pixel distance and zoom level", + "dist-tags": {}, + "maintainers": [ + { + "name": "markwillis82", + "email": "mark.w@immat.co.uk" + } + ], + "time": { + "modified": "2011-11-18T11:24:09.108Z", + "created": "2011-11-18T11:24:09.108Z" + }, + "versions": {}, + "dist": {}, + "url": "http://registry.npmjs.org/latLngCluster/" + }, + "launch": { + "name": "launch", + "description": "A command line deployment tool for sites/apps", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "# launch – app deployment for node.js\n\nlaunch is an application deployment framework, essentially a lean set\nof [jake](https://github.com/mde/jake) tasks for deploying node apps.\n\nCurrently it is tiny, but very extensible.\n\n## Installation\n\nlaunch is for use on projects that have a `package.json` file in the root\nto manage their dependencies.\n\nAdd launch as a devDependency to your `package.json`, eg:\n\n```js\n\"devDependencies\" : {\n \"launch\" : \">=0\"\n}\n```\n\nAnd then do\n \n cd /path/to/project && npm install\n\nSince launch is built on top of jake, you will need that too. It's best\nto install jake globally, so that the binary is in your path, so:\n\n npm install jake -g\n\nThe last thing to do is create a `Jakefile` in your project root. For now,\njust put the following:\n\n```js\nvar share = {},\n action = require('launch')(share).action;\n```\n\nTo test that launch and jake are installed correctly, do:\n \n jake -T\n\nThis should output a list the of namespaced launch tasks.\n\n## Usage\n\n**You should be familiar with jake**\n\nThe default set of tasks require a little bit of project metadata. In your\n`package.json`, put the following info:\n\n```js\n\"launchconf\" : {\n \"remote\" : \"host-name\",\n \"remotepath\" : \"/path/to/apps\"\n}\n```\n\nRun `jake launch:info` to make sure you've got this right.\n\nNow you're ready to create some of your own tasks for deployment. Here is an\nexample `Jakefile` that I currently use:\n\n```js\nvar share = {}, // Shared info between the\n // Jakefile tasks and the launch tasks\n action = require('launch')(share).action; // Get the launch actions,\n // passing in the shared var\n\n\n/*\n * Run with `jake deploylive`. Depends on `setenvlive` and `restart`\n * which are defined in this file, and `launch:installdeps` which is\n * provided by launch. The task itself is empty, the important things\n * are its dependencies being called in order.\n */\ndesc('Deploy the current branch to the live environment');\ntask('deploylive', ['setenvlive', 'launch:symlink', 'restart'], function () {\n});\n\n/*\n * Sets the optional enviroment on the shared object\n * to `live`, which is used by a launch task when operating\n * with the remote filesystem. This task depends on the\n * launch task `launch:info` to gather the remote info.\n */\ndesc('Sets the environment to live');\ntask('setenvlive', ['launch:info'], function () {\n share.env = 'live';\n});\n\n\n/*\n * A custom task of mine to restart the the site/app\n * (I use upstart). This shows how to execute an arbitrary\n * remote command with launch's `action`s.\n */\ndesc('Restarts the server given an `env`');\ntask('restart', function () {\n\n if (!share.env) {\n action.error('`env` is not set.');\n fail();\n }\n\n action.remote(share.info.remote,\n 'sudo stop site.' + share.info.name + '-' + share.env + ' && '\n + 'sudo start site.' + share.info.name + '-' + share.env, function (exitcode) {\n if (exitcode === 0) {\n action.notice('The site service restarted.');\n action.notice('Check manually to verify that the site is running.')\n } else {\n action.error('Failed to restart site');\n fail();\n }\n });\n\n}, true);\n```\n\nThat's it! Enjoy. Oh and here's the obligatory screenshot:\n\n![launch running](http://f.cl.ly/items/3K020K3K2C1v333e1q2S/Screen%20Shot%202011-12-09%20at%2023.34.58.png)\n\n\n## License\n\n(The MIT License)\n\nCopyright (c) 2011 Ben Gourley <benleighgourley@gmail.com>\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n", + "maintainers": [ + { + "name": "bengourley", + "email": "benleighgourley@gmail.com" + } + ], + "time": { + "modified": "2011-12-14T01:56:21.422Z", + "created": "2011-12-14T01:56:20.114Z", + "0.0.1": "2011-12-14T01:56:21.422Z" + }, + "author": { + "name": "Ben Gourley" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/launch/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "bed54644b55ca38f60dcd1faf1a7b868004c24ca", + "tarball": "http://registry.npmjs.org/launch/-/launch-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/launch/" + }, + "lavaK": { + "name": "lavaK", + "description": "A hotkey api for javascript", + "dist-tags": { + "latest": "0.1.41" + }, + "readme": "```\n ___ __ __ \n/\\_ \\ /\\ \\/\\ \\ \n\\//\\ \\ __ __ __ __ \\ \\ \\/'/' \n \\ \\ \\ /'__`\\ /\\ \\/\\ \\ /'__`\\ \\ \\ , < \n \\_\\ \\_/\\ \\L\\.\\_\\ \\ \\_/ |/\\ \\L\\.\\_\\ \\ \\\\`\\ \n /\\____\\ \\__/.\\_\\\\ \\___/ \\ \\__/.\\_\\\\ \\_\\ \\_\\\n \\/____/\\/__/\\/_/ \\/__/ \\/__/\\/_/ \\/_/\\/_/\n \n```\nHotkeys for for javascript with a simple api.\n\n## Api\nThe spec here is only suggestions. \n### hotkey.create vs new hotkey \nThis method makes it hard to reference a specific hotkey at a later time \n\n```javascript\nlavaK.create('ctrl+alt+f', find);\nlavaK.create('shift+c', function(){\n //compute\n //compute\n //compute\n})\n``` \n\nObject model:\n\n```javascript\nvar hotkey = new LavaK('ctrl+alt+f', find);\n``` \n### deactivating hotkey \n```javascript\nlavaK.deactivate('ctrl+alt+f')\n``` \nor: \n\n```javascript\nhotkey.deactivate()\n```\n\n#### Parameters \nParameter list as suggested\n\n```javascript\nlavaK.create(combo, fn)\n//example\nlavaK.create('ctrl+alt+f', function(){\n do stuff\n});\n```\n\nor:\n\n```javascript\nlavaK.create(options)\n//example\nlavaK.create({\n combo: 'ctrl+alt+f',\n fn: function(){\n do stuff\n }\n});\n```\n\n\nThe api is up for discussion. You may want to be able to activate and deactivate hotkeys. I think managing states in \nwhich they are active or deactivated is beyond the scope of the plugin. Lets keep it lightweight.", + "maintainers": [ + { + "name": "gorillatron", + "email": "jornandretangen@gmail.com" + } + ], + "time": { + "modified": "2011-11-22T16:10:06.562Z", + "created": "2011-11-13T20:51:46.190Z", + "0.1.0": "2011-11-13T20:51:48.163Z", + "0.1.1": "2011-11-13T20:59:53.198Z", + "0.1.2": "2011-11-13T21:14:11.828Z", + "0.1.3": "2011-11-13T22:06:18.114Z", + "0.1.31": "2011-11-14T12:02:29.597Z", + "0.1.4": "2011-11-22T16:08:44.584Z", + "0.1.41": "2011-11-22T16:10:06.562Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/andtan/lavaK.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/lavaK/0.1.0", + "0.1.1": "http://registry.npmjs.org/lavaK/0.1.1", + "0.1.2": "http://registry.npmjs.org/lavaK/0.1.2", + "0.1.3": "http://registry.npmjs.org/lavaK/0.1.3", + "0.1.31": "http://registry.npmjs.org/lavaK/0.1.31", + "0.1.4": "http://registry.npmjs.org/lavaK/0.1.4", + "0.1.41": "http://registry.npmjs.org/lavaK/0.1.41" + }, + "dist": { + "0.1.0": { + "shasum": "0233aa3b105c695cf472c9bf07e5fcdd62f034eb", + "tarball": "http://registry.npmjs.org/lavaK/-/lavaK-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "ce4048413ec3657376d81d321aeadcd0c2306c10", + "tarball": "http://registry.npmjs.org/lavaK/-/lavaK-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "e6b5ea372d0874ebcfd2d2bab48ea127921bb4f8", + "tarball": "http://registry.npmjs.org/lavaK/-/lavaK-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "82463ef924f40911d0f5f7cef65feec2f7fc3dda", + "tarball": "http://registry.npmjs.org/lavaK/-/lavaK-0.1.3.tgz" + }, + "0.1.31": { + "shasum": "eb6ade93c94167d298732152a7925505a99d7503", + "tarball": "http://registry.npmjs.org/lavaK/-/lavaK-0.1.31.tgz" + }, + "0.1.4": { + "shasum": "c9c90e6c721cb81d0c269c3e16f37ff4e293a8a4", + "tarball": "http://registry.npmjs.org/lavaK/-/lavaK-0.1.4.tgz" + }, + "0.1.41": { + "shasum": "7b3ae2e29292487f87746d11cc2ecc21df90ea45", + "tarball": "http://registry.npmjs.org/lavaK/-/lavaK-0.1.41.tgz" + } + }, + "keywords": [ + "ender", + "hotkeys", + "keyboard", + "shortcuts", + "events" + ], + "url": "http://registry.npmjs.org/lavaK/" + }, + "layers": { + "name": "layers", + "description": "A package to help layered architecture for node.js", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "edave", + "email": "dave@edave.net" + } + ], + "time": { + "modified": "2011-06-28T08:11:04.251Z", + "created": "2011-06-28T08:05:43.870Z", + "0.0.1": "2011-06-28T08:05:45.409Z", + "0.0.2": "2011-06-28T08:06:48.489Z", + "0.0.3": "2011-06-28T08:11:04.251Z" + }, + "author": { + "name": "Dave Elkan", + "email": "dave@edave.net", + "url": "http://www.edave.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/dave-elkan/layers.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/layers/0.0.1", + "0.0.2": "http://registry.npmjs.org/layers/0.0.2", + "0.0.3": "http://registry.npmjs.org/layers/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "a8783bd1c7cfac13b7d9868946b19dba92eb154b", + "tarball": "http://registry.npmjs.org/layers/-/layers-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "827a1682c9c044463c72586533189bc4f377807e", + "tarball": "http://registry.npmjs.org/layers/-/layers-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "3c9cae4686ccc3c76b4c4b1af7e17b6237c03d79", + "tarball": "http://registry.npmjs.org/layers/-/layers-0.0.3.tgz" + } + }, + "keywords": [ + "layers", + "layered", + "express", + "connect", + "web", + "mvc", + "architecture" + ], + "url": "http://registry.npmjs.org/layers/" + }, + "lazorse": { + "name": "lazorse", + "description": "The lazy programmers ReST service framework", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "grncdr", + "email": "glurgle@gmail.com" + } + ], + "time": { + "modified": "2011-12-11T19:50:42.598Z", + "created": "2011-10-31T18:52:50.785Z", + "0.0.1": "2011-10-31T18:52:52.044Z", + "0.0.2": "2011-10-31T20:20:21.689Z", + "0.1.0": "2011-12-07T06:34:45.055Z", + "0.1.2": "2011-12-09T07:51:08.827Z", + "0.1.3": "2011-12-09T08:00:28.740Z", + "0.1.4": "2011-12-11T19:50:42.598Z" + }, + "author": { + "name": "Stephen Sugden", + "email": "stephen@betsmartmedia.com", + "url": "www.betsmartmedia.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/BetSmartMedia/Lazorse.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/lazorse/0.0.1", + "0.0.2": "http://registry.npmjs.org/lazorse/0.0.2", + "0.1.0": "http://registry.npmjs.org/lazorse/0.1.0", + "0.1.2": "http://registry.npmjs.org/lazorse/0.1.2", + "0.1.3": "http://registry.npmjs.org/lazorse/0.1.3", + "0.1.4": "http://registry.npmjs.org/lazorse/0.1.4" + }, + "dist": { + "0.0.1": { + "shasum": "a192ae396ba93fc4ad29bca17e56080e25bc6d6b", + "tarball": "http://registry.npmjs.org/lazorse/-/lazorse-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "53af1464493ca1113beaa6e2c3f0b5bf1f7aa4cf", + "tarball": "http://registry.npmjs.org/lazorse/-/lazorse-0.0.2.tgz" + }, + "0.1.0": { + "shasum": "a4d270e401618242a6c37812eba76910e3198397", + "tarball": "http://registry.npmjs.org/lazorse/-/lazorse-0.1.0.tgz" + }, + "0.1.2": { + "shasum": "4d1d62dd2bd2a4fdf9d150e46e737088651819e6", + "tarball": "http://registry.npmjs.org/lazorse/-/lazorse-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "c9dd15754467d1ec3e140e651550b79eb8c2bea7", + "tarball": "http://registry.npmjs.org/lazorse/-/lazorse-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "2ce6a0990d666055f8e6e2ffa2fa964386d84e45", + "tarball": "http://registry.npmjs.org/lazorse/-/lazorse-0.1.4.tgz" + } + }, + "url": "http://registry.npmjs.org/lazorse/" + }, + "lazy": { + "name": "lazy", + "description": "Lazy lists for node", + "dist-tags": { + "latest": "1.0.7" + }, + "maintainers": [ + { + "name": "pkrumins", + "email": "peteris.krumins@gmail.com" + } + ], + "repository": { + "type": "git", + "url": "git://github.com/pkrumins/node-lazy.git" + }, + "time": { + "modified": "2011-09-25T09:07:42.441Z", + "created": "2011-02-21T08:09:56.292Z", + "1.0.0": "2011-02-21T08:09:56.292Z", + "1.0.1": "2011-02-21T08:09:56.292Z", + "1.0.2": "2011-02-21T08:09:56.292Z", + "1.0.3": "2011-02-21T08:09:56.292Z", + "1.0.4": "2011-02-21T08:09:56.292Z", + "1.0.5": "2011-06-06T23:49:43.187Z", + "1.0.6": "2011-06-26T20:36:54.173Z", + "1.0.7": "2011-09-25T09:07:42.441Z" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/lazy/1.0.0", + "1.0.1": "http://registry.npmjs.org/lazy/1.0.1", + "1.0.2": "http://registry.npmjs.org/lazy/1.0.2", + "1.0.3": "http://registry.npmjs.org/lazy/1.0.3", + "1.0.4": "http://registry.npmjs.org/lazy/1.0.4", + "1.0.5": "http://registry.npmjs.org/lazy/1.0.5", + "1.0.6": "http://registry.npmjs.org/lazy/1.0.6", + "1.0.7": "http://registry.npmjs.org/lazy/1.0.7" + }, + "dist": { + "1.0.0": { + "tarball": "http://packages:5984/lazy/-/lazy-1.0.0.tgz" + }, + "1.0.1": { + "tarball": "http://packages:5984/lazy/-/lazy-1.0.1.tgz" + }, + "1.0.2": { + "tarball": "http://packages:5984/lazy/-/lazy-1.0.2.tgz" + }, + "1.0.3": { + "tarball": "http://packages:5984/lazy/-/lazy-1.0.3.tgz" + }, + "1.0.4": { + "tarball": "http://registry.npmjs.org/lazy/-/lazy-1.0.4.tgz" + }, + "1.0.5": { + "shasum": "22a3674c10a33aa24b90d81f76f4b43181bfdd0c", + "tarball": "http://registry.npmjs.org/lazy/-/lazy-1.0.5.tgz" + }, + "1.0.6": { + "shasum": "80a13b5df544b97e38f31f942860b10cfec53dad", + "tarball": "http://registry.npmjs.org/lazy/-/lazy-1.0.6.tgz" + }, + "1.0.7": { + "shasum": "494297466a818f9064c0eb41cf36b125c8ed7c57", + "tarball": "http://registry.npmjs.org/lazy/-/lazy-1.0.7.tgz" + } + }, + "keywords": [ + "lazy" + ], + "url": "http://registry.npmjs.org/lazy/" + }, + "lazy-image": { + "name": "lazy-image", + "description": "An image compressing/resizing http server", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "zir", + "email": "zir.echo@gmail.com" + } + ], + "time": { + "modified": "2011-09-09T04:01:02.088Z", + "created": "2011-09-08T04:06:25.403Z", + "0.1.0": "2011-09-08T04:06:29.092Z", + "0.1.1": "2011-09-09T04:01:02.088Z" + }, + "author": { + "name": "Senmiao Liu", + "email": "zir.echo@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/zir/lazy-image.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/lazy-image/0.1.0", + "0.1.1": "http://registry.npmjs.org/lazy-image/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "a35b9194c666e00030037e1840f722f76ae55b7a", + "tarball": "http://registry.npmjs.org/lazy-image/-/lazy-image-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "f3c770ef0eb5a4c04762dca6aafd23313da7bf0a", + "tarball": "http://registry.npmjs.org/lazy-image/-/lazy-image-0.1.1.tgz" + } + }, + "keywords": [ + "image", + "mongodb", + "compress", + "resize", + "lossless", + "jpg", + "jpeg" + ], + "url": "http://registry.npmjs.org/lazy-image/" + }, + "lazy-socket": { + "name": "lazy-socket", + "description": "A stateless socket that always lets you write().", + "dist-tags": { + "latest": "0.0.3" + }, + "readme": "# lazy-socket\n\n[![Build Status](https://secure.travis-ci.org/felixge/node-lazy-socket.png)](http://travis-ci.org/felixge/node-lazy-socket)\n\nA stateless socket that always lets you write().\n\nIf there is an error, all previous `write()` callbacks will be honored. A new\nconnection will be established as soon as the next `write()` occurs. Writes\nwill not be retried.\n\n## Install\n\n```\nnpm install lazy-socket\n```\n\n## Usage\n\n```js\nvar LazySocket = require('lazy-socket');\nvar socket = LazySocket.createConnection(80, 'example.org');\nsocket.write('something', 'utf-8', function(err) {\n // Even if example.org is down, this callback is guaranteed to fire, and\n // there is no more error handling to do on your end.\n});\n```\n\n## License\n\nThis module is licensed under the MIT license.\n", + "maintainers": [ + { + "name": "felixge", + "email": "felix@debuggable.com" + } + ], + "time": { + "modified": "2011-11-18T09:03:48.978Z", + "created": "2011-11-17T17:09:54.885Z", + "0.0.1": "2011-11-17T17:09:56.343Z", + "0.0.2": "2011-11-18T08:23:54.079Z", + "0.0.3": "2011-11-18T09:03:48.978Z" + }, + "author": { + "name": "Felix Geisendörfer", + "email": "felix@debuggable.com", + "url": "http://debuggable.com/" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/lazy-socket/0.0.1", + "0.0.2": "http://registry.npmjs.org/lazy-socket/0.0.2", + "0.0.3": "http://registry.npmjs.org/lazy-socket/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "e067ed658a98c26dfb0ef26631f108834fc295c3", + "tarball": "http://registry.npmjs.org/lazy-socket/-/lazy-socket-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "e712e3dce9776554a632423d1d6f55d5ca0a9062", + "tarball": "http://registry.npmjs.org/lazy-socket/-/lazy-socket-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "218df9a580f1544d8bb84c3149df047ac0cffd3a", + "tarball": "http://registry.npmjs.org/lazy-socket/-/lazy-socket-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/lazy-socket/" + }, + "LazyBoy": { + "name": "LazyBoy", + "description": "A object document mapper for couchdb", + "dist-tags": { + "latest": "0.1.6" + }, + "maintainers": [ + { + "name": "garrensmith", + "email": "garren.smith@gmail.com" + } + ], + "time": { + "modified": "2011-11-11T12:05:50.292Z", + "created": "2011-08-02T15:10:09.022Z", + "0.1.0": "2011-08-02T15:10:13.129Z", + "0.1.1": "2011-08-03T12:56:08.156Z", + "0.1.2": "2011-08-03T19:02:53.069Z", + "0.1.3": "2011-08-17T14:26:03.983Z", + "0.1.4": "2011-09-11T19:44:37.701Z", + "0.1.5": "2011-09-13T19:12:58.305Z", + "0.1.6": "2011-11-11T12:05:50.292Z" + }, + "author": { + "name": "Garren Smith", + "email": "garren.smith@gmail.com", + "url": "www.garrensmith.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/garrensmith/lazyboy.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/LazyBoy/0.1.0", + "0.1.1": "http://registry.npmjs.org/LazyBoy/0.1.1", + "0.1.2": "http://registry.npmjs.org/LazyBoy/0.1.2", + "0.1.3": "http://registry.npmjs.org/LazyBoy/0.1.3", + "0.1.4": "http://registry.npmjs.org/LazyBoy/0.1.4", + "0.1.5": "http://registry.npmjs.org/LazyBoy/0.1.5", + "0.1.6": "http://registry.npmjs.org/LazyBoy/0.1.6" + }, + "dist": { + "0.1.0": { + "shasum": "eed27824292973b2114c38a25e8cc655be14d1b3", + "tarball": "http://registry.npmjs.org/LazyBoy/-/LazyBoy-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "2e6582d682ec59ebf3b95a359ff26f0cac53a60b", + "tarball": "http://registry.npmjs.org/LazyBoy/-/LazyBoy-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "6cb51e6a197be31dff6b5370d375fcc70f51ce9d", + "tarball": "http://registry.npmjs.org/LazyBoy/-/LazyBoy-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "99cff76df2edfb513dac0b884691bf1f3d1e1ae5", + "tarball": "http://registry.npmjs.org/LazyBoy/-/LazyBoy-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "4f5dc6910c3ceb2e7ad13cbbb87692556e31b97e", + "tarball": "http://registry.npmjs.org/LazyBoy/-/LazyBoy-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "5b7afc8f9304f3e797128131a40cdae84ffd3570", + "tarball": "http://registry.npmjs.org/LazyBoy/-/LazyBoy-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "ceb6e3b469891d0ec813f48a42350028ecd612bd", + "tarball": "http://registry.npmjs.org/LazyBoy/-/LazyBoy-0.1.6.tgz" + } + }, + "keywords": [ + "Couchdb", + "db", + "ORM", + "ODM", + "couch" + ], + "url": "http://registry.npmjs.org/LazyBoy/" + }, + "lazyBum": { + "name": "lazyBum", + "description": "A simple RESTful web framework for Node.js.", + "dist-tags": { + "latest": "0.4.11" + }, + "maintainers": [ + { + "name": "streets-ahead", + "email": "devs@streetsaheadllc.com" + } + ], + "time": { + "modified": "2011-12-05T05:11:02.270Z", + "created": "2011-09-20T20:18:13.429Z", + "0.4.0": "2011-09-20T20:18:13.946Z", + "0.4.1": "2011-09-20T21:05:00.755Z", + "0.4.2": "2011-09-20T22:12:28.816Z", + "0.4.3": "2011-09-20T22:21:34.568Z", + "0.4.5": "2011-09-20T22:46:30.902Z", + "0.4.6": "2011-09-20T22:50:00.589Z", + "0.4.7": "2011-09-22T01:32:28.460Z", + "0.4.8": "2011-10-05T13:08:52.932Z", + "0.4.9": "2011-10-08T16:16:35.318Z", + "0.5.0": "2011-11-29T02:13:42.799Z", + "0.4.10": "2011-12-04T22:20:57.610Z", + "0.4.11": "2011-12-05T05:11:02.270Z" + }, + "author": { + "name": "Streets Ahead LLC", + "email": "team@streetsaheadllc.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/streets-ahead/lazyBum.git" + }, + "versions": { + "0.4.0": "http://registry.npmjs.org/lazyBum/0.4.0", + "0.4.1": "http://registry.npmjs.org/lazyBum/0.4.1", + "0.4.2": "http://registry.npmjs.org/lazyBum/0.4.2", + "0.4.3": "http://registry.npmjs.org/lazyBum/0.4.3", + "0.4.5": "http://registry.npmjs.org/lazyBum/0.4.5", + "0.4.6": "http://registry.npmjs.org/lazyBum/0.4.6", + "0.4.7": "http://registry.npmjs.org/lazyBum/0.4.7", + "0.4.8": "http://registry.npmjs.org/lazyBum/0.4.8", + "0.4.9": "http://registry.npmjs.org/lazyBum/0.4.9", + "0.5.0": "http://registry.npmjs.org/lazyBum/0.5.0", + "0.4.10": "http://registry.npmjs.org/lazyBum/0.4.10", + "0.4.11": "http://registry.npmjs.org/lazyBum/0.4.11" + }, + "dist": { + "0.4.0": { + "shasum": "908c4d9c09e6ca341024b76367563a392196540e", + "tarball": "http://registry.npmjs.org/lazyBum/-/lazyBum-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "bb95f1cf185cb479c517b7d61138ab9781ebcfcd", + "tarball": "http://registry.npmjs.org/lazyBum/-/lazyBum-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "fe6c66e4bf9101d80c64760cc9e6405342dee03e", + "tarball": "http://registry.npmjs.org/lazyBum/-/lazyBum-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "2dac2c1a2c612478acf967ec43af54d08d1682b9", + "tarball": "http://registry.npmjs.org/lazyBum/-/lazyBum-0.4.3.tgz" + }, + "0.4.5": { + "shasum": "c04d7fa7679f3b9f3e85f907ceb0de8f41c12f21", + "tarball": "http://registry.npmjs.org/lazyBum/-/lazyBum-0.4.5.tgz" + }, + "0.4.6": { + "shasum": "34ba815368da65eb4cf1c7471e7dd141bf62d56b", + "tarball": "http://registry.npmjs.org/lazyBum/-/lazyBum-0.4.6.tgz" + }, + "0.4.7": { + "shasum": "b2199bb1a0051865b7040e9046d22949e63faa92", + "tarball": "http://registry.npmjs.org/lazyBum/-/lazyBum-0.4.7.tgz" + }, + "0.4.8": { + "shasum": "b5149e6212c79483d77910ecccb11e302202566a", + "tarball": "http://registry.npmjs.org/lazyBum/-/lazyBum-0.4.8.tgz" + }, + "0.4.9": { + "shasum": "cdc5c6369a33dfdf3e39891df81865a4609ddd8a", + "tarball": "http://registry.npmjs.org/lazyBum/-/lazyBum-0.4.9.tgz" + }, + "0.5.0": { + "shasum": "b092db5a42b3934c44b2b20d9a628d79d9654a53", + "tarball": "http://registry.npmjs.org/lazyBum/-/lazyBum-0.5.0.tgz" + }, + "0.4.10": { + "shasum": "5ec569cec6539e90e645ad4c28ae486f22d51629", + "tarball": "http://registry.npmjs.org/lazyBum/-/lazyBum-0.4.10.tgz" + }, + "0.4.11": { + "shasum": "0582f5185db966ccd98ace12b9091a297eb29cb7", + "tarball": "http://registry.npmjs.org/lazyBum/-/lazyBum-0.4.11.tgz" + } + }, + "keywords": [ + "REST", + "MVC", + "web framework", + "template", + "lazy", + "bum", + "Streets Ahead" + ], + "url": "http://registry.npmjs.org/lazyBum/" + }, + "lazyprop": { + "name": "lazyprop", + "description": "Lazy properties.", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "naitik", + "email": "n@daaku.org" + } + ], + "author": { + "name": "Naitik Shah", + "email": "n@daaku.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/nshah/nodejs-lazyprop.git" + }, + "time": { + "modified": "2011-08-17T21:09:19.806Z", + "created": "2011-02-25T03:17:31.431Z", + "0.0.1": "2011-02-25T03:17:31.431Z", + "0.0.2": "2011-02-25T03:17:31.431Z", + "0.0.3": "2011-04-18T02:28:09.208Z", + "1.0.0": "2011-07-27T17:42:23.693Z", + "1.0.1": "2011-08-17T21:09:19.806Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/lazyprop/0.0.1", + "0.0.2": "http://registry.npmjs.org/lazyprop/0.0.2", + "0.0.3": "http://registry.npmjs.org/lazyprop/0.0.3", + "1.0.0": "http://registry.npmjs.org/lazyprop/1.0.0", + "1.0.1": "http://registry.npmjs.org/lazyprop/1.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/lazyprop/-/lazyprop-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "61370147c72a7d0217f010f93579e47115e1675d", + "tarball": "http://registry.npmjs.org/lazyprop/-/lazyprop-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "3e6255406328d04d4be3e5539555339a826289d9", + "tarball": "http://registry.npmjs.org/lazyprop/-/lazyprop-0.0.3.tgz" + }, + "1.0.0": { + "shasum": "a07305fd2c2adf8185ac1f11fcfbbb67fbeccb27", + "tarball": "http://registry.npmjs.org/lazyprop/-/lazyprop-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "404610d66e68e040ce3f52f1d1bc78b212dec5a3", + "tarball": "http://registry.npmjs.org/lazyprop/-/lazyprop-1.0.1.tgz" + } + }, + "keywords": [ + "utils" + ], + "url": "http://registry.npmjs.org/lazyprop/" + }, + "ldapjs": { + "name": "ldapjs", + "description": "LDAP client and server APIs", + "dist-tags": { + "latest": "0.3.6" + }, + "maintainers": [ + { + "name": "mcavage", + "email": "mcavage@gmail.com" + } + ], + "time": { + "modified": "2011-12-13T01:12:04.023Z", + "created": "2011-08-25T04:48:12.877Z", + "0.1.0": "2011-08-25T04:48:13.462Z", + "0.1.1": "2011-08-26T23:36:54.773Z", + "0.1.2": "2011-09-03T02:08:51.105Z", + "0.1.3": "2011-09-19T19:25:11.768Z", + "0.1.4": "2011-09-22T00:35:48.160Z", + "0.1.5": "2011-09-23T16:02:48.701Z", + "0.1.6": "2011-09-26T20:48:14.771Z", + "0.1.7": "2011-09-27T20:19:55.173Z", + "0.1.8": "2011-09-29T17:39:42.100Z", + "0.1.9": "2011-09-30T17:49:35.009Z", + "0.2.0": "2011-10-12T20:35:17.970Z", + "0.2.1": "2011-10-17T23:39:17.775Z", + "0.2.2": "2011-10-18T15:51:08.013Z", + "0.2.3": "2011-10-18T17:15:36.757Z", + "0.2.4": "2011-10-18T19:32:39.834Z", + "0.2.5": "2011-10-18T23:26:53.531Z", + "0.2.6": "2011-10-20T18:22:59.404Z", + "0.2.7": "2011-11-09T00:23:36.088Z", + "0.2.8": "2011-11-09T22:58:13.246Z", + "0.3.0": "2011-11-12T01:12:55.201Z", + "0.3.1": "2011-11-14T17:52:53.478Z", + "0.3.2": "2011-11-19T00:40:07.056Z", + "0.3.3": "2011-11-22T21:38:23.770Z", + "0.3.4": "2011-11-28T18:40:13.113Z", + "0.3.5": "2011-12-13T00:19:40.223Z", + "0.3.6": "2011-12-13T01:12:04.023Z" + }, + "author": { + "name": "Mark Cavage", + "email": "mcavage@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mcavage/node-ldapjs.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/ldapjs/0.1.0", + "0.1.1": "http://registry.npmjs.org/ldapjs/0.1.1", + "0.1.2": "http://registry.npmjs.org/ldapjs/0.1.2", + "0.1.3": "http://registry.npmjs.org/ldapjs/0.1.3", + "0.1.4": "http://registry.npmjs.org/ldapjs/0.1.4", + "0.1.5": "http://registry.npmjs.org/ldapjs/0.1.5", + "0.1.6": "http://registry.npmjs.org/ldapjs/0.1.6", + "0.1.7": "http://registry.npmjs.org/ldapjs/0.1.7", + "0.1.8": "http://registry.npmjs.org/ldapjs/0.1.8", + "0.1.9": "http://registry.npmjs.org/ldapjs/0.1.9", + "0.2.0": "http://registry.npmjs.org/ldapjs/0.2.0", + "0.2.1": "http://registry.npmjs.org/ldapjs/0.2.1", + "0.2.2": "http://registry.npmjs.org/ldapjs/0.2.2", + "0.2.3": "http://registry.npmjs.org/ldapjs/0.2.3", + "0.2.4": "http://registry.npmjs.org/ldapjs/0.2.4", + "0.2.5": "http://registry.npmjs.org/ldapjs/0.2.5", + "0.2.6": "http://registry.npmjs.org/ldapjs/0.2.6", + "0.2.7": "http://registry.npmjs.org/ldapjs/0.2.7", + "0.2.8": "http://registry.npmjs.org/ldapjs/0.2.8", + "0.3.0": "http://registry.npmjs.org/ldapjs/0.3.0", + "0.3.1": "http://registry.npmjs.org/ldapjs/0.3.1", + "0.3.2": "http://registry.npmjs.org/ldapjs/0.3.2", + "0.3.3": "http://registry.npmjs.org/ldapjs/0.3.3", + "0.3.4": "http://registry.npmjs.org/ldapjs/0.3.4", + "0.3.5": "http://registry.npmjs.org/ldapjs/0.3.5", + "0.3.6": "http://registry.npmjs.org/ldapjs/0.3.6" + }, + "dist": { + "0.1.0": { + "shasum": "2b18a78c77be63abebc2c5e99d58ef4f391f0ddb", + "tarball": "http://registry.npmjs.org/ldapjs/-/ldapjs-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "3e9b444a045d66f6f4726eccacd03da5c483d5c1", + "tarball": "http://registry.npmjs.org/ldapjs/-/ldapjs-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "c84f30d54a15bb2f94bb415b86c047355a92925b", + "tarball": "http://registry.npmjs.org/ldapjs/-/ldapjs-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "9fd276524f1ba9afaf29bf3ed80b3e3b000aad06", + "tarball": "http://registry.npmjs.org/ldapjs/-/ldapjs-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "30cda5690b4dd48add7905a45f8e5ec307c15c5f", + "tarball": "http://registry.npmjs.org/ldapjs/-/ldapjs-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "3e856c5584ce50110c295eacf2b688771c3fafe5", + "tarball": "http://registry.npmjs.org/ldapjs/-/ldapjs-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "ec8b5eb122e0365eb6cea5af91ba02a9bc9d2a7c", + "tarball": "http://registry.npmjs.org/ldapjs/-/ldapjs-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "4486c6ff98c699ef8b4cecdf3f311a18ff1ea2cb", + "tarball": "http://registry.npmjs.org/ldapjs/-/ldapjs-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "0413d30ebdabfa00e7c2cf1bb44eae4edf6bc6e6", + "tarball": "http://registry.npmjs.org/ldapjs/-/ldapjs-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "faf324cc480cd01ef1abf1ddb12f52c5c014fae2", + "tarball": "http://registry.npmjs.org/ldapjs/-/ldapjs-0.1.9.tgz" + }, + "0.2.0": { + "shasum": "4b259d531989f0ba06d7b909e795e5f96710c910", + "tarball": "http://registry.npmjs.org/ldapjs/-/ldapjs-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "9a836c906fa7283566e00cb8a1fa1078e01893dd", + "tarball": "http://registry.npmjs.org/ldapjs/-/ldapjs-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "800fb000bc05b20b19b56704a72ed55128c24bcb", + "tarball": "http://registry.npmjs.org/ldapjs/-/ldapjs-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "94fd64f82526cafdee1acd3c6c850be8639bf434", + "tarball": "http://registry.npmjs.org/ldapjs/-/ldapjs-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "160b19d8e5c3e85606159c2aa02fde8e89c284ae", + "tarball": "http://registry.npmjs.org/ldapjs/-/ldapjs-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "48489e4616da7c452741b73d5d0cf3788a6d4117", + "tarball": "http://registry.npmjs.org/ldapjs/-/ldapjs-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "3d754442b5f564839c575d48fea379dc09a2fe09", + "tarball": "http://registry.npmjs.org/ldapjs/-/ldapjs-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "7ff1644f2620a5eb37b24b2c663723cbece765be", + "tarball": "http://registry.npmjs.org/ldapjs/-/ldapjs-0.2.7.tgz" + }, + "0.2.8": { + "shasum": "10c08de3d8a6c2a5521fc88b97d8a08b2e41489b", + "tarball": "http://registry.npmjs.org/ldapjs/-/ldapjs-0.2.8.tgz" + }, + "0.3.0": { + "shasum": "8863b102ac33354dc46e93ddda85ca7b17420d80", + "tarball": "http://registry.npmjs.org/ldapjs/-/ldapjs-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "002855353be841eeea9242172e9a672cba996ecd", + "tarball": "http://registry.npmjs.org/ldapjs/-/ldapjs-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "eb0e94c9f3a538aa391123454ed7c8fe6113e454", + "tarball": "http://registry.npmjs.org/ldapjs/-/ldapjs-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "2cce9479ff9bf5b3532fc6cf47e3e2a82b7946a8", + "tarball": "http://registry.npmjs.org/ldapjs/-/ldapjs-0.3.3.tgz" + }, + "0.3.4": { + "shasum": "fdb8321ebb72aadea8a97d5066fc0ecdb83a5d50", + "tarball": "http://registry.npmjs.org/ldapjs/-/ldapjs-0.3.4.tgz" + }, + "0.3.5": { + "shasum": "e0027e9a278c5c72d1e019a55b63f3e8994720a5", + "tarball": "http://registry.npmjs.org/ldapjs/-/ldapjs-0.3.5.tgz" + }, + "0.3.6": { + "shasum": "371b5dbacb3b39a2f9dd5b41d2bf055acc662603", + "tarball": "http://registry.npmjs.org/ldapjs/-/ldapjs-0.3.6.tgz" + } + }, + "url": "http://registry.npmjs.org/ldapjs/" + }, + "ldapjs-riak": { + "name": "ldapjs-riak", + "description": "A Riak backend for ldapjs (server).", + "dist-tags": { + "latest": "0.1.20" + }, + "maintainers": [ + { + "name": "mcavage", + "email": "mcavage@gmail.com" + } + ], + "time": { + "modified": "2011-11-22T23:29:50.673Z", + "created": "2011-08-25T04:55:11.361Z", + "0.1.0": "2011-08-25T04:55:11.942Z", + "0.1.1": "2011-08-29T22:04:10.386Z", + "0.1.2": "2011-09-22T20:36:25.512Z", + "0.1.3": "2011-09-23T23:08:38.277Z", + "0.1.4": "2011-09-27T21:51:31.445Z", + "0.1.5": "2011-09-29T16:12:43.049Z", + "0.1.6": "2011-10-11T21:11:11.725Z", + "0.1.7": "2011-10-18T15:48:35.853Z", + "0.1.8": "2011-10-20T17:54:47.702Z", + "0.1.9": "2011-10-21T01:31:39.665Z", + "0.1.10": "2011-10-22T22:13:34.607Z", + "0.1.12": "2011-11-08T19:49:55.984Z", + "0.1.13": "2011-11-09T17:07:37.686Z", + "0.1.14": "2011-11-09T23:00:19.866Z", + "0.1.15": "2011-11-14T16:55:19.189Z", + "0.1.16": "2011-11-18T00:22:37.668Z", + "0.1.17": "2011-11-18T05:40:18.665Z", + "0.1.18": "2011-11-18T21:40:19.852Z", + "0.1.19": "2011-11-22T21:41:30.060Z", + "0.1.20": "2011-11-22T23:29:50.673Z" + }, + "author": { + "name": "Mark Cavage", + "email": "mcavage@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mcavage/node-ldapjs-riak.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/ldapjs-riak/0.1.0", + "0.1.1": "http://registry.npmjs.org/ldapjs-riak/0.1.1", + "0.1.2": "http://registry.npmjs.org/ldapjs-riak/0.1.2", + "0.1.3": "http://registry.npmjs.org/ldapjs-riak/0.1.3", + "0.1.4": "http://registry.npmjs.org/ldapjs-riak/0.1.4", + "0.1.5": "http://registry.npmjs.org/ldapjs-riak/0.1.5", + "0.1.6": "http://registry.npmjs.org/ldapjs-riak/0.1.6", + "0.1.7": "http://registry.npmjs.org/ldapjs-riak/0.1.7", + "0.1.8": "http://registry.npmjs.org/ldapjs-riak/0.1.8", + "0.1.9": "http://registry.npmjs.org/ldapjs-riak/0.1.9", + "0.1.10": "http://registry.npmjs.org/ldapjs-riak/0.1.10", + "0.1.12": "http://registry.npmjs.org/ldapjs-riak/0.1.12", + "0.1.13": "http://registry.npmjs.org/ldapjs-riak/0.1.13", + "0.1.14": "http://registry.npmjs.org/ldapjs-riak/0.1.14", + "0.1.15": "http://registry.npmjs.org/ldapjs-riak/0.1.15", + "0.1.16": "http://registry.npmjs.org/ldapjs-riak/0.1.16", + "0.1.17": "http://registry.npmjs.org/ldapjs-riak/0.1.17", + "0.1.18": "http://registry.npmjs.org/ldapjs-riak/0.1.18", + "0.1.19": "http://registry.npmjs.org/ldapjs-riak/0.1.19", + "0.1.20": "http://registry.npmjs.org/ldapjs-riak/0.1.20" + }, + "dist": { + "0.1.0": { + "shasum": "9d6ac98c984fa2b9488473e6528dfadb5f7c506f", + "tarball": "http://registry.npmjs.org/ldapjs-riak/-/ldapjs-riak-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "f78b6cd4404b41ef2037341467d8d010f458a166", + "tarball": "http://registry.npmjs.org/ldapjs-riak/-/ldapjs-riak-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "dbcd84064b8fe54299b99127295a40670c43167b", + "tarball": "http://registry.npmjs.org/ldapjs-riak/-/ldapjs-riak-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "b71113f8826a1a21a4037115f40024c51a268d3e", + "tarball": "http://registry.npmjs.org/ldapjs-riak/-/ldapjs-riak-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "38da3511d7ee75839df098cfc3dc7a66602cfd8e", + "tarball": "http://registry.npmjs.org/ldapjs-riak/-/ldapjs-riak-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "ff68dd28e4ca30dba2f116eaf6c5bf2bff9b1a11", + "tarball": "http://registry.npmjs.org/ldapjs-riak/-/ldapjs-riak-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "b4a89a9ed1350d76399d2d7fea029c0bc94f194d", + "tarball": "http://registry.npmjs.org/ldapjs-riak/-/ldapjs-riak-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "66c274b5407805846f0736174e98744d647cdd59", + "tarball": "http://registry.npmjs.org/ldapjs-riak/-/ldapjs-riak-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "e40517ab2b89aaa09480db87aea64de6f7d673ed", + "tarball": "http://registry.npmjs.org/ldapjs-riak/-/ldapjs-riak-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "eeb0490586677510cde37f7bf029888f209d1f6b", + "tarball": "http://registry.npmjs.org/ldapjs-riak/-/ldapjs-riak-0.1.9.tgz" + }, + "0.1.10": { + "shasum": "0526b5c4179f6648e2af9780ce50313152a039af", + "tarball": "http://registry.npmjs.org/ldapjs-riak/-/ldapjs-riak-0.1.10.tgz" + }, + "0.1.12": { + "shasum": "03c444d9195352fced09b9bb0f143458bb4c5b28", + "tarball": "http://registry.npmjs.org/ldapjs-riak/-/ldapjs-riak-0.1.12.tgz" + }, + "0.1.13": { + "shasum": "eca8d75fc622c74034c29945265ee8a6c04d2cc9", + "tarball": "http://registry.npmjs.org/ldapjs-riak/-/ldapjs-riak-0.1.13.tgz" + }, + "0.1.14": { + "shasum": "b22d230328129b3cfb50e0f3fa0a945003327178", + "tarball": "http://registry.npmjs.org/ldapjs-riak/-/ldapjs-riak-0.1.14.tgz" + }, + "0.1.15": { + "shasum": "c254a92fbd18f200050d6b608504968323815e9b", + "tarball": "http://registry.npmjs.org/ldapjs-riak/-/ldapjs-riak-0.1.15.tgz" + }, + "0.1.16": { + "shasum": "0ca79f184b9c3fbed3246afbd52ba4d214b65f67", + "tarball": "http://registry.npmjs.org/ldapjs-riak/-/ldapjs-riak-0.1.16.tgz" + }, + "0.1.17": { + "shasum": "3231f6356ab540f857fa430257637710dd4c8af6", + "tarball": "http://registry.npmjs.org/ldapjs-riak/-/ldapjs-riak-0.1.17.tgz" + }, + "0.1.18": { + "shasum": "03d040f59ee27020962f4608afb36c6487c9bc42", + "tarball": "http://registry.npmjs.org/ldapjs-riak/-/ldapjs-riak-0.1.18.tgz" + }, + "0.1.19": { + "shasum": "7e505f637c405c80d9a52135a2a6ff7a752c2f2f", + "tarball": "http://registry.npmjs.org/ldapjs-riak/-/ldapjs-riak-0.1.19.tgz" + }, + "0.1.20": { + "shasum": "0b9355959ae68483db8f5e9a9bccb1d82ca34ac3", + "tarball": "http://registry.npmjs.org/ldapjs-riak/-/ldapjs-riak-0.1.20.tgz" + } + }, + "url": "http://registry.npmjs.org/ldapjs-riak/" + }, + "ldifgrep": { + "name": "ldifgrep", + "description": "Quick-and-dirty grep for LDIF", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "msiebuhr", + "email": "sbhr@sbhr.dk" + } + ], + "time": { + "modified": "2011-09-01T13:50:52.135Z", + "created": "2011-09-01T13:50:50.771Z", + "0.0.1": "2011-09-01T13:50:52.135Z" + }, + "author": { + "name": "Morten Siebuhr", + "email": "sbhr@sbhr.dk" + }, + "repository": { + "type": "git", + "url": "git://github.com/msiebuhr/node-ldifgrep.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ldifgrep/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "e470a678fc242296382432e64d759e4fe2e1f27e", + "tarball": "http://registry.npmjs.org/ldifgrep/-/ldifgrep-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/ldifgrep/" + }, + "leaf": { + "name": "leaf", + "description": "Object Mapper for MongoDB on Node", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "colladow", + "email": "colladow@me.com" + } + ], + "author": { + "name": "Wilson Collado", + "email": "colladow@me.com" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/leaf/0.0.3", + "0.0.4": "http://registry.npmjs.org/leaf/0.0.4" + }, + "dist": { + "0.0.3": { + "tarball": "http://packages:5984/leaf/-/leaf-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://packages:5984/leaf/-/leaf-0.0.4.tgz" + } + }, + "keywords": [ + "leaf", + "mongo", + "mongodb", + "orm", + "nosql", + "node" + ], + "url": "http://registry.npmjs.org/leaf/" + }, + "lean": { + "name": "lean", + "description": "A super simple and fast in-memory data store. For when couch and other nosql solutions are more than you need.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "dylang", + "email": "dylang@gmail.com" + } + ], + "time": { + "modified": "2011-10-28T19:13:38.507Z", + "created": "2011-04-05T02:23:36.139Z", + "0.1.0": "2011-04-05T02:23:36.804Z", + "0.1.1": "2011-10-28T19:13:38.507Z" + }, + "author": { + "name": "Dylan Greene", + "email": "dylang@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dylang/lean.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/lean/0.1.0", + "0.1.1": "http://registry.npmjs.org/lean/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "bdef105c81dc0a001ea552e2be764cb106014282", + "tarball": "http://registry.npmjs.org/lean/-/lean-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "8ed8510cfc1b3f34cd87d318f0aeb646d0779c32", + "tarball": "http://registry.npmjs.org/lean/-/lean-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/lean/" + }, + "leche": { + "name": "leche", + "description": "MVC to help build single-page apps which can also be served statically", + "dist-tags": { + "latest": "0.0.7" + }, + "maintainers": [ + { + "name": "architectd", + "email": "craig.j.condon@gmail.com" + } + ], + "time": { + "modified": "2011-12-10T23:26:16.149Z", + "created": "2011-08-20T04:58:26.671Z", + "0.0.1": "2011-08-20T04:58:26.882Z", + "0.0.2": "2011-09-12T05:20:25.588Z", + "0.0.3": "2011-09-19T02:20:29.906Z", + "0.0.4": "2011-10-01T00:55:03.703Z", + "0.0.5": "2011-11-20T01:12:59.231Z", + "0.0.6": "2011-12-10T20:12:56.542Z", + "0.0.7": "2011-12-10T23:26:16.149Z" + }, + "author": { + "name": "Craig Condon" + }, + "repository": { + "type": "git", + "url": "git://github.com/crcn/leche.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/leche/0.0.1", + "0.0.2": "http://registry.npmjs.org/leche/0.0.2", + "0.0.3": "http://registry.npmjs.org/leche/0.0.3", + "0.0.4": "http://registry.npmjs.org/leche/0.0.4", + "0.0.5": "http://registry.npmjs.org/leche/0.0.5", + "0.0.6": "http://registry.npmjs.org/leche/0.0.6", + "0.0.7": "http://registry.npmjs.org/leche/0.0.7" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/leche/-/leche-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "e744955b1c13e342a7cf49dd8a3cf3efa7a28c33", + "tarball": "http://registry.npmjs.org/leche/-/leche-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "e8c899575bfd1b21e55503b9e67039136442c082", + "tarball": "http://registry.npmjs.org/leche/-/leche-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "94bca33598276ad15fe1935d04a5735a47b31119", + "tarball": "http://registry.npmjs.org/leche/-/leche-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "14f1040867a053d32db5d745d770f85712cc4f0d", + "tarball": "http://registry.npmjs.org/leche/-/leche-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "f350a7f9881c860219a848ecd6bbff95dcf2987b", + "tarball": "http://registry.npmjs.org/leche/-/leche-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "4f42a0c3b0ec5bb48872d0c14dedd9f6daa2a66a", + "tarball": "http://registry.npmjs.org/leche/-/leche-0.0.7.tgz" + } + }, + "url": "http://registry.npmjs.org/leche/" + }, + "leche.core": { + "name": "leche.core", + "description": "core libraries required by leche", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "architectd", + "email": "craig.j.condon@gmail.com" + } + ], + "time": { + "modified": "2011-11-30T18:55:23.252Z", + "created": "2011-10-01T01:07:49.117Z", + "0.0.1": "2011-10-01T01:07:49.763Z", + "0.0.2": "2011-10-01T20:39:38.128Z", + "0.0.3": "2011-11-21T20:27:50.111Z", + "0.0.4": "2011-11-30T18:55:23.252Z" + }, + "author": { + "name": "Craig Condon" + }, + "repository": { + "type": "git", + "url": "git://github.com/crcn/leche.core.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/leche.core/0.0.1", + "0.0.2": "http://registry.npmjs.org/leche.core/0.0.2", + "0.0.3": "http://registry.npmjs.org/leche.core/0.0.3", + "0.0.4": "http://registry.npmjs.org/leche.core/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "a6a5b9ffb8d12aefc5634e15701a8a98b9ba5a64", + "tarball": "http://registry.npmjs.org/leche.core/-/leche.core-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "6cef185008f1c4d7d063bfc34f27db8ed93b7a86", + "tarball": "http://registry.npmjs.org/leche.core/-/leche.core-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "33018696814f4ff484e105be62daa15ec6492299", + "tarball": "http://registry.npmjs.org/leche.core/-/leche.core-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "ad7610fec3965042d40d7001d55869678f6353cd", + "tarball": "http://registry.npmjs.org/leche.core/-/leche.core-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/leche.core/" + }, + "leche.spice.io": { + "name": "leche.spice.io", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "architectd", + "email": "craig.j.condon@gmail.com" + } + ], + "time": { + "modified": "2011-12-13T00:06:12.290Z", + "created": "2011-10-01T01:07:50.868Z", + "0.0.1": "2011-10-01T01:07:51.494Z", + "0.0.2": "2011-11-14T22:33:23.524Z", + "0.0.3": "2011-11-30T18:54:48.976Z", + "0.0.4": "2011-12-13T00:06:12.290Z" + }, + "author": { + "name": "Craig Condon" + }, + "repository": { + "type": "git", + "url": "git://github.com/crcn/leche.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/leche.spice.io/0.0.1", + "0.0.2": "http://registry.npmjs.org/leche.spice.io/0.0.2", + "0.0.3": "http://registry.npmjs.org/leche.spice.io/0.0.3", + "0.0.4": "http://registry.npmjs.org/leche.spice.io/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "c2d1fca4f0aea2920b2030a49710b71140932a88", + "tarball": "http://registry.npmjs.org/leche.spice.io/-/leche.spice.io-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "22c94e10477e21be6e8e4af213fa16aea2d7b1a2", + "tarball": "http://registry.npmjs.org/leche.spice.io/-/leche.spice.io-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "2dfc701380a5069441d49006961b70fffa2eadf9", + "tarball": "http://registry.npmjs.org/leche.spice.io/-/leche.spice.io-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "a157bcface3ceed83e074998d26ec6a0239b3b7f", + "tarball": "http://registry.npmjs.org/leche.spice.io/-/leche.spice.io-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/leche.spice.io/" + }, + "lemma": { + "name": "lemma", + "description": "Wrapper for ESTMOFR to find lemmas for estonian words", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "# Lemma\n\n**lemma** finds canonical forms of estonian language words. This is a wrapper for ESTMORF.EXE\n\n## Installation\n\n npm install lemma\n\n## Usage\n\n**lemma(words, callback)** where\n\n * **words** is a single word (a string) or a set of words (an array)\n * **callback** is the return callback with two parameters - `err` if there was an error and `lemmas` which is an object in the form of `{\"word\":[\"lemma1\", \"lemma2\"]}`\n\nExample:\n\n var lemma = require(\"lemma\");\n\n lemma(\"vanamehed\", function(err, lemmas){\n console.log(lemmas[\"vanamehed\"]); // [ 'vanamees', 'vana', 'mees', 'mesi' ]\n });\n\n## License\n\n**MIT**", + "maintainers": [ + { + "name": "andris", + "email": "andris@node.ee" + } + ], + "time": { + "modified": "2011-11-23T15:20:28.942Z", + "created": "2011-11-23T15:20:27.187Z", + "0.1.0": "2011-11-23T15:20:28.942Z" + }, + "author": { + "name": "Andris Reinman" + }, + "repository": { + "type": "git", + "url": "git://github.com/andris9/lemma.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/lemma/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "6557b013ae9ea7799a854b5e59c5c4c9c0080e6a", + "tarball": "http://registry.npmjs.org/lemma/-/lemma-0.1.0.tgz" + } + }, + "keywords": [ + "lemma", + "estmorf" + ], + "url": "http://registry.npmjs.org/lemma/" + }, + "less": { + "name": "less", + "description": "Leaner CSS", + "dist-tags": { + "latest": "1.1.6" + }, + "maintainers": [ + { + "name": "cloudhead", + "email": "self@cloudhead.net" + } + ], + "author": { + "name": "Alexis Sellier", + "email": "self@cloudhead.net" + }, + "time": { + "modified": "2011-12-10T13:20:53.491Z", + "created": "2011-01-23T22:28:07.815Z", + "1.0.10": "2011-01-23T22:28:07.815Z", + "1.0.11": "2011-01-23T22:28:07.815Z", + "1.0.14": "2011-01-23T22:28:07.815Z", + "1.0.18": "2011-01-23T22:28:07.815Z", + "1.0.19": "2011-01-23T22:28:07.815Z", + "1.0.21": "2011-01-23T22:28:07.815Z", + "1.0.32": "2011-01-23T22:28:07.815Z", + "1.0.36": "2011-01-23T22:28:07.815Z", + "1.0.5": "2011-01-23T22:28:07.816Z", + "1.0.40": "2011-01-23T22:28:07.816Z", + "1.0.41": "2011-01-23T22:28:07.816Z", + "1.0.44": "2011-05-10T14:05:51.397Z", + "1.1.0": "2011-05-11T19:49:37.162Z", + "1.1.1": "2011-05-18T00:54:06.341Z", + "1.1.2": "2011-05-24T20:46:53.915Z", + "1.1.4": "2011-07-19T23:10:19.340Z", + "1.1.5": "2011-11-14T11:02:34.213Z", + "1.1.6": "2011-12-10T13:20:53.491Z" + }, + "users": { + "pid": true + }, + "versions": { + "1.0.10": "http://registry.npmjs.org/less/1.0.10", + "1.0.11": "http://registry.npmjs.org/less/1.0.11", + "1.0.14": "http://registry.npmjs.org/less/1.0.14", + "1.0.18": "http://registry.npmjs.org/less/1.0.18", + "1.0.19": "http://registry.npmjs.org/less/1.0.19", + "1.0.21": "http://registry.npmjs.org/less/1.0.21", + "1.0.32": "http://registry.npmjs.org/less/1.0.32", + "1.0.36": "http://registry.npmjs.org/less/1.0.36", + "1.0.5": "http://registry.npmjs.org/less/1.0.5", + "1.0.40": "http://registry.npmjs.org/less/1.0.40", + "1.0.41": "http://registry.npmjs.org/less/1.0.41", + "1.0.44": "http://registry.npmjs.org/less/1.0.44", + "1.1.0": "http://registry.npmjs.org/less/1.1.0", + "1.1.1": "http://registry.npmjs.org/less/1.1.1", + "1.1.2": "http://registry.npmjs.org/less/1.1.2", + "1.1.4": "http://registry.npmjs.org/less/1.1.4", + "1.1.5": "http://registry.npmjs.org/less/1.1.5", + "1.1.6": "http://registry.npmjs.org/less/1.1.6" + }, + "dist": { + "1.0.10": { + "tarball": "http://packages:5984/less/-/less-1.0.10.tgz" + }, + "1.0.11": { + "tarball": "http://packages:5984/less/-/less-1.0.11.tgz" + }, + "1.0.14": { + "tarball": "http://packages:5984/less/-/less-1.0.14.tgz" + }, + "1.0.18": { + "tarball": "http://packages:5984/less/-/less-1.0.18.tgz" + }, + "1.0.19": { + "tarball": "http://packages:5984/less/-/less-1.0.19.tgz" + }, + "1.0.21": { + "tarball": "http://packages:5984/less/-/less-1.0.21.tgz" + }, + "1.0.32": { + "tarball": "http://packages:5984/less/-/less-1.0.32.tgz" + }, + "1.0.36": { + "tarball": "http://packages:5984/less/-/less-1.0.36.tgz" + }, + "1.0.5": { + "tarball": "http://packages:5984/less/-/less-1.0.5.tgz" + }, + "1.0.40": { + "tarball": "http://registry.npmjs.org/less/-/less-1.0.40.tgz" + }, + "1.0.41": { + "shasum": "c108f97a105887d6559be8ed6a0ce922c58da1bf", + "tarball": "http://registry.npmjs.org/less/-/less-1.0.41.tgz" + }, + "1.0.44": { + "shasum": "f5438d1955e1bfbc3beae4f4266907de9a721ccb", + "tarball": "http://registry.npmjs.org/less/-/less-1.0.44.tgz" + }, + "1.1.0": { + "shasum": "7c7dbdf1541158bf525d51a8eb8357400b72c888", + "tarball": "http://registry.npmjs.org/less/-/less-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "7bda147c7cdb16f1fc638ca59f2a29e21f7b20f1", + "tarball": "http://registry.npmjs.org/less/-/less-1.1.1.tgz" + }, + "1.1.2": { + "shasum": "be31f2285d8534ef7a2b48532f0727eb190bdde9", + "tarball": "http://registry.npmjs.org/less/-/less-1.1.2.tgz" + }, + "1.1.4": { + "shasum": "cbc5714f77ff209d89db569cb01dc4b7266de135", + "tarball": "http://registry.npmjs.org/less/-/less-1.1.4.tgz" + }, + "1.1.5": { + "shasum": "802e9ceedd6b221bae57e1adb930eeb9efd31d6a", + "tarball": "http://registry.npmjs.org/less/-/less-1.1.5.tgz" + }, + "1.1.6": { + "shasum": "9609e99324286bd7049bc35649e997b6f90fcc78", + "tarball": "http://registry.npmjs.org/less/-/less-1.1.6.tgz" + } + }, + "keywords": [ + "css", + "parser", + "lesscss", + "browser" + ], + "url": "http://registry.npmjs.org/less/" + }, + "less-bal": { + "name": "less-bal", + "description": "Leaner CSS", + "dist-tags": { + "latest": "1.1.4" + }, + "maintainers": [ + { + "name": "balupton", + "email": "b@lupton.cc" + } + ], + "time": { + "modified": "2011-07-01T14:26:31.170Z", + "created": "2011-07-01T14:26:29.670Z", + "1.1.4": "2011-07-01T14:26:31.170Z" + }, + "author": { + "name": "Alexis Sellier", + "email": "self@cloudhead.net" + }, + "versions": { + "1.1.4": "http://registry.npmjs.org/less-bal/1.1.4" + }, + "dist": { + "1.1.4": { + "shasum": "a366aa6529ea4cdf6aa938b2b17c57cf3c950b98", + "tarball": "http://registry.npmjs.org/less-bal/-/less-bal-1.1.4.tgz" + } + }, + "keywords": [ + "css", + "parser", + "lesscss", + "browser" + ], + "url": "http://registry.npmjs.org/less-bal/" + }, + "less-clean": { + "name": "less-clean", + "description": "Leaner CSS", + "dist-tags": { + "latest": "1.1.5-pre" + }, + "maintainers": [ + { + "name": "oneofone", + "email": "oneofone@gmail.com" + } + ], + "time": { + "modified": "2011-11-03T03:32:30.041Z", + "created": "2011-11-03T03:32:27.972Z", + "1.1.5-pre": "2011-11-03T03:32:30.041Z" + }, + "versions": { + "1.1.5-pre": "http://registry.npmjs.org/less-clean/1.1.5-pre" + }, + "dist": { + "1.1.5-pre": { + "shasum": "25325267ef4699a60ae4ce4bb06123c2cedb2d44", + "tarball": "http://registry.npmjs.org/less-clean/-/less-clean-1.1.5-pre.tgz" + } + }, + "keywords": [ + "css", + "parser", + "lesscss", + "browser" + ], + "url": "http://registry.npmjs.org/less-clean/" + }, + "less4clients": { + "name": "less4clients", + "description": "Express.js extension to render LessCSS (.less) files server-side :)", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "balupton", + "email": "b@lupton.cc" + } + ], + "time": { + "modified": "2011-07-05T02:18:22.776Z", + "created": "2011-07-05T01:43:36.966Z", + "0.1.0": "2011-07-05T01:43:38.474Z", + "0.1.1": "2011-07-05T02:18:22.776Z" + }, + "author": { + "name": "Benjamin Lupton", + "email": "b@lupton.cc", + "url": "http://balupton.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/balupton/less4clients.npm.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/less4clients/0.1.0", + "0.1.1": "http://registry.npmjs.org/less4clients/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "c4c466a352a8a2d846f11d45a46057aee389712d", + "tarball": "http://registry.npmjs.org/less4clients/-/less4clients-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "673d62b6bfc0fc114c713623cd96f3a3438bd51f", + "tarball": "http://registry.npmjs.org/less4clients/-/less4clients-0.1.1.tgz" + } + }, + "keywords": [ + "javascript", + "coffeescript", + "compile", + "server", + "expressjs" + ], + "url": "http://registry.npmjs.org/less4clients/" + }, + "lessup": { + "name": "lessup", + "description": "Lessup yer app. Auto-compile & generate less files.", + "dist-tags": { + "latest": "0.2.5" + }, + "maintainers": [ + { + "name": "mwalker", + "email": "matt@modernexperience.com" + } + ], + "time": { + "modified": "2011-05-18T02:01:17.645Z", + "created": "2011-05-01T23:17:32.373Z", + "0.2.1": "2011-05-01T23:17:32.628Z", + "0.2.2": "2011-05-09T17:36:51.568Z", + "0.2.3": "2011-05-09T17:47:41.500Z", + "0.2.5": "2011-05-18T02:01:17.645Z" + }, + "author": { + "name": "Matt Walker", + "email": "matt@modernexperience.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/MattWalker/lessup.git" + }, + "versions": { + "0.2.1": "http://registry.npmjs.org/lessup/0.2.1", + "0.2.2": "http://registry.npmjs.org/lessup/0.2.2", + "0.2.3": "http://registry.npmjs.org/lessup/0.2.3", + "0.2.5": "http://registry.npmjs.org/lessup/0.2.5" + }, + "dist": { + "0.2.1": { + "shasum": "39fa65140ef44b0018f2259cadcfb84a662c9c77", + "tarball": "http://registry.npmjs.org/lessup/-/lessup-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "579ec729a43e7f8badd8922ce439c4ca9251884e", + "tarball": "http://registry.npmjs.org/lessup/-/lessup-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "23afd57d9c7753d14bb0d25550beddbe68b034bc", + "tarball": "http://registry.npmjs.org/lessup/-/lessup-0.2.3.tgz" + }, + "0.2.5": { + "shasum": "1a54ae113f3b00b66b228d4d666003dc428fb50a", + "tarball": "http://registry.npmjs.org/lessup/-/lessup-0.2.5.tgz" + } + }, + "keywords": [ + "css", + "less", + "lesscss", + "auto-compile" + ], + "url": "http://registry.npmjs.org/lessup/" + }, + "lessweb": { + "name": "lessweb", + "description": "Less.js Converter", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "brendoncrawford", + "email": "npm@aphexcreations.net" + } + ], + "time": { + "modified": "2011-06-24T23:25:04.999Z", + "created": "2011-06-24T05:34:57.283Z", + "0.0.1": "2011-06-24T05:34:57.865Z", + "0.0.2": "2011-06-24T23:06:56.550Z" + }, + "author": { + "name": "Brendon Crawford" + }, + "repository": { + "type": "git", + "url": "git://github.com/last/lessweb.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/lessweb/0.0.1", + "0.0.2": "http://registry.npmjs.org/lessweb/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "4e3494b28da8015b9b0b1fa013b97d1f8f074ec5", + "tarball": "http://registry.npmjs.org/lessweb/-/lessweb-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "463d804ac391153cd31ccc46bf5a34d19e58ab13", + "tarball": "http://registry.npmjs.org/lessweb/-/lessweb-0.0.2.tgz" + } + }, + "keywords": [ + "less", + "less.js", + "lesscss", + "lessjs" + ], + "url": "http://registry.npmjs.org/lessweb/" + }, + "leveldb": { + "name": "leveldb", + "description": "Bindings for using LevelDB through node.", + "dist-tags": { + "latest": "0.4.0" + }, + "maintainers": [ + { + "name": "my8bird", + "email": "my8bird@gmail.com" + } + ], + "time": { + "modified": "2011-12-10T01:55:07.101Z", + "created": "2011-08-22T02:03:45.698Z", + "0.1.0": "2011-08-22T02:03:46.538Z", + "0.2.0": "2011-08-30T12:06:50.508Z", + "0.3.5": "2011-08-31T03:08:31.716Z", + "0.4.0": "2011-12-10T01:55:07.101Z" + }, + "author": { + "name": "Nathan Landis", + "email": "my8bird@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/my8bird/node-leveldb.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/leveldb/0.1.0", + "0.2.0": "http://registry.npmjs.org/leveldb/0.2.0", + "0.3.5": "http://registry.npmjs.org/leveldb/0.3.5", + "0.4.0": "http://registry.npmjs.org/leveldb/0.4.0" + }, + "dist": { + "0.1.0": { + "shasum": "2b2dd35dd8e9ae02917fe309ab4c7f3d1f6d830f", + "tarball": "http://registry.npmjs.org/leveldb/-/leveldb-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "4cfcb5e0e937f0f57f2046e1a08d4cef6e92a9c8", + "tarball": "http://registry.npmjs.org/leveldb/-/leveldb-0.2.0.tgz" + }, + "0.3.5": { + "shasum": "4bf97e4553f4df78453342cc24c7a96daa1705dc", + "tarball": "http://registry.npmjs.org/leveldb/-/leveldb-0.3.5.tgz" + }, + "0.4.0": { + "shasum": "4482e131d4ad56d1d623be2a9f31efca808c8b1f", + "tarball": "http://registry.npmjs.org/leveldb/-/leveldb-0.4.0.tgz" + } + }, + "keywords": [ + "database", + "leveldb" + ], + "url": "http://registry.npmjs.org/leveldb/" + }, + "levenshtein": { + "name": "levenshtein", + "description": "Javascript implementation of the L-diggity.", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "gf3", + "email": "gianni@runlevel6.org" + } + ], + "author": { + "name": "Gianni Chiappetta", + "email": "gianni@runlevel6.org", + "url": "http://gf3.ca" + }, + "repository": { + "type": "git", + "url": "http://github.com/gf3/Levenshtein.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/levenshtein/1.0.0" + }, + "dist": { + "1.0.0": { + "tarball": "http://packages:5984/levenshtein/-/levenshtein-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/levenshtein/" + }, + "lexer": { + "name": "lexer", + "description": "Simple lexer that can be used both server side or client side (browserify)", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "shfx", + "email": "shfx@shfx.pl" + } + ], + "time": { + "modified": "2011-10-27T13:07:58.540Z", + "created": "2011-10-27T13:07:56.954Z", + "0.1.1": "2011-10-27T13:07:58.540Z" + }, + "author": { + "name": "Marcin Wiśniowski", + "email": "shfx@shfx.pl", + "url": "http://shfx.pl" + }, + "repository": { + "type": "git", + "url": "git://github.com/shfx/node-lexer.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/lexer/0.1.1" + }, + "dist": { + "0.1.1": { + "shasum": "4f94d9afed76c12a41764a6424ab299b53c96fde", + "tarball": "http://registry.npmjs.org/lexer/-/lexer-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/lexer/" + }, + "lib": { + "name": "lib", + "description": "Require all of your modules on one line", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "cohara87", + "email": "cohara87@gmail.com" + } + ], + "time": { + "modified": "2011-01-16T09:33:55.162Z", + "created": "2011-01-16T09:26:03.382Z", + "0.1.0": "2011-01-16T09:26:04.693Z", + "0.1.1": "2011-01-16T09:33:55.162Z" + }, + "author": { + "name": "Chris O'Hara", + "email": "cohara87@gmail.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/chriso/node-lib.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/lib/0.1.0", + "0.1.1": "http://registry.npmjs.org/lib/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "ad540615d398efed3c56fb924aa8cd60938acd0f", + "tarball": "http://registry.npmjs.org/lib/-/lib-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "dca7aca7d1a044ecb77b4a842a06042772247098", + "tarball": "http://registry.npmjs.org/lib/-/lib-0.1.1.tgz" + } + }, + "keywords": [ + "load", + "modules", + "require" + ], + "url": "http://registry.npmjs.org/lib/" + }, + "libdtrace": { + "name": "libdtrace", + "description": "Solaris libdtrace bindings", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "time": { + "modified": "2011-04-15T21:23:14.458Z", + "created": "2011-03-16T04:38:32.851Z", + "0.0.1": "2011-03-16T04:38:33.201Z" + }, + "author": { + "name": "Joyent", + "url": "joyent.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/libdtrace/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "2c0587b047f2aabd95dc5ea4e7bcce483d2a4bd6", + "tarball": "http://registry.npmjs.org/libdtrace/-/libdtrace-0.0.1.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "9f96fc1e8b4d7eebff8892d28b3c4aadb6566b84", + "tarball": "http://registry.npmjs.org/libdtrace/-/libdtrace-0.0.1-0.4-sunos-5.11.tgz" + } + } + } + }, + "url": "http://registry.npmjs.org/libdtrace/" + }, + "liberator": { + "name": "liberator", + "description": "liberator your npm packages -- and put them in web libraries!", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "tomw", + "email": "tom@banksimple.com" + } + ], + "time": { + "modified": "2011-06-28T03:11:08.571Z", + "created": "2011-06-22T02:30:20.883Z", + "0.0.1": "2011-06-22T02:30:22.012Z", + "0.0.2": "2011-06-22T02:47:32.911Z", + "0.0.3": "2011-06-28T03:11:08.571Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/tomwans/liberator.git" + }, + "author": { + "name": "Thomas Wanielista", + "email": "tom@banksimple.com", + "url": "http://tomwanielista.com/" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/liberator/0.0.1", + "0.0.2": "http://registry.npmjs.org/liberator/0.0.2", + "0.0.3": "http://registry.npmjs.org/liberator/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "713b19f8294fa61c3be2693d66c27a4e39f5eeba", + "tarball": "http://registry.npmjs.org/liberator/-/liberator-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "8c3dd87bdeb8fc43c421b6d82cb9123272794f68", + "tarball": "http://registry.npmjs.org/liberator/-/liberator-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "cb9f13af87ace852053beb7a104ff24c458982e2", + "tarball": "http://registry.npmjs.org/liberator/-/liberator-0.0.3.tgz" + } + }, + "keywords": [ + "libraries" + ], + "url": "http://registry.npmjs.org/liberator/" + }, + "libirc": { + "name": "libirc", + "description": "node.js binding for libircclient library", + "dist-tags": { + "latest": "0.0.2b" + }, + "maintainers": [ + { + "name": "dixel", + "email": "dixelt@gmail.com" + } + ], + "time": { + "modified": "2011-06-06T10:01:46.045Z", + "created": "2011-06-06T09:58:33.827Z", + "0.0.1b": "2011-06-06T09:58:34.521Z", + "0.0.2b": "2011-06-06T10:01:46.045Z" + }, + "author": { + "name": "Vasiliy Avdiushkin", + "email": "dixelt@gmail.com", + "url": "dixel.blogspot.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dixel/node-irc.git" + }, + "versions": { + "0.0.1b": "http://registry.npmjs.org/libirc/0.0.1b", + "0.0.2b": "http://registry.npmjs.org/libirc/0.0.2b" + }, + "dist": { + "0.0.1b": { + "shasum": "152b69f964e9afa52cc74deab8868d4dc3f6c510", + "tarball": "http://registry.npmjs.org/libirc/-/libirc-0.0.1b.tgz" + }, + "0.0.2b": { + "shasum": "565e2ba9ef150c5673bf4dc43e19e2e24b30f535", + "tarball": "http://registry.npmjs.org/libirc/-/libirc-0.0.2b.tgz" + } + }, + "url": "http://registry.npmjs.org/libirc/" + }, + "liblzg": { + "name": "liblzg", + "description": "fast compression and decompression lib, as provided by liblzg written by Marcus Geelnard", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "acarvalho", + "email": "ajscarvalho@gmail.com" + } + ], + "time": { + "modified": "2011-05-24T23:36:26.568Z", + "created": "2011-05-24T16:22:40.508Z", + "1.0.0": "2011-05-24T16:22:40.897Z", + "1.0.1": "2011-05-24T23:36:26.568Z" + }, + "author": { + "name": "Alexandre Amaral de Carvalho", + "email": "ajscarvalho@gmail.com", + "url": "http://alexandre.amaraldecarvalho.eu/" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/liblzg/1.0.0", + "1.0.1": "http://registry.npmjs.org/liblzg/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "d5f9b24f744dd3494e7d53a2fde9518c495be9a6", + "tarball": "http://registry.npmjs.org/liblzg/-/liblzg-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "439027e138a4530553b1b729c2bf8fc1dc0cf0bc", + "tarball": "http://registry.npmjs.org/liblzg/-/liblzg-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/liblzg/" + }, + "libnotify": { + "name": "libnotify", + "description": "libnotify unobtrusive notifications", + "dist-tags": { + "latest": "1.0.2" + }, + "maintainers": [ + { + "name": "mytrile", + "email": "mitko.kostov@gmail.com" + } + ], + "repository": { + "type": "git", + "url": "git://github.com/mitkok/node-libnotify.git" + }, + "time": { + "modified": "2011-04-07T17:53:20.848Z", + "created": "2011-04-07T17:16:52.947Z", + "1.0.1": "2011-04-07T17:16:52.947Z", + "1.0.2": "2011-04-07T17:53:20.848Z" + }, + "author": { + "name": "Mitko Kostov", + "email": "mitko.kostov@gmail.com", + "url": "http://fireinside.me" + }, + "versions": { + "1.0.1": "http://registry.npmjs.org/libnotify/1.0.1", + "1.0.2": "http://registry.npmjs.org/libnotify/1.0.2" + }, + "dist": { + "1.0.1": { + "tarball": "http://packages:5984/libnotify/-/libnotify-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "d013c95909ee855049bd89aa336686f41ce40394", + "tarball": "http://registry.npmjs.org/libnotify/-/libnotify-1.0.2.tgz" + } + }, + "keywords": [ + "libnotify", + "notify" + ], + "url": "http://registry.npmjs.org/libnotify/" + }, + "libravatar": { + "name": "libravatar", + "description": "Libravatar node.js library", + "dist-tags": { + "latest": "1.1.0" + }, + "maintainers": [ + { + "name": "fmarier", + "email": "francois@fmarier.org" + } + ], + "time": { + "modified": "2011-11-19T23:12:59.488Z", + "created": "2011-10-17T09:43:43.046Z", + "1.0.1": "2011-10-17T09:43:46.138Z", + "1.1.0": "2011-11-19T23:12:59.488Z" + }, + "author": { + "name": "Francois Marier", + "email": "francois@libravatar.org", + "url": "http://fmarier.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/fmarier/node-libravatar.git" + }, + "versions": { + "1.0.1": "http://registry.npmjs.org/libravatar/1.0.1", + "1.1.0": "http://registry.npmjs.org/libravatar/1.1.0" + }, + "dist": { + "1.0.1": { + "shasum": "1ce8194381ccafc53d68254831e2ef06e79a6497", + "tarball": "http://registry.npmjs.org/libravatar/-/libravatar-1.0.1.tgz" + }, + "1.1.0": { + "shasum": "b84547b0c089e48f02e73a5c477082fb350eec2f", + "tarball": "http://registry.npmjs.org/libravatar/-/libravatar-1.1.0.tgz" + } + }, + "keywords": [ + "libravatar", + "avatar", + "federated", + "package.json" + ], + "url": "http://registry.npmjs.org/libravatar/" + }, + "libxml": { + "name": "libxml", + "description": "libxml2 wrapper for node.js", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "fjakobs", + "email": "fabian.jakobs@web.de" + } + ], + "time": { + "modified": "2011-11-03T14:01:44.918Z", + "created": "2011-11-01T13:56:06.402Z", + "0.0.1": "2011-11-01T13:56:08.566Z", + "0.0.2": "2011-11-03T14:01:44.918Z" + }, + "author": { + "name": "ajax.org B.V.", + "email": "info@ajax.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/ajaxorg/node-libxml.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/libxml/0.0.1", + "0.0.2": "http://registry.npmjs.org/libxml/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "1afa408d7323a4a125b1dbe6755f70da12520843", + "tarball": "http://registry.npmjs.org/libxml/-/libxml-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "2fe0c797fd92c78aa0cb1219e5dc17fd7687abe9", + "tarball": "http://registry.npmjs.org/libxml/-/libxml-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/libxml/" + }, + "libxml-to-js": { + "name": "libxml-to-js", + "description": "XML to JavaScript object parser based on libxmljs", + "dist-tags": { + "latest": "0.3.9" + }, + "maintainers": [ + { + "name": "saltwaterc", + "email": "saltwaterc@gmail.com" + } + ], + "time": { + "modified": "2011-12-05T12:06:27.351Z", + "created": "2011-06-29T07:04:10.409Z", + "0.1.0": "2011-06-29T07:04:11.656Z", + "0.2.0": "2011-07-07T13:02:40.992Z", + "0.2.1": "2011-07-19T07:01:30.384Z", + "0.2.2": "2011-08-02T15:44:22.329Z", + "0.3.0": "2011-08-11T09:16:30.414Z", + "0.3.1": "2011-08-11T15:18:58.063Z", + "0.3.2": "2011-08-12T07:20:13.655Z", + "0.3.3": "2011-08-12T08:21:29.016Z", + "0.3.4": "2011-08-26T12:41:31.322Z", + "0.3.5": "2011-09-20T14:04:22.584Z", + "0.3.6": "2011-09-21T08:06:28.422Z", + "0.3.7": "2011-09-22T07:10:28.522Z", + "0.3.8": "2011-10-17T12:53:42.326Z", + "0.3.9": "2011-12-05T12:06:27.351Z" + }, + "author": { + "name": "Stefan Rusu", + "url": "http://www.saltwaterc.eu/" + }, + "repository": { + "type": "git", + "url": "git://github.com/SaltwaterC/libxml-to-js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/libxml-to-js/0.1.0", + "0.2.0": "http://registry.npmjs.org/libxml-to-js/0.2.0", + "0.2.1": "http://registry.npmjs.org/libxml-to-js/0.2.1", + "0.2.2": "http://registry.npmjs.org/libxml-to-js/0.2.2", + "0.3.0": "http://registry.npmjs.org/libxml-to-js/0.3.0", + "0.3.1": "http://registry.npmjs.org/libxml-to-js/0.3.1", + "0.3.2": "http://registry.npmjs.org/libxml-to-js/0.3.2", + "0.3.3": "http://registry.npmjs.org/libxml-to-js/0.3.3", + "0.3.4": "http://registry.npmjs.org/libxml-to-js/0.3.4", + "0.3.5": "http://registry.npmjs.org/libxml-to-js/0.3.5", + "0.3.6": "http://registry.npmjs.org/libxml-to-js/0.3.6", + "0.3.7": "http://registry.npmjs.org/libxml-to-js/0.3.7", + "0.3.8": "http://registry.npmjs.org/libxml-to-js/0.3.8", + "0.3.9": "http://registry.npmjs.org/libxml-to-js/0.3.9" + }, + "dist": { + "0.1.0": { + "shasum": "9b1ea8fe23864a93437e0f0d15be131c7777f99c", + "tarball": "http://registry.npmjs.org/libxml-to-js/-/libxml-to-js-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "d52491b7a8f250862b393bf40c377717ae18540c", + "tarball": "http://registry.npmjs.org/libxml-to-js/-/libxml-to-js-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "694547a1996a4a19bd6e9e7e9bab294db5c6ec3a", + "tarball": "http://registry.npmjs.org/libxml-to-js/-/libxml-to-js-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "a5f05f669b7d2116198dd73fa90fc9a29fc3e982", + "tarball": "http://registry.npmjs.org/libxml-to-js/-/libxml-to-js-0.2.2.tgz" + }, + "0.3.0": { + "shasum": "e9adca367841935897613c1b228c72b48be21459", + "tarball": "http://registry.npmjs.org/libxml-to-js/-/libxml-to-js-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "02b6e520d87f6636d1eddbb41ccd5bbd0a89b8ff", + "tarball": "http://registry.npmjs.org/libxml-to-js/-/libxml-to-js-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "81f8dd52d33907978871fcebeaa72d3e9e696a7a", + "tarball": "http://registry.npmjs.org/libxml-to-js/-/libxml-to-js-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "8cf56550b7e9254ae3a1f395924361e26a02275d", + "tarball": "http://registry.npmjs.org/libxml-to-js/-/libxml-to-js-0.3.3.tgz" + }, + "0.3.4": { + "shasum": "d00992f32ca2be0879aeff92cddf9c3f0afff3a1", + "tarball": "http://registry.npmjs.org/libxml-to-js/-/libxml-to-js-0.3.4.tgz" + }, + "0.3.5": { + "shasum": "a0b98c3b27e6d711e99330decdcfbe143ed0ecf5", + "tarball": "http://registry.npmjs.org/libxml-to-js/-/libxml-to-js-0.3.5.tgz" + }, + "0.3.6": { + "shasum": "060f93a74d4ebd7a4f7bb28f255723524cb5d8f5", + "tarball": "http://registry.npmjs.org/libxml-to-js/-/libxml-to-js-0.3.6.tgz" + }, + "0.3.7": { + "shasum": "ae49c99a79f01005f740cf5c7e570eac41af99c8", + "tarball": "http://registry.npmjs.org/libxml-to-js/-/libxml-to-js-0.3.7.tgz" + }, + "0.3.8": { + "shasum": "d83c9ab63f756928b2feda21d2704b08345b120d", + "tarball": "http://registry.npmjs.org/libxml-to-js/-/libxml-to-js-0.3.8.tgz" + }, + "0.3.9": { + "shasum": "b8dea545f6c4c1e9c6f38852e323c2dc16fe9bd8", + "tarball": "http://registry.npmjs.org/libxml-to-js/-/libxml-to-js-0.3.9.tgz" + } + }, + "keywords": [ + "xml", + "javascript", + "object", + "parser", + "libxml", + "libxmljs", + "namespace", + "cdata", + "xpath" + ], + "url": "http://registry.npmjs.org/libxml-to-js/" + }, + "libxmlext": { + "name": "libxmlext", + "description": "Extensions to libxmljs to add CSS XPath selectors", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "eugeneware", + "email": "eugene@noblesamurai.com" + } + ], + "author": { + "name": "Marco Rogers" + }, + "repository": { + "type": "git", + "url": "http://github.com/noblesamurai/libxmlext.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/libxmlext/1.0.0" + }, + "dist": { + "1.0.0": { + "tarball": "http://registry.npmjs.org/libxmlext/-/libxmlext-v1.0.0.tgz" + } + }, + "keywords": [ + "libxmljs", + "xml" + ], + "url": "http://registry.npmjs.org/libxmlext/" + }, + "libxmljs": { + "name": "libxmljs", + "description": "libxml bindings for v8 javascript engine", + "dist-tags": { + "latest": "0.4.2" + }, + "maintainers": [ + { + "name": "polotek", + "email": "marco.rogers@gmail.com" + } + ], + "author": { + "name": "Marco Rogers - http://github.com/polotek" + }, + "repository": { + "type": "git", + "url": "git://github.com/polotek/libxmljs.git" + }, + "time": { + "modified": "2011-11-14T21:56:22.287Z", + "created": "2011-06-04T20:56:17.166Z", + "0.4.1": "2011-06-04T20:56:17.166Z", + "0.4.2": "2011-06-04T20:56:17.166Z" + }, + "users": { + "astro": true + }, + "versions": { + "0.4.1": "http://registry.npmjs.org/libxmljs/0.4.1", + "0.4.2": "http://registry.npmjs.org/libxmljs/0.4.2" + }, + "dist": { + "0.4.1": { + "tarball": "http://registry.npmjs.org/libxmljs/-/libxmljs-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "999e0733aeea6381a8a79ae5cfb88071cc31762f", + "tarball": "http://registry.npmjs.org/libxmljs/-/libxmljs-0.4.2.tgz" + } + }, + "url": "http://registry.npmjs.org/libxmljs/" + }, + "libxpm": { + "name": "libxpm", + "description": "render xpm images to teh web", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "bsdf", + "email": "EMAILBEN145@gmail.com" + } + ], + "time": { + "modified": "2011-06-06T15:02:14.328Z", + "created": "2011-06-06T15:02:12.939Z", + "0.0.1": "2011-06-06T15:02:14.328Z" + }, + "author": { + "name": "bsdf" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/libxpm/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "b596f4b682465a718cc8605375982599e39c5a60", + "tarball": "http://registry.npmjs.org/libxpm/-/libxpm-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/libxpm/" + }, + "libyaml": { + "name": "libyaml", + "description": "Bindings to libYAML", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "stephank", + "email": "stephan@kochen.nl" + } + ], + "time": { + "modified": "2011-11-03T07:43:14.759Z", + "created": "2011-07-18T19:29:29.135Z", + "0.0.1": "2011-07-18T19:29:29.636Z", + "0.0.2": "2011-08-27T16:19:19.371Z", + "0.0.3": "2011-10-28T18:21:11.223Z", + "0.0.4": "2011-11-03T07:43:14.759Z" + }, + "author": { + "name": "Stéphan Kochen", + "email": "stephan@kochen.nl", + "url": "http://stephan.kochen.nl/" + }, + "repository": { + "type": "git", + "url": "git://github.com/stephank/yaml.node.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/libyaml/0.0.1", + "0.0.2": "http://registry.npmjs.org/libyaml/0.0.2", + "0.0.3": "http://registry.npmjs.org/libyaml/0.0.3", + "0.0.4": "http://registry.npmjs.org/libyaml/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "c8e859447f3fd2d0b678eab7d0aaf6bdbaf6991b", + "tarball": "http://registry.npmjs.org/libyaml/-/libyaml-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f94ffad39104487dddad7c1dcccd1a06d4a3763c", + "tarball": "http://registry.npmjs.org/libyaml/-/libyaml-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "315e3aece9f772129968f6cdad4451c84691e7cd", + "tarball": "http://registry.npmjs.org/libyaml/-/libyaml-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "df15ea530087308a81ee3eaa189708715c843de3", + "tarball": "http://registry.npmjs.org/libyaml/-/libyaml-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/libyaml/" + }, + "life": { + "name": "life", + "description": "An artificial life simulation in node.", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "# node-life - Get a life\n\n[![Build Status](https://secure.travis-ci.org/antz29/node-life.png)](http://travis-ci.org/#!/antz29/node-life)\n\n## Installation\n\n npm install life -g \n\n## What's it do?\n\nAn artificial life simulation written in node. Just starting this so not quite sure how it will all work yet! \nBasically thinking that 'life' is the 'world' and you create 'lifeforms' that communicate with the world through\na RESTful interface. By default it will be rendered to the terminal but in theory you could render it any way \nyou liked.\n\n## Usage\n\n Spin up the 'world'\n > life\n\n## Bugs\n\nSee .\n", + "maintainers": [ + { + "name": "antz29", + "email": "jp@antz29.com" + } + ], + "time": { + "modified": "2011-11-17T04:55:19.536Z", + "created": "2011-11-17T04:55:17.816Z", + "0.0.1": "2011-11-17T04:55:19.536Z" + }, + "author": { + "name": "John Le Drew", + "email": "jp@antz29.com", + "url": "http://antz29.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/antz29/node-life.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/life/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "605f57836a9fe0c039f67d0ddb3b4376503b4733", + "tarball": "http://registry.npmjs.org/life/-/life-0.0.1.tgz" + } + }, + "keywords": [ + "artificial", + "life", + "simulation" + ], + "url": "http://registry.npmjs.org/life/" + }, + "lift": { + "name": "lift", + "description": "lifting code to the client: dual side templating made easy", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "dodo", + "email": "dodo@blacksec.org" + } + ], + "time": { + "modified": "2011-11-29T14:16:04.749Z", + "created": "2011-07-01T10:35:26.636Z", + "0.0.0": "2011-07-01T10:35:27.429Z", + "0.0.1": "2011-07-02T18:51:25.419Z", + "0.0.2": "2011-07-03T02:16:19.562Z", + "0.0.3": "2011-07-16T08:08:28.532Z", + "0.0.4": "2011-07-18T14:20:12.583Z", + "0.0.5": "2011-07-18T15:11:59.134Z", + "0.0.6": "2011-07-18T21:37:00.787Z", + "0.0.7": "2011-07-18T22:04:15.215Z", + "0.0.8": "2011-08-13T12:43:10.466Z", + "0.1.0": "2011-08-24T12:56:10.970Z", + "0.1.1": "2011-11-29T14:16:04.749Z" + }, + "author": { + "name": "dodo", + "url": "https://github.com/dodo" + }, + "repository": { + "type": "git", + "url": "git://github.com/dodo/node-lift.git" + }, + "users": { + "astro": true + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/lift/0.0.0", + "0.0.1": "http://registry.npmjs.org/lift/0.0.1", + "0.0.2": "http://registry.npmjs.org/lift/0.0.2", + "0.0.3": "http://registry.npmjs.org/lift/0.0.3", + "0.0.4": "http://registry.npmjs.org/lift/0.0.4", + "0.0.5": "http://registry.npmjs.org/lift/0.0.5", + "0.0.6": "http://registry.npmjs.org/lift/0.0.6", + "0.0.7": "http://registry.npmjs.org/lift/0.0.7", + "0.0.8": "http://registry.npmjs.org/lift/0.0.8", + "0.1.0": "http://registry.npmjs.org/lift/0.1.0", + "0.1.1": "http://registry.npmjs.org/lift/0.1.1" + }, + "dist": { + "0.0.0": { + "shasum": "afe802b206de37a41b8c44a757e641c2fc6f862e", + "tarball": "http://registry.npmjs.org/lift/-/lift-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "b7ced72b179a88e77dbcb1ed79a039fc73d64c65", + "tarball": "http://registry.npmjs.org/lift/-/lift-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "739421896f7a75b5ab9c832d50c660290a300300", + "tarball": "http://registry.npmjs.org/lift/-/lift-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "b029d585856aa5e456991c9f67682a468b08a7a9", + "tarball": "http://registry.npmjs.org/lift/-/lift-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "47ee13fa3a633ff91f051542233172c0f1b78523", + "tarball": "http://registry.npmjs.org/lift/-/lift-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "81ae384dbbeb850db064dc2791e3a6753ef62772", + "tarball": "http://registry.npmjs.org/lift/-/lift-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "e8c6d58174139bc77ea1b89601fe532429e28fed", + "tarball": "http://registry.npmjs.org/lift/-/lift-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "529d5a1687113966fd300290ff4997cb60bcd0f7", + "tarball": "http://registry.npmjs.org/lift/-/lift-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "3f96a18bf239a6fcd5c032ae5708e78c2d66a0bb", + "tarball": "http://registry.npmjs.org/lift/-/lift-0.0.8.tgz" + }, + "0.1.0": { + "shasum": "ecb7849dbf9f0f1ec179e523988eb2f5a02d7754", + "tarball": "http://registry.npmjs.org/lift/-/lift-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "93e72d56c2cb560d0ca2e341db5765494de42b16", + "tarball": "http://registry.npmjs.org/lift/-/lift-0.1.1.tgz" + } + }, + "keywords": [ + "client", + "server", + "node", + "code", + "lift", + "lazy", + "templating", + "template" + ], + "url": "http://registry.npmjs.org/lift/" + }, + "light-traits": { + "name": "light-traits", + "description": "Light traits in javascript with some syntax sugar.", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "gozala", + "email": "rfobic@gmail.com" + } + ], + "repository": { + "type": "git", + "url": "git://github.com/Gozala/light-traits.git" + }, + "time": { + "modified": "2011-06-24T00:06:29.185Z", + "created": "2011-02-17T15:53:01.642Z", + "0.0.1": "2011-02-17T15:53:01.642Z", + "0.0.2": "2011-02-17T15:53:01.642Z", + "0.0.3": "2011-02-17T15:53:01.642Z", + "0.0.4": "2011-02-17T15:53:01.642Z", + "0.0.5": "2011-02-17T15:53:01.642Z", + "0.0.6": "2011-02-17T15:53:01.642Z", + "0.0.7": "2011-02-17T15:53:01.642Z", + "0.0.8": "2011-02-17T15:53:01.642Z", + "0.1.0": "2011-02-17T15:53:01.642Z", + "0.1.1": "2011-06-23T23:49:14.668Z", + "0.2.0": "2011-06-24T00:06:29.185Z" + }, + "author": { + "name": "Irakli Gozalishvili", + "email": "rfobic@gmail.com", + "url": "http://jeditoolkit.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/light-traits/0.0.1", + "0.0.2": "http://registry.npmjs.org/light-traits/0.0.2", + "0.0.3": "http://registry.npmjs.org/light-traits/0.0.3", + "0.0.4": "http://registry.npmjs.org/light-traits/0.0.4", + "0.0.5": "http://registry.npmjs.org/light-traits/0.0.5", + "0.0.6": "http://registry.npmjs.org/light-traits/0.0.6", + "0.0.7": "http://registry.npmjs.org/light-traits/0.0.7", + "0.0.8": "http://registry.npmjs.org/light-traits/0.0.8", + "0.1.0": "http://registry.npmjs.org/light-traits/0.1.0", + "0.1.1": "http://registry.npmjs.org/light-traits/0.1.1", + "0.2.0": "http://registry.npmjs.org/light-traits/0.2.0" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/light-traits/-/light-traits-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/light-traits/-/light-traits-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/light-traits/-/light-traits-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://packages:5984/light-traits/-/light-traits-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://registry.npmjs.org/light-traits/-/light-traits-0.0.5.tgz" + }, + "0.0.6": { + "tarball": "http://registry.npmjs.org/light-traits/-/light-traits-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "6b7a479d16b2dae90463fe164443b4826a0c7c90", + "tarball": "http://registry.npmjs.org/light-traits/-/light-traits-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "8672c08282744385f5a27be469f8baf408affb29", + "tarball": "http://registry.npmjs.org/light-traits/-/light-traits-0.0.8.tgz" + }, + "0.1.0": { + "shasum": "add2a81b7f3bb6ec66fc49acd3f806c48c2ddb5c", + "tarball": "http://registry.npmjs.org/light-traits/-/light-traits-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "a2d75e74f9d5d2a1d54eb149b10efbb33ecc4a9f", + "tarball": "http://registry.npmjs.org/light-traits/-/light-traits-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "066ad2d0c908bb2a687a4a56a68a4e191a0d0c9a", + "tarball": "http://registry.npmjs.org/light-traits/-/light-traits-0.2.0.tgz" + } + }, + "keywords": [ + "traits" + ], + "url": "http://registry.npmjs.org/light-traits/" + }, + "lightnode": { + "name": "lightnode", + "description": "Simple framework powered by delegation and heirarchical servers, fast static file server.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "timlind", + "email": "tim@ngtechnology.pro" + } + ], + "time": { + "modified": "2011-02-28T11:10:47.427Z", + "created": "2011-02-28T11:10:46.587Z", + "0.1.0": "2011-02-28T11:10:47.427Z" + }, + "author": { + "name": "Tim Lind", + "email": "tim@ngtechnology.pro", + "url": "http://twitter.com/timlind" + }, + "repository": { + "type": "git", + "url": "git://github.com/ngspinners/lightnode.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/lightnode/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "058b29d0f124db0e4bebf49020fc24672f7e1f87", + "tarball": "http://registry.npmjs.org/lightnode/-/lightnode-0.1.0.tgz" + } + }, + "keywords": [ + "framework", + "static", + "file server", + "control", + "caching", + "vhost", + "virtual host" + ], + "url": "http://registry.npmjs.org/lightnode/" + }, + "limestone": { + "name": "limestone", + "description": "Sphinx search server connector for Node.js", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "kurokikaze", + "email": "bolter.fire@gmail.com" + } + ], + "time": { + "modified": "2011-10-10T15:12:58.737Z", + "created": "2011-01-26T10:31:58.061Z", + "0.1.1": "2011-01-26T10:31:58.390Z", + "0.1.2": "2011-10-10T15:12:58.737Z" + }, + "author": { + "name": "Sergey Shirokov", + "email": "bolter.fire@gmail.com", + "url": "http://kuroikaze85.wordpress.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/kurokikaze/limestone.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/limestone/0.1.1", + "0.1.2": "http://registry.npmjs.org/limestone/0.1.2" + }, + "dist": { + "0.1.1": { + "tarball": "http://registry.npmjs.org/limestone/-/limestone@v0.1.1.tgz" + }, + "0.1.2": { + "shasum": "07d5a57261175c3452fd32045f85d01e984b2edd", + "tarball": "http://registry.npmjs.org/limestone/-/limestone-0.1.2.tgz" + } + }, + "keywords": [ + "sphinx", + "search", + "searchd", + "text" + ], + "url": "http://registry.npmjs.org/limestone/" + }, + "limited-file": { + "name": "limited-file", + "description": "A readable file stream for files that are growing.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "felixge", + "email": "felix@debuggable.com" + } + ], + "time": { + "modified": "2011-04-05T23:40:19.682Z", + "created": "2011-04-05T23:40:18.954Z", + "0.1.0": "2011-04-05T23:40:19.682Z" + }, + "author": { + "name": "Felix Geisendörfer", + "email": "felix@debuggable.com", + "url": "http://debuggable.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/felixge/node-growing-file.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/limited-file/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "c8c03de2bcbe278eb9c9f5cf1b6aeb0293aa965e", + "tarball": "http://registry.npmjs.org/limited-file/-/limited-file-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/limited-file/" + }, + "lin": { + "name": "lin", + "description": "astrology language interface", + "dist-tags": { + "latest": "0.0.1-6" + }, + "maintainers": [ + { + "name": "orlin", + "email": "om@soundsapiens.com" + } + ], + "time": { + "modified": "2011-05-10T17:50:51.273Z", + "created": "2011-04-06T11:35:05.235Z", + "0.0.1-1": "2011-04-06T11:35:06.332Z", + "0.0.1-2": "2011-04-08T15:45:50.317Z", + "0.0.1-3": "2011-04-20T08:05:04.379Z", + "0.0.1-4": "2011-05-06T10:50:25.940Z", + "0.0.1-5": "2011-05-07T08:02:12.482Z", + "0.0.1-6": "2011-05-10T17:50:51.273Z" + }, + "author": { + "name": "Orlin M Bozhinov", + "email": "orlin@astrolet.net", + "url": "http://soundsapiens.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/astrolet/lin.git" + }, + "versions": { + "0.0.1-1": "http://registry.npmjs.org/lin/0.0.1-1", + "0.0.1-2": "http://registry.npmjs.org/lin/0.0.1-2", + "0.0.1-3": "http://registry.npmjs.org/lin/0.0.1-3", + "0.0.1-4": "http://registry.npmjs.org/lin/0.0.1-4", + "0.0.1-5": "http://registry.npmjs.org/lin/0.0.1-5", + "0.0.1-6": "http://registry.npmjs.org/lin/0.0.1-6" + }, + "dist": { + "0.0.1-1": { + "shasum": "3d170faa8f208b9914d5c0b8f12c318802c70e71", + "tarball": "http://registry.npmjs.org/lin/-/lin-0.0.1-1.tgz" + }, + "0.0.1-2": { + "shasum": "18d3b3ff4b4f0961e01bbd2272c54dba3da31831", + "tarball": "http://registry.npmjs.org/lin/-/lin-0.0.1-2.tgz" + }, + "0.0.1-3": { + "shasum": "5c85b0ce2b6b6f2bd7449c7eefc22ee4da9f4b84", + "tarball": "http://registry.npmjs.org/lin/-/lin-0.0.1-3.tgz" + }, + "0.0.1-4": { + "shasum": "b82402a6cd7be1014e66ff0023c79770ab82275e", + "tarball": "http://registry.npmjs.org/lin/-/lin-0.0.1-4.tgz" + }, + "0.0.1-5": { + "shasum": "c4b27df91766b7fae4ea9d20c8cc9a1ff058080f", + "tarball": "http://registry.npmjs.org/lin/-/lin-0.0.1-5.tgz" + }, + "0.0.1-6": { + "shasum": "13f8065fe6107f1cd2274bc540694e301da2ca4b", + "tarball": "http://registry.npmjs.org/lin/-/lin-0.0.1-6.tgz" + } + }, + "keywords": [ + "astrology", + "aslrolet", + "commonjs" + ], + "url": "http://registry.npmjs.org/lin/" + }, + "line-parser": { + "name": "line-parser", + "description": "A simple class to parse chunks of data into lines.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "mbthomas", + "email": "mbthomas@gmail.com" + } + ], + "time": { + "modified": "2011-09-17T16:20:07.239Z", + "created": "2011-08-27T19:13:28.698Z", + "0.0.0": "2011-08-27T19:13:29.988Z", + "0.1.0": "2011-08-27T19:19:27.626Z", + "0.1.1": "2011-09-17T16:20:07.239Z" + }, + "author": { + "name": "Mike Thomas", + "email": "mbthomas@gmail.com" + }, + "repository": { + "url": "http://github.com/mthomas/line-parser.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/line-parser/0.0.0", + "0.1.0": "http://registry.npmjs.org/line-parser/0.1.0", + "0.1.1": "http://registry.npmjs.org/line-parser/0.1.1" + }, + "dist": { + "0.0.0": { + "shasum": "bb27d426d31b64cbb54c3e1b7c6de953e32c3dad", + "tarball": "http://registry.npmjs.org/line-parser/-/line-parser-0.0.0.tgz" + }, + "0.1.0": { + "shasum": "d37ee7f956f00ca1a44bfce9cf6197f916073f23", + "tarball": "http://registry.npmjs.org/line-parser/-/line-parser-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "8d401d945b062ca70a9f3c9c6191b31b9f5cb472", + "tarball": "http://registry.npmjs.org/line-parser/-/line-parser-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/line-parser/" + }, + "line-reader": { + "name": "line-reader", + "description": "Asynchronous line-by-line file reader", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "nickewing", + "email": "nick@nickewing.net" + } + ], + "time": { + "modified": "2011-03-20T02:20:28.565Z", + "created": "2011-03-16T07:41:18.922Z", + "0.1.0": "2011-03-16T07:41:19.519Z", + "0.1.1": "2011-03-16T07:42:34.139Z", + "0.1.2": "2011-03-16T07:57:08.657Z", + "0.1.3": "2011-03-20T02:20:28.565Z" + }, + "author": { + "name": "Nick Ewing", + "email": "nick@nickewing.net" + }, + "repository": { + "type": "git", + "url": "https://nickewing@github.com/nickewing/line-reader.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/line-reader/0.1.0", + "0.1.1": "http://registry.npmjs.org/line-reader/0.1.1", + "0.1.2": "http://registry.npmjs.org/line-reader/0.1.2", + "0.1.3": "http://registry.npmjs.org/line-reader/0.1.3" + }, + "dist": { + "0.1.0": { + "shasum": "e1287491bd5072e61adc8a8c02d26a4ca0d2ac3d", + "tarball": "http://registry.npmjs.org/line-reader/-/line-reader-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "a24a90a4adc3eb51cd1e91cbb379f2a980c0e452", + "tarball": "http://registry.npmjs.org/line-reader/-/line-reader-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "ae146e39bd6c0f72c3d2266e1e555188939ec36c", + "tarball": "http://registry.npmjs.org/line-reader/-/line-reader-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "6155e9d8a8e24116b1dd111f5ec06f5576e899ff", + "tarball": "http://registry.npmjs.org/line-reader/-/line-reader-0.1.3.tgz" + } + }, + "keywords": [ + "file", + "line", + "reader", + "scanner" + ], + "url": "http://registry.npmjs.org/line-reader/" + }, + "linebuffer": { + "name": "linebuffer", + "description": "A stream you can pump to that emits data linewise", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "aredridel", + "email": "aredridel@nbtsc.org" + } + ], + "time": { + "modified": "2011-06-01T05:43:52.855Z", + "created": "2011-06-01T05:43:52.855Z", + "0.0.1": "2011-06-01T05:43:52.855Z", + "0.0.2": "2011-06-01T05:43:52.855Z", + "0.0.3": "2011-06-01T05:43:52.855Z", + "0.0.4": "2011-06-01T05:43:52.855Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/linebuffer/0.0.1", + "0.0.2": "http://registry.npmjs.org/linebuffer/0.0.2", + "0.0.3": "http://registry.npmjs.org/linebuffer/0.0.3", + "0.0.4": "http://registry.npmjs.org/linebuffer/0.0.4" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/linebuffer/-/linebuffer-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/linebuffer/-/linebuffer-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/linebuffer/-/linebuffer-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "78519d6f2120beae473a3014d01b042a85b4db57", + "tarball": "http://registry.npmjs.org/linebuffer/-/linebuffer-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/linebuffer/" + }, + "lines": { + "name": "lines", + "description": "tiny utility for line per line processing with streams", + "dist-tags": { + "latest": "1.0.1", + "stable": "1.0.1" + }, + "maintainers": [ + { + "name": "florentjaby", + "email": "florent.jaby@gmail.com" + } + ], + "author": { + "name": "Florent Jaby", + "email": "florent.jaby@gmail.com", + "url": "http://github.com/Floby" + }, + "repository": { + "type": "git", + "url": "http://github.com/Floby/node-lines.git" + }, + "time": { + "modified": "2011-02-25T15:33:04.428Z", + "created": "2011-02-25T15:31:59.870Z", + "1.0.0": "2011-02-25T15:31:59.870Z", + "1.0.1": "2011-02-25T15:31:59.870Z" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/lines/1.0.0", + "1.0.1": "http://registry.npmjs.org/lines/1.0.1" + }, + "dist": { + "1.0.0": { + "tarball": "http://packages:5984/lines/-/lines-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "6c34c0d41cb67e122a0225d96b9b4b3da5b4b179", + "tarball": "http://registry.npmjs.org/lines/-/lines-1.0.1.tgz" + } + }, + "keywords": [ + "stream", + "lines" + ], + "url": "http://registry.npmjs.org/lines/" + }, + "lines-adapter": { + "name": "lines-adapter", + "description": "Line-oriented Evented I/O", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "jon.seymour", + "email": "jon.seymour@gmail.com" + } + ], + "time": { + "modified": "2011-04-24T14:15:38.810Z", + "created": "2011-04-17T10:18:45.100Z", + "0.0.0": "2011-04-17T10:18:46.835Z", + "0.0.1": "2011-04-17T10:51:53.801Z", + "0.0.2": "2011-04-17T11:29:17.799Z", + "0.0.3": "2011-04-17T15:05:01.828Z", + "0.0.4": "2011-04-24T03:24:26.091Z", + "0.0.5": "2011-04-24T14:15:21.236Z" + }, + "author": { + "name": "Jon Seymour", + "email": "jon.seymour@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/jonseymour/node-lines-adapter.git" + }, + "versions": { + "0.0.5": "http://registry.npmjs.org/lines-adapter/0.0.5" + }, + "dist": { + "0.0.5": { + "shasum": "95483b8107bf905b0de945b264c29409412af939", + "tarball": "http://registry.npmjs.org/lines-adapter/-/lines-adapter-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/lines-adapter/" + }, + "linestream": { + "name": "linestream", + "description": "a readable stream emitting lines (from files, streams)", + "dist-tags": { + "latest": "0.2.6" + }, + "maintainers": [ + { + "name": "shinout", + "email": "shinout310@gmail.com" + } + ], + "time": { + "modified": "2011-11-18T11:43:34.020Z", + "created": "2011-04-15T17:21:39.635Z", + "0.0.2": "2011-04-15T17:21:40.281Z", + "0.1.0": "2011-04-21T03:06:50.873Z", + "0.2.1": "2011-09-30T02:56:26.001Z", + "0.2.2": "2011-11-05T09:07:15.553Z", + "0.2.4": "2011-11-11T20:33:28.484Z", + "0.2.5": "2011-11-14T01:58:23.624Z", + "0.2.6": "2011-11-18T11:43:34.020Z" + }, + "author": { + "name": "SHIN Suzuki", + "email": "shinout310@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/shinout/LineStream.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/linestream/0.0.2", + "0.1.0": "http://registry.npmjs.org/linestream/0.1.0", + "0.2.1": "http://registry.npmjs.org/linestream/0.2.1", + "0.2.2": "http://registry.npmjs.org/linestream/0.2.2", + "0.2.4": "http://registry.npmjs.org/linestream/0.2.4", + "0.2.5": "http://registry.npmjs.org/linestream/0.2.5", + "0.2.6": "http://registry.npmjs.org/linestream/0.2.6" + }, + "dist": { + "0.0.2": { + "shasum": "68616841140440593e6de7a42b2357f3aba37e9e", + "tarball": "http://registry.npmjs.org/linestream/-/linestream-0.0.2.tgz" + }, + "0.1.0": { + "shasum": "5a60916f80213acbf264432beace93d7d0939ee5", + "tarball": "http://registry.npmjs.org/linestream/-/linestream-0.1.0.tgz" + }, + "0.2.1": { + "shasum": "fe075aa10baafaf453d07e752e605190c3a25f64", + "tarball": "http://registry.npmjs.org/linestream/-/linestream-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "0ef8ef5198eea970d644c0c36205a8555481e610", + "tarball": "http://registry.npmjs.org/linestream/-/linestream-0.2.2.tgz" + }, + "0.2.4": { + "shasum": "5543a2548a56907714b47a4fb92ab39c2da92683", + "tarball": "http://registry.npmjs.org/linestream/-/linestream-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "10fb1998bcdb13ca8dc8f68278a496366d2bedab", + "tarball": "http://registry.npmjs.org/linestream/-/linestream-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "af4798b2092dd225733e321cda38d1ef731f1dd2", + "tarball": "http://registry.npmjs.org/linestream/-/linestream-0.2.6.tgz" + } + }, + "url": "http://registry.npmjs.org/linestream/" + }, + "lingo": { + "name": "lingo", + "description": "linguistics module sporting inflection and more", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/lingo/0.0.3", + "0.0.2": "http://registry.npmjs.org/lingo/0.0.2", + "0.0.4": "http://registry.npmjs.org/lingo/0.0.4" + }, + "dist": { + "0.0.3": { + "tarball": "http://packages:5984/lingo/-/lingo-0.0.3.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/lingo/-/lingo-0.0.2.tgz" + }, + "0.0.4": { + "tarball": "http://registry.npmjs.org/lingo/-/lingo-0.0.4.tgz" + } + }, + "keywords": [ + "language", + "linguistics", + "inflection" + ], + "url": "http://registry.npmjs.org/lingo/" + }, + "Lingo": { + "name": "Lingo", + "description": "linguistics module sporting inflection and more", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/Lingo/0.0.1", + "0.0.2": "http://registry.npmjs.org/Lingo/0.0.2" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/Lingo/-/Lingo-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/Lingo/-/Lingo-0.0.2.tgz" + } + }, + "keywords": [ + "language", + "linguistics", + "inflection" + ], + "url": "http://registry.npmjs.org/Lingo/" + }, + "lingua": { + "name": "lingua", + "description": "A i18n middleware for the Express.js framework.", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "andrekoenig", + "email": "andre.koenig@gmail.com" + } + ], + "time": { + "modified": "2011-10-22T18:20:46.065Z", + "created": "2011-09-25T10:02:27.557Z", + "0.0.1": "2011-09-25T10:02:28.406Z", + "0.0.2": "2011-09-25T22:17:57.313Z", + "0.0.3": "2011-09-25T22:46:14.826Z", + "0.0.4": "2011-09-27T00:02:35.159Z", + "0.1.0": "2011-10-07T23:01:14.208Z", + "0.1.1": "2011-10-11T03:53:39.949Z", + "0.1.2": "2011-10-11T23:47:32.105Z", + "0.2.0": "2011-10-22T17:35:42.501Z", + "0.2.1": "2011-10-22T18:20:46.065Z" + }, + "author": { + "name": "André König", + "email": "andre.koenig@gmail.com", + "url": "http://lochkartenstanzer.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/akoenig/express-lingua.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/lingua/0.0.1", + "0.0.2": "http://registry.npmjs.org/lingua/0.0.2", + "0.0.3": "http://registry.npmjs.org/lingua/0.0.3", + "0.0.4": "http://registry.npmjs.org/lingua/0.0.4", + "0.1.0": "http://registry.npmjs.org/lingua/0.1.0", + "0.1.1": "http://registry.npmjs.org/lingua/0.1.1", + "0.1.2": "http://registry.npmjs.org/lingua/0.1.2", + "0.2.0": "http://registry.npmjs.org/lingua/0.2.0", + "0.2.1": "http://registry.npmjs.org/lingua/0.2.1" + }, + "dist": { + "0.0.1": { + "shasum": "358d4790c916b3518d4c726cda00edec50808bb6", + "tarball": "http://registry.npmjs.org/lingua/-/lingua-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "5faae55ba4c9d2689397265e888dda4aa7cde02a", + "tarball": "http://registry.npmjs.org/lingua/-/lingua-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "daa932032fce1c3b798a4d960ddf74cfb31ecd39", + "tarball": "http://registry.npmjs.org/lingua/-/lingua-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "fd20e8ff746a4626e015be376045f546327631db", + "tarball": "http://registry.npmjs.org/lingua/-/lingua-0.0.4.tgz" + }, + "0.1.0": { + "shasum": "733abfec8f0c0b6037fe1c61f0859f0d07fe8284", + "tarball": "http://registry.npmjs.org/lingua/-/lingua-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "86678919de9aa939cb4998b56515172d7c1f5874", + "tarball": "http://registry.npmjs.org/lingua/-/lingua-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "543637a20e070936e910a2c245a897e20d671fe1", + "tarball": "http://registry.npmjs.org/lingua/-/lingua-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "b63fa568d0225ed1115e7ff471444a8b3b6bb1bd", + "tarball": "http://registry.npmjs.org/lingua/-/lingua-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "fe4672d14c3851ed5b07f1029c9c44eb49e2186d", + "tarball": "http://registry.npmjs.org/lingua/-/lingua-0.2.1.tgz" + } + }, + "url": "http://registry.npmjs.org/lingua/" + }, + "link": { + "name": "link", + "description": "A modular web server interface", + "dist-tags": { + "latest": "0.3.3" + }, + "maintainers": [ + { + "name": "mjijackson", + "email": "mjijackson@gmail.com" + } + ], + "time": { + "modified": "2011-09-02T19:10:25.669Z", + "created": "2011-08-05T03:55:40.790Z", + "0.1.0": "2011-08-05T03:55:49.117Z", + "0.1.1": "2011-08-05T04:29:02.382Z", + "0.2.0": "2011-08-06T04:40:04.856Z", + "0.3.0": "2011-08-16T20:26:15.822Z", + "0.3.1": "2011-08-17T16:45:46.873Z", + "0.3.2": "2011-08-17T19:40:27.890Z", + "0.3.3": "2011-09-02T19:10:25.669Z" + }, + "author": { + "name": "Michael Jackson", + "email": "mjijackson@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mjijackson/link.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/link/0.1.0", + "0.1.1": "http://registry.npmjs.org/link/0.1.1", + "0.2.0": "http://registry.npmjs.org/link/0.2.0", + "0.3.0": "http://registry.npmjs.org/link/0.3.0", + "0.3.1": "http://registry.npmjs.org/link/0.3.1", + "0.3.2": "http://registry.npmjs.org/link/0.3.2", + "0.3.3": "http://registry.npmjs.org/link/0.3.3" + }, + "dist": { + "0.1.0": { + "shasum": "fa8917108266a0f6794750248e3a0db0cc814e20", + "tarball": "http://registry.npmjs.org/link/-/link-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "ae1faaa07802615889b8ebb87b0a09c8c9e3ca4a", + "tarball": "http://registry.npmjs.org/link/-/link-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "35d1e7b5a6c05d4f98ac3791088d4b1747ebaee9", + "tarball": "http://registry.npmjs.org/link/-/link-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "6fa85fb7631f0dbf6160da6d7ee1e118644659a9", + "tarball": "http://registry.npmjs.org/link/-/link-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "fd5511dcf32ed11a9b45471951186449aea7fce7", + "tarball": "http://registry.npmjs.org/link/-/link-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "f5baecb3f6c57d6efd4ab3656bbfe370a44d40d3", + "tarball": "http://registry.npmjs.org/link/-/link-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "7e776cf15683ace2c4ce182ce53040cb730c8b42", + "tarball": "http://registry.npmjs.org/link/-/link-0.3.3.tgz" + } + }, + "keywords": [ + "web", + "server", + "middleware", + "rack", + "jsgi", + "wsgi" + ], + "url": "http://registry.npmjs.org/link/" + }, + "linkedin-js": { + "name": "linkedin-js", + "description": "Minimalistic linkedin API client", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "masylum", + "email": "masylum@gmail.com" + } + ], + "author": { + "name": "Pau Ramon", + "email": "masylum@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/masylum/linkedin-js.git" + }, + "time": { + "modified": "2011-10-20T18:03:57.754Z", + "created": "2011-06-06T10:24:51.206Z", + "0.0.1": "2011-06-06T10:24:51.206Z", + "0.0.2": "2011-06-06T10:24:51.206Z", + "0.0.3": "2011-06-06T10:24:51.206Z", + "0.0.4": "2011-06-06T10:24:51.206Z", + "0.0.5": "2011-06-06T10:24:51.206Z", + "0.1.0": "2011-06-06T10:24:51.206Z", + "0.1.1": "2011-06-06T10:35:53.361Z", + "0.1.2": "2011-07-11T17:00:34.982Z", + "0.1.3": "2011-07-11T17:13:53.448Z", + "0.1.4": "2011-10-20T18:03:57.754Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/linkedin-js/0.0.1", + "0.0.2": "http://registry.npmjs.org/linkedin-js/0.0.2", + "0.0.3": "http://registry.npmjs.org/linkedin-js/0.0.3", + "0.0.4": "http://registry.npmjs.org/linkedin-js/0.0.4", + "0.0.5": "http://registry.npmjs.org/linkedin-js/0.0.5", + "0.1.0": "http://registry.npmjs.org/linkedin-js/0.1.0", + "0.1.1": "http://registry.npmjs.org/linkedin-js/0.1.1", + "0.1.2": "http://registry.npmjs.org/linkedin-js/0.1.2", + "0.1.3": "http://registry.npmjs.org/linkedin-js/0.1.3", + "0.1.4": "http://registry.npmjs.org/linkedin-js/0.1.4" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/linkedin-js/-/linkedin-js-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/linkedin-js/-/linkedin-js-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/linkedin-js/-/linkedin-js-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://registry.npmjs.org/linkedin-js/-/linkedin-js-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://registry.npmjs.org/linkedin-js/-/linkedin-js-0.0.5.tgz" + }, + "0.1.0": { + "shasum": "6c320cbf5cce985489fae2850e7ca77997739b40", + "tarball": "http://registry.npmjs.org/linkedin-js/-/linkedin-js-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "037f5e7c1ab0479c3c0af50304f9dfe8b8283b60", + "tarball": "http://registry.npmjs.org/linkedin-js/-/linkedin-js-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "cb752463542164ce37473b79a3b548d70482a6a9", + "tarball": "http://registry.npmjs.org/linkedin-js/-/linkedin-js-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "020bf01ea877ff111ce0c4417f134e1dbcdee34e", + "tarball": "http://registry.npmjs.org/linkedin-js/-/linkedin-js-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "16fd8f35d0fde5691c8c5b551fb999738baffedf", + "tarball": "http://registry.npmjs.org/linkedin-js/-/linkedin-js-0.1.4.tgz" + } + }, + "keywords": [ + "linkedin" + ], + "url": "http://registry.npmjs.org/linkedin-js/" + }, + "linkify": { + "name": "linkify", + "description": "Put links in pure text!", + "dist-tags": { + "latest": "0.2.0" + }, + "readme": null, + "maintainers": [ + { + "name": "thejh", + "email": "jannhorn@gmail.com" + } + ], + "time": { + "modified": "2011-11-13T13:09:18.958Z", + "created": "2011-11-13T13:01:12.281Z", + "0.1.0": "2011-11-13T13:01:14.346Z", + "0.2.0": "2011-11-13T13:09:18.958Z" + }, + "author": { + "name": "Jann Horn", + "email": "jannhorn@googlemail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/thejh/node-linkify.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/linkify/0.1.0", + "0.2.0": "http://registry.npmjs.org/linkify/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "568b259fe2cf796cca8b5ef6ed46ba5400ada1cc", + "tarball": "http://registry.npmjs.org/linkify/-/linkify-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "d493f318d2a7dcd170558a1f2f830f49302116be", + "tarball": "http://registry.npmjs.org/linkify/-/linkify-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/linkify/" + }, + "linkscape": { + "name": "linkscape", + "description": "A node.js client for the seoMOZ Linkscape API", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "peterson514", + "email": "peterson514@gmail.com" + } + ], + "author": { + "name": "Michael Peterson" + }, + "repository": { + "type": "git", + "url": "http://github.com/mjp/node-linkscape.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/linkscape/0.1.0", + "0.1.1": "http://registry.npmjs.org/linkscape/0.1.1" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/linkscape/-/linkscape-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://registry.npmjs.org/linkscape/-/linkscape-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/linkscape/" + }, + "linkshare": { + "name": "linkshare", + "description": "An implementation of the LinkShare WebServices API in NodeJS", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "garrettwilkin", + "email": "garrett.wilkin@gmail.com" + } + ], + "time": { + "modified": "2011-10-20T03:50:02.145Z", + "created": "2011-03-01T04:47:42.195Z", + "0.0.1": "2011-03-01T04:47:42.647Z", + "0.0.3": "2011-10-20T03:50:02.145Z" + }, + "author": { + "name": "Garrett Wilkin", + "email": "garrett.wilkin@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/garrettwilkin/LinkShare.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/linkshare/0.0.1", + "0.0.3": "http://registry.npmjs.org/linkshare/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "763f521cfea1e808249bea8b2d0b06ea1d9e83e9", + "tarball": "http://registry.npmjs.org/linkshare/-/linkshare-0.0.1.tgz" + }, + "0.0.3": { + "shasum": "08a565677db5c5bb0cd7c9438d81499f9e5e348e", + "tarball": "http://registry.npmjs.org/linkshare/-/linkshare-0.0.3.tgz" + } + }, + "keywords": [ + "marketing", + "referral", + "link" + ], + "url": "http://registry.npmjs.org/linkshare/" + }, + "linode-api": { + "name": "linode-api", + "description": "Linode API client", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "fictorial", + "email": "brian@fictorial.com" + } + ], + "time": { + "modified": "2011-06-15T15:21:22.869Z", + "created": "2011-06-14T17:48:31.100Z", + "0.0.1": "2011-06-14T17:48:31.396Z", + "0.0.2": "2011-06-14T17:51:20.172Z", + "0.0.3": "2011-06-15T14:50:33.256Z", + "0.1.0": "2011-06-15T14:52:12.364Z", + "0.1.1": "2011-06-15T15:16:56.576Z", + "0.1.2": "2011-06-15T15:21:22.869Z" + }, + "author": { + "name": "Brian Hammond", + "email": "brian@fictorial.com", + "url": "http://fictorial.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/fictorial/linode-api.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/linode-api/0.0.1", + "0.0.2": "http://registry.npmjs.org/linode-api/0.0.2", + "0.0.3": "http://registry.npmjs.org/linode-api/0.0.3", + "0.1.0": "http://registry.npmjs.org/linode-api/0.1.0", + "0.1.1": "http://registry.npmjs.org/linode-api/0.1.1", + "0.1.2": "http://registry.npmjs.org/linode-api/0.1.2" + }, + "dist": { + "0.0.1": { + "shasum": "5a4a65ebda3eb74e140a1d263f15fdf7a9575160", + "tarball": "http://registry.npmjs.org/linode-api/-/linode-api-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "a5b149626db3052bef7610dec9f758f04613bdb1", + "tarball": "http://registry.npmjs.org/linode-api/-/linode-api-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "42ef5025852a6826430882c82d912cd9f2f23374", + "tarball": "http://registry.npmjs.org/linode-api/-/linode-api-0.0.3.tgz" + }, + "0.1.0": { + "shasum": "e3da8e708747b4b346da52901a46b993f83139a5", + "tarball": "http://registry.npmjs.org/linode-api/-/linode-api-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "43c093a84091976b9adb7b509b475ddc414aca88", + "tarball": "http://registry.npmjs.org/linode-api/-/linode-api-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "d8a97786f251fdf6e6ec701afcfc78fc662f747b", + "tarball": "http://registry.npmjs.org/linode-api/-/linode-api-0.1.2.tgz" + } + }, + "keywords": [ + "linode", + "api", + "client" + ], + "url": "http://registry.npmjs.org/linode-api/" + }, + "lint": { + "name": "lint", + "description": "This package provide lint validation library + node-lint command line tool allows you to check for problems using JSLint. You can specify your own --config file to use alternate JSLint options and your own --formatter file if you want to customize the generated output.", + "dist-tags": { + "latest": "1.1.1-1" + }, + "maintainers": [ + { + "name": "as-jpolo", + "email": "julien.polo@altshift.fr" + } + ], + "author": { + "name": "tav", + "email": "tav@espians.com", + "url": "http://tav.espians.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/jpolo/node-lint.git" + }, + "time": { + "modified": "2011-10-21T13:28:01.577Z", + "created": "2011-01-03T15:26:10.923Z", + "0.1.0": "2011-01-03T15:26:10.923Z", + "0.1.1": "2011-01-03T15:26:10.923Z", + "0.1.2": "2011-01-03T15:26:10.923Z", + "0.1.3": "2011-01-03T15:26:10.923Z", + "0.1.4": "2011-01-03T15:26:10.923Z", + "0.1.5": "2011-01-03T15:26:10.923Z", + "0.1.6": "2011-01-03T15:26:10.923Z", + "0.1.7": "2011-01-03T15:26:10.923Z", + "0.1.8": "2011-01-03T15:26:10.923Z", + "0.1.9": "2011-01-03T15:26:10.923Z", + "0.1.10": "2011-01-03T15:26:10.923Z", + "0.1.11": "2011-01-03T15:26:10.923Z", + "0.1.12": "2011-01-03T15:26:10.923Z", + "0.2.0": "2011-02-15T17:26:59.791Z", + "0.2.0-2": "2011-02-20T18:34:58.748Z", + "0.2.0-3": "2011-02-24T16:59:10.334Z", + "0.2.1": "2011-03-03T21:07:40.948Z", + "0.2.1-2": "2011-03-07T12:05:45.899Z", + "1.0.0": "2011-03-31T16:01:36.515Z", + "1.0.1": "2011-04-14T22:46:24.247Z", + "1.1.0": "2011-05-03T13:56:21.681Z", + "1.1.0-1": "2011-08-01T20:52:51.895Z", + "1.1.0-2": "2011-08-11T20:19:35.415Z", + "1.1.1": "2011-09-06T09:10:27.214Z", + "1.1.1-1": "2011-10-21T13:28:01.577Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/lint/0.1.0", + "0.1.1": "http://registry.npmjs.org/lint/0.1.1", + "0.1.2": "http://registry.npmjs.org/lint/0.1.2", + "0.1.3": "http://registry.npmjs.org/lint/0.1.3", + "0.1.4": "http://registry.npmjs.org/lint/0.1.4", + "0.1.5": "http://registry.npmjs.org/lint/0.1.5", + "0.1.6": "http://registry.npmjs.org/lint/0.1.6", + "0.1.7": "http://registry.npmjs.org/lint/0.1.7", + "0.1.8": "http://registry.npmjs.org/lint/0.1.8", + "0.1.9": "http://registry.npmjs.org/lint/0.1.9", + "0.1.10": "http://registry.npmjs.org/lint/0.1.10", + "0.1.11": "http://registry.npmjs.org/lint/0.1.11", + "0.1.12": "http://registry.npmjs.org/lint/0.1.12", + "0.2.0": "http://registry.npmjs.org/lint/0.2.0", + "0.2.0-2": "http://registry.npmjs.org/lint/0.2.0-2", + "0.2.0-3": "http://registry.npmjs.org/lint/0.2.0-3", + "0.2.1": "http://registry.npmjs.org/lint/0.2.1", + "0.2.1-2": "http://registry.npmjs.org/lint/0.2.1-2", + "1.0.0": "http://registry.npmjs.org/lint/1.0.0", + "1.0.1": "http://registry.npmjs.org/lint/1.0.1", + "1.1.0": "http://registry.npmjs.org/lint/1.1.0", + "1.1.0-1": "http://registry.npmjs.org/lint/1.1.0-1", + "1.1.0-2": "http://registry.npmjs.org/lint/1.1.0-2", + "1.1.1": "http://registry.npmjs.org/lint/1.1.1", + "1.1.1-1": "http://registry.npmjs.org/lint/1.1.1-1" + }, + "dist": { + "0.1.0": { + "shasum": "cf3ec47dda04256bffda16cb3c1b06ff810d4860", + "tarball": "http://registry.npmjs.org/lint/-/lint-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "669991f4d9a002675a9db2432264d60504a3e74e", + "tarball": "http://registry.npmjs.org/lint/-/lint-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "c3b000442405803b63d544e15d9627ad2c82c845", + "tarball": "http://registry.npmjs.org/lint/-/lint-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "bf6556b5b317d6702c13f34eee43af997e1d98d4", + "tarball": "http://registry.npmjs.org/lint/-/lint-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "dcb3865cc8f20c88e011c3400ac94cd83ce1da96", + "tarball": "http://registry.npmjs.org/lint/-/lint-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "6f92dce1242d82a95d0c3976ddfad6f97cc9efc0", + "tarball": "http://registry.npmjs.org/lint/-/lint-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "24a8202728a4376e29740ebb731fa70bebcf074b", + "tarball": "http://registry.npmjs.org/lint/-/lint-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "ff869b49522c46c6ff9818801e7dc1e391aee69d", + "tarball": "http://registry.npmjs.org/lint/-/lint-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "d631c919b06ca6a2292a5c757e94ee03912e641a", + "tarball": "http://registry.npmjs.org/lint/-/lint-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "4c851e64a79fe586355b4cc8e0965f79bcbb5706", + "tarball": "http://registry.npmjs.org/lint/-/lint-0.1.9.tgz" + }, + "0.1.10": { + "shasum": "397170a30bd74dc44c19e39bca1ae123109b4d2d", + "tarball": "http://registry.npmjs.org/lint/-/lint-0.1.10.tgz" + }, + "0.1.11": { + "shasum": "b3f9bfc4e2691d9b578e5d4971620d1a54e7fcc6", + "tarball": "http://registry.npmjs.org/lint/-/lint-0.1.11.tgz" + }, + "0.1.12": { + "shasum": "6f7de9eac6368622060dfc86caa161c4becd46e2", + "tarball": "http://registry.npmjs.org/lint/-/lint-0.1.12.tgz" + }, + "0.2.0": { + "shasum": "7a7faddb0da582c21a531f6410615ecb56911167", + "tarball": "http://registry.npmjs.org/lint/-/lint-0.2.0.tgz" + }, + "0.2.0-2": { + "shasum": "0e7ba8ecbda89585c32e4636ef9bd948d86eae67", + "tarball": "http://registry.npmjs.org/lint/-/lint-0.2.0-2.tgz" + }, + "0.2.0-3": { + "shasum": "de5aeebd3bb21acaf749106fb1974ee33d0db9a8", + "tarball": "http://registry.npmjs.org/lint/-/lint-0.2.0-3.tgz" + }, + "0.2.1": { + "shasum": "822f76042a0cc315467d6e5eded8372385824bcf", + "tarball": "http://registry.npmjs.org/lint/-/lint-0.2.1.tgz" + }, + "0.2.1-2": { + "shasum": "0110e78a6b988a9458c84b14ffaaf045d3910a10", + "tarball": "http://registry.npmjs.org/lint/-/lint-0.2.1-2.tgz" + }, + "1.0.0": { + "shasum": "3e21a648ac71565b163feeefdf7e2ec45c30e3d8", + "tarball": "http://registry.npmjs.org/lint/-/lint-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "74bda21a6e11c9f06441162bcdd243f1a904ef9b", + "tarball": "http://registry.npmjs.org/lint/-/lint-1.0.1.tgz" + }, + "1.1.0": { + "shasum": "6fafba71b6e23b94898d91977d8f98c906d247ca", + "tarball": "http://registry.npmjs.org/lint/-/lint-1.1.0.tgz" + }, + "1.1.0-1": { + "shasum": "d124977e5e2592351b23b5585f3f72966831fc47", + "tarball": "http://registry.npmjs.org/lint/-/lint-1.1.0-1.tgz" + }, + "1.1.0-2": { + "shasum": "8f4226a3929e6af35c38a640d5dd1a9b50576ddf", + "tarball": "http://registry.npmjs.org/lint/-/lint-1.1.0-2.tgz" + }, + "1.1.1": { + "shasum": "a272d012a5e8d991747638c5d78dc11cbefe9d9a", + "tarball": "http://registry.npmjs.org/lint/-/lint-1.1.1.tgz" + }, + "1.1.1-1": { + "shasum": "f8e29700121b680f77a5cb0ef78b3b47fee3ed41", + "tarball": "http://registry.npmjs.org/lint/-/lint-1.1.1-1.tgz" + } + }, + "url": "http://registry.npmjs.org/lint/" + }, + "linter": { + "name": "linter", + "description": "Code quality tools collection in one module", + "dist-tags": { + "latest": "0.0.7", + "stable": "0.0.5" + }, + "maintainers": [ + { + "name": "kof", + "email": "oleg008@gmail.com" + } + ], + "time": { + "modified": "2011-03-23T14:13:19.354Z", + "created": "2010-12-28T21:48:25.913Z", + "0.0.1": "2010-12-28T21:48:26.394Z", + "0.0.2": "2010-12-30T11:35:24.613Z", + "0.0.3": "2011-01-27T16:59:18.379Z", + "0.0.4": "2011-01-27T22:08:05.874Z", + "0.0.5": "2011-01-27T23:04:45.439Z", + "0.0.7": "2011-03-23T14:13:19.354Z" + }, + "author": { + "name": "Oleg Slobodskoi", + "email": "oleg008@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/kof/node-linter.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/linter/0.0.1", + "0.0.2": "http://registry.npmjs.org/linter/0.0.2", + "0.0.3": "http://registry.npmjs.org/linter/0.0.3", + "0.0.4": "http://registry.npmjs.org/linter/0.0.4", + "0.0.5": "http://registry.npmjs.org/linter/0.0.5", + "0.0.7": "http://registry.npmjs.org/linter/0.0.7" + }, + "dist": { + "0.0.1": { + "shasum": "f3cf72ab9c4cf8421a32e4596137ebc51a2568c1", + "tarball": "http://registry.npmjs.org/linter/-/linter-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "8bce7e1ab56a4cf4fbce67229227cbdc19994538", + "tarball": "http://registry.npmjs.org/linter/-/linter-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "ecbd500f915282a5f5ffd5595cc212b11a13dce8", + "tarball": "http://registry.npmjs.org/linter/-/linter-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "58c290b18d399302373dd6fd2e62c50e4106abf9", + "tarball": "http://registry.npmjs.org/linter/-/linter-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "b8e57c84c639f4cc37728fbd5c099977667f5821", + "tarball": "http://registry.npmjs.org/linter/-/linter-0.0.5.tgz" + }, + "0.0.7": { + "shasum": "ac8f9205ace709dbc5006ac1e782207d7958a36e", + "tarball": "http://registry.npmjs.org/linter/-/linter-0.0.7.tgz" + } + }, + "keywords": [ + "code quality", + "code style", + "stylechecker", + "lint", + "jslint", + "closure-linter", + "closure-compiler" + ], + "url": "http://registry.npmjs.org/linter/" + }, + "lintnode": { + "name": "lintnode", + "description": "A JSLint server for more expedient linting.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "keturn", + "email": "keturn+npm@keturn.net" + } + ], + "author": { + "name": "Kevin Turner", + "url": "http://keturn.net/" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/lintnode/0.1.0", + "0.1.1": "http://registry.npmjs.org/lintnode/0.1.1" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/lintnode/-/lintnode-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://packages:5984/lintnode/-/lintnode-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/lintnode/" + }, + "linux-util": { + "name": "linux-util", + "description": "Linux utilities", + "dist-tags": { + "latest": "0.0.3-rc2" + }, + "maintainers": [ + { + "name": "robertkeizer", + "email": "robert@keizer.ca" + } + ], + "time": { + "modified": "2011-10-18T06:06:46.078Z", + "created": "2011-04-09T22:21:23.886Z", + "0.0.1-rc1": "2011-04-09T22:21:24.446Z", + "0.0.1-rc2": "2011-04-13T04:56:34.060Z", + "0.0.1-rc3": "2011-04-14T14:45:42.266Z", + "0.0.2": "2011-05-30T02:46:09.315Z", + "0.0.3": "2011-10-17T04:04:54.031Z", + "0.0.3-rc1": "2011-10-17T13:47:11.933Z", + "0.0.3-rc2": "2011-10-18T06:06:46.078Z" + }, + "author": { + "name": "Robert Keizer", + "email": "robert@keizer.ca" + }, + "repository": { + "type": "git", + "url": "git://github.com/robertkeizer/linux-util.git" + }, + "versions": { + "0.0.1-rc1": "http://registry.npmjs.org/linux-util/0.0.1-rc1", + "0.0.1-rc2": "http://registry.npmjs.org/linux-util/0.0.1-rc2", + "0.0.1-rc3": "http://registry.npmjs.org/linux-util/0.0.1-rc3", + "0.0.2": "http://registry.npmjs.org/linux-util/0.0.2", + "0.0.3-rc1": "http://registry.npmjs.org/linux-util/0.0.3-rc1", + "0.0.3-rc2": "http://registry.npmjs.org/linux-util/0.0.3-rc2" + }, + "dist": { + "0.0.1-rc1": { + "shasum": "553a0ac6b0a1bb82a264dbca676c704bbf6829c6", + "tarball": "http://registry.npmjs.org/linux-util/-/linux-util-0.0.1-rc1.tgz" + }, + "0.0.1-rc2": { + "shasum": "b636c5812cc8305be3a2fb85ca29cf4d02c851aa", + "tarball": "http://registry.npmjs.org/linux-util/-/linux-util-0.0.1-rc2.tgz" + }, + "0.0.1-rc3": { + "shasum": "4c3c785399c3f386a46ce45d748a7d683a9a512d", + "tarball": "http://registry.npmjs.org/linux-util/-/linux-util-0.0.1-rc3.tgz" + }, + "0.0.2": { + "shasum": "53a4157c0bc1650bd57ba1192b5e76e8f7b7545f", + "tarball": "http://registry.npmjs.org/linux-util/-/linux-util-0.0.2.tgz" + }, + "0.0.3-rc1": { + "shasum": "1119385a044759828db4806960083b85523ce28d", + "tarball": "http://registry.npmjs.org/linux-util/-/linux-util-0.0.3-rc1.tgz" + }, + "0.0.3-rc2": { + "shasum": "8223e6e32fcf4d2eaa9bc5db2b3129a209f65589", + "tarball": "http://registry.npmjs.org/linux-util/-/linux-util-0.0.3-rc2.tgz" + } + }, + "keywords": [ + "linux", + "utility", + "mount", + "ps", + "process", + "interface", + "interfaces", + "control" + ], + "url": "http://registry.npmjs.org/linux-util/" + }, + "liquid": { + "name": "liquid", + "description": "JavaScript port of Tobias Luetke's Liquid template engine.", + "dist-tags": { + "latest": "1.2.1" + }, + "maintainers": [ + { + "name": "hornairs", + "email": "harry.brundage@jadedpixel.com" + } + ], + "time": { + "modified": "2011-08-04T19:29:14.811Z", + "created": "2011-08-04T19:29:14.556Z", + "1.2.1": "2011-08-04T19:29:14.811Z" + }, + "author": { + "name": "Matt McCray" + }, + "repository": { + "type": "git", + "url": "git://github.com/hornairs/liquid.js.git" + }, + "versions": { + "1.2.1": "http://registry.npmjs.org/liquid/1.2.1" + }, + "dist": { + "1.2.1": { + "shasum": "681c0d8de772539a80c29f017fe72a589f998663", + "tarball": "http://registry.npmjs.org/liquid/-/liquid-1.2.1.tgz" + } + }, + "url": "http://registry.npmjs.org/liquid/" + }, + "liquor": { + "name": "liquor", + "description": "templates without the code", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "chjj", + "email": "chjjeffrey@gmail.com" + } + ], + "time": { + "modified": "2011-07-20T06:50:20.495Z", + "created": "2011-07-20T06:50:19.996Z", + "0.0.1": "2011-07-20T06:50:20.495Z" + }, + "author": { + "name": "Christopher Jeffrey" + }, + "repository": { + "type": "git", + "url": "git://github.com/chjj/liquor.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/liquor/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "50437a794a9ca810a2b1ba21a2200f7d5d7a4937", + "tarball": "http://registry.npmjs.org/liquor/-/liquor-0.0.1.tgz" + } + }, + "keywords": [ + "template" + ], + "url": "http://registry.npmjs.org/liquor/" + }, + "listener": { + "name": "listener", + "description": "A no frills cross-browser DOM event listener with ender integration", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-05-11T04:06:52.376Z", + "created": "2011-05-06T18:39:40.461Z", + "1.0.0": "2011-05-06T18:39:40.961Z", + "1.0.1": "2011-05-11T04:06:52.376Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/rpflorence/listener.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/listener/1.0.0", + "1.0.1": "http://registry.npmjs.org/listener/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "820b5666c4e886b1e239b66b4e14fc2af57294de", + "tarball": "http://registry.npmjs.org/listener/-/listener-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "26666549dc0c32684c79785401ee42d6a58fb77d", + "tarball": "http://registry.npmjs.org/listener/-/listener-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/listener/" + }, + "lite": { + "name": "lite", + "description": "A cross platform template engine base on xml/html and javascript expression", + "dist-tags": { + "latest": "2.0.15" + }, + "maintainers": [ + { + "name": "jindw", + "email": "jindw@xidea.org" + } + ], + "time": { + "modified": "2011-12-03T14:56:16.139Z", + "created": "2011-11-01T16:48:08.205Z", + "2.0.13": "2011-11-01T16:48:11.473Z", + "2.0.14": "2011-11-05T15:52:05.617Z", + "2.0.15": "2011-12-03T14:56:16.139Z" + }, + "versions": { + "2.0.13": "http://registry.npmjs.org/lite/2.0.13", + "2.0.14": "http://registry.npmjs.org/lite/2.0.14", + "2.0.15": "http://registry.npmjs.org/lite/2.0.15" + }, + "dist": { + "2.0.13": { + "shasum": "943270656ce5410c2a9ab03d4d68ed4bbe06ed37", + "tarball": "http://registry.npmjs.org/lite/-/lite-2.0.13.tgz" + }, + "2.0.14": { + "shasum": "c60469c062dc031be03c932735cc89fa02fb551a", + "tarball": "http://registry.npmjs.org/lite/-/lite-2.0.14.tgz" + }, + "2.0.15": { + "shasum": "e5d9a59b965d1348382362892e66726a710d4e30", + "tarball": "http://registry.npmjs.org/lite/-/lite-2.0.15.tgz" + } + }, + "keywords": [ + "javascript", + "xhtml", + "html", + "Java", + "PHP", + "template" + ], + "url": "http://registry.npmjs.org/lite/" + }, + "litecoin": { + "name": "litecoin", + "description": "Communicate with litecoind via JSON-RPC", + "dist-tags": { + "latest": "1.1.3" + }, + "maintainers": [ + { + "name": "ryland", + "email": "email@rylandtaylor-almanza.com" + } + ], + "time": { + "modified": "2011-11-05T21:24:43.637Z", + "created": "2011-11-05T21:05:12.271Z", + "1.1.2": "2011-11-05T21:05:13.361Z", + "1.1.3": "2011-11-05T21:24:43.637Z" + }, + "author": { + "name": "Ryland Taylor-Almanza", + "email": "email@rylandtaylor-almanza.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/jb55/node-litecoin.git" + }, + "versions": { + "1.1.2": "http://registry.npmjs.org/litecoin/1.1.2", + "1.1.3": "http://registry.npmjs.org/litecoin/1.1.3" + }, + "dist": { + "1.1.2": { + "shasum": "e6c2004ca34624ea1ef2cb5d3ef4a961174da9bf", + "tarball": "http://registry.npmjs.org/litecoin/-/litecoin-1.1.2.tgz" + }, + "1.1.3": { + "shasum": "2940095177f7911e1d8b019142a9212ef836f487", + "tarball": "http://registry.npmjs.org/litecoin/-/litecoin-1.1.3.tgz" + } + }, + "keywords": [ + "litecoin", + "rpc" + ], + "url": "http://registry.npmjs.org/litecoin/" + }, + "litmus": { + "name": "litmus", + "description": "JavaScript Unit Test Library", + "dist-tags": { + "latest": "0.4.1" + }, + "maintainers": [ + { + "name": "tomyan", + "email": "tom@yandell.me.uk" + }, + { + "name": "richardhodgson", + "email": "contact@rhodgson.co.uk" + } + ], + "time": { + "modified": "2011-11-08T23:46:18.351Z", + "created": "2011-04-28T22:26:27.947Z", + "0.1.0": "2011-04-28T22:26:28.361Z", + "0.2.0": "2011-06-04T16:28:38.179Z", + "0.3.0": "2011-09-04T09:36:19.474Z", + "0.3.1": "2011-09-04T09:41:08.141Z", + "0.4.1": "2011-11-08T23:46:18.351Z" + }, + "author": { + "name": "Thomas Yandell", + "email": "tom.deletethis@yandell.me.uk", + "url": "http://tom.yandell.me.uk/blog/" + }, + "repository": { + "type": "git", + "url": "git://github.com/usenode/litmus.js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/litmus/0.1.0", + "0.2.0": "http://registry.npmjs.org/litmus/0.2.0", + "0.3.0": "http://registry.npmjs.org/litmus/0.3.0", + "0.3.1": "http://registry.npmjs.org/litmus/0.3.1", + "0.4.1": "http://registry.npmjs.org/litmus/0.4.1" + }, + "dist": { + "0.1.0": { + "shasum": "357de537cb5022588a0b0ca8630f29b004b9d466", + "tarball": "http://registry.npmjs.org/litmus/-/litmus-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "958d568fa8e1f5cefd1892450165b3c724be3edd", + "tarball": "http://registry.npmjs.org/litmus/-/litmus-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "bbc74ffa3aa348f2aedb152596f67ce97d8e8cc4", + "tarball": "http://registry.npmjs.org/litmus/-/litmus-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "e51abbe2c66a1e78ee352fcd1262e3661306c027", + "tarball": "http://registry.npmjs.org/litmus/-/litmus-0.3.1.tgz" + }, + "0.4.1": { + "shasum": "a26441cc55110988d302c8f59e156f50280170f0", + "tarball": "http://registry.npmjs.org/litmus/-/litmus-0.4.1.tgz" + } + }, + "url": "http://registry.npmjs.org/litmus/" + }, + "littering": { + "name": "littering", + "description": "ender based library for littering text with span markup, based on Lettering.js", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "cjc", + "email": "cjc@cjc.id.au" + } + ], + "time": { + "modified": "2011-05-17T03:09:44.025Z", + "created": "2011-05-17T01:31:40.377Z", + "0.0.1": "2011-05-17T01:31:42.714Z", + "0.0.2": "2011-05-17T03:09:44.025Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/cjc/littering.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/littering/0.0.1", + "0.0.2": "http://registry.npmjs.org/littering/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "7eea14356ab5f4b05a30b04ec2d089a178bb1167", + "tarball": "http://registry.npmjs.org/littering/-/littering-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "250e814a4cd7afae0a5028948d03b9ed8242d765", + "tarball": "http://registry.npmjs.org/littering/-/littering-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/littering/" + }, + "live-twitter-map": { + "name": "live-twitter-map", + "description": "Show tweets from the Twitter streaming API live on a map", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "binarymuse", + "email": "brandon@brandontilley.com" + } + ], + "time": { + "modified": "2011-05-09T23:20:18.817Z", + "created": "2011-05-09T23:20:17.377Z", + "1.0.0": "2011-05-09T23:20:18.817Z" + }, + "author": { + "name": "Brandon Tilley", + "email": "brandon@brandontilley.com", + "url": "http://brandontilley.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/BinaryMuse/live-twitter-map.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/live-twitter-map/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "172da503f1b700039c7eeee6014e7d60fec65edc", + "tarball": "http://registry.npmjs.org/live-twitter-map/-/live-twitter-map-1.0.0.tgz" + } + }, + "keywords": [ + "twitter", + "live", + "map" + ], + "url": "http://registry.npmjs.org/live-twitter-map/" + }, + "live.js": { + "name": "live.js", + "description": "real-time event visualization", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "functioncallback", + "email": "functioncallback@gmail.com" + } + ], + "time": { + "modified": "2011-10-19T03:59:00.686Z", + "created": "2011-10-19T03:55:31.062Z", + "0.0.1": "2011-10-19T03:59:00.686Z" + }, + "author": { + "name": "Wagner Montalvao Camarao", + "email": "functioncallback@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/functioncallback/live.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/live.js/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "313836b79a4850af18afef79af63654a9f71b187", + "tarball": "http://registry.npmjs.org/live.js/-/live.js-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/live.js/" + }, + "livereload": { + "name": "livereload", + "description": "LiveReload server", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "josh", + "email": "josh@joshpeek.com" + } + ], + "author": { + "name": "Joshua Peek" + }, + "repository": { + "type": "git", + "url": "http://github.com/josh/node-livereload.git" + }, + "time": { + "modified": "2011-01-06T21:13:06.688Z", + "created": "2011-01-06T21:13:06.688Z", + "0.1.0": "2011-01-06T21:13:06.688Z", + "0.2.0": "2011-01-06T21:13:06.688Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/livereload/0.1.0", + "0.2.0": "http://registry.npmjs.org/livereload/0.2.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/livereload/-/livereload-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "1c828a8132fe69255441004df880aa42aaa7d01d", + "tarball": "http://registry.npmjs.org/livereload/-/livereload-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/livereload/" + }, + "livestyl": { + "name": "livestyl", + "dist-tags": { + "latest": "0.3.2" + }, + "maintainers": [ + { + "name": "dtinth", + "email": "org.yi.dttvb@gmail.com" + } + ], + "time": { + "modified": "2011-11-27T16:16:01.720Z", + "created": "2011-11-24T04:06:46.828Z", + "0.1.0": "2011-11-24T04:30:03.108Z", + "0.3.0": "2011-11-27T15:34:52.662Z", + "0.3.1": "2011-11-27T15:55:37.129Z", + "0.3.2": "2011-11-27T16:16:01.720Z" + }, + "author": { + "name": "dtinth" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/livestyl/0.1.0", + "0.3.0": "http://registry.npmjs.org/livestyl/0.3.0", + "0.3.1": "http://registry.npmjs.org/livestyl/0.3.1", + "0.3.2": "http://registry.npmjs.org/livestyl/0.3.2" + }, + "dist": { + "0.1.0": { + "shasum": "c368f2b973925dd033a0abac44ffd285fe4e9265", + "tarball": "http://registry.npmjs.org/livestyl/-/livestyl-0.1.0.tgz" + }, + "0.3.0": { + "shasum": "27d83cd2422411a1156f6de87448dcf1c1eb3f5c", + "tarball": "http://registry.npmjs.org/livestyl/-/livestyl-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "373c94c33e19c451b4c2c4921c02603d6c3f92f0", + "tarball": "http://registry.npmjs.org/livestyl/-/livestyl-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "4b81423ccbc7bf6b84ba997220171756b205055a", + "tarball": "http://registry.npmjs.org/livestyl/-/livestyl-0.3.2.tgz" + } + }, + "url": "http://registry.npmjs.org/livestyl/" + }, + "load": { + "name": "load", + "description": "Load groups of files and settings quickly from a folder and its subfolders.", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "neat", + "email": "wrapper476@gmail.com" + } + ], + "time": { + "modified": "2011-10-02T17:37:38.517Z", + "created": "2011-07-18T17:12:15.835Z", + "0.1.0": "2011-07-18T17:12:16.493Z", + "0.1.1": "2011-07-21T00:40:30.370Z", + "0.2.0": "2011-08-01T07:16:22.407Z", + "0.2.1": "2011-10-02T17:27:49.342Z" + }, + "author": { + "name": "Roly Fentanes", + "url": "https://github.com/fent" + }, + "repository": { + "type": "git", + "url": "git://github.com/fent/node-load.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/load/0.1.0", + "0.1.1": "http://registry.npmjs.org/load/0.1.1", + "0.2.0": "http://registry.npmjs.org/load/0.2.0", + "0.2.1": "http://registry.npmjs.org/load/0.2.1" + }, + "dist": { + "0.1.0": { + "shasum": "754070bc8613fb0aa6ec630027017043a290a97b", + "tarball": "http://registry.npmjs.org/load/-/load-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "d19e5b206ef3e02313fd6ac464082d7fd7820e17", + "tarball": "http://registry.npmjs.org/load/-/load-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "99e062680df36303ee5a3a9b703290a07bcc0f8a", + "tarball": "http://registry.npmjs.org/load/-/load-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "2f5d9b0faa7c1d995dd85fa959a300f2da5d6707", + "tarball": "http://registry.npmjs.org/load/-/load-0.2.1.tgz" + } + }, + "url": "http://registry.npmjs.org/load/" + }, + "loadbuilder": { + "name": "loadbuilder", + "description": "Combine and compress dependency chains created by Loadrunner", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "danwrong", + "email": "dan@danwebb.net" + } + ], + "time": { + "modified": "2011-06-07T23:38:28.603Z", + "created": "2011-05-17T03:02:44.045Z", + "0.1.0": "2011-05-17T03:02:44.358Z", + "0.1.1": "2011-06-03T21:57:25.743Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/loadbuilder/0.1.0", + "0.1.1": "http://registry.npmjs.org/loadbuilder/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "359c264002a7266216d9accd088dd8c98c152c23", + "tarball": "http://registry.npmjs.org/loadbuilder/-/loadbuilder-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "c1a8a9a106f40237f768e7ae7b2510f36a7693b6", + "tarball": "http://registry.npmjs.org/loadbuilder/-/loadbuilder-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/loadbuilder/" + }, + "loadit": { + "name": "loadit", + "description": "Asynchronously loads (requires) all files in the given directory and all recursive subdirectories that match the given regular expression.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "tmedema", + "email": "tommedema@gmail.com" + } + ], + "time": { + "modified": "2011-09-15T16:51:27.943Z", + "created": "2011-09-15T16:51:26.464Z", + "0.1.0": "2011-09-15T16:51:27.943Z" + }, + "author": { + "name": "Tom Medema", + "email": "tommedema@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/tommedema/node-loadit.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/loadit/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "d4c529bde56bed8ece6f0e796e76e3d43918a226", + "tarball": "http://registry.npmjs.org/loadit/-/loadit-0.1.0.tgz" + } + }, + "keywords": [ + "load", + "require", + "directory", + "recursive" + ], + "url": "http://registry.npmjs.org/loadit/" + }, + "loadr": { + "name": "loadr", + "description": "a library to load modules in the broswer", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "jga", + "email": "me@jga.me" + } + ], + "time": { + "modified": "2011-10-07T01:28:50.001Z", + "created": "2011-10-07T01:28:49.511Z", + "0.0.1": "2011-10-07T01:28:50.001Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/jgallen23/loadr.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/loadr/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "02976e6d51c24325a0a83080ff52fe0fcdedab66", + "tarball": "http://registry.npmjs.org/loadr/-/loadr-0.0.1.tgz" + } + }, + "keywords": [ + "ender", + "bundle", + "load", + "module" + ], + "url": "http://registry.npmjs.org/loadr/" + }, + "local-cdn": { + "name": "local-cdn", + "description": "A local server for handling static file bundling, and generating bundles for deployment.", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "larrymyers", + "email": "larry@larrymyers.com" + } + ], + "time": { + "modified": "2011-05-02T03:02:59.428Z", + "created": "2011-04-04T21:59:55.733Z", + "0.1.0": "2011-04-04T21:59:55.932Z", + "0.2.0": "2011-04-05T01:42:21.158Z", + "0.2.1": "2011-04-05T13:05:50.119Z", + "0.2.2": "2011-05-02T03:02:59.428Z" + }, + "author": { + "name": "Larry Myers", + "email": "larry@larrymyers.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/larrymyers/local-cdn.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/local-cdn/0.1.0", + "0.2.0": "http://registry.npmjs.org/local-cdn/0.2.0", + "0.2.1": "http://registry.npmjs.org/local-cdn/0.2.1", + "0.2.2": "http://registry.npmjs.org/local-cdn/0.2.2" + }, + "dist": { + "0.1.0": { + "shasum": "5e21c3b7d488f078655bc8e23c189acc677a368a", + "tarball": "http://registry.npmjs.org/local-cdn/-/local-cdn-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "03d927165a115750cc2d7fb613a8d52abe5053ed", + "tarball": "http://registry.npmjs.org/local-cdn/-/local-cdn-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "3c13b686a376a71995e122fe90e24309c1337ce2", + "tarball": "http://registry.npmjs.org/local-cdn/-/local-cdn-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "067d0546eb21cea5b1b59ee41c0494b28d430d10", + "tarball": "http://registry.npmjs.org/local-cdn/-/local-cdn-0.2.2.tgz" + } + }, + "url": "http://registry.npmjs.org/local-cdn/" + }, + "locales": { + "name": "locales", + "description": "Internationalization for node.js", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "shaun", + "email": "shonhen@gmail.com" + } + ], + "time": { + "modified": "2011-05-05T06:12:02.365Z", + "created": "2011-05-03T05:55:49.113Z", + "0.0.1": "2011-05-03T05:55:50.545Z", + "0.0.2": "2011-05-05T06:12:02.365Z" + }, + "author": { + "name": "Shaun Li", + "email": "shonhen@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/locales/0.0.1", + "0.0.2": "http://registry.npmjs.org/locales/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "eee39d0ad7add9fdcc5d34471d1b34b85e7149eb", + "tarball": "http://registry.npmjs.org/locales/-/locales-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "67db246a85870cee7e5cc4317ebbb9b79579522c", + "tarball": "http://registry.npmjs.org/locales/-/locales-0.0.2.tgz" + } + }, + "keywords": [ + "i18n" + ], + "url": "http://registry.npmjs.org/locales/" + }, + "localhose": { + "name": "localhose", + "description": "Hose your hosts file for easier local web development", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "jed", + "email": "tr@nslator.jp" + } + ], + "time": { + "modified": "2011-03-03T03:04:52.437Z", + "created": "2011-03-02T09:00:02.127Z", + "0.0.1": "2011-03-02T09:00:02.869Z", + "0.1.2": "2011-03-02T14:14:22.475Z", + "0.1.3": "2011-03-02T14:43:25.306Z", + "0.1.4": "2011-03-03T03:04:52.437Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/jed/localhose.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/localhose/0.0.1", + "0.1.2": "http://registry.npmjs.org/localhose/0.1.2", + "0.1.3": "http://registry.npmjs.org/localhose/0.1.3", + "0.1.4": "http://registry.npmjs.org/localhose/0.1.4" + }, + "dist": { + "0.0.1": { + "shasum": "d99aba2d20ca4beaf16cccfb2910d637d18e4782", + "tarball": "http://registry.npmjs.org/localhose/-/localhose-0.0.1.tgz" + }, + "0.1.2": { + "shasum": "19759a5555662a5b2c7f5b9af2b77a94c1cba484", + "tarball": "http://registry.npmjs.org/localhose/-/localhose-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "297b042b74e28d277001b1c041b2d492750f7376", + "tarball": "http://registry.npmjs.org/localhose/-/localhose-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "1aa4d0d7b4301f142dde95713296a0bd08da56aa", + "tarball": "http://registry.npmjs.org/localhose/-/localhose-0.1.4.tgz" + } + }, + "url": "http://registry.npmjs.org/localhose/" + }, + "localhost": { + "name": "localhost", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "umairsiddique", + "email": "umairsiddique@gmail.com" + } + ], + "time": { + "modified": "2011-09-15T01:48:00.523Z", + "created": "2011-09-15T01:47:58.847Z", + "0.0.0": "2011-09-15T01:48:00.523Z" + }, + "author": { + "name": "Umair Siddique", + "email": "umairsiddique@gmail.com" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/localhost/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "71c7c5a2043f2e665b8c1faaeadbd59087ec2664", + "tarball": "http://registry.npmjs.org/localhost/-/localhost-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/localhost/" + }, + "localhostapp": { + "name": "localhostapp", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "umairsiddique", + "email": "umairsiddique@gmail.com" + } + ], + "time": { + "modified": "2011-09-15T01:56:04.184Z", + "created": "2011-09-15T01:56:02.470Z", + "0.0.0": "2011-09-15T01:56:04.184Z" + }, + "author": { + "name": "Umair Siddique", + "email": "umairsiddique@gmail.com" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/localhostapp/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "517548621f01b66fb35b5137e23f560eafb3501d", + "tarball": "http://registry.npmjs.org/localhostapp/-/localhostapp-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/localhostapp/" + }, + "localize": { + "name": "localize", + "description": "A GNU gettext-inspired (but not conformant) localization library for Node.js", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "dfellis", + "email": "d.f.ellis@ieee.org" + } + ], + "time": { + "modified": "2011-09-19T17:19:12.753Z", + "created": "2011-09-01T02:15:31.014Z", + "0.1.0": "2011-09-01T02:15:31.215Z", + "0.1.1": "2011-09-01T14:29:59.543Z", + "0.2.0": "2011-09-19T17:19:12.753Z" + }, + "author": { + "name": "David Ellis" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/localize/0.1.0", + "0.1.1": "http://registry.npmjs.org/localize/0.1.1", + "0.2.0": "http://registry.npmjs.org/localize/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "fdc5ec5f525bb917146cce9b40cbdf808f038f68", + "tarball": "http://registry.npmjs.org/localize/-/localize-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "9f3b1afbc83493ecf5f0955a79dc79df0893ea40", + "tarball": "http://registry.npmjs.org/localize/-/localize-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "55941eb33dbe65b72aa3751f87b5ed9b477d212c", + "tarball": "http://registry.npmjs.org/localize/-/localize-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/localize/" + }, + "localStorage": { + "name": "localStorage", + "description": "W3C localStorage for Node.JS", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-07-22T18:51:03.108Z", + "created": "2011-07-22T18:51:02.755Z", + "1.0.0": "2011-07-22T18:51:03.108Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com", + "url": "http://coolaj86.info" + }, + "repository": { + "type": "git", + "url": "git://github.com/coolaj86/node-localStorage.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/localStorage/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "644ff36f9f8fe88fabb68bcbce3aa32841ce56ae", + "tarball": "http://registry.npmjs.org/localStorage/-/localStorage-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/localStorage/" + }, + "location": { + "name": "location", + "description": "A Browser-esque location object", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-07-26T19:00:15.725Z", + "created": "2011-07-26T19:00:15.376Z", + "0.0.1": "2011-07-26T19:00:15.725Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com", + "url": "http://coolaj86.info" + }, + "repository": { + "type": "git", + "url": "git://github.com/coolaj86/node-location.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/location/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "fa071d21365dd76661e2271ade8ca1314dc6f580", + "tarball": "http://registry.npmjs.org/location/-/location-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/location/" + }, + "lockfile": { + "name": "lockfile", + "description": "A simple utility for creating/checking lockfiles", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "TrevorBurnham", + "email": "trevorburnham@gmail.com" + } + ], + "time": { + "modified": "2011-01-31T02:18:35.974Z", + "created": "2011-01-31T02:18:35.133Z", + "0.1.0": "2011-01-31T02:18:35.974Z" + }, + "author": { + "name": "Trevor Burnham" + }, + "repository": { + "type": "git", + "url": "http://github.com/TrevorBurnham/lockfile.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/lockfile/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "f2c4129ae6cc8d033b5ca9ae7d30775a727ab588", + "tarball": "http://registry.npmjs.org/lockfile/-/lockfile-0.1.0.tgz" + } + }, + "keywords": [ + "tool", + "fs" + ], + "url": "http://registry.npmjs.org/lockfile/" + }, + "locomotive": { + "name": "locomotive", + "description": "Easy web development for Node.js.", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "jaredhanson", + "email": "jaredhanson@gmail.com" + } + ], + "time": { + "modified": "2011-12-12T16:27:13.992Z", + "created": "2011-10-02T17:42:54.686Z", + "0.1.0": "2011-10-02T17:42:56.072Z", + "0.1.1": "2011-10-03T01:11:06.195Z", + "0.1.2": "2011-12-12T16:27:13.992Z" + }, + "author": { + "name": "Jared Hanson", + "email": "jaredhanson@gmail.com", + "url": "http://www.jaredhanson.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jaredhanson/locomotive.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/locomotive/0.1.0", + "0.1.1": "http://registry.npmjs.org/locomotive/0.1.1", + "0.1.2": "http://registry.npmjs.org/locomotive/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "be53cfae021c2697e82f1c5cb746939fb0fa5e92", + "tarball": "http://registry.npmjs.org/locomotive/-/locomotive-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "c82d0e91d65b34308a782d313acc4af24ef99b84", + "tarball": "http://registry.npmjs.org/locomotive/-/locomotive-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "0cc03d33b42ab5fdb230824af2fbdb9171d9b6cd", + "tarball": "http://registry.npmjs.org/locomotive/-/locomotive-0.1.2.tgz" + } + }, + "keywords": [ + "express", + "connect", + "web", + "mvc", + "rails", + "django" + ], + "url": "http://registry.npmjs.org/locomotive/" + }, + "lode": { + "name": "lode", + "description": "An asynchronous package-aware module loader.", + "dist-tags": { + "latest": "0.0.7" + }, + "maintainers": [ + { + "name": "kriskowal", + "email": "kris.kowal@cixar.com" + } + ], + "time": { + "modified": "2011-03-08T01:55:24.544Z", + "created": "2011-02-09T00:29:20.751Z", + "0.0.0": "2011-02-09T00:29:21.109Z", + "0.0.2": "2011-02-10T23:44:44.428Z", + "0.0.3": "2011-02-10T23:52:14.554Z", + "0.0.4": "2011-03-03T18:10:07.319Z", + "0.0.5": "2011-03-05T01:18:37.624Z", + "0.0.6": "2011-03-07T23:36:20.195Z", + "0.0.7": "2011-03-08T01:55:24.544Z" + }, + "author": { + "name": "Kris Kowal", + "email": "kris@cixar.com", + "url": "http://github.com/kriskowal/" + }, + "repository": { + "type": "git", + "url": "http://github.com/kriskowal/lode.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/lode/0.0.0", + "0.0.2": "http://registry.npmjs.org/lode/0.0.2", + "0.0.3": "http://registry.npmjs.org/lode/0.0.3", + "0.0.4": "http://registry.npmjs.org/lode/0.0.4", + "0.0.5": "http://registry.npmjs.org/lode/0.0.5", + "0.0.6": "http://registry.npmjs.org/lode/0.0.6", + "0.0.7": "http://registry.npmjs.org/lode/0.0.7" + }, + "dist": { + "0.0.0": { + "tarball": "http://registry.npmjs.org/lode/-/lode-0.0.0.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/lode/-/lode-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/lode/-/lode-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "540a95d21e5375071d31cad5feffd7d1dce342d5", + "tarball": "http://registry.npmjs.org/lode/-/lode-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "1aa66252baed781acce9214834ba8669c8cd5a4a", + "tarball": "http://registry.npmjs.org/lode/-/lode-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "6f4e613c1db7ea7eeeb59a776f2fa102e2a357bf", + "tarball": "http://registry.npmjs.org/lode/-/lode-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "c00a5a648ab40cde1cf297dadf4ba4744cfa8036", + "tarball": "http://registry.npmjs.org/lode/-/lode-0.0.7.tgz" + } + }, + "url": "http://registry.npmjs.org/lode/" + }, + "log": { + "name": "log", + "description": "Tiny logger with streaming reader", + "dist-tags": { + "latest": "1.2.0" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "time": { + "modified": "2011-05-23T18:29:33.567Z", + "created": "2011-05-23T18:29:33.567Z", + "1.0.0": "2011-05-23T18:29:33.567Z", + "1.1.0": "2011-05-23T18:29:33.567Z", + "1.1.1": "2011-05-23T18:29:33.567Z", + "1.2.0": "2011-05-23T18:29:33.567Z" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/log/1.0.0", + "1.1.0": "http://registry.npmjs.org/log/1.1.0", + "1.1.1": "http://registry.npmjs.org/log/1.1.1", + "1.2.0": "http://registry.npmjs.org/log/1.2.0" + }, + "dist": { + "1.0.0": { + "tarball": "http://packages:5984/log/-/log-1.0.0.tgz" + }, + "1.1.0": { + "tarball": "http://packages:5984/log/-/log-1.1.0.tgz" + }, + "1.1.1": { + "tarball": "http://packages:5984/log/-/log-1.1.1.tgz" + }, + "1.2.0": { + "shasum": "04dc8aeb9ec3a5dd8ef9e8ebac8385bad28ccc69", + "tarball": "http://registry.npmjs.org/log/-/log-1.2.0.tgz" + } + }, + "keywords": [ + "log", + "logger" + ], + "url": "http://registry.npmjs.org/log/" + }, + "log-buddy": { + "name": "log-buddy", + "description": "Easy console debugging (partial port of original ruby version: https://github.com/relevance/log_buddy", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "excsm", + "email": "saimonmoore@gmail.com" + } + ], + "time": { + "modified": "2011-09-02T11:24:05.428Z", + "created": "2011-09-02T11:24:04.587Z", + "0.0.1": "2011-09-02T11:24:05.428Z" + }, + "author": { + "name": "Saimon Moore", + "email": "saimonmoore@gmail.com", + "url": "http://saimonmoore.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/saimonmoore/log_buddy.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/log-buddy/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "66aa429f0935913e88b54e1e974de4ea788b4565", + "tarball": "http://registry.npmjs.org/log-buddy/-/log-buddy-0.0.1.tgz" + } + }, + "keywords": [ + "logging", + "debugging" + ], + "url": "http://registry.npmjs.org/log-buddy/" + }, + "log-to-file": { + "name": "log-to-file", + "description": "A simple log writer. Rotation and compression (gzip) are supported.", + "dist-tags": { + "latest": "0.1.1" + }, + "readme": "# node-log-to-file\nA simple log writer for node js. \nRotation and compression (gzip) are supported.\n\n\n* http://nodejs.org\n\n## Installation with npm > TODO\n### Installing npm (node package manager: http://npmjs.org/)\n\n```\ncurl http://npmjs.org/install.sh || sh\t\n```\n\n### Installing log-to-file\n\n```\n[sudo] npm install [-g] log-to-file\n```\n\n\n## Usage\n### Basic \n```javascript\nlogToFile = require('log-to-file'),\nlog = logToFile.create({\n\t\tdirectory: __dirname/log,\n\t\tfileName: 'log.txt'\n});\nlog.write('hello world');\n\t\t\n```\n```\nThis will create log files following this naming convention:\n\toriginal: fileName [+ '.' + fileExt]\n\trotation: filename [+ '.' + fileExt] + '.' + fileIndex \n\tcompression: filename [+ '.' + fileExt] + '.' + fileIndex + '.gz'\n\nOlder files have got bigger index:\n-rw-r--r-- 1 sebastiend staff 1769472 14 nov 15:38 benchtest.txt\n-rw-r--r-- 1 sebastiend staff 5242880 14 nov 15:39 benchtest.txt.0\n-rw-r--r-- 1 sebastiend staff 5242880 14 nov 15:40 benchtest.txt.1\n-rw-r--r-- 1 sebastiend staff 5242880 14 nov 15:41 benchtest.txt.2\n-rw-r--r-- 1 sebastiend staff 5242880 14 nov 15:42 benchtest.txt.3\n-rw-r--r-- 1 sebastiend staff 5242880 14 nov 15:43 benchtest.txt.4\n\nOlder files have got bigger index, with gzip enabled\n-rw-r--r-- 1 sebastiend staff 5242880 14 nov 15:40 benchtest.txt\n-rw-r--r-- 1 sebastiend staff 5129 14 nov 15:41 benchtest.txt.0.gz\n-rw-r--r-- 1 sebastiend staff 5129 14 nov 15:42 benchtest.txt.1.gz\n-rw-r--r-- 1 sebastiend staff 5129 14 nov 15:43 benchtest.txt.2.gz\n-rw-r--r-- 1 sebastiend staff 5129 14 nov 15:44 benchtest.txt.3.gz\n-rw-r--r-- 1 sebastiend staff 5129 14 nov 15:45 benchtest.txt.4.gz\n\n```\n\n## Exports \n### 'create'\nReturns a LogToFile instance.\n\n```\n/**\n* @class LogToFile\n* @params config.fileName {string} \n* @params config.directory {string} \n* @params [config.writeDelay] {number} Buffer flushed timming (default 200ms)\n* @params [config.bufferSize] {number} Buffer blocks size (default 65536o) \n* @params [config.fileMaxSize] {number} Max file size (default 5MB) \n* @params [config.maxBackupFileNumber] {number} Max backup file number (default 10) \n* @params [config.gzipBackupFile] {boolean} gzip backup files (default false) \n* @event error({object} exception)\n* @event writting({string} filePath): starting to write everything\n* @event written({string} filePath): everything is written\n* @event backuped({string} filePath, {string} newFilePath): filePath was renamed to newFilePath\n* @event gzipping({string} filePath, {string} gzippedFilePath): starting to gzip filePath to gzippedFilePath\n* @event gzipped({string} filePath, {string} gzippedFilePath): filePath was gzipped to gzippedFilePath\n* @throw EEMPTYFILENAME\n* @throw EDIRNOTFOUND\n* @throw EEMPTYDIRECTORY\n*/\n```\n\n## Known issues\n\n## Test\nJust run test/run_test.js\n\n## Bench\nJust run test/log-to-file-bench.js\n\n```\nBench on my MacBook Pro 10.6.8, 2.53GHz Intel Core 2 Duo, 7200 HDD) with node 0.6.0:\nRunning bench 0. fileMaxSize: 5.00MB, maxBackupFileNumber: 0, gzipBackupFile: 0\n................Total:1.00GB in 14224ms: 71.99MB/s\nRunning bench 1. fileMaxSize: 5.00MB, maxBackupFileNumber: 0, gzipBackupFile: 1\n................Total:1.00GB in 14026ms: 73.01MB/s\nRunning bench 2. fileMaxSize: 5.00MB, maxBackupFileNumber: 5, gzipBackupFile: 0\n................Total:1.00GB in 11164ms: 91.72MB/s\nRunning bench 3. fileMaxSize: 5.00MB, maxBackupFileNumber: 10, gzipBackupFile: 0\n................Total:1.00GB in 10869ms: 94.21MB/s\nRunning bench 4. fileMaxSize: 10.00MB, maxBackupFileNumber: 10, gzipBackupFile: 0\n................Total:1.00GB in 11778ms: 86.94MB/s\nRunning bench 5. fileMaxSize: 5.00MB, maxBackupFileNumber: 5, gzipBackupFile: 1\n................Total:1.00GB in 25461ms: 40.22MB/s\nRunning bench 6. fileMaxSize: 5.00MB, maxBackupFileNumber: 10, gzipBackupFile: 1\n................Total:1.00GB in 34820ms: 29.41MB/s\nRunning bench 7. fileMaxSize: 10.00MB, maxBackupFileNumber: 10, gzipBackupFile: 1\n................Total:1.00GB in 42160ms: 24.29MB/s\nAll done\n```\n\n## License\nnode-log-to-file is licensed under the MIT license.", + "maintainers": [ + { + "name": "sdolard", + "email": "sdolard@gmail.com" + } + ], + "time": { + "modified": "2011-11-14T17:18:51.771Z", + "created": "2011-11-14T16:45:07.630Z", + "0.1.0": "2011-11-14T16:45:09.163Z", + "0.1.1": "2011-11-14T17:18:51.771Z" + }, + "author": { + "name": "Sebastien Dolard" + }, + "repository": { + "type": "git", + "url": "git://github.com/sdolard/node-log-to-file.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/log-to-file/0.1.0", + "0.1.1": "http://registry.npmjs.org/log-to-file/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "33c1591a78eba39547070bfb2ee7f5a7dc66b8cd", + "tarball": "http://registry.npmjs.org/log-to-file/-/log-to-file-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "27864624f200567a0d4264ae3cc24362bc21a0e5", + "tarball": "http://registry.npmjs.org/log-to-file/-/log-to-file-0.1.1.tgz" + } + }, + "keywords": [ + "log", + "writter", + "rotation" + ], + "url": "http://registry.npmjs.org/log-to-file/" + }, + "log-watcher": { + "name": "log-watcher", + "description": "Watches log files for changes and sends a notification if a pre-defined pattern is detected or a tracked file is deleted.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "Kami", + "email": "tomaz@tomaz.me" + } + ], + "time": { + "modified": "2011-01-02T03:13:53.372Z", + "created": "2011-01-02T03:13:52.951Z", + "0.1.0": "2011-01-02T03:13:53.372Z" + }, + "author": { + "name": "Tomaz Muraus", + "email": "tomaz+npm@tomaz.me" + }, + "repository": { + "type": "git", + "url": "https://github.com/Kami/node-log-watcher.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/log-watcher/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "aeb5534e5d576f81d0d998724b803faa27d80374", + "tarball": "http://registry.npmjs.org/log-watcher/-/log-watcher-0.1.0.tgz" + } + }, + "keywords": [ + "watcher", + "log", + "files", + "notification", + "alert" + ], + "url": "http://registry.npmjs.org/log-watcher/" + }, + "log.io": { + "name": "log.io", + "description": "Real-time log monitoring in your browser", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "msmathers", + "email": "msmathers@narrativescience.com" + } + ], + "time": { + "modified": "2011-10-01T02:26:38.468Z", + "created": "2011-10-01T02:26:38.349Z", + "0.2.1": "2011-10-01T02:26:38.468Z" + }, + "author": { + "name": "Mike Smathers", + "email": "msmathers@narrativescience.com" + }, + "repository": { + "type": "git", + "url": "https://github.com/NarrativeScience/Log.io" + }, + "versions": { + "0.2.1": "http://registry.npmjs.org/log.io/0.2.1" + }, + "dist": { + "0.2.1": { + "tarball": "http://registry.npmjs.org/log.io/-/log.io-0.2.1.tgz" + } + }, + "keywords": [ + "logs", + "monitoring", + "realtime", + "socket.io", + "node.js", + "ajax" + ], + "url": "http://registry.npmjs.org/log.io/" + }, + "log4js": { + "name": "log4js", + "description": "Port of Log4js to work with node.", + "dist-tags": { + "latest": "0.4.1" + }, + "maintainers": [ + { + "name": "csausdev", + "email": "gareth.jones@sensis.com.au" + } + ], + "author": { + "name": "Gareth Jones", + "email": "gareth.jones@sensis.com.au" + }, + "time": { + "modified": "2011-11-23T21:41:28.016Z", + "created": "2011-01-16T02:25:47.375Z", + "0.1.0": "2011-01-16T02:25:47.375Z", + "0.2.0": "2011-01-16T02:25:47.375Z", + "0.2.2": "2011-01-16T02:25:47.375Z", + "0.2.3": "2011-01-16T02:25:47.375Z", + "0.2.4": "2011-03-04T08:51:36.020Z", + "0.2.5": "2011-04-17T08:21:00.536Z", + "0.2.6": "2011-06-05T03:48:53.180Z", + "0.3.0": "2011-07-17T11:03:55.352Z", + "0.3.1": "2011-07-18T23:44:21.255Z", + "0.3.2": "2011-07-20T10:39:06.334Z", + "0.3.3": "2011-07-21T09:09:58.690Z", + "0.3.4": "2011-07-21T10:43:25.119Z", + "0.3.5": "2011-07-25T23:18:49.168Z", + "0.3.6": "2011-07-27T00:38:04.119Z", + "0.3.7": "2011-07-27T11:23:21.704Z", + "0.3.8": "2011-08-11T06:28:18.979Z", + "0.3.9": "2011-09-14T22:30:32.658Z", + "0.4.0": "2011-11-21T05:18:24.317Z", + "0.4.1": "2011-11-23T21:41:28.016Z" + }, + "users": { + "naholyr": true + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/log4js/0.1.0", + "0.2.0": "http://registry.npmjs.org/log4js/0.2.0", + "0.2.2": "http://registry.npmjs.org/log4js/0.2.2", + "0.2.3": "http://registry.npmjs.org/log4js/0.2.3", + "0.2.4": "http://registry.npmjs.org/log4js/0.2.4", + "0.2.5": "http://registry.npmjs.org/log4js/0.2.5", + "0.2.6": "http://registry.npmjs.org/log4js/0.2.6", + "0.3.0": "http://registry.npmjs.org/log4js/0.3.0", + "0.3.1": "http://registry.npmjs.org/log4js/0.3.1", + "0.3.2": "http://registry.npmjs.org/log4js/0.3.2", + "0.3.3": "http://registry.npmjs.org/log4js/0.3.3", + "0.3.4": "http://registry.npmjs.org/log4js/0.3.4", + "0.3.5": "http://registry.npmjs.org/log4js/0.3.5", + "0.3.6": "http://registry.npmjs.org/log4js/0.3.6", + "0.3.7": "http://registry.npmjs.org/log4js/0.3.7", + "0.3.8": "http://registry.npmjs.org/log4js/0.3.8", + "0.3.9": "http://registry.npmjs.org/log4js/0.3.9", + "0.4.0": "http://registry.npmjs.org/log4js/0.4.0", + "0.4.1": "http://registry.npmjs.org/log4js/0.4.1" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/log4js/-/log4js-0.1.0.tgz" + }, + "0.2.0": { + "tarball": "http://registry.npmjs.org/log4js/-/log4js-0.2.0.tgz" + }, + "0.2.2": { + "tarball": "http://registry.npmjs.org/log4js/-/log4js-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "c6b49fb2815a444dd0ac8bc5f7da0cc1a5be8c53", + "tarball": "http://registry.npmjs.org/log4js/-/log4js-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "5b718ae1ae7dded99d1931cd932f7d2c45ee64cc", + "tarball": "http://registry.npmjs.org/log4js/-/log4js-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "498522ff1b81b20803e2777ad44f10a03bd3f4fb", + "tarball": "http://registry.npmjs.org/log4js/-/log4js-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "78f73445823bcbc2c7c7245d3dbe04e3b211ac9a", + "tarball": "http://registry.npmjs.org/log4js/-/log4js-0.2.6.tgz" + }, + "0.3.0": { + "shasum": "dbbe3c81babd72701b966897bdbb3689054b3901", + "tarball": "http://registry.npmjs.org/log4js/-/log4js-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "bd66ca1114f4cd452fa66dee1ddd265c5bf91b7b", + "tarball": "http://registry.npmjs.org/log4js/-/log4js-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "d98b51e668b3e0cd476ca3e0c7a0d4bbe69a475b", + "tarball": "http://registry.npmjs.org/log4js/-/log4js-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "f2a85b0208ae9cac940fa579bcb7d7001ca55b70", + "tarball": "http://registry.npmjs.org/log4js/-/log4js-0.3.3.tgz" + }, + "0.3.4": { + "shasum": "7093a1fd1c1628d1c62e4b0681fbb4bb5422c648", + "tarball": "http://registry.npmjs.org/log4js/-/log4js-0.3.4.tgz" + }, + "0.3.5": { + "shasum": "6cc991d3cac23ad523979da771c323b02b58c067", + "tarball": "http://registry.npmjs.org/log4js/-/log4js-0.3.5.tgz" + }, + "0.3.6": { + "shasum": "c19558218cc2f41440e30c564ddea8e7842f651b", + "tarball": "http://registry.npmjs.org/log4js/-/log4js-0.3.6.tgz" + }, + "0.3.7": { + "shasum": "cbfefbbcc1dabae3de486d12d6dd25093fed40fc", + "tarball": "http://registry.npmjs.org/log4js/-/log4js-0.3.7.tgz" + }, + "0.3.8": { + "shasum": "64a244857c811c7adc8ce0c88619671b91d8e9f1", + "tarball": "http://registry.npmjs.org/log4js/-/log4js-0.3.8.tgz" + }, + "0.3.9": { + "shasum": "ac981d408f4a77b77627708268d3584f2bd38cf9", + "tarball": "http://registry.npmjs.org/log4js/-/log4js-0.3.9.tgz" + }, + "0.4.0": { + "shasum": "0145a12a704e8b7a48929be39f359954962ce9b6", + "tarball": "http://registry.npmjs.org/log4js/-/log4js-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "d1280b39d54bd28ac396f173b0a291516e289264", + "tarball": "http://registry.npmjs.org/log4js/-/log4js-0.4.1.tgz" + } + }, + "keywords": [ + "logging", + "log", + "log4j", + "node" + ], + "url": "http://registry.npmjs.org/log4js/" + }, + "log4js-amqp": { + "name": "log4js-amqp", + "description": "A log4js log appender to push logs into AMQP", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "pfleidi", + "email": "sg+npm@roothausen.de" + } + ], + "time": { + "modified": "2011-01-22T00:12:12.052Z", + "created": "2011-01-22T00:12:11.099Z", + "0.0.1": "2011-01-22T00:12:12.052Z" + }, + "author": { + "name": "Sven Pfleiderer", + "email": "sven@roothausen.de" + }, + "repository": { + "type": "git", + "url": "http://github.com/pfleidi/log4js-amqp.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/log4js-amqp/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "568374eeca5703ae66f14ed24cfdb27cc9abe90e", + "tarball": "http://registry.npmjs.org/log4js-amqp/-/log4js-amqp-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/log4js-amqp/" + }, + "log5": { + "name": "log5", + "description": "A simple logging utility", + "dist-tags": { + "latest": "1.2.6" + }, + "maintainers": [ + { + "name": "sleeplessinc", + "email": "joe@sleepless.com" + } + ], + "time": { + "modified": "2011-09-10T03:48:43.187Z", + "created": "2011-08-02T18:44:28.034Z", + "1.0.2": "2011-08-02T18:44:30.793Z", + "1.0.3": "2011-08-04T22:46:05.542Z", + "1.1.0": "2011-09-09T16:57:52.432Z", + "1.1.1": "2011-09-09T19:02:27.159Z", + "1.2.0": "2011-09-09T19:46:03.061Z", + "1.2.1": "2011-09-09T20:03:04.275Z", + "1.2.5": "2011-09-09T20:54:33.449Z", + "1.2.6": "2011-09-10T03:48:43.187Z" + }, + "author": { + "name": "Joe Hitchens", + "email": "joe@sleepless.com", + "url": "sleepless.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/sleeplessinc/log5.git" + }, + "versions": { + "1.0.2": "http://registry.npmjs.org/log5/1.0.2", + "1.0.3": "http://registry.npmjs.org/log5/1.0.3", + "1.1.0": "http://registry.npmjs.org/log5/1.1.0", + "1.1.1": "http://registry.npmjs.org/log5/1.1.1", + "1.2.0": "http://registry.npmjs.org/log5/1.2.0", + "1.2.1": "http://registry.npmjs.org/log5/1.2.1", + "1.2.5": "http://registry.npmjs.org/log5/1.2.5", + "1.2.6": "http://registry.npmjs.org/log5/1.2.6" + }, + "dist": { + "1.0.2": { + "shasum": "b9b1aa39f2095609db5a582e5ec13693db0558ca", + "tarball": "http://registry.npmjs.org/log5/-/log5-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "dd10c024302258d42c164a90ec521e9586f30615", + "tarball": "http://registry.npmjs.org/log5/-/log5-1.0.3.tgz" + }, + "1.1.0": { + "shasum": "688ed9a4a8985fcf02cf9077eeb8c515d7f3bb96", + "tarball": "http://registry.npmjs.org/log5/-/log5-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "fe07df350a46df9b1464c1c2387724ceeec7de17", + "tarball": "http://registry.npmjs.org/log5/-/log5-1.1.1.tgz" + }, + "1.2.0": { + "shasum": "798a57feed3a26296e1bc3af21910497df5081df", + "tarball": "http://registry.npmjs.org/log5/-/log5-1.2.0.tgz" + }, + "1.2.1": { + "shasum": "35217c42817d88b5b91c5c79e2d69d3f050ea7a1", + "tarball": "http://registry.npmjs.org/log5/-/log5-1.2.1.tgz" + }, + "1.2.5": { + "shasum": "30beb347688dd653becca7feee3cff643fcbf377", + "tarball": "http://registry.npmjs.org/log5/-/log5-1.2.5.tgz" + }, + "1.2.6": { + "shasum": "4fbd17de4db15f6365ad923174b9e401f8d3640e", + "tarball": "http://registry.npmjs.org/log5/-/log5-1.2.6.tgz" + } + }, + "url": "http://registry.npmjs.org/log5/" + }, + "logbot": { + "name": "logbot", + "description": "Simple IRC logging.", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "jsocol", + "email": "james.socol@gmail.com" + } + ], + "time": { + "modified": "2011-04-08T16:01:28.590Z", + "created": "2011-04-08T16:01:28.327Z", + "0.3.0": "2011-04-08T16:01:28.590Z" + }, + "author": { + "name": "James Socol", + "email": "james@mozilla.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/jsocol/logbot.git" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/logbot/0.3.0" + }, + "dist": { + "0.3.0": { + "shasum": "25b0011f718e34e3dce6bd2c37311c634fbce5dd", + "tarball": "http://registry.npmjs.org/logbot/-/logbot-0.3.0.tgz" + } + }, + "keywords": [ + "irc", + "logging" + ], + "url": "http://registry.npmjs.org/logbot/" + }, + "logerize": { + "name": "logerize", + "description": "Colorized log module.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "zyndiecate", + "email": "kevin.reet@googlemail.com" + } + ], + "time": { + "modified": "2011-12-06T00:14:09.996Z", + "created": "2011-10-18T17:15:26.840Z", + "0.0.1": "2011-10-18T17:15:29.271Z", + "0.0.2": "2011-12-06T00:14:09.996Z" + }, + "author": { + "name": "Tim Schindler", + "email": "tim.schindler@adcloud.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/zyndiecate/callbackQueue.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/logerize/0.0.1", + "0.0.2": "http://registry.npmjs.org/logerize/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "e40d1c2872f3fdce9272740a5cf823ba5fda9ec3", + "tarball": "http://registry.npmjs.org/logerize/-/logerize-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "9f1bec5158880c2b245f93940a4b1d60558b0a63", + "tarball": "http://registry.npmjs.org/logerize/-/logerize-0.0.2.tgz" + } + }, + "keywords": [ + "colors", + "logging" + ], + "url": "http://registry.npmjs.org/logerize/" + }, + "logg": { + "name": "logg", + "description": "Logging library that allows for hierarchical loggers, multiple log levels, and flexible watching of log records.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "dpup", + "email": "dan@pupi.us" + } + ], + "time": { + "modified": "2011-11-02T20:20:00.244Z", + "created": "2011-11-02T20:19:58.646Z", + "0.1.0": "2011-11-02T20:20:00.244Z" + }, + "author": { + "name": "Daniel Pupius", + "email": "dan@pupi.us", + "url": "http://pupius.co.uk" + }, + "repository": { + "type": "git", + "url": "git://github.com/dpup/node-logg.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/logg/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "a134a4901ec65b77fb8f547a290166bb67d3a714", + "tarball": "http://registry.npmjs.org/logg/-/logg-0.1.0.tgz" + } + }, + "keywords": [ + "log", + "logging", + "logger", + "hierarchical", + "handler", + "watcher" + ], + "url": "http://registry.npmjs.org/logg/" + }, + "logged": { + "name": "logged", + "description": "logging library", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "brianc", + "email": "brian.m.carlson@gmail.com" + } + ], + "time": { + "modified": "2011-10-25T16:59:47.364Z", + "created": "2011-10-25T03:03:10.741Z", + "0.0.0": "2011-10-25T03:03:11.861Z", + "0.0.2": "2011-10-25T16:59:47.364Z" + }, + "author": { + "name": "Brian M. Carlson", + "email": "brian@enginode.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/brianc/logged.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/logged/0.0.0", + "0.0.2": "http://registry.npmjs.org/logged/0.0.2" + }, + "dist": { + "0.0.0": { + "shasum": "dfd7c63eeb36e0958c3e859d9bb8a209d7f6ee86", + "tarball": "http://registry.npmjs.org/logged/-/logged-0.0.0.tgz" + }, + "0.0.2": { + "shasum": "b67a2e0aa9c3ab60e4bc5945da35da5127a23ac7", + "tarball": "http://registry.npmjs.org/logged/-/logged-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/logged/" + }, + "logger": { + "name": "logger", + "description": "A simple logging library that combines the simple APIs of Ruby's logger.rb and browser-js console.log()", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "quirkey", + "email": "aaron@quirkey.com" + } + ], + "author": { + "name": "Aaron Quint", + "email": "aaron@quirkey.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/logger/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "cb08171f8a6f6f674b8499dadf50bed4befb72c4", + "tarball": "http://registry.npmjs.org/logger/-/logger-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/logger/" + }, + "logging": { + "name": "logging", + "description": "Simple and extensible logging.", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "dylang", + "email": "dylang@gmail.com" + } + ], + "author": { + "name": "Mikeal Rogers", + "email": "mikeal.rogers@gmail.com" + }, + "repository": { + "url": "" + }, + "time": { + "modified": "2011-12-14T06:52:46.474Z", + "created": "2011-03-02T21:38:38.623Z", + "2.0.0": "2011-03-02T21:38:38.623Z", + "2.0.1": "2011-03-02T21:38:38.623Z", + "2.0.2": "2011-03-02T21:38:38.623Z", + "2.0.3": "2011-03-02T21:38:38.623Z", + "2.0.4": "2011-03-02T21:38:38.623Z", + "2.0.6": "2011-03-02T21:38:38.623Z", + "2.0.8": "2011-04-18T19:40:23.244Z", + "2.0.9": "2011-08-01T20:04:21.566Z", + "2.0.10": "2011-08-29T22:21:17.213Z", + "2.0.11": "2011-09-27T16:32:45.433Z", + "2.0.12": "2011-10-28T19:06:06.188Z", + "2.0.13": "2011-11-23T21:43:31.302Z", + "0.0.0": "2011-12-14T06:52:46.474Z" + }, + "users": { + "dylang": true + }, + "versions": { + "2.0.0": "http://registry.npmjs.org/logging/2.0.0", + "2.0.1": "http://registry.npmjs.org/logging/2.0.1", + "2.0.2": "http://registry.npmjs.org/logging/2.0.2", + "2.0.3": "http://registry.npmjs.org/logging/2.0.3", + "2.0.4": "http://registry.npmjs.org/logging/2.0.4", + "2.0.6": "http://registry.npmjs.org/logging/2.0.6", + "2.0.8": "http://registry.npmjs.org/logging/2.0.8", + "2.0.9": "http://registry.npmjs.org/logging/2.0.9", + "2.0.10": "http://registry.npmjs.org/logging/2.0.10", + "2.0.11": "http://registry.npmjs.org/logging/2.0.11", + "2.0.12": "http://registry.npmjs.org/logging/2.0.12", + "2.0.13": "http://registry.npmjs.org/logging/2.0.13", + "0.0.0": "http://registry.npmjs.org/logging/0.0.0" + }, + "dist": { + "2.0.0": { + "tarball": "http://packages:5984/logging/-/logging-2.0.0.tgz" + }, + "2.0.1": { + "tarball": "http://packages:5984/logging/-/logging-2.0.1.tgz" + }, + "2.0.2": { + "tarball": "http://packages:5984/logging/-/logging-2.0.2.tgz" + }, + "2.0.3": { + "tarball": "http://packages:5984/logging/-/logging-2.0.3.tgz" + }, + "2.0.4": { + "shasum": "bbd6507d4bff101c3fb335f91c95878dbf3117ad", + "tarball": "http://registry.npmjs.org/logging/-/logging-2.0.4.tgz" + }, + "2.0.6": { + "shasum": "08ce6d2dc1512911fbcb40a694da1e1100814911", + "tarball": "http://registry.npmjs.org/logging/-/logging-2.0.6.tgz" + }, + "2.0.8": { + "shasum": "efeb95770cbc6da5acaa0a65b0d59f01e71adb53", + "tarball": "http://registry.npmjs.org/logging/-/logging-2.0.8.tgz" + }, + "2.0.9": { + "shasum": "8c474468a11b8e93ce928813267f0cf507f94db1", + "tarball": "http://registry.npmjs.org/logging/-/logging-2.0.9.tgz" + }, + "2.0.10": { + "shasum": "fd29d55c0ee37401c610c04fcd4b30488e4211ef", + "tarball": "http://registry.npmjs.org/logging/-/logging-2.0.10.tgz" + }, + "2.0.11": { + "shasum": "7a57e0e2748764b564549f718022562b7bc51c61", + "tarball": "http://registry.npmjs.org/logging/-/logging-2.0.11.tgz" + }, + "2.0.12": { + "shasum": "17cdce1521e0245fa410f7c1257eb114d4bb06ff", + "tarball": "http://registry.npmjs.org/logging/-/logging-2.0.12.tgz" + }, + "2.0.13": { + "shasum": "6936aaa91e66c59386f15296f742ece58f5d940f", + "tarball": "http://registry.npmjs.org/logging/-/logging-2.0.13.tgz" + }, + "0.0.0": { + "shasum": "ec7e6953b151c0f92c743d0b03b4948b0d85b994", + "tarball": "http://registry.npmjs.org/logging/-/logging-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/logging/" + }, + "logging-system": { + "name": "logging-system", + "description": "This package helps you log zillions of events {cheaply,efficiently,reliably}.", + "dist-tags": { + "latest": "0.0.7" + }, + "maintainers": [ + { + "name": "andrewschaaf", + "email": "andrew@andrewschaaf.com" + } + ], + "time": { + "modified": "2011-09-30T20:45:24.688Z", + "created": "2011-09-20T17:15:52.998Z", + "0.0.1": "2011-09-20T17:15:53.206Z", + "0.0.2": "2011-09-21T16:01:16.146Z", + "0.0.3": "2011-09-27T15:20:07.864Z", + "0.0.4": "2011-09-27T18:51:46.526Z", + "0.0.5": "2011-09-27T18:52:33.508Z", + "0.0.6": "2011-09-29T19:54:03.327Z", + "0.0.7": "2011-09-30T20:45:24.688Z" + }, + "author": { + "name": "Andrew Schaaf", + "email": "andrew@andrewschaaf.com", + "url": "http://andrewschaaf.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/andrewschaaf/logging-system.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/logging-system/0.0.1", + "0.0.2": "http://registry.npmjs.org/logging-system/0.0.2", + "0.0.3": "http://registry.npmjs.org/logging-system/0.0.3", + "0.0.4": "http://registry.npmjs.org/logging-system/0.0.4", + "0.0.5": "http://registry.npmjs.org/logging-system/0.0.5", + "0.0.6": "http://registry.npmjs.org/logging-system/0.0.6", + "0.0.7": "http://registry.npmjs.org/logging-system/0.0.7" + }, + "dist": { + "0.0.1": { + "shasum": "720299c8ecfdfe9e04012a3a7b0ea6a37fd51031", + "tarball": "http://registry.npmjs.org/logging-system/-/logging-system-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "68ef90966b3fea405174d08d9b9d0ffed51807df", + "tarball": "http://registry.npmjs.org/logging-system/-/logging-system-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "2141d2db8e35f3e53d8e17091ffb6c4f0f52b378", + "tarball": "http://registry.npmjs.org/logging-system/-/logging-system-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "711a9c94fde003a16fbd40963213dd10ce49b509", + "tarball": "http://registry.npmjs.org/logging-system/-/logging-system-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "a379f06c841f0581db75e9c7447254877d7dad23", + "tarball": "http://registry.npmjs.org/logging-system/-/logging-system-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "659f23efa4968269b397658f8b54d4f138e82b5d", + "tarball": "http://registry.npmjs.org/logging-system/-/logging-system-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "6cc0c337b6bb4e199f0ebf9a7f0d62181ef910c2", + "tarball": "http://registry.npmjs.org/logging-system/-/logging-system-0.0.7.tgz" + } + }, + "url": "http://registry.npmjs.org/logging-system/" + }, + "loggly": { + "name": "loggly", + "description": "A client implementation for Loggly cloud Logging-as-a-Service API", + "dist-tags": { + "latest": "0.3.10" + }, + "maintainers": [ + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + } + ], + "time": { + "modified": "2011-11-18T07:18:36.259Z", + "created": "2011-01-15T05:05:14.004Z", + "0.1.0": "2011-01-15T05:05:14.177Z", + "0.1.1": "2011-01-16T22:55:26.317Z", + "0.1.2": "2011-01-21T06:51:33.635Z", + "0.1.3": "2011-01-23T05:54:08.398Z", + "0.1.4": "2011-01-24T04:53:50.278Z", + "0.2.0": "2011-02-02T21:43:37.729Z", + "0.3.0": "2011-02-11T04:10:17.304Z", + "0.3.1": "2011-02-11T16:04:35.817Z", + "0.3.2": "2011-03-04T07:38:44.331Z", + "0.3.3": "2011-05-14T06:11:35.509Z", + "0.3.4": "2011-06-01T15:56:33.514Z", + "0.3.5": "2011-06-26T12:56:52.257Z", + "0.3.6": "2011-08-08T06:31:07.979Z", + "0.3.7": "2011-08-22T09:04:34.063Z", + "0.3.8": "2011-08-23T07:11:15.386Z", + "0.3.9": "2011-10-07T05:10:03.976Z", + "0.3.10": "2011-11-18T07:18:36.259Z" + }, + "author": { + "name": "Charlie Robbins", + "email": "charlie.robbins@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/nodejitsu/node-loggly.git" + }, + "versions": { + "0.1.4": "http://registry.npmjs.org/loggly/0.1.4", + "0.2.0": "http://registry.npmjs.org/loggly/0.2.0", + "0.3.0": "http://registry.npmjs.org/loggly/0.3.0", + "0.3.1": "http://registry.npmjs.org/loggly/0.3.1", + "0.3.2": "http://registry.npmjs.org/loggly/0.3.2", + "0.3.3": "http://registry.npmjs.org/loggly/0.3.3", + "0.3.4": "http://registry.npmjs.org/loggly/0.3.4", + "0.3.5": "http://registry.npmjs.org/loggly/0.3.5", + "0.3.6": "http://registry.npmjs.org/loggly/0.3.6", + "0.3.8": "http://registry.npmjs.org/loggly/0.3.8", + "0.3.9": "http://registry.npmjs.org/loggly/0.3.9", + "0.3.10": "http://registry.npmjs.org/loggly/0.3.10" + }, + "dist": { + "0.1.4": { + "shasum": "686e2bc11848d5dad60914e6870a1edf65993445", + "tarball": "http://registry.npmjs.org/loggly/-/loggly-0.1.4.tgz" + }, + "0.2.0": { + "shasum": "b84bca7b18c5d5f2b7f09498797f990fd8f6595b", + "tarball": "http://registry.npmjs.org/loggly/-/loggly-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "a41cfd381d9e1041b07a40bad2304a2ba546d965", + "tarball": "http://registry.npmjs.org/loggly/-/loggly-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "c63491e07f736625744e2a7a1a87d4183ad60aa9", + "tarball": "http://registry.npmjs.org/loggly/-/loggly-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "b4c518307c0c4d3c3e1b264c6a1439e1295b00a8", + "tarball": "http://registry.npmjs.org/loggly/-/loggly-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "f0fa1ca06b5f164e1cd5292b4c8220737e762677", + "tarball": "http://registry.npmjs.org/loggly/-/loggly-0.3.3.tgz" + }, + "0.3.4": { + "shasum": "a363b535070bb0aae15531d51a7b76e22e6aebee", + "tarball": "http://registry.npmjs.org/loggly/-/loggly-0.3.4.tgz" + }, + "0.3.5": { + "shasum": "9319434cfafb59d200f27b27cc6455167dbdb215", + "tarball": "http://registry.npmjs.org/loggly/-/loggly-0.3.5.tgz" + }, + "0.3.6": { + "shasum": "68d30c1ced2201f2c588322f521d3f28ff234d4a", + "tarball": "http://registry.npmjs.org/loggly/-/loggly-0.3.6.tgz" + }, + "0.3.8": { + "shasum": "b87c122e0be193cc58332ac0743c7609673aaf0e", + "tarball": "http://registry.npmjs.org/loggly/-/loggly-0.3.8.tgz" + }, + "0.3.9": { + "shasum": "33e03288874abd6998c3c0b2a3521981a6288ff9", + "tarball": "http://registry.npmjs.org/loggly/-/loggly-0.3.9.tgz" + }, + "0.3.10": { + "shasum": "824af6a22259e205365456a7bdd79c28dbacdc01", + "tarball": "http://registry.npmjs.org/loggly/-/loggly-0.3.10.tgz" + } + }, + "keywords": [ + "cloud computing", + "api", + "logging", + "loggly" + ], + "url": "http://registry.npmjs.org/loggly/" + }, + "Loggy": { + "name": "Loggy", + "description": "Loggy is simple express server for remote logging with REST API and Wordpress plugin.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "dz0ny", + "email": "janez.troha@gmail.com" + } + ], + "time": { + "modified": "2011-05-07T19:59:59.309Z", + "created": "2011-04-14T19:40:48.711Z", + "0.0.1": "2011-04-14T19:40:49.193Z", + "0.0.2": "2011-04-14T19:43:38.134Z", + "0.0.3": "2011-04-14T19:57:27.889Z", + "0.0.4": "2011-04-14T20:50:06.781Z", + "0.0.5": "2011-04-14T21:15:45.684Z", + "0.0.6": "2011-04-15T12:32:52.639Z", + "0.0.7": "2011-05-07T17:45:23.708Z", + "0.0.8": "2011-05-07T17:47:35.777Z", + "0.0.9": "2011-05-07T17:53:38.106Z", + "0.1.0": "2011-05-07T19:59:59.309Z" + }, + "author": { + "name": "Janez Troha", + "email": "janez.troha@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dz0ny/Loggy.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/Loggy/0.0.1", + "0.0.2": "http://registry.npmjs.org/Loggy/0.0.2", + "0.0.3": "http://registry.npmjs.org/Loggy/0.0.3", + "0.0.4": "http://registry.npmjs.org/Loggy/0.0.4", + "0.0.5": "http://registry.npmjs.org/Loggy/0.0.5", + "0.0.6": "http://registry.npmjs.org/Loggy/0.0.6", + "0.0.7": "http://registry.npmjs.org/Loggy/0.0.7", + "0.0.8": "http://registry.npmjs.org/Loggy/0.0.8", + "0.0.9": "http://registry.npmjs.org/Loggy/0.0.9", + "0.1.0": "http://registry.npmjs.org/Loggy/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "f9d1891a2578be47af992c8da5057077481e11de", + "tarball": "http://registry.npmjs.org/Loggy/-/Loggy-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "46909f0078809c2ed879f367ec1a014b132d193b", + "tarball": "http://registry.npmjs.org/Loggy/-/Loggy-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "1fcb0de9342f47670af6f56513956b91f8b12ec8", + "tarball": "http://registry.npmjs.org/Loggy/-/Loggy-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "3cbea30e3306cb702b010d4ffae8b7e2631d32b5", + "tarball": "http://registry.npmjs.org/Loggy/-/Loggy-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "cbea90fafef82e930cb73a275643587b52bade93", + "tarball": "http://registry.npmjs.org/Loggy/-/Loggy-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "c8a5fffc2fd76bff171a99bd7db87bd5f47d26fe", + "tarball": "http://registry.npmjs.org/Loggy/-/Loggy-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "58df6a146c9ac80b96e11e1efa9dce6927a30ffd", + "tarball": "http://registry.npmjs.org/Loggy/-/Loggy-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "536368e7601914dd230c77298c190b36cfc72be4", + "tarball": "http://registry.npmjs.org/Loggy/-/Loggy-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "8623dabae2222ce56709d94b3db564b3e634960d", + "tarball": "http://registry.npmjs.org/Loggy/-/Loggy-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "a29bcaf04c3f06c4ed59e3b265c90fe2b14311a2", + "tarball": "http://registry.npmjs.org/Loggy/-/Loggy-0.1.0.tgz" + } + }, + "keywords": [ + "logging", + "app" + ], + "url": "http://registry.npmjs.org/Loggy/" + }, + "login": { + "name": "login", + "description": "Dead simple login processor for express.js", + "dist-tags": { + "latest": "0.7.5" + }, + "maintainers": [ + { + "name": "voodootikigod", + "email": "voodootikigod@gmail.com" + } + ], + "author": { + "name": "Chris Williams", + "email": "voodootikigod@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/voodootikigod/login.js.git" + }, + "time": { + "modified": "2011-11-30T16:42:10.871Z", + "created": "2011-07-08T02:49:45.500Z", + "0.0.2": "2011-07-08T02:49:45.500Z", + "0.0.3": "2011-07-08T02:49:45.500Z", + "0.0.4": "2011-07-08T02:49:45.500Z", + "0.0.5": "2011-07-08T02:49:45.500Z", + "0.5.0": "2011-07-08T02:49:45.500Z", + "0.5.1": "2011-07-08T02:54:50.616Z", + "0.5.4": "2011-07-08T21:21:28.684Z", + "0.5.5": "2011-07-11T16:13:06.421Z", + "0.5.6": "2011-07-11T17:09:17.037Z", + "0.5.7": "2011-07-11T17:11:21.396Z", + "0.5.8": "2011-07-11T17:12:44.027Z", + "0.6.0": "2011-07-11T17:17:26.298Z", + "0.6.2": "2011-07-11T22:05:32.052Z", + "0.6.4": "2011-07-15T19:32:02.027Z", + "0.6.3": "2011-08-15T18:53:07.822Z", + "0.6.5": "2011-08-15T18:59:43.150Z", + "0.6.6": "2011-08-16T02:55:25.724Z", + "0.6.7": "2011-08-16T03:00:06.088Z", + "0.6.8": "2011-08-16T03:06:51.937Z", + "0.6.9": "2011-08-17T15:15:44.692Z", + "0.7.0": "2011-11-02T14:09:04.954Z", + "0.7.1": "2011-11-03T21:37:51.565Z", + "0.7.3": "2011-11-26T14:22:15.496Z", + "0.7.4": "2011-11-30T16:32:39.637Z", + "0.7.5": "2011-11-30T16:42:10.871Z" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/login/0.0.2", + "0.0.3": "http://registry.npmjs.org/login/0.0.3", + "0.0.4": "http://registry.npmjs.org/login/0.0.4", + "0.0.5": "http://registry.npmjs.org/login/0.0.5", + "0.5.0": "http://registry.npmjs.org/login/0.5.0", + "0.5.1": "http://registry.npmjs.org/login/0.5.1", + "0.5.4": "http://registry.npmjs.org/login/0.5.4", + "0.5.5": "http://registry.npmjs.org/login/0.5.5", + "0.5.6": "http://registry.npmjs.org/login/0.5.6", + "0.5.7": "http://registry.npmjs.org/login/0.5.7", + "0.5.8": "http://registry.npmjs.org/login/0.5.8", + "0.6.0": "http://registry.npmjs.org/login/0.6.0", + "0.6.2": "http://registry.npmjs.org/login/0.6.2", + "0.6.4": "http://registry.npmjs.org/login/0.6.4", + "0.6.3": "http://registry.npmjs.org/login/0.6.3", + "0.6.5": "http://registry.npmjs.org/login/0.6.5", + "0.6.6": "http://registry.npmjs.org/login/0.6.6", + "0.6.7": "http://registry.npmjs.org/login/0.6.7", + "0.6.8": "http://registry.npmjs.org/login/0.6.8", + "0.6.9": "http://registry.npmjs.org/login/0.6.9", + "0.7.0": "http://registry.npmjs.org/login/0.7.0", + "0.7.1": "http://registry.npmjs.org/login/0.7.1", + "0.7.3": "http://registry.npmjs.org/login/0.7.3", + "0.7.4": "http://registry.npmjs.org/login/0.7.4", + "0.7.5": "http://registry.npmjs.org/login/0.7.5" + }, + "dist": { + "0.0.2": { + "tarball": "http://packages:5984/login/-/login-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/login/-/login-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://packages:5984/login/-/login-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://packages:5984/login/-/login-0.0.5.tgz" + }, + "0.5.0": { + "shasum": "149d3f91a3a117c4bb927743303582a41eb572d9", + "tarball": "http://registry.npmjs.org/login/-/login-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "514bd2087028e63bd6b9b55c38a0bdb99f46bb59", + "tarball": "http://registry.npmjs.org/login/-/login-0.5.1.tgz" + }, + "0.5.4": { + "shasum": "e04cde4e083e8b8fa8d9949ed361ee55ae26ac6c", + "tarball": "http://registry.npmjs.org/login/-/login-0.5.4.tgz" + }, + "0.5.5": { + "shasum": "3bcee2c224369ad8251ac6b78b89ff0081aaf1db", + "tarball": "http://registry.npmjs.org/login/-/login-0.5.5.tgz" + }, + "0.5.6": { + "shasum": "27197e1d30512fb203738fd06520f6f40659009e", + "tarball": "http://registry.npmjs.org/login/-/login-0.5.6.tgz" + }, + "0.5.7": { + "shasum": "b24bba25cf61ee6f364a92d236d647258d2b3a8a", + "tarball": "http://registry.npmjs.org/login/-/login-0.5.7.tgz" + }, + "0.5.8": { + "shasum": "90e6497ef79684fd6b77d87641c9dae758bd3a73", + "tarball": "http://registry.npmjs.org/login/-/login-0.5.8.tgz" + }, + "0.6.0": { + "shasum": "92ed57b5e2d60cf1a21d5abf892515e441be80a5", + "tarball": "http://registry.npmjs.org/login/-/login-0.6.0.tgz" + }, + "0.6.2": { + "shasum": "fd9989649957230f6e72a312dfe7f9903357d368", + "tarball": "http://registry.npmjs.org/login/-/login-0.6.2.tgz" + }, + "0.6.4": { + "shasum": "347a18ca372d51e497e2e298183603233b459e67", + "tarball": "http://registry.npmjs.org/login/-/login-0.6.4.tgz" + }, + "0.6.3": { + "shasum": "92cc697bdfbf3679e2822bed7a1bc7c8b6b94450", + "tarball": "http://registry.npmjs.org/login/-/login-0.6.3.tgz" + }, + "0.6.5": { + "shasum": "02d268690c47e606632bc8ac94ef62099ad507e7", + "tarball": "http://registry.npmjs.org/login/-/login-0.6.5.tgz" + }, + "0.6.6": { + "shasum": "ead3c001a8d6ca33e07bb665fd546111bef09ae4", + "tarball": "http://registry.npmjs.org/login/-/login-0.6.6.tgz" + }, + "0.6.7": { + "shasum": "bb2e8589d67c173001a75baf7d33e7bdc4a9d3ca", + "tarball": "http://registry.npmjs.org/login/-/login-0.6.7.tgz" + }, + "0.6.8": { + "shasum": "3f1848e99ec06b0ed34d1809df38acd8fc0b7911", + "tarball": "http://registry.npmjs.org/login/-/login-0.6.8.tgz" + }, + "0.6.9": { + "shasum": "07a742c307aef0425f623b5732022b8d37a339f1", + "tarball": "http://registry.npmjs.org/login/-/login-0.6.9.tgz" + }, + "0.7.0": { + "shasum": "7a7b731113e838737305b4968e33e5c96350c46a", + "tarball": "http://registry.npmjs.org/login/-/login-0.7.0.tgz" + }, + "0.7.1": { + "shasum": "9a8b50c8b37cb41c59450a782800f387af36924d", + "tarball": "http://registry.npmjs.org/login/-/login-0.7.1.tgz" + }, + "0.7.3": { + "shasum": "097d2c62eea20faa7394e6a7c15d3b358aa2626f", + "tarball": "http://registry.npmjs.org/login/-/login-0.7.3.tgz" + }, + "0.7.4": { + "shasum": "afa837e37f95e48c75d5cbc6cfe3132b9bdfb786", + "tarball": "http://registry.npmjs.org/login/-/login-0.7.4.tgz" + }, + "0.7.5": { + "shasum": "ee3b74801b3f7236b7468c38af994b1ef7c6509b", + "tarball": "http://registry.npmjs.org/login/-/login-0.7.5.tgz" + } + }, + "keywords": [ + "authentication", + "forgot password", + "secure", + "bcrypt", + "account management", + "express", + "simple", + "login", + "users", + "security" + ], + "url": "http://registry.npmjs.org/login/" + }, + "login-server": { + "name": "login-server", + "description": "Sencha.io login server", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": null, + "maintainers": [ + { + "name": "guest", + "email": "chandra@sencha.com" + } + ], + "time": { + "modified": "2011-12-07T22:05:03.039Z", + "created": "2011-12-07T22:05:01.982Z", + "0.0.1": "2011-12-07T22:05:03.039Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/reflector/login-server.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/login-server/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "05abf1a9b8d7d5aeab8a9de0fccad9e5cfd062e2", + "tarball": "http://registry.npmjs.org/login-server/-/login-server-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/login-server/" + }, + "logly": { + "name": "logly", + "description": "A minimal logging utility to support verbose and debug modes", + "dist-tags": { + "latest": "1.1.1" + }, + "maintainers": [ + { + "name": "tristanls", + "email": "tristan.slominski@gmail.com" + } + ], + "time": { + "modified": "2011-08-10T02:36:10.293Z", + "created": "2011-07-02T23:06:33.573Z", + "1.0.1": "2011-07-02T23:06:33.938Z", + "1.1.0": "2011-08-10T00:33:24.406Z", + "1.1.1": "2011-08-10T02:36:10.293Z" + }, + "author": { + "name": "Tristan Slominski", + "email": "tristan.slominski@gmail.com", + "url": "http://github.com/tristanls" + }, + "versions": { + "1.0.1": "http://registry.npmjs.org/logly/1.0.1", + "1.1.0": "http://registry.npmjs.org/logly/1.1.0", + "1.1.1": "http://registry.npmjs.org/logly/1.1.1" + }, + "dist": { + "1.0.1": { + "shasum": "0573d11f3682ae586afe438bb89a727820cea1be", + "tarball": "http://registry.npmjs.org/logly/-/logly-1.0.1.tgz" + }, + "1.1.0": { + "shasum": "08870ff1229d1d8b0c3583977b9512f97e06edc3", + "tarball": "http://registry.npmjs.org/logly/-/logly-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "4f88cca148069f5d3e981d2ea928ffbcc9eb39b8", + "tarball": "http://registry.npmjs.org/logly/-/logly-1.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/logly/" + }, + "logmagic": { + "name": "logmagic", + "description": "Dynamic and Configurable logging framework for node.js", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "pquerna", + "email": "pquerna@apache.org" + } + ], + "time": { + "modified": "2011-07-17T17:13:32.755Z", + "created": "2011-03-29T16:46:45.342Z", + "0.1.0": "2011-03-29T16:46:45.722Z", + "0.1.1": "2011-03-29T18:47:48.469Z", + "0.1.2": "2011-06-24T23:47:51.743Z", + "0.1.3": "2011-07-01T22:12:36.585Z", + "0.1.4": "2011-07-17T17:13:32.755Z" + }, + "author": { + "name": "Paul Querna", + "email": "pquerna@apache.org", + "url": "http://paul.querna.org/" + }, + "repository": { + "type": "git", + "url": "git://github.com/pquerna/node-logmagic.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/logmagic/0.1.0", + "0.1.1": "http://registry.npmjs.org/logmagic/0.1.1", + "0.1.2": "http://registry.npmjs.org/logmagic/0.1.2", + "0.1.3": "http://registry.npmjs.org/logmagic/0.1.3", + "0.1.4": "http://registry.npmjs.org/logmagic/0.1.4" + }, + "dist": { + "0.1.0": { + "shasum": "b316984686e89c421d3eb9a78e640d8ffc817faf", + "tarball": "http://registry.npmjs.org/logmagic/-/logmagic-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "fedaa7966192ecfa2692fe264fdfccb10beccad4", + "tarball": "http://registry.npmjs.org/logmagic/-/logmagic-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "dfefbeba0a3bba8b806471be26553b28916872d0", + "tarball": "http://registry.npmjs.org/logmagic/-/logmagic-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "152602af1a8bf5961dc2e06248ed953e2fc95def", + "tarball": "http://registry.npmjs.org/logmagic/-/logmagic-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "88540a0f892bf2d87bc6db2fd5e904b018312ca2", + "tarball": "http://registry.npmjs.org/logmagic/-/logmagic-0.1.4.tgz" + } + }, + "url": "http://registry.npmjs.org/logmagic/" + }, + "logmonger": { + "name": "logmonger", + "description": "MongoDB logging server", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "trevor", + "email": "trevor@caira.com" + } + ], + "time": { + "modified": "2011-01-14T20:17:54.379Z", + "created": "2011-01-14T20:17:54.205Z", + "0.1.0": "2011-01-14T20:17:54.379Z" + }, + "author": { + "name": "Trevor Caira", + "email": "trevor@caira.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/logmonger/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "80a0a3ceea4803671dc218df884ba425b5164d0e", + "tarball": "http://registry.npmjs.org/logmonger/-/logmonger-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/logmonger/" + }, + "logule": { + "name": "logule", + "description": "An advanced logger for nodejs", + "dist-tags": { + "latest": "0.5.4" + }, + "maintainers": [ + { + "name": "clux", + "email": "analsandblaster@gmail.com" + } + ], + "time": { + "modified": "2011-12-13T11:47:18.830Z", + "created": "2011-11-24T10:33:57.751Z", + "0.1.0": "2011-11-24T10:33:59.237Z", + "0.1.1": "2011-11-24T11:13:49.053Z", + "0.2.0": "2011-11-24T21:49:01.029Z", + "0.3.0": "2011-11-26T08:26:29.620Z", + "0.4.0": "2011-11-27T12:42:08.421Z", + "0.4.1": "2011-11-27T18:37:23.363Z", + "0.5.0": "2011-11-27T20:02:44.927Z", + "0.5.1": "2011-11-27T22:08:35.528Z", + "0.5.2": "2011-12-01T07:56:57.445Z", + "0.5.3": "2011-12-06T19:42:31.613Z", + "0.5.4": "2011-12-13T11:47:18.830Z" + }, + "author": { + "name": "Eirik Albrigtsen", + "email": "analsandblaster@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/clux/logule.git" + }, + "users": { + "clux": true + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/logule/0.1.0", + "0.1.1": "http://registry.npmjs.org/logule/0.1.1", + "0.2.0": "http://registry.npmjs.org/logule/0.2.0", + "0.3.0": "http://registry.npmjs.org/logule/0.3.0", + "0.4.0": "http://registry.npmjs.org/logule/0.4.0", + "0.4.1": "http://registry.npmjs.org/logule/0.4.1", + "0.5.0": "http://registry.npmjs.org/logule/0.5.0", + "0.5.1": "http://registry.npmjs.org/logule/0.5.1", + "0.5.2": "http://registry.npmjs.org/logule/0.5.2", + "0.5.3": "http://registry.npmjs.org/logule/0.5.3", + "0.5.4": "http://registry.npmjs.org/logule/0.5.4" + }, + "dist": { + "0.1.0": { + "shasum": "e7d0da3627cc0e9df86d3fd2a6cffa61b6f5e62c", + "tarball": "http://registry.npmjs.org/logule/-/logule-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "8f213bdb85297707ccbafeb2bc07fca7c4ae6138", + "tarball": "http://registry.npmjs.org/logule/-/logule-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "b4098a7280f2390cd14c6b842896c721a42e6cc5", + "tarball": "http://registry.npmjs.org/logule/-/logule-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "89b17b806be70f1792069c5ceff01c7a44754f27", + "tarball": "http://registry.npmjs.org/logule/-/logule-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "021e85908d1f5c56a7daa579db1a2a5476d645c7", + "tarball": "http://registry.npmjs.org/logule/-/logule-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "02c9893ffb9abc9777cb25cc13d2e3c55a9b18bd", + "tarball": "http://registry.npmjs.org/logule/-/logule-0.4.1.tgz" + }, + "0.5.0": { + "shasum": "bfb96eaf1ed82e837895ccab7f68800f2272d82e", + "tarball": "http://registry.npmjs.org/logule/-/logule-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "ba139e1051a11a3d30831b9fa9a41dc4ee4be7e3", + "tarball": "http://registry.npmjs.org/logule/-/logule-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "d38561e3efe50fe733bf2aa7fc5d007eb51a51a3", + "tarball": "http://registry.npmjs.org/logule/-/logule-0.5.2.tgz" + }, + "0.5.3": { + "shasum": "0849b09762380521795c51f9450ed48ce110a261", + "tarball": "http://registry.npmjs.org/logule/-/logule-0.5.3.tgz" + }, + "0.5.4": { + "shasum": "04c03317337f70323e0c5eae3b223993fa3ac3eb", + "tarball": "http://registry.npmjs.org/logule/-/logule-0.5.4.tgz" + } + }, + "url": "http://registry.npmjs.org/logule/" + }, + "lokki": { + "name": "lokki", + "description": "MVC Framework for Node.js", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "rowoot", + "email": "micheal@visionmasterdesigns.com" + } + ], + "time": { + "modified": "2011-06-25T13:29:07.889Z", + "created": "2011-06-25T13:29:06.347Z", + "0.1.0": "2011-06-25T13:29:07.889Z" + }, + "author": { + "name": "Micheal Benedict Arul", + "email": "micheal@visionmasterdesigns.com", + "url": "visionmasterdesigns.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/rowoot/lokki.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/lokki/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "d82d073dcaf26de97a41526f1d09fdd791eeb237", + "tarball": "http://registry.npmjs.org/lokki/-/lokki-0.1.0.tgz" + } + }, + "keywords": [ + "framework", + "rails" + ], + "url": "http://registry.npmjs.org/lokki/" + }, + "lonely-styles": { + "name": "lonely-styles", + "description": "a little program to determine which css styles aren't being used", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "jga", + "email": "me@jga.me" + } + ], + "time": { + "modified": "2011-10-12T20:00:18.920Z", + "created": "2011-10-12T01:41:04.844Z", + "0.0.1": "2011-10-12T01:41:05.400Z", + "0.0.2": "2011-10-12T20:00:18.920Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/jgallen23/lonely-styles.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/lonely-styles/0.0.1", + "0.0.2": "http://registry.npmjs.org/lonely-styles/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "80bab1ff65087cd087f51be5be7c30929612c328", + "tarball": "http://registry.npmjs.org/lonely-styles/-/lonely-styles-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "a9e7588e661374ac2d5123c977cbe35c99ec053e", + "tarball": "http://registry.npmjs.org/lonely-styles/-/lonely-styles-0.0.2.tgz" + } + }, + "keywords": [ + "css", + "stylesheets" + ], + "url": "http://registry.npmjs.org/lonely-styles/" + }, + "long-stack-traces": { + "name": "long-stack-traces", + "description": "Long stacktraces for V8 implemented in user-land JavaScript.", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "tlrobinson", + "email": "tom@tlrobinson.net" + } + ], + "time": { + "modified": "2011-10-17T18:19:29.515Z", + "created": "2011-01-26T06:50:09.886Z", + "0.1.0": "2011-01-26T06:50:10.185Z", + "0.1.1": "2011-01-27T07:59:47.095Z", + "0.1.2": "2011-03-28T02:45:11.335Z" + }, + "author": { + "name": "Tom Robinson", + "email": "tom@tlrobinson.net", + "url": "http://tlrobinson.net/" + }, + "users": { + "dylang": true + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/long-stack-traces/0.1.0", + "0.1.1": "http://registry.npmjs.org/long-stack-traces/0.1.1", + "0.1.2": "http://registry.npmjs.org/long-stack-traces/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "d3fed2ab8fb930e0f022d81ade850a1c2d56d2db", + "tarball": "http://registry.npmjs.org/long-stack-traces/-/long-stack-traces-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "3b16406cee51e863a97c6773461b15b0a2a6bbdc", + "tarball": "http://registry.npmjs.org/long-stack-traces/-/long-stack-traces-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "6022b50ee9bbc74b5cbd7cfeeaae4165e1a546ec", + "tarball": "http://registry.npmjs.org/long-stack-traces/-/long-stack-traces-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/long-stack-traces/" + }, + "loom": { + "name": "loom", + "description": "a simple and powerful API for differential inheritance and AOP", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-05-05T14:11:11.946Z", + "created": "2011-05-05T14:11:11.461Z", + "1.0.0": "2011-05-05T14:11:11.946Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/rpflorence/loom.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/loom/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "9df0c8f64036e53c120e1513e3c1b2988cd12a0d", + "tarball": "http://registry.npmjs.org/loom/-/loom-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/loom/" + }, + "loop": { + "name": "loop", + "description": "The promise / subscribe / deferred module of FuturesJS (Ender.JS and Node.JS)", + "dist-tags": { + "latest": "2.1.1" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-07-13T20:29:34.043Z", + "created": "2011-07-13T20:29:33.661Z", + "2.1.1": "2011-07-13T20:29:34.043Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com", + "url": "http://coolaj86.info" + }, + "repository": { + "type": "git", + "url": "git://github.com/coolaj86/futures.git" + }, + "versions": { + "2.1.1": "http://registry.npmjs.org/loop/2.1.1" + }, + "dist": { + "2.1.1": { + "shasum": "0919d7f25660c20ab9549ac9db02095af7deceb4", + "tarball": "http://registry.npmjs.org/loop/-/loop-2.1.1.tgz" + } + }, + "keywords": [ + "flow-control", + "async", + "asynchronous", + "futures", + "loop", + "util", + "browser" + ], + "url": "http://registry.npmjs.org/loop/" + }, + "loops": { + "name": "loops", + "description": "Basic, non-blocking loop functions for NodeJS", + "dist-tags": { + "latest": "1.0.9" + }, + "maintainers": [ + { + "name": "jimbobmcgee", + "email": "npmjs.org@jimbobmcgee.com" + } + ], + "time": { + "modified": "2011-11-04T20:19:55.891Z", + "created": "2011-11-04T20:19:53.781Z", + "1.0.9": "2011-11-04T20:19:55.891Z" + }, + "repository": { + "type": "svn", + "url": "http://xp-dev.com/svn/jimbobmcgee-nodejs/loops/trunk", + "revision": "9", + "commit_date": "2011-11-04T20:19:45" + }, + "versions": { + "1.0.9": "http://registry.npmjs.org/loops/1.0.9" + }, + "dist": { + "1.0.9": { + "shasum": "8bdde6a1188ea66ecd14f3827b1d4094af019890", + "tarball": "http://registry.npmjs.org/loops/-/loops-1.0.9.tgz" + } + }, + "url": "http://registry.npmjs.org/loops/" + }, + "looseleaf": { + "name": "looseleaf", + "description": "Lightweight blog engine on express", + "dist-tags": { + "latest": "0.3.5" + }, + "maintainers": [ + { + "name": "tnantoka", + "email": "bornneet@livedoor.com" + } + ], + "time": { + "modified": "2011-10-10T13:32:49.211Z", + "created": "2011-02-26T10:50:25.527Z", + "0.2.0": "2011-02-26T10:50:26.926Z", + "0.2.1": "2011-03-05T07:23:00.908Z", + "0.2.2": "2011-03-05T07:53:35.201Z", + "0.2.3": "2011-03-21T05:42:46.966Z", + "0.2.4": "2011-04-17T03:50:05.674Z", + "0.2.5": "2011-04-22T01:08:30.486Z", + "0.2.6": "2011-04-29T13:23:19.972Z", + "0.2.7": "2011-04-29T13:32:26.064Z", + "0.2.8": "2011-04-30T08:35:46.792Z", + "0.2.9": "2011-05-02T13:27:27.583Z", + "0.2.10": "2011-05-02T14:42:57.525Z", + "0.2.11": "2011-05-04T01:53:58.775Z", + "0.3.0": "2011-05-07T14:53:05.622Z", + "0.3.1": "2011-05-09T13:52:50.691Z", + "0.3.2": "2011-06-03T12:12:46.133Z", + "0.3.4": "2011-09-16T14:23:23.604Z", + "0.3.5": "2011-10-10T12:31:27.103Z" + }, + "author": { + "name": "tnantoka", + "email": "bornneet@livedoor.com", + "url": "http://blog.bornneet.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/tnantoka/LooseLeaf.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/looseleaf/0.2.0", + "0.2.1": "http://registry.npmjs.org/looseleaf/0.2.1", + "0.2.2": "http://registry.npmjs.org/looseleaf/0.2.2", + "0.2.3": "http://registry.npmjs.org/looseleaf/0.2.3", + "0.2.4": "http://registry.npmjs.org/looseleaf/0.2.4", + "0.2.5": "http://registry.npmjs.org/looseleaf/0.2.5", + "0.2.6": "http://registry.npmjs.org/looseleaf/0.2.6", + "0.2.7": "http://registry.npmjs.org/looseleaf/0.2.7", + "0.2.8": "http://registry.npmjs.org/looseleaf/0.2.8", + "0.2.9": "http://registry.npmjs.org/looseleaf/0.2.9", + "0.2.10": "http://registry.npmjs.org/looseleaf/0.2.10", + "0.2.11": "http://registry.npmjs.org/looseleaf/0.2.11", + "0.3.0": "http://registry.npmjs.org/looseleaf/0.3.0", + "0.3.1": "http://registry.npmjs.org/looseleaf/0.3.1", + "0.3.2": "http://registry.npmjs.org/looseleaf/0.3.2", + "0.3.4": "http://registry.npmjs.org/looseleaf/0.3.4", + "0.3.5": "http://registry.npmjs.org/looseleaf/0.3.5" + }, + "dist": { + "0.2.0": { + "shasum": "37f8ab01dda63ffd2025d8dd8da11125c151d9e2", + "tarball": "http://registry.npmjs.org/looseleaf/-/looseleaf-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "68e6372eab4acf64c5f6cb1cde06e883401055ff", + "tarball": "http://registry.npmjs.org/looseleaf/-/looseleaf-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "292fa27566e74ef4805a33df568dc7b838dab1fd", + "tarball": "http://registry.npmjs.org/looseleaf/-/looseleaf-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "dbde36624f9ffd64c848e8e6c8169eec47643053", + "tarball": "http://registry.npmjs.org/looseleaf/-/looseleaf-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "70208711e0f932bb751638112146c38385fae140", + "tarball": "http://registry.npmjs.org/looseleaf/-/looseleaf-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "ecd2ec15d7063266898bbc88ab4e5d9432a1da2d", + "tarball": "http://registry.npmjs.org/looseleaf/-/looseleaf-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "3eb828da4205d39db40250272400a1521b08aeb8", + "tarball": "http://registry.npmjs.org/looseleaf/-/looseleaf-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "131ac4c7cb76449e49bd471933885731b70d8520", + "tarball": "http://registry.npmjs.org/looseleaf/-/looseleaf-0.2.7.tgz" + }, + "0.2.8": { + "shasum": "d79beb9237759679b7748ac09008ec0c7aba9946", + "tarball": "http://registry.npmjs.org/looseleaf/-/looseleaf-0.2.8.tgz" + }, + "0.2.9": { + "shasum": "c315e738bace1133efc39c329bc1ca7a1c5f66ef", + "tarball": "http://registry.npmjs.org/looseleaf/-/looseleaf-0.2.9.tgz" + }, + "0.2.10": { + "shasum": "c4679df7aea3b5982d9b705d3b8f736a104c724e", + "tarball": "http://registry.npmjs.org/looseleaf/-/looseleaf-0.2.10.tgz" + }, + "0.2.11": { + "shasum": "e32532aa1c3156dfc3b5b1dd12eee0d443af95ab", + "tarball": "http://registry.npmjs.org/looseleaf/-/looseleaf-0.2.11.tgz" + }, + "0.3.0": { + "shasum": "8a98dc82567fa98c90d1303b9a3a1da5a1143f30", + "tarball": "http://registry.npmjs.org/looseleaf/-/looseleaf-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "c9c38ec87f5bbe4f71e6f95e5c4565feea70b4af", + "tarball": "http://registry.npmjs.org/looseleaf/-/looseleaf-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "957809d8263de3365b3c89cb29942dbac26635fc", + "tarball": "http://registry.npmjs.org/looseleaf/-/looseleaf-0.3.2.tgz" + }, + "0.3.4": { + "shasum": "d3899dae89920fa40c8d538394420879411f558b", + "tarball": "http://registry.npmjs.org/looseleaf/-/looseleaf-0.3.4.tgz" + }, + "0.3.5": { + "shasum": "2ee24ac1d87d5e527c207cba65fed7f05d0cfff9", + "tarball": "http://registry.npmjs.org/looseleaf/-/looseleaf-0.3.5.tgz" + } + }, + "keywords": [ + "CMS", + "blog", + "JSON", + "express" + ], + "url": "http://registry.npmjs.org/looseleaf/" + }, + "lotte": { + "name": "lotte", + "description": "Headless, automated browser testing using PhantomJS", + "dist-tags": { + "latest": "0.1.2-1" + }, + "maintainers": [ + { + "name": "stanangeloff", + "email": "stanimir@angeloff.name" + } + ], + "time": { + "modified": "2011-11-24T16:24:02.440Z", + "created": "2011-11-20T10:53:33.300Z", + "0.1.0": "2011-11-20T10:55:56.693Z", + "0.1.1": "2011-11-20T14:39:43.274Z", + "0.1.2": "2011-11-24T09:21:29.527Z", + "0.1.2-1": "2011-11-24T16:24:02.440Z" + }, + "author": { + "name": "Stan Angeloff", + "email": "stanimir@angeloff.name", + "url": "http://blog.angeloff.name" + }, + "repository": { + "type": "git", + "url": "git://github.com/StanAngeloff/lotte.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/lotte/0.1.0", + "0.1.1": "http://registry.npmjs.org/lotte/0.1.1", + "0.1.2": "http://registry.npmjs.org/lotte/0.1.2", + "0.1.2-1": "http://registry.npmjs.org/lotte/0.1.2-1" + }, + "dist": { + "0.1.0": { + "shasum": "53fcaa5382f2cd15599c680942f4b7e7603c14b9", + "tarball": "http://registry.npmjs.org/lotte/-/lotte-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "86a93b9bca7a9aa9f205be5cc61e31663a5eba20", + "tarball": "http://registry.npmjs.org/lotte/-/lotte-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "2ec79631ecbcb90577ff1b4b0f09ddcda8d52eb5", + "tarball": "http://registry.npmjs.org/lotte/-/lotte-0.1.2.tgz" + }, + "0.1.2-1": { + "shasum": "3449589260ea1ba0762ba810b0cac4c91735c76f", + "tarball": "http://registry.npmjs.org/lotte/-/lotte-0.1.2-1.tgz" + } + }, + "url": "http://registry.npmjs.org/lotte/" + }, + "lotus": { + "name": "lotus", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "# Lotus\n\nLotus is an network based event emitter and RPC system for distributed applications.", + "maintainers": [ + { + "name": "jakeluer", + "email": "jake.luer@incatern.com" + } + ], + "time": { + "modified": "2011-12-14T07:12:12.276Z", + "created": "2011-12-14T07:12:11.206Z", + "0.0.1": "2011-12-14T07:12:12.276Z" + }, + "author": { + "name": "Jake Luer", + "email": "jake@alogicalparadox.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/logicalparadox/lotus.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/lotus/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "0211f57a898d3f819fe89b7c78b36c6312e066d5", + "tarball": "http://registry.npmjs.org/lotus/-/lotus-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/lotus/" + }, + "lovely": { + "name": "lovely", + "description": "The Next Generation Front-Side Development Platform", + "dist-tags": { + "latest": "1.3.2" + }, + "maintainers": [ + { + "name": "nikolay_nemshilov", + "email": "nemshilov@gmail.com" + } + ], + "time": { + "modified": "2011-09-03T14:33:42.634Z", + "created": "2011-05-06T15:20:56.414Z", + "0.0.0": "2011-05-06T15:20:56.919Z", + "1.0.0": "2011-07-31T10:09:04.234Z", + "1.1.0": "2011-08-02T13:47:32.674Z", + "1.1.1": "2011-08-03T16:11:08.020Z", + "1.1.2": "2011-08-07T09:33:46.427Z", + "1.2.0": "2011-08-10T08:46:05.258Z", + "1.3.0": "2011-08-19T16:10:45.400Z", + "1.3.1": "2011-08-23T08:51:39.987Z", + "1.3.2": "2011-09-03T14:33:42.634Z" + }, + "author": { + "name": "Nikolay Nemshilov", + "email": "nemshilov@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/MadRabbit/lovely.io.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/lovely/0.0.0", + "1.0.0": "http://registry.npmjs.org/lovely/1.0.0", + "1.1.0": "http://registry.npmjs.org/lovely/1.1.0", + "1.1.1": "http://registry.npmjs.org/lovely/1.1.1", + "1.1.2": "http://registry.npmjs.org/lovely/1.1.2", + "1.2.0": "http://registry.npmjs.org/lovely/1.2.0", + "1.3.0": "http://registry.npmjs.org/lovely/1.3.0", + "1.3.1": "http://registry.npmjs.org/lovely/1.3.1", + "1.3.2": "http://registry.npmjs.org/lovely/1.3.2" + }, + "dist": { + "0.0.0": { + "shasum": "49f1d4f0115d7baaa908e23606c7020627f76961", + "tarball": "http://registry.npmjs.org/lovely/-/lovely-0.0.0.tgz" + }, + "1.0.0": { + "shasum": "b2ac207710314f0731a95aabd407057c999ce278", + "tarball": "http://registry.npmjs.org/lovely/-/lovely-1.0.0.tgz" + }, + "1.1.0": { + "shasum": "3eed271f6404ff8b7fd33e66e8183d967cd6974e", + "tarball": "http://registry.npmjs.org/lovely/-/lovely-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "6d0077abc4bbaab8d7b55e9736c23944931f4724", + "tarball": "http://registry.npmjs.org/lovely/-/lovely-1.1.1.tgz" + }, + "1.1.2": { + "shasum": "e387f91026a6903fca6383e896c2c7b16316c173", + "tarball": "http://registry.npmjs.org/lovely/-/lovely-1.1.2.tgz" + }, + "1.2.0": { + "shasum": "16253f0cba8d9bcf5eb35ac7bd5d79082f02908d", + "tarball": "http://registry.npmjs.org/lovely/-/lovely-1.2.0.tgz" + }, + "1.3.0": { + "shasum": "50537f2165a443e9ac71a2045c49df242b92600c", + "tarball": "http://registry.npmjs.org/lovely/-/lovely-1.3.0.tgz" + }, + "1.3.1": { + "shasum": "a4eb2b9b0111a9c7073e8023189365783e20ba07", + "tarball": "http://registry.npmjs.org/lovely/-/lovely-1.3.1.tgz" + }, + "1.3.2": { + "shasum": "e1637abfeafdfdd91f0c1b44f4249a7fefbdc9c5", + "tarball": "http://registry.npmjs.org/lovely/-/lovely-1.3.2.tgz" + } + }, + "url": "http://registry.npmjs.org/lovely/" + }, + "lpd": { + "name": "lpd", + "description": "{LPDServer, sendLPDJob} for the Line Printer Daemon protocol", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "andrewschaaf", + "email": "andrew@andrewschaaf.com" + } + ], + "time": { + "modified": "2011-09-29T00:09:47.967Z", + "created": "2011-03-11T13:50:25.293Z", + "0.0.1": "2011-03-11T13:50:25.385Z", + "0.1.0": "2011-09-29T00:08:53.354Z", + "0.1.1": "2011-09-29T00:09:47.967Z" + }, + "author": { + "name": "Andrew Schaaf", + "email": "andrew@andrewschaaf.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/andrewschaaf/node-lpd.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/lpd/0.0.1", + "0.1.0": "http://registry.npmjs.org/lpd/0.1.0", + "0.1.1": "http://registry.npmjs.org/lpd/0.1.1" + }, + "dist": { + "0.0.1": { + "shasum": "952409da6272cdc2fe54abfa8e6e3e7688ea3420", + "tarball": "http://registry.npmjs.org/lpd/-/lpd-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "ce55bbce1d8c21778bba7cee1df7af11155fd9c7", + "tarball": "http://registry.npmjs.org/lpd/-/lpd-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "ed56b672cf3a3aa285fade4f746136c5d6b4d1b2", + "tarball": "http://registry.npmjs.org/lpd/-/lpd-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/lpd/" + }, + "lpd-printers": { + "name": "lpd-printers", + "description": "Supported so far: TSP100", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "ShopKeep", + "email": "opensource@shopkeep.com" + } + ], + "time": { + "modified": "2011-03-11T13:50:42.514Z", + "created": "2011-03-11T13:50:42.396Z", + "0.0.1": "2011-03-11T13:50:42.514Z" + }, + "author": { + "name": "ShopKeep", + "email": "opensource@shopkeep.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/shopkeep/node-lpd-printers.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/lpd-printers/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "df950f8dc4fef81cb309e07fcbc1244f2a64d885", + "tarball": "http://registry.npmjs.org/lpd-printers/-/lpd-printers-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/lpd-printers/" + }, + "lru-cache": { + "name": "lru-cache", + "description": "A cache object that deletes the least-recently-used items.", + "dist-tags": { + "latest": "1.0.5" + }, + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/isaacs/node-lru-cache.git" + }, + "time": { + "modified": "2011-12-09T01:12:43.326Z", + "created": "2011-07-16T09:09:00.041Z", + "1.0.1": "2011-07-16T09:09:00.041Z", + "1.0.2": "2011-07-16T09:09:00.041Z", + "1.0.3": "2011-07-16T09:09:00.041Z", + "1.0.4": "2011-07-29T19:12:01.745Z", + "1.0.5": "2011-12-09T01:12:43.326Z" + }, + "versions": { + "1.0.1": "http://registry.npmjs.org/lru-cache/1.0.1", + "1.0.2": "http://registry.npmjs.org/lru-cache/1.0.2", + "1.0.3": "http://registry.npmjs.org/lru-cache/1.0.3", + "1.0.4": "http://registry.npmjs.org/lru-cache/1.0.4", + "1.0.5": "http://registry.npmjs.org/lru-cache/1.0.5" + }, + "dist": { + "1.0.1": { + "tarball": "http://packages:5984/lru-cache/-/lru-cache-1.0.1.tgz" + }, + "1.0.2": { + "tarball": "http://registry.npmjs.org/lru-cache/-/lru-cache-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "ef2ba05194250bd4781dbe57b6064d7320e58b73", + "tarball": "http://registry.npmjs.org/lru-cache/-/lru-cache-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "dc2af9b3022fb7e17630ed7bdf6a1839b7b70291", + "tarball": "http://registry.npmjs.org/lru-cache/-/lru-cache-1.0.4.tgz" + }, + "1.0.5": { + "shasum": "62815a3bcb609c1c086e78e4c6a1c4c025267551", + "tarball": "http://registry.npmjs.org/lru-cache/-/lru-cache-1.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/lru-cache/" + }, + "ls-r": { + "name": "ls-r", + "description": "recursive ls for node", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-09-09T11:58:41.452Z", + "created": "2011-09-08T14:13:10.706Z", + "0.1.0": "2011-09-08T14:13:14.099Z", + "0.2.0": "2011-09-09T05:14:00.396Z", + "0.2.1": "2011-09-09T11:58:41.452Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com", + "url": "http://bit.ly/dominictarr" + }, + "repository": { + "type": "git", + "url": "git://github.com/dominictarr/ls-r.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/ls-r/0.1.0", + "0.2.0": "http://registry.npmjs.org/ls-r/0.2.0", + "0.2.1": "http://registry.npmjs.org/ls-r/0.2.1" + }, + "dist": { + "0.1.0": { + "shasum": "b487c329af1d2eea768cb50e2a2e813c337bff43", + "tarball": "http://registry.npmjs.org/ls-r/-/ls-r-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "d6ed312877afe2ac360d36e64f23b9b59052ae58", + "tarball": "http://registry.npmjs.org/ls-r/-/ls-r-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "b239a01faa7d43148874a64feb11e0adecb66fa0", + "tarball": "http://registry.npmjs.org/ls-r/-/ls-r-0.2.1.tgz" + } + }, + "keywords": [ + "find", + "search", + "ls", + "recursive", + "find" + ], + "url": "http://registry.npmjs.org/ls-r/" + }, + "lsof": { + "name": "lsof", + "description": "List open file descriptors for your node process", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "davglass", + "email": "davglass@gmail.com" + } + ], + "time": { + "modified": "2011-03-02T14:02:04.038Z", + "created": "2010-12-23T21:23:39.244Z", + "0.0.1": "2010-12-23T21:23:39.501Z", + "0.0.2": "2011-03-02T14:02:04.038Z" + }, + "author": { + "name": "Dav Glass", + "email": "davglass@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/davglass/node-lsof.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/lsof/0.0.1", + "0.0.2": "http://registry.npmjs.org/lsof/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "16fa5fbab03599f1c78df731b4bc61df87fbde21", + "tarball": "http://registry.npmjs.org/lsof/-/lsof-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "b9d4a65613def2aee7a0e9195d2e31aa4a6ee690", + "tarball": "http://registry.npmjs.org/lsof/-/lsof-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/lsof/" + }, + "ltx": { + "name": "ltx", + "description": "", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "astro", + "email": "astro@spaceboyz.net" + } + ], + "author": { + "name": "Stephan Maka" + }, + "time": { + "modified": "2011-11-20T22:18:57.522Z", + "created": "2011-01-31T17:52:53.100Z", + "0.0.1": "2011-01-31T17:52:53.100Z", + "0.0.3": "2011-01-31T17:52:53.100Z", + "0.0.4": "2011-01-31T18:08:56.534Z", + "0.0.5": "2011-04-27T11:49:29.794Z", + "0.1.0": "2011-10-28T15:30:11.149Z", + "0.1.1": "2011-11-20T22:18:57.522Z" + }, + "users": { + "astro": true + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ltx/0.0.1", + "0.0.3": "http://registry.npmjs.org/ltx/0.0.3", + "0.0.4": "http://registry.npmjs.org/ltx/0.0.4", + "0.0.5": "http://registry.npmjs.org/ltx/0.0.5", + "0.1.0": "http://registry.npmjs.org/ltx/0.1.0", + "0.1.1": "http://registry.npmjs.org/ltx/0.1.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/ltx/-/ltx-0.0.1.tgz" + }, + "0.0.3": { + "shasum": "020adf669298418afb4e249f3366f1c206e63761", + "tarball": "http://registry.npmjs.org/ltx/-/ltx-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "014f6ffb1740f96663da8ec308a889ad8150a911", + "tarball": "http://registry.npmjs.org/ltx/-/ltx-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "6ed903315036525d3ffc95b827b6872a7917a161", + "tarball": "http://registry.npmjs.org/ltx/-/ltx-0.0.5.tgz" + }, + "0.1.0": { + "shasum": "700e016df80a288d818bebc2931d26dd4f5b378b", + "tarball": "http://registry.npmjs.org/ltx/-/ltx-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "0930aa5e7d5899bd10e1dda85759283eb7130550", + "tarball": "http://registry.npmjs.org/ltx/-/ltx-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/ltx/" + }, + "lumbar": { + "name": "lumbar", + "description": "Supporting your backbone since 2011, Lumbar is a module build system that allows for generation of platform specific javascript modules.", + "dist-tags": { + "latest": "0.5.3" + }, + "maintainers": [ + { + "name": "kpdecker", + "email": "kpdecker@gmail.com" + }, + { + "name": "dalmaer", + "email": "dion@almaer.com" + } + ], + "time": { + "modified": "2011-09-30T21:55:49.503Z", + "created": "2011-09-26T17:44:28.259Z", + "0.4.0": "2011-09-26T17:44:28.508Z", + "0.5.0": "2011-09-27T18:43:41.094Z", + "0.5.1": "2011-09-27T20:36:36.216Z", + "0.5.2": "2011-09-27T20:41:04.949Z", + "0.5.3": "2011-09-30T21:55:49.503Z" + }, + "author": { + "name": "Kevin Decker", + "email": "kpdecker@gmail.com", + "url": "http://incaseofstairs.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/walmartlabs/lumbar.git" + }, + "versions": { + "0.4.0": "http://registry.npmjs.org/lumbar/0.4.0", + "0.5.0": "http://registry.npmjs.org/lumbar/0.5.0", + "0.5.1": "http://registry.npmjs.org/lumbar/0.5.1", + "0.5.2": "http://registry.npmjs.org/lumbar/0.5.2", + "0.5.3": "http://registry.npmjs.org/lumbar/0.5.3" + }, + "dist": { + "0.4.0": { + "shasum": "1f3370b3f20fdd7fc2eb3bfcd1599a818475caa4", + "tarball": "http://registry.npmjs.org/lumbar/-/lumbar-0.4.0.tgz" + }, + "0.5.0": { + "shasum": "9ffdfc151087749bffdccd2d28c938035f51cfd1", + "tarball": "http://registry.npmjs.org/lumbar/-/lumbar-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "08200a2cec2bc7a4fa70eb7afbc45bc6d698feca", + "tarball": "http://registry.npmjs.org/lumbar/-/lumbar-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "a7cb223d87e926d2705f6d0876aaf3e440d13dc8", + "tarball": "http://registry.npmjs.org/lumbar/-/lumbar-0.5.2.tgz" + }, + "0.5.3": { + "shasum": "3c5103b8018b5f174a101a652735ab6ce0aae0b6", + "tarball": "http://registry.npmjs.org/lumbar/-/lumbar-0.5.3.tgz" + } + }, + "keywords": [ + "build", + "module", + "mobile", + "backbone" + ], + "url": "http://registry.npmjs.org/lumbar/" + }, + "lumberjack": { + "name": "lumberjack", + "description": "A logging library for Node.js", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "pl47ypus", + "email": "baron.adi@gmail.com" + } + ], + "time": { + "modified": "2011-12-01T15:40:05.955Z", + "created": "2011-10-31T21:26:16.952Z", + "0.1.0": "2011-10-31T21:26:19.589Z", + "0.2.0": "2011-11-24T18:19:02.288Z", + "0.3.0": "2011-12-01T15:40:05.955Z" + }, + "author": { + "name": "Adi Baron" + }, + "repository": { + "type": "git", + "url": "git@github.com:AdiBaron/lumberjack.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/lumberjack/0.1.0", + "0.2.0": "http://registry.npmjs.org/lumberjack/0.2.0", + "0.3.0": "http://registry.npmjs.org/lumberjack/0.3.0" + }, + "dist": { + "0.1.0": { + "shasum": "0bc021119065705abf13bfa401b81bfe01fd8c84", + "tarball": "http://registry.npmjs.org/lumberjack/-/lumberjack-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "b9ceba51583fb60ddab008e95b9f437e9de0480a", + "tarball": "http://registry.npmjs.org/lumberjack/-/lumberjack-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "63308e2d18e8a541a600edf34fe6523e28c02d6b", + "tarball": "http://registry.npmjs.org/lumberjack/-/lumberjack-0.3.0.tgz" + } + }, + "keywords": [ + "log" + ], + "url": "http://registry.npmjs.org/lumberjack/" + }, + "lunapark": { + "name": "lunapark", + "description": "WPF-inspired tierless web application framework.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "dimituri", + "email": "dimituri@gmail.com" + } + ], + "time": { + "modified": "2011-05-15T19:17:41.093Z", + "created": "2011-05-15T19:17:40.174Z", + "0.1.0": "2011-05-15T19:17:41.093Z" + }, + "author": { + "name": "AssistUnion", + "email": "info@assistunion.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/assistunion/lunapark.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/lunapark/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "b63fad4a011c6fe529b3f1321151c63ebad73bd6", + "tarball": "http://registry.npmjs.org/lunapark/-/lunapark-0.1.0.tgz" + } + }, + "keywords": [ + "restful", + "mvvm", + "web", + "framework" + ], + "url": "http://registry.npmjs.org/lunapark/" + }, + "lunchbot": { + "name": "lunchbot", + "description": "A easy way to coordinate lunch on IRC", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "nsm", + "email": "me@nikhilmarathe.me" + } + ], + "time": { + "modified": "2011-07-04T05:53:24.038Z", + "created": "2011-07-04T05:53:23.597Z", + "0.1.0": "2011-07-04T05:53:24.038Z" + }, + "author": { + "name": "Nikhil Marathe", + "email": "me@nikhilmarathe.me", + "url": "http://nikhilmarathe.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/nikhilm/lunchbot.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/lunchbot/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "0192cd0b568432f92e5ea327e8c9d53f4a5cd845", + "tarball": "http://registry.npmjs.org/lunchbot/-/lunchbot-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/lunchbot/" + }, + "lw-nun": { + "name": "lw-nun", + "description": "Totally asynchronous non-blocking template engine for node.js", + "dist-tags": { + "latest": "0.1.14" + }, + "maintainers": [ + { + "name": "tcoats", + "email": "pminject@voodoolabs.net" + } + ], + "time": { + "modified": "2011-08-31T07:33:50.543Z", + "created": "2011-08-31T07:33:46.849Z", + "0.1.14": "2011-08-31T07:33:50.543Z" + }, + "author": { + "name": "Thomas Coats" + }, + "repository": { + "type": "git", + "url": "git://github.com/tcoats/lw-nun.git" + }, + "versions": { + "0.1.14": "http://registry.npmjs.org/lw-nun/0.1.14" + }, + "dist": { + "0.1.14": { + "shasum": "35537e13f1187a4738cdae1e879e5c6d6c894776", + "tarball": "http://registry.npmjs.org/lw-nun/-/lw-nun-0.1.14.tgz" + } + }, + "url": "http://registry.npmjs.org/lw-nun/" + }, + "lw-sass": { + "name": "lw-sass", + "description": "Syntactically Awesome Stylesheets (compiles to css)", + "dist-tags": { + "latest": "0.5.1" + }, + "maintainers": [ + { + "name": "tcoats", + "email": "pminject@voodoolabs.net" + } + ], + "time": { + "modified": "2011-08-31T07:41:25.208Z", + "created": "2011-08-31T07:41:21.318Z", + "0.5.1": "2011-08-31T07:41:25.208Z" + }, + "author": { + "name": "Thomas Coats", + "email": "github@voodoolabs.net" + }, + "versions": { + "0.5.1": "http://registry.npmjs.org/lw-sass/0.5.1" + }, + "dist": { + "0.5.1": { + "shasum": "ccaf8fddfdfd9475de8427ba7692e3914dd4d86e", + "tarball": "http://registry.npmjs.org/lw-sass/-/lw-sass-0.5.1.tgz" + } + }, + "keywords": [ + "sass", + "template", + "css", + "view" + ], + "url": "http://registry.npmjs.org/lw-sass/" + }, + "lwes": { + "name": "lwes", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "aq1018", + "email": "aq1018@gmail.com" + } + ], + "time": { + "modified": "2011-08-17T21:54:41.068Z", + "created": "2011-08-17T21:54:35.197Z", + "0.1.0": "2011-08-17T21:54:41.068Z" + }, + "author": { + "name": "Aaron Qian", + "email": "aq1018@gmail.com", + "url": "http://aaronqian.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/attinteractive/node-lwes.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/lwes/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "c79e2f18d3e1056d9c31c59213fef675aedc4dd9", + "tarball": "http://registry.npmjs.org/lwes/-/lwes-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/lwes/" + }, + "lwink": { + "name": "lwink", + "description": "Lwink is a Twitter unique link tracker, expander and emitter", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "stagas", + "email": "gstagas@gmail.com" + } + ], + "time": { + "modified": "2011-05-19T18:43:20.269Z", + "created": "2011-05-19T18:43:19.545Z", + "0.0.1": "2011-05-19T18:43:20.269Z" + }, + "author": { + "name": "George Stagas", + "email": "gstagas@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/stagas/lwink.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/lwink/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "776bfa32baf79cb1a42ecbf77e578e5b56578d26", + "tarball": "http://registry.npmjs.org/lwink/-/lwink-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/lwink/" + }, + "lzf": { + "name": "lzf", + "description": "lzf compression module for nodejs", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "bobrik", + "email": "ibobrik@gmail.com" + } + ], + "time": { + "modified": "2011-11-03T11:51:30.760Z", + "created": "2011-11-03T11:50:48.994Z", + "0.1.0": "2011-11-03T11:51:30.760Z" + }, + "author": { + "name": "Ian Babrou", + "email": "ibobrik@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Sonetica/node-lzf.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/lzf/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "88073a64c110aab6451f08deba66b50a9b9c7886", + "tarball": "http://registry.npmjs.org/lzf/-/lzf-0.1.0.tgz" + } + }, + "keywords": [ + "lzf", + "compression", + "buffer" + ], + "url": "http://registry.npmjs.org/lzf/" + }, + "lzma": { + "name": "lzma", + "description": "A standalone JavaScript implementation of the Lempel-Ziv-Markov chain (LZMA) compression algorithm", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "nmrugg", + "email": "nmrugg@gmail.com" + } + ], + "time": { + "modified": "2011-06-10T08:56:28.937Z", + "created": "2011-06-10T08:56:26.719Z", + "1.0.0": "2011-06-10T08:56:28.937Z" + }, + "author": { + "name": "Nathan Rugg", + "email": "nmrugg@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/nmrugg/LZMA-JS.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/lzma/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "694386284dd911ea84d940c2a5dec1881fae4288", + "tarball": "http://registry.npmjs.org/lzma/-/lzma-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/lzma/" + }, + "lzw-async": { + "name": "lzw-async", + "description": "Asynchronous implementation of Lempel-Ziv-Welch (LZW) compression.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "hiddentao", + "email": "ram@hiddentao.com" + } + ], + "time": { + "modified": "2011-10-10T15:16:57.512Z", + "created": "2011-10-10T15:16:56.778Z", + "0.1.1": "2011-10-10T15:16:57.512Z" + }, + "author": { + "name": "hiddentao" + }, + "repository": { + "type": "git", + "url": "git://github.com/hiddentao/lzw-async.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/lzw-async/0.1.1" + }, + "dist": { + "0.1.1": { + "shasum": "ea60b44041a63529b1c9d6e7c731a144b5a2a883", + "tarball": "http://registry.npmjs.org/lzw-async/-/lzw-async-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/lzw-async/" + }, + "m1node": { + "name": "m1node", + "description": "A thin layer of utils for working with node.js, connect, express, CouchDB and friends", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "mikebannister", + "email": "mikebannister@gmail.com" + } + ], + "author": { + "name": "Mike Bannister", + "email": "mike@mike101.net" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/m1node/0.0.1", + "0.0.2": "http://registry.npmjs.org/m1node/0.0.2", + "0.0.3": "http://registry.npmjs.org/m1node/0.0.3" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/m1node/-/m1node-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f1602e9d081884784cb52eb08c2bb437301076b2", + "tarball": "http://registry.npmjs.org/m1node/-/m1node-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "69a9d1e94da9c5a3b8439d6c134791d88a305d7e", + "tarball": "http://registry.npmjs.org/m1node/-/m1node-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/m1node/" + }, + "m1test": { + "name": "m1test", + "description": "A minimal unit test runner", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "mikebannister", + "email": "mikebannister@gmail.com" + } + ], + "versions": { + "0.0.1": "http://registry.npmjs.org/m1test/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "599c5efbb6ef0a605deef7c06ff335f03e41e6cc", + "tarball": "http://registry.npmjs.org/m1test/-/m1test-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/m1test/" + }, + "m2node": { + "name": "m2node", + "description": "mongrel2 handler", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "dan_manges", + "email": "dan.manges@gmail.com" + } + ], + "time": { + "modified": "2011-07-03T18:35:30.859Z", + "created": "2011-06-04T23:52:29.082Z", + "0.1.0": "2011-06-04T23:52:29.437Z", + "0.1.1": "2011-06-09T05:31:11.368Z", + "0.1.2": "2011-07-03T18:35:30.859Z" + }, + "author": { + "name": "Dan Manges", + "email": "dan.manges@gmail.com", + "url": "http://www.dan-manges.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dan-manges/m2node.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/m2node/0.1.0", + "0.1.1": "http://registry.npmjs.org/m2node/0.1.1", + "0.1.2": "http://registry.npmjs.org/m2node/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "32a9295415b118edfb970bd04e4f02e56553b72e", + "tarball": "http://registry.npmjs.org/m2node/-/m2node-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "5d306b17f587ae70d211d72d010d0ac92bc6f737", + "tarball": "http://registry.npmjs.org/m2node/-/m2node-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "c9e2c36b5003d5f43cf3bdabe78aaaf410b8ebb2", + "tarball": "http://registry.npmjs.org/m2node/-/m2node-0.1.2.tgz" + } + }, + "keywords": [ + "http", + "mongrel2" + ], + "url": "http://registry.npmjs.org/m2node/" + }, + "m2pdb": { + "name": "m2pdb", + "description": "markdown to pdf documentation builder", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "tdebarochez", + "email": "thomas.barochez+npm@gmail.com" + } + ], + "time": { + "modified": "2011-12-10T00:31:56.492Z", + "created": "2011-07-16T23:37:32.090Z", + "0.0.1": "2011-07-16T23:37:32.452Z", + "0.0.2": "2011-12-10T00:31:56.492Z" + }, + "author": { + "name": "Thomas Debarochez", + "email": "thomas.barochez+npm@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/tdebarochez/m2pdb.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/m2pdb/0.0.1", + "0.0.2": "http://registry.npmjs.org/m2pdb/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "fd351e34cbd8ee6f281c0b34fac913dc669a374f", + "tarball": "http://registry.npmjs.org/m2pdb/-/m2pdb-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "0f8039dc43af922e49c78b0a574fc9a538271065", + "tarball": "http://registry.npmjs.org/m2pdb/-/m2pdb-0.0.2.tgz" + } + }, + "keywords": [ + "markdown", + "pdf", + "documentation" + ], + "url": "http://registry.npmjs.org/m2pdb/" + }, + "m3u": { + "name": "m3u", + "description": "A node.js module for creating m3u / m3u8 files.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "felixge", + "email": "felix@debuggable.com" + } + ], + "time": { + "modified": "2011-07-06T21:04:02.035Z", + "created": "2011-04-11T22:47:10.418Z", + "0.0.1": "2011-04-11T22:47:11.075Z", + "0.0.2": "2011-07-06T21:04:02.035Z" + }, + "author": { + "name": "Felix Geisendörfer", + "email": "felix@debuggable.com", + "url": "http://debuggable.com/" + }, + "repository": { + "type": "git", + "url": "git@github.com:felixge/node-m3u.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/m3u/0.0.1", + "0.0.2": "http://registry.npmjs.org/m3u/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "35a9b55401d66071a9a4ed6fe893ba92cd79bfd7", + "tarball": "http://registry.npmjs.org/m3u/-/m3u-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "cb971743b434efd8c77b3cc3a47fc0411a903df7", + "tarball": "http://registry.npmjs.org/m3u/-/m3u-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/m3u/" + }, + "m8-mongoose": { + "name": "m8-mongoose", + "description": "Mongoose logic on the client for web applications using modul8", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "clux", + "email": "analsandblaster@gmail.com" + } + ], + "time": { + "modified": "2011-11-22T18:50:39.334Z", + "created": "2011-11-08T10:47:33.189Z", + "0.1.0": "2011-11-08T10:47:34.643Z", + "0.1.1": "2011-11-09T11:06:07.148Z", + "0.2.0": "2011-11-13T21:41:08.494Z", + "0.3.0": "2011-11-22T18:50:39.334Z" + }, + "author": { + "name": "Eirik Albrigtsen", + "email": "analsandblaster@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/clux/m8-mongoose.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/m8-mongoose/0.1.0", + "0.1.1": "http://registry.npmjs.org/m8-mongoose/0.1.1", + "0.2.0": "http://registry.npmjs.org/m8-mongoose/0.2.0", + "0.3.0": "http://registry.npmjs.org/m8-mongoose/0.3.0" + }, + "dist": { + "0.1.0": { + "shasum": "9711230684cae1e57ab705962743c32208f2bb7b", + "tarball": "http://registry.npmjs.org/m8-mongoose/-/m8-mongoose-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "369ebf062c65d5f9806f527d2419390b85102e23", + "tarball": "http://registry.npmjs.org/m8-mongoose/-/m8-mongoose-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "545b2361d922517ec232a8d40fac67bbba1fb7b5", + "tarball": "http://registry.npmjs.org/m8-mongoose/-/m8-mongoose-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "1bdfefbb7714110b143c79639d7953ed469cd4e7", + "tarball": "http://registry.npmjs.org/m8-mongoose/-/m8-mongoose-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/m8-mongoose/" + }, + "m8-templation": { + "name": "m8-templation", + "description": "Simple template version control system plugin for web applications using modul8", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "clux", + "email": "analsandblaster@gmail.com" + } + ], + "time": { + "modified": "2011-11-22T18:49:32.573Z", + "created": "2011-11-08T10:45:47.381Z", + "0.1.1": "2011-11-08T10:45:48.867Z", + "0.1.2": "2011-11-09T11:05:51.673Z", + "0.2.0": "2011-11-13T21:41:48.119Z", + "0.3.0": "2011-11-22T18:49:32.573Z" + }, + "author": { + "name": "Eirik Albrigtsen", + "email": "analsandblaster@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/clux/m8-templation.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/m8-templation/0.1.1", + "0.1.2": "http://registry.npmjs.org/m8-templation/0.1.2", + "0.2.0": "http://registry.npmjs.org/m8-templation/0.2.0", + "0.3.0": "http://registry.npmjs.org/m8-templation/0.3.0" + }, + "dist": { + "0.1.1": { + "shasum": "db8858c8b2a89b368ffc0912fd71cbb8b6dd8791", + "tarball": "http://registry.npmjs.org/m8-templation/-/m8-templation-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "4af4def8034fcc2e6e8224bc067d4dbc7a3941d2", + "tarball": "http://registry.npmjs.org/m8-templation/-/m8-templation-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "fd8041d70a3e4a6f5fc4524712ac971b924ef6cb", + "tarball": "http://registry.npmjs.org/m8-templation/-/m8-templation-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "3587ac6b3750e873b537729d31980801dd679f72", + "tarball": "http://registry.npmjs.org/m8-templation/-/m8-templation-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/m8-templation/" + }, + "mac": { + "name": "mac", + "description": "HTTP MAC Authentication Scheme (client and server)", + "dist-tags": { + "latest": "0.0.10" + }, + "maintainers": [ + { + "name": "hueniverse", + "email": "eran@hueniverse.com" + } + ], + "time": { + "modified": "2011-07-18T18:55:14.363Z", + "created": "2011-05-09T22:32:10.052Z", + "0.0.1": "2011-05-09T22:32:10.612Z", + "0.0.2": "2011-05-09T23:01:16.806Z", + "0.0.3": "2011-05-09T23:03:16.019Z", + "0.0.4": "2011-05-09T23:04:52.278Z", + "0.0.5": "2011-05-09T23:07:08.114Z", + "0.0.6": "2011-05-09T23:16:52.397Z", + "0.0.7": "2011-05-09T23:29:31.234Z", + "0.0.8": "2011-05-10T01:27:11.103Z", + "0.0.9": "2011-05-10T06:09:08.377Z", + "0.0.10": "2011-07-18T18:55:14.363Z" + }, + "author": { + "name": "Eran Hammer-Lahav", + "email": "eran@hueniverse.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/hueniverse/node-mac.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mac/0.0.1", + "0.0.2": "http://registry.npmjs.org/mac/0.0.2", + "0.0.3": "http://registry.npmjs.org/mac/0.0.3", + "0.0.4": "http://registry.npmjs.org/mac/0.0.4", + "0.0.5": "http://registry.npmjs.org/mac/0.0.5", + "0.0.6": "http://registry.npmjs.org/mac/0.0.6", + "0.0.7": "http://registry.npmjs.org/mac/0.0.7", + "0.0.8": "http://registry.npmjs.org/mac/0.0.8", + "0.0.9": "http://registry.npmjs.org/mac/0.0.9", + "0.0.10": "http://registry.npmjs.org/mac/0.0.10" + }, + "dist": { + "0.0.1": { + "shasum": "a2271b7d95acc5b75a41e064aea7f529716aa303", + "tarball": "http://registry.npmjs.org/mac/-/mac-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f27c6402fb7d90a47c67e3b7a51107d8b7df4b26", + "tarball": "http://registry.npmjs.org/mac/-/mac-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "7a9edacf5db0d52bcc306e11986ee0a3be9fac65", + "tarball": "http://registry.npmjs.org/mac/-/mac-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "5d865d0bf41f8a09917ff40294ba9e2c78ace25c", + "tarball": "http://registry.npmjs.org/mac/-/mac-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "6834b3c2f7d168c5801c31561315fe94493a1ad3", + "tarball": "http://registry.npmjs.org/mac/-/mac-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "53f4cce4d860e4a434fbdbe2e1c19c252a038e60", + "tarball": "http://registry.npmjs.org/mac/-/mac-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "c75507e823adb0135c8d210b788d569be7334ec7", + "tarball": "http://registry.npmjs.org/mac/-/mac-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "7ca01677b2031405c03e7c1de0163a8d18cafedd", + "tarball": "http://registry.npmjs.org/mac/-/mac-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "e15a66cacbd970ca24a90612c73c3c24d1452a78", + "tarball": "http://registry.npmjs.org/mac/-/mac-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "4b91e62ab0168ed57dfe9bdb37a24e8f20be80c1", + "tarball": "http://registry.npmjs.org/mac/-/mac-0.0.10.tgz" + } + }, + "keywords": [ + "http", + "mac", + "authentication", + "oauth" + ], + "url": "http://registry.npmjs.org/mac/" + }, + "macchiato": { + "name": "macchiato", + "description": "Testing microframework that runs tests in-browser (QUnit) and under Node.js (expresso + jsdom)", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "andreyvit", + "email": "andreyvit@me.com" + } + ], + "time": { + "modified": "2011-09-19T18:55:18.701Z", + "created": "2011-09-19T18:53:26.754Z", + "0.0.0": "2011-09-19T18:53:27.802Z", + "0.0.1": "2011-09-19T18:55:18.701Z" + }, + "author": { + "name": "Andrey Tarantsov", + "email": "andreyvit@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/andreyvit/macchiato.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/macchiato/0.0.0", + "0.0.1": "http://registry.npmjs.org/macchiato/0.0.1" + }, + "dist": { + "0.0.0": { + "shasum": "dd3071037a55e23591b890ceed4a989b7e8b5784", + "tarball": "http://registry.npmjs.org/macchiato/-/macchiato-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "b25cdfdee05ede1a7900610ab1b6138e8e466e28", + "tarball": "http://registry.npmjs.org/macchiato/-/macchiato-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/macchiato/" + }, + "macgyver": { + "name": "macgyver", + "description": "", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-09-14T06:16:04.646Z", + "created": "2011-09-14T06:16:01.268Z", + "0.0.0": "2011-09-14T06:16:04.646Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com", + "url": "http://bit.ly/dominictarr" + }, + "repository": { + "type": "git", + "url": "git://github.com/dominictarr/macgyver.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/macgyver/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "468b1b2e1be82830eb930c5db8ff897d7faa86b7", + "tarball": "http://registry.npmjs.org/macgyver/-/macgyver-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/macgyver/" + }, + "macros": { + "name": "macros", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "aaronblohowiak", + "email": "aaron.blohowiak@gmail.com" + } + ], + "time": { + "modified": "2011-08-08T01:08:51.246Z", + "created": "2011-08-08T01:08:50.726Z", + "0.0.1": "2011-08-08T01:08:51.246Z" + }, + "author": { + "name": "Aaron Blohowiak" + }, + "repository": { + "url": "git://github.com/aaronblohowiak/macros.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/macros/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "d882faa225282ecd5e857ba676d79aa5daad2860", + "tarball": "http://registry.npmjs.org/macros/-/macros-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/macros/" + }, + "macrotest": { + "name": "macrotest", + "description": "A not as small assert based test runner for Node", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "aconbere", + "email": "aconbere@gmail.com" + } + ], + "author": { + "name": "Anders Conbere" + }, + "repository": { + "type": "git", + "url": "http://github.com/aconbere/macrotest.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/macrotest/0.0.1", + "0.0.2": "http://registry.npmjs.org/macrotest/0.0.2", + "0.0.3": "http://registry.npmjs.org/macrotest/0.0.3" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/macrotest/-/macrotest-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/macrotest/-/macrotest-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/macrotest/-/macrotest-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/macrotest/" + }, + "maddy": { + "name": "maddy", + "description": "A functional object operations library.", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "kitgoncharov", + "email": "ksgoncharov@gmail.com" + } + ], + "time": { + "modified": "2011-09-07T06:40:13.774Z", + "created": "2011-05-09T16:25:24.741Z", + "0.0.1": "2011-05-09T16:25:24.950Z", + "0.1.0": "2011-05-11T19:15:02.284Z", + "0.2.0": "2011-08-21T15:15:59.344Z", + "0.3.0": "2011-09-07T06:40:13.774Z" + }, + "author": { + "name": "Kit Cambridge", + "url": "http://kitcambridge.github.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/kitcambridge/maddy.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/maddy/0.0.1", + "0.1.0": "http://registry.npmjs.org/maddy/0.1.0", + "0.2.0": "http://registry.npmjs.org/maddy/0.2.0", + "0.3.0": "http://registry.npmjs.org/maddy/0.3.0" + }, + "dist": { + "0.0.1": { + "shasum": "7b4c064ac76af265ece7ca4f1f1079f397fa2bb3", + "tarball": "http://registry.npmjs.org/maddy/-/maddy-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "51024b95b1e0207eb4eff9429cf930d3cd6f2127", + "tarball": "http://registry.npmjs.org/maddy/-/maddy-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "6a4ca457835367480f38e095858eccc27202b8d2", + "tarball": "http://registry.npmjs.org/maddy/-/maddy-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "444a1e2c72e05582c972df5c0e9a69b8e9f462aa", + "tarball": "http://registry.npmjs.org/maddy/-/maddy-0.3.0.tgz" + } + }, + "keywords": [ + "utility", + "functional", + "object", + "iteration", + "enumerable", + "hash", + "maddy", + "array", + "ecma" + ], + "url": "http://registry.npmjs.org/maddy/" + }, + "madmimi-node": { + "name": "madmimi-node", + "description": "A client for the mad mimi api", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "garrensmith", + "email": "garren.smith@gmail.com" + } + ], + "time": { + "modified": "2011-05-05T18:32:18.607Z", + "created": "2011-02-11T10:38:48.349Z", + "0.1.0": "2011-02-11T10:38:49.749Z", + "0.1.1": "2011-02-14T15:19:59.546Z", + "0.1.2": "2011-03-31T14:35:38.198Z", + "0.1.3": "2011-04-18T13:47:40.266Z", + "0.1.4": "2011-05-05T18:32:18.607Z" + }, + "author": { + "name": "Garren Smith", + "email": "garren.smith@gmail.com", + "url": "www.garrensmith.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/garrensmith/Madmimi-node.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/madmimi-node/0.1.0", + "0.1.1": "http://registry.npmjs.org/madmimi-node/0.1.1", + "0.1.2": "http://registry.npmjs.org/madmimi-node/0.1.2", + "0.1.3": "http://registry.npmjs.org/madmimi-node/0.1.3", + "0.1.4": "http://registry.npmjs.org/madmimi-node/0.1.4" + }, + "dist": { + "0.1.0": { + "shasum": "e27c359deb8464017fceaa4a8786acfa33f5f981", + "tarball": "http://registry.npmjs.org/madmimi-node/-/madmimi-node-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "794fefff2558e94f42f5d1c8e42521a781b0d9dd", + "tarball": "http://registry.npmjs.org/madmimi-node/-/madmimi-node-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "96ce97866557b1fd80878c5d85e83b2f1a2464e5", + "tarball": "http://registry.npmjs.org/madmimi-node/-/madmimi-node-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "06248a1a2f8cc2ce8d69133173dc0d232d0d64a4", + "tarball": "http://registry.npmjs.org/madmimi-node/-/madmimi-node-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "9c10504716385073fe1aa59e81c7dcf3b413aefc", + "tarball": "http://registry.npmjs.org/madmimi-node/-/madmimi-node-0.1.4.tgz" + } + }, + "keywords": [ + "madmimi", + "client", + "api" + ], + "url": "http://registry.npmjs.org/madmimi-node/" + }, + "maga": { + "name": "maga", + "description": "mAKE a gaME is a node.js framework for multiplayer games", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "stagas", + "email": "gstagas@gmail.com" + } + ], + "time": { + "modified": "2011-05-07T08:57:22.779Z", + "created": "2011-04-30T08:33:40.868Z", + "0.0.1": "2011-04-30T08:33:41.609Z", + "0.0.2": "2011-04-30T11:42:24.325Z", + "0.0.3": "2011-04-30T18:16:35.770Z", + "0.0.4": "2011-04-30T19:54:47.292Z", + "0.0.5": "2011-05-01T07:11:16.983Z", + "0.0.6": "2011-05-01T07:30:33.753Z", + "0.0.7": "2011-05-01T23:00:26.280Z", + "0.0.8": "2011-05-01T23:14:01.682Z", + "0.0.9": "2011-05-01T23:47:54.939Z", + "0.1.0": "2011-05-07T08:57:22.779Z" + }, + "author": { + "name": "George Stagas", + "email": "gstagas@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/stagas/maga.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/maga/0.0.1", + "0.0.2": "http://registry.npmjs.org/maga/0.0.2", + "0.0.3": "http://registry.npmjs.org/maga/0.0.3", + "0.0.4": "http://registry.npmjs.org/maga/0.0.4", + "0.0.5": "http://registry.npmjs.org/maga/0.0.5", + "0.0.6": "http://registry.npmjs.org/maga/0.0.6", + "0.0.7": "http://registry.npmjs.org/maga/0.0.7", + "0.0.8": "http://registry.npmjs.org/maga/0.0.8", + "0.0.9": "http://registry.npmjs.org/maga/0.0.9", + "0.1.0": "http://registry.npmjs.org/maga/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "3071c2b256bc69c31dc03299d7c78e3458590209", + "tarball": "http://registry.npmjs.org/maga/-/maga-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "9a6656a2d3289bbe9c377b2609a904fb6ef1b203", + "tarball": "http://registry.npmjs.org/maga/-/maga-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "92d407fa7346c83466a1f2c67926bf1dffdb3acb", + "tarball": "http://registry.npmjs.org/maga/-/maga-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "29d24cd193e2f37d1dc5786b0c414447722fed30", + "tarball": "http://registry.npmjs.org/maga/-/maga-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "b970e8399fca417320fd3ff247516bc38700a777", + "tarball": "http://registry.npmjs.org/maga/-/maga-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "3d504398fa3e71381188f88e629d12fc3e838bd9", + "tarball": "http://registry.npmjs.org/maga/-/maga-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "d8d2b70fe18ddd840bf06744ad45f9cbc4ef99e2", + "tarball": "http://registry.npmjs.org/maga/-/maga-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "e01e03b02440daf0853c9c83f7382f27b3c1c70c", + "tarball": "http://registry.npmjs.org/maga/-/maga-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "8a8cd61c92aa6477c292c1ac8e94c1df454472c6", + "tarball": "http://registry.npmjs.org/maga/-/maga-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "c9c0163f079a61df8325eacf4925c66594205308", + "tarball": "http://registry.npmjs.org/maga/-/maga-0.1.0.tgz" + } + }, + "keywords": [ + "games", + "networking", + "physics", + "multiplayer", + "framework" + ], + "url": "http://registry.npmjs.org/maga/" + }, + "magic": { + "name": "magic", + "description": "Magic Method/getter/setters for Node.JS (Basic ES5 Harmony Proxies)", + "dist-tags": { + "latest": "1.0.3" + }, + "maintainers": [ + { + "name": "aikar", + "email": "aikar@aikar.co" + } + ], + "time": { + "modified": "2011-04-15T21:23:41.921Z", + "created": "2011-04-03T06:05:25.981Z", + "1.0.0": "2011-04-03T06:05:26.129Z", + "1.0.1": "2011-04-03T14:34:10.648Z", + "1.0.2": "2011-04-05T12:40:10.843Z", + "1.0.3": "2011-04-06T02:26:54.494Z" + }, + "author": { + "name": "Aikar", + "email": "aikar@aikar.co" + }, + "repository": { + "type": "git", + "url": "git://github.com/aikar/magic.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/magic/1.0.0", + "1.0.1": "http://registry.npmjs.org/magic/1.0.1", + "1.0.2": "http://registry.npmjs.org/magic/1.0.2", + "1.0.3": "http://registry.npmjs.org/magic/1.0.3" + }, + "dist": { + "1.0.0": { + "shasum": "3537afad142acd6967ce74ddb0922ba6203ad52d", + "tarball": "http://registry.npmjs.org/magic/-/magic-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "314f34ba90c83208856b91928817252e19e4b4a2", + "tarball": "http://registry.npmjs.org/magic/-/magic-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "71745f2f06e695677e670593de901126da41c86c", + "tarball": "http://registry.npmjs.org/magic/-/magic-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "6181772b7d84197fe9bd79db20382b336aa1151a", + "tarball": "http://registry.npmjs.org/magic/-/magic-1.0.3.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "a91a5647b6c962b32665ed182d3b5983aba63c76", + "tarball": "http://registry.npmjs.org/magic/-/magic-1.0.3-0.4-sunos-5.11.tgz" + } + } + } + }, + "keywords": [ + "harmony", + "proxy", + "proxies", + "__get", + "__set", + "__call", + "getter", + "setter" + ], + "url": "http://registry.npmjs.org/magic/" + }, + "magic-templates": { + "name": "magic-templates", + "description": "Templating framework for NodeJS inspired by Django templates.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "kami", + "email": "tomaz@tomaz.me" + } + ], + "time": { + "modified": "2011-11-05T13:23:42.273Z", + "created": "2011-03-30T18:20:34.498Z", + "0.1.0": "2011-03-30T18:20:35.367Z", + "0.1.1": "2011-11-05T13:23:42.273Z" + }, + "author": { + "name": "Tomaz Muraus", + "email": "tomaz+npm@tomaz.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/Kami/magic-templates.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/magic-templates/0.1.0", + "0.1.1": "http://registry.npmjs.org/magic-templates/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "6d5e577f19b69eb53400a2d3bb6041e4bbd2343d", + "tarball": "http://registry.npmjs.org/magic-templates/-/magic-templates-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "7679a33dc8d28f3b06570766ef3acb1166eebadd", + "tarball": "http://registry.npmjs.org/magic-templates/-/magic-templates-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/magic-templates/" + }, + "magickal": { + "name": "magickal", + "description": "A simple image manipulation library wrapping GraphicsMagick", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "mirkok", + "email": "mail@mirkokiefer.com" + } + ], + "time": { + "modified": "2011-01-25T00:15:16.882Z", + "created": "2011-01-25T00:15:16.335Z", + "0.0.1": "2011-01-25T00:15:16.882Z" + }, + "author": { + "name": "Mirko Kiefer", + "email": "mail@mirkokiefer.com", + "url": "http://mirkokiefer.com" + }, + "repository": "git://github.com/mirkok/Node-Magick.git", + "versions": { + "0.0.1": "http://registry.npmjs.org/magickal/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "9c623719ee8ff006336160cdbe623917cf92d92a", + "tarball": "http://registry.npmjs.org/magickal/-/magickal-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/magickal/" + }, + "mai": { + "name": "mai", + "description": "send text/html e-mail with mail template management feature", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "hakobera", + "email": "hakobera@gmail.com" + } + ], + "time": { + "modified": "2011-05-12T12:47:26.838Z", + "created": "2011-05-11T14:55:58.971Z", + "0.0.1": "2011-05-11T14:56:00.600Z", + "0.0.2": "2011-05-12T12:47:26.838Z" + }, + "author": { + "name": "Kazuyuki Honda", + "email": "hakobera@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/hakobera/mai.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mai/0.0.1", + "0.0.2": "http://registry.npmjs.org/mai/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "d2c1dd7596ba8322dc99395be7af7fb11b9308c3", + "tarball": "http://registry.npmjs.org/mai/-/mai-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "da2f14b8e04fc1f869e09e3b2888b815a0d579f9", + "tarball": "http://registry.npmjs.org/mai/-/mai-0.0.2.tgz" + } + }, + "keywords": [ + "mail" + ], + "url": "http://registry.npmjs.org/mai/" + }, + "mail": { + "name": "mail", + "description": "This SMTP client library for Node.JS helps you send email safely and easily.", + "dist-tags": { + "latest": "0.2.3" + }, + "maintainers": [ + { + "name": "weaver", + "email": "ben@orangesoda.net" + } + ], + "author": { + "name": "Ben Weaver", + "email": "ben@orangesoda.net" + }, + "time": { + "modified": "2011-06-14T20:01:10.032Z", + "created": "2011-03-28T20:36:45.470Z", + "0.1.0": "2011-03-28T20:36:45.470Z", + "0.1.1": "2011-03-28T20:36:45.470Z", + "0.2.1": "2011-03-28T20:36:45.470Z", + "0.2.2": "2011-03-28T21:40:23.031Z", + "0.2.3": "2011-06-14T20:01:10.032Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/mail/0.1.0", + "0.1.1": "http://registry.npmjs.org/mail/0.1.1", + "0.2.1": "http://registry.npmjs.org/mail/0.2.1", + "0.2.2": "http://registry.npmjs.org/mail/0.2.2", + "0.2.3": "http://registry.npmjs.org/mail/0.2.3" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/mail/-/mail-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://packages:5984/mail/-/mail-0.1.1.tgz" + }, + "0.2.1": { + "shasum": "64b104cc9e74a3e07aac648a8eb8358c9f306a7c", + "tarball": "http://registry.npmjs.org/mail/-/mail-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "f3e4679a3ef2da62bd9d14592cd473056b368b35", + "tarball": "http://registry.npmjs.org/mail/-/mail-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "1eddfe74bb38d7ebff6211aa903ba6beaf96ec24", + "tarball": "http://registry.npmjs.org/mail/-/mail-0.2.3.tgz" + } + }, + "keywords": [ + "email", + "mail", + "message", + "address", + "smtp", + "tls", + "auth" + ], + "url": "http://registry.npmjs.org/mail/" + }, + "mail-stack": { + "name": "mail-stack", + "description": "A `StreamStack` subclass that parses raw e-mail messages.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "TooTallNate", + "email": "nathan@tootallnate.net" + } + ], + "time": { + "modified": "2011-03-25T17:59:31.071Z", + "created": "2011-03-23T03:55:05.738Z", + "0.0.1": "2011-03-23T03:55:06.177Z", + "0.0.2": "2011-03-25T17:59:31.071Z" + }, + "author": { + "name": "Nathan Rajlich", + "email": "nathan@tootallnate.net", + "url": "http://tootallnate.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/TooTallNate/node-mail-stack.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mail-stack/0.0.1", + "0.0.2": "http://registry.npmjs.org/mail-stack/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "dfb96da89d1019433306bd6ac8e623fee836a1f2", + "tarball": "http://registry.npmjs.org/mail-stack/-/mail-stack-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "299794fdb0605020df9c1393e048652c18e49c9f", + "tarball": "http://registry.npmjs.org/mail-stack/-/mail-stack-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/mail-stack/" + }, + "mailbox": { + "name": "mailbox", + "description": "Library for parsing and writing various mailbox formats", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "aredridel", + "email": "aredridel@nbtsc.org" + } + ], + "time": { + "modified": "2011-06-14T04:40:44.561Z", + "created": "2011-06-13T03:36:18.421Z", + "0.0.1": "2011-06-13T03:36:18.421Z", + "0.0.2": "2011-06-13T03:36:18.421Z", + "0.0.3": "2011-06-13T03:38:56.026Z", + "0.0.4": "2011-06-14T04:40:44.561Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mailbox/0.0.1", + "0.0.2": "http://registry.npmjs.org/mailbox/0.0.2", + "0.0.3": "http://registry.npmjs.org/mailbox/0.0.3", + "0.0.4": "http://registry.npmjs.org/mailbox/0.0.4" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/mailbox/-/mailbox-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "910ea52f84bdba9b0cad3834ed7b71357f51f12b", + "tarball": "http://registry.npmjs.org/mailbox/-/mailbox-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "29904c1e4a20cac82483508bdebf71812f8de84e", + "tarball": "http://registry.npmjs.org/mailbox/-/mailbox-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "3d294ead6f1365ea3c392534ec46eb0c012421e1", + "tarball": "http://registry.npmjs.org/mailbox/-/mailbox-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/mailbox/" + }, + "mailchimp": { + "name": "mailchimp", + "description": "A node.js wrapper for the MailChimp API.", + "dist-tags": { + "latest": "0.8.0" + }, + "maintainers": [ + { + "name": "gomfunkel", + "email": "leinich@gmx.net" + } + ], + "time": { + "modified": "2011-08-30T23:25:39.821Z", + "created": "2011-01-15T20:35:48.480Z", + "0.1.0": "2011-01-15T20:35:49.012Z", + "0.2.0": "2011-01-17T20:27:19.945Z", + "0.3.0": "2011-01-19T21:43:46.380Z", + "0.4.0": "2011-01-20T21:52:35.691Z", + "0.5.0": "2011-01-29T15:36:17.883Z", + "0.6.0": "2011-04-27T19:29:34.486Z", + "0.7.0": "2011-05-26T18:05:53.729Z", + "0.7.1": "2011-06-13T19:58:40.905Z", + "0.8.0": "2011-08-30T23:25:39.821Z" + }, + "author": { + "name": "Daniel Leinich", + "email": "leinich@gmx.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/gomfunkel/node-mailchimp.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/mailchimp/0.1.0", + "0.2.0": "http://registry.npmjs.org/mailchimp/0.2.0", + "0.3.0": "http://registry.npmjs.org/mailchimp/0.3.0", + "0.4.0": "http://registry.npmjs.org/mailchimp/0.4.0", + "0.5.0": "http://registry.npmjs.org/mailchimp/0.5.0", + "0.6.0": "http://registry.npmjs.org/mailchimp/0.6.0", + "0.7.0": "http://registry.npmjs.org/mailchimp/0.7.0", + "0.7.1": "http://registry.npmjs.org/mailchimp/0.7.1", + "0.8.0": "http://registry.npmjs.org/mailchimp/0.8.0" + }, + "dist": { + "0.1.0": { + "shasum": "2fe0c9ee86587e706d45211a3bf5e453e27d5c1e", + "tarball": "http://registry.npmjs.org/mailchimp/-/mailchimp-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "d380a24d64f6d3cc0f9047f68e937aed643f5aa8", + "tarball": "http://registry.npmjs.org/mailchimp/-/mailchimp-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "71c1d25a856ac54f66c40d6304570b8ef5c7c5b0", + "tarball": "http://registry.npmjs.org/mailchimp/-/mailchimp-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "31a456730e27b0b8433a167ed32660df2647fc78", + "tarball": "http://registry.npmjs.org/mailchimp/-/mailchimp-0.4.0.tgz" + }, + "0.5.0": { + "shasum": "d2062ee05295626eeaa81546f072c3ba7dd15bb8", + "tarball": "http://registry.npmjs.org/mailchimp/-/mailchimp-0.5.0.tgz" + }, + "0.6.0": { + "shasum": "9a36a68655bc821e045ac815f7000f662202b641", + "tarball": "http://registry.npmjs.org/mailchimp/-/mailchimp-0.6.0.tgz" + }, + "0.7.0": { + "shasum": "823816a1df59356f5aed76e71ec56adf99fccba2", + "tarball": "http://registry.npmjs.org/mailchimp/-/mailchimp-0.7.0.tgz" + }, + "0.7.1": { + "shasum": "837f4f0abba2469cf69fafa3fc905ecab81846a9", + "tarball": "http://registry.npmjs.org/mailchimp/-/mailchimp-0.7.1.tgz" + }, + "0.8.0": { + "shasum": "f103ff0a4af4affc25409e48d1935798511c4510", + "tarball": "http://registry.npmjs.org/mailchimp/-/mailchimp-0.8.0.tgz" + } + }, + "url": "http://registry.npmjs.org/mailchimp/" + }, + "mailed": { + "name": "mailed", + "description": "A standalone mailer for Node.JS", + "dist-tags": { + "latest": "1.1.1" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-11-22T00:51:37.133Z", + "created": "2011-11-10T16:31:43.660Z", + "1.0.1": "2011-11-10T16:31:45.421Z", + "1.1.1": "2011-11-22T00:51:37.133Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com", + "url": "http://coolaj86.info/" + }, + "repository": { + "type": "git", + "url": "git://github.com/coolaj86/node-examples-js.git" + }, + "versions": { + "1.0.1": "http://registry.npmjs.org/mailed/1.0.1", + "1.1.1": "http://registry.npmjs.org/mailed/1.1.1" + }, + "dist": { + "1.0.1": { + "shasum": "57686e42d7504d61055a5338ab998f230c63ca7c", + "tarball": "http://registry.npmjs.org/mailed/-/mailed-1.0.1.tgz" + }, + "1.1.1": { + "shasum": "260de40ec04d118c69db5d9b6152fc08841f9ed6", + "tarball": "http://registry.npmjs.org/mailed/-/mailed-1.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/mailed/" + }, + "mailer": { + "name": "mailer", + "description": "send emails from node.js to a smtp server, simple as cake", + "dist-tags": { + "latest": "0.6.7" + }, + "maintainers": [ + { + "name": "marak", + "email": "marak.squires@gmail.com" + }, + { + "name": "bmeck", + "email": "bradley.meck@gmail.com" + }, + { + "name": "bradleymeck", + "email": "bradley.meck@gmail.com" + } + ], + "author": { + "name": "Marak Squires" + }, + "repository": { + "type": "git", + "url": "git://github.com/Marak/node_mailer.git" + }, + "time": { + "modified": "2011-11-28T09:02:00.199Z", + "created": "2011-01-05T21:42:26.013Z", + "0.1.0": "2011-01-05T21:42:26.013Z", + "0.2.0": "2011-01-05T21:42:26.013Z", + "0.3.0": "2011-01-05T21:42:26.013Z", + "0.4.0": "2011-01-05T21:42:26.013Z", + "0.4.1": "2011-01-05T21:42:26.013Z", + "0.4.2": "2011-01-05T21:42:26.013Z", + "0.4.3": "2011-01-15T17:19:43.573Z", + "0.4.4": "2011-01-17T11:03:54.279Z", + "0.4.5": "2011-01-24T22:08:38.937Z", + "0.4.52": "2011-01-28T23:49:30.257Z", + "0.5.52": "2011-05-17T21:27:51.611Z", + "0.5.6": "2011-05-18T21:46:45.531Z", + "0.6.2": "2011-06-03T21:43:14.523Z", + "0.6.3": "2011-06-22T18:21:18.797Z", + "0.6.4": "2011-06-22T18:31:09.026Z", + "0.6.5": "2011-06-28T15:28:45.797Z", + "0.6.6": "2011-08-16T17:40:14.076Z", + "0.6.7": "2011-10-10T23:16:52.242Z" + }, + "users": { + "pid": true + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/mailer/0.1.0", + "0.2.0": "http://registry.npmjs.org/mailer/0.2.0", + "0.3.0": "http://registry.npmjs.org/mailer/0.3.0", + "0.4.0": "http://registry.npmjs.org/mailer/0.4.0", + "0.4.1": "http://registry.npmjs.org/mailer/0.4.1", + "0.4.2": "http://registry.npmjs.org/mailer/0.4.2", + "0.4.3": "http://registry.npmjs.org/mailer/0.4.3", + "0.4.4": "http://registry.npmjs.org/mailer/0.4.4", + "0.4.5": "http://registry.npmjs.org/mailer/0.4.5", + "0.4.52": "http://registry.npmjs.org/mailer/0.4.52", + "0.5.52": "http://registry.npmjs.org/mailer/0.5.52", + "0.5.6": "http://registry.npmjs.org/mailer/0.5.6", + "0.6.2": "http://registry.npmjs.org/mailer/0.6.2", + "0.6.3": "http://registry.npmjs.org/mailer/0.6.3", + "0.6.4": "http://registry.npmjs.org/mailer/0.6.4", + "0.6.5": "http://registry.npmjs.org/mailer/0.6.5", + "0.6.6": "http://registry.npmjs.org/mailer/0.6.6", + "0.6.7": "http://registry.npmjs.org/mailer/0.6.7" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/mailer/-/mailer-0.1.0.tgz" + }, + "0.2.0": { + "tarball": "http://packages:5984/mailer/-/mailer-0.2.0.tgz" + }, + "0.3.0": { + "tarball": "http://packages:5984/mailer/-/mailer-0.3.0.tgz" + }, + "0.4.0": { + "tarball": "http://packages:5984/mailer/-/mailer-0.4.0.tgz" + }, + "0.4.1": { + "tarball": "http://registry.npmjs.org/mailer/-/mailer-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "732fc7a60fd47e7232c990a231440a6be1c6044f", + "tarball": "http://registry.npmjs.org/mailer/-/mailer-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "18ece22da01add02926a1a8603bcad58b69db668", + "tarball": "http://registry.npmjs.org/mailer/-/mailer-0.4.3.tgz" + }, + "0.4.4": { + "shasum": "57352844bc519f66242a9a80de3f52b7a8adc977", + "tarball": "http://registry.npmjs.org/mailer/-/mailer-0.4.4.tgz" + }, + "0.4.5": { + "shasum": "3eea43dfbf5c9cb37249348d5f82ec326fef215b", + "tarball": "http://registry.npmjs.org/mailer/-/mailer-0.4.5.tgz" + }, + "0.4.52": { + "shasum": "cd65037f2701f85e777e4379f146f4e5957b2d4e", + "tarball": "http://registry.npmjs.org/mailer/-/mailer-0.4.52.tgz" + }, + "0.5.52": { + "shasum": "58648474ef2eb23505039941da81fbeede2b0d69", + "tarball": "http://registry.npmjs.org/mailer/-/mailer-0.5.52.tgz" + }, + "0.5.6": { + "shasum": "fe43a358f91365f7d2146d90076fa55aebbb934e", + "tarball": "http://registry.npmjs.org/mailer/-/mailer-0.5.6.tgz" + }, + "0.6.2": { + "shasum": "819200254835ec1a2f0927dcee035ae08d231bed", + "tarball": "http://registry.npmjs.org/mailer/-/mailer-0.6.2.tgz" + }, + "0.6.3": { + "shasum": "d326d90de0680961a8133f60ab390a47709718bf", + "tarball": "http://registry.npmjs.org/mailer/-/mailer-0.6.3.tgz" + }, + "0.6.4": { + "shasum": "0520846e1858f52149707b91978aaa3d23f75e62", + "tarball": "http://registry.npmjs.org/mailer/-/mailer-0.6.4.tgz" + }, + "0.6.5": { + "shasum": "1dabe692b9ea89030a82c2d07f654eefa48d9984", + "tarball": "http://registry.npmjs.org/mailer/-/mailer-0.6.5.tgz" + }, + "0.6.6": { + "shasum": "e9c697ab4db436cfe73e156944825ca93cad084f", + "tarball": "http://registry.npmjs.org/mailer/-/mailer-0.6.6.tgz" + }, + "0.6.7": { + "shasum": "012d69b2554864976d9d77f5326b35097653f653", + "tarball": "http://registry.npmjs.org/mailer/-/mailer-0.6.7.tgz" + } + }, + "url": "http://registry.npmjs.org/mailer/" + }, + "mailer-bal": { + "name": "mailer-bal", + "description": "send emails from node.js to a smtp server, simple as cake", + "dist-tags": { + "latest": "0.6.7" + }, + "maintainers": [ + { + "name": "balupton", + "email": "b@lupton.cc" + } + ], + "time": { + "modified": "2011-08-28T02:17:40.259Z", + "created": "2011-08-28T02:17:36.374Z", + "0.6.7": "2011-08-28T02:17:40.259Z" + }, + "author": { + "name": "Marak Squires" + }, + "repository": { + "type": "git", + "url": "git://github.com/Marak/node_mailer.git" + }, + "versions": { + "0.6.7": "http://registry.npmjs.org/mailer-bal/0.6.7" + }, + "dist": { + "0.6.7": { + "shasum": "2ac8be112e1dce2eac769c911e919e7bbda17511", + "tarball": "http://registry.npmjs.org/mailer-bal/-/mailer-bal-0.6.7.tgz" + } + }, + "url": "http://registry.npmjs.org/mailer-bal/" + }, + "mailer-fixed": { + "name": "mailer-fixed", + "description": "send emails from node.js to a smtp server, simple as cake", + "dist-tags": { + "latest": "0.4.55", + "stable": "0.4.55" + }, + "maintainers": [ + { + "name": "fedor.indutny", + "email": "fedor.indutny@gmail.com" + } + ], + "time": { + "modified": "2011-02-08T16:09:52.691Z", + "created": "2011-01-24T13:42:15.716Z", + "0.4.5": "2011-01-24T13:42:16.595Z", + "0.4.52": "2011-02-07T16:21:26.689Z", + "0.4.53": "2011-02-07T16:21:48.043Z", + "0.4.54": "2011-02-08T15:58:25.684Z", + "0.4.55": "2011-02-08T16:09:40.147Z" + }, + "author": { + "name": "Marak Squires" + }, + "repository": { + "type": "git", + "url": "http://github.com/Marak/node_mailer.git" + }, + "versions": { + "0.4.5": "http://registry.npmjs.org/mailer-fixed/0.4.5", + "0.4.52": "http://registry.npmjs.org/mailer-fixed/0.4.52", + "0.4.53": "http://registry.npmjs.org/mailer-fixed/0.4.53", + "0.4.54": "http://registry.npmjs.org/mailer-fixed/0.4.54", + "0.4.55": "http://registry.npmjs.org/mailer-fixed/0.4.55" + }, + "dist": { + "0.4.5": { + "shasum": "40cf1f465041f70763b6d3f5155c90862f18400b", + "tarball": "http://registry.npmjs.org/mailer-fixed/-/mailer-fixed-0.4.5.tgz" + }, + "0.4.52": { + "shasum": "680d882d972d4531bb2840c4bcea9a02e8f6c659", + "tarball": "http://registry.npmjs.org/mailer-fixed/-/mailer-fixed-0.4.52.tgz" + }, + "0.4.53": { + "shasum": "302866bf9667cc9013d01911b65dcadc5de44214", + "tarball": "http://registry.npmjs.org/mailer-fixed/-/mailer-fixed-0.4.53.tgz" + }, + "0.4.54": { + "shasum": "c7a5a2f78d2c7d5df9928a9b4ca1cd4bac3c0e92", + "tarball": "http://registry.npmjs.org/mailer-fixed/-/mailer-fixed-0.4.54.tgz" + }, + "0.4.55": { + "shasum": "a1c2386a50371f7ba8b4ebea6b72987b698b6462", + "tarball": "http://registry.npmjs.org/mailer-fixed/-/mailer-fixed-0.4.55.tgz" + } + }, + "url": "http://registry.npmjs.org/mailer-fixed/" + }, + "mailgun": { + "name": "mailgun", + "description": "Mailgun for Node.js", + "dist-tags": { + "latest": "0.4.2" + }, + "maintainers": [ + { + "name": "shz", + "email": "lylepstein@gmail.com" + } + ], + "time": { + "modified": "2011-07-18T21:23:44.774Z", + "created": "2011-06-01T19:27:29.236Z", + "0.1.6": "2011-06-01T19:27:29.537Z", + "0.4.0": "2011-07-02T20:28:00.358Z", + "0.4.1": "2011-07-02T20:31:49.156Z", + "0.4.2": "2011-07-18T21:23:44.774Z" + }, + "author": { + "name": "shz" + }, + "repository": { + "type": "git", + "url": "git@github.com:shz/node-mailgun.git" + }, + "versions": { + "0.1.6": "http://registry.npmjs.org/mailgun/0.1.6", + "0.4.0": "http://registry.npmjs.org/mailgun/0.4.0", + "0.4.1": "http://registry.npmjs.org/mailgun/0.4.1", + "0.4.2": "http://registry.npmjs.org/mailgun/0.4.2" + }, + "dist": { + "0.1.6": { + "shasum": "9d0b5b1be9b5ea99427c7941f00d7c243b458f75", + "tarball": "http://registry.npmjs.org/mailgun/-/mailgun-0.1.6.tgz" + }, + "0.4.0": { + "shasum": "34a3082bfe4e08172d0846fec7faedd1059a95d0", + "tarball": "http://registry.npmjs.org/mailgun/-/mailgun-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "7486c7e18a656579abd571cdbce301ac20d58a9b", + "tarball": "http://registry.npmjs.org/mailgun/-/mailgun-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "17a782051857971cf5f00075bce43a0a07909ccf", + "tarball": "http://registry.npmjs.org/mailgun/-/mailgun-0.4.2.tgz" + } + }, + "url": "http://registry.npmjs.org/mailgun/" + }, + "mailparser": { + "name": "mailparser", + "description": "Asynchronous and non-blocking parser for mime encoded e-mail messages", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "andris", + "email": "andris@node.ee" + } + ], + "author": { + "name": "Andris Reinman" + }, + "repository": { + "type": "git", + "url": "git://github.com/andris9/mailparser.git" + }, + "time": { + "modified": "2011-09-19T07:40:53.082Z", + "created": "2011-09-14T12:57:05.848Z", + "0.1.0": "2011-09-14T12:57:05.848Z", + "0.1.1": "2011-09-14T12:57:05.848Z", + "0.1.2": "2011-09-19T07:40:53.082Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/mailparser/0.1.0", + "0.1.1": "http://registry.npmjs.org/mailparser/0.1.1", + "0.1.2": "http://registry.npmjs.org/mailparser/0.1.2" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/mailparser/-/mailparser-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "ffbd3b0966b98c0ab526b9b03bc8f22b395cd62c", + "tarball": "http://registry.npmjs.org/mailparser/-/mailparser-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "dbc04fc22a29325fa480ac8204582bceeb437521", + "tarball": "http://registry.npmjs.org/mailparser/-/mailparser-0.1.2.tgz" + } + }, + "keywords": [ + "e-mail", + "mime", + "parser" + ], + "url": "http://registry.npmjs.org/mailparser/" + }, + "mailto-parser": { + "name": "mailto-parser", + "description": "Module that has utilities for MailTo parsing", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "goulash1971", + "email": "goulash1971@yahoo.com" + } + ], + "time": { + "modified": "2011-06-27T06:32:09.457Z", + "created": "2011-06-27T06:32:08.226Z", + "1.0.0": "2011-06-27T06:32:09.457Z" + }, + "author": { + "name": "Stuart Hudson", + "email": "goulash1971@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/goulash1971/mailto-parser.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/mailto-parser/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "ff4121c2ce11aba06b01abe769b93bb8dc3a0e15", + "tarball": "http://registry.npmjs.org/mailto-parser/-/mailto-parser-1.0.0.tgz" + } + }, + "keywords": [ + "mailto", + "parser" + ], + "url": "http://registry.npmjs.org/mailto-parser/" + }, + "maintenance-page": { + "name": "maintenance-page", + "description": "Turn on/off maintenance page while working on production server.", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "hasan", + "email": "hasan@welltreat.us" + } + ], + "time": { + "modified": "2011-10-21T08:55:36.686Z", + "created": "2011-10-19T06:28:33.468Z", + "0.1.0": "2011-10-19T06:28:36.365Z", + "0.1.1": "2011-10-21T08:49:12.443Z", + "0.1.2": "2011-10-21T08:55:36.686Z" + }, + "author": { + "name": "Nhm Tanveer Hossain Khan", + "email": "hasan@welltreat.us" + }, + "repository": { + "type": "git", + "url": "git://github.com/we4tech/node-maintenance-page.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/maintenance-page/0.1.0", + "0.1.1": "http://registry.npmjs.org/maintenance-page/0.1.1", + "0.1.2": "http://registry.npmjs.org/maintenance-page/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "081cea3957c08f3b679a3285aa0f9f00550238ff", + "tarball": "http://registry.npmjs.org/maintenance-page/-/maintenance-page-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "c54e392dc81a663e756bf3b7080a824509c789f0", + "tarball": "http://registry.npmjs.org/maintenance-page/-/maintenance-page-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "9a99447b2b2df403ae594d46f97d848ea6aad92f", + "tarball": "http://registry.npmjs.org/maintenance-page/-/maintenance-page-0.1.2.tgz" + } + }, + "keywords": [ + "maintenance", + "page", + "command", + "shell" + ], + "url": "http://registry.npmjs.org/maintenance-page/" + }, + "makeerror": { + "name": "makeerror", + "description": "A library to make errors.", + "dist-tags": { + "latest": "1.0.8" + }, + "maintainers": [ + { + "name": "naitik", + "email": "n@daaku.org" + } + ], + "time": { + "modified": "2011-08-17T21:03:48.622Z", + "created": "2011-07-24T19:31:22.107Z", + "1.0.0": "2011-07-24T19:31:22.640Z", + "1.0.1": "2011-07-27T17:18:02.013Z", + "1.0.2": "2011-08-08T01:45:42.619Z", + "1.0.3": "2011-08-08T02:39:17.143Z", + "1.0.4": "2011-08-17T04:12:07.567Z", + "1.0.6": "2011-08-17T20:32:28.284Z", + "1.0.7": "2011-08-17T20:36:05.662Z", + "1.0.8": "2011-08-17T21:03:48.622Z" + }, + "author": { + "name": "Naitik Shah", + "email": "n@daaku.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/nshah/nodejs-makeerror.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/makeerror/1.0.0", + "1.0.1": "http://registry.npmjs.org/makeerror/1.0.1", + "1.0.2": "http://registry.npmjs.org/makeerror/1.0.2", + "1.0.3": "http://registry.npmjs.org/makeerror/1.0.3", + "1.0.4": "http://registry.npmjs.org/makeerror/1.0.4", + "1.0.6": "http://registry.npmjs.org/makeerror/1.0.6", + "1.0.7": "http://registry.npmjs.org/makeerror/1.0.7", + "1.0.8": "http://registry.npmjs.org/makeerror/1.0.8" + }, + "dist": { + "1.0.0": { + "shasum": "9a2e2cb9669b6a1c0060b325022feb6a375b0873", + "tarball": "http://registry.npmjs.org/makeerror/-/makeerror-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "80d00385f0135dfe1560e3134250d7384176dffe", + "tarball": "http://registry.npmjs.org/makeerror/-/makeerror-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "f3a9ed4737226e953e7a26e7d7a3231e6797aa43", + "tarball": "http://registry.npmjs.org/makeerror/-/makeerror-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "9cc5b2968436b18a57f78ca65619d48ba30f4c85", + "tarball": "http://registry.npmjs.org/makeerror/-/makeerror-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "97ad57bfd7d95669513a4a22f5bbc275c45c61ab", + "tarball": "http://registry.npmjs.org/makeerror/-/makeerror-1.0.4.tgz" + }, + "1.0.6": { + "shasum": "e9e7a1b64b8f0190ce5dea6d813accfe9c9b08b7", + "tarball": "http://registry.npmjs.org/makeerror/-/makeerror-1.0.6.tgz" + }, + "1.0.7": { + "shasum": "f2c7f0eb357e279d246bb71073ed3223a1580aec", + "tarball": "http://registry.npmjs.org/makeerror/-/makeerror-1.0.7.tgz" + }, + "1.0.8": { + "shasum": "443ea6aa39021ae839daf5bd2190b6193258feb5", + "tarball": "http://registry.npmjs.org/makeerror/-/makeerror-1.0.8.tgz" + } + }, + "url": "http://registry.npmjs.org/makeerror/" + }, + "malt": { + "name": "malt", + "description": "realtime model for beanpole", + "dist-tags": { + "latest": "0.0.8" + }, + "maintainers": [ + { + "name": "architectd", + "email": "craig.j.condon@gmail.com" + } + ], + "time": { + "modified": "2011-12-10T23:27:48.276Z", + "created": "2011-08-15T04:04:44.477Z", + "0.0.1": "2011-08-15T04:04:44.690Z", + "0.0.3": "2011-09-12T05:21:10.858Z", + "0.0.4": "2011-09-13T17:42:39.660Z", + "0.0.5": "2011-10-02T02:56:26.861Z", + "0.0.6": "2011-11-14T22:33:04.164Z", + "0.0.7": "2011-11-20T18:25:39.359Z", + "0.0.8": "2011-12-10T23:27:48.276Z" + }, + "author": { + "name": "Craig Condon" + }, + "repository": { + "type": "git", + "url": "git://github.com/crcn/malt.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/malt/0.0.1", + "0.0.3": "http://registry.npmjs.org/malt/0.0.3", + "0.0.4": "http://registry.npmjs.org/malt/0.0.4", + "0.0.5": "http://registry.npmjs.org/malt/0.0.5", + "0.0.6": "http://registry.npmjs.org/malt/0.0.6", + "0.0.7": "http://registry.npmjs.org/malt/0.0.7", + "0.0.8": "http://registry.npmjs.org/malt/0.0.8" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/malt/-/malt-0.0.1.tgz" + }, + "0.0.3": { + "shasum": "21110f078019d7818c98c7ce75d7b34a0eb115f2", + "tarball": "http://registry.npmjs.org/malt/-/malt-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "b01fa99aa6ea82e28ecd82be197bcb59988ed487", + "tarball": "http://registry.npmjs.org/malt/-/malt-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "2acb9cef4a1e3729783d0fb9427722404b6cf05b", + "tarball": "http://registry.npmjs.org/malt/-/malt-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "466cb311778f4fca926daa6811dd6374071b8f78", + "tarball": "http://registry.npmjs.org/malt/-/malt-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "64c83e52ace0818e7f679fa02b8b8cf9d369241b", + "tarball": "http://registry.npmjs.org/malt/-/malt-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "0eaf2cf5308700ec2856428e79aff82f259a32a8", + "tarball": "http://registry.npmjs.org/malt/-/malt-0.0.8.tgz" + } + }, + "url": "http://registry.npmjs.org/malt/" + }, + "mango": { + "name": "mango", + "description": "a lightweight rails-inspired web framework based on express.", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "pmeinhardt", + "email": "paul.meinhardt@student.hpi.uni-potsdam.de" + } + ], + "time": { + "modified": "2011-07-11T18:45:56.753Z", + "created": "2011-07-11T18:20:41.796Z", + "0.0.1": "2011-07-11T18:20:42.600Z", + "0.0.2": "2011-07-11T18:26:24.486Z", + "0.0.3": "2011-07-11T18:45:56.753Z" + }, + "author": { + "name": "paul meinhardt" + }, + "repository": { + "type": "git", + "url": "git://github.com/pmeinhardt/mango.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mango/0.0.1", + "0.0.2": "http://registry.npmjs.org/mango/0.0.2", + "0.0.3": "http://registry.npmjs.org/mango/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "3c0c9f224123208411f3e57f333586f9e5e76758", + "tarball": "http://registry.npmjs.org/mango/-/mango-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "6a4e45a1cf6c562744accb2c72bebec7feca2b79", + "tarball": "http://registry.npmjs.org/mango/-/mango-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "97f0779c4c90663a06963ae6124b7bc9db1f65c0", + "tarball": "http://registry.npmjs.org/mango/-/mango-0.0.3.tgz" + } + }, + "keywords": [ + "lightweight", + "rails", + "node", + "mvc", + "framework", + "express" + ], + "url": "http://registry.npmjs.org/mango/" + }, + "manila": { + "name": "manila", + "description": "On-the-fly proccessing for Node.js and MongoDB", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "scttnlsn", + "email": "scottbnel@gmail.com" + } + ], + "time": { + "modified": "2011-11-18T21:53:36.386Z", + "created": "2011-11-18T21:53:35.767Z", + "0.0.1": "2011-11-18T21:53:36.386Z" + }, + "author": { + "name": "Scott Nelson", + "email": "scottbnel@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/scttnlsn/manila.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/manila/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "6b6e348063835030811b392a16c2da86d4a0f1c3", + "tarball": "http://registry.npmjs.org/manila/-/manila-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/manila/" + }, + "map-reduce": { + "name": "map-reduce", + "description": "async NoSql like map reduce function inside node.", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-06-30T07:51:36.751Z", + "created": "2011-06-03T01:58:46.447Z", + "0.0.0": "2011-06-03T01:58:46.913Z", + "0.1.0": "2011-06-25T17:23:13.085Z", + "0.1.1": "2011-06-25T17:48:20.906Z", + "0.1.2": "2011-06-25T22:25:56.595Z", + "0.2.2": "2011-06-30T07:51:36.751Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com", + "url": "http://bit.ly/dominictarr" + }, + "repository": { + "type": "git", + "url": "git://github.com/dominictarr/map-reduce.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/map-reduce/0.0.0", + "0.1.0": "http://registry.npmjs.org/map-reduce/0.1.0", + "0.1.1": "http://registry.npmjs.org/map-reduce/0.1.1", + "0.1.2": "http://registry.npmjs.org/map-reduce/0.1.2", + "0.2.2": "http://registry.npmjs.org/map-reduce/0.2.2" + }, + "dist": { + "0.0.0": { + "shasum": "814f7abde4daa5251fcef07b12c295a21c2ceb86", + "tarball": "http://registry.npmjs.org/map-reduce/-/map-reduce-0.0.0.tgz" + }, + "0.1.0": { + "shasum": "8a51df84d237f78a8f2edce0d13f0c90735c0596", + "tarball": "http://registry.npmjs.org/map-reduce/-/map-reduce-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "eb90d3c9a16513281ada6f130e08c490664d4338", + "tarball": "http://registry.npmjs.org/map-reduce/-/map-reduce-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "28ab8fe626fafbd7a5849b3103e4910e5cec5bb5", + "tarball": "http://registry.npmjs.org/map-reduce/-/map-reduce-0.1.2.tgz" + }, + "0.2.2": { + "shasum": "6ce7937ad87e78045978f1d00e31752dc19cf75a", + "tarball": "http://registry.npmjs.org/map-reduce/-/map-reduce-0.2.2.tgz" + } + }, + "url": "http://registry.npmjs.org/map-reduce/" + }, + "mapnik": { + "name": "mapnik", + "description": "Tile rendering library for node", + "dist-tags": { + "latest": "0.5.12" + }, + "maintainers": [ + { + "name": "springmeyer", + "email": "dane@dbsgeo.com" + }, + { + "name": "kkaefer", + "email": "kkaefer@gmail.com" + } + ], + "author": { + "name": "Dane Springmeyer", + "email": "dane@dbsgeo.com", + "url": "http://mapbox.com/" + }, + "time": { + "modified": "2011-12-06T02:29:13.642Z", + "created": "2011-01-27T21:52:45.409Z", + "0.1.0": "2011-01-27T21:52:45.409Z", + "0.1.1": "2011-01-27T21:52:45.409Z", + "0.1.2": "2011-01-27T21:52:45.409Z", + "0.2.3": "2011-01-27T21:52:45.409Z", + "0.2.5": "2011-02-08T16:59:31.075Z", + "0.2.6": "2011-02-08T19:53:49.598Z", + "0.2.7": "2011-02-08T21:10:03.450Z", + "0.2.8": "2011-02-11T18:47:09.331Z", + "0.2.9": "2011-02-24T18:55:07.234Z", + "0.2.10": "2011-02-28T17:29:08.772Z", + "0.2.11": "2011-03-01T23:32:51.514Z", + "0.2.12": "2011-03-03T14:26:57.907Z", + "0.2.13": "2011-03-12T18:18:32.044Z", + "0.3.0": "2011-04-29T01:31:20.520Z", + "0.3.1": "2011-05-04T01:50:58.910Z", + "0.4.0": "2011-06-27T16:01:00.943Z", + "0.4.1": "2011-07-29T20:20:05.852Z", + "0.4.2": "2011-08-03T16:08:20.573Z", + "0.5.0": "2011-08-03T17:01:18.083Z", + "0.5.1": "2011-08-04T02:40:45.507Z", + "0.5.2": "2011-08-04T15:29:11.004Z", + "0.5.3": "2011-08-04T21:28:08.128Z", + "0.5.4": "2011-08-23T20:02:40.548Z", + "0.5.5": "2011-11-30T18:44:13.095Z", + "0.5.6": "2011-10-03T20:57:13.369Z", + "0.5.7": "2011-10-18T01:34:01.448Z", + "0.5.8": "2011-10-19T01:11:59.940Z", + "0.5.9": "2011-11-18T17:44:40.559Z", + "0.6.0": "2011-11-19T00:17:36.818Z", + "0.5.10": "2011-11-30T18:25:01.034Z", + "0.6.1": "2011-11-30T19:30:20.125Z", + "0.6.2": "2011-12-06T01:26:01.128Z", + "0.5.11": "2011-12-06T01:26:35.253Z", + "0.5.12": "2011-12-06T02:29:13.642Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/mapnik/0.1.0", + "0.1.1": "http://registry.npmjs.org/mapnik/0.1.1", + "0.1.2": "http://registry.npmjs.org/mapnik/0.1.2", + "0.2.3": "http://registry.npmjs.org/mapnik/0.2.3", + "0.2.5": "http://registry.npmjs.org/mapnik/0.2.5", + "0.2.6": "http://registry.npmjs.org/mapnik/0.2.6", + "0.2.7": "http://registry.npmjs.org/mapnik/0.2.7", + "0.2.8": "http://registry.npmjs.org/mapnik/0.2.8", + "0.2.9": "http://registry.npmjs.org/mapnik/0.2.9", + "0.2.10": "http://registry.npmjs.org/mapnik/0.2.10", + "0.2.11": "http://registry.npmjs.org/mapnik/0.2.11", + "0.2.12": "http://registry.npmjs.org/mapnik/0.2.12", + "0.2.13": "http://registry.npmjs.org/mapnik/0.2.13", + "0.3.0": "http://registry.npmjs.org/mapnik/0.3.0", + "0.3.1": "http://registry.npmjs.org/mapnik/0.3.1", + "0.4.0": "http://registry.npmjs.org/mapnik/0.4.0", + "0.4.1": "http://registry.npmjs.org/mapnik/0.4.1", + "0.5.0": "http://registry.npmjs.org/mapnik/0.5.0", + "0.5.1": "http://registry.npmjs.org/mapnik/0.5.1", + "0.5.2": "http://registry.npmjs.org/mapnik/0.5.2", + "0.5.3": "http://registry.npmjs.org/mapnik/0.5.3", + "0.5.4": "http://registry.npmjs.org/mapnik/0.5.4", + "0.5.6": "http://registry.npmjs.org/mapnik/0.5.6", + "0.5.7": "http://registry.npmjs.org/mapnik/0.5.7", + "0.5.8": "http://registry.npmjs.org/mapnik/0.5.8", + "0.5.9": "http://registry.npmjs.org/mapnik/0.5.9", + "0.6.0": "http://registry.npmjs.org/mapnik/0.6.0", + "0.5.10": "http://registry.npmjs.org/mapnik/0.5.10", + "0.5.5": "http://registry.npmjs.org/mapnik/0.5.5", + "0.6.1": "http://registry.npmjs.org/mapnik/0.6.1", + "0.6.2": "http://registry.npmjs.org/mapnik/0.6.2", + "0.5.11": "http://registry.npmjs.org/mapnik/0.5.11", + "0.5.12": "http://registry.npmjs.org/mapnik/0.5.12" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/mapnik/-/mapnik-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://registry.npmjs.org/mapnik/-/mapnik-0.1.1.tgz" + }, + "0.1.2": { + "tarball": "http://registry.npmjs.org/mapnik/-/mapnik-0.1.2.tgz" + }, + "0.2.3": { + "shasum": "d0c9cd9f824ec5c9f1843671079e0769f20b877c", + "tarball": "http://registry.npmjs.org/mapnik/-/mapnik-0.2.3.tgz" + }, + "0.2.5": { + "shasum": "57070ee5711d5877856a0a74d1e764dfdf189335", + "tarball": "http://registry.npmjs.org/mapnik/-/mapnik-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "4423232aa748a7cccf50e93bc393aa960533ac72", + "tarball": "http://registry.npmjs.org/mapnik/-/mapnik-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "a764ab234dfb94d40a7a3069c9fc27a73882fa11", + "tarball": "http://registry.npmjs.org/mapnik/-/mapnik-0.2.7.tgz" + }, + "0.2.8": { + "shasum": "b364476b3ee458d53f880f9469179c2542971236", + "tarball": "http://registry.npmjs.org/mapnik/-/mapnik-0.2.8.tgz" + }, + "0.2.9": { + "shasum": "d9fd356bf91290f26ace8375289d25958d3146bd", + "tarball": "http://registry.npmjs.org/mapnik/-/mapnik-0.2.9.tgz" + }, + "0.2.10": { + "shasum": "0f9fbbaf8e01b73ca5373925f4a5dcd361f8180d", + "tarball": "http://registry.npmjs.org/mapnik/-/mapnik-0.2.10.tgz" + }, + "0.2.11": { + "shasum": "1c957301aa8c7477bfb5d7300b8ce307ee684ed8", + "tarball": "http://registry.npmjs.org/mapnik/-/mapnik-0.2.11.tgz" + }, + "0.2.12": { + "shasum": "20572d6ea4b6093217f3ae2602ab429ca7e3a6f6", + "tarball": "http://registry.npmjs.org/mapnik/-/mapnik-0.2.12.tgz" + }, + "0.2.13": { + "shasum": "2031505a49570d94d0f3a54e0b3ac891acb4659d", + "tarball": "http://registry.npmjs.org/mapnik/-/mapnik-0.2.13.tgz" + }, + "0.3.0": { + "shasum": "9b186b89da54b48985e0f40350578a4617ff08c8", + "bin": { + "0.4-darwin-10.7.0": { + "shasum": "167d667fbb4ef1f2d29e081dbfeca0ea9443641b", + "tarball": "http://registry.npmjs.org/mapnik/-/mapnik-0.3.0-0.4-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/mapnik/-/mapnik-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "e7f3e201871968791f3226b14cbd04637bb04a7c", + "tarball": "http://registry.npmjs.org/mapnik/-/mapnik-0.3.1.tgz" + }, + "0.4.0": { + "shasum": "ab506a1b28af0dde410f0463b3ac7a4d63c67226", + "tarball": "http://registry.npmjs.org/mapnik/-/mapnik-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "4a3c88e496b4d6dbc7ca5c7e8fd52787186b0544", + "tarball": "http://registry.npmjs.org/mapnik/-/mapnik-0.4.1.tgz" + }, + "0.5.0": { + "shasum": "7e50b4ce4aee49972c5379afcd3f33646b6f52bc", + "tarball": "http://registry.npmjs.org/mapnik/-/mapnik-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "db33e7198fbdd636360ec82db79e2c342029b7ce", + "tarball": "http://registry.npmjs.org/mapnik/-/mapnik-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "c9487cd5853817cbf5fd9f87ae419d1cdb7aa292", + "tarball": "http://registry.npmjs.org/mapnik/-/mapnik-0.5.2.tgz" + }, + "0.5.3": { + "shasum": "20b1c9a474752b05efe48646ac1798ae94ce24d3", + "tarball": "http://registry.npmjs.org/mapnik/-/mapnik-0.5.3.tgz" + }, + "0.5.4": { + "shasum": "01342f47239406385b9d61c252b196cdeb6e3772", + "tarball": "http://registry.npmjs.org/mapnik/-/mapnik-0.5.4.tgz" + }, + "0.5.6": { + "shasum": "4b6e1820b5b06b21a34d1bc3770f345dff7c149f", + "tarball": "http://registry.npmjs.org/mapnik/-/mapnik-0.5.6.tgz" + }, + "0.5.7": { + "shasum": "483d897e3eb9da376338294eee16c8810c44201e", + "tarball": "http://registry.npmjs.org/mapnik/-/mapnik-0.5.7.tgz" + }, + "0.5.8": { + "shasum": "6c8cffa5789a80103781482cdcae693ab3552393", + "tarball": "http://registry.npmjs.org/mapnik/-/mapnik-0.5.8.tgz" + }, + "0.5.9": { + "shasum": "944e30db2ddeb638ba0f3bd6de925703cf7611ec", + "tarball": "http://registry.npmjs.org/mapnik/-/mapnik-0.5.9.tgz" + }, + "0.6.0": { + "shasum": "669eab8a9e977b8242c42ccab959e9140cd6bc51", + "tarball": "http://registry.npmjs.org/mapnik/-/mapnik-0.6.0.tgz" + }, + "0.5.10": { + "shasum": "9a3ffeda530546188a04ddb7883d8f74a2128ad1", + "tarball": "http://registry.npmjs.org/mapnik/-/mapnik-0.5.10.tgz" + }, + "0.5.5": { + "shasum": "c0ad5a012e1c32343c7a86e98b71712ff6302105", + "tarball": "http://registry.npmjs.org/mapnik/-/mapnik-0.5.5.tgz" + }, + "0.6.1": { + "shasum": "cf3ba9c629608a5371a7f8a1ac5df97510e32f01", + "tarball": "http://registry.npmjs.org/mapnik/-/mapnik-0.6.1.tgz" + }, + "0.6.2": { + "shasum": "37aa103a797552bcf8eeb0a83b7a6b1967a5b0fb", + "tarball": "http://registry.npmjs.org/mapnik/-/mapnik-0.6.2.tgz" + }, + "0.5.11": { + "shasum": "e883aeb39d23965cdbfe213735f69d6f0d2c5eac", + "tarball": "http://registry.npmjs.org/mapnik/-/mapnik-0.5.11.tgz" + }, + "0.5.12": { + "shasum": "4379ddbd8ee4909a931e05c4aee7eec0a2f03d46", + "tarball": "http://registry.npmjs.org/mapnik/-/mapnik-0.5.12.tgz" + } + }, + "keywords": [ + "map", + "graphics", + "canvas", + "tile", + "mapnik", + "carto" + ], + "url": "http://registry.npmjs.org/mapnik/" + }, + "maptail": { + "name": "maptail", + "description": "maptail geoips your tail -f to a map", + "dist-tags": { + "latest": "0.0.7" + }, + "maintainers": [ + { + "name": "stagas", + "email": "gstagas@gmail.com" + } + ], + "time": { + "modified": "2011-07-15T07:56:36.857Z", + "created": "2011-04-08T18:14:28.767Z", + "0.0.3": "2011-04-08T18:14:29.421Z", + "0.0.4": "2011-04-14T08:10:20.849Z", + "0.0.5": "2011-04-29T06:44:33.268Z", + "0.0.6": "2011-07-05T09:56:43.287Z", + "0.0.7": "2011-07-15T07:56:36.857Z" + }, + "author": { + "name": "George Stagas", + "email": "gstagas@gmail.com", + "url": "http://stagas.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/stagas/maptail.git" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/maptail/0.0.3", + "0.0.4": "http://registry.npmjs.org/maptail/0.0.4", + "0.0.5": "http://registry.npmjs.org/maptail/0.0.5", + "0.0.6": "http://registry.npmjs.org/maptail/0.0.6", + "0.0.7": "http://registry.npmjs.org/maptail/0.0.7" + }, + "dist": { + "0.0.3": { + "shasum": "60aa6902813af7065a82c67c73f6a91aae4bc28b", + "tarball": "http://registry.npmjs.org/maptail/-/maptail-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "4177108b9acb1707c310821f9f807ec1dc0845e3", + "tarball": "http://registry.npmjs.org/maptail/-/maptail-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "52400a46160cb8bf269008a8f2d764a458980303", + "tarball": "http://registry.npmjs.org/maptail/-/maptail-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "2f953008743ec4e6fcbe176e7385fe26ca746f03", + "tarball": "http://registry.npmjs.org/maptail/-/maptail-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "9b4c50f0856200ce1fa5e67cdd51c8386030a744", + "tarball": "http://registry.npmjs.org/maptail/-/maptail-0.0.7.tgz" + } + }, + "url": "http://registry.npmjs.org/maptail/" + }, + "marak": { + "name": "marak", + "description": "Your very own marak.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-08-02T23:14:50.623Z", + "created": "2011-08-02T23:14:49.007Z", + "0.0.1": "2011-08-02T23:14:50.623Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-marak.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/marak/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "a594af4555baf9151d884ddd0e4598d4e27a8565", + "tarball": "http://registry.npmjs.org/marak/-/marak-0.0.1.tgz" + } + }, + "keywords": [ + "marak", + "squires", + "markov", + "impersonation", + "crude", + "digital", + "clone", + "brain upload", + "a sign of things to come" + ], + "url": "http://registry.npmjs.org/marak/" + }, + "markdoc": { + "name": "markdoc", + "description": "Render documentation written in markdown into a single pretty html file", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "mafintosh", + "email": "m@ge.tt" + } + ], + "time": { + "modified": "2011-06-13T14:18:05.215Z", + "created": "2011-06-08T16:34:57.958Z", + "0.0.1": "2011-06-08T16:34:58.348Z", + "0.0.2": "2011-06-08T16:37:27.709Z", + "0.1.0": "2011-06-08T22:45:52.744Z", + "0.1.1": "2011-06-08T23:16:58.673Z", + "0.1.2": "2011-06-09T00:14:34.315Z", + "0.1.3": "2011-06-13T14:18:05.215Z" + }, + "author": { + "name": "Mathias Buus Madsen", + "email": "mathiasbuus@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/markdoc/0.0.1", + "0.0.2": "http://registry.npmjs.org/markdoc/0.0.2", + "0.1.0": "http://registry.npmjs.org/markdoc/0.1.0", + "0.1.1": "http://registry.npmjs.org/markdoc/0.1.1", + "0.1.2": "http://registry.npmjs.org/markdoc/0.1.2", + "0.1.3": "http://registry.npmjs.org/markdoc/0.1.3" + }, + "dist": { + "0.0.1": { + "shasum": "c22aa4dcee18cdff79d08f251e32192e995b017c", + "tarball": "http://registry.npmjs.org/markdoc/-/markdoc-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "dba8d529f41b555e5204a70c4ea7a83539116e36", + "tarball": "http://registry.npmjs.org/markdoc/-/markdoc-0.0.2.tgz" + }, + "0.1.0": { + "shasum": "34ef2be6df55b8ce452b534a6f1acc657f30d062", + "tarball": "http://registry.npmjs.org/markdoc/-/markdoc-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "b4f620d17fcec504debca70777c38a7ba5ad18c3", + "tarball": "http://registry.npmjs.org/markdoc/-/markdoc-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "df078091195b5cbd1bb456d43241647420e2ef0a", + "tarball": "http://registry.npmjs.org/markdoc/-/markdoc-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "9f3f01fb61a4926d8b5f77ebef133a78ccb303d4", + "tarball": "http://registry.npmjs.org/markdoc/-/markdoc-0.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/markdoc/" + }, + "markdom": { + "name": "markdom", + "description": "Markdown parser based on upskirt", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "joehewitt", + "email": "joe@joehewitt.com" + } + ], + "time": { + "modified": "2011-11-29T09:27:59.050Z", + "created": "2011-08-01T17:33:49.745Z", + "0.0.1": "2011-08-01T17:33:51.767Z", + "0.0.2": "2011-08-13T21:52:03.012Z", + "0.0.3": "2011-09-20T06:53:28.612Z", + "0.0.4": "2011-10-03T04:29:50.762Z", + "0.0.5": "2011-10-23T04:02:21.090Z", + "0.0.6": "2011-11-29T09:27:59.050Z" + }, + "author": { + "name": "Joe Hewitt", + "email": "joe@joehewitt.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/joehewitt/markdom.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/markdom/0.0.1", + "0.0.2": "http://registry.npmjs.org/markdom/0.0.2", + "0.0.3": "http://registry.npmjs.org/markdom/0.0.3", + "0.0.4": "http://registry.npmjs.org/markdom/0.0.4", + "0.0.5": "http://registry.npmjs.org/markdom/0.0.5", + "0.0.6": "http://registry.npmjs.org/markdom/0.0.6" + }, + "dist": { + "0.0.1": { + "shasum": "8bd11a1471629deb92c3a089ddf064de70be4845", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-darwin-10.7.0": { + "shasum": "fec51c9f2d4df040a98bc9d4b6b977f0799d59b5", + "tarball": "http://registry.npmjs.org/markdom/-/markdom-0.0.1-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/markdom/-/markdom-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c00767ae0350f8402dc2882ad612f7c37bd94eab", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-darwin-10.7.0": { + "shasum": "1c2af39af260cd4a81d81f441051932dc54de857", + "tarball": "http://registry.npmjs.org/markdom/-/markdom-0.0.2-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/markdom/-/markdom-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "df6aa2f27476471a36c659a49ae6cb9cf3e74b45", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.26-darwin-11.1.0": { + "shasum": "6d508b6eba324a1fa1ccd59f0b2472f509676ea1", + "tarball": "http://registry.npmjs.org/markdom/-/markdom-0.0.3-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.26-darwin-11.1.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/markdom/-/markdom-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "1253daad685903e2379f1211507de5ff70ee107c", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.26-darwin-11.1.0": { + "shasum": "20787279f445434f3e28a7ef9157f3ee62792ace", + "tarball": "http://registry.npmjs.org/markdom/-/markdom-0.0.4-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.26-darwin-11.1.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/markdom/-/markdom-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "a76694eb684b4387a21efbbd6b968a34faebc59d", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.26-darwin-11.2.0": { + "shasum": "8ceb45fa926e819b764e464b5ca02050a6da478c", + "tarball": "http://registry.npmjs.org/markdom/-/markdom-0.0.5-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.26-darwin-11.2.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/markdom/-/markdom-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "48c825d7d77fc4379a1b78b5da019d30b7de5941", + "tarball": "http://registry.npmjs.org/markdom/-/markdom-0.0.6.tgz" + } + }, + "keywords": [ + "markdown", + "upskirt" + ], + "url": "http://registry.npmjs.org/markdom/" + }, + "markdown": { + "name": "markdown", + "description": "A sensible Markdown parser for javascript", + "dist-tags": { + "latest": "0.3.1" + }, + "maintainers": [ + { + "name": "ashb", + "email": "ash.berlin@gmail.com" + }, + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "repository": { + "type": "git", + "url": "git://github.com/evilstreak/markdown-js.git" + }, + "time": { + "modified": "2011-10-26T23:04:07.100Z", + "created": "2010-12-28T19:53:47.824Z", + "0.1.0": "2010-12-28T19:53:47.824Z", + "0.1.1": "2010-12-28T19:53:47.824Z", + "0.1.2": "2010-12-28T19:53:47.824Z", + "0.2.0": "2010-12-28T21:01:55.159Z", + "0.2.1": "2011-03-07T00:57:21.982Z", + "0.3.0": "2011-10-20T21:11:08.179Z", + "0.3.1": "2011-10-26T23:04:07.100Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/markdown/0.1.0", + "0.1.1": "http://registry.npmjs.org/markdown/0.1.1", + "0.1.2": "http://registry.npmjs.org/markdown/0.1.2", + "0.2.1": "http://registry.npmjs.org/markdown/0.2.1", + "0.3.0": "http://registry.npmjs.org/markdown/0.3.0", + "0.3.1": "http://registry.npmjs.org/markdown/0.3.1" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/markdown/-/markdown-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://registry.npmjs.org/markdown/-/markdown-0.1.1.tgz" + }, + "0.1.2": { + "tarball": "http://registry.npmjs.org/markdown/-/markdown-0.1.2.tgz" + }, + "0.2.1": { + "shasum": "3dbec47638e06661ccdd9df1954b9bd90345cf61", + "tarball": "http://registry.npmjs.org/markdown/-/markdown-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "1201634b0c4f95d0102d5124eddebe1a8c8dd667", + "tarball": "http://registry.npmjs.org/markdown/-/markdown-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "5d95c1a860d148535297832a157e4be59e9880d4", + "tarball": "http://registry.npmjs.org/markdown/-/markdown-0.3.1.tgz" + } + }, + "keywords": [ + "markdown", + "text processing", + "ast" + ], + "url": "http://registry.npmjs.org/markdown/" + }, + "markdown-js": { + "name": "markdown-js", + "description": "A port of markdown to JavaScript.", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "gozala", + "email": "rfobic@gmail.com" + } + ], + "author": { + "name": "John Fraser" + }, + "repository": { + "type": "git", + "url": "git://github.com/Gozala/markdown-js.git" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/markdown-js/0.0.3" + }, + "dist": { + "0.0.3": { + "tarball": "http://packages:5984/markdown-js/-/markdown-js-0.0.3.tgz" + } + }, + "keywords": [ + "markdown", + "md", + "markup", + "parser" + ], + "url": "http://registry.npmjs.org/markdown-js/" + }, + "markdown-wiki": { + "name": "markdown-wiki", + "description": "A Bidirectional WikiText to Markdown converter.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "gozala", + "email": "rfobic@gmail.com" + } + ], + "author": { + "name": "Irakli Gozalishvili", + "email": "rfobic@gmail.com", + "url": "http://jeditoolkit.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Gozala/markdown-wiki.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/markdown-wiki/0.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/markdown-wiki/-/markdown-wiki-0.0.1.tgz" + } + }, + "keywords": [ + "wiki", + "wikitext", + "html", + "markdown", + "converter" + ], + "url": "http://registry.npmjs.org/markdown-wiki/" + }, + "markdown2html": { + "name": "markdown2html", + "description": "A utility to convert markdown to html.", + "dist-tags": { + "latest": "0.3.1" + }, + "maintainers": [ + { + "name": "drtom", + "email": "DrTom@schank.ch" + } + ], + "time": { + "modified": "2011-05-20T20:27:59.439Z", + "created": "2011-05-20T20:27:57.596Z", + "0.3.1": "2011-05-20T20:27:59.439Z" + }, + "author": { + "name": "Thomas Schank", + "email": "DrTom@schank.ch", + "url": "http://Dr.Th.Schank.ch/" + }, + "versions": { + "0.3.1": "http://registry.npmjs.org/markdown2html/0.3.1" + }, + "dist": { + "0.3.1": { + "shasum": "9e57c1e12903187b266c39e7102f2fa2d78e87be", + "tarball": "http://registry.npmjs.org/markdown2html/-/markdown2html-0.3.1.tgz" + } + }, + "url": "http://registry.npmjs.org/markdown2html/" + }, + "markdowner": { + "name": "markdowner", + "description": "A markdown to HTML viewer", + "dist-tags": { + "latest": "1.0.1" + }, + "readme": null, + "maintainers": [ + { + "name": "russp", + "email": "russp@aweber.com" + } + ], + "time": { + "modified": "2011-12-02T02:58:01.321Z", + "created": "2011-12-01T16:17:14.695Z", + "0.0.1": "2011-12-01T16:17:14.962Z", + "1.0.0": "2011-12-01T18:58:42.434Z", + "1.0.1": "2011-12-02T02:58:01.321Z" + }, + "author": { + "name": "Russ Posluszny", + "email": "russjp1985@gmail.com" + }, + "repository": { + "url": "https://github.com/russjp1985/markdowner" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/markdowner/0.0.1", + "1.0.0": "http://registry.npmjs.org/markdowner/1.0.0", + "1.0.1": "http://registry.npmjs.org/markdowner/1.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "74f1a61d3279c95e36da71e7ba11be9f6ab3bc85", + "tarball": "http://registry.npmjs.org/markdowner/-/markdowner-0.0.1.tgz" + }, + "1.0.0": { + "shasum": "afd5158683a1978d4decae5e5cff613d148da5ad", + "tarball": "http://registry.npmjs.org/markdowner/-/markdowner-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "af94592bfb75914ba29e6f9d668b9c8c0427b87c", + "tarball": "http://registry.npmjs.org/markdowner/-/markdowner-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/markdowner/" + }, + "marked": { + "name": "marked", + "description": "A markdown parser built for speed", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "chjj", + "email": "chjjeffrey@gmail.com" + } + ], + "time": { + "modified": "2011-12-07T16:01:16.273Z", + "created": "2011-07-24T13:15:09.719Z", + "0.0.1": "2011-07-24T13:15:10.144Z", + "0.0.2": "2011-08-14T05:05:12.712Z", + "0.0.3": "2011-08-14T05:09:14.260Z", + "0.0.4": "2011-08-18T22:27:58.146Z", + "0.0.5": "2011-08-19T00:54:05.480Z", + "0.0.6": "2011-08-23T16:59:28.551Z", + "0.0.7": "2011-08-25T16:48:05.381Z", + "0.0.8": "2011-08-26T10:30:56.108Z", + "0.0.9": "2011-08-27T23:49:35.878Z", + "0.1.0": "2011-09-15T22:03:28.180Z", + "0.1.1": "2011-10-14T23:34:06.382Z", + "0.1.2": "2011-10-23T05:12:20.352Z", + "0.1.3": "2011-11-27T04:16:56.402Z", + "0.1.4": "2011-12-05T04:08:23.981Z" + }, + "author": { + "name": "Christopher Jeffrey" + }, + "repository": { + "type": "git", + "url": "git://github.com/chjj/marked.git" + }, + "users": { + "pvorb": true + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/marked/0.0.1", + "0.0.2": "http://registry.npmjs.org/marked/0.0.2", + "0.0.3": "http://registry.npmjs.org/marked/0.0.3", + "0.0.4": "http://registry.npmjs.org/marked/0.0.4", + "0.0.5": "http://registry.npmjs.org/marked/0.0.5", + "0.0.6": "http://registry.npmjs.org/marked/0.0.6", + "0.0.7": "http://registry.npmjs.org/marked/0.0.7", + "0.0.8": "http://registry.npmjs.org/marked/0.0.8", + "0.0.9": "http://registry.npmjs.org/marked/0.0.9", + "0.1.0": "http://registry.npmjs.org/marked/0.1.0", + "0.1.1": "http://registry.npmjs.org/marked/0.1.1", + "0.1.2": "http://registry.npmjs.org/marked/0.1.2", + "0.1.3": "http://registry.npmjs.org/marked/0.1.3", + "0.1.4": "http://registry.npmjs.org/marked/0.1.4" + }, + "dist": { + "0.0.1": { + "shasum": "3c4a985ac69917db567d792c90f89eeda2109016", + "tarball": "http://registry.npmjs.org/marked/-/marked-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "40b9216d532b5ed5835bcfea962b732fbd1ed530", + "tarball": "http://registry.npmjs.org/marked/-/marked-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "03ce1ffe876edd1803dfe782433f8e5c3a0c4629", + "tarball": "http://registry.npmjs.org/marked/-/marked-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "5bd4c4bbdce22d9b3270262ce8ad1d2f91f22590", + "tarball": "http://registry.npmjs.org/marked/-/marked-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "740eb9c0636e34532b7a83f133ad7c0aa96720ce", + "tarball": "http://registry.npmjs.org/marked/-/marked-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "f270bac4112c92b916ef28b65407278a87b560e6", + "tarball": "http://registry.npmjs.org/marked/-/marked-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "b0eb28b6e6ab68dfbb07f7fe6d03ed98599d927a", + "tarball": "http://registry.npmjs.org/marked/-/marked-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "5dbae0ece62ba34fc1eaac3c0db776f48a96b294", + "tarball": "http://registry.npmjs.org/marked/-/marked-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "0f19f82aa913cf5d86b4cb426fd7a5932b570af4", + "tarball": "http://registry.npmjs.org/marked/-/marked-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "c3c8247362e2c48a073e6dbc68e3ada30a23191e", + "tarball": "http://registry.npmjs.org/marked/-/marked-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "c2720d7fbcc3c6eb3a87e403328f41cf95f8a613", + "tarball": "http://registry.npmjs.org/marked/-/marked-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "dd7c7cf6428fdeae9c4ac05a926b5bd82e24a45e", + "tarball": "http://registry.npmjs.org/marked/-/marked-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "78eefb395cb1ed2736f26ef80d0b51c653af4e2d", + "tarball": "http://registry.npmjs.org/marked/-/marked-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "2f6045878c692ff5fd8378ca40a13a6d8d9778e4", + "tarball": "http://registry.npmjs.org/marked/-/marked-0.1.4.tgz" + } + }, + "keywords": [ + "markdown", + "markup" + ], + "url": "http://registry.npmjs.org/marked/" + }, + "market-req": { + "name": "market-req", + "description": "Market for oauth tokens for crowd calling, based on redis", + "dist-tags": { + "latest": "0.1.5" + }, + "maintainers": [ + { + "name": "selead", + "email": "allselead@gmail.com" + } + ], + "time": { + "modified": "2011-10-29T14:27:38.531Z", + "created": "2011-10-20T05:06:13.912Z", + "0.1.0": "2011-10-20T05:06:14.383Z", + "0.1.3": "2011-10-21T15:43:29.169Z", + "0.1.4": "2011-10-28T14:11:27.507Z", + "0.1.5": "2011-10-29T14:27:38.531Z" + }, + "author": { + "name": "Temnov Kirill", + "email": "allselead@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/selead/market-req.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/market-req/0.1.0", + "0.1.3": "http://registry.npmjs.org/market-req/0.1.3", + "0.1.4": "http://registry.npmjs.org/market-req/0.1.4", + "0.1.5": "http://registry.npmjs.org/market-req/0.1.5" + }, + "dist": { + "0.1.0": { + "shasum": "a5d05c7e006b3db9c090a75b0cc9d07fb922a231", + "tarball": "http://registry.npmjs.org/market-req/-/market-req-0.1.0.tgz" + }, + "0.1.3": { + "shasum": "a90ba9c6b17f3f56f7be0a271c4709b1e405c05d", + "tarball": "http://registry.npmjs.org/market-req/-/market-req-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "4ca552492265c3778c90155e9906fed890288cdc", + "tarball": "http://registry.npmjs.org/market-req/-/market-req-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "ccf07b9ec5279d9a280d89b0889521497bec9ea5", + "tarball": "http://registry.npmjs.org/market-req/-/market-req-0.1.5.tgz" + } + }, + "keywords": [ + "redis", + "oauth" + ], + "url": "http://registry.npmjs.org/market-req/" + }, + "markov": { + "name": "markov", + "description": "Silly markov chatbot module", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-05-04T23:27:00.412Z", + "created": "2011-05-01T22:07:18.165Z", + "0.0.1": "2011-05-01T22:07:18.990Z", + "0.0.2": "2011-05-02T01:39:03.684Z", + "0.0.3": "2011-05-02T01:41:47.594Z", + "0.0.4": "2011-05-02T02:04:08.741Z", + "0.0.5": "2011-05-04T21:22:52.770Z", + "0.0.6": "2011-05-04T23:27:00.412Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-markov.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/markov/0.0.1", + "0.0.2": "http://registry.npmjs.org/markov/0.0.2", + "0.0.3": "http://registry.npmjs.org/markov/0.0.3", + "0.0.4": "http://registry.npmjs.org/markov/0.0.4", + "0.0.5": "http://registry.npmjs.org/markov/0.0.5", + "0.0.6": "http://registry.npmjs.org/markov/0.0.6" + }, + "dist": { + "0.0.1": { + "shasum": "dac20e8499ad75800bb1733f61a5b46bb26194b7", + "tarball": "http://registry.npmjs.org/markov/-/markov-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "12969350efffd51a247321320d6e5b2a79e45483", + "tarball": "http://registry.npmjs.org/markov/-/markov-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "fe375c83ccc40ace9219e6dbe5054a64a2664ab8", + "tarball": "http://registry.npmjs.org/markov/-/markov-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "f3235b39e7b4742dd5a5274d699af1f3279a168e", + "tarball": "http://registry.npmjs.org/markov/-/markov-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "853490c05453fcf3ed05cbeecbe4ad430434c28d", + "tarball": "http://registry.npmjs.org/markov/-/markov-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "9f4c2118c8037fb5c474b8a08841e6afa964a055", + "tarball": "http://registry.npmjs.org/markov/-/markov-0.0.6.tgz" + } + }, + "url": "http://registry.npmjs.org/markov/" + }, + "maryjane": { + "name": "maryjane", + "description": "Mock objects with AAA styling, inspired by Mockito", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "dhasenan", + "email": "dhasenan@gmail.com" + } + ], + "time": { + "modified": "2011-05-21T16:11:35.919Z", + "created": "2011-05-21T16:11:35.584Z", + "0.1.0": "2011-05-21T16:11:35.919Z" + }, + "author": { + "name": "Christopher Wright", + "email": "dhasenan@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dhasenan/maryjane.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/maryjane/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "f9702c31c188429f998f6efd866a2c136e6e3da4", + "tarball": "http://registry.npmjs.org/maryjane/-/maryjane-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/maryjane/" + }, + "masher": { + "name": "masher", + "description": "asset util", + "dist-tags": { + "latest": "0.0.7" + }, + "maintainers": [ + { + "name": "jga", + "email": "me@jga.me" + } + ], + "time": { + "modified": "2011-12-12T03:42:47.625Z", + "created": "2011-10-26T05:02:09.261Z", + "0.0.1": "2011-10-26T05:02:10.517Z", + "0.0.2": "2011-10-29T01:15:40.923Z", + "0.0.3": "2011-11-02T21:49:33.500Z", + "0.0.4": "2011-12-09T18:04:45.379Z", + "0.0.5": "2011-12-09T21:28:35.625Z", + "0.0.6": "2011-12-10T00:54:21.928Z", + "0.0.7": "2011-12-12T03:42:47.625Z" + }, + "author": { + "name": "Greg Allen", + "email": "@jgaui", + "url": "http://jga.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/jgallen23/node-masher.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/masher/0.0.1", + "0.0.2": "http://registry.npmjs.org/masher/0.0.2", + "0.0.3": "http://registry.npmjs.org/masher/0.0.3", + "0.0.4": "http://registry.npmjs.org/masher/0.0.4", + "0.0.5": "http://registry.npmjs.org/masher/0.0.5", + "0.0.6": "http://registry.npmjs.org/masher/0.0.6", + "0.0.7": "http://registry.npmjs.org/masher/0.0.7" + }, + "dist": { + "0.0.1": { + "shasum": "67402f672821498434fa4c036820a3319ba08561", + "tarball": "http://registry.npmjs.org/masher/-/masher-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "bb0e0da08b6b6f35796cbdd2a0219a75ec8f61d2", + "tarball": "http://registry.npmjs.org/masher/-/masher-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "65580871941bcfe101d57f2818fc0579832d13eb", + "tarball": "http://registry.npmjs.org/masher/-/masher-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "f644d5eaa923c1ea53446437ec139c642852881b", + "tarball": "http://registry.npmjs.org/masher/-/masher-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "259aba957a3907117b3404f75d9170e625960e7b", + "tarball": "http://registry.npmjs.org/masher/-/masher-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "e59d749f9e66e34818d1ab3ac88449b6e081c620", + "tarball": "http://registry.npmjs.org/masher/-/masher-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "460b0030b451ceb138e638333c617746ca878e42", + "tarball": "http://registry.npmjs.org/masher/-/masher-0.0.7.tgz" + } + }, + "keywords": [ + "asset", + "js", + "css" + ], + "url": "http://registry.npmjs.org/masher/" + }, + "masm-cdb": { + "name": "masm-cdb", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "masm", + "email": "marco@textovirtual.com" + } + ], + "time": { + "modified": "2011-11-04T17:45:41.247Z", + "created": "2011-11-04T17:24:57.341Z", + "0.0.1": "2011-11-04T17:24:59.051Z", + "0.0.2": "2011-11-04T17:30:37.823Z", + "0.0.3": "2011-11-04T17:31:47.760Z", + "0.0.4": "2011-11-04T17:45:41.247Z" + }, + "author": { + "name": "Marco Monteiro", + "email": "marco@textovirtual.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/masm-cdb/0.0.1", + "0.0.2": "http://registry.npmjs.org/masm-cdb/0.0.2", + "0.0.3": "http://registry.npmjs.org/masm-cdb/0.0.3", + "0.0.4": "http://registry.npmjs.org/masm-cdb/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "545764787302f66b3690d0d442016a945cdc654d", + "tarball": "http://registry.npmjs.org/masm-cdb/-/masm-cdb-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "9c4cf448fd42d5bacceab0927317d937386c7cbf", + "tarball": "http://registry.npmjs.org/masm-cdb/-/masm-cdb-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "a4cbb985fe030880136c7dcc4c439bf292c106bd", + "tarball": "http://registry.npmjs.org/masm-cdb/-/masm-cdb-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "0a65e74c737db1439c1c9ea54ae3d4f6537edf91", + "tarball": "http://registry.npmjs.org/masm-cdb/-/masm-cdb-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/masm-cdb/" + }, + "masm-express-util": { + "name": "masm-express-util", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "masm", + "email": "marco@textovirtual.com" + } + ], + "time": { + "modified": "2011-11-04T17:22:07.023Z", + "created": "2011-11-04T17:22:05.248Z", + "0.0.1": "2011-11-04T17:22:07.023Z" + }, + "author": { + "name": "Marco Monteiro", + "email": "marco@textovirtual.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/masm-express-util/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "5002f5571f020e1cf5a9fca5ed307b8219d1f3e6", + "tarball": "http://registry.npmjs.org/masm-express-util/-/masm-express-util-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/masm-express-util/" + }, + "masm-ses": { + "name": "masm-ses", + "dist-tags": { + "latest": "0.0.3" + }, + "readme": null, + "maintainers": [ + { + "name": "masm", + "email": "marco@textovirtual.com" + } + ], + "time": { + "modified": "2011-11-19T13:54:44.060Z", + "created": "2011-11-12T15:01:44.943Z", + "0.0.1": "2011-11-12T15:01:46.665Z", + "0.0.2": "2011-11-12T16:04:19.222Z", + "0.0.3": "2011-11-19T13:54:44.060Z" + }, + "author": { + "name": "Marco Monteiro", + "email": "marco@textovirtual.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/masm-ses/0.0.1", + "0.0.2": "http://registry.npmjs.org/masm-ses/0.0.2", + "0.0.3": "http://registry.npmjs.org/masm-ses/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "67542dd807ad1f52a9647243e7fbaa0f1cfde340", + "tarball": "http://registry.npmjs.org/masm-ses/-/masm-ses-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "7fadabffc2b6f8f9e5974d787aca46821216a7f0", + "tarball": "http://registry.npmjs.org/masm-ses/-/masm-ses-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "7d2c672f60e980d5518b79fc470dcf54e01c3e8b", + "tarball": "http://registry.npmjs.org/masm-ses/-/masm-ses-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/masm-ses/" + }, + "masm-template": { + "name": "masm-template", + "dist-tags": { + "latest": "0.0.3" + }, + "readme": null, + "maintainers": [ + { + "name": "masm", + "email": "marco@textovirtual.com" + } + ], + "time": { + "modified": "2011-11-19T13:54:24.597Z", + "created": "2011-11-12T15:01:17.260Z", + "0.0.1": "2011-11-12T15:01:19.023Z", + "0.0.2": "2011-11-12T15:03:44.513Z", + "0.0.3": "2011-11-19T13:54:24.597Z" + }, + "author": { + "name": "Marco Monteiro", + "email": "marco@textovirtual.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/masm-template/0.0.1", + "0.0.2": "http://registry.npmjs.org/masm-template/0.0.2", + "0.0.3": "http://registry.npmjs.org/masm-template/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "78f7300f446947cc697d7918ab46064256025783", + "tarball": "http://registry.npmjs.org/masm-template/-/masm-template-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "ac14c054cd550ccd8737e55a6cfcd683bbbd31a5", + "tarball": "http://registry.npmjs.org/masm-template/-/masm-template-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "e6812a6677a93f428066bb21209695f995d408c5", + "tarball": "http://registry.npmjs.org/masm-template/-/masm-template-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/masm-template/" + }, + "masm-util": { + "name": "masm-util", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "masm", + "email": "marco@textovirtual.com" + } + ], + "time": { + "modified": "2011-11-05T23:28:56.315Z", + "created": "2011-11-04T17:22:24.867Z", + "0.0.1": "2011-11-04T17:22:26.511Z", + "0.0.2": "2011-11-05T23:27:53.987Z", + "0.0.3": "2011-11-05T23:28:56.315Z" + }, + "author": { + "name": "Marco Monteiro", + "email": "marco@textovirtual.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/masm-util/0.0.1", + "0.0.2": "http://registry.npmjs.org/masm-util/0.0.2", + "0.0.3": "http://registry.npmjs.org/masm-util/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "5c8cca3d986bfbe6f96a89b9d4596fd971581ac6", + "tarball": "http://registry.npmjs.org/masm-util/-/masm-util-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "abcb96959524080cf1e77fff395aa1787520c4f9", + "tarball": "http://registry.npmjs.org/masm-util/-/masm-util-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "be4d040d676dc85d90242634418436753005fa69", + "tarball": "http://registry.npmjs.org/masm-util/-/masm-util-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/masm-util/" + }, + "massagist": { + "name": "massagist", + "description": "streaming data formats", + "dist-tags": { + "latest": "0.0.1-3" + }, + "maintainers": [ + { + "name": "orlin", + "email": "om@soundsapiens.com" + } + ], + "time": { + "modified": "2011-04-19T19:26:20.017Z", + "created": "2011-04-07T03:12:39.621Z", + "0.0.1-1": "2011-04-07T03:12:40.705Z", + "0.0.1-2": "2011-04-19T18:55:02.002Z", + "0.0.1-3": "2011-04-19T19:26:20.017Z" + }, + "author": { + "name": "Orlin M Bozhinov", + "email": "om@soundsapiens.com", + "url": "http://soundsapiens.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/orlin/massagist.git" + }, + "versions": { + "0.0.1-1": "http://registry.npmjs.org/massagist/0.0.1-1", + "0.0.1-2": "http://registry.npmjs.org/massagist/0.0.1-2", + "0.0.1-3": "http://registry.npmjs.org/massagist/0.0.1-3" + }, + "dist": { + "0.0.1-1": { + "shasum": "d6415813a31b2fd39bf35406f79c96531439fede", + "tarball": "http://registry.npmjs.org/massagist/-/massagist-0.0.1-1.tgz" + }, + "0.0.1-2": { + "shasum": "8d4d8d330affd5772af3f83cebe9fcb3c2cfcef8", + "tarball": "http://registry.npmjs.org/massagist/-/massagist-0.0.1-2.tgz" + }, + "0.0.1-3": { + "shasum": "c239c01fb9a260cf8252c1c5c17baa0f7b1b4763", + "tarball": "http://registry.npmjs.org/massagist/-/massagist-0.0.1-3.tgz" + } + }, + "keywords": [ + "node", + "data", + "buffers", + "streams", + "formats" + ], + "url": "http://registry.npmjs.org/massagist/" + }, + "massive-git": { + "name": "massive-git", + "description": "Revision database that implements Git Object Model", + "dist-tags": { + "latest": "0.5.1" + }, + "readme": "# MassiveGit\n\nMassiveGit - revision controlled database. \n\n## Implementation\n\nMassiveGit implements Git Object Model on top of Riak [http://basho.com/products/riak-overview/].\nIn future other backends may be implemented.\n\nCurrently MassiveGit depends on custom version of riak-js module [https://github.com/podviaznikov/riak-js].\nInstall it from this repository.\n\n## Use cases\n\nThere are variety of use cases where it can be used:\n\n1. GitHub\n2. CircuitHub\n3. WikiPedia\n4. shapesmith (MCAD)\n\nBasically any case where you need to store revisioned versions of your data. With MassiveGit you get nice abstraction layer which allows you to deal with data in terms of Git: Commit, Tree, Blob, Tag.\n\n## Additional materials\n\nWe have video and slide from London Node.js User Group: http://lanyrd.com/2011/lnug-october/skgpw/.\n\nCheck them for initial introduction.\n\n## Tips\n\nRemove riak data from this directory:\n\n`/var/lib/riak/leveldb`\n\n\n## Configurations\n\nPlease updated `js_max_vm_mem` and `js_thread_stack` to 512 MB on your app.config.\n\nSee [http://wiki.basho.com/MapReduce.html] for details how to do this and why.\n\nSince we are using secondary indexes please make following change in the riak app.config:\n`change the storage backend to riak_kv_eleveldb_backend`.\n\n## Contributions\n\nMassiveGit is currently is under development. If you need any feature tell us or fork project and implement it by yourself.\n\nWe appreciate feedback!\n\n\n## License\n\n(The MIT License)\n\nCopyright (c) 2011 CircuitHub., http://circuithub.com/\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n", + "maintainers": [ + { + "name": "circuithub", + "email": "developers@circuithub.com" + } + ], + "time": { + "modified": "2011-11-26T19:45:59.206Z", + "created": "2011-11-26T19:45:56.407Z", + "0.5.1": "2011-11-26T19:45:59.206Z" + }, + "author": { + "name": "CircuitHub", + "url": "circuithub.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/circuithub/massive-git.git" + }, + "versions": { + "0.5.1": "http://registry.npmjs.org/massive-git/0.5.1" + }, + "dist": { + "0.5.1": { + "shasum": "525e437e1f3b44ce48d5be46ee102052b1aec36f", + "tarball": "http://registry.npmjs.org/massive-git/-/massive-git-0.5.1.tgz" + } + }, + "url": "http://registry.npmjs.org/massive-git/" + }, + "masson": { + "name": "masson", + "description": "Build system and targeted workflow", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "david", + "email": "david@adaltas.com" + } + ], + "author": { + "name": "David Worms", + "email": "david@adaltas.com" + }, + "time": { + "modified": "2011-02-21T22:05:47.009Z", + "created": "2011-02-21T22:05:47.009Z", + "0.0.1": "2011-02-21T22:05:47.009Z", + "0.0.3": "2011-02-21T22:05:47.009Z", + "0.0.4": "2011-02-21T22:05:47.009Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/masson/0.0.1", + "0.0.3": "http://registry.npmjs.org/masson/0.0.3", + "0.0.4": "http://registry.npmjs.org/masson/0.0.4" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/masson/-/masson-0.0.1.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/masson/-/masson-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "bb036a7a746f549505c8d28360f069d659f76541", + "tarball": "http://registry.npmjs.org/masson/-/masson-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/masson/" + }, + "masstransit": { + "name": "masstransit", + "description": "node.js adapter for MassTransit Service Bus", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "bmavity", + "email": "brian@brianmavity.com" + } + ], + "time": { + "modified": "2011-05-03T16:46:37.850Z", + "created": "2011-01-17T02:18:59.011Z", + "0.0.1": "2011-01-17T02:18:59.375Z", + "0.0.2": "2011-01-29T20:26:02.660Z", + "0.0.3": "2011-04-17T19:55:16.751Z", + "0.1.1": "2011-05-03T16:39:29.619Z", + "0.1.2": "2011-05-03T16:46:37.850Z" + }, + "author": { + "name": "Brian Mavity", + "email": "brian@brianmavity.com", + "url": "http://www.brianmavity.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/drusellers/MassTransit.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/masstransit/0.0.1", + "0.0.2": "http://registry.npmjs.org/masstransit/0.0.2", + "0.0.3": "http://registry.npmjs.org/masstransit/0.0.3", + "0.1.1": "http://registry.npmjs.org/masstransit/0.1.1", + "0.1.2": "http://registry.npmjs.org/masstransit/0.1.2" + }, + "dist": { + "0.0.1": { + "shasum": "b6289dbbdbc116853a9e52bb9eaf2d976a6c3370", + "tarball": "http://registry.npmjs.org/masstransit/-/masstransit-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c12f7b8862acb10754910e400aa00509903ed262", + "tarball": "http://registry.npmjs.org/masstransit/-/masstransit-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "24cc2cf3c4f6ea7943cb9dfecc762efefebda150", + "tarball": "http://registry.npmjs.org/masstransit/-/masstransit-0.0.3.tgz" + }, + "0.1.1": { + "shasum": "127ebcae53dbe65222e1147c36571ecf82ba28f8", + "tarball": "http://registry.npmjs.org/masstransit/-/masstransit-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "711d2ad30e30ad047973f1130f9519c6b8d6c5bb", + "tarball": "http://registry.npmjs.org/masstransit/-/masstransit-0.1.2.tgz" + } + }, + "keywords": [ + "esb" + ], + "url": "http://registry.npmjs.org/masstransit/" + }, + "master-worker": { + "name": "master-worker", + "description": "multi process node execution with a single file", + "dist-tags": { + "latest": "0.0.9" + }, + "maintainers": [ + { + "name": "shinout", + "email": "shinout310@gmail.com" + } + ], + "time": { + "modified": "2011-11-18T03:32:28.006Z", + "created": "2011-11-05T09:12:10.636Z", + "0.0.1": "2011-11-05T09:12:12.166Z", + "0.0.2": "2011-11-10T05:06:27.780Z", + "0.0.3": "2011-11-10T05:52:54.735Z", + "0.0.4": "2011-11-10T08:30:57.587Z", + "0.0.5": "2011-11-11T01:17:15.385Z", + "0.0.6": "2011-11-11T01:28:29.705Z", + "0.0.7": "2011-11-11T03:36:25.594Z", + "0.0.8": "2011-11-18T02:35:58.589Z", + "0.0.9": "2011-11-18T03:32:28.006Z" + }, + "author": { + "name": "SHIN Suzuki", + "email": "shinout310@gmail.com" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/master-worker/0.0.1", + "0.0.2": "http://registry.npmjs.org/master-worker/0.0.2", + "0.0.3": "http://registry.npmjs.org/master-worker/0.0.3", + "0.0.4": "http://registry.npmjs.org/master-worker/0.0.4", + "0.0.5": "http://registry.npmjs.org/master-worker/0.0.5", + "0.0.6": "http://registry.npmjs.org/master-worker/0.0.6", + "0.0.7": "http://registry.npmjs.org/master-worker/0.0.7", + "0.0.8": "http://registry.npmjs.org/master-worker/0.0.8", + "0.0.9": "http://registry.npmjs.org/master-worker/0.0.9" + }, + "dist": { + "0.0.1": { + "shasum": "a65786c592e3abf425c2518b023412dd4662cba1", + "tarball": "http://registry.npmjs.org/master-worker/-/master-worker-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "b767fdb2f6366799699b653850f53686a48f42e2", + "tarball": "http://registry.npmjs.org/master-worker/-/master-worker-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "44304b3554cae2edce7d674c7d99c354c4c6d444", + "tarball": "http://registry.npmjs.org/master-worker/-/master-worker-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "3b524e1f4c5471e252e9cedb1b0e55f2d5ca283f", + "tarball": "http://registry.npmjs.org/master-worker/-/master-worker-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "47665c852691630186154c80218f56e557f8f87a", + "tarball": "http://registry.npmjs.org/master-worker/-/master-worker-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "130b3284311e644eab0cf169b72f5db925f9dbf8", + "tarball": "http://registry.npmjs.org/master-worker/-/master-worker-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "60b72b0c86a831e2236442d5469b18edc81ea9ef", + "tarball": "http://registry.npmjs.org/master-worker/-/master-worker-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "0b73cd82cb4a5fa012064061640d4bfdedc201e1", + "tarball": "http://registry.npmjs.org/master-worker/-/master-worker-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "0b300e9ff0d1cf3786b4f6e2ce7b962b743e12f2", + "tarball": "http://registry.npmjs.org/master-worker/-/master-worker-0.0.9.tgz" + } + }, + "url": "http://registry.npmjs.org/master-worker/" + }, + "matcha": { + "name": "matcha", + "description": "Tiny benchmarking.", + "dist-tags": { + "latest": "0.0.2" + }, + "readme": "# Aura\n\nTiny benchmarking library.", + "maintainers": [ + { + "name": "jakeluer", + "email": "jake.luer@incatern.com" + } + ], + "time": { + "modified": "2011-12-06T11:59:49.265Z", + "created": "2011-12-05T08:33:42.353Z", + "0.0.1": "2011-12-05T08:33:43.118Z", + "0.0.2": "2011-12-06T11:59:49.265Z" + }, + "author": { + "name": "Jake Luer", + "email": "jake@alogicalparadox.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/logicalparadox/matcha.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/matcha/0.0.1", + "0.0.2": "http://registry.npmjs.org/matcha/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "380514e5427110fa53e7d2901062209367fe2a77", + "tarball": "http://registry.npmjs.org/matcha/-/matcha-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "d6485e0214b4a2a95886ebc90fcc29e9ff762e1d", + "tarball": "http://registry.npmjs.org/matcha/-/matcha-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/matcha/" + }, + "matchmaker": { + "name": "matchmaker", + "description": "streaming, policy free matchmaking to pair objects using per-object preference functions", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "rook2pawn", + "email": "rook2pawn@gmail.com" + } + ], + "time": { + "modified": "2011-07-25T00:46:06.168Z", + "created": "2011-07-25T00:46:04.118Z", + "0.0.1": "2011-07-25T00:46:06.168Z" + }, + "author": { + "name": "David Wee", + "email": "rook2pawn@gmail.com", + "url": "http://rook2pawn.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/rook2pawn/node-matchmaker.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/matchmaker/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "0140b1dc678031b621015e1dae74abd65994c1c0", + "tarball": "http://registry.npmjs.org/matchmaker/-/matchmaker-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/matchmaker/" + }, + "math": { + "name": "math", + "description": "Mathematical Functions", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "kzh", + "email": "kaleb@hornsby.ws" + } + ], + "time": { + "modified": "2011-09-19T01:38:33.810Z", + "created": "2011-06-20T21:05:27.955Z", + "0.0.0": "2011-06-20T21:05:31.586Z", + "0.0.3": "2011-09-19T01:38:33.810Z" + }, + "author": { + "name": "Kaleb Hornsby", + "email": "kaleb@hornsby.ws", + "url": "kaleb.hornsby.ws" + }, + "repository": { + "type": "git", + "url": "git://github.com/kaleb/js-math.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/math/0.0.0", + "0.0.3": "http://registry.npmjs.org/math/0.0.3" + }, + "dist": { + "0.0.0": { + "shasum": "3bd830a4809a8e68264bb5e6cebc24b8c80c9362", + "tarball": "http://registry.npmjs.org/math/-/math-0.0.0.tgz" + }, + "0.0.3": { + "shasum": "85b020fd54ce10b26abeabfcd7e1f4bdbc46470f", + "tarball": "http://registry.npmjs.org/math/-/math-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/math/" + }, + "math-lexer": { + "name": "math-lexer", + "description": "Library to parse mathematical expressions into functions which accept parameters to perform calculations.", + "dist-tags": { + "latest": "0.0.9" + }, + "maintainers": [ + { + "name": "gsmcwhirter", + "email": "greg@ideafreemonoid.org" + } + ], + "time": { + "modified": "2011-06-19T21:56:23.344Z", + "created": "2011-06-02T00:15:59.450Z", + "0.0.1": "2011-06-02T00:16:00.051Z", + "0.0.2": "2011-06-02T19:51:22.911Z", + "0.0.3": "2011-06-02T20:40:34.862Z", + "0.0.4": "2011-06-19T19:10:44.669Z", + "0.0.5": "2011-06-19T19:23:17.270Z", + "0.0.6": "2011-06-19T20:22:30.383Z", + "0.0.7": "2011-06-19T20:27:13.069Z", + "0.0.8": "2011-06-19T21:49:48.020Z", + "0.0.9": "2011-06-19T21:56:23.344Z" + }, + "author": { + "name": "Gregory McWhirter", + "email": "greg@ideafreemonoid.org", + "url": "http://ideafreemonoid.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/gsmcwhirter/node-math-lexer.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/math-lexer/0.0.1", + "0.0.2": "http://registry.npmjs.org/math-lexer/0.0.2", + "0.0.3": "http://registry.npmjs.org/math-lexer/0.0.3", + "0.0.4": "http://registry.npmjs.org/math-lexer/0.0.4", + "0.0.5": "http://registry.npmjs.org/math-lexer/0.0.5", + "0.0.6": "http://registry.npmjs.org/math-lexer/0.0.6", + "0.0.7": "http://registry.npmjs.org/math-lexer/0.0.7", + "0.0.8": "http://registry.npmjs.org/math-lexer/0.0.8", + "0.0.9": "http://registry.npmjs.org/math-lexer/0.0.9" + }, + "dist": { + "0.0.1": { + "shasum": "00f6fa6b8578588a2a1785a6e410de92ebf1e054", + "tarball": "http://registry.npmjs.org/math-lexer/-/math-lexer-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "3434d3ec8eae422298f07f4c49ba928f8371510b", + "tarball": "http://registry.npmjs.org/math-lexer/-/math-lexer-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "e94b523bc3caf178b572a4c1a9e3ca0fa3aa0559", + "tarball": "http://registry.npmjs.org/math-lexer/-/math-lexer-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "3cf0927df0471f4966a65507444726b367a55e2f", + "tarball": "http://registry.npmjs.org/math-lexer/-/math-lexer-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "016b0a566d254d0e0b932cc250343bfdb5864ebc", + "tarball": "http://registry.npmjs.org/math-lexer/-/math-lexer-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "61a0044a6966cb2a9b4aa3bf277d5f4239dbaf0d", + "tarball": "http://registry.npmjs.org/math-lexer/-/math-lexer-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "113f003b790a7341f9cc87d34db7625fe44294a4", + "tarball": "http://registry.npmjs.org/math-lexer/-/math-lexer-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "8eabfbec15bb8d73c036ced70124ccaff3a15ecb", + "tarball": "http://registry.npmjs.org/math-lexer/-/math-lexer-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "1ca394c32903601d5cc5dbfa6833aef9027c680c", + "tarball": "http://registry.npmjs.org/math-lexer/-/math-lexer-0.0.9.tgz" + } + }, + "url": "http://registry.npmjs.org/math-lexer/" + }, + "mathlib": { + "name": "mathlib", + "description": "A better math library for JavaScript.", + "dist-tags": {}, + "maintainers": [ + { + "name": "stdbrouw", + "email": "stijn@stdout.be" + } + ], + "time": { + "modified": "2011-10-25T23:49:58.173Z", + "created": "2011-10-25T23:49:58.173Z" + }, + "versions": {}, + "dist": {}, + "url": "http://registry.npmjs.org/mathlib/" + }, + "matrices": { + "name": "matrices", + "description": "Classes for matrix calculations.", + "dist-tags": { + "latest": "0.2.5" + }, + "maintainers": [ + { + "name": "dimituri", + "email": "dimituri@gmail.com" + } + ], + "time": { + "modified": "2011-09-16T17:09:12.258Z", + "created": "2011-08-13T03:31:19.540Z", + "0.1.0": "2011-08-13T03:31:21.829Z", + "0.2.0": "2011-08-14T06:49:17.949Z", + "0.2.1": "2011-08-14T07:01:39.534Z", + "0.2.2": "2011-08-14T07:19:25.555Z", + "0.2.3": "2011-08-14T08:03:34.618Z", + "0.2.4": "2011-08-18T16:47:51.898Z", + "0.2.5": "2011-09-16T17:05:06.343Z" + }, + "author": { + "name": "Dimitry Solovyov", + "email": "dimituri@gmail.com", + "url": "http://100-hour.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dimituri/node-matrices.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/matrices/0.1.0", + "0.2.0": "http://registry.npmjs.org/matrices/0.2.0", + "0.2.3": "http://registry.npmjs.org/matrices/0.2.3", + "0.2.4": "http://registry.npmjs.org/matrices/0.2.4", + "0.2.5": "http://registry.npmjs.org/matrices/0.2.5" + }, + "dist": { + "0.1.0": { + "shasum": "bb0c8b35819db667e6a3586a226d98967038c251", + "tarball": "http://registry.npmjs.org/matrices/-/matrices-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "33476cb22038b27390af76b6722ba0c96d318490", + "tarball": "http://registry.npmjs.org/matrices/-/matrices-0.2.0.tgz" + }, + "0.2.3": { + "shasum": "efbee66eed360fd84e2c587251e7f4cc33390125", + "tarball": "http://registry.npmjs.org/matrices/-/matrices-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "c70ccebb7ee3d4477863639b12d5394ca95b4e0d", + "tarball": "http://registry.npmjs.org/matrices/-/matrices-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "4378c2271737448fdd1915fec60c9d781a2b9b2a", + "tarball": "http://registry.npmjs.org/matrices/-/matrices-0.2.5.tgz" + } + }, + "url": "http://registry.npmjs.org/matrices/" + }, + "matrix": { + "name": "matrix", + "description": "cartesian product, tablulate, & other matrixy functions", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-03-14T12:44:27.360Z", + "created": "2011-03-14T12:44:26.551Z", + "0.0.0": "2011-03-14T12:44:27.360Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com", + "url": "http://bit.ly/dominictarr" + }, + "repository": { + "type": "git", + "url": "git://github.com/dominictarr/matrix.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/matrix/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "d90a7007a2d8f1347a62d2da41d7c34b1e1c155b", + "tarball": "http://registry.npmjs.org/matrix/-/matrix-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/matrix/" + }, + "matrixlib": { + "name": "matrixlib", + "description": "Adds matrix support and routines", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "rook2pawn", + "email": "rook2pawn@gmail.com" + } + ], + "time": { + "modified": "2011-10-08T06:42:57.396Z", + "created": "2011-07-12T05:13:37.116Z", + "0.0.0": "2011-07-12T05:13:37.972Z", + "0.0.1": "2011-07-12T06:03:59.628Z", + "0.0.2": "2011-07-15T08:56:36.193Z", + "0.0.3": "2011-10-04T21:14:16.957Z" + }, + "author": { + "name": "David Wee", + "email": "rook2pawn@gmail.com", + "url": "http://rook2pawn.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/rook2pawn/node-matrixlib.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/matrixlib/0.0.0", + "0.0.1": "http://registry.npmjs.org/matrixlib/0.0.1", + "0.0.2": "http://registry.npmjs.org/matrixlib/0.0.2", + "0.0.3": "http://registry.npmjs.org/matrixlib/0.0.3" + }, + "dist": { + "0.0.0": { + "shasum": "427ea1b9ec864e295697c9b3f4381ce7bf09cd9b", + "tarball": "http://registry.npmjs.org/matrixlib/-/matrixlib-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "4abfb13c01a27bf590c3a99d1a13da0bef435388", + "tarball": "http://registry.npmjs.org/matrixlib/-/matrixlib-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "a97cc946cc7bdc052b85a480634904c75c594aba", + "tarball": "http://registry.npmjs.org/matrixlib/-/matrixlib-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "46fc0e2f0e94017d25d35ac2f531d910ce281918", + "tarball": "http://registry.npmjs.org/matrixlib/-/matrixlib-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/matrixlib/" + }, + "matterhorn": { + "name": "matterhorn", + "description": "Formalizes a way of building web applications atop the express framework.", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "lfdoherty", + "email": "lfdoherty@gmail.com" + } + ], + "time": { + "modified": "2011-07-12T06:26:44.789Z", + "created": "2011-04-28T22:06:00.480Z", + "0.1.2": "2011-04-28T22:06:01.015Z", + "0.1.3": "2011-05-13T10:06:30.108Z", + "0.1.4": "2011-05-17T22:37:09.484Z", + "0.2.0": "2011-07-12T06:26:44.789Z" + }, + "author": { + "name": "Liam Doherty" + }, + "versions": { + "0.1.2": "http://registry.npmjs.org/matterhorn/0.1.2", + "0.1.3": "http://registry.npmjs.org/matterhorn/0.1.3", + "0.1.4": "http://registry.npmjs.org/matterhorn/0.1.4", + "0.2.0": "http://registry.npmjs.org/matterhorn/0.2.0" + }, + "dist": { + "0.1.2": { + "shasum": "77287a2e72669ec4607cb11a27fae67ef98f85e1", + "tarball": "http://registry.npmjs.org/matterhorn/-/matterhorn-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "8ff434aa73035a4c75f1cb6788ee431cb91eb3a6", + "tarball": "http://registry.npmjs.org/matterhorn/-/matterhorn-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "9d1d8d41d99f2e56fe69098ee23eeddb4d9ba6f8", + "tarball": "http://registry.npmjs.org/matterhorn/-/matterhorn-0.1.4.tgz" + }, + "0.2.0": { + "shasum": "67539e5dbf986fd88e381f2366d6bbc993dadcab", + "tarball": "http://registry.npmjs.org/matterhorn/-/matterhorn-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/matterhorn/" + }, + "matterhorn-dust": { + "name": "matterhorn-dust", + "description": "Matterhorn wrapper for the client-side dust template library.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "lfdoherty", + "email": "lfdoherty@gmail.com" + } + ], + "time": { + "modified": "2011-04-28T07:27:32.695Z", + "created": "2011-04-28T07:27:32.147Z", + "0.1.0": "2011-04-28T07:27:32.696Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/matterhorn-dust/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "dd51d7b49633f64ec743d09489f4076b77bafe9b", + "tarball": "http://registry.npmjs.org/matterhorn-dust/-/matterhorn-dust-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/matterhorn-dust/" + }, + "matterhorn-gui": { + "name": "matterhorn-gui", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "lfdoherty", + "email": "lfdoherty@gmail.com" + } + ], + "time": { + "modified": "2011-07-12T06:49:10.594Z", + "created": "2011-07-12T06:49:10.071Z", + "0.2.0": "2011-07-12T06:49:10.595Z" + }, + "author": { + "name": "Liam Doherty" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/matterhorn-gui/0.2.0" + }, + "dist": { + "0.2.0": { + "shasum": "b01e1b5a806449aaae19c8d5c363133a8038a800", + "tarball": "http://registry.npmjs.org/matterhorn-gui/-/matterhorn-gui-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/matterhorn-gui/" + }, + "matterhorn-prng": { + "name": "matterhorn-prng", + "description": "Matterhorn wrapper for random number generation.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "lfdoherty", + "email": "lfdoherty@gmail.com" + } + ], + "time": { + "modified": "2011-04-28T07:27:18.597Z", + "created": "2011-04-28T07:27:18.063Z", + "0.1.0": "2011-04-28T07:27:18.597Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/matterhorn-prng/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "d64e08d5c2820c622995d1a6ce8e36f4a1ec3fc4", + "tarball": "http://registry.npmjs.org/matterhorn-prng/-/matterhorn-prng-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/matterhorn-prng/" + }, + "matterhorn-standard": { + "name": "matterhorn-standard", + "description": "Matterhorn wrapper for a set of common third-party libraries, with some extensions and utilities.", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "lfdoherty", + "email": "lfdoherty@gmail.com" + } + ], + "time": { + "modified": "2011-07-12T06:33:33.493Z", + "created": "2011-04-28T21:39:37.412Z", + "0.1.0": "2011-04-28T21:39:37.996Z", + "0.1.1": "2011-04-28T21:58:23.758Z", + "0.1.11": "2011-04-28T22:11:00.206Z", + "0.1.3": "2011-05-13T10:08:38.862Z", + "0.1.4": "2011-05-17T22:40:14.587Z", + "0.2.0": "2011-07-12T06:33:33.493Z" + }, + "author": { + "name": "Liam Doherty" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/matterhorn-standard/0.1.0", + "0.1.1": "http://registry.npmjs.org/matterhorn-standard/0.1.1", + "0.1.11": "http://registry.npmjs.org/matterhorn-standard/0.1.11", + "0.1.3": "http://registry.npmjs.org/matterhorn-standard/0.1.3", + "0.1.4": "http://registry.npmjs.org/matterhorn-standard/0.1.4", + "0.2.0": "http://registry.npmjs.org/matterhorn-standard/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "b2f55f7b422be778c67b719ca9e5691bc1eddc2d", + "tarball": "http://registry.npmjs.org/matterhorn-standard/-/matterhorn-standard-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "b24d680eb5cffd8a865270403d69752f5bfe8758", + "tarball": "http://registry.npmjs.org/matterhorn-standard/-/matterhorn-standard-0.1.1.tgz" + }, + "0.1.11": { + "shasum": "440e500d3b84fb978dc2cb96a532dd60c66baa54", + "tarball": "http://registry.npmjs.org/matterhorn-standard/-/matterhorn-standard-0.1.11.tgz" + }, + "0.1.3": { + "shasum": "e2579d4f6e3197359e7986aa484924665ef45747", + "tarball": "http://registry.npmjs.org/matterhorn-standard/-/matterhorn-standard-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "dfe0703dea778fc960018a692bd8574b0c64e368", + "tarball": "http://registry.npmjs.org/matterhorn-standard/-/matterhorn-standard-0.1.4.tgz" + }, + "0.2.0": { + "shasum": "544a62095df4b589d48a83b226fa3ead7587b3a2", + "tarball": "http://registry.npmjs.org/matterhorn-standard/-/matterhorn-standard-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/matterhorn-standard/" + }, + "matterhorn-state": { + "name": "matterhorn-state", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "lfdoherty", + "email": "lfdoherty@gmail.com" + } + ], + "time": { + "modified": "2011-07-12T06:36:04.905Z", + "created": "2011-07-12T06:36:04.350Z", + "0.2.0": "2011-07-12T06:36:04.905Z" + }, + "author": { + "name": "Liam Doherty" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/matterhorn-state/0.2.0" + }, + "dist": { + "0.2.0": { + "shasum": "fb40e92400a93f608b9eb465897ecce825864c82", + "tarball": "http://registry.npmjs.org/matterhorn-state/-/matterhorn-state-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/matterhorn-state/" + }, + "matterhorn-user": { + "name": "matterhorn-user", + "description": "User management for the matterhorn framework.", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "lfdoherty", + "email": "lfdoherty@gmail.com" + } + ], + "time": { + "modified": "2011-07-10T01:25:58.387Z", + "created": "2011-04-28T21:49:30.938Z", + "0.1.4": "2011-04-28T21:49:31.566Z", + "0.1.41": "2011-04-28T21:59:54.612Z", + "0.1.42": "2011-04-28T22:08:18.983Z", + "0.1.43": "2011-04-28T23:07:24.759Z", + "0.1.5": "2011-05-13T10:07:07.792Z", + "0.1.6": "2011-05-17T22:38:13.545Z", + "0.1.61": "2011-05-18T23:08:34.044Z", + "0.2.0": "2011-07-10T01:25:58.387Z" + }, + "author": { + "name": "Liam Doherty" + }, + "versions": { + "0.1.4": "http://registry.npmjs.org/matterhorn-user/0.1.4", + "0.1.41": "http://registry.npmjs.org/matterhorn-user/0.1.41", + "0.1.42": "http://registry.npmjs.org/matterhorn-user/0.1.42", + "0.1.43": "http://registry.npmjs.org/matterhorn-user/0.1.43", + "0.1.5": "http://registry.npmjs.org/matterhorn-user/0.1.5", + "0.1.6": "http://registry.npmjs.org/matterhorn-user/0.1.6", + "0.1.61": "http://registry.npmjs.org/matterhorn-user/0.1.61", + "0.2.0": "http://registry.npmjs.org/matterhorn-user/0.2.0" + }, + "dist": { + "0.1.4": { + "shasum": "6be30ab9843f26318b089f96d7f6c29f7e5557f7", + "tarball": "http://registry.npmjs.org/matterhorn-user/-/matterhorn-user-0.1.4.tgz" + }, + "0.1.41": { + "shasum": "8ba63f66826442ef12ef83b13a2fa6f8bfeb4f20", + "tarball": "http://registry.npmjs.org/matterhorn-user/-/matterhorn-user-0.1.41.tgz" + }, + "0.1.42": { + "shasum": "9a4ef0764483fcf3a5325e2a6a620e8b01e3fdb2", + "tarball": "http://registry.npmjs.org/matterhorn-user/-/matterhorn-user-0.1.42.tgz" + }, + "0.1.43": { + "shasum": "ff3831d21c531e26e7dc3ba3aefd90dc9e2ebca9", + "tarball": "http://registry.npmjs.org/matterhorn-user/-/matterhorn-user-0.1.43.tgz" + }, + "0.1.5": { + "shasum": "2d495b69dc7e1f8dbc9df831415d8dd792be0ac5", + "tarball": "http://registry.npmjs.org/matterhorn-user/-/matterhorn-user-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "7e6085644e5a5636c9efc90ee1e2de8f466eb036", + "tarball": "http://registry.npmjs.org/matterhorn-user/-/matterhorn-user-0.1.6.tgz" + }, + "0.1.61": { + "shasum": "456b97c80a2803eebf6d50c6bc10ab4d0d7f829e", + "tarball": "http://registry.npmjs.org/matterhorn-user/-/matterhorn-user-0.1.61.tgz" + }, + "0.2.0": { + "shasum": "3c0c369c3f7a5d7c79e059c68c5bc35df93cf973", + "tarball": "http://registry.npmjs.org/matterhorn-user/-/matterhorn-user-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/matterhorn-user/" + }, + "matterhorn-view": { + "name": "matterhorn-view", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "lfdoherty", + "email": "lfdoherty@gmail.com" + } + ], + "time": { + "modified": "2011-07-12T06:45:34.295Z", + "created": "2011-07-12T06:45:33.460Z", + "0.2.0": "2011-07-12T06:45:34.295Z" + }, + "author": { + "name": "Liam Doherty" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/matterhorn-view/0.2.0" + }, + "dist": { + "0.2.0": { + "shasum": "250da953eb277963d040bc4ba19d6945cec91883", + "tarball": "http://registry.npmjs.org/matterhorn-view/-/matterhorn-view-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/matterhorn-view/" + }, + "mbtiles": { + "name": "mbtiles", + "description": "Utilities and tilelive integration for the MBTiles format.", + "dist-tags": { + "latest": "0.1.17" + }, + "maintainers": [ + { + "name": "yhahn", + "email": "young@developmentseed.org" + }, + { + "name": "kkaefer", + "email": "kkaefer@gmail.com" + }, + { + "name": "tmcw", + "email": "macwright@gmail.com" + }, + { + "name": "willwhite", + "email": "will@developmentseed.org" + }, + { + "name": "springmeyer", + "email": "dane@dbsgeo.com" + } + ], + "time": { + "modified": "2011-11-10T20:27:46.262Z", + "created": "2011-05-18T15:59:55.058Z", + "0.0.1": "2011-05-18T15:59:55.283Z", + "0.0.2": "2011-05-19T22:06:23.950Z", + "0.0.3": "2011-05-19T22:35:10.871Z", + "0.0.4": "2011-06-29T17:58:45.494Z", + "0.0.5": "2011-06-29T22:02:34.741Z", + "0.1.0": "2011-07-13T14:51:36.686Z", + "0.1.1": "2011-07-14T16:20:07.542Z", + "0.1.2": "2011-07-25T16:26:43.403Z", + "0.1.3": "2011-07-26T11:55:15.045Z", + "0.1.4": "2011-07-26T14:51:36.177Z", + "0.1.5": "2011-08-03T02:23:53.684Z", + "0.1.6": "2011-08-30T01:18:01.179Z", + "0.1.7": "2011-08-31T18:23:12.588Z", + "0.1.8": "2011-09-14T14:53:32.292Z", + "0.1.9": "2011-09-18T15:11:28.384Z", + "0.1.10": "2011-09-20T15:35:22.245Z", + "0.1.11": "2011-09-20T20:58:59.396Z", + "0.1.12": "2011-09-22T15:15:26.050Z", + "0.1.13": "2011-10-06T16:24:08.450Z", + "0.1.14": "2011-10-31T07:12:27.300Z", + "0.1.15": "2011-10-31T07:15:12.290Z", + "0.1.16": "2011-11-10T05:47:42.986Z", + "0.1.17": "2011-11-10T20:27:46.262Z" + }, + "author": { + "name": "MapBox", + "email": "info@mapbox.com", + "url": "http://mapbox.com/" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mbtiles/0.0.1", + "0.0.2": "http://registry.npmjs.org/mbtiles/0.0.2", + "0.0.3": "http://registry.npmjs.org/mbtiles/0.0.3", + "0.0.4": "http://registry.npmjs.org/mbtiles/0.0.4", + "0.0.5": "http://registry.npmjs.org/mbtiles/0.0.5", + "0.1.0": "http://registry.npmjs.org/mbtiles/0.1.0", + "0.1.1": "http://registry.npmjs.org/mbtiles/0.1.1", + "0.1.2": "http://registry.npmjs.org/mbtiles/0.1.2", + "0.1.3": "http://registry.npmjs.org/mbtiles/0.1.3", + "0.1.4": "http://registry.npmjs.org/mbtiles/0.1.4", + "0.1.5": "http://registry.npmjs.org/mbtiles/0.1.5", + "0.1.6": "http://registry.npmjs.org/mbtiles/0.1.6", + "0.1.7": "http://registry.npmjs.org/mbtiles/0.1.7", + "0.1.8": "http://registry.npmjs.org/mbtiles/0.1.8", + "0.1.9": "http://registry.npmjs.org/mbtiles/0.1.9", + "0.1.10": "http://registry.npmjs.org/mbtiles/0.1.10", + "0.1.11": "http://registry.npmjs.org/mbtiles/0.1.11", + "0.1.12": "http://registry.npmjs.org/mbtiles/0.1.12", + "0.1.13": "http://registry.npmjs.org/mbtiles/0.1.13", + "0.1.14": "http://registry.npmjs.org/mbtiles/0.1.14", + "0.1.15": "http://registry.npmjs.org/mbtiles/0.1.15", + "0.1.16": "http://registry.npmjs.org/mbtiles/0.1.16", + "0.1.17": "http://registry.npmjs.org/mbtiles/0.1.17" + }, + "dist": { + "0.0.1": { + "shasum": "5783943f35e6f7874336edfa1f7a1133cb653f8e", + "tarball": "http://registry.npmjs.org/mbtiles/-/mbtiles-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "dc4fbd3081ecbd87104eb340d88f9374519ac8b4", + "tarball": "http://registry.npmjs.org/mbtiles/-/mbtiles-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "35bb547ae3b65bff300f11f6c9a2dd3084995513", + "tarball": "http://registry.npmjs.org/mbtiles/-/mbtiles-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "6ca9ffa2067cfab07a3232234e584e1f72f7656e", + "tarball": "http://registry.npmjs.org/mbtiles/-/mbtiles-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "0571bfc7c9e59d87a25d695b5bc3102cb9728cee", + "tarball": "http://registry.npmjs.org/mbtiles/-/mbtiles-0.0.5.tgz" + }, + "0.1.0": { + "shasum": "cd97fcf74c87e021e44c64e63f4fffa6bcc8d217", + "tarball": "http://registry.npmjs.org/mbtiles/-/mbtiles-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "61cbc874612d8f6920877d190031899d374d3613", + "tarball": "http://registry.npmjs.org/mbtiles/-/mbtiles-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "a4cffb8ff40c1113e70969688d1984271fe2d915", + "tarball": "http://registry.npmjs.org/mbtiles/-/mbtiles-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "53a7cf3a07d12489bd8302a44141d94f52e86cb6", + "tarball": "http://registry.npmjs.org/mbtiles/-/mbtiles-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "d9eea6a762bd3cf0370d4f7a3ba8d58917712927", + "tarball": "http://registry.npmjs.org/mbtiles/-/mbtiles-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "fe9340a99bc6cb485a2c7e9e87ee2e7d5db8c371", + "tarball": "http://registry.npmjs.org/mbtiles/-/mbtiles-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "84dce6393a289ee7e6a115f21ad16feb63b40fa7", + "tarball": "http://registry.npmjs.org/mbtiles/-/mbtiles-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "5adb90bb13d7574cba8fd317b997d2bcca43b706", + "tarball": "http://registry.npmjs.org/mbtiles/-/mbtiles-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "9259b6febf862d74069636b8fab470132c83758d", + "tarball": "http://registry.npmjs.org/mbtiles/-/mbtiles-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "86e41140809e7a7d485c835bbab813981f5f7244", + "tarball": "http://registry.npmjs.org/mbtiles/-/mbtiles-0.1.9.tgz" + }, + "0.1.10": { + "shasum": "c37f16cc974c5e911430d4dc390ca76507cf837d", + "tarball": "http://registry.npmjs.org/mbtiles/-/mbtiles-0.1.10.tgz" + }, + "0.1.11": { + "shasum": "47ec14651f5bc73f9a43339b955c0c1a8a307fce", + "tarball": "http://registry.npmjs.org/mbtiles/-/mbtiles-0.1.11.tgz" + }, + "0.1.12": { + "shasum": "8d86875c288b9f1ef4e2a52672774a021d67cc8b", + "tarball": "http://registry.npmjs.org/mbtiles/-/mbtiles-0.1.12.tgz" + }, + "0.1.13": { + "shasum": "aa71070e143d83e313a802a7dfd80b4be6b2c0de", + "tarball": "http://registry.npmjs.org/mbtiles/-/mbtiles-0.1.13.tgz" + }, + "0.1.14": { + "shasum": "c50afca59109f230b383d75b9fbfeb527a4419c1", + "tarball": "http://registry.npmjs.org/mbtiles/-/mbtiles-0.1.14.tgz" + }, + "0.1.15": { + "shasum": "b55fc938fdf59622bf655798de4d39010b58b587", + "tarball": "http://registry.npmjs.org/mbtiles/-/mbtiles-0.1.15.tgz" + }, + "0.1.16": { + "shasum": "ba5031c987b8795b23561d5d4b20342a79ac5f1c", + "tarball": "http://registry.npmjs.org/mbtiles/-/mbtiles-0.1.16.tgz" + }, + "0.1.17": { + "shasum": "ff9d8928a22739ae63c996401d26087f504203f9", + "tarball": "http://registry.npmjs.org/mbtiles/-/mbtiles-0.1.17.tgz" + } + }, + "keywords": [ + "map", + "mbtiles" + ], + "url": "http://registry.npmjs.org/mbtiles/" + }, + "mc_jsonapi": { + "name": "mc_jsonapi", + "description": "Connect to minecraft server running JSONAPI plugin with TCP socket", + "dist-tags": { + "latest": "1.1.0" + }, + "maintainers": [ + { + "name": "gipsyking", + "email": "ste3ls@gmail.com" + } + ], + "time": { + "modified": "2011-10-12T10:12:07.886Z", + "created": "2011-10-12T09:59:19.713Z", + "1.0.0": "2011-10-12T09:59:21.070Z", + "1.1.0": "2011-10-12T10:12:07.886Z" + }, + "author": { + "name": "Benjamin Grosse", + "email": "ste3ls@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Benja-gipsy-king/mc_jsonapi.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/mc_jsonapi/1.0.0", + "1.1.0": "http://registry.npmjs.org/mc_jsonapi/1.1.0" + }, + "dist": { + "1.0.0": { + "shasum": "26a1946b2c618b91f7efd4df666083b2fac8f93a", + "tarball": "http://registry.npmjs.org/mc_jsonapi/-/mc_jsonapi-1.0.0.tgz" + }, + "1.1.0": { + "shasum": "1e8d8c946e4d575410b7bfd98d8dc894fcee3ec4", + "tarball": "http://registry.npmjs.org/mc_jsonapi/-/mc_jsonapi-1.1.0.tgz" + } + }, + "keywords": [ + "minecraft", + "jsonapi" + ], + "url": "http://registry.npmjs.org/mc_jsonapi/" + }, + "mcast": { + "name": "mcast", + "description": "some multicast api additions for node", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "dxld", + "email": "dxld@darkboxed.org" + } + ], + "time": { + "modified": "2011-04-15T21:23:52.015Z", + "created": "2011-02-13T12:21:16.598Z", + "0.0.1": "2011-02-13T12:21:17.076Z" + }, + "author": { + "name": "Daniel Gröber" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mcast/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "c1d3b6dc4f6fa7b56bef308fde245746b6cda177", + "tarball": "http://registry.npmjs.org/mcast/-/mcast-0.0.1.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "9c70b9935bbe935dcce3e93c94f63951a77ee0fc", + "tarball": "http://registry.npmjs.org/mcast/-/mcast-0.0.1-0.4-sunos-5.11.tgz" + } + } + } + }, + "url": "http://registry.npmjs.org/mcast/" + }, + "mcms": { + "name": "mcms", + "description": "CommonJS compatible Minimal CMS", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "olegp", + "email": "oleg@ionsquare.com" + } + ], + "time": { + "modified": "2011-10-26T18:11:55.547Z", + "created": "2011-10-26T18:11:52.803Z", + "0.1.0": "2011-10-26T18:11:55.547Z" + }, + "author": { + "name": "Oleg Podsechin", + "email": "oleg@ionsquare.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/olegp/mcms.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/mcms/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "8c013a959ffd1b3e7a7561023b14fc814a53aedb", + "tarball": "http://registry.npmjs.org/mcms/-/mcms-0.1.0.tgz" + } + }, + "keywords": [ + "cms", + "blog", + "commonjs" + ], + "url": "http://registry.npmjs.org/mcms/" + }, + "mcsmp": { + "name": "mcsmp", + "description": "Minecraft multiplayer library", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "eddyb", + "email": "eddyb@kwhq.net" + } + ], + "time": { + "modified": "2011-10-16T19:11:34.954Z", + "created": "2011-10-16T19:11:32.715Z", + "0.0.1": "2011-10-16T19:11:34.954Z" + }, + "author": { + "name": "Eduard Burtescu", + "email": "edy.burt@gmail.com", + "url": "http://kwhq.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/eddyb/node-mcsmp.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mcsmp/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "88bfce4310d9018db80ea7db0ad5a206f3962aa7", + "tarball": "http://registry.npmjs.org/mcsmp/-/mcsmp-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/mcsmp/" + }, + "md5": { + "name": "md5", + "description": "Kohyama's jsMD5. See http://jsperf.com/md5-shootout. I'll replace this on npm with anything else.", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-08-27T21:25:24.095Z", + "created": "2011-08-27T21:25:23.732Z", + "1.0.0": "2011-08-27T21:25:24.095Z" + }, + "author": { + "name": "Yoshinori Kohyama", + "url": "http://jp.linkedin.com/pub/yoshinori-kohyama/36/155/9b8" + }, + "repository": { + "type": "git", + "url": "git://github.com/coolaj86/jsMD5.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/md5/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "48573cb75e9a635eb56570eb9cbcea0663c15939", + "tarball": "http://registry.npmjs.org/md5/-/md5-1.0.0.tgz" + } + }, + "keywords": [ + "ender", + "md5", + "browser" + ], + "url": "http://registry.npmjs.org/md5/" + }, + "MD5": { + "name": "MD5", + "description": "function for hashing messages with MD5", + "dist-tags": { + "latest": "0.0.0" + }, + "readme": null, + "maintainers": [ + { + "name": "pvorb", + "email": "paul@vorb.de" + } + ], + "time": { + "modified": "2011-11-25T02:59:38.617Z", + "created": "2011-11-25T02:59:35.402Z", + "0.0.0": "2011-11-25T02:59:38.617Z" + }, + "author": { + "name": "Paul Vorbach", + "email": "paul@vorb.de", + "url": "http://vorb.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/pvorb/node-md5.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/MD5/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "0ecaa322a1b3a83fe39ec04a3dac6d3d452679ab", + "tarball": "http://registry.npmjs.org/MD5/-/MD5-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/MD5/" + }, + "mdgram": { + "name": "mdgram", + "description": "Provide UDP-Multicast Sockets", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "phidelta", + "email": "phidelta@phideltacity.net" + } + ], + "time": { + "modified": "2011-04-15T21:24:17.297Z", + "created": "2011-02-23T16:32:40.214Z", + "0.0.1": "2011-02-23T16:32:40.214Z", + "0.0.2": "2011-02-23T16:32:40.214Z", + "0.0.3": "2011-02-23T16:32:40.214Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mdgram/0.0.1", + "0.0.2": "http://registry.npmjs.org/mdgram/0.0.2", + "0.0.3": "http://registry.npmjs.org/mdgram/0.0.3" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/mdgram/-/mdgram-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/mdgram/-/mdgram-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "274db0f94ead7587a8a38ad9e6d0412b0df0d814", + "tarball": "http://registry.npmjs.org/mdgram/-/mdgram-0.0.3.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "d16f88744876c041e1991dfa794b4b5c0df32678", + "tarball": "http://registry.npmjs.org/mdgram/-/mdgram-0.0.3-0.4-sunos-5.11.tgz" + } + } + } + }, + "url": "http://registry.npmjs.org/mdgram/" + }, + "mdns": { + "name": "mdns", + "description": "mdns/zeroconf/bonjour service discovery add-on", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "agnat", + "email": "david@artcom.de" + } + ], + "author": { + "name": "David Siegel", + "email": "david@artcom.de" + }, + "repository": { + "type": "git", + "url": "http://github.com/agnat/node_mdns.git" + }, + "time": { + "modified": "2011-04-15T21:24:26.714Z", + "created": "2011-03-31T08:03:55.358Z", + "0.0.3": "2011-03-31T08:03:55.358Z" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/mdns/0.0.3" + }, + "dist": { + "0.0.3": { + "tarball": "http://registry.npmjs.org/mdns/-/mdns-0.0.3.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "ce9479ee09cc4b5cf578900cd50e78cdb64604e8", + "tarball": "http://registry.npmjs.org/mdns/-/mdns-0.0.3-0.4-sunos-5.11.tgz" + } + } + } + }, + "url": "http://registry.npmjs.org/mdns/" + }, + "mdoc": { + "name": "mdoc", + "description": "Markdown based documentation generator", + "dist-tags": { + "latest": "0.3.0" + }, + "readme": null, + "maintainers": [ + { + "name": "millermedeiros", + "email": "miller@millermedeiros.com" + } + ], + "time": { + "modified": "2011-12-02T04:51:48.962Z", + "created": "2011-11-27T15:56:38.022Z", + "0.1.0": "2011-11-27T15:56:40.011Z", + "0.2.0": "2011-11-28T01:55:56.623Z", + "0.2.1": "2011-11-28T02:44:06.291Z", + "0.3.0": "2011-12-02T04:51:48.962Z" + }, + "author": { + "name": "Miller Medeiros", + "url": "http://blog.millermedeiros.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/millermedeiros/mdoc.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/mdoc/0.1.0", + "0.2.0": "http://registry.npmjs.org/mdoc/0.2.0", + "0.2.1": "http://registry.npmjs.org/mdoc/0.2.1", + "0.3.0": "http://registry.npmjs.org/mdoc/0.3.0" + }, + "dist": { + "0.1.0": { + "shasum": "c8a3382f2e3920822d2a73b4609e75906a9825ee", + "tarball": "http://registry.npmjs.org/mdoc/-/mdoc-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "3d24e9f40db000dafce3a25a5f067e52df593b7e", + "tarball": "http://registry.npmjs.org/mdoc/-/mdoc-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "d9dcabe8614fec7da94d6c65bb35bbe51e195ca2", + "tarball": "http://registry.npmjs.org/mdoc/-/mdoc-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "d451bfd84df8621b7c97dc823540a2131dead241", + "tarball": "http://registry.npmjs.org/mdoc/-/mdoc-0.3.0.tgz" + } + }, + "keywords": [ + "markdown", + "documentation" + ], + "url": "http://registry.npmjs.org/mdoc/" + }, + "mecab": { + "name": "mecab", + "description": "mecab bindings", + "dist-tags": {}, + "maintainers": [ + { + "name": "mizchi", + "email": "miz404@gmail.com" + } + ], + "time": { + "modified": "2011-10-28T05:20:14.635Z", + "created": "2011-10-28T05:20:14.635Z" + }, + "versions": {}, + "dist": {}, + "url": "http://registry.npmjs.org/mecab/" + }, + "MeCab": { + "name": "MeCab", + "description": "MeCab C API bindings for node.js", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "mah0x211", + "email": "mah0x211@gmail.com" + } + ], + "time": { + "modified": "2011-08-30T17:48:24.559Z", + "created": "2011-08-30T17:48:22.942Z", + "0.0.2": "2011-08-30T17:48:24.559Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/mah0x211/node-mecab.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/MeCab/0.0.2" + }, + "dist": { + "0.0.2": { + "shasum": "744a992bac59c2bf67fd0349fb82635c3236aa81", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-darwin-9.8.0": { + "shasum": "207047f879ea2f969d834f927380c4ff17aa64c4", + "tarball": "http://registry.npmjs.org/MeCab/-/MeCab-0.0.2-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-darwin-9.8.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/MeCab/-/MeCab-0.0.2.tgz" + } + }, + "keywords": [ + "MeCab", + "Morphological Analyzer" + ], + "url": "http://registry.npmjs.org/MeCab/" + }, + "mecab-binding": { + "name": "mecab-binding", + "description": "Very simple MeCab binding for Node", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "hakobera", + "email": "hakobera@gmail.com" + } + ], + "time": { + "modified": "2011-06-18T01:53:41.123Z", + "created": "2011-06-18T01:53:39.482Z", + "0.0.1": "2011-06-18T01:53:41.123Z" + }, + "author": { + "name": "Kazuyuki Honda", + "email": "hakobera@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/hakobera/node-mecab-binding.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mecab-binding/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "f410d295011043d9a70c0ec7b8430d7b81637465", + "tarball": "http://registry.npmjs.org/mecab-binding/-/mecab-binding-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/mecab-binding/" + }, + "mechanize": { + "name": "mechanize", + "description": "Automate interaction with websites (web scraping)", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "srveit", + "email": "srveit@veitconsulting.com" + } + ], + "time": { + "modified": "2011-07-26T14:37:43.055Z", + "created": "2011-07-24T22:16:04.740Z", + "0.0.2": "2011-07-24T22:16:05.711Z", + "0.0.3": "2011-07-26T14:37:43.055Z" + }, + "author": { + "name": "Stephen R. Veit", + "email": "srveit@veitconsulting.com", + "url": "http://stephenveit.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:srveit/mechanize-js.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/mechanize/0.0.2", + "0.0.3": "http://registry.npmjs.org/mechanize/0.0.3" + }, + "dist": { + "0.0.2": { + "shasum": "667c052401f72ba58458c62b97de8c869627c6de", + "tarball": "http://registry.npmjs.org/mechanize/-/mechanize-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "5fe0200cade85c481962f413416c6c318444fdd6", + "tarball": "http://registry.npmjs.org/mechanize/-/mechanize-0.0.3.tgz" + } + }, + "keywords": [ + "dom", + "scraper", + "javascript" + ], + "url": "http://registry.npmjs.org/mechanize/" + }, + "mediatags": { + "name": "mediatags", + "description": "Tools extracting for media meta-data tags", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/mediatags/0.1.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/mediatags/-/mediatags-0.1.0.tgz" + } + }, + "keywords": [ + "util", + "m4a", + "aac", + "mp3", + "id3", + "jpeg", + "exiv", + "xmp" + ], + "url": "http://registry.npmjs.org/mediatags/" + }, + "mediator": { + "name": "mediator", + "description": "Global event broker.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "tmedema", + "email": "tommedema@gmail.com" + } + ], + "time": { + "modified": "2011-08-25T16:25:55.982Z", + "created": "2011-08-25T16:25:54.473Z", + "0.0.1": "2011-08-25T16:25:55.982Z" + }, + "author": { + "name": "Tom Medema", + "email": "tommedema@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/tommedema/mediator.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mediator/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "cee194ec20c66d2b4fe8b4625084a641f6c39c17", + "tarball": "http://registry.npmjs.org/mediator/-/mediator-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/mediator/" + }, + "meet": { + "name": "meet", + "description": "Provides a way to start multiple asynchronous tasks with a single callback when all are finished", + "dist-tags": { + "latest": "1.3.1" + }, + "readme": "# Meet\n\nSee test.js for example usage\n\n\n\n", + "maintainers": [ + { + "name": "sleeplessinc", + "email": "joe@sleepless.com" + } + ], + "time": { + "modified": "2011-12-07T06:47:14.932Z", + "created": "2011-12-04T00:31:03.707Z", + "1.0.0": "2011-12-04T00:31:05.578Z", + "1.1.0": "2011-12-04T03:15:43.016Z", + "1.2.0": "2011-12-04T03:28:14.425Z", + "1.3.0": "2011-12-04T03:35:32.102Z", + "1.3.1": "2011-12-07T06:47:14.932Z" + }, + "author": { + "name": "Joe Hitchens", + "email": "joe@sleepless.com", + "url": "sleepless.com" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/meet/1.0.0", + "1.1.0": "http://registry.npmjs.org/meet/1.1.0", + "1.2.0": "http://registry.npmjs.org/meet/1.2.0", + "1.3.0": "http://registry.npmjs.org/meet/1.3.0", + "1.3.1": "http://registry.npmjs.org/meet/1.3.1" + }, + "dist": { + "1.0.0": { + "shasum": "425bdd7d0f2e398dcc72c47398f7da8b250669d1", + "tarball": "http://registry.npmjs.org/meet/-/meet-1.0.0.tgz" + }, + "1.1.0": { + "shasum": "b906f1c23b6d175df5f4dd6145523ccb7c6f8de8", + "tarball": "http://registry.npmjs.org/meet/-/meet-1.1.0.tgz" + }, + "1.2.0": { + "shasum": "2bf45095cc4a7b14776f7e7ff2085e68428cafbe", + "tarball": "http://registry.npmjs.org/meet/-/meet-1.2.0.tgz" + }, + "1.3.0": { + "shasum": "6df2402c34ff3612eeb2c7155ddca18e36b01be9", + "tarball": "http://registry.npmjs.org/meet/-/meet-1.3.0.tgz" + }, + "1.3.1": { + "shasum": "5652f74df1a39b1d3294952bcfdc38ae1e7eded8", + "tarball": "http://registry.npmjs.org/meet/-/meet-1.3.1.tgz" + } + }, + "url": "http://registry.npmjs.org/meet/" + }, + "meltdown": { + "name": "meltdown", + "description": "a dead man's switch for hook.io", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "marak", + "email": "marak.squires@gmail.com" + } + ], + "time": { + "modified": "2011-11-19T04:50:43.093Z", + "created": "2011-11-19T04:50:41.560Z", + "0.1.0": "2011-11-19T04:50:43.093Z" + }, + "author": { + "name": "Marak Squires", + "email": "marak.squires@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/hookio/meltdown.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/meltdown/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "1d612c921bb1e103b8c15b905fc5981c0a003b1e", + "tarball": "http://registry.npmjs.org/meltdown/-/meltdown-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/meltdown/" + }, + "memcache": { + "name": "memcache", + "description": "simple memcache client", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "elbart", + "email": "tim@elbart.com" + } + ], + "time": { + "modified": "2011-05-20T17:27:20.559Z", + "created": "2011-04-07T22:47:15.050Z", + "0.1.1": "2011-04-07T22:47:15.488Z", + "0.2.0": "2011-05-20T17:27:20.559Z" + }, + "author": { + "name": "Tim Eggert", + "email": "tim@elbart.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/elbart/node-memcache.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/memcache/0.1.1", + "0.2.0": "http://registry.npmjs.org/memcache/0.2.0" + }, + "dist": { + "0.1.1": { + "shasum": "d6a417d51becef766e89cb85fbd2701a802a63b6", + "tarball": "http://registry.npmjs.org/memcache/-/memcache-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "6e2be553f1f272295b8c8f6e0e1860887de7855e", + "tarball": "http://registry.npmjs.org/memcache/-/memcache-0.2.0.tgz" + } + }, + "keywords": [ + "memcache", + "memcached" + ], + "url": "http://registry.npmjs.org/memcache/" + }, + "memcached": { + "name": "memcached", + "description": "A fully featured Memcached API client, supporting both single and clustered Memcached servers through consistent hashing and failover/failure. Memcached is rewrite of nMemcached, which will be deprecated in the near future.", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "V1", + "email": "info@3rd-Eden.com" + } + ], + "time": { + "modified": "2011-10-25T19:37:35.363Z", + "created": "2011-04-22T19:15:53.334Z", + "0.0.1": "2011-04-22T19:15:53.749Z", + "0.0.2": "2011-05-23T18:46:15.785Z", + "0.0.3": "2011-08-17T06:44:19.446Z", + "0.0.4": "2011-08-31T08:43:08.813Z", + "0.0.5": "2011-10-25T19:37:35.363Z" + }, + "author": { + "name": "Arnout Kazemier" + }, + "repository": { + "type": "git", + "url": "git://github.com/3rd-Eden/node-memcached.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/memcached/0.0.1", + "0.0.2": "http://registry.npmjs.org/memcached/0.0.2", + "0.0.3": "http://registry.npmjs.org/memcached/0.0.3", + "0.0.4": "http://registry.npmjs.org/memcached/0.0.4", + "0.0.5": "http://registry.npmjs.org/memcached/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "c7510f760e9a349f3c01a6bfb9dbc7ffe2b0519d", + "tarball": "http://registry.npmjs.org/memcached/-/memcached-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "37db0576e1801e7d790bfeca6c5932f0d9accfb2", + "tarball": "http://registry.npmjs.org/memcached/-/memcached-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "ee5acb1f1c4939309731b23d6cae84c201c9dbef", + "tarball": "http://registry.npmjs.org/memcached/-/memcached-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "d782b8040dd805a102c43757e64c465664ad7570", + "tarball": "http://registry.npmjs.org/memcached/-/memcached-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "fafb075375b586a7a81c2358feaf3b7377f97984", + "tarball": "http://registry.npmjs.org/memcached/-/memcached-0.0.5.tgz" + } + }, + "keywords": [ + "memcached", + "client", + "hashing", + "failover", + "cluster", + "nMemcached", + "memcache", + "cache", + "nosql", + "membase", + "InnoDB memcached API" + ], + "url": "http://registry.npmjs.org/memcached/" + }, + "memcouchd": { + "name": "memcouchd", + "description": "In-Memory CouchDB clone written in JavaScript", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "w3dot0", + "email": "jens.schmidt@gmx.net" + } + ], + "time": { + "modified": "2011-02-15T08:05:01.878Z", + "created": "2011-02-15T08:05:01.374Z", + "0.1.1": "2011-02-15T08:05:01.878Z" + }, + "author": { + "name": "pcapr", + "url": "http://www.pcapr.net" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/memcouchd/0.1.1" + }, + "dist": { + "0.1.1": { + "shasum": "a26130f0cdc9a38d4b1ce57a00ff67a33bce032e", + "tarball": "http://registry.npmjs.org/memcouchd/-/memcouchd-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/memcouchd/" + }, + "meme": { + "name": "meme", + "description": "a CLI utility to generate memes using memegenerator.net", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "floby", + "email": "florent.jaby@gmail.com" + } + ], + "time": { + "modified": "2011-04-09T12:29:11.634Z", + "created": "2011-03-22T20:39:41.767Z", + "0.1.0": "2011-03-22T20:39:43.252Z", + "0.1.1": "2011-03-22T22:30:04.561Z", + "0.1.2": "2011-04-09T12:29:11.634Z" + }, + "author": { + "name": "Florent Jaby", + "email": "florent.jaby@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Floby/node-meme.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/meme/0.1.0", + "0.1.1": "http://registry.npmjs.org/meme/0.1.1", + "0.1.2": "http://registry.npmjs.org/meme/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "ac58de27a7a5962dade09e4814e3bb93db2b6961", + "tarball": "http://registry.npmjs.org/meme/-/meme-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "7c67494b9a7438ab73caefe6b8575b2dbe7777be", + "tarball": "http://registry.npmjs.org/meme/-/meme-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "53bd2a49303465c5cff36124500c9e6f9ecabe88", + "tarball": "http://registry.npmjs.org/meme/-/meme-0.1.2.tgz" + } + }, + "keywords": [ + "meme", + "cli" + ], + "url": "http://registry.npmjs.org/meme/" + }, + "memo": { + "name": "memo", + "description": "Sophisticated function memoization", + "dist-tags": { + "latest": "0.2.0-1" + }, + "maintainers": [ + { + "name": "akidee", + "email": "mail@akidee.de" + } + ], + "time": { + "modified": "2011-11-09T00:06:55.894Z", + "created": "2010-12-28T17:05:40.720Z", + "0.1.0a": "2010-12-28T17:05:41.060Z", + "0.2.0": "2011-06-20T23:00:56.555Z", + "0.2.0-1": "2011-11-09T00:06:55.894Z" + }, + "author": { + "name": "Andreas Kalsch", + "email": "mail@akidee.de", + "url": "http://akidee.de/" + }, + "versions": { + "0.1.0a": "http://registry.npmjs.org/memo/0.1.0a", + "0.2.0": "http://registry.npmjs.org/memo/0.2.0", + "0.2.0-1": "http://registry.npmjs.org/memo/0.2.0-1" + }, + "dist": { + "0.1.0a": { + "shasum": "86c9df3f9ababb5c23872becd7d3312607efcd68", + "tarball": "http://registry.npmjs.org/memo/-/memo-0.1.0a.tgz" + }, + "0.2.0": { + "shasum": "ee88bc7590fbeceebf074254c6e54024e74cc1f7", + "tarball": "http://registry.npmjs.org/memo/-/memo-0.2.0.tgz" + }, + "0.2.0-1": { + "shasum": "03216b1189c1ead13a9f4a0bf7f7fe29b5630234", + "tarball": "http://registry.npmjs.org/memo/-/memo-0.2.0-1.tgz" + } + }, + "keywords": [ + "asynchronous", + "async", + "function", + "call", + "memoization", + "backend", + "storage", + "agile" + ], + "url": "http://registry.npmjs.org/memo/" + }, + "memoize": { + "name": "memoize", + "description": "memoize caches your callbacks given a set of arguments w/ persistence", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "stagas", + "email": "gstagas@gmail.com" + } + ], + "time": { + "modified": "2011-08-23T09:16:11.620Z", + "created": "2011-05-05T14:50:14.538Z", + "0.0.1": "2011-05-05T14:50:18.269Z", + "0.0.2": "2011-05-05T15:03:55.184Z", + "0.0.3": "2011-05-05T15:41:19.446Z", + "0.1.0": "2011-08-23T08:03:57.298Z", + "0.1.1": "2011-08-23T09:16:11.620Z" + }, + "author": { + "name": "George Stagas", + "email": "gstagas@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/stagas/memoize.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/memoize/0.0.1", + "0.0.2": "http://registry.npmjs.org/memoize/0.0.2", + "0.0.3": "http://registry.npmjs.org/memoize/0.0.3", + "0.1.0": "http://registry.npmjs.org/memoize/0.1.0", + "0.1.1": "http://registry.npmjs.org/memoize/0.1.1" + }, + "dist": { + "0.0.1": { + "shasum": "a58167513a0ce451a33db3684ccc27df1760df78", + "tarball": "http://registry.npmjs.org/memoize/-/memoize-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "1fec54a625c3b753ea940630cdf33f9b95e3a103", + "tarball": "http://registry.npmjs.org/memoize/-/memoize-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "9a7a12ac9b719f7d307fb0882f191664f1ae6a23", + "tarball": "http://registry.npmjs.org/memoize/-/memoize-0.0.3.tgz" + }, + "0.1.0": { + "shasum": "61c1037a0ca916ff4d33cd84db554d4988b96925", + "tarball": "http://registry.npmjs.org/memoize/-/memoize-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "d265a3458be5ce3bf254998b30a995ab91668a24", + "tarball": "http://registry.npmjs.org/memoize/-/memoize-0.1.1.tgz" + } + }, + "keywords": [ + "memoize", + "cache" + ], + "url": "http://registry.npmjs.org/memoize/" + }, + "memoizer": { + "name": "memoizer", + "description": "memoization as easy as f = memo(g); f is now fully memoized!", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "rook2pawn", + "email": "rook2pawn@gmail.com" + } + ], + "time": { + "modified": "2011-09-05T10:35:12.120Z", + "created": "2011-07-27T08:46:39.534Z", + "0.0.1": "2011-07-27T08:46:40.660Z", + "0.0.2": "2011-08-02T14:03:15.379Z", + "0.0.3": "2011-08-03T13:43:01.113Z", + "0.0.4": "2011-09-05T10:35:12.120Z" + }, + "author": { + "name": "David Wee", + "email": "rook2pawn@gmail.com", + "url": "http://rook2pawn.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/rook2pawn/node-memoizer.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/memoizer/0.0.1", + "0.0.2": "http://registry.npmjs.org/memoizer/0.0.2", + "0.0.3": "http://registry.npmjs.org/memoizer/0.0.3", + "0.0.4": "http://registry.npmjs.org/memoizer/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "eeeff6560940c78a3aeef4783099805dc98466cf", + "tarball": "http://registry.npmjs.org/memoizer/-/memoizer-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "06b1a20148750f6e9fbec0fe158c6f64fd1dd70b", + "tarball": "http://registry.npmjs.org/memoizer/-/memoizer-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "ae2d9372c4425ffb2ddae8ec7487658d16bd568c", + "tarball": "http://registry.npmjs.org/memoizer/-/memoizer-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "1744add5b70d89100bc5b478a5118edfba9f3d0b", + "tarball": "http://registry.npmjs.org/memoizer/-/memoizer-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/memoizer/" + }, + "memonic": { + "name": "memonic", + "description": "An memonic api wrapper for node.js", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "callin2", + "email": "callin2@gmail.com" + } + ], + "time": { + "modified": "2011-10-13T22:58:56.000Z", + "created": "2011-10-13T22:58:51.791Z", + "0.0.1": "2011-10-13T22:58:56.000Z" + }, + "author": { + "name": "임창진", + "email": "callin2@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/callin2/memonic.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/memonic/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "c3894ca681575f241434bff577d49faddb095390", + "tarball": "http://registry.npmjs.org/memonic/-/memonic-0.0.1.tgz" + } + }, + "keywords": [ + "api", + "memonic" + ], + "url": "http://registry.npmjs.org/memonic/" + }, + "memory": { + "name": "memory", + "description": "Node.js module to grab your current memory usage in various formats", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "edwardhotchkiss", + "email": "hi@forsurerad.com" + } + ], + "time": { + "modified": "2011-09-26T17:05:36.874Z", + "created": "2011-09-25T04:01:39.891Z", + "0.0.1": "2011-09-25T04:01:40.242Z", + "0.0.2": "2011-09-25T04:11:44.346Z", + "0.0.3": "2011-09-26T17:05:36.874Z" + }, + "author": { + "name": "Edward Hotchkiss", + "email": "e@ingk.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/edwardhotchkiss/memory.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/memory/0.0.1", + "0.0.2": "http://registry.npmjs.org/memory/0.0.2", + "0.0.3": "http://registry.npmjs.org/memory/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "28a93a77f597ce3a73a146e6d85afd3059c47205", + "tarball": "http://registry.npmjs.org/memory/-/memory-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "22e181c1cdd94052589ec5bc6ddf514715938f53", + "tarball": "http://registry.npmjs.org/memory/-/memory-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "ce009c96a5c8ade2f2cf4a6c9a6942a6b5fe26f5", + "tarball": "http://registry.npmjs.org/memory/-/memory-0.0.3.tgz" + } + }, + "keywords": [ + "memory", + "usage", + "twitter", + "rss", + "megabytes" + ], + "url": "http://registry.npmjs.org/memory/" + }, + "memorystream": { + "name": "memorystream", + "description": "This is lightweight memory stream module for node.js.", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "jsbizon", + "email": "dmitryp3@gmail.com" + } + ], + "time": { + "modified": "2011-12-12T08:53:25.645Z", + "created": "2011-08-27T15:04:10.004Z", + "0.0.1": "2011-08-27T15:04:10.594Z", + "0.0.2": "2011-08-27T15:07:20.778Z", + "0.0.3": "2011-08-27T16:57:23.801Z", + "0.0.4": "2011-09-01T11:55:07.305Z", + "0.0.5": "2011-12-12T08:53:25.645Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/JSBizon/node-memorystream.git" + }, + "author": { + "name": "Dmitry Nizovtsev", + "url": "https://github.com/JSBizon" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/memorystream/0.0.1", + "0.0.2": "http://registry.npmjs.org/memorystream/0.0.2", + "0.0.3": "http://registry.npmjs.org/memorystream/0.0.3", + "0.0.4": "http://registry.npmjs.org/memorystream/0.0.4", + "0.0.5": "http://registry.npmjs.org/memorystream/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "48a401d1e9f212e0c3aadd5116ee0de5bf3e53e1", + "tarball": "http://registry.npmjs.org/memorystream/-/memorystream-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "86486fdb7075225e02b1a3bf9214e2d387b35136", + "tarball": "http://registry.npmjs.org/memorystream/-/memorystream-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "ab345e11ca3fa9ea623ca0a996b8a7668fe9fe43", + "tarball": "http://registry.npmjs.org/memorystream/-/memorystream-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "24c29389d908bdcaa669a5d4b80a563f4a8c52c1", + "tarball": "http://registry.npmjs.org/memorystream/-/memorystream-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "9f7dfc233c615c8ed17f03cc7b65958a95956dc0", + "tarball": "http://registry.npmjs.org/memorystream/-/memorystream-0.0.5.tgz" + } + }, + "keywords": [ + "memory", + "stream", + "tools", + "streams" + ], + "url": "http://registry.npmjs.org/memorystream/" + }, + "memstore": { + "name": "memstore", + "description": "In-memory key/value data storage with simple map", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "JerrySievert", + "email": "code@legitimatesounding.com" + } + ], + "time": { + "modified": "2011-01-29T21:41:59.988Z", + "created": "2011-01-29T21:39:15.031Z", + "0.1.0": "2011-01-29T21:39:15.418Z", + "0.1.1": "2011-01-29T21:41:59.988Z" + }, + "author": { + "name": "Jerry Sievert", + "email": "code@legitimatesounding.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/memstore/0.1.0", + "0.1.1": "http://registry.npmjs.org/memstore/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "f35e2b6cabea65d9dcde84eab0afaa2fc6052b58", + "tarball": "http://registry.npmjs.org/memstore/-/memstore-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "1348b1dc2c7af2b4dc4324f78f7935915e9ea762", + "tarball": "http://registry.npmjs.org/memstore/-/memstore-0.1.1.tgz" + } + }, + "keywords": [ + "key", + "value", + "memory" + ], + "url": "http://registry.npmjs.org/memstore/" + }, + "memstream": { + "name": "memstream", + "description": "A robust and lightweight memory stream for node.js.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "ollym", + "email": "oliver.morgan@kohark.com" + } + ], + "time": { + "modified": "2011-09-24T01:23:47.904Z", + "created": "2011-09-24T01:23:47.257Z", + "0.0.1": "2011-09-24T01:23:47.904Z" + }, + "author": { + "name": "Oliver Morgan", + "email": "ollym@kohark.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/ollym/memstream.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/memstream/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "9d1d482aaf8f175d098a77ec7093dc4812c5af1e", + "tarball": "http://registry.npmjs.org/memstream/-/memstream-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/memstream/" + }, + "mercury": { + "name": "mercury", + "description": "A fully featured HTML5 WYSIWYG editor written in CoffeeScript", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "balupton", + "email": "b@lupton.cc" + } + ], + "time": { + "modified": "2011-07-01T14:32:50.341Z", + "created": "2011-07-01T14:32:48.851Z", + "0.2.0": "2011-07-01T14:32:50.341Z" + }, + "author": { + "name": "Jeremy Jackson", + "email": "jeremy@factorylabs.com", + "url": "https://github.com/jejacks0n" + }, + "repository": { + "type": "git", + "url": "git://github.com/balupton/mercury.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/mercury/0.2.0" + }, + "dist": { + "0.2.0": { + "shasum": "06ba99201cd0b3e9196530bd03515a67c660b8e1", + "tarball": "http://registry.npmjs.org/mercury/-/mercury-0.2.0.tgz" + } + }, + "keywords": [ + "contenteditable", + "wysiwyg", + "wyriwyg", + "wywiwyg" + ], + "url": "http://registry.npmjs.org/mercury/" + }, + "Mercury": { + "name": "Mercury", + "description": "A fully featured HTML5 WYSIWYG editor written in CoffeeScript", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "jejacks0n", + "email": "jejacks0n@gmail.com" + } + ], + "time": { + "modified": "2011-07-01T19:47:22.703Z", + "created": "2011-07-01T19:47:22.391Z", + "0.1.4": "2011-07-01T19:47:22.703Z" + }, + "author": { + "name": "Jeremy Jackson", + "email": "jeremy@factorylabs.com", + "url": "https://github.com/jejacks0n" + }, + "repository": { + "type": "git", + "url": "git://github.com/jejacks0n/mercury.git" + }, + "versions": { + "0.1.4": "http://registry.npmjs.org/Mercury/0.1.4" + }, + "dist": { + "0.1.4": { + "shasum": "ddf2aa90b140b6379007aba59c0a9d4f87b15958", + "tarball": "http://registry.npmjs.org/Mercury/-/Mercury-0.1.4.tgz" + } + }, + "keywords": [ + "contenteditable", + "wysiwyg", + "wyriwyg", + "wywiwyg" + ], + "url": "http://registry.npmjs.org/Mercury/" + }, + "mersenne": { + "name": "mersenne", + "description": "A node.js module for generating high-quality Mersenne Twister random numbers.", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "jwatte", + "email": "node@mindcontrol.org" + } + ], + "author": { + "name": "Jon Watte", + "url": "http://www.enchantedage.com/" + }, + "time": { + "modified": "2011-05-13T23:24:58.868Z", + "created": "2011-05-13T21:56:43.445Z", + "0.0.1": "2011-05-13T21:56:43.445Z", + "0.0.2": "2011-05-13T21:56:43.445Z", + "0.0.3": "2011-05-13T23:24:58.868Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mersenne/0.0.1", + "0.0.2": "http://registry.npmjs.org/mersenne/0.0.2", + "0.0.3": "http://registry.npmjs.org/mersenne/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "9a9b21617501599fd8535b6d75c4080ba9dffea0", + "tarball": "http://registry.npmjs.org/mersenne/-/mersenne-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "95d2b9ca15d627b593d994b9729a3f8ee705f253", + "tarball": "http://registry.npmjs.org/mersenne/-/mersenne-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "a81f9aeb4f9158b1991f92b4c40d4bddda70d33d", + "tarball": "http://registry.npmjs.org/mersenne/-/mersenne-0.0.3.tgz" + } + }, + "keywords": [ + "random", + "mersenne", + "twister", + "number", + "generator" + ], + "url": "http://registry.npmjs.org/mersenne/" + }, + "meryl": { + "name": "meryl", + "description": "Minimalist web framework for NodeJS", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "coffeemate", + "email": "kadirpekel@gmail.com" + } + ], + "author": { + "name": "Kadir Pekel", + "email": "kadirpekel@gmail.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/coffeemate/meryl" + }, + "time": { + "modified": "2011-03-11T08:07:56.791Z", + "created": "2011-03-11T08:07:40.158Z", + "0.9.2": "2011-03-11T08:07:40.158Z", + "0.9.3": "2011-03-11T08:07:40.158Z", + "0.9.4": "2011-03-11T08:07:40.158Z", + "0.9.5": "2011-03-11T08:07:40.158Z", + "0.9.6": "2011-03-11T08:07:40.158Z", + "0.9.7": "2011-03-11T08:07:40.158Z", + "0.9.8": "2011-03-11T08:07:40.158Z", + "1.0.1": "2011-03-11T08:07:40.158Z" + }, + "versions": { + "0.9.2": "http://registry.npmjs.org/meryl/0.9.2", + "0.9.3": "http://registry.npmjs.org/meryl/0.9.3", + "0.9.4": "http://registry.npmjs.org/meryl/0.9.4", + "0.9.5": "http://registry.npmjs.org/meryl/0.9.5", + "0.9.6": "http://registry.npmjs.org/meryl/0.9.6", + "0.9.7": "http://registry.npmjs.org/meryl/0.9.7", + "0.9.8": "http://registry.npmjs.org/meryl/0.9.8", + "1.0.1": "http://registry.npmjs.org/meryl/1.0.1" + }, + "dist": { + "0.9.2": { + "tarball": "http://packages:5984/meryl/-/meryl-0.9.2.tgz" + }, + "0.9.3": { + "tarball": "http://packages:5984/meryl/-/meryl-0.9.3.tgz" + }, + "0.9.4": { + "tarball": "http://packages:5984/meryl/-/meryl-0.9.4.tgz" + }, + "0.9.5": { + "tarball": "http://packages:5984/meryl/-/meryl-0.9.5.tgz" + }, + "0.9.6": { + "tarball": "http://packages:5984/meryl/-/meryl-0.9.6.tgz" + }, + "0.9.7": { + "tarball": "http://registry.npmjs.org/meryl/-/meryl-0.9.7.tgz" + }, + "0.9.8": { + "tarball": "http://registry.npmjs.org/meryl/-/meryl-0.9.8.tgz" + }, + "1.0.1": { + "tarball": "http://registry.npmjs.org/meryl/-/meryl-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/meryl/" + }, + "mesh": { + "name": "mesh", + "description": "Command line tools for interfacing with a steelmesh installation", + "dist-tags": { + "latest": "0.2.4" + }, + "maintainers": [ + { + "name": "damonoehlman", + "email": "damon.oehlman@sidelab.com" + } + ], + "time": { + "modified": "2011-12-08T07:09:35.189Z", + "created": "2011-09-06T05:23:00.114Z", + "0.0.1": "2011-09-06T05:23:02.095Z", + "0.0.2": "2011-09-16T05:25:21.782Z", + "0.0.4": "2011-09-24T14:26:38.271Z", + "0.0.6": "2011-10-06T04:53:46.677Z", + "0.0.7": "2011-11-09T05:27:20.386Z", + "0.1.0": "2011-11-15T22:50:31.419Z", + "0.1.1": "2011-11-16T06:10:21.670Z", + "0.1.2": "2011-11-18T04:54:19.901Z", + "0.1.3": "2011-11-18T06:23:41.473Z", + "0.1.4": "2011-11-21T03:13:56.660Z", + "0.1.5": "2011-11-22T00:32:58.324Z", + "0.1.6": "2011-11-24T04:23:32.826Z", + "0.1.7": "2011-12-01T02:45:37.449Z", + "0.2.0": "2011-12-02T05:40:14.668Z", + "0.2.2": "2011-12-02T09:39:10.314Z", + "0.2.3": "2011-12-05T16:07:16.222Z", + "0.2.4": "2011-12-08T07:09:35.189Z" + }, + "author": { + "name": "Damon Oehlman", + "email": "damon.oehlman@sidelab.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/steelmesh/mesh.git" + }, + "versions": { + "0.2.2": "http://registry.npmjs.org/mesh/0.2.2", + "0.2.3": "http://registry.npmjs.org/mesh/0.2.3", + "0.2.4": "http://registry.npmjs.org/mesh/0.2.4" + }, + "dist": { + "0.2.2": { + "shasum": "74c1ffa70a4bb8376cd28496c0e28e1169653c65", + "tarball": "http://registry.npmjs.org/mesh/-/mesh-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "80d3d0cb6e025032c69b965e4e2ce632551a115c", + "tarball": "http://registry.npmjs.org/mesh/-/mesh-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "7921113153f00494b673b25a9227cfbe8efb4bf8", + "tarball": "http://registry.npmjs.org/mesh/-/mesh-0.2.4.tgz" + } + }, + "url": "http://registry.npmjs.org/mesh/" + }, + "message-ports": { + "name": "message-ports", + "description": "Sockets from the future. A friendly API over the node ZeroMQ (zmq) bindings", + "dist-tags": { + "latest": "0.2.4" + }, + "readme": null, + "maintainers": [ + { + "name": "quackingduck", + "email": "myles@myles.id.au" + } + ], + "time": { + "modified": "2011-11-22T03:31:51.362Z", + "created": "2011-11-14T05:31:17.752Z", + "0.2.2": "2011-11-14T05:31:18.423Z", + "0.2.3": "2011-11-14T23:08:45.805Z", + "0.2.4": "2011-11-22T03:31:51.362Z" + }, + "author": { + "name": "Myles Byrne" + }, + "repository": { + "type": "git", + "url": "git://github.com/quackingduck/message-ports.git" + }, + "versions": { + "0.2.2": "http://registry.npmjs.org/message-ports/0.2.2", + "0.2.3": "http://registry.npmjs.org/message-ports/0.2.3", + "0.2.4": "http://registry.npmjs.org/message-ports/0.2.4" + }, + "dist": { + "0.2.2": { + "shasum": "ce338bec1bb00126edd233ddefbb9f74ef61274f", + "tarball": "http://registry.npmjs.org/message-ports/-/message-ports-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "0abc14c564104fd14c16c1b8ff2eb873f0f27791", + "tarball": "http://registry.npmjs.org/message-ports/-/message-ports-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "d56a562ad2ca4f8d0f33637e4ed0cf4d6daf0d2b", + "tarball": "http://registry.npmjs.org/message-ports/-/message-ports-0.2.4.tgz" + } + }, + "url": "http://registry.npmjs.org/message-ports/" + }, + "message-sockets": { + "name": "message-sockets", + "description": "a message socket", + "dist-tags": { + "latest": "0.2.11" + }, + "maintainers": [ + { + "name": "mafintosh", + "email": "mathiasbuus@gmail.com" + } + ], + "time": { + "modified": "2011-12-14T11:31:34.795Z", + "created": "2011-10-21T10:05:03.874Z", + "0.1.0": "2011-10-21T10:05:05.432Z", + "0.2.0": "2011-10-21T19:22:31.117Z", + "0.2.1": "2011-10-21T19:44:01.397Z", + "0.2.2": "2011-10-21T21:09:49.980Z", + "0.2.3": "2011-10-22T14:49:15.679Z", + "0.2.4": "2011-10-22T15:47:04.219Z", + "0.2.5": "2011-10-22T19:35:52.149Z", + "0.2.6": "2011-10-22T19:38:08.303Z", + "0.2.8": "2011-11-17T09:12:15.649Z", + "0.2.9": "2011-11-17T09:22:56.076Z", + "0.2.11": "2011-12-14T11:31:34.795Z" + }, + "author": { + "name": "Mathias Buus Madsen", + "email": "mathiasbuus@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/message-sockets/0.1.0", + "0.2.0": "http://registry.npmjs.org/message-sockets/0.2.0", + "0.2.1": "http://registry.npmjs.org/message-sockets/0.2.1", + "0.2.2": "http://registry.npmjs.org/message-sockets/0.2.2", + "0.2.3": "http://registry.npmjs.org/message-sockets/0.2.3", + "0.2.4": "http://registry.npmjs.org/message-sockets/0.2.4", + "0.2.5": "http://registry.npmjs.org/message-sockets/0.2.5", + "0.2.6": "http://registry.npmjs.org/message-sockets/0.2.6", + "0.2.8": "http://registry.npmjs.org/message-sockets/0.2.8", + "0.2.9": "http://registry.npmjs.org/message-sockets/0.2.9", + "0.2.11": "http://registry.npmjs.org/message-sockets/0.2.11" + }, + "dist": { + "0.1.0": { + "shasum": "b7e8bc361cdc8c8d26efcd1cd39634e88a1b5e46", + "tarball": "http://registry.npmjs.org/message-sockets/-/message-sockets-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "e0605b61c4cb4e78090b8426eea71b05530c77bb", + "tarball": "http://registry.npmjs.org/message-sockets/-/message-sockets-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "856b299f2b65d1928fc7156c5ed8c409a0112c0b", + "tarball": "http://registry.npmjs.org/message-sockets/-/message-sockets-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "86e6e99ce47598f182a54e8ff0f43692222bcc5b", + "tarball": "http://registry.npmjs.org/message-sockets/-/message-sockets-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "e25b6e75f04cd9053abed17f8385f44111388635", + "tarball": "http://registry.npmjs.org/message-sockets/-/message-sockets-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "08bb2e47de7473bf404d4bdd66eebd68fb8245c3", + "tarball": "http://registry.npmjs.org/message-sockets/-/message-sockets-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "83a85ad671ea505fc347f6998ce4d5b4afedab28", + "tarball": "http://registry.npmjs.org/message-sockets/-/message-sockets-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "2f9807e5ef249e0ea329df675cf91db1f851385f", + "tarball": "http://registry.npmjs.org/message-sockets/-/message-sockets-0.2.6.tgz" + }, + "0.2.8": { + "shasum": "dedc6ffc6dacc204b77e550cdd06321b4227497a", + "tarball": "http://registry.npmjs.org/message-sockets/-/message-sockets-0.2.8.tgz" + }, + "0.2.9": { + "shasum": "1c57ae4f5c0ac2e80d316de4db536f2e6439132d", + "tarball": "http://registry.npmjs.org/message-sockets/-/message-sockets-0.2.9.tgz" + }, + "0.2.11": { + "shasum": "bdd4289ddac264b6fd60661a4b8d4fe0e3309bb1", + "tarball": "http://registry.npmjs.org/message-sockets/-/message-sockets-0.2.11.tgz" + } + }, + "keywords": [ + "sockets" + ], + "url": "http://registry.npmjs.org/message-sockets/" + }, + "meta_code": { + "name": "meta_code", + "description": "Metaprogramming utilities for CoffeeScript", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "clyfe", + "email": "nicolae_claudius@yahoo.com" + } + ], + "time": { + "modified": "2011-08-21T11:51:07.615Z", + "created": "2011-07-23T19:35:40.595Z", + "0.0.1": "2011-07-23T19:35:41.326Z", + "0.0.2": "2011-08-11T14:57:06.608Z", + "0.0.3": "2011-08-21T11:51:07.615Z" + }, + "author": { + "name": "Nicolae Claudius" + }, + "repository": { + "type": "git", + "url": "git://github.com/clyfe/meta_code.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/meta_code/0.0.1", + "0.0.2": "http://registry.npmjs.org/meta_code/0.0.2", + "0.0.3": "http://registry.npmjs.org/meta_code/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "bbc4b078ec6a12e34d82b705f300f1bc1cde2f8d", + "tarball": "http://registry.npmjs.org/meta_code/-/meta_code-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c630490483ff33c3ffc33a1bfe186728e43effcd", + "tarball": "http://registry.npmjs.org/meta_code/-/meta_code-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "bee4109c67b258f572fb8be0d8648fbba2ead393", + "tarball": "http://registry.npmjs.org/meta_code/-/meta_code-0.0.3.tgz" + } + }, + "keywords": [ + "metaprogramming", + "coffeescript" + ], + "url": "http://registry.npmjs.org/meta_code/" + }, + "meta-objects": { + "name": "meta-objects", + "description": "Utilities and patterns for using Harmony Proxies to meta-program. Proxies as Proxy handlers, catch all forwarders for catch all forwarders, intercession introspection. Now you're thinking with portals.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "benvie", + "email": "brandon@bbenvie.com" + } + ], + "time": { + "modified": "2011-11-15T22:58:26.418Z", + "created": "2011-11-15T22:58:25.141Z", + "0.0.1": "2011-11-15T22:58:26.418Z" + }, + "author": { + "name": "Brandon Benvie", + "email": "brandon@bbenvie.com", + "url": "http://bbenvie.com" + }, + "repository": { + "url": "https://github.com/Benvie/meta-objects" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/meta-objects/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "9c01bf4cd4d8a1357e9f00af13b08f8d4402665d", + "tarball": "http://registry.npmjs.org/meta-objects/-/meta-objects-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/meta-objects/" + }, + "meta-promise": { + "name": "meta-promise", + "description": "ES Harmony Proxy based promise library.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "gozala", + "email": "rfobic@gmail.com" + } + ], + "repository": { + "type": "git", + "url": "git://github.com/Gozala/meta-promise.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/meta-promise/0.0.1", + "0.0.2": "http://registry.npmjs.org/meta-promise/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "07cb2f0ef589e9ce88b35d1cea7c858422319e4a", + "tarball": "http://registry.npmjs.org/meta-promise/-/meta-promise-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "1ff56082c7c5e68f313631b8470ce4808dfdb3f9", + "tarball": "http://registry.npmjs.org/meta-promise/-/meta-promise-0.0.2.tgz" + } + }, + "keywords": [ + "promises", + "utils", + "harmony", + "proxy" + ], + "url": "http://registry.npmjs.org/meta-promise/" + }, + "meta-rewrite-proxy": { + "name": "meta-rewrite-proxy", + "description": "Sets up a proxy to rewrite meta tags to bring pages within your app's domain. Useful to leverage existing meta data and url locations while creating new (namespaced) Facebook apps.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "jswartwood", + "email": "jswartwood@gmail.com" + } + ], + "time": { + "modified": "2011-10-02T22:22:18.234Z", + "created": "2011-10-02T22:22:17.916Z", + "0.0.1": "2011-10-02T22:22:18.234Z" + }, + "author": { + "name": "Jacob Swartwood" + }, + "repository": { + "type": "git", + "web": "http://github.com/jswartwood/meta-rewrite-proxy.git", + "url": "" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/meta-rewrite-proxy/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "7871965034332dbc553a5903e2e93be802c14ce8", + "tarball": "http://registry.npmjs.org/meta-rewrite-proxy/-/meta-rewrite-proxy-0.0.1.tgz" + } + }, + "keywords": [ + "meta", + "proxy", + "facebook", + "open-graph" + ], + "url": "http://registry.npmjs.org/meta-rewrite-proxy/" + }, + "meta-test": { + "name": "meta-test", + "description": "framework for writing unit test frameworks", + "dist-tags": { + "latest": "0.0.10" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-06-25T07:34:13.866Z", + "created": "2011-02-23T04:36:20.040Z", + "0.0.0": "2011-02-23T04:36:21.041Z", + "0.0.1": "2011-03-10T07:29:48.830Z", + "0.0.2": "2011-03-14T11:00:07.219Z", + "0.0.3a": "2011-03-28T21:53:23.580Z", + "0.0.3c": "2011-05-27T16:46:18.239Z", + "0.0.4": "2011-05-28T14:50:32.807Z", + "0.0.5": "2011-06-02T18:24:08.162Z", + "0.0.6": "2011-06-05T02:16:43.145Z", + "0.0.7": "2011-06-05T06:08:41.651Z", + "0.0.8": "2011-06-06T02:36:27.750Z", + "0.0.9": "2011-06-06T19:39:21.889Z", + "0.0.10": "2011-06-25T07:34:13.866Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dominictarr/meta-test2.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/meta-test/0.0.0", + "0.0.1": "http://registry.npmjs.org/meta-test/0.0.1", + "0.0.2": "http://registry.npmjs.org/meta-test/0.0.2", + "0.0.3a": "http://registry.npmjs.org/meta-test/0.0.3a", + "0.0.3c": "http://registry.npmjs.org/meta-test/0.0.3c", + "0.0.4": "http://registry.npmjs.org/meta-test/0.0.4", + "0.0.5": "http://registry.npmjs.org/meta-test/0.0.5", + "0.0.6": "http://registry.npmjs.org/meta-test/0.0.6", + "0.0.7": "http://registry.npmjs.org/meta-test/0.0.7", + "0.0.8": "http://registry.npmjs.org/meta-test/0.0.8", + "0.0.9": "http://registry.npmjs.org/meta-test/0.0.9", + "0.0.10": "http://registry.npmjs.org/meta-test/0.0.10" + }, + "dist": { + "0.0.0": { + "shasum": "e564240ac99917277a74d6054420036fbd83176f", + "tarball": "http://registry.npmjs.org/meta-test/-/meta-test-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "8741fc31f858a650aeb312ebad72ed82b52eedfe", + "tarball": "http://registry.npmjs.org/meta-test/-/meta-test-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "673cc444591b3dc66c4dcdd3dd1824142ccf06c8", + "tarball": "http://registry.npmjs.org/meta-test/-/meta-test-0.0.2.tgz" + }, + "0.0.3a": { + "shasum": "78a41a00e19cbecb89b426af6d657968be49f3fd", + "tarball": "http://registry.npmjs.org/meta-test/-/meta-test-0.0.3a.tgz" + }, + "0.0.3c": { + "shasum": "627ddb666ec3c6487f90e26629b34d02b428d026", + "tarball": "http://registry.npmjs.org/meta-test/-/meta-test-0.0.3c.tgz" + }, + "0.0.4": { + "shasum": "a77ec6f73ba02d02a2d246e851029d74351101e8", + "tarball": "http://registry.npmjs.org/meta-test/-/meta-test-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "d843e36cc74aada7dfdff4743e35bdc2f97757b9", + "tarball": "http://registry.npmjs.org/meta-test/-/meta-test-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "61839b9f160797d62599adfc6c656fa2dd33d9d2", + "tarball": "http://registry.npmjs.org/meta-test/-/meta-test-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "330a81b3548c99eccaa5f0a63337a398331616e0", + "tarball": "http://registry.npmjs.org/meta-test/-/meta-test-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "80d60d1cd37be9443de6dc588501b44a6b1f0313", + "tarball": "http://registry.npmjs.org/meta-test/-/meta-test-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "6589b60372d57343cd42801b40470bd58760764e", + "tarball": "http://registry.npmjs.org/meta-test/-/meta-test-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "48383ef3f5a071023e0c7d3b2c1d9b3f2b0282e1", + "tarball": "http://registry.npmjs.org/meta-test/-/meta-test-0.0.10.tgz" + } + }, + "url": "http://registry.npmjs.org/meta-test/" + }, + "meta.js": { + "name": "meta.js", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "nash", + "email": "nashira_lincoln@yahoo.com" + } + ], + "time": { + "modified": "2011-10-10T23:37:25.060Z", + "created": "2011-10-10T23:37:24.595Z", + "0.0.1": "2011-10-10T23:37:25.060Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/meta.js/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "711949e2a9fadb368dea87b3d9d5b062f04c1166", + "tarball": "http://registry.npmjs.org/meta.js/-/meta.js-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/meta.js/" + }, + "metamanager": { + "name": "metamanager", + "description": "A meta tags manager for node js and jqtpl", + "dist-tags": { + "latest": "0.2.4" + }, + "maintainers": [ + { + "name": "guidone", + "email": "guido.bellomo@gmail.com" + } + ], + "time": { + "modified": "2011-09-30T18:32:47.721Z", + "created": "2011-09-21T08:57:23.438Z", + "0.2.1": "2011-09-21T08:57:24.113Z", + "0.2.2": "2011-09-21T09:09:23.446Z", + "0.2.3": "2011-09-26T16:38:44.030Z", + "0.2.4": "2011-09-30T18:32:47.721Z" + }, + "author": { + "name": "Guido Bellomo", + "email": "guido.bellomo@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/guidone/MetaManager.git" + }, + "versions": { + "0.2.1": "http://registry.npmjs.org/metamanager/0.2.1", + "0.2.2": "http://registry.npmjs.org/metamanager/0.2.2", + "0.2.3": "http://registry.npmjs.org/metamanager/0.2.3", + "0.2.4": "http://registry.npmjs.org/metamanager/0.2.4" + }, + "dist": { + "0.2.1": { + "shasum": "7e96ef140124fdcfadd573fd4b39b81727b4d334", + "tarball": "http://registry.npmjs.org/metamanager/-/metamanager-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "7fb6cdb0752c230965a47b16ec7418e842ca50d6", + "tarball": "http://registry.npmjs.org/metamanager/-/metamanager-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "e8e78b9088b57810b8d91e87e1eebda5c8a788f6", + "tarball": "http://registry.npmjs.org/metamanager/-/metamanager-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "0cd3e16383bcaff8f4b640d4e0110cbd5a57026d", + "tarball": "http://registry.npmjs.org/metamanager/-/metamanager-0.2.4.tgz" + } + }, + "keywords": [ + "template", + "engine", + "jqtpl", + "meta" + ], + "url": "http://registry.npmjs.org/metamanager/" + }, + "metaweblog": { + "name": "metaweblog", + "description": "MetaWeblog API on Nodejs", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "fengmk2", + "email": "fengmk2@gmail.com" + } + ], + "time": { + "modified": "2011-11-14T17:46:26.910Z", + "created": "2011-04-21T18:51:22.160Z", + "0.1.0": "2011-04-21T18:51:23.143Z", + "0.2.0": "2011-11-14T17:46:26.910Z" + }, + "author": { + "name": "fengmk2", + "email": "fengmk2@gmail.com", + "url": "http://fengmk2.cnblogs.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/fengmk2/metaweblog.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/metaweblog/0.1.0", + "0.2.0": "http://registry.npmjs.org/metaweblog/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "7b38c9ab25ee39b1f7470d5ec63c5c06bad05d3f", + "tarball": "http://registry.npmjs.org/metaweblog/-/metaweblog-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "e5732ff96064555d875dfa76e492042a6106b912", + "tarball": "http://registry.npmjs.org/metaweblog/-/metaweblog-0.2.0.tgz" + } + }, + "keywords": [ + "metaweblog", + "xmlrpc", + "blog", + "xml-rpc" + ], + "url": "http://registry.npmjs.org/metaweblog/" + }, + "metric": { + "name": "metric", + "description": "metric (distance) and other related functions", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "rook2pawn", + "email": "rook2pawn@gmail.com" + } + ], + "time": { + "modified": "2011-08-15T16:02:05.593Z", + "created": "2011-08-15T16:02:03.279Z", + "0.0.1": "2011-08-15T16:02:05.593Z" + }, + "author": { + "name": "David Wee", + "email": "rook2pawn@gmail.com", + "url": "http://rook2pawn.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/rook2pawn/node-metric.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/metric/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "66a0d64f1cdae8ec99845f68e5aa799920a0a89d", + "tarball": "http://registry.npmjs.org/metric/-/metric-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/metric/" + }, + "metrics": { + "name": "metrics", + "description": "A node.js port of Coda Hale's metrics library. In use at Yammer.", + "dist-tags": { + "latest": "0.1.5" + }, + "maintainers": [ + { + "name": "mikeihbe", + "email": "mikejihbe@gmail.com" + } + ], + "time": { + "modified": "2011-10-25T00:40:55.320Z", + "created": "2011-04-23T22:33:00.168Z", + "0.0.0": "2011-04-23T22:33:00.569Z", + "0.1.1": "2011-06-03T03:48:52.774Z", + "0.1.2": "2011-07-01T20:23:03.906Z", + "0.1.3": "2011-07-06T18:18:41.244Z", + "0.1.4": "2011-08-18T19:44:16.455Z", + "0.1.5": "2011-10-25T00:40:55.320Z" + }, + "author": { + "name": "Mike Ihbe", + "email": "mikejihbe@gmail.com", + "url": "mikeihbe.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mikejihbe/metrics.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/metrics/0.0.0", + "0.1.1": "http://registry.npmjs.org/metrics/0.1.1", + "0.1.2": "http://registry.npmjs.org/metrics/0.1.2", + "0.1.4": "http://registry.npmjs.org/metrics/0.1.4", + "0.1.5": "http://registry.npmjs.org/metrics/0.1.5" + }, + "dist": { + "0.0.0": { + "shasum": "d9ae3855ca23f039f2d0dc8021a36dfed61ae96b", + "tarball": "http://registry.npmjs.org/metrics/-/metrics-0.0.0.tgz" + }, + "0.1.1": { + "shasum": "6685b6f9bef5276acdb360d2cb6392f1600825db", + "tarball": "http://registry.npmjs.org/metrics/-/metrics-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "b16967c03386aced002f96bf97a5287a366f096a", + "tarball": "http://registry.npmjs.org/metrics/-/metrics-0.1.2.tgz" + }, + "0.1.4": { + "shasum": "f6855782b65238bad82ccf08e33a1385d5d4dbf4", + "tarball": "http://registry.npmjs.org/metrics/-/metrics-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "eef369607f60584d67050ff8b65c935a621f8874", + "tarball": "http://registry.npmjs.org/metrics/-/metrics-0.1.5.tgz" + } + }, + "url": "http://registry.npmjs.org/metrics/" + }, + "metrics-broker": { + "name": "metrics-broker", + "description": "A metrics broker and simple instrumentation library", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "mfischer_rs", + "email": "michael.fischer@rackspace.com" + } + ], + "time": { + "modified": "2011-07-11T21:53:13.692Z", + "created": "2011-07-01T06:53:28.997Z", + "0.0.1": "2011-07-01T06:53:29.535Z", + "0.0.2": "2011-07-06T03:02:58.322Z", + "0.0.3": "2011-07-06T18:57:14.416Z", + "0.1.0": "2011-07-07T20:35:36.268Z", + "0.1.1": "2011-07-08T21:48:39.630Z", + "0.2.0": "2011-07-11T19:31:25.229Z", + "0.2.1": "2011-07-11T21:53:13.692Z" + }, + "author": { + "name": "Michael S. Fischer", + "email": "michael.fischer@rackspace.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/racker/node-metrics-broker.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/metrics-broker/0.0.1", + "0.0.2": "http://registry.npmjs.org/metrics-broker/0.0.2", + "0.0.3": "http://registry.npmjs.org/metrics-broker/0.0.3", + "0.1.0": "http://registry.npmjs.org/metrics-broker/0.1.0", + "0.1.1": "http://registry.npmjs.org/metrics-broker/0.1.1", + "0.2.0": "http://registry.npmjs.org/metrics-broker/0.2.0", + "0.2.1": "http://registry.npmjs.org/metrics-broker/0.2.1" + }, + "dist": { + "0.0.1": { + "shasum": "3ff87d0f584950a3fd8eb7ab74e722ed2765d59e", + "tarball": "http://registry.npmjs.org/metrics-broker/-/metrics-broker-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "744fd27d0f26c972f10fac80db8dc9a1bffe1b3a", + "tarball": "http://registry.npmjs.org/metrics-broker/-/metrics-broker-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "c4be5ded369d1ea0c6b829421c532d21712a7c5f", + "tarball": "http://registry.npmjs.org/metrics-broker/-/metrics-broker-0.0.3.tgz" + }, + "0.1.0": { + "shasum": "391a367f631440374507304bbab538011ebf7110", + "tarball": "http://registry.npmjs.org/metrics-broker/-/metrics-broker-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "070c78a7bd70d574fe12d20f78b08e3f16141673", + "tarball": "http://registry.npmjs.org/metrics-broker/-/metrics-broker-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "42bc7b16e3964d226670f71c8c87c2bde9a5298c", + "tarball": "http://registry.npmjs.org/metrics-broker/-/metrics-broker-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "43018b7ebd5a4cd9b88bbb235d0e5afba2fdbef0", + "tarball": "http://registry.npmjs.org/metrics-broker/-/metrics-broker-0.2.1.tgz" + } + }, + "keywords": [ + "metrics", + "instruments", + "instrumentation", + "performance", + "statistics", + "stats" + ], + "url": "http://registry.npmjs.org/metrics-broker/" + }, + "metro": { + "name": "metro", + "description": "Rails Framework for Node.js", + "dist-tags": { + "latest": "0.3.7" + }, + "maintainers": [ + { + "name": "viatropos", + "email": "lancejpollard@gmail.com" + } + ], + "time": { + "modified": "2011-12-09T22:43:15.712Z", + "created": "2011-10-12T03:27:14.232Z", + "0.2.0": "2011-10-12T03:27:15.501Z", + "0.2.1": "2011-10-13T20:38:36.666Z", + "0.2.2": "2011-10-13T20:57:30.191Z", + "0.2.3": "2011-10-13T21:32:10.229Z", + "0.2.5": "2011-10-16T22:15:14.125Z", + "0.2.6": "2011-10-17T19:33:59.788Z", + "0.2.7": "2011-10-17T19:57:37.538Z", + "0.2.8": "2011-10-17T20:43:54.668Z", + "0.2.9": "2011-10-17T22:17:41.268Z", + "0.2.10": "2011-10-20T21:23:40.151Z", + "0.2.13": "2011-10-31T23:44:33.197Z", + "0.2.14": "2011-11-08T23:01:15.206Z", + "0.2.15": "2011-11-09T01:08:33.134Z", + "0.2.16": "2011-11-17T05:18:56.097Z", + "0.3.1": "2011-12-06T20:40:17.952Z", + "0.3.2": "2011-12-06T21:05:02.807Z", + "0.3.5": "2011-12-09T21:41:44.287Z", + "0.3.6": "2011-12-09T22:32:38.413Z", + "0.3.7": "2011-12-09T22:43:15.712Z" + }, + "author": { + "name": "Lance Pollard", + "email": "lancejpollard@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/viatropos/metro.js.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/metro/0.2.0", + "0.2.1": "http://registry.npmjs.org/metro/0.2.1", + "0.2.2": "http://registry.npmjs.org/metro/0.2.2", + "0.2.3": "http://registry.npmjs.org/metro/0.2.3", + "0.2.5": "http://registry.npmjs.org/metro/0.2.5", + "0.2.6": "http://registry.npmjs.org/metro/0.2.6", + "0.2.7": "http://registry.npmjs.org/metro/0.2.7", + "0.2.8": "http://registry.npmjs.org/metro/0.2.8", + "0.2.9": "http://registry.npmjs.org/metro/0.2.9", + "0.2.10": "http://registry.npmjs.org/metro/0.2.10", + "0.2.13": "http://registry.npmjs.org/metro/0.2.13", + "0.2.14": "http://registry.npmjs.org/metro/0.2.14", + "0.2.15": "http://registry.npmjs.org/metro/0.2.15", + "0.2.16": "http://registry.npmjs.org/metro/0.2.16", + "0.3.1": "http://registry.npmjs.org/metro/0.3.1", + "0.3.2": "http://registry.npmjs.org/metro/0.3.2", + "0.3.5": "http://registry.npmjs.org/metro/0.3.5", + "0.3.6": "http://registry.npmjs.org/metro/0.3.6", + "0.3.7": "http://registry.npmjs.org/metro/0.3.7" + }, + "dist": { + "0.2.0": { + "shasum": "a6365e58421d9a465b7ca5ef2cc9423e5d32b0f2", + "tarball": "http://registry.npmjs.org/metro/-/metro-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "4df87093531fea84fb33363cd19f79d869d10f4c", + "tarball": "http://registry.npmjs.org/metro/-/metro-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "418c095c8748d32e7edf93e48e96b43e55b2ce66", + "tarball": "http://registry.npmjs.org/metro/-/metro-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "2426b3d5c8d25a2b6c577999620f29776c2efd82", + "tarball": "http://registry.npmjs.org/metro/-/metro-0.2.3.tgz" + }, + "0.2.5": { + "shasum": "24a2271d814fb961a89bb74f39f8428c5cbcd1c9", + "tarball": "http://registry.npmjs.org/metro/-/metro-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "692907cfc86330aa887f362049079f6f079ce21c", + "tarball": "http://registry.npmjs.org/metro/-/metro-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "7ea8571f45c9646ae413d38af6f85caa9a7e9782", + "tarball": "http://registry.npmjs.org/metro/-/metro-0.2.7.tgz" + }, + "0.2.8": { + "shasum": "4c8661cdb6fe495d0086ff49fcee87afc5ae38aa", + "tarball": "http://registry.npmjs.org/metro/-/metro-0.2.8.tgz" + }, + "0.2.9": { + "shasum": "f2b5f40a22ea418cedb9963f6119a0d1ca091374", + "tarball": "http://registry.npmjs.org/metro/-/metro-0.2.9.tgz" + }, + "0.2.10": { + "shasum": "5181730b859bd56b56257e04277c9ccf8f9b4548", + "tarball": "http://registry.npmjs.org/metro/-/metro-0.2.10.tgz" + }, + "0.2.13": { + "shasum": "db4036a960100bb19bd10702505963fa000dcaea", + "tarball": "http://registry.npmjs.org/metro/-/metro-0.2.13.tgz" + }, + "0.2.14": { + "shasum": "a68b3a5daa95cd4e57f29c3d98f601e82026d6e4", + "tarball": "http://registry.npmjs.org/metro/-/metro-0.2.14.tgz" + }, + "0.2.15": { + "shasum": "043a1a8b19cf22952ee927d64cbed63dcb6e2718", + "tarball": "http://registry.npmjs.org/metro/-/metro-0.2.15.tgz" + }, + "0.2.16": { + "shasum": "816474142ad2a414219a2bd796ddafebc0d7eda9", + "tarball": "http://registry.npmjs.org/metro/-/metro-0.2.16.tgz" + }, + "0.3.1": { + "shasum": "5d78f59286450bef9d0f159e1d6d898c111815f5", + "tarball": "http://registry.npmjs.org/metro/-/metro-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "d5478a8c62962effaf1b06b2ddf3884fab0fd792", + "tarball": "http://registry.npmjs.org/metro/-/metro-0.3.2.tgz" + }, + "0.3.5": { + "shasum": "145bdfdb179235ae86df947cfd7b18fd687fa1c7", + "tarball": "http://registry.npmjs.org/metro/-/metro-0.3.5.tgz" + }, + "0.3.6": { + "shasum": "514ffe8e9c6cb51429b340d672ad8c7d33842586", + "tarball": "http://registry.npmjs.org/metro/-/metro-0.3.6.tgz" + }, + "0.3.7": { + "shasum": "5888df5319744345a71e991075f3ebc882a7d465", + "tarball": "http://registry.npmjs.org/metro/-/metro-0.3.7.tgz" + } + }, + "keywords": [ + "framework", + "rails", + "node" + ], + "url": "http://registry.npmjs.org/metro/" + }, + "mhash": { + "name": "mhash", + "description": "Provides several hashing algorithms for node.js by binding to mhash. Includes support for 27 different hash algorithms including: md5, md4, md2, sha1, sha256, whirlpool, crc32, etc. MacOS X requires Xcode to be installed.", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "sembiance", + "email": "robert@cosmicrealms.com" + } + ], + "time": { + "modified": "2011-12-07T13:56:15.164Z", + "created": "2011-08-30T23:24:06.439Z", + "0.1.0": "2011-12-07T13:56:15.164Z", + "0.1.1": "2011-12-07T13:56:15.164Z", + "0.1.2": "2011-12-06T15:29:50.461Z", + "0.1.3": "2011-12-06T16:26:11.209Z", + "0.1.4": "2011-12-07T13:56:15.164Z" + }, + "author": { + "name": "Robert Schultz", + "email": "robert@cosmicrealms.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Sembiance/node-mhash.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/mhash/0.1.0", + "0.1.1": "http://registry.npmjs.org/mhash/0.1.1", + "0.1.2": "http://registry.npmjs.org/mhash/0.1.2", + "0.1.3": "http://registry.npmjs.org/mhash/0.1.3", + "0.1.4": "http://registry.npmjs.org/mhash/0.1.4" + }, + "dist": { + "0.1.0": { + "shasum": "4e61121cb45d551993c5a072752108f1951363d0", + "tarball": "http://registry.npmjs.org/mhash/-/mhash-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "90f179ab9663af659d56699598c70d95b7848efb", + "tarball": "http://registry.npmjs.org/mhash/-/mhash-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "54ff40cc9cf1a1f2a0f866b1b45aec3e89c4bf95", + "tarball": "http://registry.npmjs.org/mhash/-/mhash-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "19f6417d176fe0bc4b823175232dbacafec91116", + "tarball": "http://registry.npmjs.org/mhash/-/mhash-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "77b3bcb30b792badf0b8a906ec9d8bb277cc85b8", + "tarball": "http://registry.npmjs.org/mhash/-/mhash-0.1.4.tgz" + } + }, + "keywords": [ + "hash", + "md5", + "sha", + "crc", + "whirlpool", + "haval", + "ripemd", + "gost", + "snefru", + "alder", + "tiger", + "crc32", + "crc32b", + "sha256", + "md4", + "md2" + ], + "url": "http://registry.npmjs.org/mhash/" + }, + "micro": { + "name": "micro", + "description": "Micro is a micro framework along the same lines a Sinatra, running on top of Proton.js (hence JSGI).", + "dist-tags": { + "latest": "0.5.2" + }, + "maintainers": [ + { + "name": "tomyan", + "email": "tom@yandell.me.uk" + }, + { + "name": "richardhodgson", + "email": "contact@rhodgson.co.uk" + } + ], + "time": { + "modified": "2011-11-09T00:23:35.265Z", + "created": "2011-01-30T11:53:42.513Z", + "0.1.4": "2011-01-30T11:53:42.980Z", + "0.1.5": "2011-01-30T11:57:53.355Z", + "0.1.6": "2011-02-11T22:46:51.845Z", + "0.2.0": "2011-02-14T23:24:17.287Z", + "0.3.0": "2011-04-30T07:59:03.901Z", + "0.4.0": "2011-07-02T16:26:37.391Z", + "0.5.0": "2011-07-03T22:14:20.184Z", + "0.5.1": "2011-09-05T19:44:54.301Z", + "0.5.2": "2011-11-09T00:23:35.265Z" + }, + "author": { + "name": "Thomas Yandell", + "email": "tom.deletethis@yandell.me.uk", + "url": "http://tom.yandell.me.uk/blog/" + }, + "repository": { + "type": "git", + "url": "git://github.com/tomyan/micro.js.git" + }, + "versions": { + "0.1.4": "http://registry.npmjs.org/micro/0.1.4", + "0.1.5": "http://registry.npmjs.org/micro/0.1.5", + "0.1.6": "http://registry.npmjs.org/micro/0.1.6", + "0.2.0": "http://registry.npmjs.org/micro/0.2.0", + "0.3.0": "http://registry.npmjs.org/micro/0.3.0", + "0.4.0": "http://registry.npmjs.org/micro/0.4.0", + "0.5.0": "http://registry.npmjs.org/micro/0.5.0", + "0.5.1": "http://registry.npmjs.org/micro/0.5.1", + "0.5.2": "http://registry.npmjs.org/micro/0.5.2" + }, + "dist": { + "0.1.4": { + "shasum": "c82a4c3a1383fd1ac4559eb995be76dc81e0b0e3", + "tarball": "http://registry.npmjs.org/micro/-/micro-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "0bd3ad3c39900d74b0b401216a7e47524f21a01c", + "tarball": "http://registry.npmjs.org/micro/-/micro-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "951e672aed53294a8792b146d7635f6ff7ea8021", + "tarball": "http://registry.npmjs.org/micro/-/micro-0.1.6.tgz" + }, + "0.2.0": { + "shasum": "f998782561b714e4b719a84d4be1b19430f9cd0b", + "tarball": "http://registry.npmjs.org/micro/-/micro-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "3c9923fec40738bbc1e09cf330acfeb5d1cfaf0a", + "tarball": "http://registry.npmjs.org/micro/-/micro-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "395ae511a34636228bde6e999f81ed67ef4994fb", + "tarball": "http://registry.npmjs.org/micro/-/micro-0.4.0.tgz" + }, + "0.5.0": { + "shasum": "f3cae645a75d41a9462845cea9197b99f5218ed3", + "tarball": "http://registry.npmjs.org/micro/-/micro-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "4725b321d970596e724bf5950b6306b151014d30", + "tarball": "http://registry.npmjs.org/micro/-/micro-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "dc604717248c74bff37447145f9b6f236aecf3bd", + "tarball": "http://registry.npmjs.org/micro/-/micro-0.5.2.tgz" + } + }, + "url": "http://registry.npmjs.org/micro/" + }, + "microcache": { + "name": "microcache", + "description": "micro library to handle in-memory cache (works in node+browser)", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "jetienne", + "email": "jerome.etienne@gmail.com" + } + ], + "time": { + "modified": "2011-09-05T09:16:23.166Z", + "created": "2011-09-05T09:16:22.566Z", + "1.0.0": "2011-09-05T09:16:23.166Z" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/microcache/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "d82c3390d68f2fcc2fad59aa974d85f2c0457573", + "tarball": "http://registry.npmjs.org/microcache/-/microcache-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/microcache/" + }, + "microevent": { + "name": "microevent", + "description": "event emitter micro library (works in node+browser)", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "jetienne", + "email": "jerome.etienne@gmail.com" + } + ], + "time": { + "modified": "2011-07-20T11:49:49.983Z", + "created": "2011-07-20T11:49:49.583Z", + "1.0.0": "2011-07-20T11:49:49.983Z" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/microevent/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "aa4a1316e095f5bac5836cb3ea934548e4b41ad3", + "tarball": "http://registry.npmjs.org/microevent/-/microevent-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/microevent/" + }, + "microtest": { + "name": "microtest", + "description": "Unit testing done right.", + "dist-tags": { + "latest": "0.2.3" + }, + "maintainers": [ + { + "name": "felixge", + "email": "felix@debuggable.com" + } + ], + "time": { + "modified": "2011-05-05T21:49:57.446Z", + "created": "2011-04-22T12:38:00.095Z", + "0.0.0": "2011-04-22T12:38:00.748Z", + "0.0.1": "2011-05-05T21:38:58.127Z", + "0.2.1": "2011-05-05T21:40:06.129Z", + "0.2.2": "2011-05-05T21:48:28.848Z", + "0.2.3": "2011-05-05T21:49:57.446Z" + }, + "author": { + "name": "Felix Geisendörfer", + "email": "felix@debuggable.com", + "url": "http://debuggable.com/" + }, + "repository": { + "type": "git", + "url": "git@github.com:felixge/node-microtest.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/microtest/0.0.0", + "0.0.1": "http://registry.npmjs.org/microtest/0.0.1", + "0.2.1": "http://registry.npmjs.org/microtest/0.2.1", + "0.2.2": "http://registry.npmjs.org/microtest/0.2.2", + "0.2.3": "http://registry.npmjs.org/microtest/0.2.3" + }, + "dist": { + "0.0.0": { + "shasum": "1f73f1a0e802cd545cb91777db50f8962404ee77", + "tarball": "http://registry.npmjs.org/microtest/-/microtest-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "a289750ff31dcde6bda949d907f4c41a80c60726", + "tarball": "http://registry.npmjs.org/microtest/-/microtest-0.0.1.tgz" + }, + "0.2.1": { + "shasum": "0411f6c9fea0a1b9aedb800c9a404c1d672fc82b", + "tarball": "http://registry.npmjs.org/microtest/-/microtest-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "c07f5688884a8a199b97f739fd05eb1ffa61d735", + "tarball": "http://registry.npmjs.org/microtest/-/microtest-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "2980c1517c0638563dca9c9fd72e8de29d77f9a5", + "tarball": "http://registry.npmjs.org/microtest/-/microtest-0.2.3.tgz" + } + }, + "url": "http://registry.npmjs.org/microtest/" + }, + "microtime": { + "name": "microtime", + "description": "Get the current time in microseconds", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "wadey", + "email": "wade@wades.im" + } + ], + "time": { + "modified": "2011-11-07T18:47:23.227Z", + "created": "2011-02-11T18:38:55.663Z", + "0.1.0": "2011-02-11T18:38:55.993Z", + "0.1.1": "2011-02-11T20:03:53.605Z", + "0.1.2": "2011-03-01T05:19:27.871Z", + "0.1.3": "2011-03-01T06:22:28.257Z", + "0.1.3-1": "2011-03-30T17:40:27.720Z", + "0.2.0": "2011-11-07T18:47:23.227Z" + }, + "author": { + "name": "Wade Simmons", + "email": "wade@wades.im", + "url": "http://wades.im/mons" + }, + "repository": { + "type": "git", + "url": "git://github.com/wadey/node-microtime.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/microtime/0.1.0", + "0.1.1": "http://registry.npmjs.org/microtime/0.1.1", + "0.1.2": "http://registry.npmjs.org/microtime/0.1.2", + "0.1.3": "http://registry.npmjs.org/microtime/0.1.3", + "0.1.3-1": "http://registry.npmjs.org/microtime/0.1.3-1", + "0.2.0": "http://registry.npmjs.org/microtime/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "336f71c6fb173cd959abb9f318a4461f5e33a45d", + "tarball": "http://registry.npmjs.org/microtime/-/microtime-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "b4844631b60d6d34ea4ca4083ac6cc41d9431ed3", + "tarball": "http://registry.npmjs.org/microtime/-/microtime-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "60f4f4d0ca2e85edba2b9b5c8d845441eb3525a5", + "tarball": "http://registry.npmjs.org/microtime/-/microtime-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "0af8e13262e1a20273b60f86d7e34bac63f14f34", + "tarball": "http://registry.npmjs.org/microtime/-/microtime-0.1.3.tgz" + }, + "0.1.3-1": { + "shasum": "5eb1875ea6a1ecca8b431c41ebe68ee3db4a2585", + "tarball": "http://registry.npmjs.org/microtime/-/microtime-0.1.3-1.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "ff36577312f398ab49209de873819fd6bed3cb73", + "tarball": "http://registry.npmjs.org/microtime/-/microtime-0.1.3-1-0.4-sunos-5.11.tgz" + } + } + }, + "0.2.0": { + "shasum": "45ee5cb061f9948a3ade221e620d5117a8a2bdb4", + "tarball": "http://registry.npmjs.org/microtime/-/microtime-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/microtime/" + }, + "middlefiddle": { + "name": "middlefiddle", + "description": "Middleware as a proxy for HTTP/HTTPS traffic", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "mdp", + "email": "m@mdp.im" + } + ], + "time": { + "modified": "2011-07-15T06:16:53.665Z", + "created": "2011-07-13T15:44:08.274Z", + "0.1.0": "2011-07-13T15:44:08.815Z", + "0.2.0": "2011-07-14T14:01:52.991Z", + "0.2.1": "2011-07-14T17:27:29.870Z", + "0.2.2": "2011-07-15T06:16:53.665Z" + }, + "author": { + "name": "Mark Percival", + "email": "mark@markpercival.us", + "url": "http://markpercival.us" + }, + "repository": { + "type": "git", + "url": "git://github.com/mdp/middlefiddle.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/middlefiddle/0.1.0", + "0.2.0": "http://registry.npmjs.org/middlefiddle/0.2.0", + "0.2.1": "http://registry.npmjs.org/middlefiddle/0.2.1", + "0.2.2": "http://registry.npmjs.org/middlefiddle/0.2.2" + }, + "dist": { + "0.1.0": { + "shasum": "0d3ef2f7ea16d80210216bbdb60c027c7fd2c527", + "tarball": "http://registry.npmjs.org/middlefiddle/-/middlefiddle-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "f76c3bdae2b4d1781c3fc5129bfdc395a56c61f5", + "tarball": "http://registry.npmjs.org/middlefiddle/-/middlefiddle-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "bb4a67517ed67d0bd278e999a15b3698dda8106d", + "tarball": "http://registry.npmjs.org/middlefiddle/-/middlefiddle-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "d1717c13381c1771d74059a9a293589a70386609", + "tarball": "http://registry.npmjs.org/middlefiddle/-/middlefiddle-0.2.2.tgz" + } + }, + "keywords": [ + "proxy", + "middleware", + "connect" + ], + "url": "http://registry.npmjs.org/middlefiddle/" + }, + "middleware": { + "name": "middleware", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "Tim-Smart", + "email": "tim@fostle.com" + } + ], + "time": { + "modified": "2011-06-26T04:20:51.817Z", + "created": "2011-05-27T22:02:01.965Z", + "0.1.0": "2011-05-27T22:02:02.492Z", + "0.1.1": "2011-06-26T04:20:51.817Z" + }, + "author": { + "name": "Tim Smart", + "email": "tim@fostle.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Tim-Smart/node-middleware.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/middleware/0.1.0", + "0.1.1": "http://registry.npmjs.org/middleware/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "f4b29fe10e573c1641506c05d3efbce20d40e918", + "tarball": "http://registry.npmjs.org/middleware/-/middleware-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "75b70f7eb2e71e1cef0a0bb9375472717a2819aa", + "tarball": "http://registry.npmjs.org/middleware/-/middleware-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/middleware/" + }, + "midi": { + "name": "midi", + "description": "MIDI hardware IO", + "dist-tags": { + "latest": "0.4.0" + }, + "maintainers": [ + { + "name": "justinlatimer", + "email": "justin@doublemu.com" + } + ], + "time": { + "modified": "2011-09-02T15:27:19.069Z", + "created": "2011-06-28T12:48:05.018Z", + "0.1.0": "2011-06-28T12:48:06.558Z", + "0.2.0": "2011-08-04T11:52:57.974Z", + "0.3.0": "2011-08-05T11:42:16.089Z", + "0.4.0": "2011-09-02T15:27:19.069Z" + }, + "author": { + "name": "Justin Latimer", + "email": "justin@doublemu.com", + "url": "http://www.justinlatimer.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/justinlatimer/node-midi.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/midi/0.1.0", + "0.2.0": "http://registry.npmjs.org/midi/0.2.0", + "0.3.0": "http://registry.npmjs.org/midi/0.3.0", + "0.4.0": "http://registry.npmjs.org/midi/0.4.0" + }, + "dist": { + "0.1.0": { + "shasum": "a19da848f1ee1746de9aff425352cbf18c25a444", + "tarball": "http://registry.npmjs.org/midi/-/midi-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "9cf7f2350d7ce47cd13035f039ac83f350d6ba14", + "tarball": "http://registry.npmjs.org/midi/-/midi-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "3e7f0f5ea84723ac3af8cfdbae6315b9cd08ff8e", + "tarball": "http://registry.npmjs.org/midi/-/midi-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "dde5f10cbd3ed05fa8c985fb589158ceed8d67fa", + "tarball": "http://registry.npmjs.org/midi/-/midi-0.4.0.tgz" + } + }, + "url": "http://registry.npmjs.org/midi/" + }, + "midi-js": { + "name": "midi-js", + "description": "MIDI hardware IO in pure js, through char devices, fifos, or child process pipes", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "luc.deschenaux", + "email": "luc.deschenaux@freesurf.ch" + } + ], + "time": { + "modified": "2011-08-19T19:41:07.293Z", + "created": "2011-08-18T04:59:30.222Z", + "0.1.0": "2011-08-18T04:59:33.577Z", + "0.1.1": "2011-08-18T06:01:42.043Z", + "0.1.2": "2011-08-19T02:38:45.407Z", + "0.1.3": "2011-08-19T11:29:22.167Z", + "0.1.4": "2011-08-19T19:41:07.293Z" + }, + "author": { + "name": "Luc Deschenaux", + "email": "luc.deschenaux@freesurf.ch" + }, + "repository": { + "type": "git", + "url": "git://git.miprosoft.com/midi-js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/midi-js/0.1.0", + "0.1.1": "http://registry.npmjs.org/midi-js/0.1.1", + "0.1.2": "http://registry.npmjs.org/midi-js/0.1.2", + "0.1.3": "http://registry.npmjs.org/midi-js/0.1.3", + "0.1.4": "http://registry.npmjs.org/midi-js/0.1.4" + }, + "dist": { + "0.1.0": { + "shasum": "6e508d1ead4af677bbf9d8a5a78d244aef86e5d9", + "tarball": "http://registry.npmjs.org/midi-js/-/midi-js-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "eeaa99838bbbb21226397a2eae5a7ecac65719fc", + "tarball": "http://registry.npmjs.org/midi-js/-/midi-js-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "e69e93f2b12da630ade244dd73883fb9ee389efd", + "tarball": "http://registry.npmjs.org/midi-js/-/midi-js-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "a718a4ff9acdf056ce9dba2ea164f94e12682e17", + "tarball": "http://registry.npmjs.org/midi-js/-/midi-js-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "6def739e14a744e64e3871b088c8c48bf6008595", + "tarball": "http://registry.npmjs.org/midi-js/-/midi-js-0.1.4.tgz" + } + }, + "url": "http://registry.npmjs.org/midi-js/" + }, + "migrate": { + "name": "migrate", + "description": "Abstract migration framework for node", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "time": { + "modified": "2011-12-04T17:52:22.963Z", + "created": "2011-04-24T21:20:12.069Z", + "0.0.1": "2011-04-24T21:20:12.413Z", + "0.0.2": "2011-09-09T19:24:22.125Z", + "0.0.3": "2011-09-09T21:02:06.800Z", + "0.0.4": "2011-09-12T21:41:49.903Z", + "0.0.5": "2011-11-07T16:36:15.943Z", + "0.1.0": "2011-12-03T17:38:58.879Z", + "0.1.1": "2011-12-04T17:52:22.963Z" + }, + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "repository": { + "type": "git", + "url": "git://github.com/visionmedia/node-migrate.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/migrate/0.0.1", + "0.0.2": "http://registry.npmjs.org/migrate/0.0.2", + "0.0.3": "http://registry.npmjs.org/migrate/0.0.3", + "0.0.4": "http://registry.npmjs.org/migrate/0.0.4", + "0.0.5": "http://registry.npmjs.org/migrate/0.0.5", + "0.1.0": "http://registry.npmjs.org/migrate/0.1.0", + "0.1.1": "http://registry.npmjs.org/migrate/0.1.1" + }, + "dist": { + "0.0.1": { + "shasum": "b5124b4f9ff89151db02c3048b60c3774e175aee", + "tarball": "http://registry.npmjs.org/migrate/-/migrate-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "4209740a557dae5223c0eb272c4ce92714cc2115", + "tarball": "http://registry.npmjs.org/migrate/-/migrate-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "e466f0e35e16dd457d3ea11da0954b9963ce1fb8", + "tarball": "http://registry.npmjs.org/migrate/-/migrate-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "29d3bc9dee3a5b8e70a7fd4f8aa0c7e45756dc4f", + "tarball": "http://registry.npmjs.org/migrate/-/migrate-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "3223560bc126e73ccf0b39ef8bd77e7d85a05c95", + "tarball": "http://registry.npmjs.org/migrate/-/migrate-0.0.5.tgz" + }, + "0.1.0": { + "shasum": "871a8bfa2f6110f3595d581734ba34861d2a406d", + "tarball": "http://registry.npmjs.org/migrate/-/migrate-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "1eee64dd3e9d25a87f5c3ba9487fe422cda6becc", + "tarball": "http://registry.npmjs.org/migrate/-/migrate-0.1.1.tgz" + } + }, + "keywords": [ + "migrate", + "migrations" + ], + "url": "http://registry.npmjs.org/migrate/" + }, + "mikronode": { + "name": "mikronode", + "description": "Mikrotik API implemented in Node", + "dist-tags": { + "latest": "0.3.3" + }, + "maintainers": [ + { + "name": "trakkasure", + "email": "trakkasure@gmail.com" + } + ], + "time": { + "modified": "2011-07-19T17:13:07.060Z", + "created": "2011-05-19T03:10:27.554Z", + "0.1.0": "2011-05-19T03:10:27.874Z", + "0.2.0": "2011-05-27T15:18:03.828Z", + "0.2.1": "2011-05-31T03:01:25.112Z", + "0.3.0": "2011-07-07T01:58:59.487Z", + "0.3.1": "2011-07-08T15:20:11.462Z", + "0.3.2": "2011-07-18T04:56:02.911Z", + "0.3.3": "2011-07-19T17:13:07.060Z" + }, + "author": { + "name": "Brandon Myers", + "email": "trakkasure@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/trakkasure/mikronode.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/mikronode/0.1.0", + "0.2.0": "http://registry.npmjs.org/mikronode/0.2.0", + "0.2.1": "http://registry.npmjs.org/mikronode/0.2.1", + "0.3.0": "http://registry.npmjs.org/mikronode/0.3.0", + "0.3.1": "http://registry.npmjs.org/mikronode/0.3.1", + "0.3.2": "http://registry.npmjs.org/mikronode/0.3.2", + "0.3.3": "http://registry.npmjs.org/mikronode/0.3.3" + }, + "dist": { + "0.1.0": { + "shasum": "a78db2ef55fdea3b88ed70e610f0b03f5d0083b0", + "tarball": "http://registry.npmjs.org/mikronode/-/mikronode-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "21b1730227f720310825519080e1fe270b7c623f", + "tarball": "http://registry.npmjs.org/mikronode/-/mikronode-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "ebf09f0f87928fb711f0aec91c0afe6f0444152e", + "tarball": "http://registry.npmjs.org/mikronode/-/mikronode-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "5b709c9dfc93e70643342e70da075c0c94fc00b6", + "tarball": "http://registry.npmjs.org/mikronode/-/mikronode-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "8e3825aeb8a12fe849963bd18ab525e036a636d0", + "tarball": "http://registry.npmjs.org/mikronode/-/mikronode-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "828f2aaf6b681b09c8e68453e2c8c81a1d84b6a2", + "tarball": "http://registry.npmjs.org/mikronode/-/mikronode-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "ff82b8ae6646ee4a2ec222f8740fe306375e6189", + "tarball": "http://registry.npmjs.org/mikronode/-/mikronode-0.3.3.tgz" + } + }, + "keywords": [ + "mikrotik", + "socket", + "api" + ], + "url": "http://registry.npmjs.org/mikronode/" + }, + "milk": { + "name": "milk", + "description": "A Mustache implementation written in CoffeeScript", + "dist-tags": { + "latest": "1.2.0" + }, + "maintainers": [ + { + "name": "pvande", + "email": "pvande@gmail.com" + } + ], + "time": { + "modified": "2011-05-09T23:34:49.986Z", + "created": "2011-01-01T22:02:38.643Z", + "0.5.0": "2011-01-01T22:02:39.142Z", + "1.0.0": "2011-03-04T02:00:05.647Z", + "1.0.1": "2011-03-20T18:54:45.109Z", + "1.1.0": "2011-03-27T19:28:49.416Z", + "1.2.0": "2011-04-25T04:16:52.385Z", + "1.1.1": "2011-05-08T03:16:20.411Z" + }, + "author": { + "name": "Pieter van de Bruggen", + "email": "pvande@gmail.com", + "url": "http://pvande.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/pvande/Milk.git" + }, + "versions": { + "0.5.0": "http://registry.npmjs.org/milk/0.5.0", + "1.0.0": "http://registry.npmjs.org/milk/1.0.0", + "1.1.0": "http://registry.npmjs.org/milk/1.1.0", + "1.1.1": "http://registry.npmjs.org/milk/1.1.1", + "1.0.1": "http://registry.npmjs.org/milk/1.0.1", + "1.2.0": "http://registry.npmjs.org/milk/1.2.0" + }, + "dist": { + "0.5.0": { + "shasum": "cc0bc99b1616c8a2b339de83dc37a44aa20798a8", + "tarball": "http://registry.npmjs.org/milk/-/milk-0.5.0.tgz" + }, + "1.0.0": { + "shasum": "b2cdedbc9df6ddd4b857fbca97eeb983988670a2", + "tarball": "http://registry.npmjs.org/milk/-/milk-1.0.0.tgz" + }, + "1.1.0": { + "shasum": "f3f0c2779f9794f1fde817250bc72181ab502c9b", + "tarball": "http://registry.npmjs.org/milk/-/milk-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "446e0af4777277d2897b75149b97757cf1db857b", + "tarball": "http://registry.npmjs.org/milk/-/milk-1.1.1.tgz" + }, + "1.0.1": { + "shasum": "cbc0be03eb8f19883fe0427458ad5ab0799ce009", + "tarball": "http://registry.npmjs.org/milk/-/milk-1.0.1.tgz" + }, + "1.2.0": { + "shasum": "47312d8c69488515ff1fdc93eee881e3bec5f2be", + "tarball": "http://registry.npmjs.org/milk/-/milk-1.2.0.tgz" + } + }, + "keywords": [ + "mustache", + "coffeescript", + "template" + ], + "url": "http://registry.npmjs.org/milk/" + }, + "millstone": { + "name": "millstone", + "description": "Prepares datasources in an MML file for consumption in Mapnik", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "kkaefer", + "email": "kkaefer@gmail.com" + }, + { + "name": "yhahn", + "email": "young@developmentseed.org" + }, + { + "name": "tmcw", + "email": "macwright@gmail.com" + }, + { + "name": "willwhite", + "email": "will@developmentseed.org" + }, + { + "name": "springmeyer", + "email": "dane@dbsgeo.com" + } + ], + "time": { + "modified": "2011-11-17T20:56:24.838Z", + "created": "2011-07-26T15:04:56.689Z", + "0.0.1": "2011-07-26T15:04:57.574Z", + "0.0.2": "2011-07-26T17:27:36.995Z", + "0.0.3": "2011-07-26T20:36:31.373Z", + "0.0.4": "2011-07-27T15:41:52.877Z", + "0.0.5": "2011-07-28T18:45:06.002Z", + "0.0.6": "2011-08-01T15:41:38.059Z", + "0.0.7": "2011-08-03T22:29:42.514Z", + "0.0.8": "2011-08-08T22:03:56.425Z", + "0.1.0": "2011-08-23T21:27:12.993Z", + "0.1.1": "2011-09-07T16:52:25.662Z", + "0.2.0": "2011-10-24T18:38:21.836Z", + "0.2.1": "2011-10-25T02:20:55.593Z", + "0.2.2": "2011-11-01T14:16:38.953Z", + "0.3.0": "2011-11-17T20:56:24.838Z" + }, + "author": { + "name": "MapBox", + "email": "info@mapbox.com", + "url": "http://mapbox.com/" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/millstone/0.0.1", + "0.0.2": "http://registry.npmjs.org/millstone/0.0.2", + "0.0.3": "http://registry.npmjs.org/millstone/0.0.3", + "0.0.4": "http://registry.npmjs.org/millstone/0.0.4", + "0.0.5": "http://registry.npmjs.org/millstone/0.0.5", + "0.0.6": "http://registry.npmjs.org/millstone/0.0.6", + "0.0.7": "http://registry.npmjs.org/millstone/0.0.7", + "0.0.8": "http://registry.npmjs.org/millstone/0.0.8", + "0.1.0": "http://registry.npmjs.org/millstone/0.1.0", + "0.1.1": "http://registry.npmjs.org/millstone/0.1.1", + "0.2.0": "http://registry.npmjs.org/millstone/0.2.0", + "0.2.1": "http://registry.npmjs.org/millstone/0.2.1", + "0.2.2": "http://registry.npmjs.org/millstone/0.2.2", + "0.3.0": "http://registry.npmjs.org/millstone/0.3.0" + }, + "dist": { + "0.0.1": { + "shasum": "f060e4a2267f1330f968332dfa731d6767a56925", + "tarball": "http://registry.npmjs.org/millstone/-/millstone-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "0af0e5ef4a13ff1788a3d4a8fffcdfe4b345e976", + "tarball": "http://registry.npmjs.org/millstone/-/millstone-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "e006e015a1d26416c1df1fc80ad2154e1eed74f7", + "tarball": "http://registry.npmjs.org/millstone/-/millstone-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "8e3628909a6bb09295304ec23dfde6ba96a27c35", + "tarball": "http://registry.npmjs.org/millstone/-/millstone-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "850cdc737381ccce583c00944a5044a825ec78a8", + "tarball": "http://registry.npmjs.org/millstone/-/millstone-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "035ce44a26843155fa3c54d0f375b36b202d5e10", + "tarball": "http://registry.npmjs.org/millstone/-/millstone-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "db45c87f0ac9f32eb45c1054889b1c893fa2cdc4", + "tarball": "http://registry.npmjs.org/millstone/-/millstone-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "035d19dde7550a06ae2c17006a79095fc3fed968", + "tarball": "http://registry.npmjs.org/millstone/-/millstone-0.0.8.tgz" + }, + "0.1.0": { + "shasum": "bcbc3743e09f615e85ebfda8b609ea16fdd7d8fd", + "tarball": "http://registry.npmjs.org/millstone/-/millstone-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "171528605808215313bded7e530fe579e8457489", + "tarball": "http://registry.npmjs.org/millstone/-/millstone-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "69d0ddbc090e118dd7dd0c5cb7edb605c45c9f6a", + "tarball": "http://registry.npmjs.org/millstone/-/millstone-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "be24365520c3d5f332e688d5e874e571838f9b7a", + "tarball": "http://registry.npmjs.org/millstone/-/millstone-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "4bfe409e23c82a18b50d82d1a5974bb12526c861", + "tarball": "http://registry.npmjs.org/millstone/-/millstone-0.2.2.tgz" + }, + "0.3.0": { + "shasum": "7f2149807ab95d0d58b15a7dcc72bbf0569715c5", + "tarball": "http://registry.npmjs.org/millstone/-/millstone-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/millstone/" + }, + "mime": { + "name": "mime", + "description": "A comprehensive library for mime-type mapping", + "dist-tags": { + "latest": "1.2.4" + }, + "maintainers": [ + { + "name": "broofa", + "email": "robert@broofa.com" + }, + { + "name": "bentomas", + "email": "benjamin@benjaminthomas.org" + } + ], + "author": { + "name": "Robert Kieffer", + "email": "robert@broofa.com", + "url": "http://github.com/broofa" + }, + "time": { + "modified": "2011-11-14T23:43:10.754Z", + "created": "2011-01-20T16:27:31.008Z", + "1.0.0": "2011-01-20T16:27:31.008Z", + "1.1.0": "2011-01-20T16:27:31.008Z", + "1.2.1": "2011-01-20T16:27:31.008Z", + "1.2.2": "2011-05-09T11:56:13.470Z", + "1.2.3": "2011-09-07T13:19:46.375Z", + "1.2.4": "2011-09-18T12:00:16.878Z" + }, + "repository": { + "url": "git://github.com/bentomas/node-mime.git", + "type": "git" + }, + "users": { + "dresende": true + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/mime/1.0.0", + "1.1.0": "http://registry.npmjs.org/mime/1.1.0", + "1.2.1": "http://registry.npmjs.org/mime/1.2.1", + "1.2.2": "http://registry.npmjs.org/mime/1.2.2", + "1.2.3": "http://registry.npmjs.org/mime/1.2.3", + "1.2.4": "http://registry.npmjs.org/mime/1.2.4" + }, + "dist": { + "1.0.0": { + "tarball": "http://registry.npmjs.org/mime/-/mime-1.0.0.tgz" + }, + "1.1.0": { + "tarball": "http://registry.npmjs.org/mime/-/mime-1.1.0.tgz" + }, + "1.2.1": { + "shasum": "9876d4db9491091d154288a32893564839b8e04e", + "tarball": "http://registry.npmjs.org/mime/-/mime-1.2.1.tgz" + }, + "1.2.2": { + "shasum": "b9d6355bf53e8d7d56693130e451daff340148cf", + "tarball": "http://registry.npmjs.org/mime/-/mime-1.2.2.tgz" + }, + "1.2.3": { + "shasum": "7717bad7444f42d0c7d98cdc2a7b20068f837b68", + "tarball": "http://registry.npmjs.org/mime/-/mime-1.2.3.tgz" + }, + "1.2.4": { + "shasum": "11b5fdaf29c2509255176b80ad520294f5de92b7", + "tarball": "http://registry.npmjs.org/mime/-/mime-1.2.4.tgz" + } + }, + "keywords": [ + "util", + "mime" + ], + "url": "http://registry.npmjs.org/mime/" + }, + "mime-magic": { + "name": "mime-magic", + "description": "Proper MIME type detection library that wraps the libmagic functionality", + "dist-tags": { + "latest": "0.2.3" + }, + "maintainers": [ + { + "name": "saltwaterc", + "email": "saltwaterc@gmail.com" + } + ], + "time": { + "modified": "2011-12-13T10:20:55.471Z", + "created": "2011-07-28T14:29:04.530Z", + "0.1.0": "2011-07-28T14:29:05.257Z", + "0.1.1": "2011-08-01T15:07:14.852Z", + "0.2.0": "2011-08-11T12:37:55.512Z", + "0.2.1": "2011-09-01T10:16:03.683Z", + "0.2.2": "2011-11-04T12:18:13.380Z", + "0.2.3": "2011-12-13T10:20:55.471Z" + }, + "author": { + "name": "Stefan Rusu", + "url": "http://www.saltwaterc.eu/" + }, + "repository": { + "type": "git", + "url": "git://github.com/SaltwaterC/mime-magic.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/mime-magic/0.1.0", + "0.1.1": "http://registry.npmjs.org/mime-magic/0.1.1", + "0.2.0": "http://registry.npmjs.org/mime-magic/0.2.0", + "0.2.1": "http://registry.npmjs.org/mime-magic/0.2.1", + "0.2.2": "http://registry.npmjs.org/mime-magic/0.2.2", + "0.2.3": "http://registry.npmjs.org/mime-magic/0.2.3" + }, + "dist": { + "0.1.0": { + "shasum": "a5cc7aae15ce866a7c48e661ebcf2d55aa72ea48", + "tarball": "http://registry.npmjs.org/mime-magic/-/mime-magic-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "9c9e69df6426f4d6d097583e2ee3e05bc2c5cbae", + "tarball": "http://registry.npmjs.org/mime-magic/-/mime-magic-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "0a1fefa4f9af9b5fe645ded59ee82acddfaead71", + "tarball": "http://registry.npmjs.org/mime-magic/-/mime-magic-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "86f7bb600c6c13982c8be59b4b4b10fd280314c0", + "tarball": "http://registry.npmjs.org/mime-magic/-/mime-magic-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "4c87a1100a31ff8448362af3c039b151ed036980", + "tarball": "http://registry.npmjs.org/mime-magic/-/mime-magic-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "6ad47ed49531a5fd18d72c2d1f0f1c72e5aa8cf2", + "tarball": "http://registry.npmjs.org/mime-magic/-/mime-magic-0.2.3.tgz" + } + }, + "keywords": [ + "mime", + "magic", + "libmagic", + "file", + "wrapper" + ], + "url": "http://registry.npmjs.org/mime-magic/" + }, + "mimelib": { + "name": "mimelib", + "description": "MIME functions to encode/decode e-mails etc.", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "andris", + "email": "andris@node.ee" + } + ], + "time": { + "modified": "2011-11-17T10:06:44.076Z", + "created": "2011-05-05T09:51:15.825Z", + "0.1.0": "2011-05-05T09:51:16.582Z", + "0.1.1": "2011-05-05T11:33:58.910Z", + "0.1.2": "2011-05-26T20:02:28.465Z", + "0.1.3": "2011-07-26T10:54:16.470Z", + "0.1.4": "2011-11-17T10:06:44.076Z" + }, + "author": { + "name": "Andris Reinman" + }, + "repository": { + "type": "git", + "url": "git://github.com/andris9/mimelib.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/mimelib/0.1.0", + "0.1.1": "http://registry.npmjs.org/mimelib/0.1.1", + "0.1.2": "http://registry.npmjs.org/mimelib/0.1.2", + "0.1.3": "http://registry.npmjs.org/mimelib/0.1.3", + "0.1.4": "http://registry.npmjs.org/mimelib/0.1.4" + }, + "dist": { + "0.1.0": { + "shasum": "002095ae2bf3d3f95140afe2d020a98b7daa89b4", + "tarball": "http://registry.npmjs.org/mimelib/-/mimelib-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "fac01b6c071dabbb8aba26eb78715f673daf3e98", + "tarball": "http://registry.npmjs.org/mimelib/-/mimelib-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "5b0fa1149790d290cdc472ac31ef9ebb64b4a714", + "tarball": "http://registry.npmjs.org/mimelib/-/mimelib-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "69c520400058fbac3fba03d972cb136f0f2fde25", + "tarball": "http://registry.npmjs.org/mimelib/-/mimelib-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "baf000d4db19a1fd4b0870a2f688f4c4ba7cc3e7", + "tarball": "http://registry.npmjs.org/mimelib/-/mimelib-0.1.4.tgz" + } + }, + "keywords": [ + "e-mail", + "mime", + "email" + ], + "url": "http://registry.npmjs.org/mimelib/" + }, + "mimelib-noiconv": { + "name": "mimelib-noiconv", + "description": "MIME functions to encode/decode e-mails etc.", + "dist-tags": { + "latest": "0.1.5" + }, + "maintainers": [ + { + "name": "andris", + "email": "andris@node.ee" + } + ], + "time": { + "modified": "2011-11-14T14:35:29.775Z", + "created": "2011-06-11T05:23:05.134Z", + "0.1.2": "2011-06-11T05:23:05.828Z", + "0.1.3": "2011-07-26T11:00:41.925Z", + "0.1.4": "2011-11-10T18:33:35.847Z", + "0.1.5": "2011-11-14T14:35:29.775Z" + }, + "author": { + "name": "Andris Reinman" + }, + "repository": { + "type": "git", + "url": "git://github.com/andris9/mimelib.git" + }, + "versions": { + "0.1.2": "http://registry.npmjs.org/mimelib-noiconv/0.1.2", + "0.1.3": "http://registry.npmjs.org/mimelib-noiconv/0.1.3", + "0.1.4": "http://registry.npmjs.org/mimelib-noiconv/0.1.4", + "0.1.5": "http://registry.npmjs.org/mimelib-noiconv/0.1.5" + }, + "dist": { + "0.1.2": { + "shasum": "376fc8172cb23fb4f787560e17bc4a783c7ca3bb", + "tarball": "http://registry.npmjs.org/mimelib-noiconv/-/mimelib-noiconv-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "376a56fad2cd86fa2198822619f708d81e28400b", + "tarball": "http://registry.npmjs.org/mimelib-noiconv/-/mimelib-noiconv-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "ac523cb4929f79ffd09f044196ed70b5bf31bdc4", + "tarball": "http://registry.npmjs.org/mimelib-noiconv/-/mimelib-noiconv-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "b6f1a0b94cd2567af5a57a806797ddd4dd1f0f35", + "tarball": "http://registry.npmjs.org/mimelib-noiconv/-/mimelib-noiconv-0.1.5.tgz" + } + }, + "keywords": [ + "e-mail", + "mime", + "email" + ], + "url": "http://registry.npmjs.org/mimelib-noiconv/" + }, + "mimeograph": { + "name": "mimeograph", + "description": "CoffeeScript lib for PDF OCR and text extraction.", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "steelThread", + "email": "sean.mcdaniel@me.com" + } + ], + "time": { + "modified": "2011-05-31T20:37:12.997Z", + "created": "2011-04-28T16:11:15.301Z", + "0.1.5": "2011-04-28T16:11:15.379Z", + "1.0.0": "2011-05-31T18:25:32.719Z" + }, + "author": { + "name": "Sean McDaniel", + "email": "sean.mcdaniel@me.com" + }, + "versions": { + "0.1.5": "http://registry.npmjs.org/mimeograph/0.1.5", + "1.0.0": "http://registry.npmjs.org/mimeograph/1.0.0" + }, + "dist": { + "0.1.5": { + "shasum": "c9e1272061f9f93e7fb1d0fbf02bf71ed554eeb3", + "tarball": "http://registry.npmjs.org/mimeograph/-/mimeograph-0.1.5.tgz" + }, + "1.0.0": { + "shasum": "6572aa754ea549b1cec83f2cc70be0b550ba3231", + "tarball": "http://registry.npmjs.org/mimeograph/-/mimeograph-1.0.0.tgz" + } + }, + "keywords": [ + "node", + "pdf", + "ocr", + "hocr", + "coffeescript", + "resque", + "text extraction", + "indexing" + ], + "url": "http://registry.npmjs.org/mimeograph/" + }, + "mimeparse": { + "name": "mimeparse", + "description": "Basic functions for handling mime-types.", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "kriskowal", + "email": "kris.kowal@cixar.com" + } + ], + "repository": { + "type": "git", + "url": "http://github.com/kriskowal/mimeparse.git" + }, + "versions": { + "0.1.2": "http://registry.npmjs.org/mimeparse/0.1.2", + "0.1.3": "http://registry.npmjs.org/mimeparse/0.1.3" + }, + "dist": { + "0.1.2": { + "tarball": "http://packages:5984/mimeparse/-/mimeparse-0.1.2.tgz" + }, + "0.1.3": { + "tarball": "http://packages:5984/mimeparse/-/mimeparse-0.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/mimeparse/" + }, + "mindstorms_bluetooth": { + "name": "mindstorms_bluetooth", + "description": "A nodejs module for communicating with the Lego NXT Mindstorms brick using the direct commands over bluetooth.", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": null, + "maintainers": [ + { + "name": "davsebamse", + "email": "davsebamse@gmail.com" + } + ], + "time": { + "modified": "2011-11-29T07:44:00.671Z", + "created": "2011-11-29T07:43:59.113Z", + "0.0.1": "2011-11-29T07:44:00.671Z" + }, + "author": { + "name": "David Askirk Fotel", + "email": "davsebamse@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/davsebamse/node-mindstorm-bt.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mindstorms_bluetooth/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "1eee776eaccfbcea9fb7a3e1e556cd6891c1b251", + "tarball": "http://registry.npmjs.org/mindstorms_bluetooth/-/mindstorms_bluetooth-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/mindstorms_bluetooth/" + }, + "mingy": { + "name": "mingy", + "description": "Cheap parsing for your CLI tool and adventure game needs.", + "dist-tags": { + "latest": "0.2.5" + }, + "maintainers": [ + { + "name": "mcantelon", + "email": "mcantelon@gmail.com" + } + ], + "time": { + "modified": "2011-08-30T03:43:50.973Z", + "created": "2011-02-14T18:12:56.573Z", + "0.0.1": "2011-02-14T18:12:56.871Z", + "0.1.1": "2011-02-17T05:00:47.434Z", + "0.1.2": "2011-02-17T16:26:18.613Z", + "0.1.3": "2011-02-18T16:30:53.362Z", + "0.2.0": "2011-02-19T08:19:24.740Z", + "0.2.1": "2011-02-21T20:19:24.470Z", + "0.2.3": "2011-02-28T02:50:51.496Z", + "0.2.4": "2011-08-30T03:19:57.235Z", + "0.2.5": "2011-08-30T03:43:50.973Z" + }, + "author": { + "name": "Mike Cantelon", + "email": "mcantelon@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mcantelon/node-mingy.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mingy/0.0.1", + "0.1.1": "http://registry.npmjs.org/mingy/0.1.1", + "0.1.2": "http://registry.npmjs.org/mingy/0.1.2", + "0.1.3": "http://registry.npmjs.org/mingy/0.1.3", + "0.2.0": "http://registry.npmjs.org/mingy/0.2.0", + "0.2.1": "http://registry.npmjs.org/mingy/0.2.1", + "0.2.3": "http://registry.npmjs.org/mingy/0.2.3", + "0.2.4": "http://registry.npmjs.org/mingy/0.2.4", + "0.2.5": "http://registry.npmjs.org/mingy/0.2.5" + }, + "dist": { + "0.0.1": { + "shasum": "602202ae9665b2be2bbaa4f92d76791fcf892b40", + "tarball": "http://registry.npmjs.org/mingy/-/mingy-0.0.1.tgz" + }, + "0.1.1": { + "shasum": "dc54218ec1b47848b8130515628ae7ee01dc33c8", + "tarball": "http://registry.npmjs.org/mingy/-/mingy-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "de70c702df7e6c21f06ebec55e86bc1c0a67e98b", + "tarball": "http://registry.npmjs.org/mingy/-/mingy-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "c57b089bc621398a973dc14c3abe913a055a5dcb", + "tarball": "http://registry.npmjs.org/mingy/-/mingy-0.1.3.tgz" + }, + "0.2.0": { + "shasum": "64b8a06ea4d568f6dc5bd5733799256367885bcc", + "tarball": "http://registry.npmjs.org/mingy/-/mingy-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "be2ef794dd65180fb7603b417d414a7818f31742", + "tarball": "http://registry.npmjs.org/mingy/-/mingy-0.2.1.tgz" + }, + "0.2.3": { + "shasum": "cc9bed7add5251a7232f051cfa6c5f608138792c", + "tarball": "http://registry.npmjs.org/mingy/-/mingy-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "35285f14c1d88ee9e84a0fe87f80505a34cac25b", + "tarball": "http://registry.npmjs.org/mingy/-/mingy-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "550a661c687659a5441b1c815c59b9bd730917aa", + "tarball": "http://registry.npmjs.org/mingy/-/mingy-0.2.5.tgz" + } + }, + "url": "http://registry.npmjs.org/mingy/" + }, + "mini-lzo-wrapper": { + "name": "mini-lzo-wrapper", + "description": "A very low-level wrapper around the minilzo fast compression library", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "lfdoherty", + "email": "lfdoherty@gmail.com" + } + ], + "time": { + "modified": "2011-04-28T06:16:22.279Z", + "created": "2011-04-28T06:16:21.743Z", + "0.1.0": "2011-04-28T06:16:22.279Z" + }, + "author": { + "name": "Liam Doherty" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/mini-lzo-wrapper/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "ba2999fb38a22b1d5b44e6e97fe0916d50e89336", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.10-linux-2.6.35-29-generic": { + "shasum": "6a564401f30ab5c42acc446374dbf6839b0f59ad", + "tarball": "http://registry.npmjs.org/mini-lzo-wrapper/-/mini-lzo-wrapper-0.1.0-0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.10-linux-2.6.35-29-generic.tgz" + } + }, + "tarball": "http://registry.npmjs.org/mini-lzo-wrapper/-/mini-lzo-wrapper-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/mini-lzo-wrapper/" + }, + "miniee": { + "name": "miniee", + "description": "An EventEmitter-like client and server side library for routing events w/regexps", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "mixu", + "email": "mixu@mixu.net" + } + ], + "time": { + "modified": "2011-09-14T23:56:39.923Z", + "created": "2011-08-18T01:31:17.133Z", + "0.0.1": "2011-08-18T01:31:20.390Z", + "0.0.2": "2011-09-14T23:56:39.923Z" + }, + "author": { + "name": "Mikito Takada", + "email": "mixu@mixu.net", + "url": "http://blog.mixu.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/mixu/miniee.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/miniee/0.0.1", + "0.0.2": "http://registry.npmjs.org/miniee/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "3a77e300c57f615c5ab0b5a4de9ea05ad13b7079", + "tarball": "http://registry.npmjs.org/miniee/-/miniee-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "7ab7b570f2c276f219a3a9f8e879654f4b38d47e", + "tarball": "http://registry.npmjs.org/miniee/-/miniee-0.0.2.tgz" + } + }, + "keywords": [ + "eventemitter" + ], + "url": "http://registry.npmjs.org/miniee/" + }, + "minifyjs": { + "name": "minifyjs", + "description": "A node-based javascript minifier/beautifier.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "clarkf", + "email": "clark.fischer@gmail.com" + } + ], + "author": { + "name": "Clark Fischer" + }, + "repository": { + "type": "git", + "url": "git://github.com/clarkf/minifyjs.git" + }, + "time": { + "modified": "2011-09-14T03:35:48.545Z", + "created": "2011-01-21T03:30:19.218Z", + "0.0.1": "2011-01-21T03:30:19.218Z", + "0.0.5": "2011-01-21T03:30:19.218Z", + "0.0.6": "2011-01-21T03:30:19.218Z", + "0.1.0": "2011-09-14T03:35:48.545Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/minifyjs/0.0.1", + "0.0.5": "http://registry.npmjs.org/minifyjs/0.0.5", + "0.0.6": "http://registry.npmjs.org/minifyjs/0.0.6", + "0.1.0": "http://registry.npmjs.org/minifyjs/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "8dc757d209b8a0803397148201e1c4b9b8385598", + "tarball": "http://registry.npmjs.org/minifyjs/-/minifyjs-0.0.1.tgz" + }, + "0.0.5": { + "shasum": "7464914cf83cdf87e4fa1c976ea8b2223126456e", + "tarball": "http://registry.npmjs.org/minifyjs/-/minifyjs-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "ff57e2066a9bfa1f45880e540bc6d658776d7eae", + "tarball": "http://registry.npmjs.org/minifyjs/-/minifyjs-0.0.6.tgz" + }, + "0.1.0": { + "shasum": "3eb79e0ba40c2799b5c3c9cdb9b0d35374f12168", + "tarball": "http://registry.npmjs.org/minifyjs/-/minifyjs-0.1.0.tgz" + } + }, + "keywords": [ + "minify", + "minifier", + "min", + "minification", + "uglify", + "gcc", + "closure", + "yui" + ], + "url": "http://registry.npmjs.org/minifyjs/" + }, + "minimal": { + "name": "minimal", + "description": "minimal.js: HTML+JSON template engine", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "ruidlopes", + "email": "ruidlopes@gmail.com" + } + ], + "time": { + "modified": "2011-08-03T12:40:46.992Z", + "created": "2011-02-22T21:57:11.983Z", + "0.1.2": "2011-02-22T21:57:12.459Z", + "0.2.1": "2011-08-03T12:40:46.992Z" + }, + "author": { + "name": "Rui Lopes", + "email": "ruidlopes@gmail.com", + "url": "http://ruidlopes.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/ruidlopes/minimal.js.git" + }, + "versions": { + "0.1.2": "http://registry.npmjs.org/minimal/0.1.2", + "0.2.1": "http://registry.npmjs.org/minimal/0.2.1" + }, + "dist": { + "0.1.2": { + "shasum": "7528508c3010e6bef2e23e10aa9857374c423efb", + "tarball": "http://registry.npmjs.org/minimal/-/minimal-0.1.2.tgz" + }, + "0.2.1": { + "shasum": "564413be7858958e96780c2f79d17f64383416d1", + "tarball": "http://registry.npmjs.org/minimal/-/minimal-0.2.1.tgz" + } + }, + "url": "http://registry.npmjs.org/minimal/" + }, + "minimal-test": { + "name": "minimal-test", + "description": "A cli unit testing library", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "shekhei", + "email": "shekhei@gmail.com" + } + ], + "time": { + "modified": "2011-08-28T03:21:15.727Z", + "created": "2011-08-14T10:24:23.792Z", + "0.0.1": "2011-08-14T10:24:25.142Z", + "0.0.2": "2011-08-14T10:40:43.252Z", + "0.0.3": "2011-08-28T03:21:15.727Z" + }, + "author": { + "name": "Wong Shek Hei Felix", + "email": "shekhei@gmail.com", + "url": "www.shekhei.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/shekhei/minimal-test.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/minimal-test/0.0.1", + "0.0.2": "http://registry.npmjs.org/minimal-test/0.0.2", + "0.0.3": "http://registry.npmjs.org/minimal-test/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "67d4f4372a5e9fd2a875d7a455aa9810a66ada2d", + "tarball": "http://registry.npmjs.org/minimal-test/-/minimal-test-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f2d21f983957a69281a2cc781c7f4d8c2178218c", + "tarball": "http://registry.npmjs.org/minimal-test/-/minimal-test-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "64c778e5c4f567d51720ef53c73772828aff8b6c", + "tarball": "http://registry.npmjs.org/minimal-test/-/minimal-test-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/minimal-test/" + }, + "minimatch": { + "name": "minimatch", + "description": "a glob matcher in javascript", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "time": { + "modified": "2011-12-14T02:32:05.891Z", + "created": "2011-07-16T08:52:46.242Z", + "0.0.1": "2011-07-16T08:52:46.751Z", + "0.0.2": "2011-07-16T17:57:12.490Z", + "0.0.4": "2011-07-29T19:13:01.148Z", + "0.0.5": "2011-12-14T02:32:05.891Z" + }, + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/isaacs/minimatch.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/minimatch/0.0.1", + "0.0.2": "http://registry.npmjs.org/minimatch/0.0.2", + "0.0.4": "http://registry.npmjs.org/minimatch/0.0.4", + "0.0.5": "http://registry.npmjs.org/minimatch/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "33b549784ce98eceb7a86329c11a1cd02cd00ce9", + "tarball": "http://registry.npmjs.org/minimatch/-/minimatch-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "582b28fed87d3bbe9f9afc8c9490f4eb3b08ba91", + "tarball": "http://registry.npmjs.org/minimatch/-/minimatch-0.0.2.tgz" + }, + "0.0.4": { + "shasum": "791b9e5e6572b789cfda6f60e095614cbb7504b6", + "tarball": "http://registry.npmjs.org/minimatch/-/minimatch-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "96bb490bbd3ba6836bbfac111adf75301b1584de", + "tarball": "http://registry.npmjs.org/minimatch/-/minimatch-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/minimatch/" + }, + "MiniMVC": { + "name": "MiniMVC", + "description": "A lightweight MVC app that excels at code organization", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "jakobo", + "email": "jakob@felocity.com" + } + ], + "time": { + "modified": "2011-10-09T17:09:15.732Z", + "created": "2011-10-09T17:09:14.455Z", + "0.0.1": "2011-10-09T17:09:15.732Z" + }, + "author": { + "name": "Jakob Heuser", + "email": "jakob@felocity.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Jakobo/MiniMVC.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/MiniMVC/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "c18e51c71591eb0399f495db0f6c590c14546b08", + "tarball": "http://registry.npmjs.org/MiniMVC/-/MiniMVC-0.0.1.tgz" + } + }, + "keywords": [ + "mvc", + "lightweight", + "organize" + ], + "url": "http://registry.npmjs.org/MiniMVC/" + }, + "minion": { + "name": "minion", + "description": "Simple clustering for node 0.6.x", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": null, + "maintainers": [ + { + "name": "mbthomas", + "email": "mbthomas@gmail.com" + } + ], + "time": { + "modified": "2011-11-23T21:48:48.382Z", + "created": "2011-11-23T21:48:45.786Z", + "0.0.1": "2011-11-23T21:48:48.382Z" + }, + "author": { + "name": "Mike Thomas", + "email": "mike@scopely.com" + }, + "repository": { + "url": "git@github.com:scopely/minion.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/minion/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "afdd1abece400b4f31be3240a716d082a4806701", + "tarball": "http://registry.npmjs.org/minion/-/minion-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/minion/" + }, + "miniqueue": { + "name": "miniqueue", + "description": "A simple in-memory queue for easy sequential processing", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "hsch", + "email": "hendrik.schnepel@gmail.com" + } + ], + "time": { + "modified": "2011-10-31T21:42:14.597Z", + "created": "2011-10-31T21:42:12.725Z", + "0.0.1": "2011-10-31T21:42:14.597Z" + }, + "author": { + "name": "Hendrik Schnepel" + }, + "repository": { + "type": "git", + "url": "git://github.com/hsch/node-miniqueue.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/miniqueue/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "b6bd0b376a4fb6ee4fa4557e9f49eb7e4bffe78b", + "tarball": "http://registry.npmjs.org/miniqueue/-/miniqueue-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/miniqueue/" + }, + "minirpc": { + "name": "minirpc", + "description": "Simple RPC. Call node functions from the browser.", + "dist-tags": { + "latest": "0.0.41" + }, + "maintainers": [ + { + "name": "aldobucchi", + "email": "aldo.bucchi@gmail.com" + } + ], + "time": { + "modified": "2011-04-13T08:46:53.838Z", + "created": "2011-02-24T06:22:32.781Z", + "0.0.1": "2011-02-24T06:22:33.358Z", + "0.0.2": "2011-02-25T22:18:20.831Z", + "0.0.3": "2011-02-28T14:44:03.277Z", + "0.0.4": "2011-03-03T04:51:36.286Z", + "0.0.41": "2011-04-13T08:46:53.838Z" + }, + "author": { + "name": "Aldo Bucchi", + "email": "aldo.bucchi@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/aldonline/minirpc.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/minirpc/0.0.1", + "0.0.2": "http://registry.npmjs.org/minirpc/0.0.2", + "0.0.3": "http://registry.npmjs.org/minirpc/0.0.3", + "0.0.4": "http://registry.npmjs.org/minirpc/0.0.4", + "0.0.41": "http://registry.npmjs.org/minirpc/0.0.41" + }, + "dist": { + "0.0.1": { + "shasum": "31c1cd6deade4ad5f28b7398322d56742635a123", + "tarball": "http://registry.npmjs.org/minirpc/-/minirpc-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "e92effe344141be851e15380675f1b7834901b16", + "tarball": "http://registry.npmjs.org/minirpc/-/minirpc-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "a50ecf1af78f4ba8b92eedf1b773483c72ba9e14", + "tarball": "http://registry.npmjs.org/minirpc/-/minirpc-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "25b483b8211bdccecad5e0722a1e1082735d8f4a", + "tarball": "http://registry.npmjs.org/minirpc/-/minirpc-0.0.4.tgz" + }, + "0.0.41": { + "shasum": "8847a7db960f22d76fd94d5eac68fb4eace47ee6", + "tarball": "http://registry.npmjs.org/minirpc/-/minirpc-0.0.41.tgz" + } + }, + "keywords": [ + "rpc", + "jsonrpc" + ], + "url": "http://registry.npmjs.org/minirpc/" + }, + "ministore": { + "name": "ministore", + "description": "ministore is a mini JSON file based key-value store", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "stagas", + "email": "gstagas@gmail.com" + } + ], + "time": { + "modified": "2011-08-01T10:58:45.191Z", + "created": "2011-06-01T11:39:54.496Z", + "0.0.1": "2011-06-01T11:39:55.179Z", + "0.0.2": "2011-06-06T12:43:22.185Z", + "0.0.3": "2011-06-16T16:00:08.259Z", + "0.0.4": "2011-06-16T19:18:15.530Z", + "0.0.5": "2011-08-01T10:58:45.191Z" + }, + "author": { + "name": "George Stagas", + "email": "gstagas@gmail.com", + "url": "http://stagas.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/stagas/ministore.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ministore/0.0.1", + "0.0.2": "http://registry.npmjs.org/ministore/0.0.2", + "0.0.3": "http://registry.npmjs.org/ministore/0.0.3", + "0.0.4": "http://registry.npmjs.org/ministore/0.0.4", + "0.0.5": "http://registry.npmjs.org/ministore/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "67f197527fba37d6d1cae4ee9708b56156cd7d48", + "tarball": "http://registry.npmjs.org/ministore/-/ministore-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "3e2a03116953e3583e9ed045a1f59086eed836f2", + "tarball": "http://registry.npmjs.org/ministore/-/ministore-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "ac6a7de1a05dca72f31387b8d0e7e4fef2146eba", + "tarball": "http://registry.npmjs.org/ministore/-/ministore-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "f4f9d9a7a16e1a4176de96f011f3c6d7e0caa2e1", + "tarball": "http://registry.npmjs.org/ministore/-/ministore-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "b4d9ca8ec10b45e218794eb21700ad1647924cbc", + "tarball": "http://registry.npmjs.org/ministore/-/ministore-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/ministore/" + }, + "minitest": { + "name": "minitest", + "description": "A port of Ruby's MiniTest::Unit", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "deanh", + "email": "dean@ero.com" + } + ], + "time": { + "modified": "2011-08-13T16:08:48.878Z", + "created": "2011-08-10T18:08:39.584Z", + "0.1.0": "2011-08-10T18:08:43.164Z", + "0.1.1": "2011-08-10T18:11:33.362Z", + "0.1.2": "2011-08-10T18:21:16.212Z", + "0.1.3": "2011-08-10T19:41:20.892Z", + "0.1.4": "2011-08-12T23:23:56.288Z", + "0.2.0": "2011-08-13T16:08:48.878Z" + }, + "author": { + "name": "H. Dean Hudson", + "email": "dean@ero.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/deanh/minitest.js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/minitest/0.1.0", + "0.1.1": "http://registry.npmjs.org/minitest/0.1.1", + "0.1.2": "http://registry.npmjs.org/minitest/0.1.2", + "0.1.3": "http://registry.npmjs.org/minitest/0.1.3", + "0.1.4": "http://registry.npmjs.org/minitest/0.1.4", + "0.2.0": "http://registry.npmjs.org/minitest/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "e9c2c085a2fce938a2bc9cd2b749af4f130e8a1e", + "tarball": "http://registry.npmjs.org/minitest/-/minitest-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "818dedcf069d1ae76875ae22bab81c60ef6b3777", + "tarball": "http://registry.npmjs.org/minitest/-/minitest-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "637e5808d5a50ab04b17b1eae3766f308c8fede3", + "tarball": "http://registry.npmjs.org/minitest/-/minitest-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "b477c83648d0a3d418287366752eeb01937f9b96", + "tarball": "http://registry.npmjs.org/minitest/-/minitest-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "c06c4c1e3b111572e13403d16a11ebcfc8a950ea", + "tarball": "http://registry.npmjs.org/minitest/-/minitest-0.1.4.tgz" + }, + "0.2.0": { + "shasum": "840261233fbe1303e8dd7a76b49fa41fd2a376fe", + "tarball": "http://registry.npmjs.org/minitest/-/minitest-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/minitest/" + }, + "miniweb": { + "name": "miniweb", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "mountain", + "email": "mingli.yuan@gmail.com" + } + ], + "time": { + "modified": "2011-04-06T04:07:03.374Z", + "created": "2011-04-06T04:07:02.347Z", + "0.0.5": "2011-04-06T04:07:03.374Z" + }, + "author": { + "name": "Mingli Yuan", + "email": "mingli.yuan@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mountain/miniweb.git" + }, + "versions": { + "0.0.5": "http://registry.npmjs.org/miniweb/0.0.5" + }, + "dist": { + "0.0.5": { + "shasum": "9d15aafe97cd07ad345e10e7f0adb282349d7da6", + "tarball": "http://registry.npmjs.org/miniweb/-/miniweb-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/miniweb/" + }, + "minj": { + "name": "minj", + "description": "A js minifier middleware for connect/express", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "bengourley", + "email": "benleighgourley@gmail.com" + } + ], + "time": { + "modified": "2011-10-12T13:07:29.785Z", + "created": "2011-05-14T00:34:04.232Z", + "0.0.1": "2011-05-14T00:34:04.827Z", + "0.0.2": "2011-05-18T23:19:09.790Z", + "0.0.3": "2011-05-23T21:05:29.740Z", + "0.0.4": "2011-05-25T00:22:49.446Z", + "0.0.5": "2011-10-12T13:07:29.785Z" + }, + "author": { + "name": "Ben Gourley" + }, + "repository": { + "type": "git", + "url": "git://github.com/bengourley/minj.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/minj/0.0.1", + "0.0.2": "http://registry.npmjs.org/minj/0.0.2", + "0.0.3": "http://registry.npmjs.org/minj/0.0.3", + "0.0.4": "http://registry.npmjs.org/minj/0.0.4", + "0.0.5": "http://registry.npmjs.org/minj/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "5d0afd4fd4ae04fc82241f8ded624ec07e39db4c", + "tarball": "http://registry.npmjs.org/minj/-/minj-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f71b6b05ba7120f78be0d487b57693bb3ee278aa", + "tarball": "http://registry.npmjs.org/minj/-/minj-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "a34dfa9642c98cb2c7419169bfe8678997ac6f5d", + "tarball": "http://registry.npmjs.org/minj/-/minj-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "fccbb28bbb8f18bd01d7ccb1b66773fa64982b68", + "tarball": "http://registry.npmjs.org/minj/-/minj-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "cad4eca4d80a55c7910d69e7d31d2dea31e0490e", + "tarball": "http://registry.npmjs.org/minj/-/minj-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/minj/" + }, + "minotaur": { + "name": "minotaur", + "description": "Cross browser, long poll server using JSONP communication with clients.", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "yojimbo87", + "email": "bosak.tomas@gmail.com" + } + ], + "time": { + "modified": "2011-12-05T16:43:38.875Z", + "created": "2011-05-13T19:49:59.605Z", + "0.1.0-beta": "2011-05-13T19:50:00.246Z", + "0.1.1": "2011-05-19T07:56:06.599Z", + "0.1.2": "2011-05-19T11:59:37.705Z", + "0.1.3": "2011-07-13T10:07:51.465Z", + "0.1.4": "2011-07-14T20:00:29.775Z", + "0.1.5": "2011-07-18T08:33:37.977Z", + "0.1.6": "2011-07-18T08:51:32.290Z", + "0.1.7": "2011-07-27T19:33:53.811Z", + "0.1.8": "2011-08-01T09:28:35.710Z", + "0.1.9": "2011-08-05T18:32:13.774Z", + "0.2.0": "2011-10-23T11:49:38.888Z", + "0.2.1": "2011-12-05T16:43:38.875Z" + }, + "author": { + "name": "Tomas Bosak", + "email": "bosak.tomas@gmail.com", + "url": "http://yojimbo87.github.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/yojimbo87/minotaur.git" + }, + "versions": { + "0.1.0-beta": "http://registry.npmjs.org/minotaur/0.1.0-beta", + "0.1.1": "http://registry.npmjs.org/minotaur/0.1.1", + "0.1.2": "http://registry.npmjs.org/minotaur/0.1.2", + "0.1.3": "http://registry.npmjs.org/minotaur/0.1.3", + "0.1.4": "http://registry.npmjs.org/minotaur/0.1.4", + "0.1.5": "http://registry.npmjs.org/minotaur/0.1.5", + "0.1.6": "http://registry.npmjs.org/minotaur/0.1.6", + "0.1.7": "http://registry.npmjs.org/minotaur/0.1.7", + "0.1.8": "http://registry.npmjs.org/minotaur/0.1.8", + "0.1.9": "http://registry.npmjs.org/minotaur/0.1.9", + "0.2.0": "http://registry.npmjs.org/minotaur/0.2.0", + "0.2.1": "http://registry.npmjs.org/minotaur/0.2.1" + }, + "dist": { + "0.1.0-beta": { + "shasum": "6cef0a21040524e57a1f44823e2009da7eeb98e0", + "tarball": "http://registry.npmjs.org/minotaur/-/minotaur-0.1.0-beta.tgz" + }, + "0.1.1": { + "shasum": "a0d2b1f629dede2f85dff3ee6c43f5244c2911e1", + "tarball": "http://registry.npmjs.org/minotaur/-/minotaur-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "e52a69d52b480f009cd290112fbea5c87d95797e", + "tarball": "http://registry.npmjs.org/minotaur/-/minotaur-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "86d689459cbd58247bb12849ca08d954a4639e6d", + "tarball": "http://registry.npmjs.org/minotaur/-/minotaur-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "2b7232c8fa9c5d03e94c39adb5076ee940b3665e", + "tarball": "http://registry.npmjs.org/minotaur/-/minotaur-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "3621c0379f110df669413ee0ada6141bc2c9c4d3", + "tarball": "http://registry.npmjs.org/minotaur/-/minotaur-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "49611aca9e48003ac54b8b3f0c4075575e101097", + "tarball": "http://registry.npmjs.org/minotaur/-/minotaur-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "8546a786c6c5203614fc630cc60f382facab54e4", + "tarball": "http://registry.npmjs.org/minotaur/-/minotaur-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "18704c1d75e9f82f12807f7462fc9b6b53d83cf4", + "tarball": "http://registry.npmjs.org/minotaur/-/minotaur-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "df75f5ff2f2636ed7738b9aab9e4822d0650bf96", + "tarball": "http://registry.npmjs.org/minotaur/-/minotaur-0.1.9.tgz" + }, + "0.2.0": { + "shasum": "c54c34d586eeb46a3f3f0c62c78c8e5404a89add", + "tarball": "http://registry.npmjs.org/minotaur/-/minotaur-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "e1787639afb26643474370c0b3ec7e43074c283b", + "tarball": "http://registry.npmjs.org/minotaur/-/minotaur-0.2.1.tgz" + } + }, + "keywords": [ + "long poll", + "server", + "jsonp" + ], + "url": "http://registry.npmjs.org/minotaur/" + }, + "minus": { + "name": "minus", + "description": "Express for minimalists. Adds a layer of simplicity on top of the Express framework.", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "natehunzaker", + "email": "nate.hunzaker@gmail.com" + } + ], + "time": { + "modified": "2011-10-01T00:17:32.766Z", + "created": "2011-09-29T23:50:22.850Z", + "0.0.1": "2011-09-29T23:50:23.536Z", + "0.0.2": "2011-09-30T12:13:23.326Z", + "0.0.3": "2011-10-01T00:17:32.766Z" + }, + "author": { + "name": "Nate Hunzaker", + "email": "nate.hunzaker@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/nhunzaker/Minus.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/minus/0.0.1", + "0.0.2": "http://registry.npmjs.org/minus/0.0.2", + "0.0.3": "http://registry.npmjs.org/minus/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "adced77682d7e2003e4a3aeeabd660b52a3186e7", + "tarball": "http://registry.npmjs.org/minus/-/minus-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "37653b8ad636f6c7a3cd92fa4baf1b806d344ffe", + "tarball": "http://registry.npmjs.org/minus/-/minus-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "a3443d2512fa983582dc75b16c0da1af5544ccb0", + "tarball": "http://registry.npmjs.org/minus/-/minus-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/minus/" + }, + "mirror": { + "name": "mirror", + "dist-tags": { + "latest": "0.3.3" + }, + "maintainers": [ + { + "name": "kkaefer", + "email": "kkaefer@gmail.com" + }, + { + "name": "yhahn", + "email": "young@developmentseed.org" + }, + { + "name": "tmcw", + "email": "macwright@gmail.com" + }, + { + "name": "willwhite", + "email": "will@developmentseed.org" + }, + { + "name": "springmeyer", + "email": "dane@dbsgeo.com" + }, + { + "name": "adrianrossouw", + "email": "adrian@developmentseed.org" + }, + { + "name": "ianshward", + "email": "ian@developmentseed.org" + } + ], + "time": { + "modified": "2011-09-12T18:49:20.968Z", + "created": "2011-05-02T21:03:13.602Z", + "0.1.0": "2011-05-02T21:03:13.798Z", + "0.2.0": "2011-05-11T18:15:01.344Z", + "0.2.1": "2011-05-12T15:19:57.692Z", + "0.3.0": "2011-06-02T18:22:15.870Z", + "0.3.1": "2011-06-02T21:17:29.028Z", + "0.3.2": "2011-07-01T16:02:49.257Z", + "0.3.3": "2011-09-12T18:49:20.968Z" + }, + "author": { + "name": "Development Seed", + "email": "info@developmentseed.org", + "url": "http://www.developmentseed.org" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/mirror/0.1.0", + "0.2.0": "http://registry.npmjs.org/mirror/0.2.0", + "0.2.1": "http://registry.npmjs.org/mirror/0.2.1", + "0.3.0": "http://registry.npmjs.org/mirror/0.3.0", + "0.3.1": "http://registry.npmjs.org/mirror/0.3.1", + "0.3.2": "http://registry.npmjs.org/mirror/0.3.2", + "0.3.3": "http://registry.npmjs.org/mirror/0.3.3" + }, + "dist": { + "0.1.0": { + "shasum": "b4ad9f066d0a39188ebc2ad9ba7646e6b6b80ba7", + "tarball": "http://registry.npmjs.org/mirror/-/mirror-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "b925f9279fa35eaa7a1d3b7284fc1c19b1b5da0c", + "tarball": "http://registry.npmjs.org/mirror/-/mirror-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "8023f2b5bdbc4299e1e423f4e88da6e6509adce9", + "tarball": "http://registry.npmjs.org/mirror/-/mirror-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "c3ebb58ab60e644b650ce137988cad3630ef9dc2", + "tarball": "http://registry.npmjs.org/mirror/-/mirror-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "afd1e49c967c59da49eb532ad4113f18e0d26d63", + "tarball": "http://registry.npmjs.org/mirror/-/mirror-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "e2de622974e79223db4ccfcc663b8fd64af2ef84", + "tarball": "http://registry.npmjs.org/mirror/-/mirror-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "7e4957407b29f3247d947fc39837ef69b975ebce", + "tarball": "http://registry.npmjs.org/mirror/-/mirror-0.3.3.tgz" + } + }, + "url": "http://registry.npmjs.org/mirror/" + }, + "misao-chan": { + "name": "misao-chan", + "description": "Cutest IRC bot ever", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "lorentz", + "email": "lorentz@majestika.net" + } + ], + "time": { + "modified": "2011-06-14T14:32:48.254Z", + "created": "2011-01-29T04:32:27.522Z", + "0.0.1": "2011-01-29T04:32:28.496Z", + "0.0.2": "2011-06-14T12:39:44.646Z" + }, + "author": { + "name": "Lorentz Kim", + "email": "lorentz@majestika.net", + "url": "http://lorentz.majestika.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/lorentzkim/misao-chan.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/misao-chan/0.0.1", + "0.0.2": "http://registry.npmjs.org/misao-chan/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "a45f7047c15493c540db4cec59db27fb63a02bba", + "tarball": "http://registry.npmjs.org/misao-chan/-/misao-chan-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "95006d0ce5598fb4b0b322901842529b55e3fa47", + "tarball": "http://registry.npmjs.org/misao-chan/-/misao-chan-0.0.2.tgz" + } + }, + "keywords": [ + "irc", + "bot", + "plugin" + ], + "url": "http://registry.npmjs.org/misao-chan/" + }, + "misc-scripts": { + "name": "misc-scripts", + "description": "TODO description", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "andrewschaaf", + "email": "andrew@andrewschaaf.com" + } + ], + "time": { + "modified": "2011-10-04T15:10:35.204Z", + "created": "2011-10-04T15:10:34.970Z", + "0.0.1": "2011-10-04T15:10:35.204Z" + }, + "author": { + "name": "Andrew Schaaf", + "email": "andrew@andrewschaaf.com", + "url": "http://andrewschaaf.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/TODO/TODO.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/misc-scripts/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "d21ee59a296e9fa161d08c18639630d8e5d28f05", + "tarball": "http://registry.npmjs.org/misc-scripts/-/misc-scripts-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/misc-scripts/" + }, + "mite.node": { + "name": "mite.node", + "description": "mite.node is a library for interacting with the RESTful mite.api", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "gr2m", + "email": "gregor@yo.lk" + } + ], + "author": { + "name": "Gregor Martynus", + "email": "gregor@yo.lk" + }, + "repository": { + "type": "git", + "url": "http://github.com/gr2m/mite.node.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mite.node/0.0.1", + "0.0.2": "http://registry.npmjs.org/mite.node/0.0.2", + "0.0.3": "http://registry.npmjs.org/mite.node/0.0.3", + "0.0.4": "http://registry.npmjs.org/mite.node/0.0.4", + "0.0.5": "http://registry.npmjs.org/mite.node/0.0.5", + "0.0.6": "http://registry.npmjs.org/mite.node/0.0.6" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/mite.node/-/mite.node-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/mite.node/-/mite.node-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/mite.node/-/mite.node-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://registry.npmjs.org/mite.node/-/mite.node-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://registry.npmjs.org/mite.node/-/mite.node-0.0.5.tgz" + }, + "0.0.6": { + "tarball": "http://registry.npmjs.org/mite.node/-/mite.node-0.0.6.tgz" + } + }, + "url": "http://registry.npmjs.org/mite.node/" + }, + "mitm-proxy": { + "name": "mitm-proxy", + "description": "A node module to create a http and https man-in-the-middle proxy", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "# node-mitm-proxy\n\nCreates a http and https proxy that allows to intercept requests, rewrite urls and store data on disk.\n\n## Example Use\n\nCheck the examples folder for more information.\n\nBasic usage: \n\n var Proxy = require('mitm-proxy');\n \n new Proxy({proxy_port: 8080, verbose: true});\n\n## Proxy settings\n\n* **proxy_port** \n \n Port where the proxy will listen to. Default: 8080\n\n* **mitm_port**\n\n Port where the mitm proxy will listen to. Default: 8000\n You don't have to connect to this port, it's used internally.\n\n* **verbose**\n\n Output to STDOUT activity and errors. Default: true\n \n* **proxy_write**\n\n Write the contents of every request to disk. Default: false\n\n* **proxy_write_path**\n\n Folder to write the contents to when proxy_write is enabled. Default: /tmp/proxy\n\n* **key_path**\n\n Path to SSL key that will be used by the mitm proxy. Default: mitm-proxy's internal SSL key.\n\n* **cert_path**\n\n Path to SSL certificate that will be used by the mitm proxy. Default: mitm-proxy's internal SSL certificate.\n\n## Processors\n\nmitm-proxy allows a processor to be passed as a second parameter to new Proxy(...)\n\nAn instance of the processor class will be created for every request that the proxy handles. \n\nThose processors allow to be notified about an event (request sent, response received, data received, etc.) and, when the methods are defined, interception methods like url rewritting.\n\n### Event handlers\n\nThe processor class will receive a proxy object on initialization that will be notified of the events.\n\n* **request(request_object, url_object)**\n \n Once the proxy receives a proxy request, the request event will be triggered. That occurs before establishing a connection to the remote host. The event will receive the original request object (including request headers) and the final url (after url rewritting) that the proxy will request.\n\n* **request_data(data)**\n\n The proxy will be notified by all the data sent to the remote server. Usually POST and PUT methods.\n\n* **request_end**\n\n Once the client finishes sending the request data and is ready to receive the response, a request_end event will be triggered.\n\n* **request_close**\n\n If the client closes the connection uenxpectedly, a request_close event will be triggered.\n\n* **response(response_object)**\n\n Once the connection to the remote server has been established, the server responds with a response header. a response event will be triggered and will receive the original response from the remote server, which includes the repsonse headers and response code.\n \n* **response_data(data)**\n \n All data received from the server will be triggered in response_data events. Data will be a binary buffer.\n\n* **response_end**\n\n Once the remote server closes the request, a response_end event will be triggered.\n\n* **response_close**\n\n If the server closes the connection unexpectedly, a response_close event will be triggered.\n \n\n### URL rewritting\n\nThe processor has a chance to rewrite the url that will be requested to the remote server. By implementing an instance method called **url_rewrite** in the processor, it will be called before establishing a connection to the remote server, allowing to change protocol, host, path or query.\n\nThe url_rewrite will receive an url object (http://nodejs.org/docs/v0.6.2/api/url.html) and expect also an url object returned. \n\nIf the method returns null or undefined, the original url will be used. \n\n\n#### Example\n\nThis will convert _any_ request to show the nodejs.org page.\n\n var Proxy = require('mitm-proxy')\n , url = require('url');\n\n var processor = function(proxy) {\n this.url_rewrite = function(req_url) {\n req_url.hostname = \"nodejs.org\";\n };\n };\n\n new Proxy({proxy_port: 8080}, processor);\n\nRemarks: note that we only changed the server where it will connect and the path that it will request, the request will still hold the original request headers, including the Host: original_host header.\n\n### Request intercept\n\n-- todo --\n\n### Request data intercept\n\n-- todo --\n\n### Response intercept \n\n-- todo --\n\n### Response data intercept\n\n-- todo --\n\n## OS Configuration\n\nHTTP/HTTPS proxyes can be configured system wide. Keep in mind that most browsers will try to validate the SSL certificate and show a warning when using the mitm-proxy. Some domains will totally refuse to go through an invalid certificate in Chrome and other browsers, while others will give the option to ignore the warning.\n\n### Mac OSX\n\n* Go to 'System Preferences' => 'Network'\n* Select your network interface and click on the 'Advanced...' button. \n* Select the 'Proxies' tab\n* Activate 'Web Proxy (HTTP)' and type 'localhost' in the 'Web Proxy Server' text box and type '8080' in the port box next to it.\n* Activate 'Secure Web Proxy (HTTPS)' and type 'localhost' in the 'Web Proxy Server' text box and type '8080' in the port box next to it.\n* Click on 'OK' button to close the 'Advanced' settings.\n* Click on 'Apply' button in the 'Network' panel.\n\n### Ubuntu\n\n-- todo --\n\n### Windows\n\n-- todo --\n\n## Application specific\n\n### PhantomJS\n\nmitm-proxy is specially useful with headless browsers like phantom.js (http://phantomjs.org)\n\nTo enable the proxy in phantomjs add the following parameters to the phantomjs command:\n\n phantomjs --ignore-ssl-errors=yes --proxy=localhost:8080 \n\n## Processors\n\n", + "maintainers": [ + { + "name": "horaci", + "email": "horaci@gmail.com" + } + ], + "time": { + "modified": "2011-11-24T12:30:56.409Z", + "created": "2011-11-24T12:30:54.948Z", + "0.0.1": "2011-11-24T12:30:56.409Z" + }, + "author": { + "name": "Horaci Cuevas" + }, + "repository": { + "type": "git", + "url": "git://github.com/horaci/node-mitm-proxy.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mitm-proxy/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "ce26fea659716f1a6533602637541a446f56c696", + "tarball": "http://registry.npmjs.org/mitm-proxy/-/mitm-proxy-0.0.1.tgz" + } + }, + "keywords": [ + "proxy", + "mitm", + "http", + "https" + ], + "url": "http://registry.npmjs.org/mitm-proxy/" + }, + "mixable": { + "name": "mixable", + "description": "A Ruby style mixin library for CoffeeScript & Javascript", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "petebrowne", + "email": "me@petebrowne.com" + } + ], + "time": { + "modified": "2011-07-26T15:36:00.390Z", + "created": "2011-07-26T15:35:59.932Z", + "0.3.0": "2011-07-26T15:36:00.390Z" + }, + "author": { + "name": "Pete Browne", + "email": "me@petebrowne.com", + "url": "http://petebrowne.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/petebrowne/mixable.git" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/mixable/0.3.0" + }, + "dist": { + "0.3.0": { + "shasum": "d31ff1076c4e34720d20ac64f1941b5b7cee1ef1", + "tarball": "http://registry.npmjs.org/mixable/-/mixable-0.3.0.tgz" + } + }, + "keywords": [ + "mixin", + "extend" + ], + "url": "http://registry.npmjs.org/mixable/" + }, + "mixin": { + "name": "mixin", + "description": "Prototypical mixin layer", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "leei", + "email": "leei@sociologi.ca" + } + ], + "time": { + "modified": "2011-06-08T01:43:21.591Z", + "created": "2011-06-08T01:43:21.061Z", + "0.1.0": "2011-06-08T01:43:21.591Z" + }, + "author": { + "name": "Lee Iverson", + "email": "leei@sociologi.ca" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/mixin/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "8733370cbfe340defc93a899fe318d3508b7c152", + "tarball": "http://registry.npmjs.org/mixin/-/mixin-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/mixin/" + }, + "mixinjs": { + "name": "mixinjs", + "description": "Non prototypal mixins", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "syntacticx", + "email": "ryan@syntacticx.com" + } + ], + "time": { + "modified": "2011-06-10T20:40:25.851Z", + "created": "2011-06-10T20:40:25.278Z", + "0.1.0": "2011-06-10T20:40:25.851Z" + }, + "author": { + "name": "Ryan Eastridge", + "email": "ryan@syntacticx.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/mixinjs/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "16f09d073979c58f8f397b73333baf86340dc1e6", + "tarball": "http://registry.npmjs.org/mixinjs/-/mixinjs-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/mixinjs/" + }, + "mixpanel": { + "name": "mixpanel", + "description": "A simple API for mixpanel", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "carlsverre", + "email": "mail@carlsverre.com" + } + ], + "time": { + "modified": "2011-09-27T19:16:46.735Z", + "created": "2011-02-07T03:01:50.099Z", + "0.0.2": "2011-02-07T03:01:50.426Z", + "0.0.3": "2011-02-11T01:31:20.784Z", + "0.0.4": "2011-06-08T06:43:57.298Z", + "0.0.5": "2011-09-27T19:16:46.735Z" + }, + "author": { + "name": "Carl Sverre", + "url": "http://carlsverre.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/carlsverre/mixpanel-node.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/mixpanel/0.0.2", + "0.0.3": "http://registry.npmjs.org/mixpanel/0.0.3", + "0.0.4": "http://registry.npmjs.org/mixpanel/0.0.4", + "0.0.5": "http://registry.npmjs.org/mixpanel/0.0.5" + }, + "dist": { + "0.0.2": { + "shasum": "e29fdaa8beaca17c54c167317b92dc1dcec24a23", + "tarball": "http://registry.npmjs.org/mixpanel/-/mixpanel-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "8c674f063037cd9a506337a1419c8b78388dbb94", + "tarball": "http://registry.npmjs.org/mixpanel/-/mixpanel-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "b7445aab9449e0bfb08ac20c26cffaa703048667", + "tarball": "http://registry.npmjs.org/mixpanel/-/mixpanel-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "b45478e581a88662b3aeb6da341e594acffb5184", + "tarball": "http://registry.npmjs.org/mixpanel/-/mixpanel-0.0.5.tgz" + } + }, + "keywords": [ + "mixpanel", + "analytics", + "api", + "stats" + ], + "url": "http://registry.npmjs.org/mixpanel/" + }, + "mixpanel_api": { + "name": "mixpanel_api", + "description": "Access the mixpanel API from nodejs", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "jonashuckestein", + "email": "jonas.huckestein@gmail.com" + } + ], + "time": { + "modified": "2011-02-11T00:32:21.827Z", + "created": "2011-02-11T00:32:21.496Z", + "0.1.0": "2011-02-11T00:32:21.827Z" + }, + "author": { + "name": "Jonas Huckestein", + "email": "jonas.huckestein@gmail.com", + "url": "http://thezukunft.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/mixpanel_api/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "48fc432d4de1b8816a590014037e47c85ed1a612", + "tarball": "http://registry.npmjs.org/mixpanel_api/-/mixpanel_api-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/mixpanel_api/" + }, + "mixpanel-api": { + "name": "mixpanel-api", + "description": "Access the mixpanel API from nodejs", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "jonashuckestein", + "email": "jonas.huckestein@gmail.com" + } + ], + "time": { + "modified": "2011-02-11T00:39:35.640Z", + "created": "2011-02-11T00:37:45.373Z", + "0.1.0": "2011-02-11T00:37:45.780Z", + "0.1.1": "2011-02-11T00:39:35.640Z" + }, + "author": { + "name": "Jonas Huckestein", + "email": "jonas.huckestein@gmail.com", + "url": "http://thezukunft.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/mixpanel-api/0.1.0", + "0.1.1": "http://registry.npmjs.org/mixpanel-api/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "faefa90cb0671efa86c94678f0f70d7f9d62886c", + "tarball": "http://registry.npmjs.org/mixpanel-api/-/mixpanel-api-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "1691cbce015b829c8356e9196dccdf2503e43f9d", + "tarball": "http://registry.npmjs.org/mixpanel-api/-/mixpanel-api-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/mixpanel-api/" + }, + "mixture": { + "name": "mixture", + "description": "Heterogeneous cluster task manager", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "dshaw", + "email": "dshaw@dshaw.com" + } + ], + "time": { + "modified": "2011-11-08T19:22:28.313Z", + "created": "2011-11-06T01:22:13.602Z", + "0.0.0": "2011-11-06T01:22:15.019Z", + "0.1.0": "2011-11-08T19:22:28.313Z" + }, + "author": { + "name": "Daniel D. Shaw", + "email": "dshaw@dshaw.com", + "url": "http://dshaw.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dshaw/mixture.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/mixture/0.0.0", + "0.1.0": "http://registry.npmjs.org/mixture/0.1.0" + }, + "dist": { + "0.0.0": { + "shasum": "7ef14dd72e7e1589dbafb258704090c33fbfe7d7", + "tarball": "http://registry.npmjs.org/mixture/-/mixture-0.0.0.tgz" + }, + "0.1.0": { + "shasum": "122a620d866497c1a7186d24ac93eb6e56a1d4de", + "tarball": "http://registry.npmjs.org/mixture/-/mixture-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/mixture/" + }, + "mjoe": { + "name": "mjoe", + "description": "Monkey Joe will do the monkey job for you", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "afelix", + "email": "skryzhanovsky@gmail.com" + } + ], + "time": { + "modified": "2011-08-07T21:34:33.327Z", + "created": "2011-08-07T21:34:32.364Z", + "0.1.4": "2011-08-07T21:34:33.327Z" + }, + "author": { + "name": "Sergey Kryzhanovsky", + "email": "skryzhanovsky@gmail.com", + "url": "http://github.com/afelix" + }, + "repository": { + "type": "git", + "url": "git://github.com/afelix/mjoe.git" + }, + "versions": { + "0.1.4": "http://registry.npmjs.org/mjoe/0.1.4" + }, + "dist": { + "0.1.4": { + "shasum": "d8f9617b0828179337382e98e8fa02e89595f765", + "tarball": "http://registry.npmjs.org/mjoe/-/mjoe-0.1.4.tgz" + } + }, + "url": "http://registry.npmjs.org/mjoe/" + }, + "mjsunit.runner": { + "name": "mjsunit.runner", + "description": "Command line mjsunit runner which provides an easy way to hook into mjsunit and start running tests immediately..", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "tmpvar", + "email": "tmpvar@gmail.com" + } + ], + "versions": { + "0.1.0": "http://registry.npmjs.org/mjsunit.runner/0.1.0", + "0.1.1": "http://registry.npmjs.org/mjsunit.runner/0.1.1", + "0.1.2": "http://registry.npmjs.org/mjsunit.runner/0.1.2", + "0.1.3": "http://registry.npmjs.org/mjsunit.runner/0.1.3" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/mjsunit.runner/-/mjsunit.runner-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://packages:5984/mjsunit.runner/-/mjsunit.runner-0.1.1.tgz" + }, + "0.1.2": { + "tarball": "http://packages:5984/mjsunit.runner/-/mjsunit.runner-0.1.2.tgz" + }, + "0.1.3": { + "tarball": "http://packages:5984/mjsunit.runner/-/mjsunit.runner-0.1.3.tgz" + } + }, + "keywords": [ + "testing", + "test", + "runner", + "unit testing", + "command line" + ], + "url": "http://registry.npmjs.org/mjsunit.runner/" + }, + "mkdir": { + "name": "mkdir", + "description": "Directory creation utilities", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "joehewitt", + "email": "joe@joehewitt.com" + } + ], + "time": { + "modified": "2011-07-31T01:33:12.395Z", + "created": "2011-07-31T01:33:11.664Z", + "0.0.1": "2011-07-31T01:33:12.395Z" + }, + "author": { + "name": "Joe Hewitt", + "email": "joe@joehewitt.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/joehewitt/mkdir.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mkdir/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "c17c59b2865e955f737f2976356af68f827d7e80", + "tarball": "http://registry.npmjs.org/mkdir/-/mkdir-0.0.1.tgz" + } + }, + "keywords": [ + "fs" + ], + "url": "http://registry.npmjs.org/mkdir/" + }, + "mkdirp": { + "name": "mkdirp", + "description": "Recursively mkdir, like `mkdir -p`", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-11-17T13:28:35.738Z", + "created": "2011-01-06T02:54:36.080Z", + "0.0.1": "2011-01-06T02:54:36.496Z", + "0.0.2": "2011-02-14T20:11:44.988Z", + "0.0.3": "2011-06-20T04:02:44.361Z", + "0.0.4": "2011-06-29T00:28:32.272Z", + "0.0.5": "2011-06-29T18:22:05.839Z", + "0.0.6": "2011-08-20T21:37:10.730Z", + "0.0.7": "2011-09-10T22:50:08.879Z", + "0.1.0": "2011-11-06T06:32:23.379Z", + "0.2.0": "2011-11-16T05:32:17.036Z", + "0.2.1": "2011-11-16T09:26:51.089Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-mkdirp.git" + }, + "users": { + "pid": true + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mkdirp/0.0.1", + "0.0.2": "http://registry.npmjs.org/mkdirp/0.0.2", + "0.0.3": "http://registry.npmjs.org/mkdirp/0.0.3", + "0.0.4": "http://registry.npmjs.org/mkdirp/0.0.4", + "0.0.5": "http://registry.npmjs.org/mkdirp/0.0.5", + "0.0.6": "http://registry.npmjs.org/mkdirp/0.0.6", + "0.0.7": "http://registry.npmjs.org/mkdirp/0.0.7", + "0.1.0": "http://registry.npmjs.org/mkdirp/0.1.0", + "0.2.0": "http://registry.npmjs.org/mkdirp/0.2.0", + "0.2.1": "http://registry.npmjs.org/mkdirp/0.2.1" + }, + "dist": { + "0.0.1": { + "shasum": "3fbd9f4711a5234233dc6c9d7a052d4b9f83b416", + "tarball": "http://registry.npmjs.org/mkdirp/-/mkdirp-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "d9438082daac12691c71d64076706c8a5c3511b6", + "tarball": "http://registry.npmjs.org/mkdirp/-/mkdirp-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "5a7d88a26857023759ffee7fe4c0b28b0f0066b9", + "tarball": "http://registry.npmjs.org/mkdirp/-/mkdirp-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "fbb491deec0b9b00869f52582e5f431b3681d2f5", + "tarball": "http://registry.npmjs.org/mkdirp/-/mkdirp-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "375facfa634b17dcdf734c56f59ddae5102811c8", + "tarball": "http://registry.npmjs.org/mkdirp/-/mkdirp-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "0965de71060cf5e237ffa795243cb5d9a78d335b", + "tarball": "http://registry.npmjs.org/mkdirp/-/mkdirp-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "d89b4f0e4c3e5e5ca54235931675e094fe1a5072", + "tarball": "http://registry.npmjs.org/mkdirp/-/mkdirp-0.0.7.tgz" + }, + "0.1.0": { + "shasum": "53212930f7bd75f187b6c8688eb0a5fd69b7d118", + "tarball": "http://registry.npmjs.org/mkdirp/-/mkdirp-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "29dd87f198880b568d1efce0980e7231b048f3aa", + "tarball": "http://registry.npmjs.org/mkdirp/-/mkdirp-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "2ef920435c8511e135137a33f18a9e40cf9dd166", + "tarball": "http://registry.npmjs.org/mkdirp/-/mkdirp-0.2.1.tgz" + } + }, + "keywords": [ + "mkdir", + "directory" + ], + "url": "http://registry.npmjs.org/mkdirp/" + }, + "mkslogger": { + "name": "mkslogger", + "description": "Simple logging library, forked from nlogger.", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "nlogger\n===========\n\nnlogger is a Node.js logging library that can\n\n* print messages with module name and current line number so you know from where it was called\n* print messages in color\n* print parameters in message\n* be configured from file\n\n\nUsage\n-----\nUse npm or download. Then add to your code:\n\n var logger = require('./nlogger').logger(module);\n\n*module* is object defined automatically by Node.js. If you don't want automatic module names, replace it with your desired string name.\n\n logger.info(message);\n logger.info(message, parameter...);\n\nStrings `{}` in message will be replaced by appropriate parameter. See examples. \n\nExamples\n--------\n\n var logger = require('./nlogger').logger(module);\n logger.info('Info message');\n logger.debug('Debug message');\n logger.warn('Warning message');\n logger.error('Error message');\n logger.trace('Trace message');\n logger.info('Array = {}, Object = {}', [1, 2, 3, 4], {one: 1, two: 2});\n\n \nOutput samples\n--------------\n\n 2010-10-02 20:39:03.570 INFO main:5 - Info message\n 2010-10-02 20:39:03.588 DEBUG main:6 - Debug message\n 2010-10-02 20:39:03.589 WARN main:7 - Warning message\n 2010-10-02 20:39:03.590 ERROR main:8 - Error message\n 2010-10-02 20:39:03.590 TRACE main:9 - Trace message\n 2010-10-02 20:39:03.590 INFO main:10 - Array = [ 1, 2, 3, 4 ], Object = { one: 1, two: 2 }\n \n 2010-10-02 20:59:12.496 INFO my-modules/first:3 - Message from first module from line #3\n 2010-10-02 20:59:12.514 INFO my-modules/second:10 - Message from second module from line #10\n 2010-10-02 20:59:12.515 INFO fake-module-name:3 - Message from third module from line #3\n 2010-10-02 20:59:12.516 INFO :3 - Message from fourth module from line #3\n \n\nConfiguration\n-------------\nnlogger can load optional configuration file nlogger.json which looks like:\n\n {\n \"color\": \"auto\",\n \"level\": {\n \"*\": \"debug\",\n \"my-modules/first\": \"info\"\n }\n }\n \n* `color` - print message in color? [true, false, \"auto\"]\n* `level.*` - default debug level\n* `level.yourModuleName` - debug level for specified module\n\nPossible debug levels are `trace`, `debug`, `info`, `warn`, `error`.\n\nChanges\n-------\n0.3.0 - Added parameters support to logging methods\n\n0.2.0 - Added configuration file support\n\n0.1.0 - First npm release\n\n\nLicense\n-------\nReleased under MIT License. Enjoy and Fork!\n", + "maintainers": [ + { + "name": "maks", + "email": "maks@manichord.com" + } + ], + "time": { + "modified": "2011-12-06T05:14:55.904Z", + "created": "2011-12-06T05:14:51.832Z", + "0.0.1": "2011-12-06T05:14:55.904Z" + }, + "author": { + "name": "Maksim Lin and Barret Schloerke and Igor Urminček" + }, + "repository": { + "type": "git", + "url": "git://github.com/maks/nlogger.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mkslogger/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "4225fbffa0b36e974f243e439a4e9d59a0bd5f27", + "tarball": "http://registry.npmjs.org/mkslogger/-/mkslogger-0.0.1.tgz" + } + }, + "keywords": [ + "log", + "logging", + "logger", + "custom", + "color" + ], + "url": "http://registry.npmjs.org/mkslogger/" + }, + "mmap": { + "name": "mmap", + "description": "mmap(2) bindings for node.js", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "bnoordhuis", + "email": "info@bnoordhuis.nl" + } + ], + "time": { + "modified": "2011-05-06T15:42:45.575Z", + "created": "2011-02-12T23:17:46.218Z", + "0.0.1": "2011-02-12T23:17:46.633Z", + "0.0.2": "2011-02-12T23:26:01.134Z", + "0.0.3": "2011-05-06T15:42:45.575Z" + }, + "author": { + "name": "Ben Noordhuis" + }, + "repository": { + "type": "git", + "url": "git://github.com/bnoordhuis/node-mmap.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mmap/0.0.1", + "0.0.2": "http://registry.npmjs.org/mmap/0.0.2", + "0.0.3": "http://registry.npmjs.org/mmap/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "48442f93a6fbc693437d85c83a6ed76a6d2e7263", + "tarball": "http://registry.npmjs.org/mmap/-/mmap-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "53568e886689db0774fd96fc8ce8736b462d8bb7", + "tarball": "http://registry.npmjs.org/mmap/-/mmap-0.0.2.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "eb30aa27865bacc972e3c5b0d347772bd6d84252", + "tarball": "http://registry.npmjs.org/mmap/-/mmap-0.0.2-0.4-sunos-5.11.tgz" + } + } + }, + "0.0.3": { + "shasum": "c0008b2dbeb9af5e644b0ab70789a9b79a6d5844", + "tarball": "http://registry.npmjs.org/mmap/-/mmap-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/mmap/" + }, + "mmikulicic-thrift": { + "name": "mmikulicic-thrift", + "description": "mmikulicic node-thrift fork", + "dist-tags": { + "latest": "0.6.0dev2" + }, + "maintainers": [ + { + "name": "ithkuil", + "email": "marko.mikulicic@isti.cnr.it" + } + ], + "time": { + "modified": "2011-04-11T16:11:35.982Z", + "created": "2011-04-11T16:11:35.372Z", + "0.6.0dev2": "2011-04-11T16:11:35.982Z" + }, + "author": { + "name": "Wade Simmons", + "email": "wade@wades.im" + }, + "versions": { + "0.6.0dev2": "http://registry.npmjs.org/mmikulicic-thrift/0.6.0dev2" + }, + "dist": { + "0.6.0dev2": { + "shasum": "28cc6b646a9c97da25a340da3655ae93d042f588", + "tarball": "http://registry.npmjs.org/mmikulicic-thrift/-/mmikulicic-thrift-0.6.0dev2.tgz" + } + }, + "url": "http://registry.npmjs.org/mmikulicic-thrift/" + }, + "mmmodel": { + "name": "mmmodel", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "weepy", + "email": "jonahfox@gmail.com" + } + ], + "time": { + "modified": "2011-03-15T12:10:31.188Z", + "created": "2011-03-07T12:01:49.209Z", + "0.0.2": "2011-03-07T12:01:49.614Z", + "0.0.3": "2011-03-11T11:05:17.228Z", + "0.0.4": "2011-03-15T12:10:31.188Z" + }, + "author": { + "name": "Jonah Fox", + "email": "jonah@boodigital.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/weepy/mmmodel.git" + }, + "description": "Homer's favorite Javascript ORM", + "versions": { + "0.0.2": "http://registry.npmjs.org/mmmodel/0.0.2", + "0.0.3": "http://registry.npmjs.org/mmmodel/0.0.3", + "0.0.4": "http://registry.npmjs.org/mmmodel/0.0.4" + }, + "dist": { + "0.0.2": { + "shasum": "aa2d6920b2668d80a87be82d2741b23d29024887", + "tarball": "http://registry.npmjs.org/mmmodel/-/mmmodel-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "0284f4af14323803c1e0ce36ad2038a7eaf584ca", + "tarball": "http://registry.npmjs.org/mmmodel/-/mmmodel-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "6f2fc830d847707ab7b994eeb637a829b4cca139", + "tarball": "http://registry.npmjs.org/mmmodel/-/mmmodel-0.0.4.tgz" + } + }, + "keywords": [ + "javascript", + "orm", + "rest", + "redis" + ], + "url": "http://registry.npmjs.org/mmmodel/" + }, + "mmodel": { + "name": "mmodel", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "weepy", + "email": "jonahfox@gmail.com" + } + ], + "time": { + "modified": "2011-03-03T17:27:29.065Z", + "created": "2011-03-03T17:27:28.685Z", + "0.0.2": "2011-03-03T17:27:29.065Z" + }, + "author": { + "name": "weepy" + }, + "repository": { + "type": "git", + "url": "git://github.com/weepy/mmodel.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/mmodel/0.0.2" + }, + "dist": { + "0.0.2": { + "shasum": "05abec02bf6a1f1d9280fc7c0fb1501b82ce5b1e", + "tarball": "http://registry.npmjs.org/mmodel/-/mmodel-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/mmodel/" + }, + "mmseg": { + "name": "mmseg", + "description": "A node.js driver for libmmseg", + "dist-tags": { + "latest": "0.0.8" + }, + "maintainers": [ + { + "name": "hidden", + "email": "zzdhidden@gmail.com" + } + ], + "time": { + "modified": "2011-06-07T12:21:50.756Z", + "created": "2011-05-31T06:37:02.117Z", + "0.0.1": "2011-05-31T06:37:03.445Z", + "0.0.2": "2011-06-01T08:34:08.155Z", + "0.0.3": "2011-06-01T10:05:40.869Z", + "0.0.4": "2011-06-01T11:40:53.801Z", + "0.0.5": "2011-06-01T13:37:02.861Z", + "0.0.6": "2011-06-01T18:11:36.536Z", + "0.0.7": "2011-06-07T12:15:02.806Z", + "0.0.8": "2011-06-07T12:21:50.756Z" + }, + "author": { + "name": "Hidden", + "email": "zzdhidden@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mmseg/0.0.1", + "0.0.2": "http://registry.npmjs.org/mmseg/0.0.2", + "0.0.3": "http://registry.npmjs.org/mmseg/0.0.3", + "0.0.4": "http://registry.npmjs.org/mmseg/0.0.4", + "0.0.5": "http://registry.npmjs.org/mmseg/0.0.5", + "0.0.6": "http://registry.npmjs.org/mmseg/0.0.6", + "0.0.7": "http://registry.npmjs.org/mmseg/0.0.7", + "0.0.8": "http://registry.npmjs.org/mmseg/0.0.8" + }, + "dist": { + "0.0.1": { + "shasum": "6a848c6c8dcd31ab758649c6fb82e8dfe9437cb9", + "tarball": "http://registry.npmjs.org/mmseg/-/mmseg-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "17674951c78b67cdfcf60994a3b49b731077b80b", + "tarball": "http://registry.npmjs.org/mmseg/-/mmseg-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "88a3440109c8ff7382cee2fa4a3acc0c7e098a2f", + "tarball": "http://registry.npmjs.org/mmseg/-/mmseg-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "65f84bccca3659211e4bdd8121100a4b17197c44", + "tarball": "http://registry.npmjs.org/mmseg/-/mmseg-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "7160d2f0aedaf383b01b6a35ca208e6260084dab", + "tarball": "http://registry.npmjs.org/mmseg/-/mmseg-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "791f2908c5450c36a26563bfcf27634fdca512bd", + "tarball": "http://registry.npmjs.org/mmseg/-/mmseg-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "f20bc5d0f4e957c3a857203e8e4d0ffee4a3ed61", + "tarball": "http://registry.npmjs.org/mmseg/-/mmseg-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "c1394fc8e1d8352246021662e8d553c1f51ed314", + "tarball": "http://registry.npmjs.org/mmseg/-/mmseg-0.0.8.tgz" + } + }, + "keywords": [ + "mmseg", + "libmmseg" + ], + "url": "http://registry.npmjs.org/mmseg/" + }, + "mn-app": { + "name": "mn-app", + "description": "", + "dist-tags": {}, + "maintainers": [ + { + "name": "admin", + "email": "qzhang@modeln.com" + } + ], + "time": { + "modified": "2011-11-06T00:52:09.052Z", + "created": "2011-11-06T00:52:09.052Z" + }, + "versions": {}, + "dist": {}, + "url": "http://registry.npmjs.org/mn-app/" + }, + "mn-core": { + "name": "mn-core", + "description": "", + "dist-tags": {}, + "maintainers": [ + { + "name": "admin", + "email": "qzhang@modeln.com" + } + ], + "time": { + "modified": "2011-11-06T00:52:23.948Z", + "created": "2011-11-06T00:52:23.948Z" + }, + "versions": {}, + "dist": {}, + "url": "http://registry.npmjs.org/mn-core/" + }, + "mn-customer-mgmt": { + "name": "mn-customer-mgmt", + "description": "", + "dist-tags": {}, + "maintainers": [ + { + "name": "admin", + "email": "qzhang@modeln.com" + } + ], + "time": { + "modified": "2011-11-06T00:52:31.116Z", + "created": "2011-11-06T00:52:31.116Z" + }, + "versions": {}, + "dist": {}, + "url": "http://registry.npmjs.org/mn-customer-mgmt/" + }, + "mn-logger": { + "name": "mn-logger", + "description": "Logging utility", + "dist-tags": {}, + "maintainers": [ + { + "name": "admin", + "email": "qzhang@modeln.com" + } + ], + "time": { + "modified": "2011-11-06T00:52:43.714Z", + "created": "2011-11-06T00:52:43.714Z" + }, + "versions": {}, + "dist": {}, + "url": "http://registry.npmjs.org/mn-logger/" + }, + "mn-module-mgmt": { + "name": "mn-module-mgmt", + "description": "Module Management (deploy, install, update, monitor, etc.)", + "dist-tags": {}, + "maintainers": [ + { + "name": "admin", + "email": "qzhang@modeln.com" + } + ], + "time": { + "modified": "2011-11-06T00:52:48.261Z", + "created": "2011-11-06T00:52:48.261Z" + }, + "versions": {}, + "dist": {}, + "url": "http://registry.npmjs.org/mn-module-mgmt/" + }, + "mn-ping": { + "name": "mn-ping", + "description": "", + "dist-tags": {}, + "maintainers": [ + { + "name": "admin", + "email": "qzhang@modeln.com" + } + ], + "time": { + "modified": "2011-11-06T00:52:52.807Z", + "created": "2011-11-06T00:52:52.807Z" + }, + "versions": {}, + "dist": {}, + "url": "http://registry.npmjs.org/mn-ping/" + }, + "mn-tenant-mgmt": { + "name": "mn-tenant-mgmt", + "description": "", + "dist-tags": {}, + "maintainers": [ + { + "name": "admin", + "email": "qzhang@modeln.com" + } + ], + "time": { + "modified": "2011-11-06T00:52:57.590Z", + "created": "2011-11-06T00:52:57.590Z" + }, + "versions": {}, + "dist": {}, + "url": "http://registry.npmjs.org/mn-tenant-mgmt/" + }, + "mnml": { + "name": "mnml", + "description": "Minimalistic general purpose markup language", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "thedjinn", + "email": "emil@koffietijd.net" + } + ], + "time": { + "modified": "2011-12-08T09:37:01.688Z", + "created": "2011-10-30T19:37:28.227Z", + "1.0.0": "2011-10-30T19:39:05.690Z", + "1.0.1": "2011-12-08T09:37:01.688Z" + }, + "author": { + "name": "Emil Loer", + "email": "emil@koffietijd.net", + "url": "http://emilloer.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:thedjinn/mnml.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/mnml/1.0.0", + "1.0.1": "http://registry.npmjs.org/mnml/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "677d0654fff5a7a7b096eaf3bee14d2e70a556ce", + "tarball": "http://registry.npmjs.org/mnml/-/mnml-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "4ac332c4bca3e789af3104db3bff9a756a757852", + "tarball": "http://registry.npmjs.org/mnml/-/mnml-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/mnml/" + }, + "mobettah": { + "name": "mobettah", + "description": "Process monitoring done easy", + "dist-tags": { + "latest": "0.1.1" + }, + "readme": null, + "maintainers": [ + { + "name": "hainish", + "email": "bill.budington@gmail.com" + } + ], + "time": { + "modified": "2011-12-08T21:31:24.269Z", + "created": "2011-12-02T23:23:03.869Z", + "0.0.5": "2011-12-02T23:23:05.199Z", + "0.1.0": "2011-12-07T23:13:32.362Z", + "0.1.1": "2011-12-08T21:31:24.269Z" + }, + "author": { + "name": "tedsuo,Hainish,cooperq" + }, + "repository": { + "type": "git", + "url": "git://github.com/Hainish/mobettah.git" + }, + "versions": { + "0.0.5": "http://registry.npmjs.org/mobettah/0.0.5", + "0.1.0": "http://registry.npmjs.org/mobettah/0.1.0", + "0.1.1": "http://registry.npmjs.org/mobettah/0.1.1" + }, + "dist": { + "0.0.5": { + "shasum": "70719f195e2ebfe7bd4b59ab6ca0998d75332f28", + "tarball": "http://registry.npmjs.org/mobettah/-/mobettah-0.0.5.tgz" + }, + "0.1.0": { + "shasum": "93f71e183c3f7f8e831180b703e0c663b0d47288", + "tarball": "http://registry.npmjs.org/mobettah/-/mobettah-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "ce57ff86cc8a1e95a9c5a525c4c2a078a7a395ac", + "tarball": "http://registry.npmjs.org/mobettah/-/mobettah-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/mobettah/" + }, + "mobile-monkeypatches": { + "name": "mobile-monkeypatches", + "description": "Monkey patches to ease mobile web app development", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "rubenv", + "email": "ruben@savanne.be" + } + ], + "time": { + "modified": "2011-10-06T08:15:40.637Z", + "created": "2011-10-06T08:15:39.235Z", + "0.0.1": "2011-10-06T08:15:40.637Z" + }, + "author": { + "name": "Ruben Vermeersch", + "email": "ruben@savanne.be" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mobile-monkeypatches/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "fa4af514a4e01c83b2875082d6cdcb9efd97cdb2", + "tarball": "http://registry.npmjs.org/mobile-monkeypatches/-/mobile-monkeypatches-0.0.1.tgz" + } + }, + "keywords": [ + "mobile", + "hacks", + "sencha" + ], + "url": "http://registry.npmjs.org/mobile-monkeypatches/" + }, + "mobilize": { + "name": "mobilize", + "description": "Inlines all of the JavaScripts, stylesheets and images of an HTML page.", + "dist-tags": { + "latest": "0.0.12" + }, + "maintainers": [ + { + "name": "cdata", + "email": "chris@cloudflare.com" + } + ], + "time": { + "modified": "2011-08-09T00:10:01.006Z", + "created": "2011-07-19T18:48:53.602Z", + "0.0.1": "2011-07-19T18:48:55.135Z", + "0.0.2": "2011-07-19T19:23:59.999Z", + "0.0.3": "2011-07-20T01:09:48.038Z", + "0.0.4": "2011-07-20T22:27:37.502Z", + "0.0.5": "2011-07-21T01:12:00.451Z", + "0.0.6": "2011-07-26T21:10:27.764Z", + "0.0.7": "2011-07-26T21:25:46.692Z", + "0.0.8": "2011-07-27T19:11:46.430Z", + "0.0.9": "2011-08-04T18:39:31.962Z", + "0.0.10": "2011-08-04T20:39:02.935Z", + "0.0.11": "2011-08-04T21:36:01.757Z", + "0.0.12": "2011-08-09T00:10:01.006Z" + }, + "author": { + "name": "Christopher Joel", + "email": "chris@scriptolo.gy", + "url": "http://scriptolo.gy" + }, + "repository": { + "type": "git", + "url": "git://github.com/cdata/mobilize.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mobilize/0.0.1", + "0.0.2": "http://registry.npmjs.org/mobilize/0.0.2", + "0.0.3": "http://registry.npmjs.org/mobilize/0.0.3", + "0.0.4": "http://registry.npmjs.org/mobilize/0.0.4", + "0.0.5": "http://registry.npmjs.org/mobilize/0.0.5", + "0.0.6": "http://registry.npmjs.org/mobilize/0.0.6", + "0.0.7": "http://registry.npmjs.org/mobilize/0.0.7", + "0.0.8": "http://registry.npmjs.org/mobilize/0.0.8", + "0.0.9": "http://registry.npmjs.org/mobilize/0.0.9", + "0.0.10": "http://registry.npmjs.org/mobilize/0.0.10", + "0.0.11": "http://registry.npmjs.org/mobilize/0.0.11", + "0.0.12": "http://registry.npmjs.org/mobilize/0.0.12" + }, + "dist": { + "0.0.1": { + "shasum": "e3fe76c33656a773e70b8169e4158882716cff1c", + "tarball": "http://registry.npmjs.org/mobilize/-/mobilize-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c09f19b8b4b959afbf24171f501a29e9536d7910", + "tarball": "http://registry.npmjs.org/mobilize/-/mobilize-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "57902b4496e4d50520c495b0f9807bb5304375b1", + "tarball": "http://registry.npmjs.org/mobilize/-/mobilize-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "9d16c9b34093d5b0716fb9d9ef52e50501626ca4", + "tarball": "http://registry.npmjs.org/mobilize/-/mobilize-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "15a5da98fe14029c6a3049373543b7d47d328d71", + "tarball": "http://registry.npmjs.org/mobilize/-/mobilize-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "0e0e0b2adfd3bfa24cdfa7230ae8a29f61aebdae", + "tarball": "http://registry.npmjs.org/mobilize/-/mobilize-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "702e6e6beb08b6b26ebae0138a7a63c7138dd1f7", + "tarball": "http://registry.npmjs.org/mobilize/-/mobilize-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "e2b99799947d3a105795418d218b329ebf7f8fa0", + "tarball": "http://registry.npmjs.org/mobilize/-/mobilize-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "1bed158950c67348468b7fe0e4e3e04f85280e22", + "tarball": "http://registry.npmjs.org/mobilize/-/mobilize-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "b05edb2c41ff9392a4ea026ed0743a4a9640a041", + "tarball": "http://registry.npmjs.org/mobilize/-/mobilize-0.0.10.tgz" + }, + "0.0.11": { + "shasum": "79dc8c544c8106988d85e1b4510a46c2d32cc22c", + "tarball": "http://registry.npmjs.org/mobilize/-/mobilize-0.0.11.tgz" + }, + "0.0.12": { + "shasum": "79a5a9475aca87535585735f4b6b996085d726d2", + "tarball": "http://registry.npmjs.org/mobilize/-/mobilize-0.0.12.tgz" + } + }, + "keywords": [ + "html", + "stylesheet", + "css", + "javascript", + "js", + "compile", + "inline", + "mobilize", + "optimize", + "optimization" + ], + "url": "http://registry.npmjs.org/mobilize/" + }, + "mocha": { + "name": "mocha", + "description": "Test framework inspired by JSpec, Expresso, & Qunit", + "dist-tags": { + "latest": "0.3.6" + }, + "readme": "\n# mocha\n\n Mocha aims to combine the best of several popular JavaScript test frameworks, providing a fun, accessible, robust browser & node.js based test experience.\n\n## About\n\n Mocha tests run serially, easing debugging and making it an ideal choice when mocking and stubbing is involved. Existing frameworks such as [expresso](http://github.com/visionmedia/expresso) can be much faster, though not without cost, Mocha aims to be the simple and \"fun\" test framework.\n\n## Features\n\n - proper exit status for CI support etc\n - auto-detects and disables coloring for non-ttys\n - async test timeout support\n - growl notification support\n - reports test durations\n - highlights slow tests\n - global variable leak detection\n - configurable test-case timeout\n - optionally run tests that match a regexp\n - extensible reporting\n - dot matrix\n - landing strip\n - test-anything-protocol (TAP) producer\n - progress bar\n - spec list\n - streaming JSON\n - JSON\n - extensible test DSLs\n - BDD\n - TDD\n - exports\n\n## Usage\n\n```\n\nUsage: mocha [options] \n\n Options:\n\n -h, --help output usage information\n -v, --version output the version number\n -r, --require require the given module\n -R, --reporter specify the reporter to use\n -u, --ui specify user-interface (bdd|tdd|exports)\n -g, --grep only run tests matching \n -t, --timeout set test-case timeout in milliseconds [2000]\n -G, --growl enable growl support\n\n Reporters:\n\n dot - dot matrix\n json - single json object\n progress - progress bar\n list - spec-style listing\n tap - test-anything-protocol\n landing - unicode landing strip\n json-stream - newline delimited json events\n\n```\n\n## Interfaces\n\n Mocha \"interfaces\" providing BDD, TDD, and expresso export-style flavoured APIs on top of the internals.\n \n### BDD\n\n```js\ndescribe('Array', function(){\n before(function(){\n // ...\n });\n\n describe('#indexOf()', function(){\n it('should return -1 when not present', function(){\n [1,2,3].indexOf(4).should.equal(-1);\n });\n\n it('should return the index when present', function(){\n [1,2,3].indexOf(3).should.equal(2);\n [1,2,3].indexOf(2).should.equal(1);\n [1,2,3].indexOf(1).should.equal(0);\n });\n });\n});\n```\n\n### TDD\n\n```js\nsuite('Array', function(){\n setup(function(){\n // ...\n });\n\n suite('#indexOf()', function(){\n test('should return -1 when not present', function(){\n assert.equal(-1, [1,2,3].indexOf(4));\n });\n\n test('should return the index when present', function(){\n assert.equal(2, [1,2,3].indexOf(3));\n assert.equal(1, [1,2,3].indexOf(2));\n assert.equal(0, [1,2,3].indexOf(1));\n });\n });\n});\n```\n\n### Exports\n\n```js\nmodule.exports = {\n 'Array': {\n '#indexOf()': {\n 'should return -1 when not present': function(){\n [1,2,3].indexOf(4).should.equal(-1);\n },\n \n 'should return the index when present': function(){\n [1,2,3].indexOf(3).should.equal(2);\n [1,2,3].indexOf(2).should.equal(1);\n [1,2,3].indexOf(1).should.equal(0);\n }\n }\n }\n};\n```\n\n## Reporters\n\n Mocha reporters adjust to the terminal window,\n and always disable ansi-escape colouring when\n the stdio streams are not associated with a tty.\n\n### Dot Matrix\n\n The Dot Matrix reporter is simply a series of dots\n that represent test cases, failures highlight in red.\n\n ![dot matrix reporter](http://f.cl.ly/items/3b3b471Z1p2U3D1P2Y1n/Screenshot.png)\n\n ![dot matrix failure](http://f.cl.ly/items/1P11330L033r423g1y1n/Screenshot.png)\n\n## TAP\n\n The TAP reporter emits lines for a [Test-Anything-Protocol](http://en.wikipedia.org/wiki/Test_Anything_Protocol) consumer.\n\n ![test anything protocol](http://f.cl.ly/items/2O0X3h0d1Q430O1t1T3p/Screenshot.png)\n\n## Landing Strip\n\n The Landing Strip reporter is a gimmicky test reporter simulating\n a plane landing :) unicode ftw\n\n ![landing strip plane reporter](http://f.cl.ly/items/0z1k400K1N1Y2G3u2u0i/Screenshot.png)\n\n## List\n\n The \"List\" reporter outputs a simple specifications list as\n test cases pass or fail, outputting the failure details at \n the bottom of the output.\n\n ![list reporter](http://f.cl.ly/items/0Y0x1B3l3K0n3t3h3l0p/Screenshot.png)\n \n ![failures](http://f.cl.ly/items/2Z0E150v20042G2d1J0i/Screenshot.png)\n\n## JSON\n\n The JSON reporter outputs a single large JSON object when\n the tests have completed (failures or not).\n\n## JSON Stream\n\n The JSON Stream reporter outputs newline-delimited JSON \"events\" as they occur, beginning with a \"start\" event, followed by test passes or failures, and then the final \"end\" event.\n\n```json\n[\"start\",{\"total\":12}]\n[\"pass\",{\"title\":\"should return -1 when not present\",\"fullTitle\":\"Array #indexOf() should return -1 when not present\",\"duration\":0}]\n[\"pass\",{\"title\":\"should return the index when present\",\"fullTitle\":\"Array #indexOf() should return the index when present\",\"duration\":0}]\n[\"fail\",{\"title\":\"should return -1 when not present\",\"fullTitle\":\"Array #indexOf() should return -1 when not present\"}]\n[\"end\",{\"start\":\"2011-08-29T03:21:02.050Z\",\"suites\":13,\"passes\":11,\"tests\":12,\"failures\":1,\"end\":\"2011-08-29T03:21:02.052Z\",\"duration\":2}]\n````\n\n## Running tests\n\n Run mocha tests:\n\n $ make test\n\n Run all tests, including interfaces:\n\n $ make test-all\n\n Alter the reporter:\n\n $ make test REPORTER=list\n\n## Best practices\n\n### Makefiles\n\n Be kind and don't make developers hunt around in your docs to figure\n out how to run the tests, add a `make test` target to your _Makefile_:\n\n```\ntest:\n ./node_modules/.bin/mocha \\\n --reporter list\n\n.PHONY: test\n```\n\n## License \n\n(The MIT License)\n\nCopyright (c) 2011 TJ Holowaychuk <tj@vision-media.ca>\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "time": { + "modified": "2011-12-09T16:41:13.200Z", + "created": "2011-11-08T23:08:55.982Z", + "0.0.1-alpha1": "2011-11-08T23:08:57.384Z", + "0.0.1-alpha2": "2011-11-14T17:21:09.435Z", + "0.0.1-alpha3": "2011-11-15T18:11:50.401Z", + "0.0.1-alpha4": "2011-11-15T19:06:14.194Z", + "0.0.1-alpha5": "2011-11-17T15:52:14.087Z", + "0.0.1-alpha6": "2011-11-20T00:00:59.173Z", + "0.0.1": "2011-11-22T20:07:07.235Z", + "0.0.2": "2011-11-23T02:06:17.334Z", + "0.0.3": "2011-11-24T01:26:06.690Z", + "0.0.4": "2011-11-24T13:53:43.556Z", + "0.0.5": "2011-11-25T00:26:57.757Z", + "0.0.6": "2011-11-25T17:45:19.544Z", + "0.0.7": "2011-11-25T19:35:56.311Z", + "0.0.8": "2011-11-25T21:28:37.688Z", + "0.1.0": "2011-11-29T16:23:59.516Z", + "0.2.0": "2011-11-30T20:19:39.518Z", + "0.3.0": "2011-12-04T17:07:12.955Z", + "0.3.1": "2011-12-04T21:45:59.946Z", + "0.3.2": "2011-12-05T21:33:52.416Z", + "0.3.3": "2011-12-08T15:52:00.752Z", + "0.3.4": "2011-12-09T07:25:29.684Z", + "0.3.6": "2011-12-09T16:41:13.200Z" + }, + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "versions": { + "0.0.1-alpha1": "http://registry.npmjs.org/mocha/0.0.1-alpha1", + "0.0.1-alpha2": "http://registry.npmjs.org/mocha/0.0.1-alpha2", + "0.0.1-alpha3": "http://registry.npmjs.org/mocha/0.0.1-alpha3", + "0.0.1-alpha4": "http://registry.npmjs.org/mocha/0.0.1-alpha4", + "0.0.1-alpha5": "http://registry.npmjs.org/mocha/0.0.1-alpha5", + "0.0.1-alpha6": "http://registry.npmjs.org/mocha/0.0.1-alpha6", + "0.0.1": "http://registry.npmjs.org/mocha/0.0.1", + "0.0.2": "http://registry.npmjs.org/mocha/0.0.2", + "0.0.3": "http://registry.npmjs.org/mocha/0.0.3", + "0.0.4": "http://registry.npmjs.org/mocha/0.0.4", + "0.0.5": "http://registry.npmjs.org/mocha/0.0.5", + "0.0.6": "http://registry.npmjs.org/mocha/0.0.6", + "0.0.7": "http://registry.npmjs.org/mocha/0.0.7", + "0.0.8": "http://registry.npmjs.org/mocha/0.0.8", + "0.1.0": "http://registry.npmjs.org/mocha/0.1.0", + "0.2.0": "http://registry.npmjs.org/mocha/0.2.0", + "0.3.0": "http://registry.npmjs.org/mocha/0.3.0", + "0.3.1": "http://registry.npmjs.org/mocha/0.3.1", + "0.3.2": "http://registry.npmjs.org/mocha/0.3.2", + "0.3.3": "http://registry.npmjs.org/mocha/0.3.3", + "0.3.4": "http://registry.npmjs.org/mocha/0.3.4", + "0.3.6": "http://registry.npmjs.org/mocha/0.3.6" + }, + "dist": { + "0.0.1-alpha1": { + "shasum": "f4f727ba1d87aa71c2965d3850f255ef6d058006", + "tarball": "http://registry.npmjs.org/mocha/-/mocha-0.0.1-alpha1.tgz" + }, + "0.0.1-alpha2": { + "shasum": "fb65ff63e8e6c5be1b1663479b172391f2948fdb", + "tarball": "http://registry.npmjs.org/mocha/-/mocha-0.0.1-alpha2.tgz" + }, + "0.0.1-alpha3": { + "shasum": "aff433949329405befa13fce5b02a3dee9ad3152", + "tarball": "http://registry.npmjs.org/mocha/-/mocha-0.0.1-alpha3.tgz" + }, + "0.0.1-alpha4": { + "shasum": "4f6d992c90808b0452c4e3ad7993841dbb66dbaa", + "tarball": "http://registry.npmjs.org/mocha/-/mocha-0.0.1-alpha4.tgz" + }, + "0.0.1-alpha5": { + "shasum": "9e15d2dbcb1e34140f50c97eb92a88adeddeac5f", + "tarball": "http://registry.npmjs.org/mocha/-/mocha-0.0.1-alpha5.tgz" + }, + "0.0.1-alpha6": { + "shasum": "f05e6a4430ed2333e025ad764f582a4b28ce97bc", + "tarball": "http://registry.npmjs.org/mocha/-/mocha-0.0.1-alpha6.tgz" + }, + "0.0.1": { + "shasum": "b206423bac42401cb26484d64e9dda3e1b5e2214", + "tarball": "http://registry.npmjs.org/mocha/-/mocha-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "7039e712eb2bbbff2adc194bad4dbdd1b6284399", + "tarball": "http://registry.npmjs.org/mocha/-/mocha-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "68a46b6a8b38bc4f549741d2c648f65d69a91d78", + "tarball": "http://registry.npmjs.org/mocha/-/mocha-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "f1799d5d0a109ee20ba94e240327d0aedc9d49ae", + "tarball": "http://registry.npmjs.org/mocha/-/mocha-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "329e6dee199525c576232abf2b07c34a6ca8b3bd", + "tarball": "http://registry.npmjs.org/mocha/-/mocha-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "0e5af7df2f8008f4f895ef225dcbd57b768291db", + "tarball": "http://registry.npmjs.org/mocha/-/mocha-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "b4828b83ce5c184b9709683f0a6d848ba49084a4", + "tarball": "http://registry.npmjs.org/mocha/-/mocha-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "7bbe19e6a903aec867f8eab71a740214a49d5530", + "tarball": "http://registry.npmjs.org/mocha/-/mocha-0.0.8.tgz" + }, + "0.1.0": { + "shasum": "686acd6758d771a458ab57605d507fa66dd5ec39", + "tarball": "http://registry.npmjs.org/mocha/-/mocha-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "b9b7560b42fcede5f76bfb17b2b920ec3c7f754a", + "tarball": "http://registry.npmjs.org/mocha/-/mocha-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "9ca7622226f26638c940cd68b4d49583748cea37", + "tarball": "http://registry.npmjs.org/mocha/-/mocha-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "6c5fe0f1c6267406b71b1bfa8278a39a6c95791c", + "tarball": "http://registry.npmjs.org/mocha/-/mocha-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "0663e195dc1f0da8134e23243905f73123d3b1ee", + "tarball": "http://registry.npmjs.org/mocha/-/mocha-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "ecc80d6f715c2c25225d88965ed7ef9ccbfd7c69", + "tarball": "http://registry.npmjs.org/mocha/-/mocha-0.3.3.tgz" + }, + "0.3.4": { + "shasum": "81063937cc888b1a981f259315d8880c8e618a06", + "tarball": "http://registry.npmjs.org/mocha/-/mocha-0.3.4.tgz" + }, + "0.3.6": { + "shasum": "c4a955fe5c24f899069d977015ea192a372c42dc", + "tarball": "http://registry.npmjs.org/mocha/-/mocha-0.3.6.tgz" + } + }, + "keywords": [ + "test", + "bdd", + "tdd", + "tap" + ], + "url": "http://registry.npmjs.org/mocha/" + }, + "mochiscript": { + "name": "mochiscript", + "description": "Javascript Dessert", + "dist-tags": { + "latest": "0.4.3" + }, + "maintainers": [ + { + "name": "jeffsu", + "email": "me@jeffsu.com" + } + ], + "time": { + "modified": "2011-11-28T16:27:28.083Z", + "created": "2011-09-26T05:53:37.889Z", + "0.4.0-pre1": "2011-09-26T05:53:39.144Z", + "0.4.0-pre2": "2011-09-26T16:46:45.660Z", + "0.4.0-pre3": "2011-10-27T11:15:53.544Z", + "0.4.0-pre4": "2011-10-28T03:02:13.456Z", + "0.4.0-pre5": "2011-10-28T13:21:48.169Z", + "0.4.0-pre6": "2011-10-28T14:04:43.967Z", + "0.4.0-pre7": "2011-10-28T22:27:36.938Z", + "0.4.0-pre8": "2011-10-28T23:42:07.297Z", + "0.4.0-pre9": "2011-10-30T00:38:33.224Z", + "0.4.0-pre10": "2011-10-30T03:03:59.792Z", + "0.4.0-pre12": "2011-10-31T12:44:01.100Z", + "0.4.0-pre13": "2011-11-01T03:16:05.178Z", + "0.4.0-pre14": "2011-11-01T03:50:49.860Z", + "0.4.0": "2011-11-02T03:11:31.517Z", + "0.4.1": "2011-11-03T05:26:36.525Z", + "0.4.2": "2011-11-11T04:45:01.343Z", + "0.4.3-pre1": "2011-11-14T04:49:05.101Z", + "0.4.3-pre2": "2011-11-14T06:50:36.057Z", + "0.4.3-pre3": "2011-11-21T16:29:02.637Z", + "0.4.3-pre4": "2011-11-21T16:31:56.130Z", + "0.4.3-pre5": "2011-11-24T02:02:26.428Z", + "0.4.3": "2011-11-28T16:27:28.083Z" + }, + "author": { + "name": "Jeff Su" + }, + "repository": { + "type": "git", + "url": "git://github.com/jeffsu/mochiscript.git" + }, + "versions": { + "0.4.0-pre1": "http://registry.npmjs.org/mochiscript/0.4.0-pre1", + "0.4.0-pre2": "http://registry.npmjs.org/mochiscript/0.4.0-pre2", + "0.4.0-pre3": "http://registry.npmjs.org/mochiscript/0.4.0-pre3", + "0.4.0-pre4": "http://registry.npmjs.org/mochiscript/0.4.0-pre4", + "0.4.0-pre5": "http://registry.npmjs.org/mochiscript/0.4.0-pre5", + "0.4.0-pre6": "http://registry.npmjs.org/mochiscript/0.4.0-pre6", + "0.4.0-pre7": "http://registry.npmjs.org/mochiscript/0.4.0-pre7", + "0.4.0-pre8": "http://registry.npmjs.org/mochiscript/0.4.0-pre8", + "0.4.0-pre9": "http://registry.npmjs.org/mochiscript/0.4.0-pre9", + "0.4.0-pre10": "http://registry.npmjs.org/mochiscript/0.4.0-pre10", + "0.4.0-pre12": "http://registry.npmjs.org/mochiscript/0.4.0-pre12", + "0.4.0-pre13": "http://registry.npmjs.org/mochiscript/0.4.0-pre13", + "0.4.0-pre14": "http://registry.npmjs.org/mochiscript/0.4.0-pre14", + "0.4.0": "http://registry.npmjs.org/mochiscript/0.4.0", + "0.4.1": "http://registry.npmjs.org/mochiscript/0.4.1", + "0.4.2": "http://registry.npmjs.org/mochiscript/0.4.2", + "0.4.3-pre1": "http://registry.npmjs.org/mochiscript/0.4.3-pre1", + "0.4.3-pre2": "http://registry.npmjs.org/mochiscript/0.4.3-pre2", + "0.4.3-pre3": "http://registry.npmjs.org/mochiscript/0.4.3-pre3", + "0.4.3-pre4": "http://registry.npmjs.org/mochiscript/0.4.3-pre4", + "0.4.3-pre5": "http://registry.npmjs.org/mochiscript/0.4.3-pre5", + "0.4.3": "http://registry.npmjs.org/mochiscript/0.4.3" + }, + "dist": { + "0.4.0-pre1": { + "shasum": "58bb9a12d36a8c27efa57d27e08e0b7ceadff593", + "tarball": "http://registry.npmjs.org/mochiscript/-/mochiscript-0.4.0-pre1.tgz" + }, + "0.4.0-pre2": { + "shasum": "de4d31a5df942222a1167bbdf204254b631ab4af", + "tarball": "http://registry.npmjs.org/mochiscript/-/mochiscript-0.4.0-pre2.tgz" + }, + "0.4.0-pre3": { + "shasum": "49ea22084215b3cee58e2e7c47347550a962ff8d", + "tarball": "http://registry.npmjs.org/mochiscript/-/mochiscript-0.4.0-pre3.tgz" + }, + "0.4.0-pre4": { + "shasum": "fd0d4669bf5dbd6e2ec808e6c428d7caea083703", + "tarball": "http://registry.npmjs.org/mochiscript/-/mochiscript-0.4.0-pre4.tgz" + }, + "0.4.0-pre5": { + "shasum": "f2cf340a8eade368e0ef448bfd570cf3cd972b11", + "tarball": "http://registry.npmjs.org/mochiscript/-/mochiscript-0.4.0-pre5.tgz" + }, + "0.4.0-pre6": { + "shasum": "ab05167797ac99b968e9be83d6931bb1c8480a1b", + "tarball": "http://registry.npmjs.org/mochiscript/-/mochiscript-0.4.0-pre6.tgz" + }, + "0.4.0-pre7": { + "shasum": "b7777a83fa50f51e06c7a469fd91b81e3fed831e", + "tarball": "http://registry.npmjs.org/mochiscript/-/mochiscript-0.4.0-pre7.tgz" + }, + "0.4.0-pre8": { + "shasum": "b86456746f5d14d88a712610a3345716aa09d5b5", + "tarball": "http://registry.npmjs.org/mochiscript/-/mochiscript-0.4.0-pre8.tgz" + }, + "0.4.0-pre9": { + "shasum": "115c44d5599acdfb4d6d3ff0a316c41b5cedb8fc", + "tarball": "http://registry.npmjs.org/mochiscript/-/mochiscript-0.4.0-pre9.tgz" + }, + "0.4.0-pre10": { + "shasum": "467b946eab165eb71c76aad321ce1bff6902f5d6", + "tarball": "http://registry.npmjs.org/mochiscript/-/mochiscript-0.4.0-pre10.tgz" + }, + "0.4.0-pre12": { + "shasum": "82a3e7566f8a6be5b31f0aaa14fdba551493e27b", + "tarball": "http://registry.npmjs.org/mochiscript/-/mochiscript-0.4.0-pre12.tgz" + }, + "0.4.0-pre13": { + "shasum": "ec3f37a9640a14a6d8a8bf9297fe4fdb8f0f0374", + "tarball": "http://registry.npmjs.org/mochiscript/-/mochiscript-0.4.0-pre13.tgz" + }, + "0.4.0-pre14": { + "shasum": "5e9faa6ac15c6ed7c033c58533377cefef4154c5", + "tarball": "http://registry.npmjs.org/mochiscript/-/mochiscript-0.4.0-pre14.tgz" + }, + "0.4.0": { + "shasum": "b049e2ecf833a16dd9b60ae2ec020fe183647408", + "tarball": "http://registry.npmjs.org/mochiscript/-/mochiscript-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "77c33359eb83a48e7c5f753b85e929b1691e7ce5", + "tarball": "http://registry.npmjs.org/mochiscript/-/mochiscript-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "3d39bcae69bcd23048a9762f0888d3b2c6b8a78b", + "tarball": "http://registry.npmjs.org/mochiscript/-/mochiscript-0.4.2.tgz" + }, + "0.4.3-pre1": { + "shasum": "e999b4f5be1ab72369c8ded50d4d51fe3904e0ec", + "tarball": "http://registry.npmjs.org/mochiscript/-/mochiscript-0.4.3-pre1.tgz" + }, + "0.4.3-pre2": { + "shasum": "845cc439c099d3bb0c4919cf4cd1894ce505a6bf", + "tarball": "http://registry.npmjs.org/mochiscript/-/mochiscript-0.4.3-pre2.tgz" + }, + "0.4.3-pre3": { + "shasum": "eeedca3ebceaa20e83b5c3a2bf4c8201fc6a5cbe", + "tarball": "http://registry.npmjs.org/mochiscript/-/mochiscript-0.4.3-pre3.tgz" + }, + "0.4.3-pre4": { + "shasum": "136e07a49d4689c29bab51b8fa1ea71a055e77d2", + "tarball": "http://registry.npmjs.org/mochiscript/-/mochiscript-0.4.3-pre4.tgz" + }, + "0.4.3-pre5": { + "shasum": "d43e21d63d38ba2367ee493c8fc58edb4088527b", + "tarball": "http://registry.npmjs.org/mochiscript/-/mochiscript-0.4.3-pre5.tgz" + }, + "0.4.3": { + "shasum": "05bd4160242c7df3baa18eb9462dd9cebd0a5c08", + "tarball": "http://registry.npmjs.org/mochiscript/-/mochiscript-0.4.3.tgz" + } + }, + "keywords": [ + "javascript", + "language", + "mochiscript", + "compiler" + ], + "url": "http://registry.npmjs.org/mochiscript/" + }, + "mock": { + "name": "mock", + "description": "Ability to mock modules properly like you would in other langages for true unit tests.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "aikar", + "email": "aikar@aikar.co" + } + ], + "time": { + "modified": "2011-04-14T00:15:58.933Z", + "created": "2011-04-14T00:15:58.789Z", + "0.1.0": "2011-04-14T00:15:58.933Z" + }, + "author": { + "name": "Aikar", + "email": "aikar@aikar.co" + }, + "repository": { + "type": "git", + "url": "git://github.com/aikar/mock.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/mock/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "e45fe73a91d6a0263ba3bb45ae97758f9b55d868", + "tarball": "http://registry.npmjs.org/mock/-/mock-0.1.0.tgz" + } + }, + "keywords": [ + "unit", + "test", + "phpunit", + "mock", + "mocking", + "xunit" + ], + "url": "http://registry.npmjs.org/mock/" + }, + "mock-request": { + "name": "mock-request", + "description": "A simple testing tool for mocking HTTP sequences of request / response pairs in node.js", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + } + ], + "time": { + "modified": "2011-08-10T18:28:50.676Z", + "created": "2011-06-25T08:28:39.207Z", + "0.1.0": "2011-06-25T08:28:39.497Z", + "0.1.1": "2011-07-15T14:36:40.395Z", + "0.1.2": "2011-08-10T18:28:50.676Z" + }, + "author": { + "name": "Nodejitsu Inc.", + "email": "info@nodejitsu.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/nodejitsu/mock-request.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/mock-request/0.1.0", + "0.1.1": "http://registry.npmjs.org/mock-request/0.1.1", + "0.1.2": "http://registry.npmjs.org/mock-request/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "eceb4e33dcc03e9078e4f80bdecdfa860672c791", + "tarball": "http://registry.npmjs.org/mock-request/-/mock-request-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "c68afa5aa4fb7e4b49aa349a4ccd686390dd2c4e", + "tarball": "http://registry.npmjs.org/mock-request/-/mock-request-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "828c755c8f498c5701bac69da3e7aaa6d78950dc", + "tarball": "http://registry.npmjs.org/mock-request/-/mock-request-0.1.2.tgz" + } + }, + "keywords": [ + "mock", + "mocking", + "tools", + "testing" + ], + "url": "http://registry.npmjs.org/mock-request/" + }, + "mock-request-response": { + "name": "mock-request-response", + "description": "Mock request and response objects for node.js", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "JerrySievert", + "email": "code@legitimatesounding.com" + } + ], + "time": { + "modified": "2011-08-31T18:50:56.409Z", + "created": "2011-08-30T17:37:56.458Z", + "0.1.0": "2011-08-30T17:37:57.167Z", + "0.1.1": "2011-08-31T18:50:56.409Z" + }, + "author": { + "name": "Jerry Sievert", + "email": "code@legitimatesounding.com", + "url": "http://legitimatesounding.com/blog/" + }, + "repository": { + "type": "git", + "url": "git://github.com/JerrySievert/mock-request-response.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/mock-request-response/0.1.0", + "0.1.1": "http://registry.npmjs.org/mock-request-response/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "48c1e1d0b3ff975bc1035f96fb8c0c7ecf5917dc", + "tarball": "http://registry.npmjs.org/mock-request-response/-/mock-request-response-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "fb6242ddf3df0342fbd787a069c99f321d4a2870", + "tarball": "http://registry.npmjs.org/mock-request-response/-/mock-request-response-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/mock-request-response/" + }, + "mockdata": { + "name": "mockdata", + "description": "a library to generate mock data", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "jga", + "email": "me@jga.me" + } + ], + "time": { + "modified": "2011-11-08T01:33:55.039Z", + "created": "2011-11-04T18:05:59.088Z", + "0.0.1": "2011-11-04T18:06:00.257Z", + "0.0.2": "2011-11-04T21:14:50.391Z", + "0.0.3": "2011-11-08T01:33:55.039Z" + }, + "author": { + "name": "Greg Allen", + "email": "@jgaui", + "url": "http://jga.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/jgallen23/mockdata.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mockdata/0.0.1", + "0.0.2": "http://registry.npmjs.org/mockdata/0.0.2", + "0.0.3": "http://registry.npmjs.org/mockdata/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "1f7a1c7188f6874416e334a1c18a3810f9061c1e", + "tarball": "http://registry.npmjs.org/mockdata/-/mockdata-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "fe87dd787d2eadd180771e93ad96d684b6af4844", + "tarball": "http://registry.npmjs.org/mockdata/-/mockdata-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "90dd5feb9806ae3abceb0a814da93abc0ee33d68", + "tarball": "http://registry.npmjs.org/mockdata/-/mockdata-0.0.3.tgz" + } + }, + "keywords": [ + "mock", + "data" + ], + "url": "http://registry.npmjs.org/mockdata/" + }, + "mockery": { + "name": "mockery", + "description": "Simplifying the use of mocks with Node.js", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "mfncooper", + "email": "mfncooper@gmail.com" + } + ], + "time": { + "modified": "2011-11-17T17:01:36.883Z", + "created": "2011-10-11T04:44:42.851Z", + "1.0.0": "2011-10-11T04:44:44.231Z", + "1.0.1": "2011-11-17T17:01:36.883Z" + }, + "author": { + "name": "Martin Cooper", + "email": "mfncooper@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mfncooper/mockery.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/mockery/1.0.0", + "1.0.1": "http://registry.npmjs.org/mockery/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "4459632080be9ed03fd7bdc1edcf76d96fb15b87", + "tarball": "http://registry.npmjs.org/mockery/-/mockery-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "ac04f70f2a85ecd35b563f7fdda54e01407daf7e", + "tarball": "http://registry.npmjs.org/mockery/-/mockery-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/mockery/" + }, + "mocket": { + "name": "mocket", + "description": "Mocking library for node.js, in the spirit of Mockito", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "davethehat", + "email": "david@teamsandtchnology.com" + } + ], + "time": { + "modified": "2011-11-25T13:44:18.504Z", + "created": "2011-08-17T17:19:06.583Z", + "0.0.1": "2011-08-17T17:19:08.048Z", + "0.0.2": "2011-08-18T08:08:55.053Z", + "0.0.3": "2011-08-18T14:38:32.938Z", + "0.0.4": "2011-08-19T06:58:47.533Z", + "0.0.5": "2011-08-19T08:34:11.880Z", + "0.1.0": "2011-08-19T12:51:19.259Z", + "0.1.1": "2011-11-19T19:11:45.097Z", + "0.1.2": "2011-11-24T16:38:41.471Z", + "0.1.3": "2011-11-25T13:44:18.504Z" + }, + "author": { + "name": "David Harvey", + "email": "david@teamsandtechnology.com", + "url": "http://www.teamsandtechnology.com" + }, + "repository": { + "url": "git@github.com:davethehat/Mocket.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mocket/0.0.1", + "0.0.2": "http://registry.npmjs.org/mocket/0.0.2", + "0.0.3": "http://registry.npmjs.org/mocket/0.0.3", + "0.0.4": "http://registry.npmjs.org/mocket/0.0.4", + "0.0.5": "http://registry.npmjs.org/mocket/0.0.5", + "0.1.0": "http://registry.npmjs.org/mocket/0.1.0", + "0.1.1": "http://registry.npmjs.org/mocket/0.1.1", + "0.1.2": "http://registry.npmjs.org/mocket/0.1.2", + "0.1.3": "http://registry.npmjs.org/mocket/0.1.3" + }, + "dist": { + "0.0.1": { + "shasum": "61857205e579595c5e853537c52b70b254cc2985", + "tarball": "http://registry.npmjs.org/mocket/-/mocket-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "809ef9c93634e61a35f74c52f3c7947822bd796c", + "tarball": "http://registry.npmjs.org/mocket/-/mocket-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "92e8899aeb8d3e65bc7b248d1383183c280e362e", + "tarball": "http://registry.npmjs.org/mocket/-/mocket-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "2a5172994e40ece919ab09232800fbe1529d72c8", + "tarball": "http://registry.npmjs.org/mocket/-/mocket-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "379dfad00f0a48da34bbaa9a77463b40156b4d05", + "tarball": "http://registry.npmjs.org/mocket/-/mocket-0.0.5.tgz" + }, + "0.1.0": { + "shasum": "8b4987eaa7162ca47f41df54684aa2b3272a69e0", + "tarball": "http://registry.npmjs.org/mocket/-/mocket-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "5d96f82380ddca160981f24cb47fc5c7671b6199", + "tarball": "http://registry.npmjs.org/mocket/-/mocket-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "69f8362b1f12377925547cca129039ebc6a9fc75", + "tarball": "http://registry.npmjs.org/mocket/-/mocket-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "01f3c39dfe08520a5fd9d9b2941b9fe650af388f", + "tarball": "http://registry.npmjs.org/mocket/-/mocket-0.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/mocket/" + }, + "mockjaxify": { + "name": "mockjaxify", + "description": "A NPM Wrapper for jquery.mockjax", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "rodriguezartav", + "email": "roberto@rodriguezartav.com" + } + ], + "time": { + "modified": "2011-10-31T03:35:25.444Z", + "created": "2011-10-31T03:23:50.160Z", + "0.0.1": "2011-10-31T03:35:25.444Z" + }, + "author": { + "name": "Roberto Rodriguez", + "email": "roberto@rodriguezartav.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/rodriguezartav/mockjaxify.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mockjaxify/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "8280fc1880b693fe8211f398ef0d3a36fc117bab", + "tarball": "http://registry.npmjs.org/mockjaxify/-/mockjaxify-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/mockjaxify/" + }, + "modbus-stack": { + "name": "modbus-stack", + "description": "A `StreamStack` implementation of the MODBUS protocol.", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "TooTallNate", + "email": "nathan@tootallnate.net" + } + ], + "author": { + "name": "Nathan Rajlich", + "email": "nathan@tootallnate.net" + }, + "time": { + "modified": "2011-03-07T23:28:47.291Z", + "created": "2011-01-05T19:18:56.761Z", + "0.1.0": "2011-01-05T19:18:56.761Z", + "0.2.0": "2011-01-05T19:18:56.761Z", + "0.2.1": "2011-03-07T23:28:47.291Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/modbus-stack/0.1.0", + "0.2.0": "http://registry.npmjs.org/modbus-stack/0.2.0", + "0.2.1": "http://registry.npmjs.org/modbus-stack/0.2.1" + }, + "dist": { + "0.1.0": { + "shasum": "11824ce43af510987aa4d369b9cc3f70da97108c", + "tarball": "http://registry.npmjs.org/modbus-stack/-/modbus-stack-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "f59675324ad036249dd1d368e974268976fcd9ae", + "tarball": "http://registry.npmjs.org/modbus-stack/-/modbus-stack-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "071643a8b28b2ec6e052c7376df80883ea7e1cb0", + "tarball": "http://registry.npmjs.org/modbus-stack/-/modbus-stack-0.2.1.tgz" + } + }, + "keywords": [ + "MODBUS", + "protocol", + "StreamStack" + ], + "url": "http://registry.npmjs.org/modbus-stack/" + }, + "modef": { + "name": "modef", + "description": "Helper for defining connected models in mongoose", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "# modef\n\n## Connect Mongoose\n\tvar mongoose = require('mongoose');\n\tvar mongooseDb = mongoose.connect('mongodb://localhost/blog');\n\n\n## Require Modef\n\tvar modef = require('modef');\n\tvar model\t= modef.model,\n\t\tcommon\t= modef.common,\n\t\tcreate\t= modef.create\n\t;\n\n\n## Example Usage\n\tvar Author = {\n\t\tusername: { type: String }\n\t};\n\n\t// Common schema for several entities\n\tvar PostAndComment = {\n\t\tbody: { type: String },\n\t\tdate: { type: Date, default: function(){ return new Date(); } }\n\t};\n\n\tvar Picture = {\n\t\turl: { type: String }\n\t};\n\n\t// one-to-many connections imply opposite many-to-one connection\n\t// Picture-Post has many-to-many connection\n\t// model('', *, MongooseSchema)\n\tmodel('Author' , Author);\n\tmodel('Post' , 'Author', ['Picture'], PostAndComment);\n\tmodel('Comment', 'Post' , 'Author' , PostAndComment);\n\tmodel('Picture', 'Author', ['Post'] , Picture);\n\n\t// Fields common to all models\n\tcommon('name', { type: String, index: true });\n\n\tcreate();\n\n\n## View your models\n\tmodef.printHierarchies();\n\n\n\tAuthor (root)\n\t `- Post\n\t | `- Picture -> Post\n\t | `- Comment\n\t `- Comment\n\t `- Picture\n\t `- Post -> Picture\n\t `- Comment\n\n\n## Use defined Mongoose Models\n\t// modef exports mongoose models\n\tvar post = new modef['Post']();\n\tpost.body = 'Lorem ipsum dolor sit amet, consectetur...';\n\tpost.save();\n\n\tvar author = new modef['Author']();\n\tauthor.name = 'John Author';\n\tauthor.username = 'john.author';\n\tauthor.posts.push(post);\n\tauthor.save();\n", + "maintainers": [ + { + "name": "rouzwawi", + "email": "rouzwawi@gmail.com" + } + ], + "time": { + "modified": "2011-11-15T14:15:58.262Z", + "created": "2011-11-15T14:15:56.567Z", + "0.1.0": "2011-11-15T14:15:58.262Z" + }, + "author": { + "name": "Rouzbeh Delavari", + "email": "rouzwawi@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/rouzwawi/modef.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/modef/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "779f4bfb4bdae93ce55e1e55ddbc4be5cccdf02a", + "tarball": "http://registry.npmjs.org/modef/-/modef-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/modef/" + }, + "model": { + "name": "model", + "description": "ModelJS", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "syntacticx", + "email": "ryan@syntacticx.com" + } + ], + "time": { + "modified": "2011-02-17T22:46:01.710Z", + "created": "2011-02-17T22:46:01.491Z", + "0.0.1": "2011-02-17T22:46:01.710Z" + }, + "author": { + "name": "Syntacticx" + }, + "repository": { + "type": "git", + "url": "git://github.com/syntacticx/modeljs.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/model/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "211f242af819bd4458433e6ceed4e2449c315e06", + "tarball": "http://registry.npmjs.org/model/-/model-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/model/" + }, + "models": { + "name": "models", + "description": "M form MVC", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "gozala", + "email": "rfobic@gmail.com" + } + ], + "time": { + "modified": "2011-07-08T17:25:40.052Z", + "created": "2011-04-22T12:59:28.534Z", + "0.0.1": "2011-04-22T12:59:28.901Z", + "0.1.0": "2011-06-10T16:10:24.089Z", + "0.2.0": "2011-07-08T17:25:40.052Z" + }, + "author": { + "name": "Irakli Gozalishvili", + "email": "rfobic@gmail.com", + "url": "http://jeditoolkit.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Gozala/models.git", + "web": "https://github.com/Gozala/models" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/models/0.0.1", + "0.1.0": "http://registry.npmjs.org/models/0.1.0", + "0.2.0": "http://registry.npmjs.org/models/0.2.0" + }, + "dist": { + "0.0.1": { + "shasum": "5b5b55a97bc4a253d8c1c2afea62153f274f431a", + "tarball": "http://registry.npmjs.org/models/-/models-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "8cbed9315766f53921832811449c2d97a72986a5", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.16-darwin-10.7.0": { + "shasum": "a8dd42f076020c388cba008de09e4ef90e7f9110", + "tarball": "http://registry.npmjs.org/models/-/models-0.1.0-0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.16-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/models/-/models-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "31d6e13cbc30fde9f8edb4de98b0e5bed0988c7c", + "tarball": "http://registry.npmjs.org/models/-/models-0.2.0.tgz" + } + }, + "keywords": [ + "mvc", + "model", + "commonjs" + ], + "url": "http://registry.npmjs.org/models/" + }, + "modestmaps": { + "name": "modestmaps", + "description": "a display and interaction library for tile-based maps", + "dist-tags": { + "latest": "0.21.0" + }, + "maintainers": [ + { + "name": "tmcw", + "email": "macwright@gmail.com" + }, + { + "name": "randometc", + "email": "tom@tom-carden.co.uk" + } + ], + "time": { + "modified": "2011-10-31T16:40:55.694Z", + "created": "2011-06-03T15:48:49.822Z", + "0.17.0": "2011-06-03T15:48:49.974Z", + "0.18.3": "2011-08-30T14:23:15.591Z", + "0.18.4": "2011-09-01T18:53:39.416Z", + "0.18.5": "2011-10-07T14:55:38.122Z", + "0.19.0": "2011-10-14T20:31:59.179Z", + "0.19.1": "2011-10-19T18:59:27.474Z", + "0.20.0": "2011-10-28T18:52:16.762Z", + "0.21.0": "2011-10-31T16:40:55.694Z" + }, + "author": { + "name": "Tom Carden", + "email": "tom@tom-carden.co.uk", + "url": "http://www.tom-carden.co.uk/" + }, + "versions": { + "0.17.0": "http://registry.npmjs.org/modestmaps/0.17.0", + "0.18.3": "http://registry.npmjs.org/modestmaps/0.18.3", + "0.18.4": "http://registry.npmjs.org/modestmaps/0.18.4", + "0.18.5": "http://registry.npmjs.org/modestmaps/0.18.5", + "0.19.0": "http://registry.npmjs.org/modestmaps/0.19.0", + "0.19.1": "http://registry.npmjs.org/modestmaps/0.19.1", + "0.20.0": "http://registry.npmjs.org/modestmaps/0.20.0", + "0.21.0": "http://registry.npmjs.org/modestmaps/0.21.0" + }, + "dist": { + "0.17.0": { + "shasum": "ae0d0bc83fc58d2cd23c3ec0625e8afbe436f779", + "tarball": "http://registry.npmjs.org/modestmaps/-/modestmaps-0.17.0.tgz" + }, + "0.18.3": { + "shasum": "154d01803fd2d7d90b727f93aa89095fdee4491f", + "tarball": "http://registry.npmjs.org/modestmaps/-/modestmaps-0.18.3.tgz" + }, + "0.18.4": { + "shasum": "4c1dceffdf0d7e0cc6325986afa1698f09966fa2", + "tarball": "http://registry.npmjs.org/modestmaps/-/modestmaps-0.18.4.tgz" + }, + "0.18.5": { + "shasum": "1d5f2a75158d785598690eb1442b71f0f5671e25", + "tarball": "http://registry.npmjs.org/modestmaps/-/modestmaps-0.18.5.tgz" + }, + "0.19.0": { + "shasum": "c7015a4a7547804a06c15fd8e11ebc73822a07a2", + "tarball": "http://registry.npmjs.org/modestmaps/-/modestmaps-0.19.0.tgz" + }, + "0.19.1": { + "shasum": "5469428b682070c2a8511ef35157681435798538", + "tarball": "http://registry.npmjs.org/modestmaps/-/modestmaps-0.19.1.tgz" + }, + "0.20.0": { + "shasum": "7544b03e0ce28182d5622b7a9de71ef40a40dd53", + "tarball": "http://registry.npmjs.org/modestmaps/-/modestmaps-0.20.0.tgz" + }, + "0.21.0": { + "shasum": "2198bc46d19367a981f15e8a7153131325c6c520", + "tarball": "http://registry.npmjs.org/modestmaps/-/modestmaps-0.21.0.tgz" + } + }, + "keywords": [ + "map", + "geo", + "browser" + ], + "url": "http://registry.npmjs.org/modestmaps/" + }, + "modjewel": { + "name": "modjewel", + "description": "modjewel provides a require() function for use with CommonJS modules, designed for use in web browsers.", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "pmuellr", + "email": "pmuellr@gmail.com" + } + ], + "time": { + "modified": "2011-05-17T20:50:47.016Z", + "created": "2011-05-17T20:50:46.668Z", + "0.2.0": "2011-05-17T20:50:47.016Z" + }, + "author": { + "name": "Patrick Mueller" + }, + "repository": { + "type": "git", + "url": "git://github.com/pmuellr/modjewel.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/modjewel/0.2.0" + }, + "dist": { + "0.2.0": { + "shasum": "3033dc6713b23221fffda6802b2ede20b85b078f", + "tarball": "http://registry.npmjs.org/modjewel/-/modjewel-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/modjewel/" + }, + "modlr": { + "name": "modlr", + "description": "Framework for quickly creating models with Rest/Database bindings", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "penguinboy", + "email": "raynerw@gmail.com" + } + ], + "time": { + "modified": "2011-04-18T07:39:03.132Z", + "created": "2011-03-12T03:50:32.624Z", + "0.0.1": "2011-03-12T03:50:33.482Z", + "0.0.3": "2011-03-13T01:43:08.145Z", + "0.0.4": "2011-03-13T05:47:54.478Z", + "0.0.5": "2011-03-21T10:44:45.051Z" + }, + "author": { + "name": "Will Rayner", + "email": "raynerw@gmail.com", + "url": "willrayner.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/modlr/0.0.1", + "0.0.3": "http://registry.npmjs.org/modlr/0.0.3", + "0.0.5": "http://registry.npmjs.org/modlr/0.0.5", + "0.0.4": "http://registry.npmjs.org/modlr/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "130445f0683486d3fdf4609d50d143f07caa3338", + "tarball": "http://registry.npmjs.org/modlr/-/modlr-0.0.1.tgz" + }, + "0.0.3": { + "shasum": "4f5ff94c0ee7e5bf9baccc61b3eed82f671e1989", + "tarball": "http://registry.npmjs.org/modlr/-/modlr-0.0.3.tgz" + }, + "0.0.5": { + "shasum": "79f801c71d20cf467597c2ba0987fb1b67f308b1", + "tarball": "http://registry.npmjs.org/modlr/-/modlr-0.0.5.tgz" + }, + "0.0.4": { + "shasum": "89dee9daad7c55a47d282768a8e2f4acf633851d", + "tarball": "http://registry.npmjs.org/modlr/-/modlr-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/modlr/" + }, + "modul8": { + "name": "modul8", + "description": "Extensible CommonJS browser code sharing", + "dist-tags": { + "latest": "0.14.2" + }, + "maintainers": [ + { + "name": "clux", + "email": "analsandblaster@gmail.com" + } + ], + "time": { + "modified": "2011-12-07T10:51:29.600Z", + "created": "2011-10-06T08:56:38.128Z", + "0.2.2": "2011-12-07T10:51:29.600Z", + "0.3.0": "2011-12-07T10:51:29.600Z", + "0.4.0": "2011-12-07T10:51:29.600Z", + "0.5.0": "2011-12-07T10:51:29.600Z", + "0.6.0": "2011-12-07T10:51:29.600Z", + "0.6.1": "2011-12-07T10:51:29.600Z", + "0.7.0": "2011-10-28T19:14:07.268Z", + "0.8.0": "2011-10-29T11:50:50.648Z", + "0.9.1": "2011-10-29T17:28:35.057Z", + "0.9.2": "2011-10-30T08:59:45.822Z", + "0.9.3": "2011-10-30T18:00:15.506Z", + "0.10.1": "2011-11-08T10:34:07.262Z", + "0.11.0": "2011-11-09T11:07:39.714Z", + "0.11.2": "2011-11-13T13:34:20.107Z", + "0.12.0": "2011-11-13T21:42:57.963Z", + "0.13.0": "2011-11-22T18:48:00.225Z", + "0.13.1": "2011-11-24T10:43:36.661Z", + "0.14.0": "2011-11-27T13:26:25.639Z", + "0.14.1": "2011-12-01T08:04:08.299Z", + "0.14.2": "2011-12-07T10:51:29.600Z" + }, + "author": { + "name": "Eirik Albrigtsen", + "email": "analsandblaster@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/clux/modul8.git" + }, + "users": { + "clux": true + }, + "versions": { + "0.2.2": "http://registry.npmjs.org/modul8/0.2.2", + "0.3.0": "http://registry.npmjs.org/modul8/0.3.0", + "0.4.0": "http://registry.npmjs.org/modul8/0.4.0", + "0.5.0": "http://registry.npmjs.org/modul8/0.5.0", + "0.6.0": "http://registry.npmjs.org/modul8/0.6.0", + "0.6.1": "http://registry.npmjs.org/modul8/0.6.1", + "0.7.0": "http://registry.npmjs.org/modul8/0.7.0", + "0.8.0": "http://registry.npmjs.org/modul8/0.8.0", + "0.9.1": "http://registry.npmjs.org/modul8/0.9.1", + "0.9.2": "http://registry.npmjs.org/modul8/0.9.2", + "0.9.3": "http://registry.npmjs.org/modul8/0.9.3", + "0.10.1": "http://registry.npmjs.org/modul8/0.10.1", + "0.11.0": "http://registry.npmjs.org/modul8/0.11.0", + "0.11.2": "http://registry.npmjs.org/modul8/0.11.2", + "0.12.0": "http://registry.npmjs.org/modul8/0.12.0", + "0.13.0": "http://registry.npmjs.org/modul8/0.13.0", + "0.13.1": "http://registry.npmjs.org/modul8/0.13.1", + "0.14.0": "http://registry.npmjs.org/modul8/0.14.0", + "0.14.1": "http://registry.npmjs.org/modul8/0.14.1", + "0.14.2": "http://registry.npmjs.org/modul8/0.14.2" + }, + "dist": { + "0.2.2": { + "shasum": "6bcbf6188ff36f6a161e0151bfff87515919eb4f", + "tarball": "http://registry.npmjs.org/modul8/-/modul8-0.2.2.tgz" + }, + "0.3.0": { + "shasum": "aaaaafb7cb63f6b4a87da6b188f9ddf057144b0a", + "tarball": "http://registry.npmjs.org/modul8/-/modul8-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "2ccd3e2dcec1f86b808dda747f87bc7c58c0fce8", + "tarball": "http://registry.npmjs.org/modul8/-/modul8-0.4.0.tgz" + }, + "0.5.0": { + "shasum": "02e8ddb5677e45923fc34fdb21c8ca93239d6ca0", + "tarball": "http://registry.npmjs.org/modul8/-/modul8-0.5.0.tgz" + }, + "0.6.0": { + "shasum": "f69f0e995206bd74cb06e0d3f024dd20271a41c3", + "tarball": "http://registry.npmjs.org/modul8/-/modul8-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "762f9af9f4159c5e8a59d4945c7957e6a864b554", + "tarball": "http://registry.npmjs.org/modul8/-/modul8-0.6.1.tgz" + }, + "0.7.0": { + "shasum": "af6c8902a889d16c0870b88d34451c277873421a", + "tarball": "http://registry.npmjs.org/modul8/-/modul8-0.7.0.tgz" + }, + "0.8.0": { + "shasum": "32608244c45183dd6187d7250fc1bf8ee1f77031", + "tarball": "http://registry.npmjs.org/modul8/-/modul8-0.8.0.tgz" + }, + "0.9.1": { + "shasum": "c5ffcf78c51210007b268d892545c9336b7888d6", + "tarball": "http://registry.npmjs.org/modul8/-/modul8-0.9.1.tgz" + }, + "0.9.2": { + "shasum": "718b320bc85ce4b95639fb551edfacdc01a7f376", + "tarball": "http://registry.npmjs.org/modul8/-/modul8-0.9.2.tgz" + }, + "0.9.3": { + "shasum": "9dc0d3420d963297ff493d17c5850581ad6ae4f0", + "tarball": "http://registry.npmjs.org/modul8/-/modul8-0.9.3.tgz" + }, + "0.10.1": { + "shasum": "620b179cdc15de70bab6529a02f81331c33d15cd", + "tarball": "http://registry.npmjs.org/modul8/-/modul8-0.10.1.tgz" + }, + "0.11.0": { + "shasum": "918f564dd3223015b0b2a8cc3b644c4c6c71b116", + "tarball": "http://registry.npmjs.org/modul8/-/modul8-0.11.0.tgz" + }, + "0.11.2": { + "shasum": "8cafab3ce8a406a087e0e490b0978b4c23a01d94", + "tarball": "http://registry.npmjs.org/modul8/-/modul8-0.11.2.tgz" + }, + "0.12.0": { + "shasum": "a259f20f3ad07663a03067ce91863a8bf78f2d26", + "tarball": "http://registry.npmjs.org/modul8/-/modul8-0.12.0.tgz" + }, + "0.13.0": { + "shasum": "5bb491420e44e4e6d45aafe4789ef193eb3c1823", + "tarball": "http://registry.npmjs.org/modul8/-/modul8-0.13.0.tgz" + }, + "0.13.1": { + "shasum": "48bf12137620118eacf28b2e7f690893e670a743", + "tarball": "http://registry.npmjs.org/modul8/-/modul8-0.13.1.tgz" + }, + "0.14.0": { + "shasum": "18e9d38369cc8b9e38860871492f2219a18c38e1", + "tarball": "http://registry.npmjs.org/modul8/-/modul8-0.14.0.tgz" + }, + "0.14.1": { + "shasum": "79b61352703f5f782818c38f94a1de2dbe037316", + "tarball": "http://registry.npmjs.org/modul8/-/modul8-0.14.1.tgz" + }, + "0.14.2": { + "shasum": "46dc509a9d03c1f4850b684dae0281e87191c0cf", + "tarball": "http://registry.npmjs.org/modul8/-/modul8-0.14.2.tgz" + } + }, + "keywords": [ + "browser", + "require", + "commonjs", + "bundle", + "compiler", + "analyzer", + "coffee", + "javascript", + "cli" + ], + "url": "http://registry.npmjs.org/modul8/" + }, + "modulate": { + "name": "modulate", + "description": "namespaced module loader", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "_modulate_ is a very simple module loader that let's you load in namespaced modules from your app\n\nmodulate is used in **rzr**\n", + "maintainers": [ + { + "name": "fractal", + "email": "contact@wearefractal.com" + } + ], + "time": { + "modified": "2011-12-12T13:36:07.699Z", + "created": "2011-12-12T13:36:06.336Z", + "0.0.1": "2011-12-12T13:36:07.699Z" + }, + "author": { + "name": "Fractal", + "email": "contact@wearefractal.com", + "url": "http://wearefractal.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/wearefractal/modulate.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/modulate/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "7fde5f93e573015f196764057e5ba2fba3639dcd", + "tarball": "http://registry.npmjs.org/modulate/-/modulate-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/modulate/" + }, + "modulator": { + "name": "modulator", + "description": "Easy build tool for running node modules in a non-CommonJS environment.", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "# Modulator\n\nRun Node.js modules in a non-CommonJS environment, say a web browser. Do this by providing a shallow representation of the filesystem, a dummy CommonJS module api.\n\nCompiling everything into one source file. And optionally minimizing the output to a separate source file with uglify.\n\nBe able to include big dependencies like jQuery without taking forever. Super simple easy direct use. No binaries, make your own.\n\n### Installation.\n\n\tnpm install modulator\n\n## Documentation.\n\n### How to use the build tool.\n\nTo start lets say we had a file in your module/project directory called `build.js`. That way we could require the file from an other, or run it to from node.\n\n\t$ node build.js\n\nFirst we require modulator to use it.\n\n\tvar Modulator = require('modulator');\n\nBefore building a module we need to specify a minimum of three parameters.\n\n\tvar options = {\n\t\tdir: __dirname,\n\t\tname: 'myBuildName',\n\t\tfilename: __dirname + 'myBuild.js'\n\t};\n\nBy default `options.file` will be set to `\"index\"`, in this example suppose we wanted our main source file to be `./mySource.js`.\n\n\toptions.file = 'mySource';\n\nNow to seal the deal we set `options.write` to `true` which will save the compiled source to the output file once the source is ready.\n\n\toptions.write = true;\n\nFinally we can create a new instance of modulator which will automatically build required JavaScript files, packages, and modules into one source file which can be used in a browser or even a CommonJS environment as well.\n\n\tvar myBuild = new Modulator(options, function () {\n\t\tconsole.log('built myBuild.');\n\t});\n\nThis way when you run `build.js` the out file is update, otherwise it could compile the source by not touch the output file.\n\n### How to use from the browser.\n\nNow we're running `myBuild.js` in a web page.\n\n\t\n\nFrom another script on the page we can access our module's exports from `myBuild.js` from `this.myBuildName` or `window.myBuildName`.\n\n\tvar myBuild = this.myBuildName;\n\nAdditionally we can require modules and files which `myBuild.js` required.\n\n\tvar moduleFoo = myBuild.require('moduleFoo'),\n\t scriptBar = myBuild.require('./scriptBar');\n\nIf you decide you don't want myBuild polluting your global namespace you can noConflict it like you would with jQuery.\n\n\tmyBuild = this.myBuildName.noConflict();\n\n## Running Tests.\n\nInstall module dev dependencies.\n\n\t$ npm install -d\n\nInstall dev package dependencies for good measure.\n\n\t$ npm install -d ./run\n\nRun the tests.\n\n\t$ node run/test\n\n## Method Documentation.\n\n### Modulator prototype.\n\n#### init: *optional* this options `object`, callback `function`.\n\nReturns this.\n\n#### rebuild: *optional* this options `object`, callback `function`.\n\nResets the cached source and allows changes to be made to options, then re-compiles and writes to the output file. Returns this.\n\n#### compile: *optional* this options `object`, callback `function`.\n\nCompiles and caches output source, but doesn't write to any files. Returns this.\n\n#### loadFile: file path `string`, method options `object`, callback `function`.\n\nReturns this.\n\n#### loadSubmodule: module path `string`, method options `object`, callback `function`.\n\nReturns this.\n\n#### loadRawModule: module path `string`, module source string, method options `object`, callback `function`.\n\nReturns this.\n\n#### fakeModules.\n\nReturns fake-dummy modules api.\n\n#### write: callback `function`.\n\nReturns this.\n\n#### uglify: method options object, callback `function`\n\nReturns this.\n\n### Dummy Modules API.\n\n#### resolve: path `string`, from path `string`.\n\nReturns resolved path string.\n\n#### require: path `string`, from path `string`.\n\nReturns module exports.\n\n#### provide: path `string`, module factory `function`.\n\nReturns this.\n\n#### freeze: *optional* path `string`.\n\nReturns this.\n\n## MIT License\n\nCopyright (C) 2011 by Roland Poulter\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.", + "maintainers": [ + { + "name": "rolandpoulter", + "email": "rolandpoulter@gmail.com" + } + ], + "time": { + "modified": "2011-12-04T08:56:52.293Z", + "created": "2011-12-04T08:56:51.062Z", + "0.1.0": "2011-12-04T08:56:52.293Z" + }, + "author": { + "name": "Roland Poulter" + }, + "repository": { + "type": "git", + "url": "git://github.com/rolandpoulter/modulator.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/modulator/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "109b6d3223777b26c5304722a18a41f52b5879d1", + "tarball": "http://registry.npmjs.org/modulator/-/modulator-0.1.0.tgz" + } + }, + "keywords": [ + "make", + "build", + "modules", + "browser", + "require", + "module", + "exports", + "unobtrusive" + ], + "url": "http://registry.npmjs.org/modulator/" + }, + "module-grapher": { + "name": "module-grapher", + "description": "Programatically finds and resolves CommonJS module dependencies.", + "dist-tags": { + "latest": "0.9.1" + }, + "maintainers": [ + { + "name": "tobie", + "email": "tobie.langel@gmail.com" + } + ], + "time": { + "modified": "2011-12-07T15:49:26.743Z", + "created": "2011-08-11T01:01:41.312Z", + "0.3.0": "2011-12-07T11:17:28.295Z", + "0.3.1": "2011-12-07T11:17:28.295Z", + "0.4.0": "2011-12-07T11:17:28.295Z", + "0.4.1": "2011-12-07T11:17:28.295Z", + "0.4.2": "2011-12-07T11:17:28.295Z", + "0.4.3": "2011-12-07T11:17:28.295Z", + "0.5.0": "2011-12-07T11:17:28.295Z", + "0.5.1": "2011-12-07T11:17:28.295Z", + "0.5.2": "2011-12-07T11:17:28.295Z", + "0.6.0": "2011-12-07T11:17:28.295Z", + "0.7.0": "2011-12-07T11:17:28.295Z", + "0.8.0": "2011-11-14T15:57:23.412Z", + "0.9.0": "2011-12-07T11:17:28.295Z", + "0.9.1": "2011-12-07T15:49:26.743Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/tobie/module-grapher.git" + }, + "author": { + "name": "Tobie Langel", + "email": "tobie.langel@gmail.com", + "url": "http://tobielangel.com" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/module-grapher/0.3.0", + "0.3.1": "http://registry.npmjs.org/module-grapher/0.3.1", + "0.4.0": "http://registry.npmjs.org/module-grapher/0.4.0", + "0.4.1": "http://registry.npmjs.org/module-grapher/0.4.1", + "0.4.2": "http://registry.npmjs.org/module-grapher/0.4.2", + "0.4.3": "http://registry.npmjs.org/module-grapher/0.4.3", + "0.5.0": "http://registry.npmjs.org/module-grapher/0.5.0", + "0.5.1": "http://registry.npmjs.org/module-grapher/0.5.1", + "0.5.2": "http://registry.npmjs.org/module-grapher/0.5.2", + "0.6.0": "http://registry.npmjs.org/module-grapher/0.6.0", + "0.7.0": "http://registry.npmjs.org/module-grapher/0.7.0", + "0.8.0": "http://registry.npmjs.org/module-grapher/0.8.0", + "0.9.0": "http://registry.npmjs.org/module-grapher/0.9.0", + "0.9.1": "http://registry.npmjs.org/module-grapher/0.9.1" + }, + "dist": { + "0.3.0": { + "shasum": "fc7f5b8b792e796f7ce1febe8cce43f7aec2d936", + "tarball": "http://registry.npmjs.org/module-grapher/-/module-grapher-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "cd9b6f1019c6ac42ae334e74e751b0326fd90393", + "tarball": "http://registry.npmjs.org/module-grapher/-/module-grapher-0.3.1.tgz" + }, + "0.4.0": { + "shasum": "c6f79b75a2f9d9d00c56152b4e1762c84cccfd00", + "tarball": "http://registry.npmjs.org/module-grapher/-/module-grapher-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "9e3ec92d0fdc3e3c1f293164a4bf905cbcb8ba92", + "tarball": "http://registry.npmjs.org/module-grapher/-/module-grapher-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "2ca1231c7392b27e5d15fafbe94c935c8a5f600d", + "tarball": "http://registry.npmjs.org/module-grapher/-/module-grapher-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "61728e01666b2f796f4fbd4757560d639074bc7e", + "tarball": "http://registry.npmjs.org/module-grapher/-/module-grapher-0.4.3.tgz" + }, + "0.5.0": { + "shasum": "c3d6927a4faea2462908dcb965766560afaab402", + "tarball": "http://registry.npmjs.org/module-grapher/-/module-grapher-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "809a5020571ed5a8de0aac1f47e97159681b2f70", + "tarball": "http://registry.npmjs.org/module-grapher/-/module-grapher-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "927e8eecf3a1f15c1843ababc8cb21a6831a2322", + "tarball": "http://registry.npmjs.org/module-grapher/-/module-grapher-0.5.2.tgz" + }, + "0.6.0": { + "shasum": "b1c040a03900b57baa95c9996ecc8f3390a8705d", + "tarball": "http://registry.npmjs.org/module-grapher/-/module-grapher-0.6.0.tgz" + }, + "0.7.0": { + "shasum": "c5689c991b467a3b37c1f235afdaa4db87b4118a", + "tarball": "http://registry.npmjs.org/module-grapher/-/module-grapher-0.7.0.tgz" + }, + "0.8.0": { + "shasum": "2b836370f9dea6186c0e0e848ddad249347a0b05", + "tarball": "http://registry.npmjs.org/module-grapher/-/module-grapher-0.8.0.tgz" + }, + "0.9.0": { + "shasum": "957f195d75e625c2d5d38131313642b15ed48eae", + "tarball": "http://registry.npmjs.org/module-grapher/-/module-grapher-0.9.0.tgz" + }, + "0.9.1": { + "shasum": "9d2295bd4e29d79694175df090ccaf7ee70ca64f", + "tarball": "http://registry.npmjs.org/module-grapher/-/module-grapher-0.9.1.tgz" + } + }, + "url": "http://registry.npmjs.org/module-grapher/" + }, + "modulr": { + "name": "modulr", + "description": "Resolves and concatenates CommonJS module dependencies for use in the browser.", + "dist-tags": { + "latest": "0.6.1" + }, + "maintainers": [ + { + "name": "tobie", + "email": "tobie.langel@gmail.com" + } + ], + "time": { + "modified": "2011-10-12T21:23:31.276Z", + "created": "2011-08-15T18:57:49.344Z", + "0.1.0": "2011-08-15T18:57:50.685Z", + "0.1.2": "2011-08-30T23:28:40.165Z", + "0.2.0": "2011-09-12T22:22:02.615Z", + "0.3.0": "2011-09-15T22:52:53.234Z", + "0.4.1": "2011-09-22T12:01:19.151Z", + "0.4.2": "2011-09-22T16:58:26.943Z", + "0.4.3": "2011-09-22T21:57:04.446Z", + "0.4.5": "2011-10-05T17:29:47.691Z", + "0.5.0": "2011-10-07T22:01:28.956Z", + "0.6.0": "2011-10-07T23:44:17.743Z", + "0.6.1": "2011-10-12T21:23:31.276Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/tobie/modulr-node.git" + }, + "author": { + "name": "Tobie Langel", + "email": "tobie.langel@gmail.com", + "url": "http://tobielangel.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/modulr/0.1.0", + "0.1.2": "http://registry.npmjs.org/modulr/0.1.2", + "0.2.0": "http://registry.npmjs.org/modulr/0.2.0", + "0.3.0": "http://registry.npmjs.org/modulr/0.3.0", + "0.4.1": "http://registry.npmjs.org/modulr/0.4.1", + "0.4.2": "http://registry.npmjs.org/modulr/0.4.2", + "0.4.3": "http://registry.npmjs.org/modulr/0.4.3", + "0.4.5": "http://registry.npmjs.org/modulr/0.4.5", + "0.5.0": "http://registry.npmjs.org/modulr/0.5.0", + "0.6.0": "http://registry.npmjs.org/modulr/0.6.0", + "0.6.1": "http://registry.npmjs.org/modulr/0.6.1" + }, + "dist": { + "0.1.0": { + "shasum": "2e6644d0d5084e111edbb5446e1240ec5543c77e", + "tarball": "http://registry.npmjs.org/modulr/-/modulr-0.1.0.tgz" + }, + "0.1.2": { + "shasum": "58c970d7a443c943fb36b19a4ca4d14dc5c19265", + "tarball": "http://registry.npmjs.org/modulr/-/modulr-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "2fc11268518858ef4a6be82c147ecc57964a4d8c", + "tarball": "http://registry.npmjs.org/modulr/-/modulr-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "66195a75650a1fff6bd2554a8b33cce69b25d2b4", + "tarball": "http://registry.npmjs.org/modulr/-/modulr-0.3.0.tgz" + }, + "0.4.1": { + "shasum": "c28bd7e88a8a6739ab31c350b7999855b22490d8", + "tarball": "http://registry.npmjs.org/modulr/-/modulr-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "9240711b0682f3edd543f8db783774b00a79cf45", + "tarball": "http://registry.npmjs.org/modulr/-/modulr-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "2e49c257f09846a33ce9b2594df5c6c9ea1f5a56", + "tarball": "http://registry.npmjs.org/modulr/-/modulr-0.4.3.tgz" + }, + "0.4.5": { + "shasum": "01bbba6ba1856619952a6d8c8b4440f9b7d91678", + "tarball": "http://registry.npmjs.org/modulr/-/modulr-0.4.5.tgz" + }, + "0.5.0": { + "shasum": "86b090d905eeed88e504def5b9c6e65d1e539be0", + "tarball": "http://registry.npmjs.org/modulr/-/modulr-0.5.0.tgz" + }, + "0.6.0": { + "shasum": "42cd2aa942672e2a9870bbd11a2cd083899d8737", + "tarball": "http://registry.npmjs.org/modulr/-/modulr-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "8ceee31e8d1911c4ffe3e17ef7cee8a6b9d17bdb", + "tarball": "http://registry.npmjs.org/modulr/-/modulr-0.6.1.tgz" + } + }, + "url": "http://registry.npmjs.org/modulr/" + }, + "mogile": { + "name": "mogile", + "description": "MogileFS client library", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "headzoo", + "email": "headz@motherless.com" + } + ], + "time": { + "modified": "2011-08-29T21:45:35.784Z", + "created": "2011-08-29T19:25:08.517Z", + "0.1.2": "2011-08-29T19:25:08.694Z", + "0.2.0": "2011-08-29T21:45:35.784Z" + }, + "author": { + "name": "headzoo", + "email": "headz@motherless.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/headzoo/node-mogile.git" + }, + "versions": { + "0.1.2": "http://registry.npmjs.org/mogile/0.1.2", + "0.2.0": "http://registry.npmjs.org/mogile/0.2.0" + }, + "dist": { + "0.1.2": { + "shasum": "1cde2200b40fbab6cc9ba673460e23538b0df622", + "tarball": "http://registry.npmjs.org/mogile/-/mogile-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "decd55891d6167c9b84f7235f939c591b62b10c0", + "tarball": "http://registry.npmjs.org/mogile/-/mogile-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/mogile/" + }, + "mojo": { + "name": "mojo", + "description": "Node.js job queue backed by MongoDB", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "tomc", + "email": "tomas.carnecky@gmail.com" + } + ], + "time": { + "modified": "2011-11-29T17:34:15.766Z", + "created": "2011-04-10T00:32:32.046Z", + "0.0.1": "2011-04-10T00:32:32.468Z", + "0.0.2": "2011-09-13T13:55:07.810Z", + "0.0.3": "2011-11-11T05:10:28.284Z", + "0.0.4": "2011-11-29T17:34:15.766Z" + }, + "author": { + "name": "Tomas Carnecky" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mojo/0.0.1", + "0.0.2": "http://registry.npmjs.org/mojo/0.0.2", + "0.0.3": "http://registry.npmjs.org/mojo/0.0.3", + "0.0.4": "http://registry.npmjs.org/mojo/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "38393dca247152be31af7d7ef5a9431529d4e553", + "tarball": "http://registry.npmjs.org/mojo/-/mojo-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "7e9ced3239a12fe223acf0ccdf6736f45bd47206", + "tarball": "http://registry.npmjs.org/mojo/-/mojo-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "a8173840cf399a25346256180e65c0fc861ffa24", + "tarball": "http://registry.npmjs.org/mojo/-/mojo-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "6c5c3e4dd7445693f6ed5d4e1cc4eb8e9a953a46", + "tarball": "http://registry.npmjs.org/mojo/-/mojo-0.0.4.tgz" + } + }, + "keywords": [ + "queue", + "jobqueue", + "mongo", + "mongodb" + ], + "url": "http://registry.npmjs.org/mojo/" + }, + "molt": { + "name": "molt", + "description": "Image updater for responsive designs", + "dist-tags": { + "latest": "2.0.3" + }, + "maintainers": [ + { + "name": "pyrsmk", + "email": "pyrsmk@dreamysource.fr" + } + ], + "time": { + "modified": "2011-11-22T16:28:06.136Z", + "created": "2011-11-13T10:47:42.597Z", + "0.2.0": "2011-11-13T10:47:44.774Z", + "2.0.1": "2011-11-13T10:53:19.806Z", + "2.0.2": "2011-11-18T17:13:42.751Z", + "2.0.3": "2011-11-22T16:28:06.136Z" + }, + "author": { + "name": "Aurélien Delogu", + "email": "pyrsmk@dreamysource.fr", + "url": "http://dreamysource.fr" + }, + "repository": { + "type": "git", + "url": "git://github.com/pyrsmk/molt.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/molt/0.2.0", + "2.0.1": "http://registry.npmjs.org/molt/2.0.1", + "2.0.2": "http://registry.npmjs.org/molt/2.0.2", + "2.0.3": "http://registry.npmjs.org/molt/2.0.3" + }, + "dist": { + "0.2.0": { + "shasum": "a6e074dd769b3d8af8c3a377ab508d3374fa2ea0", + "tarball": "http://registry.npmjs.org/molt/-/molt-0.2.0.tgz" + }, + "2.0.1": { + "shasum": "5a08c147dcf9e8f37d70f5cd91224e760e408df9", + "tarball": "http://registry.npmjs.org/molt/-/molt-2.0.1.tgz" + }, + "2.0.2": { + "shasum": "ef8dc55b1acc6dce958a6789779491e2dbdb7f73", + "tarball": "http://registry.npmjs.org/molt/-/molt-2.0.2.tgz" + }, + "2.0.3": { + "shasum": "42792753db8ae6180fd3f6617eaf374e06bad031", + "tarball": "http://registry.npmjs.org/molt/-/molt-2.0.3.tgz" + } + }, + "keywords": [ + "ender", + "image", + "responsive" + ], + "url": "http://registry.npmjs.org/molt/" + }, + "moment": { + "name": "moment", + "description": "Moment.js is a javascript date library that helps create, manipulate, and format dates without extending the `Date` prototype.", + "dist-tags": { + "latest": "1.2.0" + }, + "maintainers": [ + { + "name": "timrwood", + "email": "washwithcare@gmail.com" + } + ], + "time": { + "modified": "2011-12-06T18:33:55.051Z", + "created": "2011-10-17T20:04:22.876Z", + "1.0.0": "2011-12-06T18:33:55.051Z", + "1.0.1": "2011-12-06T18:33:55.051Z", + "1.1.0": "2011-10-27T23:21:29.770Z", + "1.1.1": "2011-11-11T19:16:16.504Z", + "1.2.0": "2011-12-06T18:33:55.051Z" + }, + "author": { + "name": "Tim Wood", + "email": "washwithcare@gmail.com", + "url": "http://timwoodcreates.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/timrwood/moment.git" + }, + "users": { + "pid": true + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/moment/1.0.0", + "1.0.1": "http://registry.npmjs.org/moment/1.0.1", + "1.1.0": "http://registry.npmjs.org/moment/1.1.0", + "1.1.1": "http://registry.npmjs.org/moment/1.1.1", + "1.2.0": "http://registry.npmjs.org/moment/1.2.0" + }, + "dist": { + "1.0.0": { + "shasum": "ab5d9c16bff1b0027f9ad6270ee9d04562a202b6", + "tarball": "http://registry.npmjs.org/moment/-/moment-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "d75a24547c78a10bd686e6ef2d5eab7c53982299", + "tarball": "http://registry.npmjs.org/moment/-/moment-1.0.1.tgz" + }, + "1.1.0": { + "shasum": "e35dc6d083ba6ad3ebf441056860d569e840f3cb", + "tarball": "http://registry.npmjs.org/moment/-/moment-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "7e83bd99b8b9145a88298ae9fdce38846dd1febc", + "tarball": "http://registry.npmjs.org/moment/-/moment-1.1.1.tgz" + }, + "1.2.0": { + "shasum": "583ffa2b4fb171e73b949d1d4756a69d300e19ac", + "tarball": "http://registry.npmjs.org/moment/-/moment-1.2.0.tgz" + } + }, + "keywords": [ + "moment", + "date" + ], + "url": "http://registry.npmjs.org/moment/" + }, + "monad": { + "name": "monad", + "description": "Monadic types for removing reference ambiguities.", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "clewis", + "email": "chris@thegodcode.net" + } + ], + "author": { + "name": "Chris Lewis", + "email": "chris@thegodcode.net" + }, + "repository": { + "type": "git", + "url": "http://github.com/chrislewis/monad.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/monad/0.0.1", + "0.0.2": "http://registry.npmjs.org/monad/0.0.2", + "0.0.3": "http://registry.npmjs.org/monad/0.0.3" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/monad/-/monad-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/monad/-/monad-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/monad/-/monad-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/monad/" + }, + "money": { + "name": "money", + "description": "JavaScript currency conversion library.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "joss", + "email": "josscrowcroft@gmail.com" + } + ], + "time": { + "modified": "2011-10-13T21:14:34.805Z", + "created": "2011-10-13T21:14:34.376Z", + "0.0.1": "2011-10-13T21:14:34.805Z" + }, + "author": { + "name": "Joss Crowcroft", + "email": "josscrowcroft@gmail.com", + "url": "http://www.josscrowcroft.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/josscrowcroft/money.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/money/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "d19601043eedbf0fd3d3c2e81fb667f9af0206ac", + "tarball": "http://registry.npmjs.org/money/-/money-0.0.1.tgz" + } + }, + "keywords": [ + "money", + "fx", + "currency", + "exchange", + "utilities", + "accounting" + ], + "url": "http://registry.npmjs.org/money/" + }, + "mongeese": { + "name": "mongeese", + "description": "Mongoose multi-database helper", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "donpark", + "email": "donpark@docuverse.com" + } + ], + "time": { + "modified": "2011-07-05T21:23:39.052Z", + "created": "2011-07-05T21:23:38.417Z", + "0.0.1": "2011-07-05T21:23:39.052Z" + }, + "author": { + "name": "Don Park", + "email": "donpark@docuverse.com", + "url": "http://blog.docuverse.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/donpark/mongeese.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mongeese/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "a50688cb3c388e5bc1cf6910ca3515725aff4314", + "tarball": "http://registry.npmjs.org/mongeese/-/mongeese-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/mongeese/" + }, + "mongo-getter": { + "name": "mongo-getter", + "description": "Very simple resource pooling for MongoDB connections", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "deoxxa", + "email": "deoxxa@fknsrs.biz" + } + ], + "time": { + "modified": "2011-11-12T09:32:03.227Z", + "created": "2011-09-29T23:52:23.754Z", + "0.0.1": "2011-09-29T23:52:27.322Z", + "0.0.2": "2011-09-29T23:56:13.918Z", + "0.0.3": "2011-09-30T00:03:38.112Z", + "1.0.0": "2011-11-12T09:32:03.227Z" + }, + "author": { + "name": "Conrad Pankoff", + "email": "deoxxa@fknsrs.biz", + "url": "http://www.fknsrs.biz/" + }, + "repository": { + "type": "git", + "url": "git://github.com/deoxxa/node-mongo-getter.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mongo-getter/0.0.1", + "0.0.2": "http://registry.npmjs.org/mongo-getter/0.0.2", + "0.0.3": "http://registry.npmjs.org/mongo-getter/0.0.3", + "1.0.0": "http://registry.npmjs.org/mongo-getter/1.0.0" + }, + "dist": { + "0.0.1": { + "shasum": "8a0cf8c105015107593d58ced7056fad026931aa", + "tarball": "http://registry.npmjs.org/mongo-getter/-/mongo-getter-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "bf446fe97bd85ee87b921674cf9b7ec25f0ecbe8", + "tarball": "http://registry.npmjs.org/mongo-getter/-/mongo-getter-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "35524073cc7e235914706773c8434703a1937bcb", + "tarball": "http://registry.npmjs.org/mongo-getter/-/mongo-getter-0.0.3.tgz" + }, + "1.0.0": { + "shasum": "486db0a163e584e40af7ca3dc8c21cae831d89b7", + "tarball": "http://registry.npmjs.org/mongo-getter/-/mongo-getter-1.0.0.tgz" + } + }, + "keywords": [ + "mongodb", + "pool" + ], + "url": "http://registry.npmjs.org/mongo-getter/" + }, + "mongo-pool": { + "name": "mongo-pool", + "description": "Node MongoDB connection pool on top of node-mongodb-native", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "zir", + "email": "zir.echo@gmail.com" + } + ], + "time": { + "modified": "2011-05-13T18:35:12.767Z", + "created": "2011-05-13T18:35:09.998Z", + "0.1.0": "2011-05-13T18:35:12.768Z" + }, + "author": { + "name": "Senmiao Liu", + "email": "zir.echo@gmail.com", + "url": "https://github.com/zir" + }, + "repository": { + "type": "git", + "url": "git://github.com/zir/node-mongo-pool.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/mongo-pool/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "f311139cb6166034f286e8f8a462a5e0dfc1ed6d", + "tarball": "http://registry.npmjs.org/mongo-pool/-/mongo-pool-0.1.0.tgz" + } + }, + "keywords": [ + "mongodb", + "pool" + ], + "url": "http://registry.npmjs.org/mongo-pool/" + }, + "mongodb": { + "name": "mongodb", + "description": "A node.js driver for MongoDB", + "dist-tags": { + "latest": "0.9.7-1.4", + "stable": "0.9.7-1.4" + }, + "maintainers": [ + { + "name": "christkv", + "email": "christkv@gmail.com" + } + ], + "time": { + "modified": "2011-12-02T10:52:09.741Z", + "created": "2011-06-21T15:25:44.161Z", + "0.9.6": "2011-06-21T15:25:46.345Z", + "0.9.4": "2011-06-21T15:31:45.212Z", + "0.9.4-4": "2011-06-21T15:35:11.643Z", + "0.9.3": "2011-06-21T20:18:44.155Z", + "0.9.1": "2011-06-21T20:22:01.141Z", + "0.9.2": "2011-06-21T20:25:49.367Z", + "0.9.6-1": "2011-06-25T13:17:26.689Z", + "0.9.6-2": "2011-06-30T18:31:49.113Z", + "0.9.6-3": "2011-07-01T14:30:19.429Z", + "0.9.6-4": "2011-07-03T17:10:20.072Z", + "0.9.6-5": "2011-07-06T20:18:15.416Z", + "0.9.6-6": "2011-07-12T16:53:26.583Z", + "0.9.6-7": "2011-07-13T06:21:24.952Z", + "0.9.6-8": "2011-08-01T10:45:43.684Z", + "0.9.6-9": "2011-08-03T06:37:53.385Z", + "0.9.6-10": "2011-08-11T20:18:01.540Z", + "0.9.6-11": "2011-08-23T09:32:58.191Z", + "0.9.6-12": "2011-08-25T12:03:19.691Z", + "0.9.6-13": "2011-08-25T20:01:29.873Z", + "0.9.6-14": "2011-09-05T15:29:48.398Z", + "0.9.6-15": "2011-09-09T20:46:13.814Z", + "0.9.6-16": "2011-09-14T20:50:55.604Z", + "0.9.6-17": "2011-09-21T10:32:14.651Z", + "0.9.6-18": "2011-09-22T09:41:55.732Z", + "0.9.6-19": "2011-09-29T18:13:20.557Z", + "0.9.6-20": "2011-10-04T14:08:55.170Z", + "0.9.6-21": "2011-10-06T08:53:47.527Z", + "0.9.6-22": "2011-10-15T17:39:51.968Z", + "0.9.6-23": "2011-11-08T19:50:47.971Z", + "0.9.7": "2011-11-10T23:22:40.707Z", + "0.9.7-0": "2011-11-12T18:29:49.202Z", + "0.9.7-1": "2011-11-25T19:26:33.896Z", + "0.9.7-1.1": "2011-11-27T11:34:08.799Z", + "0.9.7-1.2": "2011-11-27T18:23:08.054Z", + "0.9.7-1.3": "2011-11-27T20:56:40.282Z", + "0.9.7-1.4": "2011-12-02T09:34:53.791Z" + }, + "author": { + "name": "Christian Amor Kvalheim", + "email": "christkv@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/christkv/node-mongodb-native.git" + }, + "users": { + "dylang": true, + "deedubs": true + }, + "versions": { + "0.9.4": "http://registry.npmjs.org/mongodb/0.9.4", + "0.9.4-4": "http://registry.npmjs.org/mongodb/0.9.4-4", + "0.9.3": "http://registry.npmjs.org/mongodb/0.9.3", + "0.9.1": "http://registry.npmjs.org/mongodb/0.9.1", + "0.9.2": "http://registry.npmjs.org/mongodb/0.9.2", + "0.9.6-7": "http://registry.npmjs.org/mongodb/0.9.6-7", + "0.9.6-8": "http://registry.npmjs.org/mongodb/0.9.6-8", + "0.9.6-9": "http://registry.npmjs.org/mongodb/0.9.6-9", + "0.9.6-10": "http://registry.npmjs.org/mongodb/0.9.6-10", + "0.9.6-11": "http://registry.npmjs.org/mongodb/0.9.6-11", + "0.9.6-12": "http://registry.npmjs.org/mongodb/0.9.6-12", + "0.9.6-13": "http://registry.npmjs.org/mongodb/0.9.6-13", + "0.9.6-14": "http://registry.npmjs.org/mongodb/0.9.6-14", + "0.9.6-15": "http://registry.npmjs.org/mongodb/0.9.6-15", + "0.9.6-16": "http://registry.npmjs.org/mongodb/0.9.6-16", + "0.9.6-17": "http://registry.npmjs.org/mongodb/0.9.6-17", + "0.9.6-18": "http://registry.npmjs.org/mongodb/0.9.6-18", + "0.9.6-19": "http://registry.npmjs.org/mongodb/0.9.6-19", + "0.9.6-20": "http://registry.npmjs.org/mongodb/0.9.6-20", + "0.9.6-21": "http://registry.npmjs.org/mongodb/0.9.6-21", + "0.9.6-22": "http://registry.npmjs.org/mongodb/0.9.6-22", + "0.9.6-23": "http://registry.npmjs.org/mongodb/0.9.6-23", + "0.9.7": "http://registry.npmjs.org/mongodb/0.9.7", + "0.9.7-0": "http://registry.npmjs.org/mongodb/0.9.7-0", + "0.9.7-1": "http://registry.npmjs.org/mongodb/0.9.7-1", + "0.9.7-1.1": "http://registry.npmjs.org/mongodb/0.9.7-1.1", + "0.9.7-1.2": "http://registry.npmjs.org/mongodb/0.9.7-1.2", + "0.9.7-1.3": "http://registry.npmjs.org/mongodb/0.9.7-1.3", + "0.9.7-1.4": "http://registry.npmjs.org/mongodb/0.9.7-1.4" + }, + "dist": { + "0.9.4": { + "shasum": "fb94c930887c3078f4414f0ee94919bf772a9743", + "tarball": "http://registry.npmjs.org/mongodb/-/mongodb-0.9.4.tgz" + }, + "0.9.4-4": { + "shasum": "7e9b62dc41ec675a1089e6fe3aa6312ddcd66b27", + "tarball": "http://registry.npmjs.org/mongodb/-/mongodb-0.9.4-4.tgz" + }, + "0.9.3": { + "shasum": "ef4f180dc29eb7bbb7482b80b7d81073a8236016", + "tarball": "http://registry.npmjs.org/mongodb/-/mongodb-0.9.3.tgz" + }, + "0.9.1": { + "shasum": "829839e176f7d106df436f7eb36e608bbf553507", + "tarball": "http://registry.npmjs.org/mongodb/-/mongodb-0.9.1.tgz" + }, + "0.9.2": { + "shasum": "aef67ad25c02cb632810d2b16d4039c488894291", + "tarball": "http://registry.npmjs.org/mongodb/-/mongodb-0.9.2.tgz" + }, + "0.9.6-7": { + "shasum": "504d45a25b9fb67aa5dd359b6809e5df0e44d6bf", + "tarball": "http://registry.npmjs.org/mongodb/-/mongodb-0.9.6-7.tgz" + }, + "0.9.6-8": { + "shasum": "7f8346f2b61d37abffb0409d641a04608b5bec41", + "tarball": "http://registry.npmjs.org/mongodb/-/mongodb-0.9.6-8.tgz" + }, + "0.9.6-9": { + "shasum": "ae17c28b8f8df07d3db636eb38baf7771ec2f71c", + "tarball": "http://registry.npmjs.org/mongodb/-/mongodb-0.9.6-9.tgz" + }, + "0.9.6-10": { + "shasum": "bbb9998bb9094293b52066f1a25477bdbb7aac3a", + "tarball": "http://registry.npmjs.org/mongodb/-/mongodb-0.9.6-10.tgz" + }, + "0.9.6-11": { + "shasum": "dee4ebcf3ed1c559ebfbc2e829522e4843d19e21", + "tarball": "http://registry.npmjs.org/mongodb/-/mongodb-0.9.6-11.tgz" + }, + "0.9.6-12": { + "shasum": "737e9e6a0b8f0dfae73ed486ab557c0314572795", + "tarball": "http://registry.npmjs.org/mongodb/-/mongodb-0.9.6-12.tgz" + }, + "0.9.6-13": { + "shasum": "992caa529932fd6a9f4f77229842b753e0e729c2", + "tarball": "http://registry.npmjs.org/mongodb/-/mongodb-0.9.6-13.tgz" + }, + "0.9.6-14": { + "shasum": "871e24f610e68050e4a1ca7e2de32a40488b368f", + "tarball": "http://registry.npmjs.org/mongodb/-/mongodb-0.9.6-14.tgz" + }, + "0.9.6-15": { + "shasum": "2d3b676fdf182b36981fbf9d9f0a4ea6ceb77ac3", + "tarball": "http://registry.npmjs.org/mongodb/-/mongodb-0.9.6-15.tgz" + }, + "0.9.6-16": { + "shasum": "7e964991293bd9779c59aa6356c8e719a9a92b96", + "tarball": "http://registry.npmjs.org/mongodb/-/mongodb-0.9.6-16.tgz" + }, + "0.9.6-17": { + "shasum": "4c93d13666a77da1d1831b667691890e77165bd5", + "tarball": "http://registry.npmjs.org/mongodb/-/mongodb-0.9.6-17.tgz" + }, + "0.9.6-18": { + "shasum": "b55de0ddc0026f93b0994972cfed75c8ddd93c25", + "tarball": "http://registry.npmjs.org/mongodb/-/mongodb-0.9.6-18.tgz" + }, + "0.9.6-19": { + "shasum": "ac14f1504b54c1ed02ba2379b6ca6c8a51f49e2e", + "tarball": "http://registry.npmjs.org/mongodb/-/mongodb-0.9.6-19.tgz" + }, + "0.9.6-20": { + "shasum": "b0563152da8a2eb2dac582c1914d891a081b4d8b", + "tarball": "http://registry.npmjs.org/mongodb/-/mongodb-0.9.6-20.tgz" + }, + "0.9.6-21": { + "shasum": "0a4ee0706dfc5ea35c285f043b81071fa6abbabe", + "tarball": "http://registry.npmjs.org/mongodb/-/mongodb-0.9.6-21.tgz" + }, + "0.9.6-22": { + "shasum": "706e8cd6493cbb5cb6ab40f66487b465f69c8ee6", + "tarball": "http://registry.npmjs.org/mongodb/-/mongodb-0.9.6-22.tgz" + }, + "0.9.6-23": { + "shasum": "09857a067db8d133d5389918520e0f6c81f8aa44", + "tarball": "http://registry.npmjs.org/mongodb/-/mongodb-0.9.6-23.tgz" + }, + "0.9.7": { + "shasum": "1f1a21b68096663e1c4709f132c4de886feba1c3", + "tarball": "http://registry.npmjs.org/mongodb/-/mongodb-0.9.7.tgz" + }, + "0.9.7-0": { + "shasum": "800d03d6814e6c4868a952963b4f72946e8aedcd", + "tarball": "http://registry.npmjs.org/mongodb/-/mongodb-0.9.7-0.tgz" + }, + "0.9.7-1": { + "shasum": "08bfb61f59932af78c3dcfb7654c8a06c4776341", + "tarball": "http://registry.npmjs.org/mongodb/-/mongodb-0.9.7-1.tgz" + }, + "0.9.7-1.1": { + "shasum": "4e228b6128d23acaab60a97e390eb8c3c6a38b69", + "tarball": "http://registry.npmjs.org/mongodb/-/mongodb-0.9.7-1.1.tgz" + }, + "0.9.7-1.2": { + "shasum": "ce14fce69ecd971e1bb180ca7122f421d69309b8", + "tarball": "http://registry.npmjs.org/mongodb/-/mongodb-0.9.7-1.2.tgz" + }, + "0.9.7-1.3": { + "shasum": "370a7274477698c9c440aa02dd52879e1d66efa5", + "tarball": "http://registry.npmjs.org/mongodb/-/mongodb-0.9.7-1.3.tgz" + }, + "0.9.7-1.4": { + "shasum": "2326ec38d03cd4b8c67479e676ab98df03b0d8f4", + "tarball": "http://registry.npmjs.org/mongodb/-/mongodb-0.9.7-1.4.tgz" + } + }, + "keywords": [ + "mongodb", + "mongo", + "driver", + "db" + ], + "url": "http://registry.npmjs.org/mongodb/" + }, + "mongodb_heroku": { + "name": "mongodb_heroku", + "description": "A node.js driver for MongoDB on Heroku", + "dist-tags": { + "latest": "0.9.4-5" + }, + "maintainers": [ + { + "name": "jsjohnst", + "email": "npm@jeremyjohnstone.com" + } + ], + "time": { + "modified": "2011-05-31T22:20:09.534Z", + "created": "2011-05-31T22:20:09.234Z", + "0.9.4-5": "2011-05-31T22:20:09.535Z" + }, + "author": { + "name": "Jeremy Johnstone", + "email": "npm@jeremyjohnstone.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/christkv/node-mongodb-native.git" + }, + "versions": { + "0.9.4-5": "http://registry.npmjs.org/mongodb_heroku/0.9.4-5" + }, + "dist": { + "0.9.4-5": { + "shasum": "a3a099dccbd47326dd45a7bff9fed7506e0b6743", + "tarball": "http://registry.npmjs.org/mongodb_heroku/-/mongodb_heroku-0.9.4-5.tgz" + } + }, + "url": "http://registry.npmjs.org/mongodb_heroku/" + }, + "mongodb-async": { + "name": "mongodb-async", + "description": "Thin & clean async wrapper for mongodb", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "zir", + "email": "zir.echo@gmail.com" + } + ], + "time": { + "modified": "2011-09-07T04:48:46.336Z", + "created": "2011-08-10T10:12:35.403Z", + "0.0.1": "2011-08-10T10:12:37.455Z", + "0.0.2": "2011-08-16T08:41:19.410Z", + "0.1.0": "2011-09-07T04:48:46.336Z" + }, + "author": { + "name": "Senmiao Liu", + "email": "zir.echo@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/zir/mongodb-async.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mongodb-async/0.0.1", + "0.0.2": "http://registry.npmjs.org/mongodb-async/0.0.2", + "0.1.0": "http://registry.npmjs.org/mongodb-async/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "44efac4d22ffb7470766fe3ec961c254689a4671", + "tarball": "http://registry.npmjs.org/mongodb-async/-/mongodb-async-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c5a104af40d8b2b3768e641bbae37f1f3a820ecd", + "tarball": "http://registry.npmjs.org/mongodb-async/-/mongodb-async-0.0.2.tgz" + }, + "0.1.0": { + "shasum": "cf57d3d8dd9cc7458cffb0d9bc5eb1950220d9ff", + "tarball": "http://registry.npmjs.org/mongodb-async/-/mongodb-async-0.1.0.tgz" + } + }, + "keywords": [ + "mongodb", + "async", + "flow", + "promise", + "deferred" + ], + "url": "http://registry.npmjs.org/mongodb-async/" + }, + "mongodb-expressions": { + "name": "mongodb-expressions", + "description": "MongoDB expressions for fire.js", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "#mongodb-expressions\n[![Build Status](https://secure.travis-ci.org/firebaseco/mongodb-expressions.png)](http://travis-ci.org/firebaseco/mongodb-expressions)\n\nThe official [MongoDB](http://www.mongodb.org) expressions for [fire.js](https://github.com/firejs/fire)\n***\n\n## @Mongo.Insert\n\nInserts a document in a MongoDB collection given in the hint. Returns the same document with the generated _id.\n\n### Example\n\nThis example inserts a contact document into the contacts collection:\n \n\t{\n\t\t\"@Mongo.Insert(contacts)\": {\n\t\t\temail: \"johan@firebase.co\"\n\t\t\tfirstName: \"Johan\",\n\t\t\tlastName: \"Hernandez\"\n\t\t}\n\t}\n\t\n### Possible errors and solutions\n\n#### Mongo.Insert requires a hint with the name of the collection\nWhen you call Mongo.Insert you need to provide the name of the collection you want to insert to.\n\n#### Mongo.Insert can only insert one document at the time\nThe input is an array, you can't insert arrays. It must be an object.\n\n#### Mongo.Insert can not insert null documents\nThe input is null. You can't insert null into a collection.\n\n#### Mongo.Insert can only insert object documents\nThe input is anything but an object. Numbers, Functions, Strings can not be inserted directly into a collection.\n\n## @Mongo.Find\n\nRetrieve documents from a collection given in the hint. Returns an array of matched documents by the criteria. If the input is null or @undefined or you don't provide a condition it will retrieve all the documents in the collection.\n\nMongo.Find accepts an input with the following attributes:\n\n \n\t{\n\t\t\"conditions\": ,\n\t\t\"fields\": ,\n\t\t\"sort\": ,\n\t\t\"limit\": ,\n\t\t\"skip\": \n\t}\n \n\n### Input Attributes\n\n#### conditions\n\nAn object with all the conditions to be used as criteria. [More info about MongoDB Queries](http://www.mongodb.org/display/DOCS/Advanced+Queries).\n\n#### fields\n\nAn array with all the fields names to include in the results. It supports [dot notation](http://www.mongodb.org/display/DOCS/Dot+Notation+%28Reaching+into+Objects%29) so you can specify the embedded documents fields too.\n\n#### sort\n\nAn object with all the sorting options. More info [here](http://www.mongodb.org/display/DOCS/Advanced+Queries#AdvancedQueries-%7B%7Bsort%28%29%7D%7D) and [here](http://www.mongodb.org/display/DOCS/Querying#Querying-Sorting)\n\n#### limit\n\nIt specifies a maximum number of results to return. [More info](http://www.mongodb.org/display/DOCS/Advanced+Queries#AdvancedQueries-%7B%7Blimit%28%29%7D%7D).\n\n#### skip\n\nIt specifies at which object the database should begin returning results\n[More info](http://www.mongodb.org/display/DOCS/Advanced+Queries#AdvancedQueries-%7B%7Bskip%28%29%7D%7D)\n\n### Possible errors and solutions\n\n#### Mongo.Find requires a hint with the name of the collection\nWhen you call Mongo.Find you need to provide the name of the collection you want to query from.\n\n#### Mongo.Find can not currently work with including and excluding fields\nWhen you call Mongo.Find you can't use includingFields and excludingFields options at the same time, you can either use one of them or none of them. \n\n#### Mongo.Find input must be an object\n#### Mongo.Find fields must be an array, @undefined or null\n#### Mongo.Find conditions must be an object, @undefined or null\n#### Mongo.Find sort must be an object, @undefined or null\n#### Mongo.Find options must be an object, @undefined or null\n\n## @Mongo.FindOne\n\nRetrieve a single document from a collection given in the hint matched by criteria. If no document can be matched with by the criteria it will return null. If the input is null or @undefined or you don't provide a condition it will retrieve the first document in the collection.\n\nMongo.FindOne accepts an input with the following attributes:\n\n \n\t{\n\t\t\"conditions\": ,\n\t\t\"fields\": ,\n\t\t\"sort\": ,\n\t\t\"skip\": \n\t}\n \n\n### Input Attributes\n\n#### conditions\n\nAn object with all the conditions to be used as criteria. [More info about MongoDB Queries](http://www.mongodb.org/display/DOCS/Advanced+Queries).\n\n#### fields\n\nAn array with all the fields names to include in the results. It supports [dot notation](http://www.mongodb.org/display/DOCS/Dot+Notation+%28Reaching+into+Objects%29) so you can specify the embedded documents fields too.\n\n#### sort\n\nAn object with all the sorting options. More info [here](http://www.mongodb.org/display/DOCS/Advanced+Queries#AdvancedQueries-%7B%7Bsort%28%29%7D%7D) and [here](http://www.mongodb.org/display/DOCS/Querying#Querying-Sorting)\n\n#### skip\n\nIt specifies at which object the database should begin returning results\n[More info](http://www.mongodb.org/display/DOCS/Advanced+Queries#AdvancedQueries-%7B%7Bskip%28%29%7D%7D)\n\n### Possible errors and solutions\n\nSame errors and solutions than @Mongo.Find\n\n\n## @Mongo.Update\n\nUpdates documents from a collection given in the hint. Returns the count of affected rows. All updates are strict and will return either an error if they fail or the count of update rows if succeeded.\n\nMongo.Update accepts an input with the following attributes:\n \n\t{\n\t\t\"conditions\": ,\n\t\t\"changes\": ,\n\t\t\"options\": ,\n\t}\n \n### Input Attributes\n\n#### conditions\n\nAn object with all the conditions to be used as criteria. [More info about MongoDB Queries](http://www.mongodb.org/display/DOCS/Advanced+Queries).\n\n#### changes\n\nAn object with all the changes to perform. [More info about MongoDB udpates](http://www.mongodb.org/display/DOCS/Updating)\n\n#### options\n\nIt specifies the options to use when updating. The more common options are multi and upsert.\n\n##### multi\n\nWhen set to true all matching documents are updated, not just the first.\n\n##### upsert\n\nWhen set to true Atomically inserts the document if no documents matched.\n\n\n### Possible errors and solutions\n\n#### Mongo.Update requires a hint with the name of the collection\nWhen you call Mongo.Update you need to provide the name of the collection you want to update.\n\n#### Mongo.Update input must be an object\n#### Mongo.Update changes must be an object\n#### Mongo.Update options must be an object, @undefined or null\n\n\n## @Mongo.Remove\n\nRemove documents from a collection given in the hint. Returns the count of affected rows. All updates are strict and will return either an error if they fail or the count of removed rows if succeeded.\n\nMongo.Remove accepts an input with a single attribute:\n \n\t{\n\t\t\"conditions\": \n\t}\n \n### Input Attributes\n\n#### conditions\n\nAn object with all the conditions to be used as criteria when removing the documents. [More info about MongoDB Queries](http://www.mongodb.org/display/DOCS/Advanced+Queries).\n\n\n### Possible errors and solutions\n\n#### Mongo.Remove requires a hint with the name of the collection\nWhen you call Mongo.Remove you need to provide the name of the collection you want to remove documents from.\n\n#### Mongo.Remove input must be an object\n#### Mongo.Remove conditions must be an object\n\n## @Mongo.DropDatabase\n\nDrops the current database.\n\n### Testing Goodies\n\n`mongodb-expressions` will automatically execute `@Mongo.DropDatabase` when the runtime is loaded in `NODE_ENV` `test`.\n\n### Cloning the Repository\n\n git clone https://github.com/firebaseco/mongodb-expressions.git\n\n### Tests\n\n make\n\n### Contributors\n\n* Johan (author). Email: *johan@firebase.co*\n\n## License\n\nCopyright (c) 2011 Firebase.co - [http://www.firebase.co](http://www.firebase.co)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n", + "maintainers": [ + { + "name": "firebaseco", + "email": "npm@firebase.co" + } + ], + "time": { + "modified": "2011-11-29T22:20:00.757Z", + "created": "2011-11-29T22:19:56.267Z", + "0.1.0": "2011-11-29T22:20:00.757Z" + }, + "author": { + "name": "Firebase.co", + "email": "npm@firebase.co", + "url": "http://www.firebase.co" + }, + "repository": { + "type": "git", + "url": "git://github.com/firebaseco/mongodb-expressions.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/mongodb-expressions/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "e863035d33b7df237f3eb2dd93852b72e64258fd", + "tarball": "http://registry.npmjs.org/mongodb-expressions/-/mongodb-expressions-0.1.0.tgz" + } + }, + "keywords": [ + "ignitable", + "fire", + "fire.js", + "expressions", + "Mongo", + "MongoDB", + "mongoose" + ], + "url": "http://registry.npmjs.org/mongodb-expressions/" + }, + "mongodb-fixtures": { + "name": "mongodb-fixtures", + "description": "JSON based fixtures for mongodb", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "tdegrunt", + "email": "tom@degrunt.nl" + } + ], + "time": { + "modified": "2011-10-31T11:29:03.908Z", + "created": "2011-10-16T18:56:50.494Z", + "0.0.1": "2011-10-16T18:56:54.632Z", + "0.0.2": "2011-10-17T20:24:27.431Z", + "0.0.3": "2011-10-26T08:07:01.285Z", + "0.0.4": "2011-10-26T11:58:25.012Z", + "0.0.5": "2011-10-31T11:29:03.908Z" + }, + "author": { + "name": "Tom de Grunt", + "email": "tom@degrunt.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/tdegrunt/mongodb-fixtures.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mongodb-fixtures/0.0.1", + "0.0.2": "http://registry.npmjs.org/mongodb-fixtures/0.0.2", + "0.0.3": "http://registry.npmjs.org/mongodb-fixtures/0.0.3", + "0.0.4": "http://registry.npmjs.org/mongodb-fixtures/0.0.4", + "0.0.5": "http://registry.npmjs.org/mongodb-fixtures/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "4a0b4935e72af8e852d48251bfff8d2b3f19e584", + "tarball": "http://registry.npmjs.org/mongodb-fixtures/-/mongodb-fixtures-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "0bac686baa4dd0492b4893729c1cba015e9f15a8", + "tarball": "http://registry.npmjs.org/mongodb-fixtures/-/mongodb-fixtures-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "539ea704e7d46e45eab26157dc46479bb340288c", + "tarball": "http://registry.npmjs.org/mongodb-fixtures/-/mongodb-fixtures-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "467d1abc46c41b8ae8687dce1314c7ace514a9a4", + "tarball": "http://registry.npmjs.org/mongodb-fixtures/-/mongodb-fixtures-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "2216e76c949e966383c3ea35c88e605d032d1eb8", + "tarball": "http://registry.npmjs.org/mongodb-fixtures/-/mongodb-fixtures-0.0.5.tgz" + } + }, + "keywords": [ + "mongodb", + "mongo", + "json", + "fixtures" + ], + "url": "http://registry.npmjs.org/mongodb-fixtures/" + }, + "mongodb-incremental-mapreduce": { + "name": "mongodb-incremental-mapreduce", + "description": "Run incremental map/reduce queries for mongodb more easily", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "jacwright", + "email": "jacwright@gmail.com" + } + ], + "time": { + "modified": "2011-10-27T02:03:57.963Z", + "created": "2011-10-27T01:45:48.673Z", + "0.0.1": "2011-10-27T02:03:57.963Z" + }, + "author": { + "name": "Jacob Wright", + "email": "jacwright@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/touchads/node-mongodb-incremental-map-reduce.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mongodb-incremental-mapreduce/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "83f52b7fc31f3593509b27b8a8d8d06698af79c0", + "tarball": "http://registry.npmjs.org/mongodb-incremental-mapreduce/-/mongodb-incremental-mapreduce-0.0.1.tgz" + } + }, + "keywords": [ + "mongodb", + "mongo", + "mapreduce", + "incremental" + ], + "url": "http://registry.npmjs.org/mongodb-incremental-mapreduce/" + }, + "mongodb-provider": { + "name": "mongodb-provider", + "description": "A node.js provider class for MongoDB base on node-mongodb-native", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "guileen", + "email": "guileen@gmail.com" + } + ], + "time": { + "modified": "2011-03-24T12:44:49.519Z", + "created": "2011-03-18T06:55:18.918Z", + "0.1.0": "2011-03-18T06:55:19.989Z", + "0.1.1": "2011-03-24T12:44:49.519Z" + }, + "author": { + "name": "Jason Green", + "email": "guileen@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/guileen/node-mongo-provider.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/mongodb-provider/0.1.0", + "0.1.1": "http://registry.npmjs.org/mongodb-provider/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "f89e60d93d947594568629eeb069625338b1f2b5", + "tarball": "http://registry.npmjs.org/mongodb-provider/-/mongodb-provider-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "34ef7d4bc17dc812f37ee2d1b477cc4d4e42e8b0", + "tarball": "http://registry.npmjs.org/mongodb-provider/-/mongodb-provider-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/mongodb-provider/" + }, + "mongodb-rest": { + "name": "mongodb-rest", + "description": "REST API Server for MongoDB", + "dist-tags": { + "latest": "0.9.0" + }, + "maintainers": [ + { + "name": "tdegrunt", + "email": "tom@degrunt.nl" + } + ], + "author": { + "name": "Tom de Grunt", + "email": "tom@degrunt.nl" + }, + "time": { + "modified": "2011-05-21T09:59:42.045Z", + "created": "2011-02-21T16:31:09.379Z", + "0.6.0": "2011-02-21T16:31:09.379Z", + "0.6.1": "2011-02-21T16:31:09.379Z", + "0.6.2": "2011-02-21T16:31:09.379Z", + "0.6.3": "2011-02-21T16:31:09.379Z", + "0.6.4": "2011-02-21T16:31:09.379Z", + "0.6.5": "2011-02-21T16:31:09.379Z", + "0.6.6": "2011-03-05T08:12:12.546Z", + "0.6.7": "2011-03-30T20:16:14.143Z", + "0.6.8": "2011-04-04T09:22:29.395Z", + "0.8.0": "2011-04-11T17:44:14.233Z", + "0.8.1": "2011-04-14T15:59:11.873Z", + "0.9.0": "2011-05-21T09:59:42.045Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/tdegrunt/mongodb-rest.git" + }, + "versions": { + "0.6.0": "http://registry.npmjs.org/mongodb-rest/0.6.0", + "0.6.1": "http://registry.npmjs.org/mongodb-rest/0.6.1", + "0.6.2": "http://registry.npmjs.org/mongodb-rest/0.6.2", + "0.6.3": "http://registry.npmjs.org/mongodb-rest/0.6.3", + "0.6.4": "http://registry.npmjs.org/mongodb-rest/0.6.4", + "0.6.5": "http://registry.npmjs.org/mongodb-rest/0.6.5", + "0.6.6": "http://registry.npmjs.org/mongodb-rest/0.6.6", + "0.6.7": "http://registry.npmjs.org/mongodb-rest/0.6.7", + "0.6.8": "http://registry.npmjs.org/mongodb-rest/0.6.8", + "0.8.0": "http://registry.npmjs.org/mongodb-rest/0.8.0", + "0.8.1": "http://registry.npmjs.org/mongodb-rest/0.8.1", + "0.9.0": "http://registry.npmjs.org/mongodb-rest/0.9.0" + }, + "dist": { + "0.6.0": { + "tarball": "http://registry.npmjs.org/mongodb-rest/-/mongodb-rest-0.6.0.tgz" + }, + "0.6.1": { + "tarball": "http://registry.npmjs.org/mongodb-rest/-/mongodb-rest-0.6.1.tgz" + }, + "0.6.2": { + "tarball": "http://registry.npmjs.org/mongodb-rest/-/mongodb-rest-0.6.2.tgz" + }, + "0.6.3": { + "tarball": "http://registry.npmjs.org/mongodb-rest/-/mongodb-rest-0.6.3.tgz" + }, + "0.6.4": { + "tarball": "http://registry.npmjs.org/mongodb-rest/-/mongodb-rest-0.6.4.tgz" + }, + "0.6.5": { + "shasum": "b4f3380b84532d288aed409aefdd266ee64d50f7", + "tarball": "http://registry.npmjs.org/mongodb-rest/-/mongodb-rest-0.6.5.tgz" + }, + "0.6.6": { + "shasum": "8461d239c09d12611cd2a0ddee952f3c14e42ade", + "tarball": "http://registry.npmjs.org/mongodb-rest/-/mongodb-rest-0.6.6.tgz" + }, + "0.6.7": { + "shasum": "fa5d7c5c3ecfbfc5966c056b5e5e61d335e6f628", + "tarball": "http://registry.npmjs.org/mongodb-rest/-/mongodb-rest-0.6.7.tgz" + }, + "0.6.8": { + "shasum": "803a1a1c9a24a69d26eef845a4d64cc799bded64", + "tarball": "http://registry.npmjs.org/mongodb-rest/-/mongodb-rest-0.6.8.tgz" + }, + "0.8.0": { + "shasum": "771cb1439c7769d55b974c0ecaf97e74a5e7fcab", + "tarball": "http://registry.npmjs.org/mongodb-rest/-/mongodb-rest-0.8.0.tgz" + }, + "0.8.1": { + "shasum": "54f418f72799c35ef562af34974e76beab160002", + "tarball": "http://registry.npmjs.org/mongodb-rest/-/mongodb-rest-0.8.1.tgz" + }, + "0.9.0": { + "shasum": "119ec2761a19c3a87b6c1120020aebae75dc44eb", + "tarball": "http://registry.npmjs.org/mongodb-rest/-/mongodb-rest-0.9.0.tgz" + } + }, + "keywords": [ + "mongodb", + "mongo", + "db", + "web", + "rest", + "restful" + ], + "url": "http://registry.npmjs.org/mongodb-rest/" + }, + "mongodb-wrapper": { + "name": "mongodb-wrapper", + "description": "Exactly-like-the-console wrapper for node-mongodb-native", + "dist-tags": { + "latest": "0.2.6" + }, + "maintainers": [ + { + "name": "seanhess", + "email": "seanhess@gmail.com" + } + ], + "time": { + "modified": "2011-11-10T03:37:30.412Z", + "created": "2011-05-26T18:01:56.869Z", + "0.1.0": "2011-05-26T18:01:57.324Z", + "0.1.1": "2011-05-26T21:21:36.710Z", + "0.2.0": "2011-05-31T20:55:21.518Z", + "0.2.1": "2011-06-02T22:44:19.425Z", + "0.2.2": "2011-06-10T17:16:27.419Z", + "0.2.3": "2011-06-29T03:20:41.192Z", + "0.2.4": "2011-11-07T18:57:37.594Z", + "0.2.5": "2011-11-07T19:33:42.980Z", + "0.2.6": "2011-11-10T03:37:30.412Z" + }, + "author": { + "name": "i.TV", + "email": "sean@i.tv" + }, + "repository": { + "type": "git", + "url": "git://github.com/idottv/node-mongodb-wrapper.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/mongodb-wrapper/0.1.0", + "0.1.1": "http://registry.npmjs.org/mongodb-wrapper/0.1.1", + "0.2.0": "http://registry.npmjs.org/mongodb-wrapper/0.2.0", + "0.2.1": "http://registry.npmjs.org/mongodb-wrapper/0.2.1", + "0.2.2": "http://registry.npmjs.org/mongodb-wrapper/0.2.2", + "0.2.3": "http://registry.npmjs.org/mongodb-wrapper/0.2.3", + "0.2.4": "http://registry.npmjs.org/mongodb-wrapper/0.2.4", + "0.2.5": "http://registry.npmjs.org/mongodb-wrapper/0.2.5", + "0.2.6": "http://registry.npmjs.org/mongodb-wrapper/0.2.6" + }, + "dist": { + "0.1.0": { + "shasum": "dcf835ce162309e598dd5996992d534198d155b4", + "tarball": "http://registry.npmjs.org/mongodb-wrapper/-/mongodb-wrapper-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "a266641b248c05109b8f40bd3e9d73aaafdd87e1", + "tarball": "http://registry.npmjs.org/mongodb-wrapper/-/mongodb-wrapper-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "765129342a606349282c3b239f1f1fa92c80cd69", + "tarball": "http://registry.npmjs.org/mongodb-wrapper/-/mongodb-wrapper-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "d8a1ab7fed8d21d982cc3a8cff2e21ab1f60aee9", + "tarball": "http://registry.npmjs.org/mongodb-wrapper/-/mongodb-wrapper-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "0861615ae4287d4a14ee0271f354bd5e93a04182", + "tarball": "http://registry.npmjs.org/mongodb-wrapper/-/mongodb-wrapper-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "198cafedda4ecdb52b0fe3739f5be0974b2cd0ed", + "tarball": "http://registry.npmjs.org/mongodb-wrapper/-/mongodb-wrapper-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "aa4ef08fdc2d10ceac4be779c3bd0c3a96fb7ceb", + "tarball": "http://registry.npmjs.org/mongodb-wrapper/-/mongodb-wrapper-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "5fb32049729b39ba6d0a5ee660c0278a0712cdb1", + "tarball": "http://registry.npmjs.org/mongodb-wrapper/-/mongodb-wrapper-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "47954fcfb04d480593757221a2be5c7598c14d60", + "tarball": "http://registry.npmjs.org/mongodb-wrapper/-/mongodb-wrapper-0.2.6.tgz" + } + }, + "keywords": [ + "mongodb" + ], + "url": "http://registry.npmjs.org/mongodb-wrapper/" + }, + "mongode": { + "name": "mongode", + "description": "A thin wrapper around node-mongodb-native with a simpler API", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "vpulim", + "email": "v@pulim.com" + } + ], + "time": { + "modified": "2011-11-16T17:50:32.241Z", + "created": "2011-08-01T21:54:19.172Z", + "0.0.1": "2011-08-01T21:54:20.502Z", + "0.0.2": "2011-08-01T23:26:11.322Z", + "0.0.3": "2011-08-02T18:06:50.301Z", + "0.0.4": "2011-08-24T20:26:34.324Z", + "0.0.5": "2011-08-24T22:59:51.744Z", + "0.0.6": "2011-10-18T03:32:59.582Z", + "0.0.7": "2011-10-21T16:10:48.684Z", + "0.0.8": "2011-10-21T16:37:10.725Z", + "0.0.9": "2011-11-02T19:47:48.211Z", + "0.0.10": "2011-11-13T22:30:01.221Z", + "0.0.11": "2011-11-15T00:01:40.776Z", + "0.0.12": "2011-11-15T00:11:41.051Z", + "0.1.0": "2011-11-16T17:50:32.241Z" + }, + "author": { + "name": "Vinay Pulim", + "email": "v@pulim.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/milewise/mongode.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mongode/0.0.1", + "0.0.2": "http://registry.npmjs.org/mongode/0.0.2", + "0.0.3": "http://registry.npmjs.org/mongode/0.0.3", + "0.0.4": "http://registry.npmjs.org/mongode/0.0.4", + "0.0.5": "http://registry.npmjs.org/mongode/0.0.5", + "0.0.6": "http://registry.npmjs.org/mongode/0.0.6", + "0.0.7": "http://registry.npmjs.org/mongode/0.0.7", + "0.0.8": "http://registry.npmjs.org/mongode/0.0.8", + "0.0.9": "http://registry.npmjs.org/mongode/0.0.9", + "0.0.10": "http://registry.npmjs.org/mongode/0.0.10", + "0.0.11": "http://registry.npmjs.org/mongode/0.0.11", + "0.0.12": "http://registry.npmjs.org/mongode/0.0.12", + "0.1.0": "http://registry.npmjs.org/mongode/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "e0d80e5e947f8774f25296b66f99a11c750e609a", + "tarball": "http://registry.npmjs.org/mongode/-/mongode-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "70b0a75ffc7fcaa15595201a4c0b8819a30e3aa4", + "tarball": "http://registry.npmjs.org/mongode/-/mongode-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "b5efb4f328ddb528637c90899427315b602a1ae4", + "tarball": "http://registry.npmjs.org/mongode/-/mongode-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "286e5de531cad64d09b380ffdaf8df6f792481c3", + "tarball": "http://registry.npmjs.org/mongode/-/mongode-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "968b720184ba85151e0ae00fa52ac46edc26c35e", + "tarball": "http://registry.npmjs.org/mongode/-/mongode-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "58e7caaa1924e161876257f0254870e6d6ac5293", + "tarball": "http://registry.npmjs.org/mongode/-/mongode-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "3072007877b6705966bb1877b16d5d801275f010", + "tarball": "http://registry.npmjs.org/mongode/-/mongode-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "268e327f1b830b10bf17a87ba1ecdb62997849c7", + "tarball": "http://registry.npmjs.org/mongode/-/mongode-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "b2cc1f716a68625e66670ed07dcebad1f3185e3c", + "tarball": "http://registry.npmjs.org/mongode/-/mongode-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "a5e87c04e949c86b9eb24e5627a2dfc51756f118", + "tarball": "http://registry.npmjs.org/mongode/-/mongode-0.0.10.tgz" + }, + "0.0.11": { + "shasum": "f22fb564b0ee0cfc42168f012a4c6145721663e4", + "tarball": "http://registry.npmjs.org/mongode/-/mongode-0.0.11.tgz" + }, + "0.0.12": { + "shasum": "d9f9a95b09eb1a988f0a3b0c5d0a889dd6068cb1", + "tarball": "http://registry.npmjs.org/mongode/-/mongode-0.0.12.tgz" + }, + "0.1.0": { + "shasum": "160346954ba0c4de5bb324c3f8d71721279418ca", + "tarball": "http://registry.npmjs.org/mongode/-/mongode-0.1.0.tgz" + } + }, + "keywords": [ + "mongodb", + "mongo", + "driver" + ], + "url": "http://registry.npmjs.org/mongode/" + }, + "mongojs": { + "name": "mongojs", + "description": "a simple mongo module that implements the mongo api", + "dist-tags": { + "latest": "0.2.6" + }, + "maintainers": [ + { + "name": "mafintosh", + "email": "m@ge.tt" + }, + { + "name": "ianjorgensen", + "email": "jorgensen.ian@gmail.com" + } + ], + "time": { + "modified": "2011-10-20T15:35:12.053Z", + "created": "2011-06-22T18:19:11.020Z", + "0.1.0": "2011-06-22T18:19:11.419Z", + "0.1.1": "2011-06-22T18:32:24.944Z", + "0.1.4": "2011-06-23T09:47:04.371Z", + "0.1.5": "2011-06-23T12:28:31.059Z", + "0.1.6": "2011-06-23T21:44:37.494Z", + "0.1.8": "2011-07-21T12:07:41.469Z", + "0.1.9": "2011-08-19T12:55:44.221Z", + "0.2.0": "2011-08-19T13:00:24.073Z", + "0.2.1": "2011-09-10T16:01:59.811Z", + "0.2.2": "2011-09-20T08:12:14.628Z", + "0.2.3": "2011-09-20T14:45:39.318Z", + "0.2.4": "2011-09-20T14:46:34.525Z", + "0.2.5": "2011-09-23T10:57:17.690Z", + "0.2.6": "2011-10-20T15:35:12.053Z" + }, + "author": { + "name": "Ge.tt", + "email": "hello@ge.tt" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/mongojs/0.1.0", + "0.1.1": "http://registry.npmjs.org/mongojs/0.1.1", + "0.1.4": "http://registry.npmjs.org/mongojs/0.1.4", + "0.1.5": "http://registry.npmjs.org/mongojs/0.1.5", + "0.1.6": "http://registry.npmjs.org/mongojs/0.1.6", + "0.1.8": "http://registry.npmjs.org/mongojs/0.1.8", + "0.1.9": "http://registry.npmjs.org/mongojs/0.1.9", + "0.2.0": "http://registry.npmjs.org/mongojs/0.2.0", + "0.2.1": "http://registry.npmjs.org/mongojs/0.2.1", + "0.2.2": "http://registry.npmjs.org/mongojs/0.2.2", + "0.2.3": "http://registry.npmjs.org/mongojs/0.2.3", + "0.2.4": "http://registry.npmjs.org/mongojs/0.2.4", + "0.2.5": "http://registry.npmjs.org/mongojs/0.2.5", + "0.2.6": "http://registry.npmjs.org/mongojs/0.2.6" + }, + "dist": { + "0.1.0": { + "shasum": "44777c4681b0949ef49aa5d1c5ce526dc86e2cba", + "tarball": "http://registry.npmjs.org/mongojs/-/mongojs-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "58a394e9aeee11fe8b2d32ff9833f2082f1c8c3f", + "tarball": "http://registry.npmjs.org/mongojs/-/mongojs-0.1.1.tgz" + }, + "0.1.4": { + "shasum": "8f5c75a7cb34e75ee1a81ea7f123990d6395b7b0", + "tarball": "http://registry.npmjs.org/mongojs/-/mongojs-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "3263731814e0daee8792ee9a3a14f0891741971c", + "tarball": "http://registry.npmjs.org/mongojs/-/mongojs-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "a05a091f5de7cc695ff34ebdc3fd358ff6e0509b", + "tarball": "http://registry.npmjs.org/mongojs/-/mongojs-0.1.6.tgz" + }, + "0.1.8": { + "shasum": "ef33dc1c7bdafc3e0b30f7a0e0acfabfcb28618d", + "tarball": "http://registry.npmjs.org/mongojs/-/mongojs-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "bbab7225a3ecce1f83a367ccb108161569207086", + "tarball": "http://registry.npmjs.org/mongojs/-/mongojs-0.1.9.tgz" + }, + "0.2.0": { + "shasum": "4941a81928e9a87cfd3901f08f82fdfcc74a896d", + "tarball": "http://registry.npmjs.org/mongojs/-/mongojs-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "0b8d746ff7ea6247eea96427c1f8680439e17269", + "tarball": "http://registry.npmjs.org/mongojs/-/mongojs-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "67838ec58ff3e4cce445fd2de03fc70fdbdec558", + "tarball": "http://registry.npmjs.org/mongojs/-/mongojs-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "26f72af40915369529e762e1e557a8bd9e071a7b", + "tarball": "http://registry.npmjs.org/mongojs/-/mongojs-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "ec3c62331ce13f202e206da2ebe1db3fd03a4e7b", + "tarball": "http://registry.npmjs.org/mongojs/-/mongojs-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "02f1d6982318eb888f4e23d5f9dbff05985f6ed7", + "tarball": "http://registry.npmjs.org/mongojs/-/mongojs-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "cffd322d9120ef8de5a148926351f1d60e6647fb", + "tarball": "http://registry.npmjs.org/mongojs/-/mongojs-0.2.6.tgz" + } + }, + "keywords": [ + "mongo", + "db", + "mongodb" + ], + "url": "http://registry.npmjs.org/mongojs/" + }, + "mongolia": { + "name": "mongolia", + "description": "Layer on top of the mongodb driver to implement data logic.", + "dist-tags": { + "latest": "1.4.3" + }, + "maintainers": [ + { + "name": "masylum", + "email": "masylum@gmail.com" + } + ], + "author": { + "name": "Pau Ramon", + "email": "masylum@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/masylum/mongolia.git" + }, + "time": { + "modified": "2011-08-08T14:50:45.548Z", + "created": "2011-01-02T16:36:38.930Z", + "0.0.1": "2011-01-02T16:36:38.930Z", + "0.0.2": "2011-01-02T16:36:38.930Z", + "0.0.3": "2011-01-02T16:36:38.930Z", + "0.0.4": "2011-01-02T16:36:38.930Z", + "0.0.5": "2011-01-02T16:36:38.930Z", + "0.0.6": "2011-01-02T16:36:38.930Z", + "0.0.7": "2011-01-02T16:36:38.930Z", + "0.0.8": "2011-01-02T16:36:38.930Z", + "0.0.9": "2011-01-02T23:01:55.499Z", + "0.0.10": "2011-01-22T10:10:05.989Z", + "1.0.0": "2011-05-08T23:28:17.897Z", + "1.0.1": "2011-05-25T11:31:15.367Z", + "1.1.0": "2011-05-30T12:55:59.174Z", + "1.2.0": "2011-05-31T09:45:32.908Z", + "1.2.2": "2011-06-03T12:16:12.310Z", + "1.2.3": "2011-06-03T13:10:57.416Z", + "1.2.4": "2011-06-04T12:40:52.640Z", + "1.2.5": "2011-06-08T08:56:43.892Z", + "1.2.6": "2011-06-08T09:11:53.747Z", + "1.2.7": "2011-06-08T09:51:19.084Z", + "1.2.8": "2011-06-08T12:09:35.790Z", + "1.2.9": "2011-06-08T12:28:00.360Z", + "1.3.0": "2011-06-09T11:10:25.122Z", + "1.3.1": "2011-06-12T10:56:51.980Z", + "1.3.2": "2011-06-14T22:58:02.187Z", + "1.3.3": "2011-06-15T09:06:28.940Z", + "1.3.4": "2011-07-12T18:34:25.527Z", + "1.3.5": "2011-07-13T20:12:34.302Z", + "1.4.0": "2011-07-14T12:26:08.245Z", + "1.4.1": "2011-07-20T16:50:04.832Z", + "1.4.2": "2011-08-03T22:03:49.162Z", + "1.4.3": "2011-08-08T14:50:45.548Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mongolia/0.0.1", + "0.0.2": "http://registry.npmjs.org/mongolia/0.0.2", + "0.0.3": "http://registry.npmjs.org/mongolia/0.0.3", + "0.0.4": "http://registry.npmjs.org/mongolia/0.0.4", + "0.0.5": "http://registry.npmjs.org/mongolia/0.0.5", + "0.0.6": "http://registry.npmjs.org/mongolia/0.0.6", + "0.0.7": "http://registry.npmjs.org/mongolia/0.0.7", + "0.0.8": "http://registry.npmjs.org/mongolia/0.0.8", + "0.0.9": "http://registry.npmjs.org/mongolia/0.0.9", + "0.0.10": "http://registry.npmjs.org/mongolia/0.0.10", + "1.0.0": "http://registry.npmjs.org/mongolia/1.0.0", + "1.0.1": "http://registry.npmjs.org/mongolia/1.0.1", + "1.1.0": "http://registry.npmjs.org/mongolia/1.1.0", + "1.2.0": "http://registry.npmjs.org/mongolia/1.2.0", + "1.2.2": "http://registry.npmjs.org/mongolia/1.2.2", + "1.2.3": "http://registry.npmjs.org/mongolia/1.2.3", + "1.2.4": "http://registry.npmjs.org/mongolia/1.2.4", + "1.2.5": "http://registry.npmjs.org/mongolia/1.2.5", + "1.2.6": "http://registry.npmjs.org/mongolia/1.2.6", + "1.2.7": "http://registry.npmjs.org/mongolia/1.2.7", + "1.2.8": "http://registry.npmjs.org/mongolia/1.2.8", + "1.2.9": "http://registry.npmjs.org/mongolia/1.2.9", + "1.3.0": "http://registry.npmjs.org/mongolia/1.3.0", + "1.3.1": "http://registry.npmjs.org/mongolia/1.3.1", + "1.3.2": "http://registry.npmjs.org/mongolia/1.3.2", + "1.3.3": "http://registry.npmjs.org/mongolia/1.3.3", + "1.3.4": "http://registry.npmjs.org/mongolia/1.3.4", + "1.3.5": "http://registry.npmjs.org/mongolia/1.3.5", + "1.4.0": "http://registry.npmjs.org/mongolia/1.4.0", + "1.4.1": "http://registry.npmjs.org/mongolia/1.4.1", + "1.4.2": "http://registry.npmjs.org/mongolia/1.4.2", + "1.4.3": "http://registry.npmjs.org/mongolia/1.4.3" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/mongolia/-/mongolia-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/mongolia/-/mongolia-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/mongolia/-/mongolia-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://registry.npmjs.org/mongolia/-/mongolia-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://registry.npmjs.org/mongolia/-/mongolia-0.0.5.tgz" + }, + "0.0.6": { + "tarball": "http://registry.npmjs.org/mongolia/-/mongolia-0.0.6.tgz" + }, + "0.0.7": { + "tarball": "http://registry.npmjs.org/mongolia/-/mongolia-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "19663f9cac704caefe5e6ecbe5473d008bbdf3b0", + "tarball": "http://registry.npmjs.org/mongolia/-/mongolia-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "418262dd0ebc4efde9c2ceb4942a0952ae40e375", + "tarball": "http://registry.npmjs.org/mongolia/-/mongolia-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "43be8c69075ee7b4178718a16130a72b1fe7c52a", + "tarball": "http://registry.npmjs.org/mongolia/-/mongolia-0.0.10.tgz" + }, + "1.0.0": { + "shasum": "36a0c7271738d5649ddd15b842c2fb21a81bce37", + "tarball": "http://registry.npmjs.org/mongolia/-/mongolia-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "939d3a7246cabc22f16421f6de737977dba2b65f", + "tarball": "http://registry.npmjs.org/mongolia/-/mongolia-1.0.1.tgz" + }, + "1.1.0": { + "shasum": "9f37989b85ee7fb99afba41c60dbf4e8fd34c39f", + "tarball": "http://registry.npmjs.org/mongolia/-/mongolia-1.1.0.tgz" + }, + "1.2.0": { + "shasum": "4d4e9348fd1246ab13ece86aa963b4bc7f2f4cbc", + "tarball": "http://registry.npmjs.org/mongolia/-/mongolia-1.2.0.tgz" + }, + "1.2.2": { + "shasum": "cf4f47e80376b7c5b762ae0a48bc2c03872bfba5", + "tarball": "http://registry.npmjs.org/mongolia/-/mongolia-1.2.2.tgz" + }, + "1.2.3": { + "shasum": "8f3baeb82b927178dc30f9b94a215d05bad8a65a", + "tarball": "http://registry.npmjs.org/mongolia/-/mongolia-1.2.3.tgz" + }, + "1.2.4": { + "shasum": "782c369715e1da23c4345ba69754b11739a2ea57", + "tarball": "http://registry.npmjs.org/mongolia/-/mongolia-1.2.4.tgz" + }, + "1.2.5": { + "shasum": "46866018db4381eea291de6a2a98eb22a3afd4cb", + "tarball": "http://registry.npmjs.org/mongolia/-/mongolia-1.2.5.tgz" + }, + "1.2.6": { + "shasum": "7fd8134d765830847630a47f785474ab008a6167", + "tarball": "http://registry.npmjs.org/mongolia/-/mongolia-1.2.6.tgz" + }, + "1.2.7": { + "shasum": "7e85a57179ffc009a4314c9df958ac3aa65dc64b", + "tarball": "http://registry.npmjs.org/mongolia/-/mongolia-1.2.7.tgz" + }, + "1.2.8": { + "shasum": "6b690789d7bc2b3892e9c0d40b2138bc49f3828f", + "tarball": "http://registry.npmjs.org/mongolia/-/mongolia-1.2.8.tgz" + }, + "1.2.9": { + "shasum": "1be9b476dc13db0b431aebd35ee634118d546d66", + "tarball": "http://registry.npmjs.org/mongolia/-/mongolia-1.2.9.tgz" + }, + "1.3.0": { + "shasum": "36514ec87ba86cb502765318fd320fa1177e3a06", + "tarball": "http://registry.npmjs.org/mongolia/-/mongolia-1.3.0.tgz" + }, + "1.3.1": { + "shasum": "854ab070d32ec93170c3e09f68b40f340c29bbbe", + "tarball": "http://registry.npmjs.org/mongolia/-/mongolia-1.3.1.tgz" + }, + "1.3.2": { + "shasum": "fd2c860d476d2eaa088decedd3045c89aab201ce", + "tarball": "http://registry.npmjs.org/mongolia/-/mongolia-1.3.2.tgz" + }, + "1.3.3": { + "shasum": "dadec7e169a00b7011b81c1225694910b035bd9b", + "tarball": "http://registry.npmjs.org/mongolia/-/mongolia-1.3.3.tgz" + }, + "1.3.4": { + "shasum": "179b0478d9f65f247924aa9e2b29121248b3a0b6", + "tarball": "http://registry.npmjs.org/mongolia/-/mongolia-1.3.4.tgz" + }, + "1.3.5": { + "shasum": "9e88367a85331ccbc54276b8838efb43253beab7", + "tarball": "http://registry.npmjs.org/mongolia/-/mongolia-1.3.5.tgz" + }, + "1.4.0": { + "shasum": "da9736edd1a0851f6b8ab5f5e68ec703eaa8a6b3", + "tarball": "http://registry.npmjs.org/mongolia/-/mongolia-1.4.0.tgz" + }, + "1.4.1": { + "shasum": "ee3ffa19da7bc7387e4d21f5ecc49502e0783c3b", + "tarball": "http://registry.npmjs.org/mongolia/-/mongolia-1.4.1.tgz" + }, + "1.4.2": { + "shasum": "28c3b80965a0da80a50899ce37703718646c8aad", + "tarball": "http://registry.npmjs.org/mongolia/-/mongolia-1.4.2.tgz" + }, + "1.4.3": { + "shasum": "50cf61754b0dd691e15c8bb5fa73eb4275754c80", + "tarball": "http://registry.npmjs.org/mongolia/-/mongolia-1.4.3.tgz" + } + }, + "keywords": [ + "mongo", + "mongodb", + "models", + "database", + "db" + ], + "url": "http://registry.npmjs.org/mongolia/" + }, + "mongolian": { + "name": "mongolian", + "description": "Mongolian DeadBeef is an awesome Mongo DB node.js driver", + "dist-tags": { + "latest": "0.1.13" + }, + "maintainers": [ + { + "name": "marcello", + "email": "marcello@cellosoft.com" + } + ], + "time": { + "modified": "2011-11-14T04:06:38.467Z", + "created": "2011-03-04T03:02:04.792Z", + "0.1.0": "2011-03-04T03:02:04.937Z", + "0.1.1": "2011-03-06T15:52:01.481Z", + "0.1.2": "2011-03-06T18:26:37.401Z", + "0.1.3": "2011-03-09T02:23:26.548Z", + "0.1.4": "2011-03-24T14:01:20.243Z", + "0.1.5": "2011-03-28T04:23:49.601Z", + "0.1.6": "2011-04-05T23:41:18.493Z", + "0.1.7": "2011-04-17T04:54:57.176Z", + "0.1.8": "2011-04-17T15:50:02.065Z", + "0.1.9-unstable": "2011-05-11T02:58:54.480Z", + "0.1.9": "2011-05-11T03:01:07.864Z", + "0.1.10": "2011-06-26T13:26:33.152Z", + "0.1.11": "2011-09-10T03:31:53.357Z", + "0.1.12": "2011-09-12T01:28:06.745Z", + "0.1.13": "2011-11-14T04:06:38.467Z" + }, + "author": { + "name": "Marcello Bastéa-Forte", + "email": "marcello@cellosoft.com", + "url": "http://marcello.cellosoft.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/marcello3d/node-mongolian.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/mongolian/0.1.0", + "0.1.1": "http://registry.npmjs.org/mongolian/0.1.1", + "0.1.2": "http://registry.npmjs.org/mongolian/0.1.2", + "0.1.3": "http://registry.npmjs.org/mongolian/0.1.3", + "0.1.4": "http://registry.npmjs.org/mongolian/0.1.4", + "0.1.5": "http://registry.npmjs.org/mongolian/0.1.5", + "0.1.6": "http://registry.npmjs.org/mongolian/0.1.6", + "0.1.7": "http://registry.npmjs.org/mongolian/0.1.7", + "0.1.8": "http://registry.npmjs.org/mongolian/0.1.8", + "0.1.9-unstable": "http://registry.npmjs.org/mongolian/0.1.9-unstable", + "0.1.9": "http://registry.npmjs.org/mongolian/0.1.9", + "0.1.10": "http://registry.npmjs.org/mongolian/0.1.10", + "0.1.11": "http://registry.npmjs.org/mongolian/0.1.11", + "0.1.12": "http://registry.npmjs.org/mongolian/0.1.12", + "0.1.13": "http://registry.npmjs.org/mongolian/0.1.13" + }, + "dist": { + "0.1.0": { + "shasum": "c87303361f18149530b9d71486d0686fc708def5", + "tarball": "http://registry.npmjs.org/mongolian/-/mongolian-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "edde2b431b9a35c870233825501794c246ab5a18", + "tarball": "http://registry.npmjs.org/mongolian/-/mongolian-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "49093ea7b5bc3430653a3678f146c247333a7c28", + "tarball": "http://registry.npmjs.org/mongolian/-/mongolian-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "6703098bfe085d33d98cf9d251e3420fb59cc2e6", + "tarball": "http://registry.npmjs.org/mongolian/-/mongolian-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "20b82a586f5be4dd624766b2196d78906c219743", + "tarball": "http://registry.npmjs.org/mongolian/-/mongolian-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "dba756cfb985aea845d36059c27422e6ae1bf542", + "tarball": "http://registry.npmjs.org/mongolian/-/mongolian-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "32032fda5113c4682eeb6bc920d071c06e0ea1bc", + "tarball": "http://registry.npmjs.org/mongolian/-/mongolian-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "7db5a31268c6cc5867062014c0e071c321221c64", + "tarball": "http://registry.npmjs.org/mongolian/-/mongolian-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "b1bef855d4b33822d85265322cb86089d1363fd4", + "tarball": "http://registry.npmjs.org/mongolian/-/mongolian-0.1.8.tgz" + }, + "0.1.9-unstable": { + "shasum": "566a0be4a8e101fa67f46dae96f9749a5cf12a43", + "tarball": "http://registry.npmjs.org/mongolian/-/mongolian-0.1.9-unstable.tgz" + }, + "0.1.9": { + "shasum": "0d6f49d11c0d42c2e48b8d9b04619730620a40ee", + "tarball": "http://registry.npmjs.org/mongolian/-/mongolian-0.1.9.tgz" + }, + "0.1.10": { + "shasum": "8546295486eb9167c0efdc2091b9baa90ab6ebf5", + "tarball": "http://registry.npmjs.org/mongolian/-/mongolian-0.1.10.tgz" + }, + "0.1.11": { + "shasum": "c813c4253e6e26f3a63515832c1f230f20f895ec", + "tarball": "http://registry.npmjs.org/mongolian/-/mongolian-0.1.11.tgz" + }, + "0.1.12": { + "shasum": "fc2a901b1314f1f6eede907239f01a71b7d8ec98", + "tarball": "http://registry.npmjs.org/mongolian/-/mongolian-0.1.12.tgz" + }, + "0.1.13": { + "shasum": "9cb21c4a9e48cbcc1866afb4cbe559004f5b02c8", + "tarball": "http://registry.npmjs.org/mongolian/-/mongolian-0.1.13.tgz" + } + }, + "keywords": [ + "mongo", + "mongodb", + "database", + "db", + "nosql" + ], + "url": "http://registry.npmjs.org/mongolian/" + }, + "mongoose": { + "name": "mongoose", + "dist-tags": { + "latest": "2.4.2" + }, + "maintainers": [ + { + "name": "tmpvar", + "email": "tmpvar@gmail.com" + }, + { + "name": "rauchg", + "email": "rauchg@gmail.com" + }, + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + }, + { + "name": "aaron", + "email": "aaron.heckmann+github@gmail.com" + } + ], + "author": { + "name": "Guillermo Rauch", + "email": "guillermo@learnboost.com" + }, + "description": "Mongoose MongoDB ODM", + "time": { + "modified": "2011-12-12T15:23:54.174Z", + "created": "2010-12-20T09:15:41.703Z", + "0.0.1": "2010-12-20T09:15:41.703Z", + "0.0.2": "2010-12-20T09:15:41.703Z", + "0.0.3": "2010-12-20T09:15:41.703Z", + "0.0.4": "2010-12-20T09:15:41.703Z", + "0.0.5": "2010-12-30T00:26:44.656Z", + "1.0.0": "2011-02-01T09:26:36.264Z", + "1.0.1": "2011-02-02T18:05:48.026Z", + "1.0.2": "2011-02-02T19:25:16.714Z", + "0.0.6": "2011-02-02T21:27:25.069Z", + "1.0.3": "2011-02-03T01:04:54.627Z", + "1.0.4": "2011-02-03T02:24:37.541Z", + "1.0.5": "2011-02-03T07:37:33.430Z", + "1.0.6": "2011-02-03T18:40:56.971Z", + "1.0.7": "2011-02-06T16:57:17.476Z", + "1.0.8": "2011-02-09T23:27:09.020Z", + "1.0.10": "2011-02-12T07:24:10.414Z", + "1.0.11": "2011-02-14T23:45:45.542Z", + "1.0.12": "2011-02-15T03:35:40.205Z", + "1.0.13": "2011-02-17T00:51:55.770Z", + "1.0.14": "2011-02-18T00:38:47.292Z", + "1.0.15": "2011-02-19T01:38:18.169Z", + "1.0.16": "2011-02-19T02:26:57.671Z", + "1.1.0": "2011-02-26T04:43:56.645Z", + "1.1.1": "2011-03-02T00:18:56.788Z", + "1.1.2": "2011-03-03T17:48:53.171Z", + "1.1.3": "2011-03-05T07:44:06.557Z", + "1.1.4": "2011-03-10T00:28:53.156Z", + "1.1.5": "2011-03-15T00:37:40.435Z", + "1.1.6": "2011-03-22T16:10:55.265Z", + "1.1.7": "2011-03-23T02:00:52.187Z", + "1.1.8": "2011-03-23T19:00:40.920Z", + "1.1.9": "2011-03-23T22:49:15.198Z", + "1.1.10": "2011-03-24T00:23:42.848Z", + "1.1.11": "2011-03-25T19:09:30.484Z", + "1.1.12": "2011-03-26T14:48:41.652Z", + "1.1.13": "2011-03-26T23:48:14.985Z", + "1.1.14": "2011-03-28T17:00:52.109Z", + "1.1.15": "2011-03-28T17:25:58.846Z", + "1.1.16": "2011-03-28T21:16:14.230Z", + "1.1.17": "2011-03-30T14:42:39.101Z", + "1.1.18": "2011-03-30T15:37:46.000Z", + "1.1.19": "2011-03-31T16:48:49.190Z", + "1.1.20": "2011-03-31T17:09:45.484Z", + "1.1.21": "2011-03-31T19:24:24.139Z", + "1.1.22": "2011-03-31T21:25:52.030Z", + "1.1.23": "2011-04-01T19:15:11.431Z", + "1.1.24": "2011-04-03T16:16:02.626Z", + "1.1.25": "2011-04-08T16:29:05.029Z", + "1.2.0": "2011-04-11T19:05:02.504Z", + "1.3.0": "2011-04-19T12:46:54.897Z", + "1.3.1": "2011-04-27T14:33:22.231Z", + "1.3.2": "2011-04-27T16:51:14.487Z", + "1.3.3": "2011-04-27T20:01:05.508Z", + "1.3.4": "2011-05-17T13:54:47.726Z", + "1.3.5": "2011-05-19T03:09:27.393Z", + "1.3.6": "2011-05-19T16:39:23.373Z", + "1.3.7": "2011-06-03T16:22:32.642Z", + "1.4.0": "2011-06-10T22:32:47.539Z", + "1.5.0": "2011-06-28T01:59:32.094Z", + "1.6.0": "2011-07-07T13:14:29.515Z", + "1.7.0": "2011-07-12T21:32:35.126Z", + "1.7.1": "2011-07-13T01:05:54.571Z", + "1.7.2": "2011-07-13T12:28:53.576Z", + "1.7.3": "2011-07-16T14:11:03.405Z", + "1.7.4": "2011-07-25T19:04:28.431Z", + "1.8.0": "2011-08-04T15:14:16.127Z", + "1.8.1": "2011-08-10T19:35:15.648Z", + "1.8.2": "2011-08-17T13:56:41.857Z", + "1.8.3": "2011-08-19T19:43:38.717Z", + "1.8.4": "2011-08-22T00:51:07.638Z", + "2.0.0": "2011-08-25T06:29:35.853Z", + "2.0.1": "2011-08-25T16:54:37.137Z", + "2.0.2": "2011-08-26T21:57:24.823Z", + "2.0.3": "2011-08-28T19:32:25.434Z", + "2.0.4": "2011-08-29T18:12:49.183Z", + "2.1.0": "2011-09-02T03:09:30.042Z", + "2.1.1": "2011-09-07T17:48:19.633Z", + "2.1.2": "2011-09-07T21:48:18.840Z", + "2.1.3": "2011-09-16T17:41:03.198Z", + "2.1.4": "2011-09-20T19:26:50.629Z", + "2.2.0": "2011-09-23T02:06:03.517Z", + "2.2.1": "2011-09-27T16:17:48.749Z", + "2.2.2": "2011-09-28T20:58:39.617Z", + "2.2.3": "2011-09-29T18:41:30.736Z", + "2.2.4": "2011-10-03T20:06:29.971Z", + "2.3.0": "2011-10-04T16:45:20.126Z", + "2.3.1": "2011-10-10T22:12:42.753Z", + "2.3.2": "2011-10-11T19:48:29.198Z", + "2.3.3": "2011-10-12T16:47:53.551Z", + "2.3.4": "2011-10-18T16:52:57.080Z", + "2.3.5": "2011-10-19T15:56:21.497Z", + "2.3.6": "2011-10-21T16:40:25.316Z", + "2.3.7": "2011-10-24T15:20:34.723Z", + "2.3.8": "2011-10-26T20:52:43.205Z", + "2.3.9": "2011-11-04T15:45:00.880Z", + "2.3.10": "2011-11-05T20:05:16.998Z", + "2.3.11": "2011-11-08T22:00:27.415Z", + "2.3.12": "2011-11-09T18:36:38.730Z", + "2.3.13": "2011-11-15T15:29:00.953Z", + "2.4.0": "2011-11-30T03:05:21.763Z", + "2.4.1": "2011-12-02T15:17:29.912Z", + "2.4.2": "2011-12-12T15:23:54.174Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/LearnBoost/mongoose.git" + }, + "users": { + "vesln": true, + "deedubs": true, + "wojohowitz": true, + "pid": true, + "clux": true, + "troygoode": true + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mongoose/0.0.1", + "0.0.2": "http://registry.npmjs.org/mongoose/0.0.2", + "0.0.3": "http://registry.npmjs.org/mongoose/0.0.3", + "0.0.4": "http://registry.npmjs.org/mongoose/0.0.4", + "0.0.5": "http://registry.npmjs.org/mongoose/0.0.5", + "1.0.0": "http://registry.npmjs.org/mongoose/1.0.0", + "1.0.1": "http://registry.npmjs.org/mongoose/1.0.1", + "1.0.2": "http://registry.npmjs.org/mongoose/1.0.2", + "0.0.6": "http://registry.npmjs.org/mongoose/0.0.6", + "1.0.3": "http://registry.npmjs.org/mongoose/1.0.3", + "1.0.4": "http://registry.npmjs.org/mongoose/1.0.4", + "1.0.5": "http://registry.npmjs.org/mongoose/1.0.5", + "1.0.6": "http://registry.npmjs.org/mongoose/1.0.6", + "1.0.7": "http://registry.npmjs.org/mongoose/1.0.7", + "1.0.8": "http://registry.npmjs.org/mongoose/1.0.8", + "1.0.10": "http://registry.npmjs.org/mongoose/1.0.10", + "1.0.11": "http://registry.npmjs.org/mongoose/1.0.11", + "1.0.12": "http://registry.npmjs.org/mongoose/1.0.12", + "1.0.13": "http://registry.npmjs.org/mongoose/1.0.13", + "1.0.14": "http://registry.npmjs.org/mongoose/1.0.14", + "1.0.15": "http://registry.npmjs.org/mongoose/1.0.15", + "1.0.16": "http://registry.npmjs.org/mongoose/1.0.16", + "1.1.0": "http://registry.npmjs.org/mongoose/1.1.0", + "1.1.1": "http://registry.npmjs.org/mongoose/1.1.1", + "1.1.2": "http://registry.npmjs.org/mongoose/1.1.2", + "1.1.3": "http://registry.npmjs.org/mongoose/1.1.3", + "1.1.4": "http://registry.npmjs.org/mongoose/1.1.4", + "1.1.5": "http://registry.npmjs.org/mongoose/1.1.5", + "1.1.6": "http://registry.npmjs.org/mongoose/1.1.6", + "1.1.7": "http://registry.npmjs.org/mongoose/1.1.7", + "1.1.8": "http://registry.npmjs.org/mongoose/1.1.8", + "1.1.9": "http://registry.npmjs.org/mongoose/1.1.9", + "1.1.10": "http://registry.npmjs.org/mongoose/1.1.10", + "1.1.11": "http://registry.npmjs.org/mongoose/1.1.11", + "1.1.12": "http://registry.npmjs.org/mongoose/1.1.12", + "1.1.13": "http://registry.npmjs.org/mongoose/1.1.13", + "1.1.14": "http://registry.npmjs.org/mongoose/1.1.14", + "1.1.15": "http://registry.npmjs.org/mongoose/1.1.15", + "1.1.16": "http://registry.npmjs.org/mongoose/1.1.16", + "1.1.17": "http://registry.npmjs.org/mongoose/1.1.17", + "1.1.18": "http://registry.npmjs.org/mongoose/1.1.18", + "1.1.19": "http://registry.npmjs.org/mongoose/1.1.19", + "1.1.20": "http://registry.npmjs.org/mongoose/1.1.20", + "1.1.21": "http://registry.npmjs.org/mongoose/1.1.21", + "1.1.22": "http://registry.npmjs.org/mongoose/1.1.22", + "1.1.23": "http://registry.npmjs.org/mongoose/1.1.23", + "1.1.24": "http://registry.npmjs.org/mongoose/1.1.24", + "1.1.25": "http://registry.npmjs.org/mongoose/1.1.25", + "1.2.0": "http://registry.npmjs.org/mongoose/1.2.0", + "1.3.0": "http://registry.npmjs.org/mongoose/1.3.0", + "1.3.1": "http://registry.npmjs.org/mongoose/1.3.1", + "1.3.2": "http://registry.npmjs.org/mongoose/1.3.2", + "1.3.3": "http://registry.npmjs.org/mongoose/1.3.3", + "1.3.4": "http://registry.npmjs.org/mongoose/1.3.4", + "1.3.5": "http://registry.npmjs.org/mongoose/1.3.5", + "1.3.6": "http://registry.npmjs.org/mongoose/1.3.6", + "1.3.7": "http://registry.npmjs.org/mongoose/1.3.7", + "1.4.0": "http://registry.npmjs.org/mongoose/1.4.0", + "1.5.0": "http://registry.npmjs.org/mongoose/1.5.0", + "1.6.0": "http://registry.npmjs.org/mongoose/1.6.0", + "1.7.2": "http://registry.npmjs.org/mongoose/1.7.2", + "1.7.3": "http://registry.npmjs.org/mongoose/1.7.3", + "1.7.4": "http://registry.npmjs.org/mongoose/1.7.4", + "1.8.0": "http://registry.npmjs.org/mongoose/1.8.0", + "1.8.1": "http://registry.npmjs.org/mongoose/1.8.1", + "1.8.2": "http://registry.npmjs.org/mongoose/1.8.2", + "1.8.3": "http://registry.npmjs.org/mongoose/1.8.3", + "1.8.4": "http://registry.npmjs.org/mongoose/1.8.4", + "2.0.0": "http://registry.npmjs.org/mongoose/2.0.0", + "2.0.1": "http://registry.npmjs.org/mongoose/2.0.1", + "2.0.2": "http://registry.npmjs.org/mongoose/2.0.2", + "2.0.3": "http://registry.npmjs.org/mongoose/2.0.3", + "2.0.4": "http://registry.npmjs.org/mongoose/2.0.4", + "2.1.0": "http://registry.npmjs.org/mongoose/2.1.0", + "2.1.1": "http://registry.npmjs.org/mongoose/2.1.1", + "2.1.2": "http://registry.npmjs.org/mongoose/2.1.2", + "2.1.3": "http://registry.npmjs.org/mongoose/2.1.3", + "2.1.4": "http://registry.npmjs.org/mongoose/2.1.4", + "2.2.0": "http://registry.npmjs.org/mongoose/2.2.0", + "2.2.1": "http://registry.npmjs.org/mongoose/2.2.1", + "2.2.2": "http://registry.npmjs.org/mongoose/2.2.2", + "2.2.3": "http://registry.npmjs.org/mongoose/2.2.3", + "2.2.4": "http://registry.npmjs.org/mongoose/2.2.4", + "2.3.0": "http://registry.npmjs.org/mongoose/2.3.0", + "2.3.1": "http://registry.npmjs.org/mongoose/2.3.1", + "2.3.2": "http://registry.npmjs.org/mongoose/2.3.2", + "2.3.3": "http://registry.npmjs.org/mongoose/2.3.3", + "2.3.4": "http://registry.npmjs.org/mongoose/2.3.4", + "2.3.5": "http://registry.npmjs.org/mongoose/2.3.5", + "2.3.6": "http://registry.npmjs.org/mongoose/2.3.6", + "2.3.7": "http://registry.npmjs.org/mongoose/2.3.7", + "2.3.8": "http://registry.npmjs.org/mongoose/2.3.8", + "2.3.9": "http://registry.npmjs.org/mongoose/2.3.9", + "2.3.10": "http://registry.npmjs.org/mongoose/2.3.10", + "2.3.11": "http://registry.npmjs.org/mongoose/2.3.11", + "2.3.12": "http://registry.npmjs.org/mongoose/2.3.12", + "2.3.13": "http://registry.npmjs.org/mongoose/2.3.13", + "2.4.0": "http://registry.npmjs.org/mongoose/2.4.0", + "2.4.1": "http://registry.npmjs.org/mongoose/2.4.1", + "2.4.2": "http://registry.npmjs.org/mongoose/2.4.2" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "028ca31c0f293c3440565e79b1f92fd23ac54b28", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "f3133bb6670c65767443d14e9a4e851b8132795c", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-0.0.5.tgz" + }, + "1.0.0": { + "shasum": "db880410fb75f98e2069e8d8ed3591f729fe26c6", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "abd2a96a24fca89340a2129939a7b22c55564de1", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "2e9c66cd88d75956f6ec984989425654160db7e3", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.0.2.tgz" + }, + "0.0.6": { + "shasum": "6cb67d8ca268120204b9e6d5182f152f4d5662de", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-0.0.6.tgz" + }, + "1.0.3": { + "shasum": "b0fe1f451d89964e69ce09f859541a7c1c8e99e2", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "79cf6ad22f4c17574190ad2a4dcf4ebac9f8f86d", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.0.4.tgz" + }, + "1.0.5": { + "shasum": "661696541b97bc714d2d99dc8fd3239d83c84b30", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.0.5.tgz" + }, + "1.0.6": { + "shasum": "3ccf7097e101c49cf494694e4e9639b1d16b9cde", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.0.6.tgz" + }, + "1.0.7": { + "shasum": "b3573930a22066fbf3ab745a79329d5eae75b8ae", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.0.7.tgz" + }, + "1.0.8": { + "shasum": "9556abebbd57d9f01d0750fd0e8978a0a1ee9577", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.0.8.tgz" + }, + "1.0.10": { + "shasum": "6a563623e6c5f3ed969964f1695d189e16b49497", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.0.10.tgz" + }, + "1.0.11": { + "shasum": "33fa85eadf18d85bb08a02f15a3ac05a45a45aae", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.0.11.tgz" + }, + "1.0.12": { + "shasum": "40c98744cb779d1c9da806a1714c1871d8bd0695", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.0.12.tgz" + }, + "1.0.13": { + "shasum": "25a37b15ad5b2f21ae0e95ae1ee623e14e985eb8", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.0.13.tgz" + }, + "1.0.14": { + "shasum": "ee4b707c4a3d073d00974a5a71fafc170bbb52b5", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.0.14.tgz" + }, + "1.0.15": { + "shasum": "1afd9fdd818e760827d1f3357dcb2c875ad4b7aa", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.0.15.tgz" + }, + "1.0.16": { + "shasum": "6ecacaf117d826ee091f187193a21c530bbcef9b", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.0.16.tgz" + }, + "1.1.0": { + "shasum": "b107e76f818d33be18670a83a0b70a90080624eb", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "6c6e2a6f54da7403d7b5dfac7c0d4bf0d1a6a7e9", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.1.1.tgz" + }, + "1.1.2": { + "shasum": "e257c009ee8d23cbbed2f16f6e4d4de6b73aaf4a", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.1.2.tgz" + }, + "1.1.3": { + "shasum": "eacdfe89bde4408edeeb134c75d7dfc24d0841d2", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.1.3.tgz" + }, + "1.1.4": { + "shasum": "cc7a24114f1d481a91b0fd7061fe6e257a972324", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.1.4.tgz" + }, + "1.1.5": { + "shasum": "e8537afbc910d3d99a651ad286734a4af4c9241f", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.1.5.tgz" + }, + "1.1.6": { + "shasum": "1dfd166e097ec48aea136bebdb2c01aa4745d8f0", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.1.6.tgz" + }, + "1.1.7": { + "shasum": "c91c9222b1f29573a868cb393d28d90ff7a58520", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.1.7.tgz" + }, + "1.1.8": { + "shasum": "05a73f125299fa06b28d46f20039f0b33d83148c", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.1.8.tgz" + }, + "1.1.9": { + "shasum": "83ce05a43c040e1fad87b21a70954f2139d22546", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.1.9.tgz" + }, + "1.1.10": { + "shasum": "56cdfe612783d06b9c1e572aba6dc268e8efe362", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.1.10.tgz" + }, + "1.1.11": { + "shasum": "4ec361814189ae16d07a31cf3c1b52c7e841cd3f", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.1.11.tgz" + }, + "1.1.12": { + "shasum": "b4162426fcf73dfb367ad1fa467f28d58cacbce0", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.1.12.tgz" + }, + "1.1.13": { + "shasum": "abed73067a58a4d52bc3210a9fd50c3490d04a8b", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.1.13.tgz" + }, + "1.1.14": { + "shasum": "b23ea5654609dbb86d9daf6b88b2ebb7c0896345", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.1.14.tgz" + }, + "1.1.15": { + "shasum": "0c8b5f993f22b0fb9b7104118f33271f6b5a89bb", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.1.15.tgz" + }, + "1.1.16": { + "shasum": "ca6bc79bc1a2b4ec8503a1e0d0d752f84411f8bb", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.1.16.tgz" + }, + "1.1.17": { + "shasum": "3e4350579b0bb7cb0fa4291e7d1bbd4cb3ec5747", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.1.17.tgz" + }, + "1.1.18": { + "shasum": "98390f899dae523c51cf33d75f96f0adeb9f743a", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.1.18.tgz" + }, + "1.1.19": { + "shasum": "dcf2a88e30b063ec72bc1785c271920762d75730", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.1.19.tgz" + }, + "1.1.20": { + "shasum": "a9fbbfc3ed8d82ba57a16d4f00cbb86b34cbfc33", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.1.20.tgz" + }, + "1.1.21": { + "shasum": "4a8a585c92c7d7b3e858aeedc7195a752c8c1eb7", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.1.21.tgz" + }, + "1.1.22": { + "shasum": "8434dfd92a7df5f65b476daa482bdc3f186e71eb", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.1.22.tgz" + }, + "1.1.23": { + "shasum": "6ea7f1fa0eefc1b15c64d1dd1fec7b557ae3d83f", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.1.23.tgz" + }, + "1.1.24": { + "shasum": "44f790b709c29768575d677c7c68fcd849328c64", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.1.24.tgz" + }, + "1.1.25": { + "shasum": "842bccf3232757a991f07b4c7ce6a4e67c7fea96", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.1.25.tgz" + }, + "1.2.0": { + "shasum": "88e45e4b17d77bee210282b9d483421a3cf5a3dc", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.2.0.tgz" + }, + "1.3.0": { + "shasum": "437a6ace6414bd99feaad2d6212a393fd55bc9d1", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.3.0.tgz" + }, + "1.3.1": { + "shasum": "51361fa029e46b6175702d1d36e60f6cbbde5b66", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.3.1.tgz" + }, + "1.3.2": { + "shasum": "4e45c48f2be9a7043217e4c9bf46a6bb08463981", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.3.2.tgz" + }, + "1.3.3": { + "shasum": "041ddd7c518b72d68820f597bed45413c3924caa", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.3.3.tgz" + }, + "1.3.4": { + "shasum": "e8bf561e68ba869e2036d5afd9e84c328345e849", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.3.4.tgz" + }, + "1.3.5": { + "shasum": "4db719e4da1330de9fd10f080b63ce6ec023feec", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.3.5.tgz" + }, + "1.3.6": { + "shasum": "702985e6b63fd714a34d1e3419f291c0e1f0094e", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.3.6.tgz" + }, + "1.3.7": { + "shasum": "4bb6a2f28a469e3c9ce2558ab1abfe5c5e8b574c", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.3.7.tgz" + }, + "1.4.0": { + "shasum": "7ec1edd94215533ba23bd5821bfc937f35f61d47", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.4.0.tgz" + }, + "1.5.0": { + "shasum": "5f04c36f33e4f40c936a63cab29a709de0b0a7dc", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.5.0.tgz" + }, + "1.6.0": { + "shasum": "7fcdfda16b987e9b178a1039339c989bda633fd6", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.6.0.tgz" + }, + "1.7.2": { + "shasum": "5a75990fdececca2f4860e328ef7b1dd948c8086", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.7.2.tgz" + }, + "1.7.3": { + "shasum": "06363603800f47accd2afa8b671bc0d53f2b7396", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.7.3.tgz" + }, + "1.7.4": { + "shasum": "d74e0fdf5c71cde2918eabce446fe380b11c0188", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.7.4.tgz" + }, + "1.8.0": { + "shasum": "35f0cb7db450a615ad6925e7701c32e71393b6a0", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.8.0.tgz" + }, + "1.8.1": { + "shasum": "2baac22187cd4a538b98d65a3da97ecc16d5fc8a", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.8.1.tgz" + }, + "1.8.2": { + "shasum": "a2a4df31f0b4c36f5ab349770e3881494437d93c", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.8.2.tgz" + }, + "1.8.3": { + "shasum": "3fd35018ae3f5e3d7afbd3e628b112adaa079928", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.8.3.tgz" + }, + "1.8.4": { + "shasum": "fa7e08e7a3955fa67c4aa98b33cc0f94d1fefd6a", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-1.8.4.tgz" + }, + "2.0.0": { + "shasum": "8d43b114ab561a5839ca4b2303a1545c8f57d85b", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-2.0.0.tgz" + }, + "2.0.1": { + "shasum": "b9ef96057f8b210eced0f622d616f3c764592f5f", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-2.0.1.tgz" + }, + "2.0.2": { + "shasum": "a7456ec8833dff09fc5efcad935157e041401970", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-2.0.2.tgz" + }, + "2.0.3": { + "shasum": "c752376d468532532d7474f8684d500fb34a4fcb", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-2.0.3.tgz" + }, + "2.0.4": { + "shasum": "99c13a8c67cefed85adc053b631349ccada93839", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-2.0.4.tgz" + }, + "2.1.0": { + "shasum": "76e4ab11ad0c2f7094ab752351971977bad1afa1", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-2.1.0.tgz" + }, + "2.1.1": { + "shasum": "c88ac0f6e53f30d59edd366db94b25ef36508c0e", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-2.1.1.tgz" + }, + "2.1.2": { + "shasum": "a68f00bcf92e112a78524a277ddd18aaad0e6457", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-2.1.2.tgz" + }, + "2.1.3": { + "shasum": "b4247d73b11e4de7159f467f880ddbf89d82d30c", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-2.1.3.tgz" + }, + "2.1.4": { + "shasum": "8e819da2e076b05ecf3bf1dfe3ee263011192805", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-2.1.4.tgz" + }, + "2.2.0": { + "shasum": "8c20e1b233e1eb7e9683947306872ea4343f6255", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-2.2.0.tgz" + }, + "2.2.1": { + "shasum": "2316dec7ce0c2edc723acdedc977b7366835e61e", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-2.2.1.tgz" + }, + "2.2.2": { + "shasum": "fe30efaa31dd0485767a5f2b59609c7c6134602e", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-2.2.2.tgz" + }, + "2.2.3": { + "shasum": "9a8073d2035f100a6483efec8c2004a3615158e1", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-2.2.3.tgz" + }, + "2.2.4": { + "shasum": "5805920453b81ddbe11451d179cbe47371c37e4c", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-2.2.4.tgz" + }, + "2.3.0": { + "shasum": "4ca0ceb3a49db9f0c8f32d9a9b84519bb3bbbd67", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-2.3.0.tgz" + }, + "2.3.1": { + "shasum": "18e83b7ba154408abe10118cc33016e0a830d6d8", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-2.3.1.tgz" + }, + "2.3.2": { + "shasum": "1d0c8ab236bad3db07c752b74a7ea64e7afef62f", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-2.3.2.tgz" + }, + "2.3.3": { + "shasum": "d0618bcea5974871ac107bd46b241d08cfed8cc1", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-2.3.3.tgz" + }, + "2.3.4": { + "shasum": "d00c8c2dd836c7e482bddba6126fb6ba18d71aec", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-2.3.4.tgz" + }, + "2.3.5": { + "shasum": "7bc9828c1a47d637aed0450bb094f9241aa74b1e", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-2.3.5.tgz" + }, + "2.3.6": { + "shasum": "a120f9deaf77c4e63613feed85971519b3564c7e", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-2.3.6.tgz" + }, + "2.3.7": { + "shasum": "c39065d9ba558f5b70d2620f3b3eb1f27099d301", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-2.3.7.tgz" + }, + "2.3.8": { + "shasum": "eadcdb3f81f344c27cba4aa64a68e3b8ddc5b8e0", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-2.3.8.tgz" + }, + "2.3.9": { + "shasum": "93d1113381025780c2d057462bc20301c2b7c31f", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-2.3.9.tgz" + }, + "2.3.10": { + "shasum": "c2b5c6478af0886b9d3058c11a25fb726b2e5f42", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-2.3.10.tgz" + }, + "2.3.11": { + "shasum": "c623173461cac442ce4d36542211286e58bb83b1", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-2.3.11.tgz" + }, + "2.3.12": { + "shasum": "96d2d5c17cde782092d9ec24ed34bdba69d9de5a", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-2.3.12.tgz" + }, + "2.3.13": { + "shasum": "0fa979c393d46c7f3a99a7f51986d64bc785bfd7", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-2.3.13.tgz" + }, + "2.4.0": { + "shasum": "b8dcc98f2c42f95831b1775f7546a81880fb81ab", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-2.4.0.tgz" + }, + "2.4.1": { + "shasum": "1b897837a0b0cb054ee4d9833b83bc2a60458bbb", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-2.4.1.tgz" + }, + "2.4.2": { + "shasum": "2fba8dd1d063a6999edb05419d449cb2501f2cd5", + "tarball": "http://registry.npmjs.org/mongoose/-/mongoose-2.4.2.tgz" + } + }, + "keywords": [ + "mongodb", + "mongoose", + "orm", + "data", + "datastore", + "nosql" + ], + "url": "http://registry.npmjs.org/mongoose/" + }, + "mongoose-admin": { + "name": "mongoose-admin", + "description": "automatic admin tool and admin pages for mongoose", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "marccampbell", + "email": "marc.e.campbell@gmail.com" + } + ], + "time": { + "modified": "2011-08-17T21:07:58.624Z", + "created": "2011-08-13T17:32:56.231Z", + "0.0.1": "2011-08-13T17:32:58.579Z", + "0.0.2": "2011-08-17T03:23:18.800Z", + "0.0.3": "2011-08-17T21:07:58.624Z" + }, + "author": { + "name": "Marc Campbell", + "email": "marc.e.campbell@gmail.com", + "url": "http://twitter.com/mccode" + }, + "repository": { + "type": "git", + "url": "git://github.com/marccampbell/mongoose-admin.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mongoose-admin/0.0.1", + "0.0.2": "http://registry.npmjs.org/mongoose-admin/0.0.2", + "0.0.3": "http://registry.npmjs.org/mongoose-admin/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "2a0f793b849063fa9762b8e01cc75bd75a6ef10d", + "tarball": "http://registry.npmjs.org/mongoose-admin/-/mongoose-admin-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "d7b181eaf53ac7699966e5ba8f78f8ebd34b1bb7", + "tarball": "http://registry.npmjs.org/mongoose-admin/-/mongoose-admin-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "102e72265650acdad94ddb6c8c55c3db06d34f06", + "tarball": "http://registry.npmjs.org/mongoose-admin/-/mongoose-admin-0.0.3.tgz" + } + }, + "keywords": [ + "mongoose", + "mongo", + "admin" + ], + "url": "http://registry.npmjs.org/mongoose-admin/" + }, + "mongoose-auth": { + "name": "mongoose-auth", + "description": "User authentication plugin for mongoose node.js orm", + "dist-tags": { + "latest": "0.0.11" + }, + "maintainers": [ + { + "name": "bnoguchi", + "email": "brian.noguchi@gmail.com" + } + ], + "time": { + "modified": "2011-11-27T14:33:56.790Z", + "created": "2011-04-06T02:28:46.716Z", + "0.0.1": "2011-04-06T02:28:47.164Z", + "0.0.2": "2011-04-06T03:13:54.893Z", + "0.0.3": "2011-04-07T01:41:14.094Z", + "0.0.4": "2011-04-12T18:29:29.919Z", + "0.0.5": "2011-04-13T23:08:18.876Z", + "0.0.6": "2011-04-26T20:22:28.181Z", + "0.0.7": "2011-04-29T01:50:17.748Z", + "0.0.9": "2011-05-03T17:20:10.241Z", + "0.0.10": "2011-06-04T21:55:24.040Z", + "0.0.11": "2011-06-20T21:54:55.875Z" + }, + "author": { + "name": "Brian Noguchi", + "email": "brian.noguchi@gmail.com", + "url": "https://github.com/bnoguchi/" + }, + "repository": { + "type": "git", + "url": "git://github.com/bnoguchi/mongoose-auth.git" + }, + "users": { + "troygoode": true + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mongoose-auth/0.0.1", + "0.0.2": "http://registry.npmjs.org/mongoose-auth/0.0.2", + "0.0.3": "http://registry.npmjs.org/mongoose-auth/0.0.3", + "0.0.4": "http://registry.npmjs.org/mongoose-auth/0.0.4", + "0.0.5": "http://registry.npmjs.org/mongoose-auth/0.0.5", + "0.0.6": "http://registry.npmjs.org/mongoose-auth/0.0.6", + "0.0.7": "http://registry.npmjs.org/mongoose-auth/0.0.7", + "0.0.9": "http://registry.npmjs.org/mongoose-auth/0.0.9", + "0.0.10": "http://registry.npmjs.org/mongoose-auth/0.0.10", + "0.0.11": "http://registry.npmjs.org/mongoose-auth/0.0.11" + }, + "dist": { + "0.0.1": { + "shasum": "ab700e95509ce114d7791bdee34e6859c4923c24", + "tarball": "http://registry.npmjs.org/mongoose-auth/-/mongoose-auth-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "740453c7422587e9625715479ba0adfbb9770df0", + "tarball": "http://registry.npmjs.org/mongoose-auth/-/mongoose-auth-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "33d5e52c37cfe5fbc4c08bdc64a93e65509bc5e9", + "tarball": "http://registry.npmjs.org/mongoose-auth/-/mongoose-auth-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "e8ca5fe33051857de00a7caabcceea9c36dc06b1", + "tarball": "http://registry.npmjs.org/mongoose-auth/-/mongoose-auth-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "abee69a3e054b3aa0de9ca3b01c201a762915b7a", + "tarball": "http://registry.npmjs.org/mongoose-auth/-/mongoose-auth-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "9e5b39971cc5c580c11bb37b47db4496c23d5fb7", + "tarball": "http://registry.npmjs.org/mongoose-auth/-/mongoose-auth-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "512eba3d4065dada880bc49505516e043baf176e", + "tarball": "http://registry.npmjs.org/mongoose-auth/-/mongoose-auth-0.0.7.tgz" + }, + "0.0.9": { + "shasum": "9466f17ad17a09216fdba2e4d96e8c6d77dfaa34", + "tarball": "http://registry.npmjs.org/mongoose-auth/-/mongoose-auth-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "0f39bfff194f1684ca8816477470b057e67b06b2", + "tarball": "http://registry.npmjs.org/mongoose-auth/-/mongoose-auth-0.0.10.tgz" + }, + "0.0.11": { + "shasum": "f55c2888621c758fbb755218899150ccde04869e", + "tarball": "http://registry.npmjs.org/mongoose-auth/-/mongoose-auth-0.0.11.tgz" + } + }, + "url": "http://registry.npmjs.org/mongoose-auth/" + }, + "mongoose-autoincr": { + "name": "mongoose-autoincr", + "description": "autoincrement support for mongoose node.js orm", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "siong1987", + "email": "siong1987@gmail.com" + } + ], + "time": { + "modified": "2011-08-15T18:20:27.815Z", + "created": "2011-08-15T18:20:20.491Z", + "0.0.1": "2011-08-15T18:20:27.815Z" + }, + "author": { + "name": "Teng Siong Ong", + "email": "siong1987@gmail.com", + "url": "https://github.com/siong1987/" + }, + "repository": { + "type": "git", + "url": "git://github.com/FLOChip/mongoose-autoincr.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mongoose-autoincr/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "5318a9f42b6e9158cd02b99279ff7a457e2362c9", + "tarball": "http://registry.npmjs.org/mongoose-autoincr/-/mongoose-autoincr-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/mongoose-autoincr/" + }, + "mongoose-behaviors": { + "name": "mongoose-behaviors", + "description": "Pluggable behaviors for mongoose schemas.", + "dist-tags": { + "latest": "0.1.3" + }, + "readme": "mongoose-behaviors\n==================\n\nA set of pluggable behaviors for mongoose schemas.\n\n\nAvailable behaviors\n-------------------\n\n* Sluggable\n* Timestampable\n\n\nLicense\n-------\n\nCopyright (c) 2011 Félix Bellanger \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "maintainers": [ + { + "name": "keeguon", + "email": "felix.bellanger@gmail.com" + } + ], + "time": { + "modified": "2011-11-15T14:57:23.177Z", + "created": "2011-11-15T13:39:53.174Z", + "0.1.0": "2011-11-15T13:39:54.829Z", + "0.1.1": "2011-11-15T14:32:21.321Z", + "0.1.2": "2011-11-15T14:43:02.179Z", + "0.1.3": "2011-11-15T14:57:23.177Z" + }, + "author": { + "name": "Félix Bellanger", + "email": "felix.bellanger@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Keeguon/mongoose-behaviors.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/mongoose-behaviors/0.1.0", + "0.1.1": "http://registry.npmjs.org/mongoose-behaviors/0.1.1", + "0.1.2": "http://registry.npmjs.org/mongoose-behaviors/0.1.2", + "0.1.3": "http://registry.npmjs.org/mongoose-behaviors/0.1.3" + }, + "dist": { + "0.1.0": { + "shasum": "3deccb2b5748fe72e648c17404c42d1f5a239401", + "tarball": "http://registry.npmjs.org/mongoose-behaviors/-/mongoose-behaviors-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "726a31bcd0dcc5f795310272e64075a35b897abb", + "tarball": "http://registry.npmjs.org/mongoose-behaviors/-/mongoose-behaviors-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "08266987564d78018a101771af3d9fb57a16a8dd", + "tarball": "http://registry.npmjs.org/mongoose-behaviors/-/mongoose-behaviors-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "480de3d12bf31b7a3d211a54a30c1dae97b2feaf", + "tarball": "http://registry.npmjs.org/mongoose-behaviors/-/mongoose-behaviors-0.1.3.tgz" + } + }, + "keywords": [ + "mongodb", + "mongoose", + "orm", + "data", + "datastore", + "nosql", + "behaviors" + ], + "url": "http://registry.npmjs.org/mongoose-behaviors/" + }, + "mongoose-closures": { + "name": "mongoose-closures", + "description": "Plugin support for closures in Mongoose", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "goulash1971", + "email": "goulash1971@yahoo.com" + } + ], + "time": { + "modified": "2011-06-24T03:23:38.296Z", + "created": "2011-06-24T03:23:37.101Z", + "0.0.1": "2011-06-24T03:23:38.296Z" + }, + "author": { + "name": "Stuart Hudson", + "email": "goulash1971@yahoo.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/goulash1971/mongoose-closures.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mongoose-closures/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "e872a83fae5fed5a89d121fe32a9359f7a0d2955", + "tarball": "http://registry.npmjs.org/mongoose-closures/-/mongoose-closures-0.0.1.tgz" + } + }, + "keywords": [ + "mongodb", + "mongoose", + "mongo", + "plugins", + "closures" + ], + "url": "http://registry.npmjs.org/mongoose-closures/" + }, + "mongoose-crypt": { + "name": "mongoose-crypt", + "description": "Plugin support for basic encryption in Mongoose", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "goulash1971", + "email": "goulash1971@yahoo.com" + } + ], + "time": { + "modified": "2011-06-24T03:23:49.351Z", + "created": "2011-06-24T03:23:48.063Z", + "0.0.1": "2011-06-24T03:23:49.351Z" + }, + "author": { + "name": "Stuart Hudson", + "email": "goulash1971@yahoo.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/goulash1971/mongoose-closures.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mongoose-crypt/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "d42bd1533bc6a4dae747726a5ea069bc7d7e04de", + "tarball": "http://registry.npmjs.org/mongoose-crypt/-/mongoose-crypt-0.0.1.tgz" + } + }, + "keywords": [ + "mongodb", + "mongoose", + "mongo", + "plugins", + "encryption" + ], + "url": "http://registry.npmjs.org/mongoose-crypt/" + }, + "mongoose-dbref": { + "name": "mongoose-dbref", + "description": "Plugin support for DBRef in Mongoose", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "goulash1971", + "email": "goulash1971@yahoo.com" + } + ], + "time": { + "modified": "2011-07-18T05:21:24.317Z", + "created": "2011-06-08T04:47:02.818Z", + "0.0.1": "2011-06-08T04:47:04.096Z", + "0.0.2": "2011-06-16T03:06:45.993Z" + }, + "author": { + "name": "Stuart Hudson", + "email": "goulash1971@yahoo.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/goulash1971/mongoose-dbref.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mongoose-dbref/0.0.1", + "0.0.2": "http://registry.npmjs.org/mongoose-dbref/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "86c22610ead6d001af538d48624c3806db498f33", + "tarball": "http://registry.npmjs.org/mongoose-dbref/-/mongoose-dbref-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "70f360130eaef000e435334bfc7307e6b9c34ae1", + "tarball": "http://registry.npmjs.org/mongoose-dbref/-/mongoose-dbref-0.0.2.tgz" + } + }, + "keywords": [ + "mongodb", + "mongoose", + "mongo", + "types", + "dbref" + ], + "url": "http://registry.npmjs.org/mongoose-dbref/" + }, + "mongoose-flatmatcher": { + "name": "mongoose-flatmatcher", + "description": "Mongoose plugin mapping flat name/value JSON to Mongoose Schemas which may have nesting and embedded arrays", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "marksweiss", + "email": "marksimonweiss@gmail.com" + } + ], + "time": { + "modified": "2011-09-12T02:28:46.094Z", + "created": "2011-09-11T07:03:41.385Z", + "0.0.1": "2011-09-11T07:03:41.576Z", + "0.0.2": "2011-09-12T02:28:46.094Z" + }, + "author": { + "name": "Mark S. Weiss", + "email": "marksimonweiss@gmail.com", + "url": "https://github.com/marksweiss/" + }, + "repository": { + "type": "git", + "url": "git://github.com/marksweiss/mongoose-flatmatcher.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mongoose-flatmatcher/0.0.1", + "0.0.2": "http://registry.npmjs.org/mongoose-flatmatcher/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "0c3ee45bedbb94e2f9c2e80cc662d9e3cd518225", + "tarball": "http://registry.npmjs.org/mongoose-flatmatcher/-/mongoose-flatmatcher-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "12ce17d6d7ab633accb58819dec7de1876974ef6", + "tarball": "http://registry.npmjs.org/mongoose-flatmatcher/-/mongoose-flatmatcher-0.0.2.tgz" + } + }, + "keywords": [ + "mongodb", + "mongoose", + "orm", + "data", + "datastore", + "nosql", + "mongodb", + "mongoose plugin", + "data access", + "data API" + ], + "url": "http://registry.npmjs.org/mongoose-flatmatcher/" + }, + "mongoose-helpers": { + "name": "mongoose-helpers", + "description": "Mongoose MongoDB ORM helper functions", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "bcurry", + "email": "bill@curry.name" + } + ], + "time": { + "modified": "2011-06-15T17:31:30.560Z", + "created": "2011-06-15T17:31:30.457Z", + "0.1.0": "2011-06-15T17:31:30.560Z" + }, + "author": { + "name": "Bill Curry", + "email": "bill@curry.name" + }, + "repository": { + "type": "git", + "url": "git://github.com/bcurry/mongoose-helpers.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/mongoose-helpers/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "9d315724efcea6341dead9c8052a5db9aeae2a49", + "tarball": "http://registry.npmjs.org/mongoose-helpers/-/mongoose-helpers-0.1.0.tgz" + } + }, + "keywords": [ + "mongodb", + "mongoose", + "orm", + "data", + "datastore", + "nosql", + "helpers" + ], + "url": "http://registry.npmjs.org/mongoose-helpers/" + }, + "mongoose-joins": { + "name": "mongoose-joins", + "description": "Plugin support for basic joins in Mongoose", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "goulash1971", + "email": "goulash1971@yahoo.com" + } + ], + "time": { + "modified": "2011-06-24T03:23:26.774Z", + "created": "2011-06-24T03:23:25.588Z", + "0.0.1": "2011-06-24T03:23:26.774Z" + }, + "author": { + "name": "Stuart Hudson", + "email": "goulash1971@yahoo.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/goulash1971/mongoose-joins.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mongoose-joins/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "f0248773e6c7d2abae86177c997ffcc152d36c6a", + "tarball": "http://registry.npmjs.org/mongoose-joins/-/mongoose-joins-0.0.1.tgz" + } + }, + "keywords": [ + "mongodb", + "mongoose", + "mongo", + "plugins", + "joins" + ], + "url": "http://registry.npmjs.org/mongoose-joins/" + }, + "mongoose-misc": { + "name": "mongoose-misc", + "description": "Miscellaneous types & plugins for Mongoose", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "goulash1971", + "email": "goulash1971@yahoo.com" + } + ], + "time": { + "modified": "2011-06-27T06:29:36.714Z", + "created": "2011-06-27T06:29:35.483Z", + "0.0.1": "2011-06-27T06:29:36.714Z" + }, + "author": { + "name": "Stuart Hudson", + "email": "goulash1971@yahoo.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/goulash1971/mongoose-misc.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mongoose-misc/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "a9bce4bc820dfb782e4ee3fbd91aa2ce408ce1dc", + "tarball": "http://registry.npmjs.org/mongoose-misc/-/mongoose-misc-0.0.1.tgz" + } + }, + "keywords": [ + "mongodb", + "mongoose", + "mongo", + "plugins", + "types" + ], + "url": "http://registry.npmjs.org/mongoose-misc/" + }, + "mongoose-relationships": { + "name": "mongoose-relationships", + "description": "Model relationships plugin for Mongoose", + "dist-tags": { + "latest": "0.4.0" + }, + "maintainers": [ + { + "name": "jeromegn", + "email": "jeromegn@gmail.com" + } + ], + "time": { + "modified": "2011-09-01T21:43:45.238Z", + "created": "2011-08-31T00:02:57.228Z", + "0.1.0": "2011-08-31T00:02:58.921Z", + "0.2.0": "2011-08-31T05:36:58.069Z", + "0.3.0": "2011-08-31T21:25:19.822Z", + "0.4.0": "2011-09-01T21:43:45.238Z" + }, + "author": { + "name": "Jerome Gravel-Niquet", + "email": "jeromegn@gmail.com", + "url": "http://jgn.me/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jeromegn/mongoose-relationships.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/mongoose-relationships/0.1.0", + "0.2.0": "http://registry.npmjs.org/mongoose-relationships/0.2.0", + "0.3.0": "http://registry.npmjs.org/mongoose-relationships/0.3.0", + "0.4.0": "http://registry.npmjs.org/mongoose-relationships/0.4.0" + }, + "dist": { + "0.1.0": { + "shasum": "e1f2a64e7313b0fbe8e196a12940053aacd972a3", + "tarball": "http://registry.npmjs.org/mongoose-relationships/-/mongoose-relationships-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "7c2d6d94420034bbea87d96e65a4657298147df5", + "tarball": "http://registry.npmjs.org/mongoose-relationships/-/mongoose-relationships-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "2e051153f578798476a25bfc7b39eaf8c452a8c9", + "tarball": "http://registry.npmjs.org/mongoose-relationships/-/mongoose-relationships-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "7ea851ddc217f06f7b75d5fbec730b37a7d3bf2c", + "tarball": "http://registry.npmjs.org/mongoose-relationships/-/mongoose-relationships-0.4.0.tgz" + } + }, + "keywords": [ + "mongodb", + "mongoose", + "orm", + "relations", + "relationships", + "habtm" + ], + "url": "http://registry.npmjs.org/mongoose-relationships/" + }, + "mongoose-rest": { + "name": "mongoose-rest", + "description": "Introspection, Backbone models and RESTful routes for Mongoose", + "dist-tags": { + "latest": "0.2.7" + }, + "maintainers": [ + { + "name": "cohara87", + "email": "cohara87@gmail.com" + } + ], + "time": { + "modified": "2011-10-23T09:01:49.613Z", + "created": "2011-08-07T06:05:14.773Z", + "0.1.0": "2011-08-07T06:05:19.463Z", + "0.1.1": "2011-08-07T08:12:46.913Z", + "0.1.2": "2011-08-07T08:26:01.392Z", + "0.1.3": "2011-08-07T09:23:59.768Z", + "0.1.4": "2011-08-07T09:50:12.626Z", + "0.1.5": "2011-08-07T10:08:22.392Z", + "0.1.6": "2011-08-08T09:59:57.533Z", + "0.1.7": "2011-08-08T10:10:47.330Z", + "0.1.8": "2011-08-08T10:29:46.124Z", + "0.1.9": "2011-08-09T09:17:56.383Z", + "0.2.0": "2011-08-09T12:53:17.568Z", + "0.2.1": "2011-08-13T12:00:17.490Z", + "0.2.2": "2011-08-21T07:22:33.493Z", + "0.2.3": "2011-09-18T08:58:28.726Z", + "0.2.5": "2011-10-23T05:31:41.163Z", + "0.2.6": "2011-10-23T05:45:13.072Z", + "0.2.7": "2011-10-23T09:01:49.613Z" + }, + "author": { + "name": "Chris O'Hara", + "email": "cohara87@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/chriso/mongoose-rest.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/mongoose-rest/0.1.0", + "0.1.1": "http://registry.npmjs.org/mongoose-rest/0.1.1", + "0.1.2": "http://registry.npmjs.org/mongoose-rest/0.1.2", + "0.1.3": "http://registry.npmjs.org/mongoose-rest/0.1.3", + "0.1.4": "http://registry.npmjs.org/mongoose-rest/0.1.4", + "0.1.5": "http://registry.npmjs.org/mongoose-rest/0.1.5", + "0.1.6": "http://registry.npmjs.org/mongoose-rest/0.1.6", + "0.1.7": "http://registry.npmjs.org/mongoose-rest/0.1.7", + "0.1.8": "http://registry.npmjs.org/mongoose-rest/0.1.8", + "0.1.9": "http://registry.npmjs.org/mongoose-rest/0.1.9", + "0.2.0": "http://registry.npmjs.org/mongoose-rest/0.2.0", + "0.2.1": "http://registry.npmjs.org/mongoose-rest/0.2.1", + "0.2.2": "http://registry.npmjs.org/mongoose-rest/0.2.2", + "0.2.3": "http://registry.npmjs.org/mongoose-rest/0.2.3", + "0.2.5": "http://registry.npmjs.org/mongoose-rest/0.2.5", + "0.2.6": "http://registry.npmjs.org/mongoose-rest/0.2.6", + "0.2.7": "http://registry.npmjs.org/mongoose-rest/0.2.7" + }, + "dist": { + "0.1.0": { + "shasum": "3f2a3932a1c0c247eae3658c8c4f4f98b29ce2a6", + "tarball": "http://registry.npmjs.org/mongoose-rest/-/mongoose-rest-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "20b6741af1b95d10f7fd80ecd5c3209ef6289200", + "tarball": "http://registry.npmjs.org/mongoose-rest/-/mongoose-rest-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "796f96c453b5a7e53c38a6308cc19c6e5dfa51a7", + "tarball": "http://registry.npmjs.org/mongoose-rest/-/mongoose-rest-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "a040b3628e170efdb4e5dd1618b9abe70cb4d787", + "tarball": "http://registry.npmjs.org/mongoose-rest/-/mongoose-rest-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "9409e8ee95bde7503ff5e2dda5c9ad713e70f704", + "tarball": "http://registry.npmjs.org/mongoose-rest/-/mongoose-rest-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "6f075519e84b47616987d2b1249b5a2f67e09e5c", + "tarball": "http://registry.npmjs.org/mongoose-rest/-/mongoose-rest-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "3d6e1707f5af6bf9fcca0a836324f0d93f7d39df", + "tarball": "http://registry.npmjs.org/mongoose-rest/-/mongoose-rest-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "dae7f7cd4a594f8035d6e9722039ac8676039047", + "tarball": "http://registry.npmjs.org/mongoose-rest/-/mongoose-rest-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "89e120e05432a8e6e71c34a54b8ab4f5d930a0b5", + "tarball": "http://registry.npmjs.org/mongoose-rest/-/mongoose-rest-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "25f5b5ca95f815cc24fc9c49e89e84ceed3e4c9e", + "tarball": "http://registry.npmjs.org/mongoose-rest/-/mongoose-rest-0.1.9.tgz" + }, + "0.2.0": { + "shasum": "51516ff15002cffda6ade2fd25b499dd423006f1", + "tarball": "http://registry.npmjs.org/mongoose-rest/-/mongoose-rest-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "a1c4f2a4c3668c3f54603fc752a09c4128bb5194", + "tarball": "http://registry.npmjs.org/mongoose-rest/-/mongoose-rest-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "9ea883bac01548ac69255a0f849b958a75433f26", + "tarball": "http://registry.npmjs.org/mongoose-rest/-/mongoose-rest-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "3a820ae3e6f02ddd9dfca560ff4e912923492151", + "tarball": "http://registry.npmjs.org/mongoose-rest/-/mongoose-rest-0.2.3.tgz" + }, + "0.2.5": { + "shasum": "05ba25fd2b0d79ecbd06933042f2855d62f1647f", + "tarball": "http://registry.npmjs.org/mongoose-rest/-/mongoose-rest-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "be9302693c0a6058ce2603eea74541e2c4710669", + "tarball": "http://registry.npmjs.org/mongoose-rest/-/mongoose-rest-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "cb262b4e40965441a25be2d952946ac1ebf8e37b", + "tarball": "http://registry.npmjs.org/mongoose-rest/-/mongoose-rest-0.2.7.tgz" + } + }, + "url": "http://registry.npmjs.org/mongoose-rest/" + }, + "mongoose-spatial": { + "name": "mongoose-spatial", + "description": "Plugin support for spatial types in Mongoose", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "goulash1971", + "email": "goulash1971@yahoo.com" + } + ], + "time": { + "modified": "2011-06-24T03:24:02.850Z", + "created": "2011-06-24T03:24:01.630Z", + "0.0.1": "2011-06-24T03:24:02.850Z" + }, + "author": { + "name": "Stuart Hudson", + "email": "goulash1971@yahoo.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/goulash1971/mongoose-spatial.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mongoose-spatial/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "f99dd5d630d1e4ca8d2adb4bb0fcdf17418f64a4", + "tarball": "http://registry.npmjs.org/mongoose-spatial/-/mongoose-spatial-0.0.1.tgz" + } + }, + "keywords": [ + "mongodb", + "mongoose", + "mongo", + "plugins", + "spatial" + ], + "url": "http://registry.npmjs.org/mongoose-spatial/" + }, + "mongoose-temporal": { + "name": "mongoose-temporal", + "description": "Plugin support for temporal types in Mongoose", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "goulash1971", + "email": "goulash1971@yahoo.com" + } + ], + "time": { + "modified": "2011-06-24T03:24:18.199Z", + "created": "2011-06-24T03:24:16.966Z", + "0.0.1": "2011-06-24T03:24:18.200Z" + }, + "author": { + "name": "Stuart Hudson", + "email": "goulash1971@yahoo.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/goulash1971/mongoose-closures.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mongoose-temporal/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "1e3ed57ef29746cdfbb3744bfc34a5dcdcf39d97", + "tarball": "http://registry.npmjs.org/mongoose-temporal/-/mongoose-temporal-0.0.1.tgz" + } + }, + "keywords": [ + "mongodb", + "mongoose", + "mongo", + "plugins", + "temporal" + ], + "url": "http://registry.npmjs.org/mongoose-temporal/" + }, + "mongoose-types": { + "name": "mongoose-types", + "description": "More types for mongoose", + "dist-tags": { + "latest": "1.0.3" + }, + "maintainers": [ + { + "name": "bnoguchi", + "email": "brian.noguchi@gmail.com" + } + ], + "author": { + "name": "Brian Noguchi" + }, + "time": { + "modified": "2011-02-24T21:52:36.698Z", + "created": "2011-02-01T20:22:56.630Z", + "0.0.1": "2011-02-01T20:22:56.630Z", + "0.0.2": "2011-02-01T20:22:56.630Z", + "1.0.0": "2011-02-01T20:22:56.630Z", + "1.0.1": "2011-02-03T20:29:05.006Z", + "1.0.2": "2011-02-17T01:19:20.125Z", + "1.0.3": "2011-02-24T21:52:36.698Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mongoose-types/0.0.1", + "0.0.2": "http://registry.npmjs.org/mongoose-types/0.0.2", + "1.0.0": "http://registry.npmjs.org/mongoose-types/1.0.0", + "1.0.1": "http://registry.npmjs.org/mongoose-types/1.0.1", + "1.0.2": "http://registry.npmjs.org/mongoose-types/1.0.2", + "1.0.3": "http://registry.npmjs.org/mongoose-types/1.0.3" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/mongoose-types/-/mongoose-types-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/mongoose-types/-/mongoose-types-0.0.2.tgz" + }, + "1.0.0": { + "shasum": "61524d26e6ec8d134b526a79366c68a3e6949e28", + "tarball": "http://registry.npmjs.org/mongoose-types/-/mongoose-types-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "f06946cab85cea4e2fe4c63fd55c9e0e24aa15bf", + "tarball": "http://registry.npmjs.org/mongoose-types/-/mongoose-types-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "a66ba5b06673cf6ba4c604921917700f08d3097d", + "tarball": "http://registry.npmjs.org/mongoose-types/-/mongoose-types-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "bd57b00c60c8d8eaeeec2ae8ddb4c9a9c09daa62", + "tarball": "http://registry.npmjs.org/mongoose-types/-/mongoose-types-1.0.3.tgz" + } + }, + "keywords": [ + "mongoose", + "mongo", + "mongodb", + "types" + ], + "url": "http://registry.npmjs.org/mongoose-types/" + }, + "mongoose-units": { + "name": "mongoose-units", + "description": "Unit types & plugins for Mongoose", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "goulash1971", + "email": "goulash1971@yahoo.com" + } + ], + "time": { + "modified": "2011-06-25T05:40:19.607Z", + "created": "2011-06-25T05:40:17.446Z", + "0.0.1": "2011-06-25T05:40:19.607Z" + }, + "author": { + "name": "Stuart Hudson", + "email": "goulash1971@yahoo.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/goulash1971/mongoose-units.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mongoose-units/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "55059e3c2d037c81f64ff0406a756d19fdd0a4de", + "tarball": "http://registry.npmjs.org/mongoose-units/-/mongoose-units-0.0.1.tgz" + } + }, + "keywords": [ + "mongodb", + "mongoose", + "mongo", + "plugins", + "types", + "units" + ], + "url": "http://registry.npmjs.org/mongoose-units/" + }, + "mongoose-visual": { + "name": "mongoose-visual", + "description": "Generate a styled HTML document representing your loaded Mongoose.js Models", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "edwardhotchkiss", + "email": "hi@forsurerad.com" + } + ], + "time": { + "modified": "2011-09-25T04:42:34.126Z", + "created": "2011-09-25T04:42:33.767Z", + "0.0.1": "2011-09-25T04:42:34.126Z" + }, + "author": { + "name": "Edward Hotchkiss" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mongoose-visual/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "49c54e631b36d5522ce7f3acb47bd171b7ebe0c5", + "tarball": "http://registry.npmjs.org/mongoose-visual/-/mongoose-visual-0.0.1.tgz" + } + }, + "keywords": [ + "mongoose", + "model", + "schema", + "visual" + ], + "url": "http://registry.npmjs.org/mongoose-visual/" + }, + "mongoq": { + "name": "mongoq", + "description": "Use mongoDB like this: require('mongoq')('testdb').collection('users').find(function(err, cursor){});", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "hidden", + "email": "zzdhidden@gmail.com" + } + ], + "time": { + "modified": "2011-12-14T11:00:51.403Z", + "created": "2011-03-21T05:10:25.684Z", + "0.0.1": "2011-12-07T05:23:04.324Z", + "0.0.2": "2011-12-07T05:23:04.324Z", + "0.0.3": "2011-12-07T05:23:04.324Z", + "0.0.4": "2011-12-07T05:23:04.324Z", + "0.1.0": "2011-12-07T05:23:04.324Z", + "0.1.1": "2011-12-07T05:23:04.324Z", + "0.1.2": "2011-12-07T05:23:04.324Z", + "0.1.3": "2011-12-07T05:23:04.324Z", + "0.1.4": "2011-11-21T06:54:54.138Z", + "0.1.5": "2011-11-21T07:47:34.930Z", + "0.1.6": "2011-11-23T04:57:53.291Z", + "0.1.7": "2011-11-23T05:18:22.538Z", + "0.1.8": "2011-12-07T05:23:04.324Z", + "0.1.9": "2011-12-07T07:14:40.129Z", + "0.1.10": "2011-12-09T13:00:40.892Z", + "0.2.0": "2011-12-09T17:33:46.438Z", + "0.2.1": "2011-12-10T09:12:35.076Z", + "0.2.2": "2011-12-14T11:00:51.403Z" + }, + "author": { + "name": "Hidden", + "email": "zzdhidden@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/zzdhidden/mongoq.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mongoq/0.0.1", + "0.0.2": "http://registry.npmjs.org/mongoq/0.0.2", + "0.0.3": "http://registry.npmjs.org/mongoq/0.0.3", + "0.0.4": "http://registry.npmjs.org/mongoq/0.0.4", + "0.1.0": "http://registry.npmjs.org/mongoq/0.1.0", + "0.1.1": "http://registry.npmjs.org/mongoq/0.1.1", + "0.1.2": "http://registry.npmjs.org/mongoq/0.1.2", + "0.1.3": "http://registry.npmjs.org/mongoq/0.1.3", + "0.1.4": "http://registry.npmjs.org/mongoq/0.1.4", + "0.1.5": "http://registry.npmjs.org/mongoq/0.1.5", + "0.1.6": "http://registry.npmjs.org/mongoq/0.1.6", + "0.1.7": "http://registry.npmjs.org/mongoq/0.1.7", + "0.1.8": "http://registry.npmjs.org/mongoq/0.1.8", + "0.1.9": "http://registry.npmjs.org/mongoq/0.1.9", + "0.1.10": "http://registry.npmjs.org/mongoq/0.1.10", + "0.2.0": "http://registry.npmjs.org/mongoq/0.2.0", + "0.2.1": "http://registry.npmjs.org/mongoq/0.2.1", + "0.2.2": "http://registry.npmjs.org/mongoq/0.2.2" + }, + "dist": { + "0.0.1": { + "shasum": "7fc64d29796a6c069af3b137d50a1b21fce55238", + "tarball": "http://registry.npmjs.org/mongoq/-/mongoq-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "decf3554f4292c88f237aa7c82f0f5fb6aa28915", + "tarball": "http://registry.npmjs.org/mongoq/-/mongoq-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "286cdea45713954a924ed8f7bca8d1eac7a9e3da", + "tarball": "http://registry.npmjs.org/mongoq/-/mongoq-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "3cec0b4b0006727427e503ca6c027f2793852490", + "tarball": "http://registry.npmjs.org/mongoq/-/mongoq-0.0.4.tgz" + }, + "0.1.0": { + "shasum": "4532485204937f8fda002c8ce7edb7bf480633a2", + "tarball": "http://registry.npmjs.org/mongoq/-/mongoq-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "f1bd85dc180d8313b087eaa6340f68ae4c390008", + "tarball": "http://registry.npmjs.org/mongoq/-/mongoq-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "ea566105d54bbe3137891b828aee2a6876fa4b92", + "tarball": "http://registry.npmjs.org/mongoq/-/mongoq-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "cb930ebed8a1f1f4c624c260dfe8bc96df982893", + "tarball": "http://registry.npmjs.org/mongoq/-/mongoq-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "1e5ebe4a8f05c245858e84d6f0034dc7fb73dc21", + "tarball": "http://registry.npmjs.org/mongoq/-/mongoq-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "3a71b1827717f4fbfe11118fd08a80d597f516e9", + "tarball": "http://registry.npmjs.org/mongoq/-/mongoq-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "f6f9cdab2a8079f981f3c372ba103d8d35b08296", + "tarball": "http://registry.npmjs.org/mongoq/-/mongoq-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "1145e232371a1b4c002e8dc0c28b16e5cf0472d6", + "tarball": "http://registry.npmjs.org/mongoq/-/mongoq-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "9aacb035c51e529a25fabc4857d48054956c1738", + "tarball": "http://registry.npmjs.org/mongoq/-/mongoq-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "3a79a7aaf21ca1041e95b0a7c7340c42d68e0ebd", + "tarball": "http://registry.npmjs.org/mongoq/-/mongoq-0.1.9.tgz" + }, + "0.1.10": { + "shasum": "62ff1d711b2008e4a1ebe2d2cbae5e83defff39d", + "tarball": "http://registry.npmjs.org/mongoq/-/mongoq-0.1.10.tgz" + }, + "0.2.0": { + "shasum": "7b2f05a6bcccaa65a0e1edb418d55a1ba04a89b6", + "tarball": "http://registry.npmjs.org/mongoq/-/mongoq-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "53d0a97f6420b3152fb2e03765b1558dfc033933", + "tarball": "http://registry.npmjs.org/mongoq/-/mongoq-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "8addb3203f37a1d9216468a42d49371d50a43bc9", + "tarball": "http://registry.npmjs.org/mongoq/-/mongoq-0.2.2.tgz" + } + }, + "keywords": [ + "mongodb", + "mongoq", + "data", + "datastore", + "nosql" + ], + "url": "http://registry.npmjs.org/mongoq/" + }, + "mongoskin": { + "name": "mongoskin", + "description": "The future layer above node-mongodb-native", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "guileen", + "email": "guileen@gmail.com" + } + ], + "time": { + "modified": "2011-12-02T08:24:26.926Z", + "created": "2011-04-12T08:48:30.667Z", + "0.1.0": "2011-04-12T08:48:33.237Z", + "0.1.1": "2011-04-18T17:00:24.335Z", + "0.1.2": "2011-05-08T03:44:29.648Z", + "0.1.3": "2011-05-24T08:48:17.872Z", + "0.2.0": "2011-11-12T10:48:46.606Z", + "0.2.1": "2011-11-17T19:37:05.816Z", + "0.2.2": "2011-12-02T08:24:26.926Z" + }, + "author": { + "name": "Jason Green", + "email": "guileen@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/guileen/node-mongoskin.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/mongoskin/0.1.0", + "0.1.1": "http://registry.npmjs.org/mongoskin/0.1.1", + "0.1.2": "http://registry.npmjs.org/mongoskin/0.1.2", + "0.1.3": "http://registry.npmjs.org/mongoskin/0.1.3", + "0.2.0": "http://registry.npmjs.org/mongoskin/0.2.0", + "0.2.1": "http://registry.npmjs.org/mongoskin/0.2.1", + "0.2.2": "http://registry.npmjs.org/mongoskin/0.2.2" + }, + "dist": { + "0.1.0": { + "shasum": "be561b5aff93b63bb4120055237d40be94325603", + "tarball": "http://registry.npmjs.org/mongoskin/-/mongoskin-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "fb7d5689505f72cc3d87a9030a0fc4b18af07cad", + "tarball": "http://registry.npmjs.org/mongoskin/-/mongoskin-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "9b01385265e26f7abd2ae804b9e200e5fc4e9bc9", + "tarball": "http://registry.npmjs.org/mongoskin/-/mongoskin-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "5c7845060ded4ce6fe6c3c0721052c723b45e6f9", + "tarball": "http://registry.npmjs.org/mongoskin/-/mongoskin-0.1.3.tgz" + }, + "0.2.0": { + "shasum": "a450397bcf5f76a63e73861911a4ed60cef5100d", + "tarball": "http://registry.npmjs.org/mongoskin/-/mongoskin-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "363db20fe5d2f5675692fe893db7fc7c7ac22439", + "tarball": "http://registry.npmjs.org/mongoskin/-/mongoskin-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "6997109fda6e877a91d56c80178bd86fdfff242e", + "tarball": "http://registry.npmjs.org/mongoskin/-/mongoskin-0.2.2.tgz" + } + }, + "keywords": [ + "mongodb" + ], + "url": "http://registry.npmjs.org/mongoskin/" + }, + "mongotest": { + "name": "mongotest", + "description": "Integration Testing Helper for MongoDB", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "arunoda", + "email": "arunoda.susiripala@gmail.com" + } + ], + "time": { + "modified": "2011-12-03T04:34:55.110Z", + "created": "2011-12-03T04:24:51.706Z", + "0.0.1": "2011-12-03T04:24:56.272Z", + "0.1.1": "2011-12-03T04:34:55.110Z" + }, + "author": { + "name": "Arunoda Susiripala", + "email": "arunoda.susiripala@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mongotest/0.0.1", + "0.1.1": "http://registry.npmjs.org/mongotest/0.1.1" + }, + "dist": { + "0.0.1": { + "shasum": "1793747b10bc94c0c28465b4341f894c0b26d686", + "tarball": "http://registry.npmjs.org/mongotest/-/mongotest-0.0.1.tgz" + }, + "0.1.1": { + "shasum": "7497873f484be9427e5b1b04b4809a16e8d33ae4", + "tarball": "http://registry.npmjs.org/mongotest/-/mongotest-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/mongotest/" + }, + "mongous": { + "name": "mongous", + "description": "Simple MongoDB driver", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "amark", + "email": "aquiva@gmail.com" + } + ], + "time": { + "modified": "2011-11-24T09:24:52.419Z", + "created": "2011-02-17T11:57:32.512Z", + "0.1.0": "2011-02-17T11:57:32.877Z", + "0.2.0": "2011-11-08T11:12:00.884Z", + "0.2.1": "2011-11-24T09:24:52.419Z" + }, + "author": { + "name": "Mark Nadal" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/mongous/0.1.0", + "0.2.0": "http://registry.npmjs.org/mongous/0.2.0", + "0.2.1": "http://registry.npmjs.org/mongous/0.2.1" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/mongous/-/mongous-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "441237cc2620b20542a1775b2efc02a66d8ede22", + "tarball": "http://registry.npmjs.org/mongous/-/mongous-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "3c9c9210d2774d55cf468cd642d8af7657091175", + "tarball": "http://registry.npmjs.org/mongous/-/mongous-0.2.1.tgz" + } + }, + "url": "http://registry.npmjs.org/mongous/" + }, + "mongrel2": { + "name": "mongrel2", + "description": "Mongrel2 handler for node.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "darkhelmetlive", + "email": "darkhelmet@darkhelmetlive.com" + } + ], + "author": { + "name": "Daniel Huckstep", + "email": "darkhelmet@darkhelmetlive.com", + "url": "http://blog.darkhax.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/darkhelmet/node-mongrel2.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mongrel2/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "655915350ae5ef362c3272b2f712b68dcfca227f", + "tarball": "http://registry.npmjs.org/mongrel2/-/mongrel2-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/mongrel2/" + }, + "monguava": { + "name": "monguava", + "description": "Monguava MongoDB ORM ", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "architectd", + "email": "craig.j.condon@gmail.com" + } + ], + "time": { + "modified": "2011-09-13T17:44:01.030Z", + "created": "2011-08-13T04:28:38.548Z", + "0.0.1": "2011-08-13T04:28:38.771Z", + "0.0.2": "2011-08-13T04:55:56.106Z", + "0.0.3": "2011-09-12T05:21:25.081Z", + "0.0.4": "2011-09-13T17:44:01.030Z" + }, + "author": { + "name": "Guillermo Rauch", + "email": "guillermo@learnboost.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/LearnBoost/mongoose.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/monguava/0.0.1", + "0.0.2": "http://registry.npmjs.org/monguava/0.0.2", + "0.0.3": "http://registry.npmjs.org/monguava/0.0.3", + "0.0.4": "http://registry.npmjs.org/monguava/0.0.4" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/monguava/-/monguava-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/monguava/-/monguava-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "8bcf37b6e46761d3898b4a71f56003018a6cdf36", + "tarball": "http://registry.npmjs.org/monguava/-/monguava-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "b80bb7e6c0c21ea2ff5200bae6a841ae14c932e0", + "tarball": "http://registry.npmjs.org/monguava/-/monguava-0.0.4.tgz" + } + }, + "keywords": [ + "mongodb", + "mongoose", + "orm", + "data", + "datastore", + "nosql" + ], + "url": "http://registry.npmjs.org/monguava/" + }, + "mongueue": { + "name": "mongueue", + "description": "Simple queue over mongodb", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "eladb", + "email": "elad.benisrael@gmail.com" + } + ], + "time": { + "modified": "2011-08-15T15:42:07.213Z", + "created": "2011-07-27T00:03:03.401Z", + "0.0.1": "2011-07-27T00:03:04.680Z", + "0.0.2": "2011-07-27T00:05:46.384Z" + }, + "author": { + "name": "Elad Ben-Israel", + "email": "elad.benisrael@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/eladb/mongueue.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mongueue/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "c4e5d74705a91d17b00fc26c8dad50db52f8b333", + "tarball": "http://registry.npmjs.org/mongueue/-/mongueue-0.0.1.tgz" + } + }, + "keywords": [ + "mongo", + "mongodb", + "queue" + ], + "url": "http://registry.npmjs.org/mongueue/" + }, + "moniker": { + "name": "moniker", + "description": "Generate random names.", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "weaver", + "email": "ben@orangesoda.net" + } + ], + "time": { + "modified": "2011-04-15T21:19:32.480Z", + "created": "2011-04-14T17:17:12.764Z", + "0.1.0": "2011-04-14T17:17:12.974Z", + "0.1.2": "2011-04-15T21:19:32.480Z" + }, + "author": { + "name": "Ben Weaver", + "email": "ben@orangesoda.net" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/moniker/0.1.0", + "0.1.2": "http://registry.npmjs.org/moniker/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "c957494e8ff19cc7c88534c436a914d29a78beb8", + "tarball": "http://registry.npmjs.org/moniker/-/moniker-0.1.0.tgz" + }, + "0.1.2": { + "shasum": "872dfba575dcea8fa04a5135b13d5f24beccc97e", + "tarball": "http://registry.npmjs.org/moniker/-/moniker-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/moniker/" + }, + "monitor": { + "name": "monitor", + "description": "Runtime monitoring for node.js applications", + "dist-tags": { + "latest": "0.2.11" + }, + "maintainers": [ + { + "name": "lorenwest", + "email": "npm@lorenwest.com" + } + ], + "author": { + "name": "Loren West", + "email": "open_source@lorenwest.com" + }, + "time": { + "modified": "2011-02-22T08:06:58.918Z", + "created": "2010-12-20T16:42:50.004Z", + "0.2.4": "2010-12-20T16:42:50.004Z", + "0.2.5": "2010-12-20T16:42:50.004Z", + "0.2.6": "2010-12-22T01:32:35.744Z", + "0.2.7": "2010-12-22T05:34:50.941Z", + "0.2.8": "2011-01-06T01:46:22.045Z", + "0.2.9": "2011-02-10T07:22:11.471Z", + "0.2.10": "2011-02-22T06:30:27.842Z", + "0.2.11": "2011-02-22T08:06:58.918Z" + }, + "versions": { + "0.2.4": "http://registry.npmjs.org/monitor/0.2.4", + "0.2.5": "http://registry.npmjs.org/monitor/0.2.5", + "0.2.6": "http://registry.npmjs.org/monitor/0.2.6", + "0.2.7": "http://registry.npmjs.org/monitor/0.2.7", + "0.2.8": "http://registry.npmjs.org/monitor/0.2.8", + "0.2.9": "http://registry.npmjs.org/monitor/0.2.9", + "0.2.10": "http://registry.npmjs.org/monitor/0.2.10", + "0.2.11": "http://registry.npmjs.org/monitor/0.2.11" + }, + "dist": { + "0.2.4": { + "shasum": "ae6011e12df5252e4ce92b1c7d7dfabf97951729", + "tarball": "http://registry.npmjs.org/monitor/-/monitor-0.2.4.tgz" + }, + "0.2.5": { + "tarball": "http://registry.npmjs.org/monitor/-/monitor-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "2942084df5a42031b1ad9c14ef158ac3f39247a7", + "tarball": "http://registry.npmjs.org/monitor/-/monitor-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "36c77b331ee732f4af13d411132a6c12b57d46d0", + "tarball": "http://registry.npmjs.org/monitor/-/monitor-0.2.7.tgz" + }, + "0.2.8": { + "shasum": "70205ab143d731c985379e8dcd1fc379677c2ce3", + "tarball": "http://registry.npmjs.org/monitor/-/monitor-0.2.8.tgz" + }, + "0.2.9": { + "shasum": "0499eefb978faf94fa1879afad7a6902df3e9dbb", + "tarball": "http://registry.npmjs.org/monitor/-/monitor-0.2.9.tgz" + }, + "0.2.10": { + "shasum": "dc88c038d382af01220ca7e7b1dc33462f1155f0", + "tarball": "http://registry.npmjs.org/monitor/-/monitor-0.2.10.tgz" + }, + "0.2.11": { + "shasum": "002841adb5e548e25088928766120666fe4d0e3b", + "tarball": "http://registry.npmjs.org/monitor/-/monitor-0.2.11.tgz" + } + }, + "url": "http://registry.npmjs.org/monitor/" + }, + "monome": { + "name": "monome", + "description": "A node.js library for monome applications", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "robb", + "email": "robb@robb.is" + } + ], + "time": { + "modified": "2011-08-05T21:20:47.432Z", + "created": "2011-08-05T21:20:46.760Z", + "0.0.1": "2011-08-05T21:20:47.432Z" + }, + "author": { + "name": "Robert Böhnke", + "email": "robb@robb.is", + "url": "http://robb.is" + }, + "repository": { + "type": "git", + "url": "git://github.com/robb/monome.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/monome/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "b5b21daed49222bdec2a1debf6895bc26a83d36b", + "tarball": "http://registry.npmjs.org/monome/-/monome-0.0.1.tgz" + } + }, + "keywords": [ + "monome" + ], + "url": "http://registry.npmjs.org/monome/" + }, + "monomi": { + "name": "monomi", + "description": "Middleware for Connect (node.js) for handling mobile (and other types of) browsers.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "jamesgpearce", + "email": "npm@tripleodeon.com" + } + ], + "author": { + "name": "James Pearce", + "email": "james@tripleodeon.com" + }, + "repository": [ + { + "type": "git", + "url": "https://github.com/jamesgpearce/monomi.git" + } + ], + "versions": { + "0.0.1": "http://registry.npmjs.org/monomi/0.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/monomi/-/monomi-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/monomi/" + }, + "moo-server": { + "name": "moo-server", + "description": "a server version of mootools", + "dist-tags": { + "latest": "1.3.0" + }, + "readme": null, + "maintainers": [ + { + "name": "jonlb", + "email": "jon@solagratiadesigns.com" + } + ], + "time": { + "modified": "2011-11-12T17:29:33.067Z", + "created": "2011-11-12T17:29:31.591Z", + "1.3.0": "2011-11-12T17:29:33.067Z" + }, + "author": { + "name": "Jonathan Bomgardner" + }, + "repository": { + "url": "" + }, + "versions": { + "1.3.0": "http://registry.npmjs.org/moo-server/1.3.0" + }, + "dist": { + "1.3.0": { + "shasum": "708326ab35a7713275112aef3fb7dfbef78b1753", + "tarball": "http://registry.npmjs.org/moo-server/-/moo-server-1.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/moo-server/" + }, + "moodswing": { + "name": "moodswing", + "description": "Node.js testing framework for that time of the software development cycle.", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "gsamokovarov", + "email": "gsamokovarov@gmail.com" + } + ], + "time": { + "modified": "2011-11-07T21:02:27.343Z", + "created": "2011-10-18T10:58:44.271Z", + "0.1.0": "2011-10-18T10:58:55.121Z", + "0.1.1": "2011-10-20T00:05:43.627Z", + "0.1.2": "2011-11-07T21:02:27.343Z" + }, + "author": { + "name": "Genadi Samokovarov", + "email": "gsamokovarov@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/gsamokovarov/moodswing.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/moodswing/0.1.0", + "0.1.1": "http://registry.npmjs.org/moodswing/0.1.1", + "0.1.2": "http://registry.npmjs.org/moodswing/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "5149e20ff5b69feff98286710d9ff9d5877dd474", + "tarball": "http://registry.npmjs.org/moodswing/-/moodswing-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "1f166006f887400e61e4a4865ac54a0863916a2e", + "tarball": "http://registry.npmjs.org/moodswing/-/moodswing-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "e7db2410604ac04fc10485083714cede07f2a775", + "tarball": "http://registry.npmjs.org/moodswing/-/moodswing-0.1.2.tgz" + } + }, + "keywords": [ + "test", + "expect", + "coffeescript" + ], + "url": "http://registry.npmjs.org/moodswing/" + }, + "moof": { + "name": "moof", + "description": "Yet another (mostly)-client-side JS library.", + "dist-tags": { + "latest": "0.0.10" + }, + "maintainers": [ + { + "name": "andrewschaaf", + "email": "andrew@andrewschaaf.com" + } + ], + "time": { + "modified": "2011-11-07T19:41:22.045Z", + "created": "2011-07-14T20:23:49.264Z", + "0.0.1": "2011-07-14T20:23:51.329Z", + "0.0.2": "2011-07-22T14:59:18.202Z", + "0.0.3": "2011-07-26T22:51:32.038Z", + "0.0.4": "2011-08-07T20:10:23.729Z", + "0.0.5": "2011-09-20T13:07:21.238Z", + "0.0.6": "2011-09-20T19:39:26.218Z", + "0.0.7": "2011-10-12T12:14:06.157Z", + "0.0.8": "2011-10-19T13:38:32.213Z", + "0.0.9": "2011-11-02T21:08:58.881Z", + "0.0.10": "2011-11-07T19:41:22.045Z" + }, + "author": { + "name": "Andrew Schaaf", + "email": "andrew@andrewschaaf.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/andrewschaaf/moof.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/moof/0.0.1", + "0.0.2": "http://registry.npmjs.org/moof/0.0.2", + "0.0.3": "http://registry.npmjs.org/moof/0.0.3", + "0.0.4": "http://registry.npmjs.org/moof/0.0.4", + "0.0.5": "http://registry.npmjs.org/moof/0.0.5", + "0.0.6": "http://registry.npmjs.org/moof/0.0.6", + "0.0.7": "http://registry.npmjs.org/moof/0.0.7", + "0.0.8": "http://registry.npmjs.org/moof/0.0.8", + "0.0.9": "http://registry.npmjs.org/moof/0.0.9", + "0.0.10": "http://registry.npmjs.org/moof/0.0.10" + }, + "dist": { + "0.0.1": { + "shasum": "77ad0708e23572798067763c1fe6d639f44d42b2", + "tarball": "http://registry.npmjs.org/moof/-/moof-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "6431fc0128b59083f99e0c6d7de70c341a7ab803", + "tarball": "http://registry.npmjs.org/moof/-/moof-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "2ef6cefb13d3829474e611e12f508e3fe29dfe74", + "tarball": "http://registry.npmjs.org/moof/-/moof-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "a2a9bd2d61052d8e714baa1d6563316d543adcd1", + "tarball": "http://registry.npmjs.org/moof/-/moof-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "e7ba75666fd6292508521fdfde6a1e15f276f60c", + "tarball": "http://registry.npmjs.org/moof/-/moof-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "dbc956dbd8ad6f9ff7aedf0df380eb82d03774c1", + "tarball": "http://registry.npmjs.org/moof/-/moof-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "652c6317807493924f19c9346aa85eabd1f241f1", + "tarball": "http://registry.npmjs.org/moof/-/moof-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "8b1769ae49f8320c897a20777feaf50dc72a65f9", + "tarball": "http://registry.npmjs.org/moof/-/moof-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "73b7c253ec5937adcc5b1aeb096038640da33227", + "tarball": "http://registry.npmjs.org/moof/-/moof-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "73709ad520c079d7a415ba4a4b343db24b50b680", + "tarball": "http://registry.npmjs.org/moof/-/moof-0.0.10.tgz" + } + }, + "url": "http://registry.npmjs.org/moof/" + }, + "moonshado": { + "name": "moonshado", + "description": "Client for the Moonshado SMS gateway.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "pingles", + "email": "paul@oobaloo.co.uk" + } + ], + "time": { + "modified": "2011-09-05T18:46:39.918Z", + "created": "2011-09-05T18:46:39.582Z", + "0.0.1": "2011-09-05T18:46:39.918Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/moonshado/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "6f8a4ee3214dfac124e804a49e302a96053b1e25", + "tarball": "http://registry.npmjs.org/moonshado/-/moonshado-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/moonshado/" + }, + "moose": { + "name": "moose", + "description": "A node orm", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "damartin", + "email": "doug.martin@pollenware.com" + } + ], + "time": { + "modified": "2011-11-18T07:48:34.417Z", + "created": "2011-05-20T13:33:17.487Z", + "0.0.1": "2011-05-20T13:33:18.243Z", + "0.0.2": "2011-06-11T08:31:15.993Z", + "0.0.3": "2011-11-18T07:48:34.417Z" + }, + "author": { + "name": "Pollenware", + "url": "http://pollenware.github.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:Pollen/moose.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/moose/0.0.1", + "0.0.2": "http://registry.npmjs.org/moose/0.0.2", + "0.0.3": "http://registry.npmjs.org/moose/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "9529ea651f7734bf5828bc6e8b5e9e3a7c36e5fe", + "tarball": "http://registry.npmjs.org/moose/-/moose-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "088663ee552170cb6e497d7d425d13ed67759d60", + "tarball": "http://registry.npmjs.org/moose/-/moose-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "77c35647baebca4368f08cce85a529661783ed8c", + "tarball": "http://registry.npmjs.org/moose/-/moose-0.0.3.tgz" + } + }, + "keywords": [ + "ORM", + "orm", + "mysql", + "MySQL", + "MySql", + "Object Relational Model", + "Associations", + "sql", + "database" + ], + "url": "http://registry.npmjs.org/moose/" + }, + "mootools": { + "name": "mootools", + "description": "MooTools 1.3.2 Server library", + "dist-tags": { + "latest": "1.3.2" + }, + "maintainers": [ + { + "name": "vsviridov", + "email": "vasili@sviridov.ca" + } + ], + "time": { + "modified": "2011-04-29T00:47:51.717Z", + "created": "2011-03-28T22:47:38.989Z", + "1.3.1": "2011-03-28T22:47:39.428Z", + "1.3.1-1": "2011-04-01T00:52:23.387Z", + "1.3.1-2": "2011-04-03T23:42:30.151Z", + "1.3.2": "2011-04-29T00:47:51.717Z" + }, + "author": { + "name": "Vasili Sviridov", + "email": "vasili@sviridov.ca", + "url": "http://github.com/vsviridov/" + }, + "repository": { + "type": "git", + "url": "git://github.com/vsviridov/motools-node.git" + }, + "versions": { + "1.3.1": "http://registry.npmjs.org/mootools/1.3.1", + "1.3.1-1": "http://registry.npmjs.org/mootools/1.3.1-1", + "1.3.1-2": "http://registry.npmjs.org/mootools/1.3.1-2", + "1.3.2": "http://registry.npmjs.org/mootools/1.3.2" + }, + "dist": { + "1.3.1": { + "shasum": "0ac7bbf4a5ab847cb08dc5b5500312e018e9b0be", + "tarball": "http://registry.npmjs.org/mootools/-/mootools-1.3.1.tgz" + }, + "1.3.1-1": { + "shasum": "5c392c38f17db6b1cff401ecf6209d2a07c49acd", + "tarball": "http://registry.npmjs.org/mootools/-/mootools-1.3.1-1.tgz" + }, + "1.3.1-2": { + "shasum": "0e737d235d6a6850ce04f24907de1a3a4729791c", + "tarball": "http://registry.npmjs.org/mootools/-/mootools-1.3.1-2.tgz" + }, + "1.3.2": { + "shasum": "dfac61d9ec595f77ab15a060fc87bcb71d4a5419", + "tarball": "http://registry.npmjs.org/mootools/-/mootools-1.3.2.tgz" + } + }, + "keywords": [ + "mootools", + "oop", + "class" + ], + "url": "http://registry.npmjs.org/mootools/" + }, + "mootools-array": { + "name": "mootools-array", + "description": "A collection of Array methods and functions", + "dist-tags": { + "latest": "1.3.2" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-05-12T15:33:50.242Z", + "created": "2011-05-12T15:33:49.775Z", + "1.3.2": "2011-05-12T15:33:50.243Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/ryanflorence/mootools-array.git" + }, + "versions": { + "1.3.2": "http://registry.npmjs.org/mootools-array/1.3.2" + }, + "dist": { + "1.3.2": { + "shasum": "bd71a5556fceb1cc25e5a9d0a2ec9df6f7dfc05c", + "tarball": "http://registry.npmjs.org/mootools-array/-/mootools-array-1.3.2.tgz" + } + }, + "url": "http://registry.npmjs.org/mootools-array/" + }, + "mootools-browser": { + "name": "mootools-browser", + "description": "Some browser properties are attached to the Browser Object for browser and platform detection.", + "dist-tags": { + "latest": "1.3.2" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-05-12T04:59:31.050Z", + "created": "2011-05-12T04:59:30.495Z", + "1.3.2": "2011-05-12T04:59:31.050Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/ryanflorence/mootools-browser.git" + }, + "versions": { + "1.3.2": "http://registry.npmjs.org/mootools-browser/1.3.2" + }, + "dist": { + "1.3.2": { + "shasum": "a1255538cccdc01e158a8ba1d8868bd5f7f73f60", + "tarball": "http://registry.npmjs.org/mootools-browser/-/mootools-browser-1.3.2.tgz" + } + }, + "url": "http://registry.npmjs.org/mootools-browser/" + }, + "mootools-class": { + "name": "mootools-class", + "description": "The base Class of the MooTools framework.", + "dist-tags": { + "latest": "1.3.2" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-05-12T04:59:19.812Z", + "created": "2011-05-12T04:59:19.349Z", + "1.3.2": "2011-05-12T04:59:19.812Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/ryanflorence/mootools-class.git" + }, + "versions": { + "1.3.2": "http://registry.npmjs.org/mootools-class/1.3.2" + }, + "dist": { + "1.3.2": { + "shasum": "5322b942731460b3becfbd67a4d94862a43abf79", + "tarball": "http://registry.npmjs.org/mootools-class/-/mootools-class-1.3.2.tgz" + } + }, + "url": "http://registry.npmjs.org/mootools-class/" + }, + "mootools-class-extras": { + "name": "mootools-class-extras", + "description": "Class Mixins: Events, Options and Chain", + "dist-tags": { + "latest": "1.3.2" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-05-12T04:59:24.698Z", + "created": "2011-05-12T04:59:24.213Z", + "1.3.2": "2011-05-12T04:59:24.698Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/ryanflorence/mootools-class-extras.git" + }, + "versions": { + "1.3.2": "http://registry.npmjs.org/mootools-class-extras/1.3.2" + }, + "dist": { + "1.3.2": { + "shasum": "f15bf347a1fb7f792df93e52c798fc00862ec360", + "tarball": "http://registry.npmjs.org/mootools-class-extras/-/mootools-class-extras-1.3.2.tgz" + } + }, + "url": "http://registry.npmjs.org/mootools-class-extras/" + }, + "mootools-client": { + "name": "mootools-client", + "description": "MooTools build for the browser.", + "dist-tags": { + "latest": "1.3.2" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-05-12T13:32:59.621Z", + "created": "2011-05-12T13:32:59.136Z", + "1.3.2": "2011-05-12T13:32:59.621Z" + }, + "versions": { + "1.3.2": "http://registry.npmjs.org/mootools-client/1.3.2" + }, + "dist": { + "1.3.2": { + "shasum": "a7157618ebca3184ee3b7b7256bb260527513ad7", + "tarball": "http://registry.npmjs.org/mootools-client/-/mootools-client-1.3.2.tgz" + } + }, + "url": "http://registry.npmjs.org/mootools-client/" + }, + "mootools-cookie": { + "name": "mootools-cookie", + "description": "Reads and writes a browser cookie.", + "dist-tags": { + "latest": "1.3.2" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-05-12T05:01:27.584Z", + "created": "2011-05-12T05:01:27.093Z", + "1.3.2": "2011-05-12T05:01:27.584Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/ryanflorence/mootools-cookie.git" + }, + "versions": { + "1.3.2": "http://registry.npmjs.org/mootools-cookie/1.3.2" + }, + "dist": { + "1.3.2": { + "shasum": "dcd61ddcf85e675caafdff19a4414f1ea453fab7", + "tarball": "http://registry.npmjs.org/mootools-cookie/-/mootools-cookie-1.3.2.tgz" + } + }, + "url": "http://registry.npmjs.org/mootools-cookie/" + }, + "mootools-core": { + "name": "mootools-core", + "description": "The heart of MooTools.", + "dist-tags": { + "latest": "1.3.2" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-05-12T15:31:16.236Z", + "created": "2011-05-12T15:31:15.760Z", + "1.3.2": "2011-05-12T15:31:16.236Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/ryanflorence/mootools-core.git" + }, + "versions": { + "1.3.2": "http://registry.npmjs.org/mootools-core/1.3.2" + }, + "dist": { + "1.3.2": { + "shasum": "61592dfa4f19415eb418d7f99bc38922bd557509", + "tarball": "http://registry.npmjs.org/mootools-core/-/mootools-core-1.3.2.tgz" + } + }, + "url": "http://registry.npmjs.org/mootools-core/" + }, + "mootools-domready": { + "name": "mootools-domready", + "description": "Contains the window Event 'domready', which executes when the DOM is loaded.", + "dist-tags": { + "latest": "1.3.2" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-05-12T05:00:31.619Z", + "created": "2011-05-12T05:00:31.134Z", + "1.3.2": "2011-05-12T05:00:31.619Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/ryanflorence/mootools-domready.git" + }, + "versions": { + "1.3.2": "http://registry.npmjs.org/mootools-domready/1.3.2" + }, + "dist": { + "1.3.2": { + "shasum": "fc252c9b51bc6275f35f884d0c76dbb414f6ee44", + "tarball": "http://registry.npmjs.org/mootools-domready/-/mootools-domready-1.3.2.tgz" + } + }, + "url": "http://registry.npmjs.org/mootools-domready/" + }, + "mootools-element": { + "name": "mootools-element", + "description": "Custom Type to allow all of its methods to be used with any extended DOM Element.", + "dist-tags": { + "latest": "1.3.2" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-05-12T05:00:02.065Z", + "created": "2011-05-12T05:00:01.606Z", + "1.3.2": "2011-05-12T05:00:02.065Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/ryanflorence/mootools-element.git" + }, + "versions": { + "1.3.2": "http://registry.npmjs.org/mootools-element/1.3.2" + }, + "dist": { + "1.3.2": { + "shasum": "eba4c95e65e1dee3ee2a5829d0f41d0125d9f901", + "tarball": "http://registry.npmjs.org/mootools-element/-/mootools-element-1.3.2.tgz" + } + }, + "url": "http://registry.npmjs.org/mootools-element/" + }, + "mootools-element-dimensions": { + "name": "mootools-element-dimensions", + "description": "Element methods used to measure the dimensions of DOM elements", + "dist-tags": { + "latest": "1.3.2" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-05-12T05:00:18.360Z", + "created": "2011-05-12T05:00:17.872Z", + "1.3.2": "2011-05-12T05:00:18.360Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/ryanflorence/mootools-element-dimensions.git" + }, + "versions": { + "1.3.2": "http://registry.npmjs.org/mootools-element-dimensions/1.3.2" + }, + "dist": { + "1.3.2": { + "shasum": "2a99d7abd98d8fc0854277343f704e2c755799cf", + "tarball": "http://registry.npmjs.org/mootools-element-dimensions/-/mootools-element-dimensions-1.3.2.tgz" + } + }, + "url": "http://registry.npmjs.org/mootools-element-dimensions/" + }, + "mootools-element-event": { + "name": "mootools-element-event", + "description": "Cross-browser DOM element events", + "dist-tags": { + "latest": "1.3.2" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-05-12T05:00:25.613Z", + "created": "2011-05-12T05:00:25.108Z", + "1.3.2": "2011-05-12T05:00:25.613Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/ryanflorence/mootools-element-event.git" + }, + "versions": { + "1.3.2": "http://registry.npmjs.org/mootools-element-event/1.3.2" + }, + "dist": { + "1.3.2": { + "shasum": "59755a64c940eb3bc1905dc3059c739595c38843", + "tarball": "http://registry.npmjs.org/mootools-element-event/-/mootools-element-event-1.3.2.tgz" + } + }, + "url": "http://registry.npmjs.org/mootools-element-event/" + }, + "mootools-element-style": { + "name": "mootools-element-style", + "description": "Cross-browser DOM element style setting", + "dist-tags": { + "latest": "1.3.2" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-05-12T05:00:09.975Z", + "created": "2011-05-12T05:00:09.464Z", + "1.3.2": "2011-05-12T05:00:09.975Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/ryanflorence/mootools-element-style.git" + }, + "versions": { + "1.3.2": "http://registry.npmjs.org/mootools-element-style/1.3.2" + }, + "dist": { + "1.3.2": { + "shasum": "579a996d7154afb25277c77a94d9794fb57c9cfe", + "tarball": "http://registry.npmjs.org/mootools-element-style/-/mootools-element-style-1.3.2.tgz" + } + }, + "url": "http://registry.npmjs.org/mootools-element-style/" + }, + "mootools-event": { + "name": "mootools-event", + "description": "MooTools Event Methods.", + "dist-tags": { + "latest": "1.3.2" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-05-12T04:59:36.323Z", + "created": "2011-05-12T04:59:35.799Z", + "1.3.2": "2011-05-12T04:59:36.323Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/ryanflorence/mootools-event.git" + }, + "versions": { + "1.3.2": "http://registry.npmjs.org/mootools-event/1.3.2" + }, + "dist": { + "1.3.2": { + "shasum": "ac1a7ac91768929f192736d28e430a8a3407879b", + "tarball": "http://registry.npmjs.org/mootools-event/-/mootools-event-1.3.2.tgz" + } + }, + "url": "http://registry.npmjs.org/mootools-event/" + }, + "mootools-function": { + "name": "mootools-function", + "description": "Function methods.", + "dist-tags": { + "latest": "1.3.2" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-05-12T04:58:55.904Z", + "created": "2011-05-12T04:58:55.424Z", + "1.3.2": "2011-05-12T04:58:55.904Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/ryanflorence/mootools-function.git" + }, + "versions": { + "1.3.2": "http://registry.npmjs.org/mootools-function/1.3.2" + }, + "dist": { + "1.3.2": { + "shasum": "46ca3fd31c380f1303c9e32ee2dd55db65506004", + "tarball": "http://registry.npmjs.org/mootools-function/-/mootools-function-1.3.2.tgz" + } + }, + "url": "http://registry.npmjs.org/mootools-function/" + }, + "mootools-fx": { + "name": "mootools-fx", + "description": "The foundation for all Fx Classes.", + "dist-tags": { + "latest": "1.3.2" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-05-12T05:00:37.180Z", + "created": "2011-05-12T05:00:36.628Z", + "1.3.2": "2011-05-12T05:00:37.180Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/ryanflorence/mootools-fx.git" + }, + "versions": { + "1.3.2": "http://registry.npmjs.org/mootools-fx/1.3.2" + }, + "dist": { + "1.3.2": { + "shasum": "f9e6550b1e34705c43dc37623618a78236f57165", + "tarball": "http://registry.npmjs.org/mootools-fx/-/mootools-fx-1.3.2.tgz" + } + }, + "url": "http://registry.npmjs.org/mootools-fx/" + }, + "mootools-fx-css": { + "name": "mootools-fx-css", + "description": "CSS parsing class for effects.", + "dist-tags": { + "latest": "1.3.2" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-05-12T05:00:41.008Z", + "created": "2011-05-12T05:00:40.536Z", + "1.3.2": "2011-05-12T05:00:41.008Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/ryanflorence/mootools-fx-css.git" + }, + "versions": { + "1.3.2": "http://registry.npmjs.org/mootools-fx-css/1.3.2" + }, + "dist": { + "1.3.2": { + "shasum": "62a6c5e37eb1013f7b4f4340b488918091303168", + "tarball": "http://registry.npmjs.org/mootools-fx-css/-/mootools-fx-css-1.3.2.tgz" + } + }, + "url": "http://registry.npmjs.org/mootools-fx-css/" + }, + "mootools-fx-morph": { + "name": "mootools-fx-morph", + "description": "Allows for the animation of multiple CSS properties at once, even by a CSS selector. Inherits methods, properties, options and events from Fx.", + "dist-tags": { + "latest": "1.3.2" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-05-12T05:00:44.988Z", + "created": "2011-05-12T05:00:44.351Z", + "1.3.2": "2011-05-12T05:00:44.988Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/ryanflorence/mootools-fx-morph.git" + }, + "versions": { + "1.3.2": "http://registry.npmjs.org/mootools-fx-morph/1.3.2" + }, + "dist": { + "1.3.2": { + "shasum": "0cc24094832a7f410b57932276056a329858202e", + "tarball": "http://registry.npmjs.org/mootools-fx-morph/-/mootools-fx-morph-1.3.2.tgz" + } + }, + "url": "http://registry.npmjs.org/mootools-fx-morph/" + }, + "mootools-fx-transitions": { + "name": "mootools-fx-transitions", + "description": "Robert Penner's Easing Equations for Fx", + "dist-tags": { + "latest": "1.3.2" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-05-12T05:00:54.400Z", + "created": "2011-05-12T05:00:53.918Z", + "1.3.2": "2011-05-12T05:00:54.400Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/ryanflorence/mootools-fx-transitions.git" + }, + "versions": { + "1.3.2": "http://registry.npmjs.org/mootools-fx-transitions/1.3.2" + }, + "dist": { + "1.3.2": { + "shasum": "e633d15b9934bd5e37bff4964b1f915dc763fe7b", + "tarball": "http://registry.npmjs.org/mootools-fx-transitions/-/mootools-fx-transitions-1.3.2.tgz" + } + }, + "url": "http://registry.npmjs.org/mootools-fx-transitions/" + }, + "mootools-fx-tween": { + "name": "mootools-fx-tween", + "description": "Single property element animation", + "dist-tags": { + "latest": "1.3.2" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-05-12T05:00:49.389Z", + "created": "2011-05-12T05:00:48.903Z", + "1.3.2": "2011-05-12T05:00:49.389Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/ryanflorence/mootools-fx-tween.git" + }, + "versions": { + "1.3.2": "http://registry.npmjs.org/mootools-fx-tween/1.3.2" + }, + "dist": { + "1.3.2": { + "shasum": "c799351bca8e6ccd7c690ffd27f59ee85b6e02ae", + "tarball": "http://registry.npmjs.org/mootools-fx-tween/-/mootools-fx-tween-1.3.2.tgz" + } + }, + "url": "http://registry.npmjs.org/mootools-fx-tween/" + }, + "mootools-json": { + "name": "mootools-json", + "description": "JSON decoder and encoder.", + "dist-tags": { + "latest": "1.3.2" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-05-12T04:59:41.039Z", + "created": "2011-05-12T04:59:40.514Z", + "1.3.2": "2011-05-12T04:59:41.039Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/ryanflorence/mootools-json.git" + }, + "versions": { + "1.3.2": "http://registry.npmjs.org/mootools-json/1.3.2" + }, + "dist": { + "1.3.2": { + "shasum": "a7444ae903e72f85c9e606571ef28d588cd09ef9", + "tarball": "http://registry.npmjs.org/mootools-json/-/mootools-json-1.3.2.tgz" + } + }, + "url": "http://registry.npmjs.org/mootools-json/" + }, + "mootools-more": { + "name": "mootools-more", + "description": "MooTools More 1.3.1.1 (Builder Hash: 82304b6c3ba35c9988250e5fc67479a2)", + "dist-tags": { + "latest": "1.3.1-1" + }, + "maintainers": [ + { + "name": "vsviridov", + "email": "vasili@sviridov.ca" + } + ], + "time": { + "modified": "2011-04-01T00:31:42.989Z", + "created": "2011-04-01T00:31:42.564Z", + "1.3.1-1": "2011-04-01T00:31:42.989Z" + }, + "author": { + "name": "Vasili Sviridov", + "email": "vasili@sviridov.ca", + "url": "http://github.com/vsviridov/" + }, + "repository": { + "type": "git", + "url": "git://github.com/vsviridov/motools-more-node.git" + }, + "versions": { + "1.3.1-1": "http://registry.npmjs.org/mootools-more/1.3.1-1" + }, + "dist": { + "1.3.1-1": { + "shasum": "bc1dd29da51d9585caa039f7a1e92838e07729d1", + "tarball": "http://registry.npmjs.org/mootools-more/-/mootools-more-1.3.1-1.tgz" + } + }, + "keywords": [ + "mootools", + "mootools-more" + ], + "url": "http://registry.npmjs.org/mootools-more/" + }, + "mootools-number": { + "name": "mootools-number", + "description": "A collection of the Number methods and functions", + "dist-tags": { + "latest": "1.3.2" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-05-12T04:59:02.521Z", + "created": "2011-05-12T04:59:02.043Z", + "1.3.2": "2011-05-12T04:59:02.521Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/ryanflorence/mootools-number.git" + }, + "versions": { + "1.3.2": "http://registry.npmjs.org/mootools-number/1.3.2" + }, + "dist": { + "1.3.2": { + "shasum": "6fbb4b64d1f2697938bf977876d4fee2476256ce", + "tarball": "http://registry.npmjs.org/mootools-number/-/mootools-number-1.3.2.tgz" + } + }, + "url": "http://registry.npmjs.org/mootools-number/" + }, + "mootools-object": { + "name": "mootools-object", + "description": "A collection of Object functions.", + "dist-tags": { + "latest": "1.3.2" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-05-12T04:59:07.403Z", + "created": "2011-05-12T04:59:06.909Z", + "1.3.2": "2011-05-12T04:59:07.403Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/ryanflorence/mootools-object.git" + }, + "versions": { + "1.3.2": "http://registry.npmjs.org/mootools-object/1.3.2" + }, + "dist": { + "1.3.2": { + "shasum": "6dcd47775ab9904c4e33b2fd876c2da81370386b", + "tarball": "http://registry.npmjs.org/mootools-object/-/mootools-object-1.3.2.tgz" + } + }, + "url": "http://registry.npmjs.org/mootools-object/" + }, + "mootools-request": { + "name": "mootools-request", + "description": "An XMLHttpRequest Wrapper.", + "dist-tags": { + "latest": "1.3.2" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-05-12T05:01:02.828Z", + "created": "2011-05-12T05:01:02.337Z", + "1.3.2": "2011-05-12T05:01:02.828Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/ryanflorence/mootools-request.git" + }, + "versions": { + "1.3.2": "http://registry.npmjs.org/mootools-request/1.3.2" + }, + "dist": { + "1.3.2": { + "shasum": "c77b2effbf32c6b89b8fd0022bd700066dd5f707", + "tarball": "http://registry.npmjs.org/mootools-request/-/mootools-request-1.3.2.tgz" + } + }, + "url": "http://registry.npmjs.org/mootools-request/" + }, + "mootools-request-html": { + "name": "mootools-request-html", + "description": "Request Specifically made for receiving HTML.", + "dist-tags": { + "latest": "1.3.2" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-05-12T05:01:07.928Z", + "created": "2011-05-12T05:01:07.420Z", + "1.3.2": "2011-05-12T05:01:07.928Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/ryanflorence/mootools-request-html.git" + }, + "versions": { + "1.3.2": "http://registry.npmjs.org/mootools-request-html/1.3.2" + }, + "dist": { + "1.3.2": { + "shasum": "2c8c6050ce1e644cf2cb5e93824a1dec5a00a0bc", + "tarball": "http://registry.npmjs.org/mootools-request-html/-/mootools-request-html-1.3.2.tgz" + } + }, + "url": "http://registry.npmjs.org/mootools-request-html/" + }, + "mootools-request-json": { + "name": "mootools-request-json", + "description": "Wrapped Request with automated sending and receiving of JavaScript Objects in JSON Format.", + "dist-tags": { + "latest": "1.3.2" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-05-12T05:01:14.970Z", + "created": "2011-05-12T05:01:12.747Z", + "1.3.2": "2011-05-12T05:01:14.970Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/ryanflorence/mootools-request-json.git" + }, + "versions": { + "1.3.2": "http://registry.npmjs.org/mootools-request-json/1.3.2" + }, + "dist": { + "1.3.2": { + "shasum": "4781996086dbfe8f28dcdfeb340e7faf83d9dc73", + "tarball": "http://registry.npmjs.org/mootools-request-json/-/mootools-request-json-1.3.2.tgz" + } + }, + "url": "http://registry.npmjs.org/mootools-request-json/" + }, + "mootools-server": { + "name": "mootools-server", + "description": "MooTools build for the server side JavaScript.", + "dist-tags": { + "latest": "1.3.2" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-05-12T13:36:38.785Z", + "created": "2011-05-12T13:36:38.297Z", + "1.3.2": "2011-05-12T13:36:38.785Z" + }, + "versions": { + "1.3.2": "http://registry.npmjs.org/mootools-server/1.3.2" + }, + "dist": { + "1.3.2": { + "shasum": "3285c8b981eccab74279e3860c4498d3b3075865", + "tarball": "http://registry.npmjs.org/mootools-server/-/mootools-server-1.3.2.tgz" + } + }, + "url": "http://registry.npmjs.org/mootools-server/" + }, + "mootools-slick-finder": { + "name": "mootools-slick-finder", + "description": "The new, superfast css selector engine.", + "dist-tags": { + "latest": "1.3.2" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-05-12T04:59:54.069Z", + "created": "2011-05-12T04:59:53.577Z", + "1.3.2": "2011-05-12T04:59:54.069Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/ryanflorence/mootools-slick-finder.git" + }, + "versions": { + "1.3.2": "http://registry.npmjs.org/mootools-slick-finder/1.3.2" + }, + "dist": { + "1.3.2": { + "shasum": "b40973e693a3d6b9fb4083f8db9d7f854490ce51", + "tarball": "http://registry.npmjs.org/mootools-slick-finder/-/mootools-slick-finder-1.3.2.tgz" + } + }, + "url": "http://registry.npmjs.org/mootools-slick-finder/" + }, + "mootools-slick-parser": { + "name": "mootools-slick-parser", + "description": "CSS selector string parser", + "dist-tags": { + "latest": "1.3.2" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-05-12T04:59:49.349Z", + "created": "2011-05-12T04:59:48.834Z", + "1.3.2": "2011-05-12T04:59:49.349Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/ryanflorence/mootools-slick-parser.git" + }, + "versions": { + "1.3.2": "http://registry.npmjs.org/mootools-slick-parser/1.3.2" + }, + "dist": { + "1.3.2": { + "shasum": "bfff5ebaffb6ee197f24ec848063f38e9e1e9375", + "tarball": "http://registry.npmjs.org/mootools-slick-parser/-/mootools-slick-parser-1.3.2.tgz" + } + }, + "url": "http://registry.npmjs.org/mootools-slick-parser/" + }, + "mootools-string": { + "name": "mootools-string", + "description": "A collection of the String Object methods and functions.", + "dist-tags": { + "latest": "1.3.2" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-05-12T04:59:15.092Z", + "created": "2011-05-12T04:59:14.598Z", + "1.3.2": "2011-05-12T04:59:15.092Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/ryanflorence/mootools-string.git" + }, + "versions": { + "1.3.2": "http://registry.npmjs.org/mootools-string/1.3.2" + }, + "dist": { + "1.3.2": { + "shasum": "b445852e8a6bf5378196c6e607090e0caf2f6df3", + "tarball": "http://registry.npmjs.org/mootools-string/-/mootools-string-1.3.2.tgz" + } + }, + "url": "http://registry.npmjs.org/mootools-string/" + }, + "mootools-swiff": { + "name": "mootools-swiff", + "description": "Creates and returns a Flash object using supplied parameters.", + "dist-tags": { + "latest": "1.3.2" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-05-12T05:01:20.225Z", + "created": "2011-05-12T05:01:19.781Z", + "1.3.2": "2011-05-12T05:01:20.225Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/ryanflorence/mootools-swiff.git" + }, + "versions": { + "1.3.2": "http://registry.npmjs.org/mootools-swiff/1.3.2" + }, + "dist": { + "1.3.2": { + "shasum": "b61ec3e0345eddacf862ebbbfe5b7e6650b56bd7", + "tarball": "http://registry.npmjs.org/mootools-swiff/-/mootools-swiff-1.3.2.tgz" + } + }, + "url": "http://registry.npmjs.org/mootools-swiff/" + }, + "mootools.js": { + "name": "mootools.js", + "description": "MooTools latest server library as npm package for node.js", + "dist-tags": { + "latest": "1.4.0" + }, + "maintainers": [ + { + "name": "stanislavfeldman", + "email": "stanislavfeldman@gmail.com" + } + ], + "time": { + "modified": "2011-09-18T16:28:00.939Z", + "created": "2011-09-18T16:27:57.804Z", + "1.4.0": "2011-09-18T16:28:00.939Z" + }, + "author": { + "name": "Stanislav Feldman", + "email": "stanislavfeldman@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/stanislavfeldman/mootools.js.git" + }, + "versions": { + "1.4.0": "http://registry.npmjs.org/mootools.js/1.4.0" + }, + "dist": { + "1.4.0": { + "shasum": "647e6a9d1fdc29306066333f3d38b8cdd51f4a0e", + "tarball": "http://registry.npmjs.org/mootools.js/-/mootools.js-1.4.0.tgz" + } + }, + "keywords": [ + "mootools", + "oop" + ], + "url": "http://registry.npmjs.org/mootools.js/" + }, + "more": { + "name": "more", + "description": "LESS is More!", + "dist-tags": { + "latest": "0.1.6" + }, + "readme": null, + "maintainers": [ + { + "name": "trevorsheridan", + "email": "trevorjordansheridan@gmail.com" + } + ], + "time": { + "modified": "2011-12-05T22:59:57.082Z", + "created": "2011-12-05T22:59:56.276Z", + "0.1.6": "2011-12-05T22:59:57.082Z" + }, + "author": { + "name": "Trevor Sheridan", + "email": "trevorjordansheridan@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/trevorsheridan/more.git" + }, + "versions": { + "0.1.6": "http://registry.npmjs.org/more/0.1.6" + }, + "dist": { + "0.1.6": { + "shasum": "ad91ee791ab6d719962716703d139ffb927e7af8", + "tarball": "http://registry.npmjs.org/more/-/more-0.1.6.tgz" + } + }, + "keywords": [ + "less", + "css" + ], + "url": "http://registry.npmjs.org/more/" + }, + "morestreams": { + "name": "morestreams", + "description": "Collection of useful stream objects.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "mikeal", + "email": "mikeal.rogers@gmail.com" + } + ], + "time": { + "modified": "2011-10-27T23:06:53.243Z", + "created": "2011-03-05T03:18:02.426Z", + "0.0.0": "2011-03-05T03:18:02.809Z", + "0.0.1": "2011-03-05T19:15:31.488Z", + "0.0.2": "2011-08-20T23:33:31.281Z", + "0.1.0": "2011-10-27T23:06:53.243Z" + }, + "author": { + "name": "Mikeal Rogers", + "email": "mikeal.rogers@gmail.com", + "url": "http://www.mikealrogers.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:mikeal/morestreams.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/morestreams/0.0.0", + "0.0.1": "http://registry.npmjs.org/morestreams/0.0.1", + "0.0.2": "http://registry.npmjs.org/morestreams/0.0.2", + "0.1.0": "http://registry.npmjs.org/morestreams/0.1.0" + }, + "dist": { + "0.0.0": { + "shasum": "8c35bb584f7de9cb2bfe7c40a2f8427fee872f0e", + "tarball": "http://registry.npmjs.org/morestreams/-/morestreams-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "e467d36b136c78646e14f3af3fdf713b91bab03c", + "tarball": "http://registry.npmjs.org/morestreams/-/morestreams-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f283c5fc134d376ea32673f2fa609a29c948c1b2", + "tarball": "http://registry.npmjs.org/morestreams/-/morestreams-0.0.2.tgz" + }, + "0.1.0": { + "shasum": "2be287f4dac9f283d0f789fa38ab7fe212c558b1", + "tarball": "http://registry.npmjs.org/morestreams/-/morestreams-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/morestreams/" + }, + "morjs": { + "name": "morjs", + "description": "Library for encoding/decoding Morse code messages", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "neocotic", + "email": "mercer.alasdair@gmail.com" + } + ], + "time": { + "modified": "2011-11-11T00:15:39.620Z", + "created": "2011-11-10T22:24:36.378Z", + "1.0.1": "2011-11-11T00:15:39.620Z" + }, + "author": { + "name": "Alasdair Mercer", + "email": "mercer.alasdair@gmail.com", + "url": "http://forchoon.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/neocotic/mor.js.git" + }, + "versions": { + "1.0.1": "http://registry.npmjs.org/morjs/1.0.1" + }, + "dist": { + "1.0.1": { + "shasum": "936296fc7a6412446dee19e89abe8b29a462220d", + "tarball": "http://registry.npmjs.org/morjs/-/morjs-1.0.1.tgz" + } + }, + "keywords": [ + "decode", + "encode", + "fun", + "util" + ], + "url": "http://registry.npmjs.org/morjs/" + }, + "morpheus": { + "name": "morpheus", + "description": "A Brilliant Animator", + "dist-tags": { + "latest": "0.6.1" + }, + "maintainers": [ + { + "name": "ded", + "email": "polvero@gmail.com" + } + ], + "time": { + "modified": "2011-10-17T18:51:48.042Z", + "created": "2011-05-20T06:04:44.487Z", + "0.0.1": "2011-05-20T06:04:45.047Z", + "0.1.0": "2011-05-20T06:07:16.748Z", + "0.1.1": "2011-05-20T17:39:19.135Z", + "0.1.2": "2011-05-20T20:11:21.472Z", + "0.1.3": "2011-05-21T04:30:34.313Z", + "0.1.4": "2011-05-22T02:00:37.912Z", + "0.1.5": "2011-05-22T02:57:43.614Z", + "0.1.6": "2011-05-22T21:41:43.628Z", + "0.1.7": "2011-05-22T21:53:30.751Z", + "0.1.8": "2011-05-23T20:47:40.840Z", + "0.1.9": "2011-05-24T19:28:32.514Z", + "0.2.0": "2011-05-26T21:48:56.197Z", + "0.3.0": "2011-05-30T06:33:57.541Z", + "0.4.0": "2011-05-31T01:01:23.854Z", + "0.4.1": "2011-05-31T03:31:13.969Z", + "0.4.2": "2011-06-23T05:46:54.632Z", + "0.4.3": "2011-06-27T00:35:07.574Z", + "0.4.4": "2011-08-31T01:20:44.329Z", + "0.5.0": "2011-09-05T18:02:46.564Z", + "0.5.1": "2011-09-06T03:02:26.838Z", + "0.5.2": "2011-09-08T23:08:51.902Z", + "0.6.0": "2011-09-13T03:31:31.123Z", + "0.6.1": "2011-10-17T18:51:48.042Z" + }, + "author": { + "name": "Dustin Diaz", + "email": "polvero@gmail.com", + "url": "http://dustindiaz.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/ded/morpheus.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/morpheus/0.0.1", + "0.1.0": "http://registry.npmjs.org/morpheus/0.1.0", + "0.1.1": "http://registry.npmjs.org/morpheus/0.1.1", + "0.1.2": "http://registry.npmjs.org/morpheus/0.1.2", + "0.1.3": "http://registry.npmjs.org/morpheus/0.1.3", + "0.1.4": "http://registry.npmjs.org/morpheus/0.1.4", + "0.1.5": "http://registry.npmjs.org/morpheus/0.1.5", + "0.1.6": "http://registry.npmjs.org/morpheus/0.1.6", + "0.1.7": "http://registry.npmjs.org/morpheus/0.1.7", + "0.1.8": "http://registry.npmjs.org/morpheus/0.1.8", + "0.1.9": "http://registry.npmjs.org/morpheus/0.1.9", + "0.2.0": "http://registry.npmjs.org/morpheus/0.2.0", + "0.3.0": "http://registry.npmjs.org/morpheus/0.3.0", + "0.4.0": "http://registry.npmjs.org/morpheus/0.4.0", + "0.4.1": "http://registry.npmjs.org/morpheus/0.4.1", + "0.4.2": "http://registry.npmjs.org/morpheus/0.4.2", + "0.4.3": "http://registry.npmjs.org/morpheus/0.4.3", + "0.4.4": "http://registry.npmjs.org/morpheus/0.4.4", + "0.5.0": "http://registry.npmjs.org/morpheus/0.5.0", + "0.5.1": "http://registry.npmjs.org/morpheus/0.5.1", + "0.5.2": "http://registry.npmjs.org/morpheus/0.5.2", + "0.6.0": "http://registry.npmjs.org/morpheus/0.6.0", + "0.6.1": "http://registry.npmjs.org/morpheus/0.6.1" + }, + "dist": { + "0.0.1": { + "shasum": "2db174077acc1fe709800278603d081b1a33305a", + "tarball": "http://registry.npmjs.org/morpheus/-/morpheus-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "97a60e08b5b7d95abb5ff92a7cb2c990e5117629", + "tarball": "http://registry.npmjs.org/morpheus/-/morpheus-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "ba11190a667f091bc71c5ee9686a50c3b46eaff0", + "tarball": "http://registry.npmjs.org/morpheus/-/morpheus-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "d4aed6ecbce86d3292408d7675d91fae384b7f1c", + "tarball": "http://registry.npmjs.org/morpheus/-/morpheus-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "0e82f87e0e63f553f400eb3ed64f36d2cc0dfb01", + "tarball": "http://registry.npmjs.org/morpheus/-/morpheus-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "69e518924fe5e5b5b29170149ccc5911966a1743", + "tarball": "http://registry.npmjs.org/morpheus/-/morpheus-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "7b995213c82889da81efb2452616b1b805c1a1d2", + "tarball": "http://registry.npmjs.org/morpheus/-/morpheus-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "ea8a11e7de58365ad5580f133baad8cfccfa8ed0", + "tarball": "http://registry.npmjs.org/morpheus/-/morpheus-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "5ba11776e2a22e9fd22092600e2eba346747b23f", + "tarball": "http://registry.npmjs.org/morpheus/-/morpheus-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "a8fdfd093c1dd553146359523331130f5b890ec5", + "tarball": "http://registry.npmjs.org/morpheus/-/morpheus-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "a95e143d641d5f8069fed2b3dcf48e631344daa0", + "tarball": "http://registry.npmjs.org/morpheus/-/morpheus-0.1.9.tgz" + }, + "0.2.0": { + "shasum": "5c0e7d1100126b405724bc187a02c54dbc53ae5b", + "tarball": "http://registry.npmjs.org/morpheus/-/morpheus-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "52e6e010863d7a799a38803c1e24fc8fc50e49bc", + "tarball": "http://registry.npmjs.org/morpheus/-/morpheus-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "e4cca138a23f8256dc76db5a3afab41582348776", + "tarball": "http://registry.npmjs.org/morpheus/-/morpheus-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "63db47a53c2465c9a87fe67a7898a9d8b23b55aa", + "tarball": "http://registry.npmjs.org/morpheus/-/morpheus-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "8c62621fecf14d7f7ca3f892a4f550d77598f062", + "tarball": "http://registry.npmjs.org/morpheus/-/morpheus-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "af861431b4140952f5e091b858fe6f6d6b0bb243", + "tarball": "http://registry.npmjs.org/morpheus/-/morpheus-0.4.3.tgz" + }, + "0.4.4": { + "shasum": "99c71b74463184a196d37076e887724610859159", + "tarball": "http://registry.npmjs.org/morpheus/-/morpheus-0.4.4.tgz" + }, + "0.5.0": { + "shasum": "ae5c6acd4e633b9eec90282f9e76eb51aeeb9895", + "tarball": "http://registry.npmjs.org/morpheus/-/morpheus-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "b60baedc439ef754ca3799407e8d081d72875ca1", + "tarball": "http://registry.npmjs.org/morpheus/-/morpheus-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "76fe659a185059b048b41c553024ae54b8a91030", + "tarball": "http://registry.npmjs.org/morpheus/-/morpheus-0.5.2.tgz" + }, + "0.6.0": { + "shasum": "e1c6f1c380707922a00073309589d23ea04b32d8", + "tarball": "http://registry.npmjs.org/morpheus/-/morpheus-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "c9c06f269cca940e8776ec9b0389f73fade7fa60", + "tarball": "http://registry.npmjs.org/morpheus/-/morpheus-0.6.1.tgz" + } + }, + "keywords": [ + "ender", + "animation", + "motion", + "css", + "colors", + "morph", + "tween", + "curve", + "bezier", + "transform", + "skew", + "rotate" + ], + "url": "http://registry.npmjs.org/morpheus/" + }, + "morton": { + "name": "morton", + "description": "Calculate morton numbers and Z-order codes", + "dist-tags": { + "latest": "1.0.2" + }, + "maintainers": [ + { + "name": "kkaefer", + "email": "kkaefer@gmail.com" + }, + { + "name": "yhahn", + "email": "young@developmentseed.org" + }, + { + "name": "tmcw", + "email": "macwright@gmail.com" + }, + { + "name": "willwhite", + "email": "will@developmentseed.org" + }, + { + "name": "springmeyer", + "email": "dane@dbsgeo.com" + } + ], + "time": { + "modified": "2011-06-03T22:05:52.934Z", + "created": "2011-03-14T15:10:47.942Z", + "1.0.0": "2011-03-14T15:10:48.233Z", + "1.0.1": "2011-03-14T16:23:19.531Z", + "1.0.2": "2011-03-14T20:42:20.182Z" + }, + "author": { + "name": "Konstantin Käfer", + "email": "kkaefer@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/kkaefer/node-morton.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/morton/1.0.0", + "1.0.1": "http://registry.npmjs.org/morton/1.0.1", + "1.0.2": "http://registry.npmjs.org/morton/1.0.2" + }, + "dist": { + "1.0.0": { + "shasum": "4254de53b2925898b86374026c79de473784ad75", + "tarball": "http://registry.npmjs.org/morton/-/morton-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "9286783f64176109fb0143c10a08eeda1c515f4e", + "tarball": "http://registry.npmjs.org/morton/-/morton-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "9cd56bca8830d38c52fed3c1eb6d04d3b86c61f1", + "tarball": "http://registry.npmjs.org/morton/-/morton-1.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/morton/" + }, + "mothermayi": { + "name": "mothermayi", + "description": "MotherMayI is a simple and generic ACL lib for Node.js using Redis.", + "dist-tags": { + "latest": "1.1.3" + }, + "maintainers": [ + { + "name": "fritzy", + "email": "fritzy@netflint.net" + } + ], + "time": { + "modified": "2011-09-24T04:56:55.497Z", + "created": "2011-07-16T00:38:57.011Z", + "0.1.0": "2011-07-16T00:38:57.744Z", + "1.0.0": "2011-07-16T00:41:08.314Z", + "1.1.3": "2011-09-24T04:56:55.497Z" + }, + "author": { + "name": "Nathan Fritz", + "email": "nathan@andyet.net", + "url": "http://andyet.net/team/nathan" + }, + "repository": { + "type": "git", + "url": "git://github.com/andyet/MotherMayI.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/mothermayi/0.1.0", + "1.0.0": "http://registry.npmjs.org/mothermayi/1.0.0", + "1.1.3": "http://registry.npmjs.org/mothermayi/1.1.3" + }, + "dist": { + "0.1.0": { + "shasum": "4392bfeb70d23fdb5e2670a3bbadaf61ac761fc1", + "tarball": "http://registry.npmjs.org/mothermayi/-/mothermayi-0.1.0.tgz" + }, + "1.0.0": { + "shasum": "068a44f1bb2519c91b02fe1af3b99881f232bc9a", + "tarball": "http://registry.npmjs.org/mothermayi/-/mothermayi-1.0.0.tgz" + }, + "1.1.3": { + "shasum": "0b35b999f9f08113a4792cd25442363d3951a7f7", + "tarball": "http://registry.npmjs.org/mothermayi/-/mothermayi-1.1.3.tgz" + } + }, + "keywords": [ + "redis", + "acl", + "cluster" + ], + "url": "http://registry.npmjs.org/mothermayi/" + }, + "mount": { + "name": "mount", + "description": "Mount devices with node.js like what", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "mmalecki", + "email": "maciej.malecki@notimplemented.org" + } + ], + "time": { + "modified": "2011-10-30T00:07:31.390Z", + "created": "2011-10-29T23:31:30.593Z", + "0.0.1": "2011-10-29T23:31:32.578Z", + "0.0.2": "2011-10-29T23:42:38.148Z", + "0.0.3": "2011-10-30T00:07:31.390Z" + }, + "author": { + "name": "Maciej Małecki", + "email": "maciej.malecki@notimplemented.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/mmalecki/node-mount.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mount/0.0.1", + "0.0.2": "http://registry.npmjs.org/mount/0.0.2", + "0.0.3": "http://registry.npmjs.org/mount/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "c922168bfc70ebcd92c52d790c56fb7b8e83102a", + "tarball": "http://registry.npmjs.org/mount/-/mount-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f4e0b83bcf33cff78c063bb4550978b5c13079c5", + "tarball": "http://registry.npmjs.org/mount/-/mount-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "cfd955252a2228261605b542ba5dc4bd04587a41", + "tarball": "http://registry.npmjs.org/mount/-/mount-0.0.3.tgz" + } + }, + "keywords": [ + "mount", + "linux", + "device" + ], + "url": "http://registry.npmjs.org/mount/" + }, + "mountable-proxy": { + "name": "mountable-proxy", + "description": "Easy endpoint provision for streaming proxies in node HTTP servers.", + "dist-tags": { + "latest": "0.0.8" + }, + "maintainers": [ + { + "name": "alx", + "email": "a.simmerl@googlemail.com" + } + ], + "time": { + "modified": "2011-12-05T18:14:59.087Z", + "created": "2011-09-01T14:52:01.639Z", + "0.0.1": "2011-09-01T14:52:03.098Z", + "0.0.2": "2011-09-05T10:24:37.547Z", + "0.0.3": "2011-09-06T22:12:59.263Z", + "0.0.5": "2011-12-05T12:48:11.624Z", + "0.0.6": "2011-12-05T13:08:31.171Z", + "0.0.7": "2011-12-05T17:46:02.098Z", + "0.0.8": "2011-12-05T18:14:59.087Z" + }, + "author": { + "name": "Alexander Simmerl", + "email": "a.simmerl@googemail.com", + "url": "https://goldjunge.github.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/goldjunge/mountable-proxy.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mountable-proxy/0.0.1", + "0.0.2": "http://registry.npmjs.org/mountable-proxy/0.0.2", + "0.0.3": "http://registry.npmjs.org/mountable-proxy/0.0.3", + "0.0.5": "http://registry.npmjs.org/mountable-proxy/0.0.5", + "0.0.6": "http://registry.npmjs.org/mountable-proxy/0.0.6", + "0.0.7": "http://registry.npmjs.org/mountable-proxy/0.0.7", + "0.0.8": "http://registry.npmjs.org/mountable-proxy/0.0.8" + }, + "dist": { + "0.0.1": { + "shasum": "83f19dbcc2fec17e001a4752b9a3547e7090ca29", + "tarball": "http://registry.npmjs.org/mountable-proxy/-/mountable-proxy-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "1e142b950fed7424af69028b027e3de38ca0a92e", + "tarball": "http://registry.npmjs.org/mountable-proxy/-/mountable-proxy-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "5a7113322e5b1dfcfbf0f02d73051f41216995b4", + "tarball": "http://registry.npmjs.org/mountable-proxy/-/mountable-proxy-0.0.3.tgz" + }, + "0.0.5": { + "shasum": "e96e15f09fc59d06a81a18de78684084263612c3", + "tarball": "http://registry.npmjs.org/mountable-proxy/-/mountable-proxy-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "c1d1bd08214857f1107a7f6084c6ebfdaeb23c2e", + "tarball": "http://registry.npmjs.org/mountable-proxy/-/mountable-proxy-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "58101ee164b23b70b79ae4b66781306f94fc35a5", + "tarball": "http://registry.npmjs.org/mountable-proxy/-/mountable-proxy-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "1d3d7759e56b031a4af467466c64299556fb7e82", + "tarball": "http://registry.npmjs.org/mountable-proxy/-/mountable-proxy-0.0.8.tgz" + } + }, + "url": "http://registry.npmjs.org/mountable-proxy/" + }, + "move": { + "name": "move", + "description": "A programming language", + "dist-tags": { + "latest": "0.4.5" + }, + "maintainers": [ + { + "name": "rsms", + "email": "rasmus@notion.se" + } + ], + "time": { + "modified": "2011-10-27T18:08:23.858Z", + "created": "2011-02-14T03:29:13.859Z", + "0.0.1": "2011-02-14T03:29:14.224Z", + "0.0.2": "2011-02-18T21:59:07.338Z", + "0.1.0": "2011-03-02T19:53:57.660Z", + "0.1.1": "2011-03-03T13:51:52.920Z", + "0.1.2": "2011-03-03T13:56:37.926Z", + "0.1.3": "2011-03-05T22:29:42.579Z", + "0.2.0": "2011-03-06T23:59:42.785Z", + "0.2.1": "2011-03-10T21:52:47.557Z", + "0.2.2": "2011-03-11T00:11:11.128Z", + "0.2.3": "2011-03-17T16:44:59.069Z", + "0.2.4": "2011-06-05T22:44:15.205Z", + "0.3.0": "2011-06-20T00:09:52.090Z", + "0.3.1": "2011-07-12T04:01:24.504Z", + "0.4.0": "2011-07-26T18:26:10.807Z", + "0.4.1": "2011-07-28T17:29:56.460Z", + "0.4.2": "2011-07-31T03:16:33.510Z", + "0.4.3": "2011-08-01T19:54:48.479Z", + "0.4.4": "2011-10-14T22:52:49.098Z", + "0.4.5": "2011-10-27T18:08:23.858Z" + }, + "author": { + "name": "Rasmus Andersson", + "url": "http://rsms.me/" + }, + "repository": { + "type": "git", + "url": "git://github.com/rsms/move.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/move/0.0.1", + "0.0.2": "http://registry.npmjs.org/move/0.0.2", + "0.1.0": "http://registry.npmjs.org/move/0.1.0", + "0.1.1": "http://registry.npmjs.org/move/0.1.1", + "0.1.2": "http://registry.npmjs.org/move/0.1.2", + "0.1.3": "http://registry.npmjs.org/move/0.1.3", + "0.2.0": "http://registry.npmjs.org/move/0.2.0", + "0.2.1": "http://registry.npmjs.org/move/0.2.1", + "0.2.2": "http://registry.npmjs.org/move/0.2.2", + "0.2.3": "http://registry.npmjs.org/move/0.2.3", + "0.2.4": "http://registry.npmjs.org/move/0.2.4", + "0.3.0": "http://registry.npmjs.org/move/0.3.0", + "0.3.1": "http://registry.npmjs.org/move/0.3.1", + "0.4.0": "http://registry.npmjs.org/move/0.4.0", + "0.4.1": "http://registry.npmjs.org/move/0.4.1", + "0.4.2": "http://registry.npmjs.org/move/0.4.2", + "0.4.3": "http://registry.npmjs.org/move/0.4.3", + "0.4.4": "http://registry.npmjs.org/move/0.4.4", + "0.4.5": "http://registry.npmjs.org/move/0.4.5" + }, + "dist": { + "0.0.1": { + "shasum": "86e5ff8d129a6f2dc6b097423e288fd94b263c8a", + "tarball": "http://registry.npmjs.org/move/-/move-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "5f95aa153fe9e14e2dffba79737c777be4b20c58", + "tarball": "http://registry.npmjs.org/move/-/move-0.0.2.tgz" + }, + "0.1.0": { + "shasum": "38f837b3d722e7108e8dc5dac700e6b4a9d0649a", + "tarball": "http://registry.npmjs.org/move/-/move-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "ed9b95c4dce02103af6761dcecfedfb665f868dc", + "tarball": "http://registry.npmjs.org/move/-/move-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "668d3abb433ee839b7bdb7df696c6bae0f9fba88", + "tarball": "http://registry.npmjs.org/move/-/move-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "6986e2b5cfacef705d79251a529b6d2d52f0adfb", + "tarball": "http://registry.npmjs.org/move/-/move-0.1.3.tgz" + }, + "0.2.0": { + "shasum": "1ee17c9d7340a3fc5f081052d44cb9676daf624a", + "tarball": "http://registry.npmjs.org/move/-/move-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "1d7e0da527938bcef354f541b9f24006042b2f2b", + "tarball": "http://registry.npmjs.org/move/-/move-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "558e5419378e5e5ab41cf2b3cb5aeddd74a1b637", + "tarball": "http://registry.npmjs.org/move/-/move-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "49b5d2ed243ce41148b4fbc2c0c2938eee32627c", + "tarball": "http://registry.npmjs.org/move/-/move-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "fe017d37bddecac4f07d3a8ecefb7b067eb8d1cd", + "tarball": "http://registry.npmjs.org/move/-/move-0.2.4.tgz" + }, + "0.3.0": { + "shasum": "3883d53e321267bffae3ad6474b36db68ac8e4af", + "tarball": "http://registry.npmjs.org/move/-/move-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "a6d57aafb254c4ff1783617dc5afef5a59677b75", + "tarball": "http://registry.npmjs.org/move/-/move-0.3.1.tgz" + }, + "0.4.0": { + "shasum": "be6b2791911ae3009b5eb3eb380edfd7676a7da6", + "tarball": "http://registry.npmjs.org/move/-/move-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "f7f1f472924f557e81dbbae8e34434385684c518", + "tarball": "http://registry.npmjs.org/move/-/move-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "669d3c51b3681e26720939fb1efd89b153eb0576", + "tarball": "http://registry.npmjs.org/move/-/move-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "71e7f4c152e24d01ac1d7d951ec1a9de338788ea", + "tarball": "http://registry.npmjs.org/move/-/move-0.4.3.tgz" + }, + "0.4.4": { + "shasum": "c32ba5045c89eef38a2b5a16725b14ac5ba51c87", + "tarball": "http://registry.npmjs.org/move/-/move-0.4.4.tgz" + }, + "0.4.5": { + "shasum": "3cf156a8234c3ceca90f2310f7765c75862a39f6", + "tarball": "http://registry.npmjs.org/move/-/move-0.4.5.tgz" + } + }, + "keywords": [ + "language", + "compiler", + "javascript", + "move" + ], + "url": "http://registry.npmjs.org/move/" + }, + "moviesearch": { + "name": "moviesearch", + "description": "Search Popular sites for movie information.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "ryan", + "email": "soldair@gmail.com" + } + ], + "time": { + "modified": "2011-03-21T00:14:51.782Z", + "created": "2011-03-21T00:14:51.303Z", + "0.0.1": "2011-03-21T00:14:51.783Z" + }, + "author": { + "name": "Ryan Day", + "email": "soldair@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/soldair/node-moviesearch.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/moviesearch/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "949149ea38d06e59621192657485e161059eec89", + "tarball": "http://registry.npmjs.org/moviesearch/-/moviesearch-0.0.1.tgz" + } + }, + "keywords": [ + "movies", + "search", + "imdb", + "netflix", + "scraper" + ], + "url": "http://registry.npmjs.org/moviesearch/" + }, + "mp": { + "name": "mp", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "tbranyen", + "email": "tim@tabdeveloper.com" + } + ], + "time": { + "modified": "2011-11-23T23:29:14.029Z", + "created": "2011-09-01T17:52:37.013Z", + "0.0.0": "2011-09-01T17:52:37.238Z", + "0.0.1": "2011-11-23T23:29:14.029Z" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/mp/0.0.0", + "0.0.1": "http://registry.npmjs.org/mp/0.0.1" + }, + "dist": { + "0.0.0": { + "shasum": "fac0e1b994a7aa43fd69ee59846bfa9638cdad5d", + "tarball": "http://registry.npmjs.org/mp/-/mp-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "7c2cbb529a727981ea0f66e8889875e85d917881", + "tarball": "http://registry.npmjs.org/mp/-/mp-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/mp/" + }, + "mp-command": { + "name": "mp-command", + "description": "Message Ports commandline utility", + "dist-tags": { + "latest": "0.0.2" + }, + "readme": "# mp\n\nThe `mp` command line utility is like [curl] or [ncat] for [Message Ports] (and [ZeroMQ] connections in general). It's a convenient way to experiment with different kinds of inter-process messaging patterns without having to write any code.\n\n[curl]:http://curl.haxx.se\n[ncat]:http://nmap.org/ncat\n[Message Ports]:https://github.com/quackingduck/message-ports\n[ZeroMQ]:http://www.zeromq.org\n\nHere's an example of request/reply messaging:\n\nFirst we open a reply socket on port 2000\n\n $ mp reply 2000\n - started reply socket on port 2000\n - waiting for request\n\nLines beginning with a `-` are log messages from the system. Now let's open another terminal and start a request socket connected to the same port.\n\n $ mp request 2000\n - started request socket on port 2000\n <\n\nWhen you see a `<` that means that `mp` is waiting for you to type a message that will transmitted to the other end of the connection. Type anything and press enter.\n\n $ mp request 2000\n - started reply socket on port 2000\n < sup?\n - request sent\n - waiting for reply\n\nNow switch back to the reply terminal and you should see\n\n $ mp reply 2000\n - started reply socket on port 2000\n - waiting for request\n - request received:\n > sup?\n <\n\nType a response and switch back to the other terminal\n\n $ mp request 2000\n - started reply socket on port 2000\n > sup?\n - message sent, waiting for response\n - reply received:\n > nm, u?\n <\n", + "maintainers": [ + { + "name": "quackingduck", + "email": "myles@myles.id.au" + } + ], + "time": { + "modified": "2011-11-22T05:45:02.369Z", + "created": "2011-11-22T05:45:01.685Z", + "0.0.2": "2011-11-22T05:45:02.369Z" + }, + "author": { + "name": "Myles Byrne" + }, + "repository": { + "type": "git", + "url": "git://github.com/quackingduck/mp.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/mp-command/0.0.2" + }, + "dist": { + "0.0.2": { + "shasum": "463a440526ff91c6fdc02135d53c2ca3223e95cc", + "tarball": "http://registry.npmjs.org/mp-command/-/mp-command-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/mp-command/" + }, + "mp-logger": { + "name": "mp-logger", + "description": "A Message Ports based logger", + "dist-tags": { + "latest": "0.4.0" + }, + "readme": null, + "maintainers": [ + { + "name": "quackingduck", + "email": "myles@myles.id.au" + } + ], + "time": { + "modified": "2011-11-15T00:15:29.897Z", + "created": "2011-11-14T22:18:41.616Z", + "0.3.1": "2011-11-14T22:18:42.305Z", + "0.4.0": "2011-11-15T00:15:29.897Z" + }, + "author": { + "name": "Myles Byrne" + }, + "repository": { + "type": "git", + "url": "git://github.com/quackingduck/mp-logger.git" + }, + "versions": { + "0.3.1": "http://registry.npmjs.org/mp-logger/0.3.1", + "0.4.0": "http://registry.npmjs.org/mp-logger/0.4.0" + }, + "dist": { + "0.3.1": { + "shasum": "b60570b2ef43a180a6a24d7dbd2c7610fd4472a5", + "tarball": "http://registry.npmjs.org/mp-logger/-/mp-logger-0.3.1.tgz" + }, + "0.4.0": { + "shasum": "dc265cdfee4502ecca3d4da796164a3577e1e226", + "tarball": "http://registry.npmjs.org/mp-logger/-/mp-logger-0.4.0.tgz" + } + }, + "url": "http://registry.npmjs.org/mp-logger/" + }, + "mpd-rest": { + "name": "mpd-rest", + "description": "RESTful mpd interface", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "sgentle", + "email": "sam@samgentle.com" + } + ], + "time": { + "modified": "2011-10-30T21:21:15.725Z", + "created": "2011-10-30T17:22:26.738Z", + "0.0.0": "2011-10-30T17:24:41.016Z", + "0.0.1": "2011-10-30T21:21:15.725Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/sgentle/mpd-rest.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/mpd-rest/0.0.0", + "0.0.1": "http://registry.npmjs.org/mpd-rest/0.0.1" + }, + "dist": { + "0.0.0": { + "shasum": "0606c8bc77e89be2c7c334f3ee2b3e96765f0a3e", + "tarball": "http://registry.npmjs.org/mpd-rest/-/mpd-rest-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "e6993ca46282c5d7b77e8bcef582007b6edbd520", + "tarball": "http://registry.npmjs.org/mpd-rest/-/mpd-rest-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/mpd-rest/" + }, + "mpdsocket": { + "name": "mpdsocket", + "description": "MPD client library for Node.js", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "ewenig", + "email": "eli@csh.rit.edu" + } + ], + "time": { + "modified": "2011-03-19T18:59:51.460Z", + "created": "2011-03-19T18:59:51.339Z", + "0.1.0": "2011-03-19T18:59:51.460Z" + }, + "author": { + "name": "Eli Wenig", + "email": "eli@csh.rit.edu", + "url": "http://www.eliwenig.com/" + }, + "repository": "git://github.com/ewenig/node-mpdsocket.git", + "versions": { + "0.1.0": "http://registry.npmjs.org/mpdsocket/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "7ee6c8507bb8b43fb8178be0ee9bb6dd8d706f10", + "tarball": "http://registry.npmjs.org/mpdsocket/-/mpdsocket-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/mpdsocket/" + }, + "mqtt": { + "name": "mqtt", + "description": "MQTT server and client nodejs implementation", + "dist-tags": { + "latest": "0.0.0" + }, + "readme": "", + "maintainers": [ + { + "name": "zir", + "email": "zir.echo@gmail.com" + } + ], + "time": { + "modified": "2011-11-21T17:30:44.530Z", + "created": "2011-11-21T17:30:39.910Z", + "0.0.0": "2011-11-21T17:30:44.530Z" + }, + "author": { + "name": "Senmiao Liu", + "email": "zir.echo@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/zir/node-mqtt.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/mqtt/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "dee3aebbc66152389005b338b9a552e1a2cc76b0", + "tarball": "http://registry.npmjs.org/mqtt/-/mqtt-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/mqtt/" + }, + "MQTTClient": { + "name": "MQTTClient", + "description": "An MQTT client for Node.js.", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "# MQTTClient for Node.js\n\n\nTo start before, you need to know something about MQTT, please see\n[MQTT V3.1 Protocol Specification](http://public.dhe.ibm.com/software/dw/webservices/ws-mqtt/mqtt-v3r1.html)\n\n在使用本模块之前,你需要了解一些MQTT协议的知识,可参阅:[MQTT V3.1 协议规范](http://public.dhe.ibm.com/software/dw/webservices/ws-mqtt/mqtt-v3r1.html)\n\n\nInstall 安装\n=================\n\n**npm install MQTTClient**\n\n\nExamples 示例\n=================\n\n```javascript\n\n\tvar MQTTClient = require('MQTTClient').Client;\n\t\n\t// if you don't assigned a client_id, will automatically assigns one\n\t// 如果没有指定client_id,则程序会自动分配一个\n\tvar options = {\n\t\tclient_id:\t'you_client_id'\n\t}\n\tvar client = new MQTTClient('localhost', 1883, options);\n\t\n\tclient.connect(function () {\n\t\t// do something if connect success\n\t\t// 在此处写连接成功后执行的代码\n\t});\n```\n\n\t\nSubscribe & Un Subscribe 订阅和退订\n=================\n\n```javascript\n\n\t// subscribe to a topic\n\t// 订阅一个主题\n\tvar options = {\n\t\tdup_flag:\t0,\n\t\tqos_level:\t0\n\t}\n\tclient.subscribe('topic_name', options, function (topic, qos_level) {\n\t\t// do something if success\n\t\t// 在此处写订阅成功后执行的代码\n\t});\n\t// Simplified:\tclient.subscribe('topic_name');\n\t// 也可以这样:\tclient.subscribe('主题');\n\t\n\t// un subscribe a topic\n\t// 退订一个主题\n\tclient.unSubscribe('topic_name', options, function (topic) {\n\t\t// do something if success\n\t\t// 在此处写退订成功后执行的代码\n\t});\n\t// Simplified:\tclient.unSubscribe('topic_name');\n\t// 也可以这样:\tclient.unSubscribe('主题');\n```\n\t\n\nPublish 发布\n=================\n\n```javascript\n\n\t// publish message to a topic\n\t// 发布一个消息到指定主题\n\tvar options = {\n\t\tdup_flag:\t0,\n\t\tqos_level:\t0,\n\t\tretain:\t\tfalse\n\t}\n\tclient.publish('topic_name', 'payload', options, function (message_id) {\n\t\t// do something if success\n\t\t// 在此处写发布成功后执行的代码\n\t});\n\t// Simplified:\tclient.publish('topic_name', 'payload');\n\t// 也可以这样:\tclient.publish('主题', '内容');\n```\t\n\t\n\t\nOther 其他\n=================\n\n```javascript\n\n\t// send a PINGREQ to keep alive, will automatically be called\n\t// 发送一个PINGREQ消息给服务器,一般情况下会自动执行\n\tclient.ping(function () {\n\t\t// do something if success\n\t\t// 在此处写服务器返回PINGRESP消息后执行的代码\n\t});\n\t\n\t// disconnect\n\t// 断开连接\n\tclient.disconnect(function () {\n\t\t// do something if success\n\t\t// 在此处写服务器断开连接后执行的代码\n\t});\n```\n\t\n\t\nEvent\n=================\n\n### connect\n\n> Connect to server success, after received a CONNACK message from the server\n\n> 当连接服务器成功,并收到CONNACK消息后,触发此事件\n\n> **Arguments**: None\n\n\n### error\n\n> Has an error\n\n> 当发生错误时触发此事件\n\n> **Arguments**: error\n\n\n### disconnect\n\n> The server close the socket connection\n\n> 当服务器断开连接时触发此事件\n\n> **Arguments**: None\n\n\n### ping\n\n> After received a PINGRESP message from the server\n\n> 当收到服务器返回的PINGRESP消息时触发此事件\n\n> **Arguments**: None\n\n\n### timeout\n\n> Not received the PINGRESP message out of **options.alive_timer** seconds\n\n> 当超过指定时间(有options.alive_timer设置)没有收到服务器返回的PINGRESP消息时触发此事件\n\n> **Arguments**: None\n\n\n### publish\n\n> Received a PUBLISH message\n\n> 当收到PUBLISH消息时触发此事件\n\n> **Arguments**: topic, payload, message_id\n\n> 参数topic为消息的主题,payload为消息内容, message_id为消息ID\n", + "maintainers": [ + { + "name": "leizongmin", + "email": "leizongmin@gmail.com" + } + ], + "time": { + "modified": "2011-11-22T10:04:18.212Z", + "created": "2011-11-22T10:03:56.395Z", + "0.0.1": "2011-11-22T10:04:18.212Z" + }, + "author": { + "name": "leizongmin", + "email": "leizongmin@gmail.com", + "url": "http://ucdok.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/leizongmin/MQTTClient.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/MQTTClient/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "4f68adbd8035783dff182836445a5e6f5b6a96eb", + "tarball": "http://registry.npmjs.org/MQTTClient/-/MQTTClient-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/MQTTClient/" + }, + "mrcolor": { + "name": "mrcolor", + "description": "Just give me some colors already!", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-07-10T14:37:37.637Z", + "created": "2011-07-10T14:37:36.936Z", + "0.0.0": "2011-07-10T14:37:37.637Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-mrcolor.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/mrcolor/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "8fa1df779f5b89ba952533a864095f212efd65c0", + "tarball": "http://registry.npmjs.org/mrcolor/-/mrcolor-0.0.0.tgz" + } + }, + "keywords": [ + "color", + "pallet", + "palette", + "design" + ], + "url": "http://registry.npmjs.org/mrcolor/" + }, + "ms-logger": { + "name": "ms-logger", + "description": "A Message Socket based logger", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "quackingduck", + "email": "myles@myles.id.au" + } + ], + "time": { + "modified": "2011-10-03T23:11:16.209Z", + "created": "2011-09-28T01:59:51.301Z", + "0.1.0": "2011-09-28T01:59:51.509Z", + "0.2.0": "2011-09-28T21:24:49.846Z", + "0.3.0": "2011-10-03T23:11:16.209Z" + }, + "author": { + "name": "Myles Byrne" + }, + "repository": { + "type": "git", + "url": "git://github.com/quackingduck/ms-logger.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/ms-logger/0.1.0", + "0.2.0": "http://registry.npmjs.org/ms-logger/0.2.0", + "0.3.0": "http://registry.npmjs.org/ms-logger/0.3.0" + }, + "dist": { + "0.1.0": { + "shasum": "5912a959a11d7c2d3e605bcc12934e11301013ad", + "tarball": "http://registry.npmjs.org/ms-logger/-/ms-logger-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "c5df6e278f8ba05808076fa1b0e6e0263d7773c3", + "tarball": "http://registry.npmjs.org/ms-logger/-/ms-logger-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "9815bbc5403d5258b291f65fc4be0ba6c4043bbf", + "tarball": "http://registry.npmjs.org/ms-logger/-/ms-logger-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/ms-logger/" + }, + "msgbus": { + "name": "msgbus", + "description": "NodeJS IPC Message Bus (client+server)", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "dresende", + "email": "dresende@thinkdigital.pt" + } + ], + "time": { + "modified": "2011-06-27T15:02:30.116Z", + "created": "2011-04-01T22:46:49.999Z", + "0.1.0": "2011-04-01T22:46:50.620Z", + "0.1.1": "2011-04-08T11:58:49.506Z", + "0.1.2": "2011-04-12T12:40:52.246Z", + "0.1.3": "2011-05-24T11:44:58.363Z", + "0.1.4": "2011-06-27T15:02:30.116Z" + }, + "author": { + "name": "Diogo Resende", + "email": "dresende@thinkdigital.pt", + "url": "http://www.thinkdigital.pt" + }, + "repository": { + "type": "git", + "url": "git://github.com/ThinkDigital/node-msgbus.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/msgbus/0.1.0", + "0.1.1": "http://registry.npmjs.org/msgbus/0.1.1", + "0.1.2": "http://registry.npmjs.org/msgbus/0.1.2", + "0.1.3": "http://registry.npmjs.org/msgbus/0.1.3", + "0.1.4": "http://registry.npmjs.org/msgbus/0.1.4" + }, + "dist": { + "0.1.0": { + "shasum": "16b6df470e6a679ae8599b6e00b76d91a128a1af", + "tarball": "http://registry.npmjs.org/msgbus/-/msgbus-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "4759b8a416955fb070f75bbffa8cecc51cc212a9", + "tarball": "http://registry.npmjs.org/msgbus/-/msgbus-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "56d484596a02b590ef506adc98f3e744d0f060e8", + "tarball": "http://registry.npmjs.org/msgbus/-/msgbus-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "72ddf95fd91e8b1cc800384d789c5b7653547fb3", + "tarball": "http://registry.npmjs.org/msgbus/-/msgbus-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "07ae9f5912ba703793ac33e89c3b98c11e933ca1", + "tarball": "http://registry.npmjs.org/msgbus/-/msgbus-0.1.4.tgz" + } + }, + "keywords": [ + "dbus", + "bus", + "message", + "ipc" + ], + "url": "http://registry.npmjs.org/msgbus/" + }, + "msgme": { + "name": "msgme", + "description": "Module for accessing the MsgMe SMS service.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "walker", + "email": "myself@walkerhamilton.com" + } + ], + "time": { + "modified": "2011-08-26T14:34:54.163Z", + "created": "2011-08-26T14:34:53.725Z", + "0.0.1": "2011-08-26T14:34:54.163Z" + }, + "author": { + "name": "Walker Hamilton", + "email": "myself@walkerhamilton.com", + "url": "http://walkerhamilton.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/walker/msgme.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/msgme/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "65863f4247f6bbb1e741fe64fa709f86c1328e6e", + "tarball": "http://registry.npmjs.org/msgme/-/msgme-0.0.1.tgz" + } + }, + "keywords": [ + "api", + "sms" + ], + "url": "http://registry.npmjs.org/msgme/" + }, + "msgpack": { + "name": "msgpack", + "description": "A space-efficient object serialization library for node.js", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "tomtaylor", + "email": "tom@tomtaylor.co.uk" + } + ], + "author": { + "name": "Peter Griess", + "email": "pg@std.in" + }, + "repository": { + "type": "git", + "url": "https://github.com/pgriess/node-msgpack.git" + }, + "versions": { + "0.1.2": "http://registry.npmjs.org/msgpack/0.1.2", + "0.1.3": "http://registry.npmjs.org/msgpack/0.1.3" + }, + "dist": { + "0.1.2": { + "tarball": "http://registry.npmjs.org/msgpack/-/msgpack-0.1.2.tgz" + }, + "0.1.3": { + "tarball": "http://registry.npmjs.org/msgpack/-/msgpack-0.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/msgpack/" + }, + "msgpack-0.4": { + "name": "msgpack-0.4", + "description": "A space-efficient object serialization library for node.js", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "jmars", + "email": "marshall.jaye@gmail.com" + } + ], + "time": { + "modified": "2011-06-24T12:19:50.737Z", + "created": "2011-06-24T12:19:49.280Z", + "0.1.4": "2011-06-24T12:19:50.737Z" + }, + "author": { + "name": "Peter Griess", + "email": "pg@std.in" + }, + "repository": { + "type": "git", + "url": "git://github.com/pgriess/node-msgpack.git" + }, + "versions": { + "0.1.4": "http://registry.npmjs.org/msgpack-0.4/0.1.4" + }, + "dist": { + "0.1.4": { + "shasum": "2aaf54a53f700c6154b1fceda2ccab745d00a58e", + "tarball": "http://registry.npmjs.org/msgpack-0.4/-/msgpack-0.4-0.1.4.tgz" + } + }, + "url": "http://registry.npmjs.org/msgpack-0.4/" + }, + "msgpack2": { + "name": "msgpack2", + "description": "Latest version of node.js msgpack bindings", + "dist-tags": { + "latest": "0.1.7" + }, + "maintainers": [ + { + "name": "z0s0", + "email": "jules+npm@jules.com.au" + } + ], + "time": { + "modified": "2011-12-08T06:24:27.665Z", + "created": "2011-09-07T00:25:19.723Z", + "0.1.4": "2011-12-08T06:12:29.835Z", + "0.1.5": "2011-12-05T05:19:02.688Z", + "0.1.6": "2011-12-08T06:12:29.835Z", + "0.1.7": "2011-12-08T06:24:27.665Z" + }, + "author": { + "name": "Peter Griess", + "email": "pg@std.in" + }, + "repository": { + "type": "git", + "url": "git://github.com/JulesAU/node-msgpack.git" + }, + "versions": { + "0.1.4": "http://registry.npmjs.org/msgpack2/0.1.4", + "0.1.5": "http://registry.npmjs.org/msgpack2/0.1.5", + "0.1.6": "http://registry.npmjs.org/msgpack2/0.1.6", + "0.1.7": "http://registry.npmjs.org/msgpack2/0.1.7" + }, + "dist": { + "0.1.4": { + "shasum": "e7a64cc26eacd0a55c7cd4a473a0ee01e965a0c8", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.16-linux-2.6.18-194.32.1.el5": { + "shasum": "e575032b63feccf681c261e6cc0d332585a4d41a", + "tarball": "http://registry.npmjs.org/msgpack2/-/msgpack2-0.1.4-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.16-linux-2.6.18-194.32.1.el5.tgz" + } + }, + "tarball": "http://registry.npmjs.org/msgpack2/-/msgpack2-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "d6661067675dec74ace19ce4a5321a375b957d4a", + "tarball": "http://registry.npmjs.org/msgpack2/-/msgpack2-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "06fbb0fc02b858e2234963d3c57a83d3c0747242", + "tarball": "http://registry.npmjs.org/msgpack2/-/msgpack2-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "0b7649bd5c4a7ed8d057e169e33cebc7aaa03385", + "tarball": "http://registry.npmjs.org/msgpack2/-/msgpack2-0.1.7.tgz" + } + }, + "url": "http://registry.npmjs.org/msgpack2/" + }, + "mstranslator": { + "name": "mstranslator", + "description": "Microsoft Translator API module for node.js", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "nanek", + "email": "kenan.shifflett@gmail.com" + } + ], + "time": { + "modified": "2011-11-17T17:35:52.098Z", + "created": "2011-11-12T18:40:09.885Z", + "0.0.1": "2011-11-12T18:40:10.072Z", + "0.0.2": "2011-11-14T00:33:36.873Z", + "0.0.3": "2011-11-17T17:35:52.098Z" + }, + "author": { + "name": "Kenan Shifflett", + "email": "kenan.shifflett@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/nanek/mstranslator.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mstranslator/0.0.1", + "0.0.2": "http://registry.npmjs.org/mstranslator/0.0.2", + "0.0.3": "http://registry.npmjs.org/mstranslator/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "bb02c34cc2629ba230dad38954f9d3af0b80ddd1", + "tarball": "http://registry.npmjs.org/mstranslator/-/mstranslator-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "18f7caed101bc8814ca68b2177faa984b60c1923", + "tarball": "http://registry.npmjs.org/mstranslator/-/mstranslator-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "9346c879da40e8faa41fca1ee0991675ca751bce", + "tarball": "http://registry.npmjs.org/mstranslator/-/mstranslator-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/mstranslator/" + }, + "mtags": { + "name": "mtags", + "description": "Media file tag parser", + "dist-tags": { + "latest": "0.1.3" + }, + "readme": null, + "maintainers": [ + { + "name": "thegreat", + "email": "tom@tnightingale.com" + } + ], + "time": { + "modified": "2011-12-02T08:15:22.184Z", + "created": "2011-12-02T06:30:17.640Z", + "0.1.0": "2011-12-02T06:30:19.267Z", + "0.1.1": "2011-12-02T06:44:58.424Z", + "0.1.3": "2011-12-02T08:15:22.184Z" + }, + "author": { + "name": "Jacob Seidelin", + "email": "cupboy@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/thegreat/mtags.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/mtags/0.1.0", + "0.1.1": "http://registry.npmjs.org/mtags/0.1.1", + "0.1.3": "http://registry.npmjs.org/mtags/0.1.3" + }, + "dist": { + "0.1.0": { + "shasum": "429fe4a4796b0282a89099f9ce43706a93d94a58", + "tarball": "http://registry.npmjs.org/mtags/-/mtags-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "e0411a6d1e3aa65d6bf4348df9c3eaee206097bc", + "tarball": "http://registry.npmjs.org/mtags/-/mtags-0.1.1.tgz" + }, + "0.1.3": { + "shasum": "a55a0efd8e6cd7176c0ea6628a2916fee48148ea", + "tarball": "http://registry.npmjs.org/mtags/-/mtags-0.1.3.tgz" + } + }, + "keywords": [ + "id3", + "mp3", + "AAC", + "m4a", + "parser" + ], + "url": "http://registry.npmjs.org/mtags/" + }, + "mtfw": { + "name": "mtfw", + "description": "Mocks that fucking work", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "grncdr", + "email": "glurgle@gmail.com" + } + ], + "time": { + "modified": "2011-10-26T23:25:56.626Z", + "created": "2011-10-26T17:27:16.145Z", + "0.0.1": "2011-10-26T17:27:17.445Z", + "0.1.0": "2011-10-26T23:05:21.965Z", + "0.1.1": "2011-10-26T23:25:56.626Z" + }, + "author": { + "name": "Stephen Sugden", + "email": "stephen@betsmartmedia.com", + "url": "www.betsmartmedia.com" + }, + "repository": { + "type": "git", + "url": "git@gist.github.com:1315749.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mtfw/0.0.1", + "0.1.0": "http://registry.npmjs.org/mtfw/0.1.0", + "0.1.1": "http://registry.npmjs.org/mtfw/0.1.1" + }, + "dist": { + "0.0.1": { + "shasum": "b0bc6c89d81843d324ec16aa648f268c51eb6dd6", + "tarball": "http://registry.npmjs.org/mtfw/-/mtfw-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "420407a41ab0949423350bfb83a605250e0690c5", + "tarball": "http://registry.npmjs.org/mtfw/-/mtfw-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "ce428985f217de67a5560abcf3756c8b10f450b0", + "tarball": "http://registry.npmjs.org/mtfw/-/mtfw-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/mtfw/" + }, + "mtgox-websocket-client": { + "name": "mtgox-websocket-client", + "description": "A websocket client for MtGox", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "dlanod", + "email": "donald.ness@gmail.com" + } + ], + "time": { + "modified": "2011-09-28T22:06:21.926Z", + "created": "2011-09-28T22:06:21.342Z", + "0.0.1": "2011-09-28T22:06:21.926Z" + }, + "author": { + "name": "Donald Ness", + "email": "donald.ness@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dlanod/node-mtgox-websocket-client.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mtgox-websocket-client/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "348ad442da913d048080249d80cd37e2046e0651", + "tarball": "http://registry.npmjs.org/mtgox-websocket-client/-/mtgox-websocket-client-0.0.1.tgz" + } + }, + "keywords": [ + "mtgox", + "websocket", + "bitcoin" + ], + "url": "http://registry.npmjs.org/mtgox-websocket-client/" + }, + "mtrude": { + "name": "mtrude", + "description": "Media extruding on node.js", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "nalply", + "email": "nalply@gmail.com" + } + ], + "time": { + "modified": "2011-10-24T13:19:35.301Z", + "created": "2011-10-24T13:19:33.563Z", + "0.0.0": "2011-10-24T13:19:35.301Z" + }, + "author": { + "name": "Daniel Ly", + "email": "daniel.ly@lively5.ch", + "url": "http://lively5.ch" + }, + "repository": { + "type": "git", + "url": "git://github.com/nalply/mtrude.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/mtrude/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "f49166d6816ee6846060527240718509784a9c6a", + "tarball": "http://registry.npmjs.org/mtrude/-/mtrude-0.0.0.tgz" + } + }, + "keywords": [ + "streaming", + "server", + "media", + "rtmp" + ], + "url": "http://registry.npmjs.org/mtrude/" + }, + "mturk": { + "name": "mturk", + "description": "Amazon Mechanical Turk API wrapper for Node", + "dist-tags": { + "latest": "0.1.1" + }, + "readme": "# Intro\n\nAmazon Mechanical Turk API wrapper for Node.\n\n# Install\n\n npm install\n\n# Use\n\n var mturk = require('path/to/mturk');\n mturk...\n\nCheck [the API docs](https://github.com/expensecat/mturk/blob/master/API.md).\n\n# Tests\n\nYou must have expresso installed first:\n\n $ npm install expresso\n\nThen run:\n\n $ make", + "maintainers": [ + { + "name": "pgte", + "email": "pedro.teixeira@gmail.com" + } + ], + "time": { + "modified": "2011-11-29T17:16:40.340Z", + "created": "2011-11-29T15:58:29.992Z", + "0.1.0": "2011-11-29T15:58:31.913Z", + "0.1.1": "2011-11-29T17:16:40.340Z" + }, + "author": { + "name": "Expense Cat" + }, + "repository": { + "type": "git", + "url": "git://github.com/expensecat/mturk.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/mturk/0.1.0", + "0.1.1": "http://registry.npmjs.org/mturk/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "eca37d9996df6f4415a2a6779a0146b695b1914d", + "tarball": "http://registry.npmjs.org/mturk/-/mturk-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "32f7911d4350a1d7f5df8ecbdb78c78a3ccbcdf3", + "tarball": "http://registry.npmjs.org/mturk/-/mturk-0.1.1.tgz" + } + }, + "keywords": [ + "Mechanical Turk", + "Amazon", + "API" + ], + "url": "http://registry.npmjs.org/mturk/" + }, + "mu": { + "name": "mu", + "description": "A Mustache template engine for Node.js", + "dist-tags": { + "latest": "0.5.2" + }, + "maintainers": [ + { + "name": "RayMorgan2", + "email": "ray@simple-apps.com" + } + ], + "time": { + "modified": "2011-07-23T05:42:58.505Z", + "created": "2011-03-04T18:34:43.130Z", + "0.5.0": "2011-03-04T18:34:43.531Z", + "0.5.1": "2011-03-04T20:11:18.158Z", + "0.5.2": "2011-07-23T05:42:58.505Z" + }, + "author": { + "name": "RayMorgan", + "email": "ray@simple-apps.com" + }, + "versions": { + "0.5.0": "http://registry.npmjs.org/mu/0.5.0", + "0.5.1": "http://registry.npmjs.org/mu/0.5.1", + "0.5.2": "http://registry.npmjs.org/mu/0.5.2" + }, + "dist": { + "0.5.0": { + "shasum": "c55de6ffd59b63901192ae1a8a1a3aaed136faa4", + "tarball": "http://registry.npmjs.org/mu/-/mu-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "7132b51ea1f9a7ba591946a945058d8d8a0c889a", + "tarball": "http://registry.npmjs.org/mu/-/mu-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "f12deef5e77c6cf5756282da893e346709ce5355", + "tarball": "http://registry.npmjs.org/mu/-/mu-0.5.2.tgz" + } + }, + "keywords": [ + "template", + "mustache" + ], + "url": "http://registry.npmjs.org/mu/" + }, + "Mu": { + "name": "Mu", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "subrah", + "email": "subbu@subbu.org" + } + ], + "versions": { + "0.0.1": "http://registry.npmjs.org/Mu/0.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/Mu/-/Mu-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/Mu/" + }, + "mu2": { + "name": "mu2", + "description": "A Mustache template engine for Node.js", + "dist-tags": { + "latest": "0.5.3" + }, + "maintainers": [ + { + "name": "raymorgan2", + "email": "ray@simple-apps.com" + } + ], + "time": { + "modified": "2011-07-23T05:54:46.531Z", + "created": "2011-07-23T05:54:45.954Z", + "0.5.3": "2011-07-23T05:54:46.531Z" + }, + "author": { + "name": "RayMorgan", + "email": "ray@simple-apps.com" + }, + "versions": { + "0.5.3": "http://registry.npmjs.org/mu2/0.5.3" + }, + "dist": { + "0.5.3": { + "shasum": "b013ea3595ba6271821894c8ef20a98b5ffbbfa6", + "tarball": "http://registry.npmjs.org/mu2/-/mu2-0.5.3.tgz" + } + }, + "keywords": [ + "template", + "mustache" + ], + "url": "http://registry.npmjs.org/mu2/" + }, + "mud": { + "name": "mud", + "description": "A package manager for browser-side JavaScript", + "dist-tags": { + "latest": "0.1.10" + }, + "maintainers": [ + { + "name": "mafintosh", + "email": "m@ge.tt" + } + ], + "time": { + "modified": "2011-08-01T20:18:00.212Z", + "created": "2011-05-03T22:09:01.681Z", + "0.1.0": "2011-05-03T22:09:02.097Z", + "0.0.1": "2011-05-03T22:11:45.340Z", + "0.0.2": "2011-05-04T09:44:48.033Z", + "0.0.3": "2011-05-08T23:24:15.087Z", + "0.0.4": "2011-05-12T13:35:53.185Z", + "0.0.5": "2011-05-23T13:19:48.718Z", + "0.1.1": "2011-06-02T20:49:04.409Z", + "0.1.2": "2011-06-02T21:07:21.062Z", + "0.1.3": "2011-06-02T21:53:09.567Z", + "0.1.4": "2011-06-02T21:56:39.675Z", + "0.1.5": "2011-07-03T15:40:08.392Z", + "0.1.6": "2011-07-03T16:38:17.827Z", + "0.1.7": "2011-07-03T16:59:40.378Z", + "0.1.8": "2011-08-01T20:08:12.705Z", + "0.1.9": "2011-08-01T20:10:38.492Z", + "0.1.10": "2011-08-01T20:18:00.212Z" + }, + "author": { + "name": "Mathias Buus Madsen", + "email": "m@ge.tt" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mud/0.0.1", + "0.0.2": "http://registry.npmjs.org/mud/0.0.2", + "0.0.3": "http://registry.npmjs.org/mud/0.0.3", + "0.0.4": "http://registry.npmjs.org/mud/0.0.4", + "0.0.5": "http://registry.npmjs.org/mud/0.0.5", + "0.1.0": "http://registry.npmjs.org/mud/0.1.0", + "0.1.1": "http://registry.npmjs.org/mud/0.1.1", + "0.1.2": "http://registry.npmjs.org/mud/0.1.2", + "0.1.3": "http://registry.npmjs.org/mud/0.1.3", + "0.1.4": "http://registry.npmjs.org/mud/0.1.4", + "0.1.5": "http://registry.npmjs.org/mud/0.1.5", + "0.1.6": "http://registry.npmjs.org/mud/0.1.6", + "0.1.7": "http://registry.npmjs.org/mud/0.1.7", + "0.1.8": "http://registry.npmjs.org/mud/0.1.8", + "0.1.9": "http://registry.npmjs.org/mud/0.1.9", + "0.1.10": "http://registry.npmjs.org/mud/0.1.10" + }, + "dist": { + "0.0.1": { + "shasum": "87d7dcf7dfdbe0feb8c598cedbb9d6248919cfe9", + "tarball": "http://registry.npmjs.org/mud/-/mud-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "fbc0077391affdaa260887c00da1a2bf8af484a5", + "tarball": "http://registry.npmjs.org/mud/-/mud-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "84ea7c6112968246fa134433dd5c58ea9a99c827", + "tarball": "http://registry.npmjs.org/mud/-/mud-0.0.3.tgz", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.0": { + "shasum": "1681ebf9ae04ff92ec0a978eb77521cad0bd6754", + "tarball": "http://registry.npmjs.org/mud/-/mud-0.0.3-0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.0.tgz" + } + } + }, + "0.0.4": { + "shasum": "ccfb9a75e470433660d07e0df858ea047f8107b8", + "tarball": "http://registry.npmjs.org/mud/-/mud-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "58de03d648beb664938f46bc188c6f6c342c759a", + "tarball": "http://registry.npmjs.org/mud/-/mud-0.0.5.tgz" + }, + "0.1.0": { + "shasum": "b2bc056fc55598f9e911990af7f4548255dea694", + "tarball": "http://registry.npmjs.org/mud/-/mud-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "bb871b2405d81f12d003fb681d55f02ab94fe971", + "tarball": "http://registry.npmjs.org/mud/-/mud-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "13e385960d848d680a648c06d5f51360f06682d0", + "tarball": "http://registry.npmjs.org/mud/-/mud-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "a94d6d3fb22fc1c899c60b6c27b9a835e4b0928f", + "tarball": "http://registry.npmjs.org/mud/-/mud-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "b85306e103314f91c9b31c93c421c0a6b443a543", + "tarball": "http://registry.npmjs.org/mud/-/mud-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "78c72cdbc9185a41313f2618df9de7d5cf5bd805", + "tarball": "http://registry.npmjs.org/mud/-/mud-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "4807ba653ac6b45651bd83564c43eebf686d777f", + "tarball": "http://registry.npmjs.org/mud/-/mud-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "aad91924103449bc3189cb93ab97bd75aa0ba50a", + "tarball": "http://registry.npmjs.org/mud/-/mud-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "933dcae81cba3fa1525683014d0ba4f923bbf990", + "tarball": "http://registry.npmjs.org/mud/-/mud-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "a22209e878e6c29dde724fca70e11ca5d1932029", + "tarball": "http://registry.npmjs.org/mud/-/mud-0.1.9.tgz" + }, + "0.1.10": { + "shasum": "1a2058e6a1a818fa94c1e745b9b54f703129650d", + "tarball": "http://registry.npmjs.org/mud/-/mud-0.1.10.tgz" + } + }, + "url": "http://registry.npmjs.org/mud/" + }, + "muffin": { + "name": "muffin", + "description": "Handy helpers for Cakefiles", + "dist-tags": { + "latest": "0.2.6" + }, + "maintainers": [ + { + "name": "hornairs", + "email": "harry.brundage@jadedpixel.com" + } + ], + "time": { + "modified": "2011-12-13T15:53:57.135Z", + "created": "2011-07-04T19:58:32.180Z", + "0.1.0": "2011-07-04T19:58:32.400Z", + "0.1.1": "2011-07-05T15:17:47.522Z", + "0.1.2": "2011-07-08T21:54:56.101Z", + "0.1.3": "2011-07-14T19:41:50.965Z", + "0.1.4": "2011-07-14T22:21:20.875Z", + "0.1.5": "2011-07-22T19:56:57.562Z", + "0.1.6": "2011-08-08T20:48:27.245Z", + "0.1.7": "2011-08-17T00:48:41.210Z", + "0.1.8": "2011-08-23T21:40:37.105Z", + "0.1.9": "2011-09-23T20:33:29.186Z", + "0.2.0": "2011-09-27T18:07:43.469Z", + "0.2.1": "2011-10-03T21:25:21.143Z", + "0.2.2": "2011-10-05T19:19:09.052Z", + "0.2.3": "2011-10-05T19:53:23.302Z", + "0.2.4": "2011-10-05T22:13:34.888Z", + "0.2.5": "2011-11-09T03:07:58.345Z", + "0.2.6": "2011-12-13T15:53:57.135Z" + }, + "author": { + "name": "Harry Brundage", + "email": "harry.brundage@jadedpixel.com", + "url": "http://shopify.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/hornairs/muffin.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/muffin/0.1.0", + "0.1.1": "http://registry.npmjs.org/muffin/0.1.1", + "0.1.2": "http://registry.npmjs.org/muffin/0.1.2", + "0.1.3": "http://registry.npmjs.org/muffin/0.1.3", + "0.1.4": "http://registry.npmjs.org/muffin/0.1.4", + "0.1.5": "http://registry.npmjs.org/muffin/0.1.5", + "0.1.6": "http://registry.npmjs.org/muffin/0.1.6", + "0.1.7": "http://registry.npmjs.org/muffin/0.1.7", + "0.1.8": "http://registry.npmjs.org/muffin/0.1.8", + "0.1.9": "http://registry.npmjs.org/muffin/0.1.9", + "0.2.0": "http://registry.npmjs.org/muffin/0.2.0", + "0.2.1": "http://registry.npmjs.org/muffin/0.2.1", + "0.2.2": "http://registry.npmjs.org/muffin/0.2.2", + "0.2.3": "http://registry.npmjs.org/muffin/0.2.3", + "0.2.4": "http://registry.npmjs.org/muffin/0.2.4", + "0.2.5": "http://registry.npmjs.org/muffin/0.2.5", + "0.2.6": "http://registry.npmjs.org/muffin/0.2.6" + }, + "dist": { + "0.1.0": { + "shasum": "6f402a6b09fc737e295809f09438129b305dbb0e", + "tarball": "http://registry.npmjs.org/muffin/-/muffin-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "2c71991696e85f10d67cd1a5f527ff6fe124ab91", + "tarball": "http://registry.npmjs.org/muffin/-/muffin-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "8c6dfb729e0a73ae057cb830142ac6caf917647c", + "tarball": "http://registry.npmjs.org/muffin/-/muffin-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "ead04159d1de2b3f303db545398b0da8481d1737", + "tarball": "http://registry.npmjs.org/muffin/-/muffin-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "a21e580d7b7a56659c4164872e1de031038d7f80", + "tarball": "http://registry.npmjs.org/muffin/-/muffin-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "60f049899accc0da05cc43175d8476ddf466ffa5", + "tarball": "http://registry.npmjs.org/muffin/-/muffin-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "08423f975844a48e96367f1128e4afb5dfe1984d", + "tarball": "http://registry.npmjs.org/muffin/-/muffin-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "80a8c71c3e78aea364c0b29509d81fd7f9e9dca6", + "tarball": "http://registry.npmjs.org/muffin/-/muffin-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "87b9522734a71040c6dd55a1c80dde98c5115ed1", + "tarball": "http://registry.npmjs.org/muffin/-/muffin-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "62f71ddb4c9530f2dadee1a7f04195569a01151a", + "tarball": "http://registry.npmjs.org/muffin/-/muffin-0.1.9.tgz" + }, + "0.2.0": { + "shasum": "9a6cc29b93a26b565a1f1073fc6b4a40cf92318d", + "tarball": "http://registry.npmjs.org/muffin/-/muffin-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "17dae8e347ec99d2981a67d7a32a69365b3c46bf", + "tarball": "http://registry.npmjs.org/muffin/-/muffin-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "51a619097a8dc7880ba140b74cb28f3ad3d4bf4f", + "tarball": "http://registry.npmjs.org/muffin/-/muffin-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "9b4d2ccccc755f9552dde031b5622c751b41aae9", + "tarball": "http://registry.npmjs.org/muffin/-/muffin-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "84afdf32e2968152a7f81abd432c19b16c9b0d05", + "tarball": "http://registry.npmjs.org/muffin/-/muffin-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "ab71d0e365baf119ff464c6d5065947879815aad", + "tarball": "http://registry.npmjs.org/muffin/-/muffin-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "719d45dd20a93155e347c2b1ce31296e9829dea9", + "tarball": "http://registry.npmjs.org/muffin/-/muffin-0.2.6.tgz" + } + }, + "url": "http://registry.npmjs.org/muffin/" + }, + "multi-node": { + "name": "multi-node", + "version": "0.2.2", + "author": "Kris Zyp", + "keywords": [ + "multiple processes", + "http" + ], + "licenses": [ + { + "type": "AFLv2.1", + "url": "http://trac.dojotoolkit.org/browser/dojo/trunk/LICENSE#L43" + }, + { + "type": "BSD", + "url": "http://trac.dojotoolkit.org/browser/dojo/trunk/LICENSE#L13" + } + ], + "maintainers": [ + { + "name": "Kris Zyp", + "email": "kriszyp@gmail.com" + } + ], + "repository": { + "type": "git", + "url": "http://github.com/kriszyp/multi-node" + }, + "directories": { + "lib": "./lib" + }, + "url": "http://packages.dojofoundation.org/multi-node", + "location": "http://packages.dojofoundation.org/multi-node", + "time": { + "modified": "2011-07-01T15:48:39.094Z", + "created": "2011-07-01T15:48:39.094Z" + }, + "versions": {}, + "dist": {} + }, + "multicast-eventemitter": { + "name": "multicast-eventemitter", + "description": "LAN wide eventemitter, using multicast.", + "dist-tags": { + "latest": "0.0.10" + }, + "maintainers": [ + { + "name": "chrisdew", + "email": "cmsdew@gmail.com" + } + ], + "time": { + "modified": "2011-08-26T14:19:10.602Z", + "created": "2011-07-11T10:29:39.468Z", + "0.0.1": "2011-07-11T10:29:39.978Z", + "0.0.2": "2011-07-11T10:31:21.586Z", + "0.0.4": "2011-07-11T10:40:55.571Z", + "0.0.6": "2011-07-11T10:44:30.823Z", + "0.0.8": "2011-07-15T10:11:40.512Z", + "0.0.10": "2011-08-26T14:19:10.602Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/multicast-eventemitter/0.0.1", + "0.0.2": "http://registry.npmjs.org/multicast-eventemitter/0.0.2", + "0.0.4": "http://registry.npmjs.org/multicast-eventemitter/0.0.4", + "0.0.6": "http://registry.npmjs.org/multicast-eventemitter/0.0.6", + "0.0.8": "http://registry.npmjs.org/multicast-eventemitter/0.0.8", + "0.0.10": "http://registry.npmjs.org/multicast-eventemitter/0.0.10" + }, + "dist": { + "0.0.1": { + "shasum": "205a8a825ae562f47f170c9f9c0b92f50752b0f9", + "tarball": "http://registry.npmjs.org/multicast-eventemitter/-/multicast-eventemitter-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "8d171ec9953b54d4a18078e231dce39301707708", + "tarball": "http://registry.npmjs.org/multicast-eventemitter/-/multicast-eventemitter-0.0.2.tgz" + }, + "0.0.4": { + "shasum": "38fb3df9402fd5c9ffd7202011e12dc3f88ac5f7", + "tarball": "http://registry.npmjs.org/multicast-eventemitter/-/multicast-eventemitter-0.0.4.tgz" + }, + "0.0.6": { + "shasum": "58b0f11bfe2af412148688d4048aebdf8ae5b97d", + "tarball": "http://registry.npmjs.org/multicast-eventemitter/-/multicast-eventemitter-0.0.6.tgz" + }, + "0.0.8": { + "shasum": "1fcfce031d34b4e5f361c709394f44d80158d6d1", + "tarball": "http://registry.npmjs.org/multicast-eventemitter/-/multicast-eventemitter-0.0.8.tgz" + }, + "0.0.10": { + "shasum": "f007d37d86cb9b3a2e3535e06349d8aa21714f6b", + "tarball": "http://registry.npmjs.org/multicast-eventemitter/-/multicast-eventemitter-0.0.10.tgz" + } + }, + "url": "http://registry.npmjs.org/multicast-eventemitter/" + }, + "multimeter": { + "name": "multimeter", + "description": "render multiple progress bars at once on the terminal", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-08-24T12:19:29.671Z", + "created": "2011-08-15T06:19:18.021Z", + "0.0.0": "2011-08-15T06:19:18.929Z", + "0.0.1": "2011-08-19T03:15:40.715Z", + "0.1.0": "2011-08-24T12:19:29.671Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-multimeter.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/multimeter/0.0.0", + "0.0.1": "http://registry.npmjs.org/multimeter/0.0.1", + "0.1.0": "http://registry.npmjs.org/multimeter/0.1.0" + }, + "dist": { + "0.0.0": { + "shasum": "957ee16fec2c193d65bdcb8e2c72f8b4391d82f3", + "tarball": "http://registry.npmjs.org/multimeter/-/multimeter-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "aed83ada982b4ede6faaa297c2b70c2f21bf4fa3", + "tarball": "http://registry.npmjs.org/multimeter/-/multimeter-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "26079e413977da6ca58eeefe9c0df4e895f7c8bf", + "tarball": "http://registry.npmjs.org/multimeter/-/multimeter-0.1.0.tgz" + } + }, + "keywords": [ + "progress", + "bar", + "status", + "meter", + "terminal", + "console", + "ansi" + ], + "url": "http://registry.npmjs.org/multimeter/" + }, + "multipart-stack": { + "name": "multipart-stack", + "description": "A `StreamStack` subclass that parses \"multipart\" data, often from SMTP or HTTP.", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "TooTallNate", + "email": "nathan@tootallnate.net" + } + ], + "time": { + "modified": "2011-05-10T20:55:04.772Z", + "created": "2011-03-25T02:05:15.645Z", + "0.0.1": "2011-03-25T02:05:16.217Z", + "0.0.2": "2011-03-25T03:36:17.238Z", + "0.0.3": "2011-05-10T20:31:48.549Z", + "0.0.4": "2011-05-10T20:55:04.772Z" + }, + "author": { + "name": "Nathan Rajlich", + "email": "nathan@tootallnate.net", + "url": "http://tootallnate.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/TooTallNate/node-multipart-stack.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/multipart-stack/0.0.1", + "0.0.2": "http://registry.npmjs.org/multipart-stack/0.0.2", + "0.0.3": "http://registry.npmjs.org/multipart-stack/0.0.3", + "0.0.4": "http://registry.npmjs.org/multipart-stack/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "b5e80f4c4ef11900db4d8971e741c59f621f1840", + "tarball": "http://registry.npmjs.org/multipart-stack/-/multipart-stack-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "75d88f25c160466075202a91169a186a760cfb9c", + "tarball": "http://registry.npmjs.org/multipart-stack/-/multipart-stack-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "b469d87f74e8a4824cb1ae1b25ad784e04637220", + "tarball": "http://registry.npmjs.org/multipart-stack/-/multipart-stack-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "914c5c1656c74c2060f2e87f08abf44f1d2cedb3", + "tarball": "http://registry.npmjs.org/multipart-stack/-/multipart-stack-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/multipart-stack/" + }, + "multiparter": { + "name": "multiparter", + "description": "multipart/form-data POST request maker for nodejs", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "bobrik", + "email": "ibobrik@gmail.com" + } + ], + "time": { + "modified": "2011-11-10T13:47:53.159Z", + "created": "2011-11-09T13:18:13.429Z", + "0.1.0": "2011-11-09T13:18:15.037Z", + "0.1.1": "2011-11-09T13:25:06.359Z", + "0.1.2": "2011-11-10T10:32:04.160Z", + "0.1.3": "2011-11-10T12:52:16.921Z", + "0.1.4": "2011-11-10T13:47:53.159Z" + }, + "author": { + "name": "Ian Babrou", + "email": "ibobrik@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Sonetica/multiparter.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/multiparter/0.1.0", + "0.1.1": "http://registry.npmjs.org/multiparter/0.1.1", + "0.1.2": "http://registry.npmjs.org/multiparter/0.1.2", + "0.1.3": "http://registry.npmjs.org/multiparter/0.1.3", + "0.1.4": "http://registry.npmjs.org/multiparter/0.1.4" + }, + "dist": { + "0.1.0": { + "shasum": "a7f923772c97790f8b06424739c2f093bdfb1214", + "tarball": "http://registry.npmjs.org/multiparter/-/multiparter-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "ea8f2620d69ccb69978b24b696d65012d9914167", + "tarball": "http://registry.npmjs.org/multiparter/-/multiparter-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "1822cceaf89da88c44c401879bbb58c3b62e007a", + "tarball": "http://registry.npmjs.org/multiparter/-/multiparter-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "95e1bfc31f6a5384ac9e351e05e982a732ca29f9", + "tarball": "http://registry.npmjs.org/multiparter/-/multiparter-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "5fa028a8a624c85f388db8ea6d28d36fb2cf30be", + "tarball": "http://registry.npmjs.org/multiparter/-/multiparter-0.1.4.tgz" + } + }, + "keywords": [ + "multipart/form-data", + "multipart", + "form-data", + "POST" + ], + "url": "http://registry.npmjs.org/multiparter/" + }, + "multiwaydb": { + "name": "multiwaydb", + "description": "A lightweight database that can load in JSON, set and get according to table and key/value pairs, and be accessed over http", + "dist-tags": { + "latest": "0.1.5" + }, + "maintainers": [ + { + "name": "deitch", + "email": "avi@deitcher.net" + } + ], + "time": { + "modified": "2011-12-12T10:00:34.720Z", + "created": "2011-10-02T14:17:07.146Z", + "0.1.0": "2011-12-07T11:06:29.978Z", + "0.1.1": "2011-12-07T11:06:29.978Z", + "0.1.2": "2011-12-07T11:06:29.978Z", + "0.1.3": "2011-12-07T11:06:29.978Z", + "0.1.4": "2011-12-07T11:06:29.978Z", + "0.1.5": "2011-12-12T10:00:34.720Z" + }, + "author": { + "name": "Avi Deitcher", + "email": "avi@deitcher.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/deitch/multiwaydb.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/multiwaydb/0.1.0", + "0.1.1": "http://registry.npmjs.org/multiwaydb/0.1.1", + "0.1.2": "http://registry.npmjs.org/multiwaydb/0.1.2", + "0.1.3": "http://registry.npmjs.org/multiwaydb/0.1.3", + "0.1.4": "http://registry.npmjs.org/multiwaydb/0.1.4", + "0.1.5": "http://registry.npmjs.org/multiwaydb/0.1.5" + }, + "dist": { + "0.1.0": { + "shasum": "3995302b010491b751d1ac86707c831852e96d0b", + "tarball": "http://registry.npmjs.org/multiwaydb/-/multiwaydb-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "dec080abcc50e3ce22b7be822b52816aa5488c28", + "tarball": "http://registry.npmjs.org/multiwaydb/-/multiwaydb-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "fc2aab8f69ef31f3b167218f3b3c401c57a44cdd", + "tarball": "http://registry.npmjs.org/multiwaydb/-/multiwaydb-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "92d031b2db38c0ddfc78d24fb6393ad41db863dc", + "tarball": "http://registry.npmjs.org/multiwaydb/-/multiwaydb-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "9e504c162588acd3b8914dd5bd39bd0406033eb1", + "tarball": "http://registry.npmjs.org/multiwaydb/-/multiwaydb-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "f83b4a27db5d64f9a49be15858ad6ec76564b295", + "tarball": "http://registry.npmjs.org/multiwaydb/-/multiwaydb-0.1.5.tgz" + } + }, + "url": "http://registry.npmjs.org/multiwaydb/" + }, + "murmurhash3": { + "name": "murmurhash3", + "description": "Node binding of MurmurHash3", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "hide_o_55", + "email": "hide.o.j55@gmail.com" + } + ], + "time": { + "modified": "2011-11-10T14:40:20.085Z", + "created": "2011-09-24T15:24:05.654Z", + "0.0.1": "2011-09-24T15:24:06.933Z", + "0.0.2": "2011-09-24T15:54:19.177Z", + "0.0.3": "2011-10-23T06:31:17.687Z", + "0.0.4": "2011-10-28T11:34:29.401Z", + "0.0.5": "2011-11-06T05:29:40.500Z", + "0.0.6": "2011-11-10T14:40:20.085Z" + }, + "author": { + "name": "Hideaki Ohno", + "email": "hide.o.j55@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/hideo55/node-murmurhash3.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/murmurhash3/0.0.1", + "0.0.2": "http://registry.npmjs.org/murmurhash3/0.0.2", + "0.0.3": "http://registry.npmjs.org/murmurhash3/0.0.3", + "0.0.4": "http://registry.npmjs.org/murmurhash3/0.0.4", + "0.0.5": "http://registry.npmjs.org/murmurhash3/0.0.5", + "0.0.6": "http://registry.npmjs.org/murmurhash3/0.0.6" + }, + "dist": { + "0.0.1": { + "shasum": "7930dc5a5cd7569b681ea8245a166c6b2e68636a", + "tarball": "http://registry.npmjs.org/murmurhash3/-/murmurhash3-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "70892d541aaa63df755ee065ae74bf10ead62510", + "tarball": "http://registry.npmjs.org/murmurhash3/-/murmurhash3-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "73c3d84470b0d0851d864d43e07bcac5de870074", + "tarball": "http://registry.npmjs.org/murmurhash3/-/murmurhash3-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "5b33c24ee8eeaa5e3f8c7c4bd70c75210165845a", + "tarball": "http://registry.npmjs.org/murmurhash3/-/murmurhash3-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "39b63220f3d1a7e1a54f5ed52b1edd81de9864ab", + "tarball": "http://registry.npmjs.org/murmurhash3/-/murmurhash3-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "e26e9af0ea88a9f405e3343bb98a2b01e0443212", + "tarball": "http://registry.npmjs.org/murmurhash3/-/murmurhash3-0.0.6.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/murmurhash3/" + }, + "muse": { + "name": "muse", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "cushman", + "email": "acushman@gmail.com" + } + ], + "time": { + "modified": "2011-03-31T19:19:21.311Z", + "created": "2011-03-31T19:19:21.188Z", + "0.0.0": "2011-03-31T19:19:21.311Z" + }, + "author": { + "name": "Adrian Cushman", + "email": "acushman@gmail.com" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/muse/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "e6a5e3ef7cbf0f06b4fea533f765f27c2de1ad9e", + "tarball": "http://registry.npmjs.org/muse/-/muse-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/muse/" + }, + "musicmetadata": { + "name": "musicmetadata", + "description": "Music metadata library for node, using pure Javascript.", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "leetreveil", + "email": "leetreveil@gmail.com" + } + ], + "author": { + "name": "Lee Treveil" + }, + "time": { + "modified": "2011-11-30T17:16:27.994Z", + "created": "2011-02-28T19:56:33.308Z", + "0.0.3": "2011-02-28T19:56:33.308Z", + "0.0.4": "2011-02-28T19:56:33.308Z", + "0.0.5": "2011-03-03T22:24:35.072Z", + "0.0.6": "2011-04-09T16:19:30.434Z", + "0.0.7": "2011-04-09T22:59:55.273Z", + "0.0.8": "2011-04-12T00:34:15.220Z", + "0.0.9": "2011-04-13T23:35:35.509Z", + "0.1.0": "2011-04-20T18:44:04.073Z", + "0.1.1": "2011-05-03T17:55:25.720Z", + "0.1.2": "2011-05-15T15:46:07.090Z", + "0.1.3": "2011-11-10T19:32:51.139Z", + "0.1.4": "2011-11-30T17:16:27.994Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/leetreveil/node-musicmetadata.git" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/musicmetadata/0.0.3", + "0.0.4": "http://registry.npmjs.org/musicmetadata/0.0.4", + "0.0.5": "http://registry.npmjs.org/musicmetadata/0.0.5", + "0.0.6": "http://registry.npmjs.org/musicmetadata/0.0.6", + "0.0.7": "http://registry.npmjs.org/musicmetadata/0.0.7", + "0.0.8": "http://registry.npmjs.org/musicmetadata/0.0.8", + "0.0.9": "http://registry.npmjs.org/musicmetadata/0.0.9", + "0.1.0": "http://registry.npmjs.org/musicmetadata/0.1.0", + "0.1.1": "http://registry.npmjs.org/musicmetadata/0.1.1", + "0.1.2": "http://registry.npmjs.org/musicmetadata/0.1.2", + "0.1.3": "http://registry.npmjs.org/musicmetadata/0.1.3", + "0.1.4": "http://registry.npmjs.org/musicmetadata/0.1.4" + }, + "dist": { + "0.0.3": { + "shasum": "e87299dce1dde206df05c00a7741667aa164e6c5", + "tarball": "http://registry.npmjs.org/musicmetadata/-/musicmetadata-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "4789b927f97819fe286ec13d85918c001dc297ec", + "tarball": "http://registry.npmjs.org/musicmetadata/-/musicmetadata-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "406e17098a616bc11e39a9b27452c73264daaa4a", + "tarball": "http://registry.npmjs.org/musicmetadata/-/musicmetadata-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "23477bde1c71c385b4719460ea07f02f7170cf82", + "tarball": "http://registry.npmjs.org/musicmetadata/-/musicmetadata-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "0be9a6a5a5aede5e5de424cb7e20700b4040326d", + "tarball": "http://registry.npmjs.org/musicmetadata/-/musicmetadata-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "e472cac3effaa3ec023ecbd1770676b977402e8d", + "tarball": "http://registry.npmjs.org/musicmetadata/-/musicmetadata-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "3343a78b53a7a0e898ba519a89f6939f5e947cbd", + "tarball": "http://registry.npmjs.org/musicmetadata/-/musicmetadata-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "f26b79a1a75a910cd589b12d75ba87e70a0e330d", + "tarball": "http://registry.npmjs.org/musicmetadata/-/musicmetadata-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "034c31ec52d5d2c188ced5d60ae99affbeeeed71", + "tarball": "http://registry.npmjs.org/musicmetadata/-/musicmetadata-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "90e06645f28b8509e5231bcf4a079c6fd45065cd", + "tarball": "http://registry.npmjs.org/musicmetadata/-/musicmetadata-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "c93af36eff19993b0e0fe9f123c3c6861f6ea8a6", + "tarball": "http://registry.npmjs.org/musicmetadata/-/musicmetadata-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "8c1fff09009b6aef4aedf9664e5414b038ffec80", + "tarball": "http://registry.npmjs.org/musicmetadata/-/musicmetadata-0.1.4.tgz" + } + }, + "url": "http://registry.npmjs.org/musicmetadata/" + }, + "mustache": { + "name": "mustache", + "description": "{{ mustache }} in JavaScript — Logic-less templates.", + "dist-tags": { + "latest": "0.3.1-dev" + }, + "maintainers": [ + { + "name": "nathan", + "email": "nrstott@gmail.com" + } + ], + "author": { + "name": "http://mustache.github.com/" + }, + "versions": { + "0.3.1-dev": "http://registry.npmjs.org/mustache/0.3.1-dev" + }, + "dist": { + "0.3.1-dev": { + "tarball": "http://packages:5984/mustache/-/mustache-0.3.1-dev.tgz" + } + }, + "keywords": [ + "template" + ], + "url": "http://registry.npmjs.org/mustache/" + }, + "mustachio": { + "name": "mustachio", + "description": "Mustache templates (with View Helpers!)", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "dandean", + "email": "me@dandean.com" + } + ], + "time": { + "modified": "2011-04-28T07:18:29.098Z", + "created": "2011-04-20T08:27:29.233Z", + "0.1.0": "2011-04-20T08:27:29.784Z", + "0.1.1": "2011-04-27T05:56:09.813Z", + "0.1.2": "2011-04-27T05:57:25.437Z", + "0.2.0": "2011-04-28T07:18:29.098Z" + }, + "author": { + "name": "Dan Dean", + "email": "@dandean", + "url": "http://dandean.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dandean/mustachio.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/mustachio/0.1.0", + "0.1.1": "http://registry.npmjs.org/mustachio/0.1.1", + "0.1.2": "http://registry.npmjs.org/mustachio/0.1.2", + "0.2.0": "http://registry.npmjs.org/mustachio/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "296b3a212bde733f818b371930fa1f336fbaf270", + "tarball": "http://registry.npmjs.org/mustachio/-/mustachio-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "d3a70f8ca12985827143b2bf2bb82bc0bdbe89e3", + "tarball": "http://registry.npmjs.org/mustachio/-/mustachio-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "cf6af38d2db8d4821cfdde93f40b77be859783dc", + "tarball": "http://registry.npmjs.org/mustachio/-/mustachio-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "5b9be2422ccb32ff8a909a1bc900b1d9075a8bae", + "tarball": "http://registry.npmjs.org/mustachio/-/mustachio-0.2.0.tgz" + } + }, + "keywords": [ + "express", + "templates", + "mustache" + ], + "url": "http://registry.npmjs.org/mustachio/" + }, + "mutex": { + "name": "mutex", + "description": "Distributed mutex for nodejs with redis backend", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "octave", + "email": "chinsay@gmail.com" + } + ], + "time": { + "modified": "2011-06-24T12:38:57.643Z", + "created": "2011-06-24T12:38:56.926Z", + "0.0.1": "2011-06-24T12:38:57.643Z" + }, + "author": { + "name": "Yuriy Bogdanov", + "email": "chinsay@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mutex/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "83fe5532d753528390d686031ef2919081b7b5ad", + "tarball": "http://registry.npmjs.org/mutex/-/mutex-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/mutex/" + }, + "muzak": { + "name": "muzak", + "description": "Command line interface for Muzak", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "bryanwoods", + "email": "bryanwoods4e@gmail.com" + } + ], + "time": { + "modified": "2011-05-11T23:38:27.779Z", + "created": "2011-05-08T22:54:34.439Z", + "0.0.1": "2011-05-08T22:54:34.616Z", + "0.0.2": "2011-05-09T03:12:57.352Z", + "0.0.3": "2011-05-09T04:18:35.428Z", + "0.0.4": "2011-05-11T23:38:27.779Z" + }, + "author": { + "name": "Bryan Woods", + "email": "bryan@howaboutwe.com", + "url": "http://bryanwoods4e.com" + }, + "repository": { + "url": "git://github.com/bryanwoods/muzak-cli.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/muzak/0.0.1", + "0.0.2": "http://registry.npmjs.org/muzak/0.0.2", + "0.0.3": "http://registry.npmjs.org/muzak/0.0.3", + "0.0.4": "http://registry.npmjs.org/muzak/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "8cfb6252455839afd891f58e3ae3b207c9cb546d", + "tarball": "http://registry.npmjs.org/muzak/-/muzak-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "8da719c0b0ff8c26b2c5a0787cbf2f67ab612ae5", + "tarball": "http://registry.npmjs.org/muzak/-/muzak-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "81fb9f01fe057343c1dfaa595e137e07eafecb9e", + "tarball": "http://registry.npmjs.org/muzak/-/muzak-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "1a812a77301f7c25c235cbde200fc6d39ab2d8ab", + "tarball": "http://registry.npmjs.org/muzak/-/muzak-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/muzak/" + }, + "mvc": { + "name": "mvc", + "description": "MVC is an additional frameowork layer based on express for larger sites.", + "dist-tags": { + "latest": "0.0.9" + }, + "maintainers": [ + { + "name": "kof", + "email": "oleg008@gmail.com" + } + ], + "time": { + "modified": "2011-09-20T18:13:40.068Z", + "created": "2011-01-20T01:36:12.538Z", + "0.0.1": "2011-01-20T01:36:13.059Z", + "0.0.2": "2011-03-16T14:44:57.500Z", + "0.0.4": "2011-03-25T14:25:09.240Z", + "0.0.3": "2011-03-25T15:05:44.961Z", + "0.0.5": "2011-06-01T17:45:37.684Z", + "0.0.6": "2011-09-12T12:36:07.790Z", + "0.0.7": "2011-09-12T18:06:42.491Z", + "0.0.8": "2011-09-20T18:07:22.543Z", + "0.0.9": "2011-09-20T18:13:40.068Z" + }, + "author": { + "name": "Oleg Slobodskoi", + "email": "oleg008@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/kof/node-mvc.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mvc/0.0.1", + "0.0.2": "http://registry.npmjs.org/mvc/0.0.2", + "0.0.3": "http://registry.npmjs.org/mvc/0.0.3", + "0.0.4": "http://registry.npmjs.org/mvc/0.0.4", + "0.0.5": "http://registry.npmjs.org/mvc/0.0.5", + "0.0.6": "http://registry.npmjs.org/mvc/0.0.6", + "0.0.7": "http://registry.npmjs.org/mvc/0.0.7", + "0.0.8": "http://registry.npmjs.org/mvc/0.0.8", + "0.0.9": "http://registry.npmjs.org/mvc/0.0.9" + }, + "dist": { + "0.0.1": { + "shasum": "0d9c4ccf1b1a194f83d81b009576076399d581c1", + "tarball": "http://registry.npmjs.org/mvc/-/mvc-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "1f098bff428be109ccef40727833747c29e6d3a9", + "tarball": "http://registry.npmjs.org/mvc/-/mvc-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "0f5eac2ce44e0ade194e93e8de00d9f90f25a921", + "tarball": "http://registry.npmjs.org/mvc/-/mvc-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "1e77675ae8be50bb2b31ab647f8113f735ba1b2f", + "tarball": "http://registry.npmjs.org/mvc/-/mvc-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "2b71ee8e24bb2ba70da7531848f9e0855f6a7c30", + "tarball": "http://registry.npmjs.org/mvc/-/mvc-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "c4ea77725b43824158794478f88a7303d97f189e", + "tarball": "http://registry.npmjs.org/mvc/-/mvc-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "00da443a2a8fa506fc67ed1c9fac38347692ba6e", + "tarball": "http://registry.npmjs.org/mvc/-/mvc-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "98f84cf10af04e7f35a7f8b0854db7c2996d2b7f", + "tarball": "http://registry.npmjs.org/mvc/-/mvc-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "ab719c866e47b6ed79b0317d1357427269ee0986", + "tarball": "http://registry.npmjs.org/mvc/-/mvc-0.0.9.tgz" + } + }, + "keywords": [ + "framework", + "mvc", + "express", + "connect" + ], + "url": "http://registry.npmjs.org/mvc/" + }, + "mvc.coffee": { + "name": "mvc.coffee", + "description": "Idiomatic wrapper around Backbone.js structured in CoffeeScript classes.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "philcockfield", + "email": "phil@cockfield.net" + } + ], + "time": { + "modified": "2011-07-14T21:18:19.459Z", + "created": "2011-07-14T21:18:18.953Z", + "0.0.1": "2011-07-14T21:18:19.459Z" + }, + "author": { + "name": "Phil Cockfield", + "url": "https://github.com/philcockfield" + }, + "repository": { + "type": "git", + "url": "git@github.com:philcockfield/open.core.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mvc.coffee/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "875f66ae421b87c02af0e7847f65c50b2fe78a26", + "tarball": "http://registry.npmjs.org/mvc.coffee/-/mvc.coffee-0.0.1.tgz" + } + }, + "keywords": [ + "mvc", + "backbone", + "coffeescript" + ], + "url": "http://registry.npmjs.org/mvc.coffee/" + }, + "mw-pipes": { + "name": "mw-pipes", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-12-09T03:07:31.695Z", + "created": "2011-11-24T11:34:27.494Z", + "0.0.0": "2011-11-24T11:34:30.605Z", + "0.0.1": "2011-12-09T03:07:31.695Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/dominictarr/mw-pipes.git" + }, + "description": "connect middleware with piping", + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/mw-pipes/0.0.0", + "0.0.1": "http://registry.npmjs.org/mw-pipes/0.0.1" + }, + "dist": { + "0.0.0": { + "shasum": "5477c3f62f4722a3d6190c9c72bf29cf926fc09e", + "tarball": "http://registry.npmjs.org/mw-pipes/-/mw-pipes-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "191a88f2037b63e6fd8c201b442803422afe6c1a", + "tarball": "http://registry.npmjs.org/mw-pipes/-/mw-pipes-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/mw-pipes/" + }, + "my511": { + "name": "my511", + "description": "Get realtime bus information for the San Francisco Bay Area (via my511.org)", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "mertonium", + "email": "john.mertens\b\b@gmail.com" + } + ], + "time": { + "modified": "2011-09-24T08:24:30.401Z", + "created": "2011-09-24T08:24:29.470Z", + "0.0.1": "2011-09-24T08:24:30.401Z" + }, + "author": { + "name": "John Mertens", + "email": "john@mertonium.com", + "url": "http://mertonium.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mertonium/my511-node.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/my511/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "ea665211d336ad98fcc890bc4a59445dc493b885", + "tarball": "http://registry.npmjs.org/my511/-/my511-0.0.1.tgz" + } + }, + "keywords": [ + "transit", + "san francisco", + "real", + "time", + "bus" + ], + "url": "http://registry.npmjs.org/my511/" + }, + "mypackage": { + "name": "mypackage", + "description": "This is my first package", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "keyjam", + "email": "endou.ikeda@gmail.com" + } + ], + "time": { + "modified": "2011-04-21T07:14:53.021Z", + "created": "2011-04-21T07:14:52.216Z", + "0.1.0": "2011-04-21T07:14:53.021Z" + }, + "author": { + "name": "Yohei Sasaki", + "email": "yssk22@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/yssk22/mypackage.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/mypackage/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "b6ee822276cf46414ec2c04633d500f5be2eebe3", + "tarball": "http://registry.npmjs.org/mypackage/-/mypackage-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/mypackage/" + }, + "mypakege": { + "name": "mypakege", + "description": "This is my first package", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "keyjam", + "email": "endou.ikeda@gmail.com" + } + ], + "time": { + "modified": "2011-04-20T12:36:04.743Z", + "created": "2011-04-20T12:36:03.915Z", + "0.1.0": "2011-04-20T12:36:04.743Z" + }, + "author": { + "name": "keyjam @keyjams" + }, + "repository": { + "type": "git", + "url": "git://github.com/keyjam/mypackage.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/mypakege/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "7123774acef70537a0d1b651240c1e7bd264b8f8", + "tarball": "http://registry.npmjs.org/mypakege/-/mypakege-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/mypakege/" + }, + "myrtle-parser": { + "name": "myrtle-parser", + "description": "A parser for a simple declarative DSL syntax.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "lfdoherty", + "email": "lfdoherty@gmail.com" + } + ], + "time": { + "modified": "2011-07-12T06:52:02.449Z", + "created": "2011-07-12T06:52:01.920Z", + "0.1.0": "2011-07-12T06:52:02.449Z" + }, + "author": { + "name": "Liam Doherty" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/myrtle-parser/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "09af5db3525a18d1518909c790beef41f44093b6", + "tarball": "http://registry.npmjs.org/myrtle-parser/-/myrtle-parser-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/myrtle-parser/" + }, + "mysql": { + "name": "mysql", + "dist-tags": { + "latest": "0.9.5" + }, + "maintainers": [ + { + "name": "felixge", + "email": "felix@debuggable.com" + } + ], + "time": { + "modified": "2011-11-26T11:36:52.349Z", + "created": "2011-01-03T23:04:56.752Z", + "0.1.0": "2011-01-03T23:04:56.752Z", + "0.2.0": "2011-01-03T23:04:56.752Z", + "0.3.0": "2011-01-03T23:04:56.752Z", + "0.4.0": "2011-01-03T23:04:56.752Z", + "0.5.0": "2011-01-03T23:04:56.752Z", + "0.6.0": "2011-01-03T23:04:56.752Z", + "0.7.0": "2011-01-03T23:04:56.752Z", + "0.8.0": "2011-01-03T23:04:56.752Z", + "0.9.0": "2011-01-03T23:04:56.752Z", + "0.9.1": "2011-02-20T14:01:06.807Z", + "0.9.2": "2011-08-07T13:27:59.314Z", + "0.9.3": "2011-08-22T13:56:14.363Z", + "0.9.4": "2011-08-31T14:54:08.105Z", + "0.9.5": "2011-11-26T11:36:52.349Z" + }, + "description": "A pure node.js JavaScript Client implementing the MySQL protocol.", + "author": { + "name": "Felix Geisendörfer", + "email": "felix@debuggable.com", + "url": "http://debuggable.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/felixge/node-mysql.git" + }, + "users": { + "dresende": true + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/mysql/0.1.0", + "0.2.0": "http://registry.npmjs.org/mysql/0.2.0", + "0.3.0": "http://registry.npmjs.org/mysql/0.3.0", + "0.4.0": "http://registry.npmjs.org/mysql/0.4.0", + "0.5.0": "http://registry.npmjs.org/mysql/0.5.0", + "0.6.0": "http://registry.npmjs.org/mysql/0.6.0", + "0.7.0": "http://registry.npmjs.org/mysql/0.7.0", + "0.8.0": "http://registry.npmjs.org/mysql/0.8.0", + "0.9.0": "http://registry.npmjs.org/mysql/0.9.0", + "0.9.1": "http://registry.npmjs.org/mysql/0.9.1", + "0.9.2": "http://registry.npmjs.org/mysql/0.9.2", + "0.9.3": "http://registry.npmjs.org/mysql/0.9.3", + "0.9.4": "http://registry.npmjs.org/mysql/0.9.4", + "0.9.5": "http://registry.npmjs.org/mysql/0.9.5" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/mysql/-/mysql-0.1.0.tgz" + }, + "0.2.0": { + "tarball": "http://packages:5984/mysql/-/mysql-0.2.0.tgz" + }, + "0.3.0": { + "tarball": "http://packages:5984/mysql/-/mysql-0.3.0.tgz" + }, + "0.4.0": { + "tarball": "http://packages:5984/mysql/-/mysql-0.4.0.tgz" + }, + "0.5.0": { + "tarball": "http://packages:5984/mysql/-/mysql-0.5.0.tgz" + }, + "0.6.0": { + "tarball": "http://packages:5984/mysql/-/mysql-0.6.0.tgz" + }, + "0.7.0": { + "tarball": "http://packages:5984/mysql/-/mysql-0.7.0.tgz" + }, + "0.8.0": { + "tarball": "http://packages:5984/mysql/-/mysql-0.8.0.tgz" + }, + "0.9.0": { + "shasum": "bda6399589d4d09d607fc66edbe8caae6b74f11b", + "tarball": "http://registry.npmjs.org/mysql/-/mysql-0.9.0.tgz" + }, + "0.9.1": { + "shasum": "4f240429f60343c9e6cb6717feab072f64ca45d2", + "tarball": "http://registry.npmjs.org/mysql/-/mysql-0.9.1.tgz" + }, + "0.9.2": { + "shasum": "dee0266ec287fdca7871a91240aa77be23bdc1b7", + "tarball": "http://registry.npmjs.org/mysql/-/mysql-0.9.2.tgz" + }, + "0.9.3": { + "shasum": "b1f81b6d6644e979f5460f2bb9f5cf25eeeb4d22", + "tarball": "http://registry.npmjs.org/mysql/-/mysql-0.9.3.tgz" + }, + "0.9.4": { + "shasum": "f62b72f0af537fc511b694d256fdcdb86b2e9951", + "tarball": "http://registry.npmjs.org/mysql/-/mysql-0.9.4.tgz" + }, + "0.9.5": { + "shasum": "cc95e1c31d0653974d3fb3e9266ed466cd0f96b5", + "tarball": "http://registry.npmjs.org/mysql/-/mysql-0.9.5.tgz" + } + }, + "url": "http://registry.npmjs.org/mysql/" + }, + "mysql_node_orm": { + "name": "mysql_node_orm", + "description": "A simple ActiveRecord like nodejs module for mysql", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "# mysql_node_orm\n\n## Purpose\n\nA simple `ActiveRecord` like nodejs module for `mysql` database.\n\nIt supports `has_many` and `belongs_to` relationship.\n\nYou can `find` and `find_by*` each field name.\n\n**Important**: it works synchronously.\n\n## Introduction\n\nThis module is based on Sannis's [node-mysql-libmysqlclient](https://github.com/Sannis/node-mysql-libmysqlclient).\n\nMysql_node_orm adds some simple features as ActiveRecord does.\n\nI'm working on it and I would to expand it also with your help.\n\nSo, do not hesitate to contact me for any question or doubts\n\nMy mind is open for any collaboration ;)\n\n## Installation\n\nFor installing this module use\n\n```\nnpm install mysql_node_orm\n```\n\n## Usage\n\nSee files in the `spec` folder for examples\n\n\n## Overview\nHaving a DB as ActiveRecord on Rails wants.\nYou can able to perform `select` `insert` and `update` using `Models` like instances.\n\n```javascript\nvar DataType = require('mysql_node_orm/lib/datatype');\nvar Adapter = require('mysql_node_orm');\n\nvar Author = Adapter.declare('Author', {\n has_many: ['Book'],\n destroy: [ 'Book' ],\n fields: {\n name: {\n type: DataType.String,\n unique: true\n },\n age: {\n type: DataType.Int\n }\n }\n});\n\nBook = Adapter.declare('Book', {\n belongs_to: ['Author'],\n fields: {\n name: {\n type: DataType.String\n },\n pages_number: {\n type: DataType.Int\n }\n },\n methods:{\n foo: function(bar){\n this.test();\n return 'foobar ' + bar;\n },\n test: function(){\n return 'test method'\n }\n }\n});\n\nvar author = Author.find( 1 );\nvar books = author.books\n\nbook = new Book({\n name: 'Foobar book'\n});\n\nbook.pages_number = 1024;\n\nbooks.push( book );\n\nauthor.save( true );\n\nAdapter.close();\n```\n\n\n### Adapter(host, user, pwd, database, port)\n* it is the main class\n\n```javascript\nvar Adapter = require('mysql_node_orm');\nvar adapter = new Adapter( 'localhost', 'root', 'password', 'db_name', 3306);\n```\n\n\n### DataType (used to declare the fields)\n* DataType.String # the VARCHAR type\n* DataType.Int # the INT type\n* DataType.Boolean # the TYNINT type\n\n`(tmporarly incompleted)`\n\n```javascript\n// To use the datatype\nvar DataType = require('mysql_node_orm/lib/datatype')\n```\n\n### Model\n\n(Static methods)\n\n* `Model.find( id /* as NUM */ )` # returns the instance of the model if found. Otherwise null\n* `Model.find( 'all' )` # returns an Array instance contaning all model found by performing the `select`. Empty array if no record found\n* `Model.find( 'first' )` # returns the instance of the model representing the first matched record if found. Otherwise null\n* `Model.find_by( where, options, limit )`\n#### where (Object)\n ```javascipt\n where = {\n field_foo_name: field_foo_value,\n field_bar_name: field_bar_value,\n }\n ```\n#### options (Object)\n ```javascript\n options = {\n includes: ['table_foo_name', 'table_bar_name'],\n joins: {\n table_foo_name: { // INNER JOIN table_foo_name\n field_bar_name: { // ON field_bar_name\n table_xxxx_name: 'field_xxxx_name' // = table_xxxx_name.field_xxxx_name\n }\n }\n }\n }\n ```\n#### limit (Number) Used as `LIMIT` sql condition\n\n* `Model.find_by_foo_field_name( value )` # return an Array containing the result of `select * from table_foo_name where FOO_FIELD_NAME = VALUE`. A single Model instance if field is declared as unique\n\n\n## Todo\n\nWhat I'm going to do:\n\n* has_many_through relations\n* DataType conversion\n* migrations\n\n* More documentation is coming... ;)\n\n\n## Done\n* Delete model and its `dependencies`\n* Implement events\n* Fields validation", + "maintainers": [ + { + "name": "fatshotty", + "email": "fat@fatshotty.net" + } + ], + "time": { + "modified": "2011-12-09T23:49:00.383Z", + "created": "2011-12-09T23:48:58.887Z", + "0.0.1": "2011-12-09T23:49:00.383Z" + }, + "author": { + "name": "Fatshotty", + "email": "fat@fatshotty.net", + "url": "https://github.com/fatshotty" + }, + "repository": { + "type": "git", + "url": "git://github.com/fatshotty/mysql_node_orm.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mysql_node_orm/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "d8d96b4f783d100557d6d3255b60196945fc76c5", + "tarball": "http://registry.npmjs.org/mysql_node_orm/-/mysql_node_orm-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/mysql_node_orm/" + }, + "mysql-activerecord": { + "name": "mysql-activerecord", + "dist-tags": { + "latest": "0.5.2" + }, + "maintainers": [ + { + "name": "martin.tajur", + "email": "martin@tajur.ee" + } + ], + "time": { + "modified": "2011-11-03T13:36:45.935Z", + "created": "2011-08-04T10:46:15.593Z", + "0.1.1": "2011-08-04T10:46:16.030Z", + "0.1.2": "2011-08-04T11:00:38.345Z", + "0.2.1": "2011-08-04T11:09:20.980Z", + "0.2.9": "2011-08-08T12:53:11.141Z", + "0.3.1": "2011-09-05T17:35:06.119Z", + "0.3.2": "2011-09-05T17:54:23.668Z", + "0.3.3": "2011-09-05T17:55:26.265Z", + "0.3.4": "2011-09-06T06:14:54.631Z", + "0.3.5": "2011-10-17T17:52:24.804Z", + "0.3.6": "2011-10-17T17:53:04.130Z", + "0.4.1": "2011-11-02T17:28:21.882Z", + "0.5.1": "2011-11-03T13:22:36.414Z", + "0.5.2": "2011-11-03T13:36:45.935Z" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/mysql-activerecord/0.1.1", + "0.1.2": "http://registry.npmjs.org/mysql-activerecord/0.1.2", + "0.2.1": "http://registry.npmjs.org/mysql-activerecord/0.2.1", + "0.2.9": "http://registry.npmjs.org/mysql-activerecord/0.2.9", + "0.3.1": "http://registry.npmjs.org/mysql-activerecord/0.3.1", + "0.3.2": "http://registry.npmjs.org/mysql-activerecord/0.3.2", + "0.3.3": "http://registry.npmjs.org/mysql-activerecord/0.3.3", + "0.3.4": "http://registry.npmjs.org/mysql-activerecord/0.3.4", + "0.3.5": "http://registry.npmjs.org/mysql-activerecord/0.3.5", + "0.3.6": "http://registry.npmjs.org/mysql-activerecord/0.3.6", + "0.4.1": "http://registry.npmjs.org/mysql-activerecord/0.4.1", + "0.5.1": "http://registry.npmjs.org/mysql-activerecord/0.5.1", + "0.5.2": "http://registry.npmjs.org/mysql-activerecord/0.5.2" + }, + "dist": { + "0.1.1": { + "shasum": "c59881be958a22427e916775d5754d99d0e830f2", + "tarball": "http://registry.npmjs.org/mysql-activerecord/-/mysql-activerecord-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "6b1703aaf26b932df19360492592202c9315fedd", + "tarball": "http://registry.npmjs.org/mysql-activerecord/-/mysql-activerecord-0.1.2.tgz" + }, + "0.2.1": { + "shasum": "121f5dd8d0736e36f7b6a659b2fa9fba43935af6", + "tarball": "http://registry.npmjs.org/mysql-activerecord/-/mysql-activerecord-0.2.1.tgz" + }, + "0.2.9": { + "shasum": "8b55761781d9caa17d1f01d226140c8e037522f8", + "tarball": "http://registry.npmjs.org/mysql-activerecord/-/mysql-activerecord-0.2.9.tgz" + }, + "0.3.1": { + "shasum": "a7d6e53e73c2fe4a50a5361a03762650045e10f2", + "tarball": "http://registry.npmjs.org/mysql-activerecord/-/mysql-activerecord-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "19e2815aee53679ebc662a6feda4c9929f808849", + "tarball": "http://registry.npmjs.org/mysql-activerecord/-/mysql-activerecord-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "1700aa0fe89ca4927aefe199e63f281ae2f57f90", + "tarball": "http://registry.npmjs.org/mysql-activerecord/-/mysql-activerecord-0.3.3.tgz" + }, + "0.3.4": { + "shasum": "68b12c8f2c3ee0d4f135d5dfa032c15ba6a9231a", + "tarball": "http://registry.npmjs.org/mysql-activerecord/-/mysql-activerecord-0.3.4.tgz" + }, + "0.3.5": { + "shasum": "4340b878a9f880a62a456ddb029b922d07469dec", + "tarball": "http://registry.npmjs.org/mysql-activerecord/-/mysql-activerecord-0.3.5.tgz" + }, + "0.3.6": { + "shasum": "37e4eb36ee206744b4a3f132fac86372eab9bc81", + "tarball": "http://registry.npmjs.org/mysql-activerecord/-/mysql-activerecord-0.3.6.tgz" + }, + "0.4.1": { + "shasum": "f2edad8d768e94abb93970f7db5b54c00a6af42f", + "tarball": "http://registry.npmjs.org/mysql-activerecord/-/mysql-activerecord-0.4.1.tgz" + }, + "0.5.1": { + "shasum": "014c3401a361ed3b705d6478cdc9f34fe2c35297", + "tarball": "http://registry.npmjs.org/mysql-activerecord/-/mysql-activerecord-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "75cf818a542c377bfe293e888f964383593b78d7", + "tarball": "http://registry.npmjs.org/mysql-activerecord/-/mysql-activerecord-0.5.2.tgz" + } + }, + "url": "http://registry.npmjs.org/mysql-activerecord/" + }, + "mysql-bindings-benchmarks": { + "name": "mysql-bindings-benchmarks", + "description": "Node.js MySQL bindings benchmarks", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "Sannis", + "email": "efimovov@gmail.com" + } + ], + "time": { + "modified": "2011-11-29T21:48:26.215Z", + "created": "2011-11-29T21:48:24.499Z", + "0.2.0": "2011-11-29T21:48:26.215Z" + }, + "author": { + "name": "Oleg Efimov", + "email": "efimovov@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Sannis/node-mysql-bindings-benchmarks.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/mysql-bindings-benchmarks/0.2.0" + }, + "dist": { + "0.2.0": { + "shasum": "a5bde2a68262608f641fbeefabce596095b7c763", + "tarball": "http://registry.npmjs.org/mysql-bindings-benchmarks/-/mysql-bindings-benchmarks-0.2.0.tgz" + } + }, + "keywords": [ + "mysql", + "sql", + "database", + "benchmark" + ], + "url": "http://registry.npmjs.org/mysql-bindings-benchmarks/" + }, + "mysql-client": { + "name": "mysql-client", + "description": "A full-featured mysql client for node", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "Sebmaster", + "email": "sebastian.mayr@kabsi.at" + } + ], + "time": { + "modified": "2011-03-14T01:38:34.664Z", + "created": "2011-02-10T00:00:11.342Z", + "0.2.0": "2011-02-10T00:00:11.780Z", + "0.3.0": "2011-03-14T01:38:34.665Z" + }, + "author": { + "name": "Sebastian Mayr" + }, + "repository": { + "type": "git", + "url": "git://github.com/Sebmaster/mysqlcl.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/mysql-client/0.2.0", + "0.3.0": "http://registry.npmjs.org/mysql-client/0.3.0" + }, + "dist": { + "0.2.0": { + "shasum": "e826588a70727aacd9a517c8635ed276c890f62c", + "tarball": "http://registry.npmjs.org/mysql-client/-/mysql-client-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "9995e623e21aaada07d77e6981d3bafb3df4087c", + "tarball": "http://registry.npmjs.org/mysql-client/-/mysql-client-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/mysql-client/" + }, + "mysql-getter": { + "name": "mysql-getter", + "description": "Very simple resource pooling for MySQL connections", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "deoxxa", + "email": "deoxxa@fknsrs.biz" + } + ], + "time": { + "modified": "2011-12-03T11:34:18.185Z", + "created": "2011-11-02T04:39:43.051Z", + "0.0.1": "2011-11-02T04:42:10.500Z", + "0.0.2": "2011-12-03T11:34:18.185Z" + }, + "author": { + "name": "Conrad Pankoff", + "email": "deoxxa@fknsrs.biz", + "url": "http://www.fknsrs.biz/" + }, + "repository": { + "type": "git", + "url": "git://github.com/deoxxa/node-mysql-getter.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mysql-getter/0.0.1", + "0.0.2": "http://registry.npmjs.org/mysql-getter/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "e6d40a8d885b0d026aa113aae1b2fffba4b8df89", + "tarball": "http://registry.npmjs.org/mysql-getter/-/mysql-getter-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "71ffe9c9deac77020dad6badf0843d3b740195a0", + "tarball": "http://registry.npmjs.org/mysql-getter/-/mysql-getter-0.0.2.tgz" + } + }, + "keywords": [ + "mysql", + "pool" + ], + "url": "http://registry.npmjs.org/mysql-getter/" + }, + "mysql-helper": { + "name": "mysql-helper", + "description": "Simple wrapper for felixge's node-mysql", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "drewlesueur", + "email": "drewalex@gmail.com" + } + ], + "time": { + "modified": "2011-04-26T05:29:59.445Z", + "created": "2011-04-26T05:29:59.303Z", + "0.0.1": "2011-04-26T05:29:59.445Z" + }, + "author": { + "name": "Drew LeSueur", + "email": "drewalex@gmail.com", + "url": "http://twitter.com/drewlesueur" + }, + "repository": { + "type": "git", + "url": "git@github.com:drewlesueur/mysql-helper.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mysql-helper/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "962ff62e21086b0a911c2e247b2f5a4d5cf2fe6d", + "tarball": "http://registry.npmjs.org/mysql-helper/-/mysql-helper-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/mysql-helper/" + }, + "mysql-libmysqlclient": { + "name": "mysql-libmysqlclient", + "description": "Binary MySQL bindings for Node.JS", + "dist-tags": { + "stable": "1.1.1", + "latest": "1.2.9" + }, + "maintainers": [ + { + "name": "Sannis", + "email": "efimovov@gmail.com" + } + ], + "repository": { + "type": "git", + "url": "http://github.com/Sannis/node-mysql-libmysqlclient" + }, + "time": { + "modified": "2011-11-21T23:22:10.674Z", + "created": "2011-01-26T17:47:16.728Z", + "0.0.10": "2011-01-26T17:47:16.728Z", + "0.0.7": "2011-01-26T17:47:16.728Z", + "0.0.8": "2011-01-26T17:47:16.728Z", + "0.0.9": "2011-01-26T17:47:16.728Z", + "1.0.0": "2011-01-26T17:47:16.728Z", + "1.0.1": "2011-01-26T17:47:16.728Z", + "1.0.2": "2011-01-26T17:47:16.728Z", + "1.0.3": "2011-01-26T17:47:16.728Z", + "1.1.0": "2011-01-26T17:47:16.728Z", + "1.1.1": "2011-01-26T17:47:16.728Z", + "1.2.0": "2011-01-26T17:47:16.728Z", + "1.2.1": "2011-02-04T12:44:45.048Z", + "1.2.2": "2011-02-21T22:15:49.771Z", + "1.2.3": "2011-02-22T23:05:19.957Z", + "1.2.4": "2011-10-14T17:56:04.942Z", + "1.2.5": "2011-10-27T21:06:44.035Z", + "1.2.6": "2011-10-28T14:36:49.893Z", + "1.2.7": "2011-11-05T19:35:26.045Z", + "1.2.8": "2011-11-21T23:18:31.242Z", + "1.2.9": "2011-11-21T23:22:10.674Z" + }, + "author": { + "name": "Oleg Efimov", + "email": "efimovov@gmail.com" + }, + "versions": { + "0.0.10": "http://registry.npmjs.org/mysql-libmysqlclient/0.0.10", + "0.0.7": "http://registry.npmjs.org/mysql-libmysqlclient/0.0.7", + "0.0.8": "http://registry.npmjs.org/mysql-libmysqlclient/0.0.8", + "0.0.9": "http://registry.npmjs.org/mysql-libmysqlclient/0.0.9", + "1.0.0": "http://registry.npmjs.org/mysql-libmysqlclient/1.0.0", + "1.0.1": "http://registry.npmjs.org/mysql-libmysqlclient/1.0.1", + "1.0.2": "http://registry.npmjs.org/mysql-libmysqlclient/1.0.2", + "1.0.3": "http://registry.npmjs.org/mysql-libmysqlclient/1.0.3", + "1.1.0": "http://registry.npmjs.org/mysql-libmysqlclient/1.1.0", + "1.1.1": "http://registry.npmjs.org/mysql-libmysqlclient/1.1.1", + "1.2.1": "http://registry.npmjs.org/mysql-libmysqlclient/1.2.1", + "1.2.2": "http://registry.npmjs.org/mysql-libmysqlclient/1.2.2", + "1.2.3": "http://registry.npmjs.org/mysql-libmysqlclient/1.2.3", + "1.2.4": "http://registry.npmjs.org/mysql-libmysqlclient/1.2.4", + "1.2.7": "http://registry.npmjs.org/mysql-libmysqlclient/1.2.7", + "1.2.8": "http://registry.npmjs.org/mysql-libmysqlclient/1.2.8", + "1.2.9": "http://registry.npmjs.org/mysql-libmysqlclient/1.2.9" + }, + "dist": { + "0.0.10": { + "tarball": "http://registry.npmjs.org/mysql-libmysqlclient/-/mysql-libmysqlclient-0.0.10.tgz" + }, + "0.0.7": { + "tarball": "http://registry.npmjs.org/mysql-libmysqlclient/-/mysql-libmysqlclient-0.0.7.tgz" + }, + "0.0.8": { + "tarball": "http://registry.npmjs.org/mysql-libmysqlclient/-/mysql-libmysqlclient-0.0.8.tgz" + }, + "0.0.9": { + "tarball": "http://registry.npmjs.org/mysql-libmysqlclient/-/mysql-libmysqlclient-0.0.9.tgz" + }, + "1.0.0": { + "tarball": "http://registry.npmjs.org/mysql-libmysqlclient/-/mysql-libmysqlclient-1.0.0.tgz" + }, + "1.0.1": { + "tarball": "http://registry.npmjs.org/mysql-libmysqlclient/-/mysql-libmysqlclient-1.0.1.tgz" + }, + "1.0.2": { + "tarball": "http://registry.npmjs.org/mysql-libmysqlclient/-/mysql-libmysqlclient-1.0.2.tgz" + }, + "1.0.3": { + "tarball": "http://registry.npmjs.org/mysql-libmysqlclient/-/mysql-libmysqlclient-1.0.3.tgz" + }, + "1.1.0": { + "shasum": "f4bb70b5938fc7070030f9f2c30b14602c0e8674", + "tarball": "http://registry.npmjs.org/mysql-libmysqlclient/-/mysql-libmysqlclient-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "241a614b17edc2e9d055dce8e998db2f48ab6e38", + "tarball": "http://registry.npmjs.org/mysql-libmysqlclient/-/mysql-libmysqlclient-1.1.1.tgz" + }, + "1.2.1": { + "shasum": "7e6e09bab1b445516665d63ef11cf4268f477598", + "tarball": "http://registry.npmjs.org/mysql-libmysqlclient/-/mysql-libmysqlclient-1.2.1.tgz" + }, + "1.2.2": { + "shasum": "cf6d951f906facfd717fd54706e24979842f82bc", + "tarball": "http://registry.npmjs.org/mysql-libmysqlclient/-/mysql-libmysqlclient-1.2.2.tgz" + }, + "1.2.3": { + "shasum": "ff95c0181647746b9a662c72a722a858fcaf79fe", + "tarball": "http://registry.npmjs.org/mysql-libmysqlclient/-/mysql-libmysqlclient-1.2.3.tgz" + }, + "1.2.4": { + "shasum": "a9b28f9a2fd5d14c42df978ce7fd436e31f5c100", + "tarball": "http://registry.npmjs.org/mysql-libmysqlclient/-/mysql-libmysqlclient-1.2.4.tgz" + }, + "1.2.7": { + "shasum": "f5eeea34cbbb504840f579e7f1cd957981af461b", + "tarball": "http://registry.npmjs.org/mysql-libmysqlclient/-/mysql-libmysqlclient-1.2.7.tgz" + }, + "1.2.8": { + "shasum": "721224cfa1f9ac284c653b1e2e49b122e078572a", + "tarball": "http://registry.npmjs.org/mysql-libmysqlclient/-/mysql-libmysqlclient-1.2.8.tgz" + }, + "1.2.9": { + "shasum": "3c912bdc8a82edcac7d85957fa0ddb78127b5e86", + "tarball": "http://registry.npmjs.org/mysql-libmysqlclient/-/mysql-libmysqlclient-1.2.9.tgz" + } + }, + "keywords": [ + "mysql", + "libmysqlclient", + "sql", + "database", + "addon" + ], + "url": "http://registry.npmjs.org/mysql-libmysqlclient/" + }, + "mysql-native": { + "name": "mysql-native", + "dist-tags": { + "latest": "0.4.3" + }, + "maintainers": [ + { + "name": "sidorares", + "email": "sidorares@yandex.ru" + } + ], + "description": "MySql protocol client for Node.Js", + "time": { + "modified": "2011-06-10T15:13:17.807Z", + "created": "2011-03-21T13:54:21.144Z", + "0.4.0": "2011-03-21T13:54:21.144Z", + "0.4.1": "2011-03-21T13:54:21.144Z", + "0.4.2": "2011-03-21T13:54:21.144Z", + "0.4.3": "2011-06-10T15:13:17.807Z" + }, + "versions": { + "0.4.0": "http://registry.npmjs.org/mysql-native/0.4.0", + "0.4.1": "http://registry.npmjs.org/mysql-native/0.4.1", + "0.4.2": "http://registry.npmjs.org/mysql-native/0.4.2", + "0.4.3": "http://registry.npmjs.org/mysql-native/0.4.3" + }, + "dist": { + "0.4.0": { + "tarball": "http://packages:5984/mysql-native/-/mysql-native-0.4.0.tgz" + }, + "0.4.1": { + "tarball": "http://packages:5984/mysql-native/-/mysql-native-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "2c641ae7a038b5e01da55f5d10805bfbc82f5bdb", + "tarball": "http://registry.npmjs.org/mysql-native/-/mysql-native-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "6d3f0a6c93e4edc15e153b07d827e596b08a100c", + "tarball": "http://registry.npmjs.org/mysql-native/-/mysql-native-0.4.3.tgz" + } + }, + "url": "http://registry.npmjs.org/mysql-native/" + }, + "mysql-native-prerelease": { + "name": "mysql-native-prerelease", + "description": "MySql protocol client for Node.Js", + "dist-tags": { + "latest": "1.4.2" + }, + "maintainers": [ + { + "name": "chrisdew", + "email": "cmsdew@gmail.com" + } + ], + "time": { + "modified": "2011-04-30T15:20:57.879Z", + "created": "2011-03-21T09:47:25.387Z", + "0.4.2": "2011-03-21T09:47:25.636Z", + "0.4.3": "2011-04-27T07:45:44.563Z", + "1.4.2": "2011-04-30T15:20:57.879Z" + }, + "versions": { + "0.4.2": "http://registry.npmjs.org/mysql-native-prerelease/0.4.2", + "0.4.3": "http://registry.npmjs.org/mysql-native-prerelease/0.4.3", + "1.4.2": "http://registry.npmjs.org/mysql-native-prerelease/1.4.2" + }, + "dist": { + "0.4.2": { + "shasum": "e09eb98ae3c4883151dacfa59d30694317357950", + "tarball": "http://registry.npmjs.org/mysql-native-prerelease/-/mysql-native-prerelease-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "ea16e3bb9d18f4419b2ac645c0132bb544f902b6", + "tarball": "http://registry.npmjs.org/mysql-native-prerelease/-/mysql-native-prerelease-0.4.3.tgz" + }, + "1.4.2": { + "shasum": "d30c18035b89ca0a47924e94684068a72f20bf10", + "tarball": "http://registry.npmjs.org/mysql-native-prerelease/-/mysql-native-prerelease-1.4.2.tgz" + } + }, + "url": "http://registry.npmjs.org/mysql-native-prerelease/" + }, + "mysql-oil": { + "name": "mysql-oil", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "rentzsch", + "email": "jwr.git@redshed.net" + } + ], + "time": { + "modified": "2011-03-31T21:33:43.641Z", + "created": "2011-03-31T21:33:43.641Z", + "0.1.0": "2011-03-31T21:33:43.641Z", + "0.2.0": "2011-03-31T21:33:43.641Z", + "0.2.1": "2011-03-31T21:33:43.641Z", + "0.3.0": "2011-03-31T21:33:43.641Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/mysql-oil/0.1.0", + "0.2.0": "http://registry.npmjs.org/mysql-oil/0.2.0", + "0.2.1": "http://registry.npmjs.org/mysql-oil/0.2.1", + "0.3.0": "http://registry.npmjs.org/mysql-oil/0.3.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/mysql-oil/-/mysql-oil-0.1.0.tgz" + }, + "0.2.0": { + "tarball": "http://registry.npmjs.org/mysql-oil/-/mysql-oil-0.2.0.tgz" + }, + "0.2.1": { + "tarball": "http://registry.npmjs.org/mysql-oil/-/mysql-oil-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "fff9ba3567ee522f0f5bb9d1e02f52334a9c0833", + "tarball": "http://registry.npmjs.org/mysql-oil/-/mysql-oil-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/mysql-oil/" + }, + "mysql-pool": { + "name": "mysql-pool", + "description": "MySQL connection pool for node.js on top of node-mysql.", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "kijewski", + "email": "rene.kijewski@fu-berlin.de" + } + ], + "time": { + "modified": "2011-09-07T18:44:00.958Z", + "created": "2011-03-16T02:18:20.286Z", + "0.1.0": "2011-03-16T02:18:20.759Z", + "0.1.1": "2011-03-16T05:33:27.148Z", + "0.1.2": "2011-03-21T01:02:31.986Z", + "0.1.3": "2011-03-26T02:26:33.612Z", + "0.2.0": "2011-08-11T20:48:19.238Z", + "0.2.1": "2011-08-11T21:51:38.655Z", + "0.2.2": "2011-09-07T18:44:00.958Z" + }, + "author": { + "name": "Rene Kijewski", + "email": "rene.SURNAME@fu-berlin.de", + "url": "https://github.com/Kijewski" + }, + "repository": { + "type": "git", + "url": "git://github.com/Kijewski/node-mysql-pool.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/mysql-pool/0.1.0", + "0.1.1": "http://registry.npmjs.org/mysql-pool/0.1.1", + "0.1.2": "http://registry.npmjs.org/mysql-pool/0.1.2", + "0.1.3": "http://registry.npmjs.org/mysql-pool/0.1.3", + "0.2.0": "http://registry.npmjs.org/mysql-pool/0.2.0", + "0.2.1": "http://registry.npmjs.org/mysql-pool/0.2.1", + "0.2.2": "http://registry.npmjs.org/mysql-pool/0.2.2" + }, + "dist": { + "0.1.0": { + "shasum": "3923913160120b8710af009165ed1f12161470ad", + "tarball": "http://registry.npmjs.org/mysql-pool/-/mysql-pool-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "f2d50f79beb2f3f608cc1d9db38141db05e1e084", + "tarball": "http://registry.npmjs.org/mysql-pool/-/mysql-pool-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "60d1be6699fefa2d01f90aaae3b0f24cc7b15594", + "tarball": "http://registry.npmjs.org/mysql-pool/-/mysql-pool-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "b566229ba2bf2468b546ac42bd39462c77e0cdb1", + "tarball": "http://registry.npmjs.org/mysql-pool/-/mysql-pool-0.1.3.tgz" + }, + "0.2.0": { + "shasum": "b5275344d41be546e78b402ba4a5c59fe64cff02", + "tarball": "http://registry.npmjs.org/mysql-pool/-/mysql-pool-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "fb5176df8f43981649d23cbba80a00ee00493463", + "tarball": "http://registry.npmjs.org/mysql-pool/-/mysql-pool-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "0054fa29e68d15326909473262d04eb464715f4f", + "tarball": "http://registry.npmjs.org/mysql-pool/-/mysql-pool-0.2.2.tgz" + } + }, + "url": "http://registry.npmjs.org/mysql-pool/" + }, + "mysql-session-store": { + "name": "mysql-session-store", + "description": "A session store for connect/express that uses the db-mysql package", + "dist-tags": { + "latest": "0.0.4" + }, + "readme": null, + "maintainers": [ + { + "name": "sugendran", + "email": "sugendran@sugendran.net" + } + ], + "time": { + "modified": "2011-12-08T22:25:05.743Z", + "created": "2011-11-29T23:43:43.440Z", + "0.0.1": "2011-11-29T23:43:46.670Z", + "0.0.2": "2011-11-30T00:39:04.214Z", + "0.0.4": "2011-12-08T22:25:05.743Z" + }, + "author": { + "name": "Sugendran Ganess" + }, + "repository": { + "type": "git", + "url": "git://github.com/sugendran/mysql-session-store.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mysql-session-store/0.0.1", + "0.0.2": "http://registry.npmjs.org/mysql-session-store/0.0.2", + "0.0.4": "http://registry.npmjs.org/mysql-session-store/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "67a5b26657bcbb117ca480649e4a3e0bfa0fb0d5", + "tarball": "http://registry.npmjs.org/mysql-session-store/-/mysql-session-store-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "7eb8f65435c3a49ced853b05110ab39915d40269", + "tarball": "http://registry.npmjs.org/mysql-session-store/-/mysql-session-store-0.0.2.tgz" + }, + "0.0.4": { + "shasum": "7b1f493603dd7b99527c1a2d49ab3285d92440c5", + "tarball": "http://registry.npmjs.org/mysql-session-store/-/mysql-session-store-0.0.4.tgz" + } + }, + "keywords": [ + "session", + "mysql", + "connect", + "express" + ], + "url": "http://registry.npmjs.org/mysql-session-store/" + }, + "mysql-simple": { + "name": "mysql-simple", + "description": "Provides connection pooling and a simplified interface on top of node-mysql and generic-pool.", + "dist-tags": { + "latest": "1.0.3" + }, + "maintainers": [ + { + "name": "jhurliman", + "email": "jhurliman@cull.tv" + } + ], + "time": { + "modified": "2011-08-11T18:39:45.926Z", + "created": "2011-06-19T09:16:24.021Z", + "1.0.0": "2011-06-19T09:16:24.571Z", + "1.0.1": "2011-07-05T20:09:55.470Z", + "1.0.2": "2011-07-11T23:38:03.222Z", + "1.0.3": "2011-08-11T18:31:00.174Z" + }, + "author": { + "name": "John Hurliman", + "email": "jhurliman@cull.tv" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/mysql-simple/1.0.0", + "1.0.1": "http://registry.npmjs.org/mysql-simple/1.0.1", + "1.0.2": "http://registry.npmjs.org/mysql-simple/1.0.2", + "1.0.3": "http://registry.npmjs.org/mysql-simple/1.0.3" + }, + "dist": { + "1.0.0": { + "shasum": "c7d1318e8e9483ae520b9dfe9fe96340b184c839", + "tarball": "http://registry.npmjs.org/mysql-simple/-/mysql-simple-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "84b608be42f99f0b9d4a5e6793599748ef95f84f", + "tarball": "http://registry.npmjs.org/mysql-simple/-/mysql-simple-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "9543be906c64e73f9b3b828d3ff442de46322f12", + "tarball": "http://registry.npmjs.org/mysql-simple/-/mysql-simple-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "e5c5b34e177336beb34e13d7e1a7b42217e6c94b", + "tarball": "http://registry.npmjs.org/mysql-simple/-/mysql-simple-1.0.3.tgz" + } + }, + "keywords": [ + "mysql", + "database", + "pooling", + "native" + ], + "url": "http://registry.npmjs.org/mysql-simple/" + }, + "n": { + "name": "n", + "description": "node version manager", + "dist-tags": { + "latest": "0.5.4" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "time": { + "modified": "2011-11-05T18:20:50.699Z", + "created": "2011-01-05T16:20:52.658Z", + "0.0.1": "2011-01-05T16:20:52.980Z", + "0.0.2": "2011-01-05T16:23:38.758Z", + "0.0.3": "2011-01-05T16:43:56.087Z", + "0.0.4": "2011-01-05T17:14:46.975Z", + "0.1.0": "2011-01-05T21:44:43.481Z", + "0.1.1": "2011-01-14T02:25:33.311Z", + "0.1.2": "2011-01-21T02:29:24.975Z", + "0.2.0": "2011-01-21T03:37:45.249Z", + "0.2.1": "2011-01-21T20:53:07.399Z", + "0.2.2": "2011-01-21T21:01:40.284Z", + "0.3.0": "2011-01-22T00:56:08.087Z", + "0.4.0": "2011-02-14T17:02:52.081Z", + "0.4.1": "2011-03-13T17:10:21.541Z", + "0.4.2": "2011-08-03T19:13:15.653Z", + "0.5.0": "2011-08-08T23:13:30.941Z", + "0.5.1": "2011-10-11T15:56:13.332Z", + "0.5.2": "2011-10-14T23:47:54.418Z", + "0.5.3": "2011-11-04T13:42:41.731Z", + "0.5.4": "2011-11-05T18:20:50.699Z" + }, + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/n/0.0.1", + "0.0.2": "http://registry.npmjs.org/n/0.0.2", + "0.0.3": "http://registry.npmjs.org/n/0.0.3", + "0.0.4": "http://registry.npmjs.org/n/0.0.4", + "0.1.0": "http://registry.npmjs.org/n/0.1.0", + "0.1.1": "http://registry.npmjs.org/n/0.1.1", + "0.1.2": "http://registry.npmjs.org/n/0.1.2", + "0.2.0": "http://registry.npmjs.org/n/0.2.0", + "0.2.1": "http://registry.npmjs.org/n/0.2.1", + "0.2.2": "http://registry.npmjs.org/n/0.2.2", + "0.3.0": "http://registry.npmjs.org/n/0.3.0", + "0.4.0": "http://registry.npmjs.org/n/0.4.0", + "0.4.1": "http://registry.npmjs.org/n/0.4.1", + "0.4.2": "http://registry.npmjs.org/n/0.4.2", + "0.5.0": "http://registry.npmjs.org/n/0.5.0", + "0.5.1": "http://registry.npmjs.org/n/0.5.1", + "0.5.2": "http://registry.npmjs.org/n/0.5.2", + "0.5.3": "http://registry.npmjs.org/n/0.5.3", + "0.5.4": "http://registry.npmjs.org/n/0.5.4" + }, + "dist": { + "0.0.1": { + "shasum": "876fe62a61e2d9fc8e1ac04937cac1e5974011a0", + "tarball": "http://registry.npmjs.org/n/-/n-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f99304226c9a4b80cbdd38e7c62bf2f6456ee14c", + "tarball": "http://registry.npmjs.org/n/-/n-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "cfad2f1f5bc1649d8a682e0eda4cd223c9c8b759", + "tarball": "http://registry.npmjs.org/n/-/n-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "60c67271f8d6b54892afdfd121a11eb0971f0ef1", + "tarball": "http://registry.npmjs.org/n/-/n-0.0.4.tgz" + }, + "0.1.0": { + "shasum": "79981e04e57ee4fb60ad48cf6d2d0e27530853f6", + "tarball": "http://registry.npmjs.org/n/-/n-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "a585cf1d70de53f893bf4fd6e610c7fcde1068f5", + "tarball": "http://registry.npmjs.org/n/-/n-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "767811ba70818e0e59821379303d7a72e7b1ab98", + "tarball": "http://registry.npmjs.org/n/-/n-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "5f019f64ba4d6f333220b9a823a07415304b89b2", + "tarball": "http://registry.npmjs.org/n/-/n-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "da59f6cbecd837f60b623af3ae95fcd4431fadd6", + "tarball": "http://registry.npmjs.org/n/-/n-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "fcbae8fe641ebdcc4da9eedde1e0ebd2ed4044dd", + "tarball": "http://registry.npmjs.org/n/-/n-0.2.2.tgz" + }, + "0.3.0": { + "shasum": "aa8196967038841410b139f729b1cbdb1fa592b3", + "tarball": "http://registry.npmjs.org/n/-/n-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "449feeba82ea9d0b64922266c1c79dd5c2adb73b", + "tarball": "http://registry.npmjs.org/n/-/n-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "06dbe31b718b74b66e0d0366e03789809dfa6854", + "tarball": "http://registry.npmjs.org/n/-/n-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "15e5bf340cc75f8d38f547659b44968f871fd6d7", + "tarball": "http://registry.npmjs.org/n/-/n-0.4.2.tgz" + }, + "0.5.0": { + "shasum": "d2a5435590504ac46a3193327881bd0322527570", + "tarball": "http://registry.npmjs.org/n/-/n-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "9cb3c42e5dd1475905b0a1614578e6e18ae2dab3", + "tarball": "http://registry.npmjs.org/n/-/n-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "f1fb1e20a20db44a35f66519833e5993437d3151", + "tarball": "http://registry.npmjs.org/n/-/n-0.5.2.tgz" + }, + "0.5.3": { + "shasum": "784c8183d259a5142ace64d6052ab46aa250344b", + "tarball": "http://registry.npmjs.org/n/-/n-0.5.3.tgz" + }, + "0.5.4": { + "shasum": "193e92aa3efd0386ea1bd786d4cd7b028339fb09", + "tarball": "http://registry.npmjs.org/n/-/n-0.5.4.tgz" + } + }, + "keywords": [ + "node", + "binary", + "version", + "env" + ], + "url": "http://registry.npmjs.org/n/" + }, + "N": { + "name": "N", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "hassox", + "email": "has.sox@gmail.com" + } + ], + "author": { + "name": "Daniel Neighman" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/N/0.1.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/N/-/N-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/N/" + }, + "n-ext": { + "name": "n-ext", + "description": "Use ExtJS4 data package within your Node.JS application", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "xavier.cambar", + "email": "xavier.cambar@lecoffre.net" + } + ], + "time": { + "modified": "2011-08-28T13:39:41.667Z", + "created": "2011-08-28T13:39:40.141Z", + "0.1.0": "2011-08-28T13:39:41.667Z" + }, + "author": { + "name": "Xavier Cambar xavier.cambar@lecoffre.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/xcambar/n-ext.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/n-ext/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "b44e7d6185371e3710ca7d0efa849cfd6d64dea7", + "tarball": "http://registry.npmjs.org/n-ext/-/n-ext-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/n-ext/" + }, + "n-pubsub": { + "name": "n-pubsub", + "description": "publisher subscriber using redis as back-end", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "ulueware", + "email": "mathew.sheets@ulueware.com" + } + ], + "time": { + "modified": "2011-03-02T20:04:10.492Z", + "created": "2011-03-02T20:04:09.862Z", + "1.0.0": "2011-03-02T20:04:10.492Z" + }, + "author": { + "name": "ulueware", + "email": "mathew.sheets@ulueware.com" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/n-pubsub/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "b87f4dd954e4cc5a64ccf096a7059550e977356c", + "tarball": "http://registry.npmjs.org/n-pubsub/-/n-pubsub-1.0.0.tgz" + } + }, + "keywords": [ + "publisher", + "subscriber", + "pub sub", + "redis", + "node.js" + ], + "url": "http://registry.npmjs.org/n-pubsub/" + }, + "n-rest": { + "name": "n-rest", + "description": "ReSTful services router for node.js", + "dist-tags": { + "latest": "1.2.0" + }, + "maintainers": [ + { + "name": "ulueware", + "email": "mathew.sheets@ulueware.com" + } + ], + "time": { + "modified": "2011-06-18T20:08:24.050Z", + "created": "2011-02-22T18:39:09.443Z", + "1.0.0": "2011-02-22T18:39:09.610Z", + "1.1.0": "2011-06-11T19:07:38.636Z", + "1.2.0": "2011-06-18T20:08:24.050Z" + }, + "author": { + "name": "ulueware", + "email": "mathew.sheets@ulueware.com" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/n-rest/1.0.0", + "1.1.0": "http://registry.npmjs.org/n-rest/1.1.0", + "1.2.0": "http://registry.npmjs.org/n-rest/1.2.0" + }, + "dist": { + "1.0.0": { + "shasum": "e2bd17c044d2c5e13f2443ac4769f6736ddd9022", + "tarball": "http://registry.npmjs.org/n-rest/-/n-rest-1.0.0.tgz" + }, + "1.1.0": { + "shasum": "3c56c10604cdff63dc4a3e05bad2991fb8f8ee4e", + "tarball": "http://registry.npmjs.org/n-rest/-/n-rest-1.1.0.tgz" + }, + "1.2.0": { + "shasum": "80a574e1d79a45f6ffcfc4cd3bc2ef759a39213c", + "tarball": "http://registry.npmjs.org/n-rest/-/n-rest-1.2.0.tgz" + } + }, + "keywords": [ + "JavaScript", + "ReST", + "services", + "node.js" + ], + "url": "http://registry.npmjs.org/n-rest/" + }, + "n-util": { + "name": "n-util", + "description": "JavaScript's missing methods", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "kriskowal", + "email": "kris.kowal@cixar.com" + } + ], + "author": { + "name": "Kris Kowal", + "email": "kris@cixar.com", + "url": "http://github.com/kriskowal/" + }, + "repository": { + "type": "git", + "url": "http://github.com/kriskowal/util/" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/n-util/0.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/n-util/-/n-util-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/n-util/" + }, + "nabe": { + "name": "nabe", + "description": "git-powered, minimalist blog engine built right on top of connect", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "mklabs", + "email": "daniel.mickael@gmail.com" + } + ], + "time": { + "modified": "2011-09-14T20:20:29.896Z", + "created": "2011-05-08T20:22:38.219Z", + "0.0.1": "2011-05-08T20:22:38.951Z", + "0.1.0": "2011-07-14T17:27:14.856Z" + }, + "author": { + "name": "Mickael Daniel" + }, + "repository": { + "type": "git", + "url": "git://github.com/mklabs/nabe.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nabe/0.0.1", + "0.1.0": "http://registry.npmjs.org/nabe/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "38fc4543448a1c87eab49380438e5dde03d9a0f6", + "tarball": "http://registry.npmjs.org/nabe/-/nabe-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "abc6d40e90f64ecb1fcf0f61ce4de4c561353e25", + "tarball": "http://registry.npmjs.org/nabe/-/nabe-0.1.0.tgz" + } + }, + "keywords": [ + "blog", + "git" + ], + "url": "http://registry.npmjs.org/nabe/" + }, + "nack": { + "name": "nack", + "description": "Node powered Rack server", + "dist-tags": { + "latest": "0.13.2" + }, + "maintainers": [ + { + "name": "josh", + "email": "josh@joshpeek.com" + } + ], + "author": { + "name": "Joshua Peek" + }, + "repository": { + "type": "git", + "url": "git://github.com/josh/nack.git" + }, + "time": { + "modified": "2011-11-08T07:15:17.371Z", + "created": "2010-12-18T20:17:11.557Z", + "0.1.0": "2010-12-18T20:17:11.557Z", + "0.1.1": "2010-12-18T20:17:11.557Z", + "0.1.10": "2010-12-18T20:17:11.557Z", + "0.1.11": "2010-12-18T20:17:11.557Z", + "0.1.12": "2010-12-18T20:17:11.557Z", + "0.1.13": "2010-12-18T20:17:11.557Z", + "0.1.15": "2010-12-18T20:17:11.557Z", + "0.1.16": "2010-12-18T20:17:11.557Z", + "0.1.2": "2010-12-18T20:17:11.557Z", + "0.1.3": "2010-12-18T20:17:11.557Z", + "0.1.4": "2010-12-18T20:17:11.557Z", + "0.1.5": "2010-12-18T20:17:11.557Z", + "0.1.6": "2010-12-18T20:17:11.557Z", + "0.1.7": "2010-12-18T20:17:11.557Z", + "0.1.8": "2010-12-18T20:17:11.557Z", + "0.1.9": "2010-12-18T20:17:11.557Z", + "0.2.0": "2010-12-18T20:17:11.557Z", + "0.3.0": "2010-12-18T20:17:11.557Z", + "0.3.1": "2010-12-18T20:17:11.557Z", + "0.3.2": "2010-12-18T20:17:11.557Z", + "0.3.3": "2011-01-03T17:46:39.753Z", + "0.4.0": "2011-01-05T16:22:37.539Z", + "0.5.0": "2011-01-10T18:09:40.278Z", + "0.5.1": "2011-01-10T23:55:13.807Z", + "0.5.2": "2011-01-11T16:39:56.793Z", + "0.5.3": "2011-01-12T14:49:00.719Z", + "0.5.4": "2011-01-17T17:04:22.661Z", + "0.5.5": "2011-01-17T17:07:45.065Z", + "0.5.6": "2011-01-17T17:33:10.718Z", + "0.6.0": "2011-01-18T06:42:05.137Z", + "0.6.1": "2011-01-18T20:45:02.502Z", + "0.7.0": "2011-02-01T20:15:26.396Z", + "0.7.1": "2011-02-03T15:56:13.778Z", + "0.8.0": "2011-02-11T02:57:38.772Z", + "0.8.1": "2011-02-11T03:08:28.429Z", + "0.8.2": "2011-02-16T19:14:35.489Z", + "0.8.3": "2011-02-18T15:54:04.478Z", + "0.8.4": "2011-02-18T19:34:38.393Z", + "0.8.5": "2011-03-09T20:48:07.873Z", + "0.8.6": "2011-03-18T17:26:05.376Z", + "0.9.0": "2011-03-26T00:11:09.314Z", + "0.9.1": "2011-03-26T00:15:29.055Z", + "0.9.2": "2011-03-26T00:51:02.325Z", + "0.9.3": "2011-03-27T02:02:37.144Z", + "0.9.4": "2011-03-27T16:32:52.226Z", + "0.9.5": "2011-03-27T18:05:25.272Z", + "0.9.6": "2011-03-28T22:03:50.033Z", + "0.10.0": "2011-04-06T14:20:39.645Z", + "0.10.1": "2011-04-12T06:24:54.881Z", + "0.10.2": "2011-04-16T16:13:47.347Z", + "0.10.3": "2011-04-16T23:13:34.744Z", + "0.11.0": "2011-04-19T01:07:07.941Z", + "0.11.1": "2011-04-19T01:33:57.544Z", + "0.12.0": "2011-04-19T03:35:06.880Z", + "0.12.1": "2011-05-08T23:30:07.080Z", + "0.12.2": "2011-05-24T05:08:02.519Z", + "0.12.3": "2011-06-01T20:52:03.197Z", + "0.12.4": "2011-09-23T16:40:50.244Z", + "0.13.0": "2011-09-25T22:15:53.139Z", + "0.13.1": "2011-09-26T01:55:52.982Z", + "0.13.2": "2011-11-08T07:15:17.371Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/nack/0.1.0", + "0.1.1": "http://registry.npmjs.org/nack/0.1.1", + "0.1.10": "http://registry.npmjs.org/nack/0.1.10", + "0.1.11": "http://registry.npmjs.org/nack/0.1.11", + "0.1.12": "http://registry.npmjs.org/nack/0.1.12", + "0.1.13": "http://registry.npmjs.org/nack/0.1.13", + "0.1.15": "http://registry.npmjs.org/nack/0.1.15", + "0.1.16": "http://registry.npmjs.org/nack/0.1.16", + "0.1.2": "http://registry.npmjs.org/nack/0.1.2", + "0.1.3": "http://registry.npmjs.org/nack/0.1.3", + "0.1.4": "http://registry.npmjs.org/nack/0.1.4", + "0.1.5": "http://registry.npmjs.org/nack/0.1.5", + "0.1.6": "http://registry.npmjs.org/nack/0.1.6", + "0.1.7": "http://registry.npmjs.org/nack/0.1.7", + "0.1.8": "http://registry.npmjs.org/nack/0.1.8", + "0.1.9": "http://registry.npmjs.org/nack/0.1.9", + "0.2.0": "http://registry.npmjs.org/nack/0.2.0", + "0.3.0": "http://registry.npmjs.org/nack/0.3.0", + "0.3.1": "http://registry.npmjs.org/nack/0.3.1", + "0.3.2": "http://registry.npmjs.org/nack/0.3.2", + "0.3.3": "http://registry.npmjs.org/nack/0.3.3", + "0.4.0": "http://registry.npmjs.org/nack/0.4.0", + "0.5.0": "http://registry.npmjs.org/nack/0.5.0", + "0.5.1": "http://registry.npmjs.org/nack/0.5.1", + "0.5.2": "http://registry.npmjs.org/nack/0.5.2", + "0.5.3": "http://registry.npmjs.org/nack/0.5.3", + "0.5.4": "http://registry.npmjs.org/nack/0.5.4", + "0.5.5": "http://registry.npmjs.org/nack/0.5.5", + "0.5.6": "http://registry.npmjs.org/nack/0.5.6", + "0.6.0": "http://registry.npmjs.org/nack/0.6.0", + "0.6.1": "http://registry.npmjs.org/nack/0.6.1", + "0.7.0": "http://registry.npmjs.org/nack/0.7.0", + "0.7.1": "http://registry.npmjs.org/nack/0.7.1", + "0.8.0": "http://registry.npmjs.org/nack/0.8.0", + "0.8.1": "http://registry.npmjs.org/nack/0.8.1", + "0.8.2": "http://registry.npmjs.org/nack/0.8.2", + "0.8.3": "http://registry.npmjs.org/nack/0.8.3", + "0.8.4": "http://registry.npmjs.org/nack/0.8.4", + "0.8.5": "http://registry.npmjs.org/nack/0.8.5", + "0.8.6": "http://registry.npmjs.org/nack/0.8.6", + "0.9.0": "http://registry.npmjs.org/nack/0.9.0", + "0.9.1": "http://registry.npmjs.org/nack/0.9.1", + "0.9.2": "http://registry.npmjs.org/nack/0.9.2", + "0.9.3": "http://registry.npmjs.org/nack/0.9.3", + "0.9.4": "http://registry.npmjs.org/nack/0.9.4", + "0.9.5": "http://registry.npmjs.org/nack/0.9.5", + "0.9.6": "http://registry.npmjs.org/nack/0.9.6", + "0.10.0": "http://registry.npmjs.org/nack/0.10.0", + "0.10.1": "http://registry.npmjs.org/nack/0.10.1", + "0.10.2": "http://registry.npmjs.org/nack/0.10.2", + "0.10.3": "http://registry.npmjs.org/nack/0.10.3", + "0.11.0": "http://registry.npmjs.org/nack/0.11.0", + "0.11.1": "http://registry.npmjs.org/nack/0.11.1", + "0.12.0": "http://registry.npmjs.org/nack/0.12.0", + "0.12.1": "http://registry.npmjs.org/nack/0.12.1", + "0.12.2": "http://registry.npmjs.org/nack/0.12.2", + "0.12.3": "http://registry.npmjs.org/nack/0.12.3", + "0.12.4": "http://registry.npmjs.org/nack/0.12.4", + "0.13.0": "http://registry.npmjs.org/nack/0.13.0", + "0.13.1": "http://registry.npmjs.org/nack/0.13.1", + "0.13.2": "http://registry.npmjs.org/nack/0.13.2" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/nack/-/nack-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://packages:5984/nack/-/nack-0.1.1.tgz" + }, + "0.1.10": { + "tarball": "http://packages:5984/nack/-/nack-0.1.10.tgz" + }, + "0.1.11": { + "tarball": "http://packages:5984/nack/-/nack-0.1.11.tgz" + }, + "0.1.12": { + "tarball": "http://packages:5984/nack/-/nack-0.1.12.tgz" + }, + "0.1.13": { + "tarball": "http://packages:5984/nack/-/nack-0.1.13.tgz" + }, + "0.1.15": { + "tarball": "http://packages:5984/nack/-/nack-0.1.15.tgz" + }, + "0.1.16": { + "tarball": "http://packages:5984/nack/-/nack-0.1.16.tgz" + }, + "0.1.2": { + "tarball": "http://packages:5984/nack/-/nack-0.1.2.tgz" + }, + "0.1.3": { + "tarball": "http://packages:5984/nack/-/nack-0.1.3.tgz" + }, + "0.1.4": { + "tarball": "http://packages:5984/nack/-/nack-0.1.4.tgz" + }, + "0.1.5": { + "tarball": "http://packages:5984/nack/-/nack-0.1.5.tgz" + }, + "0.1.6": { + "tarball": "http://packages:5984/nack/-/nack-0.1.6.tgz" + }, + "0.1.7": { + "tarball": "http://packages:5984/nack/-/nack-0.1.7.tgz" + }, + "0.1.8": { + "tarball": "http://packages:5984/nack/-/nack-0.1.8.tgz" + }, + "0.1.9": { + "tarball": "http://packages:5984/nack/-/nack-0.1.9.tgz" + }, + "0.2.0": { + "tarball": "http://packages:5984/nack/-/nack-0.2.0.tgz" + }, + "0.3.0": { + "tarball": "http://registry.npmjs.org/nack/-/nack-0.3.0.tgz" + }, + "0.3.1": { + "tarball": "http://registry.npmjs.org/nack/-/nack-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "65cd45686163b6029a55c106c7348ba71024b466", + "tarball": "http://registry.npmjs.org/nack/-/nack-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "95b5fdbb42c0f988d4614a76326ea213dc58944b", + "tarball": "http://registry.npmjs.org/nack/-/nack-0.3.3.tgz" + }, + "0.4.0": { + "shasum": "45a700d464abf080010ea8d34387c09cf805fe3f", + "tarball": "http://registry.npmjs.org/nack/-/nack-0.4.0.tgz" + }, + "0.5.0": { + "shasum": "e412aadd17515720f42e218e35ef32b221a7f17e", + "tarball": "http://registry.npmjs.org/nack/-/nack-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "f051b715a42ab6ddc9ebe5deafe979395696a61a", + "tarball": "http://registry.npmjs.org/nack/-/nack-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "2f0de99c4bf5246be69aa6207556d0d143a6f50f", + "tarball": "http://registry.npmjs.org/nack/-/nack-0.5.2.tgz" + }, + "0.5.3": { + "shasum": "5a1d109ae39edf7daed159b42007f9d6c90b7cde", + "tarball": "http://registry.npmjs.org/nack/-/nack-0.5.3.tgz" + }, + "0.5.4": { + "shasum": "9cc9064bf742fa62e59f6210de4e430b640a4382", + "tarball": "http://registry.npmjs.org/nack/-/nack-0.5.4.tgz" + }, + "0.5.5": { + "shasum": "cd7b37031c1a65080af02d46edd16324dfd7015a", + "tarball": "http://registry.npmjs.org/nack/-/nack-0.5.5.tgz" + }, + "0.5.6": { + "shasum": "ef05bcdf0798472a7dfed2f7e5df01fd9ef1c3cd", + "tarball": "http://registry.npmjs.org/nack/-/nack-0.5.6.tgz" + }, + "0.6.0": { + "shasum": "7b52f213bfc3839337f6597219dc86d258d72e9d", + "tarball": "http://registry.npmjs.org/nack/-/nack-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "f0bb064c8942d7751ae61a57606135ead534bf24", + "tarball": "http://registry.npmjs.org/nack/-/nack-0.6.1.tgz" + }, + "0.7.0": { + "shasum": "c32888ec8743fc770209b24921cdf75655e4eec9", + "tarball": "http://registry.npmjs.org/nack/-/nack-0.7.0.tgz" + }, + "0.7.1": { + "shasum": "0b9a3209895aae2d984aba32d2f80fa603c7e5f1", + "tarball": "http://registry.npmjs.org/nack/-/nack-0.7.1.tgz" + }, + "0.8.0": { + "shasum": "c84cabf53c712f3f469c22f78118bb1151c3df81", + "tarball": "http://registry.npmjs.org/nack/-/nack-0.8.0.tgz" + }, + "0.8.1": { + "shasum": "a7ba6c3c42aabe4d56c44c01323ab6f136ffe82e", + "tarball": "http://registry.npmjs.org/nack/-/nack-0.8.1.tgz" + }, + "0.8.2": { + "shasum": "65bd16433a0cfc94f17046e40c54897ca34ce588", + "tarball": "http://registry.npmjs.org/nack/-/nack-0.8.2.tgz" + }, + "0.8.3": { + "shasum": "397994f99c81ae7269fb85dce10acb6112cb7984", + "tarball": "http://registry.npmjs.org/nack/-/nack-0.8.3.tgz" + }, + "0.8.4": { + "shasum": "c8ecda3794744baae2593db13563fef813b54054", + "tarball": "http://registry.npmjs.org/nack/-/nack-0.8.4.tgz" + }, + "0.8.5": { + "shasum": "1614230ca4984661ab71534a803f3a88dbfa129d", + "tarball": "http://registry.npmjs.org/nack/-/nack-0.8.5.tgz" + }, + "0.8.6": { + "shasum": "554834a13b643309596fbc4c184d1a6dd43945fc", + "tarball": "http://registry.npmjs.org/nack/-/nack-0.8.6.tgz" + }, + "0.9.0": { + "shasum": "31f69f29cbaddd2dc5a9dd4a53746e1372bb8c4b", + "tarball": "http://registry.npmjs.org/nack/-/nack-0.9.0.tgz" + }, + "0.9.1": { + "shasum": "34bda68210e66bd37e96c1b1ef7c369113cab9a4", + "tarball": "http://registry.npmjs.org/nack/-/nack-0.9.1.tgz" + }, + "0.9.2": { + "shasum": "c8b54de2c296b64cbcfdb5d71d4f095fda88900a", + "tarball": "http://registry.npmjs.org/nack/-/nack-0.9.2.tgz" + }, + "0.9.3": { + "shasum": "9d90a8c1c1cdbe37e0dfee9cd526ac0cc4743bb4", + "tarball": "http://registry.npmjs.org/nack/-/nack-0.9.3.tgz" + }, + "0.9.4": { + "shasum": "5c42a1a22354c428f6d8606a2c41ea4cdb501c60", + "tarball": "http://registry.npmjs.org/nack/-/nack-0.9.4.tgz" + }, + "0.9.5": { + "shasum": "8c23685cef9ced52586972103f50f46d541339f3", + "tarball": "http://registry.npmjs.org/nack/-/nack-0.9.5.tgz" + }, + "0.9.6": { + "shasum": "b0929fc31c4f7d4bc3226acfb1ecea54756478b2", + "tarball": "http://registry.npmjs.org/nack/-/nack-0.9.6.tgz" + }, + "0.10.0": { + "shasum": "2bb5cd80692857160a535cd601334e033972aaff", + "tarball": "http://registry.npmjs.org/nack/-/nack-0.10.0.tgz" + }, + "0.10.1": { + "shasum": "6481e68c0f61989a081e4b0840082da043124db7", + "tarball": "http://registry.npmjs.org/nack/-/nack-0.10.1.tgz" + }, + "0.10.2": { + "shasum": "7999b2086d66c2afd6d245dd557bbfd3c78e8b1d", + "tarball": "http://registry.npmjs.org/nack/-/nack-0.10.2.tgz" + }, + "0.10.3": { + "shasum": "13845429e83e30e0a8fd15e403d5e2ec067b9bf0", + "tarball": "http://registry.npmjs.org/nack/-/nack-0.10.3.tgz" + }, + "0.11.0": { + "shasum": "00f03f217a144ea38a816a2fd770e167a85cec12", + "tarball": "http://registry.npmjs.org/nack/-/nack-0.11.0.tgz" + }, + "0.11.1": { + "shasum": "d7d3f5a8e227856add6096e97d44bdac74101ae4", + "tarball": "http://registry.npmjs.org/nack/-/nack-0.11.1.tgz" + }, + "0.12.0": { + "shasum": "add2b327dfd5c0dd6620718b0eaebce03df32dcd", + "tarball": "http://registry.npmjs.org/nack/-/nack-0.12.0.tgz" + }, + "0.12.1": { + "shasum": "2c0bfca6cc7be0e02a395078e983324b0e4f8feb", + "tarball": "http://registry.npmjs.org/nack/-/nack-0.12.1.tgz" + }, + "0.12.2": { + "shasum": "5624a4c6ee49bba64945e88642fd0fa3de876867", + "tarball": "http://registry.npmjs.org/nack/-/nack-0.12.2.tgz" + }, + "0.12.3": { + "shasum": "a42ebb3170b02192f272124d633bf0dafd94e4a2", + "tarball": "http://registry.npmjs.org/nack/-/nack-0.12.3.tgz" + }, + "0.12.4": { + "shasum": "8ef209a28cfee4375c4ba2f67b95e2672e2baa2e", + "tarball": "http://registry.npmjs.org/nack/-/nack-0.12.4.tgz" + }, + "0.13.0": { + "shasum": "1da0c46ce8c15f9a029fc78b124898de7c07fba4", + "tarball": "http://registry.npmjs.org/nack/-/nack-0.13.0.tgz" + }, + "0.13.1": { + "shasum": "6a62192b640af30e882a8bd110a7ef2050d005b9", + "tarball": "http://registry.npmjs.org/nack/-/nack-0.13.1.tgz" + }, + "0.13.2": { + "shasum": "09b100f04172cf4dc5a280c5c4529ef8cb6a232c", + "tarball": "http://registry.npmjs.org/nack/-/nack-0.13.2.tgz" + } + }, + "url": "http://registry.npmjs.org/nack/" + }, + "nacl": { + "name": "nacl", + "description": "Networking and Cryptography library bindings - high-speed, high-security, easy-to-use crypto library", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "thejh", + "email": "jannhorn@gmail.com" + } + ], + "time": { + "modified": "2011-10-05T15:26:30.111Z", + "created": "2011-10-05T15:08:00.623Z", + "0.1.0": "2011-10-05T15:08:02.335Z", + "0.1.1": "2011-10-05T15:09:15.242Z" + }, + "author": { + "name": "Jann Horn", + "email": "jannhorn@googlemail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/thejh/node-nacl.git" + }, + "users": { + "thejh": true + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/nacl/0.1.0", + "0.1.1": "http://registry.npmjs.org/nacl/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "8eb7b1c198fc4642c56edb86501d18be671737a4", + "tarball": "http://registry.npmjs.org/nacl/-/nacl-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "37707f6f813e5d4a1ecf5424e8d4d2d2e5ae9ace", + "tarball": "http://registry.npmjs.org/nacl/-/nacl-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/nacl/" + }, + "nagari": { + "name": "nagari", + "description": "Super duper front-end style guide starter", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "mkitt", + "email": "mk.kitt@gmail.com" + } + ], + "time": { + "modified": "2011-09-26T04:40:30.792Z", + "created": "2011-06-01T04:53:55.574Z", + "0.0.1": "2011-06-01T04:53:58.169Z", + "0.0.2": "2011-06-17T17:36:21.722Z", + "0.0.3": "2011-08-21T03:55:03.987Z", + "0.0.4": "2011-08-21T05:05:51.202Z", + "0.0.5": "2011-08-21T22:18:12.992Z", + "0.0.6": "2011-09-26T04:40:30.792Z" + }, + "author": { + "name": "Matthew Kitt", + "email": "mk.kitt@gmail.com", + "url": "http://mkitt.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/mkitt/nagari.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nagari/0.0.1", + "0.0.2": "http://registry.npmjs.org/nagari/0.0.2", + "0.0.3": "http://registry.npmjs.org/nagari/0.0.3", + "0.0.4": "http://registry.npmjs.org/nagari/0.0.4", + "0.0.5": "http://registry.npmjs.org/nagari/0.0.5", + "0.0.6": "http://registry.npmjs.org/nagari/0.0.6" + }, + "dist": { + "0.0.1": { + "shasum": "aa9f7a6c686e9d85eadba92deb6865cddee6440c", + "tarball": "http://registry.npmjs.org/nagari/-/nagari-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "89cec7ab5257705449a915a9298944a503f8667b", + "tarball": "http://registry.npmjs.org/nagari/-/nagari-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "c952a82726061a2777434cdad4bf5a7e640009fe", + "tarball": "http://registry.npmjs.org/nagari/-/nagari-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "a6600a2fa0c78ebd1bd354fee0b1676ca617238e", + "tarball": "http://registry.npmjs.org/nagari/-/nagari-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "123f56be6fe7ffa78624d8beb5bf1635dfee059a", + "tarball": "http://registry.npmjs.org/nagari/-/nagari-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "a03836b62d32955869b5e79d1e549ad8444ff63a", + "tarball": "http://registry.npmjs.org/nagari/-/nagari-0.0.6.tgz" + } + }, + "keywords": [ + "development tool", + "interface", + "html", + "haml", + "jade", + "css", + "styleguide", + "style" + ], + "url": "http://registry.npmjs.org/nagari/" + }, + "nailplate": { + "name": "nailplate", + "description": "A templating package for node.js", + "dist-tags": { + "latest": "0.6.3" + }, + "maintainers": [ + { + "name": "yrn1", + "email": "yrn001@gmail.com" + } + ], + "author": { + "name": "Jeroen Baekelandt", + "email": "yrn001@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nailplate/0.0.1", + "0.5.0": "http://registry.npmjs.org/nailplate/0.5.0", + "0.6.1": "http://registry.npmjs.org/nailplate/0.6.1", + "0.6.2": "http://registry.npmjs.org/nailplate/0.6.2", + "0.6.3": "http://registry.npmjs.org/nailplate/0.6.3" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/nailplate/-/nailplate-0.0.1.tgz" + }, + "0.5.0": { + "shasum": "9628b811845d0360328d3bcbc5352dbcf13c37a2", + "tarball": "http://registry.npmjs.org/nailplate/-/nailplate-0.5.0.tgz" + }, + "0.6.1": { + "shasum": "a7e56d35a426d5a84b09b85513973c4fe728bfee", + "tarball": "http://registry.npmjs.org/nailplate/-/nailplate-0.6.1.tgz" + }, + "0.6.2": { + "shasum": "90e4dadab8ca4528cdac91cbed48490791a67e41", + "tarball": "http://registry.npmjs.org/nailplate/-/nailplate-0.6.2.tgz" + }, + "0.6.3": { + "shasum": "900598ca31458d460ffa38e540dbcbbc8e37f5ab", + "tarball": "http://registry.npmjs.org/nailplate/-/nailplate-0.6.3.tgz" + } + }, + "url": "http://registry.npmjs.org/nailplate/" + }, + "nails": { + "name": "nails", + "description": "A simple web framework", + "dist-tags": { + "latest": "0.8.3" + }, + "maintainers": [ + { + "name": "yrn1", + "email": "yrn001@gmail.com" + } + ], + "author": { + "name": "Jeroen Baekelandt", + "email": "yrn001@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nails/0.0.1", + "0.8.0": "http://registry.npmjs.org/nails/0.8.0", + "0.8.1": "http://registry.npmjs.org/nails/0.8.1", + "0.8.3": "http://registry.npmjs.org/nails/0.8.3" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/nails/-/nails-0.0.1.tgz" + }, + "0.8.0": { + "tarball": "http://registry.npmjs.org/nails/-/nails-0.8.0.tgz" + }, + "0.8.1": { + "shasum": "f1087ed8bc27bcdb9532e1c26f95fedd50b2169a", + "tarball": "http://registry.npmjs.org/nails/-/nails-0.8.1.tgz" + }, + "0.8.3": { + "shasum": "09b9d6c9b3727a170b88a57e9c7779a41d501f09", + "tarball": "http://registry.npmjs.org/nails/-/nails-0.8.3.tgz" + } + }, + "url": "http://registry.npmjs.org/nails/" + }, + "nake": { + "name": "nake", + "description": "GNU Make/Ruby Rake like tasks management tool for NodeJS", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "nikolay_nemshilov", + "email": "nemshilov@gmail.com" + } + ], + "time": { + "modified": "2011-08-19T16:05:32.369Z", + "created": "2011-02-05T19:09:21.586Z", + "0.1.0": "2011-02-05T19:09:22.139Z", + "0.1.1": "2011-02-05T19:15:28.781Z", + "0.1.2": "2011-02-05T19:40:28.595Z", + "0.2.0": "2011-02-10T16:11:57.480Z" + }, + "author": { + "name": "Nikolay Nemshilov" + }, + "repository": { + "type": "git", + "url": "http://github.com/MadRabbit/Nake.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/nake/0.1.0", + "0.1.1": "http://registry.npmjs.org/nake/0.1.1", + "0.1.2": "http://registry.npmjs.org/nake/0.1.2", + "0.2.0": "http://registry.npmjs.org/nake/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "a501f05bc3d65ca801c63b0ce1a000f5e1dd8583", + "tarball": "http://registry.npmjs.org/nake/-/nake-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "a3b29f6145da67a856df82cd5493c9f254541b43", + "tarball": "http://registry.npmjs.org/nake/-/nake-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "11be76daf68a5e797bb2c560d018c29f4c34042b", + "tarball": "http://registry.npmjs.org/nake/-/nake-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "154529d5f0015591d5563754b4dfa5b205e504f5", + "tarball": "http://registry.npmjs.org/nake/-/nake-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/nake/" + }, + "named-routes": { + "name": "named-routes", + "description": "framework-agnostic named routes for node", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "jayferd", + "email": "j4yferd@gmail.com" + } + ], + "author": { + "name": "Jay Adkisson", + "email": "j4yferd@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/named-routes/0.1.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/named-routes/-/named-routes-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/named-routes/" + }, + "namedrop": { + "name": "namedrop", + "description": "Minification for DOM-heavy code", + "dist-tags": { + "latest": "0.0.10" + }, + "maintainers": [ + { + "name": "jed", + "email": "tr@nslator.jp" + } + ], + "time": { + "modified": "2011-09-27T22:43:36.026Z", + "created": "2011-09-27T14:39:52.550Z", + "0.0.0": "2011-09-27T14:39:54.308Z", + "0.0.1": "2011-09-27T14:54:44.263Z", + "0.0.2": "2011-09-27T15:00:02.728Z", + "0.0.3": "2011-09-27T15:45:33.168Z", + "0.0.4": "2011-09-27T16:13:08.483Z", + "0.0.5": "2011-09-27T16:20:10.126Z", + "0.0.6": "2011-09-27T16:31:03.825Z", + "0.0.7": "2011-09-27T16:35:43.742Z", + "0.0.8": "2011-09-27T16:52:29.787Z", + "0.0.9": "2011-09-27T17:20:37.019Z", + "0.0.10": "2011-09-27T22:43:36.026Z" + }, + "author": { + "name": "Jed Schmidt", + "email": "tr@nslator.jp", + "url": "http://jed.is" + }, + "repository": { + "type": "git", + "url": "git://github.com/jed/namedrop.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/namedrop/0.0.0", + "0.0.1": "http://registry.npmjs.org/namedrop/0.0.1", + "0.0.2": "http://registry.npmjs.org/namedrop/0.0.2", + "0.0.3": "http://registry.npmjs.org/namedrop/0.0.3", + "0.0.4": "http://registry.npmjs.org/namedrop/0.0.4", + "0.0.5": "http://registry.npmjs.org/namedrop/0.0.5", + "0.0.6": "http://registry.npmjs.org/namedrop/0.0.6", + "0.0.7": "http://registry.npmjs.org/namedrop/0.0.7", + "0.0.8": "http://registry.npmjs.org/namedrop/0.0.8", + "0.0.9": "http://registry.npmjs.org/namedrop/0.0.9", + "0.0.10": "http://registry.npmjs.org/namedrop/0.0.10" + }, + "dist": { + "0.0.0": { + "shasum": "aac0d394eba5a8a87fe5605beacae3172b44217a", + "tarball": "http://registry.npmjs.org/namedrop/-/namedrop-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "d536c2bfe52e122f98eef91e0dfc9d3718251a9d", + "tarball": "http://registry.npmjs.org/namedrop/-/namedrop-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "29cdfc3e6c0e27783f343cb1a6f67bd17ab5b9c6", + "tarball": "http://registry.npmjs.org/namedrop/-/namedrop-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "a876ff63d38c93cc62c3f36fec42119642858a46", + "tarball": "http://registry.npmjs.org/namedrop/-/namedrop-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "3d542cc214a92a9de68de097eff6b055a3b2300f", + "tarball": "http://registry.npmjs.org/namedrop/-/namedrop-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "6910dcfbf02a55e319a8c39dff7059ab116c6b5d", + "tarball": "http://registry.npmjs.org/namedrop/-/namedrop-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "e48528491a9586c0e4cef639fefb037a64773913", + "tarball": "http://registry.npmjs.org/namedrop/-/namedrop-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "43dd25c928f8e42f2584a2088014062a9fa718da", + "tarball": "http://registry.npmjs.org/namedrop/-/namedrop-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "46824b26d62cf68219b0ed6e488ddff35138226e", + "tarball": "http://registry.npmjs.org/namedrop/-/namedrop-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "9733102eccaa696671e647a9af5518c9fb9ffe8a", + "tarball": "http://registry.npmjs.org/namedrop/-/namedrop-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "e9c6e1b0137ea6210a4d3e8514f32823e93b720c", + "tarball": "http://registry.npmjs.org/namedrop/-/namedrop-0.0.10.tgz" + } + }, + "url": "http://registry.npmjs.org/namedrop/" + }, + "namespace": { + "name": "namespace", + "description": "Library for defining namespaced properties.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "gozala", + "email": "rfobic@gmail.com" + } + ], + "time": { + "modified": "2011-06-12T11:27:39.598Z", + "created": "2011-04-13T01:51:07.586Z", + "0.0.1": "2011-04-13T01:51:08.226Z", + "0.0.2": "2011-04-14T06:22:23.096Z", + "0.1.0": "2011-06-12T11:27:39.598Z" + }, + "author": { + "name": "Irakli Gozalishvili", + "email": "rfobic@gmail.com", + "url": "http://jeditoolkit.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Gozala/namespace.git", + "web": "https://github.com/Gozala/namespace" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/namespace/0.0.1", + "0.0.2": "http://registry.npmjs.org/namespace/0.0.2", + "0.1.0": "http://registry.npmjs.org/namespace/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "ddd3351ad5bf07263e13b665c571a13da8f2bc03", + "tarball": "http://registry.npmjs.org/namespace/-/namespace-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "9e0bfce0825aed337e10d9cd797592240c4f6a56", + "tarball": "http://registry.npmjs.org/namespace/-/namespace-0.0.2.tgz" + }, + "0.1.0": { + "shasum": "80529c3619da518536e203a7f29496470dac09d2", + "tarball": "http://registry.npmjs.org/namespace/-/namespace-0.1.0.tgz" + } + }, + "keywords": [ + "namespace", + "privates" + ], + "url": "http://registry.npmjs.org/namespace/" + }, + "namespaces": { + "name": "namespaces", + "description": "Functions for reading/writing/creating namespaces", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "mikebannister", + "email": "mikebannister@gmail.com" + } + ], + "author": { + "name": "Mike Bannister", + "email": "mike@mike101.net" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/namespaces/0.0.1", + "0.0.2": "http://registry.npmjs.org/namespaces/0.0.2", + "0.0.3": "http://registry.npmjs.org/namespaces/0.0.3", + "0.0.4": "http://registry.npmjs.org/namespaces/0.0.4", + "0.0.6": "http://registry.npmjs.org/namespaces/0.0.6" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/namespaces/-/namespaces-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/namespaces/-/namespaces-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/namespaces/-/namespaces-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "fe1916c4b25c7f780e78748ec3a22aa59538be79", + "tarball": "http://registry.npmjs.org/namespaces/-/namespaces-0.0.4.tgz" + }, + "0.0.6": { + "shasum": "20bf5e8380a5f67517a70dfd5cb6b9d193cddb4f", + "tarball": "http://registry.npmjs.org/namespaces/-/namespaces-0.0.6.tgz" + } + }, + "url": "http://registry.npmjs.org/namespaces/" + }, + "nami": { + "name": "nami", + "description": "Port of PAMI to node. An asterisk manager interface client, will allow you to send actions, and receive responses (and associated events), and also receive async events from server", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "marcelog", + "email": "marcelog@gmail.com" + } + ], + "time": { + "modified": "2011-12-06T20:51:06.837Z", + "created": "2011-08-22T18:02:34.938Z", + "0.1.0": "2011-12-06T20:51:06.837Z", + "0.1.1": "2011-12-06T20:51:06.837Z", + "0.1.2": "2011-12-06T20:51:06.837Z", + "0.1.3": "2011-12-06T20:51:06.837Z", + "0.1.4": "2011-12-06T20:51:06.837Z", + "0.1.5": "2011-12-06T20:51:06.837Z", + "0.1.6": "2011-12-06T20:51:06.837Z", + "0.1.8": "2011-12-06T20:51:06.837Z", + "0.1.10": "2011-12-06T20:51:06.837Z", + "0.1.12": "2011-12-06T20:51:06.837Z", + "0.1.13": "2011-12-06T20:51:06.837Z", + "0.1.14": "2011-12-06T20:51:06.837Z", + "0.1.15": "2011-12-06T20:51:06.837Z", + "0.1.16": "2011-12-06T20:51:06.837Z", + "0.2.0": "2011-12-06T20:51:06.837Z" + }, + "author": { + "name": "Marcelo Gornstein", + "email": "marcelog@gmail.com", + "url": "http://marcelog.github.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/marcelog/Nami.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/nami/0.1.0", + "0.1.1": "http://registry.npmjs.org/nami/0.1.1", + "0.1.2": "http://registry.npmjs.org/nami/0.1.2", + "0.1.3": "http://registry.npmjs.org/nami/0.1.3", + "0.1.4": "http://registry.npmjs.org/nami/0.1.4", + "0.1.5": "http://registry.npmjs.org/nami/0.1.5", + "0.1.6": "http://registry.npmjs.org/nami/0.1.6", + "0.1.8": "http://registry.npmjs.org/nami/0.1.8", + "0.1.10": "http://registry.npmjs.org/nami/0.1.10", + "0.1.12": "http://registry.npmjs.org/nami/0.1.12", + "0.1.13": "http://registry.npmjs.org/nami/0.1.13", + "0.1.14": "http://registry.npmjs.org/nami/0.1.14", + "0.1.15": "http://registry.npmjs.org/nami/0.1.15", + "0.1.16": "http://registry.npmjs.org/nami/0.1.16", + "0.2.0": "http://registry.npmjs.org/nami/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "d08b66f141fcae4f866684814336c6093601d66a", + "tarball": "http://registry.npmjs.org/nami/-/nami-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "2b3206182a847f0744e968cb1ef51933fc954c42", + "tarball": "http://registry.npmjs.org/nami/-/nami-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "83f3bdf040d6588a7b33a2d2a2f131a552e28b6d", + "tarball": "http://registry.npmjs.org/nami/-/nami-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "01a6768fd909f23c230b1c0d58a63b3505877823", + "tarball": "http://registry.npmjs.org/nami/-/nami-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "34dc20149ff0bce5e022bea183d31bb460f8dcc5", + "tarball": "http://registry.npmjs.org/nami/-/nami-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "5c6ee607fa5af98d0ba5f0313e6b23cb7d7b6970", + "tarball": "http://registry.npmjs.org/nami/-/nami-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "d6dbff7f3c9a0ba848d30689bbcd0ba6e51a1ca8", + "tarball": "http://registry.npmjs.org/nami/-/nami-0.1.6.tgz" + }, + "0.1.8": { + "shasum": "84f61a77ef79213fe386254e2dc17c8c1774800c", + "tarball": "http://registry.npmjs.org/nami/-/nami-0.1.8.tgz" + }, + "0.1.10": { + "shasum": "45728e34bdd7a8bfeb9808892393267098a5a16f", + "tarball": "http://registry.npmjs.org/nami/-/nami-0.1.10.tgz" + }, + "0.1.12": { + "shasum": "ce70e649a7266cc255b7a25660bb33dc9334adb8", + "tarball": "http://registry.npmjs.org/nami/-/nami-0.1.12.tgz" + }, + "0.1.13": { + "shasum": "07f6133c20e06813ece195df86e469532154f2d4", + "tarball": "http://registry.npmjs.org/nami/-/nami-0.1.13.tgz" + }, + "0.1.14": { + "shasum": "d53861d3535d6cfb03e067a2b2a33489bed53fb5", + "tarball": "http://registry.npmjs.org/nami/-/nami-0.1.14.tgz" + }, + "0.1.15": { + "shasum": "629e7b42ea501fef7b0ed23557e9f5ca2e1a5c01", + "tarball": "http://registry.npmjs.org/nami/-/nami-0.1.15.tgz" + }, + "0.1.16": { + "shasum": "5ef268ea623f83ae3869778a5c873e4fe9b49dbf", + "tarball": "http://registry.npmjs.org/nami/-/nami-0.1.16.tgz" + }, + "0.2.0": { + "shasum": "45caae49996c6650ed580375c71dd54a1e5dd534", + "tarball": "http://registry.npmjs.org/nami/-/nami-0.2.0.tgz" + } + }, + "keywords": [ + "asterisk", + "manager", + "interface", + "nami", + "action", + "response", + "event", + "node" + ], + "url": "http://registry.npmjs.org/nami/" + }, + "nano": { + "name": "nano", + "description": "minimalistic couchdb driver for node.js", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "dscape", + "email": "nunojobpinto@gmail.com" + } + ], + "time": { + "modified": "2011-12-03T00:50:33.497Z", + "created": "2011-08-11T23:12:38.104Z", + "0.0.1": "2011-08-11T23:12:40.270Z", + "0.0.2": "2011-08-12T22:53:50.796Z", + "0.0.3": "2011-08-12T23:02:48.263Z", + "0.1.5": "2011-08-15T00:44:31.464Z", + "0.1.6": "2011-08-15T10:48:33.873Z", + "0.1.7": "2011-08-15T11:33:01.894Z", + "0.1.8": "2011-08-15T11:43:14.206Z", + "0.1.9": "2011-08-15T22:22:05.525Z", + "0.2.0": "2011-08-16T09:43:24.057Z", + "0.3.1": "2011-08-16T14:46:50.753Z", + "0.3.2": "2011-08-16T18:10:04.792Z", + "0.4.0": "2011-08-17T01:07:09.807Z", + "0.4.1": "2011-08-17T09:38:50.121Z", + "0.4.2": "2011-08-17T10:13:21.086Z", + "0.4.3": "2011-08-17T11:15:38.102Z", + "0.4.4": "2011-08-17T11:33:20.143Z", + "0.4.5": "2011-08-17T11:40:28.334Z", + "0.4.6": "2011-08-17T11:46:30.193Z", + "0.5.3": "2011-08-18T18:38:27.970Z", + "0.5.4": "2011-08-19T20:12:34.375Z", + "0.5.5": "2011-08-20T11:49:48.394Z", + "0.5.6": "2011-08-20T11:51:48.770Z", + "0.5.7": "2011-08-20T13:56:20.152Z", + "0.5.8": "2011-08-20T14:21:51.595Z", + "0.6.0": "2011-08-20T16:08:22.188Z", + "0.6.1": "2011-08-20T16:15:20.040Z", + "0.6.2": "2011-08-20T17:00:59.444Z", + "0.6.4": "2011-08-21T17:08:22.695Z", + "0.6.5": "2011-08-21T18:04:22.487Z", + "0.6.6": "2011-08-24T11:33:04.075Z", + "0.7.0": "2011-08-29T21:37:49.026Z", + "0.7.1": "2011-08-31T00:55:03.927Z", + "0.7.2": "2011-08-31T01:16:45.649Z", + "0.7.3": "2011-08-31T01:23:33.889Z", + "0.7.4": "2011-08-31T14:40:03.014Z", + "0.8.0": "2011-09-01T15:09:57.187Z", + "0.8.1": "2011-09-01T16:27:54.535Z", + "0.8.2": "2011-09-01T18:31:12.795Z", + "0.8.3": "2011-09-02T00:35:30.100Z", + "0.8.4": "2011-09-02T03:29:15.984Z", + "0.8.5": "2011-09-06T17:23:03.058Z", + "0.8.6": "2011-09-09T17:55:38.125Z", + "0.8.7": "2011-09-09T18:03:00.881Z", + "0.9.0": "2011-09-21T08:34:40.779Z", + "0.9.1": "2011-09-21T08:52:20.192Z", + "0.9.2": "2011-09-21T10:10:17.925Z", + "0.9.3": "2011-10-05T01:49:26.300Z", + "0.9.4": "2011-11-09T02:35:23.173Z", + "0.9.5": "2011-11-10T17:37:18.376Z", + "0.9.7": "2011-12-01T16:40:58.217Z", + "0.9.8": "2011-12-01T21:26:36.428Z", + "1.0.0": "2011-12-03T00:50:33.497Z" + }, + "author": { + "name": "Nuno Job", + "email": "nunojobpinto@gmail.com", + "url": "http://nunojob.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dscape/nano.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nano/0.0.1", + "0.0.2": "http://registry.npmjs.org/nano/0.0.2", + "0.0.3": "http://registry.npmjs.org/nano/0.0.3", + "0.1.5": "http://registry.npmjs.org/nano/0.1.5", + "0.1.6": "http://registry.npmjs.org/nano/0.1.6", + "0.1.7": "http://registry.npmjs.org/nano/0.1.7", + "0.1.8": "http://registry.npmjs.org/nano/0.1.8", + "0.1.9": "http://registry.npmjs.org/nano/0.1.9", + "0.2.0": "http://registry.npmjs.org/nano/0.2.0", + "0.3.1": "http://registry.npmjs.org/nano/0.3.1", + "0.3.2": "http://registry.npmjs.org/nano/0.3.2", + "0.4.0": "http://registry.npmjs.org/nano/0.4.0", + "0.4.1": "http://registry.npmjs.org/nano/0.4.1", + "0.4.2": "http://registry.npmjs.org/nano/0.4.2", + "0.4.3": "http://registry.npmjs.org/nano/0.4.3", + "0.4.4": "http://registry.npmjs.org/nano/0.4.4", + "0.4.5": "http://registry.npmjs.org/nano/0.4.5", + "0.4.6": "http://registry.npmjs.org/nano/0.4.6", + "0.5.3": "http://registry.npmjs.org/nano/0.5.3", + "0.5.4": "http://registry.npmjs.org/nano/0.5.4", + "0.5.5": "http://registry.npmjs.org/nano/0.5.5", + "0.5.6": "http://registry.npmjs.org/nano/0.5.6", + "0.5.7": "http://registry.npmjs.org/nano/0.5.7", + "0.5.8": "http://registry.npmjs.org/nano/0.5.8", + "0.6.0": "http://registry.npmjs.org/nano/0.6.0", + "0.6.1": "http://registry.npmjs.org/nano/0.6.1", + "0.6.2": "http://registry.npmjs.org/nano/0.6.2", + "0.6.4": "http://registry.npmjs.org/nano/0.6.4", + "0.6.5": "http://registry.npmjs.org/nano/0.6.5", + "0.6.6": "http://registry.npmjs.org/nano/0.6.6", + "0.7.0": "http://registry.npmjs.org/nano/0.7.0", + "0.7.1": "http://registry.npmjs.org/nano/0.7.1", + "0.7.2": "http://registry.npmjs.org/nano/0.7.2", + "0.7.3": "http://registry.npmjs.org/nano/0.7.3", + "0.7.4": "http://registry.npmjs.org/nano/0.7.4", + "0.8.0": "http://registry.npmjs.org/nano/0.8.0", + "0.8.1": "http://registry.npmjs.org/nano/0.8.1", + "0.8.2": "http://registry.npmjs.org/nano/0.8.2", + "0.8.3": "http://registry.npmjs.org/nano/0.8.3", + "0.8.4": "http://registry.npmjs.org/nano/0.8.4", + "0.8.5": "http://registry.npmjs.org/nano/0.8.5", + "0.8.6": "http://registry.npmjs.org/nano/0.8.6", + "0.8.7": "http://registry.npmjs.org/nano/0.8.7", + "0.9.0": "http://registry.npmjs.org/nano/0.9.0", + "0.9.1": "http://registry.npmjs.org/nano/0.9.1", + "0.9.2": "http://registry.npmjs.org/nano/0.9.2", + "0.9.3": "http://registry.npmjs.org/nano/0.9.3", + "0.9.4": "http://registry.npmjs.org/nano/0.9.4", + "0.9.5": "http://registry.npmjs.org/nano/0.9.5", + "0.9.7": "http://registry.npmjs.org/nano/0.9.7", + "0.9.8": "http://registry.npmjs.org/nano/0.9.8", + "1.0.0": "http://registry.npmjs.org/nano/1.0.0" + }, + "dist": { + "0.0.1": { + "shasum": "7159730932abb9bea03e9f655f72055233fc091c", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "1361f3cfecea6a2e81ce8571b379d4ea3127adae", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "69a94f0f528b4111b8d24ade412ba776e64e92d0", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.0.3.tgz" + }, + "0.1.5": { + "shasum": "1a989c6824d74005b7eaa443b131b7a808b46d0a", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "37b35ebef76404be7cf3966b3fc9582d12c51c13", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "b393d04b246355c7928c6c39eb991f6ce0fe43fe", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "886f61cf005a10b1cc526230fe64efbb8b431eab", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "f4debada99f7a8ce0560ec77cf31333c72008742", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.1.9.tgz" + }, + "0.2.0": { + "shasum": "7248435d90dd8a31aef26d3e50da0cad3ed812a4", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.2.0.tgz" + }, + "0.3.1": { + "shasum": "0f36f9ffe2349a55beae60be2712fc551cf1b9d9", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "7f45a1e54652947c7c554c4ac3041dfd5c1f1fbe", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.3.2.tgz" + }, + "0.4.0": { + "shasum": "6a0829afc5cd16af1a6056db5d3751db5befe47c", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "8b759c60ef433482ebd1ade1933e1ff90b55e9ea", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "17d348c42ea7054e8732121e6781160999c7c777", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "dd9a2f08a8d481124f3f5cfdd19e3d8af2e4e991", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.4.3.tgz" + }, + "0.4.4": { + "shasum": "c37e90f9bc83c9266377386984c4a699c862e355", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.4.4.tgz" + }, + "0.4.5": { + "shasum": "5820706a4c902302be9bf3ac473c0726da8d6c0f", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.4.5.tgz" + }, + "0.4.6": { + "shasum": "1d0ac7ec64a490666e8c426fbe9eb3c49a9fd372", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.4.6.tgz" + }, + "0.5.3": { + "shasum": "8ef7554909d4b81066203720716762be209bdbee", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.5.3.tgz" + }, + "0.5.4": { + "shasum": "bdb40163429853e2a249483086e8830f0f025c4e", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.5.4.tgz" + }, + "0.5.5": { + "shasum": "00f782127c6b2e79d6b31acdbc5da55df9170175", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.5.5.tgz" + }, + "0.5.6": { + "shasum": "1e4ea69b73123716bf1fe39f37900f3da6caceed", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.5.6.tgz" + }, + "0.5.7": { + "shasum": "bbec4ad48c1be7b249cad0c7e1e3fe31552c43de", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.5.7.tgz" + }, + "0.5.8": { + "shasum": "fbb4b8d8c1b845137f183c9fea62617a5d35f312", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.5.8.tgz" + }, + "0.6.0": { + "shasum": "50a89213c2155269282f252f9e1215969b0fad00", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "94e93a1f24f1376730b198b5effb622dee84341a", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.6.1.tgz" + }, + "0.6.2": { + "shasum": "4b13f0dd06790dc0e6159d5f92d7559ccf651dc6", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.6.2.tgz" + }, + "0.6.4": { + "shasum": "46e06183aaaf88c8af57fe89c06fa2934ee5452d", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.6.4.tgz" + }, + "0.6.5": { + "shasum": "fd5a9d79d1c1d8d0c9efb819e61d9af32599b4bf", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.6.5.tgz" + }, + "0.6.6": { + "shasum": "dadfbd447bf4f8b634b32f6329130c7a466b5ec8", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.6.6.tgz" + }, + "0.7.0": { + "shasum": "42b76d62a503b7b417813db9f66354456c628438", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.7.0.tgz" + }, + "0.7.1": { + "shasum": "3e42d97e9d9969091b604bf436df8669b43a78f7", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.7.1.tgz" + }, + "0.7.2": { + "shasum": "dcefc12f0f55fac2dd2c88bc037885ee3f7b5c44", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.7.2.tgz" + }, + "0.7.3": { + "shasum": "22e2af22cc058ea63890a17c5b36adb13b89dcbc", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.7.3.tgz" + }, + "0.7.4": { + "shasum": "76e8f6ebd030892a77c0912c7fc6361d3659580f", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.7.4.tgz" + }, + "0.8.0": { + "shasum": "f0a11a8317f4605e0151024b869e5f2d1aacc016", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.8.0.tgz" + }, + "0.8.1": { + "shasum": "b52444f59e92d84a938139d22ad824227f1c6d4f", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.8.1.tgz" + }, + "0.8.2": { + "shasum": "ec324682d79f809bc5831cfea44397becedf94ed", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.8.2.tgz" + }, + "0.8.3": { + "shasum": "7a54733ab564d9a407011f8c247d4bc19206fb7d", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.8.3.tgz" + }, + "0.8.4": { + "shasum": "1e9db4a88946a2c3ff4f033d75c55415480391eb", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.8.4.tgz" + }, + "0.8.5": { + "shasum": "6125ff0e7b7eeb1733bb5ded8bd83ede4ad84e5e", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.8.5.tgz" + }, + "0.8.6": { + "shasum": "2ab1f4702a04a918861ea3a33cf63525d7e10901", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.8.6.tgz" + }, + "0.8.7": { + "shasum": "0247c7c9cde174af64b5024d16ef47c8668e133e", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.8.7.tgz" + }, + "0.9.0": { + "shasum": "6b397f064e73d62f23679be6197427644f387b32", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.9.0.tgz" + }, + "0.9.1": { + "shasum": "846e2960d8cf615a997c3606c204ddf8c8e80507", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.9.1.tgz" + }, + "0.9.2": { + "shasum": "fdcf26a492fbf8fbfd69b99431048d2d8fd67260", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.9.2.tgz" + }, + "0.9.3": { + "shasum": "953ade9894155bf1084169a5cb0578a63ba430b8", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.9.3.tgz" + }, + "0.9.4": { + "shasum": "92b59c2feccdacf9b15dc3c9485fc820c4a56d7c", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.9.4.tgz" + }, + "0.9.5": { + "shasum": "7ae7052a38b71bad70d9f4b7b29d090c691b339d", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.9.5.tgz" + }, + "0.9.7": { + "shasum": "72c56c1e993a51adf9ed5db1ac868c45333d3f09", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.9.7.tgz" + }, + "0.9.8": { + "shasum": "52a2ce96f354625eb926d51ce4b1846f701ab861", + "tarball": "http://registry.npmjs.org/nano/-/nano-0.9.8.tgz" + }, + "1.0.0": { + "shasum": "2d6cbe5af04dbe9eb69a3e640aba994bae0df659", + "tarball": "http://registry.npmjs.org/nano/-/nano-1.0.0.tgz" + } + }, + "keywords": [ + "couchdb", + "data", + "request", + "json", + "nosql", + "micro", + "nano", + "database" + ], + "url": "http://registry.npmjs.org/nano/" + }, + "nanolog": { + "name": "nanolog", + "description": "Flexible but Simple Logger", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "Sigh, yes, another logging module.\n\nThe goals:\n\n * Flexible -- format of log entry, where to log\n * Simple -- Simple api\n * Multiple output transports, with different configs and log levels\n\n### Usage\n\nThe default logger is set to log to stdout, with coloured logs\n\n```js\nvar log = require('nanolog');\nlog.info(\"My Message\")\nlog.error(\"Log my error\")\nlog.debug(\"Debug info\", {msg: 'All params are output'})\n```\n\nYou can set the default output level, and even the default log levels:\n\n```js\nlog.set({levels: {bad: 0, good: 1, boring: 2}, level: 'good'})\nlog.bad(\"Uh Oh\")\nlog.boring(\"Not logged\")\n```\n\n\nnanolog uses a stack of output functions to write our logs. You can\nset your own with 'to'. You can also set a log level for each output\nfunction that will override the default:\n\n```js\nlog.to(log.out.stdout(), log.out.file({file: './log.txt', level: 'warn'}))\n```\n\nThe output functions use a simple substitution format that lets \nyou specify what you want your logs to look like:\n\n```js\nlog.to(log.out.stdout({format: \"nanolog: %message%\"}))\nfmt = \"%(white|bold)timestamp% [%(color)level%] %(color)message%\"\nlog.to(log.out.stdout({format: fmt})\n```\n\nThe logging functionality revolves around a 'LogEntry' object. This\nobject defines the attributes that can be written. You can easily \ncustomize the logging functionality by adding functions to this\nobject. `timestamp`, `datetime`, and `color` are all builtin log\nfunctions that you can use or override.\n\n```js\nlog.entry.upcaseMessage = function(entry) {\n return entry.get('message').toUpperCase();\n}\nlog.to(log.out.stdout({format: \"%upcaseMessage%\"}))\nlog.info(\"hello, world\")\n// result:\nHELLO, WORLD\n```\n\nBy default, all operations work on the default logger that is returned\nfrom the `nanolog` module. You can create other loggers as well:\n\n```js\nvar log = require('nanolog');\nvar filelog = log.create('filelog');\nfilelog.to(log.out.file({file: './log.txt'}));\nfilelog.info(\"This goes to the log file\");\n````\n\nFinally, you can drill down and be specific about what gets output by\nusing the `module` feature.\n\n```js\nvar log = require('nanolog');\nlog.set({modules: {feature: 'debug', root: 'info'})\n\nvar featureLogger = log.module('feature');\nvar rootLogger = log.module('root');\n\nlog.info(\"You can set module level overrides on output level\");\nfeatureLogger.debug(\"This will be displayed\");\nrootLogger.debug(\"This will not be displayed\");\n```\n\n\nAPI\n===\n\n### set\n\nSet new options on the logger.\n\n*levels*: An object, keys are level name, value is the integer level.\n\n Default:\n {'panic': 0, 'error': 1, 'warn': 2, 'info': 3, 'debug': 4, 'trace':\n5}\n\n*level*: `string` level to log at, default: 'info'\n\n*modules*: An object providing custom log levels for modules:\n\n Example:\n {feature1: 'debug', noisyFeature: 'warn'}\n\n### attrs\n\n`attrs` is an object on the logger. It's keys are functions that can\nprovide custom data to the output function. By default, attrs is\nconfigured with a number of useful functions:\n\nThe entry object starts with the attributes provided by the log\nfunctions:\n\n * message: The first parameter given to the log function.\n * params: An array of any other parameters passed\n * level: The level of the requested log function\n\nBy default attrs is configured with a number of useful functions:\n\n * timestamp:\n * datetime: provide a formatted datetime value\n * inspect: outputs any additional parameters, using util.inspect\n * color: The default color for the level.\n\nCustom attrs can be provided (or the defaults overriden). Example:\n\n```js\nlog.entry.upcaseMessage = function(entry) {\n return entry.get('message').toUpperCase();\n}\n```\n\n### to \n\nSets the output stack:\n\n```js\nlog.to(log.out.stdout(), log.out.file({file: './log.txt', level:\n'warn'}))\n```\n\n\n### module\n\nReturns a logger object that is module specific. You can then set\nmodule specific logger levels (to turn up/down certain sections of\ncode).\n", + "maintainers": [ + { + "name": "wvl", + "email": "wayne@larsen.st" + } + ], + "time": { + "modified": "2011-12-05T02:00:49.829Z", + "created": "2011-12-05T02:00:48.420Z", + "0.1.0": "2011-12-05T02:00:49.829Z" + }, + "author": { + "name": "Wayne Larsen", + "email": "wayne@larsen.st" + }, + "repository": { + "url": "https://github.com/wvl/nanolog.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/nanolog/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "5db0f6d0a0e98f735a62b1d2f02ac6174eafbca6", + "tarball": "http://registry.npmjs.org/nanolog/-/nanolog-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/nanolog/" + }, + "nanostate": { + "name": "nanostate", + "description": "A dead simple FSM", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "tralamazza", + "email": "tralamazza@gmail.com" + } + ], + "time": { + "modified": "2011-06-13T02:21:01.977Z", + "created": "2011-06-09T07:05:32.760Z", + "0.0.1": "2011-06-09T07:05:33.588Z", + "0.0.2": "2011-06-09T07:38:17.389Z", + "0.0.3": "2011-06-10T02:39:29.420Z", + "0.0.4": "2011-06-13T02:21:01.977Z" + }, + "author": { + "name": "Daniel Tralamazza" + }, + "repository": { + "type": "git", + "url": "git://github.com/tralamazza/NanoState.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nanostate/0.0.1", + "0.0.2": "http://registry.npmjs.org/nanostate/0.0.2", + "0.0.3": "http://registry.npmjs.org/nanostate/0.0.3", + "0.0.4": "http://registry.npmjs.org/nanostate/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "1661e17967c8ba29ff89b5aec28bbcc38213e0be", + "tarball": "http://registry.npmjs.org/nanostate/-/nanostate-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "e40686cc7e55d9c0b6a52c335bb83dbf35ffdc71", + "tarball": "http://registry.npmjs.org/nanostate/-/nanostate-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "632563878c7fddf29d97a5a0dab1c9678c62c248", + "tarball": "http://registry.npmjs.org/nanostate/-/nanostate-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "317223700000a60f52d1b02577fe31354c4e144e", + "tarball": "http://registry.npmjs.org/nanostate/-/nanostate-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/nanostate/" + }, + "nap": { + "name": "nap", + "description": "An asset packager for node.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "craigspaeth", + "email": "craigspaeth@gmail.com" + } + ], + "time": { + "modified": "2011-10-19T18:24:05.897Z", + "created": "2011-10-19T18:23:42.212Z", + "0.1.0": "2011-10-19T18:24:05.897Z" + }, + "author": { + "name": "Craig Spaeth", + "email": "craigspaeth@gmail.com", + "url": "http://craigspaeth.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/craigspaeth/nap.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/nap/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "6416cd452017bdd0514f399e68cea9e55cd39762", + "tarball": "http://registry.npmjs.org/nap/-/nap-0.1.0.tgz" + } + }, + "keywords": [ + "node", + "asset", + "package", + "css", + "javascript", + "javascript templates" + ], + "url": "http://registry.npmjs.org/nap/" + }, + "narcissus": { + "name": "narcissus", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "mozilla", + "email": "dherman@mozilla.com" + } + ], + "time": { + "modified": "2011-02-10T01:24:40.283Z", + "created": "2011-02-10T01:24:39.947Z", + "0.0.1": "2011-02-10T01:24:40.283Z" + }, + "author": { + "name": "Mozilla" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/narcissus/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "b84ca9e12192aeecbce4b65b39074eb6a9d509d7", + "tarball": "http://registry.npmjs.org/narcissus/-/narcissus-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/narcissus/" + }, + "nariya": { + "name": "nariya", + "description": "Continious Deployment for NodeJS", + "dist-tags": { + "latest": "0.1.14" + }, + "maintainers": [ + { + "name": "arunoda", + "email": "arunoda.susiripala@gmail.com" + } + ], + "time": { + "modified": "2011-12-14T12:12:43.923Z", + "created": "2011-09-12T19:46:34.894Z", + "0.0.1": "2011-12-07T19:17:00.612Z", + "0.0.2": "2011-12-07T19:17:00.612Z", + "0.0.3": "2011-12-07T19:17:00.612Z", + "0.0.4": "2011-12-07T19:17:00.612Z", + "0.0.5": "2011-12-07T19:17:00.612Z", + "0.0.6": "2011-12-07T19:17:00.612Z", + "0.0.7": "2011-12-07T19:17:00.612Z", + "0.1.0": "2011-12-07T19:17:00.612Z", + "0.1.1": "2011-12-07T19:17:00.612Z", + "0.1.2": "2011-12-07T19:17:00.612Z", + "0.1.3": "2011-12-07T19:17:00.612Z", + "0.1.4": "2011-12-07T19:17:00.612Z", + "0.1.5": "2011-12-07T19:17:00.612Z", + "0.1.6": "2011-12-07T19:17:00.612Z", + "0.1.7": "2011-11-16T05:35:00.424Z", + "0.1.8": "2011-11-16T05:49:30.354Z", + "0.1.9": "2011-12-07T19:17:00.612Z", + "0.1.10": "2011-12-07T19:27:33.122Z", + "0.1.11": "2011-12-07T19:47:33.297Z", + "0.1.12": "2011-12-10T16:12:47.169Z", + "0.1.13": "2011-12-10T18:05:31.730Z", + "0.1.14": "2011-12-14T12:12:43.923Z" + }, + "author": { + "name": "Arunoda Susiripala", + "email": "arunoda.susiripala@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nariya/0.0.1", + "0.0.2": "http://registry.npmjs.org/nariya/0.0.2", + "0.0.3": "http://registry.npmjs.org/nariya/0.0.3", + "0.0.4": "http://registry.npmjs.org/nariya/0.0.4", + "0.0.5": "http://registry.npmjs.org/nariya/0.0.5", + "0.0.6": "http://registry.npmjs.org/nariya/0.0.6", + "0.0.7": "http://registry.npmjs.org/nariya/0.0.7", + "0.1.0": "http://registry.npmjs.org/nariya/0.1.0", + "0.1.1": "http://registry.npmjs.org/nariya/0.1.1", + "0.1.2": "http://registry.npmjs.org/nariya/0.1.2", + "0.1.3": "http://registry.npmjs.org/nariya/0.1.3", + "0.1.4": "http://registry.npmjs.org/nariya/0.1.4", + "0.1.5": "http://registry.npmjs.org/nariya/0.1.5", + "0.1.6": "http://registry.npmjs.org/nariya/0.1.6", + "0.1.7": "http://registry.npmjs.org/nariya/0.1.7", + "0.1.8": "http://registry.npmjs.org/nariya/0.1.8", + "0.1.9": "http://registry.npmjs.org/nariya/0.1.9", + "0.1.10": "http://registry.npmjs.org/nariya/0.1.10", + "0.1.11": "http://registry.npmjs.org/nariya/0.1.11", + "0.1.12": "http://registry.npmjs.org/nariya/0.1.12", + "0.1.13": "http://registry.npmjs.org/nariya/0.1.13", + "0.1.14": "http://registry.npmjs.org/nariya/0.1.14" + }, + "dist": { + "0.0.1": { + "shasum": "00a95d283490f0b352f7524f899cecc37dcd20f0", + "tarball": "http://registry.npmjs.org/nariya/-/nariya-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "4bb593a69a30c24efbf87288526d33b235e87bb5", + "tarball": "http://registry.npmjs.org/nariya/-/nariya-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "3958493bd951b39c69f976b13a1281a2ce0d8238", + "tarball": "http://registry.npmjs.org/nariya/-/nariya-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "29125b2374cef15c50b87640a7b4b60d916d897f", + "tarball": "http://registry.npmjs.org/nariya/-/nariya-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "34f1cffed650d3ff666f65fd88ebe8ceaa4c5fd4", + "tarball": "http://registry.npmjs.org/nariya/-/nariya-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "e754f8586872f101331264b90808665d42ac3de9", + "tarball": "http://registry.npmjs.org/nariya/-/nariya-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "b92ba61c6bd229d25a5256cff2d815d4a8fee41c", + "tarball": "http://registry.npmjs.org/nariya/-/nariya-0.0.7.tgz" + }, + "0.1.0": { + "shasum": "b0a242e0fc49f5c7a995304f8073215004b3f385", + "tarball": "http://registry.npmjs.org/nariya/-/nariya-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "8a12b4f758684a5b2be610da68ebde2fbac664a3", + "tarball": "http://registry.npmjs.org/nariya/-/nariya-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "12579ce53e0ad2c22a385b67ab6e889eb0a8d64b", + "tarball": "http://registry.npmjs.org/nariya/-/nariya-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "64d52f9cdfa715e791312a57f712e1ba159eb26e", + "tarball": "http://registry.npmjs.org/nariya/-/nariya-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "cc7e8528c13b04addd6e37af3368df7be1afc02b", + "tarball": "http://registry.npmjs.org/nariya/-/nariya-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "13a95bcf335225189e5806da811f2b468571d06b", + "tarball": "http://registry.npmjs.org/nariya/-/nariya-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "592cdeca12b1f36610b63be4fbf3ae4ffae4bbbc", + "tarball": "http://registry.npmjs.org/nariya/-/nariya-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "cdf72d04d4f4dd83d64ee441435fa3cb6adae457", + "tarball": "http://registry.npmjs.org/nariya/-/nariya-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "d9d8be0316a58efa607e0c93b9392c86d0aad200", + "tarball": "http://registry.npmjs.org/nariya/-/nariya-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "1f5dca4987dce671e626e924b236f993a314e02d", + "tarball": "http://registry.npmjs.org/nariya/-/nariya-0.1.9.tgz" + }, + "0.1.10": { + "shasum": "f384b523d6b81211ec6a6dca56a13b2ae2376bfe", + "tarball": "http://registry.npmjs.org/nariya/-/nariya-0.1.10.tgz" + }, + "0.1.11": { + "shasum": "7a30df2eae88bdd521040407f89e753242d002e4", + "tarball": "http://registry.npmjs.org/nariya/-/nariya-0.1.11.tgz" + }, + "0.1.12": { + "shasum": "6f9126bb9826e2c0ba750c8441ac8e067b9a91df", + "tarball": "http://registry.npmjs.org/nariya/-/nariya-0.1.12.tgz" + }, + "0.1.13": { + "shasum": "5b555b862fd92b83757ffedba94ce0672a44587c", + "tarball": "http://registry.npmjs.org/nariya/-/nariya-0.1.13.tgz" + }, + "0.1.14": { + "shasum": "20e42fafa911d256c170b002773af1cf715e9c7f", + "tarball": "http://registry.npmjs.org/nariya/-/nariya-0.1.14.tgz" + } + }, + "keywords": [ + "Continious", + "Deployment", + "Integration" + ], + "url": "http://registry.npmjs.org/nariya/" + }, + "narrativ": { + "name": "narrativ", + "description": "Kind of a rip off of Docco", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "chrisdickinson", + "email": "chris@neversaw.us" + } + ], + "time": { + "modified": "2011-03-27T01:52:08.721Z", + "created": "2011-03-26T08:35:46.925Z", + "0.0.2": "2011-03-26T08:35:47.169Z", + "0.0.3": "2011-03-26T08:50:07.613Z", + "0.0.4": "2011-03-27T01:26:40.386Z", + "0.0.5": "2011-03-27T01:52:08.721Z" + }, + "author": { + "name": "Chris Dickinson" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/narrativ/0.0.2", + "0.0.3": "http://registry.npmjs.org/narrativ/0.0.3", + "0.0.4": "http://registry.npmjs.org/narrativ/0.0.4", + "0.0.5": "http://registry.npmjs.org/narrativ/0.0.5" + }, + "dist": { + "0.0.2": { + "tarball": "http://registry.npmjs.org/narrativ/-/narrativ-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/narrativ/-/narrativ-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://registry.npmjs.org/narrativ/-/narrativ-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://registry.npmjs.org/narrativ/-/narrativ-0.0.5.tgz" + } + }, + "keywords": [ + "documentation", + "docs", + "generator" + ], + "url": "http://registry.npmjs.org/narrativ/" + }, + "narrow": { + "name": "narrow", + "description": "Library shrinks a given callback parallel execution concurrency in a limited number of threads, receiving the bunch of data (array of tasks).", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "octave", + "email": "chinsay@gmail.com" + } + ], + "time": { + "modified": "2011-08-11T14:01:43.788Z", + "created": "2011-04-02T12:39:32.470Z", + "0.0.1": "2011-04-02T12:39:32.894Z", + "0.0.2": "2011-08-11T14:01:43.788Z" + }, + "author": { + "name": "Yuriy Bogdanov", + "email": "chinsay@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/narrow/0.0.1", + "0.0.2": "http://registry.npmjs.org/narrow/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "c61bc99568ec67cd0fa75f741209d23a48c383ab", + "tarball": "http://registry.npmjs.org/narrow/-/narrow-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "7fe479c3d96f0da2c9fc9dcdd06d673c270f4b8a", + "tarball": "http://registry.npmjs.org/narrow/-/narrow-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/narrow/" + }, + "narwhal": { + "name": "narwhal", + "description": "A general purpose JavaScript library", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "nathan", + "email": "nrstott@gmail.com" + } + ], + "versions": { + "0.0.2": "http://registry.npmjs.org/narwhal/0.0.2" + }, + "dist": { + "0.0.2": { + "tarball": "http://packages:5984/narwhal/-/narwhal-0.0.2.tgz" + } + }, + "keywords": [ + "javascript", + "engine", + "platform" + ], + "url": "http://registry.npmjs.org/narwhal/" + }, + "narwhal-lib": { + "name": "narwhal-lib", + "description": "A general purpose JavaScript library", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "rkh", + "email": "k.haase@finn.de" + } + ], + "versions": { + "0.0.2": "http://registry.npmjs.org/narwhal-lib/0.0.2" + }, + "dist": { + "0.0.2": { + "tarball": "http://packages:5984/narwhal-lib/-/narwhal-lib-0.0.2.tgz" + } + }, + "keywords": [ + "javascript", + "engine", + "platform" + ], + "url": "http://registry.npmjs.org/narwhal-lib/" + }, + "nasa": { + "name": "nasa", + "description": "A client for NASA's data API", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "ecto", + "email": "diffference@gmail.com" + } + ], + "time": { + "modified": "2011-10-23T01:37:12.751Z", + "created": "2011-10-22T01:55:59.318Z", + "0.0.0": "2011-10-22T01:55:59.701Z", + "0.0.1": "2011-10-23T01:23:46.572Z" + }, + "author": { + "name": "Cam Pedersen", + "email": "diffference@gmail.com", + "url": "http://campedersen.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/ecto/node-nasa.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/nasa/0.0.0", + "0.0.1": "http://registry.npmjs.org/nasa/0.0.1" + }, + "dist": { + "0.0.0": { + "shasum": "22f13fa3fbe64b61ed3570408c6b23e5deea7536", + "tarball": "http://registry.npmjs.org/nasa/-/nasa-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "4a9b3c27b12d4bb2410efee98015d8c30944bc4d", + "tarball": "http://registry.npmjs.org/nasa/-/nasa-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/nasa/" + }, + "nat": { + "name": "nat", + "description": "Node Nat is a user-based http proxy/nat for NodeJS", + "dist-tags": { + "latest": "0.1.18" + }, + "maintainers": [ + { + "name": "sethvargo", + "email": "sethvargo@gmail.com" + } + ], + "time": { + "modified": "2011-11-28T14:09:44.495Z", + "created": "2011-10-17T23:40:28.883Z", + "0.1.1": "2011-10-17T23:40:29.131Z", + "0.1.2": "2011-10-18T03:22:07.105Z", + "0.1.3": "2011-10-18T03:33:25.671Z", + "0.1.4": "2011-10-18T04:18:03.866Z", + "0.1.5": "2011-10-18T20:56:20.675Z", + "0.1.6": "2011-10-19T23:02:53.035Z", + "0.1.7": "2011-10-19T23:44:26.865Z", + "0.1.8": "2011-10-21T20:55:16.495Z", + "0.1.9": "2011-10-21T21:05:34.014Z", + "0.1.10": "2011-10-21T21:08:53.450Z", + "0.1.11": "2011-10-27T15:34:10.994Z", + "0.1.12": "2011-10-30T03:48:15.838Z", + "0.1.13": "2011-11-05T17:58:45.302Z", + "0.1.14": "2011-11-11T20:54:43.806Z", + "0.1.15": "2011-11-11T23:35:19.735Z", + "0.1.16": "2011-11-16T18:29:55.467Z", + "0.1.17": "2011-11-22T23:48:14.462Z", + "0.1.18": "2011-11-28T14:09:44.495Z" + }, + "author": { + "name": "Seth Vargo", + "email": "sethvargo@gmail.com", + "url": "http://sethvargo.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/sethvargo/node-nat.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/nat/0.1.1", + "0.1.2": "http://registry.npmjs.org/nat/0.1.2", + "0.1.3": "http://registry.npmjs.org/nat/0.1.3", + "0.1.4": "http://registry.npmjs.org/nat/0.1.4", + "0.1.5": "http://registry.npmjs.org/nat/0.1.5", + "0.1.6": "http://registry.npmjs.org/nat/0.1.6", + "0.1.7": "http://registry.npmjs.org/nat/0.1.7", + "0.1.8": "http://registry.npmjs.org/nat/0.1.8", + "0.1.9": "http://registry.npmjs.org/nat/0.1.9", + "0.1.10": "http://registry.npmjs.org/nat/0.1.10", + "0.1.11": "http://registry.npmjs.org/nat/0.1.11", + "0.1.12": "http://registry.npmjs.org/nat/0.1.12", + "0.1.13": "http://registry.npmjs.org/nat/0.1.13", + "0.1.14": "http://registry.npmjs.org/nat/0.1.14", + "0.1.15": "http://registry.npmjs.org/nat/0.1.15", + "0.1.16": "http://registry.npmjs.org/nat/0.1.16", + "0.1.17": "http://registry.npmjs.org/nat/0.1.17", + "0.1.18": "http://registry.npmjs.org/nat/0.1.18" + }, + "dist": { + "0.1.1": { + "shasum": "69e939b6f481da03f857a788eac429084c957aba", + "tarball": "http://registry.npmjs.org/nat/-/nat-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "f0c08651fa44be96b3b7805b1edb672106de1ad2", + "tarball": "http://registry.npmjs.org/nat/-/nat-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "1f8158df7dda7608b0f14e8c6edea0ae6f8eb523", + "tarball": "http://registry.npmjs.org/nat/-/nat-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "e94d193695c4e7faf9929596578f8bc2947e1068", + "tarball": "http://registry.npmjs.org/nat/-/nat-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "211b0e8fa6c51036fbc2599da6ba829db3298e62", + "tarball": "http://registry.npmjs.org/nat/-/nat-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "da3418c401d68cdbb51dbae5ebbeac2c300b5855", + "tarball": "http://registry.npmjs.org/nat/-/nat-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "33054db475dc39af7ac9fe6a86b676c00d23f962", + "tarball": "http://registry.npmjs.org/nat/-/nat-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "40080aee054e105d135c49fa551df84463b85514", + "tarball": "http://registry.npmjs.org/nat/-/nat-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "b6aed88b0c29c2a8d06cf9a50afe36f0658dd6ae", + "tarball": "http://registry.npmjs.org/nat/-/nat-0.1.9.tgz" + }, + "0.1.10": { + "shasum": "c55f38e1f3944bb9151a3a660ed17c736b9f4973", + "tarball": "http://registry.npmjs.org/nat/-/nat-0.1.10.tgz" + }, + "0.1.11": { + "shasum": "5ad8687564016442453783d61ffaff603a2b747d", + "tarball": "http://registry.npmjs.org/nat/-/nat-0.1.11.tgz" + }, + "0.1.12": { + "shasum": "0b8acb829876484cbe71cdc085b8fc1142b34e10", + "tarball": "http://registry.npmjs.org/nat/-/nat-0.1.12.tgz" + }, + "0.1.13": { + "shasum": "c21800de866ff190103a0b2c7e02f9b3970d2c97", + "tarball": "http://registry.npmjs.org/nat/-/nat-0.1.13.tgz" + }, + "0.1.14": { + "shasum": "7ab024f1b42d594f84b1399f7e52f30b781ee4e0", + "tarball": "http://registry.npmjs.org/nat/-/nat-0.1.14.tgz" + }, + "0.1.15": { + "shasum": "f3291af69abaefec0c1b4c85bdb8cf081295f06e", + "tarball": "http://registry.npmjs.org/nat/-/nat-0.1.15.tgz" + }, + "0.1.16": { + "shasum": "2ed57eb2897517aa0beee98aff4c3bf26fdd3529", + "tarball": "http://registry.npmjs.org/nat/-/nat-0.1.16.tgz" + }, + "0.1.17": { + "shasum": "9ac016909185b2b9c58fd6b60f0a5b6371d9a69f", + "tarball": "http://registry.npmjs.org/nat/-/nat-0.1.17.tgz" + }, + "0.1.18": { + "shasum": "2ed1de90354743174e55aa7dcb656ed7a27f8a89", + "tarball": "http://registry.npmjs.org/nat/-/nat-0.1.18.tgz" + } + }, + "keywords": [ + "nat", + "node-nat", + "proxy", + "http proxy" + ], + "url": "http://registry.npmjs.org/nat/" + }, + "native2ascii": { + "name": "native2ascii", + "description": "native2ascii", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "yyfrankyy", + "email": "yyfrankyy@gmail.com" + } + ], + "time": { + "modified": "2011-11-13T16:56:49.112Z", + "created": "2011-08-22T09:17:49.248Z", + "0.0.1": "2011-08-22T09:17:50.769Z", + "0.0.2": "2011-11-09T06:09:58.566Z", + "0.0.3": "2011-11-13T14:28:38.915Z", + "0.0.4": "2011-11-13T16:56:49.112Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/native2ascii/0.0.1", + "0.0.2": "http://registry.npmjs.org/native2ascii/0.0.2", + "0.0.3": "http://registry.npmjs.org/native2ascii/0.0.3", + "0.0.4": "http://registry.npmjs.org/native2ascii/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "4c61ec84e335187b6d5a24a2e9363c2bd9606d18", + "tarball": "http://registry.npmjs.org/native2ascii/-/native2ascii-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "7476e36e1e6508c2c04191b382e2d6a48be99871", + "tarball": "http://registry.npmjs.org/native2ascii/-/native2ascii-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "8f733a16a3542628eea71f0843068680e197f852", + "tarball": "http://registry.npmjs.org/native2ascii/-/native2ascii-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "9166514fd20fd086f82799da55fdbf50d02a816d", + "tarball": "http://registry.npmjs.org/native2ascii/-/native2ascii-0.0.4.tgz" + } + }, + "keywords": [ + "native2ascii", + "ascii", + "encode", + "decode" + ], + "url": "http://registry.npmjs.org/native2ascii/" + }, + "natives": { + "name": "natives", + "description": "Require all nodes builtin modules (natives) in one go", + "dist-tags": { + "latest": "0.0.5", + "stable": "0.0.5", + "test": "0.0.3" + }, + "maintainers": [ + { + "name": "kof", + "email": "oleg008@gmail.com" + } + ], + "time": { + "modified": "2010-12-30T11:53:58.228Z", + "created": "2010-12-27T12:02:14.627Z", + "0.0.1": "2010-12-27T12:02:15.146Z", + "0.0.2": "2010-12-27T13:00:53.872Z", + "0.0.3": "2010-12-28T11:05:09.362Z", + "0.0.4": "2010-12-29T16:11:01.097Z", + "0.0.5": "2010-12-30T11:49:06.835Z" + }, + "author": { + "name": "Oleg Slobodskoi", + "email": "oleg008@gmail.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/kof/node-natives.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/natives/0.0.1", + "0.0.2": "http://registry.npmjs.org/natives/0.0.2", + "0.0.3": "http://registry.npmjs.org/natives/0.0.3", + "0.0.4": "http://registry.npmjs.org/natives/0.0.4", + "0.0.5": "http://registry.npmjs.org/natives/0.0.5" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/natives/-/natives-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/natives/-/natives-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "e5e685e666c4238780de5a4ea4f0757d1fe29a7b", + "tarball": "http://registry.npmjs.org/natives/-/natives-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "5983cb8835b31b7638318af506727f1afddfb43b", + "tarball": "http://registry.npmjs.org/natives/-/natives-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "1db011f867dfc6d2dc2432ed9dfee8d173d03fc3", + "tarball": "http://registry.npmjs.org/natives/-/natives-0.0.5.tgz" + } + }, + "keywords": [ + "natives", + "builtin" + ], + "url": "http://registry.npmjs.org/natives/" + }, + "nativeUtil": { + "name": "nativeUtil", + "description": "native extension utilities from node and v8", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "yyfrankyy", + "email": "yyfrankyy@gmail.com" + } + ], + "time": { + "modified": "2011-11-28T06:34:24.252Z", + "created": "2011-08-22T10:50:56.343Z", + "0.0.1": "2011-08-22T10:50:58.252Z", + "0.0.2": "2011-08-22T15:28:06.981Z", + "0.0.3": "2011-08-22T15:40:51.143Z", + "0.0.4": "2011-11-28T06:34:24.252Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nativeUtil/0.0.1", + "0.0.2": "http://registry.npmjs.org/nativeUtil/0.0.2", + "0.0.3": "http://registry.npmjs.org/nativeUtil/0.0.3", + "0.0.4": "http://registry.npmjs.org/nativeUtil/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "9512310c567ad2744f378cc14226e28cbfe4fac0", + "tarball": "http://registry.npmjs.org/nativeUtil/-/nativeUtil-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "1c1a276d82e7c2d19da8656619b9b7b527361278", + "tarball": "http://registry.npmjs.org/nativeUtil/-/nativeUtil-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "43077c39fcb1c6d53a428499ac3081da0a44b0c4", + "tarball": "http://registry.npmjs.org/nativeUtil/-/nativeUtil-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "54d43d435c716d7ef014f8c3fca9e92f1e1e5cc3", + "tarball": "http://registry.npmjs.org/nativeUtil/-/nativeUtil-0.0.4.tgz" + } + }, + "keywords": [ + "node", + "v8", + "gc", + "extension" + ], + "url": "http://registry.npmjs.org/nativeUtil/" + }, + "natural": { + "name": "natural", + "dist-tags": { + "latest": "0.0.61" + }, + "maintainers": [ + { + "name": "chrisumbel", + "email": "chris@chrisumbel.com" + } + ], + "time": { + "modified": "2011-11-28T02:40:50.485Z", + "created": "2011-05-11T03:06:48.650Z", + "0.0.3": "2011-05-11T03:06:48.811Z", + "0.0.4": "2011-05-11T22:43:28.336Z", + "0.0.5": "2011-05-11T23:25:07.463Z", + "0.0.7": "2011-05-16T03:17:38.482Z", + "0.0.8": "2011-05-16T21:39:18.218Z", + "0.0.9": "2011-05-16T23:36:26.808Z", + "0.0.10": "2011-05-17T03:08:29.164Z", + "0.0.11": "2011-05-17T23:52:57.187Z", + "0.0.12": "2011-05-18T02:23:01.058Z", + "0.0.13": "2011-05-20T01:02:40.434Z", + "0.0.14": "2011-05-21T16:52:36.218Z", + "0.0.15": "2011-05-22T01:44:49.308Z", + "0.0.16": "2011-05-22T20:55:11.261Z", + "0.0.17": "2011-05-23T01:29:21.701Z", + "0.0.18": "2011-05-23T03:01:35.710Z", + "0.0.19": "2011-05-23T03:55:26.024Z", + "0.0.20": "2011-06-04T21:28:04.710Z", + "0.0.21": "2011-06-05T03:49:18.830Z", + "0.0.22": "2011-06-05T15:36:47.462Z", + "0.0.23": "2011-06-14T01:55:49.522Z", + "0.0.24": "2011-07-12T11:42:00.458Z", + "0.0.25": "2011-07-13T12:09:29.359Z", + "0.0.26": "2011-07-20T12:02:08.378Z", + "0.0.27": "2011-07-21T10:29:31.008Z", + "0.0.28": "2011-08-05T13:21:38.720Z", + "0.0.29": "2011-08-15T02:28:54.061Z", + "0.0.30": "2011-08-15T02:30:39.968Z", + "0.0.31": "2011-08-15T02:33:34.507Z", + "0.0.32": "2011-08-15T11:53:45.727Z", + "0.0.33": "2011-08-16T03:06:49.676Z", + "0.0.34": "2011-08-16T03:10:45.354Z", + "0.0.35": "2011-08-16T12:17:43.645Z", + "0.0.40": "2011-08-16T21:18:26.978Z", + "0.0.41": "2011-08-17T16:00:21.670Z", + "0.0.42": "2011-08-20T16:02:03.979Z", + "0.0.43": "2011-08-22T01:09:03.693Z", + "0.0.44": "2011-08-28T01:20:55.045Z", + "0.0.45": "2011-08-29T01:18:32.894Z", + "0.0.46": "2011-08-29T01:40:50.590Z", + "0.0.47": "2011-08-29T02:32:40.105Z", + "0.0.48": "2011-08-30T10:45:17.655Z", + "0.0.49": "2011-08-31T00:18:38.195Z", + "0.0.50": "2011-09-04T18:07:43.073Z", + "0.0.51": "2011-09-04T18:35:51.237Z", + "0.0.52": "2011-09-04T19:20:45.184Z", + "0.0.53": "2011-09-24T13:22:14.814Z", + "0.0.54": "2011-09-26T12:06:54.477Z", + "0.0.55": "2011-10-04T00:03:31.795Z", + "0.0.56": "2011-11-06T12:45:33.622Z", + "0.0.57": "2011-11-13T17:55:22.093Z", + "0.0.58": "2011-11-25T02:12:14.476Z", + "0.0.60": "2011-11-28T01:48:37.821Z", + "0.0.61": "2011-11-28T02:40:50.485Z" + }, + "author": { + "name": "Chris Umbel", + "email": "chris@chrisumbel.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/chrisumbel/natural.git" + }, + "description": "General natural language (tokenizing, stemming, classification, inflection, phonetics, tfidf, WordNet) facilities for node.", + "versions": { + "0.0.54": "http://registry.npmjs.org/natural/0.0.54", + "0.0.27": "http://registry.npmjs.org/natural/0.0.27", + "0.0.55": "http://registry.npmjs.org/natural/0.0.55", + "0.0.56": "http://registry.npmjs.org/natural/0.0.56", + "0.0.57": "http://registry.npmjs.org/natural/0.0.57", + "0.0.58": "http://registry.npmjs.org/natural/0.0.58", + "0.0.60": "http://registry.npmjs.org/natural/0.0.60", + "0.0.61": "http://registry.npmjs.org/natural/0.0.61" + }, + "dist": { + "0.0.54": { + "shasum": "d7b8690c0b22dc72740c275de1eb7d593e2a3cb6", + "tarball": "http://registry.npmjs.org/natural/-/natural-0.0.54.tgz" + }, + "0.0.27": { + "shasum": "da1e0881abb74edeb29b8d7b751177ba2c954a33", + "tarball": "http://registry.npmjs.org/natural/-/natural-0.0.27.tgz" + }, + "0.0.55": { + "shasum": "8f36d139a7fed5566bf84f44da5a07194b22d2e8", + "tarball": "http://registry.npmjs.org/natural/-/natural-0.0.55.tgz" + }, + "0.0.56": { + "shasum": "e47ad7e30806019b81d2da2edc5a766571a41073", + "tarball": "http://registry.npmjs.org/natural/-/natural-0.0.56.tgz" + }, + "0.0.57": { + "shasum": "f4dc6e1933bf653aafdac28ba6358c471773475f", + "tarball": "http://registry.npmjs.org/natural/-/natural-0.0.57.tgz" + }, + "0.0.58": { + "shasum": "f50498c74bc386b6be0aabbc91a148e070972ebc", + "tarball": "http://registry.npmjs.org/natural/-/natural-0.0.58.tgz" + }, + "0.0.60": { + "shasum": "cb11e74899e457e9d915ad37e6d0d098b4d51e33", + "tarball": "http://registry.npmjs.org/natural/-/natural-0.0.60.tgz" + }, + "0.0.61": { + "shasum": "35ba52ffbc47129ea99af513d024ce1b48be552d", + "tarball": "http://registry.npmjs.org/natural/-/natural-0.0.61.tgz" + } + }, + "keywords": [ + "natural", + "language", + "porter", + "lancaster", + "stemmer", + "bayes", + "classifier", + "phonetic", + "metaphone", + "inflector", + "wordnet", + "tf-idf", + "logistic", + "regression" + ], + "url": "http://registry.npmjs.org/natural/" + }, + "naturalsort": { + "name": "naturalsort", + "description": "sort string keys with numbers inside of them naturally", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "bat", + "email": "ben@benatkin.com" + } + ], + "time": { + "modified": "2011-08-02T22:53:36.755Z", + "created": "2011-08-02T22:53:32.200Z", + "0.0.1": "2011-08-02T22:53:36.755Z" + }, + "author": { + "name": "Ben Atkin", + "email": "ben@benatkin.com", + "url": "http://benatkin.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/benatkin/naturalsort.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/naturalsort/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "1fe2e87a21ef6c2a3d2852137359d5e21680b967", + "tarball": "http://registry.npmjs.org/naturalsort/-/naturalsort-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/naturalsort/" + }, + "nave": { + "name": "nave", + "description": "Virtual Environments for Node", + "dist-tags": { + "latest": "0.2.3" + }, + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "time": { + "modified": "2011-12-14T04:48:27.279Z", + "created": "2010-12-28T23:13:50.775Z", + "0.0.5": "2010-12-28T23:13:50.775Z", + "0.0.6": "2010-12-28T23:13:50.775Z", + "0.0.7": "2010-12-28T23:13:50.775Z", + "0.1.1": "2010-12-28T23:13:50.775Z", + "0.1.2": "2010-12-28T23:13:50.775Z", + "0.1.3": "2010-12-28T23:13:50.775Z", + "0.1.4": "2011-02-02T19:03:47.038Z", + "0.1.5": "2011-05-21T23:41:43.147Z", + "0.1.6": "2011-06-22T23:16:26.965Z", + "0.1.7": "2011-07-15T16:45:50.057Z", + "0.1.8": "2011-09-17T05:01:03.578Z", + "0.2.0": "2011-12-01T21:49:23.803Z", + "0.2.1": "2011-12-02T16:57:43.933Z", + "0.2.2": "2011-12-14T04:45:22.622Z", + "0.2.3": "2011-12-14T04:48:16.946Z" + }, + "versions": { + "0.0.5": "http://registry.npmjs.org/nave/0.0.5", + "0.0.6": "http://registry.npmjs.org/nave/0.0.6", + "0.0.7": "http://registry.npmjs.org/nave/0.0.7", + "0.1.1": "http://registry.npmjs.org/nave/0.1.1", + "0.1.2": "http://registry.npmjs.org/nave/0.1.2", + "0.1.3": "http://registry.npmjs.org/nave/0.1.3", + "0.1.4": "http://registry.npmjs.org/nave/0.1.4", + "0.1.5": "http://registry.npmjs.org/nave/0.1.5", + "0.1.6": "http://registry.npmjs.org/nave/0.1.6", + "0.1.7": "http://registry.npmjs.org/nave/0.1.7", + "0.1.8": "http://registry.npmjs.org/nave/0.1.8", + "0.2.0": "http://registry.npmjs.org/nave/0.2.0", + "0.2.1": "http://registry.npmjs.org/nave/0.2.1", + "0.2.3": "http://registry.npmjs.org/nave/0.2.3" + }, + "dist": { + "0.0.5": { + "tarball": "http://registry.npmjs.org/nave/-/nave-0.0.5.tgz" + }, + "0.0.6": { + "tarball": "http://registry.npmjs.org/nave/-/nave-0.0.6.tgz" + }, + "0.0.7": { + "tarball": "http://registry.npmjs.org/nave/-/nave-0.0.7.tgz" + }, + "0.1.1": { + "shasum": "8c2ded75eb4fdca8c89fece2d04f3f37c68f792a", + "tarball": "http://registry.npmjs.org/nave/-/nave-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "9f8510d99e65138dfeea1273e5c6803441bab697", + "tarball": "http://registry.npmjs.org/nave/-/nave-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "1ea9fd1a9a94eeeecba61d9f9413f04a65bd89cc", + "tarball": "http://registry.npmjs.org/nave/-/nave-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "5ac4d4f4ab4d563a9cb750667382c644937478f2", + "tarball": "http://registry.npmjs.org/nave/-/nave-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "baa8537b7d12335f07d2c9e4c39925717fc31d55", + "tarball": "http://registry.npmjs.org/nave/-/nave-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "92a2fb6d66ca81329c601030774dd1b949edb594", + "tarball": "http://registry.npmjs.org/nave/-/nave-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "fc93bf4cb141b84ab66b31cc2d04c723c2eaad74", + "tarball": "http://registry.npmjs.org/nave/-/nave-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "0443425341ab0b9545cb142671be6124cbd0adc7", + "tarball": "http://registry.npmjs.org/nave/-/nave-0.1.8.tgz" + }, + "0.2.0": { + "shasum": "0b3f35d93a63a943c95a1155e09c1f3f21998817", + "tarball": "http://registry.npmjs.org/nave/-/nave-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "af6f14c4e9cd8c28cc528b13f95435fde3cc2508", + "tarball": "http://registry.npmjs.org/nave/-/nave-0.2.1.tgz" + }, + "0.2.3": { + "shasum": "e0b629c7336e36d3c7979e71b62d5805ac9454bf", + "tarball": "http://registry.npmjs.org/nave/-/nave-0.2.3.tgz" + } + }, + "url": "http://registry.npmjs.org/nave/" + }, + "navigator": { + "name": "navigator", + "description": "A browser-esque `navigator` for Node.JS (for Ender.JS compatibility)", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-11-08T20:18:11.236Z", + "created": "2011-07-28T04:21:12.847Z", + "1.0.0": "2011-07-28T04:21:13.669Z", + "1.0.1": "2011-11-08T20:18:11.236Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com", + "url": "http://coolaj86.info" + }, + "repository": { + "type": "git", + "url": "git://github.com/coolaj86/node-navigator.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/navigator/1.0.0", + "1.0.1": "http://registry.npmjs.org/navigator/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "a0f21c90d8212873de8c63a8236f52d6f681a7c3", + "tarball": "http://registry.npmjs.org/navigator/-/navigator-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "ba69c1929a39a9b50eb7e9f5c11178789caf790f", + "tarball": "http://registry.npmjs.org/navigator/-/navigator-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/navigator/" + }, + "nbs-api": { + "name": "nbs-api", + "description": "NBS API for Node.js", + "dist-tags": { + "latest": "0.4.0" + }, + "maintainers": [ + { + "name": "podviaznikov", + "email": "podviaznikov@gmail.com" + } + ], + "time": { + "modified": "2011-07-08T18:03:48.338Z", + "created": "2011-07-08T18:03:46.919Z", + "0.4.0": "2011-07-08T18:03:48.338Z" + }, + "author": { + "name": "Anton Podviaznikov", + "email": "podviaznikov@gmail.com" + }, + "versions": { + "0.4.0": "http://registry.npmjs.org/nbs-api/0.4.0" + }, + "dist": { + "0.4.0": { + "shasum": "7e67f6df46d2b3cbeafeea152bcc3432e0472d8a", + "tarball": "http://registry.npmjs.org/nbs-api/-/nbs-api-0.4.0.tgz" + } + }, + "keywords": [ + "nbs", + "wrapper", + "api", + "api-client", + "Next Big Sound" + ], + "url": "http://registry.npmjs.org/nbs-api/" + }, + "nbt": { + "name": "nbt", + "description": "NBT.js – a JavaScript parser for uncompressed NBT archives", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "sjmulder", + "email": "sjmulder@gmail.com" + } + ], + "time": { + "modified": "2011-02-17T02:24:51.666Z", + "created": "2011-02-17T02:24:51.309Z", + "0.1.0": "2011-02-17T02:24:51.666Z" + }, + "author": { + "name": "Sijmen Mulder", + "email": "sjmulder@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/sjmulder/nbt-js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/nbt/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "d0ab0135025034d0799a99ee7df0d05242f979f3", + "tarball": "http://registry.npmjs.org/nbt/-/nbt-0.1.0.tgz" + } + }, + "keywords": [ + "nbt", + "minecraft" + ], + "url": "http://registry.npmjs.org/nbt/" + }, + "nclosure": { + "name": "nclosure", + "description": "Server-side Google Closure with Node.js", + "dist-tags": { + "latest": "0.4.2" + }, + "maintainers": [ + { + "name": "gatapia", + "email": "guido@tapia.com.au" + } + ], + "time": { + "modified": "2011-03-05T10:29:45.829Z", + "created": "2011-02-15T01:50:38.686Z", + "0.3.1": "2011-02-15T01:50:39.568Z", + "0.4.0": "2011-02-25T05:59:59.179Z", + "0.4.1": "2011-02-25T09:30:41.436Z", + "0.4.2": "2011-03-05T10:29:45.829Z" + }, + "author": { + "name": "Guido Tapia", + "email": "guido@tapia.com.au" + }, + "repository": { + "type": "git", + "url": "git://github.com/gatapia/nclosure.git" + }, + "versions": { + "0.3.1": "http://registry.npmjs.org/nclosure/0.3.1", + "0.4.0": "http://registry.npmjs.org/nclosure/0.4.0", + "0.4.1": "http://registry.npmjs.org/nclosure/0.4.1", + "0.4.2": "http://registry.npmjs.org/nclosure/0.4.2" + }, + "dist": { + "0.3.1": { + "shasum": "cb4b7675b431bf606a174c3b839f3bdb555406c1", + "tarball": "http://registry.npmjs.org/nclosure/-/nclosure-0.3.1.tgz" + }, + "0.4.0": { + "shasum": "eb777dfffed1dc79c2748b68313b846edeeb3bf5", + "tarball": "http://registry.npmjs.org/nclosure/-/nclosure-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "051e5393c1777454d647d35591ef93eefea2311f", + "tarball": "http://registry.npmjs.org/nclosure/-/nclosure-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "a19e645836298848bec88e918b368b61b80884c6", + "tarball": "http://registry.npmjs.org/nclosure/-/nclosure-0.4.2.tgz" + } + }, + "url": "http://registry.npmjs.org/nclosure/" + }, + "nclosureultimate": { + "name": "nclosureultimate", + "description": "Server-side Google Closure with Node.js", + "dist-tags": { + "latest": "0.5.0" + }, + "maintainers": [ + { + "name": "tallstreet", + "email": "contact@tallstreet.com" + } + ], + "time": { + "modified": "2011-06-15T11:33:26.390Z", + "created": "2011-06-15T11:33:25.050Z", + "0.5.0": "2011-06-15T11:33:26.390Z" + }, + "author": { + "name": "Gary", + "email": "contact@tallstrreet.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/gatapia/nclosure.git" + }, + "versions": { + "0.5.0": "http://registry.npmjs.org/nclosureultimate/0.5.0" + }, + "dist": { + "0.5.0": { + "shasum": "8aa16b99776e3aed6e0bcb10926ccd06427b14c1", + "tarball": "http://registry.npmjs.org/nclosureultimate/-/nclosureultimate-0.5.0.tgz" + } + }, + "url": "http://registry.npmjs.org/nclosureultimate/" + }, + "nconf": { + "name": "nconf", + "description": "Hierarchical node.js configuration with files, environment variables, command-line arguments, and atomic object merging.", + "dist-tags": { + "latest": "0.5.0" + }, + "maintainers": [ + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + } + ], + "time": { + "modified": "2011-11-24T05:33:40.906Z", + "created": "2011-04-02T09:13:51.898Z", + "0.1.0": "2011-04-02T09:13:52.082Z", + "0.1.1": "2011-04-02T23:17:46.000Z", + "0.1.2": "2011-04-03T18:20:33.731Z", + "0.1.3": "2011-04-05T04:11:00.953Z", + "0.1.4": "2011-04-05T07:54:13.651Z", + "0.1.5": "2011-04-13T22:50:12.983Z", + "0.1.6": "2011-04-19T21:35:09.523Z", + "0.1.7": "2011-04-20T05:59:10.105Z", + "0.1.8": "2011-05-16T18:15:19.525Z", + "0.1.9": "2011-05-17T02:45:15.155Z", + "0.1.10": "2011-06-05T05:40:43.690Z", + "0.1.11": "2011-06-08T03:46:08.960Z", + "0.1.12": "2011-06-08T04:07:46.450Z", + "0.1.13": "2011-06-24T07:32:04.814Z", + "0.1.14": "2011-06-25T04:34:41.470Z", + "0.2.0": "2011-07-08T19:51:56.099Z", + "0.3.0": "2011-08-28T14:46:48.158Z", + "0.3.1": "2011-08-29T19:21:17.427Z", + "0.4.0": "2011-09-19T01:46:21.196Z", + "0.4.1": "2011-09-19T20:51:51.140Z", + "0.4.2": "2011-09-25T04:22:06.643Z", + "0.4.3": "2011-09-25T04:47:26.907Z", + "0.4.4": "2011-10-22T06:38:44.406Z", + "0.4.5": "2011-11-20T19:34:42.914Z", + "0.4.6": "2011-11-22T14:49:58.206Z", + "0.5.0": "2011-11-24T05:33:40.906Z" + }, + "author": { + "name": "Nodejitsu Inc.", + "email": "info@nodejitsu.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/flatiron/nconf.git" + }, + "versions": { + "0.1.14": "http://registry.npmjs.org/nconf/0.1.14", + "0.2.0": "http://registry.npmjs.org/nconf/0.2.0", + "0.3.1": "http://registry.npmjs.org/nconf/0.3.1", + "0.4.3": "http://registry.npmjs.org/nconf/0.4.3", + "0.4.4": "http://registry.npmjs.org/nconf/0.4.4", + "0.4.5": "http://registry.npmjs.org/nconf/0.4.5", + "0.4.6": "http://registry.npmjs.org/nconf/0.4.6", + "0.5.0": "http://registry.npmjs.org/nconf/0.5.0" + }, + "dist": { + "0.1.14": { + "shasum": "6ac16e3cde93ab0739502a4bef3cffe615d9cd65", + "tarball": "http://registry.npmjs.org/nconf/-/nconf-0.1.14.tgz" + }, + "0.2.0": { + "shasum": "615e59cab591f73c77e7f5d126f540f0f87280d3", + "tarball": "http://registry.npmjs.org/nconf/-/nconf-0.2.0.tgz" + }, + "0.3.1": { + "shasum": "c36579f720d6fca4ac8b7f40461ded9bc6c19a9c", + "tarball": "http://registry.npmjs.org/nconf/-/nconf-0.3.1.tgz" + }, + "0.4.3": { + "shasum": "95eef62a67c2b1e48570276054f01a0b13d4fded", + "tarball": "http://registry.npmjs.org/nconf/-/nconf-0.4.3.tgz" + }, + "0.4.4": { + "shasum": "5b28fba17a4ddfc146a40af5225bb2aee29e5d1e", + "tarball": "http://registry.npmjs.org/nconf/-/nconf-0.4.4.tgz" + }, + "0.4.5": { + "shasum": "4252dde2e469f3667a492714d39096e163e4cc05", + "tarball": "http://registry.npmjs.org/nconf/-/nconf-0.4.5.tgz" + }, + "0.4.6": { + "shasum": "af013090b22ee085886885bf706341c8abbcf851", + "tarball": "http://registry.npmjs.org/nconf/-/nconf-0.4.6.tgz" + }, + "0.5.0": { + "shasum": "a54b595d03f7e283fd6850938a96fa548a468d6a", + "tarball": "http://registry.npmjs.org/nconf/-/nconf-0.5.0.tgz" + } + }, + "keywords": [ + "configuration", + "key value store", + "plugabble" + ], + "url": "http://registry.npmjs.org/nconf/" + }, + "nconf-redis": { + "name": "nconf-redis", + "description": "A Redis store for nconf", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + } + ], + "time": { + "modified": "2011-11-28T19:50:06.138Z", + "created": "2011-07-08T20:59:00.651Z", + "0.2.0": "2011-07-08T20:59:00.760Z", + "0.2.1": "2011-09-08T18:51:48.576Z", + "0.3.0": "2011-11-28T19:50:06.138Z" + }, + "author": { + "name": "Charlie Robbins", + "email": "charlie.robbins@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/indexzero/nconf-redis.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/nconf-redis/0.2.0", + "0.2.1": "http://registry.npmjs.org/nconf-redis/0.2.1", + "0.3.0": "http://registry.npmjs.org/nconf-redis/0.3.0" + }, + "dist": { + "0.2.0": { + "shasum": "36cd6f9cc6b1d08635c441cad74e5f6023a80dca", + "tarball": "http://registry.npmjs.org/nconf-redis/-/nconf-redis-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "7e2d4c03e8552693212b358c4bf496ce2f1bde50", + "tarball": "http://registry.npmjs.org/nconf-redis/-/nconf-redis-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "831a12bbd2b142982ba682e8206178cdf59440a1", + "tarball": "http://registry.npmjs.org/nconf-redis/-/nconf-redis-0.3.0.tgz" + } + }, + "keywords": [ + "configuration", + "key value store", + "nconf", + "redis" + ], + "url": "http://registry.npmjs.org/nconf-redis/" + }, + "ncp": { + "name": "ncp", + "description": "Asynchronous recursive file copy utility.", + "dist-tags": { + "latest": "0.2.3" + }, + "maintainers": [ + { + "name": "avianflu", + "email": "charlie@charlieistheman.com" + } + ], + "time": { + "modified": "2011-12-05T18:06:54.822Z", + "created": "2011-08-25T00:42:56.649Z", + "0.0.0": "2011-08-25T00:42:58.122Z", + "0.0.1": "2011-08-25T01:16:44.642Z", + "0.0.2": "2011-08-25T08:55:36.028Z", + "0.1.0": "2011-08-26T06:29:36.199Z", + "0.1.1": "2011-08-27T05:54:31.461Z", + "0.1.2": "2011-08-27T21:41:40.327Z", + "0.2.0": "2011-09-18T03:45:39.737Z", + "0.2.1": "2011-11-04T07:40:57.523Z", + "0.2.2": "2011-11-28T17:40:44.763Z", + "0.2.3": "2011-12-05T18:06:54.822Z" + }, + "author": { + "name": "AvianFlu", + "email": "charlie@charlieistheman.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/AvianFlu/ncp.git" + }, + "users": { + "avianflu": true + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/ncp/0.0.0", + "0.0.1": "http://registry.npmjs.org/ncp/0.0.1", + "0.0.2": "http://registry.npmjs.org/ncp/0.0.2", + "0.1.0": "http://registry.npmjs.org/ncp/0.1.0", + "0.1.1": "http://registry.npmjs.org/ncp/0.1.1", + "0.1.2": "http://registry.npmjs.org/ncp/0.1.2", + "0.2.0": "http://registry.npmjs.org/ncp/0.2.0", + "0.2.1": "http://registry.npmjs.org/ncp/0.2.1", + "0.2.2": "http://registry.npmjs.org/ncp/0.2.2", + "0.2.3": "http://registry.npmjs.org/ncp/0.2.3" + }, + "dist": { + "0.0.0": { + "shasum": "49315e9bd1a801dbdeedbf81a424bafcda193e9f", + "tarball": "http://registry.npmjs.org/ncp/-/ncp-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "8a4d6ba28390c6a6ecf6536d553cfff300d4dcab", + "tarball": "http://registry.npmjs.org/ncp/-/ncp-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "07b8daad5f5b51e14cf23b09a8d79b92b71a373c", + "tarball": "http://registry.npmjs.org/ncp/-/ncp-0.0.2.tgz" + }, + "0.1.0": { + "shasum": "059f51dcbda43f525d6f2de53369ca8bb88cb651", + "tarball": "http://registry.npmjs.org/ncp/-/ncp-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "a94e6677cd1ae774813fb0ef5b63bf2e32df3c3d", + "tarball": "http://registry.npmjs.org/ncp/-/ncp-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "5f6bb78f4e74951ce7b9fd392f9d8a158f2557fc", + "tarball": "http://registry.npmjs.org/ncp/-/ncp-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "35be4efc1c62dab442598ec5c7d4d420f210a436", + "tarball": "http://registry.npmjs.org/ncp/-/ncp-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "16eb90193d629f01ff89358f34c36244420c4c5a", + "tarball": "http://registry.npmjs.org/ncp/-/ncp-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "74b7bfc9f021837dd63b87096e8d0e3006b444c8", + "tarball": "http://registry.npmjs.org/ncp/-/ncp-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "3f9083927ea36fa7f3efe8502fefe5a886dc994e", + "tarball": "http://registry.npmjs.org/ncp/-/ncp-0.2.3.tgz" + } + }, + "keywords": [ + "cli", + "copy" + ], + "url": "http://registry.npmjs.org/ncp/" + }, + "ncss": { + "name": "ncss", + "description": "CSS stream compressor", + "dist-tags": { + "latest": "1.1.0" + }, + "maintainers": [ + { + "name": "kurakin", + "email": "kurakin@gmail.com" + } + ], + "time": { + "modified": "2011-08-08T21:51:58.255Z", + "created": "2011-07-19T15:38:24.356Z", + "1.0.0": "2011-07-19T15:38:24.448Z", + "1.0.1": "2011-07-23T16:35:46.430Z", + "1.0.2": "2011-07-25T19:52:32.390Z", + "1.1.0": "2011-08-08T21:51:58.255Z" + }, + "author": { + "name": "Wil Asche" + }, + "repository": { + "type": "git", + "url": "git://github.com/kurakin/ncss.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/ncss/1.0.0", + "1.0.1": "http://registry.npmjs.org/ncss/1.0.1", + "1.0.2": "http://registry.npmjs.org/ncss/1.0.2", + "1.1.0": "http://registry.npmjs.org/ncss/1.1.0" + }, + "dist": { + "1.0.0": { + "shasum": "585e60490b2f782e3dd2d2d3c4e04b83a6e23635", + "tarball": "http://registry.npmjs.org/ncss/-/ncss-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "f4f0621ab0a7d35093f96b44f0912ea5e80a9084", + "tarball": "http://registry.npmjs.org/ncss/-/ncss-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "db768beff9354357ae3b6a8aa0bc212a08d2d5e3", + "tarball": "http://registry.npmjs.org/ncss/-/ncss-1.0.2.tgz" + }, + "1.1.0": { + "shasum": "6be69f2b91b955007463311707ce7022b4991915", + "tarball": "http://registry.npmjs.org/ncss/-/ncss-1.1.0.tgz" + } + }, + "keywords": [ + "css", + "compress", + "minify", + "minification", + "minifier" + ], + "url": "http://registry.npmjs.org/ncss/" + }, + "ncURL": { + "name": "ncURL", + "description": "a nodejs wrapper for cURL", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "marty_wang", + "email": "mo.hy.wang@gmail.com" + } + ], + "time": { + "modified": "2011-10-31T15:11:51.486Z", + "created": "2011-10-31T15:11:49.369Z", + "0.0.1": "2011-10-31T15:11:51.486Z" + }, + "author": { + "name": "Mo Wang" + }, + "repository": { + "type": "git", + "url": "git://github.com/marty-wang/ncURL.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ncURL/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "9dbf16060411165b12e4d48d80ffd600bfa1ac04", + "tarball": "http://registry.npmjs.org/ncURL/-/ncURL-0.0.1.tgz" + } + }, + "keywords": [ + "cURL", + "download", + "web" + ], + "url": "http://registry.npmjs.org/ncURL/" + }, + "ncurses": { + "name": "ncurses", + "description": "An ncurses binding for node.js", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "mscdex", + "email": "mscdex@mscdex.net" + } + ], + "author": { + "name": "Brian White", + "email": "mscdex@mscdex.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/mscdex/node-ncurses.git" + }, + "time": { + "modified": "2011-12-11T04:11:04.974Z", + "created": "2011-01-15T22:44:57.455Z", + "0.0.1": "2011-01-15T22:44:57.455Z", + "0.0.2": "2011-01-15T22:44:57.455Z", + "0.1.0": "2011-01-15T22:44:57.455Z", + "0.2.0": "2011-04-10T04:32:51.141Z", + "0.2.1": "2011-12-04T13:43:47.968Z", + "0.2.2": "2011-12-11T04:11:04.974Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ncurses/0.0.1", + "0.0.2": "http://registry.npmjs.org/ncurses/0.0.2", + "0.1.0": "http://registry.npmjs.org/ncurses/0.1.0", + "0.2.0": "http://registry.npmjs.org/ncurses/0.2.0", + "0.2.1": "http://registry.npmjs.org/ncurses/0.2.1", + "0.2.2": "http://registry.npmjs.org/ncurses/0.2.2" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/ncurses/-/ncurses-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/ncurses/-/ncurses-0.0.2.tgz" + }, + "0.1.0": { + "shasum": "72e71a8d130c1a42ff422ecb0a9bff781a25dba2", + "tarball": "http://registry.npmjs.org/ncurses/-/ncurses-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "b9867881a0665b943a4767a28a7da4874cd7d413", + "tarball": "http://registry.npmjs.org/ncurses/-/ncurses-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "889ed604b84871d6f1e27a42ece2ea0d15bee5ae", + "tarball": "http://registry.npmjs.org/ncurses/-/ncurses-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "d208147f05961a5f5c1272a8fff16bc8517a1802", + "tarball": "http://registry.npmjs.org/ncurses/-/ncurses-0.2.2.tgz" + } + }, + "keywords": [ + "console", + "ncurses", + "curses", + "graphics" + ], + "url": "http://registry.npmjs.org/ncurses/" + }, + "ndb": { + "name": "ndb", + "dist-tags": { + "latest": "0.2.4" + }, + "maintainers": [ + { + "name": "smtlaissezfaire", + "email": "scott@railsnewbie.com" + } + ], + "author": { + "name": "Scott Taylor", + "email": "scott@railsnewbie.com", + "url": "http://blog.railsnewbie.com/" + }, + "repository": { + "url": "git://github.com/smtlaissezfaire/ndb.git", + "type": "git" + }, + "time": { + "modified": "2011-06-21T15:56:59.225Z", + "created": "2011-06-21T15:56:59.225Z", + "0.2.1": "2011-06-21T15:56:59.225Z", + "0.2.4": "2011-06-21T15:56:59.225Z" + }, + "versions": { + "0.2.1": "http://registry.npmjs.org/ndb/0.2.1", + "0.2.4": "http://registry.npmjs.org/ndb/0.2.4" + }, + "dist": { + "0.2.1": { + "shasum": "b32fef418a955d1d1d92b7ff22c71e043751cbd4", + "tarball": "http://registry.npmjs.org/ndb/-/ndb-0.2.1.tgz" + }, + "0.2.4": { + "shasum": "506ba6d1ca063051b40d12289762e1bdf331bef2", + "tarball": "http://registry.npmjs.org/ndb/-/ndb-0.2.4.tgz" + } + }, + "url": "http://registry.npmjs.org/ndb/" + }, + "ndistro": { + "name": "ndistro", + "description": "Node distribution and deployment toolkit", + "dist-tags": { + "latest": "0.4.0" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "time": { + "modified": "2011-01-21T16:29:53.605Z", + "created": "2011-01-21T16:29:53.169Z", + "0.4.0": "2011-01-21T16:29:53.605Z" + }, + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca", + "url": "http://tjholowaychuk.com" + }, + "repository": "git://github.com/visionmedia/ndistro.git", + "versions": { + "0.4.0": "http://registry.npmjs.org/ndistro/0.4.0" + }, + "dist": { + "0.4.0": { + "shasum": "6982dd1bb7557c2434be8657c6d17260d439012f", + "tarball": "http://registry.npmjs.org/ndistro/-/ndistro-0.4.0.tgz" + } + }, + "url": "http://registry.npmjs.org/ndistro/" + }, + "ndns": { + "name": "ndns", + "description": "dns library for node.js", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "skmplr", + "email": "scampi@home.se" + } + ], + "time": { + "modified": "2011-02-06T22:14:02.560Z", + "created": "2011-01-15T19:15:51.832Z", + "0.1.0": "2011-01-15T19:15:52.588Z", + "0.1.1": "2011-02-06T22:14:02.560Z" + }, + "author": { + "name": "tomas" + }, + "repository": "https://github.com/skampler/ndns.git", + "versions": { + "0.1.0": "http://registry.npmjs.org/ndns/0.1.0", + "0.1.1": "http://registry.npmjs.org/ndns/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "4d724accd74fed29b0fec1d919ad9b04c4b26432", + "tarball": "http://registry.npmjs.org/ndns/-/ndns-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "ecb89749c2bc5c9c61503542631a4045025ad68c", + "tarball": "http://registry.npmjs.org/ndns/-/ndns-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/ndns/" + }, + "ndoc": { + "name": "ndoc", + "description": "JavaScript API documentor with simple syntax that generates human-friendly documentation.", + "dist-tags": { + "latest": "1.0.2" + }, + "maintainers": [ + { + "name": "vitaly", + "email": "vitaly@rcdesign.ru" + } + ], + "time": { + "modified": "2011-12-13T13:25:54.886Z", + "created": "2011-11-24T01:28:30.166Z", + "0.1.0": "2011-11-24T01:28:32.308Z", + "1.0.0": "2011-12-07T13:46:44.704Z", + "1.0.1": "2011-12-07T15:07:42.064Z", + "1.0.2": "2011-12-13T13:25:54.886Z" + }, + "author": { + "name": "Vladimir Dronnikov", + "email": "dronnikov@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/nodeca/ndoc.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/ndoc/0.1.0", + "1.0.0": "http://registry.npmjs.org/ndoc/1.0.0", + "1.0.1": "http://registry.npmjs.org/ndoc/1.0.1", + "1.0.2": "http://registry.npmjs.org/ndoc/1.0.2" + }, + "dist": { + "0.1.0": { + "shasum": "f50c39eb6c5bd96be3eb6156aa8cd759cfb8b460", + "tarball": "http://registry.npmjs.org/ndoc/-/ndoc-0.1.0.tgz" + }, + "1.0.0": { + "shasum": "26e21a7d9c53cd61319edf02f2fc4f007e41ff9f", + "tarball": "http://registry.npmjs.org/ndoc/-/ndoc-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "2694aee30c793add7f98d78a2478a8c17b04e9be", + "tarball": "http://registry.npmjs.org/ndoc/-/ndoc-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "e786df206f64ad4830dc626c65797bf456f8eed5", + "tarball": "http://registry.npmjs.org/ndoc/-/ndoc-1.0.2.tgz" + } + }, + "keywords": [ + "api", + "doc", + "apidoc", + "jsdoc", + "autodoc", + "documentation", + "documentor", + "pdoc", + "prototype" + ], + "url": "http://registry.npmjs.org/ndoc/" + }, + "nebulog": { + "name": "nebulog", + "description": "A enhancement/wrapper around the wonderful Winston logger.", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "nebu", + "email": "nebupookins@gmail.com" + } + ], + "time": { + "modified": "2011-04-20T15:36:57.204Z", + "created": "2011-04-20T15:36:57.032Z", + "0.0.0": "2011-04-20T15:36:57.204Z" + }, + "author": { + "name": "Nebu Pookins", + "email": "nebupookins@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/AntPortal/nebulog.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/nebulog/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "ce1804a10f3f8f44a0e9f6500d968f064efd8633", + "tarball": "http://registry.npmjs.org/nebulog/-/nebulog-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/nebulog/" + }, + "neco": { + "name": "neco", + "description": "Nodejs Ecosystem COordinator, like virtualenv for python", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "kuno", + "email": "neokuno@gmail.com" + } + ], + "time": { + "modified": "2011-04-15T02:21:39.368Z", + "created": "2010-12-30T03:27:42.360Z", + "0.0.1-alpha1": "2010-12-30T03:27:43.083Z", + "0.0.1-alpha2": "2010-12-30T04:20:58.319Z", + "0.0.1-alpha3": "2011-01-03T11:11:43.926Z", + "0.0.2-alpha": "2011-01-04T11:12:39.422Z", + "0.0.3-alpha": "2011-01-15T03:04:21.004Z", + "0.0.3-alpha1": "2011-01-18T04:48:42.748Z", + "0.0.4": "2011-01-28T11:45:16.617Z", + "0.0.4-1": "2011-02-06T05:35:16.275Z", + "0.0.5pre": "2011-02-16T08:00:49.777Z", + "0.0.5": "2011-02-16T08:04:15.665Z", + "0.0.5-2": "2011-03-19T10:37:44.493Z", + "0.0.6": "2011-04-15T02:19:43.728Z" + }, + "author": { + "name": "Guan 'kuno' Qing", + "email": "neokuno AT gmail DOT com" + }, + "repository": { + "type": "git", + "url": "git://github.com/kuno/neco.git" + }, + "versions": { + "0.0.1-alpha1": "http://registry.npmjs.org/neco/0.0.1-alpha1", + "0.0.1-alpha2": "http://registry.npmjs.org/neco/0.0.1-alpha2", + "0.0.1-alpha3": "http://registry.npmjs.org/neco/0.0.1-alpha3", + "0.0.2-alpha": "http://registry.npmjs.org/neco/0.0.2-alpha", + "0.0.3-alpha": "http://registry.npmjs.org/neco/0.0.3-alpha", + "0.0.3-alpha1": "http://registry.npmjs.org/neco/0.0.3-alpha1", + "0.0.4": "http://registry.npmjs.org/neco/0.0.4", + "0.0.4-1": "http://registry.npmjs.org/neco/0.0.4-1", + "0.0.5pre": "http://registry.npmjs.org/neco/0.0.5pre", + "0.0.5": "http://registry.npmjs.org/neco/0.0.5", + "0.0.5-2": "http://registry.npmjs.org/neco/0.0.5-2", + "0.0.6": "http://registry.npmjs.org/neco/0.0.6" + }, + "dist": { + "0.0.1-alpha1": { + "shasum": "a1fcd7531778078243a39dee3b450bd83431fef3", + "tarball": "http://registry.npmjs.org/neco/-/neco-0.0.1-alpha1.tgz" + }, + "0.0.1-alpha2": { + "shasum": "3bf767ecff4354caecb850a452865c11e9b87ceb", + "tarball": "http://registry.npmjs.org/neco/-/neco-0.0.1-alpha2.tgz" + }, + "0.0.1-alpha3": { + "shasum": "560cd1698151d1e394ade5a0d0efc35a3dcf9f47", + "tarball": "http://registry.npmjs.org/neco/-/neco-0.0.1-alpha3.tgz" + }, + "0.0.2-alpha": { + "shasum": "ec2d8ce3240c92a8a760cc5a1dfe600aa9c20f1a", + "tarball": "http://registry.npmjs.org/neco/-/neco-0.0.2-alpha.tgz" + }, + "0.0.3-alpha": { + "shasum": "73ad85bb1611fb47a113755b814fb718a46dbdfd", + "tarball": "http://registry.npmjs.org/neco/-/neco-0.0.3-alpha.tgz" + }, + "0.0.3-alpha1": { + "shasum": "0cb6ddbefe52a19653ce2f6e3ca2f782d001bacf", + "tarball": "http://registry.npmjs.org/neco/-/neco-0.0.3-alpha1.tgz" + }, + "0.0.4": { + "shasum": "726a6e475a3a7c73a35c63c53b4e1d42b163be8e", + "tarball": "http://registry.npmjs.org/neco/-/neco-0.0.4.tgz" + }, + "0.0.4-1": { + "shasum": "6f09fad825cbe8b480e3a65c3b4c85908b9c88f0", + "tarball": "http://registry.npmjs.org/neco/-/neco-0.0.4-1.tgz" + }, + "0.0.5pre": { + "shasum": "2ff699c581cb98d6d66d4d08d80c33e681c956b4", + "tarball": "http://registry.npmjs.org/neco/-/neco-0.0.5pre.tgz" + }, + "0.0.5": { + "shasum": "dcc1988bf8c45bf9ce99cac6f3912a9be5c9dff7", + "tarball": "http://registry.npmjs.org/neco/-/neco-0.0.5.tgz" + }, + "0.0.5-2": { + "shasum": "26a012a0488830da34e79cbfeca31152303cb802", + "tarball": "http://registry.npmjs.org/neco/-/neco-0.0.5-2.tgz" + }, + "0.0.6": { + "shasum": "a5180aa92b4df0384e3d2913f9d27e605cd4c5f1", + "tarball": "http://registry.npmjs.org/neco/-/neco-0.0.6.tgz" + } + }, + "keywords": [ + "virtualenv", + "ecosystem", + "install", + "npm" + ], + "url": "http://registry.npmjs.org/neco/" + }, + "ned": { + "name": "ned", + "description": "A reimplementation of the parts of `sed` that I like.", + "dist-tags": { + "latest": "1.1.1" + }, + "maintainers": [ + { + "name": "colinta", + "email": "colinta@mac.com" + } + ], + "time": { + "modified": "2011-09-27T04:19:12.942Z", + "created": "2011-09-21T15:21:46.805Z", + "0.9.1": "2011-09-21T15:21:48.266Z", + "0.9.2": "2011-09-21T17:16:08.887Z", + "1.0.0": "2011-09-22T18:14:03.977Z", + "1.0.1": "2011-09-22T18:50:07.206Z", + "1.0.2": "2011-09-22T18:52:42.003Z", + "1.0.3": "2011-09-22T19:01:31.652Z", + "1.0.4": "2011-09-22T20:56:12.393Z", + "1.1.0": "2011-09-23T16:14:36.892Z", + "1.1.1": "2011-09-27T04:19:12.942Z" + }, + "author": { + "name": "Colin Thomas-Arnold", + "email": "colinta@mac.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/colinta/ned.git" + }, + "versions": { + "0.9.1": "http://registry.npmjs.org/ned/0.9.1", + "0.9.2": "http://registry.npmjs.org/ned/0.9.2", + "1.0.0": "http://registry.npmjs.org/ned/1.0.0", + "1.0.1": "http://registry.npmjs.org/ned/1.0.1", + "1.0.2": "http://registry.npmjs.org/ned/1.0.2", + "1.0.3": "http://registry.npmjs.org/ned/1.0.3", + "1.0.4": "http://registry.npmjs.org/ned/1.0.4", + "1.1.0": "http://registry.npmjs.org/ned/1.1.0", + "1.1.1": "http://registry.npmjs.org/ned/1.1.1" + }, + "dist": { + "0.9.1": { + "shasum": "882328e20af140460a6b843d217a65b49ebd5e09", + "tarball": "http://registry.npmjs.org/ned/-/ned-0.9.1.tgz" + }, + "0.9.2": { + "shasum": "e993016e8550671719c035b7703e3759fdaaa111", + "tarball": "http://registry.npmjs.org/ned/-/ned-0.9.2.tgz" + }, + "1.0.0": { + "shasum": "8f43665427fd2375b6cedadf404d0f207167a35b", + "tarball": "http://registry.npmjs.org/ned/-/ned-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "32b1deb267e51a61160390528f5576a8ffdaf858", + "tarball": "http://registry.npmjs.org/ned/-/ned-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "744188afd98137da330d6d4f40a378a19d774ce3", + "tarball": "http://registry.npmjs.org/ned/-/ned-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "f0ec005cf826b20ab1280a98467847fe035cbd02", + "tarball": "http://registry.npmjs.org/ned/-/ned-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "48150b017cebd1c83ce2223f7360a7c0ea81580a", + "tarball": "http://registry.npmjs.org/ned/-/ned-1.0.4.tgz" + }, + "1.1.0": { + "shasum": "701ef95257cb479eb0922ebba1d93b6b21e15d99", + "tarball": "http://registry.npmjs.org/ned/-/ned-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "5e7556d82bd555fcfaef433809cdebb7b621509c", + "tarball": "http://registry.npmjs.org/ned/-/ned-1.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/ned/" + }, + "nedis": { + "name": "nedis", + "description": "Redis implementation written with node", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "time": { + "modified": "2011-04-15T02:22:42.285Z", + "created": "2011-04-14T01:37:33.393Z", + "0.0.1": "2011-04-14T01:37:33.731Z", + "0.0.2": "2011-04-14T01:45:01.736Z", + "0.1.0": "2011-04-15T02:22:42.285Z" + }, + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "repository": { + "type": "git", + "url": "git://github.com/visionmedia/nedis.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nedis/0.0.1", + "0.0.2": "http://registry.npmjs.org/nedis/0.0.2", + "0.1.0": "http://registry.npmjs.org/nedis/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "19c8af468f8f7a60b4e1fe4c3c11c12505d30f06", + "tarball": "http://registry.npmjs.org/nedis/-/nedis-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "6c474aa6764d15ab3962371a5da60dfc43c638d3", + "tarball": "http://registry.npmjs.org/nedis/-/nedis-0.0.2.tgz" + }, + "0.1.0": { + "shasum": "0c9db39a267af3b2ca8076a16022408ba097e443", + "tarball": "http://registry.npmjs.org/nedis/-/nedis-0.1.0.tgz" + } + }, + "keywords": [ + "redis" + ], + "url": "http://registry.npmjs.org/nedis/" + }, + "neko": { + "name": "neko", + "description": "Lightweight JavaScript Classes.", + "dist-tags": { + "latest": "1.1.2" + }, + "maintainers": [ + { + "name": "Ivo Wetzel", + "email": "ivo.wetzel@googlemail.com" + } + ], + "author": { + "name": "Ivo Wetzel", + "email": "ivo.wetzel@googlemail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/BonsaiDen/neko.js.git" + }, + "time": { + "modified": "2011-03-04T12:58:21.229Z", + "created": "2010-12-18T11:28:31.896Z", + "1.0.0": "2010-12-18T11:28:31.896Z", + "1.0.1": "2010-12-18T11:28:31.896Z", + "1.0.2": "2010-12-18T11:28:31.896Z", + "1.0.3": "2010-12-18T11:28:31.896Z", + "1.0.4": "2010-12-18T11:28:31.896Z", + "1.0.5": "2010-12-18T11:28:31.896Z", + "1.0.6": "2010-12-18T12:42:47.074Z", + "1.0.7": "2010-12-24T01:11:40.014Z", + "1.0.8": "2010-12-24T22:31:19.969Z", + "1.0.9": "2010-12-26T03:54:56.936Z", + "1.0.10": "2011-01-15T22:26:45.242Z", + "1.1.0": "2011-01-27T23:29:19.055Z", + "1.1.1": "2011-01-31T18:28:41.510Z", + "1.1.2": "2011-03-04T12:58:12.133Z" + }, + "versions": { + "1.1.2": "http://registry.npmjs.org/neko/1.1.2" + }, + "dist": { + "1.1.2": { + "shasum": "27ee36fa92fc88568792bd486eb755a85ef32aa9", + "tarball": "http://registry.npmjs.org/neko/-/neko-1.1.2.tgz" + } + }, + "keywords": [ + "classes", + "class", + "oop" + ], + "url": "http://registry.npmjs.org/neko/" + }, + "nelson": { + "name": "nelson", + "description": "NodeJS object mocking", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "contra", + "email": "contra@australia.edu" + } + ], + "time": { + "modified": "2011-10-10T09:55:55.531Z", + "created": "2011-10-10T09:55:54.003Z", + "0.0.1": "2011-10-10T09:55:55.531Z" + }, + "author": { + "name": "Fractal", + "email": "contact@wearefractal.com", + "url": "http://wearefractal.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/wearefractal/nelson.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nelson/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "47172fa5829fa787f600e80af59cbc8ddaa1db41", + "tarball": "http://registry.npmjs.org/nelson/-/nelson-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/nelson/" + }, + "neo4j": { + "name": "neo4j", + "description": "Neo4j driver for Node", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "gasi", + "email": "daniel@gasienica.ch" + } + ], + "time": { + "modified": "2011-09-02T19:53:17.938Z", + "created": "2011-04-20T09:31:59.541Z", + "0.1.0": "2011-04-20T09:32:00.057Z", + "0.2.0": "2011-07-14T08:33:49.771Z", + "0.2.1": "2011-09-02T19:53:17.938Z" + }, + "author": { + "name": "Daniel Gasienica", + "email": "daniel@gasienica.ch" + }, + "repository": { + "type": "git", + "url": "git://github.com/gasi/node-neo4j.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/neo4j/0.1.0", + "0.2.0": "http://registry.npmjs.org/neo4j/0.2.0", + "0.2.1": "http://registry.npmjs.org/neo4j/0.2.1" + }, + "dist": { + "0.1.0": { + "shasum": "11697370691a4a47d9b8ad5db0873aa00d9109de", + "tarball": "http://registry.npmjs.org/neo4j/-/neo4j-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "73230ff49c18db2e9043ae5e6c8ec5e93268bbbb", + "tarball": "http://registry.npmjs.org/neo4j/-/neo4j-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "3f31e24e262d5a3e12b2fac788a6dc0e503bddb5", + "tarball": "http://registry.npmjs.org/neo4j/-/neo4j-0.2.1.tgz" + } + }, + "keywords": [ + "neo4j", + "graph", + "database", + "driver", + "rest" + ], + "url": "http://registry.npmjs.org/neo4j/" + }, + "nerd": { + "name": "nerd", + "description": "A node.js framework that should make sense to rails developers.", + "dist-tags": { + "latest": "0.0.10" + }, + "maintainers": [ + { + "name": "johnnypez", + "email": "johnnypez@gmail.com" + } + ], + "time": { + "modified": "2011-10-12T13:32:00.876Z", + "created": "2011-10-05T13:29:53.361Z", + "0.0.3": "2011-10-05T13:29:53.973Z", + "0.0.4": "2011-10-06T23:16:12.275Z", + "0.0.5": "2011-10-07T14:23:57.297Z", + "0.0.6": "2011-10-07T15:20:25.985Z", + "0.0.7": "2011-10-07T23:57:10.273Z", + "0.0.8": "2011-10-09T21:48:41.430Z", + "0.0.9": "2011-10-10T11:07:16.851Z", + "0.0.10": "2011-10-11T16:27:12.347Z" + }, + "author": { + "name": "John Butler", + "email": "johnnypez@gmail.com" + }, + "repository": { + "url": "https://github.com/johnnypez/nerd" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/nerd/0.0.3", + "0.0.4": "http://registry.npmjs.org/nerd/0.0.4", + "0.0.5": "http://registry.npmjs.org/nerd/0.0.5", + "0.0.6": "http://registry.npmjs.org/nerd/0.0.6", + "0.0.7": "http://registry.npmjs.org/nerd/0.0.7", + "0.0.8": "http://registry.npmjs.org/nerd/0.0.8", + "0.0.9": "http://registry.npmjs.org/nerd/0.0.9", + "0.0.10": "http://registry.npmjs.org/nerd/0.0.10" + }, + "dist": { + "0.0.3": { + "shasum": "7c95298de532482160ad36a1ebec23e1bf7f4b4b", + "tarball": "http://registry.npmjs.org/nerd/-/nerd-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "98d4a654a9ab370e9f49dd79c2b37e5b387fab20", + "tarball": "http://registry.npmjs.org/nerd/-/nerd-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "b07a6240a669a4a67cf27b01e34c010adae739a0", + "tarball": "http://registry.npmjs.org/nerd/-/nerd-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "fd90d7896612d9ed1aa91da1a2603d93afbe3848", + "tarball": "http://registry.npmjs.org/nerd/-/nerd-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "9ff09c17482873cbfc64bf88878fd555e211292d", + "tarball": "http://registry.npmjs.org/nerd/-/nerd-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "2e47d555a658119c45ea3853054305da54acb0e1", + "tarball": "http://registry.npmjs.org/nerd/-/nerd-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "478466be721aac0334f3863d845a794d0b23dba3", + "tarball": "http://registry.npmjs.org/nerd/-/nerd-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "aff15c4309cfdbeb1c0ed493b05ebb748978252a", + "tarball": "http://registry.npmjs.org/nerd/-/nerd-0.0.10.tgz" + } + }, + "url": "http://registry.npmjs.org/nerd/" + }, + "nerve": { + "name": "nerve", + "description": "Nerve blogging platform", + "dist-tags": { + "latest": "0.0.10" + }, + "maintainers": [ + { + "name": "joehewitt", + "email": "joe@joehewitt.com" + } + ], + "time": { + "modified": "2011-11-29T10:04:05.659Z", + "created": "2011-09-12T23:06:55.225Z", + "0.0.1": "2011-09-12T23:06:55.769Z", + "0.0.2": "2011-09-30T01:30:23.155Z", + "0.0.3": "2011-10-01T00:21:48.643Z", + "0.0.4": "2011-10-02T02:28:25.266Z", + "0.0.5": "2011-10-02T02:52:06.992Z", + "0.0.6": "2011-10-11T01:53:43.666Z", + "0.0.7": "2011-10-23T04:01:22.501Z", + "0.0.8": "2011-10-23T04:22:54.308Z", + "0.0.9": "2011-11-29T09:26:41.687Z", + "0.0.10": "2011-11-29T10:04:05.659Z" + }, + "author": { + "name": "Joe Hewitt", + "email": "joe@joehewitt.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/joehewitt/nerve.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nerve/0.0.1", + "0.0.2": "http://registry.npmjs.org/nerve/0.0.2", + "0.0.3": "http://registry.npmjs.org/nerve/0.0.3", + "0.0.4": "http://registry.npmjs.org/nerve/0.0.4", + "0.0.5": "http://registry.npmjs.org/nerve/0.0.5", + "0.0.6": "http://registry.npmjs.org/nerve/0.0.6", + "0.0.7": "http://registry.npmjs.org/nerve/0.0.7", + "0.0.8": "http://registry.npmjs.org/nerve/0.0.8", + "0.0.9": "http://registry.npmjs.org/nerve/0.0.9", + "0.0.10": "http://registry.npmjs.org/nerve/0.0.10" + }, + "dist": { + "0.0.1": { + "shasum": "f106bf9ea9e08c81d740ea9d6c9aa224247901a5", + "tarball": "http://registry.npmjs.org/nerve/-/nerve-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "d153db582a4063639747a330ac0b59f54128af93", + "tarball": "http://registry.npmjs.org/nerve/-/nerve-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "c61374b723043cfeaf09772b5feaeda256f6f968", + "tarball": "http://registry.npmjs.org/nerve/-/nerve-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "7960319ac9a22f1db34b779b97757eff33ef4382", + "tarball": "http://registry.npmjs.org/nerve/-/nerve-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "ac343cffaf2f8130755a96d370fbf8b2df485987", + "tarball": "http://registry.npmjs.org/nerve/-/nerve-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "ec4e8d8223b632aacde0069dcf688bd634e361a8", + "tarball": "http://registry.npmjs.org/nerve/-/nerve-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "255e61ee2d2699faa86f70bd6cafe09c2748f65e", + "tarball": "http://registry.npmjs.org/nerve/-/nerve-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "9072a5504f349a11774d7f10afc896c21103c1b5", + "tarball": "http://registry.npmjs.org/nerve/-/nerve-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "8c2010db5bf88772be1ee14dc75139f0f5cb3d2c", + "tarball": "http://registry.npmjs.org/nerve/-/nerve-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "6bbb7158c5cc0a941d31f872b4009a804463a074", + "tarball": "http://registry.npmjs.org/nerve/-/nerve-0.0.10.tgz" + } + }, + "keywords": [ + "blog" + ], + "url": "http://registry.npmjs.org/nerve/" + }, + "nest": { + "name": "nest", + "description": "A Node HTTP client aimed at REST API's.", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "Tim-Smart", + "email": "tim@fostle.com" + } + ], + "time": { + "modified": "2011-05-27T03:21:14.083Z", + "created": "2011-02-01T01:34:15.585Z", + "0.0.1": "2011-02-01T01:34:16.497Z", + "0.0.2": "2011-02-01T21:09:35.039Z", + "0.0.3": "2011-02-06T20:10:36.329Z", + "0.0.4": "2011-02-22T20:11:09.712Z", + "0.1.0": "2011-05-25T18:50:08.570Z", + "0.1.1": "2011-05-25T19:24:12.660Z", + "0.1.2": "2011-05-27T03:21:14.084Z" + }, + "author": { + "name": "Tim Smart", + "email": "tim@fostle.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/votizen/nest.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nest/0.0.1", + "0.0.2": "http://registry.npmjs.org/nest/0.0.2", + "0.0.3": "http://registry.npmjs.org/nest/0.0.3", + "0.0.4": "http://registry.npmjs.org/nest/0.0.4", + "0.1.0": "http://registry.npmjs.org/nest/0.1.0", + "0.1.1": "http://registry.npmjs.org/nest/0.1.1", + "0.1.2": "http://registry.npmjs.org/nest/0.1.2" + }, + "dist": { + "0.0.1": { + "shasum": "5078b1bfd5b104498742126275fbdd056b9f6ff3", + "tarball": "http://registry.npmjs.org/nest/-/nest-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "e05bf58ef09800621d72eb608e9a75b8b68a9777", + "tarball": "http://registry.npmjs.org/nest/-/nest-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "98d82673389f0d47ee6af5a8f8c6abba3c506248", + "tarball": "http://registry.npmjs.org/nest/-/nest-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "e688c93921bbed6cf6c08607d4d051fd92781e40", + "tarball": "http://registry.npmjs.org/nest/-/nest-0.0.4.tgz" + }, + "0.1.0": { + "shasum": "e09e5085877335ce6226278f2aca419212aaa4e5", + "tarball": "http://registry.npmjs.org/nest/-/nest-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "058ff2826ea52029278a0c47493ed837b9a55a7e", + "tarball": "http://registry.npmjs.org/nest/-/nest-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "e9e324c5a71e571f1d264677fff09ff819612ab9", + "tarball": "http://registry.npmjs.org/nest/-/nest-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/nest/" + }, + "nestableflow": { + "name": "nestableflow", + "description": "Nestable flow-control module.", + "dist-tags": { + "latest": "0.0.14" + }, + "maintainers": [ + { + "name": "minodisk", + "email": "daisuke.mino@gmail.com" + } + ], + "time": { + "modified": "2011-08-31T11:19:15.637Z", + "created": "2011-07-22T12:58:33.873Z", + "0.0.12": "2011-07-22T12:58:34.912Z", + "0.0.14": "2011-08-31T11:19:15.637Z" + }, + "author": { + "name": "Daisuke MINO", + "email": "daisuke.mino@gmail.com" + }, + "versions": { + "0.0.12": "http://registry.npmjs.org/nestableflow/0.0.12", + "0.0.14": "http://registry.npmjs.org/nestableflow/0.0.14" + }, + "dist": { + "0.0.12": { + "shasum": "108cacb55b7d7d81ed086d7fd302cc7236869f60", + "tarball": "http://registry.npmjs.org/nestableflow/-/nestableflow-0.0.12.tgz" + }, + "0.0.14": { + "shasum": "8e1218f5af1af0828f4c93449f6242392b58b6df", + "tarball": "http://registry.npmjs.org/nestableflow/-/nestableflow-0.0.14.tgz" + } + }, + "url": "http://registry.npmjs.org/nestableflow/" + }, + "nestor": { + "name": "nestor", + "description": "Jenkins NodeJS CLI", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "cliffano", + "email": "cliffano@gmail.com" + } + ], + "time": { + "modified": "2011-07-17T14:59:12.502Z", + "created": "2011-07-17T14:59:10.057Z", + "0.0.1": "2011-07-17T14:59:12.502Z" + }, + "author": { + "name": "Cliffano Subagio", + "email": "blah@cliffano.com", + "url": "http://blog.cliffano.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/cliffano/nestor.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nestor/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "ffe1e6543e5ad2aee8151c477566b81aff21d91b", + "tarball": "http://registry.npmjs.org/nestor/-/nestor-0.0.1.tgz" + } + }, + "keywords": [ + "jenkins", + "ci" + ], + "url": "http://registry.npmjs.org/nestor/" + }, + "net": { + "name": "net", + "description": "Globalizes the 'net' module functions", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "sleeplessinc", + "email": "joe@sleepless.com" + } + ], + "time": { + "modified": "2011-09-17T04:18:37.007Z", + "created": "2011-09-17T04:18:35.052Z", + "1.0.0": "2011-09-17T04:18:37.008Z" + }, + "author": { + "name": "Joe Hitchens", + "email": "joe@sleepless.com", + "url": "sleepless.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/sleeplessinc/net.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/net/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "b41336343ab3f1d83b291b1d4a8a336f738938ee", + "tarball": "http://registry.npmjs.org/net/-/net-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/net/" + }, + "netasq-comm": { + "name": "netasq-comm", + "description": "A comm library and a CLI to connect to NETASQ security appliances", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "sdolard", + "email": "sdolard@gmail.com" + } + ], + "time": { + "modified": "2011-10-02T21:15:04.631Z", + "created": "2011-09-30T11:00:44.579Z", + "0.1.0": "2011-09-30T11:00:45.801Z", + "0.1.1": "2011-10-02T20:15:33.805Z" + }, + "author": { + "name": "Sebastien Dolard" + }, + "repository": { + "type": "git", + "url": "git://github.com/sdolard/node-netasq-comm.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/netasq-comm/0.1.0", + "0.1.1": "http://registry.npmjs.org/netasq-comm/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "bfcd52c5f3c57640a1c9bf520f00c95496e2a760", + "tarball": "http://registry.npmjs.org/netasq-comm/-/netasq-comm-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "271dcd0f3096be97fd6c267cba6a5e4b672e28fc", + "tarball": "http://registry.npmjs.org/netasq-comm/-/netasq-comm-0.1.1.tgz" + } + }, + "keywords": [ + "netasq", + "comm", + "cli" + ], + "url": "http://registry.npmjs.org/netasq-comm/" + }, + "netiface": { + "name": "netiface", + "description": "List Network Interfaces and their Addresses", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "phidelta", + "email": "phidelta@phideltacity.net" + } + ], + "versions": { + "0.0.1": "http://registry.npmjs.org/netiface/0.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/netiface/-/netiface-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/netiface/" + }, + "netOS": { + "name": "netOS", + "description": "Event driven network operating system", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "jared", + "email": "jared.j.barnes@gmail.com" + } + ], + "time": { + "modified": "2011-09-24T15:32:15.246Z", + "created": "2011-09-24T15:32:07.450Z", + "0.0.1": "2011-09-24T15:32:15.246Z" + }, + "author": { + "name": "Jared Barnes", + "email": "jared.j.barnes@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/netOS/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "99bc2a3d89d9820886bcf37edc5cd5ed317003f5", + "tarball": "http://registry.npmjs.org/netOS/-/netOS-0.0.1.tgz" + } + }, + "keywords": [ + "operating system", + "os", + "network", + "server" + ], + "url": "http://registry.npmjs.org/netOS/" + }, + "NetOS": { + "name": "NetOS", + "description": "Event driven network operating system", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "jaredjbarnes", + "email": "jared.j.barnes@gmail.com" + } + ], + "time": { + "modified": "2011-09-22T04:48:06.529Z", + "created": "2011-09-22T04:48:04.515Z", + "0.0.1": "2011-09-22T04:48:06.529Z" + }, + "author": { + "name": "Jared Barnes", + "email": "jared.j.barnes@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/NetOS/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "3d7767114edf9a31b42b5905ba848ed697ed6a2f", + "tarball": "http://registry.npmjs.org/NetOS/-/NetOS-0.0.1.tgz" + } + }, + "keywords": [ + "operating system", + "os", + "network", + "server", + "nodes" + ], + "url": "http://registry.npmjs.org/NetOS/" + }, + "netpool": { + "name": "netpool", + "description": "a tcp connection pool", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "alvayang", + "email": "netyang@gmail.com" + } + ], + "time": { + "modified": "2011-08-16T07:11:30.720Z", + "created": "2011-08-16T07:11:28.824Z", + "0.0.1": "2011-08-16T07:11:30.720Z" + }, + "author": { + "name": "Song Yang", + "email": "netyang@gmail.com", + "url": "https://github.com/alvayang" + }, + "repository": { + "type": "git", + "url": "git://github.com/alvayang/node_netpool.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/netpool/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "0b6d379cd0ec3c56d3d81bb22982b8a1caa096dc", + "tarball": "http://registry.npmjs.org/netpool/-/netpool-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/netpool/" + }, + "netstring": { + "name": "netstring", + "description": "A netstring implementation", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "pgriess", + "email": "pg@std.in" + }, + { + "name": "josh", + "email": "josh@joshpeek.com" + } + ], + "author": { + "name": "Peter Griess", + "email": "pg@std.in" + }, + "time": { + "modified": "2011-05-08T23:14:47.613Z", + "created": "2011-05-08T21:47:01.038Z", + "0.1.0": "2011-05-08T21:47:01.038Z", + "0.2.0": "2011-05-08T23:14:47.613Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/netstring/0.1.0", + "0.2.0": "http://registry.npmjs.org/netstring/0.2.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/netstring/-/netstring-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "e519e164a8866afbf5940c46e9b8259fb20f2287", + "tarball": "http://registry.npmjs.org/netstring/-/netstring-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/netstring/" + }, + "neuron": { + "name": "neuron", + "description": "The simplest possible event driven job manager, FIFO queue, and 'task based cache' in node.js", + "dist-tags": { + "latest": "0.4.4" + }, + "maintainers": [ + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + } + ], + "time": { + "modified": "2011-11-10T19:11:45.176Z", + "created": "2011-02-16T10:45:13.373Z", + "0.2.1": "2011-02-16T10:45:13.540Z", + "0.3.0": "2011-03-24T03:39:58.894Z", + "0.4.1": "2011-03-29T23:34:53.623Z", + "0.4.2": "2011-04-07T05:38:43.499Z", + "0.4.3": "2011-05-25T05:49:07.739Z", + "0.4.4": "2011-11-10T19:11:45.176Z" + }, + "author": { + "name": "Charlie Robbins", + "email": "charlie.robbins@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/indexzero/neuron.git" + }, + "versions": { + "0.2.1": "http://registry.npmjs.org/neuron/0.2.1", + "0.3.0": "http://registry.npmjs.org/neuron/0.3.0", + "0.4.1": "http://registry.npmjs.org/neuron/0.4.1", + "0.4.2": "http://registry.npmjs.org/neuron/0.4.2", + "0.4.3": "http://registry.npmjs.org/neuron/0.4.3", + "0.4.4": "http://registry.npmjs.org/neuron/0.4.4" + }, + "dist": { + "0.2.1": { + "shasum": "ae6e1daeb0a102bb540b3ef44cb2eefb90d86699", + "tarball": "http://registry.npmjs.org/neuron/-/neuron-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "ca87b4afada61e72c579b360856e2b6178af2995", + "tarball": "http://registry.npmjs.org/neuron/-/neuron-0.3.0.tgz" + }, + "0.4.1": { + "shasum": "af51eff9911c3659d04fe14b33ed9057d05fba85", + "tarball": "http://registry.npmjs.org/neuron/-/neuron-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "ae85a2b99e104deb5657b0e217f085399b58ff9d", + "tarball": "http://registry.npmjs.org/neuron/-/neuron-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "859903cf934477c046c87226f114e4aa6c33b8c7", + "tarball": "http://registry.npmjs.org/neuron/-/neuron-0.4.3.tgz" + }, + "0.4.4": { + "shasum": "470ed06d81fe9195d1a0e758950a83d03d3a3e66", + "tarball": "http://registry.npmjs.org/neuron/-/neuron-0.4.4.tgz" + } + }, + "keywords": [ + "job queue", + "tools", + "cache" + ], + "url": "http://registry.npmjs.org/neuron/" + }, + "new": { + "name": "new", + "description": "Shell script using initializr/html5boilerplate API to quickly generate project setups.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "ardcore", + "email": "szymon.pilkowski@gmail.com" + } + ], + "time": { + "modified": "2011-04-10T14:56:40.672Z", + "created": "2011-04-10T14:56:40.092Z", + "0.1.1": "2011-04-10T14:56:40.672Z" + }, + "author": { + "name": "Szymon Pilkowski", + "email": "szymon.pilkowski@gmail.com", + "url": "http://twitter.com/ard" + }, + "repository": { + "type": "git", + "url": "http://github.com/ardcore/new.js.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/new/0.1.1" + }, + "dist": { + "0.1.1": { + "shasum": "e378203be64b404a6a95aa809a35ea98f3907972", + "tarball": "http://registry.npmjs.org/new/-/new-0.1.1.tgz" + } + }, + "keywords": [ + "html5", + "html5boilerplate", + "initializr", + "shell" + ], + "url": "http://registry.npmjs.org/new/" + }, + "NewBase60": { + "name": "NewBase60", + "description": "Tantek Çelik's NewBase60, lightly translated from the original CASSIS to CommonsJS- & Node.js-aware JavaScript by Edward O'Connor. Released under CC BY-SA 3.0.", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "shiawuen", + "email": "shiawuen@gmail.com" + } + ], + "time": { + "modified": "2011-09-15T13:50:28.351Z", + "created": "2011-09-15T13:49:31.406Z", + "1.0.0": "2011-09-15T13:50:28.351Z" + }, + "author": { + "name": "Edward O'Connor", + "email": "hober0@gmail.com", + "url": "http://edward.oconnor.cx" + }, + "repository": { + "type": "git", + "url": "git://github.com/hober/NewBase60.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/NewBase60/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "ca30fa0616144e0976322431b4c4cf5ceb1e2c07", + "tarball": "http://registry.npmjs.org/NewBase60/-/NewBase60-1.0.0.tgz" + } + }, + "keywords": [ + "NewBase60", + "utility" + ], + "url": "http://registry.npmjs.org/NewBase60/" + }, + "newforms": { + "name": "newforms", + "description": "Form validation and display library", + "dist-tags": { + "latest": "0.0.4alpha1" + }, + "maintainers": [ + { + "name": "insin", + "email": "jonathan.buchanan@gmail.com" + } + ], + "time": { + "modified": "2011-08-18T21:58:24.221Z", + "created": "2011-03-04T06:13:50.906Z", + "0.0.1": "2011-03-04T06:13:51.441Z", + "0.0.2": "2011-03-19T00:21:14.286Z", + "0.0.3": "2011-07-28T22:37:03.659Z", + "0.0.4alpha1": "2011-08-18T21:58:24.221Z" + }, + "author": { + "name": "Jonathan Buchanan", + "email": "jonathan.buchanan@gmail.com", + "url": "https://github.com/insin" + }, + "repository": { + "type": "git", + "url": "git://github.com/insin/newforms.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/newforms/0.0.1", + "0.0.2": "http://registry.npmjs.org/newforms/0.0.2", + "0.0.3": "http://registry.npmjs.org/newforms/0.0.3", + "0.0.4alpha1": "http://registry.npmjs.org/newforms/0.0.4alpha1" + }, + "dist": { + "0.0.1": { + "shasum": "84966c3a45fecb0db7b4325bf30d069d79a4890a", + "tarball": "http://registry.npmjs.org/newforms/-/newforms-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "2678accb43346aba719817b3087f797f7db040c7", + "tarball": "http://registry.npmjs.org/newforms/-/newforms-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "c19a854cf79093836a88fb1810740d07efbc97bb", + "tarball": "http://registry.npmjs.org/newforms/-/newforms-0.0.3.tgz" + }, + "0.0.4alpha1": { + "shasum": "e6013cfa5a8ce818f6a54f1b76f7dee56d64494d", + "tarball": "http://registry.npmjs.org/newforms/-/newforms-0.0.4alpha1.tgz" + } + }, + "keywords": [ + "form", + "validation", + "display", + "HTML" + ], + "url": "http://registry.npmjs.org/newforms/" + }, + "nexe": { + "name": "nexe", + "description": "Roll node.s applications into a single executable", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "Compile javascript **with** node.js. This allows you to move your executable around *without* needing to install the node.js runtime.\n\n## Requirements\n\n- Linux / Mac (windows soon)\n\n## Installation\n\nVia NPM:\n\n```bash\n\tnpm install nexe\n```\n\nOr git:\n\n```bash\n\tgit clone \n```\n\n\n### Motivation\n\n- Developing client-side utilities without requiring to install a bunch of dependencies first (node.js, npm).\n- Ability to run multiple node.js applications with *different* node.js runtimes. \n\n\n### CLI Usage\n\n````text\n\t\nUsage: nexe -i [sources] -o [binary]\n\nOptions:\n -i, --input The entry javascript files [default: cwd]\n -o, --output The output binary [default: cwd/app.nex]\n -r, --runtime The node.js runtime to use [default: \"0.6.3\"]\n\n\n```` \n\n\n### Code usage\n\n````javascript\n\nvar nexe = require('nexe');\n\nnexe.compile({ entries: 'input.js', output: 'path/to/bin', runtime: '0.6.3' } function() {\n\t\n});\n\t\n````\n\n\n\n\n\n", + "maintainers": [ + { + "name": "architectd", + "email": "craig.j.condon@gmail.com" + } + ], + "time": { + "modified": "2011-11-30T18:54:47.774Z", + "created": "2011-11-30T18:54:46.932Z", + "0.0.1": "2011-11-30T18:54:47.774Z" + }, + "author": { + "name": "Craig Condon", + "email": "craig.j.condon@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/crcn/nexe.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nexe/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "7bac2b126f66075680e45d797a52b7ba0de1bad5", + "tarball": "http://registry.npmjs.org/nexe/-/nexe-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/nexe/" + }, + "nexmo": { + "name": "nexmo", + "description": "A node.js library for accessing the Nexmo REST API", + "dist-tags": { + "latest": "0.0.7" + }, + "readme": "# node-nexmo\nA node.js library for accessing the Nexmo REST API.\n\n## Install\n\n
\n  npm install nexmo\n
\n\n## Dependencies\n\nThis library depends on:\n\n* [mikeal/request](https://github.com/mikeal/request)\n* [caolan/nodeunit](https://github.com/caolan/nodeunit) (for unit tests)\n", + "maintainers": [ + { + "name": "pofallon", + "email": "paul@ofallonfamily.com" + } + ], + "time": { + "modified": "2011-11-21T04:29:20.494Z", + "created": "2011-11-19T20:22:25.973Z", + "0.0.1": "2011-11-19T20:22:26.578Z", + "0.0.2": "2011-11-19T21:28:22.384Z", + "0.0.3": "2011-11-19T22:11:15.741Z", + "0.0.4": "2011-11-19T22:49:42.177Z", + "0.0.5": "2011-11-20T19:49:40.185Z", + "0.0.7": "2011-11-21T04:29:20.494Z" + }, + "author": { + "name": "Paul O'Fallon", + "email": "paul@ofallonfamily.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nexmo/0.0.1", + "0.0.2": "http://registry.npmjs.org/nexmo/0.0.2", + "0.0.3": "http://registry.npmjs.org/nexmo/0.0.3", + "0.0.4": "http://registry.npmjs.org/nexmo/0.0.4", + "0.0.5": "http://registry.npmjs.org/nexmo/0.0.5", + "0.0.7": "http://registry.npmjs.org/nexmo/0.0.7" + }, + "dist": { + "0.0.1": { + "shasum": "5c8b94203fc9f65e25c5e0ee9634b45a34271342", + "tarball": "http://registry.npmjs.org/nexmo/-/nexmo-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "a72e3935e2de45b3a99d79f763bfb324bc1fcf2b", + "tarball": "http://registry.npmjs.org/nexmo/-/nexmo-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "6c157610b3167c12acdcf0cb0af30c5683511613", + "tarball": "http://registry.npmjs.org/nexmo/-/nexmo-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "9b9cd746f03ccd02610c920bf722a1cf3900af6d", + "tarball": "http://registry.npmjs.org/nexmo/-/nexmo-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "ca77fe56ded08a2221878626da68341bab80a112", + "tarball": "http://registry.npmjs.org/nexmo/-/nexmo-0.0.5.tgz" + }, + "0.0.7": { + "shasum": "76244a622a85f8523021ab196ec61a5cdcf28f85", + "tarball": "http://registry.npmjs.org/nexmo/-/nexmo-0.0.7.tgz" + } + }, + "keywords": [ + "nexmo", + "sms" + ], + "url": "http://registry.npmjs.org/nexmo/" + }, + "nexmo-api": { + "name": "nexmo-api", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": null, + "maintainers": [ + { + "name": "bradleymeck", + "email": "bradley.meck@gmail.com" + } + ], + "time": { + "modified": "2011-11-20T09:48:41.528Z", + "created": "2011-11-20T09:39:57.607Z", + "0.0.0": "2011-11-20T09:39:58.566Z", + "0.0.1": "2011-11-20T09:48:41.528Z" + }, + "author": { + "name": "bradleymeck" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/nexmo-api/0.0.0", + "0.0.1": "http://registry.npmjs.org/nexmo-api/0.0.1" + }, + "dist": { + "0.0.0": { + "shasum": "662c2b54b0c45aa3371becff16a7ec3695c78ee1", + "tarball": "http://registry.npmjs.org/nexmo-api/-/nexmo-api-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "61afdd924620254f0307d3bedb191b3d7ad8cff8", + "tarball": "http://registry.npmjs.org/nexmo-api/-/nexmo-api-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/nexmo-api/" + }, + "nexmoapi": { + "name": "nexmoapi", + "dist-tags": { + "latest": "0.1.5-1" + }, + "maintainers": [ + { + "name": "ablakely", + "email": "aaron@ephasic.org" + } + ], + "time": { + "modified": "2011-11-23T02:08:34.394Z", + "created": "2011-11-19T23:18:08.936Z", + "0.0.1": "2011-11-19T23:45:44.784Z", + "0.0.2": "2011-11-20T00:14:09.877Z", + "0.0.3": "2011-11-20T01:05:00.316Z", + "0.0.4": "2011-11-20T02:27:45.116Z", + "0.0.5": "2011-11-20T02:47:28.218Z", + "0.0.6": "2011-11-20T03:10:22.031Z", + "0.0.7": "2011-11-20T15:37:58.606Z", + "0.0.8": "2011-11-20T16:03:17.435Z", + "0.0.9": "2011-11-20T20:13:54.950Z", + "0.1.0": "2011-11-20T20:41:05.645Z", + "0.1.0-1": "2011-11-20T20:47:56.634Z", + "0.1.1": "2011-11-20T21:29:00.644Z", + "0.1.2": "2011-11-21T01:20:07.055Z", + "0.1.3": "2011-11-22T03:51:37.797Z", + "0.1.4": "2011-11-22T04:22:42.710Z", + "0.1.4-1": "2011-11-22T04:42:19.884Z", + "0.1.5": "2011-11-23T01:27:14.346Z", + "0.1.5-1": "2011-11-23T02:08:34.394Z" + }, + "description": "Node interface to nexmo.com's SMS API.", + "author": { + "name": "Aaron Blakely" + }, + "repository": { + "type": "git", + "url": "git://github.com/ablakely/node-nexmo.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nexmoapi/0.0.1", + "0.0.3": "http://registry.npmjs.org/nexmoapi/0.0.3", + "0.0.4": "http://registry.npmjs.org/nexmoapi/0.0.4", + "0.0.5": "http://registry.npmjs.org/nexmoapi/0.0.5", + "0.0.6": "http://registry.npmjs.org/nexmoapi/0.0.6", + "0.0.7": "http://registry.npmjs.org/nexmoapi/0.0.7", + "0.0.8": "http://registry.npmjs.org/nexmoapi/0.0.8", + "0.0.9": "http://registry.npmjs.org/nexmoapi/0.0.9", + "0.1.0": "http://registry.npmjs.org/nexmoapi/0.1.0", + "0.1.0-1": "http://registry.npmjs.org/nexmoapi/0.1.0-1", + "0.1.1": "http://registry.npmjs.org/nexmoapi/0.1.1", + "0.1.2": "http://registry.npmjs.org/nexmoapi/0.1.2", + "0.1.3": "http://registry.npmjs.org/nexmoapi/0.1.3", + "0.1.4": "http://registry.npmjs.org/nexmoapi/0.1.4", + "0.1.4-1": "http://registry.npmjs.org/nexmoapi/0.1.4-1", + "0.1.5": "http://registry.npmjs.org/nexmoapi/0.1.5", + "0.1.5-1": "http://registry.npmjs.org/nexmoapi/0.1.5-1" + }, + "dist": { + "0.0.1": { + "shasum": "fe9ab747f3690a85a15c253acc76ef9749e508fa", + "tarball": "http://registry.npmjs.org/nexmoapi/-/nexmoapi-0.0.1.tgz" + }, + "0.0.3": { + "shasum": "7f75ba58369050472cda2bf4601d098527eca304", + "tarball": "http://registry.npmjs.org/nexmoapi/-/nexmoapi-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "8e561a8120118b5fb63841701c7f7a5b59714457", + "tarball": "http://registry.npmjs.org/nexmoapi/-/nexmoapi-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "5f223394f21beb17d040680c2dfaa724719a9c30", + "tarball": "http://registry.npmjs.org/nexmoapi/-/nexmoapi-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "13351b2d337514dff93b1b1e5ebe8f0115235c42", + "tarball": "http://registry.npmjs.org/nexmoapi/-/nexmoapi-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "37fd9120a98bc1474cdf498a8d32cd72192b6c40", + "tarball": "http://registry.npmjs.org/nexmoapi/-/nexmoapi-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "a411b29bf5a70f6eb3d226da7ac9b93d29ea5f23", + "tarball": "http://registry.npmjs.org/nexmoapi/-/nexmoapi-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "62272da7a3ee5530e6b6c7b53fca4ecfcf474a80", + "tarball": "http://registry.npmjs.org/nexmoapi/-/nexmoapi-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "7e8a17323429596d3fc12142d343ee88283db777", + "tarball": "http://registry.npmjs.org/nexmoapi/-/nexmoapi-0.1.0.tgz" + }, + "0.1.0-1": { + "shasum": "7cf8a4c37e417ede568b33bfe8df886f17b8af9d", + "tarball": "http://registry.npmjs.org/nexmoapi/-/nexmoapi-0.1.0-1.tgz" + }, + "0.1.1": { + "shasum": "3a3c11ff82f12e4eed849e70e4625c1ce43a1b04", + "tarball": "http://registry.npmjs.org/nexmoapi/-/nexmoapi-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "0a829b14c0d526a5330e8a06d78f968b3d0450aa", + "tarball": "http://registry.npmjs.org/nexmoapi/-/nexmoapi-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "3b8f9a1856082e27e91adb788e19fc4505849746", + "tarball": "http://registry.npmjs.org/nexmoapi/-/nexmoapi-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "b09546e73808d512ab363ee213fc8c8af2a69ee7", + "tarball": "http://registry.npmjs.org/nexmoapi/-/nexmoapi-0.1.4.tgz" + }, + "0.1.4-1": { + "shasum": "678557ec97e5797ddcedd86c93b60262a4e02eed", + "tarball": "http://registry.npmjs.org/nexmoapi/-/nexmoapi-0.1.4-1.tgz" + }, + "0.1.5": { + "shasum": "66d8413d8412a2d8d46db1b4a9a2b974466cbee3", + "tarball": "http://registry.npmjs.org/nexmoapi/-/nexmoapi-0.1.5.tgz" + }, + "0.1.5-1": { + "shasum": "dfaa43f12a88e82d58a594caa7e801646835f26e", + "tarball": "http://registry.npmjs.org/nexmoapi/-/nexmoapi-0.1.5-1.tgz" + } + }, + "keywords": [ + "nexmo", + "sms", + "international" + ], + "url": "http://registry.npmjs.org/nexmoapi/" + }, + "NexmoJS": { + "name": "NexmoJS", + "description": "A node implementation of Nexmo REST API written in Coffeescript.", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "rodbot", + "email": "rwilhelmy@gmail.com" + } + ], + "time": { + "modified": "2011-11-21T02:14:37.562Z", + "created": "2011-11-21T01:36:36.920Z", + "1.0.0": "2011-11-21T02:14:37.562Z" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/NexmoJS/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "619ead07b9705bdcb4ef89941c359a6b951a9afd", + "tarball": "http://registry.npmjs.org/NexmoJS/-/NexmoJS-1.0.0.tgz" + } + }, + "keywords": [ + "nexmo", + "sms", + "REST", + "API" + ], + "url": "http://registry.npmjs.org/NexmoJS/" + }, + "nexpect": { + "name": "nexpect", + "description": "Spawns and interacts with child processes using spawn / expect commands", + "dist-tags": { + "latest": "0.2.4" + }, + "maintainers": [ + { + "name": "marak", + "email": "marak.squires@gmail.com" + }, + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + } + ], + "author": { + "name": "Elijah Insua", + "email": "tmpvar@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/nodejitsu/nexpect.git" + }, + "time": { + "modified": "2011-08-10T15:40:36.363Z", + "created": "2011-08-10T04:40:29.634Z", + "0.1.0": "2011-08-10T04:40:29.634Z", + "0.2.1": "2011-08-10T05:03:57.597Z", + "0.2.2": "2011-08-10T07:46:46.264Z", + "0.2.3": "2011-08-10T09:24:58.514Z", + "0.2.4": "2011-08-10T15:40:36.363Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/nexpect/0.1.0", + "0.2.1": "http://registry.npmjs.org/nexpect/0.2.1", + "0.2.2": "http://registry.npmjs.org/nexpect/0.2.2", + "0.2.3": "http://registry.npmjs.org/nexpect/0.2.3", + "0.2.4": "http://registry.npmjs.org/nexpect/0.2.4" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/nexpect/-/nexpect-0.1.0.tgz" + }, + "0.2.1": { + "shasum": "a3cfaaf253c453681ef6c32163aa0ddc6fd6b219", + "tarball": "http://registry.npmjs.org/nexpect/-/nexpect-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "e58c25759ca558077aefa7b07657df8dfd663bfb", + "tarball": "http://registry.npmjs.org/nexpect/-/nexpect-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "0646c52f9435706e363accf2ff24d5d618045564", + "tarball": "http://registry.npmjs.org/nexpect/-/nexpect-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "e682232e94f13637d1256ae09a741c0d3d5b475b", + "tarball": "http://registry.npmjs.org/nexpect/-/nexpect-0.2.4.tgz" + } + }, + "keywords": [ + "nexpect", + "spawn", + "child process", + "terminal" + ], + "url": "http://registry.npmjs.org/nexpect/" + }, + "next": { + "name": "next", + "description": "Node.js extensions", + "dist-tags": { + "latest": "0.2.3" + }, + "maintainers": [ + { + "name": "medikoo", + "email": "medikoo+npm@medikoo.com" + } + ], + "time": { + "modified": "2011-08-12T11:25:14.932Z", + "created": "2011-07-11T11:00:45.416Z", + "0.1.0": "2011-07-11T11:00:46.466Z", + "0.1.1": "2011-07-11T12:10:45.672Z", + "0.2.0": "2011-08-08T08:59:45.122Z", + "0.2.1": "2011-08-08T15:01:28.562Z", + "0.2.2": "2011-08-11T15:24:01.620Z", + "0.2.3": "2011-08-12T11:25:14.932Z" + }, + "author": { + "name": "Mariusz Nowak", + "email": "medikoo+node-ext@medikoo.com", + "url": "http://www.medikoo.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/medikoo/node-ext.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/next/0.1.0", + "0.1.1": "http://registry.npmjs.org/next/0.1.1", + "0.2.0": "http://registry.npmjs.org/next/0.2.0", + "0.2.1": "http://registry.npmjs.org/next/0.2.1", + "0.2.2": "http://registry.npmjs.org/next/0.2.2", + "0.2.3": "http://registry.npmjs.org/next/0.2.3" + }, + "dist": { + "0.1.0": { + "shasum": "9086b173b0dadfec1bf12face775c6cc9e40fbeb", + "tarball": "http://registry.npmjs.org/next/-/next-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "ce1a0b1bbd4ab0b1d4f81d65f92d0d73b6de320f", + "tarball": "http://registry.npmjs.org/next/-/next-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "4edf2240622285ea6523caf8c15c7e5af4b5a3af", + "tarball": "http://registry.npmjs.org/next/-/next-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "878566e52e42cabec79b8e5428c80f703b131bc5", + "tarball": "http://registry.npmjs.org/next/-/next-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "02cc2d75edaed0639a4cd020eb705c86466f2218", + "tarball": "http://registry.npmjs.org/next/-/next-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "fb7e0c339b53038fff4b39ea8baf9abf5be3040a", + "tarball": "http://registry.npmjs.org/next/-/next-0.2.3.tgz" + } + }, + "keywords": [ + "node", + "nodejs", + "node.js", + "extensions", + "addons", + "extras" + ], + "url": "http://registry.npmjs.org/next/" + }, + "nextrip": { + "name": "nextrip", + "description": "Get realtime bus information for the Twin Cities. Uses NexTrip from Metro Transit.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "mertonium", + "email": "john.mertens\b\b@gmail.com" + } + ], + "time": { + "modified": "2011-09-16T04:00:53.135Z", + "created": "2011-09-12T05:11:13.456Z", + "0.0.1": "2011-09-12T05:11:14.290Z", + "0.0.2": "2011-09-16T04:00:53.135Z" + }, + "author": { + "name": "John Mertens", + "email": "john@mertonium.com", + "url": "http://mertonium.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mertonium/nextrip-node.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nextrip/0.0.1", + "0.0.2": "http://registry.npmjs.org/nextrip/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "49aee50b2a31967493a307000f6f31661f09139c", + "tarball": "http://registry.npmjs.org/nextrip/-/nextrip-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "b5b4f6db179aa0c60d7770e09497399bdd472833", + "tarball": "http://registry.npmjs.org/nextrip/-/nextrip-0.0.2.tgz" + } + }, + "keywords": [ + "transit", + "twin cities", + "real", + "time", + "bus" + ], + "url": "http://registry.npmjs.org/nextrip/" + }, + "nexttick": { + "name": "nexttick", + "description": "Common functions using process.nextTick()", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "stagas", + "email": "gstagas@gmail.com" + } + ], + "time": { + "modified": "2011-10-11T20:26:27.180Z", + "created": "2011-07-04T22:45:35.422Z", + "0.0.1": "2011-07-04T22:45:36.110Z", + "0.0.2": "2011-07-05T15:35:18.331Z", + "0.1.0": "2011-10-11T20:26:27.180Z" + }, + "author": { + "name": "George Stagas", + "email": "gstagas@gmail.com", + "url": "http://stagas.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/stagas/nexttick.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nexttick/0.0.1", + "0.0.2": "http://registry.npmjs.org/nexttick/0.0.2", + "0.1.0": "http://registry.npmjs.org/nexttick/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "778cb6e34ed396aa01b14b8bd9c8e6a11a78ae30", + "tarball": "http://registry.npmjs.org/nexttick/-/nexttick-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "05faa5e4a359dd5ffe2082713db10b4d1724e57a", + "tarball": "http://registry.npmjs.org/nexttick/-/nexttick-0.0.2.tgz" + }, + "0.1.0": { + "shasum": "6cfbe4db72d6e1a242bf7182a51418f8c1d39b66", + "tarball": "http://registry.npmjs.org/nexttick/-/nexttick-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/nexttick/" + }, + "nexus": { + "name": "nexus", + "description": "remote program installation and control", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "# nexus - remote program installation and control (work in progress/proof of concept)\n\n _______________________________\n / ___ ___ _ _ _ _ ___ \\\n | | || -_||_'_|| | ||_ -| |\n | |_|_||___||_,_||___||___| |\n \\_____________________________ / ____ ___\n \\| / . \\ .-´/ \\`-.\n \\____ \\/ \\___/ \\__\n \\_`---´___`---´-´\n /../..\\ /..\\..\\\n\n* nexus is basically a mashup of [npm], [hook.io] and [forever].\n* nexus provides a cli and a hook.io-hook to install, uninstall, start, stop \n and observe local and remote programs (npm packages).\n* all the config, logs and programs live in `~/.nexus` by default.\n* nexus is still *super-alpha*. \n* nexus may be obsolete since one can do all these things with [hook.io](?). in\n that case see this project as my learning-by-doing-thing `:)`.\n\n## install\n\n* install [node]\n* install [npm]\n* `npm install nexus`\n\n## cli\n\nTBA (look at the code for now)\n\n## api\n\nTBA (look at the code for now)\n\n[hook.io]: https://github.com/hookio/hook.io\n[forever]: https://github.com/nodejitsu/forever\n[node]: http://nodejs.org\n[npm]: https://npmjs.org\n\n", + "maintainers": [ + { + "name": "guybrush", + "email": "patrick@buzzle.at" + } + ], + "time": { + "modified": "2011-12-08T19:02:48.184Z", + "created": "2011-11-23T02:29:27.596Z", + "0.0.0": "2011-11-23T02:29:29.451Z", + "0.0.1": "2011-12-08T19:02:48.184Z" + }, + "author": { + "name": "Patrick Pfeiffer", + "email": "patrick@buzzle.at" + }, + "repository": { + "type": "git", + "url": "git://github.com/guybrush/nexus.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/nexus/0.0.0", + "0.0.1": "http://registry.npmjs.org/nexus/0.0.1" + }, + "dist": { + "0.0.0": { + "shasum": "317d85e24a58fad9aa768eb6250fadb402a0d4d5", + "tarball": "http://registry.npmjs.org/nexus/-/nexus-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "0b9e571db7bd22b0702b328810802d634035722b", + "tarball": "http://registry.npmjs.org/nexus/-/nexus-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/nexus/" + }, + "ngen": { + "name": "ngen", + "description": "Package generator (structure, changelogs, tests, package.json, etc)", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "time": { + "modified": "2011-05-24T21:55:11.213Z", + "created": "2011-03-07T18:34:26.611Z", + "0.0.2": "2011-03-07T18:34:26.962Z", + "0.0.3": "2011-03-13T16:40:07.572Z", + "0.0.4": "2011-04-06T15:57:39.809Z", + "0.0.5": "2011-05-24T21:55:11.213Z" + }, + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "repository": { + "type": "git", + "url": "git://github.com/visionmedia/ngen.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/ngen/0.0.2", + "0.0.3": "http://registry.npmjs.org/ngen/0.0.3", + "0.0.4": "http://registry.npmjs.org/ngen/0.0.4", + "0.0.5": "http://registry.npmjs.org/ngen/0.0.5" + }, + "dist": { + "0.0.2": { + "shasum": "4f22a4950dda46efea14046628b25f3160a8584f", + "tarball": "http://registry.npmjs.org/ngen/-/ngen-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "9108ccddb9e8a3699000445ac30b78b9c529a9d9", + "tarball": "http://registry.npmjs.org/ngen/-/ngen-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "619b3916386b8cf8fad8400cc3c7df3794d08d83", + "tarball": "http://registry.npmjs.org/ngen/-/ngen-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "d3a093522261322cba89f949c6434b0dd6fbf000", + "tarball": "http://registry.npmjs.org/ngen/-/ngen-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/ngen/" + }, + "ngen-basicexample": { + "name": "ngen-basicexample", + "description": "An ngen npm example template", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "demetriusj", + "email": "contact@demetriusj.com" + } + ], + "time": { + "modified": "2011-05-19T14:07:22.836Z", + "created": "2011-05-19T14:07:22.624Z", + "0.0.1": "2011-05-19T14:07:22.836Z" + }, + "author": { + "name": "Demetrius Johnson", + "url": "http://demetriusj.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:demetriusj/ngen-basicexample.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ngen-basicexample/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "d8c935395fbf183db45d3e8ed0ae343a6d43eaad", + "tarball": "http://registry.npmjs.org/ngen-basicexample/-/ngen-basicexample-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/ngen-basicexample/" + }, + "ngeohash": { + "name": "ngeohash", + "description": "geohash library for nodejs", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "sunng", + "email": "classicning@gmail.com" + } + ], + "time": { + "modified": "2011-06-23T13:31:12.242Z", + "created": "2011-06-23T11:55:56.827Z", + "0.1.0": "2011-06-23T11:55:58.222Z", + "0.2.0": "2011-06-23T13:31:12.242Z" + }, + "author": { + "name": "Sun Ning", + "email": "classicning@gmail.com", + "url": "http://sunng.info/" + }, + "repository": { + "url": "https://github.com/sunng87/node-geohash" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/ngeohash/0.1.0", + "0.2.0": "http://registry.npmjs.org/ngeohash/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "0a833ccd399ed37438ba4488c529b4b9f347948e", + "tarball": "http://registry.npmjs.org/ngeohash/-/ngeohash-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "1a27151bb38bc7323ce4af146d52e1be414f8a2b", + "tarball": "http://registry.npmjs.org/ngeohash/-/ngeohash-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/ngeohash/" + }, + "ngist": { + "name": "ngist", + "description": "Gist module and CLI tool using node.js", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "chapel", + "email": "jacob.chapel@gmail.com" + } + ], + "time": { + "modified": "2011-02-16T23:30:38.294Z", + "created": "2011-02-14T13:08:36.919Z", + "0.1.0": "2011-02-14T13:08:37.430Z", + "0.1.1": "2011-02-14T14:30:34.886Z", + "0.2.0": "2011-02-16T23:30:38.294Z" + }, + "author": { + "name": "Jacob Chapel", + "email": "jacob.chapel@gmail.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/chapel/ngist.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/ngist/0.1.0", + "0.1.1": "http://registry.npmjs.org/ngist/0.1.1", + "0.2.0": "http://registry.npmjs.org/ngist/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "b3de332e79f39d789a3094bf886839ddf7055212", + "tarball": "http://registry.npmjs.org/ngist/-/ngist-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "fb5dbc9c0fea9a824b931e25bfe15dade56504fc", + "tarball": "http://registry.npmjs.org/ngist/-/ngist-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "b350a9365d67669f3a8274ac08d69b8665e0dd33", + "tarball": "http://registry.npmjs.org/ngist/-/ngist-0.2.0.tgz" + } + }, + "keywords": [ + "gist", + "cli", + "github", + "tools" + ], + "url": "http://registry.npmjs.org/ngist/" + }, + "ngram": { + "name": "ngram", + "description": "ngrams for node.js", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "athoune", + "email": "mathieu@garambrogne.net" + } + ], + "author": { + "name": "Mathieu Lecarme", + "email": "mathieu@garambrogne.net" + }, + "time": { + "0.0.3": "2011-12-06T21:26:01.095Z", + "0.0.1": "2011-12-06T21:26:01.095Z", + "0.0.2": "2011-12-06T21:26:01.095Z", + "modified": "2011-12-06T21:26:01.095Z", + "created": "2011-12-06T21:26:01.095Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ngram/0.0.1", + "0.0.2": "http://registry.npmjs.org/ngram/0.0.2", + "0.0.3": "http://registry.npmjs.org/ngram/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "cde529c25e981db36d52e5c782899ba9dcb0956c", + "tarball": "http://registry.npmjs.org/ngram/-/ngram-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c8f2430d2c27c9344a68b1869c341aea1aaf07c5", + "tarball": "http://registry.npmjs.org/ngram/-/ngram-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "1ba09623ae7821f56cd2c6bce528eee834fbab18", + "tarball": "http://registry.npmjs.org/ngram/-/ngram-0.0.3.tgz" + } + }, + "keywords": [ + "ngram", + "language" + ], + "url": "http://registry.npmjs.org/ngram/" + }, + "ngrep": { + "name": "ngrep", + "description": "node-based grep utility", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "mmalecki", + "email": "maciej.malecki@notimplemented.org" + } + ], + "time": { + "modified": "2011-09-18T09:42:29.029Z", + "created": "2011-09-18T09:42:27.199Z", + "0.0.0": "2011-09-18T09:42:29.029Z" + }, + "author": { + "name": "Maciej Małecki", + "email": "maciej.malecki@notimplemented.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/mmalecki/ngrep.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/ngrep/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "63a4393748d5ece9954769e020bea1944c5fe0a0", + "tarball": "http://registry.npmjs.org/ngrep/-/ngrep-0.0.0.tgz" + } + }, + "keywords": [ + "grep", + "search", + "cli" + ], + "url": "http://registry.npmjs.org/ngrep/" + }, + "nhp-body-restreamer": { + "name": "nhp-body-restreamer", + "description": "re-stream a parsed body so that it can be proxied.", + "dist-tags": {}, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-07-30T08:41:47.543Z", + "created": "2011-07-30T08:41:47.543Z" + }, + "versions": {}, + "dist": {}, + "url": "http://registry.npmjs.org/nhp-body-restreamer/" + }, + "nhttpd": { + "name": "nhttpd", + "description": "Node HTTP server", + "dist-tags": { + "latest": "0.0.7pre-20110310" + }, + "maintainers": [ + { + "name": "inimino", + "email": "inimino@inimino.org" + } + ], + "time": { + "modified": "2011-03-11T07:44:27.457Z", + "created": "2011-03-11T07:44:27.287Z", + "0.0.7pre-20110310": "2011-03-11T07:44:27.457Z" + }, + "repository": "http://boshi.inimino.org/3box/nhttpd/", + "versions": { + "0.0.7pre-20110310": "http://registry.npmjs.org/nhttpd/0.0.7pre-20110310" + }, + "dist": { + "0.0.7pre-20110310": { + "shasum": "d334462a0ac71e4d44263899ec94e6799b7bcaa9", + "tarball": "http://registry.npmjs.org/nhttpd/-/nhttpd-0.0.7pre-20110310.tgz" + } + }, + "url": "http://registry.npmjs.org/nhttpd/" + }, + "nib": { + "name": "nib", + "description": "Stylus mixins and utilities", + "dist-tags": { + "latest": "0.3.1" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "time": { + "modified": "2011-11-30T18:19:05.076Z", + "created": "2011-04-11T20:28:07.041Z", + "0.0.1": "2011-04-11T20:28:07.440Z", + "0.0.2": "2011-04-11T20:37:03.501Z", + "0.0.3": "2011-04-11T21:27:44.419Z", + "0.0.4": "2011-04-12T17:52:57.900Z", + "0.0.5": "2011-04-12T21:46:55.394Z", + "0.0.6": "2011-04-15T17:13:07.396Z", + "0.0.7": "2011-04-25T01:28:09.730Z", + "0.0.8": "2011-05-24T17:13:51.047Z", + "0.1.0": "2011-08-04T23:11:14.916Z", + "0.2.0": "2011-08-26T20:32:51.129Z", + "0.3.0": "2011-11-17T22:53:04.113Z", + "0.3.1": "2011-11-30T18:19:05.076Z" + }, + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "repository": { + "type": "git", + "url": "git://github.com/visionmedia/nib.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nib/0.0.1", + "0.0.2": "http://registry.npmjs.org/nib/0.0.2", + "0.0.3": "http://registry.npmjs.org/nib/0.0.3", + "0.0.4": "http://registry.npmjs.org/nib/0.0.4", + "0.0.5": "http://registry.npmjs.org/nib/0.0.5", + "0.0.6": "http://registry.npmjs.org/nib/0.0.6", + "0.0.7": "http://registry.npmjs.org/nib/0.0.7", + "0.0.8": "http://registry.npmjs.org/nib/0.0.8", + "0.1.0": "http://registry.npmjs.org/nib/0.1.0", + "0.2.0": "http://registry.npmjs.org/nib/0.2.0", + "0.3.0": "http://registry.npmjs.org/nib/0.3.0", + "0.3.1": "http://registry.npmjs.org/nib/0.3.1" + }, + "dist": { + "0.0.1": { + "shasum": "865e81b88a6f0a9d6cacf7b8ecbc79177f45d89c", + "tarball": "http://registry.npmjs.org/nib/-/nib-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "5ff647ae8100b25995848906af02ba4bad9e1f2a", + "tarball": "http://registry.npmjs.org/nib/-/nib-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "2612a2111ca234e667735b143853a024247bf759", + "tarball": "http://registry.npmjs.org/nib/-/nib-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "a08bd87bb2ca6fd6db3de597ec7c426fc1715163", + "tarball": "http://registry.npmjs.org/nib/-/nib-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "625e95d37de960bedd27f6b65760cc058aa79f21", + "tarball": "http://registry.npmjs.org/nib/-/nib-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "5c8bb67bfd8cd354a8e2b50b1c9262a34ce9eb1f", + "tarball": "http://registry.npmjs.org/nib/-/nib-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "e2981b9c48332164549f942c042b615edbb93f28", + "tarball": "http://registry.npmjs.org/nib/-/nib-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "37e7083eba2be5c1088c6a18d4cccbaa164c6011", + "tarball": "http://registry.npmjs.org/nib/-/nib-0.0.8.tgz" + }, + "0.1.0": { + "shasum": "93cda857703261640d8a93a8c321d6598b9fb9c6", + "tarball": "http://registry.npmjs.org/nib/-/nib-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "dfc7c36789faec38b06378dda1233974af93da2c", + "tarball": "http://registry.npmjs.org/nib/-/nib-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "0e23d77268a829ade5a3acd2f316e776592b4758", + "tarball": "http://registry.npmjs.org/nib/-/nib-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "a0d30b2b5de22192cc6b9a1e4c1365ab2d71f5d7", + "tarball": "http://registry.npmjs.org/nib/-/nib-0.3.1.tgz" + } + }, + "url": "http://registry.npmjs.org/nib/" + }, + "nicetime": { + "name": "nicetime", + "description": "Twitter-like duration calculations, supports dates in the future or the past", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "robinduckett", + "email": "robin.duckett@gmail.com" + } + ], + "time": { + "modified": "2011-08-08T13:08:46.378Z", + "created": "2011-08-08T13:08:45.569Z", + "0.0.1": "2011-08-08T13:08:46.378Z" + }, + "author": { + "name": "Robin Duckett" + }, + "repository": { + "type": "git", + "url": "git://github.com/robinduckett/nicetime.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nicetime/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "59af2accf9d1ccc517c1ad50d47b206324987501", + "tarball": "http://registry.npmjs.org/nicetime/-/nicetime-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/nicetime/" + }, + "nicknack": { + "name": "nicknack", + "description": "A really simple static web server", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "linus", + "email": "linus@hanssonlarsson.se" + } + ], + "time": { + "modified": "2011-06-09T14:04:02.616Z", + "created": "2011-06-01T22:13:46.993Z", + "0.0.1": "2011-06-01T22:13:48.609Z", + "0.0.2": "2011-06-09T14:04:02.616Z" + }, + "author": { + "name": "Linus G Thiel", + "email": "linus@hanssonlarsson.se", + "url": "http://hanssonlarsson.se/" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nicknack/0.0.1", + "0.0.2": "http://registry.npmjs.org/nicknack/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "25f009c615ae8bab0beb4d041042bf27c2f1ef43", + "tarball": "http://registry.npmjs.org/nicknack/-/nicknack-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "25a6eefbca3857d261954b86b99b962282d8996b", + "tarball": "http://registry.npmjs.org/nicknack/-/nicknack-0.0.2.tgz" + } + }, + "keywords": [ + "web server", + "static" + ], + "url": "http://registry.npmjs.org/nicknack/" + }, + "nickserv": { + "name": "nickserv", + "description": "Communicates with the NickServ IRC service", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "neat", + "email": "roly426@gmail.com" + } + ], + "time": { + "modified": "2011-11-24T08:42:02.879Z", + "created": "2011-09-27T10:05:52.728Z", + "0.1.0": "2011-09-27T10:05:54.193Z", + "0.2.0": "2011-09-29T13:24:41.722Z", + "0.3.0": "2011-11-24T08:42:02.879Z" + }, + "author": { + "name": "Roly Fentanes", + "url": "https://github.com/fent" + }, + "repository": { + "type": "git", + "url": "git://github.com/fent/nickserv.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/nickserv/0.1.0", + "0.2.0": "http://registry.npmjs.org/nickserv/0.2.0", + "0.3.0": "http://registry.npmjs.org/nickserv/0.3.0" + }, + "dist": { + "0.1.0": { + "shasum": "d5269346b33beb4a09fcaa0833827001468f4703", + "tarball": "http://registry.npmjs.org/nickserv/-/nickserv-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "38f0f49e25852fc58a99a4a6314f9be5f3b631d5", + "tarball": "http://registry.npmjs.org/nickserv/-/nickserv-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "1fb62fa0ba62c0a1f4c5f52b6aed5e1080e2c7be", + "tarball": "http://registry.npmjs.org/nickserv/-/nickserv-0.3.0.tgz" + } + }, + "keywords": [ + "irc", + "nickserv", + "nick" + ], + "url": "http://registry.npmjs.org/nickserv/" + }, + "nide": { + "name": "nide", + "description": "Beautiful IDE for Node.js", + "dist-tags": { + "latest": "0.1.6" + }, + "maintainers": [ + { + "name": "coreh", + "email": "thecoreh@gmail.com" + } + ], + "time": { + "modified": "2011-11-30T00:32:49.985Z", + "created": "2011-08-28T23:33:00.357Z", + "0.1.0": "2011-08-28T23:33:02.437Z", + "0.1.1": "2011-09-08T20:51:53.475Z", + "0.1.2": "2011-09-09T01:46:36.167Z", + "0.1.3": "2011-09-13T21:11:48.527Z", + "0.1.4": "2011-09-30T00:49:39.268Z", + "0.1.5": "2011-11-29T18:49:09.901Z", + "0.1.6": "2011-11-30T00:32:49.985Z" + }, + "author": { + "name": "Marco Aurelio" + }, + "repository": { + "type": "git", + "url": "git://github.com/Coreh/nide.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/nide/0.1.0", + "0.1.1": "http://registry.npmjs.org/nide/0.1.1", + "0.1.2": "http://registry.npmjs.org/nide/0.1.2", + "0.1.3": "http://registry.npmjs.org/nide/0.1.3", + "0.1.4": "http://registry.npmjs.org/nide/0.1.4", + "0.1.5": "http://registry.npmjs.org/nide/0.1.5", + "0.1.6": "http://registry.npmjs.org/nide/0.1.6" + }, + "dist": { + "0.1.0": { + "shasum": "78ab9758bd9a475bba96ad8647adc192a9cec1e0", + "tarball": "http://registry.npmjs.org/nide/-/nide-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "c6ab57660546b3790e9c56450989c769e28f9f63", + "tarball": "http://registry.npmjs.org/nide/-/nide-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "fc45750c67aa9572afee0fbbb92dac49147149e1", + "tarball": "http://registry.npmjs.org/nide/-/nide-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "ab6215d4367f7e5666046b3c0a8bca367fd8d64b", + "tarball": "http://registry.npmjs.org/nide/-/nide-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "eff0074b924ab2638a0066535ac80d99ad27abd6", + "tarball": "http://registry.npmjs.org/nide/-/nide-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "d7d30730655d7187cb913a842b302d0f8b51dde0", + "tarball": "http://registry.npmjs.org/nide/-/nide-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "60080cadba566b5cfdecee269803cf6f6ab9caaa", + "tarball": "http://registry.npmjs.org/nide/-/nide-0.1.6.tgz" + } + }, + "keywords": [ + "ide", + "integrated", + "development", + "environment", + "editor", + "coding", + "tool" + ], + "url": "http://registry.npmjs.org/nide/" + }, + "nih-op": { + "name": "nih-op", + "description": "a options parser driven by NIH.", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-02-06T09:32:13.448Z", + "created": "2011-02-06T09:32:12.645Z", + "0.0.0": "2011-02-06T09:32:13.448Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com" + }, + "repository": "git://github.com/dominictarr/nih-op.git", + "versions": { + "0.0.0": "http://registry.npmjs.org/nih-op/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "1fe64ead5e3eabed108b094a7bfcd3e0c74be4e1", + "tarball": "http://registry.npmjs.org/nih-op/-/nih-op-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/nih-op/" + }, + "nimble": { + "name": "nimble", + "description": "A really tiny functional JavaScript and async flow-control library", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "caolan", + "email": "caolan@caolanmcmahon.com" + } + ], + "time": { + "modified": "2011-11-14T17:53:15.329Z", + "created": "2011-03-19T09:08:53.468Z", + "0.0.1": "2011-03-19T09:08:54.063Z", + "0.0.2": "2011-11-14T17:53:15.329Z" + }, + "author": { + "name": "Caolan McMahon" + }, + "repository": { + "type": "git", + "url": "git://github.com/caolan/nimble.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nimble/0.0.1", + "0.0.2": "http://registry.npmjs.org/nimble/0.0.2" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/nimble/-/nimble-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "8225c67f6b6c53ae06e35aa577f9a3ef05db09dc", + "tarball": "http://registry.npmjs.org/nimble/-/nimble-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/nimble/" + }, + "ninja-tools": { + "name": "ninja-tools", + "description": "general nodejitsu utilities", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-10-31T04:07:48.172Z", + "created": "2011-10-31T04:07:42.131Z", + "0.0.0": "2011-10-31T04:07:48.172Z" + }, + "author": { + "name": "Nodejitsu", + "url": "nodejitsu.com" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/ninja-tools/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "3e07fb1a1d5916f87ce49dd14e9818c53975d188", + "tarball": "http://registry.npmjs.org/ninja-tools/-/ninja-tools-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/ninja-tools/" + }, + "ninjs": { + "name": "ninjs", + "description": "Ninja JavaScript Builder - JavaScript project builder without any extra global variables.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "azproduction", + "email": "azazel.private@gmail.com" + } + ], + "time": { + "modified": "2011-05-22T07:33:34.953Z", + "created": "2011-05-22T07:33:33.858Z", + "0.1.0": "2011-05-22T07:33:34.953Z" + }, + "author": { + "name": "azproduction", + "email": "azazel.private@gmail.com", + "url": "http://azproduction.ru" + }, + "repository": { + "type": "git", + "url": "git://github.com/azproduction/ninjs.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/ninjs/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "951fdcc0c1dd91d195b6c542eee0bf87e791b4b3", + "tarball": "http://registry.npmjs.org/ninjs/-/ninjs-0.1.0.tgz" + } + }, + "keywords": [ + "make", + "build", + "builder", + "packager", + "generator", + "modules" + ], + "url": "http://registry.npmjs.org/ninjs/" + }, + "ninotify": { + "name": "ninotify", + "description": "Node.js inotify addon", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "afelix", + "email": "skryzhanovsky@gmail.com" + } + ], + "time": { + "modified": "2011-07-11T16:44:42.747Z", + "created": "2011-07-11T16:44:42.157Z", + "0.1.0": "2011-07-11T16:44:42.747Z" + }, + "author": { + "name": "Sergey Kryzhanovsky", + "email": "skryzhanovsky@gmail.com", + "url": "http://github.com/afelix" + }, + "repository": { + "type": "git", + "url": "git://github.com/afelix/ninotify.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/ninotify/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "c1697d5852492ca8d9a843205b8f9b8cca7aa68a", + "tarball": "http://registry.npmjs.org/ninotify/-/ninotify-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/ninotify/" + }, + "niobe-ircbot": { + "name": "niobe-ircbot", + "description": "Modular IRC Bot Written in NodeJS", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "zephrax", + "email": "zephrax@gmail.com" + } + ], + "time": { + "modified": "2011-11-24T01:25:52.731Z", + "created": "2011-11-24T01:25:50.158Z", + "0.0.1": "2011-11-24T01:25:52.731Z" + }, + "author": { + "name": "zephrax", + "email": "zephrax@gmail.com", + "url": "http://www.kernelpanic.com.ar/" + }, + "repository": { + "type": "git", + "url": "git://github.com/zephrax/niobe-ircbot.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/niobe-ircbot/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "d760a45420e685e66fb27141b93b5798af5b46b0", + "tarball": "http://registry.npmjs.org/niobe-ircbot/-/niobe-ircbot-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/niobe-ircbot/" + }, + "nirc": { + "name": "nirc", + "description": "Node IRC client library", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "jtokoph", + "email": "jason@tokoph.net" + } + ], + "time": { + "modified": "2011-11-06T11:18:35.821Z", + "created": "2011-06-27T23:28:30.664Z", + "0.1.0": "2011-06-27T23:28:31.161Z", + "0.1.1": "2011-09-27T20:47:49.597Z", + "0.1.2": "2011-11-06T11:18:35.821Z" + }, + "author": { + "name": "Jason Tokoph", + "email": "jason@tokoph.net", + "url": "http://tokoph.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/jtokoph/nirc.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/nirc/0.1.0", + "0.1.1": "http://registry.npmjs.org/nirc/0.1.1", + "0.1.2": "http://registry.npmjs.org/nirc/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "3b2750da631d811974b04e1c86695180623b09a9", + "tarball": "http://registry.npmjs.org/nirc/-/nirc-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "7cdb5bfb176db6257802a5cec203d2ba2dbc1d12", + "tarball": "http://registry.npmjs.org/nirc/-/nirc-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "1a4d3cfbdcabb93cca203e52a96dfe2d4aeddc26", + "tarball": "http://registry.npmjs.org/nirc/-/nirc-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/nirc/" + }, + "nithub": { + "name": "nithub", + "description": "Nithub mashes up npm packages to github repositories", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "marcello", + "email": "marcello@cellosoft.com" + } + ], + "time": { + "modified": "2011-04-06T23:48:44.636Z", + "created": "2011-04-06T23:48:44.506Z", + "0.0.1": "2011-04-06T23:48:44.636Z" + }, + "author": { + "name": "Marcello Bastéa-Forte", + "email": "marcello@cellosoft.com", + "url": "http://marcello.cellosoft.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/marcello3d/nithub.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nithub/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "d2b5d452bf53d36f66776f5fb1d622b102bf7ed7", + "tarball": "http://registry.npmjs.org/nithub/-/nithub-0.0.1.tgz" + } + }, + "keywords": [ + "npm", + "github", + "git", + "nithub" + ], + "url": "http://registry.npmjs.org/nithub/" + }, + "nitrix": { + "name": "nitrix", + "description": "Run a NodeJS process Forever", + "dist-tags": { + "latest": "0.0.0" + }, + "readme": "\n\n# Nitrix - Run a NodeJS process Forever\n\n### Installation\n\n```bash\n$ npm install nitrix -g\n```\n", + "maintainers": [ + { + "name": "edwardhotchkiss", + "email": "e@ingk.com" + } + ], + "time": { + "modified": "2011-12-02T16:52:38.289Z", + "created": "2011-12-02T16:52:32.109Z", + "0.0.0": "2011-12-02T16:52:38.289Z" + }, + "author": { + "name": "Edward Hotchkiss", + "email": "e@ingk.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/edwardhotchkiss/nitrix.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/nitrix/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "05012bfc46f808a0ecb28297dbb0a0e58f6a2e79", + "tarball": "http://registry.npmjs.org/nitrix/-/nitrix-0.0.0.tgz" + } + }, + "keywords": [ + "nitrix", + "process", + "forever", + "error", + "uncaught" + ], + "url": "http://registry.npmjs.org/nitrix/" + }, + "nix": { + "name": "nix", + "description": "Node.js bindings for non-portable *nix functions", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "felixge", + "email": "felix@debuggable.com" + } + ], + "time": { + "modified": "2011-04-15T21:27:47.609Z", + "created": "2010-12-21T22:32:47.280Z", + "0.0.1": "2010-12-21T22:32:47.698Z", + "0.0.2": "2010-12-21T22:39:16.923Z", + "0.0.3": "2010-12-23T12:49:25.500Z" + }, + "author": { + "name": "Felix Geisendörfer", + "email": "felix@debuggable.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nix/0.0.1", + "0.0.2": "http://registry.npmjs.org/nix/0.0.2", + "0.0.3": "http://registry.npmjs.org/nix/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "d982f008f25aa10f09808cfcd461946cbddfe27f", + "tarball": "http://registry.npmjs.org/nix/-/nix-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "dbae3dbe3f4d50e38a132bc03ecac1a766af7ac4", + "tarball": "http://registry.npmjs.org/nix/-/nix-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "dd0cc5d03b6a9be0f7c86a09b58992f0cec8beee", + "tarball": "http://registry.npmjs.org/nix/-/nix-0.0.3.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "08656fa73708639abb1a3e7023893a6098461c3e", + "tarball": "http://registry.npmjs.org/nix/-/nix-0.0.3-0.4-sunos-5.11.tgz" + } + } + } + }, + "keywords": [ + "unix", + "linux" + ], + "url": "http://registry.npmjs.org/nix/" + }, + "njrpc": { + "name": "njrpc", + "description": "JSON-RPC v2.0 implementation in NodeJS", + "dist-tags": { + "latest": "1.0.3" + }, + "readme": "# Overview\nThis is a JSON-RPC protocol implementation in NodeJS that follows JSON-RPC 2.0 specs. The good and also bad thing about this library is that it enforces method handler modules to have a certain convention/design pattern. However, it allows the server to automatically extract documentation from the handler (Introspection). This library is still under development.\n\n## Features\n- Handles GET/POST requests\n- Better error feedback\n- Allows method namespacing (Module.method)\n- Allows exposure of all methods inside a module\n- Authentication can be achieved by giving a preHandle function\n- Introspection (in progress)\n\n## Installation\nThe usual `npm install njrpc` or if you prefer, you can grab the source/fork it and make changes yourself.\n\n## Usage\nHandlers that can be registered with njrpc should have a name attribute in the instance. A sample handler can be found in handler.js.\n\nThe best design pattern to use with this server is the Module design pattern.\n\n### njrpc.register(modules)\nRegisters an array of modules/a single module, which should have `name` as the namespace of the module.\n\n### njrpc.addCustomPath(url, handlerFn)\nAdd `handlerFn` to a custom path, for example '/version' can return the version number as plain text instead of a JSON request.\n`handlerFn` will have 2 arguments: \n\n- `req`: Request object\n- `res`: Response object to write to\n\n### njrpc.output(res, [jsonResponse])\nActually write the JSON response out to the pipe. This can also be overridden to write something else.\n\n### njrpc.handle(req, res, [preHandleFn])\nHandles a request & response, JSON-RPC style. `preHandleFn` is used to manipulate the JSON request before it gets pushed down to the Handler level. `preHandleFn` takes a single JSON request object as the argument (after parsing and whitelisting)\n\n## Examples\n\n### Simple EchoHandler that echoes whatever it receives\n\n\tvar EchoHandler = function () {\n\t\t\treturn {\n\t\t\t\tname : 'EchoHandler',\n\t\t\t\techo : function (str) {\n\t\t\t\t\treturn str;\n\t\t\t\t}\n\t\t\t};\n\t\t},\n\t\tjrpcServer = require('./njrpc'),\n\t\thttp = require('http');\n\t\n\tjrpcServer.registerModule(new EchoHandler());\n\thttp.createServer(function(req, res) {\n\t\tjrpcServer.handle(req, res);\t\n\t}).listen(8080);\n\t\n### Authenticated Echo Handler that still echoes, but needs a user & token\n\n\tvar AuthenticatedEchoHandler = function () {\n\t\t\treturn {\n\t\t\t\tname : 'AuthenticatedEchoHandler',\n\t\t\t\techo : function(context, str) {\n\t\t\t\t\tif (!context.user || !context.token) {\n\t\t\t\t\t\tthrow new Error(\"This call is unauthenticated\");\n\t\t\t\t\t}\n\t\t\t\t\treturn str;\n\t\t\t\t}\n\t\t\t};\n\t\t},\n\t\tpreHandler = function (jsonReq) {\n\t\t\tif (jsonReq.headers) {\n\t\t\t\tif (Array.isArray(jsonReq.params)) {\n\t\t\t\t\tjsonReq.params.unshift(jsonReq.headers);\n\t\t\t\t} else {\n\t\t\t\t\tjsonReq.params.context = jsonReq.headers;\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\tjrpcServer = require('./njrpc'),\n\t\thttp = require('http');\n\t\n\tjrpcServer.registerModule(new AuthenticatedEchoHandler());\n\thttp.createServer(function(req, res) {\n\t\tjrpcServer.handle(req, res, preHandler);\t\n\t}).listen(8080);\n\n", + "maintainers": [ + { + "name": "longlho", + "email": "holevietlong@gmail.com" + } + ], + "time": { + "modified": "2011-12-13T05:42:46.852Z", + "created": "2011-11-09T18:56:26.142Z", + "1.0.1": "2011-11-09T18:56:26.685Z", + "1.0.2": "2011-12-04T22:06:48.665Z", + "1.0.3": "2011-12-13T05:42:46.852Z" + }, + "author": { + "name": "Long Ho", + "email": "holevietlong@gmail.com", + "url": "www.azndezign.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/longlho/node-jsonrpc.git" + }, + "versions": { + "1.0.1": "http://registry.npmjs.org/njrpc/1.0.1", + "1.0.2": "http://registry.npmjs.org/njrpc/1.0.2", + "1.0.3": "http://registry.npmjs.org/njrpc/1.0.3" + }, + "dist": { + "1.0.1": { + "shasum": "eedbbd255caf5e6365a98402184f1d2b46fbf306", + "tarball": "http://registry.npmjs.org/njrpc/-/njrpc-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "0c63f3bb23412519a9897ee005182a950e9adb1f", + "tarball": "http://registry.npmjs.org/njrpc/-/njrpc-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "d71b0138d963eadc28559166263780d82b3b75b2", + "tarball": "http://registry.npmjs.org/njrpc/-/njrpc-1.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/njrpc/" + }, + "nko": { + "name": "nko", + "description": "node.js knockout deploy check-in", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "visnup", + "email": "visnupx@gmail.com" + } + ], + "time": { + "modified": "2011-08-27T01:10:46.909Z", + "created": "2011-08-14T09:35:33.828Z", + "0.0.1": "2011-08-14T09:35:36.267Z", + "0.0.2": "2011-08-14T19:04:29.597Z", + "0.0.3": "2011-08-16T20:37:50.072Z", + "0.0.4": "2011-08-16T20:39:39.511Z", + "0.0.5": "2011-08-16T22:49:20.220Z", + "0.0.6": "2011-08-16T22:53:13.153Z", + "0.0.7": "2011-08-16T23:33:25.319Z", + "0.0.8": "2011-08-17T00:02:00.180Z", + "0.0.9": "2011-08-23T21:48:53.720Z", + "0.1.0": "2011-08-24T22:16:02.623Z", + "0.1.1": "2011-08-27T01:10:46.909Z" + }, + "author": { + "name": "Danny Coates", + "email": "dannycoates@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/nko2/website.git" + }, + "versions": { + "0.0.9": "http://registry.npmjs.org/nko/0.0.9", + "0.1.0": "http://registry.npmjs.org/nko/0.1.0", + "0.1.1": "http://registry.npmjs.org/nko/0.1.1" + }, + "dist": { + "0.0.9": { + "shasum": "034c09994326cc873ce4e1680d001d2eefefca73", + "tarball": "http://registry.npmjs.org/nko/-/nko-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "26b53298155da29cffe1d435e4980d2ada733c68", + "tarball": "http://registry.npmjs.org/nko/-/nko-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "c8b02a6c776c4d213a45d9d4ac442f22b70e21ff", + "tarball": "http://registry.npmjs.org/nko/-/nko-0.1.1.tgz" + } + }, + "keywords": [ + "node.js knockout", + "knockout", + "nko" + ], + "url": "http://registry.npmjs.org/nko/" + }, + "nlog": { + "name": "nlog", + "description": "git-powered, minimalist blog engine for coders", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "lansea", + "email": "lansea90@gmail.com" + } + ], + "time": { + "modified": "2011-06-02T22:00:05.044Z", + "created": "2011-06-02T22:00:00.650Z", + "0.0.1": "2011-06-02T22:00:05.044Z" + }, + "author": { + "name": "lansea" + }, + "repository": { + "type": "git", + "url": "git://github.com/lansea/nabe.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nlog/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "b9a1d47831bc7ad24fae4c63f99f513fbc104ecf", + "tarball": "http://registry.npmjs.org/nlog/-/nlog-0.0.1.tgz" + } + }, + "keywords": [ + "blog", + "git" + ], + "url": "http://registry.npmjs.org/nlog/" + }, + "nlog4js": { + "name": "nlog4js", + "description": "node.js module - wrap log4js-node.", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "fkei", + "email": "kei.topaz@gmail.com" + } + ], + "time": { + "modified": "2011-08-19T02:35:18.373Z", + "created": "2011-08-19T02:35:16.509Z", + "0.2.2": "2011-08-19T02:35:18.373Z" + }, + "author": { + "name": "Kei Funagayama", + "email": "kei.topaz@gmail.com", + "url": "https://github.com/fkei" + }, + "versions": { + "0.2.2": "http://registry.npmjs.org/nlog4js/0.2.2" + }, + "dist": { + "0.2.2": { + "shasum": "e9289ee3d76f2bb2500e8b4aebcfac8ef8966849", + "tarball": "http://registry.npmjs.org/nlog4js/-/nlog4js-0.2.2.tgz" + } + }, + "keywords": [ + "logging", + "log", + "log4js-node", + "log4js" + ], + "url": "http://registry.npmjs.org/nlog4js/" + }, + "nlogger": { + "name": "nlogger", + "description": "Logging lib that prints module name and line number", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "igo", + "email": "igo@inspired.sk" + } + ], + "time": { + "modified": "2011-06-30T18:56:56.985Z", + "created": "2011-04-25T09:55:06.313Z", + "0.1.0": "2011-04-25T09:55:06.802Z", + "0.2.0": "2011-06-14T21:31:50.188Z", + "0.3.0": "2011-06-30T18:56:56.985Z" + }, + "author": { + "name": "Igor Urminček" + }, + "repository": { + "type": "git", + "url": "git://github.com/igo/nlogger.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/nlogger/0.1.0", + "0.2.0": "http://registry.npmjs.org/nlogger/0.2.0", + "0.3.0": "http://registry.npmjs.org/nlogger/0.3.0" + }, + "dist": { + "0.1.0": { + "shasum": "9a7c17ca95dc627d159f749a758c3fa6fa03415c", + "tarball": "http://registry.npmjs.org/nlogger/-/nlogger-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "23df714ed8cc783e07acdf3280115adbf001befd", + "tarball": "http://registry.npmjs.org/nlogger/-/nlogger-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "ff9b277a92a87c5ee97bcdb5d92bb378bc2f2330", + "tarball": "http://registry.npmjs.org/nlogger/-/nlogger-0.3.0.tgz" + } + }, + "keywords": [ + "log", + "logging", + "logger" + ], + "url": "http://registry.npmjs.org/nlogger/" + }, + "nmd": { + "name": "nmd", + "description": "node based command line markdown parser", + "dist-tags": { + "latest": "0.2.3" + }, + "maintainers": [ + { + "name": "dotmaster", + "email": "isimpl@gmail.com" + } + ], + "time": { + "modified": "2011-03-13T12:34:34.280Z", + "created": "2010-12-24T11:58:05.132Z", + "0.1.1": "2010-12-24T11:58:05.536Z", + "0.1.2": "2010-12-24T12:14:39.945Z", + "0.1.3": "2010-12-24T12:16:07.279Z", + "0.1.4": "2010-12-24T12:45:55.968Z", + "0.1.5": "2010-12-24T13:11:18.032Z", + "0.1.6": "2010-12-24T13:22:40.128Z", + "0.1.7": "2010-12-24T13:33:56.748Z", + "0.1.8": "2010-12-24T14:29:48.392Z", + "0.1.9": "2011-01-12T15:37:17.639Z", + "0.2.0": "2011-01-12T16:18:04.109Z", + "0.2.1": "2011-01-12T16:22:20.674Z", + "0.2.2": "2011-01-13T00:55:18.451Z", + "0.2.3": "2011-03-13T12:34:34.280Z" + }, + "author": { + "name": "Gregor Schwab", + "email": "gregor@connect-mi.com", + "url": "http://www.connect-mi.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/dotmaster/node-markdown-cli.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/nmd/0.1.1", + "0.1.2": "http://registry.npmjs.org/nmd/0.1.2", + "0.1.3": "http://registry.npmjs.org/nmd/0.1.3", + "0.1.4": "http://registry.npmjs.org/nmd/0.1.4", + "0.1.5": "http://registry.npmjs.org/nmd/0.1.5", + "0.1.6": "http://registry.npmjs.org/nmd/0.1.6", + "0.1.7": "http://registry.npmjs.org/nmd/0.1.7", + "0.1.8": "http://registry.npmjs.org/nmd/0.1.8", + "0.1.9": "http://registry.npmjs.org/nmd/0.1.9", + "0.2.0": "http://registry.npmjs.org/nmd/0.2.0", + "0.2.1": "http://registry.npmjs.org/nmd/0.2.1", + "0.2.2": "http://registry.npmjs.org/nmd/0.2.2", + "0.2.3": "http://registry.npmjs.org/nmd/0.2.3" + }, + "dist": { + "0.1.1": { + "tarball": "http://registry.npmjs.org/nmd/-/nmd-0.1.1.tgz" + }, + "0.1.2": { + "tarball": "http://registry.npmjs.org/nmd/-/nmd-0.1.2.tgz" + }, + "0.1.3": { + "tarball": "http://registry.npmjs.org/nmd/-/nmd-0.1.3.tgz" + }, + "0.1.4": { + "tarball": "http://registry.npmjs.org/nmd/-/nmd-0.1.4.tgz" + }, + "0.1.5": { + "tarball": "http://registry.npmjs.org/nmd/-/nmd-0.1.5.tgz" + }, + "0.1.6": { + "tarball": "http://registry.npmjs.org/nmd/-/nmd-0.1.6.tgz" + }, + "0.1.7": { + "tarball": "http://registry.npmjs.org/nmd/-/nmd-0.1.7.tgz" + }, + "0.1.8": { + "tarball": "http://registry.npmjs.org/nmd/-/nmd-0.1.8.tgz" + }, + "0.1.9": { + "tarball": "http://registry.npmjs.org/nmd/-/nmd-0.1.9.tgz" + }, + "0.2.0": { + "tarball": "http://registry.npmjs.org/nmd/-/nmd-0.2.0.tgz" + }, + "0.2.1": { + "tarball": "http://registry.npmjs.org/nmd/-/nmd-0.2.1.tgz" + }, + "0.2.2": { + "tarball": "http://registry.npmjs.org/nmd/-/nmd-0.2.2.tgz" + }, + "0.2.3": { + "tarball": "http://registry.npmjs.org/nmd/-/nmd-0.2.3.tgz" + } + }, + "url": "http://registry.npmjs.org/nmd/" + }, + "nmea": { + "name": "nmea", + "description": "A parser for the NMEA 0183 GPS Receiver protocol", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "A NMEA-0183 GPS Protocol parser\n===============================\n\nAn example using the node-serialport library to read a stream of messages\nfrom a GlobalSat BU-353 USB GPS receiver:\n\n````\nvar serialport = require('serialport');\nvar nmea = require('nmea');\n\nvar port = new serialport.SerialPort('/dev/cu.usbserial', {\n baudrate: 4800,\n parser: serialport.parsers.readline('\\r\\n')});\n \nport.on('data', function(line) {\n console.log(nmea.parse(line));\n});\n\n// { type: 'active-satellites',\n// selectionMode: 'A',\n// mode: 1,\n// satellites: [ 29, 18, 21 ],\n// PDOP: '',\n// HDOP: '',\n// VDOP: '',\n// talker_id: 'GP' }\n// { type: 'satellite-list-partial',\n// numMsgs: 3,\n// msgNum: 1,\n// satsInView: 11,\n// satellites: \n// [ { id: '18', elevationDeg: 7, azimuthTrue: 214, SNRdB: 43 },\n// { id: '21', elevationDeg: 5, azimuthTrue: 114, SNRdB: 34 },\n// { id: '26', elevationDeg: 71, azimuthTrue: 234, SNRdB: 0 } ],\n// talker_id: 'GP' }\n\n````", + "maintainers": [ + { + "name": "jamesp", + "email": "james@jamespenn.co.uk" + } + ], + "time": { + "modified": "2011-12-04T10:26:43.149Z", + "created": "2011-12-04T10:26:39.294Z", + "0.0.1": "2011-12-04T10:26:43.149Z" + }, + "author": { + "name": "James Penn", + "email": "james@jamespenn.co.uk" + }, + "repository": { + "type": "git", + "url": "git://github.com/jamesp/node-nmea.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nmea/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "18b2bb8943245f65c554e857b02c812e79227616", + "tarball": "http://registry.npmjs.org/nmea/-/nmea-0.0.1.tgz" + } + }, + "keywords": [ + "gps", + "nmea" + ], + "url": "http://registry.npmjs.org/nmea/" + }, + "nMemcached": { + "name": "nMemcached", + "description": "A fully featured Memcached client, supporting both single and clustered Memcached server through consistent hashing and failover/ failure", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "V1", + "email": "info@3rd-Eden.com" + } + ], + "time": { + "modified": "2010-12-29T19:46:07.821Z", + "created": "2010-12-29T19:46:07.435Z", + "0.0.0": "2010-12-29T19:46:07.821Z" + }, + "author": { + "name": "Arnout Kazemier" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/nMemcached/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "77a3e7025e128fe145f8ce1c7f3a4d076d239259", + "tarball": "http://registry.npmjs.org/nMemcached/-/nMemcached-0.0.0.tgz" + } + }, + "keywords": [ + "memcached", + "client", + "hashing", + "failover", + "cluster", + "nMemcached" + ], + "url": "http://registry.npmjs.org/nMemcached/" + }, + "nng": { + "name": "nng", + "description": "Command line interface for nonogo", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "juliojimenez", + "email": "julio.js@live.com" + } + ], + "time": { + "modified": "2011-10-20T00:34:43.984Z", + "created": "2011-10-20T00:34:39.894Z", + "0.0.1": "2011-10-20T00:34:43.984Z" + }, + "author": { + "name": "Julio Jimenez", + "email": "julio.js@live.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nng/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "a963e27178e8ee69624b91360f8714cd36d12d13", + "tarball": "http://registry.npmjs.org/nng/-/nng-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/nng/" + }, + "nntp": { + "name": "nntp", + "description": "An NNTP client module for node.js", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "mscdex", + "email": "mscdex@mscdex.net" + } + ], + "time": { + "modified": "2011-04-17T18:29:52.646Z", + "created": "2011-04-15T17:40:08.144Z", + "0.0.1": "2011-04-15T17:40:08.544Z", + "0.1.0": "2011-04-17T18:29:52.646Z" + }, + "author": { + "name": "Brian White", + "email": "mscdex@mscdex.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/mscdex/node-nntp.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nntp/0.0.1", + "0.1.0": "http://registry.npmjs.org/nntp/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "d16a2eccbe62e72088ef18cdf8a7ee0de2185a55", + "tarball": "http://registry.npmjs.org/nntp/-/nntp-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "9d58effb514dea3975c4bc7d6916f6fe8b88719e", + "tarball": "http://registry.npmjs.org/nntp/-/nntp-0.1.0.tgz" + } + }, + "keywords": [ + "nntp", + "client", + "usenet", + "newsreader", + "newsgroups", + "newsgroup", + "news" + ], + "url": "http://registry.npmjs.org/nntp/" + }, + "no.de": { + "name": "no.de", + "description": "A deployment tool for http://no.de", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "jsjohnst", + "email": "npm@jeremyjohnstone.com" + } + ], + "author": { + "name": "Jeremy Johnstone", + "email": "github+no.de@jeremyjohnstone.com", + "url": "http://www.jeremyjohnstone.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/jsjohnst/no.de.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/no.de/0.0.1", + "0.0.2": "http://registry.npmjs.org/no.de/0.0.2", + "0.1.0": "http://registry.npmjs.org/no.de/0.1.0" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/no.de/-/no.de-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/no.de/-/no.de-0.0.2.tgz" + }, + "0.1.0": { + "tarball": "http://packages:5984/no.de/-/no.de-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/no.de/" + }, + "nobj": { + "name": "nobj", + "description": "ubersimple prototypal inheritance with reference to Io language", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "nojs", + "email": "oil.crayons@gmail.com" + } + ], + "time": { + "modified": "2011-09-04T18:37:34.702Z", + "created": "2011-09-04T18:37:33.512Z", + "0.0.1": "2011-09-04T18:37:34.702Z" + }, + "author": { + "name": "Dmitry Unkovsky", + "email": "oil.crayons@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/nojs/nobj.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nobj/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "3260cfa2982070a42af25bb49db8e58d5c87add5", + "tarball": "http://registry.npmjs.org/nobj/-/nobj-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/nobj/" + }, + "noblemachine": { + "name": "noblemachine", + "description": "NodeJS implementation of a finite-state machine with added conventions to make asynchronous coding less painful", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "eugeneware", + "email": "eugene@noblesamurai.com" + } + ], + "time": { + "modified": "2011-02-10T04:48:45.983Z", + "created": "2011-02-10T04:48:45.066Z", + "1.0.0": "2011-02-10T04:48:45.983Z" + }, + "author": { + "name": "Arlen Cuss", + "email": "arlen@noblesamurai.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/noblesamurai/noblemachine.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/noblemachine/1.0.0" + }, + "dist": { + "1.0.0": { + "tarball": "http://registry.npmjs.org/noblemachine/-/noblemachine-v1.0.0.tgz" + } + }, + "keywords": [ + "async", + "asynchronous", + "fsm", + "state machine", + "state-machine", + "flow-control", + "flow control" + ], + "url": "http://registry.npmjs.org/noblemachine/" + }, + "noblerecord": { + "name": "noblerecord", + "description": "Asynchronous NodeJS ORM library inspired by Rails", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "eugeneware", + "email": "eugene@noblesamurai.com" + } + ], + "time": { + "modified": "2011-02-11T05:38:49.687Z", + "created": "2011-02-11T05:28:05.699Z", + "1.0.0": "2011-02-11T05:28:06.771Z", + "1.0.1": "2011-02-11T05:38:49.687Z" + }, + "author": { + "name": "Arlen Cuss", + "email": "arlen@noblesamurai.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/noblesamurai/noblerecord.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/noblerecord/1.0.0", + "1.0.1": "http://registry.npmjs.org/noblerecord/1.0.1" + }, + "dist": { + "1.0.0": { + "tarball": "http://registry.npmjs.org/noblerecord/-/noblerecord-v1.0.0.tgz" + }, + "1.0.1": { + "tarball": "http://registry.npmjs.org/noblerecord/-/noblerecord-v1.0.1.tgz" + } + }, + "keywords": [ + "mysql", + "sql", + "activerecord", + "active-record", + "orm", + "database", + "async", + "asynchronous" + ], + "url": "http://registry.npmjs.org/noblerecord/" + }, + "noc": { + "name": "noc", + "description": "Documentation generation tool based on JsDoc-Toolkit.", + "dist-tags": { + "latest": "1.0.0" + }, + "readme": "Noc\n===\n\nNoc - Documentation generator tool for Node.\n\nDescription\n-----------\n\n*Noc* is a project intended to run [JsDoc-Toolkit](http://code.google.com/p/jsdoc-toolkit/) under [Node](http://nodejs.org/). \n\nJsDoc-Toolkit normally runs under [Rhino](http://www.mozilla.org/rhino/) which is a javascript engine developed in Java. \n*Noc* has no dependency on Java and is a lot faster than the version of JsDoc-Toolkit based on Rhino. \n\n*Noc* uses JsDoc-Toolkit 2.4.0.\n\n\nSynopsis\n--------\n\n\tnoc [OPTIONS] -t= ...\n\n\nOptions\n-------\n\n\t-a or --allfunctions\n\t\t\tInclude all functions, even undocumented ones.\n\n\t-c or --conf\n\t\t\tLoad a configuration file.\n\n\t-d= or --directory=\n\t\t\tOutput to this directory (defaults to \"out\").\n\n\t-D=\"myVar:My value\" or --define=\"myVar:My value\"\n\t\t\tMultiple. Define a variable, available in JsDoc as JSDOC.opt.D.myVar.\n\n\t-e= or --encoding=\n\t\t\tUse this encoding to read and write files.\n\n\t-E=\"REGEX\" or --exclude=\"REGEX\"\n\t\t\tMultiple. Exclude files based on the supplied regex.\n\n\t-h or --help\n\t\t\tShow this message and exit.\n\n\t-m or --multiples\n\t\t\tDon't warn about symbols being documented more than once.\n\n\t-n or --nocode\n\t\t\tIgnore all code, only document comments with @name tags.\n\n\t-o= or --out=\n\t\t\tPrint log messages to a file (defaults to stdout).\n\n\t-p or --private\n\t\t\tInclude symbols tagged as private, underscored and inner symbols.\n\n\t-q or --quiet\n\t\t\tDo not output any messages, not even warnings.\n\n\t-r= or --recurse=\n\t\t\tDescend into src directories.\n\n\t-s or --suppress\n\t\t\tSuppress source code output.\n\n\t-S or --securemodules\n\t\t\tUse Secure Modules mode to parse source code.\n\n\t-t= or --template=\n\t\t\tRequired. Use this template to format the output.\n\n\t-T or --test\n\t\t\tRun all unit tests and exit.\n\n\t-u or --unique\n\t\t\tForce file names to be unique, but not based on symbol names.\n\n\t-v or --verbose\n\t\t\tProvide verbose feedback about what is happening.\n\n\t-x=[,EXT]... or --ext=[,EXT]...\n\t\t\tScan source files with the given extension/s (defaults to js).\n\n\nGit repository\n--------------\n\nhttps://github.com/francoiscolas/noc\n\n", + "maintainers": [ + { + "name": "francoiscolas", + "email": "francoiscolas@gmail.com" + } + ], + "time": { + "modified": "2011-11-29T21:07:47.678Z", + "created": "2011-11-29T21:07:45.245Z", + "1.0.0": "2011-11-29T21:07:47.678Z" + }, + "author": { + "name": "François Colas", + "email": "francoiscolas@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/francoiscolas/noc.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/noc/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "39564295f96c4f7d8825878fecbe28d90798ec0e", + "tarball": "http://registry.npmjs.org/noc/-/noc-1.0.0.tgz" + } + }, + "keywords": [ + "documentation", + "generator", + "jsdoc" + ], + "url": "http://registry.npmjs.org/noc/" + }, + "nock": { + "name": "nock", + "description": "HTTP Server mocking for Node.js", + "dist-tags": { + "latest": "0.5.6" + }, + "maintainers": [ + { + "name": "pgte", + "email": "pedro.teixeira@gmail.com" + } + ], + "time": { + "modified": "2011-12-02T16:53:01.135Z", + "created": "2011-09-22T10:38:30.179Z", + "0.0.1": "2011-09-22T10:38:31.847Z", + "0.1.0": "2011-09-22T18:03:19.918Z", + "0.1.2": "2011-09-23T09:04:49.562Z", + "0.1.3": "2011-09-23T09:17:25.040Z", + "0.1.4": "2011-09-23T09:54:57.165Z", + "0.1.5": "2011-09-23T11:55:44.202Z", + "0.1.6": "2011-09-25T12:07:07.720Z", + "0.1.7": "2011-09-25T12:09:08.069Z", + "0.2.0": "2011-10-07T21:36:09.744Z", + "0.2.1": "2011-10-10T08:18:35.824Z", + "0.2.2": "2011-10-13T23:39:39.893Z", + "0.3.0": "2011-10-20T08:49:47.349Z", + "0.3.1": "2011-10-20T17:22:09.454Z", + "0.4.0": "2011-11-30T16:04:52.324Z", + "0.5.0": "2011-12-01T00:23:11.982Z", + "0.5.1": "2011-12-01T19:25:57.298Z", + "0.5.2": "2011-12-01T19:36:36.643Z", + "0.5.3": "2011-12-01T21:59:05.958Z", + "0.5.4": "2011-12-01T22:07:47.333Z", + "0.5.5": "2011-12-02T11:22:55.282Z", + "0.5.6": "2011-12-02T16:53:01.135Z" + }, + "author": { + "name": "Pedro Teixeira", + "email": "pedro.teixeira@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/pgte/nock.git" + }, + "users": { + "pgte": true + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nock/0.0.1", + "0.1.0": "http://registry.npmjs.org/nock/0.1.0", + "0.1.2": "http://registry.npmjs.org/nock/0.1.2", + "0.1.3": "http://registry.npmjs.org/nock/0.1.3", + "0.1.4": "http://registry.npmjs.org/nock/0.1.4", + "0.1.5": "http://registry.npmjs.org/nock/0.1.5", + "0.1.6": "http://registry.npmjs.org/nock/0.1.6", + "0.1.7": "http://registry.npmjs.org/nock/0.1.7", + "0.2.0": "http://registry.npmjs.org/nock/0.2.0", + "0.2.1": "http://registry.npmjs.org/nock/0.2.1", + "0.2.2": "http://registry.npmjs.org/nock/0.2.2", + "0.3.0": "http://registry.npmjs.org/nock/0.3.0", + "0.3.1": "http://registry.npmjs.org/nock/0.3.1", + "0.4.0": "http://registry.npmjs.org/nock/0.4.0", + "0.5.0": "http://registry.npmjs.org/nock/0.5.0", + "0.5.1": "http://registry.npmjs.org/nock/0.5.1", + "0.5.2": "http://registry.npmjs.org/nock/0.5.2", + "0.5.3": "http://registry.npmjs.org/nock/0.5.3", + "0.5.4": "http://registry.npmjs.org/nock/0.5.4", + "0.5.5": "http://registry.npmjs.org/nock/0.5.5", + "0.5.6": "http://registry.npmjs.org/nock/0.5.6" + }, + "dist": { + "0.0.1": { + "shasum": "8bd3da5d96839e7bef355eb411eaea35f9027062", + "tarball": "http://registry.npmjs.org/nock/-/nock-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "d1ec153ba4c4a180be10f3328048cb1eafacd0a8", + "tarball": "http://registry.npmjs.org/nock/-/nock-0.1.0.tgz" + }, + "0.1.2": { + "shasum": "d38f840fe562db1f867097a4775721060f036848", + "tarball": "http://registry.npmjs.org/nock/-/nock-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "4a7952e35994ee72d952e2ae33e929ad5e445d9f", + "tarball": "http://registry.npmjs.org/nock/-/nock-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "5107f9b3cc1108dfb4cbc001498e887c3583ba82", + "tarball": "http://registry.npmjs.org/nock/-/nock-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "f0818c6f5faec336ff63dc6f5291ff0108f7fe20", + "tarball": "http://registry.npmjs.org/nock/-/nock-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "dc8ac793ad41c032eee86731fd8cd617fe70b7a4", + "tarball": "http://registry.npmjs.org/nock/-/nock-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "b8b3d582d51e7f6da6e627109202b2cbac920e0f", + "tarball": "http://registry.npmjs.org/nock/-/nock-0.1.7.tgz" + }, + "0.2.0": { + "shasum": "b333135f5a786bd99090427403ec58373580b1cb", + "tarball": "http://registry.npmjs.org/nock/-/nock-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "ea29148cee8849156e83cec67534e642565429e1", + "tarball": "http://registry.npmjs.org/nock/-/nock-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "f5505c7b55111015eb52a46aa4b53bd65efc9652", + "tarball": "http://registry.npmjs.org/nock/-/nock-0.2.2.tgz" + }, + "0.3.0": { + "shasum": "4825b1c36214e51d2b1e9d25b5ca0eff2b1155d7", + "tarball": "http://registry.npmjs.org/nock/-/nock-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "8f6563f95326018a1f072b9c874f276dcf6a1432", + "tarball": "http://registry.npmjs.org/nock/-/nock-0.3.1.tgz" + }, + "0.4.0": { + "shasum": "a9927cceb97be1d64080fca8b087b9ad72edc3d6", + "tarball": "http://registry.npmjs.org/nock/-/nock-0.4.0.tgz" + }, + "0.5.0": { + "shasum": "f42302a4bd44d51d56e27f60418b6bc1fd0f6696", + "tarball": "http://registry.npmjs.org/nock/-/nock-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "8b514d79f1ab8bb37780a5e4d83f3de859de2b59", + "tarball": "http://registry.npmjs.org/nock/-/nock-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "32852588ba4c644ebe4dbe10c59cbe9fd44dbbda", + "tarball": "http://registry.npmjs.org/nock/-/nock-0.5.2.tgz" + }, + "0.5.3": { + "shasum": "8d36ded1cc86602c41b1a241421d3d2af1503632", + "tarball": "http://registry.npmjs.org/nock/-/nock-0.5.3.tgz" + }, + "0.5.4": { + "shasum": "875af84725cb1419764ce6b2226539e7ca18cb7a", + "tarball": "http://registry.npmjs.org/nock/-/nock-0.5.4.tgz" + }, + "0.5.5": { + "shasum": "b52f04ae2c5fb8edc21b9fde6ac4800426b91550", + "tarball": "http://registry.npmjs.org/nock/-/nock-0.5.5.tgz" + }, + "0.5.6": { + "shasum": "ab80d965d0529dfde244e0d3ea68ad7efed212ae", + "tarball": "http://registry.npmjs.org/nock/-/nock-0.5.6.tgz" + } + }, + "url": "http://registry.npmjs.org/nock/" + }, + "NoCR": { + "name": "NoCR", + "description": "NoCR (like JCR) is content repository API, unlike JCR it's written in CoffeeScript+Node.js instead of Java, and also allows to implement a content repository in javascript or coffee. It helps you to write a good implementation as it provides a full featured test suite.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "nka11", + "email": "nka@nka.me" + } + ], + "time": { + "modified": "2011-07-11T08:47:32.997Z", + "created": "2011-07-11T08:47:32.564Z", + "0.0.1": "2011-07-11T08:47:32.998Z" + }, + "author": { + "name": "Nicolas Karageuzian", + "email": "nka@nka.me", + "url": "http://nka.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/NoCR/NoCR.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/NoCR/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "dc8fec34267cc822752b4151e18a5b9fdd8ff2cf", + "tarball": "http://registry.npmjs.org/NoCR/-/NoCR-0.0.1.tgz" + } + }, + "keywords": [ + "javascript", + "dms", + "documents", + "generator", + "website", + "cms" + ], + "url": "http://registry.npmjs.org/NoCR/" + }, + "nocr-mongo": { + "name": "nocr-mongo", + "description": "NoCR implementation against a mongodb storage backend.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "nka11", + "email": "nka@nka.me" + } + ], + "time": { + "modified": "2011-07-11T20:28:23.019Z", + "created": "2011-07-11T12:46:20.241Z", + "0.0.1": "2011-07-11T12:46:20.669Z", + "0.0.2": "2011-07-11T20:28:23.019Z" + }, + "author": { + "name": "Nicolas Karageuzian", + "email": "nka@nka.me", + "url": "http://nka.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/karacos/nocr-mongo.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nocr-mongo/0.0.1", + "0.0.2": "http://registry.npmjs.org/nocr-mongo/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "dfa87990245d065bee129f80764ab2d10cbb1e04", + "tarball": "http://registry.npmjs.org/nocr-mongo/-/nocr-mongo-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "d1be40bb97998896acee2c8098e3ab6e1e7c5306", + "tarball": "http://registry.npmjs.org/nocr-mongo/-/nocr-mongo-0.0.2.tgz" + } + }, + "keywords": [ + "javascript", + "dms", + "content", + "repository", + "nocr", + "mongodb", + "cms" + ], + "url": "http://registry.npmjs.org/nocr-mongo/" + }, + "nodast": { + "name": "nodast", + "description": "Asterisk FastAgi Proxy", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "pdeschen", + "email": "pdeschen@rassemblr.com" + } + ], + "time": { + "modified": "2011-06-20T14:13:02.734Z", + "created": "2011-06-20T14:13:02.499Z", + "0.0.2": "2011-06-20T14:13:02.734Z" + }, + "author": { + "name": "Pascal Deschenes", + "email": "pdeschen@rassemblr.com", + "url": "http://blog.rassemblr.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/pdeschen/nodast.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/nodast/0.0.2" + }, + "dist": { + "0.0.2": { + "shasum": "3103c7cfea6d547013f572ade8795d78ef78dc17", + "tarball": "http://registry.npmjs.org/nodast/-/nodast-0.0.2.tgz" + } + }, + "keywords": [ + "telephony", + "asterisk", + "proxy", + "fastagi" + ], + "url": "http://registry.npmjs.org/nodast/" + }, + "node_bsdiff": { + "name": "node_bsdiff", + "description": "Asynchronous bsdiff patch generation.", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "antipax", + "email": "whoknew@gmail.com" + } + ], + "time": { + "modified": "2011-08-12T16:16:25.718Z", + "created": "2011-08-08T16:05:04.164Z", + "1.0.0": "2011-08-08T16:05:04.677Z", + "1.0.1": "2011-08-12T16:16:25.718Z" + }, + "author": { + "name": "Eric Entin", + "email": "eentin@groupcommerce.com" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/node_bsdiff/1.0.0", + "1.0.1": "http://registry.npmjs.org/node_bsdiff/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "1e4a21da85cfd3eafc181d053ec49b4a5f8bb366", + "tarball": "http://registry.npmjs.org/node_bsdiff/-/node_bsdiff-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "cb496096b9248ac887736de9b17f9cb56e986592", + "tarball": "http://registry.npmjs.org/node_bsdiff/-/node_bsdiff-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/node_bsdiff/" + }, + "node_chat": { + "name": "node_chat", + "description": "A scalable version of Ryan Dahl's node_chat", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "shad", + "email": "sam@dotcloud.com" + } + ], + "time": { + "modified": "2011-11-18T00:40:50.366Z", + "created": "2011-11-17T01:59:24.415Z", + "0.0.1": "2011-11-17T01:59:27.291Z", + "0.0.2": "2011-11-18T00:40:50.366Z" + }, + "author": { + "name": "Samuel Alba", + "email": "sam@dotcloud.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/samalba/node_chat.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node_chat/0.0.1", + "0.0.2": "http://registry.npmjs.org/node_chat/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "9268c7a17906f6bd8eddea399e649f4c262e7c2a", + "tarball": "http://registry.npmjs.org/node_chat/-/node_chat-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "139b31196fe43167744928b22c3fe87a2a548d3b", + "tarball": "http://registry.npmjs.org/node_chat/-/node_chat-0.0.2.tgz" + } + }, + "keywords": [ + "nodejs", + "node_chat", + "distributed", + "chat" + ], + "url": "http://registry.npmjs.org/node_chat/" + }, + "node_date_diff": { + "name": "node_date_diff", + "dist-tags": { + "latest": "0.0.13" + }, + "maintainers": [ + { + "name": "morishani", + "email": "atnt123@bezeqint.net" + } + ], + "time": { + "modified": "2011-10-19T11:24:26.737Z", + "created": "2011-10-19T11:08:44.000Z", + "0.0.1": "2011-10-19T11:08:44.909Z", + "0.0.11": "2011-10-19T11:15:33.398Z", + "0.0.12": "2011-10-19T11:17:14.693Z", + "0.0.13": "2011-10-19T11:21:03.046Z", + "0.0.14": "2011-10-19T11:22:36.993Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/morishani/node-date-diff.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node_date_diff/0.0.1", + "0.0.11": "http://registry.npmjs.org/node_date_diff/0.0.11", + "0.0.12": "http://registry.npmjs.org/node_date_diff/0.0.12", + "0.0.13": "http://registry.npmjs.org/node_date_diff/0.0.13" + }, + "dist": { + "0.0.1": { + "shasum": "a3981dea89bc585f0ce51030f720ac652bbdfc37", + "tarball": "http://registry.npmjs.org/node_date_diff/-/node_date_diff-0.0.1.tgz" + }, + "0.0.11": { + "shasum": "a282315119e120974e4b3c602ff5987360b39bb7", + "tarball": "http://registry.npmjs.org/node_date_diff/-/node_date_diff-0.0.11.tgz" + }, + "0.0.12": { + "shasum": "fdaf6f3713d5d18d0d11cc66120d123a9cb7ea04", + "tarball": "http://registry.npmjs.org/node_date_diff/-/node_date_diff-0.0.12.tgz" + }, + "0.0.13": { + "shasum": "97db3419ad0ed0bd1081501aa3150816a5b2243f", + "tarball": "http://registry.npmjs.org/node_date_diff/-/node_date_diff-0.0.13.tgz" + } + }, + "url": "http://registry.npmjs.org/node_date_diff/" + }, + "node_hash": { + "name": "node_hash", + "description": "send emails from node.js to a smtp server, simple as cake", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "marak", + "email": "marak.squires@gmail.com" + } + ], + "time": { + "modified": "2011-01-28T21:16:15.129Z", + "created": "2011-01-28T21:16:14.712Z", + "0.1.0": "2011-01-28T21:16:15.129Z" + }, + "author": { + "name": "Marak Squires" + }, + "repository": { + "type": "git", + "url": "http://github.com/Marak/node_hash.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/node_hash/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "731941a6649a52da9fe5ca749955ac4bd4042e13", + "tarball": "http://registry.npmjs.org/node_hash/-/node_hash-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/node_hash/" + }, + "node_jsrender": { + "name": "node_jsrender", + "description": "NodeJS port of JsRender: http://borismoore.github.com/jsrender/demos", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "alex.pilon", + "email": "alex.pilon@gmail.com" + } + ], + "time": { + "modified": "2011-10-14T01:12:14.470Z", + "created": "2011-10-14T01:12:13.881Z", + "0.1.0": "2011-10-14T01:12:14.470Z" + }, + "author": { + "name": "Ported by Alex Pilon, originally written by Boris Moore", + "url": "and team" + }, + "repository": { + "type": "git", + "url": "git://github.com/alex-pilon/node_jsrender.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/node_jsrender/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "c9c51916e12f63bf5b1a0b64fa29b45d96789cc7", + "tarball": "http://registry.npmjs.org/node_jsrender/-/node_jsrender-0.1.0.tgz" + } + }, + "keywords": [ + "templating", + "views engine", + "express" + ], + "url": "http://registry.npmjs.org/node_jsrender/" + }, + "node_klout": { + "name": "node_klout", + "description": "Klout API wrapper.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "cojohn", + "email": "cojohn@gmail.com" + } + ], + "time": { + "modified": "2011-10-28T02:49:51.459Z", + "created": "2011-10-28T02:49:51.083Z", + "0.1.0": "2011-10-28T02:49:51.459Z" + }, + "author": { + "name": "cojohn", + "email": "cojohn@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/cojohn/node_klout.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/node_klout/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "c66fd001920cde47f4ca1023758750aa9c3ca0e3", + "tarball": "http://registry.npmjs.org/node_klout/-/node_klout-0.1.0.tgz" + } + }, + "keywords": [ + "klout", + "node_klout", + "api" + ], + "url": "http://registry.npmjs.org/node_klout/" + }, + "node_rafael": { + "name": "node_rafael", + "description": "A NPM Wrapper for Rafael JS", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "rodriguezartav", + "email": "roberto@rodriguezartav.com" + } + ], + "time": { + "modified": "2011-12-08T01:17:13.572Z", + "created": "2011-12-07T22:47:59.721Z", + "0.0.1": "2011-12-07T22:48:02.475Z", + "0.0.2": "2011-12-08T00:48:31.804Z", + "0.0.3": "2011-12-08T01:10:26.598Z", + "0.0.4": "2011-12-08T01:17:13.572Z" + }, + "author": { + "name": "Roberto Rodriguez", + "email": "roberto@rodriguezartav.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/rodriguezartav/Node_Rafael.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node_rafael/0.0.1", + "0.0.2": "http://registry.npmjs.org/node_rafael/0.0.2", + "0.0.3": "http://registry.npmjs.org/node_rafael/0.0.3", + "0.0.4": "http://registry.npmjs.org/node_rafael/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "bf114b0de2052ef9bc0204ef4d8ca14c19960677", + "tarball": "http://registry.npmjs.org/node_rafael/-/node_rafael-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "6aef451824c60f04081f5fa22df17cf0884ba394", + "tarball": "http://registry.npmjs.org/node_rafael/-/node_rafael-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "0a4e52097b3891c2b6d9c1dbefa78a59c43bb789", + "tarball": "http://registry.npmjs.org/node_rafael/-/node_rafael-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "56a0d29b0c6811c603ea948687dc5e9a54c878f1", + "tarball": "http://registry.npmjs.org/node_rafael/-/node_rafael-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/node_rafael/" + }, + "node_util": { + "name": "node_util", + "description": "Utilities that help you write Node programs and in particular, CLI scripts easily.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "abi", + "email": "abii@stanford.edu" + } + ], + "time": { + "modified": "2011-09-18T05:35:48.940Z", + "created": "2011-09-18T05:35:47.337Z", + "0.0.1": "2011-09-18T05:35:48.940Z" + }, + "author": { + "name": "Abi", + "email": "abii@stanford.edu", + "url": "http://abi.sh" + }, + "repository": { + "type": "git", + "url": "git://github.com/abi/node_util.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node_util/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "195c32bf9d25f1beabf54fd4990a471bb56e7509", + "tarball": "http://registry.npmjs.org/node_util/-/node_util-0.0.1.tgz" + } + }, + "keywords": [ + "file system", + "fs", + "utilities", + "cli" + ], + "url": "http://registry.npmjs.org/node_util/" + }, + "node_xslt": { + "name": "node_xslt", + "description": "A simple XSLT package for node.js", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "bahblah", + "email": "brian.j.suh@gmail.com" + } + ], + "time": { + "modified": "2011-12-01T00:07:49.429Z", + "created": "2011-10-14T14:58:46.118Z", + "0.1.1": "2011-10-14T14:58:47.357Z", + "0.1.2": "2011-12-01T00:07:49.429Z" + }, + "author": { + "name": "Brian Suh", + "email": "brian.j.suh@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/bahblah/node_xslt.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/node_xslt/0.1.1", + "0.1.2": "http://registry.npmjs.org/node_xslt/0.1.2" + }, + "dist": { + "0.1.1": { + "shasum": "8099194b601b836d485140581ff16d9d09278a50", + "tarball": "http://registry.npmjs.org/node_xslt/-/node_xslt-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "5ca68cd2851eb07a5752ae20888e36b63aaa63e6", + "tarball": "http://registry.npmjs.org/node_xslt/-/node_xslt-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/node_xslt/" + }, + "node-agilezen": { + "name": "node-agilezen", + "description": "AgileZen client for NodeJS", + "dist-tags": { + "latest": "0.0.4" + }, + "readme": "# node-AgileZen\n\nA NodeJS client for AgileZen. This is my first venture into both NodeJS and Coffeescript so I apologize if the code looks ugly. \n\nI am following [node-hipchat](http://search.npmjs.org/#/node-hipchat) as a pattern.\n", + "maintainers": [ + { + "name": "markborcherding", + "email": "MarkBorcherding@gmail.com" + } + ], + "time": { + "modified": "2011-12-11T04:20:54.007Z", + "created": "2011-11-16T03:42:34.275Z", + "0.0.0": "2011-11-16T03:42:35.298Z", + "0.0.1": "2011-11-16T03:46:18.698Z", + "0.0.2": "2011-11-17T03:44:27.683Z", + "0.0.3": "2011-11-17T03:46:23.932Z", + "0.0.4": "2011-12-11T04:20:54.007Z" + }, + "author": { + "name": "Mark Borcherding" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/node-agilezen/0.0.0", + "0.0.1": "http://registry.npmjs.org/node-agilezen/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-agilezen/0.0.2", + "0.0.3": "http://registry.npmjs.org/node-agilezen/0.0.3", + "0.0.4": "http://registry.npmjs.org/node-agilezen/0.0.4" + }, + "dist": { + "0.0.0": { + "shasum": "3c57ef0d09d5eee20377d37177da1564d977b021", + "tarball": "http://registry.npmjs.org/node-agilezen/-/node-agilezen-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "1e9650dda5a9ec76c1d5db2887b08c3ae7de92ec", + "tarball": "http://registry.npmjs.org/node-agilezen/-/node-agilezen-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "89c5449c97481747066fb02a670f31e2bd09efa6", + "tarball": "http://registry.npmjs.org/node-agilezen/-/node-agilezen-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "4f757c98d8dc187db59aff33702bb4be73487702", + "tarball": "http://registry.npmjs.org/node-agilezen/-/node-agilezen-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "e2473a0f7f16e608a22bf6f8161ef3240df04bba", + "tarball": "http://registry.npmjs.org/node-agilezen/-/node-agilezen-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/node-agilezen/" + }, + "node-api": { + "name": "node-api", + "description": "Collect Node globals & core APIs under one object.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "laurie71", + "email": "laurie@holoweb.net" + } + ], + "time": { + "modified": "2011-03-11T16:01:23.432Z", + "created": "2011-03-11T16:01:23.192Z", + "0.0.1": "2011-03-11T16:01:23.432Z" + }, + "author": { + "name": "Laurie Harper", + "url": "http://laurie.holoweb.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/laurie71/node-api.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-api/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "cf42499ed94a6a51031b734dfc7a0cd5646665e9", + "tarball": "http://registry.npmjs.org/node-api/-/node-api-0.0.1.tgz" + } + }, + "keywords": [ + "load", + "modules", + "require" + ], + "url": "http://registry.npmjs.org/node-api/" + }, + "node-apidoc": { + "name": "node-apidoc", + "description": "Utility for show node.js's API Document.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "yuroyoro", + "email": "helmettomo@gmail.com" + } + ], + "author": { + "name": "Tomohito Ozaki", + "email": "helmettomo@gmail.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/yuroyoro/node-apidoc.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/node-apidoc/0.1.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/node-apidoc/-/node-apidoc-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/node-apidoc/" + }, + "node-app-reloader": { + "name": "node-app-reloader", + "description": "restart node app on file modification", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "tdebarochez", + "email": "thomas.barochez+npm@gmail.com" + } + ], + "time": { + "modified": "2011-06-28T21:10:34.370Z", + "created": "2011-06-26T20:22:08.553Z", + "1.0.0": "2011-06-26T20:22:08.978Z", + "1.0.1": "2011-06-28T21:10:34.370Z" + }, + "author": { + "name": "Thomas Debarochez", + "email": "thomas.barochez+npm@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/tdebarochez/node-app-reloader.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/node-app-reloader/1.0.0", + "1.0.1": "http://registry.npmjs.org/node-app-reloader/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "9e102c3089a3bb5f5ec59fbfa14a8b70f9a8b714", + "tarball": "http://registry.npmjs.org/node-app-reloader/-/node-app-reloader-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "de15d05da49a46ee6b6f5ba9a37fc2c9b4320e73", + "tarball": "http://registry.npmjs.org/node-app-reloader/-/node-app-reloader-1.0.1.tgz" + } + }, + "keywords": [ + "restart", + "file observing" + ], + "url": "http://registry.npmjs.org/node-app-reloader/" + }, + "node-ar": { + "name": "node-ar", + "description": "A simple nodejs module as active-record does", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "# node-ar\n\n## Purpose\n\nA simple ActiveRecord like nodejs module\n\nIt supports 'has_many' and 'belongs_to' relationship\n\nYou can `find` and `find_by*` each field name\n\n**Important**: it works synchronously.\n\n## Introduction\n\nThis module is based on Sannis's [node-mysql-libmysqlclient](https://github.com/Sannis/node-mysql-libmysqlclient).\nNode-Ar adds some simple features as ActiveRecord does.\nI want to explain that it is not completed. This should be considered an example.\nBut I would to expand it also with your help.\n\nSo, do not hesitate to contact me for any question or doubts\n\nMy mind is open for any collaboration ;)\n\n## Installation\n\nFor installing this module try\n\n```\nnpm install node-ar\n```\n\n## Usage\n\nSee file in the `spec` folder for examples\n\n\n## Overview\nHaving a DB as ActiveRecord on Rails wants.\nYou can able to perform `select` `insert` and `update` using `Models` like instances.\n\n### DataType (used to declare the fields)\nDataType.String # the VARCHAR type\nDataType.Int # the INT type\nDataType.Boolean # the TYNINT type\n(tmporarly incompleted)\n\n### Model\n(Static methods)\nModel.find( id /* as NUM */ ) # returns the instance of the model if found. Otherwise null\nModel.find( 'all' ) # returns an Array instance contaning all model found by performing the `select`. Empty array if no record found\nModel.find( 'first' ) # returns the instance of the model representing the first matched record if found. Otherwise null\nModel.find_by( where, options, limit )\n # where (Object)\n ```javascipt\n where = {\n field_foo_name: field_foo_value,\n field_bar_name: field_bar_value,\n }\n ```\n # options (Object)\n ```javascript\n options = {\n includes: ['table_foo_name', 'table_bar_name'],\n joins: {\n table_foo_name: { // INNER JOIN table_foo_name\n field_bar_name: { // ON field_bar_name\n table_xxxx_name: 'field_xxxx_name' // = table_xxxx_name.field_xxxx_name\n }\n }\n }\n }\n ```\n # limit (Number) Used as `LIMIT` sql condition\n\nModel.find_by_foo_field_name( value ) # return an Array containing the result of `select * from table_foo_name where FOO_FIELD_NAME = VALUE`. A Model single instance if field id declared as unique\n\n\n## Todo\n\nWhat i'm going to add:\n\n* Implement events\n* Fields validation\n* BUG: it doesn't delete the `has_many` relations while deleting a Model from DB. But I'm working to fix it.\n\n* More documentation is coming... ;)\n", + "maintainers": [ + { + "name": "fatshotty", + "email": "fat@fatshotty.net" + } + ], + "time": { + "modified": "2011-12-05T23:17:43.191Z", + "created": "2011-12-05T23:17:41.572Z", + "0.0.1": "2011-12-05T23:17:43.191Z" + }, + "author": { + "name": "Fatshotty", + "email": "fat@fatshotty.net", + "url": "https://github.com/fatshotty" + }, + "repository": { + "type": "git", + "url": "git://github.com/fatshotty/node-ar.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-ar/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "9a0bdd420c453b5f8ff203fc4f21a5bd9ed8b754", + "tarball": "http://registry.npmjs.org/node-ar/-/node-ar-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/node-ar/" + }, + "node-arse": { + "name": "node-arse", + "description": "Callbackified assertions", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "devioustree", + "email": "tom@devioustree.co.uk" + } + ], + "author": { + "name": "Tom Drummond", + "email": "tom@devioustree.co.uk" + }, + "repository": { + "type": "git", + "url": "https://devioustree@github.com/devioustree/node-arse.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-arse/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-arse/0.0.2", + "0.0.3": "http://registry.npmjs.org/node-arse/0.0.3", + "0.0.4": "http://registry.npmjs.org/node-arse/0.0.4" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/node-arse/-/node-arse-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/node-arse/-/node-arse-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/node-arse/-/node-arse-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "e339ca3f9355a8e72c7fe35fdc056689cb5e8be3", + "tarball": "http://registry.npmjs.org/node-arse/-/node-arse-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/node-arse/" + }, + "node-assert-extras": { + "name": "node-assert-extras", + "description": "Extended assert module for Node.JS", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "cjohansen", + "email": "christian@cjohansen.no" + } + ], + "time": { + "modified": "2011-08-08T13:00:46.464Z", + "created": "2011-08-08T13:00:45.341Z", + "0.1.0": "2011-08-08T13:00:46.464Z" + }, + "author": { + "name": "Christian Johansen", + "email": "christian@cjohansen.no", + "url": "http://cjohansen.no" + }, + "repository": { + "type": "git", + "url": "git://gitorious.org/node-assert-extras/mainline.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/node-assert-extras/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "7763adb989753897cff49c57bb014a79a6b90581", + "tarball": "http://registry.npmjs.org/node-assert-extras/-/node-assert-extras-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/node-assert-extras/" + }, + "node-assert-lint-free": { + "name": "node-assert-lint-free", + "description": "JSLint assertion for unit testing in node.js", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "mikebannister", + "email": "mikebannister@gmail.com" + } + ], + "author": { + "name": "Mike Bannister", + "email": "mike@mike101.net" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-assert-lint-free/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-assert-lint-free/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "2e01787a9e780423bf30a2614542d2f9aef75590", + "tarball": "http://registry.npmjs.org/node-assert-lint-free/-/node-assert-lint-free-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "a916503453b802d1fb34e14927628f79237ea3e8", + "tarball": "http://registry.npmjs.org/node-assert-lint-free/-/node-assert-lint-free-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/node-assert-lint-free/" + }, + "node-assertthat": { + "name": "node-assertthat", + "description": "node-assertthat provides a fluent TDD style for Node.js: assert.that(actual, is.equalTo(expected));", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "goloroden", + "email": "webmaster@goloroden.de" + } + ], + "time": { + "modified": "2011-11-03T22:23:57.307Z", + "created": "2011-11-03T18:49:25.875Z", + "0.0.1": "2011-11-03T18:49:28.870Z", + "0.0.2": "2011-11-03T18:58:51.162Z", + "0.0.3": "2011-11-03T21:45:12.290Z", + "0.0.4": "2011-11-03T22:01:15.920Z", + "0.0.5": "2011-11-03T22:13:33.533Z", + "0.0.6": "2011-11-03T22:23:57.307Z" + }, + "author": { + "name": "Golo Roden", + "email": "webmaster@goloroden.de", + "url": "http://www.goloroden.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/goloroden/node-assertthat.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-assertthat/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-assertthat/0.0.2", + "0.0.3": "http://registry.npmjs.org/node-assertthat/0.0.3", + "0.0.4": "http://registry.npmjs.org/node-assertthat/0.0.4", + "0.0.5": "http://registry.npmjs.org/node-assertthat/0.0.5", + "0.0.6": "http://registry.npmjs.org/node-assertthat/0.0.6" + }, + "dist": { + "0.0.1": { + "shasum": "3011a02661040126fa80c664c04601c345931cd8", + "tarball": "http://registry.npmjs.org/node-assertthat/-/node-assertthat-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "b2a862198e37a76189e13c9dc8b1825b7d993582", + "tarball": "http://registry.npmjs.org/node-assertthat/-/node-assertthat-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "5b62a037a1dacf412690828b76c059dd0c245b82", + "tarball": "http://registry.npmjs.org/node-assertthat/-/node-assertthat-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "e44e4e33035f0751d0be877aa663bcb6301f1216", + "tarball": "http://registry.npmjs.org/node-assertthat/-/node-assertthat-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "6b0b33b18b5b8d6310b23248e60f7e759631c118", + "tarball": "http://registry.npmjs.org/node-assertthat/-/node-assertthat-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "c4a97651778a7e6ea0d60a417d6471d98b39ae4b", + "tarball": "http://registry.npmjs.org/node-assertthat/-/node-assertthat-0.0.6.tgz" + } + }, + "url": "http://registry.npmjs.org/node-assertthat/" + }, + "node-asset": { + "name": "node-asset", + "description": "A asset packager for Node.js", + "dist-tags": { + "latest": "0.1.6" + }, + "maintainers": [ + { + "name": "Tim-Smart", + "email": "tim@fostle.com" + } + ], + "author": { + "name": "Tim-Smart" + }, + "repository": { + "type": "git", + "url": "git://github.com/Tim-Smart/node-asset.git" + }, + "time": { + "modified": "2011-09-13T23:47:45.690Z", + "created": "2011-09-13T23:47:45.690Z", + "0.1.0": "2011-09-13T23:47:45.690Z", + "0.1.1": "2011-09-13T23:47:45.690Z", + "0.1.2": "2011-09-13T23:47:45.690Z", + "0.1.3": "2011-09-13T23:47:45.690Z", + "0.1.4": "2011-09-13T23:47:45.690Z", + "0.1.5": "2011-09-13T23:47:45.690Z", + "0.1.6": "2011-09-13T23:47:45.690Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/node-asset/0.1.0", + "0.1.1": "http://registry.npmjs.org/node-asset/0.1.1", + "0.1.2": "http://registry.npmjs.org/node-asset/0.1.2", + "0.1.3": "http://registry.npmjs.org/node-asset/0.1.3", + "0.1.4": "http://registry.npmjs.org/node-asset/0.1.4", + "0.1.5": "http://registry.npmjs.org/node-asset/0.1.5", + "0.1.6": "http://registry.npmjs.org/node-asset/0.1.6" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/node-asset/-/node-asset-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://packages:5984/node-asset/-/node-asset-0.1.1.tgz" + }, + "0.1.2": { + "tarball": "http://packages:5984/node-asset/-/node-asset-0.1.2.tgz" + }, + "0.1.3": { + "tarball": "http://packages:5984/node-asset/-/node-asset-0.1.3.tgz" + }, + "0.1.4": { + "tarball": "http://packages:5984/node-asset/-/node-asset-0.1.4.tgz" + }, + "0.1.5": { + "tarball": "http://packages:5984/node-asset/-/node-asset-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "c5c131aaff1a67ea96362587d26281038bb47f7a", + "tarball": "http://registry.npmjs.org/node-asset/-/node-asset-0.1.6.tgz" + } + }, + "url": "http://registry.npmjs.org/node-asset/" + }, + "node-awesm": { + "name": "node-awesm", + "description": "Wrapper for the awe.sm ", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "gteodoru", + "email": "gabriel@scopely.com" + } + ], + "time": { + "modified": "2011-08-24T00:56:43.211Z", + "created": "2011-08-24T00:56:42.086Z", + "0.0.1": "2011-08-24T00:56:43.211Z" + }, + "author": { + "name": "Gabriel Teodoru", + "email": "gabriel@scopely.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/scopely/node-awesm.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-awesm/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "0937ae211aed2409a01c281aabaabcfb989f23c9", + "tarball": "http://registry.npmjs.org/node-awesm/-/node-awesm-0.0.1.tgz" + } + }, + "keywords": [ + "awe.sm", + "links", + "shorten", + "awesome" + ], + "url": "http://registry.npmjs.org/node-awesm/" + }, + "node-azure": { + "name": "node-azure", + "description": "Windows Azure library for Node.js", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "richard.astbury", + "email": "richard.astbury@gmail.com" + } + ], + "time": { + "modified": "2011-09-30T15:44:37.035Z", + "created": "2011-09-30T15:44:35.306Z", + "0.1.0": "2011-09-30T15:44:37.035Z" + }, + "author": { + "name": "Rob Blackwell, Richard Astbury, Max Spencer" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/node-azure/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "222036b79b0a1f53f78445010845225507b9b4a2", + "tarball": "http://registry.npmjs.org/node-azure/-/node-azure-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/node-azure/" + }, + "node-backbone-couch": { + "name": "node-backbone-couch", + "description": "A CouchDB sync adaptor for Backbone", + "dist-tags": { + "latest": "0.0.7" + }, + "maintainers": [ + { + "name": "excsm", + "email": "saimonmoore@gmail.com" + } + ], + "time": { + "modified": "2011-08-27T17:28:38.880Z", + "created": "2011-08-16T14:02:48.251Z", + "0.0.1": "2011-08-16T14:02:56.268Z", + "0.0.2": "2011-08-16T14:17:26.160Z", + "0.0.3": "2011-08-16T15:00:01.971Z", + "0.0.4": "2011-08-19T05:22:59.013Z", + "0.0.5": "2011-08-19T05:52:55.044Z", + "0.0.6": "2011-08-27T16:13:04.689Z", + "0.0.7": "2011-08-27T17:28:38.880Z" + }, + "author": { + "name": "Saimon Moore", + "email": "saimonmoore@gmail.com", + "url": "http://saimonmoore.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/saimonmoore/node-backbone-couch.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-backbone-couch/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-backbone-couch/0.0.2", + "0.0.3": "http://registry.npmjs.org/node-backbone-couch/0.0.3", + "0.0.4": "http://registry.npmjs.org/node-backbone-couch/0.0.4", + "0.0.5": "http://registry.npmjs.org/node-backbone-couch/0.0.5", + "0.0.6": "http://registry.npmjs.org/node-backbone-couch/0.0.6", + "0.0.7": "http://registry.npmjs.org/node-backbone-couch/0.0.7" + }, + "dist": { + "0.0.1": { + "shasum": "19e40af651d193c978878d8e75fd1b975c51c59b", + "tarball": "http://registry.npmjs.org/node-backbone-couch/-/node-backbone-couch-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "00b61d8834fdcf39da6d426078145b6820ab3cff", + "tarball": "http://registry.npmjs.org/node-backbone-couch/-/node-backbone-couch-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "9e1a91efa49c0c4361244b6a47380e585ea0df80", + "tarball": "http://registry.npmjs.org/node-backbone-couch/-/node-backbone-couch-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "06ac0ad0af0a194a5b3347773bff4777922d7e59", + "tarball": "http://registry.npmjs.org/node-backbone-couch/-/node-backbone-couch-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "3d5657f0b7d83f5aa571519677b5008d4c415be2", + "tarball": "http://registry.npmjs.org/node-backbone-couch/-/node-backbone-couch-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "8d1a3ccac7ad314559d89b25b5a5d90678a49f23", + "tarball": "http://registry.npmjs.org/node-backbone-couch/-/node-backbone-couch-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "797adfb629bb93337445e06606d66dc791ec8473", + "tarball": "http://registry.npmjs.org/node-backbone-couch/-/node-backbone-couch-0.0.7.tgz" + } + }, + "keywords": [ + "couchdb", + "backbone", + "couch" + ], + "url": "http://registry.npmjs.org/node-backbone-couch/" + }, + "node-base64": { + "name": "node-base64", + "description": "Node.js module for base64 encoding and decoding.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "astro", + "email": "astro@spaceboyz.net" + } + ], + "time": { + "modified": "2011-04-15T21:27:51.779Z", + "created": "2011-03-31T08:05:24.914Z", + "0.0.1": "2011-03-31T08:05:24.914Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-base64/0.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/node-base64/-/node-base64-0.0.1.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "955c1b27cf0e3efa28df32222d6da8e24b15f494", + "tarball": "http://registry.npmjs.org/node-base64/-/node-base64-0.0.1-0.4-sunos-5.11.tgz" + } + } + } + }, + "url": "http://registry.npmjs.org/node-base64/" + }, + "node-bj": { + "name": "node-bj", + "description": "mdns/zeroconf/bonjour service based on agnat ++ txtRecord support", + "dist-tags": { + "latest": "0.0.3bogeyatsix-1.0" + }, + "maintainers": [ + { + "name": "pukimak", + "email": "pukimak@gmail.com" + } + ], + "time": { + "modified": "2011-06-30T06:35:07.234Z", + "created": "2011-06-30T06:35:06.331Z", + "0.0.3bogeyatsix-1.0": "2011-06-30T06:35:07.234Z" + }, + "author": { + "name": "David Siegel", + "email": "david@artcom.de" + }, + "versions": { + "0.0.3bogeyatsix-1.0": "http://registry.npmjs.org/node-bj/0.0.3bogeyatsix-1.0" + }, + "dist": { + "0.0.3bogeyatsix-1.0": { + "shasum": "f36de0ac0cecf552c2a3af16669b816a9732539c", + "tarball": "http://registry.npmjs.org/node-bj/-/node-bj-0.0.3bogeyatsix-1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/node-bj/" + }, + "node-bosh-stress-tool": { + "name": "node-bosh-stress-tool", + "description": "BOSH client to stress test a bosh server", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "anoopc", + "email": "anoopchaurasiya1@gmail.com" + } + ], + "time": { + "modified": "2011-06-30T14:35:48.380Z", + "created": "2011-06-30T14:35:47.317Z", + "0.0.1": "2011-06-30T14:35:48.380Z" + }, + "author": { + "name": "Anoop Chaurasiya" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-bosh-stress-tool/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "17683a985e0ed39f3afaa3eb73e1dcdca6520c16", + "tarball": "http://registry.npmjs.org/node-bosh-stress-tool/-/node-bosh-stress-tool-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/node-bosh-stress-tool/" + }, + "node-brainfuck": { + "name": "node-brainfuck", + "description": "Almost inexistant brainfuck compiler for nodejs", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "masylum", + "email": "masylum@gmail.com" + } + ], + "author": { + "name": "Pau Ramon", + "email": "masylum@gmail.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/masylum/node-brainfuck.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-brainfuck/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-brainfuck/0.0.2" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/node-brainfuck/-/node-brainfuck-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/node-brainfuck/-/node-brainfuck-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/node-brainfuck/" + }, + "node-build": { + "name": "node-build", + "description": "An ant like build tool for nodejs without the xml hassle", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "rslijp", + "email": "rs@linkitprojects.nl" + } + ], + "author": { + "name": "Renzo Slijp", + "email": "rs@linkitprojects.nl", + "url": "http://www.linkit-projects.nl" + }, + "repository": { + "type": "git", + "url": "git://github.com/linkitprojects/node-build.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-build/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-build/0.0.2", + "0.1.0": "http://registry.npmjs.org/node-build/0.1.0" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/node-build/-/node-build-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/node-build/-/node-build-0.0.2.tgz" + }, + "0.1.0": { + "tarball": "http://registry.npmjs.org/node-build/-/node-build-0.1.0.tgz" + } + }, + "keywords": [ + "build", + "ant", + "coverage", + "test", + "deploy", + "couchdb" + ], + "url": "http://registry.npmjs.org/node-build/" + }, + "node-cache": { + "name": "node-cache", + "description": "Simple and fast NodeJS internal caching.", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "tcs-de", + "email": "github@tcs.de" + } + ], + "time": { + "modified": "2011-10-20T14:52:16.323Z", + "created": "2011-10-20T12:00:03.206Z", + "0.1.0": "2011-10-20T12:00:04.799Z", + "0.1.1": "2011-10-20T12:10:08.261Z", + "0.1.3": "2011-10-20T12:57:14.518Z", + "0.2.0": "2011-10-20T14:52:16.323Z" + }, + "author": { + "name": "tcs-de", + "email": "github@tcs.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/tcs-de/nodecache.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/node-cache/0.1.0", + "0.1.1": "http://registry.npmjs.org/node-cache/0.1.1", + "0.1.3": "http://registry.npmjs.org/node-cache/0.1.3", + "0.2.0": "http://registry.npmjs.org/node-cache/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "4e5c85543a3930454741b21c6c04940017ebb077", + "tarball": "http://registry.npmjs.org/node-cache/-/node-cache-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "936a268b2709505a42570f3882b0e0ddb8842e54", + "tarball": "http://registry.npmjs.org/node-cache/-/node-cache-0.1.1.tgz" + }, + "0.1.3": { + "shasum": "982b9b04ae3e41ff880910ea2f2c3351b4f5622a", + "tarball": "http://registry.npmjs.org/node-cache/-/node-cache-0.1.3.tgz" + }, + "0.2.0": { + "shasum": "96d43eac26e569ec333bdfbfdb60adfaedb2283c", + "tarball": "http://registry.npmjs.org/node-cache/-/node-cache-0.2.0.tgz" + } + }, + "keywords": [ + "cache", + "caching", + "local", + "variable", + "coffee", + "coffee-script", + "underscore", + "multi" + ], + "url": "http://registry.npmjs.org/node-cache/" + }, + "node-casa": { + "name": "node-casa", + "description": "node.js port of twisted application. pulls latest images feed from picasa web albums.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "goddamnbugs", + "email": "steve@goddamnbugs.com" + } + ], + "author": { + "name": "Steve", + "email": "steve@goddamnbugs.com", + "url": "http://goddamnbugs.com/" + }, + "repository": { + "type": "git", + "url": "https://github.com/goddamnbugs/node-casa.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-casa/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "38cb4d31c96faf59075620c8d0a795905527cefe", + "tarball": "http://registry.npmjs.org/node-casa/-/node-casa-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/node-casa/" + }, + "node-ccl": { + "name": "node-ccl", + "description": "BETA VERSION, USE ON YOUR OWN RISK. Colored, context-enabled logger.", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "devgru", + "email": "npm@devg.ru" + } + ], + "time": { + "modified": "2011-08-02T14:04:33.039Z", + "created": "2011-02-07T13:23:00.466Z", + "0.0.1": "2011-02-07T13:23:00.867Z", + "0.0.2": "2011-02-10T10:29:14.081Z", + "0.0.3": "2011-02-10T10:47:49.024Z", + "0.0.4": "2011-08-02T14:04:33.039Z" + }, + "author": { + "name": "Devgru", + "email": "git@devg.ru", + "url": "http://home.devg.ru" + }, + "repository": { + "type": "git", + "url": "git://github.com/devgru/node-ccl.git" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/node-ccl/0.0.3", + "0.0.4": "http://registry.npmjs.org/node-ccl/0.0.4" + }, + "dist": { + "0.0.3": { + "shasum": "658715fc3a3944f6e0572a5379fff7da56ca4300", + "tarball": "http://registry.npmjs.org/node-ccl/-/node-ccl-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "b7b9a07a8d3bc38a118cca3f3e682ad5af733283", + "tarball": "http://registry.npmjs.org/node-ccl/-/node-ccl-0.0.4.tgz" + } + }, + "keywords": [ + "logging" + ], + "url": "http://registry.npmjs.org/node-ccl/" + }, + "node-chain": { + "name": "node-chain", + "description": "Simple call chaining library for node.js", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "Art", + "email": "artem.skvira@gmail.com" + }, + { + "name": "art", + "email": "artem.skvira@gmail.com" + } + ], + "time": { + "modified": "2011-06-17T12:49:47.651Z", + "created": "2011-05-16T03:16:20.242Z", + "0.0.1": "2011-05-16T03:16:21.816Z", + "0.0.2": "2011-06-17T12:49:47.651Z" + }, + "author": { + "name": "Artem Skvira" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-chain/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-chain/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "793675179762e3fcafde6cba30ac683932750042", + "tarball": "http://registry.npmjs.org/node-chain/-/node-chain-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "08d70ec7b140e84f6c8a83eb0cf8f7dbea8f5229", + "tarball": "http://registry.npmjs.org/node-chain/-/node-chain-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/node-chain/" + }, + "node-channel": { + "name": "node-channel", + "description": "A comet server, based on expressjs", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "calidion", + "email": "calidion@gmail.com" + } + ], + "time": { + "modified": "2011-10-19T14:03:30.406Z", + "created": "2011-10-19T14:03:23.516Z", + "0.0.1": "2011-10-19T14:03:30.406Z" + }, + "author": { + "name": "calidion", + "email": "calidion@gmail.com", + "url": "http://wordpress.3gcnbeta.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/calidion/node-channel.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-channel/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "e6ca33187e65d37e6aa098d4a9ef74175ae521f3", + "tarball": "http://registry.npmjs.org/node-channel/-/node-channel-0.0.1.tgz" + } + }, + "keywords": [ + "server push", + "comet", + "web", + "http", + "restful", + "channel", + "streaming", + "long polling", + "polling" + ], + "url": "http://registry.npmjs.org/node-channel/" + }, + "node-child-process-manager": { + "name": "node-child-process-manager", + "dist-tags": { + "latest": "0.3.3" + }, + "maintainers": [ + { + "name": "fsvehla", + "email": "f.svehla@gmail.com" + } + ], + "author": { + "name": "Ferdinand Svehla", + "email": "f.svehla@gmail.com" + }, + "time": { + "modified": "2011-11-10T20:21:05.860Z", + "created": "2011-02-10T17:04:22.130Z", + "0.0.1": "2011-02-10T17:04:22.130Z", + "0.0.2": "2011-02-10T17:04:22.130Z", + "0.0.3": "2011-02-10T17:04:22.130Z", + "0.0.4": "2011-02-10T17:04:22.130Z", + "0.1.0": "2011-02-10T17:04:22.130Z", + "0.1.1": "2011-02-10T17:08:58.633Z", + "0.1.2": "2011-02-10T17:13:43.989Z", + "0.1.3": "2011-02-10T17:18:52.010Z", + "0.1.4": "2011-02-12T12:59:13.402Z", + "0.2.0": "2011-03-13T12:34:41.897Z", + "0.2.1": "2011-08-16T19:28:01.450Z", + "0.2.2": "2011-08-17T14:40:05.077Z", + "0.2.3": "2011-08-17T19:31:19.287Z", + "0.2.4": "2011-08-18T17:29:31.279Z", + "0.2.5": "2011-08-22T18:13:14.466Z", + "0.2.6": "2011-08-27T15:55:13.777Z", + "0.2.7": "2011-10-18T14:05:08.498Z", + "0.2.8": "2011-10-18T14:07:04.965Z", + "0.2.9": "2011-11-08T14:54:14.621Z", + "0.3.0": "2011-11-09T15:01:52.959Z", + "0.3.1": "2011-11-09T18:49:22.059Z", + "0.3.2": "2011-11-10T13:22:33.352Z", + "0.3.3": "2011-11-10T20:21:05.860Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-child-process-manager/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-child-process-manager/0.0.2", + "0.0.3": "http://registry.npmjs.org/node-child-process-manager/0.0.3", + "0.0.4": "http://registry.npmjs.org/node-child-process-manager/0.0.4", + "0.1.0": "http://registry.npmjs.org/node-child-process-manager/0.1.0", + "0.1.1": "http://registry.npmjs.org/node-child-process-manager/0.1.1", + "0.1.2": "http://registry.npmjs.org/node-child-process-manager/0.1.2", + "0.1.3": "http://registry.npmjs.org/node-child-process-manager/0.1.3", + "0.1.4": "http://registry.npmjs.org/node-child-process-manager/0.1.4", + "0.2.0": "http://registry.npmjs.org/node-child-process-manager/0.2.0", + "0.2.1": "http://registry.npmjs.org/node-child-process-manager/0.2.1", + "0.2.2": "http://registry.npmjs.org/node-child-process-manager/0.2.2", + "0.2.3": "http://registry.npmjs.org/node-child-process-manager/0.2.3", + "0.2.4": "http://registry.npmjs.org/node-child-process-manager/0.2.4", + "0.2.5": "http://registry.npmjs.org/node-child-process-manager/0.2.5", + "0.2.6": "http://registry.npmjs.org/node-child-process-manager/0.2.6", + "0.2.7": "http://registry.npmjs.org/node-child-process-manager/0.2.7", + "0.2.8": "http://registry.npmjs.org/node-child-process-manager/0.2.8", + "0.2.9": "http://registry.npmjs.org/node-child-process-manager/0.2.9", + "0.3.0": "http://registry.npmjs.org/node-child-process-manager/0.3.0", + "0.3.1": "http://registry.npmjs.org/node-child-process-manager/0.3.1", + "0.3.2": "http://registry.npmjs.org/node-child-process-manager/0.3.2", + "0.3.3": "http://registry.npmjs.org/node-child-process-manager/0.3.3" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/node-child-process-manager/-/node-child-process-manager-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/node-child-process-manager/-/node-child-process-manager-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/node-child-process-manager/-/node-child-process-manager-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "f898254e6729143908f7d3c06e217872fd5b3cfa", + "tarball": "http://registry.npmjs.org/node-child-process-manager/-/node-child-process-manager-0.0.4.tgz" + }, + "0.1.0": { + "shasum": "b2ebca8c55cbce2edc705c12aac39a10f4132fc3", + "tarball": "http://registry.npmjs.org/node-child-process-manager/-/node-child-process-manager-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "fb4bcef43d2bf2ed2fc1019789911aa0ad23e855", + "tarball": "http://registry.npmjs.org/node-child-process-manager/-/node-child-process-manager-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "688e8d8d699fa2da36cda621eda52fc16195472b", + "tarball": "http://registry.npmjs.org/node-child-process-manager/-/node-child-process-manager-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "fbc1c6874087a91dae56af5cea7898fe65a83c32", + "tarball": "http://registry.npmjs.org/node-child-process-manager/-/node-child-process-manager-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "c5ca65efc1a0efed48e12054b25e1359a99d1318", + "tarball": "http://registry.npmjs.org/node-child-process-manager/-/node-child-process-manager-0.1.4.tgz" + }, + "0.2.0": { + "shasum": "bd4dcae2fff4ca7fba8f29f6a5a3c6c572c4df7e", + "tarball": "http://registry.npmjs.org/node-child-process-manager/-/node-child-process-manager-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "19aa630f912ff973a9b98e5d460bca9e033ab910", + "tarball": "http://registry.npmjs.org/node-child-process-manager/-/node-child-process-manager-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "857c5542d3f83acba12c2aae3c652cd2b69e605d", + "tarball": "http://registry.npmjs.org/node-child-process-manager/-/node-child-process-manager-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "56c41db57ab621e724af65d59297eb32ec04b1c4", + "tarball": "http://registry.npmjs.org/node-child-process-manager/-/node-child-process-manager-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "93ebead4270745204f322f78f93729df522db537", + "tarball": "http://registry.npmjs.org/node-child-process-manager/-/node-child-process-manager-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "f4740edb38f2e39ddc38c27f3a966c87c2bb9920", + "tarball": "http://registry.npmjs.org/node-child-process-manager/-/node-child-process-manager-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "571ef949589112ada2538a9bb252d0d6939c69e7", + "tarball": "http://registry.npmjs.org/node-child-process-manager/-/node-child-process-manager-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "67cc21c9c11065598d6f957b765ed3fff9434ff9", + "tarball": "http://registry.npmjs.org/node-child-process-manager/-/node-child-process-manager-0.2.7.tgz" + }, + "0.2.8": { + "shasum": "335629ffce6f3cf44ab4c64e3ad756239652df59", + "tarball": "http://registry.npmjs.org/node-child-process-manager/-/node-child-process-manager-0.2.8.tgz" + }, + "0.2.9": { + "shasum": "645860d02f202713caad17c4253a98221728a4f2", + "tarball": "http://registry.npmjs.org/node-child-process-manager/-/node-child-process-manager-0.2.9.tgz" + }, + "0.3.0": { + "shasum": "d37131b7f4717bcd8525b05a5882285e4f4060e7", + "tarball": "http://registry.npmjs.org/node-child-process-manager/-/node-child-process-manager-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "baa7186a09676cb193e10280f47fd0bc3f2da7c8", + "tarball": "http://registry.npmjs.org/node-child-process-manager/-/node-child-process-manager-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "7874e23262d817d52f2a968aa26f14afe90d9f5d", + "tarball": "http://registry.npmjs.org/node-child-process-manager/-/node-child-process-manager-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "244e39683c3fbd1ddd2a1d02d3e57733592a0d22", + "tarball": "http://registry.npmjs.org/node-child-process-manager/-/node-child-process-manager-0.3.3.tgz" + } + }, + "keywords": [ + "tcp", + "debug" + ], + "url": "http://registry.npmjs.org/node-child-process-manager/" + }, + "node-chirpstream": { + "name": "node-chirpstream", + "description": "A Twitter ChirpStream(ChirpUserStreams) Library for Node.js", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "swdyh", + "email": "youhei@gmail.com" + } + ], + "author": { + "name": "swdyh" + }, + "time": { + "modified": "2011-09-23T10:23:12.016Z", + "created": "2011-09-23T10:23:12.016Z", + "0.0.1": "2011-09-23T10:23:12.016Z", + "0.0.2": "2011-09-23T10:23:12.016Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-chirpstream/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-chirpstream/0.0.2" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/node-chirpstream/-/node-chirpstream-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/node-chirpstream/-/node-chirpstream-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/node-chirpstream/" + }, + "node-clone": { + "name": "node-clone", + "description": "Universal object cloning", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "nais", + "email": "info@infonais.fr" + } + ], + "time": { + "modified": "2011-06-17T16:52:17.374Z", + "created": "2011-06-17T10:28:52.722Z", + "0.1.0": "2011-06-17T10:28:53.059Z", + "0.1.1": "2011-06-17T16:52:17.374Z" + }, + "author": { + "name": "Naïs Informatique & Telecom", + "email": "info@infonais.fr", + "url": "http://www.infonais.fr" + }, + "repository": { + "url": "" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/node-clone/0.1.0", + "0.1.1": "http://registry.npmjs.org/node-clone/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "cc93d0d88503a0f2a79f09a840ea0977f4cfcdc9", + "tarball": "http://registry.npmjs.org/node-clone/-/node-clone-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "3c57e4c1eadd3014d38ec4c3a807ed777653a17c", + "tarball": "http://registry.npmjs.org/node-clone/-/node-clone-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/node-clone/" + }, + "node-cloudwatch": { + "name": "node-cloudwatch", + "description": "Simple wrapper for using CloudWatch API", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "franklovecchio", + "email": "frank@isidorey.com" + } + ], + "time": { + "modified": "2011-07-05T18:28:12.189Z", + "created": "2011-07-05T18:28:11.765Z", + "0.0.1": "2011-07-05T18:28:12.189Z" + }, + "author": { + "name": "Frank LoVecchio", + "email": "frank@isidorey.com", + "url": "http://franklovecchio.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/franklovecchio/node-cloudwatch.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-cloudwatch/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "9ba0e219b28072cbe5aa463e7636e8f2febbacc8", + "tarball": "http://registry.npmjs.org/node-cloudwatch/-/node-cloudwatch-0.0.1.tgz" + } + }, + "keywords": [ + "amazon", + "cloudwatch", + "client", + "node" + ], + "url": "http://registry.npmjs.org/node-cloudwatch/" + }, + "node-combine": { + "name": "node-combine", + "description": "Templating shiz", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "tbranyen", + "email": "tim@tabdeveloper.com" + } + ], + "time": { + "modified": "2011-07-13T04:28:40.668Z", + "created": "2011-07-13T04:28:40.208Z", + "0.0.1": "2011-07-13T04:28:40.668Z" + }, + "author": { + "name": "Tim Branyen", + "email": "tim@tabdeveloper.com", + "url": "http://twitter.com/tbranyen" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-combine/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "695b23d861783d310194d757c8464ec3b8581814", + "tarball": "http://registry.npmjs.org/node-combine/-/node-combine-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/node-combine/" + }, + "node-compat": { + "name": "node-compat", + "description": "Node.js compatibility layer for the browser", + "dist-tags": { + "latest": "0.3.1" + }, + "maintainers": [ + { + "name": "amccollum", + "email": "amccollum+npm@gmail.com" + } + ], + "time": { + "modified": "2011-09-16T20:15:39.769Z", + "created": "2011-09-06T16:27:51.335Z", + "0.1.0": "2011-09-06T16:27:51.718Z", + "0.2.0": "2011-09-16T15:23:07.460Z", + "0.3.0": "2011-09-16T19:56:09.308Z", + "0.3.1": "2011-09-16T20:15:39.769Z" + }, + "author": { + "name": "Andrew McCollum", + "email": "amccollum@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/node-compat/0.1.0", + "0.2.0": "http://registry.npmjs.org/node-compat/0.2.0", + "0.3.0": "http://registry.npmjs.org/node-compat/0.3.0", + "0.3.1": "http://registry.npmjs.org/node-compat/0.3.1" + }, + "dist": { + "0.1.0": { + "shasum": "b48636e63ca62b43eeffee2ab55726000b8cbda9", + "tarball": "http://registry.npmjs.org/node-compat/-/node-compat-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "c83edcfa019d760ffcb085944ce877f5836f1fe2", + "tarball": "http://registry.npmjs.org/node-compat/-/node-compat-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "2b01599ad9b307d73c0af2f40e8228b06e38e7c6", + "tarball": "http://registry.npmjs.org/node-compat/-/node-compat-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "810a640d71bf77f9c999466f1bbe1a22362a691e", + "tarball": "http://registry.npmjs.org/node-compat/-/node-compat-0.3.1.tgz" + } + }, + "url": "http://registry.npmjs.org/node-compat/" + }, + "node-config": { + "name": "node-config", + "description": "Lightweight configuration engine for node.js", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "Art", + "email": "artem.skvira@gmail.com" + }, + { + "name": "art", + "email": "artem.skvira@gmail.com" + } + ], + "author": { + "name": "Artem Skvira" + }, + "time": { + "modified": "2011-06-16T15:17:09.147Z", + "created": "2011-03-01T04:57:51.647Z", + "0.0.1": "2011-03-01T04:57:51.647Z", + "0.0.2": "2011-03-01T04:57:51.647Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-config/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-config/0.0.2" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/node-config/-/node-config-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "46b40dcfbcb0e66d46a15f81b54eac2130fb150d", + "tarball": "http://registry.npmjs.org/node-config/-/node-config-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/node-config/" + }, + "node-crocodoc": { + "name": "node-crocodoc", + "description": "Simple wrapper around the Crocodoc API for Node", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "storminwalker", + "email": "craig.walker@me.com" + } + ], + "time": { + "modified": "2011-07-22T03:01:47.788Z", + "created": "2011-07-22T02:48:40.210Z", + "0.0.1": "2011-07-22T02:48:41.495Z", + "0.0.2": "2011-07-22T03:01:47.788Z" + }, + "author": { + "name": "Craig Walker", + "email": "craig.walker@me.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/storminwalker/node-crocodoc.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-crocodoc/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-crocodoc/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "830086671c2efdf026b23805a347fcd907773ac3", + "tarball": "http://registry.npmjs.org/node-crocodoc/-/node-crocodoc-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "1ee80969fd79204feb56ddbc195907ee220d1002", + "tarball": "http://registry.npmjs.org/node-crocodoc/-/node-crocodoc-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/node-crocodoc/" + }, + "node-csv": { + "name": "node-csv", + "description": "A CSV parser for node.js", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "cohara87", + "email": "cohara87@gmail.com" + } + ], + "author": { + "name": "Chris O'Hara", + "email": "cohara87@gmail.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/chriso/node-csv.git" + }, + "time": { + "modified": "2011-09-19T11:44:46.997Z", + "created": "2011-09-19T11:44:46.997Z", + "0.1.0": "2011-09-19T11:44:46.997Z", + "0.1.1": "2011-09-19T11:44:46.997Z", + "0.1.2": "2011-09-19T11:44:46.997Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/node-csv/0.1.0", + "0.1.1": "http://registry.npmjs.org/node-csv/0.1.1", + "0.1.2": "http://registry.npmjs.org/node-csv/0.1.2" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/node-csv/-/node-csv-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://registry.npmjs.org/node-csv/-/node-csv-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "ffc86df25f3dc0739020ab15121e2d3033e74700", + "tarball": "http://registry.npmjs.org/node-csv/-/node-csv-0.1.2.tgz" + } + }, + "keywords": [ + "csv", + "parse", + "csv parser", + "csv parsing" + ], + "url": "http://registry.npmjs.org/node-csv/" + }, + "node-date": { + "name": "node-date", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "time": { + "modified": "2011-09-23T19:34:14.895Z", + "created": "2011-09-23T19:33:46.972Z", + "0.0.1": "2011-09-23T19:33:48.313Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-date/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "582ce46087cabacd5b53952ac15df9affeacaaeb", + "tarball": "http://registry.npmjs.org/node-date/-/node-date-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/node-date/" + }, + "node-date-diff": { + "name": "node-date-diff", + "dist-tags": { + "latest": "0.0.15" + }, + "maintainers": [ + { + "name": "morishani", + "email": "atnt123@bezeqint.net" + } + ], + "time": { + "modified": "2011-10-19T15:43:24.950Z", + "created": "2011-10-19T11:24:39.976Z", + "0.0.14": "2011-10-19T11:24:40.888Z", + "0.0.15": "2011-10-19T15:43:24.950Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/morishani/node-date-diff.git" + }, + "versions": { + "0.0.14": "http://registry.npmjs.org/node-date-diff/0.0.14", + "0.0.15": "http://registry.npmjs.org/node-date-diff/0.0.15" + }, + "dist": { + "0.0.14": { + "shasum": "9bbcb99f1d3805c97d2cee7709d6c4084fa90c7c", + "tarball": "http://registry.npmjs.org/node-date-diff/-/node-date-diff-0.0.14.tgz" + }, + "0.0.15": { + "shasum": "e142dd6ebe38896c153a5164cf185585f714feda", + "tarball": "http://registry.npmjs.org/node-date-diff/-/node-date-diff-0.0.15.tgz" + } + }, + "url": "http://registry.npmjs.org/node-date-diff/" + }, + "node-dbi": { + "name": "node-dbi", + "description": "A Database abstraction layer for Node.js, bundled with several DB engines adapters", + "dist-tags": { + "latest": "0.4.2" + }, + "maintainers": [ + { + "name": "dr-benton", + "email": "contact@dr-benton.com" + } + ], + "time": { + "modified": "2011-08-24T16:25:09.043Z", + "created": "2011-04-15T15:30:17.596Z", + "0.2.0": "2011-04-15T15:30:18.124Z", + "0.3.0": "2011-04-20T14:26:33.987Z", + "0.4.0": "2011-04-24T11:31:15.265Z", + "0.4.1": "2011-07-26T14:04:16.187Z", + "0.4.2": "2011-08-24T16:25:09.043Z" + }, + "author": { + "name": "Dr. Benton", + "url": "http://www.dr-benton.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/DrBenton/Node-DBI.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/node-dbi/0.2.0", + "0.3.0": "http://registry.npmjs.org/node-dbi/0.3.0", + "0.4.0": "http://registry.npmjs.org/node-dbi/0.4.0", + "0.4.1": "http://registry.npmjs.org/node-dbi/0.4.1", + "0.4.2": "http://registry.npmjs.org/node-dbi/0.4.2" + }, + "dist": { + "0.2.0": { + "shasum": "47b14cb0a30d7e764d54685c3f0315b1d6cd1fcf", + "tarball": "http://registry.npmjs.org/node-dbi/-/node-dbi-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "f38fdf62344d745d0694f19f477746c3017c9a34", + "tarball": "http://registry.npmjs.org/node-dbi/-/node-dbi-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "9be87882fd7caf18c9c03658edffdecbe24c9fc2", + "tarball": "http://registry.npmjs.org/node-dbi/-/node-dbi-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "2a2af44d6466775656045993884080b398643ddb", + "tarball": "http://registry.npmjs.org/node-dbi/-/node-dbi-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "b807a1b32aa2c3964f7d174b3b48493fb84e1658", + "tarball": "http://registry.npmjs.org/node-dbi/-/node-dbi-0.4.2.tgz" + } + }, + "keywords": [ + "database", + "SQL", + "abstraction", + "common", + "mysql", + "sqlite" + ], + "url": "http://registry.npmjs.org/node-dbi/" + }, + "node-dbus": { + "name": "node-dbus", + "description": "A minimal node based wrapper over libdbus", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "Node-DBus\n===============\n\nThe node-dbus project is a simple light-weight [NodeJS][] based wrapper over\nsome [libdbus][] api's which enables the developer to:\n\n* perform synchronous method-calls on a service provider\n* perform asynchronous method-calls on a service provider\n* send signals on the message bus\n* listen to signals propogated over the message bus\n\nNote that it is not intended to be a full-blown one-to-one mapping\nof the libdbus api. For that, you might want to look at [node-libdbus][]\nwhich is relatively concrete.\n\nNode-dbus provides a convinient Javascript object **DBusMessage**\nwhich is used to perform the afore-mentioned chores with some restrictions\nas mentioned under the relevant api description.\n\nIt has currently been tested only on the 32-bit [Ubuntu Lucid Lynx][LL] and\n64-bit [Fedora15][F15] GNOME releases and thus should be good for other distros too.\n\nLicense: BSD\n===============\n\nCopyright (c) 2011, Motorola Mobility, Inc\n\nAll Rights Reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n* Neither the name of Motorola Mobility nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\nDependencies:\n===============\n\nThe list of dependencies include:\n\n* [NodeJS][] - ofcourse (>= v0.5.1)\n\n* [libdbus][] - ofcourse\n\n `apt-get install libdbus-1-dev`\n\n or the equivalent for your distro.\n\n* [glib2.0][] - for the convinient data-structures\n\n `apt-get install libglib2.0-dev`\n\n or the equivalent for your distro.\n\nInstallation:\n===============\n\nIf the dependencies are met,\n\nif you have [NPM][] installed,\n\n npm install node-dbus\n\nif you have source and [NPM][], then from the main folder\n\n npm install .\n\notherwise from the main folder of source\n\n node-waf configure build install\n\nDBusMessage:\n===============\n\nA generic object which represents a:\n\n* synchronous method-call message\n* asynchronous method-call message\n* a dbus signal\n\nbased on the `type` property that has been set for it.\n\nFor signals and method-calls, it provides functions to append arguments to a\nmessage, clear the appended arguments and send the message based on other\nproperties that have been set as documented further. It additionally provides\nmechanism to listen to signals (only) which are sent over the message bus.\n\nIt is an instance of nodejs' [EventEmitter][].\n\nIt can be accessed as:\n\n var dbus = require('[path/to]node-dbus');\n\nand then inherit your object from `dbus.DBusMessage` as per your preference. For example:\n\n var msg = Object.create(dbus.DBusMessage, {...});\n\nProperties:\n---------------\n\n**type**: <Integer>\n\nIndicates the type of message that will be created while sending.\nDefaults to `DBUS_MESSAGE_TYPE_INVALID`.\n\nValid values include:\n\n- `DBUS_MESSAGE_TYPE_SIGNAL` \\- a signal to be sent over the message bus.\n- `DBUS_MESSAGE_TYPE_METHOD_CALL` \\- a synchronous method-call to be made to a service provider.\n- `DBUS_MESSAGE_TYPE_METHOD_RETURN` \\- an asynchronous method-call to be made to a service provider.\n\n This sounds a bit wierd since this value actually represents an asynch reply-message\n in [libdbus][] world, but i wanted to keep parity with libdbus constants.\n\n**bus**: <Integer>\n\nIndicates the type of message bus on which the message will be sent.\nDefaults to `DBUS_BUS_SYSTEM`. For using the session bus, set to `DBUS_BUS_SESSION`.\n\n**destination**: <String>\n\nName of the service provider that the message should be sent to.\n\nTypically used for method-calls and the filtering match-rule for signals to be listened.\n\nRefer the [D-Bus spec][] for conventions.\n\n**path**: <String>\n\nFor method-calls, it represents the object path the message should be sent to.\n\nWhereas for signals, it represents the path to the object emitting the signal.\n\nRefer the [D-Bus spec][] for conventions.\n\n**iface**: <String>\n\nFor method-calls, it is the service provider's interface to invoke the method on.\n\nFor signals, it indicates the interface the signal is emitted from.\n\nRefer the [D-Bus spec][] for conventions.\n\n**member**: <String>\n\nName of the signal to be sent or method to be invoked.\n\n**sender**: <String>\n\nIt is the unique bus name of the connection which originated the message.\n\nIn node-dbus, it is only used to construct the match-rule that is used to filter\nand listen to the signals that are passed over the message bus.\n\nRefer the [D-Bus spec][] for conventions.\n\n**timeout**: <Integer>\n\nUsed only for method calls. It is the timeout in milliseconds for which the method-call\nshall wait for receiving reply to the message.\n\nAn `error` event will be triggered on the message object if the method-call times-out.\n\nDefaults to -1 which indicates a sane default timeout to be used.\n\nMethods:\n--------------\n\n**appendArgs(<String> signature, <Any> arg1, [...])**:\n\nA DBus service provider may expect certain input arguments along with the method-call\nit has exposed. Or an application may want to attach information to a signal it sends over\nthe message bus for interested listeners. This function facilitates the process by\nattaching the information (input arguments) to the message before sending it.\n\nNote that internally, the actual appending of arguments to the message (both signals and method-calls)\nwill only happen during the `send()` method. Hence it is possible to `clearArgs()` and/or\nre-append arguments before `send()`.\n\nIt expects a data-type signature string as the first argument, which represents the\ntype of each input argument to the message payload, followed by valid input arguments\nfor the message in *EXACT* order of the types as mentioned in the signature.\n\nIf the signature is invalid or the order of input arguments does not match the signature,\nan `error` event shall be emitted on the message object indicating the error that occurred.\n\nFor details on how the signature string should look like, please refer to tbe [D-Bus spec][].\n\nExample:\n\n //If a method-call expects input arguments OR\n //a signal should be sent with arguments of type string and an integer\n msg.appendArgs('si', 'stringArg', 73);\n\nIt is important to note that dictionaries (`DBUS_TYPE_DICT_ENTRY`) are represented\nas javascript objects.\n\n //if the signature should contain a string followed by a\n //dict entry of string and variant types\n msg.appendArgs('sa{sv}',\n 'Artist',\n {name: 'Dave Mustaine', rating: 10, awesome: true});\n\nNOTE:\n\nAs of now, only the following list of primitive data types from the [D-Bus spec][]\nare supported for `appendArgs()` :\n\nboolean, int32, uint32, int64, double, signature, object\\_path, string,\narray, dict\\_entry (dictionary), and variant (of type int32, string or boolean)\n\n**clearArgs()**:\n\nClears any input arguments that were previously appended to the message.\n\nNOTE:\n\n- a call to `appenArgs()` with valid data will implicitly clear any previously appended args.\n- internally, the actual appending of input arguments happens during `send()`\n\n**send()**:\n\nSends the message which can either be a signal or a synch/asynch method-call\ndepending on the `type` specified, over the `bus`, taking into account the\nother appropriate properties that have been set on the message.\n\nIt will append input arguments (if any) to the message before sending.\n\nIf something goes wrong, an `error` event shall be emitted on the\nobject indicating the error occurred.\n\nFor method-calls, if a non-erroneous reply is received, the event `methodResponse`\nwill be emitted on the message object and any output arguments which are expected\nto be received from the method-call will be supplied along-with.\n\nRefer to description of `methodResponse` event for details.\n\nNOTE:\n\n- for method-calls, `destination`, `path` and `member` MUST be set\n- for signals, `path`, `iface` and `member` MUST be set\n\n**addMatch()**:\n\nUsed for listening to messages which are traveling on the message bus.\n\nIt is a wrapper over the [libdbus][] api [`dbus_bus_add_match()`][dbbus] with some restrictions\nfor performance and simplicity.\n\nRead the doc for [`dbus_bus_add_match()`][dbbus] carefully before proceeding further.\n\nIt is used for listening to signals only (atleast for now; patches are welcome).\nThe match-rule for filtering the messages on the specified `bus` will be constructed\ninternally by node-dbus based on the properties `iface`, `member`, `path`, `sender`\nand `destination` of the message object.\n\n- Properties `iface` and `member` MUST be set\n- whereas `path`, `sender` and `destination` are optional based on your filtering needs.\n- Filtering based on arguments is not supported (atleast for now; patches are welcome).\n\nWhen a match (filter) for a signal is successfully added, node-dbus shall hold a reference\nto the message object until it is `removeMatch()` 'ed.\n\nIf an error occurs, event `error` shall be emitted on the message object indicating the\nerror occured.\n\nWhen a signal that is being listened to is received on the message bus,event `signalReceipt`\nshall be emitted on the message object along with arguments (if any) that were extracted\nfrom the signal.\n\nA match (filter) for a particular signal based on a particular match-rule will be added only once.\nThat is, subsequent calls to this api for the same message object will do nothing, unless you\nchange the value of any one of the properties mentioned above.\n\nIt is recommended to create and manage separate message objects for different signals which\nare to be listened so that it is easier to track them individually when they are received.\n\n**removeMatch()**:\n\nStops listening to a signal, the match filter for which was added previously with `addMatch()`.\n\nThis will also remove the reference to the message object which node-dbus held during `addMatch()`.\nRefer to the description of `addMatch()` for details.\n\nIt is a wrapper over the [libdbus][] api [`dbus_bus_remove_match()`][dbbus].\n\n- Properties `iface` and `member` MUST be set\n\nCare should be taken to make sure that values of `iface`, `member`, `path`, `destination`\nand `sender` are exactly the same as they were specified when the match (filter) was added\nfor the message object. Otherwise, the match (filter) wont be removed and an `error` event\nwill be emitted on the message object.\n\n**closeConnection()**:\n\nDepending on the specified `bus` of the message object, this function shall\n\n- remove the message filter and all signal watchers over the bus\n- destroy the underlying dbus connection\n\nEach time a `send()` or `addMatch()` is called, node-dbus automagically sets up a shared\ndbus connection, adds a message filter on the bus and sets up internal data structures,\n*IF* it has not been done before. This function will clean up all of it.\n\nThis must be used wisely, keeping in mind the fact that underneath, the actual cleanup\nshall happen on the next iteration of the event loop (see nodejs' [process.nextTick][pnt]).\n\nThus if your code does:\n\n msg.closeConnection();\n //Following shall not throw an error,\n //but eventually the signal would not be listened to,\n //as the connection will close\n msg.addMatch();\n\nwhereas,\n\n msg.closeConnection();\n //Following shall work correctly,\n //but eventually the connection will close\n msg.send();\n\nAfter a connection has been closed, a call to `send()` or `addMatch()` on a subsequent\niteration of the event loop, shall automatically set it up again.\n\nNOTE:\n\nNode-dbus sets up one connection each for a session and the system bus depending on the `bus`\nof the message object. This connection is shared between all message objects that are created.\nThus a `closeConnection()` on any one object shall suffice, where if `bus` is `DBUS_BUS_SESSION`,\nit will close the session bus and `DBUS_BUS_SYSTEM` will close the system bus.\n\nEvents:\n---------------\n\n**methodResponse**:\n\nEmitted on the message object when a reply is received from either an asynch or sync method-call.\n\nIf the reply contains valid output arguments from the method call, then these arguments will\nbe supplied to the listener. Thus, the signature of the listener depends on the order in which\nthe output arguments are expected from the method-call's reply. Or if you are unsure,\nthen you just access them via the standard `arguments` javascript object.\n\n**signalReceipt**:\n\nEmitted on the message object when a signal is received on the message bus, which was\nfiltered via the `addMatch()` call.\n\nIf the signal contains valid data arguments, then those will be supplied to the listener.\nThus, the signature of the listener depends on the order in which the data arguments are\nexpected from the signal. Or if you are unsure, then you just access them via the\nstandard `arguments` javascript object.\n\n**NOTE**:\n\nAs of now, for both `methodResponse` and `signalReceipt`, only the following list of\nprimitive data types from the [D-Bus spec][] will be extracted as arguments and\nsupplied to listener:\n\nboolean, byte (uint8), uint16, uint32, uint64, int16, int32, int64, double,\nsignature, object\\_path, string, struct, array, dict\\_entry (dictionary)\nand variant (which wraps one of the previous types)\n\n*Some of the uncommon types like byte have NOT yet been tested and hence good luck!*\n\n**error**:\n\nThe error event is emitted when something goes wrong during any of the operations\non the message object.\n\nIt may have been trigerred due to something as trivial as an invalid property\nthat was set on the object or an error response received from the daemon.\n\nAn error object shall be received in the listener which maps closely to the\nDBusError format of the [libdbus][] world, where-in the object shall contain\n\n- `name` <String>, which represents the error name as defined under\n the dbus protocol contants in libdbus. For example: `DBUS_ERROR_FAILED`\n- `message` <String>, which describes the error in detail.\n\nCONSTANTS:\n---------------\n\nThe following list of constants are available for use and are directly exported from [libdbus][].\nThey can be accessed as properties on the exported object from dbus.js\n\n var dbus = require('[path/to]dbus');\n\nFor property `bus` of the message object,\n\n- `dbus.DBUS_BUS_SESSION` = 0\n - Indicates use of the session bus.\n- `dbus.DBUS_BUS_SYSTEM` = 1\n - Indicates use of the system bus. It is the default value.\n\nFor property `type` of the message object,\n\n- `dbus.DBUS_MESSAGE_TYPE_INVALID` = 0\n - Represents an invalid message. It is the default value.\n- `dbus.DBUS_MESSAGE_TYPE_METHOD_CALL` = 1\n - Indicates a synchronous method-call is intended.\n- `dbus.DBUS_MESSAGE_TYPE_METHOD_RETURN` = 2\n - Indicates an asynchronous method-call is intended.\n- `dbus.DBUS_MESSAGE_TYPE_ERROR` = 3\n - Currently un-used. Dont use it.\n- `dbus.DBUS_MESSAGE_TYPE_SIGNAL` = 4\n - Indicates that a signal is intended to be sent or listened.\n\nAdditionally,\n\n- `dbus.DBUS_SERVICE_DBUS` = 'org.freedesktop.DBus'\n- `dbus.DBUS_PATH_DBUS` = '/org/freedesktop/DBus'\n- `dbus.DBUS_PATH_LOCAL` = '/org/freedesktop/DBus/Local'\n- `dbus.DBUS_INTERFACE_DBUS` = 'org.freedesktop.DBus'\n- `dbus.DBUS_INTERFACE_LOCAL` = 'org.freedesktop.DBus.Local'\n- `dbus.DBUS_INTERFACE_INTROSPECTABLE` = 'org.freedesktop.DBus.Introspectable'\n- `dbus.DBUS_INTERFACE_PROPERTIES` = 'org.freedesktop.DBus.Properties'\n- `dbus.DBUS_INTERFACE_PEER` = 'org.freedesktop.DBus.Peer'\n\nand error `name` 's,\n\n- `dbus.DBUS_ERROR_FAILED` = 'org.freedesktop.DBus.Error.Failed'\n- `dbus.DBUS_ERROR_NO_MEMORY` = 'org.freedesktop.DBus.Error.NoMemory'\n- `dbus.DBUS_ERROR_SERVICE_UNKNOWN` = 'org.freedesktop.DBus.Error.ServiceUnknown'\n- `dbus.DBUS_ERROR_NAME_HAS_NO_OWNER` = 'org.freedesktop.DBus.Error.NameHasNoOwner'\n- `dbus.DBUS_ERROR_NO_REPLY` = 'org.freedesktop.DBus.Error.NoReply'\n- `dbus.DBUS_ERROR_IO_ERROR` = 'org.freedesktop.DBus.Error.IOError'\n- `dbus.DBUS_ERROR_BAD_ADDRESS` = 'org.freedesktop.DBus.Error.BadAddress'\n- `dbus.DBUS_ERROR_NOT_SUPPORTED` = 'org.freedesktop.DBus.Error.NotSupported'\n- `dbus.DBUS_ERROR_LIMITS_EXCEEDED` = 'org.freedesktop.DBus.Error.LimitsExceeded'\n- `dbus.DBUS_ERROR_ACCESS_DENIED` = 'org.freedesktop.DBus.Error.AccessDenied'\n- `dbus.DBUS_ERROR_AUTH_FAILED` = 'org.freedesktop.DBus.Error.AuthFailed'\n- `dbus.DBUS_ERROR_NO_SERVER` = 'org.freedesktop.DBus.Error.NoServer'\n- `dbus.DBUS_ERROR_TIMEOUT` = 'org.freedesktop.DBus.Error.Timeout'\n- `dbus.DBUS_ERROR_NO_NETWORK` = 'org.freedesktop.DBus.Error.NoNetwork'\n- `dbus.DBUS_ERROR_ADDRESS_IN_USE` = 'org.freedesktop.DBus.Error.AddressInUse'\n- `dbus.DBUS_ERROR_DISCONNECTED` = 'org.freedesktop.DBus.Error.Disconnected'\n- `dbus.DBUS_ERROR_INVALID_ARGS` = 'org.freedesktop.DBus.Error.InvalidArgs'\n- `dbus.DBUS_ERROR_FILE_NOT_FOUND` = 'org.freedesktop.DBus.Error.FileNotFound'\n- `dbus.DBUS_ERROR_FILE_EXISTS` = 'org.freedesktop.DBus.Error.FileExists'\n- `dbus.DBUS_ERROR_UNKNOWN_METHOD` = 'org.freedesktop.DBus.Error.UnknownMethod'\n- `dbus.DBUS_ERROR_TIMED_OUT` = 'org.freedesktop.DBus.Error.TimedOut'\n- `dbus.DBUS_ERROR_MATCH_RULE_NOT_FOUND` = 'org.freedesktop.DBus.Error.MatchRuleNotFound'\n- `dbus.DBUS_ERROR_MATCH_RULE_INVALID` = 'org.freedesktop.DBus.Error.MatchRuleInvalid'\n- `dbus.DBUS_ERROR_SPAWN_EXEC_FAILED` = 'org.freedesktop.DBus.Error.Spawn.ExecFailed'\n- `dbus.DBUS_ERROR_SPAWN_FORK_FAILED` = 'org.freedesktop.DBus.Error.Spawn.ForkFailed'\n- `dbus.DBUS_ERROR_SPAWN_CHILD_EXITED` = 'org.freedesktop.DBus.Error.Spawn.ChildExited'\n- `dbus.DBUS_ERROR_SPAWN_CHILD_SIGNALED` = 'org.freedesktop.DBus.Error.Spawn.ChildSignaled'\n- `dbus.DBUS_ERROR_SPAWN_FAILED` = 'org.freedesktop.DBus.Error.Spawn.Failed'\n- `dbus.DBUS_ERROR_SPAWN_SETUP_FAILED` = 'org.freedesktop.DBus.Error.Spawn.FailedToSetup'\n- `dbus.DBUS_ERROR_SPAWN_CONFIG_INVALID` = 'org.freedesktop.DBus.Error.Spawn.ConfigInvalid'\n- `dbus.DBUS_ERROR_SPAWN_SERVICE_INVALID` = 'org.freedesktop.DBus.Error.Spawn.ServiceNotValid'\n- `dbus.DBUS_ERROR_SPAWN_SERVICE_NOT_FOUND` = 'org.freedesktop.DBus.Error.Spawn.ServiceNotFound'\n- `dbus.DBUS_ERROR_SPAWN_PERMISSIONS_INVALID` = 'org.freedesktop.DBus.Error.Spawn.PermissionsInvalid'\n- `dbus.DBUS_ERROR_SPAWN_FILE_INVALID` = 'org.freedesktop.DBus.Error.Spawn.FileInvalid'\n- `dbus.DBUS_ERROR_SPAWN_NO_MEMORY` = 'org.freedesktop.DBus.Error.Spawn.NoMemory'\n- `dbus.DBUS_ERROR_UNIX_PROCESS_ID_UNKNOWN` = 'org.freedesktop.DBus.Error.UnixProcessIdUnknown'\n- `dbus.DBUS_ERROR_INVALID_SIGNATURE` = 'org.freedesktop.DBus.Error.InvalidSignature'\n- `dbus.DBUS_ERROR_INVALID_FILE_CONTENT` = 'org.freedesktop.DBus.Error.InvalidFileContent'\n- `dbus.DBUS_ERROR_SELINUX_SECURITY_CONTEXT_UNKNOWN` = 'org.freedesktop.DBus.Error.SELinuxSecurityContextUnknown'\n- `dbus.DBUS_ERROR_ADT_AUDIT_DATA_UNKNOWN` = 'org.freedesktop.DBus.Error.AdtAuditDataUnknown'\n- `dbus.DBUS_ERROR_OBJECT_PATH_IN_USE` = 'org.freedesktop.DBus.Error.ObjectPathInUse'\n\n[NodeJS]: http://nodejs.org/\n[libdbus]: http://dbus.freedesktop.org/doc/api/html/index.html\n[node-libdbus]: https://github.com/agnat/node_libdbus\n[LL]: http://releases.ubuntu.com/lucid/\n[F15]: http://fedoraproject.org/en/get-fedora-options\n[glib2.0]: http://developer.gnome.org/glib/\n[NPM]: http://npmjs.org/\n[EventEmitter]: http://nodejs.org/docs/v0.4.7/api/events.html\n[D-Bus spec]: http://dbus.freedesktop.org/doc/dbus-specification.html\n[dbbus]: http://dbus.freedesktop.org/doc/api/html/group__DBusBus.html\n[pnt]: http://nodejs.org/docs/latest/api/process.html#process.nextTick\n", + "maintainers": [ + { + "name": "pierrefrisch", + "email": "pierre.frisch@motorola.com" + } + ], + "time": { + "modified": "2011-12-06T23:32:58.614Z", + "created": "2011-12-06T23:32:56.866Z", + "0.1.0": "2011-12-06T23:32:58.614Z" + }, + "author": { + "name": "Motorola Mobility, Inc." + }, + "repository": { + "type": "git", + "url": "git://github.com/Motorola-Mobility/node-dbus.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/node-dbus/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "c41286e889f46a9ee3632e78e1f7843da467103f", + "tarball": "http://registry.npmjs.org/node-dbus/-/node-dbus-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/node-dbus/" + }, + "node-debug-proxy": { + "name": "node-debug-proxy", + "description": "The almighty storage router", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "fsvehla", + "email": "f.svehla@gmail.com" + } + ], + "time": { + "modified": "2011-08-28T20:45:50.982Z", + "created": "2011-08-28T18:46:41.084Z", + "0.1.0": "2011-08-28T18:46:42.968Z", + "0.1.1": "2011-08-28T18:56:12.667Z", + "0.1.2": "2011-08-28T19:06:47.508Z", + "0.1.3": "2011-08-28T20:45:50.982Z" + }, + "author": { + "name": "Ferdinand Svehla", + "email": "f.svehla@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/node-debug-proxy/0.1.0", + "0.1.1": "http://registry.npmjs.org/node-debug-proxy/0.1.1", + "0.1.2": "http://registry.npmjs.org/node-debug-proxy/0.1.2", + "0.1.3": "http://registry.npmjs.org/node-debug-proxy/0.1.3" + }, + "dist": { + "0.1.0": { + "shasum": "1ca3d1e12fcb3243e1986864daa36b25f7565d6b", + "tarball": "http://registry.npmjs.org/node-debug-proxy/-/node-debug-proxy-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "2d5471492002dbdfc6fd113803b7cf426e7a05aa", + "tarball": "http://registry.npmjs.org/node-debug-proxy/-/node-debug-proxy-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "86e3ed22e7b08e9388ce6b0a7403912b476ff359", + "tarball": "http://registry.npmjs.org/node-debug-proxy/-/node-debug-proxy-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "41f93f2ddf17ebc1ed2bfe0c2ab716206fcd9ae8", + "tarball": "http://registry.npmjs.org/node-debug-proxy/-/node-debug-proxy-0.1.3.tgz" + } + }, + "keywords": [ + "tcp", + "proxy", + "debug" + ], + "url": "http://registry.npmjs.org/node-debug-proxy/" + }, + "node-dep": { + "name": "node-dep", + "description": "Dependency analyzer", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "contra", + "email": "contra@australia.edu" + } + ], + "time": { + "modified": "2011-10-04T03:33:43.817Z", + "created": "2011-09-21T16:32:06.001Z", + "0.0.1": "2011-09-21T16:32:07.295Z", + "0.0.2": "2011-09-21T17:07:18.871Z", + "0.0.3": "2011-09-21T17:30:14.639Z", + "0.0.4": "2011-09-27T05:47:59.357Z", + "0.0.5": "2011-10-04T03:33:43.817Z" + }, + "author": { + "name": "Fractal", + "email": "contact@wearefractal.com", + "url": "http://wearefractal.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/wearefractal/node-dep.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-dep/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-dep/0.0.2", + "0.0.3": "http://registry.npmjs.org/node-dep/0.0.3", + "0.0.4": "http://registry.npmjs.org/node-dep/0.0.4", + "0.0.5": "http://registry.npmjs.org/node-dep/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "cdddbbcf0b75b83a42cee03ef8fae9e07e2b4486", + "tarball": "http://registry.npmjs.org/node-dep/-/node-dep-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "d074b4d1dd5956206ca8e863942b3d013e41c7d3", + "tarball": "http://registry.npmjs.org/node-dep/-/node-dep-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "ccecd52d6e56702b777a19b7420fa780db57c068", + "tarball": "http://registry.npmjs.org/node-dep/-/node-dep-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "0a1d14d060be29386cd743f9ef6bf3b715ecbdcb", + "tarball": "http://registry.npmjs.org/node-dep/-/node-dep-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "1598fe51b0f4a81b87bf9e2da08e16709300eccb", + "tarball": "http://registry.npmjs.org/node-dep/-/node-dep-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/node-dep/" + }, + "node-deployer": { + "name": "node-deployer", + "description": "Node.js deployment tool, inspired by Ruby's Capistrano.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "plainprogrammer", + "email": "james@plainprograms.com" + } + ], + "time": { + "modified": "2011-10-13T16:42:36.999Z", + "created": "2011-10-13T16:42:36.610Z", + "0.0.1": "2011-10-13T16:42:36.999Z" + }, + "author": { + "name": "James Thompson", + "email": "james@plainprograms.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/plainprogrammer/node-deployer.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-deployer/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "f5f4849c718b962eb806ae38e650ce10c360e979", + "tarball": "http://registry.npmjs.org/node-deployer/-/node-deployer-0.0.1.tgz" + } + }, + "keywords": [ + "deployment", + "deploy", + "capistrano" + ], + "url": "http://registry.npmjs.org/node-deployer/" + }, + "node-dev": { + "name": "node-dev", + "description": "Node.js supervisor with desktop notifications", + "dist-tags": { + "latest": "0.1.9" + }, + "maintainers": [ + { + "name": "fgnass", + "email": "fgnass@gmail.com" + } + ], + "author": { + "name": "Felix Gnass", + "email": "felix.gnass@neteye.de", + "url": "http://fgnass.posterous.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/fgnass/node-dev.git" + }, + "time": { + "modified": "2011-08-29T09:03:27.061Z", + "created": "2010-12-21T09:07:51.934Z", + "0.0.1": "2010-12-21T09:07:51.934Z", + "0.0.2": "2010-12-21T09:07:51.934Z", + "0.0.3": "2010-12-21T09:07:51.934Z", + "0.0.4": "2010-12-21T09:07:51.934Z", + "0.0.5": "2010-12-21T09:07:51.934Z", + "0.0.6": "2011-03-01T07:27:25.568Z", + "0.1.1": "2011-04-05T12:39:32.430Z", + "0.1.2": "2011-04-06T12:08:31.146Z", + "0.1.3": "2011-04-06T15:07:47.035Z", + "0.1.4": "2011-04-27T10:35:11.768Z", + "0.1.5": "2011-05-06T11:33:30.220Z", + "0.1.6": "2011-05-13T08:31:58.985Z", + "0.1.8": "2011-07-11T16:16:26.298Z", + "0.1.9": "2011-08-29T09:03:27.061Z" + }, + "versions": { + "0.1.3": "http://registry.npmjs.org/node-dev/0.1.3", + "0.1.4": "http://registry.npmjs.org/node-dev/0.1.4", + "0.1.5": "http://registry.npmjs.org/node-dev/0.1.5", + "0.1.6": "http://registry.npmjs.org/node-dev/0.1.6", + "0.1.8": "http://registry.npmjs.org/node-dev/0.1.8", + "0.1.9": "http://registry.npmjs.org/node-dev/0.1.9" + }, + "dist": { + "0.1.3": { + "shasum": "ab188566662bee926f6bfa1c96a2a69472c52e92", + "tarball": "http://registry.npmjs.org/node-dev/-/node-dev-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "eeaa4c191ccc07795affe07aae7e32550986c102", + "tarball": "http://registry.npmjs.org/node-dev/-/node-dev-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "4a9596081407cfc26a97297345fa8053a22db6ff", + "tarball": "http://registry.npmjs.org/node-dev/-/node-dev-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "50fdcd49b4cae1d811f7d506c44b67ae2bf0bd64", + "tarball": "http://registry.npmjs.org/node-dev/-/node-dev-0.1.6.tgz" + }, + "0.1.8": { + "shasum": "d707c0c6c1ce6409ed426ee1fac12e118a4a6678", + "tarball": "http://registry.npmjs.org/node-dev/-/node-dev-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "1fd90f255e155a428a6c1edc4540f69a53bb65ee", + "tarball": "http://registry.npmjs.org/node-dev/-/node-dev-0.1.9.tgz" + } + }, + "keywords": [ + "supervisor", + "restart", + "reload", + "auto-reload" + ], + "url": "http://registry.npmjs.org/node-dev/" + }, + "node-directededge": { + "name": "node-directededge", + "description": "A DirectedEdge Node.js Client", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "# node-directededge\n\nA client implementation of Directed Edge's REST API in Node.js. \n\n## What is Directed Edge?\nDirected Edge (http://directededge.com) helps you find related stuff.\n\nIt's a recommendations engine that plugs into your site to deliver Amazon-like recommendations. You can show your users personalized recommendations and similar content or products based on data you're already collecting.\n\n## Installation\n\n### Installing node-directededge\n``` bash\n $ npm install node-directedge\n```\n\n## Examples\n\n### Example 1\n\n#### Get 5 new recommended interests for a user\n\n``` javascript\n var de = new DirectedEdge('username', 'password');\n\n var params = {\n \texcludeLinked: true,\n \tmaxResults: 5,\n \ttags: 'interest'\n }\n\n de.getRecommended('user1', params, function(err, data, res) {\n \tconsole.log(data);\n });\n\n // Outputs:\n // {\"@\":{\"version\":\"0.1\"},\"item\":{\"@\":{\"id\":\"user1\"},\"count\":\"5\",\n // \"recommended\":[\"interest2014\",\"interest2098\",\"interest1989\",\"interest1932\",\"interest1977\"]}}\n```\n\n### Example 2\n\n#### Update an item\n\n``` javascript\n var de = new DirectedEdge('username', 'password');\n\n // Params for puts are object literals with arrays, and\n // in the case of weighted_links, nested arrays\n var params = {\n links: ['interest1', 'interest2'], // Creates links\n weighted_links: [ ['interest3', 10], ['interest4', 0] ], // Creates links with weights\n \ttags: ['user'] // Creates tags\n }\n\n de.putItem('user1', 'add', params, function(err, data, res) {\n \t// Updates the item\n });\n```\n\n### Example 3\n\n#### Remove from an item\n\n``` javascript\n var de = new DirectedEdge('username', 'password');\n\n // We'll remove the links and tags created in Example 2\n var params = {\n links: ['interest1', 'interest2'], // Creates links\n weighted_links: [ ['interest3', 10], ['interest4', 0] ], // Creates links with weights\n \ttags: ['user'] // Creates tags\n }\n\n de.putItem('user1', 'remove', params, function(err, data, res) {\n \t// Removes from the item\n });\n```\n\n### Example 4\n\n#### Overwrite an item\n\n``` javascript\n var de = new DirectedEdge('username', 'password');\n\n // We'll remove the links and tags created in Example 2\n var params = {\n links: ['interest5', 'interest6'] // Creates links\n }\n\n de.putItem('user1', 'overwrite', params, function(err, data, res) {\n \t// Overwrites the item by passing in the overwrite method\n });\n```\n\n### Example 5\n\n#### Delete a resource\n``` javascript\n var de = new DirectedEdge('username', 'password');\n\n de.deleteItem('user1', function(err, data, res) {\n // This deletes user1 from DE\n });\n```", + "maintainers": [ + { + "name": "joshsmith", + "email": "joshdotsmith@gmail.com" + } + ], + "time": { + "modified": "2011-11-28T17:44:28.938Z", + "created": "2011-11-28T17:44:28.260Z", + "0.1.0": "2011-11-28T17:44:28.938Z" + }, + "author": { + "name": "Josh Smith", + "email": "joshdotsmith@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/JoshSmith/node-directededge.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/node-directededge/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "240e2fdefc40b49e885babe08508dd1b1973a03d", + "tarball": "http://registry.npmjs.org/node-directededge/-/node-directededge-0.1.0.tgz" + } + }, + "keywords": [ + "directededge", + "recommendations" + ], + "url": "http://registry.npmjs.org/node-directededge/" + }, + "node-discover": { + "name": "node-discover", + "description": "Automatically discover your nodejs instances with built-in support for automatic single master and capability advertising.", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "wankdanker", + "email": "dverweire@gmail.com" + } + ], + "time": { + "modified": "2011-10-05T22:34:00.918Z", + "created": "2011-09-29T20:20:24.172Z", + "0.0.1": "2011-09-29T20:20:24.746Z", + "0.0.2": "2011-09-29T20:29:39.422Z", + "0.0.3": "2011-09-29T23:32:36.235Z", + "0.0.4": "2011-09-30T22:05:26.909Z", + "0.0.5": "2011-10-03T18:14:35.724Z", + "0.0.6": "2011-10-05T22:34:00.918Z" + }, + "author": { + "name": "Dan VerWeire" + }, + "repository": { + "type": "git", + "url": "git://github.com/wankdanker/node-discover.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-discover/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-discover/0.0.2", + "0.0.3": "http://registry.npmjs.org/node-discover/0.0.3", + "0.0.4": "http://registry.npmjs.org/node-discover/0.0.4", + "0.0.5": "http://registry.npmjs.org/node-discover/0.0.5", + "0.0.6": "http://registry.npmjs.org/node-discover/0.0.6" + }, + "dist": { + "0.0.1": { + "shasum": "5850d4ccf89736965f756a0bc8fd7ace985cf34c", + "tarball": "http://registry.npmjs.org/node-discover/-/node-discover-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "98bbe8aae149c207f6a23d3670962c6e14860fe8", + "tarball": "http://registry.npmjs.org/node-discover/-/node-discover-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "86a5aec96b23ca343d6e47a092461da0e60585b2", + "tarball": "http://registry.npmjs.org/node-discover/-/node-discover-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "28c31d5f7e10aa3c592a0ee901224f053d1c8026", + "tarball": "http://registry.npmjs.org/node-discover/-/node-discover-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "c6cdeb47245ab65ea7a14cfad7d52711d9e06cdb", + "tarball": "http://registry.npmjs.org/node-discover/-/node-discover-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "d3bc10e252d5cdc3ffb7948bd07626a532cd7fd1", + "tarball": "http://registry.npmjs.org/node-discover/-/node-discover-0.0.6.tgz" + } + }, + "url": "http://registry.npmjs.org/node-discover/" + }, + "node-downloader": { + "name": "node-downloader", + "description": "A simple downloader using all the power from wget", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "rabc", + "email": "ricardo.abc@gmail.com" + } + ], + "time": { + "modified": "2011-01-15T20:43:56.757Z", + "created": "2011-01-15T20:43:55.927Z", + "0.0.1": "2011-01-15T20:43:56.757Z" + }, + "author": { + "name": "Ricardo Borelli", + "email": "rabc@oliive.com.br" + }, + "repository": { + "type": "git", + "url": "http://github.com/rabc/node-downloader.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-downloader/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "2ffe476a7dc30c6485b996105465e4a0ba3336b3", + "tarball": "http://registry.npmjs.org/node-downloader/-/node-downloader-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/node-downloader/" + }, + "node-evented": { + "name": "node-evented", + "description": "Extended version EventEmitter", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "fedor.indutny", + "email": "fedor.indutny@gmail.com" + } + ], + "author": { + "name": "Fedor Indutny", + "email": "fedor.indutny@gmail.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/donnerjack13589/node-evented.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/node-evented/0.1.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/node-evented/-/node-evented-0.1.0.tgz" + } + }, + "keywords": [ + "EventEmitter", + "Event" + ], + "url": "http://registry.npmjs.org/node-evented/" + }, + "node-exception-notifier": { + "name": "node-exception-notifier", + "description": "Sends out an email to the given recipient with information about an uncaught exception.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "saschagehlich", + "email": "sascha@gehlich.us" + } + ], + "time": { + "modified": "2011-01-23T14:23:22.756Z", + "created": "2011-01-23T14:23:22.336Z", + "0.0.1": "2011-01-23T14:23:22.756Z" + }, + "author": { + "name": "Sascha Gehlich", + "email": "contact@filshmedia.net", + "url": "http://www.filshmedia.net" + }, + "repository": { + "type": "git", + "url": "http://github.com/saschagehlich/node-exception-notifier" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-exception-notifier/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "4d00954243c19c855597a20aa096490c2a880046", + "tarball": "http://registry.npmjs.org/node-exception-notifier/-/node-exception-notifier-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/node-exception-notifier/" + }, + "node-expat": { + "name": "node-expat", + "description": "NodeJS binding for fast XML parsing.", + "dist-tags": { + "latest": "1.4.1" + }, + "maintainers": [ + { + "name": "astro", + "email": "astro@spaceboyz.net" + } + ], + "time": { + "modified": "2011-11-17T23:56:21.287Z", + "created": "2011-03-31T08:05:30.382Z", + "0.0.4": "2011-03-31T08:05:30.382Z", + "0.0.5": "2011-03-31T08:05:30.382Z", + "0.0.6": "2011-03-31T08:05:30.382Z", + "1.0.0": "2011-03-31T08:05:30.382Z", + "1.0.1": "2011-03-31T08:05:30.382Z", + "1.1.0": "2011-03-31T08:05:30.382Z", + "1.1.1": "2011-03-31T08:05:30.382Z", + "1.2.0": "2011-03-31T08:05:30.382Z", + "1.3.0": "2011-04-08T19:26:39.807Z", + "1.3.1": "2011-06-09T22:49:48.908Z", + "1.3.2": "2011-06-14T00:35:43.693Z", + "1.4.0": "2011-08-16T12:14:48.749Z", + "1.4.1": "2011-11-17T23:56:21.287Z" + }, + "users": { + "astro": true + }, + "versions": { + "0.0.4": "http://registry.npmjs.org/node-expat/0.0.4", + "0.0.5": "http://registry.npmjs.org/node-expat/0.0.5", + "0.0.6": "http://registry.npmjs.org/node-expat/0.0.6", + "1.0.0": "http://registry.npmjs.org/node-expat/1.0.0", + "1.0.1": "http://registry.npmjs.org/node-expat/1.0.1", + "1.1.0": "http://registry.npmjs.org/node-expat/1.1.0", + "1.1.1": "http://registry.npmjs.org/node-expat/1.1.1", + "1.2.0": "http://registry.npmjs.org/node-expat/1.2.0", + "1.3.0": "http://registry.npmjs.org/node-expat/1.3.0", + "1.3.1": "http://registry.npmjs.org/node-expat/1.3.1", + "1.3.2": "http://registry.npmjs.org/node-expat/1.3.2", + "1.4.0": "http://registry.npmjs.org/node-expat/1.4.0", + "1.4.1": "http://registry.npmjs.org/node-expat/1.4.1" + }, + "dist": { + "0.0.4": { + "tarball": "http://packages:5984/node-expat/-/node-expat-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://packages:5984/node-expat/-/node-expat-0.0.5.tgz" + }, + "0.0.6": { + "tarball": "http://packages:5984/node-expat/-/node-expat-0.0.6.tgz" + }, + "1.0.0": { + "tarball": "http://packages:5984/node-expat/-/node-expat-1.0.0.tgz" + }, + "1.0.1": { + "tarball": "http://packages:5984/node-expat/-/node-expat-1.0.1.tgz" + }, + "1.1.0": { + "tarball": "http://packages:5984/node-expat/-/node-expat-1.1.0.tgz" + }, + "1.1.1": { + "tarball": "http://registry.npmjs.org/node-expat/-/node-expat-1.1.1.tgz" + }, + "1.2.0": { + "tarball": "http://registry.npmjs.org/node-expat/-/node-expat@1.2.0.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "61edd658adcb790fdab215d9d3e2b170b88fe55e", + "tarball": "http://registry.npmjs.org/node-expat/-/node-expat-1.2.0-0.4-sunos-5.11.tgz" + } + } + }, + "1.3.0": { + "shasum": "2f695258b5ed47ff0fcc277bbaf85e6566c686a0", + "tarball": "http://registry.npmjs.org/node-expat/-/node-expat-1.3.0.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "aee752d030e7425a524598add0527fe9c29f44b7", + "tarball": "http://registry.npmjs.org/node-expat/-/node-expat-1.3.0-0.4-sunos-5.11.tgz" + } + } + }, + "1.3.1": { + "shasum": "ba34f43dbbec22550c7546b36dcecf916bb8ee21", + "tarball": "http://registry.npmjs.org/node-expat/-/node-expat-1.3.1.tgz" + }, + "1.3.2": { + "shasum": "f88e9c0777c358c9de2e4bd1758ae6785bd60caa", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38.4": { + "shasum": "fbc79a639a3ead05467b5635767b62f4fec5a37e", + "tarball": "http://registry.npmjs.org/node-expat/-/node-expat-1.3.2-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38.4.tgz" + } + }, + "tarball": "http://registry.npmjs.org/node-expat/-/node-expat-1.3.2.tgz" + }, + "1.4.0": { + "shasum": "d2daa2e27c0b347b672c099591be3312df820195", + "tarball": "http://registry.npmjs.org/node-expat/-/node-expat-1.4.0.tgz" + }, + "1.4.1": { + "shasum": "dd94743c822f7c8cfa0fe07e596850ed401fdc96", + "tarball": "http://registry.npmjs.org/node-expat/-/node-expat-1.4.1.tgz" + } + }, + "url": "http://registry.npmjs.org/node-expat/" + }, + "node-expect": { + "name": "node-expect", + "description": "Library of IP functions for IP address manipulation", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "trakkasure", + "email": "trakkasure@gmail.com" + } + ], + "time": { + "modified": "2011-06-21T06:16:27.153Z", + "created": "2011-06-15T19:40:28.210Z", + "0.1.0": "2011-06-15T19:40:28.501Z", + "0.9.0": "2011-06-21T06:02:56.556Z" + }, + "author": { + "name": "Brandon Myers", + "email": "trakkasure@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/trakkasure/node-ip-lib.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/node-expect/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "d5d4d6fcd40a1ec81bd55ef56247329a6eb43f09", + "tarball": "http://registry.npmjs.org/node-expect/-/node-expect-0.1.0.tgz" + } + }, + "keywords": [ + "expect", + "parser", + "stream", + "buffer" + ], + "url": "http://registry.npmjs.org/node-expect/" + }, + "node-express-boilerplate": { + "name": "node-express-boilerplate", + "description": "A boilerplate used to quickly get minor projects going. With less configuration.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "lakshmikaantan", + "email": "lakshmikaantan@gmail.com" + } + ], + "time": { + "modified": "2011-05-06T15:51:04.266Z", + "created": "2011-05-06T15:51:02.842Z", + "0.0.1": "2011-05-06T15:51:04.266Z" + }, + "author": { + "name": "Mathias Pettersson", + "email": "mape@mape.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/mape/node-express-boilerplate.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-express-boilerplate/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "b40b0bef22bd7c85d7882422a1ee41fcd1af4dde", + "tarball": "http://registry.npmjs.org/node-express-boilerplate/-/node-express-boilerplate-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/node-express-boilerplate/" + }, + "node-extjs": { + "name": "node-extjs", + "description": "ExtJS module for Node", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "storminwalker", + "email": "craig.walker@me.com" + } + ], + "time": { + "modified": "2011-12-02T19:25:13.278Z", + "created": "2011-06-24T02:20:31.456Z", + "0.0.1": "2011-06-24T02:20:32.567Z", + "0.0.3": "2011-07-07T05:31:21.803Z", + "0.0.4": "2011-09-23T00:31:38.730Z", + "0.0.5": "2011-09-26T21:25:54.513Z", + "0.1.1": "2011-09-26T23:30:44.319Z", + "0.1.2": "2011-10-21T15:11:26.322Z", + "1.0.0": "2011-12-02T18:52:05.518Z", + "1.0.1": "2011-12-02T19:25:13.278Z" + }, + "author": { + "name": "Craig Walker", + "email": "craig.walker@me.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/storminwalker/node-extjs.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-extjs/0.0.1", + "0.0.3": "http://registry.npmjs.org/node-extjs/0.0.3", + "0.0.4": "http://registry.npmjs.org/node-extjs/0.0.4", + "0.0.5": "http://registry.npmjs.org/node-extjs/0.0.5", + "0.1.1": "http://registry.npmjs.org/node-extjs/0.1.1", + "0.1.2": "http://registry.npmjs.org/node-extjs/0.1.2", + "1.0.0": "http://registry.npmjs.org/node-extjs/1.0.0", + "1.0.1": "http://registry.npmjs.org/node-extjs/1.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "522ed763b85606f362501ccc147a6e3e14099732", + "tarball": "http://registry.npmjs.org/node-extjs/-/node-extjs-0.0.1.tgz" + }, + "0.0.3": { + "shasum": "794d2a2c4e9f828b42c28dae3e1665a2ec4def5a", + "tarball": "http://registry.npmjs.org/node-extjs/-/node-extjs-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "2a93fec1f7cdc14a240be2669c5c910ae85dec49", + "tarball": "http://registry.npmjs.org/node-extjs/-/node-extjs-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "ea250f20a887a8a031ac68596a59e2d886979f16", + "tarball": "http://registry.npmjs.org/node-extjs/-/node-extjs-0.0.5.tgz" + }, + "0.1.1": { + "shasum": "ff3c5b939464bb6313f79e53d6d7068bf20d46b4", + "tarball": "http://registry.npmjs.org/node-extjs/-/node-extjs-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "60db28212ec17ae4c87476594aea8325385f9652", + "tarball": "http://registry.npmjs.org/node-extjs/-/node-extjs-0.1.2.tgz" + }, + "1.0.0": { + "shasum": "d230e4b9a0e810d9fa7f73321b34d112a811a725", + "tarball": "http://registry.npmjs.org/node-extjs/-/node-extjs-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "e27e19af2a60e2699c4a26f311792dbc2781071e", + "tarball": "http://registry.npmjs.org/node-extjs/-/node-extjs-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/node-extjs/" + }, + "node-extjs-express": { + "name": "node-extjs-express", + "description": "ExtJS module for Node and ExpressJS", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "storminwalker", + "email": "craig.walker@me.com" + } + ], + "time": { + "modified": "2011-10-22T17:57:46.884Z", + "created": "2011-10-22T17:57:46.449Z", + "0.1.1": "2011-10-22T17:57:46.884Z" + }, + "author": { + "name": "Craig Walker", + "email": "craig.walker@me.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/storminwalker/node-extjs-express.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/node-extjs-express/0.1.1" + }, + "dist": { + "0.1.1": { + "shasum": "032635eb5013936bee0e62355aeddca22829e3ed", + "tarball": "http://registry.npmjs.org/node-extjs-express/-/node-extjs-express-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/node-extjs-express/" + }, + "node-extjs4": { + "name": "node-extjs4", + "description": "Ext JS 4 framework for node.js", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "grgur", + "email": "grguru@gmail.com" + } + ], + "time": { + "modified": "2011-06-17T10:49:11.789Z", + "created": "2011-06-17T10:49:11.678Z", + "0.1.1": "2011-06-17T10:49:11.789Z" + }, + "author": { + "name": "Grgur Grisogono", + "email": "grguru@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/grgur/node-extjs4.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/node-extjs4/0.1.1" + }, + "dist": { + "0.1.1": { + "shasum": "5c38972d0389f2d5194c19476ecc49834aea142c", + "tarball": "http://registry.npmjs.org/node-extjs4/-/node-extjs4-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/node-extjs4/" + }, + "node-face": { + "name": "node-face", + "description": "Face.com API wrapper for NodeJS", + "dist-tags": { + "latest": "0.0.2" + }, + "readme": "# NOTE: this is still in active development - not yet ready!\n\n# node-face\n\nA Face.com API wrapper for NodeJS. Created by [Aidan Feldman](http://www.aidanfeldman.com).\n\n## Setup\n\n1. Install via npm:\n\n```bash\n$ npm install node-face\n```\n\n2. Require in your node project:\n\n```javascript\n// app.js\nvar face = require('node-face');\n\nface.init(FACE_API_KEY, FACE_API_SECRET);\n```\n\nIt's usually best to set your API key and secret as environment variables - something like\n\n```bash\n# ~/.bash_profile\nexport MYAPP_FACE_API_KEY=\nexport MYAPP_FACE_API_SECRET=\n```\n```javascript\n// app.js\nface.init(process.env.MYAPP_FACE_API_KEY, process.env.MYAPP_FACE_API_SECRET);\n```\n\nJust don't forget to run `$ source ~/.bash_profile` after you modify your `.bash_config`.\n\n## Usage\n\n### [facebook.get](http://developers.face.com/docs/api/facebook-get/)\n\n\"Returns facebook tags for one or more specified User IDs.\"\n\n```javascript\nface.facebook.get({\n uids: '2232645,571756321', // integer, array or string of IDs\n user_auth: { // object or string\n fb_user: 2232645,\n fb_oauth_token: ...\n },\n success: function(data){ ... },\n error: function(error, response, data){ ... }, // optional\n scope: this // optional\n});\n```\n", + "maintainers": [ + { + "name": "aidanfeldman", + "email": "aidan.feldman@gmail.com" + } + ], + "time": { + "modified": "2011-12-07T08:29:12.085Z", + "created": "2011-12-03T17:24:48.548Z", + "0.0.1": "2011-12-03T17:24:49.012Z", + "0.0.2": "2011-12-07T08:29:12.085Z" + }, + "author": { + "name": "Aidan Feldman", + "email": "aidan.feldman@gmail.com", + "url": "http://www.aidanfeldman.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/afeld/node-face.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-face/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-face/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "3c673828d928ba0d071bfcb81c54de93f08b0595", + "tarball": "http://registry.npmjs.org/node-face/-/node-face-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "9fe6a8803c2dbbbdfb94c3af70afdb453cb431f7", + "tarball": "http://registry.npmjs.org/node-face/-/node-face-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/node-face/" + }, + "node-fakeweb": { + "name": "node-fakeweb", + "description": "Fakeweb implementation in node for testing HTTP requests", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "ctide", + "email": "christide@christide.com" + } + ], + "time": { + "modified": "2011-11-18T05:37:28.177Z", + "created": "2011-09-13T23:36:44.925Z", + "0.0.1": "2011-09-13T23:36:46.180Z", + "0.0.2": "2011-09-14T00:10:12.593Z", + "0.0.3": "2011-09-26T01:34:08.726Z", + "0.0.4": "2011-10-18T18:51:35.579Z", + "0.0.5": "2011-11-18T05:37:28.177Z" + }, + "author": { + "name": "ctide", + "email": "christide@christide.com", + "url": "http://www.github.com/ctide" + }, + "repository": { + "type": "git", + "url": "git://github.com/ctide/fakeweb.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-fakeweb/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-fakeweb/0.0.2", + "0.0.3": "http://registry.npmjs.org/node-fakeweb/0.0.3", + "0.0.4": "http://registry.npmjs.org/node-fakeweb/0.0.4", + "0.0.5": "http://registry.npmjs.org/node-fakeweb/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "15275b34b17c0e99bb94a56d4bce5c24a98d3c8c", + "tarball": "http://registry.npmjs.org/node-fakeweb/-/node-fakeweb-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f71e469fe0ca69a952912c33c30be54fda0c7c53", + "tarball": "http://registry.npmjs.org/node-fakeweb/-/node-fakeweb-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "a661d0f7d80732240d4f8e5e4bace32af77ebb4c", + "tarball": "http://registry.npmjs.org/node-fakeweb/-/node-fakeweb-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "69dd4e22552ee8d2a3bbd014ca38b9966cd30a27", + "tarball": "http://registry.npmjs.org/node-fakeweb/-/node-fakeweb-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "5e1b11005fa6c28e0942cbb7b27f23b27a887403", + "tarball": "http://registry.npmjs.org/node-fakeweb/-/node-fakeweb-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/node-fakeweb/" + }, + "node-fb": { + "name": "node-fb", + "description": "A simple Facebook API Wrapper for Node.js applications", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "jankuca", + "email": "jan@jankuca.com" + } + ], + "time": { + "modified": "2011-08-08T20:50:26.099Z", + "created": "2011-08-08T20:50:25.204Z", + "1.0.0": "2011-08-08T20:50:26.099Z" + }, + "author": { + "name": "Jan Kuča", + "email": "jan@jankuca.com", + "url": "http://jankuca.com" + }, + "repository": { + "type": "git", + "url": "http://gist.github.com/874070" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/node-fb/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "568820cc3dd7bf08df3bbb32c4b7b02c5468bf3e", + "tarball": "http://registry.npmjs.org/node-fb/-/node-fb-1.0.0.tgz" + } + }, + "keywords": [ + "facebook", + "fb", + "api", + "graph api", + "api wrapper" + ], + "url": "http://registry.npmjs.org/node-fb/" + }, + "node-fb-signed-request": { + "name": "node-fb-signed-request", + "description": "parser for facebook signed-request", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "drapeko", + "email": "roman.drapeko@gmail.com" + } + ], + "time": { + "modified": "2011-08-20T11:46:11.504Z", + "created": "2011-08-20T11:46:09.329Z", + "0.0.1": "2011-08-20T11:46:11.504Z" + }, + "author": { + "name": "Roman Drapeko", + "email": "roman.drapeko@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/drapeko/node-fb-signed-request.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-fb-signed-request/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "741430e375536d33a3df9bc2c8280e36569da7c9", + "tarball": "http://registry.npmjs.org/node-fb-signed-request/-/node-fb-signed-request-0.0.1.tgz" + } + }, + "keywords": [ + "facebook", + "signed request" + ], + "url": "http://registry.npmjs.org/node-fb-signed-request/" + }, + "node-fects": { + "name": "node-fects", + "description": "Test tool", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "mark", + "email": "mark@mark-fink.de" + } + ], + "time": { + "modified": "2011-02-07T23:22:45.542Z", + "created": "2011-02-07T23:22:45.098Z", + "0.0.1": "2011-02-07T23:22:45.542Z" + }, + "author": { + "name": "Mark Fink", + "email": "mark@mark-fink.de" + }, + "repository": { + "type": "git", + "url": "http://www.testing-software.org" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-fects/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "4fd09a9339cd8b742884cdf258398538ab0dc4e3", + "tarball": "http://registry.npmjs.org/node-fects/-/node-fects-0.0.1.tgz" + } + }, + "keywords": [ + "Testing", + "" + ], + "url": "http://registry.npmjs.org/node-fects/" + }, + "node-ffi": { + "name": "node-ffi", + "description": "A foreign function interface (FFI) for Node.js", + "dist-tags": { + "latest": "0.4.2" + }, + "maintainers": [ + { + "name": "rbranson", + "email": "rick@diodeware.com" + } + ], + "author": { + "name": "Rick Branson" + }, + "repository": { + "type": "git", + "url": "git://github.com/rbranson/node-ffi.git" + }, + "time": { + "modified": "2011-11-07T17:24:30.402Z", + "created": "2011-04-28T17:19:08.239Z", + "0.1.1": "2011-04-28T17:19:08.239Z", + "0.1.2": "2011-04-28T17:19:08.239Z", + "0.2.0": "2011-04-28T17:19:08.239Z", + "0.2.1": "2011-04-28T17:19:08.239Z", + "0.2.2": "2011-08-23T18:20:43.456Z", + "0.3.0": "2011-09-07T04:10:11.917Z", + "0.3.1": "2011-09-16T03:36:40.426Z", + "0.3.2": "2011-09-17T05:10:39.950Z", + "0.4.0": "2011-09-19T18:17:28.788Z", + "0.4.1": "2011-09-29T03:32:59.545Z", + "0.4.2": "2011-11-07T17:24:30.402Z" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/node-ffi/0.1.1", + "0.1.2": "http://registry.npmjs.org/node-ffi/0.1.2", + "0.2.0": "http://registry.npmjs.org/node-ffi/0.2.0", + "0.2.1": "http://registry.npmjs.org/node-ffi/0.2.1", + "0.2.2": "http://registry.npmjs.org/node-ffi/0.2.2", + "0.3.0": "http://registry.npmjs.org/node-ffi/0.3.0", + "0.3.1": "http://registry.npmjs.org/node-ffi/0.3.1", + "0.3.2": "http://registry.npmjs.org/node-ffi/0.3.2", + "0.4.0": "http://registry.npmjs.org/node-ffi/0.4.0", + "0.4.1": "http://registry.npmjs.org/node-ffi/0.4.1", + "0.4.2": "http://registry.npmjs.org/node-ffi/0.4.2" + }, + "dist": { + "0.1.1": { + "tarball": "http://packages:5984/node-ffi/-/node-ffi-0.1.1.tgz" + }, + "0.1.2": { + "tarball": "http://packages:5984/node-ffi/-/node-ffi-0.1.2.tgz" + }, + "0.2.0": { + "tarball": "http://registry.npmjs.org/node-ffi/-/node-ffi-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "e86935cda619e29d45a17bc59842bdeaaac6b088", + "tarball": "http://registry.npmjs.org/node-ffi/-/node-ffi-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "d7117e929bf1381785465db4330a427f95478ec1", + "tarball": "http://registry.npmjs.org/node-ffi/-/node-ffi-0.2.2.tgz" + }, + "0.3.0": { + "shasum": "84a34021d39dedfa8c0704236d0d9f68182affaa", + "tarball": "http://registry.npmjs.org/node-ffi/-/node-ffi-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "e389bbb0d07d35650edc557585de2b6b34f367f4", + "tarball": "http://registry.npmjs.org/node-ffi/-/node-ffi-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "828988b5fb3ce722dcef201c062465f205e84d43", + "tarball": "http://registry.npmjs.org/node-ffi/-/node-ffi-0.3.2.tgz" + }, + "0.4.0": { + "shasum": "aaf6f11bc14c8465cf5f3b18f78c4872418e8039", + "tarball": "http://registry.npmjs.org/node-ffi/-/node-ffi-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "38e3ca8de8e7d4f8909787e695626aeda519faa5", + "tarball": "http://registry.npmjs.org/node-ffi/-/node-ffi-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "84bf2f7327b508f8c24062558b67811fa834b522", + "tarball": "http://registry.npmjs.org/node-ffi/-/node-ffi-0.4.2.tgz" + } + }, + "url": "http://registry.npmjs.org/node-ffi/" + }, + "node-ffprobe": { + "name": "node-ffprobe", + "description": "NodeJS wrapper around ffprobe", + "dist-tags": { + "latest": "1.0.5" + }, + "maintainers": [ + { + "name": "severeon", + "email": "thomas@listenerapproved.com" + } + ], + "time": { + "modified": "2011-10-06T04:57:40.423Z", + "created": "2011-09-29T07:17:31.940Z", + "1.0.0": "2011-09-29T07:17:32.352Z", + "1.0.1": "2011-09-29T07:22:15.690Z", + "1.0.2": "2011-09-29T07:25:57.023Z", + "1.0.3": "2011-09-29T07:43:34.614Z", + "1.0.4": "2011-09-29T07:53:45.586Z", + "1.0.5": "2011-10-06T04:57:40.423Z" + }, + "author": { + "name": "Thomas Quick", + "email": "thomas@listenerapproved.com", + "url": "http://listenerapproved.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/ListenerApproved/node-ffprobe.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/node-ffprobe/1.0.0", + "1.0.1": "http://registry.npmjs.org/node-ffprobe/1.0.1", + "1.0.2": "http://registry.npmjs.org/node-ffprobe/1.0.2", + "1.0.3": "http://registry.npmjs.org/node-ffprobe/1.0.3", + "1.0.4": "http://registry.npmjs.org/node-ffprobe/1.0.4", + "1.0.5": "http://registry.npmjs.org/node-ffprobe/1.0.5" + }, + "dist": { + "1.0.0": { + "shasum": "dd81313a3f7dd93384006ab2f2240a561ceef402", + "tarball": "http://registry.npmjs.org/node-ffprobe/-/node-ffprobe-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "ac611591246cd0058b64c69b22bc1901758a6eab", + "tarball": "http://registry.npmjs.org/node-ffprobe/-/node-ffprobe-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "f68d51243782eb49e827e783234f677960213150", + "tarball": "http://registry.npmjs.org/node-ffprobe/-/node-ffprobe-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "4b8d8bb77108828eb28d73588364c161082e17dc", + "tarball": "http://registry.npmjs.org/node-ffprobe/-/node-ffprobe-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "3b5521509f7cee06f6b187868a95cffdd1749244", + "tarball": "http://registry.npmjs.org/node-ffprobe/-/node-ffprobe-1.0.4.tgz" + }, + "1.0.5": { + "shasum": "180bbfa763c4bcce701c7774b087b404edf06411", + "tarball": "http://registry.npmjs.org/node-ffprobe/-/node-ffprobe-1.0.5.tgz" + } + }, + "keywords": [ + "ffprobe", + "id3" + ], + "url": "http://registry.npmjs.org/node-ffprobe/" + }, + "node-filter": { + "name": "node-filter", + "description": "Validation and sanitization API inspired from PHP's filters", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "naholyr", + "email": "naholyr@gmail.com" + } + ], + "time": { + "modified": "2011-04-30T22:49:51.255Z", + "created": "2011-04-30T22:49:50.223Z", + "0.0.1": "2011-04-30T22:49:51.255Z" + }, + "author": { + "name": "Nicolas Chambrier", + "email": "naholyr@gmail.com", + "url": "http://naholyr.fr" + }, + "repository": { + "type": "git", + "url": "git://github.com/naholyr/node-filter.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-filter/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "0e1833c5d2caae1f7424c86fa0217014e3f65f0f", + "tarball": "http://registry.npmjs.org/node-filter/-/node-filter-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/node-filter/" + }, + "node-force-domain": { + "name": "node-force-domain", + "description": "node-force-domain is a middleware for Express.js that allows you to configure a default domain and redirect any requests to other domains.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "goloroden", + "email": "webmaster@goloroden.de" + } + ], + "time": { + "modified": "2011-10-23T14:37:42.168Z", + "created": "2011-10-23T14:33:46.631Z", + "0.0.1": "2011-10-23T14:33:48.294Z", + "0.0.2": "2011-10-23T14:37:42.168Z" + }, + "author": { + "name": "Golo Roden", + "email": "webmaster@goloroden.de", + "url": "http://www.goloroden.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/goloroden/node-force-domain.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-force-domain/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-force-domain/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "14b0253c1f985a78914c600b34facb73bf016482", + "tarball": "http://registry.npmjs.org/node-force-domain/-/node-force-domain-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "969a20674e0ba93e9e933a2818d1889c3167745e", + "tarball": "http://registry.npmjs.org/node-force-domain/-/node-force-domain-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/node-force-domain/" + }, + "node-fork": { + "name": "node-fork", + "description": "Look-alike nodejs 0.6.x child_process.fork() function module for nodejs 0.4.x and 0.6.x", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "stolsma", + "email": "npm@tolsma.net" + } + ], + "time": { + "modified": "2011-12-13T21:46:33.245Z", + "created": "2011-10-02T18:43:03.888Z", + "0.0.1": "2011-10-02T18:43:05.495Z", + "0.0.2": "2011-10-03T18:03:54.589Z", + "0.0.3": "2011-10-14T07:58:22.602Z", + "0.1.0": "2011-10-15T18:35:58.210Z", + "0.1.1": "2011-10-17T19:39:55.799Z", + "0.1.2": "2011-10-27T06:27:26.706Z", + "0.2.0": "2011-12-11T14:03:28.133Z", + "0.2.1": "2011-12-13T21:46:33.245Z" + }, + "author": { + "name": "Sander Tolsma", + "email": "sander at tolsma.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/stolsma/node-fork.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-fork/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-fork/0.0.2", + "0.0.3": "http://registry.npmjs.org/node-fork/0.0.3", + "0.1.0": "http://registry.npmjs.org/node-fork/0.1.0", + "0.1.1": "http://registry.npmjs.org/node-fork/0.1.1", + "0.1.2": "http://registry.npmjs.org/node-fork/0.1.2", + "0.2.0": "http://registry.npmjs.org/node-fork/0.2.0", + "0.2.1": "http://registry.npmjs.org/node-fork/0.2.1" + }, + "dist": { + "0.0.1": { + "shasum": "a4aa7727f959a5647f76c553014e32e8ab52d171", + "tarball": "http://registry.npmjs.org/node-fork/-/node-fork-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "a260b20c5aeb56ca72f33c0907a75f5a111ec49e", + "tarball": "http://registry.npmjs.org/node-fork/-/node-fork-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "a12ec4cede566e4d3aa072dfdbac2d85785fc4b3", + "tarball": "http://registry.npmjs.org/node-fork/-/node-fork-0.0.3.tgz" + }, + "0.1.0": { + "shasum": "6216b95f7890132339b8c2e66516fe19662347ba", + "tarball": "http://registry.npmjs.org/node-fork/-/node-fork-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "315bb8778bcb7d7a1c3c5100eb309d336c281846", + "tarball": "http://registry.npmjs.org/node-fork/-/node-fork-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "b8d6f195f80b17587e2e65ee671904856a2895f0", + "tarball": "http://registry.npmjs.org/node-fork/-/node-fork-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "a4af9b4ce7fb62969c144784a7952a7192d31998", + "tarball": "http://registry.npmjs.org/node-fork/-/node-fork-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "b164f7857f4d9b5f692ec92b902e083af9c28a71", + "tarball": "http://registry.npmjs.org/node-fork/-/node-fork-0.2.1.tgz" + } + }, + "url": "http://registry.npmjs.org/node-fork/" + }, + "node-foursquare": { + "name": "node-foursquare", + "description": "Fault-tolerant Foursquare API v2 wrapper for Node JS.", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "clintandrewhall", + "email": "clint@clintandrewhall.com" + } + ], + "time": { + "modified": "2011-08-17T20:46:31.360Z", + "created": "2011-04-25T21:14:47.132Z", + "0.0.1": "2011-04-25T21:14:47.484Z", + "0.0.2": "2011-05-05T14:49:39.419Z", + "0.1.0": "2011-06-14T18:16:41.564Z", + "0.1.1": "2011-06-20T22:35:55.334Z", + "0.1.2": "2011-07-17T21:06:33.823Z", + "0.1.3": "2011-08-17T20:40:14.807Z" + }, + "author": { + "name": "Clint Andrew Hall", + "url": "http://www.clintandrewhall.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/clintandrewhall/node-foursquare.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-foursquare/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-foursquare/0.0.2", + "0.1.0": "http://registry.npmjs.org/node-foursquare/0.1.0", + "0.1.1": "http://registry.npmjs.org/node-foursquare/0.1.1", + "0.1.2": "http://registry.npmjs.org/node-foursquare/0.1.2", + "0.1.3": "http://registry.npmjs.org/node-foursquare/0.1.3" + }, + "dist": { + "0.0.1": { + "shasum": "6d0227108ec5b268c8c3376e1cc53d033c959c5b", + "tarball": "http://registry.npmjs.org/node-foursquare/-/node-foursquare-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "7eca12da24453ea57c47925882dde14b10ae5129", + "tarball": "http://registry.npmjs.org/node-foursquare/-/node-foursquare-0.0.2.tgz" + }, + "0.1.0": { + "shasum": "b65508058fff086615bbf7a86e660afcd6778386", + "tarball": "http://registry.npmjs.org/node-foursquare/-/node-foursquare-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "66842c418c0fe7a9558ab6295ad31c869be5fe08", + "tarball": "http://registry.npmjs.org/node-foursquare/-/node-foursquare-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "f0f4be17dac002402042fb91ebbaa41fe59f2a9e", + "tarball": "http://registry.npmjs.org/node-foursquare/-/node-foursquare-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "325422e6e8e4a043aa954997e05b0ad9522bf470", + "tarball": "http://registry.npmjs.org/node-foursquare/-/node-foursquare-0.1.3.tgz" + } + }, + "keywords": [ + "node-foursquare", + "foursquare", + "4sq" + ], + "url": "http://registry.npmjs.org/node-foursquare/" + }, + "node-fs": { + "name": "node-fs", + "description": "node-fs is an extension to the original nodejs fs library, offering new functionalities.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "bpedro", + "email": "bpedro@tarpipe.com" + } + ], + "time": { + "modified": "2011-08-30T11:14:51.775Z", + "created": "2011-04-14T00:58:37.928Z", + "0.0.1": "2011-04-14T00:58:38.455Z", + "0.1.0": "2011-08-30T11:14:51.775Z" + }, + "author": { + "name": "Bruno Pedro", + "email": "bpedro@tarpipe.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/bpedro/node-fs.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-fs/0.0.1", + "0.1.0": "http://registry.npmjs.org/node-fs/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "a207f316b15c7d759044eb39ebfdc9f102809630", + "tarball": "http://registry.npmjs.org/node-fs/-/node-fs-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "44d1ef344caea6f4aa9e367b3ca21fcf942b663c", + "tarball": "http://registry.npmjs.org/node-fs/-/node-fs-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/node-fs/" + }, + "node-fs-synchronize": { + "name": "node-fs-synchronize", + "description": "Synchronize file written from external child process to nodejs", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "johnfischer", + "email": "fischerjohn@yahoo.fr" + } + ], + "time": { + "modified": "2011-08-08T06:55:56.053Z", + "created": "2011-08-07T21:31:55.431Z", + "0.0.2": "2011-08-07T21:31:55.732Z", + "0.0.3": "2011-08-07T21:38:26.290Z", + "0.0.4": "2011-08-08T06:55:56.053Z" + }, + "author": { + "name": "John Fischer" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/node-fs-synchronize/0.0.2", + "0.0.3": "http://registry.npmjs.org/node-fs-synchronize/0.0.3", + "0.0.4": "http://registry.npmjs.org/node-fs-synchronize/0.0.4" + }, + "dist": { + "0.0.2": { + "shasum": "9d72a767376cc364bacd98f84fc660136e894e83", + "tarball": "http://registry.npmjs.org/node-fs-synchronize/-/node-fs-synchronize-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "45c0ea4557d5297f3a331ecdec6c66358c3c230e", + "tarball": "http://registry.npmjs.org/node-fs-synchronize/-/node-fs-synchronize-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "1c39a43ee5a31648c4dc164aef9711342f76b905", + "tarball": "http://registry.npmjs.org/node-fs-synchronize/-/node-fs-synchronize-0.0.4.tgz" + } + }, + "keywords": [ + "fs", + "synchronize" + ], + "url": "http://registry.npmjs.org/node-fs-synchronize/" + }, + "node-gd": { + "name": "node-gd", + "description": "GD bindings", + "dist-tags": { + "latest": "0.1.8" + }, + "maintainers": [ + { + "name": "andris", + "email": "andris@node.ee" + } + ], + "time": { + "modified": "2011-08-03T15:38:42.659Z", + "created": "2011-05-09T12:40:28.852Z", + "0.1.5": "2011-05-09T12:40:29.580Z", + "0.1.6": "2011-05-09T13:02:23.800Z", + "0.1.7": "2011-07-20T07:45:33.629Z", + "0.1.8": "2011-08-03T15:38:42.659Z" + }, + "author": { + "name": "taggon" + }, + "repository": { + "type": "git", + "url": "git://github.com/andris9/node-gd.git" + }, + "versions": { + "0.1.5": "http://registry.npmjs.org/node-gd/0.1.5", + "0.1.6": "http://registry.npmjs.org/node-gd/0.1.6", + "0.1.7": "http://registry.npmjs.org/node-gd/0.1.7", + "0.1.8": "http://registry.npmjs.org/node-gd/0.1.8" + }, + "dist": { + "0.1.5": { + "shasum": "7919b30e57584b6a2c919a278658d3e3f8dd7864", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8g-v83.1.8.10-linux-2.6.18-028stab079.1": { + "shasum": "e25cf826f54332df3746f49e8655015b571b7959", + "tarball": "http://registry.npmjs.org/node-gd/-/node-gd-0.1.5-0.4-ares1.7.4-ev4.4-openssl0.9.8g-v83.1.8.10-linux-2.6.18-028stab079.1.tgz" + } + }, + "tarball": "http://registry.npmjs.org/node-gd/-/node-gd-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "e6048f069878c6a32ba38706815988d0a509cdef", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8g-v83.1.8.10-linux-2.6.18-028stab079.1": { + "shasum": "6a7628a18aa6d886efa0c36a2a01d2c3ad618367", + "tarball": "http://registry.npmjs.org/node-gd/-/node-gd-0.1.6-0.4-ares1.7.4-ev4.4-openssl0.9.8g-v83.1.8.10-linux-2.6.18-028stab079.1.tgz" + } + }, + "tarball": "http://registry.npmjs.org/node-gd/-/node-gd-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "b7a31c7c7dc8e813fd30e65938dfd37d468a6264", + "tarball": "http://registry.npmjs.org/node-gd/-/node-gd-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "4ce94b8db2386abeb9103ed89f2c5155b0b9f84d", + "tarball": "http://registry.npmjs.org/node-gd/-/node-gd-0.1.8.tgz" + } + }, + "url": "http://registry.npmjs.org/node-gd/" + }, + "node-gearman": { + "name": "node-gearman", + "description": "Simple Gearman client/worker module for Node.JS", + "dist-tags": { + "latest": "0.1.4" + }, + "readme": "# node-gearman\n\n**node-gearman** is an extremely simple Gearman client/worker module for Node.JS. You can register workers and you can submit jobs, that's all about it.\n\n## Installation\n\nInstall through *npm*\n\n npm install node-gearman\n\n## Usage\n\n## Connect to a Gearman server\n\nSet up connection data and create a new `Gearman` object\n\n var Gearman = require(\"node-gearman\");\n \n var gearman = new Gearman(hostname, port);\n\nWhere `hostname` defaults to `\"localhost\"` and `port` to `4730`\n\nThis doesn't actually create the connection yet. Connection is created when needed but you can force it with `gearman.connect()`\n\n var gearman = Gearman(hostname, port);\n gearman.connect();\n\n## Connection events\n\nThe following events can be listened for a `Gearman` object:\n\n * **connected** - when the connection has been successfully established to the server\n * **idle** - when a there's no jobs available for workers\n * **close** - connection closed\n * **error** - an error occured. Connection is automatically closed.\n\n## Submit a Job\n\nJobs can be submitted with `gearman.submitJob(name, payload)` where `name` is the name of the function and `payload` is a string or a Buffer. The returned object (Event Emitter) can be used to detect job status and has the following events:\n\n * **error** - if the job failed, has parameter error\n * **data** - contains a chunk of data as a Buffer\n * **end** - when the job has been completed, has no parameters\n\nExample:\n\n var gearman = Gearman(hostname, port);\n var job = gearman.submitJob(\"reverse\", \"test string\");\n\n job.on(\"data\", function(data){\n console.log(data.toString(\"utf-8\")); // gnirts tset\n });\n\n job.on(\"end\", function(){\n console.log(\"Job completed!\");\n });\n\n job.on(\"error\", function(error){\n console.log(error.message);\n });\n\n## Setup a Worker\n\nWorkers can be set up with `gearman.registerWorker(name, callback)` where `name` is the name of the function and `callback` is the function to be run when a job is received.\n\nWorker function `callback` gets two parameters - `payload` (received data as a Buffer) and `worker` which is a helper object to communicate with the server. `worker` object has following methods:\n\n * **write(data)** - for sending data chunks to the client\n * **end([data])** for completing the job\n * **error()** to indicate that the job failed\n\nExample:\n\n var gearman = Gearman(hostname, port);\n\n gearman.registerWorker(\"reverse\", function(payload, worker){\n if(!payload){\n return worker.error();\n }\n var reversed = payload.toString(\"utf-8\").split(\"\").reverse().join(\"\");\n worker.end(reversed);\n });\n\n## License\n\n**MIT**", + "maintainers": [ + { + "name": "andris", + "email": "andris@node.ee" + } + ], + "time": { + "modified": "2011-12-09T14:49:29.443Z", + "created": "2011-11-23T10:22:06.072Z", + "0.1.0": "2011-11-23T10:22:07.995Z", + "0.1.1": "2011-11-23T13:20:16.117Z", + "0.1.2": "2011-11-28T08:54:38.882Z", + "0.1.3": "2011-11-28T09:30:28.900Z", + "0.1.4": "2011-12-09T14:49:29.443Z" + }, + "author": { + "name": "Andris Reinman" + }, + "repository": { + "type": "git", + "url": "git://github.com/andris9/gearman.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/node-gearman/0.1.0", + "0.1.1": "http://registry.npmjs.org/node-gearman/0.1.1", + "0.1.2": "http://registry.npmjs.org/node-gearman/0.1.2", + "0.1.3": "http://registry.npmjs.org/node-gearman/0.1.3", + "0.1.4": "http://registry.npmjs.org/node-gearman/0.1.4" + }, + "dist": { + "0.1.0": { + "shasum": "97bbd17b10a361cfe8e89b2c6f1ffa648f88bd96", + "tarball": "http://registry.npmjs.org/node-gearman/-/node-gearman-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "3cf9078f1b898dff229ea78fc2ea033a9d2ad83f", + "tarball": "http://registry.npmjs.org/node-gearman/-/node-gearman-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "ab9e78342512f71d794f27ae94bd4f741a31f4a8", + "tarball": "http://registry.npmjs.org/node-gearman/-/node-gearman-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "b7430cffc75f3920232dcf7dd1369d62f7a8f561", + "tarball": "http://registry.npmjs.org/node-gearman/-/node-gearman-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "6d3d8e5ba81026e8e0237ff7b046d9ded266a814", + "tarball": "http://registry.npmjs.org/node-gearman/-/node-gearman-0.1.4.tgz" + } + }, + "keywords": [ + "gearman", + "worker", + "message queue" + ], + "url": "http://registry.npmjs.org/node-gearman/" + }, + "node-geocode": { + "name": "node-geocode", + "description": "node wrapper around yahoo's placefinder api", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "brapse", + "email": "brapse@gmail.com" + } + ], + "author": { + "name": "Braithwaite Patrick Sean", + "email": "sean@recoset.com" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/node-geocode/0.2.0" + }, + "dist": { + "0.2.0": { + "tarball": "http://packages:5984/node-geocode/-/node-geocode-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/node-geocode/" + }, + "node-get": { + "name": "node-get", + "description": "A slightly higher-level HTTP client for node.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "tmcw", + "email": "macwright@gmail.com" + } + ], + "time": { + "modified": "2011-02-16T23:57:37.819Z", + "created": "2011-02-03T16:40:10.435Z", + "0.0.1": "2011-02-03T16:40:10.593Z", + "0.0.2": "2011-02-03T16:41:56.873Z", + "0.0.3": "2011-02-11T02:44:08.973Z", + "0.1.0": "2011-02-16T23:57:37.819Z" + }, + "author": { + "name": "Tom MacWright", + "email": "macwright@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-get/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-get/0.0.2", + "0.0.3": "http://registry.npmjs.org/node-get/0.0.3", + "0.1.0": "http://registry.npmjs.org/node-get/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "b42abf59e72254828a3cc001502c388ee9a4c7c9", + "tarball": "http://registry.npmjs.org/node-get/-/node-get-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "90cbf3115b3ac4244e8927b17db3200d2c51ea43", + "tarball": "http://registry.npmjs.org/node-get/-/node-get-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "016b4d2dbc5ef3e5f5ba48ac55b256e8b8493e3d", + "tarball": "http://registry.npmjs.org/node-get/-/node-get-0.0.3.tgz" + }, + "0.1.0": { + "shasum": "ae1a51357451ba07fc72f884634a680d7d94fda2", + "tarball": "http://registry.npmjs.org/node-get/-/node-get-0.1.0.tgz" + } + }, + "keywords": [ + "http", + "client" + ], + "url": "http://registry.npmjs.org/node-get/" + }, + "node-gettext": { + "name": "node-gettext", + "description": "Gettext client for Node.js to use .mo files for I18N", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "andris", + "email": "andris@node.ee" + } + ], + "time": { + "modified": "2011-07-29T09:33:43.805Z", + "created": "2011-07-04T13:54:04.760Z", + "0.1.0": "2011-07-04T13:54:05.418Z", + "0.1.1": "2011-07-29T09:33:43.805Z" + }, + "author": { + "name": "Andris Reinman" + }, + "repository": { + "type": "git", + "url": "git://github.com/andris9/node-gettext.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/node-gettext/0.1.0", + "0.1.1": "http://registry.npmjs.org/node-gettext/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "8703d264f528aa48f70d32c8a842297cd6b266a6", + "tarball": "http://registry.npmjs.org/node-gettext/-/node-gettext-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "12bd7fea5fd5eb9e513d2dab74cca879f58f8497", + "tarball": "http://registry.npmjs.org/node-gettext/-/node-gettext-0.1.1.tgz" + } + }, + "keywords": [ + "i18n", + "l10n", + "gettext", + "mo" + ], + "url": "http://registry.npmjs.org/node-gettext/" + }, + "node-gist": { + "name": "node-gist", + "description": "Simple Gist API", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "Tim-Smart", + "email": "tim@fostle.com" + } + ], + "time": { + "modified": "2011-06-29T04:02:59.210Z", + "created": "2011-03-31T09:49:57.131Z", + "0.0.1": "2011-03-31T09:49:58.891Z", + "0.0.2": "2011-03-31T10:55:50.240Z", + "0.2.0": "2011-06-08T01:59:00.206Z", + "0.2.1": "2011-06-08T02:04:18.887Z", + "0.2.2": "2011-06-29T04:02:59.210Z" + }, + "author": { + "name": "Tim Smart" + }, + "repository": { + "type": "git", + "url": "git://github.com/Tim-Smart/node-gist.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-gist/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-gist/0.0.2", + "0.2.0": "http://registry.npmjs.org/node-gist/0.2.0", + "0.2.1": "http://registry.npmjs.org/node-gist/0.2.1", + "0.2.2": "http://registry.npmjs.org/node-gist/0.2.2" + }, + "dist": { + "0.0.1": { + "shasum": "d8816f61a9fd76d2f102774fd203d313afb6d357", + "tarball": "http://registry.npmjs.org/node-gist/-/node-gist-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "0c12d4cf5e476ff5e0a8b2c9af72480397381adf", + "tarball": "http://registry.npmjs.org/node-gist/-/node-gist-0.0.2.tgz" + }, + "0.2.0": { + "shasum": "d4678ef78f4be75d31b1fb19bc57c64b4950e274", + "tarball": "http://registry.npmjs.org/node-gist/-/node-gist-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "97b994842345430d9b56a69fef9fe427b54a24bf", + "tarball": "http://registry.npmjs.org/node-gist/-/node-gist-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "5adfb5403969c44acf5e7c3bfbcbc0ae9a187dbf", + "tarball": "http://registry.npmjs.org/node-gist/-/node-gist-0.2.2.tgz" + } + }, + "url": "http://registry.npmjs.org/node-gist/" + }, + "node-glbse": { + "name": "node-glbse", + "description": "API module for programmatic access to GLBSE (Global Bitcoin Exchange) https://glbse.com", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "aomega", + "email": "alfred@xidcapital.com" + } + ], + "time": { + "modified": "2011-08-17T06:00:08.897Z", + "created": "2011-08-17T05:24:41.137Z", + "0.1.0": "2011-08-17T05:24:46.359Z", + "0.1.1": "2011-08-17T06:00:08.897Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/node-glbse/0.1.0", + "0.1.1": "http://registry.npmjs.org/node-glbse/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "fb506ecea1961157e6806f213ab13bc175680d34", + "tarball": "http://registry.npmjs.org/node-glbse/-/node-glbse-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "bcd9d0b7c8b5c026f78c75d4758ac2359194aa01", + "tarball": "http://registry.npmjs.org/node-glbse/-/node-glbse-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/node-glbse/" + }, + "node-google-sql": { + "name": "node-google-sql", + "description": "Access to the google sql (fusion table) api", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "dbamber", + "email": "dbmber@gmail.com" + } + ], + "time": { + "modified": "2011-09-11T21:17:13.881Z", + "created": "2011-08-17T21:19:40.922Z", + "0.1.0": "2011-08-17T21:19:40.977Z", + "0.1.1": "2011-08-17T21:22:53.626Z", + "0.1.2": "2011-09-11T21:17:13.881Z" + }, + "author": { + "name": "David Bamber", + "email": "dbamber@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/node-google-sql/0.1.0", + "0.1.1": "http://registry.npmjs.org/node-google-sql/0.1.1", + "0.1.2": "http://registry.npmjs.org/node-google-sql/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "169d1388d8718afb06a2f3537d2c2db9f8602392", + "tarball": "http://registry.npmjs.org/node-google-sql/-/node-google-sql-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "e8749fd04acf0673231511aec6e34d092d4763ec", + "tarball": "http://registry.npmjs.org/node-google-sql/-/node-google-sql-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "d768c10eb639c32121ec85c7ab08e04c2d24807e", + "tarball": "http://registry.npmjs.org/node-google-sql/-/node-google-sql-0.1.2.tgz" + } + }, + "keywords": [ + "google", + "fusion", + "sql" + ], + "url": "http://registry.npmjs.org/node-google-sql/" + }, + "node-gravatar": { + "name": "node-gravatar", + "description": "Node.js Gravatar URL generator, useful for using with Node.js blogging frameworks", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "arnabc", + "email": "arnabc@webgyani.com" + } + ], + "author": { + "name": "Arnab Chakraborty" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/node-gravatar/1.0.0" + }, + "dist": { + "1.0.0": { + "tarball": "http://packages:5984/node-gravatar/-/node-gravatar-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/node-gravatar/" + }, + "node-handlersocket": { + "name": "node-handlersocket", + "description": "HandlerSocket client for Node.js", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "koichik", + "email": "koichik@improvement.jp" + } + ], + "author": { + "name": "Koichi Kobayashi", + "email": "koichik@improvement.jp", + "url": "http://d.hatena.ne.jp/koichik/" + }, + "time": { + "modified": "2011-02-23T21:57:02.787Z", + "created": "2011-02-23T21:56:59.928Z", + "0.0.0": "2011-02-23T21:56:59.928Z", + "0.0.1": "2011-02-23T21:56:59.928Z", + "0.0.2": "2011-02-23T21:56:59.928Z", + "0.0.3": "2011-02-23T21:57:02.787Z" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/node-handlersocket/0.0.0", + "0.0.1": "http://registry.npmjs.org/node-handlersocket/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-handlersocket/0.0.2", + "0.0.3": "http://registry.npmjs.org/node-handlersocket/0.0.3" + }, + "dist": { + "0.0.0": { + "tarball": "http://registry.npmjs.org/node-handlersocket/-/node-handlersocket-0.0.0.tgz" + }, + "0.0.1": { + "tarball": "http://registry.npmjs.org/node-handlersocket/-/node-handlersocket-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/node-handlersocket/-/node-handlersocket-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "629f3ce17686ea4730768d4a6f3c3b8edc9d3ed3", + "tarball": "http://registry.npmjs.org/node-handlersocket/-/node-handlersocket-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/node-handlersocket/" + }, + "node-hdfs": { + "name": "node-hdfs", + "description": "A node module for accessing Hadoop's file system (HDFS)", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "horaci", + "email": "horaci@gmail.com" + } + ], + "time": { + "modified": "2011-09-13T09:28:28.081Z", + "created": "2011-09-13T09:28:27.580Z", + "0.0.1": "2011-09-13T09:28:28.081Z" + }, + "author": { + "name": "Forward" + }, + "repository": { + "type": "git", + "url": "git://github.com/forward/node-hdfs.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-hdfs/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "1b0c734cf792dc4369d1eef2adf683b9d99cdfe3", + "tarball": "http://registry.npmjs.org/node-hdfs/-/node-hdfs-0.0.1.tgz" + } + }, + "keywords": [ + "hdfs", + "hadoop", + "fs", + "libhdfs" + ], + "url": "http://registry.npmjs.org/node-hdfs/" + }, + "node-heroku": { + "name": "node-heroku", + "description": "Wrapper for the Heroku API", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "fjakobs", + "email": "fabian.jakobs@web.de" + } + ], + "time": { + "modified": "2011-11-03T15:24:24.634Z", + "created": "2011-11-03T15:24:22.386Z", + "0.1.1": "2011-11-03T15:24:24.634Z" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/node-heroku/0.1.1" + }, + "dist": { + "0.1.1": { + "shasum": "68ca42f12c029771fb15cfb3ae8368a88167d270", + "tarball": "http://registry.npmjs.org/node-heroku/-/node-heroku-0.1.1.tgz" + } + }, + "keywords": [ + "package", + "heroku" + ], + "url": "http://registry.npmjs.org/node-heroku/" + }, + "node-hipchat": { + "name": "node-hipchat", + "description": "HipChat API library for node.js", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "nkohari", + "email": "nkohari@gmail.com" + } + ], + "time": { + "modified": "2011-08-22T16:56:46.634Z", + "created": "2011-08-22T16:56:46.499Z", + "0.1.0": "2011-08-22T16:56:46.635Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/node-hipchat/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "986ff0d0abbd04c75c606472c55ab01fa728700c", + "tarball": "http://registry.npmjs.org/node-hipchat/-/node-hipchat-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/node-hipchat/" + }, + "node-hive": { + "name": "node-hive", + "description": "Node Hive Client Library", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "aterreno", + "email": "antonio.terreno@gmail.com" + }, + { + "name": "jae", + "email": "jlee@yetitrails.com" + }, + { + "name": "andykent", + "email": "andy.kent@me.com" + } + ], + "time": { + "modified": "2011-07-15T23:39:38.261Z", + "created": "2011-07-12T13:22:34.748Z", + "0.0.1": "2011-07-12T13:22:35.345Z", + "0.0.2": "2011-07-12T15:51:33.725Z", + "0.0.3": "2011-07-12T17:19:01.556Z", + "0.0.4": "2011-07-13T10:45:03.407Z", + "0.1.0": "2011-07-13T14:13:11.208Z", + "0.1.1": "2011-07-13T14:30:50.957Z", + "0.1.2": "2011-07-15T22:44:19.947Z" + }, + "author": { + "name": "Forward" + }, + "repository": { + "type": "git", + "url": "git://github.com/forward/node-hive.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-hive/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-hive/0.0.2", + "0.0.3": "http://registry.npmjs.org/node-hive/0.0.3", + "0.0.4": "http://registry.npmjs.org/node-hive/0.0.4", + "0.1.0": "http://registry.npmjs.org/node-hive/0.1.0", + "0.1.1": "http://registry.npmjs.org/node-hive/0.1.1" + }, + "dist": { + "0.0.1": { + "shasum": "ea60974c5231f7de1042efd8db84c9ac72b27956", + "tarball": "http://registry.npmjs.org/node-hive/-/node-hive-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "b14232f0fd6dd01ee1b8f6d08548b1745a081e5c", + "tarball": "http://registry.npmjs.org/node-hive/-/node-hive-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "a8b137993739e2b5434f6314e7ae96bb4bb54817", + "tarball": "http://registry.npmjs.org/node-hive/-/node-hive-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "d0530c4ddbb65092e7ecad329c97320e619ed2b4", + "tarball": "http://registry.npmjs.org/node-hive/-/node-hive-0.0.4.tgz" + }, + "0.1.0": { + "shasum": "3235e231acc3861a41d9340871089296a88690c6", + "tarball": "http://registry.npmjs.org/node-hive/-/node-hive-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "3bf2edccdaa2de973c4013d1d0f27de38b12b441", + "tarball": "http://registry.npmjs.org/node-hive/-/node-hive-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/node-hive/" + }, + "node-html-encoder": { + "name": "node-html-encoder", + "description": "Package for encoding and decoding html string", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "minchenkov", + "email": "pavel@minchenkov.com" + } + ], + "time": { + "modified": "2011-09-13T18:04:40.209Z", + "created": "2011-09-13T18:04:38.323Z", + "0.0.1": "2011-09-13T18:04:40.209Z" + }, + "author": { + "name": "Pavel Minchenkov", + "email": "pavel@metahouse.ru" + }, + "repository": { + "type": "git", + "url": "git://github.com/minchenkov/node-html-encoder.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-html-encoder/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "31bce754bf2496ff6f0a04f9ff84f3a53f8726b6", + "tarball": "http://registry.npmjs.org/node-html-encoder/-/node-html-encoder-0.0.1.tgz" + } + }, + "keywords": [ + "encoder", + "decoder", + "html" + ], + "url": "http://registry.npmjs.org/node-html-encoder/" + }, + "node-i3": { + "name": "node-i3", + "description": "inter-process communication with i3, the improved tiling window manager", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "badboy_", + "email": "janerik@fnordig.de" + } + ], + "time": { + "modified": "2011-05-28T11:29:28.972Z", + "created": "2011-05-28T11:29:28.140Z", + "0.0.1": "2011-05-28T11:29:28.972Z" + }, + "author": { + "name": "Jan-Erik Rediger", + "email": "janerik@fnordig.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/badboy/node-i3.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-i3/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "f0b93f0c837772f7f0177c8711df5d1169f0c576", + "tarball": "http://registry.npmjs.org/node-i3/-/node-i3-0.0.1.tgz" + } + }, + "keywords": [ + "ipc", + "i3", + "wm" + ], + "url": "http://registry.npmjs.org/node-i3/" + }, + "node-indextank": { + "name": "node-indextank", + "description": "A low-level interface to the IndexTank API for Node.js.", + "dist-tags": { + "latest": "0.0.1-1" + }, + "maintainers": [ + { + "name": "simonweare", + "email": "simon@mynix.co.uk" + } + ], + "time": { + "modified": "2011-06-28T21:51:46.608Z", + "created": "2011-06-27T07:57:40.025Z", + "0.0.1": "2011-06-27T07:57:40.533Z", + "0.0.1-1": "2011-06-28T21:51:46.608Z" + }, + "author": { + "name": "Simon Weare", + "email": "simon@mynix.co.uk" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-indextank/0.0.1", + "0.0.1-1": "http://registry.npmjs.org/node-indextank/0.0.1-1" + }, + "dist": { + "0.0.1": { + "shasum": "93f36b50a1cc93c598522177f61c179542b2f933", + "tarball": "http://registry.npmjs.org/node-indextank/-/node-indextank-0.0.1.tgz" + }, + "0.0.1-1": { + "shasum": "23eee83005fbfb5a90561760c662199912490128", + "tarball": "http://registry.npmjs.org/node-indextank/-/node-indextank-0.0.1-1.tgz" + } + }, + "keywords": [ + "indextank", + "nodejs" + ], + "url": "http://registry.npmjs.org/node-indextank/" + }, + "node-inherit": { + "name": "node-inherit", + "description": "Inheritance module for node", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "dfilatov", + "email": "dfilatov@yandex-team.ru" + } + ], + "time": { + "modified": "2011-11-01T07:41:27.005Z", + "created": "2011-08-24T17:43:30.518Z", + "1.0.0": "2011-08-24T17:43:32.440Z", + "1.0.1": "2011-10-14T17:50:32.994Z" + }, + "author": { + "name": "Dmitry Filatov", + "email": "dfilatov@yandex-team.ru" + }, + "repository": { + "type": "git", + "url": "git://github.com/dfilatov/node-inherit.git" + }, + "versions": { + "1.0.1": "http://registry.npmjs.org/node-inherit/1.0.1" + }, + "dist": { + "1.0.1": { + "shasum": "1696d1ddf4661aa86201abd4bcc82284ecbf9d64", + "tarball": "http://registry.npmjs.org/node-inherit/-/node-inherit-1.0.1.tgz" + } + }, + "keywords": [ + "inheritance" + ], + "url": "http://registry.npmjs.org/node-inherit/" + }, + "node-inspector": { + "name": "node-inspector", + "description": "Web Inspector based nodeJS debugger", + "dist-tags": { + "latest": "0.1.10" + }, + "maintainers": [ + { + "name": "dannycoates", + "email": "dannycoates@gmail.com" + } + ], + "author": { + "name": "Danny Coates", + "email": "dannycoates@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dannycoates/node-inspector.git" + }, + "time": { + "modified": "2011-11-16T20:50:47.884Z", + "created": "2011-07-14T05:12:17.375Z", + "0.0.1": "2011-07-14T05:12:17.375Z", + "0.0.2": "2011-07-14T05:12:17.375Z", + "0.0.3": "2011-07-14T05:12:17.375Z", + "0.0.4": "2011-07-14T05:12:17.375Z", + "0.1.0": "2011-07-14T05:12:17.375Z", + "0.1.1": "2011-07-14T05:12:17.375Z", + "0.1.2": "2011-07-14T05:12:17.375Z", + "0.1.3": "2011-07-14T05:12:17.375Z", + "0.1.4": "2011-07-14T05:12:17.375Z", + "0.1.5": "2011-07-14T05:12:17.375Z", + "0.1.6": "2011-07-14T05:12:17.375Z", + "0.1.7": "2011-07-14T05:12:17.375Z", + "0.1.8": "2011-07-24T03:15:19.399Z", + "0.1.9": "2011-08-15T02:16:10.917Z", + "0.1.10": "2011-09-03T03:45:30.334Z" + }, + "users": { + "pid": true + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-inspector/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-inspector/0.0.2", + "0.0.3": "http://registry.npmjs.org/node-inspector/0.0.3", + "0.0.4": "http://registry.npmjs.org/node-inspector/0.0.4", + "0.1.0": "http://registry.npmjs.org/node-inspector/0.1.0", + "0.1.1": "http://registry.npmjs.org/node-inspector/0.1.1", + "0.1.2": "http://registry.npmjs.org/node-inspector/0.1.2", + "0.1.3": "http://registry.npmjs.org/node-inspector/0.1.3", + "0.1.4": "http://registry.npmjs.org/node-inspector/0.1.4", + "0.1.5": "http://registry.npmjs.org/node-inspector/0.1.5", + "0.1.6": "http://registry.npmjs.org/node-inspector/0.1.6", + "0.1.7": "http://registry.npmjs.org/node-inspector/0.1.7", + "0.1.8": "http://registry.npmjs.org/node-inspector/0.1.8", + "0.1.9": "http://registry.npmjs.org/node-inspector/0.1.9", + "0.1.10": "http://registry.npmjs.org/node-inspector/0.1.10" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/node-inspector/-/node-inspector-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/node-inspector/-/node-inspector-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/node-inspector/-/node-inspector-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://packages:5984/node-inspector/-/node-inspector-0.0.4.tgz" + }, + "0.1.0": { + "tarball": "http://packages:5984/node-inspector/-/node-inspector-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://registry.npmjs.org/node-inspector/-/node-inspector-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "f102ae20f6e6fcc27dbf5582ad80f2085737fea7", + "tarball": "http://registry.npmjs.org/node-inspector/-/node-inspector-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "e174a62a26caf691327565984404e65c39eefb53", + "tarball": "http://registry.npmjs.org/node-inspector/-/node-inspector-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "2e2d44d1b74478d49efd49df80731baeb5e02173", + "tarball": "http://registry.npmjs.org/node-inspector/-/node-inspector-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "55bb50622db8f8504b8597b72b849925c7b49997", + "tarball": "http://registry.npmjs.org/node-inspector/-/node-inspector-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "61efaad99355c40ae89f7c46304882b822c3b4a8", + "tarball": "http://registry.npmjs.org/node-inspector/-/node-inspector-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "514ccc3ba2082cc61e00957da5b5fd504c14b690", + "tarball": "http://registry.npmjs.org/node-inspector/-/node-inspector-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "d87f2200900065127750945ab061cddd7e462f60", + "tarball": "http://registry.npmjs.org/node-inspector/-/node-inspector-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "68408c9e2eb27249c8f7dfe73f9744724f9f126b", + "tarball": "http://registry.npmjs.org/node-inspector/-/node-inspector-0.1.9.tgz" + }, + "0.1.10": { + "shasum": "92520889108761231acd20fecd9f04e297e563e2", + "tarball": "http://registry.npmjs.org/node-inspector/-/node-inspector-0.1.10.tgz" + } + }, + "keywords": [ + "debug", + "debugger", + "inspector", + "profiler" + ], + "url": "http://registry.npmjs.org/node-inspector/" + }, + "node-int64": { + "name": "node-int64", + "description": "Support for representing 64-bit integers in JavaScript", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "broofa", + "email": "robert@broofa.com" + } + ], + "time": { + "modified": "2011-06-21T17:52:11.242Z", + "created": "2010-12-30T15:27:28.086Z", + "0.1.0": "2010-12-30T15:27:28.433Z", + "0.2.0": "2011-03-08T00:00:51.014Z", + "0.3.0": "2011-06-21T17:52:11.242Z" + }, + "author": { + "name": "Robert Kieffer", + "email": "robert@broofa.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/node-int64/0.1.0", + "0.2.0": "http://registry.npmjs.org/node-int64/0.2.0", + "0.3.0": "http://registry.npmjs.org/node-int64/0.3.0" + }, + "dist": { + "0.1.0": { + "shasum": "bafb5e952bcca078594afef9111c911708e5e42b", + "tarball": "http://registry.npmjs.org/node-int64/-/node-int64-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "a360efe26a9082bc16888a7277cb6d7627165f94", + "tarball": "http://registry.npmjs.org/node-int64/-/node-int64-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "894bb7c497e7c614b52ff840519b6cd660222fe2", + "tarball": "http://registry.npmjs.org/node-int64/-/node-int64-0.3.0.tgz" + } + }, + "keywords": [ + "math", + "integer", + "int64" + ], + "url": "http://registry.npmjs.org/node-int64/" + }, + "node-ip-lib": { + "name": "node-ip-lib", + "description": "Library of IP functions for IP address manipulation", + "dist-tags": { + "latest": "0.9.0" + }, + "maintainers": [ + { + "name": "trakkasure", + "email": "trakkasure@gmail.com" + } + ], + "time": { + "modified": "2011-06-21T06:14:27.228Z", + "created": "2011-06-21T06:14:26.881Z", + "0.9.0": "2011-06-21T06:14:27.228Z" + }, + "author": { + "name": "Brandon Myers", + "email": "trakkasure@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/trakkasure/node-ip-lib.git" + }, + "versions": { + "0.9.0": "http://registry.npmjs.org/node-ip-lib/0.9.0" + }, + "dist": { + "0.9.0": { + "shasum": "b5def4a5012600f33e5544b4f6f62f41096ce1f7", + "tarball": "http://registry.npmjs.org/node-ip-lib/-/node-ip-lib-0.9.0.tgz" + } + }, + "keywords": [ + "ip", + "net", + "math", + "library" + ], + "url": "http://registry.npmjs.org/node-ip-lib/" + }, + "node-iplookup": { + "name": "node-iplookup", + "description": "Ip to country lookup", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "brapse", + "email": "brapse@gmail.com" + } + ], + "author": { + "name": "Braithwaite Patrick Sean", + "email": "sean@recoset.com" + }, + "time": { + "modified": "2011-01-06T20:40:43.782Z", + "created": "2011-01-06T20:40:43.782Z", + "0.1.0": "2011-01-06T20:40:43.782Z", + "0.2.0": "2011-01-06T20:40:43.782Z", + "0.3.0": "2011-01-06T20:40:43.782Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/node-iplookup/0.1.0", + "0.2.0": "http://registry.npmjs.org/node-iplookup/0.2.0", + "0.3.0": "http://registry.npmjs.org/node-iplookup/0.3.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/node-iplookup/-/node-iplookup-0.1.0.tgz" + }, + "0.2.0": { + "tarball": "http://packages:5984/node-iplookup/-/node-iplookup-0.2.0.tgz" + }, + "0.3.0": { + "tarball": "http://registry.npmjs.org/node-iplookup/-/node-iplookup@0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/node-iplookup/" + }, + "Node-JavaScript-Preprocessor": { + "name": "Node-JavaScript-Preprocessor", + "description": "A preprocessor for Javascript that supports defines, if else endif and includes.", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "mcoolin", + "email": "mcoolin@techie.com" + } + ], + "time": { + "modified": "2011-08-28T21:36:28.162Z", + "created": "2011-08-28T19:05:03.319Z", + "0.0.1": "2011-08-28T19:05:04.502Z", + "0.0.2": "2011-08-28T19:26:33.323Z", + "0.0.3": "2011-08-28T19:34:55.557Z", + "0.0.4": "2011-08-28T21:19:12.222Z", + "0.0.5": "2011-08-28T21:36:28.162Z" + }, + "author": { + "name": "Mike Coolin", + "email": "mcoolin@techie.com", + "url": "www.coolwebdevelopment.ca" + }, + "repository": { + "type": "git", + "url": "git://github.com/mcoolin/Node-JavaScript-Preprocessor.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/Node-JavaScript-Preprocessor/0.0.1", + "0.0.2": "http://registry.npmjs.org/Node-JavaScript-Preprocessor/0.0.2", + "0.0.4": "http://registry.npmjs.org/Node-JavaScript-Preprocessor/0.0.4", + "0.0.5": "http://registry.npmjs.org/Node-JavaScript-Preprocessor/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "b06e4d32477200778444baba40ed674bdd43727c", + "tarball": "http://registry.npmjs.org/Node-JavaScript-Preprocessor/-/Node-JavaScript-Preprocessor-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "8de7eec18834e581d77eac352cd0202259df68ca", + "tarball": "http://registry.npmjs.org/Node-JavaScript-Preprocessor/-/Node-JavaScript-Preprocessor-0.0.2.tgz" + }, + "0.0.4": { + "shasum": "5d064ae4089620096d2186f17b4ea2a5cf74e502", + "tarball": "http://registry.npmjs.org/Node-JavaScript-Preprocessor/-/Node-JavaScript-Preprocessor-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "b5b6a1d5c09a8a33d9a0045112fea4d681d5b0b8", + "tarball": "http://registry.npmjs.org/Node-JavaScript-Preprocessor/-/Node-JavaScript-Preprocessor-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/Node-JavaScript-Preprocessor/" + }, + "node-jdownloader": { + "name": "node-jdownloader", + "description": "Allows controlling JDownloader through its RemoteControl plugin", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "mathieuravaux", + "email": "mathieu.ravaux@gmail.com" + } + ], + "time": { + "modified": "2011-03-03T05:44:37.893Z", + "created": "2011-03-03T05:44:37.461Z", + "0.1.0": "2011-03-03T05:44:37.893Z" + }, + "author": { + "name": "Mathieu Ravaux", + "email": "mathieu.ravaux@gmail.com", + "url": "http://twitter.com/mathieuravaux" + }, + "repository": { + "type": "git", + "url": "git://github.com/mathieuravaux/node-jdownloader.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/node-jdownloader/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "f3dfe4693d8715a9284d8cd37a82f2354acea6b9", + "tarball": "http://registry.npmjs.org/node-jdownloader/-/node-jdownloader-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/node-jdownloader/" + }, + "node-jslint-all": { + "name": "node-jslint-all", + "description": "A JSLint based JavaScript code quality tool", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "davybrion", + "email": "ralinx@davybrion.com" + } + ], + "time": { + "modified": "2011-08-21T20:46:27.325Z", + "created": "2011-08-14T19:46:02.623Z", + "0.1.0": "2011-08-14T19:46:03.190Z", + "0.2.0": "2011-08-21T20:46:27.325Z" + }, + "author": { + "name": "Davy Brion", + "email": "ralinx@davybrion.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/davybrion/node-jslint-all.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/node-jslint-all/0.1.0", + "0.2.0": "http://registry.npmjs.org/node-jslint-all/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "4049b0edd91e3b5f38ee673177aeb7ee14f8824c", + "tarball": "http://registry.npmjs.org/node-jslint-all/-/node-jslint-all-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "ca8ca653004f55d864e846d06caa9cd139033ff6", + "tarball": "http://registry.npmjs.org/node-jslint-all/-/node-jslint-all-0.2.0.tgz" + } + }, + "keywords": [ + "jslint" + ], + "url": "http://registry.npmjs.org/node-jslint-all/" + }, + "node-jsonengine": { + "name": "node-jsonengine", + "description": "jsonengine client for node", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "Jxck", + "email": "block.rxckin.beats@gmail.com" + } + ], + "time": { + "modified": "2011-02-27T16:04:16.707Z", + "created": "2011-02-27T16:04:16.110Z", + "0.0.0": "2011-02-27T16:04:16.707Z" + }, + "author": { + "name": "block.rxckin.beats@gmail.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:Jxck/node-jsonengine.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/node-jsonengine/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "0ab7b67f3e30c46a91a6660849967d6d6055ebfb", + "tarball": "http://registry.npmjs.org/node-jsonengine/-/node-jsonengine-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/node-jsonengine/" + }, + "node-khtml": { + "name": "node-khtml", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "mike.hemesath", + "email": "mike.hemesath@gmail.com" + } + ], + "time": { + "modified": "2011-07-13T13:44:11.565Z", + "created": "2011-07-12T13:53:51.443Z", + "0.0.1": "2011-07-12T13:53:51.993Z", + "0.0.2": "2011-07-13T12:24:06.347Z" + }, + "description": "Wrapper for the khtmltopdf and khtmltoimg project.", + "author": { + "name": "Mike Hemesath", + "email": "mike.hemesath@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-khtml/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "b14cdabb1e002d49479034ed7fbcb36f9356eadc", + "tarball": "http://registry.npmjs.org/node-khtml/-/node-khtml-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/node-khtml/" + }, + "node-linkshare": { + "name": "node-linkshare", + "description": "Node.js Linkshare API Client.", + "dist-tags": { + "latest": "0.9.7" + }, + "maintainers": [ + { + "name": "evanleis", + "email": "engineergod@yahoo.com" + } + ], + "time": { + "modified": "2011-09-08T17:47:20.293Z", + "created": "2011-08-24T15:22:48.367Z", + "0.0.1": "2011-08-24T15:22:49.717Z", + "0.0.4": "2011-08-24T15:49:55.964Z", + "0.7.5": "2011-08-24T19:15:42.512Z", + "0.7.6": "2011-08-26T21:44:16.562Z", + "0.7.7": "2011-08-29T15:25:23.693Z", + "0.9.7": "2011-09-08T17:35:58.014Z" + }, + "author": { + "name": "Evan Leis", + "email": "engineergody@yahoo.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/explodes/node-linkshare.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-linkshare/0.0.1", + "0.7.5": "http://registry.npmjs.org/node-linkshare/0.7.5", + "0.7.6": "http://registry.npmjs.org/node-linkshare/0.7.6", + "0.7.7": "http://registry.npmjs.org/node-linkshare/0.7.7", + "0.9.7": "http://registry.npmjs.org/node-linkshare/0.9.7" + }, + "dist": { + "0.0.1": { + "shasum": "3e8e0120c9d389e64ea6b2b4627a67f41ea917e6", + "tarball": "http://registry.npmjs.org/node-linkshare/-/node-linkshare-0.0.1.tgz" + }, + "0.7.5": { + "shasum": "6a43e89cfab429559793cb90f89723016bff5d24", + "tarball": "http://registry.npmjs.org/node-linkshare/-/node-linkshare-0.7.5.tgz" + }, + "0.7.6": { + "shasum": "1fe21d71853616cb45c070ed630c47f75eb34f8e", + "tarball": "http://registry.npmjs.org/node-linkshare/-/node-linkshare-0.7.6.tgz" + }, + "0.7.7": { + "shasum": "c2cfa19aea248571252c3c7c00b1e3d96ea91772", + "tarball": "http://registry.npmjs.org/node-linkshare/-/node-linkshare-0.7.7.tgz" + }, + "0.9.7": { + "shasum": "faf0bc2aed841df6f4b80d37b117137740213d94", + "tarball": "http://registry.npmjs.org/node-linkshare/-/node-linkshare-0.9.7.tgz" + } + }, + "keywords": [ + "affiliate", + "marketing", + "webservice" + ], + "url": "http://registry.npmjs.org/node-linkshare/" + }, + "node-log": { + "name": "node-log", + "description": "Simple logger for NodeJS", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "contra", + "email": "contra@australia.edu" + } + ], + "time": { + "modified": "2011-10-04T03:38:34.514Z", + "created": "2011-09-17T08:37:42.100Z", + "0.0.1": "2011-09-17T08:37:43.195Z", + "0.0.2": "2011-09-17T08:47:43.735Z", + "0.0.3": "2011-10-04T03:38:34.514Z" + }, + "author": { + "name": "Fractal", + "email": "contact@wearefractal.com", + "url": "http://wearefractal.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/wearefractal/node-log.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-log/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-log/0.0.2", + "0.0.3": "http://registry.npmjs.org/node-log/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "5be7e7678a1a0cc6f6abda6cad3db28d098e7ff0", + "tarball": "http://registry.npmjs.org/node-log/-/node-log-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "586774fc1668a7b24dd04e1a0098c1ce2a8f44ba", + "tarball": "http://registry.npmjs.org/node-log/-/node-log-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "c9278cb484446969b867a4ca6ec0466fae098e75", + "tarball": "http://registry.npmjs.org/node-log/-/node-log-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/node-log/" + }, + "node-logentries": { + "name": "node-logentries", + "description": "A winston-compatible wrapper library for the logentries.com service", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "rjrodger", + "email": "richard@ricebridge.com" + } + ], + "time": { + "modified": "2011-07-25T20:33:47.724Z", + "created": "2011-07-25T20:33:47.026Z", + "0.0.1": "2011-07-25T20:33:47.724Z" + }, + "author": { + "name": "Richard Rodger", + "email": "richard@chartaca.com", + "url": "http://richardrodger.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/rjrodger/node-logentries.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-logentries/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "596a0189031e02592d1f57f6f896fe8b7f0f58e8", + "tarball": "http://registry.npmjs.org/node-logentries/-/node-logentries-0.0.1.tgz" + } + }, + "keywords": [ + "log", + "logging", + "winston", + "logentries", + "logentries.com", + "wrapper", + "api" + ], + "url": "http://registry.npmjs.org/node-logentries/" + }, + "node-logger": { + "name": "node-logger", + "description": "A simple logging library that combines the simple APIs of Ruby's logger.rb and browser-js console.log()", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "quirkey", + "email": "aaron@quirkey.com" + } + ], + "author": { + "name": "Aaron Quint", + "email": "aaron@quirkey.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-logger/0.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/node-logger/-/node-logger-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/node-logger/" + }, + "node-logging": { + "name": "node-logging", + "description": "Simple colorized logging for Node.js with request logger Connect middleware", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "foxbunny", + "email": "branko@herdhound.com" + } + ], + "time": { + "modified": "2011-09-25T11:37:01.956Z", + "created": "2011-09-10T11:33:38.682Z", + "0.0.1": "2011-09-10T11:33:39.699Z", + "0.0.2": "2011-09-10T12:42:52.351Z", + "0.0.3": "2011-09-12T07:27:45.643Z", + "0.0.4": "2011-09-12T09:12:01.142Z", + "0.0.5": "2011-09-12T09:51:48.300Z", + "0.0.6": "2011-09-12T12:53:03.247Z", + "0.0.7": "2011-09-17T09:27:33.859Z", + "0.0.8": "2011-09-25T10:53:51.610Z", + "0.0.9": "2011-09-25T11:11:45.668Z", + "0.1.0": "2011-09-25T11:20:13.010Z", + "0.1.1": "2011-09-25T11:29:00.667Z", + "0.1.2": "2011-09-25T11:37:01.956Z" + }, + "author": { + "name": "Herd Hound", + "email": "branko@herdhound.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/HerdHound/node-logging.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-logging/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-logging/0.0.2", + "0.0.3": "http://registry.npmjs.org/node-logging/0.0.3", + "0.0.4": "http://registry.npmjs.org/node-logging/0.0.4", + "0.0.5": "http://registry.npmjs.org/node-logging/0.0.5", + "0.0.6": "http://registry.npmjs.org/node-logging/0.0.6", + "0.0.7": "http://registry.npmjs.org/node-logging/0.0.7", + "0.0.8": "http://registry.npmjs.org/node-logging/0.0.8", + "0.0.9": "http://registry.npmjs.org/node-logging/0.0.9", + "0.1.0": "http://registry.npmjs.org/node-logging/0.1.0", + "0.1.1": "http://registry.npmjs.org/node-logging/0.1.1", + "0.1.2": "http://registry.npmjs.org/node-logging/0.1.2" + }, + "dist": { + "0.0.1": { + "shasum": "8c3567b25d20460445b81e1d0e11f6849dea0455", + "tarball": "http://registry.npmjs.org/node-logging/-/node-logging-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "47e02d26531c6dd8f5ac5cdc9e44ad3334fae127", + "tarball": "http://registry.npmjs.org/node-logging/-/node-logging-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "d62736da68d6aec599253dbe729fb00bcb439aae", + "tarball": "http://registry.npmjs.org/node-logging/-/node-logging-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "5d325dfe1bedcca9569b1adacf3f39b64fee0185", + "tarball": "http://registry.npmjs.org/node-logging/-/node-logging-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "d818daca59e44e4eda773bb3c0ec6dc9bb8b77b1", + "tarball": "http://registry.npmjs.org/node-logging/-/node-logging-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "a2f2a2562bb3d674fc7f5a67a627cb5eb2ed5a97", + "tarball": "http://registry.npmjs.org/node-logging/-/node-logging-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "9295a75f8815f11adfe4683eed4776b49ca9b93d", + "tarball": "http://registry.npmjs.org/node-logging/-/node-logging-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "352290ad845c168aaa0331674bc8f1e10846e1d8", + "tarball": "http://registry.npmjs.org/node-logging/-/node-logging-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "1e4f4663406f7f24f9d8ca60fa70f4be722c29d9", + "tarball": "http://registry.npmjs.org/node-logging/-/node-logging-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "d20436b702c1f4107bc3c31ae14cd627fa69194e", + "tarball": "http://registry.npmjs.org/node-logging/-/node-logging-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "8c2d99799a4ee554e991ee0380ad8cc0f8345832", + "tarball": "http://registry.npmjs.org/node-logging/-/node-logging-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "cdd77538479d266c1396a79dbf388735346dfb11", + "tarball": "http://registry.npmjs.org/node-logging/-/node-logging-0.1.2.tgz" + } + }, + "keywords": [ + "logging", + "connect", + "middleware" + ], + "url": "http://registry.npmjs.org/node-logging/" + }, + "node-mailer": { + "name": "node-mailer", + "description": "Mailer on top of nodemailer", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "srod", + "email": "rodolphe@2clics.net" + } + ], + "time": { + "modified": "2011-07-04T19:27:27.160Z", + "created": "2011-06-05T09:27:08.433Z", + "0.1.0": "2011-06-05T09:27:09.322Z", + "0.1.1": "2011-07-04T19:27:27.160Z" + }, + "author": { + "name": "Rodolphe Stoclin", + "email": "rodolphe@2clics.net", + "url": "http://2clics.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/srod/node-minify.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/node-mailer/0.1.0", + "0.1.1": "http://registry.npmjs.org/node-mailer/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "9dffa47d8d9e9dcbab0e74019432aa0b04e63cd2", + "tarball": "http://registry.npmjs.org/node-mailer/-/node-mailer-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "609e14a9b2c34422540b3a66938163d1d2421500", + "tarball": "http://registry.npmjs.org/node-mailer/-/node-mailer-0.1.1.tgz" + } + }, + "keywords": [ + "e-mail", + "mime", + "email", + "sendmail" + ], + "url": "http://registry.npmjs.org/node-mailer/" + }, + "node-mailgun": { + "name": "node-mailgun", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "qard", + "email": "admin@stephenbelanger.com" + } + ], + "time": { + "modified": "2011-06-22T22:16:25.583Z", + "created": "2011-06-22T21:54:24.911Z", + "0.0.1": "2011-06-22T21:54:25.467Z", + "0.0.2": "2011-06-22T22:16:25.583Z" + }, + "repository": { + "url": "" + }, + "description": "HTTP client for sending email via Mailgun.", + "author": { + "name": "Stephen Belanger", + "email": "admin@stephenbelanger.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-mailgun/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-mailgun/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "a83ce35f61e6c7ecd41f992460e8aa153a702f63", + "tarball": "http://registry.npmjs.org/node-mailgun/-/node-mailgun-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "2c205daa298605302a8349e5b63b1e262c2ac8d8", + "tarball": "http://registry.npmjs.org/node-mailgun/-/node-mailgun-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/node-mailgun/" + }, + "node-markdown": { + "name": "node-markdown", + "description": "Parse Markdown syntax with node.js", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "andris", + "email": "andris@node.ee" + } + ], + "author": { + "name": "Andris Reinman" + }, + "repository": { + "type": "git", + "url": "http://github.com/andris9/node-markdown.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/node-markdown/0.1.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/node-markdown/-/node-markdown-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/node-markdown/" + }, + "node-mdbm": { + "name": "node-mdbm", + "description": "Client for accessing GT.M and Cache Globals (via secured HTTP)", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "robtweed", + "email": "rtweed@mgateway.com" + } + ], + "author": { + "name": "Rob Tweed", + "email": "rtweed@mgateway.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/robtweed/node-mdbm.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-mdbm/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-mdbm/0.0.2", + "0.0.3": "http://registry.npmjs.org/node-mdbm/0.0.3", + "0.0.4": "http://registry.npmjs.org/node-mdbm/0.0.4", + "0.0.5": "http://registry.npmjs.org/node-mdbm/0.0.5", + "0.0.6": "http://registry.npmjs.org/node-mdbm/0.0.6", + "0.0.7": "http://registry.npmjs.org/node-mdbm/0.0.7", + "0.0.8": "http://registry.npmjs.org/node-mdbm/0.0.8", + "0.1.1": "http://registry.npmjs.org/node-mdbm/0.1.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/node-mdbm/-/node-mdbm-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/node-mdbm/-/node-mdbm-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/node-mdbm/-/node-mdbm-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://packages:5984/node-mdbm/-/node-mdbm-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://packages:5984/node-mdbm/-/node-mdbm-0.0.5.tgz" + }, + "0.0.6": { + "tarball": "http://packages:5984/node-mdbm/-/node-mdbm-0.0.6.tgz" + }, + "0.0.7": { + "tarball": "http://packages:5984/node-mdbm/-/node-mdbm-0.0.7.tgz" + }, + "0.0.8": { + "tarball": "http://packages:5984/node-mdbm/-/node-mdbm-0.0.8.tgz" + }, + "0.1.1": { + "tarball": "http://packages:5984/node-mdbm/-/node-mdbm-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/node-mdbm/" + }, + "node-minify": { + "name": "node-minify", + "description": "Javascript / CSS minifier based on YUI Compressor / Google Closure Compiler / UglifyJS", + "dist-tags": { + "latest": "0.3.1" + }, + "maintainers": [ + { + "name": "srod", + "email": "rodolphe@2clics.net" + } + ], + "time": { + "modified": "2011-08-10T23:52:52.227Z", + "created": "2011-06-02T14:35:28.314Z", + "0.1.0": "2011-06-02T14:35:49.278Z", + "0.1.1": "2011-06-02T14:42:58.711Z", + "0.2.0": "2011-06-04T21:54:22.613Z", + "0.2.1": "2011-06-05T11:44:04.215Z", + "0.3.0": "2011-08-10T22:59:21.069Z", + "0.3.1": "2011-08-10T23:52:52.227Z" + }, + "author": { + "name": "Rodolphe Stoclin", + "email": "rodolphe@2clics.net", + "url": "http://2clics.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/srod/node-minify.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/node-minify/0.1.0", + "0.1.1": "http://registry.npmjs.org/node-minify/0.1.1", + "0.2.0": "http://registry.npmjs.org/node-minify/0.2.0", + "0.2.1": "http://registry.npmjs.org/node-minify/0.2.1", + "0.3.0": "http://registry.npmjs.org/node-minify/0.3.0", + "0.3.1": "http://registry.npmjs.org/node-minify/0.3.1" + }, + "dist": { + "0.1.0": { + "shasum": "b811db4b900fe9a844380b7320c0b062e771b765", + "tarball": "http://registry.npmjs.org/node-minify/-/node-minify-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "e2388b7d1efd5f26f753c419e39a1dfc0d94d122", + "tarball": "http://registry.npmjs.org/node-minify/-/node-minify-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "0b10aa22c14750a14478a9defcd12ac84a421083", + "tarball": "http://registry.npmjs.org/node-minify/-/node-minify-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "785809283f3db1f181f350988c30e1e638e11c7a", + "tarball": "http://registry.npmjs.org/node-minify/-/node-minify-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "d627785e3e556ca7dba5be33de788515661d2cd4", + "tarball": "http://registry.npmjs.org/node-minify/-/node-minify-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "4ee692afb890788a360113e1790c8d250bdbd3bc", + "tarball": "http://registry.npmjs.org/node-minify/-/node-minify-0.3.1.tgz" + } + }, + "keywords": [ + "compressor", + "minify", + "minifier", + "yui", + "gcc", + "google", + "closure", + "compiler", + "uglifyjs" + ], + "url": "http://registry.npmjs.org/node-minify/" + }, + "node-mug": { + "name": "node-mug", + "description": "Use /dev/urandom (or /dev/random) to generate RFC 4122 Version 4 (random) UUIDs.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "ohmeadhbh", + "email": "OhMeadhbh@gmail.com" + } + ], + "time": { + "modified": "2011-06-05T17:49:55.510Z", + "created": "2011-06-05T17:49:54.987Z", + "0.0.1": "2011-06-05T17:49:55.510Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-mug/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "dba41f1057b27cacad869c2814e1917f9cf2506b", + "tarball": "http://registry.npmjs.org/node-mug/-/node-mug-0.0.1.tgz" + } + }, + "keywords": [ + "uuid", + "random" + ], + "url": "http://registry.npmjs.org/node-mug/" + }, + "node-mvc": { + "name": "node-mvc", + "description": "Modular MVC Framework for Node based on Django, built on Express.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "coreyschram", + "email": "corey@coreymedia.com" + } + ], + "time": { + "modified": "2011-04-29T17:20:05.476Z", + "created": "2011-04-29T17:20:05.088Z", + "0.0.1": "2011-04-29T17:20:05.476Z" + }, + "author": { + "name": "Corey Schram", + "email": "corey@coreymedia.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Abjorn/node-mvc.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-mvc/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "dd340978fa5757b5c74b76ec11f2ba2440668e00", + "tarball": "http://registry.npmjs.org/node-mvc/-/node-mvc-0.0.1.tgz" + } + }, + "keywords": [ + "mvc", + "model", + "view", + "controller", + "express", + "framework", + "django" + ], + "url": "http://registry.npmjs.org/node-mvc/" + }, + "node-mwire": { + "name": "node-mwire", + "description": "Extension to redis-node client for accessing GT.M and Cache Globals (via M/Wire interface)", + "dist-tags": { + "latest": "0.0.11" + }, + "maintainers": [ + { + "name": "robtweed", + "email": "rtweed@mgateway.com" + } + ], + "author": { + "name": "Rob Tweed", + "email": "rtweed@mgateway.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/robtweed/node-mwire.git" + }, + "time": { + "modified": "2011-06-20T18:30:27.180Z", + "created": "2011-02-25T12:55:11.473Z", + "0.0.1": "2011-02-25T12:55:11.473Z", + "0.0.2": "2011-02-25T12:55:11.473Z", + "0.0.3": "2011-02-25T12:55:11.473Z", + "0.0.4": "2011-02-25T12:55:11.473Z", + "0.0.5": "2011-02-25T12:55:11.473Z", + "0.0.6": "2011-02-25T12:55:11.473Z", + "0.0.7": "2011-02-25T12:55:11.473Z", + "0.0.8": "2011-02-25T12:55:11.473Z", + "0.0.9": "2011-02-25T12:55:11.473Z", + "0.0.10": "2011-05-09T15:30:05.480Z", + "0.0.11": "2011-06-20T18:30:27.180Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-mwire/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-mwire/0.0.2", + "0.0.3": "http://registry.npmjs.org/node-mwire/0.0.3", + "0.0.4": "http://registry.npmjs.org/node-mwire/0.0.4", + "0.0.5": "http://registry.npmjs.org/node-mwire/0.0.5", + "0.0.6": "http://registry.npmjs.org/node-mwire/0.0.6", + "0.0.7": "http://registry.npmjs.org/node-mwire/0.0.7", + "0.0.8": "http://registry.npmjs.org/node-mwire/0.0.8", + "0.0.9": "http://registry.npmjs.org/node-mwire/0.0.9", + "0.0.10": "http://registry.npmjs.org/node-mwire/0.0.10", + "0.0.11": "http://registry.npmjs.org/node-mwire/0.0.11" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/node-mwire/-/node-mwire-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/node-mwire/-/node-mwire-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/node-mwire/-/node-mwire-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://packages:5984/node-mwire/-/node-mwire-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://packages:5984/node-mwire/-/node-mwire-0.0.5.tgz" + }, + "0.0.6": { + "tarball": "http://packages:5984/node-mwire/-/node-mwire-0.0.6.tgz" + }, + "0.0.7": { + "tarball": "http://registry.npmjs.org/node-mwire/-/node-mwire-0.0.7.tgz" + }, + "0.0.8": { + "tarball": "http://registry.npmjs.org/node-mwire/-/node-mwire-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "f905e5ed86bf36f21350fb6afcc855a04b367f73", + "tarball": "http://registry.npmjs.org/node-mwire/-/node-mwire-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "e79078095ecb5edebd791c15825d99c0e4e99d8c", + "tarball": "http://registry.npmjs.org/node-mwire/-/node-mwire-0.0.10.tgz" + }, + "0.0.11": { + "shasum": "cf1005998093c7b1e1dab051245383f0a8a9c5ba", + "tarball": "http://registry.npmjs.org/node-mwire/-/node-mwire-0.0.11.tgz" + } + }, + "url": "http://registry.npmjs.org/node-mwire/" + }, + "node-mynix-feed": { + "name": "node-mynix-feed", + "description": "A 'not so simple' pluggable feed monitor for Node.js.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "simonweare", + "email": "simon@mynix.co.uk" + } + ], + "time": { + "modified": "2011-07-09T10:28:57.983Z", + "created": "2011-07-09T10:28:57.414Z", + "0.0.1": "2011-07-09T10:28:57.983Z" + }, + "author": { + "name": "Simon Weare", + "email": "simon@mynix.co.uk" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-mynix-feed/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "af3dccfa6906756ae0030a78cdf95c37f35ead39", + "tarball": "http://registry.npmjs.org/node-mynix-feed/-/node-mynix-feed-0.0.1.tgz" + } + }, + "keywords": [ + "nodejs", + "feed" + ], + "url": "http://registry.npmjs.org/node-mynix-feed/" + }, + "node-nativesyslog": { + "name": "node-nativesyslog", + "description": "JavaScript-only syslog module for NodeJS", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "janoszen", + "email": "net@janoszen.hu" + } + ], + "time": { + "modified": "2011-10-29T20:16:35.151Z", + "created": "2011-10-29T20:11:55.886Z", + "1.0.0": "2011-10-29T20:11:57.903Z", + "1.0.1": "2011-10-29T20:16:35.151Z" + }, + "author": { + "name": "Janos Pasztor", + "email": "net@janoszen.hu", + "url": "http://janoszen.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/janoszen/node-syslog.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/node-nativesyslog/1.0.0", + "1.0.1": "http://registry.npmjs.org/node-nativesyslog/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "7955c8412feb399c0643d3e6d2867c5fc9276884", + "tarball": "http://registry.npmjs.org/node-nativesyslog/-/node-nativesyslog-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "348887813c6d1c6c49adf38faf2ba827c0e40aea", + "tarball": "http://registry.npmjs.org/node-nativesyslog/-/node-nativesyslog-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/node-nativesyslog/" + }, + "node-nether": { + "name": "node-nether", + "description": "", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "ericmuyser", + "email": "eric@muyser.com" + } + ], + "time": { + "modified": "2011-06-27T05:01:24.548Z", + "created": "2011-06-27T05:01:23.829Z", + "0.0.1": "2011-06-27T05:01:24.548Z" + }, + "author": { + "name": "Eric Muyser", + "email": "eric@muyser.com", + "url": "http://eric.muyser.com/" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-nether/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "0e9cf0b26ecd83503df877f95716fa9b5f318e63", + "tarball": "http://registry.npmjs.org/node-nether/-/node-nether-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/node-nether/" + }, + "node-nexmo": { + "name": "node-nexmo", + "dist-tags": {}, + "readme": null, + "maintainers": [ + { + "name": "bradleymeck", + "email": "bradley.meck@gmail.com" + } + ], + "time": { + "modified": "2011-11-20T09:00:20.263Z", + "created": "2011-11-20T09:00:20.263Z" + }, + "versions": {}, + "dist": {}, + "url": "http://registry.npmjs.org/node-nexmo/" + }, + "node-nexmo-api": { + "name": "node-nexmo-api", + "description": "Nexmo Node Library", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": null, + "maintainers": [ + { + "name": "shripadk", + "email": "assortmentofsorts@gmail.com" + } + ], + "time": { + "modified": "2011-11-21T03:47:44.310Z", + "created": "2011-11-20T14:10:16.492Z", + "0.0.1": "2011-11-20T14:10:19.456Z", + "0.0.2": "2011-11-20T14:49:50.583Z", + "0.0.3": "2011-11-20T15:03:33.129Z", + "0.0.4": "2011-11-20T15:08:07.091Z", + "0.0.5": "2011-11-20T17:54:32.258Z", + "0.1.0": "2011-11-21T03:47:44.310Z" + }, + "author": { + "name": "shripadk" + }, + "repository": { + "type": "git", + "url": "git://github.com/shripadk/node-nexmo.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-nexmo-api/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-nexmo-api/0.0.2", + "0.0.3": "http://registry.npmjs.org/node-nexmo-api/0.0.3", + "0.0.4": "http://registry.npmjs.org/node-nexmo-api/0.0.4", + "0.0.5": "http://registry.npmjs.org/node-nexmo-api/0.0.5", + "0.1.0": "http://registry.npmjs.org/node-nexmo-api/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "754a570c28e2416a3ee714d07ac51729e992582b", + "tarball": "http://registry.npmjs.org/node-nexmo-api/-/node-nexmo-api-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "9cfdfcf12df54201390be78d16caca4771fc8bbf", + "tarball": "http://registry.npmjs.org/node-nexmo-api/-/node-nexmo-api-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "be85dd547a9f1f5f6b88030be25d3c795d719304", + "tarball": "http://registry.npmjs.org/node-nexmo-api/-/node-nexmo-api-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "63b17d75cb038cb335f1b7389a35b1f45311942c", + "tarball": "http://registry.npmjs.org/node-nexmo-api/-/node-nexmo-api-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "c51c3c22b2ee116eeb0e5348afdb4da7c843a621", + "tarball": "http://registry.npmjs.org/node-nexmo-api/-/node-nexmo-api-0.0.5.tgz" + }, + "0.1.0": { + "shasum": "739d7f80d609d32bc98469d097282114e12096d8", + "tarball": "http://registry.npmjs.org/node-nexmo-api/-/node-nexmo-api-0.1.0.tgz" + } + }, + "keywords": [ + "nexmo", + "sms", + "international" + ], + "url": "http://registry.npmjs.org/node-nexmo-api/" + }, + "node-nude": { + "name": "node-nude", + "description": "Load Nude.js into Node.js while maintaining the integrity of the Nude codebase as an updateable submodule. Approach copied from node-sizzle (https://github.com/dshaw/node-sizzle).", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "goddamnbugs", + "email": "steve@goddamnbugs.com" + } + ], + "author": { + "name": "Steve", + "email": "steve@goddamnbugs.com", + "url": "http://goddamnbugs.com/" + }, + "repository": { + "type": "git", + "url": "https://github.com/goddamnbugs/node-nude.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-nude/0.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/node-nude/-/node-nude-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/node-nude/" + }, + "node-nxt": { + "name": "node-nxt", + "description": "Node.js interface to pbLua running on a Lego Mindstorms NXT device.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "paulcuth", + "email": "npm@paulcuth.me.uk" + } + ], + "time": { + "modified": "2011-09-04T21:56:18.088Z", + "created": "2011-09-04T21:56:14.209Z", + "0.0.1": "2011-09-04T21:56:18.088Z" + }, + "author": { + "name": "Paul Cuthbertson", + "email": "github@paulcuth.me.uk" + }, + "repository": { + "type": "git", + "url": "git://github.com/paulcuth/node-nxt.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-nxt/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "1902169d0f0bd20323acdbf9f0c7455be686be4d", + "tarball": "http://registry.npmjs.org/node-nxt/-/node-nxt-0.0.1.tgz" + } + }, + "keywords": [ + "NXT", + "Mindstorms", + "Lego", + "pbLua" + ], + "url": "http://registry.npmjs.org/node-nxt/" + }, + "node-oauth": { + "name": "node-oauth", + "description": "A node.js client for OAuth API", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "ystskm", + "email": "sakamoto@east-cloud.co.jp" + } + ], + "time": { + "modified": "2011-08-04T07:33:57.221Z", + "created": "2011-08-04T07:33:52.615Z", + "0.1.0": "2011-08-04T07:33:57.221Z" + }, + "author": { + "name": "EastCloud", + "email": "info@east-cloud.co.jp" + }, + "repository": { + "type": "git", + "url": "git://github.com/EastCloud/node-oauth.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/node-oauth/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "32d8ef4ad9a3e6893efb1077b1654791ad1c9d04", + "tarball": "http://registry.npmjs.org/node-oauth/-/node-oauth-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/node-oauth/" + }, + "node-obf": { + "name": "node-obf", + "description": "Javascript code obfuscator", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "contra", + "email": "contra@australia.edu" + } + ], + "time": { + "modified": "2011-09-23T15:38:02.978Z", + "created": "2011-09-23T15:38:01.838Z", + "0.0.1": "2011-09-23T15:38:02.978Z" + }, + "author": { + "name": "Fractal", + "email": "contact@wearefractal.com", + "url": "http://wearefractal.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/wearefractal/node-obf.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-obf/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "4a81e3a6213856bd54a3731d9a5e873476dd2ca9", + "tarball": "http://registry.npmjs.org/node-obf/-/node-obf-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/node-obf/" + }, + "node-ocr": { + "name": "node-ocr", + "description": "wrapper for abbyy finereader cloud api (now in beta).", + "dist-tags": { + "latest": "0.1.2" + }, + "readme": "curl -s -S --user selead-nodejs:mRDHCTyZXH67yN0eHKWo4IXA --form upload=001.jpg http://cloud.ocrsdk.com/processImage?exportFormat=txt&language=russian\n\n Authorization: 'Basic c2VsZWFkLW5vZGVqczptUkRIQ1R5WlhINjd5TjBlSEtXbzRJWEE=' \n'Authorization': 'Basic c2VsZWFkLW5vZGVqczptUkRIQ1R5WlhINjd5TjBlSEtXbzRJWEE=\\n'}\n", + "maintainers": [ + { + "name": "selead", + "email": "allselead@gmail.com" + } + ], + "time": { + "modified": "2011-12-02T17:59:44.541Z", + "created": "2011-11-30T19:13:00.236Z", + "0.1.0": "2011-11-30T19:13:02.001Z", + "0.1.1": "2011-11-30T23:10:54.691Z", + "0.1.2": "2011-12-02T17:59:44.541Z" + }, + "author": { + "name": "Temnov Kirill", + "email": "allselead@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/node-ocr/0.1.0", + "0.1.1": "http://registry.npmjs.org/node-ocr/0.1.1", + "0.1.2": "http://registry.npmjs.org/node-ocr/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "443ebd6244c09855a350d575a4b6a578c166b15b", + "tarball": "http://registry.npmjs.org/node-ocr/-/node-ocr-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "b8459f46823b0345513ee8a9ed79e366c6116599", + "tarball": "http://registry.npmjs.org/node-ocr/-/node-ocr-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "93a150265350c32897b224e2919540da4f5fa41c", + "tarball": "http://registry.npmjs.org/node-ocr/-/node-ocr-0.1.2.tgz" + } + }, + "keywords": [ + "ocr", + "text processing" + ], + "url": "http://registry.npmjs.org/node-ocr/" + }, + "node-opencalais": { + "name": "node-opencalais", + "description": "A low-level interface to the OpenCalais Web Service for Node.js.", + "dist-tags": { + "latest": "0.0.1-3" + }, + "maintainers": [ + { + "name": "simonweare", + "email": "simon@mynix.co.uk" + } + ], + "time": { + "modified": "2011-07-07T15:12:57.491Z", + "created": "2011-06-25T10:32:50.388Z", + "0.0.1": "2011-06-25T10:32:50.977Z", + "0.0.1-1": "2011-06-26T18:32:42.453Z", + "0.0.1-2": "2011-06-28T14:01:52.482Z", + "0.0.1-3": "2011-07-07T15:12:57.491Z" + }, + "author": { + "name": "Simon Weare", + "email": "simon@mynix.co.uk" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-opencalais/0.0.1", + "0.0.1-1": "http://registry.npmjs.org/node-opencalais/0.0.1-1", + "0.0.1-2": "http://registry.npmjs.org/node-opencalais/0.0.1-2", + "0.0.1-3": "http://registry.npmjs.org/node-opencalais/0.0.1-3" + }, + "dist": { + "0.0.1": { + "shasum": "3194f6235665e6be2f1a38543f4239ff1d0d5eb6", + "tarball": "http://registry.npmjs.org/node-opencalais/-/node-opencalais-0.0.1.tgz" + }, + "0.0.1-1": { + "shasum": "2f4036f5b6c0ba592a4dc3f0b96071dc73bfabcb", + "tarball": "http://registry.npmjs.org/node-opencalais/-/node-opencalais-0.0.1-1.tgz" + }, + "0.0.1-2": { + "shasum": "0934c9001670b8ea0db20c9c99a872781dd9f920", + "tarball": "http://registry.npmjs.org/node-opencalais/-/node-opencalais-0.0.1-2.tgz" + }, + "0.0.1-3": { + "shasum": "7fb7209e5622efaa5d3228f108688926f0c9560c", + "tarball": "http://registry.npmjs.org/node-opencalais/-/node-opencalais-0.0.1-3.tgz" + } + }, + "keywords": [ + "calais", + "nodejs" + ], + "url": "http://registry.npmjs.org/node-opencalais/" + }, + "node-props": { + "name": "node-props", + "description": "Read properties from multiple URIs provided on the command line.", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "ohmeadhbh", + "email": "OhMeadhbh@gmail.com" + } + ], + "time": { + "modified": "2011-06-03T12:34:58.742Z", + "created": "2011-06-02T17:07:33.538Z", + "0.0.1": "2011-06-02T17:07:34.121Z", + "0.0.2": "2011-06-03T12:08:27.964Z", + "0.0.3": "2011-06-03T12:34:58.742Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-props/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-props/0.0.2", + "0.0.3": "http://registry.npmjs.org/node-props/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "6e1030a7c1a4346be3c5e7f7116c9ba5b459ac9b", + "tarball": "http://registry.npmjs.org/node-props/-/node-props-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "e32c4be958a02453af866ea3ed1d646ae2520dc8", + "tarball": "http://registry.npmjs.org/node-props/-/node-props-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "78c535d625c0ebe241e8822db2a814122d269848", + "tarball": "http://registry.npmjs.org/node-props/-/node-props-0.0.3.tgz" + } + }, + "keywords": [ + "properties", + "configuration", + "config" + ], + "url": "http://registry.npmjs.org/node-props/" + }, + "node-proxy": { + "name": "node-proxy", + "description": "A module for node implementing __noSuchMethod__-type handlers, such as object overloading, as part of the Harmony Catch-All Proxies specification found at http://wiki.ecmascript.org/doku.php?id=harmony:proxies", + "dist-tags": { + "latest": "0.5.2" + }, + "maintainers": [ + { + "name": "brickysam26", + "email": "brickysam26@gmail.com" + } + ], + "time": { + "modified": "2011-09-06T15:49:20.845Z", + "created": "2011-03-31T08:06:02.868Z", + "0.3.1": "2011-03-31T08:06:02.868Z", + "0.3.2": "2011-03-31T08:06:02.868Z", + "0.4.0": "2011-04-08T00:33:46.315Z", + "0.5.0": "2011-06-26T15:57:15.936Z", + "0.5.1": "2011-07-01T00:41:42.494Z", + "0.5.2": "2011-09-06T15:49:20.845Z" + }, + "versions": { + "0.3.1": "http://registry.npmjs.org/node-proxy/0.3.1", + "0.3.2": "http://registry.npmjs.org/node-proxy/0.3.2", + "0.4.0": "http://registry.npmjs.org/node-proxy/0.4.0", + "0.5.0": "http://registry.npmjs.org/node-proxy/0.5.0", + "0.5.1": "http://registry.npmjs.org/node-proxy/0.5.1", + "0.5.2": "http://registry.npmjs.org/node-proxy/0.5.2" + }, + "dist": { + "0.3.1": { + "tarball": "http://packages:5984/node-proxy/-/node-proxy-0.3.1.tgz" + }, + "0.3.2": { + "tarball": "http://registry.npmjs.org/node-proxy/-/node-proxy-0.3.2.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "b74fd9ef4b878311064756406ce6e113c24f7ce9", + "tarball": "http://registry.npmjs.org/node-proxy/-/node-proxy-0.3.2-0.4-sunos-5.11.tgz" + } + } + }, + "0.4.0": { + "shasum": "9fe5eb7a284c46d2eb4847be16987c1547ca353a", + "tarball": "http://registry.npmjs.org/node-proxy/-/node-proxy-0.4.0.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "48bcd3708e2982a6ec186ff8789cfa5622ea572c", + "tarball": "http://registry.npmjs.org/node-proxy/-/node-proxy-0.4.0-0.4-sunos-5.11.tgz" + } + } + }, + "0.5.0": { + "shasum": "8493b41823b8d8963fdc2e90514d18e1792b80f5", + "tarball": "http://registry.npmjs.org/node-proxy/-/node-proxy-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "a4d46d2b0f01df1542adece065bcfca609691f2b", + "tarball": "http://registry.npmjs.org/node-proxy/-/node-proxy-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "c22cc7ddf8c2af0bfa32fed30d3c533b216ef893", + "tarball": "http://registry.npmjs.org/node-proxy/-/node-proxy-0.5.2.tgz" + } + }, + "keywords": [ + "interceptor", + "proxy", + "overload", + "__noSuchMethod__" + ], + "url": "http://registry.npmjs.org/node-proxy/" + }, + "node-pusher": { + "name": "node-pusher", + "description": "Node library for Pusher API", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "crossbreeze", + "email": "jwoongkim@gmail.com" + } + ], + "time": { + "modified": "2011-08-13T05:47:05.136Z", + "created": "2011-08-13T05:47:02.982Z", + "0.0.1": "2011-08-13T05:47:05.136Z" + }, + "author": { + "name": "Jaewoong Kim", + "email": "jwoongkim@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/crossbreeze/node-pusher.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-pusher/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "17ec119b15335dc45f2f47d84e29caa3a1af545a", + "tarball": "http://registry.npmjs.org/node-pusher/-/node-pusher-0.0.1.tgz" + } + }, + "keywords": [ + "pusher", + "websockets", + "realtime" + ], + "url": "http://registry.npmjs.org/node-pusher/" + }, + "node-putio": { + "name": "node-putio", + "description": "Node driver for the Put.io API. Put.io a storage service that fetches media files and lets you stream them immediately.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "mathieuravaux", + "email": "mathieu.ravaux@gmail.com" + } + ], + "time": { + "modified": "2011-11-02T00:24:25.946Z", + "created": "2011-03-05T06:36:31.423Z", + "0.1.0": "2011-03-05T06:36:31.966Z", + "0.1.1": "2011-11-02T00:24:25.946Z" + }, + "author": { + "name": "Mathieu Ravaux", + "email": "mathieu.ravaux@gmail.com", + "url": "http://twitter.com/mathieuravaux" + }, + "repository": { + "type": "git", + "url": "git://github.com/mathieuravaux/node-putio.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/node-putio/0.1.0", + "0.1.1": "http://registry.npmjs.org/node-putio/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "2cc204e7a797497120d5917774a9df5abd3a4a76", + "tarball": "http://registry.npmjs.org/node-putio/-/node-putio-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "b1b574dcb1db7c93488fdc10609c4e05facad1f1", + "tarball": "http://registry.npmjs.org/node-putio/-/node-putio-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/node-putio/" + }, + "node-raphael": { + "name": "node-raphael", + "description": "wrapper for raphael for usage in nodejs", + "dist-tags": { + "latest": "0.1.5" + }, + "maintainers": [ + { + "name": "dodo", + "email": "dodo@blacksec.org" + } + ], + "time": { + "modified": "2011-11-29T14:16:56.730Z", + "created": "2011-04-29T06:06:00.943Z", + "0.0.2": "2011-04-29T06:06:01.601Z", + "0.0.2-2": "2011-05-10T07:14:41.969Z", + "0.1.0": "2011-05-25T06:34:06.400Z", + "0.1.1": "2011-05-25T22:07:01.108Z", + "0.1.2": "2011-05-29T19:23:39.702Z", + "0.1.2-1": "2011-05-29T19:26:13.505Z", + "0.1.3": "2011-06-06T19:27:28.161Z", + "0.1.4": "2011-06-06T19:51:10.801Z", + "0.1.5": "2011-11-29T14:16:56.730Z" + }, + "author": { + "name": "dodo", + "url": "https://github.com/dodo" + }, + "repository": { + "type": "git", + "url": "git://github.com/dodo/node-raphael.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/node-raphael/0.0.2", + "0.0.2-2": "http://registry.npmjs.org/node-raphael/0.0.2-2", + "0.1.0": "http://registry.npmjs.org/node-raphael/0.1.0", + "0.1.1": "http://registry.npmjs.org/node-raphael/0.1.1", + "0.1.2": "http://registry.npmjs.org/node-raphael/0.1.2", + "0.1.2-1": "http://registry.npmjs.org/node-raphael/0.1.2-1", + "0.1.3": "http://registry.npmjs.org/node-raphael/0.1.3", + "0.1.4": "http://registry.npmjs.org/node-raphael/0.1.4", + "0.1.5": "http://registry.npmjs.org/node-raphael/0.1.5" + }, + "dist": { + "0.0.2": { + "shasum": "11d75ce78d9a80fac3b7523fbefedcfa08391c10", + "bin": { + "0.4-linux-2.6.38-2-amd64": { + "shasum": "6cd9e95d36b5cdd792d8ca4a340fa787b48c563b", + "tarball": "http://registry.npmjs.org/node-raphael/-/node-raphael-0.0.2-0.4-linux-2.6.38-2-amd64.tgz" + } + }, + "tarball": "http://registry.npmjs.org/node-raphael/-/node-raphael-0.0.2.tgz" + }, + "0.0.2-2": { + "shasum": "1809d07d0091113268fbb41e706cbfba9563830e", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-2-amd64": { + "shasum": "258c2dbbb7cab591d0006e79462e6f2043185d56", + "tarball": "http://registry.npmjs.org/node-raphael/-/node-raphael-0.0.2-2-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-2-amd64.tgz" + } + }, + "tarball": "http://registry.npmjs.org/node-raphael/-/node-raphael-0.0.2-2.tgz" + }, + "0.1.0": { + "shasum": "c7f4778c404ebf296126e9a7d698c4971770f151", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64": { + "shasum": "3a49a10d32f32ce9f47a7b432394c28002ade7ac", + "tarball": "http://registry.npmjs.org/node-raphael/-/node-raphael-0.1.0-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64.tgz" + } + }, + "tarball": "http://registry.npmjs.org/node-raphael/-/node-raphael-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "4f8aa651a7e0d3417a04f663ff125ec6b0b29c62", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64": { + "shasum": "1501b6724d79b3f801b172630be95a2226fde2a4", + "tarball": "http://registry.npmjs.org/node-raphael/-/node-raphael-0.1.1-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64.tgz" + } + }, + "tarball": "http://registry.npmjs.org/node-raphael/-/node-raphael-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "11b6733fbfcaf045ee1ba41c9fa7c94f5598ed3e", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64": { + "shasum": "134902cc5b5166299f56a7101709e7e00b323f05", + "tarball": "http://registry.npmjs.org/node-raphael/-/node-raphael-0.1.2-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64.tgz" + } + }, + "tarball": "http://registry.npmjs.org/node-raphael/-/node-raphael-0.1.2.tgz" + }, + "0.1.2-1": { + "shasum": "0f77ac7f29b0c46b9e3e0476ce23dcef674e85e4", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64": { + "shasum": "3d4d31eef3cdee52235a9d195037db9653f2b763", + "tarball": "http://registry.npmjs.org/node-raphael/-/node-raphael-0.1.2-1-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64.tgz" + } + }, + "tarball": "http://registry.npmjs.org/node-raphael/-/node-raphael-0.1.2-1.tgz" + }, + "0.1.3": { + "shasum": "af045ba1e5833a25d8e7823c55469f9843326804", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64": { + "shasum": "34cf40098a71388567de672611da8b1964905ac2", + "tarball": "http://registry.npmjs.org/node-raphael/-/node-raphael-0.1.3-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64.tgz" + } + }, + "tarball": "http://registry.npmjs.org/node-raphael/-/node-raphael-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "af9bc6d171d6e700d4e6151f28064162229a73a8", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64": { + "shasum": "4cbbcf5e14c50dd71906b34cf9dcac11177ac133", + "tarball": "http://registry.npmjs.org/node-raphael/-/node-raphael-0.1.4-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64.tgz" + } + }, + "tarball": "http://registry.npmjs.org/node-raphael/-/node-raphael-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "d24d975762b021137d1a58934906bf27ce6e2bfe", + "tarball": "http://registry.npmjs.org/node-raphael/-/node-raphael-0.1.5.tgz" + } + }, + "keywords": [ + "raphael", + "svg" + ], + "url": "http://registry.npmjs.org/node-raphael/" + }, + "node-rapleaf": { + "name": "node-rapleaf", + "description": "Rapleaf API client for node.js", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "tralamazza", + "email": "tralamazza@gmail.com" + } + ], + "time": { + "modified": "2011-08-06T01:52:45.330Z", + "created": "2011-07-22T10:11:05.969Z", + "0.0.1": "2011-07-22T10:11:06.852Z", + "0.0.2": "2011-07-24T05:45:11.832Z", + "0.0.3": "2011-08-06T01:50:56.674Z" + }, + "author": { + "name": "Daniel Tralamazza", + "email": "tralamazza@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/tralamazza/node-rapleaf.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-rapleaf/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-rapleaf/0.0.2", + "0.0.3": "http://registry.npmjs.org/node-rapleaf/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "eef9c0f05d98172a5eefbd564e44f75d086a8c27", + "tarball": "http://registry.npmjs.org/node-rapleaf/-/node-rapleaf-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "d263e18c3d7a6610ab6db010510b12c8d0eed99b", + "tarball": "http://registry.npmjs.org/node-rapleaf/-/node-rapleaf-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "73cd32bc9e95143966f747b98d5522156e4c7790", + "tarball": "http://registry.npmjs.org/node-rapleaf/-/node-rapleaf-0.0.3.tgz" + } + }, + "keywords": [ + "rapleaf", + "api" + ], + "url": "http://registry.npmjs.org/node-rapleaf/" + }, + "node-rats": { + "name": "node-rats", + "description": "node-rats - Node client for RATS", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "scopely", + "email": "opensource@scopely.com" + } + ], + "time": { + "modified": "2011-08-24T00:59:21.759Z", + "created": "2011-08-24T00:59:21.220Z", + "0.0.1": "2011-08-24T00:59:21.759Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-rats/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "90f97639f6ff93594ea8008515b800bda7426a05", + "tarball": "http://registry.npmjs.org/node-rats/-/node-rats-0.0.1.tgz" + } + }, + "keywords": [ + "scopely", + "node", + "analytics", + "realtime", + "rats" + ], + "url": "http://registry.npmjs.org/node-rats/" + }, + "node-rdf2json": { + "name": "node-rdf2json", + "description": "node-rdf2json can help users in transforming RDF/XML into JSON", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "baxtree", + "email": "baxtree@163.com" + } + ], + "time": { + "modified": "2011-04-15T23:39:06.244Z", + "created": "2011-04-15T23:39:05.905Z", + "0.0.1": "2011-04-15T23:39:06.244Z" + }, + "author": { + "name": "Xi Bai" + }, + "repository": { + "type": "git", + "url": "git://github.com/baxtree/node-rdf2json.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-rdf2json/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "b9400c763499b169b95909063337599774507e2f", + "tarball": "http://registry.npmjs.org/node-rdf2json/-/node-rdf2json-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/node-rdf2json/" + }, + "node-recurly": { + "name": "node-recurly", + "description": "Library for accessing the api for the Recurly recurring billing service.", + "dist-tags": { + "latest": "0.0.8" + }, + "maintainers": [ + { + "name": "robrighter", + "email": "robrighter@gmail.com" + } + ], + "time": { + "modified": "2011-04-07T21:42:53.088Z", + "created": "2011-03-30T20:10:54.074Z", + "0.0.2": "2011-03-30T20:10:54.220Z", + "0.0.3": "2011-03-31T03:18:43.142Z", + "0.0.6": "2011-04-01T21:36:39.965Z", + "0.0.7": "2011-04-01T21:46:44.315Z", + "0.0.8": "2011-04-07T21:42:53.088Z" + }, + "author": { + "name": "Rob Righter", + "email": "robrighter@gmail.com", + "url": "http://github.com/robrighter" + }, + "repository": { + "type": "git", + "url": "git://github.com/robrighter/node-recurly.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/node-recurly/0.0.2", + "0.0.3": "http://registry.npmjs.org/node-recurly/0.0.3", + "0.0.6": "http://registry.npmjs.org/node-recurly/0.0.6", + "0.0.7": "http://registry.npmjs.org/node-recurly/0.0.7", + "0.0.8": "http://registry.npmjs.org/node-recurly/0.0.8" + }, + "dist": { + "0.0.2": { + "shasum": "9c3e02a5affce5fffaffffa15bccd75bcb97910f", + "tarball": "http://registry.npmjs.org/node-recurly/-/node-recurly-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "39daaaa282c7cbfd751cf039f1aadd0d456923d1", + "tarball": "http://registry.npmjs.org/node-recurly/-/node-recurly-0.0.3.tgz" + }, + "0.0.6": { + "shasum": "cde9f655e0211d971b82fd946ee80c97de39bedf", + "tarball": "http://registry.npmjs.org/node-recurly/-/node-recurly-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "166b16a3830c381fa52de0cbf6f39cc92f9b8996", + "tarball": "http://registry.npmjs.org/node-recurly/-/node-recurly-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "a56dca814d5fe4446566f16a4d19adea907e27b7", + "tarball": "http://registry.npmjs.org/node-recurly/-/node-recurly-0.0.8.tgz" + } + }, + "keywords": [ + "recurly", + "e-commerce", + "recurring billing" + ], + "url": "http://registry.npmjs.org/node-recurly/" + }, + "node-redis": { + "name": "node-redis", + "description": "Lightweight, fast, Redis client.", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "Tim-Smart", + "email": "tim@fostle.com" + } + ], + "time": { + "modified": "2011-05-31T22:30:10.209Z", + "created": "2011-02-22T18:04:17.421Z", + "0.1.0": "2011-02-22T18:04:17.813Z", + "0.1.1": "2011-03-07T04:26:00.043Z", + "0.1.2": "2011-03-16T19:14:51.164Z", + "0.1.3": "2011-05-31T22:30:10.210Z" + }, + "author": { + "name": "Tim Smart" + }, + "repository": { + "type": "git", + "url": "git://github.com/Tim-Smart/node-redis.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/node-redis/0.1.0", + "0.1.1": "http://registry.npmjs.org/node-redis/0.1.1", + "0.1.2": "http://registry.npmjs.org/node-redis/0.1.2", + "0.1.3": "http://registry.npmjs.org/node-redis/0.1.3" + }, + "dist": { + "0.1.0": { + "shasum": "a603310439a72c45a0a870de90b41cd248a7bf4d", + "tarball": "http://registry.npmjs.org/node-redis/-/node-redis-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "d2723b981e457020ec19e560242ee74b69f02cd0", + "tarball": "http://registry.npmjs.org/node-redis/-/node-redis-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "4892f8f24b69377f4b1a6d5d8bc453d820d587e9", + "tarball": "http://registry.npmjs.org/node-redis/-/node-redis-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "2287972c2d83123b35e89e80bd8f2ccf7b51867a", + "tarball": "http://registry.npmjs.org/node-redis/-/node-redis-0.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/node-redis/" + }, + "node-redis-mapper": { + "name": "node-redis-mapper", + "description": "Tiny ORM for redis data store", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "anatoliy", + "email": "rpm1602@gmail.com" + } + ], + "time": { + "modified": "2011-01-11T21:16:01.613Z", + "created": "2010-12-22T06:35:58.962Z", + "0.0.1": "2010-12-22T06:35:59.491Z", + "0.0.2": "2011-01-11T21:16:01.613Z" + }, + "author": { + "name": "Anatoliy Chakkaev" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-redis-mapper/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-redis-mapper/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "aefffcfbc815b9ed49448a1d62342988698c9f74", + "tarball": "http://registry.npmjs.org/node-redis-mapper/-/node-redis-mapper-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "1df5934057e6d843c39aaed99e71cf3b739b8c07", + "tarball": "http://registry.npmjs.org/node-redis-mapper/-/node-redis-mapper-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/node-redis-mapper/" + }, + "node-redis-monitor": { + "name": "node-redis-monitor", + "description": "Live redis server monitor", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "saschagehlich", + "email": "sascha@gehlich.us" + } + ], + "time": { + "modified": "2011-03-13T22:24:17.971Z", + "created": "2011-03-13T22:24:17.511Z", + "0.0.1": "2011-03-13T22:24:17.971Z" + }, + "author": { + "name": "Sascha Gehlich", + "email": "contact@filshmedia.net", + "url": "http://www.filshmedia.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/saschagehlich/node-redis-monitor.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-redis-monitor/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "99e2783263aa4b4f63ccfcbf481180732fac3ffb", + "tarball": "http://registry.npmjs.org/node-redis-monitor/-/node-redis-monitor-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/node-redis-monitor/" + }, + "node-restclient": { + "name": "node-restclient", + "description": "node-restclient adds easy-to-use api for basic http methods", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "vvilhonen", + "email": "vesa@vilhonen.com" + } + ], + "versions": { + "0.0.1": "http://registry.npmjs.org/node-restclient/0.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/node-restclient/-/node-restclient-0.0.1.tgz" + } + }, + "keywords": [ + "rest", + "http" + ], + "url": "http://registry.npmjs.org/node-restclient/" + }, + "node-restclient2": { + "name": "node-restclient2", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "adamwiggins", + "email": "adam@heroku.com" + } + ], + "time": { + "modified": "2011-01-13T23:57:51.077Z", + "created": "2011-01-13T23:07:26.739Z", + "0.0.2": "2011-01-13T23:07:27.049Z", + "0.0.3": "2011-01-13T23:57:51.077Z" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/node-restclient2/0.0.2", + "0.0.3": "http://registry.npmjs.org/node-restclient2/0.0.3" + }, + "dist": { + "0.0.2": { + "shasum": "c798b02cc80c9b83ddba2c936bc8f9e004dab8f3", + "tarball": "http://registry.npmjs.org/node-restclient2/-/node-restclient2-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "51d19c00069fa2a07bf8c50d5ba8f84fcfb06cad", + "tarball": "http://registry.npmjs.org/node-restclient2/-/node-restclient2-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/node-restclient2/" + }, + "node-reverse-proxy": { + "name": "node-reverse-proxy", + "description": "A reverse proxy in node.js for HTTP and Websockets", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "pouyajoon", + "email": "pouyajoon@gmail.com" + } + ], + "time": { + "modified": "2011-11-20T16:47:51.444Z", + "created": "2011-11-19T19:37:35.026Z", + "0.0.1": "2011-11-19T19:37:35.627Z", + "0.0.2": "2011-11-19T19:39:01.492Z", + "0.0.3": "2011-11-20T16:47:51.444Z" + }, + "author": { + "name": "Pouya Mohtacham", + "email": "pouyajoon@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-reverse-proxy/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-reverse-proxy/0.0.2", + "0.0.3": "http://registry.npmjs.org/node-reverse-proxy/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "50c6fd1eeb10aee176a32627bc58ed3ee7501ec0", + "tarball": "http://registry.npmjs.org/node-reverse-proxy/-/node-reverse-proxy-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "67e4fbbeb341d64c09fb366e2dc30f1e3877bf77", + "tarball": "http://registry.npmjs.org/node-reverse-proxy/-/node-reverse-proxy-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "a3129a35f3d094a02fb3413f1218a925296b3fbc", + "tarball": "http://registry.npmjs.org/node-reverse-proxy/-/node-reverse-proxy-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/node-reverse-proxy/" + }, + "node-runner": { + "name": "node-runner", + "description": "Spawns multiple node servers running on one or more ports", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "kirk7880", + "email": "kirk7880@gmail.com" + } + ], + "time": { + "modified": "2011-06-13T04:43:55.993Z", + "created": "2011-06-13T04:43:55.580Z", + "0.1.0": "2011-06-13T04:43:55.993Z" + }, + "author": { + "name": "Kirk Gordon", + "email": "kirk7880gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/kirk7880/node-runner.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/node-runner/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "610a982c5f00059e786c3d3a05964c8945b64733", + "tarball": "http://registry.npmjs.org/node-runner/-/node-runner-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/node-runner/" + }, + "node-sc-setup": { + "name": "node-sc-setup", + "description": "Allows SproutCore 2.0 on Node", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "skoom", + "email": "james.murphy.au@me.com" + } + ], + "time": { + "modified": "2011-09-18T09:20:49.269Z", + "created": "2011-09-18T09:20:43.794Z", + "1.0.0": "2011-09-18T09:20:49.269Z" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/node-sc-setup/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "0782c95d8805264d93eb097d44a5d72f06e6ecf1", + "tarball": "http://registry.npmjs.org/node-sc-setup/-/node-sc-setup-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/node-sc-setup/" + }, + "node-schedule": { + "name": "node-schedule", + "description": "A cron-like and not-cron-like job scheduler for Node.", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "mattpat", + "email": "matt@mattpatenaude.com" + } + ], + "time": { + "modified": "2011-10-01T02:14:06.093Z", + "created": "2011-05-12T05:14:49.875Z", + "0.1.0": "2011-05-12T05:14:50.069Z", + "0.1.1": "2011-05-12T05:30:52.690Z", + "0.1.2": "2011-05-12T08:57:56.369Z", + "0.1.3": "2011-05-16T20:54:46.095Z", + "0.1.4": "2011-10-01T02:14:06.093Z" + }, + "author": { + "name": "Matt Patenaude", + "email": "matt@mattpatenaude.com", + "url": "http://mattpatenaude.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mattpat/node-schedule.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/node-schedule/0.1.0", + "0.1.1": "http://registry.npmjs.org/node-schedule/0.1.1", + "0.1.2": "http://registry.npmjs.org/node-schedule/0.1.2", + "0.1.3": "http://registry.npmjs.org/node-schedule/0.1.3", + "0.1.4": "http://registry.npmjs.org/node-schedule/0.1.4" + }, + "dist": { + "0.1.0": { + "shasum": "efa436886f13f40821e83b5247aed2ba2fdd23be", + "tarball": "http://registry.npmjs.org/node-schedule/-/node-schedule-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "1335a989f50a00217f30a51c5b383acaf3785b9a", + "tarball": "http://registry.npmjs.org/node-schedule/-/node-schedule-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "00554fd46c8b7bf147f6e610a707f8968c13a5d2", + "tarball": "http://registry.npmjs.org/node-schedule/-/node-schedule-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "1210c0bfb6173bbe3073f26932f6cb8ab8c8a67c", + "tarball": "http://registry.npmjs.org/node-schedule/-/node-schedule-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "8f1bdab4fa2aaba624cf3b60982d2fbb7c3581eb", + "tarball": "http://registry.npmjs.org/node-schedule/-/node-schedule-0.1.4.tgz" + } + }, + "keywords": [ + "schedule", + "task", + "job", + "cron" + ], + "url": "http://registry.npmjs.org/node-schedule/" + }, + "node-sdlmixer": { + "name": "node-sdlmixer", + "description": "Audio file playback using SDL_mixer for node", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "japj", + "email": "jeroen.janssen@gmail.com" + } + ], + "time": { + "modified": "2011-05-10T06:05:12.554Z", + "created": "2011-05-09T20:45:45.422Z", + "0.0.1": "2011-05-09T20:45:46.493Z", + "0.0.2": "2011-05-10T06:05:12.554Z" + }, + "author": { + "name": "Jeroen Janssen", + "email": "jeroen.janssen@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-sdlmixer/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-sdlmixer/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "62dbe66faa76f1c71203ad8c0cdb381a8ad53f30", + "tarball": "http://registry.npmjs.org/node-sdlmixer/-/node-sdlmixer-0.0.1.tgz", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.10-linux-2.6.38-8-generic": { + "shasum": "56ea3928c85281c01ad34ef108ecd10ea9e526d8", + "tarball": "http://registry.npmjs.org/node-sdlmixer/-/node-sdlmixer-0.0.1-0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.10-linux-2.6.38-8-generic.tgz" + } + } + }, + "0.0.2": { + "shasum": "78b84fdcb5e84de9a9ad1037b64e0d5da2996c60", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.10-linux-2.6.38-8-generic": { + "shasum": "5e5bf97942a01ff94e38ff1d0de3260fa74e8125", + "tarball": "http://registry.npmjs.org/node-sdlmixer/-/node-sdlmixer-0.0.2-0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.10-linux-2.6.38-8-generic.tgz" + } + }, + "tarball": "http://registry.npmjs.org/node-sdlmixer/-/node-sdlmixer-0.0.2.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/node-sdlmixer/" + }, + "node-secure": { + "name": "node-secure", + "description": "Protects globals from being overridden and adds functionality to protect your modules from hacking and code injection", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "ddrcode", + "email": "ddrcode@gmail.com" + } + ], + "time": { + "modified": "2011-07-19T23:53:24.605Z", + "created": "2011-07-19T23:53:23.967Z", + "0.2.0": "2011-07-19T23:53:24.605Z" + }, + "author": { + "name": "David de Rosier", + "email": "ddrcode@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/ddrcode/node-secure.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/node-secure/0.2.0" + }, + "dist": { + "0.2.0": { + "shasum": "7dcbc390a2863c1c04f7371c586ab79a02dea8c7", + "tarball": "http://registry.npmjs.org/node-secure/-/node-secure-0.2.0.tgz" + } + }, + "keywords": [ + "security", + "globals", + "eval", + "node.js" + ], + "url": "http://registry.npmjs.org/node-secure/" + }, + "node-sendgrid": { + "name": "node-sendgrid", + "description": "SendGrid SMTP API headers library", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "foxbunny", + "email": "branko@herdhound.com" + } + ], + "time": { + "modified": "2011-09-07T19:56:41.866Z", + "created": "2011-08-03T19:56:27.593Z", + "0.0.1": "2011-08-03T19:56:28.983Z", + "0.0.2": "2011-08-04T09:30:09.112Z", + "0.0.3": "2011-08-30T13:28:00.142Z", + "0.0.4": "2011-09-07T19:56:41.866Z" + }, + "author": { + "name": "Branko Vukelic", + "email": "branko@herdhound.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/HerdHound/node-sendgrid.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-sendgrid/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-sendgrid/0.0.2", + "0.0.3": "http://registry.npmjs.org/node-sendgrid/0.0.3", + "0.0.4": "http://registry.npmjs.org/node-sendgrid/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "f2c2deb0e1d063f6de0927d11e0351c81c64fa02", + "tarball": "http://registry.npmjs.org/node-sendgrid/-/node-sendgrid-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "6dd00f9ef4ba647c3eff17526505a59097966ab8", + "tarball": "http://registry.npmjs.org/node-sendgrid/-/node-sendgrid-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "161032be56a43d924ec1425787f5b8b474c718ca", + "tarball": "http://registry.npmjs.org/node-sendgrid/-/node-sendgrid-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "65e8aaa62be53749c4e444d70da1eadd3be98f62", + "tarball": "http://registry.npmjs.org/node-sendgrid/-/node-sendgrid-0.0.4.tgz" + } + }, + "keywords": [ + "email", + "smtp", + "sendgrid" + ], + "url": "http://registry.npmjs.org/node-sendgrid/" + }, + "node-server": { + "name": "node-server", + "description": "Node servers launcher.", + "dist-tags": { + "latest": "0.0.23" + }, + "maintainers": [ + { + "name": "dreamlab", + "email": "janecki@gmail.com" + } + ], + "time": { + "modified": "2011-12-12T13:59:24.594Z", + "created": "2011-10-07T10:54:21.233Z", + "0.0.1": "2011-10-07T10:54:23.244Z", + "0.0.2": "2011-10-07T11:47:22.742Z", + "0.0.3": "2011-10-07T16:03:57.032Z", + "0.0.4": "2011-10-10T09:53:08.594Z", + "0.0.5": "2011-10-13T09:16:20.034Z", + "0.0.6": "2011-10-14T12:04:45.719Z", + "0.0.7": "2011-10-14T12:06:40.285Z", + "0.0.8": "2011-10-17T11:30:05.181Z", + "0.0.9": "2011-10-24T12:53:26.343Z", + "0.0.10": "2011-11-10T11:13:49.369Z", + "0.0.11": "2011-11-21T10:47:57.627Z", + "0.0.12": "2011-11-22T12:48:47.092Z", + "0.0.13": "2011-11-22T12:54:59.148Z", + "0.0.14": "2011-11-22T12:57:34.912Z", + "0.0.15": "2011-11-22T13:01:21.845Z", + "0.0.16": "2011-11-22T13:15:02.244Z", + "0.0.17": "2011-11-23T10:30:42.598Z", + "0.0.18": "2011-11-23T11:07:43.181Z", + "0.0.19": "2011-11-24T12:01:19.753Z", + "0.0.20": "2011-11-24T12:05:34.059Z", + "0.0.21": "2011-12-02T11:20:10.906Z", + "0.0.22": "2011-12-09T15:56:20.548Z", + "0.0.23": "2011-12-12T13:59:24.594Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-server/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-server/0.0.2", + "0.0.3": "http://registry.npmjs.org/node-server/0.0.3", + "0.0.4": "http://registry.npmjs.org/node-server/0.0.4", + "0.0.5": "http://registry.npmjs.org/node-server/0.0.5", + "0.0.6": "http://registry.npmjs.org/node-server/0.0.6", + "0.0.7": "http://registry.npmjs.org/node-server/0.0.7", + "0.0.8": "http://registry.npmjs.org/node-server/0.0.8", + "0.0.9": "http://registry.npmjs.org/node-server/0.0.9", + "0.0.10": "http://registry.npmjs.org/node-server/0.0.10", + "0.0.11": "http://registry.npmjs.org/node-server/0.0.11", + "0.0.12": "http://registry.npmjs.org/node-server/0.0.12", + "0.0.13": "http://registry.npmjs.org/node-server/0.0.13", + "0.0.14": "http://registry.npmjs.org/node-server/0.0.14", + "0.0.15": "http://registry.npmjs.org/node-server/0.0.15", + "0.0.16": "http://registry.npmjs.org/node-server/0.0.16", + "0.0.17": "http://registry.npmjs.org/node-server/0.0.17", + "0.0.18": "http://registry.npmjs.org/node-server/0.0.18", + "0.0.19": "http://registry.npmjs.org/node-server/0.0.19", + "0.0.20": "http://registry.npmjs.org/node-server/0.0.20", + "0.0.21": "http://registry.npmjs.org/node-server/0.0.21", + "0.0.22": "http://registry.npmjs.org/node-server/0.0.22", + "0.0.23": "http://registry.npmjs.org/node-server/0.0.23" + }, + "dist": { + "0.0.1": { + "shasum": "0aa8ab50e6612d4caee7717e48bfbb52d45acc95", + "tarball": "http://registry.npmjs.org/node-server/-/node-server-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "fb33dee6c7effaf363aefcda1982f6109922a227", + "tarball": "http://registry.npmjs.org/node-server/-/node-server-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "704ec0d56114c330d5d41498d561b4b9acc316a3", + "tarball": "http://registry.npmjs.org/node-server/-/node-server-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "b60e6f0fd394201c52406c78029c4c1cde99f82f", + "tarball": "http://registry.npmjs.org/node-server/-/node-server-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "c2d60cf746c879990ea4b559974fa2d0804a6f8d", + "tarball": "http://registry.npmjs.org/node-server/-/node-server-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "8580bd4458c749c9139174190424ce3b71785903", + "tarball": "http://registry.npmjs.org/node-server/-/node-server-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "89b3a814392d4c24ecd96ff85cd19e5b758dc6b3", + "tarball": "http://registry.npmjs.org/node-server/-/node-server-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "68978165177b234c0676361932c68fa53cdd71ad", + "tarball": "http://registry.npmjs.org/node-server/-/node-server-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "e159c5b032ea9156709c73fdb3c3acc8c83b9328", + "tarball": "http://registry.npmjs.org/node-server/-/node-server-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "f9d3b6a5e306374e0a668d7fe90e7554ba7276a2", + "tarball": "http://registry.npmjs.org/node-server/-/node-server-0.0.10.tgz" + }, + "0.0.11": { + "shasum": "0574b4fd78d6ec653763cc51c854bbc3af14b2b8", + "tarball": "http://registry.npmjs.org/node-server/-/node-server-0.0.11.tgz" + }, + "0.0.12": { + "shasum": "c108aadb4d4ecf1d7a9f4ba773842df38ec37e24", + "tarball": "http://registry.npmjs.org/node-server/-/node-server-0.0.12.tgz" + }, + "0.0.13": { + "shasum": "96a2ddcedd962ba17f09c3bc0ebe7963af5cd5a2", + "tarball": "http://registry.npmjs.org/node-server/-/node-server-0.0.13.tgz" + }, + "0.0.14": { + "shasum": "e336dc5e3fc7782980ef833dfe01ddc3e07d526a", + "tarball": "http://registry.npmjs.org/node-server/-/node-server-0.0.14.tgz" + }, + "0.0.15": { + "shasum": "7bdf12c48990d4065a1216ceac688a4dae753ca9", + "tarball": "http://registry.npmjs.org/node-server/-/node-server-0.0.15.tgz" + }, + "0.0.16": { + "shasum": "21fcd0a330de6045a0381bd702722be34accbc0a", + "tarball": "http://registry.npmjs.org/node-server/-/node-server-0.0.16.tgz" + }, + "0.0.17": { + "shasum": "a7a7b3023e30052863485488a7b915adf018c681", + "tarball": "http://registry.npmjs.org/node-server/-/node-server-0.0.17.tgz" + }, + "0.0.18": { + "shasum": "98ecfd2fb8dc75baf74d970f01900c59502e7c77", + "tarball": "http://registry.npmjs.org/node-server/-/node-server-0.0.18.tgz" + }, + "0.0.19": { + "shasum": "218a48c2c6744c2e49a43ec2cf028a815318e098", + "tarball": "http://registry.npmjs.org/node-server/-/node-server-0.0.19.tgz" + }, + "0.0.20": { + "shasum": "89eac1c2d73b60ffbf0de2de1f73cd50b151cf7a", + "tarball": "http://registry.npmjs.org/node-server/-/node-server-0.0.20.tgz" + }, + "0.0.21": { + "shasum": "fc8b5006d2f86c96c6c1ae1b4186e317fbe5dce7", + "tarball": "http://registry.npmjs.org/node-server/-/node-server-0.0.21.tgz" + }, + "0.0.22": { + "shasum": "d2a53f9b31dd5d4a5b4a08d2459b00ad77acd860", + "tarball": "http://registry.npmjs.org/node-server/-/node-server-0.0.22.tgz" + }, + "0.0.23": { + "shasum": "04fe6ce57d6b13c8d918bbe61a211b54b583a411", + "tarball": "http://registry.npmjs.org/node-server/-/node-server-0.0.23.tgz" + } + }, + "url": "http://registry.npmjs.org/node-server/" + }, + "node-sizzle": { + "name": "node-sizzle", + "description": "Sizzle powered selectors for libxmljs", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "blago", + "email": "blago@dachev.com" + } + ], + "author": { + "name": "Blagovest Dachev - http://github.com/dachev" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/node-sizzle/0.1.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/node-sizzle/-/node-sizzle-0.1.0.tgz" + } + }, + "keywords": [ + "dom", + "sizzle", + "jquery", + "html", + "xml" + ], + "url": "http://registry.npmjs.org/node-sizzle/" + }, + "node-smsgw": { + "name": "node-smsgw", + "description": "SMS Gateway service", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "jerryjj", + "email": "jerry.jalava@nemein.com" + } + ], + "time": { + "modified": "2011-11-21T08:54:07.071Z", + "created": "2011-11-21T08:54:05.538Z", + "0.0.1": "2011-11-21T08:54:07.071Z" + }, + "author": { + "name": "Jerry Jalava", + "email": "jerry.jalava@nemein.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:nemein/node-smsgw.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-smsgw/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "429b27f9e4454d51906f71f01e29597ea239a956", + "tarball": "http://registry.npmjs.org/node-smsgw/-/node-smsgw-0.0.1.tgz" + } + }, + "keywords": [ + "hook.io", + "hook", + "sms", + "sms gateway" + ], + "url": "http://registry.npmjs.org/node-smsgw/" + }, + "node-soap-client": { + "name": "node-soap-client", + "description": "SOAP client library ", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "minchenkov", + "email": "pavel@minchenkov.com" + } + ], + "time": { + "modified": "2011-10-18T16:46:57.011Z", + "created": "2011-09-15T12:06:28.913Z", + "0.0.1": "2011-09-15T12:06:30.858Z", + "0.0.2": "2011-09-18T18:02:47.651Z", + "0.0.3": "2011-09-25T20:08:33.566Z", + "0.0.4": "2011-09-25T22:32:53.564Z", + "0.0.5": "2011-09-26T15:56:27.389Z", + "0.0.6": "2011-10-11T15:29:42.158Z", + "0.0.7": "2011-10-12T11:41:04.598Z", + "0.0.8": "2011-10-12T12:52:44.225Z", + "0.0.9": "2011-10-12T14:32:16.193Z", + "0.1.0": "2011-10-18T16:46:57.011Z" + }, + "author": { + "name": "Pavel Minchenkov", + "email": "pavel@metahouse.ru" + }, + "repository": { + "type": "git", + "url": "git://github.com/minchenkov/node-soap-client.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-soap-client/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-soap-client/0.0.2", + "0.0.3": "http://registry.npmjs.org/node-soap-client/0.0.3", + "0.0.4": "http://registry.npmjs.org/node-soap-client/0.0.4", + "0.0.5": "http://registry.npmjs.org/node-soap-client/0.0.5", + "0.0.6": "http://registry.npmjs.org/node-soap-client/0.0.6", + "0.0.7": "http://registry.npmjs.org/node-soap-client/0.0.7", + "0.0.8": "http://registry.npmjs.org/node-soap-client/0.0.8", + "0.0.9": "http://registry.npmjs.org/node-soap-client/0.0.9", + "0.1.0": "http://registry.npmjs.org/node-soap-client/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "6d135a3ffe19e82d21f62fea07b1af08811cecce", + "tarball": "http://registry.npmjs.org/node-soap-client/-/node-soap-client-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "ff9e528e3a3a8cdd0f57c8ff41740e2a216a196e", + "tarball": "http://registry.npmjs.org/node-soap-client/-/node-soap-client-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "891f34d20273d3fe9f23708a27b12b00e357efb1", + "tarball": "http://registry.npmjs.org/node-soap-client/-/node-soap-client-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "48067dc3e6b7f5daa101a72b597c27df082ff397", + "tarball": "http://registry.npmjs.org/node-soap-client/-/node-soap-client-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "673cd295cf7bb28e7d64f8f397fe56795336400e", + "tarball": "http://registry.npmjs.org/node-soap-client/-/node-soap-client-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "6250544bd9c8eb7e86efdb9367b7165b9537416f", + "tarball": "http://registry.npmjs.org/node-soap-client/-/node-soap-client-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "ac0e16c070f075bf0cf7dd8b20d16a6d8e8529cf", + "tarball": "http://registry.npmjs.org/node-soap-client/-/node-soap-client-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "f1b997801bade6c91cd3c41839991508294c3211", + "tarball": "http://registry.npmjs.org/node-soap-client/-/node-soap-client-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "585a261a7e9c890a4e32a49933a4cfc3841e27ce", + "tarball": "http://registry.npmjs.org/node-soap-client/-/node-soap-client-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "f047f0d21f7c9d49bba1a1a3bf864274c97a371c", + "tarball": "http://registry.npmjs.org/node-soap-client/-/node-soap-client-0.1.0.tgz" + } + }, + "keywords": [ + "soap", + "wsdl", + "web-services" + ], + "url": "http://registry.npmjs.org/node-soap-client/" + }, + "node-speak": { + "name": "node-speak", + "description": "TTS (Text to Speech) for Node and Browser", + "dist-tags": { + "latest": "0.0.2" + }, + "readme": null, + "maintainers": [ + { + "name": "christopherdebeer", + "email": "christopherdebeer@gmail.com" + } + ], + "time": { + "modified": "2011-11-24T10:09:01.057Z", + "created": "2011-11-24T10:08:59.704Z", + "0.0.2": "2011-11-24T10:09:01.057Z" + }, + "author": { + "name": "Christopher de Beer", + "email": "christopherdebeer@gmail.com", + "url": "https://github.com/christopherdebeer" + }, + "repository": { + "type": "git", + "url": "git://github.com/christopherdebeer/speak.js.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/node-speak/0.0.2" + }, + "dist": { + "0.0.2": { + "shasum": "8df4bd3e9fe9952ffb61830bc93dd8ea2b2fffed", + "tarball": "http://registry.npmjs.org/node-speak/-/node-speak-0.0.2.tgz" + } + }, + "keywords": [ + "TTS", + "speech", + "audio", + "voice" + ], + "url": "http://registry.npmjs.org/node-speak/" + }, + "node-spec": { + "name": "node-spec", + "description": "Extremely minimal specing for node.js.", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "benjaminws", + "email": "benjaminws@just-another.net" + } + ], + "time": { + "modified": "2010-12-30T20:13:50.440Z", + "created": "2010-12-29T18:23:18.776Z", + "0.0.1": "2010-12-29T18:23:18.953Z", + "0.0.2": "2010-12-29T18:40:26.251Z", + "0.0.3": "2010-12-29T21:28:59.770Z", + "0.0.4": "2010-12-30T20:13:50.440Z" + }, + "author": { + "name": "Benjamin W. Smith", + "email": "benjaminws@just-another.net" + }, + "repository": { + "type": "git", + "url": "http://github.com/benjaminws/node-spec.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-spec/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-spec/0.0.2", + "0.0.3": "http://registry.npmjs.org/node-spec/0.0.3", + "0.0.4": "http://registry.npmjs.org/node-spec/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "dffa5c25a970c00dae3d00bbf01d87c49e209b02", + "tarball": "http://registry.npmjs.org/node-spec/-/node-spec-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "60538f914b4ecfe0467f26d0c65abeaa70a6ee25", + "tarball": "http://registry.npmjs.org/node-spec/-/node-spec-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "6b9528e244033d746826a4db10d75fb16ac15fe0", + "tarball": "http://registry.npmjs.org/node-spec/-/node-spec-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "05fc80a68e5eed106611b8e11df6ece4b8119a56", + "tarball": "http://registry.npmjs.org/node-spec/-/node-spec-0.0.4.tgz" + } + }, + "keywords": [ + "testing", + "spec", + "bdd", + "specing" + ], + "url": "http://registry.npmjs.org/node-spec/" + }, + "node-static": { + "name": "node-static", + "description": "simple, compliant file streaming module for node", + "dist-tags": { + "latest": "0.5.9" + }, + "maintainers": [ + { + "name": "cloudhead", + "email": "self@cloudhead.net" + }, + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + } + ], + "time": { + "modified": "2011-11-23T08:38:26.836Z", + "created": "2011-05-02T20:48:29.228Z", + "0.5.6": "2011-05-02T20:48:29.576Z", + "0.5.7": "2011-07-22T16:38:27.129Z", + "0.5.8": "2011-08-09T19:03:16.598Z", + "0.5.9": "2011-08-13T22:05:36.945Z" + }, + "author": { + "name": "Alexis Sellier", + "email": "self@cloudhead.net" + }, + "users": { + "naholyr": true + }, + "versions": { + "0.5.6": "http://registry.npmjs.org/node-static/0.5.6", + "0.5.7": "http://registry.npmjs.org/node-static/0.5.7", + "0.5.8": "http://registry.npmjs.org/node-static/0.5.8", + "0.5.9": "http://registry.npmjs.org/node-static/0.5.9" + }, + "dist": { + "0.5.6": { + "shasum": "50be3328f1d5307e5303ca57137f3dcd665a761e", + "tarball": "http://registry.npmjs.org/node-static/-/node-static-0.5.6.tgz" + }, + "0.5.7": { + "shasum": "e49dd773c5cdd62629de4a2cf1f68800e9ce4dbb", + "tarball": "http://registry.npmjs.org/node-static/-/node-static-0.5.7.tgz" + }, + "0.5.8": { + "shasum": "55de9527a2b8d119ee558e4d99777114741e7cb1", + "tarball": "http://registry.npmjs.org/node-static/-/node-static-0.5.8.tgz" + }, + "0.5.9": { + "shasum": "2f5bf30949e1735958266c269413aebce8cbe899", + "tarball": "http://registry.npmjs.org/node-static/-/node-static-0.5.9.tgz" + } + }, + "keywords": [ + "http", + "static", + "file", + "server" + ], + "url": "http://registry.npmjs.org/node-static/" + }, + "node-static-maccman": { + "name": "node-static-maccman", + "description": "simple, compliant file streaming module for node (with fixes for static paths)", + "dist-tags": { + "latest": "0.5.3" + }, + "maintainers": [ + { + "name": "maccman", + "email": "maccman@gmail.com" + } + ], + "time": { + "modified": "2011-03-30T00:50:00.084Z", + "created": "2011-03-30T00:49:58.954Z", + "0.5.3": "2011-03-30T00:50:00.084Z" + }, + "author": { + "name": "Alexis Sellier", + "email": "self@cloudhead.net" + }, + "versions": { + "0.5.3": "http://registry.npmjs.org/node-static-maccman/0.5.3" + }, + "dist": { + "0.5.3": { + "shasum": "e64f35fd738e295d5ef2c88f550e4ca90755c09e", + "tarball": "http://registry.npmjs.org/node-static-maccman/-/node-static-maccman-0.5.3.tgz" + } + }, + "keywords": [ + "http", + "static", + "file", + "server" + ], + "url": "http://registry.npmjs.org/node-static-maccman/" + }, + "node-statsd": { + "name": "node-statsd", + "description": "node client for Etsy'd StatsD server", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "steveivy", + "email": "steveivy@gmail.com" + } + ], + "time": { + "modified": "2011-08-09T12:49:20.979Z", + "created": "2011-02-25T01:39:53.638Z", + "0.0.1": "2011-02-25T01:39:53.918Z", + "0.0.2": "2011-08-09T12:49:20.979Z" + }, + "author": { + "name": "Steve Ivy" + }, + "repository": { + "type": "git", + "url": "git://github.com/sivy/node-statsd.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-statsd/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-statsd/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "71d8049e2c5b51d7b1a3f9ee76af722a4ddf529e", + "tarball": "http://registry.npmjs.org/node-statsd/-/node-statsd-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "ba96c26d4ec22b4f9501bb332fdf740db5a40ee7", + "tarball": "http://registry.npmjs.org/node-statsd/-/node-statsd-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/node-statsd/" + }, + "node-statsd-instrument": { + "name": "node-statsd-instrument", + "description": "Provides metaprogramming methods to inject StatsD instrumentation using node-statsd", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "syrio", + "email": "asaf.karas@gmail.com" + } + ], + "time": { + "modified": "2011-09-13T08:55:30.137Z", + "created": "2011-09-13T08:55:28.267Z", + "0.0.1": "2011-09-13T08:55:30.137Z" + }, + "author": { + "name": "Syrio" + }, + "repository": { + "type": "git", + "url": "git://github.com/syrio/node-statsd-instrument.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-statsd-instrument/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "eb06b1d592d674d5d0fe27b7cbb2c5c5ae1d8262", + "tarball": "http://registry.npmjs.org/node-statsd-instrument/-/node-statsd-instrument-0.0.1.tgz" + } + }, + "keywords": [ + "StatsD", + "StatsD client", + "Instrumentation" + ], + "url": "http://registry.npmjs.org/node-statsd-instrument/" + }, + "node-std": { + "name": "node-std", + "description": "STD", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "ericmuyser", + "email": "eric@muyser.com" + } + ], + "time": { + "modified": "2011-06-21T08:36:46.154Z", + "created": "2011-06-21T08:36:45.531Z", + "0.1.0": "2011-06-21T08:36:46.154Z" + }, + "author": { + "name": "Eric Muyser", + "email": "eric@muyser.com", + "url": "http://eric.muyser.com/" + }, + "repository": { + "url": "" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/node-std/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "a272b1c3e45d019cb8749f639b33c1d167e6adc7", + "tarball": "http://registry.npmjs.org/node-std/-/node-std-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/node-std/" + }, + "node-store": { + "name": "node-store", + "description": "Mongodb", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "flybyme", + "email": "price.timmy@gmail.com" + } + ], + "time": { + "modified": "2011-08-06T21:00:14.229Z", + "created": "2011-08-06T21:00:12.019Z", + "0.0.1": "2011-08-06T21:00:14.229Z" + }, + "author": { + "name": "Tim", + "email": "flybyme@wiyc.info" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-store/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "88ea40f43c8df5f671488d3f890a7c2c330c5637", + "tarball": "http://registry.npmjs.org/node-store/-/node-store-0.0.1.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/node-store/" + }, + "node-stringprep": { + "name": "node-stringprep", + "description": "ICU StringPrep profiles", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "astro", + "email": "astro@spaceboyz.net" + } + ], + "time": { + "modified": "2011-12-02T13:11:54.824Z", + "created": "2011-02-01T17:20:06.495Z", + "0.0.2": "2011-02-01T17:20:06.495Z", + "0.0.3": "2011-02-01T17:20:06.495Z", + "0.0.4": "2011-06-01T14:14:30.130Z", + "0.0.5": "2011-07-05T22:47:59.751Z", + "0.1.0": "2011-11-02T03:11:35.315Z", + "0.1.1": "2011-11-29T13:34:56.549Z", + "0.1.2": "2011-12-02T13:11:54.824Z" + }, + "users": { + "astro": true + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/node-stringprep/0.0.2", + "0.0.3": "http://registry.npmjs.org/node-stringprep/0.0.3", + "0.0.4": "http://registry.npmjs.org/node-stringprep/0.0.4", + "0.0.5": "http://registry.npmjs.org/node-stringprep/0.0.5", + "0.1.0": "http://registry.npmjs.org/node-stringprep/0.1.0", + "0.1.1": "http://registry.npmjs.org/node-stringprep/0.1.1", + "0.1.2": "http://registry.npmjs.org/node-stringprep/0.1.2" + }, + "dist": { + "0.0.2": { + "tarball": "http://packages:5984/node-stringprep/-/node-stringprep-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "342f4c152fa01275cc9a8f1f1e5a2656ab0ffd91", + "tarball": "http://registry.npmjs.org/node-stringprep/-/node-stringprep-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "d64c79f5ab62b216311376cfb1b4ecdb37770ad5", + "tarball": "http://registry.npmjs.org/node-stringprep/-/node-stringprep-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "09f2bb008d16120f003a4ad0770c66fdfc4471ca", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39.1": { + "shasum": "0b196bef6e269ff32b8be22587f072c172d7f745", + "tarball": "http://registry.npmjs.org/node-stringprep/-/node-stringprep-0.0.5-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39.1.tgz" + } + }, + "tarball": "http://registry.npmjs.org/node-stringprep/-/node-stringprep-0.0.5.tgz" + }, + "0.1.0": { + "shasum": "5b0e90b2d17fa5bb5a614b8b71938ad396c8d208", + "tarball": "http://registry.npmjs.org/node-stringprep/-/node-stringprep-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "8b301bb068cfaad8d309c876363ad428ac2984e3", + "tarball": "http://registry.npmjs.org/node-stringprep/-/node-stringprep-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "cdcccb64c73f7b97d4ff7f9a22412f5fffb53bdc", + "tarball": "http://registry.npmjs.org/node-stringprep/-/node-stringprep-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/node-stringprep/" + }, + "node-synapse": { + "name": "node-synapse", + "description": "An HTTP-based event framework", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "ceineke", + "email": "npm@chriseineke.com" + } + ], + "time": { + "modified": "2011-09-18T04:13:46.021Z", + "created": "2011-09-18T04:13:45.398Z", + "0.0.1": "2011-09-18T04:13:46.021Z" + }, + "author": { + "name": "Chris Eineke", + "email": "chris@chriseineke.com", + "url": "http://chriseineke.com/" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-synapse/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "e506ca865544f7cbaa2e3905ce6fd1b5cf8e08c7", + "tarball": "http://registry.npmjs.org/node-synapse/-/node-synapse-0.0.1.tgz" + } + }, + "keywords": [ + "synapse", + "event", + "framework", + "http", + "rest", + "restful" + ], + "url": "http://registry.npmjs.org/node-synapse/" + }, + "node-syslog": { + "name": "node-syslog", + "description": "Node module to support sending messages to syslog daemon", + "dist-tags": { + "latest": "1.1.1" + }, + "maintainers": [ + { + "name": "schamane", + "email": "nasar.kulyk@googlemail.com" + } + ], + "author": { + "name": "Nazar Kulyk", + "email": "nasar.kulyk@googlemail.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:schamane/node-syslog.git" + }, + "time": { + "modified": "2011-12-12T16:53:01.855Z", + "created": "2011-01-06T10:37:17.414Z", + "0.6.0": "2011-01-06T10:37:17.414Z", + "0.6.1": "2011-01-06T10:37:17.414Z", + "0.6.2": "2011-04-03T14:14:20.864Z", + "1.0.0": "2011-06-03T09:46:41.320Z", + "1.0.2": "2011-09-16T09:01:08.291Z", + "1.1.0": "2011-09-19T12:16:51.919Z", + "1.1.1": "2011-12-12T16:53:01.855Z" + }, + "versions": { + "0.6.0": "http://registry.npmjs.org/node-syslog/0.6.0", + "0.6.1": "http://registry.npmjs.org/node-syslog/0.6.1", + "0.6.2": "http://registry.npmjs.org/node-syslog/0.6.2", + "1.0.0": "http://registry.npmjs.org/node-syslog/1.0.0", + "1.0.2": "http://registry.npmjs.org/node-syslog/1.0.2", + "1.1.0": "http://registry.npmjs.org/node-syslog/1.1.0", + "1.1.1": "http://registry.npmjs.org/node-syslog/1.1.1" + }, + "dist": { + "0.6.0": { + "shasum": "fe9133e4465ce14d18ee24563e0a2b51584c98cc", + "tarball": "http://registry.npmjs.org/node-syslog/-/node-syslog-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "fb52608c6a46b48961bbfca4809e0bd008bd2ccf", + "tarball": "http://registry.npmjs.org/node-syslog/-/node-syslog-0.6.1.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "d26d6369535800f633aa30208703064f2564bb46", + "tarball": "http://registry.npmjs.org/node-syslog/-/node-syslog-0.6.1-0.4-sunos-5.11.tgz" + } + } + }, + "0.6.2": { + "shasum": "68d21a96cc8711eb788ebca963f44efcf0b2057f", + "tarball": "http://registry.npmjs.org/node-syslog/-/node-syslog-0.6.2.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "e7cb4a30cb19d197a9c3db388fa3c6d173b02b95", + "tarball": "http://registry.npmjs.org/node-syslog/-/node-syslog-0.6.2-0.4-sunos-5.11.tgz" + } + } + }, + "1.0.0": { + "shasum": "79c997a444be0cea96374769df958a4a9e5190c9", + "tarball": "http://registry.npmjs.org/node-syslog/-/node-syslog-1.0.0.tgz" + }, + "1.0.2": { + "shasum": "0f7787659245829e5d34ae104f486774c4029403", + "tarball": "http://registry.npmjs.org/node-syslog/-/node-syslog-1.0.2.tgz" + }, + "1.1.0": { + "shasum": "5e1f1cfc52bc59a802b6d7f43bcb35d1ffe6887a", + "tarball": "http://registry.npmjs.org/node-syslog/-/node-syslog-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "3ec654d67bb579e9865129a695d3674d9e6c7813", + "tarball": "http://registry.npmjs.org/node-syslog/-/node-syslog-1.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/node-syslog/" + }, + "node-t": { + "name": "node-t", + "description": "A fast django-like templating engine for node.js", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "skid", + "email": "jordanovskid@gmail.com" + } + ], + "time": { + "modified": "2011-05-02T15:57:38.389Z", + "created": "2011-05-02T15:57:37.780Z", + "0.1.0": "2011-05-02T15:57:38.389Z" + }, + "author": { + "name": "Dusko Jordanovski", + "email": "jordanovskid@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/skid/node-t.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/node-t/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "d6dd809955534454571aeffc36e9eed8a7c39460", + "tarball": "http://registry.npmjs.org/node-t/-/node-t-0.1.0.tgz" + } + }, + "keywords": [ + "template", + "html", + "django", + "sandbox" + ], + "url": "http://registry.npmjs.org/node-t/" + }, + "node-taobao": { + "name": "node-taobao", + "description": "Library for taobao.com api", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "e6nian", + "email": "e6nian@gmail.com" + } + ], + "time": { + "modified": "2011-07-06T01:22:34.549Z", + "created": "2011-06-19T07:27:59.124Z", + "0.0.1": "2011-06-19T07:28:01.294Z", + "0.0.2": "2011-06-19T07:32:27.370Z", + "0.0.3": "2011-07-06T01:22:34.549Z" + }, + "author": { + "name": "e6nian", + "email": "e6nian@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-taobao/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-taobao/0.0.2", + "0.0.3": "http://registry.npmjs.org/node-taobao/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "0cf9d8b8f82f4a310522e60444d00307d201f082", + "tarball": "http://registry.npmjs.org/node-taobao/-/node-taobao-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "85929b2bde8d064e8f2468839fd2139d509f4a8e", + "tarball": "http://registry.npmjs.org/node-taobao/-/node-taobao-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "fcfe104c23cb289545177570f51b78fcae2cfbf7", + "tarball": "http://registry.npmjs.org/node-taobao/-/node-taobao-0.0.3.tgz" + } + }, + "keywords": [ + "taobao", + "top", + "taobao.com" + ], + "url": "http://registry.npmjs.org/node-taobao/" + }, + "node-term-ui": { + "name": "node-term-ui", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "jocafa", + "email": "josh.faul@gmail.com" + } + ], + "time": { + "modified": "2011-08-31T00:42:10.314Z", + "created": "2011-08-31T00:09:25.547Z", + "0.0.1": "2011-08-31T00:09:26.337Z", + "0.0.2": "2011-08-31T00:42:10.314Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-term-ui/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-term-ui/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "870ba7793dfb4bce60042a11b27eb190f0b27f2d", + "tarball": "http://registry.npmjs.org/node-term-ui/-/node-term-ui-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "ba3092c3af6e8e858b629605c29f5400b72b9a15", + "tarball": "http://registry.npmjs.org/node-term-ui/-/node-term-ui-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/node-term-ui/" + }, + "node-tiny": { + "name": "node-tiny", + "description": "an in-process database", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "chjj", + "email": "chjjeffrey@gmail.com" + } + ], + "time": { + "modified": "2011-07-20T06:41:46.854Z", + "created": "2011-05-16T00:18:17.934Z", + "0.0.1": "2011-05-16T00:18:18.372Z", + "0.0.2": "2011-05-23T05:13:40.936Z", + "0.0.4": "2011-07-20T06:41:46.854Z" + }, + "author": { + "name": "Christopher Jeffrey" + }, + "repository": { + "type": "git", + "url": "git://github.com/chjj/node-tiny.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-tiny/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-tiny/0.0.2", + "0.0.4": "http://registry.npmjs.org/node-tiny/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "f68fb88162fea21ecfffc5a6b588a2d9cac7e995", + "tarball": "http://registry.npmjs.org/node-tiny/-/node-tiny-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "adf9845faa810f11e7c8fdec72689ca71d9f58a9", + "tarball": "http://registry.npmjs.org/node-tiny/-/node-tiny-0.0.2.tgz" + }, + "0.0.4": { + "shasum": "a5a9664a377d0aa9157388f54355e9d6b4b6ba23", + "tarball": "http://registry.npmjs.org/node-tiny/-/node-tiny-0.0.4.tgz" + } + }, + "keywords": [ + "database", + "nosql", + "in-process" + ], + "url": "http://registry.npmjs.org/node-tiny/" + }, + "node-tmpl": { + "name": "node-tmpl", + "description": "A template engine inpired from shorttag", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "jetienne", + "email": "jerome.etienne@gmail.com" + } + ], + "time": { + "modified": "2011-02-13T21:55:24.951Z", + "created": "2011-02-13T21:55:24.423Z", + "0.0.1": "2011-02-13T21:55:24.951Z" + }, + "author": { + "name": "Jerome Etienne", + "email": "jerome.etienne@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-tmpl/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "33cb2504bcb632feef5ec4388c70213a49cf2aa2", + "tarball": "http://registry.npmjs.org/node-tmpl/-/node-tmpl-0.0.1.tgz" + } + }, + "keywords": [ + "template" + ], + "url": "http://registry.npmjs.org/node-tmpl/" + }, + "node-topsy": { + "name": "node-topsy", + "description": "A node.js module for interacting with the Topsy API.", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "cvee", + "email": "cvee@me.com" + } + ], + "time": { + "modified": "2011-11-03T01:50:02.422Z", + "created": "2011-11-03T01:50:02.111Z", + "1.0.0": "2011-11-03T01:50:02.422Z" + }, + "author": { + "name": "Chris Verwymeren", + "email": "chris@istrategylabs.com", + "url": "http://www.istrategylabs.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/istrategylabs/node-topsy.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/node-topsy/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "dd4c6f117050d8ad743ca8b07cebd8db48c7bbdc", + "tarball": "http://registry.npmjs.org/node-topsy/-/node-topsy-1.0.0.tgz" + } + }, + "keywords": [ + "topsy" + ], + "url": "http://registry.npmjs.org/node-topsy/" + }, + "node-transloadit": { + "name": "node-transloadit", + "description": "Node.js client for Transloadit API", + "dist-tags": { + "latest": "0.0.2" + }, + "readme": "# Overview\n\nThis is a Node.js client for the [Transloadit](http://transloadit.com/) service, a cloud transcoder for images, video and other content.\n\nBefore you get started you'll want to \n[enable API authentication](http://transloadit.com/docs/authentication).\n\n# Installation\n\n npm install node-transloadit\n\n# API\n\n```javascript\n\nvar transloadit = require('node-transloadit');\n\nvar client = new transloadit('AUTH_KEY', 'AUTH_SECRET');\n\nclient.send(params, ok_callback, fail_callback);\n\n```\n\n# Example\n\n```javascript\n\nvar transloadit = require('node-transloadit');\n\nvar client = new transloadit('AUTH_KEY', 'AUTH_SECRET');\nvar params = {\n steps: {\n ':original': {\n robot: '/http/import',\n url: 'http://example.com/file.mov'\n }\n },\n template_id: 'your_template_id_here'\n};\n\nclient.send(params, function(ok) {\n // success callback [optional]\n console.log('Success: ' + JSON.stringify(ok));\n}, function(err) {\n // error callback [optional]\n console.log('Error: ' + JSON.stringify(err));\n});\n\n```\n\n# Authors\n\n- Geoff Wilson (gmwils@gmail.com)\n", + "maintainers": [ + { + "name": "gmwils", + "email": "gmwils@gmail.com" + } + ], + "time": { + "modified": "2011-11-30T12:45:19.315Z", + "created": "2011-11-29T22:37:14.340Z", + "0.0.1": "2011-11-29T22:37:15.690Z", + "0.0.2": "2011-11-30T12:45:19.315Z" + }, + "author": { + "name": "Geoff Wilson", + "email": "gmwils@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/gmwils/node-transloadit.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-transloadit/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-transloadit/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "da1ac25a0f206c8ce61cf3f036320d731f3c5289", + "tarball": "http://registry.npmjs.org/node-transloadit/-/node-transloadit-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "9d5c7e158b1158e9fc40f6e848624bd5280d1492", + "tarball": "http://registry.npmjs.org/node-transloadit/-/node-transloadit-0.0.2.tgz" + } + }, + "keywords": [ + "transloadit", + "encoding", + "transcoding", + "video", + "audio", + "mp3" + ], + "url": "http://registry.npmjs.org/node-transloadit/" + }, + "node-twilio": { + "name": "node-twilio", + "description": "Simple TwilioML and conversation helper library.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "Tim-Smart", + "email": "tim@fostle.com" + } + ], + "time": { + "modified": "2011-05-15T22:02:51.168Z", + "created": "2011-03-18T18:35:07.365Z", + "0.0.1": "2011-03-18T18:35:07.774Z", + "0.0.2": "2011-03-24T23:06:49.771Z", + "0.0.3": "2011-04-03T22:01:13.974Z", + "0.1.0": "2011-05-14T20:01:02.493Z", + "0.1.1": "2011-05-15T22:02:51.168Z" + }, + "author": { + "name": "Votizen Inc.", + "email": "admin@votizen.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/votizen/node-twilio.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-twilio/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-twilio/0.0.2", + "0.0.3": "http://registry.npmjs.org/node-twilio/0.0.3", + "0.1.0": "http://registry.npmjs.org/node-twilio/0.1.0", + "0.1.1": "http://registry.npmjs.org/node-twilio/0.1.1" + }, + "dist": { + "0.0.1": { + "shasum": "94003d474adfd61e1a59befe624fd4a59a4e56bb", + "tarball": "http://registry.npmjs.org/node-twilio/-/node-twilio-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c13612d53fd2c3870955147ca3ea3289e617f2dd", + "tarball": "http://registry.npmjs.org/node-twilio/-/node-twilio-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "a24d2eadfd20f0c35f3463e83b9236724129f727", + "tarball": "http://registry.npmjs.org/node-twilio/-/node-twilio-0.0.3.tgz" + }, + "0.1.0": { + "shasum": "e3e91ec6b92f6b34affbf349b22ea854f8ab7201", + "tarball": "http://registry.npmjs.org/node-twilio/-/node-twilio-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "a9522db88dfa9558dc2bd73eac482d3df97c5e0f", + "tarball": "http://registry.npmjs.org/node-twilio/-/node-twilio-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/node-twilio/" + }, + "node-twitter": { + "name": "node-twitter", + "description": "A node.js module for interacting with the Twitter API.", + "dist-tags": { + "latest": "0.1.1" + }, + "readme": "# Description\n\nnode-twitter is a node.js module for interacting with the Twitter API.\n", + "maintainers": [ + { + "name": "cvee", + "email": "cvee@me.com" + } + ], + "time": { + "modified": "2011-12-06T16:07:43.592Z", + "created": "2011-12-05T19:43:25.843Z", + "0.1.0": "2011-12-05T19:43:26.822Z", + "0.1.1": "2011-12-06T16:07:43.592Z" + }, + "author": { + "name": "Chris Verwymeren", + "email": "chris@istrategylabs.com", + "url": "http://www.istrategylabs.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/istrategylabs/node-twitter.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/node-twitter/0.1.0", + "0.1.1": "http://registry.npmjs.org/node-twitter/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "954363b53d6cc9eb469cf4abf0f985b6e91638ce", + "tarball": "http://registry.npmjs.org/node-twitter/-/node-twitter-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "4a280e17772f76916eda415fb33423fb9d8a4ba2", + "tarball": "http://registry.npmjs.org/node-twitter/-/node-twitter-0.1.1.tgz" + } + }, + "keywords": [ + "twitter" + ], + "url": "http://registry.npmjs.org/node-twitter/" + }, + "node-twitter-mailer": { + "name": "node-twitter-mailer", + "description": "A simple module to receive tweets by email.", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "srod", + "email": "rodolphe@2clics.net" + } + ], + "time": { + "modified": "2011-06-18T00:18:32.983Z", + "created": "2011-06-18T00:04:27.149Z", + "0.1.0": "2011-06-18T00:04:27.825Z", + "0.1.1": "2011-06-18T00:07:52.266Z", + "0.1.2": "2011-06-18T00:18:32.984Z" + }, + "author": { + "name": "Rodolphe Stoclin", + "email": "rodolphe@2clics.net", + "url": "http://2clics.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/srod/node-twitter-mailer.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/node-twitter-mailer/0.1.0", + "0.1.1": "http://registry.npmjs.org/node-twitter-mailer/0.1.1", + "0.1.2": "http://registry.npmjs.org/node-twitter-mailer/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "78f1ed99ee1cacf8b50b13aaa2cd0205e2081520", + "tarball": "http://registry.npmjs.org/node-twitter-mailer/-/node-twitter-mailer-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "967f99f9a1410876d13aa6dea4bd006a15045397", + "tarball": "http://registry.npmjs.org/node-twitter-mailer/-/node-twitter-mailer-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "dbf74ec6add7453384b4104451722cf0137c1dd7", + "tarball": "http://registry.npmjs.org/node-twitter-mailer/-/node-twitter-mailer-0.1.2.tgz" + } + }, + "keywords": [ + "twitter", + "email" + ], + "url": "http://registry.npmjs.org/node-twitter-mailer/" + }, + "node-usb": { + "name": "node-usb", + "description": "experimental libusb bindings", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "schakko", + "email": "ckl@ecw.de" + } + ], + "author": { + "name": "Christopher Klein" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-usb/0.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/node-usb/-/node-usb-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/node-usb/" + }, + "node-uuid": { + "name": "node-uuid", + "description": "Rigorous implementation of RFC4122 (v1 and v4) UUIDs.", + "dist-tags": { + "latest": "1.3.1" + }, + "maintainers": [ + { + "name": "broofa", + "email": "robert@broofa.com" + } + ], + "time": { + "modified": "2011-11-30T12:47:06.122Z", + "created": "2011-02-04T15:03:20.452Z", + "1.1.0": "2011-02-04T15:03:20.843Z", + "1.2.0": "2011-05-31T07:10:14.083Z", + "1.3.0": "2011-11-29T09:36:46.083Z", + "1.3.1": "2011-11-30T12:47:06.122Z" + }, + "author": { + "name": "Robert Kieffer", + "email": "robert@broofa.com" + }, + "users": { + "isaacs": true, + "gevorg": true, + "pgte": true, + "naholyr": true + }, + "versions": { + "1.1.0": "http://registry.npmjs.org/node-uuid/1.1.0", + "1.2.0": "http://registry.npmjs.org/node-uuid/1.2.0", + "1.3.0": "http://registry.npmjs.org/node-uuid/1.3.0", + "1.3.1": "http://registry.npmjs.org/node-uuid/1.3.1" + }, + "dist": { + "1.1.0": { + "shasum": "5b5e8caf072b0cf371ef4721f25a5361190cd207", + "tarball": "http://registry.npmjs.org/node-uuid/-/node-uuid-1.1.0.tgz" + }, + "1.2.0": { + "shasum": "48b8f1e65cc60415baeaf2cdee5aafd0f1084bfa", + "tarball": "http://registry.npmjs.org/node-uuid/-/node-uuid-1.2.0.tgz" + }, + "1.3.0": { + "shasum": "64f731ed17d27c91d50147a9475ae85c223194f4", + "tarball": "http://registry.npmjs.org/node-uuid/-/node-uuid-1.3.0.tgz" + }, + "1.3.1": { + "shasum": "1d835a6f376bd1990f3c34a043bbea4975f60775", + "tarball": "http://registry.npmjs.org/node-uuid/-/node-uuid-1.3.1.tgz" + } + }, + "keywords": [ + "uuid", + "guid", + "rfc4122" + ], + "url": "http://registry.npmjs.org/node-uuid/" + }, + "node-vapor.js": { + "name": "node-vapor.js", + "description": "Node.JS integration with vapor.js", + "dist-tags": { + "latest": "1.7.1" + }, + "maintainers": [ + { + "name": "emerleite", + "email": "emerleite@gmail.com" + } + ], + "time": { + "modified": "2011-01-12T16:59:22.368Z", + "created": "2011-01-12T16:59:21.824Z", + "1.7.1": "2011-01-12T16:59:22.368Z" + }, + "author": { + "name": "Emerson Macedo", + "email": "emerleite@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/emerleite/node-vapor.js.git" + }, + "versions": { + "1.7.1": "http://registry.npmjs.org/node-vapor.js/1.7.1" + }, + "dist": { + "1.7.1": { + "tarball": "http://registry.npmjs.org/node-vapor.js/-/node-vapor.js-1.7.1.tgz" + } + }, + "url": "http://registry.npmjs.org/node-vapor.js/" + }, + "node-version": { + "name": "node-version", + "description": "Get NodeJS current version", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "srod", + "email": "rodolphe@2clics.net" + } + ], + "time": { + "modified": "2011-08-12T23:38:51.496Z", + "created": "2011-08-12T23:38:47.752Z", + "0.1.0": "2011-08-12T23:38:51.496Z" + }, + "author": { + "name": "Rodolphe Stoclin", + "email": "rodolphe@2clics.net", + "url": "http://2clics.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/srod/node-version.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/node-version/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "0c265da21faa6df8aaeeb3714b9cce0a0b856012", + "tarball": "http://registry.npmjs.org/node-version/-/node-version-0.1.0.tgz" + } + }, + "keywords": [ + "version" + ], + "url": "http://registry.npmjs.org/node-version/" + }, + "node-webapp": { + "name": "node-webapp", + "description": "A base webapp framework using jade, express, cradle and CouchDB.", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "DanBUK", + "email": "dan@f-box.org" + } + ], + "time": { + "modified": "2011-04-10T18:29:32.943Z", + "created": "2011-04-10T15:25:35.300Z", + "0.0.1": "2011-04-10T15:25:35.720Z", + "0.0.2": "2011-04-10T15:29:24.869Z", + "0.0.3": "2011-04-10T16:19:03.872Z", + "0.0.4": "2011-04-10T18:16:43.426Z", + "0.0.5": "2011-04-10T18:29:32.943Z" + }, + "author": { + "name": "DanBUK", + "email": "dan@f-box.org" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-webapp/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-webapp/0.0.2", + "0.0.3": "http://registry.npmjs.org/node-webapp/0.0.3", + "0.0.4": "http://registry.npmjs.org/node-webapp/0.0.4", + "0.0.5": "http://registry.npmjs.org/node-webapp/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "bb574a393342024af6c3f38d6f57605eb4f5aa36", + "tarball": "http://registry.npmjs.org/node-webapp/-/node-webapp-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "0bbe91710cda28545db8d045c33122d6e0046dab", + "tarball": "http://registry.npmjs.org/node-webapp/-/node-webapp-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "28d235adb7ac7f20e5e7e85a9f61fe18b0d6252b", + "tarball": "http://registry.npmjs.org/node-webapp/-/node-webapp-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "0c53e9a06ce81fb03d496f087b3bbebedcd40cd4", + "tarball": "http://registry.npmjs.org/node-webapp/-/node-webapp-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "095b5a70bfcb663541d2ebfd51dae1a31342ae60", + "tarball": "http://registry.npmjs.org/node-webapp/-/node-webapp-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/node-webapp/" + }, + "node-wiki": { + "name": "node-wiki", + "description": "A wiki for NodeJS.", + "dist-tags": { + "latest": "0.0.01-prototype" + }, + "maintainers": [ + { + "name": "monokrome", + "email": "monokrome@limpidtech.com" + } + ], + "time": { + "modified": "2011-03-28T04:27:24.274Z", + "created": "2011-03-26T08:30:32.430Z", + "0.0.0-prototype": "2011-03-26T08:30:32.731Z", + "0.0.01-prototype": "2011-03-28T04:27:24.274Z" + }, + "author": { + "name": "Brandon R. Stoner", + "email": "monokrome@monokro.me", + "url": "http://monokro.me/" + }, + "repository": { + "type": "git", + "url": "git://github.com/LimpidTech/node-wiki.git" + }, + "versions": { + "0.0.0-prototype": "http://registry.npmjs.org/node-wiki/0.0.0-prototype", + "0.0.01-prototype": "http://registry.npmjs.org/node-wiki/0.0.01-prototype" + }, + "dist": { + "0.0.0-prototype": { + "shasum": "06397109c1205ed7c65a96b26a3182af5356722d", + "tarball": "http://registry.npmjs.org/node-wiki/-/node-wiki-0.0.0-prototype.tgz" + }, + "0.0.01-prototype": { + "shasum": "3f02f9f226f36436ca38b4f3e845f04264a0cad5", + "tarball": "http://registry.npmjs.org/node-wiki/-/node-wiki-0.0.01-prototype.tgz" + } + }, + "url": "http://registry.npmjs.org/node-wiki/" + }, + "node-wkhtml": { + "name": "node-wkhtml", + "description": "Wrapper for the khtmltopdf and khtmltoimg project.", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "mike.hemesath", + "email": "mike.hemesath@gmail.com" + } + ], + "time": { + "modified": "2011-08-01T18:36:10.825Z", + "created": "2011-07-13T23:37:57.146Z", + "0.0.2": "2011-07-13T23:37:57.821Z", + "0.0.3": "2011-08-01T18:36:10.825Z" + }, + "author": { + "name": "Mike Hemesath", + "email": "mike.hemesath@gmail.com" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/node-wkhtml/0.0.2", + "0.0.3": "http://registry.npmjs.org/node-wkhtml/0.0.3" + }, + "dist": { + "0.0.2": { + "shasum": "6cde1b081467cf823d319896b2cafe188bb6b76d", + "tarball": "http://registry.npmjs.org/node-wkhtml/-/node-wkhtml-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "a52337b5a6e3ed2593ee18a4440cdaeaec72441d", + "tarball": "http://registry.npmjs.org/node-wkhtml/-/node-wkhtml-0.0.3.tgz" + } + }, + "keywords": [ + "html", + "pdf", + "img", + "wkhtml", + "webkit", + "converter", + "node" + ], + "url": "http://registry.npmjs.org/node-wkhtml/" + }, + "node-xerces": { + "name": "node-xerces", + "description": "Node bindings for Xerces-C++ (A validating XML parser written in a portable subset of C++)", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "hij1nx", + "email": "hij1nx@me.com" + } + ], + "time": { + "modified": "2011-05-01T03:33:27.644Z", + "created": "2011-05-01T03:33:27.415Z", + "0.0.1": "2011-05-01T03:33:27.644Z" + }, + "author": { + "name": "hij1nx" + }, + "repository": { + "type": "git", + "url": "git://github.com/hij1nx/node-xerces.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-xerces/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "e5c5af68a72cdcbc6bff20efd3bebaf089898c87", + "tarball": "http://registry.npmjs.org/node-xerces/-/node-xerces-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/node-xerces/" + }, + "node-xml": { + "name": "node-xml", + "description": "An xml parser for node.js written in Javascript.", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "robrighter", + "email": "robrighter@gmail.com" + } + ], + "time": { + "modified": "2011-02-12T21:26:56.890Z", + "created": "2011-02-12T21:26:56.695Z", + "1.0.0": "2011-02-12T21:26:56.890Z" + }, + "author": { + "name": "Rob Righter", + "email": "robrighter@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/robrighter/node-xml.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/node-xml/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "04ca2e5f5690124727a439fd8f422070d3046967", + "tarball": "http://registry.npmjs.org/node-xml/-/node-xml-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/node-xml/" + }, + "node-xmpp": { + "name": "node-xmpp", + "description": "Idiomatic XMPP client, component & server library for node.js", + "dist-tags": { + "latest": "0.3.1" + }, + "maintainers": [ + { + "name": "astro", + "email": "astro@spaceboyz.net" + } + ], + "author": { + "name": "Stephan Maka" + }, + "time": { + "modified": "2011-11-29T14:10:32.116Z", + "created": "2011-01-30T17:42:48.618Z", + "0.0.3": "2011-01-30T17:42:48.618Z", + "0.0.4": "2011-01-30T17:42:48.618Z", + "0.1.0": "2011-01-30T17:42:48.618Z", + "0.1.1": "2011-01-30T17:42:48.618Z", + "0.2.0": "2011-01-30T17:42:48.618Z", + "0.2.1": "2011-01-30T17:42:48.618Z", + "0.2.2": "2011-01-30T17:42:48.618Z", + "0.2.3": "2011-01-30T17:42:48.618Z", + "0.2.4": "2011-01-30T17:42:48.618Z", + "0.2.5": "2011-01-31T18:21:55.176Z", + "0.2.6": "2011-03-02T13:40:14.096Z", + "0.2.7": "2011-05-23T18:42:26.697Z", + "0.2.8": "2011-06-07T19:23:11.364Z", + "0.2.9": "2011-06-09T23:26:16.874Z", + "0.2.10": "2011-07-25T19:57:17.980Z", + "0.2.11": "2011-09-15T00:07:21.094Z", + "0.3.0": "2011-11-20T22:40:29.724Z", + "0.3.1": "2011-11-29T14:10:32.116Z" + }, + "users": { + "astro": true + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/node-xmpp/0.0.3", + "0.0.4": "http://registry.npmjs.org/node-xmpp/0.0.4", + "0.1.0": "http://registry.npmjs.org/node-xmpp/0.1.0", + "0.1.1": "http://registry.npmjs.org/node-xmpp/0.1.1", + "0.2.0": "http://registry.npmjs.org/node-xmpp/0.2.0", + "0.2.1": "http://registry.npmjs.org/node-xmpp/0.2.1", + "0.2.2": "http://registry.npmjs.org/node-xmpp/0.2.2", + "0.2.3": "http://registry.npmjs.org/node-xmpp/0.2.3", + "0.2.4": "http://registry.npmjs.org/node-xmpp/0.2.4", + "0.2.5": "http://registry.npmjs.org/node-xmpp/0.2.5", + "0.2.6": "http://registry.npmjs.org/node-xmpp/0.2.6", + "0.2.7": "http://registry.npmjs.org/node-xmpp/0.2.7", + "0.2.8": "http://registry.npmjs.org/node-xmpp/0.2.8", + "0.2.9": "http://registry.npmjs.org/node-xmpp/0.2.9", + "0.2.10": "http://registry.npmjs.org/node-xmpp/0.2.10", + "0.2.11": "http://registry.npmjs.org/node-xmpp/0.2.11", + "0.3.0": "http://registry.npmjs.org/node-xmpp/0.3.0", + "0.3.1": "http://registry.npmjs.org/node-xmpp/0.3.1" + }, + "dist": { + "0.0.3": { + "tarball": "http://packages:5984/node-xmpp/-/node-xmpp-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://packages:5984/node-xmpp/-/node-xmpp-0.0.4.tgz" + }, + "0.1.0": { + "tarball": "http://packages:5984/node-xmpp/-/node-xmpp-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://packages:5984/node-xmpp/-/node-xmpp-0.1.1.tgz" + }, + "0.2.0": { + "tarball": "http://packages:5984/node-xmpp/-/node-xmpp-0.2.0.tgz" + }, + "0.2.1": { + "tarball": "http://packages:5984/node-xmpp/-/node-xmpp-0.2.1.tgz" + }, + "0.2.2": { + "tarball": "http://packages:5984/node-xmpp/-/node-xmpp-0.2.2.tgz" + }, + "0.2.3": { + "tarball": "http://registry.npmjs.org/node-xmpp/-/node-xmpp-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "2d1ab01205dcd07061f2d4c9accccec7a9bc3855", + "tarball": "http://registry.npmjs.org/node-xmpp/-/node-xmpp-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "796171cf18b9d46f617588af80f16ff7055b64af", + "tarball": "http://registry.npmjs.org/node-xmpp/-/node-xmpp-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "affab58c40580f7076650375ae22e48e3abb68ad", + "tarball": "http://registry.npmjs.org/node-xmpp/-/node-xmpp-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "b5d8ccae8e4530caaf66c634086a29bfa97a6936", + "tarball": "http://registry.npmjs.org/node-xmpp/-/node-xmpp-0.2.7.tgz" + }, + "0.2.8": { + "shasum": "72b27592d5d167a1b318e09a9965ba3285193e5d", + "tarball": "http://registry.npmjs.org/node-xmpp/-/node-xmpp-0.2.8.tgz" + }, + "0.2.9": { + "shasum": "6ee4f3d7fa4dcec34c7f5aa4c6cc7c77aa8dce3a", + "tarball": "http://registry.npmjs.org/node-xmpp/-/node-xmpp-0.2.9.tgz" + }, + "0.2.10": { + "shasum": "3ed63b8fb44e25172d1537d127bb9d22c2caf1a9", + "tarball": "http://registry.npmjs.org/node-xmpp/-/node-xmpp-0.2.10.tgz" + }, + "0.2.11": { + "shasum": "c2b20f8dcba74950d3ab59b2ce6dcf02de723f18", + "tarball": "http://registry.npmjs.org/node-xmpp/-/node-xmpp-0.2.11.tgz" + }, + "0.3.0": { + "shasum": "9485e73686a9e4a39f7bf25ce5d01541cedc36e9", + "tarball": "http://registry.npmjs.org/node-xmpp/-/node-xmpp-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "1601d16fe4f4c2c7815ac936b75e060d580c935b", + "tarball": "http://registry.npmjs.org/node-xmpp/-/node-xmpp-0.3.1.tgz" + } + }, + "url": "http://registry.npmjs.org/node-xmpp/" + }, + "node-xmpp-bosh": { + "name": "node-xmpp-bosh", + "description": "An XMPP BOSH server written for node.js in javascript", + "dist-tags": { + "latest": "0.5.2" + }, + "maintainers": [ + { + "name": "dhruvbird", + "email": "dhruvbird@gmail.com" + } + ], + "time": { + "modified": "2011-11-12T04:29:29.016Z", + "created": "2011-03-21T15:50:00.113Z", + "0.0.1": "2011-03-21T15:50:01.210Z", + "0.0.2": "2011-03-25T07:53:48.878Z", + "0.0.3": "2011-03-28T19:45:05.435Z", + "0.0.4": "2011-03-31T08:02:19.919Z", + "0.0.5": "2011-04-02T07:50:12.614Z", + "0.0.6": "2011-04-05T10:22:38.640Z", + "0.0.7": "2011-04-05T11:58:16.171Z", + "0.0.8": "2011-04-08T14:02:10.226Z", + "0.0.9": "2011-04-14T06:12:49.935Z", + "0.0.10": "2011-04-17T09:38:29.735Z", + "0.1.0": "2011-04-20T11:39:25.056Z", + "0.1.1": "2011-04-21T10:29:18.119Z", + "0.1.2": "2011-04-21T13:36:42.083Z", + "0.1.3": "2011-04-22T09:14:01.176Z", + "0.1.4": "2011-04-27T17:08:14.906Z", + "0.1.6": "2011-05-01T11:45:09.053Z", + "0.1.7": "2011-05-02T12:20:24.675Z", + "0.1.8": "2011-05-02T13:02:28.884Z", + "0.1.9": "2011-05-03T11:42:15.382Z", + "0.1.10": "2011-05-03T13:51:33.290Z", + "0.1.11": "2011-05-11T09:42:39.508Z", + "0.1.12": "2011-05-14T17:02:12.757Z", + "0.1.13": "2011-05-18T10:42:11.505Z", + "0.1.14": "2011-05-24T13:28:36.225Z", + "0.1.15": "2011-05-27T07:41:45.716Z", + "0.2.0": "2011-06-06T13:47:50.563Z", + "0.2.1": "2011-06-07T08:50:10.336Z", + "0.2.2": "2011-06-07T14:29:18.550Z", + "0.2.3": "2011-06-10T05:06:30.827Z", + "0.3.0": "2011-06-14T17:51:08.319Z", + "0.3.1": "2011-06-17T17:11:53.296Z", + "0.3.2": "2011-06-20T10:58:22.779Z", + "0.3.3": "2011-07-09T06:43:36.427Z", + "0.4.0": "2011-07-09T06:44:04.743Z", + "0.4.1": "2011-08-15T17:10:28.664Z", + "0.4.2": "2011-09-22T12:13:40.121Z", + "0.4.3": "2011-10-05T20:16:48.178Z", + "0.4.4": "2011-10-13T15:16:23.933Z", + "0.4.5": "2011-10-14T16:46:48.830Z", + "0.4.6": "2011-10-17T14:01:29.386Z", + "0.4.7": "2011-10-18T11:05:54.884Z", + "0.4.8": "2011-10-18T12:29:12.994Z", + "0.5.0": "2011-11-09T10:27:25.284Z", + "0.5.1": "2011-11-11T17:37:20.868Z", + "0.5.2": "2011-11-12T04:29:29.016Z" + }, + "author": { + "name": "Dhruv Matani" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-xmpp-bosh/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-xmpp-bosh/0.0.2", + "0.0.3": "http://registry.npmjs.org/node-xmpp-bosh/0.0.3", + "0.0.4": "http://registry.npmjs.org/node-xmpp-bosh/0.0.4", + "0.0.5": "http://registry.npmjs.org/node-xmpp-bosh/0.0.5", + "0.0.6": "http://registry.npmjs.org/node-xmpp-bosh/0.0.6", + "0.0.7": "http://registry.npmjs.org/node-xmpp-bosh/0.0.7", + "0.0.8": "http://registry.npmjs.org/node-xmpp-bosh/0.0.8", + "0.0.9": "http://registry.npmjs.org/node-xmpp-bosh/0.0.9", + "0.0.10": "http://registry.npmjs.org/node-xmpp-bosh/0.0.10", + "0.1.0": "http://registry.npmjs.org/node-xmpp-bosh/0.1.0", + "0.1.1": "http://registry.npmjs.org/node-xmpp-bosh/0.1.1", + "0.1.2": "http://registry.npmjs.org/node-xmpp-bosh/0.1.2", + "0.1.3": "http://registry.npmjs.org/node-xmpp-bosh/0.1.3", + "0.1.4": "http://registry.npmjs.org/node-xmpp-bosh/0.1.4", + "0.1.6": "http://registry.npmjs.org/node-xmpp-bosh/0.1.6", + "0.1.7": "http://registry.npmjs.org/node-xmpp-bosh/0.1.7", + "0.1.8": "http://registry.npmjs.org/node-xmpp-bosh/0.1.8", + "0.1.9": "http://registry.npmjs.org/node-xmpp-bosh/0.1.9", + "0.1.10": "http://registry.npmjs.org/node-xmpp-bosh/0.1.10", + "0.1.11": "http://registry.npmjs.org/node-xmpp-bosh/0.1.11", + "0.1.12": "http://registry.npmjs.org/node-xmpp-bosh/0.1.12", + "0.1.13": "http://registry.npmjs.org/node-xmpp-bosh/0.1.13", + "0.1.14": "http://registry.npmjs.org/node-xmpp-bosh/0.1.14", + "0.1.15": "http://registry.npmjs.org/node-xmpp-bosh/0.1.15", + "0.2.0": "http://registry.npmjs.org/node-xmpp-bosh/0.2.0", + "0.2.1": "http://registry.npmjs.org/node-xmpp-bosh/0.2.1", + "0.2.2": "http://registry.npmjs.org/node-xmpp-bosh/0.2.2", + "0.2.3": "http://registry.npmjs.org/node-xmpp-bosh/0.2.3", + "0.3.0": "http://registry.npmjs.org/node-xmpp-bosh/0.3.0", + "0.3.1": "http://registry.npmjs.org/node-xmpp-bosh/0.3.1", + "0.3.2": "http://registry.npmjs.org/node-xmpp-bosh/0.3.2", + "0.3.3": "http://registry.npmjs.org/node-xmpp-bosh/0.3.3", + "0.4.0": "http://registry.npmjs.org/node-xmpp-bosh/0.4.0", + "0.4.1": "http://registry.npmjs.org/node-xmpp-bosh/0.4.1", + "0.4.2": "http://registry.npmjs.org/node-xmpp-bosh/0.4.2", + "0.4.3": "http://registry.npmjs.org/node-xmpp-bosh/0.4.3", + "0.4.4": "http://registry.npmjs.org/node-xmpp-bosh/0.4.4", + "0.4.5": "http://registry.npmjs.org/node-xmpp-bosh/0.4.5", + "0.4.6": "http://registry.npmjs.org/node-xmpp-bosh/0.4.6", + "0.4.7": "http://registry.npmjs.org/node-xmpp-bosh/0.4.7", + "0.4.8": "http://registry.npmjs.org/node-xmpp-bosh/0.4.8", + "0.5.0": "http://registry.npmjs.org/node-xmpp-bosh/0.5.0", + "0.5.1": "http://registry.npmjs.org/node-xmpp-bosh/0.5.1", + "0.5.2": "http://registry.npmjs.org/node-xmpp-bosh/0.5.2" + }, + "dist": { + "0.0.1": { + "shasum": "629d88f0becf462c4fd4d4e33586ea4aa0f381e0", + "tarball": "http://registry.npmjs.org/node-xmpp-bosh/-/node-xmpp-bosh-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "513b598df15da3af40a30e9b329162ef691d67e3", + "tarball": "http://registry.npmjs.org/node-xmpp-bosh/-/node-xmpp-bosh-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "b03180b3f3ed2456c0a05cce4947624194b8368a", + "tarball": "http://registry.npmjs.org/node-xmpp-bosh/-/node-xmpp-bosh-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "4af69b4db157d0b59287dc1bfedbf09114dfc68b", + "tarball": "http://registry.npmjs.org/node-xmpp-bosh/-/node-xmpp-bosh-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "672fde7595aeb2b9586df623c95d581a8de19ab9", + "tarball": "http://registry.npmjs.org/node-xmpp-bosh/-/node-xmpp-bosh-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "12805c80a0e1404bd01c77e01055589de883b481", + "tarball": "http://registry.npmjs.org/node-xmpp-bosh/-/node-xmpp-bosh-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "25a399dad1fe23d3d01415754672ebedb095b807", + "tarball": "http://registry.npmjs.org/node-xmpp-bosh/-/node-xmpp-bosh-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "660ec7758bce1b5588c7aba1f9f31defdc6cd799", + "tarball": "http://registry.npmjs.org/node-xmpp-bosh/-/node-xmpp-bosh-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "d3b9f3ee02dd7579073347c3f1ecb1e7846342d5", + "tarball": "http://registry.npmjs.org/node-xmpp-bosh/-/node-xmpp-bosh-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "7b076a25c9d0923afcba238d2bd746ecb9082a3f", + "tarball": "http://registry.npmjs.org/node-xmpp-bosh/-/node-xmpp-bosh-0.0.10.tgz" + }, + "0.1.0": { + "shasum": "047a26d4414bb091e180df0d5787dc998090fa4c", + "tarball": "http://registry.npmjs.org/node-xmpp-bosh/-/node-xmpp-bosh-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "6852f40575f1c7629b986ef384df0bad6d80ad89", + "tarball": "http://registry.npmjs.org/node-xmpp-bosh/-/node-xmpp-bosh-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "671b6067ec883492004e7998bc3db8edee3e2b40", + "tarball": "http://registry.npmjs.org/node-xmpp-bosh/-/node-xmpp-bosh-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "9ee0029bff5ed72c323965a6087c562cc50ef0e5", + "tarball": "http://registry.npmjs.org/node-xmpp-bosh/-/node-xmpp-bosh-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "0d6695c1f726e7a5a8fdeb9fb2bff2c53b6bbebb", + "tarball": "http://registry.npmjs.org/node-xmpp-bosh/-/node-xmpp-bosh-0.1.4.tgz" + }, + "0.1.6": { + "shasum": "2c4b7dbdbfe1ac8b3c25cc3e107e04767bd8ba27", + "tarball": "http://registry.npmjs.org/node-xmpp-bosh/-/node-xmpp-bosh-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "0f89f967d88f083340eaa8d620020b480e38ff50", + "tarball": "http://registry.npmjs.org/node-xmpp-bosh/-/node-xmpp-bosh-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "9d10d1224fd7ab38d3ea446ab67c258ee20a13ab", + "tarball": "http://registry.npmjs.org/node-xmpp-bosh/-/node-xmpp-bosh-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "cb66994419677691bc91e1c8d2e57b7344ff92e4", + "tarball": "http://registry.npmjs.org/node-xmpp-bosh/-/node-xmpp-bosh-0.1.9.tgz" + }, + "0.1.10": { + "shasum": "aac24f41c83d1872eeb3eba3531cb5802146af34", + "tarball": "http://registry.npmjs.org/node-xmpp-bosh/-/node-xmpp-bosh-0.1.10.tgz" + }, + "0.1.11": { + "shasum": "2b0b04d10d646feb4e3419e8a2988377e473c9f9", + "tarball": "http://registry.npmjs.org/node-xmpp-bosh/-/node-xmpp-bosh-0.1.11.tgz" + }, + "0.1.12": { + "shasum": "4d3b0aaa7b2ec40a6ba6008a43c21011b0b5e24e", + "tarball": "http://registry.npmjs.org/node-xmpp-bosh/-/node-xmpp-bosh-0.1.12.tgz" + }, + "0.1.13": { + "shasum": "6f29fd05fef8d74f44a82318fa15a29b1dbd81cd", + "tarball": "http://registry.npmjs.org/node-xmpp-bosh/-/node-xmpp-bosh-0.1.13.tgz" + }, + "0.1.14": { + "shasum": "1e37aaa065c01bccbefb1e3418dd30c9893f316c", + "tarball": "http://registry.npmjs.org/node-xmpp-bosh/-/node-xmpp-bosh-0.1.14.tgz" + }, + "0.1.15": { + "shasum": "7318071246ecdb0cf325f8e294a9e14b593ac9eb", + "tarball": "http://registry.npmjs.org/node-xmpp-bosh/-/node-xmpp-bosh-0.1.15.tgz" + }, + "0.2.0": { + "shasum": "4cb5432e9ba16a9a6f3597e4cc6e22683c7e54f9", + "tarball": "http://registry.npmjs.org/node-xmpp-bosh/-/node-xmpp-bosh-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "0f6796114a38bcd3d813884ebe387bf739325ea8", + "tarball": "http://registry.npmjs.org/node-xmpp-bosh/-/node-xmpp-bosh-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "087ba298c981a259a2bade0ee26ecce24430c9d6", + "tarball": "http://registry.npmjs.org/node-xmpp-bosh/-/node-xmpp-bosh-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "8369cbba63a16a24f6061e97d2463118b7890451", + "tarball": "http://registry.npmjs.org/node-xmpp-bosh/-/node-xmpp-bosh-0.2.3.tgz" + }, + "0.3.0": { + "shasum": "4607704e33ed165e3bcc7dd9e8c8dbf2837382c5", + "tarball": "http://registry.npmjs.org/node-xmpp-bosh/-/node-xmpp-bosh-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "a1599a6f8436d9d47f1dca6e7c84fecebf7f47d9", + "tarball": "http://registry.npmjs.org/node-xmpp-bosh/-/node-xmpp-bosh-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "2e69a7f51951ff65604b9759d1fba39dfc3d6b71", + "tarball": "http://registry.npmjs.org/node-xmpp-bosh/-/node-xmpp-bosh-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "2b085a63b54f4b5d83a6f699d88da0566761a7d2", + "tarball": "http://registry.npmjs.org/node-xmpp-bosh/-/node-xmpp-bosh-0.3.3.tgz" + }, + "0.4.0": { + "shasum": "c0cadb237f557772a444e56e29604a6e1e54de2f", + "tarball": "http://registry.npmjs.org/node-xmpp-bosh/-/node-xmpp-bosh-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "f185c4f890c6a4124612e6a6eafc57b5c8ec5939", + "tarball": "http://registry.npmjs.org/node-xmpp-bosh/-/node-xmpp-bosh-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "736fb8bc84de42203322e28b72cd9ce5f49956dd", + "tarball": "http://registry.npmjs.org/node-xmpp-bosh/-/node-xmpp-bosh-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "cc8fe45f6e2b1ec4a05adfc063a7d25da610f0d4", + "tarball": "http://registry.npmjs.org/node-xmpp-bosh/-/node-xmpp-bosh-0.4.3.tgz" + }, + "0.4.4": { + "shasum": "5e9f668027a9395222f050a9b5fc879e1a95715d", + "tarball": "http://registry.npmjs.org/node-xmpp-bosh/-/node-xmpp-bosh-0.4.4.tgz" + }, + "0.4.5": { + "shasum": "b9fa1be844f24d03df05abfb1090873654dc489c", + "tarball": "http://registry.npmjs.org/node-xmpp-bosh/-/node-xmpp-bosh-0.4.5.tgz" + }, + "0.4.6": { + "shasum": "07c066f7f8764f7810c8eb64df83115fe86869a7", + "tarball": "http://registry.npmjs.org/node-xmpp-bosh/-/node-xmpp-bosh-0.4.6.tgz" + }, + "0.4.7": { + "shasum": "f4cc8bfba0460180a17f078f279ae00364a64943", + "tarball": "http://registry.npmjs.org/node-xmpp-bosh/-/node-xmpp-bosh-0.4.7.tgz" + }, + "0.4.8": { + "shasum": "d2c5d32c4f30590ee20e3fcaad84607b9ee54505", + "tarball": "http://registry.npmjs.org/node-xmpp-bosh/-/node-xmpp-bosh-0.4.8.tgz" + }, + "0.5.0": { + "shasum": "1d6bd3d8e906c3f1048b8438337855b129c8c6fa", + "tarball": "http://registry.npmjs.org/node-xmpp-bosh/-/node-xmpp-bosh-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "50c425c33ceb4fe9ecf548aae29cc4882b80d1b6", + "tarball": "http://registry.npmjs.org/node-xmpp-bosh/-/node-xmpp-bosh-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "f9c62309a0c3bd4f8352b0e011ab7b06120ff320", + "tarball": "http://registry.npmjs.org/node-xmpp-bosh/-/node-xmpp-bosh-0.5.2.tgz" + } + }, + "url": "http://registry.npmjs.org/node-xmpp-bosh/" + }, + "node-xmpp-via-bosh": { + "name": "node-xmpp-via-bosh", + "description": "xmpp library via bosh", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "anoopc", + "email": "anoopchaurasiya1@gmail.com" + } + ], + "time": { + "modified": "2011-07-15T11:51:26.061Z", + "created": "2011-07-15T11:51:24.734Z", + "0.0.1": "2011-07-15T11:51:26.061Z" + }, + "author": { + "name": "Anoop Chaurasiya" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-xmpp-via-bosh/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "071934c8befba4b0fd095a4912b4f17fbcbc9f07", + "tarball": "http://registry.npmjs.org/node-xmpp-via-bosh/-/node-xmpp-via-bosh-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/node-xmpp-via-bosh/" + }, + "node.io": { + "name": "node.io", + "description": "A distributed data scraping and processing framework", + "dist-tags": { + "latest": "0.4.5" + }, + "maintainers": [ + { + "name": "cohara87", + "email": "cohara87@gmail.com" + } + ], + "author": { + "name": "Chris O'Hara", + "email": "cohara87@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/chriso/node.io.git" + }, + "time": { + "modified": "2011-12-13T07:41:01.382Z", + "created": "2010-12-20T05:17:49.445Z", + "0.1.0b": "2010-12-20T05:17:49.445Z", + "0.1.0c": "2010-12-20T05:17:49.445Z", + "0.1.0d": "2010-12-20T05:17:49.445Z", + "0.1.0e": "2010-12-20T05:17:49.445Z", + "0.1.0f": "2010-12-20T05:17:49.445Z", + "0.1.0g": "2010-12-20T05:17:49.445Z", + "0.1.1-1": "2010-12-20T05:17:49.445Z", + "0.1.1-2": "2010-12-20T05:17:49.445Z", + "0.1.1-3": "2010-12-20T05:17:49.445Z", + "0.1.1-4": "2010-12-20T05:17:49.445Z", + "0.1.1-6": "2010-12-20T05:17:49.445Z", + "0.1.1-7": "2010-12-20T05:17:49.445Z", + "0.1.1-8": "2010-12-20T05:17:49.445Z", + "0.1.1-9": "2010-12-20T05:17:49.445Z", + "0.1.1-10": "2010-12-20T05:17:49.445Z", + "0.1.1-11": "2010-12-20T05:17:49.445Z", + "0.1.1-12": "2010-12-20T05:17:49.445Z", + "0.1.1-13": "2010-12-20T05:17:49.445Z", + "0.1.1-14": "2010-12-20T05:17:49.445Z", + "0.1.1-15": "2010-12-20T05:17:49.445Z", + "0.1.1-16": "2010-12-20T05:17:49.445Z", + "0.1.1-17": "2010-12-20T05:17:49.445Z", + "0.1.1-18": "2010-12-20T05:17:49.446Z", + "0.1.1-19": "2010-12-20T05:17:49.446Z", + "0.2.0-1": "2010-12-20T05:17:49.446Z", + "0.2.0-2": "2010-12-20T05:17:49.446Z", + "0.2.0-3": "2010-12-20T05:17:49.446Z", + "0.2.0-4": "2010-12-20T05:17:49.446Z", + "0.2.1-1": "2010-12-20T05:17:49.446Z", + "0.2.1-2": "2010-12-20T05:17:49.446Z", + "0.2.1-3": "2010-12-20T05:17:49.446Z", + "0.2.1-4": "2010-12-20T05:17:49.446Z", + "0.2.1-5": "2010-12-20T05:17:49.446Z", + "0.2.1-6": "2010-12-21T02:05:00.890Z", + "0.2.1-7": "2010-12-21T04:27:52.538Z", + "0.2.1-8": "2010-12-21T04:32:04.682Z", + "0.2.1-9": "2010-12-21T04:38:21.336Z", + "0.2.1-10": "2011-01-06T12:27:33.692Z", + "0.2.1-11": "2011-01-07T03:08:54.797Z", + "0.2.1-12": "2011-01-09T02:57:05.703Z", + "0.2.1-13": "2011-01-09T02:59:29.502Z", + "0.2.1-14": "2011-01-09T10:22:53.674Z", + "0.2.1-15": "2011-01-13T10:25:53.184Z", + "0.2.1-17": "2011-01-23T20:30:39.634Z", + "0.2.1-18": "2011-01-25T07:32:29.453Z", + "0.2.1-20": "2011-01-28T20:29:17.065Z", + "0.2.2-1": "2011-02-07T09:14:00.227Z", + "0.2.2-2": "2011-02-07T09:15:33.261Z", + "0.2.2-3": "2011-02-07T10:37:07.523Z", + "0.2.2-4": "2011-02-09T11:36:40.526Z", + "0.2.2-5": "2011-02-09T12:04:08.009Z", + "0.2.2-6": "2011-02-19T00:13:19.148Z", + "0.2.3-1": "2011-02-20T21:55:27.198Z", + "0.2.3-2": "2011-03-01T06:16:12.668Z", + "0.2.4": "2011-03-06T06:26:14.900Z", + "0.2.4-1": "2011-03-06T06:40:00.122Z", + "0.2.4-3": "2011-03-07T08:57:26.903Z", + "0.2.4-4": "2011-03-07T09:08:30.999Z", + "0.2.5-1": "2011-03-08T09:13:20.729Z", + "0.2.5-2": "2011-03-10T09:50:48.132Z", + "0.2.5-3": "2011-03-10T11:44:20.032Z", + "0.2.5-4": "2011-03-18T22:58:34.833Z", + "0.2.5-5": "2011-03-18T23:07:35.433Z", + "0.2.5-6": "2011-04-18T08:36:00.120Z", + "0.2.5-7": "2011-04-18T20:52:25.035Z", + "0.2.6": "2011-04-27T11:41:16.595Z", + "0.2.7": "2011-04-27T12:07:14.601Z", + "0.2.8": "2011-05-02T09:01:30.600Z", + "0.2.9": "2011-05-15T10:44:44.024Z", + "0.2.9-2": "2011-05-16T10:28:40.596Z", + "0.2.9-3": "2011-05-19T09:31:47.179Z", + "0.2.9-4": "2011-05-26T11:23:30.747Z", + "0.3.0": "2011-05-31T04:09:08.248Z", + "0.3.1": "2011-06-14T09:02:47.743Z", + "0.3.2": "2011-06-21T23:13:04.410Z", + "0.3.3": "2011-06-22T10:49:55.102Z", + "0.3.4": "2011-07-19T11:03:29.448Z", + "0.3.5": "2011-07-19T11:23:28.748Z", + "0.3.6": "2011-07-20T11:02:22.257Z", + "0.3.7": "2011-08-18T09:45:32.282Z", + "0.3.8": "2011-09-19T12:07:14.015Z", + "0.3.9": "2011-10-05T06:46:47.374Z", + "0.4.0": "2011-10-07T23:49:41.171Z", + "0.4.1": "2011-11-05T20:35:02.512Z", + "0.4.2": "2011-11-20T06:40:19.560Z", + "0.4.3": "2011-11-24T20:37:53.812Z", + "0.4.4": "2011-12-05T20:18:39.726Z", + "0.4.5": "2011-12-13T07:41:01.382Z" + }, + "versions": { + "0.1.0b": "http://registry.npmjs.org/node.io/0.1.0b", + "0.1.0c": "http://registry.npmjs.org/node.io/0.1.0c", + "0.1.0d": "http://registry.npmjs.org/node.io/0.1.0d", + "0.1.0e": "http://registry.npmjs.org/node.io/0.1.0e", + "0.1.0f": "http://registry.npmjs.org/node.io/0.1.0f", + "0.1.0g": "http://registry.npmjs.org/node.io/0.1.0g", + "0.1.1-1": "http://registry.npmjs.org/node.io/0.1.1-1", + "0.1.1-2": "http://registry.npmjs.org/node.io/0.1.1-2", + "0.1.1-3": "http://registry.npmjs.org/node.io/0.1.1-3", + "0.1.1-4": "http://registry.npmjs.org/node.io/0.1.1-4", + "0.1.1-6": "http://registry.npmjs.org/node.io/0.1.1-6", + "0.1.1-7": "http://registry.npmjs.org/node.io/0.1.1-7", + "0.1.1-8": "http://registry.npmjs.org/node.io/0.1.1-8", + "0.1.1-9": "http://registry.npmjs.org/node.io/0.1.1-9", + "0.1.1-10": "http://registry.npmjs.org/node.io/0.1.1-10", + "0.1.1-11": "http://registry.npmjs.org/node.io/0.1.1-11", + "0.1.1-12": "http://registry.npmjs.org/node.io/0.1.1-12", + "0.1.1-13": "http://registry.npmjs.org/node.io/0.1.1-13", + "0.1.1-14": "http://registry.npmjs.org/node.io/0.1.1-14", + "0.1.1-15": "http://registry.npmjs.org/node.io/0.1.1-15", + "0.1.1-16": "http://registry.npmjs.org/node.io/0.1.1-16", + "0.1.1-17": "http://registry.npmjs.org/node.io/0.1.1-17", + "0.1.1-18": "http://registry.npmjs.org/node.io/0.1.1-18", + "0.1.1-19": "http://registry.npmjs.org/node.io/0.1.1-19", + "0.2.0-1": "http://registry.npmjs.org/node.io/0.2.0-1", + "0.2.0-2": "http://registry.npmjs.org/node.io/0.2.0-2", + "0.2.0-3": "http://registry.npmjs.org/node.io/0.2.0-3", + "0.2.0-4": "http://registry.npmjs.org/node.io/0.2.0-4", + "0.2.1-1": "http://registry.npmjs.org/node.io/0.2.1-1", + "0.2.1-2": "http://registry.npmjs.org/node.io/0.2.1-2", + "0.2.1-3": "http://registry.npmjs.org/node.io/0.2.1-3", + "0.2.1-4": "http://registry.npmjs.org/node.io/0.2.1-4", + "0.2.1-5": "http://registry.npmjs.org/node.io/0.2.1-5", + "0.2.1-6": "http://registry.npmjs.org/node.io/0.2.1-6", + "0.2.1-7": "http://registry.npmjs.org/node.io/0.2.1-7", + "0.2.1-8": "http://registry.npmjs.org/node.io/0.2.1-8", + "0.2.1-9": "http://registry.npmjs.org/node.io/0.2.1-9", + "0.2.1-10": "http://registry.npmjs.org/node.io/0.2.1-10", + "0.2.1-11": "http://registry.npmjs.org/node.io/0.2.1-11", + "0.2.1-12": "http://registry.npmjs.org/node.io/0.2.1-12", + "0.2.1-13": "http://registry.npmjs.org/node.io/0.2.1-13", + "0.2.1-14": "http://registry.npmjs.org/node.io/0.2.1-14", + "0.2.1-15": "http://registry.npmjs.org/node.io/0.2.1-15", + "0.2.1-17": "http://registry.npmjs.org/node.io/0.2.1-17", + "0.2.1-18": "http://registry.npmjs.org/node.io/0.2.1-18", + "0.2.1-20": "http://registry.npmjs.org/node.io/0.2.1-20", + "0.2.2-1": "http://registry.npmjs.org/node.io/0.2.2-1", + "0.2.2-2": "http://registry.npmjs.org/node.io/0.2.2-2", + "0.2.2-3": "http://registry.npmjs.org/node.io/0.2.2-3", + "0.2.2-4": "http://registry.npmjs.org/node.io/0.2.2-4", + "0.2.2-5": "http://registry.npmjs.org/node.io/0.2.2-5", + "0.2.2-6": "http://registry.npmjs.org/node.io/0.2.2-6", + "0.2.3-1": "http://registry.npmjs.org/node.io/0.2.3-1", + "0.2.3-2": "http://registry.npmjs.org/node.io/0.2.3-2", + "0.2.4": "http://registry.npmjs.org/node.io/0.2.4", + "0.2.4-1": "http://registry.npmjs.org/node.io/0.2.4-1", + "0.2.4-3": "http://registry.npmjs.org/node.io/0.2.4-3", + "0.2.4-4": "http://registry.npmjs.org/node.io/0.2.4-4", + "0.2.5-1": "http://registry.npmjs.org/node.io/0.2.5-1", + "0.2.5-2": "http://registry.npmjs.org/node.io/0.2.5-2", + "0.2.5-3": "http://registry.npmjs.org/node.io/0.2.5-3", + "0.2.5-4": "http://registry.npmjs.org/node.io/0.2.5-4", + "0.2.5-5": "http://registry.npmjs.org/node.io/0.2.5-5", + "0.2.5-6": "http://registry.npmjs.org/node.io/0.2.5-6", + "0.2.5-7": "http://registry.npmjs.org/node.io/0.2.5-7", + "0.2.6": "http://registry.npmjs.org/node.io/0.2.6", + "0.2.7": "http://registry.npmjs.org/node.io/0.2.7", + "0.2.8": "http://registry.npmjs.org/node.io/0.2.8", + "0.2.9": "http://registry.npmjs.org/node.io/0.2.9", + "0.2.9-2": "http://registry.npmjs.org/node.io/0.2.9-2", + "0.2.9-3": "http://registry.npmjs.org/node.io/0.2.9-3", + "0.2.9-4": "http://registry.npmjs.org/node.io/0.2.9-4", + "0.3.0": "http://registry.npmjs.org/node.io/0.3.0", + "0.3.1": "http://registry.npmjs.org/node.io/0.3.1", + "0.3.2": "http://registry.npmjs.org/node.io/0.3.2", + "0.3.3": "http://registry.npmjs.org/node.io/0.3.3", + "0.3.4": "http://registry.npmjs.org/node.io/0.3.4", + "0.3.5": "http://registry.npmjs.org/node.io/0.3.5", + "0.3.6": "http://registry.npmjs.org/node.io/0.3.6", + "0.3.7": "http://registry.npmjs.org/node.io/0.3.7", + "0.3.8": "http://registry.npmjs.org/node.io/0.3.8", + "0.3.9": "http://registry.npmjs.org/node.io/0.3.9", + "0.4.0": "http://registry.npmjs.org/node.io/0.4.0", + "0.4.1": "http://registry.npmjs.org/node.io/0.4.1", + "0.4.2": "http://registry.npmjs.org/node.io/0.4.2", + "0.4.3": "http://registry.npmjs.org/node.io/0.4.3", + "0.4.4": "http://registry.npmjs.org/node.io/0.4.4", + "0.4.5": "http://registry.npmjs.org/node.io/0.4.5" + }, + "dist": { + "0.1.0b": { + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.1.0b.tgz" + }, + "0.1.0c": { + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.1.0c.tgz" + }, + "0.1.0d": { + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.1.0d.tgz" + }, + "0.1.0e": { + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.1.0e.tgz" + }, + "0.1.0f": { + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.1.0f.tgz" + }, + "0.1.0g": { + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.1.0g.tgz" + }, + "0.1.1-1": { + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.1.1-1.tgz" + }, + "0.1.1-2": { + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.1.1-2.tgz" + }, + "0.1.1-3": { + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.1.1-3.tgz" + }, + "0.1.1-4": { + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.1.1-4.tgz" + }, + "0.1.1-6": { + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.1.1-6.tgz" + }, + "0.1.1-7": { + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.1.1-7.tgz" + }, + "0.1.1-8": { + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.1.1-8.tgz" + }, + "0.1.1-9": { + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.1.1-9.tgz" + }, + "0.1.1-10": { + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.1.1-10.tgz" + }, + "0.1.1-11": { + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.1.1-11.tgz" + }, + "0.1.1-12": { + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.1.1-12.tgz" + }, + "0.1.1-13": { + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.1.1-13.tgz" + }, + "0.1.1-14": { + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.1.1-14.tgz" + }, + "0.1.1-15": { + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.1.1-15.tgz" + }, + "0.1.1-16": { + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.1.1-16.tgz" + }, + "0.1.1-17": { + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.1.1-17.tgz" + }, + "0.1.1-18": { + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.1.1-18.tgz" + }, + "0.1.1-19": { + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.1.1-19.tgz" + }, + "0.2.0-1": { + "shasum": "75853264192be42750b3da12a3a0e366e5448a54", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.0-1.tgz" + }, + "0.2.0-2": { + "shasum": "17796057d791e29481bdf8edc445f8a00f13fe36", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.0-2.tgz" + }, + "0.2.0-3": { + "shasum": "6995a25d2551e8fd713206bf93633bc51da9b1e0", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.0-3.tgz" + }, + "0.2.0-4": { + "shasum": "529bc7b7e9134e5c18afdbf1d87e9793f990a96f", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.0-4.tgz" + }, + "0.2.1-1": { + "shasum": "a4970dc62a87dddafc5e540983beb4ae3dd15146", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.1-1.tgz" + }, + "0.2.1-2": { + "shasum": "c1edce60cb92eff76b7dfc0174586c5116e1a9b3", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.1-2.tgz" + }, + "0.2.1-3": { + "shasum": "610e6faa838614dd48b8c9ed8b9cf86e89d3853d", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.1-3.tgz" + }, + "0.2.1-4": { + "shasum": "8c679c7cfed715aa054866e95dadc8338bc0e191", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.1-4.tgz" + }, + "0.2.1-5": { + "shasum": "c2cd0081a41217e3eb08ba8207fb6bcd500499b6", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.1-5.tgz" + }, + "0.2.1-6": { + "shasum": "fd22901bcbec583fe5c8863ba4edfc2740e68a8e", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.1-6.tgz" + }, + "0.2.1-7": { + "shasum": "45d100c273303bf7eee8f183c38afef5533065da", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.1-7.tgz" + }, + "0.2.1-8": { + "shasum": "1aebea9709b7953b6460444dfd983b3b01c1b19e", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.1-8.tgz" + }, + "0.2.1-9": { + "shasum": "bffc1795dc20dae80abcf9fb27bd3de1354daf85", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.1-9.tgz" + }, + "0.2.1-10": { + "shasum": "66f69c732b846d48329eea82b65c6f40fe5787dc", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.1-10.tgz" + }, + "0.2.1-11": { + "shasum": "b963ecde50af84a6b8b5388168349f68c23ffe7b", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.1-11.tgz" + }, + "0.2.1-12": { + "shasum": "14bed8c0870ff46eab0f3bb0dbda85931324fce8", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.1-12.tgz" + }, + "0.2.1-13": { + "shasum": "718f28261f25fbe5cdaff735f970239c180f6171", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.1-13.tgz" + }, + "0.2.1-14": { + "shasum": "2563fe6d56256b48018cd1bfdc96fe2717c7ce6a", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.1-14.tgz" + }, + "0.2.1-15": { + "shasum": "6357fa91212e989cdceed7b9be1f113d4c26a77d", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.1-15.tgz" + }, + "0.2.1-17": { + "shasum": "9f8c35fed93d66bba5d41d6e3b434f83fa456a63", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.1-17.tgz" + }, + "0.2.1-18": { + "shasum": "d64c660d5ad8de9f0b6bd11aa042be54ef1425de", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.1-18.tgz" + }, + "0.2.1-20": { + "shasum": "a104651408160ba704ef20f53a5d8862bacb2648", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.1-20.tgz" + }, + "0.2.2-1": { + "shasum": "c471716e206fabad7c9d49c5a081f17ee693cd8c", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.2-1.tgz" + }, + "0.2.2-2": { + "shasum": "961306dfc981fafed362e0b2d937212b9e062ef7", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.2-2.tgz" + }, + "0.2.2-3": { + "shasum": "a0a0cb08dbc7aa857dcd70451fb411226f5ed7f1", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.2-3.tgz" + }, + "0.2.2-4": { + "shasum": "8f039547307e1eae3d76c2e1ce3074b1ee7db178", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.2-4.tgz" + }, + "0.2.2-5": { + "shasum": "92b736611df8e77f09cc8ff496d8e34ad0d7a169", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.2-5.tgz" + }, + "0.2.2-6": { + "shasum": "2bd44e3d95aaa5910fc47991a0abae78748e06e4", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.2-6.tgz" + }, + "0.2.3-1": { + "shasum": "0362539276c6188e781bd0c764b330dd2066bcc0", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.3-1.tgz" + }, + "0.2.3-2": { + "shasum": "7e87f7367fbc611c92aca80a3ddea46c781df9a7", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.3-2.tgz" + }, + "0.2.4": { + "shasum": "f09d04349c99d9e92a5486f97aaae91c7dc87fd9", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.4.tgz" + }, + "0.2.4-1": { + "shasum": "54aabbb37b913f52dea8684a9e8a743fd231a8d1", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.4-1.tgz" + }, + "0.2.4-3": { + "shasum": "36266c8d6ef7943578e6c547b93c19f88c27b40f", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.4-3.tgz" + }, + "0.2.4-4": { + "shasum": "7b334c9591346a374bb7ad6c91bfcc1375f9988d", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.4-4.tgz" + }, + "0.2.5-1": { + "shasum": "ff9bd71834a1b98bfa0b5e867c94c5e820fb32e4", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.5-1.tgz" + }, + "0.2.5-2": { + "shasum": "f6a444174dc36b5a5cc23893a9ef608e56be292f", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.5-2.tgz" + }, + "0.2.5-3": { + "shasum": "44cf30c4403467ec20076dc7583e2ebddfc5c59a", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.5-3.tgz" + }, + "0.2.5-4": { + "shasum": "3b334ffb12887869ad0d6f6742d92a8d930911f8", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.5-4.tgz" + }, + "0.2.5-5": { + "shasum": "fa4f5ac1456bc4895978d048c4393d109167fdd5", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.5-5.tgz" + }, + "0.2.5-6": { + "shasum": "7e5b6957d70e39aa406710b04c9790e6c5fa9251", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.5-6.tgz" + }, + "0.2.5-7": { + "shasum": "e8314192b967b2f9842e7e511ea939e98f1c50b2", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.5-7.tgz" + }, + "0.2.6": { + "shasum": "9d62c4826c368434da0540779123694814dd5f93", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "9917243ea499d865b3c39034aee798557dbab81d", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.7.tgz" + }, + "0.2.8": { + "shasum": "4e2443d1d1c25f3ac369bef9dde951c4ed03f3b9", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.8.tgz" + }, + "0.2.9": { + "shasum": "2dcb80e37428d2cbc301537469faf15d868cf0ca", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.9.tgz" + }, + "0.2.9-2": { + "shasum": "e0b351bba4547d0b967b9aad5bfa5805ea4ed7f0", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.9-2.tgz" + }, + "0.2.9-3": { + "shasum": "c5af0a96b91c6a8a37dd13b9a0eeb0cf896ddaae", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.9-3.tgz" + }, + "0.2.9-4": { + "shasum": "0d0c12c986746054dd8d684de5d14634e8146150", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.2.9-4.tgz" + }, + "0.3.0": { + "shasum": "7fe4eeaa19c974551f78b3c0d161754083877071", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "4609aace90807ef2bb155ee2572098bdf57237cd", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "fed259ffaaeebe77d5e6261a27344aea43fbec67", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "1d3681dfe1ba55a58a3262479b5fc49e2d6cd6aa", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.3.3.tgz" + }, + "0.3.4": { + "shasum": "3c2a28d5765c9dc8cd9c3544d3fb97178fd39d33", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.3.4.tgz" + }, + "0.3.5": { + "shasum": "309f6ad30e24170f9144672b911f33463e04c459", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.3.5.tgz" + }, + "0.3.6": { + "shasum": "9eccae353b255c863a681728d37d92f53c5e2f47", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.3.6.tgz" + }, + "0.3.7": { + "shasum": "804d1b25fc5a4e0a28294c974dae833c074b0d32", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.3.7.tgz" + }, + "0.3.8": { + "shasum": "e58d1b1f80720955b60a01abb1409f6a0c21b2ce", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.3.8.tgz" + }, + "0.3.9": { + "shasum": "0ee50888b56f8853a0dbc2185ab2e9a605ead700", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.3.9.tgz" + }, + "0.4.0": { + "shasum": "3b63efc20474ef7d87e6e8775e4628852450cee8", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "f2029cf4dec1641ed404640ec6e53631355b9e62", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "6c8d06cedf3eb2260a5c5c13957a701dbb4157a1", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "47dbd0326b86516f136155c7f4e43af3c715f694", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.4.3.tgz" + }, + "0.4.4": { + "shasum": "4fec48dada60ff8ee50667eacb701c190428c3e4", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.4.4.tgz" + }, + "0.4.5": { + "shasum": "0dce37f27220d8f34b1f501825bdbfea65bc14a0", + "tarball": "http://registry.npmjs.org/node.io/-/node.io-0.4.5.tgz" + } + }, + "keywords": [ + "data", + "mapreduce", + "map", + "reduce", + "scraping", + "html", + "parsing", + "parse", + "scrape", + "process", + "processing", + "data" + ], + "url": "http://registry.npmjs.org/node.io/" + }, + "node.io-min": { + "name": "node.io-min", + "description": "A distributed data scraping and processing framework for node.js", + "dist-tags": { + "latest": "0.2.3-2" + }, + "maintainers": [ + { + "name": "cohara87", + "email": "cohara87@gmail.com" + } + ], + "time": { + "modified": "2011-03-01T22:57:48.523Z", + "created": "2011-03-01T22:57:47.555Z", + "0.2.3-2": "2011-03-01T22:57:48.523Z" + }, + "author": { + "name": "Chris O'Hara", + "email": "cohara87@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/chriso/node.io.git" + }, + "versions": { + "0.2.3-2": "http://registry.npmjs.org/node.io-min/0.2.3-2" + }, + "dist": { + "0.2.3-2": { + "shasum": "b3a9b090f0c947b354a058ed93125bcc0b580756", + "tarball": "http://registry.npmjs.org/node.io-min/-/node.io-min-0.2.3-2.tgz" + } + }, + "keywords": [ + "data", + "mapreduce", + "map", + "reduce", + "scraping", + "html", + "parsing", + "parse", + "scrape", + "process", + "processing", + "data" + ], + "url": "http://registry.npmjs.org/node.io-min/" + }, + "node.isbn": { + "name": "node.isbn", + "description": "A simple nodejs interface to isbn.net.in", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "kailash", + "email": "kailashnathreddy@ymail.com" + } + ], + "time": { + "modified": "2011-04-18T17:24:33.566Z", + "created": "2011-04-18T17:24:32.548Z", + "0.1.0": "2011-04-18T17:24:33.566Z" + }, + "author": { + "name": "kailashnath", + "url": "kailashnathreddy@ymail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/node.isbn/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "def5ad492deed9962ab1329c42712fdf55dca072", + "tarball": "http://registry.npmjs.org/node.isbn/-/node.isbn-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/node.isbn/" + }, + "node.packer": { + "name": "node.packer", + "description": "An assets combine and minify tool", + "dist-tags": { + "latest": "0.0.4" + }, + "readme": "# node.packer\n\n An assets combine and minify tool\n\n\n\n## Description\n\n I had trouble with compressing javascript files using `UglifyJS` so I write this tool to solve my problem. It is built on top of `YUI Compressor`. The compression rate is not as high as `UglifyJS` but it generates a more stable minified javascript file.\n\n\n\n## Requires\n - node >= 0.4.x\n - java jre6\n\n\n\n## Installation\n\n npm install\n\n\n\n## Options\n\n### log\n - description: whether to log errors\n - data type: boolean\n - default value: false\n - possible value: true | false\n\n### type\n - description: input files type\n - data type: string\n - default value: undefined\n - possible value: 'css' | 'js'\n\n### minify\n - description: whether to minify output file\n - data type: boolean\n - default value: false\n - possible value: true | false\n\n### uglify\n - description: whether to uglify javascript variables\n - data type: boolean\n - default value: true\n - possible value: true | false\n\n### input\n - description: files to be combined\n - data type: string\n - default value: undefined\n - possible value: '/path/to/the/css.css' ...\n\n### output\n - description: path to save the combined file\n - data type: string\n - default value: undefined\n - possible value: '/path/to/the/js.min.js' ...\n\n### callback\n - description: callback function\n - data type: function\n - default value: undefined\n - possible value: function(err, stdout, stderr) { ... }\n\n## Usage\n\n> Example\n\n var packer = require('node.packer'),\n path = '~/Desktop/packer/';\n\n packer({\n log: true,\n type: 'js',\n input: [\n path + 'dojo.js',\n path + 'jquery.js'\n ],\n output: path + 'pack.min.js',\n callback: function(err, stdout, stderr) {\n err && console.log(err);\n }\n });\n\n\n\n## License\n\n(The MIT License)\n\nCopyright (c) 2011 dreamerslab <ben@dreamerslab.com>\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "maintainers": [ + { + "name": "dreamerslab", + "email": "ben@dreamerslab.com" + } + ], + "time": { + "modified": "2011-11-24T03:11:23.042Z", + "created": "2011-11-23T09:01:41.328Z", + "0.0.1": "2011-11-23T09:01:45.279Z", + "0.0.2": "2011-11-23T09:29:42.296Z", + "0.0.3": "2011-11-23T10:13:25.202Z", + "0.0.4": "2011-11-24T03:11:23.042Z" + }, + "author": { + "name": "dreamerslab", + "email": "ben@dreamerslab.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dreamerslab/node.packer.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node.packer/0.0.1", + "0.0.2": "http://registry.npmjs.org/node.packer/0.0.2", + "0.0.3": "http://registry.npmjs.org/node.packer/0.0.3", + "0.0.4": "http://registry.npmjs.org/node.packer/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "8121858c1ea3be0b21a93e907a0a12623aec5c6d", + "tarball": "http://registry.npmjs.org/node.packer/-/node.packer-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "07122ad6a363c584cb517e2a6f2444dde29c1ab4", + "tarball": "http://registry.npmjs.org/node.packer/-/node.packer-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "15baeb5918707b268467f01bc8acedcb7bebeff5", + "tarball": "http://registry.npmjs.org/node.packer/-/node.packer-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "0c46afdac6e27580364c0289d5a7eeb04a0d537b", + "tarball": "http://registry.npmjs.org/node.packer/-/node.packer-0.0.4.tgz" + } + }, + "keywords": [ + "assets", + "asset", + "combine", + "minify", + "packer", + "yui", + "yui compressor", + "compressor", + "compress" + ], + "url": "http://registry.npmjs.org/node.packer/" + }, + "node.uptime": { + "name": "node.uptime", + "description": "Simple node.js module that can be used for continius 'is http server up?' check.", + "dist-tags": { + "latest": "0.1.0", + "stable": "0.1.0" + }, + "maintainers": [ + { + "name": "fedor.indutny", + "email": "fedor.indutny@gmail.com" + } + ], + "author": { + "name": "Fedor Indutny", + "email": "fedor.indutny@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/node.uptime/0.1.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/node.uptime/-/node.uptime-0.1.0.tgz" + } + }, + "keywords": [ + "node.uptime", + "uptime" + ], + "url": "http://registry.npmjs.org/node.uptime/" + }, + "node3p": { + "name": "node3p", + "description": "An Amazon MP3 downloader for NodeJS.", + "dist-tags": { + "latest": "0.3.2" + }, + "maintainers": [ + { + "name": "ncb000gt", + "email": "nicholas.j.campbell@gmail.com" + } + ], + "author": { + "name": "Nick Campbell", + "url": "http://github.com/ncb000gt" + }, + "repository": { + "type": "git", + "url": "http://github.com/ncb000gt/node3p.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/node3p/0.1.0", + "0.2.0": "http://registry.npmjs.org/node3p/0.2.0", + "0.2.1": "http://registry.npmjs.org/node3p/0.2.1", + "0.3.0": "http://registry.npmjs.org/node3p/0.3.0", + "0.3.2": "http://registry.npmjs.org/node3p/0.3.2" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/node3p/-/node3p-0.1.0.tgz" + }, + "0.2.0": { + "tarball": "http://packages:5984/node3p/-/node3p-0.2.0.tgz" + }, + "0.2.1": { + "tarball": "http://packages:5984/node3p/-/node3p-0.2.1.tgz" + }, + "0.3.0": { + "tarball": "http://packages:5984/node3p/-/node3p-0.3.0.tgz" + }, + "0.3.2": { + "tarball": "http://packages:5984/node3p/-/node3p-0.3.2.tgz" + } + }, + "url": "http://registry.npmjs.org/node3p/" + }, + "node3p-web": { + "name": "node3p-web", + "description": "A web interface for Node3p.", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "ncb000gt", + "email": "nicholas.j.campbell@gmail.com" + } + ], + "author": { + "name": "Nick Campbell", + "url": "http://github.com/ncb000gt" + }, + "repository": { + "type": "git", + "url": "http://github.com/ncb000gt/node3p.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/node3p-web/0.1.0", + "0.1.1": "http://registry.npmjs.org/node3p-web/0.1.1", + "0.2.0": "http://registry.npmjs.org/node3p-web/0.2.0", + "0.2.1": "http://registry.npmjs.org/node3p-web/0.2.1" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/node3p-web/-/node3p-web-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://packages:5984/node3p-web/-/node3p-web-0.1.1.tgz" + }, + "0.2.0": { + "tarball": "http://packages:5984/node3p-web/-/node3p-web-0.2.0.tgz" + }, + "0.2.1": { + "tarball": "http://packages:5984/node3p-web/-/node3p-web-0.2.1.tgz" + } + }, + "url": "http://registry.npmjs.org/node3p-web/" + }, + "nodeapps-dnode": { + "name": "nodeapps-dnode", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "marak", + "email": "marak.squires@gmail.com" + } + ], + "time": { + "modified": "2011-11-01T01:05:04.229Z", + "created": "2011-11-01T01:05:01.649Z", + "0.1.0": "2011-11-01T01:05:04.229Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/nodeapps-dnode/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "40c5998638a0c69a801c1427301a9c4fb72559f9", + "tarball": "http://registry.npmjs.org/nodeapps-dnode/-/nodeapps-dnode-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/nodeapps-dnode/" + }, + "nodeapps-express": { + "name": "nodeapps-express", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "marak", + "email": "marak.squires@gmail.com" + } + ], + "time": { + "modified": "2011-11-01T01:05:13.232Z", + "created": "2011-11-01T01:05:10.623Z", + "0.1.0": "2011-11-01T01:05:13.232Z" + }, + "author": { + "name": "Nodejitsu Inc.", + "email": "support@nodejitsu.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/nodeapps-express/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "cb27a81405acf6ca3fca3906dde098c3f0a4f046", + "tarball": "http://registry.npmjs.org/nodeapps-express/-/nodeapps-express-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/nodeapps-express/" + }, + "nodeapps-helloworld": { + "name": "nodeapps-helloworld", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "marak", + "email": "marak.squires@gmail.com" + } + ], + "time": { + "modified": "2011-11-01T00:59:35.265Z", + "created": "2011-11-01T00:59:32.487Z", + "0.1.0": "2011-11-01T00:59:35.265Z" + }, + "author": { + "name": "Nodejitsu Inc.", + "email": "support@nodejitsu.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/nodeapps-helloworld/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "05fec9bb275c6d10fd4ff3c0949e448faa4eca8b", + "tarball": "http://registry.npmjs.org/nodeapps-helloworld/-/nodeapps-helloworld-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/nodeapps-helloworld/" + }, + "nodeapps-my-nodeapps": { + "name": "nodeapps-my-nodeapps", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "marak", + "email": "marak.squires@gmail.com" + }, + { + "name": "pksunkara", + "email": "pavan.sss1991@gmail.com" + } + ], + "time": { + "modified": "2011-12-03T10:27:49.677Z", + "created": "2011-11-01T01:00:15.443Z", + "0.1.0": "2011-11-01T01:00:18.324Z", + "0.1.1": "2011-12-03T10:27:49.677Z" + }, + "author": { + "name": "Nodejitsu Inc.", + "email": "support@nodejitsu.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/nodeapps-my-nodeapps/0.1.0", + "0.1.1": "http://registry.npmjs.org/nodeapps-my-nodeapps/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "e5712e496d4a99cdac239ee65fd7fae6529c6169", + "tarball": "http://registry.npmjs.org/nodeapps-my-nodeapps/-/nodeapps-my-nodeapps-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "4b618c407bcd9227df3111489a79ef2a52cdc44f", + "tarball": "http://registry.npmjs.org/nodeapps-my-nodeapps/-/nodeapps-my-nodeapps-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/nodeapps-my-nodeapps/" + }, + "nodeapps-socket.io": { + "name": "nodeapps-socket.io", + "dist-tags": { + "latest": "0.1.0-1" + }, + "maintainers": [ + { + "name": "marak", + "email": "marak.squires@gmail.com" + } + ], + "time": { + "modified": "2011-11-01T01:05:50.608Z", + "created": "2011-10-30T12:34:10.313Z", + "0.1.0": "2011-10-30T12:34:11.634Z", + "0.1.0-1": "2011-11-01T01:05:50.608Z" + }, + "author": { + "name": "Nodejitsu Inc.", + "email": "support@nodejitsu.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/nodeapps-socket.io/0.1.0", + "0.1.0-1": "http://registry.npmjs.org/nodeapps-socket.io/0.1.0-1" + }, + "dist": { + "0.1.0": { + "shasum": "26689800d83493f99e6e6da964c52e3cf3ad6ecc", + "tarball": "http://registry.npmjs.org/nodeapps-socket.io/-/nodeapps-socket.io-0.1.0.tgz" + }, + "0.1.0-1": { + "shasum": "6c24d14e89e2d5fecf3fdee1b9154a0c4606fe70", + "tarball": "http://registry.npmjs.org/nodeapps-socket.io/-/nodeapps-socket.io-0.1.0-1.tgz" + } + }, + "url": "http://registry.npmjs.org/nodeapps-socket.io/" + }, + "nodeBase": { + "name": "nodeBase", + "description": "A node base class for Javascript and Coffee (logging, options, defaults and EventEmitter)", + "dist-tags": { + "latest": "0.8.5" + }, + "maintainers": [ + { + "name": "dotmaster", + "email": "isimpl@gmail.com" + } + ], + "time": { + "modified": "2011-03-19T17:23:20.340Z", + "created": "2011-03-04T19:23:54.489Z", + "0.3.0": "2011-03-04T19:23:54.907Z", + "0.3.1": "2011-03-04T19:27:07.672Z", + "0.4.0": "2011-03-05T13:44:37.729Z", + "0.5.1": "2011-03-05T20:02:06.702Z", + "0.5.2": "2011-03-05T21:45:47.117Z", + "0.5.3": "2011-03-05T22:21:53.094Z", + "0.5.4": "2011-03-06T16:11:36.969Z", + "0.6.0": "2011-03-07T13:02:34.116Z", + "0.6.5": "2011-03-13T14:46:58.711Z", + "0.7.0": "2011-03-14T00:21:17.126Z", + "0.7.1": "2011-03-14T00:37:28.715Z", + "0.7.5": "2011-03-14T17:08:33.252Z", + "0.7.6": "2011-03-14T17:50:45.449Z", + "0.8.0": "2011-03-15T12:02:10.797Z", + "0.8.1": "2011-03-15T12:09:20.330Z", + "0.8.2": "2011-03-16T02:39:55.932Z", + "0.8.4": "2011-03-19T17:12:56.455Z", + "0.8.5": "2011-03-19T17:23:20.340Z" + }, + "author": { + "name": "dotmaster", + "email": "greg@synaptic-labs.net" + }, + "repository": { + "type": "git", + "url": "https://github.com/dotmaster/nodeBase" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/nodeBase/0.3.0", + "0.3.1": "http://registry.npmjs.org/nodeBase/0.3.1", + "0.4.0": "http://registry.npmjs.org/nodeBase/0.4.0", + "0.5.1": "http://registry.npmjs.org/nodeBase/0.5.1", + "0.5.2": "http://registry.npmjs.org/nodeBase/0.5.2", + "0.5.3": "http://registry.npmjs.org/nodeBase/0.5.3", + "0.5.4": "http://registry.npmjs.org/nodeBase/0.5.4", + "0.6.0": "http://registry.npmjs.org/nodeBase/0.6.0", + "0.6.5": "http://registry.npmjs.org/nodeBase/0.6.5", + "0.7.0": "http://registry.npmjs.org/nodeBase/0.7.0", + "0.7.1": "http://registry.npmjs.org/nodeBase/0.7.1", + "0.7.5": "http://registry.npmjs.org/nodeBase/0.7.5", + "0.7.6": "http://registry.npmjs.org/nodeBase/0.7.6", + "0.8.0": "http://registry.npmjs.org/nodeBase/0.8.0", + "0.8.1": "http://registry.npmjs.org/nodeBase/0.8.1", + "0.8.2": "http://registry.npmjs.org/nodeBase/0.8.2", + "0.8.5": "http://registry.npmjs.org/nodeBase/0.8.5" + }, + "dist": { + "0.3.0": { + "shasum": "628c2b3fa5914234b429626cd388bff43d06ac02", + "tarball": "http://registry.npmjs.org/nodeBase/-/nodeBase-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "7eb0431fea777e859479b7aae5b43ddbc4fb47d5", + "tarball": "http://registry.npmjs.org/nodeBase/-/nodeBase-0.3.1.tgz" + }, + "0.4.0": { + "tarball": "http://registry.npmjs.org/nodeBase/-/nodeBase-0.4.0.tgz" + }, + "0.5.1": { + "tarball": "http://registry.npmjs.org/nodeBase/-/nodeBase-0.5.1.tgz" + }, + "0.5.2": { + "tarball": "http://registry.npmjs.org/nodeBase/-/nodeBase-0.5.2.tgz" + }, + "0.5.3": { + "tarball": "http://registry.npmjs.org/nodeBase/-/nodeBase-0.5.3.tgz" + }, + "0.5.4": { + "tarball": "http://registry.npmjs.org/nodeBase/-/nodeBase-0.5.4.tgz" + }, + "0.6.0": { + "tarball": "http://registry.npmjs.org/nodeBase/-/nodeBase-0.6.0.tgz" + }, + "0.6.5": { + "tarball": "http://registry.npmjs.org/nodeBase/-/nodeBase-0.6.5.tgz" + }, + "0.7.0": { + "tarball": "http://registry.npmjs.org/nodeBase/-/nodeBase-0.7.0.tgz" + }, + "0.7.1": { + "tarball": "http://registry.npmjs.org/nodeBase/-/nodeBase-0.7.1.tgz" + }, + "0.7.5": { + "tarball": "http://registry.npmjs.org/nodeBase/-/nodeBase-0.7.5.tgz" + }, + "0.7.6": { + "tarball": "http://registry.npmjs.org/nodeBase/-/nodeBase-0.7.6.tgz" + }, + "0.8.0": { + "tarball": "http://registry.npmjs.org/nodeBase/-/nodeBase-0.8.0.tgz" + }, + "0.8.1": { + "tarball": "http://registry.npmjs.org/nodeBase/-/nodeBase-0.8.1.tgz" + }, + "0.8.2": { + "tarball": "http://registry.npmjs.org/nodeBase/-/nodeBase-0.8.2.tgz" + }, + "0.8.5": { + "tarball": "http://registry.npmjs.org/nodeBase/-/nodeBase-0.8.5.tgz" + } + }, + "url": "http://registry.npmjs.org/nodeBase/" + }, + "nodec": { + "name": "nodec", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "fusspawn", + "email": "ariochofmelnibone@gmail.com" + } + ], + "time": { + "modified": "2011-03-11T22:16:16.565Z", + "created": "2011-03-11T22:16:15.443Z", + "0.0.0": "2011-03-11T22:16:16.565Z" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/nodec/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "d38e2acc5e9e4fae6b23a6df8ea00f18be707dc9", + "tarball": "http://registry.npmjs.org/nodec/-/nodec-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/nodec/" + }, + "NodeCGI": { + "name": "NodeCGI", + "description": "A fastcgi-like server designed to accept proxied requests from a web server and execute a server side javascript file.", + "dist-tags": { + "latest": "0.2.10" + }, + "maintainers": [ + { + "name": "bluejeansandrain", + "email": "bluejeansandrain@gmail.com" + } + ], + "time": { + "modified": "2011-11-11T03:37:12.849Z", + "created": "2011-10-22T00:29:57.574Z", + "0.2.4": "2011-10-22T00:29:57.951Z", + "0.2.5": "2011-11-01T05:27:15.498Z", + "0.2.6": "2011-11-01T07:16:05.363Z", + "0.2.7": "2011-11-01T07:59:10.791Z", + "0.2.8": "2011-11-01T16:02:20.278Z", + "0.2.9": "2011-11-02T04:24:32.758Z", + "0.2.10": "2011-11-11T03:37:12.849Z" + }, + "versions": { + "0.2.4": "http://registry.npmjs.org/NodeCGI/0.2.4", + "0.2.5": "http://registry.npmjs.org/NodeCGI/0.2.5", + "0.2.6": "http://registry.npmjs.org/NodeCGI/0.2.6", + "0.2.7": "http://registry.npmjs.org/NodeCGI/0.2.7", + "0.2.8": "http://registry.npmjs.org/NodeCGI/0.2.8", + "0.2.9": "http://registry.npmjs.org/NodeCGI/0.2.9", + "0.2.10": "http://registry.npmjs.org/NodeCGI/0.2.10" + }, + "dist": { + "0.2.4": { + "shasum": "04589988cc00fbcb65f3d2b664e16ea4b0cf51d1", + "tarball": "http://registry.npmjs.org/NodeCGI/-/NodeCGI-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "6ae2b4c64634959130f04ba8ca809df396fa9803", + "tarball": "http://registry.npmjs.org/NodeCGI/-/NodeCGI-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "5cb0d57ef6419e681e952df58d1ff0d8d6a1a341", + "tarball": "http://registry.npmjs.org/NodeCGI/-/NodeCGI-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "ebee4b451be40576e6fa573b51cc6c074366d4e0", + "tarball": "http://registry.npmjs.org/NodeCGI/-/NodeCGI-0.2.7.tgz" + }, + "0.2.8": { + "shasum": "f25c6741a108de0cb0d9a032f4384e54441f7b6e", + "tarball": "http://registry.npmjs.org/NodeCGI/-/NodeCGI-0.2.8.tgz" + }, + "0.2.9": { + "shasum": "867ee5a6cdea7f22bc38b4e0a1996afd1b981a47", + "tarball": "http://registry.npmjs.org/NodeCGI/-/NodeCGI-0.2.9.tgz" + }, + "0.2.10": { + "shasum": "d8885f931bb9436ec4f3c05623624504250d2969", + "tarball": "http://registry.npmjs.org/NodeCGI/-/NodeCGI-0.2.10.tgz" + } + }, + "url": "http://registry.npmjs.org/NodeCGI/" + }, + "nodecover": { + "name": "nodecover", + "description": "A lightweight, pure javascript code coverage tool and library for nodejs", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "jumisz", + "email": "juan.m.salamanca@gmail.com" + } + ], + "time": { + "modified": "2011-09-23T14:19:38.427Z", + "created": "2011-09-23T13:47:20.828Z", + "0.1.0": "2011-09-23T13:47:28.173Z", + "0.1.1": "2011-09-23T14:19:38.427Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/jumisz/nodecover.git" + }, + "author": { + "name": "Juan M Salamanca", + "email": "juan.m.salamanca@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/nodecover/0.1.0", + "0.1.1": "http://registry.npmjs.org/nodecover/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "a528d234f297a21974dce4aa5d8a319d3ee4ddef", + "tarball": "http://registry.npmjs.org/nodecover/-/nodecover-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "681e687b9ce8ff587027616831e630deeb5738bd", + "tarball": "http://registry.npmjs.org/nodecover/-/nodecover-0.1.1.tgz" + } + }, + "keywords": [ + "test", + "node", + "code coverage" + ], + "url": "http://registry.npmjs.org/nodecover/" + }, + "nodeDocs": { + "name": "nodeDocs", + "description": "Locally hosted Node Documentation", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "rixius", + "email": "rixius@gmail.com" + } + ], + "author": { + "name": "Stephen 'Rixius' Middleton", + "email": "Rixius@gmail.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/Rixius/node-docs.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nodeDocs/0.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/nodeDocs/-/nodeDocs-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/nodeDocs/" + }, + "nodefm": { + "name": "nodefm", + "description": "Some tools for talking to last.fm API", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "mikebannister", + "email": "mikebannister@gmail.com" + } + ], + "author": { + "name": "Mike Bannister", + "email": "mikebannister@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nodefm/0.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/nodefm/-/nodefm-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/nodefm/" + }, + "NodeFQL": { + "name": "NodeFQL", + "description": "A simple module for interfacing with Facebook's FQL API.", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "mhseiden", + "email": "140dbs@gmail.com" + } + ], + "time": { + "modified": "2011-10-14T08:18:03.725Z", + "created": "2011-10-14T08:18:03.408Z", + "0.0.0": "2011-10-14T08:18:03.725Z" + }, + "author": { + "name": "Max Seiden", + "email": "140dbs@umich.edu" + }, + "repository": { + "type": "git", + "url": "git://github.com/mhseiden/NodeFQL.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/NodeFQL/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "d5fffda97cf91676abbf23b12049c49d83a1375c", + "tarball": "http://registry.npmjs.org/NodeFQL/-/NodeFQL-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/NodeFQL/" + }, + "nodegit": { + "name": "nodegit", + "description": "Node.js libgit2 asynchronous native bindings", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "tbranyen", + "email": "tim@tabdeveloper.com" + } + ], + "time": { + "modified": "2011-08-19T15:58:41.628Z", + "created": "2011-03-10T06:27:12.009Z", + "0.0.1": "2011-03-10T06:27:12.225Z", + "0.0.2": "2011-03-14T23:32:03.102Z", + "0.0.3": "2011-04-13T22:37:37.753Z", + "0.0.4": "2011-05-14T00:46:46.496Z", + "0.0.5": "2011-08-19T15:58:41.628Z" + }, + "author": { + "name": "Tim Branyen", + "email": "tim@tabdeveloper.com", + "url": "http://twitter.com/tbranyen" + }, + "repository": { + "type": "git", + "url": "git://github.com/tbranyen/nodegit.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nodegit/0.0.1", + "0.0.2": "http://registry.npmjs.org/nodegit/0.0.2", + "0.0.3": "http://registry.npmjs.org/nodegit/0.0.3", + "0.0.4": "http://registry.npmjs.org/nodegit/0.0.4", + "0.0.5": "http://registry.npmjs.org/nodegit/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "ccdf08791200bb2fcbf2cc86aaac504135239ea1", + "tarball": "http://registry.npmjs.org/nodegit/-/nodegit-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "72ad0239d54179852ca01396ade2be383ed85205", + "tarball": "http://registry.npmjs.org/nodegit/-/nodegit-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "f378a3381e43b8bd51d94715e987ddbef8a0bec6", + "tarball": "http://registry.npmjs.org/nodegit/-/nodegit-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "dbaeb50753a374b2ce839faac5a77099740e7db5", + "tarball": "http://registry.npmjs.org/nodegit/-/nodegit-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "e0b1243fa0c573efcdf947f27c32de3781b654ff", + "tarball": "http://registry.npmjs.org/nodegit/-/nodegit-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/nodegit/" + }, + "nodeib": { + "name": "nodeib", + "description": "NodeJS IRC bot", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "aikar", + "email": "aikar@aikar.co" + } + ], + "time": { + "modified": "2011-09-18T05:10:25.504Z", + "created": "2011-09-18T05:10:24.314Z", + "0.0.1": "2011-09-18T05:10:25.504Z" + }, + "author": { + "name": "Aikar", + "email": "aikar@aikar.co", + "url": "http://aikar.co" + }, + "repository": { + "type": "git", + "url": "github.com:aikar/nodeib" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nodeib/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "4e5fa78159e6017a04124d902f269910677472ae", + "tarball": "http://registry.npmjs.org/nodeib/-/nodeib-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/nodeib/" + }, + "nodeinfo": { + "name": "nodeinfo", + "description": "Displays NodeJS information", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "contra", + "email": "contra@australia.edu" + } + ], + "time": { + "modified": "2011-10-05T05:12:53.391Z", + "created": "2011-09-02T15:18:35.493Z", + "0.0.1": "2011-09-02T15:18:37.000Z", + "0.0.2": "2011-09-02T20:00:26.192Z", + "0.0.3": "2011-09-02T20:23:03.927Z", + "0.0.4": "2011-09-04T08:31:49.436Z", + "0.0.5": "2011-09-04T13:25:11.655Z", + "0.0.6": "2011-09-05T20:42:55.225Z", + "0.0.7": "2011-09-14T07:17:12.530Z", + "0.0.8": "2011-09-17T10:11:15.990Z", + "0.0.9": "2011-10-01T19:49:52.842Z", + "0.1.0": "2011-10-04T03:37:01.684Z", + "0.1.1": "2011-10-05T05:12:53.391Z" + }, + "author": { + "name": "Fractal", + "email": "contact@wearefractal.com", + "url": "http://wearefractal.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/wearefractal/nodeinfo.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nodeinfo/0.0.1", + "0.0.2": "http://registry.npmjs.org/nodeinfo/0.0.2", + "0.0.3": "http://registry.npmjs.org/nodeinfo/0.0.3", + "0.0.4": "http://registry.npmjs.org/nodeinfo/0.0.4", + "0.0.5": "http://registry.npmjs.org/nodeinfo/0.0.5", + "0.0.6": "http://registry.npmjs.org/nodeinfo/0.0.6", + "0.0.7": "http://registry.npmjs.org/nodeinfo/0.0.7", + "0.0.8": "http://registry.npmjs.org/nodeinfo/0.0.8", + "0.0.9": "http://registry.npmjs.org/nodeinfo/0.0.9", + "0.1.0": "http://registry.npmjs.org/nodeinfo/0.1.0", + "0.1.1": "http://registry.npmjs.org/nodeinfo/0.1.1" + }, + "dist": { + "0.0.1": { + "shasum": "eb5a6961f974b0b8c9b6a058489f6e183b288cf1", + "tarball": "http://registry.npmjs.org/nodeinfo/-/nodeinfo-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "367a6fcb9d70c4e36d0b90707b5758dc459ba74d", + "tarball": "http://registry.npmjs.org/nodeinfo/-/nodeinfo-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "52bc584221799d65852fe041d8b76ab684cab2eb", + "tarball": "http://registry.npmjs.org/nodeinfo/-/nodeinfo-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "063574df35ffb35d8027c8d687a36c1ed0a2f2fc", + "tarball": "http://registry.npmjs.org/nodeinfo/-/nodeinfo-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "b80015d2127bcc8a95f95d64fbb1569b4f6f5f5a", + "tarball": "http://registry.npmjs.org/nodeinfo/-/nodeinfo-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "741cc0fcca7a092b4834ac45c90c3412dec3e2d5", + "tarball": "http://registry.npmjs.org/nodeinfo/-/nodeinfo-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "b6c88a58c824417b8e5d0194c3c6ef9249c5f780", + "tarball": "http://registry.npmjs.org/nodeinfo/-/nodeinfo-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "cee229dd2f5de41b1ca7dfb654685c129806369c", + "tarball": "http://registry.npmjs.org/nodeinfo/-/nodeinfo-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "2cf24f80b507a9e68fb4847ecc40ff2aeb24dd24", + "tarball": "http://registry.npmjs.org/nodeinfo/-/nodeinfo-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "0059af06d9fcccf840db109757a630666e2948f6", + "tarball": "http://registry.npmjs.org/nodeinfo/-/nodeinfo-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "5ba59040a913f945b87fa71a3be49239dff894fe", + "tarball": "http://registry.npmjs.org/nodeinfo/-/nodeinfo-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/nodeinfo/" + }, + "NodeInterval": { + "name": "NodeInterval", + "description": "Command-line watch utility for managing and concatenating templates into a webpage. Particularly useful for Backbone.js / Spine.js templates.", + "dist-tags": { + "latest": "0.0.7" + }, + "maintainers": [ + { + "name": "krunkosaurus", + "email": "switchstatement@gmail.com" + } + ], + "time": { + "modified": "2011-10-06T00:35:42.624Z", + "created": "2011-09-19T05:10:38.546Z", + "0.0.6": "2011-09-19T05:10:39.823Z", + "0.0.7": "2011-10-06T00:35:42.624Z" + }, + "author": { + "name": "Mauvis Ledford" + }, + "repository": { + "type": "git", + "url": "git://github.com/krunkosaurus/NodeInterval.git" + }, + "versions": { + "0.0.6": "http://registry.npmjs.org/NodeInterval/0.0.6", + "0.0.7": "http://registry.npmjs.org/NodeInterval/0.0.7" + }, + "dist": { + "0.0.6": { + "shasum": "3b24f79e15283bc74532b2b4042ba0dff179daae", + "tarball": "http://registry.npmjs.org/NodeInterval/-/NodeInterval-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "837f37c89440c55a8c605f34b8b0344c05a5200f", + "tarball": "http://registry.npmjs.org/NodeInterval/-/NodeInterval-0.0.7.tgz" + } + }, + "url": "http://registry.npmjs.org/NodeInterval/" + }, + "nodejitsu-api": { + "name": "nodejitsu-api", + "description": "nodejitsu API client wrapper", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "marak", + "email": "marak.squires@gmail.com" + }, + { + "name": "avianflu", + "email": "charlie@charlieistheman.com" + } + ], + "time": { + "modified": "2011-12-03T02:33:25.102Z", + "created": "2011-10-22T00:48:42.166Z", + "0.1.0": "2011-10-22T00:48:43.740Z", + "0.1.2": "2011-10-24T23:06:37.273Z", + "0.1.2-1": "2011-10-24T23:20:36.557Z", + "0.1.2-2": "2011-11-04T00:37:28.616Z", + "0.1.2-3": "2011-11-10T23:22:51.385Z", + "0.1.2-4": "2011-11-10T23:25:59.823Z", + "0.1.2-5": "2011-11-10T23:30:25.502Z", + "0.2.0": "2011-11-18T11:40:28.566Z", + "0.2.0-1": "2011-11-30T02:15:13.557Z", + "0.2.1": "2011-12-03T02:33:25.102Z" + }, + "author": { + "name": "Nodejitsu", + "email": "info@nodejitsu.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/nodejitsu/nodejitsu-api.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/nodejitsu-api/0.1.0", + "0.1.2": "http://registry.npmjs.org/nodejitsu-api/0.1.2", + "0.1.2-1": "http://registry.npmjs.org/nodejitsu-api/0.1.2-1", + "0.1.2-2": "http://registry.npmjs.org/nodejitsu-api/0.1.2-2", + "0.1.2-3": "http://registry.npmjs.org/nodejitsu-api/0.1.2-3", + "0.1.2-4": "http://registry.npmjs.org/nodejitsu-api/0.1.2-4", + "0.1.2-5": "http://registry.npmjs.org/nodejitsu-api/0.1.2-5", + "0.2.0": "http://registry.npmjs.org/nodejitsu-api/0.2.0", + "0.2.0-1": "http://registry.npmjs.org/nodejitsu-api/0.2.0-1", + "0.2.1": "http://registry.npmjs.org/nodejitsu-api/0.2.1" + }, + "dist": { + "0.1.0": { + "shasum": "ed63d3e891876058a58f5dedd79f5dc1bf6e0beb", + "tarball": "http://registry.npmjs.org/nodejitsu-api/-/nodejitsu-api-0.1.0.tgz" + }, + "0.1.2": { + "shasum": "94d36a8befaa0375565ee339e03af6708d686fed", + "tarball": "http://registry.npmjs.org/nodejitsu-api/-/nodejitsu-api-0.1.2.tgz" + }, + "0.1.2-1": { + "shasum": "e82a7596e6b72f9e56ca0b18b9fda6ca545957bb", + "tarball": "http://registry.npmjs.org/nodejitsu-api/-/nodejitsu-api-0.1.2-1.tgz" + }, + "0.1.2-2": { + "shasum": "9d910db0a817bc8ae83c2cd0271b8a253b5128c9", + "tarball": "http://registry.npmjs.org/nodejitsu-api/-/nodejitsu-api-0.1.2-2.tgz" + }, + "0.1.2-3": { + "shasum": "dcfa856ac089b2e7306e3610f7cf0052cde4f37a", + "tarball": "http://registry.npmjs.org/nodejitsu-api/-/nodejitsu-api-0.1.2-3.tgz" + }, + "0.1.2-4": { + "shasum": "32f89f2fcb08d04ff856f6bd39ebc0459d3e9f1b", + "tarball": "http://registry.npmjs.org/nodejitsu-api/-/nodejitsu-api-0.1.2-4.tgz" + }, + "0.1.2-5": { + "shasum": "6058367c2950d8665b8e10bc1c2557223cb39900", + "tarball": "http://registry.npmjs.org/nodejitsu-api/-/nodejitsu-api-0.1.2-5.tgz" + }, + "0.2.0": { + "shasum": "ea8fc3de4c3f0d590e013028fe513c0958497950", + "tarball": "http://registry.npmjs.org/nodejitsu-api/-/nodejitsu-api-0.2.0.tgz" + }, + "0.2.0-1": { + "shasum": "76395c5fda787b805650cd0c03ebdf9954e36d54", + "tarball": "http://registry.npmjs.org/nodejitsu-api/-/nodejitsu-api-0.2.0-1.tgz" + }, + "0.2.1": { + "shasum": "1ab4fa68080ee8e17746aab2d62ac636d3e8192f", + "tarball": "http://registry.npmjs.org/nodejitsu-api/-/nodejitsu-api-0.2.1.tgz" + } + }, + "url": "http://registry.npmjs.org/nodejitsu-api/" + }, + "nodejitsu-client": { + "name": "nodejitsu-client", + "description": "the jitsu API client pulled out.", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-08-25T14:57:43.790Z", + "created": "2011-08-25T14:57:39.329Z", + "0.0.0": "2011-08-25T14:57:43.790Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com", + "url": "http://bit.ly/dominictarr" + }, + "repository": { + "type": "git", + "url": "git://github.com/dominictarr/nodejitsu-client.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/nodejitsu-client/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "3dc8ad40d2ddc2129fee953add1f4de31ca184d6", + "tarball": "http://registry.npmjs.org/nodejitsu-client/-/nodejitsu-client-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/nodejitsu-client/" + }, + "nodejs-common": { + "name": "nodejs-common", + "description": "common function for javascript on nodejs", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "inotseeyou", + "email": "inotseeyou@gmail.com" + } + ], + "time": { + "modified": "2011-11-05T12:36:27.163Z", + "created": "2011-11-05T12:04:20.640Z", + "0.1.0": "2011-11-05T12:04:25.302Z", + "0.1.1": "2011-11-05T12:36:27.163Z" + }, + "author": { + "name": "inotseeyou", + "email": "inotseeyou@gmail.com", + "url": "http://inotseeyou.com" + }, + "repository": { + "url": "" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/nodejs-common/0.1.0", + "0.1.1": "http://registry.npmjs.org/nodejs-common/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "17d7255c5cab0073193a26e4156208dcaff445c9", + "tarball": "http://registry.npmjs.org/nodejs-common/-/nodejs-common-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "4f47fbd59bdf00ae6b8bf76ce59617771484f407", + "tarball": "http://registry.npmjs.org/nodejs-common/-/nodejs-common-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/nodejs-common/" + }, + "nodejs-intro": { + "name": "nodejs-intro", + "description": "My introduction presentation to node.js along with sample code at various stages of building a simple RESTful web service with journey, cradle, winston, optimist, and http-console.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "tester", + "email": "ed@textingly.com" + }, + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + } + ], + "time": { + "modified": "2011-09-15T19:07:51.467Z", + "created": "2011-09-06T16:48:06.020Z", + "0.1.1": "2011-09-06T16:48:06.287Z" + }, + "author": { + "name": "Charlie Robbins", + "email": "charlie.robbins@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/indexzero/nodejs-intro.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/nodejs-intro/0.1.1" + }, + "dist": { + "0.1.1": { + "shasum": "0d72adb78912f17fd31ab5252ad50afb9a693669", + "tarball": "http://registry.npmjs.org/nodejs-intro/-/nodejs-intro-0.1.1.tgz" + } + }, + "keywords": [ + "bookmarks", + "webservice", + "tutorial", + "nodejs" + ], + "url": "http://registry.npmjs.org/nodejs-intro/" + }, + "nodejs-tvrage": { + "name": "nodejs-tvrage", + "description": "Node module to work as client with tvrage web services", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "SchAmane", + "email": "schamane@myeburg.net" + } + ], + "time": { + "modified": "2011-05-08T08:55:13.027Z", + "created": "2011-04-22T17:38:52.034Z", + "0.2.0": "2011-04-22T17:38:52.469Z", + "0.3.0": "2011-04-25T19:49:49.590Z" + }, + "author": { + "name": "Nazar Kulyk", + "email": "nasar.kulyk@googlemail.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:schamane/nodejs-tvrage.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/nodejs-tvrage/0.2.0", + "0.3.0": "http://registry.npmjs.org/nodejs-tvrage/0.3.0" + }, + "dist": { + "0.2.0": { + "shasum": "1b752bda3ed80bb06ced0127beb719b8dcf53466", + "tarball": "http://registry.npmjs.org/nodejs-tvrage/-/nodejs-tvrage-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "55f61803295367493e67be6507c92b2553a187d1", + "tarball": "http://registry.npmjs.org/nodejs-tvrage/-/nodejs-tvrage-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/nodejs-tvrage/" + }, + "nodejs.be-cli": { + "name": "nodejs.be-cli", + "description": "A CLI tool to allow interaction with the http://nodejs.be/ platform, based on Nodester.com stack", + "dist-tags": { + "latest": "0.2.13" + }, + "maintainers": [ + { + "name": "frank", + "email": "frank@openminds.be" + } + ], + "time": { + "modified": "2011-07-04T14:10:55.000Z", + "created": "2011-07-04T14:10:54.439Z", + "0.2.13": "2011-07-04T14:10:55.000Z" + }, + "author": { + "name": "Daniel Bartlett", + "email": "dan@f-box.org", + "url": "http://danb-uk.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/openminds/nodejs-cli.git" + }, + "versions": { + "0.2.13": "http://registry.npmjs.org/nodejs.be-cli/0.2.13" + }, + "dist": { + "0.2.13": { + "shasum": "09f4050116b5a868f43017d07a53bb5e3fc11f1a", + "tarball": "http://registry.npmjs.org/nodejs.be-cli/-/nodejs.be-cli-0.2.13.tgz" + } + }, + "url": "http://registry.npmjs.org/nodejs.be-cli/" + }, + "nodeler": { + "name": "nodeler", + "description": "lightweight growl/snarl notification", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "jbsmith", + "email": "jamesballardsmith@gmail.com" + } + ], + "time": { + "modified": "2011-04-01T16:41:31.017Z", + "created": "2011-01-31T18:24:55.964Z", + "0.1.0": "2011-01-31T18:24:56.358Z", + "0.2.0": "2011-04-01T16:38:21.506Z" + }, + "author": { + "name": "JB Smith", + "email": "jbsmith__AAAAt__mac.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/nodeler/0.1.0", + "0.2.0": "http://registry.npmjs.org/nodeler/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "f621e1bcc9e0cca7f77e05edc9c1a981da0c237e", + "tarball": "http://registry.npmjs.org/nodeler/-/nodeler-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "eeb9a494a419f13a71bd05618486fae45d283524", + "tarball": "http://registry.npmjs.org/nodeler/-/nodeler-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/nodeler/" + }, + "nodelint": { + "name": "nodelint", + "description": "The nodelint command line tool allows you to check for problems using JSLint. You can specify your own --config file to use alternate JSLint options and your own --reporter file if you want to customise the generated output.", + "dist-tags": { + "latest": "0.5.2" + }, + "maintainers": [ + { + "name": "tav", + "email": "tav@espians.com" + }, + { + "name": "cliffano", + "email": "cliffano@gmail.com" + }, + { + "name": "Sannis", + "email": "efimovov@gmail.com" + } + ], + "author": { + "name": "tav", + "email": "tav@espians.com", + "url": "https://tav.espians.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/tav/nodelint.git" + }, + "time": { + "modified": "2011-11-05T20:09:51.271Z", + "created": "2011-09-15T23:16:08.638Z", + "0.4.0": "2011-09-15T23:16:08.638Z", + "0.5.0": "2011-09-24T00:27:40.490Z", + "0.5.1": "2011-10-14T21:10:33.933Z", + "0.5.2": "2011-11-05T20:09:51.271Z" + }, + "versions": { + "0.4.0": "http://registry.npmjs.org/nodelint/0.4.0", + "0.5.0": "http://registry.npmjs.org/nodelint/0.5.0", + "0.5.1": "http://registry.npmjs.org/nodelint/0.5.1", + "0.5.2": "http://registry.npmjs.org/nodelint/0.5.2" + }, + "dist": { + "0.4.0": { + "tarball": "http://packages:5984/nodelint/-/nodelint-0.4.0.tgz" + }, + "0.5.0": { + "shasum": "ffeecb828bb742ca9c751d4fe603c1c499f0f462", + "tarball": "http://registry.npmjs.org/nodelint/-/nodelint-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "018be6249f23eff8e1556a72c89e5ff4c470995c", + "tarball": "http://registry.npmjs.org/nodelint/-/nodelint-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "0c25067e5f35a57d329799ecfd565f79e50c55b3", + "tarball": "http://registry.npmjs.org/nodelint/-/nodelint-0.5.2.tgz" + } + }, + "keywords": [ + "lint", + "jslint", + "nodelint", + "code quality" + ], + "url": "http://registry.npmjs.org/nodelint/" + }, + "nodeload": { + "name": "nodeload", + "description": "Load testing library for node.js", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "jonjlee", + "email": "jonjlee@gmail.com" + } + ], + "repository": { + "type": "git", + "url": "http://github.com/benschmaus/nodeload" + }, + "time": { + "modified": "2011-04-15T21:28:51.531Z", + "created": "2011-03-31T06:12:15.907Z", + "0.2.0": "2011-03-31T06:12:15.907Z" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/nodeload/0.2.0" + }, + "dist": { + "0.2.0": { + "shasum": "2bf2d5f0d291663ecd5271a73c75e507bc5c8494", + "tarball": "http://registry.npmjs.org/nodeload/-/nodeload-0.2.0.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "7eedb6b91c9db458c248c6c2fc03c5045d408f97", + "tarball": "http://registry.npmjs.org/nodeload/-/nodeload-0.2.0-0.4-sunos-5.11.tgz" + } + } + } + }, + "url": "http://registry.npmjs.org/nodeload/" + }, + "nodemachine": { + "name": "nodemachine", + "description": "Port of WebMachine", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "tautologistics", + "email": "chris@winberry.net" + } + ], + "author": { + "name": "Chris Winberry", + "email": "chris@winberry.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/tautologistics/nodemachine.git" + }, + "time": { + "modified": "2011-02-21T16:40:59.274Z", + "created": "2011-02-21T16:40:59.274Z", + "0.2.5": "2011-02-21T16:40:59.274Z", + "0.3.0": "2011-02-21T16:40:59.274Z" + }, + "versions": { + "0.2.5": "http://registry.npmjs.org/nodemachine/0.2.5", + "0.3.0": "http://registry.npmjs.org/nodemachine/0.3.0" + }, + "dist": { + "0.2.5": { + "tarball": "http://packages:5984/nodemachine/-/nodemachine-0.2.5.tgz" + }, + "0.3.0": { + "shasum": "665b1f1aa58dfbaee66474d590e505f500b9edde", + "tarball": "http://registry.npmjs.org/nodemachine/-/nodemachine-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/nodemachine/" + }, + "nodemailer": { + "name": "nodemailer", + "description": "Easy to use module to send e-mails, supports unicode and SSL/TLS", + "dist-tags": { + "latest": "0.2.4" + }, + "maintainers": [ + { + "name": "andris", + "email": "andris@node.ee" + } + ], + "time": { + "modified": "2011-12-08T11:46:00.690Z", + "created": "2011-01-21T19:27:03.164Z", + "0.1.1": "2011-12-08T11:46:00.690Z", + "0.1.2": "2011-12-08T11:46:00.690Z", + "0.1.3": "2011-12-08T11:46:00.690Z", + "0.1.4": "2011-12-08T11:46:00.690Z", + "0.1.5": "2011-12-08T11:46:00.690Z", + "0.1.6": "2011-12-08T11:46:00.690Z", + "0.1.7": "2011-12-08T11:46:00.690Z", + "0.1.8": "2011-12-08T11:46:00.690Z", + "0.1.9": "2011-12-08T11:46:00.690Z", + "0.1.10": "2011-12-08T11:46:00.690Z", + "0.1.11": "2011-12-08T11:46:00.690Z", + "0.1.12": "2011-12-08T11:46:00.690Z", + "0.1.13": "2011-12-08T11:46:00.690Z", + "0.1.14": "2011-12-08T11:46:00.690Z", + "0.1.15": "2011-12-08T11:46:00.690Z", + "0.1.16": "2011-12-08T11:46:00.690Z", + "0.1.17": "2011-12-08T11:46:00.690Z", + "0.1.18": "2011-12-08T11:46:00.690Z", + "0.1.19": "2011-12-08T11:46:00.690Z", + "0.1.20": "2011-12-08T11:46:00.690Z", + "0.1.21": "2011-12-08T11:46:00.690Z", + "0.1.22": "2011-12-08T11:46:00.690Z", + "0.1.23": "2011-12-08T11:46:00.690Z", + "0.1.24": "2011-12-08T11:46:00.690Z", + "0.2.0": "2011-12-08T11:46:00.690Z", + "0.2.1": "2011-12-08T11:46:00.690Z", + "0.2.2": "2011-12-08T11:46:00.690Z", + "0.2.3": "2011-10-26T08:47:33.209Z", + "0.2.4": "2011-12-08T11:46:00.690Z" + }, + "author": { + "name": "Andris Reinman" + }, + "repository": { + "type": "git", + "url": "git://github.com/andris9/nodemailer.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/nodemailer/0.1.1", + "0.1.2": "http://registry.npmjs.org/nodemailer/0.1.2", + "0.1.3": "http://registry.npmjs.org/nodemailer/0.1.3", + "0.1.4": "http://registry.npmjs.org/nodemailer/0.1.4", + "0.1.5": "http://registry.npmjs.org/nodemailer/0.1.5", + "0.1.6": "http://registry.npmjs.org/nodemailer/0.1.6", + "0.1.7": "http://registry.npmjs.org/nodemailer/0.1.7", + "0.1.8": "http://registry.npmjs.org/nodemailer/0.1.8", + "0.1.9": "http://registry.npmjs.org/nodemailer/0.1.9", + "0.1.10": "http://registry.npmjs.org/nodemailer/0.1.10", + "0.1.11": "http://registry.npmjs.org/nodemailer/0.1.11", + "0.1.12": "http://registry.npmjs.org/nodemailer/0.1.12", + "0.1.13": "http://registry.npmjs.org/nodemailer/0.1.13", + "0.1.14": "http://registry.npmjs.org/nodemailer/0.1.14", + "0.1.15": "http://registry.npmjs.org/nodemailer/0.1.15", + "0.1.16": "http://registry.npmjs.org/nodemailer/0.1.16", + "0.1.17": "http://registry.npmjs.org/nodemailer/0.1.17", + "0.1.18": "http://registry.npmjs.org/nodemailer/0.1.18", + "0.1.19": "http://registry.npmjs.org/nodemailer/0.1.19", + "0.1.20": "http://registry.npmjs.org/nodemailer/0.1.20", + "0.1.21": "http://registry.npmjs.org/nodemailer/0.1.21", + "0.1.22": "http://registry.npmjs.org/nodemailer/0.1.22", + "0.1.23": "http://registry.npmjs.org/nodemailer/0.1.23", + "0.1.24": "http://registry.npmjs.org/nodemailer/0.1.24", + "0.2.0": "http://registry.npmjs.org/nodemailer/0.2.0", + "0.2.1": "http://registry.npmjs.org/nodemailer/0.2.1", + "0.2.2": "http://registry.npmjs.org/nodemailer/0.2.2", + "0.2.3": "http://registry.npmjs.org/nodemailer/0.2.3", + "0.2.4": "http://registry.npmjs.org/nodemailer/0.2.4" + }, + "dist": { + "0.1.1": { + "tarball": "http://registry.npmjs.org/nodemailer/-/nodemailer@0.1.1.tgz" + }, + "0.1.2": { + "tarball": "http://registry.npmjs.org/nodemailer/-/nodemailer@0.1.2.tgz" + }, + "0.1.3": { + "shasum": "c4fe01ea2204166b6414cd5efad04aaff09881fb", + "tarball": "http://registry.npmjs.org/nodemailer/-/nodemailer-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "df5ed19e2db7afa75f76c3dc55719873ce6edfb9", + "tarball": "http://registry.npmjs.org/nodemailer/-/nodemailer-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "28e06ba22cee7fb9c34f732da5eff36ebd3ddc37", + "tarball": "http://registry.npmjs.org/nodemailer/-/nodemailer-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "7b060435c3f44659edbd8c987a1abd244ddaa540", + "tarball": "http://registry.npmjs.org/nodemailer/-/nodemailer-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "4d6fc7e63a5e9d4be1ee472f924cdfb430a6b109", + "tarball": "http://registry.npmjs.org/nodemailer/-/nodemailer-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "04e95a20fbaae7dceffd0a467c14eaf061fb05fc", + "tarball": "http://registry.npmjs.org/nodemailer/-/nodemailer-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "e23026cbfce95dee05623358d2eab450a79b533a", + "tarball": "http://registry.npmjs.org/nodemailer/-/nodemailer-0.1.9.tgz" + }, + "0.1.10": { + "shasum": "79822261753b14643f2918814f5365767e0c84ab", + "tarball": "http://registry.npmjs.org/nodemailer/-/nodemailer-0.1.10.tgz" + }, + "0.1.11": { + "shasum": "420eba41d28400e30337f908d4e4ce3075d44a02", + "tarball": "http://registry.npmjs.org/nodemailer/-/nodemailer-0.1.11.tgz" + }, + "0.1.12": { + "shasum": "c4ca5cc44bc588e75c524e11b60729ad5f928384", + "tarball": "http://registry.npmjs.org/nodemailer/-/nodemailer-0.1.12.tgz" + }, + "0.1.13": { + "shasum": "e38caecd50831ce1041182aa95caf6b2759893c5", + "tarball": "http://registry.npmjs.org/nodemailer/-/nodemailer-0.1.13.tgz" + }, + "0.1.14": { + "shasum": "2dbf96801a0230ee69b52f7c528155dc32260f6b", + "tarball": "http://registry.npmjs.org/nodemailer/-/nodemailer-0.1.14.tgz" + }, + "0.1.15": { + "shasum": "ad85d9f973a56dbc8a87aec3e423f36004a58415", + "tarball": "http://registry.npmjs.org/nodemailer/-/nodemailer-0.1.15.tgz" + }, + "0.1.16": { + "shasum": "94a75172ba902e3679d3191a6fa060455ccef20b", + "tarball": "http://registry.npmjs.org/nodemailer/-/nodemailer-0.1.16.tgz" + }, + "0.1.17": { + "shasum": "a7cf77598ac1ad08b87acfabd0450de91877f215", + "tarball": "http://registry.npmjs.org/nodemailer/-/nodemailer-0.1.17.tgz" + }, + "0.1.18": { + "shasum": "a6b9d067aef3bee0760796d07550cab5c83f9bd0", + "tarball": "http://registry.npmjs.org/nodemailer/-/nodemailer-0.1.18.tgz" + }, + "0.1.19": { + "shasum": "dbaf7d62c04fafdfe48d0242417a392052be867e", + "tarball": "http://registry.npmjs.org/nodemailer/-/nodemailer-0.1.19.tgz" + }, + "0.1.20": { + "shasum": "a91748a448eddf35fe24d7272c8187ddcc38e253", + "tarball": "http://registry.npmjs.org/nodemailer/-/nodemailer-0.1.20.tgz" + }, + "0.1.21": { + "shasum": "d1dfeb05201f0c4e8f47e4ad1762db9f1abc7d42", + "tarball": "http://registry.npmjs.org/nodemailer/-/nodemailer-0.1.21.tgz" + }, + "0.1.22": { + "shasum": "d2abdce753d4e2fa9e5654ff771a70f5382b5c11", + "tarball": "http://registry.npmjs.org/nodemailer/-/nodemailer-0.1.22.tgz" + }, + "0.1.23": { + "shasum": "1e9d73fd12b62cb3be1e4e72f25f62b8e24a7913", + "tarball": "http://registry.npmjs.org/nodemailer/-/nodemailer-0.1.23.tgz" + }, + "0.1.24": { + "shasum": "c766e5992ed6090c02dd977cf12e8d3d26f7b09c", + "tarball": "http://registry.npmjs.org/nodemailer/-/nodemailer-0.1.24.tgz" + }, + "0.2.0": { + "shasum": "0147aca24b280423f9c499abf07a2f2355949e82", + "tarball": "http://registry.npmjs.org/nodemailer/-/nodemailer-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "c80e543598bb575fa591ccce10b535e4320dd16a", + "tarball": "http://registry.npmjs.org/nodemailer/-/nodemailer-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "4e283bed91bc4a7ed051162907954f4d00230320", + "tarball": "http://registry.npmjs.org/nodemailer/-/nodemailer-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "12c093b5ad877514a9c402f5899cb6f5dbafb885", + "tarball": "http://registry.npmjs.org/nodemailer/-/nodemailer-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "5e2ed789d903f699aa6fc5e4634478814140c20a", + "tarball": "http://registry.npmjs.org/nodemailer/-/nodemailer-0.2.4.tgz" + } + }, + "keywords": [ + "e-mail", + "mime", + "email", + "sendmail" + ], + "url": "http://registry.npmjs.org/nodemailer/" + }, + "NodeMini": { + "name": "NodeMini", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "diopib", + "email": "diopib@gmail.com" + } + ], + "time": { + "modified": "2011-10-11T02:53:58.604Z", + "created": "2011-10-11T02:53:56.015Z", + "0.0.1": "2011-10-11T02:53:58.604Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/NodeMini/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "f46914ed9aece038772092ddcfbf94055428e6b3", + "tarball": "http://registry.npmjs.org/NodeMini/-/NodeMini-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/NodeMini/" + }, + "nodemock": { + "name": "nodemock", + "description": "Simple Yet Powerful Mocking Framework for NodeJs", + "dist-tags": { + "latest": "0.2.16" + }, + "maintainers": [ + { + "name": "arunoda", + "email": "arunoda.susiripala@gmail.com" + } + ], + "time": { + "modified": "2011-10-15T11:45:53.320Z", + "created": "2011-03-15T14:41:08.957Z", + "0.1.0beta": "2011-03-15T14:41:10.742Z", + "0.2.0beta": "2011-03-15T19:27:09.292Z", + "0.2.1beta": "2011-04-03T01:55:07.396Z", + "0.2.2beta": "2011-04-04T05:41:47.928Z", + "0.2.3beta": "2011-04-05T02:51:48.835Z", + "0.2.4beta": "2011-04-05T03:44:17.440Z", + "0.2.5beta": "2011-04-05T14:41:15.122Z", + "0.2.6beta": "2011-04-05T18:40:13.768Z", + "0.2.7beta": "2011-04-07T02:59:53.695Z", + "0.2.8beta": "2011-05-08T04:39:07.187Z", + "0.2.9beta": "2011-06-13T15:57:05.143Z", + "0.2.10beta": "2011-06-25T04:27:05.097Z", + "0.2.11beta": "2011-07-13T03:51:29.885Z", + "0.2.12": "2011-07-13T16:49:52.683Z", + "0.2.13": "2011-08-06T14:47:41.860Z", + "0.2.14": "2011-08-13T20:26:01.532Z", + "0.2.15": "2011-10-01T12:32:54.271Z", + "0.2.16": "2011-10-15T11:45:53.320Z" + }, + "author": { + "name": "Arunoda Susiripala", + "email": "arunoda.susiripala@gmail.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:arunoda/nodemock.git" + }, + "versions": { + "0.1.0beta": "http://registry.npmjs.org/nodemock/0.1.0beta", + "0.2.0beta": "http://registry.npmjs.org/nodemock/0.2.0beta", + "0.2.1beta": "http://registry.npmjs.org/nodemock/0.2.1beta", + "0.2.2beta": "http://registry.npmjs.org/nodemock/0.2.2beta", + "0.2.3beta": "http://registry.npmjs.org/nodemock/0.2.3beta", + "0.2.4beta": "http://registry.npmjs.org/nodemock/0.2.4beta", + "0.2.5beta": "http://registry.npmjs.org/nodemock/0.2.5beta", + "0.2.6beta": "http://registry.npmjs.org/nodemock/0.2.6beta", + "0.2.7beta": "http://registry.npmjs.org/nodemock/0.2.7beta", + "0.2.8beta": "http://registry.npmjs.org/nodemock/0.2.8beta", + "0.2.9beta": "http://registry.npmjs.org/nodemock/0.2.9beta", + "0.2.10beta": "http://registry.npmjs.org/nodemock/0.2.10beta", + "0.2.11beta": "http://registry.npmjs.org/nodemock/0.2.11beta", + "0.2.12": "http://registry.npmjs.org/nodemock/0.2.12", + "0.2.13": "http://registry.npmjs.org/nodemock/0.2.13", + "0.2.14": "http://registry.npmjs.org/nodemock/0.2.14", + "0.2.15": "http://registry.npmjs.org/nodemock/0.2.15", + "0.2.16": "http://registry.npmjs.org/nodemock/0.2.16" + }, + "dist": { + "0.1.0beta": { + "shasum": "7c2c26b1fab88e7f1b101e84449ef7a3566d7481", + "tarball": "http://registry.npmjs.org/nodemock/-/nodemock-0.1.0beta.tgz" + }, + "0.2.0beta": { + "shasum": "c01fda3f2a365abf9bf42618fdca22f097e6a0e7", + "tarball": "http://registry.npmjs.org/nodemock/-/nodemock-0.2.0beta.tgz" + }, + "0.2.1beta": { + "shasum": "5eb122aedc830c475ed9d5d58e2cc5388bfad4e2", + "tarball": "http://registry.npmjs.org/nodemock/-/nodemock-0.2.1beta.tgz" + }, + "0.2.2beta": { + "shasum": "a4773e804b6083a14e2b5aa3e0c8733d507c7611", + "tarball": "http://registry.npmjs.org/nodemock/-/nodemock-0.2.2beta.tgz" + }, + "0.2.3beta": { + "shasum": "e4edf1736c805bdece1c1d576f0962825c88cb6a", + "tarball": "http://registry.npmjs.org/nodemock/-/nodemock-0.2.3beta.tgz" + }, + "0.2.4beta": { + "shasum": "0aa906e04e932c0f2f57bf0f69e7fa96edcec5fd", + "tarball": "http://registry.npmjs.org/nodemock/-/nodemock-0.2.4beta.tgz" + }, + "0.2.5beta": { + "shasum": "9d3b5dc6eba3e4729e2b36ce2829442eec6f0f54", + "tarball": "http://registry.npmjs.org/nodemock/-/nodemock-0.2.5beta.tgz" + }, + "0.2.6beta": { + "shasum": "97fcc26e451f1270e0a76eae32e7d0a9977780a2", + "tarball": "http://registry.npmjs.org/nodemock/-/nodemock-0.2.6beta.tgz" + }, + "0.2.7beta": { + "shasum": "17904c76ca39cf149bec157361a904cfc70964dd", + "tarball": "http://registry.npmjs.org/nodemock/-/nodemock-0.2.7beta.tgz" + }, + "0.2.8beta": { + "shasum": "bf72896d2093c8a039eca62fdbc6d7c7e42384f3", + "tarball": "http://registry.npmjs.org/nodemock/-/nodemock-0.2.8beta.tgz" + }, + "0.2.9beta": { + "shasum": "b01a1cb66715d27ffd719408962f92605bb32eab", + "tarball": "http://registry.npmjs.org/nodemock/-/nodemock-0.2.9beta.tgz" + }, + "0.2.10beta": { + "shasum": "c11aa861aed316826a83e15e3c09cbc1e3e701ac", + "tarball": "http://registry.npmjs.org/nodemock/-/nodemock-0.2.10beta.tgz" + }, + "0.2.11beta": { + "shasum": "9af07a388aebcdc476e0d2755546b7b7f0e495b4", + "tarball": "http://registry.npmjs.org/nodemock/-/nodemock-0.2.11beta.tgz" + }, + "0.2.12": { + "shasum": "9c15c4795dba87442345cd04b49dc6f37e7e61cd", + "tarball": "http://registry.npmjs.org/nodemock/-/nodemock-0.2.12.tgz" + }, + "0.2.13": { + "shasum": "4bc1f2fdf620ef128b3091899575ac12cd54fe6a", + "tarball": "http://registry.npmjs.org/nodemock/-/nodemock-0.2.13.tgz" + }, + "0.2.14": { + "shasum": "ba327f4b6835093ebe3bf1d00b80e79fe832a618", + "tarball": "http://registry.npmjs.org/nodemock/-/nodemock-0.2.14.tgz" + }, + "0.2.15": { + "shasum": "107e2cade896645e3cb7c95be76da8931b5a45f6", + "tarball": "http://registry.npmjs.org/nodemock/-/nodemock-0.2.15.tgz" + }, + "0.2.16": { + "shasum": "bcd347cfd06f04d517b563d708356f6fd783923f", + "tarball": "http://registry.npmjs.org/nodemock/-/nodemock-0.2.16.tgz" + } + }, + "url": "http://registry.npmjs.org/nodemock/" + }, + "nodemon": { + "name": "nodemon", + "description": "Simple monitor script for use during development of a node.js app.", + "dist-tags": { + "latest": "0.5.7" + }, + "maintainers": [ + { + "name": "remy", + "email": "remy@remysharp.com" + } + ], + "author": { + "name": "Remy Sharp", + "url": "http://github.com/remy" + }, + "repository": { + "type": "git", + "url": "git://github.com/remy/nodemon.git" + }, + "time": { + "modified": "2011-10-26T21:26:53.388Z", + "created": "2011-02-03T17:03:46.217Z", + "0.1.4": "2011-02-03T17:03:46.217Z", + "0.1.5": "2011-02-03T17:03:46.217Z", + "0.1.6": "2011-02-03T17:03:46.217Z", + "0.1.7": "2011-02-03T17:03:46.217Z", + "0.1.8": "2011-02-03T17:03:46.217Z", + "0.2.0": "2011-02-03T17:03:46.217Z", + "0.2.1": "2011-02-24T11:57:32.107Z", + "0.2.2": "2011-03-20T17:15:10.258Z", + "0.3.0": "2011-04-23T22:48:52.582Z", + "0.3.1": "2011-04-23T23:09:32.866Z", + "0.3.2": "2011-04-23T23:41:33.716Z", + "0.4.0": "2011-05-01T23:56:17.163Z", + "0.4.1": "2011-05-03T16:19:55.741Z", + "0.5.0": "2011-05-21T21:45:39.944Z", + "0.5.1": "2011-05-24T22:54:32.981Z", + "0.5.2": "2011-05-24T23:03:47.600Z", + "0.5.3": "2011-06-23T17:43:20.038Z", + "0.5.4": "2011-08-18T16:48:10.801Z", + "0.5.5": "2011-08-18T18:05:02.319Z", + "0.5.6": "2011-10-25T09:35:15.774Z", + "0.5.7": "2011-10-26T21:26:53.388Z" + }, + "versions": { + "0.1.4": "http://registry.npmjs.org/nodemon/0.1.4", + "0.1.5": "http://registry.npmjs.org/nodemon/0.1.5", + "0.1.6": "http://registry.npmjs.org/nodemon/0.1.6", + "0.1.7": "http://registry.npmjs.org/nodemon/0.1.7", + "0.1.8": "http://registry.npmjs.org/nodemon/0.1.8", + "0.2.0": "http://registry.npmjs.org/nodemon/0.2.0", + "0.2.1": "http://registry.npmjs.org/nodemon/0.2.1", + "0.2.2": "http://registry.npmjs.org/nodemon/0.2.2", + "0.3.0": "http://registry.npmjs.org/nodemon/0.3.0", + "0.3.1": "http://registry.npmjs.org/nodemon/0.3.1", + "0.3.2": "http://registry.npmjs.org/nodemon/0.3.2", + "0.4.0": "http://registry.npmjs.org/nodemon/0.4.0", + "0.4.1": "http://registry.npmjs.org/nodemon/0.4.1", + "0.5.0": "http://registry.npmjs.org/nodemon/0.5.0", + "0.5.1": "http://registry.npmjs.org/nodemon/0.5.1", + "0.5.2": "http://registry.npmjs.org/nodemon/0.5.2", + "0.5.3": "http://registry.npmjs.org/nodemon/0.5.3", + "0.5.4": "http://registry.npmjs.org/nodemon/0.5.4", + "0.5.5": "http://registry.npmjs.org/nodemon/0.5.5", + "0.5.6": "http://registry.npmjs.org/nodemon/0.5.6", + "0.5.7": "http://registry.npmjs.org/nodemon/0.5.7" + }, + "dist": { + "0.1.4": { + "tarball": "http://packages:5984/nodemon/-/nodemon-0.1.4.tgz" + }, + "0.1.5": { + "tarball": "http://packages:5984/nodemon/-/nodemon-0.1.5.tgz" + }, + "0.1.6": { + "tarball": "http://packages:5984/nodemon/-/nodemon-0.1.6.tgz" + }, + "0.1.7": { + "tarball": "http://packages:5984/nodemon/-/nodemon-0.1.7.tgz" + }, + "0.1.8": { + "tarball": "http://packages:5984/nodemon/-/nodemon-0.1.8.tgz" + }, + "0.2.0": { + "shasum": "cd5138da15391fbf60305791d61ecafae3bfaba4", + "tarball": "http://registry.npmjs.org/nodemon/-/nodemon-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "c008feaed5fe47224f50a2414b2ca93584f4c316", + "tarball": "http://registry.npmjs.org/nodemon/-/nodemon-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "2409de76a68223ddc79e340f65a13f286b86397e", + "tarball": "http://registry.npmjs.org/nodemon/-/nodemon-0.2.2.tgz" + }, + "0.3.0": { + "shasum": "e9946ffb91b466d6d1276d063a5fbab083124edc", + "tarball": "http://registry.npmjs.org/nodemon/-/nodemon-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "9a5fe241c7d8041577ff162cbd1d3cef207bd4be", + "tarball": "http://registry.npmjs.org/nodemon/-/nodemon-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "8ef1430debd6f1316d36b182c309d184c09e711c", + "tarball": "http://registry.npmjs.org/nodemon/-/nodemon-0.3.2.tgz" + }, + "0.4.0": { + "shasum": "8fbeb9430391eb71cb72d077b32c904e2cf6c045", + "tarball": "http://registry.npmjs.org/nodemon/-/nodemon-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "b6d7e6c040649b9e53fd413d2cacbf8cfb1cb183", + "tarball": "http://registry.npmjs.org/nodemon/-/nodemon-0.4.1.tgz" + }, + "0.5.0": { + "shasum": "3bf47eb01518bdc2b756d1d8b01ba45a207e9657", + "tarball": "http://registry.npmjs.org/nodemon/-/nodemon-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "18edcfac90af3cd8ed53c06e6dd2081e07715347", + "tarball": "http://registry.npmjs.org/nodemon/-/nodemon-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "21c43dba3ccc000501c3fff88288bf0f634ba539", + "tarball": "http://registry.npmjs.org/nodemon/-/nodemon-0.5.2.tgz" + }, + "0.5.3": { + "shasum": "10baddf82ced6e3993d9aad3f0854b4dde57b922", + "tarball": "http://registry.npmjs.org/nodemon/-/nodemon-0.5.3.tgz" + }, + "0.5.4": { + "shasum": "737946f008b9f3d0342902aa279642623bc7fcb6", + "tarball": "http://registry.npmjs.org/nodemon/-/nodemon-0.5.4.tgz" + }, + "0.5.5": { + "shasum": "a796125f2e3128d7fbbfcb67efa3593302024129", + "tarball": "http://registry.npmjs.org/nodemon/-/nodemon-0.5.5.tgz" + }, + "0.5.6": { + "shasum": "f0f59bf98d1da5ca885de44e870c4e419a0db76a", + "tarball": "http://registry.npmjs.org/nodemon/-/nodemon-0.5.6.tgz" + }, + "0.5.7": { + "shasum": "19de72490fb0146ff78c67e46b86942128d13b24", + "tarball": "http://registry.npmjs.org/nodemon/-/nodemon-0.5.7.tgz" + } + }, + "keywords": [ + "monitor", + "development", + "restart", + "autoload", + "reload", + "terminal" + ], + "url": "http://registry.npmjs.org/nodemon/" + }, + "nodepad": { + "name": "nodepad", + "description": "A notepad written with Node", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "alexyoung", + "email": "alex@alexyoung.org" + } + ], + "time": { + "modified": "2011-11-23T12:11:35.271Z", + "created": "2011-02-28T17:32:37.727Z", + "0.0.1": "2011-02-28T17:32:38.126Z", + "0.1.0": "2011-05-02T12:52:52.814Z", + "0.1.1": "2011-11-23T12:11:35.271Z" + }, + "author": { + "name": "Alex R. Young", + "url": "http://alexyoung.org" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nodepad/0.0.1", + "0.1.0": "http://registry.npmjs.org/nodepad/0.1.0", + "0.1.1": "http://registry.npmjs.org/nodepad/0.1.1" + }, + "dist": { + "0.0.1": { + "shasum": "1e7d84fb12459f47b619ace926d2a3ff19e8b739", + "tarball": "http://registry.npmjs.org/nodepad/-/nodepad-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "247b8ca4643c576ef7b0be38ec80ef96c345473a", + "tarball": "http://registry.npmjs.org/nodepad/-/nodepad-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "9ee33da4c3498d118ac0eb7b8e27391919550484", + "tarball": "http://registry.npmjs.org/nodepad/-/nodepad-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/nodepad/" + }, + "nodepal": { + "name": "nodepal", + "description": "A Drupal integration layer for Node.js developers", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "synodinos", + "email": "synodinos@gmail.com" + } + ], + "author": { + "name": "Dionysios G. Synodinos", + "email": "synodinos@gmail.com" + }, + "time": { + "modified": "2011-01-28T12:02:47.165Z", + "created": "2011-01-28T12:02:47.165Z", + "0.0.1": "2011-01-28T12:02:47.165Z", + "0.0.3": "2011-01-28T12:02:47.165Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nodepal/0.0.1", + "0.0.3": "http://registry.npmjs.org/nodepal/0.0.3" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/nodepal/-/nodepal-0.0.1.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/nodepal/-/nodepal-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/nodepal/" + }, + "nodePhpSessions": { + "name": "nodePhpSessions", + "description": "PHP session handler with node.js", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "gonzalo123", + "email": "gonzalo123@gmail.com" + } + ], + "time": { + "modified": "2011-07-24T13:46:14.733Z", + "created": "2011-07-24T13:46:13.681Z", + "0.0.1": "2011-07-24T13:46:14.733Z" + }, + "author": { + "name": "Gonzalo Ayuso", + "email": "gonzalo123@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/gonzalo123/nodePhpSessions.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nodePhpSessions/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "e2a9be067f7b24f4237349ec825daaf0b53fb691", + "tarball": "http://registry.npmjs.org/nodePhpSessions/-/nodePhpSessions-0.0.1.tgz" + } + }, + "keywords": [ + "php", + "sessions", + "handler", + "phpSessionHandler", + "comet", + "ajax" + ], + "url": "http://registry.npmjs.org/nodePhpSessions/" + }, + "nodepie": { + "name": "nodepie", + "description": "RSS/Atom parser for Node.JS", + "dist-tags": { + "latest": "0.4.0" + }, + "maintainers": [ + { + "name": "andris", + "email": "andris@node.ee" + } + ], + "time": { + "modified": "2011-11-10T09:57:42.193Z", + "created": "2011-08-04T09:53:00.838Z", + "0.1.0": "2011-08-04T09:53:01.856Z", + "0.1.1": "2011-08-04T12:02:20.634Z", + "0.2.0": "2011-08-16T17:48:59.619Z", + "0.2.1": "2011-08-16T18:40:18.286Z", + "0.2.2": "2011-08-17T07:36:03.073Z", + "0.2.3": "2011-08-18T10:59:14.867Z", + "0.3.0": "2011-08-26T08:32:02.825Z", + "0.3.1": "2011-09-19T07:39:03.887Z", + "0.4.0": "2011-11-10T09:57:42.193Z" + }, + "author": { + "name": "Andris Reinman" + }, + "repository": { + "type": "git", + "url": "git://github.com/andris9/nodepie.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/nodepie/0.1.0", + "0.1.1": "http://registry.npmjs.org/nodepie/0.1.1", + "0.2.0": "http://registry.npmjs.org/nodepie/0.2.0", + "0.2.1": "http://registry.npmjs.org/nodepie/0.2.1", + "0.2.2": "http://registry.npmjs.org/nodepie/0.2.2", + "0.2.3": "http://registry.npmjs.org/nodepie/0.2.3", + "0.3.0": "http://registry.npmjs.org/nodepie/0.3.0", + "0.3.1": "http://registry.npmjs.org/nodepie/0.3.1", + "0.4.0": "http://registry.npmjs.org/nodepie/0.4.0" + }, + "dist": { + "0.1.0": { + "shasum": "7c406263b3f39737bef97ef4f085bba8754982e1", + "tarball": "http://registry.npmjs.org/nodepie/-/nodepie-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "2f7f78b7c9cb702899b2af36ca67f94b83296142", + "tarball": "http://registry.npmjs.org/nodepie/-/nodepie-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "0ffc89319e5ece5c7863e100eba81d98dce39cf0", + "tarball": "http://registry.npmjs.org/nodepie/-/nodepie-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "166759dbfa80e4b7ad099e6bc679858e9735d4a8", + "tarball": "http://registry.npmjs.org/nodepie/-/nodepie-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "a2db9de0398397ec31a245e5d14737e16b5f4cd4", + "tarball": "http://registry.npmjs.org/nodepie/-/nodepie-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "28f9967493c532826d4e223cf67d92940b78c09e", + "tarball": "http://registry.npmjs.org/nodepie/-/nodepie-0.2.3.tgz" + }, + "0.3.0": { + "shasum": "ab573743f16e7d2ebbcd92e7ba0999da21406f34", + "tarball": "http://registry.npmjs.org/nodepie/-/nodepie-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "e654b51657c8db81346cd2b34f279bdd208e5ea9", + "tarball": "http://registry.npmjs.org/nodepie/-/nodepie-0.3.1.tgz" + }, + "0.4.0": { + "shasum": "a6217ef0fa986d2114bb2dd5dbd0580934f1899d", + "tarball": "http://registry.npmjs.org/nodepie/-/nodepie-0.4.0.tgz" + } + }, + "keywords": [ + "rss", + "feed", + "atom" + ], + "url": "http://registry.npmjs.org/nodepie/" + }, + "nodepress": { + "name": "nodepress", + "description": "A nodejs micro-blog engine", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "zir", + "email": "zir.echo@gmail.com" + } + ], + "time": { + "modified": "2011-08-19T07:12:49.193Z", + "created": "2011-08-19T07:12:34.853Z", + "0.3.0": "2011-08-19T07:12:49.193Z" + }, + "author": { + "name": "Senmiao Liu", + "email": "zir.echo@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/zir/nodepress.git" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/nodepress/0.3.0" + }, + "dist": { + "0.3.0": { + "shasum": "bb17d72deccb634ab95a5b089a08de215106e828", + "tarball": "http://registry.npmjs.org/nodepress/-/nodepress-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/nodepress/" + }, + "nodeQuery": { + "name": "nodeQuery", + "description": "DOM manipulation from the server.", + "dist-tags": { + "latest": "0.0.9-1" + }, + "maintainers": [ + { + "name": "tblobaum", + "email": "tblobaum@gmail.com" + } + ], + "time": { + "modified": "2011-12-01T04:17:45.519Z", + "created": "2011-09-25T17:07:25.738Z", + "0.0.3": "2011-09-25T17:07:51.626Z", + "0.0.4": "2011-09-26T00:47:08.232Z", + "0.0.41": "2011-09-26T14:14:21.692Z", + "0.0.5": "2011-09-28T16:03:59.292Z", + "0.0.6": "2011-10-29T07:03:01.002Z", + "0.0.7": "2011-10-29T09:29:32.096Z", + "0.0.7-1": "2011-10-29T10:42:27.582Z", + "0.0.7-3": "2011-10-29T10:44:03.807Z", + "0.0.7-4": "2011-10-30T02:28:35.708Z", + "0.0.7-5": "2011-10-30T06:26:40.686Z", + "0.0.8": "2011-11-01T12:08:03.466Z", + "0.0.8-1": "2011-11-01T12:11:43.387Z", + "0.0.8-2": "2011-11-01T16:10:38.887Z", + "0.0.8-3": "2011-11-01T16:13:29.201Z", + "0.0.8-4": "2011-11-01T16:15:39.382Z", + "0.0.8-5": "2011-11-01T23:34:07.886Z", + "0.0.8-8": "2011-11-02T06:46:39.020Z", + "0.0.8-9": "2011-11-04T21:00:05.583Z", + "0.0.9": "2011-11-06T14:10:03.960Z", + "0.0.9-1": "2011-11-06T14:18:15.583Z" + }, + "author": { + "name": "Thomas Blobaum" + }, + "repository": { + "type": "git", + "url": "git://github.com/tblobaum/nodeQuery.git" + }, + "users": { + "tblobaum": true + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/nodeQuery/0.0.3", + "0.0.4": "http://registry.npmjs.org/nodeQuery/0.0.4", + "0.0.41": "http://registry.npmjs.org/nodeQuery/0.0.41", + "0.0.5": "http://registry.npmjs.org/nodeQuery/0.0.5", + "0.0.6": "http://registry.npmjs.org/nodeQuery/0.0.6", + "0.0.7": "http://registry.npmjs.org/nodeQuery/0.0.7", + "0.0.7-1": "http://registry.npmjs.org/nodeQuery/0.0.7-1", + "0.0.7-3": "http://registry.npmjs.org/nodeQuery/0.0.7-3", + "0.0.7-4": "http://registry.npmjs.org/nodeQuery/0.0.7-4", + "0.0.7-5": "http://registry.npmjs.org/nodeQuery/0.0.7-5", + "0.0.8": "http://registry.npmjs.org/nodeQuery/0.0.8", + "0.0.8-1": "http://registry.npmjs.org/nodeQuery/0.0.8-1", + "0.0.8-2": "http://registry.npmjs.org/nodeQuery/0.0.8-2", + "0.0.8-3": "http://registry.npmjs.org/nodeQuery/0.0.8-3", + "0.0.8-4": "http://registry.npmjs.org/nodeQuery/0.0.8-4", + "0.0.8-5": "http://registry.npmjs.org/nodeQuery/0.0.8-5", + "0.0.8-8": "http://registry.npmjs.org/nodeQuery/0.0.8-8", + "0.0.8-9": "http://registry.npmjs.org/nodeQuery/0.0.8-9", + "0.0.9": "http://registry.npmjs.org/nodeQuery/0.0.9", + "0.0.9-1": "http://registry.npmjs.org/nodeQuery/0.0.9-1" + }, + "dist": { + "0.0.3": { + "shasum": "fa43b39eee6f5ff57e3f716697deb95ca9e434b7", + "tarball": "http://registry.npmjs.org/nodeQuery/-/nodeQuery-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "e1c42a36526522d013f6ee13e9eb5ba79fb5dcbc", + "tarball": "http://registry.npmjs.org/nodeQuery/-/nodeQuery-0.0.4.tgz" + }, + "0.0.41": { + "shasum": "998bfa79b548d39367f28e8744c3e229cc3d0564", + "tarball": "http://registry.npmjs.org/nodeQuery/-/nodeQuery-0.0.41.tgz" + }, + "0.0.5": { + "shasum": "d8b377d346a54ecd70a20fa7ea18e626d9e27ade", + "tarball": "http://registry.npmjs.org/nodeQuery/-/nodeQuery-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "109e5f18aeb1bb1cad0df1aa1ba68ad42b88786c", + "tarball": "http://registry.npmjs.org/nodeQuery/-/nodeQuery-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "a53e8b8d8bfef66595507c8c32ed60ec536a9e9b", + "tarball": "http://registry.npmjs.org/nodeQuery/-/nodeQuery-0.0.7.tgz" + }, + "0.0.7-1": { + "shasum": "32c351faad414107838b482022e2c157fc37650f", + "tarball": "http://registry.npmjs.org/nodeQuery/-/nodeQuery-0.0.7-1.tgz" + }, + "0.0.7-3": { + "shasum": "4d18998361d7994eb598be24f4b79e58eb65fea9", + "tarball": "http://registry.npmjs.org/nodeQuery/-/nodeQuery-0.0.7-3.tgz" + }, + "0.0.7-4": { + "shasum": "886dd5d550d92629ae852046738ef5b9b5afc8f6", + "tarball": "http://registry.npmjs.org/nodeQuery/-/nodeQuery-0.0.7-4.tgz" + }, + "0.0.7-5": { + "shasum": "f3ac8593330d2a165c7fa7888a4a3043c0708668", + "tarball": "http://registry.npmjs.org/nodeQuery/-/nodeQuery-0.0.7-5.tgz" + }, + "0.0.8": { + "shasum": "42740121f0ad9a9595147f2880e7b46990249d13", + "tarball": "http://registry.npmjs.org/nodeQuery/-/nodeQuery-0.0.8.tgz" + }, + "0.0.8-1": { + "shasum": "e9db6997c7f765f24dc133a0fbccf99fc86c78f4", + "tarball": "http://registry.npmjs.org/nodeQuery/-/nodeQuery-0.0.8-1.tgz" + }, + "0.0.8-2": { + "shasum": "bf276fc41c696b65b1774a13ff90bcb5e51d9547", + "tarball": "http://registry.npmjs.org/nodeQuery/-/nodeQuery-0.0.8-2.tgz" + }, + "0.0.8-3": { + "shasum": "beac0581bf6223fc81d17861ac3d0222d6c90a2d", + "tarball": "http://registry.npmjs.org/nodeQuery/-/nodeQuery-0.0.8-3.tgz" + }, + "0.0.8-4": { + "shasum": "7093fd6f3b50c9654e0215c747147421878fffeb", + "tarball": "http://registry.npmjs.org/nodeQuery/-/nodeQuery-0.0.8-4.tgz" + }, + "0.0.8-5": { + "shasum": "7164a16b801a82032543da6b7a9b95d71bc9dee7", + "tarball": "http://registry.npmjs.org/nodeQuery/-/nodeQuery-0.0.8-5.tgz" + }, + "0.0.8-8": { + "shasum": "07e9442359e89195e568a3c6625d5a1c3d3c8766", + "tarball": "http://registry.npmjs.org/nodeQuery/-/nodeQuery-0.0.8-8.tgz" + }, + "0.0.8-9": { + "shasum": "a2b2c9ef765944fa20a81525f807b00678aafb2f", + "tarball": "http://registry.npmjs.org/nodeQuery/-/nodeQuery-0.0.8-9.tgz" + }, + "0.0.9": { + "shasum": "ac67f87fc2da9de2030f21e1de918b3cba9020cc", + "tarball": "http://registry.npmjs.org/nodeQuery/-/nodeQuery-0.0.9.tgz" + }, + "0.0.9-1": { + "shasum": "23f2bb51f8da706672e146d586b612bd52e3af83", + "tarball": "http://registry.npmjs.org/nodeQuery/-/nodeQuery-0.0.9-1.tgz" + } + }, + "keywords": [ + "DOM", + "manipulation", + "jquery", + "zepto", + "dnode", + "socket.io", + "RPC", + "browserify" + ], + "url": "http://registry.npmjs.org/nodeQuery/" + }, + "noderelict": { + "name": "noderelict", + "description": "Instrumentation for node", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "blindsey", + "email": "ben@carbonfive.com" + } + ], + "time": { + "modified": "2011-08-28T20:53:42.906Z", + "created": "2011-08-27T22:08:56.060Z", + "0.0.1": "2011-08-27T22:08:56.872Z", + "0.0.2": "2011-08-27T22:33:21.416Z", + "0.0.3": "2011-08-27T22:39:30.815Z", + "0.0.4": "2011-08-27T22:46:21.012Z", + "0.0.5": "2011-08-27T23:01:51.378Z", + "0.0.6": "2011-08-28T00:14:08.972Z", + "0.1.0": "2011-08-28T04:52:53.203Z", + "0.1.1": "2011-08-28T20:25:46.878Z", + "0.1.2": "2011-08-28T20:27:34.332Z", + "0.1.3": "2011-08-28T20:33:50.334Z", + "0.1.4": "2011-08-28T20:53:42.906Z" + }, + "repository": { + "type": "git", + "url": "git@gitub.com:blindsey/noderelict-npm.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/noderelict/0.0.1", + "0.0.2": "http://registry.npmjs.org/noderelict/0.0.2", + "0.0.3": "http://registry.npmjs.org/noderelict/0.0.3", + "0.0.4": "http://registry.npmjs.org/noderelict/0.0.4", + "0.0.5": "http://registry.npmjs.org/noderelict/0.0.5", + "0.0.6": "http://registry.npmjs.org/noderelict/0.0.6", + "0.1.0": "http://registry.npmjs.org/noderelict/0.1.0", + "0.1.1": "http://registry.npmjs.org/noderelict/0.1.1", + "0.1.2": "http://registry.npmjs.org/noderelict/0.1.2", + "0.1.3": "http://registry.npmjs.org/noderelict/0.1.3", + "0.1.4": "http://registry.npmjs.org/noderelict/0.1.4" + }, + "dist": { + "0.0.1": { + "shasum": "76e1cf0d5064be7b7430ab6a6f9e98e79f5b5b9d", + "tarball": "http://registry.npmjs.org/noderelict/-/noderelict-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "71110c0ee3520fefd11ad16414a301cae04371b7", + "tarball": "http://registry.npmjs.org/noderelict/-/noderelict-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "9903be59e1e96aebb0c871594dede3097e020fa4", + "tarball": "http://registry.npmjs.org/noderelict/-/noderelict-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "7a60b244dff688f275e96e19114007f50ec866c1", + "tarball": "http://registry.npmjs.org/noderelict/-/noderelict-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "11518190dbc6fec9c492bb0cb5855b23add9656c", + "tarball": "http://registry.npmjs.org/noderelict/-/noderelict-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "78221d0dbb90c7974d2a30c53b76594a22167531", + "tarball": "http://registry.npmjs.org/noderelict/-/noderelict-0.0.6.tgz" + }, + "0.1.0": { + "shasum": "e637b6660185dac62bebf6040646fb0e890feed7", + "tarball": "http://registry.npmjs.org/noderelict/-/noderelict-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "d3fdc63bc5ab09b3cb200a898cbc6c19be10d46b", + "tarball": "http://registry.npmjs.org/noderelict/-/noderelict-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "41e3104ec2e8db550f552572e2ab790ecbb90fd6", + "tarball": "http://registry.npmjs.org/noderelict/-/noderelict-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "bc6cf947bdb5b0a3231d2fdc2ed308a378b2ac96", + "tarball": "http://registry.npmjs.org/noderelict/-/noderelict-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "fa7f1ffbb7c0fe584e7083d0cb0c579ead2721ce", + "tarball": "http://registry.npmjs.org/noderelict/-/noderelict-0.1.4.tgz" + } + }, + "keywords": [ + "node", + "instrumentation", + "performance" + ], + "url": "http://registry.npmjs.org/noderelict/" + }, + "noderpc": { + "name": "noderpc", + "description": "A framework for building distributed services with NodeJS", + "dist-tags": { + "latest": "0.1.2-4" + }, + "maintainers": [ + { + "name": "brstgt", + "email": "benjamin.roth@kwick.de" + }, + { + "name": "lociii", + "email": "npm@jensnistler.de" + } + ], + "time": { + "modified": "2011-05-18T09:54:50.854Z", + "created": "2011-03-24T21:24:38.756Z", + "0.1.0": "2011-03-24T21:24:39.222Z", + "0.1.1": "2011-03-26T09:18:42.387Z", + "0.1.2": "2011-03-27T15:35:45.868Z", + "0.1.2-1": "2011-04-04T13:06:38.196Z", + "0.1.2-2": "2011-04-07T09:08:50.514Z", + "0.1.2-3": "2011-04-07T09:17:25.527Z", + "0.1.2-4": "2011-05-18T09:54:50.854Z" + }, + "author": { + "name": "Benjamin Roth", + "email": "benjamin.roth@kwick.de", + "url": "http://www.kwick.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/brstgt/noderpc.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/noderpc/0.1.0", + "0.1.1": "http://registry.npmjs.org/noderpc/0.1.1", + "0.1.2": "http://registry.npmjs.org/noderpc/0.1.2", + "0.1.2-1": "http://registry.npmjs.org/noderpc/0.1.2-1", + "0.1.2-2": "http://registry.npmjs.org/noderpc/0.1.2-2", + "0.1.2-3": "http://registry.npmjs.org/noderpc/0.1.2-3", + "0.1.2-4": "http://registry.npmjs.org/noderpc/0.1.2-4" + }, + "dist": { + "0.1.0": { + "shasum": "b65b8e7b0e734f3e1444f81031a5c6bf55c28160", + "tarball": "http://registry.npmjs.org/noderpc/-/noderpc-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "4ddde7b4f285b14809f463570e44d35ef5e3b67c", + "tarball": "http://registry.npmjs.org/noderpc/-/noderpc-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "1d0982a6d0fea2ff3982e1fee2e48e8b3c31991e", + "tarball": "http://registry.npmjs.org/noderpc/-/noderpc-0.1.2.tgz" + }, + "0.1.2-1": { + "shasum": "7be492947617e381f80183bf1160aa7938db7e69", + "tarball": "http://registry.npmjs.org/noderpc/-/noderpc-0.1.2-1.tgz" + }, + "0.1.2-2": { + "shasum": "aeb2e347dc95e607b3aec464e942b41d7905affd", + "tarball": "http://registry.npmjs.org/noderpc/-/noderpc-0.1.2-2.tgz" + }, + "0.1.2-3": { + "shasum": "81a73315ee7c9e6c79b1e4c4d34f336e5d4a4f5a", + "tarball": "http://registry.npmjs.org/noderpc/-/noderpc-0.1.2-3.tgz" + }, + "0.1.2-4": { + "shasum": "baf4c7af1f0b7fc7902884e51db0aa9d223d4984", + "tarball": "http://registry.npmjs.org/noderpc/-/noderpc-0.1.2-4.tgz" + } + }, + "keywords": [ + "rpc", + "rmi", + "service", + "distributed" + ], + "url": "http://registry.npmjs.org/noderpc/" + }, + "nodespec": { + "name": "nodespec", + "description": "A light-weight RSpec-esque testing framework", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "glenjamin", + "email": "glenjamin@gmail.com" + } + ], + "time": { + "modified": "2011-11-16T10:40:57.429Z", + "created": "2011-09-12T19:07:00.667Z", + "0.1.0": "2011-09-12T19:07:01.921Z", + "0.2.0": "2011-11-08T11:24:16.854Z", + "0.2.1": "2011-11-16T10:40:57.429Z" + }, + "author": { + "name": "Glen Mailer", + "email": "glenjamin@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/glenjamin/nodespec.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/nodespec/0.1.0", + "0.2.0": "http://registry.npmjs.org/nodespec/0.2.0", + "0.2.1": "http://registry.npmjs.org/nodespec/0.2.1" + }, + "dist": { + "0.1.0": { + "shasum": "bf997a819f136f620793af4f0c0de2a1fcee4639", + "tarball": "http://registry.npmjs.org/nodespec/-/nodespec-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "e609590b842dda5912b5dcc160bb0eb840ce28d5", + "tarball": "http://registry.npmjs.org/nodespec/-/nodespec-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "a56d0e8cb7fbb4608ac651c7d1db3b5a472ea1c8", + "tarball": "http://registry.npmjs.org/nodespec/-/nodespec-0.2.1.tgz" + } + }, + "url": "http://registry.npmjs.org/nodespec/" + }, + "nodespy": { + "name": "nodespy", + "description": "Spy and Expectation Framework for NodeJS with Stubbing", + "dist-tags": { + "latest": "0.1.0alpha" + }, + "maintainers": [ + { + "name": "arunoda", + "email": "arunoda.susiripala@gmail.com" + } + ], + "time": { + "modified": "2011-05-07T19:10:58.532Z", + "created": "2011-05-07T19:10:56.993Z", + "0.1.0alpha": "2011-05-07T19:10:58.532Z" + }, + "author": { + "name": "Arunoda Susiripala", + "email": "arunoda.susiripala@gmail.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:arunoda/nodespy.git" + }, + "versions": { + "0.1.0alpha": "http://registry.npmjs.org/nodespy/0.1.0alpha" + }, + "dist": { + "0.1.0alpha": { + "shasum": "5810705c3e27e7ae2e21f9ab527bae8c51310ee2", + "tarball": "http://registry.npmjs.org/nodespy/-/nodespy-0.1.0alpha.tgz" + } + }, + "url": "http://registry.npmjs.org/nodespy/" + }, + "NodeSSH": { + "name": "NodeSSH", + "description": "SSH Client for NodeJS", + "dist-tags": { + "latest": "0.5.0" + }, + "maintainers": [ + { + "name": "trakkasure", + "email": "trakkasure@gmail.com" + } + ], + "time": { + "modified": "2011-06-16T22:39:14.237Z", + "created": "2011-06-16T22:39:13.926Z", + "0.5.0": "2011-06-16T22:39:14.237Z" + }, + "author": { + "name": "tsmith" + }, + "repository": { + "type": "git", + "url": "git://github.com/Trakkasure/NodeSSH.git" + }, + "versions": { + "0.5.0": "http://registry.npmjs.org/NodeSSH/0.5.0" + }, + "dist": { + "0.5.0": { + "shasum": "fe2a4dd28dfd1dd88dd12a4f2fd5efec5e5620a0", + "tarball": "http://registry.npmjs.org/NodeSSH/-/NodeSSH-0.5.0.tgz" + } + }, + "keywords": [ + "ssh", + "net", + "expect" + ], + "url": "http://registry.npmjs.org/NodeSSH/" + }, + "nodestalker": { + "name": "nodestalker", + "description": "A Beanstalk client for node.js", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "pascalopitz", + "email": "contact@pascalopitz.com" + } + ], + "time": { + "modified": "2011-09-25T16:33:50.849Z", + "created": "2011-03-03T23:16:57.534Z", + "0.1.0": "2011-03-03T23:16:57.922Z", + "0.1.1": "2011-05-24T13:49:27.292Z", + "0.1.2": "2011-09-25T16:33:50.849Z" + }, + "author": { + "name": "Pascal Opitz", + "email": "pascal@ilikecode.co.uk", + "url": "http://www.ilikecode.co.uk" + }, + "repository": { + "type": "git", + "url": "git://github.com/pascalopitz/nodestalker.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/nodestalker/0.1.0", + "0.1.1": "http://registry.npmjs.org/nodestalker/0.1.1", + "0.1.2": "http://registry.npmjs.org/nodestalker/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "de1fc8011fb40282a78db45e76a1e8dbbee62e86", + "tarball": "http://registry.npmjs.org/nodestalker/-/nodestalker-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "0bbbe738909365aa0d292f100f6fbc533859dcb5", + "tarball": "http://registry.npmjs.org/nodestalker/-/nodestalker-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "27996ff0c1455231aa9ee2d80ae6911169edca51", + "tarball": "http://registry.npmjs.org/nodestalker/-/nodestalker-0.1.2.tgz" + } + }, + "keywords": [ + "beanstalkd", + "queue" + ], + "url": "http://registry.npmjs.org/nodestalker/" + }, + "nodester-api": { + "name": "nodester-api", + "description": "A library to interact with Nodester", + "dist-tags": { + "latest": "0.1.18" + }, + "maintainers": [ + { + "name": "DanBUK", + "email": "dan@f-box.org" + }, + { + "name": "davglass", + "email": "davglass@gmail.com" + }, + { + "name": "chrismatthieu", + "email": "chris@matthieu.us" + }, + { + "name": "contra", + "email": "contra@australia.edu" + }, + { + "name": "fractal", + "email": "contact@wearefractal.com" + } + ], + "time": { + "modified": "2011-11-18T21:20:29.158Z", + "created": "2011-01-31T16:24:46.859Z", + "0.1.0": "2011-01-31T16:24:47.136Z", + "0.1.1": "2011-02-01T13:48:29.189Z", + "0.1.2": "2011-02-03T15:35:41.473Z", + "0.1.3": "2011-02-05T20:51:06.238Z", + "0.1.4": "2011-02-06T20:41:16.426Z", + "0.1.5": "2011-02-13T11:58:31.241Z", + "0.1.6": "2011-03-10T22:46:47.988Z", + "0.1.7": "2011-03-11T13:50:10.283Z", + "0.1.8": "2011-03-22T18:14:49.314Z", + "0.1.9": "2011-07-22T10:00:31.292Z", + "0.1.11": "2011-09-07T18:06:54.528Z", + "0.1.12": "2011-09-07T18:44:08.586Z", + "0.1.13": "2011-09-09T00:45:10.197Z", + "0.1.14": "2011-09-14T11:53:54.734Z", + "0.1.15": "2011-09-14T23:48:31.458Z", + "0.1.16": "2011-10-26T07:17:44.989Z", + "0.1.17": "2011-11-06T10:19:23.752Z", + "0.1.18": "2011-11-18T21:20:29.158Z" + }, + "author": { + "name": "Contra", + "email": "contra@nodester.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/nodester/nodester-api.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/nodester-api/0.1.0", + "0.1.1": "http://registry.npmjs.org/nodester-api/0.1.1", + "0.1.2": "http://registry.npmjs.org/nodester-api/0.1.2", + "0.1.3": "http://registry.npmjs.org/nodester-api/0.1.3", + "0.1.4": "http://registry.npmjs.org/nodester-api/0.1.4", + "0.1.5": "http://registry.npmjs.org/nodester-api/0.1.5", + "0.1.6": "http://registry.npmjs.org/nodester-api/0.1.6", + "0.1.7": "http://registry.npmjs.org/nodester-api/0.1.7", + "0.1.8": "http://registry.npmjs.org/nodester-api/0.1.8", + "0.1.9": "http://registry.npmjs.org/nodester-api/0.1.9", + "0.1.11": "http://registry.npmjs.org/nodester-api/0.1.11", + "0.1.12": "http://registry.npmjs.org/nodester-api/0.1.12", + "0.1.13": "http://registry.npmjs.org/nodester-api/0.1.13", + "0.1.14": "http://registry.npmjs.org/nodester-api/0.1.14", + "0.1.15": "http://registry.npmjs.org/nodester-api/0.1.15", + "0.1.16": "http://registry.npmjs.org/nodester-api/0.1.16", + "0.1.17": "http://registry.npmjs.org/nodester-api/0.1.17", + "0.1.18": "http://registry.npmjs.org/nodester-api/0.1.18" + }, + "dist": { + "0.1.0": { + "shasum": "3744293d70faebad267894bd77696258f640431c", + "tarball": "http://registry.npmjs.org/nodester-api/-/nodester-api-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "4f530a4a627177dd5f4c796c22846dcbc522bfb1", + "tarball": "http://registry.npmjs.org/nodester-api/-/nodester-api-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "1617d70f74dfd5a910b3814fa18bd7b7b77a2914", + "tarball": "http://registry.npmjs.org/nodester-api/-/nodester-api-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "a26dc280ada942b0307a2b650f3c4cc03e5abd67", + "tarball": "http://registry.npmjs.org/nodester-api/-/nodester-api-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "c86859f1e12a8d2c667fb7a7dcfce2fd2fb4e04f", + "tarball": "http://registry.npmjs.org/nodester-api/-/nodester-api-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "e3e2e2c59c98b1780bca047897cbb9287b2c4fea", + "tarball": "http://registry.npmjs.org/nodester-api/-/nodester-api-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "1295e1965f20769c4bf74c1bcc43f91a188f76e5", + "tarball": "http://registry.npmjs.org/nodester-api/-/nodester-api-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "4a21239813c90e635f88b63438b102395cd07fdc", + "tarball": "http://registry.npmjs.org/nodester-api/-/nodester-api-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "dedb77371afcdc12f83f64e62acd2fd3d979b148", + "tarball": "http://registry.npmjs.org/nodester-api/-/nodester-api-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "02f398217eef7c39840bda60a3fd35f0a8000a88", + "tarball": "http://registry.npmjs.org/nodester-api/-/nodester-api-0.1.9.tgz" + }, + "0.1.11": { + "shasum": "fedd538ae1c8bc1713b53c9f978ce1cce4ba9c04", + "tarball": "http://registry.npmjs.org/nodester-api/-/nodester-api-0.1.11.tgz" + }, + "0.1.12": { + "shasum": "e666fca627ad91b925a3263029cd5b3ba254dfc7", + "tarball": "http://registry.npmjs.org/nodester-api/-/nodester-api-0.1.12.tgz" + }, + "0.1.13": { + "shasum": "7fe7713acc00cae168f6e0e31f7b8beb0f6d26e1", + "tarball": "http://registry.npmjs.org/nodester-api/-/nodester-api-0.1.13.tgz" + }, + "0.1.14": { + "shasum": "78f1a69befd6d6c1d194d57279c5d0a2ae733742", + "tarball": "http://registry.npmjs.org/nodester-api/-/nodester-api-0.1.14.tgz" + }, + "0.1.15": { + "shasum": "7d14de8d0e9c8e9700fe28c2fc170f6befa6562a", + "tarball": "http://registry.npmjs.org/nodester-api/-/nodester-api-0.1.15.tgz" + }, + "0.1.16": { + "shasum": "075c78593dd63416b5bceea79b548378dda4169e", + "tarball": "http://registry.npmjs.org/nodester-api/-/nodester-api-0.1.16.tgz" + }, + "0.1.17": { + "shasum": "1e0c77229cf1e18dac43dbfd72a66956cbd5d58a", + "tarball": "http://registry.npmjs.org/nodester-api/-/nodester-api-0.1.17.tgz" + }, + "0.1.18": { + "shasum": "ec8c8e3afb3d94210378e1af47ade4f093e20523", + "tarball": "http://registry.npmjs.org/nodester-api/-/nodester-api-0.1.18.tgz" + } + }, + "url": "http://registry.npmjs.org/nodester-api/" + }, + "nodester-cli": { + "name": "nodester-cli", + "description": "A CLI tool to allow interaction with the http://nodester.com/ platform.", + "dist-tags": { + "latest": "0.2.34" + }, + "maintainers": [ + { + "name": "DanBUK", + "email": "dan@f-box.org" + }, + { + "name": "davglass", + "email": "davglass@gmail.com" + }, + { + "name": "chrismatthieu", + "email": "chris@matthieu.us" + }, + { + "name": "contra", + "email": "contra@australia.edu" + }, + { + "name": "fractal", + "email": "contact@wearefractal.com" + } + ], + "time": { + "modified": "2011-09-14T12:24:04.049Z", + "created": "2011-01-31T16:26:42.043Z", + "0.1.0": "2011-01-31T16:26:42.334Z", + "0.1.1": "2011-02-01T13:48:46.448Z", + "0.1.2": "2011-02-01T13:58:42.336Z", + "0.1.3": "2011-02-03T17:32:01.199Z", + "0.1.5": "2011-02-05T21:06:12.443Z", + "0.1.6": "2011-02-06T20:41:43.597Z", + "0.1.7": "2011-02-08T13:08:37.065Z", + "0.2.0": "2011-02-12T17:53:03.951Z", + "0.2.1": "2011-02-13T11:58:41.785Z", + "0.2.3": "2011-02-14T11:42:12.845Z", + "0.2.4": "2011-03-10T16:13:12.690Z", + "0.2.5": "2011-03-10T16:26:37.174Z", + "0.2.6": "2011-03-10T22:48:01.097Z", + "0.2.7": "2011-03-11T13:52:15.657Z", + "0.2.8": "2011-03-11T19:56:21.111Z", + "0.2.9": "2011-03-13T19:29:23.301Z", + "0.2.10": "2011-03-22T12:16:43.778Z", + "0.2.11": "2011-03-22T13:45:16.739Z", + "0.2.12": "2011-03-22T18:15:02.563Z", + "0.2.13": "2011-05-02T19:24:23.523Z", + "0.2.14": "2011-07-07T16:55:19.896Z", + "0.2.15": "2011-07-07T17:04:12.947Z", + "0.2.17": "2011-07-22T10:07:01.877Z", + "0.2.18": "2011-07-22T10:47:50.265Z", + "0.2.19": "2011-07-22T10:49:09.534Z", + "0.2.20": "2011-08-22T02:02:39.089Z", + "0.2.31": "2011-09-07T18:04:21.020Z", + "0.2.32": "2011-09-07T18:44:35.108Z", + "0.2.33": "2011-09-09T00:44:05.023Z", + "0.2.34": "2011-09-14T12:11:42.811Z" + }, + "author": { + "name": "Daniel Bartlett", + "email": "dan@f-box.org", + "url": "http://danb-uk.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/nodester/nodester-cli.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/nodester-cli/0.1.0", + "0.1.1": "http://registry.npmjs.org/nodester-cli/0.1.1", + "0.1.2": "http://registry.npmjs.org/nodester-cli/0.1.2", + "0.1.3": "http://registry.npmjs.org/nodester-cli/0.1.3", + "0.1.5": "http://registry.npmjs.org/nodester-cli/0.1.5", + "0.1.6": "http://registry.npmjs.org/nodester-cli/0.1.6", + "0.1.7": "http://registry.npmjs.org/nodester-cli/0.1.7", + "0.2.0": "http://registry.npmjs.org/nodester-cli/0.2.0", + "0.2.1": "http://registry.npmjs.org/nodester-cli/0.2.1", + "0.2.3": "http://registry.npmjs.org/nodester-cli/0.2.3", + "0.2.4": "http://registry.npmjs.org/nodester-cli/0.2.4", + "0.2.5": "http://registry.npmjs.org/nodester-cli/0.2.5", + "0.2.6": "http://registry.npmjs.org/nodester-cli/0.2.6", + "0.2.7": "http://registry.npmjs.org/nodester-cli/0.2.7", + "0.2.8": "http://registry.npmjs.org/nodester-cli/0.2.8", + "0.2.9": "http://registry.npmjs.org/nodester-cli/0.2.9", + "0.2.10": "http://registry.npmjs.org/nodester-cli/0.2.10", + "0.2.11": "http://registry.npmjs.org/nodester-cli/0.2.11", + "0.2.12": "http://registry.npmjs.org/nodester-cli/0.2.12", + "0.2.13": "http://registry.npmjs.org/nodester-cli/0.2.13", + "0.2.14": "http://registry.npmjs.org/nodester-cli/0.2.14", + "0.2.15": "http://registry.npmjs.org/nodester-cli/0.2.15", + "0.2.17": "http://registry.npmjs.org/nodester-cli/0.2.17", + "0.2.18": "http://registry.npmjs.org/nodester-cli/0.2.18", + "0.2.19": "http://registry.npmjs.org/nodester-cli/0.2.19", + "0.2.20": "http://registry.npmjs.org/nodester-cli/0.2.20", + "0.2.31": "http://registry.npmjs.org/nodester-cli/0.2.31", + "0.2.32": "http://registry.npmjs.org/nodester-cli/0.2.32", + "0.2.33": "http://registry.npmjs.org/nodester-cli/0.2.33", + "0.2.34": "http://registry.npmjs.org/nodester-cli/0.2.34" + }, + "dist": { + "0.1.0": { + "shasum": "e9626598691bfb45fc15d8888a243a71a22901bf", + "tarball": "http://registry.npmjs.org/nodester-cli/-/nodester-cli-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "b0cb575ff16c858a1a5925506cd0fefcffd609b1", + "tarball": "http://registry.npmjs.org/nodester-cli/-/nodester-cli-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "4d8c618ed8273994e65352511cf50b012dce662e", + "tarball": "http://registry.npmjs.org/nodester-cli/-/nodester-cli-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "b1524e852cb5346f91f0adf290c21d5827b26ffb", + "tarball": "http://registry.npmjs.org/nodester-cli/-/nodester-cli-0.1.3.tgz" + }, + "0.1.5": { + "shasum": "c2dafab4931a4d7331babfd805836327ba214db3", + "tarball": "http://registry.npmjs.org/nodester-cli/-/nodester-cli-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "8c55e1366ead7603c7b62de3f3c8d5d27f183703", + "tarball": "http://registry.npmjs.org/nodester-cli/-/nodester-cli-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "3dfb50bc16a509641cde8b66b30036e1d28af426", + "tarball": "http://registry.npmjs.org/nodester-cli/-/nodester-cli-0.1.7.tgz" + }, + "0.2.0": { + "shasum": "4680620cfeb43d0302cb1b8dc19acf09f5aa131a", + "tarball": "http://registry.npmjs.org/nodester-cli/-/nodester-cli-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "8a53c51bd7ea2ee3c9526b4997b3a2783ea104d7", + "tarball": "http://registry.npmjs.org/nodester-cli/-/nodester-cli-0.2.1.tgz" + }, + "0.2.3": { + "shasum": "e1fa7a822bd1cfb672d79ece179b30bd004562da", + "tarball": "http://registry.npmjs.org/nodester-cli/-/nodester-cli-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "1c7145401db10f311e288a46512686b06c897405", + "tarball": "http://registry.npmjs.org/nodester-cli/-/nodester-cli-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "5d3edcde70576449a8f786c775023427c04cafb8", + "tarball": "http://registry.npmjs.org/nodester-cli/-/nodester-cli-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "94ca67c2dcf8e5726bcaaa8847618e8886457073", + "tarball": "http://registry.npmjs.org/nodester-cli/-/nodester-cli-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "b0a1349638b29bffa494968c943406a1127ff6b3", + "tarball": "http://registry.npmjs.org/nodester-cli/-/nodester-cli-0.2.7.tgz" + }, + "0.2.8": { + "shasum": "9378e4938893a43c9acc9bcf46535c2ae4fde371", + "tarball": "http://registry.npmjs.org/nodester-cli/-/nodester-cli-0.2.8.tgz" + }, + "0.2.9": { + "shasum": "275d863206aafea57dcd7cf8b912f9150120b53d", + "tarball": "http://registry.npmjs.org/nodester-cli/-/nodester-cli-0.2.9.tgz" + }, + "0.2.10": { + "shasum": "de9b1a21fcf9784ff8cdf121ee9c69b5d503b986", + "tarball": "http://registry.npmjs.org/nodester-cli/-/nodester-cli-0.2.10.tgz" + }, + "0.2.11": { + "shasum": "da8a51ca92100f727edc61b52b9c592232f7f28f", + "tarball": "http://registry.npmjs.org/nodester-cli/-/nodester-cli-0.2.11.tgz" + }, + "0.2.12": { + "shasum": "d4767dcdcb352a217e87cb0be8de6eb8ad851afd", + "tarball": "http://registry.npmjs.org/nodester-cli/-/nodester-cli-0.2.12.tgz" + }, + "0.2.13": { + "shasum": "6f336e186cb65e2774f34b330e27dd6fe02ad17c", + "tarball": "http://registry.npmjs.org/nodester-cli/-/nodester-cli-0.2.13.tgz" + }, + "0.2.14": { + "shasum": "8bed47ebf56fe319d27a9f7ee1c1cfd5b0e9963f", + "tarball": "http://registry.npmjs.org/nodester-cli/-/nodester-cli-0.2.14.tgz" + }, + "0.2.15": { + "shasum": "00b9d4343cac1f12bc9bf71d979b1cef6e294f95", + "tarball": "http://registry.npmjs.org/nodester-cli/-/nodester-cli-0.2.15.tgz" + }, + "0.2.17": { + "shasum": "2d1188d9043c6e1bfdae1c3717115e61bd1b461b", + "tarball": "http://registry.npmjs.org/nodester-cli/-/nodester-cli-0.2.17.tgz" + }, + "0.2.18": { + "shasum": "49c877043220ffd76bf73bdeb2480910dea6fac5", + "tarball": "http://registry.npmjs.org/nodester-cli/-/nodester-cli-0.2.18.tgz" + }, + "0.2.19": { + "shasum": "d9fbcaabf25a418d9e02a9b94c98eb4aaa7e34b6", + "tarball": "http://registry.npmjs.org/nodester-cli/-/nodester-cli-0.2.19.tgz" + }, + "0.2.20": { + "shasum": "fd7f55c27c269ceea41c5774b17bf983552cd5d6", + "tarball": "http://registry.npmjs.org/nodester-cli/-/nodester-cli-0.2.20.tgz" + }, + "0.2.31": { + "shasum": "109414fb2eae3bf64da54721b250f36ec6fc6b61", + "tarball": "http://registry.npmjs.org/nodester-cli/-/nodester-cli-0.2.31.tgz" + }, + "0.2.32": { + "shasum": "8ae0d01e321a107d87dfcabc130381786563b694", + "tarball": "http://registry.npmjs.org/nodester-cli/-/nodester-cli-0.2.32.tgz" + }, + "0.2.33": { + "shasum": "e38a0c4ad4603aa291175cb848cfc4cfdb93b70a", + "tarball": "http://registry.npmjs.org/nodester-cli/-/nodester-cli-0.2.33.tgz" + }, + "0.2.34": { + "shasum": "22de317859966070fd1df199ea09b573bfe9e925", + "tarball": "http://registry.npmjs.org/nodester-cli/-/nodester-cli-0.2.34.tgz" + } + }, + "url": "http://registry.npmjs.org/nodester-cli/" + }, + "nodetk": { + "name": "nodetk", + "description": "nodetk is a set of small libraries intended to facilitate the use of nodejs.", + "dist-tags": { + "latest": "0.1.5" + }, + "maintainers": [ + { + "name": "francois", + "email": "francois@2metz.fr" + } + ], + "time": { + "modified": "2011-03-31T12:55:26.572Z", + "created": "2011-02-11T16:40:31.921Z", + "0.1.1": "2011-02-11T16:40:32.409Z", + "0.1.2": "2011-02-11T16:41:37.828Z", + "0.1.3": "2011-02-16T18:41:08.254Z", + "0.1.4": "2011-03-30T14:30:53.458Z", + "0.1.5": "2011-03-31T12:55:26.572Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/AF83/nodetk.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/nodetk/0.1.1", + "0.1.2": "http://registry.npmjs.org/nodetk/0.1.2", + "0.1.3": "http://registry.npmjs.org/nodetk/0.1.3", + "0.1.4": "http://registry.npmjs.org/nodetk/0.1.4", + "0.1.5": "http://registry.npmjs.org/nodetk/0.1.5" + }, + "dist": { + "0.1.1": { + "shasum": "ef6d7e3d000eae15bd57f27b78334626f3e50cf0", + "tarball": "http://registry.npmjs.org/nodetk/-/nodetk-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "84606aac9491fccbaeebef6435f9038cd12c5308", + "tarball": "http://registry.npmjs.org/nodetk/-/nodetk-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "3734f8479cc09b3d73caa92dc460b446c8ecb507", + "tarball": "http://registry.npmjs.org/nodetk/-/nodetk-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "399248d211731ec7aab5b7858eac1cd6c30379bc", + "tarball": "http://registry.npmjs.org/nodetk/-/nodetk-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "23325e8cb2018a88ebbb7742c018c891735c5e5b", + "tarball": "http://registry.npmjs.org/nodetk/-/nodetk-0.1.5.tgz" + } + }, + "url": "http://registry.npmjs.org/nodetk/" + }, + "nodeunit": { + "name": "nodeunit", + "description": "Easy unit testing for node.js and the browser.", + "dist-tags": { + "latest": "0.6.4" + }, + "maintainers": [ + { + "name": "caolan", + "email": "caolan@caolanmcmahon.com" + } + ], + "author": { + "name": "Caolan McMahon" + }, + "repository": { + "type": "git", + "url": "git://github.com/caolan/nodeunit.git" + }, + "time": { + "modified": "2011-11-20T03:04:18.794Z", + "created": "2011-03-04T18:45:31.546Z", + "0.1.0": "2011-03-04T18:45:31.546Z", + "0.1.1": "2011-03-04T18:45:31.546Z", + "0.1.2": "2011-03-04T18:45:31.546Z", + "0.2.0": "2011-03-04T18:45:31.546Z", + "0.2.1": "2011-03-04T18:45:31.546Z", + "0.2.2": "2011-03-04T18:45:31.546Z", + "0.2.3": "2011-03-04T18:45:31.546Z", + "0.2.4": "2011-03-04T18:45:31.546Z", + "0.3.1": "2011-03-04T18:45:31.546Z", + "0.4.0": "2011-03-04T18:45:31.546Z", + "0.5.0": "2011-03-04T18:45:31.546Z", + "0.5.1": "2011-03-04T18:45:31.546Z", + "0.5.2": "2011-07-15T21:48:49.256Z", + "0.5.3": "2011-07-15T21:51:53.708Z", + "0.5.4": "2011-08-25T16:40:08.923Z", + "0.5.5": "2011-09-15T23:13:29.377Z", + "0.6.0": "2011-10-29T21:58:06.398Z", + "0.6.1": "2011-10-29T22:20:48.697Z", + "0.6.2": "2011-10-30T00:28:12.951Z", + "0.6.3": "2011-11-20T02:30:14.429Z", + "0.6.4": "2011-11-20T03:04:18.794Z" + }, + "users": { + "gevorg": true, + "dylang": true, + "pekim": true, + "pid": true + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/nodeunit/0.1.0", + "0.1.1": "http://registry.npmjs.org/nodeunit/0.1.1", + "0.1.2": "http://registry.npmjs.org/nodeunit/0.1.2", + "0.2.0": "http://registry.npmjs.org/nodeunit/0.2.0", + "0.2.1": "http://registry.npmjs.org/nodeunit/0.2.1", + "0.2.2": "http://registry.npmjs.org/nodeunit/0.2.2", + "0.2.3": "http://registry.npmjs.org/nodeunit/0.2.3", + "0.2.4": "http://registry.npmjs.org/nodeunit/0.2.4", + "0.3.1": "http://registry.npmjs.org/nodeunit/0.3.1", + "0.4.0": "http://registry.npmjs.org/nodeunit/0.4.0", + "0.5.0": "http://registry.npmjs.org/nodeunit/0.5.0", + "0.5.1": "http://registry.npmjs.org/nodeunit/0.5.1", + "0.5.2": "http://registry.npmjs.org/nodeunit/0.5.2", + "0.5.3": "http://registry.npmjs.org/nodeunit/0.5.3", + "0.5.4": "http://registry.npmjs.org/nodeunit/0.5.4", + "0.5.5": "http://registry.npmjs.org/nodeunit/0.5.5", + "0.6.0": "http://registry.npmjs.org/nodeunit/0.6.0", + "0.6.1": "http://registry.npmjs.org/nodeunit/0.6.1", + "0.6.2": "http://registry.npmjs.org/nodeunit/0.6.2", + "0.6.3": "http://registry.npmjs.org/nodeunit/0.6.3", + "0.6.4": "http://registry.npmjs.org/nodeunit/0.6.4" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/nodeunit/-/nodeunit-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://registry.npmjs.org/nodeunit/-/nodeunit-0.1.1.tgz" + }, + "0.1.2": { + "tarball": "http://registry.npmjs.org/nodeunit/-/nodeunit-0.1.2.tgz" + }, + "0.2.0": { + "tarball": "http://registry.npmjs.org/nodeunit/-/nodeunit-0.2.0.tgz" + }, + "0.2.1": { + "tarball": "http://registry.npmjs.org/nodeunit/-/nodeunit-0.2.1.tgz" + }, + "0.2.2": { + "tarball": "http://registry.npmjs.org/nodeunit/-/nodeunit-0.2.2.tgz" + }, + "0.2.3": { + "tarball": "http://registry.npmjs.org/nodeunit/-/nodeunit-0.2.3.tgz" + }, + "0.2.4": { + "tarball": "http://registry.npmjs.org/nodeunit/-/nodeunit-0.2.4.tgz" + }, + "0.3.1": { + "tarball": "http://registry.npmjs.org/nodeunit/-/nodeunit-0.3.1.tgz" + }, + "0.4.0": { + "tarball": "http://registry.npmjs.org/nodeunit/-/nodeunit-0.4.0.tgz" + }, + "0.5.0": { + "tarball": "http://registry.npmjs.org/nodeunit/-/nodeunit-0.5.0.tgz" + }, + "0.5.1": { + "tarball": "http://registry.npmjs.org/nodeunit/-/nodeunit-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "3e66b73c5e2849bfafb821bf85d189ec2ab6c059", + "tarball": "http://registry.npmjs.org/nodeunit/-/nodeunit-0.5.2.tgz" + }, + "0.5.3": { + "shasum": "6f8648154353006a50da1fe9072a1588f881d137", + "tarball": "http://registry.npmjs.org/nodeunit/-/nodeunit-0.5.3.tgz" + }, + "0.5.4": { + "shasum": "12c7f2b430bcb614a46962775d37588282cedb26", + "tarball": "http://registry.npmjs.org/nodeunit/-/nodeunit-0.5.4.tgz" + }, + "0.5.5": { + "shasum": "9e8568b7e5c0ea26c582c06c7bb4c1d6a93635fe", + "tarball": "http://registry.npmjs.org/nodeunit/-/nodeunit-0.5.5.tgz" + }, + "0.6.0": { + "shasum": "08da54c31a88763265cfd02bf4947d4558a3b002", + "tarball": "http://registry.npmjs.org/nodeunit/-/nodeunit-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "6c26d23a3c63f41a1bebd4511b66feb4a3e108e6", + "tarball": "http://registry.npmjs.org/nodeunit/-/nodeunit-0.6.1.tgz" + }, + "0.6.2": { + "shasum": "89ef4c6ec2517ae742fa5d4708389e20706dea76", + "tarball": "http://registry.npmjs.org/nodeunit/-/nodeunit-0.6.2.tgz" + }, + "0.6.3": { + "shasum": "73174cca48c45d506b0ce71d11c188dbfb6d2f87", + "tarball": "http://registry.npmjs.org/nodeunit/-/nodeunit-0.6.3.tgz" + }, + "0.6.4": { + "shasum": "9bd543035b6f86d9db2030d872dee28513dbf499", + "tarball": "http://registry.npmjs.org/nodeunit/-/nodeunit-0.6.4.tgz" + } + }, + "url": "http://registry.npmjs.org/nodeunit/" + }, + "nodeunit-coverage": { + "name": "nodeunit-coverage", + "description": "coverage reporter for nodeunit", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "mikebannister", + "email": "mikebannister@gmail.com" + } + ], + "author": { + "name": "Mike Bannister", + "email": "mike@mike101.net" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nodeunit-coverage/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "7a3b427a0facfb8454525b27f875027cb2e9e352", + "tarball": "http://registry.npmjs.org/nodeunit-coverage/-/nodeunit-coverage-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/nodeunit-coverage/" + }, + "nodeunit-dsl": { + "name": "nodeunit-dsl", + "description": "A simple DSL built on top of nodeunit", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "gerad", + "email": "gerads@gmail.com" + } + ], + "author": { + "name": "Gerad Suyderhoud" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/nodeunit-dsl/0.0.2" + }, + "dist": { + "0.0.2": { + "tarball": "http://packages:5984/nodeunit-dsl/-/nodeunit-dsl-0.0.2.tgz" + } + }, + "keywords": [ + "test", + "qunit", + "nodeunit", + "tdd", + "bdd" + ], + "url": "http://registry.npmjs.org/nodeunit-dsl/" + }, + "nodeunit-fork": { + "name": "nodeunit-fork", + "description": "Easy unit testing for node.js and the browser. (Fork of Caolan McMahon's nodeunit. Please see: https://github.com/caolan/nodeunit)", + "dist-tags": { + "latest": "0.6.5" + }, + "readme": "Nodeunit\n========\n\nSimple syntax, powerful tools. Nodeunit provides easy async unit testing for\nnode.js and the browser.\n\n* Simple to use\n* Just export the tests from a module\n* Works with node.js and in the browser.\n* Helps you avoid common pitfalls when testing asynchronous code\n* Easy to add test cases with setUp and tearDown functions if you wish\n* Flexible reporters for custom output, built-in support for HTML and jUnit XML\n* Allows the use of mocks and stubs\n\n__Contributors__\n\n* [alexgorbatchev](https://github.com/alexgorbatchev)\n* [alexkwolfe](https://github.com/alexkwolfe)\n* [azatoth](https://github.com/azatoth)\n* [kadirpekel](https://github.com/kadirpekel)\n* [lambdalisue](https://github.com/lambdalisue)\n* [luebken](https://github.com/luebken)\n* [orlandov](https://github.com/orlandov)\n* [Sannis](https://github.com/Sannis)\n* [sstephenson](https://github.com/sstephenson)\n* [thegreatape](https://github.com/thegreatape)\n* [mmalecki](https://github.com/mmalecki)\n* and thanks to [cjohansen](https://github.com/cjohansen) for input and advice\n on implementing setUp and tearDown functions. See\n [cjohansen's fork](https://github.com/cjohansen/nodeunit).\n\nAlso, check out gerad's [nodeunit-dsl](https://github.com/gerad/nodeunit-dsl)\nproject, which implements a 'pretty dsl on top of nodeunit'.\n\nMore contributor information can be found in the\n[CONTRIBUTORS.md](https://github.com/caolan/nodeunit/blob/master/CONTRIBUTORS.md)\nfile.\n\nUsage\n-----\n\nHere is an example unit test module:\n\n exports.testSomething = function(test){\n test.expect(1);\n test.ok(true, \"this assertion should pass\");\n test.done();\n };\n\n exports.testSomethingElse = function(test){\n test.ok(false, \"this assertion should fail\");\n test.done();\n };\n\nWhen run using the included test runner, this will output the following:\n\n\n\nInstallation\n------------\n\nThere are two options for installing nodeunit:\n\n1. Clone / download nodeunit from [github](https://github.com/caolan/nodeunit),\n then:\n\n make && sudo make install\n\n2. Install via npm:\n\n npm install nodeunit\n\nAPI Documentation\n-----------------\n\nNodeunit uses the functions available in the node.js\n[assert module](http://nodejs.org/docs/v0.4.2/api/assert.html):\n\n* __ok(value, [message])__ - Tests if value is a true value.\n* __equal(actual, expected, [message])__ - Tests shallow, coercive equality\n with the equal comparison operator ( == ).\n* __notEqual(actual, expected, [message])__ - Tests shallow, coercive\n non-equality with the not equal comparison operator ( != ).\n* __deepEqual(actual, expected, [message])__ - Tests for deep equality.\n* __notDeepEqual(actual, expected, [message])__ - Tests for any deep\n inequality.\n* __strictEqual(actual, expected, [message])__ - Tests strict equality, as\n determined by the strict equality operator ( === )\n* __notStrictEqual(actual, expected, [message])__ - Tests strict non-equality,\n as determined by the strict not equal operator ( !== )\n* __throws(block, [error], [message])__ - Expects block to throw an error.\n* __doesNotThrow(block, [error], [message])__ - Expects block not to throw an\n error.\n* __ifError(value)__ - Tests if value is not a false value, throws if it is a\n true value. Useful when testing the first argument, error in callbacks.\n\nNodeunit also provides the following functions within tests:\n\n* __expect(amount)__ - Specify how many assertions are expected to run within a\n test. Very useful for ensuring that all your callbacks and assertions are\n run.\n* __done()__ - Finish the current test function, and move on to the next. ALL\n tests should call this!\n\nNodeunit aims to be simple and easy to learn. This is achieved through using\nexisting structures (such as node.js modules) to maximum effect, and reducing\nthe API where possible, to make it easier to digest.\n\nTests are simply exported from a module, but they are still run in the order\nthey are defined.\n\n__Note:__ Users of old nodeunit versions may remember using ok, equals and same\nin the style of qunit, instead of the assert functions above. These functions\nstill exist for backwards compatibility, and are simply aliases to their assert\nmodule counterparts.\n\n\nAsynchronous Testing\n--------------------\n\nWhen testing asynchronous code, there are a number of sharp edges to watch out\nfor. Thankfully, nodeunit is designed to help you avoid as many of these\npitfalls as possible. For the most part, testing asynchronous code in nodeunit\n_just works_.\n\n\n### Tests run in series\n\nWhile running tests in parallel seems like a good idea for speeding up your\ntest suite, in practice I've found it means writing much more complicated\ntests. Because of node's module cache, running tests in parallel means mocking\nand stubbing is pretty much impossible. One of the nicest things about testing\nin javascript is the ease of doing stubs:\n\n var _readFile = fs.readFile;\n fs.readFile = function(path, callback){\n // its a stub!\n };\n // test function that uses fs.readFile\n\n // we're done\n fs.readFile = _readFile;\n\nYou cannot do this when running tests in parallel. In order to keep testing as\nsimple as possible, nodeunit avoids it. Thankfully, most unit-test suites run\nfast anyway.\n\n\n### Explicit ending of tests\n\nWhen testing async code its important that tests end at the correct point, not\njust after a given number of assertions. Otherwise your tests can run short,\nending before all assertions have completed. Its important to detect too\nmany assertions as well as too few. Combining explicit ending of tests with\nan expected number of assertions helps to avoid false test passes, so be sure\nto use the test.expect() method at the start of your test functions, and\ntest.done() when finished.\n\n\nGroups, setUp and tearDown\n--------------------------\n\nNodeunit allows the nesting of test functions:\n\n exports.test1 = function (test) {\n ...\n }\n\n exports.group = {\n test2: function (test) {\n ...\n },\n test3: function (test) {\n ...\n }\n }\n\nThis would be run as:\n\n test1\n group - test2\n group - test3\n\nUsing these groups, Nodeunit allows you to define a `setUp` function, which is\nrun before each test, and a `tearDown` function, which is run after each test\ncalls `test.done()`:\n\n module.exports = {\n setUp: function (callback) {\n this.foo = 'bar';\n callback();\n },\n tearDown: function (callback) {\n // clean up\n callback();\n },\n test1: function (test) {\n test.equals(this.foo, 'bar');\n test.done();\n }\n };\n\nIn this way, its possible to have multiple groups of tests in a module, each\ngroup with its own setUp and tearDown functions.\n\n\nRunning Tests\n-------------\n\nNodeunit comes with a basic command-line test runner, which can be installed\nusing 'sudo make install'. Example usage:\n\n nodeunit testmodule1.js testfolder [...]\n\nThe default test reporter uses color output, because I think that's more fun :) I\nintend to add a no-color option in future. To give you a feeling of the fun you'll\nbe having writing tests, lets fix the example at the start of the README:\n\n\n\nAhhh, Doesn't that feel better?\n\nWhen using the included test runner, it will exit using the failed number of\nassertions as the exit code. Exiting with 0 when all tests pass.\n\n\n### Command-line Options\n\n* __--reporter FILE__ - you can set the test reporter to a custom module or\non of the modules in nodeunit/lib/reporters, when omitted, the default test runner\nis used.\n* __--list-reporters__ - list available build-in reporters.\n* __--config FILE__ - load config options from a JSON file, allows\nthe customisation of color schemes for the default test reporter etc. See\nbin/nodeunit.json for current available options.\n* __--version__ or __-v__ - report nodeunit version\n* __--help__ - show nodeunit help\n\n\nRunning tests in the browser\n----------------------------\n\nNodeunit tests can also be run inside the browser. For example usage, see\nthe examples/browser folder. The basic syntax is as follows:\n\n__test.html__\n\n \n \n Example Test Suite\n \n \n \n \n \n \n

Example Test Suite

\n \n \n \n\nHere, suite1 and suite2 are just object literals containing test functions or\ngroups, as would be returned if you did require('test-suite') in node.js:\n\n__suite1.js__\n\n this.suite1 = {\n 'example test': function (test) {\n test.ok(true, 'everything is ok');\n test.done();\n }\n };\n\nIf you wish to use a commonjs format for your test suites (using exports), it is\nup to you to define the commonjs tools for the browser. There are a number of\nalternatives and its important it fits with your existing code, which is\nwhy nodeunit does not currently provide this out of the box.\n\nIn the example above, the tests will run when the page is loaded.\n\nThe browser-version of nodeunit.js is created in dist/browser when you do, 'make\nbrowser'. You'll need [UglifyJS](https://github.com/mishoo/UglifyJS) installed in\norder for it to automatically create nodeunit.min.js.\n\n\nAdding nodeunit to Your Projects\n--------------------------------\n\nIf you don't want people to have to install the nodeunit command-line tool,\nyou'll want to create a script that runs the tests for your project with the\ncorrect require paths set up. Here's an example test script, that assumes you\nhave nodeunit in a suitably located node_modules directory.\n\n #!/usr/bin/env node\n var reporter = require('nodeunit').reporters.default;\n reporter.run(['test']);\n\nIf you're using git, you might find it useful to include nodeunit as a\nsubmodule. Using submodules makes it easy for developers to download nodeunit\nand run your test suite, without cluttering up your repository with\nthe source code. To add nodeunit as a git submodule do the following:\n\n git submodule add git://github.com/caolan/nodeunit.git node_modules/nodeunit\n\nThis will add nodeunit to the node_modules folder of your project. Now, when\ncloning the repository, nodeunit can be downloaded by doing the following:\n\n git submodule init\n git submodule update\n\nLet's update the test script above with a helpful hint on how to get nodeunit,\nif its missing:\n\n #!/usr/bin/env node\n try {\n var reporter = require('nodeunit').reporters.default;\n }\n catch(e) {\n console.log(\"Cannot find nodeunit module.\");\n console.log(\"You can download submodules for this project by doing:\");\n console.log(\"\");\n console.log(\" git submodule init\");\n console.log(\" git submodule update\");\n console.log(\"\");\n process.exit();\n }\n\n process.chdir(__dirname);\n reporter.run(['test']);\n\nNow if someone attempts to run your test suite without nodeunit installed they\nwill be prompted to download the submodules for your project.\n\n\nBuilt-in Test Reporters\n-----------------------\n\n* __default__ - The standard reporter seen in the nodeunit screenshots\n* __minimal__ - Pretty, minimal output, shows errors and progress only\n* __html__ - Outputs a HTML report to stdout\n* __junit__ - Creates jUnit compatible XML reports, which can be used with\n continuous integration tools such as [Hudson](http://hudson-ci.org/).\n* __machineout__ - Simple reporter for machine analysis. There is [nodeunit.vim](https://github.com/lambdalisue/nodeunit.vim)\n which is useful for TDD on VIM\n\n\nWriting a Test Reporter\n---------------------\n\nNodeunit exports runTest(fn, options), runModule(mod, options) and\nrunFiles(paths, options). You'll most likely want to run test suites from\nfiles, which can be done using the latter function. The _options_ argument can\ncontain callbacks which run during testing. Nodeunit provides the following\ncallbacks:\n\n* __moduleStart(name)__ - called before a module is tested\n* __moduleDone(name, assertions)__ - called once all test functions within the\n module have completed (see assertions object reference below)\n ALL tests within the module\n* __testStart(name)__ - called before a test function is run\n* __testDone(name, assertions)__ - called once a test function has completed\n (by calling test.done())\n* __log(assertion)__ - called whenever an assertion is made (see assertion\n object reference below)\n* __done(assertions)__ - called after all tests/modules are complete\n\nThe __assertion__ object:\n\n* __passed()__ - did the assertion pass?\n* __failed()__ - did the assertion fail?\n* __error__ - the AssertionError if the assertion failed\n* __method__ - the nodeunit assertion method used (ok, same, equals...)\n* __message__ - the message the assertion method was called with (optional)\n\nThe __assertionList__ object:\n\n* An array-like object with the following new attributes:\n * __failures()__ - the number of assertions which failed\n * __duration__ - the time taken for the test to complete in msecs\n\nFor a reference implementation of a test reporter, see lib/reporters/default.js in\nthe nodeunit project directory.\n\n\nSandbox utility\n---------------\n\nThis is a function which evaluates JavaScript files in a sandbox and returns the\ncontext. The sandbox function can be used for testing client-side code or private\nun-exported functions within a module.\n\n var sandbox = require('nodeunit').utils.sandbox;\n var example = sandbox('example.js');\n\n__sandbox(files, sandbox)__ - Evaluates JavaScript files in a sandbox, returning\nthe context. The first argument can either be a single filename or an array of\nfilenames. If multiple filenames are given their contents are concatenated before\nevalution. The second argument is an optional context to use for the sandbox.\n\n\nRunning the nodeunit Tests\n--------------------------\n\nThe tests for nodeunit are written using nodeunit itself as the test framework.\nHowever, the module test-base.js first does some basic tests using the assert\nmodule to ensure that test functions are actually run, and a basic level of\nnodeunit functionality is available.\n\nTo run the nodeunit tests do:\n\n make test\n\n__Note:__ There was a bug in node v0.2.0 causing the tests to hang, upgrading\nto v0.2.1 fixes this.\n\n\n__machineout__ reporter\n----------------------------------------------\n\nThe default reporter is really readable for human but for machinally analysis. \nWhen you want to analyze the output of nodeunit, use __machineout__ reporter and you will get\n\n\n\n\nnodeunit with vim\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\nThere is [nodeunit.vim](https://github.com/lambdalisue/nodeunit.vim) so you can use nodeunit with VIM.\nThat compiler use __machineout__ reporter and it is useful to use with [vim-makegreen](https://github.com/reinh/vim-makegreen)\n\n \n\nContributing\n------------\n\nContributions to the project are most welcome, so feel free to fork and improve.\nWhen submitting a pull request, please run 'make lint' first to ensure\nwe're following a consistent coding style.\n", + "maintainers": [ + { + "name": "shripadk", + "email": "assortmentofsorts@gmail.com" + } + ], + "time": { + "modified": "2011-11-20T08:19:10.534Z", + "created": "2011-11-20T08:12:41.264Z", + "0.6.4": "2011-11-20T08:12:46.033Z", + "0.6.5": "2011-11-20T08:19:10.534Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/shripadk/nodeunit.git" + }, + "versions": { + "0.6.4": "http://registry.npmjs.org/nodeunit-fork/0.6.4", + "0.6.5": "http://registry.npmjs.org/nodeunit-fork/0.6.5" + }, + "dist": { + "0.6.4": { + "shasum": "5e25b8242515cb8b046cadd3b97e80606e74059a", + "tarball": "http://registry.npmjs.org/nodeunit-fork/-/nodeunit-fork-0.6.4.tgz" + }, + "0.6.5": { + "shasum": "7475e524836e66a76d07d8a0fd682d231e0efdbc", + "tarball": "http://registry.npmjs.org/nodeunit-fork/-/nodeunit-fork-0.6.5.tgz" + } + }, + "url": "http://registry.npmjs.org/nodeunit-fork/" + }, + "nodeunit-httpclient": { + "name": "nodeunit-httpclient", + "description": "HTTP response testing for NodeUnit", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "nodeunit-httpclient\n===================\n\nHTTP response testing for NodeUnit\n\nUsage\n-----\n\n //Setup client with automatic tests on each response\n var api = require('nodeunit-httpclient').create({\n port: 3000,\n path: '/api', //Base URL for requests\n status: 200, //Test each response is OK (can override later)\n headers: { //Test that each response must have these headers (can override later)\n 'content-type': 'application/json' )\n }\n });\n \n //Automatic tests on response object\n exports.test1 = function(test) {\n api.get(test, '/user/nonexistent', {\n status: 404,\n headers: { 'content-type': 'text/plain' },\n body: 'Not found'\n })\n };\n\n //Test a response\n exports.test2 = function(test) {\n api.get(test, '/user', function(res) {\n //JSON responses are automatically parsed:\n test.equal(res.json, [{ name: 'Eric' }, { 'name': 'Kyle' }]);\n\n test.done();\n });\n };\n \n //POST with data and custom header\n exports.test3 = function(test) {\n api.post(test, '/user', {\n headers: { foo: 'bar' },\n data: { name: 'Charlie' } //Objects are serialised as JSON automatically\n }, {\n status: 200\n }, function(res) {\n test.equal(1, 1);\n \n test.done();\n });\n };\n ", + "maintainers": [ + { + "name": "powmedia", + "email": "charlie@powmedia.co.uk" + } + ], + "time": { + "modified": "2011-11-17T15:05:48.136Z", + "created": "2011-11-17T15:05:47.037Z", + "0.1.0": "2011-11-17T15:05:48.136Z" + }, + "author": { + "name": "Charles Davison", + "email": "charlie@powmedia.co.uk" + }, + "repository": { + "type": "git", + "url": "git://github.com/powmedia/nodeunit-httpclient.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/nodeunit-httpclient/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "7a7201d0c883724ae34510eb7ad1ddadd5f93d36", + "tarball": "http://registry.npmjs.org/nodeunit-httpclient/-/nodeunit-httpclient-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/nodeunit-httpclient/" + }, + "nodeunit2": { + "name": "nodeunit2", + "description": "Easy unit testing for node.js and the browser.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "arunoda", + "email": "arunoda.susiripala@gmail.com" + } + ], + "time": { + "modified": "2011-09-26T13:02:33.437Z", + "created": "2011-09-26T12:52:14.294Z", + "0.5.5": "2011-09-26T12:52:18.152Z", + "0.1.1": "2011-09-26T13:02:33.438Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/caolan/nodeunit.git" + }, + "versions": { + "0.5.5": "http://registry.npmjs.org/nodeunit2/0.5.5", + "0.1.1": "http://registry.npmjs.org/nodeunit2/0.1.1" + }, + "dist": { + "0.5.5": { + "shasum": "86af9c7087ed6a2f6d8ec4a9ca9067009b385878", + "tarball": "http://registry.npmjs.org/nodeunit2/-/nodeunit2-0.5.5.tgz" + }, + "0.1.1": { + "shasum": "ebe544d60e4abea686952b296022f9726f33e68a", + "tarball": "http://registry.npmjs.org/nodeunit2/-/nodeunit2-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/nodeunit2/" + }, + "nodevlc": { + "name": "nodevlc", + "description": "Asynchronous nodejs bindings to VLC.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "bradmann", + "email": "bradmann@gmail.com" + } + ], + "time": { + "modified": "2011-07-25T06:13:01.273Z", + "created": "2011-07-25T06:12:59.952Z", + "0.0.1": "2011-07-25T06:13:01.273Z" + }, + "author": { + "name": "Brad Mann", + "email": "bradmann@gmail.com" + }, + "repository": { + "type": "git", + "url": "git@git.assembla.com:nodevlc.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nodevlc/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "896d4d4e75ded3c4364e090946b22ace6f5ddb3b", + "tarball": "http://registry.npmjs.org/nodevlc/-/nodevlc-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/nodevlc/" + }, + "nodevore": { + "name": "nodevore", + "description": "Convore API wrapper", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "troufster", + "email": "stefan.pataky@gmail.com" + } + ], + "time": { + "modified": "2011-05-26T21:17:41.127Z", + "created": "2011-05-26T21:17:40.858Z", + "0.0.1": "2011-05-26T21:17:41.127Z" + }, + "author": { + "name": "Stefan Pataky", + "email": "stefan.pataky@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/troufster/nodevore.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nodevore/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "02b456c7a4ef89ce6a4d32d65ee6d67c79e30a11", + "tarball": "http://registry.npmjs.org/nodevore/-/nodevore-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/nodevore/" + }, + "nodewatch": { + "name": "nodewatch", + "description": "Simple utility to watch file changes. A file change is a file whom's mtime is changed", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "jorrit", + "email": "jorrit.duin@gmail.com" + } + ], + "time": { + "modified": "2011-06-03T06:26:17.246Z", + "created": "2011-06-02T12:39:32.262Z", + "0.0.3": "2011-06-02T12:39:32.932Z", + "0.0.4": "2011-06-03T05:28:23.434Z" + }, + "author": { + "name": "Jorrit Duin", + "email": "jorrit.duin@gmail.com", + "url": "https://github.com/jorritd" + }, + "repository": { + "type": "git", + "url": "git://github.com/jorritd/node-watch.git" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/nodewatch/0.0.3", + "0.0.4": "http://registry.npmjs.org/nodewatch/0.0.4" + }, + "dist": { + "0.0.3": { + "shasum": "8cf6b76e6e8430ce9b6ae84a902379194db9f4cb", + "tarball": "http://registry.npmjs.org/nodewatch/-/nodewatch-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "16877787b58b203c53a03ed4a1702d572011ec04", + "tarball": "http://registry.npmjs.org/nodewatch/-/nodewatch-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/nodewatch/" + }, + "nodewii": { + "name": "nodewii", + "description": "Node.js libcwiid asynchronous native bindings", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "tbranyen", + "email": "tim@tabdeveloper.com" + } + ], + "time": { + "modified": "2011-05-11T17:33:58.341Z", + "created": "2011-05-11T17:24:12.576Z", + "0.0.0": "2011-05-11T17:24:12.731Z", + "0.0.1": "2011-05-11T17:26:19.302Z" + }, + "author": { + "name": "Tim Branyen", + "email": "tim@tabdeveloper.com", + "url": "http://twitter.com/tbranyen" + }, + "repository": { + "type": "git", + "url": "git://github.com/tbranyen/nodewii.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/nodewii/0.0.0", + "0.0.1": "http://registry.npmjs.org/nodewii/0.0.1" + }, + "dist": { + "0.0.0": { + "shasum": "4a4f3090fe445cc3ed425b4301abd756001940a3", + "tarball": "http://registry.npmjs.org/nodewii/-/nodewii-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "3dc2842219b4e2637c11838d5c6ffda66e64e06d", + "tarball": "http://registry.npmjs.org/nodewii/-/nodewii-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/nodewii/" + }, + "nodewm": { + "name": "nodewm", + "description": "wmsigner library for node which interact with WebMoney", + "dist-tags": { + "latest": "1.0.1" + }, + "readme": "# nodewm\n*Is a FAST nodejs library for signing WebMoney requests written in C/C++*\n\n## Install:\n1) go to the directory with nodewm library\n\n2) execute `node-waf configure build`\n\n3) get module from `./build/default/wmsigner.node`\n\n## Using nodewm\n\nvar wmsigner = require(\"./build/default/wmsigner\");\n\nvar sign = wmsigner.sign('Your Wallet', 'Your Password', 'Your Base 64 Encoded KWM file', 'String to sign');\n\nconsole.log('SIGN: ' + sign);\n", + "maintainers": [ + { + "name": "blacksmith", + "email": "blacksmith@gogoo.ru" + } + ], + "time": { + "modified": "2011-11-23T04:02:17.894Z", + "created": "2011-11-23T04:02:15.258Z", + "1.0.1": "2011-11-23T04:02:17.894Z" + }, + "author": { + "name": "Dudochkin Victor" + }, + "versions": { + "1.0.1": "http://registry.npmjs.org/nodewm/1.0.1" + }, + "dist": { + "1.0.1": { + "shasum": "debeda8c367d700204a96203446e3bf5affa3246", + "tarball": "http://registry.npmjs.org/nodewm/-/nodewm-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/nodewm/" + }, + "nodie": { + "name": "nodie", + "description": "nodie restarts an application if it dies", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "stagas", + "email": "gstagas@gmail.com" + } + ], + "time": { + "modified": "2011-05-02T20:02:26.749Z", + "created": "2011-05-02T20:02:26.041Z", + "0.0.1": "2011-05-02T20:02:26.749Z" + }, + "author": { + "name": "George Stagas", + "email": "gstagas@gmail.com", + "url": "http://stagas.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/stagas/nodie.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nodie/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "ea97010bdbc3b3c46b63ba2dc309247da40dd0f2", + "tarball": "http://registry.npmjs.org/nodie/-/nodie-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/nodie/" + }, + "nodify": { + "name": "nodify", + "description": "A web-based IDE for NodeJS applications", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "past", + "email": "pastith@gmail.com" + } + ], + "author": { + "name": "Panagiotis Astithas", + "email": "pastith@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/nodify/0.1.0", + "0.1.1": "http://registry.npmjs.org/nodify/0.1.1", + "0.1.2": "http://registry.npmjs.org/nodify/0.1.2" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/nodify/-/nodify-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://packages:5984/nodify/-/nodify-0.1.1.tgz" + }, + "0.1.2": { + "tarball": "http://packages:5984/nodify/-/nodify-0.1.2.tgz" + } + }, + "keywords": [ + "ide", + "programming", + "editor" + ], + "url": "http://registry.npmjs.org/nodify/" + }, + "NodObjC": { + "name": "NodObjC", + "description": "The NodeJS ⇆ Objective-C bridge", + "dist-tags": { + "latest": "0.0.8" + }, + "maintainers": [ + { + "name": "TooTallNate", + "email": "nathan@tootallnate.net" + } + ], + "time": { + "modified": "2011-09-29T22:34:30.927Z", + "created": "2011-08-14T00:04:28.323Z", + "0.0.1": "2011-08-14T00:04:29.381Z", + "0.0.2": "2011-08-14T08:04:18.321Z", + "0.0.3": "2011-08-14T21:47:30.716Z", + "0.0.4": "2011-08-17T03:52:27.295Z", + "0.0.5": "2011-08-26T03:16:03.208Z", + "0.0.6": "2011-09-05T19:40:21.675Z", + "0.0.7": "2011-09-15T20:56:14.901Z", + "0.0.8": "2011-09-29T22:34:30.927Z" + }, + "author": { + "name": "Nathan Rajlich", + "email": "nathan@tootallnate.net", + "url": "http://tootallnate.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/TooTallNate/NodObjC.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/NodObjC/0.0.1", + "0.0.2": "http://registry.npmjs.org/NodObjC/0.0.2", + "0.0.3": "http://registry.npmjs.org/NodObjC/0.0.3", + "0.0.4": "http://registry.npmjs.org/NodObjC/0.0.4", + "0.0.5": "http://registry.npmjs.org/NodObjC/0.0.5", + "0.0.6": "http://registry.npmjs.org/NodObjC/0.0.6", + "0.0.7": "http://registry.npmjs.org/NodObjC/0.0.7", + "0.0.8": "http://registry.npmjs.org/NodObjC/0.0.8" + }, + "dist": { + "0.0.1": { + "shasum": "3c779f14f6f6dc37f63718c91b66cc68048324ca", + "tarball": "http://registry.npmjs.org/NodObjC/-/NodObjC-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "57ef466eda748de6f85c31b9eab5095f2690731c", + "tarball": "http://registry.npmjs.org/NodObjC/-/NodObjC-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "0cba92a1379d4d425ce56f189b5ed40fd03051f2", + "tarball": "http://registry.npmjs.org/NodObjC/-/NodObjC-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "4abcf764f0383af4792332fbb6fe6d4f851aaa92", + "tarball": "http://registry.npmjs.org/NodObjC/-/NodObjC-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "b2b0b172f34682c27c2912a658221789d5209d10", + "tarball": "http://registry.npmjs.org/NodObjC/-/NodObjC-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "03b1f8dfd4088f823e4a96005d352f2d4c568a31", + "tarball": "http://registry.npmjs.org/NodObjC/-/NodObjC-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "4db3a1fbfba47e95dc08a0933d7abdb8b59ec536", + "tarball": "http://registry.npmjs.org/NodObjC/-/NodObjC-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "dbabccb7b7a1a5052754d276ca5421b56598c9f0", + "tarball": "http://registry.npmjs.org/NodObjC/-/NodObjC-0.0.8.tgz" + } + }, + "keywords": [ + "obj", + "objective", + "c", + "mac", + "apple", + "ios", + "osx", + "cocoa", + "ffi", + "bridge" + ], + "url": "http://registry.npmjs.org/NodObjC/" + }, + "nodrrr": { + "name": "nodrrr", + "description": "growl for nodejs", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "sideshowcoder", + "email": "philipp.fehre@googlemail.com" + } + ], + "author": { + "name": "Philipp Fehre", + "email": "philipp.fehre@googlemail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nodrrr/0.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/nodrrr/-/nodrrr-0.0.1.tgz" + } + }, + "keywords": [ + "growl" + ], + "url": "http://registry.npmjs.org/nodrrr/" + }, + "nodules": { + "name": "nodules", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "nathan", + "email": "nrstott@gmail.com" + } + ], + "author": { + "name": "Kris Zyp" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/nodules/0.1.0", + "0.2.1": "http://registry.npmjs.org/nodules/0.2.1" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/nodules/-/nodules-0.1.0.tgz" + }, + "0.2.1": { + "tarball": "http://packages:5984/nodules/-/nodules-0.2.1.tgz" + } + }, + "keywords": [ + "module", + "URI", + "async", + "reload" + ], + "url": "http://registry.npmjs.org/nodules/" + }, + "nodysentary": { + "name": "nodysentary", + "description": "Poop the latest #jsconf messages to your command line", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "rwaldron", + "email": "waldron.rick@gmail.com" + } + ], + "time": { + "modified": "2011-05-02T16:25:48.430Z", + "created": "2011-05-02T16:25:47.438Z", + "0.0.1": "2011-05-02T16:25:48.430Z" + }, + "author": { + "name": "Rick Waldron", + "url": "http://twitter.com/rwaldron" + }, + "repository": { + "type": "git", + "url": "git://github.com/rwldrn/nodysentary.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nodysentary/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "e841ee709cae43c8554d8da06410139845642c4b", + "tarball": "http://registry.npmjs.org/nodysentary/-/nodysentary-0.0.1.tgz" + } + }, + "keywords": [ + "jsconf", + "poop", + "dysentary" + ], + "url": "http://registry.npmjs.org/nodysentary/" + }, + "nog": { + "name": "nog", + "description": "Nog is a node powered web log", + "dist-tags": { + "latest": "0.0.0" + }, + "readme": null, + "maintainers": [ + { + "name": "creationix", + "email": "tim@creationix.com" + } + ], + "time": { + "modified": "2011-12-03T00:28:06.548Z", + "created": "2011-12-03T00:28:04.795Z", + "0.0.0": "2011-12-03T00:28:06.548Z" + }, + "author": { + "name": "Tim Caswell", + "email": "tim@creationix.com", + "url": "http://howtonode.org/" + }, + "repository": { + "type": "git", + "url": "git://github.com/c9/nog.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/nog/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "bf4d07329b84f00920c9054980ce67d53efc039e", + "tarball": "http://registry.npmjs.org/nog/-/nog-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/nog/" + }, + "nogg": { + "name": "nogg", + "description": "simple logging for node.js", + "dist-tags": { + "latest": "0.0.2" + }, + "readme": "Nogg: Simple logging for node.js\n================================\n\nConfigure your logger in config.coffee/config.js in your NODE_PATH:\n\n exports.logging = {\n\n 'default': [\n {file: 'logs/app.log', level: 'debug'},\n {file: 'stdout', level: 'warn'}]\n\n 'foo': [\n {file: 'logs/foo.log', level: 'debug'},\n {forward: 'default'}]\n\n 'access': [\n {file: 'logs/access.log', formatter: null}]\n\n }\n\nThen,\n\n logger = require('nogg').logger('foo.bar')\n logger.debug('this is a debug message') # logs to logs/foo.log and logs/app.log\n logger.error('this is an error') # logs to logs/foo.log, logs/app.log, and stdout\n\n require('nogg').log 'bar.baz', 'debug', 'this is a debug message' # logs to logs/app.log (matches 'default')\n require('nogg').warn 'bar', 'this is a warning' # logs to logs/app.log and stdout\n\n - The 'default' and 'foo' are \"log routes\". You must define the 'default' route.\n - Each log route has N handlers.\n - Log route are \"dot aware\", so log messages to \"foo.bar\" will match the \"foo\" route unless \"foo.bar\" happens to be defined.\n - Messages do not propagate up (ala log4j).\n - stdout messages are in color.\n - You can turn off formatting/color for a handler with formatter: null.\n\nRoadmap\n=======\n\n - Real log formatting\n - Connect module for request logging\n\nDevelopment\n===========\n\ncoffee -o lib src/*\n", + "maintainers": [ + { + "name": "jaekwon", + "email": "jkwon.work@gmail.com" + } + ], + "time": { + "modified": "2011-12-06T20:47:40.513Z", + "created": "2011-12-06T20:37:59.378Z", + "0.0.1": "2011-12-06T20:38:00.683Z", + "0.0.2": "2011-12-06T20:47:40.513Z" + }, + "author": { + "name": "Jae Kwon", + "email": "jkwon.work@gmail.com", + "url": "http://jaekwon.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jaekwon/nogg.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nogg/0.0.1", + "0.0.2": "http://registry.npmjs.org/nogg/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "ce59e3d658df5a16451f5d548290e24780292c9d", + "tarball": "http://registry.npmjs.org/nogg/-/nogg-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "0ca6620af833adca2fe3e595a40d8fe226113e52", + "tarball": "http://registry.npmjs.org/nogg/-/nogg-0.0.2.tgz" + } + }, + "keywords": [ + "logging" + ], + "url": "http://registry.npmjs.org/nogg/" + }, + "nohm": { + "name": "nohm", + "description": "redis ORM (Object relational mapper)", + "dist-tags": { + "latest": "0.7.1", + "stable": "0.6.4" + }, + "maintainers": [ + { + "name": "maritz", + "email": "moritz@mpeters.biz" + } + ], + "author": { + "name": "Moritz Peters" + }, + "time": { + "modified": "2011-12-09T11:53:40.079Z", + "created": "2011-01-31T18:05:53.946Z", + "0.1.0": "2011-12-07T21:27:40.746Z", + "0.1.1": "2011-12-07T21:27:40.746Z", + "0.1.2": "2011-12-07T21:27:40.746Z", + "0.1.3": "2011-12-07T21:27:40.746Z", + "0.1.6admin": "2011-12-07T21:27:40.746Z", + "0.1.6admin-conductorfix": "2011-12-07T21:27:40.746Z", + "0.1.7admin": "2011-12-07T21:27:40.746Z", + "0.1.8admin": "2011-12-07T21:27:40.746Z", + "0.1.9admin": "2011-12-07T21:27:40.746Z", + "0.1.10admin": "2011-12-07T21:27:40.746Z", + "0.2.0": "2011-12-07T21:27:40.746Z", + "0.2.1": "2011-12-07T21:27:40.746Z", + "0.3.0": "2011-12-07T21:27:40.746Z", + "0.4.0": "2011-12-07T21:27:40.746Z", + "0.5.0": "2011-12-07T21:27:40.746Z", + "0.6.0": "2011-12-07T21:27:40.746Z", + "0.6.1": "2011-12-07T21:27:40.746Z", + "0.6.2": "2011-11-09T21:35:15.409Z", + "0.6.3": "2011-11-22T12:02:37.856Z", + "0.6.4": "2011-11-27T16:21:20.455Z", + "0.7.0": "2011-12-07T21:27:40.746Z", + "0.7.1": "2011-12-09T11:53:40.079Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/maritz/nohm.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/nohm/0.1.0", + "0.1.1": "http://registry.npmjs.org/nohm/0.1.1", + "0.1.2": "http://registry.npmjs.org/nohm/0.1.2", + "0.1.3": "http://registry.npmjs.org/nohm/0.1.3", + "0.1.6admin": "http://registry.npmjs.org/nohm/0.1.6admin", + "0.1.6admin-conductorfix": "http://registry.npmjs.org/nohm/0.1.6admin-conductorfix", + "0.1.7admin": "http://registry.npmjs.org/nohm/0.1.7admin", + "0.1.8admin": "http://registry.npmjs.org/nohm/0.1.8admin", + "0.1.9admin": "http://registry.npmjs.org/nohm/0.1.9admin", + "0.1.10admin": "http://registry.npmjs.org/nohm/0.1.10admin", + "0.2.0": "http://registry.npmjs.org/nohm/0.2.0", + "0.2.1": "http://registry.npmjs.org/nohm/0.2.1", + "0.3.0": "http://registry.npmjs.org/nohm/0.3.0", + "0.4.0": "http://registry.npmjs.org/nohm/0.4.0", + "0.5.0": "http://registry.npmjs.org/nohm/0.5.0", + "0.6.0": "http://registry.npmjs.org/nohm/0.6.0", + "0.6.1": "http://registry.npmjs.org/nohm/0.6.1", + "0.6.2": "http://registry.npmjs.org/nohm/0.6.2", + "0.6.3": "http://registry.npmjs.org/nohm/0.6.3", + "0.6.4": "http://registry.npmjs.org/nohm/0.6.4", + "0.7.0": "http://registry.npmjs.org/nohm/0.7.0", + "0.7.1": "http://registry.npmjs.org/nohm/0.7.1" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/nohm/-/nohm-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://packages:5984/nohm/-/nohm-0.1.1.tgz" + }, + "0.1.2": { + "tarball": "http://packages:5984/nohm/-/nohm-0.1.2.tgz" + }, + "0.1.3": { + "tarball": "http://packages:5984/nohm/-/nohm-0.1.3.tgz" + }, + "0.1.6admin": { + "tarball": "http://packages:5984/nohm/-/nohm-0.1.6admin.tgz" + }, + "0.1.6admin-conductorfix": { + "tarball": "http://registry.npmjs.org/nohm/-/nohm-0.1.6admin-conductorfix.tgz" + }, + "0.1.7admin": { + "tarball": "http://registry.npmjs.org/nohm/-/nohm-0.1.7admin.tgz" + }, + "0.1.8admin": { + "tarball": "http://registry.npmjs.org/nohm/-/nohm-0.1.8admin.tgz" + }, + "0.1.9admin": { + "tarball": "http://registry.npmjs.org/nohm/-/nohm-0.1.9admin.tgz" + }, + "0.1.10admin": { + "tarball": "http://registry.npmjs.org/nohm/-/nohm-0.1.10admin.tgz" + }, + "0.2.0": { + "shasum": "b4745d3aec97714724a85653ebf33722421a451d", + "tarball": "http://registry.npmjs.org/nohm/-/nohm-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "f1bf04ad5ec2dd24c45f1867c95f7acdded481c3", + "tarball": "http://registry.npmjs.org/nohm/-/nohm-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "0b7fabc4a55dcc82baa34f9cd3c030d3076298e7", + "tarball": "http://registry.npmjs.org/nohm/-/nohm-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "23f41f0b9bfb113e0cd064e4ac0569546322ddbc", + "tarball": "http://registry.npmjs.org/nohm/-/nohm-0.4.0.tgz" + }, + "0.5.0": { + "shasum": "8d0c9b64a535ad6fbcbb11a3aae05a21bba31a00", + "tarball": "http://registry.npmjs.org/nohm/-/nohm-0.5.0.tgz" + }, + "0.6.0": { + "shasum": "ea6c7e5ae3ec628d43e2dc58651f9f944c0f01ba", + "tarball": "http://registry.npmjs.org/nohm/-/nohm-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "34c26cd25450c45feb0dcfbdf97dd8422a63f97b", + "tarball": "http://registry.npmjs.org/nohm/-/nohm-0.6.1.tgz" + }, + "0.6.2": { + "shasum": "3fd3407247ccee0a911b2a490b544bd1d0794e48", + "tarball": "http://registry.npmjs.org/nohm/-/nohm-0.6.2.tgz" + }, + "0.6.3": { + "shasum": "ab1f8ac0ef61ea4c092bf4d480d9484b75f2d6d6", + "tarball": "http://registry.npmjs.org/nohm/-/nohm-0.6.3.tgz" + }, + "0.6.4": { + "shasum": "e23bbb05629a564d0e1f9b0e72ead710ff7ae8ee", + "tarball": "http://registry.npmjs.org/nohm/-/nohm-0.6.4.tgz" + }, + "0.7.0": { + "shasum": "c1f334e909920478393ed18ab7f0b767dacc50dc", + "tarball": "http://registry.npmjs.org/nohm/-/nohm-0.7.0.tgz" + }, + "0.7.1": { + "shasum": "4d51720f4dd1ecb7e57ece4406cbe1068165939a", + "tarball": "http://registry.npmjs.org/nohm/-/nohm-0.7.1.tgz" + } + }, + "url": "http://registry.npmjs.org/nohm/" + }, + "noid": { + "name": "noid", + "description": "ODM for MongoDB with CoffeeScript", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "chrisgibson", + "email": "chrislgibson@gmail.com" + } + ], + "author": { + "name": "Chris Gibson" + }, + "repository": { + "type": "git", + "url": "https://github.com/chrisgibson/noid" + }, + "time": { + "modified": "2010-12-22T01:23:05.684Z", + "created": "2010-12-22T01:23:05.684Z", + "0.0.1": "2010-12-22T01:23:05.684Z", + "0.0.2": "2010-12-22T01:23:05.684Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/noid/0.0.1", + "0.0.2": "http://registry.npmjs.org/noid/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "a8452a866d74d91d92d7100a13855957f91f3d5a", + "tarball": "http://registry.npmjs.org/noid/-/noid-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "7a54fc77aae599c6b34bf8b2b7003debf38d2801", + "tarball": "http://registry.npmjs.org/noid/-/noid-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/noid/" + }, + "nolife": { + "name": "nolife", + "description": "nolife restarts an application if a file changes", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "stagas", + "email": "gstagas@gmail.com" + } + ], + "time": { + "modified": "2011-08-24T12:40:44.368Z", + "created": "2011-05-31T10:19:01.714Z", + "0.0.1": "2011-05-31T10:19:02.347Z", + "0.0.2": "2011-05-31T12:02:38.446Z", + "0.0.3": "2011-08-24T12:40:44.368Z" + }, + "author": { + "name": "George Stagas", + "email": "gstagas@gmail.com", + "url": "http://stagas.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/stagas/nolife.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nolife/0.0.1", + "0.0.2": "http://registry.npmjs.org/nolife/0.0.2", + "0.0.3": "http://registry.npmjs.org/nolife/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "b312f971bd393fbccb07bd0c2a968f1e1f0f503a", + "tarball": "http://registry.npmjs.org/nolife/-/nolife-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "37595ad3d4cd164f6832be93ba125afa95765a9f", + "tarball": "http://registry.npmjs.org/nolife/-/nolife-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "8352449a62b743cf62c515b1d3854f6aa426d487", + "tarball": "http://registry.npmjs.org/nolife/-/nolife-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/nolife/" + }, + "nolog": { + "name": "nolog", + "description": "event based real time logfile parser", + "dist-tags": { + "latest": "0.2.0-1" + }, + "maintainers": [ + { + "name": "franzenzenhofer", + "email": "f.enzenhofer@gmail.com" + } + ], + "time": { + "modified": "2011-04-24T21:23:22.095Z", + "created": "2011-04-12T07:16:27.809Z", + "0.1.1-1": "2011-04-12T07:16:28.275Z", + "0.1.2-1": "2011-04-13T11:40:23.696Z", + "0.2.0-0": "2011-04-24T21:21:00.312Z", + "0.2.0-1": "2011-04-24T21:23:22.095Z" + }, + "author": { + "name": "Franz Enzenhofer", + "email": "f.enzenhofer@gmail.com" + }, + "versions": { + "0.1.1-1": "http://registry.npmjs.org/nolog/0.1.1-1", + "0.1.2-1": "http://registry.npmjs.org/nolog/0.1.2-1", + "0.2.0-0": "http://registry.npmjs.org/nolog/0.2.0-0", + "0.2.0-1": "http://registry.npmjs.org/nolog/0.2.0-1" + }, + "dist": { + "0.1.1-1": { + "shasum": "44bba8706079d89986386df93a8f35595ae823ad", + "tarball": "http://registry.npmjs.org/nolog/-/nolog-0.1.1-1.tgz" + }, + "0.1.2-1": { + "shasum": "2f70e47845c063622bd7e122473543ac4fede3e8", + "tarball": "http://registry.npmjs.org/nolog/-/nolog-0.1.2-1.tgz" + }, + "0.2.0-0": { + "shasum": "88ca49722d0fd1007d59c441188548d168ce31f0", + "tarball": "http://registry.npmjs.org/nolog/-/nolog-0.2.0-0.tgz" + }, + "0.2.0-1": { + "shasum": "31950054af5e9941e1180ae59aba0fb4af46e09e", + "tarball": "http://registry.npmjs.org/nolog/-/nolog-0.2.0-1.tgz" + } + }, + "keywords": [ + "logs", + "log" + ], + "url": "http://registry.npmjs.org/nolog/" + }, + "nomnom": { + "name": "nomnom", + "description": "Option parser with generated usage and commands", + "dist-tags": { + "latest": "1.5.1" + }, + "maintainers": [ + { + "name": "harth", + "email": "fayearthur@gmail.com" + } + ], + "author": { + "name": "Heather Arthur", + "email": "fayearthur@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/harthur/nomnom.git" + }, + "time": { + "modified": "2011-11-02T18:06:07.714Z", + "created": "2011-04-07T23:03:55.183Z", + "0.1.2": "2011-04-07T23:03:55.183Z", + "0.1.3": "2011-04-07T23:03:55.183Z", + "0.2.0": "2011-04-15T18:48:56.752Z", + "0.3.0": "2011-04-17T18:19:39.618Z", + "0.4.0": "2011-04-25T06:24:04.514Z", + "0.4.1": "2011-05-01T01:48:54.108Z", + "0.4.2": "2011-05-10T05:18:54.260Z", + "0.4.3": "2011-05-25T08:04:25.013Z", + "0.4.4": "2011-05-31T22:13:03.598Z", + "0.4.6": "2011-06-03T08:04:11.821Z", + "0.4.8": "2011-06-04T08:22:27.636Z", + "0.5.0": "2011-06-14T04:30:37.807Z", + "0.6.0": "2011-06-28T02:20:32.321Z", + "0.6.1": "2011-07-18T00:51:30.864Z", + "1.0.0": "2011-08-07T00:52:43.882Z", + "1.5.0": "2011-11-02T17:38:43.908Z", + "1.5.1": "2011-11-02T18:06:07.714Z" + }, + "versions": { + "0.1.2": "http://registry.npmjs.org/nomnom/0.1.2", + "0.1.3": "http://registry.npmjs.org/nomnom/0.1.3", + "0.2.0": "http://registry.npmjs.org/nomnom/0.2.0", + "0.3.0": "http://registry.npmjs.org/nomnom/0.3.0", + "0.4.0": "http://registry.npmjs.org/nomnom/0.4.0", + "0.4.1": "http://registry.npmjs.org/nomnom/0.4.1", + "0.4.2": "http://registry.npmjs.org/nomnom/0.4.2", + "0.4.3": "http://registry.npmjs.org/nomnom/0.4.3", + "0.4.4": "http://registry.npmjs.org/nomnom/0.4.4", + "0.4.6": "http://registry.npmjs.org/nomnom/0.4.6", + "0.4.8": "http://registry.npmjs.org/nomnom/0.4.8", + "0.5.0": "http://registry.npmjs.org/nomnom/0.5.0", + "0.6.0": "http://registry.npmjs.org/nomnom/0.6.0", + "0.6.1": "http://registry.npmjs.org/nomnom/0.6.1", + "1.0.0": "http://registry.npmjs.org/nomnom/1.0.0", + "1.5.0": "http://registry.npmjs.org/nomnom/1.5.0", + "1.5.1": "http://registry.npmjs.org/nomnom/1.5.1" + }, + "dist": { + "0.1.2": { + "tarball": "http://packages:5984/nomnom/-/nomnom-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "9c3ec65bac68933e5a77909256f91502beca0a7f", + "tarball": "http://registry.npmjs.org/nomnom/-/nomnom-0.1.3.tgz" + }, + "0.2.0": { + "shasum": "a08bdac1da7afac5878732f7857a2c6914fd5cd6", + "tarball": "http://registry.npmjs.org/nomnom/-/nomnom-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "3faecf1f465bde1b2e5d1b5b8b8548769818792f", + "tarball": "http://registry.npmjs.org/nomnom/-/nomnom-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "afa2e425edca9494a87b86570adaf4f00eec86ac", + "tarball": "http://registry.npmjs.org/nomnom/-/nomnom-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "2a64ed59c3d9440c3b9d0036b2ddef7bfd2a5f4f", + "tarball": "http://registry.npmjs.org/nomnom/-/nomnom-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "a79d407b566e79d628248b207cb2114a7348d14b", + "tarball": "http://registry.npmjs.org/nomnom/-/nomnom-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "6c2db1247deff6f6757e357201238f07d97184e3", + "tarball": "http://registry.npmjs.org/nomnom/-/nomnom-0.4.3.tgz" + }, + "0.4.4": { + "shasum": "15025d0d0ef6f94951e516c62d5710923d649480", + "tarball": "http://registry.npmjs.org/nomnom/-/nomnom-0.4.4.tgz" + }, + "0.4.6": { + "shasum": "a35253deefc47dbbcf634ffa9955ff039aaffc4c", + "tarball": "http://registry.npmjs.org/nomnom/-/nomnom-0.4.6.tgz" + }, + "0.4.8": { + "shasum": "3ab00ea3e51d4f8bbf396cb4c54822fdc9adef5c", + "tarball": "http://registry.npmjs.org/nomnom/-/nomnom-0.4.8.tgz" + }, + "0.5.0": { + "shasum": "202f8aad796e082ed052e3629027de2f91f62719", + "tarball": "http://registry.npmjs.org/nomnom/-/nomnom-0.5.0.tgz" + }, + "0.6.0": { + "shasum": "b38ca9a3785d9f578f6f5ffa79ce162829ca2c69", + "tarball": "http://registry.npmjs.org/nomnom/-/nomnom-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "39f6a52bd529538083c7a7ca6d2cd9aa7a8fa03a", + "tarball": "http://registry.npmjs.org/nomnom/-/nomnom-0.6.1.tgz" + }, + "1.0.0": { + "shasum": "0fb591bbdf7f69ccf842f754e490a2f91a128c25", + "tarball": "http://registry.npmjs.org/nomnom/-/nomnom-1.0.0.tgz" + }, + "1.5.0": { + "shasum": "c8adc40f49a6397fb7ac8b13fed7c5a7749eae51", + "tarball": "http://registry.npmjs.org/nomnom/-/nomnom-1.5.0.tgz" + }, + "1.5.1": { + "shasum": "29e173eba23eeb5363c6c707d26a4b929f732f3e", + "tarball": "http://registry.npmjs.org/nomnom/-/nomnom-1.5.1.tgz" + } + }, + "keywords": [ + "arguments", + "option parser", + "command line", + "options", + "parser" + ], + "url": "http://registry.npmjs.org/nomnom/" + }, + "nomplate": { + "name": "nomplate", + "description": "Nomplate is a NodeJs Template DSL that uses CoffeeScript to generate markup. It is pronounced like 'Gnome-plate', and was heavily inspired by Erector.", + "dist-tags": { + "latest": "0.1.14" + }, + "maintainers": [ + { + "name": "lukebayes", + "email": "lbayes@patternpark.com" + } + ], + "time": { + "modified": "2011-04-20T06:36:39.712Z", + "created": "2011-04-19T07:00:17.988Z", + "0.1.9": "2011-04-19T07:00:18.405Z", + "0.1.10": "2011-04-19T07:16:08.718Z", + "0.1.13": "2011-04-20T06:00:45.972Z", + "0.1.14": "2011-04-20T06:36:39.712Z" + }, + "repository": { + "type": "git", + "url": "https://github.com/lukebayes/nomplate.git" + }, + "versions": { + "0.1.9": "http://registry.npmjs.org/nomplate/0.1.9", + "0.1.10": "http://registry.npmjs.org/nomplate/0.1.10", + "0.1.13": "http://registry.npmjs.org/nomplate/0.1.13", + "0.1.14": "http://registry.npmjs.org/nomplate/0.1.14" + }, + "dist": { + "0.1.9": { + "shasum": "acc2271fced8d823725a9666bc3db2dcc90d5b04", + "tarball": "http://registry.npmjs.org/nomplate/-/nomplate-0.1.9.tgz" + }, + "0.1.10": { + "shasum": "118846ab1e367d1553103582d10614614b6fa726", + "tarball": "http://registry.npmjs.org/nomplate/-/nomplate-0.1.10.tgz" + }, + "0.1.13": { + "shasum": "8d14006bc24f8adf3a24babd70c14a7bb0e2579f", + "tarball": "http://registry.npmjs.org/nomplate/-/nomplate-0.1.13.tgz" + }, + "0.1.14": { + "shasum": "99e6c11920e2e1e13d054e7d9a67c5aeff9ae8b2", + "tarball": "http://registry.npmjs.org/nomplate/-/nomplate-0.1.14.tgz" + } + }, + "url": "http://registry.npmjs.org/nomplate/" + }, + "nonogo": { + "name": "nonogo", + "description": "Document-based database designed for and written in Node.js", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "juliojimenez", + "email": "julio.js@live.com" + } + ], + "time": { + "modified": "2011-10-26T02:17:00.188Z", + "created": "2011-09-14T23:30:48.269Z", + "0.0.2": "2011-09-14T23:30:48.969Z", + "0.0.3": "2011-09-15T03:57:39.230Z", + "0.0.4": "2011-09-25T14:52:45.790Z", + "0.0.55555": "2011-10-20T00:37:20.227Z", + "0.0.6": "2011-10-22T20:17:59.551Z", + "0.0.7": "2011-10-23T19:41:17.925Z", + "0.0.8": "2011-10-24T02:31:58.067Z", + "0.0.9": "2011-10-24T02:35:37.559Z", + "0.1.0": "2011-10-24T23:08:21.496Z", + "0.1.1": "2011-10-24T23:22:21.104Z", + "0.1.3": "2011-10-26T02:17:00.188Z" + }, + "author": { + "name": "Julio Jimenez", + "email": "julio.js@live.com" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/nonogo/0.0.2", + "0.0.3": "http://registry.npmjs.org/nonogo/0.0.3", + "0.0.4": "http://registry.npmjs.org/nonogo/0.0.4", + "0.0.55555": "http://registry.npmjs.org/nonogo/0.0.55555", + "0.0.6": "http://registry.npmjs.org/nonogo/0.0.6", + "0.0.7": "http://registry.npmjs.org/nonogo/0.0.7", + "0.0.8": "http://registry.npmjs.org/nonogo/0.0.8", + "0.0.9": "http://registry.npmjs.org/nonogo/0.0.9", + "0.1.0": "http://registry.npmjs.org/nonogo/0.1.0", + "0.1.1": "http://registry.npmjs.org/nonogo/0.1.1", + "0.1.3": "http://registry.npmjs.org/nonogo/0.1.3" + }, + "dist": { + "0.0.2": { + "shasum": "2ab9a2e000204ab819a5c9fbb96c9a944cc63dbb", + "tarball": "http://registry.npmjs.org/nonogo/-/nonogo-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "6ce1a11bf4acd30bcc44f2c75aaa0ff6234b5204", + "tarball": "http://registry.npmjs.org/nonogo/-/nonogo-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "9e1f55ee5b911334d1be323247fefba951a4db2e", + "tarball": "http://registry.npmjs.org/nonogo/-/nonogo-0.0.4.tgz" + }, + "0.0.55555": { + "shasum": "e7b6c9e553ba2652d3c14061558d8455c97b4acf", + "tarball": "http://registry.npmjs.org/nonogo/-/nonogo-0.0.55555.tgz" + }, + "0.0.6": { + "shasum": "d83578eaae0f9aa2f065c1d8920b4cc747cb1396", + "tarball": "http://registry.npmjs.org/nonogo/-/nonogo-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "8bf03a7e49da0ff56cf4cbcca1cbc7e919d12d8e", + "tarball": "http://registry.npmjs.org/nonogo/-/nonogo-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "d7e6d2373339d7afa623dc78207605c55e883ab7", + "tarball": "http://registry.npmjs.org/nonogo/-/nonogo-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "80d0a2d659d363f3b6d86fd75a87e8c63b86cc88", + "tarball": "http://registry.npmjs.org/nonogo/-/nonogo-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "dd5968acfff12868046bb4fea3a6e01150c96e36", + "tarball": "http://registry.npmjs.org/nonogo/-/nonogo-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "655533e5d129b17a2593704e3ffa8a126c53f955", + "tarball": "http://registry.npmjs.org/nonogo/-/nonogo-0.1.1.tgz" + }, + "0.1.3": { + "shasum": "b1a035824d68ec866aa42eb1b5ae1dba885fb34c", + "tarball": "http://registry.npmjs.org/nonogo/-/nonogo-0.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/nonogo/" + }, + "Nonsense": { + "name": "Nonsense", + "description": "Create repeatable random information", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "jocafa", + "email": "josh.faul@gmail.com" + } + ], + "time": { + "modified": "2011-08-18T16:08:07.069Z", + "created": "2011-08-18T16:08:04.264Z", + "0.1.0": "2011-08-18T16:08:07.069Z" + }, + "author": { + "name": "Josh Faul", + "email": "josh.faul@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/jocafa/Nonsense.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/Nonsense/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "e52b8ed1c3eba2716ff2e6a053b771b6bdbc268d", + "tarball": "http://registry.npmjs.org/Nonsense/-/Nonsense-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/Nonsense/" + }, + "noode": { + "name": "noode", + "description": "A javascript class-based system with inheritance and events handling for Node.js.", + "dist-tags": { + "latest": "0.0.62" + }, + "maintainers": [ + { + "name": "xavierlaumonier", + "email": "dev@aenoa-systems.com" + } + ], + "time": { + "modified": "2011-06-14T06:56:32.865Z", + "created": "2011-06-09T05:13:43.063Z", + "0.0.5": "2011-06-09T05:13:43.712Z", + "0.0.6": "2011-06-09T05:29:56.573Z", + "0.0.62": "2011-06-14T06:56:32.865Z" + }, + "author": { + "name": "Xavier Laumonier", + "email": "dev@aenoa-systems.com", + "url": "http://www.aenoa.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/xavierlaumonier/Noode.js.git" + }, + "versions": { + "0.0.5": "http://registry.npmjs.org/noode/0.0.5", + "0.0.6": "http://registry.npmjs.org/noode/0.0.6", + "0.0.62": "http://registry.npmjs.org/noode/0.0.62" + }, + "dist": { + "0.0.5": { + "shasum": "b3c3bd2f9dd1f8bf69077df612bbf403a714347b", + "tarball": "http://registry.npmjs.org/noode/-/noode-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "07e93a58e5ed97076aa8316c8b485c53315058d3", + "tarball": "http://registry.npmjs.org/noode/-/noode-0.0.6.tgz" + }, + "0.0.62": { + "shasum": "71dca61101fbd4e4c20b5271c16b0dfacef4d5c8", + "tarball": "http://registry.npmjs.org/noode/-/noode-0.0.62.tgz" + } + }, + "url": "http://registry.npmjs.org/noode/" + }, + "noodle": { + "name": "noodle", + "description": "A simple Oodle REST API wrapper for Node.JS", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "gentooist", + "email": "derrick@derrickweis.com" + } + ], + "time": { + "modified": "2011-06-24T22:07:52.014Z", + "created": "2011-06-09T23:01:17.826Z", + "0.0.1": "2011-06-09T23:01:18.469Z", + "0.0.2": "2011-06-12T02:43:25.065Z", + "0.0.3": "2011-06-24T22:07:52.014Z" + }, + "author": { + "name": "Derrick Weis", + "email": "gentooist@gmail.com", + "url": "http://derrickweis.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:gentooist/noodle.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/noodle/0.0.1", + "0.0.2": "http://registry.npmjs.org/noodle/0.0.2", + "0.0.3": "http://registry.npmjs.org/noodle/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "264ef54cae7fec26d12935eb1356813f45dad060", + "tarball": "http://registry.npmjs.org/noodle/-/noodle-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c8e6048ec1505ef0c2055814343ecc28722af970", + "tarball": "http://registry.npmjs.org/noodle/-/noodle-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "623f5cf74c3dfbd99bbde7878af61b50e3b8c7f8", + "tarball": "http://registry.npmjs.org/noodle/-/noodle-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/noodle/" + }, + "noop": { + "name": "noop", + "description": "Provides a few global functions such as `noop`, `throwop`, and `doop`", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-02-27T19:30:32.151Z", + "created": "2011-01-11T22:55:36.061Z", + "0.2.0": "2011-01-11T22:55:37.410Z", + "0.2.2": "2011-02-27T19:30:32.151Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/noop/0.2.0", + "0.2.2": "http://registry.npmjs.org/noop/0.2.2" + }, + "dist": { + "0.2.0": { + "tarball": "http://registry.npmjs.org/noop/-/noop-0.2.0.tgz" + }, + "0.2.2": { + "shasum": "868b86cd3a26af8c7d4788d3fe923d586870909b", + "tarball": "http://registry.npmjs.org/noop/-/noop-0.2.2.tgz" + } + }, + "keywords": [ + "util" + ], + "url": "http://registry.npmjs.org/noop/" + }, + "nope": { + "name": "nope", + "dist-tags": { + "latest": "1.1.0" + }, + "maintainers": [ + { + "name": "aikar", + "email": "aikar@aikar.co" + } + ], + "time": { + "modified": "2011-09-23T17:03:25.374Z", + "created": "2011-09-21T04:51:46.865Z", + "1.0.0": "2011-09-21T04:51:47.405Z", + "1.1.0": "2011-09-23T16:30:26.006Z" + }, + "author": { + "name": "Aikar", + "email": "aikar@aikar.co", + "url": "http://www.aikar.co" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/nope/1.0.0", + "1.1.0": "http://registry.npmjs.org/nope/1.1.0" + }, + "dist": { + "1.0.0": { + "shasum": "eb859af9261db061f19848e6532be1da42c03d11", + "tarball": "http://registry.npmjs.org/nope/-/nope-1.0.0.tgz" + }, + "1.1.0": { + "shasum": "8d9114a20db43ee3b13bff08b8ae3fa3130f54c1", + "tarball": "http://registry.npmjs.org/nope/-/nope-1.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/nope/" + }, + "nopro": { + "name": "nopro", + "description": "nopro is a deployment tool for multiple node.js servers on a single ip", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "stagas", + "email": "gstagas@gmail.com" + } + ], + "time": { + "modified": "2011-09-21T09:19:58.554Z", + "created": "2011-08-07T08:47:02.750Z", + "0.0.1a": "2011-08-07T08:47:03.401Z", + "0.0.1": "2011-08-22T06:25:16.745Z", + "0.0.2": "2011-09-21T09:11:47.201Z" + }, + "author": { + "name": "George Stagas", + "email": "gstagas@gmail.com", + "url": "http://stagas.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/stagas/nopro.git" + }, + "versions": { + "0.0.1a": "http://registry.npmjs.org/nopro/0.0.1a", + "0.0.1": "http://registry.npmjs.org/nopro/0.0.1", + "0.0.2": "http://registry.npmjs.org/nopro/0.0.2" + }, + "dist": { + "0.0.1a": { + "shasum": "a2dccc3d2ba0b64a199a0b131b398661db1faa98", + "tarball": "http://registry.npmjs.org/nopro/-/nopro-0.0.1a.tgz" + }, + "0.0.1": { + "shasum": "8ea76f36540f3f8fb6971b92d0503a98af30df57", + "tarball": "http://registry.npmjs.org/nopro/-/nopro-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c573527660290797a2126ed08e6eaeb042c2e5b0", + "tarball": "http://registry.npmjs.org/nopro/-/nopro-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/nopro/" + }, + "nopt": { + "name": "nopt", + "description": "Option parsing for Node, supporting types, shorthands, etc. Used by npm.", + "dist-tags": { + "latest": "1.0.10" + }, + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "time": { + "modified": "2011-10-05T21:47:05.876Z", + "created": "2011-03-30T03:23:55.464Z", + "1.0.0": "2011-03-30T03:23:56.092Z", + "1.0.1": "2011-03-30T06:58:18.917Z", + "1.0.2": "2011-03-31T01:07:58.593Z", + "1.0.3": "2011-03-31T01:12:32.481Z", + "1.0.4": "2011-03-31T04:42:56.217Z", + "1.0.5": "2011-04-29T19:50:02.032Z", + "1.0.6": "2011-07-06T03:49:31.397Z", + "1.0.7": "2011-09-08T17:49:45.337Z", + "1.0.8": "2011-09-15T21:26:19.372Z", + "1.0.9": "2011-09-22T21:20:18.314Z", + "1.0.10": "2011-10-05T21:47:05.876Z" + }, + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me/" + }, + "repository": { + "type": "git", + "url": "git://github.com/isaacs/nopt.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/nopt/1.0.0", + "1.0.1": "http://registry.npmjs.org/nopt/1.0.1", + "1.0.2": "http://registry.npmjs.org/nopt/1.0.2", + "1.0.3": "http://registry.npmjs.org/nopt/1.0.3", + "1.0.4": "http://registry.npmjs.org/nopt/1.0.4", + "1.0.5": "http://registry.npmjs.org/nopt/1.0.5", + "1.0.6": "http://registry.npmjs.org/nopt/1.0.6", + "1.0.7": "http://registry.npmjs.org/nopt/1.0.7", + "1.0.8": "http://registry.npmjs.org/nopt/1.0.8", + "1.0.9": "http://registry.npmjs.org/nopt/1.0.9", + "1.0.10": "http://registry.npmjs.org/nopt/1.0.10" + }, + "dist": { + "1.0.0": { + "shasum": "a786d439b09c142dca74b0b29ef1458da50e37d8", + "tarball": "http://registry.npmjs.org/nopt/-/nopt-1.0.0.tgz", + "bin": { + "0.4-darwin-10.7.0": { + "shasum": "e0864df8d3e4d2b81ef268d8a50b2f1bccd39e54", + "tarball": "http://registry.npmjs.org/nopt/-/nopt-1.0.0-0.4-darwin-10.7.0.tgz" + } + } + }, + "1.0.1": { + "shasum": "585e38c61508b02b1ea2cc0028eef8c303079285", + "tarball": "http://registry.npmjs.org/nopt/-/nopt-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "bb26ab771fb09411f716b122c12cd98fdc98f4d1", + "tarball": "http://registry.npmjs.org/nopt/-/nopt-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "a5557211e05f4baad09bbf8e9d798072bff69166", + "tarball": "http://registry.npmjs.org/nopt/-/nopt-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "023fc93f439094e662e2e4186345bfabda8eceda", + "tarball": "http://registry.npmjs.org/nopt/-/nopt-1.0.4.tgz" + }, + "1.0.5": { + "shasum": "fc79e34a4e8862e9c413d2e1cac07ee645ac4cc8", + "tarball": "http://registry.npmjs.org/nopt/-/nopt-1.0.5.tgz" + }, + "1.0.6": { + "shasum": "37307cafcdccf78b954ec06dcef31b936b4d03df", + "tarball": "http://registry.npmjs.org/nopt/-/nopt-1.0.6.tgz" + }, + "1.0.7": { + "shasum": "cc72658b52a3f653a70883a1823dd8f3ddc57f75", + "tarball": "http://registry.npmjs.org/nopt/-/nopt-1.0.7.tgz" + }, + "1.0.8": { + "shasum": "d4ac752df307f1a02eb771c40ed23188e7ca44c6", + "tarball": "http://registry.npmjs.org/nopt/-/nopt-1.0.8.tgz" + }, + "1.0.9": { + "shasum": "3bc0d7cba7bfb0d5a676dbed7c0ebe48a4fd454e", + "tarball": "http://registry.npmjs.org/nopt/-/nopt-1.0.9.tgz" + }, + "1.0.10": { + "shasum": "6ddd21bd2a31417b92727dd585f8a6f37608ebee", + "tarball": "http://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz" + } + }, + "url": "http://registry.npmjs.org/nopt/" + }, + "norm": { + "name": "norm", + "description": "Primitive ORM for Node.JS", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "napa3um", + "email": "napa3um@gmail.com" + } + ], + "time": { + "modified": "2011-08-30T08:53:04.807Z", + "created": "2011-08-30T03:27:17.510Z", + "0.0.1": "2011-08-30T03:27:20.123Z", + "0.0.2": "2011-08-30T07:42:42.458Z" + }, + "author": { + "name": "napa3um", + "email": "napa3um@google.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/napa3um/norm.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/norm/0.0.1", + "0.0.2": "http://registry.npmjs.org/norm/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "8e112660f863cec02a7aab3fb39050d9b3fa1c13", + "tarball": "http://registry.npmjs.org/norm/-/norm-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "bbd74640d96fc66355c8abecdb6b19f2f82ac390", + "tarball": "http://registry.npmjs.org/norm/-/norm-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/norm/" + }, + "NormAndVal": { + "name": "NormAndVal", + "description": "Normalize your data to match common conventions; Validate your inputs; use the same libraries in Node.js *and* the browser.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "roberthahn", + "email": "rh-github@roberthahn.ca" + } + ], + "author": { + "name": "roberthahn", + "email": "rh-github@roberthahn.ca" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/NormAndVal/0.0.2", + "0.0.3": "http://registry.npmjs.org/NormAndVal/0.0.3", + "0.0.4": "http://registry.npmjs.org/NormAndVal/0.0.4", + "0.1.0": "http://registry.npmjs.org/NormAndVal/0.1.0" + }, + "dist": { + "0.0.2": { + "shasum": "32f9bbbee2de7220602ecaf6deea1560fec55100", + "tarball": "http://registry.npmjs.org/NormAndVal/-/NormAndVal-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "5f9049a896b46183e0c2e909896f230e797527cb", + "tarball": "http://registry.npmjs.org/NormAndVal/-/NormAndVal-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "41ad1c88cccac211f799f139568748d9bf6e074f", + "tarball": "http://registry.npmjs.org/NormAndVal/-/NormAndVal-0.0.4.tgz" + }, + "0.1.0": { + "shasum": "6cfc6ebb3c2378c9084ff4fd3c985a1e673948f8", + "tarball": "http://registry.npmjs.org/NormAndVal/-/NormAndVal-0.1.0.tgz" + } + }, + "keywords": [ + "util", + "normalize", + "validate", + "normalization", + "validation", + "library", + "data" + ], + "url": "http://registry.npmjs.org/NormAndVal/" + }, + "norq": { + "name": "norq", + "description": "A loosely-ordered random-access queue for JSON documents implemented with Node.js and Redis.", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "christiansmith", + "email": "smith@anvil.io" + } + ], + "time": { + "modified": "2011-08-05T03:15:54.810Z", + "created": "2011-08-05T03:15:53.864Z", + "0.0.0": "2011-08-05T03:15:54.810Z" + }, + "author": { + "name": "Christian Smith", + "email": "smith@anvil.io", + "url": "http://anvil.io" + }, + "repository": { + "url": "git://github.com/christiansmith/norq.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/norq/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "f823fd105e7a24a01761d7ff52797515773698e5", + "tarball": "http://registry.npmjs.org/norq/-/norq-0.0.0.tgz" + } + }, + "keywords": [ + "json", + "queue", + "redis", + "json-schema", + "rest" + ], + "url": "http://registry.npmjs.org/norq/" + }, + "norris": { + "name": "norris", + "description": "Namespace Oriented REST and RPC Integrated Stack", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "rubentan", + "email": "soggie@gmail.com" + } + ], + "time": { + "modified": "2011-08-12T12:47:34.078Z", + "created": "2011-08-12T12:47:22.668Z", + "0.0.1": "2011-08-12T12:47:34.078Z" + }, + "author": { + "name": "Ruben Tan Long Zheng", + "email": "soggie@gmail.com", + "url": "http://roguejs.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/soggie/norris.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/norris/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "4bf83b9349f2f5124cd5dd86c42dd301a16fe43c", + "tarball": "http://registry.npmjs.org/norris/-/norris-0.0.1.tgz" + } + }, + "keywords": [ + "rpc", + "norris", + "rest", + "realtime", + "server" + ], + "url": "http://registry.npmjs.org/norris/" + }, + "NORRIS": { + "name": "NORRIS", + "description": "Namespace Oriented REST and RPC Integrated Stack", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "rubentan", + "email": "soggie@gmail.com" + } + ], + "time": { + "modified": "2011-08-14T09:27:46.886Z", + "created": "2011-08-14T09:27:40.896Z", + "0.0.1": "2011-08-14T09:27:46.886Z" + }, + "author": { + "name": "Ruben Tan Long Zheng", + "email": "soggie@gmail.com", + "url": "http://roguejs.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/soggie/norris.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/NORRIS/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "39fc02090980b43c202e3da868839b67b329a2a4", + "tarball": "http://registry.npmjs.org/NORRIS/-/NORRIS-0.0.1.tgz" + } + }, + "keywords": [ + "rpc", + "norris", + "rest", + "realtime", + "server" + ], + "url": "http://registry.npmjs.org/NORRIS/" + }, + "norris-fs": { + "name": "norris-fs", + "description": "Extra utilities to manipulate the file system, like an evil boss", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "rubentan", + "email": "soggie@gmail.com" + } + ], + "time": { + "modified": "2011-11-28T07:44:58.395Z", + "created": "2011-11-03T08:52:12.972Z", + "0.0.1": "2011-11-03T08:52:16.627Z", + "0.1.0": "2011-11-28T07:27:18.369Z", + "0.1.1": "2011-11-28T07:44:58.395Z" + }, + "author": { + "name": "Ruben LZ Tan", + "email": "soggie@gmail.com", + "url": "http://roguejs.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/soggie/norris-fs.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/norris-fs/0.0.1", + "0.1.0": "http://registry.npmjs.org/norris-fs/0.1.0", + "0.1.1": "http://registry.npmjs.org/norris-fs/0.1.1" + }, + "dist": { + "0.0.1": { + "shasum": "b485a577b33847a1743e1fd6999938e8b9e419ad", + "tarball": "http://registry.npmjs.org/norris-fs/-/norris-fs-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "5010ba2a3d5666a873733e571d7d0d5d5b87d55b", + "tarball": "http://registry.npmjs.org/norris-fs/-/norris-fs-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "ba4a00a4b9c7fb8a6a897d2592b7d9029e2c26f6", + "tarball": "http://registry.npmjs.org/norris-fs/-/norris-fs-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/norris-fs/" + }, + "norris-ioc": { + "name": "norris-ioc", + "description": "An Inversion-of-Control container for the NORRIS project but can be used by anybody else", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "rubentan", + "email": "soggie@gmail.com" + } + ], + "time": { + "modified": "2011-11-15T04:20:26.973Z", + "created": "2011-08-21T06:24:34.152Z", + "0.0.1": "2011-08-21T06:24:41.939Z", + "0.0.2": "2011-08-25T04:10:11.510Z", + "0.1.0": "2011-08-31T05:20:16.272Z", + "0.1.1": "2011-10-17T00:41:33.599Z", + "0.1.2": "2011-11-03T09:14:16.350Z", + "0.1.3": "2011-11-15T04:20:26.973Z" + }, + "author": { + "name": "Ruben LZ Tan", + "email": "soggie@gmail.com", + "url": "http://roguejs.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/soggie/norris-ioc.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/norris-ioc/0.0.1", + "0.0.2": "http://registry.npmjs.org/norris-ioc/0.0.2", + "0.1.0": "http://registry.npmjs.org/norris-ioc/0.1.0", + "0.1.1": "http://registry.npmjs.org/norris-ioc/0.1.1", + "0.1.2": "http://registry.npmjs.org/norris-ioc/0.1.2", + "0.1.3": "http://registry.npmjs.org/norris-ioc/0.1.3" + }, + "dist": { + "0.0.1": { + "shasum": "de31d527f0dbcee2e67e708f0a7efc95dbc5cc8e", + "tarball": "http://registry.npmjs.org/norris-ioc/-/norris-ioc-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f38d463441d6a544e9615a2df0449c4abe9c7bad", + "tarball": "http://registry.npmjs.org/norris-ioc/-/norris-ioc-0.0.2.tgz" + }, + "0.1.0": { + "shasum": "1742ac0d2515ad38c0d00df6e17377022553f8b0", + "tarball": "http://registry.npmjs.org/norris-ioc/-/norris-ioc-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "08b9aebff1aeff85eaa74a55d00b263a0e1e1345", + "tarball": "http://registry.npmjs.org/norris-ioc/-/norris-ioc-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "0b9530a5b698ce6968067e2922d397c2567cd855", + "tarball": "http://registry.npmjs.org/norris-ioc/-/norris-ioc-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "297066d14398742dc0f2f7b3a76a08a30b19ffc9", + "tarball": "http://registry.npmjs.org/norris-ioc/-/norris-ioc-0.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/norris-ioc/" + }, + "norris-json": { + "name": "norris-json", + "description": "JSON toolkit for the NORRIS project (but can be used on its own)", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "rubentan", + "email": "soggie@gmail.com" + } + ], + "time": { + "modified": "2011-10-08T16:34:51.014Z", + "created": "2011-10-04T05:11:12.926Z", + "0.0.1": "2011-10-04T05:11:17.455Z", + "0.0.2": "2011-10-07T06:32:27.005Z", + "0.1.0": "2011-10-08T08:34:53.986Z", + "0.2.0": "2011-10-08T16:34:51.014Z" + }, + "author": { + "name": "Ruben LZ Tan", + "email": "soggie@gmail.com", + "url": "http://roguejs.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/soggie/norris-json.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/norris-json/0.0.1", + "0.0.2": "http://registry.npmjs.org/norris-json/0.0.2", + "0.1.0": "http://registry.npmjs.org/norris-json/0.1.0", + "0.2.0": "http://registry.npmjs.org/norris-json/0.2.0" + }, + "dist": { + "0.0.1": { + "shasum": "7ae107df0a9bcea976ff35a3b6641e940929b603", + "tarball": "http://registry.npmjs.org/norris-json/-/norris-json-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "105147ce63f510d633331ace9c91d2bc62f2a0b1", + "tarball": "http://registry.npmjs.org/norris-json/-/norris-json-0.0.2.tgz" + }, + "0.1.0": { + "shasum": "d2906438723cd4fa209e405d5280eafceaba8789", + "tarball": "http://registry.npmjs.org/norris-json/-/norris-json-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "40072d7d9f27911d092aebb11bb3e39df933be55", + "tarball": "http://registry.npmjs.org/norris-json/-/norris-json-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/norris-json/" + }, + "norris-tester": { + "name": "norris-tester", + "description": "A test suite runner that can be easily integrated into any CI server", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "rubentan", + "email": "soggie@gmail.com" + } + ], + "time": { + "modified": "2011-09-14T10:13:49.339Z", + "created": "2011-09-14T10:13:44.396Z", + "0.0.1": "2011-09-14T10:13:49.339Z" + }, + "author": { + "name": "Ruben LZ Tan", + "email": "soggie@gmail.com", + "url": "http://roguejs.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/soggie/norris-tester.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/norris-tester/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "b6e737fd248286ed6b99802d3efbeb5d8be063b4", + "tarball": "http://registry.npmjs.org/norris-tester/-/norris-tester-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/norris-tester/" + }, + "northwatcher": { + "name": "northwatcher", + "description": "NorthWatcher is cron for filesystem changes.", + "dist-tags": { + "latest": "0.1.9" + }, + "maintainers": [ + { + "name": "sjs", + "email": "sami@samhuri.net" + } + ], + "time": { + "modified": "2011-11-06T01:59:09.810Z", + "created": "2011-05-15T01:03:51.250Z", + "0.1.1": "2011-05-15T01:03:51.803Z", + "0.1.2": "2011-05-15T01:11:59.180Z", + "0.1.3": "2011-05-15T01:13:38.238Z", + "0.1.4": "2011-05-15T01:18:36.762Z", + "0.1.5": "2011-06-05T07:52:18.291Z", + "0.1.6": "2011-06-13T02:02:24.901Z", + "0.1.8": "2011-11-06T01:43:45.363Z", + "0.1.9": "2011-11-06T01:59:09.810Z" + }, + "author": { + "name": "Sami Samhuri", + "email": "sami@samhuri.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/samsonjs/NorthWatcher.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/northwatcher/0.1.1", + "0.1.2": "http://registry.npmjs.org/northwatcher/0.1.2", + "0.1.3": "http://registry.npmjs.org/northwatcher/0.1.3", + "0.1.4": "http://registry.npmjs.org/northwatcher/0.1.4", + "0.1.5": "http://registry.npmjs.org/northwatcher/0.1.5", + "0.1.6": "http://registry.npmjs.org/northwatcher/0.1.6", + "0.1.8": "http://registry.npmjs.org/northwatcher/0.1.8", + "0.1.9": "http://registry.npmjs.org/northwatcher/0.1.9" + }, + "dist": { + "0.1.1": { + "shasum": "9ec5e1ff6f7776e756f08ee6ad4cfaf5935149ad", + "tarball": "http://registry.npmjs.org/northwatcher/-/northwatcher-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "735e3f9e52b647210f92c991c06a0361d03153a1", + "tarball": "http://registry.npmjs.org/northwatcher/-/northwatcher-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "e45f7214d7fd4489d3151389afa4b022a5cc0cf3", + "tarball": "http://registry.npmjs.org/northwatcher/-/northwatcher-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "0acc3662823a8efa0d5c80572041a5b1bb9e001b", + "tarball": "http://registry.npmjs.org/northwatcher/-/northwatcher-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "ceb7f71e1ee7a3163dfffe6ba3ddbf4069857faa", + "tarball": "http://registry.npmjs.org/northwatcher/-/northwatcher-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "e34757c30dba890aed2887538a5562e369189021", + "tarball": "http://registry.npmjs.org/northwatcher/-/northwatcher-0.1.6.tgz" + }, + "0.1.8": { + "shasum": "d5e61cd03334f7fa6f982e7342352990e4bf1cc7", + "tarball": "http://registry.npmjs.org/northwatcher/-/northwatcher-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "c248baacc4d45bba11cfe80a69b30adedcb4d1b6", + "tarball": "http://registry.npmjs.org/northwatcher/-/northwatcher-0.1.9.tgz" + } + }, + "url": "http://registry.npmjs.org/northwatcher/" + }, + "nosey": { + "name": "nosey", + "description": "Stupid simple Continuous Integration server", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "agnoster", + "email": "agnoster@gmail.com" + } + ], + "time": { + "modified": "2011-06-21T17:02:40.102Z", + "created": "2011-06-21T17:02:39.000Z", + "0.0.3": "2011-06-21T17:02:40.102Z" + }, + "author": { + "name": "Isaac Wolkerstorfer", + "email": "agnoster@gmail.com", + "url": "http://agnoster.net/" + }, + "repository": { + "url": "https://github.com/agnoster/nosey.git" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/nosey/0.0.3" + }, + "dist": { + "0.0.3": { + "shasum": "49d39bce1943a856f574d64dc9d9ced8897b419f", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.16-darwin-10.7.0": { + "shasum": "256169bfa1506ec088c8dfba506e8f1b7d7c32ea", + "tarball": "http://registry.npmjs.org/nosey/-/nosey-0.0.3-0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.16-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/nosey/-/nosey-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/nosey/" + }, + "nosql-thin": { + "name": "nosql-thin", + "description": "A thin wrapper around MongoDB -- NOT AN ORM", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "dmcquay", + "email": "dmcquay@gmail.com" + } + ], + "author": { + "name": "Dustin McQuay", + "email": "dmcquay@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dmcquay/node-nosql-thin.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nosql-thin/0.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/nosql-thin/-/nosql-thin-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/nosql-thin/" + }, + "nosync": { + "name": "nosync", + "description": "Prevent *Sync functions from being run after the first tick", + "dist-tags": { + "latest": "1.0.0" + }, + "readme": "Want to prevent accidentally calling sync functions?\n\n`require(\"nosync\")` will clog that drain for you, by making all sync\nfunctions throw after the next tick.\n\nThis still allows you to do whatever you need to in the setup phase of\nyour program, where synchronous IO is a good thing.\n", + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "time": { + "modified": "2011-11-16T20:09:37.340Z", + "created": "2011-11-16T20:09:36.021Z", + "1.0.0": "2011-11-16T20:09:37.340Z" + }, + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me/" + }, + "repository": { + "type": "git", + "url": "git://github.com/isaacs/nosync.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/nosync/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "d3d621040d8139639909f453ad8feca13ba31450", + "tarball": "http://registry.npmjs.org/nosync/-/nosync-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/nosync/" + }, + "notch": { + "name": "notch", + "description": "Notch is a command line tool and library for building, deploying and administering CouchApps with Node.js", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "christiansmith", + "email": "smith@anvil.io" + } + ], + "time": { + "modified": "2011-07-28T22:41:12.990Z", + "created": "2011-07-28T22:41:12.122Z", + "0.0.0": "2011-07-28T22:41:12.990Z" + }, + "author": { + "name": "Christian Smith", + "email": "smith@anvil.io", + "url": "http://anvil.io" + }, + "repository": { + "url": "git://github.com/christiansmith/notch" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/notch/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "8a8a07bcc07f18f119e7cf5ff87c7d46122f9b4c", + "tarball": "http://registry.npmjs.org/notch/-/notch-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/notch/" + }, + "notes": { + "name": "notes", + "description": "a node.js version of Rails' \"rake notes\" functionality", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "stephenb", + "email": "stephenrb@gmail.com" + } + ], + "time": { + "modified": "2011-07-05T22:11:33.036Z", + "created": "2011-07-05T22:11:32.650Z", + "0.0.1": "2011-07-05T22:11:33.036Z" + }, + "author": { + "name": "Stephen Blankenship" + }, + "repository": { + "type": "git", + "url": "git://github.com/stephenb/node-notes.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/notes/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "52f85ef5eb2ed517ca831746e17a7a15d3dd2f54", + "tarball": "http://registry.npmjs.org/notes/-/notes-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/notes/" + }, + "nothing": { + "name": "nothing", + "description": "Make 0-dependencies javascript code.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "guileen", + "email": "guileen@gmail.com" + } + ], + "time": { + "modified": "2011-04-26T15:18:06.714Z", + "created": "2011-04-26T15:18:04.295Z", + "0.1.0": "2011-04-26T15:18:06.714Z" + }, + "author": { + "name": "Gui Lin", + "email": "guileen@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/guileen/nothing.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/nothing/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "3455bb826d6d499f3af1ee1118a05a89bf97c12e", + "tarball": "http://registry.npmjs.org/nothing/-/nothing-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/nothing/" + }, + "notifications": { + "name": "notifications", + "description": "A mechanism for dispatching notifications within a Node.js program.", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "jaredhanson", + "email": "jaredhanson@gmail.com" + } + ], + "time": { + "modified": "2011-12-02T06:27:39.921Z", + "created": "2011-05-20T02:29:41.154Z", + "0.1.0": "2011-05-20T02:29:41.716Z", + "0.2.0": "2011-12-02T06:27:39.921Z" + }, + "author": { + "name": "Jared Hanson", + "email": "jaredhanson@gmail.com", + "url": "http://www.jaredhanson.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jaredhanson/node-notifications.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/notifications/0.1.0", + "0.2.0": "http://registry.npmjs.org/notifications/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "0b9a9c9531be9a57eb2b79ff100ef648585f1d3b", + "tarball": "http://registry.npmjs.org/notifications/-/notifications-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "fbd6ed1fe8f1db0101f8f161e0cdbc9374f3052e", + "tarball": "http://registry.npmjs.org/notifications/-/notifications-0.2.0.tgz" + } + }, + "keywords": [ + "notifications", + "events", + "pubsub", + "publish", + "subscribe", + "observer" + ], + "url": "http://registry.npmjs.org/notifications/" + }, + "notificon": { + "name": "notificon", + "description": "favicon notifications and alerts", + "dist-tags": { + "latest": "1.0.4" + }, + "maintainers": [ + { + "name": "makeable", + "email": "matt@makeable.co.uk" + } + ], + "time": { + "modified": "2011-11-06T18:28:33.497Z", + "created": "2011-10-26T09:45:10.781Z", + "1.0.0": "2011-10-26T09:45:11.963Z", + "1.0.1": "2011-10-26T09:46:03.877Z", + "1.0.2": "2011-10-26T10:16:30.106Z", + "1.0.4": "2011-11-06T18:28:33.497Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/makeable/Notificon.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/notificon/1.0.0", + "1.0.1": "http://registry.npmjs.org/notificon/1.0.1", + "1.0.2": "http://registry.npmjs.org/notificon/1.0.2", + "1.0.4": "http://registry.npmjs.org/notificon/1.0.4" + }, + "dist": { + "1.0.0": { + "shasum": "b012d940f0b4466e9b77bacefdd25ee70c646be2", + "tarball": "http://registry.npmjs.org/notificon/-/notificon-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "f94ceb03dc54b60e8fe375d92ebecadcb5caa332", + "tarball": "http://registry.npmjs.org/notificon/-/notificon-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "b58e5779540af1f84bb0e1ed02cd79c5aa479f06", + "tarball": "http://registry.npmjs.org/notificon/-/notificon-1.0.2.tgz" + }, + "1.0.4": { + "shasum": "872cd2c89fd66432fdc2630d13fb4f0363c4390d", + "tarball": "http://registry.npmjs.org/notificon/-/notificon-1.0.4.tgz" + } + }, + "keywords": [ + "ender", + "notificon" + ], + "url": "http://registry.npmjs.org/notificon/" + }, + "notifo": { + "name": "notifo", + "description": "Send push notifications to your iPhone for free through http://notifo.com/.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "mape", + "email": "mape@mape.me" + } + ], + "author": { + "name": "Mathias Pettersson", + "email": "mape@mape.me" + }, + "repository": { + "type": "git", + "url": "http://github.com/mape/node-notifo" + }, + "time": { + "modified": "2011-02-05T14:30:24.055Z", + "created": "2011-02-05T14:30:24.055Z", + "0.0.1": "2011-02-05T14:30:24.055Z", + "0.0.2": "2011-02-05T14:30:24.055Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/notifo/0.0.1", + "0.0.2": "http://registry.npmjs.org/notifo/0.0.2" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/notifo/-/notifo-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "54f286e34810cb9929c7dd1401c8f10e9d43bb68", + "tarball": "http://registry.npmjs.org/notifo/-/notifo-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/notifo/" + }, + "notify": { + "name": "notify", + "description": "Native Node.js C++ extension for displaying desktop notifications using GNOME's libnotify library.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "olalonde", + "email": "olalonde@gmail.com" + } + ], + "time": { + "modified": "2011-03-30T17:06:04.135Z", + "created": "2011-03-30T17:06:03.958Z", + "0.1.0": "2011-03-30T17:06:04.135Z" + }, + "author": { + "name": "Olivier Lalonde", + "email": "olalonde@gmail.com", + "url": "http://www.syskall.com/" + }, + "repository": { + "type": "git", + "url": "https://github.com/olalonde/node-notify.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/notify/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "0889d5edf9911d3d72fb12b9b73176c20727b05d", + "tarball": "http://registry.npmjs.org/notify/-/notify-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/notify/" + }, + "notify-send": { + "name": "notify-send", + "description": "Ubuntu growl-like notifications for node.js", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "bnoguchi", + "email": "brian.noguchi@gmail.com" + } + ], + "time": { + "modified": "2011-07-21T00:15:05.317Z", + "created": "2011-07-20T20:06:41.136Z", + "0.1.0": "2011-07-20T20:06:41.860Z", + "0.1.1": "2011-07-21T00:06:56.064Z", + "0.1.2": "2011-07-21T00:15:05.317Z" + }, + "author": { + "name": "Brian Noguchi", + "email": "brian.noguchi@gmail.com", + "url": "https://github.com/bnoguchi" + }, + "repository": { + "type": "git", + "url": "git://github.com/bnoguchi/node-notify-send.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/notify-send/0.1.0", + "0.1.1": "http://registry.npmjs.org/notify-send/0.1.1", + "0.1.2": "http://registry.npmjs.org/notify-send/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "a002e3b17fe471e74cf809fd35c084d3bc5c7918", + "tarball": "http://registry.npmjs.org/notify-send/-/notify-send-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "356ceea2cb5a1cfdf328a7992008a8b154913563", + "tarball": "http://registry.npmjs.org/notify-send/-/notify-send-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "23c197bb1ea34805d6d9a77e61b40fd76e1bb80a", + "tarball": "http://registry.npmjs.org/notify-send/-/notify-send-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/notify-send/" + }, + "notp": { + "name": "notp", + "description": "Node One Time Password library, supports HOTP, TOTP and works with Google Authenticator", + "dist-tags": { + "latest": "1.1.2" + }, + "maintainers": [ + { + "name": "guyht", + "email": "guy@cach.me" + } + ], + "time": { + "modified": "2011-10-03T01:15:24.651Z", + "created": "2011-10-03T01:15:23.535Z", + "1.1.2": "2011-10-03T01:15:24.651Z" + }, + "author": { + "name": "Guy Halford-Thompson", + "email": "guy@cach.me", + "url": "http://cach.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/guyht/notp.git" + }, + "versions": { + "1.1.2": "http://registry.npmjs.org/notp/1.1.2" + }, + "dist": { + "1.1.2": { + "shasum": "b7970f442c11d999310f4ac385b8cd9f330ed2b0", + "tarball": "http://registry.npmjs.org/notp/-/notp-1.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/notp/" + }, + "nova": { + "name": "nova", + "description": "A JavaScript syntax based template engine for Node.JS", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "aikar", + "email": "aikar@aikar.co" + } + ], + "time": { + "modified": "2011-10-06T21:36:34.385Z", + "created": "2011-10-06T21:36:33.108Z", + "0.1.0": "2011-10-06T21:36:34.385Z" + }, + "author": { + "name": "Aikar", + "email": "Aikar@Aikar.co", + "url": "http://aikar.co" + }, + "repository": { + "type": "git", + "url": "github.com:Aikar/node-nova.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/nova/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "3a356a5c3cc8c73183903e01d6b2cedab7599ee3", + "tarball": "http://registry.npmjs.org/nova/-/nova-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/nova/" + }, + "now": { + "name": "now", + "description": "NowJS: An easy to use real-time RPC library", + "dist-tags": { + "latest": "0.7.6" + }, + "maintainers": [ + { + "name": "sridatta", + "email": "sridatta@flotype.com" + } + ], + "time": { + "modified": "2011-11-16T20:50:49.053Z", + "created": "2011-03-11T20:41:28.290Z", + "0.2.0": "2011-03-11T20:41:28.651Z", + "0.2.1": "2011-03-12T05:40:37.944Z", + "0.2.2": "2011-03-12T09:46:01.910Z", + "0.2.3": "2011-03-12T09:49:02.428Z", + "0.2.4": "2011-03-15T04:51:45.474Z", + "0.3.0": "2011-03-18T18:32:50.807Z", + "0.3.1": "2011-03-25T22:59:39.101Z", + "0.3.2": "2011-03-29T16:31:19.344Z", + "0.5.0": "2011-04-09T05:02:16.171Z", + "0.5.1": "2011-04-09T19:40:31.586Z", + "0.5.2": "2011-04-22T02:32:41.753Z", + "0.5.3": "2011-04-26T02:02:01.916Z", + "0.6.0": "2011-05-13T19:56:29.451Z", + "0.6.1": "2011-06-13T17:27:45.678Z", + "0.7.0": "2011-07-18T18:17:16.470Z", + "0.7.1": "2011-07-23T00:02:32.720Z", + "0.7.2": "2011-07-23T06:11:55.566Z", + "0.7.3": "2011-07-27T03:16:08.770Z", + "0.7.4": "2011-08-16T23:19:49.817Z", + "0.7.5": "2011-09-12T18:49:42.388Z", + "0.7.6": "2011-11-12T00:55:44.903Z" + }, + "author": { + "name": "Flotype" + }, + "repository": { + "type": "git", + "url": "git://github.com/Flotype/now.git" + }, + "users": { + "pid": true + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/now/0.2.0", + "0.2.1": "http://registry.npmjs.org/now/0.2.1", + "0.2.2": "http://registry.npmjs.org/now/0.2.2", + "0.2.3": "http://registry.npmjs.org/now/0.2.3", + "0.2.4": "http://registry.npmjs.org/now/0.2.4", + "0.3.0": "http://registry.npmjs.org/now/0.3.0", + "0.3.1": "http://registry.npmjs.org/now/0.3.1", + "0.3.2": "http://registry.npmjs.org/now/0.3.2", + "0.5.0": "http://registry.npmjs.org/now/0.5.0", + "0.5.1": "http://registry.npmjs.org/now/0.5.1", + "0.5.2": "http://registry.npmjs.org/now/0.5.2", + "0.5.3": "http://registry.npmjs.org/now/0.5.3", + "0.6.0": "http://registry.npmjs.org/now/0.6.0", + "0.6.1": "http://registry.npmjs.org/now/0.6.1", + "0.7.0": "http://registry.npmjs.org/now/0.7.0", + "0.7.1": "http://registry.npmjs.org/now/0.7.1", + "0.7.2": "http://registry.npmjs.org/now/0.7.2", + "0.7.3": "http://registry.npmjs.org/now/0.7.3", + "0.7.4": "http://registry.npmjs.org/now/0.7.4", + "0.7.5": "http://registry.npmjs.org/now/0.7.5", + "0.7.6": "http://registry.npmjs.org/now/0.7.6" + }, + "dist": { + "0.2.0": { + "shasum": "b7a78fc70f85371da1af666ce5c1ffcd98baa937", + "tarball": "http://registry.npmjs.org/now/-/now-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "43cd53c512643e6958b0b4b29b64ac49a5b927fe", + "tarball": "http://registry.npmjs.org/now/-/now-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "d631da183d1e77e5bcdbf9d5ccf95fc4d3405b28", + "tarball": "http://registry.npmjs.org/now/-/now-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "4e2827df0d4c295120b8539398395e4d1f61cb47", + "tarball": "http://registry.npmjs.org/now/-/now-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "7de4dfc27ec806c4af119224cf8b4c5fd531e633", + "tarball": "http://registry.npmjs.org/now/-/now-0.2.4.tgz" + }, + "0.3.0": { + "shasum": "be5b63147b2ea30581f6642bef2f9ae112d8633c", + "tarball": "http://registry.npmjs.org/now/-/now-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "803a8c43ac54e5cc236e96f1974cb7cce0e768a8", + "tarball": "http://registry.npmjs.org/now/-/now-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "8cccdbc3b6c6c965a0d294d18e76fd08fb1719cd", + "tarball": "http://registry.npmjs.org/now/-/now-0.3.2.tgz" + }, + "0.5.0": { + "shasum": "3b35772b3813b0618e8322d4f0ebe24bbf7f592f", + "tarball": "http://registry.npmjs.org/now/-/now-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "edab59f2af56300b7b8e216580a1a9ce57bfe2d4", + "tarball": "http://registry.npmjs.org/now/-/now-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "7851049d6932162f62364ed46f8c495be05deef3", + "tarball": "http://registry.npmjs.org/now/-/now-0.5.2.tgz" + }, + "0.5.3": { + "shasum": "d5d3af63fea1df60b41daf8843eb988fd05e00b4", + "tarball": "http://registry.npmjs.org/now/-/now-0.5.3.tgz" + }, + "0.6.0": { + "shasum": "8afaf2554baddc5f3d76b3e525db600f2c2f1f60", + "tarball": "http://registry.npmjs.org/now/-/now-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "dec0bff8833f8aee49d0bd3ae032b0726f01b040", + "tarball": "http://registry.npmjs.org/now/-/now-0.6.1.tgz" + }, + "0.7.0": { + "shasum": "d59d1e06b15c411e4b8912ca142e765b26def48c", + "tarball": "http://registry.npmjs.org/now/-/now-0.7.0.tgz" + }, + "0.7.1": { + "shasum": "00d531c4a2e34f8e7b52789b125d9c2a9101023c", + "tarball": "http://registry.npmjs.org/now/-/now-0.7.1.tgz" + }, + "0.7.2": { + "shasum": "976ca3e1431cf6db8bdace399b6742598142f283", + "tarball": "http://registry.npmjs.org/now/-/now-0.7.2.tgz" + }, + "0.7.3": { + "shasum": "297e180ae7b712a71330974aaa0497375ebfe144", + "tarball": "http://registry.npmjs.org/now/-/now-0.7.3.tgz" + }, + "0.7.4": { + "shasum": "4e896bf8c920ac8cd4f5fde105fa4422ee726408", + "tarball": "http://registry.npmjs.org/now/-/now-0.7.4.tgz" + }, + "0.7.5": { + "shasum": "76bbf056aac8370981b17f44927fc2bf0c51e29f", + "tarball": "http://registry.npmjs.org/now/-/now-0.7.5.tgz" + }, + "0.7.6": { + "shasum": "4ebfa053692abc3a154209311b28d5f8bc077dc3", + "tarball": "http://registry.npmjs.org/now/-/now-0.7.6.tgz" + } + }, + "url": "http://registry.npmjs.org/now/" + }, + "nowpad": { + "name": "nowpad", + "description": "Realtime Text Collaboration", + "dist-tags": { + "latest": "0.12.3" + }, + "maintainers": [ + { + "name": "balupton", + "email": "b@lupton.cc" + } + ], + "time": { + "modified": "2011-07-28T05:19:05.711Z", + "created": "2011-04-29T00:26:24.664Z", + "0.7.0": "2011-04-29T00:26:25.801Z", + "0.8.0": "2011-04-29T01:44:24.061Z", + "0.8.1": "2011-04-29T04:54:07.685Z", + "0.8.2": "2011-04-29T05:44:10.682Z", + "0.8.3": "2011-04-29T05:53:21.777Z", + "0.8.4": "2011-04-29T06:25:11.325Z", + "0.8.5": "2011-04-29T06:46:29.753Z", + "0.8.6": "2011-04-29T06:54:26.623Z", + "0.8.7": "2011-04-29T07:03:40.091Z", + "0.8.8": "2011-04-29T07:10:18.422Z", + "0.8.9": "2011-04-29T07:12:09.608Z", + "0.8.10": "2011-04-29T07:18:18.577Z", + "0.8.11": "2011-04-29T09:49:04.535Z", + "0.8.12": "2011-05-01T01:36:33.096Z", + "0.9.0": "2011-05-15T05:00:19.543Z", + "0.9.1": "2011-05-16T03:35:40.493Z", + "0.10.0": "2011-05-18T05:59:02.085Z", + "0.10.1": "2011-05-18T12:01:13.018Z", + "0.10.2": "2011-05-19T01:29:15.416Z", + "0.10.3": "2011-05-20T02:00:37.852Z", + "0.11.0": "2011-05-20T04:58:26.934Z", + "0.12.0": "2011-07-28T02:18:00.972Z", + "0.12.1": "2011-07-28T05:06:27.940Z", + "0.12.2": "2011-07-28T05:16:41.972Z", + "0.12.3": "2011-07-28T05:19:05.711Z" + }, + "author": { + "name": "Benjamin Lupton", + "email": "b@lupton.cc", + "url": "http://balupton.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/balupton/nowpad.git" + }, + "versions": { + "0.7.0": "http://registry.npmjs.org/nowpad/0.7.0", + "0.8.0": "http://registry.npmjs.org/nowpad/0.8.0", + "0.8.1": "http://registry.npmjs.org/nowpad/0.8.1", + "0.8.2": "http://registry.npmjs.org/nowpad/0.8.2", + "0.8.3": "http://registry.npmjs.org/nowpad/0.8.3", + "0.8.4": "http://registry.npmjs.org/nowpad/0.8.4", + "0.8.5": "http://registry.npmjs.org/nowpad/0.8.5", + "0.8.6": "http://registry.npmjs.org/nowpad/0.8.6", + "0.8.7": "http://registry.npmjs.org/nowpad/0.8.7", + "0.8.8": "http://registry.npmjs.org/nowpad/0.8.8", + "0.8.9": "http://registry.npmjs.org/nowpad/0.8.9", + "0.8.10": "http://registry.npmjs.org/nowpad/0.8.10", + "0.8.11": "http://registry.npmjs.org/nowpad/0.8.11", + "0.8.12": "http://registry.npmjs.org/nowpad/0.8.12", + "0.9.0": "http://registry.npmjs.org/nowpad/0.9.0", + "0.9.1": "http://registry.npmjs.org/nowpad/0.9.1", + "0.10.0": "http://registry.npmjs.org/nowpad/0.10.0", + "0.10.1": "http://registry.npmjs.org/nowpad/0.10.1", + "0.10.2": "http://registry.npmjs.org/nowpad/0.10.2", + "0.10.3": "http://registry.npmjs.org/nowpad/0.10.3", + "0.11.0": "http://registry.npmjs.org/nowpad/0.11.0", + "0.12.0": "http://registry.npmjs.org/nowpad/0.12.0", + "0.12.1": "http://registry.npmjs.org/nowpad/0.12.1", + "0.12.2": "http://registry.npmjs.org/nowpad/0.12.2", + "0.12.3": "http://registry.npmjs.org/nowpad/0.12.3" + }, + "dist": { + "0.7.0": { + "shasum": "5a831004d219ae4275a6a66892b3960a7fd1c838", + "tarball": "http://registry.npmjs.org/nowpad/-/nowpad-0.7.0.tgz" + }, + "0.8.0": { + "shasum": "febe1a894c71492c28dbe33a71419e409505a2d4", + "tarball": "http://registry.npmjs.org/nowpad/-/nowpad-0.8.0.tgz" + }, + "0.8.1": { + "shasum": "2be059713517775aade5e8715c837c8962a83aa1", + "tarball": "http://registry.npmjs.org/nowpad/-/nowpad-0.8.1.tgz" + }, + "0.8.2": { + "shasum": "4e2914b4c1aeff4b01cdbd17529eb308860349bb", + "tarball": "http://registry.npmjs.org/nowpad/-/nowpad-0.8.2.tgz" + }, + "0.8.3": { + "shasum": "13e2822850f57f61efd18b1e579bba8f3e0398de", + "tarball": "http://registry.npmjs.org/nowpad/-/nowpad-0.8.3.tgz" + }, + "0.8.4": { + "shasum": "1dac70a8463f9bb3384052a0c6573b518c67bd4c", + "tarball": "http://registry.npmjs.org/nowpad/-/nowpad-0.8.4.tgz" + }, + "0.8.5": { + "shasum": "2d19a2aeb309f18fe525381b0534a565b99041d7", + "tarball": "http://registry.npmjs.org/nowpad/-/nowpad-0.8.5.tgz" + }, + "0.8.6": { + "shasum": "2c72aa63bdd615d9e339fd7f13aa95773830fb29", + "tarball": "http://registry.npmjs.org/nowpad/-/nowpad-0.8.6.tgz" + }, + "0.8.7": { + "shasum": "ab6a38aae2c5890352e499a787194bb3b26c6151", + "tarball": "http://registry.npmjs.org/nowpad/-/nowpad-0.8.7.tgz" + }, + "0.8.8": { + "shasum": "29d27e0b886e80701c5558ec0f3e709d2843462a", + "tarball": "http://registry.npmjs.org/nowpad/-/nowpad-0.8.8.tgz" + }, + "0.8.9": { + "shasum": "234b8028d582335334d0555cd60b1ccf2975c1b5", + "tarball": "http://registry.npmjs.org/nowpad/-/nowpad-0.8.9.tgz" + }, + "0.8.10": { + "shasum": "f3f0980e94e45634e4631c884102ee007a73dbba", + "tarball": "http://registry.npmjs.org/nowpad/-/nowpad-0.8.10.tgz" + }, + "0.8.11": { + "shasum": "500b43b380e30c79a21dba623425382ca96443ac", + "tarball": "http://registry.npmjs.org/nowpad/-/nowpad-0.8.11.tgz" + }, + "0.8.12": { + "shasum": "1416719f053a264ed41e1ba32b45f65ea96f250e", + "tarball": "http://registry.npmjs.org/nowpad/-/nowpad-0.8.12.tgz" + }, + "0.9.0": { + "shasum": "ec76caf77c5e512772d7ab1878710500bce9a379", + "tarball": "http://registry.npmjs.org/nowpad/-/nowpad-0.9.0.tgz" + }, + "0.9.1": { + "shasum": "d93a9f7c87865391b984d1c855394411f3c9a666", + "tarball": "http://registry.npmjs.org/nowpad/-/nowpad-0.9.1.tgz" + }, + "0.10.0": { + "shasum": "de3daefe52c24ceba7786c6221814011716cf431", + "tarball": "http://registry.npmjs.org/nowpad/-/nowpad-0.10.0.tgz" + }, + "0.10.1": { + "shasum": "3c79d90c7d76d2f1ecc0234c5433e4ea61ebae20", + "tarball": "http://registry.npmjs.org/nowpad/-/nowpad-0.10.1.tgz" + }, + "0.10.2": { + "shasum": "3e81a7bd02a43e5daf4ec81040c5ed286736601b", + "tarball": "http://registry.npmjs.org/nowpad/-/nowpad-0.10.2.tgz" + }, + "0.10.3": { + "shasum": "fe50cf8d5aa367d970397669f33291f69ec86e70", + "tarball": "http://registry.npmjs.org/nowpad/-/nowpad-0.10.3.tgz" + }, + "0.11.0": { + "shasum": "6a5e505bb778a87d4e91788bde353c1a722feda6", + "tarball": "http://registry.npmjs.org/nowpad/-/nowpad-0.11.0.tgz" + }, + "0.12.0": { + "shasum": "cc5721e6a8f8b9455ed35955cbb52b2f64f4a91a", + "tarball": "http://registry.npmjs.org/nowpad/-/nowpad-0.12.0.tgz" + }, + "0.12.1": { + "shasum": "fdecf701ed931c46fe9bdfc9656506c8e25cf95f", + "tarball": "http://registry.npmjs.org/nowpad/-/nowpad-0.12.1.tgz" + }, + "0.12.2": { + "shasum": "10f556f5b39d83748113b03e7e09d3772b0fa242", + "tarball": "http://registry.npmjs.org/nowpad/-/nowpad-0.12.2.tgz" + }, + "0.12.3": { + "shasum": "9d46e49b0c5a116013d3eca4154b984379169e1d", + "tarball": "http://registry.npmjs.org/nowpad/-/nowpad-0.12.3.tgz" + } + }, + "keywords": [ + "javascript", + "collab", + "collaboration", + "sync", + "realtime" + ], + "url": "http://registry.npmjs.org/nowpad/" + }, + "nowww": { + "name": "nowww", + "description": "Node.JS Connect module for no-www redirection", + "dist-tags": { + "latest": "1.1.0" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-09-24T01:59:56.485Z", + "created": "2011-09-13T05:40:24.527Z", + "1.0.0": "2011-09-13T05:40:27.061Z", + "1.1.0": "2011-09-24T01:59:56.485Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com", + "url": "http://coolaj86.info" + }, + "repository": { + "type": "git", + "url": "git://github.com/coolaj86/jason.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/nowww/1.0.0", + "1.1.0": "http://registry.npmjs.org/nowww/1.1.0" + }, + "dist": { + "1.0.0": { + "shasum": "073bb8778e08a39168246375d2f7553fb514d558", + "tarball": "http://registry.npmjs.org/nowww/-/nowww-1.0.0.tgz" + }, + "1.1.0": { + "shasum": "cbd3d90cb9addc8f2a512967a8ad48066248b3dd", + "tarball": "http://registry.npmjs.org/nowww/-/nowww-1.1.0.tgz" + } + }, + "keywords": [ + "nowww", + "no-www", + "connect" + ], + "url": "http://registry.npmjs.org/nowww/" + }, + "noxmox": { + "name": "noxmox", + "description": "Amazon S3 client and mock-up", + "dist-tags": { + "latest": "0.1.7" + }, + "maintainers": [ + { + "name": "nephics", + "email": "jacob@nephics.com" + } + ], + "time": { + "modified": "2011-11-03T09:04:48.774Z", + "created": "2011-08-31T18:59:07.158Z", + "0.1.0": "2011-08-31T18:59:08.569Z", + "0.1.1": "2011-08-31T21:04:05.129Z", + "0.1.2": "2011-09-25T12:53:36.396Z", + "0.1.3": "2011-09-27T09:04:51.377Z", + "0.1.4": "2011-10-18T19:38:43.681Z", + "0.1.5": "2011-11-02T19:58:46.897Z", + "0.1.6": "2011-11-02T20:21:26.536Z", + "0.1.7": "2011-11-03T09:04:48.774Z" + }, + "author": { + "name": "nephics", + "email": "jacob@nephics.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/nephics/noxmox.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/noxmox/0.1.0", + "0.1.1": "http://registry.npmjs.org/noxmox/0.1.1", + "0.1.2": "http://registry.npmjs.org/noxmox/0.1.2", + "0.1.3": "http://registry.npmjs.org/noxmox/0.1.3", + "0.1.4": "http://registry.npmjs.org/noxmox/0.1.4", + "0.1.5": "http://registry.npmjs.org/noxmox/0.1.5", + "0.1.6": "http://registry.npmjs.org/noxmox/0.1.6", + "0.1.7": "http://registry.npmjs.org/noxmox/0.1.7" + }, + "dist": { + "0.1.0": { + "shasum": "6aaede41c4a80a86577a33f29d2579200bb45d14", + "tarball": "http://registry.npmjs.org/noxmox/-/noxmox-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "0e6de831b651efa57eaa07609bdfcb1b358fb23a", + "tarball": "http://registry.npmjs.org/noxmox/-/noxmox-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "9584af1869b75cad3f2794d58441276cf5a02b6a", + "tarball": "http://registry.npmjs.org/noxmox/-/noxmox-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "d75da71885b7cbd29e60e3bcf258f9360e8ea9dc", + "tarball": "http://registry.npmjs.org/noxmox/-/noxmox-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "e6fb702763bcc93ee158e49fc45f23a017100b30", + "tarball": "http://registry.npmjs.org/noxmox/-/noxmox-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "732d30b3b4eb0440e4a146d9e07e576a6619579b", + "tarball": "http://registry.npmjs.org/noxmox/-/noxmox-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "3d219d0bba8b45bc4aff230e7c911c742ff7aa78", + "tarball": "http://registry.npmjs.org/noxmox/-/noxmox-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "fba067030dd2c2cdd8d51720980421a4ee42547a", + "tarball": "http://registry.npmjs.org/noxmox/-/noxmox-0.1.7.tgz" + } + }, + "keywords": [ + "aws", + "amazon", + "s3", + "mock-up" + ], + "url": "http://registry.npmjs.org/noxmox/" + }, + "nozzle": { + "name": "nozzle", + "description": "Simple site generator", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "adrianolaru", + "email": "agolaru@gmail.com" + } + ], + "time": { + "modified": "2011-05-29T16:30:40.251Z", + "created": "2011-05-21T16:57:03.212Z", + "0.0.1": "2011-05-21T16:57:24.114Z", + "0.0.2": "2011-05-21T19:57:46.273Z", + "0.0.3": "2011-05-22T15:54:15.200Z", + "0.0.4": "2011-05-22T18:18:39.495Z", + "0.0.5": "2011-05-28T11:43:54.187Z" + }, + "author": { + "name": "Adrian Olaru", + "email": "agolaru@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/adrianolaru/nozzle.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nozzle/0.0.1", + "0.0.2": "http://registry.npmjs.org/nozzle/0.0.2", + "0.0.3": "http://registry.npmjs.org/nozzle/0.0.3", + "0.0.4": "http://registry.npmjs.org/nozzle/0.0.4", + "0.0.5": "http://registry.npmjs.org/nozzle/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "f9dbd9ec98b342b0e8bcd21e9370656a21a9351f", + "tarball": "http://registry.npmjs.org/nozzle/-/nozzle-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "1fb89e35111933f0993fe3167cce2209bb2491ea", + "tarball": "http://registry.npmjs.org/nozzle/-/nozzle-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "f53dae9cac68f435fa543d8a6882f3dd6a1cb15e", + "tarball": "http://registry.npmjs.org/nozzle/-/nozzle-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "4e9ad71d3325b6f99433948b20d06d312991c391", + "tarball": "http://registry.npmjs.org/nozzle/-/nozzle-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "0da66f6f5f51489f8cea042325899704fead1671", + "tarball": "http://registry.npmjs.org/nozzle/-/nozzle-0.0.5.tgz" + } + }, + "keywords": [ + "site", + "generator", + "blog", + "jekyll" + ], + "url": "http://registry.npmjs.org/nozzle/" + }, + "npkg": { + "name": "npkg", + "description": "Creates cross-platform installers for NodeJS applications", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "contra", + "email": "contra@australia.edu" + } + ], + "time": { + "modified": "2011-10-09T21:02:31.943Z", + "created": "2011-10-04T03:42:35.136Z", + "0.0.5": "2011-10-04T03:42:36.480Z", + "0.0.6": "2011-10-04T19:53:42.456Z" + }, + "author": { + "name": "Fractal", + "email": "contact@wearefractal.com", + "url": "http://wearefractal.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/wearefractal/npkg.git" + }, + "versions": { + "0.0.5": "http://registry.npmjs.org/npkg/0.0.5", + "0.0.6": "http://registry.npmjs.org/npkg/0.0.6" + }, + "dist": { + "0.0.5": { + "shasum": "4f9795ccca52474e6e4deae6e51b8400079ed0a4", + "tarball": "http://registry.npmjs.org/npkg/-/npkg-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "ceeddad5b7e78a54bb9264274cc3ba26d815987b", + "tarball": "http://registry.npmjs.org/npkg/-/npkg-0.0.6.tgz" + } + }, + "url": "http://registry.npmjs.org/npkg/" + }, + "npm": { + "name": "npm", + "description": "A package manager for node", + "dist-tags": { + "latest": "1.0.106", + "0.2": "0.2.19", + "0.3": "0.3.18", + "alpha": "1.1.0-alpha-6" + }, + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "time": { + "modified": "2011-12-01T22:59:11.208Z", + "created": "2011-11-20T07:57:55.514Z", + "1.0.30": "2011-11-20T07:57:57.014Z", + "1.0.106": "2011-11-20T08:00:29.028Z", + "0.2.19": "2011-11-20T08:02:12.429Z", + "0.3.18": "2011-11-20T08:02:35.818Z", + "1.0.105": "2011-11-20T08:06:02.517Z", + "1.0.103": "2011-11-20T08:07:33.818Z", + "1.1.0-alpha": "2011-11-20T08:39:12.475Z", + "1.1.0-alpha-2": "2011-11-23T00:47:53.138Z", + "1.1.0-alpha-3": "2011-11-30T21:55:25.858Z", + "1.1.0-alpha-4": "2011-12-01T18:19:35.967Z", + "1.1.0-alpha-5": "2011-12-01T18:38:01.006Z", + "1.1.0-alpha-6": "2011-12-01T22:59:11.208Z" + }, + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/isaacs/npm.git" + }, + "users": { + "naholyr": true + }, + "versions": { + "1.0.30": "http://registry.npmjs.org/npm/1.0.30", + "1.0.106": "http://registry.npmjs.org/npm/1.0.106", + "0.2.19": "http://registry.npmjs.org/npm/0.2.19", + "0.3.18": "http://registry.npmjs.org/npm/0.3.18", + "1.0.105": "http://registry.npmjs.org/npm/1.0.105", + "1.0.103": "http://registry.npmjs.org/npm/1.0.103", + "1.1.0-alpha": "http://registry.npmjs.org/npm/1.1.0-alpha", + "1.1.0-alpha-2": "http://registry.npmjs.org/npm/1.1.0-alpha-2", + "1.1.0-alpha-3": "http://registry.npmjs.org/npm/1.1.0-alpha-3", + "1.1.0-alpha-4": "http://registry.npmjs.org/npm/1.1.0-alpha-4", + "1.1.0-alpha-5": "http://registry.npmjs.org/npm/1.1.0-alpha-5", + "1.1.0-alpha-6": "http://registry.npmjs.org/npm/1.1.0-alpha-6" + }, + "dist": { + "1.0.30": { + "shasum": "3cec9088cf01887678018324fea300a3c4f2727d", + "tarball": "http://registry.npmjs.org/npm/-/npm-1.0.30.tgz" + }, + "1.0.106": { + "shasum": "ef1830b68a1537a606dae3bdee71fd1153d7e71e", + "tarball": "http://registry.npmjs.org/npm/-/npm-1.0.106.tgz" + }, + "0.2.19": { + "shasum": "59e72e609e27155c809f052cafd4a556c58ea70b", + "tarball": "http://registry.npmjs.org/npm/-/npm-0.2.19.tgz" + }, + "0.3.18": { + "shasum": "6791d21419284e05faf2225ac66e1e39c43e5cd7", + "tarball": "http://registry.npmjs.org/npm/-/npm-0.3.18.tgz" + }, + "1.0.105": { + "shasum": "bc9b4ea3d154462fc2b6d616a06aec3013f7bc90", + "tarball": "http://registry.npmjs.org/npm/-/npm-1.0.105.tgz" + }, + "1.0.103": { + "shasum": "590d7d54ae649445bb64c9ba2b8259f645fd893f", + "tarball": "http://registry.npmjs.org/npm/-/npm-1.0.103.tgz" + }, + "1.1.0-alpha": { + "shasum": "825a6a94769238a266944f3f4a423fbab02291e8", + "tarball": "http://registry.npmjs.org/npm/-/npm-1.1.0-alpha.tgz" + }, + "1.1.0-alpha-2": { + "shasum": "dd311dd6c17eca54ac1a7b5430ff0069b1b25ffb", + "tarball": "http://registry.npmjs.org/npm/-/npm-1.1.0-alpha-2.tgz" + }, + "1.1.0-alpha-3": { + "shasum": "85413b8d311537ccfc5299b5d4161d6f05789917", + "tarball": "http://registry.npmjs.org/npm/-/npm-1.1.0-alpha-3.tgz" + }, + "1.1.0-alpha-4": { + "shasum": "a9a5e619b912bc1e22038a8ade02e834caa3e7ea", + "tarball": "http://registry.npmjs.org/npm/-/npm-1.1.0-alpha-4.tgz" + }, + "1.1.0-alpha-5": { + "shasum": "c30147e53d50539cec537e82b5fa3944c215e2f2", + "tarball": "http://registry.npmjs.org/npm/-/npm-1.1.0-alpha-5.tgz" + }, + "1.1.0-alpha-6": { + "shasum": "30c3fe44c36ec3238aeae9d236b40b600e08cf04", + "tarball": "http://registry.npmjs.org/npm/-/npm-1.1.0-alpha-6.tgz" + } + }, + "keywords": [ + "package manager", + "modules", + "install", + "package.json" + ], + "url": "http://registry.npmjs.org/npm/" + }, + "npm-deploy": { + "name": "npm-deploy", + "description": "Simple cli utility for installing dependenies and running deployment scripts.", + "dist-tags": { + "latest": "0.1.9" + }, + "maintainers": [ + { + "name": "Tim-Smart", + "email": "tim@fostle.com" + } + ], + "time": { + "modified": "2011-04-05T04:20:06.874Z", + "created": "2011-01-26T21:47:43.149Z", + "0.1.0": "2011-01-26T21:47:44.121Z", + "0.1.1": "2011-02-22T21:26:27.163Z", + "0.1.2": "2011-02-28T17:25:14.386Z", + "0.1.3": "2011-02-28T17:54:12.747Z", + "0.1.5": "2011-02-28T17:58:25.311Z", + "0.1.6": "2011-03-10T20:04:52.260Z", + "0.1.7": "2011-03-28T03:08:15.400Z", + "0.1.8": "2011-03-29T01:33:58.769Z", + "0.1.9": "2011-04-05T04:20:06.874Z" + }, + "author": { + "name": "Tim Smart" + }, + "repository": { + "type": "git", + "url": "git://github.com/Tim-Smart/npm-deploy.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/npm-deploy/0.1.0", + "0.1.1": "http://registry.npmjs.org/npm-deploy/0.1.1", + "0.1.2": "http://registry.npmjs.org/npm-deploy/0.1.2", + "0.1.3": "http://registry.npmjs.org/npm-deploy/0.1.3", + "0.1.5": "http://registry.npmjs.org/npm-deploy/0.1.5", + "0.1.6": "http://registry.npmjs.org/npm-deploy/0.1.6", + "0.1.7": "http://registry.npmjs.org/npm-deploy/0.1.7", + "0.1.8": "http://registry.npmjs.org/npm-deploy/0.1.8", + "0.1.9": "http://registry.npmjs.org/npm-deploy/0.1.9" + }, + "dist": { + "0.1.0": { + "shasum": "1efdca5816ee8e98a303f66d1be2b33c30c2d93b", + "tarball": "http://registry.npmjs.org/npm-deploy/-/npm-deploy-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "5f153b6db71bd51b9aa541f11a2b3de458bfac79", + "tarball": "http://registry.npmjs.org/npm-deploy/-/npm-deploy-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "4c8ed349e54935fc39cf9492b095f851988ec46c", + "tarball": "http://registry.npmjs.org/npm-deploy/-/npm-deploy-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "08638f28aa45ace0a0ec39cc13959128fef72d29", + "tarball": "http://registry.npmjs.org/npm-deploy/-/npm-deploy-0.1.3.tgz" + }, + "0.1.5": { + "shasum": "bcffb243092f71a8c4e90a4651e658dcde4f828c", + "tarball": "http://registry.npmjs.org/npm-deploy/-/npm-deploy-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "1e3bdb229158635e47e919a3f059f342c60241dd", + "tarball": "http://registry.npmjs.org/npm-deploy/-/npm-deploy-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "2f3373e27b1500ddc4821952cae2be1246070179", + "tarball": "http://registry.npmjs.org/npm-deploy/-/npm-deploy-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "c3d22ef5423f1a7ffa3ec786f664d070749bc4cc", + "tarball": "http://registry.npmjs.org/npm-deploy/-/npm-deploy-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "b9a29319cc589a864560c3cd1f121f8cf8babac8", + "tarball": "http://registry.npmjs.org/npm-deploy/-/npm-deploy-0.1.9.tgz" + } + }, + "url": "http://registry.npmjs.org/npm-deploy/" + }, + "npm-dev-install": { + "name": "npm-dev-install", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "clarkf", + "email": "clark.fischer@gmail.com" + } + ], + "time": { + "modified": "2011-08-17T19:27:37.105Z", + "created": "2011-08-17T19:27:32.376Z", + "0.0.1": "2011-08-17T19:27:37.105Z" + }, + "author": { + "name": "Clark Fischer", + "url": "http://github.com/clarkf" + }, + "repository": { + "type": "git", + "url": "git://github.com/clarkf/npm-dev-install.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/npm-dev-install/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "e2d63523b6398f95f69c38cd6086cc3d671e28a9", + "tarball": "http://registry.npmjs.org/npm-dev-install/-/npm-dev-install-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/npm-dev-install/" + }, + "npm-docsite": { + "name": "npm-docsite", + "description": "A website that serves the docs of npm packages.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "time": { + "modified": "2011-01-31T22:49:02.189Z", + "created": "2011-01-31T22:49:01.676Z", + "0.0.1": "2011-01-31T22:49:02.189Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/npm-docsite/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "74971815d35bb054821273a58f0f56e469c11973", + "tarball": "http://registry.npmjs.org/npm-docsite/-/npm-docsite-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/npm-docsite/" + }, + "npm-github-service": { + "name": "npm-github-service", + "description": "Post Recieve Hook", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "npm-github-service", + "email": "bradley.meck@gmail.com" + } + ], + "versions": { + "0.0.1": "http://registry.npmjs.org/npm-github-service/0.0.1", + "0.0.2": "http://registry.npmjs.org/npm-github-service/0.0.2" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/npm-github-service/-/npm-github-service-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/npm-github-service/-/npm-github-service-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/npm-github-service/" + }, + "npm-intro-slides": { + "name": "npm-intro-slides", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "versions": { + "0.0.1": "http://registry.npmjs.org/npm-intro-slides/0.0.1", + "0.0.2": "http://registry.npmjs.org/npm-intro-slides/0.0.2", + "0.0.3": "http://registry.npmjs.org/npm-intro-slides/0.0.3" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/npm-intro-slides/-/npm-intro-slides-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/npm-intro-slides/-/npm-intro-slides-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/npm-intro-slides/-/npm-intro-slides-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/npm-intro-slides/" + }, + "npm-monitor": { + "name": "npm-monitor", + "description": "Listens for changes to packages on npm. Includes test mock.", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "aaronblohowiak", + "email": "aaron.blohowiak@gmail.com" + } + ], + "time": { + "modified": "2011-05-16T00:03:41.726Z", + "created": "2011-05-15T22:09:33.394Z", + "0.0.1": "2011-05-15T22:09:34.016Z", + "0.0.2": "2011-05-15T22:13:00.684Z", + "0.0.3": "2011-05-16T00:03:41.726Z" + }, + "author": { + "name": "Aaron Blohowiak", + "email": "aaron.blohowiak@gmail.com", + "url": "http://github.com/aaronblohowiak" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/npm-monitor/0.0.1", + "0.0.2": "http://registry.npmjs.org/npm-monitor/0.0.2", + "0.0.3": "http://registry.npmjs.org/npm-monitor/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "87ee258924ef00f3fa92bbc201034ce74b4ff18f", + "tarball": "http://registry.npmjs.org/npm-monitor/-/npm-monitor-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "7dc114fbff3c7506f97434c505c468c8edc6fd31", + "tarball": "http://registry.npmjs.org/npm-monitor/-/npm-monitor-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "837526575f8680f18d4a77ee46997484ae7b2969", + "tarball": "http://registry.npmjs.org/npm-monitor/-/npm-monitor-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/npm-monitor/" + }, + "npm-remapper": { + "name": "npm-remapper", + "description": "remap npm package version dynamicially", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-02-06T09:44:12.021Z", + "created": "2011-02-06T09:44:11.218Z", + "0.0.0": "2011-02-06T09:44:12.021Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com" + }, + "repository": "git://github.com/dominictarr/npm-remapper.git", + "versions": { + "0.0.0": "http://registry.npmjs.org/npm-remapper/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "06ded0ff012b446932d31bc597c9c923fec25e4f", + "tarball": "http://registry.npmjs.org/npm-remapper/-/npm-remapper-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/npm-remapper/" + }, + "npm-tweets": { + "name": "npm-tweets", + "description": "Publishes tweets when libraries are updated on npm.", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "bcoe", + "email": "bcoe@uoguelph.ca" + } + ], + "time": { + "modified": "2011-09-24T20:11:51.805Z", + "created": "2011-09-14T07:14:23.534Z", + "0.0.1": "2011-09-14T07:14:23.942Z", + "0.0.2": "2011-09-14T07:24:43.331Z", + "0.0.3": "2011-09-14T07:30:54.427Z", + "0.0.4": "2011-09-17T06:23:13.750Z", + "0.0.5": "2011-09-24T20:11:51.805Z" + }, + "author": { + "name": "Ben Coe", + "email": "bencoe@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/bcoe/npm-tweets.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/npm-tweets/0.0.1", + "0.0.2": "http://registry.npmjs.org/npm-tweets/0.0.2", + "0.0.3": "http://registry.npmjs.org/npm-tweets/0.0.3", + "0.0.4": "http://registry.npmjs.org/npm-tweets/0.0.4", + "0.0.5": "http://registry.npmjs.org/npm-tweets/0.0.5" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/npm-tweets/-/npm-tweets-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/npm-tweets/-/npm-tweets-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/npm-tweets/-/npm-tweets-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://registry.npmjs.org/npm-tweets/-/npm-tweets-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://registry.npmjs.org/npm-tweets/-/npm-tweets-0.0.5.tgz" + } + }, + "keywords": [ + "npm", + "tweets" + ], + "url": "http://registry.npmjs.org/npm-tweets/" + }, + "npm-wrapper": { + "name": "npm-wrapper", + "description": "A dumb class wrapper around npm to make it easy to manage stuff.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "DanBUK", + "email": "dan@f-box.org" + } + ], + "time": { + "modified": "2011-01-24T12:16:07.716Z", + "created": "2011-01-24T12:16:07.384Z", + "0.0.1": "2011-01-24T12:16:07.716Z" + }, + "author": { + "name": "Daniel Bartlett", + "email": "dan@f-box.org", + "url": "https://github.com/DanBUK" + }, + "repository": "git://github.com/DanBUK/npm-wrapper.git", + "versions": { + "0.0.1": "http://registry.npmjs.org/npm-wrapper/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "9fbc6cb9c00231679a087d40d551ca654d28b786", + "tarball": "http://registry.npmjs.org/npm-wrapper/-/npm-wrapper-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/npm-wrapper/" + }, + "npm2arch": { + "name": "npm2arch", + "description": "Convert NPM package to a PKGBUILD for ArchLinux", + "dist-tags": { + "latest": "0.1.9" + }, + "maintainers": [ + { + "name": "filirom1", + "email": "filirom1@gmail.com" + } + ], + "time": { + "modified": "2011-11-26T09:04:26.121Z", + "created": "2011-10-28T22:00:55.240Z", + "0.1.0": "2011-10-28T22:00:56.864Z", + "0.1.1": "2011-10-28T22:07:52.821Z", + "0.1.2": "2011-11-09T21:18:55.508Z", + "0.1.3": "2011-11-17T22:52:01.535Z", + "0.1.4": "2011-11-17T23:19:37.456Z", + "0.1.5": "2011-11-17T23:43:18.979Z", + "0.1.6": "2011-11-17T23:56:19.560Z", + "0.1.7": "2011-11-18T00:03:45.313Z", + "0.1.8": "2011-11-26T08:57:42.893Z", + "0.1.9": "2011-11-26T09:04:26.121Z" + }, + "author": { + "name": "Filirom1", + "email": "filirom1@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Filirom1/npm2arch.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/npm2arch/0.1.0", + "0.1.1": "http://registry.npmjs.org/npm2arch/0.1.1", + "0.1.2": "http://registry.npmjs.org/npm2arch/0.1.2", + "0.1.3": "http://registry.npmjs.org/npm2arch/0.1.3", + "0.1.4": "http://registry.npmjs.org/npm2arch/0.1.4", + "0.1.5": "http://registry.npmjs.org/npm2arch/0.1.5", + "0.1.6": "http://registry.npmjs.org/npm2arch/0.1.6", + "0.1.7": "http://registry.npmjs.org/npm2arch/0.1.7", + "0.1.8": "http://registry.npmjs.org/npm2arch/0.1.8", + "0.1.9": "http://registry.npmjs.org/npm2arch/0.1.9" + }, + "dist": { + "0.1.0": { + "shasum": "6a0ac2c37764b02b51fd5bf876cbfe9e7a1ee04b", + "tarball": "http://registry.npmjs.org/npm2arch/-/npm2arch-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "7dc288b1a1dc5f3fb1d09d9aa8063e05a4f06c09", + "tarball": "http://registry.npmjs.org/npm2arch/-/npm2arch-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "605b72d16e6397d80873a8067ba63da536692612", + "tarball": "http://registry.npmjs.org/npm2arch/-/npm2arch-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "0039ecfee8e799029706e017c91ae6367ac0b685", + "tarball": "http://registry.npmjs.org/npm2arch/-/npm2arch-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "e2e9160a4a628f39a44970b0f0652c99f7d7bf9a", + "tarball": "http://registry.npmjs.org/npm2arch/-/npm2arch-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "9199a712af981fc61975734fe367afb8378e48eb", + "tarball": "http://registry.npmjs.org/npm2arch/-/npm2arch-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "43363a51eabdd4693e7004e154c3d6b816c50d36", + "tarball": "http://registry.npmjs.org/npm2arch/-/npm2arch-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "745c4a0be7467b2d55bdfee389e4f2827c79de27", + "tarball": "http://registry.npmjs.org/npm2arch/-/npm2arch-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "b0b7ac8dea434e386c6cb52f9c784382b370729a", + "tarball": "http://registry.npmjs.org/npm2arch/-/npm2arch-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "e7000f0014e411679540a69000a1a60c9bad7dd9", + "tarball": "http://registry.npmjs.org/npm2arch/-/npm2arch-0.1.9.tgz" + } + }, + "url": "http://registry.npmjs.org/npm2arch/" + }, + "npm2aur": { + "name": "npm2aur", + "description": "Sync AUR with NPM packages", + "dist-tags": { + "latest": "0.1.2" + }, + "readme": "Npm2AUR\n=======\n\nSynchronize a list of npm packages with ArchLinux AUR.\n\nYou can setup your user, password and packages by creating a config file\nin `~/.npm2aur` or in `/etc/npm2aur`\n\nAn example of custom npm2aur\n\n module.exports = {\n user: 'AUR-USERNAME',\n password: 'AUR-PASSWORD'\n packages: [\n # Insert the packages to sync here\n #\n # You can specify the category like this.\n # {'npm2arch': 'system'},\n # {'express': 'devel'}\n #\n # Or if you want the default category (system) use\n # 'npm2arch'\n {'npm2arch':'system'},\n {'aur':'system'},\n {'npm2aur':'system'},\n ...\n ]\n }\n\nOr you can do it with comand line options :\n\n npm2aur --dry-run -u USER -p PASSWORD --pkg npm2arch:system,coffee-script\n\n\nCli usage:\n\n Usage: npm2aur [--packages name[:category],name2,name3]\n\n Options:\n -u, --user [default: \"\"]\n -p, --password [default: \"\"]\n --pkg, --packages [default: \"\"]\n -n, --dry-run [default: \"\"] //Do not publish for real\n\nDefault category is `system`.\n\nOther categories are :\n\n * daemons\n * devel\n * editors\n * emulators\n * games\n * gnome\n * i18n\n * kde\n * lib\n * modules\n * multimedia\n * network\n * office\n * science\n * system\n * x11\n * xfce\n * kernels\n\n\nLicense\n-------\n\nThe MIT License (MIT)\nCopyright (c) 2011 Filirom1\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n", + "maintainers": [ + { + "name": "filirom1", + "email": "filirom1@gmail.com" + } + ], + "time": { + "modified": "2011-11-26T09:08:57.243Z", + "created": "2011-11-17T22:26:42.820Z", + "0.1.0": "2011-11-17T22:26:44.672Z", + "0.1.1": "2011-11-18T00:15:19.217Z", + "0.1.2": "2011-11-26T09:08:57.243Z" + }, + "author": { + "name": "Filirom1", + "email": "filirom1@gmail.com" + }, + "repository": { + "type": "git", + "url": "git@github.com/Filirom1/npm2aur.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/npm2aur/0.1.0", + "0.1.1": "http://registry.npmjs.org/npm2aur/0.1.1", + "0.1.2": "http://registry.npmjs.org/npm2aur/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "497318e73f4bc4809e7d8cc157d457c659ef3506", + "tarball": "http://registry.npmjs.org/npm2aur/-/npm2aur-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "2d6aae24be8da73c61e789ab991bca939595c802", + "tarball": "http://registry.npmjs.org/npm2aur/-/npm2aur-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "c2908f6e10ef10187f3b996206eb01469dcd69a1", + "tarball": "http://registry.npmjs.org/npm2aur/-/npm2aur-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/npm2aur/" + }, + "npm2debian": { + "name": "npm2debian", + "description": "Utility to convert npm packages to Debian packages", + "dist-tags": { + "latest": "0.2.5" + }, + "maintainers": [ + { + "name": "arikon", + "email": "peimei@ya.ru" + } + ], + "time": { + "modified": "2011-11-10T19:21:11.528Z", + "created": "2011-03-01T15:52:19.963Z", + "0.1.0": "2011-03-01T15:52:20.613Z", + "0.2.0": "2011-11-02T12:46:34.973Z", + "0.2.1": "2011-11-02T12:58:57.383Z", + "0.2.2": "2011-11-02T13:07:05.799Z", + "0.2.3": "2011-11-02T15:30:38.175Z", + "0.2.4": "2011-11-02T15:51:49.007Z", + "0.2.5": "2011-11-10T19:21:11.528Z" + }, + "author": { + "name": "Sergey Belov", + "email": "peimei@ya.ru", + "url": "http://github.com/arikon" + }, + "users": { + "arikon": true + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/npm2debian/0.1.0", + "0.2.0": "http://registry.npmjs.org/npm2debian/0.2.0", + "0.2.1": "http://registry.npmjs.org/npm2debian/0.2.1", + "0.2.2": "http://registry.npmjs.org/npm2debian/0.2.2", + "0.2.3": "http://registry.npmjs.org/npm2debian/0.2.3", + "0.2.4": "http://registry.npmjs.org/npm2debian/0.2.4", + "0.2.5": "http://registry.npmjs.org/npm2debian/0.2.5" + }, + "dist": { + "0.1.0": { + "shasum": "cdfb979f55240df8d454e09284c89e6a983b54c4", + "tarball": "http://registry.npmjs.org/npm2debian/-/npm2debian-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "6f8d7805cdf087584714f084acb8dea89bf1a43a", + "tarball": "http://registry.npmjs.org/npm2debian/-/npm2debian-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "b0ad9ef3eaf1b68da20eac2854641a3918f679f2", + "tarball": "http://registry.npmjs.org/npm2debian/-/npm2debian-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "fddbaed87952956e2ec8688773d1da1a6415ef01", + "tarball": "http://registry.npmjs.org/npm2debian/-/npm2debian-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "8e18c4c428b34282391a399608fc8a4ab3202dba", + "tarball": "http://registry.npmjs.org/npm2debian/-/npm2debian-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "e4f0e38920dd814532a8a270ae0a164562dc826c", + "tarball": "http://registry.npmjs.org/npm2debian/-/npm2debian-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "8cfea1cf830b8a2fbf2c40a01579d7e7d77cc70e", + "tarball": "http://registry.npmjs.org/npm2debian/-/npm2debian-0.2.5.tgz" + } + }, + "url": "http://registry.npmjs.org/npm2debian/" + }, + "npmcount": { + "name": "npmcount", + "description": "Silly program that counts number of npm packages from one or more users", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + } + ], + "time": { + "modified": "2011-12-09T08:13:13.010Z", + "created": "2011-06-26T22:06:40.824Z", + "0.0.1": "2011-06-26T22:06:41.054Z", + "0.0.2": "2011-09-12T17:41:47.907Z", + "0.1.0": "2011-12-09T08:13:13.010Z" + }, + "author": { + "name": "Charlie Robbins", + "email": "info@nodejitsu.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/indexzero/npmcount.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/npmcount/0.0.1", + "0.0.2": "http://registry.npmjs.org/npmcount/0.0.2", + "0.1.0": "http://registry.npmjs.org/npmcount/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "354b6a1502a8ff839e2d46d4e1cc352e81222440", + "tarball": "http://registry.npmjs.org/npmcount/-/npmcount-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "470478a38f0b588ca269ab7c10056079029fb016", + "tarball": "http://registry.npmjs.org/npmcount/-/npmcount-0.0.2.tgz" + }, + "0.1.0": { + "shasum": "8d4d4431dc61f5d45ebe7aff244b97ae9c59c1d4", + "tarball": "http://registry.npmjs.org/npmcount/-/npmcount-0.1.0.tgz" + } + }, + "keywords": [ + "npm", + "search", + "statistics", + "fun" + ], + "url": "http://registry.npmjs.org/npmcount/" + }, + "npmdep": { + "name": "npmdep", + "description": "Build a dependency graph for npm packages", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-02-21T10:10:48.713Z", + "created": "2011-01-28T12:36:01.767Z", + "0.0.1": "2011-01-28T12:36:02.107Z", + "0.0.2": "2011-01-30T03:16:19.770Z", + "0.0.3": "2011-02-18T12:30:43.705Z", + "0.0.4": "2011-02-21T10:10:48.713Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/npmdep.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/npmdep/0.0.1", + "0.0.2": "http://registry.npmjs.org/npmdep/0.0.2", + "0.0.3": "http://registry.npmjs.org/npmdep/0.0.3", + "0.0.4": "http://registry.npmjs.org/npmdep/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "ee65aab07807c2a691190d9fcb7f5709c2d29fa6", + "tarball": "http://registry.npmjs.org/npmdep/-/npmdep-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "916be84af85cec168fef572632e1fd27eeb95823", + "tarball": "http://registry.npmjs.org/npmdep/-/npmdep-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "79a2c64fe2a115474ab4421232d9a61d38ac4b9f", + "tarball": "http://registry.npmjs.org/npmdep/-/npmdep-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "d36ea586770e05858b0417959eed0ea2d0c7a55d", + "tarball": "http://registry.npmjs.org/npmdep/-/npmdep-0.0.4.tgz" + } + }, + "keywords": [ + "npm", + "dependencies", + "graph", + "contributors" + ], + "url": "http://registry.npmjs.org/npmdep/" + }, + "npmtop": { + "name": "npmtop", + "description": "Silly program that ranks npm contributors by number of packages", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-10-03T12:11:16.869Z", + "created": "2011-01-19T14:04:32.982Z", + "0.0.1": "2011-01-19T14:04:33.429Z", + "0.0.2": "2011-01-20T03:36:31.886Z", + "0.0.3": "2011-01-20T16:19:46.730Z", + "0.0.4": "2011-02-02T13:00:33.587Z", + "0.0.5": "2011-02-18T12:37:59.410Z", + "0.0.6": "2011-03-30T05:55:25.356Z", + "0.0.7": "2011-04-02T23:42:12.931Z", + "0.0.8": "2011-05-04T10:39:30.468Z", + "0.1.0": "2011-08-16T12:48:14.204Z", + "0.1.1": "2011-10-03T12:11:16.869Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/npmtop.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/npmtop/0.0.1", + "0.0.2": "http://registry.npmjs.org/npmtop/0.0.2", + "0.0.3": "http://registry.npmjs.org/npmtop/0.0.3", + "0.0.4": "http://registry.npmjs.org/npmtop/0.0.4", + "0.0.5": "http://registry.npmjs.org/npmtop/0.0.5", + "0.0.6": "http://registry.npmjs.org/npmtop/0.0.6", + "0.0.7": "http://registry.npmjs.org/npmtop/0.0.7", + "0.0.8": "http://registry.npmjs.org/npmtop/0.0.8", + "0.1.0": "http://registry.npmjs.org/npmtop/0.1.0", + "0.1.1": "http://registry.npmjs.org/npmtop/0.1.1" + }, + "dist": { + "0.0.1": { + "shasum": "fff6ef98bc54aef4e805fe6e2a665a0771585fc8", + "tarball": "http://registry.npmjs.org/npmtop/-/npmtop-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "a393edc1841dc940cae1d0f9e76ea522f5c48561", + "tarball": "http://registry.npmjs.org/npmtop/-/npmtop-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "a86bda1dde714729b0a4288050ab2fec48ac6da1", + "tarball": "http://registry.npmjs.org/npmtop/-/npmtop-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "c34c3bc771c96d8a35eb30587b71c18184762f5a", + "tarball": "http://registry.npmjs.org/npmtop/-/npmtop-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "513a41dbca92cb0a47fe7432d1f16619d49f55ca", + "tarball": "http://registry.npmjs.org/npmtop/-/npmtop-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "c970b7049c7ebb04482c6d7d40080723a0999c2e", + "tarball": "http://registry.npmjs.org/npmtop/-/npmtop-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "d0dc1accb0a1d9c492d9b53f18f2dbdbcebac723", + "tarball": "http://registry.npmjs.org/npmtop/-/npmtop-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "9d817d669671385ab9ac9dc6657c2912052d52df", + "tarball": "http://registry.npmjs.org/npmtop/-/npmtop-0.0.8.tgz" + }, + "0.1.0": { + "shasum": "78bb2b932b27a878f5d236f6e25d422133e839d2", + "tarball": "http://registry.npmjs.org/npmtop/-/npmtop-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "6c1e7ac4168c194371d26377d891b21c7a104777", + "tarball": "http://registry.npmjs.org/npmtop/-/npmtop-0.1.1.tgz" + } + }, + "keywords": [ + "hall of fame", + "awesome people", + "pissing contest", + "contributors", + "npm" + ], + "url": "http://registry.npmjs.org/npmtop/" + }, + "npmtop-fs": { + "name": "npmtop-fs", + "description": "Silly program that ranks npm contributors by number of packages", + "dist-tags": { + "latest": "0.1.1" + }, + "readme": null, + "maintainers": [ + { + "name": "pksunkara", + "email": "pavan.sss1991@gmail.com" + } + ], + "time": { + "modified": "2011-11-21T18:55:21.144Z", + "created": "2011-11-21T18:55:19.862Z", + "0.1.1": "2011-11-21T18:55:21.144Z" + }, + "author": { + "name": "Pavan Kumar Sunkara", + "email": "pavan.sss1991@gmail.com", + "url": "http://pkumar.github.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/pkumar/npmtop-fs.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/npmtop-fs/0.1.1" + }, + "dist": { + "0.1.1": { + "shasum": "68b5a80044b1cc3b8dbd7ee7a286a92976bbef7e", + "tarball": "http://registry.npmjs.org/npmtop-fs/-/npmtop-fs-0.1.1.tgz" + } + }, + "keywords": [ + "hall of fame", + "awesome people", + "pissing contest", + "contributors", + "npm" + ], + "url": "http://registry.npmjs.org/npmtop-fs/" + }, + "npp": { + "name": "npp", + "description": "Amazing HTML preprocessing using JavaScript", + "dist-tags": { + "latest": "0.0.3" + }, + "readme": "# npp - node.js preprocessing\n\nnpp allows you to perform server side preprocessing \nfor HTML files, similar to PHP, except in javascript\nand using the node.js framework.\n\n## Example:\n\nSuppose you want to preprocess an HTML page, called `epic.html`,\nwhich looks a little like this:\n\n\t\n\t\t\n\t\t\t\n\t\t\n\t\t\n\t\t\t
\n\t\t\t
\n\t\t\n\t\n\nIt can be processed like this:\n\n\tvar http = require(\"http\"),\n\t\t\tnpp = require(\"npp\");\n\n\thttp.createServer(function(req, res){\n\t\tnpp(\"path/to/epic.html\", res);\n\t}).listen(8000);\n\nThe code above simply gets the tag whose id is `epictag`, \nand adds \"Examples are epic!\" as it's inner html. The new\nHTML is then written to `res` and to the client. \n\nNote the `nppdom.done()` method, which is required \nto tell `npp` your done editing the page.\n\nThis is a very basic example. See the examples folder and the \ndocumentation (to come) for more details.\n\n## Installation and Usage:\n\nUsing `npm`:\n\n\tnpm install npp\n\nTo include `npp` in your project:\n\n\tvar npp = require(\"npp\");\n\n## Tests:\n\nTo run the tests, install `vows` using npm or install `npp` with the `--dev` key:\n\n\tnpm install vows\n\t\nor\n\n\tnpm install npp --dev\n\n## License:\n\n(New BSD License)\n\nCopyright (c) 2011, Siddharth Mahendraker \nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n* Neither the name of this software nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL Siddharth Mahendraker BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n\n", + "maintainers": [ + { + "name": "siddmahen", + "email": "siddharth_mahen@me.com" + } + ], + "time": { + "modified": "2011-11-27T15:33:31.734Z", + "created": "2011-11-20T19:11:26.978Z", + "0.0.1": "2011-11-20T19:11:28.943Z", + "0.0.3": "2011-11-27T15:33:31.734Z" + }, + "author": { + "name": "Siddharth Mahendraker", + "email": "siddharth_mahen@me.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/siddMahen/npp.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/npp/0.0.1", + "0.0.3": "http://registry.npmjs.org/npp/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "6844c4e454634f2168cc2b29cc5003d82a571753", + "tarball": "http://registry.npmjs.org/npp/-/npp-0.0.1.tgz" + }, + "0.0.3": { + "shasum": "f7dda70440492dbf3fad296b9a94d3fe83ff3572", + "tarball": "http://registry.npmjs.org/npp/-/npp-0.0.3.tgz" + } + }, + "keywords": [ + "preprocessing", + "HTML" + ], + "url": "http://registry.npmjs.org/npp/" + }, + "nquery": { + "name": "nquery", + "description": "Sizzle powered selectors for libxmljs", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "dachev", + "email": "blago@dachev.com" + } + ], + "time": { + "modified": "2011-07-20T04:30:43.891Z", + "created": "2011-07-18T01:22:36.624Z", + "0.1.0": "2011-07-18T01:22:36.969Z", + "0.1.1": "2011-07-18T02:07:37.161Z", + "0.1.2": "2011-07-18T02:51:35.121Z", + "0.1.3": "2011-07-20T04:30:43.891Z" + }, + "author": { + "name": "Blagovest Dachev", + "email": "blago@dachev.com", + "url": "http://www.dachev.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dachev/nQuery.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/nquery/0.1.0", + "0.1.1": "http://registry.npmjs.org/nquery/0.1.1", + "0.1.2": "http://registry.npmjs.org/nquery/0.1.2", + "0.1.3": "http://registry.npmjs.org/nquery/0.1.3" + }, + "dist": { + "0.1.0": { + "shasum": "94006dc056adf4d2d258c0e05caf6346ac9c70c2", + "tarball": "http://registry.npmjs.org/nquery/-/nquery-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "fe740989283b844b6846d36c32402caf7c18d943", + "tarball": "http://registry.npmjs.org/nquery/-/nquery-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "c7695c32d521029bc5390942646d1b84b6d4d732", + "tarball": "http://registry.npmjs.org/nquery/-/nquery-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "bd22f79ae26a5830a4b4f313d5b0a1ade3fd643c", + "tarball": "http://registry.npmjs.org/nquery/-/nquery-0.1.3.tgz" + } + }, + "keywords": [ + "dom", + "sizzle", + "jquery", + "html", + "xml", + "selector", + "query" + ], + "url": "http://registry.npmjs.org/nquery/" + }, + "nrecipe": { + "name": "nrecipe", + "description": "Single-user shopping list web app for nserver", + "dist-tags": { + "latest": "0.0.4-2" + }, + "maintainers": [ + { + "name": "thomblake", + "email": "thethomblake@gmail.com" + } + ], + "time": { + "modified": "2011-09-13T17:03:18.290Z", + "created": "2011-09-12T21:17:47.774Z", + "0.0.0": "2011-09-12T21:17:48.256Z", + "0.0.1": "2011-09-12T21:18:32.472Z", + "0.0.2": "2011-09-12T21:35:49.611Z", + "0.0.3": "2011-09-12T22:06:44.117Z", + "0.0.4": "2011-09-13T16:55:18.261Z", + "0.0.4-1": "2011-09-13T17:00:35.663Z", + "0.0.4-2": "2011-09-13T17:03:18.290Z" + }, + "author": { + "name": "Thom Blake", + "email": "thethomblake@gmail.com", + "url": "http://thomblake.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/thomblake/nrecipe.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/nrecipe/0.0.0", + "0.0.1": "http://registry.npmjs.org/nrecipe/0.0.1", + "0.0.2": "http://registry.npmjs.org/nrecipe/0.0.2", + "0.0.3": "http://registry.npmjs.org/nrecipe/0.0.3", + "0.0.4": "http://registry.npmjs.org/nrecipe/0.0.4", + "0.0.4-1": "http://registry.npmjs.org/nrecipe/0.0.4-1", + "0.0.4-2": "http://registry.npmjs.org/nrecipe/0.0.4-2" + }, + "dist": { + "0.0.0": { + "shasum": "6b7c65e4ddbb5247baf52201e637f8a641994470", + "tarball": "http://registry.npmjs.org/nrecipe/-/nrecipe-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "65cde330dceed88fc80ef4ec55c5c4dca5b4c01b", + "tarball": "http://registry.npmjs.org/nrecipe/-/nrecipe-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "397b83a55077b753ae9c7967a9bb6e00c5684684", + "tarball": "http://registry.npmjs.org/nrecipe/-/nrecipe-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "37bdaeb1d29dbf74cacca98058dd3d9a02494354", + "tarball": "http://registry.npmjs.org/nrecipe/-/nrecipe-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "f6f1c64db237bec2d1be435071f623884a025c81", + "tarball": "http://registry.npmjs.org/nrecipe/-/nrecipe-0.0.4.tgz" + }, + "0.0.4-1": { + "shasum": "ad2ec1e918e6f3d4cd0fa80f46bd94484dfcdbae", + "tarball": "http://registry.npmjs.org/nrecipe/-/nrecipe-0.0.4-1.tgz" + }, + "0.0.4-2": { + "shasum": "6e93e25761fc01b64bc4b77a15c9f3427358c0f4", + "tarball": "http://registry.npmjs.org/nrecipe/-/nrecipe-0.0.4-2.tgz" + } + }, + "keywords": [ + "nserver", + "shopping", + "list" + ], + "url": "http://registry.npmjs.org/nrecipe/" + }, + "nroonga": { + "name": "nroonga", + "description": "A library for building groonga powered nodes", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "## nroonga\n\n[nroonga](http://nroonga.github.com) is a library for building groonga powered nodes.\nYou can write your custom full-text search backend on the top of [node.js](http://nodejs.org) and [groonga](http://groonga.org).\n\n### To build and run tests:\n\n % npm install\n % npm test\n\n### To run examples:\n\nSuper simple test script:\n\n % node examples/test.js\n\nA CLI example (like groonga stand-alone mode):\n\n % coffee examples/prompt.coffee\n\nA http daemon example (like groonga server mode):\n\n % coffee examples/server.coffee\n\n### Examples\n\n var nroonga = require('nroonga');\n var db = new nroonga.Database('database');\n \n // Synchronous\n console.log(db.commandSync('status'));\n \n // Asynchronous\n db.command('status', function(error, data) {\n console.log(data);\n });\n\n### new nroonga.Database([[path], openOnly])\n\nOpen a groonga database.\n\nIf [path] is given, create a persistent db. Otherwise, create a temporary db.\n\nIf [openOnly] is set to `true`, do not attempt to create even if open failed. Otherwise, try to create a new database.\n\n### database.commandSync(command)\n\nSend `command` to groonga. Block until results returned.\n\n### database.command(command, [options], callback)\n\nAsynchronously send `command` to groonga. Callback will be given two arguments `(error, data)`.\n\n", + "maintainers": [ + { + "name": "darashi", + "email": "dara@shidara.net" + } + ], + "time": { + "modified": "2011-12-06T04:25:55.732Z", + "created": "2011-12-02T06:43:57.075Z", + "0.0.0": "2011-12-02T06:44:00.587Z", + "0.0.1": "2011-12-06T04:25:55.732Z" + }, + "author": { + "name": "Yoji Shidara", + "email": "dara@shidara.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/nroonga/nroonga.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/nroonga/0.0.0", + "0.0.1": "http://registry.npmjs.org/nroonga/0.0.1" + }, + "dist": { + "0.0.0": { + "shasum": "80c490cb4b5693265f93cd567f5d07c40cc967b1", + "tarball": "http://registry.npmjs.org/nroonga/-/nroonga-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "cd06a52692affca9e6b0869be7ba47246450096c", + "tarball": "http://registry.npmjs.org/nroonga/-/nroonga-0.0.1.tgz" + } + }, + "keywords": [ + "groonga", + "fulltext", + "search", + "database" + ], + "url": "http://registry.npmjs.org/nroonga/" + }, + "nserv": { + "name": "nserv", + "description": "Nodejs hosting and deployment", + "dist-tags": { + "latest": "0.0.6" + }, + "readme": null, + "maintainers": [ + { + "name": "bradleyg", + "email": "bradley.griffiths@gmail.com" + } + ], + "time": { + "modified": "2011-12-05T23:10:40.684Z", + "created": "2011-11-28T21:54:14.695Z", + "0.0.2": "2011-11-28T21:54:36.011Z", + "0.0.3": "2011-11-29T02:03:38.392Z", + "0.0.4": "2011-11-29T23:51:42.351Z", + "0.0.5": "2011-12-02T17:40:28.286Z", + "0.0.6": "2011-12-05T23:10:40.684Z" + }, + "author": { + "name": "Bradley Griffiths", + "email": "bradley.griffiths@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/bradleyg/nserv.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/nserv/0.0.2", + "0.0.3": "http://registry.npmjs.org/nserv/0.0.3", + "0.0.4": "http://registry.npmjs.org/nserv/0.0.4", + "0.0.5": "http://registry.npmjs.org/nserv/0.0.5", + "0.0.6": "http://registry.npmjs.org/nserv/0.0.6" + }, + "dist": { + "0.0.2": { + "shasum": "9290b83c26624ee526083f94a78df242b7098f5e", + "tarball": "http://registry.npmjs.org/nserv/-/nserv-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "34511574a1aa1447b191e8d53122a9f704bfdac0", + "tarball": "http://registry.npmjs.org/nserv/-/nserv-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "afacbf5bc7d3d4012a0869c4c96808d63a2fe667", + "tarball": "http://registry.npmjs.org/nserv/-/nserv-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "fcf438a9b20d1e3c49372772de2d6826d5f2913b", + "tarball": "http://registry.npmjs.org/nserv/-/nserv-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "0ff119a74c2c24b23b4f6dae9b57e7d56218a771", + "tarball": "http://registry.npmjs.org/nserv/-/nserv-0.0.6.tgz" + } + }, + "keywords": [ + "deploy", + "git", + "PaaS", + "cli" + ], + "url": "http://registry.npmjs.org/nserv/" + }, + "nserve": { + "name": "nserve", + "description": "A nodejs-powered development server", + "dist-tags": { + "latest": "0.0.9" + }, + "maintainers": [ + { + "name": "marty_wang", + "email": "mo.hy.wang@gmail.com" + } + ], + "time": { + "modified": "2011-12-04T07:49:54.467Z", + "created": "2011-10-29T19:53:32.306Z", + "0.0.1": "2011-10-29T19:53:34.795Z", + "0.0.2": "2011-11-02T01:17:53.457Z", + "0.0.3": "2011-11-02T07:43:02.052Z", + "0.0.4": "2011-11-04T01:05:01.719Z", + "0.0.5": "2011-11-06T02:11:17.962Z", + "0.0.6": "2011-11-07T02:08:03.798Z", + "0.0.7": "2011-11-24T06:56:18.553Z", + "0.0.8": "2011-11-28T05:56:28.402Z", + "0.0.9": "2011-12-04T07:49:54.467Z" + }, + "author": { + "name": "Mo Wang", + "email": "mo.oss.wang@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/marty-wang/NServe.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nserve/0.0.1", + "0.0.2": "http://registry.npmjs.org/nserve/0.0.2", + "0.0.3": "http://registry.npmjs.org/nserve/0.0.3", + "0.0.4": "http://registry.npmjs.org/nserve/0.0.4", + "0.0.5": "http://registry.npmjs.org/nserve/0.0.5", + "0.0.6": "http://registry.npmjs.org/nserve/0.0.6", + "0.0.7": "http://registry.npmjs.org/nserve/0.0.7", + "0.0.8": "http://registry.npmjs.org/nserve/0.0.8", + "0.0.9": "http://registry.npmjs.org/nserve/0.0.9" + }, + "dist": { + "0.0.1": { + "shasum": "238ed357a25f547d84f5a577e3bf5cc78f6beb02", + "tarball": "http://registry.npmjs.org/nserve/-/nserve-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "22a354de0188ba2125a011b71a1ef5b01dd469d7", + "tarball": "http://registry.npmjs.org/nserve/-/nserve-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "e45da09f09714fa0b58ef17db0b025d421a135ee", + "tarball": "http://registry.npmjs.org/nserve/-/nserve-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "aafbe443724795421760f391c36a2b8f713569ac", + "tarball": "http://registry.npmjs.org/nserve/-/nserve-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "dbada50e0b683ced878fd1a3de459ad95c14538c", + "tarball": "http://registry.npmjs.org/nserve/-/nserve-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "b95388b79af72f564cbbe89941e30ffd273ca509", + "tarball": "http://registry.npmjs.org/nserve/-/nserve-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "c479c5f0742b8003837759a2b662e918d707c35c", + "tarball": "http://registry.npmjs.org/nserve/-/nserve-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "d61ad6620562c31b27ad822498ad94eeb2d6bc05", + "tarball": "http://registry.npmjs.org/nserve/-/nserve-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "6234a2275728f9dbc4195b19f3b98ad4514bee8b", + "tarball": "http://registry.npmjs.org/nserve/-/nserve-0.0.9.tgz" + } + }, + "keywords": [ + "static", + "file", + "web", + "server" + ], + "url": "http://registry.npmjs.org/nserve/" + }, + "nserver": { + "name": "nserver", + "description": "A simple wrapper for express to serve little node projects", + "dist-tags": { + "latest": "0.0.0-1" + }, + "maintainers": [ + { + "name": "thomblake", + "email": "thethomblake@gmail.com" + } + ], + "time": { + "modified": "2011-09-13T17:18:02.926Z", + "created": "2011-09-13T17:17:58.053Z", + "0.0.0": "2011-09-13T17:17:58.555Z", + "0.0.0-1": "2011-09-13T17:18:02.926Z" + }, + "author": { + "name": "Thom Blake", + "email": "thethomblake@gmail.com", + "url": "http://thomblake.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/thomblake/nserver.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/nserver/0.0.0", + "0.0.0-1": "http://registry.npmjs.org/nserver/0.0.0-1" + }, + "dist": { + "0.0.0": { + "shasum": "15d5ff8e6d30f30fb52c66f6f2499b786bf54213", + "tarball": "http://registry.npmjs.org/nserver/-/nserver-0.0.0.tgz" + }, + "0.0.0-1": { + "shasum": "02dd9d2d516fa8e908555affdf3ca9bedace24a9", + "tarball": "http://registry.npmjs.org/nserver/-/nserver-0.0.0-1.tgz" + } + }, + "keywords": [ + "express", + "server" + ], + "url": "http://registry.npmjs.org/nserver/" + }, + "nserver-util": { + "name": "nserver-util", + "description": "Utils used by nserver programs", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "thomblake", + "email": "thethomblake@gmail.com" + } + ], + "time": { + "modified": "2011-09-12T22:12:07.336Z", + "created": "2011-09-12T21:59:26.698Z", + "0.0.0": "2011-09-12T21:59:27.198Z", + "0.0.1": "2011-09-12T22:12:07.336Z" + }, + "author": { + "name": "Thom Blake", + "email": "thethomblake@gmail.com", + "url": "http://thomblake.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/thomblake/nserver-util.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/nserver-util/0.0.0", + "0.0.1": "http://registry.npmjs.org/nserver-util/0.0.1" + }, + "dist": { + "0.0.0": { + "shasum": "826298b917c0f59cc5da6bc36f6752ee69b4ac12", + "tarball": "http://registry.npmjs.org/nserver-util/-/nserver-util-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "5254b73454a999f20e34ca77d10b44ca502db8ae", + "tarball": "http://registry.npmjs.org/nserver-util/-/nserver-util-0.0.1.tgz" + } + }, + "keywords": [ + "utils" + ], + "url": "http://registry.npmjs.org/nserver-util/" + }, + "nssocket": { + "name": "nssocket", + "description": "An elegant way to define lightweight protocols on-top of TCP/TLS sockets in node.js", + "dist-tags": { + "latest": "0.3.4" + }, + "maintainers": [ + { + "name": "hij1nx", + "email": "hij1nx@me.com" + }, + { + "name": "jameson", + "email": "jameson@nodejitsu.com" + }, + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + } + ], + "time": { + "modified": "2011-11-26T19:57:24.918Z", + "created": "2011-07-21T00:10:55.378Z", + "0.1.0": "2011-07-21T00:10:55.519Z", + "0.1.1": "2011-07-21T00:13:19.036Z", + "0.2.0": "2011-07-29T20:55:21.547Z", + "0.2.1": "2011-08-02T09:22:26.209Z", + "0.2.2": "2011-08-03T22:46:10.505Z", + "0.2.3": "2011-08-05T05:08:42.951Z", + "0.2.4": "2011-08-08T00:08:58.552Z", + "0.2.5": "2011-08-09T21:33:44.913Z", + "0.2.5-1": "2011-08-11T22:42:44.735Z", + "0.3.0": "2011-10-14T02:51:07.823Z", + "0.3.1": "2011-10-15T00:22:39.690Z", + "0.3.2": "2011-10-18T06:48:23.081Z", + "0.3.3": "2011-10-26T22:40:19.806Z", + "0.3.4": "2011-11-26T19:57:24.918Z" + }, + "author": { + "name": "Nodejitsu Inc", + "email": "info@nodejitsu.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/nodejitsu/nssocket.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/nssocket/0.1.0", + "0.1.1": "http://registry.npmjs.org/nssocket/0.1.1", + "0.2.0": "http://registry.npmjs.org/nssocket/0.2.0", + "0.2.1": "http://registry.npmjs.org/nssocket/0.2.1", + "0.2.2": "http://registry.npmjs.org/nssocket/0.2.2", + "0.2.3": "http://registry.npmjs.org/nssocket/0.2.3", + "0.2.4": "http://registry.npmjs.org/nssocket/0.2.4", + "0.2.5": "http://registry.npmjs.org/nssocket/0.2.5", + "0.2.5-1": "http://registry.npmjs.org/nssocket/0.2.5-1", + "0.3.0": "http://registry.npmjs.org/nssocket/0.3.0", + "0.3.1": "http://registry.npmjs.org/nssocket/0.3.1", + "0.3.2": "http://registry.npmjs.org/nssocket/0.3.2", + "0.3.3": "http://registry.npmjs.org/nssocket/0.3.3", + "0.3.4": "http://registry.npmjs.org/nssocket/0.3.4" + }, + "dist": { + "0.1.0": { + "shasum": "3304d8c57d47f338d838656b9e5a645c2ed032f1", + "tarball": "http://registry.npmjs.org/nssocket/-/nssocket-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "3250368b49b7b8aded7d65b40f6c1db621e13381", + "tarball": "http://registry.npmjs.org/nssocket/-/nssocket-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "4fc75aebb3618cfcdf8def3baececf25dbd48526", + "tarball": "http://registry.npmjs.org/nssocket/-/nssocket-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "f91d99e1c68ffe65dab63640a8b4ef0350fe6e85", + "tarball": "http://registry.npmjs.org/nssocket/-/nssocket-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "0c978174bacd175175e00682ff7a6c1e70356578", + "tarball": "http://registry.npmjs.org/nssocket/-/nssocket-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "c65f3877e19e094d3c78e03744e6e444096284fa", + "tarball": "http://registry.npmjs.org/nssocket/-/nssocket-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "8116debef034e60a81493278efc509962adef237", + "tarball": "http://registry.npmjs.org/nssocket/-/nssocket-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "278e3b83b32ac4a154a87b9c6f641f4b07a76c14", + "tarball": "http://registry.npmjs.org/nssocket/-/nssocket-0.2.5.tgz" + }, + "0.2.5-1": { + "shasum": "b6da51de91902a9e685f81b55512ab5fe32873a8", + "tarball": "http://registry.npmjs.org/nssocket/-/nssocket-0.2.5-1.tgz" + }, + "0.3.0": { + "shasum": "c9a4e405f5a926752047dcf41e8f45597204ffc1", + "tarball": "http://registry.npmjs.org/nssocket/-/nssocket-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "ad65bcd12d580a9de74a072d31b2373375070d0d", + "tarball": "http://registry.npmjs.org/nssocket/-/nssocket-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "3736df129814c0173a80a8f88db533e69ce5175e", + "tarball": "http://registry.npmjs.org/nssocket/-/nssocket-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "d4e1207b003f3a056575217ef3682f847ccc81d5", + "tarball": "http://registry.npmjs.org/nssocket/-/nssocket-0.3.3.tgz" + }, + "0.3.4": { + "shasum": "4ed01235747d04a61ec3119ff5ed1e9ea0ff423e", + "tarball": "http://registry.npmjs.org/nssocket/-/nssocket-0.3.4.tgz" + } + }, + "url": "http://registry.npmjs.org/nssocket/" + }, + "nstore": { + "name": "nstore", + "description": "nStore is a simple, in-process key/value database for node.js.", + "dist-tags": { + "latest": "0.5.1" + }, + "maintainers": [ + { + "name": "creationix", + "email": "tim@creationix.com" + } + ], + "author": { + "name": "Tim Caswell", + "email": "tim@creationix.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/creationix/nstore.git" + }, + "time": { + "modified": "2011-07-12T21:32:41.480Z", + "created": "2011-07-08T21:54:40.435Z", + "0.3.0": "2011-07-08T21:54:40.435Z", + "0.4.0": "2011-07-08T21:54:40.435Z", + "0.5.0": "2011-07-08T22:32:15.454Z", + "0.5.1": "2011-07-12T21:32:41.480Z" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/nstore/0.3.0", + "0.4.0": "http://registry.npmjs.org/nstore/0.4.0", + "0.5.0": "http://registry.npmjs.org/nstore/0.5.0", + "0.5.1": "http://registry.npmjs.org/nstore/0.5.1" + }, + "dist": { + "0.3.0": { + "tarball": "http://registry.npmjs.org/nstore/-/nstore-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "488fd5bc28e936e0e75d043efee9f51f75085d1a", + "tarball": "http://registry.npmjs.org/nstore/-/nstore-0.4.0.tgz" + }, + "0.5.0": { + "shasum": "006aa0ecfde937adba328402392c12864d848464", + "tarball": "http://registry.npmjs.org/nstore/-/nstore-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "500bfce7281e6dc5bfdf98986910c9876727414c", + "tarball": "http://registry.npmjs.org/nstore/-/nstore-0.5.1.tgz" + } + }, + "url": "http://registry.npmjs.org/nstore/" + }, + "nstore-cache": { + "name": "nstore-cache", + "description": "Cache addon for nStore", + "dist-tags": { + "latest": "0.4.0" + }, + "maintainers": [ + { + "name": "creationix", + "email": "tim@creationix.com" + } + ], + "time": { + "modified": "2011-07-08T21:53:33.097Z", + "created": "2011-07-08T21:53:32.636Z", + "0.4.0": "2011-07-08T21:53:33.097Z" + }, + "author": { + "name": "Tim Caswell", + "email": "tim@creationix.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/creationix/nstore.git" + }, + "versions": { + "0.4.0": "http://registry.npmjs.org/nstore-cache/0.4.0" + }, + "dist": { + "0.4.0": { + "shasum": "76467e7f634a1961a92f413e609047c04ecbb9e6", + "tarball": "http://registry.npmjs.org/nstore-cache/-/nstore-cache-0.4.0.tgz" + } + }, + "url": "http://registry.npmjs.org/nstore-cache/" + }, + "nstore-query": { + "name": "nstore-query", + "description": "Query Addon for nStore", + "dist-tags": { + "latest": "0.4.0" + }, + "maintainers": [ + { + "name": "creationix", + "email": "tim@creationix.com" + } + ], + "time": { + "modified": "2011-07-08T21:53:06.843Z", + "created": "2011-07-08T21:53:06.345Z", + "0.4.0": "2011-07-08T21:53:06.843Z" + }, + "author": { + "name": "Tim Caswell", + "email": "tim@creationix.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/creationix/nstore.git" + }, + "versions": { + "0.4.0": "http://registry.npmjs.org/nstore-query/0.4.0" + }, + "dist": { + "0.4.0": { + "shasum": "c9c184a2108ef33e5c6f220cc3a6b13e761fc6f8", + "tarball": "http://registry.npmjs.org/nstore-query/-/nstore-query-0.4.0.tgz" + } + }, + "url": "http://registry.npmjs.org/nstore-query/" + }, + "nStoreSession": { + "name": "nStoreSession", + "description": "Connect session store using nStore", + "dist-tags": { + "latest": "0.0.22" + }, + "maintainers": [ + { + "name": "creationix", + "email": "tim@creationix.com" + } + ], + "time": { + "modified": "2011-08-03T16:45:17.624Z", + "created": "2011-08-03T16:45:17.096Z", + "0.0.22": "2011-08-03T16:45:17.624Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/creationix/nstore-session.git" + }, + "versions": { + "0.0.22": "http://registry.npmjs.org/nStoreSession/0.0.22" + }, + "dist": { + "0.0.22": { + "shasum": "0f42760f9785aff71867a9f6ffd57215811708c0", + "tarball": "http://registry.npmjs.org/nStoreSession/-/nStoreSession-0.0.22.tgz" + } + }, + "url": "http://registry.npmjs.org/nStoreSession/" + }, + "nt": { + "name": "nt", + "description": "Read, make, write, and hash check torrent files", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "neat", + "email": "roly426@gmail.com" + } + ], + "time": { + "modified": "2011-11-21T11:30:41.085Z", + "created": "2011-10-16T06:45:15.237Z", + "0.1.0": "2011-10-16T06:45:17.033Z", + "0.1.1": "2011-10-16T16:36:50.289Z", + "0.1.2": "2011-11-21T11:30:41.085Z" + }, + "author": { + "name": "Roly Fentanes", + "url": "https://github.com/fent" + }, + "repository": { + "type": "git", + "url": "git://github.com/fent/node-torrent.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/nt/0.1.0", + "0.1.1": "http://registry.npmjs.org/nt/0.1.1", + "0.1.2": "http://registry.npmjs.org/nt/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "e3b6e3e57f4cb80f185e847e25bf10d5a15b57e7", + "tarball": "http://registry.npmjs.org/nt/-/nt-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "d7544f033bc4147a1ed588c72fb788d0f9f9503c", + "tarball": "http://registry.npmjs.org/nt/-/nt-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "ee1b85426dce030b7a79b43ed28ee7a031859e08", + "tarball": "http://registry.npmjs.org/nt/-/nt-0.1.2.tgz" + } + }, + "keywords": [ + "torrent", + "bittorremt", + "file" + ], + "url": "http://registry.npmjs.org/nt/" + }, + "ntf": { + "name": "ntf", + "description": "A network testing framework", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "silas", + "email": "silas@sewell.org" + } + ], + "time": { + "modified": "2011-11-01T00:31:50.020Z", + "created": "2011-11-01T00:31:49.610Z", + "0.0.1": "2011-11-01T00:31:50.020Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/silas/ntf.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ntf/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "a8db6c1009520a5e1086d5921ae45fe17a26a58d", + "tarball": "http://registry.npmjs.org/ntf/-/ntf-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/ntf/" + }, + "ntodo": { + "name": "ntodo", + "description": "A simple CLI TODO parser for the lazy coder", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "csanz", + "email": "chrissanz@gmail.com" + } + ], + "time": { + "modified": "2011-06-03T15:52:49.567Z", + "created": "2011-06-03T06:16:17.934Z", + "0.0.1": "2011-06-03T06:16:18.250Z", + "0.0.2": "2011-06-03T06:17:29.027Z", + "0.0.3": "2011-06-03T15:52:49.567Z" + }, + "author": { + "name": "Christian Sanz", + "email": "chris@geekli.st" + }, + "repository": { + "type": "git", + "url": "git://github.com/geeklist/ntodo.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ntodo/0.0.1", + "0.0.2": "http://registry.npmjs.org/ntodo/0.0.2", + "0.0.3": "http://registry.npmjs.org/ntodo/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "560d87512d1115822fd07081ccc23cc5bc00be10", + "tarball": "http://registry.npmjs.org/ntodo/-/ntodo-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "e996b143fa3a865e3f483c2ad8ebfd40475c560c", + "tarball": "http://registry.npmjs.org/ntodo/-/ntodo-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "4c7cb0cef6e3eca0bfd321a0851fb45d0c45c2e9", + "tarball": "http://registry.npmjs.org/ntodo/-/ntodo-0.0.3.tgz" + } + }, + "keywords": [ + "todo", + "cli", + "github", + "utils" + ], + "url": "http://registry.npmjs.org/ntodo/" + }, + "ntp": { + "name": "ntp", + "description": "Synchronize browser times with a server times through a protocol inspired by the Network Time Protocol", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "tlevine", + "email": "tkl22@cornell.edu" + } + ], + "time": { + "modified": "2011-09-14T07:07:10.359Z", + "created": "2011-09-14T05:58:57.183Z", + "0.0.4": "2011-09-14T05:58:57.590Z", + "0.0.5": "2011-09-14T07:07:10.359Z" + }, + "author": { + "name": "Thomas Levine", + "email": "tkl22@cornell.edu" + }, + "repository": { + "type": "git", + "url": "git://gitorious.org/tlevine/jsntp.git" + }, + "versions": { + "0.0.4": "http://registry.npmjs.org/ntp/0.0.4", + "0.0.5": "http://registry.npmjs.org/ntp/0.0.5" + }, + "dist": { + "0.0.4": { + "shasum": "4c29a3eb098078666457b0efc35727efc01f020d", + "tarball": "http://registry.npmjs.org/ntp/-/ntp-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "05a64041afa13294251fcd776dde141ea9dbf9eb", + "tarball": "http://registry.npmjs.org/ntp/-/ntp-0.0.5.tgz" + } + }, + "keywords": [ + "ntp", + "at", + "alarm", + "time", + "websocket", + "socket", + "socket.io" + ], + "url": "http://registry.npmjs.org/ntp/" + }, + "nTPL": { + "name": "nTPL", + "description": "nTPL is node.js extremely fast template engine", + "dist-tags": { + "latest": "0.4.6", + "stable": "0.4.6" + }, + "maintainers": [ + { + "name": "fedor.indutny", + "email": "fedor.indutny@gmail.com" + } + ], + "author": { + "name": "Fedor Indutny", + "email": "fedor.indutny@gmail.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/donnerjack13589/nTPL.git" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/nTPL/0.0.3", + "0.1.0": "http://registry.npmjs.org/nTPL/0.1.0", + "0.3.0": "http://registry.npmjs.org/nTPL/0.3.0", + "0.3.1": "http://registry.npmjs.org/nTPL/0.3.1", + "0.3.2": "http://registry.npmjs.org/nTPL/0.3.2", + "0.3.3": "http://registry.npmjs.org/nTPL/0.3.3", + "0.3.4": "http://registry.npmjs.org/nTPL/0.3.4", + "0.3.5": "http://registry.npmjs.org/nTPL/0.3.5", + "0.3.6": "http://registry.npmjs.org/nTPL/0.3.6", + "0.3.7": "http://registry.npmjs.org/nTPL/0.3.7", + "0.3.8": "http://registry.npmjs.org/nTPL/0.3.8", + "0.4.0": "http://registry.npmjs.org/nTPL/0.4.0", + "0.4.1": "http://registry.npmjs.org/nTPL/0.4.1", + "0.4.2": "http://registry.npmjs.org/nTPL/0.4.2", + "0.4.3": "http://registry.npmjs.org/nTPL/0.4.3", + "0.4.4": "http://registry.npmjs.org/nTPL/0.4.4", + "0.4.5": "http://registry.npmjs.org/nTPL/0.4.5", + "0.4.6": "http://registry.npmjs.org/nTPL/0.4.6" + }, + "dist": { + "0.0.3": { + "tarball": "http://packages:5984/nTPL/-/nTPL-0.0.3.tgz" + }, + "0.1.0": { + "tarball": "http://packages:5984/nTPL/-/nTPL-0.1.0.tgz" + }, + "0.3.0": { + "tarball": "http://packages:5984/nTPL/-/nTPL-0.3.0.tgz" + }, + "0.3.1": { + "tarball": "http://packages:5984/nTPL/-/nTPL-0.3.1.tgz" + }, + "0.3.2": { + "tarball": "http://packages:5984/nTPL/-/nTPL-0.3.2.tgz" + }, + "0.3.3": { + "tarball": "http://packages:5984/nTPL/-/nTPL-0.3.3.tgz" + }, + "0.3.4": { + "tarball": "http://packages:5984/nTPL/-/nTPL-0.3.4.tgz" + }, + "0.3.5": { + "tarball": "http://packages:5984/nTPL/-/nTPL-0.3.5.tgz" + }, + "0.3.6": { + "tarball": "http://packages:5984/nTPL/-/nTPL-0.3.6.tgz" + }, + "0.3.7": { + "tarball": "http://packages:5984/nTPL/-/nTPL-0.3.7.tgz" + }, + "0.3.8": { + "tarball": "http://packages:5984/nTPL/-/nTPL-0.3.8.tgz" + }, + "0.4.0": { + "tarball": "http://packages:5984/nTPL/-/nTPL-0.4.0.tgz" + }, + "0.4.1": { + "tarball": "http://packages:5984/nTPL/-/nTPL-0.4.1.tgz" + }, + "0.4.2": { + "tarball": "http://packages:5984/nTPL/-/nTPL-0.4.2.tgz" + }, + "0.4.3": { + "tarball": "http://packages:5984/nTPL/-/nTPL-0.4.3.tgz" + }, + "0.4.4": { + "tarball": "http://packages:5984/nTPL/-/nTPL-0.4.4.tgz" + }, + "0.4.5": { + "tarball": "http://packages:5984/nTPL/-/nTPL-0.4.5.tgz" + }, + "0.4.6": { + "tarball": "http://registry.npmjs.org/nTPL/-/nTPL-0.4.6.tgz" + } + }, + "keywords": [ + "template", + "nTPL", + "parser" + ], + "url": "http://registry.npmjs.org/nTPL/" + }, + "nts": { + "name": "nts", + "description": "NTS for NodeJS", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "nomospace", + "email": "jinlu_hz@163.com" + } + ], + "time": { + "modified": "2011-05-30T06:32:28.502Z", + "created": "2011-05-30T05:48:05.809Z", + "0.0.0": "2011-05-30T05:48:07.188Z", + "0.1.1": "2011-05-30T06:03:31.314Z", + "0.0.1": "2011-05-30T06:32:28.502Z" + }, + "author": { + "name": "nomospace", + "email": "jinlu_hz@163.com", + "url": "https://github.com/nomospace" + }, + "repository": { + "type": "git", + "url": "git://github.com/nomospace/nodejs-nts.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/nts/0.0.0", + "0.1.1": "http://registry.npmjs.org/nts/0.1.1", + "0.0.1": "http://registry.npmjs.org/nts/0.0.1" + }, + "dist": { + "0.0.0": { + "shasum": "7078307a166e3e59128aa45df8556e658b532820", + "tarball": "http://registry.npmjs.org/nts/-/nts-0.0.0.tgz" + }, + "0.1.1": { + "shasum": "e79d536422e82679b07a4a5ee064487e1ee2ec84", + "tarball": "http://registry.npmjs.org/nts/-/nts-0.1.1.tgz" + }, + "0.0.1": { + "shasum": "2dbc45c35b4aca2d2550b929a6607da38d5bda0d", + "tarball": "http://registry.npmjs.org/nts/-/nts-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/nts/" + }, + "nttpd": { + "name": "nttpd", + "description": "A directory-based HTTP server for Node.js that executes Node files automatically", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "11rcombs", + "email": "rodger.combs@gmail.com" + } + ], + "time": { + "modified": "2011-07-14T04:28:21.506Z", + "created": "2011-06-15T21:27:08.832Z", + "0.0.1": "2011-06-15T21:27:09.092Z", + "0.0.2": "2011-06-15T21:44:14.662Z", + "0.0.3": "2011-06-16T18:25:21.390Z", + "0.0.4": "2011-06-16T19:41:28.114Z", + "0.0.5": "2011-06-18T00:33:56.503Z", + "0.0.6": "2011-06-21T00:32:42.155Z", + "0.0.7": "2011-07-13T20:15:33.764Z", + "0.0.8": "2011-07-13T21:12:28.881Z", + "0.0.9": "2011-07-13T21:27:24.234Z", + "0.1.0": "2011-07-14T04:28:21.506Z" + }, + "author": { + "name": "Rodger Combs", + "email": "rodger.combs@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/11rcombs/nttpd.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nttpd/0.0.1", + "0.0.2": "http://registry.npmjs.org/nttpd/0.0.2", + "0.0.3": "http://registry.npmjs.org/nttpd/0.0.3", + "0.0.4": "http://registry.npmjs.org/nttpd/0.0.4", + "0.0.5": "http://registry.npmjs.org/nttpd/0.0.5", + "0.0.6": "http://registry.npmjs.org/nttpd/0.0.6", + "0.0.7": "http://registry.npmjs.org/nttpd/0.0.7", + "0.0.8": "http://registry.npmjs.org/nttpd/0.0.8", + "0.0.9": "http://registry.npmjs.org/nttpd/0.0.9", + "0.1.0": "http://registry.npmjs.org/nttpd/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "ba43be8f38c8397e184ee5d0250ea6dd6fdcf4e3", + "tarball": "http://registry.npmjs.org/nttpd/-/nttpd-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "832cda3da660ab36dd395a156a93963facb65dd1", + "tarball": "http://registry.npmjs.org/nttpd/-/nttpd-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "03a7f5c8625c028f13079b125e220938d0f03ef3", + "tarball": "http://registry.npmjs.org/nttpd/-/nttpd-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "4b190beeb82558d2c320a91178dfa2e5e31d40b1", + "tarball": "http://registry.npmjs.org/nttpd/-/nttpd-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "ff056832dbadd0ec1453854c724e646b43e6cd94", + "tarball": "http://registry.npmjs.org/nttpd/-/nttpd-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "7d327654ddae2e3f78d8bb2800a3820ba55bd445", + "tarball": "http://registry.npmjs.org/nttpd/-/nttpd-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "b225c2675e4074431e2904093c01e0fcc649ded8", + "tarball": "http://registry.npmjs.org/nttpd/-/nttpd-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "3e699b628a7cd9f12a477ae3f07568cf5e9e29dd", + "tarball": "http://registry.npmjs.org/nttpd/-/nttpd-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "d6a2797ca8a6128bdd9d3e4db77922dd2c333ac3", + "tarball": "http://registry.npmjs.org/nttpd/-/nttpd-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "43bb02eed1f7663466b9be1a1d1ae0e789cdbabf", + "tarball": "http://registry.npmjs.org/nttpd/-/nttpd-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/nttpd/" + }, + "nTunes": { + "name": "nTunes", + "description": "An extendable REST API for interacting with iTunes over HTTP", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "TooTallNate", + "email": "nathan@tootallnate.net" + } + ], + "author": { + "name": "Nathan Rajlich", + "email": "nathan@tootallnate.net" + }, + "time": { + "modified": "2011-04-29T06:41:29.873Z", + "created": "2011-04-29T06:41:29.873Z", + "0.0.1": "2011-04-29T06:41:29.873Z", + "0.0.2": "2011-04-29T06:41:29.873Z", + "0.0.3": "2011-04-29T06:41:29.873Z", + "0.0.4": "2011-04-29T06:41:29.873Z", + "0.0.5": "2011-04-29T06:41:29.873Z", + "0.0.6": "2011-04-29T06:41:29.873Z", + "0.1.0": "2011-04-29T06:41:29.873Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nTunes/0.0.1", + "0.0.2": "http://registry.npmjs.org/nTunes/0.0.2", + "0.0.3": "http://registry.npmjs.org/nTunes/0.0.3", + "0.0.4": "http://registry.npmjs.org/nTunes/0.0.4", + "0.0.5": "http://registry.npmjs.org/nTunes/0.0.5", + "0.0.6": "http://registry.npmjs.org/nTunes/0.0.6", + "0.1.0": "http://registry.npmjs.org/nTunes/0.1.0" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/nTunes/-/nTunes-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/nTunes/-/nTunes-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/nTunes/-/nTunes-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://packages:5984/nTunes/-/nTunes-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://packages:5984/nTunes/-/nTunes-0.0.5.tgz" + }, + "0.0.6": { + "tarball": "http://packages:5984/nTunes/-/nTunes-0.0.6.tgz" + }, + "0.1.0": { + "shasum": "6a2ba654f3ef9c6aa57a68a2dfb193acdad1d0b6", + "tarball": "http://registry.npmjs.org/nTunes/-/nTunes-0.1.0.tgz" + } + }, + "keywords": [ + "iTunes", + "music", + "http", + "REST", + "API" + ], + "url": "http://registry.npmjs.org/nTunes/" + }, + "ntwitter": { + "name": "ntwitter", + "description": "Asynchronous Twitter REST/stream/search client API for node.js.", + "dist-tags": { + "latest": "0.2.9-2" + }, + "maintainers": [ + { + "name": "avianflu", + "email": "charlie@charlieistheman.com" + } + ], + "time": { + "modified": "2011-11-01T17:11:11.571Z", + "created": "2011-07-10T22:22:25.586Z", + "0.2.0": "2011-07-10T22:22:26.165Z", + "0.2.1": "2011-07-13T06:34:32.675Z", + "0.2.2": "2011-08-11T11:21:23.178Z", + "0.2.2-1": "2011-08-11T11:34:21.909Z", + "0.2.3": "2011-09-13T02:37:55.793Z", + "0.2.4": "2011-09-30T10:08:53.783Z", + "0.2.4-1": "2011-09-30T17:57:23.235Z", + "0.2.5": "2011-10-02T19:55:05.282Z", + "0.2.6": "2011-10-05T00:23:46.395Z", + "0.2.6-1": "2011-10-05T07:25:32.550Z", + "0.2.7": "2011-10-08T02:25:23.854Z", + "0.2.7-1": "2011-10-08T19:48:55.859Z", + "0.2.7-2": "2011-10-19T18:56:23.569Z", + "0.2.8": "2011-10-23T20:50:18.985Z", + "0.2.9": "2011-11-01T06:07:35.342Z", + "0.2.9-2": "2011-11-01T17:11:11.571Z" + }, + "author": { + "name": "jdub, changes by AvianFlu" + }, + "repository": { + "type": "git", + "url": "git://github.com/AvianFlu/ntwitter.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/ntwitter/0.2.0", + "0.2.1": "http://registry.npmjs.org/ntwitter/0.2.1", + "0.2.2": "http://registry.npmjs.org/ntwitter/0.2.2", + "0.2.2-1": "http://registry.npmjs.org/ntwitter/0.2.2-1", + "0.2.3": "http://registry.npmjs.org/ntwitter/0.2.3", + "0.2.4": "http://registry.npmjs.org/ntwitter/0.2.4", + "0.2.4-1": "http://registry.npmjs.org/ntwitter/0.2.4-1", + "0.2.5": "http://registry.npmjs.org/ntwitter/0.2.5", + "0.2.6": "http://registry.npmjs.org/ntwitter/0.2.6", + "0.2.6-1": "http://registry.npmjs.org/ntwitter/0.2.6-1", + "0.2.7": "http://registry.npmjs.org/ntwitter/0.2.7", + "0.2.7-1": "http://registry.npmjs.org/ntwitter/0.2.7-1", + "0.2.7-2": "http://registry.npmjs.org/ntwitter/0.2.7-2", + "0.2.8": "http://registry.npmjs.org/ntwitter/0.2.8", + "0.2.9": "http://registry.npmjs.org/ntwitter/0.2.9", + "0.2.9-2": "http://registry.npmjs.org/ntwitter/0.2.9-2" + }, + "dist": { + "0.2.0": { + "shasum": "27717aec01e5dbab092a26a0dc28ed62e0ab6085", + "tarball": "http://registry.npmjs.org/ntwitter/-/ntwitter-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "a85ea1626816adb8266ae7c8edb155edb307ddc9", + "tarball": "http://registry.npmjs.org/ntwitter/-/ntwitter-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "8776c8cb9c94da6fbc58164d6bdbd3fc82e817f2", + "tarball": "http://registry.npmjs.org/ntwitter/-/ntwitter-0.2.2.tgz" + }, + "0.2.2-1": { + "shasum": "3eb7072542b81f5509a1dce21ad8dc4a7fe2212b", + "tarball": "http://registry.npmjs.org/ntwitter/-/ntwitter-0.2.2-1.tgz" + }, + "0.2.3": { + "shasum": "d2d4acf72fd16d81a33eecd00b67d16a4511f8ba", + "tarball": "http://registry.npmjs.org/ntwitter/-/ntwitter-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "ef59c2e137fd053916f7aa3cc86da54975c5df33", + "tarball": "http://registry.npmjs.org/ntwitter/-/ntwitter-0.2.4.tgz" + }, + "0.2.4-1": { + "shasum": "6f9e767bcacf85d23b850c1757205c61f1d25c3d", + "tarball": "http://registry.npmjs.org/ntwitter/-/ntwitter-0.2.4-1.tgz" + }, + "0.2.5": { + "shasum": "34389b438ccac28d353a528a0b71346b721433a3", + "tarball": "http://registry.npmjs.org/ntwitter/-/ntwitter-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "d3ef46d5e477e022fc83bf4a8d1d95b2c91a1fd4", + "tarball": "http://registry.npmjs.org/ntwitter/-/ntwitter-0.2.6.tgz" + }, + "0.2.6-1": { + "shasum": "3e84e995df4a4467e14dbc0937efc6aeda6ce55a", + "tarball": "http://registry.npmjs.org/ntwitter/-/ntwitter-0.2.6-1.tgz" + }, + "0.2.7": { + "shasum": "e0f2e48b7b188b90388d3d29807eb25cd23ce990", + "tarball": "http://registry.npmjs.org/ntwitter/-/ntwitter-0.2.7.tgz" + }, + "0.2.7-1": { + "shasum": "6f06aed1b43773a1c5aa6d0f1d477a83b9b00859", + "tarball": "http://registry.npmjs.org/ntwitter/-/ntwitter-0.2.7-1.tgz" + }, + "0.2.7-2": { + "shasum": "4b36f89aff71ae1499f8b55c0c6bf28a1b55f374", + "tarball": "http://registry.npmjs.org/ntwitter/-/ntwitter-0.2.7-2.tgz" + }, + "0.2.8": { + "shasum": "44a6051078db160c8dd44e2fbc3cc0d0c7936129", + "tarball": "http://registry.npmjs.org/ntwitter/-/ntwitter-0.2.8.tgz" + }, + "0.2.9": { + "shasum": "943883986bd5f4f38195c017aae06ed8054905dc", + "tarball": "http://registry.npmjs.org/ntwitter/-/ntwitter-0.2.9.tgz" + }, + "0.2.9-2": { + "shasum": "07318501ddb34ad4da7c75987154de3f5671fe3c", + "tarball": "http://registry.npmjs.org/ntwitter/-/ntwitter-0.2.9-2.tgz" + } + }, + "keywords": [ + "twitter", + "streaming", + "oauth" + ], + "url": "http://registry.npmjs.org/ntwitter/" + }, + "nub": { + "name": "nub", + "description": "Uniqueness functions", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-06-25T03:48:56.578Z", + "created": "2011-06-25T03:48:52.561Z", + "0.0.0": "2011-06-25T03:48:56.578Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-nub.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/nub/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "b369bd32bdde66af59605c3b0520bc219dccc04f", + "tarball": "http://registry.npmjs.org/nub/-/nub-0.0.0.tgz" + } + }, + "keywords": [ + "unique", + "uniq", + "uniqBy", + "nub", + "nubBy" + ], + "url": "http://registry.npmjs.org/nub/" + }, + "nubnub": { + "name": "nubnub", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "technoweenie", + "email": "technoweenie@gmail.com" + } + ], + "author": { + "name": "technoweenie" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/nubnub/0.1.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/nubnub/-/nubnub-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/nubnub/" + }, + "null": { + "name": "null", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "satyr", + "email": "murky.satyr@gmail.com" + } + ], + "time": { + "modified": "2011-05-08T18:42:47.876Z", + "created": "2011-05-08T18:42:46.667Z", + "0.0.0": "2011-05-08T18:42:47.876Z" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/null/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "4744b3fb86f3fd1b455feac414a4f50f82a3d06d", + "tarball": "http://registry.npmjs.org/null/-/null-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/null/" + }, + "numb": { + "name": "numb", + "description": "The best way to manage your application's dependencies", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "pitr", + "email": "pitr.vern@gmail.com" + } + ], + "time": { + "modified": "2011-04-05T02:49:02.846Z", + "created": "2011-03-21T04:09:50.979Z", + "0.1.0": "2011-03-21T04:09:51.321Z", + "0.1.1": "2011-04-05T02:49:02.846Z" + }, + "author": { + "name": "Pitr Vernigorov", + "email": "pitr.vern@gmail.com", + "url": "http://pitr.ca/" + }, + "repository": { + "type": "git", + "url": "git://github.com/pitr/numb.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/numb/0.1.0", + "0.1.1": "http://registry.npmjs.org/numb/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "28fe122f5d804b525e880c67033b95bc5494964b", + "tarball": "http://registry.npmjs.org/numb/-/numb-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "b19f264ae4916576c5c54d0fe49bf669424c20a9", + "tarball": "http://registry.npmjs.org/numb/-/numb-0.1.1.tgz" + } + }, + "keywords": [ + "util", + "dependency", + "management" + ], + "url": "http://registry.npmjs.org/numb/" + }, + "number-smusher": { + "name": "number-smusher", + "description": "Combines two 32bit integers into a single 64bit integer string. Can also reverse it back out again", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "sembiance", + "email": "robert@cosmicrealms.com" + } + ], + "time": { + "modified": "2011-12-06T16:28:21.694Z", + "created": "2011-10-01T14:46:27.401Z", + "0.1.0": "2011-10-01T14:46:28.896Z", + "0.1.1": "2011-12-06T15:32:40.450Z", + "0.1.2": "2011-12-06T16:28:21.694Z" + }, + "author": { + "name": "Robert Schultz", + "email": "robert@cosmicrealms.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Sembiance/node-number-smusher.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/number-smusher/0.1.0", + "0.1.1": "http://registry.npmjs.org/number-smusher/0.1.1", + "0.1.2": "http://registry.npmjs.org/number-smusher/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "1939de9a3d7658edd3afee5da2274bc229d49280", + "tarball": "http://registry.npmjs.org/number-smusher/-/number-smusher-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "98fd77d1c9c26ac11a2b0cd130a40f06d8189d44", + "tarball": "http://registry.npmjs.org/number-smusher/-/number-smusher-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "5368416f83f46b2897a8bfe2423b6b11bede8769", + "tarball": "http://registry.npmjs.org/number-smusher/-/number-smusher-0.1.2.tgz" + } + }, + "keywords": [ + "bitshift" + ], + "url": "http://registry.npmjs.org/number-smusher/" + }, + "numeric-buffer": { + "name": "numeric-buffer", + "description": "Create Node.js Buffers with integers", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "#NumericBuffer\n\n`numeric-buffer` is a tiny module for filling a Node.js Buffer with the\nbinary representation of an integer. You can do this in 0.6.0 with\n[`buffer.writeUInt8`](http://nodejs.org/docs/v0.6.0/api/buffers.html#buffer.writeUInt8),\nbut not in 0.4.x.\n\n##Installation\n\n`npm install numeric-buffer`\n\n##Usage\n\n (function () {\n \"use strict\";\n var numericBuffer = require('numeric-buffer');\n var buf = numericBuffer(255);\n // buf is now a Buffer of length 1\n console.log(buf[0]);\n //255\n }());\n", + "maintainers": [ + { + "name": "jergason", + "email": "jergason@gmail.com" + } + ], + "time": { + "modified": "2011-11-10T04:48:18.219Z", + "created": "2011-11-10T04:48:17.011Z", + "0.1.0": "2011-11-10T04:48:18.219Z" + }, + "author": { + "name": "Jamison Dance", + "email": "jergason@gmail.com", + "url": "http://jamisondance.com/" + }, + "repository": { + "url": "" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/numeric-buffer/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "33d14168d93e985104e8068dcc8f3eaf13eb7044", + "tarball": "http://registry.npmjs.org/numeric-buffer/-/numeric-buffer-0.1.0.tgz" + } + }, + "keywords": [ + "buffer", + "integer" + ], + "url": "http://registry.npmjs.org/numeric-buffer/" + }, + "nun": { + "name": "nun", + "description": "Totally asynchronous non-blocking template engine for node.js", + "dist-tags": { + "latest": "0.1.13" + }, + "maintainers": [ + { + "name": "akaspin", + "email": "aka.spin@gmail.com" + } + ], + "author": { + "name": "Alexander Dorofeev" + }, + "repository": { + "type": "git", + "url": "http://github.com/akaspin/nun.git" + }, + "versions": { + "0.1.12": "http://registry.npmjs.org/nun/0.1.12", + "0.1.13": "http://registry.npmjs.org/nun/0.1.13" + }, + "dist": { + "0.1.12": { + "tarball": "http://packages:5984/nun/-/nun-0.1.12.tgz" + }, + "0.1.13": { + "tarball": "http://packages:5984/nun/-/nun-0.1.13.tgz" + } + }, + "url": "http://registry.npmjs.org/nun/" + }, + "nunt": { + "name": "nunt", + "description": "An event emitter and listener system with seamless communication between client/client, server/server and client/server (through socket io)", + "dist-tags": { + "latest": "0.8.0" + }, + "maintainers": [ + { + "name": "camilo.tapia", + "email": "camilo.tapia@gmail.com" + } + ], + "time": { + "modified": "2011-12-11T18:31:52.198Z", + "created": "2011-09-27T20:42:27.551Z", + "0.7.0": "2011-09-27T20:42:28.222Z", + "0.7.1": "2011-10-01T21:16:56.327Z", + "0.7.2": "2011-10-02T08:37:17.826Z", + "0.7.3": "2011-10-12T08:05:31.243Z", + "0.7.4": "2011-10-12T08:55:31.618Z", + "0.7.5": "2011-10-12T08:58:11.501Z", + "0.7.6": "2011-10-12T09:05:36.215Z", + "0.7.7": "2011-10-17T11:06:01.533Z", + "0.1.0": "2011-11-01T10:16:16.423Z", + "0.7.8": "2011-11-01T10:19:02.016Z", + "0.7.9": "2011-12-10T10:45:41.525Z", + "0.8.0": "2011-12-11T18:31:52.198Z" + }, + "author": { + "name": "camilo tapia", + "email": "camilo.tapia@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Camme/nunt.git" + }, + "versions": { + "0.7.0": "http://registry.npmjs.org/nunt/0.7.0", + "0.7.1": "http://registry.npmjs.org/nunt/0.7.1", + "0.7.2": "http://registry.npmjs.org/nunt/0.7.2", + "0.7.3": "http://registry.npmjs.org/nunt/0.7.3", + "0.7.4": "http://registry.npmjs.org/nunt/0.7.4", + "0.7.5": "http://registry.npmjs.org/nunt/0.7.5", + "0.7.6": "http://registry.npmjs.org/nunt/0.7.6", + "0.7.7": "http://registry.npmjs.org/nunt/0.7.7", + "0.1.0": "http://registry.npmjs.org/nunt/0.1.0", + "0.7.8": "http://registry.npmjs.org/nunt/0.7.8", + "0.7.9": "http://registry.npmjs.org/nunt/0.7.9", + "0.8.0": "http://registry.npmjs.org/nunt/0.8.0" + }, + "dist": { + "0.7.0": { + "shasum": "1b3879802e7e5d517aaea60b91feabdefde2a405", + "tarball": "http://registry.npmjs.org/nunt/-/nunt-0.7.0.tgz" + }, + "0.7.1": { + "shasum": "7a38a710751b7fad23fbefd1f560787a81a2a1c8", + "tarball": "http://registry.npmjs.org/nunt/-/nunt-0.7.1.tgz" + }, + "0.7.2": { + "shasum": "78b460fa9e1421e9033b5066dd1501ec98c5e3ba", + "tarball": "http://registry.npmjs.org/nunt/-/nunt-0.7.2.tgz" + }, + "0.7.3": { + "shasum": "b28ccb32c41b7ca466283057c5d044869f3b3991", + "tarball": "http://registry.npmjs.org/nunt/-/nunt-0.7.3.tgz" + }, + "0.7.4": { + "shasum": "aaca039657aa3d38e853356e46fc49337c3022f3", + "tarball": "http://registry.npmjs.org/nunt/-/nunt-0.7.4.tgz" + }, + "0.7.5": { + "shasum": "428a7e01f5b44d550963dac6a358649766982751", + "tarball": "http://registry.npmjs.org/nunt/-/nunt-0.7.5.tgz" + }, + "0.7.6": { + "shasum": "2f5709d6988376d873549f9a16529607d7a4f710", + "tarball": "http://registry.npmjs.org/nunt/-/nunt-0.7.6.tgz" + }, + "0.7.7": { + "shasum": "3ffdde2c749e3927e84c3466d8fd6a7736addcce", + "tarball": "http://registry.npmjs.org/nunt/-/nunt-0.7.7.tgz" + }, + "0.1.0": { + "shasum": "4cc205ff965fa349a68d5344fbd696d004755cc3", + "tarball": "http://registry.npmjs.org/nunt/-/nunt-0.1.0.tgz" + }, + "0.7.8": { + "shasum": "3c1b2d2e700ecb46bf3a6ace630cbd3eefc5cde5", + "tarball": "http://registry.npmjs.org/nunt/-/nunt-0.7.8.tgz" + }, + "0.7.9": { + "shasum": "b7dfa1f707b55c5180bcca4f12062dba294cf9fe", + "tarball": "http://registry.npmjs.org/nunt/-/nunt-0.7.9.tgz" + }, + "0.8.0": { + "shasum": "da5935fe48e0cd2b54a88fa553a1028b680344a1", + "tarball": "http://registry.npmjs.org/nunt/-/nunt-0.8.0.tgz" + } + }, + "url": "http://registry.npmjs.org/nunt/" + }, + "nunz": { + "name": "nunz", + "description": "Totally asynchronous non-blocking template engine for node.js", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "zir", + "email": "zir.echo@gmail.com" + } + ], + "time": { + "modified": "2011-12-09T11:01:58.861Z", + "created": "2011-06-14T18:15:21.469Z", + "0.1.13": "2011-06-14T18:15:23.417Z", + "0.2.0": "2011-12-09T11:01:58.861Z" + }, + "author": { + "name": "Alexander Dorofeev" + }, + "repository": { + "type": "git", + "url": "git://github.com/zir/nunz.git" + }, + "versions": { + "0.1.13": "http://registry.npmjs.org/nunz/0.1.13", + "0.2.0": "http://registry.npmjs.org/nunz/0.2.0" + }, + "dist": { + "0.1.13": { + "shasum": "052d26c02fcc423ad33771970fd367e3588e6d40", + "tarball": "http://registry.npmjs.org/nunz/-/nunz-0.1.13.tgz" + }, + "0.2.0": { + "shasum": "20e956f9d36b1a272393d220c7c757e106c78d2d", + "tarball": "http://registry.npmjs.org/nunz/-/nunz-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/nunz/" + }, + "nurl": { + "name": "nurl", + "description": "Module that provides a simple, immutable URL object for access and manipulation", + "dist-tags": { + "latest": "0.1.2", + "stable": "0.1.2" + }, + "maintainers": [ + { + "name": "codeinthehole", + "email": "david.winterbottom@gmail.com" + } + ], + "author": { + "name": "David Winterbottom", + "email": "david.winterbottom@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/nurl/0.1.0", + "0.1.1": "http://registry.npmjs.org/nurl/0.1.1", + "0.1.2": "http://registry.npmjs.org/nurl/0.1.2" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/nurl/-/nurl-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://packages:5984/nurl/-/nurl-0.1.1.tgz" + }, + "0.1.2": { + "tarball": "http://registry.npmjs.org/nurl/-/nurl@0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/nurl/" + }, + "nut": { + "name": "nut", + "description": "The concise CSS selector engine", + "dist-tags": { + "latest": "0.1.18" + }, + "maintainers": [ + { + "name": "pyrsmk", + "email": "pyrsmk@dreamysource.fr" + } + ], + "time": { + "modified": "2011-11-16T13:46:58.603Z", + "created": "2011-11-03T14:08:38.655Z", + "0.1.5": "2011-11-03T14:09:00.453Z", + "0.1.6": "2011-11-03T18:17:02.525Z", + "0.1.7": "2011-11-03T20:44:05.800Z", + "0.1.8": "2011-11-04T18:54:50.160Z", + "0.1.9": "2011-11-05T18:52:52.256Z", + "0.1.10": "2011-11-08T17:53:11.637Z", + "0.1.11": "2011-11-11T15:35:43.214Z", + "0.1.13": "2011-11-13T11:03:00.341Z", + "0.1.14": "2011-11-13T12:33:53.921Z", + "0.1.15": "2011-11-13T12:40:02.342Z", + "0.1.16": "2011-11-13T13:35:07.432Z", + "0.1.17": "2011-11-14T12:18:55.232Z", + "0.1.18": "2011-11-16T13:46:58.603Z" + }, + "author": { + "name": "Aurélien Delogu", + "email": "pyrsmk@dreamysource.fr", + "url": "http://dreamysource.fr" + }, + "repository": { + "type": "git", + "url": "git://github.com/pyrsmk/nut.git" + }, + "versions": { + "0.1.5": "http://registry.npmjs.org/nut/0.1.5", + "0.1.6": "http://registry.npmjs.org/nut/0.1.6", + "0.1.7": "http://registry.npmjs.org/nut/0.1.7", + "0.1.8": "http://registry.npmjs.org/nut/0.1.8", + "0.1.9": "http://registry.npmjs.org/nut/0.1.9", + "0.1.10": "http://registry.npmjs.org/nut/0.1.10", + "0.1.11": "http://registry.npmjs.org/nut/0.1.11", + "0.1.13": "http://registry.npmjs.org/nut/0.1.13", + "0.1.14": "http://registry.npmjs.org/nut/0.1.14", + "0.1.15": "http://registry.npmjs.org/nut/0.1.15", + "0.1.16": "http://registry.npmjs.org/nut/0.1.16", + "0.1.17": "http://registry.npmjs.org/nut/0.1.17", + "0.1.18": "http://registry.npmjs.org/nut/0.1.18" + }, + "dist": { + "0.1.5": { + "shasum": "a5929f72a0f56f8ab3484155f47d4e95136a1ac0", + "tarball": "http://registry.npmjs.org/nut/-/nut-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "cff647d6915ba803815f8808041d60064ec6cb4e", + "tarball": "http://registry.npmjs.org/nut/-/nut-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "374f01fd9bc894c1c565c84eb87112717ef79543", + "tarball": "http://registry.npmjs.org/nut/-/nut-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "ad171e7a4bcbc46dcaa2540610259f6ef8a427fd", + "tarball": "http://registry.npmjs.org/nut/-/nut-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "54152942f6a2cf453ac19c68c3f32dc2de7f0329", + "tarball": "http://registry.npmjs.org/nut/-/nut-0.1.9.tgz" + }, + "0.1.10": { + "shasum": "b84dd7d98dc025f4d96d2ceea92cb28035912acf", + "tarball": "http://registry.npmjs.org/nut/-/nut-0.1.10.tgz" + }, + "0.1.11": { + "shasum": "3565c275deba82f1b7b0d608f5b7543e0b9e5ecc", + "tarball": "http://registry.npmjs.org/nut/-/nut-0.1.11.tgz" + }, + "0.1.13": { + "shasum": "a657a40fd84859553f50f451db144fcb818dea97", + "tarball": "http://registry.npmjs.org/nut/-/nut-0.1.13.tgz" + }, + "0.1.14": { + "shasum": "9fe48c2c14added08ba748cf6d32fd09f847a656", + "tarball": "http://registry.npmjs.org/nut/-/nut-0.1.14.tgz" + }, + "0.1.15": { + "shasum": "171c6caed53a4adb9c251b620001e3c61fc9048c", + "tarball": "http://registry.npmjs.org/nut/-/nut-0.1.15.tgz" + }, + "0.1.16": { + "shasum": "003f2954b5db02802ffe91b181863309986a3b2c", + "tarball": "http://registry.npmjs.org/nut/-/nut-0.1.16.tgz" + }, + "0.1.17": { + "shasum": "626ae8a54a8a52ffa4084f3e8b0931b5a087b096", + "tarball": "http://registry.npmjs.org/nut/-/nut-0.1.17.tgz" + }, + "0.1.18": { + "shasum": "faa41c7e8a4045b53247cf712e1f41b0aaf60b5d", + "tarball": "http://registry.npmjs.org/nut/-/nut-0.1.18.tgz" + } + }, + "keywords": [ + "ender", + "css", + "selector", + "engine" + ], + "url": "http://registry.npmjs.org/nut/" + }, + "nutil": { + "name": "nutil", + "description": "Utility methods for general node programming", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "jkassemi", + "email": "jkassemi@gmail.com" + } + ], + "time": { + "modified": "2011-06-28T18:26:25.817Z", + "created": "2011-06-28T18:26:24.889Z", + "0.0.1": "2011-06-28T18:26:25.817Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/jkassemi/nutil.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nutil/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "d45fda33a12eba5c3d016224851318b7f83092fe", + "tarball": "http://registry.npmjs.org/nutil/-/nutil-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/nutil/" + }, + "nutils": { + "name": "nutils", + "description": "Unix utilities re-implemented in node.js", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "sriramk", + "email": "me@sriramk.com" + } + ], + "time": { + "modified": "2011-07-30T09:31:34.471Z", + "created": "2011-07-29T22:34:49.983Z", + "0.0.0": "2011-07-29T22:34:51.758Z", + "0.0.1": "2011-07-29T22:36:17.271Z" + }, + "author": { + "name": "Sriram Krishnan", + "email": "me@sriramk.com", + "url": "sriramk.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/sriramk/nutils.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/nutils/0.0.0", + "0.0.1": "http://registry.npmjs.org/nutils/0.0.1" + }, + "dist": { + "0.0.0": { + "shasum": "e16ab217aa872060157ea26249899f2ce8b681c9", + "tarball": "http://registry.npmjs.org/nutils/-/nutils-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "807c5aecbeaa71aaaf0bf052480364e6a8aafbaf", + "tarball": "http://registry.npmjs.org/nutils/-/nutils-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/nutils/" + }, + "nuvem": { + "name": "nuvem", + "description": "MarkLogic Driver for Node.js", + "dist-tags": { + "latest": "0.2.9" + }, + "maintainers": [ + { + "name": "dscape", + "email": "nunojobpinto@gmail.com" + } + ], + "time": { + "modified": "2011-10-03T11:24:23.417Z", + "created": "2011-07-29T16:48:53.797Z", + "0.0.2": "2011-07-29T16:48:54.667Z", + "0.0.3": "2011-08-03T12:03:07.765Z", + "0.0.4": "2011-08-08T17:18:06.889Z", + "0.1.4": "2011-08-09T14:41:29.542Z", + "0.1.5": "2011-08-10T14:50:38.858Z", + "0.2.2": "2011-08-31T21:21:56.390Z", + "0.2.3": "2011-09-02T18:13:05.731Z", + "0.2.4": "2011-09-05T16:11:51.887Z", + "0.2.5": "2011-09-05T22:55:10.094Z", + "0.2.6": "2011-09-06T16:39:16.907Z", + "0.2.7": "2011-09-08T01:35:14.615Z", + "0.2.9": "2011-10-03T11:24:23.417Z" + }, + "author": { + "name": "Nuno Job", + "email": "nunojobpinto@gmail.com", + "url": "http://nunojob.com" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/nuvem/0.0.2", + "0.0.3": "http://registry.npmjs.org/nuvem/0.0.3", + "0.0.4": "http://registry.npmjs.org/nuvem/0.0.4", + "0.1.4": "http://registry.npmjs.org/nuvem/0.1.4", + "0.1.5": "http://registry.npmjs.org/nuvem/0.1.5", + "0.2.2": "http://registry.npmjs.org/nuvem/0.2.2", + "0.2.3": "http://registry.npmjs.org/nuvem/0.2.3", + "0.2.4": "http://registry.npmjs.org/nuvem/0.2.4", + "0.2.5": "http://registry.npmjs.org/nuvem/0.2.5", + "0.2.6": "http://registry.npmjs.org/nuvem/0.2.6", + "0.2.7": "http://registry.npmjs.org/nuvem/0.2.7", + "0.2.9": "http://registry.npmjs.org/nuvem/0.2.9" + }, + "dist": { + "0.0.2": { + "shasum": "edd967cc7445cdf09a352a18e6bd05c9423a2e33", + "tarball": "http://registry.npmjs.org/nuvem/-/nuvem-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "82935b1aa673758ccd75d632d9e5266085a53542", + "tarball": "http://registry.npmjs.org/nuvem/-/nuvem-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "67cecee603c60fe0d12e1ee6c8b2e98124813084", + "tarball": "http://registry.npmjs.org/nuvem/-/nuvem-0.0.4.tgz" + }, + "0.1.4": { + "shasum": "167bfb41eba34873a2ef1d5d705d3dad1be4cadc", + "tarball": "http://registry.npmjs.org/nuvem/-/nuvem-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "1f641eecfb8e438f2799455be3f978e17118d19c", + "tarball": "http://registry.npmjs.org/nuvem/-/nuvem-0.1.5.tgz" + }, + "0.2.2": { + "shasum": "071892f627ef302c5c4f05f7189891e51c2a6c91", + "tarball": "http://registry.npmjs.org/nuvem/-/nuvem-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "604609c5750c4953281b992413306e35ee846a6c", + "tarball": "http://registry.npmjs.org/nuvem/-/nuvem-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "b814c2fee0ea300dc4c7369d8153a6692a5cd6c2", + "tarball": "http://registry.npmjs.org/nuvem/-/nuvem-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "0d7929ac974f4b28c0ea5c6269cb0c6744276bf9", + "tarball": "http://registry.npmjs.org/nuvem/-/nuvem-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "799a920be4ea991ee2abf17eb7caae12ab3decf0", + "tarball": "http://registry.npmjs.org/nuvem/-/nuvem-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "c1ec562622370813c1ca6cd5c1f544b3167cf4a0", + "tarball": "http://registry.npmjs.org/nuvem/-/nuvem-0.2.7.tgz" + }, + "0.2.9": { + "shasum": "659d7bdf01cf36ddaa310094f415adf2db771f8a", + "tarball": "http://registry.npmjs.org/nuvem/-/nuvem-0.2.9.tgz" + } + }, + "keywords": [ + "MarkLogic", + "nuvem", + "search", + "data", + "xml", + "json", + "nosql" + ], + "url": "http://registry.npmjs.org/nuvem/" + }, + "nwm": { + "name": "nwm", + "description": "Dynamic window manager for X11", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "mixu", + "email": "mixu@mixu.net" + } + ], + "time": { + "modified": "2011-09-10T06:48:52.265Z", + "created": "2011-09-10T06:48:51.090Z", + "0.0.1": "2011-09-10T06:48:52.265Z" + }, + "author": { + "name": "Mikito Takada", + "email": "mixu@mixu.net", + "url": "http://blog.mixu.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/mixu/nwm.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nwm/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "76107f92f9d45dcaad7c64d7e1fafbb5b7e587c3", + "tarball": "http://registry.npmjs.org/nwm/-/nwm-0.0.1.tgz" + } + }, + "keywords": [ + "nwm", + "window manager", + "X11" + ], + "url": "http://registry.npmjs.org/nwm/" + }, + "nwt": { + "name": "nwt", + "description": "Node Web Toolkit - A drastic departure from standard web application frameworks.", + "dist-tags": { + "latest": "0.5.2" + }, + "maintainers": [ + { + "name": "kevingrandon", + "email": "kevingrandon@yahoo.com" + } + ], + "time": { + "modified": "2011-11-14T00:55:22.440Z", + "created": "2011-10-04T20:30:28.677Z", + "0.0.1": "2011-10-04T20:30:29.281Z", + "0.0.2": "2011-10-04T20:32:57.832Z", + "0.0.3": "2011-10-04T20:54:23.660Z", + "0.0.4": "2011-10-05T04:09:22.703Z", + "0.0.5": "2011-10-05T04:21:32.584Z", + "0.0.6": "2011-10-05T06:33:28.832Z", + "0.0.7": "2011-10-07T04:50:46.326Z", + "0.0.8": "2011-10-09T18:57:53.936Z", + "0.0.9": "2011-10-11T06:51:10.117Z", + "0.0.10": "2011-10-26T03:14:25.087Z", + "0.0.11": "2011-10-26T05:39:18.212Z", + "0.2.0": "2011-11-01T04:43:08.168Z", + "0.2.1": "2011-11-01T06:20:56.064Z", + "0.2.3": "2011-11-01T07:09:24.654Z", + "0.3.0": "2011-11-01T07:21:10.303Z", + "0.3.2": "2011-11-08T05:52:09.673Z", + "0.3.3": "2011-11-08T06:35:38.304Z", + "0.3.4": "2011-11-09T08:05:58.797Z", + "0.3.5": "2011-11-09T08:08:57.296Z", + "0.3.6": "2011-11-09T08:20:51.717Z", + "0.5.0": "2011-11-09T08:26:05.791Z", + "0.5.1": "2011-11-09T08:58:03.061Z", + "0.5.2": "2011-11-14T00:55:22.440Z" + }, + "author": { + "name": "Kevin Grandon", + "email": "kevingrandon@yahoo.com", + "url": "https://github.com/KevinGrandon/" + }, + "repository": { + "type": "git", + "url": "git://github.com/nwtjs/nwt.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nwt/0.0.1", + "0.0.2": "http://registry.npmjs.org/nwt/0.0.2", + "0.0.3": "http://registry.npmjs.org/nwt/0.0.3", + "0.0.4": "http://registry.npmjs.org/nwt/0.0.4", + "0.0.5": "http://registry.npmjs.org/nwt/0.0.5", + "0.0.6": "http://registry.npmjs.org/nwt/0.0.6", + "0.0.7": "http://registry.npmjs.org/nwt/0.0.7", + "0.0.8": "http://registry.npmjs.org/nwt/0.0.8", + "0.0.9": "http://registry.npmjs.org/nwt/0.0.9", + "0.0.10": "http://registry.npmjs.org/nwt/0.0.10", + "0.0.11": "http://registry.npmjs.org/nwt/0.0.11", + "0.2.0": "http://registry.npmjs.org/nwt/0.2.0", + "0.2.1": "http://registry.npmjs.org/nwt/0.2.1", + "0.2.3": "http://registry.npmjs.org/nwt/0.2.3", + "0.3.0": "http://registry.npmjs.org/nwt/0.3.0", + "0.3.2": "http://registry.npmjs.org/nwt/0.3.2", + "0.3.3": "http://registry.npmjs.org/nwt/0.3.3", + "0.3.4": "http://registry.npmjs.org/nwt/0.3.4", + "0.3.5": "http://registry.npmjs.org/nwt/0.3.5", + "0.3.6": "http://registry.npmjs.org/nwt/0.3.6", + "0.5.0": "http://registry.npmjs.org/nwt/0.5.0", + "0.5.1": "http://registry.npmjs.org/nwt/0.5.1", + "0.5.2": "http://registry.npmjs.org/nwt/0.5.2" + }, + "dist": { + "0.0.1": { + "shasum": "fa5ee81c5f211efaef6f70e118deff22f88455d5", + "tarball": "http://registry.npmjs.org/nwt/-/nwt-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "09d2c7c40d3aa798a9dd8410d3dbd8f0d5bdc6f1", + "tarball": "http://registry.npmjs.org/nwt/-/nwt-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "b5c4fc3319485577b3b8780f5cb45ce4e7b84ae6", + "tarball": "http://registry.npmjs.org/nwt/-/nwt-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "6fb54124d01e8db0648ec541c2a3a4d7599e3302", + "tarball": "http://registry.npmjs.org/nwt/-/nwt-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "5ee4e94685de1f973fb7ec31c228d4f106cc6d91", + "tarball": "http://registry.npmjs.org/nwt/-/nwt-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "83067655da2f6cf5d5fc71824be28445fc9e20db", + "tarball": "http://registry.npmjs.org/nwt/-/nwt-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "ec30343b4cb6c59647934ada2f92fae3843940b2", + "tarball": "http://registry.npmjs.org/nwt/-/nwt-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "5ef1b8f7fe1365bece1f433723bd3336f32b0d29", + "tarball": "http://registry.npmjs.org/nwt/-/nwt-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "c5284b65d88b67ba99dadb2f03f211c1b288abc5", + "tarball": "http://registry.npmjs.org/nwt/-/nwt-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "f19cc4b31c9ecdef39d1d8df3a2459a02c288aeb", + "tarball": "http://registry.npmjs.org/nwt/-/nwt-0.0.10.tgz" + }, + "0.0.11": { + "shasum": "0ffcb76ce26b4c3e6e591577581af18ed44e860a", + "tarball": "http://registry.npmjs.org/nwt/-/nwt-0.0.11.tgz" + }, + "0.2.0": { + "shasum": "08266b386cf5373c4d963008ce3218a396c9c895", + "tarball": "http://registry.npmjs.org/nwt/-/nwt-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "f1d3f8ce112ffb56935740cf0aa109f01717bce7", + "tarball": "http://registry.npmjs.org/nwt/-/nwt-0.2.1.tgz" + }, + "0.2.3": { + "shasum": "07721295ab477c6a35480c86d2a92c5c915917dd", + "tarball": "http://registry.npmjs.org/nwt/-/nwt-0.2.3.tgz" + }, + "0.3.0": { + "shasum": "79a477d382ffcc33c64aa5dacc447613bf801359", + "tarball": "http://registry.npmjs.org/nwt/-/nwt-0.3.0.tgz" + }, + "0.3.2": { + "shasum": "97a22469e975801f88a89a88544d862a15813d59", + "tarball": "http://registry.npmjs.org/nwt/-/nwt-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "309c61e85b8e88bac2269f5e6d3ff6a418ff0706", + "tarball": "http://registry.npmjs.org/nwt/-/nwt-0.3.3.tgz" + }, + "0.3.4": { + "shasum": "3d25152f1a5eaa3b5eb4d359cd26100c7e9c736f", + "tarball": "http://registry.npmjs.org/nwt/-/nwt-0.3.4.tgz" + }, + "0.3.5": { + "shasum": "64569930bc190e8dc3ebdb0546528b7474073e7b", + "tarball": "http://registry.npmjs.org/nwt/-/nwt-0.3.5.tgz" + }, + "0.3.6": { + "shasum": "74b8e37ba3dbf69d2dedcb20b69101aebcddbad5", + "tarball": "http://registry.npmjs.org/nwt/-/nwt-0.3.6.tgz" + }, + "0.5.0": { + "shasum": "f2dd7a72e1b90ba69620d0bec3cab38662ce5c16", + "tarball": "http://registry.npmjs.org/nwt/-/nwt-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "246cf0dc27c36ef552d258b54324aaa2caa11f0a", + "tarball": "http://registry.npmjs.org/nwt/-/nwt-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "a4c9269b8a0d4c38cc452494eadbdf2179edb5d2", + "tarball": "http://registry.npmjs.org/nwt/-/nwt-0.5.2.tgz" + } + }, + "keywords": [ + "nwt" + ], + "url": "http://registry.npmjs.org/nwt/" + }, + "nx": { + "name": "nx", + "description": "Next JS is Application Server on node.js.", + "dist-tags": { + "latest": "0.8.8" + }, + "maintainers": [ + { + "name": "kotsutsumi", + "email": "kotsutsumi@xenophy.com" + } + ], + "time": { + "modified": "2011-12-08T06:49:58.515Z", + "created": "2011-08-08T05:06:23.816Z", + "0.7.3": "2011-12-08T06:49:58.515Z", + "0.7.4": "2011-12-08T06:49:58.515Z", + "0.7.5": "2011-12-08T06:49:58.515Z", + "0.7.6": "2011-12-08T06:49:58.515Z", + "0.8.0": "2011-12-08T06:49:58.515Z", + "0.8.1": "2011-12-08T06:49:58.515Z", + "0.8.2": "2011-12-08T06:49:58.515Z", + "0.8.3": "2011-12-08T06:49:58.515Z", + "0.8.4": "2011-10-30T22:08:40.747Z", + "0.8.5": "2011-11-11T05:12:52.130Z", + "0.8.6": "2011-11-17T09:41:12.694Z", + "0.8.7": "2011-11-28T03:47:19.105Z", + "0.8.8": "2011-12-08T06:49:58.515Z" + }, + "author": { + "name": "Kazuhiro Kotsutsumi", + "email": "kotsutsumi@xenophy.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/xenophy/NextJS.git" + }, + "versions": { + "0.7.3": "http://registry.npmjs.org/nx/0.7.3", + "0.7.4": "http://registry.npmjs.org/nx/0.7.4", + "0.7.5": "http://registry.npmjs.org/nx/0.7.5", + "0.7.6": "http://registry.npmjs.org/nx/0.7.6", + "0.8.0": "http://registry.npmjs.org/nx/0.8.0", + "0.8.1": "http://registry.npmjs.org/nx/0.8.1", + "0.8.2": "http://registry.npmjs.org/nx/0.8.2", + "0.8.3": "http://registry.npmjs.org/nx/0.8.3", + "0.8.4": "http://registry.npmjs.org/nx/0.8.4", + "0.8.5": "http://registry.npmjs.org/nx/0.8.5", + "0.8.6": "http://registry.npmjs.org/nx/0.8.6", + "0.8.7": "http://registry.npmjs.org/nx/0.8.7", + "0.8.8": "http://registry.npmjs.org/nx/0.8.8" + }, + "dist": { + "0.7.3": { + "shasum": "86d55ca2faa7e666304964d647fc7e2831cda8c4", + "tarball": "http://registry.npmjs.org/nx/-/nx-0.7.3.tgz" + }, + "0.7.4": { + "shasum": "34628136f0c2a4d4e795568db33d67bbbe2638ad", + "tarball": "http://registry.npmjs.org/nx/-/nx-0.7.4.tgz" + }, + "0.7.5": { + "shasum": "90ee6d02ce0c82d4c3afb4ea46c2a56f3749c547", + "tarball": "http://registry.npmjs.org/nx/-/nx-0.7.5.tgz" + }, + "0.7.6": { + "shasum": "25616579a99c0e9d16afeda66835bf32c8d5ba07", + "tarball": "http://registry.npmjs.org/nx/-/nx-0.7.6.tgz" + }, + "0.8.0": { + "shasum": "8d19a7b353e7a28de3c1e84321bed3130ba64dc8", + "tarball": "http://registry.npmjs.org/nx/-/nx-0.8.0.tgz" + }, + "0.8.1": { + "shasum": "93ccc042552a1f2589c8d8fc092de476ea417744", + "tarball": "http://registry.npmjs.org/nx/-/nx-0.8.1.tgz" + }, + "0.8.2": { + "shasum": "67e72106ce40aa4b24e73475d569df7d835d2beb", + "tarball": "http://registry.npmjs.org/nx/-/nx-0.8.2.tgz" + }, + "0.8.3": { + "shasum": "eab824df493fb588f6a3b72c0151b91cafd099c1", + "tarball": "http://registry.npmjs.org/nx/-/nx-0.8.3.tgz" + }, + "0.8.4": { + "shasum": "e4c3475e7606e78e1ccdef8fb24a42d2620501f3", + "tarball": "http://registry.npmjs.org/nx/-/nx-0.8.4.tgz" + }, + "0.8.5": { + "shasum": "e452896d078d5980aa9a7a3322dacf1bebb96e03", + "tarball": "http://registry.npmjs.org/nx/-/nx-0.8.5.tgz" + }, + "0.8.6": { + "shasum": "276a49bd4b9d5a99f4520b8d6340086758931ff7", + "tarball": "http://registry.npmjs.org/nx/-/nx-0.8.6.tgz" + }, + "0.8.7": { + "shasum": "4deb48cbbf53814039becb6628f8c7ec7b3f95a8", + "tarball": "http://registry.npmjs.org/nx/-/nx-0.8.7.tgz" + }, + "0.8.8": { + "shasum": "ce51709c18354cbf281fae6ad09705ddbcd73095", + "tarball": "http://registry.npmjs.org/nx/-/nx-0.8.8.tgz" + } + }, + "keywords": [ + "framework", + "web", + "Web Server", + "Application Server", + "NextJS", + "Ext JS" + ], + "url": "http://registry.npmjs.org/nx/" + }, + "nx-core": { + "name": "nx-core", + "description": "JavaScript Class System and Base functions.", + "dist-tags": { + "latest": "0.1.15" + }, + "maintainers": [ + { + "name": "kotsutsumi", + "email": "kotsutsumi@xenophy.com" + } + ], + "time": { + "modified": "2011-10-30T21:39:56.351Z", + "created": "2011-08-02T01:47:09.483Z", + "0.1.0": "2011-08-02T01:47:12.310Z", + "0.1.1": "2011-08-02T04:14:00.887Z", + "0.1.2": "2011-08-08T06:07:45.264Z", + "0.1.3": "2011-08-08T13:06:17.761Z", + "0.1.4": "2011-08-10T21:13:09.595Z", + "0.1.5": "2011-08-10T21:58:43.833Z", + "0.1.6": "2011-08-18T17:21:55.825Z", + "0.1.7": "2011-08-18T17:26:15.219Z", + "0.1.8": "2011-08-18T20:24:25.215Z", + "0.1.9": "2011-09-14T22:40:22.073Z", + "0.1.10": "2011-10-30T21:08:19.319Z", + "0.1.11": "2011-10-30T21:13:17.972Z", + "0.1.12": "2011-10-30T21:18:30.372Z", + "0.1.13": "2011-10-30T21:24:05.705Z", + "0.1.14": "2011-10-30T21:32:50.939Z", + "0.1.15": "2011-10-30T21:39:56.351Z" + }, + "author": { + "name": "Kazuhiro Kotsutsumi", + "email": "kotsutsumi@xenophy.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/xenophy/NextCore.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/nx-core/0.1.0", + "0.1.1": "http://registry.npmjs.org/nx-core/0.1.1", + "0.1.2": "http://registry.npmjs.org/nx-core/0.1.2", + "0.1.3": "http://registry.npmjs.org/nx-core/0.1.3", + "0.1.4": "http://registry.npmjs.org/nx-core/0.1.4", + "0.1.5": "http://registry.npmjs.org/nx-core/0.1.5", + "0.1.6": "http://registry.npmjs.org/nx-core/0.1.6", + "0.1.7": "http://registry.npmjs.org/nx-core/0.1.7", + "0.1.8": "http://registry.npmjs.org/nx-core/0.1.8", + "0.1.9": "http://registry.npmjs.org/nx-core/0.1.9", + "0.1.10": "http://registry.npmjs.org/nx-core/0.1.10", + "0.1.11": "http://registry.npmjs.org/nx-core/0.1.11", + "0.1.12": "http://registry.npmjs.org/nx-core/0.1.12", + "0.1.13": "http://registry.npmjs.org/nx-core/0.1.13", + "0.1.14": "http://registry.npmjs.org/nx-core/0.1.14", + "0.1.15": "http://registry.npmjs.org/nx-core/0.1.15" + }, + "dist": { + "0.1.0": { + "shasum": "1da2317d5159db4fd6912cab41ecd5805961beec", + "tarball": "http://registry.npmjs.org/nx-core/-/nx-core-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "62a9a0dbf8865e1a137718657cc20953f17c7b10", + "tarball": "http://registry.npmjs.org/nx-core/-/nx-core-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "953be7c1eb74b9225136d0ff28010420802b7cc7", + "tarball": "http://registry.npmjs.org/nx-core/-/nx-core-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "af8955d511d5b6f7c6775302a1f00223422f7f75", + "tarball": "http://registry.npmjs.org/nx-core/-/nx-core-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "eda479e98d69d53b54bac0aa59820075faa54421", + "tarball": "http://registry.npmjs.org/nx-core/-/nx-core-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "0789cb6790d79b204d699ce7ac5a3b6b151b3daa", + "tarball": "http://registry.npmjs.org/nx-core/-/nx-core-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "867e7f31b562258b3255ad4bfb2db1f77c957181", + "tarball": "http://registry.npmjs.org/nx-core/-/nx-core-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "48a9c5fd9a0bc2151ae38b6be1c33dd14577d5d5", + "tarball": "http://registry.npmjs.org/nx-core/-/nx-core-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "969c924a0153d6ce447ce041468bb7c526c9a66c", + "tarball": "http://registry.npmjs.org/nx-core/-/nx-core-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "ba3a4fa7c042c3fa75d7e0a757caea94adb7e484", + "tarball": "http://registry.npmjs.org/nx-core/-/nx-core-0.1.9.tgz" + }, + "0.1.10": { + "shasum": "ec78a3ed32e9acfb5f5db7b9b801b6a2628978c1", + "tarball": "http://registry.npmjs.org/nx-core/-/nx-core-0.1.10.tgz" + }, + "0.1.11": { + "shasum": "bef827a5041f88e727059d8de77461e052ce2f66", + "tarball": "http://registry.npmjs.org/nx-core/-/nx-core-0.1.11.tgz" + }, + "0.1.12": { + "shasum": "fae323510110212cffb38c72205037fe2da7b855", + "tarball": "http://registry.npmjs.org/nx-core/-/nx-core-0.1.12.tgz" + }, + "0.1.13": { + "shasum": "936efb9b98ac75fd1d06ef3bc8f3783f43edda9b", + "tarball": "http://registry.npmjs.org/nx-core/-/nx-core-0.1.13.tgz" + }, + "0.1.14": { + "shasum": "1949d9bc52fae1ea1985c3f00b049123850e8bfb", + "tarball": "http://registry.npmjs.org/nx-core/-/nx-core-0.1.14.tgz" + }, + "0.1.15": { + "shasum": "b3e907462394b499d501d81a2f42bba279db2bd9", + "tarball": "http://registry.npmjs.org/nx-core/-/nx-core-0.1.15.tgz" + } + }, + "keywords": [ + "Functions", + "Class", + "Loader", + "NextJS", + "Ext JS" + ], + "url": "http://registry.npmjs.org/nx-core/" + }, + "nx-daemon": { + "name": "nx-daemon", + "description": "node process daemon tools for Next JS.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "kotsutsumi", + "email": "kotsutsumi@xenophy.com" + } + ], + "time": { + "modified": "2011-11-01T02:59:42.073Z", + "created": "2011-08-26T13:27:15.360Z", + "0.1.0": "2011-08-26T13:27:16.428Z", + "0.1.1": "2011-11-01T02:59:42.073Z" + }, + "author": { + "name": "Kazuhiro Kotsutsumi", + "email": "kotsutsumi@xenophy.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/xenophy/NextDaemon.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/nx-daemon/0.1.0", + "0.1.1": "http://registry.npmjs.org/nx-daemon/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "2c88479e02128133c6227b580bd52efad0b078d9", + "tarball": "http://registry.npmjs.org/nx-daemon/-/nx-daemon-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "61eb9b740f086007150a28ec5df50d92f023e1b4", + "tarball": "http://registry.npmjs.org/nx-daemon/-/nx-daemon-0.1.1.tgz" + } + }, + "keywords": [ + "framework", + "web", + "Web Server", + "Application Server", + "NextJS", + "Ext JS" + ], + "url": "http://registry.npmjs.org/nx-daemon/" + }, + "nyaatorrents": { + "name": "nyaatorrents", + "description": "Interact with NyaaTorrents (nyaa.eu, formerly nyaatorrents.info)", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "deoxxa", + "email": "deoxxa@fknsrs.biz" + } + ], + "time": { + "modified": "2011-07-11T09:39:28.742Z", + "created": "2011-07-10T05:10:49.234Z", + "0.0.1": "2011-07-10T05:10:51.805Z", + "0.0.2": "2011-07-11T09:39:28.742Z" + }, + "author": { + "name": "Conrad Pankoff", + "email": "deoxxa@fknsrs.biz", + "url": "http://www.fknsrs.biz/" + }, + "repository": { + "type": "git", + "url": "git://github.com/deoxxa/node-nyaatorrents.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nyaatorrents/0.0.1", + "0.0.2": "http://registry.npmjs.org/nyaatorrents/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "c96a9ed4407bc1cd11a916babc2e90d0df363a35", + "tarball": "http://registry.npmjs.org/nyaatorrents/-/nyaatorrents-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "d8b763469add1c3d9476b4e735d8f93d076dc7f0", + "tarball": "http://registry.npmjs.org/nyaatorrents/-/nyaatorrents-0.0.2.tgz" + } + }, + "keywords": [ + "torrent", + "torrents", + "nyaatorrents", + "nyaa", + "search" + ], + "url": "http://registry.npmjs.org/nyaatorrents/" + }, + "nyala": { + "name": "nyala", + "description": "A Light And Nimble Promise Library For Node And The Browser", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "naneau", + "email": "npm@naneau.nl" + } + ], + "time": { + "modified": "2011-05-02T16:54:50.073Z", + "created": "2011-04-22T20:37:36.813Z", + "0.0.1": "2011-04-22T20:37:37.504Z", + "0.0.2": "2011-04-27T13:07:51.723Z", + "0.0.3": "2011-04-27T16:58:45.235Z", + "0.0.4": "2011-04-27T17:02:13.387Z", + "0.0.5": "2011-04-27T17:30:01.601Z", + "0.0.6": "2011-05-02T16:53:10.137Z" + }, + "author": { + "name": "Maurice Fonk", + "email": "nyala@naneau.nl", + "url": "http://naneau.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/naneau/nyala.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nyala/0.0.1", + "0.0.2": "http://registry.npmjs.org/nyala/0.0.2", + "0.0.3": "http://registry.npmjs.org/nyala/0.0.3", + "0.0.4": "http://registry.npmjs.org/nyala/0.0.4", + "0.0.5": "http://registry.npmjs.org/nyala/0.0.5", + "0.0.6": "http://registry.npmjs.org/nyala/0.0.6" + }, + "dist": { + "0.0.1": { + "shasum": "f64dd53dc63b91f0c80341338712c3ca0c78707e", + "tarball": "http://registry.npmjs.org/nyala/-/nyala-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "7ae8a55d759d790c65752985d83be0e13078ad99", + "tarball": "http://registry.npmjs.org/nyala/-/nyala-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "ae389abee6bd950be2f8e1441719e8fec44897a8", + "tarball": "http://registry.npmjs.org/nyala/-/nyala-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "5d6b90090f28836285349fa151def8bed0a22604", + "tarball": "http://registry.npmjs.org/nyala/-/nyala-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "8a3630e9995485c1fb7471cf025b93131af8d69d", + "tarball": "http://registry.npmjs.org/nyala/-/nyala-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "b666878b02001e3db5e51d84c9cf0bd4334d1a68", + "tarball": "http://registry.npmjs.org/nyala/-/nyala-0.0.6.tgz" + } + }, + "url": "http://registry.npmjs.org/nyala/" + }, + "nyam": { + "name": "nyam", + "description": "Yammer CLI tool using node.js", + "dist-tags": { + "latest": "0.0.7" + }, + "maintainers": [ + { + "name": "csanz", + "email": "chrissanz@gmail.com" + } + ], + "time": { + "modified": "2011-05-01T16:33:56.516Z", + "created": "2011-04-18T21:22:23.935Z", + "0.0.2": "2011-04-18T21:22:24.294Z", + "0.0.3": "2011-04-19T05:50:07.006Z", + "0.0.4": "2011-04-19T07:25:02.318Z", + "0.0.5": "2011-04-19T08:27:43.733Z", + "0.0.6": "2011-04-20T00:41:23.006Z", + "0.0.7": "2011-05-01T06:50:58.680Z" + }, + "author": { + "name": "Christian Sanz", + "email": "chris@geekli.st" + }, + "repository": { + "type": "git", + "url": "http://github.com/csanz/nyam.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/nyam/0.0.2", + "0.0.3": "http://registry.npmjs.org/nyam/0.0.3", + "0.0.4": "http://registry.npmjs.org/nyam/0.0.4", + "0.0.5": "http://registry.npmjs.org/nyam/0.0.5", + "0.0.6": "http://registry.npmjs.org/nyam/0.0.6", + "0.0.7": "http://registry.npmjs.org/nyam/0.0.7" + }, + "dist": { + "0.0.2": { + "shasum": "7c7ac0ca6a81afad01053784e8e53c1814615eec", + "tarball": "http://registry.npmjs.org/nyam/-/nyam-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "a457224bdb63f4bed80d922657072aa39bd51c00", + "tarball": "http://registry.npmjs.org/nyam/-/nyam-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "4236ad46223a93dd3d171e998183b5f27d890700", + "tarball": "http://registry.npmjs.org/nyam/-/nyam-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "3e5f8fd1a5d6133f18475866b9737030de92e098", + "tarball": "http://registry.npmjs.org/nyam/-/nyam-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "7df4df4516db949d2f38652cdabfd2201b452726", + "tarball": "http://registry.npmjs.org/nyam/-/nyam-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "6d5a96e4195dae3f633ddd7b11d9a9b95dd87f76", + "tarball": "http://registry.npmjs.org/nyam/-/nyam-0.0.7.tgz" + } + }, + "keywords": [ + "yammer", + "cli", + "github", + "tools" + ], + "url": "http://registry.npmjs.org/nyam/" + }, + "nyancat": { + "name": "nyancat", + "description": "print a nyan cat to the console", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "niftylettuce", + "email": "nicholasbaugh@gmail.com" + } + ], + "time": { + "modified": "2011-09-04T14:32:59.872Z", + "created": "2011-06-26T23:06:26.223Z", + "0.0.1": "2011-06-26T23:06:26.858Z", + "0.0.2": "2011-06-27T06:22:58.691Z", + "0.0.3": "2011-06-28T05:24:54.048Z" + }, + "author": { + "name": "Nick Baugh", + "email": "niftylettuce@gmail.com", + "url": "http://nickbaugh.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/niftylettuce/nyancat.js.git" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/nyancat/0.0.3" + }, + "dist": { + "0.0.3": { + "shasum": "785813a02186d90993062329874ec6bc8e019843", + "tarball": "http://registry.npmjs.org/nyancat/-/nyancat-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/nyancat/" + }, + "nymph": { + "name": "nymph", + "description": "Nymph is a node.js IRC bot module", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "stagas", + "email": "gstagas@gmail.com" + } + ], + "time": { + "modified": "2011-05-30T23:09:34.857Z", + "created": "2011-05-30T21:11:51.532Z", + "0.0.1": "2011-05-30T21:11:52.203Z", + "0.0.2": "2011-05-30T23:09:34.857Z" + }, + "author": { + "name": "George Stagas", + "email": "gstagas@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/stagas/nymph.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/nymph/0.0.1", + "0.0.2": "http://registry.npmjs.org/nymph/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "bbd14397ab44d525123b4514d2577e1d54532947", + "tarball": "http://registry.npmjs.org/nymph/-/nymph-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c8bc65c05db3c42997f0340199efcf1a99123fcb", + "tarball": "http://registry.npmjs.org/nymph/-/nymph-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/nymph/" + }, + "o3-xml": { + "name": "o3-xml", + "description": "NodeJS library for W3C-DOM XML api with XPath and namespaces. It is based on LibXML2.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "francois", + "email": "francois@2metz.fr" + } + ], + "time": { + "modified": "2011-04-15T15:39:40.611Z", + "created": "2011-04-15T15:39:40.100Z", + "0.1.0": "2011-04-15T15:39:40.611Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/o3-xml/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "464720c613aec7a7bcfdaf3fc55697eaa152e97a", + "tarball": "http://registry.npmjs.org/o3-xml/-/o3-xml-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/o3-xml/" + }, + "oahu": { + "name": "oahu", + "description": "OahuClient", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "rdardour", + "email": "romain@oahu.fr" + } + ], + "time": { + "modified": "2011-09-04T22:02:27.705Z", + "created": "2011-09-04T22:02:25.976Z", + "0.0.1": "2011-09-04T22:02:27.705Z" + }, + "author": { + "name": "Romain Dardour", + "email": "romain@oahu.fr" + }, + "repository": { + "type": "git", + "url": "git://github.com/sixdegrees/oahu-node-client.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/oahu/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "2a15f8a0abaab370144ffeb3c86d5115b529c0de", + "tarball": "http://registry.npmjs.org/oahu/-/oahu-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/oahu/" + }, + "oath": { + "name": "oath", + "description": "Tiny library for node and the browser that makes it easy to build and interact with promise/future based APIs.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "jakeluer", + "email": "jake.luer@incatern.com" + } + ], + "time": { + "modified": "2011-12-09T07:28:08.672Z", + "created": "2011-10-03T16:06:58.028Z", + "0.0.1": "2011-10-03T16:06:58.615Z", + "0.0.2": "2011-10-04T10:58:38.640Z", + "0.0.3": "2011-10-04T12:46:40.010Z", + "0.0.4": "2011-10-05T09:42:14.083Z", + "0.0.5": "2011-10-05T09:55:18.062Z", + "0.1.0": "2011-12-09T07:28:08.672Z" + }, + "author": { + "name": "Jake Luer", + "email": "jake@alogicalparadox.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/logicalparadox/oath.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/oath/0.0.1", + "0.0.2": "http://registry.npmjs.org/oath/0.0.2", + "0.0.3": "http://registry.npmjs.org/oath/0.0.3", + "0.0.4": "http://registry.npmjs.org/oath/0.0.4", + "0.0.5": "http://registry.npmjs.org/oath/0.0.5", + "0.1.0": "http://registry.npmjs.org/oath/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "3297d264b206b04631d84a0d74a1aad6f4bf4f2b", + "tarball": "http://registry.npmjs.org/oath/-/oath-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "e68e3535842730bf1408185bd5322c32912391ef", + "tarball": "http://registry.npmjs.org/oath/-/oath-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "a3b545d2368b6ec907809e709be3c92db289248e", + "tarball": "http://registry.npmjs.org/oath/-/oath-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "01151e7cf78fd10aaaf9934a24e593ef6f8a89d3", + "tarball": "http://registry.npmjs.org/oath/-/oath-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "bcdbc7aab149a14f86761004b986520db2749b72", + "tarball": "http://registry.npmjs.org/oath/-/oath-0.0.5.tgz" + }, + "0.1.0": { + "shasum": "0efd62bdf668299a0a67146570caf170713b00ec", + "tarball": "http://registry.npmjs.org/oath/-/oath-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/oath/" + }, + "oauth": { + "name": "oauth", + "dist-tags": { + "latest": "0.9.5" + }, + "maintainers": [ + { + "name": "ciaranj", + "email": "ciaranj@gmail.com" + } + ], + "author": { + "name": "Ciaran Jessup", + "email": "ciaranj@gmail.com" + }, + "description": "Library for interacting with OAuth 1.0, 1.0A, 2 and Echo. Provides simplified client access and allows for construction of more complex apis and OAuth providers.", + "repository": { + "type": "git", + "url": "git://github.com/ciaranj/node-oauth.git" + }, + "time": { + "modified": "2011-11-07T19:41:46.016Z", + "created": "2011-02-13T11:40:55.825Z", + "0.7.4": "2011-02-13T11:40:55.825Z", + "0.7.5": "2011-02-13T11:40:55.825Z", + "0.7.6": "2011-02-13T11:40:55.825Z", + "0.7.7": "2011-02-13T11:40:55.825Z", + "0.8.0": "2011-02-13T11:40:55.825Z", + "0.8.1": "2011-02-13T11:40:55.825Z", + "0.8.2": "2011-02-13T11:40:55.825Z", + "0.8.3": "2011-02-13T11:40:55.825Z", + "0.8.4": "2011-02-13T11:40:55.825Z", + "0.9.0": "2011-02-13T11:40:55.825Z", + "0.9.1": "2011-06-23T21:20:51.097Z", + "0.9.2": "2011-06-29T23:01:46.938Z", + "0.9.3": "2011-07-23T21:58:08.180Z", + "0.9.4": "2011-08-15T22:32:14.898Z", + "0.9.5": "2011-08-17T12:21:26.264Z" + }, + "users": { + "kwerty": true + }, + "versions": { + "0.7.4": "http://registry.npmjs.org/oauth/0.7.4", + "0.7.5": "http://registry.npmjs.org/oauth/0.7.5", + "0.7.6": "http://registry.npmjs.org/oauth/0.7.6", + "0.7.7": "http://registry.npmjs.org/oauth/0.7.7", + "0.8.0": "http://registry.npmjs.org/oauth/0.8.0", + "0.8.1": "http://registry.npmjs.org/oauth/0.8.1", + "0.8.2": "http://registry.npmjs.org/oauth/0.8.2", + "0.8.3": "http://registry.npmjs.org/oauth/0.8.3", + "0.8.4": "http://registry.npmjs.org/oauth/0.8.4", + "0.9.0": "http://registry.npmjs.org/oauth/0.9.0", + "0.9.1": "http://registry.npmjs.org/oauth/0.9.1", + "0.9.2": "http://registry.npmjs.org/oauth/0.9.2", + "0.9.3": "http://registry.npmjs.org/oauth/0.9.3", + "0.9.4": "http://registry.npmjs.org/oauth/0.9.4", + "0.9.5": "http://registry.npmjs.org/oauth/0.9.5" + }, + "dist": { + "0.7.4": { + "tarball": "http://registry.npmjs.org/oauth/-/oauth-0.7.4.tgz" + }, + "0.7.5": { + "tarball": "http://registry.npmjs.org/oauth/-/oauth-0.7.5.tgz" + }, + "0.7.6": { + "tarball": "http://registry.npmjs.org/oauth/-/oauth-0.7.6.tgz" + }, + "0.7.7": { + "tarball": "http://registry.npmjs.org/oauth/-/oauth-0.7.7.tgz" + }, + "0.8.0": { + "tarball": "http://registry.npmjs.org/oauth/-/oauth-0.8.0.tgz" + }, + "0.8.1": { + "tarball": "http://registry.npmjs.org/oauth/-/oauth-0.8.1.tgz" + }, + "0.8.2": { + "tarball": "http://registry.npmjs.org/oauth/-/oauth-0.8.2.tgz" + }, + "0.8.3": { + "tarball": "http://registry.npmjs.org/oauth/-/oauth-0.8.3.tgz" + }, + "0.8.4": { + "tarball": "http://registry.npmjs.org/oauth/-/oauth-0.8.4.tgz" + }, + "0.9.0": { + "shasum": "ce161706b8500df57c93a41e4546fde274948f91", + "tarball": "http://registry.npmjs.org/oauth/-/oauth-0.9.0.tgz" + }, + "0.9.1": { + "shasum": "50e412176939e27e9e59e7d39185e6e96c013ce3", + "tarball": "http://registry.npmjs.org/oauth/-/oauth-0.9.1.tgz" + }, + "0.9.2": { + "shasum": "dbea25277d597ff49ebe0d2c6e6f7666630e7f75", + "tarball": "http://registry.npmjs.org/oauth/-/oauth-0.9.2.tgz" + }, + "0.9.3": { + "shasum": "9dba6bad5fcbd98ae8182e9df9c34136013546ff", + "tarball": "http://registry.npmjs.org/oauth/-/oauth-0.9.3.tgz" + }, + "0.9.4": { + "shasum": "0f0ba4bf4c377543710f53f60accd590ce5d4e9a", + "tarball": "http://registry.npmjs.org/oauth/-/oauth-0.9.4.tgz" + }, + "0.9.5": { + "shasum": "c151e69692668e2d7c19804d971c6427c6d74aae", + "tarball": "http://registry.npmjs.org/oauth/-/oauth-0.9.5.tgz" + } + }, + "url": "http://registry.npmjs.org/oauth/" + }, + "oauth-client": { + "name": "oauth-client", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "unscene", + "email": "ryan.fairchild@gmail.com" + } + ], + "author": { + "name": "Ryan Fairchild" + }, + "description": "OAuth 1.0 (RFC 5849) client library.", + "repository": { + "type": "git", + "url": "git://github.com/unscene/node-oauth.git" + }, + "time": { + "modified": "2011-06-22T21:31:56.233Z", + "created": "2011-06-22T21:31:56.233Z", + "0.1.5": "2011-06-22T21:31:56.233Z", + "0.1.6": "2011-06-22T21:31:56.233Z", + "0.1.7": "2011-06-22T21:31:56.233Z", + "0.2.0": "2011-06-22T21:31:56.233Z" + }, + "versions": { + "0.1.5": "http://registry.npmjs.org/oauth-client/0.1.5", + "0.1.6": "http://registry.npmjs.org/oauth-client/0.1.6", + "0.1.7": "http://registry.npmjs.org/oauth-client/0.1.7", + "0.2.0": "http://registry.npmjs.org/oauth-client/0.2.0" + }, + "dist": { + "0.1.5": { + "tarball": "http://packages:5984/oauth-client/-/oauth-client-0.1.5.tgz" + }, + "0.1.6": { + "tarball": "http://packages:5984/oauth-client/-/oauth-client-0.1.6.tgz" + }, + "0.1.7": { + "tarball": "http://packages:5984/oauth-client/-/oauth-client-0.1.7.tgz" + }, + "0.2.0": { + "shasum": "9787c5294946586438256dca770a599e789d1394", + "tarball": "http://registry.npmjs.org/oauth-client/-/oauth-client-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/oauth-client/" + }, + "oauth-jesse": { + "name": "oauth-jesse", + "description": "Jesse's fork of a Library for interacting with OAuth 1.0, 1.0A, 2 and Echo. Provides simplified client access and allows for construction of more complex apis and OAuth providers.", + "dist-tags": { + "latest": "0.9.5" + }, + "maintainers": [ + { + "name": "jessesanford", + "email": "jessesanford@gmail.com" + } + ], + "time": { + "modified": "2011-11-08T16:17:19.208Z", + "created": "2011-11-08T16:17:18.995Z", + "0.9.5": "2011-11-08T16:17:19.208Z" + }, + "author": { + "name": "Ciaran Jessup", + "email": "ciaranj@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/therealjessesanford/node-oauth.git" + }, + "versions": { + "0.9.5": "http://registry.npmjs.org/oauth-jesse/0.9.5" + }, + "dist": { + "0.9.5": { + "shasum": "0ae9fdc5523c0fbbb96fcd6a9e46dc623677a56f", + "tarball": "http://registry.npmjs.org/oauth-jesse/-/oauth-jesse-0.9.5.tgz" + } + }, + "url": "http://registry.npmjs.org/oauth-jesse/" + }, + "oauth-server": { + "name": "oauth-server", + "description": "Server, supporting OAuth version 1.0A", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "selead", + "email": "allselead@gmail.com" + } + ], + "time": { + "modified": "2011-04-19T06:50:58.392Z", + "created": "2011-04-08T22:26:03.294Z", + "0.1.5": "2011-04-08T22:26:03.786Z", + "0.2.0": "2011-04-19T06:50:22.348Z" + }, + "author": { + "name": "Temnov Kirill", + "email": "allselead@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/selead/oauth-server.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/oauth-server/0.2.0" + }, + "dist": { + "0.2.0": { + "shasum": "314c7356ae494694e5d7458385dfed41da9aeec1", + "tarball": "http://registry.npmjs.org/oauth-server/-/oauth-server-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/oauth-server/" + }, + "oauth2": { + "name": "oauth2", + "description": "Oauth2 multi provider npm module", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "lexer", + "email": "alexey.v.zaharov@gmail.com" + } + ], + "time": { + "modified": "2011-04-17T08:10:10.005Z", + "created": "2011-04-17T08:10:08.967Z", + "0.0.1": "2011-04-17T08:10:10.005Z" + }, + "author": { + "name": "Alexey Zakharov", + "email": "alexey.v.zaharov@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/lexer/node-ouath2.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/oauth2/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "7ce91eac8e2f12ec92e0ac708dfb48ef88d4d2dd", + "tarball": "http://registry.npmjs.org/oauth2/-/oauth2-0.0.1.tgz" + } + }, + "keywords": [ + "ouath2", + "facebook", + "google", + "vkontakte", + "twitter" + ], + "url": "http://registry.npmjs.org/oauth2/" + }, + "oauth2-client": { + "name": "oauth2-client", + "description": "A library providing the bases to implement an OAuth2 client (as connect middleware).", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "francois", + "email": "francois@2metz.fr" + } + ], + "time": { + "modified": "2011-03-03T18:51:17.090Z", + "created": "2011-02-14T10:49:26.038Z", + "0.0.2": "2011-02-14T10:49:27.010Z", + "0.0.3": "2011-02-17T15:42:02.237Z", + "0.0.4": "2011-03-03T18:51:17.090Z" + }, + "repository": { + "type": "git", + "url": "https://github.com/AF83/oauth2_client_node.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/oauth2-client/0.0.2", + "0.0.3": "http://registry.npmjs.org/oauth2-client/0.0.3", + "0.0.4": "http://registry.npmjs.org/oauth2-client/0.0.4" + }, + "dist": { + "0.0.2": { + "shasum": "28255a8b4c64d5f63aa0da50d3dff02ab4a706ea", + "tarball": "http://registry.npmjs.org/oauth2-client/-/oauth2-client-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "cb15505bdd14883ce4d9f01477cabb96789d92a3", + "tarball": "http://registry.npmjs.org/oauth2-client/-/oauth2-client-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "ca72e3c8f1c2ef1d98ed312d213487e1caba412a", + "tarball": "http://registry.npmjs.org/oauth2-client/-/oauth2-client-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/oauth2-client/" + }, + "oauth2-provider": { + "name": "oauth2-provider", + "description": "A simple customizable OAuth 2.0 provider (server) for node.js.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "amir", + "email": "a@unoc.net" + } + ], + "time": { + "modified": "2011-09-26T03:01:53.604Z", + "created": "2011-09-07T05:57:16.957Z", + "0.0.1": "2011-09-07T05:57:18.239Z", + "0.0.2": "2011-09-26T03:01:53.604Z" + }, + "author": { + "name": "Amir Malik", + "url": "http://amir.unoc.net/" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/oauth2-provider/0.0.1", + "0.0.2": "http://registry.npmjs.org/oauth2-provider/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "bffe8097a6e8d7c12f84ff365e36bf17ba8acc5c", + "tarball": "http://registry.npmjs.org/oauth2-provider/-/oauth2-provider-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "e91452602e92f118fcc99b540329333d459e3d9f", + "tarball": "http://registry.npmjs.org/oauth2-provider/-/oauth2-provider-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/oauth2-provider/" + }, + "oauth2-server": { + "name": "oauth2-server", + "description": "Node library providing the bases to implement an OAuth2 server (as connect middleware).", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "francois", + "email": "francois@2metz.fr" + } + ], + "time": { + "modified": "2011-02-21T15:04:44.640Z", + "created": "2011-02-14T13:46:43.574Z", + "0.0.1pre": "2011-02-14T13:46:44.523Z", + "0.0.1pre2": "2011-02-14T14:19:17.018Z", + "0.0.1pre3": "2011-02-14T15:11:11.015Z", + "0.0.1pre4": "2011-02-15T10:35:15.939Z", + "0.0.1": "2011-02-21T15:04:44.640Z" + }, + "repository": { + "type": "git", + "url": "https://github.com/AF83/oauth2_server_node.git" + }, + "versions": { + "0.0.1pre": "http://registry.npmjs.org/oauth2-server/0.0.1pre", + "0.0.1pre2": "http://registry.npmjs.org/oauth2-server/0.0.1pre2", + "0.0.1pre3": "http://registry.npmjs.org/oauth2-server/0.0.1pre3", + "0.0.1pre4": "http://registry.npmjs.org/oauth2-server/0.0.1pre4", + "0.0.1": "http://registry.npmjs.org/oauth2-server/0.0.1" + }, + "dist": { + "0.0.1pre": { + "shasum": "3e2682b9deba7c1d2c764a5551a54cdf9ffdc622", + "tarball": "http://registry.npmjs.org/oauth2-server/-/oauth2-server-0.0.1pre.tgz" + }, + "0.0.1pre2": { + "shasum": "77586654951a2eb6aedd4cfb317febbb52cb542f", + "tarball": "http://registry.npmjs.org/oauth2-server/-/oauth2-server-0.0.1pre2.tgz" + }, + "0.0.1pre3": { + "shasum": "9ad1fc26cb22f854eeac1165125a396e0c205347", + "tarball": "http://registry.npmjs.org/oauth2-server/-/oauth2-server-0.0.1pre3.tgz" + }, + "0.0.1pre4": { + "shasum": "bd9f77f829c8a4edd4665e8ff6d43f82dabd86a4", + "tarball": "http://registry.npmjs.org/oauth2-server/-/oauth2-server-0.0.1pre4.tgz" + }, + "0.0.1": { + "shasum": "e54acd115517d12367ad5cb0ed5aea7ab42d178a", + "tarball": "http://registry.npmjs.org/oauth2-server/-/oauth2-server-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/oauth2-server/" + }, + "obj_diff": { + "name": "obj_diff", + "description": "Find all differences between Javascript objects", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "jhs", + "email": "jhs@couchone.com" + } + ], + "time": { + "modified": "2011-10-13T23:26:16.163Z", + "created": "2011-06-20T04:06:14.016Z", + "0.1.0": "2011-06-20T04:06:16.582Z", + "0.2.0": "2011-10-13T23:26:16.163Z" + }, + "author": { + "name": "Jason Smith", + "email": "jhs@iriscouch.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/iriscouch/obj_diff.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/obj_diff/0.1.0", + "0.2.0": "http://registry.npmjs.org/obj_diff/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "13a1e95ec7a4fbace3c3545de086ecb3f4f62132", + "tarball": "http://registry.npmjs.org/obj_diff/-/obj_diff-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "6a80cd45465194a347f4f0ec8a36b6950b6049ba", + "tarball": "http://registry.npmjs.org/obj_diff/-/obj_diff-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/obj_diff/" + }, + "object-additions": { + "name": "object-additions", + "description": "Methods which extend the Object object.", + "dist-tags": { + "latest": "0.5.0" + }, + "maintainers": [ + { + "name": "dandean", + "email": "me@dandean.com" + } + ], + "time": { + "modified": "2010-12-21T08:14:44.032Z", + "created": "2010-12-21T08:14:43.723Z", + "0.5.0": "2010-12-21T08:14:44.032Z" + }, + "author": { + "name": "Dan Dean", + "email": "me@dandean.com", + "url": "http://dandean.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/dandean/object-additions.git" + }, + "versions": { + "0.5.0": "http://registry.npmjs.org/object-additions/0.5.0" + }, + "dist": { + "0.5.0": { + "shasum": "1e3649cade293877f53e7ebde586fc62e77b9a59", + "tarball": "http://registry.npmjs.org/object-additions/-/object-additions-0.5.0.tgz" + } + }, + "url": "http://registry.npmjs.org/object-additions/" + }, + "object-proxy": { + "name": "object-proxy", + "description": "Proxying an object's methods", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "flashingpumpkin", + "email": "alen@caffeinehit.com" + } + ], + "author": { + "name": "Alen Mujezinovic", + "email": "alen@caffeinehit.com" + }, + "repository": { + "type": "git", + "url": "https//github.com/flashingpumpkin/node-pubsub.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/object-proxy/0.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/object-proxy/-/object-proxy-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/object-proxy/" + }, + "object-sync": { + "name": "object-sync", + "description": "Transparently synchronize objects accross many connected clients.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "jonas.huckestein", + "email": "jonas.huckestein@gmail.com" + } + ], + "time": { + "modified": "2011-02-06T09:28:20.549Z", + "created": "2011-02-06T09:27:20.969Z", + "0.1.0": "2011-02-06T09:27:21.368Z", + "0.1.1": "2011-02-06T09:28:20.549Z" + }, + "author": { + "name": "Jonas Huckestein", + "email": "jonas.huckestein@gmail.com", + "url": "http://thezukunft.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/object-sync/0.1.0", + "0.1.1": "http://registry.npmjs.org/object-sync/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "993fb078d1cb1b466ad58b8a3240bd0969bd797e", + "tarball": "http://registry.npmjs.org/object-sync/-/object-sync-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "8d6330a22fbe0b725aa9b423d4163b104378940f", + "tarball": "http://registry.npmjs.org/object-sync/-/object-sync-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/object-sync/" + }, + "objectdiff": { + "name": "objectdiff", + "description": "Compares JavaScript objects", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "nv", + "email": "me@elv1s.ru" + } + ], + "time": { + "modified": "2011-11-02T18:52:43.323Z", + "created": "2011-11-02T18:52:42.535Z", + "1.0.0": "2011-11-02T18:52:43.323Z" + }, + "author": { + "name": "Nikita Vasilyev", + "email": "me@elv1s.ru" + }, + "repository": { + "type": "git", + "url": "git://github.com/NV/objectDiff.js.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/objectdiff/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "f17a78f2246a5da2b372e3551a1b82317fc04293", + "tarball": "http://registry.npmjs.org/objectdiff/-/objectdiff-1.0.0.tgz" + } + }, + "keywords": [ + "diff" + ], + "url": "http://registry.npmjs.org/objectdiff/" + }, + "objecttools": { + "name": "objecttools", + "description": "JavaScript Object and JSON reference utilities", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "akidee", + "email": "mail@akidee.de" + } + ], + "time": { + "modified": "2011-11-09T01:11:44.408Z", + "created": "2011-11-09T01:11:42.116Z", + "0.1.0": "2011-11-09T01:11:44.408Z" + }, + "author": { + "name": "Andreas Kalsch", + "email": "mail@akidee.de", + "url": "http://akidee.de/" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/objecttools/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "79d5f9c48bd3f6271b4b2dd82d972fae994498ce", + "tarball": "http://registry.npmjs.org/objecttools/-/objecttools-0.1.0.tgz" + } + }, + "keywords": [ + "object", + "tool", + "json", + "reference" + ], + "url": "http://registry.npmjs.org/objecttools/" + }, + "observer": { + "name": "observer", + "description": "An implementation of observer design pattern.", + "dist-tags": { + "latest": "1.1.0" + }, + "maintainers": [ + { + "name": "azer", + "email": "azer@kodfabrik.com" + } + ], + "time": { + "modified": "2011-10-15T08:17:55.466Z", + "created": "2011-02-11T14:19:59.881Z", + "1.0.0": "2011-02-11T14:20:00.257Z", + "1.1.0": "2011-10-15T08:17:55.466Z" + }, + "author": { + "name": "Azer Koculu", + "email": "azer@kodfabrik.com", + "url": "http://azer.kodfabrik.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/azer/observer.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/observer/1.0.0", + "1.1.0": "http://registry.npmjs.org/observer/1.1.0" + }, + "dist": { + "1.0.0": { + "shasum": "39d8e1f00e406b5e587f01c640aeeaec89c6d201", + "tarball": "http://registry.npmjs.org/observer/-/observer-1.0.0.tgz" + }, + "1.1.0": { + "shasum": "d235a328427b49e317e6762333ee16ef87296a67", + "tarball": "http://registry.npmjs.org/observer/-/observer-1.1.0.tgz" + } + }, + "keywords": [ + "observer", + "pubsub", + "events" + ], + "url": "http://registry.npmjs.org/observer/" + }, + "ocean": { + "name": "ocean", + "description": "Mesh Processing", + "dist-tags": { + "latest": "0.0.1pre" + }, + "maintainers": [ + { + "name": "dshaw", + "email": "dshaw@dshaw.com" + } + ], + "time": { + "modified": "2011-09-30T09:19:44.851Z", + "created": "2011-09-30T09:19:43.506Z", + "0.0.1pre": "2011-09-30T09:19:44.851Z" + }, + "author": { + "name": "Dan Shaw", + "email": "dshaw@dshaw.com", + "url": "http://dshaw.io" + }, + "repository": { + "type": "git", + "url": "git://github.com/dshaw/ocean.git" + }, + "versions": { + "0.0.1pre": "http://registry.npmjs.org/ocean/0.0.1pre" + }, + "dist": { + "0.0.1pre": { + "shasum": "f03215d1209db8d599b9ced177762a1b435c454b", + "tarball": "http://registry.npmjs.org/ocean/-/ocean-0.0.1pre.tgz" + } + }, + "url": "http://registry.npmjs.org/ocean/" + }, + "oconf": { + "name": "oconf", + "description": "Configuration", + "dist-tags": { + "latest": "0.0.3" + }, + "readme": "OConf\n=====\n\nThis is currently a experiment with putting some semi-random ideas about how\nconfiguration can be done in a convenient manner into code.\n\nThe basic idea is to experiment with applying `#include`-statements recusively\ninside JSON/cJSON documents:\n\n // default-settings.cjson\n {\n\t\t\"some-setting\": \"default value\",\n\t\t\"value\": 100\n\t}\n\n\t// my-config.cjson\n\t{\n\t\t\"#include\": \"./default-settings.json\",\n\t\t\"value\": 50\n\t}\n\nWill result in a config with:\n\n\t{\n\t\t\"some-setting\": \"default-value\",\n\t\t\"value\": 50\n\t}\n\nTests\n-----\n\nDownload/clone, run `npm install --dev` and then either `vows --spec` or `npm test`.\n\nLicense\n-------\n\nThe software is provided under the Modified BSD License; See LICENSE for\nfurther details.\n\n", + "maintainers": [ + { + "name": "msiebuhr", + "email": "sbhr@sbhr.dk" + }, + { + "name": "papandreou", + "email": "andreas@one.com" + } + ], + "time": { + "modified": "2011-11-14T10:53:15.492Z", + "created": "2011-11-11T09:28:24.371Z", + "0.0.1": "2011-11-11T09:28:25.657Z", + "0.0.2": "2011-11-11T13:30:29.870Z", + "0.0.3": "2011-11-14T10:53:15.492Z" + }, + "author": { + "name": "Morten Siebuhr", + "email": "sbhr@sbhr.dk" + }, + "repository": { + "type": "git", + "url": "git://github.com/msiebuhr/node-oconf.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/oconf/0.0.1", + "0.0.2": "http://registry.npmjs.org/oconf/0.0.2", + "0.0.3": "http://registry.npmjs.org/oconf/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "954a9acec2fd5d88223edaaf72d8036c11474162", + "tarball": "http://registry.npmjs.org/oconf/-/oconf-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "ffd04a90b03a29ed4bc4b2771b818941fa37f00b", + "tarball": "http://registry.npmjs.org/oconf/-/oconf-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "76f017d3de98dc72fa28e6cc8d5a688330f7a2f6", + "tarball": "http://registry.npmjs.org/oconf/-/oconf-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/oconf/" + }, + "octo.io": { + "name": "octo.io", + "description": "Branching IO for working with nested files in Node", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "TrevorBurnham", + "email": "trevorburnham@gmail.com" + } + ], + "time": { + "modified": "2011-01-28T20:25:11.631Z", + "created": "2011-01-06T04:16:51.401Z", + "0.1.0": "2011-01-06T04:16:52.385Z", + "0.1.1": "2011-01-28T14:58:42.365Z", + "0.1.2": "2011-01-28T20:25:11.631Z" + }, + "author": { + "name": "Trevor Burnham" + }, + "repository": { + "type": "git", + "url": "http://github.com/TrevorBurnham/octo.io.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/octo.io/0.1.0", + "0.1.1": "http://registry.npmjs.org/octo.io/0.1.1", + "0.1.2": "http://registry.npmjs.org/octo.io/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "5743f951a0c16545055d75e70871b5d4105ee904", + "tarball": "http://registry.npmjs.org/octo.io/-/octo.io-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "dfb3aff27de7361743ac26e829456fe7a6d8f7e8", + "tarball": "http://registry.npmjs.org/octo.io/-/octo.io-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "cf1cfe04da0503751edd4e4dc52e519ca63c1ea8", + "tarball": "http://registry.npmjs.org/octo.io/-/octo.io-0.1.2.tgz" + } + }, + "keywords": [ + "file", + "read", + "io" + ], + "url": "http://registry.npmjs.org/octo.io/" + }, + "octobertest": { + "name": "octobertest", + "description": "Convert between different test result formats", + "dist-tags": { + "latest": "0.0.3" + }, + "readme": "# octobertest\n\noctobertest lets you convert between different test result formats.\n\nThe current main focus is to convert a custom JSON-representable format\ninto JUnit.xml for jenkins.\n", + "maintainers": [ + { + "name": "evilhackerdude", + "email": "evilhackerdude@gmail.com" + } + ], + "time": { + "modified": "2011-12-02T10:31:01.196Z", + "created": "2011-12-02T10:22:19.621Z", + "0.0.1": "2011-12-02T10:22:21.157Z", + "0.0.2": "2011-12-02T10:24:18.169Z", + "0.0.3": "2011-12-02T10:31:01.196Z" + }, + "author": { + "name": "Stephan Seidt", + "email": "evilhackerdude@gmail.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:uxebu/octobertest.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/octobertest/0.0.1", + "0.0.2": "http://registry.npmjs.org/octobertest/0.0.2", + "0.0.3": "http://registry.npmjs.org/octobertest/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "b71cdee54fc2ba80efb027dfe9db58f2ff2678aa", + "tarball": "http://registry.npmjs.org/octobertest/-/octobertest-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f74e1581fa2589491a87313056c0ce3640286066", + "tarball": "http://registry.npmjs.org/octobertest/-/octobertest-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "5412ed80ebdbc2f1ef6878ea461651eb505ee3ca", + "tarball": "http://registry.npmjs.org/octobertest/-/octobertest-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/octobertest/" + }, + "octonode": { + "name": "octonode", + "description": "nodejs wrapper for github v3 api", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "# octonode - nodejs github library\n\n## Description\noctonode is a library for nodejs to access the [github v3 api](developer.github.com)\n\n## Installation\n```\nnpm install octonode\n```\n\n## Usage\nThe module exposes the objects `User`, `Organisation` and `Repository`\nfor interacting with the respective github entities.\nAll methods take at least a callback function as argument, which is\ncalled with the result data after the method is finished. The callback\nfunction should have the following signature:\n\n```js\nfunction(status, data)\n{\n // do something with the data\n console.log(data);\n};\n```\n\nStatus is a string describing whether the function call was a success or\nan error occurred and data is the actual result data. The status strings are\navailable from the octonode module for comparison:\n\n```js\noctonode.status = {\n SUCCESS: \"success\", // everything went great\n ERROR: \"error\", // something went wrong\n NIMPL: \"notimplemented\" // method not yet implemented\n};\n```\n\nEvery object provides several method to interact with the entity it represents.\n\n```js\nvar octonode = require('octonode');\n\nvar me = octonode.User('pkumar');\n\n// work with email data\nme.get_email_addresses(callback);\nme.set_email_addresses(['new@mail.com', 'alsonew@mail.com'], callback);\nme.set_email_addresses('new@mail.com', callback);\nme.delete_email_addresses(['new@mail.com', 'alsonew@mail.com'], callback);\nme.delete_email_addresses('new@mail.com', callback);\n\n// follower data\nme.get_followers(callback);\nme.get_following(callback);\nme.is_following('user', callback);\nme.follow('user', callback);\nme.unfollow('user', callback);\n\n// key data\nme.get_public_keys(callback);\nme.get_public_key('id', callback);\nme.add_public_key('title', 'key', callback);\nme.update_public_key('title', 'key', callback);\nme.delete_public_key('id', callback);\n\n// public orgs for unauthenticated, private and public for authenticated\nme.get_organizations(callback);\n\n// public repos for unauthenticated, private and public for authenticated\nme.get_repositories(callback);\nme.create_repository({name: ''}, callback);\nme.get_watched_repositories(callback);\nme.is_watching('repo', callback);\nme.start_watching('repo', callback);\nme.stop_watching('repo', callback);\nme.get_issues(params, callback);\n\n// organization data\nvar org = octonode.Organisation('bulletjs')\norg.info(callback);\norg.update(dict_with_update_properties, callback);\norg.get_members(callback);\norg.get_member('user', callback);\norg.add_member('user', 'team', callback);\norg.remove_member('user', callback);\norg.get_public_members(callback);\norg.is_public_member('user', callback);\norg.make_member_public('user', callback);\norg.conceal_member('user', callback);\norg.get_teams(callback);\norg.get_team('team', callback);\norg.create_team({name:'', repo_names:'', permission:''}, callback);\norg.edit_team({name:'', permission:''}, callback);\norg.delete_team('name', callback);\norg.get_team_members('team', callback);\norg.get_team_member('team', 'user', callback);\norg.remove_member_from_team('user', 'team', callback);\norg.get_repositories(callback);\norg.create_repository({name: ''}, callback);\norg.get_team_repositories('team', callback);\norg.get_team_repository('team', 'name', callback);\norg.add_team_repository('team', 'name', callback);\norg.remove_team_repository('team', 'name', callback);\n\nvar repo = octonode.Repository('pkumar/octonode');\n\n// general repo information\nrepo.info(callback);\nrepo.update({name: ''}, callback);\nrepo.get_contributors(callback);\nrepo.get_languages(callback);\nrepo.get_teams(callback);\nrepo.get_tags(callback);\nrepo.get_branches(callback);\n\n// collaborator information\nrepo.get_collaborators(callback);\nrepo.has_collaborator('name', callback);\nrepo.add_collaborator('name', callback);\nrepo.remove_collaborator('name', callback);\n\n// commit data\nrepo.get_commits(callback);\nrepo.get_commit('sha-id', callback);\nrepo.get_all_comments(callback);\nrepo.get_commit_comments('SHA ID', callback);\nrepo.comment_on_commit({body: '', commit_id: '', line: '', path: '', position: ''}, callback);\nrepo.get_single_comment('comment id', callback);\nrepo.edit_single_comment('comment id', callback);\nrepo.delete_single_comment('comment id', callback);\n\n// downloads\nrepo.get_downloads(callback);\nrepo.get_download(callback);\nrepo.create_download({name: ''}, 'filepath', callback);\nrepo.delete_download(callback);\n\n// fork data\nrepo.get_forks(callback);\nrepo.create_fork(callback);\n\n// keys\nrepo.get_deploy_keys(callback);\nrepo.get_deploy_key('id', callback);\nrepo.create_deploy_key({title: '', key: ''}, callback);\nrepo.edit_deploy_key({title: '', key: ''}, callback);\nrepo.delete_deploy_key('id', callback);\n\n// watcher data\nrepo.get_watchers(callback);\n\n// pull requests\nrepo.get_all_pull_request_comments(callback);\nrepo.get_pull_request_comment('id', callback);\nrepo.create_pull_request_comment('id', {body:'', commit_id:'', path:'', position:''}, callback);\nrepo.reply_to_pull_request_comment('id', 'body', callback);\nrepo.edit_pull_request_comment('id', 'body', callback);\nrepo.delete_pull_request_comment('id', callback);\nrepo.get_issues(params, callback);\nrepo.get_issue('id', callback);\nrepo.create_issue({title: ''}, callback);\nrepo.edit_issue({title: ''}, callback);\nrepo.get_issue_comments('issue', callback);\nrepo.get_issue_comment('id', callback);\nrepo.create_issue_comment('id', 'comment', callback);\nrepo.edit_issue_comment('id', 'comment', callback);\nrepo.delete_issue_comment('id', callback);\nrepo.get_issue_events('id', callback);\nrepo.get_events(callback);\nrepo.get_event('id', callback);\nrepo.get_labels(callback);\nrepo.get_label('id', callback);\nrepo.create_label('name', 'color', callback);\nrepo.edit_label('name', 'color', callback);\nrepo.delete_label('id', callback);\nrepo.get_issue_labels('issue', callback);\nrepo.add_labels_to_issue('issue', ['label1', 'label2'], callback);\nrepo.remove_label_from_issue('issue', 'labelid', callback);\nrepo.set_labels_for_issue('issue', ['label1', 'label2'], callback);\nrepo.remove_all_labels_from_issue('issue', callback);\nrepo.get_labels_for_milestone_issues('milestone', callback);\nrepo.get_milestones(callback);\nrepo.get_milestone('id', callback);\nrepo.create_milestone('title', callback);\nrepo.edit_milestone('title', callback);\nrepo.delete_milestone('id', callback);\n\n// raw git access\nrepo.get_blob('sha-id', callback);\nrepo.create_blob('content', 'encoding', callback);\nrepo.get_commit('sha-id', callback);\nrepo.create_commit('message', 'tree', [parents], callback);\nrepo.get_reference('ref', callback);\nrepo.get_all_references(callback);\nrepo.create_reference('ref', 'sha', callback);\nrepo.update_reference('ref', 'sha', force, callback);\n```\n\n## Contributors\n[Contributors](http://github.com/pkumar/nocof/contributors)\n\n## License\nMIT/X11\n\n## Bug Reports\nReport [here](http://github.com/pkumar/nocof/issues)\n\n## Contact\nPavan Kumar Sunkara\n[pavan [dot] sss1991 [at] gmail [dot] com](mailto:pavan.sss1991@gmail.com)\n\nFollow me on [github](https://github.com/users/follow?target=pkumar), [twitter](http://twitter.com/pksunkara)\n", + "maintainers": [ + { + "name": "pksunkara", + "email": "pavan.sss1991@gmail.com" + } + ], + "time": { + "modified": "2011-11-23T12:57:01.921Z", + "created": "2011-11-23T12:55:14.071Z", + "0.1.0": "2011-11-23T12:57:01.921Z" + }, + "author": { + "name": "Pavan Kumar Sunkara", + "email": "pavan.sss1991@gmail.com", + "url": "http://pkumar.github.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/pkumar/octonode.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/octonode/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "5c48f137172a9a82403e94734521b4cbc0202399", + "tarball": "http://registry.npmjs.org/octonode/-/octonode-0.1.0.tgz" + } + }, + "keywords": [ + "wrapper", + "api", + "v3", + "github" + ], + "url": "http://registry.npmjs.org/octonode/" + }, + "octopus": { + "name": "octopus", + "description": "sophisticated ikarus client", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "daredude", + "email": "falko.dude@gmail.com" + } + ], + "time": { + "modified": "2011-02-16T13:40:43.443Z", + "created": "2011-02-16T13:40:42.984Z", + "0.0.1": "2011-02-16T13:40:43.443Z" + }, + "author": { + "name": "daredude", + "email": "falko.dude@gmail.com", + "url": "falkojanak.com" + }, + "repository": {}, + "versions": { + "0.0.1": "http://registry.npmjs.org/octopus/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "b9f4ef11e08e393ba5ebe842cfed6b2f0ee041e5", + "tarball": "http://registry.npmjs.org/octopus/-/octopus-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/octopus/" + }, + "odbc": { + "name": "odbc", + "description": "unixodbc bindings for node", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "wink", + "email": "notwink@gmail.com" + }, + { + "name": "wankdanker", + "email": "dverweire@gmail.com" + } + ], + "time": { + "modified": "2011-11-10T22:19:34.701Z", + "created": "2011-04-22T13:35:25.363Z", + "0.0.1": "2011-04-22T13:35:25.628Z", + "0.3.0": "2011-11-10T22:09:32.996Z" + }, + "author": { + "name": "Lee Smith", + "email": "notwink@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/w1nk/node-odbc.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/odbc/0.0.1", + "0.3.0": "http://registry.npmjs.org/odbc/0.3.0" + }, + "dist": { + "0.0.1": { + "shasum": "b3cded6f655aaf2921b3a41329754ebf8aa0dcbe", + "tarball": "http://registry.npmjs.org/odbc/-/odbc-0.0.1.tgz" + }, + "0.3.0": { + "shasum": "537d93311114b784f81192fca1fa50038f441609", + "tarball": "http://registry.npmjs.org/odbc/-/odbc-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/odbc/" + }, + "odesk": { + "name": "odesk", + "description": "oDesk API wrapper", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "biesiad", + "email": "gbiesiadecki@gmail.com" + } + ], + "time": { + "modified": "2011-10-30T16:18:37.626Z", + "created": "2011-10-30T16:18:36.080Z", + "0.1.1": "2011-10-30T16:18:37.626Z" + }, + "author": { + "name": "Grzegorz Biesiadecki", + "email": "gbiesiadecki@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/biesiad/odesk.js.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/odesk/0.1.1" + }, + "dist": { + "0.1.1": { + "shasum": "126dee0e92e29cb8d949b7d3954ec27af586b86d", + "tarball": "http://registry.npmjs.org/odesk/-/odesk-0.1.1.tgz" + } + }, + "keywords": [ + "odesk", + "api", + "wrapper" + ], + "url": "http://registry.npmjs.org/odesk/" + }, + "odot": { + "name": "odot", + "description": "persistent, code reloading, interactive object space", + "dist-tags": { + "latest": "0.1.4", + "stable": "0.1.4" + }, + "maintainers": [ + { + "name": "tsmith", + "email": "node@thomassmith.com" + } + ], + "author": { + "name": "Thomas Smith", + "email": "node@thomassmith.com" + }, + "time": { + "modified": "2011-06-05T23:15:06.195Z", + "created": "2010-12-21T23:48:31.003Z", + "0.1.1": "2010-12-21T23:48:31.003Z", + "0.1.2": "2010-12-21T23:48:31.003Z", + "0.1.3": "2011-06-05T21:47:30.217Z", + "0.1.4": "2011-06-05T23:15:05.339Z" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/odot/0.1.1", + "0.1.2": "http://registry.npmjs.org/odot/0.1.2", + "0.1.3": "http://registry.npmjs.org/odot/0.1.3", + "0.1.4": "http://registry.npmjs.org/odot/0.1.4" + }, + "dist": { + "0.1.1": { + "tarball": "http://registry.npmjs.org/odot/-/odot-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "bbc00182368e45c1e676c7b93a8d490414e731ff", + "tarball": "http://registry.npmjs.org/odot/-/odot-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "bdbdb27585603cf329ecd0b3b7936991f2c7cfc4", + "tarball": "http://registry.npmjs.org/odot/-/odot-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "b409e69618aa3fb7d452051574d3be01c5815fe7", + "tarball": "http://registry.npmjs.org/odot/-/odot-0.1.4.tgz" + } + }, + "url": "http://registry.npmjs.org/odot/" + }, + "oexchange": { + "name": "oexchange", + "description": "Module that handles OExchange host discovery", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "bashofmann", + "email": "bashofmann@googlemail.com" + } + ], + "time": { + "modified": "2011-10-03T11:58:59.222Z", + "created": "2011-10-02T11:46:14.939Z", + "0.1.0": "2011-10-02T11:46:16.323Z", + "0.1.1": "2011-10-03T11:58:59.222Z" + }, + "author": { + "name": "Bastian Hofmann", + "email": "bashofmann@googlemail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/bashofmann/node_oexchange.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/oexchange/0.1.0", + "0.1.1": "http://registry.npmjs.org/oexchange/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "0934b86e0528b3ede5e1e119275b29dfe16cb7f3", + "tarball": "http://registry.npmjs.org/oexchange/-/oexchange-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "f02115105fe71104beec93c9d11ff215dc6c5361", + "tarball": "http://registry.npmjs.org/oexchange/-/oexchange-0.1.1.tgz" + } + }, + "keywords": [ + "oexchange" + ], + "url": "http://registry.npmjs.org/oexchange/" + }, + "offliner": { + "name": "offliner", + "description": "Offline web application builder.", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "mikeal", + "email": "mikeal.rogers@gmail.com" + } + ], + "time": { + "modified": "2011-05-30T23:12:37.290Z", + "created": "2011-05-30T23:12:33.158Z", + "0.0.0": "2011-05-30T23:12:37.290Z" + }, + "author": { + "name": "Mikeal Rogers", + "email": "mikeal.rogers@gmail.com" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/offliner/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "d736c77b4db591e1608161bbd6de9f78069adcb6", + "tarball": "http://registry.npmjs.org/offliner/-/offliner-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/offliner/" + }, + "ofxer": { + "name": "ofxer", + "description": "Banking Direct Connect For Account Data (OFX data retrieval and parsing to json)", + "dist-tags": { + "latest": "0.0.12" + }, + "maintainers": [ + { + "name": "euforic", + "email": "christian@xogix.com" + } + ], + "time": { + "modified": "2011-12-09T20:47:39.820Z", + "created": "2011-08-24T18:44:34.804Z", + "0.0.1": "2011-08-24T18:44:36.002Z", + "0.0.2": "2011-08-30T04:12:03.709Z", + "0.0.3": "2011-08-31T20:16:18.461Z", + "0.0.5": "2011-09-06T10:12:25.154Z", + "0.0.6": "2011-09-22T01:07:16.085Z", + "0.0.7": "2011-09-24T00:48:37.909Z", + "0.0.8": "2011-09-29T10:47:19.710Z", + "0.0.9": "2011-09-30T22:37:16.217Z", + "0.0.10": "2011-12-09T19:13:02.432Z", + "0.0.11": "2011-12-09T20:11:33.203Z", + "0.0.12": "2011-12-09T20:47:39.820Z" + }, + "author": { + "name": "Christian Sullivan", + "email": "cs@euforic.co" + }, + "repository": { + "type": "git", + "url": "git://github.com/euforic/ofxer.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ofxer/0.0.1", + "0.0.2": "http://registry.npmjs.org/ofxer/0.0.2", + "0.0.3": "http://registry.npmjs.org/ofxer/0.0.3", + "0.0.5": "http://registry.npmjs.org/ofxer/0.0.5", + "0.0.6": "http://registry.npmjs.org/ofxer/0.0.6", + "0.0.7": "http://registry.npmjs.org/ofxer/0.0.7", + "0.0.8": "http://registry.npmjs.org/ofxer/0.0.8", + "0.0.9": "http://registry.npmjs.org/ofxer/0.0.9", + "0.0.10": "http://registry.npmjs.org/ofxer/0.0.10", + "0.0.11": "http://registry.npmjs.org/ofxer/0.0.11", + "0.0.12": "http://registry.npmjs.org/ofxer/0.0.12" + }, + "dist": { + "0.0.1": { + "shasum": "538d93477da93eb74395c8fcdc36b6d5920bcb3d", + "tarball": "http://registry.npmjs.org/ofxer/-/ofxer-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "970288681d4f7c540eaecbe06dbc81418379895f", + "tarball": "http://registry.npmjs.org/ofxer/-/ofxer-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "9a5895d0ebf051057f02423dd39f0044052a4b73", + "tarball": "http://registry.npmjs.org/ofxer/-/ofxer-0.0.3.tgz" + }, + "0.0.5": { + "shasum": "b6bee7caca08732d719dead35cf5485aa76a8a04", + "tarball": "http://registry.npmjs.org/ofxer/-/ofxer-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "8412afa9a6c47ce1268904e534784217da0e1ca8", + "tarball": "http://registry.npmjs.org/ofxer/-/ofxer-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "88f76dd57dca52d0ff986a16e4f92da8931dd6fa", + "tarball": "http://registry.npmjs.org/ofxer/-/ofxer-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "dda8ee2634c30b2f9a34ac66da2eb115a02daa30", + "tarball": "http://registry.npmjs.org/ofxer/-/ofxer-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "1f78528a63e0a79d68c2f5c466c18bdbeebda8c8", + "tarball": "http://registry.npmjs.org/ofxer/-/ofxer-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "63494794af3915446fbdbb6e8e778b3c7489d01d", + "tarball": "http://registry.npmjs.org/ofxer/-/ofxer-0.0.10.tgz" + }, + "0.0.11": { + "shasum": "8288ed0463b5ec8ecb93663c09bb98c660a9928f", + "tarball": "http://registry.npmjs.org/ofxer/-/ofxer-0.0.11.tgz" + }, + "0.0.12": { + "shasum": "c3dcfcf67b5f3cf8af9ae131db8ea2c751b54891", + "tarball": "http://registry.npmjs.org/ofxer/-/ofxer-0.0.12.tgz" + } + }, + "keywords": [ + "ofx", + "financial", + "bank" + ], + "url": "http://registry.npmjs.org/ofxer/" + }, + "ogre": { + "name": "ogre", + "description": "ogr2ogr web client", + "dist-tags": { + "latest": "0.2.6" + }, + "maintainers": [ + { + "name": "wavded", + "email": "wavded@gmail.com" + } + ], + "author": { + "name": "Marc Harter", + "email": "wavded@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/wavded/ogre.git" + }, + "time": { + "modified": "2011-11-29T22:11:49.233Z", + "created": "2011-02-10T18:22:38.296Z", + "0.0.4": "2011-02-10T18:22:38.296Z", + "0.0.5": "2011-02-10T18:22:38.296Z", + "0.0.6": "2011-02-10T18:22:38.296Z", + "0.0.7": "2011-05-31T18:47:12.632Z", + "0.0.8": "2011-05-31T19:04:41.581Z", + "0.0.9": "2011-05-31T19:06:54.505Z", + "0.1.0": "2011-05-31T19:08:57.030Z", + "0.2.0": "2011-08-12T16:00:12.251Z", + "0.2.1": "2011-08-24T20:21:53.307Z", + "0.2.2": "2011-09-08T21:01:15.545Z", + "0.2.3": "2011-09-18T02:21:33.104Z", + "0.2.4": "2011-09-18T02:28:08.669Z", + "0.2.5": "2011-11-12T22:55:00.880Z", + "0.2.6": "2011-11-29T22:11:49.233Z" + }, + "versions": { + "0.0.4": "http://registry.npmjs.org/ogre/0.0.4", + "0.0.5": "http://registry.npmjs.org/ogre/0.0.5", + "0.0.6": "http://registry.npmjs.org/ogre/0.0.6", + "0.0.7": "http://registry.npmjs.org/ogre/0.0.7", + "0.0.8": "http://registry.npmjs.org/ogre/0.0.8", + "0.0.9": "http://registry.npmjs.org/ogre/0.0.9", + "0.1.0": "http://registry.npmjs.org/ogre/0.1.0", + "0.2.0": "http://registry.npmjs.org/ogre/0.2.0", + "0.2.1": "http://registry.npmjs.org/ogre/0.2.1", + "0.2.2": "http://registry.npmjs.org/ogre/0.2.2", + "0.2.3": "http://registry.npmjs.org/ogre/0.2.3", + "0.2.4": "http://registry.npmjs.org/ogre/0.2.4", + "0.2.5": "http://registry.npmjs.org/ogre/0.2.5", + "0.2.6": "http://registry.npmjs.org/ogre/0.2.6" + }, + "dist": { + "0.0.4": { + "tarball": "http://registry.npmjs.org/ogre/-/ogre-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://registry.npmjs.org/ogre/-/ogre-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "b12007424f768a178e3313106717c674ed82b144", + "tarball": "http://registry.npmjs.org/ogre/-/ogre-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "f81c6dd99eb3fd8cb360079853d19e82ea78ad20", + "tarball": "http://registry.npmjs.org/ogre/-/ogre-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "b99b586dea71f99ac4e141983475b954dfbb45f4", + "tarball": "http://registry.npmjs.org/ogre/-/ogre-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "304fdeeee9ceb3f22bef7c88e576317e048e3234", + "tarball": "http://registry.npmjs.org/ogre/-/ogre-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "752d07278406264b47c11bb3223ccd99f2fced5e", + "tarball": "http://registry.npmjs.org/ogre/-/ogre-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "624fe1b10f57aa9582a9c23e5b46b417868ee371", + "tarball": "http://registry.npmjs.org/ogre/-/ogre-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "af400426897370ad17b5fb7cf13e240acedf1c15", + "tarball": "http://registry.npmjs.org/ogre/-/ogre-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "9c0a74f62600e014d28f908ad56b7c727494eb7e", + "tarball": "http://registry.npmjs.org/ogre/-/ogre-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "601eba59848c03ac8ac1e4a7232dd6c8e3515673", + "tarball": "http://registry.npmjs.org/ogre/-/ogre-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "b1ef43a982571eaede143a3bc882194e47a3e121", + "tarball": "http://registry.npmjs.org/ogre/-/ogre-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "5b117964e0f990a800257fccbdb6e5cf0b8c09b8", + "tarball": "http://registry.npmjs.org/ogre/-/ogre-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "52c561dc97ff164fc9347bb932bd46a8768730c1", + "tarball": "http://registry.npmjs.org/ogre/-/ogre-0.2.6.tgz" + } + }, + "keywords": [ + "ogr2ogr", + "GIS", + "GeoJSON" + ], + "url": "http://registry.npmjs.org/ogre/" + }, + "oi.tekcos": { + "name": "oi.tekcos", + "description": "oi.tekcos - wraps socket.io to really work on all browsers using get-jsonp", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "marxus", + "email": "marxus@gmail.com" + } + ], + "time": { + "modified": "2011-08-12T17:43:51.435Z", + "created": "2011-08-10T17:36:06.471Z", + "0.0.1": "2011-08-10T17:36:09.284Z", + "0.0.2": "2011-08-12T17:43:51.435Z" + }, + "author": { + "name": "Amit Marcus" + }, + "repository": { + "type": "git", + "url": "git://github.com/marxus85/oi.tekcos.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/oi.tekcos/0.0.1", + "0.0.2": "http://registry.npmjs.org/oi.tekcos/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "751e547887cff4abe7d0223bb529f9179b5aa97c", + "tarball": "http://registry.npmjs.org/oi.tekcos/-/oi.tekcos-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "4971731462beefd9af937f15614ecc109c6ac302", + "tarball": "http://registry.npmjs.org/oi.tekcos/-/oi.tekcos-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/oi.tekcos/" + }, + "oink": { + "name": "oink", + "description": "A simple test runner built on webkit-server.", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": null, + "maintainers": [ + { + "name": "tristandunn", + "email": "tristanzdunn@gmail.com" + } + ], + "time": { + "modified": "2011-11-19T09:47:08.475Z", + "created": "2011-11-19T09:47:07.628Z", + "0.1.0": "2011-11-19T09:47:08.475Z" + }, + "author": { + "name": "Tristan Dunn", + "email": "hello@tristandunn.com", + "url": "http://tristandunn.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/tristandunn/oink.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/oink/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "6888e25f8e5d73bbbcc2f38c7964a6dc52dfc9e1", + "tarball": "http://registry.npmjs.org/oink/-/oink-0.1.0.tgz" + } + }, + "keywords": [ + "jasmine", + "testing", + "unit", + "webkit-server" + ], + "url": "http://registry.npmjs.org/oink/" + }, + "oktest": { + "name": "oktest", + "description": "a new-style testing library for node.js", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "kwatch", + "email": "kwa@kuwata-lab.com" + } + ], + "time": { + "modified": "2011-12-13T13:45:52.993Z", + "created": "2011-08-17T15:13:28.887Z", + "0.1.0": "2011-08-17T15:13:32.233Z", + "0.2.0": "2011-11-09T13:54:50.597Z", + "0.2.1": "2011-12-12T17:31:30.487Z", + "0.2.2": "2011-12-13T13:45:52.993Z" + }, + "author": { + "name": "Makoto Kuwata", + "email": "kwa@kuwata-lab.com" + }, + "repository": { + "type": "mercurial", + "url": "https://bitbucket.org/kwatch/oktest/" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/oktest/0.1.0", + "0.2.0": "http://registry.npmjs.org/oktest/0.2.0", + "0.2.1": "http://registry.npmjs.org/oktest/0.2.1", + "0.2.2": "http://registry.npmjs.org/oktest/0.2.2" + }, + "dist": { + "0.1.0": { + "shasum": "90703fbf40a48a424e2f06e9a062b3b7fd6fa8c7", + "tarball": "http://registry.npmjs.org/oktest/-/oktest-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "5ca4ee4d68c2ac99854520d00f20988f68a7dc64", + "tarball": "http://registry.npmjs.org/oktest/-/oktest-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "a229e59ad0491405d82a6617e3faf45bd5889804", + "tarball": "http://registry.npmjs.org/oktest/-/oktest-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "46b512a1d6a8c00cafa94c52b227462dca20df5f", + "tarball": "http://registry.npmjs.org/oktest/-/oktest-0.2.2.tgz" + } + }, + "url": "http://registry.npmjs.org/oktest/" + }, + "old-magic": { + "name": "old-magic", + "dist-tags": { + "latest": "1.0.3" + }, + "maintainers": [ + { + "name": "joshkehn", + "email": "josh.kehn@gmail.com" + } + ], + "time": { + "modified": "2011-10-08T03:09:00.728Z", + "created": "2011-10-08T03:05:39.110Z", + "1.0.0": "2011-10-08T03:05:49.212Z", + "1.0.2": "2011-10-08T03:07:38.535Z", + "1.0.3": "2011-10-08T03:09:00.728Z" + }, + "author": { + "name": "Joshua Kehn", + "email": "josh@kehn.us" + }, + "repository": { + "type": "git", + "url": "git://github.com/joshkehn/old-magic.git" + }, + "description": "Old magic for node.js", + "versions": { + "1.0.0": "http://registry.npmjs.org/old-magic/1.0.0", + "1.0.2": "http://registry.npmjs.org/old-magic/1.0.2", + "1.0.3": "http://registry.npmjs.org/old-magic/1.0.3" + }, + "dist": { + "1.0.0": { + "shasum": "6e9c8260070e1cc32fd45f9ea9f07075c5e6717c", + "tarball": "http://registry.npmjs.org/old-magic/-/old-magic-1.0.0.tgz" + }, + "1.0.2": { + "shasum": "979413c633e858db29016f530acc568431b46c3c", + "tarball": "http://registry.npmjs.org/old-magic/-/old-magic-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "9238397f5f5bbdc0b4206e9c31f8b9c42cb1b170", + "tarball": "http://registry.npmjs.org/old-magic/-/old-magic-1.0.3.tgz" + } + }, + "keywords": [ + "_ale", + "oldmagic", + "magic", + "old-magic" + ], + "url": "http://registry.npmjs.org/old-magic/" + }, + "Olive": { + "name": "Olive", + "description": "Olive is a simple app that aims to let users interact on a single site showing colors of olive", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "blakmatrix", + "email": "blakmatrix@gmail.com" + } + ], + "time": { + "modified": "2011-09-10T07:02:49.084Z", + "created": "2011-09-10T06:55:26.637Z", + "0.0.2": "2011-09-10T06:55:28.056Z", + "0.2.0": "2011-09-10T07:02:49.084Z" + }, + "author": { + "name": "Farrin A. Reid", + "email": "blakmatrix@gmail.com", + "url": "blakmatrix.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:blakmatrix/olive.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/Olive/0.0.2", + "0.2.0": "http://registry.npmjs.org/Olive/0.2.0" + }, + "dist": { + "0.0.2": { + "shasum": "d86c416b7e93712966304e4d4ec11dc3391f39d8", + "tarball": "http://registry.npmjs.org/Olive/-/Olive-0.0.2.tgz" + }, + "0.2.0": { + "shasum": "4a9872c0c0d30bfb087a8c746c697ee0328d8c7a", + "tarball": "http://registry.npmjs.org/Olive/-/Olive-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/Olive/" + }, + "omcc": { + "name": "omcc", + "description": "A command line tool for Alessandro Warth's OMetaJS ( an object-oriented language for pattern matching )", + "dist-tags": { + "latest": "1.0.2" + }, + "maintainers": [ + { + "name": "tristanls", + "email": "tristan.slominski@gmail.com" + } + ], + "time": { + "modified": "2011-07-02T22:27:22.661Z", + "created": "2011-07-02T22:27:22.274Z", + "1.0.2": "2011-07-02T22:27:22.661Z" + }, + "versions": { + "1.0.2": "http://registry.npmjs.org/omcc/1.0.2" + }, + "dist": { + "1.0.2": { + "shasum": "aed965efe07f5c8a968c075ff7f7575989fcb098", + "tarball": "http://registry.npmjs.org/omcc/-/omcc-1.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/omcc/" + }, + "omegle": { + "name": "omegle", + "description": "A library to connect with and chat to people on omegle", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "crogers", + "email": "callumrogers@hotmail.co.uk" + } + ], + "time": { + "modified": "2011-09-20T11:42:57.766Z", + "created": "2011-09-20T11:42:55.968Z", + "0.1.0": "2011-09-20T11:42:57.766Z" + }, + "author": { + "name": "Callum Rogers", + "email": "callumrogers@hotmail.co.uk" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/omegle/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "faacb390822dc936e77596c674fbce659c3b615c", + "tarball": "http://registry.npmjs.org/omegle/-/omegle-0.1.0.tgz" + } + }, + "keywords": [ + "omegle", + "chat" + ], + "url": "http://registry.npmjs.org/omegle/" + }, + "ometa": { + "name": "ometa", + "description": "JavaScript Implementation of OMeta Parsing Language", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "bmavity", + "email": "brian@brianmavity.com" + } + ], + "time": { + "modified": "2011-12-06T17:24:11.092Z", + "created": "2011-11-09T18:11:42.015Z", + "0.1.0": "2011-11-09T18:11:42.015Z", + "0.2.0": "2011-11-09T18:11:42.015Z", + "0.2.2": "2011-12-06T17:24:11.092Z", + "0.2.1": "2011-12-06T17:20:21.559Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/ometa/0.1.0", + "0.2.0": "http://registry.npmjs.org/ometa/0.2.0", + "0.2.1": "http://registry.npmjs.org/ometa/0.2.1", + "0.2.2": "http://registry.npmjs.org/ometa/0.2.2" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/ometa/-/ometa-0.1.0.tgz" + }, + "0.2.0": { + "tarball": "http://registry.npmjs.org/ometa/-/ometa-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "e02bf1f970e1183dd7e062e09e9c7f67e5d4a51d", + "tarball": "http://registry.npmjs.org/ometa/-/ometa-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "f53c4735ba6d56af5a46b04dfb7c4334c596d44e", + "tarball": "http://registry.npmjs.org/ometa/-/ometa-0.2.2.tgz" + } + }, + "url": "http://registry.npmjs.org/ometa/" + }, + "ometa-highlighter": { + "name": "ometa-highlighter", + "description": "Code highlighter based on Ometa/JS (little inspired by Pygments)", + "dist-tags": { + "latest": "0.2.3", + "stable": "0.2.3" + }, + "maintainers": [ + { + "name": "veged", + "email": "veged@mail.ru" + }, + { + "name": "arikon", + "email": "peimei@ya.ru" + }, + { + "name": "fedor.indutny", + "email": "fedor.indutny@gmail.com" + } + ], + "author": { + "name": "Sergey Berezhnoy", + "email": "veged@mail.ru", + "url": "http://github.com/veged" + }, + "repository": { + "type": "git", + "url": "git://github.com/veged/ometa-highlighter.git" + }, + "time": { + "modified": "2011-11-30T08:10:22.704Z", + "created": "2011-03-22T12:38:21.893Z", + "0.1.1": "2011-03-22T12:38:21.893Z", + "0.1.2": "2011-03-22T12:38:21.893Z", + "0.1.3": "2011-03-22T12:38:21.893Z", + "0.1.4": "2011-03-22T12:56:23.177Z", + "0.1.5": "2011-07-19T12:15:36.031Z", + "0.2.0": "2011-09-01T11:30:27.999Z", + "0.2.1": "2011-09-30T10:24:13.311Z", + "0.2.2": "2011-09-30T10:31:35.077Z", + "0.2.3": "2011-11-30T08:10:08.951Z" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/ometa-highlighter/0.1.1", + "0.1.2": "http://registry.npmjs.org/ometa-highlighter/0.1.2", + "0.1.3": "http://registry.npmjs.org/ometa-highlighter/0.1.3", + "0.1.4": "http://registry.npmjs.org/ometa-highlighter/0.1.4", + "0.1.5": "http://registry.npmjs.org/ometa-highlighter/0.1.5", + "0.2.0": "http://registry.npmjs.org/ometa-highlighter/0.2.0", + "0.2.1": "http://registry.npmjs.org/ometa-highlighter/0.2.1", + "0.2.2": "http://registry.npmjs.org/ometa-highlighter/0.2.2", + "0.2.3": "http://registry.npmjs.org/ometa-highlighter/0.2.3" + }, + "dist": { + "0.1.1": { + "tarball": "http://registry.npmjs.org/ometa-highlighter/-/ometa-highlighter-0.1.1.tgz" + }, + "0.1.2": { + "tarball": "http://registry.npmjs.org/ometa-highlighter/-/ometa-highlighter-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "972be7bf30addc42f30eaaaa01d3ed43f482ec13", + "tarball": "http://registry.npmjs.org/ometa-highlighter/-/ometa-highlighter-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "0d36bdb92f32de1e8ee56e148954ebccb802eb55", + "tarball": "http://registry.npmjs.org/ometa-highlighter/-/ometa-highlighter-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "c5614fda427656ed0ca402f8c1c349fd40e19be1", + "tarball": "http://registry.npmjs.org/ometa-highlighter/-/ometa-highlighter-0.1.5.tgz" + }, + "0.2.0": { + "shasum": "26611fbde1fdafad5f90ad12d05de80fcf0e00c5", + "tarball": "http://registry.npmjs.org/ometa-highlighter/-/ometa-highlighter-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "24888d4d04bd1301f1cd66c29f5cba6db1023cbd", + "tarball": "http://registry.npmjs.org/ometa-highlighter/-/ometa-highlighter-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "bec11314006c6de7ea14d6bef1d3f68e3a7d8050", + "tarball": "http://registry.npmjs.org/ometa-highlighter/-/ometa-highlighter-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "85ae4aae1bda3b03bf3d155c60858b783e30ab94", + "tarball": "http://registry.npmjs.org/ometa-highlighter/-/ometa-highlighter-0.2.3.tgz" + } + }, + "url": "http://registry.npmjs.org/ometa-highlighter/" + }, + "ometajs": { + "name": "ometajs", + "description": "A object-oriented language for pattern matching", + "dist-tags": { + "latest": "2.1.10", + "stable": "2.1.10" + }, + "maintainers": [ + { + "name": "veged", + "email": "veged@mail.ru" + }, + { + "name": "fedor.indutny", + "email": "fedor.indutny@gmail.com" + } + ], + "author": { + "name": "Alessandro Warth", + "email": "alexwarth@gmail.com", + "url": "http://awarth.blogspot.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/veged/ometa-js.git" + }, + "time": { + "modified": "2011-12-05T17:45:26.180Z", + "created": "2011-01-23T18:19:29.182Z", + "2.0.1": "2011-01-23T18:19:29.182Z", + "2.0.2": "2011-01-23T18:19:29.182Z", + "2.0.3": "2011-01-23T18:19:29.182Z", + "2.0.4": "2011-03-22T12:37:32.061Z", + "2.0.5": "2011-03-22T12:55:40.998Z", + "2.0.6": "2011-03-24T14:59:46.408Z", + "2.0.7": "2011-07-04T11:43:31.381Z", + "2.0.8": "2011-07-17T23:42:22.968Z", + "2.0.11": "2011-11-01T13:11:01.999Z", + "2.1.1": "2011-11-07T10:47:00.415Z", + "2.0.10": "2011-11-08T21:17:28.636Z", + "2.1.2": "2011-11-23T12:56:56.197Z", + "2.1.3": "2011-11-23T16:17:03.208Z", + "2.1.4": "2011-11-23T17:06:21.631Z", + "2.1.5": "2011-11-24T15:20:40.230Z", + "2.1.6": "2011-11-24T18:45:58.164Z", + "2.1.7": "2011-11-24T20:34:43.458Z", + "2.1.8": "2011-11-24T20:53:08.914Z", + "2.1.8-1": "2011-11-24T22:08:37.157Z", + "2.1.9": "2011-11-25T18:05:21.422Z", + "2.1.10": "2011-12-05T17:45:18.867Z" + }, + "versions": { + "2.0.1": "http://registry.npmjs.org/ometajs/2.0.1", + "2.0.2": "http://registry.npmjs.org/ometajs/2.0.2", + "2.0.3": "http://registry.npmjs.org/ometajs/2.0.3", + "2.0.4": "http://registry.npmjs.org/ometajs/2.0.4", + "2.0.5": "http://registry.npmjs.org/ometajs/2.0.5", + "2.0.6": "http://registry.npmjs.org/ometajs/2.0.6", + "2.0.7": "http://registry.npmjs.org/ometajs/2.0.7", + "2.0.8": "http://registry.npmjs.org/ometajs/2.0.8", + "2.0.11": "http://registry.npmjs.org/ometajs/2.0.11", + "2.0.10": "http://registry.npmjs.org/ometajs/2.0.10", + "2.1.2": "http://registry.npmjs.org/ometajs/2.1.2", + "2.1.3": "http://registry.npmjs.org/ometajs/2.1.3", + "2.1.4": "http://registry.npmjs.org/ometajs/2.1.4", + "2.1.5": "http://registry.npmjs.org/ometajs/2.1.5", + "2.1.6": "http://registry.npmjs.org/ometajs/2.1.6", + "2.1.7": "http://registry.npmjs.org/ometajs/2.1.7", + "2.1.8": "http://registry.npmjs.org/ometajs/2.1.8", + "2.1.8-1": "http://registry.npmjs.org/ometajs/2.1.8-1", + "2.1.9": "http://registry.npmjs.org/ometajs/2.1.9", + "2.1.10": "http://registry.npmjs.org/ometajs/2.1.10" + }, + "dist": { + "2.0.1": { + "tarball": "http://registry.npmjs.org/ometajs/-/ometajs-2.0.1.tgz" + }, + "2.0.2": { + "tarball": "http://registry.npmjs.org/ometajs/-/ometajs-2.0.2.tgz" + }, + "2.0.3": { + "tarball": "http://registry.npmjs.org/ometajs/-/ometajs-2.0.3.tgz" + }, + "2.0.4": { + "shasum": "e9f60099beacf2753d4cced24877ec1673313396", + "tarball": "http://registry.npmjs.org/ometajs/-/ometajs-2.0.4.tgz" + }, + "2.0.5": { + "shasum": "a878f96020737e8210d729b4527c126feb4860de", + "tarball": "http://registry.npmjs.org/ometajs/-/ometajs-2.0.5.tgz" + }, + "2.0.6": { + "shasum": "4f496cb339e89ef32cb36b762fdd407bdc1028af", + "tarball": "http://registry.npmjs.org/ometajs/-/ometajs-2.0.6.tgz" + }, + "2.0.7": { + "shasum": "3167d61eaa45cdb501907e8171452260b1603242", + "tarball": "http://registry.npmjs.org/ometajs/-/ometajs-2.0.7.tgz" + }, + "2.0.8": { + "shasum": "57a85f43b7988e532bf2311c1512c31ed0c2c2f0", + "tarball": "http://registry.npmjs.org/ometajs/-/ometajs-2.0.8.tgz" + }, + "2.0.11": { + "shasum": "4dd49ad1759ba461ecbc10c7ef3f29a5d7780093", + "tarball": "http://registry.npmjs.org/ometajs/-/ometajs-2.0.11.tgz" + }, + "2.0.10": { + "shasum": "499199bd68c1a145c27c4bd1b3b90f23fed1b65c", + "tarball": "http://registry.npmjs.org/ometajs/-/ometajs-2.0.10.tgz" + }, + "2.1.2": { + "shasum": "6c03df30a00ad96e84f58f9683b58ed0e4bd1013", + "tarball": "http://registry.npmjs.org/ometajs/-/ometajs-2.1.2.tgz" + }, + "2.1.3": { + "shasum": "4b722018fe1c236a6aa227c76f66d5ad52167642", + "tarball": "http://registry.npmjs.org/ometajs/-/ometajs-2.1.3.tgz" + }, + "2.1.4": { + "shasum": "f698b1010fb8a39315a2c61af485f532602d392d", + "tarball": "http://registry.npmjs.org/ometajs/-/ometajs-2.1.4.tgz" + }, + "2.1.5": { + "shasum": "908f0e8559096c8ac4f27dd0d2200c4c6ac1c58c", + "tarball": "http://registry.npmjs.org/ometajs/-/ometajs-2.1.5.tgz" + }, + "2.1.6": { + "shasum": "9f952495cd8b21db65a573bd32b6e947835aa005", + "tarball": "http://registry.npmjs.org/ometajs/-/ometajs-2.1.6.tgz" + }, + "2.1.7": { + "shasum": "39845fcb17b20477adf29dc9cd538e2cb0e0a180", + "tarball": "http://registry.npmjs.org/ometajs/-/ometajs-2.1.7.tgz" + }, + "2.1.8": { + "shasum": "9aa43244a456f27a7361ca399e92f447e7edbb35", + "tarball": "http://registry.npmjs.org/ometajs/-/ometajs-2.1.8.tgz" + }, + "2.1.8-1": { + "shasum": "161403bb2f43afb6f430024e0e566fed5ab6616b", + "tarball": "http://registry.npmjs.org/ometajs/-/ometajs-2.1.8-1.tgz" + }, + "2.1.9": { + "shasum": "5c17f87076ffd1fa146d8ab118b07a9dea0431f7", + "tarball": "http://registry.npmjs.org/ometajs/-/ometajs-2.1.9.tgz" + }, + "2.1.10": { + "shasum": "02cf2bcb1ded3e56690c8d717ca3329196b5cc0e", + "tarball": "http://registry.npmjs.org/ometajs/-/ometajs-2.1.10.tgz" + } + }, + "url": "http://registry.npmjs.org/ometajs/" + }, + "on": { + "name": "on", + "description": "on.js is a tiny custom event library", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "tomyan", + "email": "tom@yandell.me.uk" + } + ], + "time": { + "modified": "2011-11-07T22:14:50.567Z", + "created": "2011-11-04T21:15:17.093Z", + "0.1.0": "2011-11-04T21:15:18.306Z", + "0.2.0": "2011-11-07T22:14:50.567Z" + }, + "author": { + "name": "Tom Yandell", + "email": "tom.deletethis@yandell.me.uk", + "url": "http://tom.yandell.me.uk/blog/" + }, + "repository": { + "type": "git", + "url": "git://github.com/tomyan/on.js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/on/0.1.0", + "0.2.0": "http://registry.npmjs.org/on/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "e8154e7a755ab6fca46b87b91c75296db800b856", + "tarball": "http://registry.npmjs.org/on/-/on-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "dfa92eae0754b74b1f06150b35be3821ea18fe2c", + "tarball": "http://registry.npmjs.org/on/-/on-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/on/" + }, + "onceler": { + "name": "onceler", + "description": "OTP (One Time Password) facilities for node.", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "chrisumbel", + "email": "chris@chrisumbel.com" + } + ], + "time": { + "modified": "2011-09-26T22:00:36.895Z", + "created": "2011-09-25T15:50:11.283Z", + "0.0.1": "2011-09-25T15:50:12.047Z", + "0.0.2": "2011-09-25T16:03:51.525Z", + "0.0.3": "2011-09-25T16:51:10.542Z", + "0.0.4": "2011-09-26T22:00:36.895Z" + }, + "author": { + "name": "Chris Umbel", + "email": "chris@chrisumbel.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/onceler/0.0.1", + "0.0.2": "http://registry.npmjs.org/onceler/0.0.2", + "0.0.3": "http://registry.npmjs.org/onceler/0.0.3", + "0.0.4": "http://registry.npmjs.org/onceler/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "d536a41f35adf48c0258e2b74f4554000eb6f254", + "tarball": "http://registry.npmjs.org/onceler/-/onceler-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "2ad62b56cbfa0d1deca36739596aa9cb172a7ea8", + "tarball": "http://registry.npmjs.org/onceler/-/onceler-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "bc5768e6fe22a22d12e1a82c4eb6e1861d9cf99a", + "tarball": "http://registry.npmjs.org/onceler/-/onceler-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "e331dcbba4c56fbd53e592ec11a6f9c7eca3ac3f", + "tarball": "http://registry.npmjs.org/onceler/-/onceler-0.0.4.tgz" + } + }, + "keywords": [ + "otp", + "hotp", + "totp", + "one-time", + "password" + ], + "url": "http://registry.npmjs.org/onceler/" + }, + "OnCollect": { + "name": "OnCollect", + "dist-tags": { + "latest": "1.0.2" + }, + "maintainers": [ + { + "name": "bradleymeck", + "email": "bradley.meck@gmail.com" + } + ], + "time": { + "modified": "2011-04-15T21:29:12.894Z", + "created": "2011-02-18T15:01:40.485Z", + "1.0.0": "2011-02-18T15:01:40.767Z", + "1.0.1": "2011-02-18T15:05:49.304Z", + "1.0.2": "2011-02-18T22:01:53.389Z" + }, + "author": { + "name": "Bradley Meck" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/OnCollect/1.0.0", + "1.0.1": "http://registry.npmjs.org/OnCollect/1.0.1", + "1.0.2": "http://registry.npmjs.org/OnCollect/1.0.2" + }, + "dist": { + "1.0.0": { + "shasum": "82c4acd83c8ec2c43eb8da9cb529e2a0f29cfef8", + "tarball": "http://registry.npmjs.org/OnCollect/-/OnCollect-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "cbdab0535509422de8527d7c375f6be9c45bb183", + "tarball": "http://registry.npmjs.org/OnCollect/-/OnCollect-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "93c185dbb2134afda945aa5ae65a6256e5623771", + "tarball": "http://registry.npmjs.org/OnCollect/-/OnCollect-1.0.2.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "7ab298509c0c5ec521c814ce4d874613adb93d49", + "tarball": "http://registry.npmjs.org/OnCollect/-/OnCollect-1.0.2-0.4-sunos-5.11.tgz" + } + } + } + }, + "url": "http://registry.npmjs.org/OnCollect/" + }, + "one": { + "name": "one", + "description": "Transform NodeJS packages into single stand-alone script files.", + "dist-tags": { + "latest": "1.1.2" + }, + "maintainers": [ + { + "name": "azer", + "email": "azer@kodfabrik.com" + } + ], + "time": { + "modified": "2011-12-14T06:00:52.186Z", + "created": "2011-10-01T23:55:49.817Z", + "1.0.0": "2011-10-01T23:55:50.932Z", + "1.1.0": "2011-10-15T07:01:16.875Z", + "1.1.1": "2011-10-15T07:05:46.143Z", + "1.1.2": "2011-12-14T06:00:52.186Z" + }, + "author": { + "name": "Azer Koculu", + "email": "azer@kodfabrik.com" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/one/1.0.0", + "1.1.0": "http://registry.npmjs.org/one/1.1.0", + "1.1.1": "http://registry.npmjs.org/one/1.1.1", + "1.1.2": "http://registry.npmjs.org/one/1.1.2" + }, + "dist": { + "1.0.0": { + "shasum": "c745149d13e5d9f3a67fb66215d2ddb259f47da6", + "tarball": "http://registry.npmjs.org/one/-/one-1.0.0.tgz" + }, + "1.1.0": { + "shasum": "a2c23d3966e0895b022a429862ac7b81bdf8d0c6", + "tarball": "http://registry.npmjs.org/one/-/one-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "2b21701930d93d4f8a9b4ba3ce9af22421985056", + "tarball": "http://registry.npmjs.org/one/-/one-1.1.1.tgz" + }, + "1.1.2": { + "shasum": "967da2527b545976d9fadab749b25fa99a309f9b", + "tarball": "http://registry.npmjs.org/one/-/one-1.1.2.tgz" + } + }, + "keywords": [ + "build", + "commonjs", + "browser" + ], + "url": "http://registry.npmjs.org/one/" + }, + "onecolor": { + "name": "onecolor", + "description": "Javascript color object with implicit color space conversions. Supports RGB, HSV, HSL and CMYK with alpha channel.", + "dist-tags": { + "latest": "2.0.1" + }, + "maintainers": [ + { + "name": "papandreou", + "email": "andreas@one.com" + } + ], + "time": { + "modified": "2011-10-26T09:39:19.912Z", + "created": "2011-10-26T09:39:19.334Z", + "2.0.1": "2011-10-26T09:39:19.912Z" + }, + "repository": { + "type": "git", + "url": "git@github.com:One-com/one-color.git" + }, + "versions": { + "2.0.1": "http://registry.npmjs.org/onecolor/2.0.1" + }, + "dist": { + "2.0.1": { + "shasum": "7e60bf6b76070f813c509e98f818b1b5b1b1eb46", + "tarball": "http://registry.npmjs.org/onecolor/-/onecolor-2.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/onecolor/" + }, + "onion": { + "name": "onion", + "dist-tags": { + "latest": "0.1.0-1-alpha" + }, + "maintainers": [ + { + "name": "niclashoyer", + "email": "niclas@verbugt.de" + } + ], + "time": { + "modified": "2011-06-11T22:10:28.006Z", + "created": "2011-06-11T22:10:27.343Z", + "0.1.0-1-alpha": "2011-06-11T22:10:28.006Z" + }, + "author": { + "name": "Niclas Hoyer", + "email": "https://github.com/niclashoyer" + }, + "repository": { + "type": "git", + "url": "git://github.com/niclashoyer/onion.git" + }, + "versions": { + "0.1.0-1-alpha": "http://registry.npmjs.org/onion/0.1.0-1-alpha" + }, + "dist": { + "0.1.0-1-alpha": { + "shasum": "df68ca394c33f4d586fa349a39cf5cb751f9a5c0", + "tarball": "http://registry.npmjs.org/onion/-/onion-0.1.0-1-alpha.tgz" + } + }, + "url": "http://registry.npmjs.org/onion/" + }, + "onion.http": { + "name": "onion.http", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "niclashoyer", + "email": "niclas@verbugt.de" + } + ], + "time": { + "modified": "2011-09-25T10:33:43.397Z", + "created": "2011-09-25T10:33:41.690Z", + "0.1.0": "2011-09-25T10:33:43.397Z" + }, + "author": { + "name": "Niclas Hoyer", + "email": "https://github.com/niclashoyer" + }, + "repository": { + "type": "git", + "url": "git://github.com/niclashoyer/onion.http.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/onion.http/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "1f396e51adc4c1e0d578f538611aff6909a2f8c7", + "tarball": "http://registry.npmjs.org/onion.http/-/onion.http-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/onion.http/" + }, + "onion.utils": { + "name": "onion.utils", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "niclashoyer", + "email": "niclas@verbugt.de" + } + ], + "time": { + "modified": "2011-09-25T10:31:42.925Z", + "created": "2011-09-25T10:31:41.369Z", + "0.1.0": "2011-09-25T10:31:42.925Z" + }, + "author": { + "name": "Niclas Hoyer", + "email": "https://github.com/niclashoyer" + }, + "repository": { + "type": "git", + "url": "git://github.com/niclashoyer/onion.utils.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/onion.utils/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "1abe683de9cc004740c0c1cb06cc3386abb34c84", + "tarball": "http://registry.npmjs.org/onion.utils/-/onion.utils-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/onion.utils/" + }, + "onvalid": { + "name": "onvalid", + "description": "a tool for validating JSON objects against schemas written in javascript", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "doffm", + "email": "mark.doffman@gmail.com" + } + ], + "author": { + "name": "Mark Doffman", + "email": "mark.doffman@gmail.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/doffm/Onvalid.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/onvalid/0.2.0" + }, + "dist": { + "0.2.0": { + "shasum": "334282cdd171ac8c5e87086f8d4678a07a120792", + "tarball": "http://registry.npmjs.org/onvalid/-/onvalid-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/onvalid/" + }, + "onyx": { + "name": "onyx", + "description": "Fast Node.js static file server.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "reid", + "email": "me@reidburke.com" + } + ], + "time": { + "modified": "2011-12-03T05:00:30.163Z", + "created": "2011-12-03T04:58:48.697Z", + "0.1.0": "2011-12-03T05:00:30.163Z" + }, + "author": { + "name": "Reid Burke", + "email": "me@reidburke.com", + "url": "http://reidburke.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/reid/onyx.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/onyx/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "7fe3b187feef541f953d03118d5b275bd73ddbbf", + "tarball": "http://registry.npmjs.org/onyx/-/onyx-0.1.0.tgz" + } + }, + "keywords": [ + "static", + "HTTP", + "streaming" + ], + "url": "http://registry.npmjs.org/onyx/" + }, + "oo": { + "name": "oo", + "description": "Your best tool in leveraging javascript prototype object model", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "glesperance", + "email": "gabriel@wavo.me" + } + ], + "time": { + "modified": "2011-08-03T00:34:33.465Z", + "created": "2011-07-22T02:03:53.551Z", + "0.0.1": "2011-07-22T02:03:53.816Z", + "0.0.2": "2011-08-02T01:20:26.552Z", + "0.0.3": "2011-08-03T00:34:33.465Z" + }, + "author": { + "name": "Gabriel Lesperance", + "email": "gabriel@wavo.me", + "url": "glesperance.com / wavo.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/glesperance/ooJS.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/oo/0.0.1", + "0.0.2": "http://registry.npmjs.org/oo/0.0.2", + "0.0.3": "http://registry.npmjs.org/oo/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "9ca5724d3b447e2f87cd34b3bc8d992699287b2d", + "tarball": "http://registry.npmjs.org/oo/-/oo-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "52dc48d9dd58ab31a7e3c33bfb5f63358821712c", + "tarball": "http://registry.npmjs.org/oo/-/oo-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "aae77b862f29d5d04616a5b536cdbd6642b9ffc3", + "tarball": "http://registry.npmjs.org/oo/-/oo-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/oo/" + }, + "oop": { + "name": "oop", + "description": "Simple & light-weight oop.", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "felixge", + "email": "felix@debuggable.com" + } + ], + "time": { + "modified": "2011-04-02T17:53:22.626Z", + "created": "2011-04-02T11:24:23.457Z", + "0.0.1": "2011-04-02T11:24:24.097Z", + "0.0.2": "2011-04-02T17:31:49.154Z", + "0.0.3": "2011-04-02T17:53:22.626Z" + }, + "author": { + "name": "Felix Geisendörfer", + "email": "felix@debuggable.com", + "url": "http://debuggable.com/" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/oop/0.0.1", + "0.0.2": "http://registry.npmjs.org/oop/0.0.2", + "0.0.3": "http://registry.npmjs.org/oop/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "9b1dd210bf2d0b7557e44831ecbeb9f830443822", + "tarball": "http://registry.npmjs.org/oop/-/oop-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "28e7527a4958295c403464297cbdc8eff806d89c", + "tarball": "http://registry.npmjs.org/oop/-/oop-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "70fa405a5650891a194fdc82ca68dad6dabf4401", + "tarball": "http://registry.npmjs.org/oop/-/oop-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/oop/" + }, + "op": { + "name": "op", + "description": "JavaScript Standard Operators As Functions", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "kzh", + "email": "kaleb@hornsby.ws" + } + ], + "time": { + "modified": "2011-06-21T13:46:32.757Z", + "created": "2011-06-14T13:30:30.637Z", + "0.0.0": "2011-06-14T13:30:30.907Z", + "0.0.1": "2011-06-14T13:34:00.763Z", + "0.0.2": "2011-06-14T13:41:46.772Z", + "0.0.3": "2011-06-14T14:11:59.647Z", + "0.0.4": "2011-06-14T16:41:22.960Z", + "0.0.5": "2011-06-21T13:46:32.757Z" + }, + "author": { + "name": "Kaleb Hornsby", + "email": "kaleb@hornsby.ws", + "url": "kaleb.hornsby.ws" + }, + "repository": { + "type": "git", + "url": "git://github.com/kaleb/js-op.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/op/0.0.0", + "0.0.1": "http://registry.npmjs.org/op/0.0.1", + "0.0.2": "http://registry.npmjs.org/op/0.0.2", + "0.0.3": "http://registry.npmjs.org/op/0.0.3", + "0.0.4": "http://registry.npmjs.org/op/0.0.4", + "0.0.5": "http://registry.npmjs.org/op/0.0.5" + }, + "dist": { + "0.0.0": { + "shasum": "32530b60c3dc7526f50dbd13bcc473af291195e4", + "tarball": "http://registry.npmjs.org/op/-/op-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "e7d554c8bc3e9d075e15ba3d7d497c185bb0e179", + "tarball": "http://registry.npmjs.org/op/-/op-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "7778a6958d8a090c08aa4afd14fc36dd61396ce2", + "tarball": "http://registry.npmjs.org/op/-/op-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "e729db9e8d9af9488405970ccfc438f4197a3da5", + "tarball": "http://registry.npmjs.org/op/-/op-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "559028e8bdcabb3b2cfb4eb06194ce458b7582a9", + "tarball": "http://registry.npmjs.org/op/-/op-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "e5c8e65fbc0c0e92f098e8e841c494f35ec77088", + "tarball": "http://registry.npmjs.org/op/-/op-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/op/" + }, + "open-uri": { + "name": "open-uri", + "description": "Asynchronous Open URI, a CommonJS module inspired by Rubys Open-URI library.", + "dist-tags": { + "latest": "0.3.5" + }, + "maintainers": [ + { + "name": "slaskis", + "email": "robert@publicclass.se" + } + ], + "time": { + "modified": "2011-07-15T18:33:26.226Z", + "created": "2011-02-08T15:07:12.283Z", + "0.1.0": "2011-02-08T15:07:12.496Z", + "0.2.0": "2011-02-16T17:10:42.173Z", + "0.2.2": "2011-04-26T09:28:59.351Z", + "0.3.1": "2011-05-22T16:04:56.937Z", + "0.3.2": "2011-05-22T18:27:37.712Z", + "0.3.3": "2011-07-05T16:49:05.988Z", + "0.3.4": "2011-07-11T09:31:31.413Z", + "0.3.5": "2011-07-15T18:33:26.226Z" + }, + "author": { + "name": "Robert Sköld", + "email": "robert@publicclass.se" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/open-uri/0.1.0", + "0.2.0": "http://registry.npmjs.org/open-uri/0.2.0", + "0.2.2": "http://registry.npmjs.org/open-uri/0.2.2", + "0.3.1": "http://registry.npmjs.org/open-uri/0.3.1", + "0.3.2": "http://registry.npmjs.org/open-uri/0.3.2", + "0.3.3": "http://registry.npmjs.org/open-uri/0.3.3", + "0.3.4": "http://registry.npmjs.org/open-uri/0.3.4", + "0.3.5": "http://registry.npmjs.org/open-uri/0.3.5" + }, + "dist": { + "0.1.0": { + "shasum": "d1388aee6ef50cc56c420a33d4ef036306c2e409", + "tarball": "http://registry.npmjs.org/open-uri/-/open-uri-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "9ebeeba5a571a0c3d54a23642f6d6aca1ced48fc", + "tarball": "http://registry.npmjs.org/open-uri/-/open-uri-0.2.0.tgz" + }, + "0.2.2": { + "shasum": "1ebc6d8d5215881d8612518f12c39b720efd82d2", + "tarball": "http://registry.npmjs.org/open-uri/-/open-uri-0.2.2.tgz" + }, + "0.3.1": { + "shasum": "0121891ba08cfecb2149fc17f32adae73bc015a1", + "tarball": "http://registry.npmjs.org/open-uri/-/open-uri-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "c3266ce17e6a7183c43a5405affef9ae98176fa9", + "tarball": "http://registry.npmjs.org/open-uri/-/open-uri-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "c5487ac7903615e4306c1ad35c92f5e9a1da577f", + "tarball": "http://registry.npmjs.org/open-uri/-/open-uri-0.3.3.tgz" + }, + "0.3.4": { + "shasum": "505ea463c417de197a2fbbdd601f87c42973f5bd", + "tarball": "http://registry.npmjs.org/open-uri/-/open-uri-0.3.4.tgz" + }, + "0.3.5": { + "shasum": "89d4e2663acab16e482d67ea1d09d42c87460a11", + "tarball": "http://registry.npmjs.org/open-uri/-/open-uri-0.3.5.tgz" + } + }, + "keywords": [ + "open", + "uri", + "open-uri" + ], + "url": "http://registry.npmjs.org/open-uri/" + }, + "open.core": { + "name": "open.core", + "description": "Common utility functionality used between multiple applications.", + "dist-tags": { + "latest": "0.1.199" + }, + "maintainers": [ + { + "name": "philcockfield", + "email": "phil@cockfield.net" + } + ], + "time": { + "modified": "2011-12-13T05:37:57.138Z", + "created": "2011-07-07T03:57:03.695Z", + "0.0.1": "2011-12-07T16:30:32.854Z", + "0.0.2": "2011-12-07T16:30:32.854Z", + "0.0.3": "2011-12-07T16:30:32.854Z", + "0.0.4": "2011-12-07T16:30:32.854Z", + "0.0.5": "2011-12-07T16:30:32.854Z", + "0.1.0": "2011-12-07T16:30:32.854Z", + "0.1.1": "2011-12-07T16:30:32.854Z", + "0.1.2": "2011-12-07T16:30:32.854Z", + "0.1.3": "2011-12-07T16:30:32.854Z", + "0.1.57": "2011-12-07T16:30:32.854Z", + "0.1.58": "2011-12-07T16:30:32.854Z", + "0.1.59": "2011-12-07T16:30:32.854Z", + "0.1.60": "2011-12-07T16:30:32.854Z", + "0.1.61": "2011-12-07T16:30:32.854Z", + "0.1.62": "2011-12-07T16:30:32.854Z", + "0.1.63": "2011-12-07T16:30:32.854Z", + "0.1.64": "2011-12-07T16:30:32.854Z", + "0.1.65": "2011-12-07T16:30:32.854Z", + "0.1.66": "2011-12-07T16:30:32.854Z", + "0.1.77": "2011-12-07T16:30:32.854Z", + "0.1.78": "2011-12-07T16:30:32.854Z", + "0.1.79": "2011-12-07T16:30:32.854Z", + "0.1.80": "2011-12-07T16:30:32.854Z", + "0.1.81": "2011-12-07T16:30:32.854Z", + "0.1.82": "2011-12-07T16:30:32.854Z", + "0.1.83": "2011-12-07T16:30:32.854Z", + "0.1.84": "2011-12-07T16:30:32.854Z", + "0.1.85": "2011-12-07T16:30:32.854Z", + "0.1.86": "2011-12-07T16:30:32.854Z", + "0.1.87": "2011-12-07T16:30:32.854Z", + "0.1.89": "2011-12-07T16:30:32.854Z", + "0.1.90": "2011-12-07T16:30:32.854Z", + "0.1.91": "2011-12-07T16:30:32.854Z", + "0.1.92": "2011-12-07T16:30:32.854Z", + "0.1.93": "2011-12-07T16:30:32.854Z", + "0.1.94": "2011-12-07T16:30:32.854Z", + "0.1.95": "2011-12-07T16:30:32.854Z", + "0.1.96": "2011-12-07T16:30:32.854Z", + "0.1.97": "2011-12-07T16:30:32.854Z", + "0.1.98": "2011-12-07T16:30:32.854Z", + "0.1.99": "2011-12-07T16:30:32.854Z", + "0.1.100": "2011-12-07T16:30:32.854Z", + "0.1.102": "2011-10-27T01:16:59.422Z", + "0.1.103": "2011-10-27T05:15:03.049Z", + "0.1.104": "2011-10-28T14:30:30.264Z", + "0.1.106": "2011-10-28T16:16:45.614Z", + "0.1.107": "2011-10-28T19:47:55.818Z", + "0.1.108": "2011-10-28T23:47:51.225Z", + "0.1.109": "2011-10-30T18:28:32.277Z", + "0.1.110": "2011-10-30T22:45:47.277Z", + "0.1.111": "2011-10-30T23:26:31.025Z", + "0.1.112": "2011-10-31T15:54:05.440Z", + "0.1.113": "2011-11-02T05:17:39.904Z", + "0.1.114": "2011-11-02T05:19:49.446Z", + "0.1.115": "2011-11-04T14:41:39.380Z", + "0.1.116": "2011-11-07T21:40:45.943Z", + "0.1.117": "2011-11-08T03:04:53.686Z", + "0.1.118": "2011-11-08T05:15:31.471Z", + "0.1.119": "2011-11-08T15:25:14.517Z", + "0.1.120": "2011-11-09T17:27:54.086Z", + "0.1.121": "2011-11-10T06:02:55.231Z", + "0.1.122": "2011-11-11T22:55:00.748Z", + "0.1.123": "2011-11-11T23:03:31.222Z", + "0.1.124": "2011-11-13T23:15:13.436Z", + "0.1.125": "2011-11-15T01:02:18.474Z", + "0.1.126": "2011-11-15T01:19:45.717Z", + "0.1.127": "2011-11-15T06:13:17.067Z", + "0.1.128": "2011-11-15T14:56:34.161Z", + "0.1.129": "2011-11-15T16:11:05.278Z", + "0.1.130": "2011-11-16T13:57:16.038Z", + "0.1.131": "2011-11-16T16:02:23.861Z", + "0.1.133": "2011-11-16T20:50:51.377Z", + "0.1.134": "2011-11-16T20:51:27.259Z", + "0.1.135": "2011-11-16T23:23:53.047Z", + "0.1.137": "2011-11-18T14:19:28.361Z", + "0.1.139": "2011-11-18T21:03:14.795Z", + "0.1.140": "2011-11-21T16:34:25.181Z", + "0.1.157": "2011-11-21T18:00:52.308Z", + "0.1.160": "2011-11-21T18:09:48.551Z", + "0.1.167": "2011-11-21T18:13:48.710Z", + "0.1.168": "2011-11-21T19:25:16.877Z", + "0.1.169": "2011-11-22T01:32:34.292Z", + "0.1.170": "2011-11-22T01:40:58.014Z", + "0.1.172": "2011-11-22T02:39:51.473Z", + "0.1.173": "2011-11-22T05:27:33.716Z", + "0.1.174": "2011-11-24T05:46:29.974Z", + "0.1.175": "2011-11-25T02:24:58.262Z", + "0.1.176": "2011-11-25T03:31:45.373Z", + "0.1.177": "2011-11-26T02:56:55.334Z", + "0.1.178": "2011-11-28T02:30:31.669Z", + "0.1.179": "2011-11-29T21:09:58.954Z", + "0.1.180": "2011-11-30T01:35:39.230Z", + "0.1.181": "2011-12-01T01:16:49.678Z", + "0.1.183": "2011-12-02T01:11:29.273Z", + "0.1.184": "2011-12-02T07:20:50.048Z", + "0.1.185": "2011-12-02T16:12:11.298Z", + "0.1.186": "2011-12-04T07:24:19.113Z", + "0.1.188": "2011-12-05T18:45:12.806Z", + "0.1.189": "2011-12-05T18:52:58.520Z", + "0.1.191": "2011-12-07T16:30:32.854Z", + "0.1.193": "2011-12-07T16:46:27.927Z", + "0.1.194": "2011-12-07T17:00:59.421Z", + "0.1.196": "2011-12-08T01:20:20.472Z", + "0.1.197": "2011-12-08T16:04:35.126Z", + "0.1.199": "2011-12-13T05:37:57.138Z" + }, + "author": { + "name": "Phil Cockfield", + "url": "https://github.com/philcockfield" + }, + "repository": { + "type": "git", + "url": "git://github.com/philcockfield/open.core.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/open.core/0.0.1", + "0.0.2": "http://registry.npmjs.org/open.core/0.0.2", + "0.0.3": "http://registry.npmjs.org/open.core/0.0.3", + "0.0.4": "http://registry.npmjs.org/open.core/0.0.4", + "0.0.5": "http://registry.npmjs.org/open.core/0.0.5", + "0.1.0": "http://registry.npmjs.org/open.core/0.1.0", + "0.1.1": "http://registry.npmjs.org/open.core/0.1.1", + "0.1.2": "http://registry.npmjs.org/open.core/0.1.2", + "0.1.3": "http://registry.npmjs.org/open.core/0.1.3", + "0.1.57": "http://registry.npmjs.org/open.core/0.1.57", + "0.1.58": "http://registry.npmjs.org/open.core/0.1.58", + "0.1.59": "http://registry.npmjs.org/open.core/0.1.59", + "0.1.60": "http://registry.npmjs.org/open.core/0.1.60", + "0.1.61": "http://registry.npmjs.org/open.core/0.1.61", + "0.1.62": "http://registry.npmjs.org/open.core/0.1.62", + "0.1.63": "http://registry.npmjs.org/open.core/0.1.63", + "0.1.64": "http://registry.npmjs.org/open.core/0.1.64", + "0.1.65": "http://registry.npmjs.org/open.core/0.1.65", + "0.1.66": "http://registry.npmjs.org/open.core/0.1.66", + "0.1.77": "http://registry.npmjs.org/open.core/0.1.77", + "0.1.78": "http://registry.npmjs.org/open.core/0.1.78", + "0.1.79": "http://registry.npmjs.org/open.core/0.1.79", + "0.1.80": "http://registry.npmjs.org/open.core/0.1.80", + "0.1.81": "http://registry.npmjs.org/open.core/0.1.81", + "0.1.82": "http://registry.npmjs.org/open.core/0.1.82", + "0.1.83": "http://registry.npmjs.org/open.core/0.1.83", + "0.1.84": "http://registry.npmjs.org/open.core/0.1.84", + "0.1.85": "http://registry.npmjs.org/open.core/0.1.85", + "0.1.86": "http://registry.npmjs.org/open.core/0.1.86", + "0.1.87": "http://registry.npmjs.org/open.core/0.1.87", + "0.1.89": "http://registry.npmjs.org/open.core/0.1.89", + "0.1.90": "http://registry.npmjs.org/open.core/0.1.90", + "0.1.91": "http://registry.npmjs.org/open.core/0.1.91", + "0.1.92": "http://registry.npmjs.org/open.core/0.1.92", + "0.1.93": "http://registry.npmjs.org/open.core/0.1.93", + "0.1.94": "http://registry.npmjs.org/open.core/0.1.94", + "0.1.95": "http://registry.npmjs.org/open.core/0.1.95", + "0.1.96": "http://registry.npmjs.org/open.core/0.1.96", + "0.1.97": "http://registry.npmjs.org/open.core/0.1.97", + "0.1.98": "http://registry.npmjs.org/open.core/0.1.98", + "0.1.99": "http://registry.npmjs.org/open.core/0.1.99", + "0.1.100": "http://registry.npmjs.org/open.core/0.1.100", + "0.1.102": "http://registry.npmjs.org/open.core/0.1.102", + "0.1.103": "http://registry.npmjs.org/open.core/0.1.103", + "0.1.104": "http://registry.npmjs.org/open.core/0.1.104", + "0.1.106": "http://registry.npmjs.org/open.core/0.1.106", + "0.1.107": "http://registry.npmjs.org/open.core/0.1.107", + "0.1.108": "http://registry.npmjs.org/open.core/0.1.108", + "0.1.109": "http://registry.npmjs.org/open.core/0.1.109", + "0.1.110": "http://registry.npmjs.org/open.core/0.1.110", + "0.1.111": "http://registry.npmjs.org/open.core/0.1.111", + "0.1.112": "http://registry.npmjs.org/open.core/0.1.112", + "0.1.113": "http://registry.npmjs.org/open.core/0.1.113", + "0.1.114": "http://registry.npmjs.org/open.core/0.1.114", + "0.1.115": "http://registry.npmjs.org/open.core/0.1.115", + "0.1.116": "http://registry.npmjs.org/open.core/0.1.116", + "0.1.117": "http://registry.npmjs.org/open.core/0.1.117", + "0.1.118": "http://registry.npmjs.org/open.core/0.1.118", + "0.1.119": "http://registry.npmjs.org/open.core/0.1.119", + "0.1.120": "http://registry.npmjs.org/open.core/0.1.120", + "0.1.121": "http://registry.npmjs.org/open.core/0.1.121", + "0.1.122": "http://registry.npmjs.org/open.core/0.1.122", + "0.1.123": "http://registry.npmjs.org/open.core/0.1.123", + "0.1.124": "http://registry.npmjs.org/open.core/0.1.124", + "0.1.125": "http://registry.npmjs.org/open.core/0.1.125", + "0.1.126": "http://registry.npmjs.org/open.core/0.1.126", + "0.1.127": "http://registry.npmjs.org/open.core/0.1.127", + "0.1.128": "http://registry.npmjs.org/open.core/0.1.128", + "0.1.129": "http://registry.npmjs.org/open.core/0.1.129", + "0.1.130": "http://registry.npmjs.org/open.core/0.1.130", + "0.1.131": "http://registry.npmjs.org/open.core/0.1.131", + "0.1.133": "http://registry.npmjs.org/open.core/0.1.133", + "0.1.134": "http://registry.npmjs.org/open.core/0.1.134", + "0.1.135": "http://registry.npmjs.org/open.core/0.1.135", + "0.1.137": "http://registry.npmjs.org/open.core/0.1.137", + "0.1.139": "http://registry.npmjs.org/open.core/0.1.139", + "0.1.140": "http://registry.npmjs.org/open.core/0.1.140", + "0.1.157": "http://registry.npmjs.org/open.core/0.1.157", + "0.1.160": "http://registry.npmjs.org/open.core/0.1.160", + "0.1.167": "http://registry.npmjs.org/open.core/0.1.167", + "0.1.168": "http://registry.npmjs.org/open.core/0.1.168", + "0.1.169": "http://registry.npmjs.org/open.core/0.1.169", + "0.1.170": "http://registry.npmjs.org/open.core/0.1.170", + "0.1.172": "http://registry.npmjs.org/open.core/0.1.172", + "0.1.173": "http://registry.npmjs.org/open.core/0.1.173", + "0.1.174": "http://registry.npmjs.org/open.core/0.1.174", + "0.1.175": "http://registry.npmjs.org/open.core/0.1.175", + "0.1.176": "http://registry.npmjs.org/open.core/0.1.176", + "0.1.177": "http://registry.npmjs.org/open.core/0.1.177", + "0.1.178": "http://registry.npmjs.org/open.core/0.1.178", + "0.1.179": "http://registry.npmjs.org/open.core/0.1.179", + "0.1.180": "http://registry.npmjs.org/open.core/0.1.180", + "0.1.181": "http://registry.npmjs.org/open.core/0.1.181", + "0.1.183": "http://registry.npmjs.org/open.core/0.1.183", + "0.1.184": "http://registry.npmjs.org/open.core/0.1.184", + "0.1.185": "http://registry.npmjs.org/open.core/0.1.185", + "0.1.186": "http://registry.npmjs.org/open.core/0.1.186", + "0.1.188": "http://registry.npmjs.org/open.core/0.1.188", + "0.1.189": "http://registry.npmjs.org/open.core/0.1.189", + "0.1.191": "http://registry.npmjs.org/open.core/0.1.191", + "0.1.193": "http://registry.npmjs.org/open.core/0.1.193", + "0.1.194": "http://registry.npmjs.org/open.core/0.1.194", + "0.1.196": "http://registry.npmjs.org/open.core/0.1.196", + "0.1.197": "http://registry.npmjs.org/open.core/0.1.197", + "0.1.199": "http://registry.npmjs.org/open.core/0.1.199" + }, + "dist": { + "0.0.1": { + "shasum": "560a60ea381c279b9f57968811471f9e2544d54c", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "55cc91b0ff5e8b75b50b6edb59da05535698b879", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "382abfa6c58f91e4e9a49c073b2053c91d91de00", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "729c479d9bcca6c26b01a233b6c0f9ce32f81048", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "ad67025bf430ffd60c222460c508b98302fd5691", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.0.5.tgz" + }, + "0.1.0": { + "shasum": "90c8b7c53207c0859c3513f57e636d1ad97e9f9a", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "3e8951c0078a10cfb9f7c24e3406c867d6803fab", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "ab764f08c08bb05f64f5e16964af06b0ee21d7bb", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "6e9d5933d5e79c60f1964747f84e9be0d4f43f8a", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.3.tgz" + }, + "0.1.57": { + "shasum": "52d211e6311142881f72ba945699cf41da466e7b", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.57.tgz" + }, + "0.1.58": { + "shasum": "acd3550d356439597ea15b9cbda877ce38efb677", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.58.tgz" + }, + "0.1.59": { + "shasum": "3a47bd9aa206912de1fb703c9d983a48cc381e00", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.59.tgz" + }, + "0.1.60": { + "shasum": "608ca9c209d25845ccd4e06c27e02e0b90d91d91", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.60.tgz" + }, + "0.1.61": { + "shasum": "84e912164bdbd65bb73fbf6cb4113022424317a2", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.61.tgz" + }, + "0.1.62": { + "shasum": "5a7a73be83027804e63ce60d262f7eacb1f50e5c", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.62.tgz" + }, + "0.1.63": { + "shasum": "809ed4403e7faef2567eba59be93611c92581c31", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.63.tgz" + }, + "0.1.64": { + "shasum": "bc886e248d4125e9ae9b95830fa33067f7536709", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.64.tgz" + }, + "0.1.65": { + "shasum": "e64e87e2079fbed4a1f7f9b0699d319cce7f47a0", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.65.tgz" + }, + "0.1.66": { + "shasum": "fc9c33438aa306ca4a9a6b8495d37cf7644c0e45", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.66.tgz" + }, + "0.1.77": { + "shasum": "34d54af0220f5dee9822847bec8281c6c61beab3", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.77.tgz" + }, + "0.1.78": { + "shasum": "bcb1100a81fe79bcb4095c7c09779e8260882186", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.78.tgz" + }, + "0.1.79": { + "shasum": "cb202757a48a9f55e0002922b6a2d73b855230b3", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.79.tgz" + }, + "0.1.80": { + "shasum": "12dde34a759deca1cf008cf0e85bc7de79b2d758", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.80.tgz" + }, + "0.1.81": { + "shasum": "8001565219ad84f748c110a817ccba58452e6857", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.81.tgz" + }, + "0.1.82": { + "shasum": "3a014a823d5f97c23d1fd12496ecf42c9a263331", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.82.tgz" + }, + "0.1.83": { + "shasum": "e3e182924c2ca6f76a42d809370addbe3169509d", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.83.tgz" + }, + "0.1.84": { + "shasum": "b4ed5ac5a7d2d5cc0bb0161ead3c7e35062a1bb0", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.84.tgz" + }, + "0.1.85": { + "shasum": "31e5fa5e5418d8ef4c3610511925061962c050a4", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.85.tgz" + }, + "0.1.86": { + "shasum": "ce7b2185a5b20c17e471d38dc7e4a43093ad9273", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.86.tgz" + }, + "0.1.87": { + "shasum": "732561a2f7025d7617b95d64c84ec3dc6728de44", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.87.tgz" + }, + "0.1.89": { + "shasum": "da486e3458a1b63dfa7932f20af7fc97de36cf09", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.89.tgz" + }, + "0.1.90": { + "shasum": "1481993d50408c89239adff15944939dcd95a6c3", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.90.tgz" + }, + "0.1.91": { + "shasum": "3e6ac1d2c4726536884a344e1b1c3ec663a5c372", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.91.tgz" + }, + "0.1.92": { + "shasum": "114a8207eed44136d19c26eeee142ec37bc5b7d1", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.92.tgz" + }, + "0.1.93": { + "shasum": "8061f808c82bb5832cabb4f9402008ff9359e875", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.93.tgz" + }, + "0.1.94": { + "shasum": "b8c571849817259daaf6b25138ae9337c26b881c", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.94.tgz" + }, + "0.1.95": { + "shasum": "8efc2e71c6e776b88aad8a6407df976ee123a58e", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.95.tgz" + }, + "0.1.96": { + "shasum": "3ec93c7c67a4a85df6b8a9c5a0ed42dd64c27659", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.96.tgz" + }, + "0.1.97": { + "shasum": "97479da51862626c232d000ed45e3e1165bb095f", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.97.tgz" + }, + "0.1.98": { + "shasum": "ce7f1c62a98d58b2f5438c5f8757b3428896b949", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.98.tgz" + }, + "0.1.99": { + "shasum": "e01dd39e99d718594ba75bb48370716b7e6bc1f7", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.99.tgz" + }, + "0.1.100": { + "shasum": "d5d49f35be83668e3242f238756db2abe590ac0c", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.100.tgz" + }, + "0.1.102": { + "shasum": "2f83fea28b25eefdd25036df36ef2b11885ff3ec", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.102.tgz" + }, + "0.1.103": { + "shasum": "e3de1f518ce6f7b56a0c85accbcd70041a43a506", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.103.tgz" + }, + "0.1.104": { + "shasum": "db090119676f0a03998f43ae384090bf9e86dc1a", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.104.tgz" + }, + "0.1.106": { + "shasum": "6881e38dda8dbe4d85d2b3b8b5a71718023627a6", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.106.tgz" + }, + "0.1.107": { + "shasum": "0eefcf3e1ae26e64164c96153edf2f5ed5230dcc", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.107.tgz" + }, + "0.1.108": { + "shasum": "75e158bc1e49a0fe922b9bbd0da6e6454fbc8ee5", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.108.tgz" + }, + "0.1.109": { + "shasum": "caeeccdd51c514812dda5485f42e37208a6770cc", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.109.tgz" + }, + "0.1.110": { + "shasum": "b5f7f7a2808abb6aa3c1dcb6c6a1204a3f4a3874", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.110.tgz" + }, + "0.1.111": { + "shasum": "2f791ce158d9736c80c011d5b20e77baae243502", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.111.tgz" + }, + "0.1.112": { + "shasum": "b605c5c95b0aaaebe501b6d383e32ba6428caa04", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.112.tgz" + }, + "0.1.113": { + "shasum": "b8ac38c900b48f8d37a2eb29efa56650ba0326d7", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.113.tgz" + }, + "0.1.114": { + "shasum": "7602abc2487b0fa0458e1ecb5d4263b05f039f8e", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.114.tgz" + }, + "0.1.115": { + "shasum": "665c79b6c4ff1f9bc53461a2d35de7e0129f7616", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.115.tgz" + }, + "0.1.116": { + "shasum": "00ba0471018aad6af279f86a95b67658d5752a6e", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.116.tgz" + }, + "0.1.117": { + "shasum": "5f38e9bdd293d27c389bdf030e590e3aec830102", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.117.tgz" + }, + "0.1.118": { + "shasum": "4883b6170d548a9237c845d8012bba32422e98a4", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.118.tgz" + }, + "0.1.119": { + "shasum": "90e1646637293028e2ac6aa028c77b17ea34a623", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.119.tgz" + }, + "0.1.120": { + "shasum": "22272a94af24ab8a3a5d69692cd356d61788bb13", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.120.tgz" + }, + "0.1.121": { + "shasum": "3424ed6b73c4a282c5f5fe32e23d62f8fb78af76", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.121.tgz" + }, + "0.1.122": { + "shasum": "0c1e4f396f59a9b39a2dc023765c8ce0dbb025c6", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.122.tgz" + }, + "0.1.123": { + "shasum": "18848f18b8671ff665fc29cfc1d842bec9d7c1c8", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.123.tgz" + }, + "0.1.124": { + "shasum": "85191a22580669fca835d9d58ff5d2a506126fd9", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.124.tgz" + }, + "0.1.125": { + "shasum": "637bc0ea11e1c7a7c18d8770827aa7bc7700e712", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.125.tgz" + }, + "0.1.126": { + "shasum": "cd8144fa27a3bbca8072ca2ada179c0c3776e399", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.126.tgz" + }, + "0.1.127": { + "shasum": "613c4772723a739b76a7aced3256fab970b6188e", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.127.tgz" + }, + "0.1.128": { + "shasum": "fe17d4ecfdfaf2865a976a7c2a200b814e1ec8a5", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.128.tgz" + }, + "0.1.129": { + "shasum": "ec1a3ded76820d8a412f8ec7d903fadef92f1342", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.129.tgz" + }, + "0.1.130": { + "shasum": "c7c71a75bbc69dff4fb78ecd71d4f59cf28846f0", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.130.tgz" + }, + "0.1.131": { + "shasum": "30780d90994ca223321a8a9a93d78e443f83838f", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.131.tgz" + }, + "0.1.133": { + "shasum": "98510f0af5e3a6ff06842899bafaf66162798c96", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.133.tgz" + }, + "0.1.134": { + "shasum": "182d4a80040c44fc308e8dab969880200a1f0eec", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.134.tgz" + }, + "0.1.135": { + "shasum": "427e15bfa4da317bc5031c84a815ab3f46801f6d", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.135.tgz" + }, + "0.1.137": { + "shasum": "9a440dd691de652efad223d16adcf50c2e50f646", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.137.tgz" + }, + "0.1.139": { + "shasum": "637900997cbaeffbc610dcfdf036774be9f5d104", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.139.tgz" + }, + "0.1.140": { + "shasum": "64f6c0d84edec4d75c57a6d8e3f7fe4f77322352", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.140.tgz" + }, + "0.1.157": { + "shasum": "8e4f047df63c04aefc71b6adab8bc3699347437d", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.157.tgz" + }, + "0.1.160": { + "shasum": "3cae3f30f2de067e23948fb0c7bc1509912d26fb", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.160.tgz" + }, + "0.1.167": { + "shasum": "4b99d8b1775bee4cd3b9cd4686eea4bc6822a0db", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.167.tgz" + }, + "0.1.168": { + "shasum": "3f245d13c382e52397eb9412bda2353e32219cd2", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.168.tgz" + }, + "0.1.169": { + "shasum": "c8e9efe671dd30b6c152e823ae30922bf0e42296", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.169.tgz" + }, + "0.1.170": { + "shasum": "1d531bd101cfb5db985d329986181ace0cb16667", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.170.tgz" + }, + "0.1.172": { + "shasum": "26a4dfe29bf71ddbcb67c3d1d8b9b54cf43540a3", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.172.tgz" + }, + "0.1.173": { + "shasum": "ac7e2b325a3c2336cfb4437f3684f5319fdc8cec", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.173.tgz" + }, + "0.1.174": { + "shasum": "8437937506d172fb745911a4181321ffd5ff6800", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.174.tgz" + }, + "0.1.175": { + "shasum": "365643d8aee51f4f8c995c7d82447140d0596a31", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.175.tgz" + }, + "0.1.176": { + "shasum": "cd912ba2562385f36fa40ecfab3316ab282a9f93", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.176.tgz" + }, + "0.1.177": { + "shasum": "eaa0e59b247d8061ca0c9bc4bdeeb461b65cc9ae", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.177.tgz" + }, + "0.1.178": { + "shasum": "4680db6fdbc6d29cf50cc467540b2d7e1c44cea7", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.178.tgz" + }, + "0.1.179": { + "shasum": "171565fe3488ab7631a01f2659cde14ff4385846", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.179.tgz" + }, + "0.1.180": { + "shasum": "8086cef3be7c90166d18c2a717401e830d252e39", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.180.tgz" + }, + "0.1.181": { + "shasum": "0bff7a71139e83b78683312cc49881beb53fe738", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.181.tgz" + }, + "0.1.183": { + "shasum": "8d644251631646720853895c31a55f1443f4cdad", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.183.tgz" + }, + "0.1.184": { + "shasum": "0ac94aefca58afd5c03f37e1de3bc2e8a61cf752", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.184.tgz" + }, + "0.1.185": { + "shasum": "3a5a04966df6ff2a352ef60a03d412d579246254", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.185.tgz" + }, + "0.1.186": { + "shasum": "9fbcbd80adedd13f4042f1afc311377f7322c6ea", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.186.tgz" + }, + "0.1.188": { + "shasum": "3b2f69fb69524be900b7730b9e374dfb0ea69667", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.188.tgz" + }, + "0.1.189": { + "shasum": "6fcb5bc266b6dc41f04fddf1d65d3b1215cba08f", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.189.tgz" + }, + "0.1.191": { + "shasum": "3592b96395cb934716f65e742d2f51550354c791", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.191.tgz" + }, + "0.1.193": { + "shasum": "18ea70e867a2be4bf751416ac02efbe6a987003e", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.193.tgz" + }, + "0.1.194": { + "shasum": "04e3a35dfb16409ac1cc8292cee2211cb8aa08dc", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.194.tgz" + }, + "0.1.196": { + "shasum": "dab29527078ecd4ed73ca50e5ad90144fb2be710", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.196.tgz" + }, + "0.1.197": { + "shasum": "0a967d239db123491f5cba08aee1a78e1984a4b9", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.197.tgz" + }, + "0.1.199": { + "shasum": "365efe637582bd96f6623a536ba9865dcffa8263", + "tarball": "http://registry.npmjs.org/open.core/-/open.core-0.1.199.tgz" + } + }, + "keywords": [ + "utility", + "core", + "foundation", + "library", + "common" + ], + "url": "http://registry.npmjs.org/open.core/" + }, + "open311": { + "name": "open311", + "description": "A Node.js module for interacting with an Open311 API.", + "dist-tags": { + "latest": "0.0.8" + }, + "maintainers": [ + { + "name": "mheadd", + "email": "mheadd@voxeo.com" + } + ], + "time": { + "modified": "2011-09-12T17:53:59.072Z", + "created": "2011-01-24T13:41:06.774Z", + "0.0.3": "2011-01-24T13:41:06.929Z", + "0.0.4": "2011-03-04T02:35:37.473Z", + "0.0.5": "2011-03-31T02:03:45.106Z", + "0.0.6": "2011-03-31T02:07:31.915Z", + "0.0.7": "2011-09-12T17:44:39.546Z", + "0.0.8": "2011-09-12T17:53:59.072Z" + }, + "author": { + "name": "Mark Headd", + "email": "mheadd@voiceingov.org", + "url": "http://voiceingov.org" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/open311/0.0.3", + "0.0.4": "http://registry.npmjs.org/open311/0.0.4", + "0.0.5": "http://registry.npmjs.org/open311/0.0.5", + "0.0.6": "http://registry.npmjs.org/open311/0.0.6", + "0.0.7": "http://registry.npmjs.org/open311/0.0.7", + "0.0.8": "http://registry.npmjs.org/open311/0.0.8" + }, + "dist": { + "0.0.3": { + "shasum": "c81f744207bf6e96d9337f279a9f47d5f7fac6a9", + "tarball": "http://registry.npmjs.org/open311/-/open311-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "ecc61c7ccb902af6cbb96268b64e5b36c4ce06aa", + "tarball": "http://registry.npmjs.org/open311/-/open311-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "226bbdba7c342bff8f5f4ed971d15863ac49c379", + "tarball": "http://registry.npmjs.org/open311/-/open311-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "6c4a6dcacd97a739f56057f0e9e6f8e7c8e4c9f7", + "tarball": "http://registry.npmjs.org/open311/-/open311-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "3d63773f9352d5be097119087c2fcb3e2fde3eef", + "tarball": "http://registry.npmjs.org/open311/-/open311-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "3961da589ba056a0bfd4808414874f285210df01", + "tarball": "http://registry.npmjs.org/open311/-/open311-0.0.8.tgz" + } + }, + "url": "http://registry.npmjs.org/open311/" + }, + "openid": { + "name": "openid", + "description": "OpenID 1.1/2.0 library for node.js", + "dist-tags": { + "latest": "0.3.2" + }, + "maintainers": [ + { + "name": "havard", + "email": "havard.stranden@gmail.com" + } + ], + "time": { + "modified": "2011-11-15T18:00:35.872Z", + "created": "2011-01-08T21:41:26.492Z", + "0.1.0": "2011-01-08T21:41:26.811Z", + "0.1.1": "2011-01-17T21:12:03.678Z", + "0.1.2": "2011-01-31T22:58:05.331Z", + "0.1.3": "2011-02-23T23:04:24.853Z", + "0.1.4": "2011-03-06T22:14:51.606Z", + "0.1.5": "2011-04-06T16:41:38.853Z", + "0.1.6": "2011-05-19T22:14:26.026Z", + "0.1.7": "2011-05-26T11:49:17.846Z", + "0.1.8": "2011-05-26T14:02:28.660Z", + "0.2.0": "2011-06-21T18:01:34.445Z", + "0.3.0": "2011-07-22T21:43:04.598Z", + "0.3.1": "2011-07-22T23:17:05.412Z", + "0.3.2": "2011-11-15T18:00:35.872Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/havard/node-openid.git" + }, + "author": { + "name": "Håvard Stranden", + "email": "havard.stranden@gmail.com", + "url": "http://ox.no" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/openid/0.1.0", + "0.1.1": "http://registry.npmjs.org/openid/0.1.1", + "0.1.2": "http://registry.npmjs.org/openid/0.1.2", + "0.1.3": "http://registry.npmjs.org/openid/0.1.3", + "0.1.4": "http://registry.npmjs.org/openid/0.1.4", + "0.1.5": "http://registry.npmjs.org/openid/0.1.5", + "0.1.6": "http://registry.npmjs.org/openid/0.1.6", + "0.1.7": "http://registry.npmjs.org/openid/0.1.7", + "0.1.8": "http://registry.npmjs.org/openid/0.1.8", + "0.2.0": "http://registry.npmjs.org/openid/0.2.0", + "0.3.0": "http://registry.npmjs.org/openid/0.3.0", + "0.3.1": "http://registry.npmjs.org/openid/0.3.1", + "0.3.2": "http://registry.npmjs.org/openid/0.3.2" + }, + "dist": { + "0.1.0": { + "shasum": "3c43fd0d80eafdca6f8e02a0ad461448f8dfbc4b", + "tarball": "http://registry.npmjs.org/openid/-/openid-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "77306110433198402be974f180e26f8d714a7444", + "tarball": "http://registry.npmjs.org/openid/-/openid-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "a99eee7ed5c5b6fb1b74f3f1f9ffe0bfae0138fa", + "tarball": "http://registry.npmjs.org/openid/-/openid-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "d22f849ca97bc91eaf8c534bec9d72d2e6fb1a60", + "tarball": "http://registry.npmjs.org/openid/-/openid-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "f1cf76b4998b8eb7523084e057fabed947832e96", + "tarball": "http://registry.npmjs.org/openid/-/openid-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "e401af957ffd2bf3684c41551000ff3cfb97dbbb", + "tarball": "http://registry.npmjs.org/openid/-/openid-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "cca0dddc9a24d990ea4155d936831ff60ea763d8", + "tarball": "http://registry.npmjs.org/openid/-/openid-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "12bf46c8875de0e2e4ff0813705d75ea75201f97", + "tarball": "http://registry.npmjs.org/openid/-/openid-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "f110ed7d98fc87ff389f553d262c8032579d17d3", + "tarball": "http://registry.npmjs.org/openid/-/openid-0.1.8.tgz" + }, + "0.2.0": { + "shasum": "3e76efddd5edb339a14cd64078ce6c5c19025d27", + "tarball": "http://registry.npmjs.org/openid/-/openid-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "7a404f5639a0642997469b6fd84d90ee710c3eec", + "tarball": "http://registry.npmjs.org/openid/-/openid-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "9d6647c674013bbfc9b683cc11fe158942f2be7e", + "tarball": "http://registry.npmjs.org/openid/-/openid-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "29bd0935aa7ee15b7f8801388144f2689804c8a9", + "tarball": "http://registry.npmjs.org/openid/-/openid-0.3.2.tgz" + } + }, + "keywords": [ + "openid", + "auth", + "authentication", + "identity", + "identifier", + "relying", + "party", + "1.1", + "2.0", + "library" + ], + "url": "http://registry.npmjs.org/openid/" + }, + "openlayers": { + "name": "openlayers", + "description": "openlayers for nodejs", + "dist-tags": { + "latest": "3.0.0" + }, + "maintainers": [ + { + "name": "booo", + "email": "borgers@mi.fu-berlin.de" + } + ], + "time": { + "modified": "2011-07-22T12:38:02.078Z", + "created": "2011-07-22T12:38:01.513Z", + "3.0.0": "2011-07-22T12:38:02.078Z" + }, + "repository": { + "type": "git", + "url": "git@github.com:booo/node-openlayers.git" + }, + "versions": { + "3.0.0": "http://registry.npmjs.org/openlayers/3.0.0" + }, + "dist": { + "3.0.0": { + "shasum": "5cfaa47a7a14bdd62378855f1b39f294d3668913", + "tarball": "http://registry.npmjs.org/openlayers/-/openlayers-3.0.0.tgz" + } + }, + "keywords": [ + "openlayers", + "node" + ], + "url": "http://registry.npmjs.org/openlayers/" + }, + "opentok": { + "name": "opentok", + "description": "OpenTokSDK for node.js", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "bsstoner", + "email": "bsstoner@gmail.com" + } + ], + "time": { + "modified": "2011-07-27T16:21:39.059Z", + "created": "2011-03-16T15:00:56.703Z", + "0.1.0": "2011-03-16T15:00:56.907Z", + "0.1.2": "2011-07-27T16:21:39.059Z" + }, + "author": { + "name": "Brian Stoner", + "email": "bsstoner@gmail.com", + "url": "http://brianstoner.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/bsstoner/opentok.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/opentok/0.1.0", + "0.1.2": "http://registry.npmjs.org/opentok/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "99a68b13f30984a428abef86b09399886737b334", + "tarball": "http://registry.npmjs.org/opentok/-/opentok-0.1.0.tgz" + }, + "0.1.2": { + "shasum": "824f36b3da68503293db00f111afd3b3f36d4665", + "tarball": "http://registry.npmjs.org/opentok/-/opentok-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/opentok/" + }, + "opentsdb-dashboard": { + "name": "opentsdb-dashboard", + "description": "A dashboard for OpenTSDB", + "dist-tags": { + "latest": "1.2.1" + }, + "maintainers": [ + { + "name": "marcuswestin", + "email": "narcvs@gmail.com" + } + ], + "time": { + "modified": "2011-06-20T19:40:31.338Z", + "created": "2011-06-20T19:40:31.134Z", + "1.2.1": "2011-06-20T19:40:31.338Z" + }, + "author": { + "name": "Marcus Westin", + "email": "narcvs@gmail.com", + "url": "http://marcuswest.in" + }, + "versions": { + "1.2.1": "http://registry.npmjs.org/opentsdb-dashboard/1.2.1" + }, + "dist": { + "1.2.1": { + "shasum": "e1f1fc29197f5a7e69ae0628b93a3243916839d7", + "tarball": "http://registry.npmjs.org/opentsdb-dashboard/-/opentsdb-dashboard-1.2.1.tgz" + } + }, + "url": "http://registry.npmjs.org/opentsdb-dashboard/" + }, + "operatic": { + "name": "operatic", + "description": "Shared utility functions for all operatic.js projects", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "# operatic.js\n\nUtility functions used by Operatic projects\n\n## Modified MIT License\nCopyright (c) 2010 Brian Mavity \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nExcept as contained in this notice, the name(s) of the above copyright\nholders shall not be used in advertising or otherwise to promote the sale,\nuse or other dealings in this Software without prior written authorization.\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n", + "maintainers": [ + { + "name": "bmavity", + "email": "brian@brianmavity.com" + } + ], + "time": { + "modified": "2011-11-26T16:34:46.855Z", + "created": "2011-11-26T16:34:45.927Z", + "0.1.0": "2011-11-26T16:34:46.855Z" + }, + "author": { + "name": "Brian Mavity", + "email": "brian@brianmavity.com", + "url": "http://www.brianmavity.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/bmavity/operatic.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/operatic/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "2cbf9878e0c6ef2c960105694fe8ed5871f91a88", + "tarball": "http://registry.npmjs.org/operatic/-/operatic-0.1.0.tgz" + } + }, + "keywords": [ + "templating" + ], + "url": "http://registry.npmjs.org/operatic/" + }, + "operetta": { + "name": "operetta", + "description": "The Node Option Parser That Sings!", + "dist-tags": { + "latest": "0.0.4" + }, + "readme": "
\n~~~ ~~~ ~~~ ~~~ ~~~ ~~~ ~~~ ~~~ ~~~ ~~~ ~~~ ~~~ ~~~\n _____  ____  ____  ____  ____  ____  ____   __\n(  _  )(  _ \\( ___)(  _ \\( ___)(_  _)(_  _) /__\\\n )(_)(  )___/ )__)  )   / )__)   )(    )(  /(__)\\\n(_____)(__)  (____)(_)\\_)(____) (__)  (__)(__)(__)\n\n        A Node Option Parser That Sings!\n\n~~~ ~~~ ~~~ ~~~ ~~~ ~~~ ~~~ ~~~ ~~~ ~~~ ~~~ ~~~ ~~~\n
\n\n# Plot Summary #\n\n## Options ##\n\n**All options are arguments, but not all arguments are options.**\n\n $ nurl -I --insecure https://topsyturvey.onion/mikado.mkv\n\nIn the example above, the program nurl has three arguments, two of which are\noptions. Options are arguments that are one letter long and start with a dash\n(-), these are \"short options,\" or many letters long and start with a double\ndash (--), these are long options. Arguments that are not options are called\n\"positional\" arguments, because they have no name, so can only be referred to\nby their position following the command.\n\nOperetta would parse the above example as follows:\n\n
\n{ positional: [ 'https://topsyturvey.onion/mikado.mkv' ],\n '-I': [ true ],\n '--insecure': [ true ]}\n
\n\nFor the program to receive these values, it calls the start function with a\ncallback.\n\n
\nvar Operetta = require(\"operetta\").Operetta;\noperetta = new Operetta();\noperetta.start(function(values) {\n  console.log(values);\n});\n
\n\nSimple, right? And quite enough for many programs. But that is not all, oh no\nthat is not all!\n\n## Parameters ##\n\n**All parameters are options but not all options are parameters.**\n\n $ nysql --database secret_database --host=control.onion -usmart -p Iheart99\n\nSometimes options take a value. We call these Parameters.\n\nThe above shows the four valid forms to set values. Without any further\ninstruction, Operetta would parse the above as follows:\n\n
\n{ positional: [ 'secret_database', 'Iheart99' ],\n '--database': [ true ],\n '--host': [ 'control.onion' ],\n '-u': [ true ],\n '-s': [ true ],\n '-m': [ true ],\n '-a': [ true ],\n '-r': [ true ],\n '-t': [ true ],\n '-p': [ true ]\n}\n
\n\nUhgg. That's probably not what we want. It got --host right, because that is\nthe most unambiguous form for a parameter to take, a long option connected to a\nvalue by an equal sign. However the rest, what a mess! Since it doesn't know\nthat --database and -p are parameters, it treats \"secret_database\" and\n\"Iheart99\" as positional arguments, and since short options can be chained\ntogether, Operetta thinks \"usmart\" is a chain of 6 options. We're going to have\nto give operetta more information to handle these correctly.\n\n
\nvar Operetta = require(\"operetta\").Operetta;\noperetta = new Operetta();\noperetta.parameters(['-D','--database'], \"Database\");\noperetta.parameters(['-H','--host'], \"Host\");\noperetta.parameters(['-u','--user'], \"User\");\noperetta.parameters(['-p','--password'], \"Password\");\noperetta.start(function(values) {\n  console.log(values);\n});\n
\n\nWe use the parameters function to tell Operetta some things about our parameters,\nfirst we pass a list of options, i.e. ['-D','--database'], this gives the long\nand short form of the option, then we give a description.\n\nNow, we get the follow values:\n\n
\n{ positional: [],\n '-D': [ 'secret_database' ],\n '-H': [ 'control.onion' ],\n '-u': [ 'smart' ],\n '-p': [ 'Iheart99' ]}\n
\n\nMuch better! Note that the key for the value is always the first item in the\noptions list passed, so -D is present, even though --database was used.\n\n## Help ##\n\nWhat's more is now that we have descriptions, operetta will automatically bind\nthe options -h and --help to show these descriptions as help.\n\n
\n$ nysql --help\n\nUsage:\n-D,--database  Database\n-H,--host      Host\n-u,--user      User\n-p,--password  Password\n-h,--help      Show Help\n
\n\nNifty, huh? But what about plain old options? We may want to give these\ndescriptions too. For example, in our earlier nurl example, we may want to\nprovide descriptions for -I and --insecure. We can use the options function for\nthis.\n\n
\noperetta.options(['-I','--head'], \"Show document info only\");\noperetta.options(['-k','--insecure'], \"Allow connections to SSL sites without certs\");\n
\n\nIf you really insist, you can can override -h and --help using either the\noptions or parameters function, you can then then get the help output by\ncalling the usage function, either with or without a callback.\n\n
\n// this will call console.log with help output.\noperetta.usage();\n// this will pass usage text to a callback.\noperetta.usage(function(help) {\n  console.log(help);\n});\n
\n\nWe can add a banner above line that says \"Usage.\"\n\n
\noperetta.banner = \"NySQL. The Nultimate Natabase!\\n\";\n
\n\nNow we get the following Help:\n
\nNySQL. The Nultimate Natabase!\n\nUsage:\n-D,--database  Database\n-H,--host      Host\n-u,--user      User\n-p,--password  Password\n-h,--help      Show Help\n
\n\nThere you go! Now you can add options and parameters to your program and have\nit display nice help with the descriptions. That's all you need right? But that\nis not all operetta can do! Oh no, that is not all!\n\n## Events ##\n\nSometimes you don't just want all the options parsed and dumped to a single\ncallback as a values object, but you wold rather have an event triggered for\neach option. Here is where Operetta Sings!\n\nThe operetta object is an EventEmitter, so you can bind events with the on\noption.\n\n
\noperetta.on('-k', function(value) {\n  console.log('Warning! The url you are requesting has not given any money to the SSL root certificate racketeers, and so while it's probably perfectly secure, it is not contributing to the profits of any money grubbing certificate authority!');\n});\n
\n\nSince -k is just an option, value will always be true when this event is\ncalled, in the case of a parameter, value will be the value passed or null if\nnone was passed.\n\nWhile using the on function works, the preferred way to set a callback is to\npass it as the third argument to either the options or parameters function.\n\n
\noperetta.options(['-k','--insecure'], \"Allow connections to SSL sites without certs\", function(value) {\n  console.log('Danger! Danger, Will Robinson!');\n});\n
\n\nSo there you have it, Options, Parameters, Help and Events. Surely that's the\nend of this interminable readme file? No! That's not all. And stop calling me\nShirley.\n\n## Subcommands\n\nSometimes programs have different commands, each with their own options, i.e.\n\n
\n $ nit clone http://nitnub.onion/nit.nit\n $ nit commit -am \"lotsa great codez\"\n $ nit push origin master\n
\n\nIf the program nit has many subcommands, i.e. clone, commit, push then each of\nthese could have their own options and help. Operetta has a command function\nthat allows you to define these and get a new instance of operetta for\neach command.\n\n
\noperetta.command('clone', \"Clone a Repo\", function(command) {\n  command.start(function(values) {\n    var url = values.positional[0];\n  });.\n});\noperetta.command('commit', \"Commit Changes\", function(command) {\n  command.options(['-a','--all'], \"Tell the command to automatically stage files that have been modified and deleted, but new files you have not told git about are not affected.\");\n  command.parameters(['-m','--message'], \"Use the given message as the commit message.\", function(value) {\n    console.log(\"Staging modified files.\");\n  });.\n  command.start();\n});\noperetta.command('push', \"Push To Remote Repo\", function(command) {\n  command.start(function(values) {\n    var remote = values.positional[0],\n      branch = values.positional[1];\n  });.\n});\noperetta.start();\n
\n\nNow, if you called help without a subcommand:\n\n $ nit -h\n\n
\nUsage:\nclone          Clone a Repo\ncommit         Commit Changes\npush           Push To Remote Repo\n-h,--help      Show Help\n
\n\nYou get a list of the subcommands.\n\nHowever, if you call help on commit:\n\n $ nit commit --help\n\n
\nUsage:\n-a,--all       Tell the command to automatically stage files that have been modified and deleted, but new files you have not told git about are not affected.\n-m,--message   Use the given message as the commit message.\n-h,--help      Show Help\n
\n\nYou get the descriptions of the options defined for commit.\n\nAnd yes, if you really want, subcommand can have subcommands:\n\n
\noperetta.command('submodule', \"Manage Submodules\", function(command) {\n  command.command('add', \"Add A submodule to the repo\", function(subcommand) {\n    subcommand.start();\n  });.\n});\n
\n\nNow you could do:\n\n $ nit submodule add http://nitorious.onion/nitorious.nit\n\n# Coda #\n\nSo, options, parameters, help, events and subcommands. Shirley, you're thinking\noperetta must be some big, baroque, bloated, blob of blubbery JavaScript! Well,\nhere's what SLOCcount has to say:\n\n
\nTotal Physical Source Lines of Code (SLOC)                = 107\nDevelopment Effort Estimate, Person-Years (Person-Months) = 0.02 (0.23)\n (Basic COCOMO model, Person-Months = 2.4 * (KSLOC**1.05))\n Schedule Estimate, Years (Months)                         = 0.12 (1.43)\n  (Basic COCOMO model, Months = 2.5 * (person-months**0.38))\n
\n\nThat's right, small and cheap. So far it's only got One Hundred and Seven Lines\nof Code. So get it while it's small, before I add thousands of lines to support\nsuch must-have features as sending and receiving email and impersonating\na teenager in IRC channels.\n\nAnd yes, I called you Shirley.\n\n\n", + "maintainers": [ + { + "name": "dk", + "email": "dk@trick.ca" + } + ], + "time": { + "modified": "2011-11-14T08:42:07.117Z", + "created": "2011-11-14T07:54:04.282Z", + "0.0.2": "2011-11-14T07:54:05.295Z", + "0.0.3": "2011-11-14T08:04:22.292Z", + "0.0.4": "2011-11-14T08:42:07.117Z" + }, + "author": { + "name": "Dmytri Kleiner", + "email": "dk@trick.ca", + "url": "http://dmytri.info" + }, + "repository": { + "type": "git", + "url": "git://github.com/tricknik/node-operetta.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/operetta/0.0.2", + "0.0.3": "http://registry.npmjs.org/operetta/0.0.3", + "0.0.4": "http://registry.npmjs.org/operetta/0.0.4" + }, + "dist": { + "0.0.2": { + "shasum": "502602b2d20a919d785e0e64082c2644659140c7", + "tarball": "http://registry.npmjs.org/operetta/-/operetta-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "84ec4b083c3b2d0e530fc6bea2a79068af5e2fe9", + "tarball": "http://registry.npmjs.org/operetta/-/operetta-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "d2bdb0d9c357200ad6c1aabb15e6c808995cba63", + "tarball": "http://registry.npmjs.org/operetta/-/operetta-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/operetta/" + }, + "opmlparser": { + "name": "opmlparser", + "description": "OPML parsing using sax js", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "danmactough", + "email": "danmactough@gmail.com" + } + ], + "time": { + "modified": "2011-12-07T04:40:38.009Z", + "created": "2011-11-11T05:38:11.165Z", + "0.1.0": "2011-11-11T05:38:11.549Z", + "0.2.0": "2011-11-12T02:32:55.647Z", + "0.2.1": "2011-11-28T05:59:13.473Z", + "0.2.2": "2011-12-07T04:40:38.009Z" + }, + "author": { + "name": "Dan MacTough", + "email": "danmactough@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/danmactough/node-opmlparser.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/opmlparser/0.1.0", + "0.2.0": "http://registry.npmjs.org/opmlparser/0.2.0", + "0.2.1": "http://registry.npmjs.org/opmlparser/0.2.1", + "0.2.2": "http://registry.npmjs.org/opmlparser/0.2.2" + }, + "dist": { + "0.1.0": { + "shasum": "3d565006434e32118e738ea8a61bc3cb3f09adb2", + "tarball": "http://registry.npmjs.org/opmlparser/-/opmlparser-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "a52b2ef11a65d1c7fdedc8ec8c78c75058b09342", + "tarball": "http://registry.npmjs.org/opmlparser/-/opmlparser-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "1a96086f47c68aba01ec3d4e3b59d57333311bdb", + "tarball": "http://registry.npmjs.org/opmlparser/-/opmlparser-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "f2e75d0f9ae7403827542beda0db96af21f3e464", + "tarball": "http://registry.npmjs.org/opmlparser/-/opmlparser-0.2.2.tgz" + } + }, + "keywords": [ + "opml", + "feed", + "outline", + "xml", + "syndication" + ], + "url": "http://registry.npmjs.org/opmlparser/" + }, + "opower-jobs": { + "name": "opower-jobs", + "description": "An example of a full live site using Node, Express, Connect, EJS, AMS, Jobvite, Logging, and other Node modules. Demo: http://opowerjobs.com", + "dist-tags": { + "latest": "3.0.1" + }, + "maintainers": [ + { + "name": "dylang", + "email": "dylang@gmail.com" + } + ], + "author": { + "name": "Dylan Greene", + "email": "dylang@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/opower/node-opowerjobs.git" + }, + "time": { + "modified": "2011-10-28T18:52:36.797Z", + "created": "2011-02-07T15:16:31.466Z", + "1.2.0": "2011-02-07T15:16:31.466Z", + "1.2.2": "2011-02-07T15:16:31.466Z", + "1.2.4": "2011-02-07T15:16:31.466Z", + "1.2.6": "2011-02-07T15:16:31.466Z", + "2.0.0": "2011-04-18T01:00:23.735Z", + "3.0.0": "2011-07-19T18:25:01.762Z", + "3.0.1": "2011-10-28T18:52:36.797Z" + }, + "versions": { + "1.2.0": "http://registry.npmjs.org/opower-jobs/1.2.0", + "1.2.2": "http://registry.npmjs.org/opower-jobs/1.2.2", + "1.2.4": "http://registry.npmjs.org/opower-jobs/1.2.4", + "1.2.6": "http://registry.npmjs.org/opower-jobs/1.2.6", + "2.0.0": "http://registry.npmjs.org/opower-jobs/2.0.0", + "3.0.0": "http://registry.npmjs.org/opower-jobs/3.0.0", + "3.0.1": "http://registry.npmjs.org/opower-jobs/3.0.1" + }, + "dist": { + "1.2.0": { + "tarball": "http://packages:5984/opower-jobs/-/opower-jobs-1.2.0.tgz" + }, + "1.2.2": { + "tarball": "http://packages:5984/opower-jobs/-/opower-jobs-1.2.2.tgz" + }, + "1.2.4": { + "tarball": "http://packages:5984/opower-jobs/-/opower-jobs-1.2.4.tgz" + }, + "1.2.6": { + "shasum": "6a7a32db6223414b0fff1ef5d621232ccf3da64b", + "tarball": "http://registry.npmjs.org/opower-jobs/-/opower-jobs-1.2.6.tgz" + }, + "2.0.0": { + "shasum": "a5837d0754b4bd7efd03815a6724a2ed5dbb49e8", + "tarball": "http://registry.npmjs.org/opower-jobs/-/opower-jobs-2.0.0.tgz" + }, + "3.0.0": { + "shasum": "e245110815c9acdabd82e1bc878a9b7bd49e3b75", + "tarball": "http://registry.npmjs.org/opower-jobs/-/opower-jobs-3.0.0.tgz" + }, + "3.0.1": { + "shasum": "33483255bfca5c3532d1f20402356732c66169d3", + "tarball": "http://registry.npmjs.org/opower-jobs/-/opower-jobs-3.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/opower-jobs/" + }, + "oppo": { + "name": "oppo", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "benekastah", + "email": "benekastah@gmail.com" + } + ], + "time": { + "modified": "2011-11-27T03:49:45.737Z", + "created": "2011-11-27T03:32:54.664Z", + "0.0.1": "2011-11-27T03:49:45.737Z" + }, + "description": "A lisp for javascript", + "author": { + "name": "Paul Harper", + "email": "benekastah@gmail.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:benekastah/oppo.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/oppo/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "5e68d725af0915714811648d868ad6195a399b85", + "tarball": "http://registry.npmjs.org/oppo/-/oppo-0.0.1.tgz" + } + }, + "keywords": [ + "lisp", + "functional programming", + "fp", + "parser", + "compiler", + "jison" + ], + "url": "http://registry.npmjs.org/oppo/" + }, + "optimist": { + "name": "optimist", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "repository": { + "type": "git", + "url": "git://github.com/substack/node-optimist.git" + }, + "description": "Light-weight option parsing with an argv hash. No optstrings attached.", + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "time": { + "modified": "2011-12-09T08:22:35.261Z", + "created": "2010-12-21T14:33:53.354Z", + "0.0.1": "2010-12-21T14:33:53.354Z", + "0.0.2": "2010-12-21T14:33:53.354Z", + "0.0.3": "2010-12-21T14:33:53.354Z", + "0.0.4": "2010-12-21T14:33:53.354Z", + "0.0.5": "2010-12-21T14:33:53.354Z", + "0.0.6": "2010-12-21T14:33:53.354Z", + "0.0.7": "2010-12-21T14:33:53.354Z", + "0.1.0": "2010-12-21T14:33:53.354Z", + "0.1.1": "2010-12-21T14:33:53.354Z", + "0.1.2": "2010-12-21T14:33:53.354Z", + "0.1.3": "2010-12-21T14:33:53.354Z", + "0.1.4": "2011-01-30T07:04:28.963Z", + "0.1.5": "2011-02-01T08:01:38.160Z", + "0.1.6": "2011-02-13T23:35:31.427Z", + "0.1.7": "2011-03-28T05:44:30.304Z", + "0.1.8": "2011-03-28T21:03:46.234Z", + "0.1.9": "2011-04-14T03:33:37.811Z", + "0.2.0": "2011-05-08T03:32:40.650Z", + "0.2.1": "2011-05-16T07:14:37.232Z", + "0.2.2": "2011-05-16T09:20:48.490Z", + "0.2.3": "2011-05-16T19:03:41.732Z", + "0.2.4": "2011-06-13T04:00:46.046Z", + "0.2.5": "2011-06-25T22:24:50.361Z", + "0.2.6": "2011-07-14T21:41:44.257Z", + "0.2.7": "2011-10-20T02:25:41.335Z", + "0.2.8": "2011-10-20T03:47:03.659Z", + "0.3.0": "2011-12-09T08:22:35.261Z" + }, + "users": { + "avianflu": true, + "mvolkmann": true, + "naholyr": true, + "vtsvang": true + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/optimist/0.0.1", + "0.0.2": "http://registry.npmjs.org/optimist/0.0.2", + "0.0.4": "http://registry.npmjs.org/optimist/0.0.4", + "0.0.5": "http://registry.npmjs.org/optimist/0.0.5", + "0.0.6": "http://registry.npmjs.org/optimist/0.0.6", + "0.0.7": "http://registry.npmjs.org/optimist/0.0.7", + "0.1.0": "http://registry.npmjs.org/optimist/0.1.0", + "0.1.1": "http://registry.npmjs.org/optimist/0.1.1", + "0.1.2": "http://registry.npmjs.org/optimist/0.1.2", + "0.1.3": "http://registry.npmjs.org/optimist/0.1.3", + "0.1.4": "http://registry.npmjs.org/optimist/0.1.4", + "0.1.5": "http://registry.npmjs.org/optimist/0.1.5", + "0.1.6": "http://registry.npmjs.org/optimist/0.1.6", + "0.1.7": "http://registry.npmjs.org/optimist/0.1.7", + "0.1.8": "http://registry.npmjs.org/optimist/0.1.8", + "0.1.9": "http://registry.npmjs.org/optimist/0.1.9", + "0.0.3": "http://registry.npmjs.org/optimist/0.0.3", + "0.2.0": "http://registry.npmjs.org/optimist/0.2.0", + "0.2.1": "http://registry.npmjs.org/optimist/0.2.1", + "0.2.2": "http://registry.npmjs.org/optimist/0.2.2", + "0.2.3": "http://registry.npmjs.org/optimist/0.2.3", + "0.2.4": "http://registry.npmjs.org/optimist/0.2.4", + "0.2.5": "http://registry.npmjs.org/optimist/0.2.5", + "0.2.6": "http://registry.npmjs.org/optimist/0.2.6", + "0.2.7": "http://registry.npmjs.org/optimist/0.2.7", + "0.2.8": "http://registry.npmjs.org/optimist/0.2.8", + "0.3.0": "http://registry.npmjs.org/optimist/0.3.0" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/optimist/-/optimist-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/optimist/-/optimist-0.0.2.tgz" + }, + "0.0.4": { + "tarball": "http://registry.npmjs.org/optimist/-/optimist-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://registry.npmjs.org/optimist/-/optimist-0.0.5.tgz" + }, + "0.0.6": { + "tarball": "http://registry.npmjs.org/optimist/-/optimist-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "5ffc1dce7ddfdfe57a61fabb2644d7bda57722b2", + "tarball": "http://registry.npmjs.org/optimist/-/optimist-0.0.7.tgz" + }, + "0.1.0": { + "shasum": "b523820a36a51c35bf6098d2dc4b5aa001e0f541", + "tarball": "http://registry.npmjs.org/optimist/-/optimist-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "ed43041fe2196e9f36b9c0f75e301526ab751baa", + "tarball": "http://registry.npmjs.org/optimist/-/optimist-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "489780fb5350e8429e99a9e6e1305124eb3bbc8e", + "tarball": "http://registry.npmjs.org/optimist/-/optimist-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "90389a7e6807b5798b41c4b4112403a9691b98ff", + "tarball": "http://registry.npmjs.org/optimist/-/optimist-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "92496e1e378b46a24b6c027a612637cfc5fb543e", + "tarball": "http://registry.npmjs.org/optimist/-/optimist-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "f5b85dd7ba7928224db268f668419ffb1e7d2cec", + "tarball": "http://registry.npmjs.org/optimist/-/optimist-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "0f2f671dfec3365509dc335f098158aa90c80100", + "tarball": "http://registry.npmjs.org/optimist/-/optimist-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "f83a9644634d446bf3934518257d55dd6d08e183", + "tarball": "http://registry.npmjs.org/optimist/-/optimist-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "58d0adde9d61db67dfbe2c7467da8abf9c86bc94", + "tarball": "http://registry.npmjs.org/optimist/-/optimist-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "d88fd79743a88960a418f5754b3b2157252447cc", + "tarball": "http://registry.npmjs.org/optimist/-/optimist-0.1.9.tgz" + }, + "0.0.3": { + "shasum": "323a5c625b708e0197b72c106aef6444ada0c515", + "tarball": "http://registry.npmjs.org/optimist/-/optimist-0.0.3.tgz" + }, + "0.2.0": { + "shasum": "1cb5b0e727009370f324765e2a5245ac0d806bfd", + "tarball": "http://registry.npmjs.org/optimist/-/optimist-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "80a2d75b660d467f673599dcbc69c113f289554a", + "tarball": "http://registry.npmjs.org/optimist/-/optimist-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "a6bb06ff1f8229a12ee9abcb8160eee35e629ef8", + "tarball": "http://registry.npmjs.org/optimist/-/optimist-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "dc259cc0e5d73e1f3fcc2dea3526e52f19ed740c", + "tarball": "http://registry.npmjs.org/optimist/-/optimist-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "9d543b3444fe127e8c01891c11a38d20b886317b", + "tarball": "http://registry.npmjs.org/optimist/-/optimist-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "50e0127b8443da18f4fdb756aaca446f1c65d136", + "tarball": "http://registry.npmjs.org/optimist/-/optimist-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "c15b750c98274ea175d241b745edf4ddc88f177b", + "tarball": "http://registry.npmjs.org/optimist/-/optimist-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "62945bcc760643d918a5c7649ade86e662144024", + "tarball": "http://registry.npmjs.org/optimist/-/optimist-0.2.7.tgz" + }, + "0.2.8": { + "shasum": "e981ab7e268b457948593b55674c099a815cac31", + "tarball": "http://registry.npmjs.org/optimist/-/optimist-0.2.8.tgz" + }, + "0.3.0": { + "shasum": "4458c1f02acf1e5c9ece36ce2fd4d338e56ee0f6", + "tarball": "http://registry.npmjs.org/optimist/-/optimist-0.3.0.tgz" + } + }, + "keywords": [ + "argument", + "args", + "option", + "parser", + "parsing", + "cli", + "command" + ], + "url": "http://registry.npmjs.org/optimist/" + }, + "optparse": { + "name": "optparse", + "description": "Command-line option parser", + "dist-tags": { + "latest": "1.0.3" + }, + "maintainers": [ + { + "name": "jfd", + "email": "dahlberg.johan@gmail.com" + } + ], + "time": { + "modified": "2011-11-02T13:53:07.989Z", + "created": "2011-03-30T02:28:23.453Z", + "1.0.1": "2011-03-30T02:28:24.128Z", + "1.0.3": "2011-11-02T13:53:07.989Z" + }, + "author": { + "name": "Johan Dahlberg" + }, + "versions": { + "1.0.1": "http://registry.npmjs.org/optparse/1.0.1", + "1.0.3": "http://registry.npmjs.org/optparse/1.0.3" + }, + "dist": { + "1.0.1": { + "shasum": "a33622d95358501f3f4892bf924380269ebfce3f", + "bin": { + "0.5-darwin-10.7.0": { + "shasum": "69a049c96fcdf2126733214cd7535e1485d9c67a", + "tarball": "http://registry.npmjs.org/optparse/-/optparse-1.0.1-0.5-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/optparse/-/optparse-1.0.1.tgz" + }, + "1.0.3": { + "shasum": "2ff49a3d691b90b0b9a1be9117f292373eb1bd66", + "tarball": "http://registry.npmjs.org/optparse/-/optparse-1.0.3.tgz" + } + }, + "keywords": [ + "option", + "parser", + "command-line", + "cli", + "terminal" + ], + "url": "http://registry.npmjs.org/optparse/" + }, + "opts": { + "name": "opts", + "description": "Command line argument parser written in the style of commonjs. To be used with node.js", + "dist-tags": { + "latest": "1.2.1" + }, + "maintainers": [ + { + "name": "mazzarelli", + "email": "mazzarelli@gmail.com" + } + ], + "author": { + "name": "Joey Mazzarelli", + "email": "mazzarelli@gmail.com", + "url": "http://joey.mazzarelli.com" + }, + "versions": { + "1.2.0": "http://registry.npmjs.org/opts/1.2.0", + "1.2.1": "http://registry.npmjs.org/opts/1.2.1" + }, + "dist": { + "1.2.0": { + "tarball": "http://packages:5984/opts/-/opts-1.2.0.tgz" + }, + "1.2.1": { + "tarball": "http://packages:5984/opts/-/opts-1.2.1.tgz" + } + }, + "url": "http://registry.npmjs.org/opts/" + }, + "orchestra": { + "name": "orchestra", + "description": "Orchestra Event MicroFramework", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "renato.elias", + "email": "renato.elias@gmail.com" + } + ], + "time": { + "modified": "2011-05-09T03:57:31.166Z", + "created": "2011-05-03T04:14:25.151Z", + "0.0.3": "2011-05-03T04:14:25.713Z", + "0.0.4": "2011-05-05T04:50:10.584Z", + "0.0.5": "2011-05-06T05:52:16.014Z", + "0.0.6": "2011-05-09T03:57:31.166Z" + }, + "author": { + "name": "Renato Elias", + "email": "renato.elias@gmail.com", + "url": "http://www.renatoelias.art.br" + }, + "repository": { + "type": "git", + "url": "git://github.com/renatoelias/orchestra.git" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/orchestra/0.0.3", + "0.0.4": "http://registry.npmjs.org/orchestra/0.0.4", + "0.0.5": "http://registry.npmjs.org/orchestra/0.0.5", + "0.0.6": "http://registry.npmjs.org/orchestra/0.0.6" + }, + "dist": { + "0.0.3": { + "shasum": "6dcb5c0c038ce7d11f5b509414108282e2b90be1", + "tarball": "http://registry.npmjs.org/orchestra/-/orchestra-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "2fc78f0d768a5b928f4e48b606e0fc5cdb20ea23", + "tarball": "http://registry.npmjs.org/orchestra/-/orchestra-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "00c7e21bdf718cb17bc301f88e680e87fe405b0b", + "tarball": "http://registry.npmjs.org/orchestra/-/orchestra-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "80893acd8bc624dca595465b0662c1276779371b", + "tarball": "http://registry.npmjs.org/orchestra/-/orchestra-0.0.6.tgz" + } + }, + "url": "http://registry.npmjs.org/orchestra/" + }, + "orderly": { + "name": "orderly", + "description": "Translates Orderly to JSON Schema", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "zaach", + "email": "zack.carter@gmail.com" + } + ], + "time": { + "modified": "2011-07-20T16:41:30.186Z", + "created": "2011-07-20T16:41:29.749Z", + "1.0.0": "2011-07-20T16:41:30.186Z" + }, + "author": { + "name": "Zach Carter", + "email": "zcarter@cse.usf.edu", + "url": "http://zaa.ch" + }, + "repository": { + "type": "git", + "url": "git://github.com/zaach/orderly.js.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/orderly/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "f63bf52ce3094fc434e549e24604613af33f58a9", + "tarball": "http://registry.npmjs.org/orderly/-/orderly-1.0.0.tgz" + } + }, + "keywords": [ + "json", + "orderly", + "jsonschema", + "parser" + ], + "url": "http://registry.npmjs.org/orderly/" + }, + "ore": { + "name": "ore", + "description": "Foundations for reusable web components.", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "joehewitt", + "email": "joe@joehewitt.com" + } + ], + "time": { + "modified": "2011-11-29T09:30:21.859Z", + "created": "2011-10-10T03:22:23.625Z", + "0.0.1": "2011-10-10T03:22:25.200Z", + "0.0.2": "2011-10-10T07:49:31.909Z", + "0.0.3": "2011-11-29T09:30:21.859Z" + }, + "author": { + "name": "Joe Hewitt", + "email": "joe@joehewitt.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/joehewitt/ore.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ore/0.0.1", + "0.0.2": "http://registry.npmjs.org/ore/0.0.2", + "0.0.3": "http://registry.npmjs.org/ore/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "7aac803e0875bac4a0720ee01dfc667b6432369c", + "tarball": "http://registry.npmjs.org/ore/-/ore-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "05ad46af0a9d64fcff413dd51e8ac4b9445f1648", + "tarball": "http://registry.npmjs.org/ore/-/ore-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "a316f5f98d5526caa451bed281315e615044d2d7", + "tarball": "http://registry.npmjs.org/ore/-/ore-0.0.3.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/ore/" + }, + "org-mode-parser": { + "name": "org-mode-parser", + "description": "A parser for the Emacs org-mode package. DRAWER and archive tag supported. Stronger API", + "dist-tags": { + "latest": "0.0.7" + }, + "maintainers": [ + { + "name": "gg", + "email": "jj@gioorgi.com" + } + ], + "time": { + "modified": "2011-10-14T09:09:04.324Z", + "created": "2011-10-04T10:01:03.102Z", + "0.0.1": "2011-10-04T10:01:05.049Z", + "0.0.2": "2011-10-05T09:35:13.225Z", + "0.0.3": "2011-10-06T09:17:05.983Z", + "0.0.4": "2011-10-06T15:52:07.510Z", + "0.0.5": "2011-10-10T14:21:53.750Z", + "0.0.6": "2011-10-12T08:10:33.240Z", + "0.0.7": "2011-10-14T09:05:39.995Z" + }, + "author": { + "name": "Giovanni Giorgi", + "email": "jj@gioorgi.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/daitangio/org-mode-parser.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/org-mode-parser/0.0.1", + "0.0.2": "http://registry.npmjs.org/org-mode-parser/0.0.2", + "0.0.3": "http://registry.npmjs.org/org-mode-parser/0.0.3", + "0.0.4": "http://registry.npmjs.org/org-mode-parser/0.0.4", + "0.0.5": "http://registry.npmjs.org/org-mode-parser/0.0.5", + "0.0.6": "http://registry.npmjs.org/org-mode-parser/0.0.6", + "0.0.7": "http://registry.npmjs.org/org-mode-parser/0.0.7" + }, + "dist": { + "0.0.1": { + "shasum": "2fda0fab24db59583afc6986363853846cd3a281", + "tarball": "http://registry.npmjs.org/org-mode-parser/-/org-mode-parser-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f6f57b061eea342e12e7574d10b950fc00996cf5", + "tarball": "http://registry.npmjs.org/org-mode-parser/-/org-mode-parser-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "237960794e4aa33443f14d9fe7c10e5af6d3777c", + "tarball": "http://registry.npmjs.org/org-mode-parser/-/org-mode-parser-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "6a684291d47e32375aa74b8931ac694a0908d83c", + "tarball": "http://registry.npmjs.org/org-mode-parser/-/org-mode-parser-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "753f3120d92902f904953b93798607d730eae0b7", + "tarball": "http://registry.npmjs.org/org-mode-parser/-/org-mode-parser-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "a8afe70dfcd9d2398c02df8f829f78fa030bfdc2", + "tarball": "http://registry.npmjs.org/org-mode-parser/-/org-mode-parser-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "4b26eb13cf4f7dfd8d1ee691b6ef28358650a4d1", + "tarball": "http://registry.npmjs.org/org-mode-parser/-/org-mode-parser-0.0.7.tgz" + } + }, + "keywords": [ + "parser", + "util", + "org-mode", + "orgmode", + "emacs" + ], + "url": "http://registry.npmjs.org/org-mode-parser/" + }, + "orgsync.live": { + "name": "orgsync.live", + "description": "Live chat and notifications for OrgSync", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "clifton", + "email": "clifton@orgsync.com" + } + ], + "time": { + "modified": "2011-07-03T02:57:29.574Z", + "created": "2011-07-03T02:57:28.981Z", + "0.1.1": "2011-07-03T02:57:29.574Z" + }, + "author": { + "name": "Clifton King", + "email": "clifton@orgsync.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/orgsync/live.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/orgsync.live/0.1.1" + }, + "dist": { + "0.1.1": { + "shasum": "bf2e976aefe90adb5d22bc26a7cf91cf35192c93", + "tarball": "http://registry.npmjs.org/orgsync.live/-/orgsync.live-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/orgsync.live/" + }, + "orm": { + "name": "orm", + "description": "NodeJS Object-relational mapping", + "dist-tags": { + "latest": "0.1.8" + }, + "maintainers": [ + { + "name": "dresende", + "email": "dresende@thinkdigital.pt" + } + ], + "time": { + "modified": "2011-12-06T18:43:00.645Z", + "created": "2011-03-05T00:47:28.129Z", + "0.1.0": "2011-12-06T18:43:00.645Z", + "0.1.1": "2011-12-06T18:43:00.645Z", + "0.1.2": "2011-12-06T18:43:00.645Z", + "0.1.3": "2011-12-06T18:43:00.645Z", + "0.1.4": "2011-12-06T18:43:00.645Z", + "0.1.5": "2011-12-06T18:43:00.645Z", + "0.1.6": "2011-12-06T18:43:00.645Z", + "0.1.7": "2011-11-18T18:35:26.611Z", + "0.1.8": "2011-12-06T18:43:00.645Z" + }, + "author": { + "name": "Diogo Resende", + "email": "dresende@thinkdigital.pt" + }, + "repository": { + "type": "git", + "url": "git://github.com/dresende/node-orm.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/orm/0.1.0", + "0.1.1": "http://registry.npmjs.org/orm/0.1.1", + "0.1.2": "http://registry.npmjs.org/orm/0.1.2", + "0.1.3": "http://registry.npmjs.org/orm/0.1.3", + "0.1.4": "http://registry.npmjs.org/orm/0.1.4", + "0.1.5": "http://registry.npmjs.org/orm/0.1.5", + "0.1.6": "http://registry.npmjs.org/orm/0.1.6", + "0.1.7": "http://registry.npmjs.org/orm/0.1.7", + "0.1.8": "http://registry.npmjs.org/orm/0.1.8" + }, + "dist": { + "0.1.0": { + "shasum": "4868bfc40a3008c735e97d16ecfaf0e0e5f7adfa", + "tarball": "http://registry.npmjs.org/orm/-/orm-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "173e8cc40b1d47fa7a3a222ccb5ecb63fd2ab1e4", + "tarball": "http://registry.npmjs.org/orm/-/orm-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "64ebed38f42c50e3e95597b774a3f4936ec0689b", + "tarball": "http://registry.npmjs.org/orm/-/orm-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "6969f6218cd96182aaa97c79a3dff870f76ebff3", + "tarball": "http://registry.npmjs.org/orm/-/orm-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "36170b5850efd36aefbcf533fe1c7bba4d0954e9", + "tarball": "http://registry.npmjs.org/orm/-/orm-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "07f0eabb7de0e97b5c0763712b5150b87d8269e8", + "tarball": "http://registry.npmjs.org/orm/-/orm-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "d58cb8455c1fbbe4098f120f0d38abd0639799f5", + "tarball": "http://registry.npmjs.org/orm/-/orm-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "91e0f558ce02ca765e2749baaf26f3debf92f1c2", + "tarball": "http://registry.npmjs.org/orm/-/orm-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "8f836e770b14ad8931cc71aff56a3bd9f29b7960", + "tarball": "http://registry.npmjs.org/orm/-/orm-0.1.8.tgz" + } + }, + "keywords": [ + "orm", + "mysql", + "postgresql", + "mongodb", + "database", + "relational" + ], + "url": "http://registry.npmjs.org/orm/" + }, + "ormnomnom": { + "name": "ormnomnom", + "description": "Another ORM for Node, supporting sqlite and postgres", + "dist-tags": { + "latest": "0.0.8" + }, + "maintainers": [ + { + "name": "chrisdickinson", + "email": "chris@neversaw.us" + } + ], + "time": { + "modified": "2011-09-01T04:50:04.190Z", + "created": "2011-01-19T04:10:40.904Z", + "0.0.1": "2011-01-19T04:10:41.112Z", + "0.0.2": "2011-01-19T04:31:53.990Z", + "0.0.3": "2011-08-27T00:11:07.528Z", + "0.0.4": "2011-08-27T03:45:04.262Z", + "0.0.5": "2011-08-27T08:59:41.612Z", + "0.0.7": "2011-09-01T02:51:26.001Z", + "0.0.8": "2011-09-01T04:50:04.190Z" + }, + "author": { + "name": "Chris Dickinson" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ormnomnom/0.0.1", + "0.0.2": "http://registry.npmjs.org/ormnomnom/0.0.2", + "0.0.3": "http://registry.npmjs.org/ormnomnom/0.0.3", + "0.0.4": "http://registry.npmjs.org/ormnomnom/0.0.4", + "0.0.5": "http://registry.npmjs.org/ormnomnom/0.0.5", + "0.0.7": "http://registry.npmjs.org/ormnomnom/0.0.7", + "0.0.8": "http://registry.npmjs.org/ormnomnom/0.0.8" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/ormnomnom/-/ormnomnom-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/ormnomnom/-/ormnomnom-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "9f244e3daf209df6a8436d9da0a19f4a17c8ec5b", + "tarball": "http://registry.npmjs.org/ormnomnom/-/ormnomnom-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "e9d21f66bf0d27b4b73cf47190885035fe9937d1", + "tarball": "http://registry.npmjs.org/ormnomnom/-/ormnomnom-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "61c73268e987548b6de52daee8fbd4869bdca5a8", + "tarball": "http://registry.npmjs.org/ormnomnom/-/ormnomnom-0.0.5.tgz" + }, + "0.0.7": { + "shasum": "9be1c630429ee82fad768ce2d2e759394d48e5d7", + "tarball": "http://registry.npmjs.org/ormnomnom/-/ormnomnom-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "0857a07a2d461b619d66ff6ba5f5db24caab3073", + "tarball": "http://registry.npmjs.org/ormnomnom/-/ormnomnom-0.0.8.tgz" + } + }, + "keywords": [ + "node-pg", + "sqlite", + "orm" + ], + "url": "http://registry.npmjs.org/ormnomnom/" + }, + "orona": { + "name": "orona", + "description": "Bolo, a game of tank warfare, rewritten for modern browsers.", + "dist-tags": { + "latest": "0.1.91" + }, + "maintainers": [ + { + "name": "stephank", + "email": "stephan@kochen.nl" + } + ], + "author": { + "name": "Stéphan Kochen", + "email": "stephan@kochen.nl", + "url": "http://stephan.kochen.nl/" + }, + "repository": { + "type": "git", + "url": "http://github.com/stephank/orona.git" + }, + "versions": { + "0.1.90": "http://registry.npmjs.org/orona/0.1.90", + "0.1.91": "http://registry.npmjs.org/orona/0.1.91" + }, + "dist": { + "0.1.90": { + "tarball": "http://packages:5984/orona/-/orona-0.1.90.tgz" + }, + "0.1.91": { + "shasum": "96a77921716f265f3297fa977f5f6d7c713584c4", + "tarball": "http://registry.npmjs.org/orona/-/orona-0.1.91.tgz" + } + }, + "url": "http://registry.npmjs.org/orona/" + }, + "osc-min": { + "name": "osc-min", + "description": "Simple utilities for open sound control in node.js", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "ghostfact", + "email": "russell.mcclellan@gmail.com" + } + ], + "time": { + "modified": "2011-10-09T19:42:07.546Z", + "created": "2011-10-09T19:42:07.113Z", + "0.0.1": "2011-10-09T19:42:07.546Z" + }, + "author": { + "name": "Russell McClellan", + "email": "russell.mcclellan@gmail.com", + "url": "http://www.ghostfact.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/ghostfact/node-osc-min.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/osc-min/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "071234828dc50910ab7549852dfdf0b5444bd865", + "tarball": "http://registry.npmjs.org/osc-min/-/osc-min-0.0.1.tgz" + } + }, + "keywords": [ + "open sound control", + "OSC", + "music control", + "NIME" + ], + "url": "http://registry.npmjs.org/osc-min/" + }, + "osc4node": { + "name": "osc4node", + "description": "OpenSoundControl implementation for node", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "hideyukisaito", + "email": "info@hideyukisaito.com" + } + ], + "time": { + "modified": "2011-06-14T13:43:40.388Z", + "created": "2011-06-14T13:43:39.352Z", + "0.1.0": "2011-06-14T13:43:40.388Z" + }, + "author": { + "name": "Hideyuki Saito", + "email": "info@hideyukisaito.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/hideyukisaito/osc4node.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/osc4node/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "ef360a028bf67a3e044d391150fcbfb3e5f4e373", + "tarball": "http://registry.npmjs.org/osc4node/-/osc4node-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/osc4node/" + }, + "oscar": { + "name": "oscar", + "description": "An OSCAR protocol module for node.js", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "mscdex", + "email": "mscdex@mscdex.net" + } + ], + "time": { + "modified": "2011-11-13T11:48:00.991Z", + "created": "2011-04-10T04:34:10.587Z", + "0.1.0": "2011-04-10T04:34:10.953Z", + "0.1.1": "2011-11-13T00:14:28.966Z", + "0.1.2": "2011-11-13T11:48:00.991Z" + }, + "author": { + "name": "Brian White", + "email": "mscdex@mscdex.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/mscdex/node-oscar.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/oscar/0.1.0", + "0.1.1": "http://registry.npmjs.org/oscar/0.1.1", + "0.1.2": "http://registry.npmjs.org/oscar/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "aaa6cc7d1c87c176d47d7b6babeff0f1d98f1023", + "tarball": "http://registry.npmjs.org/oscar/-/oscar-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "2df965fb69375dfa7646b8304fb781572bad9d72", + "tarball": "http://registry.npmjs.org/oscar/-/oscar-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "4ae8f2aa30fae2282dc4ba58eacb515fb4bc0038", + "tarball": "http://registry.npmjs.org/oscar/-/oscar-0.1.2.tgz" + } + }, + "keywords": [ + "aim", + "icq", + "oscar", + "aol", + "im", + "chat", + "client" + ], + "url": "http://registry.npmjs.org/oscar/" + }, + "osrandom": { + "name": "osrandom", + "description": "simple utilities for accessing os-supplied sources of randomness", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "stella", + "email": "stella@laurenzo.org" + } + ], + "time": { + "modified": "2011-02-15T00:39:25.315Z", + "created": "2011-02-15T00:39:24.949Z", + "1.0.0": "2011-02-15T00:39:25.316Z" + }, + "author": { + "name": "Stella Laurenzo", + "email": "stella@laurenzo.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/stellaeof/node_osrandom.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/osrandom/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "1dff183666f798af2d872e573f52d8f03a58bcfd", + "tarball": "http://registry.npmjs.org/osrandom/-/osrandom-1.0.0.tgz" + } + }, + "keywords": [ + "random", + "urandom", + "/dev/urandom", + "CryptGenRandom" + ], + "url": "http://registry.npmjs.org/osrandom/" + }, + "ossp-uuid": { + "name": "ossp-uuid", + "description": "OSSP uuid bindings for node.js", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "mah0x211", + "email": "mah0x211@gmail.com" + } + ], + "time": { + "modified": "2011-05-31T00:32:11.927Z", + "created": "2011-05-31T00:09:21.759Z", + "0.0.3": "2011-05-31T00:09:22.900Z", + "0.0.4": "2011-05-31T00:31:54.753Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/mah0x211/node-ossp-uuid.git" + }, + "versions": { + "0.0.4": "http://registry.npmjs.org/ossp-uuid/0.0.4" + }, + "dist": { + "0.0.4": { + "shasum": "9a12c96bbb01c72a3920520f6134cf1a634c2256", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-darwin-9.8.0": { + "shasum": "513898d6013ec076c60bc9610121339c3878fe21", + "tarball": "http://registry.npmjs.org/ossp-uuid/-/ossp-uuid-0.0.4-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-darwin-9.8.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/ossp-uuid/-/ossp-uuid-0.0.4.tgz" + } + }, + "keywords": [ + "ossp", + "uuid", + "Universally Unique Identifier" + ], + "url": "http://registry.npmjs.org/ossp-uuid/" + }, + "ostatus": { + "name": "ostatus", + "description": "An implementation of the OStatus protocol stack for nodejs.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "eschnou", + "email": "laurent@eschenauer.be" + } + ], + "time": { + "modified": "2011-03-06T15:20:15.428Z", + "created": "2011-03-06T15:20:14.869Z", + "0.1.0": "2011-03-06T15:20:15.428Z" + }, + "author": { + "name": "Laurent Eschenauer", + "email": "laurent@eschenauer.be", + "url": "http://eschnou.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/eschnou/node-ostatus.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/ostatus/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "3399397c2e5f5ef6195354f1062c574db9ade0b5", + "tarball": "http://registry.npmjs.org/ostatus/-/ostatus-0.1.0.tgz" + } + }, + "keywords": [ + "ostatus", + "hcard", + "pubsubhubbub", + "atom", + "activity", + "salmon" + ], + "url": "http://registry.npmjs.org/ostatus/" + }, + "ostrich": { + "name": "ostrich", + "description": "Stats collector", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "wadey", + "email": "wade@wades.im" + } + ], + "time": { + "modified": "2011-06-06T23:06:42.504Z", + "created": "2011-06-06T23:06:41.641Z", + "0.1.0": "2011-06-06T23:06:42.504Z" + }, + "author": { + "name": "Wade Simmons", + "email": "wade@wades.im", + "url": "http://wades.im/mons" + }, + "repository": { + "type": "git", + "url": "git@github.com:wadey/node-ostrich.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/ostrich/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "8135d28007eb67814e80d37532b77023ee2d7be5", + "tarball": "http://registry.npmjs.org/ostrich/-/ostrich-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/ostrich/" + }, + "otk": { + "name": "otk", + "description": "Object Toolkit", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "bonuspunkt", + "email": "zach.robert@gmx.net" + } + ], + "time": { + "modified": "2011-06-27T23:36:30.079Z", + "created": "2011-06-27T20:32:57.209Z", + "0.1.0": "2011-06-27T20:32:58.144Z", + "0.1.1": "2011-06-27T23:36:30.079Z" + }, + "author": { + "name": "Bonuspunkt" + }, + "repository": { + "type": "git", + "url": "git://github.com/Bonuspunkt/node-otk.git", + "web": "https://github.com/Bonuspunkt/node-otk" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/otk/0.1.0", + "0.1.1": "http://registry.npmjs.org/otk/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "6c308ff1853e4538337c8aabeba2f33b24d8f995", + "tarball": "http://registry.npmjs.org/otk/-/otk-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "ec83e4af6bccb074360b79122a25c12586f69c21", + "tarball": "http://registry.npmjs.org/otk/-/otk-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/otk/" + }, + "ourl": { + "name": "ourl", + "description": "Gives you: new Url(href)", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "stagas", + "email": "gstagas@gmail.com" + } + ], + "time": { + "modified": "2011-05-06T12:09:04.531Z", + "created": "2011-04-03T10:20:54.829Z", + "0.0.1": "2011-04-03T10:20:55.572Z", + "0.0.2": "2011-05-06T12:09:04.531Z" + }, + "author": { + "name": "George Stagas", + "email": "gstagas@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/stagas/ourl.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ourl/0.0.1", + "0.0.2": "http://registry.npmjs.org/ourl/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "4a823a74c2d8b785f16cdc9bb0360fb6c74d21bd", + "tarball": "http://registry.npmjs.org/ourl/-/ourl-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "586f126eb6aecdf9cec5a3be2ce9516b1e1a67c2", + "tarball": "http://registry.npmjs.org/ourl/-/ourl-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/ourl/" + }, + "oursql": { + "name": "oursql", + "dist-tags": { + "latest": "0.1.8" + }, + "maintainers": [ + { + "name": "objectundefined", + "email": "gabriel.lipson@gmail.com" + } + ], + "time": { + "modified": "2011-06-16T07:38:42.610Z", + "created": "2011-04-18T18:19:44.420Z", + "0.1.1beta": "2011-04-18T18:19:45.003Z", + "0.1.2beta": "2011-04-18T18:24:11.533Z", + "0.1.1": "2011-04-18T18:25:24.200Z", + "0.1.2": "2011-04-18T18:56:06.946Z", + "0.1.3": "2011-04-18T19:02:08.103Z", + "0.1.4": "2011-04-18T22:12:03.334Z", + "0.1.5": "2011-04-20T21:10:03.879Z", + "0.1.6": "2011-05-20T08:32:00.966Z", + "0.1.7": "2011-05-31T19:43:02.928Z", + "0.1.8": "2011-06-16T07:38:42.610Z" + }, + "description": "MySql ORM module for Node.JS", + "author": { + "name": "Gabriel Lipson", + "email": "gabriel@advizo.com", + "url": "http://www.github.com/objectundefined/OurSql" + }, + "repository": "git://github.com/objectundefined/OurSql", + "versions": { + "0.1.1beta": "http://registry.npmjs.org/oursql/0.1.1beta", + "0.1.2beta": "http://registry.npmjs.org/oursql/0.1.2beta", + "0.1.1": "http://registry.npmjs.org/oursql/0.1.1", + "0.1.2": "http://registry.npmjs.org/oursql/0.1.2", + "0.1.3": "http://registry.npmjs.org/oursql/0.1.3", + "0.1.4": "http://registry.npmjs.org/oursql/0.1.4", + "0.1.5": "http://registry.npmjs.org/oursql/0.1.5", + "0.1.6": "http://registry.npmjs.org/oursql/0.1.6", + "0.1.7": "http://registry.npmjs.org/oursql/0.1.7", + "0.1.8": "http://registry.npmjs.org/oursql/0.1.8" + }, + "dist": { + "0.1.1beta": { + "shasum": "0ba4e3d1e608bd20ae8f4f94245779d8e0897612", + "tarball": "http://registry.npmjs.org/oursql/-/oursql-0.1.1beta.tgz" + }, + "0.1.2beta": { + "shasum": "43985c49efdc6cf3a3859e2a370e507cfef93a40", + "tarball": "http://registry.npmjs.org/oursql/-/oursql-0.1.2beta.tgz" + }, + "0.1.1": { + "shasum": "67917281b0b3c8b3de750989c173472af86a18bf", + "tarball": "http://registry.npmjs.org/oursql/-/oursql-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "fbfa6b9f4511155e1ecd16872c4c4509acaa610c", + "tarball": "http://registry.npmjs.org/oursql/-/oursql-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "3e11555fe9281cc4cfaaeca0023e1fb01926d458", + "tarball": "http://registry.npmjs.org/oursql/-/oursql-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "e9436b08a72a1eda6bad6f93fb7ebf9257a3da81", + "tarball": "http://registry.npmjs.org/oursql/-/oursql-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "56fcbe02bc84b0559038c686ea9e22e4169f679a", + "tarball": "http://registry.npmjs.org/oursql/-/oursql-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "24e12497c1f9b090a2a9b987b74bff616bd2c496", + "tarball": "http://registry.npmjs.org/oursql/-/oursql-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "fee7cdadbb79696e003d002f9cc5ede40e5096c3", + "tarball": "http://registry.npmjs.org/oursql/-/oursql-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "4d965f744b9d8750fb653d3b331281676be56796", + "tarball": "http://registry.npmjs.org/oursql/-/oursql-0.1.8.tgz" + } + }, + "keywords": [ + "orm", + "mysql", + "activerecord", + "database", + "object", + "relational", + "mapper" + ], + "url": "http://registry.npmjs.org/oursql/" + }, + "out": { + "name": "out", + "description": "Tasty STDOUT", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "damonoehlman", + "email": "damon.oehlman@sidelab.com" + } + ], + "time": { + "modified": "2011-11-08T05:00:20.873Z", + "created": "2011-09-07T11:36:35.736Z", + "0.0.1": "2011-09-07T11:36:37.272Z", + "0.0.2": "2011-09-17T10:12:17.992Z", + "0.0.3": "2011-11-02T01:38:19.654Z", + "0.0.4": "2011-11-08T05:00:20.873Z" + }, + "author": { + "name": "Damon Oehlman", + "email": "damon.oehlman@sidelab.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/DamonOehlman/node-out.git" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/out/0.0.3", + "0.0.4": "http://registry.npmjs.org/out/0.0.4" + }, + "dist": { + "0.0.3": { + "shasum": "516f9fbe56a364e016247f9b6e7e1eef1146ac86", + "tarball": "http://registry.npmjs.org/out/-/out-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "655b04668c9a98de26d6ca671304ad3d48d82a80", + "tarball": "http://registry.npmjs.org/out/-/out-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/out/" + }, + "overhead": { + "name": "overhead", + "description": "gives you your stupid projections", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "tmcw", + "email": "macwright@gmail.com" + } + ], + "time": { + "modified": "2011-11-29T16:06:08.925Z", + "created": "2011-11-29T16:06:08.595Z", + "0.0.0": "2011-11-29T16:06:08.925Z" + }, + "author": { + "name": "Tom MacWright", + "email": "tom@macwright.org", + "url": "http://macwright.org/" + }, + "repository": { + "url": "git@github.com:tmcw/overhead.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/overhead/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "9c42885ce7928198c8b6479c73de81f6a458727d", + "tarball": "http://registry.npmjs.org/overhead/-/overhead-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/overhead/" + }, + "overload": { + "name": "overload", + "dist-tags": { + "latest": "1.2.4" + }, + "maintainers": [ + { + "name": "bradleymeck", + "email": "bradley.meck@gmail.com" + } + ], + "author": { + "name": "bradleymeck" + }, + "time": { + "modified": "2011-07-16T22:35:16.044Z", + "created": "2011-07-16T22:35:16.044Z", + "1.0.1": "2011-07-16T22:35:16.044Z", + "1.0.2": "2011-07-16T22:35:16.044Z", + "1.2.4": "2011-07-16T22:35:16.044Z" + }, + "versions": { + "1.0.1": "http://registry.npmjs.org/overload/1.0.1", + "1.0.2": "http://registry.npmjs.org/overload/1.0.2", + "1.2.4": "http://registry.npmjs.org/overload/1.2.4" + }, + "dist": { + "1.0.1": { + "tarball": "http://packages:5984/overload/-/overload-1.0.1.tgz" + }, + "1.0.2": { + "tarball": "http://packages:5984/overload/-/overload-1.0.2.tgz" + }, + "1.2.4": { + "shasum": "a06132d215d5136420c2ed4bf2afcfb92ce5aaf2", + "tarball": "http://registry.npmjs.org/overload/-/overload-1.2.4.tgz" + } + }, + "url": "http://registry.npmjs.org/overload/" + }, + "ox": { + "name": "ox", + "description": "Online X Terminal", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "gatapia", + "email": "guido@tapia.com.au" + } + ], + "time": { + "modified": "2011-03-05T10:31:30.566Z", + "created": "2011-03-05T10:31:29.606Z", + "0.0.1": "2011-03-05T10:31:30.566Z" + }, + "author": { + "name": "Guido Tapia", + "email": "guido@tapia.com.au", + "url": "www.picnet.com.au" + }, + "repository": { + "type": "git", + "url": "git://github.com/gatapia/ox.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ox/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "dcefa4cbf18098df43cc7fabf2c266ebf4bf07a1", + "tarball": "http://registry.npmjs.org/ox/-/ox-0.0.1.tgz" + } + }, + "keywords": [ + "xterm", + "online" + ], + "url": "http://registry.npmjs.org/ox/" + }, + "oxen": { + "name": "oxen", + "description": "create GitHub pull requests from the command line", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "dmotz", + "email": "motzdc@gmail.com" + } + ], + "time": { + "modified": "2011-09-26T16:09:14.052Z", + "created": "2011-09-23T07:10:47.291Z", + "0.0.1": "2011-09-23T07:10:48.960Z", + "0.0.2": "2011-09-23T07:49:54.086Z", + "0.0.3": "2011-09-26T07:58:34.771Z" + }, + "author": { + "name": "Dan Motzenbecker", + "url": "http://github.com/dmotz" + }, + "repository": { + "type": "git", + "url": "git://github.com/dmotz/oxen.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/oxen/0.0.1", + "0.0.2": "http://registry.npmjs.org/oxen/0.0.2", + "0.0.3": "http://registry.npmjs.org/oxen/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "5cd12f3cd905858d21d793425c02c67ad01ca492", + "tarball": "http://registry.npmjs.org/oxen/-/oxen-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "e0424475a4ec686eb5e6279d4da1cccb32e8d3d3", + "tarball": "http://registry.npmjs.org/oxen/-/oxen-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "a6ff6f45ed3f3800a57dd33c6439581ed2fdcf5a", + "tarball": "http://registry.npmjs.org/oxen/-/oxen-0.0.3.tgz" + } + }, + "keywords": [ + "git", + "github", + "cli" + ], + "url": "http://registry.npmjs.org/oxen/" + }, + "p2p-hub": { + "name": "p2p-hub", + "description": "A simple hub for communicating p2p between processes or machines", + "dist-tags": { + "latest": "0.2.4" + }, + "readme": "# p2p-hub\n\n*OBS p2p-hub is build for node v.6*\n\na super simple p2p hub that allows you to send json messages between computers\n\n``` js\nvar hub = require('p2p-hub').connect('json://address_to_a_member');\n\nhub.on('connect', function(from) {\n\tconsole.log(from, 'connected');\n\tconsole.log('all nodes:', hub.nodes());\n});\nhub.on('disconnect', function(from) {\n\tconsole.log(from, 'disconnected');\n});\nhub.on('message', function(from, message) {\n\tconsole.log(from, 'says', message);\n});\nhub.send('json://another_member', {hello:'world'});\n\n```\n\nYou can also multiplex messages to support multiple apps on the same hub\n\n``` js\nvar hub = require('p2p-hub').connect('json://address_to_a_member');\n\nvar app = hub.multiplex('app');\n\napp.on('connect', function(from) {\n\tconsole.log(from, 'connected to app');\n\tconsole.log('all in app:', app.nodes());\n});\napp.on('disconnect', function(from) {\n\tconsole.log(from, 'disconnected from app');\n});\napp.on('message', function(from, message) {\n\tconsole.log(from, 'in app says', message);\n});\napp.send('json://another_member', {hello:'app'});\n\n```\n", + "maintainers": [ + { + "name": "mafintosh", + "email": "mathiasbuus@gmail.com" + } + ], + "time": { + "modified": "2011-12-14T11:33:32.181Z", + "created": "2011-11-06T21:54:37.821Z", + "0.2.3": "2011-11-06T21:54:39.289Z", + "0.2.4": "2011-12-14T11:33:32.181Z" + }, + "author": { + "name": "Mathias Buus Madsen", + "email": "mathiasbuus@gmail.com" + }, + "versions": { + "0.2.3": "http://registry.npmjs.org/p2p-hub/0.2.3", + "0.2.4": "http://registry.npmjs.org/p2p-hub/0.2.4" + }, + "dist": { + "0.2.3": { + "shasum": "597bb1ef67bed8ccdc502c8e40f2a7986951c149", + "tarball": "http://registry.npmjs.org/p2p-hub/-/p2p-hub-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "010ad2905c6b6dda893db741adfffdd30cdeef71", + "tarball": "http://registry.npmjs.org/p2p-hub/-/p2p-hub-0.2.4.tgz" + } + }, + "url": "http://registry.npmjs.org/p2p-hub/" + }, + "pachube": { + "name": "pachube", + "description": "A simple wrapper for api.pachube.com", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "kuno", + "email": "neokuno@gmail.com" + } + ], + "time": { + "modified": "2011-04-03T11:14:21.216Z", + "created": "2011-03-30T11:50:50.811Z", + "0.0.1pre": "2011-03-30T11:50:51.957Z", + "0.0.1": "2011-04-03T04:43:28.174Z", + "0.0.2": "2011-04-03T11:12:10.485Z" + }, + "author": { + "name": "Guan 'kuno' Qing", + "email": "neokuno AT Gmail DOT com" + }, + "repository": { + "type": "git", + "url": "git://github.com/kuno/node-pachube.git" + }, + "versions": { + "0.0.1pre": "http://registry.npmjs.org/pachube/0.0.1pre", + "0.0.1": "http://registry.npmjs.org/pachube/0.0.1", + "0.0.2": "http://registry.npmjs.org/pachube/0.0.2" + }, + "dist": { + "0.0.1pre": { + "shasum": "1a97242e5cbfeec38a0e06483ea86d11a550aa28", + "tarball": "http://registry.npmjs.org/pachube/-/pachube-0.0.1pre.tgz" + }, + "0.0.1": { + "shasum": "6288c271a225c6fda0b0edefab7ef2f972911a04", + "tarball": "http://registry.npmjs.org/pachube/-/pachube-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "80069ee4613b82b141dbbe67a232e291a6846a3b", + "tarball": "http://registry.npmjs.org/pachube/-/pachube-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/pachube/" + }, + "pachube-stream": { + "name": "pachube-stream", + "description": "Client For the Pachube TCP Stream API", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "hookercookerman", + "email": "hookercookerman@gmail.com" + } + ], + "time": { + "modified": "2011-05-23T09:09:08.594Z", + "created": "2011-05-03T14:27:26.757Z", + "0.0.1": "2011-05-03T14:27:27.635Z", + "0.0.2": "2011-05-04T12:55:46.221Z", + "0.0.3": "2011-05-05T14:11:56.241Z", + "0.0.4": "2011-05-21T13:30:19.911Z", + "0.0.5": "2011-05-23T08:51:34.141Z", + "0.0.6": "2011-05-23T09:09:08.594Z" + }, + "author": { + "name": "Richard Hooker", + "email": "hookercookerman@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/carboncalculated/node-pachube-stream.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/pachube-stream/0.0.1", + "0.0.2": "http://registry.npmjs.org/pachube-stream/0.0.2", + "0.0.3": "http://registry.npmjs.org/pachube-stream/0.0.3", + "0.0.4": "http://registry.npmjs.org/pachube-stream/0.0.4", + "0.0.5": "http://registry.npmjs.org/pachube-stream/0.0.5", + "0.0.6": "http://registry.npmjs.org/pachube-stream/0.0.6" + }, + "dist": { + "0.0.1": { + "shasum": "8beb69ab8ee3a6987dc7cb1a5ed0e0768914ba71", + "tarball": "http://registry.npmjs.org/pachube-stream/-/pachube-stream-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "821efc82d77148e637e823dfc2e88038a5a14840", + "tarball": "http://registry.npmjs.org/pachube-stream/-/pachube-stream-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "7ba0c4d693c7e78604780484a53e188812b48249", + "tarball": "http://registry.npmjs.org/pachube-stream/-/pachube-stream-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "7bd60bf3900df059316309c44c0d7980be70c1dd", + "tarball": "http://registry.npmjs.org/pachube-stream/-/pachube-stream-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "b62348b7af61a465f0f651a45f303bf3b66ee118", + "tarball": "http://registry.npmjs.org/pachube-stream/-/pachube-stream-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "5f6befd8f1405bb1eff0f64efbf64f8e98aa1a27", + "tarball": "http://registry.npmjs.org/pachube-stream/-/pachube-stream-0.0.6.tgz" + } + }, + "url": "http://registry.npmjs.org/pachube-stream/" + }, + "pack": { + "name": "pack", + "description": "Minify, obfuscate and encrypt node modules", + "dist-tags": { + "latest": "0.2.7" + }, + "maintainers": [ + { + "name": "cohara87", + "email": "cohara87@gmail.com" + } + ], + "author": { + "name": "Chris O'Hara", + "email": "cohara87@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/chriso/packnode.git" + }, + "time": { + "modified": "2011-04-28T23:01:02.921Z", + "created": "2010-12-19T13:00:56.908Z", + "0.1.0": "2010-12-19T13:00:56.908Z", + "0.1.1": "2010-12-19T13:00:56.908Z", + "0.1.3": "2010-12-19T13:00:56.908Z", + "0.1.4": "2010-12-19T13:14:10.428Z", + "0.2.0": "2010-12-19T14:32:34.984Z", + "0.2.1": "2010-12-19T14:52:57.253Z", + "0.2.2": "2010-12-21T07:16:24.608Z", + "0.2.3": "2010-12-21T07:19:35.344Z", + "0.2.4": "2011-01-04T16:27:05.552Z", + "0.2.5": "2011-04-28T22:47:55.769Z", + "0.2.6": "2011-04-28T22:58:52.718Z", + "0.2.7": "2011-04-28T23:01:02.921Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/pack/0.1.0", + "0.1.1": "http://registry.npmjs.org/pack/0.1.1", + "0.1.3": "http://registry.npmjs.org/pack/0.1.3", + "0.1.4": "http://registry.npmjs.org/pack/0.1.4", + "0.2.0": "http://registry.npmjs.org/pack/0.2.0", + "0.2.1": "http://registry.npmjs.org/pack/0.2.1", + "0.2.2": "http://registry.npmjs.org/pack/0.2.2", + "0.2.3": "http://registry.npmjs.org/pack/0.2.3", + "0.2.4": "http://registry.npmjs.org/pack/0.2.4", + "0.2.5": "http://registry.npmjs.org/pack/0.2.5", + "0.2.6": "http://registry.npmjs.org/pack/0.2.6", + "0.2.7": "http://registry.npmjs.org/pack/0.2.7" + }, + "dist": { + "0.1.0": { + "shasum": "77be99b11fe2ed3331b6b506e0005b049cfa6aaf", + "tarball": "http://registry.npmjs.org/pack/-/pack-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "3133c8f1438f1bf1c8062b04aa0fe6b38f5250ed", + "tarball": "http://registry.npmjs.org/pack/-/pack-0.1.1.tgz" + }, + "0.1.3": { + "shasum": "8fa3995661f00b9eaae5f978c5359da874d74df9", + "tarball": "http://registry.npmjs.org/pack/-/pack-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "ad362cf9ce2f80ba12968d7702aa24b1e3cb3da7", + "tarball": "http://registry.npmjs.org/pack/-/pack-0.1.4.tgz" + }, + "0.2.0": { + "shasum": "68eb109d140b25480ef25ba33cb784b94654738f", + "tarball": "http://registry.npmjs.org/pack/-/pack-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "18e6be49c1cb9a6ceac67fe07eaecb3819563120", + "tarball": "http://registry.npmjs.org/pack/-/pack-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "520c58c08998c4da04982873a212c189e906af9a", + "tarball": "http://registry.npmjs.org/pack/-/pack-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "0f1d8ac20b8f8f84818c77977d789793dc4b7dfe", + "tarball": "http://registry.npmjs.org/pack/-/pack-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "3a1b975012fccf18475e10b47fc6d63b54eb2808", + "tarball": "http://registry.npmjs.org/pack/-/pack-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "5f03b496e4572a493c1f91afbfba2a4b287fee26", + "tarball": "http://registry.npmjs.org/pack/-/pack-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "e5e9f364e612311da697fc37442a607e9da0ee1e", + "tarball": "http://registry.npmjs.org/pack/-/pack-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "5925fb9af694be3a4f58652779ee66a6c0fdf8fc", + "tarball": "http://registry.npmjs.org/pack/-/pack-0.2.7.tgz" + } + }, + "keywords": [ + "pack", + "packnode", + "encrypt", + "compress", + "unpack", + "yui", + "obfuscate", + "compressor", + "closure", + "jsmin" + ], + "url": "http://registry.npmjs.org/pack/" + }, + "packagebohrer": { + "name": "packagebohrer", + "description": "My first package", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "nbluis", + "email": "nbluisrs@gmail.com" + } + ], + "time": { + "modified": "2011-05-11T00:30:44.087Z", + "created": "2011-05-11T00:30:42.790Z", + "0.0.1": "2011-05-11T00:30:44.087Z" + }, + "author": { + "name": "Eduardo Bohrer", + "email": "nbluisrs@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/packagebohrer/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "cb5d1834a9594c2a483d21dbdb9cf1e26cc47b1e", + "tarball": "http://registry.npmjs.org/packagebohrer/-/packagebohrer-0.0.1.tgz" + } + }, + "keywords": [ + "test" + ], + "url": "http://registry.npmjs.org/packagebohrer/" + }, + "packager": { + "name": "packager", + "description": "Install npm packages listed in Npmfile", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "vdemedes", + "email": "sbioko@gmail.com" + } + ], + "time": { + "modified": "2011-10-29T07:02:22.659Z", + "created": "2011-10-28T18:20:28.811Z", + "0.0.1": "2011-10-28T18:20:30.365Z", + "0.0.2": "2011-10-28T19:09:34.866Z", + "0.0.3": "2011-10-29T07:02:22.659Z" + }, + "author": { + "name": "Vadim Demedes", + "email": "sbioko@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/packager/0.0.1", + "0.0.2": "http://registry.npmjs.org/packager/0.0.2", + "0.0.3": "http://registry.npmjs.org/packager/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "62f06aa01e81be6a89e29f8b3b5b86db5fbad47e", + "tarball": "http://registry.npmjs.org/packager/-/packager-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "92b88276f9a36c46db2c8b1193ead32b609c4db8", + "tarball": "http://registry.npmjs.org/packager/-/packager-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "a5974a4e148c6450134d7e9425b87c36dc479dfd", + "tarball": "http://registry.npmjs.org/packager/-/packager-0.0.3.tgz" + } + }, + "keywords": [ + "package installer", + "installer" + ], + "url": "http://registry.npmjs.org/packager/" + }, + "packer": { + "name": "packer", + "description": "Simple port of /packer/ by Dean Edwards", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "evanw", + "email": "evan.exe@gmail.com" + } + ], + "time": { + "modified": "2011-09-23T00:07:35.004Z", + "created": "2011-01-29T04:42:59.674Z", + "0.0.1": "2011-01-29T04:42:59.914Z", + "0.0.2": "2011-01-29T04:43:34.307Z", + "0.0.4": "2011-04-02T05:06:25.471Z", + "0.0.5": "2011-09-23T00:07:35.004Z" + }, + "author": { + "name": "Evan Wallace" + }, + "repository": { + "type": "git", + "url": "git://github.com/evanw/packer.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/packer/0.0.1", + "0.0.2": "http://registry.npmjs.org/packer/0.0.2", + "0.0.4": "http://registry.npmjs.org/packer/0.0.4", + "0.0.5": "http://registry.npmjs.org/packer/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "1016e7609b2fb197012d62918f9f1a978f2463bc", + "tarball": "http://registry.npmjs.org/packer/-/packer-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "520dd17af3eaa00cd729ebbb8c1f3096ad9ec6de", + "tarball": "http://registry.npmjs.org/packer/-/packer-0.0.2.tgz" + }, + "0.0.4": { + "shasum": "51f547116de94834f6b2e69d4c892e4315f1d7c9", + "tarball": "http://registry.npmjs.org/packer/-/packer-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "278e4ecf40c723e329a584f9c329ca4907a48efe", + "tarball": "http://registry.npmjs.org/packer/-/packer-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/packer/" + }, + "packet": { + "name": "packet", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "bigeasy", + "email": "alan@prettyrobots.com" + } + ], + "author": { + "name": "Alan Gutierrez" + }, + "time": { + "modified": "2011-04-10T09:53:47.906Z", + "created": "2011-04-10T09:53:47.906Z", + "0.0.1": "2011-04-10T09:53:47.906Z", + "0.0.2": "2011-04-10T09:53:47.906Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/packet/0.0.1", + "0.0.2": "http://registry.npmjs.org/packet/0.0.2" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/packet/-/packet-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "032c87a0e620827ce1ddf9a3fae392d09960ebe9", + "tarball": "http://registry.npmjs.org/packet/-/packet-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/packet/" + }, + "pacote-sam-egenial": { + "name": "pacote-sam-egenial", + "description": "Aprendendo a criar pacotes no curso de NodeJS da eGenial", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "sambarboza", + "email": "sam.barbosa@ymail.com" + } + ], + "time": { + "modified": "2011-05-11T00:30:36.706Z", + "created": "2011-05-11T00:30:35.909Z", + "0.0.1": "2011-05-11T00:30:36.706Z" + }, + "author": { + "name": "Samuel Barbosa", + "email": "sam.barbosa@ymail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/sambarboza/pacotesam.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/pacote-sam-egenial/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "3cc263144024d1e494219f77548597225dff7e45", + "tarball": "http://registry.npmjs.org/pacote-sam-egenial/-/pacote-sam-egenial-0.0.1.tgz" + } + }, + "keywords": [ + "nodejs", + "curso", + "egenial" + ], + "url": "http://registry.npmjs.org/pacote-sam-egenial/" + }, + "pacoteegenial": { + "name": "pacoteegenial", + "description": "Aprendendo a criar pacotes Node.JS", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "emerleite", + "email": "emerleite@gmail.com" + } + ], + "time": { + "modified": "2011-05-11T00:30:09.665Z", + "created": "2011-05-11T00:30:08.730Z", + "0.0.1": "2011-05-11T00:30:09.665Z" + }, + "author": { + "name": "Seu Nome", + "email": "nome@dominio.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/usuario/repositorio.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/pacoteegenial/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "1b0c103d83363e47113183846135cf6a74a195cd", + "tarball": "http://registry.npmjs.org/pacoteegenial/-/pacoteegenial-0.0.1.tgz" + } + }, + "keywords": [ + "nodejs", + "curso", + "egenial" + ], + "url": "http://registry.npmjs.org/pacoteegenial/" + }, + "pact": { + "name": "pact", + "description": "Vows macros for easy HTTP server testing.", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "reid", + "email": "me@reidburke.com" + } + ], + "time": { + "modified": "2011-03-29T19:24:46.133Z", + "created": "2011-02-09T00:25:21.307Z", + "0.1.0": "2011-02-09T00:25:21.648Z", + "0.1.1": "2011-03-29T19:17:28.608Z", + "0.1.2": "2011-03-29T19:24:46.133Z" + }, + "author": { + "name": "Reid Burke", + "email": "me@reidburke.com", + "url": "http://reidburke.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/reid/pact.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/pact/0.1.0", + "0.1.1": "http://registry.npmjs.org/pact/0.1.1", + "0.1.2": "http://registry.npmjs.org/pact/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "79fc7edc64dfa633533e2122fbcb4d1a3ec21415", + "tarball": "http://registry.npmjs.org/pact/-/pact-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "e16129877794af9879684211401f095a17e3b908", + "tarball": "http://registry.npmjs.org/pact/-/pact-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "3df5fcbb80f6f7c1d56717bdebec9f82c78aac31", + "tarball": "http://registry.npmjs.org/pact/-/pact-0.1.2.tgz" + } + }, + "keywords": [ + "Vows", + "HTTP", + "test" + ], + "url": "http://registry.npmjs.org/pact/" + }, + "pad": { + "name": "pad", + "description": "Left and right string padding", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "david", + "email": "david@adaltas.com" + } + ], + "time": { + "modified": "2011-11-14T15:40:15.485Z", + "created": "2011-11-14T14:30:40.010Z", + "0.0.1": "2011-11-14T15:40:15.485Z" + }, + "author": { + "name": "David Worms", + "email": "david@adaltas.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/wdavidw/node-pad.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/pad/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "8c23f8e927844d73844e2c1b5973b41cda169520", + "tarball": "http://registry.npmjs.org/pad/-/pad-0.0.1.tgz" + } + }, + "keywords": [ + "string", + "pad" + ], + "url": "http://registry.npmjs.org/pad/" + }, + "paddle": { + "name": "paddle", + "description": "You are up a creek; here is your paddle. Paddle provides a way ensuring that JS asynchronous callbacks are actually ran, or calls a provided error function upon timeout.", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "fritzy", + "email": "nathan@andyet.net" + } + ], + "time": { + "modified": "2011-05-09T19:27:07.670Z", + "created": "2011-05-09T19:27:07.270Z", + "1.0.0": "2011-05-09T19:27:07.670Z" + }, + "author": { + "name": "Nathan Fritz", + "email": "nathan@andyet.net", + "url": "http://andyet.net/team/nathan" + }, + "repository": { + "type": "git", + "url": "git://github.com/andyet/paddle.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/paddle/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "3715e4777d5a5e541503dd444d29dafa567b9450", + "tarball": "http://registry.npmjs.org/paddle/-/paddle-1.0.0.tgz" + } + }, + "keywords": [ + "flow-control", + "flow", + "control", + "paddle", + "ensure", + "asynchronous" + ], + "url": "http://registry.npmjs.org/paddle/" + }, + "padlock": { + "name": "padlock", + "description": "Padlock works to prevent unexpected code execution when dealing with asynchronous callbacks without blocking. Call a function with lock to execute it as soon as a lock can be attained, and unlock it at all of your possible callback end-points. Use the same lock on other functions that you don't want to interrupt. Code will execute in order as the lock can be acquired.", + "dist-tags": { + "latest": "1.1.2" + }, + "maintainers": [ + { + "name": "fritzy", + "email": "nathan@andyet.net" + } + ], + "time": { + "modified": "2011-10-03T22:03:55.373Z", + "created": "2011-05-01T08:06:37.580Z", + "1.0.0": "2011-05-01T08:06:38.198Z", + "1.0.1": "2011-05-05T17:59:43.511Z", + "1.0.2": "2011-05-07T00:24:23.279Z", + "1.1.0": "2011-09-23T03:43:28.247Z", + "1.1.2": "2011-10-03T22:03:55.373Z" + }, + "author": { + "name": "Nathan Fritz", + "email": "nathan@andyet.net", + "url": "http://andyet.net/team/nathan" + }, + "repository": { + "type": "git", + "url": "git://github.com/andyet/padlock.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/padlock/1.0.0", + "1.0.1": "http://registry.npmjs.org/padlock/1.0.1", + "1.0.2": "http://registry.npmjs.org/padlock/1.0.2", + "1.1.0": "http://registry.npmjs.org/padlock/1.1.0", + "1.1.2": "http://registry.npmjs.org/padlock/1.1.2" + }, + "dist": { + "1.0.0": { + "shasum": "65a6318e4a63ec4a686ec383d9d5c9953c6ca202", + "tarball": "http://registry.npmjs.org/padlock/-/padlock-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "f35cb32981ff134f593193e3a194c95822d1bdc8", + "tarball": "http://registry.npmjs.org/padlock/-/padlock-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "b5f34f6fa4dde0915e0622c4913ba1a44cfb07ef", + "tarball": "http://registry.npmjs.org/padlock/-/padlock-1.0.2.tgz" + }, + "1.1.0": { + "shasum": "1e26be57550c47bc47be98d6fd82855a53b55550", + "tarball": "http://registry.npmjs.org/padlock/-/padlock-1.1.0.tgz" + }, + "1.1.2": { + "shasum": "13f142b82ac0ce12d612c68d3008b42456ba0cb7", + "tarball": "http://registry.npmjs.org/padlock/-/padlock-1.1.2.tgz" + } + }, + "keywords": [ + "lock", + "flow", + "control", + "flow-control", + "acquire", + "release", + "synchronous", + "asynchronous" + ], + "url": "http://registry.npmjs.org/padlock/" + }, + "pagan": { + "name": "pagan", + "description": "pagination of arrays with ease", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "zzak", + "email": "zachary@zacharyscott.net" + } + ], + "time": { + "modified": "2011-11-05T23:45:36.120Z", + "created": "2011-11-05T23:45:32.561Z", + "0.0.0": "2011-11-05T23:45:36.120Z" + }, + "author": { + "name": "Zachary Scott", + "email": "zachary@zacharyscott.net", + "url": "http://zacharyscott.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/zzak/pagan.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/pagan/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "75a16ad339f4cdb3a4a49b4b37cbadc3cc0df848", + "tarball": "http://registry.npmjs.org/pagan/-/pagan-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/pagan/" + }, + "pagen": { + "name": "pagen", + "description": "Simplify the creation of generic html pages generated from markdown", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "mkitt", + "email": "mk.kitt@gmail.com" + } + ], + "time": { + "modified": "2011-04-25T17:23:32.841Z", + "created": "2011-04-12T05:53:54.837Z", + "0.0.1": "2011-04-12T05:53:55.178Z", + "0.0.2": "2011-04-13T06:19:15.612Z", + "0.0.3": "2011-04-14T02:40:51.063Z", + "0.0.4": "2011-04-25T17:23:32.841Z" + }, + "author": { + "name": "Matthew Kitt", + "email": "mk.kitt@gmail.com", + "url": "http://mkitt.net/" + }, + "repository": { + "type": "git", + "url": "http://github.com/mkitt/pagen.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/pagen/0.0.1", + "0.0.2": "http://registry.npmjs.org/pagen/0.0.2", + "0.0.3": "http://registry.npmjs.org/pagen/0.0.3", + "0.0.4": "http://registry.npmjs.org/pagen/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "ed53d71d05a1ed26c4da372643267d957151ac06", + "tarball": "http://registry.npmjs.org/pagen/-/pagen-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "73155231b9df0eb576890792835e098098100e91", + "tarball": "http://registry.npmjs.org/pagen/-/pagen-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "6874e11f31ebf42eb3245b5a3d38d1ea5311dad3", + "tarball": "http://registry.npmjs.org/pagen/-/pagen-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "39c48949d7a540d2a34d16010ca395d6afdb96d5", + "tarball": "http://registry.npmjs.org/pagen/-/pagen-0.0.4.tgz" + } + }, + "keywords": [ + "github pages", + "markdown", + "html", + "github" + ], + "url": "http://registry.npmjs.org/pagen/" + }, + "paginate-js": { + "name": "paginate-js", + "description": "Paginate whatever you want, client and server side", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "masylum", + "email": "masylum@gmail.com" + } + ], + "time": { + "modified": "2011-04-03T15:34:34.060Z", + "created": "2011-03-31T00:25:09.479Z", + "0.0.1": "2011-03-31T00:25:10.021Z", + "0.0.2": "2011-04-03T15:34:34.060Z" + }, + "author": { + "name": "Pau Ramon", + "email": "masylum@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/masylum/paginate-js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/paginate-js/0.0.1", + "0.0.2": "http://registry.npmjs.org/paginate-js/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "b9c5a296173d5bd8936ac032b4847a8c7c508cd7", + "tarball": "http://registry.npmjs.org/paginate-js/-/paginate-js-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "d8d26269cf8f7b249c15b973795a5d9b19c7f3a9", + "tarball": "http://registry.npmjs.org/paginate-js/-/paginate-js-0.0.2.tgz" + } + }, + "keywords": [ + "paginate" + ], + "url": "http://registry.npmjs.org/paginate-js/" + }, + "paige": { + "name": "paige", + "description": "The quickie-wiki Github project page generator", + "dist-tags": { + "latest": "0.1.6" + }, + "maintainers": [ + { + "name": "rthauby", + "email": "rthauby@gmail.com" + } + ], + "time": { + "modified": "2011-11-21T18:53:26.881Z", + "created": "2011-10-15T17:18:53.379Z", + "0.1.0": "2011-10-15T17:18:54.468Z", + "0.1.1": "2011-10-16T00:34:41.661Z", + "0.1.2": "2011-10-16T22:18:04.609Z", + "0.1.3": "2011-10-19T16:40:28.156Z", + "0.1.4": "2011-10-28T06:13:27.806Z", + "0.1.5": "2011-11-05T04:23:00.879Z", + "0.1.6": "2011-11-21T18:53:26.881Z" + }, + "author": { + "name": "Rodrigo Thauby" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/paige/0.1.0", + "0.1.1": "http://registry.npmjs.org/paige/0.1.1", + "0.1.2": "http://registry.npmjs.org/paige/0.1.2", + "0.1.3": "http://registry.npmjs.org/paige/0.1.3", + "0.1.4": "http://registry.npmjs.org/paige/0.1.4", + "0.1.5": "http://registry.npmjs.org/paige/0.1.5", + "0.1.6": "http://registry.npmjs.org/paige/0.1.6" + }, + "dist": { + "0.1.0": { + "shasum": "8b55e37e6dabd1cf05bae7926824df147da1e5e8", + "tarball": "http://registry.npmjs.org/paige/-/paige-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "ebc57faeabd9e99d73d17cc73b3536454da24d15", + "tarball": "http://registry.npmjs.org/paige/-/paige-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "aba8e67189383cce9cd5669877ba5b67dec6f8e8", + "tarball": "http://registry.npmjs.org/paige/-/paige-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "5771b012ec50850da6ee4d090122957b003b2180", + "tarball": "http://registry.npmjs.org/paige/-/paige-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "3231b9c9446e5cc96f36925a28d4486ebcea5270", + "tarball": "http://registry.npmjs.org/paige/-/paige-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "14c153a794ddb8749bf8487513985c21c5ad13d8", + "tarball": "http://registry.npmjs.org/paige/-/paige-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "6cd5c935ee8e1d94894d53392f7318e50b91e1fb", + "tarball": "http://registry.npmjs.org/paige/-/paige-0.1.6.tgz" + } + }, + "keywords": [ + "docs", + "project", + "page", + "generator", + "coffeescript", + "docco", + "documentation", + "site" + ], + "url": "http://registry.npmjs.org/paige/" + }, + "pairgen": { + "name": "pairgen", + "description": "paired-end NGS simulator.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "shinout", + "email": "shinout310@gmail.com" + } + ], + "time": { + "modified": "2011-10-29T17:43:58.860Z", + "created": "2011-10-28T08:43:23.644Z", + "0.1.0": "2011-10-28T08:43:29.418Z", + "0.1.1": "2011-10-29T17:43:58.860Z" + }, + "author": { + "name": "SHIN Suzuki", + "email": "shinout310@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/shinout/pairgen.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/pairgen/0.1.0", + "0.1.1": "http://registry.npmjs.org/pairgen/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "ddcd45ed332e3126209a0902d6d53c4a3adcad6f", + "tarball": "http://registry.npmjs.org/pairgen/-/pairgen-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "523fa3eb0f9c7b2dfa13ed13c17a869b7afe5498", + "tarball": "http://registry.npmjs.org/pairgen/-/pairgen-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/pairgen/" + }, + "pairtree": { + "name": "pairtree", + "description": "A Pairtree library", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "gsf", + "email": "g@grrawr.com" + } + ], + "time": { + "modified": "2011-07-11T17:22:38.495Z", + "created": "2011-07-11T17:22:38.409Z", + "0.0.1": "2011-07-11T17:22:38.495Z" + }, + "author": { + "name": "Gabriel Farrell", + "email": "g@grrawr.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/gsf/pairtree.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/pairtree/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "885d88e9c4eda383ba0ab64f5bbcceecd612c950", + "tarball": "http://registry.npmjs.org/pairtree/-/pairtree-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/pairtree/" + }, + "pakman": { + "name": "pakman", + "description": "A tool for building package managers", + "dist-tags": { + "latest": "0.8.7" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-11-24T23:24:05.652Z", + "created": "2011-10-25T00:11:23.927Z", + "0.8.0": "2011-10-25T00:11:24.523Z", + "0.8.1": "2011-10-25T06:54:42.778Z", + "0.8.2": "2011-10-27T20:40:17.442Z", + "0.8.3": "2011-10-27T21:04:58.107Z", + "0.8.4": "2011-10-28T23:12:58.920Z", + "0.8.5": "2011-10-28T23:52:04.468Z", + "0.8.6": "2011-11-11T07:22:24.742Z", + "0.8.7": "2011-11-24T23:24:05.652Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com", + "url": "http://coolaj86.info" + }, + "repository": { + "url": "git://github.com/coolaj86/node-pakman.git" + }, + "versions": { + "0.8.0": "http://registry.npmjs.org/pakman/0.8.0", + "0.8.1": "http://registry.npmjs.org/pakman/0.8.1", + "0.8.2": "http://registry.npmjs.org/pakman/0.8.2", + "0.8.3": "http://registry.npmjs.org/pakman/0.8.3", + "0.8.4": "http://registry.npmjs.org/pakman/0.8.4", + "0.8.5": "http://registry.npmjs.org/pakman/0.8.5", + "0.8.6": "http://registry.npmjs.org/pakman/0.8.6", + "0.8.7": "http://registry.npmjs.org/pakman/0.8.7" + }, + "dist": { + "0.8.0": { + "shasum": "08aee8573352a6e84df434e8cbfa607756614a89", + "tarball": "http://registry.npmjs.org/pakman/-/pakman-0.8.0.tgz" + }, + "0.8.1": { + "shasum": "eec4de64f8a6dd179596d1d0d5a98525758cef9c", + "tarball": "http://registry.npmjs.org/pakman/-/pakman-0.8.1.tgz" + }, + "0.8.2": { + "shasum": "dcf6b838b60ae2f4d992ce3d1396bef1a775584d", + "tarball": "http://registry.npmjs.org/pakman/-/pakman-0.8.2.tgz" + }, + "0.8.3": { + "shasum": "abe3fc37cc59c4eb1359702a347addf8fa267c75", + "tarball": "http://registry.npmjs.org/pakman/-/pakman-0.8.3.tgz" + }, + "0.8.4": { + "shasum": "9081e2b8bef50f20d4e2cec9f5f6dc7cfd624f66", + "tarball": "http://registry.npmjs.org/pakman/-/pakman-0.8.4.tgz" + }, + "0.8.5": { + "shasum": "60b5dfa6c472e0dc3b0be11cf5af677e00ad84ad", + "tarball": "http://registry.npmjs.org/pakman/-/pakman-0.8.5.tgz" + }, + "0.8.6": { + "shasum": "b5d23b008286b1575e71e29a9308a04e42e2d3b4", + "tarball": "http://registry.npmjs.org/pakman/-/pakman-0.8.6.tgz" + }, + "0.8.7": { + "shasum": "c47089033fd38211069dc8636dfaf2f364e9caa1", + "tarball": "http://registry.npmjs.org/pakman/-/pakman-0.8.7.tgz" + } + }, + "url": "http://registry.npmjs.org/pakman/" + }, + "pakmanager": { + "name": "pakmanager", + "description": "A demo package manager using the pakman API.", + "dist-tags": { + "latest": "0.8.5" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-11-11T07:21:59.684Z", + "created": "2011-10-25T18:19:41.456Z", + "0.8.1": "2011-10-25T18:19:42.059Z", + "0.8.4": "2011-10-28T23:14:49.888Z", + "0.8.5": "2011-11-11T07:21:59.684Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com", + "url": "http://coolaj86.info" + }, + "repository": { + "type": "git", + "url": "git://github.com/coolaj86/node-pakman.git" + }, + "versions": { + "0.8.1": "http://registry.npmjs.org/pakmanager/0.8.1", + "0.8.4": "http://registry.npmjs.org/pakmanager/0.8.4", + "0.8.5": "http://registry.npmjs.org/pakmanager/0.8.5" + }, + "dist": { + "0.8.1": { + "shasum": "ad044de145aebac4ee9af6972ca176dbd4f94342", + "tarball": "http://registry.npmjs.org/pakmanager/-/pakmanager-0.8.1.tgz" + }, + "0.8.4": { + "shasum": "03e8a67d4b98d47d044db687bae02805755d98f7", + "tarball": "http://registry.npmjs.org/pakmanager/-/pakmanager-0.8.4.tgz" + }, + "0.8.5": { + "shasum": "7dc257c45f31ea50196dd1c137562913d2e95294", + "tarball": "http://registry.npmjs.org/pakmanager/-/pakmanager-0.8.5.tgz" + } + }, + "url": "http://registry.npmjs.org/pakmanager/" + }, + "palsu-app": { + "name": "palsu-app", + "description": "Palsu meeting tool -- http://palsu.me", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "rene.kapusta", + "email": "rene.kapusta@gmail.com" + } + ], + "time": { + "modified": "2011-09-09T14:36:34.720Z", + "created": "2011-09-09T14:36:34.336Z", + "0.0.1": "2011-09-09T14:36:34.720Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/bergie/ViePalsu.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/palsu-app/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "6e44eb27eee42886b5d03e8b8cff71a45daba80c", + "tarball": "http://registry.npmjs.org/palsu-app/-/palsu-app-0.0.1.tgz" + } + }, + "keywords": [ + "IKS project", + "VIE" + ], + "url": "http://registry.npmjs.org/palsu-app/" + }, + "pam": { + "name": "pam", + "description": "Native Node.js C++ extension for authenticating off PAM.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "ditesh", + "email": "ditesh@gathani.org" + } + ], + "time": { + "modified": "2011-06-14T08:34:39.286Z", + "created": "2011-06-14T08:34:33.832Z", + "0.1.0": "2011-06-14T08:34:39.286Z" + }, + "author": { + "name": "Ditesh Shashikant Gathani", + "email": "ditesh@gathani.org", + "url": "http://ditesh.gathani.org/blog/" + }, + "repository": { + "type": "git", + "url": "git://github.com/ditesh/node-pam.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/pam/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "4ce1186bffe18f04326309a07848af0b73be33d7", + "tarball": "http://registry.npmjs.org/pam/-/pam-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/pam/" + }, + "pam-auth": { + "name": "pam-auth", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "cconstantine", + "email": "cconstan@gmail.com" + } + ], + "time": { + "modified": "2011-11-13T05:00:18.559Z", + "created": "2011-11-13T04:55:05.739Z", + "0.1.0": "2011-11-13T04:57:14.835Z", + "0.1.1": "2011-11-13T05:00:18.559Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/cconstantine/PAM-Auth.git" + }, + "description": "A Connect / Express compatible middleware for providing Basic http auth using PAM.", + "versions": { + "0.1.0": "http://registry.npmjs.org/pam-auth/0.1.0", + "0.1.1": "http://registry.npmjs.org/pam-auth/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "1c66c6dd64da8248b88b8453e9d0c21be15950d8", + "tarball": "http://registry.npmjs.org/pam-auth/-/pam-auth-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "452d7f7ac64d619c113ed9368b7d4847424b63fb", + "tarball": "http://registry.npmjs.org/pam-auth/-/pam-auth-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/pam-auth/" + }, + "panache": { + "name": "panache", + "description": "Powerful real-time persistent group chat application", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "elisee", + "email": "elisee@sparklin.org" + } + ], + "time": { + "modified": "2011-04-03T15:53:56.773Z", + "created": "2011-02-27T00:58:42.716Z", + "0.0.1": "2011-02-27T00:58:43.261Z", + "0.0.2": "2011-03-01T21:49:12.487Z", + "0.0.3": "2011-03-05T15:40:50.548Z", + "0.0.4": "2011-03-07T19:31:13.598Z", + "0.0.5": "2011-03-10T23:29:39.219Z", + "0.1.0": "2011-03-12T17:18:30.706Z", + "0.1.1": "2011-03-15T23:52:17.396Z", + "0.1.2": "2011-03-18T23:19:43.993Z", + "0.2.0": "2011-03-19T20:33:22.936Z", + "0.2.1": "2011-04-03T15:53:56.773Z" + }, + "author": { + "name": "Elisée Maurer", + "email": "elisee@sparklin.org" + }, + "repository": { + "type": "hg", + "url": "https://bitbucket.org/elisee/panache" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/panache/0.0.1", + "0.0.2": "http://registry.npmjs.org/panache/0.0.2", + "0.0.3": "http://registry.npmjs.org/panache/0.0.3", + "0.0.4": "http://registry.npmjs.org/panache/0.0.4", + "0.0.5": "http://registry.npmjs.org/panache/0.0.5", + "0.1.0": "http://registry.npmjs.org/panache/0.1.0", + "0.1.1": "http://registry.npmjs.org/panache/0.1.1", + "0.1.2": "http://registry.npmjs.org/panache/0.1.2", + "0.2.0": "http://registry.npmjs.org/panache/0.2.0", + "0.2.1": "http://registry.npmjs.org/panache/0.2.1" + }, + "dist": { + "0.0.1": { + "shasum": "8432b24b9cabb8dc6bd8e6a03ced5f58e4251e31", + "tarball": "http://registry.npmjs.org/panache/-/panache-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c726bf54efb4784de4956279446fba03f3a9da70", + "tarball": "http://registry.npmjs.org/panache/-/panache-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "73b44f5135535f22bdcaeb72752494a4d72fb289", + "tarball": "http://registry.npmjs.org/panache/-/panache-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "890c456399fb4229ae09c44e2c9e1c8edbca8650", + "tarball": "http://registry.npmjs.org/panache/-/panache-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "7bb5dac02b77521deeca15d93eac7f32bd38a348", + "tarball": "http://registry.npmjs.org/panache/-/panache-0.0.5.tgz" + }, + "0.1.0": { + "shasum": "d2147c9b6198cbcfe1376b208ac75c969e1c84de", + "tarball": "http://registry.npmjs.org/panache/-/panache-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "7d0b839704dc2a749dad0313f3768e4dc1e5fefe", + "tarball": "http://registry.npmjs.org/panache/-/panache-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "41653b8c544dae249569b9400a98db6fe0ee1a97", + "tarball": "http://registry.npmjs.org/panache/-/panache-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "6ed3203c2f69b1d84b4482375eca6b5eeadbf871", + "tarball": "http://registry.npmjs.org/panache/-/panache-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "cd7b553257309b7ac7047b2de026dd1061604afd", + "tarball": "http://registry.npmjs.org/panache/-/panache-0.2.1.tgz" + } + }, + "keywords": [ + "chat", + "group", + "realtime", + "websocket", + "social", + "app" + ], + "url": "http://registry.npmjs.org/panache/" + }, + "panda": { + "name": "panda", + "dist-tags": { + "latest": "0.1.22" + }, + "maintainers": [ + { + "name": "pandastream", + "email": "info@pandastream.com" + } + ], + "time": { + "modified": "2011-09-28T11:48:59.913Z", + "created": "2011-09-26T16:51:59.411Z", + "0.1.0": "2011-09-26T16:52:00.628Z", + "0.1.22": "2011-09-28T11:48:59.913Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/panda/0.1.0", + "0.1.22": "http://registry.npmjs.org/panda/0.1.22" + }, + "dist": { + "0.1.0": { + "shasum": "3a67d8c54300f9e6a5fa290651b896cf4aad665a", + "tarball": "http://registry.npmjs.org/panda/-/panda-0.1.0.tgz" + }, + "0.1.22": { + "shasum": "e8faf5b74e535c9211e292329fba52029bf1c0b5", + "tarball": "http://registry.npmjs.org/panda/-/panda-0.1.22.tgz" + } + }, + "url": "http://registry.npmjs.org/panda/" + }, + "pandoc": { + "name": "pandoc", + "description": "A wrapper around the pandoc tool.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "sbisbee", + "email": "sam@sbisbee.com" + } + ], + "time": { + "modified": "2011-11-02T23:43:34.153Z", + "created": "2011-11-02T23:43:33.584Z", + "0.1.0": "2011-11-02T23:43:34.153Z" + }, + "author": { + "name": "Sam Bisbee", + "email": "sam@sbisbee.com", + "url": "http://www.sbisbee.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/sbisbee/node-pandoc.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/pandoc/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "7cec0b2ef23585ac4d9d8e031e913db1f878558e", + "tarball": "http://registry.npmjs.org/pandoc/-/pandoc-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/pandoc/" + }, + "panic": { + "name": "panic", + "description": "Postmortem debugging facility", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "dap", + "email": "dap@cs.brown.edu" + } + ], + "time": { + "modified": "2011-09-13T19:42:16.507Z", + "created": "2011-09-13T17:42:15.232Z", + "0.0.1": "2011-09-13T17:42:15.715Z", + "0.1.0": "2011-09-13T18:38:51.853Z", + "0.1.1": "2011-09-13T19:42:16.507Z" + }, + "author": { + "name": "Joyent", + "url": "joyent.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/joyent/node-panic.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/panic/0.0.1", + "0.1.0": "http://registry.npmjs.org/panic/0.1.0", + "0.1.1": "http://registry.npmjs.org/panic/0.1.1" + }, + "dist": { + "0.0.1": { + "shasum": "9673181131417f0016a9ac7893d1deb803e15d4b", + "tarball": "http://registry.npmjs.org/panic/-/panic-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "34c2397320dfa48954cc98543c8eee50aca60476", + "tarball": "http://registry.npmjs.org/panic/-/panic-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "a527b044429728aa73b34ceb817e897405dd40d8", + "tarball": "http://registry.npmjs.org/panic/-/panic-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/panic/" + }, + "PanPG": { + "name": "PanPG", + "description": "JavaScript PEG parser generator.", + "dist-tags": { + "latest": "0.0.9" + }, + "maintainers": [ + { + "name": "inimino", + "email": "inimino@inimino.org" + } + ], + "repository": "http://boshi.inimino.org/3box/PanPG/", + "versions": { + "0.0.6": "http://registry.npmjs.org/PanPG/0.0.6", + "0.0.7": "http://registry.npmjs.org/PanPG/0.0.7", + "0.0.8": "http://registry.npmjs.org/PanPG/0.0.8", + "0.0.9": "http://registry.npmjs.org/PanPG/0.0.9" + }, + "dist": { + "0.0.6": { + "tarball": "http://packages:5984/PanPG/-/PanPG-0.0.6.tgz" + }, + "0.0.7": { + "tarball": "http://packages:5984/PanPG/-/PanPG-0.0.7.tgz" + }, + "0.0.8": { + "tarball": "http://packages:5984/PanPG/-/PanPG-0.0.8.tgz" + }, + "0.0.9": { + "tarball": "http://packages:5984/PanPG/-/PanPG-0.0.9.tgz" + } + }, + "url": "http://registry.npmjs.org/PanPG/" + }, + "pantry": { + "name": "pantry", + "description": "A JSON/XML resource caching library based on Request", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "mred9", + "email": "ed@degroot.ca" + } + ], + "time": { + "modified": "2011-10-03T13:45:34.725Z", + "created": "2011-07-18T21:53:45.044Z", + "0.0.1": "2011-07-18T21:53:45.255Z", + "0.0.2": "2011-07-28T19:23:02.058Z", + "0.0.3": "2011-08-03T20:55:18.155Z", + "0.1.0": "2011-08-10T17:13:59.629Z", + "0.1.1": "2011-08-18T18:56:51.098Z", + "0.1.3": "2011-09-08T13:41:13.352Z", + "0.2.0beta": "2011-09-14T13:52:44.255Z", + "0.2.0beta2": "2011-09-15T15:23:30.572Z", + "0.2.0": "2011-10-03T13:45:34.725Z" + }, + "author": { + "name": "Edward de Groot", + "email": "edegroot@postmedia.com", + "url": "http://mred9.wordpress.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/postmedia/pantry.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/pantry/0.0.1", + "0.0.2": "http://registry.npmjs.org/pantry/0.0.2", + "0.0.3": "http://registry.npmjs.org/pantry/0.0.3", + "0.1.0": "http://registry.npmjs.org/pantry/0.1.0", + "0.1.1": "http://registry.npmjs.org/pantry/0.1.1", + "0.1.3": "http://registry.npmjs.org/pantry/0.1.3", + "0.2.0beta": "http://registry.npmjs.org/pantry/0.2.0beta", + "0.2.0beta2": "http://registry.npmjs.org/pantry/0.2.0beta2", + "0.2.0": "http://registry.npmjs.org/pantry/0.2.0" + }, + "dist": { + "0.0.1": { + "shasum": "26728ef7a89dfa3992bf9444e32fbcf5ab532091", + "tarball": "http://registry.npmjs.org/pantry/-/pantry-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "7ad0c17158c57b28e3bbf90dd240d428d7ea170e", + "tarball": "http://registry.npmjs.org/pantry/-/pantry-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "2e2845189cdf35a494ab2686042fa76f7cb7f9b2", + "tarball": "http://registry.npmjs.org/pantry/-/pantry-0.0.3.tgz" + }, + "0.1.0": { + "shasum": "f35bdf665d3968a172b5cdc7c42963bc3d3ea49c", + "tarball": "http://registry.npmjs.org/pantry/-/pantry-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "6ea8a2bc34158a49ad389516381d279a2520db76", + "tarball": "http://registry.npmjs.org/pantry/-/pantry-0.1.1.tgz" + }, + "0.1.3": { + "shasum": "103cc4c071f4441505ef95582682d57259f63119", + "tarball": "http://registry.npmjs.org/pantry/-/pantry-0.1.3.tgz" + }, + "0.2.0beta": { + "shasum": "a7c896a391e2294f98cfd043b2db427ab5fadf54", + "tarball": "http://registry.npmjs.org/pantry/-/pantry-0.2.0beta.tgz" + }, + "0.2.0beta2": { + "shasum": "223a1eb7abf211c3615d49794febf8e9667cef6c", + "tarball": "http://registry.npmjs.org/pantry/-/pantry-0.2.0beta2.tgz" + }, + "0.2.0": { + "shasum": "6dfdac780323e37f1094ac144ecae8177712f040", + "tarball": "http://registry.npmjs.org/pantry/-/pantry-0.2.0.tgz" + } + }, + "keywords": [ + "coffeescript", + "request", + "cache", + "json", + "xml" + ], + "url": "http://registry.npmjs.org/pantry/" + }, + "paper-keys": { + "name": "paper-keys", + "description": "(keypair) --> (one-page SVG with QR codes)", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "andrewschaaf", + "email": "andrew@andrewschaaf.com" + } + ], + "time": { + "modified": "2011-02-07T17:26:15.557Z", + "created": "2011-02-07T17:26:15.411Z", + "0.0.1": "2011-02-07T17:26:15.557Z" + }, + "author": { + "name": "Andrew Schaaf", + "email": "andrew@andrewschaaf.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/andrewschaaf/paper-keys.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/paper-keys/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "025c42baab75ab9605a396150032cf97a6ecaced", + "tarball": "http://registry.npmjs.org/paper-keys/-/paper-keys-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/paper-keys/" + }, + "paperboy": { + "name": "paperboy", + "description": "A node.js module for delivering static files.", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "felixge", + "email": "felix@debuggable.com" + } + ], + "author": { + "name": "Felix Geisendörfer", + "email": "felix@debuggable.com" + }, + "time": { + "modified": "2011-12-09T09:44:49.467Z", + "created": "2011-01-24T11:00:21.225Z", + "0.0.1": "2011-01-24T11:00:21.225Z", + "0.0.2": "2011-01-24T11:00:21.225Z", + "0.0.3": "2011-12-09T09:44:49.467Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/paperboy/0.0.1", + "0.0.2": "http://registry.npmjs.org/paperboy/0.0.2", + "0.0.3": "http://registry.npmjs.org/paperboy/0.0.3" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/paperboy/-/paperboy-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "d5373b09163e84fe900b74cf25b57443832e893f", + "tarball": "http://registry.npmjs.org/paperboy/-/paperboy-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "c60489770c2b5eb2d4a447ff135e3d48a18c5dd5", + "tarball": "http://registry.npmjs.org/paperboy/-/paperboy-0.0.3.tgz" + } + }, + "keywords": [ + "web", + "server" + ], + "url": "http://registry.npmjs.org/paperboy/" + }, + "paperserve": { + "name": "paperserve", + "description": "Quick and dirty web server from your working directory using node-paperboy", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "StanAngeloff", + "email": "stanimir@angeloff.name" + } + ], + "author": { + "name": "Stan Angeloff", + "email": "stanimir@angeloff.name" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/paperserve/0.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/paperserve/-/paperserve-0.0.1.tgz" + } + }, + "keywords": [ + "web", + "server" + ], + "url": "http://registry.npmjs.org/paperserve/" + }, + "parall": { + "name": "parall", + "description": "Node.js parallelism made easier.", + "dist-tags": { + "latest": "0.5.1" + }, + "maintainers": [ + { + "name": "jfd", + "email": "dahlberg.johan@gmail.com" + } + ], + "time": { + "modified": "2011-04-18T16:25:56.271Z", + "created": "2011-04-08T12:39:17.612Z", + "0.5.0": "2011-04-08T12:39:18.386Z", + "0.5.1": "2011-04-18T16:25:56.271Z" + }, + "author": { + "name": "Johan Dahlberg", + "email": "dahlberg.johan@gmail.com", + "url": "http://jfd.github.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jfd/node-parall.git" + }, + "versions": { + "0.5.0": "http://registry.npmjs.org/parall/0.5.0", + "0.5.1": "http://registry.npmjs.org/parall/0.5.1" + }, + "dist": { + "0.5.0": { + "shasum": "4bb0cf0aa159e6545055c8a4bde07f221d2efefe", + "tarball": "http://registry.npmjs.org/parall/-/parall-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "709cc6d88faf3f9c461747a2d07998fa97c9a22c", + "tarball": "http://registry.npmjs.org/parall/-/parall-0.5.1.tgz" + } + }, + "keywords": [ + "networking", + "messaging", + "actors", + "multicore" + ], + "url": "http://registry.npmjs.org/parall/" + }, + "parallel": { + "name": "parallel", + "description": "Create tasks in node.js that run in parallel, or sequences that run tasks one after another.", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "Tim-Smart", + "email": "tim@fostle.com" + } + ], + "author": { + "name": "Tim Smart" + }, + "repository": { + "type": "git", + "url": "git://github.com/Tim-Smart/node-parallel.git" + }, + "time": { + "modified": "2011-03-31T10:43:24.970Z", + "created": "2011-03-31T10:43:24.970Z", + "0.1.0": "2011-03-31T10:43:24.970Z", + "0.1.2": "2011-03-31T10:43:24.970Z", + "0.1.3": "2011-03-31T10:43:24.970Z", + "0.2.0": "2011-03-31T10:43:24.970Z", + "0.2.1": "2011-03-31T10:43:24.970Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/parallel/0.1.0", + "0.1.2": "http://registry.npmjs.org/parallel/0.1.2", + "0.1.3": "http://registry.npmjs.org/parallel/0.1.3", + "0.2.0": "http://registry.npmjs.org/parallel/0.2.0", + "0.2.1": "http://registry.npmjs.org/parallel/0.2.1" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/parallel/-/parallel-0.1.0.tgz" + }, + "0.1.2": { + "tarball": "http://packages:5984/parallel/-/parallel-0.1.2.tgz" + }, + "0.1.3": { + "tarball": "http://packages:5984/parallel/-/parallel-0.1.3.tgz" + }, + "0.2.0": { + "tarball": "http://packages:5984/parallel/-/parallel-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "17398a4e3f42e4a1bf9c078cd17e11101a76c95e", + "tarball": "http://registry.npmjs.org/parallel/-/parallel-0.2.1.tgz" + } + }, + "url": "http://registry.npmjs.org/parallel/" + }, + "paramon": { + "name": "paramon", + "description": "A tool for parsing command line arguments", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "jussi-kalliokoski", + "email": "jussi.kalliokoski@gmail.com" + } + ], + "time": { + "modified": "2011-09-13T22:54:52.569Z", + "created": "2011-09-13T22:54:51.767Z", + "0.1.0": "2011-09-13T22:54:52.569Z" + }, + "author": { + "name": "Jussi Kalliokoski" + }, + "repository": { + "type": "git", + "url": "git://github.com/jussi-kalliokoski/paramon.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/paramon/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "a3486c5976bfbb696b0397dee5bc8930c0127ead", + "tarball": "http://registry.npmjs.org/paramon/-/paramon-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/paramon/" + }, + "parannus": { + "name": "parannus", + "description": "Collaborative web framework", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "nairboon", + "email": "remo.hertig@bluewin.ch" + } + ], + "time": { + "modified": "2011-08-20T15:58:51.159Z", + "created": "2011-07-13T12:47:47.864Z", + "0.0.1": "2011-07-13T12:47:48.309Z", + "0.0.2": "2011-07-13T12:51:39.954Z", + "0.0.3": "2011-08-20T15:58:51.159Z" + }, + "author": { + "name": "Nairboon", + "email": "nairboon@rbose.org" + }, + "repository": { + "type": "git", + "url": "git://gitorious.org/parannus/trunk.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/parannus/0.0.1", + "0.0.2": "http://registry.npmjs.org/parannus/0.0.2", + "0.0.3": "http://registry.npmjs.org/parannus/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "032dc892cc6288d3ee24486706c6a907d0003592", + "tarball": "http://registry.npmjs.org/parannus/-/parannus-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "fc61f70d9f6c46edc2d8e78625b1e9fea71eaf35", + "tarball": "http://registry.npmjs.org/parannus/-/parannus-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "dbb6f0cfbc5681a4d0b1729d0b89a0090a689cff", + "tarball": "http://registry.npmjs.org/parannus/-/parannus-0.0.3.tgz" + } + }, + "keywords": [ + "collaborative", + "framework" + ], + "url": "http://registry.npmjs.org/parannus/" + }, + "parasite": { + "name": "parasite", + "description": "Parallel Http Clients", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "Vekz", + "email": "kevzettler@gmail.com" + } + ], + "author": { + "name": "Kev Zettler", + "email": "kevzettler@gmail.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/kevzettler/node-parasite.git" + }, + "time": { + "modified": "2011-01-18T20:13:04.233Z", + "created": "2011-01-18T19:42:41.745Z", + "0.0.1": "2011-01-18T19:42:41.745Z", + "0.0.2": "2011-01-18T19:42:41.745Z", + "0.0.3": "2011-01-18T19:42:41.745Z", + "0.0.4": "2011-01-18T19:42:41.745Z", + "0.0.5": "2011-01-18T20:03:10.197Z", + "0.0.6": "2011-01-18T20:13:04.233Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/parasite/0.0.1", + "0.0.2": "http://registry.npmjs.org/parasite/0.0.2", + "0.0.3": "http://registry.npmjs.org/parasite/0.0.3", + "0.0.4": "http://registry.npmjs.org/parasite/0.0.4", + "0.0.5": "http://registry.npmjs.org/parasite/0.0.5", + "0.0.6": "http://registry.npmjs.org/parasite/0.0.6" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/parasite/-/parasite@0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/parasite/-/parasite@0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/parasite/-/parasite@0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://registry.npmjs.org/parasite/-/parasite-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://registry.npmjs.org/parasite/-/parasite-0.0.5.tgz" + }, + "0.0.6": { + "tarball": "http://registry.npmjs.org/parasite/-/parasite-0.0.6.tgz" + } + }, + "url": "http://registry.npmjs.org/parasite/" + }, + "parrot": { + "name": "parrot", + "description": "A lightning fast and lightweight templating engine for Node.js", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "ollym", + "email": "oliver.morgan@kohark.com" + } + ], + "time": { + "modified": "2011-09-10T02:49:03.870Z", + "created": "2011-09-10T02:49:02.347Z", + "0.3.0": "2011-09-10T02:49:03.870Z" + }, + "author": { + "name": "ollym" + }, + "repository": { + "type": "git", + "url": "git://github.com/ollym/parrot.git" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/parrot/0.3.0" + }, + "dist": { + "0.3.0": { + "shasum": "e1079ada273e3724579e9035ab3507a455ab0e41", + "tarball": "http://registry.npmjs.org/parrot/-/parrot-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/parrot/" + }, + "parse-table": { + "name": "parse-table", + "description": "", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-10-29T12:38:13.946Z", + "created": "2011-10-29T12:38:03.061Z", + "0.0.0": "2011-10-29T12:38:13.946Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com", + "url": "http://bit.ly/dominictarr" + }, + "repository": { + "type": "git", + "url": "git://github.com/dominictarr/parse-table.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/parse-table/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "b29e01474634f41d5e4ae4c21444b472ab22420d", + "tarball": "http://registry.npmjs.org/parse-table/-/parse-table-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/parse-table/" + }, + "parseopt": { + "name": "parseopt", + "description": "Advanced command line option parser.", + "dist-tags": { + "latest": "1.0.0-2" + }, + "maintainers": [ + { + "name": "panzi", + "email": "grosser.meister.morti@gmx.net" + } + ], + "author": { + "name": "Mathias Panzenböck", + "email": "grosser.meister.morti@gmx.net" + }, + "repository": { + "type": "hg", + "url": "http://bitbucket.org/panzi/javascript-utils", + "web": "http://bitbucket.org/panzi/javascript-utils" + }, + "time": { + "modified": "2011-05-02T15:44:30.779Z", + "created": "2011-05-02T15:44:30.779Z", + "1.0.0": "2011-05-02T15:44:30.779Z", + "1.0.0-1": "2011-05-02T15:44:30.779Z", + "1.0.0-2": "2011-05-02T15:44:30.779Z" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/parseopt/1.0.0", + "1.0.0-1": "http://registry.npmjs.org/parseopt/1.0.0-1", + "1.0.0-2": "http://registry.npmjs.org/parseopt/1.0.0-2" + }, + "dist": { + "1.0.0": { + "tarball": "http://packages:5984/parseopt/-/parseopt-1.0.0.tgz" + }, + "1.0.0-1": { + "tarball": "http://packages:5984/parseopt/-/parseopt-1.0.0-1.tgz" + }, + "1.0.0-2": { + "shasum": "420f728d880d3486426d69fbcce47e50411bf385", + "tarball": "http://registry.npmjs.org/parseopt/-/parseopt-1.0.0-2.tgz" + } + }, + "keywords": [ + "option", + "parser", + "command-line", + "cli", + "terminal", + "getopt", + "opts", + "args" + ], + "url": "http://registry.npmjs.org/parseopt/" + }, + "parser": { + "name": "parser", + "description": "A configurable parser to parse whatever you want", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "floby", + "email": "florent.jaby@gmail.com" + } + ], + "time": { + "modified": "2011-07-01T09:53:45.608Z", + "created": "2011-04-15T20:36:20.667Z", + "0.1.0": "2011-04-15T20:36:21.238Z", + "0.1.1": "2011-07-01T09:53:45.608Z" + }, + "author": { + "name": "Florent Jaby", + "email": "florent.jaby@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/floby/node-parser.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/parser/0.1.0", + "0.1.1": "http://registry.npmjs.org/parser/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "84cb09bac75c2f4d4fc5ded4a7b7422f5195db56", + "tarball": "http://registry.npmjs.org/parser/-/parser-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "14cc8eec68da13ecacef6eec51883ca017735758", + "tarball": "http://registry.npmjs.org/parser/-/parser-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/parser/" + }, + "parser_email": { + "name": "parser_email", + "description": "Simple multi part email parser", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "jrgns", + "email": "jrgns@jrgns.net" + } + ], + "author": { + "name": "J Jrgns du Toit", + "email": "jrgns@jadeit.co.za" + }, + "repository": { + "type": "git", + "url": "git://github.com/jrgns/parser_email.git" + }, + "time": { + "modified": "2011-09-08T16:14:33.135Z", + "created": "2011-08-25T16:35:41.210Z", + "0.1.0": "2011-08-25T16:35:41.210Z", + "0.1.1": "2011-08-25T16:35:41.210Z", + "0.2.1": "2011-09-02T06:51:35.300Z", + "0.2.2": "2011-09-08T16:14:33.135Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/parser_email/0.1.0", + "0.1.1": "http://registry.npmjs.org/parser_email/0.1.1", + "0.2.1": "http://registry.npmjs.org/parser_email/0.2.1", + "0.2.2": "http://registry.npmjs.org/parser_email/0.2.2" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/parser_email/-/parser_email-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "581aaa38c454fa88caa589d8ac32b97891d90358", + "tarball": "http://registry.npmjs.org/parser_email/-/parser_email-0.1.1.tgz" + }, + "0.2.1": { + "shasum": "2b3149379a9b5816d25c5c1b7922e18adbdc38a5", + "tarball": "http://registry.npmjs.org/parser_email/-/parser_email-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "7a94e1a4edbf5b5973d52861b1b908022aef8575", + "tarball": "http://registry.npmjs.org/parser_email/-/parser_email-0.2.2.tgz" + } + }, + "url": "http://registry.npmjs.org/parser_email/" + }, + "parserproxy": { + "name": "parserproxy", + "description": "A JSON-over-HTTP proxy for node-feedparser and node-opmlparser", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "danmactough", + "email": "danmactough@gmail.com" + } + ], + "time": { + "modified": "2011-11-28T05:55:21.096Z", + "created": "2011-11-25T04:11:27.214Z", + "0.1.0": "2011-11-25T04:11:27.846Z", + "0.1.1": "2011-11-26T05:40:24.497Z", + "0.1.2": "2011-11-28T05:55:21.096Z" + }, + "author": { + "name": "Dan MacTough", + "email": "danmactough@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/danmactough/node-parserproxy.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/parserproxy/0.1.0", + "0.1.1": "http://registry.npmjs.org/parserproxy/0.1.1", + "0.1.2": "http://registry.npmjs.org/parserproxy/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "0ec5eb14c2770aeeb41fa5c896c0a79afe27cb52", + "tarball": "http://registry.npmjs.org/parserproxy/-/parserproxy-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "ce625a97192577c5959a496fb8117c2e2e98b6a7", + "tarball": "http://registry.npmjs.org/parserproxy/-/parserproxy-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "fe6db57b643a68628f3965d0a6999df43e8bc5ac", + "tarball": "http://registry.npmjs.org/parserproxy/-/parserproxy-0.1.2.tgz" + } + }, + "keywords": [ + "http", + "proxy", + "json", + "rss", + "feed", + "atom", + "rdf", + "opml", + "outline", + "xml", + "syndication" + ], + "url": "http://registry.npmjs.org/parserproxy/" + }, + "parseUri": { + "name": "parseUri", + "description": "node.js fork of parseUri. parseUri is a function which splits any well-formed URI into its parts, all of which are optional. Its combination of accuracy, flexibility, and brevity is unrivaled.", + "dist-tags": { + "latest": "1.2.2-1" + }, + "maintainers": [ + { + "name": "franzenzenhofer", + "email": "f.enzenhofer@gmail.com" + } + ], + "time": { + "modified": "2011-06-04T16:46:44.307Z", + "created": "2011-06-04T16:46:43.397Z", + "1.2.2-1": "2011-06-04T16:46:44.307Z" + }, + "author": { + "name": "Franz Enzenhofer", + "email": "f.enzenhofer@gmail.com" + }, + "versions": { + "1.2.2-1": "http://registry.npmjs.org/parseUri/1.2.2-1" + }, + "dist": { + "1.2.2-1": { + "shasum": "3a5cdb9a4102b631980d687dabe4436422471173", + "tarball": "http://registry.npmjs.org/parseUri/-/parseUri-1.2.2-1.tgz" + } + }, + "keywords": [ + "URI", + "URLS", + "parser", + "web", + "internet" + ], + "url": "http://registry.npmjs.org/parseUri/" + }, + "parsley": { + "name": "parsley", + "description": "pure javascript http parser", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-11-12T00:45:46.533Z", + "created": "2011-10-23T16:13:09.536Z", + "0.0.0": "2011-10-23T16:13:11.673Z", + "0.0.1": "2011-10-23T23:07:18.506Z", + "0.0.2": "2011-11-12T00:45:46.533Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-parsley.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/parsley/0.0.0", + "0.0.1": "http://registry.npmjs.org/parsley/0.0.1", + "0.0.2": "http://registry.npmjs.org/parsley/0.0.2" + }, + "dist": { + "0.0.0": { + "shasum": "6155bb29f2d2a31980347d0d9a407a6f9d44f42f", + "tarball": "http://registry.npmjs.org/parsley/-/parsley-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "364f359360b46cb047c8fa8436cca79dc5776554", + "tarball": "http://registry.npmjs.org/parsley/-/parsley-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "625c33b8561ee0622adf783cd198f455e4c64a87", + "tarball": "http://registry.npmjs.org/parsley/-/parsley-0.0.2.tgz" + } + }, + "keywords": [ + "http", + "parser" + ], + "url": "http://registry.npmjs.org/parsley/" + }, + "parstream": { + "name": "parstream", + "description": "Client for parstreams JSON interface", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "teemow", + "email": "teemow@gmail.com" + } + ], + "time": { + "modified": "2011-03-24T17:36:54.419Z", + "created": "2011-03-24T17:36:53.834Z", + "0.0.1": "2011-03-24T17:36:54.419Z" + }, + "author": { + "name": "Timo Derstappen", + "email": "teemow@gmail.com", + "url": "http://teemow.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/teemow/node-parstream.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/parstream/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "bc46bfca0ffad434355874f14890791609dd3ad9", + "tarball": "http://registry.npmjs.org/parstream/-/parstream-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/parstream/" + }, + "parted": { + "name": "parted", + "description": "A streaming body parser", + "dist-tags": { + "latest": "0.0.9" + }, + "maintainers": [ + { + "name": "chjj", + "email": "chjjeffrey@gmail.com" + } + ], + "time": { + "modified": "2011-12-08T18:15:47.933Z", + "created": "2011-08-29T19:11:23.029Z", + "0.0.1": "2011-12-08T18:15:47.933Z", + "0.0.2": "2011-12-08T18:15:47.933Z", + "0.0.3": "2011-12-08T18:15:47.933Z", + "0.0.4": "2011-12-08T18:15:47.933Z", + "0.0.5": "2011-12-08T18:15:47.933Z", + "0.0.6": "2011-12-08T18:15:47.933Z", + "0.0.7": "2011-10-29T08:21:14.603Z", + "0.0.8": "2011-11-10T21:16:06.015Z", + "0.0.9": "2011-12-08T18:15:47.933Z" + }, + "author": { + "name": "Christopher Jeffrey" + }, + "repository": { + "type": "git", + "url": "git://github.com/chjj/parted.git" + }, + "users": { + "nathan": true + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/parted/0.0.1", + "0.0.2": "http://registry.npmjs.org/parted/0.0.2", + "0.0.3": "http://registry.npmjs.org/parted/0.0.3", + "0.0.4": "http://registry.npmjs.org/parted/0.0.4", + "0.0.5": "http://registry.npmjs.org/parted/0.0.5", + "0.0.6": "http://registry.npmjs.org/parted/0.0.6", + "0.0.7": "http://registry.npmjs.org/parted/0.0.7", + "0.0.8": "http://registry.npmjs.org/parted/0.0.8", + "0.0.9": "http://registry.npmjs.org/parted/0.0.9" + }, + "dist": { + "0.0.1": { + "shasum": "dbde4f61d054465d38c6fd3c9afac5735cd4f36d", + "tarball": "http://registry.npmjs.org/parted/-/parted-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "8360480a768165eef9d871a78f2d95f1e71e7935", + "tarball": "http://registry.npmjs.org/parted/-/parted-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "2027cba0ee8646a7507da5642ce6e03aab287d9f", + "tarball": "http://registry.npmjs.org/parted/-/parted-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "ef7ab069bfbded04cebe1310c06bb84194c47259", + "tarball": "http://registry.npmjs.org/parted/-/parted-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "55d40775749aa05a549572b83839358bfbc6a8bc", + "tarball": "http://registry.npmjs.org/parted/-/parted-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "2a0c16f99e909fcb299977174bb327ceb89425a3", + "tarball": "http://registry.npmjs.org/parted/-/parted-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "b7d81afd15b8613432c8ac49cb0227b8c51546bd", + "tarball": "http://registry.npmjs.org/parted/-/parted-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "cbb4ae46646c939a7d44fb91fd520adf0106ca33", + "tarball": "http://registry.npmjs.org/parted/-/parted-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "0953ef45c2b947aa0540f34e5d6afa5be0328e91", + "tarball": "http://registry.npmjs.org/parted/-/parted-0.0.9.tgz" + } + }, + "keywords": [ + "multipart", + "parser", + "http", + "express", + "middleware" + ], + "url": "http://registry.npmjs.org/parted/" + }, + "partial": { + "name": "partial", + "description": "partial function application - transform f into its partial by partial(f)", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "rook2pawn", + "email": "rook2pawn@gmail.com" + } + ], + "time": { + "modified": "2011-07-25T09:31:30.389Z", + "created": "2011-07-21T04:27:47.741Z", + "0.0.1": "2011-07-21T04:27:48.705Z", + "0.0.2": "2011-07-24T13:57:48.130Z", + "0.0.3": "2011-07-25T09:31:30.389Z" + }, + "author": { + "name": "David Wee", + "email": "rook2pawn@gmail.com", + "url": "http://rook2pawn.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/rook2pawn/node-partial.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/partial/0.0.1", + "0.0.2": "http://registry.npmjs.org/partial/0.0.2", + "0.0.3": "http://registry.npmjs.org/partial/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "059d481a8b123347794cc9fbc2a9a834072f8de6", + "tarball": "http://registry.npmjs.org/partial/-/partial-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "ba5e840f5d5e35df509aea927b3ea7de48bb8dff", + "tarball": "http://registry.npmjs.org/partial/-/partial-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "2d107bed98fcea8d28d7665495b39e61dfcd18c6", + "tarball": "http://registry.npmjs.org/partial/-/partial-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/partial/" + }, + "partition.io": { + "name": "partition.io", + "description": "P2P Distributed Workload for NodeJS", + "dist-tags": { + "latest": "0.0.2" + }, + "readme": "\n# partition.io\n\nPartition.IO is a P2P Distributed workload for NodeJS. Partition.IO allows \nyou to create a homogeneous system that is shared-nothing and partition \ntolerant.\n\nTo install just use npm\n\n $ npm install partition.io \n\n## API\n\nThe api has 3 main components. The Servent, the Worker, and the Job. \nThe servent acts as the communication layer for the P2P system, the worker is\na template that defines work to be done. The job is a representation of work\nbeing done by a worker.\n\n### Servent\n\nGetting going with a distributed system using Partition.IO is easy. \n\n```javascript\n var Servent = require('partition.io').Servent,\n servent = new Servent(),\n port = 8888;\n \n servent.on('listening', function(){\n /**\n * If we aren't on our default port then we weren't\n * the first node, so connect to that one\n */\n if (servent.address().port !== port){\n servent.connect(port);\n }\n });\n\n /**\n * First bind to our default port, if we can't then use\n * an ephemeral port instead\n */\n servent.on('error', function(err){\n if(err.code === 'EADDRINUSE'){\n servent.listen(0);\n }\n });\n servent.listen(port);\n```\n\n### Worker\n\nCreating a worker is also easy, just call `servent.createWorker` and\nbe sure to set the last parameter taken as callback, this is how data gets\nback to Partition.IO.\n\n```javascript\n /**\n * Create our worker\n * params will be passed in directly from your function definition\n * callback set as the last param\n */\n var worker = servent.createWorker('random', function(max, callback){\n callback(null, Math.floor(Math.random()*max));\n });\n\n /**\n * This will run the worker (as a job)\n */\n worker.distribute(function(job){\n var numbers = [];\n\n /**\n * If all our node don't respond in 5000ms, just get on with what data we\n * have (useful if accuracy doesn't need to be 100%)\n */\n job.setTTL(5000);\n \n /**\n * Data is called once for each node that responds\n */\n job.on('data', function(data){\n numbers.push(data);\n });\n \n /**\n * Error is emitted if one of the callbacks calls back with error\n */\n job.on('error', console.error);\n\n //push the random number on to the data\n job.on('end', function(){\n console.log(numbers);\n });\n\n //returns a list of random numbers between 0 and 1000\n job.run(1000);\n });\n```\n\n\n## TODO\n\nBefore I add more features, first I need to write some tests.\n\n## Contributing\n\nIf you would like to contribute, just drop me a line or a pull request.\n\n## License \n\n(The MIT License)\n\nCopyright (c) 2011 Russell Bradberry <rbradberry@gmail.com>\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "maintainers": [ + { + "name": "devdazed", + "email": "rbradberry@gmail.com" + } + ], + "time": { + "modified": "2011-11-09T23:48:39.030Z", + "created": "2011-11-09T22:44:19.678Z", + "0.0.1": "2011-11-09T22:44:20.373Z", + "0.0.2": "2011-11-09T23:33:47.260Z" + }, + "author": { + "name": "Russell Bradberry", + "email": "rbradberry@gmail.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:devdazed/partition.io.git" + }, + "users": { + "devdazed": true + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/partition.io/0.0.1", + "0.0.2": "http://registry.npmjs.org/partition.io/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "2c32162e9921b9c5fdbda12f6d12abb7e30fac34", + "tarball": "http://registry.npmjs.org/partition.io/-/partition.io-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "60a317b42a1f31d26de95956d80db376561c3228", + "tarball": "http://registry.npmjs.org/partition.io/-/partition.io-0.0.2.tgz" + } + }, + "keywords": [ + "partition", + "distributed", + "p2p" + ], + "url": "http://registry.npmjs.org/partition.io/" + }, + "party": { + "name": "party", + "description": "Multipart parser for node", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "time": { + "modified": "2011-07-08T22:00:42.863Z", + "created": "2011-07-08T18:37:22.269Z", + "0.0.1": "2011-07-08T18:37:23.173Z", + "0.0.2": "2011-07-08T22:00:42.863Z" + }, + "author": { + "name": "TJ Holowaychuk", + "email": "tj@learnboost.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/party/0.0.1", + "0.0.2": "http://registry.npmjs.org/party/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "7b4d825bc41373000cb3aa3fc966b16dfa502512", + "tarball": "http://registry.npmjs.org/party/-/party-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "654b591a6daa565ab550dba45229061b6f9a8f4c", + "tarball": "http://registry.npmjs.org/party/-/party-0.0.2.tgz" + } + }, + "keywords": [ + "multipart", + "parser" + ], + "url": "http://registry.npmjs.org/party/" + }, + "pashua": { + "name": "pashua", + "description": "An interface to the Pashua dialog creator", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "hans", + "email": "hans.huebner@gmail.com" + } + ], + "time": { + "modified": "2011-05-12T05:32:49.115Z", + "created": "2011-05-12T05:32:48.656Z", + "0.1.0": "2011-05-12T05:32:49.115Z" + }, + "author": { + "name": "Hans Huebner", + "email": "hans.huebner@gmail.com", + "url": "http://netzhansa.blogspot.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/hanshuebner/node-pashua.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/pashua/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "edbb7092db3e3a6972a43137ff6be02aa39699a7", + "tarball": "http://registry.npmjs.org/pashua/-/pashua-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/pashua/" + }, + "pass": { + "name": "pass", + "description": "Apache htpasswd password generator/validator", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "andris", + "email": "andris@node.ee" + } + ], + "time": { + "modified": "2011-02-09T10:16:23.062Z", + "created": "2011-02-09T10:16:22.637Z", + "0.1.0": "2011-02-09T10:16:23.062Z" + }, + "author": { + "name": "Andris Reinman" + }, + "repository": { + "type": "git", + "url": "http://github.com/andris9/pass" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/pass/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "bf8cf5854f4aa875b0e0252dd5e5bc123ffd5e4e", + "tarball": "http://registry.npmjs.org/pass/-/pass-0.1.0.tgz" + } + }, + "keywords": [ + "apache", + "password", + "passwd", + "htpasswd" + ], + "url": "http://registry.npmjs.org/pass/" + }, + "passgen": { + "name": "passgen", + "description": "Password generator", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "sasa.djolic", + "email": "sasa.djolic@sdaworld.com" + } + ], + "time": { + "modified": "2011-12-06T03:15:59.945Z", + "created": "2011-11-12T09:16:04.007Z", + "1.0.0": "2011-11-12T09:16:37.912Z", + "1.0.1": "2011-12-06T03:15:59.945Z" + }, + "author": { + "name": "Sasa Djolic", + "email": "sasa.djolic@sdaworld.com" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/passgen/1.0.0", + "1.0.1": "http://registry.npmjs.org/passgen/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "94ba8053ce4735ad6ed907a0da795ec41eb5771e", + "tarball": "http://registry.npmjs.org/passgen/-/passgen-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "e66190dda8238696d2a64c8d359f125c85f66c77", + "tarball": "http://registry.npmjs.org/passgen/-/passgen-1.0.1.tgz" + } + }, + "keywords": [ + "password", + "generator", + "pass", + "random" + ], + "url": "http://registry.npmjs.org/passgen/" + }, + "PassiveRedis": { + "name": "PassiveRedis", + "description": "Node ORM for Redis", + "dist-tags": { + "latest": "0.0.5" + }, + "readme": "# PassiveRedis - A Node ORM for Redis\n\nPassiveRedis is an easy way to logically access data stored in a Redis\ndatastore. PassiveRedis is based off of the Ruby ORM ActiveRecord,\nthough it does not impliment all of its features (yet).\n\n# Making Models With PassiveRedis\n\nHere is a simple example for creating a User model with PassiveRedis.\nThis code should be placed in a directory containing all of the other\nmodels and the filename should correspond with the class name.\n\n```coffeescript\nPassiveRedis = (require 'PassiveRedis').PassiveRedis\n\nclass User extends PassiveRedis\n @string_id: 'username'\n\n @schema:\n username: 'String'\n email: 'String'\n password: 'String'\n\n @relationships:\n hasMany:\n mailboxes: {}\n messages: {}\n\nexports.User = User\n```\n\n# Relationships (hasMany and hasOne)\n\nPassiveRedis supports hasMany and hasOne relationships that are defined\nwithin the Model class definition. To setup relationships simply create a `relationships`\nproperty on the model and define the hasMany and hasOne keys.\n\nUsage:\n\n```coffeescript\nMailbox.find 2, (err, mailbox) ->\n if !err\n # Assumes a hasOne relationship between Mailbox and User\n mailbox.user (user) ->\n console.log 'Mailbox\\'s user', user\n\n mailbox.messages (messages) ->\n console.log 'found', messages.length, 'messages'\n```\n\n\n# Getters and Setters\n\nWhen schema properties are accessed on the model, PassiveRedis\nimpliments getters and setters that check for getProperty style methods\non the model. If \"username\" was defined in the model schema, and a\ngetUsername method was defined on the model, an attempt to access the\nusername property would call the getUsername method.\n\n\n# License Information\n\nCopyright (c) 2011 Judson Stephenson\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n", + "maintainers": [ + { + "name": "jud", + "email": "Jud.Stephenson@gmail.com" + } + ], + "time": { + "modified": "2011-11-21T02:17:51.648Z", + "created": "2011-11-20T05:46:26.619Z", + "0.0.2": "2011-11-20T05:46:27.094Z", + "0.0.3": "2011-11-20T06:22:37.998Z", + "0.0.4": "2011-11-21T02:03:39.247Z", + "0.0.5": "2011-11-21T02:17:51.648Z" + }, + "author": { + "name": "Jud Stephenson", + "email": "Jud@Svpply.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Jud/PassiveRedis.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/PassiveRedis/0.0.2", + "0.0.3": "http://registry.npmjs.org/PassiveRedis/0.0.3", + "0.0.4": "http://registry.npmjs.org/PassiveRedis/0.0.4", + "0.0.5": "http://registry.npmjs.org/PassiveRedis/0.0.5" + }, + "dist": { + "0.0.2": { + "shasum": "b1e18cb9f4efcec28ead877878c60b3f5be4e1cf", + "tarball": "http://registry.npmjs.org/PassiveRedis/-/PassiveRedis-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "920a73e750eed21a82383cecbffbc145ef07d35a", + "tarball": "http://registry.npmjs.org/PassiveRedis/-/PassiveRedis-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "b207079c793eea3799168a38547e5e6461058301", + "tarball": "http://registry.npmjs.org/PassiveRedis/-/PassiveRedis-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "b5133b5772222399aad430aa49e1287ddc5ca8bf", + "tarball": "http://registry.npmjs.org/PassiveRedis/-/PassiveRedis-0.0.5.tgz" + } + }, + "keywords": [ + "ORM", + "Redis", + "Redis ORM", + "Passive", + "ActiveRecord" + ], + "url": "http://registry.npmjs.org/PassiveRedis/" + }, + "passport": { + "name": "passport", + "description": "Authentication framework for Connect and Express.", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "jaredhanson", + "email": "jaredhanson@gmail.com" + } + ], + "time": { + "modified": "2011-10-30T17:23:31.130Z", + "created": "2011-10-08T22:45:10.839Z", + "0.1.0": "2011-10-08T22:45:12.573Z", + "0.1.1": "2011-10-23T22:05:01.178Z", + "0.1.2": "2011-10-26T03:50:13.900Z", + "0.1.3": "2011-10-30T17:23:31.130Z" + }, + "author": { + "name": "Jared Hanson", + "email": "jaredhanson@gmail.com", + "url": "http://www.jaredhanson.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jaredhanson/passport.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/passport/0.1.0", + "0.1.1": "http://registry.npmjs.org/passport/0.1.1", + "0.1.2": "http://registry.npmjs.org/passport/0.1.2", + "0.1.3": "http://registry.npmjs.org/passport/0.1.3" + }, + "dist": { + "0.1.0": { + "shasum": "df29f14d342c4f42f1f42d9329be97b61a04175d", + "tarball": "http://registry.npmjs.org/passport/-/passport-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "293ff63dc2be041a763b77ec027398b77aa357f5", + "tarball": "http://registry.npmjs.org/passport/-/passport-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "2b658d95a92d82829ab750987df36e102d130544", + "tarball": "http://registry.npmjs.org/passport/-/passport-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "a080da6c44f1f37d0d33144f2ab16c79c00226de", + "tarball": "http://registry.npmjs.org/passport/-/passport-0.1.3.tgz" + } + }, + "keywords": [ + "express", + "connect", + "auth", + "authn", + "authentication" + ], + "url": "http://registry.npmjs.org/passport/" + }, + "passport-browserid": { + "name": "passport-browserid", + "description": "BrowserID authentication strategy for Passport.", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": null, + "maintainers": [ + { + "name": "jaredhanson", + "email": "jaredhanson@gmail.com" + } + ], + "time": { + "modified": "2011-11-25T21:51:13.820Z", + "created": "2011-11-25T21:51:13.231Z", + "0.1.0": "2011-11-25T21:51:13.820Z" + }, + "author": { + "name": "Jared Hanson", + "email": "jaredhanson@gmail.com", + "url": "http://www.jaredhanson.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jaredhanson/passport-browserid.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/passport-browserid/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "d5c7c6f7bc3384e597d113efdf1e9f8d1f37172a", + "tarball": "http://registry.npmjs.org/passport-browserid/-/passport-browserid-0.1.0.tgz" + } + }, + "keywords": [ + "passport", + "browserid", + "auth", + "authn", + "authentication", + "identity" + ], + "url": "http://registry.npmjs.org/passport-browserid/" + }, + "passport-digg": { + "name": "passport-digg", + "description": "Digg authentication strategy for Passport.", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": null, + "maintainers": [ + { + "name": "jaredhanson", + "email": "jaredhanson@gmail.com" + } + ], + "time": { + "modified": "2011-11-29T04:52:30.121Z", + "created": "2011-11-29T04:52:29.466Z", + "0.1.0": "2011-11-29T04:52:30.121Z" + }, + "author": { + "name": "Jared Hanson", + "email": "jaredhanson@gmail.com", + "url": "http://www.jaredhanson.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jaredhanson/passport-digg.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/passport-digg/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "9bc04de289f6ce9ad2c68de7e9c8b0eab63cdb19", + "tarball": "http://registry.npmjs.org/passport-digg/-/passport-digg-0.1.0.tgz" + } + }, + "keywords": [ + "passport", + "digg", + "auth", + "authn", + "authentication", + "identity" + ], + "url": "http://registry.npmjs.org/passport-digg/" + }, + "passport-dropbox": { + "name": "passport-dropbox", + "description": "Dropbox authentication strategy for Passport.", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": null, + "maintainers": [ + { + "name": "jaredhanson", + "email": "jaredhanson@gmail.com" + } + ], + "time": { + "modified": "2011-11-29T06:55:07.358Z", + "created": "2011-11-29T06:55:06.604Z", + "0.1.0": "2011-11-29T06:55:07.358Z" + }, + "author": { + "name": "Jared Hanson", + "email": "jaredhanson@gmail.com", + "url": "http://www.jaredhanson.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jaredhanson/passport-dropbox.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/passport-dropbox/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "b590413e6a05dcb924fcd355c461736df0f8c60b", + "tarball": "http://registry.npmjs.org/passport-dropbox/-/passport-dropbox-0.1.0.tgz" + } + }, + "keywords": [ + "passport", + "dropbox", + "auth", + "authn", + "authentication", + "identity" + ], + "url": "http://registry.npmjs.org/passport-dropbox/" + }, + "passport-dummy": { + "name": "passport-dummy", + "description": "Dummy authentication strategy for Passport.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "arossouw", + "email": "adrian@developmentseed.org" + } + ], + "time": { + "modified": "2011-12-07T02:38:36.217Z", + "created": "2011-12-07T02:35:38.966Z", + "0.0.1": "2011-12-07T02:38:36.217Z" + }, + "author": { + "name": "Adrian Rossouw", + "email": "adrian@developmentseed.org", + "url": "http://developmentseed.org/" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/passport-dummy/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "699966577a3fe628231c36ae7af404e35509ff11", + "tarball": "http://registry.npmjs.org/passport-dummy/-/passport-dummy-0.0.1.tgz" + } + }, + "keywords": [ + "passport", + "auth", + "authentication", + "identity" + ], + "url": "http://registry.npmjs.org/passport-dummy/" + }, + "passport-dwolla": { + "name": "passport-dwolla", + "description": "Dwolla authentication strategy for Passport.", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": null, + "maintainers": [ + { + "name": "jaredhanson", + "email": "jaredhanson@gmail.com" + } + ], + "time": { + "modified": "2011-12-07T06:52:01.131Z", + "created": "2011-12-07T06:52:00.327Z", + "0.1.0": "2011-12-07T06:52:01.131Z" + }, + "author": { + "name": "Jared Hanson", + "email": "jaredhanson@gmail.com", + "url": "http://www.jaredhanson.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jaredhanson/passport-dwolla.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/passport-dwolla/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "2cb64aac328f710603451af7e2041a4a19e3211f", + "tarball": "http://registry.npmjs.org/passport-dwolla/-/passport-dwolla-0.1.0.tgz" + } + }, + "keywords": [ + "passport", + "dwolla", + "auth", + "authn", + "authentication", + "identity" + ], + "url": "http://registry.npmjs.org/passport-dwolla/" + }, + "passport-facebook": { + "name": "passport-facebook", + "description": "Facebook authentication strategy for Passport.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "jaredhanson", + "email": "jaredhanson@gmail.com" + } + ], + "time": { + "modified": "2011-12-02T07:29:25.064Z", + "created": "2011-10-23T22:27:46.568Z", + "0.1.0": "2011-10-23T22:27:48.179Z", + "0.1.1": "2011-12-02T07:29:25.064Z" + }, + "author": { + "name": "Jared Hanson", + "email": "jaredhanson@gmail.com", + "url": "http://www.jaredhanson.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jaredhanson/passport-facebook.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/passport-facebook/0.1.0", + "0.1.1": "http://registry.npmjs.org/passport-facebook/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "6e9fb3354505849dda60db4a093112359d675941", + "tarball": "http://registry.npmjs.org/passport-facebook/-/passport-facebook-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "51fe86a5ff1253295e2a6cd45a8cdd4c69a4c249", + "tarball": "http://registry.npmjs.org/passport-facebook/-/passport-facebook-0.1.1.tgz" + } + }, + "keywords": [ + "passport", + "facebook", + "auth", + "authn", + "authentication", + "identity" + ], + "url": "http://registry.npmjs.org/passport-facebook/" + }, + "passport-fitbit": { + "name": "passport-fitbit", + "description": "Fitbit authentication strategy for Passport.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "jaredhanson", + "email": "jaredhanson@gmail.com" + } + ], + "time": { + "modified": "2011-10-28T15:01:33.617Z", + "created": "2011-10-28T15:01:32.242Z", + "0.1.0": "2011-10-28T15:01:33.617Z" + }, + "author": { + "name": "Jared Hanson", + "email": "jaredhanson@gmail.com", + "url": "http://www.jaredhanson.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jaredhanson/passport-fitbit.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/passport-fitbit/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "1135822fe7c97f765d01899986a4b5fa64f7039f", + "tarball": "http://registry.npmjs.org/passport-fitbit/-/passport-fitbit-0.1.0.tgz" + } + }, + "keywords": [ + "passport", + "fitbit", + "auth", + "authn", + "authentication", + "identity" + ], + "url": "http://registry.npmjs.org/passport-fitbit/" + }, + "passport-foursquare": { + "name": "passport-foursquare", + "description": "Foursquare authentication strategy for Passport.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "jaredhanson", + "email": "jaredhanson@gmail.com" + } + ], + "time": { + "modified": "2011-10-23T22:33:03.414Z", + "created": "2011-10-23T22:33:01.917Z", + "0.1.0": "2011-10-23T22:33:03.415Z" + }, + "author": { + "name": "Jared Hanson", + "email": "jaredhanson@gmail.com", + "url": "http://www.jaredhanson.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jaredhanson/passport-foursquare.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/passport-foursquare/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "717a235b86f0c92c385d5cce42f3262679b88823", + "tarball": "http://registry.npmjs.org/passport-foursquare/-/passport-foursquare-0.1.0.tgz" + } + }, + "keywords": [ + "passport", + "foursquare", + "auth", + "authn", + "authentication", + "identity" + ], + "url": "http://registry.npmjs.org/passport-foursquare/" + }, + "passport-github": { + "name": "passport-github", + "description": "GitHub authentication strategy for Passport.", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": null, + "maintainers": [ + { + "name": "jaredhanson", + "email": "jaredhanson@gmail.com" + } + ], + "time": { + "modified": "2011-11-24T20:48:33.057Z", + "created": "2011-11-24T20:48:32.475Z", + "0.1.0": "2011-11-24T20:48:33.057Z" + }, + "author": { + "name": "Jared Hanson", + "email": "jaredhanson@gmail.com", + "url": "http://www.jaredhanson.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jaredhanson/passport-github.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/passport-github/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "e165366932de425256df5d28ff2491fbb513bc74", + "tarball": "http://registry.npmjs.org/passport-github/-/passport-github-0.1.0.tgz" + } + }, + "keywords": [ + "passport", + "github", + "auth", + "authn", + "authentication", + "identity" + ], + "url": "http://registry.npmjs.org/passport-github/" + }, + "passport-google": { + "name": "passport-google", + "description": "Google authentication strategy for Passport.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "jaredhanson", + "email": "jaredhanson@gmail.com" + } + ], + "time": { + "modified": "2011-11-04T03:22:14.072Z", + "created": "2011-11-04T03:22:12.579Z", + "0.1.0": "2011-11-04T03:22:14.072Z" + }, + "author": { + "name": "Jared Hanson", + "email": "jaredhanson@gmail.com", + "url": "http://www.jaredhanson.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jaredhanson/passport-google.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/passport-google/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "9baac6f85d580fa08a0ff1a20533502eb47070c3", + "tarball": "http://registry.npmjs.org/passport-google/-/passport-google-0.1.0.tgz" + } + }, + "keywords": [ + "passport", + "google", + "auth", + "authn", + "authentication", + "identity" + ], + "url": "http://registry.npmjs.org/passport-google/" + }, + "passport-gowalla": { + "name": "passport-gowalla", + "description": "Gowalla authentication strategy for Passport.", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": null, + "maintainers": [ + { + "name": "jaredhanson", + "email": "jaredhanson@gmail.com" + } + ], + "time": { + "modified": "2011-11-28T07:11:38.142Z", + "created": "2011-11-28T07:11:36.550Z", + "0.1.0": "2011-11-28T07:11:38.142Z" + }, + "author": { + "name": "Jared Hanson", + "email": "jaredhanson@gmail.com", + "url": "http://www.jaredhanson.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jaredhanson/passport-gowalla.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/passport-gowalla/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "d421296f9597636f2d262404d018556393973e5f", + "tarball": "http://registry.npmjs.org/passport-gowalla/-/passport-gowalla-0.1.0.tgz" + } + }, + "keywords": [ + "passport", + "gowalla", + "auth", + "authn", + "authentication", + "identity" + ], + "url": "http://registry.npmjs.org/passport-gowalla/" + }, + "passport-http": { + "name": "passport-http", + "description": "HTTP Basic and Digest authentication strategies for Passport.", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "jaredhanson", + "email": "jaredhanson@gmail.com" + } + ], + "time": { + "modified": "2011-10-30T17:53:00.021Z", + "created": "2011-10-26T04:18:16.435Z", + "0.1.0": "2011-10-26T04:18:17.941Z", + "0.1.1": "2011-10-30T00:16:21.766Z", + "0.1.2": "2011-10-30T17:53:00.021Z" + }, + "author": { + "name": "Jared Hanson", + "email": "jaredhanson@gmail.com", + "url": "http://www.jaredhanson.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jaredhanson/passport-http.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/passport-http/0.1.0", + "0.1.1": "http://registry.npmjs.org/passport-http/0.1.1", + "0.1.2": "http://registry.npmjs.org/passport-http/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "132ca05371bc3dc453cf2caf7fbe4e9d3deaf368", + "tarball": "http://registry.npmjs.org/passport-http/-/passport-http-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "2000e9a88f7a2d63ef3c89be0aaaf18709817423", + "tarball": "http://registry.npmjs.org/passport-http/-/passport-http-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "f2ff4f33ee2e246f2400d8d2e1a7f23218858eed", + "tarball": "http://registry.npmjs.org/passport-http/-/passport-http-0.1.2.tgz" + } + }, + "keywords": [ + "passport", + "http", + "basic", + "digest", + "auth", + "authn", + "authentication" + ], + "url": "http://registry.npmjs.org/passport-http/" + }, + "passport-http-bearer": { + "name": "passport-http-bearer", + "description": "HTTP Bearer authentication strategy for Passport.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "jaredhanson", + "email": "jaredhanson@gmail.com" + } + ], + "time": { + "modified": "2011-10-30T19:35:07.702Z", + "created": "2011-10-30T19:35:06.330Z", + "0.1.0": "2011-10-30T19:35:07.702Z" + }, + "author": { + "name": "Jared Hanson", + "email": "jaredhanson@gmail.com", + "url": "http://www.jaredhanson.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jaredhanson/passport-http-bearer.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/passport-http-bearer/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "c45222da9fe7ab0f4c2d55cfbd15cf5b0c360504", + "tarball": "http://registry.npmjs.org/passport-http-bearer/-/passport-http-bearer-0.1.0.tgz" + } + }, + "keywords": [ + "passport", + "http", + "bearer", + "oauth", + "authn", + "authentication" + ], + "url": "http://registry.npmjs.org/passport-http-bearer/" + }, + "passport-instagram": { + "name": "passport-instagram", + "description": "Instagram authentication strategy for Passport.", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": null, + "maintainers": [ + { + "name": "jaredhanson", + "email": "jaredhanson@gmail.com" + } + ], + "time": { + "modified": "2011-11-25T20:22:36.819Z", + "created": "2011-11-25T20:22:36.160Z", + "0.1.0": "2011-11-25T20:22:36.819Z" + }, + "author": { + "name": "Jared Hanson", + "email": "jaredhanson@gmail.com", + "url": "http://www.jaredhanson.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jaredhanson/passport-instagram.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/passport-instagram/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "7a2b181236d0c6bf98ebed3d1067c61e4e0d6e7f", + "tarball": "http://registry.npmjs.org/passport-instagram/-/passport-instagram-0.1.0.tgz" + } + }, + "keywords": [ + "passport", + "instagram", + "auth", + "authn", + "authentication", + "identity" + ], + "url": "http://registry.npmjs.org/passport-instagram/" + }, + "passport-justintv": { + "name": "passport-justintv", + "description": "Justin.tv authentication strategy for Passport.", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": null, + "maintainers": [ + { + "name": "jaredhanson", + "email": "jaredhanson@gmail.com" + } + ], + "time": { + "modified": "2011-12-03T17:30:16.416Z", + "created": "2011-12-03T17:30:15.739Z", + "0.1.0": "2011-12-03T17:30:16.416Z" + }, + "author": { + "name": "Jared Hanson", + "email": "jaredhanson@gmail.com", + "url": "http://www.jaredhanson.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jaredhanson/passport-justintv.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/passport-justintv/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "c0f335842686f7b5de341db1587744e7a5ae5b1d", + "tarball": "http://registry.npmjs.org/passport-justintv/-/passport-justintv-0.1.0.tgz" + } + }, + "keywords": [ + "passport", + "justintv", + "auth", + "authn", + "authentication", + "identity" + ], + "url": "http://registry.npmjs.org/passport-justintv/" + }, + "passport-linkedin": { + "name": "passport-linkedin", + "description": "LinkedIn authentication strategy for Passport.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "jaredhanson", + "email": "jaredhanson@gmail.com" + } + ], + "time": { + "modified": "2011-11-01T15:21:44.879Z", + "created": "2011-11-01T15:21:43.363Z", + "0.1.0": "2011-11-01T15:21:44.879Z" + }, + "author": { + "name": "Jared Hanson", + "email": "jaredhanson@gmail.com", + "url": "http://www.jaredhanson.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jaredhanson/passport-linkedin.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/passport-linkedin/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "74f23b1b08b9fd7ee1dc596a0ca3088a5c5f4384", + "tarball": "http://registry.npmjs.org/passport-linkedin/-/passport-linkedin-0.1.0.tgz" + } + }, + "keywords": [ + "passport", + "linkedin", + "auth", + "authn", + "authentication", + "identity" + ], + "url": "http://registry.npmjs.org/passport-linkedin/" + }, + "passport-local": { + "name": "passport-local", + "description": "Local username and password authentication strategy for Passport.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "jaredhanson", + "email": "jaredhanson@gmail.com" + } + ], + "time": { + "modified": "2011-10-23T22:11:06.544Z", + "created": "2011-10-23T22:11:05.106Z", + "0.1.0": "2011-10-23T22:11:06.544Z" + }, + "author": { + "name": "Jared Hanson", + "email": "jaredhanson@gmail.com", + "url": "http://www.jaredhanson.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jaredhanson/passport-local.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/passport-local/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "b25c4a1193b05727431a6a6b546163013d2ecc29", + "tarball": "http://registry.npmjs.org/passport-local/-/passport-local-0.1.0.tgz" + } + }, + "keywords": [ + "passport", + "local", + "auth", + "authn", + "authentication" + ], + "url": "http://registry.npmjs.org/passport-local/" + }, + "passport-meetup": { + "name": "passport-meetup", + "description": "Meetup authentication strategy for Passport.", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": null, + "maintainers": [ + { + "name": "jaredhanson", + "email": "jaredhanson@gmail.com" + } + ], + "time": { + "modified": "2011-11-24T20:02:41.946Z", + "created": "2011-11-24T20:02:41.195Z", + "0.1.0": "2011-11-24T20:02:41.946Z" + }, + "author": { + "name": "Jared Hanson", + "email": "jaredhanson@gmail.com", + "url": "http://www.jaredhanson.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jaredhanson/passport-meetup.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/passport-meetup/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "1dd3720b38177bf3ae87adee243efb1b42ae9044", + "tarball": "http://registry.npmjs.org/passport-meetup/-/passport-meetup-0.1.0.tgz" + } + }, + "keywords": [ + "passport", + "meetup", + "auth", + "authn", + "authentication", + "identity" + ], + "url": "http://registry.npmjs.org/passport-meetup/" + }, + "passport-netflix": { + "name": "passport-netflix", + "description": "Netflix authentication strategy for Passport.", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": null, + "maintainers": [ + { + "name": "jaredhanson", + "email": "jaredhanson@gmail.com" + } + ], + "time": { + "modified": "2011-11-26T23:04:04.194Z", + "created": "2011-11-26T23:04:03.585Z", + "0.1.0": "2011-11-26T23:04:04.194Z" + }, + "author": { + "name": "Jared Hanson", + "email": "jaredhanson@gmail.com", + "url": "http://www.jaredhanson.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jaredhanson/passport-netflix.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/passport-netflix/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "fe65ca8c1e6d2f91ab803555041972fa91c2010f", + "tarball": "http://registry.npmjs.org/passport-netflix/-/passport-netflix-0.1.0.tgz" + } + }, + "keywords": [ + "passport", + "netflix", + "auth", + "authn", + "authentication", + "identity" + ], + "url": "http://registry.npmjs.org/passport-netflix/" + }, + "passport-oauth": { + "name": "passport-oauth", + "description": "OAuth 1.0 and 2.0 authentication strategies for Passport.", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "jaredhanson", + "email": "jaredhanson@gmail.com" + } + ], + "time": { + "modified": "2011-12-02T07:20:30.346Z", + "created": "2011-10-23T22:15:49.399Z", + "0.1.0": "2011-10-23T22:15:51.190Z", + "0.1.1": "2011-11-26T21:40:28.666Z", + "0.1.2": "2011-12-02T07:20:30.346Z" + }, + "author": { + "name": "Jared Hanson", + "email": "jaredhanson@gmail.com", + "url": "http://www.jaredhanson.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jaredhanson/passport-oauth.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/passport-oauth/0.1.0", + "0.1.1": "http://registry.npmjs.org/passport-oauth/0.1.1", + "0.1.2": "http://registry.npmjs.org/passport-oauth/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "0d65cc59e99dee00c3378a2493dcaf0367cf21df", + "tarball": "http://registry.npmjs.org/passport-oauth/-/passport-oauth-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "8641ae12196ebf9e3187adeda7272a597725cad0", + "tarball": "http://registry.npmjs.org/passport-oauth/-/passport-oauth-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "ef8756fa8838b94e311ecd75fa8a31744d11d1e5", + "tarball": "http://registry.npmjs.org/passport-oauth/-/passport-oauth-0.1.2.tgz" + } + }, + "keywords": [ + "passport", + "oauth", + "auth", + "authn", + "authentication" + ], + "url": "http://registry.npmjs.org/passport-oauth/" + }, + "passport-openid": { + "name": "passport-openid", + "description": "OpenID authentication strategy for Passport.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "jaredhanson", + "email": "jaredhanson@gmail.com" + } + ], + "time": { + "modified": "2011-11-04T01:58:25.699Z", + "created": "2011-11-04T00:28:17.973Z", + "0.1.0": "2011-11-04T00:28:19.852Z", + "0.1.1": "2011-11-04T01:58:25.699Z" + }, + "author": { + "name": "Jared Hanson", + "email": "jaredhanson@gmail.com", + "url": "http://www.jaredhanson.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jaredhanson/passport-openid.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/passport-openid/0.1.0", + "0.1.1": "http://registry.npmjs.org/passport-openid/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "7acbd360f18ab0bbae5f4ab21c247e45c71edcbb", + "tarball": "http://registry.npmjs.org/passport-openid/-/passport-openid-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "d14018af6814df8a4e05d32d1aeafc6c29929186", + "tarball": "http://registry.npmjs.org/passport-openid/-/passport-openid-0.1.1.tgz" + } + }, + "keywords": [ + "passport", + "openid", + "auth", + "authn", + "authentication", + "identity" + ], + "url": "http://registry.npmjs.org/passport-openid/" + }, + "passport-picplz": { + "name": "passport-picplz", + "description": "picplz authentication strategy for Passport.", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": null, + "maintainers": [ + { + "name": "jaredhanson", + "email": "jaredhanson@gmail.com" + } + ], + "time": { + "modified": "2011-11-25T21:03:46.781Z", + "created": "2011-11-25T21:03:46.197Z", + "0.1.0": "2011-11-25T21:03:46.781Z" + }, + "author": { + "name": "Jared Hanson", + "email": "jaredhanson@gmail.com", + "url": "http://www.jaredhanson.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jaredhanson/passport-picplz.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/passport-picplz/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "c69fc14e4a28d4b4433a4e45b59d5687c4fd68e5", + "tarball": "http://registry.npmjs.org/passport-picplz/-/passport-picplz-0.1.0.tgz" + } + }, + "keywords": [ + "passport", + "picplz", + "auth", + "authn", + "authentication", + "identity" + ], + "url": "http://registry.npmjs.org/passport-picplz/" + }, + "passport-rdio": { + "name": "passport-rdio", + "description": "Rdio authentication strategy for Passport.", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": null, + "maintainers": [ + { + "name": "jaredhanson", + "email": "jaredhanson@gmail.com" + } + ], + "time": { + "modified": "2011-11-29T05:36:18.403Z", + "created": "2011-11-29T05:36:17.659Z", + "0.1.0": "2011-11-29T05:36:18.403Z" + }, + "author": { + "name": "Jared Hanson", + "email": "jaredhanson@gmail.com", + "url": "http://www.jaredhanson.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jaredhanson/passport-rdio.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/passport-rdio/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "50860b8adde1584137ef6bc8a2acb8eb118e9cd6", + "tarball": "http://registry.npmjs.org/passport-rdio/-/passport-rdio-0.1.0.tgz" + } + }, + "keywords": [ + "passport", + "rdio", + "auth", + "authn", + "authentication", + "identity" + ], + "url": "http://registry.npmjs.org/passport-rdio/" + }, + "passport-readability": { + "name": "passport-readability", + "description": "Readability authentication strategy for Passport.", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": null, + "maintainers": [ + { + "name": "jaredhanson", + "email": "jaredhanson@gmail.com" + } + ], + "time": { + "modified": "2011-11-26T19:01:14.123Z", + "created": "2011-11-26T19:01:13.358Z", + "0.1.0": "2011-11-26T19:01:14.123Z" + }, + "author": { + "name": "Jared Hanson", + "email": "jaredhanson@gmail.com", + "url": "http://www.jaredhanson.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jaredhanson/passport-readability.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/passport-readability/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "33570fcd412d5bbbbfb05e9f1923e93d05f9020b", + "tarball": "http://registry.npmjs.org/passport-readability/-/passport-readability-0.1.0.tgz" + } + }, + "keywords": [ + "passport", + "readability", + "auth", + "authn", + "authentication", + "identity" + ], + "url": "http://registry.npmjs.org/passport-readability/" + }, + "passport-runkeeper": { + "name": "passport-runkeeper", + "description": "RunKeeper authentication strategy for Passport.", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": null, + "maintainers": [ + { + "name": "jaredhanson", + "email": "jaredhanson@gmail.com" + } + ], + "time": { + "modified": "2011-11-29T06:14:41.242Z", + "created": "2011-11-29T06:14:40.541Z", + "0.1.0": "2011-11-29T06:14:41.242Z" + }, + "author": { + "name": "Jared Hanson", + "email": "jaredhanson@gmail.com", + "url": "http://www.jaredhanson.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jaredhanson/passport-runkeeper.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/passport-runkeeper/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "dea20ed9d2694c0101f1a202eaeed674184380c1", + "tarball": "http://registry.npmjs.org/passport-runkeeper/-/passport-runkeeper-0.1.0.tgz" + } + }, + "keywords": [ + "passport", + "runkeeper", + "auth", + "authn", + "authentication", + "identity" + ], + "url": "http://registry.npmjs.org/passport-runkeeper/" + }, + "passport-smugmug": { + "name": "passport-smugmug", + "description": "SmugMug authentication strategy for Passport.", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": null, + "maintainers": [ + { + "name": "jaredhanson", + "email": "jaredhanson@gmail.com" + } + ], + "time": { + "modified": "2011-12-07T06:25:24.671Z", + "created": "2011-12-07T06:25:24.054Z", + "0.1.0": "2011-12-07T06:25:24.671Z" + }, + "author": { + "name": "Jared Hanson", + "email": "jaredhanson@gmail.com", + "url": "http://www.jaredhanson.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jaredhanson/passport-smugmug.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/passport-smugmug/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "a64ac177778982972a16e864037dabf0d54b298e", + "tarball": "http://registry.npmjs.org/passport-smugmug/-/passport-smugmug-0.1.0.tgz" + } + }, + "keywords": [ + "passport", + "smugmug", + "auth", + "authn", + "authentication", + "identity" + ], + "url": "http://registry.npmjs.org/passport-smugmug/" + }, + "passport-soundcloud": { + "name": "passport-soundcloud", + "description": "SoundCloud authentication strategy for Passport.", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": null, + "maintainers": [ + { + "name": "jaredhanson", + "email": "jaredhanson@gmail.com" + } + ], + "time": { + "modified": "2011-11-26T01:31:23.108Z", + "created": "2011-11-26T01:31:22.509Z", + "0.1.0": "2011-11-26T01:31:23.108Z" + }, + "author": { + "name": "Jared Hanson", + "email": "jaredhanson@gmail.com", + "url": "http://www.jaredhanson.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jaredhanson/passport-soundcloud.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/passport-soundcloud/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "9d779d15dfec05c51185909e5f4e43054f62e5b6", + "tarball": "http://registry.npmjs.org/passport-soundcloud/-/passport-soundcloud-0.1.0.tgz" + } + }, + "keywords": [ + "passport", + "soundcloud", + "auth", + "authn", + "authentication", + "identity" + ], + "url": "http://registry.npmjs.org/passport-soundcloud/" + }, + "passport-tripit": { + "name": "passport-tripit", + "description": "TripIt authentication strategy for Passport.", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": null, + "maintainers": [ + { + "name": "jaredhanson", + "email": "jaredhanson@gmail.com" + } + ], + "time": { + "modified": "2011-11-29T03:29:27.132Z", + "created": "2011-11-29T03:29:26.498Z", + "0.1.0": "2011-11-29T03:29:27.132Z" + }, + "author": { + "name": "Jared Hanson", + "email": "jaredhanson@gmail.com", + "url": "http://www.jaredhanson.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jaredhanson/passport-tripit.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/passport-tripit/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "72a74bcec4807a46b83f307ec3d409e0205a7c0a", + "tarball": "http://registry.npmjs.org/passport-tripit/-/passport-tripit-0.1.0.tgz" + } + }, + "keywords": [ + "passport", + "tripit", + "auth", + "authn", + "authentication", + "identity" + ], + "url": "http://registry.npmjs.org/passport-tripit/" + }, + "passport-tumblr": { + "name": "passport-tumblr", + "description": "Tumblr authentication strategy for Passport.", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": null, + "maintainers": [ + { + "name": "jaredhanson", + "email": "jaredhanson@gmail.com" + } + ], + "time": { + "modified": "2011-11-29T04:07:25.086Z", + "created": "2011-11-29T04:07:24.333Z", + "0.1.0": "2011-11-29T04:07:25.086Z" + }, + "author": { + "name": "Jared Hanson", + "email": "jaredhanson@gmail.com", + "url": "http://www.jaredhanson.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jaredhanson/passport-tumblr.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/passport-tumblr/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "133f5fe26f15e67f6c3cc6416b076d26f1c6551e", + "tarball": "http://registry.npmjs.org/passport-tumblr/-/passport-tumblr-0.1.0.tgz" + } + }, + "keywords": [ + "passport", + "tumblr", + "auth", + "authn", + "authentication", + "identity" + ], + "url": "http://registry.npmjs.org/passport-tumblr/" + }, + "passport-twitter": { + "name": "passport-twitter", + "description": "Twitter authentication strategy for Passport.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "jaredhanson", + "email": "jaredhanson@gmail.com" + } + ], + "time": { + "modified": "2011-10-23T22:22:31.612Z", + "created": "2011-10-23T22:22:29.651Z", + "0.1.0": "2011-10-23T22:22:31.612Z" + }, + "author": { + "name": "Jared Hanson", + "email": "jaredhanson@gmail.com", + "url": "http://www.jaredhanson.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jaredhanson/passport-twitter.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/passport-twitter/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "d6965e7e2a03648990a259406c39e3fb162e182f", + "tarball": "http://registry.npmjs.org/passport-twitter/-/passport-twitter-0.1.0.tgz" + } + }, + "keywords": [ + "passport", + "twitter", + "auth", + "authn", + "authentication", + "identity" + ], + "url": "http://registry.npmjs.org/passport-twitter/" + }, + "passport-vimeo": { + "name": "passport-vimeo", + "description": "Vimeo authentication strategy for Passport.", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": null, + "maintainers": [ + { + "name": "jaredhanson", + "email": "jaredhanson@gmail.com" + } + ], + "time": { + "modified": "2011-11-27T00:52:52.022Z", + "created": "2011-11-27T00:52:51.432Z", + "0.1.0": "2011-11-27T00:52:52.022Z" + }, + "author": { + "name": "Jared Hanson", + "email": "jaredhanson@gmail.com", + "url": "http://www.jaredhanson.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jaredhanson/passport-vimeo.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/passport-vimeo/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "6a58fb479a0415550207c8cb28f5fa68fd11ae44", + "tarball": "http://registry.npmjs.org/passport-vimeo/-/passport-vimeo-0.1.0.tgz" + } + }, + "keywords": [ + "passport", + "vimeo", + "auth", + "authn", + "authentication", + "identity" + ], + "url": "http://registry.npmjs.org/passport-vimeo/" + }, + "passport-yahoo": { + "name": "passport-yahoo", + "description": "Yahoo! authentication strategy for Passport.", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": null, + "maintainers": [ + { + "name": "jaredhanson", + "email": "jaredhanson@gmail.com" + } + ], + "time": { + "modified": "2011-12-01T16:33:38.937Z", + "created": "2011-12-01T16:33:38.281Z", + "0.1.0": "2011-12-01T16:33:38.937Z" + }, + "author": { + "name": "Jared Hanson", + "email": "jaredhanson@gmail.com", + "url": "http://www.jaredhanson.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jaredhanson/passport-yahoo.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/passport-yahoo/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "2ef12b3ecf0c903999fd4167edc095b0d8cd3e33", + "tarball": "http://registry.npmjs.org/passport-yahoo/-/passport-yahoo-0.1.0.tgz" + } + }, + "keywords": [ + "passport", + "yahoo", + "auth", + "authn", + "authentication", + "identity" + ], + "url": "http://registry.npmjs.org/passport-yahoo/" + }, + "passthru": { + "name": "passthru", + "description": "Spawns a child process attached to parent's stdin, stdout and stderr. Inspired by PHP's passthru().", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "laggyluke", + "email": "george.miroshnykov@gmail.com" + } + ], + "time": { + "modified": "2011-09-03T10:30:25.497Z", + "created": "2011-07-08T21:47:48.123Z", + "0.0.1": "2011-07-08T21:47:49.848Z", + "0.0.2": "2011-07-08T22:39:46.557Z", + "0.0.3": "2011-07-08T22:52:33.175Z", + "0.0.4": "2011-09-03T10:30:25.497Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/laggyluke/node-passthru.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/passthru/0.0.1", + "0.0.2": "http://registry.npmjs.org/passthru/0.0.2", + "0.0.3": "http://registry.npmjs.org/passthru/0.0.3", + "0.0.4": "http://registry.npmjs.org/passthru/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "655e3988ade65ddefcec433a73d09c776b396497", + "tarball": "http://registry.npmjs.org/passthru/-/passthru-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "345239e89d997a8fdc470243cafdff81cf6568f4", + "tarball": "http://registry.npmjs.org/passthru/-/passthru-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "4e0e531f24c98d74efad4c46dd3f6f53bac672eb", + "tarball": "http://registry.npmjs.org/passthru/-/passthru-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "2a99a27cb2fd4a3e8449602a04ab201c72f0510f", + "tarball": "http://registry.npmjs.org/passthru/-/passthru-0.0.4.tgz" + } + }, + "keywords": [ + "passthru", + "spawn", + "child_process" + ], + "url": "http://registry.npmjs.org/passthru/" + }, + "passwd": { + "name": "passwd", + "description": "Control /etc/passwd from node.js", + "dist-tags": { + "latest": "0.0.10" + }, + "maintainers": [ + { + "name": "pkrumins", + "email": "peteris.krumins@gmail.com" + } + ], + "time": { + "modified": "2011-06-26T18:41:28.262Z", + "created": "2011-04-03T18:58:51.699Z", + "0.0.1": "2011-04-03T18:58:52.183Z", + "0.0.2": "2011-04-03T23:37:12.240Z", + "0.0.3": "2011-04-04T18:16:13.296Z", + "0.0.4": "2011-04-08T06:37:12.537Z", + "0.0.5": "2011-04-08T23:55:44.922Z", + "0.0.6": "2011-04-09T00:20:16.099Z", + "0.0.8": "2011-06-26T18:23:02.784Z", + "0.0.9": "2011-06-26T18:29:25.811Z", + "0.0.10": "2011-06-26T18:41:28.262Z" + }, + "author": { + "name": "Peteris Krumins", + "email": "peteris.krumins@gmail.com", + "url": "http://www.catonmat.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/pkrumins/node-passwd.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/passwd/0.0.1", + "0.0.2": "http://registry.npmjs.org/passwd/0.0.2", + "0.0.3": "http://registry.npmjs.org/passwd/0.0.3", + "0.0.4": "http://registry.npmjs.org/passwd/0.0.4", + "0.0.5": "http://registry.npmjs.org/passwd/0.0.5", + "0.0.6": "http://registry.npmjs.org/passwd/0.0.6", + "0.0.8": "http://registry.npmjs.org/passwd/0.0.8", + "0.0.9": "http://registry.npmjs.org/passwd/0.0.9", + "0.0.10": "http://registry.npmjs.org/passwd/0.0.10" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/passwd/-/passwd-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/passwd/-/passwd-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/passwd/-/passwd-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://registry.npmjs.org/passwd/-/passwd-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://registry.npmjs.org/passwd/-/passwd-0.0.5.tgz" + }, + "0.0.6": { + "tarball": "http://registry.npmjs.org/passwd/-/passwd-0.0.6.tgz" + }, + "0.0.8": { + "shasum": "568414bd18213fa2851bbfcf68af892b6efb2dbd", + "tarball": "http://registry.npmjs.org/passwd/-/passwd-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "9b829ef6f859f21aab31a59d43528a56e6ab0662", + "tarball": "http://registry.npmjs.org/passwd/-/passwd-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "430c39f1d870bfac866e6b2667d5a61989d4a623", + "tarball": "http://registry.npmjs.org/passwd/-/passwd-0.0.10.tgz" + } + }, + "keywords": [ + "/etc/passwd", + "password", + "passwords" + ], + "url": "http://registry.npmjs.org/passwd/" + }, + "password": { + "name": "password", + "description": "Memorable passwords generator", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "shimaore", + "email": "stephane@shimaore.net" + } + ], + "time": { + "modified": "2011-06-23T23:31:08.919Z", + "created": "2011-06-07T13:21:35.888Z", + "0.0.1": "2011-06-07T13:21:36.355Z", + "0.0.2": "2011-06-23T21:24:38.661Z", + "0.0.3": "2011-06-23T21:41:12.676Z", + "0.0.4": "2011-06-23T23:31:08.919Z" + }, + "author": { + "name": "Stephane Alnet", + "email": "stephane@shimaore.net" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/password/0.0.1", + "0.0.2": "http://registry.npmjs.org/password/0.0.2", + "0.0.3": "http://registry.npmjs.org/password/0.0.3", + "0.0.4": "http://registry.npmjs.org/password/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "d979a4ff0023e842df5cb67010b05b8f4c672d07", + "tarball": "http://registry.npmjs.org/password/-/password-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "1e27bf0ea1cf95dd16bd2683a68990014b8b0b42", + "tarball": "http://registry.npmjs.org/password/-/password-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "2777229a95dcec21f580ae60e9b1cea3f8997d8f", + "tarball": "http://registry.npmjs.org/password/-/password-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "55d9a36b268fd57daa2597be7479eb9f2cb88ce2", + "tarball": "http://registry.npmjs.org/password/-/password-0.0.4.tgz" + } + }, + "keywords": [ + "password generator" + ], + "url": "http://registry.npmjs.org/password/" + }, + "password-generator": { + "name": "password-generator", + "description": "Memorable password generator", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "bermi", + "email": "bermi@bermilabs.com" + } + ], + "time": { + "modified": "2011-10-07T21:37:51.027Z", + "created": "2011-10-03T15:15:29.969Z", + "0.0.2": "2011-10-03T15:15:30.586Z", + "0.1.0": "2011-10-07T20:14:14.635Z", + "0.1.2": "2011-10-07T21:37:51.027Z" + }, + "author": { + "name": "Bermi Ferrer", + "email": "bermi@bermilabs.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/bermi/password-generator.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/password-generator/0.0.2", + "0.1.0": "http://registry.npmjs.org/password-generator/0.1.0", + "0.1.2": "http://registry.npmjs.org/password-generator/0.1.2" + }, + "dist": { + "0.0.2": { + "shasum": "8738c5cd8dc9a246667921d38a62fcb145d1e3e5", + "tarball": "http://registry.npmjs.org/password-generator/-/password-generator-0.0.2.tgz" + }, + "0.1.0": { + "shasum": "b98757bd4d7e3ea0418c6eb30b1d23343f9f8b3b", + "tarball": "http://registry.npmjs.org/password-generator/-/password-generator-0.1.0.tgz" + }, + "0.1.2": { + "shasum": "bb1e198378c845bd551215e46a87069109ea6707", + "tarball": "http://registry.npmjs.org/password-generator/-/password-generator-0.1.2.tgz" + } + }, + "keywords": [ + "password", + "generator", + "pass", + "random" + ], + "url": "http://registry.npmjs.org/password-generator/" + }, + "password-hash": { + "name": "password-hash", + "description": "Password hashing and verification for node.js", + "dist-tags": { + "latest": "1.1.3" + }, + "maintainers": [ + { + "name": "davidwood", + "email": "bitprobe@gmail.com" + } + ], + "time": { + "modified": "2011-11-18T15:41:10.348Z", + "created": "2011-05-27T22:31:00.527Z", + "1.0.0": "2011-05-27T22:31:00.963Z", + "1.0.1": "2011-05-28T00:07:52.970Z", + "1.1.0": "2011-06-05T22:47:07.423Z", + "1.1.2": "2011-08-11T14:32:05.624Z", + "1.1.3": "2011-11-18T15:41:10.348Z" + }, + "author": { + "name": "David Wood", + "email": "bitprobe@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/davidwood/node-password-hash.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/password-hash/1.0.0", + "1.0.1": "http://registry.npmjs.org/password-hash/1.0.1", + "1.1.0": "http://registry.npmjs.org/password-hash/1.1.0", + "1.1.2": "http://registry.npmjs.org/password-hash/1.1.2", + "1.1.3": "http://registry.npmjs.org/password-hash/1.1.3" + }, + "dist": { + "1.0.0": { + "shasum": "bc4264c645b9f0f2796a9334f921025246e39819", + "tarball": "http://registry.npmjs.org/password-hash/-/password-hash-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "a689deef2a4a987aa9aa9dd12b721b5571d22c57", + "tarball": "http://registry.npmjs.org/password-hash/-/password-hash-1.0.1.tgz" + }, + "1.1.0": { + "shasum": "724ac1eb88f5ca9035e6dd6c84ea5f642f5274a8", + "tarball": "http://registry.npmjs.org/password-hash/-/password-hash-1.1.0.tgz" + }, + "1.1.2": { + "shasum": "78c8d527f1373e72f9a2a535748a6b03401f8dc2", + "tarball": "http://registry.npmjs.org/password-hash/-/password-hash-1.1.2.tgz" + }, + "1.1.3": { + "shasum": "40d9fdf805f3069c5e59754e953fcc1edac6c68f", + "tarball": "http://registry.npmjs.org/password-hash/-/password-hash-1.1.3.tgz" + } + }, + "keywords": [ + "password", + "hash", + "utilities", + "cli" + ], + "url": "http://registry.npmjs.org/password-hash/" + }, + "password-reset": { + "name": "password-reset", + "description": "middleware for password reset emails", + "dist-tags": { + "latest": "0.0.2" + }, + "readme": null, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-11-26T10:21:38.032Z", + "created": "2011-11-26T09:54:13.470Z", + "0.0.0": "2011-11-26T09:54:33.730Z", + "0.0.1": "2011-11-26T10:09:46.281Z", + "0.0.2": "2011-11-26T10:21:38.032Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-password-reset.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/password-reset/0.0.0", + "0.0.1": "http://registry.npmjs.org/password-reset/0.0.1", + "0.0.2": "http://registry.npmjs.org/password-reset/0.0.2" + }, + "dist": { + "0.0.0": { + "shasum": "4c054f8c6c56f59e4ddd0c8dac38edfa0a52d759", + "tarball": "http://registry.npmjs.org/password-reset/-/password-reset-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "84f57cc23fb1a3a5215829e5d5068527e75db6ef", + "tarball": "http://registry.npmjs.org/password-reset/-/password-reset-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "5c9372cb9c19b2c861a5a668452f1370840db5dd", + "tarball": "http://registry.npmjs.org/password-reset/-/password-reset-0.0.2.tgz" + } + }, + "keywords": [ + "middleware", + "web", + "passwore", + "reset" + ], + "url": "http://registry.npmjs.org/password-reset/" + }, + "passy": { + "name": "passy", + "description": "Password utils", + "dist-tags": { + "latest": "0.0.2" + }, + "readme": "Passy Source\n============\n\nThis is a utility module for common password related code.\nEnsures best practices.\n\nInstall\n-------\n```\nnpm install passy\n```\n\nUsage\n-----\n\n```coffee-script\n\npassy = require 'passy'\n\npassy.generate 'abcd123', (err, hash) ->\n throw err if err?\n db.store hash\n\npassy.verify password, hash, (err, same) ->\n\tthrow err if err?\n\tif same\n\t\tconsole.log 'login sucessfull'\n\telse\n\t\tconsole.log 'wrong password'\n\npassy.generateSalt 10, (err, salt) ->\n\tthrow err if err?\n\tconsole.log salt\n\n```\n\nFeatures\n--------\n\n* Currently wraps bcrypt\n\n\nDeveloper instructions\n----------------------\n\n* Ensure git, node and npm are installed\n* git clone git@github.com:/.git\n* switch to dev branch, and make it track origin/dev\n* run npm install\n* run npm link ( this installs dev dependencies and symlinks the project to your global npm registry)\n* Install the following globally via npm install -g\n** coffee-script\n** nodemon\n** vows\n\nCakeFile\n--------\nA Cakefile is used to manage the app\ntype cake at the root directory to see a list of commands\n\nDeveloper flow\n--------------\nFollow github best practices\n\n* Update to latest from master (should be fast forward)\n* Create a new feature branch off master\n* Push branch to origin\n* Write a test\n* Make test pass\n* Refactor\n* Commit\n* Push to remote branch\n* Repeat till feature is finished\n* Then update master to latest from origin (should be fast forward)\n* Rebase your branch to be ontop of master\n* Squash your commits into a atomic feature commit (should have a big log message auto created from the little commits)\n* Merge onto master, and push (should be fast-forward)\n* Once ready for release, tag master.\n* Make branch bugfixes on a version branch off master\n", + "maintainers": [ + { + "name": "dmalam", + "email": "dmmalam@gmail.com" + } + ], + "time": { + "modified": "2011-12-07T19:15:50.620Z", + "created": "2011-12-07T15:25:37.701Z", + "0.0.1": "2011-12-07T15:25:38.981Z", + "0.0.2": "2011-12-07T19:15:50.620Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/quillu/passy.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/passy/0.0.1", + "0.0.2": "http://registry.npmjs.org/passy/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "a359da4dabe1de0bb53024f361ddf97b67173661", + "tarball": "http://registry.npmjs.org/passy/-/passy-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "6efbbbd59f9925e528cda27d1f3076e07a8bf9e1", + "tarball": "http://registry.npmjs.org/passy/-/passy-0.0.2.tgz" + } + }, + "keywords": [ + "password" + ], + "url": "http://registry.npmjs.org/passy/" + }, + "patcher": { + "name": "patcher", + "description": "Object patching and replication for javascript", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "mikola", + "email": "mikolalysenko@gmail.com" + } + ], + "time": { + "modified": "2011-11-03T15:42:01.980Z", + "created": "2011-10-07T23:19:11.680Z", + "0.0.1": "2011-10-07T23:19:12.961Z", + "0.0.2": "2011-11-03T15:32:33.526Z", + "0.0.3": "2011-11-03T15:37:07.350Z", + "0.0.4": "2011-11-03T15:40:30.982Z", + "0.0.5": "2011-11-03T15:42:01.980Z" + }, + "author": { + "name": "Mikola Lysenko", + "email": "mikolalysenko@gmail.com", + "url": "http://0fps.wordpress.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mikolalysenko/patcher.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/patcher/0.0.1", + "0.0.2": "http://registry.npmjs.org/patcher/0.0.2", + "0.0.3": "http://registry.npmjs.org/patcher/0.0.3", + "0.0.4": "http://registry.npmjs.org/patcher/0.0.4", + "0.0.5": "http://registry.npmjs.org/patcher/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "fcb119a871c150a3dce83b07aa57463749c8b03a", + "tarball": "http://registry.npmjs.org/patcher/-/patcher-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "bff3a9f972af5cbe92e4c23b0ddbb50fcfc8b4a7", + "tarball": "http://registry.npmjs.org/patcher/-/patcher-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "f0c5db5ef33012076f2612a79dfee5e6524e6293", + "tarball": "http://registry.npmjs.org/patcher/-/patcher-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "f9edaa65ba4222a081fdf1d826116aca7206daa4", + "tarball": "http://registry.npmjs.org/patcher/-/patcher-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "7db1f34fc754082637030a6e2a4610636a6ebc80", + "tarball": "http://registry.npmjs.org/patcher/-/patcher-0.0.5.tgz" + } + }, + "keywords": [ + "replication", + "patching" + ], + "url": "http://registry.npmjs.org/patcher/" + }, + "path": { + "name": "path", + "description": "Node.JS path module", + "dist-tags": { + "latest": "0.4.9" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-06-29T23:52:16.548Z", + "created": "2011-06-29T23:52:16.174Z", + "0.4.9": "2011-06-29T23:52:16.548Z" + }, + "author": { + "name": "Joyent", + "url": "http://www.joyent.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/coolaj86/nodejs-libs-4-browser.git" + }, + "versions": { + "0.4.9": "http://registry.npmjs.org/path/0.4.9" + }, + "dist": { + "0.4.9": { + "shasum": "380c68d01273e43f9368d7ad50fee5e3e8d477f0", + "tarball": "http://registry.npmjs.org/path/-/path-0.4.9.tgz" + } + }, + "keywords": [ + "ender", + "path" + ], + "url": "http://registry.npmjs.org/path/" + }, + "path-extra": { + "name": "path-extra", + "description": "path-extra contains methods that aren't included in the vanilla Node.js path package.", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": null, + "maintainers": [ + { + "name": "jp", + "email": "jprichardson@gmail.com" + } + ], + "time": { + "modified": "2011-11-16T20:03:20.227Z", + "created": "2011-11-16T20:03:19.487Z", + "0.0.1": "2011-11-16T20:03:20.227Z" + }, + "author": { + "name": "JP Richardson", + "email": "jprichardson@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/jprichardson/node-path-exra.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/path-extra/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "dd1d7704cb710a820acc58528e2f766926135841", + "tarball": "http://registry.npmjs.org/path-extra/-/path-extra-0.0.1.tgz" + } + }, + "keywords": [ + "fs", + "file", + "file system", + "path" + ], + "url": "http://registry.npmjs.org/path-extra/" + }, + "pathfinder": { + "name": "pathfinder", + "description": "Asset API for Node.js", + "dist-tags": { + "latest": "0.1.9" + }, + "maintainers": [ + { + "name": "viatropos", + "email": "lancejpollard@gmail.com" + } + ], + "time": { + "modified": "2011-11-17T05:21:59.825Z", + "created": "2011-11-13T00:19:21.831Z", + "0.0.1": "2011-11-13T00:19:22.364Z", + "0.1.5": "2011-11-14T01:21:16.688Z", + "0.1.6": "2011-11-16T01:26:48.378Z", + "0.1.7": "2011-11-16T07:13:09.192Z", + "0.1.9": "2011-11-17T05:21:59.825Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/viatropos/pathfinder.js.git" + }, + "author": { + "name": "Lance Pollard", + "email": "lancejpollard@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/pathfinder/0.0.1", + "0.1.5": "http://registry.npmjs.org/pathfinder/0.1.5", + "0.1.6": "http://registry.npmjs.org/pathfinder/0.1.6", + "0.1.7": "http://registry.npmjs.org/pathfinder/0.1.7", + "0.1.9": "http://registry.npmjs.org/pathfinder/0.1.9" + }, + "dist": { + "0.0.1": { + "shasum": "26472cbd838a00d53c4dbd2e1354bd6fed4abb50", + "tarball": "http://registry.npmjs.org/pathfinder/-/pathfinder-0.0.1.tgz" + }, + "0.1.5": { + "shasum": "71156b8d02cc18b19199ce959f01d38078ac4a6c", + "tarball": "http://registry.npmjs.org/pathfinder/-/pathfinder-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "ddcef3d35093bd1c3933cee26db36ce33e5d2612", + "tarball": "http://registry.npmjs.org/pathfinder/-/pathfinder-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "8838b7694c04793dd787b5918929bbdc1639c588", + "tarball": "http://registry.npmjs.org/pathfinder/-/pathfinder-0.1.7.tgz" + }, + "0.1.9": { + "shasum": "da21d64defa51465fe78ab01b20a7761127ce0d8", + "tarball": "http://registry.npmjs.org/pathfinder/-/pathfinder-0.1.9.tgz" + } + }, + "keywords": [ + "framework", + "node" + ], + "url": "http://registry.npmjs.org/pathfinder/" + }, + "pathfinding": { + "name": "pathfinding", + "description": "Comprehensive pathfinding library for grid based games", + "dist-tags": { + "latest": "0.2.0" + }, + "readme": "PathFinding.js\n==============\n#### A comprehensive path-finding library in javascript. ####\n\n## Introduction ##\n\nThe aim of this project is to provide a path-finding library that can be easily incorporated into web games. \n\nIt comes along with an [online demo](http://qiao.github.com/PathFinding.js/visual) to show how the algorithms execute.\n\n## Basic Usage ##\n\nDownload the [minified js file](http://qiao.github.com/PathFinding.js/build/PathFinding.min.js) and include it in your web page.\n\n```html\n\n```\n\nTo build a grid-map of width 5 and height 3:\n\n```javascript\nvar grid = new PF.Grid(5, 3); \n```\n\nBy default, all the nodes in the grid will be able to be walked through.\nTo set whether a node at a given coordinate is walkable or not, use the `setWalkableAt` method.\n\nFor example, to set the node at (0, 1) to be un-walkable, where 0 is the x coordinate (from left to right), and \n1 is the y coordinate (from up to down):\n\n```javascript\ngrid.setWalkableAt(0, 1, false);\n```\n\nYou may also pass in a matrix while instantiating the `PF.Grid` class.\nIt will initiate all the nodes in the grid with the same walkability indicated by the matrix.\n0 for walkable while 1 for blocked.\n\n```javascript\nvar matrix = [\n [0, 0, 0, 1, 0],\n [1, 0, 0, 0, 1],\n [0, 0, 1, 0, 0],\n];\nvar grid = new PF.Grid(5, 3, matrix);\n```\n\nCurrently there are eight path-finders bundled in this library, namely:\n\n* `AStarFinder` *\n* `BreadthFirstFinder` *\n* `BestFirstFinder`\n* `DijkstraFinder` *\n* `BiAStarFinder`\n* `BiBestFirstFinder`\n* `BiDijkstraFinder` *\n* `BiBreadthFirstFinder` *\n\nThe suffix `Bi` for the last four finders in the above list stands for the bi-directional searching strategy. \n\nAlso, Note that only the finders with trailing asterisks are guaranteed to find the shortest path.\n\nTo build a path-finder, say, the `AStarFinder`:\n\n```javascript\nvar finder = new PF.AStarFinder();\n```\n\nTo find a path from (1, 2) to (4, 2), (Note: both the start point and end point should be walkable):\n\n```javascript\nvar path = finder.findPath(1, 2, 4, 2, grid);\n```\n\n`path` will be an array of coordinates including both the start and end positions.\n\nFor the `matrix` defined previously, the `path` will be:\n\n```javascript\n[ [ 1, 2 ], [ 1, 1 ], [ 2, 1 ], [ 3, 1 ], [ 3, 2 ], [ 4, 2 ] ]\n```\n\nBe aware that `grid` will be modified in each path-finding, and will not be usable afterwards. If you want to use a single grid multiple times, create a clone for it before calling `findPath`.\n\n```javascript\nvar gridBackup = grid.clone();\n```\n\n\n## Advanced Usage ##\n\nWhen instantiating path-finders, you may pass in additional parameters to indicate which specific strategies to use.\n\nFor all path-finders, you may indicate whether diagonal movement is allowed. The default value is `false`, which means that the path can only go orthogonally.\n\nIn order to enable diagonal movement:\n\n```javascript\nvar finder = new PF.AStarFinder({\n allowDiagonal: true\n});\n```\n\nFor `AStarFinder`, `BestFirstFinder` and all their `Bi` relatives, you may indicate which heuristic function to use.\n\nThe predefined heuristics are `PF.Heuristic.manhattan`(defalut), `PF.Heuristic.chebyshev` and `PF.Heuristic.euclidean`.\n\nTo use the chebyshev heuristic:\n\n```javascript\nvar finder = new PF.AStarFinder({\n heuristic: PF.Heuristic.chebyshev)\n});\n```\n\nTo build a `BestFirstFinder` with diagonal movement allowed and a custom heuristic function:\n\n```javascript\nvar finder = new PF.BestFirstFinder({\n allowDiagonal: true,\n heuristic: function(dx, dy) {\n return Math.min(dx, dy);\n }\n});\n```\n\nFor a detailed developer's API document, see http://qiao.github.com/PathFinding.js/doc\n\n\n## License ##\n\nThis project is released under the [MIT License](http://www.opensource.org/licenses/mit-license.php) .\n", + "maintainers": [ + { + "name": "qiao", + "email": "xueqiaoxu@gmail.com" + } + ], + "time": { + "modified": "2011-11-24T04:57:06.917Z", + "created": "2011-11-24T04:57:02.331Z", + "0.2.0": "2011-11-24T04:57:06.917Z" + }, + "author": { + "name": "Xueqiao Xu", + "email": "xueqiaoxu@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/qiao/PathFinding.js.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/pathfinding/0.2.0" + }, + "dist": { + "0.2.0": { + "shasum": "9b5f6643b2c7d3f62b5e3812739b0f2c997ebfab", + "tarball": "http://registry.npmjs.org/pathfinding/-/pathfinding-0.2.0.tgz" + } + }, + "keywords": [ + "algorithm", + "game" + ], + "url": "http://registry.npmjs.org/pathfinding/" + }, + "pathjs": { + "name": "pathjs", + "description": "Routing library for 'single page' applications", + "dist-tags": { + "latest": "0.8.1" + }, + "maintainers": [ + { + "name": "mbarkhau", + "email": "mbarkhau@gmail.com" + } + ], + "time": { + "modified": "2011-08-30T19:53:38.296Z", + "created": "2011-08-30T16:29:44.821Z", + "0.8.0": "2011-08-30T16:29:45.545Z", + "0.8.1": "2011-08-30T19:53:38.296Z" + }, + "author": { + "name": "Mike Trpcic", + "url": "http://mtrpcic.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/mtrpcic/pathjs.git" + }, + "versions": { + "0.8.0": "http://registry.npmjs.org/pathjs/0.8.0", + "0.8.1": "http://registry.npmjs.org/pathjs/0.8.1" + }, + "dist": { + "0.8.0": { + "shasum": "69af9de63fb143656e42cec05b320a3af5eed5a4", + "tarball": "http://registry.npmjs.org/pathjs/-/pathjs-0.8.0.tgz" + }, + "0.8.1": { + "shasum": "bfc27d3378ec2f5a9062150d31d72a8fc343a170", + "tarball": "http://registry.npmjs.org/pathjs/-/pathjs-0.8.1.tgz" + } + }, + "keywords": [ + "ender", + "path", + "hash", + "pushState", + "routing" + ], + "url": "http://registry.npmjs.org/pathjs/" + }, + "pathname": { + "name": "pathname", + "description": "OOP wrapper for `fs`, `path` and `Stat` functions", + "dist-tags": { + "latest": "0.9.0" + }, + "maintainers": [ + { + "name": "mynyml", + "email": "mynyml@gmail.com" + } + ], + "time": { + "modified": "2011-09-18T15:22:34.403Z", + "created": "2011-03-26T23:38:23.493Z", + "0.8.1": "2011-03-26T23:38:23.858Z", + "0.8.2": "2011-05-12T01:12:29.092Z", + "0.8.3": "2011-06-27T02:37:20.141Z", + "0.9.0": "2011-09-18T15:22:34.403Z" + }, + "author": { + "name": "Martin Aumont", + "email": "mynyml@gmail.com", + "url": "http://twitter.com/mynyml" + }, + "repository": { + "type": "git", + "url": "git://github.com/mynyml/pathname.git" + }, + "versions": { + "0.8.1": "http://registry.npmjs.org/pathname/0.8.1", + "0.8.2": "http://registry.npmjs.org/pathname/0.8.2", + "0.8.3": "http://registry.npmjs.org/pathname/0.8.3", + "0.9.0": "http://registry.npmjs.org/pathname/0.9.0" + }, + "dist": { + "0.8.1": { + "shasum": "f34788b3445b8f6491b8c0aa4bc714646448b84e", + "tarball": "http://registry.npmjs.org/pathname/-/pathname-0.8.1.tgz" + }, + "0.8.2": { + "shasum": "fb44a3e9dd1c0ba5e664c1e3d787ef8222eb84fd", + "tarball": "http://registry.npmjs.org/pathname/-/pathname-0.8.2.tgz" + }, + "0.8.3": { + "shasum": "a16e4ab8168c6cb2a793590c6f6d1fedf3e5182d", + "tarball": "http://registry.npmjs.org/pathname/-/pathname-0.8.3.tgz" + }, + "0.9.0": { + "shasum": "c8de22bb2c2c780b65fff259241e47d711de9662", + "tarball": "http://registry.npmjs.org/pathname/-/pathname-0.9.0.tgz" + } + }, + "keywords": [ + "path", + "pathname", + "OOP", + "fs", + "Stat" + ], + "url": "http://registry.npmjs.org/pathname/" + }, + "paths": { + "name": "paths", + "description": "Simple $PATH management for OSX in nodejs", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "ritch", + "email": "skawful@gmail.com" + } + ], + "time": { + "modified": "2011-06-23T06:26:55.499Z", + "created": "2011-06-23T06:26:54.940Z", + "0.1.0": "2011-06-23T06:26:55.499Z" + }, + "author": { + "name": "ritch", + "url": "http://nhive.tumblr.com" + }, + "repository": { + "url": "https://github.com/ritch/paths.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/paths/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "a46fb9aa978862d61cc9d371456d3d0305b95dce", + "tarball": "http://registry.npmjs.org/paths/-/paths-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/paths/" + }, + "patr": { + "name": "patr", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "Kris Zyp", + "email": "kriszyp@gmail.com" + } + ], + "author": { + "name": "Kris Zyp" + }, + "description": "Promise-based asynchronous test runner", + "url": "http://packages.dojofoundation.org/patr", + "time": { + "modified": "2011-01-05T04:42:26.273Z", + "created": "2011-01-05T04:42:26.273Z", + "0.2.1": "2011-01-05T04:42:26.273Z" + }, + "versions": {}, + "dist": {} + }, + "pattern": { + "name": "pattern", + "description": "Simple Prototype Objects as Patterns.", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "creationix", + "email": "tim@creationix.com" + } + ], + "author": { + "name": "Tim Caswell", + "email": "tim@creationix.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/creationix/pattern.git" + }, + "time": { + "modified": "2011-07-08T22:27:52.036Z", + "created": "2011-07-08T21:27:34.954Z", + "0.0.1": "2011-07-08T21:27:34.954Z", + "0.0.2": "2011-07-08T21:27:34.954Z", + "0.1.0": "2011-07-08T21:27:34.954Z", + "0.2.0": "2011-07-08T21:27:34.954Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/pattern/0.0.1", + "0.0.2": "http://registry.npmjs.org/pattern/0.0.2", + "0.1.0": "http://registry.npmjs.org/pattern/0.1.0", + "0.2.0": "http://registry.npmjs.org/pattern/0.2.0" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/pattern/-/pattern-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/pattern/-/pattern-0.0.2.tgz" + }, + "0.1.0": { + "tarball": "http://registry.npmjs.org/pattern/-/pattern-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "bc0a0fe0d9be0006b7cdf2d36ba7e92fdab29a3a", + "tarball": "http://registry.npmjs.org/pattern/-/pattern-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/pattern/" + }, + "pauseable": { + "name": "pauseable", + "description": "Create event emitters, intervals, and timeouts that can be paused and resumed.", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "Install\n------------\n\n npm install pauseable\n\n\nWhy\n-------\nJavascript is event based by nature. When developing large scale applications that are completely event based, it's complicated to pause the streaming of events, because Javascript never \"sleeps\". It becomes even more complicated to pause timeouts and intervals keeping track of when they were paused so they can be resumed with the correct time again.\n\nThat's where this module comes in. Pauseable helps manage pausing and resuming your applicataion or part of it. It works with EventEmitter and with setInterval and setTimeout.\n\n\nUsage\n------------------\nUsing a pauseable EventEmitter\n\n```javascript\nvar pauseable = require('pauseable');\n\nvar ee = new pauseabale.EventEmitter();\n\nee.on('foo', function() { ... });\n\n// ...later\nee.pause();\n\n// this event will not be immediately fired\n// instead, it will be buffered\nee.emit('foo', 'hellow');\n\n// ...much later\n// the 'foo' event will be fired at this point\nee.resume();\n```\n\nComes with pauseable setTimeout and setInterval too\n\n```javascript\nvar timeout = pauseable.setTimeout(function() {\n // this will take 8 seconds total to execute\n // not 5\n}, 5000);\n\n// pause timeout after 2 secs\nsetTimeout(function() {\n timeout.pause();\n timeout.isPaused(); // true\n \n // resume after 3\n setTimeout(function() {\n timeout.resume();\n }, 3000);\n}, 2000);\n```\n\n```javascript\n// the function and ms arguments are interchangeable\n// use whichever you prefer!\nvar interval = pauseable.setInterval(5000, function() {\n // this is called after 5 seconds\n // then paused for 2 seconds\n interval.pause(2000);\n});\n```\n\nGrouping\n```javascript\n// create a group\nvar g = pauseable.createGroup();\n\nvar ee1 = g.EventEmitter();\nvar ee2 = g.EventEmitter();\n\nee1.on('forth', function() {\n // pause entire group (that means ee1 and ee2) for 500 ms\n // timeout is out of the group by the time this executes\n g.pause(500);\n ee2.emit('back');\n});\n\nee2.on('back', function() {\n ee1.emit('forth');\n});\n\nvar timeout = g.setTimeout(function() {\n ee.emit('back', 'poop');\n}, 1000);\n```\n\n\nAPI\n---\n### new pauseable.EventEmitter()\nCreates a new instance of an EventEmitter that is pauseable.\n\n### emitter.pause()\nPauses events. All events get buffered and emitted once the emitter is resumed.\n\n### emitter.resume()\nResumes the emitter. Events can be emitted again.\n\n### pauseable.setTimeout(fn, ms) and pauseable.setInterval(fn, ms)\nCreates a pauseable timeout or interval. `fn` and `ms` are interchangeabale. Returns an instance of timer.\n\n### timer.pause([ms])\nPauses timer. Optional `ms` will pause the timer only for that amount.\n\n### timer.resume([ms])\nResumes timer. Optional `ms` will resume the timer only for that amount.\n\n### timer.next()\nReturns the number of ms left until the `fn` function in the constructor gets called again.\n\n### timer.clear()\nClears timeout. Can no longer be resumed.\n\n### timer.isPaused()\nReturns `true` if timer is currently paused.\n\n### timer.isDone()\nReturns `true` if timer was a timeout and `fn` was called, or `timer.clear()` has been called.\n\n### timer.onDone(callback)\nIf timer is a timeout, this can be used to execute the `callback` when the `fn` in the constructor is called.\n\n### pauseable.createGroup()\nCreates an `group` where emitters and timers can be easily managed.\n\n### group.EventEmitter()\nCreates and returns and instance of a pauseable `EventEmitter` and adds it to the group.\n\n### group.setTimeout(fn, ms)\n### group.setInterval(fn, ms)\nCreates an instance of a timer anad adds it to the group.\n\n### group.pause([ms])\nPauses all emitters and timers in the group.\n\n### group.resume([ms])\nResumes all emitters and timers in the group.\n\n### group.clear()\nClears timers in the group.\n\n### group.isPaused()\nReturns `true` is group is paused.\n\n### group.isDone()\nreturns `true` if all timers in the group are timeouts and their original function has been called or all timers have been cleared.\n\n### group.timers()\nContains both emitters and timers. Useful if you want to micro manage more.\n", + "maintainers": [ + { + "name": "neat", + "email": "roly426@gmail.com" + } + ], + "time": { + "modified": "2011-11-10T20:52:42.495Z", + "created": "2011-11-10T04:56:12.489Z", + "0.0.1": "2011-11-10T04:56:17.679Z", + "0.1.0": "2011-11-10T20:52:42.495Z" + }, + "author": { + "name": "Roly Fentanes", + "url": "https://github.com/fent" + }, + "repository": { + "type": "git", + "url": "git://github.com/fent/pauseable.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/pauseable/0.0.1", + "0.1.0": "http://registry.npmjs.org/pauseable/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "7499d6f37c5991aba74b9d69a4cc35b3345f892e", + "tarball": "http://registry.npmjs.org/pauseable/-/pauseable-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "535de28f865d08642bccf0024363ce0dd8073aa8", + "tarball": "http://registry.npmjs.org/pauseable/-/pauseable-0.1.0.tgz" + } + }, + "keywords": [ + "event", + "emitter", + "timer", + "interval", + "timeout", + "pause", + "resume" + ], + "url": "http://registry.npmjs.org/pauseable/" + }, + "payment-paypal-payflowpro": { + "name": "payment-paypal-payflowpro", + "description": "Payflow Pro SDK for Node", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "jamescarr", + "email": "james.r.carr@gmail.com" + } + ], + "author": { + "name": "James R. Carr", + "email": "james.r.carr@gmail.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/jamescarr/payment-paypal-payflowpro" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/payment-paypal-payflowpro/0.0.1", + "0.0.2": "http://registry.npmjs.org/payment-paypal-payflowpro/0.0.2", + "0.0.3": "http://registry.npmjs.org/payment-paypal-payflowpro/0.0.3", + "0.0.3-SNAPSHOT": "http://registry.npmjs.org/payment-paypal-payflowpro/0.0.3-SNAPSHOT", + "0.0.4": "http://registry.npmjs.org/payment-paypal-payflowpro/0.0.4" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/payment-paypal-payflowpro/-/payment-paypal-payflowpro-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/payment-paypal-payflowpro/-/payment-paypal-payflowpro-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/payment-paypal-payflowpro/-/payment-paypal-payflowpro-0.0.3.tgz" + }, + "0.0.3-SNAPSHOT": { + "tarball": "http://packages:5984/payment-paypal-payflowpro/-/payment-paypal-payflowpro-0.0.3-SNAPSHOT.tgz" + }, + "0.0.4": { + "tarball": "http://packages:5984/payment-paypal-payflowpro/-/payment-paypal-payflowpro-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/payment-paypal-payflowpro/" + }, + "paynode": { + "name": "paynode", + "description": "Module for integrating with various payment gateways", + "dist-tags": { + "latest": "0.3.5" + }, + "maintainers": [ + { + "name": "jamescarr", + "email": "james.r.carr@gmail.com" + } + ], + "author": { + "name": "James R. Carr", + "email": "james.r.carr@gmail.com", + "url": "http://blog.james-carr.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/jamescarr/paynode.git" + }, + "time": { + "modified": "2011-08-21T03:15:39.620Z", + "created": "2011-08-21T03:10:36.039Z", + "0.0.10": "2011-08-21T03:10:36.039Z", + "0.0.3": "2011-08-21T03:10:36.039Z", + "0.0.4": "2011-08-21T03:10:36.039Z", + "0.0.5": "2011-08-21T03:10:36.039Z", + "0.3.2": "2011-08-21T03:10:36.039Z", + "0.3.5": "2011-08-21T03:15:39.620Z" + }, + "versions": { + "0.0.10": "http://registry.npmjs.org/paynode/0.0.10", + "0.0.3": "http://registry.npmjs.org/paynode/0.0.3", + "0.0.4": "http://registry.npmjs.org/paynode/0.0.4", + "0.0.5": "http://registry.npmjs.org/paynode/0.0.5", + "0.3.2": "http://registry.npmjs.org/paynode/0.3.2", + "0.3.5": "http://registry.npmjs.org/paynode/0.3.5" + }, + "dist": { + "0.0.10": { + "tarball": "http://packages:5984/paynode/-/paynode-0.0.10.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/paynode/-/paynode-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://packages:5984/paynode/-/paynode-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://packages:5984/paynode/-/paynode-0.0.5.tgz" + }, + "0.3.2": { + "shasum": "8caf7cef4d0155314b64e57c043f6f71e8fa0d11", + "tarball": "http://registry.npmjs.org/paynode/-/paynode-0.3.2.tgz" + }, + "0.3.5": { + "shasum": "b6a404cfb28b94f50de940ba91fb18cae0180acc", + "tarball": "http://registry.npmjs.org/paynode/-/paynode-0.3.5.tgz" + } + }, + "url": "http://registry.npmjs.org/paynode/" + }, + "payos": { + "name": "payos", + "description": "", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "nooo", + "email": "sss" + } + ], + "time": { + "modified": "2011-02-16T15:01:11.074Z", + "created": "2011-02-16T15:01:10.629Z", + "0.0.1": "2011-02-16T15:01:11.074Z" + }, + "repository": { + "type": "git", + "url": "" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/payos/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "740999c1181498d3d83b4acf00b0d6bcebca5e78", + "tarball": "http://registry.npmjs.org/payos/-/payos-0.0.1.tgz" + } + }, + "keywords": [ + "kayak", + "utils", + "tools" + ], + "url": "http://registry.npmjs.org/payos/" + }, + "paypal-ipn": { + "name": "paypal-ipn", + "description": "Package for verifying Paypal IPN messages", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "andz", + "email": "zegg90@gmail.com" + } + ], + "time": { + "modified": "2011-06-08T19:10:16.248Z", + "created": "2011-05-30T14:47:33.688Z", + "1.0.0": "2011-05-30T14:47:34.472Z", + "1.0.1": "2011-06-08T19:10:16.248Z" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/paypal-ipn/1.0.0", + "1.0.1": "http://registry.npmjs.org/paypal-ipn/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "bedd4628edd794cb04062ab0be90beda2ddbe62d", + "tarball": "http://registry.npmjs.org/paypal-ipn/-/paypal-ipn-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "de2eb291f12aa56cde720f2075304cd367444450", + "tarball": "http://registry.npmjs.org/paypal-ipn/-/paypal-ipn-1.0.1.tgz" + } + }, + "keywords": [ + "paypal", + "ipn", + "payment" + ], + "url": "http://registry.npmjs.org/paypal-ipn/" + }, + "pcap": { + "name": "pcap", + "description": "raw packet capture, decoding, and analysis", + "dist-tags": { + "latest": "0.2.8" + }, + "maintainers": [ + { + "name": "mjr", + "email": "mjr@ranney.com" + } + ], + "author": { + "name": "Matt Ranney", + "email": "mjr@ranney.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mranney/node_pcap.git" + }, + "time": { + "modified": "2011-03-02T07:08:30.547Z", + "created": "2011-01-31T23:33:37.155Z", + "0.0.2": "2011-01-31T23:33:37.155Z", + "0.0.3": "2011-01-31T23:33:37.155Z", + "0.0.4": "2011-01-31T23:33:37.155Z", + "0.0.5": "2011-01-31T23:33:37.155Z", + "0.0.6": "2011-01-31T23:33:37.155Z", + "0.0.7": "2011-01-31T23:33:37.155Z", + "0.1.1": "2011-01-31T23:33:37.155Z", + "0.1.4": "2011-01-31T23:33:37.155Z", + "0.1.5": "2011-01-31T23:33:37.155Z", + "0.1.6": "2011-01-31T23:33:37.155Z", + "0.1.7": "2011-01-31T23:33:37.155Z", + "0.1.8": "2011-01-31T23:33:37.155Z", + "0.1.9": "2011-01-31T23:33:37.155Z", + "0.2.0": "2011-01-31T23:33:37.155Z", + "0.2.1": "2011-01-31T23:33:37.155Z", + "0.2.2": "2011-01-31T23:33:37.155Z", + "0.2.3": "2011-01-31T23:33:37.155Z", + "0.2.4": "2011-01-31T23:33:37.155Z", + "0.2.6": "2011-01-31T23:33:37.155Z", + "0.2.7": "2011-01-31T23:33:37.155Z", + "0.2.8": "2011-03-02T07:08:30.547Z" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/pcap/0.0.2", + "0.0.3": "http://registry.npmjs.org/pcap/0.0.3", + "0.0.4": "http://registry.npmjs.org/pcap/0.0.4", + "0.0.5": "http://registry.npmjs.org/pcap/0.0.5", + "0.0.6": "http://registry.npmjs.org/pcap/0.0.6", + "0.0.7": "http://registry.npmjs.org/pcap/0.0.7", + "0.1.1": "http://registry.npmjs.org/pcap/0.1.1", + "0.1.4": "http://registry.npmjs.org/pcap/0.1.4", + "0.1.5": "http://registry.npmjs.org/pcap/0.1.5", + "0.1.6": "http://registry.npmjs.org/pcap/0.1.6", + "0.1.7": "http://registry.npmjs.org/pcap/0.1.7", + "0.1.8": "http://registry.npmjs.org/pcap/0.1.8", + "0.1.9": "http://registry.npmjs.org/pcap/0.1.9", + "0.2.0": "http://registry.npmjs.org/pcap/0.2.0", + "0.2.1": "http://registry.npmjs.org/pcap/0.2.1", + "0.2.2": "http://registry.npmjs.org/pcap/0.2.2", + "0.2.3": "http://registry.npmjs.org/pcap/0.2.3", + "0.2.4": "http://registry.npmjs.org/pcap/0.2.4", + "0.2.6": "http://registry.npmjs.org/pcap/0.2.6", + "0.2.7": "http://registry.npmjs.org/pcap/0.2.7", + "0.2.8": "http://registry.npmjs.org/pcap/0.2.8" + }, + "dist": { + "0.0.2": { + "tarball": "http://packages:5984/pcap/-/pcap-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/pcap/-/pcap-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://packages:5984/pcap/-/pcap-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://packages:5984/pcap/-/pcap-0.0.5.tgz" + }, + "0.0.6": { + "tarball": "http://packages:5984/pcap/-/pcap-0.0.6.tgz" + }, + "0.0.7": { + "tarball": "http://packages:5984/pcap/-/pcap-0.0.7.tgz" + }, + "0.1.1": { + "tarball": "http://packages:5984/pcap/-/pcap-0.1.1.tgz" + }, + "0.1.4": { + "tarball": "http://packages:5984/pcap/-/pcap-0.1.4.tgz" + }, + "0.1.5": { + "tarball": "http://packages:5984/pcap/-/pcap-0.1.5.tgz" + }, + "0.1.6": { + "tarball": "http://packages:5984/pcap/-/pcap-0.1.6.tgz" + }, + "0.1.7": { + "tarball": "http://packages:5984/pcap/-/pcap-0.1.7.tgz" + }, + "0.1.8": { + "tarball": "http://packages:5984/pcap/-/pcap-0.1.8.tgz" + }, + "0.1.9": { + "tarball": "http://packages:5984/pcap/-/pcap-0.1.9.tgz" + }, + "0.2.0": { + "tarball": "http://packages:5984/pcap/-/pcap-0.2.0.tgz" + }, + "0.2.1": { + "tarball": "http://packages:5984/pcap/-/pcap-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "f6bc06bd83f548ba643471ac40de1fa0cdba8602", + "tarball": "http://registry.npmjs.org/pcap/-/pcap-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "d5b2119b441b4b8a083ba0630040d6455a01e3b6", + "tarball": "http://registry.npmjs.org/pcap/-/pcap-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "7c9fb9f656d8fa74fb564f18c20d627886026a58", + "tarball": "http://registry.npmjs.org/pcap/-/pcap-0.2.4.tgz" + }, + "0.2.6": { + "shasum": "d016a21537e2db16d89ad58431493a8e81dfb87a", + "tarball": "http://registry.npmjs.org/pcap/-/pcap-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "e21ceda44bf53ecc030e715d9bb85adba910f7c3", + "tarball": "http://registry.npmjs.org/pcap/-/pcap-0.2.7.tgz" + }, + "0.2.8": { + "shasum": "ae4a41651b4273837ff3fefd0ca9b223783d573c", + "tarball": "http://registry.npmjs.org/pcap/-/pcap-0.2.8.tgz" + } + }, + "url": "http://registry.npmjs.org/pcap/" + }, + "pd": { + "name": "pd", + "description": "Manage propertyDescriptors, an OO utility", + "dist-tags": { + "latest": "0.3.9" + }, + "maintainers": [ + { + "name": "raynos", + "email": "raynos2@gmail.com" + } + ], + "time": { + "modified": "2011-12-11T22:55:14.086Z", + "created": "2011-09-01T15:15:02.496Z", + "0.0.1": "2011-09-01T15:15:03.838Z", + "0.1.0": "2011-09-01T15:51:23.868Z", + "0.1.1": "2011-09-01T16:03:16.725Z", + "0.2.1": "2011-10-19T17:11:19.686Z", + "0.3.0": "2011-11-10T16:11:00.101Z", + "0.3.1": "2011-11-10T16:29:47.021Z", + "0.3.3": "2011-11-21T17:48:44.988Z", + "0.3.4": "2011-11-25T16:08:24.896Z", + "0.3.5": "2011-12-01T13:48:34.129Z", + "0.3.6": "2011-12-02T16:50:28.879Z", + "0.3.7": "2011-12-08T23:56:57.823Z", + "0.3.8": "2011-12-09T00:05:06.343Z", + "0.3.9": "2011-12-11T22:55:14.086Z" + }, + "author": { + "name": "Jake Verbaten", + "email": "raynos2@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Raynos/pd.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/pd/0.0.1", + "0.1.0": "http://registry.npmjs.org/pd/0.1.0", + "0.1.1": "http://registry.npmjs.org/pd/0.1.1", + "0.2.1": "http://registry.npmjs.org/pd/0.2.1", + "0.3.0": "http://registry.npmjs.org/pd/0.3.0", + "0.3.1": "http://registry.npmjs.org/pd/0.3.1", + "0.3.3": "http://registry.npmjs.org/pd/0.3.3", + "0.3.4": "http://registry.npmjs.org/pd/0.3.4", + "0.3.5": "http://registry.npmjs.org/pd/0.3.5", + "0.3.6": "http://registry.npmjs.org/pd/0.3.6", + "0.3.7": "http://registry.npmjs.org/pd/0.3.7", + "0.3.8": "http://registry.npmjs.org/pd/0.3.8", + "0.3.9": "http://registry.npmjs.org/pd/0.3.9" + }, + "dist": { + "0.0.1": { + "shasum": "0919db91d47d4d555d82f4cfc263065d7c5e27b2", + "tarball": "http://registry.npmjs.org/pd/-/pd-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "cecced2b65860cdebcca38cbd9ce9544c06fa300", + "tarball": "http://registry.npmjs.org/pd/-/pd-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "95bf96bc5c50f06050e2785ebd38108a0c0d39e9", + "tarball": "http://registry.npmjs.org/pd/-/pd-0.1.1.tgz" + }, + "0.2.1": { + "shasum": "068e40253cca22cbaf328082104910dad5d140df", + "tarball": "http://registry.npmjs.org/pd/-/pd-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "ae1929d68f84665ce6feb65e32257a3344811191", + "tarball": "http://registry.npmjs.org/pd/-/pd-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "4f7c998e3a7b9fdaf66f917789a01e397f271a1a", + "tarball": "http://registry.npmjs.org/pd/-/pd-0.3.1.tgz" + }, + "0.3.3": { + "shasum": "3dba08014e4244be7e73e0aead022606fa62f03b", + "tarball": "http://registry.npmjs.org/pd/-/pd-0.3.3.tgz" + }, + "0.3.4": { + "shasum": "3ddbe9cb862f6405998f7080d269780c35a75a2d", + "tarball": "http://registry.npmjs.org/pd/-/pd-0.3.4.tgz" + }, + "0.3.5": { + "shasum": "110752519d30b5dcde9d4ac9178afa50f214a76d", + "tarball": "http://registry.npmjs.org/pd/-/pd-0.3.5.tgz" + }, + "0.3.6": { + "shasum": "6724dd51d8cd8bacfdcc9074e86bb851243fbfd1", + "tarball": "http://registry.npmjs.org/pd/-/pd-0.3.6.tgz" + }, + "0.3.7": { + "shasum": "63b012c70b112bbc1609380e0788b9d81cc9a147", + "tarball": "http://registry.npmjs.org/pd/-/pd-0.3.7.tgz" + }, + "0.3.8": { + "shasum": "d9ae780528dd6ebb122d25577dd8530386c6ac75", + "tarball": "http://registry.npmjs.org/pd/-/pd-0.3.8.tgz" + }, + "0.3.9": { + "shasum": "fe2d9fcfc031eb70bb4db5cabb1be043be633854", + "tarball": "http://registry.npmjs.org/pd/-/pd-0.3.9.tgz" + } + }, + "keywords": [ + "oo", + "oop", + "propertydescriptor", + "arch", + "utility" + ], + "url": "http://registry.npmjs.org/pd/" + }, + "pdf": { + "name": "pdf", + "description": "create basic pdf files in the browser or node.js, simple as cake", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "marak", + "email": "marak.squires@gmail.com" + } + ], + "author": { + "name": "Marak Squires" + }, + "repository": { + "type": "git", + "url": "http://github.com/Marak/pdf.js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/pdf/0.1.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/pdf/-/pdf-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/pdf/" + }, + "pdf.js": { + "name": "pdf.js", + "description": "A PDF generation library for Node.js", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "# PDFKit\nA PDF generation library for Node.js.\n\n## Description\nThis is fork from original project. I removed deflate/inflate and now it works on latest node.js.\nPDFKit is a PDF document generation library for Node that makes creating complex, multi-page, printable documents easy. It is written in pure CoffeeScript, but you can choose to use the API in plain 'ol JavaScript if you like. The API embraces chainability, and includes both low level functions as well as abstractions for higher level functionality. The PDFKit API is designed to be simple, so generating complex documents is often as simple as a few function calls. Check out some of the \n[documentation and examples](http://devongovett.github.com/pdfkit/docs/getting_started.html) to see for yourself!\n\n## Installation\n\nInstallation uses the [npm](http://npmjs.org/) package manager. Just type the following command after installing npm.\n\n npm install pdfkit\n\n## Features\n\n* Vector graphics\n * HTML5 canvas-like API\n * Path operations\n * SVG path parser for easy path creation\n * Transformations\n* Text\n * Line wrapping\n * Text alignments\n * Bulleted lists\n* Font embedding\n * Supports TrueType (.ttf), TrueType Collections (.ttc), and Datafork TrueType (.dfont) fonts\n* Image embedding\n * Supports JPEG and PNG files (including indexed PNGs, and PNGs with transparency)\n* Annotations\n * Links\n * Notes\n * Highlights\n * Underlines\n * etc.\n \n## Coming soon!\n\n* Gradients and patterns\n* Outlines\n* PDF Security\n* Font subsetting\n* Higher level APIs for creating tables and laying out content\n* More performance optimizations\n* Even more awesomeness, perhaps written by you! Please fork this repository and send me pull requests.\n \n## Example\n\n PDFDocument = require 'pdfkit'\n doc = new PDFDocument\n\n # Embed a font, set the font size, and render some text\n doc.font('fonts/PalatinoBold.ttf')\n .fontSize(25)\n .text('Some text with an embedded font!', 100, 100)\n\n # Add another page\n doc.addPage()\n .fontSize(25)\n .text('Here is some vector graphics...', 100, 100)\n\n # Draw a triangle\n doc.save()\n .moveTo(100, 150)\n .lineTo(100, 250)\n .lineTo(200, 250)\n .fill(\"#FF3300\")\n\n # Apply some transforms and render an SVG path with the 'even-odd' fill rule\n doc.scale(0.6)\n .translate(470, -380)\n .path('M 250,75 L 323,301 131,161 369,161 177,301 z')\n .fill('red', 'even-odd')\n .restore()\n\n # Add some text with annotations\n doc.addPage()\n .fillColor(\"blue\")\n .text('Here is a link!', 100, 100)\n .underline(100, 100, 160, 27, color: \"#0000FF\")\n .link(100, 100, 160, 27, 'http://google.com/')\n\n # Write the PDF file to disk\n doc.write 'output.pdf'\n \n[The PDF output from this example](http://devongovett.github.com/pdfkit/example.pdf) (with a few additions) shows the power of PDFKit — producing \ncomplex documents with a very small amount of code. For more, see the `demo` folder and the \n[PDFKit programming guide](http://devongovett.github.com/pdfkit/docs/getting_started.html).\n\n## Documentation\n\nFor complete API documentation and more examples, see the [PDFKit website](http://devongovett.github.com/pdfkit/).\n\n## License\n\nPDFKit is licensed under the MIT license.\n", + "maintainers": [ + { + "name": "stanislavfeldman", + "email": "stanislavfeldman@gmail.com" + } + ], + "time": { + "modified": "2011-11-12T11:08:10.686Z", + "created": "2011-11-12T11:08:08.044Z", + "0.1.0": "2011-11-12T11:08:10.686Z" + }, + "author": { + "name": "Stanislav Feldman", + "email": "stanislavfeldman@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/stanislavfeldman/pdf.js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/pdf.js/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "d0844642efd2b01fde355b22a7cc3432382bd64e", + "tarball": "http://registry.npmjs.org/pdf.js/-/pdf.js-0.1.0.tgz" + } + }, + "keywords": [ + "pdf", + "pdf writer", + "pdf generator", + "graphics", + "document", + "vector" + ], + "url": "http://registry.npmjs.org/pdf.js/" + }, + "pdfcrowd": { + "name": "pdfcrowd", + "description": "A wrapper for the Pdfcrowd API. It allows you to convert web pages or raw HTML code to PDF.", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "pdfcrowd", + "email": "info+github@pdfcrowd.com" + } + ], + "time": { + "modified": "2011-04-29T08:37:49.531Z", + "created": "2011-04-29T07:50:15.805Z", + "1.0.0": "2011-04-29T07:50:16.297Z", + "1.0.1": "2011-04-29T08:37:49.531Z" + }, + "author": { + "name": "Pdfcrowd Dev", + "email": "info+github@pdfcrowd.com", + "url": "http://pdfcrowd.com/html-to-pdf-api/" + }, + "repository": { + "type": "git", + "url": "git@github.com:pdfcrowd/node-pdfcrowd.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/pdfcrowd/1.0.0", + "1.0.1": "http://registry.npmjs.org/pdfcrowd/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "627078c4672765a58a3115a8cb56675535eb6a0b", + "tarball": "http://registry.npmjs.org/pdfcrowd/-/pdfcrowd-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "972a60e29a4acd0ba37a2d08e25c67e8152cc404", + "tarball": "http://registry.npmjs.org/pdfcrowd/-/pdfcrowd-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/pdfcrowd/" + }, + "pdfkit": { + "name": "pdfkit", + "description": "A PDF generation library for Node.js", + "dist-tags": { + "latest": "0.1.6" + }, + "maintainers": [ + { + "name": "devongovett", + "email": "devongovett@gmail.com" + } + ], + "time": { + "modified": "2011-10-22T20:59:29.355Z", + "created": "2011-07-11T15:10:53.305Z", + "0.1.0": "2011-07-11T15:10:53.537Z", + "0.1.1": "2011-07-12T20:31:23.169Z", + "0.1.2": "2011-07-20T06:12:18.326Z", + "0.1.3": "2011-07-27T02:14:04.096Z", + "0.1.4": "2011-08-17T01:07:48.018Z", + "0.1.5": "2011-08-23T16:50:51.931Z", + "0.1.6": "2011-10-22T20:59:29.355Z" + }, + "author": { + "name": "Devon Govett", + "email": "devongovett@gmail.com", + "url": "http://badassjs.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/devongovett/pdfkit.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/pdfkit/0.1.0", + "0.1.1": "http://registry.npmjs.org/pdfkit/0.1.1", + "0.1.2": "http://registry.npmjs.org/pdfkit/0.1.2", + "0.1.3": "http://registry.npmjs.org/pdfkit/0.1.3", + "0.1.4": "http://registry.npmjs.org/pdfkit/0.1.4", + "0.1.5": "http://registry.npmjs.org/pdfkit/0.1.5", + "0.1.6": "http://registry.npmjs.org/pdfkit/0.1.6" + }, + "dist": { + "0.1.0": { + "shasum": "83739427221e7f97cc96839caaa49c5303c96a9a", + "tarball": "http://registry.npmjs.org/pdfkit/-/pdfkit-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "79896b63872da6e23b1d4ba33ef1f7f3eded9132", + "tarball": "http://registry.npmjs.org/pdfkit/-/pdfkit-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "71b135d2de90eefc5c38731dd631521ef51cb87a", + "tarball": "http://registry.npmjs.org/pdfkit/-/pdfkit-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "0feaced90ad5beb85a6a4e20d1e4a69305d4c704", + "tarball": "http://registry.npmjs.org/pdfkit/-/pdfkit-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "bbbd7602ef517e32382a43d09b765bd222548987", + "tarball": "http://registry.npmjs.org/pdfkit/-/pdfkit-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "8658dbc67d0ea1cba40e74806280eb3dfe067f5d", + "tarball": "http://registry.npmjs.org/pdfkit/-/pdfkit-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "988dd0de2803601b96119f5b0287446bf354cc97", + "tarball": "http://registry.npmjs.org/pdfkit/-/pdfkit-0.1.6.tgz" + } + }, + "keywords": [ + "pdf", + "pdf writer", + "pdf generator", + "graphics", + "document", + "vector" + ], + "url": "http://registry.npmjs.org/pdfkit/" + }, + "pdflatex": { + "name": "pdflatex", + "description": "Very thin wrapper arround the pdflatex unix command.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "oschrenk", + "email": "oliver.schrenk@gmail.com" + } + ], + "time": { + "modified": "2011-04-12T16:22:01.662Z", + "created": "2011-04-12T16:22:01.166Z", + "0.0.1": "2011-04-12T16:22:01.662Z" + }, + "author": { + "name": "Oliver Schrenk", + "email": "oliver.schrenk@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/oschrenk/node-pdflatex.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/pdflatex/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "00d244d021863d7f3bfd58ffc263ed23f85f1f7f", + "tarball": "http://registry.npmjs.org/pdflatex/-/pdflatex-0.0.1.tgz" + } + }, + "keywords": [ + "pdf", + "latex" + ], + "url": "http://registry.npmjs.org/pdflatex/" + }, + "pdjs": { + "name": "pdjs", + "description": "A print helper", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "gutenye", + "email": "ywzhaifei@gmail.com" + } + ], + "time": { + "modified": "2011-10-29T05:52:21.160Z", + "created": "2011-10-29T05:52:16.917Z", + "0.0.1": "2011-10-29T05:52:21.160Z" + }, + "author": { + "name": "Guten", + "email": "ywzhaifei@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/pdjs/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "62ba90287ec37861bdd61f661aad3eabc340caf2", + "tarball": "http://registry.npmjs.org/pdjs/-/pdjs-0.0.1.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/pdjs/" + }, + "pdl": { + "name": "pdl", + "description": "PDL bindings for node", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "creationix", + "email": "tim@creationix.com" + } + ], + "time": { + "modified": "2011-07-30T19:28:01.128Z", + "created": "2011-07-30T19:27:59.668Z", + "0.0.0": "2011-07-30T19:28:01.128Z" + }, + "author": { + "name": "Tim Caswell", + "email": "tim@creationix.com", + "url": "http://creationix.com/" + }, + "repository": { + "type": "git", + "url": "tim@creationix.com:node-pdl.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/pdl/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "b8bfdffc61d4ffa08a03e5b95f19d326ee9a8210", + "tarball": "http://registry.npmjs.org/pdl/-/pdl-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/pdl/" + }, + "peanut": { + "name": "peanut", + "description": "node.js cucumber implementation for the birds", + "dist-tags": { + "latest": "0.6.1" + }, + "maintainers": [ + { + "name": "didit-tech", + "email": "development@didit.com" + } + ], + "time": { + "modified": "2011-11-21T15:14:30.455Z", + "created": "2011-06-29T21:46:03.111Z", + "0.2.0": "2011-06-29T21:46:03.247Z", + "0.2.1": "2011-06-29T21:53:47.739Z", + "0.2.2": "2011-07-01T17:06:30.026Z", + "0.2.3": "2011-07-06T13:47:33.032Z", + "0.3.0": "2011-07-08T16:10:06.949Z", + "0.3.1": "2011-07-12T19:01:51.453Z", + "0.4.0": "2011-07-19T17:27:29.321Z", + "0.4.1": "2011-07-19T20:41:08.984Z", + "0.5.0": "2011-07-20T18:17:34.117Z", + "0.5.1": "2011-07-26T16:20:19.768Z", + "0.5.2": "2011-07-28T12:07:35.904Z", + "0.5.3": "2011-07-29T18:45:38.095Z", + "0.5.4": "2011-08-31T13:51:30.276Z", + "0.6.1": "2011-11-21T15:14:30.455Z" + }, + "author": { + "name": "Didit Tech", + "email": "development@didit.com" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/peanut/0.2.0", + "0.2.1": "http://registry.npmjs.org/peanut/0.2.1", + "0.2.2": "http://registry.npmjs.org/peanut/0.2.2", + "0.2.3": "http://registry.npmjs.org/peanut/0.2.3", + "0.3.0": "http://registry.npmjs.org/peanut/0.3.0", + "0.3.1": "http://registry.npmjs.org/peanut/0.3.1", + "0.4.0": "http://registry.npmjs.org/peanut/0.4.0", + "0.4.1": "http://registry.npmjs.org/peanut/0.4.1", + "0.5.0": "http://registry.npmjs.org/peanut/0.5.0", + "0.5.1": "http://registry.npmjs.org/peanut/0.5.1", + "0.5.2": "http://registry.npmjs.org/peanut/0.5.2", + "0.5.3": "http://registry.npmjs.org/peanut/0.5.3", + "0.5.4": "http://registry.npmjs.org/peanut/0.5.4", + "0.6.1": "http://registry.npmjs.org/peanut/0.6.1" + }, + "dist": { + "0.2.0": { + "shasum": "110c3b2dbae52860a7c696e53b92dd1c4b143447", + "tarball": "http://registry.npmjs.org/peanut/-/peanut-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "34287c08c36bf43630f5bcd5abeaf484c58d2758", + "tarball": "http://registry.npmjs.org/peanut/-/peanut-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "9dd71d6a3f60beb47b3976b587896b4fa5960848", + "tarball": "http://registry.npmjs.org/peanut/-/peanut-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "f45cd8fcc3254eacce7d8e3e9443379c2bd20ac3", + "tarball": "http://registry.npmjs.org/peanut/-/peanut-0.2.3.tgz" + }, + "0.3.0": { + "shasum": "78ba2fbc8c882face6c281f1feffa420a6b4464a", + "tarball": "http://registry.npmjs.org/peanut/-/peanut-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "2a91c82a0731cd7eae5402ee6d542daf11ecf0d8", + "tarball": "http://registry.npmjs.org/peanut/-/peanut-0.3.1.tgz" + }, + "0.4.0": { + "shasum": "461731aa887b603b5d73b05bc4c638f725d7e23d", + "tarball": "http://registry.npmjs.org/peanut/-/peanut-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "215a65409718a327c06b83134b2b96681f2f3a34", + "tarball": "http://registry.npmjs.org/peanut/-/peanut-0.4.1.tgz" + }, + "0.5.0": { + "shasum": "107765dffb042d508abf0ac72125fae30ab174b0", + "tarball": "http://registry.npmjs.org/peanut/-/peanut-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "189ff91b447c709d390eef3396b1d566299197c2", + "tarball": "http://registry.npmjs.org/peanut/-/peanut-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "4ece116c4951d6e687887d4fccfa3a39a3565dad", + "tarball": "http://registry.npmjs.org/peanut/-/peanut-0.5.2.tgz" + }, + "0.5.3": { + "shasum": "653c7bda7c72228f76b9ad2b9c311791ab659a14", + "tarball": "http://registry.npmjs.org/peanut/-/peanut-0.5.3.tgz" + }, + "0.5.4": { + "shasum": "2af125c5a122550d0f0aed85df810ecb23a470b2", + "tarball": "http://registry.npmjs.org/peanut/-/peanut-0.5.4.tgz" + }, + "0.6.1": { + "shasum": "c3bfdf061bb090b8e0e129eff706d73c8c71caf0", + "tarball": "http://registry.npmjs.org/peanut/-/peanut-0.6.1.tgz" + } + }, + "keywords": [ + "testing", + "bdd", + "tdd", + "cucumber" + ], + "url": "http://registry.npmjs.org/peanut/" + }, + "pebble": { + "name": "pebble", + "description": "pebble is a series of tools for building real time event notifiers / streams.", + "dist-tags": { + "latest": "1.1.7" + }, + "maintainers": [ + { + "name": "sutto", + "email": "sutto@sutto.net" + } + ], + "time": { + "modified": "2011-07-29T01:31:55.998Z", + "created": "2011-07-24T09:33:12.239Z", + "1.0.0": "2011-07-24T09:33:16.382Z", + "1.0.1": "2011-07-25T01:06:34.625Z", + "1.1.0": "2011-07-27T14:52:10.686Z", + "1.1.1": "2011-07-28T11:57:30.566Z", + "1.1.2": "2011-07-28T14:40:51.313Z", + "1.1.3": "2011-07-28T15:11:01.564Z", + "1.1.4": "2011-07-28T15:24:24.779Z", + "1.1.5": "2011-07-28T15:26:53.392Z", + "1.1.6": "2011-07-29T01:26:04.298Z", + "1.1.7": "2011-07-29T01:31:55.998Z" + }, + "author": { + "name": "Darcy Laycock", + "email": "sutto@sutto.net", + "url": "http://blog.ninjahideout.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/Sutto/Pebble.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/pebble/1.0.0", + "1.0.1": "http://registry.npmjs.org/pebble/1.0.1", + "1.1.0": "http://registry.npmjs.org/pebble/1.1.0", + "1.1.1": "http://registry.npmjs.org/pebble/1.1.1", + "1.1.2": "http://registry.npmjs.org/pebble/1.1.2", + "1.1.3": "http://registry.npmjs.org/pebble/1.1.3", + "1.1.4": "http://registry.npmjs.org/pebble/1.1.4", + "1.1.5": "http://registry.npmjs.org/pebble/1.1.5", + "1.1.6": "http://registry.npmjs.org/pebble/1.1.6", + "1.1.7": "http://registry.npmjs.org/pebble/1.1.7" + }, + "dist": { + "1.0.0": { + "shasum": "2526a732f0b7fd2515fc910fafdc59771da22418", + "tarball": "http://registry.npmjs.org/pebble/-/pebble-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "939c42653687e5f67995d096d63800e16ae9c34a", + "tarball": "http://registry.npmjs.org/pebble/-/pebble-1.0.1.tgz" + }, + "1.1.0": { + "shasum": "eeadfc905cc83590506af3967b49c502768e4ab6", + "tarball": "http://registry.npmjs.org/pebble/-/pebble-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "b48710b769a00ee062d8fdbab780c3dbd8affab0", + "tarball": "http://registry.npmjs.org/pebble/-/pebble-1.1.1.tgz" + }, + "1.1.2": { + "shasum": "9c8a02761a155d3ce521f8597f961b192b40bd94", + "tarball": "http://registry.npmjs.org/pebble/-/pebble-1.1.2.tgz" + }, + "1.1.3": { + "shasum": "8f33437840efacd794a304723e6c5d14f7bb2735", + "tarball": "http://registry.npmjs.org/pebble/-/pebble-1.1.3.tgz" + }, + "1.1.4": { + "shasum": "9c5a1e1706bd2dd70e4e32069192d06c9d386ae9", + "tarball": "http://registry.npmjs.org/pebble/-/pebble-1.1.4.tgz" + }, + "1.1.5": { + "shasum": "47c6d5de6efab6a2540817b91c304fd84dcfb6a7", + "tarball": "http://registry.npmjs.org/pebble/-/pebble-1.1.5.tgz" + }, + "1.1.6": { + "shasum": "595d3892dd0c34159b13900bddeb9866291712e9", + "tarball": "http://registry.npmjs.org/pebble/-/pebble-1.1.6.tgz" + }, + "1.1.7": { + "shasum": "b12b689ed9f446ecdd612a3c8d314194e702c5c2", + "tarball": "http://registry.npmjs.org/pebble/-/pebble-1.1.7.tgz" + } + }, + "url": "http://registry.npmjs.org/pebble/" + }, + "pecode": { + "name": "pecode", + "description": "pecode — PEG + JS experiment", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "afelix", + "email": "skryzhanovsky@gmail.com" + } + ], + "time": { + "modified": "2011-08-26T14:06:24.517Z", + "created": "2011-08-26T14:06:23.916Z", + "0.0.2": "2011-08-26T14:06:24.517Z" + }, + "author": { + "name": "Sergey Kryzhanovsky", + "email": "skryzhanovsky@ya.ru", + "url": "http://github.com/afelix" + }, + "repository": { + "type": "git", + "url": "git://github.com/afelix/pecode.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/pecode/0.0.2" + }, + "dist": { + "0.0.2": { + "shasum": "f8d38f56f048db992826457739ad9fe07e33aca8", + "tarball": "http://registry.npmjs.org/pecode/-/pecode-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/pecode/" + }, + "Pega.IO": { + "name": "Pega.IO", + "description": "A simple pub/sub server running on node / socket.io. Pega.IO lets you use any back-end that is capable of doing HTTP POST to publish.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "gootch", + "email": "garett@aimx.com" + } + ], + "time": { + "modified": "2011-10-22T17:49:50.412Z", + "created": "2011-10-22T17:49:50.207Z", + "0.0.1": "2011-10-22T17:49:50.412Z" + }, + "author": { + "name": "Garett Rogers", + "email": "garett@aimx.com", + "url": "http://www.aimx.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Gootch/pega.io.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/Pega.IO/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "9218163802ac97123ac07950d88ce44f4ea872c2", + "tarball": "http://registry.npmjs.org/Pega.IO/-/Pega.IO-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/Pega.IO/" + }, + "pegco": { + "name": "pegco", + "description": "A wrapper for pegjs to write the code in coco.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "christophe.eymard", + "email": "christophe.eymard@ravelsoft.com" + } + ], + "time": { + "modified": "2011-10-24T13:55:06.842Z", + "created": "2011-10-24T13:55:04.635Z", + "0.0.1": "2011-10-24T13:55:06.842Z" + }, + "author": { + "name": "Christophe Eymard", + "email": "christophe.eymard@ravelsoft.com", + "url": "http://www.ravelsoft.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/ravelsoft/pegco.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/pegco/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "667efa7ab9ca8c8653647aee31e6205a75d7ce9e", + "tarball": "http://registry.npmjs.org/pegco/-/pegco-0.0.1.tgz" + } + }, + "keywords": [ + "language", + "compiler", + "coco", + "pegjs" + ], + "url": "http://registry.npmjs.org/pegco/" + }, + "pegjs": { + "name": "pegjs", + "description": "Parser generator for JavaScript", + "dist-tags": { + "latest": "0.6.2" + }, + "maintainers": [ + { + "name": "dmajda", + "email": "david@majda.cz" + } + ], + "time": { + "modified": "2011-08-20T16:34:48.518Z", + "created": "2011-04-14T16:30:04.408Z", + "0.6.0": "2011-04-14T16:30:05.132Z", + "0.6.1": "2011-04-14T17:55:38.265Z", + "0.6.2": "2011-08-20T16:34:48.518Z" + }, + "author": { + "name": "David Majda", + "email": "david@majda.cz", + "url": "http://majda.cz/" + }, + "repository": { + "type": "git", + "url": "git://github.com/dmajda/pegjs.git" + }, + "versions": { + "0.6.0": "http://registry.npmjs.org/pegjs/0.6.0", + "0.6.1": "http://registry.npmjs.org/pegjs/0.6.1", + "0.6.2": "http://registry.npmjs.org/pegjs/0.6.2" + }, + "dist": { + "0.6.0": { + "shasum": "fd3d100d37b82bc8e11f581f268811ffe788e578", + "tarball": "http://registry.npmjs.org/pegjs/-/pegjs-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "6eaf9330ff34e46d05e180f77013be892db178ac", + "tarball": "http://registry.npmjs.org/pegjs/-/pegjs-0.6.1.tgz" + }, + "0.6.2": { + "shasum": "74651f8a800e444db688e4eeae8edb65637a17a5", + "tarball": "http://registry.npmjs.org/pegjs/-/pegjs-0.6.2.tgz" + } + }, + "url": "http://registry.npmjs.org/pegjs/" + }, + "per-second": { + "name": "per-second", + "description": "generate statistics from an active process", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-08-06T06:22:41.426Z", + "created": "2011-08-06T05:16:32.638Z", + "0.0.0": "2011-08-06T05:16:35.232Z", + "0.0.1": "2011-08-06T06:22:41.426Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com", + "url": "http://bit.ly/dominictarr" + }, + "repository": { + "type": "git", + "url": "git://github.com/dominictarr/per-second.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/per-second/0.0.0", + "0.0.1": "http://registry.npmjs.org/per-second/0.0.1" + }, + "dist": { + "0.0.0": { + "shasum": "bdf27f78e8e054c155d8a44bc039b04af51c96c5", + "tarball": "http://registry.npmjs.org/per-second/-/per-second-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "a31c3d1efb292b36836ef54c682fb0956d7e9c54", + "tarball": "http://registry.npmjs.org/per-second/-/per-second-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/per-second/" + }, + "percept": { + "name": "percept", + "description": "A generic realtime multiplayer server and client to plug into your games.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "gabehollombe", + "email": "gabe@avantbard.com" + } + ], + "time": { + "modified": "2011-10-18T09:56:59.379Z", + "created": "2011-10-18T09:56:57.846Z", + "0.0.1": "2011-10-18T09:56:59.379Z" + }, + "author": { + "name": "Gabe Hollombe", + "email": "gabe@avantbard.com", + "url": "@gabehollombe" + }, + "repository": { + "type": "git", + "url": "git://github.com/gabehollombe/percept.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/percept/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "24dd5b6fcb3aabc2ea36345b099bebdd40f1e27e", + "tarball": "http://registry.npmjs.org/percept/-/percept-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/percept/" + }, + "PerfDriver": { + "name": "PerfDriver", + "description": "Test tool", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "mark", + "email": "mark@mark-fink.de" + } + ], + "time": { + "modified": "2011-02-14T20:10:36.791Z", + "created": "2011-02-14T20:10:36.251Z", + "0.0.1": "2011-02-14T20:10:36.791Z" + }, + "author": { + "name": "Mark Fink", + "email": "mark@mark-fink.de" + }, + "repository": { + "type": "git", + "url": "http://www.testing-software.org" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/PerfDriver/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "50cf781742f41d71d5b90a1df296f05a491d1d5c", + "tarball": "http://registry.npmjs.org/PerfDriver/-/PerfDriver-0.0.1.tgz" + } + }, + "keywords": [ + "Testing", + "Performance" + ], + "url": "http://registry.npmjs.org/PerfDriver/" + }, + "permafrost": { + "name": "permafrost", + "description": "Transparent object persistence on top of key/value stores", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "repository": { + "type": "git", + "url": "git://github.com/substack/node-permafrost.git" + }, + "time": { + "modified": "2011-04-28T05:20:43.119Z", + "created": "2011-02-18T12:35:39.857Z", + "0.0.1": "2011-02-18T12:35:39.857Z", + "0.0.2": "2011-02-18T12:35:39.857Z", + "0.0.3": "2011-03-28T14:34:11.562Z", + "0.0.4": "2011-04-28T05:20:43.119Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/permafrost/0.0.1", + "0.0.2": "http://registry.npmjs.org/permafrost/0.0.2", + "0.0.3": "http://registry.npmjs.org/permafrost/0.0.3", + "0.0.4": "http://registry.npmjs.org/permafrost/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "ff276895146b5721d9dea0a162e26f0e025011bf", + "tarball": "http://registry.npmjs.org/permafrost/-/permafrost-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "4c22cc57c5e9e4b45e3bdef6dd5c998ab1c5342a", + "tarball": "http://registry.npmjs.org/permafrost/-/permafrost-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "17f1a698a53dbd25be2c4b0d23c8360ccbceb7bd", + "tarball": "http://registry.npmjs.org/permafrost/-/permafrost-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "a4bdbb7960e8a8965e002b5f293f3cdca1999481", + "tarball": "http://registry.npmjs.org/permafrost/-/permafrost-0.0.4.tgz" + } + }, + "keywords": [ + "data", + "database", + "store", + "key", + "value", + "transparent", + "persistence" + ], + "url": "http://registry.npmjs.org/permafrost/" + }, + "perry": { + "name": "perry", + "description": "Multi-dimensional query string parser and generator", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "marcgreenstock", + "email": "marc@marcgreenstock.com" + } + ], + "time": { + "modified": "2011-06-23T15:57:32.926Z", + "created": "2011-06-12T22:49:29.733Z", + "0.0.1": "2011-06-12T22:49:30.171Z", + "0.0.2": "2011-06-13T06:46:05.402Z", + "0.0.3": "2011-06-13T06:49:05.248Z", + "0.0.4": "2011-06-13T06:55:45.572Z", + "0.0.5": "2011-06-13T06:57:35.733Z", + "0.0.6": "2011-06-13T07:28:29.406Z", + "0.0.7": "2011-06-14T08:29:59.732Z", + "0.0.8": "2011-06-15T12:08:26.922Z", + "0.0.9": "2011-06-18T18:33:11.764Z", + "0.1.0": "2011-06-22T19:54:39.313Z", + "0.1.1": "2011-06-23T15:28:50.058Z", + "0.1.2": "2011-06-23T15:57:32.926Z" + }, + "author": { + "name": "Marc Greenstock", + "email": "hello@marcgreenstock.com", + "url": "http://marcgreenstock.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/marcgreenstock/node_perry.git" + }, + "versions": { + "0.0.9": "http://registry.npmjs.org/perry/0.0.9", + "0.1.0": "http://registry.npmjs.org/perry/0.1.0", + "0.1.1": "http://registry.npmjs.org/perry/0.1.1", + "0.1.2": "http://registry.npmjs.org/perry/0.1.2" + }, + "dist": { + "0.0.9": { + "shasum": "8ef3277e2bef3ae523fcda07fc1b265c34355780", + "tarball": "http://registry.npmjs.org/perry/-/perry-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "f9fc90dca47847c61ef98649433f44dd1dd1d9f2", + "tarball": "http://registry.npmjs.org/perry/-/perry-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "bc7bb10bec3eca1ad5f24c31fa9460f0377de95a", + "tarball": "http://registry.npmjs.org/perry/-/perry-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "bf8207f68e25b5a1c24ef423f1fe83f97c93ee35", + "tarball": "http://registry.npmjs.org/perry/-/perry-0.1.2.tgz" + } + }, + "keywords": [ + "multi-dimension", + "querystring", + "parser", + "generator" + ], + "url": "http://registry.npmjs.org/perry/" + }, + "persevere-example-wiki": { + "name": "persevere-example-wiki", + "dist-tags": { + "latest": "0.0.3" + }, + "readme": "This is an example Wiki built with Persevere 2.0. It is recommended that you \r\nuse [Nodules](http://github.com/kriszyp/nodules) on Node to run this example so that\r\nall dependencies will be automatically resolved, or you can also use the nightly \r\nbuild that bundles with Narwhal. Once installed, you can download this package and from\r\nthe root folder simply run:\r\n\r\n node /path/to/nodules.js\r\n \r\nor for Narwhal:\r\n\r\n jackup\r\n", + "maintainers": [ + { + "name": "dojofoundation", + "email": "kzyp@dojofoundation.org" + } + ], + "time": { + "modified": "2011-11-21T17:57:32.321Z", + "created": "2011-11-11T21:08:17.876Z", + "0.0.0": "2011-11-11T21:08:19.825Z", + "0.0.1": "2011-11-11T21:12:29.304Z", + "0.0.2": "2011-11-15T16:52:42.288Z", + "0.0.3": "2011-11-21T17:57:32.321Z" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/persevere-example-wiki/0.0.0", + "0.0.1": "http://registry.npmjs.org/persevere-example-wiki/0.0.1", + "0.0.2": "http://registry.npmjs.org/persevere-example-wiki/0.0.2", + "0.0.3": "http://registry.npmjs.org/persevere-example-wiki/0.0.3" + }, + "dist": { + "0.0.0": { + "shasum": "219a22f26b166bb2935eb73a92bb478014ad5a00", + "tarball": "http://registry.npmjs.org/persevere-example-wiki/-/persevere-example-wiki-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "41d75c16874be3411dbb25751014b3a5fc2c0d15", + "tarball": "http://registry.npmjs.org/persevere-example-wiki/-/persevere-example-wiki-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "74a050cf05c91f8cc614ccd878e0db23362ed71b", + "tarball": "http://registry.npmjs.org/persevere-example-wiki/-/persevere-example-wiki-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "555d70d7892068202ba6b307ce9dcc22a48aac68", + "tarball": "http://registry.npmjs.org/persevere-example-wiki/-/persevere-example-wiki-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/persevere-example-wiki/" + }, + "persistencejs": { + "name": "persistencejs", + "dist-tags": { + "latest": "0.2.5" + }, + "maintainers": [ + { + "name": "zef", + "email": "zef@zef.me" + } + ], + "author": { + "name": "Zef Hemel" + }, + "time": { + "modified": "2011-02-10T10:46:20.402Z", + "created": "2010-12-29T08:42:20.712Z", + "0.2.0": "2010-12-29T08:42:20.712Z", + "0.2.1": "2010-12-29T08:42:20.712Z", + "0.2.2": "2010-12-29T08:42:20.712Z", + "0.2.3": "2010-12-29T08:42:20.712Z", + "0.2.4": "2010-12-29T08:42:20.712Z", + "0.2.5": "2011-02-10T10:46:20.402Z" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/persistencejs/0.2.0", + "0.2.1": "http://registry.npmjs.org/persistencejs/0.2.1", + "0.2.2": "http://registry.npmjs.org/persistencejs/0.2.2", + "0.2.3": "http://registry.npmjs.org/persistencejs/0.2.3", + "0.2.4": "http://registry.npmjs.org/persistencejs/0.2.4", + "0.2.5": "http://registry.npmjs.org/persistencejs/0.2.5" + }, + "dist": { + "0.2.0": { + "tarball": "http://registry.npmjs.org/persistencejs/-/persistencejs-0.2.0.tgz" + }, + "0.2.1": { + "tarball": "http://registry.npmjs.org/persistencejs/-/persistencejs-0.2.1.tgz" + }, + "0.2.2": { + "tarball": "http://registry.npmjs.org/persistencejs/-/persistencejs-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "a6f313d91000519e3778367428a62ab3f9145759", + "tarball": "http://registry.npmjs.org/persistencejs/-/persistencejs-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "d922a041137b4d2f742bbe42d54fb42bb11df9fe", + "tarball": "http://registry.npmjs.org/persistencejs/-/persistencejs-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "f69a32f1f694aa190f43e8913fc9d33dde0ca460", + "tarball": "http://registry.npmjs.org/persistencejs/-/persistencejs-0.2.5.tgz" + } + }, + "url": "http://registry.npmjs.org/persistencejs/" + }, + "persistent-task-status": { + "name": "persistent-task-status", + "description": "A node.js module, utilizing mongoose, that allows you to persist hierarchical task information for potentially long running, faulty tasks.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "mwawrusch", + "email": "martin@wawrusch.com" + } + ], + "time": { + "modified": "2011-10-10T07:25:08.806Z", + "created": "2011-10-10T07:25:06.863Z", + "0.0.1": "2011-10-10T07:25:08.806Z" + }, + "author": { + "name": "Martin Wawrusch", + "email": "martin@wawrusch.com", + "url": "http://martinatsunset.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/freshfugu/persistent-task-status.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/persistent-task-status/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "f2a8135f016f83d88da62990ce48d2050ffbdaeb", + "tarball": "http://registry.npmjs.org/persistent-task-status/-/persistent-task-status-0.0.1.tgz" + } + }, + "keywords": [ + "mongoose", + "mongodb", + "task", + "persistent", + "workflow" + ], + "url": "http://registry.npmjs.org/persistent-task-status/" + }, + "perstore": { + "name": "perstore", + "dist-tags": { + "latest": "0.3.0" + }, + "readme": "Perstore is a cross-platform JavaScript object store interface for mapping persistent \r\nobjects to various different storage mediums using W3C's [IndexedDB object store API](http://www.w3.org/TR/IndexedDB/#object-store-sync). Perstore\r\nincludes JavaScript object-relational mapping for SQL databases, JSON file storage,\r\nand hopefully support for many other object/document style storage systems that\r\nprovide more direct object storage. Perstore provides model classes that wrap data\r\nstores, and supports JSON Schema integrity enforcement, link management, and \r\nprototype construction. Perstore also provides faceted access to models for an\r\nobject-capability based security model.\r\n\r\nSetup\r\n=====\r\n\r\nIt is recommended that you install Perstore such that it is available in require statements\r\nunder the \"perstore\" path. This can easily be done with a package mapping compliant module\r\nloader like [Nodules](http://github.com/kriszyp/nodules) by using a mapping in your \r\npackage.json:\r\n\r\n \"mappings\": {\r\n\t \"perstore\": \"http://github.com/kriszyp/perstore/zipball/master\"\r\n }\r\n\r\nAnd you need a local.json file in your current working directory for your application that\r\ndefines any database settings such as connection information. There is a [template\r\nfor local.json](http://github.com/kriszyp/perstore/blob/master/template.local.json).\r\n \r\nModel\r\n=====\r\n\r\nTypical usage of Perstore looks like:\r\n\r\n // first setup the object store, here we use SQL/ORM store\r\n var store = require(\"perstore/store/sql\").SQLStore({\r\n type: \"mysql\",\r\n table: \"my_table\",\r\n idColumn: \"id\"\r\n });\r\n \r\n // now we can setup a model that wraps the data store\r\n var MyModel = require(\"perstore/model\").Model(\"Example\", store, {\r\n \tproperties: {\r\n \t\t// we can define optionally define type constraints on properties\r\n \t\tfoo: String\r\n \t},\r\n \tprototype: {\r\n \t\t// we can define functions on the prototype of the model objects as well\r\n \t\tgetFoo: function(){\r\n \t\t\treturn this.foo;\r\n \t\t}\r\n \t}\r\n });\r\n // now we can interact with the store and it's objects\r\n var someObject = MyModel.get(someId); // retrieve a persisted object\r\n someObject.getFoo(); // returns the current value of foo\r\n someObject.foo = \"bar\"; // make a change\r\n someObject.save(); // and save it\r\n \r\n MyModel.delete(someOtherId); // delete an object\r\n \r\n var MyFacet = require(\"facet\").Restrictive(MyModel, {\r\n });\r\n\r\n\tMyFacet.delete(someId) -> will fail, as the facet has not allowed access to delete().\r\n\t\r\nA model is defined with the Model constructor in the \"MyModel\" module. A Model definition\r\nmay follow the JSON schema definition for contractual constraints (usually defining property\r\ntype constraints in the \"properties\" property and relations with the \"links\" property). \r\nproperty. It may also contain a prototype property which defines the prototype object\r\nfor all instances of the model. Methods can be defined on the prototype object, as well\r\nas directly on the model. REST methods such as get, put, and delete are implemented\r\ndirectly on the model, and can be overriden for specific functionality. Perstore roughly \r\nfollows the [class definition structure used by Persevere 1.0](http://docs.persvr.org/documentation/storage-model/json-schema)\r\n \r\nPerstore provides easy to use object persistence mechanism. Persisted model object\r\ninstances have two default methods and a property:\r\n\r\n- save() - Saves any changes that have been made to an object to the data store.\r\n- load() - If the object has not been fully loaded (sometime queries may return partial\r\nobject), the object will be fully loaded from the data store.\r\n- schema - This is a reference to the schema for this object. Schema objects are augmented\r\n(if it does not previously exist) with a getId method that can be used to retrieve the identity \r\nof an object:\r\n\r\n object.schema.getId(object) -> identity of object\r\n\r\n\r\nIn the initial example, object persistence is demonstrated with the \"someObject\"\r\nvariable. The object is loaded (via the get call to the model), modified, and saved\r\n(with the save() call).\r\n\r\nFacets provide secure, controlled access to models. The facet module comes provides\r\ntwo facet constructors: Permissive and Restrictive. A Permissive facet allows all actions\r\non the model by default. Methods can be defined/overriden in the Permissive definition\r\nto control or disable access to certain functionality. A Restrictive facet only allows read\r\naccess methods by default (get and query). One can define/override methods to allow\r\nexplicit access to other methods such as put or create. An example facet that only\r\nallows read access and creation of new objects:\r\n\r\n var facet = require(\"facet\").Restrictive(model, {\r\n create: function(object){ // allow create\r\n return model.create(object);\r\n }\r\n });\r\n\r\nModels wrap data stores, which provide the low level interaction with the database or \r\nstorage system. Perstore comes with several data stores including (in the store directory):\r\n\r\n- mongodb - This is object store that uses a MongoDB database for storage.\r\n- redis - This is object store that uses a Redis database for storage.\r\n- sql - An SQL-based object store. This stores and retrieves objects as rows in \r\ndatabases. Currently this only fully implemented in Rhino, but the sql data store can easily\r\nwrap an SQL database provider that simple provides an W3C SQL database style\r\nexecuteSql(sql) function.\r\n- memory - An in-memory data store. None of the data in this store will be persisted\r\n- js-file - Reads and stores all data in the store from a JSON (with JS extensions for \r\ndates and other non-standard JSON types) file.\r\n- remote - This can connect to a remote HTTP/REST based JSON server to store and \r\nretrieve data.\r\n\r\nPerstore also includes several store wrappers that can be used to compose more \r\nsophisticate stores by adding functionality (also in the store directory):\r\n\r\n- cache - Adds in-memory caching support to a provided store\r\n- aggregate - Combines record data from multiple stores into a single object store\r\n- replicated - Provides data replication across multiple stores\r\n- full-text - Adds full text indexing (currently only available in Rhino through Lucene)\r\n- inherited - Provides a super-sub type relationship between data stores\r\n\r\nThe following is store API for Perstore. The same API is used for data stores, store \r\nmodels, and facets. All of the functions are optional. If they do not exist, it indicates \r\nthat the store or model does not support or allow the said functionality. All of the \r\nfunctions may return a promise instead of \r\nthe actual return value if they require asynchronous processing to complete the \r\noperation. They are roughly listed in order of importance \r\n(get(id) is the most important function):\r\n\r\nget(id, directives) - Finds the persisted record with the given identifier from the store and returns \r\nan object representation (should always be a new object).\r\n\r\nput(object, directives) - Stores the given object in storage. The record may or may not \r\nalready exist. The optional second parameter \r\ndefines the primary identifier for storing the object. If the second parameter is omitted, the\r\nkey may be specified the primary identifier property. If that is not specified, the key may be\r\nauto-generated. The primary identifer for the object should be returned\r\n\r\ndelete(id, directives) - Deletes the record with the given identifier from the store.\r\n\r\nquery(queryString, directives) - This executes a query against the data store. The \r\nqueryString parameter defines the actual query, and the options parameter should be\r\nan object that provides extra information. The following properties on the options\r\nobject may be included:\r\n\r\n- start - The offset index to start at in the result set\r\n- end - The offset index to end at in the result set\r\n- parameters - An array of values for parameterized queries\r\n\r\nThe function should generally return an array representing the result set of the query \r\n(unless the query creates a single aggregate object or value). Perstore is designed to leverage [http://github.com/kriszyp/rql](resource query language)\r\nfor querying, and included stores use RQL, although stores can utilize alternate query languages. \r\n\r\nadd(object, directives) - Stores a new record. This acts similar to put, but should only be called\r\nwhen the record does not already exist. Stores do not need to implement this \r\nmethod, but may implement for ease of differentiating between creation of new \r\nrecords and updates. This should return the identifier of the newly create record. \r\n\r\nconstruct(object, directives) - This constructs a new persistable object. This does not\r\nactually store the object, but returns an object with a save() method that\r\ncan be called to store the object when it is ready. This method does not apply to stores,\r\nonly models and facets.\r\n\r\nsubscribe(resource, callback) - Subscribes to changes in the given resource or set of \r\nresources. The callback is called whenever data is changed in the monitored resource(s).\r\n\r\ntransaction() - Starts a new transaction for the store. This should return\r\na transaction object with the following functions. Each of these functions are optional\r\nand only called if they exist:\r\n\r\n- commit() - This is called when a transaction is committed.\r\n- requestCommit() - This is called on all the databases/stores prior to committing the\r\ntransaction. If this succeeds (doesn't throw an error), the store should guarantee the\r\nsuccess of a subsequent commit() operation. This provides two phase commit \r\nsemantics. \r\n- abort() - This is called when a transaction is aborted.\r\n- suspend() - This is called when a transaction is suspended. This happens when an \r\nevent is finished, but a promise for the continuance of the action is still in progress. \r\nAfter being suspended, this transaction is no longer the active transaction.\r\n- resume() - This is called when a transaction is resumed. This happens when a promise\r\nresumes the execution of an action.\r\n\r\n(See Transactions section below for more information)\r\n\r\nPerstore is designed to allow easy construction of new data stores. A data store \r\nin Perstore is a JavaScript object with any or all of the functions defined above.\r\n\r\nQuerying\r\n========\r\n\r\nPerstore provides a query parsing and execution through [http://github.com/kriszyp/rql](resource query language) \r\n(RQL). RQL can be thought as basically a set of\r\nnestable named operators which each have a set of arguments. RQL is designed to\r\nhave an extremely simple, but extensible grammar that can be written in a URL friendly query string. A simple RQL\r\nquery with a single operator that indicates a search for any resources with a property of\r\n\"foo\" that has value of 3 could be written:\r\n\r\n eq(foo,3)\r\n\r\nRQL is a compatible superset of standard HTML form URL encoding. The following query\r\nis identical to the query (it is sugar for the query above):\r\n\r\n foo=3\r\n\r\nWe can use this query format to query stores and models. For example:\r\n\r\n MyModel.query(\"foo=3\").forEach(function(object){\r\n // for each object with a property of foo equal to 3\r\n });\r\n\r\nWe can also construct queries using chained operator calls in JavaScript. We could\r\nwrite this query:\r\n\r\n MyModel.query().eq(\"foo\",3).forEach(...);\r\n\r\nThe RQL grammar is based around standard URI delimiters. The standard rules for \r\nencoding strings with URL encoding (%xx) are observed. RQL also supersets FIQL. \r\nTherefore we can write a query that finds resources with a \"price\" property below\r\n10 with a \"lt\" operator using FIQL syntax:\r\n\r\n price=lt=10\r\n\r\nWhich is identical (and sugar for call operator syntax known as the normalized form):\r\n\r\n lt(price,10)\r\n\r\nOne can combine conditions with multiple operators with \"&\":\r\n\r\n foo=3&price=lt=10\r\n\r\nIs the same as:\r\n\r\n eq(foo,3)<(price,10)\r\n\r\nWhich is also the same as:\r\n\r\n and(eq(foo,3),lt(price,10))\r\n\r\nAnd thus can be used to query a store:\r\n\r\n\tMyModel.query(\"foo=3&price=lt=10\")...\r\n\r\nOr using chained JS calls to perform the same query:\r\n\r\n MyModel.query().eq(\"foo\",3).lt(\"price\",10)...\r\n\r\nThe | operator can be used to indicate an \"or\" operation. We can also use paranthesis\r\nto group expressions. For example:\r\n\r\n (foo=3|foo=bar)&price=lt=10\r\n \r\nWhich is the same as:\r\n\r\n and(or(eq(foo,3),eq(foo,bar)),lt(price,10))\r\n\r\nAnd to query a model/store:\r\n\r\n MyModel.query(\"(foo=3|foo=bar)&price=lt=10\")...\r\n \r\nAnd using chained JS calls: \r\n\r\n\tvar query = MyModel.query();\r\n\tquery.or(query.eq(\"foo\",3),query.eq(\"foo\",\"bar\")).lt(\"price\",10)...\r\n\r\nSometimes it makes sense to use the with statement (despite the fact that some \r\nthink it should never be used). This actually makes the syntax look very similar\r\nto the query string format. For example:\r\n\r\n\twith(MyModel.query()){\r\n\t\tor(eq(\"foo\",3),eq(\"foo\",\"bar\")).lt(\"price\",10)...\r\n\t}\r\n\r\nFor a more a complete reference guide to the RQL and the available query operators,\r\nsee [[http://github.com/kriszyp/rql]]. This also provides information on\r\nthe parsed query data structure which is important if you want to implement your\r\nown custom stores.\r\n\r\nTransactions\r\n==========\r\n\r\nTransactions provide a means for committing multiple changes to a database \r\natomically. The store API includes transaction semantics for communicating transactions\r\nto the underlying databases. Perstore provides transactional management for delegating\r\ntransaction operations to the appropriate stores and databases. To start a transaction,\r\ncall the transaction function on the stores module with a callback that will perform any\r\nof the actions of the transaction:\r\n\r\n require(\"perstore/transaction\").transaction(function(){\r\n \tModel.put(...);\r\n \tModel.delete(...);\r\n });\r\n \r\nThe callback function may return a promise if the transaction will involve actions that\r\nextend beyond the duration of the function call. When the promise is resolved the \r\ntransaction will be committed (or if the promise errors out, the transaction will be \r\naborted).\r\n\r\nPerstore includes a JSGI middleware component for wrapping requests in transactions.\r\nThis will make the life of the request be one transaction, committed when the response\r\nis ready to send (or aborted for an error).\r\n\r\n transactionApp = require(\"perstore/jsgi/transactional\").Transactional(nextApp);\r\n\r\nImplementing Transactions\r\n------------------------\r\n\r\nIf you are writing your store that needs to be transaction aware, there are two \r\ndifferent options for implementing transaction handling. The simplest approach is to\r\nimplement the implement the transaction method on your store and then use the\r\nAutoTransaction store wrapper provided by the \"stores\" module:\r\n\r\n var AutoTransaction = require(\"perstore/transaction\").AutoTransaction;\r\n myTransactionalStore = AutoTransaction({\r\n transaction: function(){\r\n // prepare the transaction\r\n return {\r\n commit: function{\r\n // commit the transaction\r\n },\r\n // implement the rest of the handlers\r\n abort:...\r\n }\r\n }\r\n });\r\n\r\nThe AutoTransaction wrappers provides two important functions. First, if any of your\r\nstore methods are called outside of a global transaction, a transaction will automatically\r\nbe started before calling the method and committed afterwards. Second, if a global\r\ntransaction is in process, the transaction method will be called on the first access of\r\nthis store and be committed when the global transaction is committed.\r\n\r\nThe other approach to transaction handling is to provide a \"database\" object. This can\r\nbe useful for situations where transaction management needs to exist outside of \r\nindividual stores (and may cross stores). One can implement a \"database\" object that\r\nprovides the transaction method with the same API as the store's transaction method.\r\nThe database object can be registered with:\r\n\r\n require(\"perstore/transaction\").registerDatabase(transaction: function(){\r\n // prepare the transaction\r\n return {...}\r\n });\r\n \r\nThis transaction method will be called whenever a global transaction is started.\r\n \r\nLicensing\r\n--------\r\n\r\nPerstore is part of the Persevere project, and therefore is licensed under the\r\nAFL or BSD license. The Persevere project is administered under the Dojo foundation,\r\nand all contributions require a Dojo CLA.\r\n\r\nProject Links\r\n------------\r\n\r\nSee the main Persevere project for more information:\r\n\r\n### Homepage:\r\n\r\n* [http://persvr.org/](http://persvr.org/)\r\n\r\n### Source & Download:\r\n\r\n* [http://github.com/kriszyp/perstore/](http://github.com/kriszyp/perstore)\r\n\r\n### Mailing list:\r\n\r\n* [http://groups.google.com/group/persevere-framework](http://groups.google.com/group/persevere-framework)\r\n\r\n### IRC:\r\n\r\n* [\\#persevere on irc.freenode.net](http://webchat.freenode.net/?channels=persevere)\r\n", + "maintainers": [ + { + "name": "dojofoundation", + "email": "kzyp@dojofoundation.org" + } + ], + "time": { + "modified": "2011-11-16T17:18:20.548Z", + "created": "2011-11-16T17:18:19.219Z", + "0.3.0": "2011-11-16T17:18:20.548Z" + }, + "author": { + "name": "Kris Zyp" + }, + "repository": { + "type": "git", + "url": "git://github.com/kriszyp/tunguska.git" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/perstore/0.3.0" + }, + "dist": { + "0.3.0": { + "shasum": "c84b99d9bf010236e950c16c8b20ac6696827f51", + "tarball": "http://registry.npmjs.org/perstore/-/perstore-0.3.0.tgz" + } + }, + "keywords": [ + "persistence", + "object", + "store", + "persevere" + ], + "url": "http://registry.npmjs.org/perstore/" + }, + "pg": { + "name": "pg", + "description": "PostgreSQL client - pure javascript & libpq with the same API", + "dist-tags": { + "latest": "0.6.8" + }, + "maintainers": [ + { + "name": "brianc", + "email": "brian.m.carlson@gmail.com" + } + ], + "author": { + "name": "Brian Carlson", + "email": "brian.m.carlson@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/brianc/node-postgres.git" + }, + "time": { + "modified": "2011-12-01T05:03:15.499Z", + "created": "2010-12-19T22:44:11.618Z", + "0.0.1": "2010-12-19T22:44:11.618Z", + "0.0.2": "2010-12-19T22:44:11.618Z", + "0.0.3": "2010-12-19T22:44:11.618Z", + "0.0.4": "2010-12-19T22:44:11.618Z", + "0.0.5": "2010-12-19T22:44:11.618Z", + "0.0.6": "2010-12-19T22:44:11.618Z", + "0.1.0": "2010-12-19T22:44:11.618Z", + "0.1.1": "2010-12-19T22:44:11.618Z", + "0.1.2": "2010-12-19T22:44:11.618Z", + "0.1.3": "2010-12-19T22:44:11.618Z", + "0.2.0": "2010-12-19T22:44:11.618Z", + "0.2.2": "2011-01-01T17:01:04.154Z", + "0.2.3": "2011-01-10T22:34:36.542Z", + "0.2.4": "2011-01-14T20:54:10.522Z", + "0.2.5": "2011-01-18T17:00:57.125Z", + "0.2.6": "2011-01-24T06:03:30.036Z", + "0.2.7": "2011-02-09T04:47:56.644Z", + "0.2.8": "2011-03-08T05:05:58.516Z", + "0.3.0": "2011-03-11T18:30:50.473Z", + "0.3.2": "2011-03-16T04:10:39.866Z", + "0.3.3": "2011-04-15T04:15:19.555Z", + "0.4.0": "2011-04-16T16:55:27.619Z", + "0.4.1": "2011-05-01T22:27:11.431Z", + "0.5.0": "2011-05-20T04:35:12.108Z", + "0.5.1": "2011-07-13T04:10:14.925Z", + "0.5.2": "2011-07-19T23:13:14.023Z", + "0.5.3": "2011-07-20T20:35:49.988Z", + "0.5.4": "2011-08-12T06:18:26.992Z", + "0.5.5": "2011-08-16T23:59:43.141Z", + "0.5.6": "2011-09-02T03:10:15.177Z", + "0.5.7": "2011-09-22T15:19:01.648Z", + "0.5.8": "2011-10-04T04:46:23.315Z", + "0.6.0": "2011-10-12T05:39:02.943Z", + "0.6.1": "2011-10-12T16:18:01.310Z", + "0.6.2": "2011-10-20T03:59:51.275Z", + "0.6.3": "2011-10-24T16:29:38.025Z", + "0.6.4": "2011-10-31T02:54:09.299Z", + "0.6.5": "2011-11-02T04:03:31.246Z", + "0.6.6": "2011-11-11T06:19:08.031Z", + "0.6.7": "2011-11-28T05:19:54.210Z", + "0.6.8": "2011-12-01T05:03:15.499Z" + }, + "users": { + "coverslide": true, + "brianc": true + }, + "versions": { + "0.4.1": "http://registry.npmjs.org/pg/0.4.1", + "0.5.0": "http://registry.npmjs.org/pg/0.5.0", + "0.5.1": "http://registry.npmjs.org/pg/0.5.1", + "0.5.2": "http://registry.npmjs.org/pg/0.5.2", + "0.5.3": "http://registry.npmjs.org/pg/0.5.3", + "0.5.4": "http://registry.npmjs.org/pg/0.5.4", + "0.5.5": "http://registry.npmjs.org/pg/0.5.5", + "0.5.6": "http://registry.npmjs.org/pg/0.5.6", + "0.5.7": "http://registry.npmjs.org/pg/0.5.7", + "0.5.8": "http://registry.npmjs.org/pg/0.5.8", + "0.6.0": "http://registry.npmjs.org/pg/0.6.0", + "0.6.1": "http://registry.npmjs.org/pg/0.6.1", + "0.6.2": "http://registry.npmjs.org/pg/0.6.2", + "0.6.3": "http://registry.npmjs.org/pg/0.6.3", + "0.6.4": "http://registry.npmjs.org/pg/0.6.4", + "0.6.5": "http://registry.npmjs.org/pg/0.6.5", + "0.6.6": "http://registry.npmjs.org/pg/0.6.6", + "0.6.7": "http://registry.npmjs.org/pg/0.6.7", + "0.6.8": "http://registry.npmjs.org/pg/0.6.8" + }, + "dist": { + "0.4.1": { + "shasum": "04bb878a8ccfda09bc7c6eb4f5498e35ad8a2286", + "tarball": "http://registry.npmjs.org/pg/-/pg-0.4.1.tgz" + }, + "0.5.0": { + "shasum": "58df3df4e1f872b8f2692a91ee4347690bf06af1", + "bin": { + "0.4-linux-2.6.38.3-linode32": { + "shasum": "fde8243f4139d3b04a82742abea1842233c525cc", + "tarball": "http://registry.npmjs.org/pg/-/pg-0.5.0-0.4-linux-2.6.38.3-linode32.tgz" + } + }, + "tarball": "http://registry.npmjs.org/pg/-/pg-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "5edc97398807cd32ae34ced6a281931bab8ea838", + "tarball": "http://registry.npmjs.org/pg/-/pg-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "49c68e4aff6948a677d78a8dd939810a36f198c5", + "tarball": "http://registry.npmjs.org/pg/-/pg-0.5.2.tgz" + }, + "0.5.3": { + "shasum": "531b65d7b45276ba0e0393e0d3c400676c82604e", + "tarball": "http://registry.npmjs.org/pg/-/pg-0.5.3.tgz" + }, + "0.5.4": { + "shasum": "e7b2ca32fb1202b52835ee3b6cab1771b28f4a59", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.16-darwin-11.0.0": { + "shasum": "6a0cddcb03d7b2c585cadd7cf6347632aafbdd8a", + "tarball": "http://registry.npmjs.org/pg/-/pg-0.5.4-0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.16-darwin-11.0.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/pg/-/pg-0.5.4.tgz" + }, + "0.5.5": { + "shasum": "ebb9b07e8d0266a5e1d6e57a2bf11882b93829e6", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.10-linux-2.6.38-10-generic": { + "shasum": "921c1a5bd40377634860fbbd32f1c6e4c1147722", + "tarball": "http://registry.npmjs.org/pg/-/pg-0.5.5-0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.10-linux-2.6.38-10-generic.tgz" + } + }, + "tarball": "http://registry.npmjs.org/pg/-/pg-0.5.5.tgz" + }, + "0.5.6": { + "shasum": "4dd348d560bc0d641d69510b5c135a7e277c966e", + "tarball": "http://registry.npmjs.org/pg/-/pg-0.5.6.tgz" + }, + "0.5.7": { + "shasum": "e0c724113280b4a5c97e3816bcfe4baedfdf3813", + "tarball": "http://registry.npmjs.org/pg/-/pg-0.5.7.tgz" + }, + "0.5.8": { + "shasum": "a4ff60409ef24a065311ceb2544fe794cfd20ebc", + "tarball": "http://registry.npmjs.org/pg/-/pg-0.5.8.tgz" + }, + "0.6.0": { + "shasum": "c506ad53f24f5b62890a4646dddbe66405c41e11", + "tarball": "http://registry.npmjs.org/pg/-/pg-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "a86715e297eff9fef428cc5adf3b9e476214321b", + "tarball": "http://registry.npmjs.org/pg/-/pg-0.6.1.tgz" + }, + "0.6.2": { + "shasum": "9241de019e99021783ce82b034969730b93a896c", + "tarball": "http://registry.npmjs.org/pg/-/pg-0.6.2.tgz" + }, + "0.6.3": { + "shasum": "0139c66727a761c56cc163287d648cf06c021671", + "tarball": "http://registry.npmjs.org/pg/-/pg-0.6.3.tgz" + }, + "0.6.4": { + "shasum": "ed8504589f9f34dcda0e8f81e00eaa25a4e7790f", + "tarball": "http://registry.npmjs.org/pg/-/pg-0.6.4.tgz" + }, + "0.6.5": { + "shasum": "1df98e97306339b28a4be28ed0b1f502cef0f034", + "tarball": "http://registry.npmjs.org/pg/-/pg-0.6.5.tgz" + }, + "0.6.6": { + "shasum": "768457c388483807a0e83563a9a8e0fbbb2d782f", + "tarball": "http://registry.npmjs.org/pg/-/pg-0.6.6.tgz" + }, + "0.6.7": { + "shasum": "d6579f08a6de3c94ad9f2b972fe79f4c715041dc", + "tarball": "http://registry.npmjs.org/pg/-/pg-0.6.7.tgz" + }, + "0.6.8": { + "shasum": "84661050fae62c23d0c325a33cc35c4548e4c1a4", + "tarball": "http://registry.npmjs.org/pg/-/pg-0.6.8.tgz" + } + }, + "keywords": [ + "postgres", + "pg", + "libpq", + "postgre", + "database", + "rdbms" + ], + "url": "http://registry.npmjs.org/pg/" + }, + "phantom": { + "name": "phantom", + "description": "PhantomJS wrapper for Node", + "dist-tags": { + "latest": "0.2.3" + }, + "maintainers": [ + { + "name": "sgentle", + "email": "sam@samgentle.com" + } + ], + "time": { + "modified": "2011-12-10T14:26:04.754Z", + "created": "2011-10-04T05:26:44.467Z", + "0.0.1": "2011-10-04T05:26:48.056Z", + "0.0.2": "2011-10-05T04:57:40.435Z", + "0.1.0": "2011-10-05T14:25:26.327Z", + "0.2.0": "2011-10-12T14:43:19.488Z", + "0.2.1": "2011-11-13T01:14:39.722Z", + "0.2.2": "2011-11-20T07:57:44.404Z", + "0.2.3": "2011-12-10T14:26:04.754Z" + }, + "author": { + "name": "Sam Gentle", + "email": "sam@samgentle.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/sgentle/phantomjs-node.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/phantom/0.0.1", + "0.0.2": "http://registry.npmjs.org/phantom/0.0.2", + "0.1.0": "http://registry.npmjs.org/phantom/0.1.0", + "0.2.0": "http://registry.npmjs.org/phantom/0.2.0", + "0.2.1": "http://registry.npmjs.org/phantom/0.2.1", + "0.2.2": "http://registry.npmjs.org/phantom/0.2.2", + "0.2.3": "http://registry.npmjs.org/phantom/0.2.3" + }, + "dist": { + "0.0.1": { + "shasum": "5681464df607711ce3fa60a03d5d3cc104c00a13", + "tarball": "http://registry.npmjs.org/phantom/-/phantom-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "5d4adddb621097fd9ed5bece328e1dac8c2a7699", + "tarball": "http://registry.npmjs.org/phantom/-/phantom-0.0.2.tgz" + }, + "0.1.0": { + "shasum": "c0f431ea651e32e15647891faf5d3ef479dd13a2", + "tarball": "http://registry.npmjs.org/phantom/-/phantom-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "c943e1c7982be8d6cddacc87a466f77195da39d2", + "tarball": "http://registry.npmjs.org/phantom/-/phantom-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "11e597f5d9fed1230836f62264463c8be86d2d31", + "tarball": "http://registry.npmjs.org/phantom/-/phantom-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "3be7491bf1076f2a92a96c153e9edec79162109b", + "tarball": "http://registry.npmjs.org/phantom/-/phantom-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "5e1827adbc4f3b3bf7e9c7e0017c689668e48f1c", + "tarball": "http://registry.npmjs.org/phantom/-/phantom-0.2.3.tgz" + } + }, + "url": "http://registry.npmjs.org/phantom/" + }, + "phonetap": { + "name": "phonetap", + "description": "PhoneTap: a tapped version of PhoneGap, to do tests without running a simulator", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "elcuervo", + "email": "elcuervo@elcuervo.co" + } + ], + "time": { + "modified": "2011-09-21T11:31:00.918Z", + "created": "2011-09-06T12:08:22.257Z", + "0.0.1": "2011-09-06T12:08:26.054Z", + "0.1.0": "2011-09-06T13:11:06.667Z", + "0.1.1": "2011-09-21T11:31:00.918Z" + }, + "author": { + "name": "elCuervo", + "email": "elcuervo@elcuervo.co" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/phonetap/0.0.1", + "0.1.0": "http://registry.npmjs.org/phonetap/0.1.0", + "0.1.1": "http://registry.npmjs.org/phonetap/0.1.1" + }, + "dist": { + "0.0.1": { + "shasum": "a28732d4e9a6580c730097f35dfead6aaa48195a", + "tarball": "http://registry.npmjs.org/phonetap/-/phonetap-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "55e60325779d1ac24dcf65f5680ab10ac6fac7c1", + "tarball": "http://registry.npmjs.org/phonetap/-/phonetap-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "4d4f19df30145ee739154b5067b5e347f0ea54a8", + "tarball": "http://registry.npmjs.org/phonetap/-/phonetap-0.1.1.tgz" + } + }, + "keywords": [ + "tdd", + "testing", + "phonegap", + "phonetap" + ], + "url": "http://registry.npmjs.org/phonetap/" + }, + "php-autotest": { + "name": "php-autotest", + "description": "A utility to watch PHP files and run tests as they change", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "khoomeister", + "email": "chris.khoo@gmail.com" + } + ], + "time": { + "modified": "2011-09-19T01:21:57.946Z", + "created": "2011-09-19T01:21:57.143Z", + "0.0.1": "2011-09-19T01:21:57.946Z" + }, + "author": { + "name": "Chris Khoo" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/php-autotest/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "498aa517134b35d62aa73ba58464120dc80f992e", + "tarball": "http://registry.npmjs.org/php-autotest/-/php-autotest-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/php-autotest/" + }, + "phpass": { + "name": "phpass", + "description": "A pure node.js JavaScript port of the portable PHP password hashing framework.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "jhurliman", + "email": "jhurliman@cull.tv" + } + ], + "time": { + "modified": "2011-06-08T23:27:21.588Z", + "created": "2011-06-08T23:27:21.049Z", + "0.1.0": "2011-06-08T23:27:21.588Z" + }, + "author": { + "name": "John Hurliman", + "email": "jhurliman@cull.tv" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/phpass/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "8e398c459c3283ef4642fd370acfb52e1cb4b56d", + "tarball": "http://registry.npmjs.org/phpass/-/phpass-0.1.0.tgz" + } + }, + "keywords": [ + "auth", + "password", + "hashing", + "blowfish", + "phpass" + ], + "url": "http://registry.npmjs.org/phpass/" + }, + "piano": { + "name": "piano", + "description": "require-hook for instrumenting your code", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "chrisdickinson", + "email": "chris@neversaw.us" + } + ], + "time": { + "modified": "2011-08-19T00:56:56.724Z", + "created": "2011-08-19T00:56:56.077Z", + "0.0.1": "2011-08-19T00:56:56.724Z" + }, + "author": { + "name": "Chris Dickinson", + "email": "chris@neversaw.us", + "url": "http://neversaw.us" + }, + "repository": { + "type": "git", + "url": "git://github.com/chrisdickinson/node-piano.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/piano/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "be7fddf6af0232ce69a2a905f357910d32a54a8c", + "tarball": "http://registry.npmjs.org/piano/-/piano-0.0.1.tgz" + } + }, + "keywords": [ + "instrumentation", + "callgraph" + ], + "url": "http://registry.npmjs.org/piano/" + }, + "pibot": { + "name": "pibot", + "description": "personal IRC bot", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "# pibot\n\nPersonal IRC bot\n\n## Installation\n```\nnpm install pibot\n```\n\n## Usage\nIf you want to create your own bot, just execute the following command and a small bot will be installed at the given path\n\n```\npibot [PATH]\n```\n\nIf you like this project, please watch this and follow me.\n\n## Contributors\nHere is a list of [Contributors](http://github.com/pkumar/pibot/contributors)\n\n### TODO\n\n__I accept pull requests and guarantee a reply back within a day__\n\n## License\nMIT/X11\n\n## Bug Reports\nReport [here](http://github.com/pkumar/pibot/issues). __Guaranteed reply within a day__.\n\n## Contact\nPavan Kumar Sunkara (pavan.sss1991@gmail.com)\n\nFollow me on [github](https://github.com/users/follow?target=pkumar), [twitter](http://twitter.com/pksunkara)\n", + "maintainers": [ + { + "name": "pksunkara", + "email": "pavan.sss1991@gmail.com" + } + ], + "time": { + "modified": "2011-12-03T10:50:15.962Z", + "created": "2011-12-03T10:50:14.402Z", + "0.1.0": "2011-12-03T10:50:15.962Z" + }, + "author": { + "name": "Pavan Kumar Sunkara", + "email": "pavan.sss1991@gmail.com", + "url": "http://pkumar.github.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/pkumar/pibot.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/pibot/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "d08a21b0b4b642874dbaed9cc86119c40d1e989f", + "tarball": "http://registry.npmjs.org/pibot/-/pibot-0.1.0.tgz" + } + }, + "keywords": [ + "irc", + "bot" + ], + "url": "http://registry.npmjs.org/pibot/" + }, + "picard": { + "name": "picard", + "description": "A Micro-framework for node.js", + "dist-tags": { + "latest": "0.3.1" + }, + "maintainers": [ + { + "name": "dantebronto", + "email": "klpresley@gmail.com" + } + ], + "time": { + "modified": "2011-05-10T21:45:50.983Z", + "created": "2011-03-04T15:49:10.386Z", + "0.3.0": "2011-03-04T15:49:10.715Z", + "0.3.1": "2011-05-10T21:45:50.983Z" + }, + "author": { + "name": "Kellen Presley", + "email": "klpresley@gmail.com" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/picard/0.3.0", + "0.3.1": "http://registry.npmjs.org/picard/0.3.1" + }, + "dist": { + "0.3.0": { + "shasum": "1806daee7457cc7d911d258bee7145028affe082", + "tarball": "http://registry.npmjs.org/picard/-/picard-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "3cb66df696118992fa6043e12ae0c35830f642b2", + "tarball": "http://registry.npmjs.org/picard/-/picard-0.3.1.tgz" + } + }, + "url": "http://registry.npmjs.org/picard/" + }, + "picardForTynt": { + "name": "picardForTynt", + "description": "A fork of the Picard Micro-framework for node.js", + "dist-tags": { + "latest": "0.3.1" + }, + "maintainers": [ + { + "name": "tynt", + "email": "dev@tynt.com" + } + ], + "time": { + "modified": "2011-04-25T22:04:00.045Z", + "created": "2011-04-25T22:03:59.419Z", + "0.3.1": "2011-04-25T22:04:00.045Z" + }, + "author": { + "name": "Kellen Presley", + "email": "klpresley@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/pekeler/picard.git" + }, + "versions": { + "0.3.1": "http://registry.npmjs.org/picardForTynt/0.3.1" + }, + "dist": { + "0.3.1": { + "shasum": "93a901b378c7f201ae81738e633aadd61063006c", + "tarball": "http://registry.npmjs.org/picardForTynt/-/picardForTynt-0.3.1.tgz" + } + }, + "url": "http://registry.npmjs.org/picardForTynt/" + }, + "picotest": { + "name": "picotest", + "description": "a very small testing library for node.js", + "dist-tags": { + "latest": "0.2.0" + }, + "readme": null, + "maintainers": [ + { + "name": "kwatch", + "email": "kwa@kuwata-lab.com" + } + ], + "time": { + "modified": "2011-12-11T23:06:15.433Z", + "created": "2011-11-09T11:07:28.551Z", + "0.1.0": "2011-11-09T11:07:30.847Z", + "0.1.1": "2011-11-09T12:24:22.578Z", + "0.2.0": "2011-12-11T23:06:15.433Z" + }, + "author": { + "name": "Makoto Kuwata", + "email": "kwa@kuwata-lab.com" + }, + "repository": { + "type": "git", + "url": "https://kwatch@bitbucket.org/kwatch/picotest.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/picotest/0.1.0", + "0.1.1": "http://registry.npmjs.org/picotest/0.1.1", + "0.2.0": "http://registry.npmjs.org/picotest/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "1c3f6f0fce6942690a1889fff28eab17f108adf7", + "tarball": "http://registry.npmjs.org/picotest/-/picotest-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "cf455e906df00d7b3eda7abf5b62d6b145193f7c", + "tarball": "http://registry.npmjs.org/picotest/-/picotest-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "2f20b06f9a71c9d94abebcbfb0dec6c023765737", + "tarball": "http://registry.npmjs.org/picotest/-/picotest-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/picotest/" + }, + "pid": { + "name": "pid", + "description": "Creates a pid file.", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-02-11T01:25:52.900Z", + "created": "2011-02-11T01:25:52.636Z", + "1.0.0": "2011-02-11T01:25:52.900Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/pid/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "02a92db60464a2f13dfb4493d0520c82e1b3777c", + "tarball": "http://registry.npmjs.org/pid/-/pid-1.0.0.tgz" + } + }, + "keywords": [ + "util", + "pid" + ], + "url": "http://registry.npmjs.org/pid/" + }, + "pieshop": { + "name": "pieshop", + "description": "A javascript interface for Tastypie supporting Django-style querying", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "chrisdickinson", + "email": "chris@neversaw.us" + } + ], + "author": { + "name": "Cody Soyland" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/pieshop/0.0.1", + "0.0.2": "http://registry.npmjs.org/pieshop/0.0.2", + "0.0.3": "http://registry.npmjs.org/pieshop/0.0.3", + "0.0.4": "http://registry.npmjs.org/pieshop/0.0.4" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/pieshop/-/pieshop-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/pieshop/-/pieshop-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/pieshop/-/pieshop-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://packages:5984/pieshop/-/pieshop-0.0.4.tgz" + } + }, + "keywords": [ + "tastypie", + "resource", + "remote", + "django" + ], + "url": "http://registry.npmjs.org/pieshop/" + }, + "pigeons": { + "name": "pigeons", + "description": "i can haz timetables", + "dist-tags": { + "latest": "0.2.5" + }, + "maintainers": [ + { + "name": "Stanley", + "email": "staszek.wasiutynski@gmail.com" + } + ], + "time": { + "modified": "2011-11-02T12:36:02.840Z", + "created": "2010-12-29T22:46:59.769Z", + "0.1.0": "2010-12-29T22:47:00.189Z", + "0.1.99": "2011-03-21T21:11:50.227Z", + "0.1.101": "2011-03-25T21:40:32.956Z", + "0.1.102": "2011-03-26T14:44:08.233Z", + "0.1.103": "2011-03-29T16:59:08.416Z", + "0.1.104": "2011-04-06T18:41:39.443Z", + "0.1.105": "2011-04-08T16:51:28.041Z", + "0.1.106": "2011-06-02T07:21:47.041Z", + "0.1.107": "2011-06-04T19:18:30.415Z", + "0.1.108": "2011-06-08T20:45:26.597Z", + "0.2.0": "2011-07-06T16:44:27.775Z", + "0.2.1": "2011-07-06T19:43:14.973Z", + "0.2.2": "2011-07-07T11:38:18.785Z", + "0.2.3": "2011-07-08T11:29:31.195Z", + "0.2.5": "2011-11-02T12:36:02.840Z" + }, + "author": { + "name": "Stanisław Wasiutyński", + "email": "staszek.wasiutynski@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Stanley/pigeons.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/pigeons/0.1.0", + "0.1.99": "http://registry.npmjs.org/pigeons/0.1.99", + "0.1.101": "http://registry.npmjs.org/pigeons/0.1.101", + "0.1.102": "http://registry.npmjs.org/pigeons/0.1.102", + "0.1.103": "http://registry.npmjs.org/pigeons/0.1.103", + "0.1.104": "http://registry.npmjs.org/pigeons/0.1.104", + "0.1.105": "http://registry.npmjs.org/pigeons/0.1.105", + "0.1.106": "http://registry.npmjs.org/pigeons/0.1.106", + "0.1.107": "http://registry.npmjs.org/pigeons/0.1.107", + "0.1.108": "http://registry.npmjs.org/pigeons/0.1.108", + "0.2.0": "http://registry.npmjs.org/pigeons/0.2.0", + "0.2.1": "http://registry.npmjs.org/pigeons/0.2.1", + "0.2.2": "http://registry.npmjs.org/pigeons/0.2.2", + "0.2.3": "http://registry.npmjs.org/pigeons/0.2.3", + "0.2.5": "http://registry.npmjs.org/pigeons/0.2.5" + }, + "dist": { + "0.1.0": { + "shasum": "7548260488d893920d422e4f7f1e35e28dc751e8", + "tarball": "http://registry.npmjs.org/pigeons/-/pigeons-0.1.0.tgz" + }, + "0.1.99": { + "shasum": "284c402614725f060295feda663dee859b43cc5b", + "tarball": "http://registry.npmjs.org/pigeons/-/pigeons-0.1.99.tgz" + }, + "0.1.101": { + "shasum": "1789e01c07f5666b8af91d58dbf9a88978191f50", + "tarball": "http://registry.npmjs.org/pigeons/-/pigeons-0.1.101.tgz" + }, + "0.1.102": { + "shasum": "15e42c93adc87fd09d69274f3b31b64a528534c3", + "tarball": "http://registry.npmjs.org/pigeons/-/pigeons-0.1.102.tgz" + }, + "0.1.103": { + "shasum": "b6ead32b796bd3a8c3f07f90a62033cdaea75745", + "tarball": "http://registry.npmjs.org/pigeons/-/pigeons-0.1.103.tgz" + }, + "0.1.104": { + "shasum": "036152ee7621fd11520483e6f288e6101561373e", + "tarball": "http://registry.npmjs.org/pigeons/-/pigeons-0.1.104.tgz" + }, + "0.1.105": { + "shasum": "f79503b05ccb48d18df757ca459ab2671ff16c6b", + "tarball": "http://registry.npmjs.org/pigeons/-/pigeons-0.1.105.tgz" + }, + "0.1.106": { + "shasum": "c22bddef8d0c497003979999be5d78a6fd5553bb", + "tarball": "http://registry.npmjs.org/pigeons/-/pigeons-0.1.106.tgz" + }, + "0.1.107": { + "shasum": "d0baaf94cc95bd87312e67c92b2d81b1bcc71886", + "tarball": "http://registry.npmjs.org/pigeons/-/pigeons-0.1.107.tgz" + }, + "0.1.108": { + "shasum": "de87bf15d286f7cc8f6a0901ee805a8b14bff87a", + "tarball": "http://registry.npmjs.org/pigeons/-/pigeons-0.1.108.tgz" + }, + "0.2.0": { + "shasum": "ce2545e9e955e9204549a836d69470ba46a21a2f", + "tarball": "http://registry.npmjs.org/pigeons/-/pigeons-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "6615039addaa68b7aa08be1a90bfe3ecb0029313", + "tarball": "http://registry.npmjs.org/pigeons/-/pigeons-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "a9c241c9caddb02dbf45fe9469572bcaeb289f9a", + "tarball": "http://registry.npmjs.org/pigeons/-/pigeons-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "bb1a99144efb0e0c37f2f669aa463830d65c5645", + "tarball": "http://registry.npmjs.org/pigeons/-/pigeons-0.2.3.tgz" + }, + "0.2.5": { + "shasum": "a9fb15a83fa39efc6a1fbc7fc33c6a6a1b9b62c4", + "tarball": "http://registry.npmjs.org/pigeons/-/pigeons-0.2.5.tgz" + } + }, + "url": "http://registry.npmjs.org/pigeons/" + }, + "pile": { + "name": "pile", + "description": "Awesome asset manager for Node.js and Express", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "epeli", + "email": "esa-matti@suuronen.org" + } + ], + "time": { + "modified": "2011-10-02T10:16:09.156Z", + "created": "2011-10-01T11:46:21.744Z", + "0.2.0": "2011-10-01T11:46:22.476Z", + "0.2.1": "2011-10-02T10:16:09.156Z" + }, + "author": { + "name": "Esa-Matti Suuronen" + }, + "repository": { + "type": "git", + "url": "git://github.com/epeli/node-pile.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/pile/0.2.0", + "0.2.1": "http://registry.npmjs.org/pile/0.2.1" + }, + "dist": { + "0.2.0": { + "shasum": "7dadcc6e6bcf4e19c43fe815ee528303e0420b1e", + "tarball": "http://registry.npmjs.org/pile/-/pile-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "2c889ea9a309b7e0a933144a36bf114489bc3860", + "tarball": "http://registry.npmjs.org/pile/-/pile-0.2.1.tgz" + } + }, + "url": "http://registry.npmjs.org/pile/" + }, + "piler": { + "name": "piler", + "description": "Awesome Asset Manager for Node.js", + "dist-tags": { + "latest": "0.3.3" + }, + "maintainers": [ + { + "name": "epeli", + "email": "esa-matti@suuronen.org" + } + ], + "time": { + "modified": "2011-12-11T11:40:09.830Z", + "created": "2011-10-13T21:03:46.931Z", + "0.3.0": "2011-10-13T21:03:47.642Z", + "0.3.1": "2011-11-17T17:24:33.236Z", + "0.3.3": "2011-12-11T11:40:09.830Z" + }, + "author": { + "name": "Esa-Matti Suuronen" + }, + "repository": { + "type": "git", + "url": "git://github.com/epeli/piler.git" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/piler/0.3.0", + "0.3.1": "http://registry.npmjs.org/piler/0.3.1", + "0.3.3": "http://registry.npmjs.org/piler/0.3.3" + }, + "dist": { + "0.3.0": { + "shasum": "079dcd0e42a90f025dc5e55d1c0143cdbb092192", + "tarball": "http://registry.npmjs.org/piler/-/piler-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "99dc63619d666583d0ce067a0422968e54f47bca", + "tarball": "http://registry.npmjs.org/piler/-/piler-0.3.1.tgz" + }, + "0.3.3": { + "shasum": "0b050078dcaf0ce08ae285a90084bd7280725f32", + "tarball": "http://registry.npmjs.org/piler/-/piler-0.3.3.tgz" + } + }, + "url": "http://registry.npmjs.org/piler/" + }, + "piles": { + "name": "piles", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "epeli", + "email": "esa-matti@suuronen.org" + } + ], + "time": { + "modified": "2011-09-29T13:09:18.672Z", + "created": "2011-09-03T10:03:59.272Z", + "0.1.0": "2011-09-03T10:03:59.991Z", + "0.1.1": "2011-09-27T22:15:53.518Z", + "0.1.2": "2011-09-29T13:09:18.672Z" + }, + "author": { + "name": "Esa-Matti Suuronen" + }, + "repository": { + "type": "git", + "url": "git://github.com/epeli/node-piles.git" + }, + "description": "Awesome Asset Manager for Node.js and Express", + "versions": { + "0.1.0": "http://registry.npmjs.org/piles/0.1.0", + "0.1.1": "http://registry.npmjs.org/piles/0.1.1", + "0.1.2": "http://registry.npmjs.org/piles/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "6f655aea1e369ba771c887bced094325e71711b1", + "tarball": "http://registry.npmjs.org/piles/-/piles-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "4b8004ff0b2edcf5c7633f1aaa0acfb515ef2748", + "tarball": "http://registry.npmjs.org/piles/-/piles-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "e6265242fce872b33e2e1e0ffbf5822bfd703f4f", + "tarball": "http://registry.npmjs.org/piles/-/piles-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/piles/" + }, + "pillar": { + "name": "pillar", + "description": "Web framework for node.js", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "cohara87", + "email": "cohara87@gmail.com" + } + ], + "author": { + "name": "Chris O'Hara", + "email": "cohara87@gmail.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/chriso/pillar.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/pillar/0.1.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/pillar/-/pillar-0.1.0.tgz" + } + }, + "keywords": [ + "framework", + "mvc", + "express", + "connect", + "services" + ], + "url": "http://registry.npmjs.org/pillar/" + }, + "pilot": { + "name": "pilot", + "description": "Pilot is a small library used in the creation of Ace editor.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "fjakobs", + "email": "fabian.jakobs@web.de" + } + ], + "time": { + "modified": "2011-07-11T09:55:08.496Z", + "created": "2011-07-11T09:55:07.878Z", + "0.1.1": "2011-07-11T09:55:08.496Z" + }, + "author": { + "name": "Fabian Jakobs", + "email": "fabian@ajax.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/ajaxorg/ace.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/pilot/0.1.1" + }, + "dist": { + "0.1.1": { + "shasum": "9d3f0d42bd1d7ab687add5b65f6dd931b1a97433", + "tarball": "http://registry.npmjs.org/pilot/-/pilot-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/pilot/" + }, + "pinboard": { + "name": "pinboard", + "description": "A node.js module to access Pinboard.in via its API", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "frozzare", + "email": "fredrik.forsmo@gmail.com" + } + ], + "time": { + "modified": "2011-11-05T23:16:40.596Z", + "created": "2011-08-24T09:51:00.937Z", + "0.1.0": "2011-08-24T09:51:01.546Z", + "0.1.1": "2011-11-05T23:16:40.596Z" + }, + "author": { + "name": "Fredrik Forsmo", + "email": "fredrik.forsmo@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/duofy/node-pinboard.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/pinboard/0.1.0", + "0.1.1": "http://registry.npmjs.org/pinboard/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "ca00a7f77b63cab092f93d499c5c373c48ac03a2", + "tarball": "http://registry.npmjs.org/pinboard/-/pinboard-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "5f3cf57f30c4a24facc1c289f82c3f40ca4974c0", + "tarball": "http://registry.npmjs.org/pinboard/-/pinboard-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/pinboard/" + }, + "pinf-loader-js": { + "name": "pinf-loader-js", + "description": "Versatile & Complete Cross-Platform CommonJS JavaScript Module, Package & Program Loader", + "dist-tags": { + "latest": "0.2.24" + }, + "maintainers": [ + { + "name": "cadorn", + "email": "christoph@christophdorn.com" + } + ], + "time": { + "modified": "2011-12-01T22:21:23.696Z", + "created": "2011-03-07T21:42:07.880Z", + "0.0.1": "2011-03-07T21:42:08.277Z", + "0.0.2": "2011-03-07T22:35:02.769Z", + "0.2.14": "2011-09-30T21:30:41.535Z", + "0.2.15": "2011-09-30T21:49:51.883Z", + "0.2.16": "2011-10-01T03:41:33.866Z", + "0.2.17": "2011-10-01T05:32:41.082Z", + "0.2.18": "2011-10-02T22:25:02.891Z", + "0.2.19": "2011-10-03T00:21:24.187Z", + "0.2.20": "2011-10-03T20:06:21.773Z", + "0.2.21": "2011-10-04T23:07:08.301Z", + "0.2.22": "2011-11-14T22:06:45.084Z", + "0.2.23": "2011-11-17T22:18:51.424Z", + "0.2.24": "2011-12-01T22:21:23.696Z" + }, + "author": { + "name": "Christoph Dorn", + "email": "christoph@christophdorn.com", + "url": "http://www.christophdorn.com/" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/pinf-loader-js/0.0.1", + "0.0.2": "http://registry.npmjs.org/pinf-loader-js/0.0.2", + "0.2.14": "http://registry.npmjs.org/pinf-loader-js/0.2.14", + "0.2.15": "http://registry.npmjs.org/pinf-loader-js/0.2.15", + "0.2.16": "http://registry.npmjs.org/pinf-loader-js/0.2.16", + "0.2.17": "http://registry.npmjs.org/pinf-loader-js/0.2.17", + "0.2.18": "http://registry.npmjs.org/pinf-loader-js/0.2.18", + "0.2.19": "http://registry.npmjs.org/pinf-loader-js/0.2.19", + "0.2.20": "http://registry.npmjs.org/pinf-loader-js/0.2.20", + "0.2.21": "http://registry.npmjs.org/pinf-loader-js/0.2.21", + "0.2.22": "http://registry.npmjs.org/pinf-loader-js/0.2.22", + "0.2.23": "http://registry.npmjs.org/pinf-loader-js/0.2.23", + "0.2.24": "http://registry.npmjs.org/pinf-loader-js/0.2.24" + }, + "dist": { + "0.0.1": { + "shasum": "8bc06e0902d185e7a234443778519856473e2785", + "tarball": "http://registry.npmjs.org/pinf-loader-js/-/pinf-loader-js-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "69b61d5f63c690eb0b19fab415c4aca2d7142fda", + "tarball": "http://registry.npmjs.org/pinf-loader-js/-/pinf-loader-js-0.0.2.tgz" + }, + "0.2.14": { + "shasum": "599f185b347891d2c008b29475f50943540bc72b", + "tarball": "http://registry.npmjs.org/pinf-loader-js/-/pinf-loader-js-0.2.14.tgz" + }, + "0.2.15": { + "shasum": "9a18c17333a8355cc0824997c95d60000e49c8fe", + "tarball": "http://registry.npmjs.org/pinf-loader-js/-/pinf-loader-js-0.2.15.tgz" + }, + "0.2.16": { + "shasum": "c9ec86964ac02fb9bb85ed6f103bf4de1dd1b4e4", + "tarball": "http://registry.npmjs.org/pinf-loader-js/-/pinf-loader-js-0.2.16.tgz" + }, + "0.2.17": { + "shasum": "1ff740c064202408f7393b0aefc552f439cbd0e1", + "tarball": "http://registry.npmjs.org/pinf-loader-js/-/pinf-loader-js-0.2.17.tgz" + }, + "0.2.18": { + "shasum": "7ed3b1719686dd314ed72081961b46b0308415ec", + "tarball": "http://registry.npmjs.org/pinf-loader-js/-/pinf-loader-js-0.2.18.tgz" + }, + "0.2.19": { + "shasum": "8e7964f4f248d177d57a7a7ddbed75d3db5dfc2c", + "tarball": "http://registry.npmjs.org/pinf-loader-js/-/pinf-loader-js-0.2.19.tgz" + }, + "0.2.20": { + "shasum": "6042cd8911aba34c8c8da3a1a8cd67f6527b0329", + "tarball": "http://registry.npmjs.org/pinf-loader-js/-/pinf-loader-js-0.2.20.tgz" + }, + "0.2.21": { + "shasum": "7a457045e80585b5882c6858cfaed6da9cc14ccc", + "tarball": "http://registry.npmjs.org/pinf-loader-js/-/pinf-loader-js-0.2.21.tgz" + }, + "0.2.22": { + "shasum": "05b21157e85b33bae97bbf58de175d41761d2d0e", + "tarball": "http://registry.npmjs.org/pinf-loader-js/-/pinf-loader-js-0.2.22.tgz" + }, + "0.2.23": { + "shasum": "c470b3532b7ce937e4767fdec45a46f243e30f41", + "tarball": "http://registry.npmjs.org/pinf-loader-js/-/pinf-loader-js-0.2.23.tgz" + }, + "0.2.24": { + "shasum": "a51b59181b75924ac78468514575405cc0c1db02", + "tarball": "http://registry.npmjs.org/pinf-loader-js/-/pinf-loader-js-0.2.24.tgz" + } + }, + "url": "http://registry.npmjs.org/pinf-loader-js/" + }, + "pinf-loader-js-demos-npmpackage": { + "name": "pinf-loader-js-demos-npmpackage", + "description": "Sample package that depends on pinf-loader-js and loads a program.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "cadorn", + "email": "christoph@christophdorn.com" + } + ], + "time": { + "modified": "2011-03-07T21:56:51.603Z", + "created": "2011-03-07T21:56:51.181Z", + "0.0.1": "2011-03-07T21:56:51.603Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/pinf-loader-js-demos-npmpackage/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "0437087f7bdbd4c0b5163630cca8047b359954d4", + "tarball": "http://registry.npmjs.org/pinf-loader-js-demos-npmpackage/-/pinf-loader-js-demos-npmpackage-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/pinf-loader-js-demos-npmpackage/" + }, + "ping": { + "name": "ping", + "description": "a simple wrapper for ping", + "dist-tags": { + "latest": "0.1.1" + }, + "readme": null, + "maintainers": [ + { + "name": "danielzzz", + "email": "daniel@zelisko.net" + } + ], + "time": { + "modified": "2011-11-23T13:04:23.171Z", + "created": "2011-11-23T12:31:22.367Z", + "0.1.0": "2011-11-23T12:31:24.677Z", + "0.1.1": "2011-11-23T13:04:23.171Z" + }, + "author": { + "name": "danielzzz", + "email": "daniel@zelisko.net", + "url": "http://daniel.zelisko.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/danielzzz/node-ping.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/ping/0.1.0", + "0.1.1": "http://registry.npmjs.org/ping/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "19c56eeac7f5bf642c8b428d7c716863a307838d", + "tarball": "http://registry.npmjs.org/ping/-/ping-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "47cb448a80b20f39b363928d0545e665f401b064", + "tarball": "http://registry.npmjs.org/ping/-/ping-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/ping/" + }, + "pingback": { + "name": "pingback", + "description": "pingbacks for node.js", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "chjj", + "email": "chjjeffrey@gmail.com" + } + ], + "time": { + "modified": "2011-07-20T06:51:51.889Z", + "created": "2011-07-16T14:50:25.774Z", + "0.0.1": "2011-07-16T14:50:26.201Z", + "0.0.2": "2011-07-20T06:51:51.889Z" + }, + "author": { + "name": "Christopher Jeffrey" + }, + "repository": { + "type": "git", + "url": "git://github.com/chjj/node-pingback.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/pingback/0.0.1", + "0.0.2": "http://registry.npmjs.org/pingback/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "ac64e7242840b00815b499cccaca657deaa4e356", + "tarball": "http://registry.npmjs.org/pingback/-/pingback-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "1b5b88a36b1e41b267ca540883fe7f6593097dfa", + "tarball": "http://registry.npmjs.org/pingback/-/pingback-0.0.2.tgz" + } + }, + "keywords": [ + "pingback", + "blog", + "rpc" + ], + "url": "http://registry.npmjs.org/pingback/" + }, + "pingdom": { + "name": "pingdom", + "description": "Pingdom JSON API library", + "dist-tags": { + "latest": "0.6.2" + }, + "maintainers": [ + { + "name": "ryanbreen", + "email": "ryan@ryanbreen.com" + } + ], + "time": { + "modified": "2011-08-31T22:13:16.015Z", + "created": "2011-03-16T15:43:06.795Z", + "0.0.1": "2011-03-16T15:43:07.027Z", + "0.1.0": "2011-03-16T19:58:14.990Z", + "0.5.0": "2011-03-25T15:50:57.707Z", + "0.6.0": "2011-03-25T16:07:30.758Z", + "0.6.2": "2011-08-31T22:13:16.015Z" + }, + "author": { + "name": "Ryan Breen", + "email": "ryan@ryanbreen.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/pingdom/0.0.1", + "0.1.0": "http://registry.npmjs.org/pingdom/0.1.0", + "0.5.0": "http://registry.npmjs.org/pingdom/0.5.0", + "0.6.0": "http://registry.npmjs.org/pingdom/0.6.0", + "0.6.2": "http://registry.npmjs.org/pingdom/0.6.2" + }, + "dist": { + "0.0.1": { + "shasum": "a02ac13a5801ad34430785f8a111c7a86e71628a", + "tarball": "http://registry.npmjs.org/pingdom/-/pingdom-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "d3b9f287df1634971238cfc4a418dae27b68f4e7", + "tarball": "http://registry.npmjs.org/pingdom/-/pingdom-0.1.0.tgz" + }, + "0.5.0": { + "shasum": "45b187668e7663271b7ad760aec151012322189f", + "tarball": "http://registry.npmjs.org/pingdom/-/pingdom-0.5.0.tgz" + }, + "0.6.0": { + "shasum": "2bd95a8cc720e9a196b5b3cf40fccb06aec03726", + "tarball": "http://registry.npmjs.org/pingdom/-/pingdom-0.6.0.tgz" + }, + "0.6.2": { + "shasum": "4b81dab4a55aeb3cd66ebb8490a7bae2afe9801c", + "tarball": "http://registry.npmjs.org/pingdom/-/pingdom-0.6.2.tgz" + } + }, + "url": "http://registry.npmjs.org/pingdom/" + }, + "pingles-msgpack-rpc": { + "name": "pingles-msgpack-rpc", + "description": "node-msgpack-rpc is an implementation of the Msgpack-RPC protocol specification for node.js", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "pingles", + "email": "paul@oobaloo.co.uk" + } + ], + "time": { + "modified": "2011-10-11T08:09:54.906Z", + "created": "2011-10-11T07:58:58.557Z", + "0.0.1": "2011-10-11T07:58:59.788Z", + "0.0.2": "2011-10-11T08:09:54.906Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/pingles/node-msgpack-rpc.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/pingles-msgpack-rpc/0.0.1", + "0.0.2": "http://registry.npmjs.org/pingles-msgpack-rpc/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "851b6d99b78fba39bf13def9aedd2526b2b94ce9", + "tarball": "http://registry.npmjs.org/pingles-msgpack-rpc/-/pingles-msgpack-rpc-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "be276b0cea8308ec37aa6409d55901a8587ac363", + "tarball": "http://registry.npmjs.org/pingles-msgpack-rpc/-/pingles-msgpack-rpc-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/pingles-msgpack-rpc/" + }, + "pingles-zmq": { + "name": "pingles-zmq", + "description": "Bindings for node.js to zeromq compatible with node 0.5", + "dist-tags": { + "latest": "1.0.4" + }, + "maintainers": [ + { + "name": "pingles", + "email": "paul@oobaloo.co.uk" + } + ], + "time": { + "modified": "2011-10-06T11:48:14.118Z", + "created": "2011-10-06T11:34:52.276Z", + "1.0.3": "2011-10-06T11:34:53.467Z", + "1.0.4": "2011-10-06T11:48:14.118Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/JustinTulloss/zeromq.node.git" + }, + "versions": { + "1.0.3": "http://registry.npmjs.org/pingles-zmq/1.0.3", + "1.0.4": "http://registry.npmjs.org/pingles-zmq/1.0.4" + }, + "dist": { + "1.0.3": { + "shasum": "12972deb708c062a65107654661c8d370c2a5eee", + "tarball": "http://registry.npmjs.org/pingles-zmq/-/pingles-zmq-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "5b7558bbeec13d8dc1c56f03724ad81b2d47f593", + "tarball": "http://registry.npmjs.org/pingles-zmq/-/pingles-zmq-1.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/pingles-zmq/" + }, + "pintpay": { + "name": "pintpay", + "description": "Pintpay API library", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "pvwoods", + "email": "painteroflight@gmail.com" + } + ], + "time": { + "modified": "2011-06-08T22:12:44.117Z", + "created": "2011-06-08T22:12:43.503Z", + "0.0.1": "2011-06-08T22:12:44.117Z" + }, + "author": { + "name": "Philip Woods" + }, + "repository": { + "type": "git", + "url": "git://github.com/pvwoods/pintpay.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/pintpay/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "9bb6ee501d258d2aa7c95d21fb124508ca474288", + "tarball": "http://registry.npmjs.org/pintpay/-/pintpay-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/pintpay/" + }, + "pintura": { + "name": "pintura", + "description": "JSGI-based RESTful JSON/JavaScript server", + "dist-tags": { + "latest": "0.3.1" + }, + "readme": "[Pintura](http://www.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=pintura&sll=40.554798,-111.881839&sspn=0.009211,0.016351&ie=UTF8&hq=&hnear=Pintura,+Washington,+Utah&ll=37.31666,-113.171539&spn=0.308538,0.523224&t=p&z=11)\r\nis a cross-platform server side JavaScript based REST architecture web framework \r\nusing standards based HTTP client/server interaction with a focus on JSON formatted data. \r\nPintura gives you out of the box RESTful HTTP/JSON interface to data, you can simply\r\ncreate data models and Pintura automatically provides an HTTP interface. Pintura consists of reusable \r\n[CommonJS](http://wiki.commonjs.org/) modules and \r\n[JSGI](http://jackjs.org/jsgi-spec.html) middleware such that it can be used on any \r\nJSGI compliant JavaScript platform, but is tested on Node.js and Jack 0.3. Pintura \r\nforms the core of the [Persevere](http://www.persvr.org/) 2.0 framework which is \r\ndesigned for rich Internet applications that rely heavily on Ajax-driven data \r\ncommunication from the browser. To learn more about features, capabilities, and philosophy of\r\nPintura see the [introduction to Pintura](http://www.sitepen.com/blog/2010/01/22/introducing-pintura/).\r\nThe [getting started with Pintura](http://www.sitepen.com/blog/2010/01/25/getting-started-with-pintura/) \r\narticle provides a great starting point for using Pintura to build Persevere applications.\r\nPintura is primarily composed of JSGI middleware components, and these components\r\nare [described here](http://www.sitepen.com/blog/2010/03/04/pintura-jsgi-modules/).\r\n\r\nSetup Pintura\r\n=================\r\n\r\nOne of the easiest way to get started with Pintura is start with the \r\n[Persevere example app](http://github.com/kriszyp/persevere-example-wiki),\r\nwhich can be downloaded and started with [Nodules](http://github.com/kriszyp/nodules).\r\nIt is recommended that you install Pintura such that it is available in require statements\r\nunder the \"pintura\" path. This can easily be done with a package mapping compliant module\r\nloader like [Nodules](http://github.com/kriszyp/nodules) by using a mapping in your \r\npackage.json (and then Pintura will be automatically downloaded for you):\r\n\r\n \"mappings\": {\r\n\t \"pintura\": \"jar:http://github.com/kriszyp/pintura/zipball/master!/lib/\"\r\n }\r\n\r\nYou can then use \"app\" property from require(\"pintura/pintura\") as a JSGI application. \r\nWith [jsgi-node](http://github.com/kriszyp/jsgi-node) you can start Pintura:\r\n\r\n require(\"jsgi-node\").start(require(\"pintura/pintura\").app); \r\n\r\nOr with Jack:\r\n\r\n exports.app = require(\"pintura/pintura\").app;\r\n \r\nYou can see a more in-depth example of serving static files in combination with Pintura\r\nin the Persevere example app [startup file](http://github.com/kriszyp/persevere-example-wiki/blob/master/lib/index.js).\r\n \r\nUsing Pintura\r\n===========\r\n\r\nPersevere applications are generally built upon models, which act as classes for data.\r\n[Perstore](http://github.com/kriszyp/perstore) is the persistence library that is used \r\nby Persevere for defining models. Models defined with Perstore are automatically\r\nmade accessible through HTTP by Pintura. A simple example of a model is:\r\n\r\n var Model = require(\"perstore/model\").Model,\r\n \tstore = require(\"perstore/mongodb\").MongoDB(\"Product\");\r\n Product = Model(\"Product\",store, {\r\n properties: {\r\n name: String\r\n // we can define other properties, all \r\n },\r\n // we can define handlers\r\n put: function(object, directives){\r\n object.updated = new Date();\r\n store.put(object, directives);\r\n }\r\n }); \r\n\r\nHTTP/REST Basics\r\n----------------\r\n\r\nWith Persevere we can automatically interact with this data model through standard\r\nHTTP requests:\r\n\r\n* GET /{model}/{id} - Gets the object with the given id from the model store.\r\n* PUT /{model}/{id} - Updates or creates object with the given id in the model store.\r\n* DELETE /{model}/{id} - Deletes the object with the given id from the model store.\r\n* POST /{model}/ - Creates or incrementally updates an object in model store.\r\n\r\nPintura converts HTTP requests to method calls on the model. When an HTTP request\r\nis received it is converted to a call to the model of the form:\r\n\r\n {model}.{httpMethod}({id or body},metadata);\r\nFor example if a request is received:\r\n\r\n GET /Product/33 \r\n\r\nThis will result in a call to the model like:\r\n\r\n Product.get(\"33\", metadata); \r\n\r\nFor the model above, there is no \"get\" method defined, so the default \"get\" handler\r\nwould be used, which delegates to the store to get the object by id. If we made a\r\nrequest like:\r\n\r\n PUT /Product/33 \r\n\r\nThis would call the \"put\" handler defined in the model above.\r\nOne can also query stores through HTTP. Requests of the form /{model}/?{query}\r\nare passed through to the model by calls to the \"query\" method on the model.\r\nPerstore provides \r\n[query parsing capabilities](http://github.com/kriszyp/perstore) and stores implement \r\nquery execution (dependent on the capabilities of the DB).\r\nAn example of a query:\r\n\r\n GET /Product/?type=shoe&price=lt=20&sort(-rating)\r\n\r\nSecurity\r\n========\r\n\r\nPersevere's facet-based security model forms the foundation of access control and\r\nis [described in this article](http://www.sitepen.com/blog/2010/03/08/object-capability-model-and-facets-in-perstorepintura/).\r\nFacets are used to define the different levels of access for models. Pintura's security\r\nconfiguration object can then be configured to define how users are authenticated\r\nand which facets or access levels each user is given. The security configuration object\r\nis available at require(\"pintura/pintura\").config.security. The primary functions\r\nthat can be overriden are:\r\n\r\n* authenticate(username, password) - The authenticate method\r\nallows you to define a custom authentication method and defaults to authenticating\r\nagainst the auto-generated User model. Should return a user object.\r\n* getAllowedFacets(user, request) - Allows you to define which facets are available\r\nfor a given user. This should return an array of facets. By default this grants \r\nfull access to everything (the require(\"pintura/security\").FullAccess facet) for all users.\r\n* createUser(username, password) - This should create a new user for with the given\r\ncredentials.\r\n* getUsername(user) - Should return the name of the given user.\r\n* {g|s}etUserClass - Retrieve or set the user class used to find users\r\n* {g|s}etAuthClass - Retrieve or set the authentication class used to find authentication tokens\r\n\r\nError Handling\r\n===========\r\n\r\nPintura includes middleware for catching errors and converting them to appropriate\r\nHTTP error status codes. The following uncaught errors (until the error middleware catches them)\r\nare translated:\r\n\r\n* URIError - 400\r\n* TypeError - 403\r\n* require(\"perstore/errors\").NotFoundError - 404\r\n* require(\"perstore/errors\").PreconditionFailed - 412\r\n* require(\"perstore/errors\").AccessError - if user is authenticated 403, if not 401\r\n* require(\"perstore/errors\").MethodNotAllowedError - 405\r\n* RangeError - 416\r\n* Other errors - 500 or if the error object has a \"status\" property, that will be used\r\n\r\nContent Negotiation\r\n===============\r\n\r\nOne of the core concepts of the REST architecture is content negotiation which permits\r\nmultiple views or representations of resources or objects. Providing content negotiation\r\nis a key functionality that Pintura provides. Pintura utilizes a set of media type handlers\r\nto find the best representation for serializing (or deserializing) data. Pintura comes\r\nwith several media type handlers including:\r\n \r\n* json � JSON media handler\r\n* javascript � Similar to the JSON media handler, but will serialize to additional JavaScript specific types such as dates, NaN, functions, and other types that do not exist in JSON.\r\n* multipart-form-data and url-encoded � Used for parsing form data.\r\n* csv - Comma separated values\r\n* atom - Atom based view\r\n* html - A very simple HTML view of data.\r\n\r\nTo request a JSON view of data, include an Accept header in your HTTP request:\r\n\r\n Accept: application/json\r\n\r\nAccept headers can include multiple options and quality values. By default application/javascript\r\nis considered the highest quality represention by Pintura (it is basically the same as JSON\r\nbut also can include date literals and special numeric types like NaN and Infinite).\r\n\r\nCreating new media types is common way to extend Pintura with additional formats.\r\nTo create a new media type handler, use the Media constructor from the \"media\" module.\r\nThis constructor takes an object argument with four properties:\r\n\r\n* mediaType - The name of the media type.\r\n* quality - A numeric value indicating the quality of the media type (generally a number from 0 - 1).\r\n* serialize - A function that is called to serialize the data (JavaScript objects or arrays) to string output for the response.\r\n* deserialize - A function that is called to deserialize the request input data to JavaScript objects or arrays.\r\n\r\n\r\nPaging/Range Requests\r\n-------------------\r\n\r\nPintura can handle requests for \"pages\" of data, query results with start and ending\r\nindex limits, through Range headers. To request items 10 through 19 of a query,\r\ninclude a Range header:\r\n\r\n GET /Product/?type=shoe\r\n Range: items=10-19\r\n\r\nThe server will return a Content-Range header indicating the range returned and total\r\ncount of the results. \r\n\r\nBulk Updates and Comet\r\n================\r\n\r\nPintura utilizes the message/* category of media types for indicating a set of requests \r\nor messages. Normally each HTTP request triggers one action in the store in its own\r\ntransaction, but a \r\nrequest with a content type of message/sub-type (usually message/json or message/javascript)\r\nwill be treated as a set of requests\r\nthat are all processed within one transaction. This allows you to do several updates\r\nwith one HTTP request. For request with a set of messages, the body should be an\r\narray of objects, where each object can have the following properties (only \"method\" is required):\r\n\r\n* to - The id/path of the target object of the action. This is resolved relative to the path of the request URI.\r\n* method - The method to execute, can be \"get\", \"put\", \"post\", \"subscribe\", or any other method on the target store.\r\n* body - The body of the request; the main payload of data.\r\n* queryString - query string\r\n* id - A message id, any subsequent message with the same id should be ignored (allows for idempotent messages) \r\n* metadata - Any metadata needed for the request\r\n\r\nFor example, updating two objects could be done:\r\n\r\n POST /Product/\r\n Content-Type: message/json \r\n Accept: message/json\r\n \r\n [\r\n {to:\"2\", method:\"put\", body:{name:\"updated 2\"}, id: 1},\r\n {to:\"3\", method:\"put\", body:{name:\"updated 3\"}, id: 2}\r\n ]\r\n \r\nThe message/* media type can also be used in Accept headers to indicate that a response\r\nwith a set of messages should be returned. This should be used for bulk updates. A\r\nresponse will be an array of objects where each object may have the following properties:\r\n\r\n* from - The id/path of the object that was acted on \r\n* body - The body of the response\r\n* id - The id of the message that this message is in response to\r\n* type - The type of the action that was executed\r\n\r\nAn example response (for the requests above):\r\n\r\n Content-Type: message/json\r\n \r\n [\r\n {\"from\":\"2\", \"body\":{\"name\":\"updated 2\"}, \"id\": 1},\r\n {\"from\":\"3\", \"body\":{\"name\":\"updated 3\"}, \"id\": 2}\r\n ]\r\n\r\nReal-Time/Comet\r\n-----\r\n\r\nThe message/* media type can also be useful for real-time notification of events, AKA\r\ncomet. Stores and models that support notifications can return observable objects, typically\r\nthrough the \"subscribe\" method, to indicate that multiple events may be emitted that\r\ncan later be delivered to the client. When message requests are observable instead of\r\ndirect value, responses will not be sent to the client until there is a message ready to be sent.\r\nFor example, to subscribe to all events that take place on /User/john:\r\n\r\n POST /User/\r\n Content-Type: message/json\r\n Client-Id: 251ab4ac9312f\r\n Accept: message/json\r\n \r\n [\r\n {to:\"john\", method:\"subscribe\"}\r\n ]\r\n\r\nThe response to the client will be delayed until an event/message for /User/john occurs.\r\n\r\nFor maximum browser compatibility, typically long-polling is used for comet applications.\r\nHowever, there is always a time gap between responses and the next request from the\r\nbrowser. Consequently for continuous gap-free subscriptions, it can be highly useful\r\nto emulate a continuous connection or queue for messages. This can be done by \r\nincluding a Client-Id header. Clients can generate a random id, and repeated connect\r\nusing the same client id. Between requests, any events (from subscriptions) will be\r\npushed into a queue for the given client id until the next request.\r\n\r\nThe Client-Id header can be included in standard requests as well, allowing other operations\r\nto add event sources and subscriptions to the current client queue. \r\n\r\nSome browsers support XHR streaming and do not require long-polling repeated reconnections.\r\nIf you wish to use streaming, include a Streaming header:\r\n\r\n Streaming: true\r\n \r\nThe response will continue indefinitely, sending new messages as they occur. \r\n\r\nCross domain support\r\n-------------------\r\n\r\nPintura includes support for cross-domain requests from the browser/JavaScript through\r\nJSONP, window.name, or CORS. To make a request with JSONP, you can do add a callback\r\nparameter\r\n\r\n /Product/33?callback=my_callback\r\n\r\nSessions\r\n========\r\n\r\nPintura provides session management through session middleware. This middleware\r\nadds a getSession(createIfNecessary, expires) method to the request object. There is\r\nalso a statically accessible exported function for accessing sessions:\r\n\r\n require(\"pintura/jsgi/session\").getCurrentSession(createIfNecessary, expires)\r\n\r\nThe session object is a persistent object and therefore the save() method that must \r\nbe called if any changes are made to the session object (that need to be persisted to \r\nfuture requests).\r\n \r\nCross-Site Request Forgery Protection\r\n==========================\r\n\r\nPintura provides CSRF protection to safeguard against malicious attempts to change\r\ndata from other websites. This protection means that requests must prove that they\r\nare from your (same-origin) page and are therefore authorized requests. XHR requests\r\ncan be validated by including a Client-Id header (with any value) to prove that the request\r\nwas generated through XHR. Non-XHR requests (such as form-based requests) can prove\r\ntheir same-origin validation by including the cookie value from the \"pintura-session\" in\r\na \"pintura-session\" query parameter.\r\n\r\nIf a request is not provably same-origin, the request object will include a \"crossSiteForgeable\"\r\nproperty value of true to indicate that it should be regarded with suspicion.\r\n \r\nJSON-RPC\r\n========\r\nPintura supports JSON-RPC to call methods on objects. One can call a method on a\r\npersisted object by using the URL for the object, and JSON-RPC encoded request entity\r\nthat describes the method invocation to make. For example:\r\n\r\n POST /Product/33\r\n Content-Type: application/json\r\n Accept: application/json\r\n \r\n {\r\n method:\"addNote\",\r\n params:[\"cool product\"],\r\n id:\"call1\"\r\n }\r\n\r\nPintura will then lookup the object with the id of \"/Product/33\" and call object.addNote(\"cool product\").\r\nThe return value or thrown error from the call will be returned in a JSON-RPC response. \r\n\r\n### Homepage:\r\n\r\n* [http://persvr.org/](http://persvr.org/)\r\n\r\n### Source & Download:\r\n\r\n* [http://github.com/kriszyp/pintura/](http://github.com/kriszyp/pintura)\r\n\r\n### Mailing list:\r\n\r\n* [http://groups.google.com/group/persevere-framework](http://groups.google.com/group/persevere-framework)\r\n\r\n### IRC:\r\n\r\n* [\\#persevere on irc.freenode.net](http://webchat.freenode.net/?channels=persevere)\r\n\r\nPintura is part of the Persevere project, and therefore is licensed under the\r\nAFL or BSD license. The Persevere project is administered under the Dojo foundation,\r\nand all contributions require a Dojo CLA.", + "maintainers": [ + { + "name": "dojofoundation", + "email": "kzyp@dojofoundation.org" + } + ], + "time": { + "modified": "2011-11-17T04:18:59.276Z", + "created": "2011-11-09T22:47:43.552Z", + "0.2.6": "2011-11-09T22:47:44.422Z", + "0.3.0": "2011-11-16T17:18:06.311Z", + "0.3.1": "2011-11-17T04:18:59.276Z" + }, + "author": { + "name": "Kris Zyp" + }, + "repository": { + "type": "git", + "url": "git://github.com/kriszyp/tunguska.git" + }, + "versions": { + "0.2.6": "http://registry.npmjs.org/pintura/0.2.6", + "0.3.1": "http://registry.npmjs.org/pintura/0.3.1" + }, + "dist": { + "0.2.6": { + "shasum": "dc9e844c8b7a9ace0f09cbeeb0de91c996b3e304", + "tarball": "http://registry.npmjs.org/pintura/-/pintura-0.2.6.tgz" + }, + "0.3.1": { + "shasum": "a8d6250caf5c39a01920bacb3e6570254330d283", + "tarball": "http://registry.npmjs.org/pintura/-/pintura-0.3.1.tgz" + } + }, + "keywords": [ + "rest", + "database", + "web", + "json", + "persevere" + ], + "url": "http://registry.npmjs.org/pintura/" + }, + "pipe": { + "name": "pipe", + "description": "An implementation of bi-directional intercepting filter, such as those found in Java's MINA and Netty", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "falcon", + "email": "shahbazc@gmail.com" + } + ], + "time": { + "modified": "2011-10-06T02:18:49.359Z", + "created": "2011-02-06T03:21:28.542Z", + "0.0.1": "2011-02-06T03:21:29.122Z", + "0.0.2": "2011-06-13T19:06:40.423Z", + "0.0.3": "2011-10-06T02:18:49.359Z" + }, + "author": { + "name": "Shahbaz Chaudhary", + "email": "shahbazc@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/pipe/0.0.1", + "0.0.2": "http://registry.npmjs.org/pipe/0.0.2", + "0.0.3": "http://registry.npmjs.org/pipe/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "6a3ea98cb026abd253e5d74518dc922c4e19daf2", + "tarball": "http://registry.npmjs.org/pipe/-/pipe-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "a16fe6fc019d75bd987c4928a67e1e50e4f5b44f", + "tarball": "http://registry.npmjs.org/pipe/-/pipe-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "f39ba32ad0a3546aa69f14500ec17a4e4b8fa5c9", + "tarball": "http://registry.npmjs.org/pipe/-/pipe-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/pipe/" + }, + "pipe_utils": { + "name": "pipe_utils", + "description": "Utilities for use with the pipe operator in Kaffeine", + "dist-tags": { + "latest": "0.0.7" + }, + "maintainers": [ + { + "name": "weepy", + "email": "jonahfox@gmail.com" + } + ], + "author": { + "name": "weepy" + }, + "repository": { + "type": "git", + "url": "git://github.com/weepy/pipe_utils.git" + }, + "time": { + "modified": "2011-05-15T18:03:18.325Z", + "created": "2011-05-10T21:33:10.407Z", + "0.0.1": "2011-05-10T21:33:10.407Z", + "0.0.2": "2011-05-10T21:33:10.407Z", + "0.0.4": "2011-05-10T21:33:10.407Z", + "0.0.5": "2011-05-12T10:25:55.451Z", + "0.0.6": "2011-05-12T17:40:04.983Z", + "0.0.7": "2011-05-15T18:03:18.325Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/pipe_utils/0.0.1", + "0.0.2": "http://registry.npmjs.org/pipe_utils/0.0.2", + "0.0.4": "http://registry.npmjs.org/pipe_utils/0.0.4", + "0.0.5": "http://registry.npmjs.org/pipe_utils/0.0.5", + "0.0.6": "http://registry.npmjs.org/pipe_utils/0.0.6", + "0.0.7": "http://registry.npmjs.org/pipe_utils/0.0.7" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/pipe_utils/-/pipe_utils-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/pipe_utils/-/pipe_utils-0.0.2.tgz" + }, + "0.0.4": { + "shasum": "56934fef43509f99930fd2f9050f873788009db5", + "tarball": "http://registry.npmjs.org/pipe_utils/-/pipe_utils-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "2f0ca27ba8a55d977c4295e23b92ef37138c315f", + "tarball": "http://registry.npmjs.org/pipe_utils/-/pipe_utils-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "fa408c2cd002fd4b08998e91dfb124e94a227131", + "tarball": "http://registry.npmjs.org/pipe_utils/-/pipe_utils-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "24c47fe3971d6875c85137fed02eb767ec287782", + "tarball": "http://registry.npmjs.org/pipe_utils/-/pipe_utils-0.0.7.tgz" + } + }, + "keywords": [ + "javascript", + "kaffeine" + ], + "url": "http://registry.npmjs.org/pipe_utils/" + }, + "pipeline-surveyor": { + "name": "pipeline-surveyor", + "description": "HTTP pipeline surveyor", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "mnot", + "email": "mnot@mnot.net" + } + ], + "time": { + "modified": "2011-02-26T11:54:18.451Z", + "created": "2011-02-24T04:17:01.972Z", + "0.1.0": "2011-02-24T04:17:02.893Z", + "0.1.1": "2011-02-24T04:19:50.691Z", + "0.1.2": "2011-02-24T04:37:02.491Z", + "0.1.3": "2011-02-24T05:11:42.627Z", + "0.1.4": "2011-02-26T11:54:18.451Z" + }, + "author": { + "name": "Mark Nottingham", + "email": "mnot@mnot.net", + "url": "http://www.mnot.net/" + }, + "repository": { + "type": "git", + "url": "http://github.com/mnot/pipeline-surveyor.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/pipeline-surveyor/0.1.0", + "0.1.1": "http://registry.npmjs.org/pipeline-surveyor/0.1.1", + "0.1.2": "http://registry.npmjs.org/pipeline-surveyor/0.1.2", + "0.1.3": "http://registry.npmjs.org/pipeline-surveyor/0.1.3", + "0.1.4": "http://registry.npmjs.org/pipeline-surveyor/0.1.4" + }, + "dist": { + "0.1.0": { + "shasum": "7e4e7b42d3167f3a546e538eb5f1bdff796638e7", + "tarball": "http://registry.npmjs.org/pipeline-surveyor/-/pipeline-surveyor-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "efb4caa5ab2a123520a6dab0c88b6e78624e0efc", + "tarball": "http://registry.npmjs.org/pipeline-surveyor/-/pipeline-surveyor-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "624a617e9af47993a08184b22e41b983f87da136", + "tarball": "http://registry.npmjs.org/pipeline-surveyor/-/pipeline-surveyor-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "a58524b34712a66bda67fa260e8b2e0231710ab8", + "tarball": "http://registry.npmjs.org/pipeline-surveyor/-/pipeline-surveyor-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "6d1c2e742c9b51e5821f654bc4bcdde66b18f908", + "tarball": "http://registry.npmjs.org/pipeline-surveyor/-/pipeline-surveyor-0.1.4.tgz" + } + }, + "keywords": [ + "test", + "HTTP", + "pipeline", + "performance" + ], + "url": "http://registry.npmjs.org/pipeline-surveyor/" + }, + "pipes": { + "name": "pipes", + "description": "Simple message queue for node.js", + "dist-tags": { + "latest": "0.3.9" + }, + "maintainers": [ + { + "name": "spolu", + "email": "stan@bipsly.com" + } + ], + "time": { + "modified": "2011-12-04T12:10:05.229Z", + "created": "2011-06-10T15:35:04.300Z", + "0.3.0": "2011-06-10T15:35:04.869Z", + "0.3.1": "2011-06-10T16:07:51.331Z", + "0.3.2": "2011-06-15T00:00:48.300Z", + "0.3.3": "2011-06-21T13:18:42.662Z", + "0.3.4": "2011-07-05T09:37:10.208Z", + "0.3.5": "2011-08-16T18:35:14.639Z", + "0.3.6": "2011-08-16T21:26:47.247Z", + "0.3.7": "2011-08-28T09:19:10.945Z", + "0.3.8": "2011-11-01T12:37:35.045Z", + "0.3.9": "2011-12-04T12:10:05.229Z" + }, + "author": { + "name": "Stanislas Polu", + "email": "stan@bipsly.com", + "url": "http://twitter.com/spolu" + }, + "repository": { + "type": "git", + "url": "git://github.com/spolu/pipes.git" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/pipes/0.3.0", + "0.3.1": "http://registry.npmjs.org/pipes/0.3.1", + "0.3.2": "http://registry.npmjs.org/pipes/0.3.2", + "0.3.3": "http://registry.npmjs.org/pipes/0.3.3", + "0.3.4": "http://registry.npmjs.org/pipes/0.3.4", + "0.3.5": "http://registry.npmjs.org/pipes/0.3.5", + "0.3.6": "http://registry.npmjs.org/pipes/0.3.6", + "0.3.7": "http://registry.npmjs.org/pipes/0.3.7", + "0.3.8": "http://registry.npmjs.org/pipes/0.3.8", + "0.3.9": "http://registry.npmjs.org/pipes/0.3.9" + }, + "dist": { + "0.3.0": { + "shasum": "164cdcd40a75a62e26e48e99982633c03f84552a", + "tarball": "http://registry.npmjs.org/pipes/-/pipes-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "c3dc5a5586853c0b7bec05cc5b165a9ba7bc9b97", + "tarball": "http://registry.npmjs.org/pipes/-/pipes-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "3aeac7db9889ea6670778f5c751e178861f724cd", + "tarball": "http://registry.npmjs.org/pipes/-/pipes-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "5031517ed1a6ee6485523c403346db8b5b0b9da7", + "tarball": "http://registry.npmjs.org/pipes/-/pipes-0.3.3.tgz" + }, + "0.3.4": { + "shasum": "74012a3145672110311584e14fd8518dee06c4ac", + "tarball": "http://registry.npmjs.org/pipes/-/pipes-0.3.4.tgz" + }, + "0.3.5": { + "shasum": "3582f03ed109d9c01f8ffff18d1a6a7cfb2d289f", + "tarball": "http://registry.npmjs.org/pipes/-/pipes-0.3.5.tgz" + }, + "0.3.6": { + "shasum": "31709a8877abb3b2446a95eac5e15866d57cd80b", + "tarball": "http://registry.npmjs.org/pipes/-/pipes-0.3.6.tgz" + }, + "0.3.7": { + "shasum": "37f375b640f00311a3f00530180dc2438e1d34c3", + "tarball": "http://registry.npmjs.org/pipes/-/pipes-0.3.7.tgz" + }, + "0.3.8": { + "shasum": "2e74a0b8d0e68db08f467228bc5d8f8c7a62c805", + "tarball": "http://registry.npmjs.org/pipes/-/pipes-0.3.8.tgz" + }, + "0.3.9": { + "shasum": "cf05030d58228a24b8b204dec62c97e5118147ef", + "tarball": "http://registry.npmjs.org/pipes/-/pipes-0.3.9.tgz" + } + }, + "keywords": [ + "queue", + "message", + "simple" + ], + "url": "http://registry.npmjs.org/pipes/" + }, + "pipes-cellar": { + "name": "pipes-cellar", + "description": "Pipes Cellar Storage Management Binary", + "dist-tags": { + "latest": "0.3.9" + }, + "maintainers": [ + { + "name": "spolu", + "email": "stan@bipsly.com" + } + ], + "time": { + "modified": "2011-12-13T11:59:54.852Z", + "created": "2011-08-28T09:15:47.269Z", + "0.3.0": "2011-08-28T09:15:48.879Z", + "0.3.1": "2011-08-28T09:17:07.163Z", + "0.3.2": "2011-11-03T11:53:42.122Z", + "0.3.3": "2011-11-03T11:54:38.931Z", + "0.3.4": "2011-11-03T12:37:58.392Z", + "0.3.5": "2011-12-06T04:28:45.352Z", + "0.3.9": "2011-12-13T11:59:54.852Z" + }, + "author": { + "name": "Stanislas Polu", + "email": "stan@bipsly.com" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/pipes-cellar/0.3.0", + "0.3.1": "http://registry.npmjs.org/pipes-cellar/0.3.1", + "0.3.2": "http://registry.npmjs.org/pipes-cellar/0.3.2", + "0.3.4": "http://registry.npmjs.org/pipes-cellar/0.3.4", + "0.3.5": "http://registry.npmjs.org/pipes-cellar/0.3.5", + "0.3.9": "http://registry.npmjs.org/pipes-cellar/0.3.9" + }, + "dist": { + "0.3.0": { + "shasum": "0c493ca4a66a3b6a22bafd32910f997ca3ff00db", + "tarball": "http://registry.npmjs.org/pipes-cellar/-/pipes-cellar-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "d1a45c0e5c4eca330c66f9164365db2454e2152b", + "tarball": "http://registry.npmjs.org/pipes-cellar/-/pipes-cellar-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "0ce1b8549021fba98cde9f9b16445400029f8c48", + "tarball": "http://registry.npmjs.org/pipes-cellar/-/pipes-cellar-0.3.2.tgz" + }, + "0.3.4": { + "shasum": "d6661dc07b5fe65a3df2ad463591a28dd17021f3", + "tarball": "http://registry.npmjs.org/pipes-cellar/-/pipes-cellar-0.3.4.tgz" + }, + "0.3.5": { + "shasum": "f111a6dc1460a270c87447332db37505c3be6269", + "tarball": "http://registry.npmjs.org/pipes-cellar/-/pipes-cellar-0.3.5.tgz" + }, + "0.3.9": { + "shasum": "96df2ec648952b7266bef7a9134f73683fa4e133", + "tarball": "http://registry.npmjs.org/pipes-cellar/-/pipes-cellar-0.3.9.tgz" + } + }, + "keywords": [ + "storage", + "pipe", + "mongo" + ], + "url": "http://registry.npmjs.org/pipes-cellar/" + }, + "pipes-cohort": { + "name": "pipes-cohort", + "description": "Pipes Cohort Session Tracking", + "dist-tags": { + "latest": "0.3.9" + }, + "maintainers": [ + { + "name": "spolu", + "email": "stan@bipsly.com" + } + ], + "time": { + "modified": "2011-12-13T12:01:48.489Z", + "created": "2011-08-27T19:02:53.322Z", + "0.3.0": "2011-08-27T19:02:53.870Z", + "0.3.1": "2011-11-01T12:38:10.790Z", + "0.3.9": "2011-12-13T12:01:48.489Z" + }, + "author": { + "name": "Stanislas Polu", + "email": "stan@bipsly.com" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/pipes-cohort/0.3.0", + "0.3.1": "http://registry.npmjs.org/pipes-cohort/0.3.1", + "0.3.9": "http://registry.npmjs.org/pipes-cohort/0.3.9" + }, + "dist": { + "0.3.0": { + "shasum": "549741f6db274e0dac844173c78b58d77cfd3d94", + "tarball": "http://registry.npmjs.org/pipes-cohort/-/pipes-cohort-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "d81eff92fa2f0b0ccc8ee7e205ec3acd028a5cc3", + "tarball": "http://registry.npmjs.org/pipes-cohort/-/pipes-cohort-0.3.1.tgz" + }, + "0.3.9": { + "shasum": "1d9eaa9291f136aa1633cf712490f03968420799", + "tarball": "http://registry.npmjs.org/pipes-cohort/-/pipes-cohort-0.3.9.tgz" + } + }, + "keywords": [ + "session", + "tracking", + "pipe", + "mongo" + ], + "url": "http://registry.npmjs.org/pipes-cohort/" + }, + "pipestop": { + "name": "pipestop", + "description": "like stream.pipe(), but stoppable", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-10-15T06:38:35.641Z", + "created": "2011-10-15T06:38:34.054Z", + "0.0.0": "2011-10-15T06:38:35.641Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-pipestop.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/pipestop/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "d707142ae22f8a538c67d68e9b705e70163fe758", + "tarball": "http://registry.npmjs.org/pipestop/-/pipestop-0.0.0.tgz" + } + }, + "keywords": [ + "pipe", + "stream", + "stop" + ], + "url": "http://registry.npmjs.org/pipestop/" + }, + "piton-entity": { + "name": "piton-entity", + "description": "Tools for managing objects that represent business entities", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "pabloserbo", + "email": "paul@serby.net" + } + ], + "time": { + "modified": "2011-09-13T00:06:58.149Z", + "created": "2011-07-07T13:50:03.171Z", + "0.0.1": "2011-07-07T13:50:03.745Z", + "0.0.2": "2011-07-10T18:17:05.011Z", + "0.0.3": "2011-07-11T17:51:21.683Z", + "0.0.4": "2011-07-21T23:03:06.908Z", + "0.0.5": "2011-07-22T10:44:50.934Z", + "0.0.6": "2011-07-22T11:09:10.220Z", + "0.0.7": "2011-07-22T11:41:36.218Z", + "0.0.8": "2011-07-28T14:25:27.953Z", + "0.0.9": "2011-08-10T23:37:54.986Z", + "0.0.10": "2011-08-17T20:43:34.068Z", + "0.0.11": "2011-08-18T09:07:24.703Z", + "0.0.12": "2011-09-08T23:23:43.878Z", + "0.1.0": "2011-09-11T22:44:41.048Z", + "0.1.1": "2011-09-12T22:35:35.913Z", + "0.1.2": "2011-09-13T00:06:58.149Z" + }, + "author": { + "name": "Paul Serby", + "email": "paul.serby@clock.co.uk" + }, + "repository": { + "type": "git", + "url": "git://github.com/PabloSerbo/piton-entity.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/piton-entity/0.0.1", + "0.0.2": "http://registry.npmjs.org/piton-entity/0.0.2", + "0.0.3": "http://registry.npmjs.org/piton-entity/0.0.3", + "0.0.4": "http://registry.npmjs.org/piton-entity/0.0.4", + "0.0.5": "http://registry.npmjs.org/piton-entity/0.0.5", + "0.0.6": "http://registry.npmjs.org/piton-entity/0.0.6", + "0.0.7": "http://registry.npmjs.org/piton-entity/0.0.7", + "0.0.8": "http://registry.npmjs.org/piton-entity/0.0.8", + "0.0.9": "http://registry.npmjs.org/piton-entity/0.0.9", + "0.0.10": "http://registry.npmjs.org/piton-entity/0.0.10", + "0.0.11": "http://registry.npmjs.org/piton-entity/0.0.11", + "0.0.12": "http://registry.npmjs.org/piton-entity/0.0.12", + "0.1.0": "http://registry.npmjs.org/piton-entity/0.1.0", + "0.1.1": "http://registry.npmjs.org/piton-entity/0.1.1", + "0.1.2": "http://registry.npmjs.org/piton-entity/0.1.2" + }, + "dist": { + "0.0.1": { + "shasum": "21d0dcba1bd9f9001915b4cae68b25f7431b763c", + "tarball": "http://registry.npmjs.org/piton-entity/-/piton-entity-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "3ef5499f2ef964b4a34280f1364d45ffb497bcd6", + "tarball": "http://registry.npmjs.org/piton-entity/-/piton-entity-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "4654c87d10388e79af51d55825e704be461da8cd", + "tarball": "http://registry.npmjs.org/piton-entity/-/piton-entity-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "2ed76b271fe98dfd5c72220235a750aa9decb330", + "tarball": "http://registry.npmjs.org/piton-entity/-/piton-entity-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "79e64ef4737ae40eb7b9044ba653c772678d5f8f", + "tarball": "http://registry.npmjs.org/piton-entity/-/piton-entity-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "f3607c83b36327821df09fb7bd565357e4c68ce7", + "tarball": "http://registry.npmjs.org/piton-entity/-/piton-entity-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "816d11050518ce1010f8bb55c9f46c45aac4ae90", + "tarball": "http://registry.npmjs.org/piton-entity/-/piton-entity-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "d2eff51b4d8463fd5770ac22be78c1db601a60c0", + "tarball": "http://registry.npmjs.org/piton-entity/-/piton-entity-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "322867c616057459a5b841342954722e58dc123b", + "tarball": "http://registry.npmjs.org/piton-entity/-/piton-entity-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "e6bd11e5a4ddf1d715e6d3f8345fbabc47b07130", + "tarball": "http://registry.npmjs.org/piton-entity/-/piton-entity-0.0.10.tgz" + }, + "0.0.11": { + "shasum": "f95767497ce918f2b9aa2be717104d8fe3ff8171", + "tarball": "http://registry.npmjs.org/piton-entity/-/piton-entity-0.0.11.tgz" + }, + "0.0.12": { + "shasum": "d73230e42a07e3d12da440a87c3c893b43c8e51f", + "tarball": "http://registry.npmjs.org/piton-entity/-/piton-entity-0.0.12.tgz" + }, + "0.1.0": { + "shasum": "d8681bb51353356b6d4ec7a9832a52ec435c1ca7", + "tarball": "http://registry.npmjs.org/piton-entity/-/piton-entity-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "bd770ed924b12364c23a81228a988ac5335b56dd", + "tarball": "http://registry.npmjs.org/piton-entity/-/piton-entity-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "e60b80a42e57ba9c5050d8e072d30e5078554f58", + "tarball": "http://registry.npmjs.org/piton-entity/-/piton-entity-0.1.2.tgz" + } + }, + "keywords": [ + "entity", + "schema", + "data" + ], + "url": "http://registry.npmjs.org/piton-entity/" + }, + "piton-http-utils": { + "name": "piton-http-utils", + "description": "Various http utilities from the piton toolkit", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "pabloserbo", + "email": "paul@serby.net" + } + ], + "time": { + "modified": "2011-07-07T12:21:58.828Z", + "created": "2011-07-07T12:21:58.295Z", + "0.0.1": "2011-07-07T12:21:58.828Z" + }, + "author": { + "name": "Paul Serby", + "email": "paul.serby@clock.co.uk" + }, + "repository": { + "type": "git", + "url": "git://github.com/PabloSerbo/piton-http-utils.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/piton-http-utils/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "b4ee9d4b5889d498a2346dcae089ee4b142e58da", + "tarball": "http://registry.npmjs.org/piton-http-utils/-/piton-http-utils-0.0.1.tgz" + } + }, + "keywords": [ + "http" + ], + "url": "http://registry.npmjs.org/piton-http-utils/" + }, + "piton-mixin": { + "name": "piton-mixin", + "description": "Mixes in the functions from another objects prototype from the piton toolkit", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "pabloserbo", + "email": "paul@serby.net" + } + ], + "time": { + "modified": "2011-07-07T13:39:42.289Z", + "created": "2011-07-07T13:39:41.781Z", + "0.0.1": "2011-07-07T13:39:42.289Z" + }, + "author": { + "name": "Paul Serby", + "email": "paul.serby@clock.co.uk" + }, + "repository": { + "type": "git", + "url": "git://github.com/PabloSerbo/piton-mixin.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/piton-mixin/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "9994bf3e37ff8bc9935d98d3987c28aa9a8b1985", + "tarball": "http://registry.npmjs.org/piton-mixin/-/piton-mixin-0.0.1.tgz" + } + }, + "keywords": [ + "mixin" + ], + "url": "http://registry.npmjs.org/piton-mixin/" + }, + "piton-pipe": { + "name": "piton-pipe", + "description": "Build and run an Async pipeline of functions", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "pabloserbo", + "email": "paul@serby.net" + } + ], + "time": { + "modified": "2011-08-19T20:47:20.254Z", + "created": "2011-08-19T20:47:17.091Z", + "0.0.2": "2011-08-19T20:47:20.254Z" + }, + "author": { + "name": "Paul Serby", + "email": "paul.serby@clock.co.uk" + }, + "repository": { + "type": "git", + "url": "git://github.com/PabloSerbo/piton-pipe.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/piton-pipe/0.0.2" + }, + "dist": { + "0.0.2": { + "shasum": "c36c0a52789f60b5d1108fa748247ce2add7fdcf", + "tarball": "http://registry.npmjs.org/piton-pipe/-/piton-pipe-0.0.2.tgz" + } + }, + "keywords": [ + "pipe" + ], + "url": "http://registry.npmjs.org/piton-pipe/" + }, + "piton-simplate": { + "name": "piton-simplate", + "description": "Simple template parser from the piton toolkit", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "pabloserbo", + "email": "paul@serby.net" + } + ], + "time": { + "modified": "2011-07-07T12:48:57.386Z", + "created": "2011-07-07T12:48:56.865Z", + "0.0.1": "2011-07-07T12:48:57.386Z" + }, + "author": { + "name": "Paul Serby", + "email": "paul.serby@clock.co.uk" + }, + "repository": { + "type": "git", + "url": "git://github.com/PabloSerbo/piton-simplate.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/piton-simplate/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "5944748d85577e7293614e1c6cc5fbcdf750bf20", + "tarball": "http://registry.npmjs.org/piton-simplate/-/piton-simplate-0.0.1.tgz" + } + }, + "keywords": [ + "template" + ], + "url": "http://registry.npmjs.org/piton-simplate/" + }, + "piton-string-utils": { + "name": "piton-string-utils", + "description": "Various string utilities from the piton toolkit", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "pabloserbo", + "email": "paul@serby.net" + } + ], + "time": { + "modified": "2011-07-07T13:41:01.543Z", + "created": "2011-07-07T13:41:01.023Z", + "0.0.1": "2011-07-07T13:41:01.543Z" + }, + "author": { + "name": "Paul Serby", + "email": "paul.serby@clock.co.uk" + }, + "repository": { + "type": "git", + "url": "git://github.com/PabloSerbo/piton-string-utils.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/piton-string-utils/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "95a7ba33bfdbaffcfd6f27088d12eb3e381e4681", + "tarball": "http://registry.npmjs.org/piton-string-utils/-/piton-string-utils-0.0.1.tgz" + } + }, + "keywords": [ + "string" + ], + "url": "http://registry.npmjs.org/piton-string-utils/" + }, + "piton-validity": { + "name": "piton-validity", + "description": "A suite of validators from the piton toolkit", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "pabloserbo", + "email": "paul@serby.net" + } + ], + "time": { + "modified": "2011-09-13T00:02:29.159Z", + "created": "2011-07-07T13:46:15.942Z", + "0.0.1": "2011-07-07T13:46:16.456Z", + "0.0.2": "2011-07-10T18:39:08.661Z", + "0.0.3": "2011-07-10T19:22:24.573Z", + "0.0.4": "2011-08-18T13:36:45.580Z", + "0.1.0": "2011-09-11T22:22:46.137Z", + "0.1.1": "2011-09-13T00:02:29.159Z" + }, + "author": { + "name": "Paul Serby", + "email": "paul.serby@clock.co.uk" + }, + "repository": { + "type": "git", + "url": "git://github.com/PabloSerbo/piton-validity.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/piton-validity/0.0.1", + "0.0.2": "http://registry.npmjs.org/piton-validity/0.0.2", + "0.0.3": "http://registry.npmjs.org/piton-validity/0.0.3", + "0.0.4": "http://registry.npmjs.org/piton-validity/0.0.4", + "0.1.0": "http://registry.npmjs.org/piton-validity/0.1.0", + "0.1.1": "http://registry.npmjs.org/piton-validity/0.1.1" + }, + "dist": { + "0.0.1": { + "shasum": "23b816b36c9d661446a00b938f8db60cbbe52f38", + "tarball": "http://registry.npmjs.org/piton-validity/-/piton-validity-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "67c68e05c2be31d99b56548e45664e60e8ae645f", + "tarball": "http://registry.npmjs.org/piton-validity/-/piton-validity-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "62574ef379ae6046578b9a2c2ffa0ac9984057d4", + "tarball": "http://registry.npmjs.org/piton-validity/-/piton-validity-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "f4541a8a97f333692bdfdab7b2c3b5a34409adb7", + "tarball": "http://registry.npmjs.org/piton-validity/-/piton-validity-0.0.4.tgz" + }, + "0.1.0": { + "shasum": "aefdb7d6c49b4c064afda2c832b991e522498873", + "tarball": "http://registry.npmjs.org/piton-validity/-/piton-validity-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "8bfbb447c1487841eba0bbb44149340e14c66f58", + "tarball": "http://registry.npmjs.org/piton-validity/-/piton-validity-0.1.1.tgz" + } + }, + "keywords": [ + "validation" + ], + "url": "http://registry.npmjs.org/piton-validity/" + }, + "pivotal-tracker": { + "name": "pivotal-tracker", + "description": "Pivotal api module", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "danboy", + "email": "dnawara@groupon.com" + } + ], + "time": { + "modified": "2011-10-24T20:24:37.708Z", + "created": "2011-10-09T02:13:15.782Z", + "0.0.1": "2011-10-09T02:13:16.043Z", + "0.0.2": "2011-10-24T20:24:37.708Z" + }, + "author": { + "name": "Dan Nawara", + "email": "dnawara@groupon.com" + }, + "repository": { + "url": "git@github.com:danboy/pivotal-tracker.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/pivotal-tracker/0.0.1", + "0.0.2": "http://registry.npmjs.org/pivotal-tracker/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "6ae9415a9e82260c96bd116522e90db33022ba74", + "tarball": "http://registry.npmjs.org/pivotal-tracker/-/pivotal-tracker-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "417081356a9ca15b93b6603ad5d9d74134212f40", + "tarball": "http://registry.npmjs.org/pivotal-tracker/-/pivotal-tracker-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/pivotal-tracker/" + }, + "pixel-ping": { + "name": "pixel-ping", + "description": "A minimalist pixel tracker.", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "documentcloud", + "email": "jeremy@documentcloud.org" + }, + { + "name": "jashkenas", + "email": "jashkenas@gmail.com" + } + ], + "author": { + "name": "Jeremy Ashkenas and Jeff Larson" + }, + "repository": { + "type": "git", + "url": "http://github.com/document-cloud/pixel-ping.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/pixel-ping/0.1.0", + "0.1.1": "http://registry.npmjs.org/pixel-ping/0.1.1", + "0.1.2": "http://registry.npmjs.org/pixel-ping/0.1.2" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/pixel-ping/-/pixel-ping-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://packages:5984/pixel-ping/-/pixel-ping-0.1.1.tgz" + }, + "0.1.2": { + "tarball": "http://packages:5984/pixel-ping/-/pixel-ping-0.1.2.tgz" + } + }, + "keywords": [ + "javascript", + "server", + "tracking" + ], + "url": "http://registry.npmjs.org/pixel-ping/" + }, + "pixelcloud": { + "name": "pixelcloud", + "description": "A client for the image resize service PixelCloud.io.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "sdepold", + "email": "sascha@depold.com" + } + ], + "time": { + "modified": "2011-03-20T18:27:08.985Z", + "created": "2011-03-20T14:01:26.879Z", + "0.0.0": "2011-03-20T14:01:27.397Z", + "0.0.1": "2011-03-20T14:06:36.265Z", + "0.0.2": "2011-03-20T18:27:08.985Z" + }, + "author": { + "name": "Sascha Depold", + "email": "sascha@depold.com", + "url": "http://depold.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/sdepold/PixelCloud-Client-Node.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/pixelcloud/0.0.0", + "0.0.1": "http://registry.npmjs.org/pixelcloud/0.0.1", + "0.0.2": "http://registry.npmjs.org/pixelcloud/0.0.2" + }, + "dist": { + "0.0.0": { + "shasum": "fb9db175e61f96885e4285e9b7471286fddac490", + "tarball": "http://registry.npmjs.org/pixelcloud/-/pixelcloud-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "7866741a8de0800c4208e5ee88278872f562ea87", + "tarball": "http://registry.npmjs.org/pixelcloud/-/pixelcloud-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "9d0bf01dda68b57767eac1b185f2bba95bd53536", + "tarball": "http://registry.npmjs.org/pixelcloud/-/pixelcloud-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/pixelcloud/" + }, + "pixiedust": { + "name": "pixiedust", + "description": "RESTful lazy chainable API generator", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "mixu", + "email": "mixu@mixu.net" + } + ], + "time": { + "modified": "2011-08-22T23:25:58.388Z", + "created": "2011-08-22T23:25:55.366Z", + "0.0.1": "2011-08-22T23:25:58.388Z" + }, + "author": { + "name": "Mikito Takada", + "email": "mixu@mixu.net", + "url": "http://blog.mixu.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/mixu/pixiedust.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/pixiedust/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "9bc46b4c76dd6e6b031b3b7929c6bce117f165b6", + "tarball": "http://registry.npmjs.org/pixiedust/-/pixiedust-0.0.1.tgz" + } + }, + "keywords": [ + "api", + "client", + "rest" + ], + "url": "http://registry.npmjs.org/pixiedust/" + }, + "PJsonCouch": { + "name": "PJsonCouch", + "description": "Pure-Json-on-Couch is a node.js client lib for CouchDB.", + "dist-tags": { + "latest": "0.5.0" + }, + "maintainers": [ + { + "name": "landeiro", + "email": "landeiro@gmail.com" + } + ], + "time": { + "modified": "2011-12-08T15:31:30.939Z", + "created": "2011-08-07T17:21:39.761Z", + "0.1.0": "2011-12-08T15:31:30.939Z", + "0.5.0": "2011-12-08T15:31:30.939Z" + }, + "author": { + "name": "Pedro Landeiro", + "email": "landeiro@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/landeiro/PJsonCouch.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/PJsonCouch/0.1.0", + "0.5.0": "http://registry.npmjs.org/PJsonCouch/0.5.0" + }, + "dist": { + "0.1.0": { + "shasum": "5bf23db4af8d3ff807b0605cb32218b85291f33c", + "tarball": "http://registry.npmjs.org/PJsonCouch/-/PJsonCouch-0.1.0.tgz" + }, + "0.5.0": { + "shasum": "6c2455006f4a45b28e5df263626e7092786df82d", + "tarball": "http://registry.npmjs.org/PJsonCouch/-/PJsonCouch-0.5.0.tgz" + } + }, + "url": "http://registry.npmjs.org/PJsonCouch/" + }, + "pkginfo": { + "name": "pkginfo", + "description": "An easy way to expose properties on a module from a package.json", + "dist-tags": { + "latest": "0.2.3" + }, + "maintainers": [ + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + } + ], + "time": { + "modified": "2011-12-08T23:50:52.279Z", + "created": "2011-06-04T03:19:54.635Z", + "0.1.0": "2011-06-04T03:19:55.001Z", + "0.2.0": "2011-06-08T03:48:48.652Z", + "0.2.1": "2011-06-08T09:38:59.614Z", + "0.2.2": "2011-07-13T21:42:39.570Z", + "0.2.3": "2011-12-08T23:50:52.279Z" + }, + "author": { + "name": "Charlie Robbins", + "email": "charlie.robbins@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/indexzero/node-pkginfo.git" + }, + "versions": { + "0.2.1": "http://registry.npmjs.org/pkginfo/0.2.1", + "0.2.2": "http://registry.npmjs.org/pkginfo/0.2.2", + "0.2.3": "http://registry.npmjs.org/pkginfo/0.2.3" + }, + "dist": { + "0.2.1": { + "shasum": "40fd285c83b52dbd549fbd633c154607fe38fc89", + "tarball": "http://registry.npmjs.org/pkginfo/-/pkginfo-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "97e1100dbbb275ff6fab583a256a7eea85120c8e", + "tarball": "http://registry.npmjs.org/pkginfo/-/pkginfo-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "7239c42a5ef6c30b8f328439d9b9ff71042490f8", + "tarball": "http://registry.npmjs.org/pkginfo/-/pkginfo-0.2.3.tgz" + } + }, + "keywords": [ + "info", + "tools", + "package.json" + ], + "url": "http://registry.npmjs.org/pkginfo/" + }, + "pksqlite": { + "name": "pksqlite", + "description": "SQLite3 bindings for Node", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "pkrumins", + "email": "peteris.krumins@gmail.com" + } + ], + "author": { + "name": "Orlando Vazquez", + "email": "ovazquez@gmail.com", + "url": "http://2wycked.net" + }, + "repository": { + "type": "git", + "url": "http://github.com/orlandov/node-sqlite.git" + }, + "time": { + "modified": "2011-04-15T21:29:31.563Z", + "created": "2011-02-25T02:36:18.228Z", + "0.0.4": "2011-02-25T02:36:18.228Z", + "0.0.5": "2011-02-25T02:36:18.228Z" + }, + "versions": { + "0.0.4": "http://registry.npmjs.org/pksqlite/0.0.4", + "0.0.5": "http://registry.npmjs.org/pksqlite/0.0.5" + }, + "dist": { + "0.0.4": { + "tarball": "http://packages:5984/pksqlite/-/pksqlite-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://registry.npmjs.org/pksqlite/-/pksqlite-0.0.5.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "3a03b7d9a84b920e3c52994dcef279b4d7e7dd4b", + "tarball": "http://registry.npmjs.org/pksqlite/-/pksqlite-0.0.5-0.4-sunos-5.11.tgz" + } + } + } + }, + "url": "http://registry.npmjs.org/pksqlite/" + }, + "placefinder": { + "name": "placefinder", + "description": "a yahoo placefinder library", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "jga", + "email": "me@jga.me" + } + ], + "time": { + "modified": "2011-11-01T00:33:01.852Z", + "created": "2011-11-01T00:33:00.625Z", + "0.0.1": "2011-11-01T00:33:01.852Z" + }, + "author": { + "name": "Greg Allen", + "email": "@jgaui", + "url": "http://jga.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/jgallen23/node-placefinder.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/placefinder/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "7b8d625f8d8bf7989eb8134620b9b55c0b8d13f9", + "tarball": "http://registry.npmjs.org/placefinder/-/placefinder-0.0.1.tgz" + } + }, + "keywords": [ + "geo", + "placefinder", + "yahoo", + "api" + ], + "url": "http://registry.npmjs.org/placefinder/" + }, + "plants.js": { + "name": "plants.js", + "description": "A Node test runner", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "alexyoung", + "email": "alex@alexyoung.org" + } + ], + "time": { + "modified": "2011-02-01T14:57:01.449Z", + "created": "2011-02-01T14:57:00.721Z", + "0.0.1": "2011-02-01T14:57:01.449Z" + }, + "author": { + "name": "Alex R. Young", + "url": "http://alexyoung.org" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/plants.js/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "b1ddd9c71182dae1b9c6d2149184bbf98249aef2", + "tarball": "http://registry.npmjs.org/plants.js/-/plants.js-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/plants.js/" + }, + "plate": { + "name": "plate", + "description": "A javascript templating language", + "dist-tags": { + "latest": "0.0.10" + }, + "maintainers": [ + { + "name": "chrisdickinson", + "email": "chris@neversaw.us" + } + ], + "author": { + "name": "Chris Dickinson" + }, + "time": { + "modified": "2011-08-11T06:12:54.466Z", + "created": "2011-01-18T03:57:23.024Z", + "0.0.1": "2011-01-18T03:57:23.024Z", + "0.0.2": "2011-01-18T03:57:23.024Z", + "0.0.4": "2011-01-18T03:57:23.024Z", + "0.0.6": "2011-01-18T03:57:23.024Z", + "0.0.7": "2011-03-26T08:23:15.652Z", + "0.0.8": "2011-03-26T08:32:51.026Z", + "0.0.9": "2011-06-09T20:07:46.245Z", + "0.0.10": "2011-08-11T06:12:54.466Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/plate/0.0.1", + "0.0.2": "http://registry.npmjs.org/plate/0.0.2", + "0.0.4": "http://registry.npmjs.org/plate/0.0.4", + "0.0.6": "http://registry.npmjs.org/plate/0.0.6", + "0.0.7": "http://registry.npmjs.org/plate/0.0.7", + "0.0.8": "http://registry.npmjs.org/plate/0.0.8", + "0.0.9": "http://registry.npmjs.org/plate/0.0.9", + "0.0.10": "http://registry.npmjs.org/plate/0.0.10" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/plate/-/plate-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/plate/-/plate-0.0.2.tgz" + }, + "0.0.4": { + "tarball": "http://packages:5984/plate/-/plate-0.0.4.tgz" + }, + "0.0.6": { + "tarball": "http://registry.npmjs.org/plate/-/plate-0.0.6.tgz" + }, + "0.0.7": { + "tarball": "http://registry.npmjs.org/plate/-/plate-0.0.7.tgz" + }, + "0.0.8": { + "tarball": "http://registry.npmjs.org/plate/-/plate-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "15cdfb8f7f3c449ba3ffe55c897ee78745bef3d3", + "tarball": "http://registry.npmjs.org/plate/-/plate-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "8e75a80e210314e5aab76f8abf45d0d20de12f60", + "tarball": "http://registry.npmjs.org/plate/-/plate-0.0.10.tgz" + } + }, + "keywords": [ + "template", + "dtl" + ], + "url": "http://registry.npmjs.org/plate/" + }, + "plates": { + "name": "plates", + "description": "Unobtrusive templating for the flatiron framework", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "hij1nx", + "email": "hij1nx@me.com" + } + ], + "time": { + "modified": "2011-11-30T22:14:36.637Z", + "created": "2011-11-13T21:16:37.933Z", + "0.1.0": "2011-11-13T21:16:38.570Z", + "0.1.1": "2011-11-13T21:23:28.056Z", + "0.2.1": "2011-11-17T17:25:14.221Z", + "0.2.2": "2011-11-30T22:14:36.637Z" + }, + "author": { + "name": "hij1nx", + "email": "hij1nx@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/plates/0.1.0", + "0.1.1": "http://registry.npmjs.org/plates/0.1.1", + "0.2.1": "http://registry.npmjs.org/plates/0.2.1", + "0.2.2": "http://registry.npmjs.org/plates/0.2.2" + }, + "dist": { + "0.1.0": { + "shasum": "288762ec88446b3d52991d214a7fbb7441a49149", + "tarball": "http://registry.npmjs.org/plates/-/plates-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "25f729f2b5f9d125c879779d1fbb35b4930e3723", + "tarball": "http://registry.npmjs.org/plates/-/plates-0.1.1.tgz" + }, + "0.2.1": { + "shasum": "7a80c417217f2d108b2cf18c16ee213376593aef", + "tarball": "http://registry.npmjs.org/plates/-/plates-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "6ce1a48970dbcf874a13afb3084c639871476a28", + "tarball": "http://registry.npmjs.org/plates/-/plates-0.2.2.tgz" + } + }, + "keywords": [ + "templates", + "templating", + "unobtrusive" + ], + "url": "http://registry.npmjs.org/plates/" + }, + "platform": { + "name": "platform", + "description": "A platform detection library that works on nearly all JavaScript platforms.", + "dist-tags": { + "latest": "0.4.0" + }, + "maintainers": [ + { + "name": "jdalton", + "email": "john@fusejs.com" + }, + { + "name": "mathias", + "email": "mathias@qiwi.be" + } + ], + "time": { + "modified": "2011-11-22T06:51:24.981Z", + "created": "2011-06-07T08:48:23.836Z", + "0.1.337": "2011-11-13T17:08:27.521Z", + "0.3.0": "2011-11-13T17:09:15.693Z", + "0.3.1": "2011-11-13T17:09:30.708Z", + "0.2.0": "2011-11-13T17:08:59.702Z", + "0.4.0": "2011-11-22T06:51:24.981Z" + }, + "author": { + "name": "John-David Dalton", + "email": "john@fusejs.com", + "url": "http://allyoucanleet.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/bestiejs/platform.js.git" + }, + "versions": { + "0.1.337": "http://registry.npmjs.org/platform/0.1.337", + "0.2.0": "http://registry.npmjs.org/platform/0.2.0", + "0.3.0": "http://registry.npmjs.org/platform/0.3.0", + "0.3.1": "http://registry.npmjs.org/platform/0.3.1", + "0.4.0": "http://registry.npmjs.org/platform/0.4.0" + }, + "dist": { + "0.1.337": { + "shasum": "ab2287c334b968ea5709418a89b1034f0f4750e7", + "tarball": "http://registry.npmjs.org/platform/-/platform-0.1.337.tgz" + }, + "0.2.0": { + "shasum": "f76a06f90717a7484722a5d2c4baf75291713ecb", + "tarball": "http://registry.npmjs.org/platform/-/platform-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "af154b2ae43ec6e4311262b595971a7d08ac39f3", + "tarball": "http://registry.npmjs.org/platform/-/platform-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "4a966bcdc5c844c0f9528e14c0f0404928e388e3", + "tarball": "http://registry.npmjs.org/platform/-/platform-0.3.1.tgz" + }, + "0.4.0": { + "shasum": "5afc582cc191b7fd4b75f28891c4e24fd5c159eb", + "tarball": "http://registry.npmjs.org/platform/-/platform-0.4.0.tgz" + } + }, + "keywords": [ + "environment", + "platform", + "ua", + "useragent" + ], + "url": "http://registry.npmjs.org/platform/" + }, + "platformjs": { + "name": "platformjs", + "description": "Websockets server for node.js", + "dist-tags": { + "latest": "0.1.5" + }, + "maintainers": [ + { + "name": "petrjanda", + "email": "petrjanda@me.com" + } + ], + "time": { + "modified": "2011-05-11T21:36:08.053Z", + "created": "2011-03-26T17:24:18.157Z", + "0.1.1": "2011-03-26T17:24:18.684Z", + "0.1.2": "2011-03-29T22:23:15.871Z", + "0.1.3": "2011-05-11T20:35:51.012Z", + "0.1.4": "2011-05-11T21:17:34.617Z", + "0.1.5": "2011-05-11T21:36:08.053Z" + }, + "author": { + "name": "Petr Janda", + "email": "petrjanda@me.com", + "url": "http://petrjanda.tumblr.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/petrjanda/platformjs.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/platformjs/0.1.1", + "0.1.2": "http://registry.npmjs.org/platformjs/0.1.2", + "0.1.3": "http://registry.npmjs.org/platformjs/0.1.3", + "0.1.4": "http://registry.npmjs.org/platformjs/0.1.4", + "0.1.5": "http://registry.npmjs.org/platformjs/0.1.5" + }, + "dist": { + "0.1.1": { + "shasum": "b13d4eced6e3ba37a54fd2146953d8220e475333", + "tarball": "http://registry.npmjs.org/platformjs/-/platformjs-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "ecf03a267220c31b6a1e272cdd2fc59305cfdf3a", + "tarball": "http://registry.npmjs.org/platformjs/-/platformjs-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "c11012af0cc0deca35fd089878498f4f5491e58c", + "tarball": "http://registry.npmjs.org/platformjs/-/platformjs-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "c28547d935179915b7a9b15ff63d041cdb0d3cb7", + "tarball": "http://registry.npmjs.org/platformjs/-/platformjs-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "dd82af4cc03c334d0120dacf1a3625f76881743a", + "tarball": "http://registry.npmjs.org/platformjs/-/platformjs-0.1.5.tgz" + } + }, + "keywords": [ + "websocket", + "server", + "realtime", + "coffeescript" + ], + "url": "http://registry.npmjs.org/platformjs/" + }, + "platoon": { + "name": "platoon", + "description": "A javascript asynchronous testing framework", + "dist-tags": { + "latest": "0.0.10" + }, + "maintainers": [ + { + "name": "chrisdickinson", + "email": "chris@neversaw.us" + } + ], + "author": { + "name": "Chris Dickinson" + }, + "time": { + "modified": "2011-08-11T04:11:58.976Z", + "created": "2011-06-23T00:31:40.180Z", + "0.0.1": "2011-06-23T00:31:40.180Z", + "0.0.2": "2011-06-23T00:31:40.180Z", + "0.0.3": "2011-06-23T00:31:40.180Z", + "0.0.4": "2011-06-23T00:31:40.180Z", + "0.0.5": "2011-06-23T00:31:40.180Z", + "0.0.6": "2011-06-23T00:31:40.180Z", + "0.0.7": "2011-06-23T00:35:44.400Z", + "0.0.8": "2011-07-21T19:14:25.515Z", + "0.0.9": "2011-08-11T04:10:15.304Z", + "0.0.10": "2011-08-11T04:11:58.976Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/platoon/0.0.1", + "0.0.2": "http://registry.npmjs.org/platoon/0.0.2", + "0.0.3": "http://registry.npmjs.org/platoon/0.0.3", + "0.0.4": "http://registry.npmjs.org/platoon/0.0.4", + "0.0.5": "http://registry.npmjs.org/platoon/0.0.5", + "0.0.6": "http://registry.npmjs.org/platoon/0.0.6", + "0.0.7": "http://registry.npmjs.org/platoon/0.0.7", + "0.0.8": "http://registry.npmjs.org/platoon/0.0.8", + "0.0.9": "http://registry.npmjs.org/platoon/0.0.9", + "0.0.10": "http://registry.npmjs.org/platoon/0.0.10" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/platoon/-/platoon-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/platoon/-/platoon-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/platoon/-/platoon-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://registry.npmjs.org/platoon/-/platoon-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://registry.npmjs.org/platoon/-/platoon-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "c786925e89d1c1d1612fcf00b54766acaa606e27", + "tarball": "http://registry.npmjs.org/platoon/-/platoon-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "d6554340abe236e67e543fb02772a13fc0ac82fc", + "tarball": "http://registry.npmjs.org/platoon/-/platoon-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "09efc3ffa726abbd984110fa6b7aca80dfe9e12f", + "tarball": "http://registry.npmjs.org/platoon/-/platoon-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "bcec1b4a6d55eea0e5001ce98f032e829860478c", + "tarball": "http://registry.npmjs.org/platoon/-/platoon-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "d19c117f66a6e45fe366c3b63a276bdbbeb3772d", + "tarball": "http://registry.npmjs.org/platoon/-/platoon-0.0.10.tgz" + } + }, + "keywords": [ + "unit", + "test" + ], + "url": "http://registry.npmjs.org/platoon/" + }, + "plax": { + "name": "plax", + "description": "javascript parallaxing", + "dist-tags": { + "latest": "1.2.1" + }, + "maintainers": [ + { + "name": "secondplanet", + "email": "contact@secondplanetanimation.com" + } + ], + "time": { + "modified": "2011-10-04T00:41:04.839Z", + "created": "2011-10-04T00:41:04.284Z", + "1.2.1": "2011-10-04T00:41:04.839Z" + }, + "author": { + "name": "Cameron McEfee" + }, + "repository": { + "type": "git", + "url": "git://github.com/cameronmcefee/plax.git" + }, + "versions": { + "1.2.1": "http://registry.npmjs.org/plax/1.2.1" + }, + "dist": { + "1.2.1": { + "shasum": "3cdbb2bfdf503a2fc26bb03788a026b29713c8cc", + "tarball": "http://registry.npmjs.org/plax/-/plax-1.2.1.tgz" + } + }, + "keywords": [ + "ender", + "parallax" + ], + "url": "http://registry.npmjs.org/plax/" + }, + "play": { + "name": "play", + "description": "play sound files from node.js to your speakers, simple as cake and kid approved!", + "dist-tags": { + "latest": "0.5.0" + }, + "maintainers": [ + { + "name": "marak", + "email": "marak.squires@gmail.com" + } + ], + "time": { + "modified": "2011-06-11T16:50:28.401Z", + "created": "2011-01-25T02:16:28.410Z", + "0.3.0": "2011-01-25T02:16:28.613Z", + "0.5.0": "2011-06-11T16:50:28.401Z" + }, + "author": { + "name": "Marak Squires" + }, + "repository": { + "type": "git", + "url": "git://github.com/Marak/play.js.git" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/play/0.3.0", + "0.5.0": "http://registry.npmjs.org/play/0.5.0" + }, + "dist": { + "0.3.0": { + "shasum": "54cde5336cfeae8bbff21fcaf5f201f1cf51d940", + "tarball": "http://registry.npmjs.org/play/-/play-0.3.0.tgz" + }, + "0.5.0": { + "shasum": "f814e67163de29de7b9d9e905df8389ae4ea6347", + "tarball": "http://registry.npmjs.org/play/-/play-0.5.0.tgz" + } + }, + "url": "http://registry.npmjs.org/play/" + }, + "plist": { + "name": "plist", + "description": "Mac OS X Plist parser for NodeJS. Convert a Plist file or string into a native JS object", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "TooTallNate", + "email": "nathan@tootallnate.net" + } + ], + "author": { + "name": "Nathan Rajlich", + "email": "nathan@tootallnate.net" + }, + "time": { + "modified": "2011-11-06T18:58:59.675Z", + "created": "2011-05-06T05:47:51.174Z", + "0.1.0": "2011-05-06T05:47:51.174Z", + "0.1.1": "2011-05-06T05:47:51.174Z", + "0.2.0": "2011-06-03T21:19:51.287Z", + "0.2.1": "2011-11-06T18:58:59.675Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/TooTallNate/node-plist.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/plist/0.1.0", + "0.1.1": "http://registry.npmjs.org/plist/0.1.1", + "0.2.0": "http://registry.npmjs.org/plist/0.2.0", + "0.2.1": "http://registry.npmjs.org/plist/0.2.1" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/plist/-/plist-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "c86729e8f6819faea79d53f1f267ccb35c194379", + "tarball": "http://registry.npmjs.org/plist/-/plist-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "d178603d84c08d492a467410ae3b8d446c045363", + "tarball": "http://registry.npmjs.org/plist/-/plist-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "f3a3de07885d773e66d8a96782f1bec28cf2b2d0", + "tarball": "http://registry.npmjs.org/plist/-/plist-0.2.1.tgz" + } + }, + "keywords": [ + "apple", + "mac", + "plist", + "parser", + "xml" + ], + "url": "http://registry.npmjs.org/plist/" + }, + "plug": { + "name": "plug", + "description": "Simple plugin system with minimal dependencies", + "dist-tags": { + "latest": "0.0.4" + }, + "readme": "# plug - lightweight and simple plugin system\n\nPlug is a very simple plugin system for Node.js. It has minimal dependencies and is should make loading plugins a very simple affair.\n\n## Design Principles\n\n- Plugins are node modules that export a `connect` and `drop` function.\n- Each `Plugger` manages a list of active plugins, which are unique by name.\n- In the event that a plugin with the same name as an existing plugin is loaded into a Plugger scope, the old plugin is __dropped__ if the new plugin is successfully __connected__.\n\n## Plugin Connection\n\nWhen a new plugin is found, the `connect` function for the plugin is called with arguments that were passed when a new `Plugger` instance was created. This sounds a little confusing at first, but makes plug quite powerful.\n\nIn the following example, for instance, a Plugger is created taking a name and age argument:\n\n`examples/simple-loader.js`:\n\n```js\nvar path = require('path'),\n plugger = require('plug').create('Bob', 36);\n\n// handle plugin connection\nplugger.on('connect', function(pluginName, pluginData, modulePath) {\n console.log('loaded plugin \"' + pluginName + '\", with data: ', pluginData);\n});\n\nplugger.find(path.resolve(__dirname, 'plugins/a'));\n```\n\nWhen plugins are later connected, these arguments are passed through to the plugin's connect function along with a callback. The callback is responsible for returning _pluginData_ to the plugger, and all of this information is passed through when a `connect` event is emitted:\n\n`plugins/a/first.js`:\n\n```\nexports.connect = function(name, age, callback) {\n\tconsole.log('I belong to ' + name);\n\tcallback({\n\t\tsport: 'Fishing'\n\t});\n});\n```\n\nRunning, the above example yields the following output:\n\n```\nI belong to Bob\nloaded plugin \"first\", with data: { sport: 'Fishing' }\n```\n\n## Plugin Drop (or Disconnection)\n\nTo be completed.\n\n## Other Node Plugin Systems\n\n- [haba](https://github.com/crcn/haba)\n- [broadway](https://github.com/flatiron/broadway)", + "maintainers": [ + { + "name": "damonoehlman", + "email": "damon.oehlman@sidelab.com" + } + ], + "time": { + "modified": "2011-12-09T03:40:00.486Z", + "created": "2011-12-06T00:24:57.669Z", + "0.0.1": "2011-12-06T00:25:02.055Z", + "0.0.2": "2011-12-06T00:47:14.805Z", + "0.0.3": "2011-12-06T15:50:29.172Z", + "0.0.4": "2011-12-09T03:40:00.486Z" + }, + "author": { + "name": "Damon Oehlman", + "email": "damon.oehlman@sidelab.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/DamonOehlman/plug.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/plug/0.0.2", + "0.0.3": "http://registry.npmjs.org/plug/0.0.3", + "0.0.4": "http://registry.npmjs.org/plug/0.0.4" + }, + "dist": { + "0.0.2": { + "shasum": "4a14224f62a5b6c9c448df078b0a198bb4ea9abf", + "tarball": "http://registry.npmjs.org/plug/-/plug-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "39fdaa9a7982326d62c6a04acdfd13fcfe888557", + "tarball": "http://registry.npmjs.org/plug/-/plug-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "52b39c795dab87791cba150898eca9870a92361f", + "tarball": "http://registry.npmjs.org/plug/-/plug-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/plug/" + }, + "PMInject": { + "name": "PMInject", + "description": "Poor Man's Dependency Injection", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "tcoats", + "email": "pminject@voodoolabs.net" + } + ], + "time": { + "modified": "2011-08-31T07:20:48.002Z", + "created": "2011-08-15T19:20:24.811Z", + "0.0.1": "2011-08-15T19:20:29.115Z", + "0.0.2": "2011-08-31T07:20:48.002Z" + }, + "author": { + "name": "Thomas Coats", + "url": "https://github.com/tcoats" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/PMInject/0.0.1", + "0.0.2": "http://registry.npmjs.org/PMInject/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "71e6bb25a5f0e55d95d36b37f986c9bd89e990cd", + "tarball": "http://registry.npmjs.org/PMInject/-/PMInject-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "0fdd462848801168843e08300d3ddd0a228f7724", + "tarball": "http://registry.npmjs.org/PMInject/-/PMInject-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/PMInject/" + }, + "png": { + "name": "png", + "description": "A C++ module for node-js that converts an RGB and RGBA buffers to PNG images (in memory).", + "dist-tags": { + "latest": "2.0.1" + }, + "maintainers": [ + { + "name": "pkrumins", + "email": "peteris.krumins@gmail.com" + } + ], + "time": { + "modified": "2011-11-21T11:06:50.697Z", + "created": "2011-02-07T01:31:27.473Z", + "1.0.0": "2011-02-07T01:31:27.473Z", + "1.0.1": "2011-02-07T01:31:27.473Z", + "1.0.2": "2011-02-07T01:31:27.473Z", + "1.0.3": "2011-02-07T01:31:27.473Z", + "2.0.0": "2011-02-07T01:31:27.473Z", + "2.0.1": "2011-11-21T11:06:50.697Z" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/png/1.0.0", + "1.0.1": "http://registry.npmjs.org/png/1.0.1", + "1.0.2": "http://registry.npmjs.org/png/1.0.2", + "1.0.3": "http://registry.npmjs.org/png/1.0.3", + "2.0.0": "http://registry.npmjs.org/png/2.0.0", + "2.0.1": "http://registry.npmjs.org/png/2.0.1" + }, + "dist": { + "1.0.0": { + "tarball": "http://packages:5984/png/-/png-1.0.0.tgz" + }, + "1.0.1": { + "tarball": "http://packages:5984/png/-/png-1.0.1.tgz" + }, + "1.0.2": { + "tarball": "http://packages:5984/png/-/png-1.0.2.tgz" + }, + "1.0.3": { + "tarball": "http://packages:5984/png/-/png-1.0.3.tgz" + }, + "2.0.0": { + "tarball": "http://registry.npmjs.org/png/-/png-2.0.0.tgz" + }, + "2.0.1": { + "shasum": "2e7148df6051843aa496e8ba120a364d06c3c2c1", + "tarball": "http://registry.npmjs.org/png/-/png-2.0.1.tgz" + } + }, + "keywords": [ + "png", + "rgb", + "rgba", + "image", + "picture" + ], + "url": "http://registry.npmjs.org/png/" + }, + "png-guts": { + "name": "png-guts", + "description": "Helpers for working for working with PNG internals, `png-guts --strip-text`", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "andrewschaaf", + "email": "andrew@andrewschaaf.com" + } + ], + "time": { + "modified": "2011-08-01T19:52:10.451Z", + "created": "2011-08-01T19:20:08.759Z", + "0.0.1": "2011-08-01T19:20:12.875Z", + "0.0.2": "2011-08-01T19:52:10.451Z" + }, + "author": { + "name": "Andrew Schaaf", + "email": "andrew@andrewschaaf.com", + "url": "http://andrewschaaf.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/andrewschaaf/node-png-guts.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/png-guts/0.0.1", + "0.0.2": "http://registry.npmjs.org/png-guts/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "e268182042d23d907e52e2df2df4edd18b1ccc2f", + "tarball": "http://registry.npmjs.org/png-guts/-/png-guts-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "e071f4d73eca791c5e62fab221131fd4a835000f", + "tarball": "http://registry.npmjs.org/png-guts/-/png-guts-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/png-guts/" + }, + "pocket": { + "name": "pocket", + "description": "A simple, small, file system-based data store for Node.js.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "jaredhanson", + "email": "jaredhanson@gmail.com" + } + ], + "time": { + "modified": "2011-12-04T18:40:15.425Z", + "created": "2011-12-04T18:40:13.602Z", + "0.1.0": "2011-12-04T18:40:15.425Z" + }, + "author": { + "name": "Jared Hanson", + "email": "jaredhanson@gmail.com", + "url": "http://www.jaredhanson.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jaredhanson/pocket.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/pocket/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "afffd7efbbc8494754f9fc7fc79844da068291ab", + "tarball": "http://registry.npmjs.org/pocket/-/pocket-0.1.0.tgz" + } + }, + "keywords": [ + "db", + "database", + "datastore", + "nosql" + ], + "url": "http://registry.npmjs.org/pocket/" + }, + "police": { + "name": "police", + "description": "policing tool for dependency package versions", + "dist-tags": { + "latest": "0.1.2" + }, + "readme": "# police\nA module dependency version policing tool. It goes through all your repositories on github which has package.json.\nThen it analyzes the dependencies and reports back to you about all the outdated packages.\n\nIt also can suggest corrections to your package.json file in certain cases.\n\n![Running](http://github.com/pkumar/npm-police/raw/master/img/police-octonode.png \"Running\")\n\n## Installation\nInstall police globally from npm registry by typing the following command\n\n```\nnpm install police -g\n```\n\n## Usage\nFor the first time after you installed police, you need to authenticate yourself to [github](http://github.com).\nThis is a one-time step\n\n```\npolice auth\n```\n\n**Note:** We will not save your [github](http://github.com) password anywhere. A token which we acquire during\nthe authentication will be used thereafter.\n\n```sh\n# To police your module dependencies\npolice\n\n# To police a particular module (You should give the repository name)\npolice octonode\n\n# To police another user/org module dependencies\npolice -u flatiron\n\n# To police a particular module of another user/org (You should give the repository name)\npolice flatiron/plates\n```\n\nThe token which we acquied during auth will be stored in `$HOME/.policeconf`. If you want to use another config file\n\n```\npolice octonode --conf /etc/policeconf\npolice octonode --conf ~/.conf\n```\n\nIf you want to destory your token, you can use\n\n```\npolice -d\npolice --destroy\n```\n\nCalling police with help option will display all the above\n\n```\npolice -h\npolice --help\n```\n\n![Help](http://github.com/pkumar/npm-police/raw/master/img/police-help.png \"Help\")\n\nIf you like this project, please watch this and [follow](http://github.com/users/follow?target=pkumar) me.\n\n## Testing\n```\nnpm test\n```\n\n## Contributors\nHere is a list of [Contributors](http://github.com/pkumar/npm-police/contributors)\n\n### TODO\n- Proxy support\n- Option to isolate dependency checking and suggestions\n- Support multiple npm registries (custom)\n- Display progress bar instead of listing the dependencies (use charm)\n- Caching package.json blobs per commit\n- Start using [octonode](http://github.com/pkumar/octonode) module\n- Command for setting and deleting configurations\n\n__I accept pull requests and guarantee a reply back within a day__\n\n## License\nMIT/X11\n\n## Bug Reports\nReport [here](http://github.com/pkumar/npm-police/issues). __Guaranteed reply within a day__.\n\n## Contact\nPavan Kumar Sunkara (pavan.sss1991@gmail.com)\n\nFollow me on [github](http://github.com/pkumar), [twitter](http://twitter.com/pksunkara)\n\nConcept by: [Martin Wawrusch](http://github.com/mwawrusch) (martin@wawrusch.com)\n", + "maintainers": [ + { + "name": "pksunkara", + "email": "pavan.sss1991@gmail.com" + } + ], + "time": { + "modified": "2011-12-06T13:38:49.075Z", + "created": "2011-11-27T12:21:54.010Z", + "0.1.0": "2011-11-27T12:21:55.703Z", + "0.1.1": "2011-11-30T19:38:17.163Z", + "0.1.2": "2011-12-06T13:38:49.075Z" + }, + "author": { + "name": "Pavan Kumar Sunkara", + "email": "pavan.sss1991@gmail.com", + "url": "http://pksunkara.github.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/pksunkara/npm-police.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/police/0.1.0", + "0.1.1": "http://registry.npmjs.org/police/0.1.1", + "0.1.2": "http://registry.npmjs.org/police/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "4ffea17fa0aa9c4db99ec10611cda35a71794fb9", + "tarball": "http://registry.npmjs.org/police/-/police-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "362409a830ccfe8cdeb520cd7af2db5bb723d90a", + "tarball": "http://registry.npmjs.org/police/-/police-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "202e02d23ddcd0363ba34a8677ee2ce266c86684", + "tarball": "http://registry.npmjs.org/police/-/police-0.1.2.tgz" + } + }, + "keywords": [ + "police", + "dependency", + "package", + "version", + "github", + "npm" + ], + "url": "http://registry.npmjs.org/police/" + }, + "policyfile": { + "name": "policyfile", + "description": "Flash Socket Policy File Server. A server to respond to Flash Socket Policy requests, both inline and through a dedicated server instance.", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "V1", + "email": "info@3rd-Eden.com" + } + ], + "time": { + "modified": "2011-10-29T23:22:52.420Z", + "created": "2011-05-31T20:50:44.777Z", + "0.0.1": "2011-05-31T20:50:45.177Z", + "0.0.2": "2011-06-16T18:47:55.845Z", + "0.0.3": "2011-06-17T09:57:21.732Z", + "0.0.4": "2011-07-23T20:36:53.025Z", + "0.0.5": "2011-10-29T23:22:52.420Z" + }, + "author": { + "name": "Arnout Kazemier" + }, + "repository": { + "type": "git", + "url": "git://github.com/3rd-Eden/FlashPolicyFileServer.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/policyfile/0.0.1", + "0.0.2": "http://registry.npmjs.org/policyfile/0.0.2", + "0.0.3": "http://registry.npmjs.org/policyfile/0.0.3", + "0.0.4": "http://registry.npmjs.org/policyfile/0.0.4", + "0.0.5": "http://registry.npmjs.org/policyfile/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "ba53eee3977a05a2810daf44783abb81a95824be", + "tarball": "http://registry.npmjs.org/policyfile/-/policyfile-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f46c9d1b7591adbdfb900bc4cf2a591dd139450f", + "tarball": "http://registry.npmjs.org/policyfile/-/policyfile-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "d78b39879f585e8ffb964d468127e2386fd68c74", + "tarball": "http://registry.npmjs.org/policyfile/-/policyfile-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "d6b82ead98ae79ebe228e2daf5903311ec982e4d", + "tarball": "http://registry.npmjs.org/policyfile/-/policyfile-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "67afb4b15c90951663cfe75006df036683fad06f", + "tarball": "http://registry.npmjs.org/policyfile/-/policyfile-0.0.5.tgz" + } + }, + "keywords": [ + "flash", + "socket", + "policy", + "file", + "server", + "Flash Socket Policy File Server", + "cross domain" + ], + "url": "http://registry.npmjs.org/policyfile/" + }, + "polla": { + "name": "polla", + "description": "polla is a multiple http server proxy/router with hot code reloading and failure rollback", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "stagas", + "email": "gstagas@gmail.com" + } + ], + "author": { + "name": "George Stagakis", + "email": "gstagas@gmail.com", + "url": "http://stagas.com/" + }, + "repository": { + "type": "git", + "url": "http://github.com/stagas/node-polla.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/polla/0.0.1", + "0.0.2": "http://registry.npmjs.org/polla/0.0.2", + "0.0.3": "http://registry.npmjs.org/polla/0.0.3", + "0.1.0": "http://registry.npmjs.org/polla/0.1.0", + "0.1.1": "http://registry.npmjs.org/polla/0.1.1", + "0.1.2": "http://registry.npmjs.org/polla/0.1.2" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/polla/-/polla-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/polla/-/polla-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/polla/-/polla-0.0.3.tgz" + }, + "0.1.0": { + "tarball": "http://registry.npmjs.org/polla/-/polla-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://registry.npmjs.org/polla/-/polla-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "0d45c2dff9a166b0363a68231183b1d067b60cc2", + "tarball": "http://registry.npmjs.org/polla/-/polla-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/polla/" + }, + "poly": { + "name": "poly", + "description": "Poly.shell - distributed shell job control with role based configuration", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "mikkelfj", + "email": "mikkel@dvide.com" + } + ], + "time": { + "modified": "2011-05-04T15:23:46.614Z", + "created": "2011-05-04T15:23:45.947Z", + "0.1.1": "2011-05-04T15:23:46.614Z" + }, + "author": { + "name": "MikkelFJ", + "email": "mikkel@dvide.com" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/poly/0.1.1" + }, + "dist": { + "0.1.1": { + "shasum": "8d28b2b6ba6ccb56238a6b6114ac911aced8c9f7", + "tarball": "http://registry.npmjs.org/poly/-/poly-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/poly/" + }, + "polyglot": { + "name": "polyglot", + "description": "i18n module for express", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "ricardobeat", + "email": "ricardobeat@gmail.com" + } + ], + "time": { + "modified": "2011-05-14T05:07:46.887Z", + "created": "2011-05-14T05:07:46.252Z", + "0.2.0": "2011-05-14T05:07:46.887Z" + }, + "author": { + "name": "Ricardo Tomasi", + "email": "ricardobeat@gmail.com", + "url": "http://ricardo.cc/" + }, + "repository": { + "type": "git", + "url": "git://github.com/ricardobeat/polyglot.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/polyglot/0.2.0" + }, + "dist": { + "0.2.0": { + "shasum": "dfafaef9546a365be2fa0bf0a6f37d07a7fa8b30", + "tarball": "http://registry.npmjs.org/polyglot/-/polyglot-0.2.0.tgz" + } + }, + "keywords": [ + "i18n", + "L10n", + "G10n", + "internationalization", + "globalization", + "localization", + "templates" + ], + "url": "http://registry.npmjs.org/polyglot/" + }, + "polymorph": { + "name": "polymorph", + "description": "Connect middleware for transparence compile dev files.", + "dist-tags": { + "latest": "0.0.2" + }, + "readme": "# Polymorph\n\n__Polymorph__ [Node](http://nodejs.org) module for compile client dev files on fly, inspired by [connect-assets](http://github.com/TrevorBurnham/connect-assets).\n## Installation\n\n`npm install polymorph`\n\n## Example\n\n`server.coffee`\n\n``` coffeescript\nexpress = require 'express'\napp = express.createServer()\n\n{Polymorph, compilers} = require 'polymorph'\n\npolymorph = new Polymorph {\n path: \"#{__dirname}/assets\"\n}\n\npolymorph.form '.html', '.jade', compilers.jade\npolymorph.form '.js', '.coffee', compilers.coffee\n# Uncomment next line for test compressed version of scripts\n# polymorph.form '.js', compilers.uglify\n\napp.use polymorph.middleware()\n\napp.listen 3000\n```\n\n`assets/index.jade`\n\n``` jade\n!!! 5\nhtml\n head\n body\n h1 Jade template!\n```\n\n`assets/hello.coffee`\n\n``` coffeescript\nclass Hello\n constructor: () ->\n alert 'CoffeeScript'\n\nnew Hello\n```\n\nRun server `coffee server.coffee`.\n\nThen open `http://localhost:3000/index.html` in you browser.\n\n## Features\n\n- Useful for development under frameworks with dynamic class loading ([Ext](http://www.sencha.com/products/extjs/), [Batmanjs](http://batmanjs.org/))\n- Recompile only if content changed, but never sent 304 response\n\n## TODO\n\n- Refactoring sources now it is ugly\n- May be to realize able to respond 304?\n\n## License\n\nCopyright (c) 2011 Dmitry Bochkarev ([github](http://github.com/dmitrybochkarev))\n\nMIT license\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "maintainers": [ + { + "name": "dmitrybochkarev", + "email": "dimabochkarev@gmail.com" + } + ], + "time": { + "modified": "2011-11-25T06:11:05.813Z", + "created": "2011-11-17T04:30:02.473Z", + "0.0.1": "2011-11-17T04:30:05.538Z", + "0.0.2": "2011-11-25T06:11:05.813Z" + }, + "author": { + "name": "Dmitry Bochkarev", + "email": "dimabochkarev@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dmitrybochkarev/Polymorph.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/polymorph/0.0.1", + "0.0.2": "http://registry.npmjs.org/polymorph/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "82878f04c1e03f5f6daed6e059d4094c08db2c76", + "tarball": "http://registry.npmjs.org/polymorph/-/polymorph-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "973d96fead78b18ae10aaa7adcd62d6e79661750", + "tarball": "http://registry.npmjs.org/polymorph/-/polymorph-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/polymorph/" + }, + "pony": { + "name": "pony", + "description": "Send email.", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": null, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-11-30T10:38:49.426Z", + "created": "2011-11-30T08:28:55.549Z", + "0.0.0": "2011-11-30T08:29:16.910Z", + "0.0.1": "2011-11-30T10:38:49.426Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-pony.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/pony/0.0.0", + "0.0.1": "http://registry.npmjs.org/pony/0.0.1" + }, + "dist": { + "0.0.0": { + "shasum": "5c17f95f3d3d1ed03e62e9e832293d7be6b597ec", + "tarball": "http://registry.npmjs.org/pony/-/pony-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "458efaa0c6dc677acea7a671cd44fa8e383d7cf2", + "tarball": "http://registry.npmjs.org/pony/-/pony-0.0.1.tgz" + } + }, + "keywords": [ + "email", + "mail", + "smtp", + "client" + ], + "url": "http://registry.npmjs.org/pony/" + }, + "pool": { + "name": "pool", + "description": "HTTP client pools.", + "dist-tags": { + "latest": "0.4.1" + }, + "maintainers": [ + { + "name": "mikeal", + "email": "mikeal.rogers@gmail.com" + } + ], + "author": { + "name": "Mikeal Rogers", + "email": "mikeal.rogers@gmail.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/mikeal/node-utils.git" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/pool/0.3.0", + "0.4.0": "http://registry.npmjs.org/pool/0.4.0", + "0.4.1": "http://registry.npmjs.org/pool/0.4.1" + }, + "dist": { + "0.3.0": { + "tarball": "http://packages:5984/pool/-/pool-0.3.0.tgz" + }, + "0.4.0": { + "tarball": "http://packages:5984/pool/-/pool-0.4.0.tgz" + }, + "0.4.1": { + "tarball": "http://packages:5984/pool/-/pool-0.4.1.tgz" + } + }, + "url": "http://registry.npmjs.org/pool/" + }, + "poolp": { + "name": "poolp", + "description": "Poolp helps you to deal with a parameterized pool of objects.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "marsup", + "email": "marsup@gmail.com" + } + ], + "time": { + "modified": "2011-10-23T21:15:24.111Z", + "created": "2011-10-23T21:15:22.434Z", + "0.0.1": "2011-10-23T21:15:24.111Z" + }, + "author": { + "name": "Marsup" + }, + "repository": { + "type": "git", + "url": "git://github.com/Marsup/poolp.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/poolp/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "f18f0148889c74eb9d964450e8383fbdccd946ab", + "tarball": "http://registry.npmjs.org/poolp/-/poolp-0.0.1.tgz" + } + }, + "keywords": [ + "pool" + ], + "url": "http://registry.npmjs.org/poolp/" + }, + "poolq": { + "name": "poolq", + "description": "NodeJS Background Process Management w/ Queue", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "edwardhotchkiss", + "email": "e@ingk.com" + } + ], + "time": { + "modified": "2011-12-08T17:01:25.723Z", + "created": "2011-10-18T15:56:27.245Z", + "0.0.0": "2011-12-08T16:51:12.766Z", + "0.0.1": "2011-12-08T16:51:12.766Z", + "0.0.2": "2011-12-08T16:51:12.766Z", + "0.0.3": "2011-12-08T16:51:12.766Z", + "0.0.4": "2011-12-08T16:51:12.766Z", + "0.0.5": "2011-12-08T16:51:12.766Z", + "0.0.6": "2011-12-08T17:01:25.723Z" + }, + "author": { + "name": "Edward Hotchkiss", + "email": "e@ingk.com" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/poolq/0.0.0", + "0.0.1": "http://registry.npmjs.org/poolq/0.0.1", + "0.0.2": "http://registry.npmjs.org/poolq/0.0.2", + "0.0.3": "http://registry.npmjs.org/poolq/0.0.3", + "0.0.4": "http://registry.npmjs.org/poolq/0.0.4", + "0.0.5": "http://registry.npmjs.org/poolq/0.0.5", + "0.0.6": "http://registry.npmjs.org/poolq/0.0.6" + }, + "dist": { + "0.0.0": { + "shasum": "93929ea69ca3d4c736bae1f415d0cadc0ce1bb7b", + "tarball": "http://registry.npmjs.org/poolq/-/poolq-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "43527a9b3a3c88cdcec3c6ca1ba5219f658fdafa", + "tarball": "http://registry.npmjs.org/poolq/-/poolq-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "92c9b2406c50a92b4bde5b9f02ae15a364fe992b", + "tarball": "http://registry.npmjs.org/poolq/-/poolq-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "ee06bd908823f0821dadb1462c53b06682e51327", + "tarball": "http://registry.npmjs.org/poolq/-/poolq-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "29acf24e5a54e93cb30101fcd304d1ef474fea4c", + "tarball": "http://registry.npmjs.org/poolq/-/poolq-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "69a5078407d7ef573ddb206748abc88a29824c3a", + "tarball": "http://registry.npmjs.org/poolq/-/poolq-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "78cab72e7d130bf64c64e5029b7b416a4bdb8a4b", + "tarball": "http://registry.npmjs.org/poolq/-/poolq-0.0.6.tgz" + } + }, + "keywords": [ + "queue", + "cron", + "poolq", + "job", + "management" + ], + "url": "http://registry.npmjs.org/poolq/" + }, + "poolr": { + "name": "poolr", + "description": "limit parallel execution and serialze when limit is reached", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "bkw", + "email": "bkw@codingforce.com" + } + ], + "time": { + "modified": "2011-12-04T15:14:13.930Z", + "created": "2011-03-20T13:06:11.770Z", + "0.0.3": "2011-03-20T13:06:12.325Z", + "0.0.4": "2011-04-29T08:34:19.554Z", + "0.0.5": "2011-12-04T13:20:22.098Z", + "0.0.6": "2011-12-04T15:14:13.930Z" + }, + "author": { + "name": "Bernhard Weisshuhn", + "email": "bkw@codingforce.com", + "url": "https://github.com/bkw" + }, + "repository": { + "type": "git", + "url": "git://github.com/codingforce/poolr.git" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/poolr/0.0.3", + "0.0.4": "http://registry.npmjs.org/poolr/0.0.4", + "0.0.5": "http://registry.npmjs.org/poolr/0.0.5", + "0.0.6": "http://registry.npmjs.org/poolr/0.0.6" + }, + "dist": { + "0.0.3": { + "shasum": "ebae74cca3b400422d08b0fbb48c7d1a1b56e83d", + "tarball": "http://registry.npmjs.org/poolr/-/poolr-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "a2f9667d763f96ce874592a675183c6fadac7651", + "tarball": "http://registry.npmjs.org/poolr/-/poolr-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "bf68a4fc25fa96d877ec6df9f8b5d5dcba531b20", + "tarball": "http://registry.npmjs.org/poolr/-/poolr-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "4112ebe6fc6847ca2adab7a251d2a68c4b182d3d", + "tarball": "http://registry.npmjs.org/poolr/-/poolr-0.0.6.tgz" + } + }, + "keywords": [ + "pool", + "limit", + "parallel", + "async" + ], + "url": "http://registry.npmjs.org/poolr/" + }, + "pop": { + "name": "pop", + "description": "A static website and blog generator", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "alexyoung", + "email": "alex@alexyoung.org" + } + ], + "time": { + "modified": "2011-11-27T15:02:05.200Z", + "created": "2011-07-20T22:16:22.961Z", + "0.0.1": "2011-07-20T22:16:23.743Z", + "0.0.2": "2011-07-22T21:15:29.830Z", + "0.0.3": "2011-07-23T08:56:13.727Z", + "0.0.4": "2011-07-24T09:40:55.917Z", + "0.0.5": "2011-07-25T10:18:43.510Z", + "0.0.6": "2011-07-26T10:08:27.461Z", + "0.0.7": "2011-07-26T23:28:35.048Z", + "0.0.8": "2011-07-28T10:03:30.336Z", + "0.1.0": "2011-08-02T09:25:41.567Z", + "0.1.1": "2011-08-10T22:55:31.721Z", + "0.1.2": "2011-08-18T22:49:59.390Z", + "0.1.3": "2011-09-01T20:04:49.982Z", + "0.1.4": "2011-11-27T15:02:05.200Z" + }, + "author": { + "name": "Alex R. Young", + "email": "alex@helicoid.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/alexyoung/pop.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/pop/0.0.1", + "0.0.2": "http://registry.npmjs.org/pop/0.0.2", + "0.0.3": "http://registry.npmjs.org/pop/0.0.3", + "0.0.4": "http://registry.npmjs.org/pop/0.0.4", + "0.0.5": "http://registry.npmjs.org/pop/0.0.5", + "0.0.6": "http://registry.npmjs.org/pop/0.0.6", + "0.0.7": "http://registry.npmjs.org/pop/0.0.7", + "0.0.8": "http://registry.npmjs.org/pop/0.0.8", + "0.1.0": "http://registry.npmjs.org/pop/0.1.0", + "0.1.1": "http://registry.npmjs.org/pop/0.1.1", + "0.1.2": "http://registry.npmjs.org/pop/0.1.2", + "0.1.3": "http://registry.npmjs.org/pop/0.1.3", + "0.1.4": "http://registry.npmjs.org/pop/0.1.4" + }, + "dist": { + "0.0.1": { + "shasum": "4cb55410eda4ca949e36e74235fc8856f6564aab", + "tarball": "http://registry.npmjs.org/pop/-/pop-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "79272e24afe5b3f4a3592a566782d9c80ade0926", + "tarball": "http://registry.npmjs.org/pop/-/pop-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "3b2a8b1ae3d990cdaa5a95cdfb34145db81723ca", + "tarball": "http://registry.npmjs.org/pop/-/pop-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "24f7bd76da3ec09bc74524e28e2dc0619c9c62be", + "tarball": "http://registry.npmjs.org/pop/-/pop-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "fc8f90ca8a9315fbd317d3a53a0568f76ff88b30", + "tarball": "http://registry.npmjs.org/pop/-/pop-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "34588ef334238d835b0b7fb0410c2b5c698051ce", + "tarball": "http://registry.npmjs.org/pop/-/pop-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "606fe83cccbb6d809e3a5f4313fc93043190b7d5", + "tarball": "http://registry.npmjs.org/pop/-/pop-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "1c09749fd9c94249d626d1cff693857988419ed9", + "tarball": "http://registry.npmjs.org/pop/-/pop-0.0.8.tgz" + }, + "0.1.0": { + "shasum": "8d128bbdbe23287ef53687c980756a516057f625", + "tarball": "http://registry.npmjs.org/pop/-/pop-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "7043ba0eda60716bde053b6c8a15ec925f8811ca", + "tarball": "http://registry.npmjs.org/pop/-/pop-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "d0d0bc502e9d6e8d77b18656522adcd4854627ce", + "tarball": "http://registry.npmjs.org/pop/-/pop-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "ced90315352e2d3de10da1d35812de915eed258b", + "tarball": "http://registry.npmjs.org/pop/-/pop-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "356b59fbab0d5640740c9edcf833b47c1adcc795", + "tarball": "http://registry.npmjs.org/pop/-/pop-0.1.4.tgz" + } + }, + "url": "http://registry.npmjs.org/pop/" + }, + "pop-disqus": { + "name": "pop-disqus", + "description": "Provides a Disqus helper to Pop sites.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "alexyoung", + "email": "a@alexyoung.org" + } + ], + "time": { + "modified": "2011-07-25T10:18:50.723Z", + "created": "2011-07-25T10:18:50.093Z", + "0.1.0": "2011-07-25T10:18:50.723Z" + }, + "author": { + "name": "Alex R. Young", + "email": "alex@helicoid.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/alexyoung/pop-disqus.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/pop-disqus/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "a8ba6a6a7722b68cf7650aac7c102d803fa934ed", + "tarball": "http://registry.npmjs.org/pop-disqus/-/pop-disqus-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/pop-disqus/" + }, + "pop-ga": { + "name": "pop-ga", + "description": "Provides a Google Analytics helper to Pop sites.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "shapeshed", + "email": "george@shapeshed.com" + } + ], + "time": { + "modified": "2011-08-22T09:29:04.533Z", + "created": "2011-08-22T09:29:03.602Z", + "0.1.0": "2011-08-22T09:29:04.533Z" + }, + "author": { + "name": "George Ornbo", + "email": "george@shapeshed.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/shapeshed/pop-ga.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/pop-ga/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "f10ebe0e04ec37ff1554a5ba22da5eb35e8cf0cb", + "tarball": "http://registry.npmjs.org/pop-ga/-/pop-ga-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/pop-ga/" + }, + "pop-gallery": { + "name": "pop-gallery", + "description": "Provides helpers and a generator that can be used to build galleries.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "alexyoung", + "email": "a@alexyoung.org" + } + ], + "time": { + "modified": "2011-07-26T23:23:11.238Z", + "created": "2011-07-26T23:23:10.557Z", + "0.1.0": "2011-07-26T23:23:11.238Z" + }, + "author": { + "name": "Alex R. Young", + "email": "alex@helicoid.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/alexyoung/pop-gallery.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/pop-gallery/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "075758c74e4ba54cf5b3ac28125d10293e305996", + "tarball": "http://registry.npmjs.org/pop-gallery/-/pop-gallery-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/pop-gallery/" + }, + "pop3-client": { + "name": "pop3-client", + "description": "POP3 client library for Node.js", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "ditesh", + "email": "ditesh@gathani.org" + } + ], + "time": { + "modified": "2011-09-02T02:10:09.700Z", + "created": "2011-09-02T02:10:07.108Z", + "0.1.0": "2011-09-02T02:10:09.700Z" + }, + "author": { + "name": "Ditesh Shashikant Gathani", + "email": "ditesh@gathani.org", + "url": "http://ditesh.gathani.org/blog/" + }, + "repository": { + "type": "git", + "url": "git://github.com/ditesh/node-poplib.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/pop3-client/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "e0c37589d66e8832592f48685e0270d6d983cb51", + "tarball": "http://registry.npmjs.org/pop3-client/-/pop3-client-0.1.0.tgz" + } + }, + "keywords": [ + "POP3", + "pop3", + "pop", + "client", + "mail", + "email" + ], + "url": "http://registry.npmjs.org/pop3-client/" + }, + "poplib": { + "name": "poplib", + "description": "POP3 client library for Node.js", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "ditesh", + "email": "ditesh@gathani.org" + } + ], + "time": { + "modified": "2011-11-08T06:17:03.899Z", + "created": "2011-09-02T02:12:33.881Z", + "0.1.0": "2011-09-02T02:12:35.378Z", + "0.1.1": "2011-09-18T14:27:26.792Z", + "0.1.2": "2011-09-21T02:49:37.555Z", + "0.1.4": "2011-11-08T06:17:03.899Z" + }, + "author": { + "name": "Ditesh Shashikant Gathani", + "email": "ditesh@gathani.org", + "url": "http://ditesh.gathani.org/blog/" + }, + "repository": { + "type": "git", + "url": "git://github.com/ditesh/node-poplib.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/poplib/0.1.0", + "0.1.1": "http://registry.npmjs.org/poplib/0.1.1", + "0.1.2": "http://registry.npmjs.org/poplib/0.1.2", + "0.1.4": "http://registry.npmjs.org/poplib/0.1.4" + }, + "dist": { + "0.1.0": { + "shasum": "533a1373102205a991626032755a34467116723d", + "tarball": "http://registry.npmjs.org/poplib/-/poplib-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "2f26a9a0de0623675dc6f830bec413b26fcd6c8a", + "tarball": "http://registry.npmjs.org/poplib/-/poplib-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "5df9820e0514afc040a3f35cbd9f1336f142de60", + "tarball": "http://registry.npmjs.org/poplib/-/poplib-0.1.2.tgz" + }, + "0.1.4": { + "shasum": "355188779f3a0be0a943dfe29c2fd8a8bda35919", + "tarball": "http://registry.npmjs.org/poplib/-/poplib-0.1.4.tgz" + } + }, + "keywords": [ + "POP3", + "pop3", + "pop", + "client", + "mail", + "email" + ], + "url": "http://registry.npmjs.org/poplib/" + }, + "portchecker": { + "name": "portchecker", + "description": "a simple tcp port checker for node", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": null, + "maintainers": [ + { + "name": "danielzzz", + "email": "daniel@zelisko.net" + } + ], + "time": { + "modified": "2011-11-23T13:23:52.817Z", + "created": "2011-11-23T13:23:50.368Z", + "0.1.0": "2011-11-23T13:23:52.817Z" + }, + "author": { + "name": "danielzzz", + "email": "daniel@zelisko.net", + "url": "http://daniel.zelisko.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/danielzzz/node-portchecker.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/portchecker/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "f2c87d7ff41e8b100404d03c98db4264719aa5b7", + "tarball": "http://registry.npmjs.org/portchecker/-/portchecker-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/portchecker/" + }, + "porter-stemmer": { + "name": "porter-stemmer", + "description": "Martin Porter's stemmer wrapped in CommonJS for use in node.js", + "dist-tags": { + "latest": "0.9.1" + }, + "maintainers": [ + { + "name": "jedparsons", + "email": "jed@jedparsons.com" + } + ], + "time": { + "modified": "2011-05-28T06:38:00.883Z", + "created": "2011-05-28T06:22:13.732Z", + "0.9.0": "2011-05-28T06:22:14.329Z", + "0.9.1": "2011-05-28T06:38:00.883Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/jedp/porter-stemmer.git" + }, + "versions": { + "0.9.0": "http://registry.npmjs.org/porter-stemmer/0.9.0", + "0.9.1": "http://registry.npmjs.org/porter-stemmer/0.9.1" + }, + "dist": { + "0.9.0": { + "shasum": "1b6e1cd1d9c47185348fabafbea108d2b22c6c22", + "tarball": "http://registry.npmjs.org/porter-stemmer/-/porter-stemmer-0.9.0.tgz" + }, + "0.9.1": { + "shasum": "a16ecea3abe44724ac88c1480021ea36baa21f9b", + "tarball": "http://registry.npmjs.org/porter-stemmer/-/porter-stemmer-0.9.1.tgz" + } + }, + "url": "http://registry.npmjs.org/porter-stemmer/" + }, + "portfinder": { + "name": "portfinder", + "description": "A simple tool to find an open port on the current machine", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + } + ], + "time": { + "modified": "2011-11-20T19:30:29.396Z", + "created": "2011-07-08T19:30:31.334Z", + "0.1.0": "2011-07-08T19:30:31.474Z", + "0.2.0": "2011-07-11T00:13:17.919Z", + "0.2.1": "2011-11-20T19:30:29.396Z" + }, + "author": { + "name": "Charlie Robbins", + "email": "charlie.robbins@gmail.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:indexzero/node-portfinder.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/portfinder/0.1.0", + "0.2.0": "http://registry.npmjs.org/portfinder/0.2.0", + "0.2.1": "http://registry.npmjs.org/portfinder/0.2.1" + }, + "dist": { + "0.1.0": { + "shasum": "07ef1c071b93737e952b8a53fdde5127aafe4b47", + "tarball": "http://registry.npmjs.org/portfinder/-/portfinder-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "96fdf989e246ea7876c20356aeaecb4c83c9b6a2", + "tarball": "http://registry.npmjs.org/portfinder/-/portfinder-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "b2b9b0164f9e17fa3a9c7db2304d0a75140c71ad", + "tarball": "http://registry.npmjs.org/portfinder/-/portfinder-0.2.1.tgz" + } + }, + "keywords": [ + "http", + "ports", + "utilities" + ], + "url": "http://registry.npmjs.org/portfinder/" + }, + "portscanner": { + "name": "portscanner", + "description": "Asynchronous port scanner for Node.js", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "baalexander", + "email": "baalexander@gmail.com" + } + ], + "time": { + "modified": "2011-11-30T03:47:07.051Z", + "created": "2011-08-30T02:29:58.676Z", + "0.1.0": "2011-08-30T02:29:59.233Z", + "0.1.1": "2011-11-18T00:18:16.963Z", + "0.1.2": "2011-11-30T03:47:07.051Z" + }, + "author": { + "name": "Brandon Alexander", + "email": "baalexander@gmail.com", + "url": "https://github.com/baalexander" + }, + "repository": { + "type": "git", + "url": "git://github.com/baalexander/node-portscanner.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/portscanner/0.1.0", + "0.1.1": "http://registry.npmjs.org/portscanner/0.1.1", + "0.1.2": "http://registry.npmjs.org/portscanner/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "95bee742a13a5c7b158f8995e28832715ae18fa4", + "tarball": "http://registry.npmjs.org/portscanner/-/portscanner-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "9d758140e971e07e16104170018a884129b7fc6c", + "tarball": "http://registry.npmjs.org/portscanner/-/portscanner-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "ea6bda53476132905e7b900854d4fc8bc1e67d78", + "tarball": "http://registry.npmjs.org/portscanner/-/portscanner-0.1.2.tgz" + } + }, + "keywords": [ + "portscanner", + "port", + "scanner", + "checker", + "status" + ], + "url": "http://registry.npmjs.org/portscanner/" + }, + "pos": { + "name": "pos", + "description": "fasttag part of speech tagger implementation", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "gerad", + "email": "gerads@gmail.com" + } + ], + "time": { + "modified": "2011-03-10T16:50:06.290Z", + "created": "2011-03-10T16:50:05.867Z", + "0.1.1": "2011-03-10T16:50:06.290Z" + }, + "author": { + "name": "Percy Wegmann" + }, + "repository": { + "type": "git", + "url": "git://github.com/fortnightlabs/pos-js.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/pos/0.1.1" + }, + "dist": { + "0.1.1": { + "shasum": "3bfd7ebbf1f8b0f0291cd9ad32b7f8c8ef53de70", + "tarball": "http://registry.npmjs.org/pos/-/pos-0.1.1.tgz" + } + }, + "keywords": [ + "nlp", + "pos", + "part of speech", + "jspos", + "fasttag" + ], + "url": "http://registry.npmjs.org/pos/" + }, + "posix": { + "name": "posix", + "description": "The missing POSIX system calls", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "mel", + "email": "mel@ohmu.fi" + } + ], + "time": { + "modified": "2011-12-04T00:35:04.951Z", + "created": "2011-11-22T00:06:49.384Z", + "0.0.1": "2011-11-22T00:18:13.793Z", + "0.0.2": "2011-11-23T23:26:41.124Z", + "0.0.3": "2011-11-26T17:28:09.707Z", + "0.0.4": "2011-11-26T21:52:51.720Z", + "0.0.5": "2011-12-04T00:35:04.951Z" + }, + "author": { + "name": "Mika Eloranta", + "email": "mel@ohmu.fi" + }, + "repository": { + "type": "git", + "url": "git://github.com/melor/node-posix.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/posix/0.0.1", + "0.0.2": "http://registry.npmjs.org/posix/0.0.2", + "0.0.3": "http://registry.npmjs.org/posix/0.0.3", + "0.0.4": "http://registry.npmjs.org/posix/0.0.4", + "0.0.5": "http://registry.npmjs.org/posix/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "c16883fd3e134966596378bd51d3ffbf420faa7e", + "tarball": "http://registry.npmjs.org/posix/-/posix-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "d9e33014adaf4b5ec37751a487cd47dadc1b4951", + "tarball": "http://registry.npmjs.org/posix/-/posix-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "3afa6d52eb3cce7adca45d002a1fa045bd13aa60", + "tarball": "http://registry.npmjs.org/posix/-/posix-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "5bbebacc5052504d58da255fcd08ca605c4bd8f3", + "tarball": "http://registry.npmjs.org/posix/-/posix-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "47adb4b8c7e73e096e504bbd6859bf8ddef4d7c5", + "tarball": "http://registry.npmjs.org/posix/-/posix-0.0.5.tgz" + } + }, + "keywords": [ + "posix", + "rlimit", + "getrlimit", + "setrlimit", + "ulimit", + "setuid", + "setgid", + "seteuid", + "setegid", + "chroot", + "setreuid", + "setregid", + "getpgrp", + "setsid", + "setpgid", + "getpwnam", + "getgrnam", + "uid", + "gid", + "syslog", + "setlogmask" + ], + "url": "http://registry.npmjs.org/posix/" + }, + "posix-getopt": { + "name": "posix-getopt", + "description": "POSIX-style getopt()", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "dap", + "email": "dap@cs.brown.edu" + } + ], + "time": { + "modified": "2011-05-28T00:42:16.993Z", + "created": "2011-05-28T00:42:16.523Z", + "0.0.1": "2011-05-28T00:42:16.993Z" + }, + "author": { + "name": "Dave Pacheco", + "url": "dap@cs.brown.edu" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/posix-getopt/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "7a315be479bf693a57280fb27260e9b06b9e6f5f", + "tarball": "http://registry.npmjs.org/posix-getopt/-/posix-getopt-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/posix-getopt/" + }, + "postageapp": { + "name": "postageapp", + "description": "Node.JS package for sending emails through PostageApp", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "jonlim", + "email": "jon@postageapp.com" + } + ], + "time": { + "modified": "2011-08-15T19:15:52.421Z", + "created": "2011-07-07T18:58:01.199Z", + "0.0.1": "2011-07-07T18:58:01.479Z", + "0.0.2": "2011-07-12T14:51:52.313Z", + "0.0.3": "2011-07-19T18:39:30.955Z", + "0.0.5": "2011-08-15T19:15:52.421Z" + }, + "author": { + "name": "PostageApp", + "url": "http://postageapp.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/postageapp/postageapp-nodejs.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/postageapp/0.0.1", + "0.0.2": "http://registry.npmjs.org/postageapp/0.0.2", + "0.0.3": "http://registry.npmjs.org/postageapp/0.0.3", + "0.0.5": "http://registry.npmjs.org/postageapp/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "2443589e780b9ead9c5a034a7c9d2df8542523e7", + "tarball": "http://registry.npmjs.org/postageapp/-/postageapp-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "ee0987a1c20f9be69818fcc0ca71ca450976076a", + "tarball": "http://registry.npmjs.org/postageapp/-/postageapp-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "d2f2b2c6ca33aecbf9d3364e4da37c3cced837da", + "tarball": "http://registry.npmjs.org/postageapp/-/postageapp-0.0.3.tgz" + }, + "0.0.5": { + "shasum": "03a108251dc6dafd167e280ea0aabd811a83bd58", + "tarball": "http://registry.npmjs.org/postageapp/-/postageapp-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/postageapp/" + }, + "postal": { + "name": "postal", + "description": "Pub/Sub library providing wildcard subscriptions, complex message handling, etc. Works server and client-side.", + "dist-tags": { + "latest": "0.3.2" + }, + "maintainers": [ + { + "name": "ifandelse", + "email": "jim@ifandelse.com" + } + ], + "time": { + "modified": "2011-09-21T05:48:51.222Z", + "created": "2011-09-21T04:29:09.622Z", + "0.3.1": "2011-09-21T04:29:10.163Z", + "0.3.2": "2011-09-21T04:50:27.462Z" + }, + "author": { + "name": "Jim Cowart", + "email": "jim@ifandelse.com", + "url": "http://ifandelse.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/ifandelse/postal.js.git" + }, + "versions": { + "0.3.2": "http://registry.npmjs.org/postal/0.3.2" + }, + "dist": { + "0.3.2": { + "shasum": "5e391083b1661aa524813285877f5cfc36aac40b", + "tarball": "http://registry.npmjs.org/postal/-/postal-0.3.2.tgz" + } + }, + "url": "http://registry.npmjs.org/postal/" + }, + "posterous": { + "name": "posterous", + "description": "Package for the Posterous API", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "andz", + "email": "zegg90@gmail.com" + } + ], + "time": { + "modified": "2011-06-17T20:06:24.599Z", + "created": "2011-06-17T20:06:23.887Z", + "1.0.0": "2011-06-17T20:06:24.599Z" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/posterous/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "027f818017e75f69c44b83166caabbb283ca7878", + "tarball": "http://registry.npmjs.org/posterous/-/posterous-1.0.0.tgz" + } + }, + "keywords": [ + "posterous", + "api" + ], + "url": "http://registry.npmjs.org/posterous/" + }, + "postgres": { + "name": "postgres", + "description": "very basic libpg binding to node", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "ry", + "email": "ry@tinyclouds.org" + } + ], + "author": { + "name": "Ryan Dahl" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/postgres/0.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/postgres/-/postgres-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/postgres/" + }, + "postgres-js": { + "name": "postgres-js", + "description": "Pure-JavaScript implementation of the Postgres Protocol", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "aurynn", + "email": "aurynn@gmail.com" + } + ], + "time": { + "modified": "2011-02-09T06:05:16.443Z", + "created": "2011-02-09T06:05:16.036Z", + "0.1.0": "2011-02-09T06:05:16.443Z" + }, + "author": { + "name": "Aurynn Shaw", + "email": "ashaw@commandprompt.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/postgres-js/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "383a87226736265f4e394b3d84a90e5526cc770a", + "tarball": "http://registry.npmjs.org/postgres-js/-/postgres-js-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/postgres-js/" + }, + "PostgresClient": { + "name": "PostgresClient", + "description": "A PostgreSQL client library for Node.js", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "frans-willem", + "email": "fw@hardijzer.nl" + } + ], + "author": { + "name": "Frans-Willem Hardijzer", + "email": "fw@hardijzer.nl" + }, + "repository": { + "type": "git", + "url": "git://github.com/Frans-Willem/node-PostgresClient.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/PostgresClient/0.0.1", + "0.0.2": "http://registry.npmjs.org/PostgresClient/0.0.2" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/PostgresClient/-/PostgresClient-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/PostgresClient/-/PostgresClient-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/PostgresClient/" + }, + "postman": { + "name": "postman", + "description": "The Postman will help deliver messages around your application", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "aaronpowell", + "email": "me@aaron-powell.com" + } + ], + "time": { + "modified": "2011-07-24T12:39:21.285Z", + "created": "2011-07-08T04:50:43.036Z", + "0.1.0": "2011-07-08T04:50:45.030Z", + "0.2.0": "2011-07-24T12:39:21.285Z" + }, + "author": { + "name": "Aaron Powell http://apowell.me" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/postman/0.1.0", + "0.2.0": "http://registry.npmjs.org/postman/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "ed196816389d2514fd97e12dbec8e35bd9afa1f7", + "tarball": "http://registry.npmjs.org/postman/-/postman-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "73cb3634336d6cf37b976826561204157501e04e", + "tarball": "http://registry.npmjs.org/postman/-/postman-0.2.0.tgz" + } + }, + "keywords": [ + "pub/sub", + "eventing", + "message-bus" + ], + "url": "http://registry.npmjs.org/postman/" + }, + "postmark": { + "name": "postmark", + "description": "Ridiculously Simple Email Sending From Node.js using http://www.postmarkapp.com", + "dist-tags": { + "latest": "0.1.6" + }, + "maintainers": [ + { + "name": "voodootikigod", + "email": "voodootikigod@gmail.com" + } + ], + "author": { + "name": "Chris Williams", + "email": "voodootikigod@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/voodootikigod/postmark.js.git" + }, + "time": { + "modified": "2011-11-29T04:01:36.167Z", + "created": "2011-03-25T11:43:00.043Z", + "0.0.2": "2011-03-25T11:43:00.043Z", + "0.0.3": "2011-03-25T11:43:00.043Z", + "0.0.4": "2011-03-25T11:43:00.043Z", + "0.0.5": "2011-03-25T11:43:00.043Z", + "0.1.0": "2011-04-26T04:50:30.426Z", + "0.1.1": "2011-04-26T04:52:03.351Z", + "0.1.2": "2011-04-28T16:18:45.750Z", + "0.1.3": "2011-08-22T15:12:53.189Z", + "0.1.4": "2011-08-29T21:25:09.797Z", + "0.1.5": "2011-08-29T21:52:45.236Z", + "0.1.6": "2011-11-29T04:01:36.167Z" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/postmark/0.0.2", + "0.0.3": "http://registry.npmjs.org/postmark/0.0.3", + "0.0.4": "http://registry.npmjs.org/postmark/0.0.4", + "0.0.5": "http://registry.npmjs.org/postmark/0.0.5", + "0.1.0": "http://registry.npmjs.org/postmark/0.1.0", + "0.1.1": "http://registry.npmjs.org/postmark/0.1.1", + "0.1.2": "http://registry.npmjs.org/postmark/0.1.2", + "0.1.3": "http://registry.npmjs.org/postmark/0.1.3", + "0.1.4": "http://registry.npmjs.org/postmark/0.1.4", + "0.1.5": "http://registry.npmjs.org/postmark/0.1.5", + "0.1.6": "http://registry.npmjs.org/postmark/0.1.6" + }, + "dist": { + "0.0.2": { + "tarball": "http://packages:5984/postmark/-/postmark-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/postmark/-/postmark-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://packages:5984/postmark/-/postmark-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "2cb13721ca9ae512564af6336f7ffb2110fafa93", + "tarball": "http://registry.npmjs.org/postmark/-/postmark-0.0.5.tgz" + }, + "0.1.0": { + "shasum": "73b926f4aad427713e72f3667e98d2640b2950c6", + "tarball": "http://registry.npmjs.org/postmark/-/postmark-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "0c7ddf3809b1a225ea117200c7ccd7199bdf973d", + "tarball": "http://registry.npmjs.org/postmark/-/postmark-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "1e93eb6ef72ada0c2ebfdee60d4bc78a7beb3ca1", + "tarball": "http://registry.npmjs.org/postmark/-/postmark-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "645978a36c5181ab2bb8666e1b27fe7ccebbf0cb", + "tarball": "http://registry.npmjs.org/postmark/-/postmark-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "352266e5e2bdd9661f633d0fcc3909b38bab2a3c", + "tarball": "http://registry.npmjs.org/postmark/-/postmark-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "1380c57784811931ef0deb328c066ab75e338502", + "tarball": "http://registry.npmjs.org/postmark/-/postmark-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "f802c8f0d78f21a419260e45482e50c071dccb67", + "tarball": "http://registry.npmjs.org/postmark/-/postmark-0.1.6.tgz" + } + }, + "url": "http://registry.npmjs.org/postmark/" + }, + "postmark-api": { + "name": "postmark-api", + "description": "Email sending in node using http://www.postmarkapp.com", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "ekstergans", + "email": "ekstergans@gmail.com" + } + ], + "author": { + "name": "Alan Kockelbergh", + "email": "ekstergans@gmail.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/ekstergans/node-postmark.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/postmark-api/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "cb91a04c87f73c6914bf7b020f331770155dcde7", + "tarball": "http://registry.npmjs.org/postmark-api/-/postmark-api-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/postmark-api/" + }, + "postmessage": { + "name": "postmessage", + "description": "Simple and easy window.postMessage communication", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "thomassturm", + "email": "thomas@sturm.to" + } + ], + "time": { + "modified": "2011-05-26T07:19:28.963Z", + "created": "2011-05-25T06:09:24.803Z", + "0.1.1": "2011-05-25T06:09:25.764Z", + "0.1.2": "2011-05-26T07:19:28.963Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/thomassturm/ender-postmessage.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/postmessage/0.1.1", + "0.1.2": "http://registry.npmjs.org/postmessage/0.1.2" + }, + "dist": { + "0.1.1": { + "shasum": "97a0dc885c30a8cb289c629e251464f12f916bc5", + "tarball": "http://registry.npmjs.org/postmessage/-/postmessage-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "d7430ad239a9b5b3eaec323f535a87c4b7be9cf3", + "tarball": "http://registry.npmjs.org/postmessage/-/postmessage-0.1.2.tgz" + } + }, + "keywords": [ + "ender", + "postmessage" + ], + "url": "http://registry.npmjs.org/postmessage/" + }, + "postpie": { + "name": "postpie", + "description": "A pieshop backend and transport for Postgres databases.", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "chrisdickinson", + "email": "chris@neversaw.us" + } + ], + "author": { + "name": "Chris Dickinson" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/postpie/0.0.1", + "0.0.2": "http://registry.npmjs.org/postpie/0.0.2", + "0.0.3": "http://registry.npmjs.org/postpie/0.0.3" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/postpie/-/postpie-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/postpie/-/postpie-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/postpie/-/postpie-0.0.3.tgz" + } + }, + "keywords": [ + "orm", + "django", + "postgres" + ], + "url": "http://registry.npmjs.org/postpie/" + }, + "postprocess": { + "name": "postprocess", + "description": "Connect middleware providing request post-proccessing.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "lloyd", + "email": "lloyd@hilaiel.com" + } + ], + "time": { + "modified": "2011-12-12T17:18:24.100Z", + "created": "2011-09-01T12:53:37.993Z", + "0.0.1": "2011-09-01T12:53:38.809Z", + "0.0.2": "2011-09-16T23:02:21.138Z", + "0.0.3": "2011-10-28T19:19:50.430Z", + "0.0.4": "2011-12-12T17:17:54.699Z", + "0.1.0": "2011-12-12T17:18:24.100Z" + }, + "author": { + "name": "Lloyd Hilaiel", + "email": "lloyd@hilaiel.com", + "url": "http://lloyd.io" + }, + "repository": { + "type": "git", + "url": "git://github.com/lloyd/connect-postprocess.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/postprocess/0.0.1", + "0.0.2": "http://registry.npmjs.org/postprocess/0.0.2", + "0.0.3": "http://registry.npmjs.org/postprocess/0.0.3", + "0.0.4": "http://registry.npmjs.org/postprocess/0.0.4", + "0.1.0": "http://registry.npmjs.org/postprocess/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "20fe8ca64f5863a9a61a399483432690d830ce23", + "tarball": "http://registry.npmjs.org/postprocess/-/postprocess-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "b89c0ff1f5d35d804e6079737bcf8ad78155fb9a", + "tarball": "http://registry.npmjs.org/postprocess/-/postprocess-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "cb14107979e67d06e9754efd0a2f4b1a05f05f32", + "tarball": "http://registry.npmjs.org/postprocess/-/postprocess-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "5e6c8e63251a0a2ff173ab0e3fa77e16863b5b3e", + "tarball": "http://registry.npmjs.org/postprocess/-/postprocess-0.0.4.tgz" + }, + "0.1.0": { + "shasum": "dd91b73da72824e6f5b75332caa26e7933f1ef3f", + "tarball": "http://registry.npmjs.org/postprocess/-/postprocess-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/postprocess/" + }, + "potato": { + "name": "potato", + "description": "", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "poulejapon", + "email": "paul.masurel@gmail.com" + } + ], + "time": { + "modified": "2011-11-01T11:23:31.203Z", + "created": "2011-09-04T18:53:46.875Z", + "0.0.1": "2011-09-04T18:53:47.648Z", + "0.0.3": "2011-11-01T11:23:31.203Z" + }, + "author": { + "name": "Paul Masurel", + "email": "paul.masurel@gmail.com" + }, + "repository": { + "type": "hg", + "url": "https://bitbucket.org/poulejapon/potato" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/potato/0.0.1", + "0.0.3": "http://registry.npmjs.org/potato/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "c2363691726962f77ed64d79be2b0102e2226cb3", + "tarball": "http://registry.npmjs.org/potato/-/potato-0.0.1.tgz" + }, + "0.0.3": { + "shasum": "022b28767852025de742a7db8788945cc413eb5d", + "tarball": "http://registry.npmjs.org/potato/-/potato-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/potato/" + }, + "pour": { + "name": "pour", + "description": "A DSL for serial/parallel asynchronous programming in CoffeeScript", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "timcameronryan", + "email": "tim@timryan.org" + } + ], + "time": { + "modified": "2011-09-19T20:38:53.525Z", + "created": "2011-09-13T04:25:49.115Z", + "0.0.1": "2011-09-13T04:25:50.006Z", + "0.0.2": "2011-09-13T04:39:31.783Z", + "0.0.3": "2011-09-19T20:38:53.525Z" + }, + "author": { + "name": "Tim Cameron Ryan", + "email": "tim@timryan.org" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/pour/0.0.1", + "0.0.2": "http://registry.npmjs.org/pour/0.0.2", + "0.0.3": "http://registry.npmjs.org/pour/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "a6b5297423110fe9fe7d8de145bfbdca50e08b53", + "tarball": "http://registry.npmjs.org/pour/-/pour-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "dd1a5d91a18b99652980615f75a715f63806b3e8", + "tarball": "http://registry.npmjs.org/pour/-/pour-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "ccc4a72c5fa002f1e0187df890a6ad1a0356da28", + "tarball": "http://registry.npmjs.org/pour/-/pour-0.0.3.tgz" + } + }, + "keywords": [ + "async", + "serial", + "parallel", + "coffeescript", + "dsl" + ], + "url": "http://registry.npmjs.org/pour/" + }, + "poutine": { + "name": "poutine", + "description": "MongoDB object document mapper made of unicorns", + "dist-tags": { + "latest": "0.2.0" + }, + "readme": null, + "maintainers": [ + { + "name": "assaf", + "email": "assaf@labnotes.org" + } + ], + "time": { + "modified": "2011-11-28T07:34:55.316Z", + "created": "2011-11-28T07:34:53.475Z", + "0.2.0": "2011-11-28T07:34:55.316Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/jeromegn/poutine.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/poutine/0.2.0" + }, + "dist": { + "0.2.0": { + "shasum": "00b1b1c6a979c26bcefc3187b6953b4f08869ddd", + "tarball": "http://registry.npmjs.org/poutine/-/poutine-0.2.0.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/poutine/" + }, + "pow": { + "name": "pow", + "description": "Zero-configuration Rack server for Mac OS X", + "dist-tags": { + "latest": "0.3.2" + }, + "maintainers": [ + { + "name": "josh", + "email": "josh@joshpeek.com" + }, + { + "name": "sstephenson", + "email": "sstephenson@gmail.com" + } + ], + "time": { + "modified": "2011-08-14T03:10:18.496Z", + "created": "2011-05-06T01:26:47.114Z", + "0.3.0-beta1": "2011-05-06T01:26:47.392Z", + "0.3.0-beta2": "2011-05-08T23:22:50.424Z", + "0.3.0": "2011-05-10T17:20:17.776Z", + "0.3.1": "2011-05-11T18:10:31.802Z", + "0.3.2": "2011-08-14T03:10:18.496Z" + }, + "author": { + "name": "Sam Stephenson" + }, + "repository": { + "type": "git", + "url": "git://github.com/sstephenson/pow.git" + }, + "versions": { + "0.3.0-beta1": "http://registry.npmjs.org/pow/0.3.0-beta1", + "0.3.0-beta2": "http://registry.npmjs.org/pow/0.3.0-beta2", + "0.3.0": "http://registry.npmjs.org/pow/0.3.0", + "0.3.1": "http://registry.npmjs.org/pow/0.3.1", + "0.3.2": "http://registry.npmjs.org/pow/0.3.2" + }, + "dist": { + "0.3.0-beta1": { + "shasum": "6dbeadf91b652d9cf64ff79ec937f146c0da5048", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.0": { + "shasum": "b880aa5babc988d818c79c0fbc835858be5c8012", + "tarball": "http://registry.npmjs.org/pow/-/pow-0.3.0-beta1-0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/pow/-/pow-0.3.0-beta1.tgz" + }, + "0.3.0-beta2": { + "shasum": "195f5a8a8a9ac5f6d6827cb23713fad86fa15872", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.0": { + "shasum": "0ef4fcf266da31af67af8f02845a3b89f6ebd0fa", + "tarball": "http://registry.npmjs.org/pow/-/pow-0.3.0-beta2-0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/pow/-/pow-0.3.0-beta2.tgz" + }, + "0.3.0": { + "shasum": "11fa0f71afa907af7df49c2a6e0d44e82e228f3a", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.0": { + "shasum": "1eadfc0f1474551c72e6e5c2689e97d5ed8d1899", + "tarball": "http://registry.npmjs.org/pow/-/pow-0.3.0-0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/pow/-/pow-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "3c4824fd574c21304c9eaa7fa4d89e23280b95b3", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.0": { + "shasum": "c4ef5c051f8ce18d9e207ecc1b47d7215b015acd", + "tarball": "http://registry.npmjs.org/pow/-/pow-0.3.1-0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/pow/-/pow-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "aea34b1860a08b4ac1645ddcb3728cccbaf58135", + "tarball": "http://registry.npmjs.org/pow/-/pow-0.3.2.tgz" + } + }, + "url": "http://registry.npmjs.org/pow/" + }, + "pow-mongodb-fixtures": { + "name": "pow-mongodb-fixtures", + "description": "Easy JSON fixture loading for MongoDB. Makes managing document relationships easier.", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "powmedia", + "email": "charlie@powmedia.co.uk" + } + ], + "time": { + "modified": "2011-11-29T17:29:23.034Z", + "created": "2011-11-16T17:44:02.965Z", + "0.1.0": "2011-11-16T21:43:14.649Z", + "0.2.0": "2011-11-28T09:38:38.744Z", + "0.2.1": "2011-11-28T10:22:59.934Z", + "0.2.2": "2011-11-29T17:29:23.034Z" + }, + "author": { + "name": "Charles Davison", + "email": "charlie@powmedia.co.uk" + }, + "repository": { + "type": "git", + "url": "git://github.com/powmedia/pow-mongodb-fixtures.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/pow-mongodb-fixtures/0.1.0", + "0.2.0": "http://registry.npmjs.org/pow-mongodb-fixtures/0.2.0", + "0.2.1": "http://registry.npmjs.org/pow-mongodb-fixtures/0.2.1", + "0.2.2": "http://registry.npmjs.org/pow-mongodb-fixtures/0.2.2" + }, + "dist": { + "0.1.0": { + "shasum": "d085f4dc179266e09fdce6bb99d160e1304d0c02", + "tarball": "http://registry.npmjs.org/pow-mongodb-fixtures/-/pow-mongodb-fixtures-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "9220bd3c4b5584bd72dc47c3ab4a2b6a5b0e0dd8", + "tarball": "http://registry.npmjs.org/pow-mongodb-fixtures/-/pow-mongodb-fixtures-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "d49a4c4f43df4d13f33586a3afda682b170e6b25", + "tarball": "http://registry.npmjs.org/pow-mongodb-fixtures/-/pow-mongodb-fixtures-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "e58f05e652f66b94f7fcf96a7e596787813d71ce", + "tarball": "http://registry.npmjs.org/pow-mongodb-fixtures/-/pow-mongodb-fixtures-0.2.2.tgz" + } + }, + "url": "http://registry.npmjs.org/pow-mongodb-fixtures/" + }, + "pp-json": { + "name": "pp-json", + "description": "A commandline utility to pretty-print JSON files", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-11-04T17:42:54.524Z", + "created": "2011-11-04T17:42:53.932Z", + "1.0.0": "2011-11-04T17:42:54.524Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com", + "url": "http://coolaj86.info" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/pp-json/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "27563b2ca35bd53d28989ca69b71adbad1350945", + "tarball": "http://registry.npmjs.org/pp-json/-/pp-json-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/pp-json/" + }, + "precious": { + "name": "precious", + "description": "a minimum kind of ephemeris", + "dist-tags": { + "latest": "0.0.1-4" + }, + "maintainers": [ + { + "name": "orlin", + "email": "om@soundsapiens.com" + } + ], + "time": { + "modified": "2011-05-06T11:00:04.607Z", + "created": "2011-04-28T15:26:55.250Z", + "0.0.1-1": "2011-04-28T15:26:56.285Z", + "0.0.1-2": "2011-04-28T19:50:18.996Z", + "0.0.1-3": "2011-04-30T22:08:20.435Z", + "0.0.1-4": "2011-05-06T10:55:42.358Z" + }, + "author": { + "name": "Orlin M Bozhinov", + "email": "orlin@astrolet.net", + "url": "http://soundsapiens.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/astrolet/precious.git" + }, + "versions": { + "0.0.1-1": "http://registry.npmjs.org/precious/0.0.1-1", + "0.0.1-2": "http://registry.npmjs.org/precious/0.0.1-2", + "0.0.1-3": "http://registry.npmjs.org/precious/0.0.1-3", + "0.0.1-4": "http://registry.npmjs.org/precious/0.0.1-4" + }, + "dist": { + "0.0.1-1": { + "shasum": "5c9ad3e66db2e4ae6974bedf0a4a1d6b93ed0d9f", + "bin": { + "0.4-darwin-10.7.3": { + "shasum": "e70882e6a051a9deb4b03d5a918ade909ce84110", + "tarball": "http://registry.npmjs.org/precious/-/precious-0.0.1-1-0.4-darwin-10.7.3.tgz" + } + }, + "tarball": "http://registry.npmjs.org/precious/-/precious-0.0.1-1.tgz" + }, + "0.0.1-2": { + "shasum": "f06524dc057f658d03d84a72ffdeba02697d8694", + "bin": { + "0.4-darwin-10.7.3": { + "shasum": "09025dd1e13723d1875e00ac9886ff9525af31f6", + "tarball": "http://registry.npmjs.org/precious/-/precious-0.0.1-2-0.4-darwin-10.7.3.tgz" + } + }, + "tarball": "http://registry.npmjs.org/precious/-/precious-0.0.1-2.tgz" + }, + "0.0.1-3": { + "shasum": "39f5b97b071fe66001f548ffb64a1289dfa72601", + "bin": { + "0.4-darwin-10.7.3": { + "shasum": "f6657aa1c2a807ce74d86b8326794b27b4fa6f22", + "tarball": "http://registry.npmjs.org/precious/-/precious-0.0.1-3-0.4-darwin-10.7.3.tgz" + } + }, + "tarball": "http://registry.npmjs.org/precious/-/precious-0.0.1-3.tgz" + }, + "0.0.1-4": { + "shasum": "f5ab044d03b101044aab547eb288910466111178", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.3": { + "shasum": "551ff5d8dc8d12d3990d14f1736ea277d87c47bf", + "tarball": "http://registry.npmjs.org/precious/-/precious-0.0.1-4-0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.3.tgz" + } + }, + "tarball": "http://registry.npmjs.org/precious/-/precious-0.0.1-4.tgz" + } + }, + "keywords": [ + "astrology", + "ephemeris", + "pyswisseph" + ], + "url": "http://registry.npmjs.org/precious/" + }, + "predicate": { + "name": "predicate", + "description": "trivial predicates to aid list tossing", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "nojs", + "email": "oil.crayons@gmail.com" + } + ], + "time": { + "modified": "2011-09-03T07:16:40.403Z", + "created": "2011-09-03T07:16:39.577Z", + "0.0.1": "2011-09-03T07:16:40.403Z" + }, + "author": { + "name": "Dmitry Unkovksy", + "email": "oil.crayons@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/nojs/predicate.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/predicate/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "aecff2d68d59ca62d48ca6debe5511559180ff0b", + "tarball": "http://registry.npmjs.org/predicate/-/predicate-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/predicate/" + }, + "prefer": { + "name": "prefer", + "description": "Configuration management for NodeJS", + "dist-tags": { + "latest": "0.0.41" + }, + "maintainers": [ + { + "name": "monokrome", + "email": "monokrome@limpidtech.com" + } + ], + "time": { + "modified": "2011-05-09T07:02:33.118Z", + "created": "2011-05-09T07:02:11.033Z", + "0.0.1": "2011-05-09T07:02:11.753Z", + "0.0.2": "2011-05-09T07:02:16.285Z", + "0.0.3": "2011-05-09T07:02:24.865Z", + "0.0.4": "2011-05-09T07:02:29.058Z", + "0.0.41": "2011-05-09T07:02:33.118Z" + }, + "author": { + "name": "Brandon R. Stoner", + "email": "monokrome@limpidtech.com", + "url": "http://monokro.me/" + }, + "repository": { + "type": "git", + "url": "git://github.com/LimpidTech/preferjs.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/prefer/0.0.1", + "0.0.2": "http://registry.npmjs.org/prefer/0.0.2", + "0.0.3": "http://registry.npmjs.org/prefer/0.0.3", + "0.0.4": "http://registry.npmjs.org/prefer/0.0.4", + "0.0.41": "http://registry.npmjs.org/prefer/0.0.41" + }, + "dist": { + "0.0.1": { + "shasum": "0bec329cc924677edc64960a7b3cff520b2a135c", + "tarball": "http://registry.npmjs.org/prefer/-/prefer-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "658f072395a260aeaa24636fff9c4fa714235cbd", + "tarball": "http://registry.npmjs.org/prefer/-/prefer-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "beaa0332ed27bec123bc07f7fe07ef9b9f05ac8a", + "tarball": "http://registry.npmjs.org/prefer/-/prefer-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "2bdb5228f3b762984f5c080d399f2958b9eaf95b", + "tarball": "http://registry.npmjs.org/prefer/-/prefer-0.0.4.tgz" + }, + "0.0.41": { + "shasum": "1cfa74ce23c42aa389f35330c72d96a7d78b8121", + "tarball": "http://registry.npmjs.org/prefer/-/prefer-0.0.41.tgz" + } + }, + "url": "http://registry.npmjs.org/prefer/" + }, + "prehost": { + "name": "prehost", + "description": "Parse the host out of an HTTP stream and report back as soon as possible. This is useful if you're building a load balancer or http host router.", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-09-29T11:42:02.038Z", + "created": "2011-09-29T11:42:00.134Z", + "0.0.0": "2011-09-29T11:42:02.038Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-prehost.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/prehost/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "61be7b50702be077909d638c856a254d288fc934", + "tarball": "http://registry.npmjs.org/prehost/-/prehost-0.0.0.tgz" + } + }, + "keywords": [ + "http", + "parse", + "pre", + "load", + "balancer" + ], + "url": "http://registry.npmjs.org/prehost/" + }, + "prenup": { + "name": "prenup", + "description": "Syntactic sugar for Vows", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "jadell", + "email": "josh.adell@gmail.com" + } + ], + "time": { + "modified": "2011-04-13T04:28:10.497Z", + "created": "2011-04-13T04:28:10.258Z", + "0.0.0": "2011-04-13T04:28:10.497Z" + }, + "author": { + "name": "Josh Adell", + "email": "josh.adell@gmail.com", + "url": "http://joshadell.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/jadell/prenup.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/prenup/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "15daccd75faedb509abae0f993b45edda0285b82", + "tarball": "http://registry.npmjs.org/prenup/-/prenup-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/prenup/" + }, + "pretty-json": { + "name": "pretty-json", + "description": "Simple node cli utility for presenting JSON with glamour.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "Tim-Smart", + "email": "tim@fostle.com" + } + ], + "time": { + "modified": "2011-02-23T18:01:24.358Z", + "created": "2011-02-23T17:53:37.529Z", + "0.1.0": "2011-02-23T17:53:38.036Z", + "0.1.1": "2011-02-23T18:01:24.358Z" + }, + "author": { + "name": "Tim Smart" + }, + "repository": { + "type": "git", + "url": "git://github.com/Tim-Smart/pretty-json.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/pretty-json/0.1.0", + "0.1.1": "http://registry.npmjs.org/pretty-json/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "ed2c7fc6a8e47700fa7a170eca7a407c5320eb79", + "tarball": "http://registry.npmjs.org/pretty-json/-/pretty-json-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "45564dc0de89aa490b68bb702406829d0ab741ef", + "tarball": "http://registry.npmjs.org/pretty-json/-/pretty-json-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/pretty-json/" + }, + "prettydate": { + "name": "prettydate", + "description": "Format dates nicely", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "bluesmoon", + "email": "philip@bluesmoon.info" + } + ], + "time": { + "modified": "2011-12-02T18:06:45.898Z", + "created": "2011-12-02T16:17:59.714Z", + "0.0.1": "2011-12-02T18:06:45.898Z" + }, + "author": { + "name": "Philip Tellis", + "email": "philip@bluesmoon.info", + "url": "http://bluesmoon.info/" + }, + "repository": { + "type": "git", + "url": "git://github.com/bluesmoon/node-prettydate.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/prettydate/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "cbe3624713cff4801f4aa0531ac3f9f224d33aa5", + "tarball": "http://registry.npmjs.org/prettydate/-/prettydate-0.0.1.tgz" + } + }, + "keywords": [ + "strftime", + "date", + "datetime", + "date format", + "iso8601", + "rfc2822", + "unixtime" + ], + "url": "http://registry.npmjs.org/prettydate/" + }, + "prettyfy": { + "name": "prettyfy", + "description": "Quick and dirty port of Google's Code Prettyfier to NodeJS/NPM.", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "brianleroux", + "email": "brian@westcoastlogic.com" + } + ], + "versions": { + "0.0.0": "http://registry.npmjs.org/prettyfy/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "41ec1609636121be1139eeea372b74021dbdf65c", + "tarball": "http://registry.npmjs.org/prettyfy/-/prettyfy-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/prettyfy/" + }, + "prettyjson": { + "name": "prettyjson", + "description": "Package for formatting JSON data in a coloured YAML-style, perfect for CLI output", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "rafeca", + "email": "rafeca@gmail.com" + } + ], + "time": { + "modified": "2011-12-01T13:52:04.705Z", + "created": "2011-10-10T19:30:03.277Z", + "0.0.1": "2011-10-10T19:30:04.833Z", + "0.1.0": "2011-10-11T01:01:30.698Z", + "0.1.1": "2011-11-08T18:39:43.002Z", + "0.1.2": "2011-11-13T23:26:28.255Z", + "0.1.3": "2011-11-16T23:29:22.539Z", + "0.1.4": "2011-12-01T13:52:04.705Z" + }, + "author": { + "name": "Rafael de Oleza", + "email": "rafeca@gmail.com", + "url": "https://github.com/rafeca" + }, + "repository": { + "type": "git", + "url": "git://github.com/rafeca/prettyjson.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/prettyjson/0.0.1", + "0.1.0": "http://registry.npmjs.org/prettyjson/0.1.0", + "0.1.1": "http://registry.npmjs.org/prettyjson/0.1.1", + "0.1.2": "http://registry.npmjs.org/prettyjson/0.1.2", + "0.1.3": "http://registry.npmjs.org/prettyjson/0.1.3", + "0.1.4": "http://registry.npmjs.org/prettyjson/0.1.4" + }, + "dist": { + "0.0.1": { + "shasum": "ddce6038b9ce3b7ab7ba99ebca3c8ab11eba046b", + "tarball": "http://registry.npmjs.org/prettyjson/-/prettyjson-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "82d37e006a392a56f4462beddd085b9254af5a63", + "tarball": "http://registry.npmjs.org/prettyjson/-/prettyjson-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "d26a5bac7d9da65efc156b64c86b87431dbe1c83", + "tarball": "http://registry.npmjs.org/prettyjson/-/prettyjson-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "dd1775a81bb78fc30025df305a4e94de7755f494", + "tarball": "http://registry.npmjs.org/prettyjson/-/prettyjson-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "bd5450abaed3adf53cf91bec844d62006be8e65b", + "tarball": "http://registry.npmjs.org/prettyjson/-/prettyjson-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "b89cf70d9cedd01d66df377df828e80543a41a79", + "tarball": "http://registry.npmjs.org/prettyjson/-/prettyjson-0.1.4.tgz" + } + }, + "keywords": [ + "json", + "cli", + "formatting", + "colors" + ], + "url": "http://registry.npmjs.org/prettyjson/" + }, + "prick": { + "name": "prick", + "description": "A micro web framework for Node.js", + "dist-tags": { + "latest": "0.3.2" + }, + "maintainers": [ + { + "name": "akashmanohar", + "email": "akash@akash.im" + } + ], + "author": { + "name": "Akash Manohar J", + "email": "akash@akash.im" + }, + "versions": { + "0.0.5": "http://registry.npmjs.org/prick/0.0.5", + "0.3.1": "http://registry.npmjs.org/prick/0.3.1", + "0.3.2": "http://registry.npmjs.org/prick/0.3.2" + }, + "dist": { + "0.0.5": { + "tarball": "http://packages:5984/prick/-/prick-0.0.5.tgz" + }, + "0.3.1": { + "tarball": "http://packages:5984/prick/-/prick-0.3.1.tgz" + }, + "0.3.2": { + "tarball": "http://packages:5984/prick/-/prick-0.3.2.tgz" + } + }, + "url": "http://registry.npmjs.org/prick/" + }, + "print_r": { + "name": "print_r", + "description": "print recursively, PHP's favorite function, for node.js", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "beatak", + "email": "beatak@gmail.com" + } + ], + "time": { + "modified": "2011-10-05T13:31:43.129Z", + "created": "2011-10-05T13:31:41.970Z", + "0.0.1": "2011-10-05T13:31:43.129Z" + }, + "author": { + "name": "Takashi Mizohata", + "email": "dev@nydd.org", + "url": "http://nydd.org/" + }, + "repository": { + "type": "git", + "url": "git://github.com/beatak/print_r.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/print_r/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "acce4163c2a4071fc90d29c56d97202640782273", + "tarball": "http://registry.npmjs.org/print_r/-/print_r-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/print_r/" + }, + "printf": { + "name": "printf", + "description": "Write formatted data (printf and sprintf)", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "david", + "email": "david@adaltas.com" + } + ], + "time": { + "modified": "2011-10-03T11:46:29.231Z", + "created": "2011-05-10T14:19:03.584Z", + "0.0.2": "2011-05-10T14:19:06.562Z", + "0.0.3": "2011-08-21T15:06:02.160Z", + "0.0.4": "2011-10-03T11:46:29.231Z" + }, + "author": { + "name": "David Worms", + "email": "david@adaltas.com" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/printf/0.0.2", + "0.0.3": "http://registry.npmjs.org/printf/0.0.3", + "0.0.4": "http://registry.npmjs.org/printf/0.0.4" + }, + "dist": { + "0.0.2": { + "shasum": "b5ead3e9cba480c4d8b87c720dcd8c037f8cdd86", + "tarball": "http://registry.npmjs.org/printf/-/printf-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "6403689a2813793e27a4b6e6f7de28b857706b60", + "tarball": "http://registry.npmjs.org/printf/-/printf-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "17727614996a3517eaa0544c05438ac9155ba30c", + "tarball": "http://registry.npmjs.org/printf/-/printf-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/printf/" + }, + "priprop": { + "name": "priprop", + "description": "a tiny library for private properties", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "shinout", + "email": "shinout310@gmail.com" + } + ], + "time": { + "modified": "2011-10-28T07:55:16.558Z", + "created": "2011-10-28T07:55:13.487Z", + "0.1.0": "2011-10-28T07:55:16.558Z" + }, + "author": { + "name": "SHIN Suzuki", + "email": "shinout310@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/shinout/PriProp.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/priprop/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "7d2b6cae0e8a5f1ca0c598702549a6684c518cf8", + "tarball": "http://registry.npmjs.org/priprop/-/priprop-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/priprop/" + }, + "pro": { + "name": "pro", + "description": "Accelerated prototype development with web technologies", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "eirikurn", + "email": "eirikur@nilsson.is" + } + ], + "time": { + "modified": "2011-09-11T20:59:18.743Z", + "created": "2011-09-04T18:02:33.595Z", + "0.1.0": "2011-09-04T18:02:34.399Z", + "0.2.0": "2011-09-11T20:59:18.743Z" + }, + "author": { + "name": "Eirikur Nilsson", + "email": "eirikur@nilsson.is" + }, + "repository": { + "type": "git", + "url": "git://github.com/eirikurn/pro.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/pro/0.1.0", + "0.2.0": "http://registry.npmjs.org/pro/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "954c3a9d2052117f117eeccff9b0f5896929a0b9", + "tarball": "http://registry.npmjs.org/pro/-/pro-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "516c0fa998633266cf5addab3cb3e49199c79eb3", + "tarball": "http://registry.npmjs.org/pro/-/pro-0.2.0.tgz" + } + }, + "keywords": [ + "prototype", + "framework", + "express", + "instant" + ], + "url": "http://registry.npmjs.org/pro/" + }, + "probe_couchdb": { + "name": "probe_couchdb", + "description": "Spider a CouchDB server, emit events with discovered information", + "dist-tags": { + "latest": "0.7.2" + }, + "maintainers": [ + { + "name": "jhs", + "email": "jhs@couchone.com" + }, + { + "name": "jhs", + "email": "jhs@iriscouch.com" + } + ], + "time": { + "modified": "2011-11-22T02:37:58.263Z", + "created": "2011-03-05T07:05:00.236Z", + "0.1.0": "2011-03-05T07:05:01.873Z", + "0.1.1": "2011-05-09T19:53:40.016Z", + "0.1.2": "2011-05-09T19:53:57.976Z", + "0.1.3": "2011-08-15T02:34:12.314Z", + "0.2.0": "2011-10-11T21:46:28.317Z", + "0.2.1": "2011-10-11T22:14:56.362Z", + "0.2.2": "2011-10-12T15:12:15.697Z", + "0.3.0": "2011-10-21T12:22:56.027Z", + "0.3.1": "2011-10-23T12:19:18.873Z", + "0.4.0": "2011-10-24T02:18:06.221Z", + "0.4.1": "2011-10-24T02:44:33.742Z", + "0.5.0": "2011-10-25T02:37:39.949Z", + "0.6.0": "2011-10-25T06:33:12.969Z", + "0.7.0": "2011-11-05T13:01:19.400Z", + "0.7.1": "2011-11-06T01:48:52.444Z", + "0.7.2": "2011-11-22T02:37:58.263Z" + }, + "author": { + "name": "Iris Couch", + "email": "us@iriscouch.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/jhs/probe_couchdb.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/probe_couchdb/0.1.0", + "0.1.1": "http://registry.npmjs.org/probe_couchdb/0.1.1", + "0.1.2": "http://registry.npmjs.org/probe_couchdb/0.1.2", + "0.1.3": "http://registry.npmjs.org/probe_couchdb/0.1.3", + "0.2.0": "http://registry.npmjs.org/probe_couchdb/0.2.0", + "0.2.1": "http://registry.npmjs.org/probe_couchdb/0.2.1", + "0.2.2": "http://registry.npmjs.org/probe_couchdb/0.2.2", + "0.3.0": "http://registry.npmjs.org/probe_couchdb/0.3.0", + "0.3.1": "http://registry.npmjs.org/probe_couchdb/0.3.1", + "0.4.0": "http://registry.npmjs.org/probe_couchdb/0.4.0", + "0.4.1": "http://registry.npmjs.org/probe_couchdb/0.4.1", + "0.5.0": "http://registry.npmjs.org/probe_couchdb/0.5.0", + "0.6.0": "http://registry.npmjs.org/probe_couchdb/0.6.0", + "0.7.0": "http://registry.npmjs.org/probe_couchdb/0.7.0", + "0.7.1": "http://registry.npmjs.org/probe_couchdb/0.7.1", + "0.7.2": "http://registry.npmjs.org/probe_couchdb/0.7.2" + }, + "dist": { + "0.1.0": { + "shasum": "b4df52feb5a307dceda9958be659064bd07eb7f2", + "tarball": "http://registry.npmjs.org/probe_couchdb/-/probe_couchdb-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "37e28c5cdad6eecc3c65c997c5327bad094baab1", + "tarball": "http://registry.npmjs.org/probe_couchdb/-/probe_couchdb-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "fdb40d215cfa2faa087cdee1ac6f9aba7ef91707", + "tarball": "http://registry.npmjs.org/probe_couchdb/-/probe_couchdb-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "6da91177a4c6497d5ef444a8018f9cf3cf7a18a6", + "tarball": "http://registry.npmjs.org/probe_couchdb/-/probe_couchdb-0.1.3.tgz" + }, + "0.2.0": { + "shasum": "a617dbc942a2aee1573fe4bec325ca4c1498cbc8", + "tarball": "http://registry.npmjs.org/probe_couchdb/-/probe_couchdb-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "f465e34bdce8f2595da8fe5a7e2c7de097e24476", + "tarball": "http://registry.npmjs.org/probe_couchdb/-/probe_couchdb-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "fc437f2f8395e2c6ed85ab6c650d5101c746e9ec", + "tarball": "http://registry.npmjs.org/probe_couchdb/-/probe_couchdb-0.2.2.tgz" + }, + "0.3.0": { + "shasum": "2ec4b230908ffca652de0f7cdad20e4e717211e3", + "tarball": "http://registry.npmjs.org/probe_couchdb/-/probe_couchdb-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "0d892aa1ddbe68d60b07c9c5f81ede05b1b173cb", + "tarball": "http://registry.npmjs.org/probe_couchdb/-/probe_couchdb-0.3.1.tgz" + }, + "0.4.0": { + "shasum": "a58092b63b3557efadf2561b9acedf263e6e6e06", + "tarball": "http://registry.npmjs.org/probe_couchdb/-/probe_couchdb-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "64719415fa14a8e226a0fa1d41ac6f8ea70e253f", + "tarball": "http://registry.npmjs.org/probe_couchdb/-/probe_couchdb-0.4.1.tgz" + }, + "0.5.0": { + "shasum": "0d591e74e80cd94a846a11ab38520fd031cafeb8", + "tarball": "http://registry.npmjs.org/probe_couchdb/-/probe_couchdb-0.5.0.tgz" + }, + "0.6.0": { + "shasum": "b11f45caa13763e0163d6750acddc97084d73e26", + "tarball": "http://registry.npmjs.org/probe_couchdb/-/probe_couchdb-0.6.0.tgz" + }, + "0.7.0": { + "shasum": "0d258ea5300bcc814371f3d4a9955559b8921e3a", + "tarball": "http://registry.npmjs.org/probe_couchdb/-/probe_couchdb-0.7.0.tgz" + }, + "0.7.1": { + "shasum": "fe27296121b377bcc1cc961a76403dbd13652a72", + "tarball": "http://registry.npmjs.org/probe_couchdb/-/probe_couchdb-0.7.1.tgz" + }, + "0.7.2": { + "shasum": "dc432b9d3a016fc6948b361ad226a665370ee64e", + "tarball": "http://registry.npmjs.org/probe_couchdb/-/probe_couchdb-0.7.2.tgz" + } + }, + "url": "http://registry.npmjs.org/probe_couchdb/" + }, + "process": { + "name": "process", + "description": "aliases `window` as `global` and adds `process`", + "dist-tags": { + "latest": "0.4.9" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-06-30T01:07:03.645Z", + "created": "2011-06-30T01:07:03.273Z", + "0.4.9": "2011-06-30T01:07:03.645Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com", + "url": "http://coolaj86.info" + }, + "repository": { + "type": "git", + "url": "git://github.com/coolaj86/nodejs-libs-4-browser.git" + }, + "versions": { + "0.4.9": "http://registry.npmjs.org/process/0.4.9" + }, + "dist": { + "0.4.9": { + "shasum": "42adda3c6c577ea0c9763fb52698f5702b40c056", + "tarball": "http://registry.npmjs.org/process/-/process-0.4.9.tgz" + } + }, + "keywords": [ + "ender", + "global", + "process" + ], + "url": "http://registry.npmjs.org/process/" + }, + "process-proxy": { + "name": "process-proxy", + "description": "Easy diagnostics for your subprocesses. `process-proxy --log-to=foo.txt cmd arg arg...`", + "dist-tags": {}, + "maintainers": [ + { + "name": "andrewschaaf", + "email": "andrew@andrewschaaf.com" + } + ], + "time": { + "modified": "2011-10-25T22:37:15.829Z", + "created": "2011-10-25T22:37:15.829Z" + }, + "versions": {}, + "dist": {}, + "url": "http://registry.npmjs.org/process-proxy/" + }, + "procfile": { + "name": "procfile", + "description": "A simple CLI tool for ensuring that a given node script runs continuously (i.e. forever)", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + } + ], + "time": { + "modified": "2011-06-13T09:10:04.608Z", + "created": "2011-06-13T09:10:04.346Z", + "0.1.0": "2011-06-13T09:10:04.608Z" + }, + "author": { + "name": "Charlie Robbins", + "email": "charlie.robbins@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/indexzero/node-procfile.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/procfile/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "e83887a0a92637fe6eda3eeb3bd354a4cd513f84", + "tarball": "http://registry.npmjs.org/procfile/-/procfile-0.1.0.tgz" + } + }, + "keywords": [ + "tools", + "procfile", + "sysadmin" + ], + "url": "http://registry.npmjs.org/procfile/" + }, + "profile": { + "name": "profile", + "description": "A script that makes profiling node.js apps easier.", + "dist-tags": { + "latest": "0.0.9" + }, + "maintainers": [ + { + "name": "mape", + "email": "mape@mape.me" + } + ], + "author": { + "name": "Mathias Pettersson", + "email": "mape@mape.me" + }, + "time": { + "modified": "2011-05-30T21:23:23.518Z", + "created": "2011-03-31T08:07:58.003Z", + "0.0.1": "2011-03-31T08:07:58.004Z", + "0.0.2": "2011-03-31T08:07:58.004Z", + "0.0.3": "2011-03-31T08:07:58.004Z", + "0.0.4": "2011-03-31T08:07:58.004Z", + "0.0.5": "2011-03-31T08:07:58.004Z", + "0.0.6": "2011-03-31T08:07:58.004Z", + "0.0.7": "2011-03-31T08:07:58.004Z", + "0.0.8": "2011-05-30T21:06:55.017Z", + "0.0.9": "2011-05-30T21:23:23.518Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/profile/0.0.1", + "0.0.2": "http://registry.npmjs.org/profile/0.0.2", + "0.0.3": "http://registry.npmjs.org/profile/0.0.3", + "0.0.4": "http://registry.npmjs.org/profile/0.0.4", + "0.0.5": "http://registry.npmjs.org/profile/0.0.5", + "0.0.6": "http://registry.npmjs.org/profile/0.0.6", + "0.0.7": "http://registry.npmjs.org/profile/0.0.7", + "0.0.8": "http://registry.npmjs.org/profile/0.0.8", + "0.0.9": "http://registry.npmjs.org/profile/0.0.9" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/profile/-/profile-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/profile/-/profile-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/profile/-/profile-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://packages:5984/profile/-/profile-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://packages:5984/profile/-/profile-0.0.5.tgz" + }, + "0.0.6": { + "tarball": "http://packages:5984/profile/-/profile-0.0.6.tgz" + }, + "0.0.7": { + "tarball": "http://registry.npmjs.org/profile/-/profile-0.0.7.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "2aec89c8e9ff1d113e3b84fa0f7f55502f3ebffc", + "tarball": "http://registry.npmjs.org/profile/-/profile-0.0.7-0.4-sunos-5.11.tgz" + } + } + }, + "0.0.8": { + "shasum": "83c5fa8a5deed3eef1a9798f97f12c97e740fc7a", + "bin": { + "0.4-linux-2.6.26-2-amd64": { + "shasum": "6a0e975def7fe4eb8d78107ac79e9b18674345f8", + "tarball": "http://registry.npmjs.org/profile/-/profile-0.0.8-0.4-linux-2.6.26-2-amd64.tgz" + } + }, + "tarball": "http://registry.npmjs.org/profile/-/profile-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "a8fe63db182848260ef731a993647f62967f18d9", + "bin": { + "0.4-linux-2.6.26-2-amd64": { + "shasum": "16817b242364c7faeb35ad16096942805f37f770", + "tarball": "http://registry.npmjs.org/profile/-/profile-0.0.9-0.4-linux-2.6.26-2-amd64.tgz" + } + }, + "tarball": "http://registry.npmjs.org/profile/-/profile-0.0.9.tgz" + } + }, + "url": "http://registry.npmjs.org/profile/" + }, + "profilejs": { + "name": "profilejs", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "foxbunny", + "email": "branko@herdhound.com" + } + ], + "time": { + "modified": "2011-08-02T10:02:11.544Z", + "created": "2011-08-01T23:29:35.990Z", + "0.0.1": "2011-08-01T23:29:37.022Z", + "0.0.2": "2011-08-01T23:33:05.173Z", + "0.0.3": "2011-08-02T09:28:14.348Z", + "0.0.4": "2011-08-02T10:02:11.544Z" + }, + "author": { + "name": "Branko Vukelic", + "email": "branko@herdhound.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/HerdHound/profilejs.git" + }, + "description": "V8 profiling for Express framework", + "versions": { + "0.0.1": "http://registry.npmjs.org/profilejs/0.0.1", + "0.0.2": "http://registry.npmjs.org/profilejs/0.0.2", + "0.0.3": "http://registry.npmjs.org/profilejs/0.0.3", + "0.0.4": "http://registry.npmjs.org/profilejs/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "349e481bb9fc2afc2a2baa9ac224ded4473d948e", + "tarball": "http://registry.npmjs.org/profilejs/-/profilejs-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "1a62347216e9e2afea8620207b3d2ed96633db9e", + "tarball": "http://registry.npmjs.org/profilejs/-/profilejs-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "3b5bd3767b3ac5bd0eb599b6a005a12327196ce2", + "tarball": "http://registry.npmjs.org/profilejs/-/profilejs-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "581ac98d7ac7898dd2dc1a8d4ef1f84f97b2bc38", + "tarball": "http://registry.npmjs.org/profilejs/-/profilejs-0.0.4.tgz" + } + }, + "keywords": [ + "profiling" + ], + "url": "http://registry.npmjs.org/profilejs/" + }, + "profiler": { + "name": "profiler", + "description": "Access the V8 profiler from node.js ", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "bnoordhuis", + "email": "info@bnoordhuis.nl" + } + ], + "author": { + "name": "Ben Noordhuis", + "email": "info@bnoordhuis.nl", + "url": "http://bnoordhuis.nl/" + }, + "repository": { + "type": "git", + "url": "http://github.com/bnoordhuis/node-profiler.git" + }, + "time": { + "modified": "2011-04-15T21:29:45.003Z", + "created": "2011-03-31T08:08:02.872Z", + "1.0.0": "2011-03-31T08:08:02.872Z", + "1.0.1": "2011-03-31T08:08:02.872Z" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/profiler/1.0.0", + "1.0.1": "http://registry.npmjs.org/profiler/1.0.1" + }, + "dist": { + "1.0.0": { + "tarball": "http://packages:5984/profiler/-/profiler-1.0.0.tgz" + }, + "1.0.1": { + "tarball": "http://registry.npmjs.org/profiler/-/profiler-1.0.1.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "3c2ac796dd075c4330f2b0b5bb3393ac436d85f5", + "tarball": "http://registry.npmjs.org/profiler/-/profiler-1.0.1-0.4-sunos-5.11.tgz" + } + } + } + }, + "url": "http://registry.npmjs.org/profiler/" + }, + "progress": { + "name": "progress", + "description": "Flexible ascii progress bar", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "time": { + "modified": "2011-11-14T23:14:51.251Z", + "created": "2011-04-20T20:06:39.604Z", + "0.0.1": "2011-04-20T20:06:40.071Z", + "0.0.2": "2011-04-21T02:35:36.302Z", + "0.0.3": "2011-04-21T02:43:40.646Z", + "0.0.4": "2011-11-14T23:14:51.251Z" + }, + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/progress/0.0.1", + "0.0.2": "http://registry.npmjs.org/progress/0.0.2", + "0.0.3": "http://registry.npmjs.org/progress/0.0.3", + "0.0.4": "http://registry.npmjs.org/progress/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "5ddf9238fbc9d237e1fe5f1ff7939c14b0615c3f", + "tarball": "http://registry.npmjs.org/progress/-/progress-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "8ff162e1eb8fd121d4d10126302825a45db22057", + "tarball": "http://registry.npmjs.org/progress/-/progress-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "75629307e033e34e592bd217950aea39ddd0d899", + "tarball": "http://registry.npmjs.org/progress/-/progress-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "dc20375e77236ba009c0ab5c6fa4f6d92f7408cf", + "tarball": "http://registry.npmjs.org/progress/-/progress-0.0.4.tgz" + } + }, + "keywords": [ + "cli", + "progress" + ], + "url": "http://registry.npmjs.org/progress/" + }, + "progress-bar": { + "name": "progress-bar", + "description": "An STDOUT progress bar for NodeJS.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "jussi-kalliokoski", + "email": "jussi.kalliokoski@gmail.com" + } + ], + "time": { + "modified": "2011-06-01T17:35:20.690Z", + "created": "2011-06-01T14:56:30.532Z", + "0.1.0": "2011-06-01T14:56:31.197Z", + "0.1.1": "2011-06-01T17:35:20.690Z" + }, + "author": { + "name": "Jussi Kalliokoski", + "url": "http://niiden.com/jussi/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jussi-kalliokoski/node-progress-bar.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/progress-bar/0.1.0", + "0.1.1": "http://registry.npmjs.org/progress-bar/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "8c0d1a63562605922d221364496ec055dffd08ab", + "tarball": "http://registry.npmjs.org/progress-bar/-/progress-bar-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "c32834f88f0f8eac46c638e0e638f14a1c17bd1f", + "tarball": "http://registry.npmjs.org/progress-bar/-/progress-bar-0.1.1.tgz" + } + }, + "keywords": [ + "progress-bar", + "gui", + "cli" + ], + "url": "http://registry.npmjs.org/progress-bar/" + }, + "progressify": { + "name": "progressify", + "description": "Hand-drawn progress bars for your webapps", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-07-04T09:36:02.803Z", + "created": "2011-07-04T07:59:36.110Z", + "0.0.0": "2011-07-04T07:59:37.464Z", + "0.0.1": "2011-07-04T09:36:02.803Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-progressify.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/progressify/0.0.0", + "0.0.1": "http://registry.npmjs.org/progressify/0.0.1" + }, + "dist": { + "0.0.0": { + "shasum": "01a4a726b0c57f0e71643a0e1a02f4ad305e3560", + "tarball": "http://registry.npmjs.org/progressify/-/progressify-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "41ecbcd087d455a06e7594b0986a6f5cf6c98a1f", + "tarball": "http://registry.npmjs.org/progressify/-/progressify-0.0.1.tgz" + } + }, + "keywords": [ + "progress", + "bar", + "browserify" + ], + "url": "http://registry.npmjs.org/progressify/" + }, + "proj4js": { + "name": "proj4js", + "description": "A library providing methods for coordinate transformations between map projections and longitude/latitude, including datum transformations. Ported from proj4js.org for Node", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "temsa", + "email": "florian.traverse+npm@gmail.com" + } + ], + "time": { + "modified": "2011-06-09T15:28:55.746Z", + "created": "2011-06-09T09:46:25.516Z", + "0.1.0": "2011-06-09T09:46:26.522Z", + "0.1.1": "2011-06-09T15:28:55.746Z" + }, + "author": { + "name": "Florian Traverse", + "email": "florian.traverse@gmail.com", + "url": "http://pullrequest.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/temsa/node-proj4js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/proj4js/0.1.0", + "0.1.1": "http://registry.npmjs.org/proj4js/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "da0713edac3764e2ee4a99d9bbb20887b01f7f59", + "tarball": "http://registry.npmjs.org/proj4js/-/proj4js-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "3d55dc12b7a170aac1aa4d6fb0fadf2fe951f9fb", + "tarball": "http://registry.npmjs.org/proj4js/-/proj4js-0.1.1.tgz" + } + }, + "keywords": [ + "proj4", + "proj4js", + "gis" + ], + "url": "http://registry.npmjs.org/proj4js/" + }, + "projectwatch": { + "name": "projectwatch", + "dist-tags": { + "latest": "0.3.2" + }, + "maintainers": [ + { + "name": "epeli", + "email": "esa-matti@suuronen.org" + } + ], + "time": { + "modified": "2011-07-18T12:02:51.202Z", + "created": "2011-06-16T17:12:26.603Z", + "0.1.0": "2011-06-16T17:12:27.279Z", + "0.1.1": "2011-06-16T17:17:11.995Z", + "0.2.0": "2011-06-19T23:51:09.044Z", + "0.2.1": "2011-06-20T21:14:48.924Z", + "0.3.0": "2011-07-17T15:13:39.979Z", + "0.3.1": "2011-07-17T19:41:24.220Z", + "0.3.2": "2011-07-18T12:02:51.202Z" + }, + "author": { + "name": "Esa-Matti Suuronen" + }, + "repository": { + "type": "git", + "url": "git://github.com/epeli/Projectwatch.git" + }, + "description": "Automatic test and preprocessor runner.", + "versions": { + "0.1.0": "http://registry.npmjs.org/projectwatch/0.1.0", + "0.1.1": "http://registry.npmjs.org/projectwatch/0.1.1", + "0.2.0": "http://registry.npmjs.org/projectwatch/0.2.0", + "0.2.1": "http://registry.npmjs.org/projectwatch/0.2.1", + "0.3.0": "http://registry.npmjs.org/projectwatch/0.3.0", + "0.3.1": "http://registry.npmjs.org/projectwatch/0.3.1", + "0.3.2": "http://registry.npmjs.org/projectwatch/0.3.2" + }, + "dist": { + "0.1.0": { + "shasum": "fa4456050c40ea133a125dfb818b5c890e606328", + "tarball": "http://registry.npmjs.org/projectwatch/-/projectwatch-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "53884d0ff9334669f13feadf8e8d0c943eb2903e", + "tarball": "http://registry.npmjs.org/projectwatch/-/projectwatch-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "6326288f05dae4824e319cc37d02a99cd7148dbf", + "tarball": "http://registry.npmjs.org/projectwatch/-/projectwatch-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "f4de5077459f19930b5585af9074527032287c8d", + "tarball": "http://registry.npmjs.org/projectwatch/-/projectwatch-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "f2367057cc25c6fc8d2dfdde7ddd487ce6c3a429", + "tarball": "http://registry.npmjs.org/projectwatch/-/projectwatch-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "24381326db1e8884f1823a60491344c435b41b73", + "tarball": "http://registry.npmjs.org/projectwatch/-/projectwatch-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "c1b6559f85ab2586a0f0119b7c3efb400d55a6cc", + "tarball": "http://registry.npmjs.org/projectwatch/-/projectwatch-0.3.2.tgz" + } + }, + "url": "http://registry.npmjs.org/projectwatch/" + }, + "promise": { + "name": "promise", + "description": "A Async Code Wrapper to help programming agenst async", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "megakorre", + "email": "patrik.karlin@gmail.com" + } + ], + "time": { + "modified": "2011-06-14T09:54:44.612Z", + "created": "2011-06-14T09:54:43.412Z", + "0.0.1": "2011-06-14T09:54:44.612Z" + }, + "author": { + "name": "Patrik Kårlin", + "email": "patrik.karlin@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/promise/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "65161e4c3ecd403df8042af93c4c2a30aea9abf2", + "tarball": "http://registry.npmjs.org/promise/-/promise-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/promise/" + }, + "promised-fs": { + "name": "promised-fs", + "description": "Promise based filesystem API for node.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "gozala", + "email": "rfobic@gmail.com" + } + ], + "repository": { + "type": "git", + "url": "git://github.com/Gozala/promised-fs.git" + }, + "time": { + "modified": "2011-02-24T15:44:18.835Z", + "created": "2011-01-28T23:03:45.078Z", + "0.0.1": "2011-01-28T23:03:45.078Z", + "0.0.2": "2011-01-28T23:03:45.078Z", + "0.0.3": "2011-01-28T23:03:45.078Z", + "0.0.4": "2011-01-28T23:03:45.078Z", + "0.0.5": "2011-01-28T23:03:45.078Z", + "0.0.6": "2011-01-28T23:03:45.078Z", + "0.0.7": "2011-01-28T23:03:45.078Z", + "0.0.8": "2011-01-28T23:03:45.078Z", + "0.0.9": "2011-02-17T00:08:09.911Z", + "0.0.10": "2011-02-17T15:59:50.807Z", + "0.0.11": "2011-02-21T16:07:27.608Z", + "0.1.0": "2011-02-24T15:44:18.835Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/promised-fs/0.0.1", + "0.0.2": "http://registry.npmjs.org/promised-fs/0.0.2", + "0.0.3": "http://registry.npmjs.org/promised-fs/0.0.3", + "0.0.4": "http://registry.npmjs.org/promised-fs/0.0.4", + "0.0.5": "http://registry.npmjs.org/promised-fs/0.0.5", + "0.0.6": "http://registry.npmjs.org/promised-fs/0.0.6", + "0.0.7": "http://registry.npmjs.org/promised-fs/0.0.7", + "0.0.8": "http://registry.npmjs.org/promised-fs/0.0.8", + "0.0.9": "http://registry.npmjs.org/promised-fs/0.0.9", + "0.0.10": "http://registry.npmjs.org/promised-fs/0.0.10", + "0.0.11": "http://registry.npmjs.org/promised-fs/0.0.11", + "0.1.0": "http://registry.npmjs.org/promised-fs/0.1.0" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/promised-fs/-/promised-fs-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/promised-fs/-/promised-fs-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/promised-fs/-/promised-fs-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://packages:5984/promised-fs/-/promised-fs-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://registry.npmjs.org/promised-fs/-/promised-fs-0.0.5.tgz" + }, + "0.0.6": { + "tarball": "http://registry.npmjs.org/promised-fs/-/promised-fs-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "4dcf6015fc623dc9947405e4237c4259c408f29d", + "tarball": "http://registry.npmjs.org/promised-fs/-/promised-fs-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "469bd48dd6c7e67338dd2dc266860d2c1361f43a", + "tarball": "http://registry.npmjs.org/promised-fs/-/promised-fs-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "959b46f3f551c05521f1027b7fe43f9186ab5745", + "tarball": "http://registry.npmjs.org/promised-fs/-/promised-fs-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "c3b26bb008f95837ed10957a052f19f80b9e4d4e", + "tarball": "http://registry.npmjs.org/promised-fs/-/promised-fs-0.0.10.tgz" + }, + "0.0.11": { + "shasum": "1195bbb4afdfd0de34c001e71422ea987cbb7782", + "tarball": "http://registry.npmjs.org/promised-fs/-/promised-fs-0.0.11.tgz" + }, + "0.1.0": { + "shasum": "ee0d5f7e7d49e1383bc52b180d5eb23535da97e3", + "tarball": "http://registry.npmjs.org/promised-fs/-/promised-fs-0.1.0.tgz" + } + }, + "keywords": [ + "promise", + "filesystem" + ], + "url": "http://registry.npmjs.org/promised-fs/" + }, + "promised-http": { + "name": "promised-http", + "description": "Promised based http library.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "gozala", + "email": "rfobic@gmail.com" + } + ], + "repository": { + "type": "git", + "url": "git://github.com/Gozala/promised-http.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/promised-http/0.0.1", + "0.0.2": "http://registry.npmjs.org/promised-http/0.0.2" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/promised-http/-/promised-http-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/promised-http/-/promised-http-0.0.2.tgz" + } + }, + "keywords": [ + "promise", + "q", + "http" + ], + "url": "http://registry.npmjs.org/promised-http/" + }, + "promised-io": { + "name": "promised-io", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "Kris Zyp", + "email": "kriszyp@gmail.com" + } + ], + "author": { + "name": "Kris Zyp" + }, + "description": "Promise-based IO", + "time": { + "modified": "2011-01-05T04:44:02.499Z", + "created": "2011-01-05T04:44:02.499Z", + "0.0.1": "2011-01-05T04:44:02.499Z", + "0.2.1": "2011-01-05T04:44:02.499Z" + }, + "url": "http://packages.dojofoundation.org/promised-io", + "versions": {}, + "dist": {} + }, + "promised-request": { + "name": "promised-request", + "description": "A wrapper for Mikeals request module, that returns a promise", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "sifu", + "email": "io@sifu.io" + } + ], + "time": { + "modified": "2011-12-06T10:52:28.191Z", + "created": "2011-12-06T10:50:52.913Z", + "1.0.0": "2011-12-06T10:52:28.191Z" + }, + "author": { + "name": "Siegmund Führinger", + "email": "io@sifu.io", + "url": "http://sifu.io" + }, + "repository": { + "type": "git", + "url": "git://github.com/sifu/promised-request.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/promised-request/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "e71169bd9dc5757830de14ca18b509a61567fc8b", + "tarball": "http://registry.npmjs.org/promised-request/-/promised-request-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/promised-request/" + }, + "promised-traits": { + "name": "promised-traits", + "description": "Library that mixes traits and promises and allows writing linear to do async stuff.", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "gozala", + "email": "rfobic@gmail.com" + } + ], + "repository": { + "type": "git", + "url": "git://github.com/Gozala/promised-traits.git" + }, + "time": { + "modified": "2011-02-17T15:55:04.392Z", + "created": "2011-01-10T17:28:01.794Z", + "0.0.1": "2011-01-10T17:28:01.794Z", + "0.0.2": "2011-01-10T17:28:01.794Z", + "0.0.3": "2011-01-10T17:28:01.794Z", + "0.0.4": "2011-01-28T23:00:15.274Z", + "0.0.6": "2011-02-17T15:55:04.392Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/promised-traits/0.0.1", + "0.0.2": "http://registry.npmjs.org/promised-traits/0.0.2", + "0.0.3": "http://registry.npmjs.org/promised-traits/0.0.3", + "0.0.4": "http://registry.npmjs.org/promised-traits/0.0.4", + "0.0.6": "http://registry.npmjs.org/promised-traits/0.0.6" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/promised-traits/-/promised-traits-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/promised-traits/-/promised-traits-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "975bb50079c3a6a6454468caa24af88a62437140", + "tarball": "http://registry.npmjs.org/promised-traits/-/promised-traits-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "1a2056586733e4ce5e593bc5c4eae7cf29f70074", + "tarball": "http://registry.npmjs.org/promised-traits/-/promised-traits-0.0.4.tgz" + }, + "0.0.6": { + "shasum": "0ff04e4b664f89dd956b2fc42f860a952425116a", + "tarball": "http://registry.npmjs.org/promised-traits/-/promised-traits-0.0.6.tgz" + } + }, + "keywords": [ + "promises", + "traits" + ], + "url": "http://registry.npmjs.org/promised-traits/" + }, + "promised-utils": { + "name": "promised-utils", + "description": "Utils for promises.", + "dist-tags": { + "latest": "0.0.9" + }, + "maintainers": [ + { + "name": "gozala", + "email": "rfobic@gmail.com" + } + ], + "repository": { + "type": "git", + "url": "git://github.com/Gozala/promised-utils.git" + }, + "time": { + "modified": "2011-02-24T15:20:00.986Z", + "created": "2011-01-10T22:15:30.381Z", + "0.0.2": "2011-01-10T22:15:30.381Z", + "0.0.3": "2011-01-10T22:15:30.381Z", + "0.0.4": "2011-01-10T22:15:30.381Z", + "0.0.5": "2011-01-10T22:15:30.381Z", + "0.0.6": "2011-01-10T22:15:30.381Z", + "0.0.7": "2011-01-10T22:15:30.381Z", + "0.0.8": "2011-01-28T22:46:44.000Z", + "0.0.9": "2011-02-24T15:20:00.986Z" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/promised-utils/0.0.2", + "0.0.3": "http://registry.npmjs.org/promised-utils/0.0.3", + "0.0.4": "http://registry.npmjs.org/promised-utils/0.0.4", + "0.0.5": "http://registry.npmjs.org/promised-utils/0.0.5", + "0.0.6": "http://registry.npmjs.org/promised-utils/0.0.6", + "0.0.7": "http://registry.npmjs.org/promised-utils/0.0.7", + "0.0.8": "http://registry.npmjs.org/promised-utils/0.0.8", + "0.0.9": "http://registry.npmjs.org/promised-utils/0.0.9" + }, + "dist": { + "0.0.2": { + "tarball": "http://packages:5984/promised-utils/-/promised-utils-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/promised-utils/-/promised-utils-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://registry.npmjs.org/promised-utils/-/promised-utils-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://registry.npmjs.org/promised-utils/-/promised-utils-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "0a5403e49e5907a5650e26e05b636e2fec3a8f5e", + "tarball": "http://registry.npmjs.org/promised-utils/-/promised-utils-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "1b9dc907f865b0023ad77b8d759fd5976d4ba7d5", + "tarball": "http://registry.npmjs.org/promised-utils/-/promised-utils-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "03bc415e3d64a67c70a4255d21f87966ef2dc198", + "tarball": "http://registry.npmjs.org/promised-utils/-/promised-utils-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "ad04d51329e6365bc2a818d6de9cd1edee885cdb", + "tarball": "http://registry.npmjs.org/promised-utils/-/promised-utils-0.0.9.tgz" + } + }, + "keywords": [ + "promises", + "utils" + ], + "url": "http://registry.npmjs.org/promised-utils/" + }, + "prompt": { + "name": "prompt", + "description": "A beautiful command-line prompt for node.js", + "dist-tags": { + "latest": "0.1.11" + }, + "maintainers": [ + { + "name": "jesusabdullah", + "email": "josh.holbrook@gmail.com" + }, + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + } + ], + "author": { + "name": "Nodejitsu Inc.", + "email": "info@nodejitsu.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/nodejitsu/node-prompt.git" + }, + "time": { + "modified": "2011-12-05T23:19:19.802Z", + "created": "2011-03-18T15:06:40.016Z", + "0.0.1": "2011-03-18T15:06:40.016Z", + "0.0.2": "2011-03-18T15:06:40.016Z", + "0.0.3": "2011-03-18T15:06:40.016Z", + "0.0.4": "2011-05-12T20:17:03.854Z", + "0.1.0": "2011-05-30T06:07:01.561Z", + "0.1.1": "2011-06-08T03:18:31.595Z", + "0.1.2": "2011-06-22T04:44:10.998Z", + "0.1.3": "2011-06-29T18:26:45.199Z", + "0.1.4": "2011-08-09T01:55:30.907Z", + "0.1.5": "2011-08-10T03:47:55.099Z", + "0.1.7": "2011-08-22T00:35:01.001Z", + "0.1.8": "2011-09-12T17:46:31.781Z", + "0.1.9": "2011-09-26T00:06:28.170Z", + "0.1.10": "2011-10-25T19:50:43.191Z", + "0.1.11": "2011-12-05T23:19:19.802Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/prompt/0.0.1", + "0.0.2": "http://registry.npmjs.org/prompt/0.0.2", + "0.0.3": "http://registry.npmjs.org/prompt/0.0.3", + "0.0.4": "http://registry.npmjs.org/prompt/0.0.4", + "0.1.0": "http://registry.npmjs.org/prompt/0.1.0", + "0.1.1": "http://registry.npmjs.org/prompt/0.1.1", + "0.1.2": "http://registry.npmjs.org/prompt/0.1.2", + "0.1.3": "http://registry.npmjs.org/prompt/0.1.3", + "0.1.4": "http://registry.npmjs.org/prompt/0.1.4", + "0.1.5": "http://registry.npmjs.org/prompt/0.1.5", + "0.1.7": "http://registry.npmjs.org/prompt/0.1.7", + "0.1.8": "http://registry.npmjs.org/prompt/0.1.8", + "0.1.9": "http://registry.npmjs.org/prompt/0.1.9", + "0.1.10": "http://registry.npmjs.org/prompt/0.1.10", + "0.1.11": "http://registry.npmjs.org/prompt/0.1.11" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/prompt/-/prompt-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/prompt/-/prompt-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "2eaaedfb91d1b92cf65892ddf400a22f038414e2", + "tarball": "http://registry.npmjs.org/prompt/-/prompt-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "1522ef6678bfd554717d06aa6c8ec4b3b202f5fc", + "tarball": "http://registry.npmjs.org/prompt/-/prompt-0.0.4.tgz" + }, + "0.1.0": { + "shasum": "a4a70d70b2fca1ceb57202474a7d854745b0c03c", + "tarball": "http://registry.npmjs.org/prompt/-/prompt-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "a806a80cb434e3e5a7856b00540ed7be54af4cbf", + "tarball": "http://registry.npmjs.org/prompt/-/prompt-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "ae104a308644e60d8a60732182f833b7cc49d38c", + "tarball": "http://registry.npmjs.org/prompt/-/prompt-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "2dec5ce9818ff01311fc49a0b9cac64da30f68ca", + "tarball": "http://registry.npmjs.org/prompt/-/prompt-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "1bfb57453a5dd2227cd9f798b089f6d783addd28", + "tarball": "http://registry.npmjs.org/prompt/-/prompt-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "dad553e3b2fea8cc38fd16c891404821c4d212b8", + "tarball": "http://registry.npmjs.org/prompt/-/prompt-0.1.5.tgz" + }, + "0.1.7": { + "shasum": "6841eacfe8374892427a06e0dc6c3447764a8b06", + "tarball": "http://registry.npmjs.org/prompt/-/prompt-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "2ef4f72517f916020b99a309626390f6d176a1e5", + "tarball": "http://registry.npmjs.org/prompt/-/prompt-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "6eae83a38c116dfe6118f2603db0461c942936d6", + "tarball": "http://registry.npmjs.org/prompt/-/prompt-0.1.9.tgz" + }, + "0.1.10": { + "shasum": "a9108958c53be72173fefe4e8f7aa7e17fbf965e", + "tarball": "http://registry.npmjs.org/prompt/-/prompt-0.1.10.tgz" + }, + "0.1.11": { + "shasum": "eac1bb9730a4aefd8f458380aa8d0b381fe6bbed", + "tarball": "http://registry.npmjs.org/prompt/-/prompt-0.1.11.tgz" + } + }, + "url": "http://registry.npmjs.org/prompt/" + }, + "pronto": { + "name": "pronto", + "description": "Application building framework", + "dist-tags": { + "latest": "0.2.3" + }, + "maintainers": [ + { + "name": "technosophos", + "email": "technosophos@gmail.com" + } + ], + "time": { + "modified": "2011-10-28T21:55:15.771Z", + "created": "2011-10-07T21:28:41.030Z", + "0.0.1": "2011-10-07T21:28:41.837Z", + "0.0.3": "2011-10-11T00:16:56.031Z", + "0.0.4": "2011-10-11T22:21:09.631Z", + "0.0.5": "2011-10-12T22:14:34.566Z", + "0.0.6": "2011-10-13T21:00:45.000Z", + "0.0.7": "2011-10-13T21:59:35.928Z", + "0.1.0": "2011-10-17T22:04:27.348Z", + "0.1.1": "2011-10-18T21:08:59.438Z", + "0.1.2": "2011-10-18T22:15:42.193Z", + "0.1.3": "2011-10-19T19:24:46.477Z", + "0.1.4": "2011-10-20T02:47:22.500Z", + "0.1.5": "2011-10-20T18:43:23.263Z", + "0.1.6": "2011-10-20T22:00:15.410Z", + "0.2.1": "2011-10-28T20:36:09.509Z", + "0.2.2": "2011-10-28T21:53:25.617Z", + "0.2.3": "2011-10-28T21:55:15.771Z" + }, + "author": { + "name": "Matt Butcher", + "email": "technosophos@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/technosophos/Pronto.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/pronto/0.0.1", + "0.0.3": "http://registry.npmjs.org/pronto/0.0.3", + "0.0.4": "http://registry.npmjs.org/pronto/0.0.4", + "0.0.5": "http://registry.npmjs.org/pronto/0.0.5", + "0.0.6": "http://registry.npmjs.org/pronto/0.0.6", + "0.0.7": "http://registry.npmjs.org/pronto/0.0.7", + "0.1.0": "http://registry.npmjs.org/pronto/0.1.0", + "0.1.1": "http://registry.npmjs.org/pronto/0.1.1", + "0.1.2": "http://registry.npmjs.org/pronto/0.1.2", + "0.1.3": "http://registry.npmjs.org/pronto/0.1.3", + "0.1.4": "http://registry.npmjs.org/pronto/0.1.4", + "0.1.5": "http://registry.npmjs.org/pronto/0.1.5", + "0.1.6": "http://registry.npmjs.org/pronto/0.1.6", + "0.2.1": "http://registry.npmjs.org/pronto/0.2.1", + "0.2.2": "http://registry.npmjs.org/pronto/0.2.2", + "0.2.3": "http://registry.npmjs.org/pronto/0.2.3" + }, + "dist": { + "0.0.1": { + "shasum": "8a4efba7a8fb6ead5d68ba9ee823814bccc48be5", + "tarball": "http://registry.npmjs.org/pronto/-/pronto-0.0.1.tgz" + }, + "0.0.3": { + "shasum": "9fbb80b93790472e1b3276ab2eb7e1cf0f4ff2c4", + "tarball": "http://registry.npmjs.org/pronto/-/pronto-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "37ba9b1989be74b48cc92870bf4ed581b9494a2f", + "tarball": "http://registry.npmjs.org/pronto/-/pronto-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "617cb87dc55e933555a17a9dc54d398857a210f5", + "tarball": "http://registry.npmjs.org/pronto/-/pronto-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "496dab4e3940f3fa91069d16b9de9fc4e209e71b", + "tarball": "http://registry.npmjs.org/pronto/-/pronto-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "7e482b349f582edbfbe70bdbeb8cbf59e4aa83b7", + "tarball": "http://registry.npmjs.org/pronto/-/pronto-0.0.7.tgz" + }, + "0.1.0": { + "shasum": "ad907905477efa0da4fc052d718cd7158945f538", + "tarball": "http://registry.npmjs.org/pronto/-/pronto-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "30b1aec2735f85d54e3e3123856f5eba2c196aea", + "tarball": "http://registry.npmjs.org/pronto/-/pronto-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "ee88b7ae73e26ef7cb82e12848235af678cbc08f", + "tarball": "http://registry.npmjs.org/pronto/-/pronto-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "0e14a387432cf6c07ad64ea7478caa83a1a84193", + "tarball": "http://registry.npmjs.org/pronto/-/pronto-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "0986eb4302fb3fd4eefc622b95471fc0685d931b", + "tarball": "http://registry.npmjs.org/pronto/-/pronto-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "cd95c867ad7664a3d7785db3bf6a954b9dc5d7be", + "tarball": "http://registry.npmjs.org/pronto/-/pronto-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "c73f3509a839ada0e4e4ff9742470f16e6a7a096", + "tarball": "http://registry.npmjs.org/pronto/-/pronto-0.1.6.tgz" + }, + "0.2.1": { + "shasum": "4ede96616111a8d4ca3c36c232df6b109ee1db54", + "tarball": "http://registry.npmjs.org/pronto/-/pronto-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "0a55fe9fb4c83ff872a88eac32d1eb28c452e015", + "tarball": "http://registry.npmjs.org/pronto/-/pronto-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "8e8b8266f03c2ef597a402b5c261f57eb155c54b", + "tarball": "http://registry.npmjs.org/pronto/-/pronto-0.2.3.tgz" + } + }, + "keywords": [ + "framework", + "web", + "server", + "command" + ], + "url": "http://registry.npmjs.org/pronto/" + }, + "pronto-mongodb": { + "name": "pronto-mongodb", + "description": "MongoDB Support for Pronto", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "technosophos", + "email": "technosophos@gmail.com" + } + ], + "time": { + "modified": "2011-10-24T22:04:37.603Z", + "created": "2011-10-18T16:26:44.709Z", + "0.0.2": "2011-10-18T16:26:45.528Z", + "0.0.3": "2011-10-18T17:51:26.026Z", + "0.0.4": "2011-10-21T19:44:05.250Z", + "0.0.5": "2011-10-24T21:54:23.561Z", + "0.0.6": "2011-10-24T22:04:37.603Z" + }, + "author": { + "name": "Matt Butcher", + "email": "technosophos@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/technosophos/Pronto-MongoDB.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/pronto-mongodb/0.0.2", + "0.0.3": "http://registry.npmjs.org/pronto-mongodb/0.0.3", + "0.0.4": "http://registry.npmjs.org/pronto-mongodb/0.0.4", + "0.0.5": "http://registry.npmjs.org/pronto-mongodb/0.0.5", + "0.0.6": "http://registry.npmjs.org/pronto-mongodb/0.0.6" + }, + "dist": { + "0.0.2": { + "shasum": "70a10ef19f07517df594a2f8443f51b69e873413", + "tarball": "http://registry.npmjs.org/pronto-mongodb/-/pronto-mongodb-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "0dcd58410f2a02f592a19f576b9265e83c108606", + "tarball": "http://registry.npmjs.org/pronto-mongodb/-/pronto-mongodb-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "b7bdf79bfa73d06cc132682ae022fb888ca3233d", + "tarball": "http://registry.npmjs.org/pronto-mongodb/-/pronto-mongodb-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "fdf737104d55c4bee4d5ff62c326e806177e1af6", + "tarball": "http://registry.npmjs.org/pronto-mongodb/-/pronto-mongodb-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "302e9617dcf67c8ce135c0ac37a69b8c54523f99", + "tarball": "http://registry.npmjs.org/pronto-mongodb/-/pronto-mongodb-0.0.6.tgz" + } + }, + "keywords": [ + "mongodb", + "mongo", + "pronto" + ], + "url": "http://registry.npmjs.org/pronto-mongodb/" + }, + "propaganda": { + "name": "propaganda", + "description": "Generate a beautiful website for your open-source project from amarkdown file.", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "benmills", + "email": "ben@bmdev.org" + } + ], + "time": { + "modified": "2011-11-21T05:49:51.546Z", + "created": "2011-09-23T15:14:32.368Z", + "0.0.1": "2011-09-23T15:14:32.996Z", + "0.0.2": "2011-09-26T22:52:20.990Z", + "0.0.3": "2011-09-30T19:38:50.042Z", + "0.0.4": "2011-09-30T22:07:29.358Z", + "0.0.5": "2011-11-21T05:49:51.546Z" + }, + "author": { + "name": "Ben Mills" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/propaganda/0.0.1", + "0.0.2": "http://registry.npmjs.org/propaganda/0.0.2", + "0.0.3": "http://registry.npmjs.org/propaganda/0.0.3", + "0.0.4": "http://registry.npmjs.org/propaganda/0.0.4", + "0.0.5": "http://registry.npmjs.org/propaganda/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "4ac4ef56646e2a84ba15ffd1ec5f8b2eb0d728ef", + "tarball": "http://registry.npmjs.org/propaganda/-/propaganda-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "a32a803901c06f3fe52c01b6802bff496226feb6", + "tarball": "http://registry.npmjs.org/propaganda/-/propaganda-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "d6086a5d27f101c3400e813711f5907cedb4b5f1", + "tarball": "http://registry.npmjs.org/propaganda/-/propaganda-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "d21ff86515b6eeeba431cf9a8d574b071df56ed0", + "tarball": "http://registry.npmjs.org/propaganda/-/propaganda-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "b5ac04da43d6a465a84d45117571aa5b9c627656", + "tarball": "http://registry.npmjs.org/propaganda/-/propaganda-0.0.5.tgz" + } + }, + "keywords": [ + "generator", + "readme", + "website", + "coffeescript" + ], + "url": "http://registry.npmjs.org/propaganda/" + }, + "props": { + "name": "props", + "description": "extract json/yaml from the beginning of text files", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "pvorb", + "email": "paul@vorb.de" + } + ], + "time": { + "modified": "2011-08-26T01:13:22.842Z", + "created": "2011-08-09T19:47:05.832Z", + "0.0.1": "2011-08-09T19:47:09.282Z", + "0.0.2": "2011-08-13T12:51:45.176Z", + "0.0.3": "2011-08-14T12:43:41.841Z", + "0.1.0": "2011-08-22T01:20:21.354Z" + }, + "author": { + "name": "Paul Vorbach", + "email": "paul@vorb.de", + "url": "http://vorb.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/pvorb/node-props.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/props/0.0.1", + "0.0.2": "http://registry.npmjs.org/props/0.0.2", + "0.0.3": "http://registry.npmjs.org/props/0.0.3", + "0.1.0": "http://registry.npmjs.org/props/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "e830dc018b31ee149bf18c77b22ff33f1009a8db", + "tarball": "http://registry.npmjs.org/props/-/props-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "26fd2149ae435dc213a7adff1adea7e8567b6351", + "tarball": "http://registry.npmjs.org/props/-/props-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "488af20364a1f7e38882c02595b59559300b4162", + "tarball": "http://registry.npmjs.org/props/-/props-0.0.3.tgz" + }, + "0.1.0": { + "shasum": "185fd01dfe4d3af930906f86bc15684e503c7c8c", + "tarball": "http://registry.npmjs.org/props/-/props-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/props/" + }, + "proserver": { + "name": "proserver", + "description": "A simple production server", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "mwaylabs", + "email": "s.pfleiderer@mwaysolutions.com" + } + ], + "time": { + "modified": "2011-08-08T14:41:36.191Z", + "created": "2011-08-08T14:41:35.665Z", + "0.0.0": "2011-08-08T14:41:36.191Z" + }, + "author": { + "name": "tv" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/proserver/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "14f339837375c0942e78a466246a534e1c3c43d8", + "tarball": "http://registry.npmjs.org/proserver/-/proserver-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/proserver/" + }, + "protect-fs": { + "name": "protect-fs", + "description": "Sneaky nullbytes, be gone!", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "thejh", + "email": "jannhorn@gmail.com" + } + ], + "time": { + "modified": "2011-11-02T16:16:43.411Z", + "created": "2011-11-02T16:16:41.603Z", + "0.1.0": "2011-11-02T16:16:43.411Z" + }, + "author": { + "name": "Jann Horn", + "email": "jannhorn@googlemail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/thejh/node-protect-fs.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/protect-fs/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "317e2b23647261b207e4cc9f65f919ff2eed6410", + "tarball": "http://registry.npmjs.org/protect-fs/-/protect-fs-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/protect-fs/" + }, + "protege": { + "name": "protege", + "description": "Protege is a versatile NodeJS extension library that aims to make code as simple as possible", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "contra", + "email": "contra@australia.edu" + }, + { + "name": "fractal", + "email": "contact@wearefractal.com" + } + ], + "time": { + "modified": "2011-10-18T13:12:51.975Z", + "created": "2011-08-28T23:30:13.337Z", + "0.0.2": "2011-08-28T23:30:13.807Z", + "0.0.1": "2011-08-29T04:06:46.448Z", + "0.0.3": "2011-08-30T14:01:42.120Z", + "0.0.4": "2011-08-31T16:48:01.548Z", + "0.0.5": "2011-08-31T18:08:55.276Z", + "0.0.6": "2011-09-05T20:07:34.418Z", + "0.0.7": "2011-09-05T20:51:26.410Z", + "0.0.8": "2011-09-19T18:06:26.172Z", + "0.0.9": "2011-10-04T03:45:16.737Z", + "0.1.0": "2011-10-13T08:56:42.348Z", + "0.1.1": "2011-10-18T13:12:51.975Z" + }, + "author": { + "name": "Fractal", + "email": "contact@wearefractal.com", + "url": "http://wearefractal.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/wearefractal/protege.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/protege/0.0.1", + "0.0.2": "http://registry.npmjs.org/protege/0.0.2", + "0.0.3": "http://registry.npmjs.org/protege/0.0.3", + "0.0.4": "http://registry.npmjs.org/protege/0.0.4", + "0.0.5": "http://registry.npmjs.org/protege/0.0.5", + "0.0.6": "http://registry.npmjs.org/protege/0.0.6", + "0.0.7": "http://registry.npmjs.org/protege/0.0.7", + "0.0.8": "http://registry.npmjs.org/protege/0.0.8", + "0.0.9": "http://registry.npmjs.org/protege/0.0.9", + "0.1.0": "http://registry.npmjs.org/protege/0.1.0", + "0.1.1": "http://registry.npmjs.org/protege/0.1.1" + }, + "dist": { + "0.0.1": { + "shasum": "d15c333e9fe5959108da612fc6641013ffe47fa0", + "tarball": "http://registry.npmjs.org/protege/-/protege-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "30a57a278153615426e6d8d13c0615786d01b6ed", + "tarball": "http://registry.npmjs.org/protege/-/protege-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "241274ee6a377ce6b79e7a88723454a998d5ff92", + "tarball": "http://registry.npmjs.org/protege/-/protege-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "2aa287348635271e92b796012a3fe441c2018c4f", + "tarball": "http://registry.npmjs.org/protege/-/protege-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "55e3e62757b56f36b66ec139671bd7f21cbff5a1", + "tarball": "http://registry.npmjs.org/protege/-/protege-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "065a6ceb4682dd405c79fa1a78515a75b84fd246", + "tarball": "http://registry.npmjs.org/protege/-/protege-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "e4a1db78ffd55250e7864631a7a87af125244ced", + "tarball": "http://registry.npmjs.org/protege/-/protege-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "ad13ad7602e11d516fbab7569ef6ab611aa90f4f", + "tarball": "http://registry.npmjs.org/protege/-/protege-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "19566b0cec1fb187b0d632c2e8364aab27da9ae8", + "tarball": "http://registry.npmjs.org/protege/-/protege-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "dae58c3914577716bb4d64f1cd6ddf522239dc13", + "tarball": "http://registry.npmjs.org/protege/-/protege-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "05458a91f6f1162562b92b3e94f4f8224d9ccdb8", + "tarball": "http://registry.npmjs.org/protege/-/protege-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/protege/" + }, + "proteus": { + "name": "proteus", + "description": "A declarative way of creating objects and classes in JavaScript", + "dist-tags": { + "latest": "0.0.8" + }, + "maintainers": [ + { + "name": "jhamlet", + "email": "jerry@hamletink.com" + } + ], + "time": { + "modified": "2011-11-22T21:58:06.793Z", + "created": "2011-10-30T19:48:53.740Z", + "0.0.1": "2011-10-30T20:06:48.021Z", + "0.0.6": "2011-11-06T20:43:11.023Z", + "0.0.7": "2011-11-18T16:07:07.815Z", + "0.0.8": "2011-11-22T21:58:06.793Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/jhamlet/proteus.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/proteus/0.0.1", + "0.0.6": "http://registry.npmjs.org/proteus/0.0.6", + "0.0.7": "http://registry.npmjs.org/proteus/0.0.7", + "0.0.8": "http://registry.npmjs.org/proteus/0.0.8" + }, + "dist": { + "0.0.1": { + "shasum": "0fb8481207ce82d5b7e3edfbfaa6e3da4fafc5d4", + "tarball": "http://registry.npmjs.org/proteus/-/proteus-0.0.1.tgz" + }, + "0.0.6": { + "shasum": "d944bdf9890ac76df8d6cba4ce69636fcd91612a", + "tarball": "http://registry.npmjs.org/proteus/-/proteus-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "dce039dbb3546659c359e4c787624801d80ff64b", + "tarball": "http://registry.npmjs.org/proteus/-/proteus-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "74ed83ea8fe8819a87f19ad6275450f2f1da34aa", + "tarball": "http://registry.npmjs.org/proteus/-/proteus-0.0.8.tgz" + } + }, + "keywords": [ + "ooo", + "class", + "object" + ], + "url": "http://registry.npmjs.org/proteus/" + }, + "proto": { + "name": "proto", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "creationix", + "email": "tim@creationix.com" + } + ], + "versions": { + "0.1.0": "http://registry.npmjs.org/proto/0.1.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/proto/-/proto-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/proto/" + }, + "proto-list": { + "name": "proto-list", + "description": "A utility for managing a prototype chain", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "time": { + "modified": "2011-08-07T05:04:48.249Z", + "created": "2011-08-07T05:04:46.168Z", + "1.0.0": "2011-08-07T05:04:48.249Z" + }, + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me/" + }, + "repository": { + "type": "git", + "url": "git://github.com/isaacs/proto-list.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/proto-list/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "5b53b36f70af94ecb220194a422522586ce9f079", + "tarball": "http://registry.npmjs.org/proto-list/-/proto-list-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/proto-list/" + }, + "protobuf-stream": { + "name": "protobuf-stream", + "description": "Adds simple message streaming functionality to node version of protobuf module.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "dejw", + "email": "dawid.fatyga@gmail.com" + } + ], + "time": { + "modified": "2011-09-07T16:31:49.392Z", + "created": "2011-09-07T16:31:48.731Z", + "0.0.1": "2011-09-07T16:31:49.392Z" + }, + "author": { + "name": "Dawid Fatyga", + "email": "dawid.fatyga@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/protobuf-stream/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "73aa5776830754ae39898beed386082ba8461c14", + "tarball": "http://registry.npmjs.org/protobuf-stream/-/protobuf-stream-0.0.1.tgz" + } + }, + "keywords": [ + "google", + "protobuf", + "messaging" + ], + "url": "http://registry.npmjs.org/protobuf-stream/" + }, + "protocol": { + "name": "protocol", + "description": "Pattern matching for JavaScript.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "gozala", + "email": "rfobic@gmail.com" + } + ], + "time": { + "modified": "2011-10-10T16:55:07.960Z", + "created": "2011-10-10T16:55:06.489Z", + "0.0.1": "2011-10-10T16:55:07.960Z" + }, + "author": { + "name": "Irakli Gozalishvili", + "email": "rfobic@gmail.com", + "url": "http://jeditoolkit.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Gozala/protocol.git", + "web": "https://github.com/Gozala/protocol" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/protocol/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "b159ff77b6d835efbebc112be8bebccb3e39d02b", + "tarball": "http://registry.npmjs.org/protocol/-/protocol-0.0.1.tgz" + } + }, + "keywords": [ + "functions", + "pattern", + "match", + "cotract" + ], + "url": "http://registry.npmjs.org/protocol/" + }, + "protodiv": { + "name": "protodiv", + "description": "Simple client-side code for displaying dynamic data", + "dist-tags": { + "latest": "1.1.0" + }, + "maintainers": [ + { + "name": "sleeplessinc", + "email": "joe@sleepless.com" + } + ], + "time": { + "modified": "2011-10-08T01:05:08.604Z", + "created": "2011-09-19T01:32:39.767Z", + "1.0.1": "2011-09-19T01:32:41.372Z", + "1.0.2": "2011-09-19T20:59:35.674Z", + "1.0.3": "2011-09-20T15:13:19.526Z", + "1.0.4": "2011-09-20T15:31:56.916Z", + "1.1.0": "2011-10-08T01:05:08.604Z" + }, + "author": { + "name": "Joe Hitchens", + "email": "joe@sleepless.com", + "url": "sleepless.com" + }, + "versions": { + "1.0.1": "http://registry.npmjs.org/protodiv/1.0.1", + "1.0.2": "http://registry.npmjs.org/protodiv/1.0.2", + "1.0.3": "http://registry.npmjs.org/protodiv/1.0.3", + "1.0.4": "http://registry.npmjs.org/protodiv/1.0.4", + "1.1.0": "http://registry.npmjs.org/protodiv/1.1.0" + }, + "dist": { + "1.0.1": { + "shasum": "4bc9e6df368005de310304987c61659982b29ab1", + "tarball": "http://registry.npmjs.org/protodiv/-/protodiv-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "b3ef3ab21a64d7f1cdb36d1a91cfe96d8df9ceb0", + "tarball": "http://registry.npmjs.org/protodiv/-/protodiv-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "0b2a3c786b1471d7b0c227d2f4ca642c347df02c", + "tarball": "http://registry.npmjs.org/protodiv/-/protodiv-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "aaae838337cfe6bae8bf785d909106908cecd624", + "tarball": "http://registry.npmjs.org/protodiv/-/protodiv-1.0.4.tgz" + }, + "1.1.0": { + "shasum": "3b96ab3bde77ad478c3d873c5d8fc6fc0b732628", + "tarball": "http://registry.npmjs.org/protodiv/-/protodiv-1.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/protodiv/" + }, + "proton": { + "name": "proton", + "dist-tags": { + "latest": "0.4.1" + }, + "maintainers": [ + { + "name": "tomyan", + "email": "tom@yandell.me.uk" + }, + { + "name": "richardhodgson", + "email": "contact@rhodgson.co.uk" + } + ], + "time": { + "modified": "2011-10-23T14:33:25.310Z", + "created": "2011-01-29T14:11:26.874Z", + "0.1.0": "2011-01-29T14:11:27.241Z", + "0.1.2": "2011-01-29T14:40:10.309Z", + "0.1.3": "2011-01-31T23:17:41.258Z", + "0.2.0": "2011-04-30T07:53:07.250Z", + "0.3.0": "2011-07-02T13:44:47.439Z", + "0.4.0": "2011-07-03T15:07:24.253Z", + "0.4.1": "2011-09-04T13:19:31.148Z" + }, + "author": { + "name": "Tom Yandell", + "email": "tom.deletethis@yandell.me.uk", + "url": "http://tom.yandell.me.uk/blog/" + }, + "description": "Proton is a micro framework targetted at micro frameworks. It provides a common way for micro-frameworks to interoporate with the environment that runs them.", + "repository": { + "type": "git", + "url": "git://github.com/tomyan/proton.js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/proton/0.1.0", + "0.1.2": "http://registry.npmjs.org/proton/0.1.2", + "0.1.3": "http://registry.npmjs.org/proton/0.1.3", + "0.2.0": "http://registry.npmjs.org/proton/0.2.0", + "0.3.0": "http://registry.npmjs.org/proton/0.3.0", + "0.4.0": "http://registry.npmjs.org/proton/0.4.0", + "0.4.1": "http://registry.npmjs.org/proton/0.4.1" + }, + "dist": { + "0.1.0": { + "shasum": "ce869a941a2657eef48510146da5cc605fd572fd", + "tarball": "http://registry.npmjs.org/proton/-/proton-0.1.0.tgz" + }, + "0.1.2": { + "shasum": "cbc8c40f5801b6869abd7ccaa71f1d3cd11ddd79", + "tarball": "http://registry.npmjs.org/proton/-/proton-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "906c6365435fac327561e4cfe8b43dcfbb16f6e6", + "tarball": "http://registry.npmjs.org/proton/-/proton-0.1.3.tgz" + }, + "0.2.0": { + "shasum": "1ea3b385eff30927e48da3f609c33deaa4d38a4c", + "tarball": "http://registry.npmjs.org/proton/-/proton-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "b889d98f85b865e78d5654ccbbe96da5f5700b15", + "tarball": "http://registry.npmjs.org/proton/-/proton-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "9308d251a6ea35c2cf920119c72c3aa0d7f96f18", + "tarball": "http://registry.npmjs.org/proton/-/proton-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "af5434782fd00866335a323cf37546222d895bac", + "tarball": "http://registry.npmjs.org/proton/-/proton-0.4.1.tgz" + } + }, + "url": "http://registry.npmjs.org/proton/" + }, + "protoparse": { + "name": "protoparse", + "description": "parse (binary) network protocols", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "yorick", + "email": "yorickvanpelt@gmail.com" + } + ], + "time": { + "modified": "2011-10-02T14:00:02.092Z", + "created": "2011-09-18T12:07:40.721Z", + "0.0.0": "2011-09-18T12:07:42.318Z", + "0.0.1": "2011-10-02T14:00:02.092Z" + }, + "author": { + "name": "Yorick" + }, + "repository": { + "type": "git", + "url": "git://github.com/yorickvP/node-protoparse.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/protoparse/0.0.0", + "0.0.1": "http://registry.npmjs.org/protoparse/0.0.1" + }, + "dist": { + "0.0.0": { + "shasum": "9747121c8e4265413a1782a8aef43035144ecc9c", + "tarball": "http://registry.npmjs.org/protoparse/-/protoparse-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "b394f22c58447425593d110e92af8a09328907ba", + "tarball": "http://registry.npmjs.org/protoparse/-/protoparse-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/protoparse/" + }, + "prototype": { + "name": "prototype", + "description": "Implementation of Prototypejs in Node.js", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "rixius", + "email": "rixius@gmail.com" + } + ], + "time": { + "modified": "2011-01-17T09:51:35.318Z", + "created": "2011-01-17T08:42:26.105Z", + "0.0.1": "2011-01-17T08:42:26.306Z", + "0.0.5": "2011-01-17T09:51:35.318Z" + }, + "author": { + "name": "Stephen 'Rixius' Middleton", + "email": "Rixius@gmail.com", + "url": "https://github.com/rixius" + }, + "repository": { + "type": "git", + "url": "https://github.com/rixius/prototype.node.js" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/prototype/0.0.1", + "0.0.5": "http://registry.npmjs.org/prototype/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "1574a4bc2737cc168380f65022df69bb1859bf6d", + "tarball": "http://registry.npmjs.org/prototype/-/prototype-0.0.1.tgz" + }, + "0.0.5": { + "shasum": "833ca6ef7bd3b2b67daa7c1399d2ad424e082273", + "tarball": "http://registry.npmjs.org/prototype/-/prototype-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/prototype/" + }, + "provision": { + "name": "provision", + "description": "A request provisioning for node.js", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "simyungk", + "email": "simyu78@gmail.com" + } + ], + "time": { + "modified": "2011-10-30T14:57:58.015Z", + "created": "2011-10-30T14:42:58.719Z", + "0.0.1": "2011-10-30T14:43:05.497Z", + "0.0.2": "2011-10-30T14:57:58.015Z" + }, + "author": { + "name": "Simyung Kim", + "email": "simyu78@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/simyungk/node-provision.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/provision/0.0.1", + "0.0.2": "http://registry.npmjs.org/provision/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "0979dba2061d7ea09852cc2b2f63a97885245702", + "tarball": "http://registry.npmjs.org/provision/-/provision-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "6de67f85c8ca00375fee4ee2a873edaa9748f5a6", + "tarball": "http://registry.npmjs.org/provision/-/provision-0.0.2.tgz" + } + }, + "keywords": [ + "middleware", + "provisioning", + "useragent", + "locale", + "geoip", + "location", + "browser" + ], + "url": "http://registry.npmjs.org/provision/" + }, + "prowl": { + "name": "prowl", + "description": "Wrapprer for prowl, http://prowl.weks.net/.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "greg", + "email": "gregoire.lejeune@free.fr" + } + ], + "time": { + "modified": "2011-05-27T00:12:04.481Z", + "created": "2011-01-24T20:50:37.173Z", + "0.0.1": "2011-01-24T20:50:37.732Z", + "0.0.2": "2011-05-27T00:12:04.481Z" + }, + "author": { + "name": "Gregoire Lejeune", + "email": "gregoire.lejeune@free.fr" + }, + "repository": { + "type": "git", + "url": "http://github.com/glejeune/node-prowl.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/prowl/0.0.1", + "0.0.2": "http://registry.npmjs.org/prowl/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "f8baa6b11e1a01814789f193191daf6acc02443e", + "tarball": "http://registry.npmjs.org/prowl/-/prowl-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c0b1734838ab1344a293c974adb448b294fb77b5", + "tarball": "http://registry.npmjs.org/prowl/-/prowl-0.0.2.tgz" + } + }, + "keywords": [ + "prowl", + "dot" + ], + "url": "http://registry.npmjs.org/prowl/" + }, + "prowler": { + "name": "prowler", + "description": "Allows you to send notifications to your iPhone through the Prowl API using node.js", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "mape", + "email": "mape@mape.me" + } + ], + "time": { + "modified": "2011-05-30T21:00:15.214Z", + "created": "2011-05-30T21:00:14.341Z", + "0.0.3": "2011-05-30T21:00:15.214Z" + }, + "author": { + "name": "Mathias Pettersson", + "email": "mape@mape.me" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/prowler/0.0.3" + }, + "dist": { + "0.0.3": { + "shasum": "b15b5ace7d50ec26159ed8e5b486ee527ff6a915", + "tarball": "http://registry.npmjs.org/prowler/-/prowler-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/prowler/" + }, + "prox": { + "name": "prox", + "description": "Hookable socks5 proxy client and server.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "http://github.com/substack/node-prox.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/prox/0.0.1", + "0.0.2": "http://registry.npmjs.org/prox/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "a3ddbbc3c1051eb878cc9b758d9c327ea72e73be", + "tarball": "http://registry.npmjs.org/prox/-/prox-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "5b4cdf5777ea4af1f11a4167fcae6afb62f12d62", + "tarball": "http://registry.npmjs.org/prox/-/prox-0.0.2.tgz" + } + }, + "keywords": [ + "proxy", + "socks5" + ], + "url": "http://registry.npmjs.org/prox/" + }, + "proxify": { + "name": "proxify", + "description": "A simple net-based http and tcp proxy.", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "coverslide", + "email": "richard.j.hoffman@gmail.com" + } + ], + "time": { + "modified": "2011-08-15T18:09:58.021Z", + "created": "2011-08-15T18:09:55.777Z", + "0.0.0": "2011-08-15T18:09:58.021Z" + }, + "author": { + "name": "Richard Hoffman" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/proxify/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "9681b59e5f80f8f52ee768f2d87a9fc8d8e8e613", + "tarball": "http://registry.npmjs.org/proxify/-/proxify-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/proxify/" + }, + "proxino": { + "name": "proxino", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "unignorant", + "email": "ethan@proxino.com" + } + ], + "time": { + "modified": "2011-09-07T17:39:38.398Z", + "created": "2011-09-07T17:06:25.181Z", + "0.0.1": "2011-09-07T17:06:26.452Z", + "0.0.5": "2011-09-07T17:15:33.808Z", + "0.0.6": "2011-09-07T17:39:38.398Z" + }, + "author": { + "name": "Ethan Fast", + "email": "ethan@proxino.com", + "url": "https://www.proxino.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/proxino/0.0.1", + "0.0.5": "http://registry.npmjs.org/proxino/0.0.5", + "0.0.6": "http://registry.npmjs.org/proxino/0.0.6" + }, + "dist": { + "0.0.1": { + "shasum": "b4cf2dabe8aa164d1f53e756cac52fa8eedb6df8", + "tarball": "http://registry.npmjs.org/proxino/-/proxino-0.0.1.tgz" + }, + "0.0.5": { + "shasum": "5ef64db97521ace85f5ec28148f607f217d913fb", + "tarball": "http://registry.npmjs.org/proxino/-/proxino-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "ca03955316c888f6eed306f6360905b07ca1824a", + "tarball": "http://registry.npmjs.org/proxino/-/proxino-0.0.6.tgz" + } + }, + "url": "http://registry.npmjs.org/proxino/" + }, + "proxio": { + "name": "proxio", + "description": "A node.io proxy manager", + "dist-tags": { + "latest": "0.2.2-9" + }, + "maintainers": [ + { + "name": "cohara87", + "email": "cohara87@gmail.com" + } + ], + "author": { + "name": "Chris O'Hara", + "email": "cohara87@gmail.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/chriso/proxio.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/proxio/0.1.0", + "0.1.1": "http://registry.npmjs.org/proxio/0.1.1", + "0.1.2": "http://registry.npmjs.org/proxio/0.1.2", + "0.1.3": "http://registry.npmjs.org/proxio/0.1.3", + "0.1.4": "http://registry.npmjs.org/proxio/0.1.4", + "0.1.5": "http://registry.npmjs.org/proxio/0.1.5", + "0.1.6": "http://registry.npmjs.org/proxio/0.1.6", + "0.1.7": "http://registry.npmjs.org/proxio/0.1.7", + "0.1.8": "http://registry.npmjs.org/proxio/0.1.8", + "0.1.9": "http://registry.npmjs.org/proxio/0.1.9", + "0.2.0": "http://registry.npmjs.org/proxio/0.2.0", + "0.2.1": "http://registry.npmjs.org/proxio/0.2.1", + "0.2.2-1": "http://registry.npmjs.org/proxio/0.2.2-1", + "0.2.2-2": "http://registry.npmjs.org/proxio/0.2.2-2", + "0.2.2-3": "http://registry.npmjs.org/proxio/0.2.2-3", + "0.2.2-4": "http://registry.npmjs.org/proxio/0.2.2-4", + "0.2.2-5": "http://registry.npmjs.org/proxio/0.2.2-5", + "0.2.2-6": "http://registry.npmjs.org/proxio/0.2.2-6", + "0.2.2-7": "http://registry.npmjs.org/proxio/0.2.2-7", + "0.2.2-8": "http://registry.npmjs.org/proxio/0.2.2-8", + "0.2.2-9": "http://registry.npmjs.org/proxio/0.2.2-9" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/proxio/-/proxio-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://registry.npmjs.org/proxio/-/proxio-0.1.1.tgz" + }, + "0.1.2": { + "tarball": "http://registry.npmjs.org/proxio/-/proxio-0.1.2.tgz" + }, + "0.1.3": { + "tarball": "http://registry.npmjs.org/proxio/-/proxio-0.1.3.tgz" + }, + "0.1.4": { + "tarball": "http://registry.npmjs.org/proxio/-/proxio-0.1.4.tgz" + }, + "0.1.5": { + "tarball": "http://registry.npmjs.org/proxio/-/proxio-0.1.5.tgz" + }, + "0.1.6": { + "tarball": "http://registry.npmjs.org/proxio/-/proxio-0.1.6.tgz" + }, + "0.1.7": { + "tarball": "http://registry.npmjs.org/proxio/-/proxio-0.1.7.tgz" + }, + "0.1.8": { + "tarball": "http://registry.npmjs.org/proxio/-/proxio-0.1.8.tgz" + }, + "0.1.9": { + "tarball": "http://registry.npmjs.org/proxio/-/proxio-0.1.9.tgz" + }, + "0.2.0": { + "tarball": "http://registry.npmjs.org/proxio/-/proxio-0.2.0.tgz" + }, + "0.2.1": { + "tarball": "http://registry.npmjs.org/proxio/-/proxio-0.2.1.tgz" + }, + "0.2.2-1": { + "tarball": "http://registry.npmjs.org/proxio/-/proxio-0.2.2-1.tgz" + }, + "0.2.2-2": { + "tarball": "http://registry.npmjs.org/proxio/-/proxio-0.2.2-2.tgz" + }, + "0.2.2-3": { + "tarball": "http://registry.npmjs.org/proxio/-/proxio-0.2.2-3.tgz" + }, + "0.2.2-4": { + "tarball": "http://registry.npmjs.org/proxio/-/proxio-0.2.2-4.tgz" + }, + "0.2.2-5": { + "tarball": "http://registry.npmjs.org/proxio/-/proxio-0.2.2-5.tgz" + }, + "0.2.2-6": { + "tarball": "http://registry.npmjs.org/proxio/-/proxio-0.2.2-6.tgz" + }, + "0.2.2-7": { + "tarball": "http://registry.npmjs.org/proxio/-/proxio-0.2.2-7.tgz" + }, + "0.2.2-8": { + "tarball": "http://registry.npmjs.org/proxio/-/proxio-0.2.2-8.tgz" + }, + "0.2.2-9": { + "shasum": "defbd64dc7bcff4597ccb5eb3450ba0e08b2caf9", + "tarball": "http://registry.npmjs.org/proxio/-/proxio-0.2.2-9.tgz" + } + }, + "url": "http://registry.npmjs.org/proxio/" + }, + "proxy": { + "name": "proxy", + "description": "EventEmitter / Stream proxy for node.js", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "time": { + "modified": "2011-08-31T18:23:47.054Z", + "created": "2011-08-31T18:23:45.767Z", + "0.0.1": "2011-08-31T18:23:47.054Z" + }, + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/proxy/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "c4caf75c45cdb46ed373c300f6e4c98d4fa1fc9b", + "tarball": "http://registry.npmjs.org/proxy/-/proxy-0.0.1.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/proxy/" + }, + "proxy-by-url": { + "name": "proxy-by-url", + "description": "custom logic for node-http-proxy to proxy basedon incoming url", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-08-09T04:29:31.417Z", + "created": "2011-07-30T09:55:27.308Z", + "0.0.0": "2011-07-30T09:55:29.217Z", + "0.0.1": "2011-08-09T04:29:31.417Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com", + "url": "http://bit.ly/dominictarr" + }, + "repository": { + "type": "git", + "url": "git://github.com/dominictarr/proxy-by-url.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/proxy-by-url/0.0.0", + "0.0.1": "http://registry.npmjs.org/proxy-by-url/0.0.1" + }, + "dist": { + "0.0.0": { + "shasum": "ee8c04d31d20996e7d4a4ce888379890119a73ea", + "tarball": "http://registry.npmjs.org/proxy-by-url/-/proxy-by-url-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "bfd69ec794696b3071e1febabf43ec852d2c6508", + "tarball": "http://registry.npmjs.org/proxy-by-url/-/proxy-by-url-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/proxy-by-url/" + }, + "proxy-engine": { + "name": "proxy-engine", + "description": "Proxy engine module.", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "dreamlab", + "email": "janecki@gmail.com" + } + ], + "time": { + "modified": "2011-11-23T09:01:41.457Z", + "created": "2011-10-07T10:55:02.909Z", + "0.0.1": "2011-10-07T10:55:04.888Z", + "0.0.2": "2011-10-07T11:44:58.427Z", + "0.0.3": "2011-10-24T12:54:06.192Z", + "0.0.4": "2011-11-23T09:01:41.457Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/proxy-engine/0.0.1", + "0.0.2": "http://registry.npmjs.org/proxy-engine/0.0.2", + "0.0.3": "http://registry.npmjs.org/proxy-engine/0.0.3", + "0.0.4": "http://registry.npmjs.org/proxy-engine/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "c61151cc2987e113cfa44a498de6fa03c7dfd739", + "tarball": "http://registry.npmjs.org/proxy-engine/-/proxy-engine-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "e31fb4c72eb1ab253704e7f3ec27356282f3ea04", + "tarball": "http://registry.npmjs.org/proxy-engine/-/proxy-engine-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "c7a0565abc57f095de261f077c49e7550e5c1bcb", + "tarball": "http://registry.npmjs.org/proxy-engine/-/proxy-engine-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "6c96c590656b3c6f8f69331cad5a6d23e2b6dcde", + "tarball": "http://registry.npmjs.org/proxy-engine/-/proxy-engine-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/proxy-engine/" + }, + "proxy-foo": { + "name": "proxy-foo", + "description": "Sets up a proxy to rewrite meta tags to bring pages within your app's domain. Useful to leverage existing meta data and url locations while creating new (namespaced) Facebook apps.Tinkered with to get around an issue by Nadia Morris", + "dist-tags": { + "latest": "0.0.9n" + }, + "maintainers": [ + { + "name": "hexjunky", + "email": "reversegremlin@gmail.com" + } + ], + "time": { + "modified": "2011-11-11T02:09:16.928Z", + "created": "2011-10-05T16:36:15.068Z", + "0.0.1": "2011-10-05T16:36:15.501Z", + "0.0.2": "2011-10-05T17:41:25.867Z", + "0.0.9": "2011-10-05T18:17:59.480Z", + "0.0.9c": "2011-10-05T19:03:29.625Z", + "0.0.9d": "2011-10-06T19:01:18.518Z", + "0.0.9e": "2011-10-10T17:01:31.656Z", + "0.0.9f": "2011-10-10T17:04:21.617Z", + "0.0.9i": "2011-10-10T17:11:44.657Z", + "0.0.9j": "2011-10-28T17:25:04.862Z", + "0.0.9k": "2011-10-28T17:38:24.735Z", + "0.0.9l": "2011-10-28T18:06:46.208Z", + "0.0.9m": "2011-10-28T18:26:12.140Z", + "0.0.9n": "2011-11-11T02:09:16.928Z" + }, + "author": { + "name": "Jacob Swartwood" + }, + "repository": { + "type": "git", + "web": "http://github.com/jswartwood/meta-rewrite-proxy.git", + "url": "" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/proxy-foo/0.0.1", + "0.0.2": "http://registry.npmjs.org/proxy-foo/0.0.2", + "0.0.9": "http://registry.npmjs.org/proxy-foo/0.0.9", + "0.0.9c": "http://registry.npmjs.org/proxy-foo/0.0.9c", + "0.0.9d": "http://registry.npmjs.org/proxy-foo/0.0.9d", + "0.0.9e": "http://registry.npmjs.org/proxy-foo/0.0.9e", + "0.0.9f": "http://registry.npmjs.org/proxy-foo/0.0.9f", + "0.0.9i": "http://registry.npmjs.org/proxy-foo/0.0.9i", + "0.0.9j": "http://registry.npmjs.org/proxy-foo/0.0.9j", + "0.0.9k": "http://registry.npmjs.org/proxy-foo/0.0.9k", + "0.0.9l": "http://registry.npmjs.org/proxy-foo/0.0.9l", + "0.0.9m": "http://registry.npmjs.org/proxy-foo/0.0.9m", + "0.0.9n": "http://registry.npmjs.org/proxy-foo/0.0.9n" + }, + "dist": { + "0.0.1": { + "shasum": "04e8b2d13bc120834766a2a0f1a3b35ecc4f1076", + "tarball": "http://registry.npmjs.org/proxy-foo/-/proxy-foo-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "7ee6d76a0fcdcae10b5fa511e86555914882aa3a", + "tarball": "http://registry.npmjs.org/proxy-foo/-/proxy-foo-0.0.2.tgz" + }, + "0.0.9": { + "shasum": "13be3b6085a4b003360bcbd9d53af27352bfdc2d", + "tarball": "http://registry.npmjs.org/proxy-foo/-/proxy-foo-0.0.9.tgz" + }, + "0.0.9c": { + "shasum": "412299b957193049c85e58fbab0531a615ca1717", + "tarball": "http://registry.npmjs.org/proxy-foo/-/proxy-foo-0.0.9c.tgz" + }, + "0.0.9d": { + "shasum": "5f16486894259699c73a0dd79f1ae07386713faf", + "tarball": "http://registry.npmjs.org/proxy-foo/-/proxy-foo-0.0.9d.tgz" + }, + "0.0.9e": { + "shasum": "a6fa0c107eb002bfb20d117ba55d8f9d5a358772", + "tarball": "http://registry.npmjs.org/proxy-foo/-/proxy-foo-0.0.9e.tgz" + }, + "0.0.9f": { + "shasum": "8d76bea5bf238afaecf7d8478ef73a236b1fd046", + "tarball": "http://registry.npmjs.org/proxy-foo/-/proxy-foo-0.0.9f.tgz" + }, + "0.0.9i": { + "shasum": "159ca361d55de0bfebfe51e3f29ccf95f48aa4be", + "tarball": "http://registry.npmjs.org/proxy-foo/-/proxy-foo-0.0.9i.tgz" + }, + "0.0.9j": { + "shasum": "c9bef596776947e032e1ae820f8ef1d27710858d", + "tarball": "http://registry.npmjs.org/proxy-foo/-/proxy-foo-0.0.9j.tgz" + }, + "0.0.9k": { + "shasum": "e723ec4a919161bdad7dd7e382065d6ed0caaf52", + "tarball": "http://registry.npmjs.org/proxy-foo/-/proxy-foo-0.0.9k.tgz" + }, + "0.0.9l": { + "shasum": "a1edf7e5071b25a10bbbcbdb3e50b2da5bc8e7e9", + "tarball": "http://registry.npmjs.org/proxy-foo/-/proxy-foo-0.0.9l.tgz" + }, + "0.0.9m": { + "shasum": "3f9b464d4fda25f3d7d5a4a2c147142576aaf5a2", + "tarball": "http://registry.npmjs.org/proxy-foo/-/proxy-foo-0.0.9m.tgz" + }, + "0.0.9n": { + "shasum": "066f021077ca55a699bcb0f6ba9b641ec5e9a883", + "tarball": "http://registry.npmjs.org/proxy-foo/-/proxy-foo-0.0.9n.tgz" + } + }, + "keywords": [ + "meta", + "proxy", + "facebook", + "open-graph" + ], + "url": "http://registry.npmjs.org/proxy-foo/" + }, + "ps-tree": { + "name": "ps-tree", + "description": "get all children of a pid", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-11-15T00:01:28.120Z", + "created": "2011-10-05T06:43:31.026Z", + "0.0.0": "2011-10-05T06:43:34.904Z", + "0.0.1": "2011-10-29T01:29:18.842Z", + "0.0.2": "2011-11-15T00:01:28.120Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com", + "url": "http://bit.ly/dominictarr" + }, + "repository": { + "type": "git", + "url": "git://github.com/dominictarr/ps-tree.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/ps-tree/0.0.0", + "0.0.1": "http://registry.npmjs.org/ps-tree/0.0.1", + "0.0.2": "http://registry.npmjs.org/ps-tree/0.0.2" + }, + "dist": { + "0.0.0": { + "shasum": "2daec498b221c074fc9e9247de8c21a21209cf4c", + "tarball": "http://registry.npmjs.org/ps-tree/-/ps-tree-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "2374496294e74e99107a3b2ae8ce4a352a928e1f", + "tarball": "http://registry.npmjs.org/ps-tree/-/ps-tree-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "e33b587afec35f354d4bef0c404c573e97d21b01", + "tarball": "http://registry.npmjs.org/ps-tree/-/ps-tree-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/ps-tree/" + }, + "pseudo": { + "name": "pseudo", + "description": "A simple loader of actions and middlewares for express.js", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "thepumpkin1979", + "email": "johan@firebase.co" + } + ], + "time": { + "modified": "2011-07-26T06:44:23.097Z", + "created": "2011-07-26T06:28:22.833Z", + "0.1.0": "2011-07-26T06:28:23.614Z", + "0.2.0": "2011-07-26T06:41:54.693Z" + }, + "author": { + "name": "Johan Hernandez", + "email": "johan@firebase.co" + }, + "repository": { + "type": "git", + "url": "git://github.com/firebaseco/pseudo.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/pseudo/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "620165a7f45da3948655228c3755d090531aa86c", + "tarball": "http://registry.npmjs.org/pseudo/-/pseudo-0.1.0.tgz" + } + }, + "keywords": [ + "utility", + "project", + "structure", + "loader", + "actions", + "filters" + ], + "url": "http://registry.npmjs.org/pseudo/" + }, + "psk": { + "name": "psk", + "dist-tags": { + "latest": "0.0.8" + }, + "maintainers": [ + { + "name": "architectd", + "email": "craig.j.condon@gmail.com" + } + ], + "time": { + "modified": "2011-10-11T20:41:55.669Z", + "created": "2011-08-28T22:21:56.600Z", + "0.0.1": "2011-08-28T22:21:56.905Z", + "0.0.2": "2011-08-28T22:25:04.602Z", + "0.0.3": "2011-08-28T22:29:17.549Z", + "0.0.5": "2011-09-13T20:46:50.414Z", + "0.0.6": "2011-09-13T22:04:12.588Z", + "0.0.7": "2011-09-23T03:29:04.108Z", + "0.0.8": "2011-10-11T20:41:55.669Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/psk/0.0.1", + "0.0.2": "http://registry.npmjs.org/psk/0.0.2", + "0.0.3": "http://registry.npmjs.org/psk/0.0.3", + "0.0.5": "http://registry.npmjs.org/psk/0.0.5", + "0.0.6": "http://registry.npmjs.org/psk/0.0.6", + "0.0.7": "http://registry.npmjs.org/psk/0.0.7", + "0.0.8": "http://registry.npmjs.org/psk/0.0.8" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/psk/-/psk-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/psk/-/psk-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/psk/-/psk-0.0.3.tgz" + }, + "0.0.5": { + "shasum": "e52146474f5d345f223856649971fe8b9e27c41e", + "tarball": "http://registry.npmjs.org/psk/-/psk-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "3062351925fdbc498ab9a50fdf05f6c99b99beee", + "tarball": "http://registry.npmjs.org/psk/-/psk-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "04d1adde3be6f787b3b82e86d60cbc57804ccaf8", + "tarball": "http://registry.npmjs.org/psk/-/psk-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "074ebe2f1a56e1bfa0f1dd6ac39c7bf7e426b93f", + "tarball": "http://registry.npmjs.org/psk/-/psk-0.0.8.tgz" + } + }, + "url": "http://registry.npmjs.org/psk/" + }, + "pty": { + "name": "pty", + "description": "pseudo-terminal bindings", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "kriskowal", + "email": "kris.kowal@cixar.com" + } + ], + "time": { + "modified": "2011-04-15T21:29:49.131Z", + "created": "2011-01-08T18:18:32.411Z", + "0.0.1": "2011-01-08T18:18:32.780Z" + }, + "author": { + "name": "Kris Kowal", + "email": "kris@cixar.com", + "url": "http://github.com/kriskowal/" + }, + "repository": { + "type": "git", + "url": "http://github.com/kriskowal/node-pty.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/pty/0.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/pty/-/pty-0.0.1.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "45f00339ec53c76a88fafb216228900edcf21318", + "tarball": "http://registry.npmjs.org/pty/-/pty-0.0.1-0.4-sunos-5.11.tgz" + } + } + } + }, + "url": "http://registry.npmjs.org/pty/" + }, + "pub-mix": { + "name": "pub-mix", + "description": "A simple custom events micro-framework", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "rob-ot", + "email": "dsmlover@gmail.com" + } + ], + "time": { + "modified": "2011-05-10T04:20:17.083Z", + "created": "2011-05-10T04:20:16.748Z", + "1.0.0": "2011-05-10T04:20:17.083Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/Rob-ot/Pub-Mix.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/pub-mix/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "045abb0659fd0884a35ae415c7932526bfe0a014", + "tarball": "http://registry.npmjs.org/pub-mix/-/pub-mix-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/pub-mix/" + }, + "pubjs": { + "name": "pubjs", + "description": "A node.js templating language that handles arbitrary and composable nesting", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "maxtaco", + "email": "max@okcupid.com" + } + ], + "time": { + "modified": "2011-12-02T22:15:09.304Z", + "created": "2011-07-07T18:16:18.713Z", + "0.0.1": "2011-07-07T18:16:18.851Z", + "0.0.2": "2011-11-07T21:32:05.467Z", + "0.0.3": "2011-11-07T22:26:31.555Z", + "0.0.4": "2011-12-02T22:15:09.304Z" + }, + "author": { + "name": "Max Krohn", + "email": "max@okcupid.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/maxtaco/pubjs.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/pubjs/0.0.1", + "0.0.2": "http://registry.npmjs.org/pubjs/0.0.2", + "0.0.3": "http://registry.npmjs.org/pubjs/0.0.3", + "0.0.4": "http://registry.npmjs.org/pubjs/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "1001c20b58163b134f5e465c370849ea887f4db9", + "tarball": "http://registry.npmjs.org/pubjs/-/pubjs-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "274795ed4465f9ec46af7f7e1946ed24b433d362", + "tarball": "http://registry.npmjs.org/pubjs/-/pubjs-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "bb39c05ccfe83115591afb939cd76723bfcaa575", + "tarball": "http://registry.npmjs.org/pubjs/-/pubjs-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "0c2471b848dddbc59a3f5974cdb25854cdce6ebb", + "tarball": "http://registry.npmjs.org/pubjs/-/pubjs-0.0.4.tgz" + } + }, + "keywords": [ + "okws", + "pub" + ], + "url": "http://registry.npmjs.org/pubjs/" + }, + "public": { + "name": "public", + "description": "Run http server hosting static files with specified public dir & port", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "tnantoka", + "email": "bornneet@livedoor.com" + } + ], + "time": { + "modified": "2011-11-22T05:30:32.680Z", + "created": "2011-10-01T12:37:07.707Z", + "0.1.0": "2011-10-01T12:37:15.580Z", + "0.1.1": "2011-11-22T05:25:58.797Z", + "0.1.2": "2011-11-22T05:30:32.680Z" + }, + "author": { + "name": "tnantoka", + "email": "bornneet@livedoor.com", + "url": "http://blog.bornneet.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/tnantoka/public.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/public/0.1.0", + "0.1.1": "http://registry.npmjs.org/public/0.1.1", + "0.1.2": "http://registry.npmjs.org/public/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "d15ffc3fbb286ce0c890f77fa6de9d2938ebc622", + "tarball": "http://registry.npmjs.org/public/-/public-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "64ab861dd9fe280d03e9d1ffac1f2d1d1facad36", + "tarball": "http://registry.npmjs.org/public/-/public-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "f2cf9cef45eee844e147698790d02d10735f7464", + "tarball": "http://registry.npmjs.org/public/-/public-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/public/" + }, + "publicsuffix": { + "name": "publicsuffix", + "description": "JavaScript version of the Public Suffix List", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "zimbatm", + "email": "jonas@pfenniger.name" + } + ], + "author": { + "name": "Jonas Pfenniger", + "email": "jonas@pfenniger.name", + "url": "zimbatm" + }, + "repository": { + "type": "git", + "url": "http://github.com/zimbatm/publicsuffix.js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/publicsuffix/0.1.0", + "1.0.0": "http://registry.npmjs.org/publicsuffix/1.0.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/publicsuffix/-/publicsuffix-0.1.0.tgz" + }, + "1.0.0": { + "tarball": "http://registry.npmjs.org/publicsuffix/-/publicsuffix-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/publicsuffix/" + }, + "publicsuffixlist": { + "name": "publicsuffixlist", + "description": "An implementation of the Public Suffix List from publicsuffix.org", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "cmtt", + "email": "thoemmes+git@gmail.com" + } + ], + "time": { + "modified": "2011-11-28T01:04:21.265Z", + "created": "2011-09-30T10:13:15.315Z", + "0.1.0": "2011-09-30T10:13:16.242Z", + "0.1.1": "2011-11-28T00:54:08.632Z", + "0.1.2": "2011-11-28T01:04:21.265Z" + }, + "author": { + "name": "Matthias Thoemmes", + "email": "thoemmes+git@gmail.com", + "url": "https://github.com/cmtt/publicsuffixlist" + }, + "repository": { + "type": "git", + "url": "git://github.com/cmtt/publicsuffixlist.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/publicsuffixlist/0.1.0", + "0.1.1": "http://registry.npmjs.org/publicsuffixlist/0.1.1", + "0.1.2": "http://registry.npmjs.org/publicsuffixlist/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "ae55eb54bb9309bd45bd35ecbc3f4af8e22598af", + "tarball": "http://registry.npmjs.org/publicsuffixlist/-/publicsuffixlist-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "d85f5ac0bfde861b08975c410dd1bbfd1cfa1a23", + "tarball": "http://registry.npmjs.org/publicsuffixlist/-/publicsuffixlist-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "8bd283f779b133da07d984975595a184163df4f9", + "tarball": "http://registry.npmjs.org/publicsuffixlist/-/publicsuffixlist-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/publicsuffixlist/" + }, + "publisher": { + "name": "publisher", + "description": "A sophisticated mix of pubsub and AOP for autonomous module development", + "dist-tags": { + "latest": "1.3.0" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-09-18T17:11:36.938Z", + "created": "2011-09-07T03:03:37.401Z", + "1.0.0": "2011-09-07T03:03:39.308Z", + "1.1.0": "2011-09-09T04:06:08.444Z", + "1.2.0": "2011-09-09T23:24:44.206Z", + "1.3.0": "2011-09-18T17:11:36.938Z" + }, + "author": { + "name": "Ryan Florence", + "email": "rpflorence+npm@gmail.com", + "url": "http://ryanflorence.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/rpflorence/publisher.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/publisher/1.0.0", + "1.1.0": "http://registry.npmjs.org/publisher/1.1.0", + "1.2.0": "http://registry.npmjs.org/publisher/1.2.0", + "1.3.0": "http://registry.npmjs.org/publisher/1.3.0" + }, + "dist": { + "1.0.0": { + "shasum": "367029bc8171bf270b803db1e246e88dd68d287c", + "tarball": "http://registry.npmjs.org/publisher/-/publisher-1.0.0.tgz" + }, + "1.1.0": { + "shasum": "3b272e356680da47e2cc6046f0f66bcbf61a4288", + "tarball": "http://registry.npmjs.org/publisher/-/publisher-1.1.0.tgz" + }, + "1.2.0": { + "shasum": "d4f961dae9da9ff34d9821c9834a12f11b440584", + "tarball": "http://registry.npmjs.org/publisher/-/publisher-1.2.0.tgz" + }, + "1.3.0": { + "shasum": "bc50cb7cc3e629c6842d3d17aa5553f3d4041bf6", + "tarball": "http://registry.npmjs.org/publisher/-/publisher-1.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/publisher/" + }, + "pubnub-client": { + "name": "pubnub-client", + "description": "Pubnub client for Node.js", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "arnaudsj", + "email": "arnaudsj@gmail.com" + } + ], + "author": { + "name": "Sébastien Arnaud", + "email": "arnaudsj@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/pubnub-client/0.1.0", + "0.1.1": "http://registry.npmjs.org/pubnub-client/0.1.1" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/pubnub-client/-/pubnub-client-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://packages:5984/pubnub-client/-/pubnub-client-0.1.1.tgz" + } + }, + "keywords": [ + "pubnub", + "node", + "client" + ], + "url": "http://registry.npmjs.org/pubnub-client/" + }, + "pubsub": { + "name": "pubsub", + "description": "Simple pubsub for node.js ", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "flashingpumpkin", + "email": "alen@caffeinehit.com" + } + ], + "author": { + "name": "Alen Mujezinovic", + "email": "alen@caffeinehit.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:flashingpumpkin/node-pubsub.git" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/pubsub/0.0.3" + }, + "dist": { + "0.0.3": { + "tarball": "http://registry.npmjs.org/pubsub/-/pubsub-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/pubsub/" + }, + "pubsub.io": { + "name": "pubsub.io", + "description": "Pubsub.io client library", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "ianjorgensen", + "email": "jorgensen.ian@gmail.com" + }, + { + "name": "mafintosh", + "email": "mathiasbuus@gmail.com" + } + ], + "time": { + "modified": "2011-09-07T06:13:00.172Z", + "created": "2011-07-11T15:44:38.884Z", + "0.1.0": "2011-07-11T15:44:39.657Z", + "0.1.1": "2011-07-16T20:12:40.073Z", + "0.1.2": "2011-07-18T13:28:12.802Z", + "0.1.3": "2011-07-18T15:48:31.222Z", + "0.1.4": "2011-07-18T16:10:37.490Z", + "0.1.5": "2011-07-18T17:41:38.382Z", + "0.1.6": "2011-07-18T17:43:16.110Z", + "0.1.7": "2011-07-18T17:52:49.071Z", + "0.1.8": "2011-07-23T23:21:01.494Z", + "0.1.9": "2011-08-02T08:12:40.445Z", + "0.2.0": "2011-09-07T06:13:00.172Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/pubsub.io/0.1.0", + "0.1.1": "http://registry.npmjs.org/pubsub.io/0.1.1", + "0.1.2": "http://registry.npmjs.org/pubsub.io/0.1.2", + "0.1.3": "http://registry.npmjs.org/pubsub.io/0.1.3", + "0.1.4": "http://registry.npmjs.org/pubsub.io/0.1.4", + "0.1.5": "http://registry.npmjs.org/pubsub.io/0.1.5", + "0.1.6": "http://registry.npmjs.org/pubsub.io/0.1.6", + "0.1.7": "http://registry.npmjs.org/pubsub.io/0.1.7", + "0.1.8": "http://registry.npmjs.org/pubsub.io/0.1.8", + "0.1.9": "http://registry.npmjs.org/pubsub.io/0.1.9", + "0.2.0": "http://registry.npmjs.org/pubsub.io/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "883739d2b4f5ed9a1d0f482cb9d90cac0b0d95da", + "tarball": "http://registry.npmjs.org/pubsub.io/-/pubsub.io-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "00237de96b3cecbda8bd2b93b33b65744d998cd8", + "tarball": "http://registry.npmjs.org/pubsub.io/-/pubsub.io-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "9eb9262ad9a8b9a35c2b3bf18d4f0ee56c704fa6", + "tarball": "http://registry.npmjs.org/pubsub.io/-/pubsub.io-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "b5177eb9ce6d464d6c687ddf776125ab61f25e49", + "tarball": "http://registry.npmjs.org/pubsub.io/-/pubsub.io-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "0d9b539e994dcbba4c4a27b41c75a9a3bb6895cc", + "tarball": "http://registry.npmjs.org/pubsub.io/-/pubsub.io-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "a9b1215698bf958fbeedacac8755865764e65faa", + "tarball": "http://registry.npmjs.org/pubsub.io/-/pubsub.io-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "adfeaf35523670d03fce9f22196bf1a0043fd878", + "tarball": "http://registry.npmjs.org/pubsub.io/-/pubsub.io-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "c4f1c1ba9f39d15f4c91c17beb280ffc1a4013b0", + "tarball": "http://registry.npmjs.org/pubsub.io/-/pubsub.io-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "7518ca4cb0a5c66ebacb33397ea844dbfd6b0127", + "tarball": "http://registry.npmjs.org/pubsub.io/-/pubsub.io-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "cd42114d4f2ec0c98803d81e17bd8b9b565243e1", + "tarball": "http://registry.npmjs.org/pubsub.io/-/pubsub.io-0.1.9.tgz" + }, + "0.2.0": { + "shasum": "e8e2729612fc669607bfe9267e9070120ccc80c0", + "tarball": "http://registry.npmjs.org/pubsub.io/-/pubsub.io-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/pubsub.io/" + }, + "pubsubd": { + "name": "pubsubd", + "description": "Distributed PubSub", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "bmuller", + "email": "bamuller@gmail.com" + } + ], + "time": { + "modified": "2010-12-28T18:52:41.506Z", + "created": "2010-12-28T18:52:41.005Z", + "0.0.0": "2010-12-28T18:52:41.506Z" + }, + "author": { + "name": "Brian Muller", + "email": "bamuller@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/bmuller/pubsubd.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/pubsubd/0.0.0" + }, + "dist": { + "0.0.0": { + "tarball": "http://registry.npmjs.org/pubsubd/-/pubsubd-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/pubsubd/" + }, + "puddi": { + "name": "puddi", + "description": "Dependencies manager", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "arcanis", + "email": "nison.mael@gmail.com" + } + ], + "time": { + "modified": "2011-10-16T16:58:10.395Z", + "created": "2011-10-16T16:58:07.526Z", + "0.0.1": "2011-10-16T16:58:10.395Z" + }, + "author": { + "name": "Mael Nison", + "email": "nison.mael@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/puddi/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "10b9b7eab1e0f6a6b74d312b6b805aee027c1faf", + "tarball": "http://registry.npmjs.org/puddi/-/puddi-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/puddi/" + }, + "pulley": { + "name": "pulley", + "description": "Easy Github Pull Request Lander", + "dist-tags": { + "latest": "0.1.5" + }, + "maintainers": [ + { + "name": "jeresig", + "email": "jeresig@gmail.com" + } + ], + "time": { + "modified": "2011-04-23T20:15:19.260Z", + "created": "2011-04-22T03:58:34.080Z", + "0.1.0": "2011-04-22T03:58:34.214Z", + "0.1.1": "2011-04-22T04:30:32.581Z", + "0.1.2": "2011-04-22T04:34:53.574Z", + "0.1.3": "2011-04-22T17:03:27.167Z", + "0.1.4": "2011-04-22T19:51:28.255Z", + "0.1.5": "2011-04-23T20:15:19.260Z" + }, + "author": { + "name": "John Resig", + "url": "http://ejohn.org/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jeresig/pulley.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/pulley/0.1.0", + "0.1.1": "http://registry.npmjs.org/pulley/0.1.1", + "0.1.2": "http://registry.npmjs.org/pulley/0.1.2", + "0.1.3": "http://registry.npmjs.org/pulley/0.1.3", + "0.1.4": "http://registry.npmjs.org/pulley/0.1.4", + "0.1.5": "http://registry.npmjs.org/pulley/0.1.5" + }, + "dist": { + "0.1.0": { + "shasum": "2cb9349d76748781d67a1e21b989d68ecd826d75", + "tarball": "http://registry.npmjs.org/pulley/-/pulley-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "f88bc674a6c8d97f49efe38cfd98a656fa89bc01", + "tarball": "http://registry.npmjs.org/pulley/-/pulley-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "af99ef301bdba1dd3a9a1bb9b6debe44ba8dce71", + "tarball": "http://registry.npmjs.org/pulley/-/pulley-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "f1e8346a016c7a080db7bcc307dd772450a7253b", + "tarball": "http://registry.npmjs.org/pulley/-/pulley-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "69d9b0e6a0b946b62eedbc57b3142c70c68cd900", + "tarball": "http://registry.npmjs.org/pulley/-/pulley-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "e390f0437a6cdef7012f8be4dbfec51829a086bd", + "tarball": "http://registry.npmjs.org/pulley/-/pulley-0.1.5.tgz" + } + }, + "keywords": [ + "github", + "git", + "pull" + ], + "url": "http://registry.npmjs.org/pulley/" + }, + "pulse": { + "name": "pulse", + "description": "node.js client for Mozilla Pulse", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "sdwilsh", + "email": "me@shawnwilsher.com" + } + ], + "time": { + "modified": "2011-06-03T19:31:33.717Z", + "created": "2011-05-27T00:19:45.301Z", + "0.1.0": "2011-05-27T00:19:45.862Z", + "0.1.1": "2011-05-28T02:11:36.358Z", + "0.2.0": "2011-05-29T20:55:17.697Z", + "0.3.0": "2011-06-03T19:31:33.717Z" + }, + "author": { + "name": "Shawn Wilsher", + "email": "me@shawnwilsher.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/sdwilsh/node-pulse.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/pulse/0.1.0", + "0.1.1": "http://registry.npmjs.org/pulse/0.1.1", + "0.2.0": "http://registry.npmjs.org/pulse/0.2.0", + "0.3.0": "http://registry.npmjs.org/pulse/0.3.0" + }, + "dist": { + "0.1.0": { + "shasum": "51953d9a2613afd86049f8f6c2134426d3a0e818", + "tarball": "http://registry.npmjs.org/pulse/-/pulse-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "d73ef54daf207a5e04fcd43ce3ae1076e8a7a642", + "tarball": "http://registry.npmjs.org/pulse/-/pulse-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "ef5a1a6a1df2d054f531f91428feca46906adaa6", + "tarball": "http://registry.npmjs.org/pulse/-/pulse-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "c18a62e09916c243b07bc8e6dfb60c16a338b3fe", + "tarball": "http://registry.npmjs.org/pulse/-/pulse-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/pulse/" + }, + "pulverizr": { + "name": "pulverizr", + "description": "Smash your images down to size.", + "dist-tags": { + "latest": "0.6.0" + }, + "maintainers": [ + { + "name": "bentruyman", + "email": "bentruyman@gmail.com" + } + ], + "author": { + "name": "Ben Truyman", + "email": "bentruyman@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/bentruyman/pulverizr.git" + }, + "time": { + "modified": "2011-08-17T19:08:27.461Z", + "created": "2011-04-25T14:58:53.028Z", + "0.0.1": "2011-04-25T14:58:53.028Z", + "0.5.0": "2011-04-25T14:58:53.028Z", + "0.5.1": "2011-04-25T14:58:53.028Z", + "0.5.3": "2011-04-25T14:58:53.028Z", + "0.5.4": "2011-07-22T03:42:19.929Z", + "0.6.0": "2011-08-17T19:08:27.461Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/pulverizr/0.0.1", + "0.5.0": "http://registry.npmjs.org/pulverizr/0.5.0", + "0.5.1": "http://registry.npmjs.org/pulverizr/0.5.1", + "0.5.3": "http://registry.npmjs.org/pulverizr/0.5.3", + "0.5.4": "http://registry.npmjs.org/pulverizr/0.5.4", + "0.6.0": "http://registry.npmjs.org/pulverizr/0.6.0" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/pulverizr/-/pulverizr-0.0.1.tgz" + }, + "0.5.0": { + "tarball": "http://packages:5984/pulverizr/-/pulverizr-0.5.0.tgz" + }, + "0.5.1": { + "tarball": "http://packages:5984/pulverizr/-/pulverizr-0.5.1.tgz" + }, + "0.5.3": { + "shasum": "68f857f82fe1fb971d4324e9238ab3f435e1bdd9", + "tarball": "http://registry.npmjs.org/pulverizr/-/pulverizr-0.5.3.tgz" + }, + "0.5.4": { + "shasum": "f1b7fcbcb0993a0b86895ffc65e593a81d7908f3", + "tarball": "http://registry.npmjs.org/pulverizr/-/pulverizr-0.5.4.tgz" + }, + "0.6.0": { + "shasum": "4113673b2fd88984cb9012f68a9f7b95bb6f5e1f", + "tarball": "http://registry.npmjs.org/pulverizr/-/pulverizr-0.6.0.tgz" + } + }, + "keywords": [ + "image", + "compressor", + "compression" + ], + "url": "http://registry.npmjs.org/pulverizr/" + }, + "pulverizr-bal": { + "name": "pulverizr-bal", + "description": "Smash your images down to size.", + "dist-tags": { + "latest": "0.6.3" + }, + "maintainers": [ + { + "name": "balupton", + "email": "b@lupton.cc" + } + ], + "time": { + "modified": "2011-09-27T09:28:28.080Z", + "created": "2011-04-02T23:33:27.390Z", + "0.5.2": "2011-04-02T23:33:28.609Z", + "0.5.4": "2011-07-21T05:07:24.487Z", + "0.6.1": "2011-09-27T09:22:32.288Z", + "0.6.2": "2011-09-27T09:24:34.263Z", + "0.6.3": "2011-09-27T09:28:28.080Z" + }, + "author": { + "name": "Ben Truyman", + "email": "bentruyman@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/bentruyman/pulverizr.git" + }, + "versions": { + "0.5.2": "http://registry.npmjs.org/pulverizr-bal/0.5.2", + "0.5.4": "http://registry.npmjs.org/pulverizr-bal/0.5.4", + "0.6.1": "http://registry.npmjs.org/pulverizr-bal/0.6.1", + "0.6.2": "http://registry.npmjs.org/pulverizr-bal/0.6.2", + "0.6.3": "http://registry.npmjs.org/pulverizr-bal/0.6.3" + }, + "dist": { + "0.5.2": { + "shasum": "09a25328a2cf5ab02d9b226f69084b0e568fcaf5", + "tarball": "http://registry.npmjs.org/pulverizr-bal/-/pulverizr-bal-0.5.2.tgz" + }, + "0.5.4": { + "shasum": "9ea9b00c7d5c13b3ff58ca47ac5e83d62dc2ad99", + "tarball": "http://registry.npmjs.org/pulverizr-bal/-/pulverizr-bal-0.5.4.tgz" + }, + "0.6.1": { + "shasum": "e1fe96e33a3e76f1b82b9ddc702c9945a499dcd5", + "tarball": "http://registry.npmjs.org/pulverizr-bal/-/pulverizr-bal-0.6.1.tgz" + }, + "0.6.2": { + "shasum": "9f6f5e0c2a38d9e4efedf65776be38a25b1c33dc", + "tarball": "http://registry.npmjs.org/pulverizr-bal/-/pulverizr-bal-0.6.2.tgz" + }, + "0.6.3": { + "shasum": "f574c31fe5577df1d5f42d968b88e2655aea3682", + "tarball": "http://registry.npmjs.org/pulverizr-bal/-/pulverizr-bal-0.6.3.tgz" + } + }, + "keywords": [ + "image", + "compressor", + "compression" + ], + "url": "http://registry.npmjs.org/pulverizr-bal/" + }, + "punycode": { + "name": "punycode", + "description": "A robust Punycode converter that fully complies to RFC 3492 and RFC 5891, and works on nearly all JavaScript platforms.", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "wizard", + "email": "wizard@roborooter.com" + }, + { + "name": "mathias", + "email": "mathias@qiwi.be" + } + ], + "time": { + "modified": "2011-11-28T20:47:36.225Z", + "created": "2011-09-07T03:53:54.173Z", + "0.0.1": "2011-09-07T03:53:54.402Z", + "0.0.2": "2011-10-26T22:21:42.683Z", + "0.1.0": "2011-11-13T17:01:18.347Z", + "0.1.1": "2011-11-13T17:01:43.406Z", + "0.0.1337": "2011-11-13T16:58:36.944Z", + "0.1.2": "2011-11-14T13:15:15.136Z", + "0.2.0": "2011-11-17T20:46:35.728Z", + "0.2.1": "2011-11-28T20:47:36.225Z" + }, + "author": { + "name": "Mathias Bynens", + "email": "mathias@qiwi.be", + "url": "http://mathiasbynens.be/" + }, + "repository": { + "type": "git", + "url": "git://github.com/bestiejs/punycode.js.git" + }, + "users": { + "wizard": true + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/punycode/0.0.1", + "0.0.2": "http://registry.npmjs.org/punycode/0.0.2", + "0.0.1337": "http://registry.npmjs.org/punycode/0.0.1337", + "0.1.0": "http://registry.npmjs.org/punycode/0.1.0", + "0.1.1": "http://registry.npmjs.org/punycode/0.1.1", + "0.1.2": "http://registry.npmjs.org/punycode/0.1.2", + "0.2.0": "http://registry.npmjs.org/punycode/0.2.0", + "0.2.1": "http://registry.npmjs.org/punycode/0.2.1" + }, + "dist": { + "0.0.1": { + "shasum": "ae0f52d48d5efcde4a8e02fbdfdc9d679bec0d01", + "tarball": "http://registry.npmjs.org/punycode/-/punycode-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "a16bd1e46e5b59276e2e21b6f15086c484f3a6c7", + "tarball": "http://registry.npmjs.org/punycode/-/punycode-0.0.2.tgz" + }, + "0.0.1337": { + "shasum": "73a5fcc5e6c89681a9cd9800bfe75cb245fcc15d", + "tarball": "http://registry.npmjs.org/punycode/-/punycode-0.0.1337.tgz" + }, + "0.1.0": { + "shasum": "8f7655c949a9d0adb0e0b61039f8c9d9ac3e12ac", + "tarball": "http://registry.npmjs.org/punycode/-/punycode-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "35be18fe2e00e034c6815ad763534959595ae5e7", + "tarball": "http://registry.npmjs.org/punycode/-/punycode-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "bce2172b2307c51d58b95bf02e9b033e8a12982f", + "tarball": "http://registry.npmjs.org/punycode/-/punycode-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "e7cc94740eb902bc9f791a8a598078a481ca677a", + "tarball": "http://registry.npmjs.org/punycode/-/punycode-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "c52e2d332170d0fb45f853f3b4e718b00245e167", + "tarball": "http://registry.npmjs.org/punycode/-/punycode-0.2.1.tgz" + } + }, + "keywords": [ + "punycode", + "unicode", + "idn", + "url", + "domain" + ], + "url": "http://registry.npmjs.org/punycode/" + }, + "puppy": { + "name": "puppy", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "bigeasy", + "email": "alan@prettyrobots.com" + } + ], + "time": { + "modified": "2011-01-29T19:54:10.295Z", + "created": "2011-01-29T19:54:10.147Z", + "0.0.1": "2011-01-29T19:54:10.295Z" + }, + "author": { + "name": "Alan Gutierrez" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/puppy/0.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/puppy/-/puppy@0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/puppy/" + }, + "pure": { + "name": "pure", + "description": "PURE Unobtrusive Rendering Engine", + "dist-tags": { + "latest": "2.67.0" + }, + "maintainers": [ + { + "name": "mic", + "email": "mic@beebole.com" + } + ], + "time": { + "modified": "2011-03-16T00:32:12.325Z", + "created": "2011-03-03T14:14:21.304Z", + "2.65.0": "2011-03-03T14:14:21.627Z", + "2.66.0": "2011-03-04T08:41:21.259Z", + "2.67.0": "2011-03-16T00:32:12.325Z" + }, + "author": { + "name": "Mic Cvilic", + "email": "mic@beebole.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/pure/pure.git" + }, + "versions": { + "2.65.0": "http://registry.npmjs.org/pure/2.65.0", + "2.66.0": "http://registry.npmjs.org/pure/2.66.0", + "2.67.0": "http://registry.npmjs.org/pure/2.67.0" + }, + "dist": { + "2.65.0": { + "tarball": "http://registry.npmjs.org/pure/-/pure-2.65.0.tgz" + }, + "2.66.0": { + "tarball": "http://registry.npmjs.org/pure/-/pure-2.66.0.tgz" + }, + "2.67.0": { + "tarball": "http://registry.npmjs.org/pure/-/pure-2.67.0.tgz" + } + }, + "keywords": [ + "unobtrusive", + "templating", + "engine", + "think different" + ], + "url": "http://registry.npmjs.org/pure/" + }, + "push-it": { + "name": "push-it", + "description": "Pub/Sub for the browser", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "aaronblohowiak", + "email": "aaron.blohowiak@gmail.com" + } + ], + "time": { + "modified": "2011-09-26T15:30:25.996Z", + "created": "2010-12-19T09:17:23.350Z", + "0.0.0r2": "2010-12-19T09:17:24.541Z", + "0.0.0r3": "2011-01-01T07:30:16.653Z", + "0.0.1": "2011-01-04T06:47:19.946Z", + "0.0.1pre0": "2011-01-06T11:14:36.096Z", + "0.0.1pre1": "2011-01-23T06:36:37.866Z", + "0.0.1pre2": "2011-01-26T18:25:09.788Z", + "0.0.1pre3": "2011-01-30T21:52:49.328Z", + "0.0.1pre6": "2011-04-27T08:03:48.097Z", + "0.0.1pre7": "2011-05-15T17:53:27.241Z", + "0.0.1pre8": "2011-05-15T17:56:53.452Z", + "0.0.1pre10": "2011-05-29T23:03:27.204Z", + "0.0.2": "2011-05-30T16:58:50.549Z", + "0.0.3": "2011-08-27T03:43:06.484Z", + "0.1.0": "2011-09-16T08:41:47.582Z", + "0.1.1": "2011-09-16T08:45:32.589Z", + "0.1.2": "2011-09-16T08:59:59.575Z", + "0.1.3": "2011-09-16T09:25:45.332Z", + "0.1.4": "2011-09-26T15:30:25.996Z" + }, + "author": { + "name": "Aaron Blohowiak", + "email": "aaron.blohowiak@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/aaronblohowiak/Push-It.git" + }, + "versions": { + "0.0.0r2": "http://registry.npmjs.org/push-it/0.0.0r2", + "0.0.0r3": "http://registry.npmjs.org/push-it/0.0.0r3", + "0.0.1": "http://registry.npmjs.org/push-it/0.0.1", + "0.0.1pre0": "http://registry.npmjs.org/push-it/0.0.1pre0", + "0.0.1pre1": "http://registry.npmjs.org/push-it/0.0.1pre1", + "0.0.1pre2": "http://registry.npmjs.org/push-it/0.0.1pre2", + "0.0.1pre3": "http://registry.npmjs.org/push-it/0.0.1pre3", + "0.0.1pre6": "http://registry.npmjs.org/push-it/0.0.1pre6", + "0.0.1pre7": "http://registry.npmjs.org/push-it/0.0.1pre7", + "0.0.1pre8": "http://registry.npmjs.org/push-it/0.0.1pre8", + "0.0.1pre10": "http://registry.npmjs.org/push-it/0.0.1pre10", + "0.0.2": "http://registry.npmjs.org/push-it/0.0.2", + "0.0.3": "http://registry.npmjs.org/push-it/0.0.3", + "0.1.0": "http://registry.npmjs.org/push-it/0.1.0", + "0.1.1": "http://registry.npmjs.org/push-it/0.1.1", + "0.1.2": "http://registry.npmjs.org/push-it/0.1.2", + "0.1.3": "http://registry.npmjs.org/push-it/0.1.3", + "0.1.4": "http://registry.npmjs.org/push-it/0.1.4" + }, + "dist": { + "0.0.0r2": { + "tarball": "http://registry.npmjs.org/push-it/-/push-it-0.0.0r2.tgz" + }, + "0.0.0r3": { + "shasum": "47c5b170ea7a8f10ab2c139f90cd35cadec8f482", + "tarball": "http://registry.npmjs.org/push-it/-/push-it-0.0.0r3.tgz" + }, + "0.0.1": { + "shasum": "4b235ec0ff48bc46e0ee75a411a3c0a8d9e93383", + "tarball": "http://registry.npmjs.org/push-it/-/push-it-0.0.1.tgz" + }, + "0.0.1pre0": { + "shasum": "6d857a57d25908622688b134a5298de9e42cc0f9", + "tarball": "http://registry.npmjs.org/push-it/-/push-it-0.0.1pre0.tgz" + }, + "0.0.1pre1": { + "shasum": "cc3fb9ae6f1edc61762c3b6a8e7a5411017235f0", + "tarball": "http://registry.npmjs.org/push-it/-/push-it-0.0.1pre1.tgz" + }, + "0.0.1pre2": { + "shasum": "8d6c938ca71767dd359245f21ac548e1cd4b9890", + "tarball": "http://registry.npmjs.org/push-it/-/push-it-0.0.1pre2.tgz" + }, + "0.0.1pre3": { + "shasum": "272052f6919bce36f7e8108679a2e9466f162d5e", + "tarball": "http://registry.npmjs.org/push-it/-/push-it-0.0.1pre3.tgz" + }, + "0.0.1pre6": { + "shasum": "e58f8aa3c066c38ac058dc95b60b6f1fb5fe9444", + "tarball": "http://registry.npmjs.org/push-it/-/push-it-0.0.1pre6.tgz" + }, + "0.0.1pre7": { + "shasum": "f441f5d0575305099107ce3f906b053bc50fc5ad", + "tarball": "http://registry.npmjs.org/push-it/-/push-it-0.0.1pre7.tgz" + }, + "0.0.1pre8": { + "shasum": "a3a6b99b098815755b8749e3e9e54ae58d5773bb", + "tarball": "http://registry.npmjs.org/push-it/-/push-it-0.0.1pre8.tgz" + }, + "0.0.1pre10": { + "shasum": "968a39483f7da0e89a28fe2db395482224aa137a", + "tarball": "http://registry.npmjs.org/push-it/-/push-it-0.0.1pre10.tgz" + }, + "0.0.2": { + "shasum": "58974513fe4c13b371dcdc79ce999de310e73cc6", + "tarball": "http://registry.npmjs.org/push-it/-/push-it-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "c9ccb15353691694cd7457faafc057672f83d49f", + "tarball": "http://registry.npmjs.org/push-it/-/push-it-0.0.3.tgz" + }, + "0.1.0": { + "shasum": "ca4d8729d9d8ad15c8f80cdca7e2a549b3a018e6", + "tarball": "http://registry.npmjs.org/push-it/-/push-it-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "187103b79e8f7a33a8dd2e0eda2076cc2c99befc", + "tarball": "http://registry.npmjs.org/push-it/-/push-it-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "2b19073f961bb398d8bc7173072eeabd74f260b3", + "tarball": "http://registry.npmjs.org/push-it/-/push-it-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "5208fc766acf2f06e6c3fa3c8e80316cb2881bee", + "tarball": "http://registry.npmjs.org/push-it/-/push-it-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "411cc20ffd09452c308582176dc31ff204db88c0", + "tarball": "http://registry.npmjs.org/push-it/-/push-it-0.1.4.tgz" + } + }, + "keywords": [ + "push", + "pub/sub", + "sockjs" + ], + "url": "http://registry.npmjs.org/push-it/" + }, + "pusher": { + "name": "pusher", + "description": "A simple node.js publisher lib for pusher.com", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "fabrik42", + "email": "fabrik42@gmail.com" + } + ], + "time": { + "modified": "2011-07-11T20:45:22.044Z", + "created": "2011-07-11T20:12:55.588Z", + "0.0.1": "2011-07-11T20:12:56.190Z", + "0.0.2": "2011-07-11T20:45:22.044Z" + }, + "author": { + "name": "Christian Bäuerlein", + "email": "fabrik42@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/fabrik42/pusher.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/pusher/0.0.1", + "0.0.2": "http://registry.npmjs.org/pusher/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "aed1ab0085dc8a439671a2c995dfb72acb0c3949", + "tarball": "http://registry.npmjs.org/pusher/-/pusher-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "4a08e4c94e0b696825db9a111c832352b016308b", + "tarball": "http://registry.npmjs.org/pusher/-/pusher-0.0.2.tgz" + } + }, + "keywords": [ + "pusher", + "websockets" + ], + "url": "http://registry.npmjs.org/pusher/" + }, + "pusher-pipe": { + "name": "pusher-pipe", + "description": "The client for Pusher.com new realtime API, Pipe.", + "dist-tags": { + "latest": "0.0.10" + }, + "maintainers": [ + { + "name": "miksago", + "email": "micheil@brandedcode.com" + } + ], + "time": { + "modified": "2011-11-24T17:38:54.802Z", + "created": "2011-08-26T13:56:20.554Z", + "0.0.2": "2011-08-26T13:56:21.703Z", + "0.0.3": "2011-08-26T14:44:35.938Z", + "0.0.4": "2011-08-26T16:26:55.007Z", + "0.0.5": "2011-08-27T03:32:20.891Z", + "0.0.6": "2011-08-27T08:26:59.148Z", + "0.0.7": "2011-10-25T14:04:56.977Z", + "0.0.8": "2011-10-27T17:18:19.161Z", + "0.0.9": "2011-11-24T15:42:20.361Z", + "0.0.10": "2011-11-24T17:38:54.802Z" + }, + "author": { + "name": "Pusherinos", + "email": "support@pusher.com", + "url": "http://pusher.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/pusher/node-pusher-pipe.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/pusher-pipe/0.0.2", + "0.0.3": "http://registry.npmjs.org/pusher-pipe/0.0.3", + "0.0.4": "http://registry.npmjs.org/pusher-pipe/0.0.4", + "0.0.5": "http://registry.npmjs.org/pusher-pipe/0.0.5", + "0.0.6": "http://registry.npmjs.org/pusher-pipe/0.0.6", + "0.0.7": "http://registry.npmjs.org/pusher-pipe/0.0.7", + "0.0.8": "http://registry.npmjs.org/pusher-pipe/0.0.8", + "0.0.9": "http://registry.npmjs.org/pusher-pipe/0.0.9", + "0.0.10": "http://registry.npmjs.org/pusher-pipe/0.0.10" + }, + "dist": { + "0.0.2": { + "shasum": "d1ee4712bd459eabea1dc0cb3e03fcca439147c2", + "tarball": "http://registry.npmjs.org/pusher-pipe/-/pusher-pipe-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "0c92e1a0a559dbf170873d42f9571f7bd0eb53e4", + "tarball": "http://registry.npmjs.org/pusher-pipe/-/pusher-pipe-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "37f166c851718a509cc697b48cbbdd735d857f54", + "tarball": "http://registry.npmjs.org/pusher-pipe/-/pusher-pipe-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "439ac3261b3b05b82b8c16c5fb26f46e8bf7d384", + "tarball": "http://registry.npmjs.org/pusher-pipe/-/pusher-pipe-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "fe84eda5bbf955e41c0cc6a4d16b5decdd204bf2", + "tarball": "http://registry.npmjs.org/pusher-pipe/-/pusher-pipe-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "ef6d26322435c9a25c2bbd03b9c08a0c39e637a4", + "tarball": "http://registry.npmjs.org/pusher-pipe/-/pusher-pipe-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "d9a7669c49c213912989324fd22ba26647377872", + "tarball": "http://registry.npmjs.org/pusher-pipe/-/pusher-pipe-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "5d717907b570e324a36b1248fbf4ad75c2dbbfd6", + "tarball": "http://registry.npmjs.org/pusher-pipe/-/pusher-pipe-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "a6966dbc3caae9aab5c580219980f0b2edd24a40", + "tarball": "http://registry.npmjs.org/pusher-pipe/-/pusher-pipe-0.0.10.tgz" + } + }, + "keywords": [ + "websocket", + "socket", + "realtime", + "html5", + "pusher", + "pusherapp", + "scalable", + "pusher-pipe" + ], + "url": "http://registry.npmjs.org/pusher-pipe/" + }, + "pushinator": { + "name": "pushinator", + "description": "A simple server to push messages in realtime from your application to http clients, based on socket.io", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "saz", + "email": "me@saz.sh" + } + ], + "time": { + "modified": "2011-11-08T15:05:20.998Z", + "created": "2011-08-09T16:50:39.954Z", + "0.9.7": "2011-08-09T16:50:45.788Z", + "0.9.8": "2011-08-09T17:52:25.144Z", + "0.9.9": "2011-08-10T08:43:46.483Z", + "0.9.10": "2011-08-10T09:10:20.455Z", + "0.9.11": "2011-08-15T16:13:08.067Z", + "1.0.0": "2011-11-08T15:05:20.998Z" + }, + "author": { + "name": "Gabriel Duman", + "email": "gabriel.duman@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/KWICKCommunity/pushinator.git" + }, + "versions": { + "0.9.7": "http://registry.npmjs.org/pushinator/0.9.7", + "0.9.8": "http://registry.npmjs.org/pushinator/0.9.8", + "0.9.9": "http://registry.npmjs.org/pushinator/0.9.9", + "0.9.10": "http://registry.npmjs.org/pushinator/0.9.10", + "0.9.11": "http://registry.npmjs.org/pushinator/0.9.11", + "1.0.0": "http://registry.npmjs.org/pushinator/1.0.0" + }, + "dist": { + "0.9.7": { + "shasum": "a9a0aaeb90ff859e26929d7ac9fca550981c87bf", + "tarball": "http://registry.npmjs.org/pushinator/-/pushinator-0.9.7.tgz" + }, + "0.9.8": { + "shasum": "4879f95837359271bd66ecfb2da6d1ac53a3aba1", + "tarball": "http://registry.npmjs.org/pushinator/-/pushinator-0.9.8.tgz" + }, + "0.9.9": { + "shasum": "afd6ad17feafaa51d3127d097d7f58de38d6f702", + "tarball": "http://registry.npmjs.org/pushinator/-/pushinator-0.9.9.tgz" + }, + "0.9.10": { + "shasum": "2b7f40c77c93144576b0df8cd109bfaed317be03", + "tarball": "http://registry.npmjs.org/pushinator/-/pushinator-0.9.10.tgz" + }, + "0.9.11": { + "shasum": "3a300d7d5c4a30c9d47bfc6d177da1d65d7b304a", + "tarball": "http://registry.npmjs.org/pushinator/-/pushinator-0.9.11.tgz" + }, + "1.0.0": { + "shasum": "b00e1cf40e8e631008dd859a6bd75c4006c942d1", + "tarball": "http://registry.npmjs.org/pushinator/-/pushinator-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/pushinator/" + }, + "pushover": { + "name": "pushover", + "description": "git push deploy server over http", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": null, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-11-24T04:14:25.532Z", + "created": "2011-11-17T16:32:24.020Z", + "0.0.0": "2011-11-17T16:32:25.635Z", + "0.1.0": "2011-11-24T04:14:25.532Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/pushover.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/pushover/0.0.0", + "0.1.0": "http://registry.npmjs.org/pushover/0.1.0" + }, + "dist": { + "0.0.0": { + "shasum": "5bc4fb2b046388b9c1277f9c1f54eb1bb415f4b2", + "tarball": "http://registry.npmjs.org/pushover/-/pushover-0.0.0.tgz" + }, + "0.1.0": { + "shasum": "fdadbf8a4bc9c350e407f896e06f28676d6095c8", + "tarball": "http://registry.npmjs.org/pushover/-/pushover-0.1.0.tgz" + } + }, + "keywords": [ + "git", + "push", + "deploy", + "http", + "web", + "repository" + ], + "url": "http://registry.npmjs.org/pushover/" + }, + "put": { + "name": "put", + "description": "Pack multibyte binary values into buffers", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "repository": { + "type": "git", + "url": "git://github.com/substack/node-put.git" + }, + "time": { + "modified": "2011-11-15T11:16:42.522Z", + "created": "2011-02-25T02:55:14.180Z", + "0.0.1": "2011-02-25T02:55:14.180Z", + "0.0.3": "2011-02-25T02:55:14.180Z", + "0.0.4": "2011-04-21T00:23:47.350Z", + "0.0.5": "2011-05-11T06:43:03.670Z", + "0.0.6": "2011-11-15T11:16:42.522Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/put/0.0.1", + "0.0.3": "http://registry.npmjs.org/put/0.0.3", + "0.0.4": "http://registry.npmjs.org/put/0.0.4", + "0.0.5": "http://registry.npmjs.org/put/0.0.5", + "0.0.6": "http://registry.npmjs.org/put/0.0.6" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/put/-/put-0.0.1.tgz" + }, + "0.0.3": { + "shasum": "92df938f0473b8b4812c23604c0a4bde7ade2a9f", + "tarball": "http://registry.npmjs.org/put/-/put-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "f6737e110cc8a61b0f075becce3287a04c932375", + "tarball": "http://registry.npmjs.org/put/-/put-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "cd43d8ad6a3c7ba3df1d594686b654b05d296b1a", + "tarball": "http://registry.npmjs.org/put/-/put-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "30f5f60bd6e4389bd329e16a25386cbb2e4a00a3", + "tarball": "http://registry.npmjs.org/put/-/put-0.0.6.tgz" + } + }, + "keywords": [ + "put", + "pack", + "binary" + ], + "url": "http://registry.npmjs.org/put/" + }, + "put-selector": { + "name": "put-selector", + "author": "Kris Zyp", + "description": "A high-performance, lightweight function for creating and manipulating DOM elements with succinct, elegant, familiar CSS selector-based syntax", + "licenses": [ + { + "type": "AFLv2.1", + "url": "http://trac.dojotoolkit.org/browser/dojo/trunk/LICENSE#L43" + }, + { + "type": "BSD", + "url": "http://trac.dojotoolkit.org/browser/dojo/trunk/LICENSE#L13" + } + ], + "maintainers": [ + { + "name": "Kris Zyp", + "email": "kriszyp@gmail.com" + } + ], + "directories": { + "lib": "." + }, + "main": "./put", + "icon": "http://packages.dojofoundation.org/images/xstyle.jpg", + "url": "http://packages.dojofoundation.org/put-selector", + "location": "http://packages.dojofoundation.org/put-selector", + "time": { + "modified": "2011-08-23T13:30:13.703Z", + "created": "2011-08-23T13:30:13.703Z" + }, + "versions": {}, + "dist": {} + }, + "putio": { + "name": "putio", + "description": "A client for communication with the put.io API within Node.js.", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "robinvdvleuten", + "email": "robinvdvleuten@gmail.com" + } + ], + "time": { + "modified": "2011-08-15T18:16:17.558Z", + "created": "2011-08-15T18:16:14.375Z", + "0.2.0": "2011-08-15T18:16:17.558Z" + }, + "author": { + "name": "Robin van der Vleuten" + }, + "repository": { + "type": "git", + "url": "git://github.com/RobinvdVleuten/node-putio.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/putio/0.2.0" + }, + "dist": { + "0.2.0": { + "shasum": "7142f626c45e635fdb77e993fff757269ec51c1c", + "tarball": "http://registry.npmjs.org/putio/-/putio-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/putio/" + }, + "pw": { + "name": "pw", + "description": "prompt for passwords on the command line", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-10-30T08:37:31.684Z", + "created": "2011-10-30T04:39:56.247Z", + "0.0.0": "2011-10-30T04:39:57.978Z", + "0.0.1": "2011-10-30T05:03:26.392Z", + "0.0.2": "2011-10-30T07:25:25.415Z", + "0.0.3": "2011-10-30T08:37:31.684Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-pw.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/pw/0.0.0", + "0.0.1": "http://registry.npmjs.org/pw/0.0.1", + "0.0.2": "http://registry.npmjs.org/pw/0.0.2", + "0.0.3": "http://registry.npmjs.org/pw/0.0.3" + }, + "dist": { + "0.0.0": { + "shasum": "d6521d823236c9499018150fb363e3f47d470c72", + "tarball": "http://registry.npmjs.org/pw/-/pw-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "9856578f1613166940915c4fdc976cb09fb999d0", + "tarball": "http://registry.npmjs.org/pw/-/pw-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "00fb9460e308f20c6262dddeb764271a0e76c875", + "tarball": "http://registry.npmjs.org/pw/-/pw-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "c7cacf2eb8c2bcdf5fe23df825546bdec38d198e", + "tarball": "http://registry.npmjs.org/pw/-/pw-0.0.3.tgz" + } + }, + "keywords": [ + "password", + "prompt", + "cli", + "command" + ], + "url": "http://registry.npmjs.org/pw/" + }, + "pwilang": { + "name": "pwilang", + "description": "Compiler for an alternative syntax to HTML. Best used with JinJS for template processing or just to write documents.", + "dist-tags": { + "latest": "0.3.9" + }, + "maintainers": [ + { + "name": "christophe.eymard", + "email": "christophe.eymard@ravelsoft.com" + } + ], + "time": { + "modified": "2011-11-30T18:20:36.283Z", + "created": "2011-06-12T11:36:50.413Z", + "0.1.0": "2011-06-12T11:36:51.455Z", + "0.1.2": "2011-06-13T10:13:38.306Z", + "0.1.3": "2011-07-04T09:47:31.698Z", + "0.1.4": "2011-07-22T13:55:45.035Z", + "0.1.5": "2011-07-26T12:52:46.977Z", + "0.1.6": "2011-08-15T11:14:24.106Z", + "0.2.0": "2011-08-15T12:28:57.603Z", + "0.3.0": "2011-08-16T15:27:07.186Z", + "0.3.1": "2011-08-16T15:44:42.339Z", + "0.3.2": "2011-08-18T14:50:08.446Z", + "0.3.3": "2011-08-18T16:16:51.426Z", + "0.3.4": "2011-08-26T15:28:04.779Z", + "0.3.5": "2011-08-29T11:11:06.279Z", + "0.3.6": "2011-10-24T14:11:21.658Z", + "0.3.7": "2011-10-24T18:27:27.563Z", + "0.3.8": "2011-11-15T16:32:47.222Z", + "0.3.9": "2011-11-30T18:20:36.283Z" + }, + "author": { + "name": "Christophe Eymard", + "email": "christophe.eymard@ravelsoft.com", + "url": "http://www.ravelsoft.com" + }, + "repository": { + "type": "hg", + "url": "https://pwilang.googlecode.com/hg/" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/pwilang/0.1.0", + "0.1.2": "http://registry.npmjs.org/pwilang/0.1.2", + "0.1.3": "http://registry.npmjs.org/pwilang/0.1.3", + "0.1.4": "http://registry.npmjs.org/pwilang/0.1.4", + "0.1.5": "http://registry.npmjs.org/pwilang/0.1.5", + "0.1.6": "http://registry.npmjs.org/pwilang/0.1.6", + "0.2.0": "http://registry.npmjs.org/pwilang/0.2.0", + "0.3.0": "http://registry.npmjs.org/pwilang/0.3.0", + "0.3.1": "http://registry.npmjs.org/pwilang/0.3.1", + "0.3.2": "http://registry.npmjs.org/pwilang/0.3.2", + "0.3.3": "http://registry.npmjs.org/pwilang/0.3.3", + "0.3.4": "http://registry.npmjs.org/pwilang/0.3.4", + "0.3.5": "http://registry.npmjs.org/pwilang/0.3.5", + "0.3.6": "http://registry.npmjs.org/pwilang/0.3.6", + "0.3.7": "http://registry.npmjs.org/pwilang/0.3.7", + "0.3.8": "http://registry.npmjs.org/pwilang/0.3.8", + "0.3.9": "http://registry.npmjs.org/pwilang/0.3.9" + }, + "dist": { + "0.1.0": { + "shasum": "4989d90c7983feb6be812aee25fc947a69add2d2", + "tarball": "http://registry.npmjs.org/pwilang/-/pwilang-0.1.0.tgz" + }, + "0.1.2": { + "shasum": "5136026351590b4e6d357d379ade979ccf065315", + "tarball": "http://registry.npmjs.org/pwilang/-/pwilang-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "ccb7d0673308e02c0517c6dc7f372cec43c3b786", + "tarball": "http://registry.npmjs.org/pwilang/-/pwilang-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "64e65d5bcfb8fcd6299720a3a301aebde8532878", + "tarball": "http://registry.npmjs.org/pwilang/-/pwilang-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "3d53be496921b66c564eae05e17a330ceb19029a", + "tarball": "http://registry.npmjs.org/pwilang/-/pwilang-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "bde4978174854e10e17721ef340e39177b781b55", + "tarball": "http://registry.npmjs.org/pwilang/-/pwilang-0.1.6.tgz" + }, + "0.2.0": { + "shasum": "c5f5bc824682ccd1b0475bae680f7bce8980c37d", + "tarball": "http://registry.npmjs.org/pwilang/-/pwilang-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "f5b887224193b812a528fee1b89320e8c7597706", + "tarball": "http://registry.npmjs.org/pwilang/-/pwilang-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "33951e5c1ea6fa90f8526ef87b1c2b4ed76bd762", + "tarball": "http://registry.npmjs.org/pwilang/-/pwilang-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "9fc755f54598977052b1041ad4735935b3db839c", + "tarball": "http://registry.npmjs.org/pwilang/-/pwilang-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "07a66752fb69e4b1fa064bc3cdc6a9baa0cdddba", + "tarball": "http://registry.npmjs.org/pwilang/-/pwilang-0.3.3.tgz" + }, + "0.3.4": { + "shasum": "b4fd22dd569bd8d4ef4662faf927889971e7403a", + "tarball": "http://registry.npmjs.org/pwilang/-/pwilang-0.3.4.tgz" + }, + "0.3.5": { + "shasum": "dab3a51abbb121ef7d6d0decdae33c3bd2bc3214", + "tarball": "http://registry.npmjs.org/pwilang/-/pwilang-0.3.5.tgz" + }, + "0.3.6": { + "shasum": "aa0af57b1230f268933b102b663d2bfe64a0df21", + "tarball": "http://registry.npmjs.org/pwilang/-/pwilang-0.3.6.tgz" + }, + "0.3.7": { + "shasum": "b5e4d3c4fbbd17236626d8ace3369b0a87bb37d9", + "tarball": "http://registry.npmjs.org/pwilang/-/pwilang-0.3.7.tgz" + }, + "0.3.8": { + "shasum": "5b27b794ef7bfc91d4c565ca760f13185ec5686d", + "tarball": "http://registry.npmjs.org/pwilang/-/pwilang-0.3.8.tgz" + }, + "0.3.9": { + "shasum": "0e1a50f01e621e4b12d86d7ddf24f272eea0831b", + "tarball": "http://registry.npmjs.org/pwilang/-/pwilang-0.3.9.tgz" + } + }, + "keywords": [ + "language", + "compiler", + "pwilang", + "html", + "xml", + "jinjs" + ], + "url": "http://registry.npmjs.org/pwilang/" + }, + "py": { + "name": "py", + "description": "python interpreter in javascript", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-08-10T10:54:47.492Z", + "created": "2011-08-10T10:54:45.788Z", + "0.0.0": "2011-08-10T10:54:47.492Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/python.js.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/py/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "e6de47ed2bad040c5e83d398856681539e0a97bb", + "tarball": "http://registry.npmjs.org/py/-/py-0.0.0.tgz" + } + }, + "keywords": [ + "python", + "parser", + "lexer", + "repl", + "calculator" + ], + "url": "http://registry.npmjs.org/py/" + }, + "pygments": { + "name": "pygments", + "description": "A pygments wrapper for nodejs", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "pksunkara", + "email": "pavan.sss1991@gmail.com" + } + ], + "time": { + "modified": "2011-08-27T12:31:20.048Z", + "created": "2011-08-27T12:31:16.456Z", + "0.0.1": "2011-08-27T12:31:20.048Z" + }, + "author": { + "name": "Pavan Kumar Sunkara", + "email": "pavan.sss1991@gmail.com", + "url": "http://pkumar.github.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:pkumar/pygments.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/pygments/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "6a121b282d5ae889ed243330b706c5c1653aa7f9", + "tarball": "http://registry.npmjs.org/pygments/-/pygments-0.0.1.tgz" + } + }, + "keywords": [ + "pygments", + "wrapper", + "syntax", + "highlighting" + ], + "url": "http://registry.npmjs.org/pygments/" + }, + "pypi": { + "name": "pypi", + "description": "Client for XMLRPC Python Package Index", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "lukaszb", + "email": "lukaszbalcerzak@gmail.com" + } + ], + "time": { + "modified": "2011-11-09T19:59:59.507Z", + "created": "2011-10-31T10:24:12.530Z", + "0.1.0": "2011-10-31T10:24:14.236Z", + "0.1.1": "2011-11-09T19:59:59.507Z" + }, + "author": { + "name": "Lukasz Balcerzak" + }, + "repository": { + "type": "git", + "url": "git://github.com/lukaszb/pypi.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/pypi/0.1.0", + "0.1.1": "http://registry.npmjs.org/pypi/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "5ae9a904d3f202daf3991aea73579355a452084f", + "tarball": "http://registry.npmjs.org/pypi/-/pypi-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "486ca692b1385264e9443ef6308e994097b75dcf", + "tarball": "http://registry.npmjs.org/pypi/-/pypi-0.1.1.tgz" + } + }, + "keywords": [ + "python pypi xmlrpc client" + ], + "url": "http://registry.npmjs.org/pypi/" + }, + "python": { + "name": "python", + "description": "Interact with a long-running python child process", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "drderidder", + "email": "drderidder@gmail.com" + } + ], + "time": { + "modified": "2011-07-20T04:27:00.039Z", + "created": "2011-07-11T01:59:04.362Z", + "0.0.0": "2011-07-11T01:59:05.137Z", + "0.0.1": "2011-07-17T05:23:33.166Z", + "0.0.2": "2011-07-20T03:42:50.379Z" + }, + "author": { + "name": "Darren DeRidder", + "email": "drderidder@gmail.com", + "url": "https://github.com/darrenderidder" + }, + "repository": { + "type": "git", + "url": "git://github.com/darrenderidder/node-python.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/python/0.0.0", + "0.0.1": "http://registry.npmjs.org/python/0.0.1", + "0.0.2": "http://registry.npmjs.org/python/0.0.2" + }, + "dist": { + "0.0.0": { + "shasum": "439f50d0bb9bd01c4a8b27f39efe40096617a2a7", + "tarball": "http://registry.npmjs.org/python/-/python-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "0c41fe57c5d440f8fb6abddfd6cfd5fea631ebe0", + "tarball": "http://registry.npmjs.org/python/-/python-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "4db798dea00af67eeb07cc763405aa51a25ee357", + "tarball": "http://registry.npmjs.org/python/-/python-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/python/" + }, + "pyyaml": { + "name": "pyyaml", + "description": "Robust YAML parser and dumper using PyYAML bindings", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "jie", + "email": "contact@jie.fr" + } + ], + "time": { + "modified": "2011-10-17T19:59:38.692Z", + "created": "2011-10-17T19:59:37.153Z", + "0.0.1": "2011-10-17T19:59:38.692Z" + }, + "author": { + "name": "Jie Meng-Gérard", + "email": "contact@jie.fr" + }, + "repository": { + "type": "git", + "url": "git://github.com/jiem/node-pyyaml.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/pyyaml/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "d174fc90d5570026f0a4fe48e5a364f9d34a0809", + "tarball": "http://registry.npmjs.org/pyyaml/-/pyyaml-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/pyyaml/" + }, + "q": { + "name": "q", + "description": "A library for promises (CommonJS/Promises/A,B,D)", + "dist-tags": { + "latest": "0.7.2" + }, + "maintainers": [ + { + "name": "kriskowal", + "email": "kris.kowal@cixar.com" + } + ], + "author": { + "name": "Kris Kowal", + "email": "kris@cixar.com", + "url": "http://github.com/kriskowal/" + }, + "repository": { + "type": "git", + "url": "git://github.com/kriskowal/q.git" + }, + "time": { + "modified": "2011-11-15T15:12:22.719Z", + "created": "2010-12-22T23:13:26.773Z", + "0.0.0": "2010-12-22T23:13:26.773Z", + "0.0.1": "2010-12-22T23:13:26.773Z", + "0.0.2": "2010-12-22T23:13:26.773Z", + "0.0.3": "2010-12-22T23:13:26.773Z", + "0.1.0": "2010-12-22T23:13:26.773Z", + "0.1.1": "2010-12-22T23:13:26.773Z", + "0.1.2": "2010-12-22T23:13:26.773Z", + "0.1.3": "2010-12-22T23:13:26.773Z", + "0.1.4": "2010-12-22T23:13:26.773Z", + "0.1.5": "2010-12-22T23:13:26.773Z", + "0.1.6": "2010-12-22T23:13:26.773Z", + "0.1.7": "2010-12-22T23:13:26.773Z", + "0.1.8": "2010-12-22T23:13:26.773Z", + "0.1.9": "2010-12-22T23:13:26.773Z", + "0.2.0-rc1": "2010-12-22T23:13:26.773Z", + "0.2.0": "2010-12-23T17:32:09.571Z", + "0.2.1": "2011-01-05T12:34:52.890Z", + "0.2.2": "2011-01-05T18:16:50.759Z", + "0.2.3": "2011-01-05T18:30:12.766Z", + "0.2.4": "2011-01-07T08:51:34.389Z", + "0.2.5": "2011-01-10T21:07:47.550Z", + "0.2.6": "2011-02-01T00:58:12.000Z", + "0.2.7": "2011-02-01T01:41:20.502Z", + "0.2.8": "2011-02-09T05:23:34.733Z", + "0.2.9": "2011-03-01T02:19:10.044Z", + "0.3.0": "2011-03-18T21:56:53.090Z", + "0.2.10": "2011-03-18T21:58:21.959Z", + "0.4.0": "2011-05-18T21:58:39.330Z", + "0.4.1": "2011-05-19T01:48:33.557Z", + "0.4.2": "2011-06-04T00:18:18.971Z", + "0.4.4": "2011-06-10T17:20:04.719Z", + "0.5.0": "2011-06-10T19:14:32.088Z", + "0.5.1": "2011-06-17T21:13:42.086Z", + "0.5.2": "2011-06-17T21:20:13.186Z", + "0.5.3": "2011-06-24T18:18:28.981Z", + "0.6.0": "2011-06-24T19:11:31.137Z", + "0.7.0": "2011-07-14T05:37:37.007Z", + "0.7.1": "2011-08-09T23:40:19.442Z", + "0.7.2": "2011-10-11T23:14:00.810Z" + }, + "users": { + "nathan": true + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/q/0.0.0", + "0.0.1": "http://registry.npmjs.org/q/0.0.1", + "0.0.2": "http://registry.npmjs.org/q/0.0.2", + "0.0.3": "http://registry.npmjs.org/q/0.0.3", + "0.1.0": "http://registry.npmjs.org/q/0.1.0", + "0.1.1": "http://registry.npmjs.org/q/0.1.1", + "0.1.2": "http://registry.npmjs.org/q/0.1.2", + "0.1.3": "http://registry.npmjs.org/q/0.1.3", + "0.1.4": "http://registry.npmjs.org/q/0.1.4", + "0.1.5": "http://registry.npmjs.org/q/0.1.5", + "0.1.6": "http://registry.npmjs.org/q/0.1.6", + "0.1.7": "http://registry.npmjs.org/q/0.1.7", + "0.1.8": "http://registry.npmjs.org/q/0.1.8", + "0.1.9": "http://registry.npmjs.org/q/0.1.9", + "0.2.0-rc1": "http://registry.npmjs.org/q/0.2.0-rc1", + "0.2.0": "http://registry.npmjs.org/q/0.2.0", + "0.2.1": "http://registry.npmjs.org/q/0.2.1", + "0.2.2": "http://registry.npmjs.org/q/0.2.2", + "0.2.3": "http://registry.npmjs.org/q/0.2.3", + "0.2.4": "http://registry.npmjs.org/q/0.2.4", + "0.2.5": "http://registry.npmjs.org/q/0.2.5", + "0.2.6": "http://registry.npmjs.org/q/0.2.6", + "0.2.7": "http://registry.npmjs.org/q/0.2.7", + "0.2.8": "http://registry.npmjs.org/q/0.2.8", + "0.2.9": "http://registry.npmjs.org/q/0.2.9", + "0.3.0": "http://registry.npmjs.org/q/0.3.0", + "0.2.10": "http://registry.npmjs.org/q/0.2.10", + "0.4.0": "http://registry.npmjs.org/q/0.4.0", + "0.4.1": "http://registry.npmjs.org/q/0.4.1", + "0.4.2": "http://registry.npmjs.org/q/0.4.2", + "0.4.4": "http://registry.npmjs.org/q/0.4.4", + "0.5.0": "http://registry.npmjs.org/q/0.5.0", + "0.5.1": "http://registry.npmjs.org/q/0.5.1", + "0.5.2": "http://registry.npmjs.org/q/0.5.2", + "0.5.3": "http://registry.npmjs.org/q/0.5.3", + "0.6.0": "http://registry.npmjs.org/q/0.6.0", + "0.7.0": "http://registry.npmjs.org/q/0.7.0", + "0.7.1": "http://registry.npmjs.org/q/0.7.1", + "0.7.2": "http://registry.npmjs.org/q/0.7.2" + }, + "dist": { + "0.0.0": { + "tarball": "http://packages:5984/q/-/q-0.0.0.tgz" + }, + "0.0.1": { + "tarball": "http://packages:5984/q/-/q-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/q/-/q-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/q/-/q-0.0.3.tgz" + }, + "0.1.0": { + "tarball": "http://packages:5984/q/-/q-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://packages:5984/q/-/q-0.1.1.tgz" + }, + "0.1.2": { + "tarball": "http://packages:5984/q/-/q-0.1.2.tgz" + }, + "0.1.3": { + "tarball": "http://packages:5984/q/-/q-0.1.3.tgz" + }, + "0.1.4": { + "tarball": "http://packages:5984/q/-/q-0.1.4.tgz" + }, + "0.1.5": { + "tarball": "http://packages:5984/q/-/q-0.1.5.tgz" + }, + "0.1.6": { + "tarball": "http://registry.npmjs.org/q/-/q-0.1.6.tgz" + }, + "0.1.7": { + "tarball": "http://registry.npmjs.org/q/-/q-0.1.7.tgz" + }, + "0.1.8": { + "tarball": "http://registry.npmjs.org/q/-/q-0.1.8.tgz" + }, + "0.1.9": { + "tarball": "http://registry.npmjs.org/q/-/q-0.1.9.tgz" + }, + "0.2.0-rc1": { + "tarball": "http://registry.npmjs.org/q/-/q-0.2.0-rc1.tgz" + }, + "0.2.0": { + "tarball": "http://registry.npmjs.org/q/-/q-0.2.0.tgz" + }, + "0.2.1": { + "tarball": "http://registry.npmjs.org/q/-/q-0.2.1.tgz" + }, + "0.2.2": { + "tarball": "http://registry.npmjs.org/q/-/q-0.2.2.tgz" + }, + "0.2.3": { + "tarball": "http://registry.npmjs.org/q/-/q-0.2.3.tgz" + }, + "0.2.4": { + "tarball": "http://registry.npmjs.org/q/-/q-0.2.4.tgz" + }, + "0.2.5": { + "tarball": "http://registry.npmjs.org/q/-/q-0.2.5.tgz" + }, + "0.2.6": { + "tarball": "http://registry.npmjs.org/q/-/q-0.2.6.tgz" + }, + "0.2.7": { + "tarball": "http://registry.npmjs.org/q/-/q-0.2.7.tgz" + }, + "0.2.8": { + "tarball": "http://registry.npmjs.org/q/-/q-0.2.8.tgz" + }, + "0.2.9": { + "shasum": "a57fd151b2ea9930637d8806c354a757573c8c46", + "tarball": "http://registry.npmjs.org/q/-/q-0.2.9.tgz" + }, + "0.3.0": { + "shasum": "9b894927796c23b14acfea0029242d878a3cd94d", + "tarball": "http://registry.npmjs.org/q/-/q-0.3.0.tgz" + }, + "0.2.10": { + "shasum": "56430a93d468eb30d1b2e0b21f5900bbc8fdeaf5", + "tarball": "http://registry.npmjs.org/q/-/q-0.2.10.tgz" + }, + "0.4.0": { + "shasum": "a7e37020277866c2a9d9ac3bd3f5cd88ba370795", + "tarball": "http://registry.npmjs.org/q/-/q-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "96ca3f308cbb0deee16cebdccb54aca881dd628a", + "tarball": "http://registry.npmjs.org/q/-/q-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "dba614980bb25ba3b5c000ed609c966a76e2aa80", + "tarball": "http://registry.npmjs.org/q/-/q-0.4.2.tgz" + }, + "0.4.4": { + "shasum": "d30eb3818b451a66c795fb0a8d7f3c383953338e", + "tarball": "http://registry.npmjs.org/q/-/q-0.4.4.tgz" + }, + "0.5.0": { + "shasum": "fc0313ebfdb653a3a0727a1cf4233a9a62d553ee", + "tarball": "http://registry.npmjs.org/q/-/q-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "4557026bda21fef9519a238fd9cc1b84588e5e20", + "tarball": "http://registry.npmjs.org/q/-/q-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "d6e6e73c60f35f946c11577bc4fdaa8825a22d5a", + "tarball": "http://registry.npmjs.org/q/-/q-0.5.2.tgz" + }, + "0.5.3": { + "shasum": "357d6e1a9c4e5a4839d277a89ac543c986b53b21", + "tarball": "http://registry.npmjs.org/q/-/q-0.5.3.tgz" + }, + "0.6.0": { + "shasum": "4a286191b558b76e9012ffa2570577efe038ecf1", + "tarball": "http://registry.npmjs.org/q/-/q-0.6.0.tgz" + }, + "0.7.0": { + "shasum": "f1eb1e6b13f65a756f0c48b464f4312631f68af3", + "tarball": "http://registry.npmjs.org/q/-/q-0.7.0.tgz" + }, + "0.7.1": { + "shasum": "258ee3e64c6e6334133b53b1df255d7e597a74b7", + "tarball": "http://registry.npmjs.org/q/-/q-0.7.1.tgz" + }, + "0.7.2": { + "shasum": "21de54077d5ee5a1ec3c7593eb411e6490af302a", + "tarball": "http://registry.npmjs.org/q/-/q-0.7.2.tgz" + } + }, + "url": "http://registry.npmjs.org/q/" + }, + "q-comm": { + "name": "q-comm", + "description": "An inter-worker asynchronous promise communication system.", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "kriskowal", + "email": "kris.kowal@cixar.com" + } + ], + "time": { + "modified": "2011-05-18T23:46:24.832Z", + "created": "2011-01-04T20:13:56.924Z", + "0.0.0": "2011-01-04T20:13:57.733Z", + "0.0.1": "2011-01-05T18:09:46.782Z", + "0.0.2": "2011-01-05T18:12:27.538Z", + "0.0.3": "2011-01-05T18:19:03.307Z", + "0.1.0": "2011-01-05T19:26:25.212Z", + "0.1.1": "2011-01-11T23:11:15.679Z", + "0.1.2": "2011-01-19T03:27:44.319Z", + "0.2.0": "2011-05-18T23:46:24.832Z" + }, + "author": { + "name": "Kris Kowal", + "email": "kris@cixar.com", + "url": "http://github.com/kriskowal/" + }, + "repository": { + "type": "git", + "url": "git://github.com/kriskowal/q-comm.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/q-comm/0.0.0", + "0.0.1": "http://registry.npmjs.org/q-comm/0.0.1", + "0.0.2": "http://registry.npmjs.org/q-comm/0.0.2", + "0.0.3": "http://registry.npmjs.org/q-comm/0.0.3", + "0.1.0": "http://registry.npmjs.org/q-comm/0.1.0", + "0.1.1": "http://registry.npmjs.org/q-comm/0.1.1", + "0.1.2": "http://registry.npmjs.org/q-comm/0.1.2", + "0.2.0": "http://registry.npmjs.org/q-comm/0.2.0" + }, + "dist": { + "0.0.0": { + "tarball": "http://registry.npmjs.org/q-comm/-/q-comm-0.0.0.tgz" + }, + "0.0.1": { + "tarball": "http://registry.npmjs.org/q-comm/-/q-comm-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/q-comm/-/q-comm-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/q-comm/-/q-comm-0.0.3.tgz" + }, + "0.1.0": { + "tarball": "http://registry.npmjs.org/q-comm/-/q-comm-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://registry.npmjs.org/q-comm/-/q-comm-0.1.1.tgz" + }, + "0.1.2": { + "tarball": "http://registry.npmjs.org/q-comm/-/q-comm-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "874f9de8995f6e0971f4fefce5e4a3a8e42d5852", + "tarball": "http://registry.npmjs.org/q-comm/-/q-comm-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/q-comm/" + }, + "q-fs": { + "name": "q-fs", + "description": "Q Promise wrappers for Node's file system.", + "dist-tags": { + "latest": "0.1.19" + }, + "maintainers": [ + { + "name": "kriskowal", + "email": "kris.kowal@cixar.com" + } + ], + "author": { + "name": "Kris Kowal", + "email": "kris@cixar.com", + "url": "http://github.com/kriskowal/" + }, + "repository": { + "type": "git", + "url": "git://github.com/kriskowal/q-fs.git" + }, + "time": { + "modified": "2011-10-11T23:47:02.218Z", + "created": "2011-01-05T13:03:26.261Z", + "0.0.0": "2011-01-05T13:03:26.261Z", + "0.0.1": "2011-01-05T13:03:26.261Z", + "0.0.2": "2011-01-05T13:03:26.261Z", + "0.0.3": "2011-01-05T13:03:26.261Z", + "0.0.4": "2011-01-05T13:03:26.261Z", + "0.0.5": "2011-02-09T00:03:04.798Z", + "0.0.6": "2011-02-09T05:06:00.654Z", + "0.0.7": "2011-02-09T05:16:08.984Z", + "0.0.9": "2011-02-09T05:42:53.181Z", + "0.0.10": "2011-02-10T22:01:57.316Z", + "0.0.11": "2011-02-10T22:35:15.661Z", + "0.0.12": "2011-02-10T22:40:29.611Z", + "0.0.13": "2011-02-10T23:08:48.744Z", + "0.0.14": "2011-02-10T23:51:01.498Z", + "0.0.15": "2011-02-16T22:52:55.295Z", + "0.0.16": "2011-02-17T22:43:35.932Z", + "0.1.0": "2011-05-18T19:52:38.131Z", + "0.1.1": "2011-05-19T01:05:03.658Z", + "0.1.2": "2011-05-19T01:19:28.081Z", + "0.1.3": "2011-05-19T18:22:44.330Z", + "0.1.4": "2011-06-02T19:49:50.785Z", + "0.1.5": "2011-06-03T00:26:48.321Z", + "0.1.6": "2011-06-08T20:27:46.113Z", + "0.1.7": "2011-06-08T21:26:33.746Z", + "0.1.8": "2011-06-09T21:08:38.650Z", + "0.1.9": "2011-06-16T22:11:22.636Z", + "0.1.10": "2011-08-11T21:49:44.635Z", + "0.1.11": "2011-08-12T00:40:24.434Z", + "0.1.12": "2011-08-12T17:59:42.401Z", + "0.1.13": "2011-08-30T20:44:09.269Z", + "0.1.14": "2011-09-07T00:55:33.131Z", + "0.1.15": "2011-09-22T05:08:56.759Z", + "0.1.16": "2011-09-27T04:09:16.856Z", + "0.1.17": "2011-09-27T04:15:35.910Z", + "0.1.18": "2011-09-29T21:56:23.107Z", + "0.1.19": "2011-10-11T23:47:02.218Z" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/q-fs/0.0.0", + "0.0.1": "http://registry.npmjs.org/q-fs/0.0.1", + "0.0.2": "http://registry.npmjs.org/q-fs/0.0.2", + "0.0.3": "http://registry.npmjs.org/q-fs/0.0.3", + "0.0.4": "http://registry.npmjs.org/q-fs/0.0.4", + "0.0.5": "http://registry.npmjs.org/q-fs/0.0.5", + "0.0.6": "http://registry.npmjs.org/q-fs/0.0.6", + "0.0.7": "http://registry.npmjs.org/q-fs/0.0.7", + "0.0.9": "http://registry.npmjs.org/q-fs/0.0.9", + "0.0.10": "http://registry.npmjs.org/q-fs/0.0.10", + "0.0.11": "http://registry.npmjs.org/q-fs/0.0.11", + "0.0.12": "http://registry.npmjs.org/q-fs/0.0.12", + "0.0.13": "http://registry.npmjs.org/q-fs/0.0.13", + "0.0.14": "http://registry.npmjs.org/q-fs/0.0.14", + "0.0.15": "http://registry.npmjs.org/q-fs/0.0.15", + "0.0.16": "http://registry.npmjs.org/q-fs/0.0.16", + "0.1.0": "http://registry.npmjs.org/q-fs/0.1.0", + "0.1.1": "http://registry.npmjs.org/q-fs/0.1.1", + "0.1.2": "http://registry.npmjs.org/q-fs/0.1.2", + "0.1.3": "http://registry.npmjs.org/q-fs/0.1.3", + "0.1.4": "http://registry.npmjs.org/q-fs/0.1.4", + "0.1.5": "http://registry.npmjs.org/q-fs/0.1.5", + "0.1.6": "http://registry.npmjs.org/q-fs/0.1.6", + "0.1.7": "http://registry.npmjs.org/q-fs/0.1.7", + "0.1.8": "http://registry.npmjs.org/q-fs/0.1.8", + "0.1.9": "http://registry.npmjs.org/q-fs/0.1.9", + "0.1.10": "http://registry.npmjs.org/q-fs/0.1.10", + "0.1.11": "http://registry.npmjs.org/q-fs/0.1.11", + "0.1.12": "http://registry.npmjs.org/q-fs/0.1.12", + "0.1.13": "http://registry.npmjs.org/q-fs/0.1.13", + "0.1.14": "http://registry.npmjs.org/q-fs/0.1.14", + "0.1.15": "http://registry.npmjs.org/q-fs/0.1.15", + "0.1.16": "http://registry.npmjs.org/q-fs/0.1.16", + "0.1.17": "http://registry.npmjs.org/q-fs/0.1.17", + "0.1.18": "http://registry.npmjs.org/q-fs/0.1.18", + "0.1.19": "http://registry.npmjs.org/q-fs/0.1.19" + }, + "dist": { + "0.0.0": { + "tarball": "http://packages:5984/q-fs/-/q-fs-0.0.0.tgz" + }, + "0.0.1": { + "tarball": "http://packages:5984/q-fs/-/q-fs-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/q-fs/-/q-fs-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/q-fs/-/q-fs-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://registry.npmjs.org/q-fs/-/q-fs-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://registry.npmjs.org/q-fs/-/q-fs-0.0.5.tgz" + }, + "0.0.6": { + "tarball": "http://registry.npmjs.org/q-fs/-/q-fs-0.0.6.tgz" + }, + "0.0.7": { + "tarball": "http://registry.npmjs.org/q-fs/-/q-fs-0.0.7.tgz" + }, + "0.0.9": { + "tarball": "http://registry.npmjs.org/q-fs/-/q-fs-0.0.9.tgz" + }, + "0.0.10": { + "tarball": "http://registry.npmjs.org/q-fs/-/q-fs-0.0.10.tgz" + }, + "0.0.11": { + "tarball": "http://registry.npmjs.org/q-fs/-/q-fs-0.0.11.tgz" + }, + "0.0.12": { + "tarball": "http://registry.npmjs.org/q-fs/-/q-fs-0.0.12.tgz" + }, + "0.0.13": { + "tarball": "http://registry.npmjs.org/q-fs/-/q-fs-0.0.13.tgz" + }, + "0.0.14": { + "tarball": "http://registry.npmjs.org/q-fs/-/q-fs-0.0.14.tgz" + }, + "0.0.15": { + "tarball": "http://registry.npmjs.org/q-fs/-/q-fs-0.0.15.tgz" + }, + "0.0.16": { + "tarball": "http://registry.npmjs.org/q-fs/-/q-fs-0.0.16.tgz" + }, + "0.1.0": { + "shasum": "4126ff64b92d7e4b19721363c11d891b6ca6e439", + "tarball": "http://registry.npmjs.org/q-fs/-/q-fs-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "8e1ddd5577b1f263ae83e0004c6abae7b90fcf34", + "tarball": "http://registry.npmjs.org/q-fs/-/q-fs-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "ffca8349fa79c056338d8e800311c8fe5b639546", + "tarball": "http://registry.npmjs.org/q-fs/-/q-fs-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "8d5ae5dcf3d774bc7549043cb4524bc677f3c0f9", + "tarball": "http://registry.npmjs.org/q-fs/-/q-fs-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "1355046421722b9f6f4b414e8e5cdfc94ee8e4de", + "tarball": "http://registry.npmjs.org/q-fs/-/q-fs-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "4fcdf78922d28112414eeb90999da7f639eb260d", + "tarball": "http://registry.npmjs.org/q-fs/-/q-fs-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "4e88e9a421eca3dfe862fb54b582883d9be2dda0", + "tarball": "http://registry.npmjs.org/q-fs/-/q-fs-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "5b360b72b711b01769516a7b140b29324e38d9d0", + "tarball": "http://registry.npmjs.org/q-fs/-/q-fs-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "c1f09290a88d73df555fc1e042163e3d930a6125", + "tarball": "http://registry.npmjs.org/q-fs/-/q-fs-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "47edfe3bf28084654e3f0e23607dd9eb64ddc3c3", + "tarball": "http://registry.npmjs.org/q-fs/-/q-fs-0.1.9.tgz" + }, + "0.1.10": { + "shasum": "1badcc87b360d06a82d741f4510f399f4dabf02e", + "tarball": "http://registry.npmjs.org/q-fs/-/q-fs-0.1.10.tgz" + }, + "0.1.11": { + "shasum": "648486ba78d2f6de7f4b912e1a94708848367c91", + "tarball": "http://registry.npmjs.org/q-fs/-/q-fs-0.1.11.tgz" + }, + "0.1.12": { + "shasum": "d894f13db8279a20e5a79d28e14ef38915a43fc6", + "tarball": "http://registry.npmjs.org/q-fs/-/q-fs-0.1.12.tgz" + }, + "0.1.13": { + "shasum": "76cdbb8d5f399081533ef0a8ca27e2503f5b0b96", + "tarball": "http://registry.npmjs.org/q-fs/-/q-fs-0.1.13.tgz" + }, + "0.1.14": { + "shasum": "ca9be9d600bc02b763077585c412e5597a993595", + "tarball": "http://registry.npmjs.org/q-fs/-/q-fs-0.1.14.tgz" + }, + "0.1.15": { + "shasum": "b2898780e3c33b94701bc0db5d775f0d281ee1d3", + "tarball": "http://registry.npmjs.org/q-fs/-/q-fs-0.1.15.tgz" + }, + "0.1.16": { + "shasum": "d6bbca39b7a8adec16715e7f1da3541aa4b13d7a", + "tarball": "http://registry.npmjs.org/q-fs/-/q-fs-0.1.16.tgz" + }, + "0.1.17": { + "shasum": "55880ac47b9d081fabe55161b275e33d8d35358c", + "tarball": "http://registry.npmjs.org/q-fs/-/q-fs-0.1.17.tgz" + }, + "0.1.18": { + "shasum": "b9aaf3182793d35d3970dda1223ba0a52b016219", + "tarball": "http://registry.npmjs.org/q-fs/-/q-fs-0.1.18.tgz" + }, + "0.1.19": { + "shasum": "33c290c48329f831689393a567576bf9921f0664", + "tarball": "http://registry.npmjs.org/q-fs/-/q-fs-0.1.19.tgz" + } + }, + "url": "http://registry.npmjs.org/q-fs/" + }, + "q-http": { + "name": "q-http", + "description": "Q promise based HTTP client and server interface", + "dist-tags": { + "latest": "0.1.11" + }, + "maintainers": [ + { + "name": "kriskowal", + "email": "kris.kowal@cixar.com" + } + ], + "author": { + "name": "Kris Kowal", + "email": "kris@cixar.com", + "url": "http://github.com/kriskowal/" + }, + "repository": { + "type": "git", + "url": "git://github.com/kriskowal/q-http.git" + }, + "time": { + "modified": "2011-11-15T15:25:18.754Z", + "created": "2011-01-07T09:47:40.775Z", + "0.0.0": "2011-01-07T09:47:40.775Z", + "0.0.1": "2011-01-07T09:47:40.775Z", + "0.0.3": "2011-01-07T09:47:40.775Z", + "0.0.4": "2011-01-07T09:47:40.775Z", + "0.0.5": "2011-01-07T09:47:40.775Z", + "0.0.7": "2011-02-19T00:55:36.420Z", + "0.1.0": "2011-02-23T23:51:25.664Z", + "0.1.1": "2011-06-15T00:07:28.756Z", + "0.1.2": "2011-06-22T20:28:47.360Z", + "0.1.3": "2011-08-31T21:48:20.498Z", + "0.1.4": "2011-09-20T19:12:01.436Z", + "0.1.5": "2011-09-23T20:43:57.455Z", + "0.1.6": "2011-09-27T04:00:58.964Z", + "0.1.7": "2011-09-27T16:50:06.226Z", + "0.1.8": "2011-10-11T23:51:34.588Z", + "0.1.10": "2011-10-31T23:32:47.989Z", + "0.1.11": "2011-11-01T19:52:06.488Z" + }, + "users": { + "nathan": true + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/q-http/0.0.0", + "0.0.1": "http://registry.npmjs.org/q-http/0.0.1", + "0.0.3": "http://registry.npmjs.org/q-http/0.0.3", + "0.0.4": "http://registry.npmjs.org/q-http/0.0.4", + "0.0.5": "http://registry.npmjs.org/q-http/0.0.5", + "0.0.7": "http://registry.npmjs.org/q-http/0.0.7", + "0.1.0": "http://registry.npmjs.org/q-http/0.1.0", + "0.1.1": "http://registry.npmjs.org/q-http/0.1.1", + "0.1.2": "http://registry.npmjs.org/q-http/0.1.2", + "0.1.3": "http://registry.npmjs.org/q-http/0.1.3", + "0.1.4": "http://registry.npmjs.org/q-http/0.1.4", + "0.1.5": "http://registry.npmjs.org/q-http/0.1.5", + "0.1.6": "http://registry.npmjs.org/q-http/0.1.6", + "0.1.7": "http://registry.npmjs.org/q-http/0.1.7", + "0.1.8": "http://registry.npmjs.org/q-http/0.1.8", + "0.1.10": "http://registry.npmjs.org/q-http/0.1.10", + "0.1.11": "http://registry.npmjs.org/q-http/0.1.11" + }, + "dist": { + "0.0.0": { + "tarball": "http://packages:5984/q-http/-/q-http-0.0.0.tgz" + }, + "0.0.1": { + "tarball": "http://packages:5984/q-http/-/q-http-0.0.1.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/q-http/-/q-http-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://packages:5984/q-http/-/q-http-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://registry.npmjs.org/q-http/-/q-http-0.0.5.tgz" + }, + "0.0.7": { + "shasum": "e22e26418ecd00998e0ab949e17f8c1be4a5121d", + "tarball": "http://registry.npmjs.org/q-http/-/q-http-0.0.7.tgz" + }, + "0.1.0": { + "shasum": "fd9ff7528ce10796331a86f580b678e158ca205d", + "tarball": "http://registry.npmjs.org/q-http/-/q-http-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "1f77a9047dd5735513a7b8e698cd6384b522ce59", + "tarball": "http://registry.npmjs.org/q-http/-/q-http-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "831067bcdbfeddff6dedc8a738b8fd5c4d886282", + "tarball": "http://registry.npmjs.org/q-http/-/q-http-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "f5efafd1b679c1328cd0943b1d6e920cd4c59271", + "tarball": "http://registry.npmjs.org/q-http/-/q-http-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "15efba9bfe57537dba1dc90918f1717d45de2d5c", + "tarball": "http://registry.npmjs.org/q-http/-/q-http-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "45dd45baf4d54f4a471222757571f182f7305bbf", + "tarball": "http://registry.npmjs.org/q-http/-/q-http-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "7ed6a1f33424c3b96ef0999171c10068c01a2fce", + "tarball": "http://registry.npmjs.org/q-http/-/q-http-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "d513d890f427a6d849214b781a659ba5355b3841", + "tarball": "http://registry.npmjs.org/q-http/-/q-http-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "ece7537da873830e35c977fc97ad573a0ceefb78", + "tarball": "http://registry.npmjs.org/q-http/-/q-http-0.1.8.tgz" + }, + "0.1.10": { + "shasum": "10b52c99ba488204ec7f3af152c62da3a2dec423", + "tarball": "http://registry.npmjs.org/q-http/-/q-http-0.1.10.tgz" + }, + "0.1.11": { + "shasum": "14b514a6299a7941239beff16c4a365bfe3eb214", + "tarball": "http://registry.npmjs.org/q-http/-/q-http-0.1.11.tgz" + } + }, + "url": "http://registry.npmjs.org/q-http/" + }, + "q-io": { + "name": "q-io", + "description": "Q Promise wrappers for Node's IO.", + "dist-tags": { + "latest": "0.0.11" + }, + "maintainers": [ + { + "name": "kriskowal", + "email": "kris.kowal@cixar.com" + } + ], + "author": { + "name": "Kris Kowal", + "email": "kris@cixar.com", + "url": "http://github.com/kriskowal/" + }, + "repository": { + "type": "git", + "url": "git://github.com/kriskowal/q-io.git" + }, + "time": { + "modified": "2011-10-11T23:40:38.367Z", + "created": "2011-02-09T05:03:30.825Z", + "0.0.0": "2011-02-09T05:03:30.825Z", + "0.0.1": "2011-02-09T05:03:30.825Z", + "0.0.2": "2011-02-09T05:03:30.825Z", + "0.0.3": "2011-02-09T05:32:40.333Z", + "0.0.4": "2011-02-11T20:03:54.580Z", + "0.0.5": "2011-06-03T00:21:59.021Z", + "0.0.6": "2011-06-03T00:25:42.911Z", + "0.0.8": "2011-08-11T03:08:19.138Z", + "0.0.9": "2011-09-27T03:54:38.332Z", + "0.0.10": "2011-09-27T04:11:58.027Z", + "0.0.11": "2011-10-11T23:40:38.368Z" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/q-io/0.0.0", + "0.0.1": "http://registry.npmjs.org/q-io/0.0.1", + "0.0.2": "http://registry.npmjs.org/q-io/0.0.2", + "0.0.3": "http://registry.npmjs.org/q-io/0.0.3", + "0.0.4": "http://registry.npmjs.org/q-io/0.0.4", + "0.0.5": "http://registry.npmjs.org/q-io/0.0.5", + "0.0.6": "http://registry.npmjs.org/q-io/0.0.6", + "0.0.8": "http://registry.npmjs.org/q-io/0.0.8", + "0.0.9": "http://registry.npmjs.org/q-io/0.0.9", + "0.0.10": "http://registry.npmjs.org/q-io/0.0.10", + "0.0.11": "http://registry.npmjs.org/q-io/0.0.11" + }, + "dist": { + "0.0.0": { + "tarball": "http://packages:5984/q-io/-/q-io-0.0.0.tgz" + }, + "0.0.1": { + "tarball": "http://packages:5984/q-io/-/q-io-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/q-io/-/q-io-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/q-io/-/q-io-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://registry.npmjs.org/q-io/-/q-io-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "e9093ca1c8d737bd0a3baaba2918f3dafe5a8907", + "tarball": "http://registry.npmjs.org/q-io/-/q-io-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "9b50ba52d680b15ad79dac899643a8cf9e19fc47", + "tarball": "http://registry.npmjs.org/q-io/-/q-io-0.0.6.tgz" + }, + "0.0.8": { + "shasum": "3e23a07486b6d081a48d35fe2e5eee67752580a9", + "tarball": "http://registry.npmjs.org/q-io/-/q-io-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "6e09c6b87eeb557037a180f1d733668799bf9850", + "tarball": "http://registry.npmjs.org/q-io/-/q-io-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "52c04e8672eee88bb90bb77154878cf440bbb898", + "tarball": "http://registry.npmjs.org/q-io/-/q-io-0.0.10.tgz" + }, + "0.0.11": { + "shasum": "1b60157fea42c687fde299a813540bfe2dd2c5f1", + "tarball": "http://registry.npmjs.org/q-io/-/q-io-0.0.11.tgz" + } + }, + "url": "http://registry.npmjs.org/q-io/" + }, + "q-io-buffer": { + "name": "q-io-buffer", + "description": "Q-IO Buffer", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "kriskowal", + "email": "kris@cixar.com" + } + ], + "time": { + "modified": "2011-10-11T23:39:28.209Z", + "created": "2011-05-18T17:26:08.366Z", + "0.0.0": "2011-05-18T17:26:08.981Z", + "0.0.1": "2011-08-12T01:03:05.123Z", + "0.0.2": "2011-10-11T23:39:28.209Z" + }, + "author": { + "name": "Kris Kowal", + "email": "kris@cixar.com", + "url": "http://github.com/kriskowal/" + }, + "repository": { + "type": "git", + "url": "git://github.com/kriskowal/q-io.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/q-io-buffer/0.0.0", + "0.0.1": "http://registry.npmjs.org/q-io-buffer/0.0.1", + "0.0.2": "http://registry.npmjs.org/q-io-buffer/0.0.2" + }, + "dist": { + "0.0.0": { + "shasum": "13442c57eb4cc887b7b9558722dac5240efbb4d2", + "tarball": "http://registry.npmjs.org/q-io-buffer/-/q-io-buffer-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "1c4ea4c105b5623ede887ecf5c1f32c6d49d4623", + "tarball": "http://registry.npmjs.org/q-io-buffer/-/q-io-buffer-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "ac5539574d98d364172aeed3c4c4c799550d4a77", + "tarball": "http://registry.npmjs.org/q-io-buffer/-/q-io-buffer-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/q-io-buffer/" + }, + "q-require": { + "name": "q-require", + "description": "asynchronous CommonJS require module loader for Node and browsers", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "kriskowal", + "email": "kris.kowal@cixar.com" + } + ], + "author": { + "name": "Kris Kowal", + "email": "kris@cixar.com", + "url": "http://github.com/kriskowal/" + }, + "repository": { + "type": "git", + "url": "http://github.com/kriskowal/q-require.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/q-require/0.0.0", + "0.0.1": "http://registry.npmjs.org/q-require/0.0.1", + "0.0.2": "http://registry.npmjs.org/q-require/0.0.2", + "0.0.3": "http://registry.npmjs.org/q-require/0.0.3" + }, + "dist": { + "0.0.0": { + "tarball": "http://packages:5984/q-require/-/q-require-0.0.0.tgz" + }, + "0.0.1": { + "tarball": "http://packages:5984/q-require/-/q-require-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/q-require/-/q-require-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/q-require/-/q-require-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/q-require/" + }, + "q-util": { + "name": "q-util", + "description": "Construction zone for a Q promise composition library.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "kriskowal", + "email": "kris.kowal@cixar.com" + } + ], + "author": { + "name": "Kris Kowal", + "email": "kris@cixar.com", + "url": "http://github.com/kriskowal/" + }, + "repository": { + "type": "git", + "url": "http://github.com/kriskowal/q-util.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/q-util/0.0.0", + "0.0.1": "http://registry.npmjs.org/q-util/0.0.1", + "0.0.2": "http://registry.npmjs.org/q-util/0.0.2" + }, + "dist": { + "0.0.0": { + "tarball": "http://packages:5984/q-util/-/q-util-0.0.0.tgz" + }, + "0.0.1": { + "tarball": "http://packages:5984/q-util/-/q-util-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/q-util/-/q-util-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/q-util/" + }, + "q-wrap": { + "name": "q-wrap", + "description": "Utility library to wrap async functions with last callback argument to promise returning functions", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "arikon", + "email": "peimei@ya.ru" + } + ], + "time": { + "modified": "2011-11-03T20:47:41.705Z", + "created": "2011-11-03T20:47:39.258Z", + "0.0.1": "2011-11-03T20:47:41.705Z" + }, + "author": { + "name": "Sergey Belov", + "email": "peimei@ya.ru", + "url": "http://github.com/arikon" + }, + "repository": { + "type": "git", + "url": "git://github.com/arikon/q-wrap.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/q-wrap/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "d4fdfca341d72d5e65fff10688ea3386b2a5a328", + "tarball": "http://registry.npmjs.org/q-wrap/-/q-wrap-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/q-wrap/" + }, + "qbox": { + "name": "qbox", + "description": "JQuery like queue solution for NodeJs", + "dist-tags": { + "latest": "0.1.7" + }, + "maintainers": [ + { + "name": "arunoda", + "email": "arunoda.susiripala@gmail.com" + } + ], + "time": { + "modified": "2011-09-21T12:04:46.125Z", + "created": "2011-04-03T07:42:11.300Z", + "0.1.0": "2011-04-03T07:42:13.203Z", + "0.1.1beta": "2011-04-04T14:46:38.230Z", + "0.1.2beta": "2011-04-04T15:34:20.597Z", + "0.1.3": "2011-04-10T06:05:53.769Z", + "0.1.4": "2011-09-17T03:55:52.304Z", + "0.1.5": "2011-09-17T07:36:56.804Z", + "0.1.6": "2011-09-18T12:18:05.735Z", + "0.1.7": "2011-09-21T12:04:46.125Z" + }, + "author": { + "name": "Arunoda Susiripala", + "email": "arunoda.susiripala@gmail.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:arunoda/qbox.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/qbox/0.1.0", + "0.1.1beta": "http://registry.npmjs.org/qbox/0.1.1beta", + "0.1.2beta": "http://registry.npmjs.org/qbox/0.1.2beta", + "0.1.3": "http://registry.npmjs.org/qbox/0.1.3", + "0.1.4": "http://registry.npmjs.org/qbox/0.1.4", + "0.1.5": "http://registry.npmjs.org/qbox/0.1.5", + "0.1.6": "http://registry.npmjs.org/qbox/0.1.6", + "0.1.7": "http://registry.npmjs.org/qbox/0.1.7" + }, + "dist": { + "0.1.0": { + "shasum": "3f2d2ad48be525147dd905bbf16da7a8865b1549", + "tarball": "http://registry.npmjs.org/qbox/-/qbox-0.1.0.tgz" + }, + "0.1.1beta": { + "shasum": "7e8e8902f573aec8db6541cb566bc0ad7d8aa2de", + "tarball": "http://registry.npmjs.org/qbox/-/qbox-0.1.1beta.tgz" + }, + "0.1.2beta": { + "shasum": "0e426b22167b29030ec33f06c97a1594196ed8f0", + "tarball": "http://registry.npmjs.org/qbox/-/qbox-0.1.2beta.tgz" + }, + "0.1.3": { + "shasum": "a7c44205d827d04bedde6a2c8a7bcd8b45647d6f", + "tarball": "http://registry.npmjs.org/qbox/-/qbox-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "be86415177907b8bc656ee80a019cf5b73cbffc5", + "tarball": "http://registry.npmjs.org/qbox/-/qbox-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "7e5a85eb539b81891e2aae2b2a981b8a6eef6271", + "tarball": "http://registry.npmjs.org/qbox/-/qbox-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "80f11e81617a350483b4a7eb621279b686e312c9", + "tarball": "http://registry.npmjs.org/qbox/-/qbox-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "e80f0dc5d09f869d8882168c3f66ac8dd2840f02", + "tarball": "http://registry.npmjs.org/qbox/-/qbox-0.1.7.tgz" + } + }, + "url": "http://registry.npmjs.org/qbox/" + }, + "qfi": { + "name": "qfi", + "description": "a function processing queue for node.js", + "dist-tags": { + "latest": "0.1.0-0" + }, + "maintainers": [ + { + "name": "franzenzenhofer", + "email": "f.enzenhofer@gmail.com" + } + ], + "time": { + "modified": "2011-04-30T14:07:11.627Z", + "created": "2011-04-30T14:07:11.196Z", + "0.1.0-0": "2011-04-30T14:07:11.627Z" + }, + "author": { + "name": "Franz Enzenhofer", + "email": "f.enzenhofer@gmail.com" + }, + "versions": { + "0.1.0-0": "http://registry.npmjs.org/qfi/0.1.0-0" + }, + "dist": { + "0.1.0-0": { + "shasum": "6b5ceb7651bd81a6b9e70dd8cbec2bd89968dd9f", + "tarball": "http://registry.npmjs.org/qfi/-/qfi-0.1.0-0.tgz" + } + }, + "keywords": [ + "queue", + "APIs", + "rate-limit" + ], + "url": "http://registry.npmjs.org/qfi/" + }, + "qfunction": { + "name": "qfunction", + "description": "Make sure specified function runs one at a time.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "devrim", + "email": "devrim@koding.com" + } + ], + "time": { + "modified": "2011-10-05T18:50:43.427Z", + "created": "2011-10-05T18:50:42.891Z", + "0.0.1": "2011-10-05T18:50:43.427Z" + }, + "author": { + "name": "Devrim Yasar", + "email": "devrim@koding.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/koding/qfunction.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/qfunction/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "18215237fee57d4046ebc8416d607debbdb2d823", + "tarball": "http://registry.npmjs.org/qfunction/-/qfunction-0.0.1.tgz" + } + }, + "keywords": [ + "underscore", + "async serializer" + ], + "url": "http://registry.npmjs.org/qfunction/" + }, + "qjscl": { + "name": "qjscl", + "description": "Quick JSON Config Loader", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "sjsadowski", + "email": "stephen.sadowski@gmail.com" + } + ], + "time": { + "modified": "2011-07-18T14:12:47.309Z", + "created": "2011-06-18T03:07:46.641Z", + "0.0.1": "2011-06-18T03:07:47.071Z", + "0.1.0": "2011-06-18T14:52:47.036Z", + "0.2.0": "2011-07-18T13:55:50.071Z", + "0.2.1": "2011-07-18T14:09:07.419Z", + "0.2.2": "2011-07-18T14:12:47.309Z" + }, + "author": { + "name": "Stephen Sadowski" + }, + "repository": { + "type": "git", + "url": "git://github.com/sjsadowski/qjscl.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/qjscl/0.0.1", + "0.1.0": "http://registry.npmjs.org/qjscl/0.1.0", + "0.2.0": "http://registry.npmjs.org/qjscl/0.2.0", + "0.2.1": "http://registry.npmjs.org/qjscl/0.2.1", + "0.2.2": "http://registry.npmjs.org/qjscl/0.2.2" + }, + "dist": { + "0.0.1": { + "shasum": "d76ec286c327f866ae4091d50f8075aa22a799b3", + "tarball": "http://registry.npmjs.org/qjscl/-/qjscl-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "971def24760fdc5c22d08b27249a299e28eab43f", + "tarball": "http://registry.npmjs.org/qjscl/-/qjscl-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "9bdd423dc06d2ba82da9a366bd788c453fa937ed", + "tarball": "http://registry.npmjs.org/qjscl/-/qjscl-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "ea960caf4b7d340ec77f72fb31bcbc838456f262", + "tarball": "http://registry.npmjs.org/qjscl/-/qjscl-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "7e381c7a360d853994597ea3d359c697e1d5cf38", + "tarball": "http://registry.npmjs.org/qjscl/-/qjscl-0.2.2.tgz" + } + }, + "keywords": [ + "config", + "configure", + "json" + ], + "url": "http://registry.npmjs.org/qjscl/" + }, + "ql.io-app": { + "name": "ql.io-app", + "dist-tags": { + "latest": "0.3.0" + }, + "readme": null, + "maintainers": [ + { + "name": "s3u", + "email": "subbu@ebaysf.com" + } + ], + "time": { + "modified": "2011-11-30T16:48:47.114Z", + "created": "2011-11-30T16:48:46.088Z", + "0.3.0": "2011-11-30T16:48:47.114Z" + }, + "author": { + "name": "ql.io" + }, + "repository": { + "type": "git", + "url": "git://github.com/ql-io/ql.io.git" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/ql.io-app/0.3.0" + }, + "dist": { + "0.3.0": { + "shasum": "ff34a81d9a8e14e8b246cb9490282e419457ff3b", + "tarball": "http://registry.npmjs.org/ql.io-app/-/ql.io-app-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/ql.io-app/" + }, + "ql.io-compiler": { + "name": "ql.io-compiler", + "dist-tags": { + "latest": "0.3.0" + }, + "readme": null, + "maintainers": [ + { + "name": "s3u", + "email": "subbu@ebaysf.com" + } + ], + "time": { + "modified": "2011-11-30T16:48:56.229Z", + "created": "2011-11-30T16:48:55.153Z", + "0.3.0": "2011-11-30T16:48:56.229Z" + }, + "author": { + "name": "ql.io" + }, + "repository": { + "type": "git", + "url": "git://github.com/ql-io/ql.io.git" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/ql.io-compiler/0.3.0" + }, + "dist": { + "0.3.0": { + "shasum": "5fc406972978b39ddc744ba3fae56d85b507bd71", + "tarball": "http://registry.npmjs.org/ql.io-compiler/-/ql.io-compiler-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/ql.io-compiler/" + }, + "ql.io-console": { + "name": "ql.io-console", + "dist-tags": { + "latest": "0.3.3" + }, + "readme": "\n## ql.io Web Console\n\nThis provides an HTTP interface to ql.io. Unless you are programmatically calling ql.io-engine,\nconsole is the only interface you care.\n\n## Bundled Software\n\nThis module bundles the following third-party software.\n\n### CodeMirror\n\n[CodeMirror](http://codemirror.net/) is distributed under the following license.\n\n Copyright (C) 2011 by Marijn Haverbeke \n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n THE SOFTWARE.\n\n### JSONView\n\n[jsonview](https://github.com/bhollis/jsonview) is distributed under the following license.\n\n MIT License\n\n Copyright (c) 2009 Benjamin Hollis\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n THE SOFTWARE.\n", + "maintainers": [ + { + "name": "s3u", + "email": "subbu@ebaysf.com" + } + ], + "time": { + "modified": "2011-12-08T06:01:26.864Z", + "created": "2011-11-30T16:49:05.304Z", + "0.3.0": "2011-11-30T16:49:06.391Z", + "0.3.1": "2011-12-06T03:08:51.924Z", + "0.3.2": "2011-12-07T15:40:05.741Z", + "0.3.3": "2011-12-08T06:01:26.864Z" + }, + "author": { + "name": "ql.io" + }, + "repository": { + "type": "git", + "url": "git://github.com/ql-io/ql.io.git" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/ql.io-console/0.3.0", + "0.3.1": "http://registry.npmjs.org/ql.io-console/0.3.1", + "0.3.2": "http://registry.npmjs.org/ql.io-console/0.3.2", + "0.3.3": "http://registry.npmjs.org/ql.io-console/0.3.3" + }, + "dist": { + "0.3.0": { + "shasum": "63f091ac30c5ead2d2df747d61d76dbd08dcca3e", + "tarball": "http://registry.npmjs.org/ql.io-console/-/ql.io-console-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "1d00ee671195a1e7759d98f516f7061465e510ff", + "tarball": "http://registry.npmjs.org/ql.io-console/-/ql.io-console-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "06a855a740ceb9456902ed6f357b1aed5cb8239d", + "tarball": "http://registry.npmjs.org/ql.io-console/-/ql.io-console-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "5a1660dd572cc1289a3da7490ea38ca81410bf39", + "tarball": "http://registry.npmjs.org/ql.io-console/-/ql.io-console-0.3.3.tgz" + } + }, + "url": "http://registry.npmjs.org/ql.io-console/" + }, + "ql.io-ecv": { + "name": "ql.io-ecv", + "description": "Provides ECV check for ql.io servers", + "dist-tags": { + "latest": "0.3.0" + }, + "readme": "\n## ECV check glue for any express.js server\n\n", + "maintainers": [ + { + "name": "s3u", + "email": "subbu@ebaysf.com" + } + ], + "time": { + "modified": "2011-11-30T16:49:13.707Z", + "created": "2011-11-30T16:49:12.658Z", + "0.3.0": "2011-11-30T16:49:13.707Z" + }, + "author": { + "name": "ql.io" + }, + "repository": { + "type": "git", + "url": "git://github.com/ql-io/ql.io.git" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/ql.io-ecv/0.3.0" + }, + "dist": { + "0.3.0": { + "shasum": "eee86bec689439336b32ee1412e48300083b2af1", + "tarball": "http://registry.npmjs.org/ql.io-ecv/-/ql.io-ecv-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/ql.io-ecv/" + }, + "ql.io-engine": { + "name": "ql.io-engine", + "dist-tags": { + "latest": "0.3.9" + }, + "readme": "\n## Module: Engine\n\nThis is the core engine.\n", + "maintainers": [ + { + "name": "s3u", + "email": "subbu@ebaysf.com" + } + ], + "time": { + "modified": "2011-12-11T20:16:38.949Z", + "created": "2011-11-30T16:49:19.816Z", + "0.3.0": "2011-11-30T16:49:20.843Z", + "0.3.1": "2011-12-02T21:32:03.232Z", + "0.3.2": "2011-12-06T03:08:32.882Z", + "0.3.3": "2011-12-06T21:04:17.896Z", + "0.3.4": "2011-12-06T22:30:08.295Z", + "0.3.5": "2011-12-07T02:11:43.628Z", + "0.3.7": "2011-12-08T06:01:35.851Z", + "0.3.8": "2011-12-08T23:36:04.970Z", + "0.3.9": "2011-12-11T20:16:38.949Z" + }, + "author": { + "name": "ql.io" + }, + "repository": { + "type": "git", + "url": "git://github.com/ql-io/ql.io.git" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/ql.io-engine/0.3.0", + "0.3.1": "http://registry.npmjs.org/ql.io-engine/0.3.1", + "0.3.2": "http://registry.npmjs.org/ql.io-engine/0.3.2", + "0.3.3": "http://registry.npmjs.org/ql.io-engine/0.3.3", + "0.3.4": "http://registry.npmjs.org/ql.io-engine/0.3.4", + "0.3.5": "http://registry.npmjs.org/ql.io-engine/0.3.5", + "0.3.7": "http://registry.npmjs.org/ql.io-engine/0.3.7", + "0.3.8": "http://registry.npmjs.org/ql.io-engine/0.3.8", + "0.3.9": "http://registry.npmjs.org/ql.io-engine/0.3.9" + }, + "dist": { + "0.3.0": { + "shasum": "328cfcd2c642e0c871f286f8da13b651abb57a8c", + "tarball": "http://registry.npmjs.org/ql.io-engine/-/ql.io-engine-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "d4050c83e978b7b5b55f50c6fcaaead576551308", + "tarball": "http://registry.npmjs.org/ql.io-engine/-/ql.io-engine-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "fa2f0454dc773b1f76133f0baa60b8b0abcee0d2", + "tarball": "http://registry.npmjs.org/ql.io-engine/-/ql.io-engine-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "f97003fe7ddd6aae744449e82c05975ae19a69ce", + "tarball": "http://registry.npmjs.org/ql.io-engine/-/ql.io-engine-0.3.3.tgz" + }, + "0.3.4": { + "shasum": "62c9410d71f061fda474f0a7d383ee946cd55c9d", + "tarball": "http://registry.npmjs.org/ql.io-engine/-/ql.io-engine-0.3.4.tgz" + }, + "0.3.5": { + "shasum": "34302444e716a476d2b6205d9bc39affdc02eb05", + "tarball": "http://registry.npmjs.org/ql.io-engine/-/ql.io-engine-0.3.5.tgz" + }, + "0.3.7": { + "shasum": "1f69a7838911dafbf7661b216697fc9effe23a4a", + "tarball": "http://registry.npmjs.org/ql.io-engine/-/ql.io-engine-0.3.7.tgz" + }, + "0.3.8": { + "shasum": "eec6eb18834e0537f3a2b443b34c9e4248c9ad83", + "tarball": "http://registry.npmjs.org/ql.io-engine/-/ql.io-engine-0.3.8.tgz" + }, + "0.3.9": { + "shasum": "af0bf0c69f4640465c562db001bee67f21c6f40c", + "tarball": "http://registry.npmjs.org/ql.io-engine/-/ql.io-engine-0.3.9.tgz" + } + }, + "url": "http://registry.npmjs.org/ql.io-engine/" + }, + "ql.io-mon": { + "name": "ql.io-mon", + "description": "This module provides a peek into the ql.io runtime", + "dist-tags": { + "latest": "0.3.0" + }, + "readme": "\nThis module provides a runtime peek in to the ql.io server showing such details as number of pending\nincoming requests, pending sent requests, etc. More to come in future.\n\nThis module relies on cluster's stats() plugin.\n\n## Bundled Code\n\nThis module bundles [jquery.sparkline 1.6](http://omnipotent.net/jquery.sparkline) which is\nlicensed under the New BSD License - see site for details.", + "maintainers": [ + { + "name": "s3u", + "email": "subbu@ebaysf.com" + } + ], + "time": { + "modified": "2011-11-30T16:49:35.468Z", + "created": "2011-11-30T16:49:34.384Z", + "0.3.0": "2011-11-30T16:49:35.468Z" + }, + "author": { + "name": "ql.io" + }, + "repository": { + "type": "git", + "url": "git://github.com/ql-io/ql.io.git" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/ql.io-mon/0.3.0" + }, + "dist": { + "0.3.0": { + "shasum": "b59768a26f5693a4da740b13785885d31a35bca0", + "tarball": "http://registry.npmjs.org/ql.io-mon/-/ql.io-mon-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/ql.io-mon/" + }, + "ql.io-mutable-uri": { + "name": "ql.io-mutable-uri", + "description": "A utility for manipulating URIs. This is primarily used by monkey patch files.", + "dist-tags": { + "latest": "0.3.0" + }, + "readme": "A mutable URI parser and formatter for use by monkey patches. ql.io lets you monkey patch tables\nby attaching a Node module with each table. Here is an example of how a monkey patch module could\npatch the request URI.\n\n //\n // Patch the request URI. ql.io engine would use the returned URI.\n //\n exports['patch uri'] = function(options) {\n var statement = options.statement, uri = options.uri, params = options.params, count = 0;\n if(statement.offset && statement.limit) {\n uri.setParam('paginationInput.pageNumber', statement.offset / statement.limit);\n }\n uri.removeEmptyParams();\n\n count = 0\n if(params.FreeShippingOnly) {\n uri.addParam(\"itemFilter(\" + count + \").name\", 'FreeShippingOnly');\n uri.addParam(\"itemFilter(\" + count + \").value\", params.FreeShippingOnly);\n count++;\n }\n if(params.MinPrice) {\n uri.addParam(\"itemFilter(\" + count + \").name\", 'MinPrice');\n uri.addParam(\"itemFilter(\" + count + \").value\", params.MinPrice);\n count++;\n }\n return uri;\n }\n", + "maintainers": [ + { + "name": "s3u", + "email": "subbu@ebaysf.com" + } + ], + "time": { + "modified": "2011-11-30T16:49:52.868Z", + "created": "2011-11-30T16:49:51.757Z", + "0.3.0": "2011-11-30T16:49:52.868Z" + }, + "author": { + "name": "ql.io" + }, + "repository": { + "type": "git", + "url": "git://github.com/ql-io/ql.io.git" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/ql.io-mutable-uri/0.3.0" + }, + "dist": { + "0.3.0": { + "shasum": "50cce8a3e3b10d274d558cb2f28b5eb4831d8537", + "tarball": "http://registry.npmjs.org/ql.io-mutable-uri/-/ql.io-mutable-uri-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/ql.io-mutable-uri/" + }, + "ql.io-uri-template": { + "name": "ql.io-uri-template", + "description": "A small URI template processor for ql.io.", + "dist-tags": { + "latest": "0.3.0" + }, + "readme": "This module provides a small URI template parser. ql.io uses URI templates for specifying URIs of\nAPIs. See [docs](http://ql.io/docs/uri-template) for more examples.\n\n## Syntax Overview\n\nHere is overview of the syntax.\n\n1. Each template can have an arbitrary number of tokens enclosed in braces (`{` and `}`).\n\n http://myserver/somepath?p1={v1}&p2={v2}\n\n2. You can generate URIs from URI templates by calling the `format()` function with an object\n containing values, and optionally, default values.\n\n3. All tokens are optional and single valued by default.\n\n4. You can mark that a token is required by prefixing the name of the token with `^`. When the\n value for a required token is missing, formatting will fail.\n\n http://myserver/somepath?p1={^v1}&p2={v2}\n\n5. You can also mark that a token is multi-valued by prefixing the name of the token with a `|`.\n\n http://myserver/somepath?p2={|v2}\n\nIf the value of `v2` is `['v2_1','v2_2']`, calling the `format()` would result in\n\n http://myserver/somepath?p2=v2_1,v2_2\n\nSome APIs may not take more than a given number of values. In such cases, you can specify a maximum\ninteger before `|`.\n\n http://myserver/somepath?p1={^v1}&p2={5|v2}\n\nIf you supply more than 5 values, the `format()` function will return `Math.ceil(n/5)` URIs.\n", + "maintainers": [ + { + "name": "s3u", + "email": "subbu@ebaysf.com" + } + ], + "time": { + "modified": "2011-11-30T16:50:03.368Z", + "created": "2011-11-30T16:50:02.281Z", + "0.3.0": "2011-11-30T16:50:03.368Z" + }, + "author": { + "name": "ql.io" + }, + "repository": { + "type": "git", + "url": "git://github.com/ql-io/ql.io.git" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/ql.io-uri-template/0.3.0" + }, + "dist": { + "0.3.0": { + "shasum": "f6050f6c10396dd53b144c89a1a16e50f700156e", + "tarball": "http://registry.npmjs.org/ql.io-uri-template/-/ql.io-uri-template-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/ql.io-uri-template/" + }, + "qooxdoo": { + "name": "qooxdoo", + "description": "OO programming with classes, mixins, interfaces and dynamic getters/setters", + "dist-tags": { + "latest": "1.6.0" + }, + "maintainers": [ + { + "name": "qooxdoo", + "email": "info@qooxdoo.org" + } + ], + "time": { + "modified": "2011-12-07T14:24:53.825Z", + "created": "2011-05-11T14:59:15.419Z", + "1.4.0": "2011-12-07T14:24:53.825Z", + "1.5.0": "2011-12-07T14:24:53.825Z", + "1.6.0": "2011-12-07T14:24:53.825Z" + }, + "author": { + "name": "Martin Wittemann", + "email": "martin.wittemann@1und1.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/qooxdoo/qooxdoo.git" + }, + "versions": { + "1.4.0": "http://registry.npmjs.org/qooxdoo/1.4.0", + "1.5.0": "http://registry.npmjs.org/qooxdoo/1.5.0", + "1.6.0": "http://registry.npmjs.org/qooxdoo/1.6.0" + }, + "dist": { + "1.4.0": { + "shasum": "b3fc401182b7c7d2b217e7b53fa8e6135cb8ef7e", + "tarball": "http://registry.npmjs.org/qooxdoo/-/qooxdoo-1.4.0.tgz" + }, + "1.5.0": { + "shasum": "324b2f385add8824758899643ea364c5beb9ad50", + "tarball": "http://registry.npmjs.org/qooxdoo/-/qooxdoo-1.5.0.tgz" + }, + "1.6.0": { + "shasum": "828ae878e70cf98d7bcd8a8e35ab70114e6290e2", + "tarball": "http://registry.npmjs.org/qooxdoo/-/qooxdoo-1.6.0.tgz" + } + }, + "keywords": [ + "oop", + "class", + "inheritance", + "object-oriented" + ], + "url": "http://registry.npmjs.org/qooxdoo/" + }, + "qoper8": { + "name": "qoper8", + "description": "Multi-thread manager for Node.js", + "dist-tags": { + "latest": "0.0.8" + }, + "maintainers": [ + { + "name": "robtweed", + "email": "rtweed@mgateway.com" + } + ], + "time": { + "modified": "2011-10-05T14:22:15.556Z", + "created": "2011-09-04T16:23:18.613Z", + "0.0.1": "2011-09-04T16:23:19.020Z", + "0.0.2": "2011-09-06T10:46:20.992Z", + "0.0.3": "2011-09-06T11:04:50.988Z", + "0.0.4": "2011-09-06T16:22:25.357Z", + "0.0.5": "2011-09-19T13:30:29.848Z", + "0.0.6": "2011-09-29T14:29:31.311Z", + "0.0.8": "2011-10-05T14:22:15.556Z" + }, + "author": { + "name": "Rob Tweed", + "email": "rtweed@mgateway.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/robtweed/Q-Oper8.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/qoper8/0.0.1", + "0.0.2": "http://registry.npmjs.org/qoper8/0.0.2", + "0.0.3": "http://registry.npmjs.org/qoper8/0.0.3", + "0.0.4": "http://registry.npmjs.org/qoper8/0.0.4", + "0.0.5": "http://registry.npmjs.org/qoper8/0.0.5", + "0.0.6": "http://registry.npmjs.org/qoper8/0.0.6", + "0.0.8": "http://registry.npmjs.org/qoper8/0.0.8" + }, + "dist": { + "0.0.1": { + "shasum": "b24cb92e78d69a2cc9d3add494249a0bc081bf84", + "tarball": "http://registry.npmjs.org/qoper8/-/qoper8-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "5058b8ad53e91c77bf3a1bf342feb05690567124", + "tarball": "http://registry.npmjs.org/qoper8/-/qoper8-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "7bffec40fc4c02c10d790ecf0e4b52c0a6385012", + "tarball": "http://registry.npmjs.org/qoper8/-/qoper8-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "96e5f9897ddbc61420b1993ec91a7c0e23605632", + "tarball": "http://registry.npmjs.org/qoper8/-/qoper8-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "bb7fe503a34a885f5e6cb3740d68f343555c932f", + "tarball": "http://registry.npmjs.org/qoper8/-/qoper8-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "660d569df98d7faecff9434d24f797b33d669b55", + "tarball": "http://registry.npmjs.org/qoper8/-/qoper8-0.0.6.tgz" + }, + "0.0.8": { + "shasum": "0308e6cb0b6eab2ddd293de4987723f7c87867c2", + "tarball": "http://registry.npmjs.org/qoper8/-/qoper8-0.0.8.tgz" + } + }, + "url": "http://registry.npmjs.org/qoper8/" + }, + "qparrot": { + "name": "qparrot", + "description": "A lightning fast and lightweight templating engine for Node.js", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "#Parrot Templating Engine\n\nParrot is an incredibly lightweight, and super fast templating engine for node.js. It works by using a set of regular expressions to compile an input into executable javascript which is then compiled and run by the V8 engine, harnessing 100% of its power.\n\nAll feedback is welcome.\n\n### Features\n\n* Fully Configurable\n* Native Javascript Support\n* Compiled and interpreted by V8 (Super Fast)\n* Internal Caching\n* Buffering\n* Fully configurable Sandbox\n* Lightweight, Elegant & Fully Annotated Code\n* Thorough Documentation\n\n## Installation\n\n### NPM (Node Package Manager)\n\nThe easiest way to install parrot is by using NPM as follows:\n\n npm install parrot\n\nOr globally by:\n\n npm install -g parrot\n \n### Alternatively\n\nOpen up your project folder, create a folder called 'lib/parrot' if it doesn't exist already. Navigate to that folder and place the parrot index.js within that folder. The url to download the parrot files can be found here:\n\n\thttp://github.com/ollym/parrot/zipball/master\n\t\nYou should now have the parrot library installed in the lib/parrot folder.\n## Syntax Reference\n\nBeing lightweight, parrot offloads a lot of the processing to the V8 interpreter, which compiles the code and runs as fast as the rest of your application. In fact, parrot shouldn't add any overhead to your application at all! For this reason, the syntax within the parrot tags is javascript. You can perform any function you wish within the bounds of javascript and node.js.\n\n### Basic Example\nBelow is a basic example of parrot's usage syntax.\n\n```html\n\n<% for(var i = 0; i < 3; i++) : %>\n
I am div #<%= i %>
\n<% endfor; %>\n\n```\n\nWill render as:\n\n```html\n\n\t
I am div #0
\n\t
I am div #1
\n\t
I am div #2
\n\n```\n\n### Alternative Syntax\nAs supposed to the example above, it can also be written as:\n\n```html\n\n<% for(var i = 0; i < 3; i++) { %>\n\t
I am div #<% print(i) %>
\n<% } %>\n\n```\n\t\nAs you would have noticed, the colon (:) and endfor directives have been replaced with curly brackets, and the <%= %> tags have been replaced with a print() function. Parrot works by buffering data sent using print() before returning it to the user.\n\n## API Reference\n\nWithin your application, you can use parrot like the following:\n\n```javascript\nvar parrot = require('./lib/parrot');\n\nvar output = parrot.render(input);\n```\n\t\nWhere the input variable is a string you would like parrot to render. If you would like to render a file, do the following:\n\n```javascript\nvar parrot = require('./lib/parrot');\nvar fs = require('fs');\nfs.readFile(file, encoding, function(err, data) {\n\tif (err) throw err;\n\tvar output = parrot.render(data);\n});\n```\n\t\nWhere file is a string value of the file you wish to render, and output is the rendered template.\n\nIf you want to stream your template in chunks you can add a function as the second or third parameter and it will be called every time data is printed from the template. If the buffer configuration is set to true, then the entire output is provided to this function once rendering has ended. For example:\n\n```javascript\nparrot.render(input, function(chunk) {\n\t\n// Send chunks as they are received\nres.write(chunk);\n});\n```\n\t\nOr if you have configurations set:\n\n```javascript\nparrot.render(input, {cache: 0}, function(chunk) {\n\t\t\n// Send chunks as they are received\nres.write(chunk);\n});\n```\n\t\n> Note: If you have buffer set to true, then the chunk parameter passed to the callback function will be identical to the value returned by the method.\n\t\n### Advanced Methods\n\nIf you want to manually flush the internal cache, you can do so by using the parrot.clearCache() method. For example:\n\n```javascript\nparrot.clearCache();\n```\n\n## Configuration\n\nTo configure parrot you have two available options: global or local. Altering parrot's global configuration will affect every rendering process that takes values from the global configuration as they're not already defined locally. Both local configuration settings are the same.\n\n### Sandbox\n\nThe sandbox property defines any variables or methods that you want to expose to the template. These can be functions you want to allow your template to use, or variables defined earlier in your script.\n\nDefault: {}\n\nExample:\n\n```javascript\nvar input = '<%= square(2) %>';\n\nvar square = function(a) {\n\treturn a * a;\n}\n\t\nvar output = parrot.render(input, {\n\tsandbox: {\n\t\tsquare: square\n\t}\n});\n\t\n// Output = 4\n```\n\t\n> Note you cannot replace the print() function, as this is reserved by parrot.\n\t\n### Cache\n\nParrot will internally cache all rendered templates, which will dramatically reduce rendering time in future. Just incase you're loading dynamic content within your template, you define the cache property as an integer representing the number of seconds that parrot will hold the rendered template in the cache.\n\nDefault: 3600 * 24 // 1 day (24 hours)\n\nExample:\n\n```javascript\nparrot.render(input, {\n\tcache: 3600 * 24 // Will cache a template for a whole day (24 hours)\n});\n```\n\t\n> Note: If the cache value is set to 0 or below, then the rendered templates will not be cached.\n\n### Buffer\n\nIf your template requires heavy processing, and to wait for the whole template to render before returning it to the client is not feasible, you can set the buffer property to false. This will prompt parrot to return data as it is printed to a function given as the 3rd parameter to the render method. This is advisable for all heavy duty templates, as it allows the client to start downloading header resources before the entire template is rendered.\n\nDefault: false\n\nExample:\n\n```javascript\nparrot.render(input {\n\tbuffer: false,\n}, function(chunk) {\n\t\n\t// Write the chunk to the response stream\n res.write(chunk);\n});\n```\n\t\n> Note: If buffer is set to true and a function is provided as the 2nd/3rd parameter, it will write the entire output to that function.\n\n> Note: The render method will still return the entire output once the template is finished rendering.\n\n### Tags\n\nThe tags property allows you to define what tags you want in your template. By default they are: <% and %> but you can use this property to set them to whatever you want.\n\nDefault: {\n start: '<%',\n end: '%>'\n}\n\nExample:\n\n```javascript\nparrot.render(input, {\n\ttags: {\n\t\tstart: ''\n\t}\n});\n```\n\n> Note: Short tags will always work with an appended equals sign (=) to your start tag. So for the example above, it will be set to automatically.\n\n> Note: Tag values are prepended and appended to regular expressions, ensure you're tags are escaped or intentionally not so.\n\n## License \n\nCopyright (c) 2010 Oliver Morgan (oliver.morgan@kohark.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.", + "maintainers": [ + { + "name": "qrpike", + "email": "qrpike@gmail.com" + } + ], + "time": { + "modified": "2011-12-03T16:06:13.994Z", + "created": "2011-12-03T16:06:13.313Z", + "0.1.0": "2011-12-03T16:06:13.994Z" + }, + "author": { + "name": "qrpike" + }, + "repository": { + "type": "git", + "url": "git://github.com/qrpike/qparrot.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/qparrot/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "64ed0d24f2c28987924da67133074afa1d7d4831", + "tarball": "http://registry.npmjs.org/qparrot/-/qparrot-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/qparrot/" + }, + "qq": { + "name": "qq", + "description": "A heavy-weight library for promises, based on Q", + "dist-tags": { + "latest": "0.3.3" + }, + "maintainers": [ + { + "name": "kriskowal", + "email": "kris@cixar.com" + } + ], + "time": { + "modified": "2011-10-11T23:19:26.993Z", + "created": "2011-05-18T18:10:15.189Z", + "0.0.0": "2011-05-18T18:10:15.815Z", + "0.1.0": "2011-05-18T22:06:45.130Z", + "0.1.1": "2011-05-19T00:47:52.212Z", + "0.1.2": "2011-05-19T22:18:14.120Z", + "0.2.0": "2011-06-14T23:46:16.197Z", + "0.2.1": "2011-06-20T23:40:16.159Z", + "0.3.0": "2011-07-22T00:21:04.477Z", + "0.3.1": "2011-08-09T23:46:35.636Z", + "0.3.2": "2011-09-07T00:53:13.955Z", + "0.3.3": "2011-10-11T23:19:26.993Z" + }, + "author": { + "name": "Kris Kowal", + "email": "kris@cixar.com", + "url": "http://github.com/kriskowal/" + }, + "repository": { + "type": "git", + "url": "git://github.com/kriskowal/qq.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/qq/0.0.0", + "0.1.0": "http://registry.npmjs.org/qq/0.1.0", + "0.1.1": "http://registry.npmjs.org/qq/0.1.1", + "0.1.2": "http://registry.npmjs.org/qq/0.1.2", + "0.2.0": "http://registry.npmjs.org/qq/0.2.0", + "0.2.1": "http://registry.npmjs.org/qq/0.2.1", + "0.3.0": "http://registry.npmjs.org/qq/0.3.0", + "0.3.1": "http://registry.npmjs.org/qq/0.3.1", + "0.3.2": "http://registry.npmjs.org/qq/0.3.2", + "0.3.3": "http://registry.npmjs.org/qq/0.3.3" + }, + "dist": { + "0.0.0": { + "shasum": "80a6ebdfacc00aaa0a657ab747209684b30f940c", + "tarball": "http://registry.npmjs.org/qq/-/qq-0.0.0.tgz" + }, + "0.1.0": { + "shasum": "3a50c1b20077f7c91fba3fb94c9cc6e812d437ab", + "tarball": "http://registry.npmjs.org/qq/-/qq-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "dfaab2758ff32c69bf1f9c53de498fad73dc3856", + "tarball": "http://registry.npmjs.org/qq/-/qq-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "f79f8f0c4b473b4f1a67f173d1081d18b452dd09", + "tarball": "http://registry.npmjs.org/qq/-/qq-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "6a38e74e978e5ea5b57d81fef95d4124534c88ef", + "tarball": "http://registry.npmjs.org/qq/-/qq-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "7d3e7abde72967d937c94f18bd5d76b1bdba8f60", + "tarball": "http://registry.npmjs.org/qq/-/qq-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "06644cbcd0cf11417ce155f9db8096d27c1290c5", + "tarball": "http://registry.npmjs.org/qq/-/qq-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "fc33758fec06b5aa46e87becfb6e310804070a93", + "tarball": "http://registry.npmjs.org/qq/-/qq-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "86b2870c67be158aa439828091a492cfc5cf4ef4", + "tarball": "http://registry.npmjs.org/qq/-/qq-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "94b31c7dd1461723247b876175a5ec214f1baff2", + "tarball": "http://registry.npmjs.org/qq/-/qq-0.3.3.tgz" + } + }, + "url": "http://registry.npmjs.org/qq/" + }, + "qqwry": { + "name": "qqwry", + "description": "A node.js driver for libqqwry", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "hidden", + "email": "zzdhidden@gmail.com" + } + ], + "time": { + "modified": "2011-03-18T16:47:40.378Z", + "created": "2011-01-24T13:27:11.716Z", + "0.0.1": "2011-01-24T13:27:13.527Z", + "0.0.2": "2011-01-24T13:46:32.357Z", + "0.0.3": "2011-02-05T09:35:29.259Z", + "0.0.4": "2011-03-18T14:58:42.057Z", + "0.0.5": "2011-03-18T16:47:40.378Z" + }, + "author": { + "name": "Hidden", + "email": "zzdhidden@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/zzdhidden/qqwry-node.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/qqwry/0.0.1", + "0.0.2": "http://registry.npmjs.org/qqwry/0.0.2", + "0.0.3": "http://registry.npmjs.org/qqwry/0.0.3", + "0.0.4": "http://registry.npmjs.org/qqwry/0.0.4", + "0.0.5": "http://registry.npmjs.org/qqwry/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "a325013fa14327e23c332b771602bf4b802e586e", + "tarball": "http://registry.npmjs.org/qqwry/-/qqwry-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "bf3d9f3e4bdfa64f0ba5a3abffd34035ca4197e8", + "tarball": "http://registry.npmjs.org/qqwry/-/qqwry-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "da3c7611ea1016aece565ea5465db9ece547d3d4", + "tarball": "http://registry.npmjs.org/qqwry/-/qqwry-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "c4c87a2cc0c0f45557177d2bab38c9eb5990b074", + "tarball": "http://registry.npmjs.org/qqwry/-/qqwry-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "5d7168c5b9680424fd22e88aca9c79692564109d", + "tarball": "http://registry.npmjs.org/qqwry/-/qqwry-0.0.5.tgz" + } + }, + "keywords": "qqwry,libqqwry", + "url": "http://registry.npmjs.org/qqwry/" + }, + "qr": { + "name": "qr", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "bcelenza", + "email": "bcelenza@gmail.com" + } + ], + "time": { + "modified": "2011-04-01T03:23:33.242Z", + "created": "2011-03-31T02:04:09.672Z", + "0.1.0": "2011-03-31T02:04:09.839Z", + "0.1.1": "2011-03-31T02:05:30.417Z", + "0.1.2": "2011-03-31T02:48:15.391Z", + "0.1.3": "2011-03-31T20:38:34.901Z", + "0.1.4": "2011-04-01T03:23:33.242Z" + }, + "author": { + "name": "Brian Celenza", + "email": "bcelenza@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/bcelenza/node-qr.git" + }, + "description": "A small library to generate QR codes with libqrencode.", + "versions": { + "0.1.0": "http://registry.npmjs.org/qr/0.1.0", + "0.1.1": "http://registry.npmjs.org/qr/0.1.1", + "0.1.2": "http://registry.npmjs.org/qr/0.1.2", + "0.1.3": "http://registry.npmjs.org/qr/0.1.3", + "0.1.4": "http://registry.npmjs.org/qr/0.1.4" + }, + "dist": { + "0.1.0": { + "shasum": "e665b8e58d6d6887ed5ace0f506f5acefb90a622", + "tarball": "http://registry.npmjs.org/qr/-/qr-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "5b96a62e8566cd5c4cd29dbe8ecbdd33c216ee48", + "tarball": "http://registry.npmjs.org/qr/-/qr-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "836b2f1ac5c0fba70295bc0f5135922e1a6f3ecc", + "tarball": "http://registry.npmjs.org/qr/-/qr-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "7e0ad3938c34aa622c86987b701d96e336791ad3", + "tarball": "http://registry.npmjs.org/qr/-/qr-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "1253d358c8554da815565502ad4fafddce0b5616", + "tarball": "http://registry.npmjs.org/qr/-/qr-0.1.4.tgz" + } + }, + "keywords": [ + "qr", + "qrcode", + "qrencode", + "qrencoder" + ], + "url": "http://registry.npmjs.org/qr/" + }, + "qrcode": { + "name": "qrcode", + "description": "QRCode / 2d Barcode api with both server side and client side support using canvas", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "soldair", + "email": "soldair@gmail.com" + } + ], + "time": { + "modified": "2011-04-17T23:23:07.029Z", + "created": "2010-12-21T10:54:37.802Z", + "0.0.1": "2010-12-21T10:54:38.115Z", + "0.0.2": "2010-12-27T05:04:37.889Z", + "0.0.3": "2011-02-27T15:47:46.527Z", + "0.1.0": "2011-04-17T06:56:08.093Z", + "0.1.1": "2011-04-17T23:23:07.029Z" + }, + "author": { + "name": "Ryan Day", + "email": "soldair@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/soldair/node-qrcode.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/qrcode/0.0.1", + "0.0.2": "http://registry.npmjs.org/qrcode/0.0.2", + "0.0.3": "http://registry.npmjs.org/qrcode/0.0.3", + "0.1.0": "http://registry.npmjs.org/qrcode/0.1.0", + "0.1.1": "http://registry.npmjs.org/qrcode/0.1.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/qrcode/-/qrcode-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/qrcode/-/qrcode-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/qrcode/-/qrcode-0.0.3.tgz" + }, + "0.1.0": { + "shasum": "3881754c04bbb284020329363254b3deeedbd73d", + "tarball": "http://registry.npmjs.org/qrcode/-/qrcode-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "9e043cb510b8e4ce33c81a1e5a0a2c7489f964dc", + "tarball": "http://registry.npmjs.org/qrcode/-/qrcode-0.1.1.tgz" + } + }, + "keywords": [ + "canvas", + "qrcode", + "barcode" + ], + "url": "http://registry.npmjs.org/qrcode/" + }, + "qs": { + "name": "qs", + "description": "querystring parser", + "dist-tags": { + "latest": "0.4.0" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "time": { + "modified": "2011-11-22T02:27:15.971Z", + "created": "2011-02-04T04:40:23.617Z", + "0.0.1": "2011-02-04T04:40:23.984Z", + "0.0.2": "2011-02-07T16:45:02.442Z", + "0.0.3": "2011-02-09T00:52:16.616Z", + "0.0.4": "2011-02-09T20:45:35.890Z", + "0.0.5": "2011-02-10T23:45:02.307Z", + "0.0.6": "2011-02-14T22:27:23.241Z", + "0.0.7": "2011-03-13T17:20:41.673Z", + "0.1.0": "2011-04-13T18:07:22.394Z", + "0.2.0": "2011-06-29T16:33:55.231Z", + "0.3.0": "2011-07-19T19:07:48.886Z", + "0.3.1": "2011-11-04T16:33:52.613Z", + "0.3.2": "2011-11-09T03:42:13.569Z", + "0.4.0": "2011-11-22T02:27:15.971Z" + }, + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca", + "url": "http://tjholowaychuk.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/visionmedia/node-querystring.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/qs/0.0.1", + "0.0.2": "http://registry.npmjs.org/qs/0.0.2", + "0.0.3": "http://registry.npmjs.org/qs/0.0.3", + "0.0.4": "http://registry.npmjs.org/qs/0.0.4", + "0.0.5": "http://registry.npmjs.org/qs/0.0.5", + "0.0.6": "http://registry.npmjs.org/qs/0.0.6", + "0.0.7": "http://registry.npmjs.org/qs/0.0.7", + "0.1.0": "http://registry.npmjs.org/qs/0.1.0", + "0.2.0": "http://registry.npmjs.org/qs/0.2.0", + "0.3.0": "http://registry.npmjs.org/qs/0.3.0", + "0.3.1": "http://registry.npmjs.org/qs/0.3.1", + "0.3.2": "http://registry.npmjs.org/qs/0.3.2", + "0.4.0": "http://registry.npmjs.org/qs/0.4.0" + }, + "dist": { + "0.0.1": { + "shasum": "ce6017433e83b67231af788c6eb00ba0dba3f964", + "tarball": "http://registry.npmjs.org/qs/-/qs-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "b4a180d16b43d7f592128e9f6b609e3f225a8d7a", + "tarball": "http://registry.npmjs.org/qs/-/qs-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "e16a190316d4eca7555c6d361f1aa9f1ff4ce124", + "tarball": "http://registry.npmjs.org/qs/-/qs-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "5484dfa3cb8f58cca93ba1247d8a3015be0d9cfa", + "tarball": "http://registry.npmjs.org/qs/-/qs-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "54e6adc62a8bfd1d837d81cd6bf1d68ff203aba5", + "tarball": "http://registry.npmjs.org/qs/-/qs-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "481659b7e5bf6a5ea898010de5aed35eb469e124", + "tarball": "http://registry.npmjs.org/qs/-/qs-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "7a85d1c3cd17ad9ba94211cbb24b57f88f75ec40", + "tarball": "http://registry.npmjs.org/qs/-/qs-0.0.7.tgz" + }, + "0.1.0": { + "shasum": "9a0d2d70d01f63d3401ea4b050822601b462ee6b", + "tarball": "http://registry.npmjs.org/qs/-/qs-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "b39234e77a55f6276a9ca305210db02304792487", + "tarball": "http://registry.npmjs.org/qs/-/qs-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "502ec1168b8f778921c31d0e4351759bb97cfb84", + "tarball": "http://registry.npmjs.org/qs/-/qs-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "42871928506939d6b29d1b192f20e2a28b2c69f4", + "tarball": "http://registry.npmjs.org/qs/-/qs-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "099df444cab947bbadb2bfedda56d33519d6815c", + "tarball": "http://registry.npmjs.org/qs/-/qs-0.3.2.tgz" + }, + "0.4.0": { + "shasum": "32343c3df5937fcd46e10bd0521b31a01b062705", + "tarball": "http://registry.npmjs.org/qs/-/qs-0.4.0.tgz" + } + }, + "url": "http://registry.npmjs.org/qs/" + }, + "quack-array": { + "name": "quack-array", + "description": "turn objects that quack like arrays into arrays", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-07-18T02:31:09.272Z", + "created": "2011-07-17T05:40:59.998Z", + "0.0.0": "2011-07-17T05:41:00.768Z", + "0.0.1": "2011-07-18T02:31:09.272Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-quack-array.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/quack-array/0.0.0", + "0.0.1": "http://registry.npmjs.org/quack-array/0.0.1" + }, + "dist": { + "0.0.0": { + "shasum": "8f04c18f43d2c0cfb072ecd7fc18778492e8fb2b", + "tarball": "http://registry.npmjs.org/quack-array/-/quack-array-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "fd47a7c0dac3668af754f18261dcb20376109e58", + "tarball": "http://registry.npmjs.org/quack-array/-/quack-array-0.0.1.tgz" + } + }, + "keywords": [ + "quack", + "duck", + "array", + "list", + "typing", + "type" + ], + "url": "http://registry.npmjs.org/quack-array/" + }, + "quadprog": { + "name": "quadprog", + "description": "Module for solving quadratic programming problems", + "dist-tags": { + "latest": "1.0.2" + }, + "maintainers": [ + { + "name": "icebox", + "email": "albertosantini@gmail.com" + } + ], + "time": { + "modified": "2011-09-19T20:09:35.838Z", + "created": "2011-09-13T18:11:26.934Z", + "1.0.0": "2011-09-13T18:11:30.314Z", + "1.0.1": "2011-09-13T18:26:40.200Z", + "1.0.2": "2011-09-19T20:09:35.838Z" + }, + "author": { + "name": "Alberto Santini" + }, + "repository": { + "type": "git", + "url": "git://github.com/albertosantini/node-quadprog.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/quadprog/1.0.0", + "1.0.1": "http://registry.npmjs.org/quadprog/1.0.1", + "1.0.2": "http://registry.npmjs.org/quadprog/1.0.2" + }, + "dist": { + "1.0.0": { + "shasum": "0edabf5d3dff172684646ec80a40a8931ddab0cb", + "tarball": "http://registry.npmjs.org/quadprog/-/quadprog-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "7b7a633527c8ffbc015ec3cdc7805287cd787862", + "tarball": "http://registry.npmjs.org/quadprog/-/quadprog-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "9e6f7ceba5917bbd67dc9c73eab241bee829835c", + "tarball": "http://registry.npmjs.org/quadprog/-/quadprog-1.0.2.tgz" + } + }, + "keywords": [ + "quadprog", + "solving", + "quadratic" + ], + "url": "http://registry.npmjs.org/quadprog/" + }, + "quadraticon": { + "name": "quadraticon", + "description": "Quadratic equation solver", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "vadimon", + "email": "vadimon@gmail.com" + } + ], + "time": { + "modified": "2011-08-28T22:36:55.719Z", + "created": "2011-08-26T05:29:25.998Z", + "0.1.0": "2011-08-26T05:29:26.800Z", + "0.1.1": "2011-08-26T05:37:10.816Z", + "0.1.2": "2011-08-27T06:40:16.958Z", + "0.1.3": "2011-08-27T06:52:17.448Z", + "0.1.4": "2011-08-27T18:06:00.542Z", + "0.1.5": "2011-08-27T18:58:19.300Z", + "0.1.6": "2011-08-27T19:22:01.786Z", + "0.1.7": "2011-08-27T19:48:21.742Z", + "0.1.8": "2011-08-28T04:28:26.905Z", + "0.1.9": "2011-08-28T07:46:03.801Z", + "0.2.1": "2011-08-28T22:34:56.845Z" + }, + "author": { + "name": "Vadim Ogievetsky", + "email": "vadimon@gmail.com" + }, + "versions": { + "0.2.1": "http://registry.npmjs.org/quadraticon/0.2.1" + }, + "dist": { + "0.2.1": { + "shasum": "922065dc6c7394390c43725226c2185a579bce97", + "tarball": "http://npmf.iriscouch.com/registry/_design/app/_rewrite/quadraticon/-/quadraticon-0.2.1.tgz" + } + }, + "url": "http://registry.npmjs.org/quadraticon/" + }, + "quartz": { + "name": "quartz", + "description": "A module to interface node with transmission-daemon", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "# Quartz\nA module to interface with Transmission's RPC\n\n# How to install\n`npm install quartz`\n\n# Functions\n\n## quartz.connect(options, callback)\n var quartz = require('quartz');\n\n quartz.connect({\n url: \"http://localhost:9091/transmission/rpc\"\n , auth_required: false\n , username: \"admin\"\n , password: \"password\"\n }, function(err) {\n if (err) { console.log(err); } else {\n // Connected!\n }\n });\n\n## quartz.query(method, args, callback)\n // after connect\n\n quartz.query(\n 'torrent-get',\n {fields: ['id', 'name']},\n function(err, res, body) {\n if (err) {\n console.log(err);\n } else {\n // do stuff\n }\n }\n );\n\n# Features\n* Auth based login support\n\n# Todo\n* Functions for each RPC call\n\n# Author\n* Robin Duckett <[robin.duckett@gmail.com](mailto:robin.duckett@gmail.com)>", + "maintainers": [ + { + "name": "robinduckett", + "email": "robin.duckett@gmail.com" + } + ], + "time": { + "modified": "2011-11-24T21:53:38.464Z", + "created": "2011-11-24T21:53:36.699Z", + "0.0.1": "2011-11-24T21:53:38.464Z" + }, + "author": { + "name": "Robin Duckett", + "email": "robin.duckett@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/robinduckett/quartz.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/quartz/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "6f4d70b4eabae3de2a8f833a5ee5db80a5e39f4b", + "tarball": "http://registry.npmjs.org/quartz/-/quartz-0.0.1.tgz" + } + }, + "keywords": [ + "transmission", + "quartz", + "transmission-daemon" + ], + "url": "http://registry.npmjs.org/quartz/" + }, + "quasi": { + "name": "quasi", + "description": "Tiny traversal and manipulation utility with jQuery-subset API", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "joshski", + "email": "joshuachisholm@gmail.com" + } + ], + "time": { + "modified": "2011-07-03T14:22:52.995Z", + "created": "2011-07-03T14:22:52.447Z", + "0.0.1": "2011-07-03T14:22:52.995Z" + }, + "author": { + "name": "Josh Chisholm" + }, + "repository": { + "type": "git", + "url": "git://github.com/joshski/quasi.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/quasi/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "e9b24e807561df51f0177fb90d5f8b362933da34", + "tarball": "http://registry.npmjs.org/quasi/-/quasi-0.0.1.tgz" + } + }, + "keywords": [ + "dom", + "jquery", + "querySelector" + ], + "url": "http://registry.npmjs.org/quasi/" + }, + "querify": { + "name": "querify", + "description": "a query interpreter for javascript and node.js", + "dist-tags": { + "latest": "0.2.3" + }, + "maintainers": [ + { + "name": "mafintosh", + "email": "mathiasbuus@gmail.com" + } + ], + "time": { + "modified": "2011-10-18T19:39:04.506Z", + "created": "2011-10-10T21:46:17.476Z", + "0.2.0": "2011-10-10T21:46:20.298Z", + "0.2.1": "2011-10-11T13:08:37.175Z", + "0.2.2": "2011-10-11T13:16:56.942Z", + "0.2.3": "2011-10-18T19:39:04.506Z" + }, + "author": { + "name": "pubsub.io" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/querify/0.2.0", + "0.2.1": "http://registry.npmjs.org/querify/0.2.1", + "0.2.2": "http://registry.npmjs.org/querify/0.2.2", + "0.2.3": "http://registry.npmjs.org/querify/0.2.3" + }, + "dist": { + "0.2.0": { + "shasum": "07bfbc0ccd1d32edf4704b562b52f643ceee3809", + "tarball": "http://registry.npmjs.org/querify/-/querify-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "b9482d47d71980650fe553ae17cab8230389d1b2", + "tarball": "http://registry.npmjs.org/querify/-/querify-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "9acdfdd2a44ba128beb91bd7e59ec14786a4d0f6", + "tarball": "http://registry.npmjs.org/querify/-/querify-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "152f4500a8133be629500b5d8bb3b3ff7f697751", + "tarball": "http://registry.npmjs.org/querify/-/querify-0.2.3.tgz" + } + }, + "url": "http://registry.npmjs.org/querify/" + }, + "query": { + "name": "query", + "description": "command-line jquery", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "time": { + "modified": "2011-04-07T15:36:10.970Z", + "created": "2011-02-08T12:50:42.979Z", + "0.0.1": "2011-02-08T12:50:43.572Z", + "0.0.2": "2011-02-08T15:10:28.110Z", + "0.0.3": "2011-02-08T17:58:11.166Z", + "0.1.0": "2011-02-09T00:29:28.235Z", + "0.1.1": "2011-02-09T21:29:05.829Z", + "0.2.0": "2011-04-07T15:36:10.970Z" + }, + "author": { + "name": "TJ Holowaychuk" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/query/0.0.1", + "0.0.2": "http://registry.npmjs.org/query/0.0.2", + "0.0.3": "http://registry.npmjs.org/query/0.0.3", + "0.1.0": "http://registry.npmjs.org/query/0.1.0", + "0.1.1": "http://registry.npmjs.org/query/0.1.1", + "0.2.0": "http://registry.npmjs.org/query/0.2.0" + }, + "dist": { + "0.0.1": { + "shasum": "60526b1a7c2bc3f869640e0336206e1986f8004e", + "tarball": "http://registry.npmjs.org/query/-/query-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "0fa9364fd6632a4404c96890f738823797b9f914", + "tarball": "http://registry.npmjs.org/query/-/query-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "f3ff679a53c8c957939dc5df960c886dc72a0a1d", + "tarball": "http://registry.npmjs.org/query/-/query-0.0.3.tgz" + }, + "0.1.0": { + "shasum": "67638286210dd7135bd8d0359eb2728b287d2a0b", + "tarball": "http://registry.npmjs.org/query/-/query-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "36fc7c8dbcda98dd85b6c713a20c5b90f98db8d9", + "tarball": "http://registry.npmjs.org/query/-/query-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "da557f609a9a9be2007994d7c5e5c496b79afe53", + "tarball": "http://registry.npmjs.org/query/-/query-0.2.0.tgz" + } + }, + "keywords": [ + "jquery", + "html", + "jsdom", + "dom" + ], + "url": "http://registry.npmjs.org/query/" + }, + "query-engine": { + "name": "query-engine", + "description": "A NoSQL (and MongoDB compliant) Query Engine coded in CoffeeScript for Server-Side use with Node.js and Client-Side use with url-Browsers", + "dist-tags": { + "latest": "0.5.3" + }, + "maintainers": [ + { + "name": "balupton", + "email": "b@lupton.cc" + } + ], + "time": { + "modified": "2011-11-02T08:42:14.297Z", + "created": "2011-07-06T04:10:59.371Z", + "0.1.0": "2011-07-06T04:11:02.646Z", + "0.1.1": "2011-07-06T04:12:28.196Z", + "0.2.0": "2011-07-06T05:29:14.819Z", + "0.2.1": "2011-07-06T05:51:38.683Z", + "0.2.2": "2011-07-06T06:08:17.320Z", + "0.3.0": "2011-08-11T10:40:25.088Z", + "0.3.1": "2011-08-13T04:29:11.427Z", + "0.4.0": "2011-08-13T06:11:43.042Z", + "0.5.1": "2011-08-14T11:59:25.046Z", + "0.5.2": "2011-09-05T02:08:28.308Z", + "0.5.3": "2011-11-02T08:42:14.297Z" + }, + "author": { + "name": "Benjamin Lupton", + "email": "b@lupton.cc", + "url": "http://balupton.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/balupton/query-engine.npm.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/query-engine/0.1.0", + "0.1.1": "http://registry.npmjs.org/query-engine/0.1.1", + "0.2.0": "http://registry.npmjs.org/query-engine/0.2.0", + "0.2.1": "http://registry.npmjs.org/query-engine/0.2.1", + "0.2.2": "http://registry.npmjs.org/query-engine/0.2.2", + "0.3.0": "http://registry.npmjs.org/query-engine/0.3.0", + "0.3.1": "http://registry.npmjs.org/query-engine/0.3.1", + "0.4.0": "http://registry.npmjs.org/query-engine/0.4.0", + "0.5.1": "http://registry.npmjs.org/query-engine/0.5.1", + "0.5.2": "http://registry.npmjs.org/query-engine/0.5.2", + "0.5.3": "http://registry.npmjs.org/query-engine/0.5.3" + }, + "dist": { + "0.1.0": { + "shasum": "621c51d75add75c1e8ae26d98b927a213eb4f271", + "tarball": "http://registry.npmjs.org/query-engine/-/query-engine-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "312c34599410671297781b128c57b6f457296263", + "tarball": "http://registry.npmjs.org/query-engine/-/query-engine-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "f8b49d6af153b0435f3290b35044f7cb068beeb0", + "tarball": "http://registry.npmjs.org/query-engine/-/query-engine-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "972aa2e388742d3b509f2aa75774f123acbef5dc", + "tarball": "http://registry.npmjs.org/query-engine/-/query-engine-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "0ca08c99ef967a216608cdf008a87a9ca546703f", + "tarball": "http://registry.npmjs.org/query-engine/-/query-engine-0.2.2.tgz" + }, + "0.3.0": { + "shasum": "b673ef3dc10d4396951475315e8b29966c7bf90c", + "tarball": "http://registry.npmjs.org/query-engine/-/query-engine-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "752b39549e290ac0c2e5255136db3bc0a32686a9", + "tarball": "http://registry.npmjs.org/query-engine/-/query-engine-0.3.1.tgz" + }, + "0.4.0": { + "shasum": "00a9b7bacb6cf86fb6eba54b4e12633712557890", + "tarball": "http://registry.npmjs.org/query-engine/-/query-engine-0.4.0.tgz" + }, + "0.5.1": { + "shasum": "b00bb6a69ab925a8d6ebcdd37e9a7c425d135069", + "tarball": "http://registry.npmjs.org/query-engine/-/query-engine-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "91c71e6e1cb3da94b32c7567e079a704a6b5d7b4", + "tarball": "http://registry.npmjs.org/query-engine/-/query-engine-0.5.2.tgz" + }, + "0.5.3": { + "shasum": "be901348fcc8ae22f9997237239116393e7fc7db", + "tarball": "http://registry.npmjs.org/query-engine/-/query-engine-0.5.3.tgz" + } + }, + "keywords": [ + "coffeescript", + "query-engine", + "nosql", + "query", + "sql" + ], + "url": "http://registry.npmjs.org/query-engine/" + }, + "querystring": { + "name": "querystring", + "description": "Node's querystring module for all engines.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "gozala", + "email": "rfobic@gmail.com" + } + ], + "time": { + "modified": "2011-12-13T19:26:29.378Z", + "created": "2011-04-15T13:01:20.436Z", + "0.0.1": "2011-04-15T13:01:21.027Z", + "0.0.4": "2011-08-01T21:10:27.098Z", + "0.1.0": "2011-12-13T19:26:29.378Z" + }, + "author": { + "name": "Irakli Gozalishvili", + "email": "rfobic@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Gozala/querystring.git", + "web": "https://github.com/Gozala/querystring" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/querystring/0.0.1", + "0.0.4": "http://registry.npmjs.org/querystring/0.0.4", + "0.1.0": "http://registry.npmjs.org/querystring/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "755e68a917a3b9bb9d86dac66b02eb32e786bd2b", + "tarball": "http://registry.npmjs.org/querystring/-/querystring-0.0.1.tgz" + }, + "0.0.4": { + "shasum": "fe9f22fb5bce6fae4a78d739455ed388149c2401", + "tarball": "http://registry.npmjs.org/querystring/-/querystring-0.0.4.tgz" + }, + "0.1.0": { + "shasum": "cb76a26cda0a10a94163fcdb3e132827f04b7b10", + "tarball": "http://registry.npmjs.org/querystring/-/querystring-0.1.0.tgz" + } + }, + "keywords": [ + "commonjs", + "query", + "querystring" + ], + "url": "http://registry.npmjs.org/querystring/" + }, + "queue": { + "name": "queue", + "description": "A node.js event queue module.", + "dist-tags": { + "latest": "1.1.4" + }, + "maintainers": [ + { + "name": "dreamerslab", + "email": "ben@dreamerslab.com" + } + ], + "time": { + "modified": "2011-07-08T04:26:26.399Z", + "created": "2011-07-08T04:26:24.792Z", + "1.1.4": "2011-07-08T04:26:26.399Z" + }, + "author": { + "name": "dreamerslab", + "email": "ben@dreamerslab.com" + }, + "versions": { + "1.1.4": "http://registry.npmjs.org/queue/1.1.4" + }, + "dist": { + "1.1.4": { + "shasum": "470fb761816b9ef49308fd8f03d8c4c13d1147dc", + "tarball": "http://registry.npmjs.org/queue/-/queue-1.1.4.tgz" + } + }, + "keywords": [ + "queue", + "event-queue" + ], + "url": "http://registry.npmjs.org/queue/" + }, + "queuelib": { + "name": "queuelib", + "description": "Fast event driven Queue processor - FIFO over asynchronous functions with Flow control!", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "rook2pawn", + "email": "rook2pawn@gmail.com" + } + ], + "time": { + "modified": "2011-10-17T10:40:17.669Z", + "created": "2011-07-17T13:51:48.906Z", + "0.0.0": "2011-07-17T13:51:49.841Z", + "0.0.1": "2011-07-18T07:45:05.890Z", + "0.0.2": "2011-07-18T11:06:05.975Z", + "0.0.3": "2011-07-22T03:11:30.166Z", + "0.0.4": "2011-07-22T14:09:49.372Z", + "0.0.5": "2011-07-23T09:15:47.233Z", + "0.0.6": "2011-07-24T09:50:26.165Z", + "0.0.8": "2011-08-11T23:52:21.714Z", + "0.0.9": "2011-08-15T12:52:50.708Z", + "0.0.10": "2011-08-20T00:53:06.690Z", + "0.1.0": "2011-10-10T22:38:43.758Z", + "0.1.1": "2011-10-17T10:40:17.670Z" + }, + "author": { + "name": "David Wee", + "email": "rook2pawn@gmail.com", + "url": "http://rook2pawn.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/rook2pawn/node-queuelib.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/queuelib/0.0.0", + "0.0.1": "http://registry.npmjs.org/queuelib/0.0.1", + "0.0.2": "http://registry.npmjs.org/queuelib/0.0.2", + "0.0.3": "http://registry.npmjs.org/queuelib/0.0.3", + "0.0.4": "http://registry.npmjs.org/queuelib/0.0.4", + "0.0.5": "http://registry.npmjs.org/queuelib/0.0.5", + "0.0.6": "http://registry.npmjs.org/queuelib/0.0.6", + "0.0.8": "http://registry.npmjs.org/queuelib/0.0.8", + "0.0.9": "http://registry.npmjs.org/queuelib/0.0.9", + "0.0.10": "http://registry.npmjs.org/queuelib/0.0.10", + "0.1.0": "http://registry.npmjs.org/queuelib/0.1.0", + "0.1.1": "http://registry.npmjs.org/queuelib/0.1.1" + }, + "dist": { + "0.0.0": { + "shasum": "eb883f80d7ce778872a15d3eb965213cdf73086f", + "tarball": "http://registry.npmjs.org/queuelib/-/queuelib-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "8164619a3c1f5bcf2fcb77cffa5c996e55fc8ba1", + "tarball": "http://registry.npmjs.org/queuelib/-/queuelib-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "ff60b1e79531a2e192fd6cb586c8fc31cab4bd80", + "tarball": "http://registry.npmjs.org/queuelib/-/queuelib-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "0f7869c6cf5fae8682128a22fa847bd2672b7702", + "tarball": "http://registry.npmjs.org/queuelib/-/queuelib-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "6c8181979277fef23e60cef7b86f7606eb526c75", + "tarball": "http://registry.npmjs.org/queuelib/-/queuelib-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "8d06b14a5896884713eed480b6582abe30a1f5f4", + "tarball": "http://registry.npmjs.org/queuelib/-/queuelib-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "408257de07036c109357c8b821c486c6d67e90f2", + "tarball": "http://registry.npmjs.org/queuelib/-/queuelib-0.0.6.tgz" + }, + "0.0.8": { + "shasum": "1ba54287412367180d3a8c881860d71c21d01b19", + "tarball": "http://registry.npmjs.org/queuelib/-/queuelib-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "3ef69d97691c0d040f62a8920d70813bb62732d9", + "tarball": "http://registry.npmjs.org/queuelib/-/queuelib-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "77b9a4d3ee878dee39406c19a74542c8b5ad5ef8", + "tarball": "http://registry.npmjs.org/queuelib/-/queuelib-0.0.10.tgz" + }, + "0.1.0": { + "shasum": "58302a6d2e3740498236f09e4e575c214b37fe70", + "tarball": "http://registry.npmjs.org/queuelib/-/queuelib-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "778a4c46f8b421a054d093c96ad0905fffac893d", + "tarball": "http://registry.npmjs.org/queuelib/-/queuelib-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/queuelib/" + }, + "queuestream": { + "name": "queuestream", + "description": "Queue streams for sequential streaming.", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "ncb000gt", + "email": "nicholas.j.campbell@gmail.com" + } + ], + "time": { + "modified": "2011-09-30T05:15:10.019Z", + "created": "2011-09-29T17:56:27.313Z", + "0.0.1": "2011-09-29T17:56:27.694Z", + "0.0.2": "2011-09-30T03:01:22.165Z", + "0.0.3": "2011-09-30T03:07:00.159Z", + "0.0.4": "2011-09-30T03:08:14.563Z", + "0.0.5": "2011-09-30T05:15:10.019Z" + }, + "author": { + "name": "Nick Campbell", + "url": "http://github.com/ncb000gt" + }, + "repository": { + "type": "git", + "url": "git://github.com/ncb000gt/node-queuestream.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/queuestream/0.0.1", + "0.0.2": "http://registry.npmjs.org/queuestream/0.0.2", + "0.0.3": "http://registry.npmjs.org/queuestream/0.0.3", + "0.0.4": "http://registry.npmjs.org/queuestream/0.0.4", + "0.0.5": "http://registry.npmjs.org/queuestream/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "0149e36d370fc31b4387868ca09b26ad2976f8bf", + "tarball": "http://registry.npmjs.org/queuestream/-/queuestream-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "a3cda1e110eb050d7fb517fc8b24411e49de17c3", + "tarball": "http://registry.npmjs.org/queuestream/-/queuestream-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "b696bef4dbecd107777ac7910bbebc0cd846c827", + "tarball": "http://registry.npmjs.org/queuestream/-/queuestream-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "1668c06a949dd7f3c69361215267a73bdb7bced7", + "tarball": "http://registry.npmjs.org/queuestream/-/queuestream-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "16a88fc859a5ca5e699245d4e687c638de62de34", + "tarball": "http://registry.npmjs.org/queuestream/-/queuestream-0.0.5.tgz" + } + }, + "keywords": [ + "queue", + "stream", + "streams" + ], + "url": "http://registry.npmjs.org/queuestream/" + }, + "quickcheck": { + "name": "quickcheck", + "description": "Node.js port of the QuickCheck unit test framework", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "mcandre", + "email": "andrew.pennebaker@gmail.com" + } + ], + "time": { + "modified": "2011-12-06T19:11:40.756Z", + "created": "2011-03-14T20:08:24.584Z", + "0.0.0": "2011-12-06T19:11:40.756Z", + "0.0.1": "2011-12-06T19:11:40.756Z", + "0.0.2": "2011-12-06T19:11:40.756Z", + "0.0.3": "2011-12-06T19:11:40.756Z" + }, + "author": { + "name": "Andrew Pennebaker", + "email": "andrew.pennebaker@gmail.com", + "url": "http://www.yellosoft.us/" + }, + "repository": { + "type": "git", + "url": "git://github.com/mcandre/node-quickcheck.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/quickcheck/0.0.0", + "0.0.1": "http://registry.npmjs.org/quickcheck/0.0.1", + "0.0.2": "http://registry.npmjs.org/quickcheck/0.0.2", + "0.0.3": "http://registry.npmjs.org/quickcheck/0.0.3" + }, + "dist": { + "0.0.0": { + "shasum": "d9816350b3f6648dc59929e29fe30a187f8b76cf", + "tarball": "http://registry.npmjs.org/quickcheck/-/quickcheck-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "af51654a9ae33e9a93e0e131794d4e075172f623", + "tarball": "http://registry.npmjs.org/quickcheck/-/quickcheck-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "7f7e03a53e0a5e200589a1613440d5287845f102", + "tarball": "http://registry.npmjs.org/quickcheck/-/quickcheck-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "3b33079475d2b902c233fceec9e8809eb8604669", + "tarball": "http://registry.npmjs.org/quickcheck/-/quickcheck-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/quickcheck/" + }, + "quickserve": { + "name": "quickserve", + "description": "Utility to instantly serve static content from a given directory. Useful for quickly running local examples that use AJAX in Chrome.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "kirbysayshi", + "email": "senofpeter@gmail.com" + } + ], + "time": { + "modified": "2011-06-29T03:55:51.894Z", + "created": "2011-06-29T03:55:51.663Z", + "0.0.1": "2011-06-29T03:55:51.894Z" + }, + "author": { + "name": "Andrew Petersen", + "email": "senofpeter@gmail.com", + "url": "http://kirbysayshi.github.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/kirbysayshi/node-quickserve.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/quickserve/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "b13db903efb620f3c1ce72a1a077b675892f3866", + "tarball": "http://registry.npmjs.org/quickserve/-/quickserve-0.0.1.tgz" + } + }, + "keywords": [ + "connect", + "server", + "http", + "utility", + "quick", + "command line" + ], + "url": "http://registry.npmjs.org/quickserve/" + }, + "QuickWeb": { + "name": "QuickWeb", + "description": "Easy to set up your Node.js web server environment.", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "leizongmin", + "email": "leizongmin@gmail.com" + } + ], + "time": { + "modified": "2011-12-13T15:09:33.933Z", + "created": "2011-09-15T03:25:07.672Z", + "0.1.0": "2011-09-15T03:25:09.742Z", + "0.1.1": "2011-09-15T03:43:29.682Z", + "0.1.3": "2011-09-15T12:54:04.295Z", + "0.1.4": "2011-09-17T10:04:29.404Z", + "0.1.5": "2011-09-19T08:06:49.083Z", + "0.1.6": "2011-09-22T07:16:41.964Z", + "0.1.7": "2011-09-24T08:10:58.497Z", + "0.1.8": "2011-09-29T06:43:01.950Z", + "0.1.9": "2011-10-10T07:14:41.859Z", + "0.1.10": "2011-10-11T10:35:11.400Z", + "0.1.12": "2011-10-17T15:25:17.072Z", + "0.2.0": "2011-11-05T04:21:54.157Z", + "0.2.1": "2011-12-13T15:09:33.933Z" + }, + "author": { + "name": "leizongmin", + "email": "leizongmin@gmail.com", + "url": "http://ucdok.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/leizongmin/QuickWeb.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/QuickWeb/0.1.0", + "0.1.1": "http://registry.npmjs.org/QuickWeb/0.1.1", + "0.1.3": "http://registry.npmjs.org/QuickWeb/0.1.3", + "0.1.4": "http://registry.npmjs.org/QuickWeb/0.1.4", + "0.1.5": "http://registry.npmjs.org/QuickWeb/0.1.5", + "0.1.6": "http://registry.npmjs.org/QuickWeb/0.1.6", + "0.1.7": "http://registry.npmjs.org/QuickWeb/0.1.7", + "0.1.8": "http://registry.npmjs.org/QuickWeb/0.1.8", + "0.1.9": "http://registry.npmjs.org/QuickWeb/0.1.9", + "0.1.10": "http://registry.npmjs.org/QuickWeb/0.1.10", + "0.1.12": "http://registry.npmjs.org/QuickWeb/0.1.12", + "0.2.0": "http://registry.npmjs.org/QuickWeb/0.2.0", + "0.2.1": "http://registry.npmjs.org/QuickWeb/0.2.1" + }, + "dist": { + "0.1.0": { + "shasum": "590caa9c210e843a5cd39324add3d3c93f7a78d7", + "tarball": "http://registry.npmjs.org/QuickWeb/-/QuickWeb-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "93af8e295d3e86b297084f5bfc1945afd0571297", + "tarball": "http://registry.npmjs.org/QuickWeb/-/QuickWeb-0.1.1.tgz" + }, + "0.1.3": { + "shasum": "832e6603f59ba1c5d7e0fd363d49d4b0dc78d2f3", + "tarball": "http://registry.npmjs.org/QuickWeb/-/QuickWeb-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "5a4b3f3c00cc675f18eaa7f0effd069635cacfe4", + "tarball": "http://registry.npmjs.org/QuickWeb/-/QuickWeb-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "0a4fe672d18c11822d4f8bdd8c77b8fdfb5c9a88", + "tarball": "http://registry.npmjs.org/QuickWeb/-/QuickWeb-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "8f6e988266de6397510fec7ed1b6d889edeb37c4", + "tarball": "http://registry.npmjs.org/QuickWeb/-/QuickWeb-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "4296ad14c3a145f4a88666d26ee6c0541b30b138", + "tarball": "http://registry.npmjs.org/QuickWeb/-/QuickWeb-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "82f98752247c16b89fc8ab1310cf63b1f266d97d", + "tarball": "http://registry.npmjs.org/QuickWeb/-/QuickWeb-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "b6a2f6d9ef0706e5fadc506d5f9cee5911ceca09", + "tarball": "http://registry.npmjs.org/QuickWeb/-/QuickWeb-0.1.9.tgz" + }, + "0.1.10": { + "shasum": "f27742d2d20433ff682ab86cd85168379795bc79", + "tarball": "http://registry.npmjs.org/QuickWeb/-/QuickWeb-0.1.10.tgz" + }, + "0.1.12": { + "shasum": "bd224bccfd03dfc53c9b369323177dc40744c742", + "tarball": "http://registry.npmjs.org/QuickWeb/-/QuickWeb-0.1.12.tgz" + }, + "0.2.0": { + "shasum": "040116639358251e0c71bbf05949c8c35b232e2f", + "tarball": "http://registry.npmjs.org/QuickWeb/-/QuickWeb-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "3212d31a556cfd92a7eec7ee5075bd76698cdf31", + "tarball": "http://registry.npmjs.org/QuickWeb/-/QuickWeb-0.2.1.tgz" + } + }, + "url": "http://registry.npmjs.org/QuickWeb/" + }, + "quip": { + "name": "quip", + "description": "A chainable API for response objects in node", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "caolan", + "email": "caolan@caolanmcmahon.com" + } + ], + "author": { + "name": "Caolan McMahon" + }, + "repository": { + "type": "git", + "url": "http://github.com/caolan/quip.git" + }, + "time": { + "modified": "2011-03-20T10:21:57.772Z", + "created": "2011-03-20T10:21:57.772Z", + "0.0.1": "2011-03-20T10:21:57.772Z", + "0.0.2": "2011-03-20T10:21:57.772Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/quip/0.0.1", + "0.0.2": "http://registry.npmjs.org/quip/0.0.2" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/quip/-/quip-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/quip/-/quip-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/quip/" + }, + "quiz": { + "name": "quiz", + "description": "Another simple test framework.", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "# quiz\n\n\tvar Quiz = require('Quiz');\n\tmodule.exports = new Quiz('Something to test', function () {\n\t\tthis.test('unit', function () {\n\t\t\tthis.test('subunit', function () {\n\t\t\t\tthis.assert(function () {\n\t\t\t\t\treturn;\n\t\t\t\t});\n\t\t\t\tthis.async(function (end) {\n\t\t\t\t\tend();\n\t\t\t\t});\n\t\t\t})\n\t\t})\n\t}).reportLog();\n\n## Installation\n\n\t$ npm install quiz\n\n## Running Tests\n\n\t$ node test\n\n## MIT License \n\nCopyright (C) 2011 by Roland Poulter\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.", + "maintainers": [ + { + "name": "rolandpoulter", + "email": "rolandpoulter@gmail.com" + } + ], + "time": { + "modified": "2011-11-20T01:38:40.921Z", + "created": "2011-11-20T01:38:39.491Z", + "0.1.0": "2011-11-20T01:38:40.921Z" + }, + "author": { + "name": "Roland Poulter" + }, + "repository": { + "type": "git", + "url": "git://github.com/rolandpoulter/quiz.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/quiz/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "af659e0f7e0db0d06b71e44a696b3afb2a97b49c", + "tarball": "http://registry.npmjs.org/quiz/-/quiz-0.1.0.tgz" + } + }, + "keywords": [ + "unit", + "test", + "runner", + "async", + "asynchronous", + "assert", + "spec", + "browser" + ], + "url": "http://registry.npmjs.org/quiz/" + }, + "qunit": { + "name": "qunit", + "description": "A port of QUnit unit testing framework to nodejs", + "dist-tags": { + "latest": "0.2.9", + "stable": "0.1.3" + }, + "maintainers": [ + { + "name": "kof", + "email": "oleg008@gmail.com" + } + ], + "author": { + "name": "Oleg Slobodskoi", + "email": "oleg008@gmail.com" + }, + "repository": { + "type": "git", + "url": "http: //github.com/kof/node-qunit.git" + }, + "time": { + "modified": "2011-12-08T01:16:09.783Z", + "created": "2010-12-30T11:59:10.371Z", + "0.0.3": "2011-12-08T01:16:09.783Z", + "0.0.4": "2011-12-08T01:16:09.783Z", + "0.0.5": "2011-12-08T01:16:09.783Z", + "0.0.6": "2011-12-08T01:16:09.783Z", + "0.0.7": "2011-12-08T01:16:09.783Z", + "0.0.8": "2011-12-08T01:16:09.783Z", + "0.1.1": "2011-12-08T01:16:09.783Z", + "0.1.2": "2011-12-08T01:16:09.783Z", + "0.1.3": "2011-12-08T01:16:09.783Z", + "0.1.5": "2011-12-08T01:16:09.783Z", + "0.2.0pre": "2011-12-08T01:16:09.783Z", + "0.2.2pre": "2011-12-08T01:16:09.783Z", + "0.2.3pre": "2011-12-08T01:16:09.783Z", + "0.2.4pre": "2011-12-08T01:16:09.783Z", + "0.2.5pre": "2011-12-08T01:16:09.783Z", + "0.2.6": "2011-11-07T22:15:52.706Z", + "0.2.7": "2011-11-22T22:47:48.828Z", + "0.2.8": "2011-11-22T22:58:14.773Z", + "0.2.9": "2011-12-08T01:16:09.783Z" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/qunit/0.0.3", + "0.0.4": "http://registry.npmjs.org/qunit/0.0.4", + "0.0.5": "http://registry.npmjs.org/qunit/0.0.5", + "0.0.6": "http://registry.npmjs.org/qunit/0.0.6", + "0.0.7": "http://registry.npmjs.org/qunit/0.0.7", + "0.0.8": "http://registry.npmjs.org/qunit/0.0.8", + "0.1.1": "http://registry.npmjs.org/qunit/0.1.1", + "0.1.2": "http://registry.npmjs.org/qunit/0.1.2", + "0.1.3": "http://registry.npmjs.org/qunit/0.1.3", + "0.1.5": "http://registry.npmjs.org/qunit/0.1.5", + "0.2.0pre": "http://registry.npmjs.org/qunit/0.2.0pre", + "0.2.2pre": "http://registry.npmjs.org/qunit/0.2.2pre", + "0.2.3pre": "http://registry.npmjs.org/qunit/0.2.3pre", + "0.2.4pre": "http://registry.npmjs.org/qunit/0.2.4pre", + "0.2.5pre": "http://registry.npmjs.org/qunit/0.2.5pre", + "0.2.6": "http://registry.npmjs.org/qunit/0.2.6", + "0.2.7": "http://registry.npmjs.org/qunit/0.2.7", + "0.2.8": "http://registry.npmjs.org/qunit/0.2.8", + "0.2.9": "http://registry.npmjs.org/qunit/0.2.9" + }, + "dist": { + "0.0.3": { + "tarball": "http://packages:5984/qunit/-/qunit-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://packages:5984/qunit/-/qunit-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://packages:5984/qunit/-/qunit-0.0.5.tgz" + }, + "0.0.6": { + "tarball": "http://packages:5984/qunit/-/qunit-0.0.6.tgz" + }, + "0.0.7": { + "tarball": "http://registry.npmjs.org/qunit/-/qunit-0.0.7.tgz" + }, + "0.0.8": { + "tarball": "http://registry.npmjs.org/qunit/-/qunit-0.0.8.tgz" + }, + "0.1.1": { + "shasum": "a54fed29add1d4b99be38da32d40e01fc9520521", + "tarball": "http://registry.npmjs.org/qunit/-/qunit-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "38fbb8e9cc29468b503fa58e18dd5891aa5129bb", + "tarball": "http://registry.npmjs.org/qunit/-/qunit-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "3b05a57f19d962d216ca13ce6e1ee2d7a55b09d5", + "tarball": "http://registry.npmjs.org/qunit/-/qunit-0.1.3.tgz" + }, + "0.1.5": { + "shasum": "c3de66a7099a7c703c3ecb46fbb729c8ddb51c46", + "tarball": "http://registry.npmjs.org/qunit/-/qunit-0.1.5.tgz" + }, + "0.2.0pre": { + "shasum": "3504007d647c9d14ee7589a3b0e0290dbe001298", + "tarball": "http://registry.npmjs.org/qunit/-/qunit-0.2.0pre.tgz" + }, + "0.2.2pre": { + "shasum": "9fe5db1d2bbdd7537f8d8999fbe2430c4f3b7ffb", + "tarball": "http://registry.npmjs.org/qunit/-/qunit-0.2.2pre.tgz" + }, + "0.2.3pre": { + "shasum": "ef3e1d650edda08c5bc3a7fe86c25d2ccaf3c6f3", + "tarball": "http://registry.npmjs.org/qunit/-/qunit-0.2.3pre.tgz" + }, + "0.2.4pre": { + "shasum": "8d70b856939e528334192236426b1f7049deebf1", + "tarball": "http://registry.npmjs.org/qunit/-/qunit-0.2.4pre.tgz" + }, + "0.2.5pre": { + "shasum": "5a81ddee0b79f2527a868e4fd7b810b4931ec9db", + "tarball": "http://registry.npmjs.org/qunit/-/qunit-0.2.5pre.tgz" + }, + "0.2.6": { + "shasum": "7a3e0aacfa37c7cec45049fb9a906f15a8384778", + "tarball": "http://registry.npmjs.org/qunit/-/qunit-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "48b746d98926a32c2399557e20d82bd4375aa93e", + "tarball": "http://registry.npmjs.org/qunit/-/qunit-0.2.7.tgz" + }, + "0.2.8": { + "shasum": "7a097dfe3330af3d48807d82e0ffe09e797f92a7", + "tarball": "http://registry.npmjs.org/qunit/-/qunit-0.2.8.tgz" + }, + "0.2.9": { + "shasum": "874774ef07ff5f8a17e837d504ce3a5365d52c16", + "tarball": "http://registry.npmjs.org/qunit/-/qunit-0.2.9.tgz" + } + }, + "keywords": [ + "TDD", + "QUnit", + "unit", + "testing", + "tests", + "async" + ], + "url": "http://registry.npmjs.org/qunit/" + }, + "qunit-tap": { + "name": "qunit-tap", + "description": "A TAP Output Producer Plugin for QUnit", + "dist-tags": { + "latest": "1.0.6", + "stable": "1.0.6" + }, + "maintainers": [ + { + "name": "twada", + "email": "takuto.wada@gmail.com" + } + ], + "author": { + "name": "Takuto Wada", + "email": "takuto.wada@gmail.com", + "url": "http://github.com/twada" + }, + "repository": { + "type": "git", + "url": "git://github.com/twada/qunit-tap.git" + }, + "time": { + "modified": "2011-12-06T10:34:05.487Z", + "created": "2011-03-01T09:49:02.211Z", + "0.9.3": "2011-03-01T09:49:02.211Z", + "0.9.4": "2011-03-01T09:49:02.211Z", + "0.9.5": "2011-03-01T09:49:02.211Z", + "0.9.6": "2011-03-01T09:49:02.211Z", + "0.9.7": "2011-03-25T07:08:47.533Z", + "0.9.8": "2011-03-25T10:43:14.477Z", + "1.0.0": "2011-03-27T13:48:16.603Z", + "1.0.1": "2011-08-04T02:38:28.895Z", + "1.0.2": "2011-10-19T07:57:34.348Z", + "1.0.3": "2011-10-20T00:12:35.726Z", + "1.0.4": "2011-11-09T02:48:56.412Z", + "1.0.5": "2011-11-30T09:13:01.844Z", + "1.0.6": "2011-12-06T10:33:24.702Z" + }, + "versions": { + "0.9.3": "http://registry.npmjs.org/qunit-tap/0.9.3", + "0.9.4": "http://registry.npmjs.org/qunit-tap/0.9.4", + "0.9.5": "http://registry.npmjs.org/qunit-tap/0.9.5", + "0.9.6": "http://registry.npmjs.org/qunit-tap/0.9.6", + "0.9.7": "http://registry.npmjs.org/qunit-tap/0.9.7", + "0.9.8": "http://registry.npmjs.org/qunit-tap/0.9.8", + "1.0.0": "http://registry.npmjs.org/qunit-tap/1.0.0", + "1.0.1": "http://registry.npmjs.org/qunit-tap/1.0.1", + "1.0.2": "http://registry.npmjs.org/qunit-tap/1.0.2", + "1.0.3": "http://registry.npmjs.org/qunit-tap/1.0.3", + "1.0.4": "http://registry.npmjs.org/qunit-tap/1.0.4", + "1.0.5": "http://registry.npmjs.org/qunit-tap/1.0.5", + "1.0.6": "http://registry.npmjs.org/qunit-tap/1.0.6" + }, + "dist": { + "0.9.3": { + "tarball": "http://packages:5984/qunit-tap/-/qunit-tap-0.9.3.tgz" + }, + "0.9.4": { + "tarball": "http://packages:5984/qunit-tap/-/qunit-tap-0.9.4.tgz" + }, + "0.9.5": { + "tarball": "http://registry.npmjs.org/qunit-tap/-/qunit-tap-0.9.5.tgz" + }, + "0.9.6": { + "shasum": "55165722c99b0bfd685c4f539c444b4e66c29a52", + "tarball": "http://registry.npmjs.org/qunit-tap/-/qunit-tap-0.9.6.tgz" + }, + "0.9.7": { + "shasum": "f058b90e9c9cf0ce8940476669c2afe61e682760", + "tarball": "http://registry.npmjs.org/qunit-tap/-/qunit-tap-0.9.7.tgz" + }, + "0.9.8": { + "shasum": "6443b4f9013703b2427dca73dd6ac6c043f63131", + "tarball": "http://registry.npmjs.org/qunit-tap/-/qunit-tap-0.9.8.tgz" + }, + "1.0.0": { + "shasum": "cda7a0c549074e5a06fefd97508a96fbf7a9336a", + "tarball": "http://registry.npmjs.org/qunit-tap/-/qunit-tap-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "36c0b66ea4bb9c1a3d61d3608eae567090eeb1a1", + "tarball": "http://registry.npmjs.org/qunit-tap/-/qunit-tap-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "35aae8d5a6543db125955a3b83c6ef8d8e19f19c", + "tarball": "http://registry.npmjs.org/qunit-tap/-/qunit-tap-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "536d69b4c4e6b6e536d27210ff0396d5e09eab63", + "tarball": "http://registry.npmjs.org/qunit-tap/-/qunit-tap-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "b5b7b81cfdfa347c3ef474a1c2783931ac1f7544", + "tarball": "http://registry.npmjs.org/qunit-tap/-/qunit-tap-1.0.4.tgz" + }, + "1.0.5": { + "shasum": "c1945f41481e0dfe94509a067b9312bea793f66e", + "tarball": "http://registry.npmjs.org/qunit-tap/-/qunit-tap-1.0.5.tgz" + }, + "1.0.6": { + "shasum": "581a3df8b2600caa1be8984bab95a922687db13a", + "tarball": "http://registry.npmjs.org/qunit-tap/-/qunit-tap-1.0.6.tgz" + } + }, + "keywords": [ + "TDD", + "QUnit", + "test", + "tests", + "testing", + "TAP" + ], + "url": "http://registry.npmjs.org/qunit-tap/" + }, + "qwery": { + "name": "qwery", + "description": "blazing fast CSS3 query selector engine", + "dist-tags": { + "latest": "3.2.2" + }, + "maintainers": [ + { + "name": "ded", + "email": "polvero@gmail.com" + }, + { + "name": "fat", + "email": "jacobthornton@gmail.com" + }, + { + "name": "ds", + "email": "dustin@dustinsenos.com" + } + ], + "time": { + "modified": "2011-12-13T23:12:48.499Z", + "created": "2011-04-09T23:36:53.162Z", + "1.0.1": "2011-04-09T23:36:53.535Z", + "1.0.2": "2011-04-12T07:36:09.508Z", + "1.0.4": "2011-04-19T00:55:26.627Z", + "1.0.5": "2011-04-19T06:30:30.048Z", + "1.1.0": "2011-04-20T08:00:32.329Z", + "1.1.1": "2011-04-21T17:01:33.709Z", + "1.1.2": "2011-04-28T05:10:38.382Z", + "1.1.3": "2011-04-28T06:01:09.997Z", + "1.1.4": "2011-04-28T06:38:30.860Z", + "1.1.5": "2011-05-01T21:54:22.965Z", + "1.1.6": "2011-05-01T22:17:58.318Z", + "1.1.7": "2011-05-12T18:35:15.073Z", + "1.1.8": "2011-05-13T07:48:57.641Z", + "1.1.9": "2011-05-13T08:20:06.815Z", + "1.2.0": "2011-05-14T01:28:43.116Z", + "1.2.1": "2011-05-16T03:34:06.079Z", + "1.2.2": "2011-05-17T18:48:13.436Z", + "1.2.3": "2011-05-22T23:03:17.640Z", + "1.2.4": "2011-06-10T20:58:25.093Z", + "1.2.5": "2011-06-10T21:44:23.115Z", + "1.2.6": "2011-06-10T21:45:08.211Z", + "1.2.7": "2011-06-10T23:01:48.067Z", + "2.0.0": "2011-06-20T06:12:15.113Z", + "2.1.0": "2011-06-22T04:02:37.329Z", + "2.1.1": "2011-06-22T05:10:24.249Z", + "2.1.2": "2011-06-22T06:30:44.040Z", + "2.2.0": "2011-09-07T04:16:20.961Z", + "2.2.1": "2011-09-07T04:21:32.619Z", + "2.2.2": "2011-09-09T04:11:23.940Z", + "2.2.3": "2011-09-12T22:14:08.917Z", + "2.2.4": "2011-09-12T23:50:42.551Z", + "2.2.5": "2011-09-19T21:41:56.677Z", + "2.2.6": "2011-09-26T19:50:17.832Z", + "2.2.7": "2011-10-04T21:22:36.712Z", + "2.2.8": "2011-11-03T03:54:38.712Z", + "2.2.9": "2011-11-15T00:18:38.287Z", + "3.0.0": "2011-11-16T03:14:41.082Z", + "3.1.1": "2011-11-16T05:14:24.963Z", + "3.2.0": "2011-12-12T19:50:54.903Z", + "3.2.1": "2011-12-12T22:51:07.315Z", + "3.2.2": "2011-12-13T23:12:48.499Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/ded/qwery.git" + }, + "author": { + "name": "Dustin Diaz", + "email": "dustin@dustindiaz.com", + "url": "http://dustindiaz.com" + }, + "versions": { + "1.0.1": "http://registry.npmjs.org/qwery/1.0.1", + "1.0.2": "http://registry.npmjs.org/qwery/1.0.2", + "1.0.4": "http://registry.npmjs.org/qwery/1.0.4", + "1.0.5": "http://registry.npmjs.org/qwery/1.0.5", + "1.1.0": "http://registry.npmjs.org/qwery/1.1.0", + "1.1.1": "http://registry.npmjs.org/qwery/1.1.1", + "1.1.2": "http://registry.npmjs.org/qwery/1.1.2", + "1.1.3": "http://registry.npmjs.org/qwery/1.1.3", + "1.1.4": "http://registry.npmjs.org/qwery/1.1.4", + "1.1.5": "http://registry.npmjs.org/qwery/1.1.5", + "1.1.6": "http://registry.npmjs.org/qwery/1.1.6", + "1.1.7": "http://registry.npmjs.org/qwery/1.1.7", + "1.1.8": "http://registry.npmjs.org/qwery/1.1.8", + "1.1.9": "http://registry.npmjs.org/qwery/1.1.9", + "1.2.0": "http://registry.npmjs.org/qwery/1.2.0", + "1.2.1": "http://registry.npmjs.org/qwery/1.2.1", + "1.2.2": "http://registry.npmjs.org/qwery/1.2.2", + "1.2.3": "http://registry.npmjs.org/qwery/1.2.3", + "1.2.4": "http://registry.npmjs.org/qwery/1.2.4", + "1.2.5": "http://registry.npmjs.org/qwery/1.2.5", + "1.2.6": "http://registry.npmjs.org/qwery/1.2.6", + "1.2.7": "http://registry.npmjs.org/qwery/1.2.7", + "2.0.0": "http://registry.npmjs.org/qwery/2.0.0", + "2.1.0": "http://registry.npmjs.org/qwery/2.1.0", + "2.1.1": "http://registry.npmjs.org/qwery/2.1.1", + "2.1.2": "http://registry.npmjs.org/qwery/2.1.2", + "2.2.0": "http://registry.npmjs.org/qwery/2.2.0", + "2.2.1": "http://registry.npmjs.org/qwery/2.2.1", + "2.2.2": "http://registry.npmjs.org/qwery/2.2.2", + "2.2.3": "http://registry.npmjs.org/qwery/2.2.3", + "2.2.4": "http://registry.npmjs.org/qwery/2.2.4", + "2.2.5": "http://registry.npmjs.org/qwery/2.2.5", + "2.2.6": "http://registry.npmjs.org/qwery/2.2.6", + "2.2.7": "http://registry.npmjs.org/qwery/2.2.7", + "2.2.8": "http://registry.npmjs.org/qwery/2.2.8", + "2.2.9": "http://registry.npmjs.org/qwery/2.2.9", + "3.0.0": "http://registry.npmjs.org/qwery/3.0.0", + "3.1.1": "http://registry.npmjs.org/qwery/3.1.1", + "3.2.0": "http://registry.npmjs.org/qwery/3.2.0", + "3.2.1": "http://registry.npmjs.org/qwery/3.2.1", + "3.2.2": "http://registry.npmjs.org/qwery/3.2.2" + }, + "dist": { + "1.0.1": { + "shasum": "88c60b1b702b19cb7e9ea74b1253de001def903c", + "tarball": "http://registry.npmjs.org/qwery/-/qwery-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "13b420acd95bd8353c89ba7d5f39e6978561fd01", + "tarball": "http://registry.npmjs.org/qwery/-/qwery-1.0.2.tgz" + }, + "1.0.4": { + "shasum": "0ece2dc180ff3542400392095abb72e2a71865e2", + "tarball": "http://registry.npmjs.org/qwery/-/qwery-1.0.4.tgz" + }, + "1.0.5": { + "shasum": "57bc01661be6f8b1ec7ccff1a67853a42522adfb", + "tarball": "http://registry.npmjs.org/qwery/-/qwery-1.0.5.tgz" + }, + "1.1.0": { + "shasum": "c33a544d3a3e812ee9bb6f3cdd731af84da5db08", + "tarball": "http://registry.npmjs.org/qwery/-/qwery-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "b4009069cdc9690d4a97e6828837064f3067fe8d", + "tarball": "http://registry.npmjs.org/qwery/-/qwery-1.1.1.tgz" + }, + "1.1.2": { + "shasum": "581f6b262d3712942fb6b979727a679c1b2dc99a", + "tarball": "http://registry.npmjs.org/qwery/-/qwery-1.1.2.tgz" + }, + "1.1.3": { + "shasum": "1fa7f5b168dc99671df652ae567e914bc393a8c9", + "tarball": "http://registry.npmjs.org/qwery/-/qwery-1.1.3.tgz" + }, + "1.1.4": { + "shasum": "55816bbf2628e3ff79f35fa525c2d5e188fc0c3c", + "tarball": "http://registry.npmjs.org/qwery/-/qwery-1.1.4.tgz" + }, + "1.1.5": { + "shasum": "07bac07c64a94d1d13a06e5196a80d34fabbb877", + "tarball": "http://registry.npmjs.org/qwery/-/qwery-1.1.5.tgz" + }, + "1.1.6": { + "shasum": "723f9527918be1337f57c57a670d7770fbdc2d56", + "tarball": "http://registry.npmjs.org/qwery/-/qwery-1.1.6.tgz" + }, + "1.1.7": { + "shasum": "d2dc5fa587e1d3189d9417b3233163fb3b6a8dc5", + "tarball": "http://registry.npmjs.org/qwery/-/qwery-1.1.7.tgz" + }, + "1.1.8": { + "shasum": "3da61c168422162f9ca0e26cb954f35f3d67c4ab", + "tarball": "http://registry.npmjs.org/qwery/-/qwery-1.1.8.tgz" + }, + "1.1.9": { + "shasum": "e4d41027450bd674ff32becfd6283a26ca8795f9", + "tarball": "http://registry.npmjs.org/qwery/-/qwery-1.1.9.tgz" + }, + "1.2.0": { + "shasum": "9626897ce3649870fc212ff0494bbfb47d041193", + "tarball": "http://registry.npmjs.org/qwery/-/qwery-1.2.0.tgz" + }, + "1.2.1": { + "shasum": "4909308eb41dc3f9edef91f69ae6d262db0d4645", + "tarball": "http://registry.npmjs.org/qwery/-/qwery-1.2.1.tgz" + }, + "1.2.2": { + "shasum": "945362a558bd7451b856f70f8f0ab44df5850eae", + "tarball": "http://registry.npmjs.org/qwery/-/qwery-1.2.2.tgz" + }, + "1.2.3": { + "shasum": "36ec71674fec29c300647fac967ea6cf38d3cd80", + "tarball": "http://registry.npmjs.org/qwery/-/qwery-1.2.3.tgz" + }, + "1.2.4": { + "shasum": "4261bfcc9918c0c17c843be536de997a2a1711ba", + "tarball": "http://registry.npmjs.org/qwery/-/qwery-1.2.4.tgz" + }, + "1.2.5": { + "shasum": "3a4a26660db529420485b648cae1d71ae8ce628b", + "tarball": "http://registry.npmjs.org/qwery/-/qwery-1.2.5.tgz" + }, + "1.2.6": { + "shasum": "7d1012c8681905a910f07c4e5b96abde866b1a03", + "tarball": "http://registry.npmjs.org/qwery/-/qwery-1.2.6.tgz" + }, + "1.2.7": { + "shasum": "de888af9907e0556a9e154194604ebbfc6d7c938", + "tarball": "http://registry.npmjs.org/qwery/-/qwery-1.2.7.tgz" + }, + "2.0.0": { + "shasum": "52417d789fe19851b9b69994f7aaedbb39b6d0a5", + "tarball": "http://registry.npmjs.org/qwery/-/qwery-2.0.0.tgz" + }, + "2.1.0": { + "shasum": "e84e61704cfdacf67230f3c7db80d9269acd4d9c", + "tarball": "http://registry.npmjs.org/qwery/-/qwery-2.1.0.tgz" + }, + "2.1.1": { + "shasum": "a9dae3cf17202d22913b78e10a09661c4deb8859", + "tarball": "http://registry.npmjs.org/qwery/-/qwery-2.1.1.tgz" + }, + "2.1.2": { + "shasum": "bf90645166bcd02c383181e8683e9d05e16d49ee", + "tarball": "http://registry.npmjs.org/qwery/-/qwery-2.1.2.tgz" + }, + "2.2.0": { + "shasum": "9e37b0e71401768c74ab65e3a34fd62962a932eb", + "tarball": "http://registry.npmjs.org/qwery/-/qwery-2.2.0.tgz" + }, + "2.2.1": { + "shasum": "64d9521fb70f364c52df895f7b49ef2957a4d298", + "tarball": "http://registry.npmjs.org/qwery/-/qwery-2.2.1.tgz" + }, + "2.2.2": { + "shasum": "31d13c56586d5b8b677ad52979140820c7c3d375", + "tarball": "http://registry.npmjs.org/qwery/-/qwery-2.2.2.tgz" + }, + "2.2.3": { + "shasum": "c49214a17dce51b1b4e24fe80dfca6856a3f3278", + "tarball": "http://registry.npmjs.org/qwery/-/qwery-2.2.3.tgz" + }, + "2.2.4": { + "shasum": "0558ea61dc9570d2ff24d02f7829b8a6773f292e", + "tarball": "http://registry.npmjs.org/qwery/-/qwery-2.2.4.tgz" + }, + "2.2.5": { + "shasum": "d0d3b7608406a9a690dd7673b229a3874c45d6c8", + "tarball": "http://registry.npmjs.org/qwery/-/qwery-2.2.5.tgz" + }, + "2.2.6": { + "shasum": "2b10c3d71b334148dcd970744800d61fc1f42a68", + "tarball": "http://registry.npmjs.org/qwery/-/qwery-2.2.6.tgz" + }, + "2.2.7": { + "shasum": "43b61e38bf1971662428ba6043c021d027a63cc2", + "tarball": "http://registry.npmjs.org/qwery/-/qwery-2.2.7.tgz" + }, + "2.2.8": { + "shasum": "125d597453de86c87c843cea4a05afd2d1856ab9", + "tarball": "http://registry.npmjs.org/qwery/-/qwery-2.2.8.tgz" + }, + "2.2.9": { + "shasum": "2c6ff15c7bca4714558c679ea7c9caabc2469c43", + "tarball": "http://registry.npmjs.org/qwery/-/qwery-2.2.9.tgz" + }, + "3.0.0": { + "shasum": "17f6665b8e755a9967d4111ee931ba0dce19857b", + "tarball": "http://registry.npmjs.org/qwery/-/qwery-3.0.0.tgz" + }, + "3.1.1": { + "shasum": "7fcc353baf81391fa3fc9f1c579c90e2745250c3", + "tarball": "http://registry.npmjs.org/qwery/-/qwery-3.1.1.tgz" + }, + "3.2.0": { + "shasum": "4869f035c10beb1336351fa9ff2ace75b7144e7f", + "tarball": "http://registry.npmjs.org/qwery/-/qwery-3.2.0.tgz" + }, + "3.2.1": { + "shasum": "e38e8654c52b914e439bd7c4efcd978950359e5c", + "tarball": "http://registry.npmjs.org/qwery/-/qwery-3.2.1.tgz" + }, + "3.2.2": { + "shasum": "1ca665e09dab45cc33b7aa5a995abb4676e185af", + "tarball": "http://registry.npmjs.org/qwery/-/qwery-3.2.2.tgz" + } + }, + "keywords": [ + "ender", + "query", + "css", + "selector engine" + ], + "url": "http://registry.npmjs.org/qwery/" + }, + "qwery-mobile": { + "name": "qwery-mobile", + "description": "Mobile query selector engine", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "ded", + "email": "polvero@gmail.com" + } + ], + "time": { + "modified": "2011-05-23T01:13:04.421Z", + "created": "2011-05-22T23:03:27.575Z", + "1.0.0": "2011-05-22T23:03:28.179Z", + "1.0.1": "2011-05-23T01:13:04.421Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/ded/qwery.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/qwery-mobile/1.0.0", + "1.0.1": "http://registry.npmjs.org/qwery-mobile/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "a853dc2acd1a3c7f6f09fbca4894d5d78fedc301", + "tarball": "http://registry.npmjs.org/qwery-mobile/-/qwery-mobile-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "9b3a63835f32a8991758a98ead17404ec8521bf9", + "tarball": "http://registry.npmjs.org/qwery-mobile/-/qwery-mobile-1.0.1.tgz" + } + }, + "keywords": [ + "ender", + "query", + "css", + "mobile", + "selector engine" + ], + "url": "http://registry.npmjs.org/qwery-mobile/" + }, + "R.js": { + "name": "R.js", + "description": "R.js is a simple i18n framework for Javascript, both in browser and in node", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "keithamus", + "email": "npm@keithcirkel.co.uk" + } + ], + "time": { + "modified": "2011-10-02T11:45:04.860Z", + "created": "2011-09-22T22:28:03.857Z", + "0.1.2": "2011-09-22T22:28:04.401Z", + "0.1.3": "2011-09-25T22:21:13.462Z" + }, + "versions": { + "0.1.2": "http://registry.npmjs.org/R.js/0.1.2", + "0.1.3": "http://registry.npmjs.org/R.js/0.1.3" + }, + "dist": { + "0.1.2": { + "shasum": "49bcf6c4374ec4f3f57ea51113882e04dc6b3131", + "tarball": "http://registry.npmjs.org/R.js/-/R.js-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "aa28c210ae4f38be33063fd221113b91e10cc35c", + "tarball": "http://registry.npmjs.org/R.js/-/R.js-0.1.3.tgz" + } + }, + "keywords": [ + "i18n", + "R.js", + "server", + "browser", + "node", + "ender" + ], + "url": "http://registry.npmjs.org/R.js/" + }, + "R2": { + "name": "R2", + "description": "a CSS LTR ∞ RTL converter", + "dist-tags": { + "latest": "1.1.1" + }, + "maintainers": [ + { + "name": "ded", + "email": "polvero@gmail.com" + } + ], + "time": { + "modified": "2011-06-26T19:22:42.106Z", + "created": "2011-06-02T00:41:17.258Z", + "1.0.0": "2011-06-02T00:41:37.793Z", + "1.0.1": "2011-06-02T01:27:08.716Z", + "1.0.2": "2011-06-13T23:11:35.191Z", + "1.1.0": "2011-06-14T07:35:50.623Z", + "1.1.1": "2011-06-26T19:22:42.106Z" + }, + "author": { + "name": "Dustin Diaz", + "email": "@ded" + }, + "repository": { + "type": "git", + "url": "git://github.com/ded/R2.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/R2/1.0.0", + "1.0.1": "http://registry.npmjs.org/R2/1.0.1", + "1.0.2": "http://registry.npmjs.org/R2/1.0.2", + "1.1.0": "http://registry.npmjs.org/R2/1.1.0", + "1.1.1": "http://registry.npmjs.org/R2/1.1.1" + }, + "dist": { + "1.0.0": { + "shasum": "5ccbe543b9395ff2ac9bb6b419fce357cc879621", + "tarball": "http://registry.npmjs.org/R2/-/R2-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "955bea70dad56a70ddcd325e2d853207bbe6b744", + "tarball": "http://registry.npmjs.org/R2/-/R2-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "720d1a4d2643301f809d64e915956370fb305eb2", + "tarball": "http://registry.npmjs.org/R2/-/R2-1.0.2.tgz" + }, + "1.1.0": { + "shasum": "ff18f9a131ad72861260dd73c273a12ea524f112", + "tarball": "http://registry.npmjs.org/R2/-/R2-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "67d647fe00e1d5078a59230285a1a6eda0b584dc", + "tarball": "http://registry.npmjs.org/R2/-/R2-1.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/R2/" + }, + "rabbit.js": { + "name": "rabbit.js", + "description": "Idiomatic messaging for browsers, using RabbitMQ", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "squaremo", + "email": "mikeb@squaremobius.net" + } + ], + "time": { + "modified": "2011-12-02T12:53:23.872Z", + "created": "2011-08-02T16:01:18.089Z", + "0.1.1": "2011-08-02T16:01:18.423Z", + "0.1.2": "2011-12-02T12:53:23.872Z" + }, + "author": { + "name": "Michael Bridgen" + }, + "repository": { + "type": "git", + "url": "git://github.com/squaremo/rabbit.js.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/rabbit.js/0.1.1", + "0.1.2": "http://registry.npmjs.org/rabbit.js/0.1.2" + }, + "dist": { + "0.1.1": { + "shasum": "89421cdd6cb04180d850d60a3f28f7dc259d365a", + "tarball": "http://registry.npmjs.org/rabbit.js/-/rabbit.js-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "5bf527f871065ed5f097c9e08c786fff6e6f9de4", + "tarball": "http://registry.npmjs.org/rabbit.js/-/rabbit.js-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/rabbit.js/" + }, + "rabblescay": { + "name": "rabblescay", + "description": "Uses regex-based (simpler, for non-programmers) search patterns to help find... words.", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "colinta", + "email": "colinta@mac.com" + } + ], + "time": { + "modified": "2011-09-16T22:12:11.667Z", + "created": "2011-09-16T21:49:07.062Z", + "1.0.0": "2011-09-16T21:49:08.094Z", + "1.0.1": "2011-09-16T22:12:11.667Z" + }, + "author": { + "name": "Colin Thomas-Arnold", + "email": "colinta@mac.com" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/rabblescay/1.0.0", + "1.0.1": "http://registry.npmjs.org/rabblescay/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "4c18476c3a4f3ce6523a48cdfa4c2400f0c6b68b", + "tarball": "http://registry.npmjs.org/rabblescay/-/rabblescay-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "fb31213b2e8701a8ae14b4091f2597f61bd2051d", + "tarball": "http://registry.npmjs.org/rabblescay/-/rabblescay-1.0.1.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/rabblescay/" + }, + "racer": { + "name": "racer", + "description": "Realtime model synchronization engine for Node.js", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "nateps", + "email": "nate@nateps.com" + }, + { + "name": "bnoguchi", + "email": "brian.noguchi@gmail.com" + } + ], + "time": { + "modified": "2011-12-12T20:45:07.029Z", + "created": "2011-08-17T10:06:07.688Z", + "0.0.1": "2011-08-17T10:06:08.326Z", + "0.0.2": "2011-08-18T02:26:52.609Z", + "0.0.3": "2011-08-18T08:45:13.503Z", + "0.0.4": "2011-08-18T10:59:22.580Z", + "0.0.5": "2011-08-18T22:50:46.335Z", + "0.0.6": "2011-08-19T06:34:45.369Z", + "0.0.7": "2011-08-21T06:16:57.646Z", + "0.0.8": "2011-08-23T08:13:27.193Z", + "0.0.9": "2011-08-24T07:42:37.497Z", + "0.0.10": "2011-08-25T08:50:43.799Z", + "0.0.11": "2011-09-05T03:20:23.428Z", + "0.0.12": "2011-09-09T19:16:48.361Z", + "0.0.13": "2011-09-11T09:44:36.637Z", + "0.0.14": "2011-11-02T23:11:13.682Z", + "0.1.0": "2011-11-07T10:05:41.325Z", + "0.1.1": "2011-11-11T19:25:15.847Z", + "0.1.2": "2011-11-28T00:30:40.806Z", + "0.1.3": "2011-12-12T20:45:07.029Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/racer/0.0.1", + "0.0.2": "http://registry.npmjs.org/racer/0.0.2", + "0.0.3": "http://registry.npmjs.org/racer/0.0.3", + "0.0.4": "http://registry.npmjs.org/racer/0.0.4", + "0.0.5": "http://registry.npmjs.org/racer/0.0.5", + "0.0.6": "http://registry.npmjs.org/racer/0.0.6", + "0.0.7": "http://registry.npmjs.org/racer/0.0.7", + "0.0.8": "http://registry.npmjs.org/racer/0.0.8", + "0.0.9": "http://registry.npmjs.org/racer/0.0.9", + "0.0.10": "http://registry.npmjs.org/racer/0.0.10", + "0.0.11": "http://registry.npmjs.org/racer/0.0.11", + "0.0.12": "http://registry.npmjs.org/racer/0.0.12", + "0.0.13": "http://registry.npmjs.org/racer/0.0.13", + "0.0.14": "http://registry.npmjs.org/racer/0.0.14", + "0.1.0": "http://registry.npmjs.org/racer/0.1.0", + "0.1.1": "http://registry.npmjs.org/racer/0.1.1", + "0.1.2": "http://registry.npmjs.org/racer/0.1.2", + "0.1.3": "http://registry.npmjs.org/racer/0.1.3" + }, + "dist": { + "0.0.1": { + "shasum": "436709e2eba74bb2bc0cd03c19a1dd7aa8ba4098", + "tarball": "http://registry.npmjs.org/racer/-/racer-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "a274b8b31f5e808dda55d86145c80fc6825ef18a", + "tarball": "http://registry.npmjs.org/racer/-/racer-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "f1c64f158ea360c42d7302555ad9f2f051f8ae3f", + "tarball": "http://registry.npmjs.org/racer/-/racer-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "9b25855a1592ffe29248f1a0f5f2f58a20468430", + "tarball": "http://registry.npmjs.org/racer/-/racer-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "f08fc4db6e4c1bc607fcf8eea3b5d70ecb4ba86d", + "tarball": "http://registry.npmjs.org/racer/-/racer-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "0f2d8be11000a02ced4c4590483107583a2eff68", + "tarball": "http://registry.npmjs.org/racer/-/racer-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "055845734441adb428d41bc1dc0ee7036a2c425b", + "tarball": "http://registry.npmjs.org/racer/-/racer-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "0e0c9ef724c5bc3b156d52463d92715d3641e462", + "tarball": "http://registry.npmjs.org/racer/-/racer-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "05559d5de2c196c05247de8b5897456dea8448b8", + "tarball": "http://registry.npmjs.org/racer/-/racer-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "7d7a2ff94625fcf4b86b0e88306218afaf27855b", + "tarball": "http://registry.npmjs.org/racer/-/racer-0.0.10.tgz" + }, + "0.0.11": { + "shasum": "0e2dc15251725fe3147651fbecb965e5e6344913", + "tarball": "http://registry.npmjs.org/racer/-/racer-0.0.11.tgz" + }, + "0.0.12": { + "shasum": "ec4c64f5ac919692a99c617e435429be60f8c5a9", + "tarball": "http://registry.npmjs.org/racer/-/racer-0.0.12.tgz" + }, + "0.0.13": { + "shasum": "4eb9da6cc1b0cf241869cfaccc35c1f89cc264a5", + "tarball": "http://registry.npmjs.org/racer/-/racer-0.0.13.tgz" + }, + "0.0.14": { + "shasum": "c213ed5e91186cc5ebcb2df07286cd30d368eb51", + "tarball": "http://registry.npmjs.org/racer/-/racer-0.0.14.tgz" + }, + "0.1.0": { + "shasum": "47dd0996b78cf5be0fd2f8326be8f7d1b7056a26", + "tarball": "http://registry.npmjs.org/racer/-/racer-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "38484c5b833dbdb785eb611a31e5613d118a120e", + "tarball": "http://registry.npmjs.org/racer/-/racer-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "dc2668a1266295ddfccf0ac9de5a9255376e81d1", + "tarball": "http://registry.npmjs.org/racer/-/racer-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "e15d9ca75d88de7ba479c3d32420ec72515ab136", + "tarball": "http://registry.npmjs.org/racer/-/racer-0.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/racer/" + }, + "radcouchdb": { + "name": "radcouchdb", + "description": "couchdb driver for node.js for rad approcach", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "siddiq", + "email": "siddiq@gmail.com" + } + ], + "time": { + "modified": "2011-08-30T13:05:01.442Z", + "created": "2011-08-30T13:04:58.598Z", + "0.1.0": "2011-08-30T13:05:01.442Z" + }, + "author": { + "name": "siddiq", + "email": "siddiq@gmail.com", + "url": "http://siddiq.me" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/radcouchdb/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "60a745c1c641709b201cc7872b00fdd8e6272fd2", + "tarball": "http://registry.npmjs.org/radcouchdb/-/radcouchdb-0.1.0.tgz" + } + }, + "keywords": [ + "couchdb", + "data", + "request", + "json", + "nosql", + "rad-couchdb" + ], + "url": "http://registry.npmjs.org/radcouchdb/" + }, + "radial": { + "name": "radial", + "description": "a polyglot \"api first\" services platform", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": null, + "maintainers": [ + { + "name": "retromocha", + "email": "contact@retromocha.com" + } + ], + "time": { + "modified": "2011-12-03T22:30:18.737Z", + "created": "2011-12-03T22:30:17.846Z", + "0.0.1": "2011-12-03T22:30:18.737Z" + }, + "author": { + "name": "Retro Mocha", + "email": "contact@retromocha.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/retromocha/radial.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/radial/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "f6f35ff20683e62cf80bce20714a1d49dfa38748", + "tarball": "http://registry.npmjs.org/radial/-/radial-0.0.1.tgz" + } + }, + "keywords": [ + "framework", + "api", + "web", + "rpc", + "proxy", + "polyglot", + "platform" + ], + "url": "http://registry.npmjs.org/radial/" + }, + "radial-js": { + "name": "radial-js", + "description": "node.js radial framework implementation", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": null, + "maintainers": [ + { + "name": "retromocha", + "email": "contact@retromocha.com" + } + ], + "time": { + "modified": "2011-12-04T03:46:05.450Z", + "created": "2011-12-04T03:46:04.176Z", + "0.0.1": "2011-12-04T03:46:05.450Z" + }, + "author": { + "name": "Retro Mocha", + "email": "contact@retromocha.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/retromocha/radial-js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/radial-js/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "fe50fb1eda03e25011b4ffec0acced8a5f6e1527", + "tarball": "http://registry.npmjs.org/radial-js/-/radial-js-0.0.1.tgz" + } + }, + "keywords": [ + "framework", + "api", + "web", + "rpc", + "proxy", + "polyglot", + "platform" + ], + "url": "http://registry.npmjs.org/radial-js/" + }, + "radio-stream": { + "name": "radio-stream", + "description": "An interface for connecting to, parsing metadata, and reading from SHOUTcast/Icecast radio streams", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "TooTallNate", + "email": "nathan@tootallnate.net" + } + ], + "author": { + "name": "Nathan Rajlich", + "email": "nathan@tootallnate.net" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/radio-stream/0.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/radio-stream/-/radio-stream-0.0.1.tgz" + } + }, + "keywords": [ + "SHOUTcast", + "Icecast", + "Radio", + "Internet", + "Metadata", + "ReadStream" + ], + "url": "http://registry.npmjs.org/radio-stream/" + }, + "rafaelify": { + "name": "rafaelify", + "description": "A NPM Wrapper for Rafael JS", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "rodriguezartav", + "email": "roberto@rodriguezartav.com" + } + ], + "time": { + "modified": "2011-12-07T22:34:47.052Z", + "created": "2011-12-07T22:34:45.137Z", + "0.0.1": "2011-12-07T22:34:47.052Z" + }, + "author": { + "name": "Roberto Rodriguez", + "email": "roberto@rodriguezartav.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/rodriguezartav/NPM---Rafeel-.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/rafaelify/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "df0507fea073cf818d8f64ae327e77d2c992198f", + "tarball": "http://registry.npmjs.org/rafaelify/-/rafaelify-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/rafaelify/" + }, + "railway": { + "name": "railway", + "description": "RailwayJS - Ruby-on-Rails inspired MVC web framework, fully ExpressJS compatible", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "anatoliy", + "email": "rpm1602@gmail.com" + } + ], + "time": { + "modified": "2011-12-13T21:13:42.826Z", + "created": "2011-05-13T15:18:40.718Z", + "0.1.2": "2011-05-13T15:18:41.151Z", + "0.1.3": "2011-05-17T20:53:04.265Z", + "0.1.4": "2011-05-20T09:55:55.817Z", + "0.1.5": "2011-05-27T11:52:30.093Z", + "0.1.6-9": "2011-06-06T08:26:44.808Z", + "0.1.6-10": "2011-06-06T10:07:17.945Z", + "0.1.5-10": "2011-06-06T15:31:40.930Z", + "0.1.6": "2011-06-07T19:19:50.115Z", + "0.1.6-1": "2011-06-08T16:24:13.304Z", + "0.1.6-2": "2011-06-08T19:51:09.268Z", + "0.1.7pre": "2011-06-09T19:23:00.851Z", + "0.1.7pre2": "2011-06-09T19:34:35.609Z", + "0.1.7-4": "2011-06-22T05:13:42.565Z", + "0.1.7-5": "2011-06-22T05:17:36.632Z", + "0.1.7-6": "2011-06-29T06:29:54.766Z", + "0.1.7-7": "2011-07-05T06:41:31.068Z", + "0.1.7-8": "2011-07-06T06:05:50.900Z", + "0.1.8": "2011-09-24T19:37:53.516Z", + "0.2.0": "2011-11-14T15:25:02.828Z", + "0.2.1": "2011-12-13T21:13:42.826Z" + }, + "author": { + "name": "Anatoliy Chakkaev" + }, + "repository": { + "type": "git", + "url": "git://github.com/1602/express-on-railway.git" + }, + "versions": { + "0.1.2": "http://registry.npmjs.org/railway/0.1.2", + "0.1.3": "http://registry.npmjs.org/railway/0.1.3", + "0.1.4": "http://registry.npmjs.org/railway/0.1.4", + "0.1.5": "http://registry.npmjs.org/railway/0.1.5", + "0.1.5-10": "http://registry.npmjs.org/railway/0.1.5-10", + "0.1.6": "http://registry.npmjs.org/railway/0.1.6", + "0.1.6-1": "http://registry.npmjs.org/railway/0.1.6-1", + "0.1.6-2": "http://registry.npmjs.org/railway/0.1.6-2", + "0.1.7pre2": "http://registry.npmjs.org/railway/0.1.7pre2", + "0.1.7-5": "http://registry.npmjs.org/railway/0.1.7-5", + "0.1.7-6": "http://registry.npmjs.org/railway/0.1.7-6", + "0.1.7-7": "http://registry.npmjs.org/railway/0.1.7-7", + "0.1.7-8": "http://registry.npmjs.org/railway/0.1.7-8", + "0.1.8": "http://registry.npmjs.org/railway/0.1.8", + "0.2.0": "http://registry.npmjs.org/railway/0.2.0", + "0.2.1": "http://registry.npmjs.org/railway/0.2.1" + }, + "dist": { + "0.1.2": { + "shasum": "9502121e8896f90f616e8e2e034715a4d472a452", + "tarball": "http://registry.npmjs.org/railway/-/railway-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "a221c7a5cd8ca3129531d715913dd52f7f30b93b", + "tarball": "http://registry.npmjs.org/railway/-/railway-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "488a4d966604815776132d3ae91fe9fdf5e21d44", + "tarball": "http://registry.npmjs.org/railway/-/railway-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "2e714268975c9c3ef2857fee99cb5bdc24bfb932", + "tarball": "http://registry.npmjs.org/railway/-/railway-0.1.5.tgz" + }, + "0.1.5-10": { + "shasum": "04d8db8203d544fda803cd1ff71b9b9da8dd3d61", + "tarball": "http://registry.npmjs.org/railway/-/railway-0.1.5-10.tgz" + }, + "0.1.6": { + "shasum": "3064ad38b8f607d0ff5c92c3b8b7175b6da37fc6", + "tarball": "http://registry.npmjs.org/railway/-/railway-0.1.6.tgz" + }, + "0.1.6-1": { + "shasum": "e7cd48a726b24c025393d1cbfbadefb3dcfa3c7c", + "tarball": "http://registry.npmjs.org/railway/-/railway-0.1.6-1.tgz" + }, + "0.1.6-2": { + "shasum": "c754317c61dd504fc3dbbfc0425e7e5b29a1a974", + "tarball": "http://registry.npmjs.org/railway/-/railway-0.1.6-2.tgz" + }, + "0.1.7pre2": { + "shasum": "35388c5b1ebd74aafefe4b9e0d915f8a3c7e817a", + "tarball": "http://registry.npmjs.org/railway/-/railway-0.1.7pre2.tgz" + }, + "0.1.7-5": { + "shasum": "3d70290aa1135841f751c8bc808c4c48c47d66a7", + "tarball": "http://registry.npmjs.org/railway/-/railway-0.1.7-5.tgz" + }, + "0.1.7-6": { + "shasum": "69b707702d5dfb40903215fb5d04c1d7b3798286", + "tarball": "http://registry.npmjs.org/railway/-/railway-0.1.7-6.tgz" + }, + "0.1.7-7": { + "shasum": "12962cde9cd1be09010d8e8f768bb1aad83b9f69", + "tarball": "http://registry.npmjs.org/railway/-/railway-0.1.7-7.tgz" + }, + "0.1.7-8": { + "shasum": "f6a98d98363b36343c61fd12f4468d4ea863f5d4", + "tarball": "http://registry.npmjs.org/railway/-/railway-0.1.7-8.tgz" + }, + "0.1.8": { + "shasum": "fbf879fb3a3906be559de01fadd50395f785377f", + "tarball": "http://registry.npmjs.org/railway/-/railway-0.1.8.tgz" + }, + "0.2.0": { + "shasum": "e8121fdc561cc90575bf7d522b8a03a2ec2ea98a", + "tarball": "http://registry.npmjs.org/railway/-/railway-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "193ba6b5fbc1589cd399c46175ae66507aac357c", + "tarball": "http://registry.npmjs.org/railway/-/railway-0.2.1.tgz" + } + }, + "keywords": [ + "mvc", + "web-framework", + "rails", + "ruby-on-rails", + "express", + "railway" + ], + "url": "http://registry.npmjs.org/railway/" + }, + "railway-mailer": { + "name": "railway-mailer", + "description": "Railway extenstion for sending emails", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "anatoliy", + "email": "rpm1602@gmail.com" + } + ], + "time": { + "modified": "2011-05-17T08:27:40.739Z", + "created": "2011-05-17T08:27:40.194Z", + "0.0.1": "2011-05-17T08:27:40.739Z" + }, + "author": { + "name": "Anatoliy Chakkaev" + }, + "repository": { + "type": "git", + "url": "git://github.com/1602/railway-mailer.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/railway-mailer/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "a2e823cd8b1a9f726a2783f529664079191b9e9a", + "tarball": "http://registry.npmjs.org/railway-mailer/-/railway-mailer-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/railway-mailer/" + }, + "railway-twitter": { + "name": "railway-twitter", + "description": "Simple twitter auth app for railway", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "anatoliy", + "email": "rpm1602@gmail.com" + } + ], + "time": { + "modified": "2011-05-17T08:28:11.386Z", + "created": "2011-05-17T08:28:10.833Z", + "0.0.2": "2011-05-17T08:28:11.386Z" + }, + "author": { + "name": "Anatoliy Chakkaev", + "email": "rpm1602@gmail.com", + "url": "http://node-js.ru" + }, + "repository": { + "type": "git", + "url": "git://github.com/1602/railway-twitter.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/railway-twitter/0.0.2" + }, + "dist": { + "0.0.2": { + "shasum": "4ae723ee066e444c019e921349f35bf8d19c097c", + "tarball": "http://registry.npmjs.org/railway-twitter/-/railway-twitter-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/railway-twitter/" + }, + "rain": { + "name": "rain", + "description": "An experiment on component-based and distributed web applications", + "dist-tags": { + "latest": "0.4.4" + }, + "maintainers": [ + { + "name": "tfiwm", + "email": "privat@mitko-tschimev.de" + } + ], + "time": { + "modified": "2011-12-14T11:47:53.630Z", + "created": "2011-10-18T14:25:39.512Z", + "0.3.6": "2011-12-07T09:22:44.330Z", + "0.3.7": "2011-10-19T08:41:52.487Z", + "0.3.8": "2011-10-28T08:46:09.596Z", + "0.4.0": "2011-12-05T15:50:24.487Z", + "0.4.1": "2011-12-07T17:34:02.691Z", + "0.4.2": "2011-12-08T14:41:45.728Z", + "0.4.3": "2011-12-12T19:28:22.665Z", + "0.4.4": "2011-12-14T11:47:53.630Z" + }, + "author": { + "name": "Claus Augusti", + "email": "claus@formatvorlage.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/juxtapos/Rain.git" + }, + "versions": { + "0.3.6": "http://registry.npmjs.org/rain/0.3.6", + "0.3.8": "http://registry.npmjs.org/rain/0.3.8", + "0.4.0": "http://registry.npmjs.org/rain/0.4.0", + "0.4.1": "http://registry.npmjs.org/rain/0.4.1", + "0.4.2": "http://registry.npmjs.org/rain/0.4.2", + "0.4.3": "http://registry.npmjs.org/rain/0.4.3", + "0.4.4": "http://registry.npmjs.org/rain/0.4.4" + }, + "dist": { + "0.3.6": { + "shasum": "9abcf4b9ace41a10032b52bd3d2531b020fc24a4", + "tarball": "http://registry.npmjs.org/rain/-/rain-0.3.6.tgz" + }, + "0.3.8": { + "shasum": "cf62bdb1e85cfd2548047aa81dd82a68d27a6035", + "tarball": "http://registry.npmjs.org/rain/-/rain-0.3.8.tgz" + }, + "0.4.0": { + "shasum": "9c4097e007a006c811edcc80a70d13c96b881120", + "tarball": "http://registry.npmjs.org/rain/-/rain-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "8ed2cc104b39f08d317815f914affcedbdecabed", + "tarball": "http://registry.npmjs.org/rain/-/rain-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "53b93dfbf6400e7dbb2099b47f5e4f40ba198bf9", + "tarball": "http://registry.npmjs.org/rain/-/rain-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "9f2c12b1d677ffd6ffc4cc2385695b2f494b95a3", + "tarball": "http://registry.npmjs.org/rain/-/rain-0.4.3.tgz" + }, + "0.4.4": { + "shasum": "771b526e8e93a8ce09d8ee6f5548eb868ff0dab1", + "tarball": "http://registry.npmjs.org/rain/-/rain-0.4.4.tgz" + } + }, + "keywords": [ + "framework", + "rain" + ], + "url": "http://registry.npmjs.org/rain/" + }, + "rain-mothership": { + "name": "rain-mothership", + "description": "The mothership communication platform for the rain server", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": null, + "maintainers": [ + { + "name": "tfiwm", + "email": "privat@tschimev.de" + } + ], + "time": { + "modified": "2011-11-14T08:35:56.992Z", + "created": "2011-11-14T08:35:55.133Z", + "0.0.1": "2011-11-14T08:35:56.992Z" + }, + "author": { + "name": "Mitko Tschimev", + "email": "privat@mitko-tschimev.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/juxtapos/Rain.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/rain-mothership/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "c209bd8f8be25e74ca977eb0553977caaf9a9b75", + "tarball": "http://registry.npmjs.org/rain-mothership/-/rain-mothership-0.0.1.tgz" + } + }, + "keywords": [ + "framework", + "rain", + "mothership" + ], + "url": "http://registry.npmjs.org/rain-mothership/" + }, + "ramen": { + "name": "ramen", + "description": "RESTful service for a blogging platform (EXPERIMENTAL)", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "apeace", + "email": "apeace@gmail.com" + } + ], + "time": { + "modified": "2011-10-16T20:24:42.230Z", + "created": "2011-10-16T20:24:41.783Z", + "0.0.1": "2011-10-16T20:24:42.230Z" + }, + "author": { + "name": "Andrew Peace", + "email": "apeace@gmail.com", + "url": "http://github.com/apeace" + }, + "repository": { + "type": "git", + "url": "git://github.com/apeace/ramen.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ramen/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "0848b1739329b25780aedcb8fa213bdb3163e3f6", + "tarball": "http://registry.npmjs.org/ramen/-/ramen-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/ramen/" + }, + "ramen-api": { + "name": "ramen-api", + "description": "API access to the Ramen RESTful service (EXPERIMENTAL)", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "apeace", + "email": "apeace@gmail.com" + } + ], + "time": { + "modified": "2011-10-16T19:47:11.028Z", + "created": "2011-10-16T19:47:10.557Z", + "0.0.1": "2011-10-16T19:47:11.028Z" + }, + "author": { + "name": "Andrew Peace", + "email": "apeace@gmail.com", + "url": "http://github.com/apeace" + }, + "repository": { + "type": "git", + "url": "git://github.com/apeace/ramen-api.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ramen-api/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "dfe960f2d0e461205ebfc51cd0b1fc74e71852a1", + "tarball": "http://registry.npmjs.org/ramen-api/-/ramen-api-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/ramen-api/" + }, + "rand": { + "name": "rand", + "description": "Random Utilities", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "kzh", + "email": "kaleb@hornsby.ws" + } + ], + "time": { + "modified": "2011-06-14T14:19:54.130Z", + "created": "2011-06-13T17:29:30.273Z", + "0.0.0": "2011-06-13T17:29:30.592Z", + "0.0.1": "2011-06-13T21:54:58.398Z", + "0.0.2": "2011-06-13T22:25:22.781Z", + "0.0.3": "2011-06-14T03:16:52.318Z", + "0.0.4": "2011-06-14T14:19:54.130Z" + }, + "author": { + "name": "Kaleb Hornsby", + "email": "kaleb@hornsby.ws", + "url": "kaleb.hornsby.ws" + }, + "repository": { + "type": "git", + "url": "git://github.com/kaleb/js-rand.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/rand/0.0.0", + "0.0.1": "http://registry.npmjs.org/rand/0.0.1", + "0.0.2": "http://registry.npmjs.org/rand/0.0.2", + "0.0.3": "http://registry.npmjs.org/rand/0.0.3", + "0.0.4": "http://registry.npmjs.org/rand/0.0.4" + }, + "dist": { + "0.0.0": { + "shasum": "e0c027025c15923a3cf4f81d0c77920f39e06905", + "tarball": "http://registry.npmjs.org/rand/-/rand-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "751c6ac8c3b92374c54cf322e68cc038403ba6c8", + "tarball": "http://registry.npmjs.org/rand/-/rand-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "d58cf20dff76a459b6beef116e644c639b0fe207", + "tarball": "http://registry.npmjs.org/rand/-/rand-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "5c9d702ef5112a2bbe9a1999ec7c567d796b296c", + "tarball": "http://registry.npmjs.org/rand/-/rand-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "f247eb8d8fa98e264024e03372b0a291e5053fc4", + "tarball": "http://registry.npmjs.org/rand/-/rand-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/rand/" + }, + "randexp": { + "name": "randexp", + "description": "Create random strings that match a given regular expression.", + "dist-tags": { + "latest": "0.1.1" + }, + "readme": "# randexp.js [![Build Status](https://secure.travis-ci.org/fent/randexp.js.png)](http://travis-ci.org/fent/randexp.js)\n\nrandexp will generate a random string that matches a given RegExp Javascript object.\n\n\n# Usage\n```js\nrequire('randexp'); // must require if using node\n\n// supports grouping and piping\n/hello+ (world|to you)/.gen;\n// => hellooooooooooooooooooo world\n\n// classes and ranges and references\n/<([a-z]\\w{0,20})>foo<\\1>/.gen;\n// => foo\n\n// wildcard class\n/random stuff: .+/.gen;\n// => random stuff: 湐箻ໜ䫴␩⶛㳸長���邓蕲뤀쑡篷皇硬剈궦佔칗븛뀃匫鴔事좍ﯣ⭼ꝏ䭍詳蒂䥂뽭\n\n// ignore case\n/xxx xtreme dragon warrior xxx/i.gen;\n// => xxx xtReME dRAGON warRiOR xXX\n```\n\n\n# Motivation\nRegular expressions are used in every language, every programmer is familiar with them. Regex can be used to easily express complex strings. What better way to generate a random string than with a tool you can easily use to express the string any way you want?\n\nThanks to [String-Random](http://search.cpan.org/~steve/String-Random-0.22/lib/String/Random.pm) for giving me the idea to make this in the first place and [randexp](https://github.com/benburkert/randexp) for the nifty little `.gen` syntax.\n\n\n# Limitations\nI wish I could say randexp is guaranteed to generate a string that will always match the given regex. But ONE limitation prevents me. Positionals. You can make a regex object that is guaranteed to never match any string. Such as\n\n```js\n/a^b/m\n```\n\nThat will never match any string because it will never be next to the beginning of the expression or a new line character. For now, positionals (`^$\\\\b\\\\B`) are ignored. In the above case, randexp will generate the string `ab`.\n\nClasses like the `.` character will match anything except a new line. In this case, a character with a random char code between 0 and 65535 will be generated. If you want to overwrite this function you can do\n\n```js\nvar r = /./;\nr._anyRndChar = function() {\n return the char you want here;\n};\n```\n\nRanges like `*`, `+`, and `{3,}` have an infinite max range. In this case, randexp looks at its min and adds 100 to it to get a useable max value. If you want to use another int other than 100 you can do\n\n```js\nvar r = /(hi)*/;\nr._max = 1000000;\n```\n\n\n# Install\n### Node.js\n\n npm install randexp\n\n### Browser\n\nDownload the [minified version](http://github.com/fent/randexp.js/raw/master/build/randexp.min.js).\n\n\n# Tests\nTests are written with [vows](http://vowsjs.org/)\n\n```bash\nnpm test\n```\n\nI should really write browser tests too, sometime.\n\n\n# License\nMIT\n", + "maintainers": [ + { + "name": "neat", + "email": "roly426@gmail.com" + } + ], + "time": { + "modified": "2011-12-06T19:30:49.695Z", + "created": "2011-12-06T19:30:47.007Z", + "0.1.1": "2011-12-06T19:30:49.695Z" + }, + "author": { + "name": "Roly Fentanes", + "url": "https://github.com/fent" + }, + "repository": { + "type": "git", + "url": "git://github.com/fent/randexp.js.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/randexp/0.1.1" + }, + "dist": { + "0.1.1": { + "shasum": "dc8b736e6f47752cbc2ea3b98fa47f14b7c4a0ca", + "tarball": "http://registry.npmjs.org/randexp/-/randexp-0.1.1.tgz" + } + }, + "keywords": [ + "regex", + "regexp", + "regular expression", + "random" + ], + "url": "http://registry.npmjs.org/randexp/" + }, + "random": { + "name": "random", + "description": "A Random.org client", + "dist-tags": { + "latest": "1.0.0beta-1" + }, + "maintainers": [ + { + "name": "11rcombs", + "email": "rodger.combs@gmail.com" + } + ], + "time": { + "modified": "2011-06-01T02:58:18.965Z", + "created": "2011-05-31T20:29:29.175Z", + "0.1.0": "2011-05-31T20:29:29.538Z", + "1.0.0beta": "2011-06-01T02:51:26.301Z", + "1.0.0beta-1": "2011-06-01T02:58:18.965Z" + }, + "author": { + "name": "Rodger Combs", + "email": "rodger.combs@gmail.com", + "url": "http://combsconnections.tk/" + }, + "repository": { + "type": "git", + "url": "git://github.com/11rcombs/node-random.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/random/0.1.0", + "1.0.0beta": "http://registry.npmjs.org/random/1.0.0beta", + "1.0.0beta-1": "http://registry.npmjs.org/random/1.0.0beta-1" + }, + "dist": { + "0.1.0": { + "shasum": "94626c87682e4e77f8a13e569a837fc226921da1", + "tarball": "http://registry.npmjs.org/random/-/random-0.1.0.tgz" + }, + "1.0.0beta": { + "shasum": "87ff13cd214a541dde9a334fcfcdaf79275b3b6b", + "tarball": "http://registry.npmjs.org/random/-/random-1.0.0beta.tgz" + }, + "1.0.0beta-1": { + "shasum": "8907ce93a25889afc42e31f3dc0b8083eb816410", + "tarball": "http://registry.npmjs.org/random/-/random-1.0.0beta-1.tgz" + } + }, + "url": "http://registry.npmjs.org/random/" + }, + "random-data": { + "name": "random-data", + "description": "Functions for generating dummy test data.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "stevemolitor", + "email": "stevemolitor@gmail.com" + } + ], + "time": { + "modified": "2011-08-21T16:13:08.286Z", + "created": "2011-08-21T15:34:18.239Z", + "0.0.1": "2011-08-21T15:34:22.413Z", + "0.0.2": "2011-08-21T16:13:08.286Z" + }, + "author": { + "name": "Steve Molitor", + "email": "stevemolitor@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/stevemolitor/RandomData.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/random-data/0.0.1", + "0.0.2": "http://registry.npmjs.org/random-data/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "8207689d3f30f4f5bc7d149bb83372027096b0bb", + "tarball": "http://registry.npmjs.org/random-data/-/random-data-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "e605aee952ce2f724d1bea0d9ffc348f83dc1e0e", + "tarball": "http://registry.npmjs.org/random-data/-/random-data-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/random-data/" + }, + "random-tools": { + "name": "random-tools", + "description": "utility random functions", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "shinout", + "email": "shinout310@gmail.com" + } + ], + "time": { + "modified": "2011-10-30T14:43:16.487Z", + "created": "2011-10-29T17:39:02.999Z", + "0.0.1": "2011-10-29T17:39:05.853Z", + "0.0.2": "2011-10-30T14:43:16.487Z" + }, + "author": { + "name": "SHIN Suzuki", + "email": "shinout310@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/random-tools/0.0.1", + "0.0.2": "http://registry.npmjs.org/random-tools/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "d23f499be1975c9c270acc515fb9eb325c21088a", + "tarball": "http://registry.npmjs.org/random-tools/-/random-tools-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "db9a298d3db7cdd581419f5e888f21ccc15dadb7", + "tarball": "http://registry.npmjs.org/random-tools/-/random-tools-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/random-tools/" + }, + "range": { + "name": "range", + "description": "A simple library for range(a, b, step).", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "mcandre", + "email": "andrew.pennebaker@gmail.com" + } + ], + "time": { + "modified": "2011-09-14T02:49:00.425Z", + "created": "2011-09-14T02:49:00.319Z", + "0.0.1": "2011-09-14T02:49:00.425Z" + }, + "author": { + "name": "Andrew Pennebaker", + "email": "andrew.pennebaker@gmail.com", + "url": "http://www.yellosoft.us/" + }, + "repository": { + "type": "git", + "url": "git://github.com/mcandre/node-range.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/range/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "07602468c94e94bde3e975a2ccd01112c481cb0d", + "tarball": "http://registry.npmjs.org/range/-/range-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/range/" + }, + "ranger": { + "name": "ranger", + "description": "A node.js library for interacting with Campfire", + "dist-tags": { + "latest": "0.2.4" + }, + "maintainers": [ + { + "name": "mrduncan", + "email": "matt@mattduncan.org" + } + ], + "time": { + "modified": "2011-06-24T21:34:36.958Z", + "created": "2011-01-20T01:55:32.887Z", + "0.1.0": "2011-01-20T01:55:33.203Z", + "0.1.1": "2011-01-27T01:13:28.769Z", + "0.1.2": "2011-02-11T00:50:40.262Z", + "0.2.0": "2011-04-07T00:20:29.265Z", + "0.2.1": "2011-04-08T01:02:34.158Z", + "0.2.2": "2011-05-13T21:07:59.129Z", + "0.2.3": "2011-05-13T21:19:46.197Z", + "0.2.4": "2011-06-24T21:34:36.958Z" + }, + "author": { + "name": "Matt Duncan", + "email": "matt@mattduncan.org", + "url": "http://mattduncan.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/mrduncan/ranger.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/ranger/0.1.0", + "0.1.1": "http://registry.npmjs.org/ranger/0.1.1", + "0.1.2": "http://registry.npmjs.org/ranger/0.1.2", + "0.2.0": "http://registry.npmjs.org/ranger/0.2.0", + "0.2.1": "http://registry.npmjs.org/ranger/0.2.1", + "0.2.2": "http://registry.npmjs.org/ranger/0.2.2", + "0.2.3": "http://registry.npmjs.org/ranger/0.2.3", + "0.2.4": "http://registry.npmjs.org/ranger/0.2.4" + }, + "dist": { + "0.1.0": { + "shasum": "96b3f319ce05dbb70ebedf9c1a79ba6e5a445d16", + "tarball": "http://registry.npmjs.org/ranger/-/ranger-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "b62447c0a416dc31c1ba6fe50da9979fb21037cd", + "tarball": "http://registry.npmjs.org/ranger/-/ranger-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "c3d0708f7d5b6f0152944a67a4621e10f07c85ff", + "tarball": "http://registry.npmjs.org/ranger/-/ranger-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "b89e638406d95be00a1e58016cf028e264059edb", + "tarball": "http://registry.npmjs.org/ranger/-/ranger-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "7897a0836a9d1cb8cd745cc19882ca2d5592f248", + "tarball": "http://registry.npmjs.org/ranger/-/ranger-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "c5f8fc8057959fcaab2107bb4963217727e7a954", + "tarball": "http://registry.npmjs.org/ranger/-/ranger-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "c4700ed791231bf292c2778efb73196c8a017e88", + "tarball": "http://registry.npmjs.org/ranger/-/ranger-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "ccc00f6abccfe71f2ffb9aeac3daf257b24a6707", + "tarball": "http://registry.npmjs.org/ranger/-/ranger-0.2.4.tgz" + } + }, + "keywords": [ + "campfire", + "chat", + "api" + ], + "url": "http://registry.npmjs.org/ranger/" + }, + "rap-battle": { + "name": "rap-battle", + "description": "Terrible freestyle markov rap server", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-05-05T04:20:52.160Z", + "created": "2011-05-05T04:20:41.822Z", + "0.0.1": "2011-05-05T04:20:52.160Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/rap-server.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/rap-battle/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "e3311669a26645db4cde79d3da8d010cce8f6f4f", + "tarball": "http://registry.npmjs.org/rap-battle/-/rap-battle-0.0.1.tgz" + } + }, + "keywords": [ + "rap", + "battle", + "freestyle", + "beats" + ], + "url": "http://registry.npmjs.org/rap-battle/" + }, + "raphael": { + "name": "raphael", + "description": "An npm package of raphael", + "dist-tags": { + "latest": "1.4.7-npm-1.0.1" + }, + "maintainers": [ + { + "name": "marcuswestin", + "email": "narcvs@gmail.com" + } + ], + "time": { + "modified": "2011-06-20T17:09:34.529Z", + "created": "2011-04-19T19:05:33.893Z", + "1.4.7-14-gdbe241f": "2011-04-19T19:06:14.639Z", + "1.4.7-npm-1.0.0": "2011-04-19T19:48:12.091Z", + "1.4.7-npm-1.0.1": "2011-06-20T17:09:34.529Z" + }, + "author": { + "name": "Dmitry Baranovskiy" + }, + "repository": { + "type": "git", + "url": "git://github.com/marcuswestin/raphael.git" + }, + "versions": { + "1.4.7-14-gdbe241f": "http://registry.npmjs.org/raphael/1.4.7-14-gdbe241f", + "1.4.7-npm-1.0.0": "http://registry.npmjs.org/raphael/1.4.7-npm-1.0.0", + "1.4.7-npm-1.0.1": "http://registry.npmjs.org/raphael/1.4.7-npm-1.0.1" + }, + "dist": { + "1.4.7-14-gdbe241f": { + "shasum": "ece8c06ceb0ff711551143b84f43f3391069157e", + "tarball": "http://registry.npmjs.org/raphael/-/raphael-1.4.7-14-gdbe241f.tgz" + }, + "1.4.7-npm-1.0.0": { + "shasum": "23a3efb7ff7130604f8e9689b708fcbff951a1c1", + "tarball": "http://registry.npmjs.org/raphael/-/raphael-1.4.7-npm-1.0.0.tgz" + }, + "1.4.7-npm-1.0.1": { + "shasum": "95069a80ee45fb934512586b9c1283c3fbd7261b", + "tarball": "http://registry.npmjs.org/raphael/-/raphael-1.4.7-npm-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/raphael/" + }, + "raphael-zoom": { + "name": "raphael-zoom", + "description": "Add non destructive zoom functionaliy to Raphael", + "dist-tags": { + "latest": "0.0.4-npm-1" + }, + "maintainers": [ + { + "name": "marcuswestin", + "email": "narcvs@gmail.com" + } + ], + "time": { + "modified": "2011-05-04T03:51:03.630Z", + "created": "2011-05-04T03:51:03.385Z", + "0.0.4-npm-1": "2011-05-04T03:51:03.630Z" + }, + "author": { + "name": "wout fierens" + }, + "repository": { + "type": "git", + "url": "git://github.com/marcuswestin/raphael-zoom.git" + }, + "versions": { + "0.0.4-npm-1": "http://registry.npmjs.org/raphael-zoom/0.0.4-npm-1" + }, + "dist": { + "0.0.4-npm-1": { + "shasum": "94a864bb46c44d72f6810b33f77ddd61213f5cec", + "tarball": "http://registry.npmjs.org/raphael-zoom/-/raphael-zoom-0.0.4-npm-1.tgz" + } + }, + "url": "http://registry.npmjs.org/raphael-zoom/" + }, + "rapid": { + "name": "rapid", + "description": "Redis ORM-ish api", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/rapid/0.0.1", + "0.0.2": "http://registry.npmjs.org/rapid/0.0.2" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/rapid/-/rapid-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/rapid/-/rapid-0.0.2.tgz" + } + }, + "keywords": [ + "redis", + "orm", + "ohm", + "database", + "db" + ], + "url": "http://registry.npmjs.org/rapid/" + }, + "rasputin": { + "name": "rasputin", + "description": "Rasputin connection for Node.js", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "jsocol", + "email": "james.socol@gmail.com" + } + ], + "time": { + "modified": "2011-02-26T02:03:35.693Z", + "created": "2011-02-26T02:03:35.457Z", + "0.0.1": "2011-02-26T02:03:35.693Z" + }, + "author": { + "name": "James Socol", + "email": "james.socol@gmail.com", + "url": "http://coffeeonthekeyboard.com" + }, + "repository": { + "type": "git", + "url": "https://github.com/jsocol/rasputin-node.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/rasputin/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "9b86a804adcc21fa73a4493cb0a6bcea846e7fc0", + "tarball": "http://registry.npmjs.org/rasputin/-/rasputin-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/rasputin/" + }, + "rate-limiter": { + "name": "rate-limiter", + "description": "A module for rate limiting HTTP(s) requests based on the client IP address.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "kami", + "email": "tomaz@tomaz.me" + } + ], + "time": { + "modified": "2011-05-15T14:23:37.632Z", + "created": "2011-05-15T14:23:33.604Z", + "0.1.0": "2011-05-15T14:23:37.632Z" + }, + "author": { + "name": "Cloudkick, Inc.", + "email": "tomaz+npm@cloudkick.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/cloudkick/rate-limiter.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/rate-limiter/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "bffcfdca451ab926b260d37b98b7b77f81b51c39", + "tarball": "http://registry.npmjs.org/rate-limiter/-/rate-limiter-0.1.0.tgz" + } + }, + "keywords": [ + "rate", + "limiter", + "rate limiting", + "flood prevention" + ], + "url": "http://registry.npmjs.org/rate-limiter/" + }, + "rational": { + "name": "rational", + "description": "Natural option parsing", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "nsm", + "email": "me@nikhilmarathe.me" + } + ], + "time": { + "modified": "2011-11-17T09:06:53.272Z", + "created": "2011-11-17T09:06:49.490Z", + "0.2.0": "2011-11-17T09:06:53.272Z" + }, + "author": { + "name": "Nikhil Marathe", + "email": "nsm.nikhil@gmail.com", + "url": "http://blog.nikhilmarathe.me/" + }, + "repository": { + "type": "git", + "url": "git://github.com/nikhilm/rational.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/rational/0.2.0" + }, + "dist": { + "0.2.0": { + "shasum": "7d9bcdc74c47075a08a92b751323d7574e9b63d7", + "tarball": "http://registry.npmjs.org/rational/-/rational-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/rational/" + }, + "rats": { + "name": "rats", + "description": "rats - Realtime Analytics Tracking System", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "scopely", + "email": "opensource@scopely.com" + } + ], + "time": { + "modified": "2011-08-10T00:03:09.880Z", + "created": "2011-08-10T00:03:08.810Z", + "0.0.1": "2011-08-10T00:03:09.880Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/rats/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "bdb093c9be118463b3d20ba784472723fa0d8838", + "tarball": "http://registry.npmjs.org/rats/-/rats-0.0.1.tgz" + } + }, + "keywords": [ + "scopely", + "node", + "analytics", + "realtime" + ], + "url": "http://registry.npmjs.org/rats/" + }, + "raydash": { + "name": "raydash", + "description": "Add live video to your website with Raydash's Node.js solution", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "gersh", + "email": "gershon@raydash.com" + } + ], + "time": { + "modified": "2011-09-20T17:31:24.231Z", + "created": "2011-09-19T00:36:38.224Z", + "0.0.2": "2011-09-19T00:36:39.922Z", + "0.0.3": "2011-09-19T04:22:50.746Z", + "0.0.4": "2011-09-20T17:31:24.231Z" + }, + "author": { + "name": "Gershon Bialer", + "email": "gershon@raydash.com", + "url": "http://www.raydash.com" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/raydash/0.0.2", + "0.0.3": "http://registry.npmjs.org/raydash/0.0.3", + "0.0.4": "http://registry.npmjs.org/raydash/0.0.4" + }, + "dist": { + "0.0.2": { + "shasum": "3690cd490b4284e0504f20d59229eda865a78e13", + "tarball": "http://registry.npmjs.org/raydash/-/raydash-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "d53213dcb4b0b4e146df181f219bc8e4dee29228", + "tarball": "http://registry.npmjs.org/raydash/-/raydash-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "e3e5667693c0c1a7da804719f687b05fef9bb250", + "tarball": "http://registry.npmjs.org/raydash/-/raydash-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/raydash/" + }, + "rayo": { + "name": "rayo", + "description": "NodeJS client for the popular Rayo protocol", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "fractal", + "email": "contact@wearefractal.com" + } + ], + "time": { + "modified": "2011-11-04T15:49:55.319Z", + "created": "2011-11-04T15:49:54.209Z", + "0.0.1": "2011-11-04T15:49:55.319Z" + }, + "author": { + "name": "Fractal", + "email": "contact@wearefractal.com", + "url": "http://wearefractal.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/wearefractal/node-rayo.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/rayo/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "3d824a2139f37aad09a20bdca699524bb31a9218", + "tarball": "http://registry.npmjs.org/rayo/-/rayo-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/rayo/" + }, + "raZerdummy": { + "name": "raZerdummy", + "description": "Just a dummy project.", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "blazingthunder", + "email": "blzngthunder@gmail.com" + } + ], + "time": { + "modified": "2011-06-17T23:16:29.343Z", + "created": "2011-06-17T22:36:34.092Z", + "0.0.1": "2011-06-17T22:36:34.899Z", + "0.0.2": "2011-06-17T23:07:31.619Z", + "0.0.3": "2011-06-17T23:16:29.343Z" + }, + "author": { + "name": "raZer", + "email": "blzngthunder@gmail.com" + }, + "repository": { + "type": "git", + "url": "None yet." + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/raZerdummy/0.0.1", + "0.0.2": "http://registry.npmjs.org/raZerdummy/0.0.2", + "0.0.3": "http://registry.npmjs.org/raZerdummy/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "2436338edec19a31620936a7347b047794d05d9d", + "tarball": "http://registry.npmjs.org/raZerdummy/-/raZerdummy-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "9e22137ec525f82e7d57e65e07962ccc640f962b", + "tarball": "http://registry.npmjs.org/raZerdummy/-/raZerdummy-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "16c63c18137eb5233f0ceac2e06a3b56bbb97377", + "tarball": "http://registry.npmjs.org/raZerdummy/-/raZerdummy-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/raZerdummy/" + }, + "raziel": { + "name": "raziel", + "description": "command line password management", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "ryanflorence", + "email": "rpflorence+npm@gmail.com" + } + ], + "time": { + "modified": "2011-11-13T04:06:28.563Z", + "created": "2011-11-13T04:06:27.397Z", + "0.0.1": "2011-11-13T04:06:28.563Z" + }, + "author": { + "name": "Ryan Florence", + "email": "rpflorence+npm@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/rpflorence/raziel.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/raziel/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "4749ac08dd2a8b8f7e1be159eed5d5f23f354265", + "tarball": "http://registry.npmjs.org/raziel/-/raziel-0.0.1.tgz" + } + }, + "keywords": [ + "password" + ], + "url": "http://registry.npmjs.org/raziel/" + }, + "rblog": { + "name": "rblog", + "description": "Frontend for the Ramen blogging platform (EXPERIMENTAL)", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "apeace", + "email": "apeace@gmail.com" + } + ], + "time": { + "modified": "2011-10-16T19:42:20.712Z", + "created": "2011-10-16T19:42:20.164Z", + "0.0.1": "2011-10-16T19:42:20.712Z" + }, + "author": { + "name": "Andrew Peace", + "email": "apeace@gmail.com", + "url": "http://github.com/apeace" + }, + "repository": { + "type": "git", + "url": "git://github.com/apeace/rblog.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/rblog/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "71e0ca7685c62ff0636a44fa348f8c23210bfa19", + "tarball": "http://registry.npmjs.org/rblog/-/rblog-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/rblog/" + }, + "rbuild": { + "name": "rbuild", + "description": "A build framework made to watch source files and recompile them on the fly. Kind of like cake, jake and coke, but with its own flavor !", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "christophe.eymard", + "email": "christophe.eymard@ravelsoft.com" + } + ], + "time": { + "modified": "2011-10-26T18:47:54.883Z", + "created": "2011-10-24T13:59:06.125Z", + "0.0.1": "2011-10-24T13:59:08.323Z", + "0.0.2": "2011-10-26T18:00:07.741Z", + "0.0.3": "2011-10-26T18:47:54.883Z" + }, + "author": { + "name": "Christophe Eymard", + "email": "christophe.eymard@ravelsoft.com", + "url": "http://www.ravelsoft.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/ravelsoft/rbuild.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/rbuild/0.0.1", + "0.0.2": "http://registry.npmjs.org/rbuild/0.0.2", + "0.0.3": "http://registry.npmjs.org/rbuild/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "f4b3d6098772266d8aaae77ed86d439754d495ad", + "tarball": "http://registry.npmjs.org/rbuild/-/rbuild-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c82a2c3d1989cd4523e0de778c2f1772ae1391b1", + "tarball": "http://registry.npmjs.org/rbuild/-/rbuild-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "b8e11f40e4d415ac3309db4e9bef92f53b78a01b", + "tarball": "http://registry.npmjs.org/rbuild/-/rbuild-0.0.3.tgz" + } + }, + "keywords": [ + "build" + ], + "url": "http://registry.npmjs.org/rbuild/" + }, + "rbytes": { + "name": "rbytes", + "description": "Generates cryptographically secure random byte sequences", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "akdubya", + "email": "alekswilliams@earthlink.net" + } + ], + "author": { + "name": "Aleksander Williams" + }, + "time": { + "modified": "2011-05-09T19:05:15.332Z", + "created": "2011-01-07T01:58:11.128Z", + "0.0.1": "2011-01-07T01:58:11.128Z", + "0.0.2": "2011-01-07T01:58:11.128Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/rbytes/0.0.1", + "0.0.2": "http://registry.npmjs.org/rbytes/0.0.2" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/rbytes/-/rbytes-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f876a6321dd94a484c97c0f9ff2e1e7fe3cb8a14", + "tarball": "http://registry.npmjs.org/rbytes/-/rbytes-0.0.2.tgz" + } + }, + "keywords": [ + "random", + "crypto" + ], + "url": "http://registry.npmjs.org/rbytes/" + }, + "rdf": { + "name": "rdf", + "description": "RDF datatype integration, RDF API, and utility functions", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "acubed", + "email": "diamondmagic@users.sourceforge.net" + } + ], + "time": { + "modified": "2011-06-15T21:19:18.498Z", + "created": "2011-06-15T21:19:17.942Z", + "0.0.1": "2011-06-15T21:19:18.498Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/Acubed/node-rdf.git", + "web": "https://github.com/Acubed/node-rdf" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/rdf/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "ff2f9baacd1c9686269f41ef64134bc2782aeb29", + "tarball": "http://registry.npmjs.org/rdf/-/rdf-0.0.1.tgz" + } + }, + "keywords": [ + "RDF", + "RDF API" + ], + "url": "http://registry.npmjs.org/rdf/" + }, + "rdf-raptor-parser": { + "name": "rdf-raptor-parser", + "description": "node extension for the RDF Raptor parser library: ", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "antoniogarrote", + "email": "antoniogarrote@gmail.com" + } + ], + "time": { + "modified": "2011-06-22T20:25:54.932Z", + "created": "2011-06-22T19:33:38.303Z", + "0.1.0": "2011-06-22T19:33:38.911Z", + "0.1.1": "2011-06-22T20:06:14.439Z", + "0.1.2": "2011-06-22T20:25:54.932Z" + }, + "author": { + "name": "Antonio Garrote", + "email": "antoniogarrote@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/antoniogarrote/rdf-raptor-node-js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/rdf-raptor-parser/0.1.0", + "0.1.1": "http://registry.npmjs.org/rdf-raptor-parser/0.1.1", + "0.1.2": "http://registry.npmjs.org/rdf-raptor-parser/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "07bb5153c7b6f3b1bf1852291c7cdce739defe16", + "tarball": "http://registry.npmjs.org/rdf-raptor-parser/-/rdf-raptor-parser-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "dae32db2f1561138bd4b6f0034adb6b84fb7ff0d", + "tarball": "http://registry.npmjs.org/rdf-raptor-parser/-/rdf-raptor-parser-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "c849d3d23eb34b3d6326617c644e2fa7752cdadd", + "tarball": "http://registry.npmjs.org/rdf-raptor-parser/-/rdf-raptor-parser-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/rdf-raptor-parser/" + }, + "rdfquads": { + "name": "rdfquads", + "description": "Simple NQuad Parser for node", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "ccare", + "email": "c.p.care@gmail.com" + } + ], + "time": { + "modified": "2011-10-19T11:21:23.048Z", + "created": "2011-10-19T11:21:22.283Z", + "0.0.1": "2011-10-19T11:21:23.048Z" + }, + "author": { + "name": "Charles Care", + "email": "cpc@talis.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/talis/rdfquads.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/rdfquads/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "4f35123939d6d1a6c3954cdeffb49290b8094c1e", + "tarball": "http://registry.npmjs.org/rdfquads/-/rdfquads-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/rdfquads/" + }, + "rdfstore": { + "name": "rdfstore", + "description": "RDF graph store supporting the SPARQL query language", + "dist-tags": { + "latest": "0.4.13" + }, + "maintainers": [ + { + "name": "antoniogarrote", + "email": "antoniogarrote@gmail.com" + } + ], + "time": { + "modified": "2011-12-14T00:02:33.111Z", + "created": "2011-06-12T15:56:52.277Z", + "0.1.1": "2011-06-12T15:56:53.076Z", + "0.1.2": "2011-06-22T20:29:12.350Z", + "0.1.3": "2011-06-22T20:32:14.069Z", + "0.1.4": "2011-06-25T20:40:29.684Z", + "0.1.5": "2011-06-26T10:53:47.576Z", + "0.1.6": "2011-07-03T18:11:10.191Z", + "0.1.7": "2011-07-10T14:15:35.699Z", + "0.1.8": "2011-07-25T16:34:12.836Z", + "0.1.9": "2011-07-26T22:15:42.696Z", + "0.2.0": "2011-08-01T21:42:34.264Z", + "0.2.1": "2011-08-04T20:02:15.867Z", + "0.2.2": "2011-08-05T08:26:45.479Z", + "0.3.0": "2011-08-13T20:37:16.427Z", + "0.3.1": "2011-08-18T12:04:55.153Z", + "0.3.2": "2011-08-21T21:48:21.473Z", + "0.3.3": "2011-09-06T13:07:29.298Z", + "0.4.0": "2011-09-17T16:25:55.902Z", + "0.4.1": "2011-09-17T17:16:52.152Z", + "0.4.2": "2011-10-14T20:33:10.409Z", + "0.4.3": "2011-10-17T18:52:47.682Z", + "0.4.4": "2011-10-21T21:42:32.920Z", + "0.4.5": "2011-10-22T20:44:21.946Z", + "0.4.6": "2011-10-23T13:17:49.189Z", + "0.4.7": "2011-10-23T21:18:19.201Z", + "0.4.8": "2011-11-07T12:26:08.691Z", + "0.4.9": "2011-11-19T16:41:10.127Z", + "0.4.10": "2011-11-24T12:34:14.716Z", + "0.4.11": "2011-11-28T20:38:29.061Z", + "0.4.13": "2011-12-14T00:02:33.111Z" + }, + "author": { + "name": "Antonio Garrote", + "email": ",\n file1: ,\n sub: {\n file0: \n }\n }\n}\n```\n\nIf you pass it the encoding, instead of buffers you'll get strings.\n\n", + "maintainers": [ + { + "name": "mmalecki", + "email": "maciej.malecki@notimplemented.org" + } + ], + "time": { + "modified": "2011-12-05T11:03:02.322Z", + "created": "2011-12-05T11:03:00.376Z", + "0.0.1": "2011-12-05T11:03:02.322Z" + }, + "author": { + "name": "Maciej Małecki", + "email": "maciej.malecki@notimplemented.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/mmalecki/node-read-dir-files.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/read-dir-files/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "47e12b9be3be005fc11665dd45f07e865e460eeb", + "tarball": "http://registry.npmjs.org/read-dir-files/-/read-dir-files-0.0.1.tgz" + } + }, + "keywords": [ + "fs", + "recursive", + "file" + ], + "url": "http://registry.npmjs.org/read-dir-files/" + }, + "read-files": { + "name": "read-files", + "description": "Asynchronously reads an array of files and returns their contents.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "pvorb", + "email": "paul@vorb.de" + } + ], + "time": { + "modified": "2011-10-28T13:06:51.897Z", + "created": "2011-08-26T09:37:03.067Z", + "0.0.0": "2011-08-26T09:37:05.766Z", + "0.1.0": "2011-10-28T13:06:51.897Z" + }, + "author": { + "name": "Paul Vorbach", + "email": "paul@vorb.de", + "url": "http://vorb.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/pvorb/node-read-files.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/read-files/0.0.0", + "0.1.0": "http://registry.npmjs.org/read-files/0.1.0" + }, + "dist": { + "0.0.0": { + "shasum": "9c8141da4eaa1b2e8a49ce83be12771b4e152e43", + "tarball": "http://registry.npmjs.org/read-files/-/read-files-0.0.0.tgz" + }, + "0.1.0": { + "shasum": "606bb7a0177952d6a2f983d598096094314d321e", + "tarball": "http://registry.npmjs.org/read-files/-/read-files-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/read-files/" + }, + "readability": { + "name": "readability", + "description": "Arc90's readability.js adapted to node.js", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "arrix", + "email": "arrixzhou@gmail.com" + } + ], + "versions": { + "0.1.0": "http://registry.npmjs.org/readability/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "5d085f0023a19d8df781bf06ce380bf79312152a", + "tarball": "http://registry.npmjs.org/readability/-/readability-0.1.0.tgz" + } + }, + "keywords": [ + "readability" + ], + "url": "http://registry.npmjs.org/readability/" + }, + "readability.node": { + "name": "readability.node", + "description": "Readability API Client", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "mattinsler", + "email": "matt.insler@gmail.com" + } + ], + "time": { + "modified": "2011-10-11T05:44:47.234Z", + "created": "2011-10-11T05:44:46.849Z", + "0.1.0": "2011-10-11T05:44:47.234Z" + }, + "author": { + "name": "Matt Insler", + "email": "matt.insler@gmail.com", + "url": "www.mattinsler.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mattinsler/readability.node.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/readability.node/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "c298adc385458dfff028e9ece81f0788ddcef35d", + "tarball": "http://registry.npmjs.org/readability.node/-/readability.node-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/readability.node/" + }, + "readabilitySAX": { + "name": "readabilitySAX", + "description": "the readability script ported to a sax parser", + "dist-tags": { + "latest": "0.6.1" + }, + "maintainers": [ + { + "name": "feedic", + "email": "me@feedic.com" + } + ], + "time": { + "modified": "2011-12-02T15:32:55.288Z", + "created": "2011-07-31T20:56:03.476Z", + "0.1.0": "2011-07-31T20:56:04.520Z", + "0.1.1": "2011-08-06T19:52:35.975Z", + "0.2.0": "2011-08-28T11:34:03.868Z", + "0.2.1": "2011-08-28T18:09:00.876Z", + "0.2.2": "2011-09-07T18:00:11.440Z", + "0.3.0": "2011-10-21T12:44:29.772Z", + "0.3.1": "2011-10-21T13:37:26.711Z", + "0.3.2": "2011-10-21T13:42:46.471Z", + "0.3.3": "2011-11-05T19:04:46.960Z", + "0.5.0": "2011-11-27T15:39:38.242Z", + "0.6.0": "2011-11-30T15:58:52.625Z", + "0.6.1": "2011-12-02T15:32:55.288Z" + }, + "author": { + "name": "Felix Boehm", + "email": "me@feedic.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/fb55/readabilitysax.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/readabilitySAX/0.1.0", + "0.1.1": "http://registry.npmjs.org/readabilitySAX/0.1.1", + "0.2.0": "http://registry.npmjs.org/readabilitySAX/0.2.0", + "0.2.1": "http://registry.npmjs.org/readabilitySAX/0.2.1", + "0.2.2": "http://registry.npmjs.org/readabilitySAX/0.2.2", + "0.3.0": "http://registry.npmjs.org/readabilitySAX/0.3.0", + "0.3.1": "http://registry.npmjs.org/readabilitySAX/0.3.1", + "0.3.2": "http://registry.npmjs.org/readabilitySAX/0.3.2", + "0.3.3": "http://registry.npmjs.org/readabilitySAX/0.3.3", + "0.5.0": "http://registry.npmjs.org/readabilitySAX/0.5.0", + "0.6.0": "http://registry.npmjs.org/readabilitySAX/0.6.0", + "0.6.1": "http://registry.npmjs.org/readabilitySAX/0.6.1" + }, + "dist": { + "0.1.0": { + "shasum": "5b6081466b97d8aea7d6bb70ebc7ec69e9bd4aef", + "tarball": "http://registry.npmjs.org/readabilitySAX/-/readabilitySAX-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "f739815ecd9bac7f704edf16d6b8096837f299f4", + "tarball": "http://registry.npmjs.org/readabilitySAX/-/readabilitySAX-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "6f0b8c4335d9fb22411fafec7e33a956da3ade93", + "tarball": "http://registry.npmjs.org/readabilitySAX/-/readabilitySAX-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "15c59bd40577d9ad816ad56dcf938119cf91bd27", + "tarball": "http://registry.npmjs.org/readabilitySAX/-/readabilitySAX-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "1ccb350d6a2a9d816d1826344bcfbb6caecc2a27", + "tarball": "http://registry.npmjs.org/readabilitySAX/-/readabilitySAX-0.2.2.tgz" + }, + "0.3.0": { + "shasum": "fa5c874fb1f71056d42526c9dc9a1e5c32c5ba0e", + "tarball": "http://registry.npmjs.org/readabilitySAX/-/readabilitySAX-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "88dd57d744fb01800392b0f38bb8707bc4aea480", + "tarball": "http://registry.npmjs.org/readabilitySAX/-/readabilitySAX-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "3e362647e26758d68707d1f4f8bc310b24e2e8df", + "tarball": "http://registry.npmjs.org/readabilitySAX/-/readabilitySAX-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "b6aad022504f426ade57d18aaddfefeba6b8663d", + "tarball": "http://registry.npmjs.org/readabilitySAX/-/readabilitySAX-0.3.3.tgz" + }, + "0.5.0": { + "shasum": "506942bb487c05bc4e2046bc6a31d85c71d8efbc", + "tarball": "http://registry.npmjs.org/readabilitySAX/-/readabilitySAX-0.5.0.tgz" + }, + "0.6.0": { + "shasum": "754200f10a0bedee3fc7227574d4138230830cd3", + "tarball": "http://registry.npmjs.org/readabilitySAX/-/readabilitySAX-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "4214c19bc07634c46e87d92ce1b5e8dc6b1ecdf8", + "tarball": "http://registry.npmjs.org/readabilitySAX/-/readabilitySAX-0.6.1.tgz" + } + }, + "url": "http://registry.npmjs.org/readabilitySAX/" + }, + "ready.js": { + "name": "ready.js", + "description": "continuous javascript integration", + "dist-tags": { + "latest": "1.3.5" + }, + "maintainers": [ + { + "name": "dsimard", + "email": "dsimard@azanka.ca" + } + ], + "time": { + "modified": "2011-12-09T20:03:09.078Z", + "created": "2011-01-21T21:35:13.399Z", + "1.1.0": "2011-01-21T21:35:13.713Z", + "1.2.0": "2011-01-29T18:47:50.735Z", + "1.2.1": "2011-02-18T15:04:05.533Z", + "1.2.2": "2011-03-15T02:13:46.045Z", + "1.3.0": "2011-03-17T21:32:21.330Z", + "1.3.1": "2011-03-30T21:32:37.631Z", + "1.3.2": "2011-08-24T15:52:14.044Z", + "1.3.3": "2011-09-09T18:04:12.927Z", + "1.3.4": "2011-12-02T22:00:14.606Z", + "1.3.5": "2011-12-09T20:03:09.078Z" + }, + "author": { + "name": "dsimard", + "email": "dsimard@azanka.ca", + "url": "http://github.com/dsimard" + }, + "repository": { + "type": "git", + "url": "git://github.com/dsimard/ready.js.git" + }, + "versions": { + "1.1.0": "http://registry.npmjs.org/ready.js/1.1.0", + "1.2.0": "http://registry.npmjs.org/ready.js/1.2.0", + "1.2.1": "http://registry.npmjs.org/ready.js/1.2.1", + "1.2.2": "http://registry.npmjs.org/ready.js/1.2.2", + "1.3.0": "http://registry.npmjs.org/ready.js/1.3.0", + "1.3.2": "http://registry.npmjs.org/ready.js/1.3.2", + "1.3.3": "http://registry.npmjs.org/ready.js/1.3.3", + "1.3.4": "http://registry.npmjs.org/ready.js/1.3.4", + "1.3.5": "http://registry.npmjs.org/ready.js/1.3.5" + }, + "dist": { + "1.1.0": { + "tarball": "http://registry.npmjs.org/ready.js/-/ready.js-1.1.0.tgz" + }, + "1.2.0": { + "tarball": "http://registry.npmjs.org/ready.js/-/ready.js-1.2.0.tgz" + }, + "1.2.1": { + "tarball": "http://registry.npmjs.org/ready.js/-/ready.js-1.2.1.tgz" + }, + "1.2.2": { + "shasum": "ecde22633d1572efbacc276a362099f17116d55e", + "tarball": "http://registry.npmjs.org/ready.js/-/ready.js-1.2.2.tgz" + }, + "1.3.0": { + "shasum": "0c05413849c063bf37f2316d77fd784c7353802c", + "tarball": "http://registry.npmjs.org/ready.js/-/ready.js-1.3.0.tgz" + }, + "1.3.2": { + "shasum": "677fcc10d39ad43ae21145ab062b5902baef055b", + "tarball": "http://registry.npmjs.org/ready.js/-/ready.js-1.3.2.tgz" + }, + "1.3.3": { + "shasum": "62c48d6a7253357360fd0870afa0ede754f19aa1", + "tarball": "http://registry.npmjs.org/ready.js/-/ready.js-1.3.3.tgz" + }, + "1.3.4": { + "shasum": "d30cd410fff24b259f1e29f1687999334e2036ad", + "tarball": "http://registry.npmjs.org/ready.js/-/ready.js-1.3.4.tgz" + }, + "1.3.5": { + "shasum": "64651bc6f77e1f185a82a6541194c82b0fb118eb", + "tarball": "http://registry.npmjs.org/ready.js/-/ready.js-1.3.5.tgz" + } + }, + "keywords": [ + "continuous integration", + "jslint", + "javascript", + "minifier", + "compiler", + "ci" + ], + "url": "http://registry.npmjs.org/ready.js/" + }, + "readyjslint": { + "name": "readyjslint", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "dsimard", + "email": "dsimard@azanka.ca" + } + ], + "time": { + "modified": "2011-01-15T16:39:51.211Z", + "created": "2011-01-15T16:39:50.972Z", + "0.0.4": "2011-01-15T16:39:51.211Z" + }, + "author": { + "name": "Douglas Crockford", + "email": "douglas@crockford.com" + }, + "versions": { + "0.0.4": "http://registry.npmjs.org/readyjslint/0.0.4" + }, + "dist": { + "0.0.4": { + "tarball": "http://registry.npmjs.org/readyjslint/-/readyjslint-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/readyjslint/" + }, + "recallme": { + "name": "recallme", + "description": "A micro js library to allows you to manage errors by restarting the original function.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "francois", + "email": "francois@2metz.fr" + } + ], + "time": { + "modified": "2011-10-22T18:07:01.222Z", + "created": "2011-10-13T22:13:06.767Z", + "0.0.1": "2011-10-13T22:13:08.131Z", + "0.1.0": "2011-10-13T22:18:29.397Z", + "0.1.1": "2011-10-22T18:07:01.222Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/francois2metz/recallme.git" + }, + "author": { + "name": "François de Metz" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/recallme/0.0.1", + "0.1.0": "http://registry.npmjs.org/recallme/0.1.0", + "0.1.1": "http://registry.npmjs.org/recallme/0.1.1" + }, + "dist": { + "0.0.1": { + "shasum": "e581992ebc6ea6f677c444405e5ed6510a683c85", + "tarball": "http://registry.npmjs.org/recallme/-/recallme-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "600ded7cd6eb0d2ba3ed2b154367d082937ba6b9", + "tarball": "http://registry.npmjs.org/recallme/-/recallme-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "58f81999ecdb26410dea85896ff1722fe5a7850a", + "tarball": "http://registry.npmjs.org/recallme/-/recallme-0.1.1.tgz" + } + }, + "keywords": [ + "supervisor", + "ender" + ], + "url": "http://registry.npmjs.org/recallme/" + }, + "recaptcha": { + "name": "recaptcha", + "description": "Display and verify a Recaptcha captcha", + "dist-tags": { + "latest": "1.1.0" + }, + "maintainers": [ + { + "name": "mirhampt", + "email": "mirhampt@gmail.com" + } + ], + "author": { + "name": "Michael Hampton", + "email": "mirhampt+github@gmail.com" + }, + "time": { + "modified": "2011-06-12T21:54:40.316Z", + "created": "2011-06-12T21:54:40.316Z", + "1.0.0": "2011-06-12T21:54:40.316Z", + "1.1.0": "2011-06-12T21:54:40.316Z" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/recaptcha/1.0.0", + "1.1.0": "http://registry.npmjs.org/recaptcha/1.1.0" + }, + "dist": { + "1.0.0": { + "tarball": "http://packages:5984/recaptcha/-/recaptcha-1.0.0.tgz" + }, + "1.1.0": { + "shasum": "944f09e9cc7b08e4c73761acb309f31a3470e8c2", + "tarball": "http://registry.npmjs.org/recaptcha/-/recaptcha-1.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/recaptcha/" + }, + "recaptcha-async": { + "name": "recaptcha-async", + "description": "Handles calling reCAPTCHA asyncronously.", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "aldipower", + "email": "nihil.baxter.dev@gmail.com" + } + ], + "time": { + "modified": "2011-06-19T17:44:17.645Z", + "created": "2011-06-19T17:23:00.998Z", + "0.0.1": "2011-06-19T17:23:01.818Z", + "0.0.2": "2011-06-19T17:33:15.391Z", + "0.0.3": "2011-06-19T17:34:44.000Z", + "0.0.4": "2011-06-19T17:44:17.645Z" + }, + "author": { + "name": "Felix Gertz", + "email": "nihil.baxter.dev@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/aldipower/nodejs-recaptcha.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/recaptcha-async/0.0.1", + "0.0.2": "http://registry.npmjs.org/recaptcha-async/0.0.2", + "0.0.3": "http://registry.npmjs.org/recaptcha-async/0.0.3", + "0.0.4": "http://registry.npmjs.org/recaptcha-async/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "5b048bc908f231e65358423dd8d5eb6c41285b15", + "tarball": "http://registry.npmjs.org/recaptcha-async/-/recaptcha-async-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "fbb7a4f3e2db750ace85123899fd164811d0f896", + "tarball": "http://registry.npmjs.org/recaptcha-async/-/recaptcha-async-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "0971961d932994f4165fdfccddb443b4d8292b58", + "tarball": "http://registry.npmjs.org/recaptcha-async/-/recaptcha-async-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "42b553f3d88fe7b5e41d2f308c8f4aae7bda76c6", + "tarball": "http://registry.npmjs.org/recaptcha-async/-/recaptcha-async-0.0.4.tgz" + } + }, + "keywords": [ + "recaptcha", + "captcha", + "web" + ], + "url": "http://registry.npmjs.org/recaptcha-async/" + }, + "recline": { + "name": "recline", + "description": "High level client library for couchDB which facilitates the creation of wufoo like forms, meetup.com like events and membership groups.", + "dist-tags": { + "latest": "0.0.4619" + }, + "maintainers": [ + { + "name": "toddmoore", + "email": "todd@toddm.me" + } + ], + "time": { + "modified": "2011-05-23T14:13:54.316Z", + "created": "2011-05-08T11:57:47.363Z", + "0.0.20": "2011-05-08T11:57:48.130Z", + "0.0.201": "2011-05-08T12:48:25.720Z", + "0.0.22": "2011-05-08T14:03:16.512Z", + "0.0.23": "2011-05-08T20:28:10.617Z", + "0.0.24": "2011-05-08T21:45:14.862Z", + "0.0.25": "2011-05-08T21:47:29.560Z", + "0.0.26": "2011-05-08T22:16:27.031Z", + "0.0.27": "2011-05-08T22:44:50.968Z", + "0.0.28": "2011-05-09T13:04:27.455Z", + "0.0.29": "2011-05-09T13:06:56.371Z", + "0.0.30": "2011-05-09T19:35:22.363Z", + "0.0.31": "2011-05-09T19:48:04.436Z", + "0.0.32": "2011-05-09T20:09:00.617Z", + "0.0.33": "2011-05-10T00:41:20.900Z", + "0.0.4": "2011-05-12T12:41:33.412Z", + "0.0.41": "2011-05-17T20:19:40.927Z", + "0.0.42": "2011-05-18T09:53:16.297Z", + "0.0.43": "2011-05-18T09:54:37.719Z", + "0.0.44": "2011-05-18T17:42:23.407Z", + "0.0.45": "2011-05-18T17:50:30.208Z", + "0.0.451": "2011-05-18T17:51:52.238Z", + "0.0.452": "2011-05-18T18:01:34.107Z", + "0.0.453": "2011-05-18T21:10:30.426Z", + "0.0.454": "2011-05-18T21:17:09.812Z", + "0.0.455": "2011-05-18T21:20:54.911Z", + "0.0.4551": "2011-05-18T21:22:27.693Z", + "0.0.4552": "2011-05-18T21:23:51.774Z", + "0.0.4553": "2011-05-18T21:24:38.309Z", + "0.0.4554": "2011-05-18T21:27:14.555Z", + "0.0.4555": "2011-05-18T21:28:50.162Z", + "0.0.4556": "2011-05-18T21:29:43.350Z", + "0.0.4557": "2011-05-18T21:31:07.662Z", + "0.0.4558": "2011-05-18T21:33:34.448Z", + "0.0.4559": "2011-05-18T21:43:13.844Z", + "0.0.456": "2011-05-18T21:45:34.653Z", + "0.0.4561": "2011-05-18T21:49:03.020Z", + "0.0.4562": "2011-05-18T22:21:02.951Z", + "0.0.4563": "2011-05-18T22:44:58.997Z", + "0.0.4564": "2011-05-18T22:49:54.725Z", + "0.0.4565": "2011-05-18T22:56:18.624Z", + "0.0.4566": "2011-05-18T22:58:14.607Z", + "0.0.4567": "2011-05-18T22:58:50.790Z", + "0.0.4568": "2011-05-18T23:01:46.605Z", + "0.0.4569": "2011-05-18T23:02:38.404Z", + "0.0.4570": "2011-05-18T23:05:16.569Z", + "0.0.4571": "2011-05-18T23:06:37.693Z", + "0.0.4572": "2011-05-18T23:25:51.157Z", + "0.0.4573": "2011-05-18T23:26:38.884Z", + "0.0.4574": "2011-05-18T23:30:49.875Z", + "0.0.4575": "2011-05-18T23:32:08.484Z", + "0.0.4576": "2011-05-18T23:34:33.670Z", + "0.0.4577": "2011-05-18T23:36:23.701Z", + "0.0.4578": "2011-05-19T16:02:39.225Z", + "0.0.4579": "2011-05-19T16:10:39.702Z", + "0.0.4580": "2011-05-19T16:15:25.255Z", + "0.0.4581": "2011-05-19T16:26:20.577Z", + "0.0.4582": "2011-05-19T16:33:00.831Z", + "0.0.4583": "2011-05-19T16:42:34.473Z", + "0.0.4584": "2011-05-19T16:44:02.702Z", + "0.0.4585": "2011-05-19T16:48:42.485Z", + "0.0.4586": "2011-05-19T16:52:17.387Z", + "0.0.4587": "2011-05-19T16:54:14.247Z", + "0.0.4588": "2011-05-19T17:02:28.038Z", + "0.0.4589": "2011-05-19T17:03:55.961Z", + "0.0.4590": "2011-05-19T17:06:01.831Z", + "0.0.4591": "2011-05-19T17:07:39.058Z", + "0.0.4592": "2011-05-19T19:27:46.030Z", + "0.0.4593": "2011-05-19T20:15:05.379Z", + "0.0.4594": "2011-05-19T20:18:28.072Z", + "0.0.4595": "2011-05-19T20:29:18.576Z", + "0.0.4596": "2011-05-19T20:54:18.690Z", + "0.0.4597": "2011-05-19T21:16:48.682Z", + "0.0.4598": "2011-05-19T21:19:03.979Z", + "0.0.4599": "2011-05-19T21:20:21.257Z", + "0.0.4600": "2011-05-19T21:55:59.564Z", + "0.0.4601": "2011-05-20T12:53:27.285Z", + "0.0.4602": "2011-05-20T14:25:32.671Z", + "0.0.4603": "2011-05-20T14:28:02.572Z", + "0.0.4604": "2011-05-20T14:33:31.583Z", + "0.0.4605": "2011-05-20T14:47:33.396Z", + "0.0.4606": "2011-05-20T15:37:53.856Z", + "0.0.4607": "2011-05-20T15:39:01.091Z", + "0.0.4608": "2011-05-20T15:40:30.142Z", + "0.0.4609": "2011-05-20T15:46:56.358Z", + "0.0.4610": "2011-05-20T16:54:54.105Z", + "0.0.4611": "2011-05-20T16:55:51.214Z", + "0.0.4612": "2011-05-20T16:56:57.522Z", + "0.0.4613": "2011-05-20T17:07:55.746Z", + "0.0.4614": "2011-05-20T17:09:14.492Z", + "0.0.4615": "2011-05-20T17:12:52.786Z", + "0.0.4616": "2011-05-20T17:13:39.726Z", + "0.0.4617": "2011-05-23T10:46:25.333Z", + "0.0.4618": "2011-05-23T14:11:29.210Z", + "0.0.4619": "2011-05-23T14:13:54.316Z" + }, + "author": { + "name": "Todd Moore", + "email": "todd@toddm.me", + "url": "toddm.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/toddmoore/recline.git" + }, + "versions": { + "0.0.20": "http://registry.npmjs.org/recline/0.0.20", + "0.0.201": "http://registry.npmjs.org/recline/0.0.201", + "0.0.22": "http://registry.npmjs.org/recline/0.0.22", + "0.0.23": "http://registry.npmjs.org/recline/0.0.23", + "0.0.24": "http://registry.npmjs.org/recline/0.0.24", + "0.0.25": "http://registry.npmjs.org/recline/0.0.25", + "0.0.26": "http://registry.npmjs.org/recline/0.0.26", + "0.0.27": "http://registry.npmjs.org/recline/0.0.27", + "0.0.28": "http://registry.npmjs.org/recline/0.0.28", + "0.0.29": "http://registry.npmjs.org/recline/0.0.29", + "0.0.30": "http://registry.npmjs.org/recline/0.0.30", + "0.0.31": "http://registry.npmjs.org/recline/0.0.31", + "0.0.32": "http://registry.npmjs.org/recline/0.0.32", + "0.0.33": "http://registry.npmjs.org/recline/0.0.33", + "0.0.4": "http://registry.npmjs.org/recline/0.0.4", + "0.0.41": "http://registry.npmjs.org/recline/0.0.41", + "0.0.42": "http://registry.npmjs.org/recline/0.0.42", + "0.0.43": "http://registry.npmjs.org/recline/0.0.43", + "0.0.44": "http://registry.npmjs.org/recline/0.0.44", + "0.0.45": "http://registry.npmjs.org/recline/0.0.45", + "0.0.451": "http://registry.npmjs.org/recline/0.0.451", + "0.0.452": "http://registry.npmjs.org/recline/0.0.452", + "0.0.453": "http://registry.npmjs.org/recline/0.0.453", + "0.0.454": "http://registry.npmjs.org/recline/0.0.454", + "0.0.455": "http://registry.npmjs.org/recline/0.0.455", + "0.0.4551": "http://registry.npmjs.org/recline/0.0.4551", + "0.0.4552": "http://registry.npmjs.org/recline/0.0.4552", + "0.0.4553": "http://registry.npmjs.org/recline/0.0.4553", + "0.0.4554": "http://registry.npmjs.org/recline/0.0.4554", + "0.0.4555": "http://registry.npmjs.org/recline/0.0.4555", + "0.0.4556": "http://registry.npmjs.org/recline/0.0.4556", + "0.0.4557": "http://registry.npmjs.org/recline/0.0.4557", + "0.0.4558": "http://registry.npmjs.org/recline/0.0.4558", + "0.0.4559": "http://registry.npmjs.org/recline/0.0.4559", + "0.0.456": "http://registry.npmjs.org/recline/0.0.456", + "0.0.4561": "http://registry.npmjs.org/recline/0.0.4561", + "0.0.4562": "http://registry.npmjs.org/recline/0.0.4562", + "0.0.4563": "http://registry.npmjs.org/recline/0.0.4563", + "0.0.4564": "http://registry.npmjs.org/recline/0.0.4564", + "0.0.4565": "http://registry.npmjs.org/recline/0.0.4565", + "0.0.4566": "http://registry.npmjs.org/recline/0.0.4566", + "0.0.4567": "http://registry.npmjs.org/recline/0.0.4567", + "0.0.4568": "http://registry.npmjs.org/recline/0.0.4568", + "0.0.4569": "http://registry.npmjs.org/recline/0.0.4569", + "0.0.4570": "http://registry.npmjs.org/recline/0.0.4570", + "0.0.4571": "http://registry.npmjs.org/recline/0.0.4571", + "0.0.4572": "http://registry.npmjs.org/recline/0.0.4572", + "0.0.4573": "http://registry.npmjs.org/recline/0.0.4573", + "0.0.4574": "http://registry.npmjs.org/recline/0.0.4574", + "0.0.4575": "http://registry.npmjs.org/recline/0.0.4575", + "0.0.4576": "http://registry.npmjs.org/recline/0.0.4576", + "0.0.4577": "http://registry.npmjs.org/recline/0.0.4577", + "0.0.4578": "http://registry.npmjs.org/recline/0.0.4578", + "0.0.4579": "http://registry.npmjs.org/recline/0.0.4579", + "0.0.4580": "http://registry.npmjs.org/recline/0.0.4580", + "0.0.4581": "http://registry.npmjs.org/recline/0.0.4581", + "0.0.4582": "http://registry.npmjs.org/recline/0.0.4582", + "0.0.4583": "http://registry.npmjs.org/recline/0.0.4583", + "0.0.4584": "http://registry.npmjs.org/recline/0.0.4584", + "0.0.4585": "http://registry.npmjs.org/recline/0.0.4585", + "0.0.4586": "http://registry.npmjs.org/recline/0.0.4586", + "0.0.4587": "http://registry.npmjs.org/recline/0.0.4587", + "0.0.4588": "http://registry.npmjs.org/recline/0.0.4588", + "0.0.4589": "http://registry.npmjs.org/recline/0.0.4589", + "0.0.4590": "http://registry.npmjs.org/recline/0.0.4590", + "0.0.4591": "http://registry.npmjs.org/recline/0.0.4591", + "0.0.4592": "http://registry.npmjs.org/recline/0.0.4592", + "0.0.4593": "http://registry.npmjs.org/recline/0.0.4593", + "0.0.4594": "http://registry.npmjs.org/recline/0.0.4594", + "0.0.4595": "http://registry.npmjs.org/recline/0.0.4595", + "0.0.4596": "http://registry.npmjs.org/recline/0.0.4596", + "0.0.4597": "http://registry.npmjs.org/recline/0.0.4597", + "0.0.4598": "http://registry.npmjs.org/recline/0.0.4598", + "0.0.4599": "http://registry.npmjs.org/recline/0.0.4599", + "0.0.4600": "http://registry.npmjs.org/recline/0.0.4600", + "0.0.4601": "http://registry.npmjs.org/recline/0.0.4601", + "0.0.4602": "http://registry.npmjs.org/recline/0.0.4602", + "0.0.4603": "http://registry.npmjs.org/recline/0.0.4603", + "0.0.4604": "http://registry.npmjs.org/recline/0.0.4604", + "0.0.4605": "http://registry.npmjs.org/recline/0.0.4605", + "0.0.4606": "http://registry.npmjs.org/recline/0.0.4606", + "0.0.4607": "http://registry.npmjs.org/recline/0.0.4607", + "0.0.4608": "http://registry.npmjs.org/recline/0.0.4608", + "0.0.4609": "http://registry.npmjs.org/recline/0.0.4609", + "0.0.4610": "http://registry.npmjs.org/recline/0.0.4610", + "0.0.4611": "http://registry.npmjs.org/recline/0.0.4611", + "0.0.4612": "http://registry.npmjs.org/recline/0.0.4612", + "0.0.4613": "http://registry.npmjs.org/recline/0.0.4613", + "0.0.4614": "http://registry.npmjs.org/recline/0.0.4614", + "0.0.4615": "http://registry.npmjs.org/recline/0.0.4615", + "0.0.4616": "http://registry.npmjs.org/recline/0.0.4616", + "0.0.4617": "http://registry.npmjs.org/recline/0.0.4617", + "0.0.4618": "http://registry.npmjs.org/recline/0.0.4618", + "0.0.4619": "http://registry.npmjs.org/recline/0.0.4619" + }, + "dist": { + "0.0.20": { + "shasum": "cda5bae7c6d437069b8dae6a4ebab5cb98daf7a3", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.20.tgz" + }, + "0.0.201": { + "shasum": "581dc19e5f69c4fe86b799a8765369cee8f9f5b6", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.201.tgz" + }, + "0.0.22": { + "shasum": "e530373d586b5d980712e91a0016510ccda7ecae", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.22.tgz" + }, + "0.0.23": { + "shasum": "50e1eba506a78d244235c55dfab14e58f615e23e", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.23.tgz" + }, + "0.0.24": { + "shasum": "fed661b36cb642e1db1ad30c077996964f249ef6", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.24.tgz" + }, + "0.0.25": { + "shasum": "0dde036f847f211b3305445f9fb691615b0ce8d5", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.25.tgz" + }, + "0.0.26": { + "shasum": "aa6f053f6a55bd43e165bb09498e9e2c4d4a73d7", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.26.tgz" + }, + "0.0.27": { + "shasum": "253b16d1f28b752d79522086b4351c43e95d00f8", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.27.tgz" + }, + "0.0.28": { + "shasum": "276197525fe5e359c30428f44bffe9b3c89db4f9", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.28.tgz" + }, + "0.0.29": { + "shasum": "15cc2b30fb51f04fe3effd3bae8acc6ba934d607", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.29.tgz" + }, + "0.0.30": { + "shasum": "db090bb0bb59d65bb42b3f5b4b43c49189818ffd", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.30.tgz" + }, + "0.0.31": { + "shasum": "663a1aa67771d835b78b7579fa29cbfc111a5413", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.31.tgz" + }, + "0.0.32": { + "shasum": "b0eab94cc0041eaeb604e1d3fd827e3c1a1032fe", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.32.tgz" + }, + "0.0.33": { + "shasum": "e8655448076b00fbf17284a853d4e458a1a62632", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.33.tgz" + }, + "0.0.4": { + "shasum": "81455e4c5b1d9f608eba59ed2d8c4bb858f182b5", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4.tgz" + }, + "0.0.41": { + "shasum": "d03bc6d5b2811d7f676ce9ea175c4ffe18d9448b", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.41.tgz" + }, + "0.0.42": { + "shasum": "da9906ea43071d5ffacaccc3aa3a434f4e9c8abe", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.42.tgz" + }, + "0.0.43": { + "shasum": "4859ad2df15d886293ab498240cff918babce387", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.43.tgz" + }, + "0.0.44": { + "shasum": "dc8c9165d159e82187887116381978ee2a799394", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.44.tgz" + }, + "0.0.45": { + "shasum": "516cf0ed66705ef7923232ecf036b5ab8854bc6b", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.45.tgz" + }, + "0.0.451": { + "shasum": "fa2744fdda8dd333a7da9b4cd8d1647b85a5f912", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.451.tgz" + }, + "0.0.452": { + "shasum": "8bfb087080cf17d637c3f73b755ec04ff3d83965", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.452.tgz" + }, + "0.0.453": { + "shasum": "4ee012cf2f2725bba286a2ede833d576cd3da157", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.453.tgz" + }, + "0.0.454": { + "shasum": "44c91dcf9fa1b11fde92414e319f3a60a2ac6387", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.454.tgz" + }, + "0.0.455": { + "shasum": "e82173f0e6b33f990f1cabedf56bee8573d48b57", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.455.tgz" + }, + "0.0.4551": { + "shasum": "54e6fd69edd33125ba1d5a6f9f50b36a5354b782", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4551.tgz" + }, + "0.0.4552": { + "shasum": "2ddf191613bcb08e124926624f0153fc1df7eb11", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4552.tgz" + }, + "0.0.4553": { + "shasum": "5b5309e7ec1d08677d9e5e46b4ef2320e4d4041e", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4553.tgz" + }, + "0.0.4554": { + "shasum": "4d5a0b528146e49093c83651867dcc5e92ad7119", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4554.tgz" + }, + "0.0.4555": { + "shasum": "6ca8197cd76f5059f0bd44f59fc7d2220004b6f4", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4555.tgz" + }, + "0.0.4556": { + "shasum": "a262c645f06ecee5d21a54041135f4477f09139b", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4556.tgz" + }, + "0.0.4557": { + "shasum": "85666a1580b8bd5288e2dce8c52f79c74ccb9d4a", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4557.tgz" + }, + "0.0.4558": { + "shasum": "3a8da3aa48817da36e7d4b6d53eb85ed17e2c607", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4558.tgz" + }, + "0.0.4559": { + "shasum": "304c56685cda483796728b7248cfc5f8a8ea6be6", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4559.tgz" + }, + "0.0.456": { + "shasum": "f523c6479e104e5169f42021d17c4650e92672db", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.456.tgz" + }, + "0.0.4561": { + "shasum": "c30ac0c1a086e615db2530e781168694203adeb2", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4561.tgz" + }, + "0.0.4562": { + "shasum": "f1d5f1f7048696002edece1c28e231367b4240ed", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4562.tgz" + }, + "0.0.4563": { + "shasum": "69bb7c5575bf6e9624a0f41139a3cf731d5f4b80", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4563.tgz" + }, + "0.0.4564": { + "shasum": "889b996a7d63fa4be1a6c4526e716413aa3d33f7", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4564.tgz" + }, + "0.0.4565": { + "shasum": "b34b10742b48032e805e454b00cbde5016e3c5b4", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4565.tgz" + }, + "0.0.4566": { + "shasum": "47f1196c5d60afcabdb60f07d728daf4694384d8", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4566.tgz" + }, + "0.0.4567": { + "shasum": "feb79675765a3d13ce026bffbd08190792958dc1", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4567.tgz" + }, + "0.0.4568": { + "shasum": "5280d7f8c283727b78cf3375391671c26a713932", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4568.tgz" + }, + "0.0.4569": { + "shasum": "636e2558c741ba19b8b43e2d7b356d972567a93c", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4569.tgz" + }, + "0.0.4570": { + "shasum": "3bb09749bb3cc59a7d1fae4886c2123e86073a8e", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4570.tgz" + }, + "0.0.4571": { + "shasum": "61e94d52189bb9fa6eb07a24a24ef708cd53a979", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4571.tgz" + }, + "0.0.4572": { + "shasum": "465a15e0f77835ef2b881ae84780a87da4abc17c", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4572.tgz" + }, + "0.0.4573": { + "shasum": "fefd6fd8043b6b2c4cdacc72cc37c1d5879eb4a8", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4573.tgz" + }, + "0.0.4574": { + "shasum": "47cbf14350d62b64a55cdb2d83213163a50e0fec", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4574.tgz" + }, + "0.0.4575": { + "shasum": "370bc9e4fe68f6478c4b98bc387a4881a840aaa0", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4575.tgz" + }, + "0.0.4576": { + "shasum": "6dd9adee920d9b500c3f1a25421e7aba5d791d07", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4576.tgz" + }, + "0.0.4577": { + "shasum": "71b1766f11090807ffe4a6e96755250209e1c81d", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4577.tgz" + }, + "0.0.4578": { + "shasum": "ad6fcec3c541afd50f128de21410e5e6e09f0362", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4578.tgz" + }, + "0.0.4579": { + "shasum": "9eb8c2615a97b44794294e2751e7b808c5c79216", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4579.tgz" + }, + "0.0.4580": { + "shasum": "07d0caffd394fdab599b21b5a2b52f04f7136def", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4580.tgz" + }, + "0.0.4581": { + "shasum": "b392b1a5b6be2a44587ba48a128e1caea9621d43", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4581.tgz" + }, + "0.0.4582": { + "shasum": "66099e871c2e7c4ee4965e02530a07c20aa216c4", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4582.tgz" + }, + "0.0.4583": { + "shasum": "2a1cba4fd29b1d2391c9f33d5cc7726fc1f9fe7b", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4583.tgz" + }, + "0.0.4584": { + "shasum": "724b02129e5c7e4005cfc4e0988a74466d837eee", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4584.tgz" + }, + "0.0.4585": { + "shasum": "f64bb2c1eb0a9a5e3246b793c09210150c217123", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4585.tgz" + }, + "0.0.4586": { + "shasum": "dac364d0bd3cf24394195e6f5adc43235a12250f", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4586.tgz" + }, + "0.0.4587": { + "shasum": "25e181b91216997d8d2a82411b1567a6b26f8b35", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4587.tgz" + }, + "0.0.4588": { + "shasum": "f9991d0327bc5f87904d7f02f3fb9688d5ed24d7", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4588.tgz" + }, + "0.0.4589": { + "shasum": "ebb6a0b1b7fa02b1b46983db18cfc482cb554687", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4589.tgz" + }, + "0.0.4590": { + "shasum": "ff10669eb17ed401165e7d9d8f12b8bccf3d2e71", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4590.tgz" + }, + "0.0.4591": { + "shasum": "4f7345903b8c3ee755425f3ffd66f11855a5d94a", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4591.tgz" + }, + "0.0.4592": { + "shasum": "8790ff95b6f1fb9b796a2c282c09bdb35d6713b5", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4592.tgz" + }, + "0.0.4593": { + "shasum": "b7120b3e0ae80c22cde34742221d8dc2de2f230d", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4593.tgz" + }, + "0.0.4594": { + "shasum": "ac33696476e78f78b654c27da04a1357d9e9f654", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4594.tgz" + }, + "0.0.4595": { + "shasum": "646981db7bc23a4e4772d39a55f214503ce42ae9", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4595.tgz" + }, + "0.0.4596": { + "shasum": "445decead2631f475179df8657c90b81735cbde6", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4596.tgz" + }, + "0.0.4597": { + "shasum": "0b0de8d15a770e604f91aba56096024bcb2989d1", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4597.tgz" + }, + "0.0.4598": { + "shasum": "1e1dba70947d3ae12c63d547cae5605956da79fb", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4598.tgz" + }, + "0.0.4599": { + "shasum": "13e913f7199bcbf2d7dc79f8dc41d1db3542d482", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4599.tgz" + }, + "0.0.4600": { + "shasum": "d9b3321abee50256c0b230406c86dae9c717a0b6", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4600.tgz" + }, + "0.0.4601": { + "shasum": "6e49ba2a5d465bf7b9310917f91c41fdef80838d", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4601.tgz" + }, + "0.0.4602": { + "shasum": "4c78b5134c782178367d8681244c4ca198ae2708", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4602.tgz" + }, + "0.0.4603": { + "shasum": "b771ec31811b4995518192f1fdfff2b0070715fa", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4603.tgz" + }, + "0.0.4604": { + "shasum": "575eddfaabbc6463071488cbebb0ee8e705981af", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4604.tgz" + }, + "0.0.4605": { + "shasum": "b6534cf2bcc900cfc76b1713ba617d07519aca9e", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4605.tgz" + }, + "0.0.4606": { + "shasum": "ab4a265a6463cc819b94d2de18dacc0745e7760a", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4606.tgz" + }, + "0.0.4607": { + "shasum": "78108d97d0ce71a068002ed9ef41ad144aa4aad0", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4607.tgz" + }, + "0.0.4608": { + "shasum": "bd673aa7c71a9b79ef29a370f538897a2be79faa", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4608.tgz" + }, + "0.0.4609": { + "shasum": "6f634e0a17b65a70928772ee97cc26ba023e8276", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4609.tgz" + }, + "0.0.4610": { + "shasum": "54b894bcd243eef36fe64d27fecad59f40b2ab45", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4610.tgz" + }, + "0.0.4611": { + "shasum": "d2a8c57b446ddb73a7716a272288dc983bd65466", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4611.tgz" + }, + "0.0.4612": { + "shasum": "dae9685618bf3827b7454326223c78d6073a63bc", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4612.tgz" + }, + "0.0.4613": { + "shasum": "5d7129031626009033cea11e659e58ebc99c1d2f", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4613.tgz" + }, + "0.0.4614": { + "shasum": "b38d21b1cc8fcd11ca8f4c8ad74d5b911fa1cb19", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4614.tgz" + }, + "0.0.4615": { + "shasum": "29ad65b28d03c33e6ed6e9aefdb0be1490ed2e8a", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4615.tgz" + }, + "0.0.4616": { + "shasum": "fcc80fc1b9887df785e68780cfea4b8d3f6e877a", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4616.tgz" + }, + "0.0.4617": { + "shasum": "97f79c117e6a46717e29f37ed342d1817bdf674f", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4617.tgz" + }, + "0.0.4618": { + "shasum": "10aca731eb0bf5fcb02eb9f552d4ab55a7cf828f", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4618.tgz" + }, + "0.0.4619": { + "shasum": "9a10bf8eed9fc06cca72dc391026263822152189", + "tarball": "http://registry.npmjs.org/recline/-/recline-0.0.4619.tgz" + } + }, + "url": "http://registry.npmjs.org/recline/" + }, + "recon": { + "name": "recon", + "description": "Keep a network connection alive by reconnecting repeatedly", + "dist-tags": { + "latest": "0.0.8" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-recon.git" + }, + "time": { + "modified": "2011-02-23T05:50:31.748Z", + "created": "2010-12-18T09:45:45.304Z", + "0.0.1": "2010-12-18T09:45:45.304Z", + "0.0.2": "2010-12-18T09:45:45.304Z", + "0.0.3": "2010-12-20T09:52:28.125Z", + "0.0.6": "2010-12-27T04:05:50.315Z", + "0.0.7": "2011-02-14T20:06:39.535Z", + "0.0.8": "2011-02-23T05:50:31.748Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/recon/0.0.1", + "0.0.2": "http://registry.npmjs.org/recon/0.0.2", + "0.0.3": "http://registry.npmjs.org/recon/0.0.3", + "0.0.6": "http://registry.npmjs.org/recon/0.0.6", + "0.0.7": "http://registry.npmjs.org/recon/0.0.7", + "0.0.8": "http://registry.npmjs.org/recon/0.0.8" + }, + "dist": { + "0.0.1": { + "shasum": "d3c8acd2bd2e4fbc10d609dc2a323d8fdaa4ac18", + "tarball": "http://registry.npmjs.org/recon/-/recon-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "febdfc41172e6d106f8851ba4e7636ac61f93fea", + "tarball": "http://registry.npmjs.org/recon/-/recon-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "7619602e7ce8b4196d731fc0968d2b80e18815ad", + "tarball": "http://registry.npmjs.org/recon/-/recon-0.0.3.tgz" + }, + "0.0.6": { + "shasum": "44771df5b7687e981334d241fb5b770dcc16d34d", + "tarball": "http://registry.npmjs.org/recon/-/recon-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "efbab86a5228f4d02ebc9ce565c48c1761c53332", + "tarball": "http://registry.npmjs.org/recon/-/recon-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "e2befa42349c64a02a227fec822d67876144f5c4", + "tarball": "http://registry.npmjs.org/recon/-/recon-0.0.8.tgz" + } + }, + "keywords": [ + "network", + "reconnect", + "connection" + ], + "url": "http://registry.npmjs.org/recon/" + }, + "reconf": { + "name": "reconf", + "description": "Recursive configuration file management with defaults and overrides for nconf.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "bradleymeck", + "email": "bradley.meck@gmail.com" + } + ], + "time": { + "modified": "2011-06-20T16:24:43.483Z", + "created": "2011-06-14T20:14:06.634Z", + "0.1.0": "2011-06-14T20:14:07.180Z", + "0.1.1": "2011-06-20T16:24:43.483Z" + }, + "author": { + "name": "bradleymeck" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/reconf/0.1.0", + "0.1.1": "http://registry.npmjs.org/reconf/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "b1f03302a3af27cb37ec05ec5df4917256c2ab9a", + "tarball": "http://registry.npmjs.org/reconf/-/reconf-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "279c986875831b0d82b5b80435f6a53e54a823f7", + "tarball": "http://registry.npmjs.org/reconf/-/reconf-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/reconf/" + }, + "redback": { + "name": "redback", + "description": "A high-level Redis library", + "dist-tags": { + "latest": "0.2.8" + }, + "maintainers": [ + { + "name": "cohara87", + "email": "cohara87@gmail.com" + } + ], + "time": { + "modified": "2011-12-08T21:04:24.968Z", + "created": "2011-05-09T20:44:14.930Z", + "0.1.0": "2011-12-08T21:04:24.968Z", + "0.1.1": "2011-12-08T21:04:24.968Z", + "0.1.2": "2011-12-08T21:04:24.968Z", + "0.1.3": "2011-12-08T21:04:24.968Z", + "0.1.4": "2011-12-08T21:04:24.968Z", + "0.1.5": "2011-12-08T21:04:24.968Z", + "0.1.6": "2011-12-08T21:04:24.968Z", + "0.1.7": "2011-12-08T21:04:24.968Z", + "0.1.8": "2011-12-08T21:04:24.968Z", + "0.1.9": "2011-12-08T21:04:24.968Z", + "0.2.0": "2011-12-08T21:04:24.968Z", + "0.2.1": "2011-12-08T21:04:24.968Z", + "0.2.2": "2011-12-08T21:04:24.968Z", + "0.2.3": "2011-12-08T21:04:24.968Z", + "0.2.4": "2011-12-08T21:04:24.968Z", + "0.2.5": "2011-12-08T21:04:24.968Z", + "0.2.6": "2011-12-08T21:04:24.968Z", + "0.2.7": "2011-12-08T21:04:24.968Z", + "0.2.8": "2011-12-08T21:04:24.968Z" + }, + "author": { + "name": "Chris O'Hara", + "email": "cohara87@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/chriso/redback.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/redback/0.1.0", + "0.1.1": "http://registry.npmjs.org/redback/0.1.1", + "0.1.2": "http://registry.npmjs.org/redback/0.1.2", + "0.1.3": "http://registry.npmjs.org/redback/0.1.3", + "0.1.4": "http://registry.npmjs.org/redback/0.1.4", + "0.1.5": "http://registry.npmjs.org/redback/0.1.5", + "0.1.6": "http://registry.npmjs.org/redback/0.1.6", + "0.1.7": "http://registry.npmjs.org/redback/0.1.7", + "0.1.8": "http://registry.npmjs.org/redback/0.1.8", + "0.1.9": "http://registry.npmjs.org/redback/0.1.9", + "0.2.0": "http://registry.npmjs.org/redback/0.2.0", + "0.2.1": "http://registry.npmjs.org/redback/0.2.1", + "0.2.2": "http://registry.npmjs.org/redback/0.2.2", + "0.2.3": "http://registry.npmjs.org/redback/0.2.3", + "0.2.4": "http://registry.npmjs.org/redback/0.2.4", + "0.2.5": "http://registry.npmjs.org/redback/0.2.5", + "0.2.6": "http://registry.npmjs.org/redback/0.2.6", + "0.2.7": "http://registry.npmjs.org/redback/0.2.7", + "0.2.8": "http://registry.npmjs.org/redback/0.2.8" + }, + "dist": { + "0.1.0": { + "shasum": "c64a179e574ea03844a2dde1b3072bb1c3be91bd", + "tarball": "http://registry.npmjs.org/redback/-/redback-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "0c4ad0da43cb17851f98b04697b2ac6d52443966", + "tarball": "http://registry.npmjs.org/redback/-/redback-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "fd2037d404b591b5248f6b4849f54267e14f6ed8", + "tarball": "http://registry.npmjs.org/redback/-/redback-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "53f8e79bee3c3557b60cd7390b3c297bf9e0a586", + "tarball": "http://registry.npmjs.org/redback/-/redback-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "389db9b26ab026a543b79e04bde00d27da982ce6", + "tarball": "http://registry.npmjs.org/redback/-/redback-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "9473ac5a7f4b9bee8a5d92e12c1c3e3bd13e77a5", + "tarball": "http://registry.npmjs.org/redback/-/redback-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "a2e4b64598bd47d0b1735b73b66f4e28a0476623", + "tarball": "http://registry.npmjs.org/redback/-/redback-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "408e8de0ece3e9c58fdc2bff45be5436584d68dd", + "tarball": "http://registry.npmjs.org/redback/-/redback-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "57228a6b065309a72335aaef8a7e028f5e849b54", + "tarball": "http://registry.npmjs.org/redback/-/redback-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "eae4c92a5eb9e13df4e1422fe1ce6a6db90211c1", + "tarball": "http://registry.npmjs.org/redback/-/redback-0.1.9.tgz" + }, + "0.2.0": { + "shasum": "1f2a3360d97cf8a2e44455f51c1af414e89131b0", + "tarball": "http://registry.npmjs.org/redback/-/redback-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "5885d6e3cc8e32d1cd2e651905fff48a6718a884", + "tarball": "http://registry.npmjs.org/redback/-/redback-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "31653d3121ba6d33f5a0f35aacc71efd6adc7fa4", + "tarball": "http://registry.npmjs.org/redback/-/redback-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "62ae3c01794ec75d4c67f044732cb31314b64dfc", + "tarball": "http://registry.npmjs.org/redback/-/redback-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "088becb52dc4ab424a784cbb21d39abbb1e4b3c0", + "tarball": "http://registry.npmjs.org/redback/-/redback-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "ea8789fd377bf2b6a9296db1706587c7371ce084", + "tarball": "http://registry.npmjs.org/redback/-/redback-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "6bb5dff4331eefb280b7dad2eef84118c42cc1dd", + "tarball": "http://registry.npmjs.org/redback/-/redback-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "061fa4ccc134dfbcb2f5c22cdc59e88ab568ff0a", + "tarball": "http://registry.npmjs.org/redback/-/redback-0.2.7.tgz" + }, + "0.2.8": { + "shasum": "2dc8b229be40b1f66a751ed27b01237e3f3f9115", + "tarball": "http://registry.npmjs.org/redback/-/redback-0.2.8.tgz" + } + }, + "url": "http://registry.npmjs.org/redback/" + }, + "rede": { + "name": "rede", + "description": "Redis pubsub + Node", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "eac", + "email": "ericis@gmail.com" + } + ], + "time": { + "modified": "2011-04-26T19:31:39.890Z", + "created": "2011-04-26T19:31:39.592Z", + "0.1.0": "2011-04-26T19:31:39.890Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/eac/rede.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/rede/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "5d5727406f7c2cd128ff5130702220b9e6627603", + "tarball": "http://registry.npmjs.org/rede/-/rede-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/rede/" + }, + "redecard": { + "name": "redecard", + "description": "Redecard (former VisaNet) for Node.js", + "dist-tags": { + "latest": "0.0.7" + }, + "maintainers": [ + { + "name": "viktors", + "email": "viktors.rotanovs@gmail.com" + } + ], + "time": { + "modified": "2011-06-10T15:53:39.434Z", + "created": "2011-06-02T11:46:56.678Z", + "0.0.2": "2011-06-02T11:46:57.636Z", + "0.0.3": "2011-06-06T15:22:23.254Z", + "0.0.4": "2011-06-07T09:05:56.523Z", + "0.0.5": "2011-06-10T14:40:57.290Z", + "0.0.6": "2011-06-10T14:58:06.135Z", + "0.0.7": "2011-06-10T15:53:39.434Z" + }, + "author": { + "name": "Viktors Rotanovs", + "email": "viktors.rotanovs@gmail.com", + "url": "http://rotanovs.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/viktors/node-redecard.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/redecard/0.0.2", + "0.0.3": "http://registry.npmjs.org/redecard/0.0.3", + "0.0.4": "http://registry.npmjs.org/redecard/0.0.4", + "0.0.5": "http://registry.npmjs.org/redecard/0.0.5", + "0.0.6": "http://registry.npmjs.org/redecard/0.0.6", + "0.0.7": "http://registry.npmjs.org/redecard/0.0.7" + }, + "dist": { + "0.0.2": { + "shasum": "5559af8b6281378f6eb5dc566a3c541b29b567cb", + "tarball": "http://registry.npmjs.org/redecard/-/redecard-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "102f17f7f6dd9eb4b641a61a38349fb898c6441c", + "tarball": "http://registry.npmjs.org/redecard/-/redecard-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "adf9b569c374b0d1a8c59342b52c7d13be66cdd1", + "tarball": "http://registry.npmjs.org/redecard/-/redecard-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "21a5a4b1716762c9c82625efc8c2bb10f494c488", + "tarball": "http://registry.npmjs.org/redecard/-/redecard-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "589f2d9ac2505c7f90ec5bdceb4425f84155eee7", + "tarball": "http://registry.npmjs.org/redecard/-/redecard-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "d1cfb6bdce08ee8508febf914d53e48f1094cadf", + "tarball": "http://registry.npmjs.org/redecard/-/redecard-0.0.7.tgz" + } + }, + "url": "http://registry.npmjs.org/redecard/" + }, + "redim": { + "name": "redim", + "description": "Simple Redis models for simple Node.js projects", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "lysol", + "email": "derek@derekarnold.net" + } + ], + "time": { + "modified": "2011-07-03T23:50:49.305Z", + "created": "2011-07-02T16:35:45.872Z", + "0.0.1": "2011-07-02T16:35:46.638Z", + "0.0.2": "2011-07-03T00:26:58.687Z", + "0.0.3": "2011-07-03T23:20:53.167Z" + }, + "author": { + "name": "Derek Arnold" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/redim/0.0.1", + "0.0.2": "http://registry.npmjs.org/redim/0.0.2", + "0.0.3": "http://registry.npmjs.org/redim/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "00580a75c761f2a4f4bed66f40237d326b16a46d", + "tarball": "http://registry.npmjs.org/redim/-/redim-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "4847ee2c0414c995a299c5a1e055d176b6622686", + "tarball": "http://registry.npmjs.org/redim/-/redim-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "597bff038cf336ba51429f9835fdac4ba8f8757e", + "tarball": "http://registry.npmjs.org/redim/-/redim-0.0.3.tgz" + } + }, + "keywords": [ + "redis", + "model", + "coffeescript" + ], + "url": "http://registry.npmjs.org/redim/" + }, + "redirect": { + "name": "redirect", + "description": "A simple HTTP redirection server", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "# node-redirect\n\nCreates a server which redirects incoming traffic to another domain.\n\n# Requirements\n\n- node\n- npm\n\n# Installation\n\n```\n npm install redirect\n```\n\n# Configuration\n\nIn order to run the `redirect` application, you will need to modify the `config.json` with your redirection options.\n\n\n```js\n{\n \"code\": 302,\n \"host\": \"http://pkumar.github.com\"\n}\n```\n\n# Usage\n\n### Starting locally\n\n node bin/server\n\n*Now you can visit http://localhost:3000 to be redirected*\n\n# License\n\n(The MIT License)\n\nCopyright (c) 2011 Pavan Kumar Sunkara\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n", + "maintainers": [ + { + "name": "pksunkara", + "email": "pavan.sss1991@gmail.com" + } + ], + "time": { + "modified": "2011-11-24T17:30:51.648Z", + "created": "2011-11-24T17:27:45.211Z", + "0.1.0": "2011-11-24T17:30:51.648Z" + }, + "author": { + "name": "Pavan Kumar Sunkara", + "email": "pavan.sss1991@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/redirect/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "144e4644150bfbf752d090f2d7d1b5b19ebb10bf", + "tarball": "http://registry.npmjs.org/redirect/-/redirect-0.1.0.tgz" + } + }, + "keywords": [ + "redirect", + "302", + "server", + "http", + "simple" + ], + "url": "http://registry.npmjs.org/redirect/" + }, + "redis": { + "name": "redis", + "description": "Redis client library", + "dist-tags": { + "latest": "0.7.1" + }, + "maintainers": [ + { + "name": "mjr", + "email": "mjr@ranney.com" + } + ], + "author": { + "name": "Matt Ranney", + "email": "mjr@ranney.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mranney/node_redis.git" + }, + "time": { + "modified": "2011-11-23T08:36:22.263Z", + "created": "2010-12-30T01:49:26.231Z", + "0.0.1": "2010-12-30T01:49:26.231Z", + "0.0.2": "2010-12-30T01:49:26.231Z", + "0.0.3": "2010-12-30T01:49:26.231Z", + "0.0.4": "2010-12-30T01:49:26.231Z", + "0.0.7": "2010-12-30T01:49:26.231Z", + "0.0.8": "2010-12-30T01:49:26.231Z", + "0.1.0": "2010-12-30T01:49:26.231Z", + "0.1.1": "2010-12-30T01:49:26.231Z", + "0.1.2": "2010-12-30T01:49:26.231Z", + "0.2.0": "2010-12-30T01:49:26.231Z", + "0.2.1": "2010-12-30T01:49:26.231Z", + "0.2.2": "2010-12-30T01:49:26.231Z", + "0.2.3": "2010-12-30T01:49:26.231Z", + "0.2.4": "2010-12-30T01:49:26.231Z", + "0.2.6": "2010-12-30T01:49:26.231Z", + "0.3.0": "2010-12-30T01:49:26.231Z", + "0.3.1": "2010-12-30T01:49:26.231Z", + "0.3.2": "2010-12-30T01:49:26.231Z", + "0.3.3": "2010-12-30T01:49:26.231Z", + "0.3.4": "2010-12-30T01:49:26.231Z", + "0.3.5": "2010-12-30T01:49:26.231Z", + "0.3.6": "2010-12-30T01:49:26.231Z", + "0.3.7": "2010-12-30T01:49:26.231Z", + "0.3.9": "2010-12-30T01:49:26.231Z", + "0.4.0": "2010-12-30T01:49:26.231Z", + "0.4.1": "2010-12-30T01:49:26.231Z", + "0.4.2": "2010-12-30T01:49:26.231Z", + "0.5.0": "2010-12-30T01:49:26.231Z", + "0.5.1": "2011-01-18T21:57:43.664Z", + "0.5.2": "2011-01-20T02:15:22.586Z", + "0.5.3": "2011-02-06T06:32:17.621Z", + "0.5.4": "2011-02-11T10:12:38.675Z", + "0.5.5": "2011-02-17T02:27:39.822Z", + "0.5.6": "2011-02-23T07:11:17.197Z", + "0.5.7": "2011-02-28T09:11:27.676Z", + "0.5.8": "2011-03-15T01:52:10.852Z", + "0.5.9": "2011-03-15T03:04:13.218Z", + "0.5.10": "2011-04-06T16:50:52.002Z", + "0.5.11": "2011-04-07T15:58:20.425Z", + "0.6.0": "2011-04-22T02:49:16.506Z", + "0.6.1": "2011-06-29T07:47:08.873Z", + "0.6.2": "2011-06-30T20:31:01.177Z", + "0.6.3": "2011-06-30T21:46:39.387Z", + "0.6.4": "2011-06-30T22:14:11.467Z", + "0.6.5": "2011-07-06T14:50:35.447Z", + "0.6.6": "2011-07-06T15:39:42.612Z", + "0.6.7": "2011-07-31T00:33:10.424Z", + "0.7.0": "2011-11-15T06:43:52.557Z", + "0.7.1": "2011-11-15T20:49:25.696Z" + }, + "users": { + "coverslide": true, + "deedubs": true, + "tjholowaychuk": true, + "pgte": true, + "naholyr": true + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/redis/0.0.1", + "0.0.2": "http://registry.npmjs.org/redis/0.0.2", + "0.0.3": "http://registry.npmjs.org/redis/0.0.3", + "0.0.4": "http://registry.npmjs.org/redis/0.0.4", + "0.0.7": "http://registry.npmjs.org/redis/0.0.7", + "0.0.8": "http://registry.npmjs.org/redis/0.0.8", + "0.1.0": "http://registry.npmjs.org/redis/0.1.0", + "0.1.1": "http://registry.npmjs.org/redis/0.1.1", + "0.1.2": "http://registry.npmjs.org/redis/0.1.2", + "0.2.0": "http://registry.npmjs.org/redis/0.2.0", + "0.2.1": "http://registry.npmjs.org/redis/0.2.1", + "0.2.2": "http://registry.npmjs.org/redis/0.2.2", + "0.2.3": "http://registry.npmjs.org/redis/0.2.3", + "0.2.4": "http://registry.npmjs.org/redis/0.2.4", + "0.2.6": "http://registry.npmjs.org/redis/0.2.6", + "0.3.0": "http://registry.npmjs.org/redis/0.3.0", + "0.3.1": "http://registry.npmjs.org/redis/0.3.1", + "0.3.2": "http://registry.npmjs.org/redis/0.3.2", + "0.3.3": "http://registry.npmjs.org/redis/0.3.3", + "0.3.4": "http://registry.npmjs.org/redis/0.3.4", + "0.3.5": "http://registry.npmjs.org/redis/0.3.5", + "0.3.6": "http://registry.npmjs.org/redis/0.3.6", + "0.3.7": "http://registry.npmjs.org/redis/0.3.7", + "0.3.9": "http://registry.npmjs.org/redis/0.3.9", + "0.4.0": "http://registry.npmjs.org/redis/0.4.0", + "0.4.1": "http://registry.npmjs.org/redis/0.4.1", + "0.4.2": "http://registry.npmjs.org/redis/0.4.2", + "0.5.0": "http://registry.npmjs.org/redis/0.5.0", + "0.5.1": "http://registry.npmjs.org/redis/0.5.1", + "0.5.2": "http://registry.npmjs.org/redis/0.5.2", + "0.5.3": "http://registry.npmjs.org/redis/0.5.3", + "0.5.4": "http://registry.npmjs.org/redis/0.5.4", + "0.5.5": "http://registry.npmjs.org/redis/0.5.5", + "0.5.6": "http://registry.npmjs.org/redis/0.5.6", + "0.5.7": "http://registry.npmjs.org/redis/0.5.7", + "0.5.8": "http://registry.npmjs.org/redis/0.5.8", + "0.5.9": "http://registry.npmjs.org/redis/0.5.9", + "0.5.10": "http://registry.npmjs.org/redis/0.5.10", + "0.5.11": "http://registry.npmjs.org/redis/0.5.11", + "0.6.0": "http://registry.npmjs.org/redis/0.6.0", + "0.6.1": "http://registry.npmjs.org/redis/0.6.1", + "0.6.2": "http://registry.npmjs.org/redis/0.6.2", + "0.6.3": "http://registry.npmjs.org/redis/0.6.3", + "0.6.4": "http://registry.npmjs.org/redis/0.6.4", + "0.6.5": "http://registry.npmjs.org/redis/0.6.5", + "0.6.6": "http://registry.npmjs.org/redis/0.6.6", + "0.6.7": "http://registry.npmjs.org/redis/0.6.7", + "0.7.0": "http://registry.npmjs.org/redis/0.7.0", + "0.7.1": "http://registry.npmjs.org/redis/0.7.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/redis/-/redis-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/redis/-/redis-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/redis/-/redis-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://packages:5984/redis/-/redis-0.0.4.tgz" + }, + "0.0.7": { + "tarball": "http://packages:5984/redis/-/redis-0.0.7.tgz" + }, + "0.0.8": { + "tarball": "http://packages:5984/redis/-/redis-0.0.8.tgz" + }, + "0.1.0": { + "tarball": "http://packages:5984/redis/-/redis-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://packages:5984/redis/-/redis-0.1.1.tgz" + }, + "0.1.2": { + "tarball": "http://packages:5984/redis/-/redis-0.1.2.tgz" + }, + "0.2.0": { + "tarball": "http://packages:5984/redis/-/redis-0.2.0.tgz" + }, + "0.2.1": { + "tarball": "http://packages:5984/redis/-/redis-0.2.1.tgz" + }, + "0.2.2": { + "tarball": "http://packages:5984/redis/-/redis-0.2.2.tgz" + }, + "0.2.3": { + "tarball": "http://packages:5984/redis/-/redis-0.2.3.tgz" + }, + "0.2.4": { + "tarball": "http://packages:5984/redis/-/redis-0.2.4.tgz" + }, + "0.2.6": { + "tarball": "http://packages:5984/redis/-/redis-0.2.6.tgz" + }, + "0.3.0": { + "tarball": "http://packages:5984/redis/-/redis-0.3.0.tgz" + }, + "0.3.1": { + "tarball": "http://packages:5984/redis/-/redis-0.3.1.tgz" + }, + "0.3.2": { + "tarball": "http://packages:5984/redis/-/redis-0.3.2.tgz" + }, + "0.3.3": { + "tarball": "http://packages:5984/redis/-/redis-0.3.3.tgz" + }, + "0.3.4": { + "tarball": "http://packages:5984/redis/-/redis-0.3.4.tgz" + }, + "0.3.5": { + "tarball": "http://packages:5984/redis/-/redis-0.3.5.tgz" + }, + "0.3.6": { + "tarball": "http://packages:5984/redis/-/redis-0.3.6.tgz" + }, + "0.3.7": { + "tarball": "http://packages:5984/redis/-/redis-0.3.7.tgz" + }, + "0.3.9": { + "shasum": "779784c4ce821d2692aefb480be5c78a81225a6a", + "tarball": "http://registry.npmjs.org/redis/-/redis-0.3.9.tgz" + }, + "0.4.0": { + "shasum": "42cdcb6b37d5dbaf81ee0131b593bf32e6cd57a3", + "tarball": "http://registry.npmjs.org/redis/-/redis-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "733687fb9a89cde0dd64ffb61c6175b9eb2ec4ae", + "tarball": "http://registry.npmjs.org/redis/-/redis-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "8ed6ab87893041ca9db2c4bde1b6933665ba3367", + "tarball": "http://registry.npmjs.org/redis/-/redis-0.4.2.tgz" + }, + "0.5.0": { + "shasum": "5668d05c7b66a57802d77b693cf7c5c547aa9824", + "tarball": "http://registry.npmjs.org/redis/-/redis-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "068bc8defe1cf6512a250e21ce1f4ec90871e617", + "tarball": "http://registry.npmjs.org/redis/-/redis-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "0c12b48b488bdac7afd52eeaeb073b30d5c9ea01", + "tarball": "http://registry.npmjs.org/redis/-/redis-0.5.2.tgz" + }, + "0.5.3": { + "shasum": "f76adff4ad1f58a4103378218875584c26045b89", + "tarball": "http://registry.npmjs.org/redis/-/redis-0.5.3.tgz" + }, + "0.5.4": { + "shasum": "b6291fb1623330f7ed8cc37a67dc042eefa7c826", + "tarball": "http://registry.npmjs.org/redis/-/redis-0.5.4.tgz" + }, + "0.5.5": { + "shasum": "540ccb355e6139c3497d297f6bb7680fa45af2f2", + "tarball": "http://registry.npmjs.org/redis/-/redis-0.5.5.tgz" + }, + "0.5.6": { + "shasum": "b9dee45ca9181930e768c06779b4a4dee6113e0e", + "tarball": "http://registry.npmjs.org/redis/-/redis-0.5.6.tgz" + }, + "0.5.7": { + "shasum": "9608e98f7e5d990d0f2e3342b0067a4e0026da18", + "tarball": "http://registry.npmjs.org/redis/-/redis-0.5.7.tgz" + }, + "0.5.8": { + "shasum": "942ede3cb53ade85f3e71c1f64e69f85f63d97d9", + "tarball": "http://registry.npmjs.org/redis/-/redis-0.5.8.tgz" + }, + "0.5.9": { + "shasum": "742d3a20b9fea9d86183308ec5363a04ea7a6634", + "tarball": "http://registry.npmjs.org/redis/-/redis-0.5.9.tgz" + }, + "0.5.10": { + "shasum": "0b8db5ac33eb133cb82501a2cb724525fa3a0224", + "tarball": "http://registry.npmjs.org/redis/-/redis-0.5.10.tgz" + }, + "0.5.11": { + "shasum": "000a38a4b6ade4642318241692e3f449ed1cf151", + "tarball": "http://registry.npmjs.org/redis/-/redis-0.5.11.tgz" + }, + "0.6.0": { + "shasum": "9f3421fb50a3123f10b93ae5b61e641e7f6bd754", + "tarball": "http://registry.npmjs.org/redis/-/redis-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "8a51b1bdbc6325836812d726266d6023a7015877", + "tarball": "http://registry.npmjs.org/redis/-/redis-0.6.1.tgz" + }, + "0.6.2": { + "shasum": "5d39e96340758b16117880b8c5ccfee15f686649", + "tarball": "http://registry.npmjs.org/redis/-/redis-0.6.2.tgz" + }, + "0.6.3": { + "shasum": "8773247fd0039a9a5b3991c06602dbe0b66efff8", + "tarball": "http://registry.npmjs.org/redis/-/redis-0.6.3.tgz" + }, + "0.6.4": { + "shasum": "0e551c57ba2f81bb9fa69917805fa93e833fd77e", + "tarball": "http://registry.npmjs.org/redis/-/redis-0.6.4.tgz" + }, + "0.6.5": { + "shasum": "54e513b81e2cfa8f796218307d245d7792cd5f2c", + "tarball": "http://registry.npmjs.org/redis/-/redis-0.6.5.tgz" + }, + "0.6.6": { + "shasum": "cd77d6baa61d3be89032fb21263d172277ac1348", + "tarball": "http://registry.npmjs.org/redis/-/redis-0.6.6.tgz" + }, + "0.6.7": { + "shasum": "0f17f913468a5cb2bf0864e4d56669d058668d46", + "tarball": "http://registry.npmjs.org/redis/-/redis-0.6.7.tgz" + }, + "0.7.0": { + "shasum": "6cd0361a2a627a86af311db28357f1812f5c1ef7", + "tarball": "http://registry.npmjs.org/redis/-/redis-0.7.0.tgz" + }, + "0.7.1": { + "shasum": "0dcc026332c7d5be11ab43678ed28af6a9cc8d75", + "tarball": "http://registry.npmjs.org/redis/-/redis-0.7.1.tgz" + } + }, + "url": "http://registry.npmjs.org/redis/" + }, + "redis_objects": { + "name": "redis_objects", + "description": "Mixin redis to your objects", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "weepy", + "email": "jonahfox@gmail.com" + } + ], + "time": { + "modified": "2011-04-06T17:31:45.645Z", + "created": "2011-04-06T17:31:45.045Z", + "0.0.1": "2011-04-06T17:31:45.645Z" + }, + "author": { + "name": "weepy", + "email": "jonahfox@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/redis_objects/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "f79849c7f13e8a37cd02f5913244a3a49f8d0d6e", + "tarball": "http://registry.npmjs.org/redis_objects/-/redis_objects-0.0.1.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/redis_objects/" + }, + "redis-authorization": { + "name": "redis-authorization", + "description": "Node authorization system built on redis", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "sintaxi", + "email": "brock@sintaxi.com" + } + ], + "time": { + "modified": "2011-10-22T23:10:41.330Z", + "created": "2011-10-06T06:39:03.972Z", + "0.1.0": "2011-10-06T06:39:04.605Z", + "0.2.0": "2011-10-22T23:10:41.330Z" + }, + "author": { + "name": "Brock Whitten", + "email": "brock@sintaxi.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/sintaxi/node-redis-authorization.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/redis-authorization/0.1.0", + "0.2.0": "http://registry.npmjs.org/redis-authorization/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "cf692b5e40fde833dce3bc47855e0cbc3d0feb0b", + "tarball": "http://registry.npmjs.org/redis-authorization/-/redis-authorization-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "a16410bd7b4a9018b396a3cd0ff03f58709c14ae", + "tarball": "http://registry.npmjs.org/redis-authorization/-/redis-authorization-0.2.0.tgz" + } + }, + "keywords": [ + "redis", + "authorization" + ], + "url": "http://registry.npmjs.org/redis-authorization/" + }, + "redis-channels": { + "name": "redis-channels", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "dshaw", + "email": "dshaw@dshaw.com" + } + ], + "time": { + "modified": "2011-05-31T06:22:26.581Z", + "created": "2011-05-31T06:22:25.935Z", + "0.1.0": "2011-05-31T06:22:26.581Z" + }, + "author": { + "name": "Daniel D. Shaw", + "email": "dshaw@dshaw.com", + "url": "http://dshaw.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dshaw/redis-channels.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/redis-channels/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "21e97c4cac5b7272ce09a45321817d34e4d9a7a5", + "tarball": "http://registry.npmjs.org/redis-channels/-/redis-channels-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/redis-channels/" + }, + "redis-client": { + "name": "redis-client", + "description": "Redis client for Node.js", + "dist-tags": { + "latest": "0.3.5" + }, + "maintainers": [ + { + "name": "justin", + "email": "justin.tulloss@gmail.com" + } + ], + "author": { + "name": "Brian Hammond", + "email": "brian@fictorial.com" + }, + "versions": { + "0.3.5": "http://registry.npmjs.org/redis-client/0.3.5" + }, + "dist": { + "0.3.5": { + "tarball": "http://registry.npmjs.org/redis-client/-/redis-client-0.3.5.tgz" + } + }, + "keywords": [ + "redis", + "node", + "client" + ], + "url": "http://registry.npmjs.org/redis-client/" + }, + "redis-completer": { + "name": "redis-completer", + "description": "A redis completer using Sebastian's trie algorithm: https://gist.github.com/574044", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "jedparsons", + "email": "jed@jedparsons.com" + } + ], + "time": { + "modified": "2011-05-15T07:09:29.138Z", + "created": "2011-05-11T05:20:14.518Z", + "0.1.0": "2011-05-11T05:20:15.622Z", + "0.1.1": "2011-05-11T16:05:26.209Z", + "0.1.2": "2011-05-12T20:39:16.371Z", + "0.1.3": "2011-05-13T19:20:42.269Z", + "0.1.4": "2011-05-15T07:09:29.138Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/jedp/redis-completer.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/redis-completer/0.1.0", + "0.1.1": "http://registry.npmjs.org/redis-completer/0.1.1", + "0.1.2": "http://registry.npmjs.org/redis-completer/0.1.2", + "0.1.3": "http://registry.npmjs.org/redis-completer/0.1.3", + "0.1.4": "http://registry.npmjs.org/redis-completer/0.1.4" + }, + "dist": { + "0.1.0": { + "shasum": "1c4feace34408b86f09c4e4d1381329390c52dcf", + "tarball": "http://registry.npmjs.org/redis-completer/-/redis-completer-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "f537aa20ded62129be9bc6677c6ec06ebbf376aa", + "tarball": "http://registry.npmjs.org/redis-completer/-/redis-completer-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "5fbb5a71086dd5b3410852ef4635553521fd779a", + "tarball": "http://registry.npmjs.org/redis-completer/-/redis-completer-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "29340932a80fe85d18de646dee7a4bb4ebb36f4d", + "tarball": "http://registry.npmjs.org/redis-completer/-/redis-completer-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "8b7ceaa94c7451b108658297b4a5b8cd5bc19cd7", + "tarball": "http://registry.npmjs.org/redis-completer/-/redis-completer-0.1.4.tgz" + } + }, + "keywords": [ + "redis", + "completer", + "trie", + "autocomplete" + ], + "url": "http://registry.npmjs.org/redis-completer/" + }, + "redis-keyspace": { + "name": "redis-keyspace", + "description": "redis namespacing for node", + "dist-tags": { + "latest": "0.4.9" + }, + "maintainers": [ + { + "name": "lp", + "email": "lp@spiralix.org" + } + ], + "time": { + "modified": "2011-07-08T14:46:21.157Z", + "created": "2011-06-28T18:40:33.984Z", + "0.2.0": "2011-06-28T18:40:34.387Z", + "0.2.1": "2011-06-28T20:47:35.336Z", + "0.3.0": "2011-06-28T22:02:21.620Z", + "0.3.1": "2011-06-29T12:36:56.839Z", + "0.3.2": "2011-06-29T21:11:59.910Z", + "0.4.3": "2011-07-06T15:31:24.808Z", + "0.4.4": "2011-07-06T17:35:14.736Z", + "0.4.5": "2011-07-06T19:25:35.863Z", + "0.4.6": "2011-07-06T21:27:29.432Z", + "0.4.7": "2011-07-07T17:27:35.133Z", + "0.4.8": "2011-07-08T13:42:59.581Z", + "0.4.9": "2011-07-08T14:46:21.157Z" + }, + "author": { + "name": "Louis-Philippe Perron", + "email": "lp@spiralix.org", + "url": "http://github.com/lp/redis-keyspace" + }, + "repository": { + "type": "git", + "url": "git://github.com/lp/redis-keyspace.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/redis-keyspace/0.2.0", + "0.2.1": "http://registry.npmjs.org/redis-keyspace/0.2.1", + "0.3.0": "http://registry.npmjs.org/redis-keyspace/0.3.0", + "0.3.1": "http://registry.npmjs.org/redis-keyspace/0.3.1", + "0.3.2": "http://registry.npmjs.org/redis-keyspace/0.3.2", + "0.4.3": "http://registry.npmjs.org/redis-keyspace/0.4.3", + "0.4.4": "http://registry.npmjs.org/redis-keyspace/0.4.4", + "0.4.5": "http://registry.npmjs.org/redis-keyspace/0.4.5", + "0.4.6": "http://registry.npmjs.org/redis-keyspace/0.4.6", + "0.4.7": "http://registry.npmjs.org/redis-keyspace/0.4.7", + "0.4.8": "http://registry.npmjs.org/redis-keyspace/0.4.8", + "0.4.9": "http://registry.npmjs.org/redis-keyspace/0.4.9" + }, + "dist": { + "0.2.0": { + "shasum": "2bc438338067a7bd8da1ca140435b9cb9b5e31d5", + "tarball": "http://registry.npmjs.org/redis-keyspace/-/redis-keyspace-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "84a6040d7d2168fd04397e77b36ed796d9f9fec9", + "tarball": "http://registry.npmjs.org/redis-keyspace/-/redis-keyspace-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "9592703d03fd692d20539bee8a024dfde6cbc4b6", + "tarball": "http://registry.npmjs.org/redis-keyspace/-/redis-keyspace-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "98c7fe75275ea556cabd7340e3f30d6569e47a92", + "tarball": "http://registry.npmjs.org/redis-keyspace/-/redis-keyspace-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "1259ab21ff2674c009593041ee962175cc686490", + "tarball": "http://registry.npmjs.org/redis-keyspace/-/redis-keyspace-0.3.2.tgz" + }, + "0.4.3": { + "shasum": "9aa7f5de82bc7bcd83661fa42ee31a76b13e880e", + "tarball": "http://registry.npmjs.org/redis-keyspace/-/redis-keyspace-0.4.3.tgz" + }, + "0.4.4": { + "shasum": "6551baf165f2fc7d09a2fa4ae044950d4ae14dd4", + "tarball": "http://registry.npmjs.org/redis-keyspace/-/redis-keyspace-0.4.4.tgz" + }, + "0.4.5": { + "shasum": "a9ecfe550e05758614f549e4949cc7d21986d73a", + "tarball": "http://registry.npmjs.org/redis-keyspace/-/redis-keyspace-0.4.5.tgz" + }, + "0.4.6": { + "shasum": "bac7cb9098f0d0120d5c36c7947bb38417c9c2a0", + "tarball": "http://registry.npmjs.org/redis-keyspace/-/redis-keyspace-0.4.6.tgz" + }, + "0.4.7": { + "shasum": "01120e0b9af29a8f4297254ff6a4e19c017d9a41", + "tarball": "http://registry.npmjs.org/redis-keyspace/-/redis-keyspace-0.4.7.tgz" + }, + "0.4.8": { + "shasum": "5567671e50851a0b69fbe48c808060e760db6117", + "tarball": "http://registry.npmjs.org/redis-keyspace/-/redis-keyspace-0.4.8.tgz" + }, + "0.4.9": { + "shasum": "5d33b2850bf115b717b138cf1886dfdf8a37557a", + "tarball": "http://registry.npmjs.org/redis-keyspace/-/redis-keyspace-0.4.9.tgz" + } + }, + "keywords": [ + "redis", + "key-value stores", + "namespacing" + ], + "url": "http://registry.npmjs.org/redis-keyspace/" + }, + "redis-lua": { + "name": "redis-lua", + "description": "Adds lua scripting to node_redis", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "shirro", + "email": "shirro@shirro.com" + } + ], + "time": { + "modified": "2011-06-09T17:10:33.838Z", + "created": "2011-06-04T13:03:39.803Z", + "0.0.2": "2011-06-04T13:03:41.058Z", + "0.0.3": "2011-06-09T15:45:37.930Z", + "0.0.4": "2011-06-09T17:10:33.838Z" + }, + "author": { + "name": "Paul Shirren", + "email": "shirro@shirro.com", + "url": "https://shirro.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/shirro/node_redis_lua.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/redis-lua/0.0.2", + "0.0.3": "http://registry.npmjs.org/redis-lua/0.0.3", + "0.0.4": "http://registry.npmjs.org/redis-lua/0.0.4" + }, + "dist": { + "0.0.2": { + "shasum": "cc4dfab29486140215df2d8393a80ef58538dc65", + "tarball": "http://registry.npmjs.org/redis-lua/-/redis-lua-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "0f6e95f2fe8e59c8fafc01c4faad232357c2904b", + "tarball": "http://registry.npmjs.org/redis-lua/-/redis-lua-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "b5cd002e4c41bc13f76b2d23e427499ccbbfd7d6", + "tarball": "http://registry.npmjs.org/redis-lua/-/redis-lua-0.0.4.tgz" + } + }, + "keywords": [ + "redis", + "scripting", + "lua" + ], + "url": "http://registry.npmjs.org/redis-lua/" + }, + "redis-namespace": { + "name": "redis-namespace", + "description": "redis namespacing for node", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "arschles", + "email": "arschles@gmail.com" + } + ], + "time": { + "modified": "2011-06-23T08:13:06.320Z", + "created": "2011-06-23T08:13:05.920Z", + "0.1.0": "2011-06-23T08:13:06.320Z" + }, + "author": { + "name": "Aaron Schlesinger", + "email": "arschles@gmail.com", + "url": "http://github.com/arschles/node-redis-namespace" + }, + "repository": { + "type": "git", + "url": "git://github.com/arschles/node-redis-namespace.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/redis-namespace/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "7a9f8b64a0212e67d8f27ac4ea11d7610d4306d7", + "tarball": "http://registry.npmjs.org/redis-namespace/-/redis-namespace-0.1.0.tgz" + } + }, + "keywords": [ + "redis", + "key-value stores", + "namespacing" + ], + "url": "http://registry.npmjs.org/redis-namespace/" + }, + "redis-node": { + "name": "redis-node", + "description": "A Complete Redis Client for Node.js", + "dist-tags": { + "latest": "0.4.0" + }, + "maintainers": [ + { + "name": "bnoguchi", + "email": "brian.noguchi@gmail.com" + } + ], + "author": { + "name": "Brian Noguchi", + "email": "brian.noguchi@gmail.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/bnoguchi/redis-node.git" + }, + "time": { + "modified": "2011-02-11T01:24:13.833Z", + "created": "2011-01-14T00:01:09.291Z", + "0.2.0": "2011-01-14T00:01:09.291Z", + "0.2.1": "2011-01-14T00:01:09.291Z", + "0.2.2": "2011-01-14T00:01:09.291Z", + "0.2.3": "2011-01-14T00:01:09.291Z", + "0.2.4": "2011-01-14T00:01:09.291Z", + "0.2.5": "2011-01-14T00:01:09.291Z", + "0.2.6": "2011-01-14T00:01:09.291Z", + "0.2.7": "2011-01-14T00:01:09.291Z", + "0.2.8": "2011-01-14T00:01:09.291Z", + "0.4.0": "2011-02-11T01:24:13.833Z" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/redis-node/0.2.0", + "0.2.1": "http://registry.npmjs.org/redis-node/0.2.1", + "0.2.2": "http://registry.npmjs.org/redis-node/0.2.2", + "0.2.3": "http://registry.npmjs.org/redis-node/0.2.3", + "0.2.4": "http://registry.npmjs.org/redis-node/0.2.4", + "0.2.5": "http://registry.npmjs.org/redis-node/0.2.5", + "0.2.6": "http://registry.npmjs.org/redis-node/0.2.6", + "0.2.7": "http://registry.npmjs.org/redis-node/0.2.7", + "0.2.8": "http://registry.npmjs.org/redis-node/0.2.8", + "0.4.0": "http://registry.npmjs.org/redis-node/0.4.0" + }, + "dist": { + "0.2.0": { + "tarball": "http://packages:5984/redis-node/-/redis-node-0.2.0.tgz" + }, + "0.2.1": { + "tarball": "http://packages:5984/redis-node/-/redis-node-0.2.1.tgz" + }, + "0.2.2": { + "tarball": "http://packages:5984/redis-node/-/redis-node-0.2.2.tgz" + }, + "0.2.3": { + "tarball": "http://packages:5984/redis-node/-/redis-node-0.2.3.tgz" + }, + "0.2.4": { + "tarball": "http://packages:5984/redis-node/-/redis-node-0.2.4.tgz" + }, + "0.2.5": { + "tarball": "http://registry.npmjs.org/redis-node/-/redis-node-0.2.5.tgz" + }, + "0.2.6": { + "tarball": "http://registry.npmjs.org/redis-node/-/redis-node-0.2.6.tgz" + }, + "0.2.7": { + "tarball": "http://registry.npmjs.org/redis-node/-/redis-node-0.2.7.tgz" + }, + "0.2.8": { + "shasum": "357b4021f9143d2179b6255a72a73356495a6630", + "tarball": "http://registry.npmjs.org/redis-node/-/redis-node-0.2.8.tgz" + }, + "0.4.0": { + "shasum": "07dbdeacbbc79cc09b5008bbde2c96e56c71b6af", + "tarball": "http://registry.npmjs.org/redis-node/-/redis-node-0.4.0.tgz" + } + }, + "keywords": [ + "redis", + "node", + "client", + "redis-client", + "redis-node" + ], + "url": "http://registry.npmjs.org/redis-node/" + }, + "redis-pool": { + "name": "redis-pool", + "description": "A simple node.js redis pool.", + "dist-tags": { + "latest": "0.0.9" + }, + "maintainers": [ + { + "name": "felixge", + "email": "felix@debuggable.com" + } + ], + "time": { + "modified": "2011-10-20T14:03:33.488Z", + "created": "2011-10-19T14:24:07.163Z", + "0.0.2": "2011-10-19T14:24:08.789Z", + "0.0.3": "2011-10-20T10:05:22.914Z", + "0.0.4": "2011-10-20T10:13:01.809Z", + "0.0.5": "2011-10-20T13:00:12.437Z", + "0.0.6": "2011-10-20T13:03:31.656Z", + "0.0.7": "2011-10-20T13:12:09.347Z", + "0.0.8": "2011-10-20T14:02:18.787Z", + "0.0.9": "2011-10-20T14:03:33.488Z" + }, + "author": { + "name": "Felix Geisendörfer", + "email": "felix@debuggable.com", + "url": "http://debuggable.com/" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/redis-pool/0.0.2", + "0.0.3": "http://registry.npmjs.org/redis-pool/0.0.3", + "0.0.4": "http://registry.npmjs.org/redis-pool/0.0.4", + "0.0.5": "http://registry.npmjs.org/redis-pool/0.0.5", + "0.0.6": "http://registry.npmjs.org/redis-pool/0.0.6", + "0.0.7": "http://registry.npmjs.org/redis-pool/0.0.7", + "0.0.8": "http://registry.npmjs.org/redis-pool/0.0.8", + "0.0.9": "http://registry.npmjs.org/redis-pool/0.0.9" + }, + "dist": { + "0.0.2": { + "shasum": "bbbeb7e329978620f48ac810359c0fe747280636", + "tarball": "http://registry.npmjs.org/redis-pool/-/redis-pool-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "8b9c046ef6f4c72e52b910ee1682324353c8f148", + "tarball": "http://registry.npmjs.org/redis-pool/-/redis-pool-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "e6a3139e8c25ab65897590eac0191c9b380efc8e", + "tarball": "http://registry.npmjs.org/redis-pool/-/redis-pool-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "1b90b502327e6a7b63ef6cc3c10544a01b3bfe6b", + "tarball": "http://registry.npmjs.org/redis-pool/-/redis-pool-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "938e7a21bf2f3dd9818916b6fecf719de42f6fa5", + "tarball": "http://registry.npmjs.org/redis-pool/-/redis-pool-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "5aa6c340f147813a3f7efb784186123884607539", + "tarball": "http://registry.npmjs.org/redis-pool/-/redis-pool-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "6a6677d8b957dbca32376db511c54641cc30b5b2", + "tarball": "http://registry.npmjs.org/redis-pool/-/redis-pool-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "5f8592bc75e7940a0125d47964058687c0c98a55", + "tarball": "http://registry.npmjs.org/redis-pool/-/redis-pool-0.0.9.tgz" + } + }, + "url": "http://registry.npmjs.org/redis-pool/" + }, + "redis-pubsub": { + "name": "redis-pubsub", + "description": "Simple pub/sub interface to Redis", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "**redis-pubsub** provides a simple interface to a single pub/sub channel on a\nRedis server.\n\n var pubsub = require('redis-pubsub');\n\n // Subscribe to channel 'foobar' on a local server.\n var channel = pubsub.createChannel(6379, 'localhost', 'foobar');\n channel.on('ready', function() {\n channel.on('message', function(msg) {\n console.log(msg.greeting);\n channel.end();\n });\n channel.send({ greeting: 'Hello world!' });\n });\n\nWaiting for the `ready` event is optional. The converse is the `close` event.\n\nMessages are serialized to JSON by default, so you can send regular objects\nacross the wire. If this is undesirable, set the `raw` property:\n\n var channel = pubsub.createChannel(...);\n channel.raw = true;\n\n---\n\nThere are two alternate ways to create a channel:\n\n * Using an existing RedisClient as the publisher. This will 'clone' the\n connection for the subscriber, using the same host, port and options.\n\n var client = redis.createClient(...);\n var channel = pubsub.createChannel(client, channel);\n\n * Explicitely specify both publisher and subscriber clients. This allows\n for sharing subscribers, or master-slave setups.\n\n var publisher = redis.createClient(...);\n var subscriber = redis.createClient(...);\n var channel = pubsub.createChannel(publisher, subscriber, channel);\n\nIn either case, provided RedisClient instances will never be closed on `end()`.\nInstances created by redis-pubsub itself will be, and will also have their\n`error` events re-emitted on the channel object.\n", + "maintainers": [ + { + "name": "stephank", + "email": "stephan@kochen.nl" + } + ], + "time": { + "modified": "2011-12-07T21:51:51.606Z", + "created": "2011-12-07T21:51:50.295Z", + "0.0.1": "2011-12-07T21:51:51.606Z" + }, + "author": { + "name": "Stéphan Kochen", + "email": "stephan@angrybytes.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/AngryBytes/redis-pubsub.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/redis-pubsub/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "96c22964978f35522f7edd19f52a3a1dcd166256", + "tarball": "http://registry.npmjs.org/redis-pubsub/-/redis-pubsub-0.0.1.tgz" + } + }, + "keywords": [ + "redis", + "pubsub" + ], + "url": "http://registry.npmjs.org/redis-pubsub/" + }, + "redis-queue": { + "name": "redis-queue", + "description": "A simple message queue backed by Redis.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "Tim-Smart", + "email": "tim@fostle.com" + } + ], + "time": { + "modified": "2011-02-06T23:05:19.159Z", + "created": "2011-02-06T23:05:18.281Z", + "0.1.1": "2011-02-06T23:05:19.159Z" + }, + "author": { + "name": "Tim Smart" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/redis-queue/0.1.1" + }, + "dist": { + "0.1.1": { + "shasum": "1206782cca6185ac4c56bec1e0ecfa2e2ef251f8", + "tarball": "http://registry.npmjs.org/redis-queue/-/redis-queue-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/redis-queue/" + }, + "redis-raw": { + "name": "redis-raw", + "description": "nodejs redis client with no extras", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-10-11T05:43:29.497Z", + "created": "2011-10-08T09:10:33.707Z", + "0.0.0": "2011-10-08T09:10:37.084Z", + "0.0.1": "2011-10-11T05:43:29.497Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com", + "url": "http://bit.ly/dominictarr" + }, + "repository": { + "type": "git", + "url": "git://github.com/dominictarr/redis-raw.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/redis-raw/0.0.0", + "0.0.1": "http://registry.npmjs.org/redis-raw/0.0.1" + }, + "dist": { + "0.0.0": { + "shasum": "841ade99b28098db69b27b017593dd59f20c1dbd", + "tarball": "http://registry.npmjs.org/redis-raw/-/redis-raw-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "0f58c3b5148c5f05fb65915a14b160a375ca731a", + "tarball": "http://registry.npmjs.org/redis-raw/-/redis-raw-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/redis-raw/" + }, + "redis-session-store": { + "name": "redis-session-store", + "description": "Plugin for connect app, that store sessions in Redis.", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "selead", + "email": "allselead@gmail.com" + } + ], + "time": { + "modified": "2011-01-29T14:24:30.021Z", + "created": "2011-01-29T14:24:29.495Z", + "0.0.3": "2011-01-29T14:24:30.021Z" + }, + "author": { + "name": "Temnov Kirill", + "email": "allselead@gmail.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/selead/redis-session-store.git" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/redis-session-store/0.0.3" + }, + "dist": { + "0.0.3": { + "shasum": "d397c79569e81e86d435b507335a3e03a8c2d38e", + "tarball": "http://registry.npmjs.org/redis-session-store/-/redis-session-store-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/redis-session-store/" + }, + "redis-tag": { + "name": "redis-tag", + "description": "Tag system using redis", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "sintaxi", + "email": "brock@sintaxi.com" + } + ], + "time": { + "modified": "2011-09-26T00:42:13.518Z", + "created": "2011-09-03T04:08:33.327Z", + "0.0.1": "2011-09-03T04:08:33.966Z", + "0.0.2": "2011-09-03T08:30:34.680Z", + "0.0.3": "2011-09-03T21:31:39.473Z", + "0.1.0": "2011-09-04T09:01:40.182Z", + "0.2.0": "2011-09-26T00:42:13.518Z" + }, + "author": { + "name": "Brock Whitten", + "email": "brock@sintaxi.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/sintaxi/node-redis-tag.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/redis-tag/0.0.1", + "0.0.2": "http://registry.npmjs.org/redis-tag/0.0.2", + "0.0.3": "http://registry.npmjs.org/redis-tag/0.0.3", + "0.1.0": "http://registry.npmjs.org/redis-tag/0.1.0", + "0.2.0": "http://registry.npmjs.org/redis-tag/0.2.0" + }, + "dist": { + "0.0.1": { + "shasum": "bd63dd3a832b28d375e055cc20f8e2e469ea523c", + "tarball": "http://registry.npmjs.org/redis-tag/-/redis-tag-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "8072b8868ac947baa6961a349226b0e8ab421329", + "tarball": "http://registry.npmjs.org/redis-tag/-/redis-tag-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "ec717156f2726a738be23925ae398a4c488c0d4b", + "tarball": "http://registry.npmjs.org/redis-tag/-/redis-tag-0.0.3.tgz" + }, + "0.1.0": { + "shasum": "b6e45862ca3fcac2615461d97bf6e2fabf7d3f09", + "tarball": "http://registry.npmjs.org/redis-tag/-/redis-tag-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "dab6a4adde08cd2f4f90391e72c67001b2036f63", + "tarball": "http://registry.npmjs.org/redis-tag/-/redis-tag-0.2.0.tgz" + } + }, + "keywords": [ + "redis", + "tagging" + ], + "url": "http://registry.npmjs.org/redis-tag/" + }, + "redis-url": { + "name": "redis-url", + "description": "Use a REDIS_URL to connect to Redis", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "ddollar", + "email": "ddollar@gmail.com" + } + ], + "time": { + "modified": "2011-09-19T13:49:26.136Z", + "created": "2011-08-16T20:55:52.021Z", + "0.0.1": "2011-08-16T20:55:52.227Z", + "0.1.0": "2011-09-19T13:49:26.136Z" + }, + "author": { + "name": "David Dollar", + "email": "ddollar@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/redis-url/0.0.1", + "0.1.0": "http://registry.npmjs.org/redis-url/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "47a5f392059a800b8ec578f8b70048e1001cb441", + "tarball": "http://registry.npmjs.org/redis-url/-/redis-url-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "4da5e5b181b6c0cad6e1a55c7f50a8e6ee7779bb", + "tarball": "http://registry.npmjs.org/redis-url/-/redis-url-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/redis-url/" + }, + "redis-user": { + "name": "redis-user", + "description": "A simple user and role system for Node.js and Redis.", + "dist-tags": { + "latest": "0.2.4" + }, + "maintainers": [ + { + "name": "catchen", + "email": "cathsfz@gmail.com" + } + ], + "time": { + "modified": "2011-07-20T04:00:12.987Z", + "created": "2011-06-24T15:38:51.745Z", + "0.2.0": "2011-06-24T15:38:53.658Z", + "0.2.1": "2011-07-19T07:02:19.898Z", + "0.2.2": "2011-07-19T08:42:43.075Z", + "0.2.3": "2011-07-19T13:05:21.990Z", + "0.2.4": "2011-07-20T04:00:12.987Z" + }, + "author": { + "name": "Cat Chen", + "email": "catchen@catchen.me", + "url": "http://catchen.me" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/redis-user/0.2.0", + "0.2.1": "http://registry.npmjs.org/redis-user/0.2.1", + "0.2.2": "http://registry.npmjs.org/redis-user/0.2.2", + "0.2.3": "http://registry.npmjs.org/redis-user/0.2.3", + "0.2.4": "http://registry.npmjs.org/redis-user/0.2.4" + }, + "dist": { + "0.2.0": { + "shasum": "421464619f6fcf0afaf8cad657092324608c929a", + "tarball": "http://registry.npmjs.org/redis-user/-/redis-user-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "edf4327ba593ebadd571059990d1d2fd44061771", + "tarball": "http://registry.npmjs.org/redis-user/-/redis-user-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "c23af91acafa55c375711ae900e82a5d0213d2e8", + "tarball": "http://registry.npmjs.org/redis-user/-/redis-user-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "b442f250014e93b061de46c46786a01e1167e7c6", + "tarball": "http://registry.npmjs.org/redis-user/-/redis-user-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "b0d7cac96b020367332f3d40c552566515e39e2b", + "tarball": "http://registry.npmjs.org/redis-user/-/redis-user-0.2.4.tgz" + } + }, + "url": "http://registry.npmjs.org/redis-user/" + }, + "redis2json": { + "name": "redis2json", + "description": "Consolidates redis keys data into a solid JavaScript object", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "dvv", + "email": "dronnikov@gmail.com" + } + ], + "time": { + "modified": "2011-04-24T12:42:58.899Z", + "created": "2011-04-21T20:25:26.724Z", + "0.0.4": "2011-04-21T20:25:27.449Z", + "0.0.5": "2011-04-24T12:42:58.899Z" + }, + "author": { + "name": "Igor Urminček" + }, + "repository": { + "type": "git", + "url": "git://github.com/igo/redis2json.git" + }, + "versions": { + "0.0.4": "http://registry.npmjs.org/redis2json/0.0.4", + "0.0.5": "http://registry.npmjs.org/redis2json/0.0.5" + }, + "dist": { + "0.0.4": { + "shasum": "97ba2f98df1dcf912b24c2b967fcd2ef483f6e5b", + "tarball": "http://registry.npmjs.org/redis2json/-/redis2json-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "1ce73aff193c294e5c808aa475a4d0ff6336809e", + "tarball": "http://registry.npmjs.org/redis2json/-/redis2json-0.0.5.tgz" + } + }, + "keywords": [ + "redis", + "mapping", + "keys", + "data", + "javascript", + "helper" + ], + "url": "http://registry.npmjs.org/redis2json/" + }, + "redisev": { + "name": "redisev", + "description": "evented redis client", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "elliot", + "email": "ellliotlai@gmail.com" + } + ], + "time": { + "modified": "2011-09-28T09:29:53.301Z", + "created": "2011-09-02T08:07:28.979Z", + "0.0.0": "2011-09-02T08:07:31.746Z", + "0.0.1": "2011-09-28T09:29:53.301Z" + }, + "author": { + "name": "Elliot Lai", + "email": "ellliotlai@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/elliotlai/redisev.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/redisev/0.0.0", + "0.0.1": "http://registry.npmjs.org/redisev/0.0.1" + }, + "dist": { + "0.0.0": { + "shasum": "24af838f5aa5af026eb678beba141cf3309a7c2a", + "tarball": "http://registry.npmjs.org/redisev/-/redisev-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "0c1c17f1bf40df814b65977a10635b8a290f225f", + "tarball": "http://registry.npmjs.org/redisev/-/redisev-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/redisev/" + }, + "redisfs": { + "name": "redisfs", + "description": "Utility for moving files in and out of Redis", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "steelThread", + "email": "sean.mcdaniel@me.com" + } + ], + "time": { + "modified": "2011-05-31T20:28:33.781Z", + "created": "2011-02-25T22:38:40.408Z", + "0.1.0": "2011-02-25T22:38:40.510Z", + "0.1.1": "2011-04-07T16:55:17.987Z", + "0.1.2": "2011-04-17T15:40:24.292Z", + "1.0.0": "2011-05-31T18:49:11.783Z" + }, + "author": { + "name": "Sean McDaniel", + "email": "sean.mcdaniel@me.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/redisfs/0.1.0", + "0.1.1": "http://registry.npmjs.org/redisfs/0.1.1", + "0.1.2": "http://registry.npmjs.org/redisfs/0.1.2", + "1.0.0": "http://registry.npmjs.org/redisfs/1.0.0" + }, + "dist": { + "0.1.0": { + "shasum": "2b835a44ae0c3ec1fd23b1007b4aba6cb4c8768d", + "tarball": "http://registry.npmjs.org/redisfs/-/redisfs-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "3656799181e255cc6538b56fbbd142994c69e6db", + "tarball": "http://registry.npmjs.org/redisfs/-/redisfs-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "32bcc134ba33c66c0a1330ee4017bf261047b69d", + "tarball": "http://registry.npmjs.org/redisfs/-/redisfs-0.1.2.tgz" + }, + "1.0.0": { + "shasum": "dd4e491aee44ab0f2379b41bdb9869c5892acdef", + "tarball": "http://registry.npmjs.org/redisfs/-/redisfs-1.0.0.tgz" + } + }, + "keywords": [ + "redis", + "files" + ], + "url": "http://registry.npmjs.org/redisfs/" + }, + "redisify": { + "name": "redisify", + "description": "Mixin redis to your objects", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "weepy", + "email": "jonahfox@gmail.com" + } + ], + "time": { + "modified": "2011-04-11T10:14:42.551Z", + "created": "2011-04-11T10:14:41.873Z", + "0.0.1": "2011-04-11T10:14:42.551Z" + }, + "author": { + "name": "weepy", + "email": "jonahfox@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/redisify/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "4dcee151c1908ef89609f31ffe0e0ea723606ff0", + "tarball": "http://registry.npmjs.org/redisify/-/redisify-0.0.1.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/redisify/" + }, + "rediskit": { + "name": "rediskit", + "description": "Redis backed data structures", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "time": { + "modified": "2011-05-12T03:39:12.784Z", + "created": "2011-05-11T18:32:25.893Z", + "0.0.1": "2011-05-11T18:32:26.528Z", + "0.0.2": "2011-05-12T03:39:12.784Z" + }, + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/rediskit/0.0.1", + "0.0.2": "http://registry.npmjs.org/rediskit/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "d139f5ef0f0a6c4952466b58c6febbc525de9d43", + "tarball": "http://registry.npmjs.org/rediskit/-/rediskit-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "5ca89bffe983db6402fac46e85e0696dc7bdddac", + "tarball": "http://registry.npmjs.org/rediskit/-/rediskit-0.0.2.tgz" + } + }, + "keywords": [ + "redis", + "queue" + ], + "url": "http://registry.npmjs.org/rediskit/" + }, + "redisql": { + "name": "redisql", + "description": "Redisql client library", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "jaksprats", + "email": "jaksprats@gmail.com" + } + ], + "author": { + "name": "Russell Sullivan", + "email": "jaksprats@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/JakSprats/node_Redisql.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/redisql/0.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/redisql/-/redisql-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/redisql/" + }, + "rediz": { + "name": "rediz", + "description": "redis client with deferred requests and argument interpolation", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "elliot", + "email": "ellliotlai@gmail.com" + } + ], + "time": { + "modified": "2011-10-08T14:07:36.772Z", + "created": "2011-10-08T14:07:34.095Z", + "0.0.1": "2011-10-08T14:07:36.772Z" + }, + "author": { + "name": "Elliot Lai", + "email": "ellliotlai@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/elliotlai/rediz.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/rediz/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "51571206ca17a07982d08709d2d1967742965957", + "tarball": "http://registry.npmjs.org/rediz/-/rediz-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/rediz/" + }, + "redmark": { + "name": "redmark", + "description": "A per-job rate limited work queue", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "benjisg", + "email": "benji@blueklaxons.net" + } + ], + "time": { + "modified": "2011-08-12T05:29:56.072Z", + "created": "2011-07-03T06:35:57.636Z", + "1.0.0": "2011-07-03T06:35:57.983Z", + "1.0.1": "2011-08-12T05:29:56.072Z" + }, + "author": { + "name": "Benji Schwartz-Gilbert", + "email": "benji@blueklaxons.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/benjisg/redmark.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/redmark/1.0.0", + "1.0.1": "http://registry.npmjs.org/redmark/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "617515f32c691e8f4ba4751f2a8d02c600ef4477", + "tarball": "http://registry.npmjs.org/redmark/-/redmark-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "4141bef4b83bf6267be67aefa1bf5243d304ebe4", + "tarball": "http://registry.npmjs.org/redmark/-/redmark-1.0.1.tgz" + } + }, + "keywords": [ + "queue", + "rate limit", + "jobs", + "throttling", + "time" + ], + "url": "http://registry.npmjs.org/redmark/" + }, + "redmess": { + "name": "redmess", + "description": "A redis pub/sub using lists to achieve persistence", + "dist-tags": { + "latest": "0.1.5" + }, + "maintainers": [ + { + "name": "deremer", + "email": "david@grandelabs.com" + } + ], + "time": { + "modified": "2011-08-17T14:02:50.471Z", + "created": "2011-07-21T22:12:47.814Z", + "0.1.0": "2011-07-21T22:12:48.054Z", + "0.1.1": "2011-07-22T16:00:06.956Z", + "0.1.2": "2011-07-27T21:11:53.281Z", + "0.1.3": "2011-07-29T13:30:52.256Z", + "0.1.4": "2011-07-29T17:44:18.361Z", + "0.1.5": "2011-08-17T14:02:50.471Z" + }, + "author": { + "name": "David DeRemer", + "email": "david@grandelabs.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/deremer/Redmess.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/redmess/0.1.0", + "0.1.1": "http://registry.npmjs.org/redmess/0.1.1", + "0.1.2": "http://registry.npmjs.org/redmess/0.1.2", + "0.1.3": "http://registry.npmjs.org/redmess/0.1.3", + "0.1.4": "http://registry.npmjs.org/redmess/0.1.4", + "0.1.5": "http://registry.npmjs.org/redmess/0.1.5" + }, + "dist": { + "0.1.0": { + "shasum": "67345c4eac7252c767c60b7d37b4edcc2840586a", + "tarball": "http://registry.npmjs.org/redmess/-/redmess-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "a4e2a3da617ca663f4651dfb95f89436d77bcbe9", + "tarball": "http://registry.npmjs.org/redmess/-/redmess-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "7225eba0565aedf2b13ff648fdd8280999627069", + "tarball": "http://registry.npmjs.org/redmess/-/redmess-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "672ab4881e7d7c55067ed63be4582f7a2af3f25a", + "tarball": "http://registry.npmjs.org/redmess/-/redmess-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "e60f0236a7d38d69461e7b62dcd027e4cbd2db83", + "tarball": "http://registry.npmjs.org/redmess/-/redmess-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "f537bdbf09c11a70c325bd442f2f9abca9515641", + "tarball": "http://registry.npmjs.org/redmess/-/redmess-0.1.5.tgz" + } + }, + "keywords": [ + "redis", + "list", + "pubsub", + "pub", + "sub", + "bloop", + "persistence", + "persistent", + "message", + "queue" + ], + "url": "http://registry.npmjs.org/redmess/" + }, + "redobj": { + "name": "redobj", + "description": "redis object data mapper", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "akhodakivskiy", + "email": "akhodakivskiy@gmail.com" + } + ], + "time": { + "modified": "2011-07-18T04:40:28.117Z", + "created": "2011-06-18T21:46:43.319Z", + "0.1.0": "2011-06-18T21:46:43.721Z", + "0.1.1": "2011-06-18T23:08:31.698Z", + "0.1.2": "2011-07-18T04:40:28.117Z" + }, + "author": { + "name": "Anton Khodakivskiy", + "email": "akhodakivskiy@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/akhodakivskiyi/redobj.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/redobj/0.1.0", + "0.1.1": "http://registry.npmjs.org/redobj/0.1.1", + "0.1.2": "http://registry.npmjs.org/redobj/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "3d7445601cbdae6804e33d436833dbff71b6d990", + "tarball": "http://registry.npmjs.org/redobj/-/redobj-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "84a7138b983a0184848bdf52251e4c7d19a0af87", + "tarball": "http://registry.npmjs.org/redobj/-/redobj-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "a25dfaa378cb0d1ecbc370ab58d42c9df80af10b", + "tarball": "http://registry.npmjs.org/redobj/-/redobj-0.1.2.tgz" + } + }, + "keywords": [ + "redis", + "data", + "mapper" + ], + "url": "http://registry.npmjs.org/redobj/" + }, + "redpack": { + "name": "redpack", + "description": "Simple Scalable RPC using Redis & BSON", + "dist-tags": { + "latest": "1.0.41" + }, + "maintainers": [ + { + "name": "deanmao", + "email": "deanmao@gmail.com" + }, + { + "name": "austin.chau", + "email": "austin.chau@gmail.com" + } + ], + "author": { + "name": "Austin Chau", + "email": "austin@luxdelux.com" + }, + "time": { + "modified": "2011-07-18T23:53:23.459Z", + "created": "2011-01-14T14:19:25.178Z", + "1.0.0": "2011-01-14T14:19:25.178Z", + "1.0.1": "2011-01-14T14:19:25.178Z", + "1.0.2": "2011-01-14T14:46:30.308Z", + "1.0.3": "2011-01-14T15:31:45.752Z", + "1.0.4": "2011-01-14T15:48:58.595Z", + "1.0.5": "2011-01-14T22:52:43.871Z", + "1.0.6": "2011-01-15T05:48:23.919Z", + "1.0.8": "2011-02-23T01:53:27.261Z", + "1.0.9": "2011-03-04T02:03:02.256Z", + "1.0.10": "2011-03-08T00:14:40.932Z", + "1.0.11": "2011-03-08T00:16:31.787Z", + "1.0.12": "2011-04-10T23:04:30.183Z", + "1.0.14": "2011-04-10T23:33:24.549Z", + "1.0.15": "2011-04-11T01:40:52.700Z", + "1.0.16": "2011-04-14T18:27:15.932Z", + "1.0.17": "2011-04-14T18:40:50.055Z", + "1.0.18": "2011-04-19T00:55:16.216Z", + "1.0.19": "2011-04-19T01:13:10.966Z", + "1.0.20": "2011-04-19T01:31:17.461Z", + "1.0.21": "2011-04-19T03:00:58.902Z", + "1.0.22": "2011-04-19T07:51:51.837Z", + "1.0.23": "2011-04-19T19:09:45.844Z", + "1.0.24": "2011-04-20T01:44:57.181Z", + "1.0.25": "2011-04-21T17:25:07.365Z", + "1.0.26": "2011-04-29T22:26:08.479Z", + "1.0.27": "2011-06-08T06:10:22.747Z", + "1.0.28": "2011-06-08T06:11:50.362Z", + "1.0.31": "2011-06-08T07:30:54.559Z", + "1.0.32": "2011-06-21T20:00:58.241Z", + "1.0.33": "2011-06-21T20:20:02.395Z", + "1.0.34": "2011-07-15T22:51:01.397Z", + "1.0.35": "2011-07-15T22:54:28.079Z", + "1.0.36": "2011-07-16T06:57:40.045Z", + "1.0.37": "2011-07-16T07:04:13.571Z", + "1.0.38": "2011-07-16T07:35:42.063Z", + "1.0.40": "2011-07-18T23:04:28.954Z", + "1.0.41": "2011-07-18T23:53:23.459Z" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/redpack/1.0.0", + "1.0.1": "http://registry.npmjs.org/redpack/1.0.1", + "1.0.2": "http://registry.npmjs.org/redpack/1.0.2", + "1.0.3": "http://registry.npmjs.org/redpack/1.0.3", + "1.0.4": "http://registry.npmjs.org/redpack/1.0.4", + "1.0.5": "http://registry.npmjs.org/redpack/1.0.5", + "1.0.6": "http://registry.npmjs.org/redpack/1.0.6", + "1.0.8": "http://registry.npmjs.org/redpack/1.0.8", + "1.0.9": "http://registry.npmjs.org/redpack/1.0.9", + "1.0.10": "http://registry.npmjs.org/redpack/1.0.10", + "1.0.11": "http://registry.npmjs.org/redpack/1.0.11", + "1.0.12": "http://registry.npmjs.org/redpack/1.0.12", + "1.0.14": "http://registry.npmjs.org/redpack/1.0.14", + "1.0.15": "http://registry.npmjs.org/redpack/1.0.15", + "1.0.16": "http://registry.npmjs.org/redpack/1.0.16", + "1.0.17": "http://registry.npmjs.org/redpack/1.0.17", + "1.0.18": "http://registry.npmjs.org/redpack/1.0.18", + "1.0.19": "http://registry.npmjs.org/redpack/1.0.19", + "1.0.20": "http://registry.npmjs.org/redpack/1.0.20", + "1.0.21": "http://registry.npmjs.org/redpack/1.0.21", + "1.0.22": "http://registry.npmjs.org/redpack/1.0.22", + "1.0.23": "http://registry.npmjs.org/redpack/1.0.23", + "1.0.24": "http://registry.npmjs.org/redpack/1.0.24", + "1.0.25": "http://registry.npmjs.org/redpack/1.0.25", + "1.0.26": "http://registry.npmjs.org/redpack/1.0.26", + "1.0.27": "http://registry.npmjs.org/redpack/1.0.27", + "1.0.28": "http://registry.npmjs.org/redpack/1.0.28", + "1.0.31": "http://registry.npmjs.org/redpack/1.0.31", + "1.0.32": "http://registry.npmjs.org/redpack/1.0.32", + "1.0.33": "http://registry.npmjs.org/redpack/1.0.33", + "1.0.34": "http://registry.npmjs.org/redpack/1.0.34", + "1.0.35": "http://registry.npmjs.org/redpack/1.0.35", + "1.0.36": "http://registry.npmjs.org/redpack/1.0.36", + "1.0.37": "http://registry.npmjs.org/redpack/1.0.37", + "1.0.38": "http://registry.npmjs.org/redpack/1.0.38", + "1.0.40": "http://registry.npmjs.org/redpack/1.0.40", + "1.0.41": "http://registry.npmjs.org/redpack/1.0.41" + }, + "dist": { + "1.0.0": { + "tarball": "http://registry.npmjs.org/redpack/-/redpack-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "f8eb78681c8043808c85e33d20611fb080c41ede", + "tarball": "http://registry.npmjs.org/redpack/-/redpack-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "7d2764a9d76f16b2422f130137ef500d4775609a", + "tarball": "http://registry.npmjs.org/redpack/-/redpack-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "378865ba0d31057f0320e0b69daada11728caba6", + "tarball": "http://registry.npmjs.org/redpack/-/redpack-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "4ffe805d1ea96bf7d68790edbcd0022a99eacab8", + "tarball": "http://registry.npmjs.org/redpack/-/redpack-1.0.4.tgz" + }, + "1.0.5": { + "shasum": "f0af2ca3b9dabc2522271cda9d08af4e3a2776fa", + "tarball": "http://registry.npmjs.org/redpack/-/redpack-1.0.5.tgz" + }, + "1.0.6": { + "shasum": "40ab9d2bf8aa6dac945c9d49f9a93a0bf50a9c1e", + "tarball": "http://registry.npmjs.org/redpack/-/redpack-1.0.6.tgz" + }, + "1.0.8": { + "shasum": "1f4327872ab6e82933ad079db386eb29d39f3636", + "tarball": "http://registry.npmjs.org/redpack/-/redpack-1.0.8.tgz" + }, + "1.0.9": { + "shasum": "c099902bfd4b0464a1fb8bab9683c1cf61cfb646", + "tarball": "http://registry.npmjs.org/redpack/-/redpack-1.0.9.tgz" + }, + "1.0.10": { + "shasum": "d441a58909e6a92107f23f5202a6b85a023ece7f", + "tarball": "http://registry.npmjs.org/redpack/-/redpack-1.0.10.tgz" + }, + "1.0.11": { + "shasum": "a773c8dca669379a2f1cec42c848e72c41ada77a", + "tarball": "http://registry.npmjs.org/redpack/-/redpack-1.0.11.tgz" + }, + "1.0.12": { + "shasum": "2528d2007e0b470b7405c89e2296906e6a609138", + "tarball": "http://registry.npmjs.org/redpack/-/redpack-1.0.12.tgz" + }, + "1.0.14": { + "shasum": "5c859882bb499abf618558a0eada53db7118c91c", + "tarball": "http://registry.npmjs.org/redpack/-/redpack-1.0.14.tgz" + }, + "1.0.15": { + "shasum": "5ff78dc6187b52f2cb126ec5c9d0016b3b55b6a0", + "tarball": "http://registry.npmjs.org/redpack/-/redpack-1.0.15.tgz" + }, + "1.0.16": { + "shasum": "16765acc6b496a5125431bee9ef29c898c67442d", + "tarball": "http://registry.npmjs.org/redpack/-/redpack-1.0.16.tgz" + }, + "1.0.17": { + "shasum": "dc9316efb1999e9beed8a2295fd81ef8f3cd8459", + "tarball": "http://registry.npmjs.org/redpack/-/redpack-1.0.17.tgz" + }, + "1.0.18": { + "shasum": "ca64268e3a959f6790023c1eb09714cc8d58070e", + "tarball": "http://registry.npmjs.org/redpack/-/redpack-1.0.18.tgz" + }, + "1.0.19": { + "shasum": "87111809bf218948d4ae0c6d16424e879534c26d", + "tarball": "http://registry.npmjs.org/redpack/-/redpack-1.0.19.tgz" + }, + "1.0.20": { + "shasum": "cd7d5004fa4e77865e72c1a5dd530f9327f6855e", + "tarball": "http://registry.npmjs.org/redpack/-/redpack-1.0.20.tgz" + }, + "1.0.21": { + "shasum": "445bd40dd1716cd06523afef54693ec601bde50e", + "tarball": "http://registry.npmjs.org/redpack/-/redpack-1.0.21.tgz" + }, + "1.0.22": { + "shasum": "d8fe8c4dd6cec069c542bb9a51d9f61ddf4bfa06", + "tarball": "http://registry.npmjs.org/redpack/-/redpack-1.0.22.tgz" + }, + "1.0.23": { + "shasum": "8cf8a2889b13bcabebc39bef9f0051f1880d5d1d", + "tarball": "http://registry.npmjs.org/redpack/-/redpack-1.0.23.tgz" + }, + "1.0.24": { + "shasum": "7c5a7b5e0244c6c86aaec01b9922d1f6a16b1e96", + "tarball": "http://registry.npmjs.org/redpack/-/redpack-1.0.24.tgz" + }, + "1.0.25": { + "shasum": "36a1c27d71f2b0522ec69d997e9b792388dab2d7", + "tarball": "http://registry.npmjs.org/redpack/-/redpack-1.0.25.tgz" + }, + "1.0.26": { + "shasum": "dfe5fd297f66a0c1ab21b97503ff5bfc16af2ee6", + "tarball": "http://registry.npmjs.org/redpack/-/redpack-1.0.26.tgz" + }, + "1.0.27": { + "shasum": "8931f9538bf08d6c2d54efd4c62ef414becb427b", + "tarball": "http://registry.npmjs.org/redpack/-/redpack-1.0.27.tgz" + }, + "1.0.28": { + "shasum": "14ae375d575996be62e184a204ce411ee76d7f8f", + "tarball": "http://registry.npmjs.org/redpack/-/redpack-1.0.28.tgz" + }, + "1.0.31": { + "shasum": "8e58ac573a3881c7e9ce52f4019256f48a4b2052", + "tarball": "http://registry.npmjs.org/redpack/-/redpack-1.0.31.tgz" + }, + "1.0.32": { + "shasum": "2e97d9077e6ad9dd7d6f6a1876a933aac796d8ad", + "tarball": "http://registry.npmjs.org/redpack/-/redpack-1.0.32.tgz" + }, + "1.0.33": { + "shasum": "8dc39073fa74618f1b792c2697c0083b660ec0ed", + "tarball": "http://registry.npmjs.org/redpack/-/redpack-1.0.33.tgz" + }, + "1.0.34": { + "shasum": "e3f6b8e65a18a1d36628c0132617fc5db1c11643", + "tarball": "http://registry.npmjs.org/redpack/-/redpack-1.0.34.tgz" + }, + "1.0.35": { + "shasum": "62fa211c865b1dbdcb63659b5d70f7c6ba165f9f", + "tarball": "http://registry.npmjs.org/redpack/-/redpack-1.0.35.tgz" + }, + "1.0.36": { + "shasum": "1271290ef8110649fa24ba7fff20bbbb01ebb76b", + "tarball": "http://registry.npmjs.org/redpack/-/redpack-1.0.36.tgz" + }, + "1.0.37": { + "shasum": "e42b548167107d259f9d735ccd545a250c88b7f1", + "tarball": "http://registry.npmjs.org/redpack/-/redpack-1.0.37.tgz" + }, + "1.0.38": { + "shasum": "de669965a79892a3978bc76c7a8d72144fe581a8", + "tarball": "http://registry.npmjs.org/redpack/-/redpack-1.0.38.tgz" + }, + "1.0.40": { + "shasum": "1f7cc264225daeb4fb47442944f1b5b5532b07d8", + "tarball": "http://registry.npmjs.org/redpack/-/redpack-1.0.40.tgz" + }, + "1.0.41": { + "shasum": "0bd93c260ed990a358cd9444d985e526dbc6288d", + "tarball": "http://registry.npmjs.org/redpack/-/redpack-1.0.41.tgz" + } + }, + "keywords": [ + "redis", + "msgpack", + "rpc", + "thrift", + "bson" + ], + "url": "http://registry.npmjs.org/redpack/" + }, + "reds": { + "name": "reds", + "description": "Redis search for node.js", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "time": { + "modified": "2011-11-16T16:38:08.392Z", + "created": "2011-07-28T00:29:57.652Z", + "0.0.1": "2011-07-28T00:29:58.302Z", + "0.0.2": "2011-07-28T01:46:29.859Z", + "0.0.3": "2011-07-28T02:01:55.996Z", + "0.1.0": "2011-07-28T16:12:52.609Z", + "0.1.1": "2011-11-16T16:38:08.392Z" + }, + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/reds/0.0.1", + "0.0.2": "http://registry.npmjs.org/reds/0.0.2", + "0.0.3": "http://registry.npmjs.org/reds/0.0.3", + "0.1.0": "http://registry.npmjs.org/reds/0.1.0", + "0.1.1": "http://registry.npmjs.org/reds/0.1.1" + }, + "dist": { + "0.0.1": { + "shasum": "5cc2d5746d42db38b6c32e0e7c1bb2bc9d5f4744", + "tarball": "http://registry.npmjs.org/reds/-/reds-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f60df4f10afe25511aae626cf5813d80759861fc", + "tarball": "http://registry.npmjs.org/reds/-/reds-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "b46632758230e0a7f29fea2da214cfe6b30ae760", + "tarball": "http://registry.npmjs.org/reds/-/reds-0.0.3.tgz" + }, + "0.1.0": { + "shasum": "f9ab94909a02518603871d94162ead75430e017f", + "tarball": "http://registry.npmjs.org/reds/-/reds-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "5a468d234c585a486e2cb6cfdda853a16306f264", + "tarball": "http://registry.npmjs.org/reds/-/reds-0.1.1.tgz" + } + }, + "keywords": [ + "redis", + "search", + "metaphone", + "phonetics", + "natural" + ], + "url": "http://registry.npmjs.org/reds/" + }, + "redub": { + "name": "redub", + "description": "Redundant pub/sub", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "**Redub** turns a bunch of objects implementing a simple pub/sub interface\ninto a redundant pub/sub transport. It works dandy with [redis-pubsub], but\nthere's no hard dependency.\n\n var pubsub = require('redis-pubsub');\n var redub = require('redub');\n\n var channel1 = pubsub.createChannel(...);\n var channel2 = pubsub.createChannel(...);\n\n var channel = redub(channel1, channel2);\n channel.on('message', function(msg) {\n console.log(msg);\n channel.end();\n });\n channel.send('Hello world!');\n\n---\n\nBehind the scenes, messages are wrapped in an envelope with a unique ID:\n\n { uid: '2d1222ff-e0cd-4594-a1fb-19335c98e58c',\n payload: 'Hello world!' }\n\nThese IDs are tracked for a short time, and duplicates are dropped. The\ntimeout is configurable:\n\n // Defaults to 10 seconds. 0 means never time out.\n // In practice, IDs are tracked anywhere between timeout and 2 × timeout.\n channel.timeout = 10000;\n\nThe method with which IDs are generated is also configurable:\n\n channel.uid = function(message) {\n // generate and return a unique ID string.\n };\n\n---\n\nRedub will accept any object that quacks like an EventEmitter and implements\nthe following:\n\n * property `ready` - must be truthy when the object is capable of publishing\n messages at that time.\n * method `send(message)` - must serialize (e.g. `JSON.stringify`) the message\n and publish it.\n * event `message(message)` - must be passed a deserialized message.\n\n [redis-pubsub]: https://github.com/AngryBytes/redis-pubsub\n", + "maintainers": [ + { + "name": "stephank", + "email": "stephan@kochen.nl" + } + ], + "time": { + "modified": "2011-12-07T21:52:07.000Z", + "created": "2011-12-07T21:52:05.592Z", + "0.0.1": "2011-12-07T21:52:07.000Z" + }, + "author": { + "name": "Stéphan Kochen", + "email": "stephan@angrybytes.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/AngryBytes/redub.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/redub/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "e605914da8b8ca1dfd902aa435a74c9a34393af3", + "tarball": "http://registry.npmjs.org/redub/-/redub-0.0.1.tgz" + } + }, + "keywords": [ + "pubsub" + ], + "url": "http://registry.npmjs.org/redub/" + }, + "redux": { + "name": "redux", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "jdpaton", + "email": "jamie.paton@googlemail.com" + } + ], + "time": { + "modified": "2011-10-09T08:55:18.881Z", + "created": "2011-10-07T07:17:23.053Z", + "0.0.1": "2011-10-07T07:17:24.419Z", + "0.0.2": "2011-10-07T10:29:50.488Z", + "0.0.3": "2011-10-08T07:56:01.457Z", + "0.0.4": "2011-10-09T08:55:18.881Z" + }, + "author": { + "name": "Jamie Paton", + "email": "jamie.paton@googlemail.com" + }, + "description": "Setting up a basebones node app has never been so easy.", + "versions": { + "0.0.1": "http://registry.npmjs.org/redux/0.0.1", + "0.0.2": "http://registry.npmjs.org/redux/0.0.2", + "0.0.3": "http://registry.npmjs.org/redux/0.0.3", + "0.0.4": "http://registry.npmjs.org/redux/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "3b1f03d791f34ae91686275703084e95aa265332", + "tarball": "http://registry.npmjs.org/redux/-/redux-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f2f07e84f54949d42b1bcd45bbec7f4c6acae8c8", + "tarball": "http://registry.npmjs.org/redux/-/redux-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "00cbe023f75edc854499a20f788e78c1ed14bce0", + "tarball": "http://registry.npmjs.org/redux/-/redux-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "1b92500a27528bb8f3c40e4d5900f8419ddb6bd4", + "tarball": "http://registry.npmjs.org/redux/-/redux-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/redux/" + }, + "reed": { + "name": "reed", + "description": "Redis + markdown blogging/website core", + "dist-tags": { + "latest": "0.9.7" + }, + "maintainers": [ + { + "name": "projectmoon", + "email": "rei@thermetics.net" + } + ], + "time": { + "modified": "2011-12-12T21:28:12.792Z", + "created": "2011-06-16T14:13:15.952Z", + "0.0.2": "2011-12-07T15:33:55.335Z", + "0.0.3": "2011-12-07T15:33:55.335Z", + "0.0.4": "2011-12-07T15:33:55.335Z", + "0.0.3-1": "2011-06-19T12:50:36.965Z", + "0.0.4-1": "2011-12-07T15:33:55.335Z", + "0.0.4-2": "2011-12-07T15:33:55.335Z", + "0.0.4-3": "2011-12-07T15:33:55.335Z", + "0.0.4-4": "2011-12-07T15:33:55.335Z", + "0.0.4-5": "2011-12-07T15:33:55.335Z", + "0.0.4-6": "2011-12-07T15:33:55.335Z", + "0.0.5": "2011-12-07T15:33:55.335Z", + "0.9.0": "2011-12-07T15:33:55.335Z", + "0.9.1": "2011-12-07T15:33:55.335Z", + "0.9.1-1": "2011-12-07T15:33:55.335Z", + "0.9.2": "2011-12-07T15:33:55.335Z", + "0.9.2-1": "2011-12-07T15:33:55.335Z", + "0.9.2-2": "2011-12-07T15:33:55.335Z", + "0.9.3": "2011-12-07T15:35:48.285Z", + "0.9.4": "2011-12-07T18:50:23.446Z", + "0.9.5": "2011-12-07T18:52:34.085Z", + "0.9.5-1": "2011-12-07T19:09:41.501Z", + "0.9.6": "2011-12-12T16:45:33.571Z", + "0.9.7": "2011-12-12T21:28:12.792Z" + }, + "author": { + "name": "ProjectMoon" + }, + "repository": { + "type": "git", + "url": "git://github.com/ProjectMoon/reed.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/reed/0.0.2", + "0.0.3": "http://registry.npmjs.org/reed/0.0.3", + "0.0.4": "http://registry.npmjs.org/reed/0.0.4", + "0.0.4-1": "http://registry.npmjs.org/reed/0.0.4-1", + "0.0.4-2": "http://registry.npmjs.org/reed/0.0.4-2", + "0.0.4-3": "http://registry.npmjs.org/reed/0.0.4-3", + "0.0.4-4": "http://registry.npmjs.org/reed/0.0.4-4", + "0.0.4-5": "http://registry.npmjs.org/reed/0.0.4-5", + "0.0.4-6": "http://registry.npmjs.org/reed/0.0.4-6", + "0.0.5": "http://registry.npmjs.org/reed/0.0.5", + "0.9.0": "http://registry.npmjs.org/reed/0.9.0", + "0.9.1": "http://registry.npmjs.org/reed/0.9.1", + "0.9.1-1": "http://registry.npmjs.org/reed/0.9.1-1", + "0.9.2": "http://registry.npmjs.org/reed/0.9.2", + "0.9.2-1": "http://registry.npmjs.org/reed/0.9.2-1", + "0.9.2-2": "http://registry.npmjs.org/reed/0.9.2-2", + "0.9.3": "http://registry.npmjs.org/reed/0.9.3", + "0.9.4": "http://registry.npmjs.org/reed/0.9.4", + "0.9.5": "http://registry.npmjs.org/reed/0.9.5", + "0.9.5-1": "http://registry.npmjs.org/reed/0.9.5-1", + "0.9.6": "http://registry.npmjs.org/reed/0.9.6", + "0.9.7": "http://registry.npmjs.org/reed/0.9.7" + }, + "dist": { + "0.0.2": { + "shasum": "023ee2d137df8ce72c18366168ebdf6e35fb0813", + "tarball": "http://registry.npmjs.org/reed/-/reed-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "66bb414eca94088ec2d27d852f1cddcfa7a1c213", + "tarball": "http://registry.npmjs.org/reed/-/reed-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "cd8943dffcffb1996273a8721b173ea11293652d", + "tarball": "http://registry.npmjs.org/reed/-/reed-0.0.4.tgz" + }, + "0.0.4-1": { + "shasum": "a4796ad2d60976e867c320be9591a80263d1fd8d", + "tarball": "http://registry.npmjs.org/reed/-/reed-0.0.4-1.tgz" + }, + "0.0.4-2": { + "shasum": "41bc90ff91c109c6cd164e022c16fe66adbed797", + "tarball": "http://registry.npmjs.org/reed/-/reed-0.0.4-2.tgz" + }, + "0.0.4-3": { + "shasum": "e9dee3d50794c4326cc960a4933f8ec3b669d5bc", + "tarball": "http://registry.npmjs.org/reed/-/reed-0.0.4-3.tgz" + }, + "0.0.4-4": { + "shasum": "bcda07c8abaccc44c1e82109bdc28cc70c3336a8", + "tarball": "http://registry.npmjs.org/reed/-/reed-0.0.4-4.tgz" + }, + "0.0.4-5": { + "shasum": "1ad8cf243f039a0f0a86768d308ea1eb1c558997", + "tarball": "http://registry.npmjs.org/reed/-/reed-0.0.4-5.tgz" + }, + "0.0.4-6": { + "shasum": "71700f19f141174f6489a3d4a6139830d558b826", + "tarball": "http://registry.npmjs.org/reed/-/reed-0.0.4-6.tgz" + }, + "0.0.5": { + "shasum": "341b99031cb468078d3a6418495538455d7d080f", + "tarball": "http://registry.npmjs.org/reed/-/reed-0.0.5.tgz" + }, + "0.9.0": { + "shasum": "c7b79f12c99727835a817fe6c551d0a3f936faa6", + "tarball": "http://registry.npmjs.org/reed/-/reed-0.9.0.tgz" + }, + "0.9.1": { + "shasum": "78694e5d5e8d296f1000500cc33fd58d2bfc4b7c", + "tarball": "http://registry.npmjs.org/reed/-/reed-0.9.1.tgz" + }, + "0.9.1-1": { + "shasum": "6b9ef0f3a2d38fe6a6dae6c408b031905b127901", + "tarball": "http://registry.npmjs.org/reed/-/reed-0.9.1-1.tgz" + }, + "0.9.2": { + "shasum": "64cd104be102d5b4e30badae991261315b51786d", + "tarball": "http://registry.npmjs.org/reed/-/reed-0.9.2.tgz" + }, + "0.9.2-1": { + "shasum": "50355fedcf5db801667b2e38cdb74e6dddf9178e", + "tarball": "http://registry.npmjs.org/reed/-/reed-0.9.2-1.tgz" + }, + "0.9.2-2": { + "shasum": "ed25e0e2ffa60accb8328799b3ac6b373c251ba2", + "tarball": "http://registry.npmjs.org/reed/-/reed-0.9.2-2.tgz" + }, + "0.9.3": { + "shasum": "223764a246f921c8f472d255330f595a70d08830", + "tarball": "http://registry.npmjs.org/reed/-/reed-0.9.3.tgz" + }, + "0.9.4": { + "shasum": "5f21f615e048c725b5ee64368b2bd15156abf007", + "tarball": "http://registry.npmjs.org/reed/-/reed-0.9.4.tgz" + }, + "0.9.5": { + "shasum": "7aa7c1cd828f37d42cc9444415eb13e1ce783cea", + "tarball": "http://registry.npmjs.org/reed/-/reed-0.9.5.tgz" + }, + "0.9.5-1": { + "shasum": "faf1e02d56a9ebe50ec330f997db7571716eed2d", + "tarball": "http://registry.npmjs.org/reed/-/reed-0.9.5-1.tgz" + }, + "0.9.6": { + "shasum": "62cf8c8a44259bb656574c15b01c8af788c95218", + "tarball": "http://registry.npmjs.org/reed/-/reed-0.9.6.tgz" + }, + "0.9.7": { + "shasum": "ccd9d0ace35cc0d4e6e1f519be74a1d98d5efb57", + "tarball": "http://registry.npmjs.org/reed/-/reed-0.9.7.tgz" + } + }, + "url": "http://registry.npmjs.org/reed/" + }, + "reflect": { + "name": "reflect", + "dist-tags": { + "stable": "0.0.1", + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "zaach", + "email": "zack.carter@gmail.com" + } + ], + "time": { + "modified": "2011-07-23T23:56:48.844Z", + "created": "2011-04-11T23:13:10.391Z", + "0.0.1": "2011-04-11T23:13:10.693Z", + "0.0.2": "2011-06-16T22:48:33.523Z", + "0.0.3": "2011-06-28T09:10:14.754Z", + "0.0.4": "2011-07-06T18:07:19.373Z", + "0.0.5": "2011-07-07T07:33:35.853Z", + "0.0.6": "2011-07-23T23:56:48.844Z" + }, + "author": { + "name": "Zach Carter", + "email": "zach@carter.name", + "url": "http://zaa.ch" + }, + "description": "JavaScript parser adhering to Mozilla's parser API", + "repository": { + "type": "git", + "url": "git://github.com/zaach/reflect.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/reflect/0.0.1", + "0.0.2": "http://registry.npmjs.org/reflect/0.0.2", + "0.0.3": "http://registry.npmjs.org/reflect/0.0.3", + "0.0.4": "http://registry.npmjs.org/reflect/0.0.4", + "0.0.5": "http://registry.npmjs.org/reflect/0.0.5", + "0.0.6": "http://registry.npmjs.org/reflect/0.0.6" + }, + "dist": { + "0.0.1": { + "shasum": "d38770673c2c95cda85e5100b0228cdcd6813563", + "tarball": "http://registry.npmjs.org/reflect/-/reflect-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "6091775788ef42cf30b50c674377d92270f0a181", + "tarball": "http://registry.npmjs.org/reflect/-/reflect-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "6274b3bd9311837cd1153a311f5583261bb6692d", + "tarball": "http://registry.npmjs.org/reflect/-/reflect-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "4bb9419ff9d43c6a3a555628d8c5bfde0c0fc7f6", + "tarball": "http://registry.npmjs.org/reflect/-/reflect-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "09381e3af5d270fe937426b7c1e52319ee225096", + "tarball": "http://registry.npmjs.org/reflect/-/reflect-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "8667f324adad6ea276367667b76ebf03d96f9bd9", + "tarball": "http://registry.npmjs.org/reflect/-/reflect-0.0.6.tgz" + } + }, + "keywords": [ + "parser", + "ast", + "reflect", + "javascript" + ], + "url": "http://registry.npmjs.org/reflect/" + }, + "reflect-builder": { + "name": "reflect-builder", + "description": "Default AST builder for reflect.js", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "zaach", + "email": "zack.carter@gmail.com" + } + ], + "time": { + "modified": "2011-08-06T21:47:43.572Z", + "created": "2011-08-06T21:47:42.757Z", + "0.0.1": "2011-08-06T21:47:43.572Z" + }, + "author": { + "name": "Zach Carter", + "email": "zcarter@cse.usf.edu", + "url": "http://zaa.ch" + }, + "repository": { + "url": "https://github.com/zaach/reflect-builder" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/reflect-builder/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "653b7f656b8ae194452682661db814e1d281b4d0", + "tarball": "http://registry.npmjs.org/reflect-builder/-/reflect-builder-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/reflect-builder/" + }, + "reflect-next": { + "name": "reflect-next", + "description": "Experimental ES.next parser adhering to Mozilla's parser API", + "dist-tags": { + "latest": "0.0.9" + }, + "maintainers": [ + { + "name": "zaach", + "email": "zack.carter@gmail.com" + } + ], + "time": { + "modified": "2011-08-18T06:27:22.255Z", + "created": "2011-08-14T03:12:16.870Z", + "0.0.6": "2011-08-14T03:12:17.253Z", + "0.0.7": "2011-08-14T07:34:12.889Z", + "0.0.8": "2011-08-14T08:24:49.069Z", + "0.0.9": "2011-08-18T06:27:22.255Z" + }, + "author": { + "name": "Zach Carter", + "email": "zach@carter.name", + "url": "http://zaa.ch" + }, + "repository": { + "type": "git", + "url": "git://github.com/zaach/reflect.js.git/tree/es-next" + }, + "versions": { + "0.0.6": "http://registry.npmjs.org/reflect-next/0.0.6", + "0.0.7": "http://registry.npmjs.org/reflect-next/0.0.7", + "0.0.8": "http://registry.npmjs.org/reflect-next/0.0.8", + "0.0.9": "http://registry.npmjs.org/reflect-next/0.0.9" + }, + "dist": { + "0.0.6": { + "shasum": "3d68e473c982d2bdc79e41147eadf99651531a1c", + "tarball": "http://registry.npmjs.org/reflect-next/-/reflect-next-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "16505930372e2bedc87647ed5d30bc30fdd5d740", + "tarball": "http://registry.npmjs.org/reflect-next/-/reflect-next-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "925ca6536c4296219348695e56083f7336b896ae", + "tarball": "http://registry.npmjs.org/reflect-next/-/reflect-next-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "36a7a9764f239482be51e35ee20908fe32214cef", + "tarball": "http://registry.npmjs.org/reflect-next/-/reflect-next-0.0.9.tgz" + } + }, + "keywords": [ + "parser", + "ast", + "reflect", + "javascript" + ], + "url": "http://registry.npmjs.org/reflect-next/" + }, + "reflect-tree-builder": { + "name": "reflect-tree-builder", + "description": "A more tree-like AST builder for reflect.js", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "zaach", + "email": "zack.carter@gmail.com" + } + ], + "time": { + "modified": "2011-08-13T23:12:39.538Z", + "created": "2011-08-06T21:49:44.939Z", + "0.0.1": "2011-08-06T21:49:45.264Z", + "0.0.2": "2011-08-13T23:12:39.538Z" + }, + "author": { + "name": "Zach Carter", + "email": "zcarter@cse.usf.edu", + "url": "http://zaa.ch" + }, + "repository": { + "url": "https://github.com/zaach/reflect-tree-builder" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/reflect-tree-builder/0.0.1", + "0.0.2": "http://registry.npmjs.org/reflect-tree-builder/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "dd9f51ed7e6669cf50b1560f8ed5286c78755d13", + "tarball": "http://registry.npmjs.org/reflect-tree-builder/-/reflect-tree-builder-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "37f38a8529023b726e9e2db1b29303d53640b1cd", + "tarball": "http://registry.npmjs.org/reflect-tree-builder/-/reflect-tree-builder-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/reflect-tree-builder/" + }, + "reflect-unbuilder": { + "name": "reflect-unbuilder", + "description": "Turns a reflect.js AST into serialized builder constructors.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "zaach", + "email": "zack.carter@gmail.com" + } + ], + "time": { + "modified": "2011-08-16T23:26:42.141Z", + "created": "2011-08-13T23:21:39.030Z", + "0.0.1": "2011-08-13T23:21:39.393Z", + "0.0.2": "2011-08-16T23:26:42.141Z" + }, + "author": { + "name": "Zach Carter", + "email": "zcarter@cse.usf.edu", + "url": "http://zaa.ch" + }, + "repository": { + "url": "https://github.com/zaach/reflect-unbuilder" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/reflect-unbuilder/0.0.1", + "0.0.2": "http://registry.npmjs.org/reflect-unbuilder/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "6c0ade49ea6995627665b6272f4caf0c0294dcad", + "tarball": "http://registry.npmjs.org/reflect-unbuilder/-/reflect-unbuilder-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "7bcf58dcdc97a4f8fb5708e7efae4c313ae61b2b", + "tarball": "http://registry.npmjs.org/reflect-unbuilder/-/reflect-unbuilder-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/reflect-unbuilder/" + }, + "reflectjs": { + "name": "reflectjs", + "description": "experimental playground for adding metadata to Javascript (like C# custom attributes)", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "demetriusj", + "email": "contact@demetriusj.com" + } + ], + "time": { + "modified": "2011-06-13T01:56:44.967Z", + "created": "2011-06-13T01:56:44.403Z", + "0.0.1": "2011-06-13T01:56:44.967Z" + }, + "author": { + "name": "Demetrius Johnson", + "email": "contact@demetriusj.com", + "url": "demetriusj.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:demetriusj/js-reflection.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/reflectjs/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "adac0e39495d5b1b2fe7fcb412f3a74551a7cd23", + "tarball": "http://registry.npmjs.org/reflectjs/-/reflectjs-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/reflectjs/" + }, + "reflex": { + "name": "reflex", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "tmpvar", + "email": "tmpvar@gmail.com" + } + ], + "time": { + "modified": "2011-05-18T01:45:13.535Z", + "created": "2011-05-18T01:45:13.314Z", + "0.0.0": "2011-05-18T01:45:13.535Z" + }, + "author": { + "name": "Elijah Insua", + "email": "tmvpar@gmail.com", + "url": "http://tmpvar.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/tmpvar/reflex.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/reflex/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "5e60fc4f9a093d4125a6370b20201b2c52c7e03f", + "tarball": "http://registry.npmjs.org/reflex/-/reflex-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/reflex/" + }, + "refmate": { + "name": "refmate", + "description": "Simple reference management software", + "dist-tags": { + "latest": "0.0.0-1" + }, + "maintainers": [ + { + "name": "thomblake", + "email": "thethomblake@gmail.com" + } + ], + "time": { + "modified": "2011-09-13T18:08:04.709Z", + "created": "2011-09-13T18:08:04.243Z", + "0.0.0-1": "2011-09-13T18:08:04.709Z" + }, + "author": { + "name": "Thom Blake", + "email": "thethomblake@gmail.com", + "url": "http://thomblake.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/thomblake/refmate.git" + }, + "versions": { + "0.0.0-1": "http://registry.npmjs.org/refmate/0.0.0-1" + }, + "dist": { + "0.0.0-1": { + "shasum": "1a707ee9225a3f4b1cd1b95566ae1161b2978ea5", + "tarball": "http://registry.npmjs.org/refmate/-/refmate-0.0.0-1.tgz" + } + }, + "keywords": [ + "reference management" + ], + "url": "http://registry.npmjs.org/refmate/" + }, + "regext": { + "name": "regext", + "description": "Named capturing groups for Javascript regexers", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "coffeemate", + "email": "kadirpekel@gmail.com" + } + ], + "time": { + "modified": "2011-08-30T21:21:37.997Z", + "created": "2011-08-30T21:21:16.661Z", + "0.1.0": "2011-08-30T21:21:17.713Z" + }, + "author": { + "name": "Kadir Pekel", + "email": "kadirpekel@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/kadirpekel/regext.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/regext/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "4e18e2d63f9318c214485aa93862863394177916", + "tarball": "http://registry.npmjs.org/regext/-/regext-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/regext/" + }, + "reid-yui3": { + "name": "reid-yui3", + "description": "Experimental fixes used by YLS. - YUI 3 Library on NodeJS - Bare - No Dependencies - Only install if you know what you are doing.", + "dist-tags": { + "latest": "0.5.34a" + }, + "maintainers": [ + { + "name": "reid", + "email": "me@reidburke.com" + } + ], + "time": { + "modified": "2011-05-02T02:41:36.283Z", + "created": "2011-03-14T23:59:49.063Z", + "0.5.25a": "2011-03-14T23:59:49.381Z", + "0.5.34a": "2011-05-02T02:41:36.283Z" + }, + "author": { + "name": "Reid Burke", + "email": "me@reidburke.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/reid/nodejs-yui3.git" + }, + "versions": { + "0.5.25a": "http://registry.npmjs.org/reid-yui3/0.5.25a", + "0.5.34a": "http://registry.npmjs.org/reid-yui3/0.5.34a" + }, + "dist": { + "0.5.25a": { + "shasum": "0be6713b3372adf31be74f8a6f6476c8ac9e3a6d", + "tarball": "http://registry.npmjs.org/reid-yui3/-/reid-yui3-0.5.25a.tgz" + }, + "0.5.34a": { + "shasum": "228fba3151a240723aa3590307b32dbd5e88ac2d", + "tarball": "http://registry.npmjs.org/reid-yui3/-/reid-yui3-0.5.34a.tgz" + } + }, + "url": "http://registry.npmjs.org/reid-yui3/" + }, + "rel": { + "name": "rel", + "description": "Rel is a SQL AST manager for Node JS", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "cjwoodward", + "email": "carl@carlwoodward.com" + } + ], + "time": { + "modified": "2011-04-25T01:39:09.320Z", + "created": "2011-04-24T11:08:48.912Z", + "0.0.1": "2011-04-24T11:08:50.807Z", + "0.0.2": "2011-04-24T11:14:37.581Z", + "0.0.3": "2011-04-25T01:39:09.320Z" + }, + "author": { + "name": "Carl Woodward", + "email": "carl@carlwoodward.com", + "url": "http://carlwoodward.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/cjwoodward/rel.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/rel/0.0.1", + "0.0.2": "http://registry.npmjs.org/rel/0.0.2", + "0.0.3": "http://registry.npmjs.org/rel/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "00353970cdb6bd3c29cad901ca79faee38026ec6", + "tarball": "http://registry.npmjs.org/rel/-/rel-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "fb68061e16cf5f159ab75906636088d556fa5b57", + "tarball": "http://registry.npmjs.org/rel/-/rel-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "828e0d83ad82d96ef1fbe66411c7f46de538f8c9", + "tarball": "http://registry.npmjs.org/rel/-/rel-0.0.3.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/rel/" + }, + "relative-date": { + "name": "relative-date", + "description": "Javascript module for outputting relative dates.", + "dist-tags": { + "latest": "1.1.1" + }, + "maintainers": [ + { + "name": "azer", + "email": "azer@kodfabrik.com" + } + ], + "time": { + "modified": "2011-10-15T08:15:17.722Z", + "created": "2011-03-09T00:35:13.485Z", + "1.0.0": "2011-03-09T00:35:13.779Z", + "1.1.0": "2011-07-21T09:11:44.211Z", + "1.1.1": "2011-10-15T08:15:17.722Z" + }, + "author": { + "name": "Azer Koculu", + "email": "azer@kodfabrik.com", + "url": "http://azer.kodfabrik.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/azer/relative-date.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/relative-date/1.0.0", + "1.1.0": "http://registry.npmjs.org/relative-date/1.1.0", + "1.1.1": "http://registry.npmjs.org/relative-date/1.1.1" + }, + "dist": { + "1.0.0": { + "shasum": "e278c6db985bb531c5c65b839b41748d64c55708", + "tarball": "http://registry.npmjs.org/relative-date/-/relative-date-1.0.0.tgz" + }, + "1.1.0": { + "shasum": "9c11491c498ab09c3e2331dd98c8cb68c6811552", + "tarball": "http://registry.npmjs.org/relative-date/-/relative-date-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "75c97c5446fa1146c1d250c47ca3629fb9a2e764", + "tarball": "http://registry.npmjs.org/relative-date/-/relative-date-1.1.1.tgz" + } + }, + "keywords": [ + "pretty", + "date", + "timestamp", + "format", + "human-readable", + "relative" + ], + "url": "http://registry.npmjs.org/relative-date/" + }, + "relax": { + "name": "relax", + "description": "Just relax, like you should with couch!", + "dist-tags": { + "latest": "0.1.1" + }, + "readme": null, + "maintainers": [ + { + "name": "thejh", + "email": "jannhorn@gmail.com" + } + ], + "time": { + "modified": "2011-11-25T17:37:19.671Z", + "created": "2011-11-15T16:53:25.246Z", + "0.1.0": "2011-11-15T16:53:27.387Z", + "0.1.1": "2011-11-25T17:37:19.671Z" + }, + "author": { + "name": "Jann Horn", + "email": "jannhorn@googlemail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/thejh/node-relax.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/relax/0.1.0", + "0.1.1": "http://registry.npmjs.org/relax/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "9ea4f94c526de3b7619f2f44b4a55f9a09c6f99e", + "tarball": "http://registry.npmjs.org/relax/-/relax-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "19c7c4334e268c3fc89f9c01c64d354cc8a92899", + "tarball": "http://registry.npmjs.org/relax/-/relax-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/relax/" + }, + "releasetools": { + "name": "releasetools", + "description": "A set of functions to deal with package releases in Node.js", + "dist-tags": { + "latest": "0.1.1" + }, + "readme": "# Node Release Tools\n\n## What is this all about?\n\nNode Release Tools is a simple NPM package which makes it really easy automate releases of your Node.js libraries\n\n## Installation\n\nJust install it via NPM:\n \n \n $ npm install releasetools\n \n\n## Usage\n\nThe easiest way to use it is by requiring it in your build script. You can see an example of usage in this package's\nJakefile file.\n\n## Tests\n\nYou just have to checkout this package from GitHub, install development dependencies and execute the tests:\n\n \n $ git checkout https://github.com/rafeca/node-releasetools.git\n \n $ npm install --dev\n \n $ npm test\n", + "maintainers": [ + { + "name": "rafeca", + "email": "rafeca@gmail.com" + } + ], + "time": { + "modified": "2011-12-06T17:40:44.833Z", + "created": "2011-12-04T18:59:03.768Z", + "0.0.1": "2011-12-04T18:59:07.936Z", + "0.0.2": "2011-12-04T21:30:36.096Z", + "0.0.2-1": "2011-12-04T21:54:08.058Z", + "0.0.2-2": "2011-12-04T22:02:36.448Z", + "0.1.1": "2011-12-06T17:40:44.833Z" + }, + "author": { + "name": "Rafael de Oleza", + "email": "rafeca@gmail.com", + "url": "https://rafeca.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/rafeca/node-releasetools.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/releasetools/0.0.1", + "0.0.2": "http://registry.npmjs.org/releasetools/0.0.2", + "0.0.2-1": "http://registry.npmjs.org/releasetools/0.0.2-1", + "0.0.2-2": "http://registry.npmjs.org/releasetools/0.0.2-2", + "0.1.1": "http://registry.npmjs.org/releasetools/0.1.1" + }, + "dist": { + "0.0.1": { + "shasum": "b50bccbd11384d245b353cf529eed6d1902c77ec", + "tarball": "http://registry.npmjs.org/releasetools/-/releasetools-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "08171b287a5412cb18d6bdce9749d2280a96aad4", + "tarball": "http://registry.npmjs.org/releasetools/-/releasetools-0.0.2.tgz" + }, + "0.0.2-1": { + "shasum": "5ac7209c76a9a4b8a9c5f0e2b48550732089ae56", + "tarball": "http://registry.npmjs.org/releasetools/-/releasetools-0.0.2-1.tgz" + }, + "0.0.2-2": { + "shasum": "7eabc3b0a86cf8a05ecc9dcaa8812c3a77b92778", + "tarball": "http://registry.npmjs.org/releasetools/-/releasetools-0.0.2-2.tgz" + }, + "0.1.1": { + "shasum": "431cc798053ce3644ca21864df1cf2d9816bed70", + "tarball": "http://registry.npmjs.org/releasetools/-/releasetools-0.1.1.tgz" + } + }, + "keywords": [ + "release", + "git", + "npm" + ], + "url": "http://registry.npmjs.org/releasetools/" + }, + "relevancy": { + "name": "relevancy", + "description": "Unidirectional string relevancy", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": null, + "maintainers": [ + { + "name": "padolsey", + "email": "npm@padolsey.net" + } + ], + "time": { + "modified": "2011-11-27T15:34:22.046Z", + "created": "2011-11-27T15:34:21.527Z", + "0.1.0": "2011-11-27T15:34:22.046Z" + }, + "author": { + "name": "James Padolsey https://github.com/padolsey" + }, + "repository": { + "type": "git", + "url": "git://github.com/padolsey/relevancy.js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/relevancy/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "81a6d1e6b4d4b281e27119aacd64324df0ec4b7c", + "tarball": "http://registry.npmjs.org/relevancy/-/relevancy-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/relevancy/" + }, + "reloaded": { + "name": "reloaded", + "description": "A development tool for reloading css/js in your browser directly from your text editor", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "datapimp", + "email": "jonathan.soeder@gmail.com" + } + ], + "time": { + "modified": "2010-12-19T09:45:59.546Z", + "created": "2010-12-19T09:45:59.175Z", + "0.2.0": "2010-12-19T09:45:59.546Z" + }, + "author": { + "name": "Jonathan Soeder", + "email": "jonathan.soeder@gmail.com", + "url": "http://twitter.com/soederpop" + }, + "repository": { + "type": "git", + "url": "https://github.com/datapimp/Reloaded.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/reloaded/0.2.0" + }, + "dist": { + "0.2.0": { + "shasum": "1be7a035a12b0deb2094f0d786da35019519e107", + "tarball": "http://registry.npmjs.org/reloaded/-/reloaded-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/reloaded/" + }, + "reloadOnUpdate": { + "name": "reloadOnUpdate", + "description": "Reload's the browser when the Application Cache updates", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-08-02T19:30:30.968Z", + "created": "2011-08-02T19:03:21.234Z", + "0.2.0": "2011-08-02T19:03:21.635Z", + "0.2.1": "2011-08-02T19:19:45.006Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com", + "url": "http://coolaj86.info" + }, + "repository": { + "type": "git", + "url": "git://github.com/coolaj86/browser-app-cache.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/reloadOnUpdate/0.2.0", + "0.2.1": "http://registry.npmjs.org/reloadOnUpdate/0.2.1" + }, + "dist": { + "0.2.0": { + "shasum": "9dedb450e4430780fced02a2c09fc9e850a34be7", + "tarball": "http://registry.npmjs.org/reloadOnUpdate/-/reloadOnUpdate-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "38a14febe595d269dc1f3c1d5333382c17f92a29", + "tarball": "http://registry.npmjs.org/reloadOnUpdate/-/reloadOnUpdate-0.2.1.tgz" + } + }, + "url": "http://registry.npmjs.org/reloadOnUpdate/" + }, + "remap": { + "name": "remap", + "description": "inject wrappers, mocks and new modules through 'require'", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-02-06T03:19:43.402Z", + "created": "2011-01-23T06:13:21.405Z", + "0.0.1": "2011-01-23T06:13:22.256Z", + "0.0.2": "2011-02-06T03:19:43.402Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com" + }, + "repository": "git://github.com/dominictarr/remap.git", + "versions": { + "0.0.1": "http://registry.npmjs.org/remap/0.0.1", + "0.0.2": "http://registry.npmjs.org/remap/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "f16b0fbbd639808d22de557dd0b3f55705e3e6c9", + "tarball": "http://registry.npmjs.org/remap/-/remap-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "3a0ecd495acf28004c9d4fc9e76729126a57cffa", + "tarball": "http://registry.npmjs.org/remap/-/remap-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/remap/" + }, + "remedial": { + "name": "remedial", + "description": "Douglas Crockford's Remedial JavaScript", + "dist-tags": { + "latest": "1.0.7", + "stable": "1.0.2" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "author": { + "name": "Douglas Crockford", + "email": "douglas@crockford.com" + }, + "time": { + "modified": "2011-08-25T16:58:57.791Z", + "created": "2011-02-27T19:34:54.065Z", + "1.0.1": "2011-02-27T19:34:54.065Z", + "1.0.2": "2011-02-27T19:34:54.065Z", + "1.0.3": "2011-02-27T19:34:54.065Z", + "1.0.5": "2011-02-27T19:34:54.065Z", + "1.0.6": "2011-03-07T06:48:40.408Z", + "1.0.7": "2011-08-25T16:58:57.791Z" + }, + "versions": { + "1.0.1": "http://registry.npmjs.org/remedial/1.0.1", + "1.0.2": "http://registry.npmjs.org/remedial/1.0.2", + "1.0.3": "http://registry.npmjs.org/remedial/1.0.3", + "1.0.5": "http://registry.npmjs.org/remedial/1.0.5", + "1.0.6": "http://registry.npmjs.org/remedial/1.0.6", + "1.0.7": "http://registry.npmjs.org/remedial/1.0.7" + }, + "dist": { + "1.0.1": { + "tarball": "http://packages:5984/remedial/-/remedial-1.0.1.tgz" + }, + "1.0.2": { + "tarball": "http://registry.npmjs.org/remedial/-/remedial-1.0.2.tgz" + }, + "1.0.3": { + "tarball": "http://registry.npmjs.org/remedial/-/remedial-1.0.3.tgz" + }, + "1.0.5": { + "shasum": "0ced16e2e7c250a3f1513c1cfc40d772d70efe11", + "tarball": "http://registry.npmjs.org/remedial/-/remedial-1.0.5.tgz" + }, + "1.0.6": { + "shasum": "b901356de462a02671b7e009ada56744929f3cfc", + "tarball": "http://registry.npmjs.org/remedial/-/remedial-1.0.6.tgz" + }, + "1.0.7": { + "shasum": "d6674413a65676007be00dd400980987b2c300c1", + "tarball": "http://registry.npmjs.org/remedial/-/remedial-1.0.7.tgz" + } + }, + "keywords": [ + "util", + "isEmpty", + "typeOf", + "entityify", + "quote", + "supplant", + "trim" + ], + "url": "http://registry.npmjs.org/remedial/" + }, + "remote_js": { + "name": "remote_js", + "description": "Command-line remote javascript console to debug your mobile web app", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "ernesto_jimenez", + "email": "erjica@gmail.com" + } + ], + "time": { + "modified": "2011-08-26T16:47:00.677Z", + "created": "2011-08-26T16:46:59.874Z", + "0.2.0": "2011-08-26T16:47:00.677Z" + }, + "author": { + "name": "Ernesto Jimenez", + "email": "erjica@gmail.com", + "url": "http://twitter.com/ernesto_jimenez" + }, + "repository": { + "type": "git", + "url": "git://github.com/ernesto-jimenez/remote-js.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/remote_js/0.2.0" + }, + "dist": { + "0.2.0": { + "shasum": "ccec65403968340e0bc174fd1f3163f5eef96c0a", + "tarball": "http://registry.npmjs.org/remote_js/-/remote_js-0.2.0.tgz" + } + }, + "keywords": [ + "remote", + "javascript console" + ], + "url": "http://registry.npmjs.org/remote_js/" + }, + "remote-console": { + "name": "remote-console", + "description": "A remote console for webapp development", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "marcuswestin", + "email": "narcvs@gmail.com" + } + ], + "time": { + "modified": "2011-08-11T03:03:24.061Z", + "created": "2011-08-11T00:47:28.482Z", + "0.1.0": "2011-08-11T00:47:29.002Z", + "0.1.1": "2011-08-11T03:03:24.061Z" + }, + "author": { + "name": "Marcus Westin", + "email": "narcvs@gmail.com", + "url": "http://marcuswest.in" + }, + "repository": { + "url": "" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/remote-console/0.1.0", + "0.1.1": "http://registry.npmjs.org/remote-console/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "83364957c91ff21dfe5b19f0ebe8669244c45538", + "tarball": "http://registry.npmjs.org/remote-console/-/remote-console-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "1f7bc40f556ffb762fa141ee8527381bd6dd151d", + "bin": { + "0.4-darwin-10.7.0": { + "shasum": "2b3b3f1e54857245115effea8ffcad05d6f2a216", + "tarball": "http://registry.npmjs.org/remote-console/-/remote-console-0.1.1-0.4-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/remote-console/-/remote-console-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/remote-console/" + }, + "RemoteTestService": { + "name": "RemoteTestService", + "description": "A remote testing service exposing a RESTful api for querying and running nodeunit tests contained in the service, using http requests", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "urigolani", + "email": "t-urig@microsoft.com" + } + ], + "time": { + "modified": "2011-10-03T16:04:54.373Z", + "created": "2011-10-03T16:04:52.029Z", + "0.0.1": "2011-10-03T16:04:54.373Z" + }, + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "repository": { + "type": "git", + "url": "git://github.com/urigolani/NodeTestService.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/RemoteTestService/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "b800dc1f8499e70688b9489fc00d6ebe6943b5d4", + "tarball": "http://registry.npmjs.org/RemoteTestService/-/RemoteTestService-0.0.1.tgz" + } + }, + "keywords": [ + "nodeunit", + "rest", + "restful", + "test" + ], + "url": "http://registry.npmjs.org/RemoteTestService/" + }, + "render": { + "name": "render", + "description": "pretty print javascript objects or generate JSON, with comma first and comma trailing", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-10-15T12:50:53.393Z", + "created": "2011-02-08T04:23:03.379Z", + "0.0.2": "2011-02-08T04:23:04.144Z", + "0.0.3": "2011-06-06T20:48:28.900Z", + "0.0.4": "2011-06-20T02:46:28.240Z", + "0.0.5": "2011-06-20T03:07:42.106Z", + "0.1.0": "2011-09-17T06:24:18.778Z", + "0.1.1": "2011-10-15T12:50:53.393Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dominictarr/render.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/render/0.0.2", + "0.0.3": "http://registry.npmjs.org/render/0.0.3", + "0.0.4": "http://registry.npmjs.org/render/0.0.4", + "0.0.5": "http://registry.npmjs.org/render/0.0.5", + "0.1.0": "http://registry.npmjs.org/render/0.1.0", + "0.1.1": "http://registry.npmjs.org/render/0.1.1" + }, + "dist": { + "0.0.2": { + "shasum": "1978fea53bc8d11a4e62d153000f788231259f7a", + "tarball": "http://registry.npmjs.org/render/-/render-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "5010fc66f9c5086b6419fb36e822c36514ee7195", + "tarball": "http://registry.npmjs.org/render/-/render-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "5732f282d2730168b5156e91b15b999aab2d4dd2", + "tarball": "http://registry.npmjs.org/render/-/render-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "20dd43eaa24e75daa55bcb95f5aae9c43e023bff", + "tarball": "http://registry.npmjs.org/render/-/render-0.0.5.tgz" + }, + "0.1.0": { + "shasum": "74f82e5c7c2debdafe7671037ed6258ee70b5e0a", + "tarball": "http://registry.npmjs.org/render/-/render-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "b3caed35937d88f20cfcd7781d49ce17b4c0a883", + "tarball": "http://registry.npmjs.org/render/-/render-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/render/" + }, + "renode": { + "name": "renode", + "description": "dev utility to (re)start a node script when files are changed", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "einaros", + "email": "einaros@gmail.com" + } + ], + "time": { + "modified": "2011-09-09T15:46:36.808Z", + "created": "2011-08-23T20:01:23.717Z", + "0.1.0": "2011-08-23T20:01:24.394Z", + "0.1.1": "2011-09-04T18:43:31.897Z", + "0.1.2": "2011-09-09T15:46:36.808Z" + }, + "author": { + "name": "Einar Otto Stangvik", + "email": "einaros@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/einaros/renode.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/renode/0.1.0", + "0.1.1": "http://registry.npmjs.org/renode/0.1.1", + "0.1.2": "http://registry.npmjs.org/renode/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "745a4963687ccbf0f120e7eb1bc5cdd0fbb88d3e", + "tarball": "http://registry.npmjs.org/renode/-/renode-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "c47b2312eecf0b74c861c99dade54aa34dd33635", + "tarball": "http://registry.npmjs.org/renode/-/renode-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "b331ae59b6e024eeee78040ab290dc583824ebc7", + "tarball": "http://registry.npmjs.org/renode/-/renode-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/renode/" + }, + "reparse": { + "name": "reparse", + "description": "A parser combinator library like Parsec.", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "weaver", + "email": "ben@orangesoda.net" + } + ], + "author": { + "name": "Ben Weaver", + "email": "ben@orangesoda.net" + }, + "time": { + "modified": "2011-03-28T20:07:08.101Z", + "created": "2011-03-28T20:07:08.101Z", + "0.1.0": "2011-03-28T20:07:08.101Z", + "0.1.1": "2011-03-28T20:07:08.101Z", + "0.1.2": "2011-03-28T20:07:08.101Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/reparse/0.1.0", + "0.1.1": "http://registry.npmjs.org/reparse/0.1.1", + "0.1.2": "http://registry.npmjs.org/reparse/0.1.2" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/reparse/-/reparse-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://packages:5984/reparse/-/reparse-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "2d1fa585f5810d346cf3277a910a60efb5655c66", + "tarball": "http://registry.npmjs.org/reparse/-/reparse-0.1.2.tgz" + } + }, + "keywords": [ + "parse", + "parser", + "combinator", + "regexp", + "regular", + "expression" + ], + "url": "http://registry.npmjs.org/reparse/" + }, + "rephraser": { + "name": "rephraser", + "description": "HTTP Server For Testing", + "dist-tags": { + "latest": "0.1.2" + }, + "readme": null, + "maintainers": [ + { + "name": "dyoder", + "email": "danielyoder@gmail.com" + } + ], + "time": { + "modified": "2011-12-07T00:03:37.286Z", + "created": "2011-12-06T20:11:46.263Z", + "0.1.0": "2011-12-06T20:11:47.368Z", + "0.1.1": "2011-12-06T20:39:42.790Z", + "0.1.2": "2011-12-07T00:03:37.286Z" + }, + "author": { + "name": "Border Stylo" + }, + "repository": { + "type": "git", + "url": "git://github.com/borderstylo/rephraser.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/rephraser/0.1.0", + "0.1.1": "http://registry.npmjs.org/rephraser/0.1.1", + "0.1.2": "http://registry.npmjs.org/rephraser/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "18137f34099f87473bf325524aacbd078296ad51", + "tarball": "http://registry.npmjs.org/rephraser/-/rephraser-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "13e98fd06f7b67e84bcd868576a0e85ae37d9daa", + "tarball": "http://registry.npmjs.org/rephraser/-/rephraser-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "66684591746a3cb4a322051011d1c2bc2e3e6ecc", + "tarball": "http://registry.npmjs.org/rephraser/-/rephraser-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/rephraser/" + }, + "repl": { + "name": "repl", + "description": "A simple fast template libray.", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "firejune", + "email": "to@firejune.com" + } + ], + "time": { + "modified": "2011-10-19T03:19:23.212Z", + "created": "2011-09-10T21:11:51.589Z", + "0.1.0": "2011-09-10T21:11:55.737Z", + "0.1.1": "2011-10-19T03:14:09.258Z", + "0.1.3": "2011-10-19T03:19:23.212Z" + }, + "author": { + "name": "Firejune", + "url": "http://firejune.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/firejune/repl.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/repl/0.1.0", + "0.1.1": "http://registry.npmjs.org/repl/0.1.1", + "0.1.3": "http://registry.npmjs.org/repl/0.1.3" + }, + "dist": { + "0.1.0": { + "shasum": "7eaf1aa6dca84d35b4004f0e3b22ff9a6e3ed512", + "tarball": "http://registry.npmjs.org/repl/-/repl-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "0c087783aa547ad9b09c02b151f1d4e4cd20cef4", + "tarball": "http://registry.npmjs.org/repl/-/repl-0.1.1.tgz" + }, + "0.1.3": { + "shasum": "2f05d42b0c88b43d05ccbda10ed14aeff5699b60", + "tarball": "http://registry.npmjs.org/repl/-/repl-0.1.3.tgz" + } + }, + "keywords": [ + "template", + "engine", + "repl" + ], + "url": "http://registry.npmjs.org/repl/" + }, + "repl-edit": { + "name": "repl-edit", + "description": "Edit code in the repl using a real text editor", + "dist-tags": { + "latest": "0.9.4" + }, + "maintainers": [ + { + "name": "sjs", + "email": "sami@samhuri.net" + } + ], + "author": { + "name": "Sami Samhuri", + "email": "sami@samhuri.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/samsonjs/repl-edit.git" + }, + "time": { + "modified": "2011-11-05T23:32:32.656Z", + "created": "2011-05-18T07:00:22.867Z", + "0.0.1": "2011-05-18T07:00:22.867Z", + "0.0.2": "2011-05-18T07:00:22.867Z", + "0.0.3": "2011-05-18T07:00:22.867Z", + "0.9.0": "2011-05-18T07:00:22.867Z", + "0.9.1": "2011-05-18T07:15:02.284Z", + "0.9.2": "2011-05-19T05:08:56.200Z", + "0.9.3": "2011-05-30T08:03:49.995Z", + "0.9.4": "2011-11-05T23:32:32.656Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/repl-edit/0.0.1", + "0.0.2": "http://registry.npmjs.org/repl-edit/0.0.2", + "0.0.3": "http://registry.npmjs.org/repl-edit/0.0.3", + "0.9.0": "http://registry.npmjs.org/repl-edit/0.9.0", + "0.9.1": "http://registry.npmjs.org/repl-edit/0.9.1", + "0.9.2": "http://registry.npmjs.org/repl-edit/0.9.2", + "0.9.3": "http://registry.npmjs.org/repl-edit/0.9.3", + "0.9.4": "http://registry.npmjs.org/repl-edit/0.9.4" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/repl-edit/-/repl-edit-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/repl-edit/-/repl-edit-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/repl-edit/-/repl-edit-0.0.3.tgz" + }, + "0.9.0": { + "shasum": "5c6e03abd0415a22feb952f37ac69569136e0456", + "tarball": "http://registry.npmjs.org/repl-edit/-/repl-edit-0.9.0.tgz" + }, + "0.9.1": { + "shasum": "c8f75c07b368ba7ced2d39b9ad55283ebf300e46", + "tarball": "http://registry.npmjs.org/repl-edit/-/repl-edit-0.9.1.tgz" + }, + "0.9.2": { + "shasum": "17d175fa264e29e751d82bd1fbd3798202c24c2d", + "tarball": "http://registry.npmjs.org/repl-edit/-/repl-edit-0.9.2.tgz" + }, + "0.9.3": { + "shasum": "ca9ad55c583bac339f06328f2b25460344d8f603", + "tarball": "http://registry.npmjs.org/repl-edit/-/repl-edit-0.9.3.tgz" + }, + "0.9.4": { + "shasum": "5cd396567e580dc00720d8b5728c1896312d55f9", + "tarball": "http://registry.npmjs.org/repl-edit/-/repl-edit-0.9.4.tgz" + } + }, + "url": "http://registry.npmjs.org/repl-edit/" + }, + "repl-utils": { + "name": "repl-utils", + "description": "REPL utils", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "gozala", + "email": "rfobic@gmail.com" + } + ], + "time": { + "modified": "2011-09-04T16:29:13.553Z", + "created": "2011-09-04T15:20:40.515Z", + "0.0.1": "2011-09-04T15:20:42.797Z", + "0.0.2": "2011-09-04T16:01:21.690Z", + "0.0.3": "2011-09-04T16:29:13.553Z" + }, + "author": { + "name": "Irakli Gozalishvili", + "email": "rfobic@gmail.com", + "url": "http://jeditoolkit.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Gozala/repl-utils.git", + "web": "https://github.com/Gozala/repl-utils" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/repl-utils/0.0.1", + "0.0.2": "http://registry.npmjs.org/repl-utils/0.0.2", + "0.0.3": "http://registry.npmjs.org/repl-utils/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "39d03ec7782d102ecdb2885bca3fc59a603ce115", + "tarball": "http://registry.npmjs.org/repl-utils/-/repl-utils-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "3c69d083a18e676213c1201896133055389dabd4", + "tarball": "http://registry.npmjs.org/repl-utils/-/repl-utils-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "253f410f865816138bdc300414641d383fe7af7e", + "tarball": "http://registry.npmjs.org/repl-utils/-/repl-utils-0.0.3.tgz" + } + }, + "keywords": [ + "repl", + "utils" + ], + "url": "http://registry.npmjs.org/repl-utils/" + }, + "repl.history": { + "name": "repl.history", + "description": "add history to node's repl", + "dist-tags": { + "latest": "0.1.1" + }, + "readme": "# repl.history\n\nPersist a node repl's history to a file.\n\n## from node\n\ninstall: `npm install repl.history`\n\n```javascript\nvar repl = require('repl').start('> ');\nrequire('repl.history')(repl, process.env.HOME + '/.node_history');\n```\n\nthis will drop a `.node_history` file in your home directory.\n\n## from the command line\n\ninstall: `npm install -g repl.history`\n\nrun `repl.history` on the command line\n\nA file `~/.node_history` will be created.\n\nI like to alias it to `nr` for node repl", + "maintainers": [ + { + "name": "tmpvar", + "email": "tmpvar@gmail.com" + } + ], + "time": { + "modified": "2011-11-25T16:55:55.927Z", + "created": "2011-11-24T06:40:12.801Z", + "0.1.0": "2011-11-24T06:40:14.002Z", + "0.1.1": "2011-11-25T16:55:55.927Z" + }, + "author": { + "name": "Elijah Insua", + "email": "tmpvar@gmail.com", + "url": "http://tmpvar.com" + }, + "repository": { + "type": "git", + "url": "git://github.com//tmpvar/repl.history" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/repl.history/0.1.0", + "0.1.1": "http://registry.npmjs.org/repl.history/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "72ae86fba376f5a32a74c635a6a807ac4ccb18ed", + "tarball": "http://registry.npmjs.org/repl.history/-/repl.history-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "b8cc4c06e1f5428ef47c15588d774e6370b0874c", + "tarball": "http://registry.npmjs.org/repl.history/-/repl.history-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/repl.history/" + }, + "replace": { + "name": "replace", + "description": "Command line search and replace utility", + "dist-tags": { + "latest": "0.1.9" + }, + "maintainers": [ + { + "name": "harth", + "email": "fayearthur@gmail.com" + } + ], + "time": { + "modified": "2011-08-07T00:55:47.294Z", + "created": "2011-06-05T22:32:38.854Z", + "0.1.0": "2011-06-05T22:32:39.530Z", + "0.1.1": "2011-06-06T06:02:21.129Z", + "0.1.3": "2011-06-07T18:02:55.919Z", + "0.1.4": "2011-06-07T19:20:47.074Z", + "0.1.6": "2011-06-11T17:28:30.910Z", + "0.1.7": "2011-06-11T20:49:40.651Z", + "0.1.8": "2011-06-16T04:37:01.732Z", + "0.1.9": "2011-08-07T00:55:47.294Z" + }, + "author": { + "name": "Heather Arthur", + "email": "fayearthur@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/harthur/replace.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/replace/0.1.0", + "0.1.1": "http://registry.npmjs.org/replace/0.1.1", + "0.1.3": "http://registry.npmjs.org/replace/0.1.3", + "0.1.4": "http://registry.npmjs.org/replace/0.1.4", + "0.1.6": "http://registry.npmjs.org/replace/0.1.6", + "0.1.7": "http://registry.npmjs.org/replace/0.1.7", + "0.1.8": "http://registry.npmjs.org/replace/0.1.8", + "0.1.9": "http://registry.npmjs.org/replace/0.1.9" + }, + "dist": { + "0.1.0": { + "shasum": "afcb3183ac53be1c2dcd229c8467f2313301a8e6", + "tarball": "http://registry.npmjs.org/replace/-/replace-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "46eab7cb2b5ba1de0a28d2c59cb69683a7a714d7", + "tarball": "http://registry.npmjs.org/replace/-/replace-0.1.1.tgz" + }, + "0.1.3": { + "shasum": "ddfe252aea8c943e94d42168323d08d1377a2eb3", + "tarball": "http://registry.npmjs.org/replace/-/replace-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "7d703757551b22b94752a3ed6c27eb182c7b5388", + "tarball": "http://registry.npmjs.org/replace/-/replace-0.1.4.tgz" + }, + "0.1.6": { + "shasum": "7f87be87e4fd072fd4f91b41b5aab06ebbe8093c", + "tarball": "http://registry.npmjs.org/replace/-/replace-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "a5b0c61277057ccf8e5ef8c167dbc5b1d15089e4", + "tarball": "http://registry.npmjs.org/replace/-/replace-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "7c0473d648db6d8547869c17971cccc4e7c97574", + "tarball": "http://registry.npmjs.org/replace/-/replace-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "c09d4f9e5681bd6de67b1f5a34658254ccc51988", + "tarball": "http://registry.npmjs.org/replace/-/replace-0.1.9.tgz" + } + }, + "keywords": [ + "sed", + "grep" + ], + "url": "http://registry.npmjs.org/replace/" + }, + "replay": { + "name": "replay", + "description": "When API testing slows you down: record and replay HTTP responses like a boss", + "dist-tags": { + "latest": "1.1.1" + }, + "readme": "# Node Replay\n \n### When API testing slows you down: mock, record and replay HTTP requests/responses like a boss\n\n", + "maintainers": [ + { + "name": "assaf", + "email": "assaf@labnotes.org" + } + ], + "time": { + "modified": "2011-12-06T21:15:21.600Z", + "created": "2011-11-29T17:53:36.792Z", + "0.1.0": "2011-11-29T17:53:38.276Z", + "0.2.0": "2011-12-01T00:42:36.830Z", + "0.3.0": "2011-12-01T21:59:25.008Z", + "0.3.1": "2011-12-01T22:40:09.931Z", + "0.3.2": "2011-12-01T22:49:07.682Z", + "0.4.0": "2011-12-02T01:04:41.498Z", + "1.0.0": "2011-12-02T06:48:41.863Z", + "1.0.1": "2011-12-06T00:10:14.222Z", + "1.1.0": "2011-12-06T01:18:46.123Z", + "1.1.1": "2011-12-06T21:15:21.600Z" + }, + "author": { + "name": "Assaf Arkin", + "email": "assaf@labnotes.org", + "url": "http://labnotes.org/" + }, + "repository": { + "type": "git", + "url": "git://github.com/assaf/node-replay.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/replay/0.1.0", + "0.2.0": "http://registry.npmjs.org/replay/0.2.0", + "0.3.0": "http://registry.npmjs.org/replay/0.3.0", + "0.3.1": "http://registry.npmjs.org/replay/0.3.1", + "0.3.2": "http://registry.npmjs.org/replay/0.3.2", + "0.4.0": "http://registry.npmjs.org/replay/0.4.0", + "1.0.0": "http://registry.npmjs.org/replay/1.0.0", + "1.0.1": "http://registry.npmjs.org/replay/1.0.1", + "1.1.0": "http://registry.npmjs.org/replay/1.1.0", + "1.1.1": "http://registry.npmjs.org/replay/1.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "599ba5f34a847ea135598f17771c037eee8ee450", + "tarball": "http://registry.npmjs.org/replay/-/replay-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "f6bd96ed8b315027e53cc2ba81465cea8675a0c0", + "tarball": "http://registry.npmjs.org/replay/-/replay-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "d72cd677487b4f1b1c91c4bcc2b38469b66d84b5", + "tarball": "http://registry.npmjs.org/replay/-/replay-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "8e61087ec771f7500840bffc42f81692e1a7c06f", + "tarball": "http://registry.npmjs.org/replay/-/replay-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "580288262310e64ab6cc261b179306a8bfe8976f", + "tarball": "http://registry.npmjs.org/replay/-/replay-0.3.2.tgz" + }, + "0.4.0": { + "shasum": "864b370edf4301021efba0bdbcc4c14199349bba", + "tarball": "http://registry.npmjs.org/replay/-/replay-0.4.0.tgz" + }, + "1.0.0": { + "shasum": "1708f9b977cf4801901b00122d7d467562081453", + "tarball": "http://registry.npmjs.org/replay/-/replay-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "665c3957f83915c77d9d231bfb7a1d65f8bc90b9", + "tarball": "http://registry.npmjs.org/replay/-/replay-1.0.1.tgz" + }, + "1.1.0": { + "shasum": "30dd5ed0994560362f74fe449abe1b4629b635b0", + "tarball": "http://registry.npmjs.org/replay/-/replay-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "b78485f03671a9a557f47e8bed7c4fa1ede6faa4", + "tarball": "http://registry.npmjs.org/replay/-/replay-1.1.1.tgz" + } + }, + "keywords": [ + "test", + "testing", + "mock", + "stub", + "http", + "replay", + "vcr", + "api" + ], + "url": "http://registry.npmjs.org/replay/" + }, + "replica": { + "name": "replica", + "description": "REPL which throws JavaScript code to browsers", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "zentooo", + "email": "zentoooo@gmail.com" + } + ], + "time": { + "modified": "2011-03-21T15:27:02.703Z", + "created": "2011-03-21T15:27:02.050Z", + "0.1.0": "2011-03-21T15:27:02.703Z" + }, + "author": { + "name": "zentooo", + "email": "ankerasoy@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/zentooo/Replica.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/replica/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "636a14a0944fecc83c67ee4cc7459085ddf5cd50", + "tarball": "http://registry.npmjs.org/replica/-/replica-0.1.0.tgz" + } + }, + "keywords": [ + "repl", + "debug" + ], + "url": "http://registry.npmjs.org/replica/" + }, + "replicate": { + "name": "replicate", + "description": "A customizable CouchDB replicator in node.js.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "maxogden", + "email": "max@maxogden.com" + } + ], + "time": { + "modified": "2011-09-30T04:04:49.123Z", + "created": "2011-09-13T19:25:51.109Z", + "0.0.1": "2011-09-13T19:25:51.814Z", + "0.0.2": "2011-09-30T04:04:06.597Z" + }, + "author": { + "name": "Mikeal Rogers", + "email": "mikeal.rogers@gmail.com", + "url": "http://www.mikealrogers.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mikeal/replicate.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/replicate/0.0.1", + "0.0.2": "http://registry.npmjs.org/replicate/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "0263432a91ae949cc9304c91a28d8ab0cfba2c16", + "tarball": "http://registry.npmjs.org/replicate/-/replicate-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "3975221f99a7761b3d2a46c6ccef837e9bf12db4", + "tarball": "http://registry.npmjs.org/replicate/-/replicate-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/replicate/" + }, + "replimate": { + "name": "replimate", + "description": "CouchDB 1.1.0 (using _replicator db) replication helpers", + "dist-tags": { + "latest": "0.1.1" + }, + "readme": "# Replimate\n\nCouchDB 1.1 (using the _replicator db) replication helpers.", + "maintainers": [ + { + "name": "damonoehlman", + "email": "damon.oehlman@sidelab.com" + } + ], + "time": { + "modified": "2011-12-04T05:56:32.259Z", + "created": "2011-12-04T03:41:47.742Z", + "0.1.0": "2011-12-04T03:41:51.904Z", + "0.1.1": "2011-12-04T05:56:08.161Z" + }, + "author": { + "name": "Damon Oehlman", + "email": "damon.oehlman@sidelab.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/steelmesh/replimate.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/replimate/0.1.1" + }, + "dist": { + "0.1.1": { + "shasum": "a8bdb68fb684338ca719d4fc2a3103bd32cc0a40", + "tarball": "http://registry.npmjs.org/replimate/-/replimate-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/replimate/" + }, + "replique": { + "name": "replique", + "description": "REPL server for individual requests.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "intuited", + "email": "intuited@gmail.com" + } + ], + "time": { + "modified": "2011-06-03T15:05:58.940Z", + "created": "2011-05-28T00:59:37.370Z", + "0.1.0": "2011-05-28T00:59:37.590Z", + "0.1.1": "2011-06-03T15:05:58.940Z" + }, + "author": { + "name": "Ted Tibbetts", + "url": "http://github.com/intuited" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/replique/0.1.0", + "0.1.1": "http://registry.npmjs.org/replique/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "ac5d138f75d860e0bf4f7f5b3571591afce6fb09", + "tarball": "http://registry.npmjs.org/replique/-/replique-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "98f7742f43bd743ff4bf8790bb95257bf20e1a19", + "tarball": "http://registry.npmjs.org/replique/-/replique-0.1.1.tgz" + } + }, + "keywords": [ + "repl", + "server" + ], + "url": "http://registry.npmjs.org/replique/" + }, + "req2": { + "name": "req2", + "description": "A super-duper replacement for require.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "bengl", + "email": "bryan@bryanenglish.com" + } + ], + "time": { + "modified": "2011-09-22T07:57:51.471Z", + "created": "2011-09-22T07:57:50.719Z", + "0.0.1": "2011-09-22T07:57:51.471Z" + }, + "author": { + "name": "Bryan English", + "email": "bryan@bryanenglish.com", + "url": "http://about.me/bengl" + }, + "repository": { + "type": "git", + "url": "git://github.com/bengl/req2.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/req2/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "71183677089c51a880759df0d746d74432c85466", + "tarball": "http://registry.npmjs.org/req2/-/req2-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/req2/" + }, + "reqhooks": { + "name": "reqhooks", + "description": "'reqhooks' a collection of request / response stream hooks for connect", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "yellowbean", + "email": "apirsig@web.de" + } + ], + "time": { + "modified": "2011-04-15T11:49:46.383Z", + "created": "2011-03-11T07:25:16.076Z", + "0.0.1alpha": "2011-03-11T07:25:16.601Z", + "0.0.2alpha": "2011-03-11T09:28:36.136Z", + "0.0.2alpha2": "2011-03-17T22:56:37.319Z", + "0.0.2alpha3": "2011-03-27T12:13:58.309Z", + "0.0.2alpha4": "2011-04-12T09:11:24.183Z", + "0.0.2alpha5": "2011-04-12T09:23:14.023Z", + "0.0.3": "2011-04-15T07:22:58.955Z", + "0.0.4": "2011-04-15T11:49:46.383Z" + }, + "author": { + "name": "Alexander Pirsig", + "email": "apirsig@web.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/piscis/reqhooks.git" + }, + "versions": { + "0.0.1alpha": "http://registry.npmjs.org/reqhooks/0.0.1alpha", + "0.0.2alpha": "http://registry.npmjs.org/reqhooks/0.0.2alpha", + "0.0.2alpha2": "http://registry.npmjs.org/reqhooks/0.0.2alpha2", + "0.0.2alpha3": "http://registry.npmjs.org/reqhooks/0.0.2alpha3", + "0.0.2alpha4": "http://registry.npmjs.org/reqhooks/0.0.2alpha4", + "0.0.2alpha5": "http://registry.npmjs.org/reqhooks/0.0.2alpha5", + "0.0.3": "http://registry.npmjs.org/reqhooks/0.0.3", + "0.0.4": "http://registry.npmjs.org/reqhooks/0.0.4" + }, + "dist": { + "0.0.1alpha": { + "shasum": "eae0c3b8d570734bc4f90ad92ecc06bbbb2c4dcf", + "tarball": "http://registry.npmjs.org/reqhooks/-/reqhooks-0.0.1alpha.tgz" + }, + "0.0.2alpha": { + "shasum": "1a449d722cad6df40c2442f4a37dda3ca5e80259", + "tarball": "http://registry.npmjs.org/reqhooks/-/reqhooks-0.0.2alpha.tgz" + }, + "0.0.2alpha2": { + "shasum": "9a40e44f72c77f9adce3e42209c3bb2abdce54e2", + "tarball": "http://registry.npmjs.org/reqhooks/-/reqhooks-0.0.2alpha2.tgz" + }, + "0.0.2alpha3": { + "shasum": "aa50f4cff6f72112629193ae2da3cfb88786d8d4", + "tarball": "http://registry.npmjs.org/reqhooks/-/reqhooks-0.0.2alpha3.tgz" + }, + "0.0.2alpha4": { + "shasum": "987348d10ea4d739e7647859872215b9f4b734b1", + "tarball": "http://registry.npmjs.org/reqhooks/-/reqhooks-0.0.2alpha4.tgz" + }, + "0.0.2alpha5": { + "shasum": "f4df58e8468384b48a315be860e97c9784452c3a", + "tarball": "http://registry.npmjs.org/reqhooks/-/reqhooks-0.0.2alpha5.tgz" + }, + "0.0.3": { + "shasum": "eb0be97996176525df32b90e13bf93e8886d85c9", + "tarball": "http://registry.npmjs.org/reqhooks/-/reqhooks-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "07fdb2fb2e6a948f5549f942acbaa7f001265df7", + "tarball": "http://registry.npmjs.org/reqhooks/-/reqhooks-0.0.4.tgz" + } + }, + "keywords": [ + "hook", + "filter", + "url", + "normalization", + "schema", + "request", + "prepend", + "express", + "connect", + "servlet filter", + "hooks", + "pre", + "post", + "header", + "url normalization", + "seo", + "p3p", + "redirect" + ], + "url": "http://registry.npmjs.org/reqhooks/" + }, + "request": { + "name": "request", + "description": "Simplified HTTP request client.", + "dist-tags": { + "latest": "2.2.9" + }, + "maintainers": [ + { + "name": "mikeal", + "email": "mikeal.rogers@gmail.com" + } + ], + "author": { + "name": "Mikeal Rogers", + "email": "mikeal.rogers@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mikeal/request.git" + }, + "time": { + "modified": "2011-12-01T08:39:41.637Z", + "created": "2011-01-22T00:36:12.640Z", + "0.10.0": "2011-01-22T00:36:12.640Z", + "0.8.3": "2011-01-22T00:36:12.640Z", + "0.9.0": "2011-01-22T00:36:12.640Z", + "0.9.1": "2011-01-22T00:36:12.640Z", + "0.9.5": "2011-01-22T00:36:12.640Z", + "1.0.0": "2011-01-22T00:36:12.640Z", + "1.1.0": "2011-01-23T01:14:46.626Z", + "1.1.1": "2011-01-23T01:38:57.823Z", + "1.2.0": "2011-01-30T22:05:41.553Z", + "1.9.0": "2011-02-11T00:10:06.903Z", + "1.9.1": "2011-03-22T18:07:16.344Z", + "1.9.2": "2011-03-22T18:29:21.464Z", + "1.9.3": "2011-03-22T18:32:57.223Z", + "1.9.5": "2011-03-27T22:30:25.139Z", + "1.9.7": "2011-06-23T17:36:13.839Z", + "1.9.8": "2011-06-23T21:15:20.971Z", + "1.9.9": "2011-07-21T02:03:21.081Z", + "2.0.0": "2011-07-21T21:10:38.897Z", + "2.0.1": "2011-07-21T22:22:13.282Z", + "2.0.2": "2011-07-29T20:48:36.410Z", + "2.0.3": "2011-08-12T23:16:25.100Z", + "2.0.4": "2011-08-13T21:28:21.109Z", + "2.0.5": "2011-08-13T21:46:39.966Z", + "2.1.0": "2011-08-15T04:03:17.126Z", + "2.1.1": "2011-08-23T03:59:30.206Z", + "2.2.0": "2011-11-06T01:40:00.212Z", + "2.2.5": "2011-11-17T06:35:04.405Z", + "2.2.6": "2011-12-01T07:38:36.311Z", + "2.2.9": "2011-12-01T08:39:41.637Z" + }, + "users": { + "isaacs": true, + "thejh": true, + "substack": true, + "mvolkmann": true, + "tmpvar": true + }, + "versions": { + "0.10.0": "http://registry.npmjs.org/request/0.10.0", + "0.8.3": "http://registry.npmjs.org/request/0.8.3", + "0.9.0": "http://registry.npmjs.org/request/0.9.0", + "0.9.1": "http://registry.npmjs.org/request/0.9.1", + "0.9.5": "http://registry.npmjs.org/request/0.9.5", + "1.0.0": "http://registry.npmjs.org/request/1.0.0", + "1.1.0": "http://registry.npmjs.org/request/1.1.0", + "1.1.1": "http://registry.npmjs.org/request/1.1.1", + "1.2.0": "http://registry.npmjs.org/request/1.2.0", + "1.9.0": "http://registry.npmjs.org/request/1.9.0", + "1.9.1": "http://registry.npmjs.org/request/1.9.1", + "1.9.2": "http://registry.npmjs.org/request/1.9.2", + "1.9.3": "http://registry.npmjs.org/request/1.9.3", + "1.9.5": "http://registry.npmjs.org/request/1.9.5", + "1.9.7": "http://registry.npmjs.org/request/1.9.7", + "1.9.8": "http://registry.npmjs.org/request/1.9.8", + "1.9.9": "http://registry.npmjs.org/request/1.9.9", + "2.0.0": "http://registry.npmjs.org/request/2.0.0", + "2.0.1": "http://registry.npmjs.org/request/2.0.1", + "2.0.2": "http://registry.npmjs.org/request/2.0.2", + "2.0.3": "http://registry.npmjs.org/request/2.0.3", + "2.0.4": "http://registry.npmjs.org/request/2.0.4", + "2.0.5": "http://registry.npmjs.org/request/2.0.5", + "2.1.0": "http://registry.npmjs.org/request/2.1.0", + "2.1.1": "http://registry.npmjs.org/request/2.1.1", + "2.2.0": "http://registry.npmjs.org/request/2.2.0", + "2.2.5": "http://registry.npmjs.org/request/2.2.5", + "2.2.6": "http://registry.npmjs.org/request/2.2.6", + "2.2.9": "http://registry.npmjs.org/request/2.2.9" + }, + "dist": { + "0.10.0": { + "tarball": "http://packages:5984/request/-/request-0.10.0.tgz" + }, + "0.8.3": { + "tarball": "http://packages:5984/request/-/request-0.8.3.tgz" + }, + "0.9.0": { + "tarball": "http://packages:5984/request/-/request-0.9.0.tgz" + }, + "0.9.1": { + "tarball": "http://packages:5984/request/-/request-0.9.1.tgz" + }, + "0.9.5": { + "tarball": "http://packages:5984/request/-/request-0.9.5.tgz" + }, + "1.0.0": { + "shasum": "6e482329b10657461b51db9157f64a2046f635c0", + "tarball": "http://registry.npmjs.org/request/-/request-1.0.0.tgz" + }, + "1.1.0": { + "shasum": "327162dd590a9b4bcb71d70cff1267ef10ff5101", + "tarball": "http://registry.npmjs.org/request/-/request-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "6d6581049397c51e1b0e98eca7bfd29c0c8a4f6f", + "tarball": "http://registry.npmjs.org/request/-/request-1.1.1.tgz" + }, + "1.2.0": { + "shasum": "f4b74ad2edd68c777bd640ffc74737aa0ffe5bba", + "tarball": "http://registry.npmjs.org/request/-/request-1.2.0.tgz" + }, + "1.9.0": { + "shasum": "67758b48da41f4240c6ed50d2bd8ced8157b4bb1", + "tarball": "http://registry.npmjs.org/request/-/request-1.9.0.tgz" + }, + "1.9.1": { + "shasum": "428e8283e87db620cd3303673e62ead2bd7451b8", + "tarball": "http://registry.npmjs.org/request/-/request-1.9.1.tgz" + }, + "1.9.2": { + "shasum": "b1b66f63c5250fc1fc7caeeec53fdfa0b2528c29", + "tarball": "http://registry.npmjs.org/request/-/request-1.9.2.tgz" + }, + "1.9.3": { + "shasum": "7c4b88c1e36ef8f265f1487958c5a2042f13a624", + "tarball": "http://registry.npmjs.org/request/-/request-1.9.3.tgz" + }, + "1.9.5": { + "shasum": "24084f6c377fc2f3368b53be0922bebe5d40afd6", + "tarball": "http://registry.npmjs.org/request/-/request-1.9.5.tgz" + }, + "1.9.7": { + "shasum": "efc79859e5386aeb3f211f63b0d0e549026c7133", + "tarball": "http://registry.npmjs.org/request/-/request-1.9.7.tgz" + }, + "1.9.8": { + "shasum": "2da5138da2851fd5bdb50500aa7eb9e2df2a9c2b", + "tarball": "http://registry.npmjs.org/request/-/request-1.9.8.tgz" + }, + "1.9.9": { + "shasum": "af231fe87e3725a5db46ff74833f3aa0ebfd9151", + "tarball": "http://registry.npmjs.org/request/-/request-1.9.9.tgz" + }, + "2.0.0": { + "shasum": "e8ecdcb12ded03b795aa1de0f44afddbab98f3db", + "tarball": "http://registry.npmjs.org/request/-/request-2.0.0.tgz" + }, + "2.0.1": { + "shasum": "2188893b17b9b0c761d5e53ee0cb76a50e720d89", + "tarball": "http://registry.npmjs.org/request/-/request-2.0.1.tgz" + }, + "2.0.2": { + "shasum": "8fb7985ed54581bb152e8c1c5649ec0f5a10d9b1", + "tarball": "http://registry.npmjs.org/request/-/request-2.0.2.tgz" + }, + "2.0.3": { + "shasum": "ec8d338be3de528ca16a5307d94bbd06298a80cc", + "tarball": "http://registry.npmjs.org/request/-/request-2.0.3.tgz" + }, + "2.0.4": { + "shasum": "7baa221cef8923c65ba74479f7963f1214b02161", + "tarball": "http://registry.npmjs.org/request/-/request-2.0.4.tgz" + }, + "2.0.5": { + "shasum": "a3173897f02aa2f64a7cb5f06b6b931162edaa38", + "tarball": "http://registry.npmjs.org/request/-/request-2.0.5.tgz" + }, + "2.1.0": { + "shasum": "8280cbeaadeee1190e4587b0ad9dea48d8a9e1a3", + "tarball": "http://registry.npmjs.org/request/-/request-2.1.0.tgz" + }, + "2.1.1": { + "shasum": "5570e0c737d656ebd6d1d3c80aa510d3cf86c6fa", + "tarball": "http://registry.npmjs.org/request/-/request-2.1.1.tgz" + }, + "2.2.0": { + "shasum": "cfa3210cd64b76a4d26b8f0cd1ec2d958d2cddc0", + "tarball": "http://registry.npmjs.org/request/-/request-2.2.0.tgz" + }, + "2.2.5": { + "shasum": "da3edd6a5b903563aea1531a6cb61cfe381820b4", + "tarball": "http://registry.npmjs.org/request/-/request-2.2.5.tgz" + }, + "2.2.6": { + "shasum": "87dbd87959d1b85ce07253f9255878f20473d99e", + "tarball": "http://registry.npmjs.org/request/-/request-2.2.6.tgz" + }, + "2.2.9": { + "shasum": "efbf8afbfe7f1e200d483b99752b6c42b404a0f1", + "tarball": "http://registry.npmjs.org/request/-/request-2.2.9.tgz" + } + }, + "url": "http://registry.npmjs.org/request/" + }, + "require": { + "name": "require", + "description": "javascript module management! brings node's require statement to the browser", + "dist-tags": { + "latest": "0.4.6" + }, + "maintainers": [ + { + "name": "marcuswestin", + "email": "narcvs@gmail.com" + } + ], + "time": { + "modified": "2011-08-10T05:06:36.705Z", + "created": "2011-04-19T21:26:16.547Z", + "0.3.1": "2011-04-19T21:26:57.190Z", + "0.3.2": "2011-04-22T03:24:59.941Z", + "0.4.0": "2011-04-22T04:06:08.113Z", + "0.4.2": "2011-05-02T01:29:51.032Z", + "0.4.4": "2011-05-17T03:39:30.685Z", + "0.4.5": "2011-08-07T18:28:43.583Z", + "0.4.6": "2011-08-10T05:06:36.705Z" + }, + "author": { + "name": "Marcus Westin", + "email": "narcvs@gmail.com", + "url": "http://marcuswest.in" + }, + "repository": { + "type": "git", + "url": "git://github.com/marcuswestin/require.git" + }, + "versions": { + "0.3.1": "http://registry.npmjs.org/require/0.3.1", + "0.3.2": "http://registry.npmjs.org/require/0.3.2", + "0.4.0": "http://registry.npmjs.org/require/0.4.0", + "0.4.2": "http://registry.npmjs.org/require/0.4.2", + "0.4.4": "http://registry.npmjs.org/require/0.4.4", + "0.4.5": "http://registry.npmjs.org/require/0.4.5", + "0.4.6": "http://registry.npmjs.org/require/0.4.6" + }, + "dist": { + "0.3.1": { + "shasum": "68336dc2cb719ea0784628e014140a67227a0505", + "tarball": "http://registry.npmjs.org/require/-/require-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "4bd1fe69dd351adc023aba85671f4cda5bc5fabf", + "tarball": "http://registry.npmjs.org/require/-/require-0.3.2.tgz" + }, + "0.4.0": { + "shasum": "d0235c130cc2627fa27e005f6a43add1bde7c8cf", + "tarball": "http://registry.npmjs.org/require/-/require-0.4.0.tgz" + }, + "0.4.2": { + "shasum": "3835fd1bc24ee70e21000a38e0d5b65504d94ad6", + "tarball": "http://registry.npmjs.org/require/-/require-0.4.2.tgz" + }, + "0.4.4": { + "shasum": "019938528738cc55ebd19471306b129e5eb5cfe0", + "tarball": "http://registry.npmjs.org/require/-/require-0.4.4.tgz" + }, + "0.4.5": { + "shasum": "44aba9124f040417214c94b5846c00f2b8178c44", + "tarball": "http://registry.npmjs.org/require/-/require-0.4.5.tgz" + }, + "0.4.6": { + "shasum": "1fc769c1d088b8cd552a64f814749149d870e745", + "tarball": "http://registry.npmjs.org/require/-/require-0.4.6.tgz" + } + }, + "url": "http://registry.npmjs.org/require/" + }, + "require-analyzer": { + "name": "require-analyzer", + "description": "Determine dependencies for a given node.js file, directory tree, or module in code or on the command line", + "dist-tags": { + "latest": "0.4.0-1" + }, + "maintainers": [ + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + }, + { + "name": "marak", + "email": "marak.squires@gmail.com" + }, + { + "name": "avianflu", + "email": "charlie@charlieistheman.com" + } + ], + "time": { + "modified": "2011-11-06T00:18:25.535Z", + "created": "2011-04-25T06:28:07.962Z", + "0.1.0": "2011-04-25T06:28:08.141Z", + "0.1.1": "2011-04-25T11:28:05.654Z", + "0.1.2": "2011-04-25T15:39:52.741Z", + "0.1.3": "2011-04-25T18:59:59.984Z", + "0.1.4": "2011-05-06T22:41:33.261Z", + "0.2.0": "2011-05-23T00:41:23.864Z", + "0.2.1": "2011-05-25T06:02:29.420Z", + "0.2.2": "2011-05-25T07:22:01.832Z", + "0.2.3": "2011-05-25T22:36:26.438Z", + "0.2.4": "2011-05-31T08:33:07.859Z", + "0.2.5": "2011-05-31T13:32:09.942Z", + "0.2.6": "2011-06-01T01:36:08.875Z", + "0.2.7": "2011-06-06T08:17:26.976Z", + "0.2.8": "2011-06-07T10:20:25.257Z", + "0.2.9": "2011-06-08T03:17:07.691Z", + "0.2.10": "2011-06-09T20:31:27.833Z", + "0.2.11": "2011-06-10T19:57:03.458Z", + "0.2.12": "2011-06-15T01:43:37.893Z", + "0.2.13": "2011-09-13T04:21:17.029Z", + "0.3.0": "2011-09-16T04:24:53.722Z", + "0.3.1": "2011-09-16T21:42:25.863Z", + "0.3.3": "2011-09-19T02:59:54.128Z", + "0.3.4": "2011-10-17T15:31:55.595Z", + "0.4.0": "2011-10-22T00:02:01.125Z", + "0.4.0-1": "2011-11-06T00:18:25.535Z" + }, + "author": { + "name": "Charlie Robbins", + "email": "charlie.robbins@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/nodejitsu/require-analyzer.git" + }, + "versions": { + "0.2.6": "http://registry.npmjs.org/require-analyzer/0.2.6", + "0.2.7": "http://registry.npmjs.org/require-analyzer/0.2.7", + "0.2.8": "http://registry.npmjs.org/require-analyzer/0.2.8", + "0.2.9": "http://registry.npmjs.org/require-analyzer/0.2.9", + "0.2.10": "http://registry.npmjs.org/require-analyzer/0.2.10", + "0.2.11": "http://registry.npmjs.org/require-analyzer/0.2.11", + "0.2.12": "http://registry.npmjs.org/require-analyzer/0.2.12", + "0.2.13": "http://registry.npmjs.org/require-analyzer/0.2.13", + "0.3.0": "http://registry.npmjs.org/require-analyzer/0.3.0", + "0.3.1": "http://registry.npmjs.org/require-analyzer/0.3.1", + "0.3.3": "http://registry.npmjs.org/require-analyzer/0.3.3", + "0.3.4": "http://registry.npmjs.org/require-analyzer/0.3.4", + "0.4.0": "http://registry.npmjs.org/require-analyzer/0.4.0", + "0.4.0-1": "http://registry.npmjs.org/require-analyzer/0.4.0-1" + }, + "dist": { + "0.2.6": { + "shasum": "cfeb1c5ded2215c63b4a96672e5cb020f7ebbe79", + "tarball": "http://registry.npmjs.org/require-analyzer/-/require-analyzer-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "d8f3109931e81871e896a48219bbe7c413096e9f", + "tarball": "http://registry.npmjs.org/require-analyzer/-/require-analyzer-0.2.7.tgz" + }, + "0.2.8": { + "shasum": "fa2fbe5010a76139020cb4c36e6e8699f0be5d99", + "tarball": "http://registry.npmjs.org/require-analyzer/-/require-analyzer-0.2.8.tgz" + }, + "0.2.9": { + "shasum": "ecf6396344de3c942cf47922ee6975baea90f460", + "tarball": "http://registry.npmjs.org/require-analyzer/-/require-analyzer-0.2.9.tgz" + }, + "0.2.10": { + "shasum": "3613298183a948d3536d44bb7be5482e808b47a3", + "tarball": "http://registry.npmjs.org/require-analyzer/-/require-analyzer-0.2.10.tgz" + }, + "0.2.11": { + "shasum": "6c7a2bd61a32cd26cfae535b5771e234fc4afa43", + "tarball": "http://registry.npmjs.org/require-analyzer/-/require-analyzer-0.2.11.tgz" + }, + "0.2.12": { + "shasum": "77f2d676b45391627cdf80bec90fde4179db1f61", + "tarball": "http://registry.npmjs.org/require-analyzer/-/require-analyzer-0.2.12.tgz" + }, + "0.2.13": { + "shasum": "b03ea17cd494467639d52042e9663ed19e4382cf", + "tarball": "http://registry.npmjs.org/require-analyzer/-/require-analyzer-0.2.13.tgz" + }, + "0.3.0": { + "shasum": "772a5561515a45690f2c47a375b71d58e6f52948", + "tarball": "http://registry.npmjs.org/require-analyzer/-/require-analyzer-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "0129ca011c708efbd9a2673838983584e5225738", + "tarball": "http://registry.npmjs.org/require-analyzer/-/require-analyzer-0.3.1.tgz" + }, + "0.3.3": { + "shasum": "53f914e782f74eea88fc330a7a14413069bb117d", + "tarball": "http://registry.npmjs.org/require-analyzer/-/require-analyzer-0.3.3.tgz" + }, + "0.3.4": { + "shasum": "be300503681fd6a0006286afb408e1aa994feab4", + "tarball": "http://registry.npmjs.org/require-analyzer/-/require-analyzer-0.3.4.tgz" + }, + "0.4.0": { + "shasum": "ed920754664816fa3e29e2beb4ee46036bdb16d5", + "tarball": "http://registry.npmjs.org/require-analyzer/-/require-analyzer-0.4.0.tgz" + }, + "0.4.0-1": { + "shasum": "6a465146612c9313d2a81e6ee8ddce42e312ea14", + "tarball": "http://registry.npmjs.org/require-analyzer/-/require-analyzer-0.4.0-1.tgz" + } + }, + "url": "http://registry.npmjs.org/require-analyzer/" + }, + "require-kiss": { + "name": "require-kiss", + "description": "Abstracts module.exports for ssjs/browserjs compatibility", + "dist-tags": { + "latest": "1.0.5" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-03-11T05:02:47.218Z", + "created": "2011-03-11T04:42:50.164Z", + "1.0.3": "2011-03-11T04:42:50.390Z", + "1.0.5": "2011-03-11T05:02:47.218Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com", + "url": "http://coolaj86.info" + }, + "repository": { + "type": "git", + "url": "git://github.com/coolaj86/require-kiss-js.git" + }, + "versions": { + "1.0.3": "http://registry.npmjs.org/require-kiss/1.0.3", + "1.0.5": "http://registry.npmjs.org/require-kiss/1.0.5" + }, + "dist": { + "1.0.3": { + "shasum": "5807a5a5c016e6d173e03c6c369a342fc1a0881f", + "tarball": "http://registry.npmjs.org/require-kiss/-/require-kiss-1.0.3.tgz" + }, + "1.0.5": { + "shasum": "b3ef9038141b51b75aeb5c6753d7d4e612f8fa5a", + "tarball": "http://registry.npmjs.org/require-kiss/-/require-kiss-1.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/require-kiss/" + }, + "require-like": { + "name": "require-like", + "description": "Generates require functions that act as if they were operating in a given path.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "felixge", + "email": "felix@debuggable.com" + } + ], + "time": { + "modified": "2011-11-20T13:17:13.179Z", + "created": "2011-06-25T14:12:52.464Z", + "0.0.1": "2011-06-25T14:12:53.086Z", + "0.0.2": "2011-06-25T18:03:47.194Z", + "0.1.0": "2011-07-07T23:12:58.309Z", + "0.1.1": "2011-11-20T13:17:13.179Z" + }, + "author": { + "name": "Felix Geisendörfer", + "email": "felix@debuggable.com", + "url": "http://debuggable.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/felixge/node-require-like.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/require-like/0.0.1", + "0.0.2": "http://registry.npmjs.org/require-like/0.0.2", + "0.1.0": "http://registry.npmjs.org/require-like/0.1.0", + "0.1.1": "http://registry.npmjs.org/require-like/0.1.1" + }, + "dist": { + "0.0.1": { + "shasum": "fccff9cdb5cbd2988b5d558b560c30bd7437741e", + "tarball": "http://registry.npmjs.org/require-like/-/require-like-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "99767fdf7ef8d5194fca1e9966bfef1d56056d40", + "tarball": "http://registry.npmjs.org/require-like/-/require-like-0.0.2.tgz" + }, + "0.1.0": { + "shasum": "596ec20d457266344eb1dfeff2b895ff45a64035", + "tarball": "http://registry.npmjs.org/require-like/-/require-like-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "e2e173950c42d91a70a687f01a5020df98e91af0", + "tarball": "http://registry.npmjs.org/require-like/-/require-like-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/require-like/" + }, + "requireincontext": { + "name": "requireincontext", + "description": "Wrapper to require() js files in a custom context", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "mixu", + "email": "mixu@mixu.net" + } + ], + "time": { + "modified": "2011-08-17T21:52:41.196Z", + "created": "2011-08-17T21:20:41.104Z", + "0.0.1": "2011-08-17T21:20:46.028Z", + "0.0.2": "2011-08-17T21:52:41.196Z" + }, + "author": { + "name": "Mikito Takada", + "email": "mixu@mixu.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/mixu/requireincontext.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/requireincontext/0.0.1", + "0.0.2": "http://registry.npmjs.org/requireincontext/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "a47054a6e05bc7d6d7b7965fd0631ee58f4e72ef", + "tarball": "http://registry.npmjs.org/requireincontext/-/requireincontext-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "4a77c6f7ccbd43e095d9fc6c943e53707e042f41", + "tarball": "http://registry.npmjs.org/requireincontext/-/requireincontext-0.0.2.tgz" + } + }, + "keywords": [ + "require" + ], + "url": "http://registry.npmjs.org/requireincontext/" + }, + "requirejs": { + "name": "requirejs", + "description": "Node adapter for RequireJS, for loading AMD modules. Includes RequireJS optimizer", + "dist-tags": { + "latest": "1.0.2" + }, + "maintainers": [ + { + "name": "jrburke", + "email": "jrburke@gmail.com" + } + ], + "time": { + "modified": "2011-11-22T06:51:57.256Z", + "created": "2011-08-17T06:45:55.997Z", + "0.26.0": "2011-08-17T06:45:57.328Z", + "0.27.0": "2011-10-03T06:00:10.438Z", + "0.27.1": "2011-10-08T00:01:26.875Z", + "1.0.0": "2011-10-18T22:34:57.778Z", + "1.0.1": "2011-11-04T03:06:16.959Z", + "1.0.2": "2011-11-22T06:51:57.256Z" + }, + "author": { + "name": "James Burke", + "email": "jrburke@gmail.com", + "url": "http://github.com/jrburke" + }, + "users": { + "lancehunt": true + }, + "versions": { + "0.26.0": "http://registry.npmjs.org/requirejs/0.26.0", + "0.27.0": "http://registry.npmjs.org/requirejs/0.27.0", + "0.27.1": "http://registry.npmjs.org/requirejs/0.27.1", + "1.0.0": "http://registry.npmjs.org/requirejs/1.0.0", + "1.0.1": "http://registry.npmjs.org/requirejs/1.0.1", + "1.0.2": "http://registry.npmjs.org/requirejs/1.0.2" + }, + "dist": { + "0.26.0": { + "shasum": "e324bb76674aaa515eaaeab76461908ef95ef59e", + "tarball": "http://registry.npmjs.org/requirejs/-/requirejs-0.26.0.tgz" + }, + "0.27.0": { + "shasum": "b4c3794f42f18e80cdce9d81ab0bceaffb01416b", + "tarball": "http://registry.npmjs.org/requirejs/-/requirejs-0.27.0.tgz" + }, + "0.27.1": { + "shasum": "4822d3e61caa973481a0bee2e4e5accfc6ae4edc", + "tarball": "http://registry.npmjs.org/requirejs/-/requirejs-0.27.1.tgz" + }, + "1.0.0": { + "shasum": "98fbc90753a8f6aac0355ce0e70ca81cbfc1ab1b", + "tarball": "http://registry.npmjs.org/requirejs/-/requirejs-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "dbef5ebe1d48855a109d2fd3f6cfb3d9a5002b9c", + "tarball": "http://registry.npmjs.org/requirejs/-/requirejs-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "edaf3907dbbcad08082c180ed1e6cbf0a516a725", + "tarball": "http://registry.npmjs.org/requirejs/-/requirejs-1.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/requirejs/" + }, + "reqwest": { + "name": "reqwest", + "description": "A wrapper for asynchronous http requests", + "dist-tags": { + "latest": "0.3.3" + }, + "maintainers": [ + { + "name": "ded", + "email": "polvero@gmail.com" + } + ], + "time": { + "modified": "2011-10-29T03:57:18.010Z", + "created": "2011-04-09T23:40:42.350Z", + "0.0.1": "2011-04-09T23:40:42.715Z", + "0.0.2": "2011-04-14T00:01:06.744Z", + "0.0.3": "2011-04-14T18:34:01.474Z", + "0.0.4": "2011-04-17T18:01:24.457Z", + "0.0.5": "2011-04-18T20:26:45.208Z", + "0.0.6": "2011-04-26T22:25:50.241Z", + "0.0.7": "2011-04-26T22:43:36.427Z", + "0.0.8": "2011-04-27T01:13:16.281Z", + "0.0.9": "2011-04-27T05:04:41.440Z", + "0.1.0": "2011-05-10T05:28:31.366Z", + "0.1.1": "2011-05-10T06:54:25.747Z", + "0.1.2": "2011-05-17T18:39:10.043Z", + "0.1.3": "2011-05-23T20:51:32.408Z", + "0.1.4": "2011-05-24T21:50:37.664Z", + "0.1.5": "2011-05-26T19:44:02.214Z", + "0.1.6": "2011-05-26T21:55:51.740Z", + "0.1.7": "2011-06-06T19:10:38.504Z", + "0.1.8": "2011-06-06T19:13:22.040Z", + "0.1.9": "2011-06-21T18:57:15.035Z", + "0.2.0": "2011-07-20T18:54:31.842Z", + "0.2.1": "2011-08-21T15:53:06.157Z", + "0.2.2": "2011-08-23T22:08:49.650Z", + "0.2.3": "2011-08-25T00:03:30.578Z", + "0.2.4": "2011-08-30T18:33:47.523Z", + "0.2.5": "2011-09-01T20:22:34.372Z", + "0.2.7": "2011-09-01T21:22:46.493Z", + "0.2.8": "2011-09-12T19:03:34.780Z", + "0.3.0": "2011-09-13T05:38:32.571Z", + "0.3.1": "2011-09-26T20:27:49.209Z", + "0.3.2": "2011-10-17T06:13:41.036Z", + "0.3.3": "2011-10-29T03:57:18.010Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/ded/reqwest.git" + }, + "author": { + "name": "Dustin Diaz", + "email": "dustin@dustindiaz.com", + "url": "http://dustindiaz.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/reqwest/0.0.1", + "0.0.2": "http://registry.npmjs.org/reqwest/0.0.2", + "0.0.3": "http://registry.npmjs.org/reqwest/0.0.3", + "0.0.4": "http://registry.npmjs.org/reqwest/0.0.4", + "0.0.5": "http://registry.npmjs.org/reqwest/0.0.5", + "0.0.6": "http://registry.npmjs.org/reqwest/0.0.6", + "0.0.7": "http://registry.npmjs.org/reqwest/0.0.7", + "0.0.8": "http://registry.npmjs.org/reqwest/0.0.8", + "0.0.9": "http://registry.npmjs.org/reqwest/0.0.9", + "0.1.0": "http://registry.npmjs.org/reqwest/0.1.0", + "0.1.1": "http://registry.npmjs.org/reqwest/0.1.1", + "0.1.2": "http://registry.npmjs.org/reqwest/0.1.2", + "0.1.3": "http://registry.npmjs.org/reqwest/0.1.3", + "0.1.4": "http://registry.npmjs.org/reqwest/0.1.4", + "0.1.5": "http://registry.npmjs.org/reqwest/0.1.5", + "0.1.6": "http://registry.npmjs.org/reqwest/0.1.6", + "0.1.7": "http://registry.npmjs.org/reqwest/0.1.7", + "0.1.8": "http://registry.npmjs.org/reqwest/0.1.8", + "0.1.9": "http://registry.npmjs.org/reqwest/0.1.9", + "0.2.0": "http://registry.npmjs.org/reqwest/0.2.0", + "0.2.1": "http://registry.npmjs.org/reqwest/0.2.1", + "0.2.2": "http://registry.npmjs.org/reqwest/0.2.2", + "0.2.3": "http://registry.npmjs.org/reqwest/0.2.3", + "0.2.4": "http://registry.npmjs.org/reqwest/0.2.4", + "0.2.5": "http://registry.npmjs.org/reqwest/0.2.5", + "0.2.7": "http://registry.npmjs.org/reqwest/0.2.7", + "0.2.8": "http://registry.npmjs.org/reqwest/0.2.8", + "0.3.0": "http://registry.npmjs.org/reqwest/0.3.0", + "0.3.1": "http://registry.npmjs.org/reqwest/0.3.1", + "0.3.2": "http://registry.npmjs.org/reqwest/0.3.2", + "0.3.3": "http://registry.npmjs.org/reqwest/0.3.3" + }, + "dist": { + "0.0.1": { + "shasum": "496d98ba0e3f24c5d53d42f3dab0027aefced21e", + "tarball": "http://registry.npmjs.org/reqwest/-/reqwest-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "604d1b663d6edeeab330fef8586f1e773e4e0e77", + "tarball": "http://registry.npmjs.org/reqwest/-/reqwest-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "0248e5b67cd69cd2f94a6fa43db3aed8a644cbd6", + "tarball": "http://registry.npmjs.org/reqwest/-/reqwest-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "20eac5955b019f17d37f0f57276421c015115dbf", + "tarball": "http://registry.npmjs.org/reqwest/-/reqwest-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "0b59b363c535b6c90dbc0f4c7a0137cce5a5658c", + "tarball": "http://registry.npmjs.org/reqwest/-/reqwest-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "4330882663519f2841f047d6e84b4a82a2c9cc88", + "tarball": "http://registry.npmjs.org/reqwest/-/reqwest-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "102eaafbadf3e83a0dc6a5fde440885e5b45fd7d", + "tarball": "http://registry.npmjs.org/reqwest/-/reqwest-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "9917a4ede20c08eb00b6a353f71dfaff783c069c", + "tarball": "http://registry.npmjs.org/reqwest/-/reqwest-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "5c36ce39400cc003f234e4b2dc5bf4fa67651034", + "tarball": "http://registry.npmjs.org/reqwest/-/reqwest-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "874f7acda214a2ff263446b5b35edfb1c84a1ec0", + "tarball": "http://registry.npmjs.org/reqwest/-/reqwest-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "9772e549cc7177d279e960c4d70e74faaf84a372", + "tarball": "http://registry.npmjs.org/reqwest/-/reqwest-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "47b1b00693cdc9b67da483f66b003faa91025039", + "tarball": "http://registry.npmjs.org/reqwest/-/reqwest-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "7709b439b681774997e16451b1c9e9aace52b927", + "tarball": "http://registry.npmjs.org/reqwest/-/reqwest-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "9066f1a0e62ff3cd2fda82a4a338dbe536623204", + "tarball": "http://registry.npmjs.org/reqwest/-/reqwest-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "0c08d4fd379303735ad845ca9399a119066c622b", + "tarball": "http://registry.npmjs.org/reqwest/-/reqwest-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "b9538cc58b4428915d8a06e35bab72133673efef", + "tarball": "http://registry.npmjs.org/reqwest/-/reqwest-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "97b9dc0c9c33fa6de2f0a2194ae91ad5defef4db", + "tarball": "http://registry.npmjs.org/reqwest/-/reqwest-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "1b9a8f467810f8f169ff9135fda8e7ee642c6453", + "tarball": "http://registry.npmjs.org/reqwest/-/reqwest-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "8b227e65a9227e50df42a3953741b2acdb137e02", + "tarball": "http://registry.npmjs.org/reqwest/-/reqwest-0.1.9.tgz" + }, + "0.2.0": { + "shasum": "54050707ccdb2dc8ed9bbe1c0debb620f569ca7e", + "tarball": "http://registry.npmjs.org/reqwest/-/reqwest-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "f6a4bc1fd85172fae2a8a229643e34472abcf3ad", + "tarball": "http://registry.npmjs.org/reqwest/-/reqwest-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "0fba839105e3863b046a32f80e72d4477fcc86ba", + "tarball": "http://registry.npmjs.org/reqwest/-/reqwest-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "590cfe47b8e40c4b94118466c2cad15d5a559452", + "tarball": "http://registry.npmjs.org/reqwest/-/reqwest-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "afd155de22e868cd62c18b3d69ec482b879cb396", + "tarball": "http://registry.npmjs.org/reqwest/-/reqwest-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "de2675ecaa1d1991ee3419dfd7a72802c1447a06", + "tarball": "http://registry.npmjs.org/reqwest/-/reqwest-0.2.5.tgz" + }, + "0.2.7": { + "shasum": "38ebc04c87f51d01c0619eb069568ca7d100d5c2", + "tarball": "http://registry.npmjs.org/reqwest/-/reqwest-0.2.7.tgz" + }, + "0.2.8": { + "shasum": "680c2bfb08890f6b4616d46f7317c663f0b7c8e4", + "tarball": "http://registry.npmjs.org/reqwest/-/reqwest-0.2.8.tgz" + }, + "0.3.0": { + "shasum": "80e4d7c394321afb10235eab7e5f44569fdd80ce", + "tarball": "http://registry.npmjs.org/reqwest/-/reqwest-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "d6e3136a025d718dd61508322426782d7306b13e", + "tarball": "http://registry.npmjs.org/reqwest/-/reqwest-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "075cff0aede28d27e4a8f218a808e1a795caa4f0", + "tarball": "http://registry.npmjs.org/reqwest/-/reqwest-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "d11d66ad098a8057c009463e3af1ea9d10ef73a8", + "tarball": "http://registry.npmjs.org/reqwest/-/reqwest-0.3.3.tgz" + } + }, + "keywords": [ + "ender", + "ajax", + "xhr", + "connection", + "web 2.0", + "async" + ], + "url": "http://registry.npmjs.org/reqwest/" + }, + "resig-class": { + "name": "resig-class", + "description": "http://ejohn.org/blog/simple-javascript-inheritance/", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "mattinsler", + "email": "matt.insler@gmail.com" + } + ], + "time": { + "modified": "2011-05-31T04:01:56.051Z", + "created": "2011-05-31T04:01:55.799Z", + "0.1.0": "2011-05-31T04:01:56.051Z" + }, + "author": { + "name": "Matt Insler", + "email": "matt.insler@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mattinsler/resig-class.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/resig-class/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "75d2a5dd9a6143d9ce61c0bc33a2b2fa848b3e45", + "tarball": "http://registry.npmjs.org/resig-class/-/resig-class-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/resig-class/" + }, + "resistance": { + "name": "resistance", + "description": "a flow controller", + "dist-tags": { + "latest": "1.3.1" + }, + "maintainers": [ + { + "name": "jga", + "email": "me@jga.me" + } + ], + "time": { + "modified": "2011-12-11T17:51:08.848Z", + "created": "2011-06-09T15:41:13.292Z", + "1.0.0": "2011-06-09T15:41:13.767Z", + "1.0.1": "2011-06-30T02:30:30.261Z", + "1.0.2": "2011-07-13T14:48:23.028Z", + "1.1.0": "2011-07-24T15:08:42.462Z", + "1.2.0": "2011-10-12T01:27:07.114Z", + "1.3.0": "2011-11-07T16:24:11.673Z", + "1.3.1": "2011-12-11T17:51:08.848Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/jgallen23/resistance.git" + }, + "author": { + "name": "Greg Allen", + "email": "@jgaui", + "url": "http://jga.me" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/resistance/1.0.0", + "1.0.1": "http://registry.npmjs.org/resistance/1.0.1", + "1.0.2": "http://registry.npmjs.org/resistance/1.0.2", + "1.1.0": "http://registry.npmjs.org/resistance/1.1.0", + "1.2.0": "http://registry.npmjs.org/resistance/1.2.0", + "1.3.0": "http://registry.npmjs.org/resistance/1.3.0", + "1.3.1": "http://registry.npmjs.org/resistance/1.3.1" + }, + "dist": { + "1.0.0": { + "shasum": "5f07832686eecbeeecd8954615d2dd6c4ff83082", + "tarball": "http://registry.npmjs.org/resistance/-/resistance-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "16d4fb2e256450a13d2984814b913ead6a4f3025", + "tarball": "http://registry.npmjs.org/resistance/-/resistance-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "c7ff805557f7c076e503c104c489d310eaf190d6", + "tarball": "http://registry.npmjs.org/resistance/-/resistance-1.0.2.tgz" + }, + "1.1.0": { + "shasum": "7e46109fc42c128150a20851ba3cc657ab1daeb8", + "tarball": "http://registry.npmjs.org/resistance/-/resistance-1.1.0.tgz" + }, + "1.2.0": { + "shasum": "cb4c7756361a57300b48c8d56748e69a30e598a2", + "tarball": "http://registry.npmjs.org/resistance/-/resistance-1.2.0.tgz" + }, + "1.3.0": { + "shasum": "9649fc60fbfbff46476f3fc73e523f8d134fc949", + "tarball": "http://registry.npmjs.org/resistance/-/resistance-1.3.0.tgz" + }, + "1.3.1": { + "shasum": "067028d21f72ff662feff8fba440307829fae39b", + "tarball": "http://registry.npmjs.org/resistance/-/resistance-1.3.1.tgz" + } + }, + "keywords": [ + "ender", + "flow" + ], + "url": "http://registry.npmjs.org/resistance/" + }, + "resmin": { + "name": "resmin", + "description": "All-in-one compressor/merger/minifier middleware for connect/express", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "mekwall", + "email": "marcus.ekwall@gmail.com" + } + ], + "time": { + "modified": "2011-09-25T12:51:26.922Z", + "created": "2011-07-04T20:33:00.114Z", + "0.0.2": "2011-07-04T20:33:00.745Z", + "0.0.3": "2011-07-06T20:31:52.461Z", + "0.0.4": "2011-07-13T08:02:58.501Z", + "0.0.5": "2011-07-14T23:02:04.383Z", + "0.0.5-1": "2011-07-14T23:55:56.850Z", + "0.0.5-2": "2011-08-29T07:25:53.724Z", + "0.0.6-1": "2011-09-12T21:19:01.544Z", + "0.0.6-2": "2011-09-19T21:36:32.513Z", + "0.1.0": "2011-09-25T12:51:26.922Z" + }, + "author": { + "name": "Marcus Ekwall", + "email": "marcus.ekwall@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mekwall/node-resmin.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/resmin/0.0.2", + "0.0.3": "http://registry.npmjs.org/resmin/0.0.3", + "0.0.4": "http://registry.npmjs.org/resmin/0.0.4", + "0.0.5": "http://registry.npmjs.org/resmin/0.0.5", + "0.0.5-1": "http://registry.npmjs.org/resmin/0.0.5-1", + "0.0.5-2": "http://registry.npmjs.org/resmin/0.0.5-2", + "0.0.6-1": "http://registry.npmjs.org/resmin/0.0.6-1", + "0.0.6-2": "http://registry.npmjs.org/resmin/0.0.6-2", + "0.1.0": "http://registry.npmjs.org/resmin/0.1.0" + }, + "dist": { + "0.0.2": { + "shasum": "e04d2135707e15870b040cbd9f4a306533d8423c", + "tarball": "http://registry.npmjs.org/resmin/-/resmin-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "3a3a9e6400b8d15e2740e1b74b759e8878cec4d9", + "tarball": "http://registry.npmjs.org/resmin/-/resmin-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "27d90aaebee1cd260228d750a71af31f73a5f8a8", + "tarball": "http://registry.npmjs.org/resmin/-/resmin-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "e03df0d22a572ef2d85c775f9a22248ba9ff09c5", + "tarball": "http://registry.npmjs.org/resmin/-/resmin-0.0.5.tgz" + }, + "0.0.5-1": { + "shasum": "9f8b2df10dc2b88578ced972d726d1843d4a1c05", + "tarball": "http://registry.npmjs.org/resmin/-/resmin-0.0.5-1.tgz" + }, + "0.0.5-2": { + "shasum": "5a65a771ee7829d1831f1ad3b3e7a1daafc2e727", + "tarball": "http://registry.npmjs.org/resmin/-/resmin-0.0.5-2.tgz" + }, + "0.0.6-1": { + "shasum": "c72db7937a01e8d7be9ca7f25e06ecbe9d73b169", + "tarball": "http://registry.npmjs.org/resmin/-/resmin-0.0.6-1.tgz" + }, + "0.0.6-2": { + "shasum": "d9215f70ff0d5b29fa7d4b9d6524693588bce78f", + "tarball": "http://registry.npmjs.org/resmin/-/resmin-0.0.6-2.tgz" + }, + "0.1.0": { + "shasum": "d132eb17f81aba8e6456a7678faad20cbdb518f6", + "tarball": "http://registry.npmjs.org/resmin/-/resmin-0.1.0.tgz" + } + }, + "keywords": [ + "minifier", + "minify", + "compressor", + "resource manager", + "uglify" + ], + "url": "http://registry.npmjs.org/resmin/" + }, + "resolve": { + "name": "resolve", + "description": "A more hookable require.resolve() implementation", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-10-31T03:52:06.706Z", + "created": "2011-06-18T10:12:44.109Z", + "0.0.0": "2011-06-18T10:12:44.853Z", + "0.0.1": "2011-06-18T21:31:40.192Z", + "0.0.2": "2011-06-19T02:09:52.813Z", + "0.0.3": "2011-06-20T11:21:37.073Z", + "0.0.4": "2011-06-21T01:53:52.588Z", + "0.1.0": "2011-10-03T10:54:49.523Z", + "0.1.2": "2011-10-31T03:52:06.706Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-resolve.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/resolve/0.0.0", + "0.0.1": "http://registry.npmjs.org/resolve/0.0.1", + "0.0.2": "http://registry.npmjs.org/resolve/0.0.2", + "0.0.3": "http://registry.npmjs.org/resolve/0.0.3", + "0.0.4": "http://registry.npmjs.org/resolve/0.0.4", + "0.1.0": "http://registry.npmjs.org/resolve/0.1.0", + "0.1.2": "http://registry.npmjs.org/resolve/0.1.2" + }, + "dist": { + "0.0.0": { + "shasum": "9a74e26be2ea4fb18960236f1448b0e38bcc93e5", + "tarball": "http://registry.npmjs.org/resolve/-/resolve-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "d7188e3ae59196f3556cd4cfcedf7a9b12fb55e9", + "tarball": "http://registry.npmjs.org/resolve/-/resolve-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "9c6835475096251f8b2e292ddd45df2974c64162", + "tarball": "http://registry.npmjs.org/resolve/-/resolve-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "8212502b729a63fe8dea0af1920a58538b161742", + "tarball": "http://registry.npmjs.org/resolve/-/resolve-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "b3f7d9c3b46a0f512984940a4b23f30176dda95d", + "tarball": "http://registry.npmjs.org/resolve/-/resolve-0.0.4.tgz" + }, + "0.1.0": { + "shasum": "de35cfc7e7048e566f99056ad0b06d7cce8d49cb", + "tarball": "http://registry.npmjs.org/resolve/-/resolve-0.1.0.tgz" + }, + "0.1.2": { + "shasum": "37eaa50a0b586adac455b9fa6dc45217e6b002e7", + "tarball": "http://registry.npmjs.org/resolve/-/resolve-0.1.2.tgz" + } + }, + "keywords": [ + "resolve", + "require", + "node", + "module" + ], + "url": "http://registry.npmjs.org/resolve/" + }, + "resource": { + "name": "resource", + "description": "A RESTful API generator", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "teh_senaus", + "email": "sean@sdmworld.co.uk" + } + ], + "time": { + "modified": "2011-09-26T21:53:57.926Z", + "created": "2011-09-26T21:53:57.416Z", + "0.1.0": "2011-09-26T21:53:57.926Z" + }, + "author": { + "name": "Sean Micklethwaite", + "email": "sean@sdmworld.co.uk", + "url": "sdmworld.co.uk" + }, + "repository": { + "url": "" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/resource/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "f769dc00b39b0546f6ae8c0d29253df5d635b689", + "tarball": "http://registry.npmjs.org/resource/-/resource-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/resource/" + }, + "resource-router": { + "name": "resource-router", + "description": "A connect-compatible resource-orinted router for building RESTful applications", + "dist-tags": { + "latest": "0.3.2" + }, + "maintainers": [ + { + "name": "s3u", + "email": "subbu@subbu.org" + } + ], + "author": { + "name": "Subbu Allamaraju", + "email": "subbu@subbu.org", + "url": "http://www.subbu.org" + }, + "time": { + "modified": "2011-02-23T16:56:30.348Z", + "created": "2011-02-23T16:56:30.348Z", + "0.1.0": "2011-02-23T16:56:30.348Z", + "0.2.0": "2011-02-23T16:56:30.348Z", + "0.2.1": "2011-02-23T16:56:30.348Z", + "0.3.0": "2011-02-23T16:56:30.348Z", + "0.3.1": "2011-02-23T16:56:30.348Z", + "0.3.2": "2011-02-23T16:56:30.348Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/resource-router/0.1.0", + "0.2.0": "http://registry.npmjs.org/resource-router/0.2.0", + "0.2.1": "http://registry.npmjs.org/resource-router/0.2.1", + "0.3.0": "http://registry.npmjs.org/resource-router/0.3.0", + "0.3.1": "http://registry.npmjs.org/resource-router/0.3.1", + "0.3.2": "http://registry.npmjs.org/resource-router/0.3.2" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/resource-router/-/resource-router-0.1.0.tgz" + }, + "0.2.0": { + "tarball": "http://registry.npmjs.org/resource-router/-/resource-router-0.2.0.tgz" + }, + "0.2.1": { + "tarball": "http://registry.npmjs.org/resource-router/-/resource-router-0.2.1.tgz" + }, + "0.3.0": { + "tarball": "http://registry.npmjs.org/resource-router/-/resource-router-0.3.0.tgz" + }, + "0.3.1": { + "tarball": "http://registry.npmjs.org/resource-router/-/resource-router-0.3.1.tgz" + }, + "0.3.2": { + "tarball": "http://registry.npmjs.org/resource-router/-/resource-router-0.3.2.tgz" + } + }, + "keywords": [ + "framework", + "rest", + "resource", + "restful" + ], + "url": "http://registry.npmjs.org/resource-router/" + }, + "resourceful": { + "name": "resourceful", + "description": "A storage agnostic resource-oriented ODM for building prototypical models with validation and sanitization.", + "dist-tags": { + "latest": "0.1.4", + "stable": "0.1.4" + }, + "maintainers": [ + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + }, + { + "name": "fedor.indutny", + "email": "fedor.indutny@gmail.com" + } + ], + "time": { + "modified": "2011-12-03T07:18:59.307Z", + "created": "2011-11-09T15:46:09.295Z", + "0.1.0": "2011-11-09T15:46:10.833Z", + "0.1.1": "2011-11-15T16:57:36.943Z", + "0.1.2": "2011-11-15T17:05:30.625Z", + "0.1.3": "2011-11-17T17:30:14.795Z", + "0.1.4": "2011-11-18T16:38:57.353Z" + }, + "author": { + "name": "Charlie Robbins", + "email": "charlie@nodejitsu.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/flatiron/resourceful.git" + }, + "users": { + "wojohowitz": true + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/resourceful/0.1.0", + "0.1.1": "http://registry.npmjs.org/resourceful/0.1.1", + "0.1.2": "http://registry.npmjs.org/resourceful/0.1.2", + "0.1.3": "http://registry.npmjs.org/resourceful/0.1.3", + "0.1.4": "http://registry.npmjs.org/resourceful/0.1.4" + }, + "dist": { + "0.1.0": { + "shasum": "2c76b93f2ea03a8bc57494971997d5b0b633f3d8", + "tarball": "http://registry.npmjs.org/resourceful/-/resourceful-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "a15f2c49518837132590812dbc123f550d7ec56b", + "tarball": "http://registry.npmjs.org/resourceful/-/resourceful-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "7172e0f448abee903b069ac693771d2c657d030a", + "tarball": "http://registry.npmjs.org/resourceful/-/resourceful-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "643d5db509dae4a58b54aa04eae6779306be1ddd", + "tarball": "http://registry.npmjs.org/resourceful/-/resourceful-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "c606e14b2c3c5aaf11d6dac7b3617ed5603bd189", + "tarball": "http://registry.npmjs.org/resourceful/-/resourceful-0.1.4.tgz" + } + }, + "keywords": [ + "ODM", + "database", + "couchdb", + "model", + "resource" + ], + "url": "http://registry.npmjs.org/resourceful/" + }, + "resourceful-riak": { + "name": "resourceful-riak", + "description": "Riak engine to the resourceful model framework", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "kesla", + "email": "david.bjorklund@gmail.com" + } + ], + "time": { + "modified": "2011-12-01T14:01:46.046Z", + "created": "2011-11-22T14:30:20.010Z", + "0.0.1": "2011-11-22T14:30:21.592Z", + "0.0.2": "2011-11-28T14:45:51.016Z", + "0.0.3": "2011-11-29T13:48:58.405Z", + "0.0.4": "2011-11-29T18:07:55.576Z", + "0.0.5": "2011-12-01T14:01:46.046Z" + }, + "author": { + "name": "David Björklund", + "email": "david.bjorklund@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/admazely/resourceful-riak.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/resourceful-riak/0.0.1", + "0.0.2": "http://registry.npmjs.org/resourceful-riak/0.0.2", + "0.0.3": "http://registry.npmjs.org/resourceful-riak/0.0.3", + "0.0.4": "http://registry.npmjs.org/resourceful-riak/0.0.4", + "0.0.5": "http://registry.npmjs.org/resourceful-riak/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "16655b610ad38913e3c49c6f39dc837cb6340715", + "tarball": "http://registry.npmjs.org/resourceful-riak/-/resourceful-riak-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "3140c023e3216547c9ed859525672d43b2d542e9", + "tarball": "http://registry.npmjs.org/resourceful-riak/-/resourceful-riak-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "5a3b751954a1867857a47c2320dbdcdef5cb5da4", + "tarball": "http://registry.npmjs.org/resourceful-riak/-/resourceful-riak-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "e049a177cdc95e0b09cee30627d923dc0094aa7a", + "tarball": "http://registry.npmjs.org/resourceful-riak/-/resourceful-riak-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "806ef86e7a421d42f10607c0e83281d0e42124c6", + "tarball": "http://registry.npmjs.org/resourceful-riak/-/resourceful-riak-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/resourceful-riak/" + }, + "resourcer": { + "name": "resourcer", + "description": "resource-oriented object-relational mapper for document databases", + "dist-tags": { + "latest": "0.1.0-pre" + }, + "maintainers": [ + { + "name": "cloudhead", + "email": "self@cloudhead.net" + } + ], + "author": { + "name": "Alexis Sellier", + "email": "self@cloudhead.io" + }, + "versions": { + "0.1.0-pre": "http://registry.npmjs.org/resourcer/0.1.0-pre" + }, + "dist": { + "0.1.0-pre": { + "tarball": "http://registry.npmjs.org/resourcer/-/resourcer-0.1.0-pre.tgz" + } + }, + "keywords": [ + "ORM", + "database", + "couchdb", + "model", + "resource" + ], + "url": "http://registry.npmjs.org/resourcer/" + }, + "response": { + "name": "response", + "description": "beefs up and extends node's http.ServerResponse object", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "marak", + "email": "marak.squires@gmail.com" + } + ], + "author": { + "name": "Marak Squires", + "email": "marak.squires@gmail.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/marak/response.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/response/0.1.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/response/-/response-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/response/" + }, + "resque": { + "name": "resque", + "description": "resque (a redis-backed work queue) for node", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "jbr", + "email": "npm@jacobrothstein.com" + } + ], + "time": { + "modified": "2011-02-14T00:01:18.167Z", + "created": "2011-02-14T00:01:18.167Z", + "0.0.1": "2011-02-14T00:01:18.167Z", + "0.0.2": "2011-02-14T00:01:18.167Z", + "0.0.3": "2011-02-14T00:01:18.167Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/resque/0.0.1", + "0.0.2": "http://registry.npmjs.org/resque/0.0.2", + "0.0.3": "http://registry.npmjs.org/resque/0.0.3" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/resque/-/resque-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/resque/-/resque-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/resque/-/resque-0.0.3.tgz" + } + }, + "keywords": [ + "redis", + "resque", + "worker", + "queue" + ], + "url": "http://registry.npmjs.org/resque/" + }, + "rest": { + "name": "rest", + "description": "A restful router", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "raynos", + "email": "raynos2@gmail.com" + } + ], + "time": { + "modified": "2011-10-19T17:31:40.919Z", + "created": "2011-10-19T17:31:39.049Z", + "0.0.1": "2011-10-19T17:31:40.919Z" + }, + "author": { + "name": "Jake Verbaten", + "email": "raynos2@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Raynos/rest.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/rest/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "9172f111d3b48ce0d0b6ad0c34e9b693014afb72", + "tarball": "http://registry.npmjs.org/rest/-/rest-0.0.1.tgz" + } + }, + "keywords": [ + "rest", + "router", + "arch" + ], + "url": "http://registry.npmjs.org/rest/" + }, + "rest-in-node": { + "name": "rest-in-node", + "description": "An HTTP client library for node.js", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "ilkkah", + "email": "ilkkah@gmail.com" + } + ], + "time": { + "modified": "2011-06-26T03:26:57.228Z", + "created": "2011-06-26T03:26:56.504Z", + "0.1.0": "2011-06-26T03:26:57.228Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/rest-in-node/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "ff7e9eb1d524cc435635f0ed517186b7f550df32", + "tarball": "http://registry.npmjs.org/rest-in-node/-/rest-in-node-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/rest-in-node/" + }, + "rest-mongo": { + "name": "rest-mongo", + "description": "A JS ORM for both server and browser providing Rest server connect middleware.", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "francois", + "email": "francois@2metz.fr" + } + ], + "time": { + "modified": "2011-02-14T09:27:26.587Z", + "created": "2011-02-14T09:27:26.127Z", + "0.1.2": "2011-02-14T09:27:26.587Z" + }, + "repository": { + "type": "git", + "url": "http://github.com/AF83/rest-mongo.git" + }, + "versions": { + "0.1.2": "http://registry.npmjs.org/rest-mongo/0.1.2" + }, + "dist": { + "0.1.2": { + "shasum": "a37c9fb92eb136964fe3b8c0d608c22d13916bfd", + "tarball": "http://registry.npmjs.org/rest-mongo/-/rest-mongo-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/rest-mongo/" + }, + "rest.node": { + "name": "rest.node", + "description": "Base class to quickly create REST clients", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "mattinsler", + "email": "matt.insler@gmail.com" + } + ], + "time": { + "modified": "2011-09-07T03:29:10.769Z", + "created": "2011-09-07T03:29:07.991Z", + "0.1.0": "2011-09-07T03:29:10.769Z" + }, + "author": { + "name": "Matt Insler", + "email": "matt.insler@gmail.com", + "url": "www.mattinsler.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mattinsler/rest.node.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/rest.node/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "69f51a1e214c8d6ea88914c72023c4d8004670d9", + "tarball": "http://registry.npmjs.org/rest.node/-/rest.node-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/rest.node/" + }, + "restalytics": { + "name": "restalytics", + "description": "A server-side agent for RESTalytics", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "amir", + "email": "a@unoc.net" + } + ], + "time": { + "modified": "2011-08-28T22:49:07.192Z", + "created": "2011-08-28T11:51:50.117Z", + "0.0.1": "2011-08-28T11:51:51.379Z", + "0.0.2": "2011-08-28T12:01:01.137Z", + "0.0.3": "2011-08-28T22:17:31.228Z", + "0.0.4": "2011-08-28T22:32:19.204Z", + "0.0.5": "2011-08-28T22:49:07.192Z" + }, + "author": { + "name": "Amir Malik", + "url": "http://amir.unoc.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/ammmir/node-restalytics.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/restalytics/0.0.1", + "0.0.2": "http://registry.npmjs.org/restalytics/0.0.2", + "0.0.3": "http://registry.npmjs.org/restalytics/0.0.3", + "0.0.4": "http://registry.npmjs.org/restalytics/0.0.4", + "0.0.5": "http://registry.npmjs.org/restalytics/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "4e34e0c7ae23bd0f4510c3a3124a3f615a738411", + "tarball": "http://registry.npmjs.org/restalytics/-/restalytics-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "0dc75c639d36703d6b808909ac7531606039ce42", + "tarball": "http://registry.npmjs.org/restalytics/-/restalytics-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "9b97511ed03019c7540b736c304602ed275fd2c5", + "tarball": "http://registry.npmjs.org/restalytics/-/restalytics-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "a114bdc802960ae1cd438130ce87624198736337", + "tarball": "http://registry.npmjs.org/restalytics/-/restalytics-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "71b3b58c1decf694301a98f42792ff268bbf9afc", + "tarball": "http://registry.npmjs.org/restalytics/-/restalytics-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/restalytics/" + }, + "restarter": { + "name": "restarter", + "description": "Start/stop daemon", + "dist-tags": { + "latest": "1.1.17" + }, + "maintainers": [ + { + "name": "deanmao", + "email": "deanmao@gmail.com" + }, + { + "name": "austin.chau", + "email": "austin.chau@gmail.com" + } + ], + "time": { + "modified": "2011-03-28T23:45:33.631Z", + "created": "2011-01-28T18:14:49.272Z", + "1.0.0": "2011-01-28T18:14:49.587Z", + "1.0.1": "2011-01-28T18:15:08.464Z", + "1.0.2": "2011-01-28T21:52:44.654Z", + "1.0.3": "2011-03-04T01:38:11.592Z", + "1.0.5": "2011-03-04T02:07:15.797Z", + "1.0.6": "2011-03-05T11:09:56.613Z", + "1.0.8": "2011-03-11T02:03:52.431Z", + "1.0.9": "2011-03-11T02:09:44.080Z", + "1.1.0": "2011-03-24T08:04:45.262Z", + "1.1.1": "2011-03-24T08:10:19.042Z", + "1.1.2": "2011-03-24T08:36:17.605Z", + "1.1.3": "2011-03-24T10:39:22.324Z", + "1.1.4": "2011-03-24T10:47:19.902Z", + "1.1.5": "2011-03-24T11:08:31.270Z", + "1.1.6": "2011-03-24T11:32:01.932Z", + "1.1.7": "2011-03-24T11:32:29.065Z", + "1.1.8": "2011-03-24T11:35:58.741Z", + "1.1.9": "2011-03-24T11:42:56.034Z", + "1.1.10": "2011-03-24T11:45:28.241Z", + "1.1.11": "2011-03-24T11:50:58.792Z", + "1.1.12": "2011-03-28T20:59:08.173Z", + "1.1.13": "2011-03-28T21:02:48.995Z", + "1.1.14": "2011-03-28T21:03:07.902Z", + "1.1.15": "2011-03-28T23:42:34.130Z", + "1.1.16": "2011-03-28T23:43:27.910Z", + "1.1.17": "2011-03-28T23:45:33.631Z" + }, + "author": { + "name": "Dean Mao", + "email": "dean@luxdelux.com" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/restarter/1.0.0", + "1.0.1": "http://registry.npmjs.org/restarter/1.0.1", + "1.0.2": "http://registry.npmjs.org/restarter/1.0.2", + "1.0.3": "http://registry.npmjs.org/restarter/1.0.3", + "1.0.5": "http://registry.npmjs.org/restarter/1.0.5", + "1.0.6": "http://registry.npmjs.org/restarter/1.0.6", + "1.0.8": "http://registry.npmjs.org/restarter/1.0.8", + "1.0.9": "http://registry.npmjs.org/restarter/1.0.9", + "1.1.0": "http://registry.npmjs.org/restarter/1.1.0", + "1.1.1": "http://registry.npmjs.org/restarter/1.1.1", + "1.1.2": "http://registry.npmjs.org/restarter/1.1.2", + "1.1.3": "http://registry.npmjs.org/restarter/1.1.3", + "1.1.4": "http://registry.npmjs.org/restarter/1.1.4", + "1.1.5": "http://registry.npmjs.org/restarter/1.1.5", + "1.1.6": "http://registry.npmjs.org/restarter/1.1.6", + "1.1.7": "http://registry.npmjs.org/restarter/1.1.7", + "1.1.8": "http://registry.npmjs.org/restarter/1.1.8", + "1.1.9": "http://registry.npmjs.org/restarter/1.1.9", + "1.1.10": "http://registry.npmjs.org/restarter/1.1.10", + "1.1.11": "http://registry.npmjs.org/restarter/1.1.11", + "1.1.12": "http://registry.npmjs.org/restarter/1.1.12", + "1.1.13": "http://registry.npmjs.org/restarter/1.1.13", + "1.1.14": "http://registry.npmjs.org/restarter/1.1.14", + "1.1.15": "http://registry.npmjs.org/restarter/1.1.15", + "1.1.16": "http://registry.npmjs.org/restarter/1.1.16", + "1.1.17": "http://registry.npmjs.org/restarter/1.1.17" + }, + "dist": { + "1.0.0": { + "shasum": "4778a34d357f80341d843ab0dbb596bacd5b28be", + "tarball": "http://registry.npmjs.org/restarter/-/restarter-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "3e5bab3fda1b3339942a0dd38ef944e8574e3ffa", + "tarball": "http://registry.npmjs.org/restarter/-/restarter-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "5d80e5ce30127df2110b85a7a08ec81d400dd298", + "tarball": "http://registry.npmjs.org/restarter/-/restarter-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "ab404ca9d793c6d886e49801352cc49f756609a1", + "tarball": "http://registry.npmjs.org/restarter/-/restarter-1.0.3.tgz" + }, + "1.0.5": { + "shasum": "d3983d687c0f5c20becb24fde302113cdefe118e", + "tarball": "http://registry.npmjs.org/restarter/-/restarter-1.0.5.tgz" + }, + "1.0.6": { + "shasum": "b99e56d628066ab711b5109762cba910e3bcb934", + "tarball": "http://registry.npmjs.org/restarter/-/restarter-1.0.6.tgz" + }, + "1.0.8": { + "shasum": "6880809ba4bc016b7cb3862cc20a8cf170955540", + "tarball": "http://registry.npmjs.org/restarter/-/restarter-1.0.8.tgz" + }, + "1.0.9": { + "shasum": "8e9c6b90aa24f38ea6208b13aaed0ae2220775dd", + "tarball": "http://registry.npmjs.org/restarter/-/restarter-1.0.9.tgz" + }, + "1.1.0": { + "shasum": "6cd0e36698e70873039883dd31705187ea1d0b23", + "tarball": "http://registry.npmjs.org/restarter/-/restarter-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "a736ab9518e01c18d914727f1afd359f3846bcc8", + "tarball": "http://registry.npmjs.org/restarter/-/restarter-1.1.1.tgz" + }, + "1.1.2": { + "shasum": "e9e9b7150b4fa6fcb33ce4fa681f7fb900fc75f3", + "tarball": "http://registry.npmjs.org/restarter/-/restarter-1.1.2.tgz" + }, + "1.1.3": { + "shasum": "0cd8395c1a341f5c00e756cab0797d06617f23d0", + "tarball": "http://registry.npmjs.org/restarter/-/restarter-1.1.3.tgz" + }, + "1.1.4": { + "shasum": "b0bc73d39a1fcb1fdd54680af5eff9f8beefbfb6", + "tarball": "http://registry.npmjs.org/restarter/-/restarter-1.1.4.tgz" + }, + "1.1.5": { + "shasum": "2e3d0603f39411f5c79a336f3b41536e0026688e", + "tarball": "http://registry.npmjs.org/restarter/-/restarter-1.1.5.tgz" + }, + "1.1.6": { + "shasum": "83d6ec078fbcd92cabe5cb192fc581c7a91ed365", + "tarball": "http://registry.npmjs.org/restarter/-/restarter-1.1.6.tgz" + }, + "1.1.7": { + "shasum": "774756c6be5201f7fc4d085c55080dbcde76800b", + "tarball": "http://registry.npmjs.org/restarter/-/restarter-1.1.7.tgz" + }, + "1.1.8": { + "shasum": "56c5593f3656fbf917210022504026ae89a24328", + "tarball": "http://registry.npmjs.org/restarter/-/restarter-1.1.8.tgz" + }, + "1.1.9": { + "shasum": "24d253e10e214574edb3f32790d4c947610346f3", + "tarball": "http://registry.npmjs.org/restarter/-/restarter-1.1.9.tgz" + }, + "1.1.10": { + "shasum": "c5acbe793733457801f1f5db2959a8b684d4da1f", + "tarball": "http://registry.npmjs.org/restarter/-/restarter-1.1.10.tgz" + }, + "1.1.11": { + "shasum": "33cd2c394e7277813f88368267384f146a6308a2", + "tarball": "http://registry.npmjs.org/restarter/-/restarter-1.1.11.tgz" + }, + "1.1.12": { + "shasum": "b09d6add36ae227f8a8766b278573f14f298548f", + "tarball": "http://registry.npmjs.org/restarter/-/restarter-1.1.12.tgz" + }, + "1.1.13": { + "shasum": "52a6ea1221f674a8f7411ef21b838a9f1f18320b", + "tarball": "http://registry.npmjs.org/restarter/-/restarter-1.1.13.tgz" + }, + "1.1.14": { + "shasum": "979ce7031de1b819f5e2dfa5de79ef6d15db244d", + "tarball": "http://registry.npmjs.org/restarter/-/restarter-1.1.14.tgz" + }, + "1.1.15": { + "shasum": "403409cca91cb0beb77121a0aaa6f14cc29f476b", + "tarball": "http://registry.npmjs.org/restarter/-/restarter-1.1.15.tgz" + }, + "1.1.16": { + "shasum": "1222476bf33b366c797ba4b919b224127ade639f", + "tarball": "http://registry.npmjs.org/restarter/-/restarter-1.1.16.tgz" + }, + "1.1.17": { + "shasum": "329c5a3c36535279e7a2eb127917278d5acae6dc", + "tarball": "http://registry.npmjs.org/restarter/-/restarter-1.1.17.tgz" + } + }, + "url": "http://registry.npmjs.org/restarter/" + }, + "restartr": { + "name": "restartr", + "description": "Restart your process when a file changes.", + "dist-tags": { + "latest": "0.1.10" + }, + "maintainers": [ + { + "name": "aaronblohowiak", + "email": "aaron.blohowiak@gmail.com" + } + ], + "author": { + "name": "Aaron Blohowiak", + "email": "aaron.blohowiak@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/aaronblohowiak/restartr.git" + }, + "time": { + "modified": "2011-04-29T03:50:22.846Z", + "created": "2011-04-29T03:50:22.846Z", + "0.1.5": "2011-04-29T03:50:22.846Z", + "0.1.7": "2011-04-29T03:50:22.846Z", + "0.1.8": "2011-04-29T03:50:22.846Z", + "0.1.10": "2011-04-29T03:50:22.846Z" + }, + "versions": { + "0.1.5": "http://registry.npmjs.org/restartr/0.1.5", + "0.1.7": "http://registry.npmjs.org/restartr/0.1.7", + "0.1.8": "http://registry.npmjs.org/restartr/0.1.8", + "0.1.10": "http://registry.npmjs.org/restartr/0.1.10" + }, + "dist": { + "0.1.5": { + "tarball": "http://packages:5984/restartr/-/restartr-0.1.5.tgz" + }, + "0.1.7": { + "tarball": "http://packages:5984/restartr/-/restartr-0.1.7.tgz" + }, + "0.1.8": { + "tarball": "http://packages:5984/restartr/-/restartr-0.1.8.tgz" + }, + "0.1.10": { + "shasum": "2874396ea856f82937f30751fd158799cbbb7bab", + "tarball": "http://registry.npmjs.org/restartr/-/restartr-0.1.10.tgz" + } + }, + "keywords": [ + "restart", + "autoload", + "reload", + "restarter", + "command-line", + "cli", + "terminal" + ], + "url": "http://registry.npmjs.org/restartr/" + }, + "restify": { + "name": "restify", + "description": "REST framework specifically meant for web service APIs", + "dist-tags": { + "latest": "0.5.5" + }, + "maintainers": [ + { + "name": "mcavage", + "email": "mcavage@gmail.com" + } + ], + "time": { + "modified": "2011-12-01T16:49:44.958Z", + "created": "2011-04-25T21:22:28.794Z", + "0.1.0": "2011-04-25T21:22:29.493Z", + "0.1.1": "2011-04-26T22:45:09.156Z", + "0.1.2": "2011-04-27T19:00:31.951Z", + "0.1.4": "2011-05-04T21:02:31.055Z", + "0.1.5": "2011-05-06T17:16:06.504Z", + "0.1.6": "2011-05-11T23:22:06.022Z", + "0.1.7": "2011-05-16T01:09:11.144Z", + "0.1.8": "2011-05-16T04:03:36.527Z", + "0.1.9": "2011-05-16T15:46:39.083Z", + "0.1.10": "2011-05-16T20:53:15.138Z", + "0.1.11": "2011-05-19T22:03:36.521Z", + "0.1.12": "2011-05-21T23:44:55.017Z", + "0.1.13": "2011-05-22T16:42:28.732Z", + "0.1.14": "2011-05-23T20:42:38.509Z", + "0.1.15": "2011-05-25T01:05:42.318Z", + "0.1.16": "2011-05-25T15:56:40.268Z", + "0.1.17": "2011-05-26T16:42:57.605Z", + "0.1.18": "2011-05-26T22:13:51.757Z", + "0.1.19": "2011-05-27T21:56:11.357Z", + "0.1.20": "2011-05-27T23:29:25.436Z", + "0.1.21": "2011-06-02T04:23:42.045Z", + "0.1.22": "2011-06-02T17:52:50.718Z", + "0.1.23": "2011-06-03T19:15:14.959Z", + "0.2.0": "2011-06-05T23:07:08.615Z", + "0.2.1": "2011-06-06T17:49:58.638Z", + "0.2.2": "2011-06-06T20:58:33.983Z", + "0.2.3": "2011-06-06T21:07:46.207Z", + "0.2.4": "2011-06-06T21:42:11.021Z", + "0.2.5": "2011-06-06T22:41:21.689Z", + "0.2.6": "2011-06-07T18:09:55.296Z", + "0.2.7": "2011-06-09T14:41:05.424Z", + "0.2.8": "2011-06-09T23:04:48.397Z", + "0.2.9": "2011-06-10T00:49:20.567Z", + "0.2.10": "2011-06-10T01:31:27.435Z", + "0.2.11": "2011-06-10T05:16:12.205Z", + "0.2.12": "2011-06-10T19:42:02.612Z", + "0.2.13": "2011-06-11T22:17:14.060Z", + "0.3.0": "2011-06-13T06:20:06.080Z", + "0.3.1": "2011-06-13T22:58:01.200Z", + "0.3.2-pre1": "2011-06-14T21:20:10.444Z", + "0.3.2": "2011-06-16T21:28:14.995Z", + "0.3.3": "2011-06-20T16:49:56.348Z", + "0.3.4": "2011-06-21T00:33:59.960Z", + "0.3.5": "2011-06-21T21:17:12.060Z", + "0.3.6": "2011-06-27T20:55:38.068Z", + "0.3.7": "2011-07-01T19:01:17.043Z", + "0.3.8": "2011-07-06T17:37:13.986Z", + "0.3.9": "2011-07-06T23:44:28.023Z", + "0.3.10": "2011-07-07T04:44:43.307Z", + "0.3.11": "2011-07-07T04:54:30.219Z", + "0.3.12": "2011-07-07T22:16:53.169Z", + "0.3.14": "2011-07-11T17:42:09.352Z", + "0.3.15": "2011-07-11T23:18:25.876Z", + "0.4.0": "2011-08-12T20:45:30.294Z", + "0.4.1": "2011-08-16T17:46:50.821Z", + "0.4.2": "2011-08-24T17:00:10.340Z", + "0.4.3": "2011-08-27T21:27:23.361Z", + "0.4.4": "2011-09-15T16:20:46.981Z", + "0.5.0": "2011-09-15T20:47:06.700Z", + "0.5.1": "2011-09-18T23:26:36.157Z", + "0.5.3": "2011-09-22T00:10:43.153Z", + "0.5.4": "2011-09-30T19:30:12.416Z", + "0.5.5": "2011-12-01T16:49:44.958Z" + }, + "author": { + "name": "Mark Cavage", + "email": "mcavage@gmail.com", + "url": "http://www.joyent.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mcavage/node-restify.git" + }, + "users": { + "isaacs": true + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/restify/0.1.0", + "0.1.1": "http://registry.npmjs.org/restify/0.1.1", + "0.1.2": "http://registry.npmjs.org/restify/0.1.2", + "0.1.4": "http://registry.npmjs.org/restify/0.1.4", + "0.1.5": "http://registry.npmjs.org/restify/0.1.5", + "0.1.6": "http://registry.npmjs.org/restify/0.1.6", + "0.1.7": "http://registry.npmjs.org/restify/0.1.7", + "0.1.8": "http://registry.npmjs.org/restify/0.1.8", + "0.1.9": "http://registry.npmjs.org/restify/0.1.9", + "0.1.10": "http://registry.npmjs.org/restify/0.1.10", + "0.1.11": "http://registry.npmjs.org/restify/0.1.11", + "0.1.12": "http://registry.npmjs.org/restify/0.1.12", + "0.1.13": "http://registry.npmjs.org/restify/0.1.13", + "0.1.14": "http://registry.npmjs.org/restify/0.1.14", + "0.1.15": "http://registry.npmjs.org/restify/0.1.15", + "0.1.16": "http://registry.npmjs.org/restify/0.1.16", + "0.1.17": "http://registry.npmjs.org/restify/0.1.17", + "0.1.18": "http://registry.npmjs.org/restify/0.1.18", + "0.1.19": "http://registry.npmjs.org/restify/0.1.19", + "0.1.20": "http://registry.npmjs.org/restify/0.1.20", + "0.1.21": "http://registry.npmjs.org/restify/0.1.21", + "0.1.22": "http://registry.npmjs.org/restify/0.1.22", + "0.1.23": "http://registry.npmjs.org/restify/0.1.23", + "0.2.0": "http://registry.npmjs.org/restify/0.2.0", + "0.2.1": "http://registry.npmjs.org/restify/0.2.1", + "0.2.2": "http://registry.npmjs.org/restify/0.2.2", + "0.2.3": "http://registry.npmjs.org/restify/0.2.3", + "0.2.4": "http://registry.npmjs.org/restify/0.2.4", + "0.2.5": "http://registry.npmjs.org/restify/0.2.5", + "0.2.6": "http://registry.npmjs.org/restify/0.2.6", + "0.2.7": "http://registry.npmjs.org/restify/0.2.7", + "0.2.8": "http://registry.npmjs.org/restify/0.2.8", + "0.2.9": "http://registry.npmjs.org/restify/0.2.9", + "0.2.10": "http://registry.npmjs.org/restify/0.2.10", + "0.2.11": "http://registry.npmjs.org/restify/0.2.11", + "0.2.12": "http://registry.npmjs.org/restify/0.2.12", + "0.2.13": "http://registry.npmjs.org/restify/0.2.13", + "0.3.0": "http://registry.npmjs.org/restify/0.3.0", + "0.3.1": "http://registry.npmjs.org/restify/0.3.1", + "0.3.2-pre1": "http://registry.npmjs.org/restify/0.3.2-pre1", + "0.3.2": "http://registry.npmjs.org/restify/0.3.2", + "0.3.3": "http://registry.npmjs.org/restify/0.3.3", + "0.3.4": "http://registry.npmjs.org/restify/0.3.4", + "0.3.5": "http://registry.npmjs.org/restify/0.3.5", + "0.3.6": "http://registry.npmjs.org/restify/0.3.6", + "0.3.7": "http://registry.npmjs.org/restify/0.3.7", + "0.3.8": "http://registry.npmjs.org/restify/0.3.8", + "0.3.9": "http://registry.npmjs.org/restify/0.3.9", + "0.3.10": "http://registry.npmjs.org/restify/0.3.10", + "0.3.11": "http://registry.npmjs.org/restify/0.3.11", + "0.3.12": "http://registry.npmjs.org/restify/0.3.12", + "0.3.14": "http://registry.npmjs.org/restify/0.3.14", + "0.3.15": "http://registry.npmjs.org/restify/0.3.15", + "0.4.0": "http://registry.npmjs.org/restify/0.4.0", + "0.4.1": "http://registry.npmjs.org/restify/0.4.1", + "0.4.2": "http://registry.npmjs.org/restify/0.4.2", + "0.4.3": "http://registry.npmjs.org/restify/0.4.3", + "0.4.4": "http://registry.npmjs.org/restify/0.4.4", + "0.5.0": "http://registry.npmjs.org/restify/0.5.0", + "0.5.1": "http://registry.npmjs.org/restify/0.5.1", + "0.5.3": "http://registry.npmjs.org/restify/0.5.3", + "0.5.4": "http://registry.npmjs.org/restify/0.5.4", + "0.5.5": "http://registry.npmjs.org/restify/0.5.5" + }, + "dist": { + "0.1.0": { + "shasum": "93332cb64b425f4c4ea573d274bcb20687fcbfb2", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "d68303c190cc7dedfed1d17a613031e5f93f4eaf", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "ffb57ff472acfb5982de7f5a4b0a14a38ad977df", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.1.2.tgz" + }, + "0.1.4": { + "shasum": "b346343050ae0df4c81d14fc81465552486800cd", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "8f2f0117d1c7afade06b6a033a068030f946a8a7", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "9e38db131d3fe91aa88d0c30b7a18284e80a78fd", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "811b6ff41049158b603e332018398652674e5c5f", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "e07849f5d7ae5703680be26d5b05d5b826986fee", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "b916f140538fb41d905ab09722a303e98550e9d2", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.1.9.tgz" + }, + "0.1.10": { + "shasum": "5a5cd46673e052c31412cf8b8c1dfa71068dbc4b", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.1.10.tgz" + }, + "0.1.11": { + "shasum": "9be1e8d625b19648ebe17c305fe2f85bd3b5960f", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.1.11.tgz" + }, + "0.1.12": { + "shasum": "283bcb5730ba0d3a60554097c662382e1d7232e2", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.1.12.tgz" + }, + "0.1.13": { + "shasum": "97111ebdd269a1bc3fba2ecedc75a89f7c37a0e8", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.1.13.tgz" + }, + "0.1.14": { + "shasum": "6c314a0fb705feedac2408404a422c0749cdce5e", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.1.14.tgz" + }, + "0.1.15": { + "shasum": "2515865c0adf5b3306fa006940ea7bfb9f26fca8", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.1.15.tgz" + }, + "0.1.16": { + "shasum": "d47a5af464c1ac420a4e0d5ec6fc30b47d810d67", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.1.16.tgz" + }, + "0.1.17": { + "shasum": "29ccf548dccf16a9ce1174347d6ed031db030db7", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.1.17.tgz" + }, + "0.1.18": { + "shasum": "a48f4c514353de80da708b184b3a6786832e9328", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.1.18.tgz" + }, + "0.1.19": { + "shasum": "a6f868f20170b22a69e7712fbafea8a99b3fc201", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.1.19.tgz" + }, + "0.1.20": { + "shasum": "2568078b5a3678959a81683710a8ed320eecda70", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.1.20.tgz" + }, + "0.1.21": { + "shasum": "a7bdb22b339ad15c4ec743cadbc62f0c994dbad9", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.1.21.tgz" + }, + "0.1.22": { + "shasum": "17f4ddda7f4e538e668745dbd4a0a7ffbe33fbef", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.1.22.tgz" + }, + "0.1.23": { + "shasum": "56424ad01ad6c110d180ce2eb2800ffba5a0c193", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.1.23.tgz" + }, + "0.2.0": { + "shasum": "78b81c4bc8cd100d99f9ad7770801a8113b492d7", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "68062c536b51fb532872812198039239885c0742", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "d3db332244f0928b2905e20581cca0200be82ad7", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "6a45d059b5d898cffd070c90d646d625ff189087", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "c93659f3a4ed3d37be571d7e9803ab9aaa3c0d69", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "7ed834983784e09ce141721578807eb39c8a7669", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "d9b649def8493039cdf305c970e138b706fda3de", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "b891ffe6889526802f22e68c0034df0a568eedbf", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.2.7.tgz" + }, + "0.2.8": { + "shasum": "4518f6479a731703e7391ecaa67185b83c630c55", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.2.8.tgz" + }, + "0.2.9": { + "shasum": "d09fd06a36bc5e178a6343705491988a200102ad", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.2.9.tgz" + }, + "0.2.10": { + "shasum": "b5aa125b0a5f46cadf88fd8ce7c4d37f5775538c", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.2.10.tgz" + }, + "0.2.11": { + "shasum": "ddd478cee5bfd6c82425fbd26859ecd9f6143506", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.2.11.tgz" + }, + "0.2.12": { + "shasum": "19d1fe3f6a06cbe9a23fb14f1cad5bcd0e6d5224", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.2.12.tgz" + }, + "0.2.13": { + "shasum": "96def0ffde261074f5ea525eda5d743f982f4b9a", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.2.13.tgz" + }, + "0.3.0": { + "shasum": "c67a9e0a8fb9f97ceee1ee9ebbb1727cf4e9c597", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "1d70da5084f60a9b483bece096a98a6051bb970a", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.3.1.tgz" + }, + "0.3.2-pre1": { + "shasum": "128427186bc426acab9397e123207ae87fa04489", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.3.2-pre1.tgz" + }, + "0.3.2": { + "shasum": "2ac94c28aa9c0e47fab4fefef6b4cc038bf0e4ea", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "687231a8b68e3f430e35e5297a7f0312664418b4", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.3.3.tgz" + }, + "0.3.4": { + "shasum": "1f068b64fbb333176151d18f236079d2ce1dc5a4", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.3.4.tgz" + }, + "0.3.5": { + "shasum": "0fafb46bf7fc99e95a96543a96314cfd6f9697ea", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.3.5.tgz" + }, + "0.3.6": { + "shasum": "d4d1493f9b82b50cca7778dfe5d2855479db7903", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.3.6.tgz" + }, + "0.3.7": { + "shasum": "828c57e499fd4c45d2bfe88e182f093bbdf219b6", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.3.7.tgz" + }, + "0.3.8": { + "shasum": "faf813ad86f5c44c81997593d9fdaa4e97b8f5ae", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.3.8.tgz" + }, + "0.3.9": { + "shasum": "8ccc968afac79d5b920a338506e03e37f36ed1f7", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.3.9.tgz" + }, + "0.3.10": { + "shasum": "8a5efb67a14e1f0fedaf50fb7c99f00819c28a20", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.3.10.tgz" + }, + "0.3.11": { + "shasum": "8fd429502bf05048f577253c82df06382c002da4", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.3.11.tgz" + }, + "0.3.12": { + "shasum": "36b721b1a631478fb11be62b94a9e2a6c68584aa", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.3.12.tgz" + }, + "0.3.14": { + "shasum": "b2bb78d2b3ef635c8394bfea031027ffd4a3bf6e", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.3.14.tgz" + }, + "0.3.15": { + "shasum": "8daeac4a39e5f4a0e8942c8aaf95b21782ade225", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.3.15.tgz" + }, + "0.4.0": { + "shasum": "390d5d0b98000b579f474c1aee7deda52afaa1d7", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "9ffaf6a802435a69e96ea8472ce3c8801413eddc", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "b00f6a4b7417ddee584492aca765631be75cf5a9", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "d1be8e80644f27ae13ade2e31727cb76589b795c", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.4.3.tgz" + }, + "0.4.4": { + "shasum": "8830f1180dfc7f5172f53a941775ea1a327137b4", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.4.4.tgz" + }, + "0.5.0": { + "shasum": "475023ddc9484dc49f4b9c1f3914066e309e14fd", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "055b8bf80a335668c2566002f49f212e6664839b", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.5.1.tgz" + }, + "0.5.3": { + "shasum": "856f49646dd980a8845b0ad61e94d56a27ea03fd", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.5.3.tgz" + }, + "0.5.4": { + "shasum": "18da1e07f0beedb24fb8fac9a2d9dd6fc4bb97bc", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.5.4.tgz" + }, + "0.5.5": { + "shasum": "9fc2e786deafac28a62796110ab7d6cc46987928", + "tarball": "http://registry.npmjs.org/restify/-/restify-0.5.5.tgz" + } + }, + "url": "http://registry.npmjs.org/restify/" + }, + "restler": { + "name": "restler", + "description": "An HTTP client library for node.js", + "dist-tags": { + "latest": "0.2.3" + }, + "maintainers": [ + { + "name": "danwrong", + "email": "dan@danwebb.net" + }, + { + "name": "ayoung", + "email": "andrewdyoung@gmail.com" + } + ], + "time": { + "modified": "2011-12-13T19:44:04.486Z", + "created": "2011-02-03T15:27:47.186Z", + "0.2.0": "2011-12-08T20:20:50.045Z", + "0.2.1": "2011-12-08T20:20:50.045Z", + "0.2.2": "2011-12-08T20:20:50.045Z", + "0.2.3": "2011-12-13T19:44:04.486Z" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/restler/0.2.0", + "0.2.1": "http://registry.npmjs.org/restler/0.2.1", + "0.2.2": "http://registry.npmjs.org/restler/0.2.2", + "0.2.3": "http://registry.npmjs.org/restler/0.2.3" + }, + "dist": { + "0.2.0": { + "shasum": "fbd5e40322aac981c5a3875132297cadc607bc69", + "tarball": "http://registry.npmjs.org/restler/-/restler-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "be7d9fe84e44464d4e85c45b4d03cf8a65d6e7b4", + "tarball": "http://registry.npmjs.org/restler/-/restler-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "a102735b65f4b92ebdffda4021fa338eb516b8f9", + "tarball": "http://registry.npmjs.org/restler/-/restler-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "62357fa8c77453f8d14307b5b23ff77dff502cbf", + "tarball": "http://registry.npmjs.org/restler/-/restler-0.2.3.tgz" + } + }, + "url": "http://registry.npmjs.org/restler/" + }, + "restler-aaronblohowiak": { + "name": "restler-aaronblohowiak", + "description": "pure-MIT fork of restler.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "aaronblohowiak", + "email": "aaron.blohowiak@gmail.com" + } + ], + "author": { + "name": "i", + "email": "aaron.blohowiak@gmail.com", + "url": "C" + }, + "repository": { + "type": "git", + "url": "git://github.com/aaronblohowiak/restler.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/restler-aaronblohowiak/0.0.1", + "0.0.2": "http://registry.npmjs.org/restler-aaronblohowiak/0.0.2" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/restler-aaronblohowiak/-/restler-aaronblohowiak-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/restler-aaronblohowiak/-/restler-aaronblohowiak-0.0.2.tgz" + } + }, + "keywords": [ + "restler", + "MIT", + "restful", + "REST", + "http client" + ], + "url": "http://registry.npmjs.org/restler-aaronblohowiak/" + }, + "restmvc.js": { + "name": "restmvc.js", + "description": "A micro framework that helps you quickly build RESTful web services", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "keithnlarsen", + "email": "keithnlarsen@gmail.com" + } + ], + "time": { + "modified": "2011-06-09T16:39:23.053Z", + "created": "2011-03-08T20:18:26.307Z", + "0.0.1": "2011-03-08T20:18:26.603Z", + "0.0.2": "2011-03-10T00:46:35.403Z", + "0.0.3": "2011-03-10T22:17:49.095Z", + "0.0.4": "2011-03-29T19:29:13.711Z", + "0.0.5": "2011-03-30T04:49:51.122Z", + "0.0.6": "2011-04-05T14:32:19.402Z", + "0.1.0": "2011-05-25T18:57:34.785Z", + "0.1.1": "2011-06-09T16:39:23.053Z" + }, + "author": { + "name": "Keith Larsen" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/restmvc.js/0.0.1", + "0.0.2": "http://registry.npmjs.org/restmvc.js/0.0.2", + "0.0.3": "http://registry.npmjs.org/restmvc.js/0.0.3", + "0.0.4": "http://registry.npmjs.org/restmvc.js/0.0.4", + "0.0.5": "http://registry.npmjs.org/restmvc.js/0.0.5", + "0.0.6": "http://registry.npmjs.org/restmvc.js/0.0.6", + "0.1.0": "http://registry.npmjs.org/restmvc.js/0.1.0", + "0.1.1": "http://registry.npmjs.org/restmvc.js/0.1.1" + }, + "dist": { + "0.0.1": { + "shasum": "55530cf1cb25d5595cc56dad0a2a6bf4b4809a4e", + "tarball": "http://registry.npmjs.org/restmvc.js/-/restmvc.js-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "0613d964cd21047e6e91fd228696759a3ba4c2e6", + "tarball": "http://registry.npmjs.org/restmvc.js/-/restmvc.js-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "f82d452c5bd6bc12d7f107dab1618f67557710d2", + "tarball": "http://registry.npmjs.org/restmvc.js/-/restmvc.js-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "407ae33c7465e019b157c29b233efdd465fa9b8a", + "tarball": "http://registry.npmjs.org/restmvc.js/-/restmvc.js-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "0818ea27dba7440f5a8abc8b38c4158fe3649013", + "tarball": "http://registry.npmjs.org/restmvc.js/-/restmvc.js-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "0635b72b415c5a4bbe4f53aa5515dc149f76ef0d", + "tarball": "http://registry.npmjs.org/restmvc.js/-/restmvc.js-0.0.6.tgz" + }, + "0.1.0": { + "shasum": "b86b28c790531a8a8aa38a6240d98e1fde966081", + "tarball": "http://registry.npmjs.org/restmvc.js/-/restmvc.js-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "a8f0e334836c654139fd9dfdf75015792c40a72a", + "tarball": "http://registry.npmjs.org/restmvc.js/-/restmvc.js-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/restmvc.js/" + }, + "Reston": { + "name": "Reston", + "description": "An improved HTTP client library for node.js", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "zohaib.hassan", + "email": "zohaib.hassan@gmail.com" + } + ], + "time": { + "modified": "2011-02-12T19:55:00.035Z", + "created": "2011-02-12T13:30:57.171Z", + "0.1.1": "2011-02-12T13:30:58.205Z", + "0.2.0": "2011-02-12T19:55:00.035Z" + }, + "author": { + "name": "Zohaib Sibt-e-Hassan", + "url": "http://maxpert.net.tc/" + }, + "repository": "git://github.com/maxpert/Reston.git", + "versions": { + "0.1.1": "http://registry.npmjs.org/Reston/0.1.1", + "0.2.0": "http://registry.npmjs.org/Reston/0.2.0" + }, + "dist": { + "0.1.1": { + "shasum": "934758bd8eda6481218e0d6c29dab8c10d573c5c", + "tarball": "http://registry.npmjs.org/Reston/-/Reston-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "18f4c291eaf1b0fc3a9a168d5aa685febc5068ff", + "tarball": "http://registry.npmjs.org/Reston/-/Reston-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/Reston/" + }, + "resware": { + "name": "resware", + "description": "Middleware to wrap around the http.ServerResponse for setting headers before writeHead() gets called", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-03-30T17:36:06.325Z", + "created": "2011-01-28T12:36:51.582Z", + "0.0.1": "2011-01-28T12:36:51.882Z", + "0.0.2": "2011-01-28T23:48:45.599Z", + "0.0.3": "2011-02-14T20:10:49.916Z", + "0.0.4": "2011-03-30T17:36:06.325Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-resware.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/resware/0.0.1", + "0.0.2": "http://registry.npmjs.org/resware/0.0.2", + "0.0.3": "http://registry.npmjs.org/resware/0.0.3", + "0.0.4": "http://registry.npmjs.org/resware/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "39a490012c8af2867173e0ba8b05941c9d8daa64", + "tarball": "http://registry.npmjs.org/resware/-/resware-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "ff9ddf017fbc9fb4fe6f7ae73be0f3134ce4a7ff", + "tarball": "http://registry.npmjs.org/resware/-/resware-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "bcc8175cc552c745e9716e16a6626e2c204db9ae", + "tarball": "http://registry.npmjs.org/resware/-/resware-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "aa18e748fd0d6b88d370c217650d58864073a685", + "tarball": "http://registry.npmjs.org/resware/-/resware-0.0.4.tgz" + } + }, + "keywords": [ + "response", + "headers", + "http" + ], + "url": "http://registry.npmjs.org/resware/" + }, + "retrie": { + "name": "retrie", + "description": "Tiny library to make optimized regexes for a specific set of texts", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "satyr", + "email": "murky.satyr@gmail.com" + } + ], + "time": { + "modified": "2011-03-31T14:05:33.172Z", + "created": "2011-02-11T03:25:05.537Z", + "0.1.0": "2011-02-11T03:25:06.310Z", + "0.1.1": "2011-03-31T14:05:18.608Z" + }, + "author": { + "name": "satyr", + "email": "murky.satyr@gmail.com", + "url": "http://satyr.github.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/satyr/retrie.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/retrie/0.1.1" + }, + "dist": { + "0.1.1": { + "shasum": "689e89eb913cab3be5d2469d43327a94458e7a4b", + "tarball": "http://registry.npmjs.org/retrie/-/retrie-0.1.1.tgz" + } + }, + "keywords": [ + "regex", + "trie", + "coco" + ], + "url": "http://registry.npmjs.org/retrie/" + }, + "retro": { + "name": "retro", + "description": "RETRO STYLE ASYNC CONTROL FLOW STATEMENTS", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-09-12T14:23:47.185Z", + "created": "2011-09-12T14:23:43.784Z", + "0.0.0": "2011-09-12T14:23:47.185Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com", + "url": "http://bit.ly/dominictarr" + }, + "repository": { + "type": "git", + "url": "git://github.com/dominictarr/retro.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/retro/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "69998a72a2b15d97fa207a40dc093b4fa3cf94d1", + "tarball": "http://registry.npmjs.org/retro/-/retro-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/retro/" + }, + "retry": { + "name": "retry", + "description": "Abstraction for exponential and custom retry strategies for failed operations.", + "dist-tags": { + "latest": "0.5.0" + }, + "maintainers": [ + { + "name": "tim-kos", + "email": "tim@debuggable.com" + } + ], + "time": { + "modified": "2011-11-03T10:55:32.772Z", + "created": "2011-05-13T11:26:52.829Z", + "0.0.1": "2011-05-13T11:26:53.515Z", + "0.1.0": "2011-05-16T08:10:27.648Z", + "0.2.0": "2011-05-16T14:32:52.025Z", + "0.3.0": "2011-05-31T14:19:32.882Z", + "0.4.0": "2011-06-05T08:07:17.763Z", + "0.5.0": "2011-11-03T10:55:32.772Z" + }, + "author": { + "name": "Tim Koschützki", + "email": "tim@debuggable.com", + "url": "http://debuggable.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/felixge/node-retry.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/retry/0.0.1", + "0.1.0": "http://registry.npmjs.org/retry/0.1.0", + "0.2.0": "http://registry.npmjs.org/retry/0.2.0", + "0.3.0": "http://registry.npmjs.org/retry/0.3.0", + "0.4.0": "http://registry.npmjs.org/retry/0.4.0", + "0.5.0": "http://registry.npmjs.org/retry/0.5.0" + }, + "dist": { + "0.0.1": { + "shasum": "d47a1e527644e131e8f54785452ec7cd410808fe", + "tarball": "http://registry.npmjs.org/retry/-/retry-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "e97a7b06a889a62b3f7ea16003f52a699c3651a5", + "tarball": "http://registry.npmjs.org/retry/-/retry-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "9598e6667c197772ea24ab5fc9e5445c0a4ac9a5", + "tarball": "http://registry.npmjs.org/retry/-/retry-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "902e4fc3e6c48d52badfec738be656b8ca23844c", + "tarball": "http://registry.npmjs.org/retry/-/retry-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "f6a0107aee4d4e5bd5469e1d31c780e438d154bd", + "tarball": "http://registry.npmjs.org/retry/-/retry-0.4.0.tgz" + }, + "0.5.0": { + "shasum": "71e2793cd3e2ee9cce1182e173183af959decc3d", + "tarball": "http://registry.npmjs.org/retry/-/retry-0.5.0.tgz" + } + }, + "url": "http://registry.npmjs.org/retry/" + }, + "reut": { + "name": "reut", + "description": "REimplemented Unit Test for node.js", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "5long", + "email": "5longluna@gmail.com" + } + ], + "author": { + "name": "Whyme.Lyu", + "email": "5longluna@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/5long/reut.git" + }, + "time": { + "modified": "2011-07-11T08:47:26.043Z", + "created": "2011-06-16T19:47:18.479Z", + "0.1.2": "2011-06-16T19:47:18.479Z", + "0.1.3": "2011-06-16T19:47:18.479Z", + "0.1.4": "2011-07-11T08:47:26.043Z" + }, + "versions": { + "0.1.2": "http://registry.npmjs.org/reut/0.1.2", + "0.1.3": "http://registry.npmjs.org/reut/0.1.3", + "0.1.4": "http://registry.npmjs.org/reut/0.1.4" + }, + "dist": { + "0.1.2": { + "shasum": "ab9c09a52dfc46169ec0cd1a3a4ca570435cab11", + "tarball": "http://registry.npmjs.org/reut/-/reut-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "6ff6a3c8f355c0356dd516be7be8267780c16913", + "tarball": "http://registry.npmjs.org/reut/-/reut-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "72d1d63b0b0ce5f8767e74d82859f6bb0f062e00", + "tarball": "http://registry.npmjs.org/reut/-/reut-0.1.4.tgz" + } + }, + "keywords": [ + "test", + "testing", + "unit test", + "TDD" + ], + "url": "http://registry.npmjs.org/reut/" + }, + "revalidator": { + "name": "revalidator", + "description": "A cross-browser / node.js validator used by resourceful", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + }, + { + "name": "fedor.indutny", + "email": "fedor.indutny@gmail.com" + } + ], + "time": { + "modified": "2011-11-09T15:54:47.454Z", + "created": "2011-11-09T15:47:07.865Z", + "0.1.0": "2011-11-09T15:47:09.385Z" + }, + "author": { + "name": "Charlie Robbins", + "email": "charlie.robbins@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/flatiron/revalidator.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/revalidator/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "f747bca0006d8cd1c6c852bac4c4c4fc58162693", + "tarball": "http://registry.npmjs.org/revalidator/-/revalidator-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/revalidator/" + }, + "rewrite": { + "name": "rewrite", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "teknopaul", + "email": "teknopaul@gmail.com" + } + ], + "time": { + "modified": "2011-08-15T17:08:20.721Z", + "created": "2011-08-15T17:08:18.863Z", + "0.0.1": "2011-08-15T17:08:20.721Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/rewrite/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "3de88aced4c8889fccad2cd893f5edcf3b36e461", + "tarball": "http://registry.npmjs.org/rewrite/-/rewrite-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/rewrite/" + }, + "rex": { + "name": "rex", + "description": "the king of browser dependencies", + "dist-tags": { + "latest": "0.4.2" + }, + "maintainers": [ + { + "name": "mafintosh", + "email": "m@ge.tt" + } + ], + "time": { + "modified": "2011-11-24T15:05:43.169Z", + "created": "2011-08-02T23:06:37.925Z", + "0.1.0": "2011-08-02T23:06:40.533Z", + "0.1.1": "2011-08-02T23:10:19.183Z", + "0.1.2": "2011-08-02T23:14:10.925Z", + "0.1.3": "2011-08-02T23:20:18.508Z", + "0.2.0": "2011-08-05T14:18:52.709Z", + "0.2.1": "2011-08-06T15:31:07.320Z", + "0.2.2": "2011-08-06T16:27:23.811Z", + "0.2.3": "2011-08-06T17:35:58.043Z", + "0.2.4": "2011-08-06T22:31:48.679Z", + "0.2.5": "2011-08-07T13:50:58.688Z", + "0.2.6": "2011-08-12T10:50:22.775Z", + "0.2.8": "2011-08-12T21:56:10.587Z", + "0.2.9": "2011-08-15T12:37:15.369Z", + "0.2.10": "2011-08-15T14:09:37.698Z", + "0.2.11": "2011-08-19T11:42:50.840Z", + "0.3.0": "2011-08-19T12:01:02.104Z", + "0.3.1": "2011-08-21T18:34:03.026Z", + "0.3.2": "2011-08-30T11:16:32.076Z", + "0.3.4": "2011-09-21T14:50:34.776Z", + "0.3.5": "2011-09-27T13:24:54.429Z", + "0.3.6": "2011-10-23T16:29:00.039Z", + "0.4.0": "2011-11-17T10:26:26.174Z", + "0.4.1": "2011-11-24T13:18:42.445Z", + "0.4.2": "2011-11-24T15:05:43.169Z" + }, + "author": { + "name": "Mathias Buus Madsen", + "email": "mathiasbuus@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/rex/0.1.0", + "0.1.1": "http://registry.npmjs.org/rex/0.1.1", + "0.1.2": "http://registry.npmjs.org/rex/0.1.2", + "0.1.3": "http://registry.npmjs.org/rex/0.1.3", + "0.2.0": "http://registry.npmjs.org/rex/0.2.0", + "0.2.1": "http://registry.npmjs.org/rex/0.2.1", + "0.2.2": "http://registry.npmjs.org/rex/0.2.2", + "0.2.3": "http://registry.npmjs.org/rex/0.2.3", + "0.2.4": "http://registry.npmjs.org/rex/0.2.4", + "0.2.5": "http://registry.npmjs.org/rex/0.2.5", + "0.2.6": "http://registry.npmjs.org/rex/0.2.6", + "0.2.8": "http://registry.npmjs.org/rex/0.2.8", + "0.2.9": "http://registry.npmjs.org/rex/0.2.9", + "0.2.10": "http://registry.npmjs.org/rex/0.2.10", + "0.2.11": "http://registry.npmjs.org/rex/0.2.11", + "0.3.0": "http://registry.npmjs.org/rex/0.3.0", + "0.3.1": "http://registry.npmjs.org/rex/0.3.1", + "0.3.2": "http://registry.npmjs.org/rex/0.3.2", + "0.3.4": "http://registry.npmjs.org/rex/0.3.4", + "0.3.5": "http://registry.npmjs.org/rex/0.3.5", + "0.3.6": "http://registry.npmjs.org/rex/0.3.6", + "0.4.0": "http://registry.npmjs.org/rex/0.4.0", + "0.4.1": "http://registry.npmjs.org/rex/0.4.1", + "0.4.2": "http://registry.npmjs.org/rex/0.4.2" + }, + "dist": { + "0.1.0": { + "shasum": "a24e63715fe591a11aa2ae99bec621c5aab730fc", + "tarball": "http://registry.npmjs.org/rex/-/rex-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "0e067e5679a45e3bee8ad6a5fe84f9fc726653c8", + "tarball": "http://registry.npmjs.org/rex/-/rex-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "18e59d74352359f340442a7289c2f47ed0c1b8cd", + "tarball": "http://registry.npmjs.org/rex/-/rex-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "99f78b857338f341f06f6d79818423cbce4bb607", + "tarball": "http://registry.npmjs.org/rex/-/rex-0.1.3.tgz" + }, + "0.2.0": { + "shasum": "354e9ca59c0fdc0fd7daca76618d423950faf9f1", + "tarball": "http://registry.npmjs.org/rex/-/rex-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "c37f0da35311db13415372124e7f3a83ca02e0bb", + "tarball": "http://registry.npmjs.org/rex/-/rex-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "7dc43da3c2df8deb0c8eb5121511263b82e49b3b", + "tarball": "http://registry.npmjs.org/rex/-/rex-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "0341248fd5f4f564cde8abedca9ee2c9309699f5", + "tarball": "http://registry.npmjs.org/rex/-/rex-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "fd95d6d7300f46ee18864fdf717aa2def115851c", + "tarball": "http://registry.npmjs.org/rex/-/rex-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "da2f7a0b353213aa1a6236879c4d20f29e896c99", + "tarball": "http://registry.npmjs.org/rex/-/rex-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "5dda17f846281651bab57f12fc5d321283d5dbf0", + "tarball": "http://registry.npmjs.org/rex/-/rex-0.2.6.tgz" + }, + "0.2.8": { + "shasum": "1dbd07b9b03a155d8940b3963e6dbbaaec3482b3", + "tarball": "http://registry.npmjs.org/rex/-/rex-0.2.8.tgz" + }, + "0.2.9": { + "shasum": "2f0253a7d8cb30f0873239fcd4c50a678f4cd0f5", + "tarball": "http://registry.npmjs.org/rex/-/rex-0.2.9.tgz" + }, + "0.2.10": { + "shasum": "00d936ce8feee14043153b59fa423a91a2b5e030", + "tarball": "http://registry.npmjs.org/rex/-/rex-0.2.10.tgz" + }, + "0.2.11": { + "shasum": "ba1d9e5be47cda05af0ad340737f72ddd535b8f3", + "tarball": "http://registry.npmjs.org/rex/-/rex-0.2.11.tgz" + }, + "0.3.0": { + "shasum": "564e095258697c71d02b5648c543b213932ce56f", + "tarball": "http://registry.npmjs.org/rex/-/rex-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "b7bddee32d4bd6c0bd2be9c67cdc2c6c51364e9c", + "tarball": "http://registry.npmjs.org/rex/-/rex-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "7db951378a9437b90eb8a3eb9f75e73023432798", + "tarball": "http://registry.npmjs.org/rex/-/rex-0.3.2.tgz" + }, + "0.3.4": { + "shasum": "38827ff38a340fd1ca44b599d614e8a3ddfaf4ec", + "tarball": "http://registry.npmjs.org/rex/-/rex-0.3.4.tgz" + }, + "0.3.5": { + "shasum": "bca00af488ee66d1ca875284c352dd8c6406a9e2", + "tarball": "http://registry.npmjs.org/rex/-/rex-0.3.5.tgz" + }, + "0.3.6": { + "shasum": "ddc4dd30c8a3b8724f4f20ffc01d38ce1e12db52", + "tarball": "http://registry.npmjs.org/rex/-/rex-0.3.6.tgz" + }, + "0.4.0": { + "shasum": "7f2f7a2aa9b45f8b502aa14094813a699f62a77d", + "tarball": "http://registry.npmjs.org/rex/-/rex-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "49b1863b7b4569a8582841f1620bf313dac14223", + "tarball": "http://registry.npmjs.org/rex/-/rex-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "10b5d8bc4a8c4558c7f702148bb246b7c15ef5c9", + "tarball": "http://registry.npmjs.org/rex/-/rex-0.4.2.tgz" + } + }, + "keywords": [ + "browser", + "js", + "common.js" + ], + "url": "http://registry.npmjs.org/rex/" + }, + "rfb": { + "name": "rfb", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + }, + { + "name": "pkrumins", + "email": "peteris.krumins@gmail.com" + } + ], + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-rfb.git" + }, + "description": "Implements the client-side of the rfb protocol that vnc uses", + "time": { + "modified": "2011-06-25T00:08:49.748Z", + "created": "2011-04-07T23:18:42.535Z", + "0.0.1": "2011-04-07T23:18:42.535Z", + "0.0.3": "2011-04-07T23:18:42.535Z", + "0.0.4": "2011-04-07T23:18:42.535Z", + "0.0.5": "2011-04-07T23:18:42.535Z", + "0.0.6": "2011-04-07T23:18:42.535Z", + "0.0.7": "2011-04-07T23:18:42.535Z", + "0.0.8": "2011-04-07T23:18:42.535Z", + "0.0.9": "2011-04-07T23:22:14.844Z", + "0.1.0": "2011-05-11T06:49:25.564Z", + "0.1.1": "2011-05-14T06:05:01.187Z", + "0.1.2": "2011-06-07T00:43:17.672Z", + "0.1.3": "2011-06-24T23:04:54.646Z", + "0.1.4": "2011-06-25T00:08:49.748Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/rfb/0.0.1", + "0.0.3": "http://registry.npmjs.org/rfb/0.0.3", + "0.0.4": "http://registry.npmjs.org/rfb/0.0.4", + "0.0.5": "http://registry.npmjs.org/rfb/0.0.5", + "0.0.6": "http://registry.npmjs.org/rfb/0.0.6", + "0.0.7": "http://registry.npmjs.org/rfb/0.0.7", + "0.0.8": "http://registry.npmjs.org/rfb/0.0.8", + "0.0.9": "http://registry.npmjs.org/rfb/0.0.9", + "0.1.0": "http://registry.npmjs.org/rfb/0.1.0", + "0.1.1": "http://registry.npmjs.org/rfb/0.1.1", + "0.1.2": "http://registry.npmjs.org/rfb/0.1.2", + "0.1.3": "http://registry.npmjs.org/rfb/0.1.3", + "0.1.4": "http://registry.npmjs.org/rfb/0.1.4" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/rfb/-/rfb-0.0.1.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/rfb/-/rfb-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://registry.npmjs.org/rfb/-/rfb-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://registry.npmjs.org/rfb/-/rfb-0.0.5.tgz" + }, + "0.0.6": { + "tarball": "http://registry.npmjs.org/rfb/-/rfb-0.0.6.tgz" + }, + "0.0.7": { + "tarball": "http://registry.npmjs.org/rfb/-/rfb-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "52163563e91f2e33b7f25b79d095699ed961d913", + "tarball": "http://registry.npmjs.org/rfb/-/rfb-0.0.8.tgz" + }, + "0.0.9": { + "tarball": "http://registry.npmjs.org/rfb/-/rfb-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "0dbe7a6b3eebb116a178488ae678229b5686f30a", + "tarball": "http://registry.npmjs.org/rfb/-/rfb-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "0a2c2c76b4a3326ac3469fc18519b49a479f76f4", + "tarball": "http://registry.npmjs.org/rfb/-/rfb-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "292cfb3b4a7d8cc2ff755890d248f8cb44b42d91", + "tarball": "http://registry.npmjs.org/rfb/-/rfb-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "40a83f9e1c9bf4046c7a5c4568392eefc2826daa", + "tarball": "http://registry.npmjs.org/rfb/-/rfb-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "1b73518130dce08d4aacbeb0d7dd7c92aa66c581", + "tarball": "http://registry.npmjs.org/rfb/-/rfb-0.1.4.tgz" + } + }, + "url": "http://registry.npmjs.org/rfb/" + }, + "rget": { + "name": "rget", + "description": "Access your properties by string. Recursively!", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "mmalecki", + "email": "maciej.malecki@notimplemented.org" + } + ], + "time": { + "modified": "2011-11-07T21:51:27.388Z", + "created": "2011-11-04T15:53:49.076Z", + "0.0.1": "2011-11-04T15:53:50.821Z", + "1.0.0": "2011-11-07T21:51:27.388Z" + }, + "author": { + "name": "Maciej Małecki", + "email": "maciej.malecki@notimplemented.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/mmalecki/node-rget.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/rget/0.0.1", + "1.0.0": "http://registry.npmjs.org/rget/1.0.0" + }, + "dist": { + "0.0.1": { + "shasum": "c7a928441534d07cd52700740fc8ec961266ae7e", + "tarball": "http://registry.npmjs.org/rget/-/rget-0.0.1.tgz" + }, + "1.0.0": { + "shasum": "b6e318b9f2202f0aa1af80a5eead36d219b299b5", + "tarball": "http://registry.npmjs.org/rget/-/rget-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/rget/" + }, + "rhyme": { + "name": "rhyme", + "description": "A rhyming dictionary", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-05-02T19:05:53.170Z", + "created": "2011-04-30T03:20:16.758Z", + "0.0.1": "2011-04-30T03:20:17.559Z", + "0.0.2": "2011-05-02T08:19:48.976Z", + "0.0.3": "2011-05-02T19:05:53.170Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-rhyme.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/rhyme/0.0.1", + "0.0.2": "http://registry.npmjs.org/rhyme/0.0.2", + "0.0.3": "http://registry.npmjs.org/rhyme/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "f8bc3ec968f520fea2fa3bd8f6617e08dbe28d86", + "tarball": "http://registry.npmjs.org/rhyme/-/rhyme-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "9814a4396898946fadb656b4ffc4696b50b59f44", + "tarball": "http://registry.npmjs.org/rhyme/-/rhyme-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "fdbf191651edaf227300206f2f6a1ea035995149", + "tarball": "http://registry.npmjs.org/rhyme/-/rhyme-0.0.3.tgz" + } + }, + "keywords": [ + "rhyme", + "meter", + "poem", + "poetry", + "song", + "phonemes", + "dictionary", + "syllables", + "pronounce", + "pronunciation" + ], + "url": "http://registry.npmjs.org/rhyme/" + }, + "riak-entity": { + "name": "riak-entity", + "description": "Tiny module on top of riak-js", + "dist-tags": { + "latest": "0.1.4" + }, + "readme": "# riak-entity\n\nTiny module on top of `riak-js` that allows you to work with Riak in OO style.\n\n## License\n\n(The MIT License)\n\nCopyright (c) 2011 CircuitHub., http://circuithub.com/\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n", + "maintainers": [ + { + "name": "circuithub", + "email": "developers@circuithub.com" + } + ], + "time": { + "modified": "2011-12-09T22:39:26.377Z", + "created": "2011-12-04T15:27:03.221Z", + "0.1.0": "2011-12-04T15:27:05.520Z", + "0.1.1": "2011-12-04T15:36:24.214Z", + "0.1.2": "2011-12-04T15:40:33.497Z", + "0.1.3": "2011-12-08T23:03:09.550Z", + "0.1.4": "2011-12-09T22:39:26.377Z" + }, + "author": { + "name": "CircuitHub", + "url": "circuithub.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/circuithub/riak-entity.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/riak-entity/0.1.0", + "0.1.1": "http://registry.npmjs.org/riak-entity/0.1.1", + "0.1.2": "http://registry.npmjs.org/riak-entity/0.1.2", + "0.1.3": "http://registry.npmjs.org/riak-entity/0.1.3", + "0.1.4": "http://registry.npmjs.org/riak-entity/0.1.4" + }, + "dist": { + "0.1.0": { + "shasum": "e0c123a90d986a91e66719f2697972f7a5793a51", + "tarball": "http://registry.npmjs.org/riak-entity/-/riak-entity-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "a45f3a4e94257dccf92338cb55c09a4c951456e5", + "tarball": "http://registry.npmjs.org/riak-entity/-/riak-entity-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "aa9648f962e8e59be6cd122c41b723947f5a8f39", + "tarball": "http://registry.npmjs.org/riak-entity/-/riak-entity-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "98bb3b14fb3192ced39622cc89c03effba32eb0a", + "tarball": "http://registry.npmjs.org/riak-entity/-/riak-entity-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "86f12b8f112059b35f3241acd92e6502f0399ed9", + "tarball": "http://registry.npmjs.org/riak-entity/-/riak-entity-0.1.4.tgz" + } + }, + "url": "http://registry.npmjs.org/riak-entity/" + }, + "riak-js": { + "name": "riak-js", + "description": "Riak client with support for HTTP and Protocol Buffers", + "dist-tags": { + "latest": "0.4.1" + }, + "maintainers": [ + { + "name": "frank06", + "email": "francisco.treacy@gmail.com" + } + ], + "time": { + "modified": "2011-10-05T12:31:33.685Z", + "created": "2011-01-06T16:01:27.829Z", + "0.2.1": "2011-01-06T16:01:27.829Z", + "0.2.2f": "2011-01-06T16:01:27.829Z", + "0.3.0beta": "2011-01-06T16:01:27.829Z", + "0.3.0beta2": "2011-01-06T16:01:27.829Z", + "0.3.0beta3": "2011-01-06T16:01:27.829Z", + "0.3.0beta4": "2011-01-06T16:01:27.829Z", + "0.3.0beta5": "2011-01-06T16:01:27.829Z", + "0.3.0beta6": "2011-02-10T18:50:32.342Z", + "0.3.6": "2011-02-27T23:37:43.736Z", + "0.4.0beta": "2011-03-30T20:57:26.206Z", + "0.4.0rc1": "2011-04-07T22:53:01.304Z", + "0.4.0rc2": "2011-05-05T21:47:31.871Z", + "0.4.0rc3": "2011-05-21T13:02:35.890Z", + "0.4.0": "2011-06-20T17:56:18.658Z", + "0.4.1": "2011-10-05T12:31:33.685Z" + }, + "users": { + "isaacs": true + }, + "versions": { + "0.2.1": "http://registry.npmjs.org/riak-js/0.2.1", + "0.2.2f": "http://registry.npmjs.org/riak-js/0.2.2f", + "0.3.0beta": "http://registry.npmjs.org/riak-js/0.3.0beta", + "0.3.0beta2": "http://registry.npmjs.org/riak-js/0.3.0beta2", + "0.3.0beta3": "http://registry.npmjs.org/riak-js/0.3.0beta3", + "0.3.0beta4": "http://registry.npmjs.org/riak-js/0.3.0beta4", + "0.3.0beta5": "http://registry.npmjs.org/riak-js/0.3.0beta5", + "0.3.0beta6": "http://registry.npmjs.org/riak-js/0.3.0beta6", + "0.3.6": "http://registry.npmjs.org/riak-js/0.3.6", + "0.4.0beta": "http://registry.npmjs.org/riak-js/0.4.0beta", + "0.4.0rc1": "http://registry.npmjs.org/riak-js/0.4.0rc1", + "0.4.0rc2": "http://registry.npmjs.org/riak-js/0.4.0rc2", + "0.4.0rc3": "http://registry.npmjs.org/riak-js/0.4.0rc3", + "0.4.0": "http://registry.npmjs.org/riak-js/0.4.0", + "0.4.1": "http://registry.npmjs.org/riak-js/0.4.1" + }, + "dist": { + "0.2.1": { + "tarball": "http://registry.npmjs.org/riak-js/-/riak-js-0.2.1.tgz" + }, + "0.2.2f": { + "tarball": "http://registry.npmjs.org/riak-js/-/riak-js-0.2.2f.tgz" + }, + "0.3.0beta": { + "tarball": "http://registry.npmjs.org/riak-js/-/riak-js-0.3.0beta.tgz" + }, + "0.3.0beta2": { + "tarball": "http://registry.npmjs.org/riak-js/-/riak-js-0.3.0beta2.tgz" + }, + "0.3.0beta3": { + "tarball": "http://registry.npmjs.org/riak-js/-/riak-js-0.3.0beta3.tgz" + }, + "0.3.0beta4": { + "shasum": "d7c71e3b9d716d0a107cc87959cea62793a2ab12", + "tarball": "http://registry.npmjs.org/riak-js/-/riak-js-0.3.0beta4.tgz" + }, + "0.3.0beta5": { + "shasum": "31f3c34c5097a8ab73fac4419d2ff474f879b2c9", + "tarball": "http://registry.npmjs.org/riak-js/-/riak-js-0.3.0beta5.tgz" + }, + "0.3.0beta6": { + "shasum": "c5024b5c82b3a5a32731cdb4026a43fb769a809e", + "tarball": "http://registry.npmjs.org/riak-js/-/riak-js-0.3.0beta6.tgz" + }, + "0.3.6": { + "shasum": "592ab8897d0bd5c8f7c27f23ce97a5682a4b119d", + "tarball": "http://registry.npmjs.org/riak-js/-/riak-js-0.3.6.tgz" + }, + "0.4.0beta": { + "shasum": "c45d9a232a84143d4ecce5cf11c9fff10c82cafa", + "tarball": "http://registry.npmjs.org/riak-js/-/riak-js-0.4.0beta.tgz" + }, + "0.4.0rc1": { + "shasum": "df95312f67a1c59e2832a96e61ddea2aaafc5eb1", + "tarball": "http://registry.npmjs.org/riak-js/-/riak-js-0.4.0rc1.tgz" + }, + "0.4.0rc2": { + "shasum": "5151433d670a00db897cdc9fb0ca1ffbbca8a6cf", + "tarball": "http://registry.npmjs.org/riak-js/-/riak-js-0.4.0rc2.tgz" + }, + "0.4.0rc3": { + "shasum": "83095938b1422ef75b9a57d81cd072f88b2e6ca7", + "tarball": "http://registry.npmjs.org/riak-js/-/riak-js-0.4.0rc3.tgz" + }, + "0.4.0": { + "shasum": "58092839d31107a65e95c3d234546d2f54bd3e8f", + "tarball": "http://registry.npmjs.org/riak-js/-/riak-js-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "65c1113f9496d394b3218f1bacc09b900e1344b5", + "tarball": "http://registry.npmjs.org/riak-js/-/riak-js-0.4.1.tgz" + } + }, + "keywords": [ + "riak", + "nosql", + "database", + "http", + "protobuf" + ], + "url": "http://registry.npmjs.org/riak-js/" + }, + "riakqp": { + "name": "riakqp", + "description": "A utility to prototype riak MapReduce queries efficiently with coffescript.", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "drtom", + "email": "DrTom@schank.ch" + } + ], + "time": { + "modified": "2011-06-18T20:45:10.245Z", + "created": "2011-06-18T10:40:37.818Z", + "0.0.2": "2011-06-18T10:40:38.583Z", + "0.0.3": "2011-06-18T10:41:40.760Z", + "0.0.4": "2011-06-18T20:45:10.245Z" + }, + "author": { + "name": "Thomas Schank", + "email": "DrTom@schank.ch", + "url": "http://Dr.Th.Schank.ch/" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/riakqp/0.0.2", + "0.0.3": "http://registry.npmjs.org/riakqp/0.0.3", + "0.0.4": "http://registry.npmjs.org/riakqp/0.0.4" + }, + "dist": { + "0.0.2": { + "shasum": "d9b5c56a56aebb9d88e07cb131113cf983f03ec0", + "tarball": "http://registry.npmjs.org/riakqp/-/riakqp-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "6ebd4d7b608253edb7a50a1715b7c6a889031c6a", + "tarball": "http://registry.npmjs.org/riakqp/-/riakqp-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "8f9af906f76ba2f0e5ff57d8f4a3ebc0d9f4c261", + "tarball": "http://registry.npmjs.org/riakqp/-/riakqp-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/riakqp/" + }, + "rightjs": { + "name": "rightjs", + "description": "RightJS server-side version", + "dist-tags": { + "latest": "2.2.3" + }, + "maintainers": [ + { + "name": "nikolay_nemshilov", + "email": "nemshilov@gmail.com" + } + ], + "time": { + "modified": "2011-08-19T16:05:14.788Z", + "created": "2011-02-05T20:02:33.603Z", + "2.2.1": "2011-02-05T20:02:34.156Z", + "2.2.2": "2011-02-12T13:37:01.805Z", + "2.2.3": "2011-03-21T06:38:35.464Z" + }, + "author": { + "name": "Nikolay Nemshilov" + }, + "repository": { + "type": "git", + "url": "git://github.com/RightJS/rightjs-npm.git" + }, + "versions": { + "2.2.1": "http://registry.npmjs.org/rightjs/2.2.1", + "2.2.2": "http://registry.npmjs.org/rightjs/2.2.2", + "2.2.3": "http://registry.npmjs.org/rightjs/2.2.3" + }, + "dist": { + "2.2.1": { + "shasum": "68fab3e93b021f2f95d5a1bbf296190a1f8474da", + "tarball": "http://registry.npmjs.org/rightjs/-/rightjs-2.2.1.tgz" + }, + "2.2.2": { + "shasum": "6aed8f61cd9c3004ad766d1554ec5a157aa801b4", + "tarball": "http://registry.npmjs.org/rightjs/-/rightjs-2.2.2.tgz" + }, + "2.2.3": { + "shasum": "a8c8562cfca4bd76395f2f5c1b64309965541d37", + "tarball": "http://registry.npmjs.org/rightjs/-/rightjs-2.2.3.tgz" + } + }, + "url": "http://registry.npmjs.org/rightjs/" + }, + "rimraf": { + "name": "rimraf", + "description": "A deep deletion module for node (like `rm -rf`)", + "dist-tags": { + "latest": "1.0.9" + }, + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "time": { + "modified": "2011-12-03T16:52:51.833Z", + "created": "2011-02-08T08:55:37.756Z", + "1.0.0": "2011-02-08T08:55:39.437Z", + "1.0.1": "2011-04-13T18:06:00.422Z", + "1.0.2": "2011-05-30T18:33:02.093Z", + "1.0.4": "2011-08-07T03:59:00.634Z", + "1.0.5": "2011-09-03T00:20:05.595Z", + "1.0.6": "2011-09-03T00:30:43.110Z", + "1.0.7": "2011-09-25T00:26:39.319Z", + "1.0.8": "2011-10-07T18:25:44.535Z", + "1.0.9": "2011-12-03T16:52:51.833Z" + }, + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me/" + }, + "repository": { + "type": "git", + "url": "git://github.com/isaacs/rimraf.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/rimraf/1.0.0", + "1.0.1": "http://registry.npmjs.org/rimraf/1.0.1", + "1.0.2": "http://registry.npmjs.org/rimraf/1.0.2", + "1.0.4": "http://registry.npmjs.org/rimraf/1.0.4", + "1.0.5": "http://registry.npmjs.org/rimraf/1.0.5", + "1.0.6": "http://registry.npmjs.org/rimraf/1.0.6", + "1.0.7": "http://registry.npmjs.org/rimraf/1.0.7", + "1.0.8": "http://registry.npmjs.org/rimraf/1.0.8", + "1.0.9": "http://registry.npmjs.org/rimraf/1.0.9" + }, + "dist": { + "1.0.0": { + "shasum": "5797e55b587c77fc3e5b61051e429d1b00310840", + "tarball": "http://registry.npmjs.org/rimraf/-/rimraf-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "8ff61e034ccd6f5e687b3d4f4da9247c4da7dd46", + "tarball": "http://registry.npmjs.org/rimraf/-/rimraf-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "4cc292a756559123ee9e4995cffb783e769b50a3", + "tarball": "http://registry.npmjs.org/rimraf/-/rimraf-1.0.2.tgz" + }, + "1.0.4": { + "shasum": "2137e3d9a45c547b8df9f1309b8fbca29ea20822", + "tarball": "http://registry.npmjs.org/rimraf/-/rimraf-1.0.4.tgz" + }, + "1.0.5": { + "shasum": "2c988219578bc569e461b9202bc22f5dbfa5b3e3", + "tarball": "http://registry.npmjs.org/rimraf/-/rimraf-1.0.5.tgz" + }, + "1.0.6": { + "shasum": "8e404afc4edc5ac544dce5441a148e52657e5860", + "tarball": "http://registry.npmjs.org/rimraf/-/rimraf-1.0.6.tgz" + }, + "1.0.7": { + "shasum": "9b664339fb366bf669d79672718336eba8d6adb4", + "tarball": "http://registry.npmjs.org/rimraf/-/rimraf-1.0.7.tgz" + }, + "1.0.8": { + "shasum": "d8808068156c5135b16842348304b92c86f23bd1", + "tarball": "http://registry.npmjs.org/rimraf/-/rimraf-1.0.8.tgz" + }, + "1.0.9": { + "shasum": "be4801ff76c2ba6f1c50c78e9700eb1d21f239f1", + "tarball": "http://registry.npmjs.org/rimraf/-/rimraf-1.0.9.tgz" + } + }, + "url": "http://registry.npmjs.org/rimraf/" + }, + "rinuts": { + "name": "rinuts", + "description": "A service which exposes tests through a RESTful api and allows for querying and running them, using http requests", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "urigolani", + "email": "t-urig@microsoft.com" + } + ], + "time": { + "modified": "2011-10-23T14:38:35.038Z", + "created": "2011-10-23T14:38:30.012Z", + "0.0.1": "2011-10-23T14:38:35.038Z" + }, + "author": { + "name": "Uri Golani", + "email": "urigolani@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/urigolani/rinuts.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/rinuts/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "68e5fe783ac4e15b3b469eb88b93d5e06e7b7d45", + "tarball": "http://registry.npmjs.org/rinuts/-/rinuts-0.0.1.tgz" + } + }, + "keywords": [ + "rinuts", + "rest", + "restful", + "test" + ], + "url": "http://registry.npmjs.org/rinuts/" + }, + "rinuts-nodeunitDriver": { + "name": "rinuts-nodeunitDriver", + "description": "A nodeunit driver using rinuts. Enumerates and runs single nodeunit tests", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "urigolani", + "email": "t-urig@microsoft.com" + } + ], + "time": { + "modified": "2011-10-23T15:52:54.499Z", + "created": "2011-10-23T15:52:49.458Z", + "0.0.1": "2011-10-23T15:52:54.499Z" + }, + "author": { + "name": "Uri Golani", + "email": "urigolani@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/urigolani/rinuts-NodeunitDriver.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/rinuts-nodeunitDriver/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "05511daaedb62e96f8568e31704738bfb5d4aece", + "tarball": "http://registry.npmjs.org/rinuts-nodeunitDriver/-/rinuts-nodeunitDriver-0.0.1.tgz" + } + }, + "keywords": [ + "nodeunit", + "rest", + "restful", + "test", + "rinuts", + "nodeunitDriver", + "rinuts-nodeunitDriver" + ], + "url": "http://registry.npmjs.org/rinuts-nodeunitDriver/" + }, + "rio": { + "name": "rio", + "description": "Integration with Rserve, a TCP/IP server for R framework", + "dist-tags": { + "latest": "0.6.0" + }, + "maintainers": [ + { + "name": "icebox", + "email": "albertosantini@gmail.com" + } + ], + "time": { + "modified": "2011-11-20T15:46:38.595Z", + "created": "2011-08-04T09:23:11.989Z", + "0.1.0": "2011-08-04T09:23:20.804Z", + "0.2.0": "2011-08-08T17:00:49.212Z", + "0.3.0": "2011-08-10T21:22:04.162Z", + "0.3.1": "2011-08-11T15:01:17.539Z", + "0.4.0": "2011-09-15T18:24:29.315Z", + "0.5.0": "2011-09-25T17:49:35.663Z", + "0.5.1": "2011-09-26T14:44:12.847Z", + "0.5.2": "2011-11-15T08:23:18.523Z", + "0.5.3": "2011-11-17T10:49:16.122Z", + "0.5.5": "2011-11-17T13:56:43.609Z", + "0.5.6": "2011-11-17T22:34:33.487Z", + "0.6.0": "2011-11-20T15:46:38.595Z" + }, + "author": { + "name": "Alberto Santini" + }, + "repository": { + "type": "git", + "url": "git://github.com/albertosantini/node-rio.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/rio/0.1.0", + "0.2.0": "http://registry.npmjs.org/rio/0.2.0", + "0.3.0": "http://registry.npmjs.org/rio/0.3.0", + "0.3.1": "http://registry.npmjs.org/rio/0.3.1", + "0.4.0": "http://registry.npmjs.org/rio/0.4.0", + "0.5.0": "http://registry.npmjs.org/rio/0.5.0", + "0.5.1": "http://registry.npmjs.org/rio/0.5.1", + "0.5.2": "http://registry.npmjs.org/rio/0.5.2", + "0.5.3": "http://registry.npmjs.org/rio/0.5.3", + "0.5.5": "http://registry.npmjs.org/rio/0.5.5", + "0.5.6": "http://registry.npmjs.org/rio/0.5.6", + "0.6.0": "http://registry.npmjs.org/rio/0.6.0" + }, + "dist": { + "0.1.0": { + "shasum": "7e8416e21627606b4a6fcc2b55bef3e5cb8628f1", + "tarball": "http://registry.npmjs.org/rio/-/rio-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "585d2297d820fc5ed81e4b72ff7d36ada2a297e7", + "tarball": "http://registry.npmjs.org/rio/-/rio-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "94947c21ceba624fce7873556c387bfd182faec7", + "tarball": "http://registry.npmjs.org/rio/-/rio-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "0a994702bef0c6a496a45036dc2b09a825194f42", + "tarball": "http://registry.npmjs.org/rio/-/rio-0.3.1.tgz" + }, + "0.4.0": { + "shasum": "acc3a32e5b5128efa29491a4695f721cba7763c4", + "tarball": "http://registry.npmjs.org/rio/-/rio-0.4.0.tgz" + }, + "0.5.0": { + "shasum": "3b5b0125c70a143a66b1e5e17a557511312a6abe", + "tarball": "http://registry.npmjs.org/rio/-/rio-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "c785a13a7dfa1667ba9902112cb6dadad777ac32", + "tarball": "http://registry.npmjs.org/rio/-/rio-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "45b5fb1ed8c5f10519b44e8035c99670ecfead84", + "tarball": "http://registry.npmjs.org/rio/-/rio-0.5.2.tgz" + }, + "0.5.3": { + "shasum": "7b0370fc1e698996165e629142f1506229a03251", + "tarball": "http://registry.npmjs.org/rio/-/rio-0.5.3.tgz" + }, + "0.5.5": { + "shasum": "81182c67bc2a0ee20d99134f76b5b478f3cfd7ab", + "tarball": "http://registry.npmjs.org/rio/-/rio-0.5.5.tgz" + }, + "0.5.6": { + "shasum": "e6c73f8673eee0412af55c169551eb899f33c777", + "tarball": "http://registry.npmjs.org/rio/-/rio-0.5.6.tgz" + }, + "0.6.0": { + "shasum": "5a2f51ef505fdba59cd64f275638feb7d04ff6f0", + "tarball": "http://registry.npmjs.org/rio/-/rio-0.6.0.tgz" + } + }, + "keywords": [ + "Rserve", + "R framework" + ], + "url": "http://registry.npmjs.org/rio/" + }, + "ristretto": { + "name": "ristretto", + "description": "A simple dependency management and javascript concatenation library.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "adrien", + "email": "adrien@friggeri.net" + } + ], + "time": { + "modified": "2011-01-08T00:41:57.810Z", + "created": "2011-01-08T00:41:57.236Z", + "0.0.2": "2011-01-08T00:41:57.810Z" + }, + "author": { + "name": "Adrien Friggeri", + "url": "http://friggeri.net/" + }, + "repository": { + "type": "git", + "url": "http://github.com/afriggeri/ristretto.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/ristretto/0.0.2" + }, + "dist": { + "0.0.2": { + "shasum": "15ef9d43f5441ffe02f4d3bc63fbd2c12cf2068d", + "tarball": "http://registry.npmjs.org/ristretto/-/ristretto-0.0.2.tgz" + } + }, + "keywords": [ + "javascript", + "language", + "coffeescript", + "compiler" + ], + "url": "http://registry.npmjs.org/ristretto/" + }, + "river": { + "name": "river", + "description": "SQL Query language over unbounded event streams", + "dist-tags": { + "latest": "0.3.3" + }, + "maintainers": [ + { + "name": "andykent", + "email": "andy.kent@me.com" + } + ], + "time": { + "modified": "2011-12-07T15:05:58.430Z", + "created": "2011-09-30T14:53:59.249Z", + "0.1.0": "2011-12-07T15:05:58.430Z", + "0.1.1": "2011-12-07T15:05:58.430Z", + "0.1.2": "2011-12-07T15:05:58.430Z", + "0.1.3": "2011-12-07T15:05:58.430Z", + "0.1.4": "2011-12-07T15:05:58.430Z", + "0.1.5": "2011-12-07T15:05:58.430Z", + "0.1.6": "2011-12-07T15:05:58.430Z", + "0.1.7": "2011-12-07T15:05:58.430Z", + "0.1.8": "2011-12-07T15:05:58.430Z", + "0.2.0": "2011-12-07T15:05:58.430Z", + "0.2.1": "2011-12-07T15:05:58.430Z", + "0.2.2": "2011-12-07T15:05:58.430Z", + "0.2.3": "2011-12-07T15:05:58.430Z", + "0.2.4": "2011-12-07T15:05:58.430Z", + "0.2.5": "2011-12-07T15:05:58.430Z", + "0.2.6": "2011-12-07T15:05:58.430Z", + "0.2.8": "2011-10-26T19:23:06.015Z", + "0.3.0": "2011-11-29T00:05:12.584Z", + "0.3.1": "2011-12-02T23:13:34.678Z", + "0.3.2": "2011-12-04T10:57:52.214Z", + "0.3.3": "2011-12-07T15:05:58.430Z" + }, + "author": { + "name": "Andy Kent", + "email": "andy.kent@me.com", + "url": "http://adkent.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/andykent/river.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/river/0.1.0", + "0.1.1": "http://registry.npmjs.org/river/0.1.1", + "0.1.2": "http://registry.npmjs.org/river/0.1.2", + "0.1.3": "http://registry.npmjs.org/river/0.1.3", + "0.1.4": "http://registry.npmjs.org/river/0.1.4", + "0.1.5": "http://registry.npmjs.org/river/0.1.5", + "0.1.6": "http://registry.npmjs.org/river/0.1.6", + "0.1.7": "http://registry.npmjs.org/river/0.1.7", + "0.1.8": "http://registry.npmjs.org/river/0.1.8", + "0.2.0": "http://registry.npmjs.org/river/0.2.0", + "0.2.1": "http://registry.npmjs.org/river/0.2.1", + "0.2.2": "http://registry.npmjs.org/river/0.2.2", + "0.2.3": "http://registry.npmjs.org/river/0.2.3", + "0.2.4": "http://registry.npmjs.org/river/0.2.4", + "0.2.5": "http://registry.npmjs.org/river/0.2.5", + "0.2.6": "http://registry.npmjs.org/river/0.2.6", + "0.2.8": "http://registry.npmjs.org/river/0.2.8", + "0.3.0": "http://registry.npmjs.org/river/0.3.0", + "0.3.1": "http://registry.npmjs.org/river/0.3.1", + "0.3.2": "http://registry.npmjs.org/river/0.3.2", + "0.3.3": "http://registry.npmjs.org/river/0.3.3" + }, + "dist": { + "0.1.0": { + "shasum": "f93425596222fd0a1490583f104919b6b53ab2fc", + "tarball": "http://registry.npmjs.org/river/-/river-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "fddf45181c406996e81a27283be8471308867264", + "tarball": "http://registry.npmjs.org/river/-/river-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "374a55d438f4b9834741b0f7eb80f9a60bacddbb", + "tarball": "http://registry.npmjs.org/river/-/river-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "e78713169f9bd6f997362f794a14fde1c38d54ca", + "tarball": "http://registry.npmjs.org/river/-/river-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "55c89406a88f37db0e36269b2637aab80c27dbf8", + "tarball": "http://registry.npmjs.org/river/-/river-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "c3f467720c9baff522059cfc9cd3b98f312fb716", + "tarball": "http://registry.npmjs.org/river/-/river-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "c8b2e8d45203a345d581138d82a45f5f19c3b8f2", + "tarball": "http://registry.npmjs.org/river/-/river-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "6e0e62c29abc322778eddbf137f84251d04684df", + "tarball": "http://registry.npmjs.org/river/-/river-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "0566db2822e9330e901dfa7860b374a2158709a8", + "tarball": "http://registry.npmjs.org/river/-/river-0.1.8.tgz" + }, + "0.2.0": { + "shasum": "10e912f9caf752ce5bdb844e41ffafbf9deca23b", + "tarball": "http://registry.npmjs.org/river/-/river-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "9486d44a193c3796b716baba64f826441f893ab8", + "tarball": "http://registry.npmjs.org/river/-/river-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "91fa4f1df45219c0d9b8863712bc8f0f77fb29c3", + "tarball": "http://registry.npmjs.org/river/-/river-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "41d6974568a20513af611349ae122c19b37647b1", + "tarball": "http://registry.npmjs.org/river/-/river-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "5915de443e0be68c45ee194abc633a56dc6ecf3f", + "tarball": "http://registry.npmjs.org/river/-/river-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "0e06be5365003d5d382ae7c465cd95f48d88cc74", + "tarball": "http://registry.npmjs.org/river/-/river-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "ddf0ee7e24d7c7fff681392aafcc1f4a1fec12ce", + "tarball": "http://registry.npmjs.org/river/-/river-0.2.6.tgz" + }, + "0.2.8": { + "shasum": "01e12596e242ec9f90475c5d6ff7b446c02c4733", + "tarball": "http://registry.npmjs.org/river/-/river-0.2.8.tgz" + }, + "0.3.0": { + "shasum": "4bf60e6c44ac21deb4eb46304bf435a55efd8a73", + "tarball": "http://registry.npmjs.org/river/-/river-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "df4ae3b89ea458a70b6d2a129a1db9361e2f4c4c", + "tarball": "http://registry.npmjs.org/river/-/river-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "6d5e5be2b6c39940b2965d67b0a6375cc9d4cb4f", + "tarball": "http://registry.npmjs.org/river/-/river-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "62842c627c550fa43b5ab78ee816c2da91612926", + "tarball": "http://registry.npmjs.org/river/-/river-0.3.3.tgz" + } + }, + "url": "http://registry.npmjs.org/river/" + }, + "road": { + "name": "road", + "description": "A route helper for express.", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "kishorenc", + "email": "kishore@kishorelive.com" + } + ], + "time": { + "modified": "2011-11-28T02:02:35.309Z", + "created": "2011-11-14T13:27:50.406Z", + "0.0.1": "2011-11-14T13:36:44.424Z", + "0.0.2": "2011-11-14T13:39:29.904Z", + "0.0.3": "2011-11-28T02:02:35.309Z" + }, + "author": { + "name": "Kishore Nallan", + "email": "kishore@kishorelive.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/kishorenc/road.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/road/0.0.1", + "0.0.2": "http://registry.npmjs.org/road/0.0.2", + "0.0.3": "http://registry.npmjs.org/road/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "ae0f256a848dfdf9475caabf7f4d21acac31b060", + "tarball": "http://registry.npmjs.org/road/-/road-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f72a85595b2f352868c78f56f64b22c887911884", + "tarball": "http://registry.npmjs.org/road/-/road-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "5d4f0d81c41a8d6726d091392a3c28fd2c7fa805", + "tarball": "http://registry.npmjs.org/road/-/road-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/road/" + }, + "roar": { + "name": "roar", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "pgte", + "email": "pedro.teixeira@gmail.com" + } + ], + "time": { + "modified": "2011-11-11T21:26:39.151Z", + "created": "2011-11-11T19:51:23.302Z", + "0.0.1": "2011-11-11T19:52:59.059Z", + "0.1.0": "2011-11-11T20:57:39.028Z", + "0.1.1": "2011-11-11T21:26:39.151Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/roar/0.0.1", + "0.1.0": "http://registry.npmjs.org/roar/0.1.0", + "0.1.1": "http://registry.npmjs.org/roar/0.1.1" + }, + "dist": { + "0.0.1": { + "shasum": "5e165df64a1e74fed1a1756009bdbf791c0a40a1", + "tarball": "http://registry.npmjs.org/roar/-/roar-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "d693b27f5ccf2e2a99ce062f18a46e7aefa23092", + "tarball": "http://registry.npmjs.org/roar/-/roar-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "7dfd29dcbdb278b024f01e99fe5a1ecf0e29dcfa", + "tarball": "http://registry.npmjs.org/roar/-/roar-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/roar/" + }, + "roast": { + "name": "roast", + "description": "CommonJS for compiled CoffeeScript.", + "dist-tags": { + "latest": "2.0.0" + }, + "maintainers": [ + { + "name": "chrislloyd", + "email": "christopher.lloyd@gmail.com" + } + ], + "author": { + "name": "Chris Lloyd", + "email": "christopher.lloyd@gmail.com", + "url": "http://thelincolnshirepoacher.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/chrislloyd/roast.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/roast/1.0.0", + "1.0.1": "http://registry.npmjs.org/roast/1.0.1", + "1.0.2": "http://registry.npmjs.org/roast/1.0.2", + "1.0.3": "http://registry.npmjs.org/roast/1.0.3", + "1.0.4": "http://registry.npmjs.org/roast/1.0.4", + "1.0.5": "http://registry.npmjs.org/roast/1.0.5", + "1.0.6": "http://registry.npmjs.org/roast/1.0.6", + "1.1.0": "http://registry.npmjs.org/roast/1.1.0", + "1.1.1": "http://registry.npmjs.org/roast/1.1.1", + "1.2.0": "http://registry.npmjs.org/roast/1.2.0", + "1.2.1": "http://registry.npmjs.org/roast/1.2.1", + "1.2.2": "http://registry.npmjs.org/roast/1.2.2", + "1.2.3": "http://registry.npmjs.org/roast/1.2.3", + "2.0.0": "http://registry.npmjs.org/roast/2.0.0" + }, + "dist": { + "1.0.0": { + "tarball": "http://packages:5984/roast/-/roast-1.0.0.tgz" + }, + "1.0.1": { + "tarball": "http://packages:5984/roast/-/roast-1.0.1.tgz" + }, + "1.0.2": { + "tarball": "http://packages:5984/roast/-/roast-1.0.2.tgz" + }, + "1.0.3": { + "tarball": "http://packages:5984/roast/-/roast-1.0.3.tgz" + }, + "1.0.4": { + "tarball": "http://packages:5984/roast/-/roast-1.0.4.tgz" + }, + "1.0.5": { + "tarball": "http://packages:5984/roast/-/roast-1.0.5.tgz" + }, + "1.0.6": { + "tarball": "http://packages:5984/roast/-/roast-1.0.6.tgz" + }, + "1.1.0": { + "tarball": "http://packages:5984/roast/-/roast-1.1.0.tgz" + }, + "1.1.1": { + "tarball": "http://packages:5984/roast/-/roast-1.1.1.tgz" + }, + "1.2.0": { + "tarball": "http://packages:5984/roast/-/roast-1.2.0.tgz" + }, + "1.2.1": { + "tarball": "http://packages:5984/roast/-/roast-1.2.1.tgz" + }, + "1.2.2": { + "tarball": "http://packages:5984/roast/-/roast-1.2.2.tgz" + }, + "1.2.3": { + "tarball": "http://packages:5984/roast/-/roast-1.2.3.tgz" + }, + "2.0.0": { + "tarball": "http://packages:5984/roast/-/roast-2.0.0.tgz" + } + }, + "keywords": [ + "coffee-script", + "coffeescript", + "commonjs", + "require" + ], + "url": "http://registry.npmjs.org/roast/" + }, + "robb": { + "name": "robb", + "description": "Simple type checker in JavaScript.", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "baggz", + "email": "hello@frantisekhaba.com" + } + ], + "time": { + "modified": "2011-07-24T17:00:40.756Z", + "created": "2011-07-12T08:05:11.137Z", + "0.1.0": "2011-07-12T08:05:11.967Z", + "0.2.0": "2011-07-24T17:00:40.756Z" + }, + "author": { + "name": "František Hába", + "email": "hello@frantisekhaba.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Baggz/Robb.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/robb/0.1.0", + "0.2.0": "http://registry.npmjs.org/robb/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "907b0f2cb2779a6a9a083c41ea020a3d734d767a", + "tarball": "http://registry.npmjs.org/robb/-/robb-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "7d6b10043ade207cecc9184a7d7b2a9d540339ad", + "tarball": "http://registry.npmjs.org/robb/-/robb-0.2.0.tgz" + } + }, + "keywords": [ + "utils", + "util", + "type checking", + "type checker", + "type", + "checker", + "isAlpha", + "isAlphanumeric", + "isArguments", + "isArray", + "isBoolean", + "isDate", + "isDecimal", + "isDefined", + "isElement", + "isEmail", + "isEmpty", + "isEven", + "isFinite", + "isFunction", + "isInt", + "isIp", + "isIpv4", + "isIpv6", + "isLowercase", + "isNaN", + "isNegative", + "isNull", + "isNumber", + "isObject", + "isOdd", + "isPercentage", + "isPort", + "isPositive", + "isPrime", + "isRegExp", + "isString", + "isUndefined", + "isUnsignedInt", + "isUppercase", + "isUrl", + "isWindow" + ], + "url": "http://registry.npmjs.org/robb/" + }, + "roboname": { + "name": "roboname", + "description": "Robot name generator", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "josephg", + "email": "josephg@gmail.com" + } + ], + "time": { + "modified": "2011-10-15T06:05:21.710Z", + "created": "2011-10-15T06:05:17.252Z", + "1.0.0": "2011-10-15T06:05:21.710Z" + }, + "author": { + "name": "Joseph Gentle", + "email": "josephg@gmail.com", + "url": "http://josephg.com/" + }, + "repository": { + "type": "git", + "url": "git@github.com:josephg/roboname.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/roboname/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "06c4b373707900d9607a99d9fbd5a5241a947161", + "tarball": "http://registry.npmjs.org/roboname/-/roboname-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/roboname/" + }, + "robots": { + "name": "robots", + "description": "Parser for robots.txt", + "dist-tags": { + "latest": "0.7.0" + }, + "maintainers": [ + { + "name": "ekalinin", + "email": "e.v.kalinin@gmail.com" + } + ], + "time": { + "modified": "2011-12-02T20:35:17.055Z", + "created": "2011-08-04T08:28:34.389Z", + "0.3.1": "2011-08-04T08:28:37.249Z", + "0.3.2": "2011-08-04T08:34:04.394Z", + "0.3.3": "2011-08-04T08:42:19.292Z", + "0.4.0": "2011-08-15T08:58:20.308Z", + "0.5.0": "2011-09-27T08:05:54.478Z", + "0.5.1": "2011-09-27T08:11:04.919Z", + "0.6.0": "2011-09-30T13:30:29.180Z", + "0.7.0": "2011-12-02T20:35:17.055Z" + }, + "author": { + "name": "Eugene Kalinin", + "email": "e.v.kalinin@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/ekalinin/robots.js.git" + }, + "versions": { + "0.3.1": "http://registry.npmjs.org/robots/0.3.1", + "0.3.2": "http://registry.npmjs.org/robots/0.3.2", + "0.3.3": "http://registry.npmjs.org/robots/0.3.3", + "0.4.0": "http://registry.npmjs.org/robots/0.4.0", + "0.5.0": "http://registry.npmjs.org/robots/0.5.0", + "0.5.1": "http://registry.npmjs.org/robots/0.5.1", + "0.6.0": "http://registry.npmjs.org/robots/0.6.0", + "0.7.0": "http://registry.npmjs.org/robots/0.7.0" + }, + "dist": { + "0.3.1": { + "shasum": "a4d32cfd19e3cd0d7f58df75d42493ae291616c0", + "tarball": "http://registry.npmjs.org/robots/-/robots-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "6582d87d63289117791bf2f09fd4b39d659ebf68", + "tarball": "http://registry.npmjs.org/robots/-/robots-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "178b83d935d81d0d85364f33c61b40df0f9e13f2", + "tarball": "http://registry.npmjs.org/robots/-/robots-0.3.3.tgz" + }, + "0.4.0": { + "shasum": "f5ab16ba6fd6bb199d485ac2244f7c689fbb4043", + "tarball": "http://registry.npmjs.org/robots/-/robots-0.4.0.tgz" + }, + "0.5.0": { + "shasum": "55314001c198a0636ab62ad56cc48f6382a339d1", + "tarball": "http://registry.npmjs.org/robots/-/robots-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "b86dffe3d715e093e1442c28f41af9691fe1e02c", + "tarball": "http://registry.npmjs.org/robots/-/robots-0.5.1.tgz" + }, + "0.6.0": { + "shasum": "b87882daa885a39ef75657f212cd42dbd3a6469f", + "tarball": "http://registry.npmjs.org/robots/-/robots-0.6.0.tgz" + }, + "0.7.0": { + "shasum": "1bd35868fafaa2d645dcddfdd9d4ae006a8b619f", + "tarball": "http://registry.npmjs.org/robots/-/robots-0.7.0.tgz" + } + }, + "keywords": [ + "robots.txt", + "robotstxt", + "parser" + ], + "url": "http://registry.npmjs.org/robots/" + }, + "robotskirt": { + "name": "robotskirt", + "description": "A node wrapper for the awesome C markdown parsing library, sundown.", + "dist-tags": { + "latest": "0.2.4" + }, + "maintainers": [ + { + "name": "benmills", + "email": "ben@Bmdev.org" + } + ], + "time": { + "modified": "2011-11-23T00:01:46.768Z", + "created": "2011-04-29T03:23:52.568Z", + "0.1.0": "2011-04-29T03:23:52.993Z", + "0.2.0": "2011-05-19T06:45:33.664Z", + "0.2.1": "2011-06-01T05:11:58.178Z", + "0.2.2": "2011-06-04T18:12:31.794Z", + "0.2.3": "2011-11-21T05:41:40.353Z", + "0.2.4": "2011-11-23T00:01:46.768Z" + }, + "author": { + "name": "Ben Mills", + "email": "ben@bmdev.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/benmills/robotskirt.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/robotskirt/0.1.0", + "0.2.0": "http://registry.npmjs.org/robotskirt/0.2.0", + "0.2.1": "http://registry.npmjs.org/robotskirt/0.2.1", + "0.2.2": "http://registry.npmjs.org/robotskirt/0.2.2", + "0.2.3": "http://registry.npmjs.org/robotskirt/0.2.3", + "0.2.4": "http://registry.npmjs.org/robotskirt/0.2.4" + }, + "dist": { + "0.1.0": { + "shasum": "311de17be2d8146769b0f29d208588f781679a87", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.5-darwin-10.7.0": { + "shasum": "e0c96113a5fc76c5e26fcfd7d3682c0cb69c9208", + "tarball": "http://registry.npmjs.org/robotskirt/-/robotskirt-0.1.0-0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.5-darwin-10.7.0.tgz" + }, + "0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.0": { + "shasum": "cb27ef7071b7b7fad7f9eacfe662a8b554d4ea0d", + "tarball": "http://registry.npmjs.org/robotskirt/-/robotskirt-0.1.0-0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/robotskirt/-/robotskirt-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "2d07b8e9a806698b5058318740521e5c5bc348e1", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.0": { + "shasum": "a7b5241cb51257d3541afb328563c5f9d5d8d3e0", + "tarball": "http://registry.npmjs.org/robotskirt/-/robotskirt-0.2.0-0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/robotskirt/-/robotskirt-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "418bb44a11634ec17e1bbde60b5a42ea3f311d52", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.0": { + "shasum": "3792271e6403a45326bb787e24acb266754f8b8d", + "tarball": "http://registry.npmjs.org/robotskirt/-/robotskirt-0.2.1-0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/robotskirt/-/robotskirt-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "71cad6ad142ebfcf11234a6c58c29b61017956eb", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.0": { + "shasum": "94cb2e7632e3c0f2ad0572cdaf25101ff3a5cc6f", + "tarball": "http://registry.npmjs.org/robotskirt/-/robotskirt-0.2.2-0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/robotskirt/-/robotskirt-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "5dab6a201e996ca2080bc4a9c130d2a7b2c22bc8", + "tarball": "http://registry.npmjs.org/robotskirt/-/robotskirt-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "aa039452f20437f9bf8a4de6c26e0175ccfa3e12", + "tarball": "http://registry.npmjs.org/robotskirt/-/robotskirt-0.2.4.tgz" + } + }, + "url": "http://registry.npmjs.org/robotskirt/" + }, + "robotstxt": { + "name": "robotstxt", + "description": "a robotstxt parser for node.js", + "dist-tags": { + "latest": "0.0.4-5" + }, + "maintainers": [ + { + "name": "franzenzenhofer", + "email": "f.enzenhofer@gmail.com" + } + ], + "time": { + "modified": "2011-10-28T21:07:58.208Z", + "created": "2011-05-26T10:16:57.110Z", + "0.0.1-0": "2011-05-26T10:16:57.876Z", + "0.0.1-4": "2011-06-02T16:22:52.338Z", + "0.0.1-5": "2011-06-04T20:32:01.798Z", + "0.0.1-6": "2011-06-06T11:41:38.113Z", + "0.0.1-7": "2011-06-06T12:03:08.759Z", + "0.0.1-8": "2011-06-06T12:17:24.972Z", + "0.0.2-0": "2011-06-19T13:32:22.579Z", + "0.0.2-1": "2011-06-19T13:57:42.816Z", + "0.0.3-0": "2011-06-25T13:49:24.974Z", + "0.0.3-1": "2011-09-17T16:01:32.588Z", + "0.0.4-0": "2011-09-19T13:35:01.061Z", + "0.0.4-1": "2011-09-19T13:42:13.048Z", + "0.0.4-3": "2011-10-23T20:53:50.390Z", + "0.0.4-4": "2011-10-28T21:05:55.665Z", + "0.0.4-5": "2011-10-28T21:07:58.208Z" + }, + "author": { + "name": "Franz Enzenhofer", + "email": "f.enzenhofer@gmail.com" + }, + "versions": { + "0.0.1-0": "http://registry.npmjs.org/robotstxt/0.0.1-0", + "0.0.1-4": "http://registry.npmjs.org/robotstxt/0.0.1-4", + "0.0.1-5": "http://registry.npmjs.org/robotstxt/0.0.1-5", + "0.0.1-6": "http://registry.npmjs.org/robotstxt/0.0.1-6", + "0.0.1-7": "http://registry.npmjs.org/robotstxt/0.0.1-7", + "0.0.1-8": "http://registry.npmjs.org/robotstxt/0.0.1-8", + "0.0.2-0": "http://registry.npmjs.org/robotstxt/0.0.2-0", + "0.0.2-1": "http://registry.npmjs.org/robotstxt/0.0.2-1", + "0.0.3-0": "http://registry.npmjs.org/robotstxt/0.0.3-0", + "0.0.3-1": "http://registry.npmjs.org/robotstxt/0.0.3-1", + "0.0.4-0": "http://registry.npmjs.org/robotstxt/0.0.4-0", + "0.0.4-1": "http://registry.npmjs.org/robotstxt/0.0.4-1", + "0.0.4-3": "http://registry.npmjs.org/robotstxt/0.0.4-3", + "0.0.4-4": "http://registry.npmjs.org/robotstxt/0.0.4-4", + "0.0.4-5": "http://registry.npmjs.org/robotstxt/0.0.4-5" + }, + "dist": { + "0.0.1-0": { + "shasum": "3eae82ccae1b8a7e3e7f32797b79761185e55b6b", + "tarball": "http://registry.npmjs.org/robotstxt/-/robotstxt-0.0.1-0.tgz" + }, + "0.0.1-4": { + "shasum": "569a0f00492e4abea75afdb73be8a4b3ea11d0d8", + "tarball": "http://registry.npmjs.org/robotstxt/-/robotstxt-0.0.1-4.tgz" + }, + "0.0.1-5": { + "shasum": "00e3f82475a3133b12c73b7c3ff4098a9ab6c2fb", + "tarball": "http://registry.npmjs.org/robotstxt/-/robotstxt-0.0.1-5.tgz" + }, + "0.0.1-6": { + "shasum": "420fd4594046f55365784a86c407577810f60ba2", + "tarball": "http://registry.npmjs.org/robotstxt/-/robotstxt-0.0.1-6.tgz" + }, + "0.0.1-7": { + "shasum": "08a5a2f4af1df8db198ab1bc32ffc449f2a80efd", + "tarball": "http://registry.npmjs.org/robotstxt/-/robotstxt-0.0.1-7.tgz" + }, + "0.0.1-8": { + "shasum": "b814ce0571ca36550dc985ccfe1736edc84f736a", + "tarball": "http://registry.npmjs.org/robotstxt/-/robotstxt-0.0.1-8.tgz" + }, + "0.0.2-0": { + "shasum": "b1273fb464fcdccbbe3ba8421b8e1d6a185ff0b2", + "tarball": "http://registry.npmjs.org/robotstxt/-/robotstxt-0.0.2-0.tgz" + }, + "0.0.2-1": { + "shasum": "5f131f41d57569fb9260140e8c0b9093d3f47ea8", + "tarball": "http://registry.npmjs.org/robotstxt/-/robotstxt-0.0.2-1.tgz" + }, + "0.0.3-0": { + "shasum": "2b9332089f0928793eea37eddee9b00b6b30aacb", + "tarball": "http://registry.npmjs.org/robotstxt/-/robotstxt-0.0.3-0.tgz" + }, + "0.0.3-1": { + "shasum": "02c1fb88c7926d28b9acfc514b9f07d805a0ea7a", + "tarball": "http://registry.npmjs.org/robotstxt/-/robotstxt-0.0.3-1.tgz" + }, + "0.0.4-0": { + "shasum": "bf9b3c7b638ca4adc4d2345bbf84e55c4f0a529b", + "tarball": "http://registry.npmjs.org/robotstxt/-/robotstxt-0.0.4-0.tgz" + }, + "0.0.4-1": { + "shasum": "1baa01a5e9c7d136df7ce5fe673056768458074f", + "tarball": "http://registry.npmjs.org/robotstxt/-/robotstxt-0.0.4-1.tgz" + }, + "0.0.4-3": { + "shasum": "fcdc089c74d8d10266822388d7a4fafb50cd836a", + "tarball": "http://registry.npmjs.org/robotstxt/-/robotstxt-0.0.4-3.tgz" + }, + "0.0.4-4": { + "shasum": "76a22be8a02a67aca220c858f04776a198342fbd", + "tarball": "http://registry.npmjs.org/robotstxt/-/robotstxt-0.0.4-4.tgz" + }, + "0.0.4-5": { + "shasum": "2f88adbb0fdc20ef3f33c9ef2db60971335a6989", + "tarball": "http://registry.npmjs.org/robotstxt/-/robotstxt-0.0.4-5.tgz" + } + }, + "keywords": [ + "robots.txt", + "parser", + "web", + "crawl", + "seo" + ], + "url": "http://registry.npmjs.org/robotstxt/" + }, + "rocket": { + "name": "rocket", + "description": "The rapid development framework for node.js", + "dist-tags": { + "latest": "0.1.16" + }, + "maintainers": [ + { + "name": "glesperance", + "email": "gabriel@wavo.me" + } + ], + "time": { + "modified": "2011-11-30T22:59:00.953Z", + "created": "2011-05-07T21:15:16.551Z", + "0.0.0": "2011-05-07T21:15:17.461Z", + "0.0.1": "2011-05-07T23:07:02.446Z", + "0.0.2": "2011-05-25T13:01:06.453Z", + "0.0.3": "2011-06-10T01:37:50.144Z", + "0.0.4": "2011-06-14T02:17:46.147Z", + "0.0.5": "2011-06-14T21:08:17.001Z", + "0.0.6": "2011-06-24T14:21:07.564Z", + "0.0.7": "2011-06-24T14:25:04.513Z", + "0.0.8": "2011-06-28T20:13:04.525Z", + "0.0.9": "2011-06-29T20:25:22.712Z", + "0.0.10": "2011-08-03T02:03:05.934Z", + "0.1.2": "2011-08-30T22:23:10.821Z", + "0.1.5": "2011-09-06T16:13:43.993Z", + "0.1.6": "2011-09-26T16:39:25.540Z", + "0.1.7": "2011-09-30T22:49:47.949Z", + "0.1.8": "2011-10-05T02:46:49.514Z", + "0.1.9": "2011-10-05T20:35:18.168Z", + "0.1.10": "2011-10-05T22:21:52.259Z", + "0.1.11": "2011-10-26T05:39:57.192Z", + "0.1.12": "2011-10-26T05:42:46.165Z", + "0.1.13": "2011-10-31T02:23:10.810Z", + "0.1.14": "2011-11-11T23:59:58.515Z", + "0.1.15": "2011-11-14T19:29:47.181Z", + "0.1.16": "2011-11-30T22:59:00.953Z" + }, + "author": { + "name": "Gabriel Lesperance", + "email": "gabriel@wavo.me", + "url": "glesperance.com / wavo.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/glesperance/node-rocket.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/rocket/0.0.0", + "0.0.1": "http://registry.npmjs.org/rocket/0.0.1", + "0.0.2": "http://registry.npmjs.org/rocket/0.0.2", + "0.0.3": "http://registry.npmjs.org/rocket/0.0.3", + "0.0.4": "http://registry.npmjs.org/rocket/0.0.4", + "0.0.5": "http://registry.npmjs.org/rocket/0.0.5", + "0.0.6": "http://registry.npmjs.org/rocket/0.0.6", + "0.0.7": "http://registry.npmjs.org/rocket/0.0.7", + "0.0.8": "http://registry.npmjs.org/rocket/0.0.8", + "0.0.9": "http://registry.npmjs.org/rocket/0.0.9", + "0.0.10": "http://registry.npmjs.org/rocket/0.0.10", + "0.1.2": "http://registry.npmjs.org/rocket/0.1.2", + "0.1.5": "http://registry.npmjs.org/rocket/0.1.5", + "0.1.6": "http://registry.npmjs.org/rocket/0.1.6", + "0.1.7": "http://registry.npmjs.org/rocket/0.1.7", + "0.1.8": "http://registry.npmjs.org/rocket/0.1.8", + "0.1.9": "http://registry.npmjs.org/rocket/0.1.9", + "0.1.10": "http://registry.npmjs.org/rocket/0.1.10", + "0.1.11": "http://registry.npmjs.org/rocket/0.1.11", + "0.1.12": "http://registry.npmjs.org/rocket/0.1.12", + "0.1.13": "http://registry.npmjs.org/rocket/0.1.13", + "0.1.14": "http://registry.npmjs.org/rocket/0.1.14", + "0.1.15": "http://registry.npmjs.org/rocket/0.1.15", + "0.1.16": "http://registry.npmjs.org/rocket/0.1.16" + }, + "dist": { + "0.0.0": { + "shasum": "c78962ee8093e0b19477678b0cb78728e71f1951", + "tarball": "http://registry.npmjs.org/rocket/-/rocket-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "604d3077bff3e2654dbd569551d0a033f038d954", + "tarball": "http://registry.npmjs.org/rocket/-/rocket-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "4f1e49ffaef17be07e900a93cc02e7f3a272ac45", + "tarball": "http://registry.npmjs.org/rocket/-/rocket-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "04e80e64d658062e7b6643cf9539694ff6fdf1da", + "tarball": "http://registry.npmjs.org/rocket/-/rocket-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "78878da925207957a87c0ef9d3bc1e99ffdf4a2b", + "tarball": "http://registry.npmjs.org/rocket/-/rocket-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "e575c0dd5b02b64de8b35718eb6979a45cf1ea90", + "tarball": "http://registry.npmjs.org/rocket/-/rocket-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "7ef43d85cca1f410ee4c56d09e4cf58bd43eb450", + "tarball": "http://registry.npmjs.org/rocket/-/rocket-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "0aeb04eb878b613b14296ba3f68e25ab8521315a", + "tarball": "http://registry.npmjs.org/rocket/-/rocket-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "a529a195f7ab1d1a7c8ad5392e3e91d8a4721be4", + "tarball": "http://registry.npmjs.org/rocket/-/rocket-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "e0255fdbac81c953c624a0d802288ed3637ac0dd", + "tarball": "http://registry.npmjs.org/rocket/-/rocket-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "70dbc2c1a45ecb62bea1da25b9807a46330f9eba", + "tarball": "http://registry.npmjs.org/rocket/-/rocket-0.0.10.tgz" + }, + "0.1.2": { + "shasum": "9fdb97bdb50d81494edf5081148f2b1ba1a0df9e", + "tarball": "http://registry.npmjs.org/rocket/-/rocket-0.1.2.tgz" + }, + "0.1.5": { + "shasum": "bc1498fb8c2226c33f32b0813f3d998bb3b8cee7", + "tarball": "http://registry.npmjs.org/rocket/-/rocket-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "889009113a2e7677a649cd2af3bba7cde6f1721f", + "tarball": "http://registry.npmjs.org/rocket/-/rocket-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "90acbe67d167e6ab533e22b3b4a69808e59aae60", + "tarball": "http://registry.npmjs.org/rocket/-/rocket-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "9b72693a74fb8c2d5bbc14960f8c3f43c66dfc6f", + "tarball": "http://registry.npmjs.org/rocket/-/rocket-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "89d699a72da79321a1754ce034395267a4e912cd", + "tarball": "http://registry.npmjs.org/rocket/-/rocket-0.1.9.tgz" + }, + "0.1.10": { + "shasum": "73766e3122f658abaab9e4fb92ca6d6eb395d09b", + "tarball": "http://registry.npmjs.org/rocket/-/rocket-0.1.10.tgz" + }, + "0.1.11": { + "shasum": "bea079298ed641c1d9d85b4da18430625bad1874", + "tarball": "http://registry.npmjs.org/rocket/-/rocket-0.1.11.tgz" + }, + "0.1.12": { + "shasum": "5ea99d26db589975193b2203bf38c25ffd0d3926", + "tarball": "http://registry.npmjs.org/rocket/-/rocket-0.1.12.tgz" + }, + "0.1.13": { + "shasum": "fa5173def6c4e1d926bf7f27ebe48ee5dcde6275", + "tarball": "http://registry.npmjs.org/rocket/-/rocket-0.1.13.tgz" + }, + "0.1.14": { + "shasum": "a2d3af4759ffb708113528a5a84b956845e01131", + "tarball": "http://registry.npmjs.org/rocket/-/rocket-0.1.14.tgz" + }, + "0.1.15": { + "shasum": "bc7f9f1520812459679524a3af9b7085e81488f2", + "tarball": "http://registry.npmjs.org/rocket/-/rocket-0.1.15.tgz" + }, + "0.1.16": { + "shasum": "55281adfe137128ca1646995e10441174604ca07", + "tarball": "http://registry.npmjs.org/rocket/-/rocket-0.1.16.tgz" + } + }, + "keywords": [ + "mvc", + "model view controller", + "comet", + "rapid development", + "Rocket", + "framework" + ], + "url": "http://registry.npmjs.org/rocket/" + }, + "roil": { + "name": "roil", + "description": "Watch file change and notify browser", + "dist-tags": { + "latest": "0.1.4-2" + }, + "maintainers": [ + { + "name": "5long", + "email": "5longluna@gmail.com" + } + ], + "author": { + "name": "Whyme.Lyu", + "email": "5longluna@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/5long/roil.git" + }, + "time": { + "modified": "2011-07-23T11:59:05.012Z", + "created": "2010-12-24T14:08:44.392Z", + "0.1.2": "2010-12-24T14:08:44.392Z", + "0.1.3": "2010-12-24T14:08:44.392Z", + "0.1.4": "2011-06-16T20:10:49.382Z", + "0.1.4-1": "2011-06-28T10:24:05.319Z", + "0.1.4-2": "2011-07-23T11:58:44.306Z" + }, + "versions": { + "0.1.4-2": "http://registry.npmjs.org/roil/0.1.4-2" + }, + "dist": { + "0.1.4-2": { + "shasum": "0d35d05427beaa4a5eeec54d47aba603a7bbb709", + "tarball": "http://registry.npmjs.org/roil/-/roil-0.1.4-2.tgz" + } + }, + "keywords": [ + "development", + "live preview" + ], + "url": "http://registry.npmjs.org/roil/" + }, + "rolabola": { + "name": "rolabola", + "description": "a minimal load balancer", + "dist-tags": {}, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-11-05T00:48:07.685Z", + "created": "2011-11-05T00:48:07.685Z" + }, + "versions": {}, + "dist": {}, + "url": "http://registry.npmjs.org/rolabola/" + }, + "roles": { + "name": "roles", + "description": "NodeJS Role Management", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "dresende", + "email": "dresende@thinkdigital.pt" + } + ], + "time": { + "modified": "2011-09-23T11:21:36.079Z", + "created": "2011-09-23T10:45:55.698Z", + "0.0.1": "2011-09-23T10:45:56.013Z", + "0.0.2": "2011-09-23T10:56:53.698Z", + "0.0.3": "2011-09-23T11:21:36.079Z" + }, + "author": { + "name": "Diogo Resende", + "email": "dresende@thinkdigital.pt" + }, + "repository": { + "type": "git", + "url": "git://github.com/dresende/node-roles.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/roles/0.0.1", + "0.0.2": "http://registry.npmjs.org/roles/0.0.2", + "0.0.3": "http://registry.npmjs.org/roles/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "d8b949608dbc4b8998c116f260e7d1ae911c1720", + "tarball": "http://registry.npmjs.org/roles/-/roles-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "68ba714b93e32650b3baa6487b8f5eab9e6636ec", + "tarball": "http://registry.npmjs.org/roles/-/roles-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "798cd3eaa4ffdeea9e2a05fbf760453f7c461400", + "tarball": "http://registry.npmjs.org/roles/-/roles-0.0.3.tgz" + } + }, + "keywords": [ + "acl", + "role", + "permission" + ], + "url": "http://registry.npmjs.org/roles/" + }, + "roll": { + "name": "roll", + "description": "node.js package for rolling dice and adding modifiers. ex: 2d6+1", + "dist-tags": { + "latest": "0.3.1" + }, + "maintainers": [ + { + "name": "troygoode", + "email": "troygoode@gmail.com" + } + ], + "time": { + "modified": "2011-11-27T15:48:51.317Z", + "created": "2011-08-21T02:57:08.842Z", + "0.1.0": "2011-08-21T02:57:10.729Z", + "0.2.0": "2011-08-21T03:26:43.079Z", + "0.3.0": "2011-11-27T15:46:07.737Z", + "0.3.1": "2011-11-27T15:48:51.317Z" + }, + "author": { + "name": "Troy Goode", + "email": "troygoode@gmail.com", + "url": "https://github.com/troygoode/" + }, + "repository": { + "type": "git", + "url": "git://github.com/troygoode/node-roll.git" + }, + "users": { + "troygoode": true + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/roll/0.1.0", + "0.2.0": "http://registry.npmjs.org/roll/0.2.0", + "0.3.0": "http://registry.npmjs.org/roll/0.3.0", + "0.3.1": "http://registry.npmjs.org/roll/0.3.1" + }, + "dist": { + "0.1.0": { + "shasum": "6c67b1beabc5bb1ad0d71d6057fcd362b4b3b440", + "tarball": "http://registry.npmjs.org/roll/-/roll-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "580895d5d185154f359a5790dc203b0b5aab4f0e", + "tarball": "http://registry.npmjs.org/roll/-/roll-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "ab0471ccdbc83b5e53ef55b13151667181291a7e", + "tarball": "http://registry.npmjs.org/roll/-/roll-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "ef972ad08ef1e5eb80665b3783a3317cd47e6e9e", + "tarball": "http://registry.npmjs.org/roll/-/roll-0.3.1.tgz" + } + }, + "keywords": [ + "roll", + "random", + "dice", + "games", + "rpg", + "role playing" + ], + "url": "http://registry.npmjs.org/roll/" + }, + "rollin": { + "name": "rollin", + "description": "Roll dice from the command line using D&D-style syntax", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "jesusabdullah", + "email": "josh.holbrook@gmail.com" + } + ], + "time": { + "modified": "2011-09-21T04:10:27.565Z", + "created": "2011-09-21T04:10:26.748Z", + "0.0.0": "2011-09-21T04:10:27.565Z" + }, + "author": { + "name": "Joshua Holbrook", + "email": "josh.holbrook@gmail.com", + "url": "http://jesusabdullah.github.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:jesusabdullah/node-roll.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/rollin/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "23cab8c2cd677d5c8e62d5b36c8dcdb79bb227d4", + "tarball": "http://registry.npmjs.org/rollin/-/rollin-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/rollin/" + }, + "rolodex": { + "name": "rolodex", + "description": "Node account management system using redis", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "sintaxi", + "email": "brock@sintaxi.com" + } + ], + "time": { + "modified": "2011-12-01T08:36:09.377Z", + "created": "2011-10-23T02:00:17.270Z", + "0.1.0": "2011-10-23T02:00:17.883Z", + "0.2.0": "2011-10-23T04:27:00.094Z", + "0.3.0": "2011-12-01T08:36:09.377Z" + }, + "author": { + "name": "Brock Whitten", + "email": "brock@sintaxi.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/sintaxi/node-rolodex.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/rolodex/0.1.0", + "0.2.0": "http://registry.npmjs.org/rolodex/0.2.0", + "0.3.0": "http://registry.npmjs.org/rolodex/0.3.0" + }, + "dist": { + "0.1.0": { + "shasum": "edb5b5a672a35552f4552d81c14b4bf409412278", + "tarball": "http://registry.npmjs.org/rolodex/-/rolodex-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "f75ccfd625f1ceb9923bde4816535bc36c0ff5b5", + "tarball": "http://registry.npmjs.org/rolodex/-/rolodex-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "3df7c09eaebe361c245708c3955f3fe9281550f6", + "tarball": "http://registry.npmjs.org/rolodex/-/rolodex-0.3.0.tgz" + } + }, + "keywords": [ + "redis", + "account management", + "users", + "authentication" + ], + "url": "http://registry.npmjs.org/rolodex/" + }, + "ron": { + "name": "ron", + "description": "Redis ORM for NodeJs", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "david", + "email": "david@adaltas.com" + } + ], + "time": { + "modified": "2011-11-18T18:15:01.364Z", + "created": "2011-02-21T12:22:28.102Z", + "0.0.1": "2011-02-21T12:22:28.707Z", + "0.0.2": "2011-03-04T17:49:25.994Z", + "0.0.3": "2011-11-18T18:15:01.364Z" + }, + "author": { + "name": "David Worms", + "email": "david@adaltas.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/wdavidw/node-redis-orm.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ron/0.0.1", + "0.0.2": "http://registry.npmjs.org/ron/0.0.2", + "0.0.3": "http://registry.npmjs.org/ron/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "f0ccf6d7bf4e0f84c7b219663d4e492e3e7f5311", + "tarball": "http://registry.npmjs.org/ron/-/ron-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "ad35e99c230492e7329e51d3d6c34e53b3e72ef9", + "tarball": "http://registry.npmjs.org/ron/-/ron-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "6399e4ce44ca678ffee7219b983ee507a3065e8b", + "tarball": "http://registry.npmjs.org/ron/-/ron-0.0.3.tgz" + } + }, + "keywords": [ + "redis", + "orm", + "database", + "nosql" + ], + "url": "http://registry.npmjs.org/ron/" + }, + "rondo": { + "name": "rondo", + "description": "DOM library and application suite", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "chjj", + "email": "chjjeffrey@gmail.com" + } + ], + "time": { + "modified": "2011-08-12T23:48:33.003Z", + "created": "2011-08-12T23:48:29.697Z", + "0.0.1": "2011-08-12T23:48:33.003Z" + }, + "author": { + "name": "Christopher Jeffrey" + }, + "repository": { + "type": "git", + "url": "git://github.com/chjj/rondo.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/rondo/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "6d4ca3790114aa78d2d3e79fad1faed4346dfc62", + "tarball": "http://registry.npmjs.org/rondo/-/rondo-0.0.1.tgz" + } + }, + "keywords": [ + "dom", + "app" + ], + "url": "http://registry.npmjs.org/rondo/" + }, + "ronn": { + "name": "ronn", + "description": "markdown to roff and html converter", + "dist-tags": { + "latest": "0.3.8" + }, + "maintainers": [ + { + "name": "kapouer", + "email": "kapouer@melix.org" + } + ], + "time": { + "modified": "2011-11-05T12:42:53.525Z", + "created": "2011-03-20T13:33:02.453Z", + "0.3.3": "2011-03-20T13:33:02.453Z", + "0.3.4": "2011-03-20T13:33:02.453Z", + "0.3.5": "2011-03-20T13:33:02.453Z", + "0.3.6": "2011-03-20T13:33:02.453Z", + "0.3.7": "2011-10-10T07:48:00.396Z", + "0.3.8": "2011-11-05T12:42:53.525Z" + }, + "versions": { + "0.3.3": "http://registry.npmjs.org/ronn/0.3.3", + "0.3.4": "http://registry.npmjs.org/ronn/0.3.4", + "0.3.5": "http://registry.npmjs.org/ronn/0.3.5", + "0.3.6": "http://registry.npmjs.org/ronn/0.3.6", + "0.3.7": "http://registry.npmjs.org/ronn/0.3.7", + "0.3.8": "http://registry.npmjs.org/ronn/0.3.8" + }, + "dist": { + "0.3.3": { + "tarball": "http://packages:5984/ronn/-/ronn-0.3.3.tgz" + }, + "0.3.4": { + "tarball": "http://packages:5984/ronn/-/ronn-0.3.4.tgz" + }, + "0.3.5": { + "tarball": "http://registry.npmjs.org/ronn/-/ronn-0.3.5.tgz" + }, + "0.3.6": { + "shasum": "ce802924388c4635d18fd9c73eaf6c69675f839e", + "tarball": "http://registry.npmjs.org/ronn/-/ronn-0.3.6.tgz" + }, + "0.3.7": { + "shasum": "7eb2113357bcb1f4cb16ba5b4d4847356c4d77be", + "tarball": "http://registry.npmjs.org/ronn/-/ronn-0.3.7.tgz" + }, + "0.3.8": { + "shasum": "f01a51856f46cca68988ef53e6334c59a934234a", + "tarball": "http://registry.npmjs.org/ronn/-/ronn-0.3.8.tgz" + } + }, + "keywords": [ + "markdown", + "roff", + "man", + "documentation" + ], + "url": "http://registry.npmjs.org/ronn/" + }, + "rorrim": { + "name": "rorrim", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "omni5cience", + "email": "s+npm@samepstein.com" + } + ], + "time": { + "modified": "2011-10-26T20:20:31.635Z", + "created": "2011-09-29T22:31:19.310Z", + "0.0.1": "2011-09-29T22:31:19.685Z", + "0.1.0": "2011-10-26T20:12:10.709Z", + "0.1.1": "2011-10-26T20:20:31.635Z" + }, + "description": "A tiny server for serving of files normally stored on other hosts", + "repository": { + "type": "git", + "url": "git://github.com/omni5cience/rorrim.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/rorrim/0.0.1", + "0.1.0": "http://registry.npmjs.org/rorrim/0.1.0", + "0.1.1": "http://registry.npmjs.org/rorrim/0.1.1" + }, + "dist": { + "0.0.1": { + "shasum": "7b2a0bb1e5d32ee44aed4e122b3f2dd4088255ba", + "tarball": "http://registry.npmjs.org/rorrim/-/rorrim-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "567f6c4a32e78d74312742b5bf240b6d9f35b902", + "tarball": "http://registry.npmjs.org/rorrim/-/rorrim-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "0e2af05521db1d6a8eaeda136c7f5be707a525b9", + "tarball": "http://registry.npmjs.org/rorrim/-/rorrim-0.1.1.tgz" + } + }, + "keywords": [ + "mirror", + "cdn" + ], + "url": "http://registry.npmjs.org/rorrim/" + }, + "rot13": { + "name": "rot13", + "description": "Sync/Async rot13 encoding via C++ extension", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "jedparsons", + "email": "jed@jedparsons.com" + } + ], + "time": { + "modified": "2011-07-08T05:02:01.818Z", + "created": "2011-06-29T00:59:08.892Z", + "0.1.0": "2011-06-29T00:59:09.466Z", + "0.1.1": "2011-07-04T22:51:14.151Z", + "0.1.2": "2011-07-08T05:02:01.818Z" + }, + "author": { + "name": "Jed Parsons", + "email": "jed@jedparsons.com", + "url": "http://jedparsons.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/jedp/node-rot13.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/rot13/0.1.0", + "0.1.1": "http://registry.npmjs.org/rot13/0.1.1", + "0.1.2": "http://registry.npmjs.org/rot13/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "eeb69b3e24c605b8619c2a1591e648adb764332f", + "bin": { + "0.4-darwin-10.7.0": { + "shasum": "599bb8f65e2b00d3462408b003cbff17de8b46d2", + "tarball": "http://registry.npmjs.org/rot13/-/rot13-0.1.0-0.4-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/rot13/-/rot13-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "d11674ee5681af5b1b54560cb91b1a0c3afbe65e", + "bin": { + "0.4-darwin-10.7.0": { + "shasum": "4a09490b8b22b6eccdccccd86cb29701f02ab461", + "tarball": "http://registry.npmjs.org/rot13/-/rot13-0.1.1-0.4-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/rot13/-/rot13-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "48b2dd598171670e50605572e8670925d3c85639", + "bin": { + "0.4-darwin-10.7.0": { + "shasum": "db7e342daca42b35f8c01d47b015ed6063c8c340", + "tarball": "http://registry.npmjs.org/rot13/-/rot13-0.1.2-0.4-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/rot13/-/rot13-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/rot13/" + }, + "route": { + "name": "route", + "description": "Simple client-side routing library", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "amccollum", + "email": "amccollum+npm@gmail.com" + } + ], + "time": { + "modified": "2011-11-08T19:18:55.451Z", + "created": "2011-11-08T19:17:36.808Z", + "0.0.1": "2011-11-08T19:17:37.224Z", + "0.1.0": "2011-11-08T19:18:55.451Z" + }, + "author": { + "name": "Andrew McCollum", + "email": "amccollum@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/route/0.0.1", + "0.1.0": "http://registry.npmjs.org/route/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "284953d105ce2dd845b42644904e577cf341c385", + "tarball": "http://registry.npmjs.org/route/-/route-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "735ce304b47b1df6f722ebda7c9bcb27946c8410", + "tarball": "http://registry.npmjs.org/route/-/route-0.1.0.tgz" + } + }, + "keywords": [ + "ender", + "router", + "route", + "routes", + "routing" + ], + "url": "http://registry.npmjs.org/route/" + }, + "route.js": { + "name": "route.js", + "description": "Routes API for Node.js", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "viatropos", + "email": "lancejpollard@gmail.com" + } + ], + "time": { + "modified": "2011-11-08T19:44:43.563Z", + "created": "2011-11-08T19:44:43.041Z", + "0.0.1": "2011-11-08T19:44:43.563Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/viatropos/routes.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/route.js/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "bda66f08583fceed4fb051ab6bfc0df6f6da22c8", + "tarball": "http://registry.npmjs.org/route.js/-/route.js-0.0.1.tgz" + } + }, + "keywords": [ + "framework", + "node" + ], + "url": "http://registry.npmjs.org/route.js/" + }, + "router": { + "name": "router", + "description": "A lean and mean web router", + "dist-tags": { + "latest": "0.4.4" + }, + "maintainers": [ + { + "name": "mafintosh", + "email": "m@ge.tt" + }, + { + "name": "ianjorgensen", + "email": "jorgensen.ian@gmail.com" + } + ], + "time": { + "modified": "2011-11-23T15:25:49.827Z", + "created": "2011-06-23T11:01:08.263Z", + "0.2.1": "2011-06-23T11:01:08.696Z", + "0.2.2": "2011-06-23T12:11:21.379Z", + "0.2.3": "2011-07-03T14:51:16.521Z", + "0.2.4": "2011-07-14T08:20:04.205Z", + "0.2.5": "2011-07-14T08:25:58.919Z", + "0.2.6": "2011-07-14T16:20:53.355Z", + "0.2.8": "2011-07-14T17:31:37.258Z", + "0.3.0": "2011-07-14T18:15:34.088Z", + "0.3.1": "2011-07-19T12:26:28.343Z", + "0.3.2": "2011-07-25T11:52:09.864Z", + "0.4.0": "2011-07-26T13:01:13.237Z", + "0.4.1": "2011-08-01T12:44:59.626Z", + "0.4.2": "2011-10-22T15:11:16.220Z", + "0.4.3": "2011-11-23T15:16:19.689Z", + "0.4.4": "2011-11-23T15:25:49.827Z" + }, + "versions": { + "0.2.1": "http://registry.npmjs.org/router/0.2.1", + "0.2.2": "http://registry.npmjs.org/router/0.2.2", + "0.2.3": "http://registry.npmjs.org/router/0.2.3", + "0.2.4": "http://registry.npmjs.org/router/0.2.4", + "0.2.5": "http://registry.npmjs.org/router/0.2.5", + "0.2.6": "http://registry.npmjs.org/router/0.2.6", + "0.2.8": "http://registry.npmjs.org/router/0.2.8", + "0.3.0": "http://registry.npmjs.org/router/0.3.0", + "0.3.1": "http://registry.npmjs.org/router/0.3.1", + "0.3.2": "http://registry.npmjs.org/router/0.3.2", + "0.4.0": "http://registry.npmjs.org/router/0.4.0", + "0.4.1": "http://registry.npmjs.org/router/0.4.1", + "0.4.2": "http://registry.npmjs.org/router/0.4.2", + "0.4.3": "http://registry.npmjs.org/router/0.4.3", + "0.4.4": "http://registry.npmjs.org/router/0.4.4" + }, + "dist": { + "0.2.1": { + "shasum": "cfeedbf9f79944d8ff320e600eb4461b453b5d2e", + "tarball": "http://registry.npmjs.org/router/-/router-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "db2b1fd1de97ee3ffaeebda26c526007230d84a0", + "tarball": "http://registry.npmjs.org/router/-/router-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "4dd60f7b5cd5762c749133af89f33b92533277f8", + "tarball": "http://registry.npmjs.org/router/-/router-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "afbd2b1721fe588930fc4e4f27c2871b56d259cb", + "tarball": "http://registry.npmjs.org/router/-/router-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "840f4830e8b8e98f39f509b514dbd69d71e1a385", + "tarball": "http://registry.npmjs.org/router/-/router-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "38ab252af8a74f73d29cc4a60e58511fb7aeb2fd", + "tarball": "http://registry.npmjs.org/router/-/router-0.2.6.tgz" + }, + "0.2.8": { + "shasum": "6321600584949274df8b2ab8ad0cad865115e972", + "tarball": "http://registry.npmjs.org/router/-/router-0.2.8.tgz" + }, + "0.3.0": { + "shasum": "68db398fa6c3fa9df959b7ff9abe3a619f671e5c", + "tarball": "http://registry.npmjs.org/router/-/router-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "cbd7879ed87f666606b086198aad367d0dc7dee8", + "tarball": "http://registry.npmjs.org/router/-/router-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "5f38aeacc9cc9bdf1da8871c6b189682b64f6c5a", + "tarball": "http://registry.npmjs.org/router/-/router-0.3.2.tgz" + }, + "0.4.0": { + "shasum": "3b493fc7ada42b11d3dfc73f21e451959416fd58", + "tarball": "http://registry.npmjs.org/router/-/router-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "e12dbc88497fd3db639b4dd50d667925fa739cf9", + "tarball": "http://registry.npmjs.org/router/-/router-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "6fa65ed4d7c871e3be692cea4347024fcc39e95a", + "tarball": "http://registry.npmjs.org/router/-/router-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "90c3327f3bc6b761d466f3e757f1f0b2f9e6a2ba", + "tarball": "http://registry.npmjs.org/router/-/router-0.4.3.tgz" + }, + "0.4.4": { + "shasum": "45e61b84d2e962116f6d6e9767a43289161d081d", + "tarball": "http://registry.npmjs.org/router/-/router-0.4.4.tgz" + } + }, + "url": "http://registry.npmjs.org/router/" + }, + "routes": { + "name": "routes", + "description": "Minimalist route matching for javascript", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "aaronblohowiak", + "email": "aaron.blohowiak@gmail.com" + } + ], + "time": { + "modified": "2011-02-06T08:47:46.615Z", + "created": "2011-02-06T08:47:46.186Z", + "0.1.0": "2011-02-06T08:47:46.615Z" + }, + "author": { + "name": "Aaron Blohowiak", + "email": "aaron.blohowiak@gmail.com", + "url": "http://github.com/aaronblohowiak" + }, + "repository": "https://github.com/aaronblohowiak/routes.js.git", + "versions": { + "0.1.0": "http://registry.npmjs.org/routes/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "86245168969cb956aa7301bf4c8336d9f17245ed", + "tarball": "http://registry.npmjs.org/routes/-/routes-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/routes/" + }, + "routes.js": { + "name": "routes.js", + "description": "Routes API for Node.js", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "viatropos", + "email": "lancejpollard@gmail.com" + } + ], + "time": { + "modified": "2011-11-08T19:43:31.364Z", + "created": "2011-11-08T19:43:30.828Z", + "0.0.1": "2011-11-08T19:43:31.364Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/viatropos/routes.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/routes.js/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "87e3ba54b9ad86efe571654277daca4a45eb24b6", + "tarball": "http://registry.npmjs.org/routes.js/-/routes.js-0.0.1.tgz" + } + }, + "keywords": [ + "framework", + "node" + ], + "url": "http://registry.npmjs.org/routes.js/" + }, + "roy": { + "name": "roy", + "description": "Small functional language that compiles to JavaScript", + "dist-tags": { + "latest": "0.1.3" + }, + "readme": "Roy\n===\n\nRoy is a small functional language that compiles to JavaScript. It has a few main features:\n\n* Damas-Hindley-Milner type inference\n* Whitespace significant syntax\n* Compile-time meta-programming\n* Simple tagged unions\n* Pattern matching\n* Structural typing\n* Monad syntax\n* Not-horrible JS output\n\nUsage\n---\n\nTo compile:\n\n make deps\n make\n\nTo enter a REPL:\n\n ./roy\n\nTo compile and run a `.roy` file:\n\n ./roy -r examples/helloworld.roy\n\nTo compile a `.roy` file to `.js`:\n\n ./roy examples/helloworld.roy\n cat examples/helloworld.js\n\nExample\n---\n\nInput (test.roy):\n\n let addTwo n =\n n + 2\n\n console.log (addTwo 40)\n\nOutput (test.js):\n\n var addTwo = function(n) {\n\treturn n + 2;\n }\n console.log(addTwo(40))\n\nCalling `addTwo \"test\"` will result in a compile-time error.\n\nSee the examples directory for more.\n\nTODO\n---\n* Mutable types\n* Types across modules\n* Allow explicit types that have type parameters\n* Standard libary\n* Tail recursion\n", + "maintainers": [ + { + "name": "puffnfresh", + "email": "puffnfresh@gmail.com" + } + ], + "time": { + "modified": "2011-11-19T00:12:39.010Z", + "created": "2011-11-18T07:56:02.600Z", + "0.1.2": "2011-11-18T07:56:25.977Z", + "0.1.3": "2011-11-19T00:12:39.010Z" + }, + "author": { + "name": "Brian McKenna", + "email": "brian@brianmckenna.org", + "url": "http://brianmckenna.org/" + }, + "versions": { + "0.1.2": "http://registry.npmjs.org/roy/0.1.2", + "0.1.3": "http://registry.npmjs.org/roy/0.1.3" + }, + "dist": { + "0.1.2": { + "shasum": "88302b482a7fa6bf4ebc5a32f75cf0d6bbed1e2b", + "tarball": "http://registry.npmjs.org/roy/-/roy-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "7c94249d0251b7fcb5cd27c834307e888c0585fa", + "tarball": "http://registry.npmjs.org/roy/-/roy-0.1.3.tgz" + } + }, + "keywords": [ + "javascript", + "language", + "roy", + "compiler" + ], + "url": "http://registry.npmjs.org/roy/" + }, + "rpc": { + "name": "rpc", + "description": "Simple remote procedure calling over HTTP", + "dist-tags": { + "latest": "1.0.5" + }, + "maintainers": [ + { + "name": "sleeplessinc", + "email": "joe@sleepless.com" + } + ], + "time": { + "modified": "2011-12-01T01:52:44.275Z", + "created": "2011-09-18T23:02:27.155Z", + "1.0.0": "2011-09-18T23:02:28.785Z", + "1.1.0": "2011-09-19T01:05:50.364Z", + "1.0.3": "2011-12-01T01:04:10.093Z", + "1.0.4": "2011-12-01T01:20:05.768Z", + "1.0.5": "2011-12-01T01:52:44.275Z" + }, + "author": { + "name": "Joe Hitchens", + "email": "joe@sleepless.com", + "url": "sleepless.com" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/rpc/1.0.0", + "1.1.0": "http://registry.npmjs.org/rpc/1.1.0", + "1.0.3": "http://registry.npmjs.org/rpc/1.0.3", + "1.0.4": "http://registry.npmjs.org/rpc/1.0.4", + "1.0.5": "http://registry.npmjs.org/rpc/1.0.5" + }, + "dist": { + "1.0.0": { + "shasum": "3cb62208e06af00e42b967fc19b1e98ecd8dc6fb", + "tarball": "http://registry.npmjs.org/rpc/-/rpc-1.0.0.tgz" + }, + "1.1.0": { + "shasum": "a8be9da6e99aa1749217dff711a74a2b26171e3e", + "tarball": "http://registry.npmjs.org/rpc/-/rpc-1.1.0.tgz" + }, + "1.0.3": { + "shasum": "520da292a88de30f7260d1a96aa62f88c95360f1", + "tarball": "http://registry.npmjs.org/rpc/-/rpc-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "fe5abe41bc9b995ae4f08805fb1673cdf06b7233", + "tarball": "http://registry.npmjs.org/rpc/-/rpc-1.0.4.tgz" + }, + "1.0.5": { + "shasum": "f996949e5de88a8895713a4cd56b8ce897fa1501", + "tarball": "http://registry.npmjs.org/rpc/-/rpc-1.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/rpc/" + }, + "rpc-socket": { + "name": "rpc-socket", + "description": "RPC like calling over different types of sockets", + "dist-tags": { + "latest": "0.0.9" + }, + "maintainers": [ + { + "name": "flybyme", + "email": "price.timmy@gmail.com" + } + ], + "time": { + "modified": "2011-12-11T13:13:39.094Z", + "created": "2011-08-04T01:48:47.019Z", + "0.0.1": "2011-08-04T01:48:48.284Z", + "0.0.2": "2011-08-04T02:00:36.157Z", + "0.0.3": "2011-08-11T19:56:40.788Z", + "0.0.5": "2011-10-05T05:01:42.542Z", + "0.0.6": "2011-12-10T05:46:15.264Z", + "0.0.7": "2011-12-10T05:48:28.874Z", + "0.0.8": "2011-12-10T09:47:21.810Z", + "0.0.9": "2011-12-11T13:13:39.094Z" + }, + "author": { + "name": "Tim", + "email": "flybyme@wiyc.info" + }, + "repository": { + "type": "git", + "url": "git://github.com/FLYBYME/rpc-socket.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/rpc-socket/0.0.1", + "0.0.2": "http://registry.npmjs.org/rpc-socket/0.0.2", + "0.0.3": "http://registry.npmjs.org/rpc-socket/0.0.3", + "0.0.5": "http://registry.npmjs.org/rpc-socket/0.0.5", + "0.0.6": "http://registry.npmjs.org/rpc-socket/0.0.6", + "0.0.7": "http://registry.npmjs.org/rpc-socket/0.0.7", + "0.0.8": "http://registry.npmjs.org/rpc-socket/0.0.8", + "0.0.9": "http://registry.npmjs.org/rpc-socket/0.0.9" + }, + "dist": { + "0.0.1": { + "shasum": "123b157fb979e7692addb144483ca0175e40c9b6", + "tarball": "http://registry.npmjs.org/rpc-socket/-/rpc-socket-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "6e31763e0da56f677e52adca65fda9b8ef6cf145", + "tarball": "http://registry.npmjs.org/rpc-socket/-/rpc-socket-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "9a38dc05b4a6b0f4571f7bea3cf61196ec2871a9", + "tarball": "http://registry.npmjs.org/rpc-socket/-/rpc-socket-0.0.3.tgz" + }, + "0.0.5": { + "shasum": "e3d6d38350f25561fff2a2ecc30734e381b90cb9", + "tarball": "http://registry.npmjs.org/rpc-socket/-/rpc-socket-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "6e70e7522cac6a40d90ac64b049b7db1306c1481", + "tarball": "http://registry.npmjs.org/rpc-socket/-/rpc-socket-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "0d29c47291b584587071192c5da968ab2ba79749", + "tarball": "http://registry.npmjs.org/rpc-socket/-/rpc-socket-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "9b4e5ba51ef0c59da527a5ff14d37dacda738587", + "tarball": "http://registry.npmjs.org/rpc-socket/-/rpc-socket-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "5c6a2172399b6d18557df73b7d5ae6edfb6d667a", + "tarball": "http://registry.npmjs.org/rpc-socket/-/rpc-socket-0.0.9.tgz" + } + }, + "keywords": [ + "rpc", + "json", + "socket", + "server", + "client" + ], + "url": "http://registry.npmjs.org/rpc-socket/" + }, + "rq": { + "name": "rq", + "description": "Queue implementation on Redis PUB/SUB", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "taras.kunch", + "email": "taras.kunch@gmail.com" + } + ], + "time": { + "modified": "2011-05-25T12:48:12.052Z", + "created": "2011-05-16T20:43:48.741Z", + "0.0.1": "2011-05-16T20:43:49.535Z", + "0.0.2": "2011-05-17T15:23:37.677Z", + "0.1.0": "2011-05-25T12:48:12.052Z" + }, + "author": { + "name": "Taras Kunch", + "email": "taras.kunch@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/rq/0.0.1", + "0.0.2": "http://registry.npmjs.org/rq/0.0.2", + "0.1.0": "http://registry.npmjs.org/rq/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "573563467e5a8b78355ad606e9dc21f437aefdc4", + "tarball": "http://registry.npmjs.org/rq/-/rq-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "68754ac8f6cc4f0c5564f1a10aad67bf492c7908", + "tarball": "http://registry.npmjs.org/rq/-/rq-0.0.2.tgz" + }, + "0.1.0": { + "shasum": "74df164c034a53235f74bb1f47d36743f9e88abb", + "tarball": "http://registry.npmjs.org/rq/-/rq-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/rq/" + }, + "rql": { + "name": "rql", + "maintainers": [ + { + "name": "Kris Zyp", + "email": "kriszyp@gmail.com" + } + ], + "location": "http://packages.dojofoundation.org/rql", + "url": "http://packages.dojofoundation.org/rql", + "time": { + "modified": "2011-07-01T14:05:28.251Z", + "created": "2011-07-01T14:05:28.251Z" + }, + "versions": {}, + "dist": {} + }, + "rqueue": { + "name": "rqueue", + "description": "A node.js implementation of RQueue, includes Worker and Queue ", + "dist-tags": { + "latest": "0.1.6" + }, + "maintainers": [ + { + "name": "miksago", + "email": "micheil@brandedcode.com" + }, + { + "name": "Tim-Smart", + "email": "tim@fostle.com" + } + ], + "time": { + "modified": "2011-03-07T04:29:13.954Z", + "created": "2011-02-22T13:09:40.699Z", + "0.1.2": "2011-02-22T13:10:04.508Z", + "0.1.5": "2011-03-01T16:47:49.056Z", + "0.1.6": "2011-03-07T04:29:13.954Z" + }, + "author": { + "name": "Tim Smart", + "email": "tim@votizen.com" + }, + "versions": { + "0.1.2": "http://registry.npmjs.org/rqueue/0.1.2", + "0.1.5": "http://registry.npmjs.org/rqueue/0.1.5", + "0.1.6": "http://registry.npmjs.org/rqueue/0.1.6" + }, + "dist": { + "0.1.2": { + "shasum": "b5228215bb8b90ef897496357d94cd680da9ee60", + "tarball": "http://registry.npmjs.org/rqueue/-/rqueue-0.1.2.tgz" + }, + "0.1.5": { + "shasum": "f103f06c250dcbdaab47f483166a78a0416c8e12", + "tarball": "http://registry.npmjs.org/rqueue/-/rqueue-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "e77e7c056a63789c93826e2dc304210c7f88605c", + "tarball": "http://registry.npmjs.org/rqueue/-/rqueue-0.1.6.tgz" + } + }, + "url": "http://registry.npmjs.org/rqueue/" + }, + "rrd": { + "name": "rrd", + "description": "A library for querying and manipulating a Round Robin Database", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "plainlystated", + "email": "npm@bitesback.com" + } + ], + "time": { + "modified": "2011-09-14T03:47:46.484Z", + "created": "2011-07-16T22:22:20.890Z", + "1.0.0": "2011-07-16T22:22:21.503Z", + "1.0.1": "2011-09-14T03:41:30.441Z" + }, + "author": { + "name": "Patrick Schless", + "email": "npm@bitesback.com", + "url": "http://www.plainlystated.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/plainlystated/coffeescript-rrd.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/rrd/1.0.0", + "1.0.1": "http://registry.npmjs.org/rrd/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "408065163483cc0737f5f745a5e379bf27180afe", + "tarball": "http://registry.npmjs.org/rrd/-/rrd-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "c943aa992c9e3e240eed4bb4d78a95357888617d", + "tarball": "http://registry.npmjs.org/rrd/-/rrd-1.0.1.tgz" + } + }, + "keywords": [ + "rrd", + "round robin", + "database" + ], + "url": "http://registry.npmjs.org/rrd/" + }, + "rsa": { + "name": "rsa", + "description": "OpenSSL's RSA encrypt/decrypt routines", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "chrisa", + "email": "chris@nodnol.org" + } + ], + "time": { + "modified": "2011-04-15T21:30:49.937Z", + "created": "2011-02-06T15:35:29.059Z", + "0.0.1": "2011-02-06T15:35:29.494Z" + }, + "author": { + "name": "Chris Andrews", + "email": "chris@nodnol.org" + }, + "repository": { + "type": "git", + "url": "http://github.com/chrisa/node-rsa.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/rsa/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "3ece497d2ac21db291eb3c7eef371523124dee0f", + "tarball": "http://registry.npmjs.org/rsa/-/rsa-0.0.1.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "c5b4edec05d9f43d0a36c94d9db57977752e79c1", + "tarball": "http://registry.npmjs.org/rsa/-/rsa-0.0.1-0.4-sunos-5.11.tgz" + } + } + } + }, + "keywords": [ + "openssl", + "crypto", + "rsa" + ], + "url": "http://registry.npmjs.org/rsa/" + }, + "rss": { + "name": "rss", + "description": "RSS feed generator. A really simple API to add RSS feeds to any project.", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "dylang", + "email": "dylang@gmail.com" + } + ], + "time": { + "modified": "2011-10-28T19:19:48.001Z", + "created": "2011-04-15T04:53:12.836Z", + "0.0.1": "2011-04-15T04:53:13.421Z", + "0.0.2": "2011-10-05T15:55:01.005Z", + "0.0.3": "2011-10-28T19:19:48.001Z" + }, + "author": { + "name": "Dylan Greene", + "email": "dylang@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dylang/node-rss.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/rss/0.0.1", + "0.0.2": "http://registry.npmjs.org/rss/0.0.2", + "0.0.3": "http://registry.npmjs.org/rss/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "78b438b1c2577228cb98a6edd42814b5349994b8", + "tarball": "http://registry.npmjs.org/rss/-/rss-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "7107b9cde67e63ae263a6316e9ecdc9aa9a41e2c", + "tarball": "http://registry.npmjs.org/rss/-/rss-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "b5679651e714e43d9e0cdb72cc65bb1e27838265", + "tarball": "http://registry.npmjs.org/rss/-/rss-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/rss/" + }, + "rssee": { + "name": "rssee", + "description": "Node RSS EventEmitter", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "jhh", + "email": "jhh@sendanor.com" + } + ], + "time": { + "modified": "2011-09-13T16:09:37.159Z", + "created": "2011-09-13T01:22:09.900Z", + "0.0.1": "2011-09-13T01:22:11.918Z", + "0.0.2": "2011-09-13T03:20:46.021Z", + "0.0.3": "2011-09-13T08:07:25.951Z", + "0.0.4": "2011-09-13T16:09:37.159Z" + }, + "author": { + "name": "Jaakko-Heikki Heusala", + "email": "jheusala@iki.fi", + "url": "http://www.jhh.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/jheusala/node-rssee.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/rssee/0.0.1", + "0.0.2": "http://registry.npmjs.org/rssee/0.0.2", + "0.0.3": "http://registry.npmjs.org/rssee/0.0.3", + "0.0.4": "http://registry.npmjs.org/rssee/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "dfe78f9658029a11ce5ca90824cb31ce1bbd6231", + "tarball": "http://registry.npmjs.org/rssee/-/rssee-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "d56d26c77f8292eaea972fc11c75022b3946447d", + "tarball": "http://registry.npmjs.org/rssee/-/rssee-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "9aed0a58a8df55c62f06fb8fb8e6913e9eca3ad9", + "tarball": "http://registry.npmjs.org/rssee/-/rssee-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "aac7c8b7f5fc6460200323eb71db47c21f3a59ef", + "tarball": "http://registry.npmjs.org/rssee/-/rssee-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/rssee/" + }, + "rubish": { + "name": "rubish", + "description": "Very silly module with some useful shorthands inspired by Ruby", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "mmalecki", + "email": "maciej.malecki@notimplemented.org" + } + ], + "time": { + "modified": "2011-10-30T19:47:02.206Z", + "created": "2011-10-30T19:22:14.451Z", + "0.0.1": "2011-10-30T19:22:57.061Z", + "0.0.2": "2011-10-30T19:47:02.206Z" + }, + "author": { + "name": "Maciej Małecki", + "email": "maciej.malecki@notimplemented.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/mmalecki/node-rubish.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/rubish/0.0.1", + "0.0.2": "http://registry.npmjs.org/rubish/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "184ff0d474ea5b7d3e8c6963404776a033512080", + "tarball": "http://registry.npmjs.org/rubish/-/rubish-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "110837baad54bd6c8e0ee4961debdd6f4df53bcd", + "tarball": "http://registry.npmjs.org/rubish/-/rubish-0.0.2.tgz" + } + }, + "keywords": [ + "ruby", + "shorthand", + "functions", + "utils" + ], + "url": "http://registry.npmjs.org/rubish/" + }, + "ruby-haml": { + "name": "ruby-haml", + "description": "Render Ruby's version of Haml from Node.js - Ruby Haml is Perfect", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "viatropos", + "email": "lancejpollard@gmail.com" + } + ], + "time": { + "modified": "2011-11-10T11:25:41.787Z", + "created": "2011-11-10T11:25:41.173Z", + "0.2.0": "2011-11-10T11:25:41.787Z" + }, + "author": { + "name": "Lance Pollard", + "email": "lancejpollard@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/viatropos/ruby-haml.js.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/ruby-haml/0.2.0" + }, + "dist": { + "0.2.0": { + "shasum": "7ce043fe1f8ff6428dc5a4ed5104c56b6c703778", + "tarball": "http://registry.npmjs.org/ruby-haml/-/ruby-haml-0.2.0.tgz" + } + }, + "keywords": [ + "templating", + "html", + "haml", + "node" + ], + "url": "http://registry.npmjs.org/ruby-haml/" + }, + "rumba": { + "name": "rumba", + "description": "a blogging engine for Express apps, written in CoffeeScript", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "paulbjensen", + "email": "paulbjensen@gmail.com" + } + ], + "time": { + "modified": "2011-01-07T20:19:24.244Z", + "created": "2011-01-07T20:19:22.729Z", + "0.0.1": "2011-01-07T20:19:24.244Z" + }, + "author": { + "name": "Paul Jensen", + "email": "paulbjensen@gmail.com", + "url": "http://paulbjensen.co.uk" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/rumba/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "baba02566211a0ada7c9d948444bd047aeec287d", + "tarball": "http://registry.npmjs.org/rumba/-/rumba-0.0.1.tgz" + } + }, + "keywords": [ + "blog", + "express", + "coffeescript" + ], + "url": "http://registry.npmjs.org/rumba/" + }, + "run": { + "name": "run", + "description": "Reruns the given file whenever a file in the current working dir subtree is changed.", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "dtrejo", + "email": "dtrejo@cs.brown.edu" + } + ], + "time": { + "modified": "2011-11-27T23:00:17.735Z", + "created": "2011-03-17T23:20:47.411Z", + "0.0.2": "2011-03-17T23:20:47.531Z", + "0.0.3": "2011-04-30T03:06:50.379Z", + "0.1.0": "2011-05-07T02:54:33.631Z", + "0.1.1": "2011-05-07T03:11:14.808Z", + "0.2.0": "2011-11-13T22:11:08.420Z", + "0.2.2": "2011-11-27T23:00:17.735Z" + }, + "author": { + "name": "David Trejo", + "email": "dtrejo@cs.brown.edu", + "url": "http://dtrejo.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/DTrejo/run.js.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/run/0.0.2", + "0.0.3": "http://registry.npmjs.org/run/0.0.3", + "0.1.0": "http://registry.npmjs.org/run/0.1.0", + "0.1.1": "http://registry.npmjs.org/run/0.1.1", + "0.2.0": "http://registry.npmjs.org/run/0.2.0", + "0.2.2": "http://registry.npmjs.org/run/0.2.2" + }, + "dist": { + "0.0.2": { + "shasum": "6111d41b217268176d117df065e7aab3a5f22cb1", + "tarball": "http://registry.npmjs.org/run/-/run-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "68e94ba959b84ebba92fc8ad562d738d42ecee51", + "tarball": "http://registry.npmjs.org/run/-/run-0.0.3.tgz" + }, + "0.1.0": { + "shasum": "2c039a8504b8f17afc1aa12073d37f8320309cb1", + "tarball": "http://registry.npmjs.org/run/-/run-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "ddfee2c13544e11792660e9d76a7af02a474e8a1", + "tarball": "http://registry.npmjs.org/run/-/run-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "e06ecaa38e3d0d8917caea9b5a35fa397f47a65a", + "tarball": "http://registry.npmjs.org/run/-/run-0.2.0.tgz" + }, + "0.2.2": { + "shasum": "47fdb6010921adb8b46a0a0f191328ee32fc566c", + "tarball": "http://registry.npmjs.org/run/-/run-0.2.2.tgz" + } + }, + "url": "http://registry.npmjs.org/run/" + }, + "rundown": { + "name": "rundown", + "description": "RDoc parser for Javacript.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "trans", + "email": "transfire@gmail.com" + } + ], + "time": { + "modified": "2011-10-25T14:57:05.388Z", + "created": "2011-10-25T14:57:04.521Z", + "0.0.1": "2011-10-25T14:57:05.388Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/rubyworks/rundown.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/rundown/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "0834b5cc5749571ee83ba1886efde41d7b1e778c", + "tarball": "http://registry.npmjs.org/rundown/-/rundown-0.0.1.tgz" + } + }, + "keywords": [ + "rubyworks", + "rdoc", + "ruby" + ], + "url": "http://registry.npmjs.org/rundown/" + }, + "runforcover": { + "name": "runforcover", + "description": "require plugin for js code coverage using bunker", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "chrisdickinson", + "email": "chris@neversaw.us" + } + ], + "time": { + "modified": "2011-12-12T16:52:22.110Z", + "created": "2011-08-07T05:04:20.757Z", + "0.0.1": "2011-12-12T16:52:22.110Z", + "0.0.2": "2011-12-03T18:39:09.954Z" + }, + "author": { + "name": "Chris Dickinson", + "email": "chris@neversaw.us", + "url": "http://neversaw.us" + }, + "repository": { + "type": "git", + "url": "git://github.com/chrisdickinson/node-runforcover.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/runforcover/0.0.2", + "0.0.1": "http://registry.npmjs.org/runforcover/0.0.1" + }, + "dist": { + "0.0.2": { + "shasum": "344f057d8d45d33aebc6cc82204678f69c4857cc", + "tarball": "http://registry.npmjs.org/runforcover/-/runforcover-0.0.2.tgz" + }, + "0.0.1": { + "shasum": "923625fbf9b68c80263d288d7230cf2f06bf6306", + "tarball": "http://registry.npmjs.org/runforcover/-/runforcover-0.0.1.tgz" + } + }, + "keywords": [ + "code", + "coverage", + "bunker" + ], + "url": "http://registry.npmjs.org/runforcover/" + }, + "runlol": { + "name": "runlol", + "description": "Automated CoffeeScript compiler, tester and runner", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "bodil", + "email": "bodil@bodil.tv" + } + ], + "time": { + "modified": "2011-12-11T16:41:47.415Z", + "created": "2011-08-20T20:28:09.977Z", + "0.1.0": "2011-08-20T20:28:13.449Z", + "0.1.1": "2011-12-11T16:41:47.415Z" + }, + "author": { + "name": "Bodil Stokke", + "email": "bodil@bodil.tv" + }, + "repository": { + "type": "git", + "url": "git://github.com/bodil/runlol.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/runlol/0.1.0", + "0.1.1": "http://registry.npmjs.org/runlol/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "44b4ca04c6ae02e7b1564226b5227846adab0f1c", + "tarball": "http://registry.npmjs.org/runlol/-/runlol-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "e55af6e69aca94b4b575f44a1dfd25add9a98986", + "tarball": "http://registry.npmjs.org/runlol/-/runlol-0.1.1.tgz" + } + }, + "keywords": [ + "coffeescript", + "tdd" + ], + "url": "http://registry.npmjs.org/runlol/" + }, + "runner": { + "name": "runner", + "description": "development restart script for node.js", + "dist-tags": { + "latest": "1.0.4" + }, + "maintainers": [ + { + "name": "nox", + "email": "nox@demoncode.de" + } + ], + "time": { + "modified": "2011-02-18T16:01:46.213Z", + "created": "2011-02-17T09:37:44.963Z", + "1.0.0": "2011-02-17T09:37:45.349Z", + "1.0.1": "2011-02-17T09:49:21.840Z", + "1.0.2": "2011-02-17T09:55:50.534Z", + "1.0.3": "2011-02-18T15:34:54.302Z", + "1.0.4": "2011-02-18T16:01:46.213Z" + }, + "author": { + "name": "Tobias Kopelke", + "email": "nox@demoncode.de" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/runner/1.0.0", + "1.0.1": "http://registry.npmjs.org/runner/1.0.1", + "1.0.2": "http://registry.npmjs.org/runner/1.0.2", + "1.0.3": "http://registry.npmjs.org/runner/1.0.3", + "1.0.4": "http://registry.npmjs.org/runner/1.0.4" + }, + "dist": { + "1.0.0": { + "shasum": "04757fb91cd96c60eaf98a189491c2ef2d8b2c13", + "tarball": "http://registry.npmjs.org/runner/-/runner-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "f810c1c6641dbeb37afd6c00aff58821fab27ad5", + "tarball": "http://registry.npmjs.org/runner/-/runner-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "26c1562dec00a5dd58788f40847c2afa8d71bb0f", + "tarball": "http://registry.npmjs.org/runner/-/runner-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "fd1b5d2284eac0453ece6c782ca725cc95b85527", + "tarball": "http://registry.npmjs.org/runner/-/runner-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "241394b581c8b6b9f5d884a5d68901a4762911b6", + "tarball": "http://registry.npmjs.org/runner/-/runner-1.0.4.tgz" + } + }, + "keywords": [ + "development", + "restart", + "demon", + "node.js" + ], + "url": "http://registry.npmjs.org/runner/" + }, + "runways": { + "name": "runways", + "description": "robust explicit routing for connect", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "sjsadowski", + "email": "stephen.sadowski@gmail.com" + } + ], + "time": { + "modified": "2011-07-15T20:02:10.482Z", + "created": "2011-07-14T20:40:06.488Z", + "0.1.0": "2011-07-14T20:40:06.807Z", + "0.1.1": "2011-07-15T20:02:10.482Z" + }, + "author": { + "name": "Stephen Sadowski" + }, + "repository": { + "type": "git", + "url": "git://github.com/sjsadowski/runways.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/runways/0.1.0", + "0.1.1": "http://registry.npmjs.org/runways/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "d5bf5c9e22e54ae2b86b7f93327933f178f82c64", + "tarball": "http://registry.npmjs.org/runways/-/runways-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "3ca10ba83dd3a57e48ebc4057f139f913e04bbe9", + "tarball": "http://registry.npmjs.org/runways/-/runways-0.1.1.tgz" + } + }, + "keywords": [ + "connect", + "routes", + "routing" + ], + "url": "http://registry.npmjs.org/runways/" + }, + "rw-translate": { + "name": "rw-translate", + "description": "RW plugin for automated locale files translation using google translate", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "anatoliy", + "email": "rpm1602@gmail.com" + } + ], + "time": { + "modified": "2011-09-07T07:10:13.492Z", + "created": "2011-09-07T07:10:11.337Z", + "0.0.1": "2011-09-07T07:10:13.492Z" + }, + "author": { + "name": "Anatoliy Chakkaev" + }, + "repository": { + "type": "git", + "url": "git@github.com:1602/rw-translate.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/rw-translate/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "3cb7cdaf5e0776ae8b9ec76832a23f05e4eb5ebd", + "tarball": "http://registry.npmjs.org/rw-translate/-/rw-translate-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/rw-translate/" + }, + "rx": { + "name": "rx", + "description": "Microsoft's RxJS", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "vvilhonen", + "email": "vesa@vilhonen.com" + } + ], + "time": { + "modified": "2011-04-09T12:09:51.831Z", + "created": "2011-02-09T17:09:37.008Z", + "0.0.1": "2011-02-09T17:09:37.511Z", + "0.0.2": "2011-04-09T12:09:51.831Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/rx/0.0.1", + "0.0.2": "http://registry.npmjs.org/rx/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "548ab1e94d73f5c3db9352962977b9f2d0b67c30", + "tarball": "http://registry.npmjs.org/rx/-/rx-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "7b333b704e7edb49e26fa000cef910267e1a4ef3", + "tarball": "http://registry.npmjs.org/rx/-/rx-0.0.2.tgz" + } + }, + "keywords": [ + "reactive", + "rx", + "rxjs" + ], + "url": "http://registry.npmjs.org/rx/" + }, + "rzr": { + "name": "rzr", + "description": "full-stack node.js application framework", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "fractal", + "email": "contact@wearefractal.com" + }, + { + "name": "contra", + "email": "contra@australia.edu" + } + ], + "time": { + "modified": "2011-09-02T13:20:31.505Z", + "created": "2011-09-02T09:00:48.904Z", + "0.0.1": "2011-09-02T09:00:49.316Z" + }, + "author": { + "name": "Fractal", + "url": "http://wearefractal.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/wearefractal/rzr.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/rzr/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "521fa22aac5c2cf53643ffad2e6a0748344b3aa5", + "tarball": "http://registry.npmjs.org/rzr/-/rzr-0.0.1.tgz" + } + }, + "keywords": [ + "framework", + "ddd", + "mongo", + "fractal", + "socket", + "application", + "secure" + ], + "url": "http://registry.npmjs.org/rzr/" + }, + "s-tpl": { + "name": "s-tpl", + "description": "tiny dumb templates for ender", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "chrisevans", + "email": "cmevans2@gmail.com" + } + ], + "time": { + "modified": "2011-09-16T01:30:54.589Z", + "created": "2011-09-16T01:30:54.358Z", + "0.0.0": "2011-09-16T01:30:54.589Z" + }, + "author": { + "name": "Chris Evans", + "email": "cmevans2@gmail.com" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/s-tpl/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "c6a6ce66e30a8d4791b0af890a52b2eae0cfb3c1", + "tarball": "http://registry.npmjs.org/s-tpl/-/s-tpl-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/s-tpl/" + }, + "s3-post": { + "name": "s3-post", + "description": "Functions for S3 POSTing and policy signing.", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "andrewschaaf", + "email": "andrew@andrewschaaf.com" + } + ], + "time": { + "modified": "2011-09-27T18:50:53.552Z", + "created": "2011-08-03T20:37:19.345Z", + "0.0.1": "2011-08-03T20:37:21.309Z", + "0.0.2": "2011-08-12T18:46:05.432Z", + "0.0.3": "2011-08-31T21:39:39.069Z", + "0.0.4": "2011-08-31T23:59:39.902Z", + "0.0.5": "2011-09-27T18:50:53.552Z" + }, + "author": { + "name": "Andrew Schaaf", + "email": "andrew@andrewschaaf.com", + "url": "http://andrewschaaf.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/andrewschaaf/node-s3-post.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/s3-post/0.0.1", + "0.0.2": "http://registry.npmjs.org/s3-post/0.0.2", + "0.0.3": "http://registry.npmjs.org/s3-post/0.0.3", + "0.0.4": "http://registry.npmjs.org/s3-post/0.0.4", + "0.0.5": "http://registry.npmjs.org/s3-post/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "f3e6938af14dbfae5a8eddd71997385697261c40", + "tarball": "http://registry.npmjs.org/s3-post/-/s3-post-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "b3c6da6973a99d1f00500c5b45836354d1fc1365", + "tarball": "http://registry.npmjs.org/s3-post/-/s3-post-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "a342f375564f083f88f26785ecb0a27fc168b168", + "tarball": "http://registry.npmjs.org/s3-post/-/s3-post-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "abc4a65b8bc975b23dfc0a325daa13a5bc00fd1d", + "tarball": "http://registry.npmjs.org/s3-post/-/s3-post-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "a5dcffb38f7ddfd308000c57c76931832e69c851", + "tarball": "http://registry.npmjs.org/s3-post/-/s3-post-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/s3-post/" + }, + "safis": { + "name": "safis", + "description": "An opinionated framework to help you impress your clients with all the latest buzzwords.", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "nevir", + "email": "ian@nevir.net" + } + ], + "time": { + "modified": "2011-04-08T06:07:37.949Z", + "created": "2011-04-08T06:07:37.614Z", + "0.0.0": "2011-04-08T06:07:37.949Z" + }, + "author": { + "name": "Ian MacLeod", + "email": "ian@nevir.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/nevir/safis.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/safis/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "7fa6e039debb7ac0a021207f4b53b9d045bd924f", + "tarball": "http://registry.npmjs.org/safis/-/safis-0.0.0.tgz" + } + }, + "keywords": [ + "alpha" + ], + "url": "http://registry.npmjs.org/safis/" + }, + "saiga": { + "name": "saiga", + "description": "A set of handy file system/build tools, based on Nyala promises", + "dist-tags": { + "latest": "0.0.7" + }, + "maintainers": [ + { + "name": "naneau", + "email": "npm@naneau.nl" + } + ], + "time": { + "modified": "2011-05-12T15:01:17.525Z", + "created": "2011-04-22T20:37:47.347Z", + "0.0.1": "2011-04-22T20:37:48.001Z", + "0.0.2": "2011-04-22T20:38:41.630Z", + "0.0.3": "2011-04-24T13:39:13.744Z", + "0.0.4": "2011-05-06T12:54:59.134Z", + "0.0.5": "2011-05-06T12:58:08.569Z", + "0.0.6": "2011-05-12T12:48:21.304Z", + "0.0.7": "2011-05-12T15:01:17.526Z" + }, + "author": { + "name": "Maurice Fonk", + "email": "saiga@naneau.nl", + "url": "http://naneau.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/naneau/saiga.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/saiga/0.0.1", + "0.0.2": "http://registry.npmjs.org/saiga/0.0.2", + "0.0.3": "http://registry.npmjs.org/saiga/0.0.3", + "0.0.4": "http://registry.npmjs.org/saiga/0.0.4", + "0.0.5": "http://registry.npmjs.org/saiga/0.0.5", + "0.0.6": "http://registry.npmjs.org/saiga/0.0.6", + "0.0.7": "http://registry.npmjs.org/saiga/0.0.7" + }, + "dist": { + "0.0.1": { + "shasum": "244b098f4c81d03758d942a3cab38f2ff8ba9da1", + "tarball": "http://registry.npmjs.org/saiga/-/saiga-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "396ceef2d325f3d3c1f4aaeb90646c5fee660158", + "tarball": "http://registry.npmjs.org/saiga/-/saiga-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "2e0f81cb8d56d256bd8f8eb4f70adb9f4ad3a12e", + "tarball": "http://registry.npmjs.org/saiga/-/saiga-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "47a9ecda71cdbc6dd0c64dc0f158314b79fec0d1", + "tarball": "http://registry.npmjs.org/saiga/-/saiga-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "59728b6fb670109cfa35b83f70062e0e22be8eb5", + "tarball": "http://registry.npmjs.org/saiga/-/saiga-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "538aba8e98bbddb3dd7b762532c45787bb3a3cf0", + "tarball": "http://registry.npmjs.org/saiga/-/saiga-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "ead7b5694c8cf57f5b99d4918b732a212d4b8fce", + "tarball": "http://registry.npmjs.org/saiga/-/saiga-0.0.7.tgz" + } + }, + "url": "http://registry.npmjs.org/saiga/" + }, + "sailthru-client": { + "name": "sailthru-client", + "description": "Node.js client for Sailthru API", + "dist-tags": { + "latest": "1.0.2" + }, + "maintainers": [ + { + "name": "infynyxx", + "email": "praj@infynyxx.com" + } + ], + "time": { + "modified": "2011-08-14T04:38:24.346Z", + "created": "2011-06-06T00:58:26.171Z", + "1.0.0": "2011-06-06T00:58:26.645Z", + "1.0.1": "2011-06-12T14:13:47.265Z", + "1.0.2": "2011-08-14T04:38:24.346Z" + }, + "author": { + "name": "Prajwal Tuladhar", + "email": "praj@sailthru.com", + "url": "http://infynyxx.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/sailthru/sailthru-node-client.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/sailthru-client/1.0.0", + "1.0.1": "http://registry.npmjs.org/sailthru-client/1.0.1", + "1.0.2": "http://registry.npmjs.org/sailthru-client/1.0.2" + }, + "dist": { + "1.0.0": { + "shasum": "a7c64b764d0a53c64e8920a697c0a77551ec6bff", + "tarball": "http://registry.npmjs.org/sailthru-client/-/sailthru-client-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "dcc1b9e6ff7f57f8b260e410e99e0cb0ba0af0de", + "tarball": "http://registry.npmjs.org/sailthru-client/-/sailthru-client-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "2d617e359d9f58520b6bfc19ccde2c84366264f6", + "tarball": "http://registry.npmjs.org/sailthru-client/-/sailthru-client-1.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/sailthru-client/" + }, + "saimonmoore-cradle": { + "name": "saimonmoore-cradle", + "description": "the high-level, caching, CouchDB library - This version disables automatic conflict handling when saving documents", + "dist-tags": { + "latest": "0.5.6" + }, + "maintainers": [ + { + "name": "excsm", + "email": "saimonmoore@gmail.com" + } + ], + "time": { + "modified": "2011-08-27T15:41:26.521Z", + "created": "2011-08-27T15:41:25.633Z", + "0.5.6": "2011-08-27T15:41:26.521Z" + }, + "author": { + "name": "Alexis Sellier", + "email": "self@cloudhead.net" + }, + "versions": { + "0.5.6": "http://registry.npmjs.org/saimonmoore-cradle/0.5.6" + }, + "dist": { + "0.5.6": { + "shasum": "427ed7f77b73477b31ae2c5aeb7ec42a9ee418c6", + "tarball": "http://registry.npmjs.org/saimonmoore-cradle/-/saimonmoore-cradle-0.5.6.tgz" + } + }, + "keywords": [ + "couchdb", + "database", + "couch" + ], + "url": "http://registry.npmjs.org/saimonmoore-cradle/" + }, + "sake": { + "name": "sake", + "description": "A Rake-like application for managing builds and for Stitching JavaScript, CSS, HTML, and other sundry files together for web development.", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": null, + "maintainers": [ + { + "name": "jhamlet", + "email": "jerry@hamletink.com" + } + ], + "time": { + "modified": "2011-12-10T00:44:28.050Z", + "created": "2011-12-10T00:44:26.444Z", + "0.0.1": "2011-12-10T00:44:28.050Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/jhamlet/sake-node.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/sake/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "885aa4d1e6a61063e2f4ba4204836fe42b778985", + "tarball": "http://registry.npmjs.org/sake/-/sake-0.0.1.tgz" + } + }, + "keywords": [ + "packager", + "css", + "javascript", + "html", + "web", + "development" + ], + "url": "http://registry.npmjs.org/sake/" + }, + "salesforce": { + "name": "salesforce", + "description": "A node.js module for interactive with the SFDC REST API.", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "phidelta", + "email": "phidelta@phideltacity.net" + } + ], + "time": { + "modified": "2011-07-10T09:06:29.500Z", + "created": "2011-07-10T08:58:55.148Z", + "0.0.2": "2011-07-10T08:58:55.851Z", + "0.0.3": "2011-07-10T09:04:25.208Z", + "0.0.4": "2011-07-10T09:06:29.500Z" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/salesforce/0.0.2", + "0.0.3": "http://registry.npmjs.org/salesforce/0.0.3", + "0.0.4": "http://registry.npmjs.org/salesforce/0.0.4" + }, + "dist": { + "0.0.2": { + "shasum": "7067fd507e756e2d7c07a194b74184c8bbfcda6c", + "tarball": "http://registry.npmjs.org/salesforce/-/salesforce-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "c15c21150b01eb74b20ef1df8d7318b192fc5cef", + "tarball": "http://registry.npmjs.org/salesforce/-/salesforce-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "cd4347b3d36e375f0bde4d56e7d38e130d1ead53", + "tarball": "http://registry.npmjs.org/salesforce/-/salesforce-0.0.4.tgz" + } + }, + "keywords": [ + "web", + "server", + "salesforce" + ], + "url": "http://registry.npmjs.org/salesforce/" + }, + "sam": { + "name": "sam", + "description": "simple asset manager", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "weepy", + "email": "jonahfox@gmail.com" + } + ], + "time": { + "modified": "2011-04-01T14:29:41.974Z", + "created": "2011-03-11T18:20:27.178Z", + "0.0.1": "2011-03-11T18:20:27.512Z", + "0.0.2": "2011-03-11T18:21:42.051Z", + "0.0.3": "2011-04-01T14:29:41.974Z" + }, + "author": { + "name": "weepy" + }, + "repository": { + "type": "git", + "url": "git://github.com/weepy/sam.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/sam/0.0.1", + "0.0.2": "http://registry.npmjs.org/sam/0.0.2", + "0.0.3": "http://registry.npmjs.org/sam/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "ab5f07686ae7f7878e07f652b3e8eb0bbbd97189", + "tarball": "http://registry.npmjs.org/sam/-/sam-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "d8f28ec22eb4ae89a22ac6ad60924fb1f59bbae9", + "tarball": "http://registry.npmjs.org/sam/-/sam-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "bdb3b9225ecd006fa3f2877e04622e85cbe64242", + "tarball": "http://registry.npmjs.org/sam/-/sam-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/sam/" + }, + "samreader": { + "name": "samreader", + "description": "parsing SAM format", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "shinout", + "email": "shinout310@gmail.com" + } + ], + "time": { + "modified": "2011-11-14T11:47:59.610Z", + "created": "2011-11-14T11:47:55.652Z", + "0.0.1": "2011-11-14T11:47:59.610Z" + }, + "author": { + "name": "SHIN Suzuki", + "email": "shinout310@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/shinout/SAMReader.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/samreader/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "029e2f5ca4ebbeb080eef74ee0e43bebbb23be97", + "tarball": "http://registry.npmjs.org/samreader/-/samreader-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/samreader/" + }, + "samurai": { + "name": "samurai", + "description": "Samurai payment gateway API client module for Node.js", + "dist-tags": { + "latest": "0.2.3" + }, + "maintainers": [ + { + "name": "tisho", + "email": "tisho@feefighters.com" + } + ], + "time": { + "modified": "2011-12-08T11:12:25.557Z", + "created": "2011-11-17T06:40:05.380Z", + "0.2.0": "2011-11-17T06:40:07.000Z", + "0.2.1": "2011-12-01T15:17:05.830Z", + "0.2.2": "2011-12-03T13:56:40.070Z", + "0.2.3": "2011-12-08T11:12:25.557Z" + }, + "author": { + "name": "FeeFighters", + "email": "samurai@feefighters.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/FeeFighters/samurai-client-nodejs.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/samurai/0.2.0", + "0.2.1": "http://registry.npmjs.org/samurai/0.2.1", + "0.2.2": "http://registry.npmjs.org/samurai/0.2.2", + "0.2.3": "http://registry.npmjs.org/samurai/0.2.3" + }, + "dist": { + "0.2.0": { + "shasum": "62c53ab4fe8a5f3663e165827beb0b6303ceaefb", + "tarball": "http://registry.npmjs.org/samurai/-/samurai-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "4f71261131c33b4f0f4cf857d75c1284ce70c555", + "tarball": "http://registry.npmjs.org/samurai/-/samurai-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "b0a86f605739bd0422600cbd13c1ca3d79559a1b", + "tarball": "http://registry.npmjs.org/samurai/-/samurai-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "7dc50b4c86cb1f9b24d08cb0f0a2224c4edbb3ab", + "tarball": "http://registry.npmjs.org/samurai/-/samurai-0.2.3.tgz" + } + }, + "keywords": [ + "payments", + "payment gateway", + "payment processing", + "samurai", + "feefighters" + ], + "url": "http://registry.npmjs.org/samurai/" + }, + "sandbox": { + "name": "sandbox", + "description": "A nifty javascript sandbox for node.js", + "dist-tags": { + "latest": "0.8.1" + }, + "maintainers": [ + { + "name": "gf3", + "email": "gianni@runlevel6.org" + } + ], + "author": { + "name": "Gianni Chiappetta", + "email": "gianni@runlevel6.org", + "url": "http://gf3.ca" + }, + "repository": { + "type": "git", + "url": "git://github.com/gf3/sandbox.git" + }, + "time": { + "modified": "2011-04-22T17:34:26.156Z", + "created": "2011-04-22T17:29:22.061Z", + "0.7.0": "2011-04-22T17:29:22.061Z", + "0.8.0": "2011-04-22T17:29:22.061Z", + "0.8.1": "2011-04-22T17:34:26.156Z" + }, + "versions": { + "0.7.0": "http://registry.npmjs.org/sandbox/0.7.0", + "0.8.0": "http://registry.npmjs.org/sandbox/0.8.0", + "0.8.1": "http://registry.npmjs.org/sandbox/0.8.1" + }, + "dist": { + "0.7.0": { + "tarball": "http://packages:5984/sandbox/-/sandbox-0.7.0.tgz" + }, + "0.8.0": { + "shasum": "b29e1db869c607e175bd5c949b459c2a2c75a0e0", + "tarball": "http://registry.npmjs.org/sandbox/-/sandbox-0.8.0.tgz" + }, + "0.8.1": { + "shasum": "84cb2cde25b377b62d05399eed790c911c87e16e", + "tarball": "http://registry.npmjs.org/sandbox/-/sandbox-0.8.1.tgz" + } + }, + "url": "http://registry.npmjs.org/sandbox/" + }, + "sandboxed-module": { + "name": "sandboxed-module", + "description": "A sandboxed node.js module loader that lets you inject dependencies into your modules.", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "felixge", + "email": "felix@debuggable.com" + } + ], + "time": { + "modified": "2011-11-21T11:59:55.824Z", + "created": "2011-06-26T15:37:44.225Z", + "0.0.1": "2011-06-26T15:37:44.885Z", + "0.0.2": "2011-06-26T18:13:35.130Z", + "0.0.3": "2011-06-26T18:34:40.442Z", + "0.0.4": "2011-06-29T12:14:27.800Z", + "0.0.5": "2011-07-03T13:02:19.517Z", + "0.1.0": "2011-07-07T23:14:48.473Z", + "0.1.1": "2011-08-19T20:44:30.006Z", + "0.1.2": "2011-11-21T11:59:55.824Z" + }, + "author": { + "name": "Felix Geisendörfer", + "email": "felix@debuggable.com", + "url": "http://debuggable.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/felixge/node-sandboxed-module.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/sandboxed-module/0.0.1", + "0.0.2": "http://registry.npmjs.org/sandboxed-module/0.0.2", + "0.0.3": "http://registry.npmjs.org/sandboxed-module/0.0.3", + "0.0.4": "http://registry.npmjs.org/sandboxed-module/0.0.4", + "0.0.5": "http://registry.npmjs.org/sandboxed-module/0.0.5", + "0.1.0": "http://registry.npmjs.org/sandboxed-module/0.1.0", + "0.1.1": "http://registry.npmjs.org/sandboxed-module/0.1.1", + "0.1.2": "http://registry.npmjs.org/sandboxed-module/0.1.2" + }, + "dist": { + "0.0.1": { + "shasum": "ebb695368c49c876d85269c971f5de49530a0861", + "tarball": "http://registry.npmjs.org/sandboxed-module/-/sandboxed-module-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "91015cac9d75bf898e5b8123063a6b7ecfa82169", + "tarball": "http://registry.npmjs.org/sandboxed-module/-/sandboxed-module-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "d7d38b581e1cac574031bfbea4c93e1e70108d71", + "tarball": "http://registry.npmjs.org/sandboxed-module/-/sandboxed-module-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "8065928d0a95fb0e6e09da2557ccf46451926775", + "tarball": "http://registry.npmjs.org/sandboxed-module/-/sandboxed-module-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "a873e3ba9b60e600b1d305a2221326ad01f9e60d", + "tarball": "http://registry.npmjs.org/sandboxed-module/-/sandboxed-module-0.0.5.tgz" + }, + "0.1.0": { + "shasum": "969a4b1cbaf50b4a5a05f32f62897a6eba340377", + "tarball": "http://registry.npmjs.org/sandboxed-module/-/sandboxed-module-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "1258fc40de1c0cd16f0103fc6dafa525bf9084a2", + "tarball": "http://registry.npmjs.org/sandboxed-module/-/sandboxed-module-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "9d7409c7d05592d2ebbedcccfd909567b50d08b7", + "tarball": "http://registry.npmjs.org/sandboxed-module/-/sandboxed-module-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/sandboxed-module/" + }, + "sanitize": { + "name": "sanitize", + "description": "A library for sanitizing and/or stripping HTML tags", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "apeace", + "email": "apeace@gmail.com" + } + ], + "time": { + "modified": "2011-11-08T23:08:02.689Z", + "created": "2011-11-08T01:48:27.623Z", + "0.0.1": "2011-11-08T01:48:28.193Z", + "0.0.2": "2011-11-08T03:20:19.595Z", + "0.0.3": "2011-11-08T23:08:02.689Z" + }, + "author": { + "name": "Andrew Peace", + "email": "apeace@gmail.com", + "url": "http://github.com/apeace" + }, + "repository": { + "type": "git", + "url": "git://github.com/apeace/sanitize.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/sanitize/0.0.1", + "0.0.2": "http://registry.npmjs.org/sanitize/0.0.2", + "0.0.3": "http://registry.npmjs.org/sanitize/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "5a5b1d5c0013e553f52281efba7f946c01748189", + "tarball": "http://registry.npmjs.org/sanitize/-/sanitize-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "58a9913e8efaaa536965278d2e163d32882fde25", + "tarball": "http://registry.npmjs.org/sanitize/-/sanitize-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "eea3c60fc7a737410b978641b4aae66e074a31ed", + "tarball": "http://registry.npmjs.org/sanitize/-/sanitize-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/sanitize/" + }, + "sanitizer": { + "name": "sanitizer", + "description": "Caja's HTML Sanitizer as a Node.js module", + "dist-tags": { + "latest": "0.0.14" + }, + "maintainers": [ + { + "name": "theSmaw", + "email": "bensmawfield@googlemail.com" + } + ], + "author": { + "name": "Ben Smawfield", + "email": "bensmawfield@googlemail.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/theSmaw/Caja-HTML-Sanitizer.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/sanitizer/0.0.1", + "0.0.10": "http://registry.npmjs.org/sanitizer/0.0.10", + "0.0.11": "http://registry.npmjs.org/sanitizer/0.0.11", + "0.0.12": "http://registry.npmjs.org/sanitizer/0.0.12", + "0.0.13": "http://registry.npmjs.org/sanitizer/0.0.13", + "0.0.14": "http://registry.npmjs.org/sanitizer/0.0.14", + "0.0.2": "http://registry.npmjs.org/sanitizer/0.0.2", + "0.0.3": "http://registry.npmjs.org/sanitizer/0.0.3", + "0.0.4": "http://registry.npmjs.org/sanitizer/0.0.4", + "0.0.5": "http://registry.npmjs.org/sanitizer/0.0.5", + "0.0.6": "http://registry.npmjs.org/sanitizer/0.0.6", + "0.0.7": "http://registry.npmjs.org/sanitizer/0.0.7", + "0.0.8": "http://registry.npmjs.org/sanitizer/0.0.8", + "0.0.9": "http://registry.npmjs.org/sanitizer/0.0.9" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/sanitizer/-/sanitizer-0.0.1.tgz" + }, + "0.0.10": { + "tarball": "http://packages:5984/sanitizer/-/sanitizer-0.0.10.tgz" + }, + "0.0.11": { + "tarball": "http://packages:5984/sanitizer/-/sanitizer-0.0.11.tgz" + }, + "0.0.12": { + "tarball": "http://packages:5984/sanitizer/-/sanitizer-0.0.12.tgz" + }, + "0.0.13": { + "tarball": "http://packages:5984/sanitizer/-/sanitizer-0.0.13.tgz" + }, + "0.0.14": { + "tarball": "http://packages:5984/sanitizer/-/sanitizer-0.0.14.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/sanitizer/-/sanitizer-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/sanitizer/-/sanitizer-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://packages:5984/sanitizer/-/sanitizer-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://packages:5984/sanitizer/-/sanitizer-0.0.5.tgz" + }, + "0.0.6": { + "tarball": "http://packages:5984/sanitizer/-/sanitizer-0.0.6.tgz" + }, + "0.0.7": { + "tarball": "http://packages:5984/sanitizer/-/sanitizer-0.0.7.tgz" + }, + "0.0.8": { + "tarball": "http://packages:5984/sanitizer/-/sanitizer-0.0.8.tgz" + }, + "0.0.9": { + "tarball": "http://packages:5984/sanitizer/-/sanitizer-0.0.9.tgz" + } + }, + "url": "http://registry.npmjs.org/sanitizer/" + }, + "sapnwrfc": { + "name": "sapnwrfc", + "description": "Bindings for the SAP NetWeaver RFC SDK", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "jdorner", + "email": "j.dorner@gmx.net" + } + ], + "time": { + "modified": "2011-08-02T10:48:51.669Z", + "created": "2011-08-02T10:48:50.566Z", + "0.1.0": "2011-08-02T10:48:51.669Z" + }, + "author": { + "name": "Joachim Dorner", + "email": "j.dorner@gmx.net" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/sapnwrfc/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "3d384e8115a18d5f343389fbfea0f77a54bf0073", + "tarball": "http://registry.npmjs.org/sapnwrfc/-/sapnwrfc-0.1.0.tgz" + } + }, + "keywords": [ + "sapnwrfc", + "sap", + "rfc" + ], + "url": "http://registry.npmjs.org/sapnwrfc/" + }, + "sardines": { + "name": "sardines", + "dist-tags": { + "latest": "0.2.3" + }, + "maintainers": [ + { + "name": "architectd", + "email": "craig.j.condon@gmail.com" + } + ], + "time": { + "modified": "2011-12-13T01:57:44.669Z", + "created": "2011-07-16T22:55:43.433Z", + "0.0.2": "2011-07-16T22:55:43.646Z", + "0.0.4": "2011-08-29T02:14:25.865Z", + "0.0.5": "2011-09-12T05:24:03.815Z", + "0.0.6": "2011-09-30T18:24:29.720Z", + "0.0.7": "2011-10-01T00:53:59.944Z", + "0.0.8": "2011-11-14T22:33:47.424Z", + "0.1.0": "2011-11-18T19:04:00.079Z", + "0.1.1": "2011-11-20T01:19:38.552Z", + "0.2.0": "2011-11-26T20:11:28.704Z", + "0.2.1": "2011-12-02T21:46:49.509Z", + "0.2.3": "2011-12-13T01:57:44.669Z" + }, + "author": { + "name": "Craig Condon", + "email": "craig@crcn.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/crcn/sardines.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/sardines/0.0.2", + "0.0.4": "http://registry.npmjs.org/sardines/0.0.4", + "0.0.5": "http://registry.npmjs.org/sardines/0.0.5", + "0.0.6": "http://registry.npmjs.org/sardines/0.0.6", + "0.0.7": "http://registry.npmjs.org/sardines/0.0.7", + "0.0.8": "http://registry.npmjs.org/sardines/0.0.8", + "0.1.0": "http://registry.npmjs.org/sardines/0.1.0", + "0.1.1": "http://registry.npmjs.org/sardines/0.1.1", + "0.2.0": "http://registry.npmjs.org/sardines/0.2.0", + "0.2.1": "http://registry.npmjs.org/sardines/0.2.1", + "0.2.3": "http://registry.npmjs.org/sardines/0.2.3" + }, + "dist": { + "0.0.2": { + "tarball": "http://registry.npmjs.org/sardines/-/sardines-0.0.2.tgz" + }, + "0.0.4": { + "shasum": "632ae24b1d223836c28c92cec8eb2977b4dea470", + "tarball": "http://registry.npmjs.org/sardines/-/sardines-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "935366a423ae0474fb7137b4394bd65e76883f3a", + "tarball": "http://registry.npmjs.org/sardines/-/sardines-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "1d67e370c0176c54a27910f82fbcccd308bd5bda", + "tarball": "http://registry.npmjs.org/sardines/-/sardines-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "d1b485c252fd264eabec4d14e29fa410db46ed38", + "tarball": "http://registry.npmjs.org/sardines/-/sardines-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "7670c7e6c58e4d706f603d841fe912150ca6c9b3", + "tarball": "http://registry.npmjs.org/sardines/-/sardines-0.0.8.tgz" + }, + "0.1.0": { + "shasum": "5be872d8a49bb0b867b935a05692078349c7f526", + "tarball": "http://registry.npmjs.org/sardines/-/sardines-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "0dc27d90b6a9e1f146149e4dcbea232bf31cb08d", + "tarball": "http://registry.npmjs.org/sardines/-/sardines-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "83a2d7f42ac602e93ef52d1ae9538fee014ea4c7", + "tarball": "http://registry.npmjs.org/sardines/-/sardines-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "a39d2762566546bfcb104f972d917a6a41ad67a4", + "tarball": "http://registry.npmjs.org/sardines/-/sardines-0.2.1.tgz" + }, + "0.2.3": { + "shasum": "8660f06e5b662d3e99f47bdd5bc25ea5ee07023c", + "tarball": "http://registry.npmjs.org/sardines/-/sardines-0.2.3.tgz" + } + }, + "url": "http://registry.npmjs.org/sardines/" + }, + "Sardines": { + "name": "Sardines", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "architectd", + "email": "craig.j.condon@gmail.com" + } + ], + "time": { + "modified": "2011-07-16T22:46:05.139Z", + "created": "2011-07-16T05:57:49.827Z", + "0.0.1": "2011-07-16T05:57:50.123Z", + "0.0.2": "2011-07-16T22:46:05.139Z" + }, + "author": { + "name": "Craig Condon", + "email": "craig@spiceapps.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/spiceapps/sardines.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/Sardines/0.0.1", + "0.0.2": "http://registry.npmjs.org/Sardines/0.0.2" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/Sardines/-/Sardines-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/Sardines/-/Sardines-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/Sardines/" + }, + "sargam": { + "name": "sargam", + "description": "Sargam processor", + "dist-tags": { + "latest": "0.0.2-pre" + }, + "maintainers": [ + { + "name": "rothfield", + "email": "rthfield@sonic.net" + } + ], + "time": { + "modified": "2011-11-23T19:42:08.646Z", + "created": "2011-11-01T19:25:48.560Z", + "0.0.2-pre": "2011-11-01T19:31:17.321Z", + "0.0.3-pre": "2011-11-17T01:47:25.724Z" + }, + "author": { + "name": "John Rothfield" + }, + "repository": { + "type": "git", + "url": "git://github.com/rothfield/doremi.git" + }, + "versions": { + "0.0.2-pre": "http://registry.npmjs.org/sargam/0.0.2-pre" + }, + "dist": { + "0.0.2-pre": { + "shasum": "b5ea359e582cdfbb09ec04aff5e573753a16758f", + "tarball": "http://registry.npmjs.org/sargam/-/sargam-0.0.2-pre.tgz" + } + }, + "keywords": [ + "sargam", + "solfege", + "letter music notation", + "doremi", + "lilypond", + "raga", + "Indian Music" + ], + "url": "http://registry.npmjs.org/sargam/" + }, + "sasl": { + "name": "sasl", + "description": "A wrapper around gsasl providing both client and server suport", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "jcestibariz", + "email": "mg05182-gh@yahoo.ca" + } + ], + "time": { + "modified": "2011-06-05T13:39:05.711Z", + "created": "2011-06-05T13:39:04.738Z", + "0.0.1": "2011-06-05T13:39:05.711Z" + }, + "author": { + "name": "Juan Carlos Estibariz" + }, + "repository": { + "type": "git", + "url": "git://github.com/jcestibariz/node-sasl.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/sasl/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "6cc25aede235a0ca71164e81f174895e1803e09d", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.12-linux-2.6.39-gentoo": { + "shasum": "373e846294fb43b7f10dc692b4369211f174e714", + "tarball": "http://registry.npmjs.org/sasl/-/sasl-0.0.1-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.12-linux-2.6.39-gentoo.tgz" + } + }, + "tarball": "http://registry.npmjs.org/sasl/-/sasl-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/sasl/" + }, + "sass": { + "name": "sass", + "description": "Syntactically Awesome Stylesheets (compiles to css)", + "dist-tags": { + "latest": "0.5.0" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "versions": { + "0.4.0": "http://registry.npmjs.org/sass/0.4.0", + "0.4.1": "http://registry.npmjs.org/sass/0.4.1", + "0.4.2": "http://registry.npmjs.org/sass/0.4.2", + "0.4.3": "http://registry.npmjs.org/sass/0.4.3", + "0.5.0": "http://registry.npmjs.org/sass/0.5.0" + }, + "dist": { + "0.4.0": { + "tarball": "http://packages:5984/sass/-/sass-0.4.0.tgz" + }, + "0.4.1": { + "tarball": "http://packages:5984/sass/-/sass-0.4.1.tgz" + }, + "0.4.2": { + "tarball": "http://packages:5984/sass/-/sass-0.4.2.tgz" + }, + "0.4.3": { + "tarball": "http://packages:5984/sass/-/sass-0.4.3.tgz" + }, + "0.5.0": { + "tarball": "http://packages:5984/sass/-/sass-0.5.0.tgz" + } + }, + "keywords": [ + "sass", + "template", + "css", + "view" + ], + "url": "http://registry.npmjs.org/sass/" + }, + "satisfic": { + "name": "satisfic", + "description": "A data validator by specification.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "kumatch", + "email": "kumatch@gmail.com" + } + ], + "time": { + "modified": "2011-09-15T14:52:15.785Z", + "created": "2011-09-15T14:52:14.407Z", + "0.1.0": "2011-09-15T14:52:15.785Z" + }, + "author": { + "name": "KUMAKURA Yousuke", + "email": "kumatch@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/kumatch/node-satisfic.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/satisfic/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "eef8389e3181b64263694e437c8e397d8bc4745b", + "tarball": "http://registry.npmjs.org/satisfic/-/satisfic-0.1.0.tgz" + } + }, + "keywords": [ + "validator", + "validaton", + "satisfed", + "spec", + "specification" + ], + "url": "http://registry.npmjs.org/satisfic/" + }, + "sax": { + "name": "sax", + "dist-tags": { + "latest": "0.3.4" + }, + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me/" + }, + "time": { + "modified": "2011-12-05T05:15:41.943Z", + "created": "2011-02-09T19:13:51.969Z", + "0.1.0": "2011-02-09T19:13:51.969Z", + "0.1.1": "2011-02-09T19:13:51.969Z", + "0.1.2": "2011-02-09T19:13:51.969Z", + "0.1.3": "2011-06-14T01:26:18.836Z", + "0.1.4": "2011-06-14T18:44:43.566Z", + "0.1.5": "2011-07-08T23:49:39.930Z", + "0.2.0": "2011-07-20T23:53:50.073Z", + "0.2.1": "2011-07-21T01:34:08.297Z", + "0.2.2": "2011-07-21T20:16:56.686Z", + "0.2.3": "2011-08-01T16:51:52.531Z", + "0.2.4": "2011-09-17T00:58:51.899Z", + "0.2.5": "2011-10-06T17:13:49.723Z", + "0.3.0": "2011-10-17T15:02:08.184Z", + "0.3.1": "2011-10-21T00:04:36.763Z", + "0.3.2": "2011-10-21T22:15:00.311Z", + "0.3.3": "2011-11-11T16:44:00.293Z", + "0.3.4": "2011-12-05T05:15:41.943Z" + }, + "description": "An evented streaming XML parser in JavaScript", + "repository": { + "type": "git", + "url": "git://github.com/isaacs/sax-js.git" + }, + "users": { + "thejh": true + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/sax/0.1.0", + "0.1.1": "http://registry.npmjs.org/sax/0.1.1", + "0.1.2": "http://registry.npmjs.org/sax/0.1.2", + "0.1.3": "http://registry.npmjs.org/sax/0.1.3", + "0.1.4": "http://registry.npmjs.org/sax/0.1.4", + "0.1.5": "http://registry.npmjs.org/sax/0.1.5", + "0.2.0": "http://registry.npmjs.org/sax/0.2.0", + "0.2.1": "http://registry.npmjs.org/sax/0.2.1", + "0.2.2": "http://registry.npmjs.org/sax/0.2.2", + "0.2.3": "http://registry.npmjs.org/sax/0.2.3", + "0.2.4": "http://registry.npmjs.org/sax/0.2.4", + "0.2.5": "http://registry.npmjs.org/sax/0.2.5", + "0.3.0": "http://registry.npmjs.org/sax/0.3.0", + "0.3.1": "http://registry.npmjs.org/sax/0.3.1", + "0.3.2": "http://registry.npmjs.org/sax/0.3.2", + "0.3.3": "http://registry.npmjs.org/sax/0.3.3", + "0.3.4": "http://registry.npmjs.org/sax/0.3.4" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/sax/-/sax-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://registry.npmjs.org/sax/-/sax-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "781a6a19c3475563aa03da4ce37ccb8b3113d61a", + "tarball": "http://registry.npmjs.org/sax/-/sax-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "f06bbbfc11947497fd1e354e963eeb07ac52992c", + "tarball": "http://registry.npmjs.org/sax/-/sax-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "32bdddfe10ed1f1635f26306d7f304666a8841f7", + "tarball": "http://registry.npmjs.org/sax/-/sax-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "d1829a6120fa01665eb4dbff6c43f29fd6d61471", + "tarball": "http://registry.npmjs.org/sax/-/sax-0.1.5.tgz" + }, + "0.2.0": { + "shasum": "f3f0088400db13a618f81b5abc9a361b5355d60e", + "tarball": "http://registry.npmjs.org/sax/-/sax-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "817de986952fbc0213cf2602970919d3cb958f1f", + "tarball": "http://registry.npmjs.org/sax/-/sax-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "14b2ae3579988681809918a995a737bc2ca0a843", + "tarball": "http://registry.npmjs.org/sax/-/sax-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "bf474651670d0d0dcfcfc4b2a5f83d5e43dc8ea1", + "tarball": "http://registry.npmjs.org/sax/-/sax-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "f8ea0da594d1580e601b46c606981ffb0045da13", + "tarball": "http://registry.npmjs.org/sax/-/sax-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "52f0ec9d1ad844d71b0d8ada4ae73af4fe2ce34c", + "tarball": "http://registry.npmjs.org/sax/-/sax-0.2.5.tgz" + }, + "0.3.0": { + "shasum": "6ae2527801d4b1e9fc3ad4ea22419bf2ae4e73ab", + "tarball": "http://registry.npmjs.org/sax/-/sax-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "aa504752f25fb6bec4f6355647eb6dfd59c311d3", + "tarball": "http://registry.npmjs.org/sax/-/sax-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "111f2ea7d78fed4228c38b8f0a9b7d203a97f168", + "tarball": "http://registry.npmjs.org/sax/-/sax-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "e9228a36fee4819d0e57db18917c0eb7864db2aa", + "tarball": "http://registry.npmjs.org/sax/-/sax-0.3.3.tgz" + }, + "0.3.4": { + "shasum": "3689cd4862c6807d844e9bacacdf816cbde322fe", + "tarball": "http://registry.npmjs.org/sax/-/sax-0.3.4.tgz" + } + }, + "url": "http://registry.npmjs.org/sax/" + }, + "say": { + "name": "say", + "description": "TTS (text to speech) for node.js. send text from node.js to your speakers.", + "dist-tags": { + "latest": "0.5.0" + }, + "maintainers": [ + { + "name": "marak", + "email": "marak.squires@gmail.com" + } + ], + "author": { + "name": "Marak Squires" + }, + "repository": { + "type": "git", + "url": "git://github.com/Marak/say.js.git" + }, + "time": { + "modified": "2011-06-14T06:43:16.829Z", + "created": "2011-01-25T00:39:29.820Z", + "0.1.0": "2011-01-25T00:39:29.820Z", + "0.4.0": "2011-01-25T00:39:29.820Z", + "0.5.0": "2011-06-14T06:43:16.829Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/say/0.1.0", + "0.4.0": "http://registry.npmjs.org/say/0.4.0", + "0.5.0": "http://registry.npmjs.org/say/0.5.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/say/-/say-0.1.0.tgz" + }, + "0.4.0": { + "shasum": "60ee70b250340963c32e63ce441e05610e027f99", + "tarball": "http://registry.npmjs.org/say/-/say-0.4.0.tgz" + }, + "0.5.0": { + "shasum": "e63c0553580ea35be26b45251bf57c31d9059948", + "tarball": "http://registry.npmjs.org/say/-/say-0.5.0.tgz" + } + }, + "url": "http://registry.npmjs.org/say/" + }, + "sayndo": { + "name": "sayndo", + "description": "Fast and flexible web server with customized routing and authorization.", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "zyndiecate", + "email": "tim.schindler@adcloud.com" + } + ], + "time": { + "modified": "2011-10-30T14:34:44.930Z", + "created": "2011-07-24T21:54:07.438Z", + "0.0.0": "2011-07-24T21:54:08.091Z", + "0.0.1": "2011-08-28T00:26:34.006Z", + "0.0.2": "2011-09-03T11:46:48.190Z", + "0.0.3": "2011-10-30T14:34:44.930Z" + }, + "author": { + "name": "Tim Schindler", + "email": "tim.schindler@adcloud.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/zyndiecate/sayndo.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/sayndo/0.0.0", + "0.0.1": "http://registry.npmjs.org/sayndo/0.0.1", + "0.0.2": "http://registry.npmjs.org/sayndo/0.0.2", + "0.0.3": "http://registry.npmjs.org/sayndo/0.0.3" + }, + "dist": { + "0.0.0": { + "shasum": "dbd44b4739f1e9080f01c5ad1b242686c48244fb", + "tarball": "http://registry.npmjs.org/sayndo/-/sayndo-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "a32fe2c8c15bbbbcdefb367b8d450d3149bc167b", + "tarball": "http://registry.npmjs.org/sayndo/-/sayndo-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "6cef0d1cb61c23455ad010510c852cf09ec71c3e", + "tarball": "http://registry.npmjs.org/sayndo/-/sayndo-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "7dcb01b52ed6b052eebfec47a1f0839f608727d6", + "tarball": "http://registry.npmjs.org/sayndo/-/sayndo-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/sayndo/" + }, + "sc-handlebars": { + "name": "sc-handlebars", + "description": "Sproutcore Handlebars Utility", + "dist-tags": { + "latest": "1.0.2beta" + }, + "maintainers": [ + { + "name": "slexaxton", + "email": "alexsexton@gmail.com" + } + ], + "time": { + "modified": "2011-09-02T19:50:34.849Z", + "created": "2011-09-02T19:50:34.196Z", + "1.0.2beta": "2011-09-02T19:50:34.849Z" + }, + "author": { + "name": "Alex Sexton", + "email": "Alex.Sexton@bazaarvoice.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/SlexAxton/sc-handlebars.git" + }, + "versions": { + "1.0.2beta": "http://registry.npmjs.org/sc-handlebars/1.0.2beta" + }, + "dist": { + "1.0.2beta": { + "shasum": "a209201e661e296a86222283c84b33d8d3103e7f", + "tarball": "http://registry.npmjs.org/sc-handlebars/-/sc-handlebars-1.0.2beta.tgz" + } + }, + "keywords": [ + "sproutcore precompile handlebars mustache template html" + ], + "url": "http://registry.npmjs.org/sc-handlebars/" + }, + "scaffold": { + "name": "scaffold", + "description": "scaffolding library for node.js", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "### Example\n\n```javascript\n\nvar scaffolding = require('scaffolding');\n\n\nscaffolding({\n\tinput: {\n\t\tname: \"What is your name?\",\n\t\taddress: \"What is your address?\",\n\t\thasDog: \"(confirm) Do you have a dog?\"\n\t},\n\tbuild: function(ops)\n\t{\n\t\tconsole.log(ops.name);\n\t\tconsole.log(ops.address);\n\t\tconsole.log(ops.hasDog);//true\n\t}\n});\n\n````\n\n### Types of inputs\n\nYou can easily specify the type of input by adding `(type-of-input)` before the message. Like to:\n\n````javascript\n\nscaffolding({\n\tinput: {\n\t\tusername: \"(prompt) Username:\",\n\t\tpassword: \"(password) Password:\",\n\t\thasFriends: \"(confirm) Do you have any friends?\"\n\t}\n});\n\n````\n\n`(prompt)` is the default option if you omit the type of input.\n\n\n### Default Parameters\n\n````javascript\n\nscaffolding({\n\t\n\tinput: {\n\t\tprojectName: {\n\t\t\tmsg: \"What is your project name?\",\n\t\t\tdefault: function(params, callback)\n\t\t\t{\n\t\t\t\tcallback(50);\n\t\t\t}\n\t\t},\n\t\tprojectSrc: {\n\t\t\tmsg: \"What is your project located?\",\n\t\t\tdefault: '/usr/local/bin'\n\t\t}\n\t}\n});\n\n````\n\n### Helpers\n\n#### scaffolding.fromDir(params, src, dest)\n\nscans the target directory for files, and replaces any template variables with the parameters given. The destination is where the files are written to.\n\n````javascript\n\nscaffolding({\n\tparams: {\n\t\tprojectName: \"What is your project name?\"\n\t}\n})\n\n````\n\nOr if your lazy like me, you can do something like this:\n\n\nscaffolding({\n\tinput: {\n\t\tprojectName: \"What is your project name?\",\n\t\t_src: \"Where is your project located?\",\n\t\t_dest: \"Where do you want to write the project to?\",\n\t},\n\tbuild: scaffolding.fromDir\n})\n\n\n", + "maintainers": [ + { + "name": "architectd", + "email": "craig.j.condon@gmail.com" + } + ], + "time": { + "modified": "2011-11-30T18:54:48.861Z", + "created": "2011-11-30T18:54:48.124Z", + "0.0.1": "2011-11-30T18:54:48.861Z" + }, + "author": { + "name": "Craig Condon" + }, + "repository": { + "type": "git", + "url": "git://github.com/crcn/scaffold.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/scaffold/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "9caf7a1d45b13e57fde7fd16dc04f65f7cc2e54c", + "tarball": "http://registry.npmjs.org/scaffold/-/scaffold-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/scaffold/" + }, + "scaffolder": { + "name": "scaffolder", + "description": "Helpers for making apps that scaffold stuff", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "damonoehlman", + "email": "damon.oehlman@sidelab.com" + } + ], + "time": { + "modified": "2011-11-08T05:10:58.733Z", + "created": "2011-10-01T10:43:53.183Z", + "0.0.1": "2011-10-01T10:43:55.660Z", + "0.0.2": "2011-10-01T14:06:20.366Z", + "0.0.3": "2011-11-08T05:10:58.733Z" + }, + "author": { + "name": "Damon Oehlman", + "email": "damon.oehlman@sidelab.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/DamonOehlman/jandles.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/scaffolder/0.0.1", + "0.0.2": "http://registry.npmjs.org/scaffolder/0.0.2", + "0.0.3": "http://registry.npmjs.org/scaffolder/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "9b2ca980c7b3c8b5edde95dfb027602ca871fcf9", + "tarball": "http://registry.npmjs.org/scaffolder/-/scaffolder-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "4dbc0f427d5946989d4ae0fca342064c00695ab2", + "tarball": "http://registry.npmjs.org/scaffolder/-/scaffolder-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "43177bb376c0042cdbc9c99856996aa41f4d7cea", + "tarball": "http://registry.npmjs.org/scaffolder/-/scaffolder-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/scaffolder/" + }, + "scaffoldit": { + "name": "scaffoldit", + "description": "scaffolding library for node.js", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "\n### What's this?\n\nA library which allows to you very easily take input from a user, and use that data to build stuff. Like so: \n\n\n```javascript\n\nvar scaffoldit = require('../');\nrequire('colors');\n\nscaffoldit({\n\t\n\t/**\n\t * another place to put default values\n\t */\n\t\n\tparams: {\n\t\t'_src': __dirname + '/tpl/hello.mu.txt'\n\t},\n\t\n\t/**\n\t * input required by the user\n\t */\n\t\n\tinput: {\n\t\t'name': {\n\t\t\tmsg: 'What is your name?',\n\t\t\tvalue: 'Craig'\n\t\t},\n\t\t'hasDog': '(confirm) Do you have a dog?'\n\t},\n\t\n\t/**\n\t * called after gathering *all* input data - \n\t * builds the stuff\n\t */\n\t\n\tbuild: function(ops, next) {\n\t\t\n\t\tconsole.log('Building template...'.grey);\n\t\t\n\t\tscaffoldit.fromFile(ops, next);\n\t},\n\t\n\t/**\n\t * called after the entire build process is complete\n\t */\n\t\n\tcomplete: function(err, result) {\n\t\t\n\t\tconsole.log(result.green);\n\t}\n});\n\n````\n\nThe hello.mu.txt [mustache](https://github.com/janl/mustache.js) template looks like:\n\n\n````text\n\nhello {{name}}!\n\n{{#hasDog}}\nYou have a dog.\n{{/has}}\n\n{{^hasDog}}\nYou do NOT have a dog.\n{{/hasDog}}\n\n````\n\nAnd the result is: \n\n![Alt example](http://i.imgur.com/3Q9Fa.png)\n\n\n### scaffoldit(ops)\n\nOptions include:\n\n- `params` - Default parameter values to pass onto the build callback.\n- `input` - Inputs that require a value from the user.\n\t- `[param_name]` - The parameter name for the given input.\n\t\t- `msg` - The message to display to the user.\n\t\t- `default` - The optional default value to use for the param. Can be a value, or callback.\n\t\t- `type` - Optional param for the type of input.\n- `build` - The build function for the parameters given.\n- `complete` - Called once the build is complete.\n\n\n### Types of inputs\n\nYou can easily specify the type of input by adding `(type-of-input)` before the message. Like to:\n\n````javascript\n\nscaffoldit({\n\tinput: {\n\t\tusername: \"(prompt) Username:\",\n\t\tpassword: \"(password) Password:\",\n\t\thasFriends: \"(confirm) Do you have any friends?\"\n\t}\n});\n\n````\n\n`(prompt)` is the default option if you omit the type of input.\n\n\n### Default Parameters\n\n````javascript\n\nscaffoldit({\n\t\n\tinput: {\n\t\tprojectName: {\n\t\t\tmsg: \"What is your project name?\",\n\t\t\tdefault: function(params, callback)\t{ \n\t\t\t\t\n\t\t\t\tcallback(50);\n\t\t\t}\n\t\t},\n\t\tprojectSrc: {\n\t\t\tmsg: \"Where is your project located?\",\n\t\t\tdefault: '/usr/local/bin'\n\t\t}\n\t}\n});\n\n````\n\n\n### scaffoldit.fromDir(params, src, dest)\n\nScans the target directory for [mustache](https://github.com/janl/mustache.js) templates, and replaces any template variables with the parameters given. The destination is where the files are written to. Make sure to set the *name* of the template file to something like `my-file.tpl.html`, or `my-file.mu.html`.\n\nNote that `tpl`, and `mu` are removed in the destination file.\n\n````javascript\n\nscaffoldit({\n\tinput: {\n\t\tprojectName: \"What is your project name?\"\n\t},\n\tbuild: function(ops, next) {\n\t\t\n\t\tscaffoldit.fromDir(ops, '/path/to/input/dir','/path/to/output/dir');\n\t},\n\tcomplete: function() {\n\t\t//...\n\t}\n})\n\n````\n\nOr you can do something like this:\n\n````javascript\n\nscaffoldit({\n\tparams: {\n\t\t'_src': '/path/to/input/dir',\n\t\t'_dest': '/path/to/output/dir'\n\t},\n\tinput: {\n\t\tprojectName: \"What is your project name?\"\n\t},\n\tbuild: scaffoldit.fromDir,\n\tcomplete: function() {\n\t\t//...\n\t}\n});\n\n````\n\n\n### scaffoldit.fromFile(params, templateSrc, callback)\n\nloads the target [mustache](https://github.com/janl/mustache.js) template file and fills it with the parameters given. Again, make sure to use this format `my-file.mu.format`, or `my-file.tpl.format` for consistency.\n\n````javascript\n\nscaffoldit({\n\tinput: {\n\t\tname: {\n\t\t\tmsg: \"What's your name?\",\n\t\t\tdefault: \"Craig\"\n\t\t},\n\t\t_src: {\n\t\t\tmsg: \"Where is the template?\",\n\t\t\tdefault: \"/path/to/template.file\"\n\t\t},\n\t\tbuild: scaffoldit.fromFile,\n\t\tcomplete: function(err, content) {\n\t\t\t\n\t\t\tconsole.log(content);\n\t\t}\n\n\t}\n});\n\n````\n\n\n", + "maintainers": [ + { + "name": "architectd", + "email": "craig.j.condon@gmail.com" + } + ], + "time": { + "modified": "2011-11-30T18:55:26.838Z", + "created": "2011-11-30T18:55:26.122Z", + "0.0.1": "2011-11-30T18:55:26.838Z" + }, + "author": { + "name": "Craig Condon" + }, + "repository": { + "type": "git", + "url": "git://github.com/crcn/scaffold.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/scaffoldit/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "71c8435bc523cf791c4ee6a8a2411c76af986bde", + "tarball": "http://registry.npmjs.org/scaffoldit/-/scaffoldit-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/scaffoldit/" + }, + "scan.js": { + "name": "scan.js", + "description": "node.js module to scan and represent resources in data structures", + "dist-tags": { + "latest": "0.0.7" + }, + "maintainers": [ + { + "name": "functioncallback", + "email": "functioncallback@gmail.com" + } + ], + "time": { + "modified": "2011-10-15T23:09:35.114Z", + "created": "2011-10-15T23:09:32.849Z", + "0.0.7": "2011-10-15T23:09:35.114Z" + }, + "author": { + "name": "Wagner Montalvao Camarao", + "email": "functioncallback@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/functioncallback/scan.js.git" + }, + "versions": { + "0.0.7": "http://registry.npmjs.org/scan.js/0.0.7" + }, + "dist": { + "0.0.7": { + "shasum": "a5c3c13714a6ff2faeaefe738f5946500e857c5f", + "tarball": "http://registry.npmjs.org/scan.js/-/scan.js-0.0.7.tgz" + } + }, + "url": "http://registry.npmjs.org/scan.js/" + }, + "scgi-client": { + "name": "scgi-client", + "description": "SCGI (Simple Common Gateway Interface) Client", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "yorick", + "email": "yorickvanpelt@gmail.com" + } + ], + "time": { + "modified": "2011-12-08T17:35:35.686Z", + "created": "2011-12-07T20:43:55.020Z", + "0.0.1": "2011-12-07T20:44:36.943Z", + "0.0.2": "2011-12-08T14:57:54.819Z", + "0.0.3": "2011-12-08T17:35:35.686Z" + }, + "author": { + "name": "Yorick" + }, + "repository": { + "type": "git", + "url": "git://github.com/yorickvP/node-scgi-client.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/scgi-client/0.0.1", + "0.0.2": "http://registry.npmjs.org/scgi-client/0.0.2", + "0.0.3": "http://registry.npmjs.org/scgi-client/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "37e43bcde48eff79cbf3034eaf213ab2342836ce", + "tarball": "http://registry.npmjs.org/scgi-client/-/scgi-client-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "4584c820b93cf61ed5770db0b55ef1632126f15c", + "tarball": "http://registry.npmjs.org/scgi-client/-/scgi-client-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "03c04aca96e1efa73e45b19c22c95cfaf7a00ee1", + "tarball": "http://registry.npmjs.org/scgi-client/-/scgi-client-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/scgi-client/" + }, + "scgi-server": { + "name": "scgi-server", + "description": "SCGI (Simple Common Gateway Interface) server", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "yorick", + "email": "yorickvanpelt@gmail.com" + } + ], + "time": { + "modified": "2011-10-02T14:05:00.764Z", + "created": "2011-07-02T16:38:11.525Z", + "0.0.1": "2011-07-02T16:38:12.070Z", + "0.0.2": "2011-09-18T12:36:34.245Z", + "0.1.0": "2011-09-26T16:59:24.278Z", + "0.1.1": "2011-10-01T09:36:15.347Z", + "0.1.3": "2011-10-01T11:36:30.013Z", + "0.1.4": "2011-10-02T14:05:00.764Z" + }, + "author": { + "name": "Yorick" + }, + "repository": { + "type": "git", + "url": "git://github.com/yorickvP/node-scgi-server.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/scgi-server/0.0.1", + "0.0.2": "http://registry.npmjs.org/scgi-server/0.0.2", + "0.1.0": "http://registry.npmjs.org/scgi-server/0.1.0", + "0.1.1": "http://registry.npmjs.org/scgi-server/0.1.1", + "0.1.3": "http://registry.npmjs.org/scgi-server/0.1.3", + "0.1.4": "http://registry.npmjs.org/scgi-server/0.1.4" + }, + "dist": { + "0.0.1": { + "shasum": "92bde53ac8d0a96b16726f71e1e172244efceaaa", + "tarball": "http://registry.npmjs.org/scgi-server/-/scgi-server-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "99818ae246aa8d758a78674d2c3a76c4c4769708", + "tarball": "http://registry.npmjs.org/scgi-server/-/scgi-server-0.0.2.tgz" + }, + "0.1.0": { + "shasum": "36c1bffe1d56c80cadc5639f9ccbed765f60da72", + "tarball": "http://registry.npmjs.org/scgi-server/-/scgi-server-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "1bef38877744df6aadd1e944b1647abfcaba6590", + "tarball": "http://registry.npmjs.org/scgi-server/-/scgi-server-0.1.1.tgz" + }, + "0.1.3": { + "shasum": "7df2786e1ba63f4fa6b714adead7207a29150fff", + "tarball": "http://registry.npmjs.org/scgi-server/-/scgi-server-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "326a2de0a79deb0765ac4b0be97842057ac295ab", + "tarball": "http://registry.npmjs.org/scgi-server/-/scgi-server-0.1.4.tgz" + } + }, + "keywords": [ + "SCGI" + ], + "url": "http://registry.npmjs.org/scgi-server/" + }, + "scheduler": { + "name": "scheduler", + "description": "Cron scheduler for node.js", + "dist-tags": { + "latest": "0.8.1" + }, + "maintainers": [ + { + "name": "podviaznikov", + "email": "podviaznikov@gmail.com" + } + ], + "author": { + "name": "Anton Podviaznikov", + "email": "podviaznikov@gmail.com" + }, + "time": { + "modified": "2011-07-06T16:00:46.094Z", + "created": "2011-01-11T11:22:36.888Z", + "0.1.0": "2011-01-11T11:22:36.888Z", + "0.1.1": "2011-01-11T11:22:36.888Z", + "0.5.0": "2011-01-17T19:31:34.425Z", + "0.5.1": "2011-01-17T20:33:15.546Z", + "0.5.2": "2011-01-17T20:39:45.602Z", + "0.5.3": "2011-01-17T20:40:37.625Z", + "0.6.0": "2011-02-11T22:27:26.430Z", + "0.6.1": "2011-03-17T21:30:16.607Z", + "0.7.1": "2011-03-21T15:45:47.375Z", + "0.8.1": "2011-07-06T16:00:46.094Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/podviaznikov/node-scheduler.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/scheduler/0.1.0", + "0.1.1": "http://registry.npmjs.org/scheduler/0.1.1", + "0.5.0": "http://registry.npmjs.org/scheduler/0.5.0", + "0.5.1": "http://registry.npmjs.org/scheduler/0.5.1", + "0.5.2": "http://registry.npmjs.org/scheduler/0.5.2", + "0.5.3": "http://registry.npmjs.org/scheduler/0.5.3", + "0.6.0": "http://registry.npmjs.org/scheduler/0.6.0", + "0.6.1": "http://registry.npmjs.org/scheduler/0.6.1", + "0.7.1": "http://registry.npmjs.org/scheduler/0.7.1", + "0.8.1": "http://registry.npmjs.org/scheduler/0.8.1" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/scheduler/-/scheduler-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://registry.npmjs.org/scheduler/-/scheduler-0.1.1.tgz" + }, + "0.5.0": { + "shasum": "d42852b45f096de2beaeb30b52fea4fc962d51fe", + "tarball": "http://registry.npmjs.org/scheduler/-/scheduler-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "22b8734b982e51ba526a55472291d35d7b2c8693", + "tarball": "http://registry.npmjs.org/scheduler/-/scheduler-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "9a390475872898705d08893ecf21cec244620350", + "tarball": "http://registry.npmjs.org/scheduler/-/scheduler-0.5.2.tgz" + }, + "0.5.3": { + "shasum": "3996b962488e594e43ff9f4aae059dc5f6fada9c", + "tarball": "http://registry.npmjs.org/scheduler/-/scheduler-0.5.3.tgz" + }, + "0.6.0": { + "shasum": "f2a2673bd833fd443d2b61844b13b8b6f49318b2", + "tarball": "http://registry.npmjs.org/scheduler/-/scheduler-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "ab423239324c72135bf9b6b3ee4c3fb53d0b8c6b", + "tarball": "http://registry.npmjs.org/scheduler/-/scheduler-0.6.1.tgz" + }, + "0.7.1": { + "shasum": "b5e6e1289bdf51c9cb18088fb022b6103fe0c95e", + "tarball": "http://registry.npmjs.org/scheduler/-/scheduler-0.7.1.tgz" + }, + "0.8.1": { + "shasum": "6adf0bb00c9f5079fdde77cac49bed3183521a78", + "tarball": "http://registry.npmjs.org/scheduler/-/scheduler-0.8.1.tgz" + } + }, + "keywords": [ + "scheduler", + "cron" + ], + "url": "http://registry.npmjs.org/scheduler/" + }, + "schema": { + "name": "schema", + "description": "Sophisticated JSON schema data validation and adaptation", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "akidee", + "email": "mail@akidee.de" + } + ], + "author": { + "name": "Andreas Kalsch", + "url": "http://akidee.de/" + }, + "time": { + "modified": "2011-06-25T20:49:38.405Z", + "created": "2010-12-29T20:16:50.647Z", + "0.1.0a": "2010-12-29T20:16:50.647Z", + "0.1.0a-1": "2010-12-29T20:16:50.647Z", + "0.1.0a-2": "2011-01-25T18:53:21.316Z", + "0.2.0": "2011-05-16T16:48:00.606Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/akidee/schema.js.git" + }, + "versions": { + "0.1.0a": "http://registry.npmjs.org/schema/0.1.0a", + "0.1.0a-1": "http://registry.npmjs.org/schema/0.1.0a-1", + "0.1.0a-2": "http://registry.npmjs.org/schema/0.1.0a-2", + "0.2.0": "http://registry.npmjs.org/schema/0.2.0" + }, + "dist": { + "0.1.0a": { + "tarball": "http://registry.npmjs.org/schema/-/schema-0.1.0a.tgz" + }, + "0.1.0a-1": { + "shasum": "f9089ad92ec80482d71df676334c39a9dd806932", + "tarball": "http://registry.npmjs.org/schema/-/schema-0.1.0a-1.tgz" + }, + "0.1.0a-2": { + "shasum": "a22dd6827c92d7fb1689a8cf0068f584ed6b8463", + "tarball": "http://registry.npmjs.org/schema/-/schema-0.1.0a-2.tgz" + }, + "0.2.0": { + "shasum": "8502a629f77e839d454598c0ebd9097b3d5642d6", + "tarball": "http://registry.npmjs.org/schema/-/schema-0.2.0.tgz" + } + }, + "keywords": [ + "json schema", + "schema", + "data", + "validation", + "tolerant", + "adaptation", + "agile" + ], + "url": "http://registry.npmjs.org/schema/" + }, + "schema-builder": { + "name": "schema-builder", + "description": "A fluent api to create json schemas.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "eirikurn", + "email": "eirikur@nilsson.is" + } + ], + "time": { + "modified": "2011-05-20T22:51:31.659Z", + "created": "2011-05-20T22:51:30.852Z", + "0.0.1": "2011-05-20T22:51:31.659Z" + }, + "author": { + "name": "Eirikur Nilsson", + "email": "eirikur@nilsson.is" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/schema-builder/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "3f6f71a865d75e5df65fa830725d10d063b99e73", + "tarball": "http://registry.npmjs.org/schema-builder/-/schema-builder-0.0.1.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/schema-builder/" + }, + "schema-org": { + "name": "schema-org", + "description": "A node.js library that retrieves, parses and provides all schemas from schema.org", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + } + ], + "time": { + "modified": "2011-09-12T17:52:48.839Z", + "created": "2011-06-08T11:54:40.969Z", + "0.0.1": "2011-06-08T11:54:41.249Z", + "0.1.0": "2011-06-13T06:42:31.144Z", + "0.1.1": "2011-06-22T04:20:26.263Z", + "0.1.2": "2011-08-23T03:18:29.636Z", + "0.1.3": "2011-09-12T17:52:48.839Z" + }, + "author": { + "name": "Charlie Robbins", + "email": "charlie.robbins@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/indexzero/node-schema-org.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/schema-org/0.0.1", + "0.1.0": "http://registry.npmjs.org/schema-org/0.1.0", + "0.1.1": "http://registry.npmjs.org/schema-org/0.1.1", + "0.1.2": "http://registry.npmjs.org/schema-org/0.1.2", + "0.1.3": "http://registry.npmjs.org/schema-org/0.1.3" + }, + "dist": { + "0.0.1": { + "shasum": "56339232d7fb1a22a4aee2c708a18c86f516a2e9", + "tarball": "http://registry.npmjs.org/schema-org/-/schema-org-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "9e69670d28426facb627269ee2d4d55e3e62e083", + "tarball": "http://registry.npmjs.org/schema-org/-/schema-org-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "99bee2516e936e3a8a53924691ee54ab3f05aa61", + "tarball": "http://registry.npmjs.org/schema-org/-/schema-org-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "16a79d8725dbf0f80b41608372b9c8f773f2b44a", + "tarball": "http://registry.npmjs.org/schema-org/-/schema-org-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "a912936901a8f0f07d884c48958445cf19902d0b", + "tarball": "http://registry.npmjs.org/schema-org/-/schema-org-0.1.3.tgz" + } + }, + "keywords": [ + "schemas", + "jsdom", + "parsers" + ], + "url": "http://registry.npmjs.org/schema-org/" + }, + "schemajs": { + "name": "schemajs", + "description": "validate objects (including http request params) agains a schema. includes express middleware", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "eleith", + "email": "work@eleith.com" + } + ], + "time": { + "modified": "2011-11-15T06:50:37.471Z", + "created": "2011-09-23T22:11:14.840Z", + "0.1.0": "2011-09-23T22:11:16.136Z", + "0.1.1": "2011-09-23T22:15:01.023Z", + "0.1.2": "2011-09-24T19:08:00.512Z", + "0.1.3": "2011-09-25T05:17:35.415Z", + "0.1.4": "2011-11-15T06:50:37.471Z" + }, + "author": { + "name": "eleith" + }, + "repository": { + "type": "git", + "url": "git://github.com/eleith/schemajs.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/schemajs/0.1.0", + "0.1.1": "http://registry.npmjs.org/schemajs/0.1.1", + "0.1.2": "http://registry.npmjs.org/schemajs/0.1.2", + "0.1.3": "http://registry.npmjs.org/schemajs/0.1.3", + "0.1.4": "http://registry.npmjs.org/schemajs/0.1.4" + }, + "dist": { + "0.1.0": { + "shasum": "184315f56ca3bf3429d41b538197bd1074a96762", + "tarball": "http://registry.npmjs.org/schemajs/-/schemajs-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "23b8a5f58d04b90b7650ca992680b1e004b4de8a", + "tarball": "http://registry.npmjs.org/schemajs/-/schemajs-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "897c4cfb7a79dd9d1f204769880cddd064640b78", + "tarball": "http://registry.npmjs.org/schemajs/-/schemajs-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "e1b63f570092605998c0f00fa55741452eeb0e03", + "tarball": "http://registry.npmjs.org/schemajs/-/schemajs-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "e49f77a2ec3ad7e1184450f8e277825defa8ffec", + "tarball": "http://registry.npmjs.org/schemajs/-/schemajs-0.1.4.tgz" + } + }, + "url": "http://registry.npmjs.org/schemajs/" + }, + "scone": { + "name": "scone", + "description": "'Scone.js' makes developing node.js apps that use coffeescript and stylus easier by merging the coffee -w and stylus -w commands along side the server console. One terminal to rule them all.", + "dist-tags": { + "latest": "0.1.7" + }, + "maintainers": [ + { + "name": "inkspeck", + "email": "krishedges@gmail.com" + } + ], + "time": { + "modified": "2011-05-04T22:59:03.057Z", + "created": "2011-04-27T11:59:48.802Z", + "0.1.1": "2011-04-27T11:59:49.023Z", + "0.1.2": "2011-04-27T22:10:15.723Z", + "0.1.3": "2011-04-28T05:16:23.186Z", + "0.1.4": "2011-04-28T05:21:35.653Z", + "0.1.5": "2011-04-30T20:49:38.550Z", + "0.1.6": "2011-04-30T22:23:20.611Z", + "0.1.7": "2011-05-04T22:59:03.057Z" + }, + "author": { + "name": "Kris Hedges - Inkspeck Design", + "email": "kris@inkspeck.com", + "url": "http://inkspeck.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/InkSpeck/scone.git", + "web": "http://github.com/InkSpeck/scone" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/scone/0.1.1", + "0.1.2": "http://registry.npmjs.org/scone/0.1.2", + "0.1.3": "http://registry.npmjs.org/scone/0.1.3", + "0.1.4": "http://registry.npmjs.org/scone/0.1.4", + "0.1.5": "http://registry.npmjs.org/scone/0.1.5", + "0.1.6": "http://registry.npmjs.org/scone/0.1.6", + "0.1.7": "http://registry.npmjs.org/scone/0.1.7" + }, + "dist": { + "0.1.1": { + "shasum": "e4d6b71def3db7bd5904f7d9326ce42aa9524e92", + "tarball": "http://registry.npmjs.org/scone/-/scone-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "5ca38e3d5e92c8f219da67e1d002368cea19698d", + "tarball": "http://registry.npmjs.org/scone/-/scone-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "8775f364569f21579b025b20f2882ce049e34cb0", + "tarball": "http://registry.npmjs.org/scone/-/scone-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "d6da871e5f0ab1cd7999cf539c246bc86ee951b8", + "tarball": "http://registry.npmjs.org/scone/-/scone-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "c5b22aa1480603df55b875246c40447b2ad71f6c", + "tarball": "http://registry.npmjs.org/scone/-/scone-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "48106eb9d8031fa1a9a63d2753fa8b2acc7c4e57", + "tarball": "http://registry.npmjs.org/scone/-/scone-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "70a8d8d876d55ccab4167a04f5f66564ef83c2f8", + "tarball": "http://registry.npmjs.org/scone/-/scone-0.1.7.tgz" + } + }, + "keywords": [ + "scone", + "scone.js" + ], + "url": "http://registry.npmjs.org/scone/" + }, + "scooj": { + "name": "scooj", + "description": "Simple Classical OO for JavaScript", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "pmuellr", + "email": "pmuellr@gmail.com" + } + ], + "author": { + "name": "Patrick Mueller" + }, + "repository": { + "type": "git", + "url": "git://github.com/pmuellr/sscooj.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/scooj/0.2.0" + }, + "dist": { + "0.2.0": { + "tarball": "http://registry.npmjs.org/scooj/-/scooj-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/scooj/" + }, + "scope": { + "name": "scope", + "description": "Define and work with lexical scopes.", + "dist-tags": { + "latest": "0.10.1" + }, + "maintainers": [ + { + "name": "dbrans", + "email": "dbrans@gmail.com" + } + ], + "time": { + "modified": "2011-07-07T04:36:17.818Z", + "created": "2011-06-22T22:52:45.525Z", + "0.8.0": "2011-06-22T22:52:45.809Z", + "0.8.1": "2011-06-22T22:54:03.709Z", + "0.8.2": "2011-06-27T21:05:07.690Z", + "0.9.0": "2011-06-29T15:26:03.431Z", + "0.10.0": "2011-06-30T16:36:52.605Z", + "0.10.1": "2011-07-07T04:36:17.818Z" + }, + "author": { + "name": "Derek Brans", + "email": "dbrans@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dbrans/scope.git" + }, + "versions": { + "0.8.0": "http://registry.npmjs.org/scope/0.8.0", + "0.8.1": "http://registry.npmjs.org/scope/0.8.1", + "0.8.2": "http://registry.npmjs.org/scope/0.8.2", + "0.9.0": "http://registry.npmjs.org/scope/0.9.0", + "0.10.0": "http://registry.npmjs.org/scope/0.10.0", + "0.10.1": "http://registry.npmjs.org/scope/0.10.1" + }, + "dist": { + "0.8.0": { + "shasum": "b67bea7ff2138dcfb74e9fb5fb62d051e49bf805", + "tarball": "http://registry.npmjs.org/scope/-/scope-0.8.0.tgz" + }, + "0.8.1": { + "shasum": "53bf20a5b09c7b48d4020b4ded1f6851d7f19b32", + "tarball": "http://registry.npmjs.org/scope/-/scope-0.8.1.tgz" + }, + "0.8.2": { + "shasum": "a7f42762d1c70bf52818b52dd79d35a5697740e6", + "tarball": "http://registry.npmjs.org/scope/-/scope-0.8.2.tgz" + }, + "0.9.0": { + "shasum": "64f868d269aaaa20422e3f596a0d399590f3ecef", + "tarball": "http://registry.npmjs.org/scope/-/scope-0.9.0.tgz" + }, + "0.10.0": { + "shasum": "0f33a0c5e2e2c66c90368b70b78444c4fd55bae2", + "tarball": "http://registry.npmjs.org/scope/-/scope-0.10.0.tgz" + }, + "0.10.1": { + "shasum": "0840e81cbaa429a3da0b055ef9a6586e552e0e1d", + "tarball": "http://registry.npmjs.org/scope/-/scope-0.10.1.tgz" + } + }, + "keywords": [ + "scope", + "lexical", + "DSL", + "coffeescript" + ], + "url": "http://registry.npmjs.org/scope/" + }, + "scope-provider": { + "name": "scope-provider", + "description": "Cross-platform (browser/NodeJS) JavaScript scope provider", + "dist-tags": { + "latest": "0.11.0" + }, + "maintainers": [ + { + "name": "samuraijack", + "email": "nickolay8@gmail.com" + } + ], + "author": { + "name": "Nickolay Platonov", + "email": "nplatonov@cpan.org" + }, + "repository": { + "web": "http://github.com/SamuraiJack/Scope-Provider/tree", + "url": "git://github.com/SamuraiJack/Scope-Provider.git", + "type": "git" + }, + "time": { + "modified": "2011-07-16T08:40:41.784Z", + "created": "2011-01-12T15:39:16.653Z", + "0.3.0": "2011-01-12T15:39:16.653Z", + "0.4.0": "2011-01-12T15:39:16.653Z", + "0.5.0": "2011-01-12T15:39:16.653Z", + "0.6.0": "2011-01-12T15:39:16.653Z", + "0.7.0": "2011-01-12T15:39:16.653Z", + "0.8.0": "2011-01-12T18:30:55.199Z", + "0.9.0": "2011-07-15T15:25:56.048Z", + "0.10.0": "2011-07-15T16:05:34.030Z", + "0.11.0": "2011-07-16T08:40:41.784Z" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/scope-provider/0.3.0", + "0.4.0": "http://registry.npmjs.org/scope-provider/0.4.0", + "0.5.0": "http://registry.npmjs.org/scope-provider/0.5.0", + "0.6.0": "http://registry.npmjs.org/scope-provider/0.6.0", + "0.7.0": "http://registry.npmjs.org/scope-provider/0.7.0", + "0.8.0": "http://registry.npmjs.org/scope-provider/0.8.0", + "0.9.0": "http://registry.npmjs.org/scope-provider/0.9.0", + "0.10.0": "http://registry.npmjs.org/scope-provider/0.10.0", + "0.11.0": "http://registry.npmjs.org/scope-provider/0.11.0" + }, + "dist": { + "0.3.0": { + "tarball": "http://packages:5984/scope-provider/-/scope-provider-0.3.0.tgz" + }, + "0.4.0": { + "tarball": "http://packages:5984/scope-provider/-/scope-provider-0.4.0.tgz" + }, + "0.5.0": { + "tarball": "http://registry.npmjs.org/scope-provider/-/scope-provider-0.5.0.tgz" + }, + "0.6.0": { + "shasum": "5afb2ec4866dcdda455a0b4af6b47b2f220b96aa", + "tarball": "http://registry.npmjs.org/scope-provider/-/scope-provider-0.6.0.tgz" + }, + "0.7.0": { + "shasum": "27dbed647aa2b6d915c8ffec3daee4b6907e2992", + "tarball": "http://registry.npmjs.org/scope-provider/-/scope-provider-0.7.0.tgz" + }, + "0.8.0": { + "shasum": "f78671639be05fc8c61ae13eef3056aafedd8c9b", + "tarball": "http://registry.npmjs.org/scope-provider/-/scope-provider-0.8.0.tgz" + }, + "0.9.0": { + "shasum": "45684ae6f9b4ec7112585a13c7f6b1977ec664ee", + "tarball": "http://registry.npmjs.org/scope-provider/-/scope-provider-0.9.0.tgz" + }, + "0.10.0": { + "shasum": "34dedf4d181720de8d111d220360609188bea288", + "tarball": "http://registry.npmjs.org/scope-provider/-/scope-provider-0.10.0.tgz" + }, + "0.11.0": { + "shasum": "257441df2be98318ed68b6cd93259a620a3713d3", + "tarball": "http://registry.npmjs.org/scope-provider/-/scope-provider-0.11.0.tgz" + } + }, + "url": "http://registry.npmjs.org/scope-provider/" + }, + "scoped-http-client": { + "name": "scoped-http-client", + "description": "http client request wrapper", + "dist-tags": { + "latest": "0.9.6" + }, + "maintainers": [ + { + "name": "technoweenie", + "email": "technoweenie@gmail.com" + } + ], + "time": { + "modified": "2011-11-09T16:38:11.001Z", + "created": "2011-08-01T17:44:47.173Z", + "0.9.0": "2011-08-01T17:44:49.281Z", + "0.9.1": "2011-10-18T19:59:57.910Z", + "0.9.2": "2011-10-25T00:40:22.711Z", + "0.9.3": "2011-10-25T04:09:18.259Z", + "0.9.4": "2011-10-25T04:21:07.507Z", + "0.9.6": "2011-11-09T16:38:11.001Z" + }, + "author": { + "name": "technoweenie" + }, + "repository": { + "type": "git", + "url": "git://github.com/technoweenie/node-scoped-http-client.git" + }, + "versions": { + "0.9.0": "http://registry.npmjs.org/scoped-http-client/0.9.0", + "0.9.1": "http://registry.npmjs.org/scoped-http-client/0.9.1", + "0.9.2": "http://registry.npmjs.org/scoped-http-client/0.9.2", + "0.9.3": "http://registry.npmjs.org/scoped-http-client/0.9.3", + "0.9.4": "http://registry.npmjs.org/scoped-http-client/0.9.4", + "0.9.6": "http://registry.npmjs.org/scoped-http-client/0.9.6" + }, + "dist": { + "0.9.0": { + "shasum": "d966e3c5b7a9a4c776fbe0d8ccab3e76cc67bad1", + "tarball": "http://registry.npmjs.org/scoped-http-client/-/scoped-http-client-0.9.0.tgz" + }, + "0.9.1": { + "shasum": "5435e6e4dd2e67db9bd34d485cfb4e97b80b1938", + "tarball": "http://registry.npmjs.org/scoped-http-client/-/scoped-http-client-0.9.1.tgz" + }, + "0.9.2": { + "shasum": "152ac5090751e8e785befb3120bfd9473ef3fb85", + "tarball": "http://registry.npmjs.org/scoped-http-client/-/scoped-http-client-0.9.2.tgz" + }, + "0.9.3": { + "shasum": "16dc4db5a393beaa09f9fce8f8b05bd90cccac38", + "tarball": "http://registry.npmjs.org/scoped-http-client/-/scoped-http-client-0.9.3.tgz" + }, + "0.9.4": { + "shasum": "e1bfcdb66e11a4b2a9dffb8a34c0270b4601a3ad", + "tarball": "http://registry.npmjs.org/scoped-http-client/-/scoped-http-client-0.9.4.tgz" + }, + "0.9.6": { + "shasum": "58a2e16ef33a1ae7526af9d37316fa372cf5aec7", + "tarball": "http://registry.npmjs.org/scoped-http-client/-/scoped-http-client-0.9.6.tgz" + } + }, + "url": "http://registry.npmjs.org/scoped-http-client/" + }, + "scopify": { + "name": "scopify", + "description": "scope browserify's require away", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "dodo", + "email": "dodo@blacksec.org" + } + ], + "time": { + "modified": "2011-11-29T14:19:05.624Z", + "created": "2011-10-22T03:43:04.861Z", + "0.1.0": "2011-10-22T03:43:06.438Z", + "0.1.1": "2011-11-29T14:19:05.624Z" + }, + "author": { + "name": "dodo", + "url": "https://github.com/dodo" + }, + "repository": { + "type": "git", + "url": "git://github.com/dodo/node-scopify.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/scopify/0.1.0", + "0.1.1": "http://registry.npmjs.org/scopify/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "1a834d7b4a6470a45f3c4777ba543a19ba9d060a", + "tarball": "http://registry.npmjs.org/scopify/-/scopify-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "2f5eca0741e4c45831be7a28ca07c34b7b6aacc1", + "tarball": "http://registry.npmjs.org/scopify/-/scopify-0.1.1.tgz" + } + }, + "keywords": [ + "browserify", + "plugin", + "browser", + "scope", + "bundle" + ], + "url": "http://registry.npmjs.org/scopify/" + }, + "scottbot": { + "name": "scottbot", + "description": "Michael Scott in IRC bot form", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "jsocol", + "email": "james.socol@gmail.com" + } + ], + "time": { + "modified": "2011-05-13T15:11:23.325Z", + "created": "2011-05-13T15:11:23.043Z", + "0.1.0": "2011-05-13T15:11:23.325Z" + }, + "author": { + "name": "James Socol", + "email": "james.socol@gmail.com", + "url": "http://coffeeonthekeyboard.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/jsocol/scottbot.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/scottbot/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "edb7bd384b43d057eee5c9a602c68cd97a611a2d", + "tarball": "http://registry.npmjs.org/scottbot/-/scottbot-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/scottbot/" + }, + "scottyapp-api-client": { + "name": "scottyapp-api-client", + "description": "Official node.js API client for scottyapp.com. Documentation is available at http://scottyapp.com/developers", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "mwawrusch", + "email": "martin@wawrusch.com" + } + ], + "time": { + "modified": "2011-11-01T07:36:24.588Z", + "created": "2011-10-27T09:47:08.586Z", + "0.0.1": "2011-10-27T09:47:10.443Z", + "0.0.2": "2011-10-28T13:05:39.771Z", + "0.0.3": "2011-10-28T13:59:26.330Z", + "0.0.4": "2011-11-01T07:36:24.588Z" + }, + "author": { + "name": "Martin Wawrusch", + "email": "martin@wawrusch.com", + "url": "http://martinatsunset.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/scottyapp/node-scottyapp-api-client.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/scottyapp-api-client/0.0.1", + "0.0.2": "http://registry.npmjs.org/scottyapp-api-client/0.0.2", + "0.0.3": "http://registry.npmjs.org/scottyapp-api-client/0.0.3", + "0.0.4": "http://registry.npmjs.org/scottyapp-api-client/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "6adb6261806d5e3b6ccc8247eea62a3d43093fb6", + "tarball": "http://registry.npmjs.org/scottyapp-api-client/-/scottyapp-api-client-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "d5e6ab56a93f52cbaeea6b8919e43b16bec03957", + "tarball": "http://registry.npmjs.org/scottyapp-api-client/-/scottyapp-api-client-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "6664da92d8a237c701c1bcfaaff32e1335512ff5", + "tarball": "http://registry.npmjs.org/scottyapp-api-client/-/scottyapp-api-client-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "4493f1ee9cef010a34f6455b3a4a56384aab97a2", + "tarball": "http://registry.npmjs.org/scottyapp-api-client/-/scottyapp-api-client-0.0.4.tgz" + } + }, + "keywords": [ + "scottyapp", + "api", + "rest", + "restful", + "client" + ], + "url": "http://registry.npmjs.org/scottyapp-api-client/" + }, + "scout": { + "name": "scout", + "description": "a nodejs counterpart of guard in Ruby", + "dist-tags": { + "latest": "0.0.0" + }, + "readme": null, + "maintainers": [ + { + "name": "marty_wang", + "email": "mo.hy.wang@gmail.com" + } + ], + "time": { + "modified": "2011-12-05T07:18:27.447Z", + "created": "2011-12-05T07:18:25.504Z", + "0.0.0": "2011-12-05T07:18:27.447Z" + }, + "author": { + "name": "Mo Wang", + "email": "mo.oss.wang@gmail.com" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/scout/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "5bfdfd3938a3ee35aa6628229d917d5c038510d3", + "tarball": "http://registry.npmjs.org/scout/-/scout-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/scout/" + }, + "scraper": { + "name": "scraper", + "description": "Easier web scraping using jQuery.", + "dist-tags": { + "latest": "0.0.9" + }, + "maintainers": [ + { + "name": "mape", + "email": "mape@mape.me" + } + ], + "author": { + "name": "Mathias Pettersson", + "email": "mape@mape.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/mape/node-scraper.git" + }, + "time": { + "modified": "2011-05-30T20:46:33.952Z", + "created": "2010-12-26T17:42:20.648Z", + "0.0.1": "2010-12-26T17:42:20.648Z", + "0.0.2": "2010-12-26T17:42:20.648Z", + "0.0.3": "2010-12-26T17:42:20.648Z", + "0.0.4": "2010-12-26T17:42:20.648Z", + "0.0.5": "2011-01-01T14:53:10.820Z", + "0.0.6": "2011-01-02T11:55:54.140Z", + "0.0.7": "2011-02-05T13:24:14.311Z", + "0.0.8": "2011-02-26T18:41:13.944Z", + "0.0.9": "2011-05-30T20:46:33.952Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/scraper/0.0.1", + "0.0.2": "http://registry.npmjs.org/scraper/0.0.2", + "0.0.3": "http://registry.npmjs.org/scraper/0.0.3", + "0.0.4": "http://registry.npmjs.org/scraper/0.0.4", + "0.0.5": "http://registry.npmjs.org/scraper/0.0.5", + "0.0.6": "http://registry.npmjs.org/scraper/0.0.6", + "0.0.7": "http://registry.npmjs.org/scraper/0.0.7", + "0.0.8": "http://registry.npmjs.org/scraper/0.0.8", + "0.0.9": "http://registry.npmjs.org/scraper/0.0.9" + }, + "dist": { + "0.0.1": { + "shasum": "524db69f03b37f65c16c939d64649bc5c0180274", + "tarball": "http://registry.npmjs.org/scraper/-/scraper-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "e581bbe631914ba41294d6f51b8842c09b3cca4a", + "tarball": "http://registry.npmjs.org/scraper/-/scraper-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "50cd1b194acda07b602b4d40aaa935b3df7f8882", + "tarball": "http://registry.npmjs.org/scraper/-/scraper-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "bef780d694eefbe842d74ca367ecbb7a32db86c5", + "tarball": "http://registry.npmjs.org/scraper/-/scraper-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "01ae5e44a42bbeea473234060ac65218c7d05a68", + "tarball": "http://registry.npmjs.org/scraper/-/scraper-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "c3724d36452a59fb748f1c8fdad9bde9dd566913", + "tarball": "http://registry.npmjs.org/scraper/-/scraper-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "476d79648190ec38e69062392ec8571c8198600c", + "tarball": "http://registry.npmjs.org/scraper/-/scraper-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "78fdaa4a684926c6516aa682e692bf4449b4399a", + "tarball": "http://registry.npmjs.org/scraper/-/scraper-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "508acf02220e6b4b276501962911f6f1d73abfec", + "tarball": "http://registry.npmjs.org/scraper/-/scraper-0.0.9.tgz" + } + }, + "url": "http://registry.npmjs.org/scraper/" + }, + "scrapinode": { + "name": "scrapinode", + "description": "Modular Scraper using Jquery and a plugin that allow you to use regex as selector.", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "lbdremy", + "email": "remyloubradou@gmail.com" + } + ], + "time": { + "modified": "2011-11-29T17:33:24.507Z", + "created": "2011-08-16T09:19:49.862Z", + "0.0.1": "2011-08-16T09:19:50.661Z", + "0.0.2": "2011-08-16T13:27:28.908Z", + "0.0.21": "2011-09-21T16:14:01.367Z", + "0.0.22": "2011-09-23T15:47:45.352Z", + "0.0.23": "2011-11-13T23:47:54.274Z", + "0.0.3": "2011-11-29T14:35:01.819Z", + "0.0.4": "2011-11-29T17:33:24.507Z" + }, + "author": { + "name": "Remy Loubradou", + "email": "remy.loubradou@gmail.com", + "url": "https://twitter.com/#!/lbdremy" + }, + "repository": { + "type": "git", + "url": "git://github.com/lbdremy/scrapinode.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/scrapinode/0.0.1", + "0.0.2": "http://registry.npmjs.org/scrapinode/0.0.2", + "0.0.21": "http://registry.npmjs.org/scrapinode/0.0.21", + "0.0.22": "http://registry.npmjs.org/scrapinode/0.0.22", + "0.0.23": "http://registry.npmjs.org/scrapinode/0.0.23", + "0.0.3": "http://registry.npmjs.org/scrapinode/0.0.3", + "0.0.4": "http://registry.npmjs.org/scrapinode/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "170870cad19a67d7d5f48d7b0e92ceec8cc00a9b", + "tarball": "http://registry.npmjs.org/scrapinode/-/scrapinode-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "b91d43031ddaa64e96386fada664d6ec485b3141", + "tarball": "http://registry.npmjs.org/scrapinode/-/scrapinode-0.0.2.tgz" + }, + "0.0.21": { + "shasum": "051b9813a46332b8c65ee62692b643e41f7e31e8", + "tarball": "http://registry.npmjs.org/scrapinode/-/scrapinode-0.0.21.tgz" + }, + "0.0.22": { + "shasum": "51edc6248f35d7b2528f2b925f6643fea31d691c", + "tarball": "http://registry.npmjs.org/scrapinode/-/scrapinode-0.0.22.tgz" + }, + "0.0.23": { + "shasum": "ce877c2ef942dd53778ace9c81417583e57ec456", + "tarball": "http://registry.npmjs.org/scrapinode/-/scrapinode-0.0.23.tgz" + }, + "0.0.3": { + "shasum": "74abf696c0df9fd42255b2048a304f6799fba7c5", + "tarball": "http://registry.npmjs.org/scrapinode/-/scrapinode-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "b2887c9cb161f22ec3ea97df41b198e0fca1fea7", + "tarball": "http://registry.npmjs.org/scrapinode/-/scrapinode-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/scrapinode/" + }, + "scrappy-do": { + "name": "scrappy-do", + "description": "Dead-simple scrapper wrapper for node", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "killfill", + "email": "pneumann@gmail.com" + } + ], + "time": { + "modified": "2011-06-19T00:51:57.755Z", + "created": "2011-06-19T00:51:56.996Z", + "0.0.1": "2011-06-19T00:51:57.755Z" + }, + "author": { + "name": "Phillip Neumann", + "email": "pneumann@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/scrappy-do/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "f0b5d951e85bcce2afc8c44d1a26dd8d4030c557", + "tarball": "http://registry.npmjs.org/scrappy-do/-/scrappy-do-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/scrappy-do/" + }, + "scrapr": { + "name": "scrapr", + "description": "Simple, light, asynchronous website scraper, perfect for scraping password protected sites.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "saebekassebil", + "email": "saebekassebil@gmail.com" + } + ], + "time": { + "modified": "2011-06-02T18:30:16.573Z", + "created": "2011-06-02T18:30:14.820Z", + "0.1.0": "2011-06-02T18:30:16.573Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/scrapr/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "8c528df80d052bfa01bfb4246943417652098dc0", + "tarball": "http://registry.npmjs.org/scrapr/-/scrapr-0.1.0.tgz" + } + }, + "keywords": [ + "scraper", + "javascript", + "node", + "protected" + ], + "url": "http://registry.npmjs.org/scrapr/" + }, + "scrawl": { + "name": "scrawl", + "description": "Dumb comment parsing for node", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "caolan", + "email": "caolan@caolanmcmahon.com" + } + ], + "time": { + "modified": "2011-06-21T17:15:03.243Z", + "created": "2011-06-21T17:15:02.674Z", + "0.0.1": "2011-06-21T17:15:03.243Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/scrawl/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "930a84ebb485daf06057312878671d0c0074eea4", + "tarball": "http://registry.npmjs.org/scrawl/-/scrawl-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/scrawl/" + }, + "screw-node-static": { + "name": "screw-node-static", + "description": "node-static for arcabouco-js", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "patricknegri", + "email": "patrick@iugu.com.br" + } + ], + "time": { + "modified": "2011-11-09T13:28:33.380Z", + "created": "2011-11-09T13:28:31.305Z", + "1.0.0": "2011-11-09T13:28:33.380Z" + }, + "author": { + "name": "Patrick Negri", + "email": "patrick@iugu.com.br" + }, + "repository": { + "type": "git", + "url": "git://github.com/pnegri/screws-node-static.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/screw-node-static/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "aa2c148ee321e8d78c16bef5d005942578d306d0", + "tarball": "http://registry.npmjs.org/screw-node-static/-/screw-node-static-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/screw-node-static/" + }, + "scribe": { + "name": "scribe", + "description": "Scribe client", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "orktes", + "email": "jaakko@applifier.com" + } + ], + "time": { + "modified": "2011-12-07T10:25:37.863Z", + "created": "2011-07-13T10:23:11.105Z", + "0.0.1": "2011-12-07T09:08:44.792Z", + "0.0.2": "2011-12-07T09:08:44.792Z", + "0.0.4": "2011-12-07T10:25:37.863Z" + }, + "author": { + "name": "Applifier", + "email": "opensource@applifier.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Applifier/node-scribe.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/scribe/0.0.1", + "0.0.2": "http://registry.npmjs.org/scribe/0.0.2", + "0.0.4": "http://registry.npmjs.org/scribe/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "a346d59b89dfdd830a6bd31d01509c83a3298ae9", + "tarball": "http://registry.npmjs.org/scribe/-/scribe-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "865a955cf1f10591e61cddb094bf9093ef718ff6", + "tarball": "http://registry.npmjs.org/scribe/-/scribe-0.0.2.tgz" + }, + "0.0.4": { + "shasum": "45bd441bb3783457cbf89b73565afb414dc20c04", + "tarball": "http://registry.npmjs.org/scribe/-/scribe-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/scribe/" + }, + "scribe-node": { + "name": "scribe-node", + "description": "Scribe java OAuth library port to node.js", + "dist-tags": { + "latest": "0.0.24" + }, + "maintainers": [ + { + "name": "mmstud", + "email": "mmstud@gmail.com" + } + ], + "time": { + "modified": "2011-12-13T16:55:38.751Z", + "created": "2011-11-16T12:15:52.400Z", + "0.0.6": "2011-11-16T12:15:53.953Z", + "0.0.7": "2011-11-17T20:03:10.992Z", + "0.0.8": "2011-11-18T08:14:11.466Z", + "0.0.9": "2011-11-18T23:11:12.953Z", + "0.0.10": "2011-11-18T23:41:51.862Z", + "0.0.11": "2011-11-19T00:07:52.072Z", + "0.0.12": "2011-11-19T00:17:50.560Z", + "0.0.13": "2011-11-19T10:33:22.876Z", + "0.0.14": "2011-11-19T10:39:05.354Z", + "0.0.15": "2011-11-19T10:49:35.137Z", + "0.0.16": "2011-11-19T10:58:48.935Z", + "0.0.17": "2011-11-20T19:34:05.590Z", + "0.0.18": "2011-11-20T21:15:01.778Z", + "0.0.19": "2011-11-20T21:48:47.582Z", + "0.0.20": "2011-11-22T22:42:42.429Z", + "0.0.21": "2011-11-26T08:49:50.547Z", + "0.0.22": "2011-12-13T07:02:12.499Z", + "0.0.23": "2011-12-13T07:33:49.437Z", + "0.0.24": "2011-12-13T16:55:38.751Z" + }, + "author": { + "name": "Marko Manninen", + "email": "mmstud@gmail.com", + "url": "http://about.me/markomanninen" + }, + "repository": { + "type": "git", + "url": "git://github.com/mmstud/scribe-node.git" + }, + "versions": { + "0.0.16": "http://registry.npmjs.org/scribe-node/0.0.16", + "0.0.17": "http://registry.npmjs.org/scribe-node/0.0.17", + "0.0.18": "http://registry.npmjs.org/scribe-node/0.0.18", + "0.0.19": "http://registry.npmjs.org/scribe-node/0.0.19", + "0.0.20": "http://registry.npmjs.org/scribe-node/0.0.20", + "0.0.21": "http://registry.npmjs.org/scribe-node/0.0.21", + "0.0.22": "http://registry.npmjs.org/scribe-node/0.0.22", + "0.0.23": "http://registry.npmjs.org/scribe-node/0.0.23", + "0.0.24": "http://registry.npmjs.org/scribe-node/0.0.24" + }, + "dist": { + "0.0.16": { + "shasum": "b48a74468d5b75d0ddb78b6e738855545fdd24e3", + "tarball": "http://registry.npmjs.org/scribe-node/-/scribe-node-0.0.16.tgz" + }, + "0.0.17": { + "shasum": "70928af02a5a46790adf9476823300392ef9d38f", + "tarball": "http://registry.npmjs.org/scribe-node/-/scribe-node-0.0.17.tgz" + }, + "0.0.18": { + "shasum": "58e3d14cb123c19fc2eb40b0574e010392640eac", + "tarball": "http://registry.npmjs.org/scribe-node/-/scribe-node-0.0.18.tgz" + }, + "0.0.19": { + "shasum": "6287a0f3680844a6f81cea13c1d12e2c9ab7fe48", + "tarball": "http://registry.npmjs.org/scribe-node/-/scribe-node-0.0.19.tgz" + }, + "0.0.20": { + "shasum": "39c92ef7ded27181637d01358958f780879d7096", + "tarball": "http://registry.npmjs.org/scribe-node/-/scribe-node-0.0.20.tgz" + }, + "0.0.21": { + "shasum": "369164ea7565b876530076b715294d3fb285c3b6", + "tarball": "http://registry.npmjs.org/scribe-node/-/scribe-node-0.0.21.tgz" + }, + "0.0.22": { + "shasum": "7fdb29c8996419c56d6e4a30baed32c28e1c223d", + "tarball": "http://registry.npmjs.org/scribe-node/-/scribe-node-0.0.22.tgz" + }, + "0.0.23": { + "shasum": "1c782385659318a72278c98604f816eaf850de08", + "tarball": "http://registry.npmjs.org/scribe-node/-/scribe-node-0.0.23.tgz" + }, + "0.0.24": { + "shasum": "265a0a92b159ae5b9f21060c05272daaea3ae994", + "tarball": "http://registry.npmjs.org/scribe-node/-/scribe-node-0.0.24.tgz" + } + }, + "keywords": [ + "scribe", + "oauth", + "web2.0", + "node.js", + "coffeescript", + "java", + "google", + "api", + "facebook", + "twitter", + "linkedin" + ], + "url": "http://registry.npmjs.org/scribe-node/" + }, + "script-builder": { + "name": "script-builder", + "description": "A tool for building dynamic scripts.", + "dist-tags": { + "latest": "0.3.3" + }, + "maintainers": [ + { + "name": "jussi-kalliokoski", + "email": "jussi.kalliokoski@gmail.com" + } + ], + "time": { + "modified": "2011-10-30T17:55:14.103Z", + "created": "2011-10-09T05:55:35.052Z", + "0.1.0": "2011-10-09T05:55:35.852Z", + "0.2.0": "2011-10-09T11:25:30.958Z", + "0.3.0": "2011-10-29T20:26:54.231Z", + "0.3.1": "2011-10-30T09:45:23.712Z", + "0.3.2": "2011-10-30T12:41:33.744Z", + "0.3.3": "2011-10-30T17:55:14.103Z" + }, + "author": { + "name": "Jussi Kalliokoski" + }, + "repository": { + "type": "git", + "url": "git://github.com/jussi-kalliokoski/script-builder.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/script-builder/0.1.0", + "0.2.0": "http://registry.npmjs.org/script-builder/0.2.0", + "0.3.0": "http://registry.npmjs.org/script-builder/0.3.0", + "0.3.1": "http://registry.npmjs.org/script-builder/0.3.1", + "0.3.2": "http://registry.npmjs.org/script-builder/0.3.2", + "0.3.3": "http://registry.npmjs.org/script-builder/0.3.3" + }, + "dist": { + "0.1.0": { + "shasum": "64ae90a5e7873a0d44402908132656a345168f38", + "tarball": "http://registry.npmjs.org/script-builder/-/script-builder-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "fb4ddd5adc6b5e73320e03606e4ee9a18e06e68b", + "tarball": "http://registry.npmjs.org/script-builder/-/script-builder-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "57ef49aff128aab02f940b282ac6b525d1b2c471", + "tarball": "http://registry.npmjs.org/script-builder/-/script-builder-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "0f329fcdbace4358e69c8a815bf493ab44adb040", + "tarball": "http://registry.npmjs.org/script-builder/-/script-builder-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "01bd12ddea4034f4cd6b58d57fe95509703a915d", + "tarball": "http://registry.npmjs.org/script-builder/-/script-builder-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "3a2c12a54b67bb42467eba5358fd599fcb15060e", + "tarball": "http://registry.npmjs.org/script-builder/-/script-builder-0.3.3.tgz" + } + }, + "url": "http://registry.npmjs.org/script-builder/" + }, + "scriptbroadcast": { + "name": "scriptbroadcast", + "description": "Broadcast recorded typescripts(shell sessions)", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "clvv", + "email": "x@wei23.net" + } + ], + "time": { + "modified": "2011-04-24T21:28:18.048Z", + "created": "2011-04-04T07:54:41.543Z", + "0.0.1": "2011-04-04T07:54:41.976Z", + "0.0.2": "2011-04-16T01:37:12.672Z", + "0.0.3": "2011-04-24T21:28:18.048Z" + }, + "author": { + "name": "Wei Dai", + "email": "x@wei23.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/clvv/scriptbroadcast.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/scriptbroadcast/0.0.1", + "0.0.2": "http://registry.npmjs.org/scriptbroadcast/0.0.2", + "0.0.3": "http://registry.npmjs.org/scriptbroadcast/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "a1a99898622db5d88c3bde65d54231bdbaf98963", + "tarball": "http://registry.npmjs.org/scriptbroadcast/-/scriptbroadcast-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "35c0125cb0cb31c87974420e1ea12bccb620fd12", + "tarball": "http://registry.npmjs.org/scriptbroadcast/-/scriptbroadcast-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "945060cf3473534b0a1720f05e7c84dd9cad7f25", + "tarball": "http://registry.npmjs.org/scriptbroadcast/-/scriptbroadcast-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/scriptbroadcast/" + }, + "scriptjs": { + "name": "scriptjs", + "description": "Asyncronous JavaScript loader and dependency manager", + "dist-tags": { + "latest": "2.2.2" + }, + "maintainers": [ + { + "name": "ded", + "email": "polvero@gmail.com" + }, + { + "name": "fat", + "email": "jacobthornton@gmail.com" + } + ], + "time": { + "modified": "2011-09-28T20:42:55.726Z", + "created": "2011-04-09T23:43:52.529Z", + "1.3.0": "2011-04-09T23:43:52.887Z", + "1.3.1": "2011-04-10T00:08:07.408Z", + "1.3.2": "2011-04-12T17:01:07.414Z", + "1.3.3": "2011-04-12T21:29:36.739Z", + "1.3.4": "2011-04-13T00:00:44.824Z", + "1.3.5": "2011-04-13T00:36:39.797Z", + "2.0.1": "2011-04-15T23:17:54.408Z", + "2.0.2": "2011-04-16T20:33:12.122Z", + "2.1.0": "2011-04-17T17:05:53.294Z", + "2.1.1": "2011-05-02T20:24:29.820Z", + "2.1.2": "2011-05-10T17:35:03.878Z", + "2.1.3": "2011-05-11T00:16:25.726Z", + "2.1.4": "2011-05-12T05:56:15.454Z", + "2.1.5": "2011-05-17T18:37:06.020Z", + "2.1.6": "2011-06-26T23:05:54.274Z", + "2.1.7": "2011-07-10T22:21:02.394Z", + "2.1.8": "2011-09-07T20:27:46.654Z", + "2.2.0": "2011-09-13T18:47:42.601Z", + "2.2.1": "2011-09-27T01:25:29.155Z", + "2.2.2": "2011-09-28T20:42:55.726Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/ded/script.js.git" + }, + "author": { + "name": "Dustin Diaz", + "email": "dustin@dustindiaz.com", + "url": "http://dustindiaz.com" + }, + "versions": { + "1.3.0": "http://registry.npmjs.org/scriptjs/1.3.0", + "1.3.1": "http://registry.npmjs.org/scriptjs/1.3.1", + "1.3.2": "http://registry.npmjs.org/scriptjs/1.3.2", + "1.3.3": "http://registry.npmjs.org/scriptjs/1.3.3", + "1.3.4": "http://registry.npmjs.org/scriptjs/1.3.4", + "1.3.5": "http://registry.npmjs.org/scriptjs/1.3.5", + "2.0.1": "http://registry.npmjs.org/scriptjs/2.0.1", + "2.0.2": "http://registry.npmjs.org/scriptjs/2.0.2", + "2.1.0": "http://registry.npmjs.org/scriptjs/2.1.0", + "2.1.1": "http://registry.npmjs.org/scriptjs/2.1.1", + "2.1.2": "http://registry.npmjs.org/scriptjs/2.1.2", + "2.1.3": "http://registry.npmjs.org/scriptjs/2.1.3", + "2.1.4": "http://registry.npmjs.org/scriptjs/2.1.4", + "2.1.5": "http://registry.npmjs.org/scriptjs/2.1.5", + "2.1.6": "http://registry.npmjs.org/scriptjs/2.1.6", + "2.1.7": "http://registry.npmjs.org/scriptjs/2.1.7", + "2.1.8": "http://registry.npmjs.org/scriptjs/2.1.8", + "2.2.0": "http://registry.npmjs.org/scriptjs/2.2.0", + "2.2.1": "http://registry.npmjs.org/scriptjs/2.2.1", + "2.2.2": "http://registry.npmjs.org/scriptjs/2.2.2" + }, + "dist": { + "1.3.0": { + "shasum": "0b9b94e268a608a18e2079e97d8eb491a89f39d3", + "tarball": "http://registry.npmjs.org/scriptjs/-/scriptjs-1.3.0.tgz" + }, + "1.3.1": { + "shasum": "a71f1c3523b8ef21fbd3dcbe411c27aa3dcb391c", + "tarball": "http://registry.npmjs.org/scriptjs/-/scriptjs-1.3.1.tgz" + }, + "1.3.2": { + "shasum": "278dfc4b0e60ecee37f80601c16b4b16baa6eb96", + "tarball": "http://registry.npmjs.org/scriptjs/-/scriptjs-1.3.2.tgz" + }, + "1.3.3": { + "shasum": "e5f4d2cc58f23eb8ef7bc78ad5e19bd6017b21e8", + "tarball": "http://registry.npmjs.org/scriptjs/-/scriptjs-1.3.3.tgz" + }, + "1.3.4": { + "shasum": "fb9201d9f53c40e7900ce876cbb8457247f92bf8", + "tarball": "http://registry.npmjs.org/scriptjs/-/scriptjs-1.3.4.tgz" + }, + "1.3.5": { + "shasum": "8f0cc911fe56f9971d50bf4fa788003a2a88cad0", + "tarball": "http://registry.npmjs.org/scriptjs/-/scriptjs-1.3.5.tgz" + }, + "2.0.1": { + "shasum": "8348e3bdeb2eab96530d2fa0f91d70b7bf5fa2b4", + "tarball": "http://registry.npmjs.org/scriptjs/-/scriptjs-2.0.1.tgz" + }, + "2.0.2": { + "shasum": "7884377072092969419c3c249334b72e66bbb04a", + "tarball": "http://registry.npmjs.org/scriptjs/-/scriptjs-2.0.2.tgz" + }, + "2.1.0": { + "shasum": "016cd6fc31f6bdf3327a67aa435ab3f8eed8d522", + "tarball": "http://registry.npmjs.org/scriptjs/-/scriptjs-2.1.0.tgz" + }, + "2.1.1": { + "shasum": "cc33c344995dd0fccddf83986a6e4badf3d11c95", + "tarball": "http://registry.npmjs.org/scriptjs/-/scriptjs-2.1.1.tgz" + }, + "2.1.2": { + "shasum": "57e7f9204134362f3ec7cf4e548234b3cf920df2", + "tarball": "http://registry.npmjs.org/scriptjs/-/scriptjs-2.1.2.tgz" + }, + "2.1.3": { + "shasum": "bb1dcfd0e6e3845a9aad5992ba413d3a0c8474d7", + "tarball": "http://registry.npmjs.org/scriptjs/-/scriptjs-2.1.3.tgz" + }, + "2.1.4": { + "shasum": "6c707a93bfb2c9c35fd59d9b6efdcd36cfa40a2d", + "tarball": "http://registry.npmjs.org/scriptjs/-/scriptjs-2.1.4.tgz" + }, + "2.1.5": { + "shasum": "86ae7b72537c579d3335c59e3aefcca4fc506c04", + "tarball": "http://registry.npmjs.org/scriptjs/-/scriptjs-2.1.5.tgz" + }, + "2.1.6": { + "shasum": "cc5ee5caee8eb23c006f84937233807c52823f9a", + "tarball": "http://registry.npmjs.org/scriptjs/-/scriptjs-2.1.6.tgz" + }, + "2.1.7": { + "shasum": "3a4bae99d4dba24bb234cb44ef749c402225ea98", + "tarball": "http://registry.npmjs.org/scriptjs/-/scriptjs-2.1.7.tgz" + }, + "2.1.8": { + "shasum": "dfde3789bb08282b07f803b0f9f22c834be9d980", + "tarball": "http://registry.npmjs.org/scriptjs/-/scriptjs-2.1.8.tgz" + }, + "2.2.0": { + "shasum": "87c1cc43fc88f65e88bbacf154825acef3adadf4", + "tarball": "http://registry.npmjs.org/scriptjs/-/scriptjs-2.2.0.tgz" + }, + "2.2.1": { + "shasum": "eca67573141702671a3665bc8e93d6355fb9acc2", + "tarball": "http://registry.npmjs.org/scriptjs/-/scriptjs-2.2.1.tgz" + }, + "2.2.2": { + "shasum": "320b3af8f27c7296a7a3083b87ca5bc114b1efaa", + "tarball": "http://registry.npmjs.org/scriptjs/-/scriptjs-2.2.2.tgz" + } + }, + "keywords": [ + "ender", + "script", + "dependency", + "ajax", + "jsonp", + "loader" + ], + "url": "http://registry.npmjs.org/scriptjs/" + }, + "scriptTools": { + "name": "scriptTools", + "description": "General utilities for node.js scripts, such as command line argument parsing and config loading", + "dist-tags": { + "latest": "0.0.25" + }, + "maintainers": [ + { + "name": "peterbraden", + "email": "peterbraden@peterbraden.co.uk" + } + ], + "author": { + "name": "Peter Braden", + "email": "peterbraden@peterbraden.co.uk" + }, + "time": { + "modified": "2011-01-21T01:57:57.526Z", + "created": "2011-01-21T00:15:37.144Z", + "0.0.1": "2011-01-21T00:15:37.144Z", + "0.0.2": "2011-01-21T00:15:37.144Z", + "0.0.25": "2011-01-21T01:57:57.526Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/scriptTools/0.0.1", + "0.0.2": "http://registry.npmjs.org/scriptTools/0.0.2", + "0.0.25": "http://registry.npmjs.org/scriptTools/0.0.25" + }, + "dist": { + "0.0.1": { + "shasum": "d9fc31ff6997d53fa62d5f97bf191f87fc82ab7b", + "tarball": "http://registry.npmjs.org/scriptTools/-/scriptTools-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f82d17124af6dac23405211fb8531b1b37abe0d0", + "tarball": "http://registry.npmjs.org/scriptTools/-/scriptTools-0.0.2.tgz" + }, + "0.0.25": { + "shasum": "d14ff0addda6f338c07ceb26dd3acc2e0a2eca1d", + "tarball": "http://registry.npmjs.org/scriptTools/-/scriptTools-0.0.25.tgz" + } + }, + "url": "http://registry.npmjs.org/scriptTools/" + }, + "scrollability": { + "name": "scrollability", + "description": "Native-like scrolling for the web", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "joehewitt", + "email": "joe@joehewitt.com" + } + ], + "time": { + "modified": "2011-10-11T21:42:36.322Z", + "created": "2011-10-10T03:39:48.749Z", + "0.0.1": "2011-10-10T03:39:49.634Z", + "0.0.2": "2011-10-11T21:42:36.322Z" + }, + "author": { + "name": "Joe Hewitt", + "email": "joe@joehewitt.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/joehewitt/scrollability.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/scrollability/0.0.1", + "0.0.2": "http://registry.npmjs.org/scrollability/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "8e02b51ce61f9e5ebc3661205ebbbff3db285da0", + "tarball": "http://registry.npmjs.org/scrollability/-/scrollability-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "3442383de80fda2d472aa7299ff70300ec32c5d5", + "tarball": "http://registry.npmjs.org/scrollability/-/scrollability-0.0.2.tgz" + } + }, + "keywords": [ + "client" + ], + "url": "http://registry.npmjs.org/scrollability/" + }, + "scrowser": { + "name": "scrowser", + "description": "A server-side scraping web browser", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "leepowers", + "email": "lee@powers1.net" + } + ], + "time": { + "modified": "2011-05-01T19:54:46.511Z", + "created": "2011-05-01T19:54:43.458Z", + "0.1.0": "2011-05-01T19:54:46.511Z" + }, + "author": { + "name": "Lee Powers", + "email": "lee@powers1.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/leepowers/scrowser.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/scrowser/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "51d093cb306e0ce9b0b47346664197be4fa643b9", + "tarball": "http://registry.npmjs.org/scrowser/-/scrowser-0.1.0.tgz" + } + }, + "keywords": [ + "web", + "browser", + "http", + "scrape", + "scraping", + "crawl" + ], + "url": "http://registry.npmjs.org/scrowser/" + }, + "scss": { + "name": "scss", + "description": "JavaScript Implementation of SCSS (Sassy CSS)", + "dist-tags": { + "latest": "0.2.4" + }, + "maintainers": [ + { + "name": "bmavity", + "email": "brian@brianmavity.com" + } + ], + "time": { + "0.2.2": "2011-12-06T18:30:36.580Z", + "0.1.0": "2011-12-06T18:30:36.580Z", + "0.1.1": "2011-12-06T18:30:36.580Z", + "0.2.0": "2011-12-06T18:30:36.580Z", + "modified": "2011-12-07T15:28:26.463Z", + "created": "2011-12-06T18:30:36.580Z", + "0.2.3": "2011-12-06T18:38:48.780Z", + "0.2.4": "2011-12-07T15:28:26.463Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/scss/0.1.0", + "0.1.1": "http://registry.npmjs.org/scss/0.1.1", + "0.2.0": "http://registry.npmjs.org/scss/0.2.0", + "0.2.2": "http://registry.npmjs.org/scss/0.2.2", + "0.2.3": "http://registry.npmjs.org/scss/0.2.3", + "0.2.4": "http://registry.npmjs.org/scss/0.2.4" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/scss/-/scss-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://packages:5984/scss/-/scss-0.1.1.tgz" + }, + "0.2.0": { + "tarball": "http://packages:5984/scss/-/scss-0.2.0.tgz" + }, + "0.2.2": { + "shasum": "ec8de3cd516b5f51adcec6ce8e5d42cd26f37b03", + "tarball": "http://registry.npmjs.org/scss/-/scss-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "659f0102f64d7635ff2c687958bb83c263a8e20e", + "tarball": "http://registry.npmjs.org/scss/-/scss-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "040d903ed37c5d4fa4ad33ae1fd389ac12a4e065", + "tarball": "http://registry.npmjs.org/scss/-/scss-0.2.4.tgz" + } + }, + "url": "http://registry.npmjs.org/scss/" + }, + "scylla": { + "name": "scylla", + "description": "Simple router/microframework for NodeJS", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "mjs", + "email": "mjs@beebo.org" + } + ], + "author": { + "name": "Michael Stillwell", + "email": "mjs@beebo.org" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/scylla/0.1.0", + "0.1.1": "http://registry.npmjs.org/scylla/0.1.1", + "0.1.2": "http://registry.npmjs.org/scylla/0.1.2" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/scylla/-/scylla-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://packages:5984/scylla/-/scylla-0.1.1.tgz" + }, + "0.1.2": { + "tarball": "http://packages:5984/scylla/-/scylla-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/scylla/" + }, + "sdl": { + "name": "sdl", + "description": "SDL bindings for node", + "dist-tags": { + "latest": "0.1.7" + }, + "maintainers": [ + { + "name": "creationix", + "email": "tim@creationix.com" + } + ], + "time": { + "modified": "2011-11-14T21:23:13.305Z", + "created": "2011-07-10T01:29:02.880Z", + "0.0.1": "2011-07-10T01:29:03.455Z", + "0.0.2": "2011-07-15T06:01:28.326Z", + "0.1.0": "2011-07-16T11:43:17.588Z", + "0.1.1": "2011-07-18T05:55:28.446Z", + "0.1.2": "2011-07-19T06:43:46.301Z", + "0.1.3": "2011-07-22T01:30:50.215Z", + "0.1.4": "2011-07-25T16:09:59.621Z", + "0.1.5": "2011-08-27T14:37:24.090Z", + "0.1.6": "2011-08-31T21:02:01.623Z", + "0.1.7": "2011-09-01T20:40:15.295Z" + }, + "author": { + "name": "Tim Caswell", + "email": "tim@creationix.com", + "url": "http://creationix.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/creationix/node-sdl.git" + }, + "users": { + "creationix": true + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/sdl/0.0.1", + "0.0.2": "http://registry.npmjs.org/sdl/0.0.2", + "0.1.0": "http://registry.npmjs.org/sdl/0.1.0", + "0.1.1": "http://registry.npmjs.org/sdl/0.1.1", + "0.1.2": "http://registry.npmjs.org/sdl/0.1.2", + "0.1.3": "http://registry.npmjs.org/sdl/0.1.3", + "0.1.4": "http://registry.npmjs.org/sdl/0.1.4", + "0.1.5": "http://registry.npmjs.org/sdl/0.1.5", + "0.1.6": "http://registry.npmjs.org/sdl/0.1.6", + "0.1.7": "http://registry.npmjs.org/sdl/0.1.7" + }, + "dist": { + "0.0.1": { + "shasum": "8bf8cc0a38ce3a4b6cfb942ea37bf4aca5a9011e", + "tarball": "http://registry.npmjs.org/sdl/-/sdl-0.0.1.tgz", + "bin": { + "true": { + "shasum": "7924808d956dccbb0e98fd433525ba2b63413959" + }, + "0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.25-linux-2.6.38-8-generic": { + "tarball": "http://registry.npmjs.org/sdl/-/sdl-0.0.1-0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.25-linux-2.6.38-8-generic.tgz" + } + } + }, + "0.0.2": { + "shasum": "43ced642826ad21c39bfc9b2899513ebc7aa5a71", + "tarball": "http://registry.npmjs.org/sdl/-/sdl-0.0.2.tgz" + }, + "0.1.0": { + "shasum": "84a9f0965c83de758ff1ea831a08d4ee5c67c509", + "bin": { + "true": { + "shasum": "fc7e11896ac4290732d914d22c786dff821dff22" + }, + "0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.25-linux-2.6.38-10-generic": { + "tarball": "http://registry.npmjs.org/sdl/-/sdl-0.1.0-0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.25-linux-2.6.38-10-generic.tgz" + } + }, + "tarball": "http://registry.npmjs.org/sdl/-/sdl-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "a7d67573751b8c6b1e6bbfcf7e33a4855e1aa6a4", + "tarball": "http://registry.npmjs.org/sdl/-/sdl-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "c7e61e1d4453ef4f4dc872882bed0e0276151b9d", + "tarball": "http://registry.npmjs.org/sdl/-/sdl-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "ef6f2da5e5149fc82fe03b449d411c43dd985504", + "bin": { + "true": { + "shasum": "0db8cf8a7baf426a8e3096c6dd5b89c679d615f2" + }, + "0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.25-linux-2.6.38-10-generic": { + "tarball": "http://registry.npmjs.org/sdl/-/sdl-0.1.3-0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.25-linux-2.6.38-10-generic.tgz" + } + }, + "tarball": "http://registry.npmjs.org/sdl/-/sdl-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "6ba2f71574a9a17c9d5b1693424d343f51c3466c", + "tarball": "http://registry.npmjs.org/sdl/-/sdl-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "713f424130fbeced78a7e0ab1a415965258123f4", + "bin": { + "true": { + "shasum": "b3ece57e246f0e3bac7bb946524bc1f6f5c22d68" + }, + "0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.25-linux-2.6.38-11-generic": { + "tarball": "http://registry.npmjs.org/sdl/-/sdl-0.1.5-0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.25-linux-2.6.38-11-generic.tgz" + } + }, + "tarball": "http://registry.npmjs.org/sdl/-/sdl-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "b44d5a74398969df7c9ec19b5ab0806e71a43e73", + "tarball": "http://registry.npmjs.org/sdl/-/sdl-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "8414891a87d6f6936f5213d999b1a7c259eb7543", + "tarball": "http://registry.npmjs.org/sdl/-/sdl-0.1.7.tgz" + } + }, + "url": "http://registry.npmjs.org/sdl/" + }, + "sdlmixer": { + "name": "sdlmixer", + "description": "Audio file playback using SDL_mixer for node", + "dist-tags": { + "latest": "0.0.9" + }, + "maintainers": [ + { + "name": "japj", + "email": "jeroen.janssen@gmail.com" + } + ], + "time": { + "modified": "2011-05-14T09:02:03.257Z", + "created": "2011-05-14T09:02:02.581Z", + "0.0.9": "2011-05-14T09:02:03.257Z" + }, + "author": { + "name": "Jeroen Janssen", + "email": "jeroen.janssen@gmail.com" + }, + "versions": { + "0.0.9": "http://registry.npmjs.org/sdlmixer/0.0.9" + }, + "dist": { + "0.0.9": { + "shasum": "91133a83cc0925f975c42845f3fd524a7e73bccf", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.10-linux-2.6.38-8-generic": { + "shasum": "c1e92786d5ca551169c725e1d596ba19a913f192", + "tarball": "http://registry.npmjs.org/sdlmixer/-/sdlmixer-0.0.9-0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.10-linux-2.6.38-8-generic.tgz" + } + }, + "tarball": "http://registry.npmjs.org/sdlmixer/-/sdlmixer-0.0.9.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/sdlmixer/" + }, + "seajs": { + "name": "seajs", + "description": "A Module Loader for the Web", + "dist-tags": { + "latest": "1.1.0" + }, + "readme": "\nA Module Loader for the Web\n===\n\nSeaJS is a module loader for the web. It is designed to change the way that you\norganize JavaScript. With SeaJS, it is pleasure to build scalable web\napplications.\n\nCheckout the official SeaJS docs site at .\n\n\n## License\n\nSeaJS is available under the terms of the [MIT license](http://seajs.com/MIT-LICENSE.txt).\n", + "maintainers": [ + { + "name": "lifesinger", + "email": "lifesinger@gmail.com" + } + ], + "time": { + "modified": "2011-12-01T23:40:56.491Z", + "created": "2011-12-01T23:40:52.790Z", + "1.1.0": "2011-12-01T23:40:56.491Z" + }, + "author": { + "name": "Frank Wang", + "email": "lifesinger@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/seajs/seajs.git" + }, + "versions": { + "1.1.0": "http://registry.npmjs.org/seajs/1.1.0" + }, + "dist": { + "1.1.0": { + "shasum": "ce3350ec1a447214ecbe14d85535cb1426965da6", + "tarball": "http://registry.npmjs.org/seajs/-/seajs-1.1.0.tgz" + } + }, + "keywords": [ + "loader", + "module", + "commonjs", + "browser", + "nodejs" + ], + "url": "http://registry.npmjs.org/seajs/" + }, + "search": { + "name": "search", + "description": "faster 'ack' written with nodejs", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "time": { + "modified": "2011-11-07T16:34:23.109Z", + "created": "2011-08-24T23:27:00.029Z", + "0.0.1": "2011-08-24T23:27:01.288Z", + "0.0.2": "2011-08-24T23:31:41.513Z", + "0.0.3": "2011-08-25T16:01:59.245Z", + "0.0.4": "2011-08-25T16:07:07.273Z", + "1.0.0": "2011-11-07T16:34:23.109Z" + }, + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/search/0.0.1", + "0.0.2": "http://registry.npmjs.org/search/0.0.2", + "0.0.3": "http://registry.npmjs.org/search/0.0.3", + "0.0.4": "http://registry.npmjs.org/search/0.0.4", + "1.0.0": "http://registry.npmjs.org/search/1.0.0" + }, + "dist": { + "0.0.1": { + "shasum": "2c550f653e3ca567dd1fa7408b60d4289a16751e", + "tarball": "http://registry.npmjs.org/search/-/search-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "85f144894d2a66737cf1862297f48614c9ad83f3", + "tarball": "http://registry.npmjs.org/search/-/search-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "d0eb0d52be352348c9766716d0806556b74d3500", + "tarball": "http://registry.npmjs.org/search/-/search-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "e846a1b63c710a2fe2b5b9586d25c3711bb54afb", + "tarball": "http://registry.npmjs.org/search/-/search-0.0.4.tgz" + }, + "1.0.0": { + "shasum": "2dcf5eb1c4ef4699116b94226c2c1825eaf09f41", + "tarball": "http://registry.npmjs.org/search/-/search-1.0.0.tgz" + } + }, + "keywords": [ + "ack", + "grep", + "search" + ], + "url": "http://registry.npmjs.org/search/" + }, + "searchjs": { + "name": "searchjs", + "description": "A library for filtering JavaScript objects based on a json SQL-like language, jsql", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "deitch", + "email": "avi@deitcher.net" + } + ], + "time": { + "modified": "2011-08-11T12:06:45.277Z", + "created": "2011-08-11T12:06:43.562Z", + "0.1.0": "2011-08-11T12:06:45.277Z" + }, + "author": { + "name": "Avi Deitcher", + "email": "avi@deitcher.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/deitch/searchjs.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/searchjs/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "85f715bce3f65fdcb790579c6fdd9543a9b3cb4b", + "tarball": "http://registry.npmjs.org/searchjs/-/searchjs-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/searchjs/" + }, + "searchparser": { + "name": "searchparser", + "description": "Parse referrer URLs for search engine name and keywords", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "dangrossman", + "email": "dan@dangrossman.info" + } + ], + "time": { + "modified": "2011-01-10T07:39:23.800Z", + "created": "2011-01-10T07:39:23.726Z", + "0.1.0": "2011-01-10T07:39:23.800Z" + }, + "author": { + "name": "Dan Grossman" + }, + "repository": { + "type": "git", + "url": "http://github.com/dangrossman/node-searchparser.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/searchparser/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "eb3ab2f8a437ea9db8860f06abeeec5fba631f58", + "tarball": "http://registry.npmjs.org/searchparser/-/searchparser-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/searchparser/" + }, + "sechash": { + "name": "sechash", + "description": "Secure password hashing with salt and key stretching", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "k", + "email": "kbjr14@gmail.com" + } + ], + "time": { + "modified": "2011-06-23T02:12:14.884Z", + "created": "2011-06-20T10:10:44.167Z", + "0.1.0": "2011-06-20T10:10:44.935Z", + "0.1.1": "2011-06-21T07:19:27.585Z", + "0.1.2": "2011-06-23T02:11:18.036Z" + }, + "author": { + "name": "James Brumond", + "email": "kbjr14@gmail.com", + "url": "http://jbrumond.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/kbjr/node-sechash.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/sechash/0.1.0", + "0.1.1": "http://registry.npmjs.org/sechash/0.1.1", + "0.1.2": "http://registry.npmjs.org/sechash/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "ecb0f04fbb460f82e8ebcdc11b41a9deb61d17a4", + "tarball": "http://registry.npmjs.org/sechash/-/sechash-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "1305fb4762b70e500463987f1c203a6233f51876", + "tarball": "http://registry.npmjs.org/sechash/-/sechash-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "60b6d4b392733e9c0b5fc2302c0c2d8172460d6f", + "tarball": "http://registry.npmjs.org/sechash/-/sechash-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/sechash/" + }, + "secret": { + "name": "secret", + "description": "An in memory key value store module for node.js", + "dist-tags": { + "latest": "1.0.2" + }, + "maintainers": [ + { + "name": "dreamerslab", + "email": "ben@dreamerslab.com" + } + ], + "time": { + "modified": "2011-07-15T04:10:51.593Z", + "created": "2011-07-05T05:06:59.350Z", + "1.0.0": "2011-07-05T05:07:01.112Z", + "1.0.1": "2011-07-06T02:54:54.651Z", + "1.0.2": "2011-07-15T04:10:51.593Z" + }, + "author": { + "name": "dreamerslab", + "email": "ben@dreamerslab.com" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/secret/1.0.0", + "1.0.1": "http://registry.npmjs.org/secret/1.0.1", + "1.0.2": "http://registry.npmjs.org/secret/1.0.2" + }, + "dist": { + "1.0.0": { + "shasum": "f901be5c3d653d55aea4c212fc730c89398abe33", + "tarball": "http://registry.npmjs.org/secret/-/secret-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "449f4bfc96a244001d82a17efbb57d00d23fc208", + "tarball": "http://registry.npmjs.org/secret/-/secret-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "d37b36edd0b42635c8bfd4cb667408052cb3e67f", + "tarball": "http://registry.npmjs.org/secret/-/secret-1.0.2.tgz" + } + }, + "keywords": [ + "secret", + "key-value", + "key-value-store", + "global" + ], + "url": "http://registry.npmjs.org/secret/" + }, + "seed": { + "name": "seed", + "description": "Storage-agnostic, event emitting datasets: schemas, models, hashes, and graphs.", + "dist-tags": { + "latest": "0.1.5" + }, + "maintainers": [ + { + "name": "jakeluer", + "email": "jake.luer@incatern.com" + } + ], + "time": { + "modified": "2011-12-13T03:16:59.277Z", + "created": "2011-10-03T00:22:46.349Z", + "0.0.1": "2011-10-03T00:22:47.003Z", + "0.0.2": "2011-10-03T05:31:10.991Z", + "0.0.3": "2011-10-03T06:01:27.947Z", + "0.0.4": "2011-10-03T12:35:18.943Z", + "0.0.6": "2011-10-05T10:55:45.452Z", + "0.0.7": "2011-10-14T06:03:28.178Z", + "0.0.9": "2011-10-26T01:13:25.259Z", + "0.0.10": "2011-11-02T14:35:46.152Z", + "0.0.11": "2011-11-11T15:18:08.211Z", + "0.1.0": "2011-11-11T16:52:14.483Z", + "0.1.1": "2011-12-04T19:36:50.760Z", + "0.1.2": "2011-12-05T01:03:33.915Z", + "0.1.3": "2011-12-05T04:04:08.601Z", + "0.1.4": "2011-12-06T12:40:19.641Z", + "0.1.5": "2011-12-13T03:16:59.277Z" + }, + "author": { + "name": "Jake Luer", + "email": "jake@alogicalparadox.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/logicalparadox/seed.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/seed/0.0.1", + "0.0.2": "http://registry.npmjs.org/seed/0.0.2", + "0.0.3": "http://registry.npmjs.org/seed/0.0.3", + "0.0.4": "http://registry.npmjs.org/seed/0.0.4", + "0.0.6": "http://registry.npmjs.org/seed/0.0.6", + "0.0.7": "http://registry.npmjs.org/seed/0.0.7", + "0.0.9": "http://registry.npmjs.org/seed/0.0.9", + "0.0.10": "http://registry.npmjs.org/seed/0.0.10", + "0.0.11": "http://registry.npmjs.org/seed/0.0.11", + "0.1.0": "http://registry.npmjs.org/seed/0.1.0", + "0.1.1": "http://registry.npmjs.org/seed/0.1.1", + "0.1.2": "http://registry.npmjs.org/seed/0.1.2", + "0.1.3": "http://registry.npmjs.org/seed/0.1.3", + "0.1.4": "http://registry.npmjs.org/seed/0.1.4", + "0.1.5": "http://registry.npmjs.org/seed/0.1.5" + }, + "dist": { + "0.0.1": { + "shasum": "ac694834410db01d05079f76d2c9b23a6da268bf", + "tarball": "http://registry.npmjs.org/seed/-/seed-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "6785cda7b5ecb5af6efc17d22b08a7a33effb61e", + "tarball": "http://registry.npmjs.org/seed/-/seed-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "5f60a305da1d5bf6fe66553d8e179a87fdb5717d", + "tarball": "http://registry.npmjs.org/seed/-/seed-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "7ad2a6d55fd56a98421375a2c504b421d5fd3bb9", + "tarball": "http://registry.npmjs.org/seed/-/seed-0.0.4.tgz" + }, + "0.0.6": { + "shasum": "5887c4df41f121946e73b3c087bcbfa17d5cc40c", + "tarball": "http://registry.npmjs.org/seed/-/seed-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "7a1498c788e4e0f51f79c4aa83bb0890bbc3988e", + "tarball": "http://registry.npmjs.org/seed/-/seed-0.0.7.tgz" + }, + "0.0.9": { + "shasum": "580c8dd5707aaf53614dbd99f39faa4339ea144b", + "tarball": "http://registry.npmjs.org/seed/-/seed-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "231fe96e563f1337fd74f48c8add62963c21db0e", + "tarball": "http://registry.npmjs.org/seed/-/seed-0.0.10.tgz" + }, + "0.0.11": { + "shasum": "5188fbc143d976b88245f442789147df9c162c0c", + "tarball": "http://registry.npmjs.org/seed/-/seed-0.0.11.tgz" + }, + "0.1.0": { + "shasum": "f0875b99091fdbb80649c6936ceee2e27401997a", + "tarball": "http://registry.npmjs.org/seed/-/seed-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "88ee85d3cb49aad2ab0a9d497fd3fe27b7463056", + "tarball": "http://registry.npmjs.org/seed/-/seed-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "56dfa10b54d2d246ac3a3f6a7a35829305023ee7", + "tarball": "http://registry.npmjs.org/seed/-/seed-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "3c7d8125858cee02b976b9eaf172bbc3b2be16a0", + "tarball": "http://registry.npmjs.org/seed/-/seed-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "1e3787730842a0721e2e5f79438ef67eb69fdf79", + "tarball": "http://registry.npmjs.org/seed/-/seed-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "938f4dc55d64f09eca8b5957a867d54b9e492f96", + "tarball": "http://registry.npmjs.org/seed/-/seed-0.1.5.tgz" + } + }, + "url": "http://registry.npmjs.org/seed/" + }, + "seed-filestore": { + "name": "seed-filestore", + "description": "Store Seed datasets in a JSON file structure.", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "jakeluer", + "email": "jake.luer@incatern.com" + } + ], + "time": { + "modified": "2011-12-14T09:34:25.372Z", + "created": "2011-10-26T01:06:51.868Z", + "0.0.1": "2011-10-26T01:06:52.524Z", + "0.0.2": "2011-10-26T23:25:47.874Z", + "0.0.3": "2011-11-11T15:18:52.548Z", + "0.0.4": "2011-12-14T09:34:25.372Z" + }, + "author": { + "name": "Jake Luer", + "email": "@jakeluer" + }, + "repository": { + "type": "git", + "url": "git://github.com/logicalparadox/seed-filestore.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/seed-filestore/0.0.1", + "0.0.2": "http://registry.npmjs.org/seed-filestore/0.0.2", + "0.0.3": "http://registry.npmjs.org/seed-filestore/0.0.3", + "0.0.4": "http://registry.npmjs.org/seed-filestore/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "b5412f5f3070065e8bccb5d46ba3205a7e436505", + "tarball": "http://registry.npmjs.org/seed-filestore/-/seed-filestore-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "615add26d93642b56448bb81baa705f7d29a59a8", + "tarball": "http://registry.npmjs.org/seed-filestore/-/seed-filestore-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "caab01666447cbf56d231508a17f36f2c401d87f", + "tarball": "http://registry.npmjs.org/seed-filestore/-/seed-filestore-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "636766758b85164dae7f152ae1ee29eb4eda1617", + "tarball": "http://registry.npmjs.org/seed-filestore/-/seed-filestore-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/seed-filestore/" + }, + "seedrandom": { + "name": "seedrandom", + "description": "Wrapper for seedrandom, which replaces Math.random with a version that can be seeded. Provides uid generation as well.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "lfdoherty", + "email": "lfdoherty@gmail.com" + } + ], + "time": { + "modified": "2011-07-12T06:47:37.849Z", + "created": "2011-07-12T06:47:37.329Z", + "0.1.0": "2011-07-12T06:47:37.849Z" + }, + "author": { + "name": "Liam Doherty" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/seedrandom/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "7ec8d95387d6a28a2d66a256760d674d63d3f6fe", + "tarball": "http://registry.npmjs.org/seedrandom/-/seedrandom-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/seedrandom/" + }, + "seek": { + "name": "seek", + "description": "search through a bunch of files", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "pvorb", + "email": "paul@vorb.de" + } + ], + "time": { + "modified": "2011-09-27T20:56:03.689Z", + "created": "2011-09-20T22:49:06.314Z", + "0.0.0": "2011-09-20T22:49:08.579Z", + "0.1.0": "2011-09-27T13:16:15.029Z", + "0.2.0": "2011-09-27T20:56:03.689Z" + }, + "author": { + "name": "Paul Vorbach", + "email": "paul@vorb.de", + "url": "http://vorb.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/pvorb/node-seek.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/seek/0.0.0", + "0.1.0": "http://registry.npmjs.org/seek/0.1.0", + "0.2.0": "http://registry.npmjs.org/seek/0.2.0" + }, + "dist": { + "0.0.0": { + "shasum": "aac0aacb01aeca17777bc046178fd7d3192c8e23", + "tarball": "http://registry.npmjs.org/seek/-/seek-0.0.0.tgz" + }, + "0.1.0": { + "shasum": "9ca910ca7ee0de06cd9fee64d6c46686564d39ed", + "tarball": "http://registry.npmjs.org/seek/-/seek-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "828fe28784c1168b32982b40ab56dab4a86214af", + "tarball": "http://registry.npmjs.org/seek/-/seek-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/seek/" + }, + "seep": { + "name": "seep", + "description": "High level widget & web application framework for Node.js", + "dist-tags": { + "latest": "0.0.1a" + }, + "maintainers": [ + { + "name": "jouni", + "email": "jouni@jounikoivuviita.com" + } + ], + "time": { + "modified": "2011-09-26T05:54:41.390Z", + "created": "2011-09-26T05:54:41.020Z", + "0.0.1a": "2011-09-26T05:54:41.390Z" + }, + "author": { + "name": "Jouni Koivuviita" + }, + "repository": { + "type": "git", + "url": "git://github.com/jounikoivuviita/Seep.git" + }, + "versions": { + "0.0.1a": "http://registry.npmjs.org/seep/0.0.1a" + }, + "dist": { + "0.0.1a": { + "shasum": "569ab0392d5bb850431a516340cb0f514aea8a13", + "tarball": "http://registry.npmjs.org/seep/-/seep-0.0.1a.tgz" + } + }, + "url": "http://registry.npmjs.org/seep/" + }, + "sel": { + "name": "sel", + "description": "Tiny, yet full-featured, selector library", + "dist-tags": { + "latest": "0.6.3" + }, + "maintainers": [ + { + "name": "amccollum", + "email": "amccollum+npm@gmail.com" + } + ], + "time": { + "modified": "2011-12-06T19:49:50.222Z", + "created": "2011-09-17T13:20:31.868Z", + "0.1.1": "2011-12-06T19:49:50.222Z", + "0.2.0": "2011-12-06T19:49:50.222Z", + "0.3.0": "2011-12-06T19:49:50.222Z", + "0.3.1": "2011-12-06T19:49:50.222Z", + "0.3.2": "2011-12-06T19:49:50.222Z", + "0.3.3": "2011-12-06T19:49:50.222Z", + "0.3.4": "2011-12-06T19:49:50.222Z", + "0.4.0": "2011-12-06T19:49:50.222Z", + "0.4.1": "2011-12-06T19:49:50.222Z", + "0.4.2": "2011-12-06T19:49:50.222Z", + "0.4.3": "2011-12-06T19:49:50.222Z", + "0.5.3": "2011-11-08T19:23:57.185Z", + "0.5.4": "2011-11-20T20:48:58.587Z", + "0.5.5": "2011-11-29T21:18:24.028Z", + "0.6.0": "2011-11-29T21:53:45.357Z", + "0.6.1": "2011-12-03T15:59:04.119Z", + "0.6.2": "2011-12-03T20:29:02.180Z", + "0.6.3": "2011-12-06T19:49:50.221Z" + }, + "author": { + "name": "Andrew McCollum", + "email": "amccollum@gmail.com" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/sel/0.1.1", + "0.2.0": "http://registry.npmjs.org/sel/0.2.0", + "0.3.0": "http://registry.npmjs.org/sel/0.3.0", + "0.3.1": "http://registry.npmjs.org/sel/0.3.1", + "0.3.2": "http://registry.npmjs.org/sel/0.3.2", + "0.3.3": "http://registry.npmjs.org/sel/0.3.3", + "0.3.4": "http://registry.npmjs.org/sel/0.3.4", + "0.4.0": "http://registry.npmjs.org/sel/0.4.0", + "0.4.1": "http://registry.npmjs.org/sel/0.4.1", + "0.4.2": "http://registry.npmjs.org/sel/0.4.2", + "0.4.3": "http://registry.npmjs.org/sel/0.4.3", + "0.5.3": "http://registry.npmjs.org/sel/0.5.3", + "0.5.4": "http://registry.npmjs.org/sel/0.5.4", + "0.5.5": "http://registry.npmjs.org/sel/0.5.5", + "0.6.0": "http://registry.npmjs.org/sel/0.6.0", + "0.6.1": "http://registry.npmjs.org/sel/0.6.1", + "0.6.2": "http://registry.npmjs.org/sel/0.6.2", + "0.6.3": "http://registry.npmjs.org/sel/0.6.3" + }, + "dist": { + "0.1.1": { + "shasum": "41717927d5ac32e7087dfd9d7c9c38ed95dbddf8", + "tarball": "http://registry.npmjs.org/sel/-/sel-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "948bf0043c7e259497382546be29338ba7610f42", + "tarball": "http://registry.npmjs.org/sel/-/sel-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "c24a0f497a4305908baf65a2c6a0d512d6a79ddc", + "tarball": "http://registry.npmjs.org/sel/-/sel-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "0b8c039a6e1be33d9f00550b4301583369d64e36", + "tarball": "http://registry.npmjs.org/sel/-/sel-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "976061ee3f45eb1cd94f69bc48eedaab1f13e77b", + "tarball": "http://registry.npmjs.org/sel/-/sel-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "4ae4e9fc7c333115a500ac7b95ff295e3f10d52e", + "tarball": "http://registry.npmjs.org/sel/-/sel-0.3.3.tgz" + }, + "0.3.4": { + "shasum": "8d560103a630ba12bd709122509cde5e8a850913", + "tarball": "http://registry.npmjs.org/sel/-/sel-0.3.4.tgz" + }, + "0.4.0": { + "shasum": "65d56cec14b38a8d1a216a2742c9b52e7fbaf94a", + "tarball": "http://registry.npmjs.org/sel/-/sel-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "9b289fbf3cc24aa6d20b0cc39e9699fa559dbd44", + "tarball": "http://registry.npmjs.org/sel/-/sel-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "8f10ec254b5aabb7a1b6769806a7a62f549a2931", + "tarball": "http://registry.npmjs.org/sel/-/sel-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "3ffe29d470fc55a0ff1ac2d6facdc00f1d21027f", + "tarball": "http://registry.npmjs.org/sel/-/sel-0.4.3.tgz" + }, + "0.5.3": { + "shasum": "1738f1cc0619fcaab05b1ff3f77cf2056360421e", + "tarball": "http://registry.npmjs.org/sel/-/sel-0.5.3.tgz" + }, + "0.5.4": { + "shasum": "f19a1454a89d60f75ae79e2b7eb9383b759d528e", + "tarball": "http://registry.npmjs.org/sel/-/sel-0.5.4.tgz" + }, + "0.5.5": { + "shasum": "f264a0830e89abb6dd1b53d5735bbf02d45d84f6", + "tarball": "http://registry.npmjs.org/sel/-/sel-0.5.5.tgz" + }, + "0.6.0": { + "shasum": "245a3edf0f9521edc003121af1e5309126794304", + "tarball": "http://registry.npmjs.org/sel/-/sel-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "7eb5b5685a677d1f5895127d0a15f1fa7867bba2", + "tarball": "http://registry.npmjs.org/sel/-/sel-0.6.1.tgz" + }, + "0.6.2": { + "shasum": "41bca2c76435e61abbeb2a30fc6ed5807bf4a935", + "tarball": "http://registry.npmjs.org/sel/-/sel-0.6.2.tgz" + }, + "0.6.3": { + "shasum": "71a2230199c9974aefb19d8e358222d91acb6d40", + "tarball": "http://registry.npmjs.org/sel/-/sel-0.6.3.tgz" + } + }, + "keywords": [ + "ender", + "css", + "selector engine", + "jquery" + ], + "url": "http://registry.npmjs.org/sel/" + }, + "select": { + "name": "select", + "description": "A new kind of database library", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "alexyoung", + "email": "alex@alexyoung.org" + } + ], + "time": { + "modified": "2011-07-05T21:45:51.554Z", + "created": "2011-05-26T20:35:04.625Z", + "0.1.0": "2011-05-26T20:35:05.232Z", + "0.1.1": "2011-07-05T21:45:51.554Z" + }, + "author": { + "name": "Alex R. Young", + "email": "alex@alexyoung.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/alexyoung/select.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/select/0.1.0", + "0.1.1": "http://registry.npmjs.org/select/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "f7673f0461236d3cdc4f991a34b45af53e0f197a", + "tarball": "http://registry.npmjs.org/select/-/select-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "297c0c930807e826408e41df62233fa48eb2583d", + "tarball": "http://registry.npmjs.org/select/-/select-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/select/" + }, + "selenium": { + "name": "selenium", + "description": "Selenium in an npm package", + "dist-tags": { + "latest": "2.0.0" + }, + "maintainers": [ + { + "name": "didit-tech", + "email": "development@didit.com" + } + ], + "time": { + "modified": "2011-08-26T15:23:03.145Z", + "created": "2011-08-26T15:23:02.943Z", + "2.0.0": "2011-08-26T15:23:03.145Z" + }, + "author": { + "name": "Didit Tech", + "email": "developers@didit.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/didit-tech/NPM-Selenium.git" + }, + "versions": { + "2.0.0": "http://registry.npmjs.org/selenium/2.0.0" + }, + "dist": { + "2.0.0": { + "shasum": "9902f2eb61f460dbf1a1aa860458c01019ea83b3", + "tarball": "http://registry.npmjs.org/selenium/-/selenium-2.0.0.tgz" + } + }, + "keywords": [ + "bdd", + "tdd", + "selenium" + ], + "url": "http://registry.npmjs.org/selenium/" + }, + "selfish": { + "name": "selfish", + "description": "Class-free, pure prototypal inheritance", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "gozala", + "email": "rfobic@gmail.com" + } + ], + "time": { + "modified": "2011-08-14T15:18:02.387Z", + "created": "2011-06-15T23:20:04.787Z", + "0.0.1": "2011-06-15T23:20:05.806Z", + "0.0.2": "2011-06-15T23:48:48.450Z", + "0.0.3": "2011-06-21T16:58:46.515Z", + "0.1.0": "2011-06-27T17:00:10.191Z", + "0.2.0": "2011-06-28T11:06:19.259Z", + "0.2.1": "2011-06-28T11:10:12.533Z", + "0.2.2": "2011-07-03T19:11:22.290Z", + "0.3.0": "2011-08-14T15:18:02.387Z" + }, + "author": { + "name": "Irakli Gozalishvili", + "email": "rfobic@gmail.com", + "url": "http://jeditoolkit.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Gozala/selfish.git", + "web": "https://github.com/Gozala/selfish" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/selfish/0.0.1", + "0.0.2": "http://registry.npmjs.org/selfish/0.0.2", + "0.0.3": "http://registry.npmjs.org/selfish/0.0.3", + "0.1.0": "http://registry.npmjs.org/selfish/0.1.0", + "0.2.0": "http://registry.npmjs.org/selfish/0.2.0", + "0.2.1": "http://registry.npmjs.org/selfish/0.2.1", + "0.2.2": "http://registry.npmjs.org/selfish/0.2.2", + "0.3.0": "http://registry.npmjs.org/selfish/0.3.0" + }, + "dist": { + "0.0.1": { + "shasum": "3f8c8519b56f86fe83cc90330389c78da67f5368", + "tarball": "http://registry.npmjs.org/selfish/-/selfish-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "0b74e68e0436b17d1514a7605a27033f799c993a", + "tarball": "http://registry.npmjs.org/selfish/-/selfish-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "0557753649141a11761845214ac533f25fa6a895", + "tarball": "http://registry.npmjs.org/selfish/-/selfish-0.0.3.tgz" + }, + "0.1.0": { + "shasum": "41c1d009c5813ab1c4306eda92aaafa26a265b58", + "tarball": "http://registry.npmjs.org/selfish/-/selfish-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "e161887e89726995e21fc3787ee2186b13304ead", + "tarball": "http://registry.npmjs.org/selfish/-/selfish-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "639f64c7db878c280e63421572ddfd5a71ac940f", + "tarball": "http://registry.npmjs.org/selfish/-/selfish-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "7f854e5aa20ed6dfdd89f680ac7d71563613aa5f", + "tarball": "http://registry.npmjs.org/selfish/-/selfish-0.2.2.tgz" + }, + "0.3.0": { + "shasum": "b57158c4dd5bbc5cc42a4ab8929e428cd9ec4f89", + "tarball": "http://registry.npmjs.org/selfish/-/selfish-0.3.0.tgz" + } + }, + "keywords": [ + "oop", + "inheritance", + "prototype", + "class", + "micro", + "class-free" + ], + "url": "http://registry.npmjs.org/selfish/" + }, + "selleck": { + "name": "selleck", + "description": "Generator for YUI's Handlebars-based user documentation.", + "dist-tags": { + "latest": "0.1.9" + }, + "maintainers": [ + { + "name": "rgrove", + "email": "ryan@wonko.com" + } + ], + "time": { + "modified": "2011-12-12T18:57:14.948Z", + "created": "2011-03-09T00:41:05.513Z", + "0.1.0": "2011-03-09T00:41:05.884Z", + "0.1.1": "2011-03-11T23:54:09.613Z", + "0.1.2": "2011-04-28T19:49:48.809Z", + "0.1.3": "2011-04-29T22:30:53.914Z", + "0.1.4": "2011-06-29T00:29:26.687Z", + "0.1.5": "2011-07-29T22:16:26.463Z", + "0.1.6": "2011-09-27T16:57:24.158Z", + "0.1.7": "2011-11-18T21:19:14.217Z", + "0.1.8": "2011-12-12T18:24:49.739Z", + "0.1.9": "2011-12-12T18:57:14.948Z" + }, + "author": { + "name": "Ryan Grove", + "email": "ryan@wonko.com", + "url": "http://wonko.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/rgrove/selleck.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/selleck/0.1.0", + "0.1.1": "http://registry.npmjs.org/selleck/0.1.1", + "0.1.2": "http://registry.npmjs.org/selleck/0.1.2", + "0.1.3": "http://registry.npmjs.org/selleck/0.1.3", + "0.1.4": "http://registry.npmjs.org/selleck/0.1.4", + "0.1.5": "http://registry.npmjs.org/selleck/0.1.5", + "0.1.6": "http://registry.npmjs.org/selleck/0.1.6", + "0.1.7": "http://registry.npmjs.org/selleck/0.1.7", + "0.1.8": "http://registry.npmjs.org/selleck/0.1.8", + "0.1.9": "http://registry.npmjs.org/selleck/0.1.9" + }, + "dist": { + "0.1.0": { + "shasum": "edf53e4ec281e664a8523fe829b70dc23a4cbc8f", + "tarball": "http://registry.npmjs.org/selleck/-/selleck-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "983e18f901f5d4842318587e4fc3bb58e2dcdb07", + "tarball": "http://registry.npmjs.org/selleck/-/selleck-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "6dcc6883519ecadbc670e0024b8ad0c585c259e1", + "tarball": "http://registry.npmjs.org/selleck/-/selleck-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "891a33da05a192fe789fe13353533d64988058e7", + "tarball": "http://registry.npmjs.org/selleck/-/selleck-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "2c4b983ea8c3caffd8f51efdc5414162ccf95c18", + "tarball": "http://registry.npmjs.org/selleck/-/selleck-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "ed4472845380b80bc04c8ade6f744f1cb90f91e7", + "tarball": "http://registry.npmjs.org/selleck/-/selleck-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "ccdd994b5d814bef985154b21cea8903d34777b1", + "tarball": "http://registry.npmjs.org/selleck/-/selleck-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "b409c6dff519563614ac0fef98b8445ce89ffa22", + "tarball": "http://registry.npmjs.org/selleck/-/selleck-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "0dc0318d5ae4e0d50c71fbaa0310ad050fa9b89a", + "tarball": "http://registry.npmjs.org/selleck/-/selleck-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "cfc38d737e3733dfd5cb4e62f9d5fe6cbeed17a1", + "tarball": "http://registry.npmjs.org/selleck/-/selleck-0.1.9.tgz" + } + }, + "keywords": [ + "yui", + "handlebars", + "mustache", + "docs", + "documentation" + ], + "url": "http://registry.npmjs.org/selleck/" + }, + "semver": { + "name": "semver", + "description": "The semantic version parser used by npm.", + "dist-tags": { + "latest": "1.0.12" + }, + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "time": { + "modified": "2011-11-18T19:04:02.511Z", + "created": "2011-02-12T00:20:25.690Z", + "1.0.0": "2011-02-12T00:20:26.037Z", + "1.0.1": "2011-02-18T17:15:49.775Z", + "1.0.2": "2011-03-22T21:27:35.218Z", + "1.0.3": "2011-04-19T23:29:13.670Z", + "1.0.4": "2011-04-21T07:32:11.512Z", + "1.0.5": "2011-05-03T23:11:54.939Z", + "1.0.6": "2011-05-21T00:09:47.724Z", + "1.0.7": "2011-06-17T16:26:07.324Z", + "1.0.8": "2011-06-27T21:58:51.266Z", + "1.0.9": "2011-07-20T21:38:13.081Z", + "1.0.10": "2011-10-04T01:51:37.206Z", + "1.0.11": "2011-11-15T16:40:04.239Z", + "1.0.12": "2011-11-18T19:04:02.511Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/isaacs/node-semver.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/semver/1.0.0", + "1.0.1": "http://registry.npmjs.org/semver/1.0.1", + "1.0.2": "http://registry.npmjs.org/semver/1.0.2", + "1.0.3": "http://registry.npmjs.org/semver/1.0.3", + "1.0.4": "http://registry.npmjs.org/semver/1.0.4", + "1.0.5": "http://registry.npmjs.org/semver/1.0.5", + "1.0.6": "http://registry.npmjs.org/semver/1.0.6", + "1.0.7": "http://registry.npmjs.org/semver/1.0.7", + "1.0.8": "http://registry.npmjs.org/semver/1.0.8", + "1.0.9": "http://registry.npmjs.org/semver/1.0.9", + "1.0.10": "http://registry.npmjs.org/semver/1.0.10", + "1.0.11": "http://registry.npmjs.org/semver/1.0.11", + "1.0.12": "http://registry.npmjs.org/semver/1.0.12" + }, + "dist": { + "1.0.0": { + "shasum": "11f18a0c08ed21c988fc2b0257f1951969816615", + "tarball": "http://registry.npmjs.org/semver/-/semver-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "93b90b9a3e00c7a143f2e49f6e2b32fd72237cdb", + "tarball": "http://registry.npmjs.org/semver/-/semver-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "57e4e1460c0f1abc2c2c6273457abc04e309706c", + "tarball": "http://registry.npmjs.org/semver/-/semver-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "453f40adadf8ce23ff4eb937972c6a007d52ef0d", + "tarball": "http://registry.npmjs.org/semver/-/semver-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "41c0da40706d0defe763998281fc616a2a5d1e46", + "tarball": "http://registry.npmjs.org/semver/-/semver-1.0.4.tgz" + }, + "1.0.5": { + "shasum": "7abca9337d64408ec2d42ffd974858c04dca3bdb", + "tarball": "http://registry.npmjs.org/semver/-/semver-1.0.5.tgz" + }, + "1.0.6": { + "shasum": "697b6bff4b3eca86f35dc037c9ab2f1eb7af1a9e", + "tarball": "http://registry.npmjs.org/semver/-/semver-1.0.6.tgz" + }, + "1.0.7": { + "shasum": "668e127e81e81e0954d25a6d2c1cb20a1538b2e3", + "tarball": "http://registry.npmjs.org/semver/-/semver-1.0.7.tgz" + }, + "1.0.8": { + "shasum": "8a78a9bfad863a0660683c33c91f08b6cd2cfa98", + "tarball": "http://registry.npmjs.org/semver/-/semver-1.0.8.tgz" + }, + "1.0.9": { + "shasum": "d053046aea88e25b488ecbc0a8c9deda03db8a9c", + "tarball": "http://registry.npmjs.org/semver/-/semver-1.0.9.tgz" + }, + "1.0.10": { + "shasum": "cfa5a85d95888c75b4a9275bda7491568d8cfd20", + "tarball": "http://registry.npmjs.org/semver/-/semver-1.0.10.tgz" + }, + "1.0.11": { + "shasum": "1bd01c550d477cbf9a839b02269c4011ce147992", + "tarball": "http://registry.npmjs.org/semver/-/semver-1.0.11.tgz" + }, + "1.0.12": { + "shasum": "4686f056e5894a9cba708adeabc2c49dada90778", + "tarball": "http://registry.npmjs.org/semver/-/semver-1.0.12.tgz" + } + }, + "url": "http://registry.npmjs.org/semver/" + }, + "sendgrid": { + "name": "sendgrid", + "description": "send emails from node.js through sendgrid", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "bartt", + "email": "bart@zazengo.com" + } + ], + "author": { + "name": "Dylan Clendenin", + "url": "deepthawtz" + }, + "repository": { + "type": "git", + "url": "http://github.com/zazengo/node_sendgrid.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/sendgrid/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "8b3e8a692780068b4f834eeadcfcc1311331d30d", + "tarball": "http://registry.npmjs.org/sendgrid/-/sendgrid-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/sendgrid/" + }, + "sendgrid-api": { + "name": "sendgrid-api", + "description": "Wrapper for the Sendgrid API", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "gteodoru", + "email": "gabriel@scopely.com" + } + ], + "time": { + "modified": "2011-08-30T17:12:06.143Z", + "created": "2011-08-25T01:25:31.787Z", + "0.0.2": "2011-08-25T01:25:32.917Z", + "0.0.3": "2011-08-30T17:12:06.143Z" + }, + "author": { + "name": "Gabriel Teodoru", + "email": "gabriel@scopely.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/scopely/node-sendgrid.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/sendgrid-api/0.0.2", + "0.0.3": "http://registry.npmjs.org/sendgrid-api/0.0.3" + }, + "dist": { + "0.0.2": { + "shasum": "5998776190cf81eab645a8bd65a3b5f51312cfbd", + "tarball": "http://registry.npmjs.org/sendgrid-api/-/sendgrid-api-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "def12662459cdbf0df9f8de1b6c2ef6af73f9e6c", + "tarball": "http://registry.npmjs.org/sendgrid-api/-/sendgrid-api-0.0.3.tgz" + } + }, + "keywords": [ + "sendgrid", + "smtp", + "email" + ], + "url": "http://registry.npmjs.org/sendgrid-api/" + }, + "sendgrid-web": { + "name": "sendgrid-web", + "description": "Easily send emails with sendgrid and node.js", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "jesusabdullah", + "email": "josh.holbrook@gmail.com" + } + ], + "time": { + "modified": "2011-09-01T17:45:37.177Z", + "created": "2011-09-01T17:45:35.641Z", + "0.0.0": "2011-09-01T17:45:37.177Z" + }, + "author": { + "name": "Joshua Holbrook", + "email": "josh.holbrook@gmail.com", + "url": "http://jesusabdullah.github.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:jesusabdullah/node-sendgrid-web.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/sendgrid-web/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "45d11cef71efa5b13f6d5e0c36bf08d14a5c0a9a", + "tarball": "http://registry.npmjs.org/sendgrid-web/-/sendgrid-web-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/sendgrid-web/" + }, + "sensejs": { + "name": "sensejs", + "description": "SenseJS - Ruby-on-Rails inspired MVC web framework, fully ExpressJS compatible", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "alexferreira", + "email": "alex@dsol.com.br" + } + ], + "time": { + "modified": "2011-11-14T17:34:39.743Z", + "created": "2011-10-07T04:56:04.020Z", + "0.1.0": "2011-10-07T04:56:05.840Z", + "0.1.1": "2011-10-10T02:18:34.072Z", + "0.1.2": "2011-10-20T02:48:59.081Z", + "0.1.3": "2011-11-14T17:22:44.909Z" + }, + "author": { + "name": "Alex Ferreira" + }, + "repository": { + "type": "git", + "url": "git@bitbucket.org:sense8/sensejs.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/sensejs/0.1.0", + "0.1.1": "http://registry.npmjs.org/sensejs/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "5415b8e9201443f10b2466d143bce3cfb3447fda", + "tarball": "http://registry.npmjs.org/sensejs/-/sensejs-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "966b284dc5011ec6e768a914273cbca375ab80e3", + "tarball": "http://registry.npmjs.org/sensejs/-/sensejs-0.1.1.tgz" + } + }, + "keywords": [ + "mvc", + "web-framework", + "rails", + "ruby-on-rails", + "express", + "sense" + ], + "url": "http://registry.npmjs.org/sensejs/" + }, + "SenseJs": { + "name": "SenseJs", + "description": "SenseJS - Ruby-on-Rails inspired MVC web framework, fully ExpressJS compatible", + "dist-tags": { + "latest": "0.1.3" + }, + "readme": null, + "maintainers": [ + { + "name": "alexferreira", + "email": "alex@dsol.com.br" + } + ], + "time": { + "modified": "2011-11-27T02:58:26.285Z", + "created": "2011-11-27T02:58:24.159Z", + "0.1.3": "2011-11-27T02:58:26.285Z" + }, + "author": { + "name": "Alex Ferreira" + }, + "versions": { + "0.1.3": "http://registry.npmjs.org/SenseJs/0.1.3" + }, + "dist": { + "0.1.3": { + "shasum": "04cc0c3eeb8ed895cf641901533cd72665d368b8", + "tarball": "http://registry.npmjs.org/SenseJs/-/SenseJs-0.1.3.tgz" + } + }, + "keywords": [ + "mvc", + "web-framework", + "rails", + "ruby-on-rails", + "express", + "sense" + ], + "url": "http://registry.npmjs.org/SenseJs/" + }, + "SenseOrm": { + "name": "SenseOrm", + "description": "ORM for every database: mongodb, mysql, redis", + "dist-tags": { + "latest": "0.0.4" + }, + "readme": "## About\n\nSenseOrm is cross-db ORM, providing **common interface** to access most popular database formats.\nCurrently supported are: mongodb, redis, mysql and js-memory-storage. You can add your favorite database adapter, checkout one of the existing adapters to learn how, it's super-easy, I guarantee.\n\n## Installation\n\n npm install senseorm\n\n## Usage\n\n var Schema = require('senseorm').Schema;\n var s = new Schema('mongoose');\n // define models\n var Post = schema.define('Post', {\n title: { type: String, length: 255 },\n content: { type: Schema.Text },\n date: { type: Date, default: Date.now },\n published: { type: Boolean, default: false }\n });\n // simplier way to describe model\n var User = schema.define('User', {\n name: String,\n bio: Schema.Text,\n approved: Boolean,\n joinedAt: Date,\n age: Number\n });\n\n // setup relationships\n User.hasMany(Post, {as: 'posts', foreignKey: 'user_id'});\n // creates instance methods:\n // user.posts(conds)\n // user.posts.build(data) // like new Post({user_id: user.id});\n // user.posts.create(data) // build and save\n\n Post.belongsTo(User, {as: 'author', foreignKey: 'user_id'});\n // creates instance methods:\n // post.author(callback) -- getter when called with function\n // post.author() -- sync getter when called without params\n // post.author(user) -- setter when called with object\n\n s.automigrate(); // required only for mysql NOTE: it will drop User and Post tables\n\n // work with models:\n var user = new User;\n user.save(function (err) {\n var post = user.posts.build({title: 'Hello world'});\n post.save(console.log);\n });\n\n // Common API methods\n\n // just instantiate model\n new Post\n // save model (of course async)\n Post.create(cb);\n // all posts\n Post.all(cb)\n // all posts by user\n Post.all({userId: user.id});\n // the same as prev\n user.posts(cb)\n // same as new Post({userId: user.id});\n user.posts.build\n // save as Post.create({userId: user.id}, cb);\n user.posts.create(cb)\n // find instance by id\n User.find(1, cb)\n // count instances\n User.count(cb)\n // destroy instance\n user.destroy(cb);\n // destroy all instances\n User.destroyAll(cb);\n\n // Setup validations\n User.validatesPresenceOf('name', 'email')\n User.validatesLengthOf('password', {min: 5, message: {min: 'Password is too short'}});\n User.validatesInclusionOf('gender', {in: ['male', 'female']});\n User.validatesExclusionOf('domain', {in: ['www', 'billing', 'admin']});\n User.validatesNumericalityOf('age', {int: true});\n\n user.isValid() // false\n user.errors // hash of errors {attr: [errmessage, errmessage, ...], attr: ...}\n\nRead the tests for usage examples: ./test/common_test.js\n\n## Running tests\n\nAll tests are written using nodeunit:\n\n nodeunit test/common_test.js\n\nIf you run this line, of course it will fall, because it requres different databases to be up and running, but you can use js-memory-engine out of box! Specify ONLY env var:\n\n ONLY=memory nodeunit test/common_test.js\n\nof course, if you have mongoose running, you can run\n\n ONLY=mongoose nodeunit test/common_test.js\n\n## Package structure\n\nNow all common logic described in `./lib/*.js`, and database-specific stuff in `./lib/adapters/*.js`. It's super-tiny, right?\n\n### Common:\n\n+ transparent interface to APIs\n+ -before and -after hooks on save, update, destroy\n+ scopes\n+ default values\n+ more relationships stuff\n+ docs\n\n### Databases:\n\n+ low-level mysql\n+ postgres\n+ mongodb\n+ redis\n+ js-memory-storage\n\n", + "maintainers": [ + { + "name": "alexferreira", + "email": "alex@dsol.com.br" + } + ], + "time": { + "modified": "2011-11-26T14:54:41.934Z", + "created": "2011-11-14T17:22:22.457Z", + "0.0.2": "2011-11-14T17:22:24.679Z", + "0.0.3": "2011-11-18T15:26:08.825Z", + "0.0.4": "2011-11-26T14:54:41.934Z" + }, + "author": { + "name": "Alex Ferreira" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/SenseOrm/0.0.2", + "0.0.3": "http://registry.npmjs.org/SenseOrm/0.0.3", + "0.0.4": "http://registry.npmjs.org/SenseOrm/0.0.4" + }, + "dist": { + "0.0.2": { + "shasum": "1aa668b216888f77b98217bae80083df4b398f36", + "tarball": "http://registry.npmjs.org/SenseOrm/-/SenseOrm-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "94c44536a4c8233c4bfaf8d05bde190a74f05da6", + "tarball": "http://registry.npmjs.org/SenseOrm/-/SenseOrm-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "da455fd4d4439e3a7b5ad0b7ea3613e3d18b5490", + "tarball": "http://registry.npmjs.org/SenseOrm/-/SenseOrm-0.0.4.tgz" + } + }, + "keywords": [ + "orm", + "mongodb", + "mysql", + "redis" + ], + "url": "http://registry.npmjs.org/SenseOrm/" + }, + "sentinel": { + "name": "sentinel", + "description": "Watch source files for changes and processes them accordingly", + "dist-tags": { + "latest": "1.0.1" + }, + "readme": "# sentinel\n\nThis program, when configured correctly, will watch your source files and run them through other programs when they are modified. It was intended for [LESS](http://lesscss.org/) and JavaScript files although can be set up to run anything you want. sentinel is built to run on [node.js](http://nodejs.org/).\n\nAt the moment the only way to stop it is with `Ctrl + C`. I am planning on implementing some kind of interface so that you can prompt things like reloading the config, or forcing the processing of a file. I would also like to add regular expression file matching.\n\n## Installation\n\nYou can either download this repository or use [npm](http://npmjs.org/). I strongly recommend npm. To install it simply type:\n\n sudo npm install sentinel -g\n\nThat's it. Done.\n\n## Configuration\n\nLike `make`, sentinel looks in your current directory for a config file. This file should be named `sentinel.json`. It will also look for a global config in your home directory called `.sentinel.json`. The local one in your current folder will overwrite things set in the global one via inheritance.\n\nAs you can tell from the name, the configuration is written in JSON, lets have a look at a very basic one that runs a JavaScript file through JSHint.\n\n {\n \"files\": [\n {\n \"path\": \"assets/javascript/main.js\",\n \"processor\": \"jshint\"\n }\n ],\n \"processors\": {\n \"jshint\": \"jshint {{path}}\"\n }\n }\n\nLets walk through this. We have a fairly simple JSON object containing two top level properties, `files` and `processors`. Files is an array of objects that contain data about your source files. Each of the files values are actually arguments, this is because they replace their associated value in the processor string. So if you write `{{path}}` in your processor it will be replaced with the path value. The processor value can either be a string or an array of strings, these let sentinel know what processor you wish to run the file through.\n\nThe processors object is a list of key value pairs containing the name of the processor and a small bash script to run your script to. You can utilise any passed values in a file object by simply wrapping the name of the value in double curly braces (`{{value name}}`). So you can use the path value as an input and output as the destination.\n\nIf you wanted to, you could copy this (less the files array) into `~/.sentinel.json` and have the JSHint processor available in every project.\n\n## Running sentinel\n\nTo run sentinel simply navigate your terminal to the directory containing your configuration and run `sentinel`. It will read your global config file first and then the one inside the directory. It will watch your files for changes and run them through their processors when it needs to.\n\nThere are a few command line arguments you can use too.\n\n * --verbose / -v: Show verbose output, so information will be logged to the console when files change for example.\n * --process file / -p file: Does not watch any files but instantly processes the file you specify, just like make. The file name must match one in the config exactly.\n\n## Example configurations\n\nSimply drop these into the `processors` section of your global config. You can find it in `~/.sentinel.json`. Here is a template you can use.\n\n {\n \"processors\": {\n \n }\n }\n\nRemember to add commas after each processor! Please make sure you are using valid JSON. If something is not working, run with the `-v` parameter to see information regarding errors. The following lines use external packages installed via [npm](http://npmjs.org/).\n\n * \"less\": \"lessc {{path}} -x -o {{output}}\"\n * \"jshint\": \"jshint {{path}}\"\n * \"uglifyjs\": \"uglifyjs -o {{output}} {{path}}\"\n\n## Licence\n\nsentinel - Watch source files for changes and processes them accordingly\n\nCopyright (C) 2011 Oliver Caldwell\n\nThis program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation, either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program. If not, see .\n\n## Author\n\nWritten by [Oliver Caldwell](http://olivercaldwell.co.uk).", + "maintainers": [ + { + "name": "olivercaldwell", + "email": "olliec87@gmail.com" + } + ], + "time": { + "modified": "2011-12-11T12:23:15.785Z", + "created": "2011-11-14T14:27:24.925Z", + "1.0.0": "2011-11-14T14:27:26.392Z", + "1.0.1": "2011-12-11T12:23:15.785Z" + }, + "author": { + "name": "Oliver Caldwell", + "email": "olliec87@gmail.com", + "url": "http://olivercaldwell.co.uk/" + }, + "repository": { + "type": "git", + "url": "git://github.com/Wolfy87/sentinel.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/sentinel/1.0.0", + "1.0.1": "http://registry.npmjs.org/sentinel/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "7e6abc17c8a5930133cf32a46e8a905839435e33", + "tarball": "http://registry.npmjs.org/sentinel/-/sentinel-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "57977892a06f4dee61d5000924d7e76e4815d4b4", + "tarball": "http://registry.npmjs.org/sentinel/-/sentinel-1.0.1.tgz" + } + }, + "keywords": [ + "build", + "automation" + ], + "url": "http://registry.npmjs.org/sentinel/" + }, + "sentry": { + "name": "sentry", + "description": "Watch files (using a path, wildcards, or a regex) and execute a function or shell command.", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "craigspaeth", + "email": "craigspaeth@gmail.com" + } + ], + "time": { + "modified": "2011-09-21T16:18:32.233Z", + "created": "2011-09-20T21:45:07.702Z", + "0.1.0": "2011-09-20T21:45:07.859Z", + "0.1.1": "2011-09-20T22:39:45.407Z", + "0.1.2": "2011-09-21T16:18:32.233Z" + }, + "author": { + "name": "Craig Spaeth", + "email": "craigspaeth@gmail.com", + "url": "http://craigspaeth.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/craigspaeth/sentry.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/sentry/0.1.0", + "0.1.1": "http://registry.npmjs.org/sentry/0.1.1", + "0.1.2": "http://registry.npmjs.org/sentry/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "7c39ba8a2ccd3d7b313411fe5818a029a7c7d7b8", + "tarball": "http://registry.npmjs.org/sentry/-/sentry-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "64d61e2692b7c781e69343748db6f59931d8a6ce", + "tarball": "http://registry.npmjs.org/sentry/-/sentry-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "67461953025bb648433fbb1d607a78a182570714", + "tarball": "http://registry.npmjs.org/sentry/-/sentry-0.1.2.tgz" + } + }, + "keywords": [ + "watch", + "watchr", + "guard", + "wildcards", + "recursive" + ], + "url": "http://registry.npmjs.org/sentry/" + }, + "septa": { + "name": "septa", + "description": "Get information about SEPTA trains, busses, and trolleys.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "jwalgran", + "email": "justin@walgran.com" + } + ], + "time": { + "modified": "2011-11-18T12:09:29.003Z", + "created": "2011-11-06T01:40:59.956Z", + "0.0.1": "2011-11-06T01:41:00.287Z", + "0.1.0": "2011-11-07T03:21:12.512Z", + "0.1.1": "2011-11-18T12:09:29.003Z" + }, + "author": { + "name": "Justin Walgran", + "email": "justin@walgran.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/jwalgran/septa.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/septa/0.0.1", + "0.1.0": "http://registry.npmjs.org/septa/0.1.0", + "0.1.1": "http://registry.npmjs.org/septa/0.1.1" + }, + "dist": { + "0.0.1": { + "shasum": "20c5840726670e10617bb865d40660667bfe94e2", + "tarball": "http://registry.npmjs.org/septa/-/septa-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "1e377acdf57bc99a3493ebd4ee4615fb31e32d28", + "tarball": "http://registry.npmjs.org/septa/-/septa-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "43399883e8b8fef2bf9f839a5025f1ee271eeefe", + "tarball": "http://registry.npmjs.org/septa/-/septa-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/septa/" + }, + "seq": { + "name": "seq", + "description": "Chainable asynchronous flow control with sequential and parallel primitives and pipeline-style error handling", + "dist-tags": { + "latest": "0.3.5" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "repository": { + "type": "git", + "url": "git://github.com/substack/node-seq.git" + }, + "time": { + "modified": "2011-09-10T04:56:36.550Z", + "created": "2010-12-21T04:30:07.130Z", + "0.0.1": "2010-12-21T04:30:07.130Z", + "0.0.2": "2010-12-21T04:30:07.130Z", + "0.0.3": "2010-12-21T04:30:07.130Z", + "0.0.4": "2010-12-21T04:30:07.130Z", + "0.0.6": "2010-12-21T04:30:07.130Z", + "0.0.7": "2010-12-21T04:30:07.130Z", + "0.0.8": "2010-12-21T04:30:07.130Z", + "0.0.9": "2010-12-21T04:30:07.130Z", + "0.0.10": "2010-12-21T04:30:07.130Z", + "0.0.11": "2010-12-21T04:30:07.130Z", + "0.0.12": "2010-12-21T04:30:07.130Z", + "0.0.13": "2010-12-21T04:30:07.130Z", + "0.1.0": "2010-12-21T04:30:07.130Z", + "0.1.1": "2010-12-21T08:57:00.239Z", + "0.1.2": "2011-01-06T00:28:19.523Z", + "0.1.3": "2011-01-07T01:34:42.665Z", + "0.1.4": "2011-01-10T04:11:22.207Z", + "0.1.5": "2011-01-12T03:27:09.754Z", + "0.1.6": "2011-01-16T04:04:56.761Z", + "0.1.7": "2011-01-18T02:55:22.670Z", + "0.1.8": "2011-02-14T07:54:18.240Z", + "0.2.0": "2011-02-18T12:28:50.967Z", + "0.2.1": "2011-02-27T03:52:15.014Z", + "0.2.2": "2011-03-28T14:52:06.621Z", + "0.2.3": "2011-03-28T18:53:07.392Z", + "0.2.4": "2011-04-14T03:47:24.572Z", + "0.2.5": "2011-05-04T21:23:53.650Z", + "0.3.0": "2011-06-04T09:36:52.093Z", + "0.3.1": "2011-06-07T23:07:50.983Z", + "0.3.2": "2011-06-13T09:39:53.118Z", + "0.3.3": "2011-06-15T04:57:54.360Z", + "0.3.5": "2011-09-10T04:56:36.550Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/seq/0.0.1", + "0.0.2": "http://registry.npmjs.org/seq/0.0.2", + "0.0.3": "http://registry.npmjs.org/seq/0.0.3", + "0.0.4": "http://registry.npmjs.org/seq/0.0.4", + "0.0.6": "http://registry.npmjs.org/seq/0.0.6", + "0.0.7": "http://registry.npmjs.org/seq/0.0.7", + "0.0.8": "http://registry.npmjs.org/seq/0.0.8", + "0.0.9": "http://registry.npmjs.org/seq/0.0.9", + "0.0.10": "http://registry.npmjs.org/seq/0.0.10", + "0.0.11": "http://registry.npmjs.org/seq/0.0.11", + "0.0.12": "http://registry.npmjs.org/seq/0.0.12", + "0.0.13": "http://registry.npmjs.org/seq/0.0.13", + "0.1.0": "http://registry.npmjs.org/seq/0.1.0", + "0.1.1": "http://registry.npmjs.org/seq/0.1.1", + "0.1.2": "http://registry.npmjs.org/seq/0.1.2", + "0.1.3": "http://registry.npmjs.org/seq/0.1.3", + "0.1.4": "http://registry.npmjs.org/seq/0.1.4", + "0.1.5": "http://registry.npmjs.org/seq/0.1.5", + "0.1.6": "http://registry.npmjs.org/seq/0.1.6", + "0.1.7": "http://registry.npmjs.org/seq/0.1.7", + "0.1.8": "http://registry.npmjs.org/seq/0.1.8", + "0.2.0": "http://registry.npmjs.org/seq/0.2.0", + "0.2.1": "http://registry.npmjs.org/seq/0.2.1", + "0.2.2": "http://registry.npmjs.org/seq/0.2.2", + "0.2.3": "http://registry.npmjs.org/seq/0.2.3", + "0.2.4": "http://registry.npmjs.org/seq/0.2.4", + "0.2.5": "http://registry.npmjs.org/seq/0.2.5", + "0.3.0": "http://registry.npmjs.org/seq/0.3.0", + "0.3.1": "http://registry.npmjs.org/seq/0.3.1", + "0.3.2": "http://registry.npmjs.org/seq/0.3.2", + "0.3.3": "http://registry.npmjs.org/seq/0.3.3", + "0.3.5": "http://registry.npmjs.org/seq/0.3.5" + }, + "dist": { + "0.0.1": { + "shasum": "b7ae90baaaf79b129a01272e94512b95ca878568", + "tarball": "http://registry.npmjs.org/seq/-/seq-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "2c00c3d34a6aa7ebb8751032b7b5ce8931ee8e5a", + "tarball": "http://registry.npmjs.org/seq/-/seq-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "ddb19d458b7802fdb4ad32097cf439cbf9f34c47", + "tarball": "http://registry.npmjs.org/seq/-/seq-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "9db0bbea1c5922b32c241be36c80fb30e5cbbdeb", + "tarball": "http://registry.npmjs.org/seq/-/seq-0.0.4.tgz" + }, + "0.0.6": { + "shasum": "15c579ef11adbcb6b9790a94466ff84d773f5ee6", + "tarball": "http://registry.npmjs.org/seq/-/seq-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "7ec4b23796b2c91b89a88cac86e0b8c0783bb584", + "tarball": "http://registry.npmjs.org/seq/-/seq-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "fcd0cf9df9838881760f46211e4a7311263ec6a7", + "tarball": "http://registry.npmjs.org/seq/-/seq-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "127133ee6b60b154c3dacc7f58947b6fbb620ac0", + "tarball": "http://registry.npmjs.org/seq/-/seq-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "932bc1f43f1551118e4c636b03536eef9f4ddb24", + "tarball": "http://registry.npmjs.org/seq/-/seq-0.0.10.tgz" + }, + "0.0.11": { + "shasum": "dea524091975749141aa7ad453536fcc521326c2", + "tarball": "http://registry.npmjs.org/seq/-/seq-0.0.11.tgz" + }, + "0.0.12": { + "shasum": "6d281fa8a7e95c96ba550a65db7da4f15185e738", + "tarball": "http://registry.npmjs.org/seq/-/seq-0.0.12.tgz" + }, + "0.0.13": { + "shasum": "9a7f366dba9955e3f8d4b2d69eb7d78fc3a22d61", + "tarball": "http://registry.npmjs.org/seq/-/seq-0.0.13.tgz" + }, + "0.1.0": { + "shasum": "3aa0646ea8d2eb861f9c39470ff8be10530571eb", + "tarball": "http://registry.npmjs.org/seq/-/seq-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "68eceec621053cd7570155e7062ce0dd6ac71581", + "tarball": "http://registry.npmjs.org/seq/-/seq-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "c74fa58b5c3b2905fa6f49a367491659fab7a9a4", + "tarball": "http://registry.npmjs.org/seq/-/seq-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "cf575ba87b3d59fba08c2c2c11d40c6dc1ca08bb", + "tarball": "http://registry.npmjs.org/seq/-/seq-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "5b3ed87ee6287038c789cbf274a7cfea3f40c901", + "tarball": "http://registry.npmjs.org/seq/-/seq-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "bd6efa916d09f9b29f13742c0c3adf09fb061908", + "tarball": "http://registry.npmjs.org/seq/-/seq-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "c6b8e6226ba1894a5b82be499ce36c4ccbbf8def", + "tarball": "http://registry.npmjs.org/seq/-/seq-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "48f5918e1db72b048b7ccadf56fc109758f2bd7a", + "tarball": "http://registry.npmjs.org/seq/-/seq-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "73a38673c4afe209a637479781bc21d4dffa5d79", + "tarball": "http://registry.npmjs.org/seq/-/seq-0.1.8.tgz" + }, + "0.2.0": { + "shasum": "8d2c1bdebad029da5dbba489090c0d92b173b594", + "tarball": "http://registry.npmjs.org/seq/-/seq-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "d750fe69fd7bd3f7c6bb094086f7bf11e3259822", + "tarball": "http://registry.npmjs.org/seq/-/seq-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "a823f6fddf20382c8273ea05fea5fc50a551f0f5", + "tarball": "http://registry.npmjs.org/seq/-/seq-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "c4056638acf7fbe0e5f91da5ced73468448dbc5a", + "tarball": "http://registry.npmjs.org/seq/-/seq-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "75c77039e054002a46c3f68aa5623e2c79d22c71", + "tarball": "http://registry.npmjs.org/seq/-/seq-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "853a707f3c463d2340378bbcbfb8e1ca2e27ba77", + "tarball": "http://registry.npmjs.org/seq/-/seq-0.2.5.tgz" + }, + "0.3.0": { + "shasum": "5728fefb08110adbdc5bb57456997e9bb84a3cbc", + "tarball": "http://registry.npmjs.org/seq/-/seq-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "7d0d9589d57bfb643bca2361ce573808e49c410e", + "tarball": "http://registry.npmjs.org/seq/-/seq-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "29c1a8fd1ce2ae8041a291848828ce6fbfcbc01a", + "tarball": "http://registry.npmjs.org/seq/-/seq-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "156e64daf590248860bba30335855f231dd7c096", + "tarball": "http://registry.npmjs.org/seq/-/seq-0.3.3.tgz" + }, + "0.3.5": { + "shasum": "ae02af3a424793d8ccbf212d69174e0c54dffe38", + "tarball": "http://registry.npmjs.org/seq/-/seq-0.3.5.tgz" + } + }, + "keywords": [ + "flow-control", + "flow", + "control", + "async", + "asynchronous", + "chain", + "pipeline", + "sequence", + "sequential", + "parallel", + "error" + ], + "url": "http://registry.npmjs.org/seq/" + }, + "sequelize": { + "name": "sequelize", + "description": "MySQL ORM for Node.JS", + "dist-tags": { + "latest": "1.2.1" + }, + "maintainers": [ + { + "name": "sdepold", + "email": "sascha@depold.com" + } + ], + "author": { + "name": "Sascha Depold", + "email": "sascha@depold.com" + }, + "time": { + "modified": "2011-11-04T07:31:50.330Z", + "created": "2011-05-03T17:08:41.163Z", + "0.2.2": "2011-05-03T17:08:41.163Z", + "0.2.3": "2011-05-03T17:08:41.163Z", + "0.2.4": "2011-05-03T17:08:41.163Z", + "0.2.5": "2011-05-03T17:08:41.163Z", + "0.2.6": "2011-05-03T17:08:41.163Z", + "0.3.0": "2011-05-03T17:08:41.163Z", + "0.4.0": "2011-05-03T17:08:41.163Z", + "0.4.1": "2011-05-03T17:08:41.163Z", + "0.4.2": "2011-05-03T17:08:41.163Z", + "0.4.3": "2011-05-03T17:08:41.163Z", + "1.0.0": "2011-05-03T17:08:41.163Z", + "1.0.1": "2011-05-12T19:59:33.955Z", + "1.0.2": "2011-05-24T19:14:32.698Z", + "1.1.0": "2011-09-02T05:00:25.941Z", + "1.1.1": "2011-09-16T19:34:37.843Z", + "1.1.2": "2011-09-21T19:24:07.558Z", + "1.1.3": "2011-10-24T17:23:02.791Z", + "1.1.4": "2011-10-26T18:04:10.446Z", + "1.2.0": "2011-10-31T18:53:49.708Z", + "1.2.1": "2011-11-04T07:31:50.330Z" + }, + "versions": { + "0.2.2": "http://registry.npmjs.org/sequelize/0.2.2", + "0.2.3": "http://registry.npmjs.org/sequelize/0.2.3", + "0.2.4": "http://registry.npmjs.org/sequelize/0.2.4", + "0.2.5": "http://registry.npmjs.org/sequelize/0.2.5", + "0.2.6": "http://registry.npmjs.org/sequelize/0.2.6", + "0.3.0": "http://registry.npmjs.org/sequelize/0.3.0", + "0.4.0": "http://registry.npmjs.org/sequelize/0.4.0", + "0.4.1": "http://registry.npmjs.org/sequelize/0.4.1", + "0.4.2": "http://registry.npmjs.org/sequelize/0.4.2", + "0.4.3": "http://registry.npmjs.org/sequelize/0.4.3", + "1.0.0": "http://registry.npmjs.org/sequelize/1.0.0", + "1.0.1": "http://registry.npmjs.org/sequelize/1.0.1", + "1.0.2": "http://registry.npmjs.org/sequelize/1.0.2", + "1.1.0": "http://registry.npmjs.org/sequelize/1.1.0", + "1.1.1": "http://registry.npmjs.org/sequelize/1.1.1", + "1.1.2": "http://registry.npmjs.org/sequelize/1.1.2", + "1.1.3": "http://registry.npmjs.org/sequelize/1.1.3", + "1.1.4": "http://registry.npmjs.org/sequelize/1.1.4", + "1.2.0": "http://registry.npmjs.org/sequelize/1.2.0", + "1.2.1": "http://registry.npmjs.org/sequelize/1.2.1" + }, + "dist": { + "0.2.2": { + "tarball": "http://registry.npmjs.org/sequelize/-/sequelize-0.2.2.tgz" + }, + "0.2.3": { + "tarball": "http://registry.npmjs.org/sequelize/-/sequelize-0.2.3.tgz" + }, + "0.2.4": { + "tarball": "http://registry.npmjs.org/sequelize/-/sequelize-0.2.4.tgz" + }, + "0.2.5": { + "tarball": "http://registry.npmjs.org/sequelize/-/sequelize-0.2.5.tgz" + }, + "0.2.6": { + "tarball": "http://registry.npmjs.org/sequelize/-/sequelize-0.2.6.tgz" + }, + "0.3.0": { + "tarball": "http://registry.npmjs.org/sequelize/-/sequelize-0.3.0.tgz" + }, + "0.4.0": { + "tarball": "http://registry.npmjs.org/sequelize/-/sequelize-0.4.0.tgz" + }, + "0.4.1": { + "tarball": "http://registry.npmjs.org/sequelize/-/sequelize-0.4.1.tgz" + }, + "0.4.2": { + "tarball": "http://registry.npmjs.org/sequelize/-/sequelize-0.4.2.tgz" + }, + "0.4.3": { + "tarball": "http://registry.npmjs.org/sequelize/-/sequelize-0.4.3.tgz" + }, + "1.0.0": { + "shasum": "b52373d6bed475c0882c096a613e2587d2cdcb9c", + "tarball": "http://registry.npmjs.org/sequelize/-/sequelize-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "0ba663681a9232092410494fcbf63b46bbc31d43", + "tarball": "http://registry.npmjs.org/sequelize/-/sequelize-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "f6de323b30d9fe524fff542e1e23e731c6039f42", + "tarball": "http://registry.npmjs.org/sequelize/-/sequelize-1.0.2.tgz" + }, + "1.1.0": { + "shasum": "c82198453cd6af4711546169cf7b094aff09f923", + "tarball": "http://registry.npmjs.org/sequelize/-/sequelize-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "d3156d2a6cd68883aa06c19759e706c063f0a11b", + "tarball": "http://registry.npmjs.org/sequelize/-/sequelize-1.1.1.tgz" + }, + "1.1.2": { + "shasum": "f79d578cfaec591efad3338a90dbebfdf077cb25", + "tarball": "http://registry.npmjs.org/sequelize/-/sequelize-1.1.2.tgz" + }, + "1.1.3": { + "shasum": "7170000be5b0bf8e3cd7f6014f9a737d1464943c", + "tarball": "http://registry.npmjs.org/sequelize/-/sequelize-1.1.3.tgz" + }, + "1.1.4": { + "shasum": "cad91c02d119252678b230c599df87ba699c5b33", + "tarball": "http://registry.npmjs.org/sequelize/-/sequelize-1.1.4.tgz" + }, + "1.2.0": { + "shasum": "b0df128ccae7f798bcae3e55ecd1a96dba9508f9", + "tarball": "http://registry.npmjs.org/sequelize/-/sequelize-1.2.0.tgz" + }, + "1.2.1": { + "shasum": "dbe34a809d60afeaab2398311c62d460c4fe2ece", + "tarball": "http://registry.npmjs.org/sequelize/-/sequelize-1.2.1.tgz" + } + }, + "keywords": [ + "mysql", + "orm", + "nodejs", + "object relational mapper" + ], + "url": "http://registry.npmjs.org/sequelize/" + }, + "sequence": { + "name": "sequence", + "description": "The promise / subscribe / deferred module of FuturesJS (Ender.JS and Node.JS)", + "dist-tags": { + "latest": "2.1.1" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-07-13T20:27:07.501Z", + "created": "2011-07-13T20:27:07.133Z", + "2.1.1": "2011-07-13T20:27:07.501Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com", + "url": "http://coolaj86.info" + }, + "repository": { + "type": "git", + "url": "git://github.com/coolaj86/futures.git" + }, + "versions": { + "2.1.1": "http://registry.npmjs.org/sequence/2.1.1" + }, + "dist": { + "2.1.1": { + "shasum": "f3cf586c20ac0434e2b54c87640e1e39ab650d0a", + "tarball": "http://registry.npmjs.org/sequence/-/sequence-2.1.1.tgz" + } + }, + "keywords": [ + "flow-control", + "async", + "asynchronous", + "futures", + "sequence", + "chain", + "step", + "util", + "browser" + ], + "url": "http://registry.npmjs.org/sequence/" + }, + "sequencer": { + "name": "sequencer", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "michiel", + "email": "michielkalkman@gmail.com" + } + ], + "time": { + "modified": "2011-02-12T23:06:21.465Z", + "created": "2011-02-10T20:21:32.393Z", + "0.0.1": "2011-02-10T20:21:33.044Z", + "0.0.2": "2011-02-12T21:39:04.015Z", + "0.0.3": "2011-02-12T23:06:21.466Z" + }, + "author": { + "name": "Michiel Kalkman", + "email": "michiel.kalkman@gmail.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/michiel/sequencer-js.git" + }, + "description": "Library functions to order the execution of arbitrary sync/async calls", + "versions": { + "0.0.1": "http://registry.npmjs.org/sequencer/0.0.1", + "0.0.2": "http://registry.npmjs.org/sequencer/0.0.2", + "0.0.3": "http://registry.npmjs.org/sequencer/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "46e36b888795575f7fee088379b8a38355ac37c6", + "tarball": "http://registry.npmjs.org/sequencer/-/sequencer-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "4ae2891b758cda41030c80912de633ab7e9ce39b", + "tarball": "http://registry.npmjs.org/sequencer/-/sequencer-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "fe6dc19c693b41b4850dab20d81aaf0c1c0acdcc", + "tarball": "http://registry.npmjs.org/sequencer/-/sequencer-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/sequencer/" + }, + "sequent": { + "name": "sequent", + "description": "JavaScript async flow control", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "iizukanao", + "email": "iizuka@kyu-mu.net" + } + ], + "time": { + "modified": "2011-08-24T01:41:43.307Z", + "created": "2011-08-24T01:41:41.007Z", + "0.1.0": "2011-08-24T01:41:43.308Z" + }, + "author": { + "name": "Nao Iizuka", + "email": "iizuka@kyu-mu.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/iizukanao/sequent.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/sequent/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "35156827f5d73b9730f71bb1346e8d408d6ea80b", + "tarball": "http://registry.npmjs.org/sequent/-/sequent-0.1.0.tgz" + } + }, + "keywords": [ + "sequent", + "sequence", + "flow", + "control", + "queue", + "join", + "wait" + ], + "url": "http://registry.npmjs.org/sequent/" + }, + "serialize-form": { + "name": "serialize-form", + "description": "A form serializer for Ender.JS", + "dist-tags": { + "latest": "1.1.0" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-11-22T00:51:17.748Z", + "created": "2011-11-15T08:59:22.150Z", + "1.0.1": "2011-11-15T08:59:27.990Z", + "1.1.0": "2011-11-22T00:51:17.748Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com", + "url": "http://coolaj86.info/" + }, + "repository": { + "type": "git", + "url": "git://github.com/coolaj86/node-examples-js.git" + }, + "versions": { + "1.0.1": "http://registry.npmjs.org/serialize-form/1.0.1", + "1.1.0": "http://registry.npmjs.org/serialize-form/1.1.0" + }, + "dist": { + "1.0.1": { + "shasum": "395c1cd70d88c27f0af76bbf39ca3a5ae34a7aaa", + "tarball": "http://registry.npmjs.org/serialize-form/-/serialize-form-1.0.1.tgz" + }, + "1.1.0": { + "shasum": "fe7c18cc3f75484f7ade6a90530d6f90127f3e2d", + "tarball": "http://registry.npmjs.org/serialize-form/-/serialize-form-1.1.0.tgz" + } + }, + "keywords": [ + "ender" + ], + "url": "http://registry.npmjs.org/serialize-form/" + }, + "serializer": { + "name": "serializer", + "description": "JSON serializer and parser with secure.", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "francois", + "email": "francois@2metz.fr" + } + ], + "time": { + "modified": "2011-06-14T06:33:51.774Z", + "created": "2011-02-18T11:13:50.135Z", + "0.0.1": "2011-02-18T11:13:50.619Z", + "0.0.2": "2011-02-21T14:57:13.958Z", + "0.0.3": "2011-06-14T06:33:51.774Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/AF83/node-serializer.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/serializer/0.0.1", + "0.0.2": "http://registry.npmjs.org/serializer/0.0.2", + "0.0.3": "http://registry.npmjs.org/serializer/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "2d246e18dce92fdf29873b9b5d06324b896a8826", + "tarball": "http://registry.npmjs.org/serializer/-/serializer-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "35f30e213dc6b278c95e4186b86da51aa5467aa2", + "tarball": "http://registry.npmjs.org/serializer/-/serializer-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "082c11948888711482e2a6d1d94a6d28e31b51ae", + "tarball": "http://registry.npmjs.org/serializer/-/serializer-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/serializer/" + }, + "serialport": { + "name": "serialport", + "description": "Welcome your robotic javascript overlords. Better yet, program them!", + "dist-tags": { + "latest": "0.6.3" + }, + "maintainers": [ + { + "name": "voodootikigod", + "email": "voodootikigod@gmail.com" + } + ], + "time": { + "modified": "2011-11-22T13:26:32.339Z", + "created": "2011-02-17T15:25:29.136Z", + "0.1.0": "2011-02-17T15:25:29.247Z", + "0.1.1": "2011-02-17T15:27:06.942Z", + "0.1.3": "2011-02-19T15:37:39.799Z", + "0.2.0": "2011-03-08T11:46:27.240Z", + "0.2.2": "2011-03-19T13:58:22.610Z", + "0.2.3": "2011-03-21T01:01:17.102Z", + "0.2.4": "2011-04-08T17:44:33.339Z", + "0.2.5": "2011-06-27T21:04:59.108Z", + "0.2.6": "2011-06-28T14:15:42.346Z", + "0.2.7": "2011-06-28T17:31:53.803Z", + "0.2.8": "2011-07-08T14:04:03.673Z", + "0.2.9": "2011-07-14T18:34:29.966Z", + "0.3.0": "2011-07-28T10:34:10.795Z", + "0.6.0": "2011-11-15T15:58:57.992Z", + "0.6.1": "2011-11-15T16:00:17.871Z", + "0.6.2": "2011-11-20T01:21:04.240Z", + "0.6.3": "2011-11-22T13:26:32.339Z" + }, + "author": { + "name": "Chris Williams", + "email": "voodootikigod@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/voodootikigod/node-serialport.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/serialport/0.1.0", + "0.1.1": "http://registry.npmjs.org/serialport/0.1.1", + "0.1.3": "http://registry.npmjs.org/serialport/0.1.3", + "0.2.0": "http://registry.npmjs.org/serialport/0.2.0", + "0.2.2": "http://registry.npmjs.org/serialport/0.2.2", + "0.2.3": "http://registry.npmjs.org/serialport/0.2.3", + "0.2.4": "http://registry.npmjs.org/serialport/0.2.4", + "0.2.5": "http://registry.npmjs.org/serialport/0.2.5", + "0.2.6": "http://registry.npmjs.org/serialport/0.2.6", + "0.2.7": "http://registry.npmjs.org/serialport/0.2.7", + "0.2.8": "http://registry.npmjs.org/serialport/0.2.8", + "0.2.9": "http://registry.npmjs.org/serialport/0.2.9", + "0.3.0": "http://registry.npmjs.org/serialport/0.3.0", + "0.6.0": "http://registry.npmjs.org/serialport/0.6.0", + "0.6.1": "http://registry.npmjs.org/serialport/0.6.1", + "0.6.2": "http://registry.npmjs.org/serialport/0.6.2", + "0.6.3": "http://registry.npmjs.org/serialport/0.6.3" + }, + "dist": { + "0.1.0": { + "shasum": "c88ef953fa8e03d382a1930c4f882ac9e805f70a", + "tarball": "http://registry.npmjs.org/serialport/-/serialport-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "732fdefedd63d72a8df656cfe6c62cddc777634f", + "tarball": "http://registry.npmjs.org/serialport/-/serialport-0.1.1.tgz" + }, + "0.1.3": { + "shasum": "b05e9cf626a721ade14dc12b3539751c539b5b5f", + "tarball": "http://registry.npmjs.org/serialport/-/serialport-0.1.3.tgz" + }, + "0.2.0": { + "shasum": "539371d66e69f1bd5c66a027249d1b98dce22ff3", + "tarball": "http://registry.npmjs.org/serialport/-/serialport-0.2.0.tgz" + }, + "0.2.2": { + "shasum": "ffd4c375177dc325024ed3363cc3ba0236d6ae15", + "tarball": "http://registry.npmjs.org/serialport/-/serialport-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "088f816c55daec394249e9296707909f39046a69", + "tarball": "http://registry.npmjs.org/serialport/-/serialport-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "b2b17a334a71114b153c32a0ad1121ac5ad68d2b", + "tarball": "http://registry.npmjs.org/serialport/-/serialport-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "a38a69cbdde5cf6bfd4719b7f9a810cdfe57900f", + "tarball": "http://registry.npmjs.org/serialport/-/serialport-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "2988571558d4573a1ba8fa2fcb85dcd62c1eaaa4", + "tarball": "http://registry.npmjs.org/serialport/-/serialport-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "934efbb4a4d6c849b454031192021a4247690fec", + "tarball": "http://registry.npmjs.org/serialport/-/serialport-0.2.7.tgz" + }, + "0.2.8": { + "shasum": "6d7f3ace23b05323a31177803a9711b003de107b", + "tarball": "http://registry.npmjs.org/serialport/-/serialport-0.2.8.tgz" + }, + "0.2.9": { + "shasum": "6f49fdfc94bf5d6db5dd86ecdebdcb2f0e945762", + "tarball": "http://registry.npmjs.org/serialport/-/serialport-0.2.9.tgz" + }, + "0.3.0": { + "shasum": "08625ca24923fbab51ad23e57f619bf279af9c3a", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8r-v83.1.8.26-darwin-11.0.0": { + "shasum": "ea700df6628bd65004e7e7791c3d2dcdb6dcfc8b", + "tarball": "http://registry.npmjs.org/serialport/-/serialport-0.3.0-0.4-ares1.7.4-ev4.4-openssl0.9.8r-v83.1.8.26-darwin-11.0.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/serialport/-/serialport-0.3.0.tgz" + }, + "0.6.0": { + "shasum": "f18e6e882e06c80f33d00c0753bc95171250b9c4", + "tarball": "http://registry.npmjs.org/serialport/-/serialport-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "54d025b93a0e9dc2ccd2b36502017cbb10b42274", + "tarball": "http://registry.npmjs.org/serialport/-/serialport-0.6.1.tgz" + }, + "0.6.2": { + "shasum": "eed12e92676878808fc2a71dea0547db2b127727", + "tarball": "http://registry.npmjs.org/serialport/-/serialport-0.6.2.tgz" + }, + "0.6.3": { + "shasum": "4ddcbaa239da037ddeb01866b46bb13d46892c28", + "tarball": "http://registry.npmjs.org/serialport/-/serialport-0.6.3.tgz" + } + }, + "url": "http://registry.npmjs.org/serialport/" + }, + "serialportify": { + "name": "serialportify", + "description": "Brings node-serialport to the browser via dnode.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "jgautier", + "email": "julian.gautier@alumni.neumont.edu" + } + ], + "time": { + "modified": "2011-09-09T05:27:18.791Z", + "created": "2011-09-09T05:27:17.431Z", + "0.1.0": "2011-09-09T05:27:18.791Z" + }, + "author": { + "name": "Julian Gautier", + "email": "julian.gautier@alumni.neumont.edu" + }, + "repository": { + "type": "git", + "url": "git://github.com/jgautier/node-serialportify.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/serialportify/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "388b939803da2195ec97c330d1df18df8af4d5ee", + "tarball": "http://registry.npmjs.org/serialportify/-/serialportify-0.1.0.tgz" + } + }, + "keywords": [ + "serialport" + ], + "url": "http://registry.npmjs.org/serialportify/" + }, + "serialq": { + "name": "serialq", + "description": "SerialQueue : call functions sequentially for Node.js", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "justgord", + "email": "justgord@gmail.com" + } + ], + "time": { + "modified": "2011-03-23T04:09:28.896Z", + "created": "2011-03-23T04:09:28.613Z", + "0.1.0": "2011-03-23T04:09:28.896Z" + }, + "author": { + "name": "Gordon Anderson", + "email": "justgord@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/justgord/.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/serialq/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "196b7e89ad05c866a42c51b1d14eeed4cd3c55ee", + "tarball": "http://registry.npmjs.org/serialq/-/serialq-0.1.0.tgz" + } + }, + "keywords": [ + "util", + "node", + "queue", + "serial", + "sequential" + ], + "url": "http://registry.npmjs.org/serialq/" + }, + "series": { + "name": "series", + "description": "Syncable set", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "jjupiter", + "email": "joris@bonboa.com" + } + ], + "time": { + "modified": "2011-03-24T14:28:44.716Z", + "created": "2011-03-21T09:06:46.086Z", + "0.0.1": "2011-03-21T09:06:46.524Z", + "0.0.2": "2011-03-22T13:23:54.025Z", + "0.0.3": "2011-03-22T13:30:25.199Z", + "0.0.4": "2011-03-23T10:58:48.951Z", + "0.0.6": "2011-03-24T14:28:44.716Z" + }, + "author": { + "name": "Joris Röling", + "email": "joris@bonboa.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/series/0.0.1", + "0.0.2": "http://registry.npmjs.org/series/0.0.2", + "0.0.3": "http://registry.npmjs.org/series/0.0.3", + "0.0.4": "http://registry.npmjs.org/series/0.0.4", + "0.0.6": "http://registry.npmjs.org/series/0.0.6" + }, + "dist": { + "0.0.1": { + "shasum": "15d17f57a7f66b91a70f3ceef8dea8b4dd56a6d3", + "tarball": "http://registry.npmjs.org/series/-/series-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "a1b00445586c34cd527d8283c616661060a03ef5", + "tarball": "http://registry.npmjs.org/series/-/series-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "0c14a2f48aa838bf5084cc5bc957a5062cd0e77c", + "tarball": "http://registry.npmjs.org/series/-/series-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "8d8bb4c496ca830f5929a930c054d3a4128b1a67", + "tarball": "http://registry.npmjs.org/series/-/series-0.0.4.tgz" + }, + "0.0.6": { + "shasum": "5f049c1cca2704fefc0187c9c8a52ffbed0a94ca", + "tarball": "http://registry.npmjs.org/series/-/series-0.0.6.tgz" + } + }, + "keywords": [ + "library", + "syncable", + "set", + "observable" + ], + "url": "http://registry.npmjs.org/series/" + }, + "serve": { + "name": "serve", + "description": "Simple command-line file / directory server built with connect", + "dist-tags": { + "latest": "1.0.2" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "time": { + "modified": "2011-11-24T13:27:18.335Z", + "created": "2011-06-25T00:21:37.210Z", + "0.0.1": "2011-06-25T00:21:37.861Z", + "0.0.2": "2011-07-25T15:27:57.114Z", + "0.0.3": "2011-08-02T20:42:15.581Z", + "0.0.4": "2011-08-19T00:38:54.340Z", + "0.0.5": "2011-09-21T23:41:37.634Z", + "1.0.0": "2011-11-07T16:34:24.948Z", + "1.0.1": "2011-11-23T18:25:20.715Z", + "1.0.2": "2011-11-24T13:27:18.335Z" + }, + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/serve/0.0.1", + "0.0.2": "http://registry.npmjs.org/serve/0.0.2", + "0.0.3": "http://registry.npmjs.org/serve/0.0.3", + "0.0.4": "http://registry.npmjs.org/serve/0.0.4", + "0.0.5": "http://registry.npmjs.org/serve/0.0.5", + "1.0.0": "http://registry.npmjs.org/serve/1.0.0", + "1.0.1": "http://registry.npmjs.org/serve/1.0.1", + "1.0.2": "http://registry.npmjs.org/serve/1.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "4d415819a80c2460b9fc8ea436121ca2a6c51820", + "tarball": "http://registry.npmjs.org/serve/-/serve-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "b906dfad718dfe46d3e2adf3f3b64002c02c7bd4", + "tarball": "http://registry.npmjs.org/serve/-/serve-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "560d030e3f0130992ca19a262fed335f3ca84211", + "tarball": "http://registry.npmjs.org/serve/-/serve-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "a66f7ae4975021d8042d1706c3731bd1338e4c4e", + "tarball": "http://registry.npmjs.org/serve/-/serve-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "75a3ead65fb6ebe8f08dfb19e14ec7ac4e0e25b7", + "tarball": "http://registry.npmjs.org/serve/-/serve-0.0.5.tgz" + }, + "1.0.0": { + "shasum": "79ba42de1e5268b5b1e9a5a98ad405a8cba08a00", + "tarball": "http://registry.npmjs.org/serve/-/serve-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "c19ef57d2340fceff9bd806a381f1170eaf01866", + "tarball": "http://registry.npmjs.org/serve/-/serve-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "a5d7af5ca8f2cb978627055af6fc7f270652110a", + "tarball": "http://registry.npmjs.org/serve/-/serve-1.0.2.tgz" + } + }, + "keywords": [ + "static", + "server", + "connect" + ], + "url": "http://registry.npmjs.org/serve/" + }, + "served": { + "name": "served", + "description": "Standalone HTTP Webserver for Node.JS", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-10-26T21:24:58.763Z", + "created": "2011-10-26T21:24:58.164Z", + "1.0.0": "2011-10-26T21:24:58.763Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com", + "url": "http://coolaj86.info/" + }, + "repository": { + "type": "git", + "url": "git://github.com/coolaj86/node-examples-js.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/served/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "ba69fca78635141653dee45c624acc868a31a32e", + "tarball": "http://registry.npmjs.org/served/-/served-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/served/" + }, + "servedir": { + "name": "servedir", + "description": "Creates a simple web server for a directory", + "dist-tags": { + "latest": "0.1.10" + }, + "maintainers": [ + { + "name": "remy", + "email": "remy@remysharp.com" + }, + { + "name": "kitgoncharov", + "email": "ksgoncharov@gmail.com" + } + ], + "time": { + "modified": "2011-06-02T15:50:41.297Z", + "created": "2011-01-05T15:04:10.399Z", + "0.0.1": "2011-01-05T15:04:10.791Z", + "0.0.2": "2011-01-05T15:33:44.005Z", + "0.1.2": "2011-02-03T16:23:20.079Z", + "0.1.3": "2011-02-03T17:09:14.140Z", + "0.1.4": "2011-02-04T15:19:55.981Z", + "0.1.5": "2011-02-05T14:38:00.824Z", + "0.1.9": "2011-02-23T22:29:07.648Z", + "0.1.10": "2011-06-02T15:50:41.297Z" + }, + "author": { + "name": "Remy Sharp", + "url": "http://github.com/remy" + }, + "repository": { + "type": "git", + "url": "git://github.com/remy/servedir.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/servedir/0.0.1", + "0.0.2": "http://registry.npmjs.org/servedir/0.0.2", + "0.1.2": "http://registry.npmjs.org/servedir/0.1.2", + "0.1.3": "http://registry.npmjs.org/servedir/0.1.3", + "0.1.4": "http://registry.npmjs.org/servedir/0.1.4", + "0.1.5": "http://registry.npmjs.org/servedir/0.1.5", + "0.1.9": "http://registry.npmjs.org/servedir/0.1.9", + "0.1.10": "http://registry.npmjs.org/servedir/0.1.10" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/servedir/-/servedir-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/servedir/-/servedir-0.0.2.tgz" + }, + "0.1.2": { + "shasum": "d579129eae2961945d8e91f1aa4484413c08d8a0", + "tarball": "http://registry.npmjs.org/servedir/-/servedir-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "c8c050bb85a0ab982768d6c84d90498c9c80c417", + "tarball": "http://registry.npmjs.org/servedir/-/servedir-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "df8926f73dac2690e661b1ac9ed43926e368ead5", + "tarball": "http://registry.npmjs.org/servedir/-/servedir-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "d9a74b4b01ec0bddc50bbe8eea2c8d7646959f01", + "tarball": "http://registry.npmjs.org/servedir/-/servedir-0.1.5.tgz" + }, + "0.1.9": { + "shasum": "248a618e6dfc07d579c47e1f33e16f311c861ab7", + "tarball": "http://registry.npmjs.org/servedir/-/servedir-0.1.9.tgz" + }, + "0.1.10": { + "shasum": "edd2fbd40654ead50c52227e6fa648a820b7d521", + "tarball": "http://registry.npmjs.org/servedir/-/servedir-0.1.10.tgz" + } + }, + "keywords": [ + "development", + "web", + "server", + "terminal" + ], + "url": "http://registry.npmjs.org/servedir/" + }, + "server-backbone-redis": { + "name": "server-backbone-redis", + "description": "Server-side backbone redis store for node.js. Also supports object/JSON export/import for server-side and client-side.", + "dist-tags": { + "latest": "0.0.7" + }, + "maintainers": [ + { + "name": "jeromeparadis", + "email": "jparadis@paradivision.com" + } + ], + "time": { + "modified": "2011-10-01T17:31:02.942Z", + "created": "2011-09-10T23:17:39.977Z", + "0.0.1": "2011-09-10T23:17:40.899Z", + "0.0.2": "2011-09-10T23:22:43.963Z", + "0.0.3": "2011-09-10T23:29:25.904Z", + "0.0.4": "2011-09-12T22:44:47.442Z", + "0.0.5": "2011-09-19T23:59:18.132Z", + "0.0.6": "2011-09-20T15:49:12.338Z", + "0.0.7": "2011-10-01T17:31:02.942Z" + }, + "author": { + "name": "Jerome Paradis", + "email": "jparadis@paradivision.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/server-backbone-redis/0.0.1", + "0.0.2": "http://registry.npmjs.org/server-backbone-redis/0.0.2", + "0.0.3": "http://registry.npmjs.org/server-backbone-redis/0.0.3", + "0.0.4": "http://registry.npmjs.org/server-backbone-redis/0.0.4", + "0.0.5": "http://registry.npmjs.org/server-backbone-redis/0.0.5", + "0.0.6": "http://registry.npmjs.org/server-backbone-redis/0.0.6", + "0.0.7": "http://registry.npmjs.org/server-backbone-redis/0.0.7" + }, + "dist": { + "0.0.1": { + "shasum": "2da0106ba12f3503a9526be5ae47826760514a73", + "tarball": "http://registry.npmjs.org/server-backbone-redis/-/server-backbone-redis-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "3cd96bec6fbdc4d13cd2dfaa068b27b39044b6db", + "tarball": "http://registry.npmjs.org/server-backbone-redis/-/server-backbone-redis-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "74f96162b5034d4cfe236b179fcbfafa5caa3f3a", + "tarball": "http://registry.npmjs.org/server-backbone-redis/-/server-backbone-redis-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "abac120010f00f9337f9d7bada8e5103f14755e1", + "tarball": "http://registry.npmjs.org/server-backbone-redis/-/server-backbone-redis-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "28bb44f668a46297d2b8c3e63a2e65c1bf90b59b", + "tarball": "http://registry.npmjs.org/server-backbone-redis/-/server-backbone-redis-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "d370b109a99cf3da6d39464dede4702aaf61214f", + "tarball": "http://registry.npmjs.org/server-backbone-redis/-/server-backbone-redis-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "6179127030287ec5d640771a0ff69c08afc5ca06", + "tarball": "http://registry.npmjs.org/server-backbone-redis/-/server-backbone-redis-0.0.7.tgz" + } + }, + "keywords": [ + "server-side", + "backbone", + "redis", + "store", + "data", + "model" + ], + "url": "http://registry.npmjs.org/server-backbone-redis/" + }, + "server-tracker": { + "name": "server-tracker", + "description": "track performance, and other information from servers, write the data into mongodb, and hand it out to clients for visualization", + "dist-tags": { + "latest": "0.4.2" + }, + "maintainers": [ + { + "name": "jfk", + "email": "jfk@jolira.com" + } + ], + "time": { + "modified": "2011-10-25T06:11:42.436Z", + "created": "2011-08-07T21:33:03.651Z", + "0.0.1": "2011-08-07T21:33:09.377Z", + "0.0.2": "2011-08-08T01:25:10.152Z", + "0.0.3": "2011-08-08T21:14:17.189Z", + "0.0.4": "2011-08-08T22:40:04.093Z", + "0.0.5": "2011-08-08T23:56:11.985Z", + "0.0.6": "2011-08-19T20:32:03.563Z", + "0.0.7": "2011-09-02T05:58:10.419Z", + "0.0.8": "2011-09-02T06:27:56.411Z", + "0.0.9": "2011-09-02T06:33:34.263Z", + "0.1.0": "2011-09-21T23:40:30.342Z", + "0.1.1": "2011-09-28T15:54:14.618Z", + "0.1.2": "2011-09-28T19:58:54.861Z", + "0.1.3": "2011-09-30T21:19:14.737Z", + "0.1.4": "2011-09-30T21:55:22.705Z", + "0.2.2": "2011-10-06T16:27:03.920Z", + "0.2.3": "2011-10-06T18:18:49.481Z", + "0.2.4": "2011-10-07T06:35:09.948Z", + "0.2.5": "2011-10-07T20:00:06.330Z", + "0.2.6": "2011-10-10T18:19:59.067Z", + "0.2.7": "2011-10-11T20:12:59.373Z", + "0.3.0": "2011-10-13T23:23:02.308Z", + "0.3.1": "2011-10-14T15:09:56.687Z", + "0.3.2": "2011-10-15T05:45:24.935Z", + "0.4.0": "2011-10-18T21:20:55.018Z", + "0.4.1": "2011-10-25T06:10:15.285Z", + "0.4.2": "2011-10-25T06:11:42.436Z" + }, + "author": { + "name": "Joachim Kainz", + "email": "dev@jolira.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/jolira/server-tracker.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/server-tracker/0.0.1", + "0.0.2": "http://registry.npmjs.org/server-tracker/0.0.2", + "0.0.3": "http://registry.npmjs.org/server-tracker/0.0.3", + "0.0.4": "http://registry.npmjs.org/server-tracker/0.0.4", + "0.0.5": "http://registry.npmjs.org/server-tracker/0.0.5", + "0.0.6": "http://registry.npmjs.org/server-tracker/0.0.6", + "0.0.7": "http://registry.npmjs.org/server-tracker/0.0.7", + "0.0.8": "http://registry.npmjs.org/server-tracker/0.0.8", + "0.0.9": "http://registry.npmjs.org/server-tracker/0.0.9", + "0.1.0": "http://registry.npmjs.org/server-tracker/0.1.0", + "0.1.1": "http://registry.npmjs.org/server-tracker/0.1.1", + "0.1.2": "http://registry.npmjs.org/server-tracker/0.1.2", + "0.1.3": "http://registry.npmjs.org/server-tracker/0.1.3", + "0.1.4": "http://registry.npmjs.org/server-tracker/0.1.4", + "0.2.2": "http://registry.npmjs.org/server-tracker/0.2.2", + "0.2.3": "http://registry.npmjs.org/server-tracker/0.2.3", + "0.2.4": "http://registry.npmjs.org/server-tracker/0.2.4", + "0.2.5": "http://registry.npmjs.org/server-tracker/0.2.5", + "0.2.6": "http://registry.npmjs.org/server-tracker/0.2.6", + "0.2.7": "http://registry.npmjs.org/server-tracker/0.2.7", + "0.3.0": "http://registry.npmjs.org/server-tracker/0.3.0", + "0.3.1": "http://registry.npmjs.org/server-tracker/0.3.1", + "0.3.2": "http://registry.npmjs.org/server-tracker/0.3.2", + "0.4.0": "http://registry.npmjs.org/server-tracker/0.4.0", + "0.4.1": "http://registry.npmjs.org/server-tracker/0.4.1", + "0.4.2": "http://registry.npmjs.org/server-tracker/0.4.2" + }, + "dist": { + "0.0.1": { + "shasum": "0a65e9e153a43d3b6b8c17fb8b811f4a78a06087", + "tarball": "http://registry.npmjs.org/server-tracker/-/server-tracker-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "df6bfa9da7a50b6522023b283ad6efcbea7e202b", + "tarball": "http://registry.npmjs.org/server-tracker/-/server-tracker-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "8fb4bb169b0394f115655d2c8ff6fa907a3160f6", + "tarball": "http://registry.npmjs.org/server-tracker/-/server-tracker-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "02fd44c9294c7f566bc70e7830e38222135655fa", + "tarball": "http://registry.npmjs.org/server-tracker/-/server-tracker-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "7acdba8f409a784d5f887997f6156b6309f165a0", + "tarball": "http://registry.npmjs.org/server-tracker/-/server-tracker-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "744163c0d3ca24015fafd6d88d8eee5a29b686e7", + "tarball": "http://registry.npmjs.org/server-tracker/-/server-tracker-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "5f383a425c581fd8cef1c5b8bd2f6fa5e0f16eb4", + "tarball": "http://registry.npmjs.org/server-tracker/-/server-tracker-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "5bf06cf623bda5a2473f5c28c62325f1cf980841", + "tarball": "http://registry.npmjs.org/server-tracker/-/server-tracker-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "935f382159716a72cd8850d1624da1edf1fe0dfc", + "tarball": "http://registry.npmjs.org/server-tracker/-/server-tracker-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "bd35d98b222e7e01424bd6f95909ce046b28a5f6", + "tarball": "http://registry.npmjs.org/server-tracker/-/server-tracker-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "b756763d0a9a921036d285201be3130fc80bf940", + "tarball": "http://registry.npmjs.org/server-tracker/-/server-tracker-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "2e33b54331f4c7a973f1166145a67666925c0576", + "tarball": "http://registry.npmjs.org/server-tracker/-/server-tracker-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "0254d70d2cdb4e65cd715a3d048be4159a5d6047", + "tarball": "http://registry.npmjs.org/server-tracker/-/server-tracker-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "b24771aea3a80e4a23f403ed46122fe3da52cd9e", + "tarball": "http://registry.npmjs.org/server-tracker/-/server-tracker-0.1.4.tgz" + }, + "0.2.2": { + "shasum": "f6f36b0e8d93c0a784b32d0b95cf4ca472ceab4d", + "tarball": "http://registry.npmjs.org/server-tracker/-/server-tracker-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "4dfc583e7eaec3a3e849a42bc637da1634501e67", + "tarball": "http://registry.npmjs.org/server-tracker/-/server-tracker-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "a061e913194a519476a6eb1b40466b570fe3d1f8", + "tarball": "http://registry.npmjs.org/server-tracker/-/server-tracker-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "a5a5447d039ee180939093b7d1b38cc871f4e9b4", + "tarball": "http://registry.npmjs.org/server-tracker/-/server-tracker-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "3ee002329aa9cf0648e26b89f827d5a4190452d7", + "tarball": "http://registry.npmjs.org/server-tracker/-/server-tracker-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "a9b80ba91e8d0315a38d7d22b547882a8f934841", + "tarball": "http://registry.npmjs.org/server-tracker/-/server-tracker-0.2.7.tgz" + }, + "0.3.0": { + "shasum": "d2f6e03406c5c2ebfdfaef0f2b2d0cca80fa5e0e", + "tarball": "http://registry.npmjs.org/server-tracker/-/server-tracker-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "1fc24dd70013a0f8f951eda4965c60161b77df0e", + "tarball": "http://registry.npmjs.org/server-tracker/-/server-tracker-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "b9fe57be8deb4c2d4b686eb7661682ad4e4f7c71", + "tarball": "http://registry.npmjs.org/server-tracker/-/server-tracker-0.3.2.tgz" + }, + "0.4.0": { + "shasum": "28895fff13c0f6e707494a18b021ea909e06c51c", + "tarball": "http://registry.npmjs.org/server-tracker/-/server-tracker-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "cb6ba390ab099a6c91e8e779c9c8df850bb38762", + "tarball": "http://registry.npmjs.org/server-tracker/-/server-tracker-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "b497edb664379da6df69cf737abc2171f37750ef", + "tarball": "http://registry.npmjs.org/server-tracker/-/server-tracker-0.4.2.tgz" + } + }, + "keywords": [ + "monitoring", + "enterprise" + ], + "url": "http://registry.npmjs.org/server-tracker/" + }, + "serverus": { + "name": "serverus", + "description": "Git branch server", + "dist-tags": { + "latest": "0.5.1" + }, + "readme": "Serverus\n=====\n\nServerus is a multi-process server for your git repository.\n\nFirst you need to initialise serverus:\n\n serverus init path://to/myrepo.git\n\nA directory called myrepo.serverus will be created under the current directory - inside is a serverus.json file for your build/deploy settings, and a `_repo` directory containing a git checkout of your code. It might take a few minutes to run this step, as serverus has to do a full `git clone` of your repository.\n\nYou probably want to update your settings at this point - edit serverus.json:\n\n {\n // Command to run before the main script, this will be run in the root directory of your code.\n // This directory will be one level down from your serverus directory, so you can put shared scripts alongside serverus.json and run them with \"../\"\n \"beforeExec\": \"command\",\n // Args to pass to the beforeExec script\n \"beforeExecArgs\": [],\n // Executable to run - this should be in your system PATH and will be run in the root directory of your code.\n \"exec\": \"node\",\n // Arguments to run the executable with\n // the string \"$PORT\" is special and will be replaced with the port that serverus wants this instance to run on\n \"args\": [\"server.js\", \"--port=$PORT\"],\n // An array of files you don't want to be deployed - serverus will also respect your .gitignore file\n \"excludeFromDeploy\": [],\n // Branches to run on startup (you can run others on demand)\n \"branches\": [\"master\"],\n // Config overrides for various branches\n \"master\": {\n \"args\": [\"server.js\", \"--port=80\"]\n }\n }\n\nWhen you're ready to serve your app, use:\n\n serverus run\n\nVisit `http://localhost:8123/` to see your branches and that's it!\n\nAdditional config\n====\n\nYou can use the `--help` flag to get commandline options for `serverus run`:\n\n Usage:\n run [OPTIONS] [ARGS]\n\n Options:\n -p, --port [NUMBER] Port for serverus to listen on (Default is 8123)\n -s, --startingPort [NUMBER]Port to start branch servers listening on (Default is 8124, or port+1)\n -r, --root [STRING] Root URL of server instances, affects the URL linked\n to from the serverus server (Default is /)\n -d, --domain [STRING] The domain name to serve branches up as subdomains of (Default is localhost)\n --force BOOL Force run, remove __serverus.lock file from\n checkout if necessary\n -h, --help Display help and usage details\n\nYou can also specify the majority of these options in `serverus.json`, using the full name (eg `port` not `p`).\n", + "maintainers": [ + { + "name": "stevem.brandwatch", + "email": "stevem@brandwatch.com" + } + ], + "time": { + "modified": "2011-12-06T14:16:27.350Z", + "created": "2011-11-24T13:37:52.464Z", + "0.5.0": "2011-11-24T13:37:53.876Z", + "0.5.1": "2011-12-06T14:16:27.350Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/BrandwatchLtd/serverus.git" + }, + "versions": { + "0.5.0": "http://registry.npmjs.org/serverus/0.5.0", + "0.5.1": "http://registry.npmjs.org/serverus/0.5.1" + }, + "dist": { + "0.5.0": { + "shasum": "b65ba393e164f4d03f1a84669b9df8156180429a", + "tarball": "http://registry.npmjs.org/serverus/-/serverus-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "2c8d313d24cbf8632d67f19066b66344a1a61f18", + "tarball": "http://registry.npmjs.org/serverus/-/serverus-0.5.1.tgz" + } + }, + "url": "http://registry.npmjs.org/serverus/" + }, + "serveup": { + "name": "serveup", + "description": "Simple static server.", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "maccman", + "email": "maccman@gmail.com" + } + ], + "time": { + "modified": "2011-12-03T16:22:45.982Z", + "created": "2011-11-01T15:19:52.465Z", + "0.0.2": "2011-11-01T15:19:54.719Z", + "0.0.3": "2011-11-08T18:24:00.551Z", + "0.0.4": "2011-12-03T16:22:45.982Z" + }, + "author": { + "name": "maccman" + }, + "repository": { + "type": "git", + "url": "git://github.com/maccman/serveup.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/serveup/0.0.2", + "0.0.3": "http://registry.npmjs.org/serveup/0.0.3", + "0.0.4": "http://registry.npmjs.org/serveup/0.0.4" + }, + "dist": { + "0.0.2": { + "shasum": "567a436aadbb2c4ea67d992044daa11555a55cad", + "tarball": "http://registry.npmjs.org/serveup/-/serveup-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "60375fa2333ea0bd40c095e48825b145bbb9c05f", + "tarball": "http://registry.npmjs.org/serveup/-/serveup-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "cb2b5e2d81f1d1b7e61b8597e1efa103c5c8d44d", + "tarball": "http://registry.npmjs.org/serveup/-/serveup-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/serveup/" + }, + "service": { + "name": "service", + "description": "Make init.d scripts for node apps", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "iamcal", + "email": "cal@iamcal.com" + } + ], + "repository": { + "type": "git", + "url": "git://github.com/iamcal/service.js.git" + }, + "time": { + "modified": "2011-04-27T22:13:44.224Z", + "created": "2011-03-22T18:33:03.551Z", + "0.1.0": "2011-03-22T18:33:03.551Z", + "0.1.1": "2011-03-22T18:33:03.551Z", + "0.1.2": "2011-03-26T04:16:07.124Z", + "0.1.3": "2011-04-12T01:53:17.922Z", + "0.1.4": "2011-04-27T22:13:44.224Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/service/0.1.0", + "0.1.1": "http://registry.npmjs.org/service/0.1.1", + "0.1.2": "http://registry.npmjs.org/service/0.1.2", + "0.1.3": "http://registry.npmjs.org/service/0.1.3", + "0.1.4": "http://registry.npmjs.org/service/0.1.4" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/service/-/service-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "d7a82722fda517454b60a4834b2dbd6b12c40e2e", + "tarball": "http://registry.npmjs.org/service/-/service-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "a04f719c0c52a7a7ebd99c0ac41277b3f8a2dcdd", + "tarball": "http://registry.npmjs.org/service/-/service-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "93d81f937ad2343bc97feb740ef097f7bd0831c0", + "tarball": "http://registry.npmjs.org/service/-/service-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "d0ab9ffbc2b9d5875af8b01dec36339784525b44", + "tarball": "http://registry.npmjs.org/service/-/service-0.1.4.tgz" + } + }, + "url": "http://registry.npmjs.org/service/" + }, + "sesame": { + "name": "sesame", + "description": "Session middleware for lazy people.", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-03-31T10:27:04.215Z", + "created": "2011-01-29T08:30:51.155Z", + "0.0.1": "2011-01-29T08:30:51.533Z", + "0.0.2": "2011-01-29T10:39:47.250Z", + "0.0.3": "2011-01-30T01:52:26.349Z", + "0.0.4": "2011-01-30T14:13:01.243Z", + "0.0.5": "2011-02-18T12:32:39.616Z", + "0.0.6": "2011-02-27T08:11:56.927Z", + "0.1.0": "2011-03-02T14:19:18.581Z", + "0.1.1": "2011-03-30T17:40:25.793Z", + "0.1.2": "2011-03-31T10:27:04.215Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-sesame.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/sesame/0.0.1", + "0.0.2": "http://registry.npmjs.org/sesame/0.0.2", + "0.0.3": "http://registry.npmjs.org/sesame/0.0.3", + "0.0.4": "http://registry.npmjs.org/sesame/0.0.4", + "0.0.5": "http://registry.npmjs.org/sesame/0.0.5", + "0.0.6": "http://registry.npmjs.org/sesame/0.0.6", + "0.1.0": "http://registry.npmjs.org/sesame/0.1.0", + "0.1.1": "http://registry.npmjs.org/sesame/0.1.1", + "0.1.2": "http://registry.npmjs.org/sesame/0.1.2" + }, + "dist": { + "0.0.1": { + "shasum": "b689a8e0c1e3de2e4087f0040ba81006bea6addb", + "tarball": "http://registry.npmjs.org/sesame/-/sesame-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "d61818b819b966f9ca93048fae67a8f587ef01dd", + "tarball": "http://registry.npmjs.org/sesame/-/sesame-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "2d1c78a4ecc1ad34b56c3293e24b85d2358b09a1", + "tarball": "http://registry.npmjs.org/sesame/-/sesame-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "fc41d20791703a4747b9804c45be55880e008328", + "tarball": "http://registry.npmjs.org/sesame/-/sesame-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "24eb4a9c13ba51c07a4c7f8c819c20dda9893dbd", + "tarball": "http://registry.npmjs.org/sesame/-/sesame-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "3001096c699cfdd45ee8ea45005386a431bab634", + "tarball": "http://registry.npmjs.org/sesame/-/sesame-0.0.6.tgz" + }, + "0.1.0": { + "shasum": "fb0758b0a2b2cafe1495ea3ec3563324d0c78598", + "tarball": "http://registry.npmjs.org/sesame/-/sesame-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "a4dfe759ace14872c4e1c423d31a3b4eb20135a6", + "tarball": "http://registry.npmjs.org/sesame/-/sesame-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "7e64fdd5d8a1cabee82d465a835a1fdfe5de003d", + "tarball": "http://registry.npmjs.org/sesame/-/sesame-0.1.2.tgz" + } + }, + "keywords": [ + "sessions", + "web", + "cookies", + "http" + ], + "url": "http://registry.npmjs.org/sesame/" + }, + "sesh": { + "name": "sesh", + "description": "super simple session middleware for node.js, even has optional 'magic' sessions which monkey patch the httpServer with one line!", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "marak", + "email": "marak.squires@gmail.com" + }, + { + "name": "dtrejo", + "email": "dtrejo@cs.brown.edu" + } + ], + "time": { + "modified": "2011-05-10T18:54:53.269Z", + "created": "2011-01-09T00:48:07.548Z", + "0.1.0": "2011-01-09T00:48:07.980Z" + }, + "author": { + "name": "Marak Squires", + "email": "marak.squires@gmail.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/marak/session.js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/sesh/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "c6a6c2ac01009771647cd6c2c79d9caf32642db2", + "tarball": "http://registry.npmjs.org/sesh/-/sesh-0.1.0.tgz" + } + }, + "keywords": [ + "sessions", + "cookies", + "middleware", + "session" + ], + "url": "http://registry.npmjs.org/sesh/" + }, + "session": { + "name": "session", + "description": "Generic session manager (i.e. not depending on cookies or socket connection, etc.)", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "as-jpolo", + "email": "julien.polo@altshift.fr" + } + ], + "author": { + "name": "Julien Polo", + "email": "julien.polo@altshift.fr" + }, + "repository": { + "type": "git", + "url": "git://github.com/as-jpolo/node-session.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/session/0.1.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/session/-/session-0.1.0.tgz" + } + }, + "keywords": [ + "session", + "generic", + "manager" + ], + "url": "http://registry.npmjs.org/session/" + }, + "session-mongoose": { + "name": "session-mongoose", + "description": "connect session store implementation using Mongoose", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "donpark", + "email": "donpark@docuverse.com" + } + ], + "time": { + "modified": "2011-07-05T22:14:21.702Z", + "created": "2011-07-05T22:14:21.039Z", + "0.0.1": "2011-07-05T22:14:21.702Z" + }, + "author": { + "name": "Don Park", + "email": "donpark@docuverse.com", + "url": "http://blog.docuverse.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/donpark/session-mongoose.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/session-mongoose/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "7b5b16870ca75cef2d69bdfd70935ce4899360ce", + "tarball": "http://registry.npmjs.org/session-mongoose/-/session-mongoose-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/session-mongoose/" + }, + "sessionvoc-client": { + "name": "sessionvoc-client", + "description": "NODE.JS interface for the SessionVOC server", + "dist-tags": { + "latest": "1.0.6" + }, + "maintainers": [ + { + "name": "triagens", + "email": "info@triagens.de" + } + ], + "time": { + "modified": "2011-08-03T16:10:47.788Z", + "created": "2011-05-11T13:16:29.980Z", + "1.0.0": "2011-05-11T13:16:30.660Z", + "1.0.1": "2011-05-12T10:13:12.788Z", + "1.0.2": "2011-07-29T15:24:03.231Z", + "1.0.3": "2011-08-01T13:07:57.826Z", + "1.0.4": "2011-08-02T12:27:22.789Z", + "1.0.5": "2011-08-02T13:11:12.628Z", + "1.0.6": "2011-08-03T16:10:47.788Z" + }, + "author": { + "name": "Frank Celler", + "email": "f.celler@triagens.de" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/sessionvoc-client/1.0.0", + "1.0.1": "http://registry.npmjs.org/sessionvoc-client/1.0.1", + "1.0.2": "http://registry.npmjs.org/sessionvoc-client/1.0.2", + "1.0.3": "http://registry.npmjs.org/sessionvoc-client/1.0.3", + "1.0.4": "http://registry.npmjs.org/sessionvoc-client/1.0.4", + "1.0.5": "http://registry.npmjs.org/sessionvoc-client/1.0.5", + "1.0.6": "http://registry.npmjs.org/sessionvoc-client/1.0.6" + }, + "dist": { + "1.0.0": { + "shasum": "eb4c4dfdd36371035bdb56647925fd71a0ddeed6", + "tarball": "http://registry.npmjs.org/sessionvoc-client/-/sessionvoc-client-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "87b318388a9952939bf1c6fae7c52532a33b7dc7", + "tarball": "http://registry.npmjs.org/sessionvoc-client/-/sessionvoc-client-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "2e0ae119e531ecd611e259a94bad057ad239c7bd", + "tarball": "http://registry.npmjs.org/sessionvoc-client/-/sessionvoc-client-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "a0a77c3e1152b31cfae8242a265d3609e644c698", + "tarball": "http://registry.npmjs.org/sessionvoc-client/-/sessionvoc-client-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "c121150fdb0cbb40f1b4fff6ca8f6086527dba54", + "tarball": "http://registry.npmjs.org/sessionvoc-client/-/sessionvoc-client-1.0.4.tgz" + }, + "1.0.5": { + "shasum": "cf79beac54a39d756161684440c7a2bf11dfc62e", + "tarball": "http://registry.npmjs.org/sessionvoc-client/-/sessionvoc-client-1.0.5.tgz" + }, + "1.0.6": { + "shasum": "65c231a4915bf62b507433a7b3b692046e6215b1", + "tarball": "http://registry.npmjs.org/sessionvoc-client/-/sessionvoc-client-1.0.6.tgz" + } + }, + "url": "http://registry.npmjs.org/sessionvoc-client/" + }, + "SessionWebSocket": { + "name": "SessionWebSocket", + "description": "socket.io & connect based session notification for websockets", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "bradleymeck", + "email": "bradley.meck@gmail.com" + } + ], + "author": { + "name": "bradleymeck" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/SessionWebSocket/0.1.0", + "0.1.1": "http://registry.npmjs.org/SessionWebSocket/0.1.1" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/SessionWebSocket/-/SessionWebSocket-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://packages:5984/SessionWebSocket/-/SessionWebSocket-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/SessionWebSocket/" + }, + "set": { + "name": "set", + "description": "An implementation of Sets in JavaScript", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "gkatsev", + "email": "me@gkatsev.com" + } + ], + "time": { + "modified": "2011-04-12T03:11:22.310Z", + "created": "2011-04-12T03:11:22.166Z", + "1.0.0": "2011-04-12T03:11:22.310Z" + }, + "author": { + "name": "Gary Katsevman", + "email": "me@gkatsev.com", + "url": "gkatsev.com" + }, + "repository": "git://github.com/gkatsev/set.js.git", + "versions": { + "1.0.0": "http://registry.npmjs.org/set/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "a065f28f9e128f0c09486818f00fe73388a2c174", + "tarball": "http://registry.npmjs.org/set/-/set-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/set/" + }, + "setInterval": { + "name": "setInterval", + "description": "returns `setInterval` if present", + "dist-tags": { + "latest": "0.4.9" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-07-14T22:32:30.082Z", + "created": "2011-07-14T22:32:29.720Z", + "0.4.9": "2011-07-14T22:32:30.082Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com", + "url": "http://coolaj86.info" + }, + "repository": { + "type": "git", + "url": "git://github.com/coolaj86/nodejs-libs-4-browser.git" + }, + "versions": { + "0.4.9": "http://registry.npmjs.org/setInterval/0.4.9" + }, + "dist": { + "0.4.9": { + "shasum": "2dcb693acb9db802e754f10bc5a623e89101ee9b", + "tarball": "http://registry.npmjs.org/setInterval/-/setInterval-0.4.9.tgz" + } + }, + "keywords": [ + "ender", + "setInterval" + ], + "url": "http://registry.npmjs.org/setInterval/" + }, + "setochka": { + "name": "setochka", + "description": "Setochka — divide et impera", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "afelix", + "email": "skryzhanovsky@gmail.com" + } + ], + "time": { + "modified": "2011-11-08T16:38:48.840Z", + "created": "2011-07-25T16:32:57.303Z", + "0.0.3": "2011-07-25T16:32:57.820Z", + "0.0.5": "2011-11-08T16:38:48.840Z" + }, + "author": { + "name": "Sergey Kryzhanovsky", + "email": "skryzhanovsky@ya.ru", + "url": "http://github.com/afelix" + }, + "repository": { + "type": "git", + "url": "git://github.com/afelix/setochka.git" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/setochka/0.0.3", + "0.0.5": "http://registry.npmjs.org/setochka/0.0.5" + }, + "dist": { + "0.0.3": { + "shasum": "fec0861fc91a7dc7202eac0788dc93690fe50ccd", + "tarball": "http://registry.npmjs.org/setochka/-/setochka-0.0.3.tgz" + }, + "0.0.5": { + "shasum": "aea84c79b2e6b668e44fd75ad3294203bca2351c", + "tarball": "http://registry.npmjs.org/setochka/-/setochka-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/setochka/" + }, + "setTimeout": { + "name": "setTimeout", + "description": "returns `setTimeout` if present", + "dist-tags": { + "latest": "0.4.9" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-07-14T22:33:35.497Z", + "created": "2011-07-14T22:33:35.091Z", + "0.4.9": "2011-07-14T22:33:35.497Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com", + "url": "http://coolaj86.info" + }, + "repository": { + "type": "git", + "url": "git://github.com/coolaj86/nodejs-libs-4-browser.git" + }, + "versions": { + "0.4.9": "http://registry.npmjs.org/setTimeout/0.4.9" + }, + "dist": { + "0.4.9": { + "shasum": "a8e2709467f13498ae65946b6d1b7d7922cf31b1", + "tarball": "http://registry.npmjs.org/setTimeout/-/setTimeout-0.4.9.tgz" + } + }, + "keywords": [ + "ender", + "setTimeout" + ], + "url": "http://registry.npmjs.org/setTimeout/" + }, + "settings": { + "name": "settings", + "description": "Simple, hierarchical environment-based app settings", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "mgutz", + "email": "mario@mgutz.com" + } + ], + "time": { + "modified": "2011-05-30T01:48:16.559Z", + "created": "2011-01-06T10:14:09.764Z", + "0.0.1": "2011-01-06T10:14:10.042Z", + "0.0.2": "2011-05-30T01:48:16.559Z" + }, + "author": { + "name": "Mario Gutierrez", + "email": "mario@mgutz.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mgutz/node-settings.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/settings/0.0.1", + "0.0.2": "http://registry.npmjs.org/settings/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "43f62801b353039c14f5ef3be34b3b551c545a11", + "tarball": "http://registry.npmjs.org/settings/-/settings-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "6989cd7d5d6711a956efc1d47e6cfc9862afaec9", + "tarball": "http://registry.npmjs.org/settings/-/settings-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/settings/" + }, + "sexy": { + "name": "sexy", + "description": "Sequential Proxy for writing Asynchronous with ECMAScript 5 Proxies", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "crabdude", + "email": "dude@noderiety.com" + } + ], + "time": { + "modified": "2011-01-20T22:03:50.265Z", + "created": "2011-01-20T19:52:35.061Z", + "0.0.1": "2011-01-20T19:52:35.273Z", + "0.0.2": "2011-01-20T20:14:34.678Z", + "0.0.3": "2011-01-20T22:03:50.265Z" + }, + "author": { + "name": "Adam Crabtree", + "email": "dude@noderiety.com", + "url": "http://noderiety.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/CrabDude/sexy.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/sexy/0.0.1", + "0.0.2": "http://registry.npmjs.org/sexy/0.0.2", + "0.0.3": "http://registry.npmjs.org/sexy/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "b381b462af53099e4ea70245572d29680a750d4c", + "tarball": "http://registry.npmjs.org/sexy/-/sexy-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "8cd47379c36f435e7b6e982a80c514ab1133f673", + "tarball": "http://registry.npmjs.org/sexy/-/sexy-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "4d80aeb28c477c5f9f700796a183f7ba6804c3d2", + "tarball": "http://registry.npmjs.org/sexy/-/sexy-0.0.3.tgz" + } + }, + "keywords": [ + "sexy", + "sequential", + "ECMAScript5", + "flow-control", + "proxy", + "__noSuchMethod__" + ], + "url": "http://registry.npmjs.org/sexy/" + }, + "sexy-args": { + "name": "sexy-args", + "description": "A sexy DSL for parsing the arguments passed into functions.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "bcoe", + "email": "bcoe@uoguelph.ca" + } + ], + "time": { + "modified": "2011-09-12T17:10:29.437Z", + "created": "2011-09-12T17:10:28.732Z", + "0.0.1": "2011-09-12T17:10:29.437Z" + }, + "author": { + "name": "Ben Coe", + "email": "bencoe@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/bcoe/sexy-args.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/sexy-args/0.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/sexy-args/-/sexy-args-0.0.1.tgz" + } + }, + "keywords": [ + "arguments", + "sexy" + ], + "url": "http://registry.npmjs.org/sexy-args/" + }, + "sfaClient": { + "name": "sfaClient", + "description": "Sales Force RESTful client", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "d2clouds", + "email": "don@d2clouds.com" + } + ], + "time": { + "modified": "2011-08-20T22:28:44.663Z", + "created": "2011-08-20T22:28:42.746Z", + "0.1.0": "2011-08-20T22:28:44.663Z" + }, + "author": { + "name": "Don Davis" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/sfaClient/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "6854f148e77c99851ab3163df6553e689030c3f2", + "tarball": "http://registry.npmjs.org/sfaClient/-/sfaClient-0.1.0.tgz" + } + }, + "keywords": [ + "rest", + "sfa", + "Sales Force" + ], + "url": "http://registry.npmjs.org/sfaClient/" + }, + "sfml": { + "name": "sfml", + "description": "Node v8 Bindings for SFML", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "npm-github-service", + "email": "bradley.meck@gmail.com" + } + ], + "author": { + "name": "bradley meck", + "email": "bradley.meck@gmail.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/bmeck/node-sfml.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/sfml/0.0.1", + "0.0.2": "http://registry.npmjs.org/sfml/0.0.2", + "0.0.3": "http://registry.npmjs.org/sfml/0.0.3" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/sfml/-/sfml-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/sfml/-/sfml-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/sfml/-/sfml-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/sfml/" + }, + "sfsm": { + "name": "sfsm", + "description": "Simple Finite State Machine. Based on Javascript State Machine v2 (https://github.com/jakesgordon/javascript-state-machine/) By jakesgordon", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "4031651", + "email": "4031651@gmail.com" + } + ], + "time": { + "modified": "2011-12-01T13:59:35.198Z", + "created": "2011-12-01T12:54:30.858Z", + "0.0.1": "2011-12-01T12:54:32.643Z", + "0.0.2": "2011-12-01T13:59:35.198Z" + }, + "author": { + "name": "Sergey Tsapenko", + "email": "4031651@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/4031651/node-javascript-state-machine.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/sfsm/0.0.1", + "0.0.2": "http://registry.npmjs.org/sfsm/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "323c3f78500d88af934603177d88af220ab4f014", + "tarball": "http://registry.npmjs.org/sfsm/-/sfsm-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "6424e345485f12db59d60e100817d52d07c714bf", + "tarball": "http://registry.npmjs.org/sfsm/-/sfsm-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/sfsm/" + }, + "sgrid": { + "name": "sgrid", + "description": "Nodejs Sendgrid client for the rest api", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "storify", + "email": "dev@storify.com" + } + ], + "time": { + "modified": "2011-12-07T23:20:20.230Z", + "created": "2011-12-07T23:20:19.010Z", + "0.0.2": "2011-12-07T23:20:20.230Z" + }, + "author": { + "name": "Storify", + "email": "dev@storify.com", + "url": "http://storify.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/storify/node-sendgrid.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/sgrid/0.0.2" + }, + "dist": { + "0.0.2": { + "shasum": "dee5a2b8a9065af149b7334079a78c034b069a05", + "tarball": "http://registry.npmjs.org/sgrid/-/sgrid-0.0.2.tgz" + } + }, + "keywords": [ + "mail", + "email" + ], + "url": "http://registry.npmjs.org/sgrid/" + }, + "sh": { + "name": "sh", + "description": "Javascript library for Unix shell scripting on node.js", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "guitt", + "email": "guillaume 4t tuton d0t fr" + } + ], + "time": { + "modified": "2011-08-23T00:56:58.444Z", + "created": "2010-12-30T01:00:31.243Z", + "0.0.1": "2010-12-30T01:00:31.795Z", + "0.0.2": "2011-08-23T00:56:58.444Z" + }, + "author": { + "name": "Guillaume Tuton" + }, + "repository": { + "type": "git", + "url": "git://github.com/guitt/sh.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/sh/0.0.1", + "0.0.2": "http://registry.npmjs.org/sh/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "ecf93c721397c1cca30da2346bf93b75442b9dea", + "tarball": "http://registry.npmjs.org/sh/-/sh-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "51fc0022646321492bd920fce439007cb5a02434", + "tarball": "http://registry.npmjs.org/sh/-/sh-0.0.2.tgz" + } + }, + "keywords": [ + "shell", + "script", + "unix", + "bash" + ], + "url": "http://registry.npmjs.org/sh/" + }, + "sha1": { + "name": "sha1", + "description": "function for hashing messages with SHA-1", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "pvorb", + "email": "paul@vorb.de" + } + ], + "time": { + "modified": "2011-11-20T23:01:49.494Z", + "created": "2011-09-18T17:13:08.927Z", + "0.0.0": "2011-09-18T17:13:11.190Z", + "0.0.1": "2011-11-20T23:01:49.494Z" + }, + "author": { + "name": "Paul Vorbach", + "email": "paul@vorb.de", + "url": "http://vorb.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/pvorb/node-sha1.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/sha1/0.0.0", + "0.0.1": "http://registry.npmjs.org/sha1/0.0.1" + }, + "dist": { + "0.0.0": { + "shasum": "051ee48b038edf12628fcdc0f33969f7a6214ea5", + "tarball": "http://registry.npmjs.org/sha1/-/sha1-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "a90110e1d409c45d0245aa7f7d45441716c0c2b9", + "tarball": "http://registry.npmjs.org/sha1/-/sha1-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/sha1/" + }, + "sha1_file": { + "name": "sha1_file", + "description": "A simple utility for getting the SHA1 hash of a file", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "dotmaster", + "email": "isimpl@gmail.com" + } + ], + "time": { + "modified": "2011-03-28T12:16:15.550Z", + "created": "2011-03-26T12:28:31.766Z", + "0.0.1": "2011-03-26T12:28:32.126Z", + "0.0.2": "2011-03-26T19:04:43.478Z", + "0.0.3": "2011-03-28T12:16:15.550Z" + }, + "author": { + "name": "Gregor Schwab", + "email": "greg@synaptic-labs.net", + "url": "www.synaptic-labs.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/dotmaster/sha1-file.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/sha1_file/0.0.1", + "0.0.2": "http://registry.npmjs.org/sha1_file/0.0.2", + "0.0.3": "http://registry.npmjs.org/sha1_file/0.0.3" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/sha1_file/-/sha1_file-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/sha1_file/-/sha1_file-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/sha1_file/-/sha1_file-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/sha1_file/" + }, + "shadows": { + "name": "shadows", + "description": "Simple experimental HTTP proxy with cache on top of node.js and redis.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "petrjanda", + "email": "petrjanda@me.com" + } + ], + "time": { + "modified": "2011-06-06T20:33:03.918Z", + "created": "2011-06-05T14:13:40.305Z", + "0.0.1": "2011-06-05T14:13:41.112Z", + "0.0.2": "2011-06-06T20:33:03.918Z" + }, + "author": { + "name": "Petr Janda", + "email": "petrjanda@me.com", + "url": "http://www.twitter.com/petrjanda" + }, + "repository": { + "type": "git", + "url": "git://github.com/petrjanda/shadows.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/shadows/0.0.1", + "0.0.2": "http://registry.npmjs.org/shadows/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "1df1b5f55f7aa8099c80812e5e0e6e009083f616", + "tarball": "http://registry.npmjs.org/shadows/-/shadows-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "4fc94642fec178636a738a4697cb836db066003a", + "tarball": "http://registry.npmjs.org/shadows/-/shadows-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/shadows/" + }, + "shake-n-bake": { + "name": "shake-n-bake", + "description": "Watch Something - When it (Shake)s then (Bake) do something else", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "jackhq", + "email": "tom@jackhq.com" + } + ], + "time": { + "modified": "2011-09-26T04:53:13.582Z", + "created": "2011-09-23T19:16:07.651Z", + "0.0.1": "2011-09-23T19:16:08.556Z", + "0.0.2": "2011-09-26T04:53:13.582Z" + }, + "author": { + "name": "Tom Wilson" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/shake-n-bake/0.0.1", + "0.0.2": "http://registry.npmjs.org/shake-n-bake/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "2370cc5c8df6bb161020be39693ff573b65f0131", + "tarball": "http://registry.npmjs.org/shake-n-bake/-/shake-n-bake-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "a1852cba131ce0c31d99f1ffc80f7357ec31dbef", + "tarball": "http://registry.npmjs.org/shake-n-bake/-/shake-n-bake-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/shake-n-bake/" + }, + "shallot": { + "name": "shallot", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "niclashoyer", + "email": "niclas@verbugt.de" + } + ], + "time": { + "modified": "2011-09-25T10:20:27.971Z", + "created": "2011-09-25T10:20:26.364Z", + "0.1.0": "2011-09-25T10:20:27.971Z" + }, + "author": { + "name": "Niclas Hoyer", + "email": "https://github.com/niclashoyer" + }, + "repository": { + "type": "git", + "url": "git://github.com/niclashoyer/shallot.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/shallot/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "6a9c3c1ace855e952b386fbab69108d94092c593", + "tarball": "http://registry.npmjs.org/shallot/-/shallot-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/shallot/" + }, + "share": { + "name": "share", + "description": "A database for concurrent document editing", + "dist-tags": { + "latest": "0.5.0-pre" + }, + "maintainers": [ + { + "name": "josephg", + "email": "josephg@gmail.com" + } + ], + "time": { + "modified": "2011-11-05T17:06:44.929Z", + "created": "2011-04-20T14:04:28.414Z", + "0.1.0": "2011-04-20T14:04:29.574Z", + "0.1.1": "2011-04-30T00:59:18.080Z", + "0.2.1": "2011-07-06T06:54:04.064Z", + "0.2.2": "2011-07-15T14:45:24.782Z", + "0.3.0": "2011-08-14T05:51:53.200Z", + "0.4.0": "2011-09-17T17:01:14.378Z", + "0.4.1": "2011-09-19T13:17:32.493Z", + "0.5.0-pre": "2011-11-05T17:06:44.929Z" + }, + "author": { + "name": "Joseph Gentle", + "email": "josephg@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/josephg/sharejs.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/share/0.1.0", + "0.1.1": "http://registry.npmjs.org/share/0.1.1", + "0.2.1": "http://registry.npmjs.org/share/0.2.1", + "0.2.2": "http://registry.npmjs.org/share/0.2.2", + "0.3.0": "http://registry.npmjs.org/share/0.3.0", + "0.4.0": "http://registry.npmjs.org/share/0.4.0", + "0.4.1": "http://registry.npmjs.org/share/0.4.1", + "0.5.0-pre": "http://registry.npmjs.org/share/0.5.0-pre" + }, + "dist": { + "0.1.0": { + "shasum": "23a0346a4021b42c63d3f8e5557ca160306f828a", + "tarball": "http://registry.npmjs.org/share/-/share-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "572516600788093202961826c439eda22462d771", + "tarball": "http://registry.npmjs.org/share/-/share-0.1.1.tgz" + }, + "0.2.1": { + "shasum": "2b01657d9011b72b1041f50b507cb9957d1475a8", + "tarball": "http://registry.npmjs.org/share/-/share-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "f655a11b263cc2a0ca5b6ad2a56672750ad1d22c", + "tarball": "http://registry.npmjs.org/share/-/share-0.2.2.tgz" + }, + "0.3.0": { + "shasum": "c21fdb70c98fe6cc1b57dabf9a637bdde8566876", + "tarball": "http://registry.npmjs.org/share/-/share-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "e6aa381b7826759ffbea3c7cc776e6101f5dd895", + "tarball": "http://registry.npmjs.org/share/-/share-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "d72a3f6773c89bd59d5b904df6b437b8efa47438", + "tarball": "http://registry.npmjs.org/share/-/share-0.4.1.tgz" + }, + "0.5.0-pre": { + "shasum": "34311487e65caa8899ec849693e7034cdb7473a7", + "tarball": "http://registry.npmjs.org/share/-/share-0.5.0-pre.tgz" + } + }, + "keywords": [ + "operational transformation", + "ot", + "concurrent", + "collaborative", + "database", + "server" + ], + "url": "http://registry.npmjs.org/share/" + }, + "shared-views": { + "name": "shared-views", + "description": "Let your server and browser share your views.", + "dist-tags": { + "latest": "0.7.8" + }, + "maintainers": [ + { + "name": "aaronblohowiak", + "email": "aaron.blohowiak@gmail.com" + } + ], + "time": { + "modified": "2011-10-13T00:00:45.143Z", + "created": "2011-01-30T02:01:55.364Z", + "0.5.3": "2011-01-30T02:01:55.817Z", + "0.6.1": "2011-04-29T17:10:13.180Z", + "0.6.2": "2011-05-16T00:13:42.509Z", + "0.7.0": "2011-05-19T07:04:13.706Z", + "0.7.1": "2011-06-18T20:34:56.341Z", + "0.7.8": "2011-10-13T00:00:45.143Z" + }, + "author": { + "name": "Aaron Blohowiak", + "email": "aaron.blohowiak@gmail.com", + "url": "https://github.com/aaronblohowiak" + }, + "repository": { + "type": "git", + "url": "git://github.com/aaronblohowiak/shared-views.git" + }, + "versions": { + "0.5.3": "http://registry.npmjs.org/shared-views/0.5.3", + "0.6.1": "http://registry.npmjs.org/shared-views/0.6.1", + "0.6.2": "http://registry.npmjs.org/shared-views/0.6.2", + "0.7.0": "http://registry.npmjs.org/shared-views/0.7.0", + "0.7.1": "http://registry.npmjs.org/shared-views/0.7.1", + "0.7.8": "http://registry.npmjs.org/shared-views/0.7.8" + }, + "dist": { + "0.5.3": { + "shasum": "c689a3825310ca3a0e0db396ea6ef4ecf24ad7f9", + "tarball": "http://registry.npmjs.org/shared-views/-/shared-views-0.5.3.tgz" + }, + "0.6.1": { + "shasum": "ec565d610940fc9f350f6ed2c0cfb7892d6bf2a5", + "tarball": "http://registry.npmjs.org/shared-views/-/shared-views-0.6.1.tgz" + }, + "0.6.2": { + "shasum": "63494b29e06260f14ca5d092a9714b78ddfae627", + "tarball": "http://registry.npmjs.org/shared-views/-/shared-views-0.6.2.tgz" + }, + "0.7.0": { + "shasum": "4a0649b1dde4e8c8d357dbd78f80ee862231ffb9", + "tarball": "http://registry.npmjs.org/shared-views/-/shared-views-0.7.0.tgz" + }, + "0.7.1": { + "shasum": "006dc13449a70c0586a9503eaad08bb54af852e5", + "tarball": "http://registry.npmjs.org/shared-views/-/shared-views-0.7.1.tgz" + }, + "0.7.8": { + "shasum": "5a947a4c994fa1604787150743c9caeaf49ae42e", + "tarball": "http://registry.npmjs.org/shared-views/-/shared-views-0.7.8.tgz" + } + }, + "url": "http://registry.npmjs.org/shared-views/" + }, + "sharedjs": { + "name": "sharedjs", + "description": "The most needed utility functions for writing shared code between browser and client.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "kof", + "email": "oleg008@gmail.com" + } + ], + "time": { + "modified": "2011-03-23T11:25:00.425Z", + "created": "2011-01-26T20:07:17.231Z", + "0.0.1": "2011-01-26T20:07:17.765Z", + "0.0.2": "2011-03-10T13:59:20.141Z" + }, + "author": { + "name": "Oleg Slobodskoi", + "email": "oleg008@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/kof/sharedjs.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/sharedjs/0.0.1", + "0.0.2": "http://registry.npmjs.org/sharedjs/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "618b8c3a50309f72f1b1f97eedd48e587f2c4ba7", + "tarball": "http://registry.npmjs.org/sharedjs/-/sharedjs-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c5fdb24a3555a050fa3c8540a6bb7ad3931027c6", + "tarball": "http://registry.npmjs.org/sharedjs/-/sharedjs-0.0.2.tgz" + } + }, + "keywords": [ + "validate", + "validation", + "utils", + "shared", + "crossplatform", + "extend", + "inherits", + "noop", + "toArray", + "typeof", + "each", + "bind" + ], + "url": "http://registry.npmjs.org/sharedjs/" + }, + "Sheet": { + "name": "Sheet", + "description": "100% DOM-less JavaScript implementation of the styleSheets, cssRule & style APIs \nSupports custom and browser-incompatible CSS syntax like nested rules", + "dist-tags": { + "latest": "1.0.2rc1" + }, + "maintainers": [ + { + "name": "subtlegradient", + "email": "thomas@subtlegradient.com" + } + ], + "versions": { + "1.0.1": "http://registry.npmjs.org/Sheet/1.0.1", + "1.0.2rc1": "http://registry.npmjs.org/Sheet/1.0.2rc1" + }, + "dist": { + "1.0.1": { + "tarball": "http://packages:5984/Sheet/-/Sheet-1.0.1.tgz" + }, + "1.0.2rc1": { + "tarball": "http://packages:5984/Sheet/-/Sheet-1.0.2rc1.tgz" + } + }, + "keywords": [ + "CSS", + "CSSOM", + "styleSheet", + "cssRule", + "style", + "parse" + ], + "url": "http://registry.npmjs.org/Sheet/" + }, + "shell": { + "name": "shell", + "description": "Full features and pretty console applications", + "dist-tags": { + "latest": "0.2.3" + }, + "maintainers": [ + { + "name": "david", + "email": "david@adaltas.com" + } + ], + "time": { + "modified": "2011-11-29T23:00:31.331Z", + "created": "2011-05-03T00:07:30.522Z", + "0.0.1": "2011-05-03T00:07:31.235Z", + "0.0.2": "2011-05-05T15:20:37.542Z", + "0.0.3": "2011-05-06T13:08:50.176Z", + "0.0.5": "2011-05-17T14:55:36.199Z", + "0.0.6": "2011-05-17T21:36:15.931Z", + "0.0.7": "2011-05-24T11:16:46.414Z", + "0.0.8": "2011-05-26T20:39:01.480Z", + "0.0.9": "2011-06-01T13:19:51.857Z", + "0.10.0": "2011-07-29T12:49:57.785Z", + "0.10.1": "2011-08-02T21:13:58.687Z", + "0.10.2": "2011-08-10T16:08:10.402Z", + "0.1.0": "2011-10-06T11:37:12.325Z", + "0.1.1": "2011-10-06T11:37:52.561Z", + "0.1.2": "2011-10-06T11:38:21.660Z", + "0.2.0": "2011-10-06T11:39:32.346Z", + "0.2.1": "2011-10-20T15:51:19.576Z", + "0.2.2": "2011-10-29T15:56:59.763Z", + "0.2.3": "2011-11-29T23:00:31.331Z" + }, + "author": { + "name": "David Worms", + "email": "david@adaltas.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/wdavidw/node-shell.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/shell/0.0.1", + "0.0.2": "http://registry.npmjs.org/shell/0.0.2", + "0.0.3": "http://registry.npmjs.org/shell/0.0.3", + "0.0.5": "http://registry.npmjs.org/shell/0.0.5", + "0.0.6": "http://registry.npmjs.org/shell/0.0.6", + "0.0.7": "http://registry.npmjs.org/shell/0.0.7", + "0.0.8": "http://registry.npmjs.org/shell/0.0.8", + "0.0.9": "http://registry.npmjs.org/shell/0.0.9", + "0.1.0": "http://registry.npmjs.org/shell/0.1.0", + "0.1.1": "http://registry.npmjs.org/shell/0.1.1", + "0.1.2": "http://registry.npmjs.org/shell/0.1.2", + "0.2.0": "http://registry.npmjs.org/shell/0.2.0", + "0.2.1": "http://registry.npmjs.org/shell/0.2.1", + "0.2.2": "http://registry.npmjs.org/shell/0.2.2", + "0.2.3": "http://registry.npmjs.org/shell/0.2.3" + }, + "dist": { + "0.0.1": { + "shasum": "300dd0d2640eaec349baf0af399397dd80a00e3c", + "tarball": "http://registry.npmjs.org/shell/-/shell-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "d9979d909a2c940521dcf01b144dc5d998c755c3", + "tarball": "http://registry.npmjs.org/shell/-/shell-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "d24f70b194a8888d348a5802bb2d4eaca231adad", + "tarball": "http://registry.npmjs.org/shell/-/shell-0.0.3.tgz" + }, + "0.0.5": { + "shasum": "1990bd5eb710eedf16228aaa8b25922e4cd72bff", + "tarball": "http://registry.npmjs.org/shell/-/shell-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "180e371eb11581b91702ed0660c31560b37303ff", + "tarball": "http://registry.npmjs.org/shell/-/shell-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "efac793468d632d02d60b73cb266451717c30a9c", + "tarball": "http://registry.npmjs.org/shell/-/shell-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "70b6a81fa0d2d26256af8c9bf19999bfb26db85d", + "tarball": "http://registry.npmjs.org/shell/-/shell-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "011df4ca61e6f07659b9b73bf5fd742cc0dc52cd", + "tarball": "http://registry.npmjs.org/shell/-/shell-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "3424f95f2ee0435edfed462935fd80c565c82e5d", + "tarball": "http://registry.npmjs.org/shell/-/shell-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "f2da6c5176a404a38e98a835770820cb05a697a3", + "tarball": "http://registry.npmjs.org/shell/-/shell-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "e1b05218c7fe9b4580d546cb182006a21a3677b0", + "tarball": "http://registry.npmjs.org/shell/-/shell-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "4cb790ab6b00977e94954cda05adff3bb241929f", + "tarball": "http://registry.npmjs.org/shell/-/shell-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "e57d90b8e55c9abc522c6373e72427c7f7a71a83", + "tarball": "http://registry.npmjs.org/shell/-/shell-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "293bc3e7947e68d59e5204255150d22df8ae1492", + "tarball": "http://registry.npmjs.org/shell/-/shell-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "e776dc9419ee8ed7436aa72f37462b9277186907", + "tarball": "http://registry.npmjs.org/shell/-/shell-0.2.3.tgz" + } + }, + "keywords": [ + "cli", + "console", + "colors", + "xterm" + ], + "url": "http://registry.npmjs.org/shell/" + }, + "shelld": { + "name": "shelld", + "description": "Daemon to connect common shell services to a remote ioserver over HTTP.", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "jhh", + "email": "jhh@sendanor.com" + } + ], + "time": { + "modified": "2011-09-02T14:57:01.066Z", + "created": "2011-09-02T14:56:59.057Z", + "0.0.6": "2011-09-02T14:57:01.066Z" + }, + "author": { + "name": "Jaakko-Heikki Heusala", + "email": "jheusala@iki.fi" + }, + "repository": { + "type": "git", + "url": "git://github.com/jheusala/oulu.git" + }, + "versions": { + "0.0.6": "http://registry.npmjs.org/shelld/0.0.6" + }, + "dist": { + "0.0.6": { + "shasum": "b832216d6797167598e8509e9c88f9c6f35f1319", + "tarball": "http://registry.npmjs.org/shelld/-/shelld-0.0.6.tgz" + } + }, + "url": "http://registry.npmjs.org/shelld/" + }, + "shellwords": { + "name": "shellwords", + "description": "Manipulate strings according to the word parsing rules of the UNIX Bourne shell.", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "# Shellwords\n\nShellwords provides a function to manipulate strings according to the word parsing rules of the UNIX Bourne shell.\n\n## Installation\n\nAdd \"shellwords\" to your `package.json` file and run `npm install`.\n\n## Example\n\n``` javascript\nvar split = require(\"shellwords\").split;\n\nconsole.log(split(\"foo 'bar baz'\"));\n// [\"foo\", \"bar baz\"]\n```\n", + "maintainers": [ + { + "name": "jimmycuadra", + "email": "jimmycuadra@gmail.com" + } + ], + "time": { + "modified": "2011-11-13T13:39:37.483Z", + "created": "2011-11-13T13:39:36.405Z", + "0.0.1": "2011-11-13T13:39:37.483Z" + }, + "author": { + "name": "Jimmy Cuadra", + "email": "jimmy@jimmycuadra.com", + "url": "http://jimmycuadra.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jimmycuadra/shellwords.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/shellwords/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "a0ee3baca5a9e345b7748018e16728c3f7621b8b", + "tarball": "http://registry.npmjs.org/shellwords/-/shellwords-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/shellwords/" + }, + "sherlock": { + "name": "sherlock", + "description": "Tiny test framework.", + "dist-tags": { + "latest": "0.1.7" + }, + "maintainers": [ + { + "name": "jakeluer", + "email": "jake.luer@incatern.com" + } + ], + "time": { + "modified": "2011-11-01T10:47:11.087Z", + "created": "2011-10-04T19:06:27.339Z", + "0.0.1": "2011-10-04T19:06:28.233Z", + "0.1.2": "2011-10-19T02:39:22.395Z", + "0.1.3": "2011-10-19T04:40:20.905Z", + "0.1.4": "2011-10-19T06:03:20.928Z", + "0.1.5": "2011-10-25T14:22:23.236Z", + "0.1.6": "2011-10-25T15:40:30.345Z", + "0.1.7": "2011-11-01T10:47:11.087Z" + }, + "author": { + "name": "Jake Luer", + "email": "jake@alogicalparadox.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/logicalparadox/sherlock.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/sherlock/0.0.1", + "0.1.2": "http://registry.npmjs.org/sherlock/0.1.2", + "0.1.3": "http://registry.npmjs.org/sherlock/0.1.3", + "0.1.4": "http://registry.npmjs.org/sherlock/0.1.4", + "0.1.5": "http://registry.npmjs.org/sherlock/0.1.5", + "0.1.6": "http://registry.npmjs.org/sherlock/0.1.6", + "0.1.7": "http://registry.npmjs.org/sherlock/0.1.7" + }, + "dist": { + "0.0.1": { + "shasum": "e20efa26bbb208cc449c54ebf39e778fffa24080", + "tarball": "http://registry.npmjs.org/sherlock/-/sherlock-0.0.1.tgz" + }, + "0.1.2": { + "shasum": "4e1d57500f801a5d5ac9154272e3beac84fe45b6", + "tarball": "http://registry.npmjs.org/sherlock/-/sherlock-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "d7ca13a78a8eb8dc0c1953aef8a2a8c4c7d24724", + "tarball": "http://registry.npmjs.org/sherlock/-/sherlock-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "739fd78642964c7ed60d3b89e47da4a7adf78a82", + "tarball": "http://registry.npmjs.org/sherlock/-/sherlock-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "78f4dee118903a0949bcad22c104346a8f895de4", + "tarball": "http://registry.npmjs.org/sherlock/-/sherlock-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "0dd315623393e30d1522e0732d8eb52bbba59696", + "tarball": "http://registry.npmjs.org/sherlock/-/sherlock-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "f30d027bef2da97586f6be3a34f034ea9a1ceb6b", + "tarball": "http://registry.npmjs.org/sherlock/-/sherlock-0.1.7.tgz" + } + }, + "keywords": [ + "testing", + "assert", + "test framework", + "tdd", + "bdd" + ], + "url": "http://registry.npmjs.org/sherlock/" + }, + "shet-client": { + "name": "shet-client", + "description": "SHET client", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "tomn", + "email": "tom@tomn.co.uk" + } + ], + "time": { + "modified": "2011-11-10T01:11:43.159Z", + "created": "2011-11-10T00:56:42.360Z", + "0.0.0": "2011-11-10T01:00:59.127Z", + "0.0.1": "2011-11-10T01:07:04.006Z", + "0.0.2": "2011-11-10T01:11:43.159Z" + }, + "author": { + "name": "Thomas Nixon", + "email": "tom@tomn.co.uk", + "url": "http://tomn.co.uk" + }, + "repository": { + "type": "git", + "url": "git://github.com/18sg/node-shet-client.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/shet-client/0.0.0", + "0.0.1": "http://registry.npmjs.org/shet-client/0.0.1", + "0.0.2": "http://registry.npmjs.org/shet-client/0.0.2" + }, + "dist": { + "0.0.0": { + "shasum": "779b0b07c857cbf771d27f6cdf3d687df332e8d9", + "tarball": "http://registry.npmjs.org/shet-client/-/shet-client-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "431e366aa101050f3f99d40aaacbe7cc8a1fc59f", + "tarball": "http://registry.npmjs.org/shet-client/-/shet-client-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "0619f0216d04c3b0c7ef92dc50860b566a35d762", + "tarball": "http://registry.npmjs.org/shet-client/-/shet-client-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/shet-client/" + }, + "shhnode": { + "name": "shhnode", + "description": "(S)imple (H)TTP (H)andler for (Node) is node.js module that provides a simple framework for building powerful http servers", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "ellacochran", + "email": "ellacochran@rocketmail.com" + } + ], + "time": { + "modified": "2011-10-19T17:28:05.114Z", + "created": "2011-10-19T17:28:04.410Z", + "0.0.1": "2011-10-19T17:28:05.114Z" + }, + "author": { + "name": "Ella Cochran", + "email": "ellacochran@rocketmail.com", + "url": "https://github.com/ellacochran" + }, + "repository": { + "type": "git", + "url": "git://github.com/ellacochran/shhnode.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/shhnode/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "0a83fe0d12d5a1c7578f650ec5761574334a71bc", + "tarball": "http://registry.npmjs.org/shhnode/-/shhnode-0.0.1.tgz" + } + }, + "keywords": [ + "web", + "server" + ], + "url": "http://registry.npmjs.org/shhnode/" + }, + "shift": { + "name": "shift", + "description": "Template framework", + "dist-tags": { + "latest": "0.1.8" + }, + "maintainers": [ + { + "name": "viatropos", + "email": "lancejpollard@gmail.com" + } + ], + "time": { + "modified": "2011-11-14T06:38:41.933Z", + "created": "2011-10-23T08:36:55.030Z", + "0.1.1": "2011-10-23T08:36:55.618Z", + "0.1.2": "2011-11-01T21:48:29.043Z", + "0.1.3": "2011-11-01T23:03:23.054Z", + "0.1.4": "2011-11-02T22:29:31.402Z", + "0.1.5": "2011-11-14T00:14:50.691Z", + "0.1.6": "2011-11-14T06:14:10.042Z", + "0.1.7": "2011-11-14T06:15:57.852Z", + "0.1.8": "2011-11-14T06:38:41.933Z" + }, + "author": { + "name": "Lance Pollard", + "email": "lancejpollard@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/viatropos/shift.js.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/shift/0.1.1", + "0.1.2": "http://registry.npmjs.org/shift/0.1.2", + "0.1.3": "http://registry.npmjs.org/shift/0.1.3", + "0.1.4": "http://registry.npmjs.org/shift/0.1.4", + "0.1.5": "http://registry.npmjs.org/shift/0.1.5", + "0.1.6": "http://registry.npmjs.org/shift/0.1.6", + "0.1.7": "http://registry.npmjs.org/shift/0.1.7", + "0.1.8": "http://registry.npmjs.org/shift/0.1.8" + }, + "dist": { + "0.1.1": { + "shasum": "d0877a4bc4b887a24acddfc10053507681cba0ef", + "tarball": "http://registry.npmjs.org/shift/-/shift-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "73e49f75523b505e45f505dcb2facb523c01ee55", + "tarball": "http://registry.npmjs.org/shift/-/shift-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "7d5d780e8dc8038c2e4298ddccea77ba6dd4dd94", + "tarball": "http://registry.npmjs.org/shift/-/shift-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "0a495e0476ada61837a972a0ab77be1ebfffa66a", + "tarball": "http://registry.npmjs.org/shift/-/shift-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "19963c277dbe989e918e2c3a3c5f93533103c017", + "tarball": "http://registry.npmjs.org/shift/-/shift-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "15d9b289303792bc952fb43623f53631217eb904", + "tarball": "http://registry.npmjs.org/shift/-/shift-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "eaa44569661ccc0724fe90cbd5ada327541e9501", + "tarball": "http://registry.npmjs.org/shift/-/shift-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "1b2ac8d7de2d48e07be32fe5efd2e77d509057f2", + "tarball": "http://registry.npmjs.org/shift/-/shift-0.1.8.tgz" + } + }, + "keywords": [ + "framework", + "compression", + "node" + ], + "url": "http://registry.npmjs.org/shift/" + }, + "shimify": { + "name": "shimify", + "description": "browserify middleware to prepend es5-shim", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-07-13T12:23:48.892Z", + "created": "2011-07-13T12:23:48.007Z", + "0.0.0": "2011-07-13T12:23:48.892Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-shimify.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/shimify/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "fbec768bba326b48e089ca7db0bb8d57f5d64d23", + "tarball": "http://registry.npmjs.org/shimify/-/shimify-0.0.0.tgz" + } + }, + "keywords": [ + "es5", + "shim", + "middleware", + "browserify", + "browser" + ], + "url": "http://registry.npmjs.org/shimify/" + }, + "shinout.struct": { + "name": "shinout.struct", + "description": "a helper to create getter/setter properties with validations, type checking, defaults, private, required, immutable, and so on...", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "shinout", + "email": "shinout310@gmail.com" + } + ], + "time": { + "modified": "2011-10-28T07:59:15.705Z", + "created": "2011-10-28T07:59:12.907Z", + "0.1.0": "2011-10-28T07:59:15.705Z" + }, + "author": { + "name": "SHIN Suzuki", + "email": "shinout310@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/shinout/Struct.js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/shinout.struct/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "07b9f648d363be84f3d948e20742ab6660493dab", + "tarball": "http://registry.npmjs.org/shinout.struct/-/shinout.struct-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/shinout.struct/" + }, + "ship": { + "name": "ship", + "description": "Ship helps you write less callbacks", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "sam-mccall", + "email": "sam.mccall@gmail.com" + } + ], + "time": { + "modified": "2011-01-13T19:00:16.565Z", + "created": "2011-01-13T19:00:15.890Z", + "0.0.1": "2011-01-13T19:00:16.565Z" + }, + "author": { + "name": "Sam McCall", + "email": "sam.mccall@gmail.com" + }, + "repository": "git://github.com/sam-mccall/ship.git", + "versions": { + "0.0.1": "http://registry.npmjs.org/ship/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "6f31443bd2788d2b5b159881bc006a26f1fc7d3f", + "tarball": "http://registry.npmjs.org/ship/-/ship-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/ship/" + }, + "ShipItJS": { + "name": "ShipItJS", + "description": "npm package release management tool", + "dist-tags": { + "latest": "0.1.7" + }, + "maintainers": [ + { + "name": "hide_o_55", + "email": "hide.o.j55@gmail.com" + } + ], + "time": { + "modified": "2011-11-18T17:11:36.154Z", + "created": "2011-10-30T16:02:03.526Z", + "0.0.9": "2011-10-30T16:02:06.002Z", + "0.1.0": "2011-11-02T10:26:37.083Z", + "0.1.1": "2011-11-03T20:03:19.381Z", + "0.1.2": "2011-11-05T05:01:25.324Z", + "0.1.3": "2011-11-05T17:35:25.399Z", + "0.1.4": "2011-11-08T12:06:20.143Z", + "0.1.5": "2011-11-14T17:16:12.517Z", + "0.1.6": "2011-11-17T18:16:28.708Z", + "0.1.7": "2011-11-18T17:11:36.154Z" + }, + "author": { + "name": "Hideaki Ohno", + "email": "hide.o.j55{at}gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/hideo55/shipitjs.git" + }, + "versions": { + "0.1.4": "http://registry.npmjs.org/ShipItJS/0.1.4", + "0.1.5": "http://registry.npmjs.org/ShipItJS/0.1.5", + "0.1.6": "http://registry.npmjs.org/ShipItJS/0.1.6", + "0.1.7": "http://registry.npmjs.org/ShipItJS/0.1.7" + }, + "dist": { + "0.1.4": { + "shasum": "64aaaaad3f25e8aac1104ad28207efcd1f280290", + "tarball": "http://registry.npmjs.org/ShipItJS/-/ShipItJS-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "4299edcf764fac069f3825d5afc75bbc9303454e", + "tarball": "http://registry.npmjs.org/ShipItJS/-/ShipItJS-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "9644461cd43585c188b9aaac63fc549509177b8a", + "tarball": "http://registry.npmjs.org/ShipItJS/-/ShipItJS-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "ce4d124c7e522b9510d5f1f38194e0c100583542", + "tarball": "http://registry.npmjs.org/ShipItJS/-/ShipItJS-0.1.7.tgz" + } + }, + "keywords": [ + "release management", + "npm", + "git", + "hg" + ], + "url": "http://registry.npmjs.org/ShipItJS/" + }, + "shmakowiki": { + "name": "shmakowiki", + "description": "Yet another wiki dialect, inspired by WackoWiki and WikiCreole", + "dist-tags": { + "latest": "0.2.4", + "stable": "0.2.4" + }, + "maintainers": [ + { + "name": "veged", + "email": "veged@mail.ru" + }, + { + "name": "arikon", + "email": "peimei@ya.ru" + }, + { + "name": "fedor.indutny", + "email": "fedor.indutny@gmail.com" + } + ], + "author": { + "name": "Sergey Berezhnoy", + "email": "veged@mail.ru", + "url": "http://github.com/veged" + }, + "repository": { + "type": "git", + "url": "git://github.com/veged/shmakowiki.git" + }, + "time": { + "modified": "2011-12-12T17:36:40.570Z", + "created": "2011-03-22T12:34:37.561Z", + "0.1.1": "2011-03-22T12:34:37.561Z", + "0.1.2": "2011-03-22T12:34:37.561Z", + "0.1.3": "2011-03-22T12:34:37.561Z", + "0.1.4": "2011-03-22T12:52:04.668Z", + "0.2.0": "2011-09-02T09:59:12.656Z", + "0.2.1": "2011-09-30T09:32:15.982Z", + "0.2.2": "2011-11-24T11:42:38.434Z", + "0.2.3": "2011-11-30T10:20:44.170Z", + "0.2.4": "2011-12-12T17:35:51.706Z" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/shmakowiki/0.1.1", + "0.1.2": "http://registry.npmjs.org/shmakowiki/0.1.2", + "0.1.3": "http://registry.npmjs.org/shmakowiki/0.1.3", + "0.1.4": "http://registry.npmjs.org/shmakowiki/0.1.4", + "0.2.0": "http://registry.npmjs.org/shmakowiki/0.2.0", + "0.2.1": "http://registry.npmjs.org/shmakowiki/0.2.1", + "0.2.2": "http://registry.npmjs.org/shmakowiki/0.2.2", + "0.2.3": "http://registry.npmjs.org/shmakowiki/0.2.3", + "0.2.4": "http://registry.npmjs.org/shmakowiki/0.2.4" + }, + "dist": { + "0.1.1": { + "tarball": "http://packages:5984/shmakowiki/-/shmakowiki-0.1.1.tgz" + }, + "0.1.2": { + "tarball": "http://registry.npmjs.org/shmakowiki/-/shmakowiki-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "4ba120bfb33bc672e051a31bc274870c8bb8ecb4", + "tarball": "http://registry.npmjs.org/shmakowiki/-/shmakowiki-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "f0bdc0d9c3d3a7d8df73e5934096ba191a879213", + "tarball": "http://registry.npmjs.org/shmakowiki/-/shmakowiki-0.1.4.tgz" + }, + "0.2.0": { + "shasum": "e7d82486bc80a4e8f18277890560ce25b2c56ee9", + "tarball": "http://registry.npmjs.org/shmakowiki/-/shmakowiki-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "48bdb2d4c76f900a26fd97a33d0cd704d4ddc00d", + "tarball": "http://registry.npmjs.org/shmakowiki/-/shmakowiki-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "61f4524cdf7b5a0c18b486a27ca6a8c03584731c", + "tarball": "http://registry.npmjs.org/shmakowiki/-/shmakowiki-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "a5e1aedf2f0e425fe6a10b10ececd447853b9e6a", + "tarball": "http://registry.npmjs.org/shmakowiki/-/shmakowiki-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "9a88a8105bccc17d2bd14e637639404095139602", + "tarball": "http://registry.npmjs.org/shmakowiki/-/shmakowiki-0.2.4.tgz" + } + }, + "url": "http://registry.npmjs.org/shmakowiki/" + }, + "short": { + "name": "short", + "description": "NodeJS URL Shortener backed by MongooseJS", + "dist-tags": { + "latest": "0.2.6" + }, + "maintainers": [ + { + "name": "edwardhotchkiss", + "email": "e@ingk.com" + } + ], + "time": { + "modified": "2011-12-10T06:02:38.732Z", + "created": "2011-09-27T17:55:02.624Z", + "0.0.3": "2011-09-27T17:55:03.011Z", + "0.0.5": "2011-09-27T19:38:20.474Z", + "0.0.6": "2011-09-27T20:03:48.055Z", + "0.0.7": "2011-09-28T15:42:33.935Z", + "0.0.8": "2011-09-29T21:11:40.905Z", + "0.0.9": "2011-09-29T21:18:22.530Z", + "0.1.0": "2011-09-30T12:43:48.735Z", + "0.1.1": "2011-09-30T15:23:18.109Z", + "0.1.2": "2011-10-06T22:25:41.833Z", + "0.1.3": "2011-11-02T22:05:44.515Z", + "0.1.4": "2011-11-07T14:59:01.459Z", + "0.1.5": "2011-11-07T15:09:42.350Z", + "0.1.6": "2011-11-17T22:42:42.999Z", + "0.1.7": "2011-11-26T16:08:45.680Z", + "0.1.8": "2011-11-26T16:36:22.425Z", + "0.1.9": "2011-11-29T15:29:11.544Z", + "0.2.0": "2011-11-29T15:39:36.309Z", + "0.2.1": "2011-11-29T23:33:37.819Z", + "0.2.2": "2011-11-29T23:39:03.848Z", + "0.2.3": "2011-12-02T18:41:04.230Z", + "0.2.4": "2011-12-03T01:48:44.992Z", + "0.2.5": "2011-12-10T05:59:48.454Z", + "0.2.6": "2011-12-10T06:02:38.732Z" + }, + "author": { + "name": "Edward Hotchkiss", + "email": "e@ingk.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/edwardhotchkiss/short.git" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/short/0.0.3", + "0.0.5": "http://registry.npmjs.org/short/0.0.5", + "0.0.6": "http://registry.npmjs.org/short/0.0.6", + "0.0.7": "http://registry.npmjs.org/short/0.0.7", + "0.0.8": "http://registry.npmjs.org/short/0.0.8", + "0.0.9": "http://registry.npmjs.org/short/0.0.9", + "0.1.0": "http://registry.npmjs.org/short/0.1.0", + "0.1.1": "http://registry.npmjs.org/short/0.1.1", + "0.1.2": "http://registry.npmjs.org/short/0.1.2", + "0.1.3": "http://registry.npmjs.org/short/0.1.3", + "0.1.4": "http://registry.npmjs.org/short/0.1.4", + "0.1.5": "http://registry.npmjs.org/short/0.1.5", + "0.1.6": "http://registry.npmjs.org/short/0.1.6", + "0.1.7": "http://registry.npmjs.org/short/0.1.7", + "0.1.8": "http://registry.npmjs.org/short/0.1.8", + "0.1.9": "http://registry.npmjs.org/short/0.1.9", + "0.2.0": "http://registry.npmjs.org/short/0.2.0", + "0.2.1": "http://registry.npmjs.org/short/0.2.1", + "0.2.2": "http://registry.npmjs.org/short/0.2.2", + "0.2.3": "http://registry.npmjs.org/short/0.2.3", + "0.2.4": "http://registry.npmjs.org/short/0.2.4", + "0.2.5": "http://registry.npmjs.org/short/0.2.5", + "0.2.6": "http://registry.npmjs.org/short/0.2.6" + }, + "dist": { + "0.0.3": { + "shasum": "b5af69104c7eab4d704aaf6abbdac046d465165b", + "tarball": "http://registry.npmjs.org/short/-/short-0.0.3.tgz" + }, + "0.0.5": { + "shasum": "7517427a8508d5c61556a121c11dd76dc6370524", + "tarball": "http://registry.npmjs.org/short/-/short-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "56b4961aa8e1aa49c939e9319c0016b4b46846b0", + "tarball": "http://registry.npmjs.org/short/-/short-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "1999cc271741d88fee59c3a57f83818010868807", + "tarball": "http://registry.npmjs.org/short/-/short-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "37fd147ed9fcf37e6362cceda49dd3c011214e9c", + "tarball": "http://registry.npmjs.org/short/-/short-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "6c2779842125484c4dcbf6965c37ce883c321ca6", + "tarball": "http://registry.npmjs.org/short/-/short-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "58435802c8e5eeb2831d84a9e9a430d2a1b484de", + "tarball": "http://registry.npmjs.org/short/-/short-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "4e49dc3505c3d36300212e67c7c2f20cc18c5fd5", + "tarball": "http://registry.npmjs.org/short/-/short-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "3dc73dad9d51db95e46eb3e5051524889a06586f", + "tarball": "http://registry.npmjs.org/short/-/short-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "a567b776256d12cb7d67b5dcb540afdf1c10afba", + "tarball": "http://registry.npmjs.org/short/-/short-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "9aef647cc2bfaa3c43dbde0a90d39e3beafa3ad4", + "tarball": "http://registry.npmjs.org/short/-/short-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "e8397fc62fc491b7a2f87a0c92f5ca47039eb169", + "tarball": "http://registry.npmjs.org/short/-/short-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "cd5ad8ba8dfce915363bb8345dffe39bcd621e2c", + "tarball": "http://registry.npmjs.org/short/-/short-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "b4cba43643742d12db2f8e5808283f2cd1f50569", + "tarball": "http://registry.npmjs.org/short/-/short-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "dedb2367f3f4a4901887d6a1cdd6efc0cb79fd54", + "tarball": "http://registry.npmjs.org/short/-/short-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "42772281a8deaa756d2b9b1413d76462a61ed924", + "tarball": "http://registry.npmjs.org/short/-/short-0.1.9.tgz" + }, + "0.2.0": { + "shasum": "cda75873cdbc0cab417e815682c86b832760bbc2", + "tarball": "http://registry.npmjs.org/short/-/short-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "327126e16dc6535ac044e1a7c3e8ded72ac694ca", + "tarball": "http://registry.npmjs.org/short/-/short-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "16f601755ec95eb0c2f1b93a178c9e6b860c4df6", + "tarball": "http://registry.npmjs.org/short/-/short-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "a1dd2b9f5f8c58367d867a9b984f450cf59bfc56", + "tarball": "http://registry.npmjs.org/short/-/short-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "928dbc6f68c04b4c45c913d4b863fec700da7082", + "tarball": "http://registry.npmjs.org/short/-/short-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "b4aebcadd9f007bbf58eb0b666a5df7742e4e136", + "tarball": "http://registry.npmjs.org/short/-/short-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "ac97a37f02678ecb5a5ac860227638ff2d51e7be", + "tarball": "http://registry.npmjs.org/short/-/short-0.2.6.tgz" + } + }, + "keywords": [ + "short", + "url", + "shortener", + "tiny", + "uri" + ], + "url": "http://registry.npmjs.org/short/" + }, + "shorten": { + "name": "shorten", + "description": "Unique shorten ID generator by redis", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "guileen", + "email": "guileen@gmail.com" + } + ], + "time": { + "modified": "2011-03-24T08:21:18.622Z", + "created": "2011-03-24T08:21:16.810Z", + "0.1.0": "2011-03-24T08:21:18.622Z" + }, + "author": { + "name": "Jason Green", + "email": "guileen@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/guileen/node-redis-shorten.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/shorten/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "a568468e93792080a19e05541a2942f744caeadd", + "tarball": "http://registry.npmjs.org/shorten/-/shorten-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/shorten/" + }, + "shorttag": { + "name": "shorttag", + "description": "Javascript template engine in 20-lines", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "jetienne", + "email": "jerome.etienne@gmail.com" + } + ], + "time": { + "modified": "2011-07-20T11:57:54.296Z", + "created": "2011-07-20T11:54:41.357Z", + "1.0.0": "2011-07-20T11:54:41.769Z", + "1.0.1": "2011-07-20T11:57:54.296Z" + }, + "author": { + "name": "Jerome Etienne", + "email": "jerome.etienne@gmail.com" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/shorttag/1.0.0", + "1.0.1": "http://registry.npmjs.org/shorttag/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "037f86e84eaa1cc900557cee4a00c95b3392574f", + "tarball": "http://registry.npmjs.org/shorttag/-/shorttag-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "120ad51d182dcf212c6e2cb3bdbae7e65cdb5df9", + "tarball": "http://registry.npmjs.org/shorttag/-/shorttag-1.0.1.tgz" + } + }, + "keywords": [ + "template" + ], + "url": "http://registry.npmjs.org/shorttag/" + }, + "shorturl": { + "name": "shorturl", + "description": "Simple URL shortener client library", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "jdub", + "email": "jdub@bethesignal.org" + } + ], + "time": { + "modified": "2011-02-05T09:20:32.900Z", + "created": "2011-02-04T14:20:28.235Z", + "0.0.1": "2011-02-04T14:20:28.867Z", + "0.0.2": "2011-02-05T09:20:32.900Z" + }, + "author": { + "name": "Jeff Waugh", + "email": "jdub@bethesignal.org" + }, + "repository": { + "type": "git", + "url": "https://github.com/jdub/node-shorturl.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/shorturl/0.0.1", + "0.0.2": "http://registry.npmjs.org/shorturl/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "c13b3201a1aea126b3e81bde0c06c2bb07a69a0b", + "tarball": "http://registry.npmjs.org/shorturl/-/shorturl-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "de0fbb88a11e98fcb23cf20e2bde58e6226501cc", + "tarball": "http://registry.npmjs.org/shorturl/-/shorturl-0.0.2.tgz" + } + }, + "keywords": [ + "shorturl", + "shortlink", + "bit.ly", + "goo.gl", + "is.gd" + ], + "url": "http://registry.npmjs.org/shorturl/" + }, + "shorty": { + "name": "shorty", + "description": "An asynchronous SMPP client and server built on Node.js.", + "dist-tags": { + "latest": "0.4.0" + }, + "maintainers": [ + { + "name": "evandotpro", + "email": "me@evancoury.com" + }, + { + "name": "bjy", + "email": "bx.youngblood@gmail.com" + } + ], + "time": { + "modified": "2011-12-02T19:13:58.081Z", + "created": "2010-12-22T18:21:43.563Z", + "0.0.1": "2010-12-22T18:21:43.895Z", + "0.1.0": "2010-12-23T02:59:30.923Z", + "0.1.1": "2011-01-10T19:56:57.544Z", + "0.2.0": "2011-03-15T18:12:32.663Z", + "0.4.0": "2011-12-02T19:13:58.081Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/mtd/shorty.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/shorty/0.0.1", + "0.1.0": "http://registry.npmjs.org/shorty/0.1.0", + "0.1.1": "http://registry.npmjs.org/shorty/0.1.1", + "0.2.0": "http://registry.npmjs.org/shorty/0.2.0", + "0.4.0": "http://registry.npmjs.org/shorty/0.4.0" + }, + "dist": { + "0.0.1": { + "shasum": "41a77d4dd6aa9d9984ae95573841eda891666f21", + "tarball": "http://registry.npmjs.org/shorty/-/shorty-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "797250c50b4403c247264cf3586b679ed99fd258", + "tarball": "http://registry.npmjs.org/shorty/-/shorty-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "c17d10e223e2675294cf40d5bf5430521290b5dd", + "tarball": "http://registry.npmjs.org/shorty/-/shorty-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "30cefcc452f382eb906f13128301cd8f401b02d9", + "tarball": "http://registry.npmjs.org/shorty/-/shorty-0.2.0.tgz" + }, + "0.4.0": { + "shasum": "bfe2ae27e3c5f58a89a8e47966c9017e9b16ff20", + "tarball": "http://registry.npmjs.org/shorty/-/shorty-0.4.0.tgz" + } + }, + "url": "http://registry.npmjs.org/shorty/" + }, + "shotenjin": { + "name": "shotenjin", + "description": "Post-modern javascript templating system", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "samuraijack", + "email": "nickolay8@gmail.com" + } + ], + "time": { + "modified": "2011-01-17T13:41:44.353Z", + "created": "2011-01-17T13:41:43.577Z", + "0.0.1": "2011-01-17T13:41:44.353Z" + }, + "author": { + "name": "Nickolay Platonov", + "email": "nplatonov@cpan.org" + }, + "repository": { + "web": "http://github.com/SamuraiJack/Shotenjin/tree", + "url": "git://github.com/SamuraiJack/Shotenjin.git", + "type": "git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/shotenjin/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "015a21e94ef0ae76e5d6741bac5821aca8f4d7ce", + "tarball": "http://registry.npmjs.org/shotenjin/-/shotenjin-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/shotenjin/" + }, + "should": { + "name": "should", + "description": "test framework agnostic BDD-style assertions", + "dist-tags": { + "latest": "0.3.2" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "time": { + "modified": "2011-11-08T20:45:38.812Z", + "created": "2011-04-06T16:44:36.271Z", + "0.0.1": "2011-04-06T16:44:36.271Z", + "0.0.2": "2011-04-06T16:44:36.271Z", + "0.0.3": "2011-04-06T16:44:36.271Z", + "0.0.4": "2011-04-06T16:44:36.271Z", + "0.1.0": "2011-04-06T16:44:36.271Z", + "0.2.0": "2011-04-18T02:19:45.548Z", + "0.2.1": "2011-05-13T16:17:19.298Z", + "0.3.0": "2011-08-20T19:36:23.873Z", + "0.3.1": "2011-08-22T18:54:56.459Z", + "0.3.2": "2011-10-24T20:59:47.487Z" + }, + "users": { + "vesln": true + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/should/0.0.1", + "0.0.2": "http://registry.npmjs.org/should/0.0.2", + "0.0.3": "http://registry.npmjs.org/should/0.0.3", + "0.0.4": "http://registry.npmjs.org/should/0.0.4", + "0.1.0": "http://registry.npmjs.org/should/0.1.0", + "0.2.0": "http://registry.npmjs.org/should/0.2.0", + "0.2.1": "http://registry.npmjs.org/should/0.2.1", + "0.3.0": "http://registry.npmjs.org/should/0.3.0", + "0.3.1": "http://registry.npmjs.org/should/0.3.1", + "0.3.2": "http://registry.npmjs.org/should/0.3.2" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/should/-/should-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/should/-/should-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/should/-/should-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://registry.npmjs.org/should/-/should-0.0.4.tgz" + }, + "0.1.0": { + "shasum": "140ac5ad733d3f63b3a39a387144b8e4a37b53da", + "tarball": "http://registry.npmjs.org/should/-/should-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "8a5fc3d23f32272fb638f6f6a2ffca06ddf72e02", + "tarball": "http://registry.npmjs.org/should/-/should-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "5456ca01063d3abeb26b9fe4c918c517deee058d", + "tarball": "http://registry.npmjs.org/should/-/should-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "ccfeb2671f4f3458a6542e987ea27249d0c3fe29", + "tarball": "http://registry.npmjs.org/should/-/should-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "23924fa778ec7e5cfbd6746dc5a9c7f175ce1be4", + "tarball": "http://registry.npmjs.org/should/-/should-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "6fff9bdc8bebf422ad8f54b6ef708b0dba5116af", + "tarball": "http://registry.npmjs.org/should/-/should-0.3.2.tgz" + } + }, + "keywords": [ + "test", + "bdd", + "assert" + ], + "url": "http://registry.npmjs.org/should/" + }, + "should-mongoose": { + "name": "should-mongoose", + "description": "Mongoose extension for should", + "dist-tags": { + "latest": "0.0.3" + }, + "readme": null, + "maintainers": [ + { + "name": "deedubs", + "email": "dan@rocketlabsdev.com" + } + ], + "time": { + "modified": "2011-12-02T05:29:26.376Z", + "created": "2011-12-02T05:16:06.439Z", + "0.0.1": "2011-12-02T05:16:07.147Z", + "0.0.2": "2011-12-02T05:19:53.206Z", + "0.0.3": "2011-12-02T05:29:26.376Z" + }, + "author": { + "name": "Dan Williams", + "email": "dan@rocketlabsdev.com", + "url": "http://blog.rocketlabsdev.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/rocketlabsdev/should-mongoose.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/should-mongoose/0.0.1", + "0.0.2": "http://registry.npmjs.org/should-mongoose/0.0.2", + "0.0.3": "http://registry.npmjs.org/should-mongoose/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "a831cd15af9865e90434a1ac682887d43372ddbe", + "tarball": "http://registry.npmjs.org/should-mongoose/-/should-mongoose-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "4accbd0b4f85d5c0bc56517e43a7f48bffe3ce9e", + "tarball": "http://registry.npmjs.org/should-mongoose/-/should-mongoose-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "e3fd07629c06894bf23aa6f122212fda48160fd7", + "tarball": "http://registry.npmjs.org/should-mongoose/-/should-mongoose-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/should-mongoose/" + }, + "shovel": { + "name": "shovel", + "description": "CLI util for garden", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "architectd", + "email": "craig.j.condon@gmail.com" + } + ], + "time": { + "modified": "2011-12-04T23:55:21.621Z", + "created": "2011-09-19T02:22:01.091Z", + "0.0.1": "2011-09-19T02:22:01.836Z", + "0.0.2": "2011-09-20T06:08:54.809Z", + "0.0.3": "2011-09-26T19:14:57.782Z", + "0.0.4": "2011-11-30T18:55:02.421Z", + "0.0.5": "2011-12-04T23:55:21.621Z" + }, + "author": { + "name": "Craig Condon" + }, + "repository": { + "type": "git", + "url": "git://github.com/crcn/shovel.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/shovel/0.0.1", + "0.0.2": "http://registry.npmjs.org/shovel/0.0.2", + "0.0.3": "http://registry.npmjs.org/shovel/0.0.3", + "0.0.4": "http://registry.npmjs.org/shovel/0.0.4", + "0.0.5": "http://registry.npmjs.org/shovel/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "7b7a0e7f267acbe6bc4ffa0f12ad2104de515e77", + "tarball": "http://registry.npmjs.org/shovel/-/shovel-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "507c2720f9fa0a6f8f9a4630168307ac37fa8e89", + "tarball": "http://registry.npmjs.org/shovel/-/shovel-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "8b39b8d5716ebeb658235ad5a9eff55241e0e325", + "tarball": "http://registry.npmjs.org/shovel/-/shovel-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "6bed3a68c1cec087a478bac31dd003e904d5eeeb", + "tarball": "http://registry.npmjs.org/shovel/-/shovel-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "594545abcbe59564be2e3ca030cb970d5d5d4586", + "tarball": "http://registry.npmjs.org/shovel/-/shovel-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/shovel/" + }, + "showdown": { + "name": "showdown", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "coreyti", + "email": "corey@coolerator.net" + } + ], + "time": { + "modified": "2011-04-12T02:19:22.325Z", + "created": "2011-04-12T02:19:21.530Z", + "0.0.1": "2011-04-12T02:19:22.325Z" + }, + "author": { + "name": "John Fraser" + }, + "repository": { + "type": "git", + "url": "git://github.com/coreyti/showdown.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/showdown/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "d961fdd9bbfc8c017473b7d5badf027984bd28e0", + "tarball": "http://registry.npmjs.org/showdown/-/showdown-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/showdown/" + }, + "shp2json": { + "name": "shp2json", + "description": "Convert shapefile zip archives into GeoJSON using ogr2ogr with a streaming interface", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": null, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-12-06T18:31:46.217Z", + "created": "2011-12-04T07:49:00.732Z", + "0.0.0": "2011-12-04T07:49:08.481Z", + "0.1.0": "2011-12-06T18:31:46.217Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/shp2json.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/shp2json/0.0.0", + "0.1.0": "http://registry.npmjs.org/shp2json/0.1.0" + }, + "dist": { + "0.0.0": { + "shasum": "d49f79d7b1bb2eb582b2141e70db2c9da1032f8c", + "tarball": "http://registry.npmjs.org/shp2json/-/shp2json-0.0.0.tgz" + }, + "0.1.0": { + "shasum": "b4b3cbe7be2fece8d605478c7fec24b2663bf4fa", + "tarball": "http://registry.npmjs.org/shp2json/-/shp2json-0.1.0.tgz" + } + }, + "keywords": [ + "shapefile", + "shp", + "zip", + "stream", + "convert", + "geojson", + "geo", + "gis", + "json" + ], + "url": "http://registry.npmjs.org/shp2json/" + }, + "shred": { + "name": "shred", + "description": "A dead-simple HTTP client", + "dist-tags": { + "latest": "0.6.4" + }, + "readme": null, + "maintainers": [ + { + "name": "dyoder", + "email": "danielyoder@gmail.com" + }, + { + "name": "nlacasse", + "email": "nlacasse@borderstylo.com" + } + ], + "time": { + "modified": "2011-12-12T22:32:24.957Z", + "created": "2011-11-22T16:30:44.071Z", + "0.0.5": "2011-11-22T16:30:45.378Z", + "0.5.0": "2011-11-22T16:37:33.928Z", + "0.5.2": "2011-11-22T16:59:00.622Z", + "0.5.3": "2011-11-22T18:39:12.134Z", + "0.5.4": "2011-11-22T18:42:47.966Z", + "0.5.5": "2011-11-22T19:36:59.269Z", + "0.6.0": "2011-12-06T19:23:01.206Z", + "0.6.1": "2011-12-06T20:37:15.758Z", + "0.6.4": "2011-12-12T22:32:24.957Z" + }, + "author": { + "name": "Dan Yoder", + "email": "dan@spire.io" + }, + "repository": { + "type": "git", + "url": "git://github.com/spire-io/shred.git" + }, + "versions": { + "0.0.5": "http://registry.npmjs.org/shred/0.0.5", + "0.5.0": "http://registry.npmjs.org/shred/0.5.0", + "0.5.2": "http://registry.npmjs.org/shred/0.5.2", + "0.5.3": "http://registry.npmjs.org/shred/0.5.3", + "0.5.4": "http://registry.npmjs.org/shred/0.5.4", + "0.5.5": "http://registry.npmjs.org/shred/0.5.5", + "0.6.0": "http://registry.npmjs.org/shred/0.6.0", + "0.6.1": "http://registry.npmjs.org/shred/0.6.1", + "0.6.4": "http://registry.npmjs.org/shred/0.6.4" + }, + "dist": { + "0.0.5": { + "shasum": "c50b5eed6b7e01cdccfd6cf7d41789ce6b6b7da9", + "tarball": "http://registry.npmjs.org/shred/-/shred-0.0.5.tgz" + }, + "0.5.0": { + "shasum": "5e32597434838ff669eaa274394a39db42ec9630", + "tarball": "http://registry.npmjs.org/shred/-/shred-0.5.0.tgz" + }, + "0.5.2": { + "shasum": "11850e5b29e6c92801da5f68fb09c21d64f53706", + "tarball": "http://registry.npmjs.org/shred/-/shred-0.5.2.tgz" + }, + "0.5.3": { + "shasum": "8882b9088a5e73e6d4f269b9b93340c56a19e429", + "tarball": "http://registry.npmjs.org/shred/-/shred-0.5.3.tgz" + }, + "0.5.4": { + "shasum": "93b652eac0b399a9d5adc3c07fcf6a97311f7376", + "tarball": "http://registry.npmjs.org/shred/-/shred-0.5.4.tgz" + }, + "0.5.5": { + "shasum": "254a39e3bc9cc9a4ef4d97dd29020d58094d78f0", + "tarball": "http://registry.npmjs.org/shred/-/shred-0.5.5.tgz" + }, + "0.6.0": { + "shasum": "a3c1282a81de8f7507cbcaa82ea7c4a7a66d9389", + "tarball": "http://registry.npmjs.org/shred/-/shred-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "703685645433efa642123c6819adc30de1520abc", + "tarball": "http://registry.npmjs.org/shred/-/shred-0.6.1.tgz" + }, + "0.6.4": { + "shasum": "8f2851f35a149035c6984e3db0a2cabc98f86bcf", + "tarball": "http://registry.npmjs.org/shred/-/shred-0.6.4.tgz" + } + }, + "keywords": [ + "http", + "client" + ], + "url": "http://registry.npmjs.org/shred/" + }, + "shredder": { + "name": "shredder", + "description": "Text indexing with redis", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "linus", + "email": "linus@hanssonlarsson.se" + } + ], + "time": { + "modified": "2011-07-28T08:08:17.783Z", + "created": "2011-07-28T08:08:16.910Z", + "0.1.0": "2011-07-28T08:08:17.783Z" + }, + "author": { + "name": "Linus G Thiel", + "email": "linus@hanssonlarsson.se", + "url": "http://hanssonlarsson.se/" + }, + "repository": { + "url": "" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/shredder/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "ebf0173ed19d01dd28683ac92817463fdd73a2e4", + "tarball": "http://registry.npmjs.org/shredder/-/shredder-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/shredder/" + }, + "shrtn": { + "name": "shrtn", + "dist-tags": { + "latest": "0.0.4-3" + }, + "maintainers": [ + { + "name": "supjeff", + "email": "jeff@classy.co" + } + ], + "time": { + "modified": "2011-07-30T19:51:42.277Z", + "created": "2011-07-28T15:38:12.016Z", + "0.0.1": "2011-07-28T15:38:12.842Z", + "0.0.2": "2011-07-28T15:43:50.691Z", + "0.0.3": "2011-07-29T17:15:23.225Z", + "0.0.4": "2011-07-29T19:23:20.315Z", + "0.0.4-1": "2011-07-29T20:07:22.436Z", + "0.0.4-2": "2011-07-29T20:11:05.758Z", + "0.0.4-3": "2011-07-30T19:51:42.277Z" + }, + "author": { + "name": "Jeff Marshall", + "email": "jeff@iamjeffmarshall.ca", + "url": "http://profile.io/jeff/" + }, + "repository": { + "type": "git", + "url": "git://github.com/classy/shrtn.git" + }, + "description": "Low-fat URL shortener", + "versions": { + "0.0.1": "http://registry.npmjs.org/shrtn/0.0.1", + "0.0.2": "http://registry.npmjs.org/shrtn/0.0.2", + "0.0.3": "http://registry.npmjs.org/shrtn/0.0.3", + "0.0.4": "http://registry.npmjs.org/shrtn/0.0.4", + "0.0.4-1": "http://registry.npmjs.org/shrtn/0.0.4-1", + "0.0.4-2": "http://registry.npmjs.org/shrtn/0.0.4-2", + "0.0.4-3": "http://registry.npmjs.org/shrtn/0.0.4-3" + }, + "dist": { + "0.0.1": { + "shasum": "b1f259434254ba1e987092de00155fad9ed63a42", + "tarball": "http://registry.npmjs.org/shrtn/-/shrtn-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "ecb807cbfe4862c12b8d98c9bc52fc04d16fd41a", + "tarball": "http://registry.npmjs.org/shrtn/-/shrtn-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "4a7a00ae1cad8e9c035cd8c0471ebcc2355205d1", + "tarball": "http://registry.npmjs.org/shrtn/-/shrtn-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "bd9273f8029807db5c485d9704886a46a6caa1ec", + "tarball": "http://registry.npmjs.org/shrtn/-/shrtn-0.0.4.tgz" + }, + "0.0.4-1": { + "shasum": "66171be21e5a2110e6e320de7a7598393e64b533", + "tarball": "http://registry.npmjs.org/shrtn/-/shrtn-0.0.4-1.tgz" + }, + "0.0.4-2": { + "shasum": "a166eca4e160fcb7dee6e7b1356e6826b3104014", + "tarball": "http://registry.npmjs.org/shrtn/-/shrtn-0.0.4-2.tgz" + }, + "0.0.4-3": { + "shasum": "dfc89e123da554278e8050f3f2265ff2469fb875", + "tarball": "http://registry.npmjs.org/shrtn/-/shrtn-0.0.4-3.tgz" + } + }, + "keywords": [ + "url", + "shortener", + "shortening", + "redis", + "classy" + ], + "url": "http://registry.npmjs.org/shrtn/" + }, + "shuffle": { + "name": "shuffle", + "description": "node.js package for shuffling and dealing decks of cards (or anything else you'd like to shuffle)", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "troygoode", + "email": "troygoode@gmail.com" + } + ], + "time": { + "modified": "2011-11-27T16:15:02.066Z", + "created": "2011-05-06T18:45:23.682Z", + "0.1.0": "2011-05-06T18:45:23.774Z", + "0.1.1": "2011-11-27T16:15:02.066Z" + }, + "author": { + "name": "Troy Goode", + "email": "troygoode@gmail.com", + "url": "https://github.com/troygoode/" + }, + "repository": { + "type": "git", + "url": "git://github.com/troygoode/node-shuffle.git" + }, + "users": { + "troygoode": true + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/shuffle/0.1.0", + "0.1.1": "http://registry.npmjs.org/shuffle/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "b30e0559af63eb019e6258d684e737228a0596d1", + "tarball": "http://registry.npmjs.org/shuffle/-/shuffle-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "70bf9c525476a4215a2e3f38dbcbd914fc258837", + "tarball": "http://registry.npmjs.org/shuffle/-/shuffle-0.1.1.tgz" + } + }, + "keywords": [ + "shuffle", + "random", + "cards", + "games" + ], + "url": "http://registry.npmjs.org/shuffle/" + }, + "sibilant": { + "name": "sibilant", + "description": "javascript with a lisp", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "jbr", + "email": "npm@jacobrothstein.com" + } + ], + "time": { + "modified": "2011-02-21T00:13:39.522Z", + "created": "2011-02-14T00:01:21.833Z", + "0.0.8": "2011-02-14T00:01:21.833Z", + "0.0.9": "2011-02-14T00:01:21.833Z", + "0.0.10": "2011-02-14T00:01:21.833Z", + "0.0.11": "2011-02-14T00:01:21.833Z", + "0.1.0": "2011-02-14T00:08:26.543Z", + "0.1.1": "2011-02-21T00:13:39.522Z" + }, + "versions": { + "0.0.8": "http://registry.npmjs.org/sibilant/0.0.8", + "0.0.9": "http://registry.npmjs.org/sibilant/0.0.9", + "0.0.10": "http://registry.npmjs.org/sibilant/0.0.10", + "0.0.11": "http://registry.npmjs.org/sibilant/0.0.11", + "0.1.0": "http://registry.npmjs.org/sibilant/0.1.0", + "0.1.1": "http://registry.npmjs.org/sibilant/0.1.1" + }, + "dist": { + "0.0.8": { + "tarball": "http://packages:5984/sibilant/-/sibilant-0.0.8.tgz" + }, + "0.0.9": { + "tarball": "http://packages:5984/sibilant/-/sibilant-0.0.9.tgz" + }, + "0.0.10": { + "tarball": "http://registry.npmjs.org/sibilant/-/sibilant-0.0.10.tgz" + }, + "0.0.11": { + "shasum": "b9c734b264deb7f8d9fc1e94187aad54b17ab263", + "tarball": "http://registry.npmjs.org/sibilant/-/sibilant-0.0.11.tgz" + }, + "0.1.0": { + "shasum": "3beb0b7a95d601defaf8df4d47cffab547589dfe", + "tarball": "http://registry.npmjs.org/sibilant/-/sibilant-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "048540c97f89ed537ba4863654bb5565e4e56849", + "tarball": "http://registry.npmjs.org/sibilant/-/sibilant-0.1.1.tgz" + } + }, + "keywords": [ + "lisp", + "javascript", + "language" + ], + "url": "http://registry.npmjs.org/sibilant/" + }, + "sideline": { + "name": "sideline", + "description": "CoffeeScript shell for your server", + "dist-tags": { + "latest": "1.2.0" + }, + "maintainers": [ + { + "name": "assaf", + "email": "assaf@labnotes.org" + } + ], + "time": { + "modified": "2011-09-06T08:07:54.304Z", + "created": "2011-09-01T06:53:05.133Z", + "1.0.0": "2011-09-01T06:53:06.515Z", + "0.1.0": "2011-09-01T07:10:09.867Z", + "1.0.1": "2011-09-01T07:10:46.173Z", + "1.0.2": "2011-09-01T21:19:40.479Z", + "1.1.0": "2011-09-02T07:32:36.845Z", + "1.2.0": "2011-09-06T08:07:54.304Z" + }, + "repository": { + "type": "git", + "url": "git@github.com:assaf/sideline.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/sideline/1.0.0", + "1.0.1": "http://registry.npmjs.org/sideline/1.0.1", + "1.0.2": "http://registry.npmjs.org/sideline/1.0.2", + "1.1.0": "http://registry.npmjs.org/sideline/1.1.0", + "1.2.0": "http://registry.npmjs.org/sideline/1.2.0" + }, + "dist": { + "1.0.0": { + "shasum": "f2a993913362344c35e45cb0e190987de2482c88", + "tarball": "http://registry.npmjs.org/sideline/-/sideline-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "c8c9e45ebe3cf07663da9ef551e4460a2d5def4b", + "tarball": "http://registry.npmjs.org/sideline/-/sideline-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "ff2c85b2fa62c36b1faa5499b79b9fab6f1ec78a", + "tarball": "http://registry.npmjs.org/sideline/-/sideline-1.0.2.tgz" + }, + "1.1.0": { + "shasum": "f307ecf083623aef0bbfee9c055d0f9c99b25d59", + "tarball": "http://registry.npmjs.org/sideline/-/sideline-1.1.0.tgz" + }, + "1.2.0": { + "shasum": "20b0bf60363020a1c6b18cd915dd05931f7e5cc6", + "tarball": "http://registry.npmjs.org/sideline/-/sideline-1.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/sideline/" + }, + "siesta": { + "name": "siesta", + "description": "Create RESTful services with NodeJS easily", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "goatslacker", + "email": "josh@goatslacker.com" + } + ], + "time": { + "modified": "2011-09-10T04:36:25.685Z", + "created": "2011-07-18T00:16:26.524Z", + "0.0.1": "2011-07-18T00:16:27.090Z", + "0.1.0": "2011-09-10T04:36:25.685Z" + }, + "author": { + "name": "Josh Perez", + "email": "josh@goatslacker.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/goatslacker/siesta.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/siesta/0.0.1", + "0.1.0": "http://registry.npmjs.org/siesta/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "66de1aa59c3d2e889d493cbf7049b20afe81f9c7", + "tarball": "http://registry.npmjs.org/siesta/-/siesta-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "3542bf9a3a744028f7d4a114be94e3983cf8ad13", + "tarball": "http://registry.npmjs.org/siesta/-/siesta-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/siesta/" + }, + "sign": { + "name": "sign", + "description": "Type signatures for javascript", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "jesusabdullah", + "email": "josh.holbrook@gmail.com" + } + ], + "time": { + "modified": "2011-08-24T07:49:58.058Z", + "created": "2011-08-24T07:49:55.014Z", + "0.0.0": "2011-08-24T07:49:58.058Z" + }, + "author": { + "name": "Joshua Holbrook", + "email": "josh.holbrook@gmail.com", + "url": "http://jesusabdullah.github.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:jesusabdullah/node-sign.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/sign/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "e02065f1833e27871e4da2b7deca0d8ea859db92", + "tarball": "http://registry.npmjs.org/sign/-/sign-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/sign/" + }, + "signals": { + "name": "signals", + "description": "Custom Event/Messaging System", + "dist-tags": { + "latest": "0.7.1" + }, + "maintainers": [ + { + "name": "millermedeiros", + "email": "miller@millermedeiros.com" + } + ], + "time": { + "modified": "2011-11-29T14:38:50.054Z", + "created": "2011-06-07T04:30:25.792Z", + "0.6.1": "2011-06-07T04:30:26.704Z", + "0.6.2": "2011-06-11T05:49:38.147Z", + "0.6.3": "2011-07-11T13:27:09.638Z", + "0.7.0": "2011-11-02T04:19:03.754Z", + "0.7.1": "2011-11-29T14:38:50.054Z" + }, + "author": { + "name": "Miller Medeiros", + "url": "http://blog.millermedeiros.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/millermedeiros/js-signals.git" + }, + "versions": { + "0.6.1": "http://registry.npmjs.org/signals/0.6.1", + "0.6.2": "http://registry.npmjs.org/signals/0.6.2", + "0.6.3": "http://registry.npmjs.org/signals/0.6.3", + "0.7.0": "http://registry.npmjs.org/signals/0.7.0", + "0.7.1": "http://registry.npmjs.org/signals/0.7.1" + }, + "dist": { + "0.6.1": { + "shasum": "6c47b4ccf344567e76a5c8a4de6a9bac921659db", + "tarball": "http://registry.npmjs.org/signals/-/signals-0.6.1.tgz" + }, + "0.6.2": { + "shasum": "97b3d50e6db85e2622db66dcfe2254d35f827c8f", + "tarball": "http://registry.npmjs.org/signals/-/signals-0.6.2.tgz" + }, + "0.6.3": { + "shasum": "48e67214765fd0f779dce65ca6a45381b005f187", + "tarball": "http://registry.npmjs.org/signals/-/signals-0.6.3.tgz" + }, + "0.7.0": { + "shasum": "d17ebd8af433fe32c3ab3b7a1cab80e60d5497db", + "tarball": "http://registry.npmjs.org/signals/-/signals-0.7.0.tgz" + }, + "0.7.1": { + "shasum": "f16e853841204551767e98ac2f214f823211659c", + "tarball": "http://registry.npmjs.org/signals/-/signals-0.7.1.tgz" + } + }, + "keywords": [ + "js-signals", + "signals", + "pub/sub", + "event", + "publish", + "subscribe", + "observer" + ], + "url": "http://registry.npmjs.org/signals/" + }, + "signature": { + "name": "signature", + "description": "Simple key/secret based authentication for apis, ported from the Ruby gem of the same name", + "dist-tags": { + "latest": "0.0.2" + }, + "readme": "Signature for Node.js\n=====================\nPorted line for line from the Ruby gem\n[Signature](https://github.com/mloughran/signature)\n\nUsage\n-----\nMostly mirrors the [Ruby gem](https://github.com/mloughran/signature)\n\n var Signature = require('signature');\n\n var request = new Signature.Request(method, path, params),\n token = request.authenticate(function(key){\n return new Signature.Token(key, secret);\n });\n\nWarning\n-------\nSoooo... yeah. I haven't really tested most of the code. I know I know.\nBut you'll let me know if anything is amuck, right? Perfect.\n", + "maintainers": [ + { + "name": "leppert", + "email": "greg@formasfunction.com" + } + ], + "time": { + "modified": "2011-11-11T02:04:24.568Z", + "created": "2011-11-07T02:38:21.395Z", + "0.0.1": "2011-11-07T02:38:22.081Z", + "0.0.2": "2011-11-11T02:04:24.568Z" + }, + "author": { + "name": "Greg Leppert", + "email": "greg@formasfunction.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/leppert/signature.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/signature/0.0.1", + "0.0.2": "http://registry.npmjs.org/signature/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "024ef472825427d98b06e6c7fcd396282e3fee19", + "tarball": "http://registry.npmjs.org/signature/-/signature-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "daa4cd3fe469ee9b170cd3aa2a4185659647fc45", + "tarball": "http://registry.npmjs.org/signature/-/signature-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/signature/" + }, + "signed-request": { + "name": "signed-request", + "description": "A signed JSON container.", + "dist-tags": { + "latest": "1.0.5" + }, + "maintainers": [ + { + "name": "naitik", + "email": "n@daaku.org" + } + ], + "time": { + "modified": "2011-08-18T01:07:46.637Z", + "created": "2011-08-07T23:59:11.846Z", + "1.0.0": "2011-08-07T23:59:15.739Z", + "1.0.1": "2011-08-11T04:14:27.441Z", + "1.0.2": "2011-08-17T03:55:37.944Z", + "1.0.3": "2011-08-17T15:20:22.537Z", + "1.0.4": "2011-08-17T21:05:14.309Z", + "1.0.5": "2011-08-18T01:07:46.637Z" + }, + "author": { + "name": "Naitik Shah", + "email": "n@daaku.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/nshah/nodejs-signed-request.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/signed-request/1.0.0", + "1.0.1": "http://registry.npmjs.org/signed-request/1.0.1", + "1.0.2": "http://registry.npmjs.org/signed-request/1.0.2", + "1.0.3": "http://registry.npmjs.org/signed-request/1.0.3", + "1.0.4": "http://registry.npmjs.org/signed-request/1.0.4", + "1.0.5": "http://registry.npmjs.org/signed-request/1.0.5" + }, + "dist": { + "1.0.0": { + "shasum": "aca48ad3bd3ea1bd9c94bdb444f6bfee5150dd17", + "tarball": "http://registry.npmjs.org/signed-request/-/signed-request-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "d0c07cd1e590669978a3261756d1a1081f11de82", + "tarball": "http://registry.npmjs.org/signed-request/-/signed-request-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "b7aa4c33a17ab98cac3f9d7c8c16712b3060c414", + "tarball": "http://registry.npmjs.org/signed-request/-/signed-request-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "029845f6ecac85a1937d04ff96ff5208deeb1744", + "tarball": "http://registry.npmjs.org/signed-request/-/signed-request-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "784ee18297dc12a7e949ed1be09d30a783024393", + "tarball": "http://registry.npmjs.org/signed-request/-/signed-request-1.0.4.tgz" + }, + "1.0.5": { + "shasum": "c02128edfe4f8d344b4d8ae11c3b187226b2c4ee", + "tarball": "http://registry.npmjs.org/signed-request/-/signed-request-1.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/signed-request/" + }, + "signer": { + "name": "signer", + "description": "a module for signing strings to ensure integrity.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "mafintosh", + "email": "m@ge.tt" + } + ], + "time": { + "modified": "2011-08-18T15:25:26.166Z", + "created": "2011-07-25T11:09:17.821Z", + "0.1.0": "2011-07-25T11:09:18.432Z", + "0.1.1": "2011-08-18T15:25:26.166Z" + }, + "author": { + "name": "Ge.tt", + "email": "hello@ge.tt" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/signer/0.1.0", + "0.1.1": "http://registry.npmjs.org/signer/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "81b7897ba90fcf5ff74cf15698c073e22fcb1548", + "tarball": "http://registry.npmjs.org/signer/-/signer-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "f456c5e0f331a388fde33831cbe2acf9d8ba0008", + "tarball": "http://registry.npmjs.org/signer/-/signer-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/signer/" + }, + "signing_auth": { + "name": "signing_auth", + "description": "Simple request signing authentication inspired by OAuth but greatly simplified. Useful when you need simple authentication of POST request between the server and client.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "hugowetterberg", + "email": "hugo@wetterberg.nu" + } + ], + "time": { + "modified": "2011-10-04T08:35:26.904Z", + "created": "2011-10-03T11:01:12.725Z", + "0.0.1": "2011-10-03T11:01:13.401Z", + "0.0.2": "2011-10-04T08:35:26.904Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/signing_auth/0.0.1", + "0.0.2": "http://registry.npmjs.org/signing_auth/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "598c6805f3afdb5e1dd326a821553efe53eb4808", + "tarball": "http://registry.npmjs.org/signing_auth/-/signing_auth-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "812d65919b81d59d35e349b42eff77c4b33dd1cc", + "tarball": "http://registry.npmjs.org/signing_auth/-/signing_auth-0.0.2.tgz" + } + }, + "keywords": [ + "http", + "security", + "signing" + ], + "url": "http://registry.npmjs.org/signing_auth/" + }, + "similarity": { + "name": "similarity", + "description": "Unidirectional string similarity", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": null, + "maintainers": [ + { + "name": "padolsey", + "email": "npm@padolsey.net" + } + ], + "time": { + "modified": "2011-11-19T19:06:10.909Z", + "created": "2011-11-19T19:06:10.386Z", + "0.1.0": "2011-11-19T19:06:10.909Z" + }, + "author": { + "name": "James Padolsey https://github.com/jamespadolsey" + }, + "repository": { + "type": "git", + "url": "git://github.com/jamespadolsey/similarity.js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/similarity/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "e0790a1904c75246d35756198c18b18bc350ee37", + "tarball": "http://registry.npmjs.org/similarity/-/similarity-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/similarity/" + }, + "simpl": { + "name": "simpl", + "description": "Simple sockets anywhere", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "stagas", + "email": "gstagas@gmail.com" + } + ], + "time": { + "modified": "2011-10-14T11:00:14.034Z", + "created": "2011-10-04T22:09:10.564Z", + "0.0.1": "2011-10-04T22:09:11.335Z", + "0.0.2": "2011-10-14T11:00:14.034Z" + }, + "author": { + "name": "George Stagas", + "email": "gstagas@gmail.com", + "url": "http://stagas.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/stagas/simpl.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/simpl/0.0.1", + "0.0.2": "http://registry.npmjs.org/simpl/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "d2adb53280567e05028b177352ca77515871a3be", + "tarball": "http://registry.npmjs.org/simpl/-/simpl-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "5850f6ef4e340fc845f6f34a9715c3d822831b1b", + "tarball": "http://registry.npmjs.org/simpl/-/simpl-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/simpl/" + }, + "simple_pubsub": { + "name": "simple_pubsub", + "description": "Simple publish-subscribe server and client", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "fictorial", + "email": "brian@fictorial.com" + } + ], + "time": { + "modified": "2011-05-23T17:58:24.070Z", + "created": "2011-05-23T17:43:12.235Z", + "0.0.1": "2011-05-23T17:43:12.564Z", + "0.0.2": "2011-05-23T17:44:20.108Z", + "0.0.3": "2011-05-23T17:48:16.074Z", + "0.0.4": "2011-05-23T17:58:24.070Z" + }, + "author": { + "name": "Brian Hammond", + "email": "brian@fictorial.com", + "url": "http://fictorial.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/fictorial/simple_pubsub.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/simple_pubsub/0.0.1", + "0.0.2": "http://registry.npmjs.org/simple_pubsub/0.0.2", + "0.0.3": "http://registry.npmjs.org/simple_pubsub/0.0.3", + "0.0.4": "http://registry.npmjs.org/simple_pubsub/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "3385a7fb621a8701949ba55d364328134acdadc6", + "tarball": "http://registry.npmjs.org/simple_pubsub/-/simple_pubsub-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "205ad2ac63f12948490901387abd22b16877ff5e", + "tarball": "http://registry.npmjs.org/simple_pubsub/-/simple_pubsub-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "ed0d81248295ba8b0804dda47f9c68f1334ea25e", + "tarball": "http://registry.npmjs.org/simple_pubsub/-/simple_pubsub-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "1448a4c09dddec9d4c4bf96d616c7b9a1137f80c", + "tarball": "http://registry.npmjs.org/simple_pubsub/-/simple_pubsub-0.0.4.tgz" + } + }, + "keywords": [ + "publish-subscribe", + "pubsub", + "messaging", + "client", + "server" + ], + "url": "http://registry.npmjs.org/simple_pubsub/" + }, + "simple-cache": { + "name": "simple-cache", + "description": "Simple caching for Node. Like, really simple.", + "dist-tags": { + "latest": "0.1.1" + }, + "readme": "# node-simple-cache #\nSuper simple key/value storage for NodeJS. Wouldn't say it's production ready at all but if you're working on speeding up a small hack or prototype it's easy to use for caching and similar requirements.\n\n## Usage ##\nUnless you're getting a lot of concurrent requests, you can safely stick to using `Storage.get()` and `Storage.set()` to store and retrieve data.\n\n var Storage = require('simple-cache').Storage;\n var cache = new Storage();\n\n if (!cache.exists('hello')) {\n \tcache.set('hello', world);\n }\n\n cache.get('hello');\t\t\t//Returns 'world'\n\nBut when requests start to pile up, calling this within a non-blocking function such as `fs.readFile()` means that you could still be calling the function multiple times before it's stored in the cache. In this case, 'Storage.async()' keeps calls in line until the value is set.\n\n var fs = require('fs');\n var cache = new (require('simple-cache').Storage)();\n\n //Incorrect\n fs.readFile('filename', function(err, data) {\n \tif (cache.exists('hello')) {\n \t\tconsole.log(cache.get('hello'));\n \t} else {\n \t\tcache.set('hello', world);\n \t\tconsole.log(cache.get('hello'));\n \t}\n });\n\n //Correct\n cache.async('hello', function(setValue) {\n \tfs.readFile('filename', function(err, data) {\n \t\tsetValue(data);\n \t\tconsole.log(data);\n \t});\n }, function(value) {\n \tconsole.log(value);\n });", + "maintainers": [ + { + "name": "hughsk", + "email": "hughskennedy@gmail.com" + } + ], + "time": { + "modified": "2011-11-29T03:41:39.024Z", + "created": "2011-11-29T03:41:25.659Z", + "0.1.1": "2011-11-29T03:41:39.024Z" + }, + "author": { + "name": "Hugh Kennedy", + "email": "hughskennedy@gmail.com" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/simple-cache/0.1.1" + }, + "dist": { + "0.1.1": { + "shasum": "e17bc83ee1801271739a5f545a5835386f858420", + "tarball": "http://registry.npmjs.org/simple-cache/-/simple-cache-0.1.1.tgz" + } + }, + "keywords": [ + "simple", + "cache", + "storage", + "async" + ], + "url": "http://registry.npmjs.org/simple-cache/" + }, + "Simple-Cache": { + "name": "Simple-Cache", + "description": "It is a really simple disk caching library", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "mostlygeek", + "email": "mostlygeek@gmail.com" + } + ], + "time": { + "modified": "2011-10-25T05:01:19.796Z", + "created": "2011-10-25T05:01:19.250Z", + "1.0.0": "2011-10-25T05:01:19.796Z" + }, + "author": { + "name": "Benson Wong", + "email": "mostlygeek@gmail.com", + "url": "http://mostlygeek.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/mostlygeek/Node-Simple-Cache.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/Simple-Cache/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "4ee2e9733c4539e6cfb5a9f1150dd9dda57d4665", + "tarball": "http://registry.npmjs.org/Simple-Cache/-/Simple-Cache-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/Simple-Cache/" + }, + "simple-class": { + "name": "simple-class", + "description": "John Resig's simple inheritance class", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "jga", + "email": "me@jga.me" + } + ], + "time": { + "modified": "2011-04-29T14:37:30.657Z", + "created": "2011-04-29T14:37:30.326Z", + "1.0.0": "2011-04-29T14:37:30.657Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/jgallen23/simple-class.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/simple-class/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "2a9872575ab9eb87eb207a2f12a20c1029815b95", + "tarball": "http://registry.npmjs.org/simple-class/-/simple-class-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/simple-class/" + }, + "simple-ffmpeg": { + "name": "simple-ffmpeg", + "description": "A simple api wrapper around the command line ffmpeg", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "scopely", + "email": "opensource@scopely.com" + } + ], + "time": { + "modified": "2011-06-01T18:33:34.375Z", + "created": "2011-06-01T18:28:24.336Z", + "0.1.2": "2011-06-01T18:28:25.165Z", + "0.1.3": "2011-06-01T18:32:23.221Z" + }, + "author": { + "name": "Scopely", + "email": "opensource@scopely.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/scopely/node-simple-ffmpeg.git" + }, + "versions": { + "0.1.2": "http://registry.npmjs.org/simple-ffmpeg/0.1.2", + "0.1.3": "http://registry.npmjs.org/simple-ffmpeg/0.1.3" + }, + "dist": { + "0.1.2": { + "shasum": "befde441308b168ac0def2bea22b35f6f20bb43b", + "tarball": "http://registry.npmjs.org/simple-ffmpeg/-/simple-ffmpeg-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "e1f3b3a3f1defedd21406d3b12585bc7e2b1a3f9", + "tarball": "http://registry.npmjs.org/simple-ffmpeg/-/simple-ffmpeg-0.1.3.tgz" + } + }, + "keywords": [ + "ffmpeg" + ], + "url": "http://registry.npmjs.org/simple-ffmpeg/" + }, + "simple-logger": { + "name": "simple-logger", + "description": "A simple logging package to colorize logging standard output", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "delvarworld", + "email": "me@andrewray.me" + } + ], + "time": { + "modified": "2011-05-27T22:25:56.350Z", + "created": "2011-05-27T22:18:52.911Z", + "0.0.1": "2011-05-27T22:18:53.613Z", + "0.0.2": "2011-05-27T22:25:56.350Z" + }, + "author": { + "name": "Andrew Ray" + }, + "repository": { + "type": "git", + "url": "git://github.com/DelvarWorld/Simple-Node-Logger.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/simple-logger/0.0.1", + "0.0.2": "http://registry.npmjs.org/simple-logger/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "fbf5c876124d0419ae15087ff7663160b2cd1b90", + "tarball": "http://registry.npmjs.org/simple-logger/-/simple-logger-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "90b8d22469998f69e61d4ed0c87d59127546b870", + "tarball": "http://registry.npmjs.org/simple-logger/-/simple-logger-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/simple-logger/" + }, + "simple-mime": { + "name": "simple-mime", + "description": "A simple mime database.", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "creationix", + "email": "tim@creationix.com" + } + ], + "time": { + "modified": "2011-09-23T02:21:26.879Z", + "created": "2010-12-26T08:10:45.164Z", + "0.0.1": "2010-12-26T08:10:45.536Z", + "0.0.2": "2011-04-01T04:27:18.553Z", + "0.0.3": "2011-04-30T23:52:43.822Z", + "0.0.4": "2011-09-23T02:21:26.879Z" + }, + "author": { + "name": "Tim Caswell", + "email": "tim@creationix.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/creationix/simple-mime.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/simple-mime/0.0.1", + "0.0.2": "http://registry.npmjs.org/simple-mime/0.0.2", + "0.0.3": "http://registry.npmjs.org/simple-mime/0.0.3", + "0.0.4": "http://registry.npmjs.org/simple-mime/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "e9feb78cb82050bdbe6b5f59b44363c9c36fe734", + "tarball": "http://registry.npmjs.org/simple-mime/-/simple-mime-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "924b51e96a9c4e6bce157598bb5335c79bf8aa85", + "tarball": "http://registry.npmjs.org/simple-mime/-/simple-mime-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "50403b3624c1526b00b0a699247d4f25433a3f55", + "tarball": "http://registry.npmjs.org/simple-mime/-/simple-mime-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "a18cf13d61e049da25360d2782b1536749d0c58f", + "tarball": "http://registry.npmjs.org/simple-mime/-/simple-mime-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/simple-mime/" + }, + "simple-profiler": { + "name": "simple-profiler", + "description": "Access the V8 profiler from node.js ", + "dist-tags": { + "latest": "0.1.1" + }, + "readme": "# node-profiler\n\nAccess the V8 profiler from node.js - http://nodejs.org/\n\n## A word of advice\n\nThis module is for people who need run-time control over V8's profiler. If all you want\nis wholesale profiling, you don't need it. Simply start `node` with profiling enabled:\n\n\tnode --prof application.js\n\nRead on, however, if you want to wield the arcane powers this module grants.\n\n## Compiling\n\nEasy as pie. To build from source:\n\n\tnode-waf configure build install\n\nOr, if you have `npm` installed:\n\n\tnpm install profiler\n\n## Usage\n\nIn most cases you will want to start your application with the profiler in suspended animation.\n\n\tnode --prof --prof_lazy application.js\n\nAnd inside your application:\n\n\tvar profiler = require('profiler');\n\t//\n\t// \n\t//\n\tprofiler.resume();\n\t//\n\t// \n\t//\n\tprofiler.pause();\n\nThis results in a v8.log being written to the current directory that you can process with the V8 profiling tools.\n\nSee http://code.google.com/p/v8/wiki/V8Profiler for more information.\n\n## Advanced usage\n\nBy default, everything that can be profiled, is: heap and CPU usage, and JS object construction.\nThis can be customized by passing a bitwise OR of the following flags to resume() and pause():\n\n\tprofiler.CPU\n\tprofiler.HEAP_STATS\n\tprofiler.HEAP_SNAPSHOT\n\tprofiler.JS_CONSTRUCTORS\n\nExample:\n\n\tprofiler.resume(profiler.CPU | profiler.JS_CONSTRUCTORS);\n\t//\n\t// \n\t//\n\tprofiler.pause(profiler.CPU | profiler.JS_CONSTRUCTORS);\n\nYou can optionally pass a tag to uniquely mark a section in the v8.log:\n\n\tprofiler.resume(profiler.CPU, 42);\n\t//\n\t// \n\t//\n\tprofiler.pause(profiler.CPU, 42);\n\nYou will sometimes want to run the garbage collector before profiling\na performance critical section of code. No problem, we got your back!\n\n profiler.gc();\n profiler.resume(profiler.CPU | profiler.HEAP_STATS);\n", + "maintainers": [ + { + "name": "bwillard", + "email": "bwillard@gmail.com" + } + ], + "time": { + "modified": "2011-12-02T16:22:33.467Z", + "created": "2011-12-02T16:11:50.584Z", + "0.1.0": "2011-12-02T16:12:11.680Z", + "0.1.1": "2011-12-02T16:22:33.467Z" + }, + "author": { + "name": "Brian Willard", + "email": "bwillard@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/X-Streamly/node-profiler.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/simple-profiler/0.1.0", + "0.1.1": "http://registry.npmjs.org/simple-profiler/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "410df9879befe8f79b0d775439c83002b6966282", + "tarball": "http://registry.npmjs.org/simple-profiler/-/simple-profiler-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "7be20185637d4fff84d5e23421ebd6a8ac68b6dc", + "tarball": "http://registry.npmjs.org/simple-profiler/-/simple-profiler-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/simple-profiler/" + }, + "simple-promise": { + "name": "simple-promise", + "description": "Simple promise implementation", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "vitaly", + "email": "vitaly@rcdesign.ru" + } + ], + "time": { + "modified": "2011-11-24T00:11:24.409Z", + "created": "2011-11-24T00:11:21.595Z", + "0.1.0": "2011-11-24T00:11:24.409Z" + }, + "author": { + "name": "Aleksey V Zapparov", + "email": "ixti@member.fsf.org", + "url": "http://www.ixti.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/nodeca/simple-promise.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/simple-promise/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "27093aab071e2b46737aca6871def85c29f733d9", + "tarball": "http://registry.npmjs.org/simple-promise/-/simple-promise-0.1.0.tgz" + } + }, + "keywords": [ + "promise", + "future" + ], + "url": "http://registry.npmjs.org/simple-promise/" + }, + "simple-proxy": { + "name": "simple-proxy", + "description": "A Simple and minimalist http proxy for node", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "killfill", + "email": "pneumann@gmail.com" + } + ], + "time": { + "modified": "2011-09-18T01:35:47.672Z", + "created": "2011-07-10T23:34:28.461Z", + "0.0.1": "2011-07-10T23:34:29.483Z", + "0.0.2": "2011-07-11T01:03:12.696Z", + "0.0.3": "2011-07-11T16:35:17.100Z", + "0.0.4": "2011-09-18T01:35:47.672Z" + }, + "author": { + "name": "Phillip Neumann", + "email": "pneumann@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/killfill/node-simple-proxy.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/simple-proxy/0.0.1", + "0.0.2": "http://registry.npmjs.org/simple-proxy/0.0.2", + "0.0.3": "http://registry.npmjs.org/simple-proxy/0.0.3", + "0.0.4": "http://registry.npmjs.org/simple-proxy/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "e6a2042508796df05b16af0c5a93f240c99d6164", + "tarball": "http://registry.npmjs.org/simple-proxy/-/simple-proxy-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f86ee2271e31114ba01803474e75ab6664553aff", + "tarball": "http://registry.npmjs.org/simple-proxy/-/simple-proxy-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "f49456a7b59e26764990153d6219647724d5e7ca", + "tarball": "http://registry.npmjs.org/simple-proxy/-/simple-proxy-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "9e436fc30c4e82f04265bb0813335beb165262e1", + "tarball": "http://registry.npmjs.org/simple-proxy/-/simple-proxy-0.0.4.tgz" + } + }, + "keywords": [ + "proxy", + "http" + ], + "url": "http://registry.npmjs.org/simple-proxy/" + }, + "simple-rest-client": { + "name": "simple-rest-client", + "description": "Simple HTTP wrapper for creating REST applications", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "franklovecchio", + "email": "frank@isidorey.com" + } + ], + "time": { + "modified": "2011-06-25T23:10:29.085Z", + "created": "2011-06-25T23:10:26.987Z", + "0.0.1": "2011-06-25T23:10:29.085Z" + }, + "author": { + "name": "Frank LoVecchio", + "email": "frank@isidorey.com", + "url": "http://franklovecchio.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/franklovecchio/simple-rest-client.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/simple-rest-client/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "9e72f1df09606f87af91d0ee8853fdc0848a513e", + "tarball": "http://registry.npmjs.org/simple-rest-client/-/simple-rest-client-0.0.1.tgz" + } + }, + "keywords": [ + "REST", + "http", + "client", + "node" + ], + "url": "http://registry.npmjs.org/simple-rest-client/" + }, + "simple-schedule": { + "name": "simple-schedule", + "description": "Simple scheduler for running batch tasks on node.js", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "saltwaterc", + "email": "saltwaterc@gmail.com" + } + ], + "time": { + "modified": "2011-08-03T10:11:14.336Z", + "created": "2011-06-23T17:58:13.978Z", + "0.1.0": "2011-06-23T17:58:14.761Z", + "0.1.1": "2011-07-18T19:16:46.848Z", + "0.1.2": "2011-08-03T10:11:14.336Z" + }, + "author": { + "name": "Stefan Rusu", + "url": "http://www.saltwaterc.eu/" + }, + "repository": { + "type": "git", + "url": "git://github.com/SaltwaterC/simple-schedule.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/simple-schedule/0.1.0", + "0.1.1": "http://registry.npmjs.org/simple-schedule/0.1.1", + "0.1.2": "http://registry.npmjs.org/simple-schedule/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "6842e3326f430e1a9dc68386eb646ead6053cd4c", + "tarball": "http://registry.npmjs.org/simple-schedule/-/simple-schedule-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "1aee3a20e6a6790690d37ab9bf618150110edec2", + "tarball": "http://registry.npmjs.org/simple-schedule/-/simple-schedule-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "a0dd38db239f811ff77958e6ebd32b31b8d4eeec", + "tarball": "http://registry.npmjs.org/simple-schedule/-/simple-schedule-0.1.2.tgz" + } + }, + "keywords": [ + "simple", + "scheduler", + "batch", + "tasks" + ], + "url": "http://registry.npmjs.org/simple-schedule/" + }, + "simple-server": { + "name": "simple-server", + "description": "Simple Server allows you to easily get a node.js static file server up and running anywhere anytime.", + "dist-tags": { + "latest": "0.4.0" + }, + "maintainers": [ + { + "name": "balupton", + "email": "b@lupton.cc" + } + ], + "time": { + "modified": "2011-07-05T01:46:55.865Z", + "created": "2011-06-03T02:26:47.158Z", + "0.1.0": "2011-06-03T02:26:48.649Z", + "0.1.1": "2011-06-03T02:27:31.369Z", + "0.1.2": "2011-06-03T02:28:52.119Z", + "0.1.3": "2011-06-03T02:30:02.335Z", + "0.1.4": "2011-06-03T02:31:02.532Z", + "0.1.5": "2011-06-03T03:31:57.006Z", + "0.1.6": "2011-06-03T03:33:35.989Z", + "0.1.7": "2011-06-07T09:36:11.719Z", + "0.1.8": "2011-06-12T01:17:58.969Z", + "0.2.0": "2011-06-28T15:21:39.987Z", + "0.3.0": "2011-06-30T00:46:12.615Z", + "0.4.0": "2011-07-05T01:46:55.865Z" + }, + "author": { + "name": "Benjamin Lupton", + "email": "b@lupton.cc", + "url": "http://balupton.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/balupton/simple-server.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/simple-server/0.1.0", + "0.1.1": "http://registry.npmjs.org/simple-server/0.1.1", + "0.1.2": "http://registry.npmjs.org/simple-server/0.1.2", + "0.1.3": "http://registry.npmjs.org/simple-server/0.1.3", + "0.1.4": "http://registry.npmjs.org/simple-server/0.1.4", + "0.1.5": "http://registry.npmjs.org/simple-server/0.1.5", + "0.1.6": "http://registry.npmjs.org/simple-server/0.1.6", + "0.1.7": "http://registry.npmjs.org/simple-server/0.1.7", + "0.1.8": "http://registry.npmjs.org/simple-server/0.1.8", + "0.2.0": "http://registry.npmjs.org/simple-server/0.2.0", + "0.3.0": "http://registry.npmjs.org/simple-server/0.3.0", + "0.4.0": "http://registry.npmjs.org/simple-server/0.4.0" + }, + "dist": { + "0.1.0": { + "shasum": "ff0818d224386fbbed3e812b492824f238a53ce7", + "tarball": "http://registry.npmjs.org/simple-server/-/simple-server-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "e1655d7f84f2f3a71b2fd1d5c63a4b0f18456dd4", + "tarball": "http://registry.npmjs.org/simple-server/-/simple-server-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "7a3b9a766c31926d75a8786b738d16c83e9cf3c2", + "tarball": "http://registry.npmjs.org/simple-server/-/simple-server-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "6697e56f89d88c6b94b488859614f1dddce1b3bb", + "tarball": "http://registry.npmjs.org/simple-server/-/simple-server-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "61f90edfc8fbbb92783514431cb06064d685375d", + "tarball": "http://registry.npmjs.org/simple-server/-/simple-server-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "1280e8f0453643189258b76327c4bc784adbc0a1", + "tarball": "http://registry.npmjs.org/simple-server/-/simple-server-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "03b392daf331a454ffc722bd9bf82d6ad3593c52", + "tarball": "http://registry.npmjs.org/simple-server/-/simple-server-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "4dfdd61dd480c5a932c25263705137c0814b8f0c", + "tarball": "http://registry.npmjs.org/simple-server/-/simple-server-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "0007735ab2e3884b1df31277952970e3456c8c9d", + "tarball": "http://registry.npmjs.org/simple-server/-/simple-server-0.1.8.tgz" + }, + "0.2.0": { + "shasum": "34920c5196f0a43e380dcb6334134a27cde0243e", + "tarball": "http://registry.npmjs.org/simple-server/-/simple-server-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "610ee392bbf7f64e6fd929861f0875508d2c8a97", + "tarball": "http://registry.npmjs.org/simple-server/-/simple-server-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "de1a5bf255c8591cfca1767dd425428c5da65a06", + "tarball": "http://registry.npmjs.org/simple-server/-/simple-server-0.4.0.tgz" + } + }, + "keywords": [ + "server", + "coffescript", + "simple" + ], + "url": "http://registry.npmjs.org/simple-server/" + }, + "simple-settings": { + "name": "simple-settings", + "description": "Simple settings manager", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "piha", + "email": "pipiha@gmail.com" + } + ], + "time": { + "modified": "2011-04-14T14:12:47.472Z", + "created": "2011-04-14T14:12:46.998Z", + "0.0.0": "2011-04-14T14:12:47.472Z" + }, + "author": { + "name": "Ilya Tikhonov", + "email": "pipiha@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/piha/node-simple-settings.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/simple-settings/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "183bc855ba8b1a7932b3b8b76266551b0b56add9", + "tarball": "http://registry.npmjs.org/simple-settings/-/simple-settings-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/simple-settings/" + }, + "simple-static": { + "name": "simple-static", + "description": "A very simple example static HTTP server.", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "avianflu", + "email": "charlie@charlieistheman.com" + } + ], + "time": { + "modified": "2011-09-21T00:10:24.230Z", + "created": "2011-09-21T00:10:22.878Z", + "0.0.0": "2011-09-21T00:10:24.230Z" + }, + "author": { + "name": "AvianFlu", + "email": "charlie@charlieistheman.com" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/simple-static/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "61ece1f0d3adf6cf69b8ae60e3cc3610f9cf8682", + "tarball": "http://registry.npmjs.org/simple-static/-/simple-static-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/simple-static/" + }, + "simple-xml-writer": { + "name": "simple-xml-writer", + "description": "Tiny and simple XML writer util for NodeJS", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "minchenkov", + "email": "pavel@minchenkov.com" + } + ], + "time": { + "modified": "2011-09-14T12:50:55.908Z", + "created": "2011-09-14T12:50:54.045Z", + "0.0.1": "2011-09-14T12:50:55.908Z" + }, + "author": { + "name": "Pavel Minchenkov", + "email": "pavel@metahouse.ru" + }, + "repository": { + "type": "git", + "url": "git://github.com/minchenkov/simple-xml-writer.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/simple-xml-writer/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "87e162c5a09ced717a873794c2d2e1c64c967835", + "tarball": "http://registry.npmjs.org/simple-xml-writer/-/simple-xml-writer-0.0.1.tgz" + } + }, + "keywords": [ + "xml", + "writer" + ], + "url": "http://registry.npmjs.org/simple-xml-writer/" + }, + "simple-xmpp": { + "name": "simple-xmpp", + "description": "Simple High Level NodeJS XMPP Library", + "dist-tags": { + "latest": "0.1.5beta" + }, + "maintainers": [ + { + "name": "arunoda", + "email": "arunoda.susiripala@gmail.com" + } + ], + "time": { + "modified": "2011-09-08T10:04:43.711Z", + "created": "2011-08-11T22:25:09.520Z", + "0.1.1alpha": "2011-08-11T22:25:14.052Z", + "0.1.2alpha": "2011-08-12T05:34:37.246Z", + "0.1.3beta": "2011-08-13T20:52:42.094Z", + "0.1.4beta": "2011-08-13T23:25:22.007Z", + "0.1.5beta": "2011-09-08T10:04:43.711Z" + }, + "author": { + "name": "Arunoda Susiripala", + "email": "arunoda.susiripala@gmail.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:arunoda/node-simple-xmpp.git" + }, + "versions": { + "0.1.1alpha": "http://registry.npmjs.org/simple-xmpp/0.1.1alpha", + "0.1.2alpha": "http://registry.npmjs.org/simple-xmpp/0.1.2alpha", + "0.1.3beta": "http://registry.npmjs.org/simple-xmpp/0.1.3beta", + "0.1.4beta": "http://registry.npmjs.org/simple-xmpp/0.1.4beta", + "0.1.5beta": "http://registry.npmjs.org/simple-xmpp/0.1.5beta" + }, + "dist": { + "0.1.1alpha": { + "shasum": "6ae5544d9cfda1752ceaf0a02a4f53dc823de478", + "tarball": "http://registry.npmjs.org/simple-xmpp/-/simple-xmpp-0.1.1alpha.tgz" + }, + "0.1.2alpha": { + "shasum": "0f7dc64645a663446029d0b3e9dc2d6a3119b6fe", + "tarball": "http://registry.npmjs.org/simple-xmpp/-/simple-xmpp-0.1.2alpha.tgz" + }, + "0.1.3beta": { + "shasum": "c9e7846df1a4647120f93d2c22c3742afc3eda89", + "tarball": "http://registry.npmjs.org/simple-xmpp/-/simple-xmpp-0.1.3beta.tgz" + }, + "0.1.4beta": { + "shasum": "b25de6e4107781b8326d9778c64be8fd5021a542", + "tarball": "http://registry.npmjs.org/simple-xmpp/-/simple-xmpp-0.1.4beta.tgz" + }, + "0.1.5beta": { + "shasum": "4416c8913755c9a85634741bcb5fd953e23a155e", + "tarball": "http://registry.npmjs.org/simple-xmpp/-/simple-xmpp-0.1.5beta.tgz" + } + }, + "url": "http://registry.npmjs.org/simple-xmpp/" + }, + "simpledb": { + "name": "simpledb", + "description": "An Amazon AWS SimpleDB library for Node.js that is user-friendly and fault-tolerant", + "dist-tags": { + "latest": "0.0.7" + }, + "maintainers": [ + { + "name": "rjrodger", + "email": "richard@ricebridge.com" + } + ], + "time": { + "modified": "2011-11-01T12:33:55.240Z", + "created": "2011-01-22T02:36:00.214Z", + "0.0.1": "2011-01-22T02:36:00.617Z", + "0.0.2": "2011-01-25T01:41:42.289Z", + "0.0.3": "2011-01-25T20:53:42.174Z", + "0.0.4": "2011-02-22T23:41:15.642Z", + "0.0.5": "2011-03-03T23:46:11.646Z", + "0.0.6": "2011-04-09T17:09:04.466Z", + "0.0.7": "2011-11-01T12:33:55.240Z" + }, + "author": { + "name": "Richard Rodger", + "email": "richard@ricebridge.com", + "url": "http://richardrodger.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/rjrodger/simpledb.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/simpledb/0.0.1", + "0.0.2": "http://registry.npmjs.org/simpledb/0.0.2", + "0.0.3": "http://registry.npmjs.org/simpledb/0.0.3", + "0.0.4": "http://registry.npmjs.org/simpledb/0.0.4", + "0.0.5": "http://registry.npmjs.org/simpledb/0.0.5", + "0.0.6": "http://registry.npmjs.org/simpledb/0.0.6", + "0.0.7": "http://registry.npmjs.org/simpledb/0.0.7" + }, + "dist": { + "0.0.1": { + "shasum": "7cda3c5d0269c0ee420e951b6b28bce33b9a0d13", + "tarball": "http://registry.npmjs.org/simpledb/-/simpledb-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "62327f9ce57c1de713b4c1b720d0774b23a22260", + "tarball": "http://registry.npmjs.org/simpledb/-/simpledb-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "87d910aa24a047a83bee7aa1bcbb93fd9ff45bfe", + "tarball": "http://registry.npmjs.org/simpledb/-/simpledb-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "d884b6ddab36b9b740cb677758f0e1a8043e853e", + "tarball": "http://registry.npmjs.org/simpledb/-/simpledb-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "834c75c98321c35581822f7a3325ea4d2e231c31", + "tarball": "http://registry.npmjs.org/simpledb/-/simpledb-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "7559a8ca3bd400389d9e4c3588fe998af11a339c", + "tarball": "http://registry.npmjs.org/simpledb/-/simpledb-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "66f0f08f41c5aa6fe0b86c06b0434f36ef7e6390", + "tarball": "http://registry.npmjs.org/simpledb/-/simpledb-0.0.7.tgz" + } + }, + "keywords": [ + "amazon", + "aws", + "simpledb", + "database", + "wrapper", + "api" + ], + "url": "http://registry.npmjs.org/simpledb/" + }, + "simplegeo": { + "name": "simplegeo", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "unscene", + "email": "ryan.fairchild@gmail.com" + } + ], + "author": { + "name": "Ryan Fairchild" + }, + "versions": { + "0.1.2": "http://registry.npmjs.org/simplegeo/0.1.2", + "0.1.4": "http://registry.npmjs.org/simplegeo/0.1.4" + }, + "dist": { + "0.1.2": { + "tarball": "http://packages:5984/simplegeo/-/simplegeo-0.1.2.tgz" + }, + "0.1.4": { + "tarball": "http://packages:5984/simplegeo/-/simplegeo-0.1.4.tgz" + } + }, + "url": "http://registry.npmjs.org/simplegeo/" + }, + "simplegeo-client": { + "name": "simplegeo-client", + "description": "A SimpleGeo Client", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "pihi", + "email": "isaac@pihimedia.com" + } + ], + "time": { + "modified": "2011-04-20T21:35:36.171Z", + "created": "2011-04-19T12:25:44.447Z", + "0.0.1": "2011-04-19T12:25:45.358Z", + "0.0.2": "2011-04-19T19:23:55.712Z", + "0.1.0": "2011-04-20T21:35:36.171Z" + }, + "author": { + "name": "Isaac Hildebrandt", + "email": "isaac@pihimedia.com", + "url": "http://pihimedia.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/ihildebrandt/simplegeo.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/simplegeo-client/0.0.1", + "0.0.2": "http://registry.npmjs.org/simplegeo-client/0.0.2", + "0.1.0": "http://registry.npmjs.org/simplegeo-client/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "3170b5aec592a664598f839592f434852c65e2eb", + "tarball": "http://registry.npmjs.org/simplegeo-client/-/simplegeo-client-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "63cfd5ce07a7a2c1b8ec66b0abd6c27a86c675a8", + "tarball": "http://registry.npmjs.org/simplegeo-client/-/simplegeo-client-0.0.2.tgz" + }, + "0.1.0": { + "shasum": "0ed04da4afc5881c95e3ec8246fcccbf452cf8f3", + "tarball": "http://registry.npmjs.org/simplegeo-client/-/simplegeo-client-0.1.0.tgz" + } + }, + "keywords": [ + "simplegeo" + ], + "url": "http://registry.npmjs.org/simplegeo-client/" + }, + "simplegeo-thrift": { + "name": "simplegeo-thrift", + "description": "simplegeo node-thrift fork", + "dist-tags": { + "latest": "0.6.0dev1" + }, + "maintainers": [ + { + "name": "ithkuil", + "email": "marko.mikulicic@isti.cnr.it" + } + ], + "time": { + "modified": "2011-04-10T12:01:06.472Z", + "created": "2011-04-10T12:01:05.286Z", + "0.6.0dev1": "2011-04-10T12:01:06.472Z" + }, + "author": { + "name": "Wade Simmons", + "email": "wade@wades.im" + }, + "versions": { + "0.6.0dev1": "http://registry.npmjs.org/simplegeo-thrift/0.6.0dev1" + }, + "dist": { + "0.6.0dev1": { + "shasum": "c1ab5759fe7cb3d62b99a6b1e887a7de0381d3f3", + "tarball": "http://registry.npmjs.org/simplegeo-thrift/-/simplegeo-thrift-0.6.0dev1.tgz" + } + }, + "url": "http://registry.npmjs.org/simplegeo-thrift/" + }, + "simplelogger": { + "name": "simplelogger", + "description": "A simple logging solution supporting file, stdout and syslog output", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "ditesh", + "email": "ditesh@gathani.org" + } + ], + "time": { + "modified": "2011-06-30T10:12:00.527Z", + "created": "2011-06-30T10:11:58.785Z", + "0.1.0": "2011-06-30T10:12:00.527Z" + }, + "author": { + "name": "Ditesh Shashikant Gathani", + "email": "ditesh@gathani.org", + "url": "http://ditesh.gathani.org/blog/" + }, + "repository": { + "type": "git", + "url": "git://github.com/ditesh/node-simplelogger.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/simplelogger/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "8a9dd8c1e8bc4696f30897eccd2733618028ca0b", + "tarball": "http://registry.npmjs.org/simplelogger/-/simplelogger-0.1.0.tgz" + } + }, + "keywords": [ + "server", + "logging", + "log", + "syslog", + "util", + "utility" + ], + "url": "http://registry.npmjs.org/simplelogger/" + }, + "SimpleQueue": { + "name": "SimpleQueue", + "description": "a simple fifo queue", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "#SimpleQueue\nA simple FIFO queue\n\n##What is this?\n\nThere are plenty queues for node, but even those branded as FIFO (first in first out) usually destroy the order. When parsing data like RSS feeds & fetching the pages behind the links, you need to know what element had what position - so I created this little helper (mainly to process feeds with my script [readabilitySAX](https://github.com/fb55/readabilitysax)).\n\n##How to use\n\nConstructor:\n\n new SimpleQueue( worker, callback[, done[, concurrent]])\n\nMethods:\n\n queue.push( element) //adds an element to the list\n\nMethods to include:\n\n* `worker`: The method to call for each child. Args: `element`, `callback(err, result)`\n* `callback`: The method to call when an element was processed. Args: `err` and `result` (whatever the worker returned), `element` (the input)\n* `done`: The method to call once the stack is cleared. Args: none\n\n##Example\n\n var queue = new SimpleQueue(function(element, callback){\n \tsetTimeout(function(){\n callback(null, element/1e3); \n }, element);\n }, function(err, result, element){\n \tconsole.log(result);\n }, function(){\n \tconsole.log(\"done\");\n }, 4);\n \n queue.push(1e3);\n queue.push(5e3);\n queue.push(3e3);\n queue.push(4e3);\n queue.push(8e3);\n queue.push(2e3);\n queue.push(0);\n\nOutput: \n\n 1, 5, 3, 4, 8, 2, 0, \"done\"\n\nThis takes 9 seconds to run.", + "maintainers": [ + { + "name": "feedic", + "email": "me@feedic.com" + } + ], + "time": { + "modified": "2011-12-01T14:15:21.383Z", + "created": "2011-12-01T14:15:19.380Z", + "0.0.1": "2011-12-01T14:15:21.383Z" + }, + "author": { + "name": "Felix Boehm", + "email": "me@feedic.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/fb55/simplequeue.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/SimpleQueue/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "74466490afa37c1878653767f23c59067a8e7d70", + "tarball": "http://registry.npmjs.org/SimpleQueue/-/SimpleQueue-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/SimpleQueue/" + }, + "simplesets": { + "name": "simplesets", + "description": "Simple set data type, with API similar to Python's sets module.", + "dist-tags": { + "latest": "1.1.6" + }, + "maintainers": [ + { + "name": "PeterScott", + "email": "pjscott@iastate.edu" + } + ], + "author": { + "name": "Peter Scott", + "email": "pjscott@iastate.edu" + }, + "repository": { + "type": "git", + "url": "git://github.com/PeterScott/simplesets-nodejs.git" + }, + "time": { + "modified": "2011-03-17T14:54:38.508Z", + "created": "2011-03-17T14:54:37.080Z", + "0.9.0": "2011-03-17T14:54:37.080Z", + "1.0.0": "2011-03-17T14:54:37.080Z", + "1.1.0": "2011-03-17T14:54:37.080Z", + "1.1.1": "2011-03-17T14:54:37.080Z", + "1.1.2": "2011-03-17T14:54:37.080Z", + "1.1.3": "2011-03-17T14:54:37.080Z", + "1.1.4": "2011-03-17T14:54:37.080Z", + "1.1.5": "2011-03-17T14:54:37.080Z", + "1.1.6": "2011-03-17T14:54:38.508Z" + }, + "versions": { + "0.9.0": "http://registry.npmjs.org/simplesets/0.9.0", + "1.0.0": "http://registry.npmjs.org/simplesets/1.0.0", + "1.1.0": "http://registry.npmjs.org/simplesets/1.1.0", + "1.1.1": "http://registry.npmjs.org/simplesets/1.1.1", + "1.1.2": "http://registry.npmjs.org/simplesets/1.1.2", + "1.1.3": "http://registry.npmjs.org/simplesets/1.1.3", + "1.1.4": "http://registry.npmjs.org/simplesets/1.1.4", + "1.1.5": "http://registry.npmjs.org/simplesets/1.1.5", + "1.1.6": "http://registry.npmjs.org/simplesets/1.1.6" + }, + "dist": { + "0.9.0": { + "tarball": "http://registry.npmjs.org/simplesets/-/simplesets-0.9.0.tgz" + }, + "1.0.0": { + "tarball": "http://registry.npmjs.org/simplesets/-/simplesets-1.0.0.tgz" + }, + "1.1.0": { + "tarball": "http://registry.npmjs.org/simplesets/-/simplesets-1.1.0.tgz" + }, + "1.1.1": { + "tarball": "http://registry.npmjs.org/simplesets/-/simplesets-1.1.1.tgz" + }, + "1.1.2": { + "tarball": "http://registry.npmjs.org/simplesets/-/simplesets-1.1.2.tgz" + }, + "1.1.3": { + "tarball": "http://registry.npmjs.org/simplesets/-/simplesets-1.1.3.tgz" + }, + "1.1.4": { + "tarball": "http://registry.npmjs.org/simplesets/-/simplesets-1.1.4.tgz" + }, + "1.1.5": { + "tarball": "http://registry.npmjs.org/simplesets/-/simplesets-1.1.5.tgz" + }, + "1.1.6": { + "shasum": "f56c4b81ab278425ef33c664079c0eba7e401a9f", + "tarball": "http://registry.npmjs.org/simplesets/-/simplesets-1.1.6.tgz" + } + }, + "url": "http://registry.npmjs.org/simplesets/" + }, + "simplydb": { + "name": "simplydb", + "description": "A wrapper for Amazon SimpleDB", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "marshall", + "email": "timothyjmarshall@gmail.com" + } + ], + "time": { + "modified": "2011-09-17T23:30:51.957Z", + "created": "2011-09-06T00:13:36.279Z", + "1.0.0": "2011-09-06T00:13:37.834Z", + "1.0.1": "2011-09-17T23:30:51.957Z" + }, + "author": { + "name": "Timothy J. Marshall", + "email": "timothyjmarshall@gmail.com", + "url": "http://timothyjmarshall.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/tmarshall/SimplyDB.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/simplydb/1.0.0", + "1.0.1": "http://registry.npmjs.org/simplydb/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "9842b5262ec0b8ea65eb30b59db2afa52902f058", + "tarball": "http://registry.npmjs.org/simplydb/-/simplydb-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "7b5a2b25c16947ca066b52787cf1631256f0e76c", + "tarball": "http://registry.npmjs.org/simplydb/-/simplydb-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/simplydb/" + }, + "sin": { + "name": "sin", + "description": "A simple async web framework", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "naitik", + "email": "n@daaku.org" + } + ], + "author": { + "name": "Naitik Shah", + "email": "n@daaku.org" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/sin/0.2.0" + }, + "dist": { + "0.2.0": { + "tarball": "http://packages:5984/sin/-/sin-0.2.0.tgz" + } + }, + "keywords": [ + "framework", + "web", + "rest", + "restful" + ], + "url": "http://registry.npmjs.org/sin/" + }, + "since": { + "name": "since", + "description": "NodeJS Util function for ascertaining Deltas (Time Since X getTime())!", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "edwardhotchkiss", + "email": "e@ingk.com" + } + ], + "time": { + "modified": "2011-12-05T14:22:16.871Z", + "created": "2011-09-27T13:54:03.337Z", + "0.0.1": "2011-09-27T13:54:03.702Z", + "0.0.2": "2011-11-29T15:50:15.653Z", + "0.0.3": "2011-12-05T14:22:16.871Z" + }, + "author": { + "name": "Edward Hotchkiss", + "email": "e@ingk.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/edwardhotchkiss/since.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/since/0.0.1", + "0.0.2": "http://registry.npmjs.org/since/0.0.2", + "0.0.3": "http://registry.npmjs.org/since/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "eb871104f800df4e7a8f90a18d079517690eb03b", + "tarball": "http://registry.npmjs.org/since/-/since-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "abb8a1fe01b5f31e447c3cf3c7e5375f93aac030", + "tarball": "http://registry.npmjs.org/since/-/since-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "01773381fc2607985c0b01347be219d590e82d34", + "tarball": "http://registry.npmjs.org/since/-/since-0.0.3.tgz" + } + }, + "keywords": [ + "since", + "delta", + "time", + "mtime", + "difference" + ], + "url": "http://registry.npmjs.org/since/" + }, + "sink": { + "name": "sink", + "description": "Untangle async code", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "hiddenbek", + "email": "scott.wadden@gmail.com" + } + ], + "author": { + "name": "Scott Wadden" + }, + "repository": { + "type": "git", + "url": "git://github.com/hiddenbek/sink.git" + }, + "time": { + "modified": "2011-02-28T02:56:12.471Z", + "created": "2011-02-28T02:56:12.471Z", + "0.1.0": "2011-02-28T02:56:12.471Z", + "0.1.1": "2011-02-28T02:56:12.471Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/sink/0.1.0", + "0.1.1": "http://registry.npmjs.org/sink/0.1.1" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/sink/-/sink-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "f5a6594b774e04612d8a7555893dcea6ac080be9", + "tarball": "http://registry.npmjs.org/sink/-/sink-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/sink/" + }, + "sink-test": { + "name": "sink-test", + "description": "test your javascript - headless, or in the browser", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "ded", + "email": "polvero@gmail.com" + }, + { + "name": "fat", + "email": "jacobthornton@gmail.com" + } + ], + "time": { + "modified": "2011-09-26T20:04:38.951Z", + "created": "2011-03-14T21:51:35.452Z", + "0.0.3": "2011-03-14T21:51:35.712Z", + "0.0.4": "2011-04-07T22:39:14.182Z", + "0.0.5": "2011-05-03T19:36:56.573Z", + "0.0.6": "2011-05-24T01:33:01.986Z", + "0.0.7": "2011-06-26T03:47:01.900Z", + "0.0.8": "2011-06-26T04:33:09.249Z", + "0.0.9": "2011-09-12T21:08:00.482Z", + "0.1.0": "2011-09-13T21:28:43.761Z", + "0.1.1": "2011-09-26T20:04:38.951Z" + }, + "author": { + "name": "Dustin Diaz", + "email": "polvero@gmail.com", + "url": "http://dustindiaz.com" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/sink-test/0.0.3", + "0.0.4": "http://registry.npmjs.org/sink-test/0.0.4", + "0.0.5": "http://registry.npmjs.org/sink-test/0.0.5", + "0.0.6": "http://registry.npmjs.org/sink-test/0.0.6", + "0.0.7": "http://registry.npmjs.org/sink-test/0.0.7", + "0.0.8": "http://registry.npmjs.org/sink-test/0.0.8", + "0.0.9": "http://registry.npmjs.org/sink-test/0.0.9", + "0.1.0": "http://registry.npmjs.org/sink-test/0.1.0", + "0.1.1": "http://registry.npmjs.org/sink-test/0.1.1" + }, + "dist": { + "0.0.3": { + "shasum": "9a3b0cdbe804de78b35c9a22d7396e86ddf9c3be", + "tarball": "http://registry.npmjs.org/sink-test/-/sink-test-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "973535ad0fd6172dbdbc285c55c0690a938716e3", + "tarball": "http://registry.npmjs.org/sink-test/-/sink-test-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "e47cb2f06039aaec6a094fd9083f153dc3b4cdd4", + "tarball": "http://registry.npmjs.org/sink-test/-/sink-test-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "eec2ef230eeb28f3e74da8745f73015fd67ab84f", + "tarball": "http://registry.npmjs.org/sink-test/-/sink-test-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "12244e24632cc1d9455c96a62b4daa69a1300d84", + "tarball": "http://registry.npmjs.org/sink-test/-/sink-test-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "705021636af0a61ddab74f6f1cd8f8c8d9c04dd8", + "tarball": "http://registry.npmjs.org/sink-test/-/sink-test-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "be5f1eaf2485069d1d851ecf289857898860d888", + "tarball": "http://registry.npmjs.org/sink-test/-/sink-test-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "fac70922975c7de9745ec780d2796522ea38b71f", + "tarball": "http://registry.npmjs.org/sink-test/-/sink-test-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "aec2818ecb10648a0f96229cca3a45731cb44673", + "tarball": "http://registry.npmjs.org/sink-test/-/sink-test-0.1.1.tgz" + } + }, + "keywords": [ + "testing", + "unit tests", + "headless", + "tdd", + "async" + ], + "url": "http://registry.npmjs.org/sink-test/" + }, + "sinon": { + "name": "sinon", + "description": "JavaScript test spies, stubs and mocks.", + "dist-tags": { + "latest": "1.2.0" + }, + "maintainers": [ + { + "name": "seeflanigan", + "email": "seeflanigan@gmail.com" + }, + { + "name": "cjohansen", + "email": "christian@cjohansen.no" + } + ], + "author": { + "name": "Christian Johansen" + }, + "repository": { + "type": "git", + "url": "git://github.com/cjohansen/Sinon.JS.git" + }, + "time": { + "modified": "2011-09-27T20:44:13.926Z", + "created": "2010-12-20T21:03:03.526Z", + "0.6.2": "2010-12-20T21:03:03.526Z", + "0.6.3": "2010-12-20T21:03:03.526Z", + "1.0.0": "2010-12-20T21:03:03.526Z", + "1.0.1": "2010-12-20T21:03:03.526Z", + "1.0.2": "2011-02-22T12:25:44.465Z", + "1.1.0": "2011-05-05T18:58:44.224Z", + "1.1.1": "2011-05-17T21:46:21.645Z", + "1.2.0": "2011-09-27T20:44:13.926Z" + }, + "versions": { + "0.6.2": "http://registry.npmjs.org/sinon/0.6.2", + "0.6.3": "http://registry.npmjs.org/sinon/0.6.3", + "1.0.0": "http://registry.npmjs.org/sinon/1.0.0", + "1.0.1": "http://registry.npmjs.org/sinon/1.0.1", + "1.0.2": "http://registry.npmjs.org/sinon/1.0.2", + "1.1.0": "http://registry.npmjs.org/sinon/1.1.0", + "1.1.1": "http://registry.npmjs.org/sinon/1.1.1", + "1.2.0": "http://registry.npmjs.org/sinon/1.2.0" + }, + "dist": { + "0.6.2": { + "tarball": "http://packages:5984/sinon/-/sinon-0.6.2.tgz" + }, + "0.6.3": { + "tarball": "http://packages:5984/sinon/-/sinon-0.6.3.tgz" + }, + "1.0.0": { + "shasum": "78201e61fc8e1ea46fb61174f41211f58d90870c", + "tarball": "http://registry.npmjs.org/sinon/-/sinon-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "1fb35f36f24602183201e91eab420f93e9951932", + "tarball": "http://registry.npmjs.org/sinon/-/sinon-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "e785bd9460eaba02cb9140db5be58ad6014417fc", + "tarball": "http://registry.npmjs.org/sinon/-/sinon-1.0.2.tgz" + }, + "1.1.0": { + "shasum": "5605639f60b6225ff2428a71bb13993196a7e709", + "tarball": "http://registry.npmjs.org/sinon/-/sinon-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "d202e5c6ae822b32f7b7ae2b5904fce3d2e83c8d", + "tarball": "http://registry.npmjs.org/sinon/-/sinon-1.1.1.tgz" + }, + "1.2.0": { + "shasum": "fe7f1c727b706c71137bf1ba6f2ccfa09df1c3f8", + "tarball": "http://registry.npmjs.org/sinon/-/sinon-1.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/sinon/" + }, + "sinon-buster": { + "name": "sinon-buster", + "description": "Sinon spies, stubs and mocks for buster-test", + "dist-tags": { + "latest": "0.4.0" + }, + "maintainers": [ + { + "name": "cjohansen", + "email": "christian@cjohansen.no" + } + ], + "time": { + "modified": "2011-12-05T21:20:27.786Z", + "created": "2011-08-08T22:16:25.423Z", + "0.3.0": "2011-08-08T22:16:27.318Z", + "0.3.1": "2011-08-23T22:41:29.012Z", + "0.4.0": "2011-12-05T21:20:27.786Z" + }, + "author": { + "name": "Christian Johansen", + "email": "christian@cjohansen.no", + "url": "http://cjohansen.no" + }, + "repository": { + "type": "git", + "url": "git://gitorious.org/buster/sinon-buster.git" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/sinon-buster/0.3.0", + "0.3.1": "http://registry.npmjs.org/sinon-buster/0.3.1", + "0.4.0": "http://registry.npmjs.org/sinon-buster/0.4.0" + }, + "dist": { + "0.3.0": { + "shasum": "c95f5193c4014f393398196f96f3f259de799954", + "tarball": "http://registry.npmjs.org/sinon-buster/-/sinon-buster-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "4fb2b113e721ef817505d4826823e7cdc841934f", + "tarball": "http://registry.npmjs.org/sinon-buster/-/sinon-buster-0.3.1.tgz" + }, + "0.4.0": { + "shasum": "8aea218969aa8318dc46e4dfea08f6db7733adc8", + "tarball": "http://registry.npmjs.org/sinon-buster/-/sinon-buster-0.4.0.tgz" + } + }, + "url": "http://registry.npmjs.org/sinon-buster/" + }, + "sinon-nodeunit": { + "name": "sinon-nodeunit", + "description": "nodeunit adapter for Sinon.JS: JavaScript test spies, stubs and mocks.", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "cjohansen", + "email": "christian@cjohansen.no" + } + ], + "author": { + "name": "Christian Johansen" + }, + "repository": { + "type": "git", + "url": "http://github.com/cjohansen/sinon-nodeunit.git" + }, + "time": { + "modified": "2011-03-04T15:25:25.790Z", + "created": "2010-12-24T11:27:51.428Z", + "0.1.0": "2010-12-24T11:27:51.428Z", + "0.1.1": "2010-12-24T11:27:51.428Z", + "0.1.2": "2011-03-04T15:25:25.790Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/sinon-nodeunit/0.1.0", + "0.1.1": "http://registry.npmjs.org/sinon-nodeunit/0.1.1", + "0.1.2": "http://registry.npmjs.org/sinon-nodeunit/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "8819ea0c77683d9d8cdb3aff0633cbbb05477613", + "tarball": "http://registry.npmjs.org/sinon-nodeunit/-/sinon-nodeunit-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "144c2ed80a41a6a53536c86d43f637aa789deafe", + "tarball": "http://registry.npmjs.org/sinon-nodeunit/-/sinon-nodeunit-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "4406784d483c7e41e47b70fd061456481d6499eb", + "tarball": "http://registry.npmjs.org/sinon-nodeunit/-/sinon-nodeunit-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/sinon-nodeunit/" + }, + "siob": { + "name": "siob", + "description": "Socket.IO load test tool", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "hakobera", + "email": "hakobera@gmail.com" + } + ], + "time": { + "modified": "2011-10-14T15:52:49.588Z", + "created": "2011-10-14T15:52:48.017Z", + "0.0.1": "2011-10-14T15:52:49.588Z" + }, + "author": { + "name": "Kazuyuki Honda", + "email": "hakobera@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/hakobera/siob.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/siob/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "a8189b4ab5a7614db2eeb62b9c9736a088221324", + "tarball": "http://registry.npmjs.org/siob/-/siob-0.0.1.tgz" + } + }, + "keywords": [ + "Socket.IO" + ], + "url": "http://registry.npmjs.org/siob/" + }, + "sip": { + "name": "sip", + "description": "Simple SIP implementation", + "dist-tags": { + "latest": "0.0.2-7" + }, + "maintainers": [ + { + "name": "kirm", + "email": "kirill.mikhailov@gmail.com" + } + ], + "author": { + "name": "Kirill Mikhailov", + "email": "kirill.mikhailov@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/kirm/sip.js.git" + }, + "time": { + "modified": "2011-11-16T18:14:28.534Z", + "created": "2011-02-09T11:51:30.354Z", + "0.0.1": "2011-02-09T11:51:30.354Z", + "0.0.2": "2011-02-09T11:51:30.354Z", + "0.0.2-1": "2011-02-17T05:12:26.425Z", + "0.0.2-2": "2011-02-18T09:42:10.483Z", + "0.0.2-3": "2011-03-01T18:00:28.811Z", + "0.0.2-4": "2011-04-27T20:58:47.557Z", + "0.0.2-5": "2011-06-05T19:17:11.560Z", + "0.0.2-6": "2011-09-09T20:43:05.210Z", + "0.0.2-7": "2011-11-16T18:14:28.534Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/sip/0.0.1", + "0.0.2": "http://registry.npmjs.org/sip/0.0.2", + "0.0.2-1": "http://registry.npmjs.org/sip/0.0.2-1", + "0.0.2-2": "http://registry.npmjs.org/sip/0.0.2-2", + "0.0.2-3": "http://registry.npmjs.org/sip/0.0.2-3", + "0.0.2-4": "http://registry.npmjs.org/sip/0.0.2-4", + "0.0.2-5": "http://registry.npmjs.org/sip/0.0.2-5", + "0.0.2-6": "http://registry.npmjs.org/sip/0.0.2-6", + "0.0.2-7": "http://registry.npmjs.org/sip/0.0.2-7" + }, + "dist": { + "0.0.1": { + "shasum": "12e0dd7b7931de3885f9737c0e90c28a72788c98", + "tarball": "http://registry.npmjs.org/sip/-/sip-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f18b381726d5aa58bd175cdd4dadb5905725e302", + "tarball": "http://registry.npmjs.org/sip/-/sip-0.0.2.tgz" + }, + "0.0.2-1": { + "shasum": "4e00c04a8087f184caf879a5585d61fb938377d5", + "tarball": "http://registry.npmjs.org/sip/-/sip-0.0.2-1.tgz" + }, + "0.0.2-2": { + "shasum": "5ddb1ed0734c741150717baa780ea30abd0fece7", + "tarball": "http://registry.npmjs.org/sip/-/sip-0.0.2-2.tgz" + }, + "0.0.2-3": { + "shasum": "da1396147581fd970aabea8abfa477d7b1e217fa", + "tarball": "http://registry.npmjs.org/sip/-/sip-0.0.2-3.tgz" + }, + "0.0.2-4": { + "shasum": "85b624d9622b85e9aa9197bbef9e13a7a2977992", + "tarball": "http://registry.npmjs.org/sip/-/sip-0.0.2-4.tgz" + }, + "0.0.2-5": { + "shasum": "e2361d0607bbadaf1678787b952bac6e66f309f5", + "tarball": "http://registry.npmjs.org/sip/-/sip-0.0.2-5.tgz" + }, + "0.0.2-6": { + "shasum": "b25fcb2b8c9fd7da0f847a74c52e060ddeef1c36", + "tarball": "http://registry.npmjs.org/sip/-/sip-0.0.2-6.tgz" + }, + "0.0.2-7": { + "shasum": "c21d93412c84e6606db4e855ca450221d6280ebf", + "tarball": "http://registry.npmjs.org/sip/-/sip-0.0.2-7.tgz" + } + }, + "url": "http://registry.npmjs.org/sip/" + }, + "sitemap": { + "name": "sitemap", + "description": "Sitemap-generating framework", + "dist-tags": { + "latest": "0.6.0" + }, + "maintainers": [ + { + "name": "ekalinin", + "email": "e.v.kalinin@gmail.com" + } + ], + "time": { + "modified": "2011-08-05T08:40:42.740Z", + "created": "2011-06-30T05:54:40.081Z", + "0.1.0": "2011-06-30T05:54:40.844Z", + "0.2.0": "2011-06-30T06:00:07.490Z", + "0.3.0": "2011-07-31T11:32:03.037Z", + "0.4.0": "2011-07-31T13:06:01.466Z", + "0.5.0": "2011-08-01T12:16:45.317Z", + "0.6.0": "2011-08-05T08:40:42.740Z" + }, + "author": { + "name": "Eugene Kalinin", + "email": "e.v.kalinin@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/ekalinin/sitemap.js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/sitemap/0.1.0", + "0.2.0": "http://registry.npmjs.org/sitemap/0.2.0", + "0.3.0": "http://registry.npmjs.org/sitemap/0.3.0", + "0.4.0": "http://registry.npmjs.org/sitemap/0.4.0", + "0.5.0": "http://registry.npmjs.org/sitemap/0.5.0", + "0.6.0": "http://registry.npmjs.org/sitemap/0.6.0" + }, + "dist": { + "0.1.0": { + "shasum": "917ca8dc78b71d1422e5252c0c92601bce979635", + "tarball": "http://registry.npmjs.org/sitemap/-/sitemap-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "efad5988583d6f6b091edfccbc2b65b6270dbd17", + "tarball": "http://registry.npmjs.org/sitemap/-/sitemap-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "c236fa11ac5ee38d057f4bb008aa94a48a5be76f", + "tarball": "http://registry.npmjs.org/sitemap/-/sitemap-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "0265b17f4a707977e05884182d81973196652902", + "tarball": "http://registry.npmjs.org/sitemap/-/sitemap-0.4.0.tgz" + }, + "0.5.0": { + "shasum": "a298ec52ffd9e0af7258b892d05fdddfc4c16717", + "tarball": "http://registry.npmjs.org/sitemap/-/sitemap-0.5.0.tgz" + }, + "0.6.0": { + "shasum": "671355d08a87f96e9993f13f2a3fec35f1f0f5c9", + "tarball": "http://registry.npmjs.org/sitemap/-/sitemap-0.6.0.tgz" + } + }, + "keywords": [ + "sitemap", + "sitemap.xml" + ], + "url": "http://registry.npmjs.org/sitemap/" + }, + "sitequery": { + "name": "sitequery", + "description": "A reactive framework for asynchronous web crawling.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "rcastillo", + "email": "roger.castillo@loku.com" + } + ], + "time": { + "modified": "2011-12-07T00:55:18.983Z", + "created": "2011-12-07T00:33:58.352Z", + "0.1.0": "2011-12-07T00:55:18.983Z" + }, + "author": { + "name": "Roger H. Castillo", + "email": "roger.castillo@loku.com", + "url": "http://tech.loku.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/rcastillo/sitequery.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/sitequery/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "946f7a4e4eeb681c36c86f9af3c7b55f1c3a3847", + "tarball": "http://registry.npmjs.org/sitequery/-/sitequery-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/sitequery/" + }, + "sizlate": { + "name": "sizlate", + "description": "express.js templating engine using sizzle selectors.", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "simonmcmanus", + "email": "mcmanus.simon@gmail.com" + } + ], + "time": { + "modified": "2011-11-29T19:01:07.960Z", + "created": "2011-09-15T20:47:34.751Z", + "0.2.0": "2011-09-15T20:47:35.162Z", + "0.3.0": "2011-11-29T19:01:07.960Z" + }, + "author": { + "name": "Simon McManus mcmanus.simon@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/simonmcmanus/sizlate.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/sizlate/0.2.0", + "0.3.0": "http://registry.npmjs.org/sizlate/0.3.0" + }, + "dist": { + "0.2.0": { + "shasum": "13724ac38dd22a607866defc81952766b11eb511", + "tarball": "http://registry.npmjs.org/sizlate/-/sizlate-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "cc3b955d7562fd1d2f1e6892db2377703aac9c51", + "tarball": "http://registry.npmjs.org/sizlate/-/sizlate-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/sizlate/" + }, + "sizzle": { + "name": "sizzle", + "description": "A pure-JavaScript CSS selector engine", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "ded", + "email": "polvero@gmail.com" + } + ], + "time": { + "modified": "2011-06-27T04:40:06.634Z", + "created": "2011-06-27T04:34:17.962Z", + "1.0.0": "2011-06-27T04:34:18.521Z", + "1.0.1": "2011-06-27T04:40:06.634Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/ded/sizzle.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/sizzle/1.0.0", + "1.0.1": "http://registry.npmjs.org/sizzle/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "88d5712d0846b7af34b6703fe612bb445d276a0f", + "tarball": "http://registry.npmjs.org/sizzle/-/sizzle-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "404b39d6b785f4485a2514ceabd0474b791cdaf5", + "tarball": "http://registry.npmjs.org/sizzle/-/sizzle-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/sizzle/" + }, + "sk": { + "name": "sk", + "dist-tags": { + "latest": "0.0.8" + }, + "maintainers": [ + { + "name": "architectd", + "email": "craig.j.condon@gmail.com" + } + ], + "time": { + "modified": "2011-11-30T18:56:07.580Z", + "created": "2011-07-13T06:41:03.474Z", + "0.0.1": "2011-07-13T06:41:03.741Z", + "0.0.2": "2011-07-13T06:41:20.966Z", + "0.0.2-1": "2011-07-13T19:03:48.626Z", + "0.0.2-2": "2011-07-16T22:53:23.668Z", + "0.0.2-3": "2011-07-17T20:44:07.200Z", + "0.0.2-4": "2011-07-17T22:45:24.119Z", + "0.0.2-5": "2011-07-18T06:26:56.604Z", + "0.0.2-6": "2011-07-18T15:43:37.150Z", + "0.0.2-7": "2011-07-20T22:49:42.533Z", + "0.0.2-8": "2011-07-21T00:09:02.377Z", + "0.0.2-9": "2011-07-28T05:20:02.059Z", + "0.0.3": "2011-08-10T02:58:41.655Z", + "0.0.4": "2011-08-10T06:57:43.668Z", + "0.0.5": "2011-08-10T20:42:58.389Z", + "0.0.6": "2011-09-12T05:22:41.181Z", + "0.0.7": "2011-09-13T20:45:39.257Z", + "0.0.8": "2011-11-30T18:56:07.580Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/sk/0.0.1", + "0.0.2": "http://registry.npmjs.org/sk/0.0.2", + "0.0.2-1": "http://registry.npmjs.org/sk/0.0.2-1", + "0.0.2-2": "http://registry.npmjs.org/sk/0.0.2-2", + "0.0.2-3": "http://registry.npmjs.org/sk/0.0.2-3", + "0.0.2-4": "http://registry.npmjs.org/sk/0.0.2-4", + "0.0.2-5": "http://registry.npmjs.org/sk/0.0.2-5", + "0.0.2-6": "http://registry.npmjs.org/sk/0.0.2-6", + "0.0.2-7": "http://registry.npmjs.org/sk/0.0.2-7", + "0.0.2-8": "http://registry.npmjs.org/sk/0.0.2-8", + "0.0.2-9": "http://registry.npmjs.org/sk/0.0.2-9", + "0.0.3": "http://registry.npmjs.org/sk/0.0.3", + "0.0.4": "http://registry.npmjs.org/sk/0.0.4", + "0.0.5": "http://registry.npmjs.org/sk/0.0.5", + "0.0.6": "http://registry.npmjs.org/sk/0.0.6", + "0.0.7": "http://registry.npmjs.org/sk/0.0.7", + "0.0.8": "http://registry.npmjs.org/sk/0.0.8" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/sk/-/sk-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/sk/-/sk-0.0.2.tgz" + }, + "0.0.2-1": { + "tarball": "http://registry.npmjs.org/sk/-/sk-0.0.2-1.tgz" + }, + "0.0.2-2": { + "tarball": "http://registry.npmjs.org/sk/-/sk-0.0.2-2.tgz" + }, + "0.0.2-3": { + "tarball": "http://registry.npmjs.org/sk/-/sk-0.0.2-3.tgz" + }, + "0.0.2-4": { + "tarball": "http://registry.npmjs.org/sk/-/sk-0.0.2-4.tgz" + }, + "0.0.2-5": { + "tarball": "http://registry.npmjs.org/sk/-/sk-0.0.2-5.tgz" + }, + "0.0.2-6": { + "tarball": "http://registry.npmjs.org/sk/-/sk-0.0.2-6.tgz" + }, + "0.0.2-7": { + "tarball": "http://registry.npmjs.org/sk/-/sk-0.0.2-7.tgz" + }, + "0.0.2-8": { + "tarball": "http://registry.npmjs.org/sk/-/sk-0.0.2-8.tgz" + }, + "0.0.2-9": { + "tarball": "http://registry.npmjs.org/sk/-/sk-0.0.2-9.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/sk/-/sk-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://registry.npmjs.org/sk/-/sk-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://registry.npmjs.org/sk/-/sk-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "c6de1ca63708b597dfbf7d889b73c0b19591f1f5", + "tarball": "http://registry.npmjs.org/sk/-/sk-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "41cbe875387bff90f3ad46b3beccaa22fcf66cca", + "tarball": "http://registry.npmjs.org/sk/-/sk-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "917d0098335c97803dcd8134399929c57f018f75", + "tarball": "http://registry.npmjs.org/sk/-/sk-0.0.8.tgz" + } + }, + "url": "http://registry.npmjs.org/sk/" + }, + "skillet": { + "name": "skillet", + "description": "Identify duplicate javascript strings", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "rockstar", + "email": "paul@eventuallyanyway.com" + } + ], + "time": { + "modified": "2011-09-11T16:57:47.415Z", + "created": "2011-09-11T16:57:46.506Z", + "0.1.2": "2011-09-11T16:57:47.415Z" + }, + "author": { + "name": "Paul Hummer", + "email": "paul@eventuallyanyway.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/rockstar/node-skillet.git" + }, + "versions": { + "0.1.2": "http://registry.npmjs.org/skillet/0.1.2" + }, + "dist": { + "0.1.2": { + "shasum": "bfca3ec204d283ab92975d13094dc0ae6e444f59", + "tarball": "http://registry.npmjs.org/skillet/-/skillet-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/skillet/" + }, + "skroller": { + "name": "skroller", + "description": "Skroll around", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "smrtl", + "email": "smurtlesam@gmail.com" + } + ], + "time": { + "modified": "2011-11-03T09:21:32.941Z", + "created": "2011-10-27T17:46:57.878Z", + "0.1.0": "2011-10-27T17:46:59.245Z", + "0.2.0": "2011-11-03T09:21:32.941Z" + }, + "author": { + "name": "Samuel Suter" + }, + "repository": { + "type": "git", + "url": "git://github.com/smrtl/skroller.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/skroller/0.1.0", + "0.2.0": "http://registry.npmjs.org/skroller/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "8a6df9aea3352aafcaba5e43a2d8593350be7046", + "tarball": "http://registry.npmjs.org/skroller/-/skroller-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "480540bcbb41bab6396caed821dd896556d0a0a9", + "tarball": "http://registry.npmjs.org/skroller/-/skroller-0.2.0.tgz" + } + }, + "keywords": [ + "ender", + "kui", + "scroll" + ], + "url": "http://registry.npmjs.org/skroller/" + }, + "skull.io": { + "name": "skull.io", + "description": "Real-time web apps with Backbone.js and Socket.io", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "codeboost", + "email": "florin@libertv.ro" + } + ], + "time": { + "modified": "2011-12-02T15:21:01.025Z", + "created": "2011-09-19T13:54:23.351Z", + "0.1.0": "2011-09-19T13:54:25.093Z", + "0.1.1": "2011-09-26T18:46:56.282Z", + "0.1.2": "2011-09-26T18:52:51.769Z", + "0.1.3": "2011-09-26T18:55:48.020Z", + "0.1.4": "2011-10-07T10:10:55.484Z", + "0.1.5": "2011-10-07T10:14:48.836Z", + "0.1.6": "2011-10-14T11:29:59.392Z", + "0.1.7": "2011-10-24T09:22:54.223Z", + "0.2.0": "2011-11-03T18:09:08.235Z", + "0.2.1": "2011-12-02T15:21:01.025Z" + }, + "author": { + "name": "Florin Braghis", + "email": "florin@libertv.ro" + }, + "repository": { + "type": "git", + "url": "git://github.com/codeboost/Skull.io.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/skull.io/0.1.0", + "0.1.1": "http://registry.npmjs.org/skull.io/0.1.1", + "0.1.2": "http://registry.npmjs.org/skull.io/0.1.2", + "0.1.3": "http://registry.npmjs.org/skull.io/0.1.3", + "0.1.4": "http://registry.npmjs.org/skull.io/0.1.4", + "0.1.5": "http://registry.npmjs.org/skull.io/0.1.5", + "0.1.6": "http://registry.npmjs.org/skull.io/0.1.6", + "0.1.7": "http://registry.npmjs.org/skull.io/0.1.7", + "0.2.0": "http://registry.npmjs.org/skull.io/0.2.0", + "0.2.1": "http://registry.npmjs.org/skull.io/0.2.1" + }, + "dist": { + "0.1.0": { + "shasum": "d754afe1472ca45de24a0cc1d92dbc9e26dd9798", + "tarball": "http://registry.npmjs.org/skull.io/-/skull.io-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "6b19e13b1b73e74f6fc11d0891da0a1e9b88b405", + "tarball": "http://registry.npmjs.org/skull.io/-/skull.io-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "ec51fb9608adf40cab2d16899b79403aa7b66fa3", + "tarball": "http://registry.npmjs.org/skull.io/-/skull.io-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "05bc478c242ab07b160f5b2bc37a4b76738ccc3e", + "tarball": "http://registry.npmjs.org/skull.io/-/skull.io-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "b9a2345fb6dc40ffc2e7b51c9f6777bb089f1c90", + "tarball": "http://registry.npmjs.org/skull.io/-/skull.io-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "daea7d25ece7736c97731603ee02378721c1675b", + "tarball": "http://registry.npmjs.org/skull.io/-/skull.io-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "08d4592bd8563fe8fb8151277e4a80dfb4fb9bcd", + "tarball": "http://registry.npmjs.org/skull.io/-/skull.io-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "6338146b256e1717f8a6393b80cfff51914a1d4d", + "tarball": "http://registry.npmjs.org/skull.io/-/skull.io-0.1.7.tgz" + }, + "0.2.0": { + "shasum": "cbd666a089324250bf1d3db2ab605ed04a9bb421", + "tarball": "http://registry.npmjs.org/skull.io/-/skull.io-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "6315fef1cac850b6b1fba51eb8631eed18fe9069", + "tarball": "http://registry.npmjs.org/skull.io/-/skull.io-0.2.1.tgz" + } + }, + "keywords": [ + "backbone.js", + "skulljs", + "websocket", + "socket", + "realtime", + "socket.io", + "comet", + "ajax" + ], + "url": "http://registry.npmjs.org/skull.io/" + }, + "skyfetchapiclient": { + "name": "skyfetchapiclient", + "description": "A client for the skyfetch (www.skyfetch.com) api", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "phill.rosen", + "email": "phill.rosen@gmail.com" + } + ], + "time": { + "modified": "2011-11-20T18:51:06.504Z", + "created": "2011-10-19T02:36:12.061Z", + "0.0.1": "2011-10-19T02:36:12.450Z", + "0.0.2": "2011-10-19T02:37:37.401Z", + "0.0.3": "2011-11-20T18:51:06.504Z" + }, + "author": { + "name": "Phillip Rosen", + "email": "phill@skyfetch.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/skyfetch/Skyfetch-API.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/skyfetchapiclient/0.0.1", + "0.0.2": "http://registry.npmjs.org/skyfetchapiclient/0.0.2", + "0.0.3": "http://registry.npmjs.org/skyfetchapiclient/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "753a3453662ee534476181fdf8c0da1211518b51", + "tarball": "http://registry.npmjs.org/skyfetchapiclient/-/skyfetchapiclient-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c3eededaf91448a4b735ac218d70159c215194ec", + "tarball": "http://registry.npmjs.org/skyfetchapiclient/-/skyfetchapiclient-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "9cdf3564d00deea1b58ce9980bf4c7c1a27d96a4", + "tarball": "http://registry.npmjs.org/skyfetchapiclient/-/skyfetchapiclient-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/skyfetchapiclient/" + }, + "slang": { + "name": "slang", + "description": "A collection of utility functions for strings", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "devongovett", + "email": "devongovett@gmail.com" + } + ], + "time": { + "modified": "2011-09-29T00:55:35.575Z", + "created": "2011-07-15T20:09:14.254Z", + "0.1.0": "2011-07-15T20:09:14.472Z", + "0.1.1": "2011-07-15T20:54:48.898Z", + "0.1.2": "2011-07-19T15:19:27.444Z", + "0.1.3": "2011-09-29T00:54:53.750Z" + }, + "author": { + "name": "Devon Govett", + "email": "devongovett@gmail.com", + "url": "http://badassjs.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/devongovett/slang.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/slang/0.1.0", + "0.1.1": "http://registry.npmjs.org/slang/0.1.1", + "0.1.2": "http://registry.npmjs.org/slang/0.1.2", + "0.1.3": "http://registry.npmjs.org/slang/0.1.3" + }, + "dist": { + "0.1.0": { + "shasum": "9fd7ce3f4f65270d377f8deb7ccf7ae22c823621", + "tarball": "http://registry.npmjs.org/slang/-/slang-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "e24fa16559620c65af3f6806c5c5972e1628f766", + "tarball": "http://registry.npmjs.org/slang/-/slang-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "09042b7b106221f47a10b9c8af68fc17061a1d9d", + "tarball": "http://registry.npmjs.org/slang/-/slang-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "dd91506ebf110472cf98097c674f851e537a7c36", + "tarball": "http://registry.npmjs.org/slang/-/slang-0.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/slang/" + }, + "sleepless": { + "name": "sleepless", + "description": "Misc. open source code from Sleepless Software Inc.", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "sleeplessinc", + "email": "joe@sleepless.com" + } + ], + "time": { + "modified": "2011-10-01T04:21:58.811Z", + "created": "2011-09-18T18:42:28.137Z", + "1.0.0": "2011-09-18T18:42:29.742Z", + "1.0.1": "2011-09-18T23:22:39.291Z" + }, + "author": { + "name": "Joe Hitchens", + "email": "joe@sleepless.com", + "url": "sleepless.com" + }, + "versions": { + "1.0.1": "http://registry.npmjs.org/sleepless/1.0.1" + }, + "dist": { + "1.0.1": { + "shasum": "ffb0d88900809fa5ab8e017159d300626d9cf141", + "tarball": "http://registry.npmjs.org/sleepless/-/sleepless-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/sleepless/" + }, + "sleepylib": { + "name": "sleepylib", + "description": "Sleepless Software's general purpose Javascript code library", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "sleeplessinc", + "email": "joe@sleepless.com" + } + ], + "time": { + "modified": "2011-09-15T19:00:50.527Z", + "created": "2011-09-15T19:00:48.950Z", + "1.0.0": "2011-09-15T19:00:50.527Z" + }, + "author": { + "name": "Joe Hitchens", + "email": "joe@sleepless.com", + "url": "sleepless.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/sleeplessinc/sleepylib.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/sleepylib/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "53f8892e7aaa158c5f41cb5cbd9c76944f01c944", + "tarball": "http://registry.npmjs.org/sleepylib/-/sleepylib-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/sleepylib/" + }, + "sleight": { + "name": "sleight", + "description": "Static files and fake XHRs", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "alunny", + "email": "alunny@gmail.com" + } + ], + "time": { + "modified": "2011-10-14T19:15:24.867Z", + "created": "2011-02-17T16:55:37.154Z", + "0.0.3": "2011-02-17T16:55:37.491Z", + "0.0.4": "2011-10-14T19:15:24.867Z" + }, + "author": { + "name": "Andrew Lunny", + "email": "alunny@gmail.com" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/sleight/0.0.3", + "0.0.4": "http://registry.npmjs.org/sleight/0.0.4" + }, + "dist": { + "0.0.3": { + "tarball": "http://registry.npmjs.org/sleight/-/sleight-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "f9da47cc34554ce67df0ebe91b69f77dfbd86c02", + "tarball": "http://registry.npmjs.org/sleight/-/sleight-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/sleight/" + }, + "slice": { + "name": "slice", + "description": "utility lib", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "_Slice_ is a naked library that can mix-in submodules which provide additional functionality for your application\n\nSlice creates a _standard class library_ for your application based on **environments** such as 'production' and 'development'\n\n\nSlice is used with **rzr**\n", + "maintainers": [ + { + "name": "fractal", + "email": "contact@wearefractal.com" + } + ], + "time": { + "modified": "2011-12-12T12:34:27.064Z", + "created": "2011-12-12T12:34:25.838Z", + "0.0.1": "2011-12-12T12:34:27.064Z" + }, + "author": { + "name": "Fractal", + "email": "contact@wearefractal.com", + "url": "http://wearefractal.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/wearefractal/slice.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/slice/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "1eb9a4c6622d319b6395bd7219c02c5a2bb27c7e", + "tarball": "http://registry.npmjs.org/slice/-/slice-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/slice/" + }, + "slicer": { + "name": "slicer", + "description": "A library to parse URI style strings into named segments.", + "dist-tags": { + "latest": "0.2.1" + }, + "readme": "# node-slicer - Slice your URIs\n\n## Installation\n\n npm install slicer \n\n## What's it do?\n\nIt allows you to slice up URIs into named segments. This can be useful for routing requests etc.\n\n## Usage\n\n // Create a new slicer (you can have multiple slicer instances that are independant of one another)\n var s = require(\"slicer\").create();\n\n // Add a segment identifier for the first URI segment with a default value of 'index'.\n s.addSegmentIdentifier('controller','index');\n\n // Add a segment identifier for the second URI segment with a default value of 'index'.\n s.addSegmentIdentifier('action','index');\n\n // Slice a URI\n var uri = s.slice('/foo');\n\n // Outputs: \n // { \n // controller: 'foo',\n // action: 'index',\n // uri: [] \n // }\n\n // Note that the action segment is given the default value.\n\n // Slice another URI\n var uri = s.slice('/foo/bar/a/b/c');\n\n // Outputs: \n // { \n // controller: 'foo',\n // action: 'bar',\n // uri: [ 'a', 'b', 'c' ] \n // }\n\n // Note that the uri element contains any non labeled segments.\n\n## Bugs\n\nSee .\n", + "maintainers": [ + { + "name": "antz29", + "email": "jp@antz29.com" + } + ], + "time": { + "modified": "2011-11-14T16:26:26.698Z", + "created": "2011-11-14T11:03:33.058Z", + "0.1.0": "2011-11-14T11:03:34.292Z", + "0.2.1": "2011-11-14T16:26:26.698Z", + "0.2.0": "2011-11-14T16:26:11.193Z" + }, + "author": { + "name": "John Le Drew", + "email": "jp@antz29.com", + "url": "http://antz29.com" + }, + "repository": { + "type": "git", + "url": "git:/git://github.com/antz29/node-slicer.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/slicer/0.1.0", + "0.2.0": "http://registry.npmjs.org/slicer/0.2.0", + "0.2.1": "http://registry.npmjs.org/slicer/0.2.1" + }, + "dist": { + "0.1.0": { + "shasum": "e8be0b8af340627465460e1a5d61a770d66b8d98", + "tarball": "http://registry.npmjs.org/slicer/-/slicer-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "046418338e3b9623046a087caedb519659a933d2", + "tarball": "http://registry.npmjs.org/slicer/-/slicer-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "582c05d5bd157c62d3d3d4d19fd6146ec57806c1", + "tarball": "http://registry.npmjs.org/slicer/-/slicer-0.2.1.tgz" + } + }, + "keywords": [ + "uri", + "slice", + "segments" + ], + "url": "http://registry.npmjs.org/slicer/" + }, + "slick": { + "name": "slick", + "description": "Slick, the most awesome CSS Parser and Finder", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "author": { + "name": "Fabio Miranda Costa" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/slick/1.0.0" + }, + "dist": { + "1.0.0": { + "tarball": "http://registry.npmjs.org/slick/-/slick-1.0.0.tgz" + } + }, + "keywords": [ + "util", + "dom", + "css", + "selector", + "parser", + "mootools" + ], + "url": "http://registry.npmjs.org/slick/" + }, + "slickback": { + "name": "slickback", + "description": "Slickback brings Backbone and SlickGrid together", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "teleological", + "email": "oss@teleological.net" + } + ], + "time": { + "modified": "2011-09-06T02:08:13.483Z", + "created": "2011-08-23T09:34:43.350Z", + "0.1.0": "2011-08-23T09:34:45.122Z", + "0.2.0": "2011-09-06T02:04:19.972Z", + "0.2.1": "2011-09-06T02:05:59.583Z" + }, + "author": { + "name": "Riley Lynch", + "email": "oss@teleological.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/teleological/slickback.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/slickback/0.1.0", + "0.2.1": "http://registry.npmjs.org/slickback/0.2.1" + }, + "dist": { + "0.1.0": { + "shasum": "aceecf5c9105f1a9ff2072efca3d8f17e51334b0", + "tarball": "http://registry.npmjs.org/slickback/-/slickback-0.1.0.tgz" + }, + "0.2.1": { + "shasum": "9b545104ea2b23746ca66cd2a7450492551d8ae2", + "tarball": "http://registry.npmjs.org/slickback/-/slickback-0.2.1.tgz" + } + }, + "keywords": [ + "backbone", + "slickgrid", + "paginate" + ], + "url": "http://registry.npmjs.org/slickback/" + }, + "slide": { + "name": "slide", + "description": "A flow control lib small enough to fit on in a slide presentation. Derived live at Oak.JS", + "dist-tags": { + "latest": "1.1.3" + }, + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me/" + }, + "time": { + "modified": "2011-07-27T20:22:03.040Z", + "created": "2011-01-13T21:21:32.280Z", + "1.0.0": "2011-01-13T21:21:32.280Z", + "1.0.1": "2011-01-13T21:21:32.280Z", + "1.1.0": "2011-02-03T19:17:03.150Z", + "1.1.1": "2011-03-17T04:10:26.257Z", + "1.1.2": "2011-07-20T09:29:21.068Z", + "1.1.3": "2011-07-27T20:22:03.040Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/isaacs/slide-flow-control.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/slide/1.0.0", + "1.0.1": "http://registry.npmjs.org/slide/1.0.1", + "1.1.0": "http://registry.npmjs.org/slide/1.1.0", + "1.1.1": "http://registry.npmjs.org/slide/1.1.1", + "1.1.2": "http://registry.npmjs.org/slide/1.1.2", + "1.1.3": "http://registry.npmjs.org/slide/1.1.3" + }, + "dist": { + "1.0.0": { + "tarball": "http://packages:5984/slide/-/slide-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "b7d9076eee798237666e66e3f18157532b297f32", + "tarball": "http://registry.npmjs.org/slide/-/slide-1.0.1.tgz" + }, + "1.1.0": { + "shasum": "a9e135aa14bf5bb8b8c9e16c723c7223ac30f717", + "tarball": "http://registry.npmjs.org/slide/-/slide-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "198afd3d6aab806681924a08e49b5758fb1c49b6", + "tarball": "http://registry.npmjs.org/slide/-/slide-1.1.1.tgz" + }, + "1.1.2": { + "shasum": "6339e63a65f1d5f6b0ab9a573a6ca276993aad7d", + "tarball": "http://registry.npmjs.org/slide/-/slide-1.1.2.tgz" + }, + "1.1.3": { + "shasum": "a16975ba76b766b92f98ef337243336c1fa3238f", + "tarball": "http://registry.npmjs.org/slide/-/slide-1.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/slide/" + }, + "slippers": { + "name": "slippers", + "description": "Confortable like wearing slippers.", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "guileen", + "email": "guileen@gmail.com" + } + ], + "time": { + "modified": "2011-05-10T04:24:53.738Z", + "created": "2011-05-08T03:32:15.459Z", + "0.1.0": "2011-05-08T03:32:16.986Z", + "0.2.1": "2011-05-10T04:24:53.738Z" + }, + "author": { + "name": "Gui Lin", + "email": "guileen@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/guileen/slippers.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/slippers/0.1.0", + "0.2.1": "http://registry.npmjs.org/slippers/0.2.1" + }, + "dist": { + "0.1.0": { + "shasum": "51fcb713ea6492ac57585a7491ed0e48b28ce4ef", + "tarball": "http://registry.npmjs.org/slippers/-/slippers-0.1.0.tgz" + }, + "0.2.1": { + "shasum": "895d7c7097c0a8fde1cf08e35918219d55b3f52a", + "tarball": "http://registry.npmjs.org/slippers/-/slippers-0.2.1.tgz" + } + }, + "url": "http://registry.npmjs.org/slippers/" + }, + "slug": { + "name": "slug", + "description": "slugifies even utf-8 chars!", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "dodo", + "email": "dodo@blacksec.org" + } + ], + "time": { + "modified": "2011-11-29T14:18:16.141Z", + "created": "2011-09-19T19:54:27.962Z", + "0.1.0": "2011-09-19T19:54:28.609Z", + "0.1.1": "2011-11-29T14:18:16.141Z" + }, + "author": { + "name": "dodo", + "url": "https://github.com/dodo" + }, + "repository": { + "type": "git", + "url": "git://github.com/dodo/node-slug.git" + }, + "users": { + "troygoode": true + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/slug/0.1.0", + "0.1.1": "http://registry.npmjs.org/slug/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "5aa3ad1bae3aa97ea15d828dc95431a9dca3bcc5", + "tarball": "http://registry.npmjs.org/slug/-/slug-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "6dd4ddadfb937fc0b9a7cf5e97307ee080547fed", + "tarball": "http://registry.npmjs.org/slug/-/slug-0.1.1.tgz" + } + }, + "keywords": [ + "slugify", + "slug", + "string", + "utf8", + "utf-8", + "unicode", + "url" + ], + "url": "http://registry.npmjs.org/slug/" + }, + "slugr": { + "name": "slugr", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "architectd", + "email": "craig.j.condon@gmail.com" + } + ], + "time": { + "modified": "2011-11-22T23:45:38.696Z", + "created": "2011-07-04T18:43:29.978Z", + "0.0.1": "2011-07-04T18:43:30.192Z", + "0.0.1-1": "2011-07-05T05:48:17.214Z", + "0.0.1-2": "2011-07-06T00:16:46.902Z", + "0.0.1-3": "2011-07-06T00:19:06.055Z", + "0.0.1-4": "2011-07-06T00:31:43.688Z", + "0.0.1-5": "2011-07-06T00:39:40.415Z", + "0.0.1-6": "2011-07-06T00:51:10.798Z", + "0.0.1-7": "2011-07-06T00:53:40.595Z", + "0.0.1-8": "2011-07-06T00:58:04.300Z", + "0.0.1-9": "2011-07-06T01:23:05.993Z", + "0.0.1-10": "2011-07-06T03:03:32.530Z", + "0.0.1-11": "2011-07-06T03:11:17.240Z", + "0.0.1-12": "2011-07-06T03:21:54.754Z", + "0.0.1-13": "2011-07-06T03:27:58.405Z", + "0.0.1-14": "2011-07-06T03:28:37.598Z", + "0.0.1-15": "2011-07-06T03:29:22.564Z", + "0.0.1-16": "2011-07-06T03:36:22.902Z", + "0.0.1-17": "2011-07-06T04:46:33.712Z", + "0.0.2": "2011-11-22T23:45:38.696Z" + }, + "author": { + "name": "Craig Condon", + "email": "craig@spiceapps.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/spiceapps/slugr.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/slugr/0.0.1", + "0.0.1-1": "http://registry.npmjs.org/slugr/0.0.1-1", + "0.0.1-2": "http://registry.npmjs.org/slugr/0.0.1-2", + "0.0.1-3": "http://registry.npmjs.org/slugr/0.0.1-3", + "0.0.1-4": "http://registry.npmjs.org/slugr/0.0.1-4", + "0.0.1-5": "http://registry.npmjs.org/slugr/0.0.1-5", + "0.0.1-6": "http://registry.npmjs.org/slugr/0.0.1-6", + "0.0.1-7": "http://registry.npmjs.org/slugr/0.0.1-7", + "0.0.1-8": "http://registry.npmjs.org/slugr/0.0.1-8", + "0.0.1-9": "http://registry.npmjs.org/slugr/0.0.1-9", + "0.0.1-10": "http://registry.npmjs.org/slugr/0.0.1-10", + "0.0.1-11": "http://registry.npmjs.org/slugr/0.0.1-11", + "0.0.1-12": "http://registry.npmjs.org/slugr/0.0.1-12", + "0.0.1-13": "http://registry.npmjs.org/slugr/0.0.1-13", + "0.0.1-14": "http://registry.npmjs.org/slugr/0.0.1-14", + "0.0.1-15": "http://registry.npmjs.org/slugr/0.0.1-15", + "0.0.1-16": "http://registry.npmjs.org/slugr/0.0.1-16", + "0.0.1-17": "http://registry.npmjs.org/slugr/0.0.1-17", + "0.0.2": "http://registry.npmjs.org/slugr/0.0.2" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/slugr/-/slugr-0.0.1.tgz" + }, + "0.0.1-1": { + "tarball": "http://registry.npmjs.org/slugr/-/slugr-0.0.1-1.tgz" + }, + "0.0.1-2": { + "tarball": "http://registry.npmjs.org/slugr/-/slugr-0.0.1-2.tgz" + }, + "0.0.1-3": { + "tarball": "http://registry.npmjs.org/slugr/-/slugr-0.0.1-3.tgz" + }, + "0.0.1-4": { + "tarball": "http://registry.npmjs.org/slugr/-/slugr-0.0.1-4.tgz" + }, + "0.0.1-5": { + "tarball": "http://registry.npmjs.org/slugr/-/slugr-0.0.1-5.tgz" + }, + "0.0.1-6": { + "tarball": "http://registry.npmjs.org/slugr/-/slugr-0.0.1-6.tgz" + }, + "0.0.1-7": { + "tarball": "http://registry.npmjs.org/slugr/-/slugr-0.0.1-7.tgz" + }, + "0.0.1-8": { + "tarball": "http://registry.npmjs.org/slugr/-/slugr-0.0.1-8.tgz" + }, + "0.0.1-9": { + "tarball": "http://registry.npmjs.org/slugr/-/slugr-0.0.1-9.tgz" + }, + "0.0.1-10": { + "tarball": "http://registry.npmjs.org/slugr/-/slugr-0.0.1-10.tgz" + }, + "0.0.1-11": { + "tarball": "http://registry.npmjs.org/slugr/-/slugr-0.0.1-11.tgz" + }, + "0.0.1-12": { + "tarball": "http://registry.npmjs.org/slugr/-/slugr-0.0.1-12.tgz" + }, + "0.0.1-13": { + "tarball": "http://registry.npmjs.org/slugr/-/slugr-0.0.1-13.tgz" + }, + "0.0.1-14": { + "tarball": "http://registry.npmjs.org/slugr/-/slugr-0.0.1-14.tgz" + }, + "0.0.1-15": { + "tarball": "http://registry.npmjs.org/slugr/-/slugr-0.0.1-15.tgz" + }, + "0.0.1-16": { + "tarball": "http://registry.npmjs.org/slugr/-/slugr-0.0.1-16.tgz" + }, + "0.0.1-17": { + "tarball": "http://registry.npmjs.org/slugr/-/slugr-0.0.1-17.tgz" + }, + "0.0.2": { + "shasum": "ba634e713cc19a2e00d5db818b4c62afe4109a89", + "tarball": "http://registry.npmjs.org/slugr/-/slugr-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/slugr/" + }, + "smarta": { + "name": "smarta", + "description": "Smarta sensor for nodeJS", + "dist-tags": { + "latest": "0.3.1" + }, + "readme": "\n# Smarta\n\n [Smarta](https://github.com/nodebus/smarta) sensor for nodeJS\n\n# Install\n\n\tnpm install smarta\n\n# Usage\n\n\tvar smarta = require(\"smarta\");\n\t//Create a sensor:\n\t//new smarta.sensor(name, host, port)\n\tvar sensor = new smarta.sensor(\"NodeJS\"); //Default host:127.0.0.1, port: 7070\n\t//Create a sensor with host and port:\n\tvar sensor = new smarta.sensor(\"NodeJS\", \"127.0.0.1\", 7080);\n\n\t//send message\n\t//sensor.info(title, message)\n\n\t//Info message\n\tsensor.info(\"I have sent 30 messages today.\");\n\t\n\t//Warning message\n\tsensor.warn(\"The messages are too more from Jack\");\n\t\n\t//CRITICAL message\n\tsensor.crit(\"Failed to send message to Jack\");\n \n\n## License \n\n(The MIT License)\n\nCopyright (c) 2011 Hidden <zzdhidden@gmail.com>\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n", + "maintainers": [ + { + "name": "hidden", + "email": "zzdhidden@gmail.com" + } + ], + "time": { + "modified": "2011-12-14T06:28:02.518Z", + "created": "2011-12-05T08:22:23.052Z", + "0.0.1": "2011-12-05T08:22:28.874Z", + "0.0.2": "2011-12-05T08:44:08.021Z", + "0.1.0": "2011-12-05T09:58:49.791Z", + "0.2.0": "2011-12-13T04:13:25.934Z", + "0.3.0": "2011-12-14T06:17:36.890Z", + "0.3.1": "2011-12-14T06:28:02.518Z" + }, + "author": { + "name": "Hidden", + "email": "zzdhidden@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/smarta/0.0.1", + "0.0.2": "http://registry.npmjs.org/smarta/0.0.2", + "0.1.0": "http://registry.npmjs.org/smarta/0.1.0", + "0.2.0": "http://registry.npmjs.org/smarta/0.2.0", + "0.3.0": "http://registry.npmjs.org/smarta/0.3.0", + "0.3.1": "http://registry.npmjs.org/smarta/0.3.1" + }, + "dist": { + "0.0.1": { + "shasum": "4a9a01f8b71317f32071404de64e93755d572bc2", + "tarball": "http://registry.npmjs.org/smarta/-/smarta-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "5d814f3f262c4bb3ec9f2c76d685527cca6741e6", + "tarball": "http://registry.npmjs.org/smarta/-/smarta-0.0.2.tgz" + }, + "0.1.0": { + "shasum": "0e9a8bfe824cb0cde1b693225bf7eba92d954fd3", + "tarball": "http://registry.npmjs.org/smarta/-/smarta-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "0785765fb4c68986ea03f96558f24ec68babce77", + "tarball": "http://registry.npmjs.org/smarta/-/smarta-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "0f0af4c07788c6e830243a50eae1f7f18e1cb78b", + "tarball": "http://registry.npmjs.org/smarta/-/smarta-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "77b791e46123383c4249d5f06239400bd8f46eec", + "tarball": "http://registry.npmjs.org/smarta/-/smarta-0.3.1.tgz" + } + }, + "keywords": [ + "smarta", + "monitor", + "sensor" + ], + "url": "http://registry.npmjs.org/smarta/" + }, + "smartdc": { + "name": "smartdc", + "description": "Client SDK and CLI for the Joyent SmartDataCenter API", + "dist-tags": { + "latest": "6.5.2" + }, + "maintainers": [ + { + "name": "mcavage", + "email": "mcavage@gmail.com" + } + ], + "time": { + "modified": "2011-12-07T23:15:38.591Z", + "created": "2011-07-15T15:33:40.351Z", + "6.1.0": "2011-12-07T23:15:38.591Z", + "6.1.0-1": "2011-12-07T23:15:38.591Z", + "6.1.0-2": "2011-12-07T23:15:38.591Z", + "6.1.0-3": "2011-12-07T23:15:38.591Z", + "6.1.0-4": "2011-12-07T23:15:38.591Z", + "6.1.0-5": "2011-12-07T23:15:38.591Z", + "6.1.0-6": "2011-12-07T23:15:38.591Z", + "6.1.0-7": "2011-12-07T23:15:38.591Z", + "6.1.0-8": "2011-12-07T23:15:38.591Z", + "6.1.0-9": "2011-12-07T23:15:38.591Z", + "6.5.0-rc5": "2011-12-07T23:15:38.591Z", + "6.5.0-rc6": "2011-12-07T23:15:38.591Z", + "6.5.0-rc6-2b246e3688646c5c4b53fd8a83a907b6bb69fdc8": "2011-12-07T23:15:38.591Z", + "6.5.0-rc6-c2e4f3a1a718b9c6691ebb2e1a6a319b70da113e": "2011-12-07T23:15:38.591Z", + "6.5.0": "2011-12-07T23:15:38.591Z", + "6.5.0-1": "2011-11-09T18:58:19.038Z", + "6.5.0-2": "2011-12-05T22:26:31.113Z", + "6.5.2": "2011-12-07T23:15:38.591Z" + }, + "author": { + "name": "Joyent, Inc" + }, + "repository": { + "type": "git", + "url": "git://github.com/joyent/node-smartdc.git" + }, + "users": { + "isaacs": true + }, + "versions": { + "6.1.0": "http://registry.npmjs.org/smartdc/6.1.0", + "6.1.0-1": "http://registry.npmjs.org/smartdc/6.1.0-1", + "6.1.0-2": "http://registry.npmjs.org/smartdc/6.1.0-2", + "6.1.0-3": "http://registry.npmjs.org/smartdc/6.1.0-3", + "6.1.0-4": "http://registry.npmjs.org/smartdc/6.1.0-4", + "6.1.0-5": "http://registry.npmjs.org/smartdc/6.1.0-5", + "6.1.0-6": "http://registry.npmjs.org/smartdc/6.1.0-6", + "6.1.0-7": "http://registry.npmjs.org/smartdc/6.1.0-7", + "6.1.0-8": "http://registry.npmjs.org/smartdc/6.1.0-8", + "6.1.0-9": "http://registry.npmjs.org/smartdc/6.1.0-9", + "6.5.0-rc5": "http://registry.npmjs.org/smartdc/6.5.0-rc5", + "6.5.0-rc6": "http://registry.npmjs.org/smartdc/6.5.0-rc6", + "6.5.0-rc6-2b246e3688646c5c4b53fd8a83a907b6bb69fdc8": "http://registry.npmjs.org/smartdc/6.5.0-rc6-2b246e3688646c5c4b53fd8a83a907b6bb69fdc8", + "6.5.0-rc6-c2e4f3a1a718b9c6691ebb2e1a6a319b70da113e": "http://registry.npmjs.org/smartdc/6.5.0-rc6-c2e4f3a1a718b9c6691ebb2e1a6a319b70da113e", + "6.5.0": "http://registry.npmjs.org/smartdc/6.5.0", + "6.5.0-1": "http://registry.npmjs.org/smartdc/6.5.0-1", + "6.5.0-2": "http://registry.npmjs.org/smartdc/6.5.0-2", + "6.5.2": "http://registry.npmjs.org/smartdc/6.5.2" + }, + "dist": { + "6.1.0": { + "shasum": "a5d563d07f5f020a61edb03c3ff6eda6dac24305", + "tarball": "http://registry.npmjs.org/smartdc/-/smartdc-6.1.0.tgz" + }, + "6.1.0-1": { + "shasum": "289ebc90d977b0b2451a5b03c98c17f467ce347f", + "tarball": "http://registry.npmjs.org/smartdc/-/smartdc-6.1.0-1.tgz" + }, + "6.1.0-2": { + "shasum": "69d22bf4bc5402bc2547fff5501e2d48f95625b7", + "tarball": "http://registry.npmjs.org/smartdc/-/smartdc-6.1.0-2.tgz" + }, + "6.1.0-3": { + "shasum": "7535b80bc2a552881f1cbbd9ad699e8b16e0af99", + "tarball": "http://registry.npmjs.org/smartdc/-/smartdc-6.1.0-3.tgz" + }, + "6.1.0-4": { + "shasum": "3f6f0f76a9049e10bb9ce4f7e839a28e15de1842", + "tarball": "http://registry.npmjs.org/smartdc/-/smartdc-6.1.0-4.tgz" + }, + "6.1.0-5": { + "shasum": "aa58befa5aae0c51de036225ef82b3b9ad209875", + "tarball": "http://registry.npmjs.org/smartdc/-/smartdc-6.1.0-5.tgz" + }, + "6.1.0-6": { + "shasum": "72fffeec9f55cd1469173066aaaf4691db640ee4", + "tarball": "http://registry.npmjs.org/smartdc/-/smartdc-6.1.0-6.tgz" + }, + "6.1.0-7": { + "shasum": "d392b83546079812978e7321a1e49af30936f967", + "tarball": "http://registry.npmjs.org/smartdc/-/smartdc-6.1.0-7.tgz" + }, + "6.1.0-8": { + "shasum": "173adfbc1ac06c914f86ec6e9f9591116c414dd7", + "tarball": "http://registry.npmjs.org/smartdc/-/smartdc-6.1.0-8.tgz" + }, + "6.1.0-9": { + "shasum": "a0e98c7ef387d5f902975979e84851eb16acd30b", + "tarball": "http://registry.npmjs.org/smartdc/-/smartdc-6.1.0-9.tgz" + }, + "6.5.0-rc5": { + "shasum": "4a464bbd69032069f54d7d736d07cdb91ce9045f", + "tarball": "http://registry.npmjs.org/smartdc/-/smartdc-6.5.0-rc5.tgz" + }, + "6.5.0-rc6": { + "shasum": "676c927cad7bdaa944ece4a794e436546547ec6e", + "tarball": "http://registry.npmjs.org/smartdc/-/smartdc-6.5.0-rc6.tgz" + }, + "6.5.0-rc6-2b246e3688646c5c4b53fd8a83a907b6bb69fdc8": { + "shasum": "d20611ead7436547b9deacc4b939fc4b25cc384c", + "tarball": "http://registry.npmjs.org/smartdc/-/smartdc-6.5.0-rc6-2b246e3688646c5c4b53fd8a83a907b6bb69fdc8.tgz" + }, + "6.5.0-rc6-c2e4f3a1a718b9c6691ebb2e1a6a319b70da113e": { + "shasum": "7115ffa21cf0a8b308bc7231b04a56b497aed692", + "tarball": "http://registry.npmjs.org/smartdc/-/smartdc-6.5.0-rc6-c2e4f3a1a718b9c6691ebb2e1a6a319b70da113e.tgz" + }, + "6.5.0": { + "shasum": "d7be923277a609f21ef3a29cc91f958d8cf78210", + "tarball": "http://registry.npmjs.org/smartdc/-/smartdc-6.5.0.tgz" + }, + "6.5.0-1": { + "shasum": "8cbcdaf41ce8463672a9b241e4b9cbc0f1870fcc", + "tarball": "http://registry.npmjs.org/smartdc/-/smartdc-6.5.0-1.tgz" + }, + "6.5.0-2": { + "shasum": "7d425aa1754fd10728af67efa94d9ae5c2f447f1", + "tarball": "http://registry.npmjs.org/smartdc/-/smartdc-6.5.0-2.tgz" + }, + "6.5.2": { + "shasum": "145b1d752dac6f3d1c1922ccb8f4e3fc8837feac", + "tarball": "http://registry.npmjs.org/smartdc/-/smartdc-6.5.2.tgz" + } + }, + "url": "http://registry.npmjs.org/smartdc/" + }, + "smbhash": { + "name": "smbhash", + "description": "Samba LM/NT Hash Library", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "# node-smbhash: Samba LM/NT Hash Library\n\n## Introduction\n\nThis library converts passwords into the LAN Manager (LM) and\nNT Hashes used by SMB/CIFS servers. It was written to populate\nthe sambaLMPassword and sambaNTPassword values in an LDAP directory\nfor use with Samba.\n\n## Installation\n\n npm install smbhash\n\n## Usage\n\n```javascript\nvar lmhash = require('smbhash').lmhash;\nvar nthash = require('smbhash').nthash;\n\nvar pass = 'pass123';\nconsole.log('LM Hash: ' + lmhash(pass));\nconsole.log('NT Hash: ' + nthash(pass));\n```\n\nThis produces output:\n\n```\nLM Hash: 4FB7D301186E0EB3AAD3B435B51404EE\nNT Hash: 5FBC3D5FEC8206A30F4B6C473D68AE76\n```\n\n## References\n\n The NTLM Authentication Protocol and Security Support Provider\n Copyright (C) 2003, 2006 Eric Glass\n http://davenport.sourceforge.net/ntlm.html\n", + "maintainers": [ + { + "name": "jclulow", + "email": "josh@sysmgr.org" + } + ], + "time": { + "modified": "2011-11-12T05:17:56.931Z", + "created": "2011-11-12T05:17:53.126Z", + "0.0.1": "2011-11-12T05:17:56.931Z" + }, + "author": { + "name": "Joshua M. Clulow", + "email": "josh@sysmgr.org", + "url": "http://blog.sysmgr.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/jclulow/node-smbhash.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/smbhash/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "3e0b73cfc6c02d4c0c19a993e84e52e11ff7a099", + "tarball": "http://registry.npmjs.org/smbhash/-/smbhash-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/smbhash/" + }, + "smokesignals": { + "name": "smokesignals", + "description": "Lightweight event emitting", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "bentomas", + "email": "benjamin@benjaminthomas.org" + } + ], + "time": { + "modified": "2011-09-29T22:06:07.645Z", + "created": "2011-09-29T21:44:05.269Z", + "0.0.1": "2011-09-29T21:44:06.340Z", + "0.0.2": "2011-09-29T21:47:45.086Z", + "0.0.4": "2011-09-29T22:06:07.645Z" + }, + "author": { + "name": "Benjamin Thomas", + "email": "benjamin@benjaminthomas.org", + "url": "http://benjaminthomas.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/bentomas/smokesignals.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/smokesignals/0.0.1", + "0.0.2": "http://registry.npmjs.org/smokesignals/0.0.2", + "0.0.4": "http://registry.npmjs.org/smokesignals/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "e2dda714cf75fc8b39fcb3b27c262884cdb17d10", + "tarball": "http://registry.npmjs.org/smokesignals/-/smokesignals-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "3c2e028f34ea47c6ea0d429277e944e25841a58b", + "tarball": "http://registry.npmjs.org/smokesignals/-/smokesignals-0.0.2.tgz" + }, + "0.0.4": { + "shasum": "1fd5ad8e024632d899e6a30c4b3341f1ebf71df0", + "tarball": "http://registry.npmjs.org/smokesignals/-/smokesignals-0.0.4.tgz" + } + }, + "keywords": [ + "events", + "emitter", + "trigger" + ], + "url": "http://registry.npmjs.org/smokesignals/" + }, + "smoosh": { + "name": "smoosh", + "description": "a tool for packaging your JavaScript and CSS projects", + "dist-tags": { + "latest": "0.3.1" + }, + "maintainers": [ + { + "name": "fat", + "email": "jacobthornton@gmail.com" + }, + { + "name": "ded", + "email": "polvero@gmail.com" + } + ], + "time": { + "modified": "2011-09-02T03:06:05.769Z", + "created": "2011-03-05T04:34:46.614Z", + "0.0.1": "2011-03-05T04:34:47.042Z", + "0.0.2": "2011-03-05T04:40:50.040Z", + "0.0.3": "2011-03-05T04:58:26.210Z", + "0.0.4": "2011-03-05T05:08:55.340Z", + "0.0.5": "2011-03-05T19:46:12.293Z", + "0.0.6": "2011-03-10T00:34:42.957Z", + "0.0.7": "2011-03-10T01:00:08.986Z", + "0.0.8": "2011-03-12T08:17:54.817Z", + "0.0.9": "2011-03-23T03:41:50.925Z", + "0.1.0": "2011-04-10T03:54:26.243Z", + "0.1.1": "2011-04-12T21:28:19.545Z", + "0.2.0": "2011-04-24T03:51:38.919Z", + "0.2.1": "2011-04-24T23:14:13.856Z", + "0.2.2": "2011-05-20T17:18:07.602Z", + "0.3.0": "2011-05-24T03:35:04.827Z", + "0.3.1": "2011-09-02T03:06:05.769Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/smoosh/0.0.1", + "0.0.2": "http://registry.npmjs.org/smoosh/0.0.2", + "0.0.3": "http://registry.npmjs.org/smoosh/0.0.3", + "0.0.4": "http://registry.npmjs.org/smoosh/0.0.4", + "0.0.5": "http://registry.npmjs.org/smoosh/0.0.5", + "0.0.6": "http://registry.npmjs.org/smoosh/0.0.6", + "0.0.7": "http://registry.npmjs.org/smoosh/0.0.7", + "0.0.8": "http://registry.npmjs.org/smoosh/0.0.8", + "0.0.9": "http://registry.npmjs.org/smoosh/0.0.9", + "0.1.0": "http://registry.npmjs.org/smoosh/0.1.0", + "0.1.1": "http://registry.npmjs.org/smoosh/0.1.1", + "0.2.0": "http://registry.npmjs.org/smoosh/0.2.0", + "0.2.1": "http://registry.npmjs.org/smoosh/0.2.1", + "0.2.2": "http://registry.npmjs.org/smoosh/0.2.2", + "0.3.0": "http://registry.npmjs.org/smoosh/0.3.0", + "0.3.1": "http://registry.npmjs.org/smoosh/0.3.1" + }, + "dist": { + "0.0.1": { + "shasum": "334fdd0b4b13344798f20b00034730cf2d9ad414", + "tarball": "http://registry.npmjs.org/smoosh/-/smoosh-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "ae5e58f4f365af3b7a1936ba72b894ee8be7e6c9", + "tarball": "http://registry.npmjs.org/smoosh/-/smoosh-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "d56a335dbad8123a891dda8843215fca7efe3b9d", + "tarball": "http://registry.npmjs.org/smoosh/-/smoosh-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "751a29a7b36a0582645c6e050f48c1e2ef3ed411", + "tarball": "http://registry.npmjs.org/smoosh/-/smoosh-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "9f20485700d94ae63791f2d3a8d8d3d29a9f0186", + "tarball": "http://registry.npmjs.org/smoosh/-/smoosh-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "5e772e57569f69b30fcd1b4a3decb3b470289b40", + "tarball": "http://registry.npmjs.org/smoosh/-/smoosh-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "fdf3ef505815cbc28b17265b00185a14886cae58", + "tarball": "http://registry.npmjs.org/smoosh/-/smoosh-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "6db166e4d03351e3dc0cbe45510a010dca8e43e4", + "tarball": "http://registry.npmjs.org/smoosh/-/smoosh-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "433684deba88509890b446deb3bd80cccb71872d", + "tarball": "http://registry.npmjs.org/smoosh/-/smoosh-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "ba38d0156f40d87f4808b2fe4cbb1c4567953ab8", + "tarball": "http://registry.npmjs.org/smoosh/-/smoosh-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "ac23cf071c2d2da35c31fc51a8e32398bd78df26", + "tarball": "http://registry.npmjs.org/smoosh/-/smoosh-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "b8e07f9f014a23aec5effff8cb98c72118835986", + "tarball": "http://registry.npmjs.org/smoosh/-/smoosh-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "7b034d1417c009721a045e17184d3e4d690a27e2", + "tarball": "http://registry.npmjs.org/smoosh/-/smoosh-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "8ca06960a22cc87fe8385961d6be6cb20ea4e649", + "tarball": "http://registry.npmjs.org/smoosh/-/smoosh-0.2.2.tgz" + }, + "0.3.0": { + "shasum": "df3c960a6a22e1b81c2f47aad8d212d3e41781dc", + "tarball": "http://registry.npmjs.org/smoosh/-/smoosh-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "f6bc440abc4bca9a9112366337ee9a479757cebc", + "tarball": "http://registry.npmjs.org/smoosh/-/smoosh-0.3.1.tgz" + } + }, + "keywords": [ + "packager", + "packaging", + "smoosher", + "javascript", + "css", + "dependencies" + ], + "url": "http://registry.npmjs.org/smoosh/" + }, + "smores": { + "name": "smores", + "description": "Campfire library written in CoffeeScript for Node", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "tombell", + "email": "tomb@tombell.org.uk" + } + ], + "time": { + "modified": "2011-09-26T21:56:56.134Z", + "created": "2011-08-29T00:18:23.371Z", + "0.0.0": "2011-08-29T00:18:24.810Z", + "0.0.1": "2011-09-18T00:51:58.136Z", + "0.0.2": "2011-09-18T14:10:12.279Z", + "0.0.3": "2011-09-20T13:55:42.672Z", + "0.0.4": "2011-09-25T13:19:23.698Z", + "0.0.5": "2011-09-26T21:53:02.981Z", + "0.0.6": "2011-09-26T21:56:56.134Z" + }, + "author": { + "name": "Tom Bell" + }, + "repository": { + "type": "git", + "url": "git://github.com/tombell/smores.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/smores/0.0.0", + "0.0.1": "http://registry.npmjs.org/smores/0.0.1", + "0.0.2": "http://registry.npmjs.org/smores/0.0.2", + "0.0.3": "http://registry.npmjs.org/smores/0.0.3", + "0.0.4": "http://registry.npmjs.org/smores/0.0.4", + "0.0.5": "http://registry.npmjs.org/smores/0.0.5", + "0.0.6": "http://registry.npmjs.org/smores/0.0.6" + }, + "dist": { + "0.0.0": { + "shasum": "39f4b71544a0e6fae8f74b1d547bc174fd6dd7de", + "tarball": "http://registry.npmjs.org/smores/-/smores-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "0d04650997d025c78dd98b93b98e8fdba082733e", + "tarball": "http://registry.npmjs.org/smores/-/smores-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "e55dcb7b77504f005ffea6fe3ada8a8626743aae", + "tarball": "http://registry.npmjs.org/smores/-/smores-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "c60be287e37aeb33fbdbc165e676ad4f77787014", + "tarball": "http://registry.npmjs.org/smores/-/smores-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "bfdfef709c9069a81cfea32e0576b2899aa67da0", + "tarball": "http://registry.npmjs.org/smores/-/smores-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "b8a2535124f94f40d5754551e1d4b8db24a0508f", + "tarball": "http://registry.npmjs.org/smores/-/smores-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "753a4bf75284308377be79c1f5f6e5c4084439aa", + "tarball": "http://registry.npmjs.org/smores/-/smores-0.0.6.tgz" + } + }, + "keywords": [ + "campfire", + "chat", + "api" + ], + "url": "http://registry.npmjs.org/smores/" + }, + "smpp": { + "name": "smpp", + "description": "SMPP client and server implementation in node.js", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "farhadi", + "email": "a.farhadi@gmail.com" + } + ], + "time": { + "modified": "2011-09-15T09:23:57.890Z", + "created": "2011-09-12T23:58:03.707Z", + "0.0.1": "2011-09-12T23:58:08.015Z", + "0.0.2": "2011-09-15T09:23:57.890Z" + }, + "author": { + "name": "Ali Farhadi", + "email": "a.farhadi@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/farhadi/node-smpp.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/smpp/0.0.1", + "0.0.2": "http://registry.npmjs.org/smpp/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "de1241995cf4c27031bd97b132185a7ec771002c", + "tarball": "http://registry.npmjs.org/smpp/-/smpp-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "cade410958be64db12c5237579415b992324bef6", + "tarball": "http://registry.npmjs.org/smpp/-/smpp-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/smpp/" + }, + "smsified": { + "name": "smsified", + "description": "A Node.js library for interaction with the SMSified API.", + "dist-tags": { + "latest": "1.0.6" + }, + "maintainers": [ + { + "name": "mheadd", + "email": "mheadd@voxeo.com" + } + ], + "time": { + "modified": "2011-07-18T14:19:22.157Z", + "created": "2011-05-18T14:34:51.139Z", + "1.0.1": "2011-05-18T14:34:51.388Z", + "1.0.2": "2011-05-25T12:30:25.800Z", + "1.0.3": "2011-05-26T16:42:02.748Z", + "1.0.4": "2011-06-15T16:54:00.657Z", + "1.0.5": "2011-06-22T20:55:09.088Z", + "1.0.6": "2011-07-18T14:19:22.157Z" + }, + "author": { + "name": "Mark Headd", + "email": "mheadd@voxeo.com", + "url": "http://smsified.com" + }, + "versions": { + "1.0.1": "http://registry.npmjs.org/smsified/1.0.1", + "1.0.2": "http://registry.npmjs.org/smsified/1.0.2", + "1.0.3": "http://registry.npmjs.org/smsified/1.0.3", + "1.0.4": "http://registry.npmjs.org/smsified/1.0.4", + "1.0.5": "http://registry.npmjs.org/smsified/1.0.5", + "1.0.6": "http://registry.npmjs.org/smsified/1.0.6" + }, + "dist": { + "1.0.1": { + "shasum": "e00f35541e17679a311de780689fee771a58b9c5", + "tarball": "http://registry.npmjs.org/smsified/-/smsified-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "b50dd67a2c54ab5312cd8890bc881528b6ff3834", + "tarball": "http://registry.npmjs.org/smsified/-/smsified-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "d02260bdee4f4a81cf62ed17531498d2b62269ef", + "tarball": "http://registry.npmjs.org/smsified/-/smsified-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "7384510ab357fc828ad96ee71d64c2783df661fb", + "tarball": "http://registry.npmjs.org/smsified/-/smsified-1.0.4.tgz" + }, + "1.0.5": { + "shasum": "fab111ba1c09c7390553f94ddedfecc5a1c0ea8a", + "tarball": "http://registry.npmjs.org/smsified/-/smsified-1.0.5.tgz" + }, + "1.0.6": { + "shasum": "f5e532ee3ee281e8fdb3dcdec0ec18653167ea76", + "tarball": "http://registry.npmjs.org/smsified/-/smsified-1.0.6.tgz" + } + }, + "url": "http://registry.npmjs.org/smsified/" + }, + "smtp": { + "name": "smtp", + "description": "SMTP daemon (and eventually client) library", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "aredridel", + "email": "aredridel@nbtsc.org" + } + ], + "time": { + "modified": "2011-06-21T18:41:56.263Z", + "created": "2011-06-01T05:26:58.872Z", + "0.0.1": "2011-06-01T05:26:58.872Z", + "0.0.3": "2011-06-01T05:26:58.872Z", + "0.0.5": "2011-06-01T05:26:58.872Z", + "0.1.0": "2011-06-01T07:12:00.825Z", + "0.1.1": "2011-06-13T05:57:54.014Z", + "0.1.2": "2011-06-14T04:34:49.674Z", + "0.1.3": "2011-06-14T04:39:25.854Z", + "0.1.4": "2011-06-21T18:41:56.263Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/smtp/0.0.1", + "0.0.3": "http://registry.npmjs.org/smtp/0.0.3", + "0.0.5": "http://registry.npmjs.org/smtp/0.0.5", + "0.1.0": "http://registry.npmjs.org/smtp/0.1.0", + "0.1.1": "http://registry.npmjs.org/smtp/0.1.1", + "0.1.2": "http://registry.npmjs.org/smtp/0.1.2", + "0.1.3": "http://registry.npmjs.org/smtp/0.1.3", + "0.1.4": "http://registry.npmjs.org/smtp/0.1.4" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/smtp/-/smtp-0.0.1.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/smtp/-/smtp-0.0.3.tgz" + }, + "0.0.5": { + "shasum": "d4697e683a6d94fe5f65b47ccac7d188966bb699", + "tarball": "http://registry.npmjs.org/smtp/-/smtp-0.0.5.tgz" + }, + "0.1.0": { + "shasum": "cbb5595cc6a305d0f335348abc63bbb497a048bd", + "tarball": "http://registry.npmjs.org/smtp/-/smtp-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "1a03a590d6b25731e5692e18eea4b9bddc9a2bd3", + "tarball": "http://registry.npmjs.org/smtp/-/smtp-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "bcf8e3898a099e461ed0d6fefd6b7b7efced46d8", + "tarball": "http://registry.npmjs.org/smtp/-/smtp-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "bacb6dc4ac5326331595de4b9ba9dbb2b539ee17", + "tarball": "http://registry.npmjs.org/smtp/-/smtp-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "1779bb7e69c0e1077b722aff4367408c4dbd0454", + "tarball": "http://registry.npmjs.org/smtp/-/smtp-0.1.4.tgz" + } + }, + "url": "http://registry.npmjs.org/smtp/" + }, + "smtp-protocol": { + "name": "smtp-protocol", + "description": "implements the smtp protocol for clients and servers", + "dist-tags": { + "latest": "0.1.1" + }, + "readme": null, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-11-30T05:29:36.521Z", + "created": "2011-11-29T02:02:53.855Z", + "0.0.0": "2011-11-29T02:02:55.134Z", + "0.1.0": "2011-11-29T09:07:37.507Z", + "0.1.1": "2011-11-30T05:29:36.521Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-smtp-protocol.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/smtp-protocol/0.0.0", + "0.1.0": "http://registry.npmjs.org/smtp-protocol/0.1.0", + "0.1.1": "http://registry.npmjs.org/smtp-protocol/0.1.1" + }, + "dist": { + "0.0.0": { + "shasum": "3bc40c9e4eb6e29f3056e432c6ccd083d0139999", + "tarball": "http://registry.npmjs.org/smtp-protocol/-/smtp-protocol-0.0.0.tgz" + }, + "0.1.0": { + "shasum": "3ba611a5472374ba7700bf846c596d619852f137", + "tarball": "http://registry.npmjs.org/smtp-protocol/-/smtp-protocol-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "965666df03dda8e047837243e1b902614b0f8f3f", + "tarball": "http://registry.npmjs.org/smtp-protocol/-/smtp-protocol-0.1.1.tgz" + } + }, + "keywords": [ + "email", + "mail", + "smtp", + "client", + "server" + ], + "url": "http://registry.npmjs.org/smtp-protocol/" + }, + "smtp-tester": { + "name": "smtp-tester", + "description": "Quick and dirty smtp server, that accepts handlers to process messages", + "dist-tags": { + "latest": "0.3.0" + }, + "readme": "smtp-tester\n===========\n\nOverview\n--------\nsmtp-tester is a simple smtp server that accepts connections, receives mail, and then calls callbacks that are bound to a particular address.\n\nInstallation\n------------\nInstallation is fairly straightforward, just install the npm module:\n\n npm install smtp-tester\n\nStarting an SMTP server\n-----------------------\nFirst, require smtp-tester:\n\n````JavaScript\nvar ms = require('smtp-tester');\n````\n\nNext, initialize a server with a port it should listen on (yes, I know, never end a sentence in a preposition).\n\n````JavaScript\nvar mailServer = ms.init(port);\n````\n\nDone. Your SMTP server is now listening on port 'port'.\n\nSending Mail\n------------\nSend mail using any SMTP client you want. For node work, I personally use nodemailer \n\n npm install nodemailer\n\nReceiving Mail\n--------------\nTo receive mail, bind a handler to the mailServer you created earlier.\n\n````JavaScript\nvar ms, mailServer, handler, port = 4000;\nms = require('smtp-tester');\nmailServer = ms.init(port);\nhandler = function(addr,id,email) {\n\t// do something interesting\n};\n\nmailServer.bind(\"foo@bar.com\",handler);\n````\n\nDone. Every mail sent to foo@bar.com (and every one sent before binding) will call the handler exactly once.\n\nStopping Receipt\n----------------\nTo stop receiving mail at a particular handler, just unbind.\n\n````JavaScript\nmailServer.unbind(\"foo@bar.com\",handler);\n````\n\nRemoving Messages\n-----------------\nTo remove messages from the mail server, you can remove an individual message or all of them:\n\n````JavaScript\nmailServer.remove(id);\nmailServer.removeAll();\n````\n\nStopping the Server\n-------------------\nSurprisingly, the method is just called \"stop\".\n\n````JavaScript\nmailServer.stop();\n````\n\nHandlers\n--------\nHandlers that receive mail are passed three parameters.\n\n* addr: Address to which the email was addressed, and for which the handler was bound.\n* id: Internal ID of the email in this mail server process. Useful for removing messages or checking against something in our cache.\n* email: JavaScript object of the email, containing \"sender\", \"receivers\", \"data\" (raw text), \"headers\" and \"body\".\n\nSample email object is as follows, taken from the test.js included with the package.\n\n````JavaScript\n{ sender: { address: '', valid: true },\n receivers: { 'foo@bar.com': true },\n data: 'X-Mailer: Nodemailer (0.2.3; +http://www.nodemailer.org)\\r\\nDate: Thu, 01 Dec 2011 10:24:01 GMT\\r\\nFrom: mailtest@bar.com\\r\\nTo: foo@bar.com\\r\\nSubject: email test\\r\\nMIME-Version: 1.0\\r\\nContent-Type: text/plain; charset=UTF-8\\r\\nContent-Transfer-Encoding: quoted-printable\\r\\n\\r\\nThis is a test mail\\r\\n',\n headers: \n { 'X-Mailer': 'Nodemailer (0.2.3; +http://www.nodemailer.org)',\n Date: 'Thu, 01 Dec 2011 10:24:01 GMT',\n From: 'mailtest@bar.com',\n To: 'foo@bar.com',\n Subject: 'email test',\n 'MIME-Version': '1.0',\n 'Content-Type': 'text/plain; charset=UTF-8',\n 'Content-Transfer-Encoding': 'quoted-printable' },\n body: 'This is a test mail\\r\\n' }````\n\n", + "maintainers": [ + { + "name": "deitch", + "email": "avi@deitcher.net" + } + ], + "time": { + "modified": "2011-12-01T21:41:57.002Z", + "created": "2011-12-01T10:49:29.981Z", + "0.1.0": "2011-12-01T10:49:32.211Z", + "0.2.0": "2011-12-01T20:33:26.405Z", + "0.3.0": "2011-12-01T21:41:57.002Z" + }, + "author": { + "name": "Avi Deitcher", + "email": "avi@deitcher.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/deitch/smtp-tester.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/smtp-tester/0.1.0", + "0.2.0": "http://registry.npmjs.org/smtp-tester/0.2.0", + "0.3.0": "http://registry.npmjs.org/smtp-tester/0.3.0" + }, + "dist": { + "0.1.0": { + "shasum": "9bb2e43d8028cf4fb65a823b96d55da303f5b435", + "tarball": "http://registry.npmjs.org/smtp-tester/-/smtp-tester-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "d2fd7ae7e8639487c9bfb356258bb7bcb148e757", + "tarball": "http://registry.npmjs.org/smtp-tester/-/smtp-tester-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "9a5dfe46c98c75435d8915a52bf86fada8ddedff", + "tarball": "http://registry.npmjs.org/smtp-tester/-/smtp-tester-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/smtp-tester/" + }, + "smtpc": { + "name": "smtpc", + "description": "Simple SMTP client for NodeJS", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "dresende", + "email": "dresende@thinkdigital.pt" + } + ], + "time": { + "modified": "2011-06-06T17:33:20.991Z", + "created": "2011-04-17T00:37:48.182Z", + "0.1.0": "2011-04-17T00:37:48.819Z", + "0.1.1": "2011-05-19T15:08:38.558Z", + "0.1.2": "2011-05-27T11:12:50.205Z" + }, + "author": { + "name": "Diogo Resende", + "email": "dresende@thinkdigital.pt", + "url": "http://www.thinkdigital.pt" + }, + "repository": { + "type": "git", + "url": "git://github.com/dresende/node-smtp.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/smtpc/0.1.0", + "0.1.1": "http://registry.npmjs.org/smtpc/0.1.1", + "0.1.2": "http://registry.npmjs.org/smtpc/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "2f7a4b9eff87c9ad4af017223e8317afc836c8b4", + "tarball": "http://registry.npmjs.org/smtpc/-/smtpc-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "5bb07d6d4bf3bea61b07713af7ed1153cc57393e", + "tarball": "http://registry.npmjs.org/smtpc/-/smtpc-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "7b0efaabcb281e2d454765fafeebbdd8c3823774", + "tarball": "http://registry.npmjs.org/smtpc/-/smtpc-0.1.2.tgz" + } + }, + "keywords": [ + "smtp", + "client", + "mail" + ], + "url": "http://registry.npmjs.org/smtpc/" + }, + "smtpclient": { + "name": "smtpclient", + "description": "SMTP client supporting AUTH and TLS/SSL", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "sleeplessinc", + "email": "joe@sleepless.com" + } + ], + "time": { + "modified": "2011-02-17T00:09:17.366Z", + "created": "2011-02-17T00:09:16.917Z", + "1.0.0": "2011-02-17T00:09:17.366Z" + }, + "author": { + "name": "Joe Hitchens", + "email": "joe@sleepless.com" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/smtpclient/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "459ede165e3c5238527a11d58a391da7cdaea7b2", + "tarball": "http://registry.npmjs.org/smtpclient/-/smtpclient-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/smtpclient/" + }, + "snapi": { + "name": "snapi", + "description": "Pluggable API server", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "fractal", + "email": "contact@wearefractal.com" + } + ], + "time": { + "modified": "2011-12-10T12:20:21.905Z", + "created": "2011-12-06T14:22:15.244Z", + "0.0.1": "2011-12-06T14:22:16.616Z", + "0.0.2": "2011-12-10T12:07:19.080Z", + "0.0.3": "2011-12-10T12:20:21.905Z" + }, + "author": { + "name": "Fractal", + "email": "contact@wearefractal.com", + "url": "http://wearefractal.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/wearefractal/snapi.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/snapi/0.0.1", + "0.0.2": "http://registry.npmjs.org/snapi/0.0.2", + "0.0.3": "http://registry.npmjs.org/snapi/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "cd1ab96b0da8a708e8fb47f8f87c6fccd7988c21", + "tarball": "http://registry.npmjs.org/snapi/-/snapi-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "98eb8981a5d9645a02048a87a192d27c1d87e857", + "tarball": "http://registry.npmjs.org/snapi/-/snapi-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "83fc8bab912b8dd9d7876303e86727140897f83e", + "tarball": "http://registry.npmjs.org/snapi/-/snapi-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/snapi/" + }, + "snappy": { + "name": "snappy", + "description": "Nodejs bindings to Google's Snappy compression library", + "dist-tags": { + "latest": "1.2.0" + }, + "maintainers": [ + { + "name": "kesla", + "email": "david.bjorklund@gmail.com" + } + ], + "time": { + "modified": "2011-12-06T21:14:12.501Z", + "created": "2011-05-17T15:13:47.452Z", + "1.0.0": "2011-12-06T21:14:12.501Z", + "1.1.0": "2011-12-06T21:14:12.501Z", + "1.1.1": "2011-12-06T21:14:12.501Z", + "1.1.2": "2011-12-06T21:14:12.501Z", + "1.2.0": "2011-12-06T21:14:12.501Z" + }, + "author": { + "name": "David Björklund", + "email": "david.bjorklund@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/kesla/node-snappy.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/snappy/1.0.0", + "1.1.0": "http://registry.npmjs.org/snappy/1.1.0", + "1.1.1": "http://registry.npmjs.org/snappy/1.1.1", + "1.1.2": "http://registry.npmjs.org/snappy/1.1.2", + "1.2.0": "http://registry.npmjs.org/snappy/1.2.0" + }, + "dist": { + "1.0.0": { + "shasum": "93951ec5880c8851f1b3b088863d1520e2469ef4", + "bin": { + "0.4-linux-2.6.35-28-generic": { + "shasum": "045ffbeb2e299dda3696712762d45960065a01cc", + "tarball": "http://registry.npmjs.org/snappy/-/snappy-1.0.0-0.4-linux-2.6.35-28-generic.tgz" + } + }, + "tarball": "http://registry.npmjs.org/snappy/-/snappy-1.0.0.tgz" + }, + "1.1.0": { + "shasum": "2ab3fa594977698af8016ddaa0f8af65141cb325", + "bin": { + "0.4-linux-2.6.35-28-generic": { + "shasum": "0c25b1af6d0f21ba23bd520943dfc84d8f921138", + "tarball": "http://registry.npmjs.org/snappy/-/snappy-1.1.0-0.4-linux-2.6.35-28-generic.tgz" + } + }, + "tarball": "http://registry.npmjs.org/snappy/-/snappy-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "ac88d1ee9d5fa86d3c04d7e8b44f5a909f9ef6ad", + "tarball": "http://registry.npmjs.org/snappy/-/snappy-1.1.1.tgz" + }, + "1.1.2": { + "shasum": "ebe8195166f167dfc656ad6cf33a38a6d60a4c4f", + "tarball": "http://registry.npmjs.org/snappy/-/snappy-1.1.2.tgz" + }, + "1.2.0": { + "shasum": "af694a39cd72c1afe25a64ca42487135b173a23f", + "tarball": "http://registry.npmjs.org/snappy/-/snappy-1.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/snappy/" + }, + "sng": { + "name": "sng", + "description": "THE script that manages NGinx/PHP developement server", + "dist-tags": { + "latest": "0.0.8" + }, + "maintainers": [ + { + "name": "fe_lix_", + "email": "felix.delval@gmail.com" + } + ], + "time": { + "modified": "2011-08-18T14:27:41.751Z", + "created": "2011-07-01T10:47:59.410Z", + "0.0.1": "2011-07-01T10:48:00.420Z", + "0.0.2": "2011-07-01T10:52:32.483Z", + "0.0.3": "2011-07-01T11:01:35.332Z", + "0.0.4": "2011-07-01T11:12:43.900Z", + "0.0.5": "2011-08-04T09:13:06.927Z", + "0.0.6": "2011-08-04T16:06:53.461Z", + "0.0.7": "2011-08-10T14:45:30.498Z", + "0.0.8": "2011-08-18T14:14:35.143Z" + }, + "author": { + "name": "Félix Delval", + "email": "contact@ravelsoft.com", + "url": "http://www.ravelsoft.com" + }, + "repository": { + "type": "hg", + "url": "https://bitbucket.org/ravelsoft/node-sng" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/sng/0.0.1", + "0.0.2": "http://registry.npmjs.org/sng/0.0.2", + "0.0.3": "http://registry.npmjs.org/sng/0.0.3", + "0.0.4": "http://registry.npmjs.org/sng/0.0.4", + "0.0.5": "http://registry.npmjs.org/sng/0.0.5", + "0.0.6": "http://registry.npmjs.org/sng/0.0.6", + "0.0.7": "http://registry.npmjs.org/sng/0.0.7", + "0.0.8": "http://registry.npmjs.org/sng/0.0.8" + }, + "dist": { + "0.0.1": { + "shasum": "7ac16df87b3a159fa8755289727623f558ab38ae", + "tarball": "http://registry.npmjs.org/sng/-/sng-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "ca64dad3531b79d24357578050f89bbfcb055d53", + "tarball": "http://registry.npmjs.org/sng/-/sng-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "8a6644415a323fa03227014917a8cbd6f234793c", + "tarball": "http://registry.npmjs.org/sng/-/sng-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "7a98db2e2ef132852dbc4b80eb1b41fa41df22de", + "tarball": "http://registry.npmjs.org/sng/-/sng-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "488ea7d866785496cd83c04d7d50d5ae381336d4", + "tarball": "http://registry.npmjs.org/sng/-/sng-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "a2597b0f72d7d3908129a0c7d869a64c5a77fac2", + "tarball": "http://registry.npmjs.org/sng/-/sng-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "1d9da3ce0bd8661ccc4057abda643ca0b811bd62", + "tarball": "http://registry.npmjs.org/sng/-/sng-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "0c753a0d686870b2f5c35a0e8a2511f01214e881", + "tarball": "http://registry.npmjs.org/sng/-/sng-0.0.8.tgz" + } + }, + "keywords": [ + "nginx", + "php", + "developement server", + "fun" + ], + "url": "http://registry.npmjs.org/sng/" + }, + "snip": { + "name": "snip", + "dist-tags": { + "latest": "0.5.0" + }, + "maintainers": [ + { + "name": "joshbirk", + "email": "joshua.birk@gmail.com" + } + ], + "time": { + "modified": "2011-06-27T21:00:14.455Z", + "created": "2011-06-27T21:00:14.176Z", + "0.5.0": "2011-06-27T21:00:14.455Z" + }, + "author": { + "name": "Josh Birk" + }, + "versions": { + "0.5.0": "http://registry.npmjs.org/snip/0.5.0" + }, + "dist": { + "0.5.0": { + "shasum": "fb94863188b006f56267dd5e1415993c861fae00", + "tarball": "http://registry.npmjs.org/snip/-/snip-0.5.0.tgz" + } + }, + "url": "http://registry.npmjs.org/snip/" + }, + "snipes": { + "name": "snipes", + "description": "Unobtrusive realtime mouse-tracking analytics for node.js", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "jasonbarry", + "email": "jasongrantbarry@gmail.com" + } + ], + "time": { + "modified": "2011-07-26T06:43:03.165Z", + "created": "2011-07-26T06:43:02.639Z", + "0.0.1": "2011-07-26T06:43:03.165Z" + }, + "author": { + "name": "Jason Barry" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/snipes/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "35bb6a7d7853e72f61bbafa1501a7bb535f8fb4e", + "tarball": "http://registry.npmjs.org/snipes/-/snipes-0.0.1.tgz" + } + }, + "keywords": [ + "analytics", + "mouse tracking", + "heatmap" + ], + "url": "http://registry.npmjs.org/snipes/" + }, + "snippets": { + "name": "snippets", + "description": "JavaScript Snippet Collection", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "jhh", + "email": "jhh@sendanor.com" + } + ], + "time": { + "modified": "2011-09-07T21:04:45.207Z", + "created": "2011-07-28T00:21:31.278Z", + "0.0.1": "2011-07-28T00:21:32.287Z", + "0.0.2": "2011-07-28T00:28:15.154Z", + "0.0.3": "2011-07-30T14:42:02.834Z", + "0.0.4": "2011-07-30T14:52:34.565Z", + "0.0.5": "2011-07-30T22:19:13.848Z", + "0.0.6": "2011-09-07T21:04:45.207Z" + }, + "author": { + "name": "Jaakko-Heikki Heusala", + "email": "jheusala@iki.fi", + "url": "http://www.jhh.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/jheusala/js-snippets.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/snippets/0.0.1", + "0.0.2": "http://registry.npmjs.org/snippets/0.0.2", + "0.0.3": "http://registry.npmjs.org/snippets/0.0.3", + "0.0.4": "http://registry.npmjs.org/snippets/0.0.4", + "0.0.5": "http://registry.npmjs.org/snippets/0.0.5", + "0.0.6": "http://registry.npmjs.org/snippets/0.0.6" + }, + "dist": { + "0.0.1": { + "shasum": "3f539adcda0768f1df3a368278bd0aa84e7f51d3", + "tarball": "http://registry.npmjs.org/snippets/-/snippets-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "7f07f1adede2941afc8fd2013c32fd035440fac5", + "tarball": "http://registry.npmjs.org/snippets/-/snippets-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "4b893d9243c6f466c0526949650b299ea1522b83", + "tarball": "http://registry.npmjs.org/snippets/-/snippets-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "7b61fc93f78a4270b7a774636d2cdd372879be12", + "tarball": "http://registry.npmjs.org/snippets/-/snippets-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "21cf7096b37140ebe02a470153843bd68708b14b", + "tarball": "http://registry.npmjs.org/snippets/-/snippets-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "1ad5eb3ff6f3c8353e49d613742b4eb3bb935f24", + "tarball": "http://registry.npmjs.org/snippets/-/snippets-0.0.6.tgz" + } + }, + "url": "http://registry.npmjs.org/snippets/" + }, + "snockets": { + "name": "snockets", + "description": "Sprockets-esque script concatenation for Node", + "dist-tags": { + "latest": "1.3.3" + }, + "maintainers": [ + { + "name": "TrevorBurnham", + "email": "trevorburnham@gmail.com" + } + ], + "time": { + "modified": "2011-11-02T19:37:43.153Z", + "created": "2011-10-01T19:23:21.928Z", + "1.0.0": "2011-10-01T19:23:22.395Z", + "1.1.0": "2011-10-02T19:45:42.575Z", + "1.2.0": "2011-10-03T18:47:55.680Z", + "1.2.3": "2011-10-03T19:02:48.118Z", + "1.2.4": "2011-10-03T19:49:17.826Z", + "1.2.5": "2011-10-03T20:03:33.676Z", + "1.3.0": "2011-10-08T16:04:23.224Z", + "1.3.1": "2011-10-08T16:24:22.097Z", + "1.3.2": "2011-10-23T18:42:04.383Z", + "1.3.3": "2011-11-02T19:37:43.153Z" + }, + "author": { + "name": "Trevor Burnham", + "url": "http://trevorburnham.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/TrevorBurnham/snockets.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/snockets/1.0.0", + "1.1.0": "http://registry.npmjs.org/snockets/1.1.0", + "1.2.0": "http://registry.npmjs.org/snockets/1.2.0", + "1.2.3": "http://registry.npmjs.org/snockets/1.2.3", + "1.2.4": "http://registry.npmjs.org/snockets/1.2.4", + "1.2.5": "http://registry.npmjs.org/snockets/1.2.5", + "1.3.0": "http://registry.npmjs.org/snockets/1.3.0", + "1.3.1": "http://registry.npmjs.org/snockets/1.3.1", + "1.3.2": "http://registry.npmjs.org/snockets/1.3.2", + "1.3.3": "http://registry.npmjs.org/snockets/1.3.3" + }, + "dist": { + "1.0.0": { + "shasum": "ed6b50ff1d2698de3e6f9c10bf543c7383ef32c1", + "tarball": "http://registry.npmjs.org/snockets/-/snockets-1.0.0.tgz" + }, + "1.1.0": { + "shasum": "c7f3eb30ed7f154b802ea3d6a7c14654160d07ad", + "tarball": "http://registry.npmjs.org/snockets/-/snockets-1.1.0.tgz" + }, + "1.2.0": { + "shasum": "075328e950a36d9807feae8fe5aa56dc7f2d8dfd", + "tarball": "http://registry.npmjs.org/snockets/-/snockets-1.2.0.tgz" + }, + "1.2.3": { + "shasum": "ac0735e615cbb247bf3aec9847d1b15427949af8", + "tarball": "http://registry.npmjs.org/snockets/-/snockets-1.2.3.tgz" + }, + "1.2.4": { + "shasum": "41fd8417d60b123c68891dcc812d63079717d8dc", + "tarball": "http://registry.npmjs.org/snockets/-/snockets-1.2.4.tgz" + }, + "1.2.5": { + "shasum": "ed31be3b00e2151e0c8d7bd77ac55c2d35df687b", + "tarball": "http://registry.npmjs.org/snockets/-/snockets-1.2.5.tgz" + }, + "1.3.0": { + "shasum": "9aa8854d8f5c0304838e56e45bdc6ebe9e1c6cd1", + "tarball": "http://registry.npmjs.org/snockets/-/snockets-1.3.0.tgz" + }, + "1.3.1": { + "shasum": "78e42b0fb120448e837c611211386ebef67448f8", + "tarball": "http://registry.npmjs.org/snockets/-/snockets-1.3.1.tgz" + }, + "1.3.2": { + "shasum": "61875e5becf3096e85fdc77ba222205fe2d4e396", + "tarball": "http://registry.npmjs.org/snockets/-/snockets-1.3.2.tgz" + }, + "1.3.3": { + "shasum": "df17973dc5831bf0310445c091a9cbe209058095", + "tarball": "http://registry.npmjs.org/snockets/-/snockets-1.3.3.tgz" + } + }, + "url": "http://registry.npmjs.org/snockets/" + }, + "snout": { + "name": "snout", + "description": "A lightweight application framework for Node", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "gsf", + "email": "gsf747@gmail.com" + } + ], + "time": { + "modified": "2011-12-04T06:19:11.342Z", + "created": "2011-10-17T04:27:48.123Z", + "0.0.3": "2011-10-17T04:27:48.449Z", + "0.0.4": "2011-11-26T01:46:32.497Z", + "0.0.5": "2011-12-04T06:19:11.342Z" + }, + "author": { + "name": "Gabriel Farrell", + "email": "g@grrawr.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/gsf/snout.git" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/snout/0.0.3", + "0.0.4": "http://registry.npmjs.org/snout/0.0.4", + "0.0.5": "http://registry.npmjs.org/snout/0.0.5" + }, + "dist": { + "0.0.3": { + "shasum": "41b8fb4ed3a6de2d384409fc5aea03fd81ee19c6", + "tarball": "http://registry.npmjs.org/snout/-/snout-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "336057b39878ed228593f66ac4b7649ccaa65b93", + "tarball": "http://registry.npmjs.org/snout/-/snout-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "d7ab0dcc313ff948afd4728f738455f580027f57", + "tarball": "http://registry.npmjs.org/snout/-/snout-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/snout/" + }, + "snow": { + "name": "snow", + "description": "SNOWFLAKES IN UR TERMINAL EATIN' UR MEMORY", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "ecto", + "email": "diffference@gmail.com" + } + ], + "time": { + "modified": "2011-10-24T03:08:44.839Z", + "created": "2011-10-24T03:08:44.490Z", + "0.0.0": "2011-10-24T03:08:44.839Z" + }, + "author": { + "name": "Cam Pedersen", + "email": "diffference@gmail.com", + "url": "http://campedersen.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/ecto/snow.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/snow/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "a7cd191133a3839abe24d24db0d95ef3c934fa21", + "tarball": "http://registry.npmjs.org/snow/-/snow-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/snow/" + }, + "snowball": { + "name": "snowball", + "description": "snowball word stemming algorithm implementation", + "dist-tags": { + "latest": "0.3.1" + }, + "maintainers": [ + { + "name": "gerad", + "email": "gerads@gmail.com" + } + ], + "time": { + "modified": "2011-03-10T17:40:49.845Z", + "created": "2011-03-10T17:40:49.355Z", + "0.3.1": "2011-03-10T17:40:49.846Z" + }, + "author": { + "name": "Oleg Mazko" + }, + "repository": { + "type": "git", + "url": "git://github.com/fortnightlabs/snowball-js.git" + }, + "versions": { + "0.3.1": "http://registry.npmjs.org/snowball/0.3.1" + }, + "dist": { + "0.3.1": { + "shasum": "627b19fb6574118bef06ad6810d84ddbee3ef993", + "tarball": "http://registry.npmjs.org/snowball/-/snowball-0.3.1.tgz" + } + }, + "keywords": [ + "nlp", + "word stemming", + "snowball" + ], + "url": "http://registry.npmjs.org/snowball/" + }, + "snpp": { + "name": "snpp", + "description": "An SNPP server library", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "jsanders", + "email": "sanderjd@gmail.com" + } + ], + "author": { + "name": "James Sanders", + "email": "sanderjd@gmail.com" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/snpp/0.1.1", + "0.1.2": "http://registry.npmjs.org/snpp/0.1.2" + }, + "dist": { + "0.1.1": { + "tarball": "http://packages:5984/snpp/-/snpp-0.1.1.tgz" + }, + "0.1.2": { + "tarball": "http://packages:5984/snpp/-/snpp-0.1.2.tgz" + } + }, + "keywords": [ + "snpp", + "server" + ], + "url": "http://registry.npmjs.org/snpp/" + }, + "snsclient": { + "name": "snsclient", + "description": "Multi-platform SNS client for node", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "btspoony", + "email": "btspoony@gmail.com" + } + ], + "time": { + "modified": "2011-12-10T14:59:21.038Z", + "created": "2011-09-21T21:41:01.547Z", + "0.1.0": "2011-09-21T21:41:06.166Z", + "0.1.1": "2011-09-24T08:34:03.260Z", + "0.1.2": "2011-10-19T17:38:18.047Z", + "0.1.3": "2011-10-26T19:12:38.920Z", + "0.2.0": "2011-11-22T17:19:51.743Z", + "0.3.0": "2011-12-10T14:59:21.038Z" + }, + "author": { + "name": "Tang Bo Hao", + "email": "btspoony@gmail.com", + "url": "http://blog.boisgames.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/btspoony/node-snsclient.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/snsclient/0.1.0", + "0.1.1": "http://registry.npmjs.org/snsclient/0.1.1", + "0.1.2": "http://registry.npmjs.org/snsclient/0.1.2", + "0.1.3": "http://registry.npmjs.org/snsclient/0.1.3", + "0.2.0": "http://registry.npmjs.org/snsclient/0.2.0", + "0.3.0": "http://registry.npmjs.org/snsclient/0.3.0" + }, + "dist": { + "0.1.0": { + "shasum": "466ec324e303ffbad42b4ef57669ab61d716fec1", + "tarball": "http://registry.npmjs.org/snsclient/-/snsclient-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "447f62e408fcce299c83862e7898a81a1e78ab4b", + "tarball": "http://registry.npmjs.org/snsclient/-/snsclient-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "9f9d891f90bbe4354e3b129fafd5f5955d701737", + "tarball": "http://registry.npmjs.org/snsclient/-/snsclient-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "a77d0978c39afc812c344e141a9b68a25decfe3d", + "tarball": "http://registry.npmjs.org/snsclient/-/snsclient-0.1.3.tgz" + }, + "0.2.0": { + "shasum": "7ee498c41788349f91ed2196c6ebdf65297c96ae", + "tarball": "http://registry.npmjs.org/snsclient/-/snsclient-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "790d09f2e0ecc354a112783ff3602378164db49b", + "tarball": "http://registry.npmjs.org/snsclient/-/snsclient-0.3.0.tgz" + } + }, + "keywords": [ + "sdk", + "facebook", + "oauth", + "oauth2", + "restful", + "sns", + "snsclient" + ], + "url": "http://registry.npmjs.org/snsclient/" + }, + "soap": { + "name": "soap", + "description": "A minimal node SOAP client", + "dist-tags": { + "latest": "0.0.9" + }, + "maintainers": [ + { + "name": "vpulim", + "email": "v@pulim.com" + } + ], + "time": { + "modified": "2011-12-09T21:22:07.558Z", + "created": "2011-04-13T15:17:02.838Z", + "0.0.1": "2011-04-13T15:17:03.164Z", + "0.0.2": "2011-07-28T23:03:31.175Z", + "0.0.3": "2011-08-23T20:59:28.651Z", + "0.0.4": "2011-10-27T21:40:02.391Z", + "0.0.5": "2011-11-15T18:07:17.181Z", + "0.0.6": "2011-11-15T22:03:03.752Z", + "0.0.7": "2011-12-05T23:04:45.323Z", + "0.0.8": "2011-12-09T20:58:56.023Z", + "0.0.9": "2011-12-09T21:22:07.558Z" + }, + "author": { + "name": "Vinay Pulim", + "email": "v@pulim.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/milewise/node-soap.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/soap/0.0.2", + "0.0.3": "http://registry.npmjs.org/soap/0.0.3", + "0.0.7": "http://registry.npmjs.org/soap/0.0.7", + "0.0.8": "http://registry.npmjs.org/soap/0.0.8", + "0.0.9": "http://registry.npmjs.org/soap/0.0.9" + }, + "dist": { + "0.0.2": { + "shasum": "00bfffe8f7ceabb9cf47bf674b44da0a2f3213cf", + "tarball": "http://registry.npmjs.org/soap/-/soap-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "fca43082cc66c6728cb6c024f1559f49e3b114af", + "tarball": "http://registry.npmjs.org/soap/-/soap-0.0.3.tgz" + }, + "0.0.7": { + "shasum": "808bfaf5f06ac00800594ecb4f9a531baef66f41", + "tarball": "http://registry.npmjs.org/soap/-/soap-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "727c6dc6ef2623a3f757d3c1b3b4d4fdfd3f2a95", + "tarball": "http://registry.npmjs.org/soap/-/soap-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "5f3fd50319a43c3bde3b80e216052aff3d54c2eb", + "tarball": "http://registry.npmjs.org/soap/-/soap-0.0.9.tgz" + } + }, + "keywords": [ + "soap" + ], + "url": "http://registry.npmjs.org/soap/" + }, + "socket-push": { + "name": "socket-push", + "description": "A highly scaleable COMET solution", + "dist-tags": { + "latest": "0.1.2-7beta" + }, + "maintainers": [ + { + "name": "brstgt", + "email": "benjamin.roth@kwick.de" + }, + { + "name": "lociii", + "email": "npm@jensnistler.de" + } + ], + "time": { + "modified": "2011-05-18T12:49:58.859Z", + "created": "2011-03-17T23:52:37.338Z", + "0.1.0beta": "2011-03-17T23:52:37.809Z", + "0.1.1beta": "2011-03-24T21:39:53.360Z", + "0.1.2beta": "2011-03-31T13:38:29.900Z", + "0.1.2-1beta": "2011-04-04T12:07:21.323Z", + "0.1.2-2beta": "2011-04-04T13:09:46.224Z", + "0.1.2-3beta": "2011-04-04T13:23:45.397Z", + "0.1.2-4beta": "2011-04-12T09:40:29.849Z", + "0.1.2-5beta": "2011-05-18T09:04:40.038Z", + "0.1.2-6beta": "2011-05-18T09:55:14.422Z", + "0.1.2-7beta": "2011-05-18T12:49:58.859Z" + }, + "author": { + "name": "Benjamin Roth", + "email": "benjamin.roth@kwick.de", + "url": "http://www.kwick.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/brstgt/socket-push.git" + }, + "versions": { + "0.1.0beta": "http://registry.npmjs.org/socket-push/0.1.0beta", + "0.1.1beta": "http://registry.npmjs.org/socket-push/0.1.1beta", + "0.1.2beta": "http://registry.npmjs.org/socket-push/0.1.2beta", + "0.1.2-1beta": "http://registry.npmjs.org/socket-push/0.1.2-1beta", + "0.1.2-2beta": "http://registry.npmjs.org/socket-push/0.1.2-2beta", + "0.1.2-3beta": "http://registry.npmjs.org/socket-push/0.1.2-3beta", + "0.1.2-4beta": "http://registry.npmjs.org/socket-push/0.1.2-4beta", + "0.1.2-5beta": "http://registry.npmjs.org/socket-push/0.1.2-5beta", + "0.1.2-6beta": "http://registry.npmjs.org/socket-push/0.1.2-6beta", + "0.1.2-7beta": "http://registry.npmjs.org/socket-push/0.1.2-7beta" + }, + "dist": { + "0.1.0beta": { + "shasum": "9d693f188e9caa4d0b901bbf478a995a324f5716", + "tarball": "http://registry.npmjs.org/socket-push/-/socket-push-0.1.0beta.tgz" + }, + "0.1.1beta": { + "shasum": "65e52b9fe584d4c402de8cc5caed6ff9f2834fba", + "tarball": "http://registry.npmjs.org/socket-push/-/socket-push-0.1.1beta.tgz" + }, + "0.1.2beta": { + "shasum": "4ce34ce46e8734861f9fba8ce543bcbfbe4a603f", + "tarball": "http://registry.npmjs.org/socket-push/-/socket-push-0.1.2beta.tgz" + }, + "0.1.2-1beta": { + "shasum": "8b3b3bfc8fc67e576a3e35082e5ea2d22ff74525", + "tarball": "http://registry.npmjs.org/socket-push/-/socket-push-0.1.2-1beta.tgz" + }, + "0.1.2-2beta": { + "shasum": "4bb085af26175738fee01749c534806fd0654408", + "tarball": "http://registry.npmjs.org/socket-push/-/socket-push-0.1.2-2beta.tgz" + }, + "0.1.2-3beta": { + "shasum": "171f26fd2133f986d7e1025aac87070197852fec", + "tarball": "http://registry.npmjs.org/socket-push/-/socket-push-0.1.2-3beta.tgz" + }, + "0.1.2-4beta": { + "shasum": "df13c2417e5e5d904c5e68dfb041a20a06e66c97", + "tarball": "http://registry.npmjs.org/socket-push/-/socket-push-0.1.2-4beta.tgz" + }, + "0.1.2-5beta": { + "shasum": "860e887fea6582f18cb2f4508e243fea75931d3f", + "tarball": "http://registry.npmjs.org/socket-push/-/socket-push-0.1.2-5beta.tgz" + }, + "0.1.2-6beta": { + "shasum": "477b57e5f6e3c78246666125fa0d7c768242f5f3", + "tarball": "http://registry.npmjs.org/socket-push/-/socket-push-0.1.2-6beta.tgz" + }, + "0.1.2-7beta": { + "shasum": "2ac80eb7ec44441d2cc9675eaf51cd49999bf4b5", + "tarball": "http://registry.npmjs.org/socket-push/-/socket-push-0.1.2-7beta.tgz" + } + }, + "keywords": [ + "socket-push", + "comet", + "websockets" + ], + "url": "http://registry.npmjs.org/socket-push/" + }, + "socket-twitchat": { + "name": "socket-twitchat", + "description": "IRC-like chatroom + Twitter live-stream", + "dist-tags": { + "latest": "0.7.15" + }, + "maintainers": [ + { + "name": "gaarf", + "email": "adrien@daltonx.com" + } + ], + "time": { + "modified": "2011-07-20T17:21:14.297Z", + "created": "2011-06-12T03:29:07.647Z", + "0.7.10": "2011-06-12T03:29:08.405Z", + "0.7.11": "2011-06-12T03:33:28.663Z", + "0.7.12": "2011-06-12T03:38:15.483Z", + "0.7.13": "2011-06-12T03:42:50.406Z", + "0.7.15": "2011-07-20T17:21:14.297Z" + }, + "author": { + "name": "gaarf", + "url": "http://gaarf.info" + }, + "repository": { + "type": "git", + "url": "git://github.com/gaarf/socket-twitchat.git" + }, + "versions": { + "0.7.10": "http://registry.npmjs.org/socket-twitchat/0.7.10", + "0.7.11": "http://registry.npmjs.org/socket-twitchat/0.7.11", + "0.7.12": "http://registry.npmjs.org/socket-twitchat/0.7.12", + "0.7.13": "http://registry.npmjs.org/socket-twitchat/0.7.13", + "0.7.15": "http://registry.npmjs.org/socket-twitchat/0.7.15" + }, + "dist": { + "0.7.10": { + "shasum": "88d537f4fe816cba2df7ca99476764beef015eb2", + "tarball": "http://registry.npmjs.org/socket-twitchat/-/socket-twitchat-0.7.10.tgz" + }, + "0.7.11": { + "shasum": "e0ca37ae4f87d5ea4acab7aa1536b029475368cf", + "tarball": "http://registry.npmjs.org/socket-twitchat/-/socket-twitchat-0.7.11.tgz" + }, + "0.7.12": { + "shasum": "9aa022ca5a837e18aa38a8f7dedd599001d2b1e1", + "tarball": "http://registry.npmjs.org/socket-twitchat/-/socket-twitchat-0.7.12.tgz" + }, + "0.7.13": { + "shasum": "851dd46efab1b211a721c9f4e4c4f53764cfe43b", + "tarball": "http://registry.npmjs.org/socket-twitchat/-/socket-twitchat-0.7.13.tgz" + }, + "0.7.15": { + "shasum": "768fb2bcf2385ada6a6ab9938e4871b8300e27c8", + "tarball": "http://registry.npmjs.org/socket-twitchat/-/socket-twitchat-0.7.15.tgz" + } + }, + "keywords": [ + "real-time", + "webapp", + "ExpressJS", + "socket.io", + "jQuery", + "campfire" + ], + "url": "http://registry.npmjs.org/socket-twitchat/" + }, + "socket.io": { + "name": "socket.io", + "description": "Real-time apps made cross-browser & easy with a WebSocket-like API", + "dist-tags": { + "latest": "0.8.7" + }, + "maintainers": [ + { + "name": "rauchg", + "email": "rauchg@gmail.com" + } + ], + "author": { + "name": "Guillermo Rauch", + "email": "guillermo@learnboost.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/LearnBoost/socket.io.git" + }, + "time": { + "modified": "2011-11-23T08:36:45.743Z", + "created": "2010-12-24T04:53:35.445Z", + "0.3.8": "2010-12-24T04:53:35.445Z", + "0.4.0": "2010-12-24T04:53:35.445Z", + "0.4.1": "2010-12-24T04:53:35.445Z", + "0.5.1": "2010-12-24T04:53:35.445Z", + "0.5.3": "2010-12-24T04:53:35.445Z", + "0.6.0": "2010-12-24T04:53:35.445Z", + "0.6.1": "2010-12-24T04:53:35.445Z", + "0.6.3": "2010-12-24T04:53:35.445Z", + "0.6.4": "2011-01-05T19:21:49.262Z", + "0.6.5": "2011-01-10T00:57:07.799Z", + "0.6.6": "2011-01-10T02:18:05.953Z", + "0.6.7": "2011-01-10T03:24:38.957Z", + "0.6.8": "2011-01-10T09:50:51.893Z", + "0.6.9": "2011-02-06T18:09:35.988Z", + "0.6.10": "2011-02-10T02:45:11.455Z", + "0.6.11": "2011-02-15T23:43:46.550Z", + "0.6.12": "2011-02-18T22:41:12.582Z", + "0.6.14": "2011-02-22T19:09:51.602Z", + "0.6.15": "2011-02-23T19:21:05.674Z", + "0.6.16": "2011-03-04T17:06:13.647Z", + "0.6.17": "2011-03-30T18:46:55.259Z", + "0.6.18": "2011-05-16T20:12:30.360Z", + "0.7.0": "2011-06-21T12:51:08.919Z", + "0.7.1": "2011-06-22T00:05:30.677Z", + "0.7.2": "2011-06-22T07:16:35.955Z", + "0.7.3": "2011-06-30T13:38:19.811Z", + "0.7.4": "2011-06-30T15:49:04.609Z", + "0.7.5": "2011-06-30T15:57:56.551Z", + "0.7.6": "2011-06-30T18:32:37.394Z", + "0.7.7": "2011-07-12T08:06:08.902Z", + "0.7.8": "2011-08-08T15:12:33.916Z", + "0.7.9": "2011-08-12T17:19:51.198Z", + "0.7.10": "2011-08-27T18:43:11.216Z", + "0.7.11": "2011-08-27T22:29:46.052Z", + "0.8.0": "2011-08-28T22:42:30.193Z", + "0.8.1": "2011-08-29T16:42:25.951Z", + "0.8.2": "2011-08-29T17:36:35.564Z", + "0.8.3": "2011-09-03T21:07:02.870Z", + "0.8.4": "2011-09-06T14:48:27.133Z", + "0.8.5": "2011-10-07T18:26:28.662Z", + "0.8.6": "2011-10-27T11:12:53.738Z", + "0.8.7": "2011-11-05T20:51:10.342Z" + }, + "users": { + "coverslide": true, + "kwerty": true, + "vesln": true, + "dresende": true, + "pid": true, + "naholyr": true + }, + "versions": { + "0.3.8": "http://registry.npmjs.org/socket.io/0.3.8", + "0.4.0": "http://registry.npmjs.org/socket.io/0.4.0", + "0.4.1": "http://registry.npmjs.org/socket.io/0.4.1", + "0.5.1": "http://registry.npmjs.org/socket.io/0.5.1", + "0.5.3": "http://registry.npmjs.org/socket.io/0.5.3", + "0.6.0": "http://registry.npmjs.org/socket.io/0.6.0", + "0.6.1": "http://registry.npmjs.org/socket.io/0.6.1", + "0.6.3": "http://registry.npmjs.org/socket.io/0.6.3", + "0.6.4": "http://registry.npmjs.org/socket.io/0.6.4", + "0.6.5": "http://registry.npmjs.org/socket.io/0.6.5", + "0.6.6": "http://registry.npmjs.org/socket.io/0.6.6", + "0.6.7": "http://registry.npmjs.org/socket.io/0.6.7", + "0.6.8": "http://registry.npmjs.org/socket.io/0.6.8", + "0.6.9": "http://registry.npmjs.org/socket.io/0.6.9", + "0.6.10": "http://registry.npmjs.org/socket.io/0.6.10", + "0.6.11": "http://registry.npmjs.org/socket.io/0.6.11", + "0.6.12": "http://registry.npmjs.org/socket.io/0.6.12", + "0.6.14": "http://registry.npmjs.org/socket.io/0.6.14", + "0.6.15": "http://registry.npmjs.org/socket.io/0.6.15", + "0.6.16": "http://registry.npmjs.org/socket.io/0.6.16", + "0.6.17": "http://registry.npmjs.org/socket.io/0.6.17", + "0.6.18": "http://registry.npmjs.org/socket.io/0.6.18", + "0.7.0": "http://registry.npmjs.org/socket.io/0.7.0", + "0.7.1": "http://registry.npmjs.org/socket.io/0.7.1", + "0.7.2": "http://registry.npmjs.org/socket.io/0.7.2", + "0.7.3": "http://registry.npmjs.org/socket.io/0.7.3", + "0.7.4": "http://registry.npmjs.org/socket.io/0.7.4", + "0.7.5": "http://registry.npmjs.org/socket.io/0.7.5", + "0.7.6": "http://registry.npmjs.org/socket.io/0.7.6", + "0.7.7": "http://registry.npmjs.org/socket.io/0.7.7", + "0.7.8": "http://registry.npmjs.org/socket.io/0.7.8", + "0.7.9": "http://registry.npmjs.org/socket.io/0.7.9", + "0.7.10": "http://registry.npmjs.org/socket.io/0.7.10", + "0.7.11": "http://registry.npmjs.org/socket.io/0.7.11", + "0.8.0": "http://registry.npmjs.org/socket.io/0.8.0", + "0.8.1": "http://registry.npmjs.org/socket.io/0.8.1", + "0.8.2": "http://registry.npmjs.org/socket.io/0.8.2", + "0.8.3": "http://registry.npmjs.org/socket.io/0.8.3", + "0.8.4": "http://registry.npmjs.org/socket.io/0.8.4", + "0.8.5": "http://registry.npmjs.org/socket.io/0.8.5", + "0.8.6": "http://registry.npmjs.org/socket.io/0.8.6", + "0.8.7": "http://registry.npmjs.org/socket.io/0.8.7" + }, + "dist": { + "0.3.8": { + "tarball": "http://registry.npmjs.org/socket.io/-/socket.io-0.3.8.tgz" + }, + "0.4.0": { + "tarball": "http://registry.npmjs.org/socket.io/-/socket.io-0.4.0.tgz" + }, + "0.4.1": { + "tarball": "http://registry.npmjs.org/socket.io/-/socket.io-0.4.1.tgz" + }, + "0.5.1": { + "tarball": "http://registry.npmjs.org/socket.io/-/socket.io-0.5.1.tgz" + }, + "0.5.3": { + "tarball": "http://registry.npmjs.org/socket.io/-/socket.io-0.5.3.tgz" + }, + "0.6.0": { + "tarball": "http://registry.npmjs.org/socket.io/-/socket.io-0.6.0.tgz" + }, + "0.6.1": { + "tarball": "http://registry.npmjs.org/socket.io/-/socket.io-0.6.1.tgz" + }, + "0.6.3": { + "shasum": "eb4c98fdaa69d7da6e901e23b8d82f58a79624cf", + "tarball": "http://registry.npmjs.org/socket.io/-/socket.io-0.6.3.tgz" + }, + "0.6.4": { + "shasum": "2f2a3b2e39b228067f0fed87517f894620fac6eb", + "tarball": "http://registry.npmjs.org/socket.io/-/socket.io-0.6.4.tgz" + }, + "0.6.5": { + "shasum": "bbaacc301960c2542bc2c050e53ae096149e3c9f", + "tarball": "http://registry.npmjs.org/socket.io/-/socket.io-0.6.5.tgz" + }, + "0.6.6": { + "shasum": "47142c3afb665c737ffd3fb7cae3d39775590f62", + "tarball": "http://registry.npmjs.org/socket.io/-/socket.io-0.6.6.tgz" + }, + "0.6.7": { + "shasum": "5061b461e4a2334982d053ffe35adb7712c8513f", + "tarball": "http://registry.npmjs.org/socket.io/-/socket.io-0.6.7.tgz" + }, + "0.6.8": { + "shasum": "868352e60fdb7aeb757cce564a72c8af58a0e14d", + "tarball": "http://registry.npmjs.org/socket.io/-/socket.io-0.6.8.tgz" + }, + "0.6.9": { + "shasum": "f83f2943ddab8a91087cecd4ef3a8a93e42f21c6", + "tarball": "http://registry.npmjs.org/socket.io/-/socket.io-0.6.9.tgz" + }, + "0.6.10": { + "shasum": "90ca370b5fe14c7810420664a1dc9c5883dc8731", + "tarball": "http://registry.npmjs.org/socket.io/-/socket.io-0.6.10.tgz" + }, + "0.6.11": { + "shasum": "77afe3106dc77e99abf67e7974626adc77716ba5", + "tarball": "http://registry.npmjs.org/socket.io/-/socket.io-0.6.11.tgz" + }, + "0.6.12": { + "shasum": "cb5092255e64e8ffed07a3aef0da5353f14e5c4d", + "tarball": "http://registry.npmjs.org/socket.io/-/socket.io-0.6.12.tgz" + }, + "0.6.14": { + "shasum": "73651a3c152b94fb0b353dee31364e6a0b58738b", + "tarball": "http://registry.npmjs.org/socket.io/-/socket.io-0.6.14.tgz" + }, + "0.6.15": { + "shasum": "d5eb26ebdba5811bf448e8e6db935527aa4f1bf9", + "tarball": "http://registry.npmjs.org/socket.io/-/socket.io-0.6.15.tgz" + }, + "0.6.16": { + "shasum": "fb4d8e053f6d7376e4561d46949fd21dc210a894", + "tarball": "http://registry.npmjs.org/socket.io/-/socket.io-0.6.16.tgz" + }, + "0.6.17": { + "shasum": "ca9a480df1e61d84d555e98e299ab51674ced90a", + "tarball": "http://registry.npmjs.org/socket.io/-/socket.io-0.6.17.tgz" + }, + "0.6.18": { + "shasum": "066dce544eebd9536a61fe08ff44e2e3bbfd8211", + "tarball": "http://registry.npmjs.org/socket.io/-/socket.io-0.6.18.tgz" + }, + "0.7.0": { + "shasum": "b1b4cff4efce41f909892c580ea4c8c89a0dd0ad", + "tarball": "http://registry.npmjs.org/socket.io/-/socket.io-0.7.0.tgz" + }, + "0.7.1": { + "shasum": "fad218869c04b56e345693ac975bf8381e1b603d", + "tarball": "http://registry.npmjs.org/socket.io/-/socket.io-0.7.1.tgz" + }, + "0.7.2": { + "shasum": "4e86f1de0e9c5107a487d9350dd4b598647ed907", + "tarball": "http://registry.npmjs.org/socket.io/-/socket.io-0.7.2.tgz" + }, + "0.7.3": { + "shasum": "c1dea6c8830067fcf604db670472ce31011ae69d", + "tarball": "http://registry.npmjs.org/socket.io/-/socket.io-0.7.3.tgz" + }, + "0.7.4": { + "shasum": "7432632a02cba5c79934a6026070e43785fe7ccf", + "tarball": "http://registry.npmjs.org/socket.io/-/socket.io-0.7.4.tgz" + }, + "0.7.5": { + "shasum": "878895677715b9979dc9527816475f223182fce0", + "tarball": "http://registry.npmjs.org/socket.io/-/socket.io-0.7.5.tgz" + }, + "0.7.6": { + "shasum": "fef3bfd02951b2b06950f7c8e6912641abb2834f", + "tarball": "http://registry.npmjs.org/socket.io/-/socket.io-0.7.6.tgz" + }, + "0.7.7": { + "shasum": "88124c9a5c26236de770c64fad6db9e12ba41bd8", + "tarball": "http://registry.npmjs.org/socket.io/-/socket.io-0.7.7.tgz" + }, + "0.7.8": { + "shasum": "b7a2bf272a99c6d11249c925e0f726fb29240f37", + "tarball": "http://registry.npmjs.org/socket.io/-/socket.io-0.7.8.tgz" + }, + "0.7.9": { + "shasum": "8e703e5bd59e1e4c27fd78595d0ef4704e5051a3", + "tarball": "http://registry.npmjs.org/socket.io/-/socket.io-0.7.9.tgz" + }, + "0.7.10": { + "shasum": "92453fa656d791667a3f5c5da1c233383ec45479", + "tarball": "http://registry.npmjs.org/socket.io/-/socket.io-0.7.10.tgz" + }, + "0.7.11": { + "shasum": "d01c6f23545d0f6e2c3c2c9b3aeeca4e15f6a612", + "tarball": "http://registry.npmjs.org/socket.io/-/socket.io-0.7.11.tgz" + }, + "0.8.0": { + "shasum": "d858d732ecade3eda8429a61dcfbdbe78a462a3f", + "tarball": "http://registry.npmjs.org/socket.io/-/socket.io-0.8.0.tgz" + }, + "0.8.1": { + "shasum": "803e01701dc9c122ac5ec625a2f5e453747408f9", + "tarball": "http://registry.npmjs.org/socket.io/-/socket.io-0.8.1.tgz" + }, + "0.8.2": { + "shasum": "25197b1c0881d02f8dead965a3c3a24c992c7b9f", + "tarball": "http://registry.npmjs.org/socket.io/-/socket.io-0.8.2.tgz" + }, + "0.8.3": { + "shasum": "fd52783044324b3a01e5edc0b7392c6d5b58c404", + "tarball": "http://registry.npmjs.org/socket.io/-/socket.io-0.8.3.tgz" + }, + "0.8.4": { + "shasum": "946caabdef2f604c673e9172a6bbf9039c9f0f1c", + "tarball": "http://registry.npmjs.org/socket.io/-/socket.io-0.8.4.tgz" + }, + "0.8.5": { + "shasum": "f9cfe2307e42c494e027aa40d448bc6d321b07b9", + "tarball": "http://registry.npmjs.org/socket.io/-/socket.io-0.8.5.tgz" + }, + "0.8.6": { + "shasum": "f4a219c810ed39cdf3baa126f7dc3b3f079f29b1", + "tarball": "http://registry.npmjs.org/socket.io/-/socket.io-0.8.6.tgz" + }, + "0.8.7": { + "shasum": "98419cb68859a6fc5ec8d49f50dcdbbe2ffd4466", + "tarball": "http://registry.npmjs.org/socket.io/-/socket.io-0.8.7.tgz" + } + }, + "keywords": [ + "websocket", + "socket", + "realtime", + "socket.io", + "comet", + "ajax" + ], + "url": "http://registry.npmjs.org/socket.io/" + }, + "socket.io-announce": { + "name": "socket.io-announce", + "description": "Socket.io multi-process announcement channel", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "dshaw", + "email": "dshaw@dshaw.com" + } + ], + "time": { + "modified": "2011-10-12T00:00:40.915Z", + "created": "2011-10-12T00:00:38.733Z", + "0.1.0": "2011-10-12T00:00:40.915Z" + }, + "author": { + "name": "Daniel D. Shaw", + "email": "dshaw@dshaw.com", + "url": "http://dshaw.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dshaw/socket.io-announce.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/socket.io-announce/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "650bcc4bdf6a0229afbcfbc9827e03022476aa4f", + "tarball": "http://registry.npmjs.org/socket.io-announce/-/socket.io-announce-0.1.0.tgz" + } + }, + "keywords": [ + "socket.io", + "store", + "redis", + "redisstore" + ], + "url": "http://registry.npmjs.org/socket.io-announce/" + }, + "socket.io-client": { + "name": "socket.io-client", + "description": "Socket.IO client for the browser and node.js", + "dist-tags": { + "latest": "0.8.7" + }, + "maintainers": [ + { + "name": "rauchg", + "email": "rauchg@gmail.com" + } + ], + "time": { + "modified": "2011-11-05T20:47:48.670Z", + "created": "2011-06-21T12:39:55.813Z", + "0.7.0": "2011-06-21T12:39:56.789Z", + "0.7.1": "2011-06-22T00:08:16.329Z", + "0.7.2": "2011-06-22T07:12:49.245Z", + "0.7.3": "2011-06-30T13:31:13.489Z", + "0.7.4": "2011-07-12T07:59:42.687Z", + "0.7.5": "2011-08-08T15:11:34.934Z", + "0.7.9": "2011-08-12T17:17:55.369Z", + "0.7.10": "2011-08-27T18:38:28.273Z", + "0.7.11": "2011-08-27T22:28:19.256Z", + "0.8.0": "2011-08-28T22:39:25.536Z", + "0.8.1": "2011-08-29T16:39:12.210Z", + "0.8.2": "2011-08-29T17:33:53.591Z", + "0.8.3": "2011-09-03T21:06:42.929Z", + "0.8.4": "2011-09-06T14:47:27.498Z", + "0.8.5": "2011-10-07T18:22:52.650Z", + "0.8.6": "2011-10-27T11:10:43.587Z", + "0.8.7": "2011-11-05T20:47:48.670Z" + }, + "author": { + "name": "Guillermo Rauch", + "email": "guillermo@learnboost.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/LearnBoost/socket.io-client.git" + }, + "versions": { + "0.7.0": "http://registry.npmjs.org/socket.io-client/0.7.0", + "0.7.1": "http://registry.npmjs.org/socket.io-client/0.7.1", + "0.7.2": "http://registry.npmjs.org/socket.io-client/0.7.2", + "0.7.3": "http://registry.npmjs.org/socket.io-client/0.7.3", + "0.7.4": "http://registry.npmjs.org/socket.io-client/0.7.4", + "0.7.5": "http://registry.npmjs.org/socket.io-client/0.7.5", + "0.7.9": "http://registry.npmjs.org/socket.io-client/0.7.9", + "0.7.10": "http://registry.npmjs.org/socket.io-client/0.7.10", + "0.7.11": "http://registry.npmjs.org/socket.io-client/0.7.11", + "0.8.0": "http://registry.npmjs.org/socket.io-client/0.8.0", + "0.8.1": "http://registry.npmjs.org/socket.io-client/0.8.1", + "0.8.2": "http://registry.npmjs.org/socket.io-client/0.8.2", + "0.8.3": "http://registry.npmjs.org/socket.io-client/0.8.3", + "0.8.4": "http://registry.npmjs.org/socket.io-client/0.8.4", + "0.8.5": "http://registry.npmjs.org/socket.io-client/0.8.5", + "0.8.6": "http://registry.npmjs.org/socket.io-client/0.8.6", + "0.8.7": "http://registry.npmjs.org/socket.io-client/0.8.7" + }, + "dist": { + "0.7.0": { + "shasum": "d3b33a70c2a72f0dbb2dca511c364d3d36728cfa", + "tarball": "http://registry.npmjs.org/socket.io-client/-/socket.io-client-0.7.0.tgz" + }, + "0.7.1": { + "shasum": "0017aee9bdd644224daba5961224ef621a1840f4", + "tarball": "http://registry.npmjs.org/socket.io-client/-/socket.io-client-0.7.1.tgz" + }, + "0.7.2": { + "shasum": "8db4e1dbb62a4dda02b66fe92d35387701c3bdcc", + "tarball": "http://registry.npmjs.org/socket.io-client/-/socket.io-client-0.7.2.tgz" + }, + "0.7.3": { + "shasum": "690c42c6de78a8cf3c619e7e2d2e4c3f609c8733", + "tarball": "http://registry.npmjs.org/socket.io-client/-/socket.io-client-0.7.3.tgz" + }, + "0.7.4": { + "shasum": "0d6c3865f9960cc0f5c03e27414e7969be717f7c", + "tarball": "http://registry.npmjs.org/socket.io-client/-/socket.io-client-0.7.4.tgz" + }, + "0.7.5": { + "shasum": "b3b2420088016ddced1ff20c3bc999272ba6b1bf", + "tarball": "http://registry.npmjs.org/socket.io-client/-/socket.io-client-0.7.5.tgz" + }, + "0.7.9": { + "shasum": "770408324905d7289ec0e92e7ca2ea6f71806292", + "tarball": "http://registry.npmjs.org/socket.io-client/-/socket.io-client-0.7.9.tgz" + }, + "0.7.10": { + "shasum": "ce9720e511cde60e5d0addb198efc21d0c04e4ac", + "tarball": "http://registry.npmjs.org/socket.io-client/-/socket.io-client-0.7.10.tgz" + }, + "0.7.11": { + "shasum": "3a33dad620e7d65dbaf3dfafc81fdb690828cf73", + "tarball": "http://registry.npmjs.org/socket.io-client/-/socket.io-client-0.7.11.tgz" + }, + "0.8.0": { + "shasum": "164c34ec8b93ba3ccd6c39b4dc706a868f828d41", + "tarball": "http://registry.npmjs.org/socket.io-client/-/socket.io-client-0.8.0.tgz" + }, + "0.8.1": { + "shasum": "0c429f47f8f5aaede19ed3e9ee2387f1851e0aec", + "tarball": "http://registry.npmjs.org/socket.io-client/-/socket.io-client-0.8.1.tgz" + }, + "0.8.2": { + "shasum": "613a8d9348fedc3eb148cd88c9d83526455c1a41", + "tarball": "http://registry.npmjs.org/socket.io-client/-/socket.io-client-0.8.2.tgz" + }, + "0.8.3": { + "shasum": "ddce56873071864b42e21c4ae2258722b0f42c44", + "tarball": "http://registry.npmjs.org/socket.io-client/-/socket.io-client-0.8.3.tgz" + }, + "0.8.4": { + "shasum": "efaa12ee5ad2e605e930b5ae13dd42678a43ba92", + "tarball": "http://registry.npmjs.org/socket.io-client/-/socket.io-client-0.8.4.tgz" + }, + "0.8.5": { + "shasum": "39145a661cbc6f258c34b23bab7d0b4bea8b737e", + "tarball": "http://registry.npmjs.org/socket.io-client/-/socket.io-client-0.8.5.tgz" + }, + "0.8.6": { + "shasum": "58b603d3eebfa6ae4220720ce71eddc95eb6d010", + "tarball": "http://registry.npmjs.org/socket.io-client/-/socket.io-client-0.8.6.tgz" + }, + "0.8.7": { + "shasum": "61c5953acbefebcd45dd47d0c8b1ad8a5bf86e1b", + "tarball": "http://registry.npmjs.org/socket.io-client/-/socket.io-client-0.8.7.tgz" + } + }, + "keywords": [ + "websocket", + "socket", + "realtime", + "socket.io", + "comet", + "ajax" + ], + "url": "http://registry.npmjs.org/socket.io-client/" + }, + "socket.io-cluster": { + "name": "socket.io-cluster", + "description": "Scalable Socket.IO", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "taras.kunch", + "email": "taras.kunch@gmail.com" + } + ], + "time": { + "modified": "2011-05-21T22:11:09.145Z", + "created": "2011-05-21T08:03:19.880Z", + "0.1.0": "2011-05-21T08:03:20.657Z", + "0.1.1": "2011-05-21T22:11:09.145Z" + }, + "author": { + "name": "Taras Kunch", + "email": "taras.kunch@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/socket.io-cluster/0.1.0", + "0.1.1": "http://registry.npmjs.org/socket.io-cluster/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "dbbba85d75ed1df383c840593ec8809bc6e5c5bd", + "tarball": "http://registry.npmjs.org/socket.io-cluster/-/socket.io-cluster-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "19973ae96d032ee27890e2c660353b1fec1f2e48", + "tarball": "http://registry.npmjs.org/socket.io-cluster/-/socket.io-cluster-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/socket.io-cluster/" + }, + "socket.io-connect": { + "name": "socket.io-connect", + "description": "Socket.IO middleware for Connect. (Or use Connect middleware from Socket.IO)", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "bnoguchi", + "email": "brian.noguchi@gmail.com" + } + ], + "author": { + "name": "Brian Noguchi", + "email": "brian.noguchi@gmail.com", + "url": "https://github.com/bnoguchi/" + }, + "repository": { + "type": "git", + "url": "git://github.com/bnoguchi/Socket.IO-connect.git" + }, + "time": { + "modified": "2011-07-01T18:19:56.753Z", + "created": "2011-01-11T02:59:31.493Z", + "0.1.0": "2011-01-11T02:59:31.493Z", + "0.2.0": "2011-01-11T02:59:31.493Z", + "0.2.1": "2011-06-07T19:57:26.190Z", + "0.2.2": "2011-06-07T20:12:25.316Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/socket.io-connect/0.1.0", + "0.2.0": "http://registry.npmjs.org/socket.io-connect/0.2.0", + "0.2.1": "http://registry.npmjs.org/socket.io-connect/0.2.1", + "0.2.2": "http://registry.npmjs.org/socket.io-connect/0.2.2" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/socket.io-connect/-/socket.io-connect-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "2ac252e69366b2fd1a04c6201a85806789163641", + "tarball": "http://registry.npmjs.org/socket.io-connect/-/socket.io-connect-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "9e3693033294956ce97c8599b7a0ccd7bff8e67d", + "tarball": "http://registry.npmjs.org/socket.io-connect/-/socket.io-connect-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "dd46072d429bab905752820b9613c53c6736d12c", + "tarball": "http://registry.npmjs.org/socket.io-connect/-/socket.io-connect-0.2.2.tgz" + } + }, + "keywords": [ + "node", + "connect", + "socket.io", + "middleware" + ], + "url": "http://registry.npmjs.org/socket.io-connect/" + }, + "socket.io-context": { + "name": "socket.io-context", + "description": "socket.io updatable shared context", + "dist-tags": { + "latest": "0.9.22" + }, + "maintainers": [ + { + "name": "dvv", + "email": "dronnikov@gmail.com" + } + ], + "time": { + "modified": "2011-07-02T15:17:44.326Z", + "created": "2011-06-12T08:50:07.991Z", + "0.9.8": "2011-06-12T08:50:12.101Z", + "0.9.9": "2011-06-12T20:02:24.947Z", + "0.9.11": "2011-06-23T06:18:40.101Z", + "0.9.12": "2011-06-30T16:37:13.605Z", + "0.9.20": "2011-06-30T18:45:43.566Z", + "0.9.21": "2011-07-01T06:57:20.713Z", + "0.9.22": "2011-07-02T15:17:44.326Z" + }, + "author": { + "name": "Vladimir Dronnikov", + "email": "dronnikov@gmail.com" + }, + "versions": { + "0.9.8": "http://registry.npmjs.org/socket.io-context/0.9.8", + "0.9.9": "http://registry.npmjs.org/socket.io-context/0.9.9", + "0.9.11": "http://registry.npmjs.org/socket.io-context/0.9.11", + "0.9.12": "http://registry.npmjs.org/socket.io-context/0.9.12", + "0.9.20": "http://registry.npmjs.org/socket.io-context/0.9.20", + "0.9.21": "http://registry.npmjs.org/socket.io-context/0.9.21", + "0.9.22": "http://registry.npmjs.org/socket.io-context/0.9.22" + }, + "dist": { + "0.9.8": { + "shasum": "14f891d508589a5873821db8fff4b8c103d9f139", + "tarball": "http://registry.npmjs.org/socket.io-context/-/socket.io-context-0.9.8.tgz" + }, + "0.9.9": { + "shasum": "778d14b7704f1f4e015e59bc48b87825d76b810e", + "tarball": "http://registry.npmjs.org/socket.io-context/-/socket.io-context-0.9.9.tgz" + }, + "0.9.11": { + "shasum": "4983fac4a1423527c52e6c06d465fbfb498067d9", + "tarball": "http://registry.npmjs.org/socket.io-context/-/socket.io-context-0.9.11.tgz" + }, + "0.9.12": { + "shasum": "5b31f841a86dd7695f7574999737e97a45f98c89", + "tarball": "http://registry.npmjs.org/socket.io-context/-/socket.io-context-0.9.12.tgz" + }, + "0.9.20": { + "shasum": "4d676246fc152403ad80fe29240c5b7f85503869", + "tarball": "http://registry.npmjs.org/socket.io-context/-/socket.io-context-0.9.20.tgz" + }, + "0.9.21": { + "shasum": "b87091a4de7cadded90e331a2631214e4631bac9", + "tarball": "http://registry.npmjs.org/socket.io-context/-/socket.io-context-0.9.21.tgz" + }, + "0.9.22": { + "shasum": "7af04d5eee92e00ed39c5c5f578918e0a721e375", + "tarball": "http://registry.npmjs.org/socket.io-context/-/socket.io-context-0.9.22.tgz" + } + }, + "keywords": [ + "websocket", + "socket.io", + "json-rpc", + "bidirectional", + "live" + ], + "url": "http://registry.npmjs.org/socket.io-context/" + }, + "socket.io-juggernaut": { + "name": "socket.io-juggernaut", + "description": "Sockets for the rest of us.", + "dist-tags": { + "latest": "0.5.2" + }, + "maintainers": [ + { + "name": "maccman", + "email": "maccman@gmail.com" + } + ], + "author": { + "name": "LearnBoost" + }, + "repository": { + "type": "git", + "url": "http://github.com/maccman/Socket.IO-node.git" + }, + "versions": { + "0.5.2": "http://registry.npmjs.org/socket.io-juggernaut/0.5.2" + }, + "dist": { + "0.5.2": { + "tarball": "http://packages:5984/socket.io-juggernaut/-/socket.io-juggernaut-0.5.2.tgz" + } + }, + "url": "http://registry.npmjs.org/socket.io-juggernaut/" + }, + "socket.io-sessions": { + "name": "socket.io-sessions", + "description": "Use your sessions from Connect, Express and others with Socket.IO", + "dist-tags": { + "latest": "0.6.1" + }, + "maintainers": [ + { + "name": "aviddiviner", + "email": "aviddiviner@gmail.com" + } + ], + "time": { + "modified": "2011-06-24T20:23:34.674Z", + "created": "2011-06-07T20:48:28.078Z", + "0.4.1": "2011-06-07T20:48:29.771Z", + "0.5.4": "2011-06-10T00:12:05.153Z", + "0.5.5": "2011-06-10T00:39:47.653Z", + "0.6.0": "2011-06-24T00:08:59.134Z", + "0.6.1": "2011-06-24T20:23:34.674Z" + }, + "author": { + "name": "David Irvine", + "email": "aviddiviner@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/aviddiviner/Socket.IO-sessions.git" + }, + "versions": { + "0.4.1": "http://registry.npmjs.org/socket.io-sessions/0.4.1", + "0.5.4": "http://registry.npmjs.org/socket.io-sessions/0.5.4", + "0.5.5": "http://registry.npmjs.org/socket.io-sessions/0.5.5", + "0.6.0": "http://registry.npmjs.org/socket.io-sessions/0.6.0", + "0.6.1": "http://registry.npmjs.org/socket.io-sessions/0.6.1" + }, + "dist": { + "0.4.1": { + "shasum": "3882db7b486f00209307f57297860e9d7895dcc3", + "tarball": "http://registry.npmjs.org/socket.io-sessions/-/socket.io-sessions-0.4.1.tgz" + }, + "0.5.4": { + "shasum": "aa828baad21d5cb2a405ebb81bea6279cee45823", + "tarball": "http://registry.npmjs.org/socket.io-sessions/-/socket.io-sessions-0.5.4.tgz" + }, + "0.5.5": { + "shasum": "efcfb41517b638a51d2afd59fce0f86ab357e7a0", + "tarball": "http://registry.npmjs.org/socket.io-sessions/-/socket.io-sessions-0.5.5.tgz" + }, + "0.6.0": { + "shasum": "34763d2059bb30926f57f7063f22ccdb51f98098", + "tarball": "http://registry.npmjs.org/socket.io-sessions/-/socket.io-sessions-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "2cb30b2cb1e20ddbbd0ee72c29a7ac523d7b2d9e", + "tarball": "http://registry.npmjs.org/socket.io-sessions/-/socket.io-sessions-0.6.1.tgz" + } + }, + "keywords": [ + "connect", + "express", + "socket.io", + "session", + "sessions" + ], + "url": "http://registry.npmjs.org/socket.io-sessions/" + }, + "socket.io-zero": { + "name": "socket.io-zero", + "description": "Hybrid 0MQ/Redis Store for Socket.IO", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "dshaw", + "email": "dshaw@dshaw.com" + } + ], + "time": { + "modified": "2011-10-30T07:40:28.506Z", + "created": "2011-10-30T07:40:26.671Z", + "0.1.0": "2011-10-30T07:40:28.506Z" + }, + "author": { + "name": "Daniel D. Shaw", + "email": "dshaw@dshaw.com", + "url": "http://dshaw.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dshaw/socket.io-zero.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/socket.io-zero/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "40e484fe84af22d9cdcd65b6783df45bbf777022", + "tarball": "http://registry.npmjs.org/socket.io-zero/-/socket.io-zero-0.1.0.tgz" + } + }, + "keywords": [ + "socket.io", + "store", + "0mq", + "zmq", + "zeromq", + "redis" + ], + "url": "http://registry.npmjs.org/socket.io-zero/" + }, + "socketstream": { + "name": "socketstream", + "description": "A phenomenally fast real-time web framework for Node.js", + "dist-tags": { + "latest": "0.2.7" + }, + "maintainers": [ + { + "name": "socketstream", + "email": "info@socketstream.org" + } + ], + "time": { + "modified": "2011-11-26T12:43:46.359Z", + "created": "2011-06-23T15:50:01.329Z", + "0.1.00": "2011-06-23T15:50:02.005Z", + "0.1.01": "2011-06-24T11:08:33.446Z", + "0.1.2": "2011-07-01T05:02:17.292Z", + "0.1.3": "2011-07-05T17:22:55.941Z", + "0.1.4": "2011-07-06T21:31:11.613Z", + "0.1.5": "2011-07-12T18:19:01.884Z", + "0.1.6": "2011-07-15T12:45:26.746Z", + "0.1.7": "2011-07-19T14:44:14.122Z", + "0.1.8": "2011-07-24T12:00:50.346Z", + "0.2.0": "2011-08-31T22:17:22.298Z", + "0.2.1": "2011-09-04T18:32:09.129Z", + "0.2.2": "2011-09-19T15:51:39.273Z", + "0.2.3": "2011-09-28T12:34:29.817Z", + "0.2.4": "2011-10-06T15:55:48.611Z", + "0.2.5": "2011-11-04T01:58:16.954Z", + "0.2.6": "2011-11-25T13:49:42.060Z", + "0.2.7": "2011-11-26T12:43:46.359Z" + }, + "author": { + "name": "Owen Barnes", + "email": "owen@socketstream.org" + }, + "versions": { + "0.1.00": "http://registry.npmjs.org/socketstream/0.1.00", + "0.1.01": "http://registry.npmjs.org/socketstream/0.1.01", + "0.1.2": "http://registry.npmjs.org/socketstream/0.1.2", + "0.1.3": "http://registry.npmjs.org/socketstream/0.1.3", + "0.1.4": "http://registry.npmjs.org/socketstream/0.1.4", + "0.1.5": "http://registry.npmjs.org/socketstream/0.1.5", + "0.1.6": "http://registry.npmjs.org/socketstream/0.1.6", + "0.1.7": "http://registry.npmjs.org/socketstream/0.1.7", + "0.1.8": "http://registry.npmjs.org/socketstream/0.1.8", + "0.2.0": "http://registry.npmjs.org/socketstream/0.2.0", + "0.2.1": "http://registry.npmjs.org/socketstream/0.2.1", + "0.2.2": "http://registry.npmjs.org/socketstream/0.2.2", + "0.2.3": "http://registry.npmjs.org/socketstream/0.2.3", + "0.2.4": "http://registry.npmjs.org/socketstream/0.2.4", + "0.2.5": "http://registry.npmjs.org/socketstream/0.2.5", + "0.2.6": "http://registry.npmjs.org/socketstream/0.2.6", + "0.2.7": "http://registry.npmjs.org/socketstream/0.2.7" + }, + "dist": { + "0.1.00": { + "shasum": "44c05a002b79a6a1e0c1068162cfd1e39022312b", + "tarball": "http://registry.npmjs.org/socketstream/-/socketstream-0.1.00.tgz" + }, + "0.1.01": { + "shasum": "a26cdf533bb997ccdb97af6c4e8b92a90d6db409", + "tarball": "http://registry.npmjs.org/socketstream/-/socketstream-0.1.01.tgz" + }, + "0.1.2": { + "shasum": "6f6a9bf0ce4316d805eddecbae38ad9a33fd3d6b", + "tarball": "http://registry.npmjs.org/socketstream/-/socketstream-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "cf9d4f36bfbff7e7997d897ee5a63a312bfe6cfe", + "tarball": "http://registry.npmjs.org/socketstream/-/socketstream-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "2ced3959110e970e273da68499605326797b5358", + "tarball": "http://registry.npmjs.org/socketstream/-/socketstream-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "0eeafe0517d1b457ba48ec017284b10fb5c8d7bf", + "tarball": "http://registry.npmjs.org/socketstream/-/socketstream-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "6aa1a9904cc43b5e390a1b5013a511d328d1b96c", + "tarball": "http://registry.npmjs.org/socketstream/-/socketstream-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "378315c31a39b5ed24dff745461c54030a515719", + "tarball": "http://registry.npmjs.org/socketstream/-/socketstream-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "62740bec659c885df3a6ec087b31aa2279e0a3af", + "tarball": "http://registry.npmjs.org/socketstream/-/socketstream-0.1.8.tgz" + }, + "0.2.0": { + "shasum": "e4c1a5025af7e1aeaf825fcf657bf2eedec3fbff", + "tarball": "http://registry.npmjs.org/socketstream/-/socketstream-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "74d5f7ead2eac9fdc3bf1a0dafba19ae7533b938", + "tarball": "http://registry.npmjs.org/socketstream/-/socketstream-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "c0a5556435b99577ac608c0542d9e5a8f8fd2157", + "tarball": "http://registry.npmjs.org/socketstream/-/socketstream-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "663b55fcdfe86addd5d8c498aaf4574e19dfdd55", + "tarball": "http://registry.npmjs.org/socketstream/-/socketstream-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "8ea2d1aeeed4794751b497356be18e77062c50d8", + "tarball": "http://registry.npmjs.org/socketstream/-/socketstream-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "fac579dec6df4b292c904f7572e32afdc6aff582", + "tarball": "http://registry.npmjs.org/socketstream/-/socketstream-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "0fac461b0775437a95e0da48fd9a0b7d796bcf88", + "tarball": "http://registry.npmjs.org/socketstream/-/socketstream-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "a0f01e49253aaf0ac9b240a23ae361696afc61a6", + "tarball": "http://registry.npmjs.org/socketstream/-/socketstream-0.2.7.tgz" + } + }, + "url": "http://registry.npmjs.org/socketstream/" + }, + "socketstream-resource": { + "name": "socketstream-resource", + "description": "A library to simplify adding resource wrappers around MongoDB collections", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "paulbjensen", + "email": "paulbjensen@gmail.com" + } + ], + "time": { + "modified": "2011-11-05T14:59:10.348Z", + "created": "2011-11-03T16:25:09.121Z", + "0.0.1": "2011-11-03T16:25:10.810Z", + "0.0.2": "2011-11-03T19:42:44.199Z", + "0.0.3": "2011-11-05T11:26:10.906Z", + "0.0.4": "2011-11-05T14:59:10.348Z" + }, + "author": { + "name": "Paul Jensen", + "email": "paulbjensen@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/paulbjensen/socketstream-resource.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/socketstream-resource/0.0.1", + "0.0.2": "http://registry.npmjs.org/socketstream-resource/0.0.2", + "0.0.3": "http://registry.npmjs.org/socketstream-resource/0.0.3", + "0.0.4": "http://registry.npmjs.org/socketstream-resource/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "1cda9659ae6953f11333f223d4512ca0728a9fd3", + "tarball": "http://registry.npmjs.org/socketstream-resource/-/socketstream-resource-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f1c07cbe1ea238f19b75e01c84c4ac2e737bc940", + "tarball": "http://registry.npmjs.org/socketstream-resource/-/socketstream-resource-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "0e68f3e2188214fc125c7d185e039ea67be583ca", + "tarball": "http://registry.npmjs.org/socketstream-resource/-/socketstream-resource-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "09bc06bf38e8eb0ab3b606c3b5d5cda7fbc63cb4", + "tarball": "http://registry.npmjs.org/socketstream-resource/-/socketstream-resource-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/socketstream-resource/" + }, + "sockjs": { + "name": "sockjs", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "majek", + "email": "majek04@gmail.com" + } + ], + "time": { + "modified": "2011-12-06T16:16:37.096Z", + "created": "2011-08-11T16:17:37.350Z", + "0.0.0-rc1": "2011-08-11T16:17:38.568Z", + "0.0.0-rc2": "2011-08-11T16:38:43.935Z", + "0.0.1": "2011-08-17T15:45:15.654Z", + "0.0.2": "2011-08-19T17:07:50.313Z", + "0.0.3": "2011-08-31T14:50:05.360Z", + "0.0.4": "2011-09-07T14:28:14.818Z", + "0.0.5": "2011-10-17T10:39:38.312Z", + "0.1.0": "2011-10-26T10:57:05.699Z", + "0.1.1": "2011-11-18T16:31:57.450Z", + "0.1.2": "2011-12-06T16:16:37.096Z" + }, + "author": { + "name": "Marek Majkowski" + }, + "repository": { + "type": "git", + "url": "git://github.com/sockjs/sockjs-node.git" + }, + "versions": { + "0.0.0-rc1": "http://registry.npmjs.org/sockjs/0.0.0-rc1", + "0.0.0-rc2": "http://registry.npmjs.org/sockjs/0.0.0-rc2", + "0.0.1": "http://registry.npmjs.org/sockjs/0.0.1", + "0.0.2": "http://registry.npmjs.org/sockjs/0.0.2", + "0.0.3": "http://registry.npmjs.org/sockjs/0.0.3", + "0.0.4": "http://registry.npmjs.org/sockjs/0.0.4", + "0.0.5": "http://registry.npmjs.org/sockjs/0.0.5", + "0.1.0": "http://registry.npmjs.org/sockjs/0.1.0", + "0.1.1": "http://registry.npmjs.org/sockjs/0.1.1", + "0.1.2": "http://registry.npmjs.org/sockjs/0.1.2" + }, + "dist": { + "0.0.0-rc1": { + "shasum": "dd7a107308d7e8b6bec9b4b32d4692cbbbef33ea", + "tarball": "http://registry.npmjs.org/sockjs/-/sockjs-0.0.0-rc1.tgz" + }, + "0.0.0-rc2": { + "shasum": "60c9c9947c7800d02e943b0028fba7c18af47d97", + "tarball": "http://registry.npmjs.org/sockjs/-/sockjs-0.0.0-rc2.tgz" + }, + "0.0.1": { + "shasum": "af7966e2290d0279da621e43d1a5da8453c242f7", + "tarball": "http://registry.npmjs.org/sockjs/-/sockjs-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "364f31f416c66abe5e1c619e942439315610584c", + "tarball": "http://registry.npmjs.org/sockjs/-/sockjs-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "ad5da88575cb1851d3992271889b4902f91035d1", + "tarball": "http://registry.npmjs.org/sockjs/-/sockjs-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "f3016cccd74e475180467a7c8a026561e8aec38b", + "tarball": "http://registry.npmjs.org/sockjs/-/sockjs-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "c903366a8b8ac705a2a4623dd4ee015bf131e5a2", + "tarball": "http://registry.npmjs.org/sockjs/-/sockjs-0.0.5.tgz" + }, + "0.1.0": { + "shasum": "e127adf7a3e11395c0b3f8fda1b2b848d6188394", + "tarball": "http://registry.npmjs.org/sockjs/-/sockjs-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "5e719cc4991010b4d682f05a5aaac8b437d4029d", + "tarball": "http://registry.npmjs.org/sockjs/-/sockjs-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "41c358eec0823fbde79b3515adb568df982f590a", + "tarball": "http://registry.npmjs.org/sockjs/-/sockjs-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/sockjs/" + }, + "socksified": { + "name": "socksified", + "description": "HTTP SOCKS5 support for node.js", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "vially", + "email": "vially.ichb@gmail.com" + } + ], + "time": { + "modified": "2011-05-31T18:09:17.029Z", + "created": "2011-05-31T18:09:16.341Z", + "0.0.1": "2011-05-31T18:09:17.029Z" + }, + "author": { + "name": "Valentin-Costel Haloiu", + "email": "vially.ichb@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/vially/node-socksified.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/socksified/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "91d9804a2ef0010bf83f266ada7f6880c99e6761", + "tarball": "http://registry.npmjs.org/socksified/-/socksified-0.0.1.tgz" + } + }, + "keywords": [ + "socks" + ], + "url": "http://registry.npmjs.org/socksified/" + }, + "soda": { + "name": "soda", + "description": "Selenium RC Node Adapter (with Sauce Labs support)", + "dist-tags": { + "latest": "0.2.5" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "author": { + "name": "TJ Holowaychuk", + "email": "tj@learnboost.com" + }, + "time": { + "modified": "2011-12-03T20:23:26.157Z", + "created": "2011-02-03T22:40:25.354Z", + "0.0.1": "2011-02-03T22:40:25.354Z", + "0.0.2": "2011-02-03T22:40:25.354Z", + "0.1.0": "2011-02-03T22:40:25.354Z", + "0.2.0": "2011-02-03T22:40:25.354Z", + "0.2.1": "2011-02-03T22:40:25.354Z", + "0.2.2": "2011-02-25T19:37:04.500Z", + "0.2.3": "2011-03-28T19:30:50.148Z", + "0.2.4": "2011-05-27T15:43:19.047Z", + "0.2.5": "2011-12-03T20:23:26.157Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/LearnBoost/soda.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/soda/0.0.1", + "0.0.2": "http://registry.npmjs.org/soda/0.0.2", + "0.1.0": "http://registry.npmjs.org/soda/0.1.0", + "0.2.0": "http://registry.npmjs.org/soda/0.2.0", + "0.2.1": "http://registry.npmjs.org/soda/0.2.1", + "0.2.2": "http://registry.npmjs.org/soda/0.2.2", + "0.2.3": "http://registry.npmjs.org/soda/0.2.3", + "0.2.4": "http://registry.npmjs.org/soda/0.2.4", + "0.2.5": "http://registry.npmjs.org/soda/0.2.5" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/soda/-/soda-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/soda/-/soda-0.0.2.tgz" + }, + "0.1.0": { + "tarball": "http://registry.npmjs.org/soda/-/soda-0.1.0.tgz" + }, + "0.2.0": { + "tarball": "http://registry.npmjs.org/soda/-/soda-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "80c7a25f4845d1ac4daaa2add3e814c57fb2743a", + "tarball": "http://registry.npmjs.org/soda/-/soda-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "9baba8bd5ccdf618031d62aaa34b70aca79eede6", + "tarball": "http://registry.npmjs.org/soda/-/soda-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "1c2850dda38e53964fc547dfffa01fcfeb1a2590", + "tarball": "http://registry.npmjs.org/soda/-/soda-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "589d1da5aaad8802e20ef4b0ad55e9240f7b8ca1", + "tarball": "http://registry.npmjs.org/soda/-/soda-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "a8b10f142d88a2c14cf20b2af9790d10a64d743a", + "tarball": "http://registry.npmjs.org/soda/-/soda-0.2.5.tgz" + } + }, + "keywords": [ + "selenium", + "saucelabs", + "testing", + "test", + "tests" + ], + "url": "http://registry.npmjs.org/soda/" + }, + "soda-runner": { + "name": "soda-runner", + "description": "Runner for sodaJS", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "damartin", + "email": "doug.martin@pollenware.com" + } + ], + "time": { + "modified": "2011-11-18T07:49:36.382Z", + "created": "2011-01-11T00:13:48.759Z", + "0.0.1": "2011-01-11T00:13:49.004Z", + "0.0.2": "2011-06-29T20:32:09.625Z", + "0.0.3": "2011-11-18T07:49:36.382Z" + }, + "author": { + "name": "Doug Martin doug@dougamartin.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/soda-runner/0.0.1", + "0.0.2": "http://registry.npmjs.org/soda-runner/0.0.2", + "0.0.3": "http://registry.npmjs.org/soda-runner/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "cf17003fa7db431cc7cff57b366282a1a535b5d1", + "tarball": "http://registry.npmjs.org/soda-runner/-/soda-runner-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "21ee3a18d75a287ec20d9cd4797153e416b91970", + "tarball": "http://registry.npmjs.org/soda-runner/-/soda-runner-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "b79b15bd64357ff6487ad8d5000c0dd6b8fd8842", + "tarball": "http://registry.npmjs.org/soda-runner/-/soda-runner-0.0.3.tgz" + } + }, + "keywords": [ + "selenium", + "soda", + "testing", + "test", + "tests" + ], + "url": "http://registry.npmjs.org/soda-runner/" + }, + "sodn": { + "name": "sodn", + "description": "Self-organizing dnode network", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "time": { + "modified": "2011-06-27T20:34:41.737Z", + "created": "2011-06-27T20:34:41.003Z", + "0.0.0": "2011-06-27T20:34:41.737Z" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/sodn/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "e66bbbe7df261755d9e358a6efe93615d0261f30", + "tarball": "http://registry.npmjs.org/sodn/-/sodn-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/sodn/" + }, + "sofa": { + "name": "sofa", + "description": "Simple JavaScript library wrapper for the CouchDB API", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "cschram", + "email": "coreyschram@gmail.com" + } + ], + "time": { + "modified": "2011-07-20T00:37:12.122Z", + "created": "2011-06-20T17:36:47.103Z", + "0.1.0": "2011-06-20T17:36:47.669Z", + "0.1.1": "2011-07-20T00:30:19.234Z", + "0.1.2": "2011-07-20T00:37:12.122Z" + }, + "author": { + "name": "Corey Schram", + "email": "coreyschram@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Abjorn/SofaJS.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/sofa/0.1.0", + "0.1.1": "http://registry.npmjs.org/sofa/0.1.1", + "0.1.2": "http://registry.npmjs.org/sofa/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "09d7e02640a13eb138a982c8a628b1ceacc5c86c", + "tarball": "http://registry.npmjs.org/sofa/-/sofa-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "4ef248f681a089b0771af5c36f5e1f440d88469d", + "tarball": "http://registry.npmjs.org/sofa/-/sofa-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "1433f95c1b5c2ca5c8ab28d6a2e7c12d164dea9e", + "tarball": "http://registry.npmjs.org/sofa/-/sofa-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/sofa/" + }, + "solder": { + "name": "solder", + "description": "Combines and minifies JavaScript and CSS at runtime and build time", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "brett", + "email": "brettstimmerman@gmail.com" + } + ], + "author": { + "name": "Brett Stimmerman", + "email": "brettstimmerman@gmail.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/brettstimmerman/solder.git" + }, + "time": { + "modified": "2011-02-21T16:01:13.947Z", + "created": "2011-01-31T17:46:11.433Z", + "0.0.1": "2011-01-31T17:46:11.433Z", + "0.0.2": "2011-01-31T17:46:11.433Z", + "0.0.3": "2011-02-21T16:01:13.947Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/solder/0.0.1", + "0.0.2": "http://registry.npmjs.org/solder/0.0.2", + "0.0.3": "http://registry.npmjs.org/solder/0.0.3" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/solder/-/solder-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "ab57729ea75776d251f7ddec4ac03e7ee89fad67", + "tarball": "http://registry.npmjs.org/solder/-/solder-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "adbedc9005e4b1c199051adc6d957a115df2b745", + "tarball": "http://registry.npmjs.org/solder/-/solder-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/solder/" + }, + "solr": { + "name": "solr", + "description": "A low-level Solr client", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "gsf", + "email": "gsf747@gmail.com" + } + ], + "time": { + "modified": "2011-12-13T01:10:24.460Z", + "created": "2011-01-24T15:36:17.206Z", + "0.1.0": "2011-01-24T15:36:17.258Z", + "0.1.1": "2011-01-24T17:54:09.187Z", + "0.1.3": "2011-03-07T18:17:18.945Z", + "0.1.4": "2011-03-31T23:19:11.948Z", + "0.1.5": "2011-08-24T16:41:18.496Z", + "0.1.6": "2011-12-11T16:14:33.942Z", + "0.2.0": "2011-12-13T01:10:24.460Z" + }, + "author": { + "name": "Gabriel Farrell", + "email": "gsf747@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/gsf/node-solr.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/solr/0.1.0", + "0.1.1": "http://registry.npmjs.org/solr/0.1.1", + "0.1.3": "http://registry.npmjs.org/solr/0.1.3", + "0.1.4": "http://registry.npmjs.org/solr/0.1.4", + "0.1.5": "http://registry.npmjs.org/solr/0.1.5", + "0.1.6": "http://registry.npmjs.org/solr/0.1.6", + "0.2.0": "http://registry.npmjs.org/solr/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "a3cfe26e1a5f0a5783c2274a9554b9bd3c01badf", + "tarball": "http://registry.npmjs.org/solr/-/solr-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "5f62c3d351e1fe83826e30bcaaf94d1996b8c53a", + "tarball": "http://registry.npmjs.org/solr/-/solr-0.1.1.tgz" + }, + "0.1.3": { + "shasum": "bf04e9c8684a177107a23e929fc390c0e91de881", + "tarball": "http://registry.npmjs.org/solr/-/solr-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "eeefbbf1ba22801bfceb49b722558fe25872f779", + "tarball": "http://registry.npmjs.org/solr/-/solr-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "7292f6c0a0e2871061f629fada64161f915698b3", + "tarball": "http://registry.npmjs.org/solr/-/solr-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "55c977630c36e0239ec3a715b8ef6d12e2d91e59", + "tarball": "http://registry.npmjs.org/solr/-/solr-0.1.6.tgz" + }, + "0.2.0": { + "shasum": "f3116635dbc86327caaa4951e59fe09001fbd461", + "tarball": "http://registry.npmjs.org/solr/-/solr-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/solr/" + }, + "solr-client": { + "name": "solr-client", + "description": " A Solr client library for indexing, adding, deleting, committing, optimizing and searching documents within an Apache Solr installation (version>=3.2)", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "lbdremy", + "email": "remyloubradou@gmail.com" + } + ], + "time": { + "modified": "2011-12-13T15:00:24.201Z", + "created": "2011-08-05T20:37:05.143Z", + "0.0.1": "2011-08-05T20:37:06.444Z", + "0.0.2": "2011-09-06T16:42:27.119Z", + "0.0.3": "2011-09-09T12:29:34.785Z", + "0.0.4": "2011-09-28T17:35:44.647Z", + "0.0.41": "2011-10-07T17:07:01.905Z", + "0.0.5": "2011-12-05T12:27:41.473Z", + "0.0.6": "2011-12-13T15:00:24.201Z" + }, + "author": { + "name": "Remy Loubradou", + "email": "remy.loubradou@gmail.com", + "url": "https://twitter.com/#!/lbdremy" + }, + "repository": { + "type": "git", + "url": "git://github.com/lbdremy/solr-node-client.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/solr-client/0.0.1", + "0.0.2": "http://registry.npmjs.org/solr-client/0.0.2", + "0.0.3": "http://registry.npmjs.org/solr-client/0.0.3", + "0.0.4": "http://registry.npmjs.org/solr-client/0.0.4", + "0.0.41": "http://registry.npmjs.org/solr-client/0.0.41", + "0.0.5": "http://registry.npmjs.org/solr-client/0.0.5", + "0.0.6": "http://registry.npmjs.org/solr-client/0.0.6" + }, + "dist": { + "0.0.1": { + "shasum": "f711cfe46c88795fe9f1856e63801473c890fb19", + "tarball": "http://registry.npmjs.org/solr-client/-/solr-client-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "ed252b571db0ce453857dde8b973e27a9e94eddf", + "tarball": "http://registry.npmjs.org/solr-client/-/solr-client-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "a4d345cb945ccbefa2e1eb554de39374a21cb1f1", + "tarball": "http://registry.npmjs.org/solr-client/-/solr-client-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "30c2c99a7bc9f8c2a6e73f4d6c8f1e55b18a9d28", + "tarball": "http://registry.npmjs.org/solr-client/-/solr-client-0.0.4.tgz" + }, + "0.0.41": { + "shasum": "96225cb1aa3479571c0c3d9c8e9fe0d4f61ed7c5", + "tarball": "http://registry.npmjs.org/solr-client/-/solr-client-0.0.41.tgz" + }, + "0.0.5": { + "shasum": "f4bade91eeb2743f65b64590f56fae6e705ce052", + "tarball": "http://registry.npmjs.org/solr-client/-/solr-client-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "0f029bd8e7033d7bbeb8c018d7ed84e364584542", + "tarball": "http://registry.npmjs.org/solr-client/-/solr-client-0.0.6.tgz" + } + }, + "url": "http://registry.npmjs.org/solr-client/" + }, + "sones": { + "name": "sones", + "description": "Sones graphDB node client", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "macrauder", + "email": "t@m.de" + } + ], + "time": { + "modified": "2011-08-27T20:17:57.763Z", + "created": "2011-08-27T20:17:56.105Z", + "0.1.0": "2011-08-27T20:17:57.763Z" + }, + "author": { + "name": "Macrauder", + "email": "t@m.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/macrauder/sones-node.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/sones/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "9915b712d40121b1ba84727d1928407e4d64de8c", + "tarball": "http://registry.npmjs.org/sones/-/sones-0.1.0.tgz" + } + }, + "keywords": [ + "sones", + "graphDB" + ], + "url": "http://registry.npmjs.org/sones/" + }, + "song": { + "name": "song", + "description": "Sing songs with festival", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-05-08T17:51:59.124Z", + "created": "2011-05-08T06:04:36.985Z", + "0.0.1": "2011-05-08T06:04:37.524Z", + "0.0.2": "2011-05-08T06:14:07.002Z", + "0.0.3": "2011-05-08T17:51:59.124Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-song.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/song/0.0.1", + "0.0.2": "http://registry.npmjs.org/song/0.0.2", + "0.0.3": "http://registry.npmjs.org/song/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "1ac2c015bdcb979056be57523b68203206f1a799", + "tarball": "http://registry.npmjs.org/song/-/song-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c0c4e9603d2dad715f0285ef2e4501bcbd70e995", + "tarball": "http://registry.npmjs.org/song/-/song-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "ca47ab563ab19483152efe61a97ec17f367b38ad", + "tarball": "http://registry.npmjs.org/song/-/song-0.0.3.tgz" + } + }, + "keywords": [ + "festival", + "speech", + "synthesis", + "audio", + "sound", + "song" + ], + "url": "http://registry.npmjs.org/song/" + }, + "sooty": { + "name": "sooty", + "description": "Framework for writing Campfire bots", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "tombell", + "email": "tomb@tombell.org.uk" + } + ], + "time": { + "modified": "2011-10-23T18:33:37.927Z", + "created": "2011-09-25T14:14:34.043Z", + "0.0.1": "2011-09-25T14:14:35.773Z", + "0.0.2": "2011-10-23T18:33:37.927Z" + }, + "author": { + "name": "Tom Bell" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/sooty/0.0.1", + "0.0.2": "http://registry.npmjs.org/sooty/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "c0f069a12ae0ea5f10fdc05f2e84a270fbc8656e", + "tarball": "http://registry.npmjs.org/sooty/-/sooty-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "9424e2f6832451311af8934d55523fbe77af420d", + "tarball": "http://registry.npmjs.org/sooty/-/sooty-0.0.2.tgz" + } + }, + "keywords": [ + "campfire", + "chat", + "bot", + "framework" + ], + "url": "http://registry.npmjs.org/sooty/" + }, + "sorted": { + "name": "sorted", + "description": "sorted arrays", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-08-10T09:35:10.488Z", + "created": "2011-08-10T09:35:09.462Z", + "0.0.0": "2011-08-10T09:35:10.488Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-sorted.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/sorted/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "68687afffc1d2d639af2d3c4f7d871e3de87856c", + "tarball": "http://registry.npmjs.org/sorted/-/sorted-0.0.0.tgz" + } + }, + "keywords": [ + "sort", + "array", + "in-place", + "order" + ], + "url": "http://registry.npmjs.org/sorted/" + }, + "sortedlist": { + "name": "sortedlist", + "description": "sorted list", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "shinout", + "email": "shinout310@gmail.com" + } + ], + "time": { + "modified": "2011-11-18T12:53:29.779Z", + "created": "2011-10-28T08:10:43.860Z", + "0.0.1": "2011-10-28T08:10:47.328Z", + "0.1.0": "2011-11-18T12:53:29.779Z" + }, + "author": { + "name": "SHIN Suzuki", + "email": "shinout310@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/sortedlist/0.0.1", + "0.1.0": "http://registry.npmjs.org/sortedlist/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "2c8d7f2308c4838c11d8ae6a7c873692fcc1bb04", + "tarball": "http://registry.npmjs.org/sortedlist/-/sortedlist-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "acbc17ab891c0a829605535a9b93abc6019c2734", + "tarball": "http://registry.npmjs.org/sortedlist/-/sortedlist-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/sortedlist/" + }, + "sosumi": { + "name": "sosumi", + "description": "API for interacting with Find My iPhone Service in node", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "drudge", + "email": "drudge@conceited.net" + } + ], + "author": { + "name": "Nicholas Penree", + "email": "drudge@conceited.net", + "url": "http://penree.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/drudge/node-sosumi.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/sosumi/0.2.0", + "0.2.1": "http://registry.npmjs.org/sosumi/0.2.1", + "0.2.2": "http://registry.npmjs.org/sosumi/0.2.2" + }, + "dist": { + "0.2.0": { + "tarball": "http://packages:5984/sosumi/-/sosumi-0.2.0.tgz" + }, + "0.2.1": { + "tarball": "http://packages:5984/sosumi/-/sosumi-0.2.1.tgz" + }, + "0.2.2": { + "tarball": "http://packages:5984/sosumi/-/sosumi-0.2.2.tgz" + } + }, + "url": "http://registry.npmjs.org/sosumi/" + }, + "soundcloud": { + "name": "soundcloud", + "description": "SoundCloud API for Node.js", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "podviaznikov", + "email": "podviaznikov@gmail.com" + } + ], + "time": { + "modified": "2011-07-13T09:41:43.249Z", + "created": "2011-06-25T12:20:16.381Z", + "0.1.0": "2011-06-25T12:20:17.520Z", + "0.1.5": "2011-06-25T12:45:07.867Z", + "0.2.0": "2011-07-13T09:41:43.249Z" + }, + "author": { + "name": "Anton Podviaznikov", + "email": "podviaznikov@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/soundcloud/0.1.0", + "0.1.5": "http://registry.npmjs.org/soundcloud/0.1.5", + "0.2.0": "http://registry.npmjs.org/soundcloud/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "7022d30f6d5c1c50572ff2206214c82dc2cdd692", + "tarball": "http://registry.npmjs.org/soundcloud/-/soundcloud-0.1.0.tgz" + }, + "0.1.5": { + "shasum": "e8a9e2ba8f8c1231dfe624bc1f4e2c0134c3344f", + "tarball": "http://registry.npmjs.org/soundcloud/-/soundcloud-0.1.5.tgz" + }, + "0.2.0": { + "shasum": "0684279b4ed329742bc3070cfd311713d2e92225", + "tarball": "http://registry.npmjs.org/soundcloud/-/soundcloud-0.2.0.tgz" + } + }, + "keywords": [ + "soundcloud", + "wrapper", + "api", + "api-client", + "soundcloud.com" + ], + "url": "http://registry.npmjs.org/soundcloud/" + }, + "soupselect": { + "name": "soupselect", + "description": "Adds CSS selector support to htmlparser for scraping activities - port of soupselect (python)", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "harryf", + "email": "hfuecks@gmail.com" + } + ], + "author": { + "name": "Harry Fuecks", + "email": "hfuecks@gmail.com", + "url": "http://twitter.com/hfuecks" + }, + "repository": [ + { + "type": "git", + "url": "git://github.com/harryf/node-soupselect.git" + } + ], + "time": { + "modified": "2011-04-28T18:02:48.165Z", + "created": "2011-04-28T18:02:46.782Z", + "0.1.0": "2011-04-28T18:02:46.782Z", + "0.2.0": "2011-04-28T18:02:48.165Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/soupselect/0.1.0", + "0.2.0": "http://registry.npmjs.org/soupselect/0.2.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/soupselect/-/soupselect-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "ff7fe20305b68a39e88b8b88a3c6057bb0e3524f", + "tarball": "http://registry.npmjs.org/soupselect/-/soupselect-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/soupselect/" + }, + "source": { + "name": "source", + "description": "Grab all of the source files from a package", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-02-23T23:29:07.040Z", + "created": "2011-02-21T10:36:56.827Z", + "0.0.1": "2011-02-21T10:36:57.396Z", + "0.0.2": "2011-02-23T22:09:43.355Z", + "0.0.3": "2011-02-23T23:29:07.040Z" + }, + "author": { + "name": "James Halliday", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-source.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/source/0.0.1", + "0.0.2": "http://registry.npmjs.org/source/0.0.2", + "0.0.3": "http://registry.npmjs.org/source/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "6ec1c4e70670f60f98b7c15f1059a87d00b81cd8", + "tarball": "http://registry.npmjs.org/source/-/source-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "a4d24e9129e655113f75fe97fcd5911f9576a7fd", + "tarball": "http://registry.npmjs.org/source/-/source-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "040f00a0a3e2638147c01d3f28b7feb126d2eae9", + "tarball": "http://registry.npmjs.org/source/-/source-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/source/" + }, + "source-map": { + "name": "source-map", + "description": "Generates and consumes source maps", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "mozilla-devtools", + "email": "mozilla-developer-tools@googlegroups.com" + }, + { + "name": "mozilla", + "email": "dherman@mozilla.com" + } + ], + "time": { + "modified": "2011-09-08T23:37:50.688Z", + "created": "2011-08-30T19:45:39.150Z", + "0.0.0": "2011-08-30T19:45:40.104Z", + "0.1.0": "2011-09-08T23:37:50.688Z" + }, + "author": { + "name": "Nick Fitzgerald", + "email": "nfitzgerald@mozilla.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mozilla/source-map.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/source-map/0.0.0", + "0.1.0": "http://registry.npmjs.org/source-map/0.1.0" + }, + "dist": { + "0.0.0": { + "shasum": "44220b0adf1572e603614d853727d3b05078d56c", + "tarball": "http://registry.npmjs.org/source-map/-/source-map-0.0.0.tgz" + }, + "0.1.0": { + "shasum": "229a5427719f1971be234b37cf968538b0600136", + "tarball": "http://registry.npmjs.org/source-map/-/source-map-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/source-map/" + }, + "spacesocket": { + "name": "spacesocket", + "description": "WebSocket server not invented here", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "astro", + "email": "astro@spaceboyz.net" + } + ], + "author": { + "name": "Astro", + "email": "astro@spaceboyz.net" + }, + "repository": { + "type": "git", + "path": "git://github.com/astro/spacesocket.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/spacesocket/0.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/spacesocket/-/spacesocket-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/spacesocket/" + }, + "spark": { + "name": "spark", + "description": "Powerful node server starter", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "creationix", + "email": "tim@creationix.com" + } + ], + "time": { + "modified": "2010-12-31T09:40:39.474Z", + "created": "2010-12-31T09:40:39.474Z", + "0.0.1": "2010-12-31T09:40:39.474Z", + "0.0.2": "2010-12-31T09:40:39.474Z", + "0.1.2": "2010-12-31T09:40:39.474Z", + "0.3.0": "2010-12-31T09:40:39.474Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/spark/0.0.1", + "0.0.2": "http://registry.npmjs.org/spark/0.0.2", + "0.1.2": "http://registry.npmjs.org/spark/0.1.2", + "0.3.0": "http://registry.npmjs.org/spark/0.3.0" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/spark/-/spark-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/spark/-/spark-0.0.2.tgz" + }, + "0.1.2": { + "tarball": "http://packages:5984/spark/-/spark-0.1.2.tgz" + }, + "0.3.0": { + "shasum": "74fdb8e7ee17e3d96c25d75676c727e503967d0b", + "tarball": "http://registry.npmjs.org/spark/-/spark-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/spark/" + }, + "spark2": { + "name": "spark2", + "description": "A more powerful node server starter - Fork of the original", + "dist-tags": { + "latest": "2.0.12" + }, + "maintainers": [ + { + "name": "davglass", + "email": "davglass@gmail.com" + } + ], + "author": { + "name": "Dav Glass", + "email": "davglass@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/davglass/spark2.git" + }, + "time": { + "modified": "2011-05-02T19:13:20.925Z", + "created": "2010-12-23T21:22:19.854Z", + "2.0.0": "2010-12-23T21:22:19.854Z", + "2.0.1": "2010-12-23T21:22:19.854Z", + "2.0.2": "2010-12-23T21:22:19.854Z", + "2.0.3": "2010-12-23T21:22:19.854Z", + "2.0.4": "2010-12-23T21:22:19.854Z", + "2.0.5": "2010-12-23T21:22:19.854Z", + "2.0.6": "2010-12-23T21:22:19.854Z", + "2.0.7": "2010-12-23T21:22:19.854Z", + "2.0.8": "2010-12-23T21:22:19.854Z", + "2.0.9": "2010-12-23T21:22:19.854Z", + "2.0.11": "2011-02-01T15:13:39.230Z", + "2.0.12": "2011-05-02T19:13:20.925Z" + }, + "versions": { + "2.0.0": "http://registry.npmjs.org/spark2/2.0.0", + "2.0.1": "http://registry.npmjs.org/spark2/2.0.1", + "2.0.2": "http://registry.npmjs.org/spark2/2.0.2", + "2.0.3": "http://registry.npmjs.org/spark2/2.0.3", + "2.0.4": "http://registry.npmjs.org/spark2/2.0.4", + "2.0.5": "http://registry.npmjs.org/spark2/2.0.5", + "2.0.6": "http://registry.npmjs.org/spark2/2.0.6", + "2.0.7": "http://registry.npmjs.org/spark2/2.0.7", + "2.0.8": "http://registry.npmjs.org/spark2/2.0.8", + "2.0.9": "http://registry.npmjs.org/spark2/2.0.9", + "2.0.11": "http://registry.npmjs.org/spark2/2.0.11", + "2.0.12": "http://registry.npmjs.org/spark2/2.0.12" + }, + "dist": { + "2.0.0": { + "tarball": "http://packages:5984/spark2/-/spark2-2.0.0.tgz" + }, + "2.0.1": { + "tarball": "http://packages:5984/spark2/-/spark2-2.0.1.tgz" + }, + "2.0.2": { + "tarball": "http://packages:5984/spark2/-/spark2-2.0.2.tgz" + }, + "2.0.3": { + "tarball": "http://packages:5984/spark2/-/spark2-2.0.3.tgz" + }, + "2.0.4": { + "tarball": "http://packages:5984/spark2/-/spark2-2.0.4.tgz" + }, + "2.0.5": { + "tarball": "http://packages:5984/spark2/-/spark2-2.0.5.tgz" + }, + "2.0.6": { + "tarball": "http://registry.npmjs.org/spark2/-/spark2-2.0.6.tgz" + }, + "2.0.7": { + "shasum": "567b2aeeaa769a0f94ad67cc014e1a775ffb3e1f", + "tarball": "http://registry.npmjs.org/spark2/-/spark2-2.0.7.tgz" + }, + "2.0.8": { + "shasum": "2ee850d1d43a0ef70fe4e11987ee7d776618f1aa", + "tarball": "http://registry.npmjs.org/spark2/-/spark2-2.0.8.tgz" + }, + "2.0.9": { + "shasum": "584420e8153f6392f6daa3df85c682a60726882d", + "tarball": "http://registry.npmjs.org/spark2/-/spark2-2.0.9.tgz" + }, + "2.0.11": { + "shasum": "3e55f7a488e9498d310b4e07e0b93441891b777b", + "tarball": "http://registry.npmjs.org/spark2/-/spark2-2.0.11.tgz" + }, + "2.0.12": { + "shasum": "5ccaa87e9b6d010f9631e845d9d363f80c5107f5", + "tarball": "http://registry.npmjs.org/spark2/-/spark2-2.0.12.tgz" + } + }, + "url": "http://registry.npmjs.org/spark2/" + }, + "sparkle-dashboard": { + "name": "sparkle-dashboard", + "dist-tags": { + "latest": "1.1.1" + }, + "maintainers": [ + { + "name": "nextsux", + "email": "nexus@smoula.net" + } + ], + "time": { + "modified": "2011-11-07T07:25:06.393Z", + "created": "2011-10-24T18:29:10.652Z", + "1.0.0": "2011-10-24T18:29:12.314Z", + "1.1.0": "2011-11-07T00:03:41.277Z", + "1.1.1": "2011-11-07T07:25:06.393Z" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/sparkle-dashboard/1.0.0", + "1.1.0": "http://registry.npmjs.org/sparkle-dashboard/1.1.0", + "1.1.1": "http://registry.npmjs.org/sparkle-dashboard/1.1.1" + }, + "dist": { + "1.0.0": { + "shasum": "6faa965009f566063e5962a5e74a2c85e1655391", + "tarball": "http://registry.npmjs.org/sparkle-dashboard/-/sparkle-dashboard-1.0.0.tgz" + }, + "1.1.0": { + "shasum": "6a67decb36ded50ea899e8d72ba77dbeb368780e", + "tarball": "http://registry.npmjs.org/sparkle-dashboard/-/sparkle-dashboard-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "cc980f3efd7138fcbbd2123571ed70b025a30e4d", + "tarball": "http://registry.npmjs.org/sparkle-dashboard/-/sparkle-dashboard-1.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/sparkle-dashboard/" + }, + "sparql": { + "name": "sparql", + "description": "Simple, low-level SPARQL (HTTP) client", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "aldobucchi", + "email": "aldo.bucchi@gmail.com" + } + ], + "time": { + "modified": "2011-04-11T09:51:50.147Z", + "created": "2011-04-11T09:51:49.464Z", + "0.0.1": "2011-04-11T09:51:50.147Z" + }, + "author": { + "name": "Aldo Bucchi", + "email": "aldo.bucchi@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/sparql/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "ce097c5196275390f9f74e440979b174ad542376", + "tarball": "http://registry.npmjs.org/sparql/-/sparql-0.0.1.tgz" + } + }, + "keywords": [ + "sparql", + "rdf", + "linkeddata" + ], + "url": "http://registry.npmjs.org/sparql/" + }, + "sparql-orm": { + "name": "sparql-orm", + "description": "ORM wrapper to work with SPARQL", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "hermanjunge", + "email": "haj@neosource.cl" + } + ], + "time": { + "modified": "2011-07-12T04:26:59.876Z", + "created": "2011-07-12T04:26:58.990Z", + "0.0.1": "2011-07-12T04:26:59.876Z" + }, + "repository": { + "type": "git", + "url": "git@github.com:hermanjunge/node-sparql-orm.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/sparql-orm/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "cf7bf1e985d7a2b452cf40e5d21a9ceb00559521", + "tarball": "http://registry.npmjs.org/sparql-orm/-/sparql-orm-0.0.1.tgz" + } + }, + "keywords": [ + "sparql", + "active record", + "orm", + "rdf", + "linked data", + "virtuoso" + ], + "url": "http://registry.npmjs.org/sparql-orm/" + }, + "spatial": { + "name": "spatial", + "description": "Spatial hash ( 2d grid) module", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "troufster", + "email": "stefan.pataky@gmail.com" + } + ], + "time": { + "modified": "2011-05-21T15:35:36.697Z", + "created": "2011-05-21T15:35:36.503Z", + "0.1.1": "2011-05-21T15:35:36.697Z" + }, + "author": { + "name": "Stefan Pataky", + "email": "stefan.pataky@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/troufster/spatial.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/spatial/0.1.1" + }, + "dist": { + "0.1.1": { + "shasum": "de759963d1494d8e64b7c886f7aeed984fb2a08a", + "tarball": "http://registry.npmjs.org/spatial/-/spatial-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/spatial/" + }, + "spawn": { + "name": "spawn", + "description": "Seamless multi-process worker management", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "mirkok", + "email": "mail@mirkokiefer.com" + } + ], + "time": { + "modified": "2011-05-02T21:35:32.542Z", + "created": "2011-05-02T21:35:31.647Z", + "0.0.1": "2011-05-02T21:35:32.542Z" + }, + "author": { + "name": "Mirko Kiefer", + "email": "mail@mirkokiefer.com", + "url": "http://www.mirkokiefer.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/spawn/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "6e9daba98c4722c04f9dce1945b0e7ae671dfe8e", + "tarball": "http://registry.npmjs.org/spawn/-/spawn-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/spawn/" + }, + "spdy": { + "name": "spdy", + "description": "Implementation of the SPDY protocol on node.js.", + "dist-tags": { + "latest": "0.1.4", + "stable": "0.1.4" + }, + "maintainers": [ + { + "name": "fedor.indutny", + "email": "fedor.indutny@gmail.com" + } + ], + "time": { + "modified": "2011-11-06T18:32:37.829Z", + "created": "2011-04-11T08:13:40.819Z", + "0.0.1": "2011-04-11T08:13:42.445Z", + "0.1.0": "2011-06-24T07:04:13.616Z", + "0.1.1": "2011-06-27T04:41:04.034Z", + "0.1.2": "2011-08-01T08:24:04.852Z", + "1.0.4": "2011-11-06T18:29:38.811Z", + "0.1.4": "2011-11-06T18:32:24.777Z" + }, + "author": { + "name": "Fedor Indutny", + "email": "fedor.indutny@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/spdy/0.0.1", + "0.1.0": "http://registry.npmjs.org/spdy/0.1.0", + "0.1.1": "http://registry.npmjs.org/spdy/0.1.1", + "0.1.2": "http://registry.npmjs.org/spdy/0.1.2", + "0.1.4": "http://registry.npmjs.org/spdy/0.1.4" + }, + "dist": { + "0.0.1": { + "shasum": "716b9a383fd06b5d1ca8beaecca59a0afde1555c", + "tarball": "http://registry.npmjs.org/spdy/-/spdy-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "933b8c75cd10d7e253737a19fc1277ea4b16bd92", + "tarball": "http://registry.npmjs.org/spdy/-/spdy-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "644370755e15a420fbaae5bae22f31d780fe37c0", + "tarball": "http://registry.npmjs.org/spdy/-/spdy-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "93bceaa7539b2c1e616d001bb1adb5ee098d4a34", + "tarball": "http://registry.npmjs.org/spdy/-/spdy-0.1.2.tgz" + }, + "0.1.4": { + "shasum": "4584bfc76f7b2c6189b1e08c003c5a4c64c273cf", + "tarball": "http://registry.npmjs.org/spdy/-/spdy-0.1.4.tgz" + } + }, + "url": "http://registry.npmjs.org/spdy/" + }, + "speakeasy": { + "name": "speakeasy", + "description": "Easy two-factor authentication with node.js. Time-based or counter-based (HOTP/TOTP), and supports the Google Authenticator mobile app. Also includes a key generator. Uses the HMAC One-Time Password algorithms.", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "markbao", + "email": "mark@markbao.com" + } + ], + "time": { + "modified": "2011-11-03T20:00:03.289Z", + "created": "2011-11-03T20:00:03.148Z", + "1.0.0": "2011-11-03T20:00:03.289Z" + }, + "author": { + "name": "Mark Bao", + "email": "mark@markbao.com", + "url": "http://markbao.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/markbao/speakeasy.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/speakeasy/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "e75356423be2b412e541b2c6133e4aeb53f1f895", + "tarball": "http://registry.npmjs.org/speakeasy/-/speakeasy-1.0.0.tgz" + } + }, + "keywords": [ + "two-factor", + "authentication", + "hotp", + "totp", + "multi-factor", + "hmac", + "one-time password", + "passwords" + ], + "url": "http://registry.npmjs.org/speakeasy/" + }, + "spec": { + "name": "spec", + "description": "An event-driven unit testing library for JavaScript and CoffeeScript.", + "dist-tags": { + "latest": "1.0.0rc3" + }, + "maintainers": [ + { + "name": "kitgoncharov", + "email": "ksgoncharov@gmail.com" + } + ], + "time": { + "modified": "2011-03-09T01:07:29.380Z", + "created": "2011-02-01T18:51:53.894Z", + "0.9.9": "2011-02-01T18:51:54.164Z", + "1.0.0pre": "2011-02-12T20:49:24.428Z", + "1.0.0rc1": "2011-02-19T07:23:33.263Z", + "1.0.0rc2": "2011-02-26T17:06:31.790Z", + "1.0.0rc3": "2011-03-09T01:07:29.380Z" + }, + "author": { + "name": "Kit Goncharov", + "url": "http://kitgoncharov.github.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/kitgoncharov/Spec.git" + }, + "versions": { + "0.9.9": "http://registry.npmjs.org/spec/0.9.9", + "1.0.0pre": "http://registry.npmjs.org/spec/1.0.0pre", + "1.0.0rc1": "http://registry.npmjs.org/spec/1.0.0rc1", + "1.0.0rc2": "http://registry.npmjs.org/spec/1.0.0rc2", + "1.0.0rc3": "http://registry.npmjs.org/spec/1.0.0rc3" + }, + "dist": { + "0.9.9": { + "shasum": "1edeb039335833dbf96cf961b682bfca3bd25605", + "tarball": "http://registry.npmjs.org/spec/-/spec-0.9.9.tgz" + }, + "1.0.0pre": { + "shasum": "9bb0c803c35995950c7658d452c02a847b5ebe93", + "tarball": "http://registry.npmjs.org/spec/-/spec-1.0.0pre.tgz" + }, + "1.0.0rc1": { + "shasum": "d60477c0eb97ad8099085b4eb99a213883618b43", + "tarball": "http://registry.npmjs.org/spec/-/spec-1.0.0rc1.tgz" + }, + "1.0.0rc2": { + "shasum": "fa03028f9361b127e8bb22be42da7dc25d3ea48a", + "tarball": "http://registry.npmjs.org/spec/-/spec-1.0.0rc2.tgz" + }, + "1.0.0rc3": { + "shasum": "9eda540154a0ec63e89de490c65189996ccb080f", + "tarball": "http://registry.npmjs.org/spec/-/spec-1.0.0rc3.tgz" + } + }, + "keywords": [ + "unit", + "test", + "testing", + "event", + "spec", + "suite", + "assert" + ], + "url": "http://registry.npmjs.org/spec/" + }, + "Spec_My_Node": { + "name": "Spec_My_Node", + "description": "Basic BDD Framework", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "garrensmith", + "email": "garren.smith@gmail.com" + } + ], + "author": { + "name": "Garren Smith", + "email": "garrens@drivensoftware.net" + }, + "repository": { + "type": "git", + "url": "http://github.com/garrensmith/Spec-My-Node.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/Spec_My_Node/0.0.1", + "0.0.2": "http://registry.npmjs.org/Spec_My_Node/0.0.2" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/Spec_My_Node/-/Spec_My_Node-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/Spec_My_Node/-/Spec_My_Node-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/Spec_My_Node/" + }, + "speck": { + "name": "speck", + "description": "Test tools on top of vows. For high level HTTP testing.", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "alx", + "email": "a.simerl@googlemail.com" + } + ], + "time": { + "modified": "2011-12-01T12:51:42.915Z", + "created": "2011-03-03T14:54:15.826Z", + "0.0.1": "2011-03-03T14:54:16.409Z", + "0.0.2": "2011-03-03T16:06:55.976Z", + "0.0.3": "2011-03-04T01:56:05.557Z", + "0.0.4": "2011-03-27T01:50:20.669Z", + "0.0.5": "2011-03-27T15:40:16.183Z", + "0.0.6": "2011-03-27T17:38:28.725Z", + "0.0.7": "2011-03-27T17:49:14.762Z", + "0.0.8": "2011-03-29T18:50:56.693Z", + "0.0.9": "2011-03-30T01:08:00.569Z", + "0.1.0": "2011-04-01T00:47:30.433Z", + "0.1.1": "2011-11-05T19:01:20.499Z", + "0.1.2": "2011-12-01T12:51:42.915Z" + }, + "author": { + "name": "Alexander Simmerl", + "email": "a.simmerl@googlemail.com", + "url": "http://goldjunge.github.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/goldjunge/speck.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/speck/0.0.1", + "0.0.2": "http://registry.npmjs.org/speck/0.0.2", + "0.0.3": "http://registry.npmjs.org/speck/0.0.3", + "0.0.4": "http://registry.npmjs.org/speck/0.0.4", + "0.0.5": "http://registry.npmjs.org/speck/0.0.5", + "0.0.6": "http://registry.npmjs.org/speck/0.0.6", + "0.0.7": "http://registry.npmjs.org/speck/0.0.7", + "0.0.8": "http://registry.npmjs.org/speck/0.0.8", + "0.0.9": "http://registry.npmjs.org/speck/0.0.9", + "0.1.0": "http://registry.npmjs.org/speck/0.1.0", + "0.1.1": "http://registry.npmjs.org/speck/0.1.1", + "0.1.2": "http://registry.npmjs.org/speck/0.1.2" + }, + "dist": { + "0.0.1": { + "shasum": "4788d02384d876f9e9e8b16f2f80c8522b67d8ab", + "tarball": "http://registry.npmjs.org/speck/-/speck-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "ef73191b93685a517b15f92e4d216ece737e2be5", + "tarball": "http://registry.npmjs.org/speck/-/speck-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "783ee80ad108b096082f80f6330eea9fc7c4c36b", + "tarball": "http://registry.npmjs.org/speck/-/speck-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "e3e92dd1caa800eb21755adefc1926a9a38cd164", + "tarball": "http://registry.npmjs.org/speck/-/speck-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "3908f6579480a9ec11b20b4f616ef0f0330e9e98", + "tarball": "http://registry.npmjs.org/speck/-/speck-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "c861fc263c6631504682449f12aee526f4d1c5b4", + "tarball": "http://registry.npmjs.org/speck/-/speck-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "a56a21dc508bf172cbdc0354501e45869e2c4c24", + "tarball": "http://registry.npmjs.org/speck/-/speck-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "4be76feb68c6ce3b18c54503bb2dca4fe00da79b", + "tarball": "http://registry.npmjs.org/speck/-/speck-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "90da162693e66871534ecd83a9e9cfe972ba43ed", + "tarball": "http://registry.npmjs.org/speck/-/speck-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "a8578789fcbc75be100a56dc75cb04a3ce65d828", + "tarball": "http://registry.npmjs.org/speck/-/speck-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "7de87e0eb4faff194ad88ceb93e3db5849f33fce", + "tarball": "http://registry.npmjs.org/speck/-/speck-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "b35935b663a374811ba3fc2116374738531e3dea", + "tarball": "http://registry.npmjs.org/speck/-/speck-0.1.2.tgz" + } + }, + "keywords": [ + "vows", + "http", + "macro", + "test", + "async", + "emitter" + ], + "url": "http://registry.npmjs.org/speck/" + }, + "specking": { + "name": "specking", + "description": "A node wrapper for the BDD framework Jasmine, allowing for customized setup for each spec file. This allows for more control over the environment the spec is running in.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "wailqill", + "email": "glenn@tregusti.com" + } + ], + "time": { + "modified": "2011-09-25T12:38:14.220Z", + "created": "2011-09-25T12:38:12.715Z", + "0.1.0": "2011-09-25T12:38:14.220Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/specking/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "fbaf20bba90e853ece61bfda3e92f4b2768ac37d", + "tarball": "http://registry.npmjs.org/specking/-/specking-0.1.0.tgz" + } + }, + "keywords": [ + "bdd", + "spec", + "unittest", + "jasmine", + "test" + ], + "url": "http://registry.npmjs.org/specking/" + }, + "spectra": { + "name": "spectra", + "description": "Simple, flexible asynchronous testing framework balanced between BDD and TDD.", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "jdeal", + "email": "justin.deal@gmail.com" + } + ], + "time": { + "modified": "2011-10-25T04:40:11.903Z", + "created": "2011-10-25T04:40:11.221Z", + "0.0.0": "2011-10-25T04:40:11.903Z" + }, + "author": { + "name": "Justin Deal" + }, + "repository": { + "type": "git", + "url": "git://github.com/jdeal/spectra.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/spectra/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "def1aab061f0a52437a3d125155912de9fbe0c62", + "tarball": "http://registry.npmjs.org/spectra/-/spectra-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/spectra/" + }, + "spectrum": { + "name": "spectrum", + "description": "JavaScript Template Library", + "dist-tags": { + "latest": "0.4.1" + }, + "maintainers": [ + { + "name": "tomyan", + "email": "tom@yandell.me.uk" + }, + { + "name": "richardhodgson", + "email": "contact@rhodgson.co.uk" + } + ], + "time": { + "modified": "2011-10-23T14:33:35.116Z", + "created": "2011-01-29T14:28:15.571Z", + "0.1.3": "2011-01-29T14:28:15.909Z", + "0.1.4": "2011-01-30T11:45:05.526Z", + "0.1.5": "2011-02-11T22:43:49.448Z", + "0.2.0": "2011-02-14T23:22:44.352Z", + "0.2.1": "2011-02-16T23:19:32.598Z", + "0.3.0": "2011-04-30T08:00:39.678Z", + "0.4.0": "2011-07-02T12:56:40.695Z", + "0.4.1": "2011-07-02T13:39:26.137Z" + }, + "author": { + "name": "Thomas Yandell", + "email": "tom.deletethis@yandell.me.uk", + "url": "http://tom.yandell.me.uk/blog/" + }, + "repository": { + "type": "git", + "url": "git://github.com/tomyan/spectrum.js.git" + }, + "versions": { + "0.1.3": "http://registry.npmjs.org/spectrum/0.1.3", + "0.1.4": "http://registry.npmjs.org/spectrum/0.1.4", + "0.1.5": "http://registry.npmjs.org/spectrum/0.1.5", + "0.2.0": "http://registry.npmjs.org/spectrum/0.2.0", + "0.2.1": "http://registry.npmjs.org/spectrum/0.2.1", + "0.3.0": "http://registry.npmjs.org/spectrum/0.3.0", + "0.4.0": "http://registry.npmjs.org/spectrum/0.4.0", + "0.4.1": "http://registry.npmjs.org/spectrum/0.4.1" + }, + "dist": { + "0.1.3": { + "shasum": "4c5d9f3b799875a1ecdb6ef5175c59ef84aecbbe", + "tarball": "http://registry.npmjs.org/spectrum/-/spectrum-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "196bfcfa17fdc4b61e377d3b178376cf378e98fe", + "tarball": "http://registry.npmjs.org/spectrum/-/spectrum-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "8d1be214a72d69b64311852b97b0c0037fbd7935", + "tarball": "http://registry.npmjs.org/spectrum/-/spectrum-0.1.5.tgz" + }, + "0.2.0": { + "shasum": "de61ae66e5a20838155894f2dc7c4cd5e369c6b5", + "tarball": "http://registry.npmjs.org/spectrum/-/spectrum-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "162654e86930017a719811c63efbcdb12b4e4703", + "tarball": "http://registry.npmjs.org/spectrum/-/spectrum-0.2.1.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "4da20541b3f501d3913fd67bf9d8535ae1b7669f", + "tarball": "http://registry.npmjs.org/spectrum/-/spectrum-0.2.1-0.4-sunos-5.11.tgz" + } + } + }, + "0.3.0": { + "shasum": "a4b541c64c727bb6c481394949f14b88d2f84bea", + "tarball": "http://registry.npmjs.org/spectrum/-/spectrum-0.3.0.tgz", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.16-darwin-11.1.0": { + "shasum": "0b682d1ac7f3ef969d56e62c556fac0d234593f6", + "tarball": "http://registry.npmjs.org/spectrum/-/spectrum-0.3.0-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.16-darwin-11.1.0.tgz" + } + } + }, + "0.4.0": { + "shasum": "43837efd5847cb77254131e7a16accb9e6ffbbaa", + "tarball": "http://registry.npmjs.org/spectrum/-/spectrum-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "b7e4c237e3846410803b8df36bec1160a03b1874", + "tarball": "http://registry.npmjs.org/spectrum/-/spectrum-0.4.1.tgz" + } + }, + "url": "http://registry.npmjs.org/spectrum/" + }, + "speller": { + "name": "speller", + "description": "A JavaScript spell-checker", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "past", + "email": "pastith@gmail.com" + } + ], + "author": { + "name": "Panagiotis Astithas" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/speller/1.0.0" + }, + "dist": { + "1.0.0": { + "tarball": "http://packages:5984/speller/-/speller-1.0.0.tgz" + } + }, + "keywords": [ + "spell-checker", + "spelling", + "corrector" + ], + "url": "http://registry.npmjs.org/speller/" + }, + "spex": { + "name": "spex", + "description": "BDD-inspired specifications", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "fractal", + "email": "contact@wearefractal.com" + } + ], + "time": { + "modified": "2011-11-05T11:43:11.276Z", + "created": "2011-11-05T11:41:48.374Z", + "0.0.1": "2011-11-05T11:41:49.740Z", + "0.0.2": "2011-11-05T11:43:11.276Z" + }, + "author": { + "name": "Fractal", + "email": "contact@wearefractal.com", + "url": "http://wearefractal.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/wearefractal/spex.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/spex/0.0.1", + "0.0.2": "http://registry.npmjs.org/spex/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "fa0ea15da3dd84e7c1180983b0c0fafb89137750", + "tarball": "http://registry.npmjs.org/spex/-/spex-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "b17fbc3acb1d0afa60f5652d1d9d78a60647002b", + "tarball": "http://registry.npmjs.org/spex/-/spex-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/spex/" + }, + "sphericalmercator": { + "name": "sphericalmercator", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "kkaefer", + "email": "kkaefer@gmail.com" + }, + { + "name": "tmcw", + "email": "macwright@gmail.com" + }, + { + "name": "yhahn", + "email": "young@developmentseed.org" + }, + { + "name": "willwhite", + "email": "will@developmentseed.org" + }, + { + "name": "springmeyer", + "email": "dane@dbsgeo.com" + } + ], + "time": { + "modified": "2011-08-03T14:21:50.815Z", + "created": "2011-06-24T13:56:25.397Z", + "1.0.0": "2011-06-24T13:56:26.156Z", + "1.0.1": "2011-08-03T14:21:50.815Z" + }, + "author": { + "name": "MapBox", + "email": "info@mapbox.com", + "url": "http://mapbox.com/" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/sphericalmercator/1.0.0", + "1.0.1": "http://registry.npmjs.org/sphericalmercator/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "67ba8489b4873c3b8171f0ea0d35abf905c939a5", + "tarball": "http://registry.npmjs.org/sphericalmercator/-/sphericalmercator-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "eac48702906fee8dbbf82b7e7b1d67a9f7b242f7", + "tarball": "http://registry.npmjs.org/sphericalmercator/-/sphericalmercator-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/sphericalmercator/" + }, + "spider": { + "name": "spider", + "description": "Programmable spidering of web sites with node.js and jQuery", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "mikeal", + "email": "mikeal.rogers@gmail.com" + } + ], + "time": { + "modified": "2011-04-21T03:17:48.653Z", + "created": "2011-04-21T03:17:48.283Z", + "0.0.2": "2011-04-21T03:17:48.653Z" + }, + "author": { + "name": "Mikeal Rogers", + "email": "mikeal.rogers@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mikeal/spider.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/spider/0.0.2" + }, + "dist": { + "0.0.2": { + "shasum": "337cbec0e884d47beb1483363fd9d6531a0e3827", + "tarball": "http://registry.npmjs.org/spider/-/spider-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/spider/" + }, + "spider-tdd": { + "name": "spider-tdd", + "description": "Dead simple test-driven-development framework.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "ollym", + "email": "oliver.morgan@kohark.com" + } + ], + "time": { + "modified": "2011-09-15T15:36:10.368Z", + "created": "2011-09-15T15:36:08.929Z", + "0.0.1": "2011-09-15T15:36:10.368Z" + }, + "author": { + "name": "Oliver Morgan", + "email": "ollym@me.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/ollym/spider-tdd.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/spider-tdd/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "38c7297a3969063589b3fcc28073362c7b32fb4c", + "tarball": "http://registry.npmjs.org/spider-tdd/-/spider-tdd-0.0.1.tgz" + } + }, + "keywords": [ + "simple", + "lightweight", + "tdd", + "testing", + "framework", + "unit-test" + ], + "url": "http://registry.npmjs.org/spider-tdd/" + }, + "spine": { + "name": "spine", + "description": "MVC Framework.", + "dist-tags": { + "latest": "1.0.5", + "beta": "1.0.6" + }, + "maintainers": [ + { + "name": "maccman", + "email": "maccman@gmail.com" + } + ], + "time": { + "modified": "2011-11-25T23:24:27.430Z", + "created": "2011-05-12T21:51:01.410Z", + "0.0.4": "2011-05-12T21:51:02.248Z", + "0.0.5": "2011-05-13T03:56:15.042Z", + "0.0.8": "2011-09-13T16:08:07.014Z", + "0.0.9": "2011-09-15T12:54:36.966Z", + "0.1.0": "2011-09-24T14:40:51.709Z", + "0.1.1": "2011-09-24T14:50:58.960Z", + "0.1.2": "2011-09-30T15:28:10.956Z", + "1.0.0": "2011-10-03T08:08:47.613Z", + "1.0.3": "2011-10-18T20:56:36.994Z", + "1.0.4": "2011-10-28T21:09:02.251Z", + "1.0.5": "2011-10-31T14:34:01.208Z", + "1.0.6": "2011-11-25T23:24:27.430Z" + }, + "author": { + "name": "maccman" + }, + "repository": { + "type": "git", + "url": "git://github.com/maccman/spine.git" + }, + "versions": { + "0.0.4": "http://registry.npmjs.org/spine/0.0.4", + "0.0.5": "http://registry.npmjs.org/spine/0.0.5", + "0.0.8": "http://registry.npmjs.org/spine/0.0.8", + "0.0.9": "http://registry.npmjs.org/spine/0.0.9", + "0.1.0": "http://registry.npmjs.org/spine/0.1.0", + "0.1.1": "http://registry.npmjs.org/spine/0.1.1", + "0.1.2": "http://registry.npmjs.org/spine/0.1.2", + "1.0.0": "http://registry.npmjs.org/spine/1.0.0", + "1.0.3": "http://registry.npmjs.org/spine/1.0.3", + "1.0.4": "http://registry.npmjs.org/spine/1.0.4", + "1.0.5": "http://registry.npmjs.org/spine/1.0.5", + "1.0.6": "http://registry.npmjs.org/spine/1.0.6" + }, + "dist": { + "0.0.4": { + "shasum": "9fc78d2f265959d25ca88bdedf4c9ef3e1b600ab", + "tarball": "http://registry.npmjs.org/spine/-/spine-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "8e86ac074b643b8e670dc48ab2b0872e66dff14f", + "tarball": "http://registry.npmjs.org/spine/-/spine-0.0.5.tgz" + }, + "0.0.8": { + "shasum": "d187297e6ec069fab65b130cc9c8431c4db8e74f", + "tarball": "http://registry.npmjs.org/spine/-/spine-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "59c66f0932b7705c49dbf82c45676e789d90eec0", + "tarball": "http://registry.npmjs.org/spine/-/spine-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "af20a1ff5cfcce266d21c74f2a47ee30cd85735c", + "tarball": "http://registry.npmjs.org/spine/-/spine-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "c3afbbc57c8dddb6f5bf708532297d0ec820c17e", + "tarball": "http://registry.npmjs.org/spine/-/spine-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "0d2a74519528dc3795956050075c2d92a75358b0", + "tarball": "http://registry.npmjs.org/spine/-/spine-0.1.2.tgz" + }, + "1.0.0": { + "shasum": "18bc4f625295a749413e1e15e61f6840846b2791", + "tarball": "http://registry.npmjs.org/spine/-/spine-1.0.0.tgz" + }, + "1.0.3": { + "shasum": "90b0ed4feab1cf28657aa23bd9a002e4c3fc96bc", + "tarball": "http://registry.npmjs.org/spine/-/spine-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "8952f7510fd3a1686da8cb455ed7fcd58fd54783", + "tarball": "http://registry.npmjs.org/spine/-/spine-1.0.4.tgz" + }, + "1.0.5": { + "shasum": "35c31048d4bad87d3d401550e0006cf5dfb0ac3f", + "tarball": "http://registry.npmjs.org/spine/-/spine-1.0.5.tgz" + }, + "1.0.6": { + "shasum": "7c89c0000849ab7d95e39b3224f35c624c39ac5f", + "tarball": "http://registry.npmjs.org/spine/-/spine-1.0.6.tgz" + } + }, + "url": "http://registry.npmjs.org/spine/" + }, + "spine.app": { + "name": "spine.app", + "description": "Spine app generator", + "dist-tags": { + "latest": "0.3.0", + "beta": "0.3.1" + }, + "maintainers": [ + { + "name": "maccman", + "email": "maccman@gmail.com" + } + ], + "time": { + "modified": "2011-11-19T19:16:48.356Z", + "created": "2011-05-13T03:46:16.285Z", + "0.0.1": "2011-05-13T03:46:16.962Z", + "0.0.2": "2011-05-13T03:53:43.966Z", + "0.0.3": "2011-05-15T12:48:38.029Z", + "0.0.4": "2011-05-15T16:32:03.603Z", + "0.0.5": "2011-05-15T20:49:47.779Z", + "0.0.6": "2011-05-20T22:00:07.459Z", + "0.0.7": "2011-05-20T22:00:42.250Z", + "0.0.8": "2011-06-04T05:47:33.094Z", + "0.0.9": "2011-06-04T05:59:42.870Z", + "0.1.1": "2011-08-03T20:37:40.277Z", + "0.1.3": "2011-08-04T14:23:41.634Z", + "0.1.4": "2011-08-04T19:37:53.557Z", + "0.1.5": "2011-08-04T19:53:05.526Z", + "0.1.6": "2011-08-08T13:23:33.295Z", + "0.1.7": "2011-09-08T17:28:11.578Z", + "0.1.9": "2011-09-17T11:04:59.586Z", + "0.2.0": "2011-09-19T21:51:39.278Z", + "0.2.1": "2011-09-20T17:55:37.934Z", + "0.2.3": "2011-09-20T18:42:08.872Z", + "0.2.4": "2011-09-22T16:49:15.417Z", + "0.2.5": "2011-09-30T23:25:24.519Z", + "0.2.6": "2011-10-03T08:05:22.140Z", + "0.2.7": "2011-10-03T08:08:00.486Z", + "0.2.8": "2011-10-03T08:24:17.354Z", + "0.2.9": "2011-11-08T17:56:59.991Z", + "0.3.0": "2011-11-08T18:06:10.754Z", + "0.3.1": "2011-11-19T19:16:48.356Z" + }, + "author": { + "name": "Alex MacCaw", + "email": "info@eribium.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/maccman/spine.app.git" + }, + "users": { + "sonneym": true + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/spine.app/0.0.1", + "0.0.2": "http://registry.npmjs.org/spine.app/0.0.2", + "0.0.3": "http://registry.npmjs.org/spine.app/0.0.3", + "0.0.4": "http://registry.npmjs.org/spine.app/0.0.4", + "0.0.5": "http://registry.npmjs.org/spine.app/0.0.5", + "0.0.6": "http://registry.npmjs.org/spine.app/0.0.6", + "0.0.7": "http://registry.npmjs.org/spine.app/0.0.7", + "0.0.8": "http://registry.npmjs.org/spine.app/0.0.8", + "0.0.9": "http://registry.npmjs.org/spine.app/0.0.9", + "0.1.1": "http://registry.npmjs.org/spine.app/0.1.1", + "0.1.3": "http://registry.npmjs.org/spine.app/0.1.3", + "0.1.4": "http://registry.npmjs.org/spine.app/0.1.4", + "0.1.5": "http://registry.npmjs.org/spine.app/0.1.5", + "0.1.6": "http://registry.npmjs.org/spine.app/0.1.6", + "0.1.7": "http://registry.npmjs.org/spine.app/0.1.7", + "0.1.9": "http://registry.npmjs.org/spine.app/0.1.9", + "0.2.0": "http://registry.npmjs.org/spine.app/0.2.0", + "0.2.1": "http://registry.npmjs.org/spine.app/0.2.1", + "0.2.3": "http://registry.npmjs.org/spine.app/0.2.3", + "0.2.4": "http://registry.npmjs.org/spine.app/0.2.4", + "0.2.5": "http://registry.npmjs.org/spine.app/0.2.5", + "0.2.6": "http://registry.npmjs.org/spine.app/0.2.6", + "0.2.7": "http://registry.npmjs.org/spine.app/0.2.7", + "0.2.8": "http://registry.npmjs.org/spine.app/0.2.8", + "0.2.9": "http://registry.npmjs.org/spine.app/0.2.9", + "0.3.0": "http://registry.npmjs.org/spine.app/0.3.0", + "0.3.1": "http://registry.npmjs.org/spine.app/0.3.1" + }, + "dist": { + "0.0.1": { + "shasum": "b4c07caf196261622e656b4541fa6f37ee8b599c", + "tarball": "http://registry.npmjs.org/spine.app/-/spine.app-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "fc4f73afba4fbb84812e473e32ba9d7b0cf692bc", + "tarball": "http://registry.npmjs.org/spine.app/-/spine.app-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "0f1cbb416a72c07a7d69a85f14cc2a3ef9896dbb", + "tarball": "http://registry.npmjs.org/spine.app/-/spine.app-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "3de1b1f23618eb58e4f1a527e74fe141fca664a4", + "tarball": "http://registry.npmjs.org/spine.app/-/spine.app-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "c59b66518cc65f184bce8c12dfb77599769ec000", + "tarball": "http://registry.npmjs.org/spine.app/-/spine.app-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "2109bda24ec63f43eaa7e4b0cd5cdb43262c1bd5", + "tarball": "http://registry.npmjs.org/spine.app/-/spine.app-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "6e1ac36a7b344000caf633c1a0085d4767b81506", + "tarball": "http://registry.npmjs.org/spine.app/-/spine.app-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "8239fdbca57fa3fda98822fcb29fa85eb84abc4d", + "tarball": "http://registry.npmjs.org/spine.app/-/spine.app-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "825c46fba41fa2af4b86e914cebfaf63276074f5", + "tarball": "http://registry.npmjs.org/spine.app/-/spine.app-0.0.9.tgz" + }, + "0.1.1": { + "shasum": "a7e91c4e25b51b8f9797297c888f7cdd788b6a67", + "tarball": "http://registry.npmjs.org/spine.app/-/spine.app-0.1.1.tgz" + }, + "0.1.3": { + "shasum": "6dd747bb30547244b4ad8f327c7dcda9dd0f58d8", + "tarball": "http://registry.npmjs.org/spine.app/-/spine.app-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "0b2eeaee6d7232f9d98ec2868e6c498e77c5b5d3", + "tarball": "http://registry.npmjs.org/spine.app/-/spine.app-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "a5d431bf6c0e3a40977061ca5057212bc9f62f99", + "tarball": "http://registry.npmjs.org/spine.app/-/spine.app-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "4abf1a4ea6ae581697bdf7361ee8b7647a78efa3", + "tarball": "http://registry.npmjs.org/spine.app/-/spine.app-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "a507d74d21d2a173644d1622494a885afb530be5", + "tarball": "http://registry.npmjs.org/spine.app/-/spine.app-0.1.7.tgz" + }, + "0.1.9": { + "shasum": "7c90cf8785cf41f65cbcf86c69930b69afc767c2", + "tarball": "http://registry.npmjs.org/spine.app/-/spine.app-0.1.9.tgz" + }, + "0.2.0": { + "shasum": "c987ad32c326617fe02d9571ff3c1d71a98162ee", + "tarball": "http://registry.npmjs.org/spine.app/-/spine.app-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "8cf7f2ce9a4437d8662e4152fa06218421cfe01b", + "tarball": "http://registry.npmjs.org/spine.app/-/spine.app-0.2.1.tgz" + }, + "0.2.3": { + "shasum": "fe7b2cbde13ca70e2ea03631b16f6b0a19a28d4d", + "tarball": "http://registry.npmjs.org/spine.app/-/spine.app-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "7fa504538be96c60e15433f8b60f3b306da0aa1b", + "tarball": "http://registry.npmjs.org/spine.app/-/spine.app-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "f2f878e967ed44b56847769a2215debe31bef6a6", + "tarball": "http://registry.npmjs.org/spine.app/-/spine.app-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "54579d2c18930317a14b5a1db9002fe90511cdb9", + "tarball": "http://registry.npmjs.org/spine.app/-/spine.app-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "7961ce2de812b1c4d64042e9df4dac15d6b43a7d", + "tarball": "http://registry.npmjs.org/spine.app/-/spine.app-0.2.7.tgz" + }, + "0.2.8": { + "shasum": "8adc10340636287af0eb26e29415f75eec24e905", + "tarball": "http://registry.npmjs.org/spine.app/-/spine.app-0.2.8.tgz" + }, + "0.2.9": { + "shasum": "77ee9048a22b4c3752232d1a407b44fbd799546e", + "tarball": "http://registry.npmjs.org/spine.app/-/spine.app-0.2.9.tgz" + }, + "0.3.0": { + "shasum": "4fbb8ae09b87586ee3ec575279a24e6b3386ef12", + "tarball": "http://registry.npmjs.org/spine.app/-/spine.app-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "59a9954fb3c6014d0d4f02cb33cbc93c537c4664", + "tarball": "http://registry.npmjs.org/spine.app/-/spine.app-0.3.1.tgz" + } + }, + "url": "http://registry.npmjs.org/spine.app/" + }, + "spine.mobile": { + "name": "spine.mobile", + "description": "Spine Mobile MVC Framework.", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "maccman", + "email": "maccman@gmail.com" + } + ], + "time": { + "modified": "2011-10-03T08:03:11.323Z", + "created": "2011-09-13T21:52:19.438Z", + "0.0.1": "2011-09-13T21:52:20.851Z", + "0.0.2": "2011-09-15T09:27:57.919Z", + "0.0.3": "2011-09-15T12:01:29.905Z", + "0.0.4": "2011-09-17T11:05:38.038Z", + "0.0.5": "2011-09-19T21:53:29.126Z", + "0.0.6": "2011-09-19T21:58:52.608Z", + "1.0.0": "2011-10-03T08:03:11.323Z" + }, + "author": { + "name": "maccman" + }, + "repository": { + "type": "git", + "url": "git://github.com/maccman/spine.mobile.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/spine.mobile/0.0.1", + "0.0.2": "http://registry.npmjs.org/spine.mobile/0.0.2", + "0.0.3": "http://registry.npmjs.org/spine.mobile/0.0.3", + "0.0.4": "http://registry.npmjs.org/spine.mobile/0.0.4", + "0.0.6": "http://registry.npmjs.org/spine.mobile/0.0.6", + "1.0.0": "http://registry.npmjs.org/spine.mobile/1.0.0" + }, + "dist": { + "0.0.1": { + "shasum": "483db597de8ec3b22733c2048739ceac4577535d", + "tarball": "http://registry.npmjs.org/spine.mobile/-/spine.mobile-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "7be7dcfcf5546d27bb2e70eb6777b96325347218", + "tarball": "http://registry.npmjs.org/spine.mobile/-/spine.mobile-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "d4743989b4f73d43b7b4b3423593ea87bcdbb572", + "tarball": "http://registry.npmjs.org/spine.mobile/-/spine.mobile-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "f141ca0ee13881fe2349dec1d6729984d9f4c153", + "tarball": "http://registry.npmjs.org/spine.mobile/-/spine.mobile-0.0.4.tgz" + }, + "0.0.6": { + "shasum": "c89f57869ffbc076aa3d562b514133ceef863af1", + "tarball": "http://registry.npmjs.org/spine.mobile/-/spine.mobile-0.0.6.tgz" + }, + "1.0.0": { + "shasum": "4b972e0290c6da119261a6be73b4731259f0fc1e", + "tarball": "http://registry.npmjs.org/spine.mobile/-/spine.mobile-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/spine.mobile/" + }, + "split_er": { + "name": "split_er", + "description": "Split_er is a javascript object that provides functionality similar to that of the String.split() method, with some enhancements.", + "dist-tags": { + "latest": "1.2.0" + }, + "maintainers": [ + { + "name": "11rcombs", + "email": "rodger.combs@gmail.com" + } + ], + "time": { + "modified": "2011-06-02T01:35:34.983Z", + "created": "2011-06-02T01:35:34.695Z", + "1.2.0": "2011-06-02T01:35:34.983Z" + }, + "author": { + "name": "Rodger Combs", + "email": "rodger.combs@gmail.com", + "url": "http://combsconnections.tk/" + }, + "repository": { + "type": "sourceforge", + "url": "http://sourceforge.net/projects/splitterjsobj/" + }, + "versions": { + "1.2.0": "http://registry.npmjs.org/split_er/1.2.0" + }, + "dist": { + "1.2.0": { + "shasum": "0fc73e7ad98a1575e6f05510acabfe8ae17d52dd", + "tarball": "http://registry.npmjs.org/split_er/-/split_er-1.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/split_er/" + }, + "spludo": { + "name": "spludo", + "description": "High performance, evented, server side, prototype based, javascript mvc web framework.", + "dist-tags": { + "latest": "1.1.0", + "stable": "1.1.0" + }, + "maintainers": [ + { + "name": "DracoBlue", + "email": "JanS@DracoBlue.de" + } + ], + "author": { + "name": "DracoBlue", + "email": "JanS@DracoBlue.de" + }, + "repository": { + "type": "git", + "web": "http://github.com/DracoBlue/spludo.git", + "url": "" + }, + "time": { + "modified": "2011-11-20T11:46:09.324Z", + "created": "2011-03-05T12:31:26.152Z", + "1.0.0": "2011-03-05T12:31:26.152Z", + "1.0.1": "2011-03-05T12:31:26.152Z", + "1.0.2": "2011-03-05T12:31:26.152Z", + "1.0.3": "2011-03-05T12:31:26.152Z", + "1.1.0": "2011-11-20T11:44:58.462Z" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/spludo/1.0.0", + "1.0.1": "http://registry.npmjs.org/spludo/1.0.1", + "1.0.2": "http://registry.npmjs.org/spludo/1.0.2", + "1.0.3": "http://registry.npmjs.org/spludo/1.0.3", + "1.1.0": "http://registry.npmjs.org/spludo/1.1.0" + }, + "dist": { + "1.0.0": { + "tarball": "http://packages:5984/spludo/-/spludo-1.0.0.tgz" + }, + "1.0.1": { + "tarball": "http://packages:5984/spludo/-/spludo-1.0.1.tgz" + }, + "1.0.2": { + "tarball": "http://registry.npmjs.org/spludo/-/spludo@1.0.2.tgz" + }, + "1.0.3": { + "shasum": "593bbbff32437b40c70eca226c3e212f2c489939", + "tarball": "http://registry.npmjs.org/spludo/-/spludo-1.0.3.tgz" + }, + "1.1.0": { + "shasum": "4e9d9e7f3ca4ea7aee949e237e3aa4b15740aa17", + "tarball": "http://registry.npmjs.org/spludo/-/spludo-1.1.0.tgz" + } + }, + "keywords": [ + "framework", + "mvc", + "rest", + "web", + "configuration", + "routing", + "templating" + ], + "url": "http://registry.npmjs.org/spludo/" + }, + "spm": { + "name": "spm", + "description": "A Package Manager for SeaJS", + "dist-tags": { + "latest": "0.4.0" + }, + "maintainers": [ + { + "name": "yyfrankyy", + "email": "yyfrankyy@gmail.com" + }, + { + "name": "lifesinger", + "email": "lifesinger@gmail.com" + } + ], + "time": { + "modified": "2011-12-02T13:23:27.932Z", + "created": "2011-07-10T06:20:30.300Z", + "0.2.0": "2011-07-10T06:20:32.082Z", + "0.2.1": "2011-07-24T05:04:06.548Z", + "0.3.0": "2011-10-21T01:25:27.303Z", + "0.4.0": "2011-12-02T13:23:27.932Z" + }, + "author": { + "name": "Frank Wang", + "email": "lifesinger@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/seajs/spm.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/spm/0.2.0", + "0.2.1": "http://registry.npmjs.org/spm/0.2.1", + "0.3.0": "http://registry.npmjs.org/spm/0.3.0", + "0.4.0": "http://registry.npmjs.org/spm/0.4.0" + }, + "dist": { + "0.2.0": { + "shasum": "70f3b21cdf693312e459207843f1a7e4279974e2", + "tarball": "http://registry.npmjs.org/spm/-/spm-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "455e7774a65029ad90311419bda76d09b4e5037d", + "tarball": "http://registry.npmjs.org/spm/-/spm-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "db24fec8f1f9c67f5c4c7807ec5c51ac07a67831", + "tarball": "http://registry.npmjs.org/spm/-/spm-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "3ccfa6c613f297abcaa18f77fca6e38ca43b55e1", + "tarball": "http://registry.npmjs.org/spm/-/spm-0.4.0.tgz" + } + }, + "keywords": [ + "seajs", + "module", + "package", + "optimization", + "tool" + ], + "url": "http://registry.npmjs.org/spm/" + }, + "spore": { + "name": "spore", + "description": "Generic ReST client and server. Implementation of spore in node.", + "dist-tags": { + "latest": "0.1.6" + }, + "maintainers": [ + { + "name": "francois", + "email": "francois@2metz.fr" + } + ], + "author": { + "name": "François de Metz", + "email": "francois@2metz.fr" + }, + "repository": { + "type": "git", + "url": "git://github.com/francois2metz/node-spore.git" + }, + "time": { + "modified": "2011-10-11T21:35:33.254Z", + "created": "2011-02-13T12:08:24.620Z", + "0.0.1": "2011-02-13T12:08:24.620Z", + "0.0.2": "2011-02-13T12:08:24.620Z", + "0.0.3": "2011-02-13T12:08:24.620Z", + "0.1.0": "2011-02-13T12:08:24.620Z", + "0.1.1pre": "2011-02-14T07:36:21.982Z", + "0.1.1pre2": "2011-02-14T07:38:29.024Z", + "0.1.1pre3": "2011-02-14T07:46:12.457Z", + "0.1.1pre4": "2011-02-14T07:53:57.228Z", + "0.1.1": "2011-02-14T07:57:57.219Z", + "0.1.2": "2011-03-10T02:37:06.974Z", + "0.1.3": "2011-03-13T23:32:40.782Z", + "0.1.4": "2011-06-02T17:55:38.101Z", + "0.1.5": "2011-06-19T20:53:45.638Z", + "0.1.6": "2011-10-11T21:35:33.254Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/spore/0.0.1", + "0.0.2": "http://registry.npmjs.org/spore/0.0.2", + "0.0.3": "http://registry.npmjs.org/spore/0.0.3", + "0.1.0": "http://registry.npmjs.org/spore/0.1.0", + "0.1.1pre": "http://registry.npmjs.org/spore/0.1.1pre", + "0.1.1pre3": "http://registry.npmjs.org/spore/0.1.1pre3", + "0.1.1pre4": "http://registry.npmjs.org/spore/0.1.1pre4", + "0.1.1": "http://registry.npmjs.org/spore/0.1.1", + "0.1.2": "http://registry.npmjs.org/spore/0.1.2", + "0.1.3": "http://registry.npmjs.org/spore/0.1.3", + "0.1.4": "http://registry.npmjs.org/spore/0.1.4", + "0.1.5": "http://registry.npmjs.org/spore/0.1.5", + "0.1.6": "http://registry.npmjs.org/spore/0.1.6" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/spore/-/spore-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/spore/-/spore-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/spore/-/spore-0.0.3.tgz" + }, + "0.1.0": { + "shasum": "4659c7c7f58c0ce234f4f1087125bece2537d099", + "tarball": "http://registry.npmjs.org/spore/-/spore-0.1.0.tgz" + }, + "0.1.1pre": { + "shasum": "f5cb3f358ddca578aaae8e6d7ae6b3aa1d14a83f", + "tarball": "http://registry.npmjs.org/spore/-/spore-0.1.1pre.tgz" + }, + "0.1.1pre3": { + "shasum": "4df176b4f87cb1076eff5181751d89d2e3736f40", + "tarball": "http://registry.npmjs.org/spore/-/spore-0.1.1pre3.tgz" + }, + "0.1.1pre4": { + "shasum": "7a11f9b5d05c85b19ca144a0969ef8ebfb797d42", + "tarball": "http://registry.npmjs.org/spore/-/spore-0.1.1pre4.tgz" + }, + "0.1.1": { + "shasum": "7f07ceed9a2f9c40a0578d01e8c2d9cf615a9bf4", + "tarball": "http://registry.npmjs.org/spore/-/spore-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "e54ddd5979c704b1706aef589ff7d6fb10d0ec82", + "tarball": "http://registry.npmjs.org/spore/-/spore-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "69e59df293abfda250075cd4f08041ae5573d3fd", + "tarball": "http://registry.npmjs.org/spore/-/spore-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "93470515dc658a936e45d405333a6328cde2d74a", + "tarball": "http://registry.npmjs.org/spore/-/spore-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "b7cb42c0a022f92800b25b0217194b23509aa505", + "tarball": "http://registry.npmjs.org/spore/-/spore-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "498178459f3b98328d31ec0d26013103655e009c", + "tarball": "http://registry.npmjs.org/spore/-/spore-0.1.6.tgz" + } + }, + "url": "http://registry.npmjs.org/spore/" + }, + "spork": { + "name": "spork", + "description": "spawn a child process and setup rpc to it with one easy utensil.", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-05-22T08:40:56.577Z", + "created": "2011-05-22T08:40:54.823Z", + "0.0.0": "2011-05-22T08:40:56.577Z" + }, + "author": { + "name": "Dominic Tarr" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/spork/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "6000a230cb401167817989eb8e09301aa731f7ec", + "tarball": "http://registry.npmjs.org/spork/-/spork-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/spork/" + }, + "Spot": { + "name": "Spot", + "description": "Http Rest Client", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "jozef.dransfield", + "email": "Jozef.Dransfield@me.com" + } + ], + "time": { + "modified": "2011-09-16T12:38:59.556Z", + "created": "2011-09-16T12:38:58.503Z", + "0.0.1": "2011-09-16T12:38:59.556Z" + }, + "author": { + "name": "Jozef Dransfield", + "email": "Jozef.Dransfield@me.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/Spot/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "0f09a8777edcd4569369e3ed1b943057198c46c1", + "tarball": "http://registry.npmjs.org/Spot/-/Spot-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/Spot/" + }, + "spotify": { + "name": "spotify", + "description": "A Spotify API library for node.js", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "peol", + "email": "peolanha@gmail.com" + } + ], + "time": { + "modified": "2011-08-06T09:59:25.997Z", + "created": "2011-08-06T09:59:25.296Z", + "0.1.0": "2011-08-06T09:59:25.997Z" + }, + "author": { + "name": "Andrée Hansson", + "email": "peolanha@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/peol/node-spotify.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/spotify/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "3ce2712a73baf6deabd639d709b6e3fb6ad2af48", + "tarball": "http://registry.npmjs.org/spotify/-/spotify-0.1.0.tgz" + } + }, + "keywords": [ + "spotify", + "music", + "web service" + ], + "url": "http://registry.npmjs.org/spotify/" + }, + "spotify-metadata": { + "name": "spotify-metadata", + "description": "Spotify api wrapper. Metadata lookup and search. Works with Spotify and http uris", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "roncioso", + "email": "luca@smashup.it" + } + ], + "time": { + "modified": "2011-01-12T22:39:55.104Z", + "created": "2011-01-12T22:39:54.669Z", + "0.0.1": "2011-01-12T22:39:55.104Z" + }, + "author": { + "name": "Luca Manno", + "email": "luca@smashup.it", + "url": "http://i.smashup.it" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/spotify-metadata/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "4bc697155303cd719c983356ba97c4b4f6f26685", + "tarball": "http://registry.npmjs.org/spotify-metadata/-/spotify-metadata-0.0.1.tgz" + } + }, + "keywords": [ + "spotify", + "spotify metadata", + "lookup", + "search" + ], + "url": "http://registry.npmjs.org/spotify-metadata/" + }, + "spotlight": { + "name": "spotlight", + "description": "An object crawler/property search library that works on nearly all JavaScript platforms.", + "dist-tags": { + "latest": "0.1.338" + }, + "maintainers": [ + { + "name": "jdalton", + "email": "john@fusejs.com" + } + ], + "time": { + "modified": "2011-11-22T06:51:58.962Z", + "created": "2011-08-10T06:00:22.406Z", + "0.1.337": "2011-08-10T06:01:04.187Z", + "0.1.338": "2011-11-22T06:51:58.962Z" + }, + "author": { + "name": "John-David Dalton", + "email": "john@fusejs.com", + "url": "http://allyoucanleet.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/bestiejs/spotlight.js.git" + }, + "versions": { + "0.1.337": "http://registry.npmjs.org/spotlight/0.1.337", + "0.1.338": "http://registry.npmjs.org/spotlight/0.1.338" + }, + "dist": { + "0.1.337": { + "shasum": "b39b8ca40501a0bd0af8a9f7719e520eefa50064", + "tarball": "http://registry.npmjs.org/spotlight/-/spotlight-0.1.337.tgz" + }, + "0.1.338": { + "shasum": "7b2f0a36e0d37aeb3c1620645bd7123d39fa513c", + "tarball": "http://registry.npmjs.org/spotlight/-/spotlight-0.1.338.tgz" + } + }, + "keywords": [ + "crawl", + "find", + "search", + "utility" + ], + "url": "http://registry.npmjs.org/spotlight/" + }, + "SpotlightJS": { + "name": "SpotlightJS", + "description": "Pure JS client for DBpedia Spotlight service", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "m1ci", + "email": "dojcinovski.milan@gmail.com" + } + ], + "time": { + "modified": "2011-10-19T14:04:03.535Z", + "created": "2011-10-19T14:04:01.921Z", + "0.0.1": "2011-10-19T14:04:03.535Z" + }, + "author": { + "name": "m1ci - Milan Dojchinovski -", + "email": "http://www.dojchinovski.mk" + }, + "repository": { + "type": "git", + "url": "git://github.com/m1ci/SpotlightJS.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/SpotlightJS/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "911671497808f5e964eb3f80715305562fdad173", + "tarball": "http://registry.npmjs.org/SpotlightJS/-/SpotlightJS-0.0.1.tgz" + } + }, + "keywords": [ + "DBpedia", + "Spotlight", + "client", + "anntation" + ], + "url": "http://registry.npmjs.org/SpotlightJS/" + }, + "spread": { + "name": "spread", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "iwater", + "email": "iwater@gmail.com" + } + ], + "time": { + "modified": "2011-05-02T11:02:09.741Z", + "created": "2011-05-02T11:02:08.496Z", + "0.0.1": "2011-05-02T11:02:09.742Z" + }, + "author": { + "name": "iwater", + "email": "iwater@gmail.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:iwater/node-spread-native.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/spread/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "cea16d3ffb632a58e944d9c4841b9f2a45edae06", + "tarball": "http://registry.npmjs.org/spread/-/spread-0.0.1.tgz" + } + }, + "keywords": [ + "spread" + ], + "url": "http://registry.npmjs.org/spread/" + }, + "spreadsheet": { + "name": "spreadsheet", + "description": "A CommonJS module for reading a Google Spreadsheet.", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "slaskis", + "email": "robert@publicclass.se" + } + ], + "time": { + "modified": "2011-07-06T00:09:18.388Z", + "created": "2011-02-08T15:08:11.274Z", + "0.1.1": "2011-02-08T15:08:11.540Z", + "0.1.2": "2011-02-08T19:37:16.449Z", + "0.2.0": "2011-02-15T10:35:29.896Z", + "0.2.1": "2011-02-23T08:57:14.583Z", + "0.3.0": "2011-07-06T00:09:18.388Z" + }, + "author": { + "name": "Robert Sköld", + "email": "robert@publicclass.se" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/spreadsheet/0.1.1", + "0.1.2": "http://registry.npmjs.org/spreadsheet/0.1.2", + "0.2.0": "http://registry.npmjs.org/spreadsheet/0.2.0", + "0.2.1": "http://registry.npmjs.org/spreadsheet/0.2.1", + "0.3.0": "http://registry.npmjs.org/spreadsheet/0.3.0" + }, + "dist": { + "0.1.1": { + "shasum": "4240204fd7a2eb76e71964b8b7fe66adb0c9f6b6", + "tarball": "http://registry.npmjs.org/spreadsheet/-/spreadsheet-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "5bce7d327c05547f53b4df4dde55c09f32c39639", + "tarball": "http://registry.npmjs.org/spreadsheet/-/spreadsheet-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "251294f9aa058e995fbfd943f2bc888d6bf56fcb", + "tarball": "http://registry.npmjs.org/spreadsheet/-/spreadsheet-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "1d0ad6af6f09fe00e67e64446ce761e0202971a2", + "tarball": "http://registry.npmjs.org/spreadsheet/-/spreadsheet-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "6d495431636ec6e93e7985c69d21fd326d8fb552", + "tarball": "http://registry.npmjs.org/spreadsheet/-/spreadsheet-0.3.0.tgz" + } + }, + "keywords": [ + "google", + "spreadsheets", + "gdata" + ], + "url": "http://registry.npmjs.org/spreadsheet/" + }, + "spreadsheets": { + "name": "spreadsheets", + "description": "A node.js client for Google Spreadsheets API", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "okubo", + "email": "okubo@east-cloud.co.jp" + } + ], + "time": { + "modified": "2011-06-18T04:30:44.486Z", + "created": "2011-06-18T04:30:43.458Z", + "0.1.0": "2011-06-18T04:30:44.486Z" + }, + "author": { + "name": "EastCloud", + "email": "info@east-cloud.co.jp" + }, + "repository": { + "type": "git", + "url": "git://github.com/EastCloud/node-spreadsheets.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/spreadsheets/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "821c4c88789b913c1260b227649ae2aaaae2895f", + "tarball": "http://registry.npmjs.org/spreadsheets/-/spreadsheets-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/spreadsheets/" + }, + "sprintf": { + "name": "sprintf", + "description": "Sprintf() for node.js", + "dist-tags": { + "latest": "0.1.1", + "stable": "0.1.1" + }, + "maintainers": [ + { + "name": "maritz", + "email": "moritz@mpeters.biz" + } + ], + "author": { + "name": "Moritz Peters" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/sprintf/0.1.0", + "0.1.1": "http://registry.npmjs.org/sprintf/0.1.1" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/sprintf/-/sprintf-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://registry.npmjs.org/sprintf/-/sprintf-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/sprintf/" + }, + "spruce": { + "name": "spruce", + "description": "Spruce Configurable Logging Library", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "markpneyer", + "email": "mark@markpneyer.com" + } + ], + "time": { + "modified": "2011-05-20T16:44:34.372Z", + "created": "2011-04-19T20:51:08.156Z", + "0.1.0": "2011-04-19T20:51:08.502Z", + "0.1.1": "2011-05-18T00:24:36.556Z", + "0.1.2": "2011-05-20T16:44:34.372Z" + }, + "author": { + "name": "Mark P Neyer", + "email": "Mark@MarkPNeyer.com", + "url": "http://www.markpneyer.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/MarkPNeyer/spruce.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/spruce/0.1.0", + "0.1.1": "http://registry.npmjs.org/spruce/0.1.1", + "0.1.2": "http://registry.npmjs.org/spruce/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "12c2f5555bfa3d9d6060ea2611ea2c466279ddf4", + "tarball": "http://registry.npmjs.org/spruce/-/spruce-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "29446f4c3b348622a8c87b5111a4e0cd574e22fe", + "tarball": "http://registry.npmjs.org/spruce/-/spruce-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "7d485cc754fc4d7b6522d3d99df86d262c8af17b", + "tarball": "http://registry.npmjs.org/spruce/-/spruce-0.1.2.tgz" + } + }, + "keywords": [ + "log", + "logger", + "logging" + ], + "url": "http://registry.npmjs.org/spruce/" + }, + "spy": { + "name": "spy", + "description": "Realtime data syncing made easy", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "ecto", + "email": "diffference@gmail.com" + } + ], + "time": { + "modified": "2011-07-22T18:09:14.755Z", + "created": "2011-07-22T18:09:14.677Z", + "0.0.0": "2011-07-22T18:09:14.755Z" + }, + "author": { + "name": "Cam Pedersen", + "email": "diffference@gmail.com", + "url": "http://campedersen.com" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/spy/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "9b12e1224de375a3c1ce7f603188a72d023bfa5d", + "tarball": "http://registry.npmjs.org/spy/-/spy-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/spy/" + }, + "sql": { + "name": "sql", + "description": "sql builder", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "brianc", + "email": "brian.m.carlson@gmail.com" + } + ], + "time": { + "modified": "2011-09-01T05:29:26.238Z", + "created": "2011-08-12T05:25:23.642Z", + "0.0.1": "2011-08-12T05:25:24.451Z", + "0.0.2": "2011-09-01T05:29:26.238Z" + }, + "author": { + "name": "brianc", + "email": "brian.m.carlson@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/brianc/node-sql.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/sql/0.0.1", + "0.0.2": "http://registry.npmjs.org/sql/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "04cb06965d46ffbd852fca533654fd410f5ad642", + "tarball": "http://registry.npmjs.org/sql/-/sql-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "9b03ab7f04bb046b99c21fc1d02be9a2d04a7525", + "tarball": "http://registry.npmjs.org/sql/-/sql-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/sql/" + }, + "sql-generator": { + "name": "sql-generator", + "description": "SQL Generator", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "shot056", + "email": "shot056@gmail.com" + } + ], + "time": { + "modified": "2011-10-26T11:17:12.788Z", + "created": "2011-10-26T11:17:09.220Z", + "0.0.1": "2011-10-26T11:17:12.788Z" + }, + "author": { + "name": "Shota Takayama", + "email": "takayama@shanon.co.jp" + }, + "repository": { + "type": "git", + "url": "git://github.com/Shanon/node-sql-generator.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/sql-generator/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "8b4eca38deb571a4bb048cd1908acbf3d7a6b14a", + "tarball": "http://registry.npmjs.org/sql-generator/-/sql-generator-0.0.1.tgz" + } + }, + "keywords": [ + "sql", + "database", + "rdbms" + ], + "url": "http://registry.npmjs.org/sql-generator/" + }, + "sql-parser": { + "name": "sql-parser", + "description": "Lexer and Parser for SQL Syntax", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "andykent", + "email": "andy.kent@me.com" + } + ], + "time": { + "modified": "2011-12-07T15:03:25.315Z", + "created": "2011-09-30T14:53:35.187Z", + "0.1.1": "2011-12-07T15:03:25.315Z", + "0.1.2": "2011-12-07T15:03:25.315Z", + "0.1.3": "2011-12-07T15:03:25.315Z", + "0.1.4": "2011-12-07T15:03:25.315Z", + "0.1.5": "2011-12-07T15:03:25.315Z", + "0.1.6": "2011-12-07T15:03:25.315Z", + "0.1.7": "2011-12-07T15:03:25.315Z", + "0.1.8": "2011-12-07T15:03:25.315Z", + "0.1.9": "2011-11-23T17:58:22.006Z", + "0.2.0": "2011-11-29T00:01:30.439Z", + "0.2.1": "2011-11-29T17:58:10.320Z", + "0.3.0": "2011-12-07T15:03:25.315Z" + }, + "author": { + "name": "Andy Kent", + "email": "andy@forward.co.uk" + }, + "repository": { + "type": "git", + "url": "git://github.com/forward/sql-parser.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/sql-parser/0.1.1", + "0.1.2": "http://registry.npmjs.org/sql-parser/0.1.2", + "0.1.3": "http://registry.npmjs.org/sql-parser/0.1.3", + "0.1.4": "http://registry.npmjs.org/sql-parser/0.1.4", + "0.1.5": "http://registry.npmjs.org/sql-parser/0.1.5", + "0.1.6": "http://registry.npmjs.org/sql-parser/0.1.6", + "0.1.7": "http://registry.npmjs.org/sql-parser/0.1.7", + "0.1.8": "http://registry.npmjs.org/sql-parser/0.1.8", + "0.1.9": "http://registry.npmjs.org/sql-parser/0.1.9", + "0.2.0": "http://registry.npmjs.org/sql-parser/0.2.0", + "0.2.1": "http://registry.npmjs.org/sql-parser/0.2.1", + "0.3.0": "http://registry.npmjs.org/sql-parser/0.3.0" + }, + "dist": { + "0.1.1": { + "shasum": "aba5f6cb5c3ee2585844905ab2de10fae76d86d2", + "tarball": "http://registry.npmjs.org/sql-parser/-/sql-parser-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "19aff803ff9e0eccb6c16a62beab29e9b6046612", + "tarball": "http://registry.npmjs.org/sql-parser/-/sql-parser-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "2e82cf058e7f337e65fa302e9a38753f79a54d7b", + "tarball": "http://registry.npmjs.org/sql-parser/-/sql-parser-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "c6fba5bf2ba3c9580d57c1f68b07819cacd16f71", + "tarball": "http://registry.npmjs.org/sql-parser/-/sql-parser-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "b61c4f1889de1534c4d1c952aea6b8b67bcfac8c", + "tarball": "http://registry.npmjs.org/sql-parser/-/sql-parser-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "a13d65f1c6bdcfd82eb35cbe72f506808735abb9", + "tarball": "http://registry.npmjs.org/sql-parser/-/sql-parser-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "592b1463fe27d567a437e14755bf83f41435a758", + "tarball": "http://registry.npmjs.org/sql-parser/-/sql-parser-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "b6f15427d6cb9d7594b83ab4bf108faad9193c5a", + "tarball": "http://registry.npmjs.org/sql-parser/-/sql-parser-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "150d0bfdc1237672d4712897a36354326b0b631e", + "tarball": "http://registry.npmjs.org/sql-parser/-/sql-parser-0.1.9.tgz" + }, + "0.2.0": { + "shasum": "2b0bee67a19175631a0a68dfabf2be0d2bbcd3f9", + "tarball": "http://registry.npmjs.org/sql-parser/-/sql-parser-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "80d06ff4f44243019758d0b2950ee19b98a65443", + "tarball": "http://registry.npmjs.org/sql-parser/-/sql-parser-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "6516e16a663557b3770866b403ea2a2d0d6a791d", + "tarball": "http://registry.npmjs.org/sql-parser/-/sql-parser-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/sql-parser/" + }, + "sqlite": { + "name": "sqlite", + "description": "SQLite3 bindings for Node", + "dist-tags": { + "latest": "1.0.4" + }, + "maintainers": [ + { + "name": "orlandov", + "email": "ovazquez@gmail.com" + } + ], + "time": { + "modified": "2011-04-18T20:18:20.323Z", + "created": "2011-02-03T06:56:12.414Z", + "1.0.2": "2011-02-03T06:56:12.788Z", + "1.0.3": "2011-03-03T07:04:05.083Z", + "1.0.4": "2011-04-18T20:18:20.323Z" + }, + "author": { + "name": "Orlando Vazquez", + "email": "ovazquez@gmail.com", + "url": "http://2wycked.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/orlandov/node-sqlite.git" + }, + "versions": { + "1.0.2": "http://registry.npmjs.org/sqlite/1.0.2", + "1.0.3": "http://registry.npmjs.org/sqlite/1.0.3", + "1.0.4": "http://registry.npmjs.org/sqlite/1.0.4" + }, + "dist": { + "1.0.2": { + "shasum": "d0d2c234d3ffe2dcca2fcffb1709d12b02aa325c", + "tarball": "http://registry.npmjs.org/sqlite/-/sqlite-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "9211d0c8ebc8184b1f49a47d34857aa0db4cd8ad", + "tarball": "http://registry.npmjs.org/sqlite/-/sqlite-1.0.3.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "0145455d0d5075fc14175d084aaa52af9ab4d47c", + "tarball": "http://registry.npmjs.org/sqlite/-/sqlite-1.0.3-0.4-sunos-5.11.tgz" + } + } + }, + "1.0.4": { + "shasum": "046d07908f37ec306723b4d347e6e1a8f4cce98e", + "tarball": "http://registry.npmjs.org/sqlite/-/sqlite-1.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/sqlite/" + }, + "sqlite-fts": { + "name": "sqlite-fts", + "description": "SQLite3 bindings for Node with FTS4 enabled", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "quartzjer", + "email": "jeremie@jabber.org" + } + ], + "time": { + "modified": "2011-12-03T14:09:35.097Z", + "created": "2011-12-03T14:09:34.571Z", + "0.0.1": "2011-12-03T14:09:35.097Z" + }, + "author": { + "name": "Jeremie Miller", + "email": "jeremie@jabber.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/quartzjer/node-sqlite-fts.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/sqlite-fts/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "623891a59cd1c0cef04c1025fb80d6ac1c31354e", + "tarball": "http://registry.npmjs.org/sqlite-fts/-/sqlite-fts-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/sqlite-fts/" + }, + "sqlite3": { + "name": "sqlite3", + "description": "Asynchronous, non-blocking SQLite3 bindings", + "dist-tags": { + "latest": "2.1.1" + }, + "maintainers": [ + { + "name": "kkaefer", + "email": "kkaefer@gmail.com" + }, + { + "name": "yhahn", + "email": "young@developmentseed.org" + }, + { + "name": "tmcw", + "email": "macwright@gmail.com" + }, + { + "name": "springmeyer", + "email": "dane@dbsgeo.com" + } + ], + "time": { + "modified": "2011-11-08T13:30:32.202Z", + "created": "2011-02-24T15:45:51.936Z", + "2.0.0": "2011-02-24T15:45:52.177Z", + "2.0.1": "2011-02-24T16:50:09.004Z", + "2.0.2": "2011-02-24T17:12:16.858Z", + "2.0.3": "2011-02-24T20:03:26.279Z", + "2.0.4": "2011-02-25T02:33:31.468Z", + "2.0.5": "2011-02-25T15:31:17.343Z", + "2.0.6": "2011-02-26T22:12:15.853Z", + "2.0.7": "2011-02-28T21:54:16.383Z", + "2.0.8": "2011-03-02T15:40:44.523Z", + "2.0.9": "2011-03-17T16:07:33.822Z", + "2.0.10": "2011-03-17T20:27:22.134Z", + "2.0.11": "2011-03-21T18:08:12.867Z", + "2.0.12": "2011-03-31T01:02:27.113Z", + "2.0.13": "2011-06-01T14:56:56.227Z", + "2.0.14": "2011-07-26T15:17:34.019Z", + "2.0.15": "2011-08-04T13:07:44.565Z", + "2.0.16": "2011-08-09T17:46:05.139Z", + "2.0.17": "2011-09-14T14:52:02.864Z", + "2.0.18": "2011-11-02T21:06:18.807Z", + "2.1.0": "2011-11-08T12:31:44.800Z", + "2.1.1": "2011-11-08T13:30:32.202Z" + }, + "author": { + "name": "Development Seed", + "email": "info@developmentseed.org", + "url": "http://developmentseed.org/" + }, + "repository": { + "type": "git", + "url": "git://github.com/developmentseed/node-sqlite3.git" + }, + "users": { + "coverslide": true + }, + "versions": { + "2.0.0": "http://registry.npmjs.org/sqlite3/2.0.0", + "2.0.1": "http://registry.npmjs.org/sqlite3/2.0.1", + "2.0.2": "http://registry.npmjs.org/sqlite3/2.0.2", + "2.0.3": "http://registry.npmjs.org/sqlite3/2.0.3", + "2.0.4": "http://registry.npmjs.org/sqlite3/2.0.4", + "2.0.5": "http://registry.npmjs.org/sqlite3/2.0.5", + "2.0.6": "http://registry.npmjs.org/sqlite3/2.0.6", + "2.0.7": "http://registry.npmjs.org/sqlite3/2.0.7", + "2.0.8": "http://registry.npmjs.org/sqlite3/2.0.8", + "2.0.9": "http://registry.npmjs.org/sqlite3/2.0.9", + "2.0.10": "http://registry.npmjs.org/sqlite3/2.0.10", + "2.0.11": "http://registry.npmjs.org/sqlite3/2.0.11", + "2.0.12": "http://registry.npmjs.org/sqlite3/2.0.12", + "2.0.13": "http://registry.npmjs.org/sqlite3/2.0.13", + "2.0.14": "http://registry.npmjs.org/sqlite3/2.0.14", + "2.0.15": "http://registry.npmjs.org/sqlite3/2.0.15", + "2.0.16": "http://registry.npmjs.org/sqlite3/2.0.16", + "2.0.17": "http://registry.npmjs.org/sqlite3/2.0.17", + "2.0.18": "http://registry.npmjs.org/sqlite3/2.0.18", + "2.1.0": "http://registry.npmjs.org/sqlite3/2.1.0", + "2.1.1": "http://registry.npmjs.org/sqlite3/2.1.1" + }, + "dist": { + "2.0.0": { + "shasum": "194a77ef22cfac674c4628e5726da3cc8953cd2d", + "tarball": "http://registry.npmjs.org/sqlite3/-/sqlite3-2.0.0.tgz" + }, + "2.0.1": { + "shasum": "38be95dee1bcb9aa20d0636c92a5023d66ecd3ad", + "tarball": "http://registry.npmjs.org/sqlite3/-/sqlite3-2.0.1.tgz" + }, + "2.0.2": { + "shasum": "fcc633a67c9f32f64384d7e867d2aca2b71dec51", + "tarball": "http://registry.npmjs.org/sqlite3/-/sqlite3-2.0.2.tgz" + }, + "2.0.3": { + "shasum": "0f2677200c7cf1d4562273f3b7c047e2ac85aa7a", + "tarball": "http://registry.npmjs.org/sqlite3/-/sqlite3-2.0.3.tgz" + }, + "2.0.4": { + "shasum": "00c545904ca6822cfe625d4483500d4904aa148d", + "tarball": "http://registry.npmjs.org/sqlite3/-/sqlite3-2.0.4.tgz" + }, + "2.0.5": { + "shasum": "68375c90ee15f2ade194eac9947d6c8b2fc83213", + "tarball": "http://registry.npmjs.org/sqlite3/-/sqlite3-2.0.5.tgz" + }, + "2.0.6": { + "shasum": "93f84a2610ef55cd989419c37f0f13a05361858f", + "tarball": "http://registry.npmjs.org/sqlite3/-/sqlite3-2.0.6.tgz" + }, + "2.0.7": { + "shasum": "ee8a92d5c84069b14989eebddb273b76efa1578f", + "tarball": "http://registry.npmjs.org/sqlite3/-/sqlite3-2.0.7.tgz" + }, + "2.0.8": { + "shasum": "0386fa0f276045d9c48b1a93912218e8bd8cb833", + "tarball": "http://registry.npmjs.org/sqlite3/-/sqlite3-2.0.8.tgz" + }, + "2.0.9": { + "shasum": "f076cec44c01bfb35be13dff2cba2e5128bb0351", + "tarball": "http://registry.npmjs.org/sqlite3/-/sqlite3-2.0.9.tgz" + }, + "2.0.10": { + "shasum": "08c80ce0f6da18dd64ad4fc5e52c716f415d2d29", + "tarball": "http://registry.npmjs.org/sqlite3/-/sqlite3-2.0.10.tgz" + }, + "2.0.11": { + "shasum": "2163498ad3f41a930739ea86ecdc0fa03328489e", + "tarball": "http://registry.npmjs.org/sqlite3/-/sqlite3-2.0.11.tgz" + }, + "2.0.12": { + "shasum": "5103ba754ca4f9e11999647d236d4a68b89c381d", + "tarball": "http://registry.npmjs.org/sqlite3/-/sqlite3-2.0.12.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "ca42df8e26f3a19f812a47978c8b96d35d3255b1", + "tarball": "http://registry.npmjs.org/sqlite3/-/sqlite3-2.0.12-0.4-sunos-5.11.tgz" + } + } + }, + "2.0.13": { + "shasum": "e589b0ff62d015fcc631733a0f78c94c31956194", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.14-darwin-10.7.0": { + "shasum": "74da7a45203c22ad4069d4cdfa5ac2b6530167c4", + "tarball": "http://registry.npmjs.org/sqlite3/-/sqlite3-2.0.13-0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.14-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/sqlite3/-/sqlite3-2.0.13.tgz" + }, + "2.0.14": { + "shasum": "eeee66e1ff59a23ada6b20a554cd688e0e19d7d2", + "tarball": "http://registry.npmjs.org/sqlite3/-/sqlite3-2.0.14.tgz" + }, + "2.0.15": { + "shasum": "da8b655c2ae537aab9bc49f06d643f0119cdec25", + "tarball": "http://registry.npmjs.org/sqlite3/-/sqlite3-2.0.15.tgz" + }, + "2.0.16": { + "shasum": "888355bdfcb425871257603a299b0a2663f98e8e", + "tarball": "http://registry.npmjs.org/sqlite3/-/sqlite3-2.0.16.tgz" + }, + "2.0.17": { + "shasum": "08f6379fb9878e1f273f4ad16bc45cae16b5638c", + "tarball": "http://registry.npmjs.org/sqlite3/-/sqlite3-2.0.17.tgz" + }, + "2.0.18": { + "shasum": "47108eefbde97f22dc3f249a516c94af41d4c4ca", + "tarball": "http://registry.npmjs.org/sqlite3/-/sqlite3-2.0.18.tgz" + }, + "2.1.0": { + "shasum": "fdfbb27d5183074bfed99c26e2e862641cc2afbe", + "tarball": "http://registry.npmjs.org/sqlite3/-/sqlite3-2.1.0.tgz" + }, + "2.1.1": { + "shasum": "31cb74d383ac165cdf78a36b6e9bba3655d95d87", + "tarball": "http://registry.npmjs.org/sqlite3/-/sqlite3-2.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/sqlite3/" + }, + "sqlize": { + "name": "sqlize", + "description": "Modified version of sequelize - MySQL ORM for Node.JS", + "dist-tags": { + "latest": "0.2.3" + }, + "maintainers": [ + { + "name": "meg", + "email": "meg@metamx.com" + } + ], + "time": { + "modified": "2011-11-12T00:16:53.475Z", + "created": "2011-11-10T22:30:09.266Z", + "0.1.0": "2011-11-10T22:30:10.077Z", + "0.2.0": "2011-11-11T02:30:34.527Z", + "0.2.1": "2011-11-11T22:43:02.327Z", + "0.2.2": "2011-11-12T00:13:21.965Z", + "0.2.3": "2011-11-12T00:16:53.475Z" + }, + "author": { + "name": "Meg Sharkey", + "email": "meg@metamx.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/sqlize/0.1.0", + "0.2.0": "http://registry.npmjs.org/sqlize/0.2.0", + "0.2.1": "http://registry.npmjs.org/sqlize/0.2.1", + "0.2.2": "http://registry.npmjs.org/sqlize/0.2.2", + "0.2.3": "http://registry.npmjs.org/sqlize/0.2.3" + }, + "dist": { + "0.1.0": { + "shasum": "99f748b0dc9e565ae82cfd492842960a80bfb6ec", + "tarball": "http://registry.npmjs.org/sqlize/-/sqlize-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "e4cad8363f52cf7764430f3502c22e10cace9f8d", + "tarball": "http://registry.npmjs.org/sqlize/-/sqlize-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "1273dad659e220fd6d4eb81fc72b6828bf88f193", + "tarball": "http://registry.npmjs.org/sqlize/-/sqlize-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "dae5555d38680a9962df83ff6e554d959ad254c9", + "tarball": "http://registry.npmjs.org/sqlize/-/sqlize-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "385851e0788d86a0591af43915b13fa0bebb2a9d", + "tarball": "http://registry.npmjs.org/sqlize/-/sqlize-0.2.3.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/sqlize/" + }, + "sqlmw": { + "name": "sqlmw", + "description": "Middleware framework for SQL in Node.js", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "jhh", + "email": "jhh@sendanor.com" + } + ], + "time": { + "modified": "2011-09-12T01:43:21.288Z", + "created": "2011-09-07T05:23:25.983Z", + "0.0.1": "2011-09-07T05:23:27.948Z", + "0.0.2": "2011-09-07T06:09:53.535Z", + "0.0.3": "2011-09-07T06:12:43.702Z", + "0.0.4": "2011-09-07T06:15:12.607Z", + "0.1.0": "2011-09-08T03:39:38.728Z", + "0.1.1": "2011-09-09T06:50:51.316Z", + "0.1.2": "2011-09-11T00:05:10.970Z", + "0.1.3": "2011-09-12T01:43:21.288Z" + }, + "author": { + "name": "Jaakko-Heikki Heusala", + "email": "jheusala@iki.fi", + "url": "http://www.jhh.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/jheusala/node-sqlmw.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/sqlmw/0.0.1", + "0.0.2": "http://registry.npmjs.org/sqlmw/0.0.2", + "0.0.3": "http://registry.npmjs.org/sqlmw/0.0.3", + "0.0.4": "http://registry.npmjs.org/sqlmw/0.0.4", + "0.1.0": "http://registry.npmjs.org/sqlmw/0.1.0", + "0.1.1": "http://registry.npmjs.org/sqlmw/0.1.1", + "0.1.2": "http://registry.npmjs.org/sqlmw/0.1.2", + "0.1.3": "http://registry.npmjs.org/sqlmw/0.1.3" + }, + "dist": { + "0.0.1": { + "shasum": "2515b1f42f1e0ded1b07beec4e61424a32f7fc54", + "tarball": "http://registry.npmjs.org/sqlmw/-/sqlmw-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "9715b26428b420ff857da2e6f7b3f181e7841708", + "tarball": "http://registry.npmjs.org/sqlmw/-/sqlmw-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "dd1d0902688c1952622a301d0a966e7f2e1344a5", + "tarball": "http://registry.npmjs.org/sqlmw/-/sqlmw-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "05bf75e63d49d1cd11591202a58c18f345f8961c", + "tarball": "http://registry.npmjs.org/sqlmw/-/sqlmw-0.0.4.tgz" + }, + "0.1.0": { + "shasum": "c62cb8b5b9df0c6e594ae0ae95f515cb03ad285b", + "tarball": "http://registry.npmjs.org/sqlmw/-/sqlmw-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "decab899fecf65804db46ad018e86a6629aec5a1", + "tarball": "http://registry.npmjs.org/sqlmw/-/sqlmw-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "6157747ec110fb27de6486e1aecf37f0b3493717", + "tarball": "http://registry.npmjs.org/sqlmw/-/sqlmw-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "460927e8ba453ff4a5cfbc95e686406bb75e455c", + "tarball": "http://registry.npmjs.org/sqlmw/-/sqlmw-0.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/sqlmw/" + }, + "squeeze": { + "name": "squeeze", + "description": "Squeeze is a Javascript API to UploadJuicer.com's image manipulation service", + "dist-tags": { + "latest": "0.5.0" + }, + "maintainers": [ + { + "name": "nsm", + "email": "nsm.nikhil@gmail.com" + } + ], + "author": { + "name": "Nikhil Marathe", + "email": "nsm.nikhil@gmail.com" + }, + "versions": { + "0.5.0": "http://registry.npmjs.org/squeeze/0.5.0" + }, + "dist": { + "0.5.0": { + "tarball": "http://packages:5984/squeeze/-/squeeze-0.5.0.tgz" + } + }, + "url": "http://registry.npmjs.org/squeeze/" + }, + "squish": { + "name": "squish", + "description": "Squish your outputs using whatever compression you like", + "dist-tags": { + "latest": "0.2.3" + }, + "maintainers": [ + { + "name": "beatgammit", + "email": "t.jameson.little@gmail.com" + } + ], + "time": { + "modified": "2011-07-16T22:36:27.216Z", + "created": "2011-06-03T04:53:22.179Z", + "0.1.0": "2011-06-03T04:53:22.576Z", + "0.1.1": "2011-07-05T08:07:59.927Z", + "0.1.2": "2011-07-13T04:24:53.462Z", + "0.2.0": "2011-07-15T06:24:42.562Z", + "0.2.1": "2011-07-16T05:47:21.539Z", + "0.2.2": "2011-07-16T22:32:55.674Z", + "0.2.3": "2011-07-16T22:36:27.216Z" + }, + "author": { + "name": "T. Jameson Little", + "email": "t.jameson.little@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/beatgammit/node-squish.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/squish/0.1.0", + "0.1.1": "http://registry.npmjs.org/squish/0.1.1", + "0.1.2": "http://registry.npmjs.org/squish/0.1.2", + "0.2.0": "http://registry.npmjs.org/squish/0.2.0", + "0.2.1": "http://registry.npmjs.org/squish/0.2.1", + "0.2.2": "http://registry.npmjs.org/squish/0.2.2", + "0.2.3": "http://registry.npmjs.org/squish/0.2.3" + }, + "dist": { + "0.1.0": { + "shasum": "6c468c43e2f4b778fbd4d1086887c27100e7017d", + "tarball": "http://registry.npmjs.org/squish/-/squish-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "829cd7c8333ece6795627cf179f6320f172b48e1", + "tarball": "http://registry.npmjs.org/squish/-/squish-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "11af1d913fd672d56526e122af4e50e7c1784373", + "tarball": "http://registry.npmjs.org/squish/-/squish-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "1fa85c91b6d499f1154743f066e6a295ea6fc296", + "tarball": "http://registry.npmjs.org/squish/-/squish-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "c7e9e11aced67db89ce7c496173c43bc3363cf31", + "tarball": "http://registry.npmjs.org/squish/-/squish-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "450253f89796e68e53bca284c52885731c219931", + "tarball": "http://registry.npmjs.org/squish/-/squish-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "769fb2e58359f139c360035fa28b23a8399c0414", + "tarball": "http://registry.npmjs.org/squish/-/squish-0.2.3.tgz" + } + }, + "keywords": [ + "compress", + "compression", + "gzip", + "chunk", + "chunked", + "stream" + ], + "url": "http://registry.npmjs.org/squish/" + }, + "sqwish": { + "name": "sqwish", + "description": "a tool for compressing CSS", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "ded", + "email": "polvero@gmail.com" + }, + { + "name": "fat", + "email": "jacobthornton@gmail.com" + } + ], + "time": { + "modified": "2011-05-24T01:41:34.815Z", + "created": "2011-04-24T02:47:57.176Z", + "0.0.1": "2011-04-24T02:47:57.772Z", + "0.0.2": "2011-04-24T03:42:24.913Z", + "0.0.3": "2011-04-24T18:12:15.424Z", + "0.0.4": "2011-04-24T19:59:15.800Z", + "0.0.5": "2011-04-24T23:07:38.208Z", + "0.0.6": "2011-04-24T23:43:03.107Z", + "0.0.7": "2011-04-25T20:03:47.591Z", + "0.0.8": "2011-04-25T21:09:04.644Z", + "0.0.9": "2011-04-25T23:57:14.359Z", + "0.1.0": "2011-04-26T06:46:53.625Z", + "0.1.1": "2011-04-26T06:54:07.145Z", + "0.1.2": "2011-04-30T21:09:36.419Z", + "0.2.0": "2011-05-24T01:41:34.815Z" + }, + "author": { + "name": "Dustin Diaz", + "email": "@ded" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/sqwish/0.0.1", + "0.0.2": "http://registry.npmjs.org/sqwish/0.0.2", + "0.0.3": "http://registry.npmjs.org/sqwish/0.0.3", + "0.0.4": "http://registry.npmjs.org/sqwish/0.0.4", + "0.0.5": "http://registry.npmjs.org/sqwish/0.0.5", + "0.0.6": "http://registry.npmjs.org/sqwish/0.0.6", + "0.0.7": "http://registry.npmjs.org/sqwish/0.0.7", + "0.0.8": "http://registry.npmjs.org/sqwish/0.0.8", + "0.0.9": "http://registry.npmjs.org/sqwish/0.0.9", + "0.1.0": "http://registry.npmjs.org/sqwish/0.1.0", + "0.1.1": "http://registry.npmjs.org/sqwish/0.1.1", + "0.1.2": "http://registry.npmjs.org/sqwish/0.1.2", + "0.2.0": "http://registry.npmjs.org/sqwish/0.2.0" + }, + "dist": { + "0.0.1": { + "shasum": "337e1e089165e300e38762d72321cc4caeb8ec3c", + "tarball": "http://registry.npmjs.org/sqwish/-/sqwish-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c99c75ccb16e815e195f9946828779cdb51a8e8c", + "tarball": "http://registry.npmjs.org/sqwish/-/sqwish-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "06b5dc3f0b475e303b7a650bc7d6614452bf96f1", + "tarball": "http://registry.npmjs.org/sqwish/-/sqwish-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "1b975ec132e0a9bb2c8291b428a000b800bb834d", + "tarball": "http://registry.npmjs.org/sqwish/-/sqwish-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "1f464fb9d057df89a463c16982b7e13786c4c612", + "tarball": "http://registry.npmjs.org/sqwish/-/sqwish-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "b8fe824b22b8473e62a7caefebb05c2803298f9a", + "tarball": "http://registry.npmjs.org/sqwish/-/sqwish-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "b391f3a4a30ef1ca2bf1526aebd410923074d6bd", + "tarball": "http://registry.npmjs.org/sqwish/-/sqwish-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "7c90fef39725dccdc77c637ef7bdf4938d18f030", + "tarball": "http://registry.npmjs.org/sqwish/-/sqwish-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "67fbd3e18cfdb2a906aed3d256f0ef39c961b633", + "tarball": "http://registry.npmjs.org/sqwish/-/sqwish-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "210079032a0849a24fce7b41c9f0a420d99c8937", + "tarball": "http://registry.npmjs.org/sqwish/-/sqwish-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "b9d48a39b098cc39f756e8e9ec0450fe1f44e7b2", + "tarball": "http://registry.npmjs.org/sqwish/-/sqwish-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "0d39d94ffe96e34b8f01a11736defba8e9254bdd", + "tarball": "http://registry.npmjs.org/sqwish/-/sqwish-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "8b7e2a8e542378d3bf30d51570b538fd815320fb", + "tarball": "http://registry.npmjs.org/sqwish/-/sqwish-0.2.0.tgz" + } + }, + "keywords": [ + "minify", + "css", + "compress" + ], + "url": "http://registry.npmjs.org/sqwish/" + }, + "srand": { + "name": "srand", + "description": "srand bindings for node - Seedable predictable pseudorandom number generator", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/isaacs/node-srand.git" + }, + "time": { + "modified": "2011-04-15T21:35:34.878Z", + "created": "2011-03-28T23:33:56.008Z", + "1.0.0": "2011-03-28T23:33:56.008Z", + "1.0.1": "2011-03-28T23:33:56.008Z" + }, + "versions": { + "1.0.1": "http://registry.npmjs.org/srand/1.0.1" + }, + "dist": { + "1.0.1": { + "shasum": "9065e7248cee93f086e060eea18f94ab00cc0a9e", + "tarball": "http://registry.npmjs.org/srand/-/srand-1.0.1.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "c4d576096000f9649cbcfcefaeed9f9c7d2101c9", + "tarball": "http://registry.npmjs.org/srand/-/srand-1.0.1-0.4-sunos-5.11.tgz" + } + } + } + }, + "url": "http://registry.npmjs.org/srand/" + }, + "srcds": { + "name": "srcds", + "description": "Tools for connection to RCON For a srcds server", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "nican", + "email": "nican132@gmail.com" + } + ], + "time": { + "modified": "2011-05-29T21:17:36.220Z", + "created": "2011-05-29T21:17:35.830Z", + "0.0.1": "2011-05-29T21:17:36.220Z" + }, + "author": { + "name": "Nican", + "email": "nican132@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/srcds/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "6abe2d710379b3268844260ed6dd4395825a1f1e", + "tarball": "http://registry.npmjs.org/srcds/-/srcds-0.0.1.tgz" + } + }, + "keywords": [ + "srcds", + "half-life", + "tf2", + "rcon" + ], + "url": "http://registry.npmjs.org/srcds/" + }, + "srs": { + "name": "srs", + "description": "Spatial reference library for node", + "dist-tags": { + "latest": "0.2.11" + }, + "maintainers": [ + { + "name": "springmeyer", + "email": "dane@dbsgeo.com" + }, + { + "name": "dmitrig01", + "email": "dmitrig01@gmail.com" + }, + { + "name": "kkaefer", + "email": "kkaefer@gmail.com" + } + ], + "time": { + "modified": "2011-11-08T02:47:11.857Z", + "created": "2011-01-18T20:27:16.601Z", + "0.1.0": "2011-01-18T20:27:16.755Z", + "0.1.1": "2011-01-27T22:02:49.649Z", + "0.1.2": "2011-05-08T01:17:17.209Z", + "0.2.0": "2011-05-12T23:30:37.788Z", + "0.2.1": "2011-05-13T00:31:08.979Z", + "0.2.2": "2011-05-13T18:10:26.429Z", + "0.2.3": "2011-05-13T22:25:16.653Z", + "0.2.4": "2011-08-08T18:43:57.299Z", + "0.2.5": "2011-08-15T17:27:03.264Z", + "0.2.6": "2011-08-23T20:29:11.664Z", + "0.2.7": "2011-08-23T21:12:59.395Z", + "0.2.8": "2011-09-16T23:08:46.323Z", + "0.2.9": "2011-10-18T00:46:16.309Z", + "0.2.10": "2011-11-08T02:46:21.045Z", + "0.2.11": "2011-11-08T02:47:11.857Z" + }, + "author": { + "name": "Dane Springmeyer", + "email": "dane@dbsgeo.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/srs/0.1.0", + "0.1.1": "http://registry.npmjs.org/srs/0.1.1", + "0.1.2": "http://registry.npmjs.org/srs/0.1.2", + "0.2.0": "http://registry.npmjs.org/srs/0.2.0", + "0.2.1": "http://registry.npmjs.org/srs/0.2.1", + "0.2.2": "http://registry.npmjs.org/srs/0.2.2", + "0.2.3": "http://registry.npmjs.org/srs/0.2.3", + "0.2.4": "http://registry.npmjs.org/srs/0.2.4", + "0.2.5": "http://registry.npmjs.org/srs/0.2.5", + "0.2.6": "http://registry.npmjs.org/srs/0.2.6", + "0.2.7": "http://registry.npmjs.org/srs/0.2.7", + "0.2.8": "http://registry.npmjs.org/srs/0.2.8", + "0.2.9": "http://registry.npmjs.org/srs/0.2.9", + "0.2.10": "http://registry.npmjs.org/srs/0.2.10", + "0.2.11": "http://registry.npmjs.org/srs/0.2.11" + }, + "dist": { + "0.1.0": { + "shasum": "63a302ea663368e893e4b4a76987cccdfdc81520", + "tarball": "http://registry.npmjs.org/srs/-/srs-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "e63c7a15b7d5df3d26a7616c12de1ff219124423", + "tarball": "http://registry.npmjs.org/srs/-/srs-0.1.1.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "c06b9327cea9587ed00036159d784bfd34189918", + "tarball": "http://registry.npmjs.org/srs/-/srs-0.1.1-0.4-sunos-5.11.tgz" + } + } + }, + "0.1.2": { + "shasum": "cc0902f355bd003e04137f18b9322b7d433001df", + "tarball": "http://registry.npmjs.org/srs/-/srs-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "1d7c23a68b82ff9ac0d16d39ea4387c2bdbe39fa", + "tarball": "http://registry.npmjs.org/srs/-/srs-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "80431eafcb844a6112f8c4c5653ea7bed8e2ceb9", + "tarball": "http://registry.npmjs.org/srs/-/srs-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "d06a844d22e0135bd8f19f731fda82f3a960f261", + "tarball": "http://registry.npmjs.org/srs/-/srs-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "2b24a1a148b7671eb8d25f5cd9ae09a521c6a281", + "tarball": "http://registry.npmjs.org/srs/-/srs-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "b14b9c1bb25842614702b6bf782ca496873f9aaf", + "tarball": "http://registry.npmjs.org/srs/-/srs-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "9d60eccb1c441ffeb3c05fc47bf4f2e94cdfc32b", + "tarball": "http://registry.npmjs.org/srs/-/srs-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "7893f56b5f46b088cdb42c843e55f0e367b4cf3a", + "tarball": "http://registry.npmjs.org/srs/-/srs-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "a3a78e63b196b18056e029346de63794d6b1ce95", + "tarball": "http://registry.npmjs.org/srs/-/srs-0.2.7.tgz" + }, + "0.2.8": { + "shasum": "dfc087bcaff12f6ec20584481bf46d31be25a022", + "tarball": "http://registry.npmjs.org/srs/-/srs-0.2.8.tgz" + }, + "0.2.9": { + "shasum": "6a17ef73b5e30313b65f7c1a152fa0df56ba2e0e", + "tarball": "http://registry.npmjs.org/srs/-/srs-0.2.9.tgz" + }, + "0.2.10": { + "shasum": "de844ab1bb85b89ea2ffe71fb554569cfc841535", + "tarball": "http://registry.npmjs.org/srs/-/srs-0.2.10.tgz" + }, + "0.2.11": { + "shasum": "f0cd61600c0a9482ea047045037ad8828053cefd", + "tarball": "http://registry.npmjs.org/srs/-/srs-0.2.11.tgz" + } + }, + "keywords": [ + "map", + "projection", + "spatialreference", + "srid", + "proj4", + "mercator" + ], + "url": "http://registry.npmjs.org/srs/" + }, + "ssa": { + "name": "ssa", + "description": "Stupid Simple Async - a testing framework", + "dist-tags": { + "latest": "0.1.10" + }, + "maintainers": [ + { + "name": "pdiemert", + "email": "pete@playup.com" + } + ], + "time": { + "modified": "2011-11-24T03:51:35.275Z", + "created": "2011-11-17T03:27:08.686Z", + "0.1.0": "2011-11-17T03:27:12.314Z", + "0.1.1": "2011-11-17T04:05:41.142Z", + "0.1.2": "2011-11-17T05:10:07.656Z", + "0.1.3": "2011-11-17T05:21:09.554Z", + "0.1.4": "2011-11-17T23:07:00.698Z", + "0.1.5": "2011-11-18T05:05:59.724Z", + "0.1.6": "2011-11-23T00:13:49.506Z", + "0.1.8": "2011-11-23T05:36:10.540Z", + "0.1.9": "2011-11-23T06:06:44.833Z", + "0.1.10": "2011-11-24T03:51:35.275Z" + }, + "author": { + "name": "Pete Diemert", + "email": "pete_diemert@msn.com" + }, + "repository": { + "type": "git", + "url": "git://github.com:pdiemert/ssa.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/ssa/0.1.0", + "0.1.1": "http://registry.npmjs.org/ssa/0.1.1", + "0.1.2": "http://registry.npmjs.org/ssa/0.1.2", + "0.1.3": "http://registry.npmjs.org/ssa/0.1.3", + "0.1.4": "http://registry.npmjs.org/ssa/0.1.4", + "0.1.5": "http://registry.npmjs.org/ssa/0.1.5", + "0.1.6": "http://registry.npmjs.org/ssa/0.1.6", + "0.1.8": "http://registry.npmjs.org/ssa/0.1.8", + "0.1.9": "http://registry.npmjs.org/ssa/0.1.9", + "0.1.10": "http://registry.npmjs.org/ssa/0.1.10" + }, + "dist": { + "0.1.0": { + "shasum": "43c404a4f2e20b16eb5913626d2dea702d485766", + "tarball": "http://registry.npmjs.org/ssa/-/ssa-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "6fad9325a6914b5d5b43b923fc674b10858bf7d4", + "tarball": "http://registry.npmjs.org/ssa/-/ssa-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "d49638ba1777d22bc39092fd431a3eaa8a83ae1b", + "tarball": "http://registry.npmjs.org/ssa/-/ssa-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "63cf2e16caf5a4e44506b67c86446de5e1878724", + "tarball": "http://registry.npmjs.org/ssa/-/ssa-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "2dfadfc195b01af40cfadd517bc9a4198eb6ec25", + "tarball": "http://registry.npmjs.org/ssa/-/ssa-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "995251af9cda59abe23f34d1a870b969e139ffc2", + "tarball": "http://registry.npmjs.org/ssa/-/ssa-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "6a3a127fc9129883ab753dbf6d1cb190d29c834c", + "tarball": "http://registry.npmjs.org/ssa/-/ssa-0.1.6.tgz" + }, + "0.1.8": { + "shasum": "56b336fb188cd097a2a7e60ea212479f1bb03dfc", + "tarball": "http://registry.npmjs.org/ssa/-/ssa-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "3e47b197902aa8027f9cc945a608fd42baa83a81", + "tarball": "http://registry.npmjs.org/ssa/-/ssa-0.1.9.tgz" + }, + "0.1.10": { + "shasum": "4a41fd809a937a6430590bc67a3f10f1c1280fe1", + "tarball": "http://registry.npmjs.org/ssa/-/ssa-0.1.10.tgz" + } + }, + "keywords": [ + "testing", + "async", + "vows", + "apieasy", + "rest" + ], + "url": "http://registry.npmjs.org/ssa/" + }, + "sserve": { + "name": "sserve", + "description": "Light-weight static file server", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "strager", + "email": "strager.nds@gmail.com" + } + ], + "time": { + "modified": "2011-12-13T20:57:38.974Z", + "created": "2011-07-29T08:05:55.634Z", + "0.1.0": "2011-12-07T07:24:42.507Z", + "0.2.0": "2011-12-07T07:24:42.507Z", + "0.2.1": "2011-12-07T07:37:42.467Z", + "0.2.2": "2011-12-13T20:57:38.974Z" + }, + "author": { + "name": "Matt Glazar", + "email": "matt.glazar@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/sserve/0.1.0", + "0.2.0": "http://registry.npmjs.org/sserve/0.2.0", + "0.2.1": "http://registry.npmjs.org/sserve/0.2.1", + "0.2.2": "http://registry.npmjs.org/sserve/0.2.2" + }, + "dist": { + "0.1.0": { + "shasum": "b420e135a1f1d3bee703e2d20c3802155039593a", + "tarball": "http://registry.npmjs.org/sserve/-/sserve-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "f2193b02b6c501593bb695386bd0add9a891db11", + "tarball": "http://registry.npmjs.org/sserve/-/sserve-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "e6f825e7dfcf1d71379600330bdfd28bfeb5eea7", + "tarball": "http://registry.npmjs.org/sserve/-/sserve-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "3bb86f1b9d31524d6be9a5fb38588832924082d7", + "tarball": "http://registry.npmjs.org/sserve/-/sserve-0.2.2.tgz" + } + }, + "url": "http://registry.npmjs.org/sserve/" + }, + "ssh": { + "name": "ssh", + "description": "Write ssh servers in node.js", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-03-20T10:15:32.857Z", + "created": "2011-03-20T10:15:32.260Z", + "0.0.1": "2011-03-20T10:15:32.857Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-ssh.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ssh/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "da7f80627233017c7ab79217ab09b7734413c7d2", + "tarball": "http://registry.npmjs.org/ssh/-/ssh-0.0.1.tgz" + } + }, + "keywords": [ + "ssh", + "sshd", + "server" + ], + "url": "http://registry.npmjs.org/ssh/" + }, + "ssh-agent": { + "name": "ssh-agent", + "description": "An API for interacting with the SSH Agent.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "mcavage", + "email": "mcavage@gmail.com" + } + ], + "time": { + "modified": "2011-06-23T21:39:48.345Z", + "created": "2011-06-23T21:39:47.786Z", + "0.1.0": "2011-06-23T21:39:48.345Z" + }, + "author": { + "name": "Mark Cavage", + "email": "mcavage@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mcavage/node-ssh-agent.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/ssh-agent/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "57d8fb9af927f4b5ba8398f7a2a219b7f7b18900", + "tarball": "http://registry.npmjs.org/ssh-agent/-/ssh-agent-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/ssh-agent/" + }, + "sshmq": { + "name": "sshmq", + "description": "SSH wrapped, key-authenticated messaging", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "tristanls", + "email": "tristan.slominski@gmail.com" + } + ], + "time": { + "modified": "2011-08-10T04:14:25.459Z", + "created": "2011-08-10T04:14:20.848Z", + "0.1.0": "2011-08-10T04:14:25.459Z" + }, + "author": { + "name": "Tristan Slominski", + "email": "tristan.slominski@gmail.com", + "url": "http://github.com/tristanls" + }, + "repository": { + "type": "git", + "url": "git://github.com/tristanls/sshmq.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/sshmq/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "57558f6a2fa466688c89ecc940ee4573d2af3f13", + "tarball": "http://registry.npmjs.org/sshmq/-/sshmq-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/sshmq/" + }, + "ssjquery": { + "name": "ssjquery", + "dist-tags": { + "latest": "0.4.6" + }, + "maintainers": [ + { + "name": "illume", + "email": "renesd@gmail.com" + } + ], + "time": { + "modified": "2011-10-01T10:41:29.363Z", + "created": "2011-09-25T09:05:26.081Z", + "0.4.0": "2011-09-25T09:05:29.396Z", + "0.4.1": "2011-09-25T09:13:13.257Z", + "0.4.3": "2011-09-28T17:58:05.691Z", + "0.4.4": "2011-10-01T07:06:45.925Z", + "0.4.5": "2011-10-01T09:53:50.946Z", + "0.4.6": "2011-10-01T10:41:29.363Z" + }, + "author": { + "name": "Rene Dudfield", + "email": "renesd@gmail.com", + "url": "http://www.poweredbybees.com/" + }, + "repository": { + "type": "hg", + "url": "https://bitbucket.org/illume/ssjquery/js" + }, + "description": "ssjquery is a tool to help with server side jQuery", + "versions": { + "0.4.0": "http://registry.npmjs.org/ssjquery/0.4.0", + "0.4.1": "http://registry.npmjs.org/ssjquery/0.4.1", + "0.4.3": "http://registry.npmjs.org/ssjquery/0.4.3", + "0.4.4": "http://registry.npmjs.org/ssjquery/0.4.4", + "0.4.5": "http://registry.npmjs.org/ssjquery/0.4.5", + "0.4.6": "http://registry.npmjs.org/ssjquery/0.4.6" + }, + "dist": { + "0.4.0": { + "shasum": "447501271bc8691df806b800e1e01267b8a02c97", + "tarball": "http://registry.npmjs.org/ssjquery/-/ssjquery-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "b32991bda2229a6f644b29c34ee814237cac467a", + "tarball": "http://registry.npmjs.org/ssjquery/-/ssjquery-0.4.1.tgz" + }, + "0.4.3": { + "shasum": "01c79d2f4cf2fbf6791008aa058d396e949741aa", + "tarball": "http://registry.npmjs.org/ssjquery/-/ssjquery-0.4.3.tgz" + }, + "0.4.4": { + "shasum": "f70fed5137f92b1250e95364cb79d08154230133", + "tarball": "http://registry.npmjs.org/ssjquery/-/ssjquery-0.4.4.tgz" + }, + "0.4.5": { + "shasum": "bff4861ebee32c1477042728f3a37032a2178e45", + "tarball": "http://registry.npmjs.org/ssjquery/-/ssjquery-0.4.5.tgz" + }, + "0.4.6": { + "shasum": "0757dafd77ee466c5a686a45c56356b2033b40a9", + "tarball": "http://registry.npmjs.org/ssjquery/-/ssjquery-0.4.6.tgz" + } + }, + "keywords": [ + "jQuery", + "jsdom", + "server", + "side" + ], + "url": "http://registry.npmjs.org/ssjquery/" + }, + "Sslac": { + "name": "Sslac", + "description": "A slick way to do prototypical classes in JavaScript, even if it feels a bit backwards", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "jakobo", + "email": "jakob@felocity.com" + } + ], + "time": { + "modified": "2011-04-27T00:02:31.279Z", + "created": "2011-04-27T00:02:30.977Z", + "0.0.2": "2011-04-27T00:02:31.279Z" + }, + "author": { + "name": "Jakob Heuser", + "email": "jakob@felocity.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Jakobo/Sslac.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/Sslac/0.0.2" + }, + "dist": { + "0.0.2": { + "shasum": "4a028cabb67267ebad83698ca771611383d2537b", + "tarball": "http://registry.npmjs.org/Sslac/-/Sslac-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/Sslac/" + }, + "stache": { + "name": "stache", + "description": "mustache templating for your express apps", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "fat", + "email": "jacobthornton@gmail.com" + } + ], + "time": { + "modified": "2011-07-04T20:22:00.838Z", + "created": "2011-03-27T08:31:33.937Z", + "0.0.1": "2011-03-27T08:31:34.346Z", + "0.0.2": "2011-03-27T08:35:59.829Z", + "0.0.3": "2011-05-25T22:04:50.614Z", + "0.0.4": "2011-07-04T18:16:23.704Z", + "0.1.0": "2011-07-04T20:22:00.838Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/stache/0.0.1", + "0.0.2": "http://registry.npmjs.org/stache/0.0.2", + "0.0.3": "http://registry.npmjs.org/stache/0.0.3", + "0.0.4": "http://registry.npmjs.org/stache/0.0.4", + "0.1.0": "http://registry.npmjs.org/stache/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "b111d582f85ebdf668a9224884f9c5631cd57226", + "tarball": "http://registry.npmjs.org/stache/-/stache-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "81924fad10c8a6c7df0b3548ae785c9da7c1afb6", + "tarball": "http://registry.npmjs.org/stache/-/stache-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "e551305af445aed65bd63497edd2186238d96949", + "tarball": "http://registry.npmjs.org/stache/-/stache-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "babec60669388bc64aa7dd865e98464aeee8a236", + "tarball": "http://registry.npmjs.org/stache/-/stache-0.0.4.tgz" + }, + "0.1.0": { + "shasum": "a81d28fa45171cfa3545fe8b3b39d779f34ac3c5", + "tarball": "http://registry.npmjs.org/stache/-/stache-0.1.0.tgz" + } + }, + "keywords": [ + "mustache", + "express", + "stache" + ], + "url": "http://registry.npmjs.org/stache/" + }, + "stack": { + "name": "stack", + "description": "Stack is a minimal http module system for node.js", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "creationix", + "email": "tim@creationix.com" + } + ], + "time": { + "modified": "2011-11-18T19:14:09.649Z", + "created": "2010-12-26T07:17:29.689Z", + "0.0.1": "2010-12-26T07:17:30.009Z", + "0.0.2": "2010-12-26T07:35:33.615Z", + "0.0.3": "2010-12-26T07:44:46.863Z", + "0.1.0": "2011-11-18T19:14:09.649Z" + }, + "author": { + "name": "Tim Caswell", + "email": "tim@creationix.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/creationix/stack.git" + }, + "users": { + "creationix": true + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/stack/0.0.1", + "0.0.2": "http://registry.npmjs.org/stack/0.0.2", + "0.0.3": "http://registry.npmjs.org/stack/0.0.3", + "0.1.0": "http://registry.npmjs.org/stack/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "f14b0669893c8baa05b138a909562bfc5b1c0ed6", + "tarball": "http://registry.npmjs.org/stack/-/stack-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "971a2fa470e656c560c50cec8c15c981313a43b8", + "tarball": "http://registry.npmjs.org/stack/-/stack-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "5d281ba375396d59542093e85c7ef4ca3792b0fa", + "tarball": "http://registry.npmjs.org/stack/-/stack-0.0.3.tgz" + }, + "0.1.0": { + "shasum": "e923598a9be51e617682cb21cf1b2818a449ada2", + "tarball": "http://registry.npmjs.org/stack/-/stack-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/stack/" + }, + "stack-trace": { + "name": "stack-trace", + "description": "Get v8 stack traces as an array of CallSite objects.", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "felixge", + "email": "felix@debuggable.com" + } + ], + "time": { + "modified": "2011-08-01T16:58:53.033Z", + "created": "2011-06-25T16:09:15.530Z", + "0.0.1": "2011-06-25T16:09:16.216Z", + "0.0.2": "2011-07-13T08:16:56.532Z", + "0.0.3": "2011-07-13T21:31:27.910Z", + "0.0.4": "2011-07-17T08:38:37.454Z", + "0.0.5": "2011-07-20T16:10:40.557Z", + "0.0.6": "2011-08-01T16:58:53.033Z" + }, + "author": { + "name": "Felix Geisendörfer", + "email": "felix@debuggable.com", + "url": "http://debuggable.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/felixge/node-stack-trace.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/stack-trace/0.0.1", + "0.0.2": "http://registry.npmjs.org/stack-trace/0.0.2", + "0.0.3": "http://registry.npmjs.org/stack-trace/0.0.3", + "0.0.4": "http://registry.npmjs.org/stack-trace/0.0.4", + "0.0.5": "http://registry.npmjs.org/stack-trace/0.0.5", + "0.0.6": "http://registry.npmjs.org/stack-trace/0.0.6" + }, + "dist": { + "0.0.1": { + "shasum": "6b4c583666e4996a3616008b67ef9f5247101271", + "tarball": "http://registry.npmjs.org/stack-trace/-/stack-trace-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "17df29a3e16f2b1f424b71d4a1bdcf5a18aed2e5", + "tarball": "http://registry.npmjs.org/stack-trace/-/stack-trace-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "b10dc24b9e86a242cc69fbabf0f60d6284b20e12", + "tarball": "http://registry.npmjs.org/stack-trace/-/stack-trace-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "f278a4dd79608f5ceb80f4fd7064842934a40f4a", + "tarball": "http://registry.npmjs.org/stack-trace/-/stack-trace-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "996a48767d9fd68834012dec500abaefcd49ac3c", + "tarball": "http://registry.npmjs.org/stack-trace/-/stack-trace-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "1e719bd6a2629ff09c189e17a9ef902a94fc5db0", + "tarball": "http://registry.npmjs.org/stack-trace/-/stack-trace-0.0.6.tgz" + } + }, + "url": "http://registry.npmjs.org/stack-trace/" + }, + "stack.io": { + "name": "stack.io", + "description": "Distributed Event library", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "shad", + "email": "sam@dotcloud.com" + } + ], + "time": { + "modified": "2011-11-14T21:28:39.096Z", + "created": "2011-11-14T21:28:37.011Z", + "0.1.2": "2011-11-14T21:28:39.096Z" + }, + "author": { + "name": "Samuel Alba", + "email": "sam@dotcloud.com", + "url": "http://www.dotcloud.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/dotcloud/stack.io.git" + }, + "versions": { + "0.1.2": "http://registry.npmjs.org/stack.io/0.1.2" + }, + "dist": { + "0.1.2": { + "shasum": "c87dba35936a752342a117df2cfe893d5db4766b", + "tarball": "http://registry.npmjs.org/stack.io/-/stack.io-0.1.2.tgz" + } + }, + "keywords": [ + "message passing", + "rpc", + "redis", + "push pull", + "pub sub", + "remote", + "communication" + ], + "url": "http://registry.npmjs.org/stack.io/" + }, + "stack.static": { + "name": "stack.static", + "description": "Stack.static is a static file server for Stack and Node.js", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "technoweenie", + "email": "technoweenie@gmail.com" + } + ], + "time": { + "modified": "2010-12-27T21:21:45.834Z", + "created": "2010-12-26T17:32:44.597Z", + "0.0.1": "2010-12-26T17:32:45.185Z", + "0.0.2": "2010-12-26T17:41:44.406Z", + "0.0.3": "2010-12-27T21:21:45.834Z" + }, + "author": { + "name": "Rick Olson", + "email": "technoweenie@gmail.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/technoweenie/stack.static.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/stack.static/0.0.1", + "0.0.2": "http://registry.npmjs.org/stack.static/0.0.2", + "0.0.3": "http://registry.npmjs.org/stack.static/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "1bcbbcf4bc63040b40d8e16195f416c43fbb8278", + "tarball": "http://registry.npmjs.org/stack.static/-/stack.static-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "a465bf04ca4865189ab3826a8e0977f35ed366d9", + "tarball": "http://registry.npmjs.org/stack.static/-/stack.static-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "1372845b18adb8c0574d601bdf385f55d23ec233", + "tarball": "http://registry.npmjs.org/stack.static/-/stack.static-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/stack.static/" + }, + "stack2": { + "name": "stack2", + "description": "Fork of 'Stack' with some added goodies that won't be included in the main repo.", + "dist-tags": { + "latest": "2.0.3" + }, + "maintainers": [ + { + "name": "TooTallNate", + "email": "nathan@tootallnate.net" + } + ], + "time": { + "modified": "2011-03-28T21:53:15.284Z", + "created": "2011-03-28T21:53:14.578Z", + "2.0.3": "2011-03-28T21:53:15.284Z" + }, + "author": { + "name": "Tim Caswell", + "email": "tim@creationix.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/TooTallNate/stack2.git" + }, + "versions": { + "2.0.3": "http://registry.npmjs.org/stack2/2.0.3" + }, + "dist": { + "2.0.3": { + "shasum": "be7b444d5eef6d79d74312cd9b559d6a787c0412", + "tarball": "http://registry.npmjs.org/stack2/-/stack2-2.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/stack2/" + }, + "stackedy": { + "name": "stackedy", + "description": "Roll your own stack traces and control program execution through AST manipulation", + "dist-tags": { + "latest": "0.1.6" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-10-04T03:28:09.424Z", + "created": "2011-06-16T01:03:11.919Z", + "0.0.1": "2011-06-16T01:04:49.113Z", + "0.0.2": "2011-06-29T02:19:19.035Z", + "0.0.3": "2011-07-05T01:54:05.387Z", + "0.0.4": "2011-07-14T05:39:57.875Z", + "0.0.5": "2011-07-16T07:29:17.844Z", + "0.0.6": "2011-07-16T22:51:41.011Z", + "0.0.7": "2011-09-09T05:59:13.578Z", + "0.0.8": "2011-09-09T09:47:33.306Z", + "0.0.9": "2011-09-16T20:02:01.817Z", + "0.1.0": "2011-09-19T04:28:12.639Z", + "0.1.1": "2011-09-19T10:42:30.728Z", + "0.1.2": "2011-09-20T12:57:09.241Z", + "0.1.3": "2011-09-27T01:11:07.777Z", + "0.1.4": "2011-09-27T01:51:34.294Z", + "0.1.5": "2011-09-28T05:17:27.523Z", + "0.1.6": "2011-10-04T03:28:09.424Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-stackedy.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/stackedy/0.0.1", + "0.0.2": "http://registry.npmjs.org/stackedy/0.0.2", + "0.0.3": "http://registry.npmjs.org/stackedy/0.0.3", + "0.0.4": "http://registry.npmjs.org/stackedy/0.0.4", + "0.0.5": "http://registry.npmjs.org/stackedy/0.0.5", + "0.0.6": "http://registry.npmjs.org/stackedy/0.0.6", + "0.0.7": "http://registry.npmjs.org/stackedy/0.0.7", + "0.0.8": "http://registry.npmjs.org/stackedy/0.0.8", + "0.0.9": "http://registry.npmjs.org/stackedy/0.0.9", + "0.1.0": "http://registry.npmjs.org/stackedy/0.1.0", + "0.1.1": "http://registry.npmjs.org/stackedy/0.1.1", + "0.1.2": "http://registry.npmjs.org/stackedy/0.1.2", + "0.1.3": "http://registry.npmjs.org/stackedy/0.1.3", + "0.1.4": "http://registry.npmjs.org/stackedy/0.1.4", + "0.1.5": "http://registry.npmjs.org/stackedy/0.1.5", + "0.1.6": "http://registry.npmjs.org/stackedy/0.1.6" + }, + "dist": { + "0.0.1": { + "shasum": "abc543f9e2d934d2d910172dfaa8da6161dd4da8", + "tarball": "http://registry.npmjs.org/stackedy/-/stackedy-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "8d696620b24f6b7a0e696e7face27ab4e6f90c06", + "tarball": "http://registry.npmjs.org/stackedy/-/stackedy-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "b56810be2444a9268d024c6e430eab972c454b97", + "tarball": "http://registry.npmjs.org/stackedy/-/stackedy-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "c42ebde39a106b9ad756f92782929e27afbc552c", + "tarball": "http://registry.npmjs.org/stackedy/-/stackedy-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "20c02f57e9153378abb7d8b5715df7a20a45da84", + "tarball": "http://registry.npmjs.org/stackedy/-/stackedy-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "9a84446aaf23991c77cfa75630b454ac1186841d", + "tarball": "http://registry.npmjs.org/stackedy/-/stackedy-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "08dc33c193695e7b18b150b56dfea479c54bfd39", + "tarball": "http://registry.npmjs.org/stackedy/-/stackedy-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "7f156a4a62598a48729f61de071b9bba609c40e5", + "tarball": "http://registry.npmjs.org/stackedy/-/stackedy-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "7a04b533222119edecb5eee059c0bbead3a940a1", + "tarball": "http://registry.npmjs.org/stackedy/-/stackedy-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "12419b63f8ef4c7a2f2ccff26810a1c43d4ad453", + "tarball": "http://registry.npmjs.org/stackedy/-/stackedy-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "e419de0e42921e6a8faecd908eab61aeca48ff85", + "tarball": "http://registry.npmjs.org/stackedy/-/stackedy-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "ef688f6c1a0c9fcd436ffcca1672bf950b77e50f", + "tarball": "http://registry.npmjs.org/stackedy/-/stackedy-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "2258ca99da6fd51327c88685206c4bbb8e297fe1", + "tarball": "http://registry.npmjs.org/stackedy/-/stackedy-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "ced4949a45aa06617cb0d4f03bda31058d3c3aac", + "tarball": "http://registry.npmjs.org/stackedy/-/stackedy-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "1af78f3210cc6cf394af95c370de62668e60ac3d", + "tarball": "http://registry.npmjs.org/stackedy/-/stackedy-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "c7c82e3708535f88cc0f3a98d4ecef8d46b0c509", + "tarball": "http://registry.npmjs.org/stackedy/-/stackedy-0.1.6.tgz" + } + }, + "keywords": [ + "stack", + "trace", + "ast", + "error", + "exception", + "trap", + "catch" + ], + "url": "http://registry.npmjs.org/stackedy/" + }, + "stacktrace-js": { + "name": "stacktrace-js", + "description": "Framework-agnostic, micro-library for getting stack traces in all web browsers", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "sssssmokey", + "email": "sssssmokey@gmail.com" + } + ], + "time": { + "modified": "2011-12-02T17:29:33.160Z", + "created": "2011-12-02T17:29:31.993Z", + "0.3.0": "2011-12-02T17:29:33.160Z" + }, + "author": { + "name": "Eric Wendelin", + "email": "emwendelin@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/eriwen/javascript-stacktrace.git" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/stacktrace-js/0.3.0" + }, + "dist": { + "0.3.0": { + "shasum": "7f1f5d6ce03bc8846c36c1a47121a3efd82a608d", + "tarball": "http://registry.npmjs.org/stacktrace-js/-/stacktrace-js-0.3.0.tgz" + } + }, + "keywords": [ + "stack-trace", + "cross-browser", + "framework-agnostic", + "client", + "browser" + ], + "url": "http://registry.npmjs.org/stacktrace-js/" + }, + "stage": { + "name": "stage", + "description": "actor framework for nodejs", + "dist-tags": { + "latest": "0.7.2" + }, + "maintainers": [ + { + "name": "jfd", + "email": "dahlberg.johan@gmail.com" + } + ], + "time": { + "modified": "2011-06-14T15:29:44.347Z", + "created": "2011-05-30T11:28:55.398Z", + "0.7.0": "2011-05-30T11:28:56.053Z", + "0.7.1": "2011-05-31T16:48:56.318Z", + "0.7.2": "2011-06-14T15:29:44.347Z" + }, + "author": { + "name": "Johan Dahlberg", + "email": "dahlberg.johan@gmail.com", + "url": "http://jfd.github.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jfd/stage.git" + }, + "versions": { + "0.7.0": "http://registry.npmjs.org/stage/0.7.0", + "0.7.1": "http://registry.npmjs.org/stage/0.7.1", + "0.7.2": "http://registry.npmjs.org/stage/0.7.2" + }, + "dist": { + "0.7.0": { + "shasum": "c2e347a466150977559de2394904b9a7abf9592f", + "tarball": "http://registry.npmjs.org/stage/-/stage-0.7.0.tgz" + }, + "0.7.1": { + "shasum": "0f423b2c64f2451ad1d12e9f695d419b80d0f186", + "tarball": "http://registry.npmjs.org/stage/-/stage-0.7.1.tgz" + }, + "0.7.2": { + "shasum": "156611fe671c0dfbbc31e0bc35891d48b3c6c9dc", + "tarball": "http://registry.npmjs.org/stage/-/stage-0.7.2.tgz" + } + }, + "keywords": [ + "networking", + "messaging", + "actors", + "multicore" + ], + "url": "http://registry.npmjs.org/stage/" + }, + "stagecoach": { + "name": "stagecoach", + "description": "Shuffle servers around to make staging instances super simple for continuous integration and load balancing.", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-09-29T14:52:38.314Z", + "created": "2011-09-29T14:52:36.574Z", + "0.0.0": "2011-09-29T14:52:38.314Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/stagecoach.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/stagecoach/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "01a31a470334a6342e856921cc3346910f8c938d", + "tarball": "http://registry.npmjs.org/stagecoach/-/stagecoach-0.0.0.tgz" + } + }, + "keywords": [ + "continuous", + "integration", + "staging", + "deploy", + "load", + "balancer" + ], + "url": "http://registry.npmjs.org/stagecoach/" + }, + "stak": { + "name": "stak", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "raynos", + "email": "raynos2@gmail.com" + } + ], + "time": { + "modified": "2011-11-16T18:45:57.251Z", + "created": "2011-10-19T17:13:29.981Z", + "0.0.1": "2011-10-19T17:13:32.496Z", + "0.0.2": "2011-10-19T17:15:14.058Z", + "0.0.4": "2011-11-16T17:36:56.695Z", + "0.0.5": "2011-11-16T18:45:57.251Z" + }, + "author": { + "name": "Jake Verbaten", + "email": "raynos2@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Raynos/stak.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/stak/0.0.1", + "0.0.2": "http://registry.npmjs.org/stak/0.0.2", + "0.0.4": "http://registry.npmjs.org/stak/0.0.4", + "0.0.5": "http://registry.npmjs.org/stak/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "2234d45fe0ae0aea29769360b8185194e34d5b55", + "tarball": "http://registry.npmjs.org/stak/-/stak-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "2b532e5823269d4b34e8d3264750a9b8cce12b76", + "tarball": "http://registry.npmjs.org/stak/-/stak-0.0.2.tgz" + }, + "0.0.4": { + "shasum": "eea9fc0ab5d0fc8b89bae43e05c0a537bc379b77", + "tarball": "http://registry.npmjs.org/stak/-/stak-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "8c9e1575bea7b841032ca9c16759646977e5c7cc", + "tarball": "http://registry.npmjs.org/stak/-/stak-0.0.5.tgz" + } + }, + "keywords": [ + "stack", + "middleware", + "flowcontrol", + "flow", + "control", + "arch" + ], + "url": "http://registry.npmjs.org/stak/" + }, + "stalker": { + "name": "stalker", + "description": "Monitor directory trees for new files then do... something.", + "dist-tags": { + "latest": "0.0.12" + }, + "maintainers": [ + { + "name": "jslatts", + "email": "justin.slattery@fzysqr.com" + } + ], + "time": { + "modified": "2011-07-19T17:27:53.217Z", + "created": "2011-05-31T05:01:35.079Z", + "0.0.1": "2011-05-31T05:01:35.636Z", + "0.0.2": "2011-05-31T05:28:03.698Z", + "0.0.4": "2011-06-08T05:20:13.930Z", + "0.0.5": "2011-06-09T04:45:17.344Z", + "0.0.6": "2011-06-10T13:36:38.226Z", + "0.0.7": "2011-06-21T05:06:55.721Z", + "0.0.9": "2011-06-21T05:31:18.686Z", + "0.0.10": "2011-06-29T14:40:29.763Z", + "0.0.12": "2011-07-19T17:27:53.217Z" + }, + "author": { + "name": "Justin Slattery", + "email": "Justin.Slattery@fzysqr.com", + "url": "http://fzysqr.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/jslatts/stalker.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/stalker/0.0.1", + "0.0.2": "http://registry.npmjs.org/stalker/0.0.2", + "0.0.4": "http://registry.npmjs.org/stalker/0.0.4", + "0.0.5": "http://registry.npmjs.org/stalker/0.0.5", + "0.0.6": "http://registry.npmjs.org/stalker/0.0.6", + "0.0.7": "http://registry.npmjs.org/stalker/0.0.7", + "0.0.9": "http://registry.npmjs.org/stalker/0.0.9", + "0.0.10": "http://registry.npmjs.org/stalker/0.0.10", + "0.0.12": "http://registry.npmjs.org/stalker/0.0.12" + }, + "dist": { + "0.0.1": { + "shasum": "6b639c17dc74f81b04b9acec1428be6e446aedeb", + "tarball": "http://registry.npmjs.org/stalker/-/stalker-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "630dd15383d4433deafd8a41a3df1a5334b7be96", + "tarball": "http://registry.npmjs.org/stalker/-/stalker-0.0.2.tgz" + }, + "0.0.4": { + "shasum": "1ec5fb08b6a93f3ea0f65397eb1d271f3406a581", + "tarball": "http://registry.npmjs.org/stalker/-/stalker-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "38f61e018c6e74c745690de517b8784871efd533", + "tarball": "http://registry.npmjs.org/stalker/-/stalker-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "0f43165944f05208b7e912d9ca232676177b100b", + "tarball": "http://registry.npmjs.org/stalker/-/stalker-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "b2df610d8ca84125b50265483a7dc69bf3bd2df9", + "tarball": "http://registry.npmjs.org/stalker/-/stalker-0.0.7.tgz" + }, + "0.0.9": { + "shasum": "c263e0b3edc066f75285332f6cc040bb9197e943", + "tarball": "http://registry.npmjs.org/stalker/-/stalker-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "678f342093125e5cd12fb38c2c6a9f0cecd315a3", + "tarball": "http://registry.npmjs.org/stalker/-/stalker-0.0.10.tgz" + }, + "0.0.12": { + "shasum": "f3651b0f2dd4882f13f64bf73963ff04dc555ce0", + "tarball": "http://registry.npmjs.org/stalker/-/stalker-0.0.12.tgz" + } + }, + "url": "http://registry.npmjs.org/stalker/" + }, + "startapp": { + "name": "startapp", + "description": "Coffeescript web app framework", + "dist-tags": { + "latest": "0.2.2" + }, + "readme": "", + "maintainers": [ + { + "name": "rafalsobota", + "email": "ravsobota@gmail.com" + } + ], + "time": { + "modified": "2011-12-09T15:36:41.433Z", + "created": "2011-12-05T22:27:29.489Z", + "0.1.0": "2011-12-05T22:27:33.310Z", + "0.1.1": "2011-12-05T22:37:26.356Z", + "0.2.0": "2011-12-09T03:00:53.810Z", + "0.2.1": "2011-12-09T11:26:31.228Z", + "0.2.2": "2011-12-09T15:36:41.433Z" + }, + "author": { + "name": "Rafał Sobota" + }, + "repository": { + "type": "git", + "url": "git://github.com/appload/startapp.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/startapp/0.1.0", + "0.1.1": "http://registry.npmjs.org/startapp/0.1.1", + "0.2.0": "http://registry.npmjs.org/startapp/0.2.0", + "0.2.1": "http://registry.npmjs.org/startapp/0.2.1", + "0.2.2": "http://registry.npmjs.org/startapp/0.2.2" + }, + "dist": { + "0.1.0": { + "shasum": "2c4fafcdce1c2e41e9f2bb84e701fcabdd221065", + "tarball": "http://registry.npmjs.org/startapp/-/startapp-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "5f3d566e81afdd3c27fe10fa2041eda5ea4e5058", + "tarball": "http://registry.npmjs.org/startapp/-/startapp-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "958830c16cc960056e647ccb6442dbb5125f2564", + "tarball": "http://registry.npmjs.org/startapp/-/startapp-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "809b5b6acbc707bdab1d1cd78ac21e548acad4b0", + "tarball": "http://registry.npmjs.org/startapp/-/startapp-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "fc7d4b442e041a293b0250c5b455b1f86545b162", + "tarball": "http://registry.npmjs.org/startapp/-/startapp-0.2.2.tgz" + } + }, + "url": "http://registry.npmjs.org/startapp/" + }, + "startupify": { + "name": "startupify", + "description": "Startup script manager for node.js", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "coverslide", + "email": "coverslide@gmail.com" + } + ], + "time": { + "modified": "2011-07-15T12:27:33.654Z", + "created": "2011-07-13T06:34:26.486Z", + "0.0.0": "2011-07-13T06:34:27.408Z", + "0.0.1": "2011-07-14T23:10:34.185Z", + "0.0.2": "2011-07-15T12:27:33.654Z" + }, + "author": { + "name": "Richard Hoffman" + }, + "repository": { + "type": "git", + "url": "git://github.com/coverslide/node-startupify.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/startupify/0.0.0", + "0.0.1": "http://registry.npmjs.org/startupify/0.0.1", + "0.0.2": "http://registry.npmjs.org/startupify/0.0.2" + }, + "dist": { + "0.0.0": { + "shasum": "58783656142c2a2e6a95a840b22053d04097b789", + "tarball": "http://registry.npmjs.org/startupify/-/startupify-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "edb832f529b0434119474c01cf2b4eee25152e4b", + "tarball": "http://registry.npmjs.org/startupify/-/startupify-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "3f8906a5d4f18df83cd7cf7282d1cadec91e2a95", + "tarball": "http://registry.npmjs.org/startupify/-/startupify-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/startupify/" + }, + "stash": { + "name": "stash", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "kkaefer", + "email": "kkaefer@gmail.com" + }, + { + "name": "yhahn", + "email": "young@developmentseed.org" + }, + { + "name": "tmcw", + "email": "macwright@gmail.com" + }, + { + "name": "willwhite", + "email": "will@developmentseed.org" + }, + { + "name": "springmeyer", + "email": "dane@dbsgeo.com" + }, + { + "name": "adrianrossouw", + "email": "adrian@developmentseed.org" + } + ], + "time": { + "modified": "2011-08-01T16:13:49.560Z", + "created": "2011-04-07T17:47:25.993Z", + "0.0.2": "2011-04-07T17:47:26.157Z", + "0.0.3": "2011-05-03T21:23:00.502Z" + }, + "author": { + "name": "Young Hahn" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/stash/0.0.2", + "0.0.3": "http://registry.npmjs.org/stash/0.0.3" + }, + "dist": { + "0.0.2": { + "shasum": "fb141f9782be687c73ba490cd5211cdf366225ee", + "tarball": "http://registry.npmjs.org/stash/-/stash-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "1235d26df12055635d70b46ad849394146d6ada5", + "tarball": "http://registry.npmjs.org/stash/-/stash-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/stash/" + }, + "state_machine": { + "name": "state_machine", + "description": "State Machine (Deterministic Finite Automata)", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": null, + "maintainers": [ + { + "name": "sjltaylor", + "email": "sjltaylor@gmail.com" + } + ], + "time": { + "modified": "2011-11-06T01:09:23.448Z", + "created": "2011-11-06T01:09:21.636Z", + "0.1.0": "2011-11-06T01:09:23.448Z" + }, + "author": { + "name": "Sam Taylor", + "email": "sjltaylor@gmail.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:sjltaylor/state_machine.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/state_machine/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "0c74ca6beb6734950bc61943443b76b071ac395c", + "tarball": "http://registry.npmjs.org/state_machine/-/state_machine-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/state_machine/" + }, + "statechart": { + "name": "statechart", + "description": "StateChart implementation.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "DavidDurman", + "email": "daviddurman@gmail.com" + } + ], + "repository": { + "type": "git", + "url": "git://github.com/DavidDurman/statechart.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/statechart/0.1.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/statechart/-/statechart-0.1.0.tgz" + } + }, + "keywords": [ + "statechart", + "state machine" + ], + "url": "http://registry.npmjs.org/statechart/" + }, + "stately": { + "name": "stately", + "description": "A CommonJS state-machine that works in Node or the browser", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "jchris", + "email": "jchris@couch.io" + } + ], + "author": { + "name": "J Chris Anderson", + "email": "jchris@couch.io", + "url": "http://jchrisa.net" + }, + "repository": { + "type": "git", + "url": "http://github.com/jchris/stately.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/stately/0.1.1" + }, + "dist": { + "0.1.1": { + "tarball": "http://packages:5984/stately/-/stately-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/stately/" + }, + "stathat": { + "name": "stathat", + "description": "stathat.com API library", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "patrickxb", + "email": "patrick@stathat.com" + } + ], + "time": { + "modified": "2011-03-17T16:30:07.738Z", + "created": "2011-03-17T16:30:07.550Z", + "0.0.1": "2011-03-17T16:30:07.738Z" + }, + "author": { + "name": "Patrick Crosby", + "email": "patrick@stathat.com" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/stathat/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "3c9f8e225a00bfb7b76dd538d23a24e5db936609", + "tarball": "http://registry.npmjs.org/stathat/-/stathat-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/stathat/" + }, + "static-app": { + "name": "static-app", + "description": "Build easy to deploy static browser apps.", + "dist-tags": { + "latest": "1.0.2" + }, + "maintainers": [ + { + "name": "naitik", + "email": "n@daaku.org" + } + ], + "time": { + "modified": "2011-09-28T23:30:01.632Z", + "created": "2011-09-28T23:30:00.343Z", + "1.0.2": "2011-09-28T23:30:01.632Z" + }, + "author": { + "name": "Naitik Shah", + "email": "n@daaku.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/nshah/nodejs-static-app.git" + }, + "versions": { + "1.0.2": "http://registry.npmjs.org/static-app/1.0.2" + }, + "dist": { + "1.0.2": { + "shasum": "0dcdc03aa7f4b9a8bdf7c518bcce338d9eb09b34", + "tarball": "http://registry.npmjs.org/static-app/-/static-app-1.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/static-app/" + }, + "static-here": { + "name": "static-here", + "description": "A command-line tool for creating a static file server from the current working directory.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "amasad", + "email": "amjad.masad@gmail.com" + } + ], + "time": { + "modified": "2011-10-09T09:04:57.592Z", + "created": "2011-10-08T18:19:17.818Z", + "0.1.0": "2011-10-08T18:19:18.554Z", + "0.1.1": "2011-10-09T09:04:57.592Z" + }, + "author": { + "name": "Amjad Masad", + "email": "amjad.masad@gmail.com", + "url": "http://amasad.github.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/amasad/static-here.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/static-here/0.1.0", + "0.1.1": "http://registry.npmjs.org/static-here/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "fc674bb3dc87da81f4aa93d785263f43edbccd37", + "tarball": "http://registry.npmjs.org/static-here/-/static-here-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "1f24b5b268a9bf5db04bfa56a3c91b1895276ca2", + "tarball": "http://registry.npmjs.org/static-here/-/static-here-0.1.1.tgz" + } + }, + "keywords": [ + "static", + "web", + "server", + "local", + "development" + ], + "url": "http://registry.npmjs.org/static-here/" + }, + "static-server": { + "name": "static-server", + "description": "Simple static stuff server", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "tim_heap", + "email": "heap.tim@gmail.com" + } + ], + "time": { + "modified": "2011-10-13T04:02:26.180Z", + "created": "2011-10-13T04:02:22.461Z", + "0.1.0": "2011-10-13T04:02:26.181Z" + }, + "author": { + "name": "Tim Heap", + "email": "heap.tim@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/maelstrom/static-server.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/static-server/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "33a0766bd725fc2e747f15832b7aa463f7f122ba", + "tarball": "http://registry.npmjs.org/static-server/-/static-server-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/static-server/" + }, + "static-theme": { + "name": "static-theme", + "description": "A static theme middleware for node.js", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "simyungk", + "email": "simyu78@gmail.com" + } + ], + "time": { + "modified": "2011-10-29T13:02:11.024Z", + "created": "2011-10-29T13:02:03.139Z", + "0.0.1": "2011-10-29T13:02:11.024Z" + }, + "author": { + "name": "Simyung Kim", + "email": "simyu78@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/simyungk/static-theme.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/static-theme/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "d39fa72e4fb99f316c509fe067e466f122a992bd", + "tarball": "http://registry.npmjs.org/static-theme/-/static-theme-0.0.1.tgz" + } + }, + "keywords": [ + "middleware", + "theme", + "static" + ], + "url": "http://registry.npmjs.org/static-theme/" + }, + "statichoster": { + "name": "statichoster", + "description": "host static files", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "shinout", + "email": "shinout310@gmail.com" + } + ], + "time": { + "modified": "2011-10-17T08:48:53.652Z", + "created": "2011-10-17T08:48:50.808Z", + "0.1.0": "2011-10-17T08:48:53.652Z" + }, + "author": { + "name": "SHIN Suzuki", + "email": "shinout310@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/shinout/statichoster.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/statichoster/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "dc03ed30d59eb6f1a2e12ffae7ba5ab73608e46a", + "tarball": "http://registry.npmjs.org/statichoster/-/statichoster-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/statichoster/" + }, + "StaticServer": { + "name": "StaticServer", + "description": "A simple package that allows you to create a static async file-server within your application", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "robertpitt", + "email": "robertpitt1988@gmail.com" + } + ], + "time": { + "modified": "2011-06-30T21:38:07.211Z", + "created": "2011-06-30T21:38:05.769Z", + "1.0.0": "2011-06-30T21:38:07.211Z" + }, + "author": { + "name": "Robert Pitt", + "email": "robertpitt1988@gmail.com", + "url": "https://github.com/AdminSpot" + }, + "repository": { + "url": "" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/StaticServer/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "c33f9a9d646560d606dd3cb763678c3bdc9159b9", + "tarball": "http://registry.npmjs.org/StaticServer/-/StaticServer-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/StaticServer/" + }, + "statify": { + "name": "statify", + "description": "A static file server to make any directory available via HTTP from the command line.", + "dist-tags": { + "latest": "1.0.4" + }, + "maintainers": [ + { + "name": "techpriester", + "email": "techpriester@gmail.com" + } + ], + "time": { + "modified": "2011-11-16T16:27:56.239Z", + "created": "2011-10-11T14:52:18.072Z", + "1.0.0": "2011-10-11T14:52:18.726Z", + "1.0.1": "2011-10-11T15:01:28.944Z", + "1.0.22": "2011-10-12T08:34:33.512Z", + "1.0.2": "2011-10-12T08:42:46.255Z", + "1.0.3": "2011-10-12T09:29:47.627Z", + "1.0.4": "2011-11-16T16:27:56.239Z" + }, + "author": { + "name": "Leon Weidauer", + "email": "techpriester@gmail.com", + "url": "http://sevenmil.es" + }, + "repository": { + "type": "git", + "url": "git://github.com/techpriester/statify.js.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/statify/1.0.0", + "1.0.1": "http://registry.npmjs.org/statify/1.0.1", + "1.0.2": "http://registry.npmjs.org/statify/1.0.2", + "1.0.3": "http://registry.npmjs.org/statify/1.0.3", + "1.0.4": "http://registry.npmjs.org/statify/1.0.4" + }, + "dist": { + "1.0.0": { + "shasum": "781b1af793be171ca55d7d86db5caef06ea1e14c", + "tarball": "http://registry.npmjs.org/statify/-/statify-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "81f2f97e25a7a2e20c2db514c3d1e0f63c5d50b7", + "tarball": "http://registry.npmjs.org/statify/-/statify-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "09bece4cd33c345d19acff65e5f02f2917feb5a0", + "tarball": "http://registry.npmjs.org/statify/-/statify-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "6be03284562c701c9b697beb3d5014217adc343c", + "tarball": "http://registry.npmjs.org/statify/-/statify-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "4030e33b4c98012ea303a4239d91cc888f8117ed", + "tarball": "http://registry.npmjs.org/statify/-/statify-1.0.4.tgz" + } + }, + "keywords": [ + "static", + "file", + "server", + "cli", + "command line", + "http" + ], + "url": "http://registry.npmjs.org/statify/" + }, + "station": { + "name": "station", + "description": "a real-time web i/o reporting application built with hook.io", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "marak", + "email": "marak.squires@gmail.com" + } + ], + "time": { + "modified": "2011-07-11T07:38:55.709Z", + "created": "2011-06-26T01:42:02.921Z", + "0.1.0": "2011-06-26T01:42:03.591Z", + "0.1.2": "2011-07-11T07:38:55.709Z" + }, + "author": { + "name": "Marak Squires", + "email": "marak.squires@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Marak/station.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/station/0.1.0", + "0.1.2": "http://registry.npmjs.org/station/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "6cc2a89c614477a90846e7647a0106e451a8095d", + "tarball": "http://registry.npmjs.org/station/-/station-0.1.0.tgz" + }, + "0.1.2": { + "shasum": "7abb86981ed277385b865586e1b983c7416544cb", + "tarball": "http://registry.npmjs.org/station/-/station-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/station/" + }, + "statistics": { + "name": "statistics", + "description": "", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-08-03T22:07:21.755Z", + "created": "2011-08-03T22:07:19.345Z", + "1.0.0": "2011-08-03T22:07:21.755Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com", + "url": "http://bit.ly/dominictarr" + }, + "repository": { + "type": "git", + "url": "git://github.com/dominictarr/stats.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/statistics/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "ad38770a701eb74a11f97e358821805d7ce0d846", + "tarball": "http://registry.npmjs.org/statistics/-/statistics-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/statistics/" + }, + "stats": { + "name": "stats", + "description": "JavaScript statistics (LOC, SLOC, etc)", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "time": { + "modified": "2011-08-15T15:50:22.078Z", + "created": "2011-08-03T13:18:05.802Z", + "0.0.1": "2011-08-03T13:18:06.418Z", + "0.0.2": "2011-08-03T14:02:50.706Z", + "0.0.3": "2011-08-03T14:08:57.905Z", + "0.0.4": "2011-08-03T21:18:01.262Z", + "0.0.5": "2011-08-03T22:10:17.236Z", + "0.0.6": "2011-08-15T15:50:22.078Z" + }, + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/stats/0.0.1", + "0.0.2": "http://registry.npmjs.org/stats/0.0.2", + "0.0.3": "http://registry.npmjs.org/stats/0.0.3", + "0.0.4": "http://registry.npmjs.org/stats/0.0.4", + "0.0.5": "http://registry.npmjs.org/stats/0.0.5", + "0.0.6": "http://registry.npmjs.org/stats/0.0.6" + }, + "dist": { + "0.0.1": { + "shasum": "bf83c9ec39b0caed8717e3351932851910ca1c22", + "tarball": "http://registry.npmjs.org/stats/-/stats-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "b4fd374cd672aa31b506b6ed19c5bf563cd45bb6", + "tarball": "http://registry.npmjs.org/stats/-/stats-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "84f64e1cf10d1f5b3ba04d0e5e40a5d58419ce94", + "tarball": "http://registry.npmjs.org/stats/-/stats-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "4bfc91d6b3ab2831e500cc2e80510fa6f325d8d1", + "tarball": "http://registry.npmjs.org/stats/-/stats-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "37ae5868b61a46bc9f632fedbda7df5360b0a02b", + "tarball": "http://registry.npmjs.org/stats/-/stats-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "50fb9809f3e887e1d5387a16861c11ffbff6403d", + "tarball": "http://registry.npmjs.org/stats/-/stats-0.0.6.tgz" + } + }, + "keywords": [ + "metrics", + "stats", + "statistics", + "sloc", + "uglify" + ], + "url": "http://registry.npmjs.org/stats/" + }, + "std": { + "name": "std", + "description": "javascript standard library", + "dist-tags": { + "latest": "0.1.27" + }, + "maintainers": [ + { + "name": "marcuswestin", + "email": "narcvs@gmail.com" + } + ], + "time": { + "modified": "2011-10-27T01:12:12.251Z", + "created": "2011-04-01T00:03:22.241Z", + "0.1.0": "2011-04-01T00:03:22.394Z", + "0.1.1": "2011-04-01T00:25:28.889Z", + "0.1.2": "2011-04-01T00:58:30.852Z", + "0.1.3": "2011-04-01T02:06:47.559Z", + "0.1.4": "2011-04-01T03:05:24.183Z", + "0.1.5": "2011-04-01T19:17:43.503Z", + "0.1.6": "2011-04-05T02:57:16.336Z", + "0.1.7": "2011-04-05T03:07:33.734Z", + "0.1.8": "2011-04-05T03:11:26.411Z", + "0.1.9": "2011-04-07T02:55:24.889Z", + "0.1.10": "2011-04-07T02:56:25.075Z", + "0.1.11": "2011-04-13T00:38:37.668Z", + "0.1.12": "2011-04-13T19:29:23.967Z", + "0.1.13": "2011-04-13T22:46:56.463Z", + "0.1.14": "2011-04-14T03:21:04.676Z", + "0.1.15": "2011-04-14T23:30:10.770Z", + "0.1.16": "2011-04-15T18:08:23.715Z", + "0.1.17": "2011-04-15T23:11:32.628Z", + "0.1.18": "2011-04-18T19:00:17.968Z", + "0.1.19": "2011-04-20T00:49:53.890Z", + "0.1.20": "2011-04-26T18:42:36.018Z", + "0.1.22": "2011-06-20T17:10:15.690Z", + "0.1.24": "2011-06-30T06:31:11.366Z", + "0.1.25": "2011-08-07T18:39:17.458Z", + "0.1.26": "2011-08-10T20:31:09.315Z", + "0.1.27": "2011-10-27T01:12:12.251Z" + }, + "author": { + "name": "@marcuswestin" + }, + "repository": { + "type": "git", + "url": "git://github.com/marcuswestin/std.js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/std/0.1.0", + "0.1.1": "http://registry.npmjs.org/std/0.1.1", + "0.1.2": "http://registry.npmjs.org/std/0.1.2", + "0.1.3": "http://registry.npmjs.org/std/0.1.3", + "0.1.4": "http://registry.npmjs.org/std/0.1.4", + "0.1.5": "http://registry.npmjs.org/std/0.1.5", + "0.1.6": "http://registry.npmjs.org/std/0.1.6", + "0.1.7": "http://registry.npmjs.org/std/0.1.7", + "0.1.8": "http://registry.npmjs.org/std/0.1.8", + "0.1.9": "http://registry.npmjs.org/std/0.1.9", + "0.1.10": "http://registry.npmjs.org/std/0.1.10", + "0.1.11": "http://registry.npmjs.org/std/0.1.11", + "0.1.12": "http://registry.npmjs.org/std/0.1.12", + "0.1.13": "http://registry.npmjs.org/std/0.1.13", + "0.1.14": "http://registry.npmjs.org/std/0.1.14", + "0.1.15": "http://registry.npmjs.org/std/0.1.15", + "0.1.16": "http://registry.npmjs.org/std/0.1.16", + "0.1.17": "http://registry.npmjs.org/std/0.1.17", + "0.1.18": "http://registry.npmjs.org/std/0.1.18", + "0.1.19": "http://registry.npmjs.org/std/0.1.19", + "0.1.20": "http://registry.npmjs.org/std/0.1.20", + "0.1.22": "http://registry.npmjs.org/std/0.1.22", + "0.1.24": "http://registry.npmjs.org/std/0.1.24", + "0.1.25": "http://registry.npmjs.org/std/0.1.25", + "0.1.26": "http://registry.npmjs.org/std/0.1.26", + "0.1.27": "http://registry.npmjs.org/std/0.1.27" + }, + "dist": { + "0.1.0": { + "shasum": "70981b42d4e1d1158584523c474fffb93bacca25", + "tarball": "http://registry.npmjs.org/std/-/std-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "f80b211c76a38197c0b59e2b47184a5f19872dde", + "tarball": "http://registry.npmjs.org/std/-/std-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "b2f4028e18832696e93533d3f575c9a871d1098b", + "tarball": "http://registry.npmjs.org/std/-/std-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "11e5b3228316f06f6c7a07665ad0945d71cb9360", + "tarball": "http://registry.npmjs.org/std/-/std-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "08f444f36cb6cce75488173a02a5d3cba4878198", + "tarball": "http://registry.npmjs.org/std/-/std-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "4338942a1a783260ac02c21334f53b894c6401df", + "tarball": "http://registry.npmjs.org/std/-/std-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "10920c4520ac342b790ad26f9400b016bcef1e7c", + "tarball": "http://registry.npmjs.org/std/-/std-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "59882a5aa8c56afe6c7fab42d73d0c3c8e34b0d1", + "tarball": "http://registry.npmjs.org/std/-/std-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "fa2e32bf8e4017c61e87b95f284dc0828d9b0fc4", + "tarball": "http://registry.npmjs.org/std/-/std-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "270e5c8aa9d12fdecfb8560864e8d9cce36063ca", + "tarball": "http://registry.npmjs.org/std/-/std-0.1.9.tgz" + }, + "0.1.10": { + "shasum": "7eb4f31fa458dc2e551e5cec388129b74f92a78e", + "tarball": "http://registry.npmjs.org/std/-/std-0.1.10.tgz" + }, + "0.1.11": { + "shasum": "061c8dd4a407cc89640225b82e7847b95d49f72f", + "tarball": "http://registry.npmjs.org/std/-/std-0.1.11.tgz" + }, + "0.1.12": { + "shasum": "84083d5f4d6461421ff995d49b04aad207965895", + "tarball": "http://registry.npmjs.org/std/-/std-0.1.12.tgz" + }, + "0.1.13": { + "shasum": "c7c312641669bf66d46c084a85d1054730ee4070", + "tarball": "http://registry.npmjs.org/std/-/std-0.1.13.tgz" + }, + "0.1.14": { + "shasum": "8ff587d9f67f9d3d6cc05f5e3904cadb8a64624e", + "tarball": "http://registry.npmjs.org/std/-/std-0.1.14.tgz" + }, + "0.1.15": { + "shasum": "dc60af13fc24f3226236307b6e7548b2b15b7d82", + "tarball": "http://registry.npmjs.org/std/-/std-0.1.15.tgz" + }, + "0.1.16": { + "shasum": "d123bc31dd9c7627b019ebdc99232ea37c5573ff", + "tarball": "http://registry.npmjs.org/std/-/std-0.1.16.tgz" + }, + "0.1.17": { + "shasum": "8cd6445696646495210db32dd1598ca29dbc7239", + "tarball": "http://registry.npmjs.org/std/-/std-0.1.17.tgz" + }, + "0.1.18": { + "shasum": "9791967a27ef242509a93dd224a1baddf95edbd0", + "tarball": "http://registry.npmjs.org/std/-/std-0.1.18.tgz" + }, + "0.1.19": { + "shasum": "0b6a091a806635dd208b39525c58524525c8bde9", + "tarball": "http://registry.npmjs.org/std/-/std-0.1.19.tgz" + }, + "0.1.20": { + "shasum": "bae4fb90447279b99028102fe432bfcef3a47816", + "tarball": "http://registry.npmjs.org/std/-/std-0.1.20.tgz" + }, + "0.1.22": { + "shasum": "60e09386d746afcc25c328c935307d5dc6261dd0", + "tarball": "http://registry.npmjs.org/std/-/std-0.1.22.tgz" + }, + "0.1.24": { + "shasum": "d00a8ffad03c1dfd232cba8ee86b24f14be9be4c", + "tarball": "http://registry.npmjs.org/std/-/std-0.1.24.tgz" + }, + "0.1.25": { + "shasum": "5291007052892104280cca0850511b6769d181a2", + "tarball": "http://registry.npmjs.org/std/-/std-0.1.25.tgz" + }, + "0.1.26": { + "shasum": "92eedb8b440cee1852c43b1e547254ff28747f6f", + "tarball": "http://registry.npmjs.org/std/-/std-0.1.26.tgz" + }, + "0.1.27": { + "shasum": "868eb63ecfdc5e08d3e1fbe699fb5896d3f3c6cb", + "tarball": "http://registry.npmjs.org/std/-/std-0.1.27.tgz" + } + }, + "url": "http://registry.npmjs.org/std/" + }, + "steam": { + "name": "steam", + "description": "A wrapper for the Steam Web API.", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "tidwell", + "email": "aaron.tidwell@gmail.com" + } + ], + "time": { + "modified": "2011-12-05T17:34:47.111Z", + "created": "2011-07-13T17:02:01.402Z", + "0.1.0": "2011-07-13T17:02:01.460Z", + "0.1.2": "2011-08-15T17:03:32.923Z", + "0.1.3": "2011-12-05T17:34:47.111Z" + }, + "author": { + "name": "Aaron Tidwell", + "email": "aaron.tidwell@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Tidwell/nodeSteam.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/steam/0.1.0", + "0.1.2": "http://registry.npmjs.org/steam/0.1.2", + "0.1.3": "http://registry.npmjs.org/steam/0.1.3" + }, + "dist": { + "0.1.0": { + "shasum": "a45e37eb395f74a683da2ae8a60cf66ca9aa277e", + "tarball": "http://registry.npmjs.org/steam/-/steam-0.1.0.tgz" + }, + "0.1.2": { + "shasum": "946be3cb6444e0c0c7bdda697a53cb5161e5a0dc", + "tarball": "http://registry.npmjs.org/steam/-/steam-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "ddff65e73fee1edb23a0f50435d07b8b6a0f70f1", + "tarball": "http://registry.npmjs.org/steam/-/steam-0.1.3.tgz" + } + }, + "keywords": [ + "steam", + "team fortress 2" + ], + "url": "http://registry.npmjs.org/steam/" + }, + "steamAPI": { + "name": "steamAPI", + "description": "Steam Web / TF2 API", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "brainss", + "email": "brian.a.hassinger@gmail.com" + } + ], + "time": { + "modified": "2011-10-22T23:49:58.504Z", + "created": "2011-10-22T23:49:58.001Z", + "0.0.1": "2011-10-22T23:49:58.504Z" + }, + "author": { + "name": "Brian Hassinger", + "email": "brian.a.hassinger@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/brainss/steamAPI.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/steamAPI/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "a6952390c2ba0fc2331222cdafff36cd9842e936", + "tarball": "http://registry.npmjs.org/steamAPI/-/steamAPI-0.0.1.tgz" + } + }, + "keywords": [ + "steam", + "tf2", + "team fortress 2", + "portal 2" + ], + "url": "http://registry.npmjs.org/steamAPI/" + }, + "steelmesh": { + "name": "steelmesh", + "description": "CouchDB distribution and management of Node.js applications", + "dist-tags": { + "latest": "0.3.4" + }, + "readme": "![steelmesh](https://github.com/steelmesh/steelmesh/raw/master/assets/steelmesh-logo.png)\n\nSteelmesh is a __distributed application framework__ build on top of [Node.js](http://nodejs.org/) and [CouchDB](http://couchdb.apache.org/) (specifically we love using [Couchbase](http://www.couchbase.org/) community editions). \n\n## What does it do?\n\nSteelmesh is designed to assist with managing and scaling Node + Couch applications in a horizontal fashion. At this stage, Steelmesh is not designed to support partitioning large datasets, but rather to:\n\n1. Provide load distribution for small-medium sized datasets that experience a high traffic load.\n\n2. Provide a manageable interface to a number of Couch + Node instances.\n\n## Getting Started\n\nOK. Just so you know, getting an instance of Steelmesh running is reasonably involved. Not too tricky, but it might involve some mucking around and the process is still nowhere near as refined as it will be in a few months...\n\nAlso, [Sidelab](http://www.sidelab.com/) will be running up a hosted installation of Steelmesh in the near future, so if you are feeling brave, then feel free to [message me](http://github.com/DamonOehlman) and we can look at providing you access once it's available.\n\n### Step 1: Install CouchDB\n\nEssentially, get an installation of CouchDB running somewhere on your network. I would recommend using one of the [Couchbase](http://couchbase.org/) distributions as they are just lovely to work with.\n\n### Step 2: Install Node + NPM\n\nIf you don't already have Node and NPM running, then you will need to install them. Use google - it's your friend.\n\n### Step 3: Install the Mesh Command Line Tools\n\nTo aid in both creating steelmesh apps, and also administering a steelmesh server we have some [command-line tools](https://github.com/steelmesh/mesh). The simplest way to install these tools is via npm:\n\n```\nnpm install mesh -g\n```\n\nOnce installed, this will provide you a `mesh` command line utility.\n\n### Step 4: Create the steelmesh DB\n\nBy default, steelmesh will attach to a CouchDB called `steelmesh`. This database is not automatically created, so you will need to use the mesh command line tools to create it. Run the following command to initialize the db:\n\n```\nmesh admin-create\n```\n\nThis should generate something similar to the following:\n\n```\nPreparing.\nSerializing.\nPUT http://localhost:5984/steelmesh/_design/default\nFinished push. 1-385253ac3b0c205f93dafee1d839751d\n>> mesh:admin-create\n- _design/default\nOperation succcessful\n```\n\nThis command creates the steelmesh database and uploads the required [design documents](http://guide.couchdb.org/draft/design.html) into the database.\n\n### Step 5: Clone the Steelmesh repository, Install Node Modules\n\nOK, you've made it this far. Nice job. Now, in a location that you would like to run steelmesh, clone this repository:\n\n```\ngit clone git://github.com/steelmesh/steelmesh.git\n```\n\nOnce you have cloned the repository, change into your newly created directory and pull down the required node_modules:\n\n```\nnpm install\n```\n\n### Step 6: Start the Server\n\nOnce the required modules are you should be able to run the following command:\n\n```\nnode debug-server.js\n```\n\nAll being well, you should see output similar to the following:\n\n```\nloading apps using the couch apploader\nsynchronized application resources\n info - master started\n info - worker 0 spawned\n info - worker 1 spawned\n info - listening for connections\n info - worker 1 connected\n info - worker 0 connected\n```\n\nThis is a mix of some steelmesh output and output that has been generated from [cluster](http://learnboost.github.com/cluster/).\n\nAt this stage, steelmesh is operational, but not doing a lot. Time to create an app.\n\n### Step 7: Scaffold an Application\n\nNow, create a directory somewhere on your local machine. By default, the name of the folder will become the name of your Steelmesh appliation but that can be changed using the various [Configuration Options](/steelmesh/steelmesh/wiki/Configuration-Options). Anyway, let's create an application. I'm going to create a directory called test (because I'm creative like that):\n\n```\nmkdir test\ncd test\nmesh create\n```\n\nNow in the test directory, you should see a number of new files, including an app.js file. The app.js file is basically the file that contains the information on how the application controls routes, background tasks that it does, etc, etc. Lots of documentation coming on this... promise.\n\n### Step 8: Publish the Application to Steelmesh\n\nOne the application has been created, you can publish the application to a Steelmesh server using the following command:\n\n```\nmesh update\n```\n\nThis would generate output similar to the following:\n\n```\nPreparing test for deployment\nPushing to db...\nPreparing.\nSerializing.\nPUT http://localhost:5984/steelmesh/test\nFinished push. 1-f0ee9c0a7e63e35207220559cf35390e\nOperation succcessful\n```\n\n### Step 9: Restart the Steelmesh Server\n\nNow that you have pushed the application to the steelmesh, restart the steelmesh server (see Step 7).\n\n__NOTE:__ This is a temporary step that is required while we are properly implementing listening to CouchDB change notifications and auto reloading updated applications.\n\nYou should now see the following when the server is started:\n\n```\nno configuration file, using default config\nloading apps using the couch apploader\nsynchronizing application: test\nsynchronized application resources\n info - master started\n info - worker 0 spawned\n info - worker 1 spawned\n info - listening for connections\n```\n\n## Optional (Run Behind Nginx)\n\n### Step 10: Install Nginx\n\nBy default, Steelmesh is designed to run behind [nginx](http://nginx.org/) as this provides an ideal front-door to both CouchDB and Node. So if you don't have nginx installed already, then go get it...\n\n### Step 11: Start Nginx (Optional)\n\nBefore we test our application, we will need to start nginx to act a reverse-proxy to both our CouchDB server and Node server. Steelmesh comes with a [prebuilt nginx configuration](https://github.com/steelmesh/steelmesh/blob/master/nginx/conf/nginx.conf) that routes traffic to the appropriate destination.\n\nThe simplest way to start nginx is by changing to directory you installed steelmesh in and running the following command:\n\n```\nsudo nginx -p nginx/\n```\n\nThis tells nginx to use the `steelmesh/nginx` directory as the nginx root, so the configuration file is loaded from the `conf` directory automatically. __NOTE:__ The `sudo` command is required as the configuration by default listens on port 80 and binding to ports below 1024 (I think) requires superuser privileges.\n \n### Step 12: See it Working (Hopefully)\n\nIf everything has gone well, then you should be able to view the following url (if you are running locally, and called your application is called `test`):\n\n[http://localhost/test/time](http://localhost/test/time)\n\n## Steelmesh Addins\n\nOut of the box, Steelmesh is basically [Express](http://expressjs.org/) on [NodeJS](http://nodejs.org/) with [CouchDB](http://couchdb.apache.org) connectivity. Express (via [Connect](http://senchalabs.github.com/connect)), however, offers very powerful middleware capabilities and as such some addins are being developed for Steelmesh:\n\n- [Websocket Support](https://github.com/steelmesh/steelmesh-websockets) through using [Socket.IO](http://socket.io/)\n\n- [Authentication Support](https://github.com/steelmesh/steelmesh-auth) via [everyauth](https://github.com/bnoguchi/everyauth)\n\n## Architecture Configurations\n\n### Standalone\n\n![Standalone Server](https://github.com/steelmesh/steelmesh/raw/master/assets/arch-standalone.png)\n\n### Master-Master Replication\n\n![Master-Master Replication](https://github.com/steelmesh/steelmesh/raw/master/assets/arch-master-master.png)\n\n### Master-Slave Replication\n\n![Master-Slave Replication](https://github.com/steelmesh/steelmesh/raw/master/assets/arch-master-slave.png)\n\n### Distributed Architecture\n\n![Distributed Architecture](https://github.com/steelmesh/steelmesh/raw/master/assets/arch-distributed.png)\n\n## License\n\nSteelmesh is distributed under the Apache License (v2).", + "maintainers": [ + { + "name": "damonoehlman", + "email": "damon.oehlman@sidelab.com" + } + ], + "time": { + "modified": "2011-12-08T04:35:05.078Z", + "created": "2011-11-21T03:33:19.434Z", + "0.2.0": "2011-11-21T03:33:23.519Z", + "0.1.0": "2011-11-29T00:55:06.431Z", + "0.3.0": "2011-11-29T00:58:36.327Z", + "0.3.1": "2011-12-01T02:46:34.578Z", + "0.3.4": "2011-12-08T04:35:05.078Z" + }, + "author": { + "name": "Damon Oehlman", + "email": "damon.oehlman@sidelab.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/steelmesh/steelmesh.git" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/steelmesh/0.3.0", + "0.3.1": "http://registry.npmjs.org/steelmesh/0.3.1", + "0.3.4": "http://registry.npmjs.org/steelmesh/0.3.4" + }, + "dist": { + "0.3.0": { + "shasum": "c171a5d4f0ad03d361ee0dd4c45842cabbf690c4", + "tarball": "http://registry.npmjs.org/steelmesh/-/steelmesh-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "6e0e47ee8ef319ea3fea30455c53648390d7c7af", + "tarball": "http://registry.npmjs.org/steelmesh/-/steelmesh-0.3.1.tgz" + }, + "0.3.4": { + "shasum": "13cae9313dc31ee918fd9e0eeb70f5bbbc9b4a3a", + "tarball": "http://registry.npmjs.org/steelmesh/-/steelmesh-0.3.4.tgz" + } + }, + "url": "http://registry.npmjs.org/steelmesh/" + }, + "steelmesh-loader": { + "name": "steelmesh-loader", + "description": "JavaScript application loader logic", + "dist-tags": { + "latest": "0.0.3" + }, + "readme": "# Steelmesh Loader Plugin\n\nThe loader plugin facilitates the creation of web applications that are driven from an _injected script_ approach. \n\nThere are many ways to build applications that use injected JavaScript to change page behaviour or to build entire applications. The Steelmesh Loader represents just one of those, and has been designed to maximise extensibility while trying to keep implementation simple.\n\n## Installing the Loader\n\nTBC \n\n## Separation of Loader, Application and Configurations\n\nThe steelmesh loader plugin seeks to separate the concepts of the loader logic, an application built on the loader and application configurations.\n\n", + "maintainers": [ + { + "name": "damonoehlman", + "email": "damon.oehlman@sidelab.com" + } + ], + "time": { + "modified": "2011-11-25T00:23:51.502Z", + "created": "2011-11-16T06:44:27.590Z", + "0.0.1": "2011-11-16T06:44:33.224Z", + "0.0.2": "2011-11-18T04:53:18.363Z", + "0.0.3": "2011-11-25T00:23:17.753Z" + }, + "author": { + "name": "Damon Oehlman", + "email": "damon.oehlman@sidelab.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/steelmesh/addin-loader.git" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/steelmesh-loader/0.0.3" + }, + "dist": { + "0.0.3": { + "shasum": "b4b29a302d6f5f6e2a4d9730c6763a985ba1fd87", + "tarball": "http://registry.npmjs.org/steelmesh-loader/-/steelmesh-loader-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/steelmesh-loader/" + }, + "steelmesh-websockets": { + "name": "steelmesh-websockets", + "description": "Websockets addin for Steelmesh", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "damonoehlman", + "email": "damon.oehlman@sidelab.com" + } + ], + "time": { + "modified": "2011-10-06T05:39:36.438Z", + "created": "2011-10-06T03:26:55.799Z", + "0.0.1": "2011-10-06T03:26:58.186Z", + "0.0.2": "2011-10-06T04:07:59.901Z", + "0.0.3": "2011-10-06T04:52:53.329Z", + "0.0.4": "2011-10-06T05:39:36.438Z" + }, + "author": { + "name": "Damon Oehlman", + "email": "damon.oehlman@sidelab.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/steelmesh/steelmesh-websockets.git" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/steelmesh-websockets/0.0.3", + "0.0.4": "http://registry.npmjs.org/steelmesh-websockets/0.0.4" + }, + "dist": { + "0.0.3": { + "shasum": "840c700b4b4750947f803b82c29692b7140568d5", + "tarball": "http://registry.npmjs.org/steelmesh-websockets/-/steelmesh-websockets-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "824f7fec888d0a98f0b27be9e65dcd2d0afaa523", + "tarball": "http://registry.npmjs.org/steelmesh-websockets/-/steelmesh-websockets-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/steelmesh-websockets/" + }, + "stem": { + "name": "stem", + "description": "Bindings to the libstemmer library", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "cohara87", + "email": "cohara87@gmail.com" + } + ], + "time": { + "modified": "2011-06-14T10:04:58.613Z", + "created": "2011-05-13T23:13:58.517Z", + "0.1.0": "2011-05-13T23:14:00.065Z", + "0.1.1": "2011-05-13T23:28:24.985Z", + "0.1.2": "2011-05-14T02:01:04.858Z", + "0.1.3": "2011-05-15T07:16:11.262Z", + "0.1.4": "2011-05-16T10:14:19.080Z", + "0.1.6": "2011-05-16T10:20:16.147Z", + "0.1.7": "2011-05-31T03:04:44.755Z", + "0.1.8": "2011-06-06T01:23:13.239Z", + "0.1.9": "2011-06-06T10:02:49.284Z", + "0.2.0": "2011-06-06T10:10:51.781Z", + "0.2.1": "2011-06-06T10:53:23.080Z", + "0.2.2": "2011-06-14T10:04:58.613Z" + }, + "author": { + "name": "Chris O'Hara", + "email": "ohara87@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/chriso/node-stem.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/stem/0.1.0", + "0.1.1": "http://registry.npmjs.org/stem/0.1.1", + "0.1.2": "http://registry.npmjs.org/stem/0.1.2", + "0.1.3": "http://registry.npmjs.org/stem/0.1.3", + "0.1.4": "http://registry.npmjs.org/stem/0.1.4", + "0.1.6": "http://registry.npmjs.org/stem/0.1.6", + "0.1.7": "http://registry.npmjs.org/stem/0.1.7", + "0.1.8": "http://registry.npmjs.org/stem/0.1.8", + "0.1.9": "http://registry.npmjs.org/stem/0.1.9", + "0.2.0": "http://registry.npmjs.org/stem/0.2.0", + "0.2.1": "http://registry.npmjs.org/stem/0.2.1", + "0.2.2": "http://registry.npmjs.org/stem/0.2.2" + }, + "dist": { + "0.1.0": { + "shasum": "5a097852686f442766e0f27f9eb63fdf8dab80a4", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.0": { + "shasum": "baaf93dd7ef17a5ba6ddff6080928f3fb7c5565f", + "tarball": "http://registry.npmjs.org/stem/-/stem-0.1.0-0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/stem/-/stem-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "139ae3a998f4bf90f5eb5c8dc48e8bc8b0fe3359", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.0": { + "shasum": "78065360425c8abc81922b24b47216937f08d9c7", + "tarball": "http://registry.npmjs.org/stem/-/stem-0.1.1-0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/stem/-/stem-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "bbb5d4d5ec657e5b312795933c5f6c5715b8b40d", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.0": { + "shasum": "5dd5fc0d066ad6cac5d6467e2f454f0ced22ad3c", + "tarball": "http://registry.npmjs.org/stem/-/stem-0.1.2-0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/stem/-/stem-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "8438be3f7b125e94fea1079d3a8d56a6d4dde12a", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.0": { + "shasum": "f38955a57b0e5733e5111819d7b3ad19ea80df69", + "tarball": "http://registry.npmjs.org/stem/-/stem-0.1.3-0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/stem/-/stem-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "df8e3aa641c62c6371252919aa9c97e00f377e63", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.0": { + "shasum": "6e063af94ce44782afce871f6eb65f2553b908ad", + "tarball": "http://registry.npmjs.org/stem/-/stem-0.1.4-0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/stem/-/stem-0.1.4.tgz" + }, + "0.1.6": { + "shasum": "fc17806dbac386d6901c585087a909fd49e5c8c0", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.0": { + "shasum": "686e854642bdfb527804117329ab64303d255eee", + "tarball": "http://registry.npmjs.org/stem/-/stem-0.1.6-0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/stem/-/stem-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "7390183045e3c127d0367c15c1277c43cd040aef", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.16-darwin-10.7.0": { + "shasum": "0587c10d2ce756906c12cb7dc422109388297672", + "tarball": "http://registry.npmjs.org/stem/-/stem-0.1.7-0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.16-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/stem/-/stem-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "8dde189bebeec30cb6ac154058fbdaaed722e6b3", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.16-darwin-10.7.0": { + "shasum": "2ddb5ac2dbb47cc76fbf2b9a0479642ceb08761e", + "tarball": "http://registry.npmjs.org/stem/-/stem-0.1.8-0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.16-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/stem/-/stem-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "49228d508b8a0a8800125c8db4fe5f5ec5ee5aa7", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.16-darwin-10.7.0": { + "shasum": "25cb4fc06bb36d8ab965419641542275ead6fe5b", + "tarball": "http://registry.npmjs.org/stem/-/stem-0.1.9-0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.16-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/stem/-/stem-0.1.9.tgz" + }, + "0.2.0": { + "shasum": "a826f391310613eff323bae45fb80c7bebf1d873", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.16-darwin-10.7.0": { + "shasum": "ffc3a7e063c42eb9441d6e6f89346cb35a0ec0ea", + "tarball": "http://registry.npmjs.org/stem/-/stem-0.2.0-0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.16-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/stem/-/stem-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "fd5f2b956458e4ab726a837886e27e59a9bfd29b", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.16-darwin-10.7.0": { + "shasum": "65da7b4b2c95fa9c431d1ba226c3ada36c9e9e03", + "tarball": "http://registry.npmjs.org/stem/-/stem-0.2.1-0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.16-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/stem/-/stem-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "649b22e901e8b64009013ff42ba75167a5fa8f77", + "tarball": "http://registry.npmjs.org/stem/-/stem-0.2.2.tgz" + } + }, + "url": "http://registry.npmjs.org/stem/" + }, + "step": { + "name": "step", + "description": "A simple control-flow library for node.JS that makes parallel execution, serial execution, and error handling painless.", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "creationix", + "email": "tim@creationix.com" + } + ], + "author": { + "name": "Tim Caswell", + "email": "tim@creationix.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/creationix/step.git" + }, + "time": { + "modified": "2011-11-16T21:57:07.052Z", + "created": "2011-02-21T20:52:21.286Z", + "0.0.3": "2011-02-21T20:52:21.286Z", + "0.0.4": "2011-02-21T20:52:21.286Z", + "0.0.5": "2011-10-27T16:50:49.100Z" + }, + "users": { + "creationix": true, + "pid": true + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/step/0.0.3", + "0.0.4": "http://registry.npmjs.org/step/0.0.4", + "0.0.5": "http://registry.npmjs.org/step/0.0.5" + }, + "dist": { + "0.0.3": { + "tarball": "http://packages:5984/step/-/step-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "f334ebc6ddb406cab5084375a05c26e173d0214f", + "tarball": "http://registry.npmjs.org/step/-/step-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "5e662f15f9ba2ece9c3a9b0e2553d1986b6ba44c", + "tarball": "http://registry.npmjs.org/step/-/step-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/step/" + }, + "stepc": { + "name": "stepc", + "description": "A CoffeeScript-safe version of creationix' step", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "akidee", + "email": "mail@akidee.de" + } + ], + "time": { + "modified": "2011-06-25T20:54:03.105Z", + "created": "2011-06-25T20:54:02.580Z", + "0.0.3": "2011-06-25T20:54:03.105Z" + }, + "author": { + "name": "Andreas Kalsch", + "url": "http://akidee.de/" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/stepc/0.0.3" + }, + "dist": { + "0.0.3": { + "shasum": "9b684e9445a8ea38d30868e95921b977cd34a6c3", + "tarball": "http://registry.npmjs.org/stepc/-/stepc-0.0.3.tgz" + } + }, + "keywords": [ + "flow", + "step", + "control-flow", + "coffeescript", + "control", + "asynchronous", + "async" + ], + "url": "http://registry.npmjs.org/stepc/" + }, + "stepper": { + "name": "stepper", + "description": "Stepper and Grouper classes for running an arbitrary number of tasks in series or parallel", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "mikebannister", + "email": "mikebannister@gmail.com" + } + ], + "author": { + "name": "Mike Bannister", + "email": "mike@mike101.net" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/stepper/0.0.1", + "0.0.2": "http://registry.npmjs.org/stepper/0.0.2", + "0.0.3": "http://registry.npmjs.org/stepper/0.0.3", + "0.0.4": "http://registry.npmjs.org/stepper/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "3b00c918cea1cd15e6b8c068318e15f5dd6f8cc1", + "tarball": "http://registry.npmjs.org/stepper/-/stepper-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "300cda8e6690d365d6b857ab09cfa14f88bdf04b", + "tarball": "http://registry.npmjs.org/stepper/-/stepper-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "ce6ebc5cddaf224011cd7a0d0bad0cea3d335fdd", + "tarball": "http://registry.npmjs.org/stepper/-/stepper-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "b82f7f5eed799a674b650fde244abdb6af169fe8", + "tarball": "http://registry.npmjs.org/stepper/-/stepper-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/stepper/" + }, + "steps": { + "name": "steps", + "description": "Makes async programming manageable (dare I say delightful?) without wasting horizontal space.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "benekastah", + "email": "benekastah@gmail.com" + } + ], + "time": { + "modified": "2011-09-19T07:46:51.702Z", + "created": "2011-09-19T07:40:40.525Z", + "0.0.1": "2011-09-19T07:40:41.532Z", + "0.0.2": "2011-09-19T07:46:51.702Z" + }, + "author": { + "name": "Paul Harper", + "email": "benekastah@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/steps/0.0.1", + "0.0.2": "http://registry.npmjs.org/steps/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "02d5778eb2f700a9c737fa02371fd127b2e3d39d", + "tarball": "http://registry.npmjs.org/steps/-/steps-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "5942cca7a7b923ebf45c39c627fb95e69505916f", + "tarball": "http://registry.npmjs.org/steps/-/steps-0.0.2.tgz" + } + }, + "keywords": [ + "async", + "asynchronous", + "async programming", + "asynchronous programming", + "steps" + ], + "url": "http://registry.npmjs.org/steps/" + }, + "stepup": { + "name": "stepup", + "description": "A simple control-flow library for node.JS that makes parallel execution, serial execution, and error handling painless.", + "dist-tags": { + "latest": "0.0.11" + }, + "maintainers": [ + { + "name": "crabdude", + "email": "dude@noderiety.com" + } + ], + "time": { + "modified": "2011-11-22T20:52:18.299Z", + "created": "2011-10-01T00:34:40.025Z", + "0.0.6": "2011-10-01T00:34:40.481Z", + "0.0.7": "2011-10-01T00:37:36.637Z", + "0.0.9": "2011-10-12T18:24:37.863Z", + "0.0.11": "2011-11-22T20:52:18.299Z" + }, + "author": { + "name": "Adam Crabtree", + "email": "dude@noderiety.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/CrabDude/stepup.git" + }, + "versions": { + "0.0.6": "http://registry.npmjs.org/stepup/0.0.6", + "0.0.7": "http://registry.npmjs.org/stepup/0.0.7", + "0.0.9": "http://registry.npmjs.org/stepup/0.0.9", + "0.0.11": "http://registry.npmjs.org/stepup/0.0.11" + }, + "dist": { + "0.0.6": { + "shasum": "25a2c53c59652ecb5cc8604e8bf541cfbcb12c6a", + "tarball": "http://registry.npmjs.org/stepup/-/stepup-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "998e1c5cb291927d5c9a7f3b6ff0062c6e8b7635", + "tarball": "http://registry.npmjs.org/stepup/-/stepup-0.0.7.tgz" + }, + "0.0.9": { + "shasum": "106bff5825418cb4f69dbe542663524ee7e3f407", + "tarball": "http://registry.npmjs.org/stepup/-/stepup-0.0.9.tgz" + }, + "0.0.11": { + "shasum": "a4792db7c245722bced95f383e42d2f3a298d06d", + "tarball": "http://registry.npmjs.org/stepup/-/stepup-0.0.11.tgz" + } + }, + "keywords": [ + "error", + "exception", + "control", + "flow", + "async", + "series" + ], + "url": "http://registry.npmjs.org/stepup/" + }, + "stest": { + "name": "stest", + "description": "A sane event driven async testing framework.", + "dist-tags": { + "latest": "0.0.3" + }, + "readme": "# stest - Sane async tests\n\n# Installation:\n\nUsing `npm`:\n\n\tnpm install stest\n\n# Usage:\n\nA very simple test:\n\n\tvar stest = require(\"stest\"),\n\t\tassert = require(\"assert\");\n\n\tvar opts = { timeout: 0 };\n\n\tstest.addCase(\"stest\", opts,{\n\t\tsetup: function(promise){\n\t\t\tpromise.emit(\"event\", 42);\n\t\t\tpromise.emit(\"other_event\", \"Hello!\");\n\t\t},\n\t\tevent: function(fortytwo){\n\t\t\tassert.equal(42, fortytwo);\n\t\t},\n\t\tother_event: function(hello){\n\t\t\tassert.equal(\"Hello!\", hello);\n\t\t},\n\t\tteardown: function(){\n\n\t\t}\n\t}).run();\n\n`stest` hands you a `promise` object which is an instance\nof `EventEmitter`. Use this to emit events and values\nwhen your async calls complete, and check them in the\ncorresponding functions associated with the name of the\nevent you emitted.\n\nThe `setup` and `teardown` functions are given to you\nto setup your test case. \n\nThe `opts` argument allows you to specify a `timeout`.\nIf all async calls are not called before that time, then \nthe `stest` will give you a heads up.\n\nTests can be run en masse like this:\n\n\tsrunner -r test/test-*.js\n\nOr like this:\n\n\tnode test.js\n\nIf you prefer not to use `srunner`.\n\n# License\n\n(The MIT License)\n\nCopyright (C) 2011 by Siddharth Mahendraker \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n", + "maintainers": [ + { + "name": "siddmahen", + "email": "siddharth_mahen@me.com" + } + ], + "time": { + "modified": "2011-11-22T20:04:32.356Z", + "created": "2011-11-20T19:12:25.752Z", + "0.0.1": "2011-11-20T19:12:27.590Z", + "0.0.2": "2011-11-21T19:36:49.121Z", + "0.0.3": "2011-11-22T20:04:32.356Z" + }, + "author": { + "name": "Siddharth Mahendraker", + "email": "siddharth_mahen@me.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/siddMahen/stest.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/stest/0.0.1", + "0.0.2": "http://registry.npmjs.org/stest/0.0.2", + "0.0.3": "http://registry.npmjs.org/stest/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "4e5b4420a2e75d2578483822d05df7480b4c2809", + "tarball": "http://registry.npmjs.org/stest/-/stest-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "11005209204fb7360d64db8b0da184b926fc375a", + "tarball": "http://registry.npmjs.org/stest/-/stest-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "c156184eb1ce59075fa18fcd687bae14d02acd6d", + "tarball": "http://registry.npmjs.org/stest/-/stest-0.0.3.tgz" + } + }, + "keywords": [ + "async", + "test", + "event", + "testing", + "framework" + ], + "url": "http://registry.npmjs.org/stest/" + }, + "steve": { + "name": "steve", + "description": "JSON's best friend (a CORS/XHR2 application platform)", + "dist-tags": { + "latest": "0.5.3" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-12-09T23:44:11.838Z", + "created": "2011-11-15T17:50:28.686Z", + "0.3.2": "2011-11-15T17:50:29.917Z", + "0.4.2": "2011-12-02T20:38:51.273Z", + "0.5.0": "2011-12-09T20:03:55.583Z", + "0.5.1": "2011-12-09T20:56:08.847Z", + "0.5.2": "2011-12-09T23:42:45.077Z", + "0.5.3": "2011-12-09T23:44:11.838Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com", + "url": "http://coolaj86.info" + }, + "repository": { + "type": "git", + "url": "git://github.com/coolaj86/steve.git" + }, + "versions": { + "0.3.2": "http://registry.npmjs.org/steve/0.3.2", + "0.4.2": "http://registry.npmjs.org/steve/0.4.2", + "0.5.0": "http://registry.npmjs.org/steve/0.5.0", + "0.5.1": "http://registry.npmjs.org/steve/0.5.1", + "0.5.2": "http://registry.npmjs.org/steve/0.5.2", + "0.5.3": "http://registry.npmjs.org/steve/0.5.3" + }, + "dist": { + "0.3.2": { + "shasum": "88b5bd408fb518aca7ad202b543a8dc493334a93", + "tarball": "http://registry.npmjs.org/steve/-/steve-0.3.2.tgz" + }, + "0.4.2": { + "shasum": "56e5a134266e41a617f3dfce52ff8a8c68f40195", + "tarball": "http://registry.npmjs.org/steve/-/steve-0.4.2.tgz" + }, + "0.5.0": { + "shasum": "f6c5e119d3c5c81a67547af63567fa2a79d8b687", + "tarball": "http://registry.npmjs.org/steve/-/steve-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "dfcc5567fb5f7346311422b575ebb938492060be", + "tarball": "http://registry.npmjs.org/steve/-/steve-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "79f518a72e2109f0cd5a2fc5e632b5a21b8329fe", + "tarball": "http://registry.npmjs.org/steve/-/steve-0.5.2.tgz" + }, + "0.5.3": { + "shasum": "cf222ba2317a266167ea799523ffae30887ba76c", + "tarball": "http://registry.npmjs.org/steve/-/steve-0.5.3.tgz" + } + }, + "url": "http://registry.npmjs.org/steve/" + }, + "stextile": { + "name": "stextile", + "description": "Simple textile parser", + "dist-tags": { + "latest": "0.0.8" + }, + "maintainers": [ + { + "name": "alexyoung", + "email": "a@alexyoung.org" + } + ], + "time": { + "modified": "2011-08-11T09:25:07.224Z", + "created": "2011-07-11T09:46:54.282Z", + "0.0.1": "2011-07-11T09:46:54.981Z", + "0.0.2": "2011-07-11T10:25:39.773Z", + "0.0.3": "2011-07-11T10:30:34.454Z", + "0.0.4": "2011-07-12T20:49:42.546Z", + "0.0.5": "2011-07-12T21:43:52.664Z", + "0.0.6": "2011-07-22T21:08:11.335Z", + "0.0.7": "2011-08-10T23:41:55.624Z", + "0.0.8": "2011-08-11T07:28:20.691Z" + }, + "author": { + "name": "Alex R. Young", + "email": "a@alexyoung.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/alexyoung/stextile.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/stextile/0.0.1", + "0.0.2": "http://registry.npmjs.org/stextile/0.0.2", + "0.0.3": "http://registry.npmjs.org/stextile/0.0.3", + "0.0.4": "http://registry.npmjs.org/stextile/0.0.4", + "0.0.5": "http://registry.npmjs.org/stextile/0.0.5", + "0.0.6": "http://registry.npmjs.org/stextile/0.0.6", + "0.0.7": "http://registry.npmjs.org/stextile/0.0.7", + "0.0.8": "http://registry.npmjs.org/stextile/0.0.8" + }, + "dist": { + "0.0.1": { + "shasum": "4df5026f2b8fb57a4a4708cad2c17aebebb83235", + "tarball": "http://registry.npmjs.org/stextile/-/stextile-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "1a0958fe7ecf41c49b61e118939a62fd32184013", + "tarball": "http://registry.npmjs.org/stextile/-/stextile-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "82985cc16385b63dc26f0d3580de42310d8c2b9a", + "tarball": "http://registry.npmjs.org/stextile/-/stextile-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "f5bab2b51699d90e50b3f28c325204cf44949375", + "tarball": "http://registry.npmjs.org/stextile/-/stextile-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "e3d435848b134271cdcc8042daf94f846963380f", + "tarball": "http://registry.npmjs.org/stextile/-/stextile-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "c9bf4d191e22245f2193f17fcfb4336960882905", + "tarball": "http://registry.npmjs.org/stextile/-/stextile-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "7307114b71556be0461b92703888bb6a2615a295", + "tarball": "http://registry.npmjs.org/stextile/-/stextile-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "49cd3708e75029ced55c23550960e3f94a6ba32b", + "tarball": "http://registry.npmjs.org/stextile/-/stextile-0.0.8.tgz" + } + }, + "url": "http://registry.npmjs.org/stextile/" + }, + "stitch": { + "name": "stitch", + "description": "Stitch your CommonJS modules together for the browser", + "dist-tags": { + "latest": "0.3.2" + }, + "maintainers": [ + { + "name": "sstephenson", + "email": "sstephenson@gmail.com" + } + ], + "time": { + "modified": "2011-06-04T19:51:05.432Z", + "created": "2010-12-27T20:57:26.032Z", + "0.1.0": "2010-12-27T20:57:26.225Z", + "0.2.0": "2011-02-20T03:59:04.002Z", + "0.2.1": "2011-02-20T20:13:52.829Z", + "0.3.0": "2011-03-23T19:16:14.057Z", + "0.3.1": "2011-03-23T20:54:11.296Z", + "0.3.2": "2011-06-04T19:51:05.432Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/sstephenson/stitch.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/stitch/0.1.0", + "0.2.0": "http://registry.npmjs.org/stitch/0.2.0", + "0.2.1": "http://registry.npmjs.org/stitch/0.2.1", + "0.3.0": "http://registry.npmjs.org/stitch/0.3.0", + "0.3.1": "http://registry.npmjs.org/stitch/0.3.1", + "0.3.2": "http://registry.npmjs.org/stitch/0.3.2" + }, + "dist": { + "0.1.0": { + "shasum": "d7c52304c41e756f41ecb015e5aaec2a360d9322", + "tarball": "http://registry.npmjs.org/stitch/-/stitch-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "e1e7cc25f322c87659a78611e0ffd8befa41005a", + "tarball": "http://registry.npmjs.org/stitch/-/stitch-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "b1a0cdcf26c827ec554328b294678095d852430f", + "tarball": "http://registry.npmjs.org/stitch/-/stitch-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "2f4d827e4db23990d0bb06f3c60ab7c053d07911", + "tarball": "http://registry.npmjs.org/stitch/-/stitch-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "5fa672e7c66da8e96a201c86d0225224292537db", + "tarball": "http://registry.npmjs.org/stitch/-/stitch-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "27449d82a2452d6a66b6cbfe2964a0871c38b733", + "tarball": "http://registry.npmjs.org/stitch/-/stitch-0.3.2.tgz" + } + }, + "url": "http://registry.npmjs.org/stitch/" + }, + "stitchup": { + "name": "stitchup", + "description": "Command-line stitchjs. Easily package and minify Javascript & Coffeescript CommonJS modules. Provides stitchjs's browser-side require()", + "dist-tags": { + "latest": "0.1.5" + }, + "maintainers": [ + { + "name": "secoif", + "email": "secoif@gmail.com" + } + ], + "time": { + "modified": "2011-08-18T02:41:04.577Z", + "created": "2011-07-25T04:10:39.114Z", + "0.1.1": "2011-07-25T04:10:40.607Z", + "0.1.2": "2011-07-25T04:21:27.744Z", + "0.1.5": "2011-08-18T02:41:04.577Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/secoif/StitchUp.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/stitchup/0.1.1", + "0.1.2": "http://registry.npmjs.org/stitchup/0.1.2", + "0.1.5": "http://registry.npmjs.org/stitchup/0.1.5" + }, + "dist": { + "0.1.1": { + "shasum": "f6efeac6a8dea76aff6a8a4ee62f7a0875970f9b", + "tarball": "http://registry.npmjs.org/stitchup/-/stitchup-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "d1a2d65b3129f74e096e095de894b2a7c86f92dc", + "tarball": "http://registry.npmjs.org/stitchup/-/stitchup-0.1.2.tgz" + }, + "0.1.5": { + "shasum": "e54c279f73458cfac80b87d27495be715c9a66e5", + "tarball": "http://registry.npmjs.org/stitchup/-/stitchup-0.1.5.tgz" + } + }, + "url": "http://registry.npmjs.org/stitchup/" + }, + "stj": { + "name": "stj", + "description": "Standard Toolkit Javascript. Multi-platform core javascript library. Provide OOP and useful functions. As brand free as possible and CommonJS philosophy.", + "dist-tags": { + "latest": "1.3.0-2" + }, + "maintainers": [ + { + "name": "as-jpolo", + "email": "julien.polo@altshift.fr" + } + ], + "time": { + "modified": "2011-10-21T13:32:32.733Z", + "created": "2011-09-23T14:08:21.069Z", + "1.3.0": "2011-09-23T14:08:22.555Z", + "1.3.0-1": "2011-09-26T13:28:06.948Z", + "1.3.0-2": "2011-10-21T13:32:32.733Z" + }, + "author": { + "name": "Julien Polo", + "email": "julien.polo@gmail.com", + "url": "http://github.com/jpolo" + }, + "repository": { + "type": "git", + "url": "git://github.com/jpolo/stj.git" + }, + "versions": { + "1.3.0": "http://registry.npmjs.org/stj/1.3.0", + "1.3.0-1": "http://registry.npmjs.org/stj/1.3.0-1", + "1.3.0-2": "http://registry.npmjs.org/stj/1.3.0-2" + }, + "dist": { + "1.3.0": { + "shasum": "c3160eae76a880b2dbb0c07e0d72556d908728d3", + "tarball": "http://registry.npmjs.org/stj/-/stj-1.3.0.tgz" + }, + "1.3.0-1": { + "shasum": "20c728482ea33fd398cb5d12feaf62b534d82549", + "tarball": "http://registry.npmjs.org/stj/-/stj-1.3.0-1.tgz" + }, + "1.3.0-2": { + "shasum": "cefa1e94997e5c96572e6daff7fc306c386fa4dd", + "tarball": "http://registry.npmjs.org/stj/-/stj-1.3.0-2.tgz" + } + }, + "keywords": [ + "javascript", + "util", + "toolkit", + "prototype", + "jquery", + "dojo", + "underscore", + "oop", + "stj" + ], + "url": "http://registry.npmjs.org/stj/" + }, + "stj-server": { + "name": "stj-server", + "description": "Standard Toolkit Javascript. Provide nodejs extensions.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "as-jpolo", + "email": "julien.polo@altshift.fr" + } + ], + "time": { + "modified": "2011-10-21T13:33:42.967Z", + "created": "2011-10-04T14:23:15.555Z", + "0.1.0": "2011-10-04T14:23:16.994Z", + "0.1.1": "2011-10-21T13:33:42.967Z" + }, + "author": { + "name": "Julien Polo", + "email": "julien.polo@gmail.com", + "url": "http://github.com/jpolo" + }, + "repository": { + "type": "git", + "url": "git://github.com/jpolo/stj-server.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/stj-server/0.1.0", + "0.1.1": "http://registry.npmjs.org/stj-server/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "df8745a9b2ba2e1043618716286d9bf07889f033", + "tarball": "http://registry.npmjs.org/stj-server/-/stj-server-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "a14d7bbbc45e14dd80cd071f54fb6d11c51df569", + "tarball": "http://registry.npmjs.org/stj-server/-/stj-server-0.1.1.tgz" + } + }, + "keywords": [ + "stj", + "server", + "toolkit" + ], + "url": "http://registry.npmjs.org/stj-server/" + }, + "stn": { + "name": "stn", + "description": "A small utility library for parsing Simple Timesheet notation into a useful JSON object.", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "Simple Timesheet Notation\n=========================\nrevision 0.0.1\n--------------\n\n# Overview\n\nI often found it necessary to keep track of time spent on projects or activities. Every \"tracking system\" I've used has worked for me at some level accept one. I always forget to use them. I forget because they break the workflow. I work with allot of text files so the system that works for me is a text file log. Over time I have simplified that format which has made it easy to enter, read or parsing in a program. This module is an implementation of my current practice of writing a simple timesheet notation.\n\nHere's the summary view of the notation. Dates go in a single line by themselvesand are applied to all following time entries; time entries take up a single line and start with a time range; Time ranges can be followed by \"tags\" which are terninated by a semi-colon if present; the end of line terminates the entry description that will be submitted to the time system. Text which is not part of a date or time entry is ignored by the parser and assumed to be extranious notes. This allows me to have working notes as well as time information in the same file.\n\n\n# Notation details\n\n## Dates of entries\n\nA line which contains only a numerically formatted a date (.e.g. MM/DD/YYYYY or YYYY-MM-DD format) indicates the start of a log entries for a particular day. It is typed only once. If I'm entering time for November 3, 2011 I would note it one a single line as \n\n\t11/03/2011\n\nor\n\n\t2011-11-03\n\nAny following entries would then refer to that date until a new date was encountered.\n\n\n## Time entries\n\nAn entry is a line which indicates an activity to be tracked. An entry line begins with a start time, a single dash and an end time followed by a space or semi-colon. It would be in the form of \"HH:MM - HH:MM\" or \"HH:MM - now\" where the word \"now\" is short hand for insert current time here. It can be used to calculate the amount of time spent. The time range entry is followed by an optional keyword project/task string and a description of the activity. \n\nI usually follow this with a semi-colon to visually separate the time range from my notes about the project reference and activity description. After the time range until the next semi-colon is a keyword or project name I will use to associate the activity with. Finally the rest of the line training after the semi-colon is my note about the activity I was doing. If I was debugging code on a project call \"timesheet\" from 8:30 AM until 1:00 PM (i.e. 13:00) I would note it as\n\n\t8:30 - 1:00; timesheet; debugging parsing code.\n\nIf could also look like this\n\n\t8:30 - 1:00 timesheet; debugging parsing code.\n\nAny paragraphs of text that appear after the new line will be ignored until another time range or new date is encountered.\n\n# Example timesheet notation\n\nIn the following example is time entries for November 19, 2011 working on simple timesheet parsing project.\n\n\t11/19/2011\n\t\n\t8:30 - 11:00; timesheet notation; Writing a README.md describing my simple timesheet notation.\n\t\n\t11:00 - 12:00; timesheet notation; Drafting a NodeJS example parser for the notation.\n\t\n\t1:00 - 3:00; timesheet notation; debugging parser, realizing I can simplify my notation further and drop the first semi-colon.\n\n\tRealized I need to keep some backward compatibility for my parse so I don't have to rewrite/edit my ascii timesheet file.\n\n\nIn the last entry starting with \"Realized\" is skipped in parsing because it is neither a date or time entry.\n\n## Rational\n\nOver the years I've use various ASCII notation systems to produce web pages for projects and the nice thing about Simple Timesheet Notation is that is very limited in it's assumptions. It is limited enough to be quickly to typed while being easy to read. It doesn't conflict with the ASCII notation system de-jour. E.g. This notation can co-exist in a Markdown or Textile format document.\n\n# output of notation\n\nIn recent years I've found outputting data structures in JSON convenient regardless of programming language I'm working in. It seems like a good idea then to focus this module on generating JSON structures from the parsing process. Then wiring up the connection between a time tracking system (e.g. Basecamp, Harvest) is reasonably easy to do and maintain. The simplest useful JSON object generated from the previous example could look like\n\n\t{\n\t\t\"11/19/2011\": {\t\t\n\t\t\t\"8:30 - 11:00\": \"timesheet notation; Writing a README.md describing my simple timesheet notation.\",\n\t\t\t\"11:00 - 12:00\": \"timesheet notation; Drafting a NodeJS example parser for the notation.\",\n\t\t\t\"1:00 - 3:00\": [\n\t\t\t\t\"timesheet notation; debugging parser, realizing I can simplify my notation further and drop the first semi-colon.\",\n\t\t\t\t\"Realized I need to keep some backward compatibility for my parse so I don't have to rewrite/edit my ascii timesheet file.\"\n\t\t\t]\n\t\t}\n\t}\n\nThis is find if I want to generate a summary for my own reading. To be useful to a time tracking system I often need more. An alternative representation might look like\n\n\t{\n\t\t\"11/19/2011\": {\t\t\n\t\t\t\t\"8:30 - 11:00\": {\n\t\t\t\t\t\"project\":\"timesheet notation\",\n\t\t\t\t\t\"notes\": \"Writing a README.md describing my simple timesheet notation.\", \"hours\":\"2.5\",\"tags\":[\"stn project\"] },\n\t\t\t\t\"11:00 - 12:00\": {\n\t\t\t\t\t\"project\":\"timesheet notation\",\n\t\t\t\t\t\"notes\": \"Drafting a NodeJS example parser for the notation.\", \"hours\":\"1\", \"tags\":[\"stn project\"]},\n\t\t\t\t\"1:00 - 3:00\": {\n\t\t\t\t\t\"project\":\"timesheet notation\",\n\t\t\t\t\t\"notes\":\"debugging parser, realizing I can simplify my notation further and drop the first semi-colon.\",\n \"hours\":\"2\",\n \"tags\":[\"stn project\"]}\n\t\t\t}\n\t}\n\nFrom either of these it is a simple process to derive specific forms needed by specific systems. Early versions of harvest used a structure similar to\n\n\t{\n\t\t\"notes\":\"description of activity ...\",\n\t\t\"hours\":\"3.00\",\n\t\t\"project_id\":\"#####\",\"task_id\":\"###\",\n\t\t\"spent_at\":\"SOME_DATE_HERE\"\n\t} \n\nposted to their API for adding a daily entry. A simple keyword(s) set can map to a numeric project and task id. Dates are gathered along with times so hours can be calculated as spent_at can be derived too.\n\n# Misc notes\n\n## 12 hour versus 24 hour time notation\n\nIf you not using a twelve hour clock it is assume the first time before the dash is the start time and the second entry is the end time. Calculating hours then evolves looking at the relationship of those two times to each other. If the start time is smaller then the end time then simple subtraction of the start from the end calculates hours spent. If that is not the case (i.e. you have crossed the noon boundary) then you will need to normalize the values before subtracting the start from end time.\n\n# Examples\n\nParsing a text file containing timesheet notation name test-samples/timesheet-1.txt\n\n\tvar fs = require('fs'), \n\t\tutil = require('util'),\n\t\tstn = require('./stn');\n\t\n\ttext = fs.readFileSync('test-samples/timesheet-1.txt');\n\tresults = stn.parse(text, {normalize_date:true, hours: true, tags: true});\n\tconsole.log(util.inspect(results));\n\nResults would be a json object looking like test-samples/timesheet-1b.json. You could then take this JSON blob and send it to a time system.\n\n", + "maintainers": [ + { + "name": "rsdoiel", + "email": "rsdoiel@gmail.com" + } + ], + "time": { + "modified": "2011-11-22T22:01:54.197Z", + "created": "2011-11-22T22:01:52.665Z", + "0.0.1": "2011-11-22T22:01:54.197Z" + }, + "author": { + "name": "R. S. Doiel", + "email": "rsdoiel@gmail.com", + "url": "https://github.com/rsdoiel" + }, + "repository": { + "type": "git", + "url": "git://github.com/rsdoiel/Simple-Timesheet-Notation.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/stn/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "de3e3b58d39d2d20eb8d2e2ad0f84dfa1d5f079c", + "tarball": "http://registry.npmjs.org/stn/-/stn-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/stn/" + }, + "stock": { + "name": "stock", + "description": "A fast and efficient Node.js storage engine for stock market tick data and couple of modules for trading software development.", + "dist-tags": { + "latest": "0.0.8" + }, + "readme": "# node-stock\n\nAn extremely fast and efficient **[Node.js](http://nodejs.org)** storage engine for raw stock market tick data as well as a couple of handy modules for trading software development. \n\n**node-stock** is used by my proprietary blackbox trading company for all our robots. The code has been in production for more than a year now, so it is considered mature.\n\nThe code is well unit-tested.\n\n# Modules\n\n## TickStorage, Symbols, Symbol\n\nThe main thing: a tick storage engine.\n\n## …and others\n\n* **ExtraNumber** - incredibly small yet vital module for internal price representation in **node-stock**.\n* **ExtraDate** - date and time calculations specifically helpful for algorithmic trading on NYSE, NASDAQ and CME;\n* **WorkingDays** - NYSE and NASDAQ working days calculator;\n* **TimePeriod** - defines a list of human-readable day time periods and a few calculations with it; \n* **ExtraLog** - console.log and formatter functions tailored to **node-stock** internal formats of price and date/time;\n* **CandlesCalculator** - Fast OLHC calculator over raw tick data;\n\n# Coding agreements\n\n## Price format\n\nAll prices in **node-stock** and derived software are stored in integer in 1/100 of a cent. I.e. $23,45 becomes 234500. To convert a conventional price to this format, use parseInt(price*10000). To show a human-readable version, use Number.humanReadablePrice() in **ExtraNumber**: \n\n```javascript\nrequire('stock/ExtraNumber');\n\nvar price = 23.56;\nprice = parseInt(price*10000);\n\nconsole.log(\"Price = %s\", price.humanReadablePrice());\n\n// or: \n\nrequire('stock/ExtraLog');\n\nExtraLog.log(\"Price = %p\", price);\n```\n\n## Other agreements\n\n**Daystamp**. A daystamp is a date in form of YYYYMMDD. It can be Number or String, so your code must handle both cases. See ExtraDate, it contains all you need for daystamp calculations. \n\n**Day minute**. It's the number of a minute since 00:00 in the current day. I.e. 9:30 am becomes 570 (9*60+30=570). BTW, 24hr time is used thorough the project and so should you. \n\n**dbPath**. Path to the tickers database, a folder. See below for database structure description.\n\n**Time zones management**. You absolutely should run your software in the time zone of the stock exchange you are trading with. There are two ways of doing that: \n\n**1.** Set TZ environment variable: \n\n\tTZ=America/New_York node something.js \n\n**2.** Set process.env.TZ right at the start of your script before making anything else, especially before calling any Date methods: \n\n```javascript\nprocess.env.TZ='America/New_York';\nconsole.log(\"Hello at %s\", new Date());\n\n// or: \n\nrequire('stock/ExtraDate');\nrequire('stock/ExtraLog');\nprocess.env.TZ='America/New_York';\nExtraLog.log(\"Hello at %D\", Date.unixtime());\n```\n\n# Requirements\n\n* **Node.js** >= 0.6.0; s\n* **node-date-utils** https://github.com/JerrySievert/node-date-utils or npm install date-utils;\n* **node-compress-buffer** https://github.com/egorFiNE/node-compress-buffer or npm install compress-buffer;\n* **optimist** https://github.com/substack/node-optimist.git or npm install optimist; \n* **nodeunit** for unit testing; \n\n**Note:** nodeunit must be launched in New York time zone: \n\n\tTZ=America/New_York nodeunit test/\n\n# Installation\n\nnpm install stock.\n\n# FAQ\n\n## Q: Why such a complex file format for ticks files? \n\nA: It's not. If you actually start developing your own ticks database you will inevitably end up with a similar format. For a funny reference: this format is about forty times smaller and way faster than text files.\n\n## Q: Can you sell me raw ticks database for XXX or ZZZ?\n\nA: Unfortunately, no. My license doesn't allow reselling of tick data. However if you need some tick data **strictly** for R&D - please get in touch with me by email, we can work something out. \n\n**However,** I have made one particular NYSE ticker and one NASDAQ ticker publicly available so that you can play around with data. Should be enough for basic testing and development. They are anonymized but the data is correct and intact; please don't try to figure out which company it is. You can find nyse.zip and nasdaq.zip at Downloads area at Github. \n\n## Q: Augmentation of built-in classes?! You moron!\n\n**node-stock** adds methods to Date (see **ExtraDate**) and Number (see **ExtraNumber**).\n\nThis practice is wrong. Please do not inherit it in your project. There are only *extremely* rare cases when it's okay to do so and I consider these two modules an example of those. \n\n## Q: How do I run unit tests?\n\nnodeunit test/\n\n# Database structure\n\nDatabase path (dbPath) is a folder which contains tickers folders: \n\n\t/mnt/storage/tickers/\n\t/mnt/storage/tickers/AAPL/\n\t/mnt/storage/tickers/ORCL/\n\t/mnt/storage/tickers/YHOO/\n\t…\n\nEach ticker folder contains TickStorage files, each named with a daystamp of that day: \n\n\t/mnt/storage/tickers/YHOO/20110103.ticks\n\t/mnt/storage/tickers/YHOO/20110104.ticks\n\t…\n\nEach file is in TickStorage format. \n\nYou don't need to traverse this folder structure manually: there are two handy modules that will do that for you: Symbols and Symbol. They abstract the actual file storage from you. \n\nHere's a handy sinopsis: \n\n```javascript\nSymbols = require('stock/Symbols');\nSymbol = require('stock/Symbol');\nTickStorage = require('stock/TickStorage');\nrequire('stock/ExtraDate');\nrequire('stock/ExtraNumber');\n\nvar dbPath = '/Users/egor/tickers';\n\n// initialise the class that works with tickers database (a folder of tickers folders) \nvar symbols = new Symbols(dbPath);\n\n// now actually load the list of tickers (folders) available at that path\nif (!symbols.load()) {\n\tconsole.log(\"Cannot load tickers database!\");\n\treturn;\n}\n\n\n// now let's iterate over all tickers available\nvar symbol;\nwhile ((symbol=symbols.next())) {\n\t// mind that here \"symbol\" is a instantiated \"Symbol\" class\n\n\t// actually load list of days (files) at for that ticker (folder)\n\tif (!symbol.load()) {\n\t\tconsole.log(\"Cannot load days for %s\", symbol.symbol);\n\t\treturn;\n\t}\n\n\n\t// prepare tick storage for the first day of that ticker\n\tvar tickStorage = new TickStorage(dbPath, symbol.symbol, symbol.firstDay());\n\n\t// actually load the raw tick data for this symbol at that day\n\tif (!tickStorage.load()) {\n\t\tconsole.log(\"Cannot load ticks for %s/%s\", symbol.symbol, symbol.firstDay());\n\t\treturn;\n\t}\n\n\t// iterate over market ticks and calculate total volume\n\tvar tick, totalVolume=0;\n\twhile ((tick=tickStorage.nextTick())) {\n\t\tif (tick.isMarket) {\n\t\t\ttotalVolume+=tick.volume;\n\t\t}\n\t}\n\n\tconsole.log(\"%s total volume = %d\", symbol.symbol, totalVolume);\n}\n```\n\n\n# License \n\n**node-stock** is triple-licensed. \n\nIf you are using **node-stock** in-house and do not redistribute the software, you can use it under LGPL v2.1. Essentially this means \"do whatever you want as long as it's in-house\". Feel free to provide commercial services or make zillions of money with this software. Just drop me an email so I can share your joy.\n\nIf you are redistributing **node-stock**, please consider it GPLv2 licensed. \n\nIf neither option is good for you, I can sell you a commercial license, which also includes my personal support. Contact me by email. \n\n# Contacts\n\n**node-stock** is created by Egor Egorov, me@egorfine.com. I welcome your comments and suggestions, please feel free to drop me an email. \n", + "maintainers": [ + { + "name": "egorfine", + "email": "me@egorfine.com" + } + ], + "time": { + "modified": "2011-11-29T22:02:40.193Z", + "created": "2011-11-29T22:02:38.294Z", + "0.0.8": "2011-11-29T22:02:40.193Z" + }, + "author": { + "name": "Egor Egorov", + "email": "me@egorfine.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/egorfine/node-stock.git" + }, + "versions": { + "0.0.8": "http://registry.npmjs.org/stock/0.0.8" + }, + "dist": { + "0.0.8": { + "shasum": "6c837dcf65334c7851e9121ad2e7853a6c07b85c", + "tarball": "http://registry.npmjs.org/stock/-/stock-0.0.8.tgz" + } + }, + "url": "http://registry.npmjs.org/stock/" + }, + "stomp": { + "name": "stomp", + "description": "Implementation of the STOMP protocol in node.js", + "dist-tags": { + "latest": "0.0.7" + }, + "maintainers": [ + { + "name": "benjaminws", + "email": "benjaminws@just-another.net" + } + ], + "time": { + "modified": "2011-09-04T22:52:08.121Z", + "created": "2010-12-30T20:21:45.235Z", + "0.0.1": "2010-12-30T20:21:45.366Z", + "0.0.2": "2010-12-30T20:27:04.592Z", + "0.0.3": "2011-01-19T16:49:05.686Z", + "0.0.4": "2011-02-17T14:39:06.010Z", + "0.0.5": "2011-02-25T16:29:27.344Z", + "0.0.6": "2011-05-25T03:55:04.654Z", + "0.0.7": "2011-09-04T22:52:08.121Z" + }, + "author": { + "name": "Benjamin W. Smith", + "email": "benjaminws@just-another.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/benjaminws/stomp-js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/stomp/0.0.1", + "0.0.2": "http://registry.npmjs.org/stomp/0.0.2", + "0.0.3": "http://registry.npmjs.org/stomp/0.0.3", + "0.0.4": "http://registry.npmjs.org/stomp/0.0.4", + "0.0.5": "http://registry.npmjs.org/stomp/0.0.5", + "0.0.6": "http://registry.npmjs.org/stomp/0.0.6", + "0.0.7": "http://registry.npmjs.org/stomp/0.0.7" + }, + "dist": { + "0.0.1": { + "shasum": "53a5b6866d9762e01bf837304042c639ea045c82", + "tarball": "http://registry.npmjs.org/stomp/-/stomp-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "ed36ecfff5a3bbf5f9ef04ccd545617acb593503", + "tarball": "http://registry.npmjs.org/stomp/-/stomp-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "edd7cab7e3d0cb802089b0b872cec6a7b04f3e44", + "tarball": "http://registry.npmjs.org/stomp/-/stomp-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "cc29e7324bb169f5dbe18e3c0a1977fd20f35a1b", + "tarball": "http://registry.npmjs.org/stomp/-/stomp-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "52b08042034a0f327c9aab8335ea8511e5a0e83f", + "tarball": "http://registry.npmjs.org/stomp/-/stomp-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "add4c0a5fd379731764ac4da693e9638b9dc3d73", + "tarball": "http://registry.npmjs.org/stomp/-/stomp-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "ccc924d652b3e1bffbddbc4799446e4bc25c974a", + "tarball": "http://registry.npmjs.org/stomp/-/stomp-0.0.7.tgz" + } + }, + "keywords": [ + "STOMP", + "messaging", + "queue", + "protocol" + ], + "url": "http://registry.npmjs.org/stomp/" + }, + "stopwords": { + "name": "stopwords", + "description": "require('stopwords').stopwords", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "huned", + "email": "h@hunedbotee.com" + } + ], + "time": { + "modified": "2011-07-20T14:27:09.119Z", + "created": "2011-07-20T14:27:08.474Z", + "0.0.1": "2011-07-20T14:27:09.119Z" + }, + "author": { + "name": "Huned Botee", + "email": "h@hunedbotee.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/stopwords/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "21e333b35f3673cecaf345465226cfd0f9d12d92", + "tarball": "http://registry.npmjs.org/stopwords/-/stopwords-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/stopwords/" + }, + "storage.js": { + "name": "storage.js", + "description": "A thin wrapper around localStorage for easier access", + "dist-tags": { + "latest": "1.1.1" + }, + "maintainers": [ + { + "name": "passcod", + "email": "me@passcod.net" + } + ], + "time": { + "modified": "2011-11-03T05:40:01.003Z", + "created": "2011-11-03T04:27:19.326Z", + "1.1.0": "2011-11-03T04:27:22.937Z", + "1.1.1": "2011-11-03T05:40:01.003Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/passcod/Storage.js.git" + }, + "versions": { + "1.1.0": "http://registry.npmjs.org/storage.js/1.1.0", + "1.1.1": "http://registry.npmjs.org/storage.js/1.1.1" + }, + "dist": { + "1.1.0": { + "shasum": "94ebda0910ea0ceff035470a116e03e2ece5ff2c", + "tarball": "http://registry.npmjs.org/storage.js/-/storage.js-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "c7ead83f7aac0185161f791db92f435146248a6e", + "tarball": "http://registry.npmjs.org/storage.js/-/storage.js-1.1.1.tgz" + } + }, + "keywords": [ + "storage", + "ender" + ], + "url": "http://registry.npmjs.org/storage.js/" + }, + "store": { + "name": "store", + "description": "A localStorage wrapper for all browsers without using cookies or flash. Uses localStorage, globalStorage, and userData behavior under the hood", + "dist-tags": { + "latest": "1.1.1" + }, + "maintainers": [ + { + "name": "marcuswestin", + "email": "narcvs@gmail.com" + } + ], + "time": { + "modified": "2011-05-01T21:20:47.002Z", + "created": "2011-04-22T20:31:52.112Z", + "1.1.0": "2011-04-22T20:32:32.935Z", + "1.1.1": "2011-05-01T20:53:09.596Z", + "1.0.3": "2011-05-01T21:20:36.113Z" + }, + "author": { + "name": "Marcus Westin", + "email": "narcvs@gmail.com", + "url": "http://marcuswest.in" + }, + "repository": { + "type": "git", + "url": "git://github.com/marcuswestin/store.js.git" + }, + "versions": { + "1.1.0": "http://registry.npmjs.org/store/1.1.0", + "1.1.1": "http://registry.npmjs.org/store/1.1.1" + }, + "dist": { + "1.1.0": { + "shasum": "0514c82f51a314ebe8e004a318c7b5b0e8949a39", + "tarball": "http://registry.npmjs.org/store/-/store-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "fe3de1da9f71ebccd96ba187f8a283ece36dde50", + "tarball": "http://registry.npmjs.org/store/-/store-1.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/store/" + }, + "store.js": { + "name": "store.js", + "description": "Renamed on npm from store.js to store. See http://search.npmjs.org/#/store", + "dist-tags": { + "latest": "1.0.4" + }, + "maintainers": [ + { + "name": "marcuswestin", + "email": "narcvs@gmail.com" + } + ], + "author": { + "name": "Marcus Westin", + "email": "narcvs@gmail.com", + "url": "http://marcuswest.in" + }, + "repository": { + "type": "git", + "url": "git://github.com/marcuswestin/store.js.git" + }, + "time": { + "modified": "2011-05-01T21:23:10.167Z", + "created": "2011-03-25T19:49:32.230Z", + "0.1.0": "2011-03-25T19:49:32.230Z", + "1.0.0": "2011-03-25T19:49:32.230Z", + "1.0.1": "2011-03-25T19:49:32.230Z", + "1.0.2": "2011-03-25T19:49:32.230Z", + "1.1.0": "2011-03-25T19:49:32.230Z", + "1.0.3": "2011-05-01T21:20:18.953Z", + "1.0.4": "2011-05-01T21:22:40.038Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/store.js/0.1.0", + "1.0.0": "http://registry.npmjs.org/store.js/1.0.0", + "1.0.1": "http://registry.npmjs.org/store.js/1.0.1", + "1.0.2": "http://registry.npmjs.org/store.js/1.0.2", + "1.1.0": "http://registry.npmjs.org/store.js/1.1.0", + "1.0.3": "http://registry.npmjs.org/store.js/1.0.3", + "1.0.4": "http://registry.npmjs.org/store.js/1.0.4" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/store.js/-/store.js-0.1.0.tgz" + }, + "1.0.0": { + "tarball": "http://registry.npmjs.org/store.js/-/store.js-1.0.0.tgz" + }, + "1.0.1": { + "tarball": "http://registry.npmjs.org/store.js/-/store.js-1.0.1.tgz" + }, + "1.0.2": { + "tarball": "http://registry.npmjs.org/store.js/-/store.js-1.0.2.tgz" + }, + "1.1.0": { + "shasum": "cf15f07a42b2f67f231af4281554c07b2665f9e5", + "tarball": "http://registry.npmjs.org/store.js/-/store.js-1.1.0.tgz" + }, + "1.0.3": { + "shasum": "33aa8509230307d75e0866f947e3a8afcce30ced", + "tarball": "http://registry.npmjs.org/store.js/-/store.js-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "be69def07d98e1b94be41737f07fb135fb06f82f", + "tarball": "http://registry.npmjs.org/store.js/-/store.js-1.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/store.js/" + }, + "stories": { + "name": "stories", + "description": "Given/When/Then integration awesomeness for Node.js", + "dist-tags": { + "latest": "1.0.4" + }, + "maintainers": [ + { + "name": "eugeneware", + "email": "eugene@noblesamurai.com" + } + ], + "time": { + "modified": "2011-02-12T11:04:18.794Z", + "created": "2011-02-12T10:06:59.835Z", + "1.0.0": "2011-02-12T10:07:00.714Z", + "1.0.1": "2011-02-12T10:20:19.431Z", + "1.0.2": "2011-02-12T10:23:20.480Z", + "1.0.3": "2011-02-12T10:26:14.505Z", + "1.0.4": "2011-02-12T11:04:18.794Z" + }, + "author": { + "name": "Tobias Svensson", + "email": "tobiassvn@googlemail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/nharbour/node-stories.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/stories/1.0.0", + "1.0.1": "http://registry.npmjs.org/stories/1.0.1", + "1.0.2": "http://registry.npmjs.org/stories/1.0.2", + "1.0.3": "http://registry.npmjs.org/stories/1.0.3", + "1.0.4": "http://registry.npmjs.org/stories/1.0.4" + }, + "dist": { + "1.0.0": { + "shasum": "f6e629de52ea55541bd49d61bf2d02f292a1784f", + "tarball": "http://registry.npmjs.org/stories/-/stories-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "4271e71ba22a71ea92b7683cf397d26a10a546b4", + "tarball": "http://registry.npmjs.org/stories/-/stories-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "8d15ead97e0d889bca1256f9e98b57b6adaacb6b", + "tarball": "http://registry.npmjs.org/stories/-/stories-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "e3a0cb2116de81e0d58aeeba715149c03d55a99f", + "tarball": "http://registry.npmjs.org/stories/-/stories-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "c51e8b8df3312906933971ae4fec1d803336569e", + "tarball": "http://registry.npmjs.org/stories/-/stories-1.0.4.tgz" + } + }, + "keywords": [ + "testing", + "bdd", + "cucumber", + "tdd", + "test" + ], + "url": "http://registry.npmjs.org/stories/" + }, + "storify": { + "name": "storify", + "description": "Storify API client for node.js", + "dist-tags": { + "latest": "0.0.15" + }, + "maintainers": [ + { + "name": "storify", + "email": "dev@storify.com" + } + ], + "time": { + "modified": "2011-12-08T00:16:39.009Z", + "created": "2011-09-13T00:03:41.027Z", + "0.0.4": "2011-12-07T02:35:52.377Z", + "0.0.5": "2011-12-07T02:35:52.377Z", + "0.0.6": "2011-12-07T02:35:52.377Z", + "0.0.7": "2011-10-25T01:30:47.300Z", + "0.0.8": "2011-10-27T00:19:19.321Z", + "0.0.9": "2011-10-27T01:12:11.986Z", + "0.0.10": "2011-10-27T01:47:37.471Z", + "0.0.11": "2011-11-16T21:13:25.429Z", + "0.0.12": "2011-11-28T23:26:24.853Z", + "0.0.13": "2011-11-28T23:59:49.145Z", + "0.0.14": "2011-12-07T02:35:52.377Z", + "0.0.15": "2011-12-08T00:16:39.009Z" + }, + "author": { + "name": "Storify", + "email": "dev@storify.com", + "url": "http://storify.com" + }, + "versions": { + "0.0.4": "http://registry.npmjs.org/storify/0.0.4", + "0.0.5": "http://registry.npmjs.org/storify/0.0.5", + "0.0.6": "http://registry.npmjs.org/storify/0.0.6", + "0.0.7": "http://registry.npmjs.org/storify/0.0.7", + "0.0.8": "http://registry.npmjs.org/storify/0.0.8", + "0.0.9": "http://registry.npmjs.org/storify/0.0.9", + "0.0.10": "http://registry.npmjs.org/storify/0.0.10", + "0.0.11": "http://registry.npmjs.org/storify/0.0.11", + "0.0.12": "http://registry.npmjs.org/storify/0.0.12", + "0.0.13": "http://registry.npmjs.org/storify/0.0.13", + "0.0.14": "http://registry.npmjs.org/storify/0.0.14", + "0.0.15": "http://registry.npmjs.org/storify/0.0.15" + }, + "dist": { + "0.0.4": { + "shasum": "d7c56e1a0a180077062c555a4c76a5ed2914b4de", + "tarball": "http://registry.npmjs.org/storify/-/storify-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "7bc4811decd951b25f54dde22d2acbe5fc29857e", + "tarball": "http://registry.npmjs.org/storify/-/storify-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "16728541135a8d9acfc9295db55613e4b37d3770", + "tarball": "http://registry.npmjs.org/storify/-/storify-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "2ac4e08a3e317ad2d5d13a862760152bfe71d915", + "tarball": "http://registry.npmjs.org/storify/-/storify-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "52e825919db571a07a6531237b546255f339a1ba", + "tarball": "http://registry.npmjs.org/storify/-/storify-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "800b789abddff96b1417e4c793426c871201e9b5", + "tarball": "http://registry.npmjs.org/storify/-/storify-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "d3591886eb4b5617f959df7213945c96f66176f0", + "tarball": "http://registry.npmjs.org/storify/-/storify-0.0.10.tgz" + }, + "0.0.11": { + "shasum": "756a8735a657a5de24abce70f772e90d825b4b29", + "tarball": "http://registry.npmjs.org/storify/-/storify-0.0.11.tgz" + }, + "0.0.12": { + "shasum": "538e8adc7f65d24401bc8316cde6f72d1917606c", + "tarball": "http://registry.npmjs.org/storify/-/storify-0.0.12.tgz" + }, + "0.0.13": { + "shasum": "91e6aee492ad088932ac22b5f1eeb134931e0ed9", + "tarball": "http://registry.npmjs.org/storify/-/storify-0.0.13.tgz" + }, + "0.0.14": { + "shasum": "0dc4ae82c559c673247ef9d20d1a36c1ec1045f9", + "tarball": "http://registry.npmjs.org/storify/-/storify-0.0.14.tgz" + }, + "0.0.15": { + "shasum": "e1cd957004a959ae269349ddcb19d98dbdcd242e", + "tarball": "http://registry.npmjs.org/storify/-/storify-0.0.15.tgz" + } + }, + "url": "http://registry.npmjs.org/storify/" + }, + "storify-templates": { + "name": "storify-templates", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "storify", + "email": "dev@storify.com" + } + ], + "time": { + "modified": "2011-04-12T01:08:08.652Z", + "created": "2011-04-12T01:08:08.314Z", + "0.0.1": "2011-04-12T01:08:08.652Z" + }, + "author": { + "name": "Storify", + "url": "http://storify.com" + }, + "repository": "git://github.com/storify/templates.git", + "versions": { + "0.0.1": "http://registry.npmjs.org/storify-templates/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "b002ccccdae571a4fe53d149769888a2ece7d0b0", + "tarball": "http://registry.npmjs.org/storify-templates/-/storify-templates-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/storify-templates/" + }, + "storm": { + "name": "storm", + "description": "StormJS, high performance, intelligence compiler.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "guileen", + "email": "guileen@gmail.com" + } + ], + "time": { + "modified": "2011-05-18T04:44:59.125Z", + "created": "2011-05-18T04:44:56.612Z", + "0.0.1": "2011-05-18T04:44:59.125Z" + }, + "author": { + "name": "Gui Lin", + "email": "guileen@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/guileen/stormjs.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/storm/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "e7514ef11f18c3bb4935c42963629c06a5daa090", + "tarball": "http://registry.npmjs.org/storm/-/storm-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/storm/" + }, + "stove": { + "name": "stove", + "dist-tags": { + "latest": "0.0.7" + }, + "maintainers": [ + { + "name": "architectd", + "email": "craig.j.condon@gmail.com" + } + ], + "time": { + "modified": "2011-09-13T17:43:48.937Z", + "created": "2011-07-15T05:30:43.924Z", + "0.0.1": "2011-07-15T05:30:44.141Z", + "0.0.1-2": "2011-07-28T05:20:58.315Z", + "0.0.2": "2011-07-28T05:23:45.845Z", + "0.0.3": "2011-08-10T03:00:33.372Z", + "0.0.4": "2011-08-10T05:09:30.809Z", + "0.0.5": "2011-08-28T22:22:23.054Z", + "0.0.6": "2011-09-12T05:24:43.657Z", + "0.0.7": "2011-09-13T17:43:48.937Z" + }, + "author": { + "name": "Craig Condon", + "email": "craig@spiceapps.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/spiceapps/stove.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/stove/0.0.1", + "0.0.1-2": "http://registry.npmjs.org/stove/0.0.1-2", + "0.0.2": "http://registry.npmjs.org/stove/0.0.2", + "0.0.3": "http://registry.npmjs.org/stove/0.0.3", + "0.0.4": "http://registry.npmjs.org/stove/0.0.4", + "0.0.5": "http://registry.npmjs.org/stove/0.0.5", + "0.0.6": "http://registry.npmjs.org/stove/0.0.6", + "0.0.7": "http://registry.npmjs.org/stove/0.0.7" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/stove/-/stove-0.0.1.tgz" + }, + "0.0.1-2": { + "tarball": "http://registry.npmjs.org/stove/-/stove-0.0.1-2.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/stove/-/stove-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/stove/-/stove-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://registry.npmjs.org/stove/-/stove-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://registry.npmjs.org/stove/-/stove-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "552b993de2dba6d0649975265bb0c5c276094038", + "tarball": "http://registry.npmjs.org/stove/-/stove-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "a8065518d6e47d73d0eb21307134090dc5be9732", + "tarball": "http://registry.npmjs.org/stove/-/stove-0.0.7.tgz" + } + }, + "url": "http://registry.npmjs.org/stove/" + }, + "str.js": { + "name": "str.js", + "description": "a simple string helper library", + "dist-tags": { + "latest": "1.0.3" + }, + "maintainers": [ + { + "name": "jga", + "email": "me@jga.me" + } + ], + "time": { + "modified": "2011-06-04T18:07:09.534Z", + "created": "2011-04-29T01:10:54.395Z", + "1.0.0": "2011-04-29T01:10:54.711Z", + "1.0.1": "2011-04-29T01:14:29.895Z", + "1.0.2": "2011-05-28T15:27:47.779Z", + "1.0.3": "2011-06-04T18:07:09.534Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/jgallen23/str.js.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/str.js/1.0.0", + "1.0.1": "http://registry.npmjs.org/str.js/1.0.1", + "1.0.2": "http://registry.npmjs.org/str.js/1.0.2", + "1.0.3": "http://registry.npmjs.org/str.js/1.0.3" + }, + "dist": { + "1.0.0": { + "shasum": "487f68b6e6eeecf16cf2abd7af026710a6d35de5", + "tarball": "http://registry.npmjs.org/str.js/-/str.js-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "becc3c023bbc45ff32428b2c56ff964904a7428a", + "tarball": "http://registry.npmjs.org/str.js/-/str.js-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "0d222942f72636ad3bf754643474247205da7e25", + "tarball": "http://registry.npmjs.org/str.js/-/str.js-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "0ac53a56f2b08486fa59a4d6a12f6de3b4af81d4", + "tarball": "http://registry.npmjs.org/str.js/-/str.js-1.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/str.js/" + }, + "strack": { + "name": "strack", + "description": "Console task tracking and bugtracking system.", + "dist-tags": { + "latest": "0.5.2" + }, + "maintainers": [ + { + "name": "selead", + "email": "allselead@gmail.com" + } + ], + "time": { + "modified": "2011-04-15T21:36:10.093Z", + "created": "2011-02-28T18:29:42.730Z", + "0.5.1b": "2011-02-28T18:29:43.263Z", + "0.5.2": "2011-03-02T11:18:13.077Z" + }, + "author": { + "name": "Temnov Kirill", + "email": "allselead@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/selead/strack.git" + }, + "versions": { + "0.5.1b": "http://registry.npmjs.org/strack/0.5.1b", + "0.5.2": "http://registry.npmjs.org/strack/0.5.2" + }, + "dist": { + "0.5.1b": { + "shasum": "ec50db8736cdba310bd41e825e9a97ffb9d16145", + "tarball": "http://registry.npmjs.org/strack/-/strack-0.5.1b.tgz" + }, + "0.5.2": { + "shasum": "006eebcaf41c98b36143251d11e4700a32906a96", + "tarball": "http://registry.npmjs.org/strack/-/strack-0.5.2.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "ff42f334a2471189dd5fbd2ba6716e53893580a4", + "tarball": "http://registry.npmjs.org/strack/-/strack-0.5.2-0.4-sunos-5.11.tgz" + } + } + } + }, + "url": "http://registry.npmjs.org/strack/" + }, + "strappy": { + "name": "strappy", + "description": "Bootstrapper for node", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "mattinsler", + "email": "matt.insler@gmail.com" + } + ], + "time": { + "modified": "2011-05-31T04:17:54.195Z", + "created": "2011-05-31T04:17:54.005Z", + "0.1.0": "2011-05-31T04:17:54.195Z" + }, + "author": { + "name": "Matt Insler", + "email": "matt.insler@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mattinsler/strappy.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/strappy/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "f3f09f4e83853d1c2a31f34f8cc4411c6b1d83c1", + "tarball": "http://registry.npmjs.org/strappy/-/strappy-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/strappy/" + }, + "strata": { + "name": "strata", + "description": "A streaming HTTP framework patterned after WSGI/Rack", + "dist-tags": { + "latest": "0.9.0" + }, + "maintainers": [ + { + "name": "mjijackson", + "email": "mjijackson@gmail.com" + } + ], + "time": { + "modified": "2011-12-07T15:39:24.798Z", + "created": "2011-09-07T17:49:05.504Z", + "0.0.0": "2011-12-07T15:39:24.798Z", + "0.4.0": "2011-12-07T15:39:24.798Z", + "0.4.1": "2011-12-07T15:39:24.798Z", + "0.4.2": "2011-12-07T15:39:24.798Z", + "0.4.3": "2011-12-07T15:39:24.798Z", + "0.4.4": "2011-12-07T15:39:24.798Z", + "0.4.5": "2011-12-07T15:39:24.798Z", + "0.5.0": "2011-12-07T15:39:24.798Z", + "0.5.1": "2011-12-07T15:39:24.798Z", + "0.5.2": "2011-12-07T15:39:24.798Z", + "0.5.3": "2011-12-07T15:39:24.798Z", + "0.5.4": "2011-12-07T15:39:24.798Z", + "0.5.5": "2011-12-07T15:39:24.798Z", + "0.5.6": "2011-12-07T15:39:24.798Z", + "0.5.7": "2011-12-07T15:39:24.798Z", + "0.5.8": "2011-12-07T15:39:24.798Z", + "0.5.9": "2011-12-07T15:39:24.798Z", + "0.5.10": "2011-12-07T15:39:24.798Z", + "0.5.11": "2011-12-07T15:39:24.798Z", + "0.5.12": "2011-12-07T15:39:24.798Z", + "0.5.13": "2011-12-07T15:39:24.798Z", + "0.5.14": "2011-12-07T15:39:24.798Z", + "0.6.0": "2011-12-07T15:39:24.798Z", + "0.6.1": "2011-12-07T15:39:24.798Z", + "0.7.0": "2011-10-31T06:36:34.092Z", + "0.8.0": "2011-11-16T23:30:02.635Z", + "0.8.1": "2011-11-17T00:54:47.020Z", + "0.8.2": "2011-11-30T21:33:59.397Z", + "0.9.0": "2011-12-07T15:39:24.798Z" + }, + "author": { + "name": "Michael Jackson", + "email": "mjijackson@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mjijackson/strata.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/strata/0.0.0", + "0.4.0": "http://registry.npmjs.org/strata/0.4.0", + "0.4.1": "http://registry.npmjs.org/strata/0.4.1", + "0.4.2": "http://registry.npmjs.org/strata/0.4.2", + "0.4.3": "http://registry.npmjs.org/strata/0.4.3", + "0.4.4": "http://registry.npmjs.org/strata/0.4.4", + "0.4.5": "http://registry.npmjs.org/strata/0.4.5", + "0.5.0": "http://registry.npmjs.org/strata/0.5.0", + "0.5.1": "http://registry.npmjs.org/strata/0.5.1", + "0.5.2": "http://registry.npmjs.org/strata/0.5.2", + "0.5.3": "http://registry.npmjs.org/strata/0.5.3", + "0.5.4": "http://registry.npmjs.org/strata/0.5.4", + "0.5.5": "http://registry.npmjs.org/strata/0.5.5", + "0.5.6": "http://registry.npmjs.org/strata/0.5.6", + "0.5.7": "http://registry.npmjs.org/strata/0.5.7", + "0.5.8": "http://registry.npmjs.org/strata/0.5.8", + "0.5.9": "http://registry.npmjs.org/strata/0.5.9", + "0.5.10": "http://registry.npmjs.org/strata/0.5.10", + "0.5.11": "http://registry.npmjs.org/strata/0.5.11", + "0.5.12": "http://registry.npmjs.org/strata/0.5.12", + "0.5.13": "http://registry.npmjs.org/strata/0.5.13", + "0.5.14": "http://registry.npmjs.org/strata/0.5.14", + "0.6.0": "http://registry.npmjs.org/strata/0.6.0", + "0.6.1": "http://registry.npmjs.org/strata/0.6.1", + "0.7.0": "http://registry.npmjs.org/strata/0.7.0", + "0.8.0": "http://registry.npmjs.org/strata/0.8.0", + "0.8.1": "http://registry.npmjs.org/strata/0.8.1", + "0.8.2": "http://registry.npmjs.org/strata/0.8.2", + "0.9.0": "http://registry.npmjs.org/strata/0.9.0" + }, + "dist": { + "0.0.0": { + "shasum": "c65eb69d448999da68feb0c8279806762c57ba2c", + "tarball": "http://registry.npmjs.org/strata/-/strata-0.0.0.tgz" + }, + "0.4.0": { + "shasum": "916787d9166a4b680a62b93ba3ebacf68df46c71", + "tarball": "http://registry.npmjs.org/strata/-/strata-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "142a9eccf20f23e24459afe2ca5373918effc7fd", + "tarball": "http://registry.npmjs.org/strata/-/strata-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "d6e41622f1391c6cf69ba42b2b6a6073ae642dda", + "tarball": "http://registry.npmjs.org/strata/-/strata-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "1c44db5d4b292a5b0b6b62f77a5732bc9d21f178", + "tarball": "http://registry.npmjs.org/strata/-/strata-0.4.3.tgz" + }, + "0.4.4": { + "shasum": "e5196f2b3fe068926e677bd031f86189f3c4015d", + "tarball": "http://registry.npmjs.org/strata/-/strata-0.4.4.tgz" + }, + "0.4.5": { + "shasum": "af25c2514ca781f4ca33dafe7b35d0b8e28d3842", + "tarball": "http://registry.npmjs.org/strata/-/strata-0.4.5.tgz" + }, + "0.5.0": { + "shasum": "b6b35583b1cafcf313e016def0696b8c83fccdc1", + "tarball": "http://registry.npmjs.org/strata/-/strata-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "ca4864909bd588904fc5a9a4935bf1194a8e1cff", + "tarball": "http://registry.npmjs.org/strata/-/strata-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "e085e6bd9bb66f593b0b58dba7a41d4eeb640c30", + "tarball": "http://registry.npmjs.org/strata/-/strata-0.5.2.tgz" + }, + "0.5.3": { + "shasum": "9265ffb9e390e05a9e188fb881baeb78aaaf1a94", + "tarball": "http://registry.npmjs.org/strata/-/strata-0.5.3.tgz" + }, + "0.5.4": { + "shasum": "ce47b4db2650e83610861c39f21427840eb7f38f", + "tarball": "http://registry.npmjs.org/strata/-/strata-0.5.4.tgz" + }, + "0.5.5": { + "shasum": "b912e0f0bd94e4d9cb3632e0daadffeb3a7448ae", + "tarball": "http://registry.npmjs.org/strata/-/strata-0.5.5.tgz" + }, + "0.5.6": { + "shasum": "f8d16bcef0987b362eb051f621b5c1402963d5bb", + "tarball": "http://registry.npmjs.org/strata/-/strata-0.5.6.tgz" + }, + "0.5.7": { + "shasum": "3fc9ee8c55b6275732edc452204e2c8cb16296c4", + "tarball": "http://registry.npmjs.org/strata/-/strata-0.5.7.tgz" + }, + "0.5.8": { + "shasum": "752cf68f33d07f69888ca87e06356fae69dde3d7", + "tarball": "http://registry.npmjs.org/strata/-/strata-0.5.8.tgz" + }, + "0.5.9": { + "shasum": "2a85d94c8d216fe24ef361b778bf6a91f24112a2", + "tarball": "http://registry.npmjs.org/strata/-/strata-0.5.9.tgz" + }, + "0.5.10": { + "shasum": "f05bc07433a612180b6a9597fd0229af8aa0262f", + "tarball": "http://registry.npmjs.org/strata/-/strata-0.5.10.tgz" + }, + "0.5.11": { + "shasum": "94d0fa489a4be96dd0aa229f4830a69206bb4d8d", + "tarball": "http://registry.npmjs.org/strata/-/strata-0.5.11.tgz" + }, + "0.5.12": { + "shasum": "f7d25cead8da431ee41bc47a7bb514c5bbf5fe82", + "tarball": "http://registry.npmjs.org/strata/-/strata-0.5.12.tgz" + }, + "0.5.13": { + "shasum": "7b2f83017f4184f42f5e8c9d2beea6fe2972faa5", + "tarball": "http://registry.npmjs.org/strata/-/strata-0.5.13.tgz" + }, + "0.5.14": { + "shasum": "b746f717be3543f145381b5ba7425b47bd42f4ba", + "tarball": "http://registry.npmjs.org/strata/-/strata-0.5.14.tgz" + }, + "0.6.0": { + "shasum": "5c50d01bd4660f799b5edb7c56ea6dd38b999309", + "tarball": "http://registry.npmjs.org/strata/-/strata-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "0574839be7826421782b88bb207975a6a83468f0", + "tarball": "http://registry.npmjs.org/strata/-/strata-0.6.1.tgz" + }, + "0.7.0": { + "shasum": "b178e852f11433c2e7f6b5c70e21a7ff01164528", + "tarball": "http://registry.npmjs.org/strata/-/strata-0.7.0.tgz" + }, + "0.8.0": { + "shasum": "6d8993c4629022c3213cb31e5a1e848103504f67", + "tarball": "http://registry.npmjs.org/strata/-/strata-0.8.0.tgz" + }, + "0.8.1": { + "shasum": "686e19da56477a7eba30b59d89cc81ed64e9c288", + "tarball": "http://registry.npmjs.org/strata/-/strata-0.8.1.tgz" + }, + "0.8.2": { + "shasum": "82918b11e40ab6f6c0b70afd88183700815d6837", + "tarball": "http://registry.npmjs.org/strata/-/strata-0.8.2.tgz" + }, + "0.9.0": { + "shasum": "7f63418f851592e6228c3a915083753c77b1b078", + "tarball": "http://registry.npmjs.org/strata/-/strata-0.9.0.tgz" + } + }, + "keywords": [ + "web", + "server", + "framework", + "middleware", + "rack", + "jsgi", + "wsgi", + "connect", + "express" + ], + "url": "http://registry.npmjs.org/strata/" + }, + "stream-buffers": { + "name": "stream-buffers", + "description": "Buffer-backed Streams for reading and writing.", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "samcday", + "email": "sam.c.day@gmail.com" + } + ], + "time": { + "modified": "2011-02-21T00:36:46.350Z", + "created": "2011-02-18T00:27:52.891Z", + "0.1.0": "2011-02-18T00:27:53.851Z", + "0.2.0": "2011-02-18T23:59:20.416Z", + "0.2.1": "2011-02-21T00:36:46.350Z" + }, + "author": { + "name": "Sam Day", + "email": "sam.c.day@gmail.com" + }, + "repository": { + "type": "git", + "url": "https://github.com/samcday/node-stream-buffer.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/stream-buffers/0.1.0", + "0.2.0": "http://registry.npmjs.org/stream-buffers/0.2.0", + "0.2.1": "http://registry.npmjs.org/stream-buffers/0.2.1" + }, + "dist": { + "0.1.0": { + "shasum": "d5189161d7920816ba2169c3d63fd3b975f74bae", + "tarball": "http://registry.npmjs.org/stream-buffers/-/stream-buffers-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "40287b3f2980a9b0b32f48071139559f66b548ab", + "tarball": "http://registry.npmjs.org/stream-buffers/-/stream-buffers-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "e0f04f7d15223c76a6f4822f39c88224d055fb7a", + "tarball": "http://registry.npmjs.org/stream-buffers/-/stream-buffers-0.2.1.tgz" + } + }, + "keywords": "memory streams, buffer streams", + "url": "http://registry.npmjs.org/stream-buffers/" + }, + "stream-handler": { + "name": "stream-handler", + "description": "Simple stream handler that emits line events everytime a specified delimiter is returned by the server.", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "jrgns", + "email": "jrgns@jrgns.net" + } + ], + "time": { + "modified": "2011-06-30T10:15:37.444Z", + "created": "2011-01-13T09:41:15.085Z", + "0.1.0": "2011-01-13T09:41:16.157Z", + "0.1.1": "2011-01-24T10:10:01.762Z", + "0.1.2": "2011-06-30T10:15:37.444Z" + }, + "author": { + "name": "J Jrgns du Toit", + "email": "jrgns@jrgns.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/jrgns/node_stream_handler.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/stream-handler/0.1.0", + "0.1.1": "http://registry.npmjs.org/stream-handler/0.1.1", + "0.1.2": "http://registry.npmjs.org/stream-handler/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "e63a384b06d19e5441a8096c98171a229dff8a50", + "tarball": "http://registry.npmjs.org/stream-handler/-/stream-handler-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "ba16426de24ac01889d1325bc5b7d52d309a0d64", + "tarball": "http://registry.npmjs.org/stream-handler/-/stream-handler-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "35bf727b9235544f676e231f098e8878aaf5e000", + "tarball": "http://registry.npmjs.org/stream-handler/-/stream-handler-0.1.2.tgz" + } + }, + "keywords": [ + "stream", + "handler", + "line", + "delimiter" + ], + "url": "http://registry.npmjs.org/stream-handler/" + }, + "stream-stack": { + "name": "stream-stack", + "description": "Filter low-level `Stream` instances into stackable, protocol-based streams.", + "dist-tags": { + "latest": "1.1.3" + }, + "maintainers": [ + { + "name": "TooTallNate", + "email": "nathan@tootallnate.net" + } + ], + "author": { + "name": "Nathan Rajlich", + "email": "nathan@tootallnate.net" + }, + "time": { + "modified": "2011-06-25T07:27:58.221Z", + "created": "2011-01-02T21:04:07.872Z", + "0.0.1": "2011-01-02T21:04:07.872Z", + "0.0.2": "2011-01-02T21:04:07.872Z", + "0.1.0": "2011-01-02T21:04:07.872Z", + "1.0.0": "2011-01-02T21:04:07.872Z", + "1.0.1": "2011-01-02T21:04:07.872Z", + "1.1.0": "2011-01-02T21:04:07.872Z", + "1.1.1": "2011-02-04T18:20:53.567Z", + "1.1.2": "2011-05-10T19:02:33.521Z", + "1.1.3": "2011-06-25T07:27:58.221Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/stream-stack/0.0.1", + "0.0.2": "http://registry.npmjs.org/stream-stack/0.0.2", + "0.1.0": "http://registry.npmjs.org/stream-stack/0.1.0", + "1.0.0": "http://registry.npmjs.org/stream-stack/1.0.0", + "1.0.1": "http://registry.npmjs.org/stream-stack/1.0.1", + "1.1.0": "http://registry.npmjs.org/stream-stack/1.1.0", + "1.1.1": "http://registry.npmjs.org/stream-stack/1.1.1", + "1.1.2": "http://registry.npmjs.org/stream-stack/1.1.2", + "1.1.3": "http://registry.npmjs.org/stream-stack/1.1.3" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/stream-stack/-/stream-stack-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/stream-stack/-/stream-stack-0.0.2.tgz" + }, + "0.1.0": { + "tarball": "http://registry.npmjs.org/stream-stack/-/stream-stack-0.1.0.tgz" + }, + "1.0.0": { + "shasum": "7de9254e4eaa3fa846e4bbfcf928446b2faededb", + "tarball": "http://registry.npmjs.org/stream-stack/-/stream-stack-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "5faa59f620f2deb2dc108ef9e79781ab5a3f3b5a", + "tarball": "http://registry.npmjs.org/stream-stack/-/stream-stack-1.0.1.tgz" + }, + "1.1.0": { + "shasum": "150961ccbc5df573576a2b66d05a8c6423a825de", + "tarball": "http://registry.npmjs.org/stream-stack/-/stream-stack-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "d5a4e0ce1c94b76d927b532933900503b542928b", + "tarball": "http://registry.npmjs.org/stream-stack/-/stream-stack-1.1.1.tgz" + }, + "1.1.2": { + "shasum": "dfe3f9cde878c7f34dc813ba9642b178e0c7a235", + "tarball": "http://registry.npmjs.org/stream-stack/-/stream-stack-1.1.2.tgz" + }, + "1.1.3": { + "shasum": "20e53ece20b2a20e7ba6b08790f3b63dc6fa48e7", + "tarball": "http://registry.npmjs.org/stream-stack/-/stream-stack-1.1.3.tgz" + } + }, + "keywords": [ + "stream", + "stack", + "protocol", + "filter" + ], + "url": "http://registry.npmjs.org/stream-stack/" + }, + "streamedemitter": { + "name": "streamedemitter", + "dist-tags": { + "latest": "0.1.7" + }, + "maintainers": [ + { + "name": "bradleymeck", + "email": "bradley.meck@gmail.com" + } + ], + "time": { + "modified": "2011-10-12T03:54:55.536Z", + "created": "2011-10-03T12:58:37.260Z", + "0.1.0": "2011-10-03T12:58:38.172Z", + "0.1.1": "2011-10-03T13:44:12.540Z", + "0.1.2": "2011-10-03T14:13:52.743Z", + "0.1.3": "2011-10-03T14:25:07.905Z", + "0.1.4": "2011-10-10T16:00:13.042Z", + "0.1.5": "2011-10-10T16:02:52.026Z", + "0.1.6": "2011-10-10T16:17:15.126Z", + "0.1.7": "2011-10-12T03:54:55.536Z" + }, + "author": { + "name": "bradleymeck" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/streamedemitter/0.1.0", + "0.1.1": "http://registry.npmjs.org/streamedemitter/0.1.1", + "0.1.2": "http://registry.npmjs.org/streamedemitter/0.1.2", + "0.1.3": "http://registry.npmjs.org/streamedemitter/0.1.3", + "0.1.4": "http://registry.npmjs.org/streamedemitter/0.1.4", + "0.1.5": "http://registry.npmjs.org/streamedemitter/0.1.5", + "0.1.6": "http://registry.npmjs.org/streamedemitter/0.1.6", + "0.1.7": "http://registry.npmjs.org/streamedemitter/0.1.7" + }, + "dist": { + "0.1.0": { + "shasum": "a4eb1ec44535b768d0661e725bb9f6f9715951e5", + "tarball": "http://registry.npmjs.org/streamedemitter/-/streamedemitter-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "bc64ac0c4a4486e897bc98074417dc712d5341eb", + "tarball": "http://registry.npmjs.org/streamedemitter/-/streamedemitter-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "15c40b0bf735750fb84380c74cf0181f6b9ba143", + "tarball": "http://registry.npmjs.org/streamedemitter/-/streamedemitter-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "8acf548dda640488ca4eade0ab450bb2e8ddbdd1", + "tarball": "http://registry.npmjs.org/streamedemitter/-/streamedemitter-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "82a266a192d5565ebf16417101afe52284474d58", + "tarball": "http://registry.npmjs.org/streamedemitter/-/streamedemitter-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "155918096d9207905af3540bce78f528b4a18513", + "tarball": "http://registry.npmjs.org/streamedemitter/-/streamedemitter-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "c7df7b255431ad0b1177bb3758d20f4696c9e23d", + "tarball": "http://registry.npmjs.org/streamedemitter/-/streamedemitter-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "41c97e7e2e5cc900aace27f2c75f70ab167d1214", + "tarball": "http://registry.npmjs.org/streamedemitter/-/streamedemitter-0.1.7.tgz" + } + }, + "url": "http://registry.npmjs.org/streamedemitter/" + }, + "streamer": { + "name": "streamer", + "description": "Asynchronously recursive, pure function <3 via lazy streams.", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "gozala", + "email": "rfobic@gmail.com" + } + ], + "time": { + "modified": "2011-09-12T12:55:37.517Z", + "created": "2011-06-07T22:12:33.256Z", + "0.0.1": "2011-06-07T22:12:34.234Z", + "0.0.2": "2011-06-08T10:05:11.165Z", + "0.0.3": "2011-06-09T14:39:55.422Z", + "0.0.4": "2011-07-17T20:04:10.059Z", + "0.1.0": "2011-08-20T13:38:45.935Z", + "0.1.1": "2011-08-22T15:29:30.026Z", + "0.2.0": "2011-09-01T10:46:21.474Z", + "0.2.1": "2011-09-12T12:55:37.517Z" + }, + "author": { + "name": "Irakli Gozalishvili", + "email": "rfobic@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Gozala/streamer.git", + "web": "https://github.com/Gozala/streamer" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/streamer/0.0.1", + "0.0.2": "http://registry.npmjs.org/streamer/0.0.2", + "0.0.3": "http://registry.npmjs.org/streamer/0.0.3", + "0.0.4": "http://registry.npmjs.org/streamer/0.0.4", + "0.1.0": "http://registry.npmjs.org/streamer/0.1.0", + "0.1.1": "http://registry.npmjs.org/streamer/0.1.1", + "0.2.0": "http://registry.npmjs.org/streamer/0.2.0", + "0.2.1": "http://registry.npmjs.org/streamer/0.2.1" + }, + "dist": { + "0.0.1": { + "shasum": "5d6a936b47566b9329a3ec970eea4bfaa9196ad6", + "tarball": "http://registry.npmjs.org/streamer/-/streamer-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "78a53ce58d31fc7dc72f4bfc9ba28739246c2466", + "tarball": "http://registry.npmjs.org/streamer/-/streamer-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "2a773d641d24b4e3c437d8a784927492c6ec7649", + "tarball": "http://registry.npmjs.org/streamer/-/streamer-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "cce6a37a5d46fd62b564b6e63a06f4318f221cb4", + "tarball": "http://registry.npmjs.org/streamer/-/streamer-0.0.4.tgz" + }, + "0.1.0": { + "shasum": "aea2e9806f3809426fb4e9374f974a3a2ed8037b", + "tarball": "http://registry.npmjs.org/streamer/-/streamer-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "d3909cde0ebb7548dd96473b421b43e0f5a28bde", + "tarball": "http://registry.npmjs.org/streamer/-/streamer-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "c40c57b4d13a8e60f13adfd140fbc5384560c2a3", + "tarball": "http://registry.npmjs.org/streamer/-/streamer-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "5edf42e9585cd3bc9b11e5574979908fb7c592db", + "tarball": "http://registry.npmjs.org/streamer/-/streamer-0.2.1.tgz" + } + }, + "keywords": [ + "stream", + "functional", + "spaghetti", + "lazy", + "iteration", + "async" + ], + "url": "http://registry.npmjs.org/streamer/" + }, + "streamlib": { + "name": "streamlib", + "description": "modules written with streamline.js", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "bjouhier", + "email": "bjouhier@gmail.com" + } + ], + "time": { + "modified": "2011-05-02T06:52:54.183Z", + "created": "2011-05-02T06:52:53.338Z", + "0.1.0": "2011-05-02T06:52:54.183Z" + }, + "author": { + "name": "Bruno Jouhier" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/streamlib/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "5dc5252b9d48f5d3b78fe312b9dc0a527a63a954", + "tarball": "http://registry.npmjs.org/streamlib/-/streamlib-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/streamlib/" + }, + "streamline": { + "name": "streamline", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "bjouhier", + "email": "bjouhier@gmail.com" + } + ], + "time": { + "modified": "2011-12-04T18:47:06.443Z", + "created": "2011-02-12T16:40:11.591Z", + "0.1.0": "2011-02-12T16:40:12.865Z", + "0.1.1b": "2011-02-16T17:54:26.516Z", + "0.1.1c": "2011-02-17T08:38:50.890Z", + "0.1.1d": "2011-02-21T12:34:06.522Z", + "0.1.1f": "2011-02-23T21:05:26.390Z", + "0.1.1g": "2011-02-26T00:29:55.889Z", + "0.1.1h": "2011-02-27T23:39:26.768Z", + "0.1.3a": "2011-02-28T23:19:25.094Z", + "0.1.3c": "2011-03-02T20:16:28.023Z", + "0.1.3e": "2011-03-03T23:35:53.003Z", + "0.1.3g": "2011-03-04T21:03:51.313Z", + "0.1.3j": "2011-03-06T11:39:39.543Z", + "0.1.4": "2011-03-11T21:02:59.800Z", + "0.1.6": "2011-03-13T20:45:04.791Z", + "0.1.7": "2011-03-19T16:40:35.850Z", + "0.1.8": "2011-03-26T22:08:55.671Z", + "0.1.9": "2011-03-28T22:31:47.670Z", + "0.1.10": "2011-03-30T19:45:22.423Z", + "0.1.11": "2011-04-02T15:41:23.641Z", + "0.1.14": "2011-04-09T17:52:36.958Z", + "0.1.15": "2011-04-14T21:28:13.303Z", + "0.1.16": "2011-04-15T19:13:02.970Z", + "0.1.17": "2011-04-25T16:38:08.911Z", + "0.1.18": "2011-04-27T20:45:12.257Z", + "0.1.19": "2011-05-02T06:58:32.885Z", + "0.1.20": "2011-05-04T18:53:41.129Z", + "0.1.21": "2011-05-05T20:58:27.738Z", + "0.1.22": "2011-05-08T11:18:11.562Z", + "0.1.23": "2011-05-09T17:39:23.139Z", + "0.1.25": "2011-05-28T15:21:07.197Z", + "0.1.26": "2011-06-08T18:01:36.895Z", + "0.1.27": "2011-06-19T16:34:46.105Z", + "0.1.29": "2011-06-23T21:24:41.012Z", + "0.1.30": "2011-06-23T22:14:39.774Z", + "0.1.31": "2011-06-27T22:26:19.732Z", + "0.1.32": "2011-07-14T17:37:39.093Z", + "0.1.33": "2011-07-16T18:17:01.273Z", + "0.1.34": "2011-08-04T10:32:04.969Z", + "0.1.35": "2011-08-10T07:47:22.309Z", + "0.1.36": "2011-08-12T19:42:34.837Z", + "0.1.37": "2011-08-21T17:46:54.791Z", + "0.1.38": "2011-08-27T11:59:07.420Z", + "0.1.39": "2011-08-28T18:58:40.253Z", + "0.1.40": "2011-08-30T23:50:08.441Z", + "0.1.41": "2011-09-05T10:04:41.886Z", + "0.1.42": "2011-09-12T09:42:38.435Z", + "0.1.43": "2011-09-15T08:56:30.846Z", + "0.1.44": "2011-09-19T10:58:23.575Z", + "0.1.45": "2011-09-22T19:53:35.592Z", + "0.1.46": "2011-11-16T14:15:49.824Z", + "0.1.47": "2011-11-18T11:17:31.847Z", + "0.1.48": "2011-12-01T16:16:23.783Z", + "0.2.0": "2011-12-04T18:47:06.443Z" + }, + "author": { + "name": "Bruno Jouhier" + }, + "description": "Asynchronous Javascript for dummies", + "versions": { + "0.1.0": "http://registry.npmjs.org/streamline/0.1.0", + "0.1.1b": "http://registry.npmjs.org/streamline/0.1.1b", + "0.1.1d": "http://registry.npmjs.org/streamline/0.1.1d", + "0.1.1f": "http://registry.npmjs.org/streamline/0.1.1f", + "0.1.1g": "http://registry.npmjs.org/streamline/0.1.1g", + "0.1.1h": "http://registry.npmjs.org/streamline/0.1.1h", + "0.1.3a": "http://registry.npmjs.org/streamline/0.1.3a", + "0.1.3c": "http://registry.npmjs.org/streamline/0.1.3c", + "0.1.3e": "http://registry.npmjs.org/streamline/0.1.3e", + "0.1.3g": "http://registry.npmjs.org/streamline/0.1.3g", + "0.1.3j": "http://registry.npmjs.org/streamline/0.1.3j", + "0.1.4": "http://registry.npmjs.org/streamline/0.1.4", + "0.1.6": "http://registry.npmjs.org/streamline/0.1.6", + "0.1.7": "http://registry.npmjs.org/streamline/0.1.7", + "0.1.8": "http://registry.npmjs.org/streamline/0.1.8", + "0.1.9": "http://registry.npmjs.org/streamline/0.1.9", + "0.1.10": "http://registry.npmjs.org/streamline/0.1.10", + "0.1.11": "http://registry.npmjs.org/streamline/0.1.11", + "0.1.14": "http://registry.npmjs.org/streamline/0.1.14", + "0.1.15": "http://registry.npmjs.org/streamline/0.1.15", + "0.1.16": "http://registry.npmjs.org/streamline/0.1.16", + "0.1.17": "http://registry.npmjs.org/streamline/0.1.17", + "0.1.18": "http://registry.npmjs.org/streamline/0.1.18", + "0.1.19": "http://registry.npmjs.org/streamline/0.1.19", + "0.1.20": "http://registry.npmjs.org/streamline/0.1.20", + "0.1.21": "http://registry.npmjs.org/streamline/0.1.21", + "0.1.22": "http://registry.npmjs.org/streamline/0.1.22", + "0.1.23": "http://registry.npmjs.org/streamline/0.1.23", + "0.1.25": "http://registry.npmjs.org/streamline/0.1.25", + "0.1.26": "http://registry.npmjs.org/streamline/0.1.26", + "0.1.27": "http://registry.npmjs.org/streamline/0.1.27", + "0.1.29": "http://registry.npmjs.org/streamline/0.1.29", + "0.1.30": "http://registry.npmjs.org/streamline/0.1.30", + "0.1.31": "http://registry.npmjs.org/streamline/0.1.31", + "0.1.32": "http://registry.npmjs.org/streamline/0.1.32", + "0.1.33": "http://registry.npmjs.org/streamline/0.1.33", + "0.1.34": "http://registry.npmjs.org/streamline/0.1.34", + "0.1.35": "http://registry.npmjs.org/streamline/0.1.35", + "0.1.36": "http://registry.npmjs.org/streamline/0.1.36", + "0.1.37": "http://registry.npmjs.org/streamline/0.1.37", + "0.1.38": "http://registry.npmjs.org/streamline/0.1.38", + "0.1.39": "http://registry.npmjs.org/streamline/0.1.39", + "0.1.40": "http://registry.npmjs.org/streamline/0.1.40", + "0.1.41": "http://registry.npmjs.org/streamline/0.1.41", + "0.1.42": "http://registry.npmjs.org/streamline/0.1.42", + "0.1.43": "http://registry.npmjs.org/streamline/0.1.43", + "0.1.44": "http://registry.npmjs.org/streamline/0.1.44", + "0.1.45": "http://registry.npmjs.org/streamline/0.1.45", + "0.1.46": "http://registry.npmjs.org/streamline/0.1.46", + "0.1.47": "http://registry.npmjs.org/streamline/0.1.47", + "0.1.48": "http://registry.npmjs.org/streamline/0.1.48", + "0.2.0": "http://registry.npmjs.org/streamline/0.2.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/streamline/-/streamline@0.1.0.tgz" + }, + "0.1.1b": { + "tarball": "http://registry.npmjs.org/streamline/-/streamline@0.1.1b.tgz" + }, + "0.1.1d": { + "tarball": "http://registry.npmjs.org/streamline/-/streamline@0.1.1d.tgz" + }, + "0.1.1f": { + "tarball": "http://registry.npmjs.org/streamline/-/streamline@0.1.1f.tgz" + }, + "0.1.1g": { + "tarball": "http://registry.npmjs.org/streamline/-/streamline@0.1.1g.tgz" + }, + "0.1.1h": { + "shasum": "2040c820a765fca7bbca5eeb05392e7a6cca9a9b", + "tarball": "http://registry.npmjs.org/streamline/-/streamline-0.1.1h.tgz" + }, + "0.1.3a": { + "shasum": "5d65763c3b25e0af3601e5da3722f6d3ebb5bf0d", + "tarball": "http://registry.npmjs.org/streamline/-/streamline-0.1.3a.tgz" + }, + "0.1.3c": { + "shasum": "f031cd910f3543646bb854c70940f21a7c597b3a", + "tarball": "http://registry.npmjs.org/streamline/-/streamline-0.1.3c.tgz" + }, + "0.1.3e": { + "shasum": "68f6a9b6266b60dabf3b8f62eeeabda798a13a3a", + "tarball": "http://registry.npmjs.org/streamline/-/streamline-0.1.3e.tgz" + }, + "0.1.3g": { + "shasum": "2de97f860c5be075b00c0a44aa0ec03f62205df1", + "tarball": "http://registry.npmjs.org/streamline/-/streamline-0.1.3g.tgz" + }, + "0.1.3j": { + "shasum": "3c47f4c561cd55bb1a04ce1ad694962447c53dcb", + "tarball": "http://registry.npmjs.org/streamline/-/streamline-0.1.3j.tgz" + }, + "0.1.4": { + "shasum": "0b1cc1f96c16d8310f39037528180ce0392b580b", + "tarball": "http://registry.npmjs.org/streamline/-/streamline-0.1.4.tgz" + }, + "0.1.6": { + "shasum": "cf906a9a2fc19782dacc8b0ddd0d60975d8831a9", + "tarball": "http://registry.npmjs.org/streamline/-/streamline-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "4d5b487edbb879fd3a5fbfb73d94fbfaced2cd6b", + "tarball": "http://registry.npmjs.org/streamline/-/streamline-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "574f1ffe5cf68554ba84b7539bbbe145dadfcdf1", + "tarball": "http://registry.npmjs.org/streamline/-/streamline-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "32c51b8d94f2be00beb3cf9d294b6597ac10f078", + "tarball": "http://registry.npmjs.org/streamline/-/streamline-0.1.9.tgz" + }, + "0.1.10": { + "shasum": "6b72e34b47266064fcf45c0cc849e8cc35e93581", + "tarball": "http://registry.npmjs.org/streamline/-/streamline-0.1.10.tgz" + }, + "0.1.11": { + "shasum": "42b74a757d74ec1953ab6118a11f253d4c3888b8", + "tarball": "http://registry.npmjs.org/streamline/-/streamline-0.1.11.tgz" + }, + "0.1.14": { + "shasum": "c4644dc5e531352ec9f553b6cf5f64e1c7aa8a2e", + "tarball": "http://registry.npmjs.org/streamline/-/streamline-0.1.14.tgz" + }, + "0.1.15": { + "shasum": "f551ae605b3e2707765169b4c0586c3f8e1c830d", + "tarball": "http://registry.npmjs.org/streamline/-/streamline-0.1.15.tgz" + }, + "0.1.16": { + "shasum": "15810ffed4174f3329684263baf0b4e2f12a543e", + "tarball": "http://registry.npmjs.org/streamline/-/streamline-0.1.16.tgz" + }, + "0.1.17": { + "shasum": "26fbdb3b8dc60265b3e950c8e22f6c94d090bbda", + "tarball": "http://registry.npmjs.org/streamline/-/streamline-0.1.17.tgz" + }, + "0.1.18": { + "shasum": "351ff06e9bb95e9047d688af6b5c1f6c33d1ef06", + "tarball": "http://registry.npmjs.org/streamline/-/streamline-0.1.18.tgz" + }, + "0.1.19": { + "shasum": "0eeb0b03750ca80a477a72d0cf84595a4823d9d4", + "tarball": "http://registry.npmjs.org/streamline/-/streamline-0.1.19.tgz" + }, + "0.1.20": { + "shasum": "ee98d870eb5ca26b578d49030c8e99af81e512cb", + "tarball": "http://registry.npmjs.org/streamline/-/streamline-0.1.20.tgz" + }, + "0.1.21": { + "shasum": "1a2773e997983fe9fafdf84c3aa3155268028e84", + "tarball": "http://registry.npmjs.org/streamline/-/streamline-0.1.21.tgz" + }, + "0.1.22": { + "shasum": "15f7120275d1382d0e59269f40121fb0412e3478", + "tarball": "http://registry.npmjs.org/streamline/-/streamline-0.1.22.tgz" + }, + "0.1.23": { + "shasum": "a8480e13b962f7b444249ecf6eeec4ad0b86a20e", + "tarball": "http://registry.npmjs.org/streamline/-/streamline-0.1.23.tgz" + }, + "0.1.25": { + "shasum": "94014e3663f2d02958f87b6fb252a26fc295f3e6", + "tarball": "http://registry.npmjs.org/streamline/-/streamline-0.1.25.tgz" + }, + "0.1.26": { + "shasum": "683e5b54313cb881edbaa552f817bbef96b6aa9b", + "tarball": "http://registry.npmjs.org/streamline/-/streamline-0.1.26.tgz" + }, + "0.1.27": { + "shasum": "4179ac6a4cf7165c1770b1f55694c60ed27afb9a", + "tarball": "http://registry.npmjs.org/streamline/-/streamline-0.1.27.tgz" + }, + "0.1.29": { + "shasum": "fa337d009a1d82dada3514095625432ac5117a0f", + "tarball": "http://registry.npmjs.org/streamline/-/streamline-0.1.29.tgz" + }, + "0.1.30": { + "shasum": "244570397b7359628f00387b9f9bd8c55406e032", + "tarball": "http://registry.npmjs.org/streamline/-/streamline-0.1.30.tgz" + }, + "0.1.31": { + "shasum": "94010d73fd747f9feb23fac8302d468aff8eabdd", + "tarball": "http://registry.npmjs.org/streamline/-/streamline-0.1.31.tgz" + }, + "0.1.32": { + "shasum": "fe50b685bdde3cb54841f87e7bac9f7aebbddb99", + "tarball": "http://registry.npmjs.org/streamline/-/streamline-0.1.32.tgz" + }, + "0.1.33": { + "shasum": "e394274a0e44377960067b7de89bda2d4989f471", + "tarball": "http://registry.npmjs.org/streamline/-/streamline-0.1.33.tgz" + }, + "0.1.34": { + "shasum": "0cffccd483d2e7aab76d9edb7bf381bb19572826", + "tarball": "http://registry.npmjs.org/streamline/-/streamline-0.1.34.tgz" + }, + "0.1.35": { + "shasum": "3bd0af7b37c49a3164639d244890f6659685a3e4", + "tarball": "http://registry.npmjs.org/streamline/-/streamline-0.1.35.tgz" + }, + "0.1.36": { + "shasum": "ff02899951a959fa4eef96fd22a36d03910954bc", + "tarball": "http://registry.npmjs.org/streamline/-/streamline-0.1.36.tgz" + }, + "0.1.37": { + "shasum": "940bc36267992fc34b17af26f5e78d882432f7a4", + "tarball": "http://registry.npmjs.org/streamline/-/streamline-0.1.37.tgz" + }, + "0.1.38": { + "shasum": "b96a7e6f4948cd523ee8d9cb8d090e27840821e1", + "tarball": "http://registry.npmjs.org/streamline/-/streamline-0.1.38.tgz" + }, + "0.1.39": { + "shasum": "f46a5ce44265eef65697b50abd3f17a6bbb60a1a", + "tarball": "http://registry.npmjs.org/streamline/-/streamline-0.1.39.tgz" + }, + "0.1.40": { + "shasum": "f42bee648ab189b2e21be06026d9cb62208a1f89", + "tarball": "http://registry.npmjs.org/streamline/-/streamline-0.1.40.tgz" + }, + "0.1.41": { + "shasum": "b671dd803e0bc9fed5544d592d1dc7f67fc52a05", + "tarball": "http://registry.npmjs.org/streamline/-/streamline-0.1.41.tgz" + }, + "0.1.42": { + "shasum": "ddd6e1ea3fc9b81dd313eb4e8f372f7e4280f9e6", + "tarball": "http://registry.npmjs.org/streamline/-/streamline-0.1.42.tgz" + }, + "0.1.43": { + "shasum": "e1bc7d3037b74efebf035f5c80309073b5444405", + "tarball": "http://registry.npmjs.org/streamline/-/streamline-0.1.43.tgz" + }, + "0.1.44": { + "shasum": "b7cddc47e405d1623195174118d4d713e61c2080", + "tarball": "http://registry.npmjs.org/streamline/-/streamline-0.1.44.tgz" + }, + "0.1.45": { + "shasum": "04b620db1d4538ebd0e356e9142ee725082100fc", + "tarball": "http://registry.npmjs.org/streamline/-/streamline-0.1.45.tgz" + }, + "0.1.46": { + "shasum": "3c2cc94ad87928777fb5fb1279798142b18b0c61", + "tarball": "http://registry.npmjs.org/streamline/-/streamline-0.1.46.tgz" + }, + "0.1.47": { + "shasum": "9da1d04996ae0e5e71fd16d9b7aff62e3e4e6e8f", + "tarball": "http://registry.npmjs.org/streamline/-/streamline-0.1.47.tgz" + }, + "0.1.48": { + "shasum": "9f3ab967a1b7e3ae6c2e217f45a17c9a88c3702f", + "tarball": "http://registry.npmjs.org/streamline/-/streamline-0.1.48.tgz" + }, + "0.2.0": { + "shasum": "33f20f9a7d2582a7b52945579c660a65f4ef03bb", + "tarball": "http://registry.npmjs.org/streamline/-/streamline-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/streamline/" + }, + "streamline-streams": { + "name": "streamline-streams", + "description": "pull-mode streams for node.js", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "bjouhier", + "email": "bjouhier@gmail.com" + } + ], + "time": { + "modified": "2011-05-10T06:11:13.552Z", + "created": "2011-05-10T06:11:12.585Z", + "0.1.0": "2011-05-10T06:11:13.552Z" + }, + "author": { + "name": "Bruno Jouhier" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/streamline-streams/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "c2551be32c1fc1077457479984da257ed7517b37", + "tarball": "http://registry.npmjs.org/streamline-streams/-/streamline-streams-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/streamline-streams/" + }, + "streamline-util": { + "name": "streamline-util", + "description": "streamline.js utilities", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "bjouhier", + "email": "bjouhier@gmail.com" + } + ], + "time": { + "modified": "2011-05-10T06:10:17.991Z", + "created": "2011-05-10T06:10:17.139Z", + "0.1.0": "2011-05-10T06:10:17.991Z" + }, + "author": { + "name": "Bruno Jouhier" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/streamline-util/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "f060d3a4f5774f6c946f2513ae7e1f615dbd6838", + "tarball": "http://registry.npmjs.org/streamline-util/-/streamline-util-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/streamline-util/" + }, + "streamliner": { + "name": "streamliner", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "aikar", + "email": "aikar@aikar.co" + } + ], + "time": { + "modified": "2011-09-30T00:04:57.556Z", + "created": "2011-09-30T00:04:55.731Z", + "1.0.0": "2011-09-30T00:04:57.556Z" + }, + "author": { + "name": "Aikar", + "email": "aikar@aikar.co", + "url": "http://www.aikar.co" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/streamliner/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "bdabe13529daa9563a807dcf29b3a342aa482d51", + "tarball": "http://registry.npmjs.org/streamliner/-/streamliner-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/streamliner/" + }, + "streamlogger": { + "name": "streamlogger", + "description": "node-streamlogger", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "soitgoes", + "email": "martin.murphy@whiteboard-it.com" + } + ], + "time": { + "modified": "2011-06-02T00:56:18.410Z", + "created": "2011-06-02T00:56:18.048Z", + "0.0.1": "2011-06-02T00:56:18.410Z" + }, + "author": { + "name": "Andrew Cholakian", + "email": "andrew@andrewvc.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/streamlogger/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "f126d9bdedd1432c40eeeb445d083f79717daa0f", + "tarball": "http://registry.npmjs.org/streamlogger/-/streamlogger-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/streamlogger/" + }, + "streamlogger-fixed": { + "name": "streamlogger-fixed", + "description": "node-streamlogger", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "redmind", + "email": "marshall.jaye@gmail.com" + } + ], + "time": { + "modified": "2011-03-17T06:13:24.953Z", + "created": "2011-03-17T06:13:20.226Z", + "0.0.1": "2011-03-17T06:13:24.953Z" + }, + "author": { + "name": "Andrew Cholakian", + "email": "andrew@andrewvc.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/streamlogger-fixed/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "d181d6dd2e49f53e107d035a019898f9b4aac0c7", + "tarball": "http://registry.npmjs.org/streamlogger-fixed/-/streamlogger-fixed-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/streamlogger-fixed/" + }, + "strftime": { + "name": "strftime", + "description": "strftime for JavaScript", + "dist-tags": { + "latest": "0.4.6" + }, + "maintainers": [ + { + "name": "sjs", + "email": "sami@samhuri.net" + } + ], + "author": { + "name": "Sami Samhuri", + "email": "sami@samhuri.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/samsonjs/strftime.git" + }, + "time": { + "modified": "2011-06-14T06:05:42.087Z", + "created": "2010-12-18T06:43:40.576Z", + "0.2.0": "2010-12-18T06:43:40.576Z", + "0.2.1": "2010-12-18T06:43:40.576Z", + "0.2.2": "2010-12-18T06:43:40.576Z", + "0.2.3": "2010-12-18T06:43:40.576Z", + "0.3.0": "2010-12-18T06:43:40.576Z", + "0.4.0": "2011-04-29T01:30:17.280Z", + "0.4.1": "2011-06-02T18:46:54.424Z", + "0.4.2": "2011-06-05T23:46:25.250Z", + "0.4.3": "2011-06-05T23:48:40.172Z", + "0.4.4": "2011-06-08T02:25:54.057Z", + "0.4.5": "2011-06-08T08:02:32.058Z", + "0.4.6": "2011-06-14T06:05:42.087Z" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/strftime/0.2.0", + "0.2.1": "http://registry.npmjs.org/strftime/0.2.1", + "0.2.2": "http://registry.npmjs.org/strftime/0.2.2", + "0.2.3": "http://registry.npmjs.org/strftime/0.2.3", + "0.3.0": "http://registry.npmjs.org/strftime/0.3.0", + "0.4.0": "http://registry.npmjs.org/strftime/0.4.0", + "0.4.1": "http://registry.npmjs.org/strftime/0.4.1", + "0.4.2": "http://registry.npmjs.org/strftime/0.4.2", + "0.4.3": "http://registry.npmjs.org/strftime/0.4.3", + "0.4.4": "http://registry.npmjs.org/strftime/0.4.4", + "0.4.5": "http://registry.npmjs.org/strftime/0.4.5", + "0.4.6": "http://registry.npmjs.org/strftime/0.4.6" + }, + "dist": { + "0.2.0": { + "tarball": "http://registry.npmjs.org/strftime/-/strftime-0.2.0.tgz" + }, + "0.2.1": { + "tarball": "http://registry.npmjs.org/strftime/-/strftime-0.2.1.tgz" + }, + "0.2.2": { + "tarball": "http://registry.npmjs.org/strftime/-/strftime-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "6798e1bd1e6b278d96034f4719e972d5af9bd85b", + "tarball": "http://registry.npmjs.org/strftime/-/strftime-0.2.3.tgz" + }, + "0.3.0": { + "shasum": "f044974e79f3995df96013bc989243fafea7711a", + "tarball": "http://registry.npmjs.org/strftime/-/strftime-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "2da21cfab5867b6fbde88efd2266123fbcccdc9d", + "tarball": "http://registry.npmjs.org/strftime/-/strftime-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "0c0b7ac818b8bcb9bd4d7c091aea350379c1b714", + "tarball": "http://registry.npmjs.org/strftime/-/strftime-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "721f1d63e1c630edecdf58c5db42c3a1f5fbba01", + "tarball": "http://registry.npmjs.org/strftime/-/strftime-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "14b8ce075a1b3839c044b64ef864bea7112aa439", + "tarball": "http://registry.npmjs.org/strftime/-/strftime-0.4.3.tgz" + }, + "0.4.4": { + "shasum": "f2c835eb11bedfd82969ef31058a49d80b6737eb", + "tarball": "http://registry.npmjs.org/strftime/-/strftime-0.4.4.tgz" + }, + "0.4.5": { + "shasum": "27a54f32befede59016f35ba8f42f7eebc889fa6", + "tarball": "http://registry.npmjs.org/strftime/-/strftime-0.4.5.tgz" + }, + "0.4.6": { + "shasum": "e6ff91843d4ed14f4dc3f263bcc5fc8bb5a027aa", + "tarball": "http://registry.npmjs.org/strftime/-/strftime-0.4.6.tgz" + } + }, + "url": "http://registry.npmjs.org/strftime/" + }, + "strict-object": { + "name": "strict-object", + "description": "A utility to create instantiateable objects with simple getters and setters. Cleaner syntax, typo-proof code.", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "danielbeardsley", + "email": "daniel.beardsley@gmail.com" + } + ], + "time": { + "modified": "2011-10-21T03:18:47.945Z", + "created": "2011-10-21T03:18:47.435Z", + "1.0.0": "2011-10-21T03:18:47.945Z" + }, + "author": { + "name": "Daniel Beardsley", + "email": "daniel.beardsley@gmail.com", + "url": "www.danielbeardsley.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/danielbeardsley/strict-object.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/strict-object/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "e6cf4fdda685acfaca84d7d68b80d7fd4b7f869e", + "tarball": "http://registry.npmjs.org/strict-object/-/strict-object-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/strict-object/" + }, + "string": { + "name": "string", + "description": "string contains methods that aren't included in the vanilla JavaScript string. It modifies your String prototype. Get over it.", + "dist-tags": { + "latest": "0.0.2" + }, + "readme": null, + "maintainers": [ + { + "name": "jp", + "email": "jprichardson@gmail.com" + } + ], + "time": { + "modified": "2011-11-18T22:31:25.705Z", + "created": "2011-11-18T22:10:46.006Z", + "0.0.1": "2011-11-18T22:10:46.676Z", + "0.0.2": "2011-11-18T22:31:25.705Z" + }, + "author": { + "name": "JP Richardson", + "email": "jprichardson@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/jprichardson/string.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/string/0.0.1", + "0.0.2": "http://registry.npmjs.org/string/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "6c171e32ee2e667712dc7d9ba19e6197a439e534", + "tarball": "http://registry.npmjs.org/string/-/string-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "567007678df50b518db9805283d501f6c10efb83", + "tarball": "http://registry.npmjs.org/string/-/string-0.0.2.tgz" + } + }, + "keywords": [ + "string", + "strings" + ], + "url": "http://registry.npmjs.org/string/" + }, + "string-color": { + "name": "string-color", + "description": "Provides a .color extension to Strings.", + "dist-tags": { + "latest": "0.8.0" + }, + "maintainers": [ + { + "name": "yuffster", + "email": "msteigerwalt@gmail.com" + } + ], + "time": { + "modified": "2011-05-15T00:33:11.617Z", + "created": "2011-05-15T00:33:11.105Z", + "0.8.0": "2011-05-15T00:33:11.617Z" + }, + "author": { + "name": "Michelle Steigerwalt" + }, + "repository": { + "type": "git", + "url": "git://github.com/yuffster/npm-string-ansi.git" + }, + "versions": { + "0.8.0": "http://registry.npmjs.org/string-color/0.8.0" + }, + "dist": { + "0.8.0": { + "shasum": "1e674c8295ce29ddd9778b6e4cb3aa5e75448403", + "tarball": "http://registry.npmjs.org/string-color/-/string-color-0.8.0.tgz" + } + }, + "url": "http://registry.npmjs.org/string-color/" + }, + "StringScanner": { + "name": "StringScanner", + "description": "StringScanner performs lexical scanning operations on a string.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "michaelficarra", + "email": "npm@michael.ficarra.me" + } + ], + "time": { + "modified": "2011-04-29T05:10:54.418Z", + "created": "2011-04-29T05:10:54.307Z", + "0.0.2": "2011-04-29T05:10:54.418Z" + }, + "author": { + "name": "Michael Ficarra" + }, + "repository": { + "type": "git", + "url": "git://github.com/michaelficarra/cjs-string-scanner.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/StringScanner/0.0.2" + }, + "dist": { + "0.0.2": { + "shasum": "d95af3ab023fb86729e81e2135c4ced42a7dbd59", + "tarball": "http://registry.npmjs.org/StringScanner/-/StringScanner-0.0.2.tgz" + } + }, + "keywords": [ + "StringScanner", + "string", + "scanner", + "ruby", + "lex", + "lexer", + "lexical", + "analysis", + "token", + "tokenize", + "tokenizer" + ], + "url": "http://registry.npmjs.org/StringScanner/" + }, + "stringsim": { + "name": "stringsim", + "description": "String similarity functions", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": null, + "maintainers": [ + { + "name": "cartercole", + "email": "node@cartercole.com" + } + ], + "time": { + "modified": "2011-11-27T06:22:39.757Z", + "created": "2011-11-27T06:22:38.995Z", + "0.0.1": "2011-11-27T06:22:39.757Z" + }, + "author": { + "name": "Carter Cole", + "email": "node@cartercole.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/neopunisher/node-stringsim.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/stringsim/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "cbd3e2d2ae764108997f59920122b31c8c1dec5e", + "tarball": "http://registry.npmjs.org/stringsim/-/stringsim-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/stringsim/" + }, + "stripe": { + "name": "stripe", + "description": "Stripe API wrapper", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "ask", + "email": "ask@develooper.com" + } + ], + "time": { + "modified": "2011-12-06T23:37:45.281Z", + "created": "2011-09-28T00:32:47.349Z", + "0.0.1": "2011-12-06T23:37:45.281Z", + "0.0.2": "2011-12-06T23:37:45.281Z", + "0.0.3": "2011-12-06T23:37:45.281Z", + "0.0.5": "2011-11-26T09:39:55.819Z", + "1.0.0": "2011-12-06T23:37:45.281Z" + }, + "author": { + "name": "Ask Bjørn Hansen", + "email": "ask@develooper.com", + "url": "http://www.askask.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/abh/node-stripe.git" + }, + "users": { + "ask": true + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/stripe/0.0.1", + "0.0.2": "http://registry.npmjs.org/stripe/0.0.2", + "0.0.3": "http://registry.npmjs.org/stripe/0.0.3", + "0.0.5": "http://registry.npmjs.org/stripe/0.0.5", + "1.0.0": "http://registry.npmjs.org/stripe/1.0.0" + }, + "dist": { + "0.0.1": { + "shasum": "d677cc961b79bca1d726e893c6238a296e87fe2f", + "tarball": "http://registry.npmjs.org/stripe/-/stripe-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "fac65e11f724dcfd97fc71e1587b58d5e73f638f", + "tarball": "http://registry.npmjs.org/stripe/-/stripe-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "18c76d961b85b0756dc8c152696ab68fba6b5fe3", + "tarball": "http://registry.npmjs.org/stripe/-/stripe-0.0.3.tgz" + }, + "0.0.5": { + "shasum": "e9a889a7dc08f183d4736aa29bd110698b334f32", + "tarball": "http://registry.npmjs.org/stripe/-/stripe-0.0.5.tgz" + }, + "1.0.0": { + "shasum": "6c7e61fa6bb5d59f228778ac0f1171e14cc68093", + "tarball": "http://registry.npmjs.org/stripe/-/stripe-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/stripe/" + }, + "strscan": { + "name": "strscan", + "description": "Simple string tokenizer for lexical scanning operations", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "sstephenson", + "email": "sstephenson@gmail.com" + } + ], + "author": { + "name": "Sam Stephenson" + }, + "repository": { + "type": "git", + "url": "http://github.com/sstephenson/strscan-js.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/strscan/1.0.0", + "1.0.1": "http://registry.npmjs.org/strscan/1.0.1" + }, + "dist": { + "1.0.0": { + "tarball": "http://packages:5984/strscan/-/strscan-1.0.0.tgz" + }, + "1.0.1": { + "tarball": "http://packages:5984/strscan/-/strscan-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/strscan/" + }, + "strscan-parser": { + "name": "strscan-parser", + "description": "A string parser based on StringScanner", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": null, + "maintainers": [ + { + "name": "jhamlet", + "email": "jerry@hamletink.com" + } + ], + "time": { + "modified": "2011-11-22T19:09:48.591Z", + "created": "2011-11-22T19:09:47.412Z", + "0.0.1": "2011-11-22T19:09:48.591Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/jhamlet/strscan-parser.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/strscan-parser/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "d2324696aeda87b9f420dfbbc608dc1f08dfc5e3", + "tarball": "http://registry.npmjs.org/strscan-parser/-/strscan-parser-0.0.1.tgz" + } + }, + "keywords": [ + "parser", + "string", + "token" + ], + "url": "http://registry.npmjs.org/strscan-parser/" + }, + "strtok": { + "name": "strtok", + "description": "A streaming tokenizer", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "pgriess", + "email": "pg@std.in" + } + ], + "author": { + "name": "Peter Griess", + "email": "pg@std.in" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/strtok/0.1.0", + "0.1.1": "http://registry.npmjs.org/strtok/0.1.1" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/strtok/-/strtok-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://packages:5984/strtok/-/strtok-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/strtok/" + }, + "struct": { + "name": "struct", + "description": "Pack/Unpack multibyte binary values from/to buffers ", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "xdenser", + "email": "xdenser@gmail.com" + } + ], + "time": { + "modified": "2011-09-04T19:34:01.713Z", + "created": "2011-09-04T19:33:59.106Z", + "0.0.1": "2011-09-04T19:34:01.713Z" + }, + "author": { + "name": "Denys Khanzhiyev" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/struct/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "2087c58ea4623377549f9e416ada67615ea42996", + "tarball": "http://registry.npmjs.org/struct/-/struct-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/struct/" + }, + "structr": { + "name": "structr", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "architectd", + "email": "craig.j.condon@gmail.com" + } + ], + "time": { + "modified": "2011-12-03T23:18:05.086Z", + "created": "2011-07-01T00:40:56.296Z", + "0.0.1": "2011-07-01T00:40:56.503Z", + "0.0.2": "2011-07-01T01:07:15.230Z", + "0.0.3": "2011-07-03T23:11:36.983Z", + "0.0.4": "2011-07-12T02:34:07.171Z", + "0.0.4-1": "2011-07-13T04:26:37.280Z", + "0.0.4-2": "2011-07-21T21:22:51.114Z", + "0.0.4-3": "2011-07-28T05:41:32.294Z", + "0.0.5": "2011-08-01T19:33:18.840Z", + "0.0.8": "2011-08-10T02:59:04.719Z", + "0.0.10": "2011-09-12T05:22:06.476Z", + "0.1.0": "2011-12-03T23:18:05.086Z" + }, + "description": "Clean OO structure for Javascript.", + "author": { + "name": "Craig Condon" + }, + "repository": { + "type": "git", + "url": "git://github.com/spiceapps/Structr.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/structr/0.0.1", + "0.0.2": "http://registry.npmjs.org/structr/0.0.2", + "0.0.3": "http://registry.npmjs.org/structr/0.0.3", + "0.0.4": "http://registry.npmjs.org/structr/0.0.4", + "0.0.4-1": "http://registry.npmjs.org/structr/0.0.4-1", + "0.0.4-2": "http://registry.npmjs.org/structr/0.0.4-2", + "0.0.4-3": "http://registry.npmjs.org/structr/0.0.4-3", + "0.0.5": "http://registry.npmjs.org/structr/0.0.5", + "0.0.8": "http://registry.npmjs.org/structr/0.0.8", + "0.0.10": "http://registry.npmjs.org/structr/0.0.10", + "0.1.0": "http://registry.npmjs.org/structr/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "4a279ea68740520c86d7a744a3bb6701e69b77c5", + "tarball": "http://registry.npmjs.org/structr/-/structr-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "4cec48ec5fe4f760d1748ea108a7a666aa30b911", + "tarball": "http://registry.npmjs.org/structr/-/structr-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/structr/-/structr-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://registry.npmjs.org/structr/-/structr-0.0.4.tgz" + }, + "0.0.4-1": { + "tarball": "http://registry.npmjs.org/structr/-/structr-0.0.4-1.tgz" + }, + "0.0.4-2": { + "tarball": "http://registry.npmjs.org/structr/-/structr-0.0.4-2.tgz" + }, + "0.0.4-3": { + "tarball": "http://registry.npmjs.org/structr/-/structr-0.0.4-3.tgz" + }, + "0.0.5": { + "tarball": "http://registry.npmjs.org/structr/-/structr-0.0.5.tgz" + }, + "0.0.8": { + "tarball": "http://registry.npmjs.org/structr/-/structr-0.0.8.tgz" + }, + "0.0.10": { + "shasum": "3a13ed5002d4503c2e393e022c1796a753482205", + "tarball": "http://registry.npmjs.org/structr/-/structr-0.0.10.tgz" + }, + "0.1.0": { + "shasum": "b8204872db7612d18009e04cb71657ac033a57d9", + "tarball": "http://registry.npmjs.org/structr/-/structr-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/structr/" + }, + "Structr": { + "name": "Structr", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "architectd", + "email": "craig.j.condon@gmail.com" + } + ], + "time": { + "modified": "2011-07-01T00:36:47.971Z", + "created": "2011-07-01T00:36:47.754Z", + "0.0.1": "2011-07-01T00:36:47.971Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/Structr/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "53dacc0377b0f7ba79c260d418c2e549a8359a33", + "tarball": "http://registry.npmjs.org/Structr/-/Structr-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/Structr/" + }, + "stuff": { + "name": "stuff", + "description": "HTTPS static file server using LDAP auth", + "dist-tags": { + "latest": "1.0.0" + }, + "readme": "A static file server over HTTPS and using LDAP for auth.\n\nUsage:\n\n git clone https://github.com/trentm/stuff.git\n cd stuff\n npm install\n\n # Create a \"config/stuff.json\" file, minimally with these entries.\n # Note: Yes, I know there are no docs for these yet.\n mkdir config\n echo '{\n \"staticDir\": \"/path/to/dir/to/serve\",\n \"sslKeyFile\": \"/path/to/ssl-key-file.pem\",\n \"sslCertFile\": \"/path/to/ssl-cert-file.pem\",\n \"ldap\": {\n \"url\": \"ldaps://ldap.example.com\",\n \"adminDn\": \"uid=myapp,ou=users,o=example.com\",\n \"adminPassword\": \"mypassword\",\n \"searchBase\": \"ou=users,o=example.com\",\n \"searchFilter\": \"(uid={{username}})\"\n }\n }' > config/stuff.json\n\n # Run the server.\n node server.js\n\nThis is still pretty alpha.\n\n\n# License\n\nMIT. See LICENSE.txt\n\n\n# Configuration\n\n- `ldap.usernameField` (String): The field name in a LDAP user record that\n indicates the username. This is used to log the username for each request log\n line.\n\n(obviously missing most of the config vars here)\n\n", + "maintainers": [ + { + "name": "trentm", + "email": "trentm@gmail.com" + } + ], + "time": { + "modified": "2011-11-21T19:47:50.097Z", + "created": "2011-11-21T19:47:48.961Z", + "1.0.0": "2011-11-21T19:47:50.097Z" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/stuff/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "ab451bfb036786751877640799ec70382039d895", + "tarball": "http://registry.npmjs.org/stuff/-/stuff-1.0.0.tgz" + } + }, + "keywords": [ + "static", + "files", + "stuff", + "https", + "ldap" + ], + "url": "http://registry.npmjs.org/stuff/" + }, + "sty": { + "name": "sty", + "description": "Color and more for the console", + "dist-tags": { + "latest": "0.6.1" + }, + "maintainers": [ + { + "name": "TrevorBurnham", + "email": "trevorburnham@gmail.com" + } + ], + "author": { + "name": "Trevor Burnham" + }, + "repository": { + "type": "git", + "url": "git://github.com/TrevorBurnham/sty.git" + }, + "time": { + "modified": "2011-11-14T23:42:40.595Z", + "created": "2011-04-04T03:05:02.789Z", + "0.5.0": "2011-04-04T03:05:02.789Z", + "0.5.1": "2011-04-04T03:05:02.789Z", + "0.6.0": "2011-04-04T03:05:02.789Z", + "0.6.1": "2011-04-05T23:23:45.267Z" + }, + "users": { + "dresende": true + }, + "versions": { + "0.5.0": "http://registry.npmjs.org/sty/0.5.0", + "0.5.1": "http://registry.npmjs.org/sty/0.5.1", + "0.6.0": "http://registry.npmjs.org/sty/0.6.0", + "0.6.1": "http://registry.npmjs.org/sty/0.6.1" + }, + "dist": { + "0.5.0": { + "shasum": "95c7e9d518b95a2d765454233032071192adcf9d", + "tarball": "http://registry.npmjs.org/sty/-/sty-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "9a725dec0f14cd51c2c0182dea942f7539961c43", + "tarball": "http://registry.npmjs.org/sty/-/sty-0.5.1.tgz" + }, + "0.6.0": { + "shasum": "8fb5eda2bfff345a8e4fd4618ef3f56363f0f9b8", + "tarball": "http://registry.npmjs.org/sty/-/sty-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "de3fb9ae570bc60a7447245f0dec31213ea2d5a8", + "tarball": "http://registry.npmjs.org/sty/-/sty-0.6.1.tgz" + } + }, + "keywords": [ + "color", + "console", + "utility" + ], + "url": "http://registry.npmjs.org/sty/" + }, + "style": { + "name": "style", + "description": "color in your node.js console, without monkeypatching", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-05-31T04:04:59.526Z", + "created": "2011-02-19T04:01:56.286Z", + "0.1.0": "2011-02-19T04:01:57.443Z", + "0.0.2": "2011-02-19T06:10:31.371Z", + "0.1.1": "2011-05-31T04:04:59.526Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dominictarr/style.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/style/0.1.0", + "0.0.2": "http://registry.npmjs.org/style/0.0.2", + "0.1.1": "http://registry.npmjs.org/style/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "04b5c93cf1f9b2527a4813eac21f7dad20a36761", + "tarball": "http://registry.npmjs.org/style/-/style-0.1.0.tgz" + }, + "0.0.2": { + "shasum": "2d853fba29b0b3cb4e267ddb0c0de4a043614893", + "tarball": "http://registry.npmjs.org/style/-/style-0.0.2.tgz" + }, + "0.1.1": { + "shasum": "e2fab65b1b81d3e00ebcad854cc584ba231f256d", + "tarball": "http://registry.npmjs.org/style/-/style-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/style/" + }, + "style-compile": { + "name": "style-compile", + "description": "Include newschool stylesheets in oldschool css", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "benfoxall", + "email": "benfoxall@gmail.com" + } + ], + "time": { + "modified": "2011-02-08T01:20:19.399Z", + "created": "2011-02-08T01:03:05.475Z", + "0.1.0": "2011-02-08T01:03:05.917Z", + "0.1.1": "2011-02-08T01:20:19.399Z" + }, + "author": { + "name": "Ben Foxall", + "email": "benfoxall@gmail.com", + "url": "http://bfoxall.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/benfoxall/style-compile.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/style-compile/0.1.0", + "0.1.1": "http://registry.npmjs.org/style-compile/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "a1e6cd42194b202b6eb690940433eb6b9e7afc2c", + "tarball": "http://registry.npmjs.org/style-compile/-/style-compile-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "c0025f645f7ce22f0fd8effa06e81031731e8024", + "tarball": "http://registry.npmjs.org/style-compile/-/style-compile-0.1.1.tgz" + } + }, + "keywords": [ + "css", + "lesscss", + "less" + ], + "url": "http://registry.npmjs.org/style-compile/" + }, + "style-less": { + "name": "style-less", + "description": "Parses LESS, beautifies LESS then writes LESS all using LESS.js", + "dist-tags": { + "latest": "0.0.0" + }, + "readme": "# styleLess\n\nParses LESS, beautifies LESS then writes LESS all using [LESS.js](http://github.com/cloudhead/less.js)\n\n## Synopsis\n\n__Warning__ this is opinionated formatting, as it compresses lines that take up \nless than 81 chars into one line to be more concise.\n\n```scss\n.navbar {\n background-color: black;\n color: #fff;\n height: 23px;\n -moz-transition-duration: 1337ms;\n width: ~`@{document.body.clientWidth}`;\n @desired-menu-width: 950px;\n\n a:link, a:visited { color: #dadada; }\n\n .nav-main {\n /* calls to mixins */\n .grid(24, 14);\n\n /* Inline mixin declarations */\n .right-separator() { border-right: 1px solid #949494; }\n\n /* Literal escaped values */\n filter: ~\"progid:DXImageTransform.Microsoft.Alpha(Opacity=89)\";\n\n /* Literal quoted values */\n font-family: \"Trebuchet MS\";\n\n li { &:first-child { margin: 0; } }\n\n > li.submenu > a:link, > li.submenu > a:visited {\n background: url('icons/arrow-down.png') 23px 23px no-repeat transparent;\n .right-separator;\n }\n\n // Keep Me\n .preview-label { width: 100px; display: block; font-size: small; }\n\n li a:hover, li a:active, li.current a:link,\n li.current a:visited, li.submenu a:link, li.submenu a:visited {\n .menublock {\n @padding: 10px;\n opacity: 1;\n padding: @padding ((@desired-menu-width - (@padding * 10)) / 2);\n }\n }\n }\n\n /* \n * Comments after rule\n */\n}\n\n/* Comments between root rules */\n#main { .link { color: white; font-weight: bold; text-decoration: underline; } }\n```\n\n## Installation\n\n npm install style-less\n\n## Usage\n\n style-less ugly.less > pretty.less\n\n## Todo\n\n* write a command line tool to make the above example work\n* more test coverage (maybe I am still missing something within the less.js spec)\n* options for formatting like, suppressing single-line compressions\n* shorten synopsis and try to include as much of the less spec as possible\n\n\n\n", + "maintainers": [ + { + "name": "lmaa", + "email": "me@lmaa.name" + } + ], + "time": { + "modified": "2011-11-28T16:54:45.437Z", + "created": "2011-11-28T16:54:43.523Z", + "0.0.0": "2011-11-28T16:54:45.437Z" + }, + "author": { + "name": "Lennart Melzer", + "email": "l@melzer.it" + }, + "repository": { + "type": "git", + "url": "git://github.com/lennart/style-less.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/style-less/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "a7c45f36cab09b77e1dcbc8ae39bc9effcddaf42", + "tarball": "http://registry.npmjs.org/style-less/-/style-less-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/style-less/" + }, + "styleless": { + "name": "styleless", + "description": "Yet another alternative to CSS, with variables, functions, mixins. But now it's all js.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "gozala", + "email": "rfobic@gmail.com" + } + ], + "time": { + "modified": "2011-05-26T12:07:58.019Z", + "created": "2011-02-02T16:08:40.794Z", + "0.0.1": "2011-02-02T16:08:41.186Z", + "0.0.2": "2011-05-26T12:07:58.019Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/Gozala/styleless.git", + "web": "https://github.com/Gozala/styleless" + }, + "author": { + "name": "Irakli Gozalishvili", + "email": "rfobic@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/styleless/0.0.1", + "0.0.2": "http://registry.npmjs.org/styleless/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "b8ac683d3300412c27c42713b5a19d97378257a3", + "tarball": "http://registry.npmjs.org/styleless/-/styleless-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c0074da1a5601cada23f5823bb63b1640925f7a2", + "tarball": "http://registry.npmjs.org/styleless/-/styleless-0.0.2.tgz" + } + }, + "keywords": [ + "css", + "style" + ], + "url": "http://registry.npmjs.org/styleless/" + }, + "stylewriter": { + "name": "stylewriter", + "description": "Utilities for map-based visualization", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "tmcw", + "email": "macwright@gmail.com" + } + ], + "author": { + "name": "Tom MacWright" + }, + "repository": { + "type": "git", + "url": "http://github.com/developmentseed/stylewriter-node.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/stylewriter/0.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/stylewriter/-/stylewriter@0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/stylewriter/" + }, + "stylus": { + "name": "stylus", + "description": "Robust, expressive, and feature-rich CSS superset", + "dist-tags": { + "latest": "0.20.0" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "time": { + "modified": "2011-12-11T15:23:46.350Z", + "created": "2011-01-31T18:22:09.655Z", + "0.0.1": "2011-01-31T18:22:10.089Z", + "0.0.2": "2011-01-31T20:14:16.038Z", + "0.1.0": "2011-02-01T17:39:42.414Z", + "0.2.0": "2011-02-01T19:48:31.360Z", + "0.2.1": "2011-02-02T17:09:29.991Z", + "0.3.0": "2011-02-04T17:40:16.656Z", + "0.3.1": "2011-02-04T18:13:38.616Z", + "0.4.0": "2011-02-07T19:28:21.209Z", + "0.4.1": "2011-02-09T18:35:08.711Z", + "0.5.0": "2011-02-09T21:30:15.589Z", + "0.5.1": "2011-02-11T23:31:47.118Z", + "0.5.2": "2011-02-15T20:47:56.977Z", + "0.5.3": "2011-02-17T22:28:58.396Z", + "0.6.0": "2011-02-18T17:03:48.821Z", + "0.6.1": "2011-02-18T18:05:50.074Z", + "0.6.2": "2011-02-21T22:28:20.839Z", + "0.6.3": "2011-02-22T19:24:18.863Z", + "0.6.4": "2011-02-24T17:10:04.320Z", + "0.6.5": "2011-02-25T07:03:49.817Z", + "0.6.6": "2011-03-02T03:34:11.784Z", + "0.6.7": "2011-03-02T04:13:44.622Z", + "0.7.0": "2011-03-02T08:12:01.183Z", + "0.7.1": "2011-03-08T02:52:21.828Z", + "0.7.2": "2011-03-09T02:34:45.795Z", + "0.7.3": "2011-03-09T17:43:43.337Z", + "0.7.4": "2011-03-11T00:05:29.814Z", + "0.8.0": "2011-03-14T16:14:08.768Z", + "0.9.0": "2011-03-18T18:46:27.156Z", + "0.9.1": "2011-03-19T00:00:02.730Z", + "0.9.2": "2011-03-21T18:08:38.694Z", + "0.10.0": "2011-03-29T22:49:17.956Z", + "0.11.0": "2011-04-01T22:38:33.701Z", + "0.11.1": "2011-04-02T00:05:20.252Z", + "0.11.2": "2011-04-06T22:16:50.594Z", + "0.11.3": "2011-04-08T23:37:54.020Z", + "0.11.4": "2011-04-10T19:05:58.786Z", + "0.11.5": "2011-04-12T14:39:59.565Z", + "0.11.6": "2011-04-12T18:22:53.874Z", + "0.11.7": "2011-04-12T21:49:27.287Z", + "0.11.8": "2011-04-15T17:12:00.736Z", + "0.11.9": "2011-04-15T21:15:21.703Z", + "0.11.10": "2011-04-17T23:04:02.268Z", + "0.11.11": "2011-04-25T01:58:51.175Z", + "0.11.12": "2011-04-28T01:54:37.091Z", + "0.12.0": "2011-04-29T21:41:58.390Z", + "0.12.1": "2011-04-29T23:31:00.911Z", + "0.12.2": "2011-05-03T20:45:32.180Z", + "0.12.3": "2011-05-08T17:29:25.795Z", + "0.12.4": "2011-05-12T18:04:58.189Z", + "0.13.0": "2011-05-17T18:11:51.309Z", + "0.13.1": "2011-05-30T17:51:10.925Z", + "0.13.2": "2011-05-31T21:54:08.613Z", + "0.13.3": "2011-06-01T22:22:54.429Z", + "0.13.4": "2011-06-22T16:09:34.637Z", + "0.13.5": "2011-06-27T17:40:49.858Z", + "0.13.6": "2011-07-12T18:41:01.577Z", + "0.13.7": "2011-07-15T18:10:10.183Z", + "0.13.8": "2011-08-01T16:00:48.314Z", + "0.13.9": "2011-08-04T23:06:41.335Z", + "0.14.0": "2011-08-10T15:59:28.376Z", + "0.15.0": "2011-08-16T04:41:11.745Z", + "0.15.1": "2011-08-18T17:48:31.922Z", + "0.15.2": "2011-09-07T00:27:17.880Z", + "0.15.3": "2011-09-14T16:02:12.784Z", + "0.15.4": "2011-09-14T22:09:30.777Z", + "0.16.0": "2011-09-26T18:44:13.086Z", + "0.17.0": "2011-09-30T19:09:17.621Z", + "0.18.0": "2011-10-21T16:39:39.975Z", + "0.19.0": "2011-10-26T18:41:17.028Z", + "0.19.1": "2011-11-08T16:03:39.616Z", + "0.19.2": "2011-11-09T18:11:51.128Z", + "0.19.3": "2011-11-17T22:28:18.518Z", + "0.19.4": "2011-11-28T17:22:33.465Z", + "0.19.5": "2011-11-28T18:32:58.864Z", + "0.19.6": "2011-11-30T17:29:02.874Z", + "0.19.7": "2011-11-30T18:37:33.771Z", + "0.19.8": "2011-12-01T18:51:09.548Z", + "0.20.0": "2011-12-11T15:23:46.350Z" + }, + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "repository": { + "type": "git", + "url": "git://github.com/learnboost/stylus.git" + }, + "users": { + "coverslide": true, + "deedubs": true + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/stylus/0.0.1", + "0.0.2": "http://registry.npmjs.org/stylus/0.0.2", + "0.1.0": "http://registry.npmjs.org/stylus/0.1.0", + "0.2.0": "http://registry.npmjs.org/stylus/0.2.0", + "0.2.1": "http://registry.npmjs.org/stylus/0.2.1", + "0.3.0": "http://registry.npmjs.org/stylus/0.3.0", + "0.3.1": "http://registry.npmjs.org/stylus/0.3.1", + "0.4.0": "http://registry.npmjs.org/stylus/0.4.0", + "0.4.1": "http://registry.npmjs.org/stylus/0.4.1", + "0.5.0": "http://registry.npmjs.org/stylus/0.5.0", + "0.5.1": "http://registry.npmjs.org/stylus/0.5.1", + "0.5.2": "http://registry.npmjs.org/stylus/0.5.2", + "0.5.3": "http://registry.npmjs.org/stylus/0.5.3", + "0.6.0": "http://registry.npmjs.org/stylus/0.6.0", + "0.6.1": "http://registry.npmjs.org/stylus/0.6.1", + "0.6.2": "http://registry.npmjs.org/stylus/0.6.2", + "0.6.3": "http://registry.npmjs.org/stylus/0.6.3", + "0.6.4": "http://registry.npmjs.org/stylus/0.6.4", + "0.6.5": "http://registry.npmjs.org/stylus/0.6.5", + "0.6.6": "http://registry.npmjs.org/stylus/0.6.6", + "0.6.7": "http://registry.npmjs.org/stylus/0.6.7", + "0.7.0": "http://registry.npmjs.org/stylus/0.7.0", + "0.7.1": "http://registry.npmjs.org/stylus/0.7.1", + "0.7.2": "http://registry.npmjs.org/stylus/0.7.2", + "0.7.3": "http://registry.npmjs.org/stylus/0.7.3", + "0.7.4": "http://registry.npmjs.org/stylus/0.7.4", + "0.8.0": "http://registry.npmjs.org/stylus/0.8.0", + "0.9.0": "http://registry.npmjs.org/stylus/0.9.0", + "0.9.1": "http://registry.npmjs.org/stylus/0.9.1", + "0.9.2": "http://registry.npmjs.org/stylus/0.9.2", + "0.10.0": "http://registry.npmjs.org/stylus/0.10.0", + "0.11.0": "http://registry.npmjs.org/stylus/0.11.0", + "0.11.1": "http://registry.npmjs.org/stylus/0.11.1", + "0.11.2": "http://registry.npmjs.org/stylus/0.11.2", + "0.11.3": "http://registry.npmjs.org/stylus/0.11.3", + "0.11.4": "http://registry.npmjs.org/stylus/0.11.4", + "0.11.5": "http://registry.npmjs.org/stylus/0.11.5", + "0.11.6": "http://registry.npmjs.org/stylus/0.11.6", + "0.11.7": "http://registry.npmjs.org/stylus/0.11.7", + "0.11.8": "http://registry.npmjs.org/stylus/0.11.8", + "0.11.9": "http://registry.npmjs.org/stylus/0.11.9", + "0.11.10": "http://registry.npmjs.org/stylus/0.11.10", + "0.11.11": "http://registry.npmjs.org/stylus/0.11.11", + "0.11.12": "http://registry.npmjs.org/stylus/0.11.12", + "0.12.0": "http://registry.npmjs.org/stylus/0.12.0", + "0.12.1": "http://registry.npmjs.org/stylus/0.12.1", + "0.12.2": "http://registry.npmjs.org/stylus/0.12.2", + "0.12.3": "http://registry.npmjs.org/stylus/0.12.3", + "0.12.4": "http://registry.npmjs.org/stylus/0.12.4", + "0.13.0": "http://registry.npmjs.org/stylus/0.13.0", + "0.13.1": "http://registry.npmjs.org/stylus/0.13.1", + "0.13.2": "http://registry.npmjs.org/stylus/0.13.2", + "0.13.3": "http://registry.npmjs.org/stylus/0.13.3", + "0.13.4": "http://registry.npmjs.org/stylus/0.13.4", + "0.13.5": "http://registry.npmjs.org/stylus/0.13.5", + "0.13.6": "http://registry.npmjs.org/stylus/0.13.6", + "0.13.7": "http://registry.npmjs.org/stylus/0.13.7", + "0.13.8": "http://registry.npmjs.org/stylus/0.13.8", + "0.13.9": "http://registry.npmjs.org/stylus/0.13.9", + "0.14.0": "http://registry.npmjs.org/stylus/0.14.0", + "0.15.0": "http://registry.npmjs.org/stylus/0.15.0", + "0.15.1": "http://registry.npmjs.org/stylus/0.15.1", + "0.15.2": "http://registry.npmjs.org/stylus/0.15.2", + "0.15.3": "http://registry.npmjs.org/stylus/0.15.3", + "0.15.4": "http://registry.npmjs.org/stylus/0.15.4", + "0.16.0": "http://registry.npmjs.org/stylus/0.16.0", + "0.17.0": "http://registry.npmjs.org/stylus/0.17.0", + "0.18.0": "http://registry.npmjs.org/stylus/0.18.0", + "0.19.0": "http://registry.npmjs.org/stylus/0.19.0", + "0.19.1": "http://registry.npmjs.org/stylus/0.19.1", + "0.19.2": "http://registry.npmjs.org/stylus/0.19.2", + "0.19.3": "http://registry.npmjs.org/stylus/0.19.3", + "0.19.4": "http://registry.npmjs.org/stylus/0.19.4", + "0.19.5": "http://registry.npmjs.org/stylus/0.19.5", + "0.19.6": "http://registry.npmjs.org/stylus/0.19.6", + "0.19.7": "http://registry.npmjs.org/stylus/0.19.7", + "0.19.8": "http://registry.npmjs.org/stylus/0.19.8", + "0.20.0": "http://registry.npmjs.org/stylus/0.20.0" + }, + "dist": { + "0.0.1": { + "shasum": "102c5826838e7f8cc6e582cf990baa72c33fc7df", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "11b930e2dc00268062cb9e46ba1bfa04b2c7d5ad", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.0.2.tgz" + }, + "0.1.0": { + "shasum": "7986729d88a3fb4585a866f4e03c068c44728833", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "d60a2475260e053cf87b277cbf073cd4e1da55df", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "b3c1e51208fdc83ebe782fe4ad8b0ce65891f1ea", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "a616c476de59cfa4e66c3d53ff07d604232bd3c7", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "89eae9842b9e47a6c6b2b47756cd645275f2d4e2", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.3.1.tgz" + }, + "0.4.0": { + "shasum": "52c9ad5d45643bb54bf2549ee9e1871e521575c1", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "93efcd1db687bcf950054ed86f5c063805c83113", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.4.1.tgz" + }, + "0.5.0": { + "shasum": "4db4b72288181fc8e0dc996defaeb80c4340cd55", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "52f3c59990b51203c80706a42371407fd09f020f", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "c737a5a8540ed1725f1878eadb58994ef89e2b44", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.5.2.tgz" + }, + "0.5.3": { + "shasum": "c147f6c0df57c95767d64d26173b7d6ac50c8a36", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.5.3.tgz" + }, + "0.6.0": { + "shasum": "fce868e480a5bc9bfc424931046c06f363736af8", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "d83daa9c11418f74fdfe441ef659a7a0b02f0430", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.6.1.tgz" + }, + "0.6.2": { + "shasum": "29830c2c52b16003663998a9fe52b33db5dfc49f", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.6.2.tgz" + }, + "0.6.3": { + "shasum": "bb6dad18bb94fd0b8c490c88d0de2edfb29ca3c2", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.6.3.tgz" + }, + "0.6.4": { + "shasum": "96925628e5b4712397677b8c36fcc488fd0ef31e", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.6.4.tgz" + }, + "0.6.5": { + "shasum": "5554f6b058cd4874a393d5e8b936b0d6b7bb5d23", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.6.5.tgz" + }, + "0.6.6": { + "shasum": "5a15f7c378de4a646719df80ae61a796dbccc10d", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.6.6.tgz" + }, + "0.6.7": { + "shasum": "7be1c6ee01e326abc7b98cde6f36802d4a7494e2", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.6.7.tgz" + }, + "0.7.0": { + "shasum": "f8269356cf59f8e5f0100f626afb20f6ceff06b2", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.7.0.tgz" + }, + "0.7.1": { + "shasum": "c83a5e834bf336d75d127a6402a66b177d23715f", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.7.1.tgz" + }, + "0.7.2": { + "shasum": "dde792c217af509f41db888e6e72bd55059ec1c6", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.7.2.tgz" + }, + "0.7.3": { + "shasum": "1f11ca1bbb5771c10d657e38da2e30a4d8918904", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.7.3.tgz" + }, + "0.7.4": { + "shasum": "a7a85477fe906bc9367aec4c9d11d6371433a85e", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.7.4.tgz" + }, + "0.8.0": { + "shasum": "72e08462108320ac05d36a6d2b2749fe13d23857", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.8.0.tgz" + }, + "0.9.0": { + "shasum": "3662b65d87fbf7fa3cb63334ce915a4d00a1c719", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.9.0.tgz" + }, + "0.9.1": { + "shasum": "1ee4831c2f76c4d4b0e0c6971d6d90420e896292", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.9.1.tgz" + }, + "0.9.2": { + "shasum": "ee7c1a7fb74d6211bd64eca1003e3a9c1c3fc019", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.9.2.tgz" + }, + "0.10.0": { + "shasum": "814f106cf6ff6a37418fbce8a39e9ca7d1d2bce7", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.10.0.tgz" + }, + "0.11.0": { + "shasum": "a48653a64f3d2d34123d5d0cf27f2a7010c8bc66", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.11.0.tgz" + }, + "0.11.1": { + "shasum": "8aa94a8e82f88b955ed828c5b93715b61072a6d5", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.11.1.tgz" + }, + "0.11.2": { + "shasum": "602dd4aaa878975cff1a07d54330bf5ab80c4d48", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.11.2.tgz" + }, + "0.11.3": { + "shasum": "b3d13e11d5bd1a207dc77d687beddd1d732911df", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.11.3.tgz" + }, + "0.11.4": { + "shasum": "149b8480cdc5da7a82388f1dc8f169b26b84b094", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.11.4.tgz" + }, + "0.11.5": { + "shasum": "eb9576473d32208186d9bc06438b756e892eb856", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.11.5.tgz" + }, + "0.11.6": { + "shasum": "b2802c7b64daed3c5319bd480d988b3ead42aade", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.11.6.tgz" + }, + "0.11.7": { + "shasum": "7955acb22b9253a617f2a015717281cec300e294", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.11.7.tgz" + }, + "0.11.8": { + "shasum": "2910f56c092b1802863ba77a51196dd3f62121e1", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.11.8.tgz" + }, + "0.11.9": { + "shasum": "e11085c54394dddfd1ecc458b31f36a1511889cd", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.11.9.tgz" + }, + "0.11.10": { + "shasum": "6903bd0205a800b93b6e445072d801475680f59a", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.11.10.tgz" + }, + "0.11.11": { + "shasum": "cd2d4cbdfa0b77817c1a58b2614e04b8917ddcf2", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.11.11.tgz" + }, + "0.11.12": { + "shasum": "2bd059d75df5e37b02b692527b8f9635f45b62a6", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.11.12.tgz" + }, + "0.12.0": { + "shasum": "e1b938486fd4fabaeddc23378c1b33219d0ea63b", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.12.0.tgz" + }, + "0.12.1": { + "shasum": "9409351cccf304513ac9db87c86277032e54092a", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.12.1.tgz" + }, + "0.12.2": { + "shasum": "52987d4a416fdd390c3070ff89a4e66ebadf8fc5", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.12.2.tgz" + }, + "0.12.3": { + "shasum": "165aac072d2ba06bf8cee4046a7aeb373a0b810e", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.12.3.tgz" + }, + "0.12.4": { + "shasum": "ed2dadb8f40a238fc3d7b8e691ee02ac5ba36e5d", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.12.4.tgz" + }, + "0.13.0": { + "shasum": "37b69909544a0aba26a2914cf18fc6d80988c7b8", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.13.0.tgz" + }, + "0.13.1": { + "shasum": "32274037e1ba4f73ec50dfa0e70526052a41dda1", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.13.1.tgz" + }, + "0.13.2": { + "shasum": "52afd1860ed017b47c6b91c5052bf98562df2768", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.13.2.tgz" + }, + "0.13.3": { + "shasum": "5930eb29f4b148bcc6d5432582f10f0bf4ead75a", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.13.3.tgz" + }, + "0.13.4": { + "shasum": "08a679c40456b19642429b6a99eaa2a2045147ea", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.13.4.tgz" + }, + "0.13.5": { + "shasum": "214590b38388ea0ead05c7b9f1bb469aa31cc9cf", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.13.5.tgz" + }, + "0.13.6": { + "shasum": "0b42e5cd7e7fd79809fcf5f5b521ac2a8754b345", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.13.6.tgz" + }, + "0.13.7": { + "shasum": "1f69251854de2e41164db4f2b1f5ab92aef31fa5", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.13.7.tgz" + }, + "0.13.8": { + "shasum": "555ead6c018c9dd4763eaf1af7c183968703599a", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.13.8.tgz" + }, + "0.13.9": { + "shasum": "7472e4d753849833583ece0a13d3352400a53547", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.13.9.tgz" + }, + "0.14.0": { + "shasum": "f5c21b8f96e9c579d1e2bcc4f0d4b887c414a8e7", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.14.0.tgz" + }, + "0.15.0": { + "shasum": "c0a608a0da676dbaf4653c741fd1c8b033794501", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.15.0.tgz" + }, + "0.15.1": { + "shasum": "671556400c58386d7e94149fe8012735334268ec", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.15.1.tgz" + }, + "0.15.2": { + "shasum": "af315fe3bce7d1ec97b82f62d1bb84d771647447", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.15.2.tgz" + }, + "0.15.3": { + "shasum": "6f09fdd69638945e12bb76b387c37cbece7c1b1f", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.15.3.tgz" + }, + "0.15.4": { + "shasum": "63ae5b3eb72edeacbb23265c034eb56c1cee07df", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.15.4.tgz" + }, + "0.16.0": { + "shasum": "8bf10acd782d9375dc6a6786e95b20f211c2b6ef", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.16.0.tgz" + }, + "0.17.0": { + "shasum": "85e43dc681fda7329350f412c6de2192121c7f79", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.17.0.tgz" + }, + "0.18.0": { + "shasum": "0e181844911cea1af80181fca35c49534e58b5c1", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.18.0.tgz" + }, + "0.19.0": { + "shasum": "a0368d41ca68c79eb9a59ea9bb05ce59fde8c214", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.19.0.tgz" + }, + "0.19.1": { + "shasum": "467122490c9c49a1e79b662476a7ef7242a6a1e0", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.19.1.tgz" + }, + "0.19.2": { + "shasum": "b27c23e82697aa01e08ebc7449880a3655a9a1b9", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.19.2.tgz" + }, + "0.19.3": { + "shasum": "ecb1e81d57e5b322adba59c75349145c3534e9b2", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.19.3.tgz" + }, + "0.19.4": { + "shasum": "213f285e3052d3c5164dfb64fe9b55872d514d36", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.19.4.tgz" + }, + "0.19.5": { + "shasum": "0a2ac440736dbfe17c2f78a3293ca8553e0b24cb", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.19.5.tgz" + }, + "0.19.6": { + "shasum": "e227d788df628aeb0bb3e855c534f1cdfe7cc7c7", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.19.6.tgz" + }, + "0.19.7": { + "shasum": "1f4f9798be218cf57035d110f83ee6b0d1c712e6", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.19.7.tgz" + }, + "0.19.8": { + "shasum": "07bd6940d66043dacdd5ef5a7b4423ea753f1254", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.19.8.tgz" + }, + "0.20.0": { + "shasum": "3793c88361dff3dd98b440b8e4c93fa38e442c10", + "tarball": "http://registry.npmjs.org/stylus/-/stylus-0.20.0.tgz" + } + }, + "keywords": [ + "css", + "parser", + "style", + "stylesheets", + "jade", + "language" + ], + "url": "http://registry.npmjs.org/stylus/" + }, + "stylus-blueprint": { + "name": "stylus-blueprint", + "description": "Blueprint css framework ported to stylus", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "brianc", + "email": "brian.m.carlson@gmail.com" + } + ], + "time": { + "modified": "2011-07-09T17:04:45.155Z", + "created": "2011-04-05T21:59:18.006Z", + "0.1.0": "2011-04-05T21:59:18.241Z", + "0.2.0": "2011-07-09T17:04:45.155Z" + }, + "author": { + "name": "Brian Carlson", + "email": "brian.m.carlson@gmail.com" + }, + "repository": { + "url": "https://github.com/brianc/stylus-blueprint" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/stylus-blueprint/0.1.0", + "0.2.0": "http://registry.npmjs.org/stylus-blueprint/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "3caee4241109616fb7349b7fb9ed58f7ad29d1b1", + "tarball": "http://registry.npmjs.org/stylus-blueprint/-/stylus-blueprint-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "fa12fb9714041d9f42ddfd39c730a9dd196a9015", + "tarball": "http://registry.npmjs.org/stylus-blueprint/-/stylus-blueprint-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/stylus-blueprint/" + }, + "stylus-images": { + "name": "stylus-images", + "description": "Enhanced stylus image handling plugin", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "kpdecker", + "email": "kpdecker@gmail.com" + } + ], + "time": { + "modified": "2011-10-03T05:42:51.460Z", + "created": "2011-10-03T05:42:51.202Z", + "0.1.0": "2011-10-03T05:42:51.460Z" + }, + "author": { + "name": "Kevin Decker", + "email": "kpdecker@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/kpdecker/stylus-images.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/stylus-images/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "55ad84d557ee0b0c23ff41fb057de827fa95f45c", + "tarball": "http://registry.npmjs.org/stylus-images/-/stylus-images-0.1.0.tgz" + } + }, + "keywords": [ + "css", + "image", + "style", + "stylesheets", + "stylus" + ], + "url": "http://registry.npmjs.org/stylus-images/" + }, + "stylus-sprite": { + "name": "stylus-sprite", + "description": "Generate sprite images with Stylus", + "dist-tags": { + "latest": "0.1.6" + }, + "maintainers": [ + { + "name": "andris", + "email": "andris@node.ee" + } + ], + "time": { + "modified": "2011-07-20T19:08:22.467Z", + "created": "2011-05-10T14:01:44.060Z", + "0.1.0": "2011-05-10T14:01:44.784Z", + "0.1.1": "2011-05-10T14:35:23.268Z", + "0.1.2": "2011-07-20T08:15:38.101Z", + "0.1.3": "2011-07-20T08:26:55.245Z", + "0.1.4": "2011-07-20T08:28:52.484Z", + "0.1.5": "2011-07-20T10:37:18.608Z", + "0.1.6": "2011-07-20T19:08:22.467Z" + }, + "author": { + "name": "Andris Reinman" + }, + "repository": { + "type": "git", + "url": "git://github.com/andris9/stylus-sprite.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/stylus-sprite/0.1.0", + "0.1.1": "http://registry.npmjs.org/stylus-sprite/0.1.1", + "0.1.2": "http://registry.npmjs.org/stylus-sprite/0.1.2", + "0.1.3": "http://registry.npmjs.org/stylus-sprite/0.1.3", + "0.1.4": "http://registry.npmjs.org/stylus-sprite/0.1.4", + "0.1.5": "http://registry.npmjs.org/stylus-sprite/0.1.5", + "0.1.6": "http://registry.npmjs.org/stylus-sprite/0.1.6" + }, + "dist": { + "0.1.0": { + "shasum": "900c46d13b637ab67b42edfb0b03fa9ef3d425c2", + "tarball": "http://registry.npmjs.org/stylus-sprite/-/stylus-sprite-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "203683185b6460c35135f8dc1df5f76e2d6e2abd", + "tarball": "http://registry.npmjs.org/stylus-sprite/-/stylus-sprite-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "56e89526f1c67745841924d6d43a03c128f53e3b", + "tarball": "http://registry.npmjs.org/stylus-sprite/-/stylus-sprite-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "48417971c9813dc931e7ad41d8229a95b901d4e6", + "tarball": "http://registry.npmjs.org/stylus-sprite/-/stylus-sprite-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "c502e8b539424ba24cb4faa32196c7c4e395c4b1", + "tarball": "http://registry.npmjs.org/stylus-sprite/-/stylus-sprite-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "d9b3fbee58b97cb9a09d9db874746b1f2515a05e", + "tarball": "http://registry.npmjs.org/stylus-sprite/-/stylus-sprite-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "ffaa12f4e3133cea4e9993d86d2cbf817487a685", + "tarball": "http://registry.npmjs.org/stylus-sprite/-/stylus-sprite-0.1.6.tgz" + } + }, + "keywords": [ + "CSS", + "sprite", + "sprites", + "images" + ], + "url": "http://registry.npmjs.org/stylus-sprite/" + }, + "styout": { + "name": "styout", + "description": "Simple logging with sty", + "dist-tags": { + "latest": "0.6.0" + }, + "maintainers": [ + { + "name": "TrevorBurnham", + "email": "trevorburnham@gmail.com" + } + ], + "time": { + "modified": "2011-04-04T18:37:38.523Z", + "created": "2010-12-24T18:48:57.556Z", + "0.5.1": "2010-12-24T18:48:58.238Z", + "0.5.2": "2010-12-29T20:38:22.491Z", + "0.5.3": "2011-01-06T03:50:32.720Z", + "0.6.0": "2011-04-04T18:37:38.523Z" + }, + "author": { + "name": "Trevor Burnham" + }, + "repository": { + "type": "git", + "url": "git://github.com/TrevorBurnham/styout.git" + }, + "versions": { + "0.5.1": "http://registry.npmjs.org/styout/0.5.1", + "0.5.2": "http://registry.npmjs.org/styout/0.5.2", + "0.5.3": "http://registry.npmjs.org/styout/0.5.3", + "0.6.0": "http://registry.npmjs.org/styout/0.6.0" + }, + "dist": { + "0.5.1": { + "shasum": "6236f35ffa954cacf5d018b53e1d32d344bdb5ae", + "tarball": "http://registry.npmjs.org/styout/-/styout-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "cf002aef208780a57689719581e1b9d2d40ce51e", + "tarball": "http://registry.npmjs.org/styout/-/styout-0.5.2.tgz" + }, + "0.5.3": { + "shasum": "887729e6cbec6d6e89efd6938cce072e7f5a4a3c", + "tarball": "http://registry.npmjs.org/styout/-/styout-0.5.3.tgz" + }, + "0.6.0": { + "shasum": "f25b02d01523a7a3f72b71456bc049286cacf3d9", + "tarball": "http://registry.npmjs.org/styout/-/styout-0.6.0.tgz" + } + }, + "keywords": [ + "sty", + "style", + "logging", + "console" + ], + "url": "http://registry.npmjs.org/styout/" + }, + "subdeps": { + "name": "subdeps", + "description": "trace the dependency graph of a javascript file", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-10-03T14:49:11.820Z", + "created": "2011-10-03T14:49:08.627Z", + "0.0.0": "2011-10-03T14:49:11.820Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-subdeps.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/subdeps/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "54dd554b3a4154ea2e4ad1099fb82218eb3eb848", + "tarball": "http://registry.npmjs.org/subdeps/-/subdeps-0.0.0.tgz" + } + }, + "keywords": [ + "dependencies", + "graph", + "modules", + "require" + ], + "url": "http://registry.npmjs.org/subdeps/" + }, + "sudoku": { + "name": "sudoku", + "description": "Sudoku generator and solver for node.js", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "dachev", + "email": "blago@dachev.com" + } + ], + "time": { + "modified": "2011-10-26T06:29:56.273Z", + "created": "2011-10-26T05:54:45.137Z", + "0.0.1": "2011-10-26T05:54:49.429Z", + "0.0.2": "2011-10-26T06:29:56.273Z" + }, + "author": { + "name": "Blagovest Dachev", + "email": "blago@dachev.com", + "url": "http://www.dachev.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dachev/sudoku.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/sudoku/0.0.1", + "0.0.2": "http://registry.npmjs.org/sudoku/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "7cb0e02fe481babe6bd048d7f6abe9e947f031da", + "tarball": "http://registry.npmjs.org/sudoku/-/sudoku-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "b1c82927ffabc0243ec76c212824c3f1f3e69034", + "tarball": "http://registry.npmjs.org/sudoku/-/sudoku-0.0.2.tgz" + } + }, + "keywords": [ + "sudoku", + "generate", + "solve", + "puzzle", + "game", + "board" + ], + "url": "http://registry.npmjs.org/sudoku/" + }, + "sugar": { + "name": "sugar", + "description": "A Javascript library for working with native objects.", + "dist-tags": { + "latest": "1.1.2" + }, + "maintainers": [ + { + "name": "l_andrew_l", + "email": "plummer.andrew@gmail.com" + } + ], + "time": { + "modified": "2011-12-11T16:45:03.920Z", + "created": "2011-08-15T13:05:56.061Z", + "0.9.4": "2011-08-15T13:06:01.558Z", + "0.9.5": "2011-09-05T13:43:04.810Z", + "1.0.0": "2011-10-21T16:47:39.845Z", + "1.1.0": "2011-11-05T18:48:05.578Z", + "1.1.1": "2011-11-15T14:25:33.084Z", + "1.1.2": "2011-12-11T16:45:03.920Z" + }, + "author": { + "name": "Andrew Plummer" + }, + "repository": { + "type": "git", + "url": "git://github.com/andrewplummer/Sugar.git" + }, + "versions": { + "0.9.4": "http://registry.npmjs.org/sugar/0.9.4", + "0.9.5": "http://registry.npmjs.org/sugar/0.9.5", + "1.0.0": "http://registry.npmjs.org/sugar/1.0.0", + "1.1.0": "http://registry.npmjs.org/sugar/1.1.0", + "1.1.1": "http://registry.npmjs.org/sugar/1.1.1", + "1.1.2": "http://registry.npmjs.org/sugar/1.1.2" + }, + "dist": { + "0.9.4": { + "shasum": "f536452c952c4b13b6ea2576c26d2868ca83d218", + "tarball": "http://registry.npmjs.org/sugar/-/sugar-0.9.4.tgz" + }, + "0.9.5": { + "shasum": "ef07ff53ac4ff5063cd74374cc5bf6e6d9d97e48", + "tarball": "http://registry.npmjs.org/sugar/-/sugar-0.9.5.tgz" + }, + "1.0.0": { + "shasum": "b2629f7365a764c1bb9ed5929169dfcaf7690984", + "tarball": "http://registry.npmjs.org/sugar/-/sugar-1.0.0.tgz" + }, + "1.1.0": { + "shasum": "6e2e21cdec62be860901a667aa0b7301c8b073f9", + "tarball": "http://registry.npmjs.org/sugar/-/sugar-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "bb55ae1d40460a58bcc52fec64cecee9b2cc17e4", + "tarball": "http://registry.npmjs.org/sugar/-/sugar-1.1.1.tgz" + }, + "1.1.2": { + "shasum": "1fde0ac7ad2fd1372090c09a6404a111e9f33085", + "tarball": "http://registry.npmjs.org/sugar/-/sugar-1.1.2.tgz" + } + }, + "keywords": [ + "functional", + "utility", + "ender" + ], + "url": "http://registry.npmjs.org/sugar/" + }, + "sugardoll": { + "name": "sugardoll", + "dist-tags": { + "latest": "0.0.4", + "stable": "0.0.4" + }, + "maintainers": [ + { + "name": "fedor.indutny", + "email": "fedor.indutny@gmail.com" + } + ], + "time": { + "modified": "2011-09-02T08:04:20.930Z", + "created": "2011-08-31T23:05:25.516Z", + "0.0.1-dev": "2011-08-31T23:05:28.487Z", + "0.0.1": "2011-09-01T10:16:51.985Z", + "0.0.2": "2011-09-01T16:21:14.489Z", + "0.0.3": "2011-09-02T06:08:50.666Z", + "0.0.4": "2011-09-02T08:04:16.182Z" + }, + "versions": { + "0.0.1-dev": "http://registry.npmjs.org/sugardoll/0.0.1-dev", + "0.0.1": "http://registry.npmjs.org/sugardoll/0.0.1", + "0.0.2": "http://registry.npmjs.org/sugardoll/0.0.2", + "0.0.3": "http://registry.npmjs.org/sugardoll/0.0.3", + "0.0.4": "http://registry.npmjs.org/sugardoll/0.0.4" + }, + "dist": { + "0.0.1-dev": { + "shasum": "7fcf1276dbddeb2c87e3a71cce982304defd00ea", + "tarball": "http://registry.npmjs.org/sugardoll/-/sugardoll-0.0.1-dev.tgz" + }, + "0.0.1": { + "shasum": "ff8168ecbadbc4ba61bd024d824ce138518bc85f", + "tarball": "http://registry.npmjs.org/sugardoll/-/sugardoll-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c1a74de472d17433c6ee406d343a3b4acd89be9e", + "tarball": "http://registry.npmjs.org/sugardoll/-/sugardoll-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "bd4488f85b6a83337cfa2798e865363ea044cb81", + "tarball": "http://registry.npmjs.org/sugardoll/-/sugardoll-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "7d66bb6439d9f222913c9d6fccbf25340b19fb84", + "tarball": "http://registry.npmjs.org/sugardoll/-/sugardoll-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/sugardoll/" + }, + "sugarskull": { + "name": "sugarskull", + "description": "A Client Side Router for Single Page Apps", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + }, + { + "name": "hij1nx", + "email": "hij1nx@me.com" + }, + { + "name": "marak", + "email": "marak.squires@gmail.com" + } + ], + "time": { + "modified": "2011-11-11T22:36:33.245Z", + "created": "2011-11-09T15:49:20.548Z", + "1.0.0": "2011-11-09T15:49:22.061Z", + "1.0.1": "2011-11-10T15:28:08.899Z" + }, + "author": { + "name": "Nodejitsu Inc", + "email": "info@nodejitsu.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/flatiron/sugarskull.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/sugarskull/1.0.0", + "1.0.1": "http://registry.npmjs.org/sugarskull/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "35e7fdacfb8b0c8c3e197c6d93de78d7f8cc2013", + "tarball": "http://registry.npmjs.org/sugarskull/-/sugarskull-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "44406c2c8cb056d738c6e257fa9cbe8d23dd2dc9", + "tarball": "http://registry.npmjs.org/sugarskull/-/sugarskull-1.0.1.tgz" + } + }, + "keywords": [ + "URL", + "router", + "http", + "cli", + "flatiron", + "client side" + ], + "url": "http://registry.npmjs.org/sugarskull/" + }, + "SugarSkull": { + "name": "SugarSkull", + "description": "A Client Side Router for Single Page Apps", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "hij1nx", + "email": "hij1nx@me.com" + } + ], + "time": { + "modified": "2011-11-09T14:15:23.385Z", + "created": "2011-11-09T14:15:21.638Z", + "0.3.0": "2011-11-09T14:15:23.385Z" + }, + "author": { + "name": "hij1nx", + "email": "hij1nx@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/hij1nx/SugarSkull.git" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/SugarSkull/0.3.0" + }, + "dist": { + "0.3.0": { + "shasum": "95ebffb002f37da0457abe0a968adb4064c245c5", + "tarball": "http://registry.npmjs.org/SugarSkull/-/SugarSkull-0.3.0.tgz" + } + }, + "keywords": [ + "URL", + "router", + "client side" + ], + "url": "http://registry.npmjs.org/SugarSkull/" + }, + "suger-pod": { + "name": "suger-pod", + "description": "Template engin using CoffeeScript", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "tricknotes", + "email": "tricknotes.rs@gmail.com" + } + ], + "time": { + "modified": "2011-11-25T16:30:34.136Z", + "created": "2011-09-03T13:43:07.882Z", + "0.0.1": "2011-09-03T13:43:11.320Z", + "0.0.3": "2011-09-04T03:05:58.187Z", + "0.0.4": "2011-11-25T16:30:34.136Z" + }, + "author": { + "name": "Ryunosuke SATO", + "email": "tricknotes.rs@gmail.com", + "url": "http://d.hatena.ne.jp/tricknotes/" + }, + "repository": { + "type": "git", + "url": "git://github.com/tricknotes/suger-pod.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/suger-pod/0.0.1", + "0.0.3": "http://registry.npmjs.org/suger-pod/0.0.3", + "0.0.4": "http://registry.npmjs.org/suger-pod/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "2f5c73436739ff9b255f0cb41db97c861ecf0ce7", + "tarball": "http://registry.npmjs.org/suger-pod/-/suger-pod-0.0.1.tgz" + }, + "0.0.3": { + "shasum": "fb284369d238fab1cf1b679c47646a9a28abc685", + "tarball": "http://registry.npmjs.org/suger-pod/-/suger-pod-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "fc41656d92c6c2fad12894db187e1e7da78c9c23", + "tarball": "http://registry.npmjs.org/suger-pod/-/suger-pod-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/suger-pod/" + }, + "suite": { + "name": "suite", + "description": "A simple diff based test suite for executable programs with outputs", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "# suite [![Build Status](https://secure.travis-ci.org/pkumar/node-suite.png)](http://travis-ci.org/pkumar/node-suite)\n\n\nA simple diff based test suite for executable programs with outputs\n\n## Installation\n```\nnpm install suite\n```\n\n## Usage\n\n```js\nvar suite = require('suite');\n```\n\nIf you like this project, please watch this and follow me.\n\n### Testing\n```\nnpm test\n```\n\n## Contributors\nHere is a list of [Contributors](http://github.com/pkumar/node-suite/contributors)\n\n### TODO\n\n__I accept pull requests and guarantee a reply back within a day__\n\n## License\nMIT/X11\n\n## Bug Reports\nReport [here](http://github.com/pkumar/node-suite/issues). __Guaranteed reply within a day__.\n\n## Contact\nPavan Kumar Sunkara (pavan.sss1991@gmail.com)\n\nFollow me on [github](https://github.com/users/follow?target=pkumar), [twitter](http://twitter.com/pksunkara)\n", + "maintainers": [ + { + "name": "pksunkara", + "email": "pavan.sss1991@gmail.com" + } + ], + "time": { + "modified": "2011-11-30T23:51:21.959Z", + "created": "2011-11-30T23:51:20.809Z", + "0.1.0": "2011-11-30T23:51:21.959Z" + }, + "author": { + "name": "Pavan Kumar Sunkara", + "email": "pavan.sss1991@gmail.com", + "url": "http://pkumar.github.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/pkumar/node-suite.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/suite/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "8f860e4dfe8ddde0087b8658ae00da2fc60850b8", + "tarball": "http://registry.npmjs.org/suite/-/suite-0.1.0.tgz" + } + }, + "keywords": [ + "test", + "suite", + "diff", + "executable", + "binary" + ], + "url": "http://registry.npmjs.org/suite/" + }, + "suncalc": { + "name": "suncalc", + "description": "A tiny JavaScript library for calculating sun position and sunlight phases for the given location and time.", + "dist-tags": { + "latest": "1.0.0" + }, + "readme": "SunCalc\r\n=======\r\n\r\nSunCalc is a tiny BSD-licensed JavaScript library for calculating sun position and sunlight phases (times for sunrise, sunset, dusk, etc.) for the given location and time, created by [Vladimir Agafonkin](http://agafonkin.com/en) ([@mourner](https://github.com/mourner)) as a part of the [SunCalc.net project](http://suncalc.net).\r\n\r\nAll calculations are based on the formulae given in the excellent [Astronomy Answers article about position of the sun](http://www.astro.uu.nl/~strous/AA/en/reken/zonpositie.html). You can read about different twilight phases calculated by SunCalc in the [Twilight article on Wikipedia](http://en.wikipedia.org/wiki/Twilight).\r\n\r\n## Usage example\r\n\r\n```javascript\r\n// get today's sunlight times for London\r\nvar times = SunCalc.getTimes(new Date(), 51.5, -0.1);\r\n\r\n// format sunrise time from the Date object\r\nvar sunriseStr = times.sunrise.getHours() + ':' + times.sunrise.getMinutes();\r\n\r\n// get position of the sun (azimuth and altitude) at today's sunrise\r\nvar sunrisePos = SunCalc.getPosition(times.sunrise, 51.5, -0.1);\r\n\r\n// get sunrise azimuth in degrees\r\nvar sunriseAzimuth = sunrisePos.azimuth * 180 / Math.PI;\r\n```\r\n\r\n## Reference\r\n\r\n```javascript\r\nSunCalc.getTimes(/*Date*/ date, /*Number*/ latitude, /*Number*/ longitude)\r\n```\r\n\r\nReturns an object with the following properties (each is a `Date` object):\r\n\r\n * `sunrise`: sunrise (top edge of the sun appears on the horizon)\r\n * `sunriseEnd`: sunrise ends (bottom edge of the sun touches the horizon)\r\n * `goldenHourEnd`: morning golden hour (soft light, best time for photography) ends\r\n * `solarNoon`: solar noon (sun is in the highest position)\r\n * `goldenHour`: evening golden hour starts\r\n * `sunsetStart`: sunset starts (bottom edge of the sun touches the horizon)\r\n * `sunset`: sunset (sun disappears below the horizon, evening civil twilight starts)\r\n * `dusk`: dusk (evening nautical twilight starts)\r\n * `nauticalDusk`: nautical dusk (evening astronomical twilight starts)\r\n * `night`: night starts (dark enough for astronomical observations)\r\n * `nightEnd`: night ends (morning astronomical twilight starts)\r\n * `nauticalDawn`: nautical dawn (morning nautical twilight starts)\r\n * `dawn`: dawn (morning nautical twilight ends, morning civil twilight starts)\r\n \r\n```javascript\r\nSunCalc.getPosition(/*Date*/ timeAndDate, /*Number*/ latitude, /*Number*/ longitude)\r\n```\r\n\r\nReturns an object with the following properties:\r\n\r\n * `altitude`: sun altitude above the horizon in radians, e.g. `0` at the horizon and `PI/2` at the zenith (straight over your head)\r\n * `azimuth`: sun azimuth in radians (direction along the horizon, measured from south to west), e.g. `0` is south and `Math.PI * 3/4` is northwest\r\n\r\n```javascript\r\nSunCalc.addTime(/*Number*/ angleInDegrees, /*String*/ morningName, /*String*/ eveningName)\r\n```\r\n\r\nAdds a custom time when the sun reaches the given angle to results returned by `SunCalc.getTimes`.", + "maintainers": [ + { + "name": "mourner", + "email": "agafonkin@gmail.com" + } + ], + "time": { + "modified": "2011-12-07T15:20:05.415Z", + "created": "2011-12-07T15:20:03.263Z", + "1.0.0": "2011-12-07T15:20:05.415Z" + }, + "author": { + "name": "Vladimir Agafonkin" + }, + "repository": { + "type": "git", + "url": "git://github.com/mourner/suncalc.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/suncalc/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "68d2cc4949e718d865c78338a99b095c7c26fb1b", + "tarball": "http://registry.npmjs.org/suncalc/-/suncalc-1.0.0.tgz" + } + }, + "keywords": [ + "sun", + "astronomy", + "math", + "calculation", + "sunrise", + "sunset" + ], + "url": "http://registry.npmjs.org/suncalc/" + }, + "sunny": { + "name": "sunny", + "description": "Multi-cloud datastore client.", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "ryan.roemer", + "email": "ryan@loose-bits.com" + } + ], + "time": { + "modified": "2011-11-09T13:14:06.748Z", + "created": "2011-08-24T23:16:33.971Z", + "0.0.1": "2011-08-24T23:16:34.366Z", + "0.0.2": "2011-10-13T22:56:23.326Z", + "0.0.3": "2011-10-29T19:12:15.167Z", + "0.0.4": "2011-11-09T13:14:06.748Z" + }, + "author": { + "name": "Ryan Roemer", + "email": "ryan@loose-bits.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/ryan-roemer/node-sunny.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/sunny/0.0.1", + "0.0.2": "http://registry.npmjs.org/sunny/0.0.2", + "0.0.3": "http://registry.npmjs.org/sunny/0.0.3", + "0.0.4": "http://registry.npmjs.org/sunny/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "459b12d77944d69ae389cf3905e2728e698063b6", + "tarball": "http://registry.npmjs.org/sunny/-/sunny-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "bd0fec7e8762c7b6d620a7fa615ad296c59bbc03", + "tarball": "http://registry.npmjs.org/sunny/-/sunny-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "abbf40eb7c00e03a409fdde31f67b9ac50454c13", + "tarball": "http://registry.npmjs.org/sunny/-/sunny-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "6342b1e730f788fa8ecf2a854b87dfcc6c1a812e", + "tarball": "http://registry.npmjs.org/sunny/-/sunny-0.0.4.tgz" + } + }, + "keywords": [ + "sunny", + "cloud", + "amazon", + "aws", + "amazon web services", + "s3", + "simple storage service", + "google storage for developers" + ], + "url": "http://registry.npmjs.org/sunny/" + }, + "superagent": { + "name": "superagent", + "description": "elegant progressive ajax client", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "time": { + "modified": "2011-11-21T21:24:46.789Z", + "created": "2011-08-22T17:56:01.799Z", + "0.1.1": "2011-08-22T17:56:06.370Z", + "0.1.2": "2011-09-24T19:12:00.869Z", + "0.1.3": "2011-10-25T22:52:57.576Z" + }, + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "users": { + "pid": true + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/superagent/0.1.1", + "0.1.2": "http://registry.npmjs.org/superagent/0.1.2", + "0.1.3": "http://registry.npmjs.org/superagent/0.1.3" + }, + "dist": { + "0.1.1": { + "shasum": "8be1fefe93e72635f99155cd08d555915c9df2e4", + "tarball": "http://registry.npmjs.org/superagent/-/superagent-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "896d0a23ec839ee84418c002a33ce70d63c4a9cf", + "tarball": "http://registry.npmjs.org/superagent/-/superagent-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "1e2e7ee30463f247de1800100e1d8d0933685660", + "tarball": "http://registry.npmjs.org/superagent/-/superagent-0.1.3.tgz" + } + }, + "keywords": [ + "http", + "ajax", + "request", + "agent" + ], + "url": "http://registry.npmjs.org/superagent/" + }, + "supermarket": { + "name": "supermarket", + "description": "A key/value store based on sqlite for node.js", + "dist-tags": { + "latest": "1.1.2" + }, + "maintainers": [ + { + "name": "pkrumins", + "email": "peteris.krumins@gmail.com" + } + ], + "repository": { + "type": "git", + "url": "http://github.com/pkrumins/node-supermarket.git" + }, + "time": { + "modified": "2011-02-21T23:37:16.898Z", + "created": "2011-02-21T23:37:16.898Z", + "1.0.10": "2011-02-21T23:37:16.898Z", + "1.0.6": "2011-02-21T23:37:16.898Z", + "1.0.7": "2011-02-21T23:37:16.898Z", + "1.0.8": "2011-02-21T23:37:16.898Z", + "1.0.9": "2011-02-21T23:37:16.898Z", + "1.1.0": "2011-02-21T23:37:16.898Z", + "1.1.1": "2011-02-21T23:37:16.898Z", + "1.1.2": "2011-02-21T23:37:16.898Z" + }, + "versions": { + "1.0.10": "http://registry.npmjs.org/supermarket/1.0.10", + "1.0.6": "http://registry.npmjs.org/supermarket/1.0.6", + "1.0.7": "http://registry.npmjs.org/supermarket/1.0.7", + "1.0.8": "http://registry.npmjs.org/supermarket/1.0.8", + "1.0.9": "http://registry.npmjs.org/supermarket/1.0.9", + "1.1.0": "http://registry.npmjs.org/supermarket/1.1.0", + "1.1.1": "http://registry.npmjs.org/supermarket/1.1.1", + "1.1.2": "http://registry.npmjs.org/supermarket/1.1.2" + }, + "dist": { + "1.0.10": { + "tarball": "http://packages:5984/supermarket/-/supermarket-1.0.10.tgz" + }, + "1.0.6": { + "tarball": "http://packages:5984/supermarket/-/supermarket-1.0.6.tgz" + }, + "1.0.7": { + "tarball": "http://packages:5984/supermarket/-/supermarket-1.0.7.tgz" + }, + "1.0.8": { + "tarball": "http://packages:5984/supermarket/-/supermarket-1.0.8.tgz" + }, + "1.0.9": { + "tarball": "http://packages:5984/supermarket/-/supermarket-1.0.9.tgz" + }, + "1.1.0": { + "tarball": "http://packages:5984/supermarket/-/supermarket-1.1.0.tgz" + }, + "1.1.1": { + "tarball": "http://packages:5984/supermarket/-/supermarket-1.1.1.tgz" + }, + "1.1.2": { + "tarball": "http://registry.npmjs.org/supermarket/-/supermarket-1.1.2.tgz" + } + }, + "keywords": [ + "sqlite", + "nosql", + "key value store" + ], + "url": "http://registry.npmjs.org/supermarket/" + }, + "supershabam-websocket": { + "name": "supershabam-websocket", + "description": "bloat-free websocket-draft10 classes that can be used directly, or implemented into a larger websocket framework such as Socket.IO or node-websocket-server", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "supershabam", + "email": "dev@supershabam.com" + } + ], + "time": { + "modified": "2011-08-25T06:58:26.404Z", + "created": "2011-08-24T08:00:57.886Z", + "0.0.0": "2011-08-24T08:00:58.571Z", + "0.0.1": "2011-08-24T08:02:58.493Z", + "0.0.2": "2011-08-25T06:58:26.404Z" + }, + "author": { + "name": "Ian Hansen", + "email": "dev@supershabam.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/supershabam/websocket.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/supershabam-websocket/0.0.0", + "0.0.1": "http://registry.npmjs.org/supershabam-websocket/0.0.1", + "0.0.2": "http://registry.npmjs.org/supershabam-websocket/0.0.2" + }, + "dist": { + "0.0.0": { + "shasum": "c1d19d61860f49972e46e72182d071f2367f1342", + "tarball": "http://registry.npmjs.org/supershabam-websocket/-/supershabam-websocket-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "481d4adee16323e3711ac9adbbed36da7cbfc635", + "tarball": "http://registry.npmjs.org/supershabam-websocket/-/supershabam-websocket-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "d837d882238af28242673e09fc002a2ba6a45239", + "tarball": "http://registry.npmjs.org/supershabam-websocket/-/supershabam-websocket-0.0.2.tgz" + } + }, + "keywords": [ + "websocket", + "websockets", + "socket" + ], + "url": "http://registry.npmjs.org/supershabam-websocket/" + }, + "supervisor": { + "name": "supervisor", + "description": "A supervisor program for running nodejs programs", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + }, + { + "name": "iangreenleaf", + "email": "ian.greenleaf@gmail.com" + } + ], + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me" + }, + "time": { + "modified": "2011-11-14T22:50:17.810Z", + "created": "2010-12-30T23:45:08.741Z", + "0.0.4": "2010-12-30T23:45:08.741Z", + "0.0.5": "2010-12-30T23:45:08.741Z", + "0.0.6": "2010-12-30T23:45:08.741Z", + "0.1.0": "2010-12-30T23:45:08.741Z", + "0.1.1": "2011-03-08T07:14:32.412Z", + "0.1.2": "2011-03-16T16:27:31.149Z", + "0.1.3": "2011-05-17T15:58:48.694Z", + "0.2.0": "2011-11-14T22:50:17.810Z" + }, + "versions": { + "0.0.4": "http://registry.npmjs.org/supervisor/0.0.4", + "0.0.5": "http://registry.npmjs.org/supervisor/0.0.5", + "0.0.6": "http://registry.npmjs.org/supervisor/0.0.6", + "0.1.0": "http://registry.npmjs.org/supervisor/0.1.0", + "0.1.1": "http://registry.npmjs.org/supervisor/0.1.1", + "0.1.2": "http://registry.npmjs.org/supervisor/0.1.2", + "0.1.3": "http://registry.npmjs.org/supervisor/0.1.3", + "0.2.0": "http://registry.npmjs.org/supervisor/0.2.0" + }, + "dist": { + "0.0.4": { + "tarball": "http://packages:5984/supervisor/-/supervisor-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://packages:5984/supervisor/-/supervisor-0.0.5.tgz" + }, + "0.0.6": { + "tarball": "http://packages:5984/supervisor/-/supervisor-0.0.6.tgz" + }, + "0.1.0": { + "shasum": "d8e2832233b6cf15d41d6ef330aad09f9427984b", + "tarball": "http://registry.npmjs.org/supervisor/-/supervisor-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "eb37bdf803073a9605b711ed5887286622b7a848", + "tarball": "http://registry.npmjs.org/supervisor/-/supervisor-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "ba184f3dbcdbd96da5a6a3177bad83168512e60c", + "tarball": "http://registry.npmjs.org/supervisor/-/supervisor-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "0ba6127868f53dc1f0d062c9c46e0656681ff374", + "tarball": "http://registry.npmjs.org/supervisor/-/supervisor-0.1.3.tgz" + }, + "0.2.0": { + "shasum": "dbc49fa0db3beec63923e4cefb47f8c69432ff62", + "tarball": "http://registry.npmjs.org/supervisor/-/supervisor-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/supervisor/" + }, + "supervisord": { + "name": "supervisord", + "description": "Supervisord library for node.js", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "architectd", + "email": "craig.j.condon@gmail.com" + } + ], + "time": { + "modified": "2011-11-30T18:55:02.211Z", + "created": "2011-09-17T05:28:30.640Z", + "0.0.1": "2011-09-17T05:28:31.372Z", + "0.0.2": "2011-09-18T03:26:54.609Z", + "0.0.3": "2011-11-30T18:55:02.211Z" + }, + "author": { + "name": "Craig Condon" + }, + "repository": { + "type": "git", + "url": "git://github.com/crcn/supervisord.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/supervisord/0.0.1", + "0.0.2": "http://registry.npmjs.org/supervisord/0.0.2", + "0.0.3": "http://registry.npmjs.org/supervisord/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "b5e95c117a5f309166963c921b5b3e957d460d9e", + "tarball": "http://registry.npmjs.org/supervisord/-/supervisord-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "47d0948de7f2e0c3c629661b4dd66fa8c7bd5845", + "tarball": "http://registry.npmjs.org/supervisord/-/supervisord-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "60cececde68da92e1ead2a6bb1f6a24193a97d56", + "tarball": "http://registry.npmjs.org/supervisord/-/supervisord-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/supervisord/" + }, + "supervisord-eventlistener": { + "name": "supervisord-eventlistener", + "description": "Listens for events from supervisord and emits them", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": null, + "maintainers": [ + { + "name": "sugendran", + "email": "sugendran@sugendran.net" + } + ], + "time": { + "modified": "2011-11-28T12:52:57.436Z", + "created": "2011-11-28T12:52:53.638Z", + "0.0.1": "2011-11-28T12:52:57.436Z" + }, + "author": { + "name": "Sugendran Ganess" + }, + "repository": { + "type": "git", + "url": "git://github.com/sugendran/node-supervisord-eventlistener.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/supervisord-eventlistener/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "ff9ad1a2d39b7423a6b512af67105287e863ffec", + "tarball": "http://registry.npmjs.org/supervisord-eventlistener/-/supervisord-eventlistener-0.0.1.tgz" + } + }, + "keywords": [ + "supervisord" + ], + "url": "http://registry.npmjs.org/supervisord-eventlistener/" + }, + "surf": { + "name": "surf", + "dist-tags": { + "latest": "0.0.1pre" + }, + "maintainers": [ + { + "name": "dshaw", + "email": "dshaw@dshaw.com" + } + ], + "time": { + "modified": "2011-09-30T09:26:28.394Z", + "created": "2011-09-30T09:26:27.093Z", + "0.0.1pre": "2011-09-30T09:26:28.394Z" + }, + "author": { + "name": "Dan Shaw", + "email": "dshaw@dshaw.com", + "url": "http://dshaw.io" + }, + "repository": { + "type": "git", + "url": "git://github.com/dshaw/surf.git" + }, + "versions": { + "0.0.1pre": "http://registry.npmjs.org/surf/0.0.1pre" + }, + "dist": { + "0.0.1pre": { + "shasum": "36e3176c9df20aa93f8b64d319ba75ed83cc133b", + "tarball": "http://registry.npmjs.org/surf/-/surf-0.0.1pre.tgz" + } + }, + "url": "http://registry.npmjs.org/surf/" + }, + "surrogate-pair": { + "name": "surrogate-pair", + "description": "a library to handle surrogate pair of UTF-16", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "eller86", + "email": "skypencil@gmail.com" + } + ], + "time": { + "modified": "2011-10-30T02:33:52.179Z", + "created": "2011-10-30T02:33:48.106Z", + "0.1.0": "2011-10-30T02:33:52.179Z" + }, + "author": { + "name": "eller86", + "url": "@eller86" + }, + "repository": { + "type": "git", + "url": "git://github.com/eller86/surrogate-pair.js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/surrogate-pair/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "d6e164e6eb1d799904ec32ed836f6f311e46cb5c", + "tarball": "http://registry.npmjs.org/surrogate-pair/-/surrogate-pair-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/surrogate-pair/" + }, + "svg2jadepartial": { + "name": "svg2jadepartial", + "description": "Utility written in CoffeeScript for using SVG with Jade template engine", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "fixerfrasse", + "email": "fredrik@kondensator.se" + } + ], + "time": { + "modified": "2011-08-22T20:30:40.849Z", + "created": "2011-08-10T08:49:28.473Z", + "0.0.1": "2011-08-10T08:49:30.380Z", + "0.0.2": "2011-08-15T11:49:30.369Z", + "0.0.3": "2011-08-22T07:04:06.461Z", + "0.0.4": "2011-08-22T20:30:40.849Z" + }, + "author": { + "name": "Fredrik Andersson", + "email": "fredrik@kondensator.se" + }, + "repository": { + "type": "git", + "url": "git://github.com/fixerfrasse/svg2jade.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/svg2jadepartial/0.0.1", + "0.0.2": "http://registry.npmjs.org/svg2jadepartial/0.0.2", + "0.0.3": "http://registry.npmjs.org/svg2jadepartial/0.0.3", + "0.0.4": "http://registry.npmjs.org/svg2jadepartial/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "a5b8007e5b6a275c1af0b46fcb66659d8a3f575b", + "tarball": "http://registry.npmjs.org/svg2jadepartial/-/svg2jadepartial-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "28bcbc22f3da728018807c3b6a86acc8ee3b8180", + "tarball": "http://registry.npmjs.org/svg2jadepartial/-/svg2jadepartial-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "2e21ec674b8ed63c91a8e49cd744b280dbf74589", + "tarball": "http://registry.npmjs.org/svg2jadepartial/-/svg2jadepartial-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "f1fdb8fb97c946d6f1069036fd317631d75e4f39", + "tarball": "http://registry.npmjs.org/svg2jadepartial/-/svg2jadepartial-0.0.4.tgz" + } + }, + "keywords": [ + "jade svg express" + ], + "url": "http://registry.npmjs.org/svg2jadepartial/" + }, + "svgen": { + "name": "svgen", + "description": "generate DNA sequence with SNV and Structural Variations from FASTA format", + "dist-tags": { + "latest": "0.1.2-2" + }, + "maintainers": [ + { + "name": "shinout", + "email": "shinout310@gmail.com" + } + ], + "time": { + "modified": "2011-11-01T07:42:34.328Z", + "created": "2011-10-30T17:09:32.772Z", + "0.1.0": "2011-10-30T17:09:51.286Z", + "0.1.1": "2011-10-31T08:53:18.790Z", + "0.1.2": "2011-10-31T12:01:30.541Z", + "0.1.2-1": "2011-11-01T07:38:49.163Z", + "0.1.2-2": "2011-11-01T07:42:34.328Z" + }, + "author": { + "name": "SHIN Suzuki", + "email": "shinout310@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/shinout/svgen.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/svgen/0.1.0", + "0.1.1": "http://registry.npmjs.org/svgen/0.1.1", + "0.1.2": "http://registry.npmjs.org/svgen/0.1.2", + "0.1.2-1": "http://registry.npmjs.org/svgen/0.1.2-1", + "0.1.2-2": "http://registry.npmjs.org/svgen/0.1.2-2" + }, + "dist": { + "0.1.0": { + "shasum": "dbd0540b4b2ef31ba825bd832308ba0db0ec542f", + "tarball": "http://registry.npmjs.org/svgen/-/svgen-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "f2fc2f438088214b86060f8917b4c2aa6b1c4312", + "tarball": "http://registry.npmjs.org/svgen/-/svgen-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "c46ea27635ae85dd356b6389a8410c9ceba57652", + "tarball": "http://registry.npmjs.org/svgen/-/svgen-0.1.2.tgz" + }, + "0.1.2-1": { + "shasum": "7e8888b40f2318fa8e0fa5629c1de67d4d808753", + "tarball": "http://registry.npmjs.org/svgen/-/svgen-0.1.2-1.tgz" + }, + "0.1.2-2": { + "shasum": "e0024bc5de8175a4f4ae40f80f7215103abb9510", + "tarball": "http://registry.npmjs.org/svgen/-/svgen-0.1.2-2.tgz" + } + }, + "url": "http://registry.npmjs.org/svgen/" + }, + "swake": { + "name": "swake", + "description": "Task execution tool used by swarm", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "tristanls", + "email": "tristan.slominski@gmail.com" + } + ], + "time": { + "modified": "2011-09-04T23:00:21.628Z", + "created": "2011-08-13T20:56:57.636Z", + "0.1.0": "2011-08-13T20:57:04.124Z", + "0.1.1": "2011-09-04T23:00:21.628Z" + }, + "author": { + "name": "Tristan Slominski", + "email": "tristan.slominski@gmail.com", + "url": "http://github.com/tristanls" + }, + "repository": { + "type": "git", + "url": "git://github.com/tristanls/swake.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/swake/0.1.0", + "0.1.1": "http://registry.npmjs.org/swake/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "ee03401ddb3b10ceb800a90d5a01a89e08e51ad4", + "tarball": "http://registry.npmjs.org/swake/-/swake-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "47106cf3c01a5b03a0b4c5f349f59771f9b292cc", + "tarball": "http://registry.npmjs.org/swake/-/swake-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/swake/" + }, + "swarm": { + "name": "swarm", + "description": "It cannot possibly go wrong", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "tristanls", + "email": "tristan.slominski@gmail.com" + } + ], + "time": { + "modified": "2011-09-04T23:17:37.318Z", + "created": "2011-07-24T07:39:24.023Z", + "0.0.1-pre": "2011-07-24T07:39:25.434Z", + "0.0.1-pre2": "2011-07-31T20:54:16.431Z", + "0.0.1-pre3": "2011-08-01T01:13:04.687Z", + "0.0.1-pre4": "2011-08-01T01:19:26.393Z", + "0.0.1-pre5": "2011-08-01T01:21:55.103Z", + "0.0.1-pre6": "2011-08-07T19:02:24.824Z", + "0.0.1-pre7": "2011-08-07T19:51:42.833Z", + "0.0.1-pre8": "2011-08-07T21:07:19.222Z", + "0.0.1-pre9": "2011-08-07T21:09:52.709Z", + "0.0.1-pre10": "2011-08-07T21:28:58.510Z", + "0.0.1-pre11": "2011-08-07T21:31:40.672Z", + "0.0.1-pre12": "2011-08-07T21:45:59.571Z", + "0.0.1-pre13": "2011-08-07T21:52:00.736Z", + "0.0.1": "2011-08-07T21:54:30.375Z", + "0.0.2-pre": "2011-08-07T23:13:44.322Z", + "0.0.2": "2011-08-07T23:26:21.200Z", + "0.0.3-pre1": "2011-08-20T20:09:29.681Z", + "0.1.0": "2011-09-04T21:34:35.086Z", + "0.1.1": "2011-09-04T21:50:01.453Z", + "0.1.2": "2011-09-04T22:46:59.814Z", + "0.1.3": "2011-09-04T23:17:37.318Z" + }, + "author": { + "name": "Tristan Slominski", + "email": "tristan.slominski@gmail.com", + "url": "http://github.com/tristanls" + }, + "repository": { + "type": "git", + "url": "git://github.com/tristanls/swarm.git" + }, + "versions": { + "0.0.1-pre": "http://registry.npmjs.org/swarm/0.0.1-pre", + "0.0.1-pre2": "http://registry.npmjs.org/swarm/0.0.1-pre2", + "0.0.1-pre3": "http://registry.npmjs.org/swarm/0.0.1-pre3", + "0.0.1-pre4": "http://registry.npmjs.org/swarm/0.0.1-pre4", + "0.0.1-pre5": "http://registry.npmjs.org/swarm/0.0.1-pre5", + "0.0.1-pre6": "http://registry.npmjs.org/swarm/0.0.1-pre6", + "0.0.1-pre7": "http://registry.npmjs.org/swarm/0.0.1-pre7", + "0.0.1-pre8": "http://registry.npmjs.org/swarm/0.0.1-pre8", + "0.0.1-pre9": "http://registry.npmjs.org/swarm/0.0.1-pre9", + "0.0.1-pre10": "http://registry.npmjs.org/swarm/0.0.1-pre10", + "0.0.1-pre11": "http://registry.npmjs.org/swarm/0.0.1-pre11", + "0.0.1-pre12": "http://registry.npmjs.org/swarm/0.0.1-pre12", + "0.0.1-pre13": "http://registry.npmjs.org/swarm/0.0.1-pre13", + "0.0.1": "http://registry.npmjs.org/swarm/0.0.1", + "0.0.2-pre": "http://registry.npmjs.org/swarm/0.0.2-pre", + "0.0.2": "http://registry.npmjs.org/swarm/0.0.2", + "0.0.3-pre1": "http://registry.npmjs.org/swarm/0.0.3-pre1", + "0.1.0": "http://registry.npmjs.org/swarm/0.1.0", + "0.1.1": "http://registry.npmjs.org/swarm/0.1.1", + "0.1.2": "http://registry.npmjs.org/swarm/0.1.2", + "0.1.3": "http://registry.npmjs.org/swarm/0.1.3" + }, + "dist": { + "0.0.1-pre": { + "shasum": "f1f10a11957bbb5b7c159980409f78050827c36f", + "tarball": "http://registry.npmjs.org/swarm/-/swarm-0.0.1-pre.tgz" + }, + "0.0.1-pre2": { + "shasum": "9949c5ac61cbeeaa8d37f87c1c2d07e4355c88a0", + "tarball": "http://registry.npmjs.org/swarm/-/swarm-0.0.1-pre2.tgz" + }, + "0.0.1-pre3": { + "shasum": "d3e0394a90bd3c9c231e385c6565d2d2db3d2432", + "tarball": "http://registry.npmjs.org/swarm/-/swarm-0.0.1-pre3.tgz" + }, + "0.0.1-pre4": { + "shasum": "dbeb2a64a9129dc109e5e4c2b9479718875fe123", + "tarball": "http://registry.npmjs.org/swarm/-/swarm-0.0.1-pre4.tgz" + }, + "0.0.1-pre5": { + "shasum": "ebdfd7ce3da1362f706541fd23818ee27a9d73a7", + "tarball": "http://registry.npmjs.org/swarm/-/swarm-0.0.1-pre5.tgz" + }, + "0.0.1-pre6": { + "shasum": "3040343f399102f28b1b2e4b0c3ad5601b33f1c7", + "tarball": "http://registry.npmjs.org/swarm/-/swarm-0.0.1-pre6.tgz" + }, + "0.0.1-pre7": { + "shasum": "9b54ba14b2d909bc3da4b7e450524572c028fb03", + "tarball": "http://registry.npmjs.org/swarm/-/swarm-0.0.1-pre7.tgz" + }, + "0.0.1-pre8": { + "shasum": "1c1a02a6bcb200bc7367123c18317e48226a4b66", + "tarball": "http://registry.npmjs.org/swarm/-/swarm-0.0.1-pre8.tgz" + }, + "0.0.1-pre9": { + "shasum": "e88715de42a39b0d8e2e165db23d7fa6f273da2e", + "tarball": "http://registry.npmjs.org/swarm/-/swarm-0.0.1-pre9.tgz" + }, + "0.0.1-pre10": { + "shasum": "c1116ec28ca642bdf901ef07e6ba046173ef6c57", + "tarball": "http://registry.npmjs.org/swarm/-/swarm-0.0.1-pre10.tgz" + }, + "0.0.1-pre11": { + "shasum": "3d05f9eabf763706cce39a2bf31f533888e452a5", + "tarball": "http://registry.npmjs.org/swarm/-/swarm-0.0.1-pre11.tgz" + }, + "0.0.1-pre12": { + "shasum": "37f08c46766bfbbf15a07b4116b95b6f519d1916", + "tarball": "http://registry.npmjs.org/swarm/-/swarm-0.0.1-pre12.tgz" + }, + "0.0.1-pre13": { + "shasum": "a46b34d9efa09f99b858cb547bb2ad7c98b835ec", + "tarball": "http://registry.npmjs.org/swarm/-/swarm-0.0.1-pre13.tgz" + }, + "0.0.1": { + "shasum": "8585c8c3982ff2638ba5914368c24b2e478cf70f", + "tarball": "http://registry.npmjs.org/swarm/-/swarm-0.0.1.tgz" + }, + "0.0.2-pre": { + "shasum": "3a58c40bd323922f35ab4560cc5a537187d4666e", + "tarball": "http://registry.npmjs.org/swarm/-/swarm-0.0.2-pre.tgz" + }, + "0.0.2": { + "shasum": "83dfdbaf00fe74decfb77bd616eaa422b9705e96", + "tarball": "http://registry.npmjs.org/swarm/-/swarm-0.0.2.tgz" + }, + "0.0.3-pre1": { + "shasum": "f5adaf082110f8506b9babf2faa5f96a4b2548b8", + "tarball": "http://registry.npmjs.org/swarm/-/swarm-0.0.3-pre1.tgz" + }, + "0.1.0": { + "shasum": "498d76f148eb2fb03953c93a855f2956397ce5de", + "tarball": "http://registry.npmjs.org/swarm/-/swarm-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "96c9875ef439904dc4fe3e2e8f09efc59e0d2d25", + "tarball": "http://registry.npmjs.org/swarm/-/swarm-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "d8b79d07bfa46283cf276e1a92e895b8fd7cb5df", + "tarball": "http://registry.npmjs.org/swarm/-/swarm-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "690b05d4f0161aaabb58028b88f00af503287db0", + "tarball": "http://registry.npmjs.org/swarm/-/swarm-0.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/swarm/" + }, + "sweep": { + "name": "sweep", + "description": "Framework for writing IRC bots", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "tombell", + "email": "tomb@tombell.org.uk" + } + ], + "time": { + "modified": "2011-10-02T18:45:22.654Z", + "created": "2011-10-02T18:45:21.291Z", + "0.0.1": "2011-10-02T18:45:22.654Z" + }, + "author": { + "name": "Tom Bell" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/sweep/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "6f3cbe279c4ab9ea579b983f612f172060a342ea", + "tarball": "http://registry.npmjs.org/sweep/-/sweep-0.0.1.tgz" + } + }, + "keywords": [ + "irc", + "chat", + "bot", + "framework" + ], + "url": "http://registry.npmjs.org/sweep/" + }, + "sweet": { + "name": "sweet", + "description": "Sweet Disposition: Interoperable Content-Disposistion headers", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "mnot", + "email": "mnot@mnot.net" + } + ], + "time": { + "modified": "2011-07-14T11:49:30.743Z", + "created": "2011-07-14T06:51:19.385Z", + "0.1.0": "2011-07-14T06:51:21.305Z", + "0.1.1": "2011-07-14T11:49:30.743Z" + }, + "author": { + "name": "Mark Nottingham", + "email": "mnot@mnot.net", + "url": "http://www.mnot.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/mnot/sweet.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/sweet/0.1.0", + "0.1.1": "http://registry.npmjs.org/sweet/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "8a698f9556aebc7cff1d6bab9e7da5b21291d21a", + "tarball": "http://registry.npmjs.org/sweet/-/sweet-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "19e2abacc413a1457cc54b433d400d46d6c4869d", + "tarball": "http://registry.npmjs.org/sweet/-/sweet-0.1.1.tgz" + } + }, + "keywords": [ + "HTTP", + "i18n", + "Content-Disposition" + ], + "url": "http://registry.npmjs.org/sweet/" + }, + "swift": { + "name": "swift", + "description": "OpenStack Object Storage(Swift) REST client API for Node.JS", + "dist-tags": { + "latest": "0.1.7" + }, + "maintainers": [ + { + "name": "firejune", + "email": "to@firejune.com" + } + ], + "time": { + "modified": "2011-10-27T06:02:18.267Z", + "created": "2011-10-19T02:11:27.146Z", + "0.0.1": "2011-10-19T02:11:32.010Z", + "0.0.2": "2011-10-19T03:02:13.249Z", + "0.0.3": "2011-10-19T03:07:25.690Z", + "0.1.3": "2011-10-19T03:19:41.820Z", + "0.1.4": "2011-10-19T04:39:43.812Z", + "0.1.5": "2011-10-19T05:22:49.396Z", + "0.1.6": "2011-10-21T09:01:19.063Z", + "0.1.7": "2011-10-27T06:02:18.267Z" + }, + "author": { + "name": "Firejune", + "url": "http://firejune.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/firejune/swift.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/swift/0.0.1", + "0.0.2": "http://registry.npmjs.org/swift/0.0.2", + "0.0.3": "http://registry.npmjs.org/swift/0.0.3", + "0.1.3": "http://registry.npmjs.org/swift/0.1.3", + "0.1.4": "http://registry.npmjs.org/swift/0.1.4", + "0.1.5": "http://registry.npmjs.org/swift/0.1.5", + "0.1.6": "http://registry.npmjs.org/swift/0.1.6", + "0.1.7": "http://registry.npmjs.org/swift/0.1.7" + }, + "dist": { + "0.0.1": { + "shasum": "885446856e6f326bec3c5bbc9d95ea56b67f24ce", + "tarball": "http://registry.npmjs.org/swift/-/swift-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "da01bc20a76d02e96c7a5675e0041304a19858ae", + "tarball": "http://registry.npmjs.org/swift/-/swift-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "cf07c4ddb8ed54c2b5d5e81d31d074e015876e7d", + "tarball": "http://registry.npmjs.org/swift/-/swift-0.0.3.tgz" + }, + "0.1.3": { + "shasum": "a5184faac40cfb63819012c155248b65a33f32c1", + "tarball": "http://registry.npmjs.org/swift/-/swift-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "43f3b767d660dc01a139123b51dbb24ad73b7ba6", + "tarball": "http://registry.npmjs.org/swift/-/swift-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "7b84b73d22264ef527cc3d97c7a15c87d091e865", + "tarball": "http://registry.npmjs.org/swift/-/swift-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "46c87ed5b869e074c3abeec8dc2536525f96ee19", + "tarball": "http://registry.npmjs.org/swift/-/swift-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "13ff34c64b74b629c269e5568e4649d14a50f350", + "tarball": "http://registry.npmjs.org/swift/-/swift-0.1.7.tgz" + } + }, + "keywords": [ + "Swift", + "OpenStack", + "Object Storage" + ], + "url": "http://registry.npmjs.org/swift/" + }, + "swig": { + "name": "swig", + "description": "A fast django-like templating engine for node.js and browsers.", + "dist-tags": { + "latest": "0.8.0" + }, + "maintainers": [ + { + "name": "paularmstrong", + "email": "paul@paularmstrongdesigns.com" + } + ], + "time": { + "modified": "2011-11-07T19:41:19.181Z", + "created": "2011-09-02T01:22:44.720Z", + "0.1.1": "2011-09-02T01:22:46.060Z", + "0.1.2": "2011-09-02T01:31:37.621Z", + "0.1.3": "2011-09-02T02:26:17.139Z", + "0.1.5": "2011-09-04T17:29:57.628Z", + "0.1.6": "2011-09-04T17:45:04.607Z", + "0.1.7": "2011-09-05T19:39:26.474Z", + "0.1.8": "2011-09-11T00:04:54.300Z", + "0.1.9": "2011-09-11T19:32:18.835Z", + "0.2.0": "2011-09-12T04:19:38.009Z", + "0.2.1": "2011-09-14T01:13:57.994Z", + "0.2.2": "2011-09-17T00:25:09.533Z", + "0.2.3": "2011-09-17T02:45:39.764Z", + "0.3.0": "2011-09-18T04:32:18.279Z", + "0.4.0": "2011-09-24T22:59:25.377Z", + "0.5.0": "2011-09-28T03:57:50.554Z", + "0.6.0": "2011-10-02T22:13:09.785Z", + "0.6.1": "2011-10-03T06:17:33.389Z", + "0.7.0": "2011-10-06T04:41:22.749Z", + "0.8.0": "2011-11-04T17:35:18.281Z" + }, + "author": { + "name": "Paul Armstrong", + "email": "paul@paularmstrongdesigns.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/paularmstrong/swig.git" + }, + "users": { + "kwerty": true + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/swig/0.1.1", + "0.1.2": "http://registry.npmjs.org/swig/0.1.2", + "0.1.3": "http://registry.npmjs.org/swig/0.1.3", + "0.1.5": "http://registry.npmjs.org/swig/0.1.5", + "0.1.6": "http://registry.npmjs.org/swig/0.1.6", + "0.1.7": "http://registry.npmjs.org/swig/0.1.7", + "0.1.8": "http://registry.npmjs.org/swig/0.1.8", + "0.1.9": "http://registry.npmjs.org/swig/0.1.9", + "0.2.0": "http://registry.npmjs.org/swig/0.2.0", + "0.2.1": "http://registry.npmjs.org/swig/0.2.1", + "0.2.2": "http://registry.npmjs.org/swig/0.2.2", + "0.2.3": "http://registry.npmjs.org/swig/0.2.3", + "0.3.0": "http://registry.npmjs.org/swig/0.3.0", + "0.4.0": "http://registry.npmjs.org/swig/0.4.0", + "0.5.0": "http://registry.npmjs.org/swig/0.5.0", + "0.6.0": "http://registry.npmjs.org/swig/0.6.0", + "0.6.1": "http://registry.npmjs.org/swig/0.6.1", + "0.7.0": "http://registry.npmjs.org/swig/0.7.0", + "0.8.0": "http://registry.npmjs.org/swig/0.8.0" + }, + "dist": { + "0.1.1": { + "shasum": "7f88141f78a6bd0b407acfe242e9a7ce4a7cb0ce", + "tarball": "http://registry.npmjs.org/swig/-/swig-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "dd165e19daf6970f782d5a8c3e7f41cb1584ee87", + "tarball": "http://registry.npmjs.org/swig/-/swig-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "90843cb64d3dd5ecdf547c32184105fa4d860044", + "tarball": "http://registry.npmjs.org/swig/-/swig-0.1.3.tgz" + }, + "0.1.5": { + "shasum": "863bf759e16919fcab135635487a301c78c986be", + "tarball": "http://registry.npmjs.org/swig/-/swig-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "bf99ea2859658b4353fb1716f0594ad8cc05fe4e", + "tarball": "http://registry.npmjs.org/swig/-/swig-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "109aad77677bbba4e0d7efcd07f6c7c841addc66", + "tarball": "http://registry.npmjs.org/swig/-/swig-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "6ab383ab2df1becaa3dba369895ab82436264bcf", + "tarball": "http://registry.npmjs.org/swig/-/swig-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "b1422aafab7bc6187cd5daa8d1a50e19d4c23a11", + "tarball": "http://registry.npmjs.org/swig/-/swig-0.1.9.tgz" + }, + "0.2.0": { + "shasum": "f32f1097a67ba6d1ada58f5a33bbb1a14b5051ce", + "tarball": "http://registry.npmjs.org/swig/-/swig-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "450b067604903d2984c8b97eb1d4edaad56479cc", + "tarball": "http://registry.npmjs.org/swig/-/swig-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "8b6ac9b72dfbe2873e883e8c1785a6cc5782ed38", + "tarball": "http://registry.npmjs.org/swig/-/swig-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "3cf7f9ac66a75e7b49299cd6ac62c4374e879444", + "tarball": "http://registry.npmjs.org/swig/-/swig-0.2.3.tgz" + }, + "0.3.0": { + "shasum": "64ebc326e9645f3d639369e15462a8d5641b01bb", + "tarball": "http://registry.npmjs.org/swig/-/swig-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "dcdc84034e7dac67eec7a47f4aca784b0061dc16", + "tarball": "http://registry.npmjs.org/swig/-/swig-0.4.0.tgz" + }, + "0.5.0": { + "shasum": "1bdb3f1d503b0e586eb7085d562885fbc81ba96e", + "tarball": "http://registry.npmjs.org/swig/-/swig-0.5.0.tgz" + }, + "0.6.0": { + "shasum": "b3771053372d91dddd8427aeb1f436cd50f2081b", + "tarball": "http://registry.npmjs.org/swig/-/swig-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "ab7cc952034978b5e2410eadcfd3769556715028", + "tarball": "http://registry.npmjs.org/swig/-/swig-0.6.1.tgz" + }, + "0.7.0": { + "shasum": "c44d8f2b1296b5bddfde4632d1380f0505a28f23", + "tarball": "http://registry.npmjs.org/swig/-/swig-0.7.0.tgz" + }, + "0.8.0": { + "shasum": "66cb4c5b921f1bdc7958ab1ce9738fe917dd1f35", + "tarball": "http://registry.npmjs.org/swig/-/swig-0.8.0.tgz" + } + }, + "keywords": [ + "template", + "templating", + "html", + "django", + "express", + "block" + ], + "url": "http://registry.npmjs.org/swig/" + }, + "switchback": { + "name": "switchback", + "description": "Command-line library for apps like heroku and jitsu", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "mattinsler", + "email": "matt.insler@gmail.com" + } + ], + "time": { + "modified": "2011-09-07T04:26:52.946Z", + "created": "2011-09-07T04:26:52.470Z", + "0.0.1": "2011-09-07T04:26:52.946Z" + }, + "author": { + "name": "Matt Insler", + "email": "matt.insler@gmail.com", + "url": "http://www.mattinsler.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mattinsler/switchback.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/switchback/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "3dc7387a6a318a3f84d783582f134de204df0bd7", + "tarball": "http://registry.npmjs.org/switchback/-/switchback-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/switchback/" + }, + "switchboard": { + "name": "switchboard", + "description": "Dependency chains for events", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "bryn", + "email": "bryn.bellomy@gmail.com" + } + ], + "time": { + "modified": "2011-07-04T06:03:24.204Z", + "created": "2011-07-04T06:03:24.026Z", + "0.0.1": "2011-07-04T06:03:24.204Z" + }, + "author": { + "name": "Bryn Austin Bellomy", + "email": "bryn.bellomy@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/switchboard/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "e6226058dcc4b66caa2659cd7e7e976e61b4889c", + "tarball": "http://registry.npmjs.org/switchboard/-/switchboard-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/switchboard/" + }, + "swiz": { + "name": "swiz", + "description": "Serilization and Validation Framework for objects in RESTful APIs", + "dist-tags": { + "latest": "0.4.29" + }, + "maintainers": [ + { + "name": "russell_h", + "email": "russellhaering@gmail.com" + }, + { + "name": "rphillips", + "email": "ryan@trolocsis.com" + }, + { + "name": "kami", + "email": "tomaz@tomaz.me" + }, + { + "name": "gdusbabek", + "email": "gdusbabek@gmail.com" + } + ], + "time": { + "modified": "2011-12-14T04:38:02.731Z", + "created": "2011-05-22T21:30:18.363Z", + "0.1.0": "2011-05-22T21:30:19.055Z", + "0.1.1": "2011-05-24T19:08:29.201Z", + "0.1.2": "2011-05-24T19:41:20.747Z", + "0.1.3": "2011-05-24T19:55:21.071Z", + "0.1.4": "2011-05-26T17:00:35.853Z", + "0.1.5": "2011-05-27T17:46:26.245Z", + "0.1.6": "2011-05-27T18:36:09.697Z", + "0.1.7": "2011-05-31T06:33:21.197Z", + "0.2.0": "2011-06-06T21:48:51.977Z", + "0.2.1": "2011-06-07T07:02:53.067Z", + "0.2.2": "2011-06-08T21:29:32.994Z", + "0.2.3": "2011-07-15T19:51:33.029Z", + "0.3.1": "2011-07-20T03:18:57.903Z", + "0.3.2": "2011-08-10T07:19:55.912Z", + "0.3.3": "2011-08-11T21:55:00.753Z", + "0.3.4": "2011-08-11T22:01:31.783Z", + "0.3.5": "2011-08-16T20:09:26.954Z", + "0.3.6": "2011-08-17T17:44:09.143Z", + "0.3.7": "2011-08-19T18:04:32.154Z", + "0.3.8": "2011-08-22T17:27:00.965Z", + "0.3.9": "2011-08-24T16:37:45.891Z", + "0.3.10": "2011-09-06T16:36:58.253Z", + "0.3.11": "2011-09-07T22:20:11.038Z", + "0.4.0": "2011-09-10T14:39:47.891Z", + "0.4.1": "2011-09-15T02:57:28.457Z", + "0.4.2": "2011-09-15T23:26:34.329Z", + "0.4.3": "2011-09-16T00:20:24.531Z", + "0.4.4": "2011-09-19T08:13:39.708Z", + "0.4.5": "2011-09-19T19:31:21.563Z", + "0.4.6": "2011-09-19T19:36:38.574Z", + "0.4.7": "2011-09-21T16:24:29.379Z", + "0.4.8": "2011-09-22T09:15:47.040Z", + "0.4.9": "2011-09-22T15:47:18.887Z", + "0.4.10": "2011-09-22T23:13:19.715Z", + "0.4.11": "2011-09-23T14:46:58.849Z", + "0.4.12": "2011-09-27T15:15:35.737Z", + "0.4.13": "2011-09-27T15:43:52.280Z", + "0.4.14": "2011-09-29T15:45:09.306Z", + "0.4.15": "2011-09-29T21:49:26.326Z", + "0.4.16": "2011-09-30T18:00:56.296Z", + "0.4.17": "2011-10-03T17:50:57.811Z", + "0.4.18": "2011-10-03T20:29:34.974Z", + "0.4.19": "2011-10-05T19:18:30.284Z", + "0.4.20": "2011-10-05T21:08:31.123Z", + "0.4.21": "2011-10-07T16:25:41.151Z", + "0.4.22": "2011-10-19T21:43:15.680Z", + "0.4.23": "2011-10-25T17:27:59.668Z", + "0.4.24": "2011-10-26T21:58:18.697Z", + "0.4.25": "2011-10-27T04:36:58.303Z", + "0.4.26": "2011-10-27T11:55:41.112Z", + "0.4.27": "2011-10-31T01:22:57.730Z", + "0.4.28": "2011-11-08T19:05:31.416Z", + "0.4.29": "2011-12-14T04:38:02.731Z" + }, + "author": { + "name": "Rackspace US, Inc." + }, + "repository": { + "type": "git", + "url": "git://github.com/racker/node-swiz.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/swiz/0.1.0", + "0.1.1": "http://registry.npmjs.org/swiz/0.1.1", + "0.1.2": "http://registry.npmjs.org/swiz/0.1.2", + "0.1.3": "http://registry.npmjs.org/swiz/0.1.3", + "0.1.4": "http://registry.npmjs.org/swiz/0.1.4", + "0.1.5": "http://registry.npmjs.org/swiz/0.1.5", + "0.1.6": "http://registry.npmjs.org/swiz/0.1.6", + "0.1.7": "http://registry.npmjs.org/swiz/0.1.7", + "0.2.0": "http://registry.npmjs.org/swiz/0.2.0", + "0.2.1": "http://registry.npmjs.org/swiz/0.2.1", + "0.2.2": "http://registry.npmjs.org/swiz/0.2.2", + "0.2.3": "http://registry.npmjs.org/swiz/0.2.3", + "0.3.1": "http://registry.npmjs.org/swiz/0.3.1", + "0.3.2": "http://registry.npmjs.org/swiz/0.3.2", + "0.3.3": "http://registry.npmjs.org/swiz/0.3.3", + "0.3.4": "http://registry.npmjs.org/swiz/0.3.4", + "0.3.5": "http://registry.npmjs.org/swiz/0.3.5", + "0.3.6": "http://registry.npmjs.org/swiz/0.3.6", + "0.3.7": "http://registry.npmjs.org/swiz/0.3.7", + "0.3.8": "http://registry.npmjs.org/swiz/0.3.8", + "0.3.9": "http://registry.npmjs.org/swiz/0.3.9", + "0.3.10": "http://registry.npmjs.org/swiz/0.3.10", + "0.3.11": "http://registry.npmjs.org/swiz/0.3.11", + "0.4.0": "http://registry.npmjs.org/swiz/0.4.0", + "0.4.1": "http://registry.npmjs.org/swiz/0.4.1", + "0.4.2": "http://registry.npmjs.org/swiz/0.4.2", + "0.4.3": "http://registry.npmjs.org/swiz/0.4.3", + "0.4.4": "http://registry.npmjs.org/swiz/0.4.4", + "0.4.5": "http://registry.npmjs.org/swiz/0.4.5", + "0.4.6": "http://registry.npmjs.org/swiz/0.4.6", + "0.4.7": "http://registry.npmjs.org/swiz/0.4.7", + "0.4.8": "http://registry.npmjs.org/swiz/0.4.8", + "0.4.9": "http://registry.npmjs.org/swiz/0.4.9", + "0.4.10": "http://registry.npmjs.org/swiz/0.4.10", + "0.4.11": "http://registry.npmjs.org/swiz/0.4.11", + "0.4.13": "http://registry.npmjs.org/swiz/0.4.13", + "0.4.14": "http://registry.npmjs.org/swiz/0.4.14", + "0.4.15": "http://registry.npmjs.org/swiz/0.4.15", + "0.4.16": "http://registry.npmjs.org/swiz/0.4.16", + "0.4.17": "http://registry.npmjs.org/swiz/0.4.17", + "0.4.18": "http://registry.npmjs.org/swiz/0.4.18", + "0.4.19": "http://registry.npmjs.org/swiz/0.4.19", + "0.4.20": "http://registry.npmjs.org/swiz/0.4.20", + "0.4.21": "http://registry.npmjs.org/swiz/0.4.21", + "0.4.22": "http://registry.npmjs.org/swiz/0.4.22", + "0.4.23": "http://registry.npmjs.org/swiz/0.4.23", + "0.4.24": "http://registry.npmjs.org/swiz/0.4.24", + "0.4.25": "http://registry.npmjs.org/swiz/0.4.25", + "0.4.26": "http://registry.npmjs.org/swiz/0.4.26", + "0.4.27": "http://registry.npmjs.org/swiz/0.4.27", + "0.4.28": "http://registry.npmjs.org/swiz/0.4.28", + "0.4.29": "http://registry.npmjs.org/swiz/0.4.29" + }, + "dist": { + "0.1.0": { + "shasum": "8be78e0a5e8b98983e729de84dac80e7d381a76b", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "6c10b0bc72a1c90e801780fb16d715df673dd2e3", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "81f5d280bb91171ac1b27ca822c2fbdf0a39843a", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "b06087d005e6fc85095495764c87d49680e0c0e0", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "ecc6c9df7b9ba763da88af02b71421ed107ab0b7", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "e4731fa0a5c6f0cfd3b2d69064e17aea60dedc4b", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "e8b87b08ca42544545b85dffc6219cf21b0b6974", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "2cc571138d1d212281253fa984263dc9f7569fea", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.1.7.tgz" + }, + "0.2.0": { + "shasum": "9db320fc532614576cfada8921ac7f70ae055fc5", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "0b534c6bdbbd641cf375715f736fa119e945868f", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "d5f83fa44a9df11f128314b353109399ae706a43", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "292b6552af77ece0cf74186fded1f948b3fa68af", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.2.3.tgz" + }, + "0.3.1": { + "shasum": "c721b728414879444b6345b1664d492213951128", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "09cfe9ac3d2d1f2062c5c86f352bbf64043dabf5", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "c2cb9bc316e471eafc0e367058f9ece0f2e6d71c", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.3.3.tgz" + }, + "0.3.4": { + "shasum": "ce55c4b9244a31b7feacfedc10771f05aa39719b", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.3.4.tgz" + }, + "0.3.5": { + "shasum": "b57ed1af3cbaf08ffbc5bdb14c2dc9bea850c4b8", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.3.5.tgz" + }, + "0.3.6": { + "shasum": "ee14b803791e364e7807c7b6ebf46aca1639c4b4", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.3.6.tgz" + }, + "0.3.7": { + "shasum": "8ddb062dc50cb86c9da5c7c7cc9d731669e5c601", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.3.7.tgz" + }, + "0.3.8": { + "shasum": "8c886e1e383cad6e3171e3f2271ddcdad6fa93a4", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.3.8.tgz" + }, + "0.3.9": { + "shasum": "453b87b76f95fabcde00cfbb0f4cb72b23bd73ea", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.3.9.tgz" + }, + "0.3.10": { + "shasum": "24b69aac87af1c50610a9cd40dedd13804bc23e7", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.3.10.tgz" + }, + "0.3.11": { + "shasum": "6d5a2292ab9f39a4dd485be1ac04980aaaacb528", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.3.11.tgz" + }, + "0.4.0": { + "shasum": "c6b9e7b81fed739cad7e73364122706153d2d985", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "c0eab9f8e1bfdcc7330fd63f2c4bd4a8ec370511", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "8824fc3af67a783b1622bb5f4e041aa7d12604e6", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "34de50009c2feb2267994aac1ceb1355caa90794", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.4.3.tgz" + }, + "0.4.4": { + "shasum": "b72b0b83e30e49995d56484630e9af40b28ff21d", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.4.4.tgz" + }, + "0.4.5": { + "shasum": "57616fa23b903436d3c55be6fd0f802e925c96d4", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.4.5.tgz" + }, + "0.4.6": { + "shasum": "754b86b13212d57c63b562b0ef4fb765252f46ea", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.4.6.tgz" + }, + "0.4.7": { + "shasum": "16ffa2d18de2bbb0028c884ce088c3c15ea77b10", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.4.7.tgz" + }, + "0.4.8": { + "shasum": "a492a3ca0609649802c92e2808a62f75953f839f", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.4.8.tgz" + }, + "0.4.9": { + "shasum": "18959b0995b7fb6e52c457c3f1c0f062a1092f4d", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.4.9.tgz" + }, + "0.4.10": { + "shasum": "58c14d7439a2549372101e2b94277e515ee572a7", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.4.10.tgz" + }, + "0.4.11": { + "shasum": "4c623913d54018620f6363fe352415003247c5e0", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.4.11.tgz" + }, + "0.4.13": { + "shasum": "97649b6313f2948abfbf6ea4b20f04767076911b", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.4.13.tgz" + }, + "0.4.14": { + "shasum": "1900a0c9f3ed1947489b1c81fa4582153c82062b", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.4.14.tgz" + }, + "0.4.15": { + "shasum": "1692fabfc2221bf5e4c49bfdc897fea488083a48", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.4.15.tgz" + }, + "0.4.16": { + "shasum": "e20e5e3474671b466ee7aabfaed56d945246f0aa", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.4.16.tgz" + }, + "0.4.17": { + "shasum": "2d4e7854c5d934f4f902ef1b14a756ce9160a9a5", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.4.17.tgz" + }, + "0.4.18": { + "shasum": "0204c5f57dcf5ed0bece09c0d4da742082e76bbe", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.4.18.tgz" + }, + "0.4.19": { + "shasum": "ae517262ed76af3fc39f3e4349c6a87a4a27cf5d", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.4.19.tgz" + }, + "0.4.20": { + "shasum": "43837918f5d40c108a2b3105f65eaf14e3562881", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.4.20.tgz" + }, + "0.4.21": { + "shasum": "0447785d558fc9b8ad4528e3ee77694cfa9d04f1", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.4.21.tgz" + }, + "0.4.22": { + "shasum": "a54189e289502bdc8a14cf07c5952aab7fd466b6", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.4.22.tgz" + }, + "0.4.23": { + "shasum": "5f22185d808537deec3cf0c35cc5853edf53dfde", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.4.23.tgz" + }, + "0.4.24": { + "shasum": "1080612e4db945e5b1decf084c91a83e7677dc87", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.4.24.tgz" + }, + "0.4.25": { + "shasum": "f7e0f41376e5d1197e03d6a1dd0c6c50757b826a", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.4.25.tgz" + }, + "0.4.26": { + "shasum": "a19a80d3dc89bede494b48c8039ca9a291173f5c", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.4.26.tgz" + }, + "0.4.27": { + "shasum": "165a1a8f243c9205b0820fc4609019e1dab867e4", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.4.27.tgz" + }, + "0.4.28": { + "shasum": "d4defb729437b90752c8464bf331691b739bcec1", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.4.28.tgz" + }, + "0.4.29": { + "shasum": "f2d6a1a975c4993f74ce723ba649c47c94f001b0", + "tarball": "http://registry.npmjs.org/swiz/-/swiz-0.4.29.tgz" + } + }, + "url": "http://registry.npmjs.org/swiz/" + }, + "swizec-bitly": { + "name": "swizec-bitly", + "description": "A Bit.ly API library for Node.JS; forked to help with install until original is fixed", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "swizec", + "email": "swizec@swizec.com" + } + ], + "time": { + "modified": "2011-06-28T18:35:52.845Z", + "created": "2011-06-28T18:35:52.467Z", + "1.0.1": "2011-06-28T18:35:52.845Z" + }, + "author": { + "name": "Tane Piper", + "email": "github@tanepiper.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Swizec/node-bitly.git" + }, + "versions": { + "1.0.1": "http://registry.npmjs.org/swizec-bitly/1.0.1" + }, + "dist": { + "1.0.1": { + "shasum": "b7a1be0e4e5b904e6a1acbe8137822d9e4e0e6b4", + "tarball": "http://registry.npmjs.org/swizec-bitly/-/swizec-bitly-1.0.1.tgz" + } + }, + "keywords": [ + "bitly", + "urls", + "url shortner", + "url expander" + ], + "url": "http://registry.npmjs.org/swizec-bitly/" + }, + "sws": { + "name": "sws", + "description": "An instant Static Web Server (for static content). Actually just a command line runner for connect.[static|staticProvider].", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "bengl", + "email": "bryan@bryanenglish.com" + } + ], + "time": { + "modified": "2011-03-24T02:06:29.724Z", + "created": "2011-03-14T05:39:20.796Z", + "0.0.1": "2011-03-14T05:39:20.969Z", + "0.0.2": "2011-03-24T02:06:29.724Z" + }, + "author": { + "name": "Bryan English", + "email": "bryan@bryanenglish.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/sws/0.0.1", + "0.0.2": "http://registry.npmjs.org/sws/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "a222b67497a15fb95514a81d617e81f538ad8de4", + "tarball": "http://registry.npmjs.org/sws/-/sws-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "902b6503a77535aa15c1f8f77d7b98872f2812d1", + "tarball": "http://registry.npmjs.org/sws/-/sws-0.0.2.tgz" + } + }, + "keywords": [ + "web", + "server", + "static" + ], + "url": "http://registry.npmjs.org/sws/" + }, + "sylvester": { + "name": "sylvester", + "description": "node.js implementation of James Coglan's \"Sylvester\" matrix math library.", + "dist-tags": { + "latest": "0.0.10" + }, + "readme": "\nnode-sylvester\n==============\n\nnode.js implementation of James Coglan's \"Sylvester\" matrix math library.\nThe original project can be found at http://sylvester.jcoglan.com/\n\nThis project is maintained by Chris Umbel (http://www.chrisumbel.com)\n\nLicense\n=======\n\nThis project is released under The MIT License\n\nCopyright (c) 2011, Chris Umbel, James Coglan\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n", + "maintainers": [ + { + "name": "chrisumbel", + "email": "chris@chrisumbel.com" + } + ], + "time": { + "modified": "2011-12-12T01:16:19.256Z", + "created": "2011-11-06T18:02:19.385Z", + "0.0.1": "2011-11-06T18:02:20.178Z", + "0.0.2": "2011-11-06T19:36:16.483Z", + "0.0.3": "2011-11-09T02:13:35.249Z", + "0.0.4": "2011-11-11T01:33:07.742Z", + "0.0.5": "2011-11-24T12:28:47.273Z", + "0.0.7": "2011-11-24T22:43:40.787Z", + "0.0.8": "2011-11-26T20:57:04.207Z", + "0.0.9": "2011-12-11T16:54:24.637Z", + "0.0.10": "2011-12-12T01:16:19.256Z" + }, + "author": { + "name": "Chris Umbel", + "email": "chris@chrisumbel.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/sylvester/0.0.1", + "0.0.2": "http://registry.npmjs.org/sylvester/0.0.2", + "0.0.3": "http://registry.npmjs.org/sylvester/0.0.3", + "0.0.4": "http://registry.npmjs.org/sylvester/0.0.4", + "0.0.5": "http://registry.npmjs.org/sylvester/0.0.5", + "0.0.7": "http://registry.npmjs.org/sylvester/0.0.7", + "0.0.8": "http://registry.npmjs.org/sylvester/0.0.8", + "0.0.9": "http://registry.npmjs.org/sylvester/0.0.9", + "0.0.10": "http://registry.npmjs.org/sylvester/0.0.10" + }, + "dist": { + "0.0.1": { + "shasum": "b4feee1d2efe40f0014f4bcc3f87354285948112", + "tarball": "http://registry.npmjs.org/sylvester/-/sylvester-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "420af92ac7d8da18a4fc5ccf41cb6e6e7fb21a11", + "tarball": "http://registry.npmjs.org/sylvester/-/sylvester-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "b52e6bcbb16c4908b5741cf418e5ec0d93a0373b", + "tarball": "http://registry.npmjs.org/sylvester/-/sylvester-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "27abab1984bd82c34487db87509551e65f765757", + "tarball": "http://registry.npmjs.org/sylvester/-/sylvester-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "dea94bddd0d1a7ea2dd36f6853be534b9136f252", + "tarball": "http://registry.npmjs.org/sylvester/-/sylvester-0.0.5.tgz" + }, + "0.0.7": { + "shasum": "f2aad87d643dbac4b519745fdbc2caed442a193e", + "tarball": "http://registry.npmjs.org/sylvester/-/sylvester-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "e61dde0a2d93193d38b663afdd92a12da2e80b86", + "tarball": "http://registry.npmjs.org/sylvester/-/sylvester-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "97cdb7651550bb99a56295065b507e491a75b897", + "tarball": "http://registry.npmjs.org/sylvester/-/sylvester-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "8a1bcd0b4fa3290bd590bb5b7b41b979ce02a577", + "tarball": "http://registry.npmjs.org/sylvester/-/sylvester-0.0.10.tgz" + } + }, + "keywords": [ + "matrix", + "vector", + "linear", + "line", + "algebra", + "matrices" + ], + "url": "http://registry.npmjs.org/sylvester/" + }, + "symbie": { + "name": "symbie", + "description": "Framework for web-sites running on the client", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "samuraijack", + "email": "nickolay8@gmail.com" + } + ], + "time": { + "modified": "2011-01-20T11:29:37.888Z", + "created": "2011-01-20T10:31:55.198Z", + "0.0.1": "2011-01-20T10:31:55.966Z", + "0.0.2": "2011-01-20T11:29:37.888Z" + }, + "author": { + "name": "Nickolay Platonov", + "email": "nplatonov@cpan.org" + }, + "repository": { + "web": "http://github.com/SamuraiJack/Symbie/tree", + "url": "git://github.com/SamuraiJack/Symbie.git", + "type": "git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/symbie/0.0.1", + "0.0.2": "http://registry.npmjs.org/symbie/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "5f8c78243c0d13eb88ea1aacb5dd3c1cb11a4e0f", + "tarball": "http://registry.npmjs.org/symbie/-/symbie-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "54239988b20d5330a016135169e6d1e80a4a11c3", + "tarball": "http://registry.npmjs.org/symbie/-/symbie-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/symbie/" + }, + "symbox": { + "name": "symbox", + "description": "Simplifies symlinking folders in Dropbox", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "ritch", + "email": "skawful@gmail.com" + } + ], + "time": { + "modified": "2011-06-23T05:49:14.171Z", + "created": "2011-06-22T08:25:26.624Z", + "0.0.0": "2011-06-22T08:25:27.249Z", + "0.0.1": "2011-06-23T05:49:14.171Z" + }, + "author": { + "name": "Ritchie Martori" + }, + "repository": { + "type": "git", + "url": "git://github.com/ritch/symbox.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/symbox/0.0.0", + "0.0.1": "http://registry.npmjs.org/symbox/0.0.1" + }, + "dist": { + "0.0.0": { + "shasum": "cb3adb7f37a8a2da552bdd8ffd63ced8b6845329", + "tarball": "http://registry.npmjs.org/symbox/-/symbox-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "88d4ccdd667951d7bc22e381d7d8de9ba7eb44cb", + "tarball": "http://registry.npmjs.org/symbox/-/symbox-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/symbox/" + }, + "synapse": { + "name": "synapse", + "description": "An HTTP-based event framework", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "ceineke", + "email": "npm@chriseineke.com" + } + ], + "time": { + "modified": "2011-09-18T06:25:55.626Z", + "created": "2011-09-18T06:25:55.041Z", + "0.0.2": "2011-09-18T06:25:55.626Z" + }, + "author": { + "name": "Chris Eineke", + "email": "chris@chriseineke.com", + "url": "http://chriseineke.com/" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/synapse/0.0.2" + }, + "dist": { + "0.0.2": { + "shasum": "3354385ec4f85ca1a28a766cb842810feadac495", + "tarball": "http://registry.npmjs.org/synapse/-/synapse-0.0.2.tgz" + } + }, + "keywords": [ + "synapse", + "event", + "framework", + "http", + "rest", + "restful" + ], + "url": "http://registry.npmjs.org/synapse/" + }, + "sync": { + "name": "sync", + "description": "Library that makes simple to run asynchronous functions in synchronous manner, using node-fibers.", + "dist-tags": { + "latest": "0.1.9beta3" + }, + "maintainers": [ + { + "name": "octave", + "email": "chinsay@gmail.com" + } + ], + "time": { + "modified": "2011-09-24T13:15:39.536Z", + "created": "2011-03-11T17:13:53.096Z", + "0.0.1": "2011-03-11T17:13:53.557Z", + "0.1.0": "2011-03-28T04:32:30.440Z", + "0.1.1": "2011-03-28T12:34:28.094Z", + "0.1.3": "2011-03-31T09:56:45.285Z", + "0.1.4": "2011-03-31T10:32:14.983Z", + "0.1.5": "2011-03-31T11:28:20.220Z", + "0.1.6": "2011-04-08T13:13:17.551Z", + "0.1.7": "2011-05-04T07:52:47.313Z", + "0.1.8": "2011-06-17T13:22:34.052Z", + "0.1.9beta": "2011-06-24T12:31:22.481Z", + "0.1.9beta2": "2011-08-04T11:37:19.618Z", + "0.1.9beta3": "2011-09-14T13:27:16.218Z" + }, + "author": { + "name": "Yuriy Bogdanov", + "email": "chinsay@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/sync/0.0.1", + "0.1.0": "http://registry.npmjs.org/sync/0.1.0", + "0.1.1": "http://registry.npmjs.org/sync/0.1.1", + "0.1.3": "http://registry.npmjs.org/sync/0.1.3", + "0.1.4": "http://registry.npmjs.org/sync/0.1.4", + "0.1.5": "http://registry.npmjs.org/sync/0.1.5", + "0.1.6": "http://registry.npmjs.org/sync/0.1.6", + "0.1.7": "http://registry.npmjs.org/sync/0.1.7", + "0.1.9beta": "http://registry.npmjs.org/sync/0.1.9beta", + "0.1.8": "http://registry.npmjs.org/sync/0.1.8", + "0.1.9beta2": "http://registry.npmjs.org/sync/0.1.9beta2", + "0.1.9beta3": "http://registry.npmjs.org/sync/0.1.9beta3" + }, + "dist": { + "0.0.1": { + "shasum": "f305289800eb9bf6f7a8eeaee71705e96a0d36d6", + "tarball": "http://registry.npmjs.org/sync/-/sync-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "b936331080a9176bf66e02e9e35129a43a668410", + "tarball": "http://registry.npmjs.org/sync/-/sync-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "5ed4ab39eca7f88302652579f62c1611e126d836", + "tarball": "http://registry.npmjs.org/sync/-/sync-0.1.1.tgz" + }, + "0.1.3": { + "shasum": "ddfebdc6b86f4f1afc5d44be6b94b7ba9478939f", + "tarball": "http://registry.npmjs.org/sync/-/sync-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "e0ae0a3ad0233439aa47e6f1c3b74513c165e9cb", + "tarball": "http://registry.npmjs.org/sync/-/sync-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "46781ff7347dfb8f5528f4845256788011cbbdd6", + "tarball": "http://registry.npmjs.org/sync/-/sync-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "ebaf354bebca360487a1ed020df0cd4d002cf167", + "tarball": "http://registry.npmjs.org/sync/-/sync-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "e743ba4b644f150f2b8090539b55bd06c3b53231", + "tarball": "http://registry.npmjs.org/sync/-/sync-0.1.7.tgz" + }, + "0.1.9beta": { + "shasum": "77b15039ed0f491949b0bd0b3a099443a921f8f6", + "tarball": "http://registry.npmjs.org/sync/-/sync-0.1.9beta.tgz" + }, + "0.1.8": { + "shasum": "ac0fa41ef2e540813d92b17e71d4d354efe1497c", + "tarball": "http://registry.npmjs.org/sync/-/sync-0.1.8.tgz" + }, + "0.1.9beta2": { + "shasum": "31977bea483b834f9cf0b6decf9957c7fb85a6c9", + "tarball": "http://registry.npmjs.org/sync/-/sync-0.1.9beta2.tgz" + }, + "0.1.9beta3": { + "shasum": "9bb3d7f88b5347f81dc2eca0d63fceddbc727ea4", + "tarball": "http://registry.npmjs.org/sync/-/sync-0.1.9beta3.tgz" + } + }, + "url": "http://registry.npmjs.org/sync/" + }, + "synchro": { + "name": "synchro", + "description": "execute asynchronous callbacks in sequence or wait on a group of async functions", + "dist-tags": { + "latest": "0.0.9" + }, + "maintainers": [ + { + "name": "noodlehaus", + "email": "jesus.domingo@gmail.com" + } + ], + "time": { + "modified": "2011-11-07T16:14:57.165Z", + "created": "2011-08-23T05:22:51.017Z", + "0.0.3": "2011-08-23T05:23:14.406Z", + "0.0.4": "2011-08-25T05:48:41.578Z", + "0.0.5": "2011-08-25T14:18:56.486Z", + "0.0.6": "2011-09-08T09:46:14.770Z", + "0.0.7": "2011-09-15T05:47:11.451Z", + "0.0.8": "2011-09-15T05:50:59.797Z", + "0.0.9": "2011-11-07T16:14:57.165Z" + }, + "author": { + "name": "Jesus A. Domingo", + "email": "jesus.domingo@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/noodlehaus/node-synchro.git" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/synchro/0.0.3", + "0.0.4": "http://registry.npmjs.org/synchro/0.0.4", + "0.0.5": "http://registry.npmjs.org/synchro/0.0.5", + "0.0.6": "http://registry.npmjs.org/synchro/0.0.6", + "0.0.7": "http://registry.npmjs.org/synchro/0.0.7", + "0.0.8": "http://registry.npmjs.org/synchro/0.0.8", + "0.0.9": "http://registry.npmjs.org/synchro/0.0.9" + }, + "dist": { + "0.0.3": { + "shasum": "332252840ed9314aa26d360f6487e25db6b1bbfc", + "tarball": "http://registry.npmjs.org/synchro/-/synchro-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "11831af25ed782482c4abac43c625c7f2ac09539", + "tarball": "http://registry.npmjs.org/synchro/-/synchro-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "0285f3cdb9f0a384cc9ad536a4c576aed8140fe6", + "tarball": "http://registry.npmjs.org/synchro/-/synchro-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "8536fc03c3a2ebbe3acfc7644a6485fb8d8cc19f", + "tarball": "http://registry.npmjs.org/synchro/-/synchro-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "cd3ded61f559c4040d56468dba8b67293be1188c", + "tarball": "http://registry.npmjs.org/synchro/-/synchro-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "c608521e9d8587d64ea03bbea3295003c5783c25", + "tarball": "http://registry.npmjs.org/synchro/-/synchro-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "36f707c9a13356f72ec0622d058856257d250e5c", + "tarball": "http://registry.npmjs.org/synchro/-/synchro-0.0.9.tgz" + } + }, + "keywords": [ + "chain", + "asynchronous", + "synchronous", + "sequence" + ], + "url": "http://registry.npmjs.org/synchro/" + }, + "synchronous": { + "name": "synchronous", + "description": "Synchronous Node.JS", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "cohara87", + "email": "cohara87@gmail.com" + } + ], + "time": { + "modified": "2011-05-26T10:54:08.786Z", + "created": "2011-05-24T11:50:34.736Z", + "0.1.0": "2011-05-24T11:50:36.391Z", + "0.1.1": "2011-05-26T09:14:07.469Z", + "0.1.2": "2011-05-26T10:54:08.786Z" + }, + "author": { + "name": "Chris O'Hara", + "email": "cohara87@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/chriso/synchronous.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/synchronous/0.1.0", + "0.1.1": "http://registry.npmjs.org/synchronous/0.1.1", + "0.1.2": "http://registry.npmjs.org/synchronous/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "911d4b6f2d61cbb9f2d36a8cbc39a175e6989fa4", + "tarball": "http://registry.npmjs.org/synchronous/-/synchronous-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "6e349989767021f9e6904fb8f45885cb4e7fdfcb", + "tarball": "http://registry.npmjs.org/synchronous/-/synchronous-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "32a5722a0609522d2b3c281cf15c234e472b175e", + "tarball": "http://registry.npmjs.org/synchronous/-/synchronous-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/synchronous/" + }, + "syncler": { + "name": "syncler", + "description": "Some clever yet compact description", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "samuraijack", + "email": "nickolay8@gmail.com" + } + ], + "time": { + "modified": "2011-03-18T12:43:02.543Z", + "created": "2011-03-18T12:43:01.809Z", + "0.0.1": "2011-03-18T12:43:02.543Z" + }, + "author": { + "name": "Nickolay Platonov", + "email": "nplatonov@cpan.org" + }, + "repository": { + "web": "http://github.com/SamuraiJack/Syncler/tree", + "url": "git://github.com/SamuraiJack/Syncler.git", + "type": "git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/syncler/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "cf5b7dc8d78b9f756163a1facb976435153127a5", + "tarball": "http://registry.npmjs.org/syncler/-/syncler-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/syncler/" + }, + "syncrepl": { + "name": "syncrepl", + "description": "REPL that makes doing async calls easier", + "dist-tags": { + "latest": "0.4.0" + }, + "maintainers": [ + { + "name": "wadey", + "email": "wade@wades.im" + } + ], + "time": { + "modified": "2011-03-10T19:43:19.688Z", + "created": "2011-03-10T19:43:03.034Z", + "0.2.0": "2011-03-10T19:43:03.326Z", + "0.4.0": "2011-03-10T19:43:19.688Z" + }, + "author": { + "name": "Wade Simmons", + "email": "wade@wades.im", + "url": "http://wades.im/mons" + }, + "repository": { + "type": "git", + "url": "git://github.com/wadey/node-syncrepl.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/syncrepl/0.2.0", + "0.4.0": "http://registry.npmjs.org/syncrepl/0.4.0" + }, + "dist": { + "0.2.0": { + "shasum": "e79116ee8e52ca0b7b8425c76aadc22f6d6d1725", + "tarball": "http://registry.npmjs.org/syncrepl/-/syncrepl-0.2.0.tgz" + }, + "0.4.0": { + "shasum": "cb6bf7f8103e586f296eb7f745b6419987b63c51", + "tarball": "http://registry.npmjs.org/syncrepl/-/syncrepl-0.4.0.tgz" + } + }, + "keywords": [ + "sync", + "repl" + ], + "url": "http://registry.npmjs.org/syncrepl/" + }, + "synct": { + "name": "synct", + "description": "simple test framework for syncronous tests", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-08-09T09:02:14.165Z", + "created": "2011-08-09T09:02:11.085Z", + "1.0.0": "2011-08-09T09:02:14.165Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com", + "url": "http://bit.ly/dominictarr" + }, + "repository": { + "type": "git", + "url": "git://github.com/dominictarr/synct.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/synct/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "19e8f5501709767d645788b3e7f25e14ff8fc374", + "tarball": "http://registry.npmjs.org/synct/-/synct-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/synct/" + }, + "syndicate": { + "name": "syndicate", + "description": "A peer-ish pubsub-ish module for updates over http, tcp, and udp", + "dist-tags": { + "latest": "0.8.1" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-12-09T21:02:37.356Z", + "created": "2011-09-02T23:08:10.742Z", + "0.6.0": "2011-09-02T23:08:11.850Z", + "0.6.1": "2011-09-13T21:41:25.374Z", + "0.6.2": "2011-09-20T16:30:22.895Z", + "0.6.3": "2011-10-04T23:19:22.651Z", + "0.6.4": "2011-10-07T21:19:28.839Z", + "0.6.5": "2011-11-11T22:21:11.878Z", + "0.7.0": "2011-12-02T00:25:15.857Z", + "0.7.1": "2011-12-02T23:02:53.037Z", + "0.7.2": "2011-12-05T21:59:54.028Z", + "0.7.3": "2011-12-08T22:51:09.868Z", + "0.7.4": "2011-12-09T00:11:50.059Z", + "0.8.0": "2011-12-09T20:57:36.597Z", + "0.8.1": "2011-12-09T21:02:37.356Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com", + "url": "http://coolaj86.info" + }, + "repository": { + "type": "git", + "url": "git://github.com/coolaj86/node-syndicate.git" + }, + "versions": { + "0.6.0": "http://registry.npmjs.org/syndicate/0.6.0", + "0.6.1": "http://registry.npmjs.org/syndicate/0.6.1", + "0.6.2": "http://registry.npmjs.org/syndicate/0.6.2", + "0.6.3": "http://registry.npmjs.org/syndicate/0.6.3", + "0.6.4": "http://registry.npmjs.org/syndicate/0.6.4", + "0.6.5": "http://registry.npmjs.org/syndicate/0.6.5", + "0.7.0": "http://registry.npmjs.org/syndicate/0.7.0", + "0.7.1": "http://registry.npmjs.org/syndicate/0.7.1", + "0.7.2": "http://registry.npmjs.org/syndicate/0.7.2", + "0.7.3": "http://registry.npmjs.org/syndicate/0.7.3", + "0.7.4": "http://registry.npmjs.org/syndicate/0.7.4", + "0.8.0": "http://registry.npmjs.org/syndicate/0.8.0", + "0.8.1": "http://registry.npmjs.org/syndicate/0.8.1" + }, + "dist": { + "0.6.0": { + "shasum": "600518a8de3473e03d5f7112956327c15cfb8713", + "tarball": "http://registry.npmjs.org/syndicate/-/syndicate-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "0a96c41707d50f2acf0f376504d33cb925a03765", + "tarball": "http://registry.npmjs.org/syndicate/-/syndicate-0.6.1.tgz" + }, + "0.6.2": { + "shasum": "fe0dad24248f4eb153fe260621e22b5c4d5e3207", + "tarball": "http://registry.npmjs.org/syndicate/-/syndicate-0.6.2.tgz" + }, + "0.6.3": { + "shasum": "35104a45bd6dd845389dde425503c6c23b94e45c", + "tarball": "http://registry.npmjs.org/syndicate/-/syndicate-0.6.3.tgz" + }, + "0.6.4": { + "shasum": "0de73e31c7e9e05f24ea0df5599ef810e4c0acf3", + "tarball": "http://registry.npmjs.org/syndicate/-/syndicate-0.6.4.tgz" + }, + "0.6.5": { + "shasum": "d362b0faca802f072ae70780b6d353dd96118300", + "tarball": "http://registry.npmjs.org/syndicate/-/syndicate-0.6.5.tgz" + }, + "0.7.0": { + "shasum": "0e92ac7f8d2362f852f8627edd4b954699d5b653", + "tarball": "http://registry.npmjs.org/syndicate/-/syndicate-0.7.0.tgz" + }, + "0.7.1": { + "shasum": "54b571a891dfd1595d5835e3acc7988106c475ad", + "tarball": "http://registry.npmjs.org/syndicate/-/syndicate-0.7.1.tgz" + }, + "0.7.2": { + "shasum": "ede8ec6e4619bbb35a5189652e0347d863f529c1", + "tarball": "http://registry.npmjs.org/syndicate/-/syndicate-0.7.2.tgz" + }, + "0.7.3": { + "shasum": "aa4943a4dc363f59583de5a1742534e436409521", + "tarball": "http://registry.npmjs.org/syndicate/-/syndicate-0.7.3.tgz" + }, + "0.7.4": { + "shasum": "eac906712e9db687a931bb0fa3d5d82fd2cbe781", + "tarball": "http://registry.npmjs.org/syndicate/-/syndicate-0.7.4.tgz" + }, + "0.8.0": { + "shasum": "6c7e8d8d53854f2ff5bc05a10241b2b17515d9ea", + "tarball": "http://registry.npmjs.org/syndicate/-/syndicate-0.8.0.tgz" + }, + "0.8.1": { + "shasum": "2eb55d65f4e627bd3ff7ef8261065ed1abe7f10e", + "tarball": "http://registry.npmjs.org/syndicate/-/syndicate-0.8.1.tgz" + } + }, + "url": "http://registry.npmjs.org/syndicate/" + }, + "synergy": { + "name": "synergy", + "description": "A web framework based on Knockout.js and Node.js", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "teh_senaus", + "email": "sean@sdmworld.co.uk" + } + ], + "time": { + "modified": "2011-10-01T12:54:24.931Z", + "created": "2011-09-26T22:23:01.493Z", + "0.1.1": "2011-09-26T22:23:02.004Z", + "0.1.2": "2011-10-01T12:07:33.395Z", + "0.1.3": "2011-10-01T12:54:24.931Z" + }, + "author": { + "name": "Sean Micklethwaite" + }, + "repository": { + "type": "git", + "url": "git://github.com/tehsenaus/synergy.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/synergy/0.1.1", + "0.1.2": "http://registry.npmjs.org/synergy/0.1.2", + "0.1.3": "http://registry.npmjs.org/synergy/0.1.3" + }, + "dist": { + "0.1.1": { + "shasum": "f7cda9e1a769baa85fe0a114c92a3b361cbf2bab", + "tarball": "http://registry.npmjs.org/synergy/-/synergy-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "b17f4d4d386e070094433527caa8fc639f45cff7", + "tarball": "http://registry.npmjs.org/synergy/-/synergy-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "af6be6502be6ee11b150df565756059c5566fd10", + "tarball": "http://registry.npmjs.org/synergy/-/synergy-0.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/synergy/" + }, + "sysalert": { + "name": "sysalert", + "description": "system watcher", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "architectd", + "email": "craig.j.condon@gmail.com" + } + ], + "time": { + "modified": "2011-11-30T18:55:28.883Z", + "created": "2011-10-25T02:29:05.743Z", + "0.0.1": "2011-10-25T02:29:06.436Z", + "0.0.2": "2011-11-30T18:55:28.883Z" + }, + "author": { + "name": "Craig Condon" + }, + "repository": { + "type": "git", + "url": "git://github.com/crcn/sysalert.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/sysalert/0.0.1", + "0.0.2": "http://registry.npmjs.org/sysalert/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "9575cd02a35f35b6559802b3b5a9812f476878b8", + "tarball": "http://registry.npmjs.org/sysalert/-/sysalert-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "fdd5ed378ab55cd29ae9dfa62405cc42b8656d14", + "tarball": "http://registry.npmjs.org/sysalert/-/sysalert-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/sysalert/" + }, + "sysalert-photomotr": { + "name": "sysalert-photomotr", + "description": "system watcher", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "architectd", + "email": "craig.j.condon@gmail.com" + } + ], + "time": { + "modified": "2011-10-25T02:18:41.338Z", + "created": "2011-10-25T02:18:40.682Z", + "0.0.1": "2011-10-25T02:18:41.338Z" + }, + "author": { + "name": "Craig Condon" + }, + "repository": { + "type": "git", + "url": "git://github.com/spiceapps/sysalert.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/sysalert-photomotr/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "a89b813079793a5244a3f5fb597ca6cea7e28936", + "tarball": "http://registry.npmjs.org/sysalert-photomotr/-/sysalert-photomotr-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/sysalert-photomotr/" + }, + "syslog": { + "name": "syslog", + "description": "Syslog-ng TCP client, with basic fault-tolerance.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "cloudhead", + "email": "self@cloudhead.net" + } + ], + "time": { + "modified": "2011-04-10T22:13:50.786Z", + "created": "2011-01-28T21:41:47.032Z", + "0.1.0": "2011-01-28T21:41:47.161Z", + "0.1.1": "2011-04-10T22:13:50.786Z" + }, + "author": { + "name": "Alexis Sellier", + "email": "self@cloudhead.net" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/syslog/0.1.0", + "0.1.1": "http://registry.npmjs.org/syslog/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "ff46bc7e8755ac9747a77d453a70a1f08ba7d58d", + "tarball": "http://registry.npmjs.org/syslog/-/syslog-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "675d8210898e785fd14c831de2d9a6aec0a35cbd", + "tarball": "http://registry.npmjs.org/syslog/-/syslog-0.1.1.tgz" + } + }, + "keywords": [ + "syslog", + "logger" + ], + "url": "http://registry.npmjs.org/syslog/" + }, + "syslog-node": { + "name": "syslog-node", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "cconstantine", + "email": "cconstan@gmail.com" + } + ], + "time": { + "modified": "2011-08-12T23:02:57.238Z", + "created": "2011-08-01T08:24:45.052Z", + "0.0.1": "2011-08-01T08:24:46.000Z", + "0.0.2": "2011-08-01T08:29:12.449Z", + "0.0.3": "2011-08-01T08:34:50.845Z", + "0.0.4": "2011-08-01T08:39:37.627Z", + "0.0.5": "2011-08-01T08:41:21.051Z", + "0.0.6": "2011-08-01T18:38:15.401Z", + "0.1.0": "2011-08-12T23:02:57.238Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/cconstantine/syslog-node.git" + }, + "description": "A syslog server and realtime web view of syslog messages", + "versions": { + "0.0.1": "http://registry.npmjs.org/syslog-node/0.0.1", + "0.0.2": "http://registry.npmjs.org/syslog-node/0.0.2", + "0.0.3": "http://registry.npmjs.org/syslog-node/0.0.3", + "0.0.4": "http://registry.npmjs.org/syslog-node/0.0.4", + "0.0.5": "http://registry.npmjs.org/syslog-node/0.0.5", + "0.0.6": "http://registry.npmjs.org/syslog-node/0.0.6", + "0.1.0": "http://registry.npmjs.org/syslog-node/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "d38916753c0670173b3580a247cd0463924180fa", + "tarball": "http://registry.npmjs.org/syslog-node/-/syslog-node-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "8b26a1a2d1c636e496356da5bfd06ced47f6d7f8", + "tarball": "http://registry.npmjs.org/syslog-node/-/syslog-node-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "d31b9c5716078ae1153d01a5028c5c754d863455", + "tarball": "http://registry.npmjs.org/syslog-node/-/syslog-node-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "c928d01f1d10a751a2ae08ebdebe972343c0f0cd", + "tarball": "http://registry.npmjs.org/syslog-node/-/syslog-node-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "21c5ffbc36403f99fe86f226cc228a2796025c24", + "tarball": "http://registry.npmjs.org/syslog-node/-/syslog-node-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "65f3282af9867a021088a6ad37dace32398c35b6", + "tarball": "http://registry.npmjs.org/syslog-node/-/syslog-node-0.0.6.tgz" + }, + "0.1.0": { + "shasum": "b0179478423cc7faf5bca5efc81825c608862f94", + "tarball": "http://registry.npmjs.org/syslog-node/-/syslog-node-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/syslog-node/" + }, + "syslogd-nodejs": { + "name": "syslogd-nodejs", + "description": "syslogd in node.js with logging to cli, file, mongodb and via websockets", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "crahles", + "email": "christoph@rahles.de" + } + ], + "time": { + "modified": "2011-10-01T22:44:17.417Z", + "created": "2011-09-29T14:00:04.835Z", + "0.0.1": "2011-09-29T14:00:06.396Z", + "0.0.2": "2011-10-01T16:06:46.360Z", + "0.0.3": "2011-10-01T21:05:11.010Z", + "0.0.4": "2011-10-01T22:44:17.417Z" + }, + "author": { + "name": "Christoph Rahles", + "email": "christoph@rahles.de", + "url": "http://github.com/crahles" + }, + "repository": { + "type": "git", + "url": "git://github.com/crahles/syslogd-nodejs.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/syslogd-nodejs/0.0.1", + "0.0.2": "http://registry.npmjs.org/syslogd-nodejs/0.0.2", + "0.0.3": "http://registry.npmjs.org/syslogd-nodejs/0.0.3", + "0.0.4": "http://registry.npmjs.org/syslogd-nodejs/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "81d805fd4e0dd768c26ac8b64a3c9adadf0e2084", + "tarball": "http://registry.npmjs.org/syslogd-nodejs/-/syslogd-nodejs-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "4092b521e351cd524ae5fd72c6b36e311777b74a", + "tarball": "http://registry.npmjs.org/syslogd-nodejs/-/syslogd-nodejs-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "8d1e72ebf8ec4c95c239b2c53fe0aa88a094b1bc", + "tarball": "http://registry.npmjs.org/syslogd-nodejs/-/syslogd-nodejs-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "561e39722da048a3f7bd2669eccad6b300cb6d2c", + "tarball": "http://registry.npmjs.org/syslogd-nodejs/-/syslogd-nodejs-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/syslogd-nodejs/" + }, + "system": { + "name": "system", + "description": "CommonJS System/1.0 for nodejs", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "gozala", + "email": "rfobic@gmail.com" + } + ], + "repository": { + "type": "git", + "url": "git://github.com/Gozala/system-commonjs.git" + }, + "time": { + "modified": "2011-02-24T16:19:36.503Z", + "created": "2011-02-02T13:24:34.770Z", + "0.0.1": "2011-02-02T13:24:34.770Z", + "0.0.2": "2011-02-02T13:24:34.770Z", + "0.0.3": "2011-02-02T13:24:34.770Z", + "0.0.4": "2011-02-02T13:24:34.770Z", + "0.0.5": "2011-02-02T13:24:34.770Z", + "0.0.6": "2011-02-16T23:54:56.220Z", + "0.1.0": "2011-02-24T16:19:36.503Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/system/0.0.1", + "0.0.2": "http://registry.npmjs.org/system/0.0.2", + "0.0.3": "http://registry.npmjs.org/system/0.0.3", + "0.0.4": "http://registry.npmjs.org/system/0.0.4", + "0.0.5": "http://registry.npmjs.org/system/0.0.5", + "0.0.6": "http://registry.npmjs.org/system/0.0.6", + "0.1.0": "http://registry.npmjs.org/system/0.1.0" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/system/-/system-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/system/-/system-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/system/-/system-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://packages:5984/system/-/system-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "05ee384f98b59eda3fbe01e320427ea2d30207fb", + "tarball": "http://registry.npmjs.org/system/-/system-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "d3af99420b288b4b7cb263f254cb92456af290aa", + "tarball": "http://registry.npmjs.org/system/-/system-0.0.6.tgz" + }, + "0.1.0": { + "shasum": "8bb2b9af10b1c6c75f40a6d016a98bf0250fd1ad", + "tarball": "http://registry.npmjs.org/system/-/system-0.1.0.tgz" + } + }, + "keywords": [ + "node", + "commonjs", + "system" + ], + "url": "http://registry.npmjs.org/system/" + }, + "systemd": { + "name": "systemd", + "description": "systemd socket activation support for Node.js", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "rubenv", + "email": "ruben@savanne.be" + } + ], + "time": { + "modified": "2011-10-16T15:08:20.138Z", + "created": "2011-10-16T09:44:58.892Z", + "0.0.1": "2011-10-16T09:45:00.465Z", + "0.0.2": "2011-10-16T15:08:20.139Z" + }, + "author": { + "name": "Ruben Vermeersch", + "email": "ruben@savanne.be" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/systemd/0.0.1", + "0.0.2": "http://registry.npmjs.org/systemd/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "bc34787051d27193c2eca0effb76bc702e15b728", + "tarball": "http://registry.npmjs.org/systemd/-/systemd-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "19cf37722216429bb75ab4ffa8d49d597ceb48b6", + "tarball": "http://registry.npmjs.org/systemd/-/systemd-0.0.2.tgz" + } + }, + "keywords": [ + "systemd" + ], + "url": "http://registry.npmjs.org/systemd/" + }, + "taazr-uglify": { + "name": "taazr-uglify", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "unignorant", + "email": "ejhfast@gmail.com" + } + ], + "time": { + "modified": "2011-07-02T21:54:34.107Z", + "created": "2011-06-25T19:08:23.647Z", + "0.0.1": "2011-06-25T19:08:24.158Z", + "0.0.2": "2011-07-02T21:51:36.997Z", + "0.0.3": "2011-07-02T21:54:34.107Z" + }, + "author": { + "name": "Ethan Fast", + "email": "ethan@taazr.com", + "url": "https://www.taazr.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:Taazr/UglifyJS.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/taazr-uglify/0.0.1", + "0.0.2": "http://registry.npmjs.org/taazr-uglify/0.0.2", + "0.0.3": "http://registry.npmjs.org/taazr-uglify/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "dd48e84bcdebcc378b7ea7f0bfc0f6ffdf6e62bf", + "tarball": "http://registry.npmjs.org/taazr-uglify/-/taazr-uglify-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "6b540b2e9afbec5a1c85660cd65883730c41dff5", + "tarball": "http://registry.npmjs.org/taazr-uglify/-/taazr-uglify-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "b46144ed78747369cf73a699e11f0f3faed391f7", + "tarball": "http://registry.npmjs.org/taazr-uglify/-/taazr-uglify-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/taazr-uglify/" + }, + "table": { + "name": "table", + "description": "Node Tables", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "jan.gorman", + "email": "gorman.jan@gmail.com" + } + ], + "time": { + "modified": "2011-02-06T13:57:27.270Z", + "created": "2011-01-03T14:08:20.786Z", + "0.0.2": "2011-01-03T14:08:21.214Z", + "0.0.3": "2011-01-09T16:55:28.084Z", + "0.0.4": "2011-01-18T11:53:43.732Z", + "0.0.5": "2011-02-06T13:57:27.270Z" + }, + "author": { + "name": "Jan Gorman", + "email": "gorman.jan@gmail.com" + }, + "repository": { + "type": "git", + "url": "https://github.com/JanGorman/node-table" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/table/0.0.2", + "0.0.3": "http://registry.npmjs.org/table/0.0.3", + "0.0.4": "http://registry.npmjs.org/table/0.0.4", + "0.0.5": "http://registry.npmjs.org/table/0.0.5" + }, + "dist": { + "0.0.2": { + "shasum": "9b07c399fc4633662ff06364e18688232d917a60", + "tarball": "http://registry.npmjs.org/table/-/table-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "27965d6615f9e2a86ce95c8a10be74b56768f2ac", + "tarball": "http://registry.npmjs.org/table/-/table-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "1e248d0de3be8b0f144244518a49c4946c2d8eba", + "tarball": "http://registry.npmjs.org/table/-/table-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "a7683c1aa10da2465c37c6c6215044d9e34d9e7b", + "tarball": "http://registry.npmjs.org/table/-/table-0.0.5.tgz" + } + }, + "keywords": [ + "table", + "cli", + "text" + ], + "url": "http://registry.npmjs.org/table/" + }, + "tabler": { + "name": "tabler", + "description": "Access relational and NoSQL database backends using a generic SQL-inspired table interface with data integrity checks (SimpleDB and JSON file available)", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "# Tabler: Generic Table Persistence\r\n\r\n# Introduction\r\n\r\nTabler lets Node.js developers interact with a variety of databases, both relational and NoSQL, using a simple SQL-inspired table interface. Using Tabler your application can define tables, specify column data types, and perform insert/select/update/delete operations in a generic manner. Store-specific details are abstracted away so that when you need to switch data stores, your application is ready.\r\n\r\nProject goals:\r\n\r\n- Provide a familiar table interface for non-relational data stores\r\n- Provide data integrity checks for data stores that don't have this built in\r\n- Make it easy to switch data stores\r\n\r\nAlthough there are other projects that abstract away store-specific details for relational/SQL databases, these interfaces are generally too complex to implement in NoSQL datastores. The Tabler interface has been purposely kept very simple so that it can be implemented on top of many types of data stores.\r\n\r\nTabler is Unicode/UTF-8 safe, and so friendly to internationalized apps.\r\n\r\n# A Quick Example\r\n\r\nSee the short illustrative example here: https://github.com/aarong/tabler/blob/master/example.js\r\n\r\n# Available Backends\r\n\r\n## Amazon SimpleDB\r\n- Transparently serializes all data types (offsets and zero-pads numbers, Iso8601 for dates, etc)\r\n- Transparently partitions large columns into multiple SimpleDB attributes\r\n- Transparently iterates on nextTokens for complex queries\r\n- Transparently breaks large write operations into batches to bypass SimpleDB limits\r\n- Limitations: Cannot sort on string columns longer than 1024 bytes because they are partitioned.\r\n \r\n## JSON File\r\n- Convenient for local development\r\n\r\n## More to come\r\n- MySQL\r\n- SQLite\r\n- CouchDb?\r\n- MongoDb?\r\n- Redis?\r\n- Cassandra?\r\n\r\n# Getting Started\r\n\r\nInstall the module using NPM:\r\n\r\n npm install tabler\r\n\r\nCreate a Tabler instance:\r\n\r\n var Tabler = require('tabler'),\r\n tabler = new Tabler(\r\n 'simpledb',\r\n {\r\n accessKeyId: \"123\",\r\n secretAccessKey: \"456\",\r\n domainNamespace: \"tabler\" // All domains used by Tabler are prefixed with this string\r\n }\r\n );\r\n \r\nor\r\n \r\n var Tabler = require('tabler'),\r\n tabler = new Tabler(\r\n 'jsonfile',\r\n {\r\n filename: 'myjsonfile.json'\r\n }\r\n );\r\n \r\nAll the Tabler code that you write after this is completely generic -- you will never have to change it even if you decide to move to a different backend.\r\n\r\n# Defining Your Tables\r\n\r\n tabler.defineTable(\r\n tableName,\r\n fieldDefs,\r\n callback[error]\r\n )\r\n\r\n fieldDefs = {\r\n fieldName: fieldDef,\r\n fieldName: fieldDef,\r\n ...\r\n }\r\n\r\nwhere (for example)\r\n\r\n fieldDef = {\r\n // String query conditions are case sensitive -- have the app create a lower-case\r\n // copy of the column to achieve case insensitivity.\r\n // For strings, passing the null byte \\u0000 is the same as passing a null object.\r\n // About nulls (applies to all data types): For sorting, null is low. Null is not allowed by default.\r\n type: 'string',\r\n nullable: true,\r\n byteLength: 50, // Not the same as character length when using multi-byte UTF-8 characters\r\n pattern: /.*/ // Regex pattern that must be matched (this one allows everything)\r\n };\r\n\r\nFor convenience, you can use the following built-in patterns\r\n\r\ntabler.PATTERNS.ALL - Allow any string\r\ntabler.PATTERNS.PRINTABLE_NO_BREAKS // Printable characters only, line breaks are not allowed\r\ntabler.PATTERNS.PRINTABLE_AND_BREAKS // Printable characters online, line breaks ARE allowed\r\n \r\n... or (for example)\r\n \r\n fieldDef = {\r\n // Numbers can hold any number that Javascript expresses without exponential notation (up to 1e20 roughly)\r\n type: 'number', \r\n nullable: true,\r\n min: -100,\r\n max: 100,\r\n decPlaces: 2\r\n };\r\n\r\nor (for example)\r\n\r\n fieldDef = {\r\n type: 'datetime',\r\n nullable: false\r\n };\r\n\r\nor (for example)\r\n\r\n fieldDef = {\r\n type: 'object',\r\n nullable: true,\r\n byteLength: 1000, // Maximum serialized byte length (JSON is used)\r\n schema: {} // Optional (http://tools.ietf.org/html/draft-zyp-json-schema-02)[JSON Schema object]\r\n };\r\n \r\nImportant note: You need to use defineTable() every time you create your Tabler instance. Once you have written to a table, DO NOT change its definition in any way, as Tabler assumes that your current definition is valid for every row currently in the database and you will have all kinds of problems if it's not. Instead, create a new table and transfer the data (this will be improved in the future). \r\n\r\nTo remove a table and its data you can do:\r\n\r\ntabler.deletetable( // Delete the table and all its data\r\n tableName,\r\n callback[error]\r\n)\r\n\r\n# Reading and Writing Rows\r\n\r\nSee below for definitions of method arguments and output variables. Note that Tabler assigns a unqiue id to every row (a UUID string).\r\n\r\nThe API is designed so that you can apply each operation (insert, select, update, select) to either one row specified by ids, multiple rows specified by an array of ids, or multiple rows specified by a query condtition.\r\n\r\nDue to the limitations some of of the underlying data stores, these operations cannot be guaranteed to be atomic (i.e. if you are performing many writes, a failure could result in some writes taking place and others not).\r\n\r\n## Inserting\r\n\r\n tabler.insertOne(\r\n tableName,\r\n rowWithoutId or rowWithId,\r\n callback[error, rowId]\r\n )\r\n\r\n tabler.insertMulti(\r\n tableName,\r\n rowsWithoutIdArray or rowsWithIdArray,\r\n callback[error, rowIdArray] // Output row IDs same order as input\r\n )\r\n\r\n## Selecting and counting\r\n\r\n tabler.selectOne(\r\n tableName,\r\n fieldNames, // Empty for no fields, null for all fields\r\n rowId,\r\n callback[error, rowWithoutId] // null if row not found\r\n )\r\n\r\n tabler.selectMulti(\r\n tableName,\r\n fieldNames, // Empty array for no fields (checking existence), null for all fields\r\n rowIdArray,\r\n callback[error, rowsWithIdHash] // Rows not found are not included in the hash\r\n )\r\n\r\n tabler.selectQuery(\r\n tableName,\r\n fieldNames, // Empty array for no fields (getting row IDs only), null for all fields\r\n condition,\r\n selectOptions, // Optional\r\n callback[error, rowsWithIdArray]\r\n )\r\n\r\n tabler.countQuery(\r\n tableName,\r\n condition,\r\n callback[error, numRows]\r\n )\r\n\r\n## Updating\r\n\r\n tabler.updateOne( // Does not create a row if the id doesn't exist, but returns success\r\n tableName,\r\n rowWithoutId // Omitted fields are not altered\r\n rowId,\r\n callback[error]\r\n )\r\n\r\n tabler.updateMulti( // Does not create a row if the id doesn't exist, but returns success\r\n tableName,\r\n rowWithoutId, // The same value is applied to all rows, omitted fields are not altered\r\n rowIdArray,\r\n callback[error]\r\n )\r\n\r\n tabler.updateQuery(\r\n tableName,\r\n rowWithoutId, // The same value is applied to all rows, omitted fields are not altered\r\n condition,\r\n callback[error]\r\n )\r\n\r\n## Deleting\r\n\r\n tabler.deleteOne(\r\n tableName,\r\n rowId,\r\n callback[error]\r\n )\r\n\r\n tabler.deleteMulti(\r\n tableName,\r\n rowIdArray,\r\n callback[error]\r\n )\r\n\r\n tabler.deleteQuery(\r\n tableName,\r\n condition,\r\n callback[error]\r\n )\r\n\r\n## Arguments and output details\r\n\r\n fieldNames = [fieldName, fieldName, ...]\r\n\r\n rowWithoutId = {\r\n fieldName: fieldValue,\r\n fieldName: fieldValue,\r\n ...\r\n }\r\n\r\n fieldValue = (for example) 'abc' for string fields\r\n or 123.4 for number fields\r\n or new Date() for datetime fields\r\n or {a:1, b:2} for object fields\r\n or null for any field type, if allowed\r\n\r\n rowsWithoutIdArray = [rowWithoutId, rowWithoutId, ...]\r\n\r\n rowWithId = {\r\n __id: GUID,\r\n fieldName: fieldValue,\r\n ...\r\n }\r\n\r\n rowsWithIdHash = {\r\n id1: rowWithId,\r\n id2: rowWithId,\r\n ...\r\n }\r\n\r\n rowsWithIdArray = [rowWithId, rowWithId, ...]\r\n\r\n condition = [ // All conditions joined using AND\r\n [fieldName, comparisonOperator, fieldValue],\r\n [fieldName, comparisonOperator, fieldValue],\r\n ...\r\n ]\r\n\r\n comparisonOperator = \"=\", \"!=\", \"<\", \">\", \"<=\", or \">=\"\r\n\r\n selectOptions = {\r\n orderBy: 'fieldName', // Optional\r\n orderDir: 'desc', // Optional, asc (default) or desc\r\n limit: 10 // Optional, default 0 (all matching rows)\r\n }\r\n\r\n error = {\r\n code: 'ERROR_CODE', // Always present\r\n (error-specific members)\r\n }\r\n\r\n# More Interface Notes\r\n\r\nTables and field names are case sensitive, but you cannot define multiple tables or fields with the same lowercase name. This ensures that the interface can be implemented on data stores that have either case-sensitive or case-insensitive table names.\r\n\r\nThe string \"__\" is not allowed in field names, as it is reserved for Tabler's use. In particular, __id is used throughout the API to access the row Id.\r\n\r\n# Running the tests\r\n\r\n cd tests\r\n node stringtabler.js jsonfile\r\n node stringtabler.js simpledb accesskeyid secretaccesskey\r\n node tabler.js jsonfile\r\n node tabler.js simpledb accesskeyid secretaccesskey\r\n\r\n# Looking Forward\r\n\r\nThis is just a braindump of my ideas for the project, in no particular order (some of these ideas need to be developed a bit).\r\n\r\n- More backends\r\n- Cannot generally guarantee that operations are ACID, so have a utility that can be used to check consistency of the data with with your table definitions, and list/update/delete any rows that violate your definitions. \r\n- Store table definitions in a meta table, then you just define your tables once like in SQL databases\r\n- Update the interface: createDatabase, useDatabase, dropDatabase, createTable, dropTable.\r\n- Import/export utility (save/load your databases to/from JSON files or sometihng). Need to think about how to make exports reflect a single point in time as best possible (timestamp writes somehow?).\r\n- Improve tests (test the entire table against an array each write so that all unintented writes are found).\r\n- Allow the user to specify unique and foreign key constraints. Provide adequately informative error objects so that apps don't run a bunch of double-checks in order to generate various error codes/messages.\r\n- Transactions (would be normal transactions on backends that support them, and the best you can do to replicate that functionality for other backends).\r\n- Indexes (would only apply to some stores, but always best to specify them for future flexibility).\r\n- Field definition option for case-insensitive string matching (right now you need to manually create a lower-case column)\r\n", + "maintainers": [ + { + "name": "aarong", + "email": "aaron@agpursuit.com" + } + ], + "time": { + "modified": "2011-12-13T19:48:51.767Z", + "created": "2011-12-13T19:48:50.960Z", + "0.0.1": "2011-12-13T19:48:51.767Z" + }, + "author": { + "name": "Aaron G", + "email": "aaron@agpursuit.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/aarong/tabler.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tabler/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "1afa6c8ad2522a6d4cc798ee8508177adfe64133", + "tarball": "http://registry.npmjs.org/tabler/-/tabler-0.0.1.tgz" + } + }, + "keywords": [ + "amazon", + "aws", + "simpledb", + "database", + "nosql", + "relational" + ], + "url": "http://registry.npmjs.org/tabler/" + }, + "tache.io": { + "name": "tache.io", + "description": "A caching server for easily writing transformations against remote resources: munge, reformat, scrape, cache and rebroadcast stuff.", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "orls", + "email": "owen@orls.co.uk" + } + ], + "time": { + "modified": "2011-05-15T22:06:35.555Z", + "created": "2011-04-28T00:34:21.748Z", + "0.0.1": "2011-04-28T00:34:23.362Z", + "0.0.2": "2011-04-30T17:30:21.562Z", + "0.0.3": "2011-05-15T22:06:35.555Z" + }, + "author": { + "name": "Owen Smith", + "email": "owen@orls.co.uk" + }, + "repository": { + "url": "https://github.com/orls/tache.io.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tache.io/0.0.1", + "0.0.2": "http://registry.npmjs.org/tache.io/0.0.2", + "0.0.3": "http://registry.npmjs.org/tache.io/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "91b5649c95a843c7286aa8af6a01980add22361d", + "tarball": "http://registry.npmjs.org/tache.io/-/tache.io-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "8d87274d62986d9a86f715cc4a46bbcb48adde8d", + "tarball": "http://registry.npmjs.org/tache.io/-/tache.io-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "fd1e0d706dbbeae9f33aee59e19947eb27101f93", + "tarball": "http://registry.npmjs.org/tache.io/-/tache.io-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/tache.io/" + }, + "taco": { + "name": "taco", + "description": "A bootstrap styled docco fork.", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "fat", + "email": "jacobthornton@gmail.com" + } + ], + "time": { + "modified": "2011-09-08T22:54:21.734Z", + "created": "2011-09-08T22:54:21.263Z", + "0.3.0": "2011-09-08T22:54:21.734Z" + }, + "author": { + "name": "@fat" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/taco/0.3.0" + }, + "dist": { + "0.3.0": { + "shasum": "ed54e337f5e3b9030b83ca2ef82a1cb66fc3bb14", + "tarball": "http://registry.npmjs.org/taco/-/taco-0.3.0.tgz" + } + }, + "keywords": [ + "documentation", + "docs", + "generator", + "coffeescript" + ], + "url": "http://registry.npmjs.org/taco/" + }, + "tad": { + "name": "tad", + "description": "Javascript test suite", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "medikoo", + "email": "medikoo+npm@medikoo.com" + } + ], + "time": { + "modified": "2011-08-08T14:34:23.079Z", + "created": "2011-08-08T14:34:20.250Z", + "0.1.0": "2011-08-08T14:34:23.079Z" + }, + "author": { + "name": "Mariusz Nowak", + "email": "medikoo+tad@medikoo.com", + "url": "http://www.medikoo.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/medikoo/tad.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/tad/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "bec24c8cfd4f82447f763f8556e5a56cf252a18c", + "tarball": "http://registry.npmjs.org/tad/-/tad-0.1.0.tgz" + } + }, + "keywords": [ + "test", + "factory", + "unit", + "unittest", + "runner", + "tests", + "tdd", + "testing" + ], + "url": "http://registry.npmjs.org/tad/" + }, + "tafa-misc-util": { + "name": "tafa-misc-util", + "description": "A hodgepodge of utils in a mostly-flat namespace. They could be refactored into more organized libraries someday, but this library will remain stable.", + "dist-tags": { + "latest": "0.1.6" + }, + "maintainers": [ + { + "name": "TAFA", + "email": "tafa@andrewschaaf.com" + } + ], + "time": { + "modified": "2011-09-26T17:35:13.125Z", + "created": "2011-03-11T13:39:09.468Z", + "0.0.1": "2011-03-11T13:39:09.600Z", + "0.0.2": "2011-04-13T14:17:40.072Z", + "0.0.3": "2011-04-13T16:14:00.986Z", + "0.1.0": "2011-06-02T15:27:49.806Z", + "0.1.1": "2011-06-02T15:45:26.127Z", + "0.1.2": "2011-06-03T20:10:24.642Z", + "0.1.3": "2011-06-04T23:49:29.157Z", + "0.1.4": "2011-08-31T15:51:55.662Z", + "0.1.5": "2011-09-20T18:59:11.300Z", + "0.1.6": "2011-09-26T17:35:13.125Z" + }, + "author": { + "name": "TAFA", + "email": "tafa@andrewschaaf.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/tafa/tafa-misc-util.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tafa-misc-util/0.0.1", + "0.0.2": "http://registry.npmjs.org/tafa-misc-util/0.0.2", + "0.0.3": "http://registry.npmjs.org/tafa-misc-util/0.0.3", + "0.1.0": "http://registry.npmjs.org/tafa-misc-util/0.1.0", + "0.1.1": "http://registry.npmjs.org/tafa-misc-util/0.1.1", + "0.1.2": "http://registry.npmjs.org/tafa-misc-util/0.1.2", + "0.1.3": "http://registry.npmjs.org/tafa-misc-util/0.1.3", + "0.1.4": "http://registry.npmjs.org/tafa-misc-util/0.1.4", + "0.1.5": "http://registry.npmjs.org/tafa-misc-util/0.1.5", + "0.1.6": "http://registry.npmjs.org/tafa-misc-util/0.1.6" + }, + "dist": { + "0.0.1": { + "shasum": "630840eae9ed3f554b6ca669f881ef49175c47e0", + "tarball": "http://registry.npmjs.org/tafa-misc-util/-/tafa-misc-util-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "53b66072d827c1e16f357594b839ed01990165f0", + "tarball": "http://registry.npmjs.org/tafa-misc-util/-/tafa-misc-util-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "031c1fc9cbd9742b1c44efabf2000d0883f96a2a", + "tarball": "http://registry.npmjs.org/tafa-misc-util/-/tafa-misc-util-0.0.3.tgz" + }, + "0.1.0": { + "shasum": "4b1e9fb9cbaf7547da80408699e89de5477880be", + "tarball": "http://registry.npmjs.org/tafa-misc-util/-/tafa-misc-util-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "dd1257d031ff351a42f318b63c3b0516ae0d1d9d", + "tarball": "http://registry.npmjs.org/tafa-misc-util/-/tafa-misc-util-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "e56bb21bac6f427d26b0792de634852e260a0183", + "tarball": "http://registry.npmjs.org/tafa-misc-util/-/tafa-misc-util-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "ce4ca2c4594430414d34d0a335acd2703953c685", + "tarball": "http://registry.npmjs.org/tafa-misc-util/-/tafa-misc-util-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "1cc0d58a659ae43145af38084024552b6719d1d4", + "tarball": "http://registry.npmjs.org/tafa-misc-util/-/tafa-misc-util-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "06e9c595908803515361402dbd8d678b5a139ef2", + "tarball": "http://registry.npmjs.org/tafa-misc-util/-/tafa-misc-util-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "71c69e86fe152f9771f4d1a0086a494036666b65", + "tarball": "http://registry.npmjs.org/tafa-misc-util/-/tafa-misc-util-0.1.6.tgz" + } + }, + "url": "http://registry.npmjs.org/tafa-misc-util/" + }, + "taffydb": { + "name": "taffydb", + "description": "TaffyDB is an opensouce library that brings database features into your JavaScript applications.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "chambery", + "email": "todd.chambery@gmail.com" + } + ], + "time": { + "modified": "2011-11-06T16:55:30.152Z", + "created": "2011-11-06T16:55:29.381Z", + "0.0.1": "2011-11-06T16:55:30.152Z" + }, + "author": { + "name": "Ian Smith" + }, + "repository": { + "type": "git", + "url": "git://github.com/typicaljoe/taffydb.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/taffydb/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "0f8ef45574f54ac34ad99deb9ee803fc1413c55b", + "tarball": "http://registry.npmjs.org/taffydb/-/taffydb-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/taffydb/" + }, + "tag": { + "name": "tag", + "description": "window/tab titles for Terminal.app", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "pyrotechnick", + "email": "pyrotechnick@feistystudios.com" + } + ], + "time": { + "modified": "2011-06-18T23:03:25.229Z", + "created": "2011-06-18T23:03:23.236Z", + "1.0.0": "2011-06-18T23:03:25.229Z" + }, + "author": { + "name": "feisty", + "email": "tag@feisty.co", + "url": "http://feisty.co/" + }, + "repository": { + "type": "git", + "url": "git://github.com/feisty/tag.git", + "private": "git@github.com:feisty/tag.git", + "web": "http://github.com/feisty/tag" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/tag/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "f0f302f5cca66917d031163b42a137d675aaf731", + "tarball": "http://registry.npmjs.org/tag/-/tag-1.0.0.tgz" + } + }, + "keywords": [ + "tag", + "title", + "terminal", + "osx", + "window", + "name" + ], + "url": "http://registry.npmjs.org/tag/" + }, + "taglib": { + "name": "taglib", + "description": "Simple bindings to TagLib", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "nsm", + "email": "me@nikhilmarathe.me" + } + ], + "time": { + "modified": "2011-10-30T06:15:17.133Z", + "created": "2011-08-06T11:04:30.390Z", + "0.0.0": "2011-08-06T11:04:31.394Z", + "0.2.1": "2011-10-30T06:15:17.133Z" + }, + "author": { + "name": "Nikhil Marathe", + "email": "nsm.nikhil@gmail.com", + "url": "http://kodeclutz.blogspot.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/nikhilm/node-taglib.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/taglib/0.0.0", + "0.2.1": "http://registry.npmjs.org/taglib/0.2.1" + }, + "dist": { + "0.0.0": { + "shasum": "e758ce41143f82b03514931234a4b2a07ee30ee8", + "tarball": "http://registry.npmjs.org/taglib/-/taglib-0.0.0.tgz" + }, + "0.2.1": { + "shasum": "c88fce19ead531d2761feabbbea6b0472485d6f6", + "tarball": "http://registry.npmjs.org/taglib/-/taglib-0.2.1.tgz" + } + }, + "url": "http://registry.npmjs.org/taglib/" + }, + "tail": { + "name": "tail", + "description": "tail a file in node", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "lucagrulla", + "email": "luca.grulla@gmail.com" + } + ], + "time": { + "modified": "2011-09-13T21:53:44.544Z", + "created": "2011-06-23T12:53:18.706Z", + "0.0.3": "2011-06-23T12:53:19.247Z", + "0.0.4": "2011-06-28T14:37:45.840Z", + "0.1.0": "2011-07-01T16:19:50.342Z", + "0.1.1": "2011-07-05T10:29:27.118Z", + "0.1.2": "2011-07-09T15:23:09.238Z", + "0.2.0": "2011-07-13T08:47:00.468Z", + "0.2.1": "2011-08-08T21:50:42.760Z", + "0.2.2": "2011-09-13T21:53:44.544Z" + }, + "author": { + "name": "Forward" + }, + "repository": { + "type": "git", + "url": "git://github.com/forward/node-tail.git" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/tail/0.0.3", + "0.0.4": "http://registry.npmjs.org/tail/0.0.4", + "0.1.0": "http://registry.npmjs.org/tail/0.1.0", + "0.1.1": "http://registry.npmjs.org/tail/0.1.1", + "0.1.2": "http://registry.npmjs.org/tail/0.1.2", + "0.2.0": "http://registry.npmjs.org/tail/0.2.0", + "0.2.1": "http://registry.npmjs.org/tail/0.2.1", + "0.2.2": "http://registry.npmjs.org/tail/0.2.2" + }, + "dist": { + "0.0.3": { + "shasum": "59f8bba4a3017f6dcbf304bb40dfc0451dd8b744", + "tarball": "http://registry.npmjs.org/tail/-/tail-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "ef0c7ebd3fd73b323fc72efbb1098eeb6476a357", + "tarball": "http://registry.npmjs.org/tail/-/tail-0.0.4.tgz" + }, + "0.1.0": { + "shasum": "d6ac2eb100815710a362d6c212b4c969c4675792", + "tarball": "http://registry.npmjs.org/tail/-/tail-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "def3e9359447f9f24aebf95d090d3cdb30b2c6fb", + "tarball": "http://registry.npmjs.org/tail/-/tail-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "f5b2e47c971332bfc376c31778187aa2db3faf31", + "tarball": "http://registry.npmjs.org/tail/-/tail-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "675b48ca728973e568cefca3d3d772c82d7e9597", + "tarball": "http://registry.npmjs.org/tail/-/tail-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "7f6d0395cba31b20ff7adda68a66b751bee464e2", + "tarball": "http://registry.npmjs.org/tail/-/tail-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "db8dbe1add8685e8fa886980062d3264eb39de46", + "tarball": "http://registry.npmjs.org/tail/-/tail-0.2.2.tgz" + } + }, + "url": "http://registry.npmjs.org/tail/" + }, + "tails": { + "name": "tails", + "description": "Aggregate your syslog messages & filter for those that matter in real time.", + "dist-tags": { + "latest": "0.5.2" + }, + "maintainers": [ + { + "name": "portertech", + "email": "portertech@gmail.com" + } + ], + "time": { + "modified": "2011-08-06T21:04:43.608Z", + "created": "2011-07-29T22:49:54.852Z", + "0.4.0": "2011-07-29T22:49:55.442Z", + "0.4.1": "2011-07-30T19:15:11.751Z", + "0.5.0": "2011-08-05T19:03:07.847Z", + "0.5.1": "2011-08-05T19:15:32.394Z", + "0.5.2": "2011-08-06T21:04:43.608Z" + }, + "author": { + "name": "Sean Porter", + "email": "portertech@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/portertech/tails.git" + }, + "versions": { + "0.4.0": "http://registry.npmjs.org/tails/0.4.0", + "0.4.1": "http://registry.npmjs.org/tails/0.4.1", + "0.5.0": "http://registry.npmjs.org/tails/0.5.0", + "0.5.1": "http://registry.npmjs.org/tails/0.5.1", + "0.5.2": "http://registry.npmjs.org/tails/0.5.2" + }, + "dist": { + "0.4.0": { + "shasum": "f89a88f4e3f89deb82d558292fdb0729a56d4ff6", + "tarball": "http://registry.npmjs.org/tails/-/tails-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "c7314585e21362b2665397f9df18f17f9945f66c", + "tarball": "http://registry.npmjs.org/tails/-/tails-0.4.1.tgz" + }, + "0.5.0": { + "shasum": "cee2ed7a9e3619e34dfabbf795cb53ce1a681b6f", + "tarball": "http://registry.npmjs.org/tails/-/tails-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "26622fe9225858317eae685883becb63830b092a", + "tarball": "http://registry.npmjs.org/tails/-/tails-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "3e6efad18d4a9ef6e7dc51cb70d4aee38f598481", + "tarball": "http://registry.npmjs.org/tails/-/tails-0.5.2.tgz" + } + }, + "keywords": [ + "syslog", + "logging", + "tails", + "loggly" + ], + "url": "http://registry.npmjs.org/tails/" + }, + "tamejs": { + "name": "tamejs", + "description": "JavaScript-to-JavaScript code rewriter for taming async-callback-style code", + "dist-tags": { + "latest": "0.4.9" + }, + "maintainers": [ + { + "name": "maxtaco", + "email": "max@okcupid.com" + } + ], + "time": { + "modified": "2011-12-03T15:17:37.120Z", + "created": "2011-06-30T16:06:59.604Z", + "0.0.1": "2011-06-30T16:06:59.743Z", + "0.1.0": "2011-06-30T23:42:42.212Z", + "0.1.1": "2011-07-01T14:34:03.724Z", + "0.1.2": "2011-07-05T13:23:21.226Z", + "0.1.3": "2011-07-06T14:20:49.737Z", + "0.1.4": "2011-07-12T16:37:24.995Z", + "0.1.5": "2011-07-14T15:21:08.511Z", + "0.2.0": "2011-07-14T21:18:26.327Z", + "0.2.1": "2011-07-14T21:52:09.836Z", + "0.2.2": "2011-07-14T22:51:00.745Z", + "0.2.3": "2011-07-15T20:03:31.908Z", + "0.3.0": "2011-07-22T15:05:54.577Z", + "0.3.1": "2011-07-22T21:44:37.943Z", + "0.3.3": "2011-07-27T11:59:03.959Z", + "0.3.4": "2011-07-28T11:52:55.357Z", + "0.3.5": "2011-08-30T14:08:02.753Z", + "0.3.6": "2011-08-30T21:50:37.085Z", + "0.3.7": "2011-09-01T16:16:30.362Z", + "0.4.1": "2011-09-21T16:29:17.083Z", + "0.4.2": "2011-10-05T18:26:37.448Z", + "0.4.3": "2011-10-06T13:22:31.509Z", + "0.4.4": "2011-10-27T19:16:51.384Z", + "0.4.5": "2011-11-10T21:02:13.988Z", + "0.4.7": "2011-11-29T16:30:55.846Z", + "0.4.8": "2011-12-01T17:39:08.466Z", + "0.4.9": "2011-12-03T15:17:37.120Z" + }, + "author": { + "name": "Max Krohn", + "email": "max@okcupid.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/maxtaco/tamejs.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tamejs/0.0.1", + "0.1.0": "http://registry.npmjs.org/tamejs/0.1.0", + "0.1.1": "http://registry.npmjs.org/tamejs/0.1.1", + "0.1.2": "http://registry.npmjs.org/tamejs/0.1.2", + "0.1.3": "http://registry.npmjs.org/tamejs/0.1.3", + "0.1.4": "http://registry.npmjs.org/tamejs/0.1.4", + "0.1.5": "http://registry.npmjs.org/tamejs/0.1.5", + "0.2.0": "http://registry.npmjs.org/tamejs/0.2.0", + "0.2.1": "http://registry.npmjs.org/tamejs/0.2.1", + "0.2.2": "http://registry.npmjs.org/tamejs/0.2.2", + "0.2.3": "http://registry.npmjs.org/tamejs/0.2.3", + "0.3.0": "http://registry.npmjs.org/tamejs/0.3.0", + "0.3.1": "http://registry.npmjs.org/tamejs/0.3.1", + "0.3.3": "http://registry.npmjs.org/tamejs/0.3.3", + "0.3.4": "http://registry.npmjs.org/tamejs/0.3.4", + "0.3.5": "http://registry.npmjs.org/tamejs/0.3.5", + "0.3.6": "http://registry.npmjs.org/tamejs/0.3.6", + "0.3.7": "http://registry.npmjs.org/tamejs/0.3.7", + "0.4.1": "http://registry.npmjs.org/tamejs/0.4.1", + "0.4.2": "http://registry.npmjs.org/tamejs/0.4.2", + "0.4.3": "http://registry.npmjs.org/tamejs/0.4.3", + "0.4.4": "http://registry.npmjs.org/tamejs/0.4.4", + "0.4.5": "http://registry.npmjs.org/tamejs/0.4.5", + "0.4.7": "http://registry.npmjs.org/tamejs/0.4.7", + "0.4.8": "http://registry.npmjs.org/tamejs/0.4.8", + "0.4.9": "http://registry.npmjs.org/tamejs/0.4.9" + }, + "dist": { + "0.0.1": { + "shasum": "a22482d3bbca97d89f15fbc303304c81f5149276", + "tarball": "http://registry.npmjs.org/tamejs/-/tamejs-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "ec4bbdcd4ae23c1964e6537aab91c6996835e79d", + "tarball": "http://registry.npmjs.org/tamejs/-/tamejs-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "50f93cf52ca3fbf665cf351c5f9c52727418034f", + "tarball": "http://registry.npmjs.org/tamejs/-/tamejs-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "d6731ea6eedb5877666685477509c0405e3a4b90", + "tarball": "http://registry.npmjs.org/tamejs/-/tamejs-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "1b0f20b9746c0408e3a92f490992cd6233e7eccf", + "tarball": "http://registry.npmjs.org/tamejs/-/tamejs-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "3fef9fe572a66aa13cdb7330eaedd6303f5e797b", + "tarball": "http://registry.npmjs.org/tamejs/-/tamejs-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "62ff24b445afd52c75cc27dfb02143d01e5907a0", + "tarball": "http://registry.npmjs.org/tamejs/-/tamejs-0.1.5.tgz" + }, + "0.2.0": { + "shasum": "6151544e6d3779b65e503062c05b55029a156bdc", + "tarball": "http://registry.npmjs.org/tamejs/-/tamejs-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "7c90843941d8d1158dfccf2d836d147f373dd4c7", + "tarball": "http://registry.npmjs.org/tamejs/-/tamejs-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "58df2c578b9339521f19d8f49d145e1a6f85f374", + "tarball": "http://registry.npmjs.org/tamejs/-/tamejs-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "68bc8381cddf3b3b785b84ad0f3190c11cda0abb", + "tarball": "http://registry.npmjs.org/tamejs/-/tamejs-0.2.3.tgz" + }, + "0.3.0": { + "shasum": "8d110cfa2dfbadc124a6a65e880afb79e26cb1ae", + "tarball": "http://registry.npmjs.org/tamejs/-/tamejs-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "0f3ea66792c85e61a90dc59e82f98e7ad36c6667", + "tarball": "http://registry.npmjs.org/tamejs/-/tamejs-0.3.1.tgz" + }, + "0.3.3": { + "shasum": "0183ece899ff47fe00b42b5f81689f00d27c1b23", + "tarball": "http://registry.npmjs.org/tamejs/-/tamejs-0.3.3.tgz" + }, + "0.3.4": { + "shasum": "1dee53337bcb0e4283b5b419d419c2f043fd7a97", + "tarball": "http://registry.npmjs.org/tamejs/-/tamejs-0.3.4.tgz" + }, + "0.3.5": { + "shasum": "bf520fa4255e0a85aded4fa76a4a7a1061dd1331", + "tarball": "http://registry.npmjs.org/tamejs/-/tamejs-0.3.5.tgz" + }, + "0.3.6": { + "shasum": "08c2ff7ce9f8170913fdc130cdb16bb2afcdae1d", + "tarball": "http://registry.npmjs.org/tamejs/-/tamejs-0.3.6.tgz" + }, + "0.3.7": { + "shasum": "16ed30b6e81a74cb9afa7e55624840c3c7fece30", + "tarball": "http://registry.npmjs.org/tamejs/-/tamejs-0.3.7.tgz" + }, + "0.4.1": { + "shasum": "7b67b8e3e369efac9a6022eefba9536d56b9e76d", + "tarball": "http://registry.npmjs.org/tamejs/-/tamejs-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "93a63e30551e5277884a67b924a3f4639a996d5e", + "tarball": "http://registry.npmjs.org/tamejs/-/tamejs-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "715c57c27021f0b7ab6af52fa0b1d8261ddb3928", + "tarball": "http://registry.npmjs.org/tamejs/-/tamejs-0.4.3.tgz" + }, + "0.4.4": { + "shasum": "12d37a0d769f6311935f5803684f0a5474b8d8d9", + "tarball": "http://registry.npmjs.org/tamejs/-/tamejs-0.4.4.tgz" + }, + "0.4.5": { + "shasum": "7e22d2c5da885c54ad483ed546b74bfa2e635611", + "tarball": "http://registry.npmjs.org/tamejs/-/tamejs-0.4.5.tgz" + }, + "0.4.7": { + "shasum": "675cd2e9f8d5489536182af8b301873650aae900", + "tarball": "http://registry.npmjs.org/tamejs/-/tamejs-0.4.7.tgz" + }, + "0.4.8": { + "shasum": "5154a4b1489857887e9216cbbe6d9d7304796d52", + "tarball": "http://registry.npmjs.org/tamejs/-/tamejs-0.4.8.tgz" + }, + "0.4.9": { + "shasum": "905d6e7975a52704c900302633aadc118e9240d8", + "tarball": "http://registry.npmjs.org/tamejs/-/tamejs-0.4.9.tgz" + } + }, + "keywords": [ + "tame", + "libasync", + "okws", + "sfslite" + ], + "url": "http://registry.npmjs.org/tamejs/" + }, + "taobao-js-api": { + "name": "taobao-js-api", + "description": "taobao js api", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "inotseeyou", + "email": "inotseeyou@gmail.com" + } + ], + "time": { + "modified": "2011-06-02T17:56:42.577Z", + "created": "2011-06-02T15:44:55.798Z", + "0.1.0": "2011-06-02T15:44:59.897Z", + "0.1.1": "2011-06-02T16:04:48.728Z", + "0.1.2": "2011-06-02T17:56:42.577Z" + }, + "author": { + "name": "inotseeyou", + "email": "inotseeyou@gmail.com", + "url": "http://vi.codelint.com" + }, + "repository": { + "url": "" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/taobao-js-api/0.1.0", + "0.1.1": "http://registry.npmjs.org/taobao-js-api/0.1.1", + "0.1.2": "http://registry.npmjs.org/taobao-js-api/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "00a446cfb01235daa0031ab5bfe05312e98f3412", + "tarball": "http://registry.npmjs.org/taobao-js-api/-/taobao-js-api-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "771747834f39fda1a95b0970a124be6a891b48eb", + "tarball": "http://registry.npmjs.org/taobao-js-api/-/taobao-js-api-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "3485968be62a74baf497e3161c81967c856d0f48", + "tarball": "http://registry.npmjs.org/taobao-js-api/-/taobao-js-api-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/taobao-js-api/" + }, + "tap": { + "name": "tap", + "description": "A Test-Anything-Protocol library", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "time": { + "modified": "2011-12-12T16:45:15.464Z", + "created": "2011-04-21T07:10:43.641Z", + "0.0.1": "2011-12-07T00:43:11.747Z", + "0.0.2": "2011-12-07T00:43:11.747Z", + "0.0.3": "2011-12-07T00:43:11.747Z", + "0.0.4": "2011-12-07T00:43:11.747Z", + "0.0.5": "2011-12-07T00:43:11.747Z", + "0.0.6": "2011-12-07T00:43:11.747Z", + "0.0.7": "2011-12-07T00:43:11.747Z", + "0.0.8": "2011-12-07T00:43:11.747Z", + "0.0.9": "2011-12-07T00:43:11.747Z", + "0.0.10": "2011-10-05T16:27:33.077Z", + "0.0.11": "2011-10-12T17:24:00.166Z", + "0.0.12": "2011-10-25T01:16:31.213Z", + "0.0.13": "2011-11-09T18:17:44.426Z", + "0.0.14": "2011-11-15T21:44:41.812Z", + "0.1.0": "2011-11-21T23:12:20.309Z", + "0.1.1": "2011-12-07T00:43:11.747Z", + "0.1.2": "2011-12-07T01:02:22.675Z", + "0.1.3": "2011-12-12T16:45:15.464Z" + }, + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/isaacs/node-tap.git" + }, + "users": { + "substack": true + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tap/0.0.1", + "0.0.2": "http://registry.npmjs.org/tap/0.0.2", + "0.0.3": "http://registry.npmjs.org/tap/0.0.3", + "0.0.4": "http://registry.npmjs.org/tap/0.0.4", + "0.0.5": "http://registry.npmjs.org/tap/0.0.5", + "0.0.6": "http://registry.npmjs.org/tap/0.0.6", + "0.0.7": "http://registry.npmjs.org/tap/0.0.7", + "0.0.8": "http://registry.npmjs.org/tap/0.0.8", + "0.0.9": "http://registry.npmjs.org/tap/0.0.9", + "0.0.10": "http://registry.npmjs.org/tap/0.0.10", + "0.0.11": "http://registry.npmjs.org/tap/0.0.11", + "0.0.12": "http://registry.npmjs.org/tap/0.0.12", + "0.0.13": "http://registry.npmjs.org/tap/0.0.13", + "0.0.14": "http://registry.npmjs.org/tap/0.0.14", + "0.1.0": "http://registry.npmjs.org/tap/0.1.0", + "0.1.1": "http://registry.npmjs.org/tap/0.1.1", + "0.1.2": "http://registry.npmjs.org/tap/0.1.2", + "0.1.3": "http://registry.npmjs.org/tap/0.1.3" + }, + "dist": { + "0.0.1": { + "shasum": "3191489eb3678e12922c999a1b233dfcedbf8dd9", + "tarball": "http://registry.npmjs.org/tap/-/tap-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "de4383a6c8677fc03a393b5f99e795c65137c456", + "tarball": "http://registry.npmjs.org/tap/-/tap-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "ee2b4695bf2da7f524c8d834ef63805ce2722618", + "tarball": "http://registry.npmjs.org/tap/-/tap-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "82c4f40d5ff6971a3d8d71d757ff265dc9167079", + "tarball": "http://registry.npmjs.org/tap/-/tap-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "813953aa437849d13491338663d5b5878ad7915e", + "tarball": "http://registry.npmjs.org/tap/-/tap-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "6b0a2a743ffed5e62be1dafc2b3daf6b03c8697b", + "tarball": "http://registry.npmjs.org/tap/-/tap-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "fc7b0d14d7a5185cf8be4184d1b04a7b86aa0fdc", + "tarball": "http://registry.npmjs.org/tap/-/tap-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "f3ac8c951ad185c07d16c1c963bde6ec12db0e98", + "tarball": "http://registry.npmjs.org/tap/-/tap-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "78db1b1df7ce306ffe91c6bd7a6b43bf853568ce", + "tarball": "http://registry.npmjs.org/tap/-/tap-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "43e0b6f921280130b3525aa50b6e47dc0b2406a4", + "tarball": "http://registry.npmjs.org/tap/-/tap-0.0.10.tgz" + }, + "0.0.11": { + "shasum": "8a1e5a8e56a57cae969323684a3838d93d934830", + "tarball": "http://registry.npmjs.org/tap/-/tap-0.0.11.tgz" + }, + "0.0.12": { + "shasum": "9327c627ff14ee6a120c811e89536394f175dce7", + "tarball": "http://registry.npmjs.org/tap/-/tap-0.0.12.tgz" + }, + "0.0.13": { + "shasum": "5eb641fc2ef3758cd2c8687236a17c27fe19f10e", + "tarball": "http://registry.npmjs.org/tap/-/tap-0.0.13.tgz" + }, + "0.0.14": { + "shasum": "a70180fde9b1dd99f66c6482fa975d18761c3e03", + "tarball": "http://registry.npmjs.org/tap/-/tap-0.0.14.tgz" + }, + "0.1.0": { + "shasum": "088f93d32a8731606665f5f2ec96aed4820e97e7", + "tarball": "http://registry.npmjs.org/tap/-/tap-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "949899f3f34bda1321b798ddf21a99a3393052bc", + "tarball": "http://registry.npmjs.org/tap/-/tap-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "37a6a9bfd55fe8a8326e5aa5d2bdd32ca88813a2", + "tarball": "http://registry.npmjs.org/tap/-/tap-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "a30186470e79eb09fa1c522177ebdde5a2f701d6", + "tarball": "http://registry.npmjs.org/tap/-/tap-0.1.3.tgz" + } + }, + "keywords": [ + "assert", + "test", + "tap" + ], + "url": "http://registry.npmjs.org/tap/" + }, + "tap-assert": { + "name": "tap-assert", + "description": "An assertion module that returns TAP result objects", + "dist-tags": { + "latest": "0.0.10" + }, + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "time": { + "modified": "2011-10-05T16:26:54.004Z", + "created": "2011-04-07T00:58:56.673Z", + "0.0.1": "2011-04-07T00:58:57.405Z", + "0.0.2": "2011-05-14T19:19:44.919Z", + "0.0.3": "2011-06-14T21:55:14.268Z", + "0.0.4": "2011-06-21T00:15:23.636Z", + "0.0.5": "2011-06-21T01:47:00.250Z", + "0.0.6": "2011-06-21T06:29:44.963Z", + "0.0.7": "2011-08-02T22:06:59.720Z", + "0.0.8": "2011-08-02T22:27:07.732Z", + "0.0.9": "2011-08-02T22:42:46.811Z", + "0.0.10": "2011-10-05T16:26:54.004Z" + }, + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me/" + }, + "repository": { + "type": "git", + "url": "git://github.com/isaacs/tap-assert.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tap-assert/0.0.1", + "0.0.2": "http://registry.npmjs.org/tap-assert/0.0.2", + "0.0.3": "http://registry.npmjs.org/tap-assert/0.0.3", + "0.0.4": "http://registry.npmjs.org/tap-assert/0.0.4", + "0.0.5": "http://registry.npmjs.org/tap-assert/0.0.5", + "0.0.6": "http://registry.npmjs.org/tap-assert/0.0.6", + "0.0.7": "http://registry.npmjs.org/tap-assert/0.0.7", + "0.0.8": "http://registry.npmjs.org/tap-assert/0.0.8", + "0.0.9": "http://registry.npmjs.org/tap-assert/0.0.9", + "0.0.10": "http://registry.npmjs.org/tap-assert/0.0.10" + }, + "dist": { + "0.0.1": { + "shasum": "57355b6fe01ab1d2460bacb1cc8fbf24b95db316", + "tarball": "http://registry.npmjs.org/tap-assert/-/tap-assert-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "17477a5df4de2b17bbb7041554c47a26fd87a3d6", + "tarball": "http://registry.npmjs.org/tap-assert/-/tap-assert-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "5746ed73f6a85cfc06c519d91e3be13f86e509e1", + "tarball": "http://registry.npmjs.org/tap-assert/-/tap-assert-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "280f99bb22d01e7b20858d151fc11392d99ea115", + "tarball": "http://registry.npmjs.org/tap-assert/-/tap-assert-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "f9a1ec6a124379b3468cd9e03fba17c43ad6806c", + "tarball": "http://registry.npmjs.org/tap-assert/-/tap-assert-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "10e0a1d4ce4d8972338acb8cd427e6f49e4ca599", + "tarball": "http://registry.npmjs.org/tap-assert/-/tap-assert-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "dcf755f1ecc779d9b340a65fbb8b1bfdee364569", + "tarball": "http://registry.npmjs.org/tap-assert/-/tap-assert-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "9dd07d6fc25756574e5d4936f5f1e7b04fff96b1", + "tarball": "http://registry.npmjs.org/tap-assert/-/tap-assert-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "a0e9cf30c571b60236d0efc05e96ec3a295bb332", + "tarball": "http://registry.npmjs.org/tap-assert/-/tap-assert-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "116940a5105e9814fa26694a8060b536e8b1adc1", + "tarball": "http://registry.npmjs.org/tap-assert/-/tap-assert-0.0.10.tgz" + } + }, + "keywords": [ + "assert", + "test", + "tap" + ], + "url": "http://registry.npmjs.org/tap-assert/" + }, + "tap-consumer": { + "name": "tap-consumer", + "description": "A module for consuming TAP output", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "time": { + "modified": "2011-04-07T05:17:30.598Z", + "created": "2011-04-07T05:17:29.614Z", + "0.0.1": "2011-04-07T05:17:30.598Z" + }, + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me/" + }, + "repository": { + "type": "git", + "url": "git://github.com/isaacs/tap-consumer.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tap-consumer/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "a127fb0f28fef4b5fe573b2fcfbd170e27020796", + "tarball": "http://registry.npmjs.org/tap-consumer/-/tap-consumer-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/tap-consumer/" + }, + "tap-global-harness": { + "name": "tap-global-harness", + "description": "A default harness for running TAP test", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "time": { + "modified": "2011-04-07T06:12:36.890Z", + "created": "2011-04-07T06:12:35.255Z", + "0.0.1": "2011-04-07T06:12:36.890Z" + }, + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me/" + }, + "repository": { + "type": "git", + "url": "git://github.com/isaacs/tap-global-harness.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tap-global-harness/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "7250dbfa9d63e92d57079ae6ccb773aaa2c3763f", + "tarball": "http://registry.npmjs.org/tap-global-harness/-/tap-global-harness-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/tap-global-harness/" + }, + "tap-harness": { + "name": "tap-harness", + "description": "A harness for TAP Tests to use", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "time": { + "modified": "2011-07-22T02:07:04.000Z", + "created": "2011-04-07T05:57:26.447Z", + "0.0.1": "2011-04-07T05:57:27.185Z", + "0.0.2": "2011-07-07T21:42:00.077Z", + "0.0.3": "2011-07-22T02:07:04.000Z" + }, + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me/" + }, + "repository": { + "type": "git", + "url": "git://github.com/isaacs/tap-harness.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tap-harness/0.0.1", + "0.0.2": "http://registry.npmjs.org/tap-harness/0.0.2", + "0.0.3": "http://registry.npmjs.org/tap-harness/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "511a8877a8c5145886f8bd9bef932eb3c1ed028e", + "tarball": "http://registry.npmjs.org/tap-harness/-/tap-harness-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "e32fbd6fd2c4744cc49731b94dca56dacc02509e", + "tarball": "http://registry.npmjs.org/tap-harness/-/tap-harness-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "06dc58956e746196dd1cde24330c0cf50366a06f", + "tarball": "http://registry.npmjs.org/tap-harness/-/tap-harness-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/tap-harness/" + }, + "tap-producer": { + "name": "tap-producer", + "description": "A module for producing TAP output", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "time": { + "modified": "2011-04-07T05:36:35.690Z", + "created": "2011-04-07T05:36:34.931Z", + "0.0.1": "2011-04-07T05:36:35.690Z" + }, + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me/" + }, + "repository": { + "type": "git", + "url": "git://github.com/isaacs/tap-producer.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tap-producer/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "0b57231372ce362aad65715c0d6ea45758695d6c", + "tarball": "http://registry.npmjs.org/tap-producer/-/tap-producer-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/tap-producer/" + }, + "tap-results": { + "name": "tap-results", + "description": "A util for keeping track of tap result objects", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "time": { + "modified": "2011-07-22T02:06:26.471Z", + "created": "2011-04-07T01:03:01.553Z", + "0.0.1": "2011-04-07T01:03:02.449Z", + "0.0.2": "2011-07-22T02:06:26.471Z" + }, + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me/" + }, + "repository": { + "type": "git", + "url": "git://github.com/isaacs/tap-results.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tap-results/0.0.1", + "0.0.2": "http://registry.npmjs.org/tap-results/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "ec124f4caa5c8761b85b7735b0afbdbd780b8fac", + "tarball": "http://registry.npmjs.org/tap-results/-/tap-results-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "a124dfe7a4b66279c6f65aedc54ec5977464268b", + "tarball": "http://registry.npmjs.org/tap-results/-/tap-results-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/tap-results/" + }, + "tap-runner": { + "name": "tap-runner", + "description": "A module for running all the tests in a directory", + "dist-tags": { + "latest": "0.0.7" + }, + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "time": { + "modified": "2011-10-21T21:21:14.145Z", + "created": "2011-04-07T05:56:09.680Z", + "0.0.1": "2011-04-07T05:56:10.413Z", + "0.0.2": "2011-04-24T04:19:42.830Z", + "0.0.3": "2011-06-19T08:40:51.404Z", + "0.0.4": "2011-06-27T21:55:57.291Z", + "0.0.5": "2011-06-28T21:57:49.781Z", + "0.0.6": "2011-10-12T17:23:25.380Z", + "0.0.7": "2011-10-21T21:21:14.145Z" + }, + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me/" + }, + "repository": { + "type": "git", + "url": "git://github.com/isaacs/tap-runner.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tap-runner/0.0.1", + "0.0.2": "http://registry.npmjs.org/tap-runner/0.0.2", + "0.0.3": "http://registry.npmjs.org/tap-runner/0.0.3", + "0.0.4": "http://registry.npmjs.org/tap-runner/0.0.4", + "0.0.5": "http://registry.npmjs.org/tap-runner/0.0.5", + "0.0.6": "http://registry.npmjs.org/tap-runner/0.0.6", + "0.0.7": "http://registry.npmjs.org/tap-runner/0.0.7" + }, + "dist": { + "0.0.1": { + "shasum": "ef4d0c84d246997d9ed24a3d9a35e09633953be2", + "tarball": "http://registry.npmjs.org/tap-runner/-/tap-runner-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "b21152e038f12adc586598d6bb6ce146605213cf", + "tarball": "http://registry.npmjs.org/tap-runner/-/tap-runner-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "939ef5789f4034d30af6ceca7e3e9b7574b7c79d", + "tarball": "http://registry.npmjs.org/tap-runner/-/tap-runner-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "b08d6cf0e374816313cb4ad3889a8174764cec08", + "tarball": "http://registry.npmjs.org/tap-runner/-/tap-runner-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "ca68676a4d3493392e2f41336b5f0a0d68d20f4a", + "tarball": "http://registry.npmjs.org/tap-runner/-/tap-runner-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "4a0613a27aa90445730b52f893243aca0960b0f6", + "tarball": "http://registry.npmjs.org/tap-runner/-/tap-runner-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "a155801db52554b13bcd9c5727609d096c96b1f1", + "tarball": "http://registry.npmjs.org/tap-runner/-/tap-runner-0.0.7.tgz" + } + }, + "url": "http://registry.npmjs.org/tap-runner/" + }, + "tap-test": { + "name": "tap-test", + "description": "A test framework for running TAP test", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "time": { + "modified": "2011-06-25T20:39:25.846Z", + "created": "2011-04-07T06:04:17.549Z", + "0.0.1": "2011-04-07T06:04:18.282Z", + "0.0.2": "2011-06-25T20:39:25.846Z" + }, + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me/" + }, + "repository": { + "type": "git", + "url": "git://github.com/isaacs/tap-test.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tap-test/0.0.1", + "0.0.2": "http://registry.npmjs.org/tap-test/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "a0db81ae08df186b0acd772774aba0e59efa4450", + "tarball": "http://registry.npmjs.org/tap-test/-/tap-test-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "1c240fd1d70ace7dd5822f921277029e7bd56265", + "tarball": "http://registry.npmjs.org/tap-test/-/tap-test-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/tap-test/" + }, + "tapr": { + "name": "tapr", + "description": "Tapper (tapr) is a node.js tap test runner which allows stdout and stderr mixed in with the tap output and also presents assert output in a more abbreviated fashion. Tapper also optionally adds color to the output. Core based on Isaac Z Schlueter original tap runner. Because of Isaac's modular design Tapr/Tapper customizes the runner but uses all the original tap components.", + "dist-tags": { + "latest": "0.1.2" + }, + "readme": "# Tapper\n\nTapper (aka tapr) is a node.js tap runner which allows stdout and stderr mixed in with the tap output. Also tapper adds color to the output. Core based on Isaac Z Schlueter original tap runner.\n\n\n## Goals\n\n - More concise formatting of tap output (easier to find what you care about)\n - Improve ability to write to stdout and stderr from tests or code\n - stdout/stderr is muted for successful tests, but displayed for files with failing tests\n - Add optional colorized output\n\n## Installing\n\n```bash\n npm install tapr # install locally\n # OR\n npm install -g tapr # install globally\n``` \n\nOR \n\nAdd to your project package.json\n\n```javascript\n \"devDependencies\": {\n \"tapr\" : \"~0.1.0\"\n }\n```\n\nThen npm install your package with dev dependencies from the project directory \n\n```bash\n npm install\n```\n\nOR \n \nPull from github - http://github.com/jeffbski/tapper\n\n## Usage\n\n```bash\n node_modules/.bin/tapr.js fileOrDir # if installed locally\n #OR\n tapr fileOrDir # if installed globally\n #\n tapr # display usage\n tapr --help # display usage\n tapr --version # display version\n tapr --no-color fileOrDir # run without color output\n``` \n\n## Status\n\n - v0.1.0 - 2011-11-28 - tapr - change bin/tapper to bin/tapr for convenient typing. tapr is also short for tap runner\n - v0.0.6 - 2011-11-22 - Tapper is based on the original tap code with minor changes. The runner will evolve with features as time permits but appears to be fully functional.\n \n## Screenshots\n\n### Successful example where all tests are passing\n\nStderr and stdout is muted except for files which have a failing test\n\n![success-tapr](http://github.com/jeffbski/tapper/raw/master/doc/success-tapr.png)\n\n### Failure example with some failures and stdout\n\n - Green - successful tests and files\n - Red - failed tests and files\n - Blue - test names\n\n![failed-tapr](http://github.com/jeffbski/tapper/raw/master/doc/failed-tapr.png)\n\n### Original tap runner success\n\n![success-tap](http://github.com/jeffbski/tapper/raw/master/doc/success-tap.png)\n\n### Original tap runner failure\n\n![failed-tap](http://github.com/jeffbski/tapper/raw/master/doc/failed-tap.png)\n\n## License\n\n - [MIT license](http://github.com/jeffbski/tapper/raw/master/LICENSE)\n\n## Contributors\n\n - Modifications by author: Jeff Barczewski (@jeffbski)\n - Original code Isaac Z. Schlueter http://blog.izs.me\n\n## Contributing\n\n - Source code repository: http://github.com/jeffbski/tapper\n - Ideas and pull requests are encouraged - http://github.com/jeffbski/tapper/issues\n - You may contact me at @jeffbski or through github at http://github.com/jeffbski\n", + "maintainers": [ + { + "name": "jeffbski", + "email": "jeff.barczewski@gmail.com" + } + ], + "time": { + "modified": "2011-12-10T18:10:51.696Z", + "created": "2011-11-28T20:38:44.197Z", + "0.1.0": "2011-11-28T20:38:45.208Z", + "0.1.1": "2011-12-08T22:56:34.309Z", + "0.1.2": "2011-12-10T18:10:51.696Z" + }, + "author": { + "name": "Jeff Barczewski", + "email": "jeff.barczewski@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/jeffbski/tapper.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/tapr/0.1.0", + "0.1.1": "http://registry.npmjs.org/tapr/0.1.1", + "0.1.2": "http://registry.npmjs.org/tapr/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "1f2012c5ff064f6866c3b0b366ca4b286602a627", + "tarball": "http://registry.npmjs.org/tapr/-/tapr-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "bdd82aff4d8f1f881f85f0d8056f7b447c89678b", + "tarball": "http://registry.npmjs.org/tapr/-/tapr-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "f8a042c598f9c8bf90d03df33359fa5cee0ad3a4", + "tarball": "http://registry.npmjs.org/tapr/-/tapr-0.1.2.tgz" + } + }, + "keywords": [ + "assert", + "test", + "tap", + "runner", + "color" + ], + "url": "http://registry.npmjs.org/tapr/" + }, + "tar": { + "name": "tar", + "dist-tags": { + "latest": "0.1.9" + }, + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me/" + }, + "time": { + "modified": "2011-12-09T02:01:45.330Z", + "created": "2011-11-20T07:11:18.109Z", + "0.0.1": "2011-11-20T07:11:18.109Z", + "0.1.0": "2011-11-20T07:52:36.525Z", + "0.1.2": "2011-11-21T22:31:19.762Z", + "0.1.3": "2011-11-23T00:44:56.703Z", + "0.1.4": "2011-11-29T03:02:22.216Z", + "0.1.5": "2011-11-30T18:54:34.219Z", + "0.1.6": "2011-11-30T20:50:10.803Z", + "0.1.7": "2011-12-01T03:12:57.060Z", + "0.1.8": "2011-12-03T02:29:20.608Z", + "0.1.9": "2011-12-09T02:01:45.330Z" + }, + "description": "tar for node", + "repository": { + "type": "git", + "url": "git://github.com/isaacs/node-tar.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tar/0.0.1", + "0.1.0": "http://registry.npmjs.org/tar/0.1.0", + "0.1.2": "http://registry.npmjs.org/tar/0.1.2", + "0.1.3": "http://registry.npmjs.org/tar/0.1.3", + "0.1.4": "http://registry.npmjs.org/tar/0.1.4", + "0.1.5": "http://registry.npmjs.org/tar/0.1.5", + "0.1.6": "http://registry.npmjs.org/tar/0.1.6", + "0.1.7": "http://registry.npmjs.org/tar/0.1.7", + "0.1.8": "http://registry.npmjs.org/tar/0.1.8", + "0.1.9": "http://registry.npmjs.org/tar/0.1.9" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/tar/-/tar-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "10fcd1d940ba7330f89c2a35ad5d16f0107a5d67", + "tarball": "http://registry.npmjs.org/tar/-/tar-0.1.0.tgz" + }, + "0.1.2": { + "shasum": "52cebd0abc1456c9c405d37838d4201d5d186ebe", + "tarball": "http://registry.npmjs.org/tar/-/tar-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "b40685c0727a74af56df9e03bae44621cbde206f", + "tarball": "http://registry.npmjs.org/tar/-/tar-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "6af6319b23c830c787bad1b4b2ea2189a776074d", + "tarball": "http://registry.npmjs.org/tar/-/tar-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "190ad20031b539c26268f7d96a079acc1a189b8b", + "tarball": "http://registry.npmjs.org/tar/-/tar-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "ac70abbfac3ab0b1f18775e54fe74d6114b028f8", + "tarball": "http://registry.npmjs.org/tar/-/tar-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "33d288cfa1fc62a3b95a265a475a960b0a5721fe", + "tarball": "http://registry.npmjs.org/tar/-/tar-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "39316070df0332271186688061a002c973f6e928", + "tarball": "http://registry.npmjs.org/tar/-/tar-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "e68653171937dd505c2b2e57bbcb9e0c780de1fa", + "tarball": "http://registry.npmjs.org/tar/-/tar-0.1.9.tgz" + } + }, + "url": "http://registry.npmjs.org/tar/" + }, + "tar-async": { + "name": "tar-async", + "description": "Asynchronous tar and untar", + "dist-tags": { + "latest": "1.1.1" + }, + "maintainers": [ + { + "name": "beatgammit", + "email": "t.jameson.little@gmail.com" + } + ], + "time": { + "modified": "2011-08-07T02:49:34.661Z", + "created": "2011-03-20T07:27:26.729Z", + "0.1.0": "2011-03-20T07:27:27.219Z", + "0.2.0": "2011-03-21T17:20:11.823Z", + "0.2.5": "2011-03-26T05:46:00.075Z", + "0.3.0": "2011-05-19T06:12:02.231Z", + "1.0.0": "2011-06-27T08:20:34.304Z", + "1.0.1": "2011-06-27T16:47:03.747Z", + "1.1.0": "2011-06-29T06:12:41.999Z", + "1.1.1": "2011-08-07T02:49:34.661Z" + }, + "author": { + "name": "T. Jameson Little", + "email": "t.jameson.little@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/beatgammit/tar-async.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/tar-async/0.1.0", + "0.2.0": "http://registry.npmjs.org/tar-async/0.2.0", + "0.2.5": "http://registry.npmjs.org/tar-async/0.2.5", + "0.3.0": "http://registry.npmjs.org/tar-async/0.3.0", + "1.0.0": "http://registry.npmjs.org/tar-async/1.0.0", + "1.0.1": "http://registry.npmjs.org/tar-async/1.0.1", + "1.1.0": "http://registry.npmjs.org/tar-async/1.1.0", + "1.1.1": "http://registry.npmjs.org/tar-async/1.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "d84b2916f926e03c3e6a55ba4766b43e329ec6e1", + "tarball": "http://registry.npmjs.org/tar-async/-/tar-async-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "892dc8dfa167cf1097a7c98ca80fece6b863ad27", + "tarball": "http://registry.npmjs.org/tar-async/-/tar-async-0.2.0.tgz" + }, + "0.2.5": { + "shasum": "d1379e006d691da971abc74a3b2f01e8ea3cbacf", + "tarball": "http://registry.npmjs.org/tar-async/-/tar-async-0.2.5.tgz" + }, + "0.3.0": { + "shasum": "f08953d46c37bdb2639b2869ce64bf13adebb47a", + "tarball": "http://registry.npmjs.org/tar-async/-/tar-async-0.3.0.tgz" + }, + "1.0.0": { + "shasum": "c6b95d3f9a26d7cd5f93d908471a85b8f41f5b2b", + "tarball": "http://registry.npmjs.org/tar-async/-/tar-async-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "9b4cc262a265805a12c2f9c7ec45122d1f8630c9", + "tarball": "http://registry.npmjs.org/tar-async/-/tar-async-1.0.1.tgz" + }, + "1.1.0": { + "shasum": "710c2196ce0f4a11f7c97a0d57641838a2afea4d", + "tarball": "http://registry.npmjs.org/tar-async/-/tar-async-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "6b8cfb73cded459a6c705378337fc03b7f0adcd8", + "tarball": "http://registry.npmjs.org/tar-async/-/tar-async-1.1.1.tgz" + } + }, + "keywords": [ + "tar", + "untar", + "asynchronous", + "stream", + "async", + "chunk", + "chunked" + ], + "url": "http://registry.npmjs.org/tar-async/" + }, + "tar-js": { + "name": "tar-js", + "description": "Tar implemented in the browser", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "beatgammit", + "email": "t.jameson.little@gmail.com" + } + ], + "time": { + "modified": "2011-10-29T00:04:31.598Z", + "created": "2011-06-04T19:57:10.800Z", + "0.1.0": "2011-06-04T19:57:11.469Z", + "0.1.1": "2011-08-01T02:10:19.394Z", + "0.1.2": "2011-10-28T23:59:23.939Z", + "0.2.0": "2011-10-29T00:04:31.598Z" + }, + "author": { + "name": "T. Jameson Little", + "email": "t.jameson.little@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/beatgammit/tar-js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/tar-js/0.1.0", + "0.1.1": "http://registry.npmjs.org/tar-js/0.1.1", + "0.2.0": "http://registry.npmjs.org/tar-js/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "126bcebb61d6b6854777ef938d12d3a4ebeb431c", + "tarball": "http://registry.npmjs.org/tar-js/-/tar-js-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "9d88dab4cc4838f6a7011b9274b22d0047fb6755", + "tarball": "http://registry.npmjs.org/tar-js/-/tar-js-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "aeb57b8aca96f0bae20cbf50a2dbc7b3d463ae7d", + "tarball": "http://registry.npmjs.org/tar-js/-/tar-js-0.2.0.tgz" + } + }, + "keywords": [ + "tar", + "browser", + "client", + "offline" + ], + "url": "http://registry.npmjs.org/tar-js/" + }, + "task": { + "name": "task", + "description": "Callback => event library", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "cohara87", + "email": "cohara87@gmail.com" + } + ], + "time": { + "modified": "2011-05-15T10:53:55.654Z", + "created": "2011-05-15T10:53:54.114Z", + "0.1.0": "2011-05-15T10:53:55.654Z" + }, + "author": { + "name": "Chris O'Hara", + "email": "cohara87@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/chriso/task.js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/task/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "a7d7a701548a87cca28e33b3d334cf7375687cf9", + "tarball": "http://registry.npmjs.org/task/-/task-0.1.0.tgz" + } + }, + "keywords": [ + "callback", + "async", + "task", + "events", + "emitter" + ], + "url": "http://registry.npmjs.org/task/" + }, + "task-extjs": { + "name": "task-extjs", + "description": "ExtJS framework, with some changes, suitable for bridging to Joose", + "dist-tags": { + "latest": "3.1.4" + }, + "maintainers": [ + { + "name": "samuraijack", + "email": "nickolay8@gmail.com" + } + ], + "author": { + "name": "Nickolay Platonov", + "email": "nplatonov@cpan.org" + }, + "repository": { + "web": "http://github.com/SamuraiJack/task-extjs/tree", + "url": "git://github.com/SamuraiJack/task-extjs.git", + "type": "git" + }, + "time": { + "modified": "2011-07-16T08:51:55.422Z", + "created": "2011-01-12T15:41:02.940Z", + "3.1.0": "2011-01-12T15:41:02.940Z", + "3.1.1": "2011-01-12T15:41:02.940Z", + "3.1.2": "2011-01-12T15:41:02.940Z", + "3.1.3": "2011-07-15T15:30:50.860Z", + "3.1.4": "2011-07-16T08:51:55.422Z" + }, + "versions": { + "3.1.0": "http://registry.npmjs.org/task-extjs/3.1.0", + "3.1.1": "http://registry.npmjs.org/task-extjs/3.1.1", + "3.1.2": "http://registry.npmjs.org/task-extjs/3.1.2", + "3.1.3": "http://registry.npmjs.org/task-extjs/3.1.3", + "3.1.4": "http://registry.npmjs.org/task-extjs/3.1.4" + }, + "dist": { + "3.1.0": { + "tarball": "http://packages:5984/task-extjs/-/task-extjs-3.1.0.tgz" + }, + "3.1.1": { + "shasum": "3be44f82c127e949dcd4177f764b3b37047a42f2", + "tarball": "http://registry.npmjs.org/task-extjs/-/task-extjs-3.1.1.tgz" + }, + "3.1.2": { + "shasum": "68c72f36903aefc1cd8db5aea84726d5a80de6d8", + "tarball": "http://registry.npmjs.org/task-extjs/-/task-extjs-3.1.2.tgz" + }, + "3.1.3": { + "shasum": "c1f1b9e1f7a7c7f513c451f9c3165af7df2e67a9", + "tarball": "http://registry.npmjs.org/task-extjs/-/task-extjs-3.1.3.tgz" + }, + "3.1.4": { + "shasum": "6ed9b3bcecb0e729ffd3704b8d8b71b7c164d202", + "tarball": "http://registry.npmjs.org/task-extjs/-/task-extjs-3.1.4.tgz" + } + }, + "url": "http://registry.npmjs.org/task-extjs/" + }, + "task-joose-nodejs": { + "name": "task-joose-nodejs", + "description": "Joose, packaged with NodeJS flavour", + "dist-tags": { + "latest": "0.11.0" + }, + "maintainers": [ + { + "name": "samuraijack", + "email": "nickolay8@gmail.com" + } + ], + "author": { + "name": "Nickolay Platonov", + "email": "nplatonov@cpan.org" + }, + "repository": { + "web": "http://github.com/SamuraiJack/Task-Joose-NodeJS/tree", + "url": "git://github.com/SamuraiJack/Task-Joose-NodeJS.git", + "type": "git" + }, + "time": { + "modified": "2011-01-12T15:58:14.977Z", + "created": "2011-01-12T15:58:14.977Z", + "0.04.0": "2011-01-12T15:58:14.977Z", + "0.05.0": "2011-01-12T15:58:14.977Z", + "0.6.0": "2011-01-12T15:58:14.977Z", + "0.7.0": "2011-01-12T15:58:14.977Z", + "0.8.0": "2011-01-12T15:58:14.977Z", + "0.9.0": "2011-01-12T15:58:14.977Z", + "0.10.0": "2011-01-12T15:58:14.977Z", + "0.11.0": "2011-01-12T15:58:14.977Z" + }, + "versions": { + "0.04.0": "http://registry.npmjs.org/task-joose-nodejs/0.04.0", + "0.05.0": "http://registry.npmjs.org/task-joose-nodejs/0.05.0", + "0.6.0": "http://registry.npmjs.org/task-joose-nodejs/0.6.0", + "0.7.0": "http://registry.npmjs.org/task-joose-nodejs/0.7.0", + "0.8.0": "http://registry.npmjs.org/task-joose-nodejs/0.8.0", + "0.9.0": "http://registry.npmjs.org/task-joose-nodejs/0.9.0", + "0.10.0": "http://registry.npmjs.org/task-joose-nodejs/0.10.0", + "0.11.0": "http://registry.npmjs.org/task-joose-nodejs/0.11.0" + }, + "dist": { + "0.04.0": { + "tarball": "http://packages:5984/task-joose-nodejs/-/task-joose-nodejs-0.04.0.tgz" + }, + "0.05.0": { + "tarball": "http://packages:5984/task-joose-nodejs/-/task-joose-nodejs-0.05.0.tgz" + }, + "0.6.0": { + "tarball": "http://packages:5984/task-joose-nodejs/-/task-joose-nodejs-0.6.0.tgz" + }, + "0.7.0": { + "tarball": "http://packages:5984/task-joose-nodejs/-/task-joose-nodejs-0.7.0.tgz" + }, + "0.8.0": { + "tarball": "http://packages:5984/task-joose-nodejs/-/task-joose-nodejs-0.8.0.tgz" + }, + "0.9.0": { + "shasum": "d2861a17939fcb79d53cb8ba8e9e6c03878590da", + "tarball": "http://registry.npmjs.org/task-joose-nodejs/-/task-joose-nodejs-0.9.0.tgz" + }, + "0.10.0": { + "shasum": "f6cf6a8a5b170e8dc9c07005644ef191c2b68903", + "tarball": "http://registry.npmjs.org/task-joose-nodejs/-/task-joose-nodejs-0.10.0.tgz" + }, + "0.11.0": { + "shasum": "a87248ebf865420532e130667de3288588ab94d7", + "tarball": "http://registry.npmjs.org/task-joose-nodejs/-/task-joose-nodejs-0.11.0.tgz" + } + }, + "url": "http://registry.npmjs.org/task-joose-nodejs/" + }, + "task-joose-stable": { + "name": "task-joose-stable", + "description": "Stable version of Joose, required only for bootstraping purposes", + "dist-tags": { + "latest": "3.14.6" + }, + "maintainers": [ + { + "name": "samuraijack", + "email": "nickolay8@gmail.com" + } + ], + "author": { + "name": "Nickolay Platonov", + "email": "nplatonov@cpan.org" + }, + "repository": { + "web": "http://github.com/SamuraiJack/Task-Joose-Stable/tree", + "url": "git://github.com/SamuraiJack/Task-Joose-Stable.git", + "type": "git" + }, + "time": { + "modified": "2011-07-16T08:39:12.213Z", + "created": "2011-01-12T15:37:58.232Z", + "3.14.0": "2011-01-12T15:37:58.232Z", + "3.14.1": "2011-01-12T15:37:58.232Z", + "3.6.0": "2011-01-12T15:37:58.232Z", + "3.6.12": "2011-01-12T15:37:58.232Z", + "3.6.5": "2011-01-12T15:37:58.232Z", + "3.6.1": "2011-01-12T15:37:58.232Z", + "3.6.2": "2011-01-12T15:37:58.232Z", + "3.6.3": "2011-01-12T15:37:58.232Z", + "3.6.4": "2011-01-12T15:37:58.232Z", + "3.14.2": "2011-01-12T15:37:58.232Z", + "3.14.3": "2011-01-12T15:37:58.232Z", + "3.14.4": "2011-07-15T15:16:28.664Z", + "3.14.5": "2011-07-15T16:03:48.594Z", + "3.14.6": "2011-07-16T08:39:12.213Z" + }, + "versions": { + "3.14.0": "http://registry.npmjs.org/task-joose-stable/3.14.0", + "3.14.1": "http://registry.npmjs.org/task-joose-stable/3.14.1", + "3.6.0": "http://registry.npmjs.org/task-joose-stable/3.6.0", + "3.6.12": "http://registry.npmjs.org/task-joose-stable/3.6.12", + "3.6.5": "http://registry.npmjs.org/task-joose-stable/3.6.5", + "3.6.1": "http://registry.npmjs.org/task-joose-stable/3.6.1", + "3.6.2": "http://registry.npmjs.org/task-joose-stable/3.6.2", + "3.6.3": "http://registry.npmjs.org/task-joose-stable/3.6.3", + "3.6.4": "http://registry.npmjs.org/task-joose-stable/3.6.4", + "3.14.2": "http://registry.npmjs.org/task-joose-stable/3.14.2", + "3.14.3": "http://registry.npmjs.org/task-joose-stable/3.14.3", + "3.14.4": "http://registry.npmjs.org/task-joose-stable/3.14.4", + "3.14.5": "http://registry.npmjs.org/task-joose-stable/3.14.5", + "3.14.6": "http://registry.npmjs.org/task-joose-stable/3.14.6" + }, + "dist": { + "3.14.0": { + "tarball": "http://packages:5984/task-joose-stable/-/task-joose-stable-3.14.0.tgz" + }, + "3.14.1": { + "tarball": "http://packages:5984/task-joose-stable/-/task-joose-stable-3.14.1.tgz" + }, + "3.6.0": { + "tarball": "http://packages:5984/task-joose-stable/-/task-joose-stable-3.6.0.tgz" + }, + "3.6.12": { + "tarball": "http://packages:5984/task-joose-stable/-/task-joose-stable-3.6.12.tgz" + }, + "3.6.5": { + "tarball": "http://packages:5984/task-joose-stable/-/task-joose-stable-3.6.5.tgz" + }, + "3.6.1": { + "tarball": "http://packages:5984/task-joose-stable/-/task-joose-stable-3.6.1.tgz" + }, + "3.6.2": { + "tarball": "http://packages:5984/task-joose-stable/-/task-joose-stable-3.6.2.tgz" + }, + "3.6.3": { + "tarball": "http://packages:5984/task-joose-stable/-/task-joose-stable-3.6.3.tgz" + }, + "3.6.4": { + "tarball": "http://packages:5984/task-joose-stable/-/task-joose-stable-3.6.4.tgz" + }, + "3.14.2": { + "shasum": "c8952d10f030a7e5960f5be0bdef8a55452dd7ec", + "tarball": "http://registry.npmjs.org/task-joose-stable/-/task-joose-stable-3.14.2.tgz" + }, + "3.14.3": { + "shasum": "9f153c2ae7b534d568078536c6e24281319c9345", + "tarball": "http://registry.npmjs.org/task-joose-stable/-/task-joose-stable-3.14.3.tgz" + }, + "3.14.4": { + "shasum": "fdba74f6cfe831736432790d3734b1ed7ba97156", + "tarball": "http://registry.npmjs.org/task-joose-stable/-/task-joose-stable-3.14.4.tgz" + }, + "3.14.5": { + "shasum": "66fa34293d91d65013c71d2e8d537f097b8ce0b2", + "tarball": "http://registry.npmjs.org/task-joose-stable/-/task-joose-stable-3.14.5.tgz" + }, + "3.14.6": { + "shasum": "e8f0e39f66e41b5867005bd7272bb515dcc178d0", + "tarball": "http://registry.npmjs.org/task-joose-stable/-/task-joose-stable-3.14.6.tgz" + } + }, + "url": "http://registry.npmjs.org/task-joose-stable/" + }, + "tasks": { + "name": "tasks", + "description": "Queue-based execution and eventing for tasks (ala GCD)", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "skylar", + "email": "accounts@larw.com" + } + ], + "versions": { + "0.0.1": "http://registry.npmjs.org/tasks/0.0.1", + "0.0.3": "http://registry.npmjs.org/tasks/0.0.3" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/tasks/-/tasks-0.0.1.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/tasks/-/tasks-0.0.3.tgz" + } + }, + "keywords": [ + "dispatch", + "queues", + "tasks", + "gcd", + "job queue", + "flow" + ], + "url": "http://registry.npmjs.org/tasks/" + }, + "tav": { + "name": "tav", + "description": "Brain-free command-line options parser for node.js", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "akaspin", + "email": "aka.spin@gmail.com" + } + ], + "author": { + "name": "Alexander Dorofeev" + }, + "repository": { + "type": "git", + "url": "http://github.com/akaspin/tav.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/tav/0.1.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/tav/-/tav-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/tav/" + }, + "taxman": { + "name": "taxman", + "description": "taxman caches values for you", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "marcello", + "email": "marcello@cellosoft.com" + } + ], + "time": { + "modified": "2011-08-29T22:57:56.009Z", + "created": "2011-05-05T02:45:15.678Z", + "0.1.0": "2011-05-05T02:45:15.858Z", + "0.1.1": "2011-08-29T22:57:56.009Z" + }, + "author": { + "name": "Marcello Bastéa-Forte", + "email": "marcello@cellosoft.com", + "url": "http://marcello.cellosoft.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/marcello3d/node-taxman.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/taxman/0.1.0", + "0.1.1": "http://registry.npmjs.org/taxman/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "e9a3481eed86e373eb95d25375c19276d0d158f9", + "tarball": "http://registry.npmjs.org/taxman/-/taxman-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "c1f66b188b59fbcf64c2d87e33490d90cea3abe2", + "tarball": "http://registry.npmjs.org/taxman/-/taxman-0.1.1.tgz" + } + }, + "keywords": [ + "taxman", + "cache", + "future" + ], + "url": "http://registry.npmjs.org/taxman/" + }, + "tbd": { + "name": "tbd", + "description": "tbd is a test data building library, allowing you to quickly spin up large amounts of fake data to be pumped into tests", + "dist-tags": { + "latest": "0.6.1" + }, + "readme": "# tbd - Test Data Builder\n\nHave you ever needed to push out a bunch of data for testing your app? Maybe your backend services aren't ready but you want to build the UI for the expected data?\n\nWell tbd to the rescue, tbd will allow you to quickly build up some data quickly and painlessly.\n\ntbd is designed to work in both Node.js and in the browser so you can use it for any application you want.\n\n# Getting tbd\n\nFor *Node.js*:\n\n npm install tbd\n \nFor the browser - grab the latest version from [git](https://github.com/aaronpowell/tbd/blob/master/lib/tbd.js).\n\n# Using tbd\n\n## Node.js\n\nBasic usage:\n\n var tbd = require('tbd');\n \n var data = tbd.from({ hello: 'world' }).make(10);\n \n console.log(data.length); //10\n \nTweaking properties:\n\n var tbd = require('tbd');\n \n var data = tbd.from({ hello: 'world' })\n .prop('hello').use(function() { return 'my value; }).done()\n .make(10);\n \n console.log(data.length); //10\n \n## Browser\n\nWhen using tbd in the browser it works exactly the same way, only you don't need the `require` statement (unless you want to use RequireJS).\n\n# Running the tests\n\nThere's a bunch of tests shipped which uses [Jasmine](http://pivotal.github.com/jasmine/) so you can run them from node.js if you want:\n\n node tests.js\n\n# License\n\n[MIT](https://github.com/aaronpowell/tbd/blob/master/License.txt)", + "maintainers": [ + { + "name": "aaronpowell", + "email": "me@aaron-powell.com" + } + ], + "time": { + "modified": "2011-12-05T11:11:42.662Z", + "created": "2011-11-24T12:29:27.966Z", + "0.0.1": "2011-11-24T12:29:31.404Z", + "0.0.2": "2011-11-24T12:35:22.851Z", + "0.1.0": "2011-11-27T06:49:56.489Z", + "0.5.0": "2011-12-04T10:12:17.870Z", + "0.6.0": "2011-12-05T04:12:28.572Z", + "0.6.1": "2011-12-05T11:11:42.662Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tbd/0.0.1", + "0.0.2": "http://registry.npmjs.org/tbd/0.0.2", + "0.1.0": "http://registry.npmjs.org/tbd/0.1.0", + "0.5.0": "http://registry.npmjs.org/tbd/0.5.0", + "0.6.0": "http://registry.npmjs.org/tbd/0.6.0", + "0.6.1": "http://registry.npmjs.org/tbd/0.6.1" + }, + "dist": { + "0.0.1": { + "shasum": "be1bdcde6a22a0dc7a2e030d4097dd29de4f917f", + "tarball": "http://registry.npmjs.org/tbd/-/tbd-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "9ef7f9dbff816fd45c7f99d08892627b16a9a840", + "tarball": "http://registry.npmjs.org/tbd/-/tbd-0.0.2.tgz" + }, + "0.1.0": { + "shasum": "21be0f45446ec0e8a36c4d15b3dc019cedf8cd0a", + "tarball": "http://registry.npmjs.org/tbd/-/tbd-0.1.0.tgz" + }, + "0.5.0": { + "shasum": "10f86c714dff6e2ade8ca0f2ae13b94ecad78644", + "tarball": "http://registry.npmjs.org/tbd/-/tbd-0.5.0.tgz" + }, + "0.6.0": { + "shasum": "8f059695c29ec65c371558a7902d1352d3280124", + "tarball": "http://registry.npmjs.org/tbd/-/tbd-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "bfb00fa7503304b210d721d5d8ce2f4cc9357556", + "tarball": "http://registry.npmjs.org/tbd/-/tbd-0.6.1.tgz" + } + }, + "keywords": [ + "testing", + "unit-testing", + "data", + "generator" + ], + "url": "http://registry.npmjs.org/tbd/" + }, + "tbone": { + "name": "tbone", + "description": "A simple library to generate valid HTML", + "dist-tags": { + "latest": "0.0.3c" + }, + "maintainers": [ + { + "name": "rsdoiel", + "email": "rsdoiel@gmail.com" + } + ], + "time": { + "modified": "2011-11-23T00:14:14.712Z", + "created": "2011-08-19T12:57:46.599Z", + "0.0.3": "2011-08-19T12:57:47.202Z", + "0.0.3b": "2011-11-02T18:11:24.880Z", + "0.0.3c": "2011-11-23T00:14:14.712Z" + }, + "author": { + "name": "R. S. Doiel", + "email": "rsdoiel@gmail.com", + "url": "https://github.com/rsdoiel" + }, + "repository": { + "type": "git", + "url": "git://github.com/rsdoiel/tbone.git" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/tbone/0.0.3", + "0.0.3b": "http://registry.npmjs.org/tbone/0.0.3b", + "0.0.3c": "http://registry.npmjs.org/tbone/0.0.3c" + }, + "dist": { + "0.0.3": { + "shasum": "503578cf9f334646a4f31e4809e50d549ea018a6", + "tarball": "http://registry.npmjs.org/tbone/-/tbone-0.0.3.tgz" + }, + "0.0.3b": { + "shasum": "cdadca98357e06abbbd8c679d395d5f894ee133f", + "tarball": "http://registry.npmjs.org/tbone/-/tbone-0.0.3b.tgz" + }, + "0.0.3c": { + "shasum": "4a676b871957753cfed8aa75dc64a3424e4dc2a4", + "tarball": "http://registry.npmjs.org/tbone/-/tbone-0.0.3c.tgz" + } + }, + "url": "http://registry.npmjs.org/tbone/" + }, + "tcp-proxy": { + "name": "tcp-proxy", + "description": "A node.js TCP proxy [for mysql]", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "rnavarro", + "email": "crshman@gmail.com" + } + ], + "time": { + "modified": "2011-08-15T12:07:11.036Z", + "created": "2011-08-15T12:07:10.798Z", + "0.1.0": "2011-08-15T12:07:11.036Z" + }, + "author": { + "name": "Robert Navarro", + "email": "crshman@gmail.com", + "url": "http://www.crshman.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/rnavarro/node-tcp-proxy.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/tcp-proxy/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "1a02074184791cc84004869d84d363b4ec95196e", + "tarball": "http://registry.npmjs.org/tcp-proxy/-/tcp-proxy-0.1.0.tgz" + } + }, + "keywords": [ + "proxy", + "tcp proxy", + "tcp-proxy" + ], + "url": "http://registry.npmjs.org/tcp-proxy/" + }, + "TDTwitterStream": { + "name": "TDTwitterStream", + "description": "Asynchronous Twitter Streaming client API for node.js.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "mheap", + "email": "m@michaelheap.com" + } + ], + "time": { + "modified": "2011-11-22T14:40:03.478Z", + "created": "2011-11-22T14:32:27.358Z", + "0.1.0": "2011-11-22T14:32:49.157Z", + "0.1.1": "2011-11-22T14:40:03.478Z" + }, + "author": { + "name": "Michael Heap" + }, + "repository": { + "type": "git", + "url": "git://github.com/maxsoftware/TDTwitterStream.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/TDTwitterStream/0.1.0", + "0.1.1": "http://registry.npmjs.org/TDTwitterStream/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "231c7a2273b68a54c275c7a21ef0c83c7d58e5ba", + "tarball": "http://registry.npmjs.org/TDTwitterStream/-/TDTwitterStream-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "c2768326adc2eeb17e335f7549f0bc8722ee6702", + "tarball": "http://registry.npmjs.org/TDTwitterStream/-/TDTwitterStream-0.1.1.tgz" + } + }, + "keywords": [ + "twitter", + "streaming", + "oauth", + "sitestreams" + ], + "url": "http://registry.npmjs.org/TDTwitterStream/" + }, + "tea": { + "name": "tea", + "description": "Helper utilities.", + "dist-tags": { + "latest": "0.1.7" + }, + "maintainers": [ + { + "name": "jakeluer", + "email": "jake.luer@incatern.com" + } + ], + "time": { + "modified": "2011-11-29T17:03:45.874Z", + "created": "2011-10-14T05:42:04.424Z", + "0.0.1": "2011-10-14T05:42:05.064Z", + "0.0.2": "2011-10-14T05:54:48.165Z", + "0.0.3": "2011-10-15T01:42:51.028Z", + "0.0.4": "2011-10-15T02:46:41.958Z", + "0.1.0": "2011-10-15T22:59:00.367Z", + "0.1.1": "2011-10-18T02:51:53.202Z", + "0.1.2": "2011-10-25T14:17:50.814Z", + "0.1.3": "2011-10-25T19:36:01.549Z", + "0.1.4": "2011-10-26T00:57:44.511Z", + "0.1.5": "2011-10-26T09:18:54.776Z", + "0.1.6": "2011-10-26T18:34:51.624Z", + "0.1.7": "2011-11-29T17:03:45.874Z" + }, + "author": { + "name": "Jake luer", + "email": "jake@alogicalparadox.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/logicalparadox/tea.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tea/0.0.1", + "0.0.2": "http://registry.npmjs.org/tea/0.0.2", + "0.0.3": "http://registry.npmjs.org/tea/0.0.3", + "0.0.4": "http://registry.npmjs.org/tea/0.0.4", + "0.1.0": "http://registry.npmjs.org/tea/0.1.0", + "0.1.1": "http://registry.npmjs.org/tea/0.1.1", + "0.1.2": "http://registry.npmjs.org/tea/0.1.2", + "0.1.3": "http://registry.npmjs.org/tea/0.1.3", + "0.1.4": "http://registry.npmjs.org/tea/0.1.4", + "0.1.5": "http://registry.npmjs.org/tea/0.1.5", + "0.1.6": "http://registry.npmjs.org/tea/0.1.6", + "0.1.7": "http://registry.npmjs.org/tea/0.1.7" + }, + "dist": { + "0.0.1": { + "shasum": "35200709fcea2aa9cd4a9565d9d1ab92d8b67d1b", + "tarball": "http://registry.npmjs.org/tea/-/tea-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "bace38391bca9dc6f0bba90d610cf9ef37c6632e", + "tarball": "http://registry.npmjs.org/tea/-/tea-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "8350b49017ceed0b739fecb1141c78331a880f5b", + "tarball": "http://registry.npmjs.org/tea/-/tea-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "180664cf887577571a62dc6dda4fc6b505c1c6aa", + "tarball": "http://registry.npmjs.org/tea/-/tea-0.0.4.tgz" + }, + "0.1.0": { + "shasum": "65df2e1a865eca0e585328f12809c7e8a485dcec", + "tarball": "http://registry.npmjs.org/tea/-/tea-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "95079739bceb7a11c171afbcbf14f6408acd7b0d", + "tarball": "http://registry.npmjs.org/tea/-/tea-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "614a4a422be1f75dcdbd39a84c18aebb407c359b", + "tarball": "http://registry.npmjs.org/tea/-/tea-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "82d486878f58da022deec1f117eea595052e6fe6", + "tarball": "http://registry.npmjs.org/tea/-/tea-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "ed2565cdaf2fbf2747f2667e4fed0eee01a1b39e", + "tarball": "http://registry.npmjs.org/tea/-/tea-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "eecaa8cd09c988825b7a62da8c037208045f6b1f", + "tarball": "http://registry.npmjs.org/tea/-/tea-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "2da4299bd46c3fa6c4a4925ecd629e2d36e01ab3", + "tarball": "http://registry.npmjs.org/tea/-/tea-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "76e7e45bec07237746e3bace9890139adef83c9e", + "tarball": "http://registry.npmjs.org/tea/-/tea-0.1.7.tgz" + } + }, + "url": "http://registry.npmjs.org/tea/" + }, + "teamgrowl": { + "name": "teamgrowl", + "description": "Distributed growling across the web", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "deedubs", + "email": "dan@rocketlabsdev.com" + } + ], + "author": { + "name": "Dan Williams" + }, + "repository": { + "type": "git", + "url": "http://github.com/rocketlabsdev/teamgrowl" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/teamgrowl/0.0.1", + "0.0.1-beta": "http://registry.npmjs.org/teamgrowl/0.0.1-beta" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/teamgrowl/-/teamgrowl-0.0.1.tgz" + }, + "0.0.1-beta": { + "tarball": "http://packages:5984/teamgrowl/-/teamgrowl-0.0.1-beta.tgz" + } + }, + "keywords": [ + "growl", + "http", + "post" + ], + "url": "http://registry.npmjs.org/teamgrowl/" + }, + "teamgrowl-server": { + "name": "teamgrowl-server", + "description": "Server Component for teamgrowl", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "deedubs", + "email": "dan@rocketlabsdev.com" + } + ], + "author": { + "name": "Dan Williams" + }, + "repository": { + "type": "git", + "url": "http://github.com/rocketlabsdev/teamgrowl-server" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/teamgrowl-server/0.0.1", + "0.0.1-beta": "http://registry.npmjs.org/teamgrowl-server/0.0.1-beta" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/teamgrowl-server/-/teamgrowl-server-0.0.1.tgz" + }, + "0.0.1-beta": { + "tarball": "http://packages:5984/teamgrowl-server/-/teamgrowl-server-0.0.1-beta.tgz" + } + }, + "keywords": [ + "growl", + "http", + "post" + ], + "url": "http://registry.npmjs.org/teamgrowl-server/" + }, + "technicolor": { + "name": "technicolor", + "description": "Use node to remind yourself of Teletext.", + "dist-tags": { + "latest": "0.1.2" + }, + "readme": null, + "maintainers": [ + { + "name": "sjltaylor", + "email": "sjltaylor@gmail.com" + } + ], + "time": { + "modified": "2011-11-05T23:55:31.454Z", + "created": "2011-11-05T23:26:03.027Z", + "0.1.0": "2011-11-05T23:26:39.661Z", + "0.1.2": "2011-11-05T23:55:31.454Z" + }, + "author": { + "name": "Sam Taylor", + "email": "sjltaylor@gmail.com" + }, + "repository": { + "url": "git@github.com:sjltaylor/technicolor.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/technicolor/0.1.0", + "0.1.2": "http://registry.npmjs.org/technicolor/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "4a56afb9178fee2ddb2f5a6e8805b492fccc4cdf", + "tarball": "http://registry.npmjs.org/technicolor/-/technicolor-0.1.0.tgz" + }, + "0.1.2": { + "shasum": "268a43ba737b2bf984bbaeec4eb858d8020ccdbd", + "tarball": "http://registry.npmjs.org/technicolor/-/technicolor-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/technicolor/" + }, + "tedious": { + "name": "tedious", + "description": "A TDS driver, for connecting to MS SQLServer databases.", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "Tedious (node implementation of TDS)\n====================================\n[![Build Status](https://secure.travis-ci.org/pekim/tedious.png)](http://travis-ci.org/pekim/tedious)\n\nTedious is an implementation of the [TDS protocol](http://msdn.microsoft.com/en-us/library/dd304523.aspx),\nwhich is used to interact with instances of Microsoft's SQL Server.\n\nName\n----\n_Tedious_ is simply derived from a fast, slightly garbled, pronunciation of the letters T, D and S. \n\nStatus\n------\nTedious is just about useable for simple statements.\n\n- Session establishment and authentication work.\n- Sending SQL statements (in a `SQL_BATCH` packet) works for some simple statements.\n - Many simple data types are supported.\n - An event for column metadata in the response is emitted.\n - Events for each row in the response are emitted.\n\nThere's still a lot that needs doing.\n\n- Support for more data types.\n- The API needs to change to support statement execution with a Statement class.\n- Decoding of column metadata flags.\n- Decoding of collation data.\n- Ability to cancel a request.\n- Support for transactions.\n- Better support for large values (for example integers over 53 bits).\n\nDocumentation\n-------------\nMore documentation is available at [pekim.github.com/tedious/](http://pekim.github.com/tedious/)\n\nLicence\n-------\n(The MIT License)\n\nCopyright (c) 2010-2011 Mike D Pilsbury\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n", + "maintainers": [ + { + "name": "pekim", + "email": "mike.pilsbury@gmail.com" + } + ], + "time": { + "modified": "2011-12-04T21:55:09.620Z", + "created": "2011-12-04T21:55:08.096Z", + "0.0.1": "2011-12-04T21:55:09.620Z" + }, + "author": { + "name": "Mike D Pilsbury", + "email": "mike.pilsbury@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/pekim/tedious.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tedious/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "7985b400f70ce6f12ec504a541ea63540d59fca8", + "tarball": "http://registry.npmjs.org/tedious/-/tedious-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/tedious/" + }, + "telehash": { + "name": "telehash", + "description": "A new wire protocol enabling applications to connect directly in a real-time and fully distributed manner, freeing them from relying on centralized datacenters", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "casey", + "email": "casey.marshall@gmail.com" + } + ], + "author": { + "name": "Jeremie Miller", + "email": "jeremie@jabber.org" + }, + "repository": { + "type": "git", + "url": "http://github.com/quartzjer/TeleHash.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/telehash/0.0.0" + }, + "dist": { + "0.0.0": { + "tarball": "http://packages:5984/telehash/-/telehash-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/telehash/" + }, + "telemail": { + "name": "telemail", + "description": "telehash based mail system", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "tjgillies", + "email": "tjgillies@gmail.com" + } + ], + "time": { + "modified": "2011-09-11T04:58:26.933Z", + "created": "2011-09-11T04:58:25.617Z", + "0.1.0": "2011-09-11T04:58:26.933Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/telemail/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "f71e414f72cf32e31dbb500e505b4f103a7a9337", + "tarball": "http://registry.npmjs.org/telemail/-/telemail-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/telemail/" + }, + "telemetry": { + "name": "telemetry", + "description": "a simple telemetry server written in Node.js", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "thinkjson", + "email": "mark+npm@thinkjson.com" + } + ], + "time": { + "modified": "2011-10-24T13:50:53.597Z", + "created": "2011-10-24T13:50:53.276Z", + "0.0.5": "2011-10-24T13:50:53.597Z" + }, + "author": { + "name": "Mark Cahill", + "email": "mark+npm@thinkjson.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/OSBI/node-telemetry.git" + }, + "versions": { + "0.0.5": "http://registry.npmjs.org/telemetry/0.0.5" + }, + "dist": { + "0.0.5": { + "shasum": "21190deeda56ff4f830afbfecabc1d7377de6002", + "tarball": "http://registry.npmjs.org/telemetry/-/telemetry-0.0.5.tgz" + } + }, + "keywords": [ + "Loggly", + "log", + "telemetry", + "firebug", + "firephp" + ], + "url": "http://registry.npmjs.org/telemetry/" + }, + "teleport": { + "name": "teleport", + "description": "CommonJS modules 1.0 loader for browsers.", + "dist-tags": { + "latest": "0.3.2" + }, + "maintainers": [ + { + "name": "gozala", + "email": "rfobic@gmail.com" + } + ], + "repository": { + "type": "git", + "url": "git://github.com/Gozala/teleport.git" + }, + "time": { + "modified": "2011-02-24T17:56:57.636Z", + "created": "2011-01-10T16:55:10.083Z", + "0.2.0": "2011-01-10T16:55:10.083Z", + "0.2.1": "2011-01-10T16:55:10.083Z", + "0.2.2": "2011-01-10T16:55:10.083Z", + "0.2.3": "2011-01-10T16:55:10.083Z", + "0.2.4": "2011-01-10T16:55:10.083Z", + "0.2.5": "2011-01-10T22:23:53.861Z", + "0.2.6": "2011-01-15T16:46:46.835Z", + "0.2.7": "2011-01-31T11:35:48.016Z", + "0.2.8": "2011-01-31T12:33:10.622Z", + "0.2.9": "2011-02-17T00:20:59.006Z", + "0.2.10": "2011-02-21T16:09:29.501Z", + "0.3.0": "2011-02-24T16:32:16.117Z", + "0.3.1": "2011-02-24T16:47:44.872Z", + "0.3.2": "2011-02-24T17:56:57.636Z" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/teleport/0.2.0", + "0.2.1": "http://registry.npmjs.org/teleport/0.2.1", + "0.2.2": "http://registry.npmjs.org/teleport/0.2.2", + "0.2.3": "http://registry.npmjs.org/teleport/0.2.3", + "0.2.4": "http://registry.npmjs.org/teleport/0.2.4", + "0.2.5": "http://registry.npmjs.org/teleport/0.2.5", + "0.2.6": "http://registry.npmjs.org/teleport/0.2.6", + "0.2.7": "http://registry.npmjs.org/teleport/0.2.7", + "0.2.8": "http://registry.npmjs.org/teleport/0.2.8", + "0.2.9": "http://registry.npmjs.org/teleport/0.2.9", + "0.2.10": "http://registry.npmjs.org/teleport/0.2.10", + "0.3.0": "http://registry.npmjs.org/teleport/0.3.0", + "0.3.1": "http://registry.npmjs.org/teleport/0.3.1", + "0.3.2": "http://registry.npmjs.org/teleport/0.3.2" + }, + "dist": { + "0.2.0": { + "tarball": "http://registry.npmjs.org/teleport/-/teleport-0.2.0.tgz" + }, + "0.2.1": { + "tarball": "http://registry.npmjs.org/teleport/-/teleport-0.2.1.tgz" + }, + "0.2.2": { + "tarball": "http://registry.npmjs.org/teleport/-/teleport-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "f6e129ffd940709e471892c269e7e7bd61648de3", + "tarball": "http://registry.npmjs.org/teleport/-/teleport-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "853de50fb0a229cbb6ec4e7b6125b11e29d24820", + "tarball": "http://registry.npmjs.org/teleport/-/teleport-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "8e7cacb59bf2ab01ba7da103e98e40b8bec0214a", + "tarball": "http://registry.npmjs.org/teleport/-/teleport-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "01b3a830849a4d5d4561e55248d4fdd8314507d6", + "tarball": "http://registry.npmjs.org/teleport/-/teleport-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "52776d67bbf288c0c87ca1a8ce4650e8708650ef", + "tarball": "http://registry.npmjs.org/teleport/-/teleport-0.2.7.tgz" + }, + "0.2.8": { + "shasum": "c21641d7e91beff404163edbefecd394e3c6e193", + "tarball": "http://registry.npmjs.org/teleport/-/teleport-0.2.8.tgz" + }, + "0.2.9": { + "shasum": "07ba3b13473532cf141444dbd1e28fbef6ef4f49", + "tarball": "http://registry.npmjs.org/teleport/-/teleport-0.2.9.tgz" + }, + "0.2.10": { + "shasum": "ebb25bf7c6a0e44c473307c6544a8050b434a68d", + "tarball": "http://registry.npmjs.org/teleport/-/teleport-0.2.10.tgz" + }, + "0.3.0": { + "shasum": "71a3f6cd803b4e135db39119adb7b2cfb755e5a3", + "tarball": "http://registry.npmjs.org/teleport/-/teleport-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "5d43013869c7ba22cde6fd8cd8578b50eb237f5c", + "tarball": "http://registry.npmjs.org/teleport/-/teleport-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "66e3175a7f7e7885826414cb36e38a9a824d7075", + "tarball": "http://registry.npmjs.org/teleport/-/teleport-0.3.2.tgz" + } + }, + "keywords": [ + "commonjs", + "modules", + "require" + ], + "url": "http://registry.npmjs.org/teleport/" + }, + "teleport-dashboard": { + "name": "teleport-dashboard", + "description": "Teleport dashboard", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "gozala", + "email": "rfobic@gmail.com" + } + ], + "time": { + "modified": "2011-02-02T16:26:11.770Z", + "created": "2011-01-30T14:43:36.570Z", + "0.0.2": "2011-01-30T14:43:37.362Z", + "0.0.4": "2011-01-31T11:26:04.752Z", + "0.0.5": "2011-02-02T16:26:11.770Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/Gozala/teleport-dashboard.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/teleport-dashboard/0.0.2", + "0.0.4": "http://registry.npmjs.org/teleport-dashboard/0.0.4", + "0.0.5": "http://registry.npmjs.org/teleport-dashboard/0.0.5" + }, + "dist": { + "0.0.2": { + "shasum": "e125b66162522d69193d6d777c8524c14465c2f4", + "tarball": "http://registry.npmjs.org/teleport-dashboard/-/teleport-dashboard-0.0.2.tgz" + }, + "0.0.4": { + "shasum": "dab9de1a7f92eddc2e4d8ee1e7f5218b2b851dd3", + "tarball": "http://registry.npmjs.org/teleport-dashboard/-/teleport-dashboard-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "b19bd89a658c7095bd18f749ddae2dfd2774eb84", + "tarball": "http://registry.npmjs.org/teleport-dashboard/-/teleport-dashboard-0.0.5.tgz" + } + }, + "keywords": [ + "teleport", + "dashboard", + "packages", + "dependencies" + ], + "url": "http://registry.npmjs.org/teleport-dashboard/" + }, + "teleport-site": { + "name": "teleport-site", + "description": "Teleport site.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "gozala", + "email": "rfobic@gmail.com" + } + ], + "time": { + "modified": "2011-02-24T17:48:21.955Z", + "created": "2011-02-24T17:48:21.563Z", + "0.1.0": "2011-02-24T17:48:21.955Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/Gozala/teleport.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/teleport-site/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "4357c49823d75e329264b283351870544be4f5de", + "tarball": "http://registry.npmjs.org/teleport-site/-/teleport-site-0.1.0.tgz" + } + }, + "keywords": [ + "teleport" + ], + "url": "http://registry.npmjs.org/teleport-site/" + }, + "teleportd-api": { + "name": "teleportd-api", + "description": "NodeJS Driver for teleportd API", + "dist-tags": { + "latest": "0.1.6" + }, + "readme": null, + "maintainers": [ + { + "name": "spolu", + "email": "stan@bipsly.com" + } + ], + "time": { + "modified": "2011-12-05T17:38:23.248Z", + "created": "2011-11-23T08:23:21.504Z", + "0.1.0": "2011-11-23T08:23:22.824Z", + "0.1.1": "2011-11-28T08:25:06.918Z", + "0.1.2": "2011-12-05T00:30:53.699Z", + "0.1.3": "2011-12-05T11:38:04.438Z", + "0.1.4": "2011-12-05T17:21:09.299Z", + "0.1.5": "2011-12-05T17:35:18.442Z", + "0.1.6": "2011-12-05T17:38:23.248Z" + }, + "author": { + "name": "Stanislas Polu", + "email": "stan@teleportd.com", + "url": "http://twitter.com/spolu" + }, + "repository": { + "type": "git", + "url": "git://github.com/teleportd/api-node.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/teleportd-api/0.1.0", + "0.1.1": "http://registry.npmjs.org/teleportd-api/0.1.1", + "0.1.2": "http://registry.npmjs.org/teleportd-api/0.1.2", + "0.1.3": "http://registry.npmjs.org/teleportd-api/0.1.3", + "0.1.4": "http://registry.npmjs.org/teleportd-api/0.1.4", + "0.1.5": "http://registry.npmjs.org/teleportd-api/0.1.5", + "0.1.6": "http://registry.npmjs.org/teleportd-api/0.1.6" + }, + "dist": { + "0.1.0": { + "shasum": "bbd2999f796a3102457966411c0f9c5f0b1d5861", + "tarball": "http://registry.npmjs.org/teleportd-api/-/teleportd-api-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "3f4447a91603b40b7ab088e57d4d1c98e07809d2", + "tarball": "http://registry.npmjs.org/teleportd-api/-/teleportd-api-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "6437e1490522ab96ba716feef3d9562533f0ce7e", + "tarball": "http://registry.npmjs.org/teleportd-api/-/teleportd-api-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "b6ddb47aef19a0386168b1c49733340e3ca21220", + "tarball": "http://registry.npmjs.org/teleportd-api/-/teleportd-api-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "53329815cc1aaae7f8d718830290de8d83fee4b4", + "tarball": "http://registry.npmjs.org/teleportd-api/-/teleportd-api-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "75ff9781ad194482b0b12c945e821b01d4799c73", + "tarball": "http://registry.npmjs.org/teleportd-api/-/teleportd-api-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "1e7bc4f708396c5e6b310f9ce1ddfc08ea9b64c3", + "tarball": "http://registry.npmjs.org/teleportd-api/-/teleportd-api-0.1.6.tgz" + } + }, + "url": "http://registry.npmjs.org/teleportd-api/" + }, + "telnet": { + "name": "telnet", + "description": "Telnet library", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "eirikb", + "email": "eirikb@eirikb.no" + } + ], + "time": { + "modified": "2011-12-04T00:21:23.012Z", + "created": "2011-08-10T06:32:42.585Z", + "0.0.2": "2011-08-10T06:32:51.659Z", + "0.0.3": "2011-08-21T13:28:45.467Z", + "0.0.4": "2011-08-21T13:46:25.252Z", + "0.0.5": "2011-12-04T00:21:23.012Z" + }, + "author": { + "name": "Eirik Brandtzæg", + "email": "eirikb@eirikb.no" + }, + "repository": { + "type": "git", + "url": "git://github.com/eirikb/telnet.js.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/telnet/0.0.2", + "0.0.3": "http://registry.npmjs.org/telnet/0.0.3", + "0.0.4": "http://registry.npmjs.org/telnet/0.0.4", + "0.0.5": "http://registry.npmjs.org/telnet/0.0.5" + }, + "dist": { + "0.0.2": { + "shasum": "e3773350494e5a37d192b54a21b8a673a003ed0f", + "tarball": "http://registry.npmjs.org/telnet/-/telnet-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "db81771a6e0728f6a30af100d539c68f42d5f4be", + "tarball": "http://registry.npmjs.org/telnet/-/telnet-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "9fda16fbdd3c7ee2d5ae56b60e31d99084e6f63b", + "tarball": "http://registry.npmjs.org/telnet/-/telnet-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "08f4b17e3e215c16f82bfc1a11dec189c98de370", + "tarball": "http://registry.npmjs.org/telnet/-/telnet-0.0.5.tgz" + } + }, + "keywords": [ + "util", + "server", + "telnet" + ], + "url": "http://registry.npmjs.org/telnet/" + }, + "telnet-protocol": { + "name": "telnet-protocol", + "description": "Telnet protocol support", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "year2013", + "email": "steven.m.reed@gmail.com" + } + ], + "time": { + "modified": "2011-08-20T21:20:48.716Z", + "created": "2011-08-20T21:20:46.394Z", + "0.1.0": "2011-08-20T21:20:48.716Z" + }, + "author": { + "name": "Steve Reed", + "email": "steven.m.reed@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/year2013/node-telnet.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/telnet-protocol/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "b294bff906f994f09bffa107c8f6d41d571610b4", + "tarball": "http://registry.npmjs.org/telnet-protocol/-/telnet-protocol-0.1.0.tgz" + } + }, + "keywords": [ + "telnet", + "protocol" + ], + "url": "http://registry.npmjs.org/telnet-protocol/" + }, + "temp": { + "name": "temp", + "description": "Temporary files and directories", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "bruce", + "email": "bruce@codefluency.com" + } + ], + "author": { + "name": "Bruce Williams", + "email": "bruce@codefluency.com" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/temp/0.2.0" + }, + "dist": { + "0.2.0": { + "tarball": "http://packages:5984/temp/-/temp-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/temp/" + }, + "tempis": { + "name": "tempis", + "description": "a native node.js git client", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "chrisdickinson", + "email": "chris@neversaw.us" + } + ], + "time": { + "modified": "2011-01-18T04:59:53.311Z", + "created": "2011-01-18T04:59:53.087Z", + "0.0.1": "2011-01-18T04:59:53.311Z" + }, + "author": { + "name": "Chris Dickinson" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tempis/0.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/tempis/-/tempis-0.0.1.tgz" + } + }, + "keywords": [ + "git", + "dvcs", + "vcs", + "versioning" + ], + "url": "http://registry.npmjs.org/tempis/" + }, + "Templ8": { + "name": "Templ8", + "description": "JavaScript Client/ Server Template Engine", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "constantology", + "email": "constantology@gmail.com" + } + ], + "time": { + "modified": "2011-10-25T12:04:43.386Z", + "created": "2011-07-14T09:52:30.396Z", + "0.1.7": "2011-07-14T09:52:30.957Z", + "0.1.8": "2011-08-01T08:13:07.116Z", + "0.1.9": "2011-08-28T12:36:03.137Z", + "0.2.0": "2011-08-29T11:01:39.969Z", + "0.2.1": "2011-09-04T07:44:28.406Z", + "0.3.0": "2011-10-25T12:04:43.386Z" + }, + "author": { + "name": "constantology", + "email": "constantology@gmail.com", + "url": "http://muigui.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:constantology/Templ8.git" + }, + "versions": { + "0.1.7": "http://registry.npmjs.org/Templ8/0.1.7", + "0.1.8": "http://registry.npmjs.org/Templ8/0.1.8", + "0.1.9": "http://registry.npmjs.org/Templ8/0.1.9", + "0.2.0": "http://registry.npmjs.org/Templ8/0.2.0", + "0.2.1": "http://registry.npmjs.org/Templ8/0.2.1", + "0.3.0": "http://registry.npmjs.org/Templ8/0.3.0" + }, + "dist": { + "0.1.7": { + "shasum": "a0136813199f34d615ff07435a34f3e60ac91a9e", + "tarball": "http://registry.npmjs.org/Templ8/-/Templ8-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "aca8d677753aa971a83a045db4442cd77e6a4bad", + "tarball": "http://registry.npmjs.org/Templ8/-/Templ8-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "5a63381fd316f5c7fdb0f5100d585a2fe5e76be4", + "tarball": "http://registry.npmjs.org/Templ8/-/Templ8-0.1.9.tgz" + }, + "0.2.0": { + "shasum": "35ed3d1316ead806b30ebd088affc6ba72ce9f45", + "tarball": "http://registry.npmjs.org/Templ8/-/Templ8-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "75d97971545256916e5f4cff3c8de39ee70cd45d", + "tarball": "http://registry.npmjs.org/Templ8/-/Templ8-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "3dc8f631b0033956c2aedd6c40a2108e34dc978f", + "tarball": "http://registry.npmjs.org/Templ8/-/Templ8-0.3.0.tgz" + } + }, + "keywords": [ + "template", + "tpl", + "Templ8" + ], + "url": "http://registry.npmjs.org/Templ8/" + }, + "template": { + "name": "template", + "description": "A node.js module for lightweight templating.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "myfreeweb", + "email": "me@myfreeweb.ru" + } + ], + "author": { + "name": "Diogo Gomes", + "email": "maushu@graphnode.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/template/0.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/template/-/template-0.0.1.tgz" + } + }, + "keywords": [ + "template", + "engine", + "web" + ], + "url": "http://registry.npmjs.org/template/" + }, + "Template": { + "name": "Template", + "dist-tags": { + "latest": "0.4.0" + }, + "maintainers": [ + { + "name": "myfreeweb", + "email": "me@myfreeweb.ru" + } + ], + "versions": { + "0.4.0": "http://registry.npmjs.org/Template/0.4.0" + }, + "dist": { + "0.4.0": { + "tarball": "http://packages:5984/Template/-/Template-0.4.0.tgz" + } + }, + "url": "http://registry.npmjs.org/Template/" + }, + "template-engine": { + "name": "template-engine", + "description": "Engine that renders templates of any kind", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "dreamlab", + "email": "janecki@gmail.com" + } + ], + "time": { + "modified": "2011-11-23T08:59:18.582Z", + "created": "2011-10-07T10:55:34.185Z", + "0.0.1": "2011-10-07T10:55:36.253Z", + "0.0.2": "2011-10-07T11:41:54.791Z", + "0.0.3": "2011-10-07T16:40:21.125Z", + "0.0.4": "2011-10-24T12:54:31.022Z", + "0.0.5": "2011-11-23T08:59:18.582Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/template-engine/0.0.1", + "0.0.2": "http://registry.npmjs.org/template-engine/0.0.2", + "0.0.3": "http://registry.npmjs.org/template-engine/0.0.3", + "0.0.4": "http://registry.npmjs.org/template-engine/0.0.4", + "0.0.5": "http://registry.npmjs.org/template-engine/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "2a451043b65c84e3b7762a18a8e090d620e7a4ba", + "tarball": "http://registry.npmjs.org/template-engine/-/template-engine-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "364c6be377a010e657b049d57a6698c4ff602041", + "tarball": "http://registry.npmjs.org/template-engine/-/template-engine-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "9e6e428a7ccd072e2442985b5be35372e8da545a", + "tarball": "http://registry.npmjs.org/template-engine/-/template-engine-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "2ba9c60302044ae00996bd169e5c54023e4becd3", + "tarball": "http://registry.npmjs.org/template-engine/-/template-engine-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "9c510db7dedd153e548faff32c7a0ffbc0db41b4", + "tarball": "http://registry.npmjs.org/template-engine/-/template-engine-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/template-engine/" + }, + "template.js": { + "name": "template.js", + "description": "A fast django-like templating engine for node.js", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "stanislavfeldman", + "email": "stanislavfeldman@gmail.com" + } + ], + "time": { + "modified": "2011-09-23T11:38:29.024Z", + "created": "2011-09-23T11:38:26.071Z", + "0.1.0": "2011-09-23T11:38:29.024Z" + }, + "author": { + "name": "Stanislav Feldman", + "email": "stanislavfeldman@gmail.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:stanislavfeldman/template.js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/template.js/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "5f83480178c3aff37b6982a7e07097ee75fa66c7", + "tarball": "http://registry.npmjs.org/template.js/-/template.js-0.1.0.tgz" + } + }, + "keywords": [ + "template", + "html", + "django" + ], + "url": "http://registry.npmjs.org/template.js/" + }, + "templatr": { + "name": "templatr", + "description": "Parses HTML templates for use as middleware", + "dist-tags": { + "latest": "0.0.5" + }, + "readme": null, + "maintainers": [ + { + "name": "steveukx", + "email": "steve@mydev.co" + } + ], + "time": { + "modified": "2011-11-20T07:25:08.227Z", + "created": "2011-11-12T08:23:39.805Z", + "0.0.1": "2011-11-12T08:23:41.126Z", + "0.0.2": "2011-11-14T22:52:08.924Z", + "0.0.3": "2011-11-17T19:44:24.910Z", + "0.0.4": "2011-11-19T09:14:50.286Z", + "0.0.5": "2011-11-20T07:25:08.227Z" + }, + "author": { + "name": "Steve King", + "email": "steve@mydev.co" + }, + "repository": { + "type": "git", + "url": "git://github.com/steveukx/templatr.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/templatr/0.0.1", + "0.0.2": "http://registry.npmjs.org/templatr/0.0.2", + "0.0.3": "http://registry.npmjs.org/templatr/0.0.3", + "0.0.4": "http://registry.npmjs.org/templatr/0.0.4", + "0.0.5": "http://registry.npmjs.org/templatr/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "6e5409b8c289dfa09427f3eb87fc2cc3e8238645", + "tarball": "http://registry.npmjs.org/templatr/-/templatr-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "010bc109e39a95fab4090f37f5a3d49a1520ff38", + "tarball": "http://registry.npmjs.org/templatr/-/templatr-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "f1fc34e3dad53d7d6f10c83c716dc068a63eeb1a", + "tarball": "http://registry.npmjs.org/templatr/-/templatr-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "7c20e4314f3ed4ad1aa06670430b91240e6f7dc0", + "tarball": "http://registry.npmjs.org/templatr/-/templatr-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "36dd88f0de796b3d5cad61dfb19ff14ab62e60f8", + "tarball": "http://registry.npmjs.org/templatr/-/templatr-0.0.5.tgz" + } + }, + "keywords": [ + "template", + "middleware", + "html", + "preprocess" + ], + "url": "http://registry.npmjs.org/templatr/" + }, + "templify": { + "name": "templify", + "description": "A simple template system originally based on zparse", + "dist-tags": { + "latest": "0.9.0" + }, + "readme": null, + "maintainers": [ + { + "name": "dojofoundation", + "email": "kzyp@dojofoundation.org" + } + ], + "time": { + "modified": "2011-11-16T17:30:49.852Z", + "created": "2011-11-16T17:30:48.942Z", + "0.9.0": "2011-11-16T17:30:49.852Z" + }, + "author": { + "name": "Dustin Machi" + }, + "versions": { + "0.9.0": "http://registry.npmjs.org/templify/0.9.0" + }, + "dist": { + "0.9.0": { + "shasum": "dede0f3f3fba5df73eb0a4e4abd136bb853f3611", + "tarball": "http://registry.npmjs.org/templify/-/templify-0.9.0.tgz" + } + }, + "keywords": [ + "template", + "persevere" + ], + "url": "http://registry.npmjs.org/templify/" + }, + "tempPath": { + "name": "tempPath", + "description": "Try to find the system's temporary path.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "bluejeansandrain", + "email": "bluejeansandrain@gmail.com" + } + ], + "time": { + "modified": "2011-08-28T18:01:39.955Z", + "created": "2011-08-28T18:01:39.614Z", + "0.1.0": "2011-08-28T18:01:39.955Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/tempPath/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "e3e657134c863460826a8c980128c4aadc93f778", + "tarball": "http://registry.npmjs.org/tempPath/-/tempPath-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/tempPath/" + }, + "tengwar": { + "name": "tengwar", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "kriskowal", + "email": "kris@cixar.com" + } + ], + "time": { + "modified": "2011-09-18T21:05:52.539Z", + "created": "2011-09-18T21:05:51.275Z", + "0.0.0": "2011-09-18T21:05:52.539Z" + }, + "author": { + "name": "Kris Kowal", + "email": "kris@cixar.com", + "url": "http://github.com/kriskowal/" + }, + "repository": { + "type": "git", + "url": "git://github.com/kriskowal/tengwarjs.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/tengwar/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "0b66462b4b68ec4d75ab944fe719a590fa7940ea", + "tarball": "http://registry.npmjs.org/tengwar/-/tengwar-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/tengwar/" + }, + "tenjin": { + "name": "tenjin", + "description": "A high performance template engine base on node.js.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "fengmk2", + "email": "fengmk2@gmail.com" + } + ], + "time": { + "modified": "2011-04-30T09:54:13.506Z", + "created": "2011-04-30T09:46:10.867Z", + "0.1.0": "2011-04-30T09:46:11.772Z", + "0.1.1": "2011-04-30T09:54:13.506Z" + }, + "author": { + "name": "QLeelulu", + "email": "qleelulu@gmail.com", + "url": "http://qleelulu.cnblogs.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/QLeelulu/nTenjin.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/tenjin/0.1.0", + "0.1.1": "http://registry.npmjs.org/tenjin/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "3a38bb905aaf59490931eea746e7e1253a973471", + "tarball": "http://registry.npmjs.org/tenjin/-/tenjin-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "bcae636837d1a67d57e676355d35860eca1e8975", + "tarball": "http://registry.npmjs.org/tenjin/-/tenjin-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/tenjin/" + }, + "teriaki": { + "name": "teriaki", + "description": "Watches & syncs a folder recursively into a riak bucket.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "evilhackerdude", + "email": "evilhackerdude@gmail.com" + } + ], + "time": { + "modified": "2011-06-24T00:12:34.560Z", + "created": "2011-06-24T00:12:33.929Z", + "0.1.0": "2011-06-24T00:12:34.560Z" + }, + "author": { + "name": "Stephan Seidt", + "email": "evilhackerdude@gmail.com", + "url": "https://evilhackerdu.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/evilhackerdude/teriaki.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/teriaki/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "2c39a03bce5bd1142e124c258412731556584c27", + "tarball": "http://registry.npmjs.org/teriaki/-/teriaki-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/teriaki/" + }, + "term-canvas": { + "name": "term-canvas", + "description": "Terminal canvas api written with node.js", + "dist-tags": { + "latest": "0.0.4" + }, + "readme": "\n# term-canvas\n\n experimental html canvas API for the terminal written with node.js.\n\n## Screenshots\n\n States:\n\n ![state](http://f.cl.ly/items/0H1E3u371y1o3q2l2G2p/Grab.png)\n\n Rects:\n \n ![rects](http://f.cl.ly/items/3v3F3j2C0Q3H3t1C0r29/Grab.png)\n\n## Examples\n\n Static colored rects with no draw loop:\n\n```js\nvar Canvas = require('../');\n\nvar canvas = new Canvas(50, 100)\n , ctx = canvas.getContext('2d');\n\nctx.fillStyle = 'red';\nctx.fillRect(5, 5, 20, 10);\n\nctx.fillStyle = 'blue';\nctx.fillRect(27, 5, 20, 10);\n\nctx.fillStyle = 'yellow';\nctx.fillRect(49, 5, 20, 10);\n\nconsole.log('\\n\\n\\n');\nctx.resetState();\n\n```\n\n Some random moving rects with a draw loop:\n \n```js\nvar Canvas = require('../')\n , size = process.stdout.getWindowSize();\n\nprocess.on('SIGINT', function(){\n ctx.reset();\n process.nextTick(function(){\n process.exit();\n });\n});\n\nprocess.on('SIGWINCH', function(){\n size = process.stdout.getWindowSize();\n canvas.width = size[0];\n canvas.height = size[1];\n});\n\nvar canvas = new Canvas(size[10], size[1])\n , ctx = canvas.getContext('2d')\n , x = 1\n , sx = 2\n , x2 = 1\n , sx2 = 1;\n\nctx.hideCursor();\nsetInterval(function(){\n ctx.clearRect(0, 0, canvas.width, canvas.height);\n ctx.strokeStyle = 'blue';\n ctx.strokeRect(1, 1, canvas.width - 1, canvas.height - 1);\n ctx.strokeStyle = 'green';\n ctx.strokeRect(x += sx, 2, 30, 5);\n ctx.fillStyle = 'yellow';\n ctx.fillRect(x2 += sx2, 5, 10, 5);\n ctx.moveTo(0, 10);\n if (x + 30 >= canvas.width || x <= 1) sx = -sx;\n if (x2 + 10 >= canvas.width || x2 <= 1) sx2 = -sx2; \n}, 1000 / 20);\n```\n\n## License \n\n(The MIT License)\n\nCopyright (c) 2011 TJ Holowaychuk <tj@vision-media.ca>\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "time": { + "modified": "2011-12-06T02:26:59.668Z", + "created": "2011-11-20T23:32:29.135Z", + "0.0.2": "2011-11-20T23:32:30.789Z", + "0.0.3": "2011-11-20T23:44:38.642Z", + "0.0.4": "2011-12-06T02:26:59.668Z" + }, + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/term-canvas/0.0.2", + "0.0.3": "http://registry.npmjs.org/term-canvas/0.0.3", + "0.0.4": "http://registry.npmjs.org/term-canvas/0.0.4" + }, + "dist": { + "0.0.2": { + "shasum": "dec718cf8bee4f765bc78418eaa1a3935e71a382", + "tarball": "http://registry.npmjs.org/term-canvas/-/term-canvas-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "80c139056f1b897bdd5566b695fe00ee4949fea1", + "tarball": "http://registry.npmjs.org/term-canvas/-/term-canvas-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "38e8fe99dc843f53e7f29b6a1989f71f626aeee0", + "tarball": "http://registry.npmjs.org/term-canvas/-/term-canvas-0.0.4.tgz" + } + }, + "keywords": [ + "canvas", + "ascii", + "ansi", + "terminal", + "shell" + ], + "url": "http://registry.npmjs.org/term-canvas/" + }, + "termcamp": { + "name": "termcamp", + "description": "A command-line interface for Campfire.", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "# TermCamp\n\nTermCamp is a command-line client for Campfire written in Node.js. \n\n### Installation\n\nThe quickest and most painless way to install TermCamp is to use npm:\n\n $ npm install -g termcamp\n\nYou can can also install from source by doing something like:\n\n $ git clone git://github.com/bengl/node-termcamp.git\n $ cd node-termcamp\n $ npm install -g .\n\n### Usage\n\nTermCamp requires a subdomain of campfirenow.com, a room id (the numeric one in the URL) and an API token. For example, if the URL for the room you want to use is https://testing.campfirenow.com/room/12345 and your API token is 1111111111111111111111, then you can use TermCamp like this:\n\n $ termcamp -s testing -r 12345 -t 1111111111111111111111\n\nAlternatively you can create a JSON file that looks something like this:\n\n // example.json\n {\n \"subdomain\": \"testing\",\n \"roomid\": \"12345\",\n \"token\": \"1111111111111111111111\"\n }\n\nAnd then you can just do:\n\n $ termcamp -f example.json\n\nTo make this even easier, you can save this file in your home directory as ~/.campfire.json and it will be used at lowest priority (so you can override it with the options above).\n\nOnce started, TermCamp will show the recent message history from Campfire. You can send messages to the room by just typing them and pressing Enter. Exit with Ctrl-C.\n\n### License\n\nSee LICENSE.txt\n", + "maintainers": [ + { + "name": "bengl", + "email": "bryan@bryanenglish.com" + } + ], + "time": { + "modified": "2011-11-12T08:21:11.763Z", + "created": "2011-11-12T08:21:10.289Z", + "0.0.1": "2011-11-12T08:21:11.763Z" + }, + "author": { + "name": "Bryan English", + "email": "bryan@bryanenglish.com", + "url": "http://about.me/bengl" + }, + "repository": { + "type": "git", + "url": "git://github.com/bengl/node-termcamp.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/termcamp/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "05682d340447509309e0493978e1a3219eaf1859", + "tarball": "http://registry.npmjs.org/termcamp/-/termcamp-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/termcamp/" + }, + "termcolor": { + "name": "termcolor", + "description": "console.color", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "shinout", + "email": "shinout310@gmail.com" + } + ], + "time": { + "modified": "2011-11-14T00:24:40.792Z", + "created": "2011-10-17T05:22:40.289Z", + "0.1.0": "2011-10-17T05:22:43.034Z", + "0.1.1": "2011-10-17T06:11:44.969Z", + "0.1.3": "2011-11-14T00:24:40.792Z" + }, + "author": { + "name": "SHIN Suzuki", + "email": "shinout310@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/shinout/termcolor.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/termcolor/0.1.0", + "0.1.1": "http://registry.npmjs.org/termcolor/0.1.1", + "0.1.3": "http://registry.npmjs.org/termcolor/0.1.3" + }, + "dist": { + "0.1.0": { + "shasum": "07988f59194333253bcffc4739b46fe542e6b9b8", + "tarball": "http://registry.npmjs.org/termcolor/-/termcolor-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "23b4687e443239494bcd2e4726483760bcc6eb3f", + "tarball": "http://registry.npmjs.org/termcolor/-/termcolor-0.1.1.tgz" + }, + "0.1.3": { + "shasum": "76910c7fb4708fa83c7a1b444f0713df50a90477", + "tarball": "http://registry.npmjs.org/termcolor/-/termcolor-0.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/termcolor/" + }, + "terminal": { + "name": "terminal", + "description": "A collection of different terminal utility functions.", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "kami", + "email": "tomaz@tomaz.me" + } + ], + "time": { + "modified": "2011-11-05T13:23:01.526Z", + "created": "2011-05-17T12:09:00.190Z", + "0.1.0": "2011-05-17T12:09:00.912Z", + "0.1.1": "2011-05-19T11:28:43.341Z", + "0.1.2": "2011-05-20T18:31:17.218Z", + "0.1.3": "2011-11-05T13:23:01.526Z" + }, + "author": { + "name": "Cloudkick, Inc.", + "email": "tomaz+npm@cloudkick.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/cloudkick/node-terminal.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/terminal/0.1.0", + "0.1.1": "http://registry.npmjs.org/terminal/0.1.1", + "0.1.2": "http://registry.npmjs.org/terminal/0.1.2", + "0.1.3": "http://registry.npmjs.org/terminal/0.1.3" + }, + "dist": { + "0.1.0": { + "shasum": "afb0e27a7883d8fb9aea9322e1b147ee78beaddb", + "tarball": "http://registry.npmjs.org/terminal/-/terminal-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "d41e9d9a6d4ce6e1fb55136c3db3f52a0b0c3d76", + "tarball": "http://registry.npmjs.org/terminal/-/terminal-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "bb6ad8c75d1b76e4d7dfc18c0afa4579447e52bc", + "tarball": "http://registry.npmjs.org/terminal/-/terminal-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "2a032ff5e7c68d9d7a745d4734b2bc1b01062616", + "tarball": "http://registry.npmjs.org/terminal/-/terminal-0.1.3.tgz" + } + }, + "keywords": [ + "terminal", + "term", + "colors", + "style" + ], + "url": "http://registry.npmjs.org/terminal/" + }, + "termspeak": { + "name": "termspeak", + "description": "Utilities that enable your Node program to speak to your terminal including coloring, formatting.", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "abi", + "email": "abii@stanford.edu" + } + ], + "time": { + "modified": "2011-09-16T03:07:19.752Z", + "created": "2011-09-07T07:37:34.145Z", + "0.0.1": "2011-09-07T07:37:36.283Z", + "0.0.2": "2011-09-16T02:40:54.705Z", + "0.0.3": "2011-09-16T03:07:19.752Z" + }, + "author": { + "name": "Abi Raja", + "email": "abii@stanford.edu", + "url": "http//abi.sh" + }, + "repository": { + "type": "git", + "url": "git://github.com/abi/termspeak.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/termspeak/0.0.1", + "0.0.2": "http://registry.npmjs.org/termspeak/0.0.2", + "0.0.3": "http://registry.npmjs.org/termspeak/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "e99d1c5847af9decf98dc21823edec5fba05d43c", + "tarball": "http://registry.npmjs.org/termspeak/-/termspeak-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "efc2aa9d1fe99ca3ecb6b6c55a08f13c3a40b7bd", + "tarball": "http://registry.npmjs.org/termspeak/-/termspeak-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "b891f88737a5cc612209d7f4c2b0ac5563ce5840", + "tarball": "http://registry.npmjs.org/termspeak/-/termspeak-0.0.3.tgz" + } + }, + "keywords": [ + "cli", + "terminal", + "colors" + ], + "url": "http://registry.npmjs.org/termspeak/" + }, + "termutil": { + "name": "termutil", + "description": "terminfo & termios utility for node.js", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "ousttrue", + "email": "ousttrue@gmail.com" + } + ], + "author": { + "name": "ousttrue@gmail.com" + }, + "repository": { + "type": "git", + "url": "https://github.com/ousttrue/termutil" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/termutil/0.1.0", + "0.1.1": "http://registry.npmjs.org/termutil/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "e5cce3c81968586afc5ba069427ca0f51404fe7c", + "tarball": "http://registry.npmjs.org/termutil/-/termutil-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "2e200b5edffa735cd6f588b2e8537ad6a4824ac4", + "tarball": "http://registry.npmjs.org/termutil/-/termutil-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/termutil/" + }, + "test": { + "name": "test", + "description": "UncommonJS test runner.", + "dist-tags": { + "latest": "0.4.3" + }, + "maintainers": [ + { + "name": "gozala", + "email": "rfobic@gmail.com" + } + ], + "author": { + "name": "Irakli Gozalishvili", + "email": "rfobic@gmail.com", + "url": "http://jeditoolkit.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Gozala/test-commonjs.git", + "web": "https//github.com/Gozala/test-commonjs" + }, + "time": { + "modified": "2011-11-14T23:06:18.478Z", + "created": "2011-02-16T22:31:02.088Z", + "0.0.2": "2011-02-16T22:31:02.088Z", + "0.0.3": "2011-02-16T22:31:02.088Z", + "0.0.4": "2011-02-16T22:31:02.088Z", + "0.0.5": "2011-02-16T22:31:02.088Z", + "0.0.6": "2011-02-16T22:31:02.088Z", + "0.0.7": "2011-02-16T22:31:02.088Z", + "0.0.8": "2011-02-16T22:31:02.088Z", + "0.0.9": "2011-02-16T22:31:02.088Z", + "0.0.10": "2011-02-16T22:31:02.088Z", + "0.0.11": "2011-02-16T22:31:02.088Z", + "0.1.0": "2011-02-24T13:39:28.664Z", + "0.1.1": "2011-04-02T01:10:09.545Z", + "0.2.0": "2011-06-07T12:39:12.436Z", + "0.2.1": "2011-06-09T23:57:53.383Z", + "0.3.0": "2011-07-10T12:28:33.904Z", + "0.4.0": "2011-07-10T14:55:35.087Z", + "0.4.1": "2011-07-17T22:30:22.185Z", + "0.4.2": "2011-11-14T23:01:53.471Z", + "0.4.3": "2011-11-14T23:06:18.478Z" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/test/0.0.2", + "0.0.3": "http://registry.npmjs.org/test/0.0.3", + "0.0.4": "http://registry.npmjs.org/test/0.0.4", + "0.0.5": "http://registry.npmjs.org/test/0.0.5", + "0.0.6": "http://registry.npmjs.org/test/0.0.6", + "0.0.7": "http://registry.npmjs.org/test/0.0.7", + "0.0.8": "http://registry.npmjs.org/test/0.0.8", + "0.0.9": "http://registry.npmjs.org/test/0.0.9", + "0.0.10": "http://registry.npmjs.org/test/0.0.10", + "0.0.11": "http://registry.npmjs.org/test/0.0.11", + "0.1.0": "http://registry.npmjs.org/test/0.1.0", + "0.1.1": "http://registry.npmjs.org/test/0.1.1", + "0.2.0": "http://registry.npmjs.org/test/0.2.0", + "0.2.1": "http://registry.npmjs.org/test/0.2.1", + "0.3.0": "http://registry.npmjs.org/test/0.3.0", + "0.4.0": "http://registry.npmjs.org/test/0.4.0", + "0.4.1": "http://registry.npmjs.org/test/0.4.1", + "0.4.2": "http://registry.npmjs.org/test/0.4.2", + "0.4.3": "http://registry.npmjs.org/test/0.4.3" + }, + "dist": { + "0.0.2": { + "tarball": "http://packages:5984/test/-/test-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/test/-/test-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://packages:5984/test/-/test-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://packages:5984/test/-/test-0.0.5.tgz" + }, + "0.0.6": { + "tarball": "http://packages:5984/test/-/test-0.0.6.tgz" + }, + "0.0.7": { + "tarball": "http://packages:5984/test/-/test-0.0.7.tgz" + }, + "0.0.8": { + "tarball": "http://packages:5984/test/-/test-0.0.8.tgz" + }, + "0.0.9": { + "tarball": "http://packages:5984/test/-/test-0.0.9.tgz" + }, + "0.0.10": { + "tarball": "http://registry.npmjs.org/test/-/test-0.0.10.tgz" + }, + "0.0.11": { + "shasum": "0892941c6a08452cf2db639604f4e31e4a7a4c5e", + "tarball": "http://registry.npmjs.org/test/-/test-0.0.11.tgz" + }, + "0.1.0": { + "shasum": "176b4f94188a4e8ea33950d9f2958b95bea7478f", + "tarball": "http://registry.npmjs.org/test/-/test-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "02fde1d15a0e23b74c274146b066318424b4f033", + "tarball": "http://registry.npmjs.org/test/-/test-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "9e082995859d8e9c7716db9b306bc7d5e15f028e", + "tarball": "http://registry.npmjs.org/test/-/test-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "88aa14b8b8820a3b639597565b507b6de471cddd", + "tarball": "http://registry.npmjs.org/test/-/test-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "b7ca6e5891090ad3c7475bd325b1fff4d56e5aa2", + "tarball": "http://registry.npmjs.org/test/-/test-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "85e8db29291ad2e66d39a03013b9bb4a1fd8a135", + "tarball": "http://registry.npmjs.org/test/-/test-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "fba3c3c736bd78229f462b525c41a32aa7c9ccad", + "tarball": "http://registry.npmjs.org/test/-/test-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "e4f55eb18071f2a2a3c793111a484ccb33a4cb5d", + "tarball": "http://registry.npmjs.org/test/-/test-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "bf02e38bdeea000169e3f039726e6868827ce22b", + "tarball": "http://registry.npmjs.org/test/-/test-0.4.3.tgz" + } + }, + "keywords": [ + "test", + "commonjs", + "unit test" + ], + "url": "http://registry.npmjs.org/test/" + }, + "test_foo": { + "name": "test_foo", + "description": "a test package for shadow-npm", + "dist-tags": {}, + "maintainers": [ + { + "name": "testusertest", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-11-06T23:35:35.520Z", + "created": "2011-11-06T23:35:35.520Z" + }, + "versions": {}, + "dist": {}, + "url": "http://registry.npmjs.org/test_foo/" + }, + "test_it": { + "name": "test_it", + "dist-tags": { + "latest": "1.2.4" + }, + "maintainers": [ + { + "name": "douglas_meyer", + "email": "Douglas.Meyer@mail.com" + } + ], + "time": { + "modified": "2011-11-15T03:31:12.849Z", + "created": "2011-04-15T20:13:27.426Z", + "1.2.2": "2011-04-15T20:13:27.556Z", + "1.2.3": "2011-05-24T15:51:25.287Z", + "1.2.4": "2011-11-15T03:31:12.849Z" + }, + "author": { + "name": "Douglas Meyer", + "email": "Douglas.Meyer@mail.com" + }, + "description": "A light-weight yet complete testing framework for node.js and in-browser tests.", + "versions": { + "1.2.2": "http://registry.npmjs.org/test_it/1.2.2", + "1.2.3": "http://registry.npmjs.org/test_it/1.2.3", + "1.2.4": "http://registry.npmjs.org/test_it/1.2.4" + }, + "dist": { + "1.2.2": { + "shasum": "40ce05ddbb2aa49843bfc74af7a4705b7dd6ccff", + "tarball": "http://registry.npmjs.org/test_it/-/test_it-1.2.2.tgz" + }, + "1.2.3": { + "shasum": "58c0064ae71aa4113b8d35a36146e0bc1b1c17f8", + "tarball": "http://registry.npmjs.org/test_it/-/test_it-1.2.3.tgz" + }, + "1.2.4": { + "shasum": "0616b47e73f35c0517afebb31342e6a649fba9b2", + "tarball": "http://registry.npmjs.org/test_it/-/test_it-1.2.4.tgz" + } + }, + "url": "http://registry.npmjs.org/test_it/" + }, + "test-cmd": { + "name": "test-cmd", + "description": "minimal tooling to create test runner commands", + "dist-tags": { + "latest": "1.7.0" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-09-09T10:19:11.240Z", + "created": "2011-07-26T11:05:09.845Z", + "1.0.0": "2011-07-26T11:05:12.132Z", + "1.1.0": "2011-07-27T10:10:50.459Z", + "1.1.1": "2011-07-27T10:16:06.970Z", + "1.1.2": "2011-07-31T09:20:52.073Z", + "1.2.0": "2011-07-31T09:26:47.200Z", + "1.3.0": "2011-08-09T10:06:49.825Z", + "1.4.0": "2011-09-07T23:00:18.843Z", + "1.4.2": "2011-09-08T01:03:33.970Z", + "1.5.0": "2011-09-08T14:09:00.531Z", + "1.6.0": "2011-09-08T14:17:38.996Z", + "1.7.0": "2011-09-09T10:19:11.240Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com", + "url": "http://bit.ly/dominictarr" + }, + "repository": { + "type": "git", + "url": "git://github.com/dominictarr/test-cmd.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/test-cmd/1.0.0", + "1.1.0": "http://registry.npmjs.org/test-cmd/1.1.0", + "1.1.1": "http://registry.npmjs.org/test-cmd/1.1.1", + "1.1.2": "http://registry.npmjs.org/test-cmd/1.1.2", + "1.2.0": "http://registry.npmjs.org/test-cmd/1.2.0", + "1.3.0": "http://registry.npmjs.org/test-cmd/1.3.0", + "1.4.0": "http://registry.npmjs.org/test-cmd/1.4.0", + "1.4.2": "http://registry.npmjs.org/test-cmd/1.4.2", + "1.5.0": "http://registry.npmjs.org/test-cmd/1.5.0", + "1.6.0": "http://registry.npmjs.org/test-cmd/1.6.0", + "1.7.0": "http://registry.npmjs.org/test-cmd/1.7.0" + }, + "dist": { + "1.0.0": { + "shasum": "d15ba31144e815fa7a627f53ca9b65724e0ec66f", + "tarball": "http://registry.npmjs.org/test-cmd/-/test-cmd-1.0.0.tgz" + }, + "1.1.0": { + "shasum": "d82a301f0b9729acf7fd3c603903085e9d795fb6", + "tarball": "http://registry.npmjs.org/test-cmd/-/test-cmd-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "4b4c60b35d8c6c0a8c4165a23fe2bf0b42b5be0f", + "tarball": "http://registry.npmjs.org/test-cmd/-/test-cmd-1.1.1.tgz" + }, + "1.1.2": { + "shasum": "1c7168aa9471ebb505c1f889f05f6f8bf2b63ff5", + "tarball": "http://registry.npmjs.org/test-cmd/-/test-cmd-1.1.2.tgz" + }, + "1.2.0": { + "shasum": "d8501de493d3730ff7f589496d4f7ad91a855ed5", + "tarball": "http://registry.npmjs.org/test-cmd/-/test-cmd-1.2.0.tgz" + }, + "1.3.0": { + "shasum": "fa5a434584d073dbf2c4f62b06571da3357bd20c", + "tarball": "http://registry.npmjs.org/test-cmd/-/test-cmd-1.3.0.tgz" + }, + "1.4.0": { + "shasum": "1cc374ecf163044038b6f1c737d9b84f5ae3bfd4", + "tarball": "http://registry.npmjs.org/test-cmd/-/test-cmd-1.4.0.tgz" + }, + "1.4.2": { + "shasum": "e582f2e8ca62ef80bfeb945f4f4356bb1fd362a3", + "tarball": "http://registry.npmjs.org/test-cmd/-/test-cmd-1.4.2.tgz" + }, + "1.5.0": { + "shasum": "621d1422173c338afd7dd47c0ebd9c843eb2c90b", + "tarball": "http://registry.npmjs.org/test-cmd/-/test-cmd-1.5.0.tgz" + }, + "1.6.0": { + "shasum": "4e75ca3182ee88e60d4bc7dd3c36f801f9048302", + "tarball": "http://registry.npmjs.org/test-cmd/-/test-cmd-1.6.0.tgz" + }, + "1.7.0": { + "shasum": "9e574c49f39473079e2f28fe71617812d147e310", + "tarball": "http://registry.npmjs.org/test-cmd/-/test-cmd-1.7.0.tgz" + } + }, + "url": "http://registry.npmjs.org/test-cmd/" + }, + "test-dir": { + "name": "test-dir", + "description": "run directories of tests using 'require'", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "brianc", + "email": "brian.m.carlson@gmail.com" + } + ], + "time": { + "modified": "2011-11-15T04:12:23.282Z", + "created": "2011-09-25T19:47:38.143Z", + "0.0.1": "2011-09-25T19:47:39.286Z", + "0.0.2": "2011-11-15T04:12:23.282Z" + }, + "author": { + "name": "Brian M. Carlson", + "email": "brian.m.carlson@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/brianc/test-dir.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/test-dir/0.0.1", + "0.0.2": "http://registry.npmjs.org/test-dir/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "1211952a670cdbeb2f0a60f6551d3181ced64210", + "tarball": "http://registry.npmjs.org/test-dir/-/test-dir-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "03c613f0b53e920913d19c93392a24deff78c9cb", + "tarball": "http://registry.npmjs.org/test-dir/-/test-dir-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/test-dir/" + }, + "test-helper": { + "name": "test-helper", + "description": "", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-09-09T09:46:30.048Z", + "created": "2011-09-09T09:46:21.200Z", + "0.0.0": "2011-09-09T09:46:30.048Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com", + "url": "http://bit.ly/dominictarr" + }, + "repository": { + "type": "git", + "url": "git://github.com/dominictarr/test-helper.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/test-helper/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "b6e628b244270a160d959aeed87f95a6d717332a", + "tarball": "http://registry.npmjs.org/test-helper/-/test-helper-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/test-helper/" + }, + "test-report": { + "name": "test-report", + "description": "generate test reports", + "dist-tags": { + "latest": "1.1.2" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-09-08T01:04:32.671Z", + "created": "2011-07-26T11:03:43.261Z", + "1.0.0": "2011-07-26T11:03:45.802Z", + "1.1.2": "2011-09-08T01:04:32.671Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com", + "url": "http://bit.ly/dominictarr" + }, + "repository": { + "type": "git", + "url": "git://github.com/dominictarr/test-report.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/test-report/1.0.0", + "1.1.2": "http://registry.npmjs.org/test-report/1.1.2" + }, + "dist": { + "1.0.0": { + "shasum": "6a9fa98b2a70cc71f601bd3a5c4a905359f08b55", + "tarball": "http://registry.npmjs.org/test-report/-/test-report-1.0.0.tgz" + }, + "1.1.2": { + "shasum": "9c21dc3ee93faa93304df9e5d59a3e71c301c5a4", + "tarball": "http://registry.npmjs.org/test-report/-/test-report-1.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/test-report/" + }, + "test-report-view": { + "name": "test-report-view", + "description": "print out colo(u)red `test-report`s and errors", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-07-27T10:14:00.936Z", + "created": "2011-07-27T10:13:58.691Z", + "1.0.0": "2011-07-27T10:14:00.936Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com", + "url": "http://bit.ly/dominictarr" + }, + "repository": { + "type": "git", + "url": "git://github.com/dominictarr/test-report-view.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/test-report-view/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "fd9f3f840fc7b29d3f761370789f77805b19e38d", + "tarball": "http://registry.npmjs.org/test-report-view/-/test-report-view-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/test-report-view/" + }, + "test-run": { + "name": "test-run", + "description": "Yet another JavaScript testing platform, running on Joose3 + bridge to ExtJS", + "dist-tags": { + "latest": "0.19.0" + }, + "maintainers": [ + { + "name": "samuraijack", + "email": "nickolay8@gmail.com" + } + ], + "author": { + "name": "Nickolay Platonov", + "email": "nplatonov@cpan.org" + }, + "repository": { + "web": "http://github.com/SamuraiJack/test.run/tree", + "url": "git://github.com/SamuraiJack/test.run.git", + "type": "git" + }, + "time": { + "modified": "2011-07-16T09:12:35.809Z", + "created": "2011-01-12T15:47:30.690Z", + "0.11.0": "2011-01-12T15:47:30.690Z", + "0.12.0": "2011-01-12T15:47:30.690Z", + "0.14.0": "2011-01-12T15:47:30.690Z", + "0.15.0": "2011-01-12T15:47:30.690Z", + "0.16.0": "2011-01-12T15:47:30.690Z", + "0.17.0": "2011-01-12T15:47:30.690Z", + "0.18.0": "2011-01-12T18:32:08.720Z", + "0.19.0": "2011-07-16T09:12:35.809Z" + }, + "versions": { + "0.11.0": "http://registry.npmjs.org/test-run/0.11.0", + "0.12.0": "http://registry.npmjs.org/test-run/0.12.0", + "0.14.0": "http://registry.npmjs.org/test-run/0.14.0", + "0.15.0": "http://registry.npmjs.org/test-run/0.15.0", + "0.16.0": "http://registry.npmjs.org/test-run/0.16.0", + "0.17.0": "http://registry.npmjs.org/test-run/0.17.0", + "0.18.0": "http://registry.npmjs.org/test-run/0.18.0", + "0.19.0": "http://registry.npmjs.org/test-run/0.19.0" + }, + "dist": { + "0.11.0": { + "tarball": "http://packages:5984/test-run/-/test-run-0.11.0.tgz" + }, + "0.12.0": { + "tarball": "http://packages:5984/test-run/-/test-run-0.12.0.tgz" + }, + "0.14.0": { + "tarball": "http://packages:5984/test-run/-/test-run-0.14.0.tgz" + }, + "0.15.0": { + "tarball": "http://registry.npmjs.org/test-run/-/test-run-0.15.0.tgz" + }, + "0.16.0": { + "shasum": "6d656b719aeac1bcf66e048d3cce6cf9db87fd74", + "tarball": "http://registry.npmjs.org/test-run/-/test-run-0.16.0.tgz" + }, + "0.17.0": { + "shasum": "b114986f31ed3509b410f135d60e6efa2423f031", + "tarball": "http://registry.npmjs.org/test-run/-/test-run-0.17.0.tgz" + }, + "0.18.0": { + "shasum": "260a78772f5a58011dac95eb91eea278f96cc761", + "tarball": "http://registry.npmjs.org/test-run/-/test-run-0.18.0.tgz" + }, + "0.19.0": { + "shasum": "d5aefbb80741d18533117afa4616a6c103318782", + "tarball": "http://registry.npmjs.org/test-run/-/test-run-0.19.0.tgz" + } + }, + "url": "http://registry.npmjs.org/test-run/" + }, + "test-tcp": { + "name": "test-tcp", + "description": "testing TCP program, like as perl's Test::TCP.", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "sugyan", + "email": "sugi1982+github@gmail.com" + } + ], + "time": { + "modified": "2011-10-18T02:59:26.762Z", + "created": "2011-09-25T15:36:38.019Z", + "0.0.1": "2011-09-25T15:36:40.641Z", + "0.0.2": "2011-10-02T07:58:29.695Z", + "0.0.3": "2011-10-02T08:59:31.060Z" + }, + "author": { + "name": "sugyan", + "email": "sugi1982+github@gmail.com", + "url": "http://sugyan.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/sugyan/node-test-tcp.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/test-tcp/0.0.1", + "0.0.2": "http://registry.npmjs.org/test-tcp/0.0.2", + "0.0.3": "http://registry.npmjs.org/test-tcp/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "eb7500abc406e396b3f108848986cdbc2bcf6b23", + "tarball": "http://registry.npmjs.org/test-tcp/-/test-tcp-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "eff1e755c1cc0f35e1ed6f69a82b4282bbf19f46", + "tarball": "http://registry.npmjs.org/test-tcp/-/test-tcp-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "ff1803ffc64edeba7cccc92d92badea3b5b15b5e", + "tarball": "http://registry.npmjs.org/test-tcp/-/test-tcp-0.0.3.tgz" + } + }, + "keywords": [ + "test", + "tcp" + ], + "url": "http://registry.npmjs.org/test-tcp/" + }, + "testbed": { + "name": "testbed", + "description": "continuious integration for node", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-06-25T16:27:06.650Z", + "created": "2011-06-25T16:27:06.073Z", + "0.1.0": "2011-06-25T16:27:06.650Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com" + }, + "repository": { + "url": "" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/testbed/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "ef5a551aa582639b14d15853e88e7cb370be66e1", + "tarball": "http://registry.npmjs.org/testbed/-/testbed-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/testbed/" + }, + "tester": { + "name": "tester", + "description": "a unit testing utility", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "raynos", + "email": "raynos2@gmail.com" + } + ], + "time": { + "modified": "2011-11-10T15:26:51.415Z", + "created": "2011-10-19T16:35:12.373Z", + "0.0.1": "2011-10-19T16:35:14.177Z", + "0.0.2": "2011-10-19T17:03:02.565Z", + "0.0.3": "2011-11-10T15:24:07.148Z", + "0.0.4": "2011-11-10T15:26:51.415Z" + }, + "author": { + "name": "Jake Verbaten", + "email": "raynos2@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Raynos/tester.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tester/0.0.1", + "0.0.2": "http://registry.npmjs.org/tester/0.0.2", + "0.0.3": "http://registry.npmjs.org/tester/0.0.3", + "0.0.4": "http://registry.npmjs.org/tester/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "8190b88a368af68553654c2acb5966e9e98eac9a", + "tarball": "http://registry.npmjs.org/tester/-/tester-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "6e3b35b90befbd09886ed959d048819e6863a70b", + "tarball": "http://registry.npmjs.org/tester/-/tester-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "ab8a23ac5181c08be4222b4d24c81f0e28c1b306", + "tarball": "http://registry.npmjs.org/tester/-/tester-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "d3c4ea2f2d62a6f3acc48222775b230087ec8b60", + "tarball": "http://registry.npmjs.org/tester/-/tester-0.0.4.tgz" + } + }, + "keywords": [ + "unit", + "test", + "utility" + ], + "url": "http://registry.npmjs.org/tester/" + }, + "testful": { + "name": "testful", + "description": "test framework for restful service, just http test", + "dist-tags": { + "latest": "0.1.6" + }, + "maintainers": [ + { + "name": "inotseeyou", + "email": "inotseeyou@gmail.com" + } + ], + "time": { + "modified": "2011-12-02T13:19:40.347Z", + "created": "2011-11-20T03:32:23.253Z", + "0.1.3": "2011-11-20T03:32:24.943Z", + "0.1.4": "2011-11-20T16:10:47.254Z", + "0.1.5": "2011-11-24T11:27:44.334Z", + "0.1.6": "2011-12-02T13:19:40.347Z" + }, + "author": { + "name": "inotseeyou", + "email": "inotseeyou@gmail.com", + "url": "http://inotseeyou.com" + }, + "repository": { + "url": "https://github.com/codelint/testful.git" + }, + "versions": { + "0.1.3": "http://registry.npmjs.org/testful/0.1.3", + "0.1.4": "http://registry.npmjs.org/testful/0.1.4", + "0.1.5": "http://registry.npmjs.org/testful/0.1.5", + "0.1.6": "http://registry.npmjs.org/testful/0.1.6" + }, + "dist": { + "0.1.3": { + "shasum": "4e7e3f385101d6db5c6eb4d2525b0d8ad7c5036c", + "tarball": "http://registry.npmjs.org/testful/-/testful-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "7de1b03de40c4373eefaf4cf2b1b32a88be99345", + "tarball": "http://registry.npmjs.org/testful/-/testful-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "6ad8974b7cec407b9d4ebeb58829fd2a1016b529", + "tarball": "http://registry.npmjs.org/testful/-/testful-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "b5559f9a2f698539b07ac7d3406504c76f6686ba", + "tarball": "http://registry.npmjs.org/testful/-/testful-0.1.6.tgz" + } + }, + "keywords": [ + "restful", + "test", + "testful", + "framework", + "simple", + "http" + ], + "url": "http://registry.npmjs.org/testful/" + }, + "testharness": { + "name": "testharness", + "description": "Visual test harness for cleanly crafting rich client-side JavaScript applications.", + "dist-tags": { + "latest": "0.0.69" + }, + "maintainers": [ + { + "name": "philcockfield", + "email": "phil@cockfield.net" + } + ], + "time": { + "modified": "2011-07-23T21:44:52.970Z", + "created": "2011-07-04T21:13:13.988Z", + "0.0.1": "2011-07-04T21:13:14.504Z", + "0.0.2": "2011-07-04T21:28:15.091Z", + "0.0.3": "2011-07-05T02:40:24.030Z", + "0.0.5": "2011-07-05T03:10:59.498Z", + "0.0.6": "2011-07-06T06:41:06.060Z", + "0.0.7": "2011-07-07T03:32:52.230Z", + "0.0.8": "2011-07-07T05:18:38.549Z", + "0.0.9": "2011-07-07T15:14:13.057Z", + "0.0.10": "2011-07-09T22:52:40.675Z", + "0.0.11": "2011-07-11T04:11:03.945Z", + "0.0.12": "2011-07-12T04:51:54.302Z", + "0.0.14": "2011-07-18T04:15:49.200Z", + "0.0.15": "2011-07-18T04:24:11.981Z", + "0.0.16": "2011-07-18T04:28:10.002Z", + "0.0.67": "2011-07-22T15:26:00.531Z", + "0.0.68": "2011-07-22T15:31:56.251Z", + "0.0.69": "2011-07-23T21:44:52.970Z" + }, + "author": { + "name": "Phil Cockfield", + "url": "https://github.com/philcockfield" + }, + "repository": { + "type": "git", + "url": "git://github.com/philcockfield/testharness.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/testharness/0.0.1", + "0.0.2": "http://registry.npmjs.org/testharness/0.0.2", + "0.0.3": "http://registry.npmjs.org/testharness/0.0.3", + "0.0.5": "http://registry.npmjs.org/testharness/0.0.5", + "0.0.6": "http://registry.npmjs.org/testharness/0.0.6", + "0.0.7": "http://registry.npmjs.org/testharness/0.0.7", + "0.0.8": "http://registry.npmjs.org/testharness/0.0.8", + "0.0.9": "http://registry.npmjs.org/testharness/0.0.9", + "0.0.10": "http://registry.npmjs.org/testharness/0.0.10", + "0.0.11": "http://registry.npmjs.org/testharness/0.0.11", + "0.0.12": "http://registry.npmjs.org/testharness/0.0.12", + "0.0.14": "http://registry.npmjs.org/testharness/0.0.14", + "0.0.15": "http://registry.npmjs.org/testharness/0.0.15", + "0.0.16": "http://registry.npmjs.org/testharness/0.0.16", + "0.0.67": "http://registry.npmjs.org/testharness/0.0.67", + "0.0.68": "http://registry.npmjs.org/testharness/0.0.68", + "0.0.69": "http://registry.npmjs.org/testharness/0.0.69" + }, + "dist": { + "0.0.1": { + "shasum": "17ed216dd78b18987f5a9e5aa7b8d510c5bc9825", + "tarball": "http://registry.npmjs.org/testharness/-/testharness-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "97887f656c0950e4485f8ea55cab5ca48d02ab09", + "tarball": "http://registry.npmjs.org/testharness/-/testharness-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "86c5bdd62da0ddab4d40954aaa5c23fa09d6c48d", + "tarball": "http://registry.npmjs.org/testharness/-/testharness-0.0.3.tgz" + }, + "0.0.5": { + "shasum": "adfac9a271a321274d82b297ffdc6e51de17ce54", + "tarball": "http://registry.npmjs.org/testharness/-/testharness-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "dcba80c35fe5817e423ef5f1426e342ed16e876f", + "tarball": "http://registry.npmjs.org/testharness/-/testharness-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "d6fd43d4cfede5d48dd3a93d0b6072d7c8153fa8", + "tarball": "http://registry.npmjs.org/testharness/-/testharness-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "d32ec64f02c16c98deb89769bd3ca6bdcb1d0239", + "tarball": "http://registry.npmjs.org/testharness/-/testharness-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "599c9db88c29e7683a09d6313a189ba8996f73fa", + "tarball": "http://registry.npmjs.org/testharness/-/testharness-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "08faca1c44e1510935893406f1f02057c1a93133", + "tarball": "http://registry.npmjs.org/testharness/-/testharness-0.0.10.tgz" + }, + "0.0.11": { + "shasum": "632434e37c49031d8f7214d0212cefdae52a69b6", + "tarball": "http://registry.npmjs.org/testharness/-/testharness-0.0.11.tgz" + }, + "0.0.12": { + "shasum": "7eeead3d912de627dcfe68cae78945e6fb5aeb18", + "tarball": "http://registry.npmjs.org/testharness/-/testharness-0.0.12.tgz" + }, + "0.0.14": { + "shasum": "27f96ac589b9ab9775661c1030a55f4e153b03c9", + "tarball": "http://registry.npmjs.org/testharness/-/testharness-0.0.14.tgz" + }, + "0.0.15": { + "shasum": "0f72787f8e62bd844f0e363293ff9416c13de32e", + "tarball": "http://registry.npmjs.org/testharness/-/testharness-0.0.15.tgz" + }, + "0.0.16": { + "shasum": "da17aa78e086e0b479bdbcc5ba97bf568a1ef127", + "tarball": "http://registry.npmjs.org/testharness/-/testharness-0.0.16.tgz" + }, + "0.0.67": { + "shasum": "14a31eb26c1276bb0b038e6f541f14c441961acb", + "tarball": "http://registry.npmjs.org/testharness/-/testharness-0.0.67.tgz" + }, + "0.0.68": { + "shasum": "c3311c8df329a61db7480caf45732d6fe1c17c05", + "tarball": "http://registry.npmjs.org/testharness/-/testharness-0.0.68.tgz" + }, + "0.0.69": { + "shasum": "8b6897af4629fc245e82e316e23630816fb75873", + "tarball": "http://registry.npmjs.org/testharness/-/testharness-0.0.69.tgz" + } + }, + "keywords": [ + "test", + "harness", + "rich client", + "mvc" + ], + "url": "http://registry.npmjs.org/testharness/" + }, + "testingey": { + "name": "testingey", + "description": "a test runner for nodejs that supports parallel testing and testing of asynchronous functions", + "dist-tags": { + "latest": "1.0.2" + }, + "maintainers": [ + { + "name": "noodlehaus", + "email": "jesus.domingo@gmail.com" + } + ], + "time": { + "modified": "2011-11-07T16:20:23.942Z", + "created": "2011-09-04T04:01:49.459Z", + "0.0.1": "2011-09-04T04:01:53.323Z", + "0.0.2": "2011-09-04T12:16:51.732Z", + "0.0.3": "2011-09-06T16:12:05.765Z", + "0.0.4": "2011-09-06T16:28:13.531Z", + "0.0.5": "2011-09-08T01:51:13.034Z", + "0.0.6": "2011-09-08T03:32:29.076Z", + "1.0.0": "2011-09-09T18:13:19.436Z", + "1.0.1": "2011-09-10T04:25:47.944Z", + "1.0.2": "2011-11-07T16:20:23.942Z" + }, + "author": { + "name": "Jesus A. Domingo", + "email": "jesus.domingo@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/noodlehaus/node-testingey.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/testingey/0.0.1", + "0.0.2": "http://registry.npmjs.org/testingey/0.0.2", + "0.0.3": "http://registry.npmjs.org/testingey/0.0.3", + "0.0.4": "http://registry.npmjs.org/testingey/0.0.4", + "0.0.5": "http://registry.npmjs.org/testingey/0.0.5", + "0.0.6": "http://registry.npmjs.org/testingey/0.0.6", + "1.0.0": "http://registry.npmjs.org/testingey/1.0.0", + "1.0.1": "http://registry.npmjs.org/testingey/1.0.1", + "1.0.2": "http://registry.npmjs.org/testingey/1.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "e36d777a34dadad8378f5656d5b387104c0f28b5", + "tarball": "http://registry.npmjs.org/testingey/-/testingey-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "532ef99cf7f3fbdb2baf697018e9af48bd0ba81f", + "tarball": "http://registry.npmjs.org/testingey/-/testingey-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "c2fb3eec55e195b71caf3575a5b40b67780358b1", + "tarball": "http://registry.npmjs.org/testingey/-/testingey-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "7b9153340f3d02a39327863f0e2a9dcd2a30261f", + "tarball": "http://registry.npmjs.org/testingey/-/testingey-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "951f20bc1e614caf300db49be8e37281124c8bc6", + "tarball": "http://registry.npmjs.org/testingey/-/testingey-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "1600f83728f2046445c79c1703f6cb939ec4d64a", + "tarball": "http://registry.npmjs.org/testingey/-/testingey-0.0.6.tgz" + }, + "1.0.0": { + "shasum": "6ec11fc1d24c4d7f0e5aab7cd2c885ca87227476", + "tarball": "http://registry.npmjs.org/testingey/-/testingey-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "5ca3bcdaa36f9712c5936f6398ec69ca50b5837c", + "tarball": "http://registry.npmjs.org/testingey/-/testingey-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "3503f3447f16a2cb8024d62b2e60028e39653ab0", + "tarball": "http://registry.npmjs.org/testingey/-/testingey-1.0.2.tgz" + } + }, + "keywords": [ + "test harness", + "test runner", + "tests", + "tdd", + "test-driven" + ], + "url": "http://registry.npmjs.org/testingey/" + }, + "testling": { + "name": "testling", + "description": "run testling tests headlessly and remotely on real browsers", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-11-04T09:14:15.674Z", + "created": "2011-10-30T09:10:05.538Z", + "0.0.0": "2011-10-30T09:10:07.810Z", + "0.0.1": "2011-11-04T09:14:15.674Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/testling.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/testling/0.0.0", + "0.0.1": "http://registry.npmjs.org/testling/0.0.1" + }, + "dist": { + "0.0.0": { + "shasum": "f2e1b4a18c40b65e8fb4d0a4580d0585d17a1cde", + "tarball": "http://registry.npmjs.org/testling/-/testling-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "a17d8c728000feff98c58b80b7eb6d59f21d2c8a", + "tarball": "http://registry.npmjs.org/testling/-/testling-0.0.1.tgz" + } + }, + "keywords": [ + "test", + "browser", + "headless" + ], + "url": "http://registry.npmjs.org/testling/" + }, + "testnode": { + "name": "testnode", + "description": "Testing library for Node", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "testnode", + "email": "maintainer@testnode.org" + } + ], + "time": { + "modified": "2011-07-23T13:29:01.404Z", + "created": "2011-06-18T08:13:13.648Z", + "0.1.0": "2011-06-18T08:13:14.555Z", + "0.1.1": "2011-06-19T07:23:46.686Z", + "0.1.2": "2011-06-19T08:04:02.461Z", + "0.1.4": "2011-07-23T13:29:01.404Z" + }, + "author": { + "name": "Joel Plane", + "email": "maintainer@testnode.org" + }, + "repository": { + "url": "" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/testnode/0.1.0", + "0.1.1": "http://registry.npmjs.org/testnode/0.1.1", + "0.1.2": "http://registry.npmjs.org/testnode/0.1.2", + "0.1.4": "http://registry.npmjs.org/testnode/0.1.4" + }, + "dist": { + "0.1.0": { + "shasum": "827ea3e68c4566779e7d17f76e0a8a55e5d7a965", + "tarball": "http://registry.npmjs.org/testnode/-/testnode-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "86bbf85f9824898cbf44b811354e2e59afaf86d7", + "tarball": "http://registry.npmjs.org/testnode/-/testnode-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "6b2e39c86b4f3f57da6c88acbb9c964afc423461", + "tarball": "http://registry.npmjs.org/testnode/-/testnode-0.1.2.tgz" + }, + "0.1.4": { + "shasum": "9355793f9a819a36e42aa2878ed2ccd713008d85", + "tarball": "http://registry.npmjs.org/testnode/-/testnode-0.1.4.tgz" + } + }, + "url": "http://registry.npmjs.org/testnode/" + }, + "testosterone": { + "name": "testosterone", + "description": "Virile testing for http servers or any nodejs application", + "dist-tags": { + "latest": "1.3.0" + }, + "maintainers": [ + { + "name": "masylum", + "email": "masylum@gmail.com" + } + ], + "time": { + "modified": "2011-07-21T13:53:06.868Z", + "created": "2010-12-28T23:02:38.234Z", + "0.0.1": "2010-12-28T23:02:38.760Z", + "0.0.2": "2010-12-28T23:08:54.488Z", + "0.0.3": "2010-12-28T23:12:20.012Z", + "0.0.4": "2010-12-29T21:24:06.027Z", + "0.0.5": "2010-12-29T22:02:14.094Z", + "0.0.6": "2011-01-01T23:36:59.219Z", + "0.0.7": "2011-01-02T16:06:21.308Z", + "1.0.0": "2011-01-30T23:31:27.952Z", + "1.1.0": "2011-03-19T17:27:07.256Z", + "1.2.0": "2011-04-22T17:31:07.095Z", + "1.3.0": "2011-07-21T13:53:06.868Z" + }, + "author": { + "name": "Pau Ramon Revilla", + "email": "masylum@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/masylum/testosterone.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/testosterone/0.0.1", + "0.0.2": "http://registry.npmjs.org/testosterone/0.0.2", + "0.0.3": "http://registry.npmjs.org/testosterone/0.0.3", + "0.0.4": "http://registry.npmjs.org/testosterone/0.0.4", + "0.0.5": "http://registry.npmjs.org/testosterone/0.0.5", + "0.0.6": "http://registry.npmjs.org/testosterone/0.0.6", + "0.0.7": "http://registry.npmjs.org/testosterone/0.0.7", + "1.0.0": "http://registry.npmjs.org/testosterone/1.0.0", + "1.1.0": "http://registry.npmjs.org/testosterone/1.1.0", + "1.2.0": "http://registry.npmjs.org/testosterone/1.2.0", + "1.3.0": "http://registry.npmjs.org/testosterone/1.3.0" + }, + "dist": { + "0.0.1": { + "shasum": "45167e85606a78bb07bca4c0f937029f05390f68", + "tarball": "http://registry.npmjs.org/testosterone/-/testosterone-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c1f8fc0a3d1f4cb0ce406422610724db6352258f", + "tarball": "http://registry.npmjs.org/testosterone/-/testosterone-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "8a19be9f0237f122b17dbc090e2a2c265de298a8", + "tarball": "http://registry.npmjs.org/testosterone/-/testosterone-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "f6d4bb340c1adfee7b938f068ab22561aec50c29", + "tarball": "http://registry.npmjs.org/testosterone/-/testosterone-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "761db0d1b02aa498a9100dacf353cc3257850345", + "tarball": "http://registry.npmjs.org/testosterone/-/testosterone-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "7ee34a8f0cd41979ac48c827df33c0809ec5ed78", + "tarball": "http://registry.npmjs.org/testosterone/-/testosterone-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "f700d1383509a4d1a1840ca58e73511ce1f38ab1", + "tarball": "http://registry.npmjs.org/testosterone/-/testosterone-0.0.7.tgz" + }, + "1.0.0": { + "shasum": "1debe56c8fd674e19cf15f4693b7c37761693789", + "tarball": "http://registry.npmjs.org/testosterone/-/testosterone-1.0.0.tgz" + }, + "1.1.0": { + "shasum": "01570ccbe68f815a8c0dcd4a70301d0719bd69f4", + "tarball": "http://registry.npmjs.org/testosterone/-/testosterone-1.1.0.tgz" + }, + "1.2.0": { + "shasum": "068352996c8c37e5fa7a0941ae9d2d814fc9e6d1", + "tarball": "http://registry.npmjs.org/testosterone/-/testosterone-1.2.0.tgz" + }, + "1.3.0": { + "shasum": "e05719b4d00ca8d3b196d1dd1c80b09df01e48ea", + "tarball": "http://registry.npmjs.org/testosterone/-/testosterone-1.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/testosterone/" + }, + "testqueue": { + "name": "testqueue", + "description": "A test queue for node", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "clebert", + "email": "clebert@me.com" + } + ], + "time": { + "modified": "2011-04-22T20:27:27.664Z", + "created": "2011-04-22T20:27:27.176Z", + "0.0.1": "2011-04-22T20:27:27.664Z" + }, + "author": { + "name": "Clemens Akens" + }, + "repository": { + "type": "git", + "url": "git://github.com/clebert/node-testqueue.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/testqueue/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "2a0317ba0069a9a78a169112233ea75e60b46d49", + "tarball": "http://registry.npmjs.org/testqueue/-/testqueue-0.0.1.tgz" + } + }, + "keywords": [ + "unit testing", + "test queue", + "test" + ], + "url": "http://registry.npmjs.org/testqueue/" + }, + "testrunner": { + "name": "testrunner", + "description": "Runs Vows unit test.", + "dist-tags": { + "latest": "1.0.4" + }, + "maintainers": [ + { + "name": "aikar", + "email": "aikar@aikar.coo" + } + ], + "time": { + "modified": "2011-09-24T06:50:05.062Z", + "created": "2011-09-13T23:57:42.747Z", + "1.0.0": "2011-09-13T23:57:43.151Z", + "1.0.1": "2011-09-14T00:05:44.773Z", + "1.0.2": "2011-09-14T00:24:06.395Z", + "1.0.3": "2011-09-24T05:14:55.214Z", + "1.0.4": "2011-09-24T06:50:05.062Z" + }, + "author": { + "name": "Aikar", + "email": "aikar@aikar.co" + }, + "repository": { + "type": "git", + "url": "git://github.com/aikar/wormhole.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/testrunner/1.0.0", + "1.0.1": "http://registry.npmjs.org/testrunner/1.0.1", + "1.0.2": "http://registry.npmjs.org/testrunner/1.0.2", + "1.0.3": "http://registry.npmjs.org/testrunner/1.0.3", + "1.0.4": "http://registry.npmjs.org/testrunner/1.0.4" + }, + "dist": { + "1.0.0": { + "shasum": "ba8c79247de2f11f3f868c1122908aabd38e9504", + "tarball": "http://registry.npmjs.org/testrunner/-/testrunner-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "aa986e322cba6cafc144c1513d33c0582147aa05", + "tarball": "http://registry.npmjs.org/testrunner/-/testrunner-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "7ca3f5e75e494d54cffaf782a968eb84106c8d17", + "tarball": "http://registry.npmjs.org/testrunner/-/testrunner-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "ab9d30e80d290fca62372f325df1edb62e1a674e", + "tarball": "http://registry.npmjs.org/testrunner/-/testrunner-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "7ca55a3ae1af9e698f490966280f2f6bf6a7ba83", + "tarball": "http://registry.npmjs.org/testrunner/-/testrunner-1.0.4.tgz" + } + }, + "keywords": [ + "vows", + "test", + "unit test" + ], + "url": "http://registry.npmjs.org/testrunner/" + }, + "testthings": { + "name": "testthings", + "description": "common imports for testing", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "Things Source\n============\n\nTestThings is a module that exports commonly used modules for testing in coffee-script.\n\n\nInstall\n-------\n```\nnpm install testthings\n```\n\nUsage\n-----\n\n```coffee-script\n\n{vows, should, benchmark, sinon, http, zombie} = require 'testthings'\n\n```\n\nor import only what you need\n\n```coffee-script\n\n{vows, should} = require 'testthings'\n\n```\n\nFeatures\n--------\n\n* vows\n* should\n* benchmark\n* sinon\n* http\n* zombie\n\nDeveloper instructions\n----------------------\n\n* Ensure git, node and npm are installed\n* git clone git@github.com:quillu/things.git\n* switch to dev branch, and make it track origin/dev\n* run npm install\n* run npm link ( this installs dev dependencies and symlinks the project to your global npm registry)\n* Install the following globally via npm install -g\n** coffee-script\n** nodemon\n** vows\n\nCakeFile\n--------\nA Cakefile is used to manage the app\ntype cake at the root directory to see a list of commands\n\nTest\n----\nrun\n```\ncake test\n```\n\nDeveloper flow\n--------------\nFollow github best practices\n\n* Update to latest from master (should be fast forward)\n* Create a new feature branch off master\n* Push branch to origin\n* Write a test\n* Make test pass\n* Refactor\n* Commit\n* Push to remote branch\n* Repeat till feature is finished\n* Then update master to latest from origin (should be fast forward)\n* Rebase your branch to be ontop of master\n* Squash your commits into a atomic feature commit (should have a big log message auto created from the little commits)\n* Merge onto master, and push (should be fast-forward)\n* Once ready for release, tag master.\n* Make branch bugfixes on a version branch off master\n", + "maintainers": [ + { + "name": "dmalam", + "email": "dmmalam@gmail.com" + } + ], + "time": { + "modified": "2011-12-07T14:52:58.680Z", + "created": "2011-12-07T14:52:57.320Z", + "0.0.1": "2011-12-07T14:52:58.680Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/quillu/testthings.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/testthings/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "ecce8828fa4badce90d0febad8e1977742f032d4", + "tarball": "http://registry.npmjs.org/testthings/-/testthings-0.0.1.tgz" + } + }, + "keywords": [ + "common, test" + ], + "url": "http://registry.npmjs.org/testthings/" + }, + "testy": { + "name": "testy", + "description": "Super simple testing framework", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "leetreveil", + "email": "leetreveil@gmail.com" + } + ], + "time": { + "modified": "2011-11-10T16:13:21.860Z", + "created": "2011-05-15T15:20:10.453Z", + "0.0.1": "2011-05-15T15:20:11.183Z", + "0.0.2": "2011-07-29T15:07:06.451Z", + "0.0.3": "2011-11-10T16:13:21.860Z" + }, + "author": { + "name": "Lee Treveil" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/testy/0.0.1", + "0.0.2": "http://registry.npmjs.org/testy/0.0.2", + "0.0.3": "http://registry.npmjs.org/testy/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "a78b775d0ba8eb2696d60a1aab55c8d1e74c23f7", + "tarball": "http://registry.npmjs.org/testy/-/testy-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "e6fe8a15eceb785b3b301a1d30a2f119b0142854", + "tarball": "http://registry.npmjs.org/testy/-/testy-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "ce6d3bba24f6c927882d98dfe1b1367ce2e301ee", + "tarball": "http://registry.npmjs.org/testy/-/testy-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/testy/" + }, + "text": { + "name": "text", + "description": "A collection of utilities for manipulating text.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "weaver", + "email": "ben@orangesoda.net" + } + ], + "author": { + "name": "Ben Weaver", + "email": "ben@orangesoda.net" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/text/0.1.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/text/-/text-0.1.0.tgz" + } + }, + "keywords": [ + "text", + "encoding", + "base64", + "string" + ], + "url": "http://registry.npmjs.org/text/" + }, + "textareaserver": { + "name": "textareaserver", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "epeli", + "email": "esa-matti@suuronen.org" + } + ], + "time": { + "modified": "2011-02-23T12:20:55.199Z", + "created": "2011-02-23T12:20:54.699Z", + "0.1.3": "2011-02-23T12:20:55.199Z" + }, + "author": { + "name": "Esa-Matti Suuronen" + }, + "versions": { + "0.1.3": "http://registry.npmjs.org/textareaserver/0.1.3" + }, + "dist": { + "0.1.3": { + "shasum": "1e79d41c2a8667a57f8f4e797b002308f5f44528", + "tarball": "http://registry.npmjs.org/textareaserver/-/textareaserver-0.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/textareaserver/" + }, + "textile": { + "name": "textile", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "eegg", + "email": "jameshfisher@gmail.com" + } + ], + "author": { + "name": "Ben Daglish, John Hughes, James Fisher" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/textile/0.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/textile/-/textile-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/textile/" + }, + "textspark": { + "name": "textspark", + "description": "Text sparklines", + "dist-tags": { + "latest": "0.0.2" + }, + "readme": null, + "maintainers": [ + { + "name": "msiebuhr", + "email": "sbhr@sbhr.dk" + } + ], + "time": { + "modified": "2011-11-16T10:29:08.591Z", + "created": "2011-11-16T09:40:33.181Z", + "0.0.1": "2011-11-16T09:40:34.482Z", + "0.0.2": "2011-11-16T10:29:08.591Z" + }, + "author": { + "name": "Morten Siebuhr", + "email": "sbhr@sbhr.dk" + }, + "repository": { + "type": "git", + "url": "git://github.com/msiebuhr/node-spark.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/textspark/0.0.1", + "0.0.2": "http://registry.npmjs.org/textspark/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "8c4e59eb995a5b57c151cdc6ee0a34154900e80a", + "tarball": "http://registry.npmjs.org/textspark/-/textspark-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "ee61b9b8888a948e8cef5966b66dbf375f94a784", + "tarball": "http://registry.npmjs.org/textspark/-/textspark-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/textspark/" + }, + "textual": { + "name": "textual", + "description": "text analysis on your functions and arguments", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "rook2pawn", + "email": "rook2pawn@gmail.com" + } + ], + "time": { + "modified": "2011-08-15T12:53:36.323Z", + "created": "2011-08-15T12:53:34.682Z", + "0.0.1": "2011-08-15T12:53:36.323Z" + }, + "author": { + "name": "David Wee", + "email": "rook2pawn@gmail.com", + "url": "http://rook2pawn.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/rook2pawn/node-textual.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/textual/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "ce305b1032b936de7d4bd8d4073193a44c01a1a4", + "tarball": "http://registry.npmjs.org/textual/-/textual-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/textual/" + }, + "tf2logparser": { + "name": "tf2logparser", + "description": "A log parser for the game Team Fortress 2. It retrieves stats and game events and outputs the data to JSON format.", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "barncow", + "email": "brian.barnekow@gmail.com" + } + ], + "time": { + "modified": "2011-10-15T16:22:51.355Z", + "created": "2011-06-10T22:09:56.886Z", + "0.0.0": "2011-06-10T22:09:57.183Z", + "0.1.0": "2011-07-17T14:51:11.388Z", + "0.2.0": "2011-10-15T16:22:51.355Z" + }, + "author": { + "name": "Brian Barnekow" + }, + "repository": { + "type": "git", + "url": "git://github.com/barncow/tf2logparser.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/tf2logparser/0.0.0", + "0.1.0": "http://registry.npmjs.org/tf2logparser/0.1.0", + "0.2.0": "http://registry.npmjs.org/tf2logparser/0.2.0" + }, + "dist": { + "0.0.0": { + "shasum": "5226f56d3912098db86d403f5936082cd0702b02", + "tarball": "http://registry.npmjs.org/tf2logparser/-/tf2logparser-0.0.0.tgz" + }, + "0.1.0": { + "shasum": "e3b9f17cb6ebdb2c07c5e33a7a1a56d6fb570680", + "tarball": "http://registry.npmjs.org/tf2logparser/-/tf2logparser-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "2de16723eb0705edf18d19d32d8ca420b306339f", + "tarball": "http://registry.npmjs.org/tf2logparser/-/tf2logparser-0.2.0.tgz" + } + }, + "keywords": [ + "tf2", + "log", + "parser", + "team fortress", + "team fortress 2", + "stats", + "tf2logs", + "tf2logs.com", + "pubcomp", + "pubcomp.com" + ], + "url": "http://registry.npmjs.org/tf2logparser/" + }, + "tfe-express": { + "name": "tfe-express", + "description": "Sinatra inspired web development framework", + "dist-tags": { + "latest": "1.0.7-1" + }, + "maintainers": [ + { + "name": "tfe", + "email": "todd@toddeichel.com" + } + ], + "time": { + "modified": "2011-03-07T01:57:26.142Z", + "created": "2011-03-07T01:57:25.597Z", + "1.0.7-1": "2011-03-07T01:57:26.142Z" + }, + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "versions": { + "1.0.7-1": "http://registry.npmjs.org/tfe-express/1.0.7-1" + }, + "dist": { + "1.0.7-1": { + "shasum": "2a15de67223aa0881fe12faffff092a67817664e", + "tarball": "http://registry.npmjs.org/tfe-express/-/tfe-express-1.0.7-1.tgz" + } + }, + "keywords": [ + "framework", + "sinatra", + "web", + "rest", + "restful" + ], + "url": "http://registry.npmjs.org/tfe-express/" + }, + "tfidf": { + "name": "tfidf", + "description": "tf-idf implementation", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "linus", + "email": "linus@hanssonlarsson.se" + } + ], + "time": { + "modified": "2011-08-28T09:05:30.532Z", + "created": "2011-07-22T15:20:09.240Z", + "0.1.0": "2011-07-22T15:20:09.959Z", + "0.1.1": "2011-07-22T15:46:01.701Z", + "0.1.2": "2011-07-28T19:26:46.166Z", + "0.2.0": "2011-08-26T13:11:12.091Z", + "0.2.1": "2011-08-26T16:03:37.621Z", + "0.2.2": "2011-08-28T09:05:30.532Z" + }, + "author": { + "name": "Linus G Thiel", + "email": "linus@hanssonlarsson.se", + "url": "http://hanssonlarsson.se/" + }, + "repository": { + "type": "git", + "url": "git@github.com:hanssonlarsson/tfidf.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/tfidf/0.1.0", + "0.1.1": "http://registry.npmjs.org/tfidf/0.1.1", + "0.1.2": "http://registry.npmjs.org/tfidf/0.1.2", + "0.2.0": "http://registry.npmjs.org/tfidf/0.2.0", + "0.2.1": "http://registry.npmjs.org/tfidf/0.2.1", + "0.2.2": "http://registry.npmjs.org/tfidf/0.2.2" + }, + "dist": { + "0.1.0": { + "shasum": "bac0df283ad74efa358cac8cb033e43f8ac5a024", + "tarball": "http://registry.npmjs.org/tfidf/-/tfidf-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "391479e7f2abeb66fde0d1e1d19846566f7e0b81", + "tarball": "http://registry.npmjs.org/tfidf/-/tfidf-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "8678ccdae2b9a63fc22eec0d363b81b4ec6c8a66", + "tarball": "http://registry.npmjs.org/tfidf/-/tfidf-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "08eb2abb1609d277ec6598315869bcddcfbe4a9f", + "tarball": "http://registry.npmjs.org/tfidf/-/tfidf-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "7bb0a7e2ef86766d0558fb120c6412da302b7761", + "tarball": "http://registry.npmjs.org/tfidf/-/tfidf-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "dee25394a865087048549acf327f55e8cd9bba69", + "tarball": "http://registry.npmjs.org/tfidf/-/tfidf-0.2.2.tgz" + } + }, + "url": "http://registry.npmjs.org/tfidf/" + }, + "theBasics": { + "name": "theBasics", + "description": "A collection of base class methods I think should be part of the ECMA script spec.", + "dist-tags": { + "latest": "0.1.5" + }, + "maintainers": [ + { + "name": "bluejeansandrain", + "email": "bluejeansandrain@gmail.com" + } + ], + "time": { + "modified": "2011-11-11T03:32:46.025Z", + "created": "2011-08-23T17:25:58.965Z", + "0.1.0": "2011-08-23T17:25:59.268Z", + "0.1.1": "2011-08-26T07:13:27.886Z", + "0.1.2": "2011-08-30T03:55:40.553Z", + "0.1.3": "2011-10-21T22:48:05.557Z", + "0.1.4": "2011-11-02T04:23:08.659Z", + "0.1.5": "2011-11-11T03:32:46.025Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/theBasics/0.1.0", + "0.1.1": "http://registry.npmjs.org/theBasics/0.1.1", + "0.1.2": "http://registry.npmjs.org/theBasics/0.1.2", + "0.1.3": "http://registry.npmjs.org/theBasics/0.1.3", + "0.1.4": "http://registry.npmjs.org/theBasics/0.1.4", + "0.1.5": "http://registry.npmjs.org/theBasics/0.1.5" + }, + "dist": { + "0.1.0": { + "shasum": "28f723259e52ccd29280869906dd7dd16963154e", + "tarball": "http://registry.npmjs.org/theBasics/-/theBasics-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "6f1c1bb1a5f4674add180ff5c4ce5a0a0f349577", + "tarball": "http://registry.npmjs.org/theBasics/-/theBasics-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "73bcca5423bb03c0ea6c656e2cc54fad72bd7ea0", + "tarball": "http://registry.npmjs.org/theBasics/-/theBasics-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "e9281925a4400cd75601b7cc904597936f0d4f9a", + "tarball": "http://registry.npmjs.org/theBasics/-/theBasics-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "2aeb729dd4aad34986f00a402abaad44c28a5898", + "tarball": "http://registry.npmjs.org/theBasics/-/theBasics-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "a6645bb8c3c5a799ae2fedfd91d8289927f8aca8", + "tarball": "http://registry.npmjs.org/theBasics/-/theBasics-0.1.5.tgz" + } + }, + "url": "http://registry.npmjs.org/theBasics/" + }, + "thedude": { + "name": "thedude", + "description": "Lebowski Ipsum generator for the command line", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "fhemberger", + "email": "mail@frederic-hemberger.de" + } + ], + "time": { + "modified": "2011-11-07T13:28:11.810Z", + "created": "2011-11-07T13:27:48.076Z", + "0.0.2": "2011-11-07T13:28:11.810Z" + }, + "author": { + "name": "Frederic Hemberger", + "email": "mail@frederic-hemberger.de", + "url": "http://frederic-hemberger.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/fhemberger/dude.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/thedude/0.0.2" + }, + "dist": { + "0.0.2": { + "shasum": "16034cc4bb86e677edf8d0e56b256feebfad6921", + "tarball": "http://registry.npmjs.org/thedude/-/thedude-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/thedude/" + }, + "thefunlanguage.com": { + "name": "thefunlanguage.com", + "description": "Homepage of the programming language Fun", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "marcuswestin", + "email": "narcvs@gmail.com" + } + ], + "time": { + "modified": "2011-03-27T19:45:06.244Z", + "created": "2011-03-27T19:45:05.989Z", + "0.1.0": "2011-03-27T19:45:06.244Z" + }, + "author": { + "name": "Marcus Westin", + "email": "narcvs@gmail.com", + "url": "http://marcuswest.in" + }, + "repository": { + "type": "git", + "url": "git://github.com/marcuswestin/thefunlanguage.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/thefunlanguage.com/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "9b35411be52fd59a246ace5cb9a737a43286da3a", + "tarball": "http://registry.npmjs.org/thefunlanguage.com/-/thefunlanguage.com-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/thefunlanguage.com/" + }, + "thelinuxlich-docco": { + "name": "thelinuxlich-docco", + "description": "The Quick and Dirty Literate Programming Documentation Generator", + "dist-tags": { + "latest": "0.3.2" + }, + "maintainers": [ + { + "name": "thelinuxlich", + "email": "thelinuxlich@gmail.com" + } + ], + "time": { + "modified": "2011-03-30T14:36:25.150Z", + "created": "2011-02-09T15:26:58.209Z", + "0.3.0": "2011-02-09T15:26:58.616Z", + "0.3.1": "2011-02-09T15:41:28.720Z", + "0.3.2": "2011-03-30T14:36:25.150Z" + }, + "author": { + "name": "Jeremy Ashkenas" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/thelinuxlich-docco/0.3.0", + "0.3.1": "http://registry.npmjs.org/thelinuxlich-docco/0.3.1", + "0.3.2": "http://registry.npmjs.org/thelinuxlich-docco/0.3.2" + }, + "dist": { + "0.3.0": { + "shasum": "c849fbc5d60388db9e2ae67edb4859cfe985b933", + "tarball": "http://registry.npmjs.org/thelinuxlich-docco/-/thelinuxlich-docco-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "e651fc5901370893e48a08755fa295f64fc6f2ef", + "tarball": "http://registry.npmjs.org/thelinuxlich-docco/-/thelinuxlich-docco-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "1357fb6fe63fda41098e114ce680e6d7f04a2bc8", + "tarball": "http://registry.npmjs.org/thelinuxlich-docco/-/thelinuxlich-docco-0.3.2.tgz" + } + }, + "keywords": [ + "documentation", + "docs", + "generator", + "coffeescript" + ], + "url": "http://registry.npmjs.org/thelinuxlich-docco/" + }, + "thelinuxlich-vogue": { + "name": "thelinuxlich-vogue", + "description": "Auto-reload stylesheets in web browser whenever the CSS files are saved.", + "dist-tags": { + "latest": "0.1.6" + }, + "maintainers": [ + { + "name": "thelinuxlich", + "email": "thelinuxlich@gmail.com" + } + ], + "time": { + "modified": "2011-03-30T20:00:31.958Z", + "created": "2011-03-30T19:51:52.779Z", + "0.1.5": "2011-03-30T19:51:53.151Z", + "0.1.6": "2011-03-30T20:00:31.958Z" + }, + "author": { + "name": "Andrew Davey", + "email": "andrew@equin.co.uk", + "url": "http://aboutcode.net/" + }, + "repository": "http://github.com/thelinuxlich/vogue.git", + "versions": { + "0.1.5": "http://registry.npmjs.org/thelinuxlich-vogue/0.1.5", + "0.1.6": "http://registry.npmjs.org/thelinuxlich-vogue/0.1.6" + }, + "dist": { + "0.1.5": { + "shasum": "50c881b1ae7b1d59f112b0a27452840cb772daca", + "tarball": "http://registry.npmjs.org/thelinuxlich-vogue/-/thelinuxlich-vogue-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "aa20c1d22298a2bd0423d4292eec2e9d9cb252d4", + "tarball": "http://registry.npmjs.org/thelinuxlich-vogue/-/thelinuxlich-vogue-0.1.6.tgz" + } + }, + "url": "http://registry.npmjs.org/thelinuxlich-vogue/" + }, + "thepusher": { + "name": "thepusher", + "description": "Github post-receive hook router", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "sjs", + "email": "sami@samhuri.net" + } + ], + "time": { + "modified": "2011-11-06T01:59:57.120Z", + "created": "2011-06-05T17:35:29.147Z", + "0.1.0": "2011-06-05T17:35:29.728Z", + "0.1.1": "2011-06-05T17:55:24.001Z", + "0.1.2": "2011-09-27T21:02:00.649Z", + "0.1.3": "2011-11-05T22:50:54.946Z", + "0.1.4": "2011-11-06T01:59:57.120Z" + }, + "author": { + "name": "Sami Samhuri", + "email": "sami@samhuri.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/samsonjs/ThePusher.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/thepusher/0.1.0", + "0.1.1": "http://registry.npmjs.org/thepusher/0.1.1", + "0.1.2": "http://registry.npmjs.org/thepusher/0.1.2", + "0.1.3": "http://registry.npmjs.org/thepusher/0.1.3", + "0.1.4": "http://registry.npmjs.org/thepusher/0.1.4" + }, + "dist": { + "0.1.0": { + "shasum": "2d97fa01cc8d41ac86f4f97957940989d0b63757", + "tarball": "http://registry.npmjs.org/thepusher/-/thepusher-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "72df40a8cc27cfd394e418975e0d5d198adacc69", + "tarball": "http://registry.npmjs.org/thepusher/-/thepusher-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "c3ab1d4223d2ba5ed390f04e340a851874252900", + "tarball": "http://registry.npmjs.org/thepusher/-/thepusher-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "04eed8e3d95d97ecbd52f631a48b5cde7e673061", + "tarball": "http://registry.npmjs.org/thepusher/-/thepusher-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "2979939e125b55d233cf600659169775b2398bba", + "tarball": "http://registry.npmjs.org/thepusher/-/thepusher-0.1.4.tgz" + } + }, + "keywords": [ + "github", + "git", + "post-receive", + "post", + "receive", + "hook", + "router" + ], + "url": "http://registry.npmjs.org/thepusher/" + }, + "thetvdb": { + "name": "thetvdb", + "description": "API client for TheTVDB (http://thetvdb.com/)", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "flybyme", + "email": "price.timmy@gmail.com" + } + ], + "time": { + "modified": "2011-08-06T00:01:10.935Z", + "created": "2011-08-06T00:01:08.652Z", + "0.0.1": "2011-08-06T00:01:10.935Z" + }, + "author": { + "name": "Tim", + "email": "flybyme@wiyc.info" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/thetvdb/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "66cffce43adaa6e8c9e55dfa1dfa7e378d70e7ff", + "tarball": "http://registry.npmjs.org/thetvdb/-/thetvdb-0.0.1.tgz" + } + }, + "keywords": [ + "tv", + "TheTVDB" + ], + "url": "http://registry.npmjs.org/thetvdb/" + }, + "Thimble": { + "name": "Thimble", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "mattmueller", + "email": "mattmuelle@gmail.com" + } + ], + "time": { + "modified": "2011-08-04T13:56:57.165Z", + "created": "2011-08-04T13:56:56.595Z", + "0.0.1": "2011-08-04T13:56:57.165Z" + }, + "author": { + "name": "Matt" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/Thimble/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "f0dec10b6d0e5f4f69162bbdd4eae45790b5cdcb", + "tarball": "http://registry.npmjs.org/Thimble/-/Thimble-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/Thimble/" + }, + "thing": { + "name": "thing", + "description": "flexible metaobjects with trait driven behavior", + "dist-tags": { + "latest": "0.1.3" + }, + "readme": "# Thing\n\nMore to come shortly.\n", + "maintainers": [ + { + "name": "tmpvar", + "email": "tmpvar@gmail.com" + } + ], + "time": { + "modified": "2011-11-23T22:58:20.645Z", + "created": "2011-11-21T05:57:10.783Z", + "0.0.1": "2011-11-21T05:57:11.814Z", + "0.1.0": "2011-11-23T05:06:54.570Z", + "0.1.2": "2011-11-23T05:58:31.565Z", + "0.1.3": "2011-11-23T22:58:20.645Z" + }, + "author": { + "name": "Elijah Insua", + "email": "tmpvar@gmail.com", + "url": "http://tmpvar.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/tmpvar/thing.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/thing/0.0.1", + "0.1.0": "http://registry.npmjs.org/thing/0.1.0", + "0.1.2": "http://registry.npmjs.org/thing/0.1.2", + "0.1.3": "http://registry.npmjs.org/thing/0.1.3" + }, + "dist": { + "0.0.1": { + "shasum": "0c1b0702cdce31beff6a64974fa7f152112eca90", + "tarball": "http://registry.npmjs.org/thing/-/thing-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "fceab2cb2774b5a8a210a0ec5fbc1b713192d39a", + "tarball": "http://registry.npmjs.org/thing/-/thing-0.1.0.tgz" + }, + "0.1.2": { + "shasum": "4015e3b79b97eb4923409f86f75b3fe6740dda33", + "tarball": "http://registry.npmjs.org/thing/-/thing-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "9c094da54c3b4e5c8b848fd1c7a6369e2bc20e5b", + "tarball": "http://registry.npmjs.org/thing/-/thing-0.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/thing/" + }, + "things": { + "name": "things", + "description": "common imports", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "Things Source\n============\n\nThings is a module that exports commonly used modules for coffee-script\n\n\nInstall\n-------\n```\nnpm install things\n```\n\nUsage\n-----\n\n```coffee-script\n\n{path, fs, util, crypto, _, moment} = require 'things'\n\n```\n\nor import only what you need\n\n```coffee-script\n\n{fs, _} = require 'things'\n\n```\n\nFeatures\n--------\n\n* Underscore\n* Underscore.date\n* Moment\n\nDeveloper instructions\n----------------------\n\n* Ensure git, node and npm are installed\n* git clone git@github.com:quillu/things.git\n* switch to dev branch, and make it track origin/dev\n* run npm install\n* run npm link ( this installs dev dependencies and symlinks the project to your global npm registry)\n* Install the following globally via npm install -g\n** coffee-script\n** nodemon\n** vows\n\nCakeFile\n--------\nA Cakefile is used to manage the app\ntype cake at the root directory to see a list of commands\n\nTest\n----\nrun\n```\ncake test\n```\n\nDeveloper flow\n--------------\nFollow github best practices\n\n* Update to latest from master (should be fast forward)\n* Create a new feature branch off master\n* Push branch to origin\n* Write a test\n* Make test pass\n* Refactor\n* Commit\n* Push to remote branch\n* Repeat till feature is finished\n* Then update master to latest from origin (should be fast forward)\n* Rebase your branch to be ontop of master\n* Squash your commits into a atomic feature commit (should have a big log message auto created from the little commits)\n* Merge onto master, and push (should be fast-forward)\n* Once ready for release, tag master.\n* Make branch bugfixes on a version branch off master\n", + "maintainers": [ + { + "name": "dmalam", + "email": "dmmalam@gmail.com" + } + ], + "time": { + "modified": "2011-12-12T18:29:45.365Z", + "created": "2011-12-06T18:14:39.815Z", + "0.0.1": "2011-12-06T18:14:41.200Z", + "0.1.0": "2011-12-12T18:29:45.365Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/quillu/things.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/things/0.0.1", + "0.1.0": "http://registry.npmjs.org/things/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "98945348ccda84fa1659470d9722887c326971bf", + "tarball": "http://registry.npmjs.org/things/-/things-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "24af9b822f4ef07d7b0e0e3483b32b68154fcc3a", + "tarball": "http://registry.npmjs.org/things/-/things-0.1.0.tgz" + } + }, + "keywords": [ + "common" + ], + "url": "http://registry.npmjs.org/things/" + }, + "thirty-two": { + "name": "thirty-two", + "description": "Implementation RFC 3548 Base32 encoding/decoding for node.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "chrisumbel", + "email": "chris@chrisumbel.com" + } + ], + "time": { + "modified": "2011-08-26T02:57:28.273Z", + "created": "2011-08-26T02:57:28.077Z", + "0.0.1": "2011-08-26T02:57:28.273Z" + }, + "author": { + "name": "Chris Umbel", + "email": "chris@chrisumbel.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/thirty-two/0.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/thirty-two/-/thirty-two@0.0.1.tgz" + } + }, + "keywords": [ + "base32", + "encoding" + ], + "url": "http://registry.npmjs.org/thirty-two/" + }, + "thoonk": { + "name": "thoonk", + "description": "Thoonk is a persistent (and fast!) system for push feeds, queues, and jobs which leverages Redis. Thoonk follows a contract (schema + behavior) to allow multiple languages and custom implementations to interact reliably.", + "dist-tags": { + "latest": "0.5.2" + }, + "maintainers": [ + { + "name": "fritzy", + "email": "nathan@andyet.net" + } + ], + "time": { + "modified": "2011-10-20T04:58:40.688Z", + "created": "2011-06-23T00:29:16.043Z", + "0.1.0": "2011-06-23T00:29:16.782Z", + "0.1.1": "2011-07-14T18:41:33.132Z", + "0.1.2": "2011-07-14T18:44:37.942Z", + "0.1.3": "2011-07-14T18:47:07.685Z", + "0.1.4": "2011-07-14T18:49:14.809Z", + "0.2.0": "2011-07-15T00:24:58.675Z", + "0.3.0": "2011-07-31T04:59:16.589Z", + "0.5.2": "2011-10-20T04:58:40.688Z" + }, + "author": { + "name": "Nathan Fritz", + "email": "nathan@andyet.net", + "url": "http://andyet.net/team/nathan" + }, + "repository": { + "type": "git", + "url": "git://github.com/fritzy/thoonk.js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/thoonk/0.1.0", + "0.1.1": "http://registry.npmjs.org/thoonk/0.1.1", + "0.1.2": "http://registry.npmjs.org/thoonk/0.1.2", + "0.1.3": "http://registry.npmjs.org/thoonk/0.1.3", + "0.1.4": "http://registry.npmjs.org/thoonk/0.1.4", + "0.2.0": "http://registry.npmjs.org/thoonk/0.2.0", + "0.3.0": "http://registry.npmjs.org/thoonk/0.3.0", + "0.5.2": "http://registry.npmjs.org/thoonk/0.5.2" + }, + "dist": { + "0.1.0": { + "shasum": "07817f82476c287ca5b1e2b6693e8b4501ead572", + "tarball": "http://registry.npmjs.org/thoonk/-/thoonk-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "3fad1b778939f9ccaf82444a51fe55660ea6226b", + "tarball": "http://registry.npmjs.org/thoonk/-/thoonk-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "6f87095122c18f8c57f76d054333ce0575a50cee", + "tarball": "http://registry.npmjs.org/thoonk/-/thoonk-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "43600ce4ee1124ad811e94a737b64d9f91fe83af", + "tarball": "http://registry.npmjs.org/thoonk/-/thoonk-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "e79315d3c9f3876dc96b76dc59213918cfb637b0", + "tarball": "http://registry.npmjs.org/thoonk/-/thoonk-0.1.4.tgz" + }, + "0.2.0": { + "shasum": "12d5b66832e9e46b6351610886be8c04088e0735", + "tarball": "http://registry.npmjs.org/thoonk/-/thoonk-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "7e7d9e70d8c51e6a25e2782f7991557266742c6c", + "tarball": "http://registry.npmjs.org/thoonk/-/thoonk-0.3.0.tgz" + }, + "0.5.2": { + "shasum": "619c8edbfa5aef4e442f1769819d3956520cea1e", + "tarball": "http://registry.npmjs.org/thoonk/-/thoonk-0.5.2.tgz" + } + }, + "keywords": [ + "redis", + "job", + "feed", + "queue", + "publish", + "subscribe", + "push", + "live", + "cluster" + ], + "url": "http://registry.npmjs.org/thoonk/" + }, + "thorax": { + "name": "thorax", + "description": "Mobile Backbone", + "dist-tags": { + "latest": "0.5.0" + }, + "maintainers": [ + { + "name": "syntacticx", + "email": "ryan@syntacticx.com" + } + ], + "time": { + "modified": "2011-10-11T00:27:21.422Z", + "created": "2011-10-11T00:27:20.914Z", + "0.5.0": "2011-10-11T00:27:21.422Z" + }, + "author": { + "name": "Ryan Eastridge", + "email": "ryan@syntacticx.com", + "url": "http://syntacticx.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/walmartlabs/thorax.git" + }, + "versions": { + "0.5.0": "http://registry.npmjs.org/thorax/0.5.0" + }, + "dist": { + "0.5.0": { + "shasum": "dd0ce4d2bc44417d1387d5a2880bda34ee626094", + "tarball": "http://registry.npmjs.org/thorax/-/thorax-0.5.0.tgz" + } + }, + "keywords": [ + "mobile", + "backbone" + ], + "url": "http://registry.npmjs.org/thorax/" + }, + "thorax-bootstrap": { + "name": "thorax-bootstrap", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "syntacticx", + "email": "ryan@syntacticx.com" + } + ], + "time": { + "modified": "2011-10-09T03:27:31.841Z", + "created": "2011-10-09T03:27:31.328Z", + "0.1.0": "2011-10-09T03:27:31.841Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/thorax-bootstrap/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "eecb6f5ebc00aca2fa563664a0c826f835edd95a", + "tarball": "http://registry.npmjs.org/thorax-bootstrap/-/thorax-bootstrap-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/thorax-bootstrap/" + }, + "thorax-server": { + "name": "thorax-server", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "syntacticx", + "email": "ryan@syntacticx.com" + } + ], + "time": { + "modified": "2011-10-11T00:52:18.408Z", + "created": "2011-10-11T00:52:17.896Z", + "0.1.0": "2011-10-11T00:52:18.408Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/thorax-server/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "4779e9e3f80fa499c845cd155b4ef488a213aa00", + "tarball": "http://registry.npmjs.org/thorax-server/-/thorax-server-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/thorax-server/" + }, + "thrift": { + "name": "thrift", + "description": "node.js bindings for the Apache Thrift RPC system", + "dist-tags": { + "latest": "0.7.0" + }, + "maintainers": [ + { + "name": "wadey", + "email": "wade@wades.im" + } + ], + "time": { + "modified": "2011-08-17T16:45:22.180Z", + "created": "2011-01-03T06:02:40.364Z", + "0.2.1": "2011-01-03T06:02:40.634Z", + "0.2.2": "2011-01-14T23:36:52.108Z", + "0.6.0": "2011-02-08T18:15:38.352Z", + "0.6.0-1": "2011-02-28T19:00:00.747Z", + "0.7.0": "2011-08-17T16:43:08.362Z" + }, + "author": { + "name": "Apache Thrift Developers", + "email": "dev@thrift.apache.org", + "url": "http://thrift.apache.org" + }, + "repository": { + "type": "svn", + "url": "http://svn.apache.org/repos/asf/thrift/trunk/" + }, + "versions": { + "0.2.1": "http://registry.npmjs.org/thrift/0.2.1", + "0.2.2": "http://registry.npmjs.org/thrift/0.2.2", + "0.6.0": "http://registry.npmjs.org/thrift/0.6.0", + "0.6.0-1": "http://registry.npmjs.org/thrift/0.6.0-1", + "0.7.0": "http://registry.npmjs.org/thrift/0.7.0" + }, + "dist": { + "0.2.1": { + "shasum": "4e41b1f33e34a000a73d9f727588f73a32518300", + "tarball": "http://registry.npmjs.org/thrift/-/thrift-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "63addf33184e1a964721df95538085406e11890a", + "tarball": "http://registry.npmjs.org/thrift/-/thrift-0.2.2.tgz" + }, + "0.6.0": { + "shasum": "e3ca230dcb34853bfd22fb71d02b5eedf0f1afa8", + "tarball": "http://registry.npmjs.org/thrift/-/thrift-0.6.0.tgz" + }, + "0.6.0-1": { + "shasum": "cad77afc754e101122d8de0762858dee6bb758b0", + "tarball": "http://registry.npmjs.org/thrift/-/thrift-0.6.0-1.tgz" + }, + "0.7.0": { + "shasum": "d6de59b226954d8bc1c2a5180d13de461e3e72b0", + "tarball": "http://registry.npmjs.org/thrift/-/thrift-0.7.0.tgz" + } + }, + "url": "http://registry.npmjs.org/thrift/" + }, + "thrift-dev": { + "name": "thrift-dev", + "description": "node.js bindings for the Apache Thrift RPC system", + "dist-tags": { + "latest": "0.8.0-dev02" + }, + "maintainers": [ + { + "name": "wadey", + "email": "wade@wades.im" + } + ], + "time": { + "modified": "2011-10-06T17:19:11.607Z", + "created": "2011-10-05T18:35:57.226Z", + "0.8.0-dev": "2011-10-05T18:35:58.531Z", + "0.8.0-dev02": "2011-10-06T17:19:11.607Z" + }, + "author": { + "name": "Apache Thrift Developers", + "email": "dev@thrift.apache.org", + "url": "http://thrift.apache.org" + }, + "repository": { + "type": "svn", + "url": "http://svn.apache.org/repos/asf/thrift/trunk/" + }, + "versions": { + "0.8.0-dev": "http://registry.npmjs.org/thrift-dev/0.8.0-dev", + "0.8.0-dev02": "http://registry.npmjs.org/thrift-dev/0.8.0-dev02" + }, + "dist": { + "0.8.0-dev": { + "shasum": "05cb3b0dac2851596121eeeb792c918e0fb3fbf9", + "tarball": "http://registry.npmjs.org/thrift-dev/-/thrift-dev-0.8.0-dev.tgz" + }, + "0.8.0-dev02": { + "shasum": "ece48a06958ccd316e3d05a011bbbf502feacd8d", + "tarball": "http://registry.npmjs.org/thrift-dev/-/thrift-dev-0.8.0-dev02.tgz" + } + }, + "url": "http://registry.npmjs.org/thrift-dev/" + }, + "thrift-hive": { + "name": "thrift-hive", + "description": "Hive client using the Apache Thrift RPC system", + "dist-tags": { + "latest": "0.0.5" + }, + "readme": "# Thrift Hive - Hive client with multi versions support and a Readable Stream API.\n\nThe project export the [Hive API][1] using [Apache Thrift RPC system][2]. It \nsupport multiple versions and a readable stream API.\n\n## Installation\n\n```\n npm install thrift-hive\n```\n\n## Hive Client\n\nWe've added a function `hive.createClient` to simplify coding. However, you \nare free to use the raw Thrift API. The client take an `options` object as its \nargument andexpose an `execute` and a `query` methods.\n\nAvailable options\n- `version` \n default to '0.7.1-cdh3u2'\n- `server` \n default to '127.0.0.1'\n- `port` \n default to 10000\n- `timeout` \n default to 1000 milliseconds\n\nAvailable API\n\n- `client` \n A reference to the thrift client returned by `thrift.createClient`\n- `connection` \n A reference to the thrift connection returned by `thrift.createConnection`\n- `end([callback])` \n Close the Thrift connection\n- `execute(query, [callback])` \n Execute a query\n- `query(query, [size])` \n Execute a query and return its results as an array of arrays (rows and \n columns). The size argument is optional and indicate the number of row to \n return on each fetch.\n\n```coffeescript\n hive = require 'thrift-hive'\n # Client connection\n client = hive.createClient\n version: '0.7.1-cdh3u2'\n server: '127.0.0.1'\n port: 10000\n timeout: 1000\n # Execute\n client.execute 'USE default', (err) ->\n console.log err.message if err\n client.end()\n```\n\n## Hive Query\n\nThe `client.query` function implement the [EventEmitter API][3].\n\nThe following events are emitted:\n\n- `row`\n- `row-first`\n- `row-last`\n- `error`\n- `end`\n\nThe `client.query` functionreturn a Node [Readable Stream][4]. It is possible to \npipe the data into a [Writable Stream][5] but it is your responsibility to emit\nthe `data` event, usually inside the `row` event.\n\n## Raw versus sugar API\n\nHere's an exemple using the raw API\n\n```javascript\n var assert = require('assert');\n var thrift = require('thrift');\n var transport = require('thrift/lib/thrift/transport');\n\tvar ThriftHive = require('../lib/0.7.1-cdh3u2/ThriftHive');\n\t// Client connection\n\tvar options = {transport: transport.TBufferedTransport, timeout: 1000};\n\tvar connection = thrift.createConnection('127.0.0.1', 10000, options);\n\tvar client = thrift.createClient(ThriftHive, connection);\n // Execute query\n client.execute('show databases', function(err){\n assert.ifError(err);\n client.fetchAll(function(err, databases){\n assert.ifError(err);\n console.log(databases);\n connection.end();\n });\n });\n```\n\nHere's an exemple using our sugar API\n\n```javascript\n var assert = require('assert');\n var hive = require('thrift-hive');\n // Client connection\n var client = hive.createClient({\n version: '0.7.1-cdh3u2',\n server: '127.0.0.1',\n port: 10000,\n timeout: 1000\n });\n // Execute query\n client.query('show databases')\n .on('row', function(database){\n console.log(database);\n })\n .on('end', function(err){\n assert.ifError(err);\n client.end();\n });\n```\n\n\n[1]: http://hive.apache.org \"Apache Hive\"\n[2]: http://thrift.apache.org \"Apache Thrift\"\n[3]: http://nodejs.org/docs/v0.6.2/api/events.html#events.EventEmitter \"EventEmitter API\"\n[4]: http://nodejs.org/docs/v0.6.2/api/streams.html#readable_Stream \"Readable Stream API\"\n[5]: http://nodejs.org/docs/v0.6.2/api/streams.html#writable_Stream \"Writable Stream API\"\n", + "maintainers": [ + { + "name": "david", + "email": "david@adaltas.com" + } + ], + "time": { + "modified": "2011-12-07T23:04:32.353Z", + "created": "2011-11-22T23:13:44.656Z", + "0.0.3": "2011-11-22T23:13:46.214Z", + "0.0.4": "2011-12-05T17:01:41.545Z", + "0.0.5": "2011-12-07T23:04:32.353Z" + }, + "author": { + "name": "David Worms" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/thrift-hive/0.0.3", + "0.0.4": "http://registry.npmjs.org/thrift-hive/0.0.4", + "0.0.5": "http://registry.npmjs.org/thrift-hive/0.0.5" + }, + "dist": { + "0.0.3": { + "shasum": "9ff517b6deca1b6d0e64787773227232c8c0312d", + "tarball": "http://registry.npmjs.org/thrift-hive/-/thrift-hive-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "cb1f9c7311ae9698f5f0fc734e49dd0eca88cb9f", + "tarball": "http://registry.npmjs.org/thrift-hive/-/thrift-hive-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "29db10d90c0856554f34616b4f89e73186eac930", + "tarball": "http://registry.npmjs.org/thrift-hive/-/thrift-hive-0.0.5.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/thrift-hive/" + }, + "throttle": { + "name": "throttle", + "description": "Throttle node Stream instances with \"bytes per second\".", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "TooTallNate", + "email": "nathan@tootallnate.net" + } + ], + "time": { + "modified": "2011-01-25T03:37:43.252Z", + "created": "2011-01-25T03:37:42.563Z", + "0.0.1": "2011-01-25T03:37:43.252Z" + }, + "author": { + "name": "Nathan Rajlich", + "email": "nathan@tootallnate.net" + }, + "repository": "git://github.com/TooTallNate/node-throttle.git", + "versions": { + "0.0.1": "http://registry.npmjs.org/throttle/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "ef37b232bbe3d8621a00e8607ddcb8902e0621d0", + "tarball": "http://registry.npmjs.org/throttle/-/throttle-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/throttle/" + }, + "thyme": { + "name": "thyme", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "architectd", + "email": "craig.j.condon@gmail.com" + } + ], + "time": { + "modified": "2011-12-07T05:05:52.380Z", + "created": "2011-08-10T03:00:14.184Z", + "0.0.1": "2011-12-06T22:51:28.035Z", + "0.0.2": "2011-12-06T22:51:28.035Z", + "0.0.3": "2011-10-08T22:34:22.026Z", + "0.0.4": "2011-12-06T05:02:28.323Z", + "0.0.5": "2011-12-06T22:51:28.035Z", + "0.0.6": "2011-12-07T05:05:52.380Z" + }, + "author": { + "name": "Craig Condon", + "email": "craig@crcn.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/crcn/thyme.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/thyme/0.0.1", + "0.0.2": "http://registry.npmjs.org/thyme/0.0.2", + "0.0.3": "http://registry.npmjs.org/thyme/0.0.3", + "0.0.4": "http://registry.npmjs.org/thyme/0.0.4", + "0.0.5": "http://registry.npmjs.org/thyme/0.0.5", + "0.0.6": "http://registry.npmjs.org/thyme/0.0.6" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/thyme/-/thyme-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/thyme/-/thyme-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "d6f1b958fc551b1e6f4cdada2f6ef0c54747efbf", + "tarball": "http://registry.npmjs.org/thyme/-/thyme-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "91111d862bcab0ba00475eddc341e07dc0e529c5", + "tarball": "http://registry.npmjs.org/thyme/-/thyme-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "1a501904661028ed2c5dbce959e3e738fe5174e2", + "tarball": "http://registry.npmjs.org/thyme/-/thyme-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "2f3e85914d7f1f06a5de3347a11e6fa25f4fc39c", + "tarball": "http://registry.npmjs.org/thyme/-/thyme-0.0.6.tgz" + } + }, + "url": "http://registry.npmjs.org/thyme/" + }, + "tiamat": { + "name": "tiamat", + "description": "A forking server for node.js", + "dist-tags": { + "latest": "0.2.3" + }, + "maintainers": [ + { + "name": "taf2", + "email": "todd.fisher@gmail.com" + } + ], + "time": { + "modified": "2011-07-03T02:53:26.918Z", + "created": "2011-05-02T14:07:07.905Z", + "0.0.2": "2011-05-02T14:07:08.026Z", + "0.0.3": "2011-05-02T14:11:35.364Z", + "0.0.4": "2011-05-02T14:16:56.187Z", + "0.0.5": "2011-05-02T14:31:32.805Z", + "0.0.6": "2011-05-02T15:54:42.771Z", + "0.0.7": "2011-05-02T15:56:11.969Z", + "0.0.8": "2011-05-02T17:36:30.607Z", + "0.0.9": "2011-05-02T18:43:21.430Z", + "0.1.0": "2011-05-02T19:04:59.739Z", + "0.1.1": "2011-05-03T03:36:18.115Z", + "0.1.2": "2011-05-03T14:00:06.076Z", + "0.1.3": "2011-05-03T14:04:10.281Z", + "0.1.4": "2011-05-03T18:50:00.840Z", + "0.1.5": "2011-05-04T02:28:59.110Z", + "0.1.6": "2011-05-04T02:51:04.212Z", + "0.1.7": "2011-05-11T02:35:37.335Z", + "0.1.8": "2011-07-02T02:49:38.958Z", + "0.2.0": "2011-07-02T18:31:24.485Z", + "0.2.1": "2011-07-02T18:44:26.104Z", + "0.2.2": "2011-07-02T20:23:15.145Z", + "0.2.3": "2011-07-03T02:53:26.918Z" + }, + "author": { + "name": "todd", + "url": "taf2" + }, + "repository": { + "type": "git", + "url": "git://github.com/taf2/tiamat.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/tiamat/0.0.2", + "0.0.3": "http://registry.npmjs.org/tiamat/0.0.3", + "0.0.4": "http://registry.npmjs.org/tiamat/0.0.4", + "0.0.5": "http://registry.npmjs.org/tiamat/0.0.5", + "0.0.6": "http://registry.npmjs.org/tiamat/0.0.6", + "0.0.7": "http://registry.npmjs.org/tiamat/0.0.7", + "0.0.8": "http://registry.npmjs.org/tiamat/0.0.8", + "0.0.9": "http://registry.npmjs.org/tiamat/0.0.9", + "0.1.0": "http://registry.npmjs.org/tiamat/0.1.0", + "0.1.1": "http://registry.npmjs.org/tiamat/0.1.1", + "0.1.2": "http://registry.npmjs.org/tiamat/0.1.2", + "0.1.3": "http://registry.npmjs.org/tiamat/0.1.3", + "0.1.4": "http://registry.npmjs.org/tiamat/0.1.4", + "0.1.5": "http://registry.npmjs.org/tiamat/0.1.5", + "0.1.6": "http://registry.npmjs.org/tiamat/0.1.6", + "0.1.7": "http://registry.npmjs.org/tiamat/0.1.7", + "0.1.8": "http://registry.npmjs.org/tiamat/0.1.8", + "0.2.0": "http://registry.npmjs.org/tiamat/0.2.0", + "0.2.1": "http://registry.npmjs.org/tiamat/0.2.1", + "0.2.2": "http://registry.npmjs.org/tiamat/0.2.2", + "0.2.3": "http://registry.npmjs.org/tiamat/0.2.3" + }, + "dist": { + "0.0.2": { + "shasum": "275eb15e337d3b858f43ddc01b3cabbbe7dbdd5c", + "tarball": "http://registry.npmjs.org/tiamat/-/tiamat-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "270b5ab48fd8a3a7bce14ff6549a00c7ad1c7fb1", + "tarball": "http://registry.npmjs.org/tiamat/-/tiamat-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "a5130ff0b3316c4d6df24fde67221123daa87251", + "tarball": "http://registry.npmjs.org/tiamat/-/tiamat-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "28f038a0611baf6764a6165acf066666c82093a1", + "tarball": "http://registry.npmjs.org/tiamat/-/tiamat-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "04698a848d0281638ec3cd65b43ac0ed75094178", + "tarball": "http://registry.npmjs.org/tiamat/-/tiamat-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "e1f6fd81214a621d7a9aa08ab907804d783ba19f", + "tarball": "http://registry.npmjs.org/tiamat/-/tiamat-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "e6b7eeaa626be221c3c6dc11fa4f23e46b860f12", + "tarball": "http://registry.npmjs.org/tiamat/-/tiamat-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "4183bb696854d6eec73ebc5c863c304414697a14", + "tarball": "http://registry.npmjs.org/tiamat/-/tiamat-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "c3e8f1488b4c6bf3427472981e43c0d313cc318a", + "tarball": "http://registry.npmjs.org/tiamat/-/tiamat-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "f5bbe5c11de2e8ee306bc0f3f7d3e7bc9c54223f", + "tarball": "http://registry.npmjs.org/tiamat/-/tiamat-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "f313eccb394988e0672f7e0df5ff03255e5dc8a7", + "tarball": "http://registry.npmjs.org/tiamat/-/tiamat-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "865c3fac5f58b11de969b47b6de8e5a8339b492b", + "tarball": "http://registry.npmjs.org/tiamat/-/tiamat-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "9feef1067888cceec67328335aea39dc69316ac9", + "tarball": "http://registry.npmjs.org/tiamat/-/tiamat-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "3243f169ccf8007da78379e02db944270343a9fb", + "tarball": "http://registry.npmjs.org/tiamat/-/tiamat-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "16be5bd89f251546bd7c8bca417311980b8b34b2", + "tarball": "http://registry.npmjs.org/tiamat/-/tiamat-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "f5d37d339515f7949b4b465e567a7eeb7710a95a", + "tarball": "http://registry.npmjs.org/tiamat/-/tiamat-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "c1d9aaf99603fac20f6acbe954d2cf0522865981", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.25-darwin-10.8.0": { + "shasum": "d54ed27ec6b69927906d5f13a92f676b2ed65e73", + "tarball": "http://registry.npmjs.org/tiamat/-/tiamat-0.1.8-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.25-darwin-10.8.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/tiamat/-/tiamat-0.1.8.tgz" + }, + "0.2.0": { + "shasum": "82f02220b8563194aae10190147aadd105f3d9d2", + "tarball": "http://registry.npmjs.org/tiamat/-/tiamat-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "984a1142635280ec2e50be78a31f59d3bb63b4d4", + "tarball": "http://registry.npmjs.org/tiamat/-/tiamat-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "7e6c557cb7ac61db3a2ba1c232ad56c7fa88fd9a", + "tarball": "http://registry.npmjs.org/tiamat/-/tiamat-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "a0e5bd75a5797518813e21bd0e428577a2c1bcd6", + "tarball": "http://registry.npmjs.org/tiamat/-/tiamat-0.2.3.tgz" + } + }, + "url": "http://registry.npmjs.org/tiamat/" + }, + "tictoc": { + "name": "tictoc", + "description": "a simple timer just like the one from matlab. tic() dowork() toc(();.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "dtrejo", + "email": "dtrejo@cs.brown.edu" + } + ], + "time": { + "modified": "2011-03-01T03:48:25.216Z", + "created": "2011-03-01T03:48:25.009Z", + "0.1.0": "2011-03-01T03:48:25.216Z" + }, + "author": { + "name": "David Trejo", + "email": "dtrejo@cs.brown.edu", + "url": "http://dtrejo.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/DTrejo/tictoc.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/tictoc/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "655ac016c2f62bd49ca538fae5a474190ac9ab9c", + "tarball": "http://registry.npmjs.org/tictoc/-/tictoc-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/tictoc/" + }, + "tidy": { + "name": "tidy", + "description": "a binding to the tidy html library", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "martyn_garcia", + "email": "martyn.garcia@gmail.com" + } + ], + "time": { + "modified": "2011-09-22T21:27:33.611Z", + "created": "2011-09-22T21:27:32.694Z", + "0.0.1": "2011-09-22T21:27:33.612Z" + }, + "author": { + "name": "Martyn Garcia", + "email": "martyn.garcia@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tidy/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "ce70f54a7dd4a8685360c7e99d81b2647a50433b", + "tarball": "http://registry.npmjs.org/tidy/-/tidy-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/tidy/" + }, + "tiers": { + "name": "tiers", + "description": "Web framework built on coffee-script.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "terryvesper", + "email": "vesper.terry@gmail.com" + } + ], + "time": { + "modified": "2011-03-14T22:38:57.126Z", + "created": "2011-03-14T22:38:56.778Z", + "0.0.1": "2011-03-14T22:38:57.126Z" + }, + "author": { + "name": "Terry Vesper", + "email": "vesper.terry@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/terryvesper/tiers.git", + "private": "git@github.com:terryvesper/tiers.git", + "web": "http://terryvesper.github.com/tiers" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tiers/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "b9a3b7cec141d340d73da6a382a5734d873a0d40", + "tarball": "http://registry.npmjs.org/tiers/-/tiers-0.0.1.tgz" + } + }, + "keywords": [ + "tiers", + "web", + "framework" + ], + "url": "http://registry.npmjs.org/tiers/" + }, + "tilejson": { + "name": "tilejson", + "description": "Tile source backend for online tile sources", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "kkaefer", + "email": "kkaefer@gmail.com" + } + ], + "time": { + "modified": "2011-08-11T17:43:01.190Z", + "created": "2011-07-13T14:54:53.348Z", + "0.0.1": "2011-07-13T14:54:54.393Z", + "0.0.2": "2011-08-11T17:43:01.190Z" + }, + "author": { + "name": "MapBox", + "email": "info@mapbox.com", + "url": "http://mapbox.com/" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tilejson/0.0.1", + "0.0.2": "http://registry.npmjs.org/tilejson/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "994a21160e545ae49e903e5bfec29d3c9c5c0d15", + "tarball": "http://registry.npmjs.org/tilejson/-/tilejson-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c94527aee184801e3368b4f2a9a10bcb107a5ff2", + "tarball": "http://registry.npmjs.org/tilejson/-/tilejson-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/tilejson/" + }, + "tilelive": { + "name": "tilelive", + "description": "Frontend for various tile backends, mapnik and mbtiles", + "dist-tags": { + "latest": "4.1.1" + }, + "maintainers": [ + { + "name": "tmcw", + "email": "macwright@gmail.com" + }, + { + "name": "yhahn", + "email": "young@developmentseed.org" + }, + { + "name": "springmeyer", + "email": "dane@dbsgeo.com" + }, + { + "name": "kkaefer", + "email": "kkaefer@gmail.com" + }, + { + "name": "willwhite", + "email": "will@developmentseed.org" + } + ], + "time": { + "modified": "2011-09-01T04:19:25.482Z", + "created": "2011-02-04T20:10:27.216Z", + "1.0.1": "2011-02-04T20:10:27.394Z", + "1.0.3": "2011-02-08T21:34:40.727Z", + "1.0.4": "2011-02-08T21:36:22.922Z", + "1.0.5": "2011-02-08T21:38:47.336Z", + "1.0.7": "2011-02-28T21:04:43.157Z", + "2.0.0": "2011-03-02T19:20:50.462Z", + "2.0.1": "2011-03-12T18:38:15.624Z", + "2.0.2": "2011-04-29T20:01:48.096Z", + "2.0.3": "2011-05-03T15:50:40.129Z", + "3.0.0": "2011-05-20T14:54:25.466Z", + "3.0.1": "2011-05-20T19:32:53.910Z", + "3.0.2": "2011-05-25T07:22:58.496Z", + "4.0.0": "2011-07-13T15:32:46.922Z", + "3.0.3": "2011-07-20T19:02:14.355Z", + "4.0.1": "2011-07-25T15:04:45.995Z", + "4.0.2": "2011-07-26T14:50:46.284Z", + "4.0.3": "2011-07-27T00:34:59.564Z", + "4.0.4": "2011-07-27T18:21:55.230Z", + "4.0.5": "2011-08-15T16:28:36.383Z", + "4.1.0": "2011-08-31T18:19:52.951Z", + "4.1.1": "2011-09-01T04:19:25.482Z" + }, + "author": { + "name": "MapBox", + "email": "info@mapbox.com", + "url": "http://mapbox.com/" + }, + "versions": { + "1.0.1": "http://registry.npmjs.org/tilelive/1.0.1", + "1.0.3": "http://registry.npmjs.org/tilelive/1.0.3", + "1.0.4": "http://registry.npmjs.org/tilelive/1.0.4", + "2.0.1": "http://registry.npmjs.org/tilelive/2.0.1", + "2.0.2": "http://registry.npmjs.org/tilelive/2.0.2", + "2.0.3": "http://registry.npmjs.org/tilelive/2.0.3", + "3.0.0": "http://registry.npmjs.org/tilelive/3.0.0", + "3.0.1": "http://registry.npmjs.org/tilelive/3.0.1", + "3.0.2": "http://registry.npmjs.org/tilelive/3.0.2", + "4.0.0": "http://registry.npmjs.org/tilelive/4.0.0", + "3.0.3": "http://registry.npmjs.org/tilelive/3.0.3", + "4.0.1": "http://registry.npmjs.org/tilelive/4.0.1", + "4.0.2": "http://registry.npmjs.org/tilelive/4.0.2", + "4.0.3": "http://registry.npmjs.org/tilelive/4.0.3", + "4.0.4": "http://registry.npmjs.org/tilelive/4.0.4", + "4.0.5": "http://registry.npmjs.org/tilelive/4.0.5", + "4.1.0": "http://registry.npmjs.org/tilelive/4.1.0", + "4.1.1": "http://registry.npmjs.org/tilelive/4.1.1" + }, + "dist": { + "1.0.1": { + "shasum": "c5c646950c329762d0bde68fb6e1a46001c8c2c7", + "tarball": "http://registry.npmjs.org/tilelive/-/tilelive-1.0.1.tgz" + }, + "1.0.3": { + "shasum": "7a135dcd92bdb73950f5c7421e58e40f1811a7c7", + "tarball": "http://registry.npmjs.org/tilelive/-/tilelive-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "31d75b13200a5e4df761f729d92b605e2dfe250e", + "tarball": "http://registry.npmjs.org/tilelive/-/tilelive-1.0.4.tgz" + }, + "2.0.1": { + "shasum": "247553f0d39bb4e2ff60373a4bebfb4b6291a417", + "tarball": "http://registry.npmjs.org/tilelive/-/tilelive-2.0.1.tgz" + }, + "2.0.2": { + "shasum": "8efcc2ed6b5ae2cfd0908712ccab060f17bde4b6", + "tarball": "http://registry.npmjs.org/tilelive/-/tilelive-2.0.2.tgz" + }, + "2.0.3": { + "shasum": "0a4e2872607661efc6f70d756860827e2684c57f", + "tarball": "http://registry.npmjs.org/tilelive/-/tilelive-2.0.3.tgz" + }, + "3.0.0": { + "shasum": "b06753c6269edcd386469b440728e84275e1521a", + "tarball": "http://registry.npmjs.org/tilelive/-/tilelive-3.0.0.tgz" + }, + "3.0.1": { + "shasum": "bad3839c4e804cdfb6cdc80c99beba3cf11c6737", + "tarball": "http://registry.npmjs.org/tilelive/-/tilelive-3.0.1.tgz" + }, + "3.0.2": { + "shasum": "fe8199366940dc9ecba599d27e518ceb39981f39", + "tarball": "http://registry.npmjs.org/tilelive/-/tilelive-3.0.2.tgz" + }, + "4.0.0": { + "shasum": "6c84aff8a3ec7ee78a348ff2084f81ad061512e4", + "tarball": "http://registry.npmjs.org/tilelive/-/tilelive-4.0.0.tgz" + }, + "3.0.3": { + "shasum": "d9aa40469aeb17a616fa4e778e9e7f927ed8edc4", + "tarball": "http://registry.npmjs.org/tilelive/-/tilelive-3.0.3.tgz" + }, + "4.0.1": { + "shasum": "3d45e2690cc84edc5234ebae22456564346717bc", + "tarball": "http://registry.npmjs.org/tilelive/-/tilelive-4.0.1.tgz" + }, + "4.0.2": { + "shasum": "eb50db23d65652c32d148a24cf3108847ae3f2a7", + "tarball": "http://registry.npmjs.org/tilelive/-/tilelive-4.0.2.tgz" + }, + "4.0.3": { + "shasum": "5c5bf96e16060698499498f3da921f2e357cecc5", + "tarball": "http://registry.npmjs.org/tilelive/-/tilelive-4.0.3.tgz" + }, + "4.0.4": { + "shasum": "6dd3ac807c1598f2ede71c5040f8f0a9d283fc90", + "tarball": "http://registry.npmjs.org/tilelive/-/tilelive-4.0.4.tgz" + }, + "4.0.5": { + "shasum": "61fd6dcaf0713c2c21b654bd3c890897672cc4ef", + "tarball": "http://registry.npmjs.org/tilelive/-/tilelive-4.0.5.tgz" + }, + "4.1.0": { + "shasum": "9c4432fbcf32b6eb5f4924ffa9f9464a10b55291", + "tarball": "http://registry.npmjs.org/tilelive/-/tilelive-4.1.0.tgz" + }, + "4.1.1": { + "shasum": "a98f85c88ec2b9add831ed909123a8ae6ca837ca", + "tarball": "http://registry.npmjs.org/tilelive/-/tilelive-4.1.1.tgz" + } + }, + "keywords": [ + "map", + "server", + "mapnik", + "tms" + ], + "url": "http://registry.npmjs.org/tilelive/" + }, + "tilelive-mapnik": { + "name": "tilelive-mapnik", + "description": "Mapnik backend for tilelive", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "yhahn", + "email": "young@developmentseed.org" + }, + { + "name": "tmcw", + "email": "macwright@gmail.com" + }, + { + "name": "kkaefer", + "email": "kkaefer@gmail.com" + }, + { + "name": "springmeyer", + "email": "dane@dbsgeo.com" + }, + { + "name": "willwhite", + "email": "will@developmentseed.org" + } + ], + "time": { + "modified": "2011-08-04T20:44:41.372Z", + "created": "2011-05-18T16:33:33.156Z", + "0.0.1": "2011-05-18T16:33:33.306Z", + "0.0.2": "2011-05-19T16:51:21.211Z", + "0.0.3": "2011-05-19T22:34:28.197Z", + "0.0.4": "2011-05-23T20:01:18.662Z", + "0.0.5": "2011-05-25T07:24:28.859Z", + "0.0.6": "2011-07-20T18:59:54.695Z", + "0.1.0": "2011-07-25T20:46:41.884Z", + "0.1.1": "2011-07-26T14:52:46.976Z", + "0.1.2": "2011-07-27T06:38:30.870Z", + "0.2.0": "2011-08-03T17:46:21.659Z", + "0.2.1": "2011-08-04T20:44:41.372Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tilelive-mapnik/0.0.1", + "0.0.2": "http://registry.npmjs.org/tilelive-mapnik/0.0.2", + "0.0.3": "http://registry.npmjs.org/tilelive-mapnik/0.0.3", + "0.0.4": "http://registry.npmjs.org/tilelive-mapnik/0.0.4", + "0.0.5": "http://registry.npmjs.org/tilelive-mapnik/0.0.5", + "0.0.6": "http://registry.npmjs.org/tilelive-mapnik/0.0.6", + "0.1.0": "http://registry.npmjs.org/tilelive-mapnik/0.1.0", + "0.1.1": "http://registry.npmjs.org/tilelive-mapnik/0.1.1", + "0.1.2": "http://registry.npmjs.org/tilelive-mapnik/0.1.2", + "0.2.0": "http://registry.npmjs.org/tilelive-mapnik/0.2.0", + "0.2.1": "http://registry.npmjs.org/tilelive-mapnik/0.2.1" + }, + "dist": { + "0.0.1": { + "shasum": "dcad0960eeb337f0442c6937d9f460f8043c9649", + "tarball": "http://registry.npmjs.org/tilelive-mapnik/-/tilelive-mapnik-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "e2536a86251adf2954f5a56da42429d559c172f5", + "tarball": "http://registry.npmjs.org/tilelive-mapnik/-/tilelive-mapnik-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "8ffc5b6b0ca8b8bc1734ea58fe13f488c869bbfb", + "tarball": "http://registry.npmjs.org/tilelive-mapnik/-/tilelive-mapnik-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "c0d0ebab8569a443e0c015e63e78309e38fac0bd", + "tarball": "http://registry.npmjs.org/tilelive-mapnik/-/tilelive-mapnik-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "d8ff13fc3389e4fb2401fde490c0b55224f6f8f1", + "tarball": "http://registry.npmjs.org/tilelive-mapnik/-/tilelive-mapnik-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "0b08150c73ecaafc9a8fb2f6d4f9f108377fa49e", + "tarball": "http://registry.npmjs.org/tilelive-mapnik/-/tilelive-mapnik-0.0.6.tgz" + }, + "0.1.0": { + "shasum": "62134a91747c592bd1c4235b68d7830fd20ea6de", + "tarball": "http://registry.npmjs.org/tilelive-mapnik/-/tilelive-mapnik-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "4e4c19d160cc234e97b766e5c15d0fd981155ff3", + "tarball": "http://registry.npmjs.org/tilelive-mapnik/-/tilelive-mapnik-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "15c40bd02adb9bb3f89cffec5ba6cc030bb96b8c", + "tarball": "http://registry.npmjs.org/tilelive-mapnik/-/tilelive-mapnik-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "ddd52ef608065d9e5b4bd18241c00ce6baaba503", + "tarball": "http://registry.npmjs.org/tilelive-mapnik/-/tilelive-mapnik-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "41e4b4c8dc22774947298a1be19489cbebefaf3a", + "tarball": "http://registry.npmjs.org/tilelive-mapnik/-/tilelive-mapnik-0.2.1.tgz" + } + }, + "keywords": [ + "map", + "server", + "mapnik", + "tms" + ], + "url": "http://registry.npmjs.org/tilelive-mapnik/" + }, + "tilelive-mapnik-cartodb": { + "name": "tilelive-mapnik-cartodb", + "description": "Mapnik backend for tilelive", + "dist-tags": { + "latest": "0.2.3" + }, + "maintainers": [ + { + "name": "tokumine", + "email": "si@tinypla.net" + } + ], + "time": { + "modified": "2011-12-09T00:11:12.185Z", + "created": "2011-10-07T15:04:52.836Z", + "0.2.1": "2011-10-07T15:04:54.761Z", + "0.2.2": "2011-12-08T23:58:05.195Z", + "0.2.3": "2011-12-09T00:11:12.185Z" + }, + "versions": { + "0.2.1": "http://registry.npmjs.org/tilelive-mapnik-cartodb/0.2.1", + "0.2.2": "http://registry.npmjs.org/tilelive-mapnik-cartodb/0.2.2", + "0.2.3": "http://registry.npmjs.org/tilelive-mapnik-cartodb/0.2.3" + }, + "dist": { + "0.2.1": { + "shasum": "827c447d9b9722caad2f6f361f90ecb5a7d3069a", + "tarball": "http://registry.npmjs.org/tilelive-mapnik-cartodb/-/tilelive-mapnik-cartodb-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "d0c308c95be6b1a7f575c35bc4947ee0b1c95fcf", + "tarball": "http://registry.npmjs.org/tilelive-mapnik-cartodb/-/tilelive-mapnik-cartodb-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "52f749ab64bcc305d971c23c86a21480e1212cd9", + "tarball": "http://registry.npmjs.org/tilelive-mapnik-cartodb/-/tilelive-mapnik-cartodb-0.2.3.tgz" + } + }, + "keywords": [ + "map", + "server", + "mapnik", + "tms" + ], + "url": "http://registry.npmjs.org/tilelive-mapnik-cartodb/" + }, + "tilemill": { + "name": "tilemill", + "dist-tags": { + "latest": "0.7.0" + }, + "maintainers": [ + { + "name": "kkaefer", + "email": "kkaefer@gmail.com" + }, + { + "name": "yhahn", + "email": "young@developmentseed.org" + }, + { + "name": "tmcw", + "email": "macwright@gmail.com" + }, + { + "name": "springmeyer", + "email": "dane@dbsgeo.com" + }, + { + "name": "willwhite", + "email": "will@developmentseed.org" + } + ], + "time": { + "modified": "2011-11-20T20:36:31.053Z", + "created": "2011-07-26T20:06:56.415Z", + "0.0.0": "2011-07-26T20:06:57.204Z", + "0.4.0alpha": "2011-07-27T18:26:34.624Z", + "0.4.0": "2011-08-05T00:06:28.611Z", + "0.4.1": "2011-08-09T04:43:13.103Z", + "0.4.2": "2011-08-10T17:07:00.658Z", + "0.5.0": "2011-08-25T17:04:18.420Z", + "0.5.1": "2011-09-07T22:18:54.002Z", + "0.6.0": "2011-10-26T17:12:48.949Z", + "0.6.1": "2011-10-26T20:52:38.411Z", + "0.6.2": "2011-11-01T18:53:36.123Z", + "0.7.0": "2011-11-20T20:36:31.053Z" + }, + "description": "A modern map design studio.", + "versions": { + "0.0.0": "http://registry.npmjs.org/tilemill/0.0.0", + "0.4.0alpha": "http://registry.npmjs.org/tilemill/0.4.0alpha", + "0.4.0": "http://registry.npmjs.org/tilemill/0.4.0", + "0.4.1": "http://registry.npmjs.org/tilemill/0.4.1", + "0.4.2": "http://registry.npmjs.org/tilemill/0.4.2", + "0.5.0": "http://registry.npmjs.org/tilemill/0.5.0", + "0.5.1": "http://registry.npmjs.org/tilemill/0.5.1", + "0.6.0": "http://registry.npmjs.org/tilemill/0.6.0", + "0.6.1": "http://registry.npmjs.org/tilemill/0.6.1", + "0.6.2": "http://registry.npmjs.org/tilemill/0.6.2", + "0.7.0": "http://registry.npmjs.org/tilemill/0.7.0" + }, + "dist": { + "0.0.0": { + "shasum": "0e359098b74c659e4f0c0bb97f0dccf1a7004704", + "tarball": "http://registry.npmjs.org/tilemill/-/tilemill-0.0.0.tgz" + }, + "0.4.0alpha": { + "shasum": "a2f824e4426d9e1ba1360d3ea9823acaa7ff99ad", + "tarball": "http://registry.npmjs.org/tilemill/-/tilemill-0.4.0alpha.tgz" + }, + "0.4.0": { + "shasum": "8951000892a510a939e719e888326ba4fe902447", + "tarball": "http://registry.npmjs.org/tilemill/-/tilemill-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "6460b70f066446a2b7be1ca1ae4ff52b471c3ca4", + "tarball": "http://registry.npmjs.org/tilemill/-/tilemill-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "2494901d1b423a1bae9685e74b9643cd7c46f80c", + "tarball": "http://registry.npmjs.org/tilemill/-/tilemill-0.4.2.tgz" + }, + "0.5.0": { + "shasum": "3fe5b0fa674115695aa2b7ec856f53ac15e50495", + "tarball": "http://registry.npmjs.org/tilemill/-/tilemill-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "f7f768cd7b619a17fdc6d587015518aac5b0a77c", + "tarball": "http://registry.npmjs.org/tilemill/-/tilemill-0.5.1.tgz" + }, + "0.6.0": { + "shasum": "7077d229eb3878209f22ca8c6697684da98df041", + "tarball": "http://registry.npmjs.org/tilemill/-/tilemill-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "d03b1405fed8e21d148350c426b6ecaa89752764", + "tarball": "http://registry.npmjs.org/tilemill/-/tilemill-0.6.1.tgz" + }, + "0.6.2": { + "shasum": "092ed8476a2f0c86ee2effa6fd94084270c8fa20", + "tarball": "http://registry.npmjs.org/tilemill/-/tilemill-0.6.2.tgz" + }, + "0.7.0": { + "shasum": "5a8301654b026341806e1aac879d3743cbc6b686", + "tarball": "http://registry.npmjs.org/tilemill/-/tilemill-0.7.0.tgz" + } + }, + "keywords": [ + "map", + "design", + "cartography" + ], + "url": "http://registry.npmjs.org/tilemill/" + }, + "tilestream": { + "name": "tilestream", + "description": "A high performance tile server and simple web viewer for MBTiles files.", + "dist-tags": { + "latest": "0.4.9" + }, + "maintainers": [ + { + "name": "yhahn", + "email": "young@developmentseed.org" + }, + { + "name": "tmcw", + "email": "macwright@gmail.com" + }, + { + "name": "kkaefer", + "email": "kkaefer@gmail.com" + }, + { + "name": "springmeyer", + "email": "dane@dbsgeo.com" + }, + { + "name": "willwhite", + "email": "will@developmentseed.org" + }, + { + "name": "ianshward", + "email": "ian@developmentseed.org" + } + ], + "time": { + "modified": "2011-10-09T01:07:00.536Z", + "created": "2011-05-20T16:30:47.683Z", + "0.1.0": "2011-05-20T16:30:49.608Z", + "0.1.1": "2011-05-25T18:12:10.133Z", + "0.1.2": "2011-05-31T19:06:10.172Z", + "0.1.3": "2011-06-07T17:41:00.397Z", + "0.1.4": "2011-06-07T18:16:12.127Z", + "0.1.5": "2011-06-08T17:35:52.808Z", + "0.1.6": "2011-06-09T06:50:31.028Z", + "0.1.7": "2011-06-09T21:28:27.315Z", + "0.1.8": "2011-06-10T04:53:18.324Z", + "0.1.9": "2011-06-10T17:43:28.433Z", + "0.1.10": "2011-06-10T21:10:56.492Z", + "0.1.11": "2011-06-10T21:48:49.712Z", + "0.1.12": "2011-06-13T15:01:13.507Z", + "0.2.0": "2011-06-23T19:09:12.732Z", + "0.2.1": "2011-06-27T20:21:03.441Z", + "0.2.2": "2011-06-28T21:07:17.799Z", + "0.2.3": "2011-06-28T22:11:01.666Z", + "0.2.4": "2011-06-29T17:37:26.760Z", + "0.2.5": "2011-06-29T19:50:01.105Z", + "0.2.6": "2011-07-01T15:29:10.119Z", + "0.2.7": "2011-07-05T20:01:22.294Z", + "0.2.8": "2011-07-06T02:54:35.942Z", + "0.4.0": "2011-07-13T17:46:34.280Z", + "0.4.1": "2011-07-13T19:57:01.773Z", + "0.4.2": "2011-08-03T18:58:04.464Z", + "0.4.3": "2011-08-11T19:08:34.426Z", + "0.4.4": "2011-08-15T17:35:36.100Z", + "0.4.5": "2011-08-27T18:20:57.871Z", + "0.4.6": "2011-08-31T18:32:29.669Z", + "0.4.7": "2011-09-08T15:01:39.946Z", + "0.4.8": "2011-09-14T14:54:34.742Z", + "0.4.9": "2011-10-09T01:07:00.536Z" + }, + "author": { + "name": "MapBox", + "email": "info@mapbox.com", + "url": "http://mapbox.com/" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/tilestream/0.1.0", + "0.1.1": "http://registry.npmjs.org/tilestream/0.1.1", + "0.1.2": "http://registry.npmjs.org/tilestream/0.1.2", + "0.1.3": "http://registry.npmjs.org/tilestream/0.1.3", + "0.1.4": "http://registry.npmjs.org/tilestream/0.1.4", + "0.1.5": "http://registry.npmjs.org/tilestream/0.1.5", + "0.1.6": "http://registry.npmjs.org/tilestream/0.1.6", + "0.1.7": "http://registry.npmjs.org/tilestream/0.1.7", + "0.1.8": "http://registry.npmjs.org/tilestream/0.1.8", + "0.1.9": "http://registry.npmjs.org/tilestream/0.1.9", + "0.1.10": "http://registry.npmjs.org/tilestream/0.1.10", + "0.1.11": "http://registry.npmjs.org/tilestream/0.1.11", + "0.1.12": "http://registry.npmjs.org/tilestream/0.1.12", + "0.2.0": "http://registry.npmjs.org/tilestream/0.2.0", + "0.2.1": "http://registry.npmjs.org/tilestream/0.2.1", + "0.2.2": "http://registry.npmjs.org/tilestream/0.2.2", + "0.2.3": "http://registry.npmjs.org/tilestream/0.2.3", + "0.2.4": "http://registry.npmjs.org/tilestream/0.2.4", + "0.2.5": "http://registry.npmjs.org/tilestream/0.2.5", + "0.2.6": "http://registry.npmjs.org/tilestream/0.2.6", + "0.2.7": "http://registry.npmjs.org/tilestream/0.2.7", + "0.2.8": "http://registry.npmjs.org/tilestream/0.2.8", + "0.4.0": "http://registry.npmjs.org/tilestream/0.4.0", + "0.4.1": "http://registry.npmjs.org/tilestream/0.4.1", + "0.4.2": "http://registry.npmjs.org/tilestream/0.4.2", + "0.4.3": "http://registry.npmjs.org/tilestream/0.4.3", + "0.4.4": "http://registry.npmjs.org/tilestream/0.4.4", + "0.4.5": "http://registry.npmjs.org/tilestream/0.4.5", + "0.4.6": "http://registry.npmjs.org/tilestream/0.4.6", + "0.4.7": "http://registry.npmjs.org/tilestream/0.4.7", + "0.4.8": "http://registry.npmjs.org/tilestream/0.4.8", + "0.4.9": "http://registry.npmjs.org/tilestream/0.4.9" + }, + "dist": { + "0.1.0": { + "shasum": "7c4580f30e577d773d4397b8355f993969c348cf", + "tarball": "http://registry.npmjs.org/tilestream/-/tilestream-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "3d69ce496c34bf10ee0e0cad710a5e0499b45d56", + "tarball": "http://registry.npmjs.org/tilestream/-/tilestream-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "949780aa7f7b7b3b36ef578152ea56068164dec7", + "tarball": "http://registry.npmjs.org/tilestream/-/tilestream-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "9e17e7cab1e2766aadd3a8c4b8bdac7cacf4830c", + "tarball": "http://registry.npmjs.org/tilestream/-/tilestream-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "78d61c5af1378c94b509b235514ad8824583d187", + "tarball": "http://registry.npmjs.org/tilestream/-/tilestream-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "2e3926c94810baeeace6d9aabc90e84d8479597d", + "tarball": "http://registry.npmjs.org/tilestream/-/tilestream-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "695c5abffba9eed1913adde2b28a1942d755add1", + "tarball": "http://registry.npmjs.org/tilestream/-/tilestream-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "5ec1428c7d7fd3807e3bfdc6329abe88fd2b8481", + "tarball": "http://registry.npmjs.org/tilestream/-/tilestream-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "0d731e1ed9a67a17e1ccf33b9300d0c3c3938761", + "tarball": "http://registry.npmjs.org/tilestream/-/tilestream-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "00ae0cb6f5812795e8da59b855a458fd4e1bdef4", + "tarball": "http://registry.npmjs.org/tilestream/-/tilestream-0.1.9.tgz" + }, + "0.1.10": { + "shasum": "90087578d2d2bfb1fd5858436ecbe175edaa7887", + "tarball": "http://registry.npmjs.org/tilestream/-/tilestream-0.1.10.tgz" + }, + "0.1.11": { + "shasum": "008fad404e9b39445d7e8e39fc0f2a797e9c5fa5", + "tarball": "http://registry.npmjs.org/tilestream/-/tilestream-0.1.11.tgz" + }, + "0.1.12": { + "shasum": "fc55946a922d611068ed2fafcf5bb1af8095c943", + "tarball": "http://registry.npmjs.org/tilestream/-/tilestream-0.1.12.tgz" + }, + "0.2.0": { + "shasum": "7c8441a3d7eaf7a9cbfdc71ad3fc0286b627897e", + "tarball": "http://registry.npmjs.org/tilestream/-/tilestream-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "92485934d4d6bb1ee6f1cf879d06f59fa974b44e", + "tarball": "http://registry.npmjs.org/tilestream/-/tilestream-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "9d6eb982aa9e6b4bdf4df2ac779a08d5eee0903d", + "tarball": "http://registry.npmjs.org/tilestream/-/tilestream-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "d1d9b4df1fca956da5b42628ccfea1e6338497ad", + "tarball": "http://registry.npmjs.org/tilestream/-/tilestream-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "9f3fe0b715480fbf184b8aca805388b3b0f829fa", + "tarball": "http://registry.npmjs.org/tilestream/-/tilestream-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "0e647429b1cfbd710d321760bb4cffe3f9ae36b1", + "tarball": "http://registry.npmjs.org/tilestream/-/tilestream-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "d72628e07e56fc265833a5eeee8a15dbd03c1889", + "tarball": "http://registry.npmjs.org/tilestream/-/tilestream-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "f3f88eb11de1a4635f6dcb7ef39e3356f8ff7703", + "tarball": "http://registry.npmjs.org/tilestream/-/tilestream-0.2.7.tgz" + }, + "0.2.8": { + "shasum": "7c38a95a1df6151b25d3394cfb3fbdce35721366", + "tarball": "http://registry.npmjs.org/tilestream/-/tilestream-0.2.8.tgz" + }, + "0.4.0": { + "shasum": "85c3271799982730ceda9a0b6a86466fcf195949", + "tarball": "http://registry.npmjs.org/tilestream/-/tilestream-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "ef56cf2058948d5ed7510f5c50ac4ad8d8ba6e16", + "tarball": "http://registry.npmjs.org/tilestream/-/tilestream-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "8d83d22901d3cc81d2e36629d8bf4190277fda26", + "tarball": "http://registry.npmjs.org/tilestream/-/tilestream-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "3cb65ed8313d73436f488b9835750a0ec6308ec1", + "tarball": "http://registry.npmjs.org/tilestream/-/tilestream-0.4.3.tgz" + }, + "0.4.4": { + "shasum": "b614302f24acb765d0df7e0f060919c861e8a794", + "tarball": "http://registry.npmjs.org/tilestream/-/tilestream-0.4.4.tgz" + }, + "0.4.5": { + "shasum": "3295360ef2a15db354e18879e4779bea813c20f0", + "tarball": "http://registry.npmjs.org/tilestream/-/tilestream-0.4.5.tgz" + }, + "0.4.6": { + "shasum": "623ab4e44d8aa92d0ce1e6e27d2c4c998160e840", + "tarball": "http://registry.npmjs.org/tilestream/-/tilestream-0.4.6.tgz" + }, + "0.4.7": { + "shasum": "5d16297fbcdb334a7f3ecbc47ba443bcfe98be4e", + "tarball": "http://registry.npmjs.org/tilestream/-/tilestream-0.4.7.tgz" + }, + "0.4.8": { + "shasum": "69c8416ec34724ab75444d4e9d40648b8b455c16", + "tarball": "http://registry.npmjs.org/tilestream/-/tilestream-0.4.8.tgz" + }, + "0.4.9": { + "shasum": "6c53706a096212110e5174596d3a621ed4cbe1f4", + "tarball": "http://registry.npmjs.org/tilestream/-/tilestream-0.4.9.tgz" + } + }, + "url": "http://registry.npmjs.org/tilestream/" + }, + "timbits": { + "name": "timbits", + "description": "Widget framework based on Express and CoffeeScript", + "dist-tags": { + "latest": "0.3.3" + }, + "maintainers": [ + { + "name": "mred9", + "email": "ed@degroot.ca" + }, + { + "name": "veerman", + "email": "sveerman@postmedia.com" + } + ], + "time": { + "modified": "2011-11-23T17:58:05.245Z", + "created": "2011-07-14T13:49:27.550Z", + "0.0.2": "2011-07-14T13:49:27.764Z", + "0.0.4": "2011-07-14T18:42:03.049Z", + "0.0.5": "2011-08-04T15:09:01.602Z", + "0.0.6": "2011-08-12T17:49:03.944Z", + "0.0.7": "2011-08-18T19:13:39.339Z", + "0.1.0": "2011-08-22T18:04:50.587Z", + "0.1.1": "2011-08-23T17:02:46.680Z", + "0.1.2": "2011-08-25T20:41:43.420Z", + "0.1.3": "2011-09-09T16:53:17.039Z", + "0.2.0beta": "2011-09-09T21:07:06.168Z", + "0.2.0beta2": "2011-09-13T13:50:49.693Z", + "0.2.0beta3": "2011-09-14T14:16:30.470Z", + "0.2.0beta4": "2011-09-16T02:19:13.381Z", + "0.2.0beta5": "2011-10-04T13:38:30.990Z", + "0.2.0": "2011-10-17T17:38:01.733Z", + "0.3.0": "2011-10-17T19:54:02.002Z", + "0.3.1": "2011-11-10T21:21:14.559Z", + "0.3.2": "2011-11-18T15:13:08.304Z", + "0.3.3": "2011-11-23T17:58:05.245Z" + }, + "author": { + "name": "Edward de Groot", + "email": "edegroot@postmedia.com", + "url": "http://mred9.wordpress.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/postmedia/timbits.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/timbits/0.0.2", + "0.0.4": "http://registry.npmjs.org/timbits/0.0.4", + "0.0.5": "http://registry.npmjs.org/timbits/0.0.5", + "0.0.6": "http://registry.npmjs.org/timbits/0.0.6", + "0.0.7": "http://registry.npmjs.org/timbits/0.0.7", + "0.1.0": "http://registry.npmjs.org/timbits/0.1.0", + "0.1.1": "http://registry.npmjs.org/timbits/0.1.1", + "0.1.2": "http://registry.npmjs.org/timbits/0.1.2", + "0.1.3": "http://registry.npmjs.org/timbits/0.1.3", + "0.2.0": "http://registry.npmjs.org/timbits/0.2.0", + "0.3.0": "http://registry.npmjs.org/timbits/0.3.0", + "0.3.1": "http://registry.npmjs.org/timbits/0.3.1", + "0.3.2": "http://registry.npmjs.org/timbits/0.3.2", + "0.3.3": "http://registry.npmjs.org/timbits/0.3.3" + }, + "dist": { + "0.0.2": { + "shasum": "cbe17e94be50f4d10f844908bfd30f1633e7bbe3", + "tarball": "http://registry.npmjs.org/timbits/-/timbits-0.0.2.tgz" + }, + "0.0.4": { + "shasum": "3fb13f9f1ee638296f29237183dba203751394cf", + "tarball": "http://registry.npmjs.org/timbits/-/timbits-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "6499067d26e3226586bd2bf8697a79a10687268c", + "tarball": "http://registry.npmjs.org/timbits/-/timbits-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "aeb6875cd71f81ff0d62291691875257849c0b47", + "tarball": "http://registry.npmjs.org/timbits/-/timbits-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "654c95787ab0bf4d237cfcd931910834a56d71ff", + "tarball": "http://registry.npmjs.org/timbits/-/timbits-0.0.7.tgz" + }, + "0.1.0": { + "shasum": "f63917b58c9391d3d66fbae657d5a81c42670958", + "tarball": "http://registry.npmjs.org/timbits/-/timbits-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "628ab2be8663491389a18ba8ff2909b6984476c1", + "tarball": "http://registry.npmjs.org/timbits/-/timbits-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "a4aa757fce67893d1f44cbcc22f8963eabc2780e", + "tarball": "http://registry.npmjs.org/timbits/-/timbits-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "809b0d15359c1eb8a211b933f57889f7975842df", + "tarball": "http://registry.npmjs.org/timbits/-/timbits-0.1.3.tgz" + }, + "0.2.0": { + "shasum": "15d321153acdd5ca60229323e0f788c582abb01d", + "tarball": "http://registry.npmjs.org/timbits/-/timbits-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "d6dfe28923e838c35042e343075395b6d4044825", + "tarball": "http://registry.npmjs.org/timbits/-/timbits-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "fce84208350185e280363cd80a22242d148efabb", + "tarball": "http://registry.npmjs.org/timbits/-/timbits-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "1f9c1cfd94c6b82c6c039d1db3f2bbf5df269104", + "tarball": "http://registry.npmjs.org/timbits/-/timbits-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "bfc973e5bb8fb5a9dfa6a4129b82a1ff0acf3d66", + "tarball": "http://registry.npmjs.org/timbits/-/timbits-0.3.3.tgz" + } + }, + "keywords": [ + "framework", + "widgets", + "express", + "coffeescript", + "coffeekup" + ], + "url": "http://registry.npmjs.org/timbits/" + }, + "time": { + "name": "time", + "description": "\"time.h\" bindings for NodeJS", + "dist-tags": { + "latest": "0.6.5" + }, + "maintainers": [ + { + "name": "TooTallNate", + "email": "nathan@tootallnate.net" + } + ], + "time": { + "modified": "2011-11-07T06:30:00.062Z", + "created": "2011-03-03T01:16:52.104Z", + "0.0.1": "2011-03-03T01:16:52.790Z", + "0.0.2": "2011-03-10T02:45:52.367Z", + "0.0.3": "2011-03-10T23:44:01.339Z", + "0.1.0": "2011-03-11T05:51:36.629Z", + "0.1.1": "2011-03-16T06:16:38.833Z", + "0.1.2": "2011-04-14T22:22:18.534Z", + "0.1.3": "2011-04-14T23:01:38.479Z", + "0.1.4": "2011-04-28T01:39:22.800Z", + "0.2.0": "2011-05-02T22:02:56.360Z", + "0.2.1": "2011-05-04T22:02:50.573Z", + "0.2.2": "2011-05-04T22:54:27.071Z", + "0.2.3": "2011-05-10T06:45:10.959Z", + "0.3.0": "2011-05-12T20:19:05.644Z", + "0.3.1": "2011-05-18T01:15:51.881Z", + "0.3.2": "2011-05-18T23:33:51.397Z", + "0.4.0": "2011-05-31T02:36:05.807Z", + "0.5.0": "2011-06-16T23:22:31.241Z", + "0.6.0": "2011-08-31T18:19:35.925Z", + "0.6.2": "2011-09-10T01:06:27.709Z", + "0.6.3": "2011-09-12T18:15:27.555Z", + "0.6.4": "2011-09-12T18:19:07.540Z", + "0.6.5": "2011-11-07T06:30:00.062Z" + }, + "author": { + "name": "Nathan Rajlich", + "email": "nathan@tootallnate.net", + "url": "http://tootallnate.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/TooTallNate/node-time.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/time/0.0.1", + "0.0.2": "http://registry.npmjs.org/time/0.0.2", + "0.0.3": "http://registry.npmjs.org/time/0.0.3", + "0.1.0": "http://registry.npmjs.org/time/0.1.0", + "0.1.1": "http://registry.npmjs.org/time/0.1.1", + "0.1.2": "http://registry.npmjs.org/time/0.1.2", + "0.1.3": "http://registry.npmjs.org/time/0.1.3", + "0.1.4": "http://registry.npmjs.org/time/0.1.4", + "0.2.0": "http://registry.npmjs.org/time/0.2.0", + "0.2.1": "http://registry.npmjs.org/time/0.2.1", + "0.2.2": "http://registry.npmjs.org/time/0.2.2", + "0.2.3": "http://registry.npmjs.org/time/0.2.3", + "0.3.0": "http://registry.npmjs.org/time/0.3.0", + "0.3.1": "http://registry.npmjs.org/time/0.3.1", + "0.3.2": "http://registry.npmjs.org/time/0.3.2", + "0.4.0": "http://registry.npmjs.org/time/0.4.0", + "0.5.0": "http://registry.npmjs.org/time/0.5.0", + "0.6.0": "http://registry.npmjs.org/time/0.6.0", + "0.6.2": "http://registry.npmjs.org/time/0.6.2", + "0.6.3": "http://registry.npmjs.org/time/0.6.3", + "0.6.4": "http://registry.npmjs.org/time/0.6.4", + "0.6.5": "http://registry.npmjs.org/time/0.6.5" + }, + "dist": { + "0.0.1": { + "shasum": "6282dea22ee9b39d75e5bcc6109645147dfe0d1f", + "tarball": "http://registry.npmjs.org/time/-/time-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c9351a6d70f0820c3a48566233ece0f3c5d118ad", + "tarball": "http://registry.npmjs.org/time/-/time-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "dba3c28885033f030d0944b1802d5a51f0282a03", + "tarball": "http://registry.npmjs.org/time/-/time-0.0.3.tgz" + }, + "0.1.0": { + "shasum": "4dd14768e7e5d7396e1cda10bb6d3269ff5af427", + "tarball": "http://registry.npmjs.org/time/-/time-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "7bcc99b69c5def5d4bec6a9f2cff6ba6dfb58ada", + "tarball": "http://registry.npmjs.org/time/-/time-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "d73db5ccf9e9668eb32036f7d47e5a87406dad74", + "tarball": "http://registry.npmjs.org/time/-/time-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "19e135377d474556ae4f4ebc760e8a84021188a7", + "tarball": "http://registry.npmjs.org/time/-/time-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "e41ab48918312ce8cced3e75c03102685cea0d16", + "tarball": "http://registry.npmjs.org/time/-/time-0.1.4.tgz" + }, + "0.2.0": { + "shasum": "4ad8173a911146182ca56da9a6672975350906b4", + "tarball": "http://registry.npmjs.org/time/-/time-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "0de1bd4cf4aace9100fc3837f4024764c61e3acb", + "tarball": "http://registry.npmjs.org/time/-/time-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "458a8ee9cfb6b315c974e474c4301b56bff3a92f", + "tarball": "http://registry.npmjs.org/time/-/time-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "d8c62616bec1b585a410667c73c9bd4993175475", + "tarball": "http://registry.npmjs.org/time/-/time-0.2.3.tgz" + }, + "0.3.0": { + "shasum": "37bac5c90bba39ca48e5920426f3141b34e1f377", + "tarball": "http://registry.npmjs.org/time/-/time-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "4934be549dae07c60dd64ef46c07a2d01bd617c6", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.0": { + "shasum": "92ff6ebc4d1b6f53aa16bd96209c7360dafe3e1c", + "tarball": "http://registry.npmjs.org/time/-/time-0.3.1-0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/time/-/time-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "4b0541cfb61fbcc3e2302f29c8d4a2537028d8e0", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.0": { + "shasum": "574d0a5339c276bd3a7e592fce5acc6c6f745509", + "tarball": "http://registry.npmjs.org/time/-/time-0.3.2-0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/time/-/time-0.3.2.tgz" + }, + "0.4.0": { + "shasum": "c904cd8fb3ab39c35db1c4aef5d2ae0ab221555d", + "tarball": "http://registry.npmjs.org/time/-/time-0.4.0.tgz" + }, + "0.5.0": { + "shasum": "e0124490a95bdd3e32acd96d0bb65a61f86ff907", + "tarball": "http://registry.npmjs.org/time/-/time-0.5.0.tgz" + }, + "0.6.0": { + "shasum": "426fcd222d37ef78244cd332d45d70c664dab854", + "tarball": "http://registry.npmjs.org/time/-/time-0.6.0.tgz" + }, + "0.6.2": { + "shasum": "d48f76f9472674627588c1120b5d425b8b0d90a5", + "tarball": "http://registry.npmjs.org/time/-/time-0.6.2.tgz" + }, + "0.6.3": { + "shasum": "1a75a0463a63264f0ae0b82fba5175114249afe6", + "tarball": "http://registry.npmjs.org/time/-/time-0.6.3.tgz" + }, + "0.6.4": { + "shasum": "7e32733cca975965b54e33ada3b427e07e6b05e1", + "tarball": "http://registry.npmjs.org/time/-/time-0.6.4.tgz" + }, + "0.6.5": { + "shasum": "f4f5de3a75cbe3add7c1022f59a6e5c9d4dec376", + "tarball": "http://registry.npmjs.org/time/-/time-0.6.5.tgz" + } + }, + "keywords": [ + "date", + "time", + "time.h", + "timezone", + "setTimezone", + "getTimezone" + ], + "url": "http://registry.npmjs.org/time/" + }, + "time-machine": { + "name": "time-machine", + "description": "Timeout and interval wrapper", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "lampjunkie", + "email": "marc@lampjunkie.com" + } + ], + "time": { + "modified": "2011-10-24T07:10:59.102Z", + "created": "2011-10-22T22:10:07.028Z", + "0.1.0": "2011-10-22T22:10:07.805Z", + "0.2.0": "2011-10-24T07:10:59.102Z" + }, + "author": { + "name": "Marc Roulias", + "email": "marc@lampjunkie.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/lampjunkie/time-machine.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/time-machine/0.1.0", + "0.2.0": "http://registry.npmjs.org/time-machine/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "a0ce2d39d7e5e6767471678785b72eee1f865800", + "tarball": "http://registry.npmjs.org/time-machine/-/time-machine-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "80fe329682416afb8a1ef01bae78ee2c79a03f92", + "tarball": "http://registry.npmjs.org/time-machine/-/time-machine-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/time-machine/" + }, + "timeago": { + "name": "timeago", + "description": "A wrapper for John Resig's Pretty Date function", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "ecto", + "email": "diffference@gmail.com" + } + ], + "time": { + "modified": "2011-10-06T16:47:08.691Z", + "created": "2011-10-06T16:43:35.843Z", + "0.0.1": "2011-10-06T16:43:36.159Z", + "0.0.2": "2011-10-06T16:47:08.691Z" + }, + "author": { + "name": "Cam Pedersen", + "email": "diffference@gmail.com", + "url": "http://campedersen.com" + }, + "repository": { + "url": "https://github.com/ecto/node-timeago" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/timeago/0.0.1", + "0.0.2": "http://registry.npmjs.org/timeago/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "ce1994e4958623c14d735d97ca417e7e3b8e2b6e", + "tarball": "http://registry.npmjs.org/timeago/-/timeago-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "d68867ee3cdc973eff2371519dc7d3c56bc8aca3", + "tarball": "http://registry.npmjs.org/timeago/-/timeago-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/timeago/" + }, + "timeout": { + "name": "timeout", + "description": "Simple replacement for setTimeout, setInterval, and polling loops", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "amccollum", + "email": "amccollum+npm@gmail.com" + } + ], + "time": { + "modified": "2011-09-09T21:42:00.168Z", + "created": "2011-09-06T16:14:16.598Z", + "0.1.0": "2011-09-06T16:14:17.065Z", + "0.1.1": "2011-09-06T22:12:52.371Z", + "0.2.1": "2011-09-09T21:42:00.168Z" + }, + "author": { + "name": "Andrew McCollum", + "email": "amccollum@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/timeout/0.1.0", + "0.1.1": "http://registry.npmjs.org/timeout/0.1.1", + "0.2.1": "http://registry.npmjs.org/timeout/0.2.1" + }, + "dist": { + "0.1.0": { + "shasum": "1a389430afb6e3dfded2c517a97292246afa833c", + "tarball": "http://registry.npmjs.org/timeout/-/timeout-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "02f4535cbff6f46ea2d4d1869ae0fc316d0a960c", + "tarball": "http://registry.npmjs.org/timeout/-/timeout-0.1.1.tgz" + }, + "0.2.1": { + "shasum": "3156353dc7089de33eba6356b648e71a68e82758", + "tarball": "http://registry.npmjs.org/timeout/-/timeout-0.2.1.tgz" + } + }, + "keywords": [ + "ender", + "timeout", + "polling", + "setTimeout", + "setInterval" + ], + "url": "http://registry.npmjs.org/timeout/" + }, + "timer": { + "name": "timer", + "description": "utility function to simplify using combinations of setTimeout/setInterval.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "markussieber", + "email": "sieber.m@gmail.com" + } + ], + "time": { + "modified": "2011-05-31T21:24:53.179Z", + "created": "2011-05-31T15:59:00.646Z", + "0.0.1": "2011-05-31T15:59:01.349Z", + "0.0.2": "2011-05-31T21:24:53.179Z" + }, + "author": { + "name": "Markus Sieber", + "email": "sieber.m@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/markussieber/timer.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/timer/0.0.1", + "0.0.2": "http://registry.npmjs.org/timer/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "37fb67f98dc1f995ceac2a56761915c726fbb1f8", + "tarball": "http://registry.npmjs.org/timer/-/timer-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "9b17b1445f7d1965075fa932f375936a2f8a2804", + "tarball": "http://registry.npmjs.org/timer/-/timer-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/timer/" + }, + "timerjs": { + "name": "timerjs", + "description": "Simple timer, wraps setInterval and clearInterval.", + "dist-tags": { + "latest": "0.0.7" + }, + "maintainers": [ + { + "name": "minodisk", + "email": "daisuke.mino@gmail.com" + } + ], + "time": { + "modified": "2011-07-22T12:58:42.879Z", + "created": "2011-07-22T12:58:41.527Z", + "0.0.7": "2011-07-22T12:58:42.879Z" + }, + "author": { + "name": "Daisuke MINO", + "email": "daisuke.mino@gmail.com" + }, + "versions": { + "0.0.7": "http://registry.npmjs.org/timerjs/0.0.7" + }, + "dist": { + "0.0.7": { + "shasum": "b0309485f69bcadcb96e9646ebc748ed5d8f8d05", + "tarball": "http://registry.npmjs.org/timerjs/-/timerjs-0.0.7.tgz" + } + }, + "url": "http://registry.npmjs.org/timerjs/" + }, + "timerstub": { + "name": "timerstub", + "description": "Stubbed out timer objects for testing", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "josephg", + "email": "josephg@gmail.com" + } + ], + "time": { + "modified": "2011-11-20T04:27:11.448Z", + "created": "2011-09-30T14:43:53.054Z", + "0.1.0": "2011-09-30T14:43:54.674Z", + "0.1.1": "2011-09-30T23:39:30.512Z", + "0.1.2": "2011-10-02T03:43:04.234Z", + "0.1.3": "2011-11-20T04:27:11.448Z" + }, + "author": { + "name": "Joseph Gentle", + "email": "josephg@gmail.com" + }, + "repository": { + "url": "" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/timerstub/0.1.0", + "0.1.1": "http://registry.npmjs.org/timerstub/0.1.1", + "0.1.2": "http://registry.npmjs.org/timerstub/0.1.2", + "0.1.3": "http://registry.npmjs.org/timerstub/0.1.3" + }, + "dist": { + "0.1.0": { + "shasum": "34e2386a369c32d59d5500cf1ac9e211ab57c86b", + "tarball": "http://registry.npmjs.org/timerstub/-/timerstub-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "de66f4e924be424da584ee7fea187657cdfce135", + "tarball": "http://registry.npmjs.org/timerstub/-/timerstub-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "5f99600259e3e0252c9d68c3f05863b86622e73b", + "tarball": "http://registry.npmjs.org/timerstub/-/timerstub-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "d31b32a9774a181a9294a60b8a9698b1b1eb3708", + "tarball": "http://registry.npmjs.org/timerstub/-/timerstub-0.1.3.tgz" + } + }, + "keywords": [ + "test", + "stub", + "timeout", + "time" + ], + "url": "http://registry.npmjs.org/timerstub/" + }, + "timespan": { + "name": "timespan", + "description": "A JavaScript TimeSpan library for node.js (and soon the browser)", + "dist-tags": { + "latest": "2.2.0" + }, + "maintainers": [ + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + } + ], + "time": { + "modified": "2011-06-26T15:52:47.009Z", + "created": "2011-02-14T02:11:37.478Z", + "2.0.0": "2011-02-14T02:11:37.940Z", + "2.0.1": "2011-05-25T05:51:17.358Z", + "2.1.0": "2011-06-26T09:47:25.105Z", + "2.2.0": "2011-06-26T12:33:28.082Z" + }, + "author": { + "name": "Michael Stum", + "email": "blog@stum.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/indexzero/timespan.git" + }, + "versions": { + "2.0.0": "http://registry.npmjs.org/timespan/2.0.0", + "2.0.1": "http://registry.npmjs.org/timespan/2.0.1", + "2.1.0": "http://registry.npmjs.org/timespan/2.1.0", + "2.2.0": "http://registry.npmjs.org/timespan/2.2.0" + }, + "dist": { + "2.0.0": { + "shasum": "21a47dd66df08cf62708d4a170a60467f9af1f1f", + "tarball": "http://registry.npmjs.org/timespan/-/timespan-2.0.0.tgz" + }, + "2.0.1": { + "shasum": "479b45875937e14d0f4be1625f2abd08d801f68a", + "tarball": "http://registry.npmjs.org/timespan/-/timespan-2.0.1.tgz" + }, + "2.1.0": { + "shasum": "9a410fbbf26e213362d956f4836349e65e573832", + "tarball": "http://registry.npmjs.org/timespan/-/timespan-2.1.0.tgz" + }, + "2.2.0": { + "shasum": "964c59c0dd92169656bc1648c9f2ddb652f5010a", + "tarball": "http://registry.npmjs.org/timespan/-/timespan-2.2.0.tgz" + } + }, + "keywords": [ + "time", + "dates", + "utilities", + "timespan" + ], + "url": "http://registry.npmjs.org/timespan/" + }, + "TimeSpan.js": { + "name": "TimeSpan.js", + "description": "Manage lengths of time with Javascript", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "rob-ot", + "email": "dsmlover@gmail.com" + } + ], + "time": { + "modified": "2011-12-01T02:36:28.987Z", + "created": "2011-11-30T23:05:42.326Z", + "1.0.0": "2011-12-01T02:36:28.987Z" + }, + "author": { + "name": "Rob Middleton", + "email": "rob@i.tv" + }, + "repository": { + "type": "git", + "url": "git://github.com/idottv/TimeSpan.js.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/TimeSpan.js/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "1c9710a4f933561d212146e76397031f3b6b3e2b", + "tarball": "http://registry.npmjs.org/TimeSpan.js/-/TimeSpan.js-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/TimeSpan.js/" + }, + "timeTraveller": { + "name": "timeTraveller", + "description": "Time Traveller provides a set of utility methods to deal with dates. From adding and substracting, to formatting. Time Traveller only extends date objects that it creates, without polluting the global namespace.", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "hgarcia", + "email": "hernan@dynamicprogrammer.com" + } + ], + "time": { + "modified": "2011-06-25T10:15:17.394Z", + "created": "2011-06-19T04:56:51.938Z", + "0.1.0": "2011-06-19T04:56:52.131Z", + "0.2.0": "2011-06-25T09:36:25.460Z", + "0.2.1": "2011-06-25T10:15:17.394Z" + }, + "author": { + "name": "Hernan Garcia", + "email": "hernan@dynamicprogrammer.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/hgarcia/TimeTraveller.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/timeTraveller/0.1.0", + "0.2.0": "http://registry.npmjs.org/timeTraveller/0.2.0", + "0.2.1": "http://registry.npmjs.org/timeTraveller/0.2.1" + }, + "dist": { + "0.1.0": { + "shasum": "c2ae6c5319fe801906de9b487da3ac4e6baab916", + "tarball": "http://registry.npmjs.org/timeTraveller/-/timeTraveller-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "1d12a706d3770fa96566e278d02174ae633de8c7", + "tarball": "http://registry.npmjs.org/timeTraveller/-/timeTraveller-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "b8747b678b3ef741706368d4efde1e18502380f2", + "tarball": "http://registry.npmjs.org/timeTraveller/-/timeTraveller-0.2.1.tgz" + } + }, + "keywords": [ + "date", + "time", + "formmatting" + ], + "url": "http://registry.npmjs.org/timeTraveller/" + }, + "timezone": { + "name": "timezone", + "dist-tags": { + "latest": "0.0.7" + }, + "maintainers": [ + { + "name": "bigeasy", + "email": "alan@prettyrobots.com" + } + ], + "time": { + "modified": "2011-10-20T23:56:31.911Z", + "created": "2011-03-15T05:58:38.293Z", + "0.0.1": "2011-03-15T05:58:38.532Z", + "0.0.2": "2011-03-16T20:43:37.927Z", + "0.0.3": "2011-05-04T00:13:22.559Z", + "0.0.4": "2011-05-04T01:55:15.765Z", + "0.0.5": "2011-05-04T02:03:29.120Z", + "0.0.6": "2011-10-14T09:40:11.071Z", + "0.0.7": "2011-10-20T23:56:31.911Z" + }, + "author": { + "name": "Alan Gutierrez" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/timezone/0.0.1", + "0.0.2": "http://registry.npmjs.org/timezone/0.0.2", + "0.0.3": "http://registry.npmjs.org/timezone/0.0.3", + "0.0.4": "http://registry.npmjs.org/timezone/0.0.4", + "0.0.5": "http://registry.npmjs.org/timezone/0.0.5", + "0.0.6": "http://registry.npmjs.org/timezone/0.0.6", + "0.0.7": "http://registry.npmjs.org/timezone/0.0.7" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/timezone/-/timezone@0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/timezone/-/timezone@0.0.2.tgz" + }, + "0.0.3": { + "shasum": "8e6e84b18b9a2175c1bd1cb547e7c2f72e93fd67", + "tarball": "http://registry.npmjs.org/timezone/-/timezone-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "0cf7fe767b88ae896809da7727f1ff32fab847d0", + "tarball": "http://registry.npmjs.org/timezone/-/timezone-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "50b46f65dd6ecb36c0b967f5696230b6c90750a9", + "tarball": "http://registry.npmjs.org/timezone/-/timezone-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "abcd55e980a6ec4687b83962951086e2e1f51297", + "tarball": "http://registry.npmjs.org/timezone/-/timezone-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "6a68f82fd0016ab2a65216ad849bdb12b69d9804", + "tarball": "http://registry.npmjs.org/timezone/-/timezone-0.0.7.tgz" + } + }, + "url": "http://registry.npmjs.org/timezone/" + }, + "tiny": { + "name": "tiny", + "description": "an in-process database", + "dist-tags": { + "latest": "0.0.8" + }, + "maintainers": [ + { + "name": "chjj", + "email": "chjjeffrey@gmail.com" + } + ], + "time": { + "modified": "2011-12-08T18:15:35.613Z", + "created": "2011-07-20T06:42:43.303Z", + "0.0.4": "2011-12-08T18:15:35.613Z", + "0.0.5": "2011-12-08T18:15:35.613Z", + "0.0.6": "2011-12-08T18:15:35.613Z", + "0.0.7": "2011-12-08T18:15:35.613Z", + "0.0.8": "2011-12-08T18:15:35.613Z" + }, + "author": { + "name": "Christopher Jeffrey" + }, + "repository": { + "type": "git", + "url": "git://github.com/chjj/node-tiny.git" + }, + "versions": { + "0.0.4": "http://registry.npmjs.org/tiny/0.0.4", + "0.0.5": "http://registry.npmjs.org/tiny/0.0.5", + "0.0.6": "http://registry.npmjs.org/tiny/0.0.6", + "0.0.7": "http://registry.npmjs.org/tiny/0.0.7", + "0.0.8": "http://registry.npmjs.org/tiny/0.0.8" + }, + "dist": { + "0.0.4": { + "shasum": "58ee0feecf751634b512994c7a931eaf9664ce5e", + "tarball": "http://registry.npmjs.org/tiny/-/tiny-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "b1af0c0fd8e431067e041c93a68a7c82bc67ea0b", + "tarball": "http://registry.npmjs.org/tiny/-/tiny-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "64c72ffb92e4d135a223e9159975ab9b31bcec4d", + "tarball": "http://registry.npmjs.org/tiny/-/tiny-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "f3a43b2f3e277fdb0a7f37a97a8be67efd88cbbd", + "tarball": "http://registry.npmjs.org/tiny/-/tiny-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "5944bfbee8e7b048e89392614394ca61a3affd1c", + "tarball": "http://registry.npmjs.org/tiny/-/tiny-0.0.8.tgz" + } + }, + "keywords": [ + "database", + "nosql", + "in-process" + ], + "url": "http://registry.npmjs.org/tiny/" + }, + "tk": { + "name": "tk", + "description": "ECMA5 Core Object extensions", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "## NodeJS / Javascript Toolkit\n\nThis is a set of extensions for native objects. Almost all native objects will probably have usefull\nextensions such as formatting a number or comparing dates or even padding a string.\n\nBefore suggesting any extension, check if native objects don't have them already. For example,\n`Array.map` and `Array.filter` are already in the core.\n\nHere is a list (possibly not up-to-date) of the extensions:\n\n### Array\n\n- .first([ n ])\n- .last([ n ])\n- .without(v1, .., vN)\n- .compact()\n- .unique()\n- .sum()\n- .product()\n- .grep(/re/)\n- .min()\n- .max()\n\n### Date\n\n- .addHour(n)\n- .addDay(n)\n- .addWeek(n)\n- .addMonth(n)\n- .addYear(n)\n- .before(date)\n- .after(date)\n- .between(start, end)\n- .diff(date)\n\n### Function\n\n- .defer([ms])\n- .curry(arg1, .., argN)\n\n### Math\n\n- .random([ start [, end ]])\n\n### Number\n\n- .pow(n)\n- .odd()\n- .even()\n- .abs()\n- .ceil()\n- .floor()\n- .round([n])\n- .format([ decimals [, decimal_separator [, thousands_separator ]]])\n- .duration([ format ])\n\n### String\n\n- .words([ separators ])\n- .count(needle, [ offset [, len ]])\n- .csv([ delimiter_char, [ enclosure_char, [ escape_char ]]])\n- .repeat([ n ])\n- .reverse()\n- .ord([ n ])\n- .trim()\n- .ltrim()\n- .rtrim()\n- .pad([ length, [ padding_string, [ type ]]])\n- .shuffle()\n- .chunk([ length, [ delimiter ]])\n", + "maintainers": [ + { + "name": "dresende", + "email": "dresende@thinkdigital.pt" + } + ], + "time": { + "modified": "2011-11-10T19:39:41.347Z", + "created": "2011-11-10T19:39:38.421Z", + "0.1.0": "2011-11-10T19:39:41.347Z" + }, + "author": { + "name": "Diogo Resende", + "email": "dresende@thinkdigital.pt" + }, + "repository": { + "type": "git", + "url": "git://github.com/dresende/node-toolkit.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/tk/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "854aeab608ddeccef92a549e1434e09a53594135", + "tarball": "http://registry.npmjs.org/tk/-/tk-0.1.0.tgz" + } + }, + "keywords": [ + "toolkit", + "extend" + ], + "url": "http://registry.npmjs.org/tk/" + }, + "tld": { + "name": "tld", + "description": "node.js module for working with Top-Level Domain data", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "donpark", + "email": "donpark@docuverse.com" + } + ], + "author": { + "name": "Don Park", + "email": "donpark@docuverse.com", + "url": "http://blog.docuverse.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tld/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "e27b680de8c49ced14388f9f5f98d72aeda5b5ce", + "tarball": "http://registry.npmjs.org/tld/-/tld-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/tld/" + }, + "tldextract": { + "name": "tldextract", + "description": "Extract domain, subdomain and tld from a url", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "masylum", + "email": "masylum@gmail.com" + } + ], + "time": { + "modified": "2011-12-10T17:59:24.515Z", + "created": "2011-09-17T21:52:41.895Z", + "0.0.1": "2011-09-17T21:52:43.315Z", + "0.0.2": "2011-09-18T00:40:02.877Z", + "0.0.3": "2011-09-18T07:45:03.403Z", + "0.0.4": "2011-12-10T17:59:24.515Z" + }, + "author": { + "name": "Pau Ramon", + "email": "masylum@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/masylum/tldextract.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tldextract/0.0.1", + "0.0.2": "http://registry.npmjs.org/tldextract/0.0.2", + "0.0.3": "http://registry.npmjs.org/tldextract/0.0.3", + "0.0.4": "http://registry.npmjs.org/tldextract/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "6ef0700fc01f331ed95ff9a2f9e959f9ff5eb14a", + "tarball": "http://registry.npmjs.org/tldextract/-/tldextract-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "9f3ed324fb83b524fba85ca8eb54901eabfb3783", + "tarball": "http://registry.npmjs.org/tldextract/-/tldextract-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "3377ccd3bf17b010cfb8ce1111d1e981184cc755", + "tarball": "http://registry.npmjs.org/tldextract/-/tldextract-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "4f97fa1ca316ee55e058b1263d1d84d89e9081bb", + "tarball": "http://registry.npmjs.org/tldextract/-/tldextract-0.0.4.tgz" + } + }, + "keywords": [ + "url", + "domain", + "subdomaon", + "tld", + "parse" + ], + "url": "http://registry.npmjs.org/tldextract/" + }, + "tmod": { + "name": "tmod", + "description": "Test Module", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "liuning", + "email": "122273014@qq.com" + } + ], + "time": { + "modified": "2011-11-05T09:02:57.191Z", + "created": "2011-11-05T09:02:50.501Z", + "0.0.1": "2011-11-05T09:02:57.191Z" + }, + "author": { + "name": "liuning", + "email": "122273014@qq.com" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tmod/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "214cf1fdaaa45d5aba3c3ecc3ec4bb4c5b49cd6f", + "tarball": "http://registry.npmjs.org/tmod/-/tmod-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/tmod/" + }, + "tmp": { + "name": "tmp", + "description": "Temporary file and directory creator", + "dist-tags": { + "latest": "0.0.12" + }, + "maintainers": [ + { + "name": "raszi", + "email": "npm@spam.raszi.hu" + } + ], + "time": { + "modified": "2011-10-21T12:09:32.466Z", + "created": "2011-09-02T12:30:13.534Z", + "0.0.1": "2011-09-02T12:30:15.269Z", + "0.0.2": "2011-09-02T12:37:00.785Z", + "0.0.3": "2011-09-02T12:45:19.487Z", + "0.0.4": "2011-09-02T13:22:17.215Z", + "0.0.5": "2011-09-02T13:24:10.723Z", + "0.0.6": "2011-09-03T15:51:32.316Z", + "0.0.7": "2011-09-03T18:46:19.017Z", + "0.0.8": "2011-09-05T12:51:42.406Z", + "0.0.9": "2011-09-05T13:05:56.815Z", + "0.0.10": "2011-09-05T13:32:30.752Z", + "0.0.11": "2011-09-07T11:36:25.971Z", + "0.0.12": "2011-10-21T12:09:32.466Z" + }, + "author": { + "name": "KARASZI István", + "email": "github@spam.raszi.hu", + "url": "http://raszi.hu/" + }, + "repository": { + "type": "git", + "url": "git://github.com/raszi/node-tmp.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tmp/0.0.1", + "0.0.2": "http://registry.npmjs.org/tmp/0.0.2", + "0.0.3": "http://registry.npmjs.org/tmp/0.0.3", + "0.0.4": "http://registry.npmjs.org/tmp/0.0.4", + "0.0.5": "http://registry.npmjs.org/tmp/0.0.5", + "0.0.6": "http://registry.npmjs.org/tmp/0.0.6", + "0.0.7": "http://registry.npmjs.org/tmp/0.0.7", + "0.0.8": "http://registry.npmjs.org/tmp/0.0.8", + "0.0.9": "http://registry.npmjs.org/tmp/0.0.9", + "0.0.10": "http://registry.npmjs.org/tmp/0.0.10", + "0.0.11": "http://registry.npmjs.org/tmp/0.0.11", + "0.0.12": "http://registry.npmjs.org/tmp/0.0.12" + }, + "dist": { + "0.0.1": { + "shasum": "2b488c532ed9738a95ff96ccfe7e6234ac484ba9", + "tarball": "http://registry.npmjs.org/tmp/-/tmp-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f32d3bb73f3a405fb3f85ead63838189e516dad9", + "tarball": "http://registry.npmjs.org/tmp/-/tmp-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "72035c83ba264668aa3393364f79ae1201b5ca6f", + "tarball": "http://registry.npmjs.org/tmp/-/tmp-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "744300c5b4bd7a0a6e8b451355b792961bd168e0", + "tarball": "http://registry.npmjs.org/tmp/-/tmp-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "a80e8fc3288a83fd09834e77cc77a1f0ee9956f6", + "tarball": "http://registry.npmjs.org/tmp/-/tmp-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "6cf38e542640111bf335f496502b532250cba0ef", + "tarball": "http://registry.npmjs.org/tmp/-/tmp-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "f5cfabafccf23a8084e83362d316ba7252fb871a", + "tarball": "http://registry.npmjs.org/tmp/-/tmp-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "68352569f2a3a94f8625146111b911e9c10ce677", + "tarball": "http://registry.npmjs.org/tmp/-/tmp-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "da2b03ca4de44bc84a50bdc7232b76aa8e995e95", + "tarball": "http://registry.npmjs.org/tmp/-/tmp-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "7452abddd98bf0ef0c06926c7bd688005bb48c60", + "tarball": "http://registry.npmjs.org/tmp/-/tmp-0.0.10.tgz" + }, + "0.0.11": { + "shasum": "1feb344d42ffc4f91d961b0a89bac6ba7c94a3e1", + "tarball": "http://registry.npmjs.org/tmp/-/tmp-0.0.11.tgz" + }, + "0.0.12": { + "shasum": "14ac64e3eceadfbcc9dc625507c98811b7a5a402", + "tarball": "http://registry.npmjs.org/tmp/-/tmp-0.0.12.tgz" + } + }, + "keywords": [ + "temporary", + "tmp", + "temp", + "tempdir", + "tempfile", + "tmpdir", + "tmpfile" + ], + "url": "http://registry.npmjs.org/tmp/" + }, + "tmpl": { + "name": "tmpl", + "description": "JavaScript micro templates.", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "naitik", + "email": "n@daaku.org" + } + ], + "time": { + "modified": "2011-08-17T21:09:46.235Z", + "created": "2011-08-08T02:26:47.249Z", + "1.0.0": "2011-08-08T02:26:49.335Z", + "1.0.1": "2011-08-17T21:09:46.235Z" + }, + "author": { + "name": "Naitik Shah", + "email": "n@daaku.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/nshah/nodejs-tmpl.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/tmpl/1.0.0", + "1.0.1": "http://registry.npmjs.org/tmpl/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "d01aa466767a639c2444aacee03db3a05ba201f0", + "tarball": "http://registry.npmjs.org/tmpl/-/tmpl-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "a29111af505af8dd7292ae01b063878de39b7cca", + "tarball": "http://registry.npmjs.org/tmpl/-/tmpl-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/tmpl/" + }, + "tmpl-precompile": { + "name": "tmpl-precompile", + "description": "precompiles templates into javascript functions", + "dist-tags": { + "latest": "0.1.45" + }, + "maintainers": [ + { + "name": "conancat", + "email": "conancat@gmail.com" + } + ], + "time": { + "modified": "2011-07-22T05:39:49.381Z", + "created": "2011-07-16T08:04:57.199Z", + "0.1.3": "2011-07-16T08:04:58.702Z", + "0.1.4": "2011-07-17T18:49:22.057Z", + "0.1.45": "2011-07-22T05:04:02.307Z" + }, + "author": { + "name": "Tauren Mills", + "email": "tauren@groovee.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/tauren/tmpl-precompile.git" + }, + "versions": { + "0.1.3": "http://registry.npmjs.org/tmpl-precompile/0.1.3", + "0.1.4": "http://registry.npmjs.org/tmpl-precompile/0.1.4", + "0.1.45": "http://registry.npmjs.org/tmpl-precompile/0.1.45" + }, + "dist": { + "0.1.3": { + "shasum": "d8afeb8d40907d52d9506f8fdabaf9c54c28b338", + "tarball": "http://registry.npmjs.org/tmpl-precompile/-/tmpl-precompile-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "af7b6a54baba2256cd9c95d4695226f9ffd9789c", + "tarball": "http://registry.npmjs.org/tmpl-precompile/-/tmpl-precompile-0.1.4.tgz" + }, + "0.1.45": { + "shasum": "e050e2ac35c6d5379f65dbd5cd329a065f2b0976", + "tarball": "http://registry.npmjs.org/tmpl-precompile/-/tmpl-precompile-0.1.45.tgz" + } + }, + "keywords": [ + "jade", + "uglify", + "compile", + "templates" + ], + "url": "http://registry.npmjs.org/tmpl-precompile/" + }, + "tmppckg": { + "name": "tmppckg", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "aaronblohowiak", + "email": "aaron.blohowiak@gmail.com" + } + ], + "time": { + "modified": "2011-05-16T00:23:28.009Z", + "created": "2011-05-16T00:22:28.036Z", + "0.0.0": "2011-05-16T00:22:28.689Z", + "0.0.1": "2011-05-16T00:23:03.627Z", + "0.1.0": "2011-05-16T00:23:12.775Z", + "0.3.0": "2011-05-16T00:23:19.306Z" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/tmppckg/0.0.0", + "0.0.1": "http://registry.npmjs.org/tmppckg/0.0.1", + "0.1.0": "http://registry.npmjs.org/tmppckg/0.1.0" + }, + "dist": { + "0.0.0": { + "shasum": "5b3d5472ab137d11d54c4e61a0c101f9beb96566", + "tarball": "http://registry.npmjs.org/tmppckg/-/tmppckg-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "ea4b35936633c3d6f0598f370b5e076f6e1bdbc2", + "tarball": "http://registry.npmjs.org/tmppckg/-/tmppckg-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "3bbe9bbdfddd05cb760bde422c949ca9bae7484b", + "tarball": "http://registry.npmjs.org/tmppckg/-/tmppckg-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/tmppckg/" + }, + "tnetstrings": { + "name": "tnetstrings", + "description": "A fully-featured tnetstrings library, isomorphic to JSON", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "jayferd", + "email": "jjmadkisson@gmail.com" + } + ], + "time": { + "modified": "2011-11-29T21:37:53.637Z", + "created": "2011-09-01T23:45:26.412Z", + "0.0.1": "2011-09-01T23:45:28.063Z", + "0.0.2": "2011-11-29T19:58:55.055Z", + "0.1.0": "2011-11-29T21:25:30.205Z", + "0.1.1": "2011-11-29T21:37:53.637Z" + }, + "author": { + "name": "Jay Adkisson", + "email": "jjmadkisson at gmail dot com" + }, + "repository": { + "type": "git", + "url": "git://github.com/jayferd/tnetstrings-js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tnetstrings/0.0.1", + "0.0.2": "http://registry.npmjs.org/tnetstrings/0.0.2", + "0.1.0": "http://registry.npmjs.org/tnetstrings/0.1.0", + "0.1.1": "http://registry.npmjs.org/tnetstrings/0.1.1" + }, + "dist": { + "0.0.1": { + "shasum": "21de8b91a88809e0d942fac7de98cec2d64cb4b5", + "tarball": "http://registry.npmjs.org/tnetstrings/-/tnetstrings-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "a762f1b47c3db1ae58d6c080d9df9e2335ab39fc", + "tarball": "http://registry.npmjs.org/tnetstrings/-/tnetstrings-0.0.2.tgz" + }, + "0.1.0": { + "shasum": "b8c35cd4818795749dc05cf81c84723d09d55207", + "tarball": "http://registry.npmjs.org/tnetstrings/-/tnetstrings-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "ae768c475b9d29d5de0eb92e0c7773fa0a2c13e5", + "tarball": "http://registry.npmjs.org/tnetstrings/-/tnetstrings-0.1.1.tgz" + } + }, + "keywords": [ + "tnetstrings", + "serialization" + ], + "url": "http://registry.npmjs.org/tnetstrings/" + }, + "tob": { + "name": "tob", + "description": "Template Observer. Enables self reloading templates on modification. Can work with many template engines.", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "shimondoodkin", + "email": "helpmepro1@gmail.com" + } + ], + "time": { + "modified": "2011-05-22T22:34:27.625Z", + "created": "2011-05-20T18:41:59.052Z", + "0.1.0": "2011-05-20T18:42:00.263Z", + "0.1.1": "2011-05-20T22:24:19.524Z", + "0.1.2": "2011-05-22T22:34:27.625Z" + }, + "author": { + "name": "Shimon Doodkin", + "email": "helpmepro1@gmail.com", + "url": "http://doodkin.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/shimondoodkin/tob.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/tob/0.1.0", + "0.1.1": "http://registry.npmjs.org/tob/0.1.1", + "0.1.2": "http://registry.npmjs.org/tob/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "626ea07b68e52cd7b624f9e7211f8a644390e52b", + "tarball": "http://registry.npmjs.org/tob/-/tob-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "71e4aba015d66ecbe578ac9b93911ed021b4cb2f", + "tarball": "http://registry.npmjs.org/tob/-/tob-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "96039b11bb87cbfc37aadb43eda7aa93141db7c8", + "tarball": "http://registry.npmjs.org/tob/-/tob-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/tob/" + }, + "tobi": { + "name": "tobi", + "description": "expressive server-side functional testing with jQuery and jsdom", + "dist-tags": { + "latest": "0.3.2" + }, + "maintainers": [ + { + "name": "rauchg", + "email": "rauchg@gmail.com" + }, + { + "name": "tj", + "email": "tj@vision-media.ca" + }, + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "time": { + "modified": "2011-11-15T16:14:41.070Z", + "created": "2010-12-28T02:25:11.773Z", + "0.0.1": "2010-12-28T02:25:11.773Z", + "0.0.2": "2010-12-28T02:25:11.773Z", + "0.0.3": "2010-12-28T22:13:42.199Z", + "0.0.4": "2010-12-28T23:52:14.115Z", + "0.0.5": "2010-12-29T01:39:13.081Z", + "0.0.6": "2010-12-29T02:40:26.908Z", + "0.0.7": "2010-12-29T19:02:46.677Z", + "0.0.8": "2010-12-29T22:55:47.308Z", + "0.1.0": "2011-01-07T17:19:15.869Z", + "0.1.1": "2011-01-13T18:30:04.747Z", + "0.2.0": "2011-04-13T19:03:22.432Z", + "0.2.1": "2011-05-16T19:54:09.440Z", + "0.2.2": "2011-06-28T18:35:45.238Z", + "0.3.0": "2011-07-01T17:18:32.514Z", + "0.3.1": "2011-07-19T19:35:10.905Z", + "0.3.2": "2011-11-15T16:14:41.070Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/LearnBoost/tobi.git" + }, + "versions": { + "0.0.8": "http://registry.npmjs.org/tobi/0.0.8", + "0.1.0": "http://registry.npmjs.org/tobi/0.1.0", + "0.1.1": "http://registry.npmjs.org/tobi/0.1.1", + "0.2.0": "http://registry.npmjs.org/tobi/0.2.0", + "0.2.1": "http://registry.npmjs.org/tobi/0.2.1", + "0.2.2": "http://registry.npmjs.org/tobi/0.2.2", + "0.3.0": "http://registry.npmjs.org/tobi/0.3.0", + "0.3.1": "http://registry.npmjs.org/tobi/0.3.1", + "0.3.2": "http://registry.npmjs.org/tobi/0.3.2" + }, + "dist": { + "0.0.8": { + "shasum": "74944f137386d60eb90a01dde55b812a44a0a04d", + "tarball": "http://registry.npmjs.org/tobi/-/tobi-0.0.8.tgz" + }, + "0.1.0": { + "shasum": "56a09b1799c261aaa4fbf0ce6a1c66a5036608af", + "tarball": "http://registry.npmjs.org/tobi/-/tobi-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "0cc1d4c696bbe413cdc05b828316b27bb00c97db", + "tarball": "http://registry.npmjs.org/tobi/-/tobi-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "aae81c4a1970e24890f66557322a491457071882", + "tarball": "http://registry.npmjs.org/tobi/-/tobi-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "e3c07734f5d4cfd868a6858d9aa063e57ef44f12", + "tarball": "http://registry.npmjs.org/tobi/-/tobi-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "a8d612d3dfc5380e166159a2415292c8a2e4eba0", + "tarball": "http://registry.npmjs.org/tobi/-/tobi-0.2.2.tgz" + }, + "0.3.0": { + "shasum": "3f04e184d9697f85bf4ac44a799db9809567af57", + "tarball": "http://registry.npmjs.org/tobi/-/tobi-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "bfd04e4821659cdccd0af0c528d71d4d968083f0", + "tarball": "http://registry.npmjs.org/tobi/-/tobi-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "b3e0cbaa10494c0b65d543dbde64201ac4974df5", + "tarball": "http://registry.npmjs.org/tobi/-/tobi-0.3.2.tgz" + } + }, + "keywords": [ + "test", + "testing", + "browser", + "jquery", + "css" + ], + "url": "http://registry.npmjs.org/tobi/" + }, + "toDataURL": { + "name": "toDataURL", + "description": "Download something in the browser as a file", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "beatgammit", + "email": "t.jameson.little@gmail.com" + } + ], + "time": { + "modified": "2011-11-21T23:27:13.669Z", + "created": "2011-09-07T00:57:59.112Z", + "0.0.1": "2011-09-07T00:58:00.043Z", + "0.1.0": "2011-11-21T20:15:22.618Z", + "0.1.1": "2011-11-21T23:27:13.669Z" + }, + "author": { + "name": "T. Jameson Little", + "email": "t.jameson.little@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/beatgammit/toDataURL.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/toDataURL/0.0.1", + "0.1.0": "http://registry.npmjs.org/toDataURL/0.1.0", + "0.1.1": "http://registry.npmjs.org/toDataURL/0.1.1" + }, + "dist": { + "0.0.1": { + "shasum": "3724defcb972998d2c3c061b0e5ee5d2ea2bfd75", + "tarball": "http://registry.npmjs.org/toDataURL/-/toDataURL-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "77e5bb39fc8d0521101fdde43fde68f1789ab021", + "tarball": "http://registry.npmjs.org/toDataURL/-/toDataURL-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "1620cdc776593fdbdd9b2c426f1611c7a84d6392", + "tarball": "http://registry.npmjs.org/toDataURL/-/toDataURL-0.1.1.tgz" + } + }, + "keywords": [ + "dataURL", + "download" + ], + "url": "http://registry.npmjs.org/toDataURL/" + }, + "toddick": { + "name": "toddick", + "description": "An Erlang like framework for asynchronous programming in node.js.", + "dist-tags": { + "latest": "0.4.1" + }, + "maintainers": [ + { + "name": "maimedleech", + "email": "mike@maimedleech.com" + } + ], + "time": { + "modified": "2011-06-01T00:59:39.031Z", + "created": "2011-05-10T06:04:33.615Z", + "0.1.0": "2011-05-10T06:04:34.245Z", + "0.2.0": "2011-05-16T06:37:35.409Z", + "0.3.0": "2011-05-24T07:19:45.747Z", + "0.3.1": "2011-05-25T01:05:58.001Z", + "0.4.0": "2011-05-30T17:53:15.870Z", + "0.4.1": "2011-06-01T00:59:39.031Z" + }, + "author": { + "name": "Mike Deem", + "email": "mike@maimedleech.com", + "url": "http://maimedleech.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/maimedleech/toddick.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/toddick/0.1.0", + "0.2.0": "http://registry.npmjs.org/toddick/0.2.0", + "0.3.0": "http://registry.npmjs.org/toddick/0.3.0", + "0.3.1": "http://registry.npmjs.org/toddick/0.3.1", + "0.4.0": "http://registry.npmjs.org/toddick/0.4.0", + "0.4.1": "http://registry.npmjs.org/toddick/0.4.1" + }, + "dist": { + "0.1.0": { + "shasum": "18232e952eb31e8387ea17707cfb8bcf1dbf7483", + "tarball": "http://registry.npmjs.org/toddick/-/toddick-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "57393cf719e4a37a89ea6c8dfc40087015424690", + "tarball": "http://registry.npmjs.org/toddick/-/toddick-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "c72ce79a202da8995fac3748979e8100795435bd", + "tarball": "http://registry.npmjs.org/toddick/-/toddick-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "2689e6203017453879d351af4697ce4b4872a2eb", + "tarball": "http://registry.npmjs.org/toddick/-/toddick-0.3.1.tgz" + }, + "0.4.0": { + "shasum": "4d6740596d71c26c9a76ad56e66bce1a49fd2f8b", + "tarball": "http://registry.npmjs.org/toddick/-/toddick-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "cad54de62b0b15b8b94e385838780f49f4d48004", + "tarball": "http://registry.npmjs.org/toddick/-/toddick-0.4.1.tgz" + } + }, + "keywords": [ + "asynchronous", + "concurrent", + "actor", + "erlang" + ], + "url": "http://registry.npmjs.org/toddick/" + }, + "toffee-script": { + "name": "toffee-script", + "description": "CoffeeScript with asynchronous syntax and additional features", + "dist-tags": { + "latest": "1.1.4-1" + }, + "maintainers": [ + { + "name": "jiangmiao", + "email": "jiangfriend@gmail.com" + } + ], + "time": { + "modified": "2011-11-11T15:03:07.494Z", + "created": "2011-10-18T09:35:38.326Z", + "1.1.3-pre": "2011-10-18T09:35:39.727Z", + "1.1.3": "2011-10-21T05:05:01.590Z", + "1.1.3-1": "2011-10-23T11:49:11.264Z", + "1.1.3-3": "2011-10-25T14:07:04.330Z", + "1.1.3-4": "2011-11-10T04:15:37.051Z", + "1.1.4-1": "2011-11-11T15:03:07.494Z" + }, + "author": { + "name": "Jiang Miao" + }, + "repository": { + "type": "git", + "url": "git://github.com/jiangmiao/toffee-script.git" + }, + "versions": { + "1.1.3-pre": "http://registry.npmjs.org/toffee-script/1.1.3-pre", + "1.1.3": "http://registry.npmjs.org/toffee-script/1.1.3", + "1.1.3-1": "http://registry.npmjs.org/toffee-script/1.1.3-1", + "1.1.3-3": "http://registry.npmjs.org/toffee-script/1.1.3-3", + "1.1.3-4": "http://registry.npmjs.org/toffee-script/1.1.3-4", + "1.1.4-1": "http://registry.npmjs.org/toffee-script/1.1.4-1" + }, + "dist": { + "1.1.3-pre": { + "shasum": "d4aec11517f0586332c686580a351372a60987b6", + "tarball": "http://registry.npmjs.org/toffee-script/-/toffee-script-1.1.3-pre.tgz" + }, + "1.1.3": { + "shasum": "9383e35f91dcce754775a3d0acf3ea83909c8d02", + "tarball": "http://registry.npmjs.org/toffee-script/-/toffee-script-1.1.3.tgz" + }, + "1.1.3-1": { + "shasum": "4eda20a6645cc4c5d160c78e9a797dfd828db117", + "tarball": "http://registry.npmjs.org/toffee-script/-/toffee-script-1.1.3-1.tgz" + }, + "1.1.3-3": { + "shasum": "733298da688968e41dd5819a0d76184ee5dcb377", + "tarball": "http://registry.npmjs.org/toffee-script/-/toffee-script-1.1.3-3.tgz" + }, + "1.1.3-4": { + "shasum": "17535cb1860d7fee18abefff6181e23a59febf9f", + "tarball": "http://registry.npmjs.com/toffee-script/-/toffee-script-1.1.3-4.tgz" + }, + "1.1.4-1": { + "shasum": "b509084b44d167b10887823edc7162711e37f324", + "tarball": "http://registry.npmjs.com/toffee-script/-/toffee-script-1.1.4-1.tgz" + } + }, + "keywords": [ + "javascript", + "language", + "coffeescript", + "compiler", + "asynchronous", + "toffeescript" + ], + "url": "http://registry.npmjs.org/toffee-script/" + }, + "Toji": { + "name": "Toji", + "dist-tags": { + "latest": "0.0.36" + }, + "maintainers": [ + { + "name": "weaver", + "email": "ben@orangesoda.net" + } + ], + "time": { + "modified": "2011-04-25T20:56:09.847Z", + "created": "2011-02-23T19:11:21.644Z", + "0.0.1": "2011-02-23T19:11:21.786Z", + "0.0.2": "2011-02-24T15:56:19.583Z", + "0.0.3": "2011-02-24T23:30:42.447Z", + "0.0.4": "2011-03-04T17:48:28.908Z", + "0.0.5": "2011-03-04T23:03:45.184Z", + "0.0.6": "2011-03-08T22:53:30.303Z", + "0.0.7": "2011-03-09T21:22:11.207Z", + "0.0.8": "2011-03-11T22:22:40.583Z", + "0.0.9": "2011-03-15T21:38:36.485Z", + "0.0.10": "2011-03-16T14:29:36.106Z", + "0.0.11": "2011-03-17T19:57:54.746Z", + "0.0.12": "2011-03-17T23:41:11.205Z", + "0.0.13": "2011-03-17T23:45:41.751Z", + "0.0.14": "2011-03-18T00:01:05.372Z", + "0.0.15": "2011-03-21T15:43:48.406Z", + "0.0.16": "2011-03-21T20:05:05.212Z", + "0.0.18": "2011-03-23T19:43:57.310Z", + "0.0.19": "2011-03-23T21:25:59.843Z", + "0.0.20": "2011-03-24T15:56:08.949Z", + "0.0.21": "2011-03-24T16:46:48.777Z", + "0.0.22": "2011-03-24T22:31:27.778Z", + "0.0.23": "2011-03-25T14:04:56.037Z", + "0.0.24": "2011-03-25T22:28:31.228Z", + "0.0.25": "2011-03-30T21:01:20.986Z", + "0.0.26": "2011-03-31T20:57:59.178Z", + "0.0.27": "2011-04-01T22:08:57.749Z", + "0.0.28": "2011-04-05T19:23:16.406Z", + "0.0.29": "2011-04-06T04:54:32.127Z", + "0.0.30": "2011-04-06T16:40:30.786Z", + "0.0.31": "2011-04-07T01:44:45.988Z", + "0.0.32": "2011-04-07T03:49:19.399Z", + "0.0.33": "2011-04-07T18:34:08.733Z", + "0.0.34": "2011-04-07T19:26:52.410Z", + "0.0.35": "2011-04-25T17:00:29.762Z", + "0.0.36": "2011-04-25T20:04:46.879Z" + }, + "author": { + "name": "Ben Weaver", + "email": "ben@orangesoda.net" + }, + "description": "Kyoto Cabinet bindings for Node.js with an Avro mapper.", + "versions": { + "0.0.1": "http://registry.npmjs.org/Toji/0.0.1", + "0.0.2": "http://registry.npmjs.org/Toji/0.0.2", + "0.0.3": "http://registry.npmjs.org/Toji/0.0.3", + "0.0.4": "http://registry.npmjs.org/Toji/0.0.4", + "0.0.5": "http://registry.npmjs.org/Toji/0.0.5", + "0.0.6": "http://registry.npmjs.org/Toji/0.0.6", + "0.0.7": "http://registry.npmjs.org/Toji/0.0.7", + "0.0.8": "http://registry.npmjs.org/Toji/0.0.8", + "0.0.9": "http://registry.npmjs.org/Toji/0.0.9", + "0.0.10": "http://registry.npmjs.org/Toji/0.0.10", + "0.0.11": "http://registry.npmjs.org/Toji/0.0.11", + "0.0.12": "http://registry.npmjs.org/Toji/0.0.12", + "0.0.13": "http://registry.npmjs.org/Toji/0.0.13", + "0.0.14": "http://registry.npmjs.org/Toji/0.0.14", + "0.0.15": "http://registry.npmjs.org/Toji/0.0.15", + "0.0.16": "http://registry.npmjs.org/Toji/0.0.16", + "0.0.18": "http://registry.npmjs.org/Toji/0.0.18", + "0.0.19": "http://registry.npmjs.org/Toji/0.0.19", + "0.0.20": "http://registry.npmjs.org/Toji/0.0.20", + "0.0.21": "http://registry.npmjs.org/Toji/0.0.21", + "0.0.22": "http://registry.npmjs.org/Toji/0.0.22", + "0.0.23": "http://registry.npmjs.org/Toji/0.0.23", + "0.0.24": "http://registry.npmjs.org/Toji/0.0.24", + "0.0.25": "http://registry.npmjs.org/Toji/0.0.25", + "0.0.26": "http://registry.npmjs.org/Toji/0.0.26", + "0.0.27": "http://registry.npmjs.org/Toji/0.0.27", + "0.0.28": "http://registry.npmjs.org/Toji/0.0.28", + "0.0.29": "http://registry.npmjs.org/Toji/0.0.29", + "0.0.30": "http://registry.npmjs.org/Toji/0.0.30", + "0.0.31": "http://registry.npmjs.org/Toji/0.0.31", + "0.0.32": "http://registry.npmjs.org/Toji/0.0.32", + "0.0.33": "http://registry.npmjs.org/Toji/0.0.33", + "0.0.34": "http://registry.npmjs.org/Toji/0.0.34", + "0.0.35": "http://registry.npmjs.org/Toji/0.0.35", + "0.0.36": "http://registry.npmjs.org/Toji/0.0.36" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/Toji/-/Toji-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/Toji/-/Toji-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/Toji/-/Toji-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://registry.npmjs.org/Toji/-/Toji-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://registry.npmjs.org/Toji/-/Toji-0.0.5.tgz" + }, + "0.0.6": { + "tarball": "http://registry.npmjs.org/Toji/-/Toji-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "b0bced5852979e7101a7b3a91fa24f3912808c94", + "tarball": "http://registry.npmjs.org/Toji/-/Toji-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "8de278004996899f214d11b6bfb1eeb6b949a8b8", + "tarball": "http://registry.npmjs.org/Toji/-/Toji-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "7ab8b938cb438bc6002a497cb54fee7b12f0e685", + "tarball": "http://registry.npmjs.org/Toji/-/Toji-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "9d0e933649c37cdfa10f7c96d5ac176c2da3bc2d", + "tarball": "http://registry.npmjs.org/Toji/-/Toji-0.0.10.tgz" + }, + "0.0.11": { + "shasum": "e0271daf3208dd40815b63df41751466bce78871", + "tarball": "http://registry.npmjs.org/Toji/-/Toji-0.0.11.tgz" + }, + "0.0.12": { + "shasum": "ca0a66281938395f115ed37cf2ffb9be407fc0ad", + "tarball": "http://registry.npmjs.org/Toji/-/Toji-0.0.12.tgz" + }, + "0.0.13": { + "shasum": "91ab8dd0a35c8089608fb975145c5ae968bb1063", + "tarball": "http://registry.npmjs.org/Toji/-/Toji-0.0.13.tgz" + }, + "0.0.14": { + "shasum": "2b472607e720fd98f7340bb89cdbe01f5555ed41", + "tarball": "http://registry.npmjs.org/Toji/-/Toji-0.0.14.tgz" + }, + "0.0.15": { + "shasum": "6b6a2b90aaa2ab5e4ac4ca3ee6ca7a5f1a890064", + "tarball": "http://registry.npmjs.org/Toji/-/Toji-0.0.15.tgz" + }, + "0.0.16": { + "shasum": "b44a222980f161c3d2099da05fdf7c73be32451d", + "tarball": "http://registry.npmjs.org/Toji/-/Toji-0.0.16.tgz" + }, + "0.0.18": { + "shasum": "10b52328ef2f69b1e6b811aab6af6340d314be3e", + "tarball": "http://registry.npmjs.org/Toji/-/Toji-0.0.18.tgz" + }, + "0.0.19": { + "shasum": "6f5a435fdfbff21ab14acdb5ec4a841adfe375a1", + "tarball": "http://registry.npmjs.org/Toji/-/Toji-0.0.19.tgz" + }, + "0.0.20": { + "shasum": "ce77dd20d6bb5354decdc613010b90c8121465f0", + "tarball": "http://registry.npmjs.org/Toji/-/Toji-0.0.20.tgz" + }, + "0.0.21": { + "shasum": "5daa55120672c7e2152a07ddd0be00375b35f6b2", + "tarball": "http://registry.npmjs.org/Toji/-/Toji-0.0.21.tgz" + }, + "0.0.22": { + "shasum": "ff5564ae99535c1a21d7e55070ffa1f3e15f8ffb", + "tarball": "http://registry.npmjs.org/Toji/-/Toji-0.0.22.tgz" + }, + "0.0.23": { + "shasum": "bc83d1386c386cb3e09e587248d85fcb30d9162d", + "tarball": "http://registry.npmjs.org/Toji/-/Toji-0.0.23.tgz" + }, + "0.0.24": { + "shasum": "a2e71b35999799c0c790f94dcd7a68b170fc247b", + "tarball": "http://registry.npmjs.org/Toji/-/Toji-0.0.24.tgz" + }, + "0.0.25": { + "shasum": "31fe387e125c67afd0b73565e0db25150dae027e", + "tarball": "http://registry.npmjs.org/Toji/-/Toji-0.0.25.tgz" + }, + "0.0.26": { + "shasum": "183713652fcc0c36ead6e81f925d0c055aff323c", + "bin": { + "0.4-linux-2.6.37-ARCH": { + "shasum": "690fec3fd1d84384ec83c82d56f6effaefdc8542", + "tarball": "http://registry.npmjs.org/Toji/-/Toji-0.0.26-0.4-linux-2.6.37-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/Toji/-/Toji-0.0.26.tgz" + }, + "0.0.27": { + "shasum": "146a1490a3c62ee63b6c321953633fa8bec8c8b4", + "bin": { + "0.4-linux-2.6.37-ARCH": { + "shasum": "3f132939ed2521aa50eee0f9b408df054ece0008", + "tarball": "http://registry.npmjs.org/Toji/-/Toji-0.0.27-0.4-linux-2.6.37-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/Toji/-/Toji-0.0.27.tgz" + }, + "0.0.28": { + "shasum": "9ddbf5e4be3b67fd2b1e1d9316b852f960589858", + "bin": { + "0.4-linux-2.6.37-ARCH": { + "shasum": "ecd075dacbafa9067d4f27c4264677960703e128", + "tarball": "http://registry.npmjs.org/Toji/-/Toji-0.0.28-0.4-linux-2.6.37-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/Toji/-/Toji-0.0.28.tgz" + }, + "0.0.29": { + "shasum": "41b21d251b83f47c5728de08d8724de7da6b2c8b", + "bin": { + "0.4-linux-2.6.37-ARCH": { + "shasum": "71571847c578aea5052a0418525c91e04d661dd9", + "tarball": "http://registry.npmjs.org/Toji/-/Toji-0.0.29-0.4-linux-2.6.37-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/Toji/-/Toji-0.0.29.tgz" + }, + "0.0.30": { + "shasum": "ab097d5d1bb5c5d235b38dee3bad677d14fece37", + "bin": { + "0.4-linux-2.6.37-ARCH": { + "shasum": "d4644e34cbac9882741209f94b7f965ab3d7d58c", + "tarball": "http://registry.npmjs.org/Toji/-/Toji-0.0.30-0.4-linux-2.6.37-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/Toji/-/Toji-0.0.30.tgz" + }, + "0.0.31": { + "shasum": "5f5071f427a49c4ec5d3b93568e954eb777b4250", + "bin": { + "0.4-linux-2.6.37-ARCH": { + "shasum": "f3426fafa2144ffd116875c932e6296295213d81", + "tarball": "http://registry.npmjs.org/Toji/-/Toji-0.0.31-0.4-linux-2.6.37-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/Toji/-/Toji-0.0.31.tgz" + }, + "0.0.32": { + "shasum": "085506d0db0a42570a9633b6c66fd28e301c28bb", + "bin": { + "0.4-linux-2.6.37-ARCH": { + "shasum": "1fb43d3c0a4b7692ff53c9c20f23299f7d755ea1", + "tarball": "http://registry.npmjs.org/Toji/-/Toji-0.0.32-0.4-linux-2.6.37-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/Toji/-/Toji-0.0.32.tgz" + }, + "0.0.33": { + "shasum": "cc7624b2e8b0bc8b3dc9e97811c91238c55db987", + "bin": { + "0.4-linux-2.6.37-ARCH": { + "shasum": "c3e1c0568253b07a983ab3f24f9b810ca329a3e5", + "tarball": "http://registry.npmjs.org/Toji/-/Toji-0.0.33-0.4-linux-2.6.37-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/Toji/-/Toji-0.0.33.tgz" + }, + "0.0.34": { + "shasum": "85ec247d1785899d82de21980bc7cdb5d42f7c6a", + "bin": { + "0.4-linux-2.6.37-ARCH": { + "shasum": "d810378f67cbef2edf41aaf1dbfbe9813cfc1c8b", + "tarball": "http://registry.npmjs.org/Toji/-/Toji-0.0.34-0.4-linux-2.6.37-ARCH.tgz" + } + }, + "tarball": "http://registry.npmjs.org/Toji/-/Toji-0.0.34.tgz" + }, + "0.0.35": { + "shasum": "3354b5dfcc8b1f4757c75b6001c3fcff6c7feb46", + "tarball": "http://registry.npmjs.org/Toji/-/Toji-0.0.35.tgz", + "bin": { + "0.4-linux-2.6.38-ARCH": { + "shasum": "d1e98ddf429f9140d76668909a03756a2552b977", + "tarball": "http://registry.npmjs.org/Toji/-/Toji-0.0.35-0.4-linux-2.6.38-ARCH.tgz" + } + } + }, + "0.0.36": { + "shasum": "a25bf488d71d8c4a2e6e219ecb6d68382962f416", + "tarball": "http://registry.npmjs.org/Toji/-/Toji-0.0.36.tgz" + } + }, + "url": "http://registry.npmjs.org/Toji/" + }, + "tokenizer": { + "name": "tokenizer", + "description": "A wide purpose tokenizer for node.js which looks like a stream", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "floby", + "email": "florent.jaby@gmail.com" + } + ], + "time": { + "modified": "2011-04-15T20:37:29.311Z", + "created": "2011-04-10T20:45:58.548Z", + "0.0.1-2-g5805b9e": "2011-04-10T20:45:59.122Z", + "0.1.0": "2011-04-15T20:37:29.311Z" + }, + "author": { + "name": "Florent Jaby", + "email": "florent.jaby@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Floby/node-tokenizer.git" + }, + "versions": { + "0.0.1-2-g5805b9e": "http://registry.npmjs.org/tokenizer/0.0.1-2-g5805b9e", + "0.1.0": "http://registry.npmjs.org/tokenizer/0.1.0" + }, + "dist": { + "0.0.1-2-g5805b9e": { + "shasum": "e3175cf8cdac9f239f6ee2088258a25b9aeafccc", + "tarball": "http://registry.npmjs.org/tokenizer/-/tokenizer-0.0.1-2-g5805b9e.tgz" + }, + "0.1.0": { + "shasum": "40d71b9ae9729b8b32070466ac1d3920c7abad29", + "tarball": "http://registry.npmjs.org/tokenizer/-/tokenizer-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/tokenizer/" + }, + "tokyotosho": { + "name": "tokyotosho", + "description": "Search and retrieve details from Tokyo Toshokan (tokyotosho.net)", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "deoxxa", + "email": "deoxxa@fknsrs.biz" + } + ], + "time": { + "modified": "2011-07-13T13:38:57.629Z", + "created": "2011-07-10T05:11:14.855Z", + "0.0.1": "2011-07-10T05:11:16.996Z", + "0.0.2": "2011-07-13T13:38:57.629Z" + }, + "author": { + "name": "Conrad Pankoff", + "email": "deoxxa@fknsrs.biz", + "url": "http://www.fknsrs.biz/" + }, + "repository": { + "type": "git", + "url": "git://github.com/deoxxa/node-tokyotosho.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tokyotosho/0.0.1", + "0.0.2": "http://registry.npmjs.org/tokyotosho/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "2d80207ee54ab7a4cf2a688d899eb5651feb86e5", + "tarball": "http://registry.npmjs.org/tokyotosho/-/tokyotosho-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c39993f3571e925614bb48a3eeea7786ef15a61e", + "tarball": "http://registry.npmjs.org/tokyotosho/-/tokyotosho-0.0.2.tgz" + } + }, + "keywords": [ + "torrent", + "torrents", + "tokyotosho", + "tokyo toshokan", + "tokyo", + "toshokan", + "search" + ], + "url": "http://registry.npmjs.org/tokyotosho/" + }, + "tolang": { + "name": "tolang", + "description": "Translation using the Google API", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "cezary", + "email": "cezary@gmail.com" + } + ], + "time": { + "modified": "2011-05-18T16:13:21.310Z", + "created": "2011-05-04T20:21:30.811Z", + "0.0.1": "2011-05-04T20:21:31.103Z", + "0.0.2": "2011-05-04T20:57:33.957Z", + "0.0.3": "2011-05-18T16:13:21.310Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tolang/0.0.1", + "0.0.2": "http://registry.npmjs.org/tolang/0.0.2", + "0.0.3": "http://registry.npmjs.org/tolang/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "31427894df212778671c9d2542797519985d9c82", + "tarball": "http://registry.npmjs.org/tolang/-/tolang-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "5c06382504b45843626941ac19cbe4b2e553ce8a", + "tarball": "http://registry.npmjs.org/tolang/-/tolang-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "9944f83162ba7c6167e9d23dc5d56cb25bcf4756", + "tarball": "http://registry.npmjs.org/tolang/-/tolang-0.0.3.tgz" + } + }, + "keywords": [ + "translate", + "tolang", + "to_lang" + ], + "url": "http://registry.npmjs.org/tolang/" + }, + "tolmey": { + "name": "tolmey", + "description": "easy mapping tile downloading", + "dist-tags": { + "latest": "0.5.2" + }, + "maintainers": [ + { + "name": "jergason", + "email": "jergason@gmail.com" + } + ], + "time": { + "modified": "2011-12-13T23:25:13.544Z", + "created": "2011-10-28T06:29:42.670Z", + "0.0.1": "2011-10-28T06:33:10.363Z", + "0.1.1": "2011-11-04T18:14:57.639Z", + "0.2.0": "2011-11-16T22:17:35.856Z", + "0.2.1": "2011-11-20T03:20:20.115Z", + "0.3.0": "2011-11-21T22:05:14.636Z", + "0.4.0": "2011-11-28T23:40:55.904Z", + "0.5.0": "2011-12-13T00:11:10.111Z", + "0.5.1": "2011-12-13T00:15:32.711Z", + "0.5.2": "2011-12-13T23:25:13.544Z" + }, + "author": { + "name": "Jamison Dance", + "email": "jergason@gmail.com", + "url": "http://jamisondance.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/jergason/Tolmey.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tolmey/0.0.1", + "0.1.1": "http://registry.npmjs.org/tolmey/0.1.1", + "0.2.0": "http://registry.npmjs.org/tolmey/0.2.0", + "0.2.1": "http://registry.npmjs.org/tolmey/0.2.1", + "0.3.0": "http://registry.npmjs.org/tolmey/0.3.0", + "0.4.0": "http://registry.npmjs.org/tolmey/0.4.0", + "0.5.0": "http://registry.npmjs.org/tolmey/0.5.0", + "0.5.1": "http://registry.npmjs.org/tolmey/0.5.1", + "0.5.2": "http://registry.npmjs.org/tolmey/0.5.2" + }, + "dist": { + "0.0.1": { + "shasum": "8fe0165e3351b4ebc919ccb9bd9c232ffa8698eb", + "tarball": "http://registry.npmjs.org/tolmey/-/tolmey-0.0.1.tgz" + }, + "0.1.1": { + "shasum": "4d27b3a695bf7162bc02970fac92e057e7ca8259", + "tarball": "http://registry.npmjs.org/tolmey/-/tolmey-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "8c9658185949a52667323cefbf2364f82bcfdd29", + "tarball": "http://registry.npmjs.org/tolmey/-/tolmey-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "e283989a7965c32535538b21f64b9ba762103e37", + "tarball": "http://registry.npmjs.org/tolmey/-/tolmey-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "9b504294b6c9c894289fa31ded44067c39313d26", + "tarball": "http://registry.npmjs.org/tolmey/-/tolmey-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "2d0548788a33f60d3fc2b622458ebdeb95c954e1", + "tarball": "http://registry.npmjs.org/tolmey/-/tolmey-0.4.0.tgz" + }, + "0.5.0": { + "shasum": "0dc5e7c0ff4827d69d8685f7417feecfc1683b03", + "tarball": "http://registry.npmjs.org/tolmey/-/tolmey-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "acb008a5c5a1797d72e038ef4953b5eeaedd99ad", + "tarball": "http://registry.npmjs.org/tolmey/-/tolmey-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "3f360078ace2838df174c47c9e1d395714569604", + "tarball": "http://registry.npmjs.org/tolmey/-/tolmey-0.5.2.tgz" + } + }, + "keywords": [ + "mapping", + "gps", + "ender" + ], + "url": "http://registry.npmjs.org/tolmey/" + }, + "toolbox": { + "name": "toolbox", + "description": "A collection of useful JavaScript utilities", + "dist-tags": { + "latest": "0.1.1" + }, + "readme": "# JavaScript Toolbox\n\nA collection of useful JavaScript utilities.\n\n### Features\n\n* Can be used with **Node.js** and **in the browser**\n* **AMD compatible**, you can load it via [RequireJS](https://github.com/jrburke/requirejs)\n* Lightweight\n* Fully **documented**\n* Tested\n\n## Example\n\n```javascript\nToolbox.getRandomNum(0, 100); // => 51\nToolbox.getRandomNums(0, 100, 3); // => [10, 54, 12]\nToolbox.getUid(); // => e80Ewq08td3QurK\nToolbox.detectMimeType('json'); // => application/json\n```\n\n## Download\n\nTo install **Toolbox**, use [NPM](http://npmjs.org/).\n\n```\n$ npm install toolbox\n```\n\nReleases are available for download from GitHub.\n\n| **Version** | **Description** | **Size** | **Action** |\n|:------------|:----------------|:---------|:-----------|\n| `toolbox.js` | *uncompressed, with comments* | 18.49KB (5.21KB gzipped) | [Download](https://raw.github.com/Baggz/Toolbox/master/src/toolbox.js) |\n| `toolbox.min.js` | *compressed, without comments* | 12.96KB (4.2KB gzipped) | [Download](https://raw.github.com/Baggz/Toolbox/master/dist/toolbox.min.js) |\n\n# Documentation\n\n**Methods**\n\n* [getRandomNum](#getRandomNum)\n* [getRandomNums](#getRandomNums)\n* [getUid](#getUid)\n* [getAvg](#getAvg)\n* [getMax](#getMax)\n* [getMin](#getMin)\n* [getSum](#getSum)\n* [detectMimeType](#detectMimeType)\n* [removeDuplicates](#removeDuplicates)\n* [shuffle](#shuffle)\n* [rgbToHex](#rgbToHex)\n* [hexToRgb](#hexToRgb)\n\n\n## GetRandomNum\n\n### getRandomNum(min, max[, except])\n\n**Examples**\n\n```javascript\nToolbox.getRandomNum(0, 5); // => 2\nToolbox.getRandomNum(0, 5, 3); // => 2\nToolbox.getRandomNum(0, 5, [0, 1, 2, 3, 4]); // => 5\n```\n\n\n## GetRandomNums\n\n### getRandomNums(min, max, count[, except])\n\n**Examples**\n\n```javascript\nToolbox.getRandomNums(0, 5, 3); // => [4, 1, 2]\nToolbox.getRandomNums(0, 5, 3, 4); // => [3, 2, 0]\nToolbox.getRandomNums(0, 5, 3, [0, 1, 2]); // => [4, 5, 3]\n```\n\n\n## GetUid\n\n### getUid(length[, resources])\n\n**Examples**\n\n```javascript\nToolbox.getUid(); // => I1pRhV31R1x5iAY\nToolbox.getUid(25); // => N9JydVi0A2zot9wg8413QGV3j\n```\n\n```javascript\nvar collections = { \n numbers: false\n};\n\nToolbox.getUid(25, collections); // => ConnMxWPZcvZwxvNoMAQpJHUr\n```\n\n```javascript\nvar collections = { \n numbers: false,\n lowercase: false\n};\n\nToolbox.getUid(25, collections); // => HGXWGZFIQBBWTIRZPGYXELPMP\n```\n\n```javascript\nvar collections = { \n numbers: false,\n lowercase: false,\n myCollection: '@#${}<>()'\n};\n\nToolbox.getUid(25, collections); // => Z@}LI(Q<}U}#Q(K$S}L}CC<@Z\n```\n\n\n## GetAvg\n\n### getAvg(numbers)\n\n**Examples**\n\n```javascript\nToolbox.getAvg([1, 2, 3, 4, 5]); // => 2\n```\n\n\n## GetMax\n\n### getMax(numbers)\n\n**Examples**\n\n```javascript\nToolbox.getMax([1, 2, 3, 4, 5]); // => 5\n```\n\n\n## GetMin\n\n### getMin(numbers)\n\n**Examples**\n\n```javascript\nToolbox.getMin([1, 2, 3, 4, 5]); // => 1\n```\n\n\n## GetSum\n\n### getMin(numbers)\n\n**Examples**\n\n```javascript\nToolbox.getSum([1, 2, 3, 4, 5]); // => 15\n```\n\n\n## DetectMimeType\n\n### detectMimeType(input)\n\n**Examples**\n\n```javascript\nToolbox.detectMimeType('json'); // => application/json\nToolbox.detectMimeType('application/json'); // => json\n```\n\n\n## RemoveDuplicates\n\n### removeDuplicates(input)\n\n**Examples**\n\n```javascript\nToolbox.removeDuplicates([1, 1, 2, 2, 3, 3, 4, 4, 5, 5]); // => [1, 2, 3, 4, 5]\n```\n\n\n## Shuffle\n\n### shuffle(input)\n\n**Examples**\n\n```javascript\nToolbox.shuffle([1, 2, 3, 4, 5]); // => [2, 1, 4, 3, 5]\n```\n\n\n## RgbToHex\n\n### rgbToHex(input)\n\n**Examples**\n\n```javascript\nToolbox.rgbToHex([255, 255, 255]); // => #ffffff\n```\n\n\n## HexToRgb\n\n### hexToRgb(input)\n\n**Examples**\n\n```javascript\nToolbox.hexToRgb('#ffffff'); // => [255, 255, 255]\n```\n\n# Running Tests\n\n```\n$ npm tests/\n```\n\n# License\n\n(The MIT License)\n\nCopyright (c) 2011 František Hába <hello@frantisekhaba.com>\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "maintainers": [ + { + "name": "baggz", + "email": "hello@frantisekhaba.com" + } + ], + "time": { + "modified": "2011-11-25T22:23:52.280Z", + "created": "2011-11-14T22:23:37.654Z", + "0.1.0": "2011-11-14T22:23:39.681Z", + "0.1.1": "2011-11-25T22:23:52.280Z" + }, + "author": { + "name": "František Hába", + "email": "hello@frantisekhaba.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Baggz/Toolbox.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/toolbox/0.1.0", + "0.1.1": "http://registry.npmjs.org/toolbox/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "6a5a631356aeb516219838716f263fd7d1f022ba", + "tarball": "http://registry.npmjs.org/toolbox/-/toolbox-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "449f79229757aa6a8f74fa59f26356c8b5279348", + "tarball": "http://registry.npmjs.org/toolbox/-/toolbox-0.1.1.tgz" + } + }, + "keywords": [ + "helpers", + "detectMimeType", + "getAvg", + "getMax", + "getMin", + "getRandomNum", + "getRandomNums", + "getSum", + "getUid", + "removeDuplicates", + "shuffle", + "hex", + "rgb", + "color", + "utility", + "utilities", + "random", + "uid", + "random number", + "random numbers" + ], + "url": "http://registry.npmjs.org/toolbox/" + }, + "toolkit": { + "name": "toolkit", + "description": "An ECMA5 compliant javascript multi-purpose toolkit.", + "dist-tags": { + "latest": "1.5.4" + }, + "maintainers": [ + { + "name": "ollym", + "email": "oliver.morgan@kohark.com" + } + ], + "time": { + "modified": "2011-09-30T13:08:02.821Z", + "created": "2011-08-27T17:54:03.763Z", + "1.0.0": "2011-08-27T17:54:05.539Z", + "1.0.1": "2011-08-27T18:24:39.223Z", + "1.1.0": "2011-09-01T02:57:59.386Z", + "1.2.0": "2011-09-07T03:19:34.991Z", + "1.3.0": "2011-09-10T18:25:28.347Z", + "1.4.0": "2011-09-18T12:07:20.525Z", + "1.5.1": "2011-09-26T12:44:18.054Z", + "1.5.2": "2011-09-26T12:57:08.282Z", + "1.5.3": "2011-09-30T01:29:37.865Z", + "1.5.4": "2011-09-30T13:08:02.821Z" + }, + "author": { + "name": "Oliver Morgan", + "email": "ollym@me.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/ollym/toolkit.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/toolkit/1.0.0", + "1.0.1": "http://registry.npmjs.org/toolkit/1.0.1", + "1.1.0": "http://registry.npmjs.org/toolkit/1.1.0", + "1.2.0": "http://registry.npmjs.org/toolkit/1.2.0", + "1.3.0": "http://registry.npmjs.org/toolkit/1.3.0", + "1.4.0": "http://registry.npmjs.org/toolkit/1.4.0", + "1.5.1": "http://registry.npmjs.org/toolkit/1.5.1", + "1.5.2": "http://registry.npmjs.org/toolkit/1.5.2", + "1.5.3": "http://registry.npmjs.org/toolkit/1.5.3", + "1.5.4": "http://registry.npmjs.org/toolkit/1.5.4" + }, + "dist": { + "1.0.0": { + "shasum": "a33b4ef79d62dc1d7672d2b0bc7cee74638d787f", + "tarball": "http://registry.npmjs.org/toolkit/-/toolkit-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "07794f0554068d1f3600324a248f2d0008a9d72b", + "tarball": "http://registry.npmjs.org/toolkit/-/toolkit-1.0.1.tgz" + }, + "1.1.0": { + "shasum": "89ae02d5923e9d5f4574982419725a540a0d5cf3", + "tarball": "http://registry.npmjs.org/toolkit/-/toolkit-1.1.0.tgz" + }, + "1.2.0": { + "shasum": "bc64da4b335b5ffdf72e94058d969a5ecadebc17", + "tarball": "http://registry.npmjs.org/toolkit/-/toolkit-1.2.0.tgz" + }, + "1.3.0": { + "shasum": "c5827aed1b785737cf6d31c3909427a134dfa32f", + "tarball": "http://registry.npmjs.org/toolkit/-/toolkit-1.3.0.tgz" + }, + "1.4.0": { + "shasum": "2bf1c333d57bed77862a17ddeb6a58447f8ac435", + "tarball": "http://registry.npmjs.org/toolkit/-/toolkit-1.4.0.tgz" + }, + "1.5.1": { + "shasum": "5de3781d0f90e1e56970fd51d2d2a9898b2e7d35", + "tarball": "http://registry.npmjs.org/toolkit/-/toolkit-1.5.1.tgz" + }, + "1.5.2": { + "shasum": "17460a41114de65043f54b8e89e0e035dea85cb1", + "tarball": "http://registry.npmjs.org/toolkit/-/toolkit-1.5.2.tgz" + }, + "1.5.3": { + "shasum": "bf9dac38da21baf3caeca9b85f4ee4b3f0ecde18", + "tarball": "http://registry.npmjs.org/toolkit/-/toolkit-1.5.3.tgz" + }, + "1.5.4": { + "shasum": "cb878eb76516f087a0aa6ed37e1ab8e2563391ca", + "tarball": "http://registry.npmjs.org/toolkit/-/toolkit-1.5.4.tgz" + } + }, + "keywords": [ + "ECMA5", + "tookit", + "utility", + "object" + ], + "url": "http://registry.npmjs.org/toolkit/" + }, + "tools": { + "name": "tools", + "description": "Install for the tools", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "toddmoore", + "email": "todd@toddm.me" + } + ], + "time": { + "modified": "2011-05-23T14:11:17.901Z", + "created": "2011-05-23T14:11:17.395Z", + "0.0.0": "2011-05-23T14:11:17.901Z" + }, + "author": { + "name": "Todd" + }, + "repository": { + "type": "git", + "url": "git://github.com/toddmoore/recline.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/tools/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "a6b6a1f070ce8622db63e87d3469d4c876e8b649", + "tarball": "http://registry.npmjs.org/tools/-/tools-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/tools/" + }, + "topcube": { + "name": "topcube", + "description": "Simple bindings to create a webkit window that node can control", + "dist-tags": { + "latest": "0.0.7" + }, + "maintainers": [ + { + "name": "creationix", + "email": "tim@creationix.com" + } + ], + "time": { + "modified": "2011-05-09T23:51:46.485Z", + "created": "2011-04-28T18:07:49.384Z", + "0.0.1": "2011-04-28T18:07:49.843Z", + "0.0.2": "2011-04-28T18:21:56.622Z", + "0.0.3": "2011-04-28T18:28:06.348Z", + "0.0.4": "2011-04-28T18:40:05.367Z", + "0.0.5": "2011-04-28T19:33:03.195Z", + "0.0.6": "2011-05-01T01:30:40.646Z", + "0.0.7": "2011-05-09T23:51:23.533Z" + }, + "author": { + "name": "Tim Caswell", + "email": "tim@creationix.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/creationix/topcube.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/topcube/0.0.1", + "0.0.2": "http://registry.npmjs.org/topcube/0.0.2", + "0.0.3": "http://registry.npmjs.org/topcube/0.0.3", + "0.0.4": "http://registry.npmjs.org/topcube/0.0.4", + "0.0.5": "http://registry.npmjs.org/topcube/0.0.5", + "0.0.6": "http://registry.npmjs.org/topcube/0.0.6", + "0.0.7": "http://registry.npmjs.org/topcube/0.0.7" + }, + "dist": { + "0.0.1": { + "shasum": "86035520af02da13df9487329a6a007ae6ca94ac", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.10-linux-2.6.35-28-generic-pae": { + "shasum": "8281f452dba1f16473a38dc607e803fccb47c56e", + "tarball": "http://registry.npmjs.org/topcube/-/topcube-0.0.1-0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.10-linux-2.6.35-28-generic-pae.tgz" + } + }, + "tarball": "http://registry.npmjs.org/topcube/-/topcube-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "5f9fb9a8a4367322b7a84bdc908371cc7927c77b", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.10-linux-2.6.35-28-generic-pae": { + "shasum": "675fbf1ea1bdfba7e59fbb82d27a627492112f21", + "tarball": "http://registry.npmjs.org/topcube/-/topcube-0.0.2-0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.10-linux-2.6.35-28-generic-pae.tgz" + } + }, + "tarball": "http://registry.npmjs.org/topcube/-/topcube-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "7a4e54b2116a4b636f3582b205ac5bda152d93a7", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.10-linux-2.6.35-28-generic-pae": { + "shasum": "f2034deb66a20ced5b7d7b34ef40a298e4070fcb", + "tarball": "http://registry.npmjs.org/topcube/-/topcube-0.0.3-0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.10-linux-2.6.35-28-generic-pae.tgz" + } + }, + "tarball": "http://registry.npmjs.org/topcube/-/topcube-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "82edb15603ff57b284a10a86c821abc3f2892ef8", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.10-linux-2.6.35-28-generic-pae": { + "shasum": "0b4cf5bbadbfd8b0d10edb3ee6ad553449e4d7b9", + "tarball": "http://registry.npmjs.org/topcube/-/topcube-0.0.4-0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.10-linux-2.6.35-28-generic-pae.tgz" + } + }, + "tarball": "http://registry.npmjs.org/topcube/-/topcube-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "e0b2db01894efe166648dc8ded5fa5aa31a628f1", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.10-linux-2.6.35-28-generic-pae": { + "shasum": "a132fea380bfd9b935f5636d5b40ee6b8e066484", + "tarball": "http://registry.npmjs.org/topcube/-/topcube-0.0.5-0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.10-linux-2.6.35-28-generic-pae.tgz" + } + }, + "tarball": "http://registry.npmjs.org/topcube/-/topcube-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "6271b42ab32c5074a6c28da2707c63bfec5b4817", + "tarball": "http://registry.npmjs.org/topcube/-/topcube-0.0.6.tgz", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.10-linux-2.6.38-8-generic-pae": { + "shasum": "12c7fc353a829b0b9b78c96115966c97149dfd77", + "tarball": "http://registry.npmjs.org/topcube/-/topcube-0.0.6-0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.10-linux-2.6.38-8-generic-pae.tgz" + } + } + }, + "0.0.7": { + "shasum": "0c2d3c7c8933e6b4d60f174e9b257129b5400f37", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.10-linux-2.6.35-28-generic-pae": { + "shasum": "a585485254bce12135172cb2576673dbd6be87b6", + "tarball": "http://registry.npmjs.org/topcube/-/topcube-0.0.7-0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.10-linux-2.6.35-28-generic-pae.tgz" + } + }, + "tarball": "http://registry.npmjs.org/topcube/-/topcube-0.0.7.tgz" + } + }, + "url": "http://registry.npmjs.org/topcube/" + }, + "torrent-search": { + "name": "torrent-search", + "description": "Simple Node API wrapper for Isohunt torrents search API", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "podviaznikov", + "email": "podviaznikov@gmail.com" + } + ], + "author": { + "name": "Anton Podviaznikov", + "url": "podviaznikov@gmail.com" + }, + "time": { + "modified": "2011-03-06T22:04:25.128Z", + "created": "2010-12-25T21:19:10.099Z", + "0.1.0": "2010-12-25T21:19:10.099Z", + "0.1.1": "2010-12-25T21:19:10.099Z", + "0.1.2": "2011-03-06T22:04:25.128Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/torrent-search/0.1.0", + "0.1.1": "http://registry.npmjs.org/torrent-search/0.1.1", + "0.1.2": "http://registry.npmjs.org/torrent-search/0.1.2" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/torrent-search/-/torrent-search-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://registry.npmjs.org/torrent-search/-/torrent-search-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "90107fbfbb8715db0fe0a9b9ead188ec45905a17", + "tarball": "http://registry.npmjs.org/torrent-search/-/torrent-search-0.1.2.tgz" + } + }, + "keywords": [ + "torrent", + "search", + "API", + "wrapper", + "isohunt" + ], + "url": "http://registry.npmjs.org/torrent-search/" + }, + "torrent-util": { + "name": "torrent-util", + "description": "Various utility functions for making sense of .torrent files", + "dist-tags": { + "latest": "0.0.4" + }, + "readme": null, + "maintainers": [ + { + "name": "deoxxa", + "email": "deoxxa@fknsrs.biz" + } + ], + "time": { + "modified": "2011-11-19T04:04:22.234Z", + "created": "2011-11-19T03:43:19.708Z", + "0.0.1": "2011-11-19T03:43:23.354Z", + "0.0.2": "2011-11-19T03:43:42.082Z", + "0.0.3": "2011-11-19T03:51:12.882Z", + "0.0.4": "2011-11-19T04:04:22.234Z" + }, + "author": { + "name": "Conrad Pankoff", + "email": "deoxxa@fknsrs.biz", + "url": "http://www.fknsrs.biz/" + }, + "repository": { + "type": "git", + "url": "git://github.com/deoxxa/node-torrent-util.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/torrent-util/0.0.1", + "0.0.2": "http://registry.npmjs.org/torrent-util/0.0.2", + "0.0.3": "http://registry.npmjs.org/torrent-util/0.0.3", + "0.0.4": "http://registry.npmjs.org/torrent-util/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "a402ff52da5c49f8b3c61695ea045df3bc09ec3d", + "tarball": "http://registry.npmjs.org/torrent-util/-/torrent-util-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "154f299d1dcac4fa614f463c255dab26499fddec", + "tarball": "http://registry.npmjs.org/torrent-util/-/torrent-util-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "f7debeb10fe78db0d8cdecd8e3c3d41527281777", + "tarball": "http://registry.npmjs.org/torrent-util/-/torrent-util-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "2d4ed89e4211644bc204ab98dabd041874d1fcbb", + "tarball": "http://registry.npmjs.org/torrent-util/-/torrent-util-0.0.4.tgz" + } + }, + "keywords": [ + "torrent", + "utility" + ], + "url": "http://registry.npmjs.org/torrent-util/" + }, + "tosource": { + "name": "tosource", + "description": "toSource converts JavaScript objects back to source", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "marcello", + "email": "marcello@cellosoft.com" + } + ], + "time": { + "modified": "2011-04-24T19:26:34.412Z", + "created": "2011-04-24T18:44:22.731Z", + "0.1.0": "2011-04-24T18:44:22.886Z", + "0.1.1": "2011-04-24T19:26:34.412Z" + }, + "author": { + "name": "Marcello Bastéa-Forte", + "email": "marcello@cellosoft.com", + "url": "http://marcello.cellosoft.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/marcello3d/node-tosource.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/tosource/0.1.0", + "0.1.1": "http://registry.npmjs.org/tosource/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "cb913eb9c3b24952505931f62b8f6053f3771ba9", + "tarball": "http://registry.npmjs.org/tosource/-/tosource-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "33b2d4190a81467d9783a12a56f70a44127339ca", + "tarball": "http://registry.npmjs.org/tosource/-/tosource-0.1.1.tgz" + } + }, + "keywords": [ + "source", + "tosource", + "json", + "javascript object", + "object" + ], + "url": "http://registry.npmjs.org/tosource/" + }, + "touch": { + "name": "touch", + "description": "like touch(1) in node", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "time": { + "modified": "2011-10-05T22:13:25.389Z", + "created": "2011-10-05T22:13:24.358Z", + "0.0.1": "2011-10-05T22:13:25.389Z" + }, + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me/" + }, + "repository": { + "type": "git", + "url": "git://github.com/isaacs/node-touch.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/touch/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "c58742ef5dedcf0a238b39cbcadaa0e0e404e1b6", + "tarball": "http://registry.npmjs.org/touch/-/touch-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/touch/" + }, + "tough-cookie": { + "name": "tough-cookie", + "description": "RFC6265 Cookies and Cookie Jar for node.js", + "dist-tags": { + "latest": "0.9.7" + }, + "maintainers": [ + { + "name": "jstash", + "email": "jeremy@goinstant.com" + } + ], + "time": { + "modified": "2011-12-01T23:14:08.946Z", + "created": "2011-10-21T19:06:03.548Z", + "0.9.0": "2011-10-21T19:06:03.972Z", + "0.9.1": "2011-10-31T20:14:14.089Z", + "0.9.3": "2011-11-07T22:32:46.899Z", + "0.9.4": "2011-11-23T15:55:51.823Z", + "0.9.5": "2011-11-23T16:09:51.761Z", + "0.9.6": "2011-11-23T19:26:54.217Z", + "0.9.7": "2011-12-01T23:14:08.946Z" + }, + "author": { + "name": "Jeremy Stashewsky", + "email": "jeremy@goinstant.com", + "url": "https://github.com/stash" + }, + "repository": { + "type": "git", + "url": "git://github.com/goinstant/node-cookie.git" + }, + "versions": { + "0.9.0": "http://registry.npmjs.org/tough-cookie/0.9.0", + "0.9.1": "http://registry.npmjs.org/tough-cookie/0.9.1", + "0.9.3": "http://registry.npmjs.org/tough-cookie/0.9.3", + "0.9.4": "http://registry.npmjs.org/tough-cookie/0.9.4", + "0.9.5": "http://registry.npmjs.org/tough-cookie/0.9.5", + "0.9.6": "http://registry.npmjs.org/tough-cookie/0.9.6", + "0.9.7": "http://registry.npmjs.org/tough-cookie/0.9.7" + }, + "dist": { + "0.9.0": { + "shasum": "b09b191982dcd7b0cccd78e176c2d6842810c9c5", + "tarball": "http://registry.npmjs.org/tough-cookie/-/tough-cookie-0.9.0.tgz" + }, + "0.9.1": { + "shasum": "0f882fcc572567283eef639b0ba1c1a4785c72fe", + "tarball": "http://registry.npmjs.org/tough-cookie/-/tough-cookie-0.9.1.tgz" + }, + "0.9.3": { + "shasum": "57017d596dbf03e4c7c79cf2f8c01fc69e9b70b1", + "tarball": "http://registry.npmjs.org/tough-cookie/-/tough-cookie-0.9.3.tgz" + }, + "0.9.4": { + "shasum": "e8a768ccb452dd3a9b8b844fe3a2ab2d319f0315", + "tarball": "http://registry.npmjs.org/tough-cookie/-/tough-cookie-0.9.4.tgz" + }, + "0.9.5": { + "shasum": "a189208232ec5ee8b94f2578769b21155ab9b131", + "tarball": "http://registry.npmjs.org/tough-cookie/-/tough-cookie-0.9.5.tgz" + }, + "0.9.6": { + "shasum": "c63b55e3862676e5d394a9f102f7dd599539af15", + "tarball": "http://registry.npmjs.org/tough-cookie/-/tough-cookie-0.9.6.tgz" + }, + "0.9.7": { + "shasum": "ea037e175d326574b0afb196d658672c7912bd45", + "tarball": "http://registry.npmjs.org/tough-cookie/-/tough-cookie-0.9.7.tgz" + } + }, + "keywords": [ + "HTTP cookie cookies set-cookie cookiejar jar RFC6265 RFC2965" + ], + "url": "http://registry.npmjs.org/tough-cookie/" + }, + "toYaml": { + "name": "toYaml", + "description": "A simple JSON to YAML serializer - dumper - encoder - whatever", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "dotmaster", + "email": "isimpl@gmail.com" + } + ], + "time": { + "modified": "2011-06-09T14:16:32.031Z", + "created": "2011-01-13T00:59:50.287Z", + "0.0.8": "2011-01-13T00:59:50.729Z", + "0.0.9": "2011-06-09T11:17:58.804Z", + "1.0.0": "2011-06-09T14:09:15.001Z" + }, + "author": { + "name": "Gregor Schwab", + "email": "gregor@connect-mi.com", + "url": "http://www.connect-mi.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/dotmaster/jsonToYaml.git" + }, + "versions": { + "0.0.8": "http://registry.npmjs.org/toYaml/0.0.8", + "0.0.9": "http://registry.npmjs.org/toYaml/0.0.9", + "1.0.0": "http://registry.npmjs.org/toYaml/1.0.0" + }, + "dist": { + "0.0.8": { + "tarball": "http://registry.npmjs.org/toYaml/-/toYaml-0.0.8.tgz" + }, + "0.0.9": { + "tarball": "http://registry.npmjs.org/toYaml/-/toYaml-0.0.9.tgz" + }, + "1.0.0": { + "tarball": "http://registry.npmjs.org/toYaml/-/toYaml-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/toYaml/" + }, + "tplcpl": { + "name": "tplcpl", + "description": "Templates Compiler", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "jsmarkus", + "email": "nixmrak@gmail.com" + } + ], + "time": { + "modified": "2011-09-20T09:06:51.761Z", + "created": "2011-09-14T11:06:42.693Z", + "0.0.1": "2011-09-14T11:06:44.512Z", + "0.0.2": "2011-09-14T11:09:30.744Z", + "0.0.3": "2011-09-20T09:06:51.761Z" + }, + "author": { + "name": "Markus" + }, + "repository": { + "type": "git", + "url": "git://github.com/jsmarkus/tplcpl.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tplcpl/0.0.1", + "0.0.2": "http://registry.npmjs.org/tplcpl/0.0.2", + "0.0.3": "http://registry.npmjs.org/tplcpl/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "ceddc49e0733e4a33c1c804ec5008ec9262b184d", + "tarball": "http://registry.npmjs.org/tplcpl/-/tplcpl-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "2df77001971903f5ad4e025ab44bc2dfeb037fa6", + "tarball": "http://registry.npmjs.org/tplcpl/-/tplcpl-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "b4dc5db0bd6fa7d6607bd2f481adbaa7e448e134", + "tarball": "http://registry.npmjs.org/tplcpl/-/tplcpl-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/tplcpl/" + }, + "tq": { + "name": "tq", + "description": "tiny queue", + "dist-tags": { + "latest": "0.0.2" + }, + "readme": "## Example\n\n```javascript\n\nvar queue = require('tq').queue();\n\n\n\nqueue.push(function() {\n\tconsole.log('next');\n\n\tthis();\n\n}).\npush(function() {\n\t\n\tconsole.log(\"next\");\n\n\tthis();\n}).\nstart();\n\n```\n\nAnother variation\n\n```javascript\nvar queue = require('tq').queue();\n\n\n[\n\tfunction() {\n\t\tthis();\n\t},\n\tfunction() {\n\t\tthis()\n\t},\n\tfunction() {\n\t\tthis();\n\t}\n].forEach(queue.push);\n\nqueue.start();\n```\n\n\n## Api\n\n\n### queue.push \npushes a queue to the end\n\n### queue.unshift\npushes a queue to the beginning (next up)\n\n### queue.start\nstarts a queue\n\n### queue.stop\nstops a queue", + "maintainers": [ + { + "name": "architectd", + "email": "craig.j.condon@gmail.com" + } + ], + "time": { + "modified": "2011-12-10T00:06:03.797Z", + "created": "2011-12-03T23:51:14.063Z", + "0.0.1": "2011-12-03T23:51:14.360Z", + "0.0.2": "2011-12-10T00:06:03.797Z" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tq/0.0.1", + "0.0.2": "http://registry.npmjs.org/tq/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "eb0740a9793c048d0548dc9718dd42958b64a0b3", + "tarball": "http://registry.npmjs.org/tq/-/tq-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "0f8a22615b15bd4246583f3ad45de1bf588f4841", + "tarball": "http://registry.npmjs.org/tq/-/tq-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/tq/" + }, + "tracejs": { + "name": "tracejs", + "description": "Expand Error.stack traces into usable objects providing context and highlighting", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "chrisdickinson", + "email": "chris@neversaw.us" + } + ], + "time": { + "modified": "2011-11-30T17:51:01.150Z", + "created": "2011-06-21T23:05:17.400Z", + "0.0.1": "2011-06-21T23:05:17.748Z", + "0.0.2": "2011-06-21T23:15:43.803Z", + "0.0.333": "2011-06-21T23:50:03.189Z", + "0.0.3": "2011-06-21T23:52:40.671Z", + "0.1.0": "2011-06-22T03:24:04.649Z", + "0.1.1": "2011-06-22T04:33:15.403Z", + "0.1.2": "2011-06-22T06:02:03.457Z", + "0.1.3": "2011-09-22T20:37:43.431Z", + "0.1.4": "2011-11-30T17:51:01.150Z" + }, + "author": { + "name": "Chris Dickinson", + "email": "chris@neversaw.us", + "url": "http://neversaw.us/" + }, + "repository": { + "type": "git", + "url": "git://github.com/chrisdickinson/tracejs.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tracejs/0.0.1", + "0.0.2": "http://registry.npmjs.org/tracejs/0.0.2", + "0.0.3": "http://registry.npmjs.org/tracejs/0.0.3", + "0.1.0": "http://registry.npmjs.org/tracejs/0.1.0", + "0.1.1": "http://registry.npmjs.org/tracejs/0.1.1", + "0.1.2": "http://registry.npmjs.org/tracejs/0.1.2", + "0.1.3": "http://registry.npmjs.org/tracejs/0.1.3", + "0.1.4": "http://registry.npmjs.org/tracejs/0.1.4" + }, + "dist": { + "0.0.1": { + "shasum": "cbfe0d0ef9520286365ca1a3c1561f8597ed4170", + "tarball": "http://registry.npmjs.org/tracejs/-/tracejs-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "1b28dca171b166baaef9116333d7220ed512e6cd", + "tarball": "http://registry.npmjs.org/tracejs/-/tracejs-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "d583177ea6f18baa3b377c5367052d21387e4cc8", + "tarball": "http://registry.npmjs.org/tracejs/-/tracejs-0.0.3.tgz" + }, + "0.1.0": { + "shasum": "b323f871cf3643b6d3092403d4524873c5946145", + "tarball": "http://registry.npmjs.org/tracejs/-/tracejs-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "7991e431a95c06bfe65af2600bb4abc3feca324e", + "tarball": "http://registry.npmjs.org/tracejs/-/tracejs-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "f2e59ba20fd0cd90a5c40e06fefeaa80c62105b6", + "tarball": "http://registry.npmjs.org/tracejs/-/tracejs-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "f33a8c678a62c0be92bd0d3889bb157019c1f5b6", + "tarball": "http://registry.npmjs.org/tracejs/-/tracejs-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "29dbeb4ae107892f76548cdfa1be8e1a73758de6", + "tarball": "http://registry.npmjs.org/tracejs/-/tracejs-0.1.4.tgz" + } + }, + "url": "http://registry.npmjs.org/tracejs/" + }, + "traceur": { + "name": "traceur", + "description": "Traceur compiler for node.js", + "dist-tags": { + "latest": "2.0.0" + }, + "maintainers": [ + { + "name": "aikar", + "email": "aikar@aikar.co" + } + ], + "time": { + "modified": "2011-09-30T02:51:14.689Z", + "created": "2011-06-22T00:58:26.389Z", + "1.0.0": "2011-06-22T00:58:26.785Z", + "1.0.1": "2011-06-23T12:39:51.167Z", + "1.1.0": "2011-09-19T00:29:44.789Z", + "1.1.1": "2011-09-19T05:27:55.636Z", + "2.0.0": "2011-09-30T02:51:14.689Z" + }, + "author": { + "name": "Aikar", + "email": "aikar@aikar.co" + }, + "repository": { + "type": "git", + "url": "git@github.com:aikar/traceur" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/traceur/1.0.0", + "1.0.1": "http://registry.npmjs.org/traceur/1.0.1", + "1.1.0": "http://registry.npmjs.org/traceur/1.1.0", + "1.1.1": "http://registry.npmjs.org/traceur/1.1.1", + "2.0.0": "http://registry.npmjs.org/traceur/2.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "2bf2e7fe1fe91a7792423f9988787b55c0ffeb14", + "tarball": "http://registry.npmjs.org/traceur/-/traceur-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "62d7c916e0c8f4683823a6f1adde0596fa3f3999", + "tarball": "http://registry.npmjs.org/traceur/-/traceur-1.0.1.tgz" + }, + "1.1.0": { + "shasum": "8387ed2856c15441e5328b1d0e0f03d375f80823", + "tarball": "http://registry.npmjs.org/traceur/-/traceur-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "0b4aaa8a2fe3924e81a17ec617edecc625219021", + "tarball": "http://registry.npmjs.org/traceur/-/traceur-1.1.1.tgz" + }, + "2.0.0": { + "shasum": "071e395d321da9db84c5d0a02e23472987040f7d", + "tarball": "http://registry.npmjs.org/traceur/-/traceur-2.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/traceur/" + }, + "traceurl": { + "name": "traceurl", + "description": "A JavaScript utility to trace the original url of a shortened url.", + "dist-tags": { + "latest": "0.2.7" + }, + "maintainers": [ + { + "name": "catchen", + "email": "cathsfz@gmail.com" + } + ], + "time": { + "modified": "2011-07-30T06:23:27.877Z", + "created": "2011-07-16T16:31:00.287Z", + "0.2.0": "2011-07-16T16:31:02.031Z", + "0.2.1": "2011-07-16T16:36:26.903Z", + "0.2.2": "2011-07-16T16:43:45.882Z", + "0.2.3": "2011-07-16T16:53:19.394Z", + "0.2.5": "2011-07-17T02:47:25.843Z", + "0.2.7": "2011-07-17T13:07:18.138Z" + }, + "author": { + "name": "Cat Chen", + "email": "catchen@catchen.me", + "url": "http://catchen.me" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/traceurl/0.2.0", + "0.2.1": "http://registry.npmjs.org/traceurl/0.2.1", + "0.2.2": "http://registry.npmjs.org/traceurl/0.2.2", + "0.2.3": "http://registry.npmjs.org/traceurl/0.2.3", + "0.2.5": "http://registry.npmjs.org/traceurl/0.2.5", + "0.2.7": "http://registry.npmjs.org/traceurl/0.2.7" + }, + "dist": { + "0.2.0": { + "shasum": "fd511aae46e4826c8d70dd3cd14de74597d61e29", + "tarball": "http://registry.npmjs.org/traceurl/-/traceurl-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "430d5e0daefa7c900fe9ddc261d3040771dc6592", + "tarball": "http://registry.npmjs.org/traceurl/-/traceurl-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "aa1cdb775539f9c3676558ad4b86d2d6802d67d0", + "tarball": "http://registry.npmjs.org/traceurl/-/traceurl-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "31a8c49a4a08331b6da6dc9b8fb868f5eeb50ed9", + "tarball": "http://registry.npmjs.org/traceurl/-/traceurl-0.2.3.tgz" + }, + "0.2.5": { + "shasum": "774515d724865e5b22bc4e7ac3c0010f00996168", + "tarball": "http://registry.npmjs.org/traceurl/-/traceurl-0.2.5.tgz" + }, + "0.2.7": { + "shasum": "4571643253a667f5293a5a882eeef0418fc6eb1b", + "tarball": "http://registry.npmjs.org/traceurl/-/traceurl-0.2.7.tgz" + } + }, + "url": "http://registry.npmjs.org/traceurl/" + }, + "tracey": { + "name": "tracey", + "description": "Get a parsed stack trace for the current location", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "glenjamin", + "email": "glenjamin@gmail.com" + } + ], + "time": { + "modified": "2011-10-28T12:11:58.010Z", + "created": "2011-09-21T12:02:22.237Z", + "0.1.0": "2011-09-21T12:02:23.506Z", + "0.1.1": "2011-09-22T09:35:00.067Z", + "0.2.0": "2011-10-28T12:11:58.010Z" + }, + "author": { + "name": "Glen Mailer", + "email": "glenjamin@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/glenjamin/node-tracey.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/tracey/0.1.0", + "0.1.1": "http://registry.npmjs.org/tracey/0.1.1", + "0.2.0": "http://registry.npmjs.org/tracey/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "085e47695990b89fd29e25ec0e52f976dc3bbca0", + "tarball": "http://registry.npmjs.org/tracey/-/tracey-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "86d6b1ade93b4ba700f80f7471675a19f3905218", + "tarball": "http://registry.npmjs.org/tracey/-/tracey-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "49551a38aec458200377f2ee1b379585cf5ca132", + "tarball": "http://registry.npmjs.org/tracey/-/tracey-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/tracey/" + }, + "tracklist": { + "name": "tracklist", + "description": "Eat folder of mp3s, receive id3 track info", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "jesusabdullah", + "email": "josh.holbrook@gmail.com" + } + ], + "time": { + "modified": "2011-11-08T06:21:53.459Z", + "created": "2011-11-02T07:29:40.406Z", + "0.0.0": "2011-11-02T07:29:47.550Z", + "0.0.0-1": "2011-11-03T04:51:00.488Z", + "0.1.0": "2011-11-08T06:21:53.459Z" + }, + "author": { + "name": "Joshua Holbrook", + "email": "josh@nodejitsu.com", + "url": "http://jesusabdullah.github.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:jesusabdullah/tracklist.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/tracklist/0.0.0", + "0.0.0-1": "http://registry.npmjs.org/tracklist/0.0.0-1", + "0.1.0": "http://registry.npmjs.org/tracklist/0.1.0" + }, + "dist": { + "0.0.0": { + "shasum": "29bef81f232b354c476b1a8a06f3a9b886c0e824", + "tarball": "http://registry.npmjs.org/tracklist/-/tracklist-0.0.0.tgz" + }, + "0.0.0-1": { + "shasum": "c93127751de11c2aeef5dcb22813678e58abd3f1", + "tarball": "http://registry.npmjs.org/tracklist/-/tracklist-0.0.0-1.tgz" + }, + "0.1.0": { + "shasum": "d0a06c472c3ebe852c3db0e557894108eb911051", + "tarball": "http://registry.npmjs.org/tracklist/-/tracklist-0.1.0.tgz" + } + }, + "keywords": [ + "id3", + "mp3" + ], + "url": "http://registry.npmjs.org/tracklist/" + }, + "tracy": { + "name": "tracy", + "description": "Wrapper for v8's stack trace APIs.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "felixge", + "email": "felix@debuggable.com" + } + ], + "time": { + "modified": "2011-04-03T14:13:02.725Z", + "created": "2011-04-03T11:54:52.932Z", + "0.0.1": "2011-04-03T11:54:53.635Z", + "0.0.2": "2011-04-03T14:13:02.725Z" + }, + "author": { + "name": "Felix Geisendörfer", + "email": "felix@debuggable.com", + "url": "http://debuggable.com/" + }, + "repository": { + "type": "git", + "url": "git@github.com:felixge/node-tracy.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tracy/0.0.1", + "0.0.2": "http://registry.npmjs.org/tracy/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "0592689319f97c0b7ddf1aa3040e8f3e35ccdeaa", + "tarball": "http://registry.npmjs.org/tracy/-/tracy-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "fe0781657224e998d63021588e0fb0883d26ea8a", + "tarball": "http://registry.npmjs.org/tracy/-/tracy-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/tracy/" + }, + "trailer": { + "name": "trailer", + "description": "An HTTP server written for Node.", + "dist-tags": { + "latest": "0.7.1" + }, + "readme": null, + "maintainers": [ + { + "name": "tylermwashburn", + "email": "tylermwashburn@gmail.com" + } + ], + "time": { + "modified": "2011-12-13T03:49:50.215Z", + "created": "2011-12-03T21:43:06.254Z", + "0.7.0": "2011-12-03T21:43:07.387Z", + "0.7.1": "2011-12-13T03:49:50.215Z" + }, + "author": { + "name": "Tyler Washburn", + "url": "http://tylermwashburn.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/tylermwashburn/trailer.git" + }, + "versions": { + "0.7.0": "http://registry.npmjs.org/trailer/0.7.0", + "0.7.1": "http://registry.npmjs.org/trailer/0.7.1" + }, + "dist": { + "0.7.0": { + "shasum": "08866e695363adfd1dc95e5baa6fb0b2d4a92d3f", + "tarball": "http://registry.npmjs.org/trailer/-/trailer-0.7.0.tgz" + }, + "0.7.1": { + "shasum": "6f8d9d09951618ef791cefaa250e49413af61247", + "tarball": "http://registry.npmjs.org/trailer/-/trailer-0.7.1.tgz" + } + }, + "keywords": [ + "http", + "static", + "file", + "server" + ], + "url": "http://registry.npmjs.org/trailer/" + }, + "trainwreck": { + "name": "trainwreck", + "description": "Chaining made easy.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "millermedeiros", + "email": "miller@millermedeiros.com" + } + ], + "time": { + "modified": "2011-10-19T05:37:58.648Z", + "created": "2011-10-19T05:37:57.839Z", + "0.1.0": "2011-10-19T05:37:58.648Z" + }, + "author": { + "name": "Miller Medeiros" + }, + "repository": { + "type": "git", + "url": "git://github.com/millermedeiros/trainwreck.js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/trainwreck/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "580ced4f107f139fbb92f9039cbf526789ad0d24", + "tarball": "http://registry.npmjs.org/trainwreck/-/trainwreck-0.1.0.tgz" + } + }, + "keywords": [ + "chaining", + "method", + "function", + "property" + ], + "url": "http://registry.npmjs.org/trainwreck/" + }, + "traits": { + "name": "traits", + "dist-tags": { + "latest": "0.4.0" + }, + "maintainers": [ + { + "name": "nathan", + "email": "nrstott@gmail.com" + } + ], + "author": { + "name": "Tom Van Cutsem" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/traits/0.1.0", + "0.3.0": "http://registry.npmjs.org/traits/0.3.0", + "0.4.0": "http://registry.npmjs.org/traits/0.4.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/traits/-/traits-0.1.0.tgz" + }, + "0.3.0": { + "tarball": "http://packages:5984/traits/-/traits-0.3.0.tgz" + }, + "0.4.0": { + "tarball": "http://packages:5984/traits/-/traits-0.4.0.tgz" + } + }, + "url": "http://registry.npmjs.org/traits/" + }, + "tramp": { + "name": "tramp", + "description": "Translate Message Properties using Google Translate", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "dylang", + "email": "dylang@gmail.com" + } + ], + "time": { + "modified": "2011-03-30T17:41:29.297Z", + "created": "2011-03-30T17:29:55.356Z", + "0.1.0": "2011-03-30T17:29:55.406Z", + "0.1.1": "2011-03-30T17:41:29.297Z" + }, + "author": { + "name": "Dylan Greene", + "url": "http://github.com/dylang" + }, + "repository": { + "type": "git", + "url": "git://github.com/opower/tramp.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/tramp/0.1.0", + "0.1.1": "http://registry.npmjs.org/tramp/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "e368384f34f2fd8d7c25792f8c70aa1e0792ba37", + "tarball": "http://registry.npmjs.org/tramp/-/tramp-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "8f0fde86595e566a503f17c369c91dee9661876b", + "tarball": "http://registry.npmjs.org/tramp/-/tramp-0.1.1.tgz" + } + }, + "keywords": [ + "translate", + "message properties", + "translation", + "google", + "google translate" + ], + "url": "http://registry.npmjs.org/tramp/" + }, + "trampoline": { + "name": "trampoline", + "description": "Apple AirPlay trampoline server", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "Trampoline -- AirPlay control service\n====================================\n\nTrampoline provides a node server that gives a RESTful API to AirPlay devices\non the local network via\n[node-airplay](https://github.com/benvanik/node-airplay). The server can be used\nby applications on the local machine or network to discover AirPlay devices and\ncontrol the playback of those devices with one API.\n\nEventually, Trampoline will provide transparent video serving (exposing\nindividual local files over HTTP to enable playback from AirPlay devices) and\ntranscoding (sourcing from local or remote video files and transcoding into a\nformat that Apple devices will accept).\n\n## Quickstart\n\n npm install trampoline\n npm start trampoline\n\n## Installation\n\nWith [npm](http://npmjs.org):\n\n npm install trampoline\n\nFrom source:\n\n cd ~\n git clone https://benvanik@github.com/benvanik/trampoline.git\n npm link trampoline/\n\n## Configuration\n\nWhen using `npm start`, use `npm config` to change the launch options:\n\n npm config set trampoline:port 8090\n npm start trampoline\n\nIf launching directly via `trampoline`:\n\n trampoline --port=8090\n\n## API\n\n### Content API\n\nNOTE: content status readyToPlay must be true before attempting playback!\n\nSetup a new content serving request:\n\n POST /content/setup\n {\n source: {\n content: string,\n mimeType: string, // 'video/webm'\n cookie: string,\n referer: string,\n auth: string // user:password\n },\n target: {\n mimeType: string, // 'video/mp4'\n resolution: number, // 480, 720, 1080, undefined for original\n quality: number // [0-1], undefined for don't care\n }\n }\n --> {\n id: string\n }\n\n GET /content/[id]\n --> [streaming content]\n\n PUT /content/[id]\n\n DELETE /content/[id]\n\n GET /content/[id]/status\n --> {\n cached: boolean,\n seekable: boolean,\n readyToPlay: boolean\n }\n\n POST /content/[id]/cache\n {}\n --> {}\n\n### Device API\n\nList all devices on the network (query occasionally):\n\n GET /device/list\n --> {\n devices: [\n {\n id: string,\n name: string,\n deviceId: string,\n features: number,\n model: string,\n slideshowFeatures: [],\n supportedContentTypes: [string, ...]\n }, ...\n ]\n }\n\nGet the information of a specific device:\n\n GET /device/id/\n --> {\n id: string,\n name: string,\n deviceId: string,\n features: number,\n model: string,\n slideshowFeatures: [],\n supportedContentTypes: [string, ...]\n }\n\nGet the playback status of a device:\n\n GET /device/id/status\n --> {\n duration: number,\n position: number,\n rate: number,\n playbackBufferEmpty: boolean,\n playbackBufferFull: boolean,\n playbackLikelyToKeepUp: boolean,\n readyToPlay: boolean,\n loadedTimeRanges: [\n {\n start: number,\n duration: number\n }, ...\n ],\n seekableTimeRanges: [\n {\n start: number,\n duration: number\n }, ...\n ]\n }\n\nBegin playback of the given content:\n\n POST /device/id/play\n {\n content: string,\n start: number\n }\n --> {}\n\nStop playback of the current content:\n\n POST /device/id/stop\n {}\n --> {}\n\nSeek to the given position in the current content:\n\n POST /device/id/scrub\n {\n position: number\n }\n --> {}\n\nChange the playback rate of the current content (0 = pause, 1 = resume):\n\n POST /device/id/rate\n {\n value: number\n }\n --> {}\n\nAdjust the playback volume:\n\n POST /device/id/volume\n {\n value: number\n }\n --> {}\n\nTODO: Post a photo for slideshow mode:\n\n POST /device/id/photo\n {\n content: string,\n transition: string\n }\n --> {}\n\n\n\n\n\nTranscoding:\ninstall mac ports\nsudo port install ffmpeg +nonfree\nsudo port install mplayer +nonfree\nHTTP Live Streaming Tools\n\nTODO: repackage on git so can be handled by npm somehow\nwget http://sourceforge.net/projects/mediainfo/files/binary/mediainfo/0.7.50/MediaInfo_CLI_0.7.50_GNU_FromSource.tar.bz2/download\ntar zxvf MediaInfo_CLI_0.7.50_GNU_FromSource.tar.bz2\ncd MediaInfo_CLI_0.7.50_GNU_FromSource/\n./CLI_Compile.sh\ncd MediaInfo/Project/GNU/CLI && make install\n\nMENCODER=$(which mencoder)\nMEDIAINFO=$(which mediainfo)\nFFMPEG=$(which ffmpeg)\nLSDVD=$(which lsdvd)\nXML=$(which xmlstarlet)\n\n/Applications/VLC.app/Contents/MacOS/VLC -vv SOURCEFILE --intf=rc '--sout=#transcode{vcodec=h264,vb=2048,acodec=mp4a,ab=192}:standard{mux=ts,dst=-,access=file}' | mediastreamsegmenter -f /some/tmp/path/ -D\n", + "maintainers": [ + { + "name": "benvanik", + "email": "ben.vanik@gmail.com" + } + ], + "time": { + "modified": "2011-11-23T07:57:38.920Z", + "created": "2011-11-23T07:57:37.459Z", + "0.0.1": "2011-11-23T07:57:38.920Z" + }, + "author": { + "name": "Ben Vanik", + "email": "ben.vanik@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/benvanik/trampoline.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/trampoline/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "26a3d0ffd5e694523964498b630139a893c02edc", + "tarball": "http://registry.npmjs.org/trampoline/-/trampoline-0.0.1.tgz" + } + }, + "keywords": [ + "apple", + "mac", + "media", + "airplay", + "video", + "server" + ], + "url": "http://registry.npmjs.org/trampoline/" + }, + "transcode": { + "name": "transcode", + "description": "character set encoders and decoders, built on libiconv", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "kriskowal", + "email": "kris.kowal@cixar.com" + } + ], + "author": { + "name": "Kris Kowal", + "email": "kris@cixar.com", + "url": "http://github.com/kriskowal/" + }, + "repository": { + "type": "git", + "url": "http://github.com/kriskowal/transcode.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/transcode/0.0.0" + }, + "dist": { + "0.0.0": { + "tarball": "http://packages:5984/transcode/-/transcode-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/transcode/" + }, + "transcoding": { + "name": "transcoding", + "description": "Media transcoding and streaming support", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "node-transcoding -- Media transcoding and streaming for node.js\n====================================\n\nnode-transcoding is a library for enabling both offline and real-time media\ntranscoding. In addition to enabling the manipulation of the input media,\nutilities are provided to ease serving of the output.\n\nCurrently supported features:\n\n* Nothing!\n\nComing soon (maybe):\n\n* Everything!\n\n## Quickstart\n\n npm install transcoding\n node\n > var transcoding = require('transcoding');\n > transcoding.process('input.flv', 'output.m4v',\n transcoding.profiles.APPLE_TV_2, function(err, sourceInfo, targetInfo) {\n console.log('completed!');\n });\n\n## Installation\n\nWith [npm](http://npmjs.org):\n\n npm install transcoding\n\nFrom source:\n\n cd ~\n git clone https://benvanik@github.com/benvanik/node-transcoding.git\n npm link node-transcoding/\n\n### Dependencies\n\nnode-transcoding requires `ffmpeg` and its libraries `avformat` and `avcodec`.\nMake sure it's installed and on your path. It must be compiled with libx264 to\nsupport most output - note that some distributions don't include this and you\nmay have to compile it yourself. Annoying, I know.\n\n#### Source\n\n ./configure \\\n --enable-gpl --enable-nonfree --enable-pthreads \\\n --enable-libfaac --enable-libfaad --enable-libmp3lame \\\n --enable-libx264\n sudo make install\n\n#### Mac OS X\n\nThe easiest way to get ffmpeg is via [MacPorts](http://macports.org).\nInstall it if needed and run the following from the command line:\n\n sudo port install ffmpeg +gpl +lame +x264 +xvid\n\nYou may also need to add the MacPorts paths to your `~./profile`:\n\n export C_INCLUDE_PATH=$C_INCLUDE_PATH:/opt/local/include/\n export CPLUS_INCLUDE_PATH=$CPLUS_INCLUDE_PATH:/opt/local/include/\n export LIBRARY_PATH=$LIBRARY_PATH:/opt/local/lib/\n\n#### FreeBSD\n\n sudo pkg_add ffmpeg\n\n#### Linux\n\n # HAHA YEAH RIGHT GOOD LUCK >_>\n sudo apt-get install ffmpeg\n\n## API\n\n### Sources/targets\n\nAll APIs take a source and target. Today these must be file paths that can be\naccessed by normal filesystem APIs. In the future they can be node streams, or\nin the case of sources HTTP or any other protocol node can open.\n\n### Media Information\n\nWhenever 'info' is used, it refers to a MediaInfo object that looks something\nlike this:\n\n {\n container: 'flv',\n duration: 126, // seconds\n start: 0, // seconds\n bitrate: 818000, // bits/sec\n streams: [\n {\n type: 'video',\n codec: 'h264',\n profile: 'Main',\n profileId: 77,\n profileLevel: 30,\n resolution: { width: 640, height: 360 },\n bitrate: 686000,\n fps: 29.97\n }, {\n type: 'audio',\n language: 'eng',\n codec: 'aac',\n sampleRate: 44100, // Hz\n channels: 2,\n bitrate: 131000\n }\n ]\n }\n\nNote that many of these fields are optional, such as bitrate, language, profile\ninformation, and even fps/duration. Don't go using the values without checking\nfor undefined first.\n\n### Querying Media Information\n\nTo quickly query media information (duration, codecs used, etc) use the\n`queryInfo` API:\n\n var transcoding = require('transcoding');\n transcoding.queryInfo(source, function(err, info) {\n // Completed\n });\n\n### Transcoding Profiles\n\nTranscoding requires a ton of parameters to get the best results. It's a pain in\nthe ass. So what's exposed right now is a profile set that tries to set the\nbest options for you. Pick your profile and pass it into the transcoding APIs.\n\n var transcoding = require('transcoding');\n for (var profileName in transcoding.profiles) {\n var profile = transcoding.profiles[profileName];\n console.log(profileName + ':' + util.inspect(profile));\n }\n\n### Simple Transcoding\n\nIf you are doing simple offline transcoding (no need for streaming, extra\noptions, progress updates, etc) then you can use the `process` API:\n\n var transcoding = require('transcoding');\n transcoding.process(source, target, transcoding.profiles.APPLE_TV_2, {}, function(err, sourceInfo, targetInfo) {\n // Completed\n });\n\nNote that this effectively just wraps the advanced API, without the need to\ntrack events.\n\n### Advanced Transcoding\n\n var transcoding = require('transcoding');\n var task = transcoding.createTask(source, target, transcoding.profiles.APPLE_TV_2);\n\n task.on('begin', function(sourceInfo, targetInfo) {\n // Transcoding beginning, info available\n console.log('transcoding beginning...');\n console.log('source:');\n console.log(util.inspect(sourceInfo));\n console.log('target:');\n console.log(util.inspect(targetInfo));\n });\n task.on('progress', function(progress) {\n // New progress made, currrently at timestamp out of duration\n // progress = {\n // timestamp: 0, // current seconds timestamp in the media\n // duration: 0, // total seconds in the media\n // timeElapsed: 0, // seconds elapsed so far\n // timeEstimated: 0, // seconds estimated for total task\n // timeRemaining: 0, // seconds remaining until done\n // timeMultiplier: 2 // multiples of real time the transcoding is\n // // occuring in (2 = 2x media time)\n // }\n console.log(util.inspect(progress));\n console.log('progress ' + (progress.timestamp / progress.duration) + '%');\n });\n task.on('error', function(err) {\n // Error occurred, transcoding ending\n console.log('error: ' + err);\n });\n task.on('end', function() {\n // Transcoding has completed\n console.log('finished');\n });\n\n // Start transcoding\n task.start();\n\n // At any time, abort transcoding\n task.stop();\n\n### HTTP Live Streaming\n\nIf you are targetting devices that support HTTP Live Streaming (like iOS), you\ncan have the transcoder build the output in realtime as it processes. This\nenables playback while the transcoding is occuring, as well as some other fancy\nthings such as client-side stream switching (changing audio channels/etc).\n\n // TODO: API for this... something like:\n // (where target is used as a base filename for all the extra stuff)\n var task = transcoding.createTask(source, target, profile, {\n streaming: {\n segmentDuration: 10,\n allowCaching: true\n }\n });\n", + "maintainers": [ + { + "name": "benvanik", + "email": "ben.vanik@gmail.com" + } + ], + "time": { + "modified": "2011-11-23T07:55:40.740Z", + "created": "2011-11-23T07:55:39.181Z", + "0.0.1": "2011-11-23T07:55:40.740Z" + }, + "author": { + "name": "Ben Vanik", + "email": "ben.vanik@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/benvanik/node-transcoding.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/transcoding/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "6ca5818952da67e994cb1b8a00c8cda8d31d792a", + "tarball": "http://registry.npmjs.org/transcoding/-/transcoding-0.0.1.tgz" + } + }, + "keywords": [ + "audio", + "video", + "media", + "transcode", + "transcoding", + "remux", + "streaming" + ], + "url": "http://registry.npmjs.org/transcoding/" + }, + "transformer": { + "name": "transformer", + "description": "Transformer Templating System", + "dist-tags": { + "latest": "0.0.7" + }, + "maintainers": [ + { + "name": "ckudige", + "email": "npm@kudige.com" + } + ], + "time": { + "modified": "2011-06-02T03:20:17.632Z", + "created": "2011-05-11T09:38:29.009Z", + "0.0.1": "2011-05-11T09:38:30.417Z", + "0.0.2": "2011-05-11T09:47:34.782Z", + "0.0.3": "2011-05-11T15:21:13.198Z", + "0.0.4": "2011-05-11T15:36:12.111Z", + "0.0.5": "2011-05-24T00:53:21.823Z", + "0.0.6": "2011-05-25T15:51:04.288Z", + "0.0.7": "2011-06-02T03:20:17.632Z" + }, + "repository": { + "type": "git", + "url": "git@github.com:kudige/transformer.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/transformer/0.0.1", + "0.0.2": "http://registry.npmjs.org/transformer/0.0.2", + "0.0.3": "http://registry.npmjs.org/transformer/0.0.3", + "0.0.4": "http://registry.npmjs.org/transformer/0.0.4", + "0.0.5": "http://registry.npmjs.org/transformer/0.0.5", + "0.0.6": "http://registry.npmjs.org/transformer/0.0.6", + "0.0.7": "http://registry.npmjs.org/transformer/0.0.7" + }, + "dist": { + "0.0.1": { + "shasum": "10fc8d0d8d1ad63914e75a7eb42bfa0c0c9242a3", + "tarball": "http://registry.npmjs.org/transformer/-/transformer-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "7ce7fc7117889d40fa53b204d01f4f0d01eff7a7", + "tarball": "http://registry.npmjs.org/transformer/-/transformer-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "11375982342fdc75e04eb2bcd21430d94c8b38ad", + "tarball": "http://registry.npmjs.org/transformer/-/transformer-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "5d68a1d9f5652da384149df5f49cdbda56a85db5", + "tarball": "http://registry.npmjs.org/transformer/-/transformer-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "ce209c1c94cd822a7975bc34097ff6668211abc5", + "tarball": "http://registry.npmjs.org/transformer/-/transformer-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "be19e4556c2364dac94434fc76cca5f1cc8895f1", + "tarball": "http://registry.npmjs.org/transformer/-/transformer-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "b75e98d220deb1cff5b388e690843d4fee80144b", + "tarball": "http://registry.npmjs.org/transformer/-/transformer-0.0.7.tgz" + } + }, + "keywords": [ + "transformer", + "template", + "smarty clone", + "html template" + ], + "url": "http://registry.npmjs.org/transformer/" + }, + "transformjs": { + "name": "transformjs", + "description": "Transforms JavaScript code.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "joehewitt", + "email": "joe@joehewitt.com" + } + ], + "time": { + "modified": "2011-07-31T01:29:16.568Z", + "created": "2011-07-25T22:47:47.263Z", + "0.0.1": "2011-07-25T22:47:47.966Z", + "0.0.2": "2011-07-31T01:29:16.568Z" + }, + "author": { + "name": "Joe Hewitt", + "email": "joe@joehewitt.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/joehewitt/transformjs.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/transformjs/0.0.1", + "0.0.2": "http://registry.npmjs.org/transformjs/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "300c2b44a3bda1eba4a78b0d1356aacbb66efd83", + "tarball": "http://registry.npmjs.org/transformjs/-/transformjs-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "fb63eaad0462e21f849ca9654b146ca16b38ad32", + "tarball": "http://registry.npmjs.org/transformjs/-/transformjs-0.0.2.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/transformjs/" + }, + "transfuse": { + "name": "transfuse", + "description": "transform json streams in-place", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": null, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-12-04T06:11:43.817Z", + "created": "2011-12-04T00:17:56.424Z", + "0.0.0": "2011-12-04T00:17:57.727Z", + "0.0.1": "2011-12-04T06:11:43.817Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-transfuse.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/transfuse/0.0.0", + "0.0.1": "http://registry.npmjs.org/transfuse/0.0.1" + }, + "dist": { + "0.0.0": { + "shasum": "16bd4c387f307594be74e75c01c398616c3cb415", + "tarball": "http://registry.npmjs.org/transfuse/-/transfuse-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "9873ac9ac8564fcdb7af86c6edb124909b0e6a1f", + "tarball": "http://registry.npmjs.org/transfuse/-/transfuse-0.0.1.tgz" + } + }, + "keywords": [ + "json", + "transform", + "stream" + ], + "url": "http://registry.npmjs.org/transfuse/" + }, + "transitive": { + "name": "transitive", + "description": "very rough version. please ignore", + "dist-tags": { + "latest": "0.0.0pre31" + }, + "maintainers": [ + { + "name": "aaronblohowiak", + "email": "aaron.blohowiak@gmail.com" + } + ], + "time": { + "modified": "2011-10-07T03:26:12.806Z", + "created": "2011-05-11T01:57:43.077Z", + "0.0.0pre2": "2011-05-11T01:57:43.473Z", + "0.0.0pre3": "2011-05-11T02:05:42.676Z", + "0.0.0pre4": "2011-05-12T06:29:11.020Z", + "0.0.0pre5": "2011-05-12T06:33:03.147Z", + "0.0.0pre6": "2011-05-12T06:39:32.982Z", + "0.0.0pre7": "2011-05-12T07:01:09.911Z", + "0.0.0pre8": "2011-05-12T07:06:26.582Z", + "0.0.0pre9": "2011-05-12T07:13:55.226Z", + "0.0.0pre10": "2011-05-12T07:25:07.146Z", + "0.0.0pre11": "2011-05-12T07:40:05.265Z", + "0.0.0pre12": "2011-05-12T07:52:20.819Z", + "0.0.0pre13": "2011-05-15T18:00:57.697Z", + "0.0.0pre15": "2011-06-18T19:54:24.121Z", + "0.0.0pre16": "2011-06-18T19:56:14.612Z", + "0.0.0pre19": "2011-06-18T21:44:28.016Z", + "0.0.0pre20": "2011-07-16T21:50:23.632Z", + "0.0.0pre22": "2011-08-18T07:05:51.629Z", + "0.0.0pre23": "2011-08-27T03:43:48.652Z", + "0.0.0pre25": "2011-09-16T08:54:07.483Z", + "0.0.0pre26": "2011-09-16T08:55:33.955Z", + "0.0.0pre28": "2011-09-16T23:49:57.102Z", + "0.0.0pre29": "2011-10-02T18:58:33.239Z", + "0.0.0pre30": "2011-10-03T09:53:44.580Z", + "0.0.0pre31": "2011-10-07T03:26:12.806Z" + }, + "author": { + "name": "Aaron Blohowiak", + "email": "aaron.blohowiak@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Transitive/Transitive.git" + }, + "versions": { + "0.0.0pre2": "http://registry.npmjs.org/transitive/0.0.0pre2", + "0.0.0pre3": "http://registry.npmjs.org/transitive/0.0.0pre3", + "0.0.0pre4": "http://registry.npmjs.org/transitive/0.0.0pre4", + "0.0.0pre5": "http://registry.npmjs.org/transitive/0.0.0pre5", + "0.0.0pre6": "http://registry.npmjs.org/transitive/0.0.0pre6", + "0.0.0pre7": "http://registry.npmjs.org/transitive/0.0.0pre7", + "0.0.0pre8": "http://registry.npmjs.org/transitive/0.0.0pre8", + "0.0.0pre9": "http://registry.npmjs.org/transitive/0.0.0pre9", + "0.0.0pre10": "http://registry.npmjs.org/transitive/0.0.0pre10", + "0.0.0pre11": "http://registry.npmjs.org/transitive/0.0.0pre11", + "0.0.0pre12": "http://registry.npmjs.org/transitive/0.0.0pre12", + "0.0.0pre13": "http://registry.npmjs.org/transitive/0.0.0pre13", + "0.0.0pre15": "http://registry.npmjs.org/transitive/0.0.0pre15", + "0.0.0pre16": "http://registry.npmjs.org/transitive/0.0.0pre16", + "0.0.0pre19": "http://registry.npmjs.org/transitive/0.0.0pre19", + "0.0.0pre20": "http://registry.npmjs.org/transitive/0.0.0pre20", + "0.0.0pre22": "http://registry.npmjs.org/transitive/0.0.0pre22", + "0.0.0pre23": "http://registry.npmjs.org/transitive/0.0.0pre23", + "0.0.0pre25": "http://registry.npmjs.org/transitive/0.0.0pre25", + "0.0.0pre26": "http://registry.npmjs.org/transitive/0.0.0pre26", + "0.0.0pre28": "http://registry.npmjs.org/transitive/0.0.0pre28", + "0.0.0pre29": "http://registry.npmjs.org/transitive/0.0.0pre29", + "0.0.0pre30": "http://registry.npmjs.org/transitive/0.0.0pre30", + "0.0.0pre31": "http://registry.npmjs.org/transitive/0.0.0pre31" + }, + "dist": { + "0.0.0pre2": { + "shasum": "c16c7a37340735e50035259b0c1110db0dd60261", + "tarball": "http://registry.npmjs.org/transitive/-/transitive-0.0.0pre2.tgz" + }, + "0.0.0pre3": { + "shasum": "08e0113a00a31cb328f0ee10d6610510e8facf70", + "tarball": "http://registry.npmjs.org/transitive/-/transitive-0.0.0pre3.tgz" + }, + "0.0.0pre4": { + "shasum": "52000fb26aee0e8febf24abccb416c44e886bd41", + "tarball": "http://registry.npmjs.org/transitive/-/transitive-0.0.0pre4.tgz" + }, + "0.0.0pre5": { + "shasum": "e51999add9ca956774ec161b64f5441843101c11", + "tarball": "http://registry.npmjs.org/transitive/-/transitive-0.0.0pre5.tgz" + }, + "0.0.0pre6": { + "shasum": "1cec7ebfafa2a30f19c161b25f74694a06032d6e", + "tarball": "http://registry.npmjs.org/transitive/-/transitive-0.0.0pre6.tgz" + }, + "0.0.0pre7": { + "shasum": "0b3b93345255887f7ea908c0a205e41c113bc35b", + "tarball": "http://registry.npmjs.org/transitive/-/transitive-0.0.0pre7.tgz" + }, + "0.0.0pre8": { + "shasum": "86bb24d7d397bf0aa150f5f476b628ed9c3add99", + "tarball": "http://registry.npmjs.org/transitive/-/transitive-0.0.0pre8.tgz" + }, + "0.0.0pre9": { + "shasum": "5cf7a63222a3075dfd6e88e7b039a1a2c09bf353", + "tarball": "http://registry.npmjs.org/transitive/-/transitive-0.0.0pre9.tgz" + }, + "0.0.0pre10": { + "shasum": "04117b6019c93b026821faea5fcd715d532c50d4", + "tarball": "http://registry.npmjs.org/transitive/-/transitive-0.0.0pre10.tgz" + }, + "0.0.0pre11": { + "shasum": "1e078da31261ca537aed4c7d8083eeec4b4f09b6", + "tarball": "http://registry.npmjs.org/transitive/-/transitive-0.0.0pre11.tgz" + }, + "0.0.0pre12": { + "shasum": "e0bfa97eff0353db6dc3697973db9459efbafd5e", + "tarball": "http://registry.npmjs.org/transitive/-/transitive-0.0.0pre12.tgz" + }, + "0.0.0pre13": { + "shasum": "b83aa1db198504f9563b386fe58b9684839441f2", + "tarball": "http://registry.npmjs.org/transitive/-/transitive-0.0.0pre13.tgz" + }, + "0.0.0pre15": { + "shasum": "59af51e58617beff9391e07a5034966109f8c226", + "tarball": "http://registry.npmjs.org/transitive/-/transitive-0.0.0pre15.tgz" + }, + "0.0.0pre16": { + "shasum": "5c23beabe295252585ff37ae01735ebdda5f8487", + "tarball": "http://registry.npmjs.org/transitive/-/transitive-0.0.0pre16.tgz" + }, + "0.0.0pre19": { + "shasum": "9272992f7c8420fbad2f315fbee679c1e2dd2a67", + "tarball": "http://registry.npmjs.org/transitive/-/transitive-0.0.0pre19.tgz" + }, + "0.0.0pre20": { + "shasum": "47cb4955c9262a203a47c5cb9e0ae885c0b623e5", + "tarball": "http://registry.npmjs.org/transitive/-/transitive-0.0.0pre20.tgz" + }, + "0.0.0pre22": { + "shasum": "81f239fc0786a62638352134617c41d523320532", + "tarball": "http://registry.npmjs.org/transitive/-/transitive-0.0.0pre22.tgz" + }, + "0.0.0pre23": { + "shasum": "59b77b830f62614713c022cd24c9cec94ac9bab0", + "tarball": "http://registry.npmjs.org/transitive/-/transitive-0.0.0pre23.tgz" + }, + "0.0.0pre25": { + "shasum": "fbe0f7e158b0c2e01dad1a3bb5dbfa24dd6401cf", + "tarball": "http://registry.npmjs.org/transitive/-/transitive-0.0.0pre25.tgz" + }, + "0.0.0pre26": { + "shasum": "8d572d35325c0777b9db28aa9ebe1b5bab084795", + "tarball": "http://registry.npmjs.org/transitive/-/transitive-0.0.0pre26.tgz" + }, + "0.0.0pre28": { + "shasum": "fe6b0366ad100757a354a48b469b0cd4ed9c0d9b", + "tarball": "http://registry.npmjs.org/transitive/-/transitive-0.0.0pre28.tgz" + }, + "0.0.0pre29": { + "shasum": "cc2558192e4f9e1a4153b8be118c52ed6aeba48d", + "tarball": "http://registry.npmjs.org/transitive/-/transitive-0.0.0pre29.tgz" + }, + "0.0.0pre30": { + "shasum": "83621975ffc2db00555b2c22c52e77268cd1e515", + "tarball": "http://registry.npmjs.org/transitive/-/transitive-0.0.0pre30.tgz" + }, + "0.0.0pre31": { + "shasum": "af16bb250258b8ab3b07a15f5ceef05113ae7f74", + "tarball": "http://registry.npmjs.org/transitive/-/transitive-0.0.0pre31.tgz" + } + }, + "url": "http://registry.npmjs.org/transitive/" + }, + "translate": { + "name": "translate", + "description": "translate text from one language to another on node.js and the browser. 30+ languages supported, simple as cake.", + "dist-tags": { + "latest": "0.7.0" + }, + "maintainers": [ + { + "name": "marak", + "email": "marak.squires@gmail.com" + } + ], + "author": { + "name": "Marak Squires" + }, + "repository": { + "type": "git", + "url": "git://github.com/Marak/translate.js.git" + }, + "time": { + "modified": "2011-04-05T23:00:21.074Z", + "created": "2011-01-25T03:37:22.923Z", + "0.1.0": "2011-01-25T03:37:22.923Z", + "0.3.3": "2011-01-25T03:37:22.923Z", + "0.6.0": "2011-01-25T03:37:22.923Z", + "0.7.0": "2011-04-05T23:00:21.074Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/translate/0.1.0", + "0.3.3": "http://registry.npmjs.org/translate/0.3.3", + "0.6.0": "http://registry.npmjs.org/translate/0.6.0", + "0.7.0": "http://registry.npmjs.org/translate/0.7.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/translate/-/translate-0.1.0.tgz" + }, + "0.3.3": { + "tarball": "http://packages:5984/translate/-/translate-0.3.3.tgz" + }, + "0.6.0": { + "shasum": "5c5ef2a936384d64162c8a249b5bdb157dfdfc90", + "tarball": "http://registry.npmjs.org/translate/-/translate-0.6.0.tgz" + }, + "0.7.0": { + "shasum": "f94f053da98cef3fe93acf5ce8d027c3d65e0e4d", + "tarball": "http://registry.npmjs.org/translate/-/translate-0.7.0.tgz" + } + }, + "url": "http://registry.npmjs.org/translate/" + }, + "transliteration.ua": { + "name": "transliteration.ua", + "description": "Transliteration library for Ukrainian words (cyrillic to latin)", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "podviaznikov", + "email": "podviaznikov@gmail.com" + } + ], + "time": { + "modified": "2011-07-18T11:07:07.350Z", + "created": "2011-07-18T11:07:06.080Z", + "1.0.0": "2011-07-18T11:07:07.350Z" + }, + "author": { + "name": "Anton Podviaznikov", + "email": "podviaznikov@gmail.com" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/transliteration.ua/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "9ee4040525f5e7b16f0ac84ead6d65194d0824c9", + "tarball": "http://registry.npmjs.org/transliteration.ua/-/transliteration.ua-1.0.0.tgz" + } + }, + "keywords": [ + "transliteration", + "ukrainian" + ], + "url": "http://registry.npmjs.org/transliteration.ua/" + }, + "transmission": { + "name": "transmission", + "description": "API client for transmissionbt", + "dist-tags": { + "latest": "0.0.1a" + }, + "maintainers": [ + { + "name": "flybyme", + "email": "price.timmy@gmail.com" + } + ], + "time": { + "modified": "2011-07-30T18:19:34.052Z", + "created": "2011-07-30T18:15:15.934Z", + "0.0.1": "2011-07-30T18:15:16.261Z", + "0.0.1a": "2011-07-30T18:18:51.455Z" + }, + "author": { + "name": "Tim", + "email": "flybyme@wiyc.info" + }, + "repository": { + "type": "git", + "url": "git://github.com/FLYBYME/node-transmission.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/transmission/0.0.1", + "0.0.1a": "http://registry.npmjs.org/transmission/0.0.1a" + }, + "dist": { + "0.0.1": { + "shasum": "99b107d843fdc8846ebabde03937ef2c1e7e20b7", + "tarball": "http://registry.npmjs.org/transmission/-/transmission-0.0.1.tgz" + }, + "0.0.1a": { + "shasum": "831877a18f9bf9b7502668ff5e1819e21fd4ccef", + "tarball": "http://registry.npmjs.org/transmission/-/transmission-0.0.1a.tgz" + } + }, + "url": "http://registry.npmjs.org/transmission/" + }, + "transmogrify": { + "name": "transmogrify", + "description": "Compile your coffeescripts and minify your javascripts with a webservice", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "mrkurt", + "email": "kurt@mubble.net" + } + ], + "time": { + "modified": "2011-02-25T17:06:32.907Z", + "created": "2011-02-24T23:52:55.992Z", + "0.1.0": "2011-02-24T23:52:56.137Z", + "0.1.1": "2011-02-25T17:06:32.907Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/mrkurt/transmogrify.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/transmogrify/0.1.0", + "0.1.1": "http://registry.npmjs.org/transmogrify/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "d228c196bbc3ddd7a1c3f98b2c2b183868cf8da4", + "tarball": "http://registry.npmjs.org/transmogrify/-/transmogrify-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "9bef5d220ae7c743b41a71418d68a355d3b811a9", + "tarball": "http://registry.npmjs.org/transmogrify/-/transmogrify-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/transmogrify/" + }, + "transporter": { + "name": "transporter", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "nathan", + "email": "nrstott@gmail.com" + } + ], + "author": { + "name": "Kris Zyp" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/transporter/0.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/transporter/-/transporter-0.0.1.tgz" + } + }, + "keywords": [ + "module", + "transport" + ], + "url": "http://registry.npmjs.org/transporter/" + }, + "traverse": { + "name": "traverse", + "description": "Traverse and transform objects by visiting every node on a recursive walk", + "dist-tags": { + "latest": "0.5.2" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "author": { + "name": "James Halliday" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/js-traverse.git" + }, + "time": { + "modified": "2011-10-16T10:34:56.862Z", + "created": "2011-02-03T11:29:55.497Z", + "0.1.2": "2011-02-03T11:29:55.497Z", + "0.1.3": "2011-02-03T11:29:55.497Z", + "0.2.0": "2011-02-03T11:29:55.497Z", + "0.2.1": "2011-02-03T11:29:55.497Z", + "0.2.2": "2011-02-03T11:29:55.497Z", + "0.2.3": "2011-02-03T11:29:55.497Z", + "0.2.4": "2011-02-03T11:29:55.497Z", + "0.3.0": "2011-02-18T12:27:57.800Z", + "0.3.1": "2011-02-19T00:38:39.744Z", + "0.2.5": "2011-02-19T00:47:01.323Z", + "0.2.6": "2011-02-21T03:51:44.195Z", + "0.3.2": "2011-04-10T09:21:37.669Z", + "0.3.3": "2011-04-15T08:39:12.893Z", + "0.3.4": "2011-04-17T02:51:02.989Z", + "0.3.5": "2011-05-29T01:21:03.986Z", + "0.3.6": "2011-06-03T08:15:23.466Z", + "0.3.7": "2011-06-06T04:29:19.831Z", + "0.3.8": "2011-06-07T06:53:50.488Z", + "0.4.0": "2011-06-11T00:04:01.061Z", + "0.4.1": "2011-06-11T03:56:58.839Z", + "0.4.2": "2011-06-11T07:09:48.273Z", + "0.3.9": "2011-06-15T05:24:38.007Z", + "0.4.3": "2011-06-15T05:28:21.739Z", + "0.4.4": "2011-07-20T10:02:05.346Z", + "0.4.5": "2011-07-24T22:53:13.891Z", + "0.4.6": "2011-07-28T06:19:05.356Z", + "0.5.0": "2011-08-23T12:51:28.029Z", + "0.5.1": "2011-08-23T13:26:49.780Z", + "0.5.2": "2011-10-16T10:34:56.862Z" + }, + "versions": { + "0.1.2": "http://registry.npmjs.org/traverse/0.1.2", + "0.1.3": "http://registry.npmjs.org/traverse/0.1.3", + "0.2.0": "http://registry.npmjs.org/traverse/0.2.0", + "0.2.1": "http://registry.npmjs.org/traverse/0.2.1", + "0.2.2": "http://registry.npmjs.org/traverse/0.2.2", + "0.2.3": "http://registry.npmjs.org/traverse/0.2.3", + "0.2.4": "http://registry.npmjs.org/traverse/0.2.4", + "0.3.0": "http://registry.npmjs.org/traverse/0.3.0", + "0.3.1": "http://registry.npmjs.org/traverse/0.3.1", + "0.2.5": "http://registry.npmjs.org/traverse/0.2.5", + "0.2.6": "http://registry.npmjs.org/traverse/0.2.6", + "0.3.2": "http://registry.npmjs.org/traverse/0.3.2", + "0.3.3": "http://registry.npmjs.org/traverse/0.3.3", + "0.3.4": "http://registry.npmjs.org/traverse/0.3.4", + "0.3.5": "http://registry.npmjs.org/traverse/0.3.5", + "0.3.6": "http://registry.npmjs.org/traverse/0.3.6", + "0.3.7": "http://registry.npmjs.org/traverse/0.3.7", + "0.3.8": "http://registry.npmjs.org/traverse/0.3.8", + "0.4.0": "http://registry.npmjs.org/traverse/0.4.0", + "0.4.1": "http://registry.npmjs.org/traverse/0.4.1", + "0.4.2": "http://registry.npmjs.org/traverse/0.4.2", + "0.3.9": "http://registry.npmjs.org/traverse/0.3.9", + "0.4.3": "http://registry.npmjs.org/traverse/0.4.3", + "0.4.4": "http://registry.npmjs.org/traverse/0.4.4", + "0.4.5": "http://registry.npmjs.org/traverse/0.4.5", + "0.4.6": "http://registry.npmjs.org/traverse/0.4.6", + "0.5.0": "http://registry.npmjs.org/traverse/0.5.0", + "0.5.1": "http://registry.npmjs.org/traverse/0.5.1", + "0.5.2": "http://registry.npmjs.org/traverse/0.5.2" + }, + "dist": { + "0.1.2": { + "tarball": "http://packages:5984/traverse/-/traverse-0.1.2.tgz" + }, + "0.1.3": { + "tarball": "http://packages:5984/traverse/-/traverse-0.1.3.tgz" + }, + "0.2.0": { + "tarball": "http://packages:5984/traverse/-/traverse-0.2.0.tgz" + }, + "0.2.1": { + "tarball": "http://packages:5984/traverse/-/traverse-0.2.1.tgz" + }, + "0.2.2": { + "tarball": "http://packages:5984/traverse/-/traverse-0.2.2.tgz" + }, + "0.2.3": { + "tarball": "http://registry.npmjs.org/traverse/-/traverse-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "8ce26dcecdb8401e197db6b79f557d41ff898917", + "tarball": "http://registry.npmjs.org/traverse/-/traverse-0.2.4.tgz" + }, + "0.3.0": { + "shasum": "cf49d694be787895764607e6c65586fda9202366", + "tarball": "http://registry.npmjs.org/traverse/-/traverse-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "4d8c76ebf82b63656905cea66c4d817ec0020573", + "tarball": "http://registry.npmjs.org/traverse/-/traverse-0.3.1.tgz" + }, + "0.2.5": { + "shasum": "7eb267f28142261324999aa7e9b2f40d04dd1d7b", + "tarball": "http://registry.npmjs.org/traverse/-/traverse-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "961cb5e4c324fe548d213ea0a9997093f26f8bfb", + "tarball": "http://registry.npmjs.org/traverse/-/traverse-0.2.6.tgz" + }, + "0.3.2": { + "shasum": "24fc47fde29b1a2a74a0483b2a7b0d9f5ec70560", + "tarball": "http://registry.npmjs.org/traverse/-/traverse-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "40d9f3d038438fc39f3fc8fafdbf216cc60bd7d9", + "tarball": "http://registry.npmjs.org/traverse/-/traverse-0.3.3.tgz" + }, + "0.3.4": { + "shasum": "6a56ac6db2f02d27ace34ed22c44827dd5dad948", + "tarball": "http://registry.npmjs.org/traverse/-/traverse-0.3.4.tgz" + }, + "0.3.5": { + "shasum": "7c81e038211f351bb6002e3b5a1477f7cdbf3ed6", + "tarball": "http://registry.npmjs.org/traverse/-/traverse-0.3.5.tgz" + }, + "0.3.6": { + "shasum": "b301ca2b08764718b762e7fa118aa0ab88b2b9c8", + "tarball": "http://registry.npmjs.org/traverse/-/traverse-0.3.6.tgz" + }, + "0.3.7": { + "shasum": "0ac64e98b93317b437e13bea05dd7581af3830ce", + "tarball": "http://registry.npmjs.org/traverse/-/traverse-0.3.7.tgz" + }, + "0.3.8": { + "shasum": "40a43ed5d7a1fbb662327a97dc5e5be570a2f032", + "tarball": "http://registry.npmjs.org/traverse/-/traverse-0.3.8.tgz" + }, + "0.4.0": { + "shasum": "3abf25482c032ae80808b609fb4ee8883156ab19", + "tarball": "http://registry.npmjs.org/traverse/-/traverse-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "d119a3a401828cdc03080ab7333dfb307360e2cc", + "tarball": "http://registry.npmjs.org/traverse/-/traverse-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "f3af4583aa4f42b6082f1e020fd155200238bd0f", + "tarball": "http://registry.npmjs.org/traverse/-/traverse-0.4.2.tgz" + }, + "0.3.9": { + "shasum": "717b8f220cc0bb7b44e40514c22b2e8bbc70d8b9", + "tarball": "http://registry.npmjs.org/traverse/-/traverse-0.3.9.tgz" + }, + "0.4.3": { + "shasum": "316577b95481c1eadfbc3804aedd83cbef60baf5", + "tarball": "http://registry.npmjs.org/traverse/-/traverse-0.4.3.tgz" + }, + "0.4.4": { + "shasum": "865f7e69ab8e64504d3080c32bb455a947690961", + "tarball": "http://registry.npmjs.org/traverse/-/traverse-0.4.4.tgz" + }, + "0.4.5": { + "shasum": "325226aec754d71e4a49d6a091e58c1e6a169ee8", + "tarball": "http://registry.npmjs.org/traverse/-/traverse-0.4.5.tgz" + }, + "0.4.6": { + "shasum": "d04b2280e4c792a5815429ef7b8b60c64c9ccc34", + "tarball": "http://registry.npmjs.org/traverse/-/traverse-0.4.6.tgz" + }, + "0.5.0": { + "shasum": "ca057be9bb7e25d3fdf305a34382cd33276dd2f7", + "tarball": "http://registry.npmjs.org/traverse/-/traverse-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "8b766f822404f401acc7572bc9975b218b9f0a37", + "tarball": "http://registry.npmjs.org/traverse/-/traverse-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "e203c58d5f7f0e37db6e74c0acb929bb09b61d85", + "tarball": "http://registry.npmjs.org/traverse/-/traverse-0.5.2.tgz" + } + }, + "url": "http://registry.npmjs.org/traverse/" + }, + "traverser": { + "name": "traverser", + "description": "lib for traversing trees and graphs", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-06-25T16:27:48.336Z", + "created": "2011-02-07T11:07:09.785Z", + "0.0.0": "2011-02-07T11:07:10.532Z", + "0.0.1": "2011-02-07T11:08:18.951Z", + "0.0.2-1": "2011-05-24T06:25:56.241Z", + "0.0.2-2": "2011-05-24T16:59:26.419Z", + "1.0.0": "2011-06-25T16:27:48.336Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dominictarr/traverser.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/traverser/0.0.0", + "0.0.1": "http://registry.npmjs.org/traverser/0.0.1", + "0.0.2-1": "http://registry.npmjs.org/traverser/0.0.2-1", + "0.0.2-2": "http://registry.npmjs.org/traverser/0.0.2-2", + "1.0.0": "http://registry.npmjs.org/traverser/1.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "b828dad6d39834b9e8880659f7ba22a4d68fe864", + "tarball": "http://registry.npmjs.org/traverser/-/traverser-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "0cb72bf7a68291d1c960979bf75fae62c497d34a", + "tarball": "http://registry.npmjs.org/traverser/-/traverser-0.0.1.tgz" + }, + "0.0.2-1": { + "shasum": "2cfd45b2040f37f887c2ff9c265dda27393ad49b", + "tarball": "http://registry.npmjs.org/traverser/-/traverser-0.0.2-1.tgz" + }, + "0.0.2-2": { + "shasum": "8945eb79410c008730694dc58fec96f09470c1ff", + "tarball": "http://registry.npmjs.org/traverser/-/traverser-0.0.2-2.tgz" + }, + "1.0.0": { + "shasum": "6f59e5813759aeeab3646b8f4513fd4a62e4fe20", + "tarball": "http://registry.npmjs.org/traverser/-/traverser-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/traverser/" + }, + "travis-ci": { + "name": "travis-ci", + "description": "Thin wrapper around Travis CI API", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "# node-travis-ci\nCopyright (C) 2011 by Maciej Małecki \nMIT License (see LICENSE file)\n\n**travis-ci** is a thin wrapper around [Travis CI](http://travis-ci.org) [API](http://about.travis-ci.org/docs/dev/api/).\n\n## Installation\n\n npm install travis-ci\n\n", + "maintainers": [ + { + "name": "mmalecki", + "email": "maciej.malecki@notimplemented.org" + } + ], + "time": { + "modified": "2011-11-21T23:35:04.479Z", + "created": "2011-11-21T23:35:02.606Z", + "0.0.1": "2011-11-21T23:35:04.479Z" + }, + "author": { + "name": "Maciej Małecki", + "email": "maciej.malecki@notimplemented.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/mmalecki/node-travis-ci.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/travis-ci/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "19a69c360c7ad8564d170f156d2fbd2aba6fa098", + "tarball": "http://registry.npmjs.org/travis-ci/-/travis-ci-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/travis-ci/" + }, + "tree": { + "name": "tree", + "description": "A JavaScript library for creating and manipulating hierarchical tree structures.", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "scttnlsn", + "email": "scottbnel@gmail.com" + } + ], + "time": { + "modified": "2011-10-12T20:10:09.583Z", + "created": "2011-10-06T03:40:37.737Z", + "0.1.0": "2011-10-06T03:41:00.844Z", + "0.1.1": "2011-10-06T03:51:45.235Z", + "0.1.2": "2011-10-12T20:10:09.584Z" + }, + "author": { + "name": "Scott Nelson", + "email": "scottbnel@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/tree/0.1.0", + "0.1.1": "http://registry.npmjs.org/tree/0.1.1", + "0.1.2": "http://registry.npmjs.org/tree/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "ee19e861e184a525400e00e3494ff76e63ba1ac3", + "tarball": "http://registry.npmjs.org/tree/-/tree-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "0a1bda1c51d2d8c044f681faf11efb15e3301c9b", + "tarball": "http://registry.npmjs.org/tree/-/tree-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "d1a380b0dda91e2d939d0c04cd58ae71bdb39146", + "tarball": "http://registry.npmjs.org/tree/-/tree-0.1.2.tgz" + } + }, + "keywords": [ + "util", + "client", + "browser", + "server" + ], + "url": "http://registry.npmjs.org/tree/" + }, + "treeeater": { + "name": "treeeater", + "description": "useing git with focus on fun or something like that!", + "dist-tags": { + "latest": "0.96875.2" + }, + "maintainers": [ + { + "name": "payload", + "email": "payload@lavabit.com" + } + ], + "time": { + "modified": "2011-11-14T21:43:36.383Z", + "created": "2011-05-30T00:05:50.903Z", + "0.5.0": "2011-05-30T00:05:51.553Z", + "0.5.1": "2011-06-04T19:02:22.517Z", + "0.75.0": "2011-06-06T19:51:33.314Z", + "0.875.0": "2011-06-08T23:10:48.776Z", + "0.9375.0": "2011-06-19T12:43:34.281Z", + "0.96875.0": "2011-08-20T19:14:30.026Z", + "0.96875.1": "2011-08-22T20:09:52.769Z", + "0.96875.2": "2011-08-23T00:02:59.354Z" + }, + "author": { + "name": "payload" + }, + "repository": { + "type": "git", + "url": "git://github.com/payload/node-treeeater.git" + }, + "users": { + "astro": true + }, + "versions": { + "0.5.0": "http://registry.npmjs.org/treeeater/0.5.0", + "0.5.1": "http://registry.npmjs.org/treeeater/0.5.1", + "0.75.0": "http://registry.npmjs.org/treeeater/0.75.0", + "0.875.0": "http://registry.npmjs.org/treeeater/0.875.0", + "0.9375.0": "http://registry.npmjs.org/treeeater/0.9375.0", + "0.96875.0": "http://registry.npmjs.org/treeeater/0.96875.0", + "0.96875.1": "http://registry.npmjs.org/treeeater/0.96875.1", + "0.96875.2": "http://registry.npmjs.org/treeeater/0.96875.2" + }, + "dist": { + "0.5.0": { + "shasum": "6231614b760d435cd3f81071708c09b28741538e", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.16-linux-2.6.35-28-generic": { + "shasum": "d7a6950b9390598b86e7efaee8ded6f4774cf4ac", + "tarball": "http://registry.npmjs.org/treeeater/-/treeeater-0.5.0-0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.16-linux-2.6.35-28-generic.tgz" + } + }, + "tarball": "http://registry.npmjs.org/treeeater/-/treeeater-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "a314a5a93a189366128b1b63f2feda0e5e741d5a", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.16-linux-2.6.35-28-generic": { + "shasum": "754300c5d8edde5f3916c9dfc18fbdd0eca97dcc", + "tarball": "http://registry.npmjs.org/treeeater/-/treeeater-0.5.1-0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.16-linux-2.6.35-28-generic.tgz" + } + }, + "tarball": "http://registry.npmjs.org/treeeater/-/treeeater-0.5.1.tgz" + }, + "0.75.0": { + "shasum": "1c25e8c88b0ca9b680c890dda4d0096f03347eb8", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.16-linux-2.6.35-28-generic": { + "shasum": "b732701ff72649238a412ad98426660fc3f7435a", + "tarball": "http://registry.npmjs.org/treeeater/-/treeeater-0.75.0-0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.16-linux-2.6.35-28-generic.tgz" + } + }, + "tarball": "http://registry.npmjs.org/treeeater/-/treeeater-0.75.0.tgz" + }, + "0.875.0": { + "shasum": "576bf3d4846f482693c49948116315283c034d7d", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.16-linux-2.6.35-28-generic": { + "shasum": "38fdb7c40f070cef006bc31e4505a0add6e0c2cd", + "tarball": "http://registry.npmjs.org/treeeater/-/treeeater-0.875.0-0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.16-linux-2.6.35-28-generic.tgz" + } + }, + "tarball": "http://registry.npmjs.org/treeeater/-/treeeater-0.875.0.tgz" + }, + "0.9375.0": { + "shasum": "caf592e4ac3f75bee9c671d9abb8cfae2b1a4537", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.16-linux-2.6.35-28-generic": { + "shasum": "7ac77b8101ff6a17b9907efb6e3734c195d6554e", + "tarball": "http://registry.npmjs.org/treeeater/-/treeeater-0.9375.0-0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.16-linux-2.6.35-28-generic.tgz" + } + }, + "tarball": "http://registry.npmjs.org/treeeater/-/treeeater-0.9375.0.tgz" + }, + "0.96875.0": { + "shasum": "36baf5b962d842f41cd47ea58a8b50ae1e395e93", + "tarball": "http://registry.npmjs.org/treeeater/-/treeeater-0.96875.0.tgz" + }, + "0.96875.1": { + "shasum": "bb656f1eff193e57cf35c3525a70b9e0c5171b70", + "tarball": "http://registry.npmjs.org/treeeater/-/treeeater-0.96875.1.tgz" + }, + "0.96875.2": { + "shasum": "5a55dc2f686b88c9fc7e8b0c807c010450e35009", + "tarball": "http://registry.npmjs.org/treeeater/-/treeeater-0.96875.2.tgz" + } + }, + "keywords": [ + "git" + ], + "url": "http://registry.npmjs.org/treeeater/" + }, + "treelib": { + "name": "treelib", + "description": "create trees as simple as path('a/b/c')!", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "rook2pawn", + "email": "rook2pawn@gmail.com" + } + ], + "time": { + "modified": "2011-07-27T08:15:18.972Z", + "created": "2011-07-25T14:36:21.466Z", + "0.0.1": "2011-07-25T14:36:22.375Z", + "0.0.2": "2011-07-25T14:50:50.857Z", + "0.0.3": "2011-07-27T05:46:19.476Z", + "0.0.4": "2011-07-27T08:08:55.310Z" + }, + "author": { + "name": "David Wee", + "email": "rook2pawn@gmail.com", + "url": "http://rook2pawn.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/rook2pawn/node-treelib.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/treelib/0.0.1", + "0.0.2": "http://registry.npmjs.org/treelib/0.0.2", + "0.0.3": "http://registry.npmjs.org/treelib/0.0.3", + "0.0.4": "http://registry.npmjs.org/treelib/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "b5f0589a10bbe12efbaefd32f18b17fe0792cb82", + "tarball": "http://registry.npmjs.org/treelib/-/treelib-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "2476a3ea9f7b6db3c7a4b7e5e4669fc919053095", + "tarball": "http://registry.npmjs.org/treelib/-/treelib-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "1313adced2e0b288fe887955d5849fb2a61cfb35", + "tarball": "http://registry.npmjs.org/treelib/-/treelib-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "5a102c469b90198e38724ba1a6126cd5a227a887", + "tarball": "http://registry.npmjs.org/treelib/-/treelib-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/treelib/" + }, + "trees": { + "name": "trees", + "description": "library of handy tree and graph functions", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-12-08T12:01:56.768Z", + "created": "2011-02-19T09:27:47.759Z", + "0.0.2": "2011-12-08T12:01:56.768Z", + "0.0.3": "2011-12-08T12:01:56.768Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dominictarr/trees.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/trees/0.0.2", + "0.0.3": "http://registry.npmjs.org/trees/0.0.3" + }, + "dist": { + "0.0.2": { + "shasum": "6b563c09a3572e86a89b2c122332472b1a33265e", + "tarball": "http://registry.npmjs.org/trees/-/trees-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "880f478fee8e7320772ff90c1de55978dcc82e9f", + "tarball": "http://registry.npmjs.org/trees/-/trees-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/trees/" + }, + "trentm-datetime": { + "name": "trentm-datetime", + "description": "Date and time formatting (a fork to publish fixes to npm)", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "trentm", + "email": "trentm@gmail.com" + } + ], + "time": { + "modified": "2011-07-30T05:11:11.212Z", + "created": "2011-07-30T05:11:10.615Z", + "0.0.3": "2011-07-30T05:11:11.212Z" + }, + "author": { + "name": "Joe Hewitt", + "email": "joe@joehewitt.com" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/trentm-datetime/0.0.3" + }, + "dist": { + "0.0.3": { + "shasum": "0a28b79a8f52d3b98fb521263daa3f33c4c9a89b", + "tarball": "http://registry.npmjs.org/trentm-datetime/-/trentm-datetime-0.0.3.tgz" + } + }, + "keywords": [ + "date", + "time" + ], + "url": "http://registry.npmjs.org/trentm-datetime/" + }, + "trentm-git": { + "name": "trentm-git", + "description": "A node.js library for git (a fork to publish some fixes to npm)", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "trentm", + "email": "trentm@gmail.com" + } + ], + "time": { + "modified": "2011-07-24T04:21:12.346Z", + "created": "2011-07-24T04:21:11.645Z", + "0.1.3": "2011-07-24T04:21:12.346Z" + }, + "author": { + "name": "Christian Amor Kvalheim", + "email": "christkv@gmail.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:trentm/node-git.git" + }, + "versions": { + "0.1.3": "http://registry.npmjs.org/trentm-git/0.1.3" + }, + "dist": { + "0.1.3": { + "shasum": "b9faf2c5c644955a76975e1af5ce8ab0cddf2062", + "tarball": "http://registry.npmjs.org/trentm-git/-/trentm-git-0.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/trentm-git/" + }, + "trentm-hashlib": { + "name": "trentm-hashlib", + "description": "lib for node which makes hashes (a fork to publish some fixes to npm)", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "trentm", + "email": "trentm@gmail.com" + } + ], + "time": { + "modified": "2011-07-23T07:06:30.567Z", + "created": "2011-07-23T07:06:30.374Z", + "1.0.1": "2011-07-23T07:06:30.567Z" + }, + "author": { + "name": "Illarionov Oleg" + }, + "versions": { + "1.0.1": "http://registry.npmjs.org/trentm-hashlib/1.0.1" + }, + "dist": { + "1.0.1": { + "shasum": "9a8388bf523035ac6b7faf6f026fe5132bc6fd09", + "tarball": "http://registry.npmjs.org/trentm-hashlib/-/trentm-hashlib-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/trentm-hashlib/" + }, + "trial": { + "name": "trial", + "description": "A testing framework", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "postwait", + "email": "jesus@omniti.com" + } + ], + "time": { + "modified": "2011-08-01T18:13:31.912Z", + "created": "2011-08-01T18:13:31.452Z", + "0.0.1": "2011-08-01T18:13:31.912Z" + }, + "author": { + "name": "Theo Schlossnagle" + }, + "repository": { + "type": "git", + "url": "git://github.com/postwait/node-trial.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/trial/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "5ecafc5fd0b67840a717af58ef3b167fa532fcd6", + "tarball": "http://registry.npmjs.org/trial/-/trial-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/trial/" + }, + "trie": { + "name": "trie", + "description": "A trie dictionary storage model", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "k", + "email": "kbjr14@gmail.com" + } + ], + "time": { + "modified": "2011-06-27T08:14:31.964Z", + "created": "2011-06-27T08:14:31.175Z", + "0.2.1": "2011-06-27T08:14:31.964Z" + }, + "author": { + "name": "James Brumond", + "email": "kbjr14@gmail.com", + "url": "http://jbrumond.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/kbjr/node-trie.git" + }, + "versions": { + "0.2.1": "http://registry.npmjs.org/trie/0.2.1" + }, + "dist": { + "0.2.1": { + "shasum": "72cf0ae9f1c53f54d82df4911aa8705945997298", + "tarball": "http://registry.npmjs.org/trie/-/trie-0.2.1.tgz" + } + }, + "url": "http://registry.npmjs.org/trie/" + }, + "triforce": { + "name": "triforce", + "dist-tags": { + "latest": "0.1.6" + }, + "readme": "# Trinity\r\n\r\nA simple templating mechanism, that keeps the purity of HTML, CSS & JS.\r\n\r\nHeavy work in progress!\r\n\r\n## RoadMap:\r\n\r\n- client support\r\n- replace jsdom with a super fast, super light weight DOM4 implementation\r\n\r\n# Example\r\n\r\n[Simple example][3]\r\n\r\n[More complete examples][4]\r\n\r\nYour HTML template\r\n\r\n\t// base.html\r\n\t
\r\n\t

Some content

\r\n\t

\r\n\t
\r\n\r\nThe associated CSS. This is a nice place to put your CSS, all the CSS will be minified for you\r\n\r\n\t// base.css\r\n\tp {\r\n\t\tcolor: blue\r\n\t}\r\n\r\n\tp.container {\r\n\t\tcolor: red\r\n\t}\r\n\r\nYour view logic, using plain old DOM\r\n\r\n\t// base.js\r\n\tvar p = frag.firstChild.getElementsByClassName(\"container\")[0];\r\n\tp.textContent = data.text;\r\n\tvar fragment = load(\"child\", data);\r\n\tvar div = frag.firstChild;\r\n\tdiv.appendChild(fragment);\r\n\r\nAnother HTML template, this is a small shell\r\n\r\n\t// child.html\r\n\t

\r\n\r\nAnother piece of view logic\r\n\r\n\t// child.js\r\n\tfrag.firstChild.textContent = \"Another p that was loaded!\";\r\n\r\nThe express server\r\n\r\n\t// server.js\r\n\tvar express = require(\"express\"),\r\n\t\ttrinity = require(\"../../src/trinity.js\");\r\n\r\n\tvar app = express.createServer();\r\n\r\n\ttrinity.punchExpress();\r\n\ttrinity.set(\"path\", __dirname + \"/trinity/\");\r\n\r\n\tapp.get(\"/\", function (req, res) {\r\n\t\tres.render(\"base\", { text: \"win\" });\r\n\t});\r\n\r\n\tapp.listen(8080);\r\n\r\n# Motivation\r\n\r\n - [Seperations of concerns][1]. Most templates don't split HTML and view logic\r\n - Works on server & client\r\n - Uses the DOM API everyone knows and loves\r\n - Really simple API\r\n - Recursively loading and manipulating more DOM fragments\r\n\r\nDoesn't [plates][2] already solve this? Plates makes you dump hooks in your HTML to bind data too. This breaks seperations of concerns. Plates also doesn't let you organize your code into trinities of HTML/CSS/JS that you can inherit and mix & match.\r\n\r\n# Documentation\r\n\r\n## trinity(uri, data, cb)\r\n\r\nTrinity takes an uri to a HTML resource, a data object and a callback. \r\n\r\nIt creates a Document based on Static.x\r\n\r\nIt will then load the HTML at the uri as a fragment and pass it to the JS at the uri.\r\n\r\nThe javascript file at the uri get's 3 \"globals\" injected into it. \r\n\r\n - `frag` The documentfragment build of the HTML \r\n - `data` The data object passed into trinity\r\n - `load` A blocking load function, takes `(uri, data)` as paramaters \r\n \t\tand returns a documentfragment\r\n\r\nThe CSS file at the uri is string appended to a single CSS node in ``.\r\n\r\nThe cb is of format `(error, domFragment, load)`\r\n\r\n## load(uri, data, cb)\r\n\r\nThe load function has the same format as the trinity and can be called to load more HTML/CSS/JS documents as document fragments.\r\n\r\nLoad does not create a Document based on static.x\r\n\r\nThe cb parameter takes a format of `(error, domFragment)`\r\n\r\nInside the JS files of a trinity the `load` function is blocking and takes `(uri, data)` as parameters and returns the document fragment.\r\n\r\n## static.x\r\n\r\nTrinity allows you to define a static html / css / js file. These will be loaded by the trinity function. \r\n\r\nThe intend is that the static HTML is your master page, and that the static CSS / JS are your bundled & minified production js files.\r\n\r\nThe HTML that is created for you is the static html page with two extra nodes, a script node pointing at static.js and a style node pointing at static.css\r\n\r\n## trinity.config\r\n\r\nYou can configure some variables.\r\n\r\n\t{\r\n\t\tstatic: name of static file, default is \"static\",\r\n\t\tpublicPath: the public folder path to your trinity templates, the default is \r\n\t\t\t\"trinity\". This means that a request to /static.css becomes trinity/static.css\r\n\t\tpath: the path to your trinity folder. For example __dirname + \"/trinity/\". It has no\r\n\t\t\tdefault.\r\n\t}\r\n\r\n## trinity.punchExpress\r\n\r\nduck punches express by overwriting res.render to use trinity.\r\n\r\nThe default behaviour is to load the trinity with the uri and json you pass. And append the document fragment returned from the trinity to the body.\r\n\r\nOnly works nicely if static.html defines a `` and all your trinities don't define ``\r\n\r\n## trinity.send(res, error, fragment)\r\n\r\nTrinity has a default send function that's used in combination with express. By default it appends the rendered document fragment to the end of the body.\r\n\r\nOverwrite this function to have your own rendering logic\r\n\r\n# installation\r\n\r\n`npm install trinity`\r\n\r\n# tests\r\n\r\n`nodeunit tests/`\r\n\r\n# contributors\r\n\r\n - Raynos\r\n\r\n# MIT Licenced.\r\n\r\n [1]: http://en.wikipedia.org/wiki/Separation_of_concerns\r\n [2]: https://github.com/flatiron/plates\r\n [3]: https://github.com/Raynos/trinity/tree/master/examples/simple\r\n [4]: https://github.com/Raynos/raynos-blog/tree/master/src/public/trinity", + "maintainers": [ + { + "name": "raynos", + "email": "raynos2@gmail.com" + } + ], + "time": { + "modified": "2011-11-24T03:06:46.466Z", + "created": "2011-11-24T03:06:44.297Z", + "0.1.6": "2011-11-24T03:06:46.466Z" + }, + "author": { + "name": "Jake Verbaten", + "email": "raynos2@gmail.com" + }, + "versions": { + "0.1.6": "http://registry.npmjs.org/triforce/0.1.6" + }, + "dist": { + "0.1.6": { + "shasum": "62cfc32fb7c6fac37167c6ea71add086acd3340a", + "tarball": "http://registry.npmjs.org/triforce/-/triforce-0.1.6.tgz" + } + }, + "url": "http://registry.npmjs.org/triforce/" + }, + "trinity": { + "name": "trinity", + "dist-tags": { + "latest": "0.1.10" + }, + "maintainers": [ + { + "name": "raynos", + "email": "raynos2@gmail.com" + } + ], + "time": { + "modified": "2011-11-28T20:22:55.324Z", + "created": "2011-10-19T17:44:08.270Z", + "0.0.1": "2011-10-19T17:44:10.114Z", + "0.0.2": "2011-10-19T18:05:34.665Z", + "0.1.0": "2011-11-18T21:43:46.076Z", + "0.1.1": "2011-11-19T00:51:55.795Z", + "0.1.2": "2011-11-19T14:29:12.237Z", + "0.1.3": "2011-11-19T23:41:52.326Z", + "0.1.4": "2011-11-20T14:46:21.476Z", + "0.1.5": "2011-11-20T14:56:09.593Z", + "0.1.6": "2011-11-20T19:45:18.329Z", + "0.1.7": "2011-11-25T20:45:22.332Z", + "0.1.8": "2011-11-28T13:53:18.731Z", + "0.1.9": "2011-11-28T14:43:40.725Z", + "0.1.10": "2011-11-28T20:22:55.324Z" + }, + "author": { + "name": "Jake Verbaten", + "email": "raynos2@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/trinity/0.0.1", + "0.0.2": "http://registry.npmjs.org/trinity/0.0.2", + "0.1.0": "http://registry.npmjs.org/trinity/0.1.0", + "0.1.1": "http://registry.npmjs.org/trinity/0.1.1", + "0.1.2": "http://registry.npmjs.org/trinity/0.1.2", + "0.1.3": "http://registry.npmjs.org/trinity/0.1.3", + "0.1.4": "http://registry.npmjs.org/trinity/0.1.4", + "0.1.5": "http://registry.npmjs.org/trinity/0.1.5", + "0.1.6": "http://registry.npmjs.org/trinity/0.1.6", + "0.1.7": "http://registry.npmjs.org/trinity/0.1.7", + "0.1.8": "http://registry.npmjs.org/trinity/0.1.8", + "0.1.9": "http://registry.npmjs.org/trinity/0.1.9", + "0.1.10": "http://registry.npmjs.org/trinity/0.1.10" + }, + "dist": { + "0.0.1": { + "shasum": "78a899f75d82dabc1188741460fd6fbda3c0f6db", + "tarball": "http://registry.npmjs.org/trinity/-/trinity-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "04fd4b08b272bad6afdb56e38ac967f75a73a8f3", + "tarball": "http://registry.npmjs.org/trinity/-/trinity-0.0.2.tgz" + }, + "0.1.0": { + "shasum": "66d815bbae33e7b375441fd4b31328d54b3f84c3", + "tarball": "http://registry.npmjs.org/trinity/-/trinity-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "56518d62c22edff8faabd40a5f169526cd8e03ef", + "tarball": "http://registry.npmjs.org/trinity/-/trinity-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "3ae1a640946e1e40f43f0bc3b815f5b80db77c03", + "tarball": "http://registry.npmjs.org/trinity/-/trinity-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "fcf7c9443f58c9395087606b9c3af678574a85c0", + "tarball": "http://registry.npmjs.org/trinity/-/trinity-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "8afddd3181d106d693bd34df19456754138e0455", + "tarball": "http://registry.npmjs.org/trinity/-/trinity-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "faf36fab5737d80eeb876f4f9030bc1d180017bb", + "tarball": "http://registry.npmjs.org/trinity/-/trinity-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "ef3d44413c69daa7da502efe5051bc50a1873a48", + "tarball": "http://registry.npmjs.org/trinity/-/trinity-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "92340d8dc1a9d486fe6a64cf2f33bf7404dde07d", + "tarball": "http://registry.npmjs.org/trinity/-/trinity-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "a6c4bc6c084b1fd556b96cae9147ef970d9abde3", + "tarball": "http://registry.npmjs.org/trinity/-/trinity-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "0e712531c4bcd3410b74f4645188629482725c70", + "tarball": "http://registry.npmjs.org/trinity/-/trinity-0.1.9.tgz" + }, + "0.1.10": { + "shasum": "1334f0740cdc5c53b76945dc2da12111f38e7c6b", + "tarball": "http://registry.npmjs.org/trinity/-/trinity-0.1.10.tgz" + } + }, + "url": "http://registry.npmjs.org/trinity/" + }, + "trollop": { + "name": "trollop", + "description": "A node.js (maybe common.js?) version of the Trollop ruby command line option parser", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "bryanwb", + "email": "bryan.berry@gmail.com" + } + ], + "author": { + "name": "Nick Campbell", + "email": "nicholas.j.campbell@gmail.com", + "url": "http://digitaltumbleweed.com/" + }, + "repository": { + "type": "git", + "url": "http://github.com/bryanwb/trollopjs.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/trollop/0.1.1" + }, + "dist": { + "0.1.1": { + "tarball": "http://packages:5984/trollop/-/trollop-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/trollop/" + }, + "trollscript": { + "name": "trollscript", + "description": "A port of the trollscript intepreter", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "sugendran", + "email": "sugendran@sugendran.net" + } + ], + "time": { + "modified": "2011-09-09T03:41:47.805Z", + "created": "2011-09-09T03:38:44.767Z", + "0.0.1": "2011-09-09T03:38:46.459Z", + "0.0.2": "2011-09-09T03:41:47.805Z" + }, + "author": { + "name": "Sugendran Ganess" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/trollscript/0.0.1", + "0.0.2": "http://registry.npmjs.org/trollscript/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "d3127ce60c8b8571728f90c770fbd0e0a799957c", + "tarball": "http://registry.npmjs.org/trollscript/-/trollscript-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "ba7b2d7e06571ca5448b9128eb80e8a9a5446f7e", + "tarball": "http://registry.npmjs.org/trollscript/-/trollscript-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/trollscript/" + }, + "trollscriptjs": { + "name": "trollscriptjs", + "description": "Because Brainfuck is so last year, right?", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "jesusabdullah", + "email": "josh.holbrook@gmail.com" + } + ], + "time": { + "modified": "2011-09-10T00:30:07.399Z", + "created": "2011-09-10T00:30:06.067Z", + "0.0.0": "2011-09-10T00:30:07.399Z" + }, + "author": { + "name": "Joshua Holbrook", + "email": "josh.holbrook@gmail.com", + "url": "http://jesusabdullah.github.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:jesusabdullah/node-trollscript.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/trollscriptjs/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "1c757e00b084490c7e7adeca0f2f77212eb6a6c3", + "tarball": "http://registry.npmjs.org/trollscriptjs/-/trollscriptjs-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/trollscriptjs/" + }, + "tropo-webapi": { + "name": "tropo-webapi", + "description": "A Node.js library for the Tropo WebAPI.", + "dist-tags": { + "latest": "1.0.15" + }, + "maintainers": [ + { + "name": "mheadd", + "email": "mheadd@voxeo.com" + } + ], + "author": { + "name": "Mark Headd", + "email": "mheadd@voxeo.com", + "url": "http://tropo.com" + }, + "time": { + "modified": "2011-07-07T20:25:58.604Z", + "created": "2010-12-20T18:21:48.336Z", + "1.0.7": "2010-12-20T18:21:48.336Z", + "1.0.12": "2010-12-20T18:21:48.336Z", + "1.0.13": "2011-01-24T19:05:47.477Z", + "1.0.14": "2011-03-16T16:00:24.018Z", + "1.0.15": "2011-07-07T20:25:58.604Z" + }, + "versions": { + "1.0.7": "http://registry.npmjs.org/tropo-webapi/1.0.7", + "1.0.12": "http://registry.npmjs.org/tropo-webapi/1.0.12", + "1.0.13": "http://registry.npmjs.org/tropo-webapi/1.0.13", + "1.0.14": "http://registry.npmjs.org/tropo-webapi/1.0.14", + "1.0.15": "http://registry.npmjs.org/tropo-webapi/1.0.15" + }, + "dist": { + "1.0.7": { + "shasum": "e587f1da93e0c3c7d936e2f3400c78eddf3ec5b8", + "tarball": "http://registry.npmjs.org/tropo-webapi/-/tropo-webapi-1.0.7.tgz" + }, + "1.0.12": { + "shasum": "95acacda052911570308c62a2cd2cc72b3abe836", + "tarball": "http://registry.npmjs.org/tropo-webapi/-/tropo-webapi-1.0.12.tgz" + }, + "1.0.13": { + "shasum": "48b5290e9a37e403bbef75537013caccf527ef4f", + "tarball": "http://registry.npmjs.org/tropo-webapi/-/tropo-webapi-1.0.13.tgz" + }, + "1.0.14": { + "shasum": "bb1407b8127b7785d7083491688552c464c07c4b", + "tarball": "http://registry.npmjs.org/tropo-webapi/-/tropo-webapi-1.0.14.tgz" + }, + "1.0.15": { + "shasum": "33bc033d3e7aa74febd9d705f905e40a187af9e2", + "tarball": "http://registry.npmjs.org/tropo-webapi/-/tropo-webapi-1.0.15.tgz" + } + }, + "url": "http://registry.npmjs.org/tropo-webapi/" + }, + "tropo-webapi-node": { + "name": "tropo-webapi-node", + "description": "A Node.js library for the Tropo WebAPI.", + "dist-tags": { + "latest": "1.0.6" + }, + "maintainers": [ + { + "name": "mheadd", + "email": "mheadd@voxeo.com" + } + ], + "author": { + "name": "Mark Headd", + "email": "mheadd@voxeo.com", + "url": "http://tropo.com" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/tropo-webapi-node/1.0.0", + "1.0.1": "http://registry.npmjs.org/tropo-webapi-node/1.0.1", + "1.0.2": "http://registry.npmjs.org/tropo-webapi-node/1.0.2", + "1.0.3": "http://registry.npmjs.org/tropo-webapi-node/1.0.3", + "1.0.4": "http://registry.npmjs.org/tropo-webapi-node/1.0.4", + "1.0.5": "http://registry.npmjs.org/tropo-webapi-node/1.0.5", + "1.0.6": "http://registry.npmjs.org/tropo-webapi-node/1.0.6" + }, + "dist": { + "1.0.0": { + "shasum": "afd1b324360d749e71f5f09c1f5be4bdc387fe14", + "tarball": "http://registry.npmjs.org/tropo-webapi-node/-/tropo-webapi-node-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "aa2d8235f7fd482ee609852cfc495369be4037e2", + "tarball": "http://registry.npmjs.org/tropo-webapi-node/-/tropo-webapi-node-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "3698b8cf2dd9f67fda2a3aad068a5cc9919b74c1", + "tarball": "http://registry.npmjs.org/tropo-webapi-node/-/tropo-webapi-node-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "11e746f6171802a5da77eb4fd2f3dadb3af8e7f3", + "tarball": "http://registry.npmjs.org/tropo-webapi-node/-/tropo-webapi-node-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "e790e975049e8666d90af5abb46102957d6146ce", + "tarball": "http://registry.npmjs.org/tropo-webapi-node/-/tropo-webapi-node-1.0.4.tgz" + }, + "1.0.5": { + "shasum": "196ba3161f41a6745feb22aa0bf46109511d21e9", + "tarball": "http://registry.npmjs.org/tropo-webapi-node/-/tropo-webapi-node-1.0.5.tgz" + }, + "1.0.6": { + "shasum": "5d2e642778b74ba82f7ea3bfcb9d7b1853e6d18a", + "tarball": "http://registry.npmjs.org/tropo-webapi-node/-/tropo-webapi-node-1.0.6.tgz" + } + }, + "url": "http://registry.npmjs.org/tropo-webapi-node/" + }, + "trundle": { + "name": "trundle", + "description": "Manage node deployment with CouchDB", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "maxogden", + "email": "max@maxogden.com" + } + ], + "time": { + "modified": "2011-08-25T17:00:21.912Z", + "created": "2011-08-25T17:00:21.717Z", + "0.0.1": "2011-08-25T17:00:21.912Z" + }, + "author": { + "name": "Max Ogden", + "email": "max@maxogden.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/maxogden/trundle.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/trundle/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "4481e0c0c185e2f53cf5699f63c64f1e13ebf037", + "tarball": "http://registry.npmjs.org/trundle/-/trundle-0.0.1.tgz" + } + }, + "keywords": [ + "couchdb", + "deployment", + "node", + "sysadmin" + ], + "url": "http://registry.npmjs.org/trundle/" + }, + "trust-reverse-proxy": { + "name": "trust-reverse-proxy", + "description": "Trust a specific reverse proxy to handle incoming (SSL) requests", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "bartt", + "email": "bart@zazengo.com" + } + ], + "versions": { + "0.1.0": "http://registry.npmjs.org/trust-reverse-proxy/0.1.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/trust-reverse-proxy/-/trust-reverse-proxy-0.1.0.tgz" + } + }, + "keywords": [ + "ssl", + "proxy" + ], + "url": "http://registry.npmjs.org/trust-reverse-proxy/" + }, + "trycatch": { + "name": "trycatch", + "description": "An asynchronous exception handler with long stack traces for node.js", + "dist-tags": { + "latest": "0.0.9" + }, + "maintainers": [ + { + "name": "crabdude", + "email": "dude@noderiety.com" + } + ], + "time": { + "modified": "2011-11-22T20:30:34.662Z", + "created": "2011-09-29T07:38:45.027Z", + "0.0.1": "2011-09-29T07:38:47.003Z", + "0.0.2": "2011-09-30T21:57:30.493Z", + "0.0.3": "2011-09-30T23:28:13.950Z", + "0.0.4": "2011-10-01T00:29:32.906Z", + "0.0.5": "2011-10-01T00:30:25.772Z", + "0.0.6": "2011-10-01T00:32:34.077Z", + "0.0.7": "2011-10-01T00:32:54.712Z", + "0.0.8": "2011-10-12T18:17:42.706Z", + "0.0.9": "2011-11-22T20:30:34.662Z" + }, + "author": { + "name": "Adam Crabtree", + "email": "dude@noderiety.com", + "url": "http://noderiety.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/CrabDude/trycatch.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/trycatch/0.0.1", + "0.0.2": "http://registry.npmjs.org/trycatch/0.0.2", + "0.0.3": "http://registry.npmjs.org/trycatch/0.0.3", + "0.0.4": "http://registry.npmjs.org/trycatch/0.0.4", + "0.0.5": "http://registry.npmjs.org/trycatch/0.0.5", + "0.0.6": "http://registry.npmjs.org/trycatch/0.0.6", + "0.0.7": "http://registry.npmjs.org/trycatch/0.0.7", + "0.0.8": "http://registry.npmjs.org/trycatch/0.0.8", + "0.0.9": "http://registry.npmjs.org/trycatch/0.0.9" + }, + "dist": { + "0.0.1": { + "shasum": "e6d023e0b85ebca5a9ab4eea8cce5febde1725ae", + "tarball": "http://registry.npmjs.org/trycatch/-/trycatch-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "134a68d5fad0ddd35eb43dd4805bcb955dea0d01", + "tarball": "http://registry.npmjs.org/trycatch/-/trycatch-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "2c28ba0eda3b2c2550c9ba10073bb46b0d59f5e0", + "tarball": "http://registry.npmjs.org/trycatch/-/trycatch-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "44ae723682bdf6dc25905a79cd86acb7d54396a0", + "tarball": "http://registry.npmjs.org/trycatch/-/trycatch-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "9fd8d1ffe5abc66e813def8534703ea1fd0f06ae", + "tarball": "http://registry.npmjs.org/trycatch/-/trycatch-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "1aa2240412cb8cc4c45ff5caf508d905bb255fb6", + "tarball": "http://registry.npmjs.org/trycatch/-/trycatch-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "a1ca62a4c1a5dc1b5605be2c3ad1dce85cc2fcb4", + "tarball": "http://registry.npmjs.org/trycatch/-/trycatch-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "e6153319a6a6f1dc463afef66abadd638808a3bb", + "tarball": "http://registry.npmjs.org/trycatch/-/trycatch-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "f494586f963c5b46509475caef0ff345af6aef05", + "tarball": "http://registry.npmjs.org/trycatch/-/trycatch-0.0.9.tgz" + } + }, + "keywords": [ + "error", + "exception", + "try", + "catch", + "stack", + "trace" + ], + "url": "http://registry.npmjs.org/trycatch/" + }, + "trying": { + "name": "trying", + "description": "try method like rails for Node", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "cmilfont", + "email": "cmilfont@gmail.com" + } + ], + "time": { + "modified": "2011-01-10T17:20:24.757Z", + "created": "2011-01-10T17:20:23.307Z", + "1.0.0": "2011-01-10T17:20:24.757Z" + }, + "author": { + "name": "Christiano Milfont", + "email": "cmilfont@gmail.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:cmilfont/tryingnode.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/trying/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "993ebf400010eb7b413cb948e75a420a8b8a5918", + "tarball": "http://registry.npmjs.org/trying/-/trying-1.0.0.tgz" + } + }, + "keywords": [ + "testing", + "try" + ], + "url": "http://registry.npmjs.org/trying/" + }, + "ttapi": { + "name": "ttapi", + "description": "A turntable.fm API", + "dist-tags": { + "latest": "1.0.5" + }, + "maintainers": [ + { + "name": "agilbert", + "email": "alain.gilbert.15@gmail.com" + } + ], + "time": { + "modified": "2011-12-14T04:57:37.638Z", + "created": "2011-09-05T00:36:13.026Z", + "0.0.0": "2011-12-07T14:46:17.411Z", + "0.0.1": "2011-12-07T14:46:17.411Z", + "0.0.2": "2011-12-07T14:46:17.411Z", + "0.0.3": "2011-12-07T14:46:17.411Z", + "0.0.4": "2011-12-07T14:46:17.411Z", + "0.0.5": "2011-12-07T14:46:17.411Z", + "0.1.0": "2011-12-07T14:46:17.411Z", + "0.2.0": "2011-12-07T14:46:17.411Z", + "0.2.1": "2011-12-07T14:46:17.411Z", + "0.2.2": "2011-12-07T14:46:17.411Z", + "0.2.3": "2011-12-07T14:46:17.411Z", + "0.2.4": "2011-12-07T14:46:17.411Z", + "0.2.5": "2011-12-07T14:46:17.411Z", + "0.2.6": "2011-12-07T14:46:17.411Z", + "0.2.7": "2011-12-07T14:46:17.411Z", + "0.2.8": "2011-12-07T14:46:17.411Z", + "0.3.0": "2011-12-07T14:46:17.411Z", + "0.3.1": "2011-12-07T14:46:17.411Z", + "0.3.2": "2011-12-07T14:46:17.411Z", + "0.3.3": "2011-12-07T14:46:17.411Z", + "0.3.4": "2011-12-07T14:46:17.411Z", + "0.4.0": "2011-12-07T14:46:17.411Z", + "0.4.1": "2011-12-07T14:46:17.411Z", + "0.4.2": "2011-12-07T14:46:17.411Z", + "0.4.3": "2011-12-07T14:46:17.411Z", + "0.4.4": "2011-12-07T14:46:17.411Z", + "0.4.5": "2011-12-07T14:46:17.411Z", + "0.4.6": "2011-11-10T06:16:19.521Z", + "0.4.7": "2011-11-12T08:05:18.801Z", + "0.4.8": "2011-11-14T09:10:11.452Z", + "1.0.0": "2011-11-16T05:34:36.427Z", + "1.0.1": "2011-11-18T20:46:31.045Z", + "1.0.2": "2011-11-29T21:12:45.066Z", + "1.0.3": "2011-11-30T06:04:16.800Z", + "1.0.4": "2011-12-07T14:46:17.411Z", + "1.0.5": "2011-12-14T04:57:37.638Z" + }, + "author": { + "name": "Alain Gilbert", + "email": "alain.gilbert.15@gmail.com", + "url": "http://agilbert.name/" + }, + "repository": { + "type": "git", + "url": "git://github.com/alaingilbert/Turntable-API.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/ttapi/0.0.0", + "0.0.1": "http://registry.npmjs.org/ttapi/0.0.1", + "0.0.2": "http://registry.npmjs.org/ttapi/0.0.2", + "0.0.3": "http://registry.npmjs.org/ttapi/0.0.3", + "0.0.4": "http://registry.npmjs.org/ttapi/0.0.4", + "0.0.5": "http://registry.npmjs.org/ttapi/0.0.5", + "0.1.0": "http://registry.npmjs.org/ttapi/0.1.0", + "0.2.0": "http://registry.npmjs.org/ttapi/0.2.0", + "0.2.1": "http://registry.npmjs.org/ttapi/0.2.1", + "0.2.2": "http://registry.npmjs.org/ttapi/0.2.2", + "0.2.3": "http://registry.npmjs.org/ttapi/0.2.3", + "0.2.4": "http://registry.npmjs.org/ttapi/0.2.4", + "0.2.5": "http://registry.npmjs.org/ttapi/0.2.5", + "0.2.6": "http://registry.npmjs.org/ttapi/0.2.6", + "0.2.7": "http://registry.npmjs.org/ttapi/0.2.7", + "0.2.8": "http://registry.npmjs.org/ttapi/0.2.8", + "0.3.0": "http://registry.npmjs.org/ttapi/0.3.0", + "0.3.1": "http://registry.npmjs.org/ttapi/0.3.1", + "0.3.2": "http://registry.npmjs.org/ttapi/0.3.2", + "0.3.3": "http://registry.npmjs.org/ttapi/0.3.3", + "0.3.4": "http://registry.npmjs.org/ttapi/0.3.4", + "0.4.0": "http://registry.npmjs.org/ttapi/0.4.0", + "0.4.1": "http://registry.npmjs.org/ttapi/0.4.1", + "0.4.2": "http://registry.npmjs.org/ttapi/0.4.2", + "0.4.3": "http://registry.npmjs.org/ttapi/0.4.3", + "0.4.4": "http://registry.npmjs.org/ttapi/0.4.4", + "0.4.5": "http://registry.npmjs.org/ttapi/0.4.5", + "0.4.6": "http://registry.npmjs.org/ttapi/0.4.6", + "0.4.7": "http://registry.npmjs.org/ttapi/0.4.7", + "0.4.8": "http://registry.npmjs.org/ttapi/0.4.8", + "1.0.0": "http://registry.npmjs.org/ttapi/1.0.0", + "1.0.1": "http://registry.npmjs.org/ttapi/1.0.1", + "1.0.2": "http://registry.npmjs.org/ttapi/1.0.2", + "1.0.3": "http://registry.npmjs.org/ttapi/1.0.3", + "1.0.4": "http://registry.npmjs.org/ttapi/1.0.4", + "1.0.5": "http://registry.npmjs.org/ttapi/1.0.5" + }, + "dist": { + "0.0.0": { + "shasum": "8f03c0e881fc992e7400322166cc86eb742a6e44", + "tarball": "http://registry.npmjs.org/ttapi/-/ttapi-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "4a7d2ba9d912b1e7018a9077fc5d0d4653b59abc", + "tarball": "http://registry.npmjs.org/ttapi/-/ttapi-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "0d9aba7350242dd88f592f911bc24dab573853b4", + "tarball": "http://registry.npmjs.org/ttapi/-/ttapi-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "418e6d5a504c3804b12cecfbea3c2de8e7e74c59", + "tarball": "http://registry.npmjs.org/ttapi/-/ttapi-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "352268b6fd83feb036b566f37ea2a8cf59358e72", + "tarball": "http://registry.npmjs.org/ttapi/-/ttapi-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "e6f7041a4c382594881c847d614a39f18a82a8fd", + "tarball": "http://registry.npmjs.org/ttapi/-/ttapi-0.0.5.tgz" + }, + "0.1.0": { + "shasum": "93898259f8c369f9dbde56c62fa55982e3f005a2", + "tarball": "http://registry.npmjs.org/ttapi/-/ttapi-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "d4cbc13e35e121f19870345a7ca481994acf74b3", + "tarball": "http://registry.npmjs.org/ttapi/-/ttapi-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "bc0d90bd9e1bc3830cc26becdd348cb76acdce4d", + "tarball": "http://registry.npmjs.org/ttapi/-/ttapi-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "b389225c17c7631af05bcb105f0314a0ce4187ad", + "tarball": "http://registry.npmjs.org/ttapi/-/ttapi-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "b40634b68f54d01aed38068f97373e37b426c22b", + "tarball": "http://registry.npmjs.org/ttapi/-/ttapi-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "262a7cef2e0a090dfd6e98c50fd7d1e14f74f516", + "tarball": "http://registry.npmjs.org/ttapi/-/ttapi-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "cb345a18fd3540792f7b9dc93b9d9e1716bf1f6d", + "tarball": "http://registry.npmjs.org/ttapi/-/ttapi-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "9003d023d8a94c7c45b5a035e1fa647164d76f7a", + "tarball": "http://registry.npmjs.org/ttapi/-/ttapi-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "0bde477582f5ff06441cfc7eacbbe75df4c8c3b5", + "tarball": "http://registry.npmjs.org/ttapi/-/ttapi-0.2.7.tgz" + }, + "0.2.8": { + "shasum": "93342504b318502bc2879d2f1e17a2a7d4828e55", + "tarball": "http://registry.npmjs.org/ttapi/-/ttapi-0.2.8.tgz" + }, + "0.3.0": { + "shasum": "ed2f9b6cef00451a9a0fc092e0c1442833733142", + "tarball": "http://registry.npmjs.org/ttapi/-/ttapi-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "543d20ab0caa4123b277119dc15cf1b5694da76b", + "tarball": "http://registry.npmjs.org/ttapi/-/ttapi-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "a9548647b9a231c422fd26c0f83c7677f510814f", + "tarball": "http://registry.npmjs.org/ttapi/-/ttapi-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "231a5d8502cf43f4870c30329bb17981cb80cb86", + "tarball": "http://registry.npmjs.org/ttapi/-/ttapi-0.3.3.tgz" + }, + "0.3.4": { + "shasum": "70c3932ae55500bb3d98ac661565d9662611ab18", + "tarball": "http://registry.npmjs.org/ttapi/-/ttapi-0.3.4.tgz" + }, + "0.4.0": { + "shasum": "341a95154e628172ddc426818316ffda51d55756", + "tarball": "http://registry.npmjs.org/ttapi/-/ttapi-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "bea420a7064dc0191328cf7aae7d2fa33cc513a9", + "tarball": "http://registry.npmjs.org/ttapi/-/ttapi-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "0d3f480d7b486add39c6ff024c6e9e0df95c9efa", + "tarball": "http://registry.npmjs.org/ttapi/-/ttapi-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "46a76eeacdab55cd54cd4ea204b3e051813efae1", + "tarball": "http://registry.npmjs.org/ttapi/-/ttapi-0.4.3.tgz" + }, + "0.4.4": { + "shasum": "a2d6afb99b800416f03722ae8d6f236c94092b8c", + "tarball": "http://registry.npmjs.org/ttapi/-/ttapi-0.4.4.tgz" + }, + "0.4.5": { + "shasum": "af3568a15225bc438110d9b567805d5d429cc09d", + "tarball": "http://registry.npmjs.org/ttapi/-/ttapi-0.4.5.tgz" + }, + "0.4.6": { + "shasum": "2f738a2c3c5e9da00f8700a937dac7b0cd604cce", + "tarball": "http://registry.npmjs.org/ttapi/-/ttapi-0.4.6.tgz" + }, + "0.4.7": { + "shasum": "149eb1bda71d98b9b6e2cdf4f02abf62462915ac", + "tarball": "http://registry.npmjs.org/ttapi/-/ttapi-0.4.7.tgz" + }, + "0.4.8": { + "shasum": "df07d254a9aa6bf92b24022edc7b613c9558e451", + "tarball": "http://registry.npmjs.org/ttapi/-/ttapi-0.4.8.tgz" + }, + "1.0.0": { + "shasum": "f93262a93b7428d65e650886c4e628f71a4aebdf", + "tarball": "http://registry.npmjs.org/ttapi/-/ttapi-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "80046dccba32395b79229cc4b78512dd0e1a8da8", + "tarball": "http://registry.npmjs.org/ttapi/-/ttapi-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "34e0aeb136cb9aebd016b324c89a787c1c36b12a", + "tarball": "http://registry.npmjs.org/ttapi/-/ttapi-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "dbcc7fbae04ef9555dd135b968e6f3eb40c78f3c", + "tarball": "http://registry.npmjs.org/ttapi/-/ttapi-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "44d6252830a9c8a9973741a5de2c3bb040350af6", + "tarball": "http://registry.npmjs.org/ttapi/-/ttapi-1.0.4.tgz" + }, + "1.0.5": { + "shasum": "848510b6b5d519c9b37a177da7875e8161bca58c", + "tarball": "http://registry.npmjs.org/ttapi/-/ttapi-1.0.5.tgz" + } + }, + "keywords": [ + "turntable.fm", + "turntable", + "stickybits", + "realtime" + ], + "url": "http://registry.npmjs.org/ttapi/" + }, + "tty-signals": { + "name": "tty-signals", + "description": "Interpret signals from a readable stream", + "dist-tags": { + "latest": "0.0.0-1" + }, + "maintainers": [ + { + "name": "jesusabdullah", + "email": "josh.holbrook@gmail.com" + } + ], + "time": { + "modified": "2011-11-03T01:38:40.611Z", + "created": "2011-11-03T01:27:49.746Z", + "0.0.0": "2011-11-03T01:27:51.544Z", + "0.0.0-1": "2011-11-03T01:38:40.611Z" + }, + "author": { + "name": "Joshua Holbrook", + "email": "josh@nodejitsu.com", + "url": "http://jesusabdullah.github.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:jesusabdullah/node-signals.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/tty-signals/0.0.0", + "0.0.0-1": "http://registry.npmjs.org/tty-signals/0.0.0-1" + }, + "dist": { + "0.0.0": { + "shasum": "6ba409e2a32a8cf8fb28c2c74036fed65cf567a6", + "tarball": "http://registry.npmjs.org/tty-signals/-/tty-signals-0.0.0.tgz" + }, + "0.0.0-1": { + "shasum": "69c019f8e480eb436825d8663d72dba02aee540f", + "tarball": "http://registry.npmjs.org/tty-signals/-/tty-signals-0.0.0-1.tgz" + } + }, + "url": "http://registry.npmjs.org/tty-signals/" + }, + "tubbs": { + "name": "tubbs", + "description": "Data Model Layer which makes working with your data much easier", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "dandean", + "email": "me@dandean.com" + } + ], + "time": { + "modified": "2011-08-20T03:22:51.717Z", + "created": "2011-07-20T19:07:47.550Z", + "0.0.1": "2011-07-20T19:07:48.000Z", + "0.0.2": "2011-07-21T05:51:10.263Z", + "0.0.3": "2011-08-20T03:22:51.717Z" + }, + "author": { + "name": "Dan Dean", + "email": "@dandean", + "url": "http://dandean.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dandean/tubbs.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tubbs/0.0.1", + "0.0.2": "http://registry.npmjs.org/tubbs/0.0.2", + "0.0.3": "http://registry.npmjs.org/tubbs/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "7bbff6233d143a31ac1a5d4fd7bafb96e8dc671c", + "tarball": "http://registry.npmjs.org/tubbs/-/tubbs-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "67aa8b6d0a69afbb3c887ab86651705bffcd8d01", + "tarball": "http://registry.npmjs.org/tubbs/-/tubbs-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "d0ef17d5b123e0ac0f1b1b5cddec8bba28b01746", + "tarball": "http://registry.npmjs.org/tubbs/-/tubbs-0.0.3.tgz" + } + }, + "keywords": [ + "data", + "model", + "mustache", + "riak", + "orm", + "nosql", + "json" + ], + "url": "http://registry.npmjs.org/tubbs/" + }, + "tubes": { + "name": "tubes", + "description": "A framework for node.js programs that work with the dom", + "dist-tags": { + "latest": "0.0.5-6" + }, + "maintainers": [ + { + "name": "tblobaum", + "email": "tblobaum@gmail.com" + } + ], + "time": { + "modified": "2011-11-15T15:53:22.595Z", + "created": "2011-10-29T10:14:04.836Z", + "0.0.1": "2011-10-29T10:14:06.005Z", + "0.0.3": "2011-10-29T10:18:09.756Z", + "0.0.4": "2011-10-30T04:05:48.990Z", + "0.0.5": "2011-10-30T06:25:22.311Z", + "0.0.5-1": "2011-10-30T06:30:34.255Z", + "0.0.5-2": "2011-11-15T15:12:06.611Z", + "0.0.5-3": "2011-11-15T15:15:22.417Z", + "0.0.5-4": "2011-11-15T15:16:01.727Z", + "0.0.5-5": "2011-11-15T15:51:12.399Z", + "0.0.5-6": "2011-11-15T15:53:22.595Z" + }, + "author": { + "name": "Thomas Blobaum" + }, + "repository": { + "type": "git", + "url": "git://github.com/tblobaum/tubes.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tubes/0.0.1", + "0.0.3": "http://registry.npmjs.org/tubes/0.0.3", + "0.0.4": "http://registry.npmjs.org/tubes/0.0.4", + "0.0.5": "http://registry.npmjs.org/tubes/0.0.5", + "0.0.5-1": "http://registry.npmjs.org/tubes/0.0.5-1", + "0.0.5-2": "http://registry.npmjs.org/tubes/0.0.5-2", + "0.0.5-3": "http://registry.npmjs.org/tubes/0.0.5-3", + "0.0.5-4": "http://registry.npmjs.org/tubes/0.0.5-4", + "0.0.5-5": "http://registry.npmjs.org/tubes/0.0.5-5", + "0.0.5-6": "http://registry.npmjs.org/tubes/0.0.5-6" + }, + "dist": { + "0.0.1": { + "shasum": "ba05fd89d95a45a94b05e2b575a847d3413124a4", + "tarball": "http://registry.npmjs.org/tubes/-/tubes-0.0.1.tgz" + }, + "0.0.3": { + "shasum": "de3f16527a08b610f4a020c26d13a9f542d13d44", + "tarball": "http://registry.npmjs.org/tubes/-/tubes-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "dc62d060b48c28684a218fc6e8c4ec9eb7921b4f", + "tarball": "http://registry.npmjs.org/tubes/-/tubes-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "f4cb5284370840237cb4487e8d05c6bcc29f8b6b", + "tarball": "http://registry.npmjs.org/tubes/-/tubes-0.0.5.tgz" + }, + "0.0.5-1": { + "shasum": "01d66c192851f5853128b15458a88d3fa8fb6814", + "tarball": "http://registry.npmjs.org/tubes/-/tubes-0.0.5-1.tgz" + }, + "0.0.5-2": { + "shasum": "c2611920c6fa72884f19c79f01abba524ba1b326", + "tarball": "http://registry.npmjs.org/tubes/-/tubes-0.0.5-2.tgz" + }, + "0.0.5-3": { + "shasum": "fb9743e26414c86fa1e281caf1d73b468c11240b", + "tarball": "http://registry.npmjs.org/tubes/-/tubes-0.0.5-3.tgz" + }, + "0.0.5-4": { + "shasum": "2f0762654e0e121d72273ed1d58700146e01b57d", + "tarball": "http://registry.npmjs.org/tubes/-/tubes-0.0.5-4.tgz" + }, + "0.0.5-5": { + "shasum": "724fc6203d744c051c1b747504abb761b9146c09", + "tarball": "http://registry.npmjs.org/tubes/-/tubes-0.0.5-5.tgz" + }, + "0.0.5-6": { + "shasum": "4ce5c0512825a0df11fe04d92f6d1398259d2453", + "tarball": "http://registry.npmjs.org/tubes/-/tubes-0.0.5-6.tgz" + } + }, + "url": "http://registry.npmjs.org/tubes/" + }, + "tuild": { + "name": "tuild", + "description": "A easy and advanced build/minifier for JS, CSS and HTML. The name is the join of this & build - tuild", + "dist-tags": { + "latest": "1.0.4" + }, + "maintainers": [ + { + "name": "mateus007", + "email": "mateussouzaweb@gmail.com" + } + ], + "time": { + "modified": "2011-08-04T20:30:39.663Z", + "created": "2011-03-25T21:50:17.515Z", + "1.0.0": "2011-03-25T21:50:18.360Z", + "1.0.2": "2011-04-10T18:28:35.515Z", + "1.0.3": "2011-06-22T23:03:47.201Z", + "1.0.4": "2011-08-04T20:30:39.663Z" + }, + "author": { + "name": "Mateus Souza", + "email": "mateussouzaweb@gmail.com", + "url": "http://twitter.com/mateussouzaweb" + }, + "repository": { + "type": "git", + "url": "git://github.com/mateus007/tuild.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/tuild/1.0.0", + "1.0.2": "http://registry.npmjs.org/tuild/1.0.2", + "1.0.3": "http://registry.npmjs.org/tuild/1.0.3", + "1.0.4": "http://registry.npmjs.org/tuild/1.0.4" + }, + "dist": { + "1.0.0": { + "shasum": "c426e4b5b74c7fe7eda5e864a5666915c1d80032", + "tarball": "http://registry.npmjs.org/tuild/-/tuild-1.0.0.tgz" + }, + "1.0.2": { + "shasum": "6d817fb13f7d56ec665605a689f301e3d6898aa0", + "tarball": "http://registry.npmjs.org/tuild/-/tuild-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "6f4d294d1d4f353c7ff937475240991102f5fad2", + "tarball": "http://registry.npmjs.org/tuild/-/tuild-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "f4a5b1c885021e6661f4e8a17439130bef631380", + "tarball": "http://registry.npmjs.org/tuild/-/tuild-1.0.4.tgz" + } + }, + "keywords": [ + "css", + "js", + "html", + "build", + "minifier", + "compressor", + "hint", + "command" + ], + "url": "http://registry.npmjs.org/tuild/" + }, + "tumbler": { + "name": "tumbler", + "description": "Coffee / Less and static file server .", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "poulejapon", + "email": "paul.masurel@gmail.com" + } + ], + "time": { + "modified": "2011-12-13T11:23:25.718Z", + "created": "2011-08-22T14:47:39.736Z", + "0.0.1": "2011-08-22T14:47:52.567Z", + "0.0.2": "2011-08-29T23:51:55.366Z", + "0.0.3": "2011-11-09T10:51:31.579Z", + "0.0.4": "2011-11-29T16:11:57.532Z", + "0.0.5": "2011-12-05T10:27:53.739Z", + "0.0.6": "2011-12-13T11:23:25.718Z" + }, + "author": { + "name": "Paul Masurel", + "email": "paul.masurel@gmail.com" + }, + "repository": { + "type": "hg", + "url": "https://bitbucket.org/poulejapon/tumbler" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tumbler/0.0.1", + "0.0.2": "http://registry.npmjs.org/tumbler/0.0.2", + "0.0.3": "http://registry.npmjs.org/tumbler/0.0.3", + "0.0.4": "http://registry.npmjs.org/tumbler/0.0.4", + "0.0.5": "http://registry.npmjs.org/tumbler/0.0.5", + "0.0.6": "http://registry.npmjs.org/tumbler/0.0.6" + }, + "dist": { + "0.0.1": { + "shasum": "2a58a6897853dfa9dc77cb45801f05e165595a9e", + "tarball": "http://registry.npmjs.org/tumbler/-/tumbler-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "28bc48c788e854eda786f306ead1288894db48d8", + "tarball": "http://registry.npmjs.org/tumbler/-/tumbler-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "08d488bb19c13c252a3cf533cc9aaed0e5dc2332", + "tarball": "http://registry.npmjs.org/tumbler/-/tumbler-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "41015dd5f9e8768701b6013f17422c9d9e429125", + "tarball": "http://registry.npmjs.org/tumbler/-/tumbler-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "d22e101051c7f082b2a06a4ea0a65351bf5a92ba", + "tarball": "http://registry.npmjs.org/tumbler/-/tumbler-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "414f7d53262813756b96f179bd589f7d267f00a2", + "tarball": "http://registry.npmjs.org/tumbler/-/tumbler-0.0.6.tgz" + } + }, + "url": "http://registry.npmjs.org/tumbler/" + }, + "tumbler-sprite": { + "name": "tumbler-sprite", + "description": "Tumbler sprite.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "poulejapon", + "email": "paul.masurel@gmail.com" + } + ], + "time": { + "modified": "2011-10-18T16:58:58.891Z", + "created": "2011-08-30T00:15:42.449Z", + "0.0.1": "2011-08-30T00:15:43.093Z", + "0.0.2": "2011-10-18T16:58:58.891Z" + }, + "author": { + "name": "Paul Masurel", + "email": "paul.masurel@gmail.com" + }, + "repository": { + "type": "hg", + "url": "https://bitbucket.org/poulejapon/tumbler-sprite" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tumbler-sprite/0.0.1", + "0.0.2": "http://registry.npmjs.org/tumbler-sprite/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "65c83de5894f68a81e756c1825e577964df91660", + "tarball": "http://registry.npmjs.org/tumbler-sprite/-/tumbler-sprite-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "4cd4057814d913249dfecbaa6f0a09f4494f7af6", + "tarball": "http://registry.npmjs.org/tumbler-sprite/-/tumbler-sprite-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/tumbler-sprite/" + }, + "tumblr": { + "name": "tumblr", + "description": "Wrapper for the Tumblr API v2", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "meritt", + "email": "alexey@simonenko.su" + } + ], + "time": { + "modified": "2011-08-01T09:17:53.691Z", + "created": "2011-07-27T22:10:25.297Z", + "0.0.1": "2011-07-27T22:10:26.921Z", + "0.0.2": "2011-07-27T22:33:33.063Z", + "0.0.3": "2011-07-29T12:16:02.970Z", + "0.0.4": "2011-08-01T09:17:53.691Z" + }, + "author": { + "name": "Alexey Simonenko", + "email": "alexey@simonenko.su" + }, + "repository": { + "type": "git", + "url": "git://github.com/meritt/node-tumblr.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tumblr/0.0.1", + "0.0.2": "http://registry.npmjs.org/tumblr/0.0.2", + "0.0.3": "http://registry.npmjs.org/tumblr/0.0.3", + "0.0.4": "http://registry.npmjs.org/tumblr/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "5dea6bac12d40116bf2b9b99a75dd528375b4d0e", + "tarball": "http://registry.npmjs.org/tumblr/-/tumblr-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "da5c579261ecfa63f6ee4fd84360f33093baea87", + "tarball": "http://registry.npmjs.org/tumblr/-/tumblr-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "e3b1e051e18045a1368e636eea0e5c3c1127222f", + "tarball": "http://registry.npmjs.org/tumblr/-/tumblr-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "ea2ebf8f7e646c7dd7eaca2f09f275b9a4657f31", + "tarball": "http://registry.npmjs.org/tumblr/-/tumblr-0.0.4.tgz" + } + }, + "keywords": [ + "blog", + "tumblr", + "api", + "wrapper" + ], + "url": "http://registry.npmjs.org/tumblr/" + }, + "tumblr2": { + "name": "tumblr2", + "description": "Tumblr V.2 API client node.js.", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "kaareal", + "email": "kaare.a.larsen@gmail.com" + } + ], + "time": { + "modified": "2011-09-06T07:06:40.819Z", + "created": "2011-09-04T21:31:14.590Z", + "0.1.0": "2011-09-04T21:31:15.333Z", + "0.1.3": "2011-09-05T18:38:39.591Z", + "0.1.4": "2011-09-06T07:06:40.819Z" + }, + "author": { + "name": "kaareal" + }, + "repository": { + "type": "git", + "url": "git://github.com/kaareal/tumblr2.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/tumblr2/0.1.0", + "0.1.3": "http://registry.npmjs.org/tumblr2/0.1.3", + "0.1.4": "http://registry.npmjs.org/tumblr2/0.1.4" + }, + "dist": { + "0.1.0": { + "shasum": "cb15f641173c3aa6524d1c02f463e80b92964d34", + "tarball": "http://registry.npmjs.org/tumblr2/-/tumblr2-0.1.0.tgz" + }, + "0.1.3": { + "shasum": "7855886d672a87f627e79e5bed0b5c3e1b03c62c", + "tarball": "http://registry.npmjs.org/tumblr2/-/tumblr2-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "e6b9ea46d9e7d9466192d4097dfb52a931608373", + "tarball": "http://registry.npmjs.org/tumblr2/-/tumblr2-0.1.4.tgz" + } + }, + "keywords": [ + "tumblr", + "v2", + "client" + ], + "url": "http://registry.npmjs.org/tumblr2/" + }, + "tumblrrr": { + "name": "tumblrrr", + "description": "A wrapper for Tumblr's API", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "mvrilo", + "email": "mvrilo@gmail.com" + } + ], + "author": { + "name": "Murilo Santana", + "email": "mvrilo@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mvrilo/tumblrrr.git" + }, + "time": { + "modified": "2011-11-22T05:06:02.213Z", + "created": "2011-01-22T01:29:32.058Z", + "0.2.0": "2011-01-22T01:29:32.058Z", + "0.2.1": "2011-01-22T01:29:32.058Z", + "0.3.0": "2011-03-14T02:36:14.968Z", + "1.0.1": "2011-11-22T05:06:02.213Z" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/tumblrrr/0.2.0", + "0.2.1": "http://registry.npmjs.org/tumblrrr/0.2.1", + "0.3.0": "http://registry.npmjs.org/tumblrrr/0.3.0", + "1.0.1": "http://registry.npmjs.org/tumblrrr/1.0.1" + }, + "dist": { + "0.2.0": { + "tarball": "http://packages:5984/tumblrrr/-/tumblrrr-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "1fedc8b968bd549dfe3a16d39fabc426c3e2b77a", + "tarball": "http://registry.npmjs.org/tumblrrr/-/tumblrrr-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "8b00384a97668461c3c050bc7608d0c186c13b45", + "tarball": "http://registry.npmjs.org/tumblrrr/-/tumblrrr-0.3.0.tgz" + }, + "1.0.1": { + "shasum": "2e7a39e492b00389a2255c7d5bc09bb2cfc8dd28", + "tarball": "http://registry.npmjs.org/tumblrrr/-/tumblrrr-1.0.1.tgz" + } + }, + "keywords": [ + "tumblr", + "api", + "wrapper", + "client", + "oauth" + ], + "url": "http://registry.npmjs.org/tumblrrr/" + }, + "tunguska": { + "name": "tunguska", + "author": "Kris Zyp", + "version": "0.2.2", + "dependencies": { + "patr": ">=0.2.1" + }, + "keywords": [ + "comet", + "pubsub" + ], + "githubName": "tunguska", + "mappings": { + "patr": "http://github.com/kriszyp/patr/zipball/v0.2.1" + }, + "licenses": [ + { + "type": "AFLv2.1", + "url": "http://trac.dojotoolkit.org/browser/dojo/trunk/LICENSE#L43" + }, + { + "type": "BSD", + "url": "http://trac.dojotoolkit.org/browser/dojo/trunk/LICENSE#L13" + } + ], + "maintainers": [ + { + "name": "Kris Zyp", + "email": "kriszyp@gmail.com" + } + ], + "repository": { + "type": "git", + "url": "http://github.com/kriszyp/tunguska" + }, + "contributors": [], + "directories": { + "lib": "./lib" + }, + "url": "http://packages.dojofoundation.org/tunguska", + "location": "http://packages.dojofoundation.org/tunguska", + "time": { + "modified": "2011-07-06T16:58:42.762Z", + "created": "2011-07-06T16:58:42.762Z" + }, + "versions": {}, + "dist": {} + }, + "tupalocomapi": { + "name": "tupalocomapi", + "description": "a wrapper around the tupalo.com API", + "dist-tags": { + "latest": "0.0.1-0" + }, + "maintainers": [ + { + "name": "franzenzenhofer", + "email": "f.enzenhofer@gmail.com" + } + ], + "time": { + "modified": "2011-05-09T13:35:02.167Z", + "created": "2011-05-09T13:35:01.333Z", + "0.0.1-0": "2011-05-09T13:35:02.167Z" + }, + "author": { + "name": "Franz Enzenhofer", + "email": "f.enzenhofer@gmail.com" + }, + "versions": { + "0.0.1-0": "http://registry.npmjs.org/tupalocomapi/0.0.1-0" + }, + "dist": { + "0.0.1-0": { + "shasum": "10dccf28adb7453eb3daf15e353e327e45927787", + "tarball": "http://registry.npmjs.org/tupalocomapi/-/tupalocomapi-0.0.1-0.tgz" + } + }, + "keywords": [ + "api", + "tupalo", + "location" + ], + "url": "http://registry.npmjs.org/tupalocomapi/" + }, + "turer": { + "name": "turer", + "dist-tags": { + "latest": "0.1.3-2" + }, + "readme": null, + "maintainers": [ + { + "name": "niclashoyer", + "email": "niclas@verbugt.de" + } + ], + "time": { + "modified": "2011-12-09T18:09:32.217Z", + "created": "2011-12-07T19:42:20.329Z", + "0.1.0": "2011-12-07T19:42:21.866Z", + "0.1.1": "2011-12-07T22:40:21.556Z", + "0.1.1-2": "2011-12-07T22:44:53.045Z", + "0.1.1-3": "2011-12-07T22:47:52.512Z", + "0.1.2-1": "2011-12-09T17:38:56.230Z", + "0.1.3-1": "2011-12-09T17:51:24.996Z", + "0.1.3-2": "2011-12-09T18:09:32.217Z" + }, + "author": { + "name": "Niclas Hoyer", + "email": "https://github.com/niclashoyer" + }, + "repository": { + "type": "git", + "url": "git://github.com/niclashoyer/turer.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/turer/0.1.0", + "0.1.1": "http://registry.npmjs.org/turer/0.1.1", + "0.1.1-2": "http://registry.npmjs.org/turer/0.1.1-2", + "0.1.1-3": "http://registry.npmjs.org/turer/0.1.1-3", + "0.1.2-1": "http://registry.npmjs.org/turer/0.1.2-1", + "0.1.3-1": "http://registry.npmjs.org/turer/0.1.3-1", + "0.1.3-2": "http://registry.npmjs.org/turer/0.1.3-2" + }, + "dist": { + "0.1.0": { + "shasum": "8e981224f24bb89405d38607e1e4a44f397c5777", + "tarball": "http://registry.npmjs.org/turer/-/turer-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "131976406fb0f631ec7c6c1143227c8c43b3b399", + "tarball": "http://registry.npmjs.org/turer/-/turer-0.1.1.tgz" + }, + "0.1.1-2": { + "shasum": "20942cb6be0d7ad35992c0694496dbbc296e3081", + "tarball": "http://registry.npmjs.org/turer/-/turer-0.1.1-2.tgz" + }, + "0.1.1-3": { + "shasum": "1442307af379182cc0e006aefc303c107892cb80", + "tarball": "http://registry.npmjs.org/turer/-/turer-0.1.1-3.tgz" + }, + "0.1.2-1": { + "shasum": "f467f196f99a7eac05a08af1740baa82a9d983ca", + "tarball": "http://registry.npmjs.org/turer/-/turer-0.1.2-1.tgz" + }, + "0.1.3-1": { + "shasum": "7af94a720154f91a3cdb1c53aeb325d3cff7e270", + "tarball": "http://registry.npmjs.org/turer/-/turer-0.1.3-1.tgz" + }, + "0.1.3-2": { + "shasum": "b69f2e1a6d97f9510cd4910c7451100728812833", + "tarball": "http://registry.npmjs.org/turer/-/turer-0.1.3-2.tgz" + } + }, + "url": "http://registry.npmjs.org/turer/" + }, + "turing": { + "name": "turing", + "description": "A library for enumeration, functional programming, promises, and more", + "dist-tags": { + "latest": "0.0.74" + }, + "maintainers": [ + { + "name": "alexyoung", + "email": "a@alexyoung.org" + } + ], + "time": { + "modified": "2011-08-04T14:18:02.406Z", + "created": "2011-07-28T14:30:11.381Z", + "0.0.73": "2011-07-28T14:30:12.110Z", + "0.0.74": "2011-08-04T14:18:02.406Z" + }, + "author": { + "name": "Alex R. Young", + "email": "alex@helicoid.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/alexyoung/turing.js.git" + }, + "versions": { + "0.0.73": "http://registry.npmjs.org/turing/0.0.73", + "0.0.74": "http://registry.npmjs.org/turing/0.0.74" + }, + "dist": { + "0.0.73": { + "shasum": "ccd81b34baef0064b92b94dc067989ddefbca86f", + "tarball": "http://registry.npmjs.org/turing/-/turing-0.0.73.tgz" + }, + "0.0.74": { + "shasum": "dfd6a94ae528c2f34fa965872ee8e6a66688098e", + "tarball": "http://registry.npmjs.org/turing/-/turing-0.0.74.tgz" + } + }, + "url": "http://registry.npmjs.org/turing/" + }, + "tutti": { + "name": "tutti", + "description": "Tutti - a fun way to browser test. Includes both a terminal application(CLI), and a driver library.", + "dist-tags": { + "latest": "0.0.10" + }, + "maintainers": [ + { + "name": "airportyh", + "email": "airportyh@gmail.com" + } + ], + "time": { + "modified": "2011-06-18T02:20:03.255Z", + "created": "2011-04-25T12:58:50.603Z", + "0.0.1": "2011-04-25T12:58:50.921Z", + "0.0.2": "2011-04-27T03:05:04.635Z", + "0.0.3": "2011-04-30T01:32:11.245Z", + "0.0.4": "2011-05-01T02:51:28.589Z", + "0.0.5": "2011-05-01T14:13:16.885Z", + "0.0.6": "2011-05-03T16:53:18.223Z", + "0.0.7": "2011-06-02T16:36:28.827Z", + "0.0.8": "2011-06-17T14:03:39.007Z", + "0.0.9": "2011-06-18T02:19:04.571Z", + "0.0.10": "2011-06-18T02:20:03.255Z" + }, + "author": { + "name": "Toby Ho", + "email": "airportyh@gmail.com", + "url": "http://tuttijs.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/airportyh/tutti.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tutti/0.0.1", + "0.0.2": "http://registry.npmjs.org/tutti/0.0.2", + "0.0.3": "http://registry.npmjs.org/tutti/0.0.3", + "0.0.4": "http://registry.npmjs.org/tutti/0.0.4", + "0.0.5": "http://registry.npmjs.org/tutti/0.0.5", + "0.0.6": "http://registry.npmjs.org/tutti/0.0.6", + "0.0.7": "http://registry.npmjs.org/tutti/0.0.7", + "0.0.8": "http://registry.npmjs.org/tutti/0.0.8", + "0.0.9": "http://registry.npmjs.org/tutti/0.0.9", + "0.0.10": "http://registry.npmjs.org/tutti/0.0.10" + }, + "dist": { + "0.0.1": { + "shasum": "99d755ae071b203f91a5ae20ebaff424198352d4", + "tarball": "http://registry.npmjs.org/tutti/-/tutti-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "183d9d596e99295e898220b5296c4789acd5e2c1", + "tarball": "http://registry.npmjs.org/tutti/-/tutti-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "b1e335bc0162541d5868d3cb7cf26a6f226eddb0", + "tarball": "http://registry.npmjs.org/tutti/-/tutti-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "107821226ee4563c86daf75b427534ec0b0df0ba", + "tarball": "http://registry.npmjs.org/tutti/-/tutti-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "1660520340b392b28eebbbfc755e1bb05af16b6e", + "tarball": "http://registry.npmjs.org/tutti/-/tutti-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "f4b7b491227b0a8dc3bc963077d7b14e4b6ccf16", + "tarball": "http://registry.npmjs.org/tutti/-/tutti-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "49a8d2759dc2e0e11407bcc6e60ebe43f6dea959", + "tarball": "http://registry.npmjs.org/tutti/-/tutti-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "476e871501c2ce856cc1e11b3feac48c92cc09b3", + "tarball": "http://registry.npmjs.org/tutti/-/tutti-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "f6773a2414a4c1a22886357acce60afdf663b0df", + "tarball": "http://registry.npmjs.org/tutti/-/tutti-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "ec5f0aa4e7c92369f1ada0df696c7d54b034abb2", + "tarball": "http://registry.npmjs.org/tutti/-/tutti-0.0.10.tgz" + } + }, + "keywords": [ + "command line", + "javascript", + "testing", + "cli", + "node", + "browser" + ], + "url": "http://registry.npmjs.org/tutti/" + }, + "tuttiserver": { + "name": "tuttiserver", + "description": "The Tutti Server.", + "dist-tags": { + "latest": "0.0.20" + }, + "maintainers": [ + { + "name": "airportyh", + "email": "airportyh@gmail.com" + } + ], + "time": { + "modified": "2011-10-06T03:19:51.789Z", + "created": "2011-04-26T01:42:15.995Z", + "0.0.1": "2011-04-26T01:42:16.240Z", + "0.0.2": "2011-04-27T03:29:26.656Z", + "0.0.3": "2011-04-30T01:32:24.969Z", + "0.0.4": "2011-04-30T01:34:28.365Z", + "0.0.5": "2011-05-01T02:50:50.532Z", + "0.0.6": "2011-05-01T14:13:10.257Z", + "0.0.7": "2011-05-02T17:02:33.764Z", + "0.0.8": "2011-05-07T02:07:17.457Z", + "0.0.9": "2011-05-12T15:41:51.080Z", + "0.0.10": "2011-05-30T03:19:28.987Z", + "0.0.11": "2011-05-31T01:55:23.213Z", + "0.0.12": "2011-06-02T16:36:16.382Z", + "0.0.13": "2011-06-03T03:13:35.014Z", + "0.0.14": "2011-06-17T14:01:30.008Z", + "0.0.15": "2011-06-17T14:07:00.599Z", + "0.0.16": "2011-06-17T14:12:25.192Z", + "0.0.17": "2011-06-18T01:23:53.997Z", + "0.0.18": "2011-06-18T01:27:10.770Z", + "0.0.19": "2011-06-18T02:42:10.823Z", + "0.0.20": "2011-10-06T03:19:51.789Z" + }, + "author": { + "name": "Toby Ho", + "email": "airportyh@gmail.com", + "url": "http://tuttijs.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/airportyh/tutti.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tuttiserver/0.0.1", + "0.0.2": "http://registry.npmjs.org/tuttiserver/0.0.2", + "0.0.3": "http://registry.npmjs.org/tuttiserver/0.0.3", + "0.0.4": "http://registry.npmjs.org/tuttiserver/0.0.4", + "0.0.5": "http://registry.npmjs.org/tuttiserver/0.0.5", + "0.0.6": "http://registry.npmjs.org/tuttiserver/0.0.6", + "0.0.7": "http://registry.npmjs.org/tuttiserver/0.0.7", + "0.0.8": "http://registry.npmjs.org/tuttiserver/0.0.8", + "0.0.9": "http://registry.npmjs.org/tuttiserver/0.0.9", + "0.0.10": "http://registry.npmjs.org/tuttiserver/0.0.10", + "0.0.11": "http://registry.npmjs.org/tuttiserver/0.0.11", + "0.0.12": "http://registry.npmjs.org/tuttiserver/0.0.12", + "0.0.13": "http://registry.npmjs.org/tuttiserver/0.0.13", + "0.0.14": "http://registry.npmjs.org/tuttiserver/0.0.14", + "0.0.15": "http://registry.npmjs.org/tuttiserver/0.0.15", + "0.0.16": "http://registry.npmjs.org/tuttiserver/0.0.16", + "0.0.17": "http://registry.npmjs.org/tuttiserver/0.0.17", + "0.0.18": "http://registry.npmjs.org/tuttiserver/0.0.18", + "0.0.19": "http://registry.npmjs.org/tuttiserver/0.0.19", + "0.0.20": "http://registry.npmjs.org/tuttiserver/0.0.20" + }, + "dist": { + "0.0.1": { + "shasum": "47e0e034eb15409f1c075705d31e3bffc21fa966", + "tarball": "http://registry.npmjs.org/tuttiserver/-/tuttiserver-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "7a7d68ef8a24a10586a299bc07f7073bade5a9fc", + "tarball": "http://registry.npmjs.org/tuttiserver/-/tuttiserver-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "a81521ba4c1a8ab6107c9198d6ef67e937584189", + "tarball": "http://registry.npmjs.org/tuttiserver/-/tuttiserver-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "1befa7eb98f08e4f0164d4c18540406b0cbbb253", + "tarball": "http://registry.npmjs.org/tuttiserver/-/tuttiserver-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "829aa80bd91b459cf05d7378e0d283b7f46bbe63", + "tarball": "http://registry.npmjs.org/tuttiserver/-/tuttiserver-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "832d7d351e4926acf229ca1390c83d163059e9ef", + "tarball": "http://registry.npmjs.org/tuttiserver/-/tuttiserver-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "9bf66225fd3bb6181d72e8e035d3d74d475ebbdf", + "tarball": "http://registry.npmjs.org/tuttiserver/-/tuttiserver-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "897e985516f08a853ecaf1c7e6b3cf5e71bec10a", + "tarball": "http://registry.npmjs.org/tuttiserver/-/tuttiserver-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "e819224326f495fde807c45b4fb4eeaa0eff43a3", + "tarball": "http://registry.npmjs.org/tuttiserver/-/tuttiserver-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "9e8fafad4f3a673e95f1a1e365eabe689b3d1dc1", + "tarball": "http://registry.npmjs.org/tuttiserver/-/tuttiserver-0.0.10.tgz" + }, + "0.0.11": { + "shasum": "7079061093377d69bd1579e1f070f994e06a6468", + "tarball": "http://registry.npmjs.org/tuttiserver/-/tuttiserver-0.0.11.tgz" + }, + "0.0.12": { + "shasum": "9e14fb985ca664b63573fa25e8af32edd4e194d7", + "tarball": "http://registry.npmjs.org/tuttiserver/-/tuttiserver-0.0.12.tgz" + }, + "0.0.13": { + "shasum": "85beb56377c5c6c356dbf964d7dd622b702d909f", + "tarball": "http://registry.npmjs.org/tuttiserver/-/tuttiserver-0.0.13.tgz" + }, + "0.0.14": { + "shasum": "cca0ef4d51d5971f7c42099fdc987e4b58064399", + "tarball": "http://registry.npmjs.org/tuttiserver/-/tuttiserver-0.0.14.tgz" + }, + "0.0.15": { + "shasum": "d3c776629472e5d9340996853613e41dbb1d77bb", + "tarball": "http://registry.npmjs.org/tuttiserver/-/tuttiserver-0.0.15.tgz" + }, + "0.0.16": { + "shasum": "448b9a7f9c2f5fe9a0b8d02463f0bbd0d06b4821", + "tarball": "http://registry.npmjs.org/tuttiserver/-/tuttiserver-0.0.16.tgz" + }, + "0.0.17": { + "shasum": "1c030afd0b6fff52811d18891d90ce54f4aed681", + "tarball": "http://registry.npmjs.org/tuttiserver/-/tuttiserver-0.0.17.tgz" + }, + "0.0.18": { + "shasum": "beda82820188cb12adf2a0da82f0f66e9ad57861", + "tarball": "http://registry.npmjs.org/tuttiserver/-/tuttiserver-0.0.18.tgz" + }, + "0.0.19": { + "shasum": "85f51511824ff59f58c523ac8de66b079ad37f45", + "tarball": "http://registry.npmjs.org/tuttiserver/-/tuttiserver-0.0.19.tgz" + }, + "0.0.20": { + "shasum": "a6da07c6c6f7df8275ed5674fc5753de041b8fce", + "tarball": "http://registry.npmjs.org/tuttiserver/-/tuttiserver-0.0.20.tgz" + } + }, + "keywords": [ + "javascript", + "testing", + "node", + "browser", + "server" + ], + "url": "http://registry.npmjs.org/tuttiserver/" + }, + "tuttiterm": { + "name": "tuttiterm", + "description": "Tutti in your terminal. A CLI interface in your terminal for Tutti - the multi-browser interactive Javascript shell.", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "airportyh", + "email": "airportyh@gmail.com" + } + ], + "time": { + "modified": "2011-03-06T02:51:42.371Z", + "created": "2011-03-03T08:56:46.317Z", + "0.0.1": "2011-03-03T08:56:46.521Z", + "0.0.2": "2011-03-05T05:52:23.221Z", + "0.0.3": "2011-03-06T02:51:42.371Z" + }, + "author": { + "name": "Toby Ho", + "email": "airportyh@gmail.com", + "url": "http://tobyho.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/airportyh/tuttiterm.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tuttiterm/0.0.1", + "0.0.2": "http://registry.npmjs.org/tuttiterm/0.0.2", + "0.0.3": "http://registry.npmjs.org/tuttiterm/0.0.3" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/tuttiterm/-/tuttiterm-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/tuttiterm/-/tuttiterm-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/tuttiterm/-/tuttiterm-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/tuttiterm/" + }, + "tvister": { + "name": "tvister", + "description": "Nodejs live status checker for JustinTV, Own3d, Regame, etc.", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "ndragomirov", + "email": "jdavid214@gmail.com" + } + ], + "time": { + "modified": "2011-08-19T10:35:27.528Z", + "created": "2011-08-11T19:21:11.802Z", + "0.0.1a": "2011-08-11T19:21:12.602Z", + "0.0.2": "2011-08-18T20:38:39.274Z", + "0.0.3": "2011-08-19T10:35:27.528Z" + }, + "author": { + "name": "Ndragomirov [jdavid214@gmail.com]" + }, + "repository": { + "type": "git", + "url": "git://github.com/Ndragomirov/Tvister.git" + }, + "versions": { + "0.0.1a": "http://registry.npmjs.org/tvister/0.0.1a", + "0.0.2": "http://registry.npmjs.org/tvister/0.0.2", + "0.0.3": "http://registry.npmjs.org/tvister/0.0.3" + }, + "dist": { + "0.0.1a": { + "shasum": "ac95b5f078d2fcc7b07c03b944ac76cc9336d360", + "tarball": "http://registry.npmjs.org/tvister/-/tvister-0.0.1a.tgz" + }, + "0.0.2": { + "shasum": "f0743b476858937973878e78ad2779341e07c968", + "tarball": "http://registry.npmjs.org/tvister/-/tvister-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "66d988264161501b3504eeabd660b43941f37b66", + "tarball": "http://registry.npmjs.org/tvister/-/tvister-0.0.3.tgz" + } + }, + "keywords": [ + "JustinTV", + "Own3d", + "Regame", + "live" + ], + "url": "http://registry.npmjs.org/tvister/" + }, + "tw-node-ldap": { + "name": "tw-node-ldap", + "description": "LDAP Binding for node.js", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "pawawat", + "email": "pawawat@throughwave.co.th" + } + ], + "time": { + "modified": "2011-11-01T07:00:40.662Z", + "created": "2011-11-01T07:00:36.425Z", + "0.0.4": "2011-11-01T07:00:40.662Z" + }, + "author": { + "name": "Jeremy Childs", + "email": "jeremyc@ssimicro.com" + }, + "repository": { + "type": "git", + "url": "http://192.168.178.10/git/node_modules/tw-node-ldap" + }, + "versions": { + "0.0.4": "http://registry.npmjs.org/tw-node-ldap/0.0.4" + }, + "dist": { + "0.0.4": { + "shasum": "42c62a4d6b4d374ff1d17960a8c1a57bc04af12f", + "tarball": "http://registry.npmjs.org/tw-node-ldap/-/tw-node-ldap-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/tw-node-ldap/" + }, + "twbot": { + "name": "twbot", + "description": "Twitter bot microframework using node.js", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "yssk22", + "email": "yssk22@gmail.com" + } + ], + "author": { + "name": "Yohei Sasaki", + "email": "yssk22@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/yssk22/node-twbot.git" + }, + "time": { + "modified": "2011-09-27T15:02:23.763Z", + "created": "2011-02-27T09:25:16.837Z", + "0.0.1": "2011-02-27T09:25:16.837Z", + "0.0.2": "2011-02-27T09:25:16.837Z", + "0.0.3": "2011-02-27T09:25:16.837Z", + "0.1.0": "2011-06-15T14:50:59.226Z", + "0.1.1": "2011-09-27T15:02:23.763Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/twbot/0.0.1", + "0.0.2": "http://registry.npmjs.org/twbot/0.0.2", + "0.0.3": "http://registry.npmjs.org/twbot/0.0.3", + "0.1.0": "http://registry.npmjs.org/twbot/0.1.0", + "0.1.1": "http://registry.npmjs.org/twbot/0.1.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/twbot/-/twbot-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/twbot/-/twbot-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "ae07d7ca395a81810d4c169127aecb96247f9058", + "tarball": "http://registry.npmjs.org/twbot/-/twbot-0.0.3.tgz" + }, + "0.1.0": { + "shasum": "a3228b2fda5e7961e0b0769eb3ec015397c0d027", + "tarball": "http://registry.npmjs.org/twbot/-/twbot-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "1fc0a23e5e7bbe6348026fca58fcbc7997048855", + "tarball": "http://registry.npmjs.org/twbot/-/twbot-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/twbot/" + }, + "tweasy": { + "name": "tweasy", + "description": "OAuth-enabled Twitter Client with streaming and regular API calls", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "jchris", + "email": "jchris@couch.io" + } + ], + "author": { + "name": "J Chris Anderson", + "email": "jchris@couch.io", + "url": "http://jchrisa.net" + }, + "repository": { + "type": "git", + "url": "http://github.com/jchris/tweasy.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/tweasy/0.1.0", + "0.1.1": "http://registry.npmjs.org/tweasy/0.1.1", + "0.1.2": "http://registry.npmjs.org/tweasy/0.1.2" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/tweasy/-/tweasy-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://packages:5984/tweasy/-/tweasy-0.1.1.tgz" + }, + "0.1.2": { + "tarball": "http://packages:5984/tweasy/-/tweasy-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/tweasy/" + }, + "tweeter": { + "name": "tweeter", + "description": "A wrapper to twitter's API", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "jimschubert", + "email": "james.schubert@gmail.com" + } + ], + "time": { + "modified": "2011-09-24T03:16:17.945Z", + "created": "2011-09-23T21:47:41.785Z", + "0.0.1": "2011-09-23T21:47:41.891Z", + "0.0.2": "2011-09-23T22:04:32.965Z", + "0.0.3": "2011-09-23T22:42:40.047Z", + "0.0.4": "2011-09-24T03:16:17.945Z" + }, + "author": { + "name": "Jim Schubert", + "email": "james.schubert@gmail.com", + "url": "http://github.com/jimschubert" + }, + "repository": { + "type": "git", + "url": "git://github.com/jimschubert/tweeter.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tweeter/0.0.1", + "0.0.2": "http://registry.npmjs.org/tweeter/0.0.2", + "0.0.3": "http://registry.npmjs.org/tweeter/0.0.3", + "0.0.4": "http://registry.npmjs.org/tweeter/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "d2f38de16983d0b488024eea6236f0f836671095", + "tarball": "http://registry.npmjs.org/tweeter/-/tweeter-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "065f2a9666998f01e26c9565069def90b0612125", + "tarball": "http://registry.npmjs.org/tweeter/-/tweeter-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "bd3a394dc94b292d9b53f3c1ecb11abd34bea23f", + "tarball": "http://registry.npmjs.org/tweeter/-/tweeter-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "2fbcd9443c687b188a112002ec87b0e11b8c1635", + "tarball": "http://registry.npmjs.org/tweeter/-/tweeter-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/tweeter/" + }, + "tweeter.js": { + "name": "tweeter.js", + "description": "A wrapper to twitter's API", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "jimschubert", + "email": "james.schubert@gmail.com" + } + ], + "time": { + "modified": "2011-09-23T21:43:20.805Z", + "created": "2011-09-21T01:17:15.543Z", + "0.0.1": "2011-09-21T01:17:15.663Z", + "0.0.2": "2011-09-23T21:43:20.805Z" + }, + "author": { + "name": "Jim Schubert", + "email": "james.schubert@gmail.com", + "url": "http://github.com/jimschubert" + }, + "repository": { + "type": "git", + "url": "git://github.com/jimschubert/tweeter.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tweeter.js/0.0.1", + "0.0.2": "http://registry.npmjs.org/tweeter.js/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "e16523b2cc4f5f53034114e71f5bd3058c964065", + "tarball": "http://registry.npmjs.org/tweeter.js/-/tweeter.js-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "0dd93561576f7b13a1d1f87458b188b6c0687567", + "tarball": "http://registry.npmjs.org/tweeter.js/-/tweeter.js-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/tweeter.js/" + }, + "tweetstream": { + "name": "tweetstream", + "description": "Stream API for twitter data.", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "mikeal", + "email": "mikeal.rogers@gmail.com" + } + ], + "author": { + "name": "Mikeal Rogers", + "email": "mikeal.rogers@gmail.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/mikeal/tweetstream.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/tweetstream/0.2.0" + }, + "dist": { + "0.2.0": { + "tarball": "http://packages:5984/tweetstream/-/tweetstream-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/tweetstream/" + }, + "tweetstreamer": { + "name": "tweetstreamer", + "description": "Twitter Streaming API delivered via websockets", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "alexdoronin", + "email": "alexeydoronin@gmail.com" + } + ], + "time": { + "modified": "2011-09-29T06:41:50.768Z", + "created": "2011-09-29T06:41:49.128Z", + "0.0.1": "2011-09-29T06:41:50.768Z" + }, + "author": { + "name": "Alexey Doronin" + }, + "repository": { + "type": "git", + "url": "git://github.com/doronin/tweetstreamer.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tweetstreamer/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "f54aa4e370f0d28d66bf1a5d8d8b37a057e0b8ab", + "tarball": "http://registry.npmjs.org/tweetstreamer/-/tweetstreamer-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/tweetstreamer/" + }, + "twerk": { + "name": "twerk", + "description": "A message framing module that makes sending and receiving messages on a stream a piece of cake.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "rbranson", + "email": "rick@diodeware.com" + } + ], + "author": { + "name": "Rick Branson" + }, + "repository": { + "type": "git", + "url": "http://github.com/rbranson/twerk.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/twerk/0.1.0", + "0.1.1": "http://registry.npmjs.org/twerk/0.1.1" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/twerk/-/twerk-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://registry.npmjs.org/twerk/-/twerk-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/twerk/" + }, + "twerp": { + "name": "twerp", + "description": "Really simple, class based testing framework for node and Coffeescript.", + "dist-tags": { + "latest": "1.0.5" + }, + "maintainers": [ + { + "name": "philjackson", + "email": "npm@shellarchive.co.uk" + } + ], + "time": { + "modified": "2011-10-17T15:41:15.715Z", + "created": "2011-02-18T18:30:50.856Z", + "0.1.0": "2011-02-18T18:30:51.312Z", + "0.2.0": "2011-02-19T16:04:56.271Z", + "0.3.0": "2011-02-20T16:53:38.247Z", + "0.4.0": "2011-06-07T11:04:01.135Z", + "0.4.1": "2011-06-07T15:02:09.399Z", + "0.4.2": "2011-06-20T13:11:29.497Z", + "1.0.0": "2011-06-27T15:11:54.911Z", + "1.0.1": "2011-07-24T17:37:40.309Z", + "1.0.2": "2011-08-10T18:25:00.067Z", + "1.0.3": "2011-08-10T18:45:35.169Z", + "1.0.4": "2011-08-12T14:59:52.381Z", + "1.0.5": "2011-10-17T15:41:15.715Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/philjackson/twerp.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/twerp/0.1.0", + "0.2.0": "http://registry.npmjs.org/twerp/0.2.0", + "0.3.0": "http://registry.npmjs.org/twerp/0.3.0", + "0.4.0": "http://registry.npmjs.org/twerp/0.4.0", + "0.4.1": "http://registry.npmjs.org/twerp/0.4.1", + "0.4.2": "http://registry.npmjs.org/twerp/0.4.2", + "1.0.0": "http://registry.npmjs.org/twerp/1.0.0", + "1.0.1": "http://registry.npmjs.org/twerp/1.0.1", + "1.0.2": "http://registry.npmjs.org/twerp/1.0.2", + "1.0.3": "http://registry.npmjs.org/twerp/1.0.3", + "1.0.4": "http://registry.npmjs.org/twerp/1.0.4", + "1.0.5": "http://registry.npmjs.org/twerp/1.0.5" + }, + "dist": { + "0.1.0": { + "shasum": "5429f3053468ac7260375feadf5fedeb23190187", + "tarball": "http://registry.npmjs.org/twerp/-/twerp-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "dbf91da9ebe4e3733622c13e83c0a9057ca2cf42", + "tarball": "http://registry.npmjs.org/twerp/-/twerp-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "8295de16f3da142f5e7bfe691a1dfe8c19ba6dbe", + "tarball": "http://registry.npmjs.org/twerp/-/twerp-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "de9f5f8e960dfbb9f4dc21fe31671a571fe74c9d", + "tarball": "http://registry.npmjs.org/twerp/-/twerp-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "67920a48a6ab8177d91e313e803d414ad0a7320f", + "tarball": "http://registry.npmjs.org/twerp/-/twerp-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "e7d66ac301df6dec50101a025fe63a43a5ae36e4", + "tarball": "http://registry.npmjs.org/twerp/-/twerp-0.4.2.tgz" + }, + "1.0.0": { + "shasum": "6553316ff714a35aae03f0e78a9d66d36bf85ba9", + "tarball": "http://registry.npmjs.org/twerp/-/twerp-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "0100a9f915535ba1bde29b744342fac008e5331f", + "tarball": "http://registry.npmjs.org/twerp/-/twerp-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "f92e17d41fbc827016afbda620a9cd1ea4228fc3", + "tarball": "http://registry.npmjs.org/twerp/-/twerp-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "41210dab526678c94f6c9d58363da7a954178e74", + "tarball": "http://registry.npmjs.org/twerp/-/twerp-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "8bf14908dcc7507e10ee064167079d36428bc451", + "tarball": "http://registry.npmjs.org/twerp/-/twerp-1.0.4.tgz" + }, + "1.0.5": { + "shasum": "6e3ffb521f74cf45c99755bb7f567fe32b249b36", + "tarball": "http://registry.npmjs.org/twerp/-/twerp-1.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/twerp/" + }, + "twig": { + "name": "twig", + "description": "JS port of the Twig templating language.", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "justjohn", + "email": "john@justjohn.us" + } + ], + "time": { + "modified": "2011-10-23T03:48:39.221Z", + "created": "2011-10-15T22:26:22.758Z", + "0.1.0": "2011-10-15T22:26:23.482Z", + "0.2.0": "2011-10-23T03:26:54.255Z" + }, + "author": { + "name": "John Roepke", + "email": "john@justjohn.us", + "url": "http://foundryjs.com/" + }, + "repository": { + "type": "hg", + "url": "https://bitbucket.org/justjohn/twig.js" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/twig/0.1.0", + "0.2.0": "http://registry.npmjs.org/twig/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "9d28e95e65b855acb5b80c8b82a4e37d3d53932a", + "tarball": "http://registry.npmjs.org/twig/-/twig-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "493b751717e5ad668ab4f5966ab50316246ccb60", + "tarball": "http://registry.npmjs.org/twig/-/twig-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/twig/" + }, + "twigjs": { + "name": "twigjs", + "description": "A port of PHP template engine (www.twig-project.org) to Javascript", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "fadrizul", + "email": "fadrizul@gmail.com" + } + ], + "time": { + "modified": "2011-09-20T12:41:08.264Z", + "created": "2011-09-18T12:54:23.682Z", + "0.0.2": "2011-09-18T12:54:49.392Z", + "0.0.3": "2011-09-18T16:08:45.907Z", + "0.0.4": "2011-09-20T12:41:08.264Z" + }, + "author": { + "name": "Fadrizul Hasani", + "email": "fadrizul@twigjs.org", + "url": "github.com/fadrizul" + }, + "repository": { + "type": "git", + "url": "git://github.com/fadrizul/twigjs.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/twigjs/0.0.2", + "0.0.3": "http://registry.npmjs.org/twigjs/0.0.3", + "0.0.4": "http://registry.npmjs.org/twigjs/0.0.4" + }, + "dist": { + "0.0.2": { + "shasum": "32824d472ee1618de0f1f2d51dbc1f65fdb1dee5", + "tarball": "http://registry.npmjs.org/twigjs/-/twigjs-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "41a6989fe15a6269c7e763371214a723ead1924d", + "tarball": "http://registry.npmjs.org/twigjs/-/twigjs-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "80b362cf8a6c370f5b3cbdc81d09840e0ffceaa1", + "tarball": "http://registry.npmjs.org/twigjs/-/twigjs-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/twigjs/" + }, + "TwigJS": { + "name": "TwigJS", + "description": "A port of PHP template engine (www.twig-project.org) to Javascript", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "fadrizul", + "email": "fadrizul@gmail.com" + } + ], + "time": { + "modified": "2011-09-18T12:49:40.677Z", + "created": "2011-09-18T12:49:15.000Z", + "0.0.2": "2011-09-18T12:49:40.677Z" + }, + "author": { + "name": "Fadrizul H.", + "email": "fadrizul@gmail.com", + "url": "github.com/fadrizul" + }, + "repository": { + "type": "git", + "url": "git://github.com/fadrizul/twigjs.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/TwigJS/0.0.2" + }, + "dist": { + "0.0.2": { + "shasum": "afe366bc08f4c4f2df5d0831f8f14ee743186e4b", + "tarball": "http://registry.npmjs.org/TwigJS/-/TwigJS-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/TwigJS/" + }, + "twilio": { + "name": "twilio", + "description": "A Twilio helper library", + "dist-tags": { + "latest": "0.4.0" + }, + "maintainers": [ + { + "name": "sjwalter", + "email": "stephenwalters@gmail.com" + } + ], + "author": { + "name": "Stephen Walters", + "url": "http://github.com/sjwalter" + }, + "repository": { + "type": "git", + "url": "https://github.com/sjwalter/node-twilio.git" + }, + "time": { + "modified": "2011-04-04T17:03:59.535Z", + "created": "2011-03-08T00:34:18.576Z", + "0.0.0": "2011-03-08T00:34:18.576Z", + "0.0.1": "2011-03-08T00:34:18.576Z", + "0.0.3": "2011-03-08T00:34:18.576Z", + "0.0.4": "2011-03-08T00:34:18.576Z", + "0.2.0": "2011-03-08T00:34:18.576Z", + "0.3.0": "2011-03-08T00:34:18.576Z", + "0.4.0": "2011-04-04T17:03:59.535Z" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/twilio/0.0.0", + "0.0.1": "http://registry.npmjs.org/twilio/0.0.1", + "0.0.3": "http://registry.npmjs.org/twilio/0.0.3", + "0.0.4": "http://registry.npmjs.org/twilio/0.0.4", + "0.2.0": "http://registry.npmjs.org/twilio/0.2.0", + "0.3.0": "http://registry.npmjs.org/twilio/0.3.0", + "0.4.0": "http://registry.npmjs.org/twilio/0.4.0" + }, + "dist": { + "0.0.0": { + "tarball": "http://packages:5984/twilio/-/twilio-0.0.0.tgz" + }, + "0.0.1": { + "tarball": "http://packages:5984/twilio/-/twilio-0.0.1.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/twilio/-/twilio-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://packages:5984/twilio/-/twilio-0.0.4.tgz" + }, + "0.2.0": { + "tarball": "http://registry.npmjs.org/twilio/-/twilio-0.2.0.tgz" + }, + "0.3.0": { + "tarball": "http://registry.npmjs.org/twilio/-/twilio-0.3.0.tgz" + }, + "0.4.0": { + "tarball": "http://registry.npmjs.org/twilio/-/twilio-0.4.0.tgz" + } + }, + "keywords": [ + "twilio", + "sms", + "api" + ], + "url": "http://registry.npmjs.org/twilio/" + }, + "twilio-node": { + "name": "twilio-node", + "description": "A quick wrapper around the Twilio API", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "mcotton", + "email": "mcotton@mcottondesign.com" + } + ], + "time": { + "modified": "2011-04-17T01:18:36.684Z", + "created": "2011-03-19T16:37:28.598Z", + "0.0.0": "2011-03-19T16:37:28.856Z", + "0.0.1": "2011-04-09T02:03:38.047Z", + "0.0.22": "2011-04-09T02:13:34.982Z", + "0.0.3": "2011-04-09T02:16:52.462Z", + "0.0.4": "2011-04-17T01:18:36.684Z" + }, + "author": { + "name": "mcotton", + "email": "mcotton@mcottondesign.com", + "url": "mcottondesign.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mcotton/twilio-node.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/twilio-node/0.0.0", + "0.0.1": "http://registry.npmjs.org/twilio-node/0.0.1", + "0.0.3": "http://registry.npmjs.org/twilio-node/0.0.3", + "0.0.4": "http://registry.npmjs.org/twilio-node/0.0.4" + }, + "dist": { + "0.0.0": { + "shasum": "4c93351ef5c4c809c89ec69cdc2506b2fd934a0f", + "tarball": "http://registry.npmjs.org/twilio-node/-/twilio-node-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "7f4d74c172b9d4bf1f91c71d5f7b579d72af615d", + "tarball": "http://registry.npmjs.org/twilio-node/-/twilio-node-0.0.1.tgz" + }, + "0.0.3": { + "shasum": "5e13b3586acc36e7b8ffdc099933aa12aebf21dc", + "tarball": "http://registry.npmjs.org/twilio-node/-/twilio-node-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "09550c9613f45b24058c09a7a1f0bc84190b8ab5", + "tarball": "http://registry.npmjs.org/twilio-node/-/twilio-node-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/twilio-node/" + }, + "twilio2": { + "name": "twilio2", + "description": "A Twilio helper library", + "dist-tags": { + "latest": "0.3.2" + }, + "maintainers": [ + { + "name": "architectd", + "email": "craig.j.condon@gmail.com" + } + ], + "time": { + "modified": "2011-10-25T02:11:13.192Z", + "created": "2011-10-25T02:11:12.519Z", + "0.3.2": "2011-10-25T02:11:13.192Z" + }, + "author": { + "name": "Stephen Walters", + "url": "http://github.com/sjwalter" + }, + "repository": { + "type": "git", + "url": "git://github.com/sjwalter/node-twilio.git" + }, + "versions": { + "0.3.2": "http://registry.npmjs.org/twilio2/0.3.2" + }, + "dist": { + "0.3.2": { + "shasum": "8db641d3a4d0584ca52987435234b747d491a6d2", + "tarball": "http://registry.npmjs.org/twilio2/-/twilio2-0.3.2.tgz" + } + }, + "url": "http://registry.npmjs.org/twilio2/" + }, + "twiliode": { + "name": "twiliode", + "description": "A Twilio helper library for Node.js", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "sjwalter", + "email": "stephenwalters@gmail.com" + } + ], + "author": { + "name": "Stephen Walters", + "url": "http://github.com/sjwalter" + }, + "repository": { + "type": "git", + "url": "http;//github.com/sjwalter/node-twilio.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/twiliode/0.1.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/twiliode/-/twiliode-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/twiliode/" + }, + "twill": { + "name": "twill", + "description": "a clean javascript aspect oriented microframework", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "gtanner", + "email": "gtanner@gmail.com" + } + ], + "time": { + "modified": "2011-08-16T02:14:04.465Z", + "created": "2011-06-04T02:29:13.126Z", + "0.0.1": "2011-06-04T02:29:13.672Z", + "0.0.2": "2011-08-16T02:14:04.465Z" + }, + "author": { + "name": "gtanner" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/twill/0.0.1", + "0.0.2": "http://registry.npmjs.org/twill/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "174f90a464705883359b5adf6968eaba4af39075", + "tarball": "http://registry.npmjs.org/twill/-/twill-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "1260989ce60ac25f05d97d0bdd00bab7fa47964a", + "tarball": "http://registry.npmjs.org/twill/-/twill-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/twill/" + }, + "twisted-deferred": { + "name": "twisted-deferred", + "description": "Deferreds following twisteds style.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "my8bird", + "email": "my8bird@gmail.com" + } + ], + "time": { + "modified": "2011-11-06T18:58:50.708Z", + "created": "2011-08-03T02:22:27.500Z", + "0.0.1": "2011-08-03T02:22:27.773Z", + "0.1.0": "2011-08-03T02:23:05.576Z", + "0.1.1": "2011-11-06T18:58:50.708Z" + }, + "author": { + "name": "Nathan Landis", + "email": "my8bird@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/my8bird/nodejs-twisted-deferreds.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/twisted-deferred/0.0.1", + "0.1.0": "http://registry.npmjs.org/twisted-deferred/0.1.0", + "0.1.1": "http://registry.npmjs.org/twisted-deferred/0.1.1" + }, + "dist": { + "0.0.1": { + "shasum": "5c41ec4ccdc2c41a0ce93fd5159caaa90b1ffa3c", + "tarball": "http://registry.npmjs.org/twisted-deferred/-/twisted-deferred-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "b41df259f5ff2bd9ab056dd87ddcddade56b5b70", + "tarball": "http://registry.npmjs.org/twisted-deferred/-/twisted-deferred-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "bd00e222cd427046ee066d55d988804f371acecc", + "tarball": "http://registry.npmjs.org/twisted-deferred/-/twisted-deferred-0.1.1.tgz" + } + }, + "keywords": [ + "async", + "deferred", + "twisted" + ], + "url": "http://registry.npmjs.org/twisted-deferred/" + }, + "twister": { + "name": "twister", + "description": "A library to manipulate URI style strings.", + "dist-tags": { + "latest": "0.2.0" + }, + "readme": null, + "maintainers": [ + { + "name": "antz29", + "email": "jp@antz29.com" + } + ], + "time": { + "modified": "2011-11-08T04:08:36.046Z", + "created": "2011-11-07T14:48:40.541Z", + "0.1.2": "2011-11-07T14:49:00.686Z", + "0.1.3": "2011-11-07T15:01:31.858Z", + "0.1.4": "2011-11-07T15:12:01.853Z", + "0.1.5": "2011-11-07T15:19:39.959Z", + "0.1.6": "2011-11-07T18:13:37.143Z", + "0.2.0": "2011-11-08T04:08:36.046Z" + }, + "author": { + "name": "John Le Drew", + "email": "jp@antz29.com", + "url": "http://antz29.com" + }, + "repository": { + "type": "git", + "url": "git:/git://github.com/antz29/node-twister.git" + }, + "versions": { + "0.1.2": "http://registry.npmjs.org/twister/0.1.2", + "0.1.3": "http://registry.npmjs.org/twister/0.1.3", + "0.1.4": "http://registry.npmjs.org/twister/0.1.4", + "0.1.5": "http://registry.npmjs.org/twister/0.1.5", + "0.1.6": "http://registry.npmjs.org/twister/0.1.6", + "0.2.0": "http://registry.npmjs.org/twister/0.2.0" + }, + "dist": { + "0.1.2": { + "shasum": "5649b1278014043920699d0ed3ae8acdb5b8643d", + "tarball": "http://registry.npmjs.org/twister/-/twister-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "75250e139389821e672b492f7d4de5b522b69512", + "tarball": "http://registry.npmjs.org/twister/-/twister-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "6f423e823030262cb37a72f172a50a5a303e4f68", + "tarball": "http://registry.npmjs.org/twister/-/twister-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "825b2f9a741b7122d92597f7ffa873669d267331", + "tarball": "http://registry.npmjs.org/twister/-/twister-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "6d4b83ad321f315a4d41d5f16d8f13cbd5a3580f", + "tarball": "http://registry.npmjs.org/twister/-/twister-0.1.6.tgz" + }, + "0.2.0": { + "shasum": "a46563b21ddad4405c74dbf79235a627d38a0808", + "tarball": "http://registry.npmjs.org/twister/-/twister-0.2.0.tgz" + } + }, + "keywords": [ + "uri", + "rewrite" + ], + "url": "http://registry.npmjs.org/twister/" + }, + "twitpic": { + "name": "twitpic", + "description": "Library for querying the full TwitPic API including photo uploads", + "dist-tags": { + "latest": "3.0.1" + }, + "maintainers": [ + { + "name": "meltingice", + "email": "meltingice8917@gmail.com" + } + ], + "time": { + "modified": "2011-11-07T02:03:26.487Z", + "created": "2011-05-05T00:00:43.875Z", + "1.0.0": "2011-05-05T00:00:44.180Z", + "2.0.0": "2011-05-05T06:03:10.500Z", + "3.0.0": "2011-07-25T02:44:51.352Z", + "3.0.1": "2011-11-07T02:03:26.487Z" + }, + "author": { + "name": "Ryan LeFevre", + "email": "ryan@twitpic.com", + "url": "http://meltingice.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/meltingice/js-twitpic.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/twitpic/1.0.0", + "2.0.0": "http://registry.npmjs.org/twitpic/2.0.0", + "3.0.0": "http://registry.npmjs.org/twitpic/3.0.0", + "3.0.1": "http://registry.npmjs.org/twitpic/3.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "a42da34e7a01a8d4fece47506aef2aa9fbfc2550", + "tarball": "http://registry.npmjs.org/twitpic/-/twitpic-1.0.0.tgz" + }, + "2.0.0": { + "shasum": "4418187bb04249f80c6c90cad1da985716c43075", + "tarball": "http://registry.npmjs.org/twitpic/-/twitpic-2.0.0.tgz" + }, + "3.0.0": { + "shasum": "ef64ab36089b2ec881e1dfc95989f758c4bd7fa1", + "tarball": "http://registry.npmjs.org/twitpic/-/twitpic-3.0.0.tgz" + }, + "3.0.1": { + "shasum": "004d8d5e6317e173ef32cd9144f45b776fa38cd7", + "tarball": "http://registry.npmjs.org/twitpic/-/twitpic-3.0.1.tgz" + } + }, + "keywords": [ + "twitpic", + "API", + "query", + "client", + "images", + "photos", + "upload" + ], + "url": "http://registry.npmjs.org/twitpic/" + }, + "twitter": { + "name": "twitter", + "description": "Asynchronous Twitter REST/stream/search client API for node.js.", + "dist-tags": { + "latest": "0.1.17" + }, + "maintainers": [ + { + "name": "jdub", + "email": "jdub@bethesignal.org" + } + ], + "time": { + "modified": "2011-05-08T05:45:39.954Z", + "created": "2010-12-22T05:52:57.962Z", + "0.1.0": "2010-12-22T05:52:58.593Z", + "0.1.1": "2010-12-22T16:01:47.334Z", + "0.1.2": "2010-12-23T17:11:40.802Z", + "0.1.3": "2010-12-24T06:08:16.929Z", + "0.1.4": "2010-12-29T04:16:24.841Z", + "0.1.5": "2010-12-31T12:07:12.106Z", + "0.1.6": "2011-01-02T04:30:17.091Z", + "0.1.7": "2011-01-04T09:39:24.216Z", + "0.1.8": "2011-01-04T13:18:03.382Z", + "0.1.9": "2011-01-04T16:51:24.583Z", + "0.1.10": "2011-01-05T03:16:36.081Z", + "0.1.11": "2011-01-10T00:25:52.593Z", + "0.1.12": "2011-01-13T00:44:15.145Z", + "0.1.13": "2011-01-14T02:41:17.602Z", + "0.1.14": "2011-02-08T06:28:42.596Z", + "0.1.15": "2011-02-18T12:07:29.127Z", + "0.1.16": "2011-02-19T04:45:55.323Z", + "0.1.17": "2011-05-08T05:45:39.954Z" + }, + "author": { + "name": "jdub" + }, + "repository": { + "type": "git", + "url": "git://github.com/jdub/node-twitter.git" + }, + "versions": { + "0.1.11": "http://registry.npmjs.org/twitter/0.1.11", + "0.1.12": "http://registry.npmjs.org/twitter/0.1.12", + "0.1.13": "http://registry.npmjs.org/twitter/0.1.13", + "0.1.14": "http://registry.npmjs.org/twitter/0.1.14", + "0.1.15": "http://registry.npmjs.org/twitter/0.1.15", + "0.1.16": "http://registry.npmjs.org/twitter/0.1.16", + "0.1.17": "http://registry.npmjs.org/twitter/0.1.17" + }, + "dist": { + "0.1.11": { + "shasum": "f512a7d614c3575b5667040c7767e8cbf7c88c43", + "tarball": "http://registry.npmjs.org/twitter/-/twitter-0.1.11.tgz" + }, + "0.1.12": { + "shasum": "113390bd8cbcce81e12b1a8e47d20669a263c9d9", + "tarball": "http://registry.npmjs.org/twitter/-/twitter-0.1.12.tgz" + }, + "0.1.13": { + "shasum": "0c5ee0613d66b326aa2fcfbab2c1559e8384ebf1", + "tarball": "http://registry.npmjs.org/twitter/-/twitter-0.1.13.tgz" + }, + "0.1.14": { + "shasum": "a154097e512b409ae784564240bf92514655c030", + "tarball": "http://registry.npmjs.org/twitter/-/twitter-0.1.14.tgz" + }, + "0.1.15": { + "shasum": "b258462ac480d2d6ec81e570543a7ed83b6c09a0", + "tarball": "http://registry.npmjs.org/twitter/-/twitter-0.1.15.tgz" + }, + "0.1.16": { + "shasum": "ba6310cf92bab67b9af865eaa8e15e5afd18dc61", + "tarball": "http://registry.npmjs.org/twitter/-/twitter-0.1.16.tgz" + }, + "0.1.17": { + "shasum": "6651d3de429c03317a94d6150c55689a0b37e0f5", + "tarball": "http://registry.npmjs.org/twitter/-/twitter-0.1.17.tgz" + } + }, + "keywords": [ + "twitter", + "streaming", + "oauth" + ], + "url": "http://registry.npmjs.org/twitter/" + }, + "twitter-client": { + "name": "twitter-client", + "description": "node.js module - Twitter Client Library", + "dist-tags": { + "latest": "0.0.7" + }, + "maintainers": [ + { + "name": "masainox", + "email": "masainox@gmail.com" + } + ], + "time": { + "modified": "2011-06-05T14:57:56.324Z", + "created": "2011-05-23T15:12:24.827Z", + "0.0.1": "2011-05-23T15:12:25.664Z", + "0.0.2": "2011-05-24T16:11:30.188Z", + "0.0.3": "2011-05-28T16:11:24.551Z", + "0.0.4": "2011-05-28T17:27:43.523Z", + "0.0.7": "2011-06-05T14:57:56.324Z" + }, + "author": { + "name": "Masato INOUE", + "email": "masainox@gmail.com", + "url": "https://github.com/masainox" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/twitter-client/0.0.1", + "0.0.2": "http://registry.npmjs.org/twitter-client/0.0.2", + "0.0.3": "http://registry.npmjs.org/twitter-client/0.0.3", + "0.0.4": "http://registry.npmjs.org/twitter-client/0.0.4", + "0.0.7": "http://registry.npmjs.org/twitter-client/0.0.7" + }, + "dist": { + "0.0.1": { + "shasum": "38a01edf8af8e7782ab51d496a286731a93a565f", + "tarball": "http://registry.npmjs.org/twitter-client/-/twitter-client-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "42552b3dd2430bf377d8f9fa8a602a002036ac2a", + "tarball": "http://registry.npmjs.org/twitter-client/-/twitter-client-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "c9794d20b8b1c99ef6b0c70eb2d1cce37874531b", + "tarball": "http://registry.npmjs.org/twitter-client/-/twitter-client-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "5c2ce337f29f284c8c89d491bb8688c64d8324be", + "tarball": "http://registry.npmjs.org/twitter-client/-/twitter-client-0.0.4.tgz" + }, + "0.0.7": { + "shasum": "c51cb548a47d51bbb4b107a98694bb9fa96b374c", + "tarball": "http://registry.npmjs.org/twitter-client/-/twitter-client-0.0.7.tgz" + } + }, + "keywords": [ + "twitter", + "oauth", + "social" + ], + "url": "http://registry.npmjs.org/twitter-client/" + }, + "twitter-connect": { + "name": "twitter-connect", + "description": "Twitter authentication for connect apps", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "ddollar", + "email": "ddollar@gmail.com" + } + ], + "author": { + "name": "David Dollar" + }, + "repository": { + "type": "git", + "url": "http://github.com/ddollar/twitter-connect.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/twitter-connect/0.0.1", + "0.1.0": "http://registry.npmjs.org/twitter-connect/0.1.0", + "0.2.0": "http://registry.npmjs.org/twitter-connect/0.2.0", + "0.2.1": "http://registry.npmjs.org/twitter-connect/0.2.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/twitter-connect/-/twitter-connect-0.0.1.tgz" + }, + "0.1.0": { + "tarball": "http://packages:5984/twitter-connect/-/twitter-connect-0.1.0.tgz" + }, + "0.2.0": { + "tarball": "http://packages:5984/twitter-connect/-/twitter-connect-0.2.0.tgz" + }, + "0.2.1": { + "tarball": "http://packages:5984/twitter-connect/-/twitter-connect-0.2.1.tgz" + } + }, + "url": "http://registry.npmjs.org/twitter-connect/" + }, + "twitter-js": { + "name": "twitter-js", + "description": "easy peasy twitter client", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "masylum", + "email": "masylum@gmail.com" + } + ], + "author": { + "name": "Pau Ramon", + "email": "masylum@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/masylum/twitter-js.git" + }, + "time": { + "modified": "2011-06-07T09:09:56.374Z", + "created": "2011-03-11T00:10:19.743Z", + "0.0.1": "2011-03-11T00:10:19.743Z", + "0.0.2": "2011-03-11T00:10:19.743Z", + "0.0.3": "2011-03-11T00:10:19.743Z", + "0.0.4": "2011-03-11T00:10:19.743Z", + "0.0.5": "2011-03-11T00:10:19.743Z", + "0.0.6": "2011-03-11T00:10:19.743Z", + "0.0.7": "2011-03-11T08:17:16.915Z", + "0.1.0": "2011-06-07T09:09:56.374Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/twitter-js/0.0.1", + "0.0.2": "http://registry.npmjs.org/twitter-js/0.0.2", + "0.0.3": "http://registry.npmjs.org/twitter-js/0.0.3", + "0.0.4": "http://registry.npmjs.org/twitter-js/0.0.4", + "0.0.5": "http://registry.npmjs.org/twitter-js/0.0.5", + "0.0.6": "http://registry.npmjs.org/twitter-js/0.0.6", + "0.0.7": "http://registry.npmjs.org/twitter-js/0.0.7", + "0.1.0": "http://registry.npmjs.org/twitter-js/0.1.0" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/twitter-js/-/twitter-js-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/twitter-js/-/twitter-js-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/twitter-js/-/twitter-js-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://registry.npmjs.org/twitter-js/-/twitter-js-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://registry.npmjs.org/twitter-js/-/twitter-js-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "0f45f80dadb851df1f0ac572ff9529e160113ac4", + "tarball": "http://registry.npmjs.org/twitter-js/-/twitter-js-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "d287c44f42012b985e11559b9f3762912a662413", + "tarball": "http://registry.npmjs.org/twitter-js/-/twitter-js-0.0.7.tgz" + }, + "0.1.0": { + "shasum": "5da50a2d7b0c64c3b61f5feab027a47af6e78603", + "tarball": "http://registry.npmjs.org/twitter-js/-/twitter-js-0.1.0.tgz" + } + }, + "keywords": [ + "twitter" + ], + "url": "http://registry.npmjs.org/twitter-js/" + }, + "twitter-node": { + "name": "twitter-node", + "description": "node.js stream API for the twitter streaming HTTP API", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "Tim-Smart", + "email": "tim@fostle.com" + } + ], + "author": { + "name": "technoweenie" + }, + "repository": { + "type": "git", + "url": "git://github.com/technoweenie/twitter-node.git" + }, + "time": { + "modified": "2011-03-28T00:31:08.240Z", + "created": "2011-03-28T00:31:04.873Z", + "0.0.1": "2011-03-28T00:31:04.873Z", + "0.0.2": "2011-03-28T00:31:08.240Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/twitter-node/0.0.1", + "0.0.2": "http://registry.npmjs.org/twitter-node/0.0.2" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/twitter-node/-/twitter-node-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "3ae4b5a7a7b97ac9ad37f6d7ecf65b32a6c3d89b", + "tarball": "http://registry.npmjs.org/twitter-node/-/twitter-node-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/twitter-node/" + }, + "twitter-search": { + "name": "twitter-search", + "description": "NodeJS Twitter Search API Wrapper", + "dist-tags": { + "latest": "0.1.5" + }, + "maintainers": [ + { + "name": "edwardhotchkiss", + "email": "e@ingk.com" + } + ], + "time": { + "modified": "2011-12-10T06:05:46.723Z", + "created": "2011-10-05T22:40:21.728Z", + "0.0.1": "2011-10-05T22:40:22.141Z", + "0.0.2": "2011-10-05T23:55:00.554Z", + "0.0.3": "2011-10-07T18:10:21.647Z", + "0.0.4": "2011-10-10T21:48:07.576Z", + "0.0.5": "2011-11-28T16:46:10.103Z", + "0.0.6": "2011-11-28T16:52:58.076Z", + "0.0.7": "2011-11-28T17:07:46.828Z", + "0.0.9": "2011-11-28T17:37:44.202Z", + "0.1.1": "2011-11-30T20:27:21.772Z", + "0.1.2": "2011-11-30T20:37:54.844Z", + "0.1.4": "2011-12-05T14:57:19.434Z", + "0.1.5": "2011-12-10T06:05:46.723Z" + }, + "author": { + "name": "Edward Hotchkiss", + "email": "e@ingk.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/edwardhotchkiss/twitter-search.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/twitter-search/0.0.1", + "0.0.2": "http://registry.npmjs.org/twitter-search/0.0.2", + "0.0.3": "http://registry.npmjs.org/twitter-search/0.0.3", + "0.0.4": "http://registry.npmjs.org/twitter-search/0.0.4", + "0.0.5": "http://registry.npmjs.org/twitter-search/0.0.5", + "0.0.6": "http://registry.npmjs.org/twitter-search/0.0.6", + "0.0.7": "http://registry.npmjs.org/twitter-search/0.0.7", + "0.0.9": "http://registry.npmjs.org/twitter-search/0.0.9", + "0.1.1": "http://registry.npmjs.org/twitter-search/0.1.1", + "0.1.2": "http://registry.npmjs.org/twitter-search/0.1.2", + "0.1.4": "http://registry.npmjs.org/twitter-search/0.1.4", + "0.1.5": "http://registry.npmjs.org/twitter-search/0.1.5" + }, + "dist": { + "0.0.1": { + "shasum": "f6de0495dc2363ac8671ca38e2ddf65115d6624f", + "tarball": "http://registry.npmjs.org/twitter-search/-/twitter-search-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "cf804a2274c4fe66fdfd3ec0285ec792d4d516e0", + "tarball": "http://registry.npmjs.org/twitter-search/-/twitter-search-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "05d38abdae4e1e49691a972b6c3f2547d3138bc2", + "tarball": "http://registry.npmjs.org/twitter-search/-/twitter-search-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "56cc988fb0779b04ed7dd60cfc41b2f13843a7f2", + "tarball": "http://registry.npmjs.org/twitter-search/-/twitter-search-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "df59f9def6a07b3a949d0da77d4c2720a1f8ce3d", + "tarball": "http://registry.npmjs.org/twitter-search/-/twitter-search-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "bbafa62b45e7e180f2ff11721d419373d6ec1e86", + "tarball": "http://registry.npmjs.org/twitter-search/-/twitter-search-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "ce7da58cb7acbaa53e9895935bffce826380c5ac", + "tarball": "http://registry.npmjs.org/twitter-search/-/twitter-search-0.0.7.tgz" + }, + "0.0.9": { + "shasum": "f822f2f7ec4c01f0ca61ae58d9897cf06fd33df0", + "tarball": "http://registry.npmjs.org/twitter-search/-/twitter-search-0.0.9.tgz" + }, + "0.1.1": { + "shasum": "c1e03f3dc0985d857850a493448a8dade3416e32", + "tarball": "http://registry.npmjs.org/twitter-search/-/twitter-search-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "169c6d3f28fa2570c50bb50dbaf8da2432ebf114", + "tarball": "http://registry.npmjs.org/twitter-search/-/twitter-search-0.1.2.tgz" + }, + "0.1.4": { + "shasum": "101f4edbe07c792580d5a164a7935641a44b6424", + "tarball": "http://registry.npmjs.org/twitter-search/-/twitter-search-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "d17acf0bab36d9b9f04939241032f8c85ff6a4fc", + "tarball": "http://registry.npmjs.org/twitter-search/-/twitter-search-0.1.5.tgz" + } + }, + "keywords": [ + "twitter", + "twitter-search", + "search", + "API", + "wrapper" + ], + "url": "http://registry.npmjs.org/twitter-search/" + }, + "twitter-stream": { + "name": "twitter-stream", + "description": "Twitter Streaming API Library.", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "# Twitter Streaming API Library for Node.js\n\n## Install\n\n### Install into current directory\n\n```\nnpm install twitter-stream\n```\n\n### Install into system wide location\n\n```\nsudo npm install -g twitter-stream\n```\n\n## Example\n\n```javascript\nvar ts = require('twitter-stream');\n\n//Connecting to Twitter Streaming API\nvar stream = ts.connect({\n screen_name: '',\n password: '',\n action: 'sample',\n});\n\n//Retrieving status one by one\nstream.on('status', function(status) {\n console.log(status);\n});\n\n//Handling error\nstream.on('error', function(error) function{\n console.error(error);\n});\n\n//Aborting the stream\nstream.abort();\n```\n", + "maintainers": [ + { + "name": "liuming", + "email": "liuming@lmws.net" + } + ], + "time": { + "modified": "2011-11-29T23:48:21.013Z", + "created": "2011-11-29T23:48:19.792Z", + "0.1.0": "2011-11-29T23:48:21.013Z" + }, + "author": { + "name": "Raymond Liu", + "email": "raymond@lmws.net", + "url": "http://lmws.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/lmws/node-twitter-stream.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/twitter-stream/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "c68bedafb33b41f2c3ba2fdbae7d2fe476df17dc", + "tarball": "http://registry.npmjs.org/twitter-stream/-/twitter-stream-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/twitter-stream/" + }, + "twitter-text": { + "name": "twitter-text", + "description": "official twitter text linkification", + "dist-tags": { + "latest": "1.4.14" + }, + "maintainers": [ + { + "name": "ded", + "email": "polvero@gmail.com" + }, + { + "name": "keitaf", + "email": "keita@twitter.com" + } + ], + "time": { + "modified": "2011-12-02T19:41:20.207Z", + "created": "2011-05-28T01:09:42.098Z", + "1.4.2": "2011-05-28T01:09:42.663Z", + "1.4.3": "2011-07-11T16:15:17.661Z", + "1.4.4": "2011-07-21T18:18:51.675Z", + "1.4.8": "2011-09-21T00:17:27.927Z", + "1.4.9": "2011-09-21T19:50:14.173Z", + "1.4.10": "2011-09-26T22:19:48.404Z", + "1.4.11": "2011-10-04T23:31:23.693Z", + "1.4.12": "2011-11-02T18:04:02.704Z", + "1.4.13": "2011-12-01T21:56:45.982Z", + "1.4.14": "2011-12-02T19:41:20.207Z" + }, + "author": { + "name": "Twitter Inc." + }, + "repository": { + "type": "git", + "url": "git://github.com/twitter/twitter-text-js.git" + }, + "versions": { + "1.4.2": "http://registry.npmjs.org/twitter-text/1.4.2", + "1.4.3": "http://registry.npmjs.org/twitter-text/1.4.3", + "1.4.4": "http://registry.npmjs.org/twitter-text/1.4.4", + "1.4.8": "http://registry.npmjs.org/twitter-text/1.4.8", + "1.4.9": "http://registry.npmjs.org/twitter-text/1.4.9", + "1.4.10": "http://registry.npmjs.org/twitter-text/1.4.10", + "1.4.11": "http://registry.npmjs.org/twitter-text/1.4.11", + "1.4.12": "http://registry.npmjs.org/twitter-text/1.4.12", + "1.4.13": "http://registry.npmjs.org/twitter-text/1.4.13", + "1.4.14": "http://registry.npmjs.org/twitter-text/1.4.14" + }, + "dist": { + "1.4.2": { + "shasum": "bbd03eac4487d9ad91dd0d01b1391161ade87ab0", + "tarball": "http://registry.npmjs.org/twitter-text/-/twitter-text-1.4.2.tgz" + }, + "1.4.3": { + "shasum": "42733c459b8b136dd0f3b60d1b3911d3602469a2", + "tarball": "http://registry.npmjs.org/twitter-text/-/twitter-text-1.4.3.tgz" + }, + "1.4.4": { + "shasum": "6a47489ef35cbb5aa8f339df9a4f03362178545f", + "tarball": "http://registry.npmjs.org/twitter-text/-/twitter-text-1.4.4.tgz" + }, + "1.4.8": { + "shasum": "c2e88e0acd1d1532641dc219d504ef9b51bc14a8", + "tarball": "http://registry.npmjs.org/twitter-text/-/twitter-text-1.4.8.tgz" + }, + "1.4.9": { + "shasum": "fc3488fcc568cdecd6f64615c1d07724bd905d3f", + "tarball": "http://registry.npmjs.org/twitter-text/-/twitter-text-1.4.9.tgz" + }, + "1.4.10": { + "shasum": "c9777e9afc640bd1a6a8ca159bf178759b68012c", + "tarball": "http://registry.npmjs.org/twitter-text/-/twitter-text-1.4.10.tgz" + }, + "1.4.11": { + "shasum": "b615918737df2b716fe1241b4250979bae313820", + "tarball": "http://registry.npmjs.org/twitter-text/-/twitter-text-1.4.11.tgz" + }, + "1.4.12": { + "shasum": "3c85e689fea8cf7461b3a450f8aeb79d6d4ef00d", + "tarball": "http://registry.npmjs.org/twitter-text/-/twitter-text-1.4.12.tgz" + }, + "1.4.13": { + "shasum": "75fb81a074357273f57bd63f593bac147df6dd3d", + "tarball": "http://registry.npmjs.org/twitter-text/-/twitter-text-1.4.13.tgz" + }, + "1.4.14": { + "shasum": "69dfc7ef20649156c68034b8840d58888cb9db41", + "tarball": "http://registry.npmjs.org/twitter-text/-/twitter-text-1.4.14.tgz" + } + }, + "url": "http://registry.npmjs.org/twitter-text/" + }, + "twitterlib": { + "name": "twitterlib", + "description": "Library for doing all things Twitter API related, with added sauce for filtering, paging and paging", + "dist-tags": { + "latest": "1.0.4" + }, + "readme": null, + "maintainers": [ + { + "name": "remy", + "email": "remy@remysharp.com" + } + ], + "time": { + "modified": "2011-12-03T00:49:43.019Z", + "created": "2011-12-03T00:49:41.313Z", + "1.0.4": "2011-12-03T00:49:43.019Z" + }, + "versions": { + "1.0.4": "http://registry.npmjs.org/twitterlib/1.0.4" + }, + "dist": { + "1.0.4": { + "shasum": "b7989ebd92a0f9292293413c2291d763bfaa90ce", + "tarball": "http://registry.npmjs.org/twitterlib/-/twitterlib-1.0.4.tgz" + } + }, + "keywords": [ + "twitter" + ], + "url": "http://registry.npmjs.org/twitterlib/" + }, + "twitterlib.js": { + "name": "twitterlib.js", + "description": "Library for doing all things Twitter API related, with added sauce for filtering, paging and paging", + "dist-tags": { + "latest": "1.0.2" + }, + "readme": null, + "maintainers": [ + { + "name": "remy", + "email": "remy@remysharp.com" + } + ], + "time": { + "modified": "2011-11-07T14:05:57.069Z", + "created": "2011-11-07T13:58:46.426Z", + "1.0.1": "2011-11-07T13:58:47.931Z", + "1.0.2": "2011-11-07T14:05:57.069Z" + }, + "versions": { + "1.0.1": "http://registry.npmjs.org/twitterlib.js/1.0.1", + "1.0.2": "http://registry.npmjs.org/twitterlib.js/1.0.2" + }, + "dist": { + "1.0.1": { + "shasum": "42a035a7881119af0f68eaf2fbe8ce5c3b8832f0", + "tarball": "http://registry.npmjs.org/twitterlib.js/-/twitterlib.js-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "1884681c4d3b6723db26b8b58669bbca82ef691f", + "tarball": "http://registry.npmjs.org/twitterlib.js/-/twitterlib.js-1.0.2.tgz" + } + }, + "keywords": [ + "twitter" + ], + "url": "http://registry.npmjs.org/twitterlib.js/" + }, + "twittr": { + "name": "twittr", + "description": "NodeJS Twitter API Wrapper", + "dist-tags": { + "latest": "0.0.0" + }, + "readme": "\n# twittr\n\n## NodeJS Twitter API Wrapper\n\n## Download\n\n```bash\n$ npm install twittr\n```\n\n***\n\n### MIT Licnese\n\nCopyright (c) Copyright 2011, Edward Hotchkiss.\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "maintainers": [ + { + "name": "edwardhotchkiss", + "email": "e@ingk.com" + } + ], + "time": { + "modified": "2011-11-28T18:05:59.892Z", + "created": "2011-11-28T18:05:57.482Z", + "0.0.0": "2011-11-28T18:05:59.892Z" + }, + "author": { + "name": "Edward Hotchkiss", + "email": "e@ingk.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/edwardhotchkiss/twittr.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/twittr/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "5c238c95e1c05aaa75ea48f92c24ccd8c67ed0f8", + "tarball": "http://registry.npmjs.org/twittr/-/twittr-0.0.0.tgz" + } + }, + "keywords": [ + "twitter", + "api", + "rest", + "twittr" + ], + "url": "http://registry.npmjs.org/twittr/" + }, + "txn": { + "name": "txn", + "description": "Process and update CouchDB data in atomic, all-or-nothing transactions", + "dist-tags": { + "latest": "0.2.5" + }, + "maintainers": [ + { + "name": "jhs", + "email": "jhs@iriscouch.com" + } + ], + "time": { + "modified": "2011-12-12T10:43:55.314Z", + "created": "2011-10-03T21:00:04.964Z", + "0.1.0": "2011-10-03T21:00:05.489Z", + "0.2.0": "2011-10-04T14:22:22.918Z", + "0.2.1": "2011-10-13T18:10:54.559Z", + "0.2.2": "2011-11-22T02:44:29.780Z", + "0.2.3": "2011-11-22T03:20:41.014Z", + "0.2.4": "2011-11-28T10:54:50.994Z", + "0.2.5": "2011-12-12T10:43:55.314Z" + }, + "author": { + "name": "Jason Smith", + "email": "jhs@iriscouch.com", + "url": "http://www.iriscouch.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/iriscouch/txn.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/txn/0.1.0", + "0.2.0": "http://registry.npmjs.org/txn/0.2.0", + "0.2.1": "http://registry.npmjs.org/txn/0.2.1", + "0.2.2": "http://registry.npmjs.org/txn/0.2.2", + "0.2.3": "http://registry.npmjs.org/txn/0.2.3", + "0.2.4": "http://registry.npmjs.org/txn/0.2.4", + "0.2.5": "http://registry.npmjs.org/txn/0.2.5" + }, + "dist": { + "0.1.0": { + "shasum": "cfbcbbb7def265f195aa9ab0738e69cfe60dd915", + "tarball": "http://registry.npmjs.org/txn/-/txn-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "dd288387ad3a9324e00ef33270f29978445331f2", + "tarball": "http://registry.npmjs.org/txn/-/txn-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "4ac11bdf0bb8c1249d8ec7767b73f1cc27ef09b3", + "tarball": "http://registry.npmjs.org/txn/-/txn-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "16cc0796575126f926d7be171567e83e0c811196", + "tarball": "http://registry.npmjs.org/txn/-/txn-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "9ff479b12fb40a7a56243d8fdd721d6cf5d3fcf8", + "tarball": "http://registry.npmjs.org/txn/-/txn-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "48716b419fdd4f6c67bae69b04db36c458251a14", + "tarball": "http://registry.npmjs.org/txn/-/txn-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "691c462c07f215970caee5cc7582f0677fdadcb4", + "tarball": "http://registry.npmjs.org/txn/-/txn-0.2.5.tgz" + } + }, + "url": "http://registry.npmjs.org/txn/" + }, + "type": { + "name": "type", + "description": "Type utils", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "gozala", + "email": "rfobic@gmail.com" + } + ], + "time": { + "modified": "2011-06-09T23:12:25.475Z", + "created": "2011-06-09T23:12:24.505Z", + "0.0.1": "2011-06-09T23:12:25.475Z" + }, + "author": { + "name": "Irakli Gozalishvili", + "email": "rfobic@gmail.com", + "url": "http://jeditoolkit.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Gozala/type.git", + "web": "https://github.com/Gozala/type" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/type/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "b0204ee776b790769f307af8fbf513308a41433c", + "tarball": "http://registry.npmjs.org/type/-/type-0.0.1.tgz" + } + }, + "keywords": [ + "types", + "utils", + "checks" + ], + "url": "http://registry.npmjs.org/type/" + }, + "TypeCast": { + "name": "TypeCast", + "description": "more intuitive type cast functions for JavaScript", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "beatak", + "email": "beatak@gmail.com" + } + ], + "time": { + "modified": "2011-12-08T00:51:55.159Z", + "created": "2011-10-29T20:45:05.628Z", + "0.0.1": "2011-10-29T20:45:06.134Z", + "0.0.2": "2011-10-29T20:49:05.394Z", + "0.0.3": "2011-10-29T20:52:47.198Z", + "0.0.4": "2011-10-29T21:00:17.088Z", + "0.0.5": "2011-10-29T21:01:42.632Z", + "0.0.6": "2011-10-31T14:57:55.680Z", + "0.0.9": "2011-12-08T00:39:35.220Z", + "0.1.0": "2011-12-08T00:51:55.159Z" + }, + "author": { + "name": "Takashi Mizohata", + "email": "beatak@gmail.com", + "url": "http://beatak.github.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/beatak/TypeCast.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/TypeCast/0.0.1", + "0.0.2": "http://registry.npmjs.org/TypeCast/0.0.2", + "0.0.3": "http://registry.npmjs.org/TypeCast/0.0.3", + "0.0.4": "http://registry.npmjs.org/TypeCast/0.0.4", + "0.0.5": "http://registry.npmjs.org/TypeCast/0.0.5", + "0.0.6": "http://registry.npmjs.org/TypeCast/0.0.6", + "0.0.9": "http://registry.npmjs.org/TypeCast/0.0.9", + "0.1.0": "http://registry.npmjs.org/TypeCast/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "effe88428d38df438cefa82b74c90dd79648dfce", + "tarball": "http://registry.npmjs.org/TypeCast/-/TypeCast-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "12f003fe4bde8c07d75be93b55528be50dddf07e", + "tarball": "http://registry.npmjs.org/TypeCast/-/TypeCast-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "9caed55171378af99a9968caaf77f68154182ae8", + "tarball": "http://registry.npmjs.org/TypeCast/-/TypeCast-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "e4d6fc4b2d8cc29975c77fabfd4d1020d7ddea42", + "tarball": "http://registry.npmjs.org/TypeCast/-/TypeCast-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "171b24fd2f9eac09ec9582d6329b0949330540bf", + "tarball": "http://registry.npmjs.org/TypeCast/-/TypeCast-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "25e36a5029893f9382d43d5121c3481386e213d6", + "tarball": "http://registry.npmjs.org/TypeCast/-/TypeCast-0.0.6.tgz" + }, + "0.0.9": { + "shasum": "c1422ab4895112fbf320998a07ef7168095951d1", + "tarball": "http://registry.npmjs.org/TypeCast/-/TypeCast-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "f32b46ea281e8442b59b5bf29fd456dee731c9fe", + "tarball": "http://registry.npmjs.org/TypeCast/-/TypeCast-0.1.0.tgz" + } + }, + "keywords": [ + "cast", + "type" + ], + "url": "http://registry.npmjs.org/TypeCast/" + }, + "typecheck": { + "name": "typecheck", + "description": "type checker", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "schrodingerz-kitten", + "email": "schrodingerz.kitten@gmail.com" + } + ], + "time": { + "modified": "2011-07-21T01:30:29.862Z", + "created": "2011-07-19T06:33:52.012Z", + "0.1.0": "2011-07-19T06:33:52.904Z", + "0.1.2": "2011-07-21T01:30:29.862Z" + }, + "author": { + "name": "schrodingerz.kitten@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/typecheck/0.1.0", + "0.1.2": "http://registry.npmjs.org/typecheck/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "6a1b888426f875b3606e9816ad44e973c5c6171a", + "tarball": "http://registry.npmjs.org/typecheck/-/typecheck-0.1.0.tgz" + }, + "0.1.2": { + "shasum": "016e200b08c656159c5844698a8bd4ec22ca0435", + "tarball": "http://registry.npmjs.org/typecheck/-/typecheck-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/typecheck/" + }, + "typed-array": { + "name": "typed-array", + "description": "Typed Array implementation for V8 and Node.js", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "tlrobinson", + "email": "tlrobinson@gmail.com" + } + ], + "time": { + "modified": "2011-05-20T11:44:17.538Z", + "created": "2011-05-20T11:44:17.234Z", + "0.0.2": "2011-05-20T11:44:17.538Z" + }, + "author": { + "name": "Tom Robinson", + "email": "tlrobinson@gmail.com", + "url": "http://tlrobinson.net/" + }, + "repository": { + "type": "git", + "url": "https://github.com/tlrobinson/v8-typed-array.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/typed-array/0.0.2" + }, + "dist": { + "0.0.2": { + "shasum": "373b4d459bf58cca258e1b9eeefe6f7400a63402", + "tarball": "http://registry.npmjs.org/typed-array/-/typed-array-0.0.2.tgz" + } + }, + "keywords": [ + "buffer", + "typed array", + "webgl" + ], + "url": "http://registry.npmjs.org/typed-array/" + }, + "typhoon": { + "name": "typhoon", + "description": "Minimalist blog engine", + "dist-tags": { + "latest": "0.4.1" + }, + "maintainers": [ + { + "name": "cjoudrey", + "email": "cmallette@gmail.com" + } + ], + "time": { + "modified": "2011-11-09T02:29:21.545Z", + "created": "2011-04-03T19:42:38.511Z", + "0.1.0": "2011-04-03T19:42:38.702Z", + "0.1.1": "2011-04-03T23:57:32.073Z", + "0.1.2": "2011-04-06T03:31:41.961Z", + "0.2.0": "2011-04-09T05:38:59.069Z", + "0.2.1": "2011-04-09T05:46:20.059Z", + "0.2.2": "2011-04-09T05:52:57.120Z", + "0.3.0": "2011-04-17T19:13:22.055Z", + "0.3.1": "2011-04-17T19:55:46.908Z", + "0.3.2": "2011-04-17T20:15:48.274Z", + "0.3.3": "2011-04-18T04:04:44.949Z", + "0.4.0": "2011-04-30T02:48:21.758Z", + "0.4.1": "2011-11-09T02:29:21.545Z" + }, + "author": { + "name": "Christian Joudrey", + "email": "cmallette@gmail.com", + "url": "http://twitter.com/cjoudrey" + }, + "repository": { + "type": "git", + "url": "git://github.com/cjoudrey/typhoon.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/typhoon/0.1.0", + "0.1.1": "http://registry.npmjs.org/typhoon/0.1.1", + "0.1.2": "http://registry.npmjs.org/typhoon/0.1.2", + "0.2.0": "http://registry.npmjs.org/typhoon/0.2.0", + "0.2.1": "http://registry.npmjs.org/typhoon/0.2.1", + "0.2.2": "http://registry.npmjs.org/typhoon/0.2.2", + "0.3.0": "http://registry.npmjs.org/typhoon/0.3.0", + "0.3.1": "http://registry.npmjs.org/typhoon/0.3.1", + "0.3.2": "http://registry.npmjs.org/typhoon/0.3.2", + "0.3.3": "http://registry.npmjs.org/typhoon/0.3.3", + "0.4.0": "http://registry.npmjs.org/typhoon/0.4.0", + "0.4.1": "http://registry.npmjs.org/typhoon/0.4.1" + }, + "dist": { + "0.1.0": { + "shasum": "367a4bfd73064aa9f487a6cfdd7451b5b6d53c55", + "tarball": "http://registry.npmjs.org/typhoon/-/typhoon-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "fe6c27cac8a77ba6ca1e2bced0ec43a987775dfb", + "tarball": "http://registry.npmjs.org/typhoon/-/typhoon-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "209f7df85b8ed269ac89dd12fd021001ba7d7d64", + "tarball": "http://registry.npmjs.org/typhoon/-/typhoon-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "bf71c6a93d40162669f90837c18d4074dbd598a3", + "tarball": "http://registry.npmjs.org/typhoon/-/typhoon-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "05de35a3569d321a4fd3298473358b3cf82bafb3", + "tarball": "http://registry.npmjs.org/typhoon/-/typhoon-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "c634af22f12d0d46b580fb7e6f4241e2924be8a8", + "tarball": "http://registry.npmjs.org/typhoon/-/typhoon-0.2.2.tgz" + }, + "0.3.0": { + "shasum": "a1568d2942b1b90f3bceb07b9914b1dffceceda3", + "tarball": "http://registry.npmjs.org/typhoon/-/typhoon-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "0c6d69460aa204f64361af9c38418fac6dc14a48", + "tarball": "http://registry.npmjs.org/typhoon/-/typhoon-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "bb9a51a1f057f7723e60e0454984d8c893a0c684", + "tarball": "http://registry.npmjs.org/typhoon/-/typhoon-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "1ed641340560def65a11e08a3c666ee07ac5d4db", + "tarball": "http://registry.npmjs.org/typhoon/-/typhoon-0.3.3.tgz" + }, + "0.4.0": { + "shasum": "02dbf93b887ecc8457f1864b6507890e498dac32", + "tarball": "http://registry.npmjs.org/typhoon/-/typhoon-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "1557504f098cdc7bcb78b65b83993e769f1b65f3", + "tarball": "http://registry.npmjs.org/typhoon/-/typhoon-0.4.1.tgz" + } + }, + "keywords": [ + "blog", + "express" + ], + "url": "http://registry.npmjs.org/typhoon/" + }, + "typogr": { + "name": "typogr", + "description": "Typography utils", + "dist-tags": { + "latest": "0.5.1" + }, + "maintainers": [ + { + "name": "ekalinin", + "email": "e.v.kalinin@gmail.com" + } + ], + "time": { + "modified": "2011-08-30T07:47:39.528Z", + "created": "2011-08-23T09:50:50.382Z", + "0.4.0": "2011-08-23T09:50:52.215Z", + "0.4.1": "2011-08-23T10:00:50.738Z", + "0.4.2": "2011-08-23T10:17:11.015Z", + "0.4.3": "2011-08-24T11:59:13.713Z", + "0.5.0": "2011-08-27T00:12:16.979Z", + "0.5.1": "2011-08-30T07:47:39.528Z" + }, + "author": { + "name": "Eugene Kalinin", + "email": "e.v.kalinin@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/ekalinin/typogr.js.git" + }, + "versions": { + "0.4.0": "http://registry.npmjs.org/typogr/0.4.0", + "0.4.1": "http://registry.npmjs.org/typogr/0.4.1", + "0.4.2": "http://registry.npmjs.org/typogr/0.4.2", + "0.4.3": "http://registry.npmjs.org/typogr/0.4.3", + "0.5.0": "http://registry.npmjs.org/typogr/0.5.0", + "0.5.1": "http://registry.npmjs.org/typogr/0.5.1" + }, + "dist": { + "0.4.0": { + "shasum": "4b4afc87b979c1aa76d4dea5aa2ad8178930e6a2", + "tarball": "http://registry.npmjs.org/typogr/-/typogr-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "b0913436e585aa185af4f90905843ee355443ddd", + "tarball": "http://registry.npmjs.org/typogr/-/typogr-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "1022bfae313fa67ca9d8241db339e0b1a417fd95", + "tarball": "http://registry.npmjs.org/typogr/-/typogr-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "c5ca854fb441372bc6327f6e01c3fcc2be3b5f16", + "tarball": "http://registry.npmjs.org/typogr/-/typogr-0.4.3.tgz" + }, + "0.5.0": { + "shasum": "d7fc5c646274d77b64e24557bd3bbc4f86bad624", + "tarball": "http://registry.npmjs.org/typogr/-/typogr-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "8b7f190bcf3cb363d2da3528601ba2f8fd39c93b", + "tarball": "http://registry.npmjs.org/typogr/-/typogr-0.5.1.tgz" + } + }, + "keywords": [ + "typography", + "typogrify", + "typogr", + "hyphenation", + "quotes", + "dashes", + "ampersands", + "prettify" + ], + "url": "http://registry.npmjs.org/typogr/" + }, + "u2r": { + "name": "u2r", + "description": "url to request info", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "shinout", + "email": "shinout310@gmail.com" + } + ], + "time": { + "modified": "2011-10-17T12:10:35.219Z", + "created": "2011-10-17T07:28:00.281Z", + "0.1.1": "2011-10-17T07:28:03.359Z", + "0.1.2": "2011-10-17T09:59:22.168Z", + "0.1.3": "2011-10-17T12:10:35.219Z" + }, + "author": { + "name": "SHIN Suzuki", + "email": "shinout310@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/shinout/u2r.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/u2r/0.1.1", + "0.1.2": "http://registry.npmjs.org/u2r/0.1.2", + "0.1.3": "http://registry.npmjs.org/u2r/0.1.3" + }, + "dist": { + "0.1.1": { + "shasum": "ed6419d4201bccac4db0ca74b6583bd264d09201", + "tarball": "http://registry.npmjs.org/u2r/-/u2r-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "10e150475861e30aefff876840823201a668d4a6", + "tarball": "http://registry.npmjs.org/u2r/-/u2r-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "c5fc79167253209c16a55cd83f478163d6bd0074", + "tarball": "http://registry.npmjs.org/u2r/-/u2r-0.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/u2r/" + }, + "ua": { + "name": "ua", + "description": "Dirt cheap User-Agent: parser", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "dvv", + "email": "dronnikov@gmail.com" + } + ], + "time": { + "modified": "2011-09-30T08:38:31.004Z", + "created": "2011-09-30T08:20:56.656Z", + "0.0.1": "2011-09-30T08:20:57.919Z", + "0.0.2": "2011-09-30T08:24:29.096Z" + }, + "author": { + "name": "Vladimir Dronnikov", + "email": "dronnikov@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dvv/ua.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ua/0.0.1", + "0.0.2": "http://registry.npmjs.org/ua/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "ec02929d31717123655c36622ae79c1215c00f76", + "tarball": "http://registry.npmjs.org/ua/-/ua-0.0.1.tgz", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.26-linux-2.6.32-5-686": { + "shasum": "e4b1a7e0394fbdb3298c8d8dd8fe5b270ec5f246", + "tarball": "http://registry.npmjs.org/ua/-/ua-0.0.1-0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.26-linux-2.6.32-5-686.tgz" + } + } + }, + "0.0.2": { + "shasum": "79930007f7c3212eb65e5cab2adfc0a5bc43f06a", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.26-linux-2.6.32-5-686": { + "shasum": "6e29bafaff2a44ea8b734fccf0a90c31b059d8e7", + "tarball": "http://registry.npmjs.org/ua/-/ua-0.0.2-0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.26-linux-2.6.32-5-686.tgz" + } + }, + "tarball": "http://registry.npmjs.org/ua/-/ua-0.0.2.tgz" + } + }, + "keywords": [ + "useragent", + "browser", + "version", + "user", + "agent" + ], + "url": "http://registry.npmjs.org/ua/" + }, + "ua-parser": { + "name": "ua-parser", + "description": "A port of Browserscope's user agent parser.", + "dist-tags": { + "latest": "0.2.3" + }, + "maintainers": [ + { + "name": "tobie", + "email": "tobie.langel@gmail.com" + } + ], + "author": { + "name": "Tobie Langel", + "email": "tobie.langel@gmail.com", + "url": "http://tobielangel.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/tobie/ua-parser.git" + }, + "time": { + "modified": "2011-08-09T13:42:07.509Z", + "created": "2011-07-29T21:29:51.452Z", + "0.1.0": "2011-07-29T21:29:51.452Z", + "0.1.1": "2011-07-29T21:29:51.452Z", + "0.2.0": "2011-08-02T08:12:06.850Z", + "0.2.1": "2011-08-08T12:46:08.409Z", + "0.2.3": "2011-08-09T13:42:07.509Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/ua-parser/0.1.0", + "0.1.1": "http://registry.npmjs.org/ua-parser/0.1.1", + "0.2.0": "http://registry.npmjs.org/ua-parser/0.2.0", + "0.2.1": "http://registry.npmjs.org/ua-parser/0.2.1", + "0.2.3": "http://registry.npmjs.org/ua-parser/0.2.3" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/ua-parser/-/ua-parser-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "6a4366745c9df10d4fdd67f4bf3d51aee0300fe9", + "tarball": "http://registry.npmjs.org/ua-parser/-/ua-parser-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "2aea92eff7c1974f4fd189493107304793565eac", + "tarball": "http://registry.npmjs.org/ua-parser/-/ua-parser-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "9c0830daf4c72c4e57120903dd47c5ee984a619e", + "tarball": "http://registry.npmjs.org/ua-parser/-/ua-parser-0.2.1.tgz" + }, + "0.2.3": { + "shasum": "01e82c802db32f84e42531c799d12d9df1a28a42", + "tarball": "http://registry.npmjs.org/ua-parser/-/ua-parser-0.2.3.tgz" + } + }, + "url": "http://registry.npmjs.org/ua-parser/" + }, + "ubelt": { + "name": "ubelt", + "description": "utility belt was (Dominic's Utilities)", + "dist-tags": { + "latest": "3.0.0" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-11-30T23:47:51.773Z", + "created": "2011-09-25T13:11:57.420Z", + "2.3.3": "2011-09-25T13:12:01.667Z", + "2.4.0": "2011-09-26T08:12:32.708Z", + "2.5.0": "2011-09-26T09:09:26.242Z", + "2.6.0": "2011-09-26T09:39:54.713Z", + "2.7.0": "2011-09-29T05:26:22.539Z", + "2.8.0": "2011-09-29T11:55:37.465Z", + "2.9.0": "2011-10-29T10:13:48.327Z", + "2.10.0": "2011-11-12T02:59:59.254Z", + "2.11.1": "2011-11-18T11:49:30.668Z", + "2.12.0": "2011-11-30T03:54:57.255Z", + "3.0.0": "2011-11-30T23:47:51.773Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com", + "url": "http://bit.ly/dominictarr" + }, + "repository": { + "type": "git", + "url": "git://github.com/dominictarr/d-utils.git" + }, + "versions": { + "2.3.3": "http://registry.npmjs.org/ubelt/2.3.3", + "2.4.0": "http://registry.npmjs.org/ubelt/2.4.0", + "2.5.0": "http://registry.npmjs.org/ubelt/2.5.0", + "2.6.0": "http://registry.npmjs.org/ubelt/2.6.0", + "2.7.0": "http://registry.npmjs.org/ubelt/2.7.0", + "2.8.0": "http://registry.npmjs.org/ubelt/2.8.0", + "2.9.0": "http://registry.npmjs.org/ubelt/2.9.0", + "2.10.0": "http://registry.npmjs.org/ubelt/2.10.0", + "2.11.1": "http://registry.npmjs.org/ubelt/2.11.1", + "2.12.0": "http://registry.npmjs.org/ubelt/2.12.0", + "3.0.0": "http://registry.npmjs.org/ubelt/3.0.0" + }, + "dist": { + "2.3.3": { + "shasum": "e7aa69457fbaf696c96610f9767d4df57b80292d", + "tarball": "http://registry.npmjs.org/ubelt/-/ubelt-2.3.3.tgz" + }, + "2.4.0": { + "shasum": "d19a4c6abe959fa632785ac5c6bb9bf93b77568b", + "tarball": "http://registry.npmjs.org/ubelt/-/ubelt-2.4.0.tgz" + }, + "2.5.0": { + "shasum": "33ae2506fb59beab089a1d774828770b53b839f9", + "tarball": "http://registry.npmjs.org/ubelt/-/ubelt-2.5.0.tgz" + }, + "2.6.0": { + "shasum": "90f1ea5598072de840ed8d27463a1eef66f739ca", + "tarball": "http://registry.npmjs.org/ubelt/-/ubelt-2.6.0.tgz" + }, + "2.7.0": { + "shasum": "9ab5782840c79d8d3e6a536bb83801d6c019841a", + "tarball": "http://registry.npmjs.org/ubelt/-/ubelt-2.7.0.tgz" + }, + "2.8.0": { + "shasum": "f52150dd8dff5ddede804a48caf302e1b6d317e6", + "tarball": "http://registry.npmjs.org/ubelt/-/ubelt-2.8.0.tgz" + }, + "2.9.0": { + "shasum": "1950de99b8e7bdbd53cebda0024a468ccde6b4f6", + "tarball": "http://registry.npmjs.org/ubelt/-/ubelt-2.9.0.tgz" + }, + "2.10.0": { + "shasum": "46eb5084968e4f7b3275265b2aad6f6521b8fdfd", + "tarball": "http://registry.npmjs.org/ubelt/-/ubelt-2.10.0.tgz" + }, + "2.11.1": { + "shasum": "bb135836827ef8de453ae31b671d12108cdf6976", + "tarball": "http://registry.npmjs.org/ubelt/-/ubelt-2.11.1.tgz" + }, + "2.12.0": { + "shasum": "b063983ee508afa7e7fe19e328db28dbc78d2656", + "tarball": "http://registry.npmjs.org/ubelt/-/ubelt-2.12.0.tgz" + }, + "3.0.0": { + "shasum": "c784014c52f973f7d61009ca650d772454a19258", + "tarball": "http://registry.npmjs.org/ubelt/-/ubelt-3.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/ubelt/" + }, + "uberblic": { + "name": "uberblic", + "description": "A wrapper for the uberblic.org API", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "agnoster", + "email": "agnoster@gmail.com" + } + ], + "time": { + "modified": "2011-01-04T20:33:38.569Z", + "created": "2011-01-04T17:59:04.795Z", + "0.0.1": "2011-01-04T17:59:05.215Z", + "0.0.2": "2011-01-04T20:33:38.569Z" + }, + "author": { + "name": "Isaac Wolkerstorfer", + "email": "agnoster@gmail.com", + "url": "http://agnoster.net/" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/uberblic/0.0.1", + "0.0.2": "http://registry.npmjs.org/uberblic/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "023a94f8c08bf36aaec6a177a67aa0713421d512", + "tarball": "http://registry.npmjs.org/uberblic/-/uberblic-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c95d8a9f8cd598ab13a39bc9839a76f3eabe7feb", + "tarball": "http://registry.npmjs.org/uberblic/-/uberblic-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/uberblic/" + }, + "uberclass": { + "name": "uberclass", + "description": "A class framework based on JavaScriptMVC $.Class and John Resig's Simple JavaScript inheritance.", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "daff", + "email": "daff@neyeon.de" + } + ], + "time": { + "modified": "2011-11-12T07:31:14.358Z", + "created": "2011-11-12T06:55:05.806Z", + "1.0.0": "2011-11-12T07:31:14.358Z" + }, + "author": { + "name": "David Luecke", + "email": "daff@neyeon.de", + "url": "http://neyeon.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/daffl/uberclass.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/uberclass/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "404df181464ba1696d64b6a5cf32e3219adca941", + "tarball": "http://registry.npmjs.org/uberclass/-/uberclass-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/uberclass/" + }, + "ubernode": { + "name": "ubernode", + "description": "Ubersmith API client wrapper", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "# Ubernode\n### [Ubersmith.com](http://www.ubersmith.com)\n## A painless way to interact with the Ubermsith API asynchronously in your node app\n\nWith this API wrapper, you can send requests to your Ubersmith instance in your node app with *fairly minimal* effort.\n\n### Installation\n\n npm install ubernode\n\n\n###Usage\n\n**First, create a variable with your instance details:**\n\n var client = new Ubernode('user', 'password', 'url');\n\n\nYou can create as many of these as you need if you're working with multiple instances.\n\n**Each level of your API call(s) needs to be represented with an object with child objects to represent the API methods. In these child objects, you can include optional arguments and callbacks:**\n\n```javascript\nvar uber_calls = {};\n\nuber_calls['client.count'] = {};\nuber_calls['device.list'] = {\n args: {\n inactive: 0,\n limit: 10\n },\n callback: function (err, res) {\n err ? console.log (err) : console.log(res.body);\n }\n}\n```\n\n\n**Once your API calls are defined, call the Async() function on the original client object created:** \n\n client.Async(uber_calls);\n\nSince these API calls are asynchronously, there's no way to predict which callback will fire first. In most cases, you'll probably find that calls which normally return less data and take less arguments will process faster, but you should *never* rely on that and always write your callbacks accordingly.\n\n**Methods with no function defined will call console.log on the JSON output. If you would rather this be silenced, define a callback object, but leave it empty:**\n\n```javascript\nuber_calls['device_list'] = {\n callback: {}\n}\n```\n\n", + "maintainers": [ + { + "name": "luk", + "email": "luke.arduini@me.com" + } + ], + "time": { + "modified": "2011-11-25T06:10:19.759Z", + "created": "2011-11-25T06:10:19.163Z", + "0.0.1": "2011-11-25T06:10:19.759Z" + }, + "author": { + "name": "Luke Arduini", + "email": "luke.arduini@me.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/luke-a/ubernode.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ubernode/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "7645255d6ba3ef89014d936d3d0dec51f63761b0", + "tarball": "http://registry.npmjs.org/ubernode/-/ubernode-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/ubernode/" + }, + "ubjson": { + "name": "ubjson", + "description": "Universal Binary JSON packer/unpacker for Node.js", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "Sannis", + "email": "efimovov@gmail.com" + } + ], + "time": { + "modified": "2011-10-17T23:07:33.985Z", + "created": "2011-10-11T22:23:20.887Z", + "0.0.1": "2011-10-11T22:23:22.643Z", + "0.0.2": "2011-10-12T18:40:46.991Z", + "0.0.3": "2011-10-16T18:33:38.010Z", + "0.0.4": "2011-10-17T23:07:33.985Z" + }, + "author": { + "name": "Oleg Efimov", + "email": "efimovov@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ubjson/0.0.1", + "0.0.2": "http://registry.npmjs.org/ubjson/0.0.2", + "0.0.3": "http://registry.npmjs.org/ubjson/0.0.3", + "0.0.4": "http://registry.npmjs.org/ubjson/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "13db990f999b42d62697b84b14aa8a46a6dd65b3", + "tarball": "http://registry.npmjs.org/ubjson/-/ubjson-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f382db60f97b1e723a75aa370184e39b354537b2", + "tarball": "http://registry.npmjs.org/ubjson/-/ubjson-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "14ee6e4a8f3f0781d7db738712f218020f4b36c4", + "tarball": "http://registry.npmjs.org/ubjson/-/ubjson-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "eac681b7d275235978137dff67882fe74093df7c", + "tarball": "http://registry.npmjs.org/ubjson/-/ubjson-0.0.4.tgz" + } + }, + "keywords": [ + "ubjson", + "json", + "universal binary json" + ], + "url": "http://registry.npmjs.org/ubjson/" + }, + "ucengine": { + "name": "ucengine", + "description": "ucengine client for node.js", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "athoune", + "email": "mathieu@garambrogne.net" + } + ], + "time": { + "modified": "2011-03-17T23:31:46.419Z", + "created": "2011-02-27T19:57:35.981Z", + "0.0.1": "2011-02-27T19:57:36.497Z", + "0.0.2": "2011-03-17T23:31:46.419Z" + }, + "author": { + "name": "Mathieu Lecarme", + "email": "mathieu@garambrogne.net" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ucengine/0.0.1", + "0.0.2": "http://registry.npmjs.org/ucengine/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "e7a0a1c0c61e033ed9bc03fda4b06faeccdc4dda", + "tarball": "http://registry.npmjs.org/ucengine/-/ucengine-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "a287d638ab5bbd0afa5517751a381e765bb9de6b", + "tarball": "http://registry.npmjs.org/ucengine/-/ucengine-0.0.2.tgz" + } + }, + "keywords": [ + "ucengine" + ], + "url": "http://registry.npmjs.org/ucengine/" + }, + "udon": { + "name": "udon", + "description": "Practical functional programming in JavaScript.", + "dist-tags": { + "latest": "1.2.0" + }, + "maintainers": [ + { + "name": "beastaugh", + "email": "benedict@eastaugh.net" + } + ], + "time": { + "modified": "2011-06-21T16:17:08.191Z", + "created": "2011-06-21T16:17:07.671Z", + "1.2.0": "2011-06-21T16:17:08.191Z" + }, + "author": { + "name": "Benedict Eastaugh", + "email": "benedict@eastaugh.net", + "url": "http://extralogical.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/beastaugh/udon.git" + }, + "versions": { + "1.2.0": "http://registry.npmjs.org/udon/1.2.0" + }, + "dist": { + "1.2.0": { + "shasum": "8e341e3f71fc8fa60de4f05f92baba492942c3e7", + "tarball": "http://registry.npmjs.org/udon/-/udon-1.2.0.tgz" + } + }, + "keywords": [ + "functional-programming haskell" + ], + "url": "http://registry.npmjs.org/udon/" + }, + "ueberDB": { + "name": "ueberDB", + "description": "transform every database into a object key value store", + "dist-tags": { + "latest": "0.1.5" + }, + "maintainers": [ + { + "name": "pita", + "email": "petermartischka@googlemail.com" + } + ], + "time": { + "modified": "2011-12-10T17:03:00.823Z", + "created": "2011-05-14T17:52:42.807Z", + "0.0.1": "2011-05-14T17:52:43.325Z", + "0.0.2": "2011-05-14T20:55:40.298Z", + "0.0.3": "2011-05-19T12:16:05.894Z", + "0.0.4": "2011-05-30T12:24:39.137Z", + "0.0.5": "2011-06-01T23:43:36.641Z", + "0.0.6": "2011-06-04T15:15:07.806Z", + "0.0.7": "2011-06-17T19:22:17.002Z", + "0.0.8": "2011-06-20T14:35:34.616Z", + "0.0.9": "2011-06-24T14:45:35.946Z", + "0.0.10": "2011-07-26T15:41:22.800Z", + "0.0.11": "2011-07-29T15:42:00.075Z", + "0.0.12": "2011-07-31T13:33:02.896Z", + "0.0.13": "2011-08-02T16:13:37.969Z", + "0.0.14": "2011-08-02T20:35:41.246Z", + "0.0.15": "2011-08-11T18:20:38.481Z", + "0.1.0": "2011-08-17T10:58:54.097Z", + "0.1.1": "2011-08-19T22:20:29.617Z", + "0.1.2": "2011-08-23T17:09:32.568Z", + "0.1.3": "2011-11-13T01:30:50.222Z", + "0.1.4": "2011-12-10T11:30:38.049Z", + "0.1.5": "2011-12-10T17:03:00.823Z" + }, + "author": { + "name": "Peter 'Pita' Martischka", + "email": "petermartischka@googlemail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ueberDB/0.0.1", + "0.0.2": "http://registry.npmjs.org/ueberDB/0.0.2", + "0.0.3": "http://registry.npmjs.org/ueberDB/0.0.3", + "0.0.4": "http://registry.npmjs.org/ueberDB/0.0.4", + "0.0.5": "http://registry.npmjs.org/ueberDB/0.0.5", + "0.0.6": "http://registry.npmjs.org/ueberDB/0.0.6", + "0.0.7": "http://registry.npmjs.org/ueberDB/0.0.7", + "0.0.8": "http://registry.npmjs.org/ueberDB/0.0.8", + "0.0.9": "http://registry.npmjs.org/ueberDB/0.0.9", + "0.0.10": "http://registry.npmjs.org/ueberDB/0.0.10", + "0.0.11": "http://registry.npmjs.org/ueberDB/0.0.11", + "0.0.12": "http://registry.npmjs.org/ueberDB/0.0.12", + "0.0.13": "http://registry.npmjs.org/ueberDB/0.0.13", + "0.0.14": "http://registry.npmjs.org/ueberDB/0.0.14", + "0.0.15": "http://registry.npmjs.org/ueberDB/0.0.15", + "0.1.0": "http://registry.npmjs.org/ueberDB/0.1.0", + "0.1.1": "http://registry.npmjs.org/ueberDB/0.1.1", + "0.1.2": "http://registry.npmjs.org/ueberDB/0.1.2", + "0.1.3": "http://registry.npmjs.org/ueberDB/0.1.3", + "0.1.4": "http://registry.npmjs.org/ueberDB/0.1.4", + "0.1.5": "http://registry.npmjs.org/ueberDB/0.1.5" + }, + "dist": { + "0.0.1": { + "shasum": "5e7e2ec0c7ef7cc739c601f4a2dbac3fadeabe6a", + "tarball": "http://registry.npmjs.org/ueberDB/-/ueberDB-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "8939669e8ee30db2307ede47275752a1577d8a05", + "tarball": "http://registry.npmjs.org/ueberDB/-/ueberDB-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "06bd98c974fa0d0d232a057076813d075fdb8d9e", + "tarball": "http://registry.npmjs.org/ueberDB/-/ueberDB-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "f37b4b9075d38cf79e0cbde6a6db49dc075140f5", + "tarball": "http://registry.npmjs.org/ueberDB/-/ueberDB-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "9bdbe10b843bf84d792f7e1276f6d9e2c4f5433f", + "tarball": "http://registry.npmjs.org/ueberDB/-/ueberDB-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "848a99b60e1beab9c0d9d8a6442ccc346ae707a3", + "tarball": "http://registry.npmjs.org/ueberDB/-/ueberDB-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "999ac0a9689e5aa8075e06a2deac3dbe7f0ab1a7", + "tarball": "http://registry.npmjs.org/ueberDB/-/ueberDB-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "0ec5b1fe27372cf70d292a0b6c43f611c036ff56", + "tarball": "http://registry.npmjs.org/ueberDB/-/ueberDB-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "1ef625e787846cf052d1e839e71db2f40b28d931", + "tarball": "http://registry.npmjs.org/ueberDB/-/ueberDB-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "71c1d5f2e312ae400ae4b193e69798eb051cfda6", + "tarball": "http://registry.npmjs.org/ueberDB/-/ueberDB-0.0.10.tgz" + }, + "0.0.11": { + "shasum": "d686c63ed4bdf89071081b4cd869bb2135eaa7e3", + "tarball": "http://registry.npmjs.org/ueberDB/-/ueberDB-0.0.11.tgz" + }, + "0.0.12": { + "shasum": "fda2ea80b879d65200ed9c045e432590590f007d", + "tarball": "http://registry.npmjs.org/ueberDB/-/ueberDB-0.0.12.tgz" + }, + "0.0.13": { + "shasum": "6d3b6a3e9e2445e4e6eb5ac8c1074506ae008117", + "tarball": "http://registry.npmjs.org/ueberDB/-/ueberDB-0.0.13.tgz" + }, + "0.0.14": { + "shasum": "e92696445118bbbf20cf0433235e6e04a3fd6aa4", + "tarball": "http://registry.npmjs.org/ueberDB/-/ueberDB-0.0.14.tgz" + }, + "0.0.15": { + "shasum": "571d1edb3e300947e629b43c79d290335a0d894e", + "tarball": "http://registry.npmjs.org/ueberDB/-/ueberDB-0.0.15.tgz" + }, + "0.1.0": { + "shasum": "d527b474aae77622d1d291691edeb47b0500f348", + "tarball": "http://registry.npmjs.org/ueberDB/-/ueberDB-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "5b8078a4cd27b648b0c52bc968f1ab3d7dc3eb04", + "tarball": "http://registry.npmjs.org/ueberDB/-/ueberDB-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "9132605620bee284b5da63be47c717d616d3c942", + "tarball": "http://registry.npmjs.org/ueberDB/-/ueberDB-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "db4c23cf158ace29f44b560d53a5a99868440a62", + "tarball": "http://registry.npmjs.org/ueberDB/-/ueberDB-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "b14167267fe25272c3ccb35c1759205b925d754f", + "tarball": "http://registry.npmjs.org/ueberDB/-/ueberDB-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "e992c910210ea0937d934857f995c21f1ac40bd1", + "tarball": "http://registry.npmjs.org/ueberDB/-/ueberDB-0.1.5.tgz" + } + }, + "keywords": [ + "database", + "keyvalue" + ], + "url": "http://registry.npmjs.org/ueberDB/" + }, + "uglify": { + "name": "uglify", + "description": "uglify your code online", + "dist-tags": {}, + "maintainers": [ + { + "name": "dscape", + "email": "nunojobpinto@gmail.com" + } + ], + "time": { + "modified": "2011-12-06T09:15:08.053Z", + "created": "2011-11-01T20:46:11.415Z" + }, + "users": {}, + "versions": {}, + "dist": {}, + "url": "http://registry.npmjs.org/uglify/" + }, + "uglify-js": { + "name": "uglify-js", + "dist-tags": { + "latest": "1.2.2" + }, + "maintainers": [ + { + "name": "caires", + "email": "cairesvs@gmail.com" + }, + { + "name": "mape", + "email": "mape@mape.me" + }, + { + "name": "mishoo", + "email": "mihai.bazon@gmail.com" + } + ], + "author": { + "name": "Mihai Bazon", + "email": "mihai.bazon@gmail.com", + "url": "http://mihai.bazon.net/blog" + }, + "time": { + "modified": "2011-12-13T21:10:39.550Z", + "created": "2011-01-05T17:56:48.593Z", + "0.0.1": "2011-01-05T17:56:48.593Z", + "0.0.2": "2011-01-09T13:47:55.729Z", + "0.0.3": "2011-01-25T05:53:18.848Z", + "0.0.4": "2011-02-05T13:28:37.926Z", + "0.0.5": "2011-02-20T16:37:04.786Z", + "1.0.1": "2011-04-03T22:03:32.396Z", + "1.0.2": "2011-05-19T16:13:13.281Z", + "1.0.3": "2011-06-27T16:52:42.404Z", + "1.0.4": "2011-07-01T10:26:41.824Z", + "1.0.5": "2011-07-14T09:54:00.537Z", + "1.0.6": "2011-07-14T20:36:30.484Z", + "1.0.7": "2011-08-20T07:13:48.144Z", + "1.1.0": "2011-09-20T16:07:57.319Z", + "1.1.1": "2011-10-11T16:31:12.608Z", + "1.2.0": "2011-12-10T09:38:41.304Z", + "1.2.1": "2011-12-13T21:02:54.998Z", + "1.2.2": "2011-12-13T21:10:39.550Z" + }, + "repository": { + "type": "git", + "url": "git@github.com:mishoo/UglifyJS.git" + }, + "description": "JavaScript parser and compressor/beautifier toolkit", + "users": { + "coverslide": true, + "substack": true, + "vtsvang": true, + "pvorb": true + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/uglify-js/0.0.1", + "0.0.2": "http://registry.npmjs.org/uglify-js/0.0.2", + "0.0.3": "http://registry.npmjs.org/uglify-js/0.0.3", + "0.0.4": "http://registry.npmjs.org/uglify-js/0.0.4", + "0.0.5": "http://registry.npmjs.org/uglify-js/0.0.5", + "1.0.1": "http://registry.npmjs.org/uglify-js/1.0.1", + "1.0.2": "http://registry.npmjs.org/uglify-js/1.0.2", + "1.0.3": "http://registry.npmjs.org/uglify-js/1.0.3", + "1.0.4": "http://registry.npmjs.org/uglify-js/1.0.4", + "1.0.5": "http://registry.npmjs.org/uglify-js/1.0.5", + "1.0.6": "http://registry.npmjs.org/uglify-js/1.0.6", + "1.0.7": "http://registry.npmjs.org/uglify-js/1.0.7", + "1.1.0": "http://registry.npmjs.org/uglify-js/1.1.0", + "1.1.1": "http://registry.npmjs.org/uglify-js/1.1.1", + "1.2.0": "http://registry.npmjs.org/uglify-js/1.2.0", + "1.2.1": "http://registry.npmjs.org/uglify-js/1.2.1", + "1.2.2": "http://registry.npmjs.org/uglify-js/1.2.2" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/uglify-js/-/uglify-js-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "baaf5c2223440d31f008bd248aaa728e8c771a8a", + "tarball": "http://registry.npmjs.org/uglify-js/-/uglify-js-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "04e48708cb7175fba8b23aba7596e39c849ccfab", + "tarball": "http://registry.npmjs.org/uglify-js/-/uglify-js-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "48b2d19b65c284a82c4d6ccab6ed141b8e313a72", + "tarball": "http://registry.npmjs.org/uglify-js/-/uglify-js-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "c40d18e51784a230477bb0354fa415ec361dba5e", + "tarball": "http://registry.npmjs.org/uglify-js/-/uglify-js-0.0.5.tgz" + }, + "1.0.1": { + "shasum": "b34b3220e7d634401f388c8bd69e9663cec6ca94", + "tarball": "http://registry.npmjs.org/uglify-js/-/uglify-js-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "28494cc77c26042d4065d73736391d78417d680a", + "tarball": "http://registry.npmjs.org/uglify-js/-/uglify-js-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "73c4f09bcec47ec5e8669cb37c11b95b7014f945", + "tarball": "http://registry.npmjs.org/uglify-js/-/uglify-js-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "7512dbbfca85e749683800c65407e55491700778", + "tarball": "http://registry.npmjs.org/uglify-js/-/uglify-js-1.0.4.tgz" + }, + "1.0.5": { + "shasum": "25679bdcff52f9500774a644cef3129b8ddb5cf2", + "tarball": "http://registry.npmjs.org/uglify-js/-/uglify-js-1.0.5.tgz" + }, + "1.0.6": { + "shasum": "f0d3aafd463f26a437b9ebc19f4947ab7e8078aa", + "tarball": "http://registry.npmjs.org/uglify-js/-/uglify-js-1.0.6.tgz" + }, + "1.0.7": { + "shasum": "2b7a10e628f88029a553d2b4bbb17409343755c0", + "tarball": "http://registry.npmjs.org/uglify-js/-/uglify-js-1.0.7.tgz" + }, + "1.1.0": { + "shasum": "ac8976646d2c5a844d915cb9c50a73a17425ccad", + "tarball": "http://registry.npmjs.org/uglify-js/-/uglify-js-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "ee71a97c4cefd06a1a9b20437f34118982aa035b", + "tarball": "http://registry.npmjs.org/uglify-js/-/uglify-js-1.1.1.tgz" + }, + "1.2.0": { + "shasum": "dd0e535f92dc5047a7526d667327bd5581e153fc", + "tarball": "http://registry.npmjs.org/uglify-js/-/uglify-js-1.2.0.tgz" + }, + "1.2.1": { + "shasum": "7edd89daadd1997b71037b80d4e9b3fd147e726e", + "tarball": "http://registry.npmjs.org/uglify-js/-/uglify-js-1.2.1.tgz" + }, + "1.2.2": { + "shasum": "76bc64ea1777c92d8d93bebaeec0ecba6e6fc075", + "tarball": "http://registry.npmjs.org/uglify-js/-/uglify-js-1.2.2.tgz" + } + }, + "url": "http://registry.npmjs.org/uglify-js/" + }, + "uglify-js-middleware": { + "name": "uglify-js-middleware", + "description": "Connect middleware for automatic uglification of JS files.", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "jakewharton", + "email": "jakewharton@gmail.com" + } + ], + "time": { + "modified": "2011-08-17T13:44:20.273Z", + "created": "2011-05-02T22:58:47.664Z", + "1.0.0": "2011-05-02T22:58:49.443Z", + "1.0.1": "2011-08-17T13:44:20.273Z" + }, + "author": { + "name": "Jake Wharton", + "email": "jakewharton@gmail.com", + "url": "http://jakewharton.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/JakeWharton/uglify-js-middleware.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/uglify-js-middleware/1.0.0", + "1.0.1": "http://registry.npmjs.org/uglify-js-middleware/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "b4e8ecc64639d940b75583f25284aa72cc6ae7c3", + "tarball": "http://registry.npmjs.org/uglify-js-middleware/-/uglify-js-middleware-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "9c3e99e71cec2795031f65e626b6df7d2729255b", + "tarball": "http://registry.npmjs.org/uglify-js-middleware/-/uglify-js-middleware-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/uglify-js-middleware/" + }, + "uglifycss": { + "name": "uglifycss", + "description": "Port of YUI CSS Compressor to NodeJS", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "fmarcia", + "email": "franck.marcia@gmail.com" + } + ], + "time": { + "modified": "2011-12-02T05:44:59.346Z", + "created": "2011-05-29T07:51:36.360Z", + "0.0.3": "2011-05-29T07:51:37.482Z", + "0.0.4": "2011-10-02T16:36:25.802Z", + "0.0.5": "2011-12-02T05:44:59.346Z" + }, + "author": { + "name": "Franck Marcia", + "email": "franck.marcia@gmail.com", + "url": "https://github.com/fmarcia" + }, + "repository": { + "type": "git", + "url": "git://github.com/fmarcia/UglifyCSS.git" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/uglifycss/0.0.3", + "0.0.4": "http://registry.npmjs.org/uglifycss/0.0.4", + "0.0.5": "http://registry.npmjs.org/uglifycss/0.0.5" + }, + "dist": { + "0.0.3": { + "shasum": "ea7e94ee160ec4b1a35890421d9b5a34b4e94a31", + "tarball": "http://registry.npmjs.org/uglifycss/-/uglifycss-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "e0c2d99be4ed25b0d5a1a057d5b26aefdd370035", + "tarball": "http://registry.npmjs.org/uglifycss/-/uglifycss-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "db9652bbf3fed50d2e9b6e930e28380a0fc3a5b7", + "tarball": "http://registry.npmjs.org/uglifycss/-/uglifycss-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/uglifycss/" + }, + "ui": { + "name": "ui", + "description": "platform agnostic ui models", + "dist-tags": { + "latest": "0.2.4" + }, + "maintainers": [ + { + "name": "marcuswestin", + "email": "narcvs@gmail.com" + } + ], + "time": { + "modified": "2011-08-17T21:02:37.134Z", + "created": "2011-06-24T18:33:24.010Z", + "0.0.0": "2011-06-24T18:33:24.163Z", + "0.1.0": "2011-06-30T06:32:47.141Z", + "0.2.0": "2011-08-09T20:06:18.480Z", + "0.2.1": "2011-08-10T05:11:04.353Z", + "0.2.2": "2011-08-10T05:13:25.468Z", + "0.2.3": "2011-08-11T00:10:41.706Z", + "0.2.4": "2011-08-17T20:53:42.178Z" + }, + "author": { + "name": "Marcus Westin", + "email": "narcvs@gmail.com", + "url": "http://marcuswest.in/" + }, + "repository": { + "type": "git", + "url": "git://github.com/marcuswestin/ui.js.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/ui/0.0.0", + "0.1.0": "http://registry.npmjs.org/ui/0.1.0", + "0.2.0": "http://registry.npmjs.org/ui/0.2.0", + "0.2.1": "http://registry.npmjs.org/ui/0.2.1", + "0.2.2": "http://registry.npmjs.org/ui/0.2.2", + "0.2.3": "http://registry.npmjs.org/ui/0.2.3", + "0.2.4": "http://registry.npmjs.org/ui/0.2.4" + }, + "dist": { + "0.0.0": { + "shasum": "d499d3182077b43b91fd4d855e71c0a0617c83ae", + "tarball": "http://registry.npmjs.org/ui/-/ui-0.0.0.tgz" + }, + "0.1.0": { + "shasum": "dbce5f6a96d9db7d86a12b7fc0c028ebe8f758e1", + "tarball": "http://registry.npmjs.org/ui/-/ui-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "f20a2124d7855ad402447a063c9084fd24743706", + "tarball": "http://registry.npmjs.org/ui/-/ui-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "79c7e6db21ec3ac65365d0faccb75d4106215535", + "tarball": "http://registry.npmjs.org/ui/-/ui-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "172e65c557877365b9f7c893bf30e96182d27057", + "tarball": "http://registry.npmjs.org/ui/-/ui-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "14e9f653445373c40c50552c210d164f8eac4662", + "tarball": "http://registry.npmjs.org/ui/-/ui-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "39b7c8086b2b1b64a72c6437c38ddc7c4e4e836d", + "tarball": "http://registry.npmjs.org/ui/-/ui-0.2.4.tgz" + } + }, + "url": "http://registry.npmjs.org/ui/" + }, + "UkGeoTool": { + "name": "UkGeoTool", + "description": "Simple package which provides methods to convert between lat/long and easting/northings", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "dbamber", + "email": "dbmber@gmail.com" + } + ], + "time": { + "modified": "2011-08-11T18:59:21.398Z", + "created": "2011-08-11T18:54:04.712Z", + "0.1.0": "2011-08-11T18:54:05.171Z", + "0.1.1": "2011-08-11T18:59:21.398Z" + }, + "author": { + "name": "David Bamber", + "email": "dbamber@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/UkGeoTool/0.1.0", + "0.1.1": "http://registry.npmjs.org/UkGeoTool/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "28a864a66c7125b1f668efe807227aff19a152d1", + "tarball": "http://registry.npmjs.org/UkGeoTool/-/UkGeoTool-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "d97c3be15004883322eccb01dfca671a3445405f", + "tarball": "http://registry.npmjs.org/UkGeoTool/-/UkGeoTool-0.1.1.tgz" + } + }, + "keywords": [ + "package", + "example" + ], + "url": "http://registry.npmjs.org/UkGeoTool/" + }, + "ukijs": { + "name": "ukijs", + "description": "Simple client side app framework", + "dist-tags": { + "latest": "0.4.6" + }, + "maintainers": [ + { + "name": "voloko", + "email": "voloko@gmail.com" + } + ], + "time": { + "modified": "2011-04-17T20:43:22.805Z", + "created": "2011-02-22T20:00:00.828Z", + "0.4.0": "2011-02-22T20:00:01.091Z", + "0.4.1": "2011-02-24T02:02:43.360Z", + "0.4.2": "2011-02-24T02:13:22.494Z", + "0.4.3": "2011-03-16T00:37:00.664Z", + "0.4.5": "2011-03-16T02:29:38.337Z", + "0.4.6": "2011-04-17T20:43:22.805Z" + }, + "author": { + "name": "Vladimir Kolesnikov", + "email": "voloko@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/voloko/uki.git" + }, + "versions": { + "0.4.0": "http://registry.npmjs.org/ukijs/0.4.0", + "0.4.1": "http://registry.npmjs.org/ukijs/0.4.1", + "0.4.2": "http://registry.npmjs.org/ukijs/0.4.2", + "0.4.3": "http://registry.npmjs.org/ukijs/0.4.3", + "0.4.5": "http://registry.npmjs.org/ukijs/0.4.5", + "0.4.6": "http://registry.npmjs.org/ukijs/0.4.6" + }, + "dist": { + "0.4.0": { + "shasum": "c321f1bd7fb4c46a97a5fbde247b1128501f49d6", + "tarball": "http://registry.npmjs.org/ukijs/-/ukijs-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "5bc9ac22c69fd0a380691332ddfc0092f46c0b40", + "tarball": "http://registry.npmjs.org/ukijs/-/ukijs-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "c454e4f7425126e491b71498c32deff86d916f5d", + "tarball": "http://registry.npmjs.org/ukijs/-/ukijs-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "23b73c946cea1025d277b5ee1523e315f7f93b3b", + "tarball": "http://registry.npmjs.org/ukijs/-/ukijs-0.4.3.tgz" + }, + "0.4.5": { + "shasum": "54b8fe2d5cc597461d77b4499e347c10217c4351", + "tarball": "http://registry.npmjs.org/ukijs/-/ukijs-0.4.5.tgz" + }, + "0.4.6": { + "shasum": "5f336efaf2b9307c9b5d7ccc8ab513387eb051e0", + "tarball": "http://registry.npmjs.org/ukijs/-/ukijs-0.4.6.tgz" + } + }, + "keywords": [ + "uki", + "ukijs", + "widgets", + "mvc", + "view" + ], + "url": "http://registry.npmjs.org/ukijs/" + }, + "ulimit": { + "name": "ulimit", + "description": "ulimit is a tiny node module for parsing `ulimit` output. Useful when you want to know more about your app's limitations (number of open files, etc.)", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "mmalecki", + "email": "maciej.malecki@notimplemented.org" + } + ], + "time": { + "modified": "2011-10-03T20:39:57.148Z", + "created": "2011-10-03T10:18:03.294Z", + "0.0.1": "2011-10-03T10:18:05.519Z", + "0.0.2": "2011-10-03T20:39:57.148Z" + }, + "author": { + "name": "Maciej Małecki", + "email": "maciej.malecki@notimplemented.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/mmalecki/node-ulimit.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ulimit/0.0.1", + "0.0.2": "http://registry.npmjs.org/ulimit/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "b29eab8c816ac42b1856060186d9b29a63e7145c", + "tarball": "http://registry.npmjs.org/ulimit/-/ulimit-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "2b51f9dc8381ae4102636cec5eb338c2630588a0", + "tarball": "http://registry.npmjs.org/ulimit/-/ulimit-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/ulimit/" + }, + "ulog": { + "name": "ulog", + "description": "The minimal logger.", + "dist-tags": { + "latest": "0.0.0" + }, + "readme": null, + "maintainers": [ + { + "name": "felixge", + "email": "felix@debuggable.com" + } + ], + "time": { + "modified": "2011-11-27T14:29:20.380Z", + "created": "2011-11-27T14:29:18.926Z", + "0.0.0": "2011-11-27T14:29:20.380Z" + }, + "author": { + "name": "Felix Geisendörfer", + "email": "felix@debuggable.com", + "url": "http://debuggable.com/" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/ulog/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "c3b42f421654f845e21745f8b94b5d03643a0290", + "tarball": "http://registry.npmjs.org/ulog/-/ulog-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/ulog/" + }, + "umecob": { + "name": "umecob", + "description": "JS template engine available in both Browsers and Node.js supporting asynchronous methods with JSDeferred.", + "dist-tags": { + "latest": "1.1.8" + }, + "maintainers": [ + { + "name": "shinout", + "email": "shinout310@gmail.com" + } + ], + "time": { + "modified": "2011-04-22T04:06:27.669Z", + "created": "2011-04-01T15:55:24.447Z", + "1.1.0": "2011-04-01T15:55:25.105Z", + "1.1.1": "2011-04-01T16:34:17.276Z", + "1.1.2": "2011-04-04T05:09:14.651Z", + "1.1.3": "2011-04-11T13:57:07.805Z", + "1.1.4": "2011-04-12T05:43:53.689Z", + "1.1.5": "2011-04-12T10:46:18.250Z", + "1.1.6": "2011-04-20T11:17:49.340Z", + "1.1.7": "2011-04-22T02:59:40.432Z", + "1.1.8": "2011-04-22T04:06:27.669Z" + }, + "author": { + "name": "SHIN Suzuki", + "email": "shinout310@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/shinout/umecob.js.git" + }, + "versions": { + "1.1.0": "http://registry.npmjs.org/umecob/1.1.0", + "1.1.1": "http://registry.npmjs.org/umecob/1.1.1", + "1.1.2": "http://registry.npmjs.org/umecob/1.1.2", + "1.1.3": "http://registry.npmjs.org/umecob/1.1.3", + "1.1.4": "http://registry.npmjs.org/umecob/1.1.4", + "1.1.5": "http://registry.npmjs.org/umecob/1.1.5", + "1.1.6": "http://registry.npmjs.org/umecob/1.1.6", + "1.1.7": "http://registry.npmjs.org/umecob/1.1.7", + "1.1.8": "http://registry.npmjs.org/umecob/1.1.8" + }, + "dist": { + "1.1.0": { + "shasum": "854368d98f602c86c448446b5edbbfd662439037", + "tarball": "http://registry.npmjs.org/umecob/-/umecob-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "ef1365d829986c991366939b117550a3f98b7953", + "tarball": "http://registry.npmjs.org/umecob/-/umecob-1.1.1.tgz" + }, + "1.1.2": { + "shasum": "a37ac9db4c2e47e48457f0131a2837fd2e8406c4", + "tarball": "http://registry.npmjs.org/umecob/-/umecob-1.1.2.tgz" + }, + "1.1.3": { + "shasum": "aaade521fd7c83142dd60d9334c15147cdffed84", + "tarball": "http://registry.npmjs.org/umecob/-/umecob-1.1.3.tgz" + }, + "1.1.4": { + "shasum": "bafab1ba2dd3a691749361702ad9d18eb0ca23ad", + "tarball": "http://registry.npmjs.org/umecob/-/umecob-1.1.4.tgz" + }, + "1.1.5": { + "shasum": "9f248f3b2609a7041b8b17227a73c90dd528312a", + "tarball": "http://registry.npmjs.org/umecob/-/umecob-1.1.5.tgz" + }, + "1.1.6": { + "shasum": "b9e30e158d8b19ad8bdea8213dcc098b16572638", + "tarball": "http://registry.npmjs.org/umecob/-/umecob-1.1.6.tgz" + }, + "1.1.7": { + "shasum": "e52401e52b48ec16997eed6c95a459b58bbb220d", + "tarball": "http://registry.npmjs.org/umecob/-/umecob-1.1.7.tgz" + }, + "1.1.8": { + "shasum": "0d104ed91bf395cb92f2d24290e41ad0fcd1d2fb", + "tarball": "http://registry.npmjs.org/umecob/-/umecob-1.1.8.tgz" + } + }, + "url": "http://registry.npmjs.org/umecob/" + }, + "underground": { + "name": "underground", + "description": "JavaScript base library", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": null, + "maintainers": [ + { + "name": "onirame", + "email": "enrico.marino@email.com" + } + ], + "time": { + "modified": "2011-12-02T13:38:51.353Z", + "created": "2011-12-02T13:38:49.516Z", + "0.0.1": "2011-12-02T13:38:51.353Z" + }, + "author": { + "name": "Enrico Marino", + "email": "enrico.marino@email.com", + "url": "onirame.no.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/onirame/underground.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/underground/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "be2c828fc47df44492300d2b789116463b17a57f", + "tarball": "http://registry.npmjs.org/underground/-/underground-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/underground/" + }, + "underscore": { + "name": "underscore", + "description": "JavaScript's functional programming helper library.", + "dist-tags": { + "latest": "1.2.3" + }, + "maintainers": [ + { + "name": "documentcloud", + "email": "jeremy@documentcloud.org" + }, + { + "name": "jashkenas", + "email": "jashkenas@gmail.com" + } + ], + "author": { + "name": "Jeremy Ashkenas", + "email": "jeremy@documentcloud.org" + }, + "time": { + "modified": "2011-12-07T15:12:18.045Z", + "created": "2011-01-09T19:04:10.529Z", + "1.0.3": "2011-12-07T15:12:18.045Z", + "1.0.4": "2011-12-07T15:12:18.045Z", + "1.1.0": "2011-12-07T15:12:18.045Z", + "1.1.1": "2011-12-07T15:12:18.045Z", + "1.1.2": "2011-12-07T15:12:18.045Z", + "1.1.3": "2011-12-07T15:12:18.045Z", + "1.1.4": "2011-12-07T15:12:18.045Z", + "1.1.5": "2011-12-07T15:12:18.045Z", + "1.1.6": "2011-12-07T15:12:18.045Z", + "1.1.7": "2011-12-07T15:12:18.045Z", + "1.2.0": "2011-12-07T15:12:18.045Z", + "1.2.1": "2011-12-07T15:12:18.045Z", + "1.2.2": "2011-11-14T20:28:47.115Z", + "1.2.3": "2011-12-07T15:12:18.045Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/documentcloud/underscore.git" + }, + "users": { + "vesln": true, + "mvolkmann": true + }, + "versions": { + "1.0.3": "http://registry.npmjs.org/underscore/1.0.3", + "1.0.4": "http://registry.npmjs.org/underscore/1.0.4", + "1.1.0": "http://registry.npmjs.org/underscore/1.1.0", + "1.1.1": "http://registry.npmjs.org/underscore/1.1.1", + "1.1.2": "http://registry.npmjs.org/underscore/1.1.2", + "1.1.3": "http://registry.npmjs.org/underscore/1.1.3", + "1.1.4": "http://registry.npmjs.org/underscore/1.1.4", + "1.1.5": "http://registry.npmjs.org/underscore/1.1.5", + "1.1.6": "http://registry.npmjs.org/underscore/1.1.6", + "1.1.7": "http://registry.npmjs.org/underscore/1.1.7", + "1.2.0": "http://registry.npmjs.org/underscore/1.2.0", + "1.2.1": "http://registry.npmjs.org/underscore/1.2.1", + "1.2.2": "http://registry.npmjs.org/underscore/1.2.2", + "1.2.3": "http://registry.npmjs.org/underscore/1.2.3" + }, + "dist": { + "1.0.3": { + "tarball": "http://registry.npmjs.org/underscore/-/underscore-1.0.3.tgz" + }, + "1.0.4": { + "tarball": "http://registry.npmjs.org/underscore/-/underscore-1.0.4.tgz" + }, + "1.1.0": { + "tarball": "http://registry.npmjs.org/underscore/-/underscore-1.1.0.tgz" + }, + "1.1.1": { + "tarball": "http://registry.npmjs.org/underscore/-/underscore-1.1.1.tgz" + }, + "1.1.2": { + "tarball": "http://registry.npmjs.org/underscore/-/underscore-1.1.2.tgz" + }, + "1.1.3": { + "tarball": "http://registry.npmjs.org/underscore/-/underscore-1.1.3.tgz" + }, + "1.1.4": { + "shasum": "9e82274902865625b3a6d4c315a38ffd80047dae", + "tarball": "http://registry.npmjs.org/underscore/-/underscore-1.1.4.tgz" + }, + "1.1.5": { + "shasum": "23601d62c75619998b2f0db24938102793336a56", + "tarball": "http://registry.npmjs.org/underscore/-/underscore-1.1.5.tgz" + }, + "1.1.6": { + "shasum": "6868da1bdd72d75285be0b4e50f228e70d001a2c", + "tarball": "http://registry.npmjs.org/underscore/-/underscore-1.1.6.tgz" + }, + "1.1.7": { + "shasum": "40bab84bad19d230096e8d6ef628bff055d83db0", + "tarball": "http://registry.npmjs.org/underscore/-/underscore-1.1.7.tgz" + }, + "1.2.0": { + "shasum": "b32ce32c8c118caa8031c10b54c7f65ab3b557fd", + "tarball": "http://registry.npmjs.org/underscore/-/underscore-1.2.0.tgz" + }, + "1.2.1": { + "shasum": "fc5c6b0765673d92a2d4ac8b4dc0aa88702e2bd4", + "tarball": "http://registry.npmjs.org/underscore/-/underscore-1.2.1.tgz" + }, + "1.2.2": { + "shasum": "74dd40e9face84e724eb2edae945b8aedc233ba3", + "tarball": "http://registry.npmjs.org/underscore/-/underscore-1.2.2.tgz" + }, + "1.2.3": { + "shasum": "11b874da70f4683d7d48bba2b44be1e600d2f6cf", + "tarball": "http://registry.npmjs.org/underscore/-/underscore-1.2.3.tgz" + } + }, + "keywords": [ + "util", + "functional", + "server", + "client", + "browser" + ], + "url": "http://registry.npmjs.org/underscore/" + }, + "underscore-data": { + "name": "underscore-data", + "description": "Practical tools to manage schemaful mongodb documents", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "dvv", + "email": "dronnikov@gmail.com" + } + ], + "time": { + "modified": "2011-10-05T16:08:00.665Z", + "created": "2011-03-26T06:13:13.924Z", + "0.0.1": "2011-03-26T06:13:14.571Z", + "0.0.2": "2011-04-11T12:14:31.450Z", + "0.0.3": "2011-04-16T17:26:01.196Z", + "0.0.4": "2011-04-18T17:51:39.852Z", + "0.0.6": "2011-10-05T16:08:00.665Z" + }, + "author": { + "name": "Vladimir Dronnikov", + "email": "dronnikov@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/underscore-data/0.0.1", + "0.0.2": "http://registry.npmjs.org/underscore-data/0.0.2", + "0.0.3": "http://registry.npmjs.org/underscore-data/0.0.3", + "0.0.4": "http://registry.npmjs.org/underscore-data/0.0.4", + "0.0.6": "http://registry.npmjs.org/underscore-data/0.0.6" + }, + "dist": { + "0.0.1": { + "shasum": "b5551a6c8b573deec830a2d7228a02802b3d25ab", + "tarball": "http://registry.npmjs.org/underscore-data/-/underscore-data-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "6d52a196fb4b4e0311896d17ab9f4a8a70c8d0c8", + "tarball": "http://registry.npmjs.org/underscore-data/-/underscore-data-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "2f1a04f9cde395a99ac51089c6414238a7d62227", + "tarball": "http://registry.npmjs.org/underscore-data/-/underscore-data-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "4a2525b27cb6b2ac8e1a7cecd43a3e2b3770029e", + "tarball": "http://registry.npmjs.org/underscore-data/-/underscore-data-0.0.4.tgz" + }, + "0.0.6": { + "shasum": "73bc00998e46ee72595f3cd523f356cd47989fca", + "tarball": "http://registry.npmjs.org/underscore-data/-/underscore-data-0.0.6.tgz" + } + }, + "keywords": [ + "json", + "schema", + "underscore", + "javascript", + "mongodb", + "rql" + ], + "url": "http://registry.npmjs.org/underscore-data/" + }, + "underscore.date": { + "name": "underscore.date", + "description": "Underscore.date is a javascript date library that helps create, manipulate, and format dates without extending the `Date` prototype.", + "dist-tags": { + "latest": "0.6.1" + }, + "maintainers": [ + { + "name": "timrwood", + "email": "washwithcare@gmail.com" + } + ], + "time": { + "modified": "2011-10-11T23:38:57.008Z", + "created": "2011-05-02T18:16:04.867Z", + "0.4.0": "2011-05-02T18:16:05.326Z", + "0.4.1": "2011-05-09T16:02:53.426Z", + "0.5.0": "2011-06-13T16:16:43.508Z", + "0.5.1": "2011-06-16T19:40:38.736Z", + "0.5.2": "2011-07-11T16:05:46.935Z", + "0.6.0": "2011-09-25T19:15:22.518Z", + "0.6.1": "2011-10-11T23:38:57.008Z" + }, + "author": { + "name": "Tim Wood", + "email": "washwithcare@gmail.com", + "url": "http://timwoodcreates.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/timrwood/underscore.date.git" + }, + "versions": { + "0.4.0": "http://registry.npmjs.org/underscore.date/0.4.0", + "0.4.1": "http://registry.npmjs.org/underscore.date/0.4.1", + "0.5.0": "http://registry.npmjs.org/underscore.date/0.5.0", + "0.5.1": "http://registry.npmjs.org/underscore.date/0.5.1", + "0.5.2": "http://registry.npmjs.org/underscore.date/0.5.2", + "0.6.0": "http://registry.npmjs.org/underscore.date/0.6.0", + "0.6.1": "http://registry.npmjs.org/underscore.date/0.6.1" + }, + "dist": { + "0.4.0": { + "shasum": "ef1b849ffad1be193e973270d2898ad52968ca72", + "tarball": "http://registry.npmjs.org/underscore.date/-/underscore.date-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "4bc1b2816c3b932e03b74a8e7b500d57a7776a37", + "tarball": "http://registry.npmjs.org/underscore.date/-/underscore.date-0.4.1.tgz" + }, + "0.5.0": { + "shasum": "706d401f7ec58b5669f9a889a3224d9e10d1cf20", + "tarball": "http://registry.npmjs.org/underscore.date/-/underscore.date-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "e2707d6f4192db68e1d7a7326a37a9b2ff222da5", + "tarball": "http://registry.npmjs.org/underscore.date/-/underscore.date-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "e85936dce7a95e27ccf190f36140c057706690c8", + "tarball": "http://registry.npmjs.org/underscore.date/-/underscore.date-0.5.2.tgz" + }, + "0.6.0": { + "shasum": "9ec68f741057a73700241b8e386ee47ce291985c", + "tarball": "http://registry.npmjs.org/underscore.date/-/underscore.date-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "c476fc6ec976be1b25ae6b63efb228c38ce1b24e", + "tarball": "http://registry.npmjs.org/underscore.date/-/underscore.date-0.6.1.tgz" + } + }, + "keywords": [ + "underscore", + "date" + ], + "url": "http://registry.npmjs.org/underscore.date/" + }, + "underscore.deferred": { + "name": "underscore.deferred", + "description": "Underscore style Deferreds", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "wookiehangover", + "email": "sam@quickleft.com" + } + ], + "time": { + "modified": "2011-11-18T05:18:07.133Z", + "created": "2011-10-14T05:42:01.254Z", + "0.0.1": "2011-10-14T05:42:02.169Z", + "0.0.2": "2011-10-16T04:51:21.632Z", + "0.0.3": "2011-11-18T05:18:07.133Z" + }, + "author": { + "name": "wookiehangover", + "email": "sam@quickleft.com", + "url": "http://quickleft.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/wookiehangover/underscore.Deferred.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/underscore.deferred/0.0.1", + "0.0.2": "http://registry.npmjs.org/underscore.deferred/0.0.2", + "0.0.3": "http://registry.npmjs.org/underscore.deferred/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "75f555ba95b52cf329d7558518889872307bc970", + "tarball": "http://registry.npmjs.org/underscore.deferred/-/underscore.deferred-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "9e52c8eac1c081892c9b39e98306dc4081490291", + "tarball": "http://registry.npmjs.org/underscore.deferred/-/underscore.deferred-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "0f42b537fc9ad71cd1d61eb67c28d32d02395d74", + "tarball": "http://registry.npmjs.org/underscore.deferred/-/underscore.deferred-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/underscore.deferred/" + }, + "underscore.inspector": { + "name": "underscore.inspector", + "description": "A javascript object/value inspector mixin for underscore.js", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "mark-hahn", + "email": "mark@hahnca.com" + } + ], + "time": { + "modified": "2011-06-19T08:25:19.893Z", + "created": "2011-06-01T17:17:51.019Z", + "0.1.0": "2011-06-01T17:17:52.118Z", + "0.1.1": "2011-06-04T02:03:00.710Z", + "0.1.2": "2011-06-19T08:25:19.893Z" + }, + "repository": { + "type": "git", + "url": "git@github.com:mark-hahn/underscore.inspector.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/underscore.inspector/0.1.0", + "0.1.1": "http://registry.npmjs.org/underscore.inspector/0.1.1", + "0.1.2": "http://registry.npmjs.org/underscore.inspector/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "0e0808aeb87eb8ce85954bcad3dd03a12dc6e747", + "tarball": "http://registry.npmjs.org/underscore.inspector/-/underscore.inspector-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "653e84ce928924ffb35897465626218a88581f54", + "tarball": "http://registry.npmjs.org/underscore.inspector/-/underscore.inspector-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "1c0804a2d588973a19b894e95750484c5fe2b5c6", + "tarball": "http://registry.npmjs.org/underscore.inspector/-/underscore.inspector-0.1.2.tgz" + } + }, + "keywords": [ + "underscore", + "underscore.string", + "utility", + "debugging" + ], + "url": "http://registry.npmjs.org/underscore.inspector/" + }, + "underscore.logger": { + "name": "underscore.logger", + "description": "Cross-browser and Node.js empowered logging. Use as Underscore.js mixin if desired.", + "dist-tags": { + "latest": "0.3.1" + }, + "readme": "# CommonLogger.js\n\n> Cross-browser and Node.js empowered logging.\n\n## Install\n\n```\nnpm install underscore.logger\n```\n\n## Require\n\n### Node.js\n\n``` coffeescript\n_console = require('underscore.logger')\n```\n\nIf you want to make it useable everywhere in node:\n\n``` coffeescript\nglobal._console ||= require('underscore.logger')\n```\n\nOr to make it an underscore mixin:\n\n``` coffeescript\n_.mixin require('underscore.logger').toMixin()\n```\n\n### Browser\n\n``` html\n\n```\n\n## Api\n\n``` coffeescript\n# set the log level so anything above this won't show up\n_console.level = CommonLogger.DEBUG\n\n# override default colors for any of the log levels\n_console.colors[CommonLogger.WARN] = CommonLogger.ANSI.RED\n\n# the first parameter is the message, any following parameters are variables.\n_console.trace \"I'm a trace\"\n_console.debug \"Debug message\"\n_console.info \"%s %s!\", \"Hello\", \"World\" #=> \"Hello World!\"\n_console.error \"ERROR!\"\n_console.fatal \"oh man...\"\n\n# set a custom `out` method, which defaults to `console.log`\n_console.out = (message) -> alert(message)\n\n# customize the format too if you'd like, which defaults to `[date] level message`\n_console.format = (date, level, message) -> message\n\n# watch the fps to see how your app is performing (`this` is the `CommonLogger.Timer` object)\n_console.on \"frame\" ->\n $(\"#log-line-template\").tmpl(@fps).appendTo(\"#log-panel\")\n```\n\nTo create a new one, maybe because you want two separate loggers (the edge case), you can use the constructor:\n\n``` coffeescript\nmyLogger = new _console.constructor\n```\n\n## Resources\n\n- http://en.wikipedia.org/wiki/Common_Log_Format\n\n## Development\n\n```\n./node_modules/coffee-script/bin/coffee -o lib -w src\n./node_modules/jasmine-node/bin/jasmine-node --coffee ./spec\n```\n\n## License\n\n(The MIT License)\n\nCopyright © 2011 [Lance Pollard](http://twitter.com/viatropos) <lancejpollard@gmail.com>\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n", + "maintainers": [ + { + "name": "viatropos", + "email": "lancejpollard@gmail.com" + } + ], + "time": { + "modified": "2011-11-16T01:10:51.443Z", + "created": "2011-11-15T01:41:37.751Z", + "0.3.0": "2011-11-15T01:41:39.180Z", + "0.3.1": "2011-11-16T01:10:51.443Z" + }, + "author": { + "name": "Lance Pollard", + "email": "lancejpollard@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/viatropos/underscore.logger.js.git" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/underscore.logger/0.3.0", + "0.3.1": "http://registry.npmjs.org/underscore.logger/0.3.1" + }, + "dist": { + "0.3.0": { + "shasum": "726bc26e0034eeb354720c5c609f6e0d537bc5e0", + "tarball": "http://registry.npmjs.org/underscore.logger/-/underscore.logger-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "f61a09f2ef43fe81797731245418c75767eed38e", + "tarball": "http://registry.npmjs.org/underscore.logger/-/underscore.logger-0.3.1.tgz" + } + }, + "keywords": [ + "logging", + "node", + "browser" + ], + "url": "http://registry.npmjs.org/underscore.logger/" + }, + "underscore.string": { + "name": "underscore.string", + "description": "String manipulation extensions for Underscore.js javascript library.", + "dist-tags": { + "latest": "2.0.0" + }, + "readme": null, + "maintainers": [ + { + "name": "edtsech", + "email": "edtsech@gmail.com" + } + ], + "time": { + "modified": "2011-12-02T21:49:56.435Z", + "created": "2011-11-10T16:30:05.477Z", + "0.9.2": "2011-11-10T16:30:07.164Z", + "1.0.0": "2011-11-10T16:31:05.009Z", + "1.1.3": "2011-11-10T16:34:19.092Z", + "1.1.4": "2011-11-10T16:34:53.263Z", + "1.1.5": "2011-11-10T16:35:32.410Z", + "1.1.6": "2011-11-10T16:37:00.662Z", + "1.2.0": "2011-11-10T16:37:54.359Z", + "2.0.0": "2011-12-02T21:49:56.435Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/epeli/underscore.string.git" + }, + "versions": { + "0.9.2": "http://registry.npmjs.org/underscore.string/0.9.2", + "1.0.0": "http://registry.npmjs.org/underscore.string/1.0.0", + "1.1.3": "http://registry.npmjs.org/underscore.string/1.1.3", + "1.1.4": "http://registry.npmjs.org/underscore.string/1.1.4", + "1.1.5": "http://registry.npmjs.org/underscore.string/1.1.5", + "1.1.6": "http://registry.npmjs.org/underscore.string/1.1.6", + "2.0.0": "http://registry.npmjs.org/underscore.string/2.0.0" + }, + "dist": { + "0.9.2": { + "shasum": "023b07c749835d918119fb82d41cbf9a4bc42a94", + "tarball": "http://registry.npmjs.org/underscore.string/-/underscore.string-0.9.2.tgz" + }, + "1.0.0": { + "shasum": "7f003cae4e79aa6a833b316426d6a43b77986007", + "tarball": "http://registry.npmjs.org/underscore.string/-/underscore.string-1.0.0.tgz" + }, + "1.1.3": { + "shasum": "eed5284c6dfba2ed6db7e212d12537bcff6d7341", + "tarball": "http://registry.npmjs.org/underscore.string/-/underscore.string-1.1.3.tgz" + }, + "1.1.4": { + "shasum": "9be06b23b8e3d996ea2020f9984202069e3dee12", + "tarball": "http://registry.npmjs.org/underscore.string/-/underscore.string-1.1.4.tgz" + }, + "1.1.5": { + "shasum": "50ea8e6803230b3d6d1a4abdf77ba9b479ec3158", + "tarball": "http://registry.npmjs.org/underscore.string/-/underscore.string-1.1.5.tgz" + }, + "1.1.6": { + "shasum": "e7dca073ccd945515a6a69e7af484aee4e52cdc9", + "tarball": "http://registry.npmjs.org/underscore.string/-/underscore.string-1.1.6.tgz" + }, + "2.0.0": { + "shasum": "7470858a54a0bb3560d037da56dcc67b5181e11a", + "tarball": "http://registry.npmjs.org/underscore.string/-/underscore.string-2.0.0.tgz" + } + }, + "keywords": [ + "underscore", + "string" + ], + "url": "http://registry.npmjs.org/underscore.string/" + }, + "underscore.string-thinkfuse": { + "name": "underscore.string-thinkfuse", + "description": "String manipulation extensions for Underscore.js javascript library.", + "dist-tags": { + "latest": "1.1.5" + }, + "maintainers": [ + { + "name": "brandonbloom", + "email": "brandon@brandonbloom.name" + } + ], + "time": { + "modified": "2011-11-10T06:59:57.251Z", + "created": "2011-11-10T06:59:55.743Z", + "1.1.5": "2011-11-10T06:59:57.251Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/edtsech/underscore.string.git" + }, + "versions": { + "1.1.5": "http://registry.npmjs.org/underscore.string-thinkfuse/1.1.5" + }, + "dist": { + "1.1.5": { + "shasum": "434434dc79f8786844c281d8cb144a4d33fe49e2", + "tarball": "http://registry.npmjs.org/underscore.string-thinkfuse/-/underscore.string-thinkfuse-1.1.5.tgz" + } + }, + "keywords": [ + "underscore", + "string" + ], + "url": "http://registry.npmjs.org/underscore.string-thinkfuse/" + }, + "underscore.url": { + "name": "underscore.url", + "description": "Coffeescript + Jasmine + Node.js Template for Packaged Javascript Libraries", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "viatropos", + "email": "lancejpollard@gmail.com" + } + ], + "time": { + "modified": "2011-10-17T19:08:26.385Z", + "created": "2011-10-17T19:08:25.832Z", + "0.2.0": "2011-10-17T19:08:26.385Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/viatropos/underscore.url.js.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/underscore.url/0.2.0" + }, + "dist": { + "0.2.0": { + "shasum": "b2ee0a8157e86caac957a8eeb0d0d1bba1ae3147", + "tarball": "http://registry.npmjs.org/underscore.url/-/underscore.url-0.2.0.tgz" + } + }, + "keywords": [ + "factory", + "tdd", + "bdd", + "unit-test", + "node" + ], + "url": "http://registry.npmjs.org/underscore.url/" + }, + "underscored": { + "name": "underscored", + "dist-tags": { + "latest": "0.1.5-1" + }, + "maintainers": [ + { + "name": "coreyjewett", + "email": "cj@syntheticplayground.com" + } + ], + "time": { + "modified": "2011-11-14T23:23:44.109Z", + "created": "2011-11-14T23:20:10.551Z", + "0.1.5": "2011-11-14T23:20:11.661Z", + "0.1.5-1": "2011-11-14T23:23:44.109Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/coreyjewett/underscored.git" + }, + "description": "Bringing underscore, underscore.string, and some other functions together under one roof", + "versions": { + "0.1.5": "http://registry.npmjs.org/underscored/0.1.5", + "0.1.5-1": "http://registry.npmjs.org/underscored/0.1.5-1" + }, + "dist": { + "0.1.5": { + "shasum": "611726681df41c7819a8b2949875905b6c3de5c2", + "tarball": "http://registry.npmjs.org/underscored/-/underscored-0.1.5.tgz" + }, + "0.1.5-1": { + "shasum": "c4de3753d853d93fe61ce48caa03b50dd2b782fe", + "tarball": "http://registry.npmjs.org/underscored/-/underscored-0.1.5-1.tgz" + } + }, + "url": "http://registry.npmjs.org/underscored/" + }, + "underscorem": { + "name": "underscorem", + "description": "Extensions to underscore.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "lfdoherty", + "email": "lfdoherty@gmail.com" + } + ], + "time": { + "modified": "2011-05-13T10:07:57.281Z", + "created": "2011-04-28T07:28:04.540Z", + "0.1.0": "2011-04-28T07:28:05.096Z", + "0.1.1": "2011-05-13T10:07:57.281Z" + }, + "author": { + "name": "Liam Doherty" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/underscorem/0.1.0", + "0.1.1": "http://registry.npmjs.org/underscorem/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "ae0074586516f2f9e761728953e8ddc5eac6e56c", + "tarball": "http://registry.npmjs.org/underscorem/-/underscorem-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "0d737b4f4498e3488ac9a3691f6dcd4553c321f5", + "tarball": "http://registry.npmjs.org/underscorem/-/underscorem-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/underscorem/" + }, + "UnderscoreMatchersForJasmine": { + "name": "UnderscoreMatchersForJasmine", + "description": "Underscore and backbone Matchers for Jasmine-Node", + "dist-tags": { + "latest": "0.0.3" + }, + "readme": "Underscore Matchers for Jasmine\n===\n\nUnderscoreMatchersForJasmine adds a series of matchers for [Jasmine][1]-based Javascript/[Coffeescript][2] testing based on [Underscore][_] methods. Example:\n\n expect(snafu).toInclude('s', 'n', 'a')\n \n // if snafu is an array, this is equivalent to:\n expect(\n _(snafu).include('s') && _(snafu).include('n') && _(snafu).include('a')\n ).toBeTruthy()\n\n // if snafu is a Backbone.js collection, this is equivalent to:\n expect(\n snafu.include('s') && snafu.include('n') && snafu.include('a')\n ).toBeTruthy()\n \n[1]: https://github.com/pivotal/jasmine\n[2]: https://github.com/jashkenas/coffee-script\n[_]: http://documentcloud.github.com/underscore/\n\nThat makes your tests easy to read, for example:\n\n $ ->\n describe 'States and StateMachines', ->\n it 'should associate states with a state machine and the state machine with its states', ->\n engine_status = new StateMachine()\n running = engine_status.new_state()\n idling = engine_status.new_state()\n \n expect(running).toRepondTo('state_machine')\n expect(engine_status.states()).toInclude(running, idling)\n \n it 'should generate states with rpm', ->\n engine_status = new StateMachine()\n running = engine_status.new_state()\n \n expect(running).toBeA(State)\n expect(running).toHave('rpm')\n\nIs it any good?\n---\n\n[Yes][y].\n\n[y]: http://news.ycombinator.com/item?id=3067434\n \n*Why* is it any good?\n---\n\nLet's take it point by point:\n\n1. Underscore is a utility-belt library for Javascript. If you're using [Backbone.js][b], you are already using [Underscore][_]. If you aren't using either, you are excused from class, this library does not apply to your project.\n2. Jasmine is a [Test-Driven Development][tdd] testing framework for Javascript. You can run tests in a pretty browser window, you can run tests on the command line with Node.js, you can run tests in the console. If you are writing Javascript and/or Coffeescript, you should be using Jasmine.\n3. If you are using Underscore or Backbone and you are using Jasmine, your tests will be cleaner and more readable with these Underscore matchers for the same reason that your code is cleaner and more readable with Underscore.\n\n[tdd]: http://en.wikipedia.org/wiki/Test_Driven_Development\n[b]: http://documentcloud.github.com/backbone/\n\nCan I install it with npm?\n---\n\nYes:\n\n npm install UnderscoreMatchersForJasmine\n\nCan I install it in other kinds of projects?\n---\n\nIf you're using Coffeescript, put `underscore_matchers.coffee` in your project. If you're using plain Javascript, it should therefore follow that you want to put `underscore_matchers.js` in your project. It's one file, just make sure that your include declarations or asset pipeline includes `underscore_matchers` *after* `jasmine.js`. That's it. For example, here's a [Jammit][3] `assets.yml` file from a Rails project:\n\n allow_debugging: off\n template_function: _.template\n compress_assets: false\n\n javascripts:\n common:\n - public/js/vendor/json2.js\n - public/js/vendor/jquery-1.6.1.min.js\n - public/js/vendor/jquery-ui-1.8.min.js\n - public/js/vendor/jquery.combinators.min.js\n - public/js/vendor/jquery.predicates.min.js\n - public/js/vendor/underscore-min.js\n - public/js/vendor/backbone.js\n - public/js/vendor/async.js\n application:\n - public/js/compiled/models/*.js\n test:\n - public/js/vendor/jasmine/jasmine.js\n - public/js/vendor/jasmine/jasmine-html.js\n - public/js/compiled/jasmine/underscore_matchers.js\n - public/js/compiled/spec/*.js\n\n stylesheets:\n common:\n application:\n test:\n - public/js/vendor/jasmine/*.css\n \n[3]: https://github.com/documentcloud/jammit\n\nYou can also put `underscore_matchers_spec.coffee` or `underscore_matchers_spec.js` in your project if you want to see these matchers test themselves. It's also handy documentation for how the matchers behave!\n\nWhich Matchers are included?\n---\n\nRead the code in [Coffeescript][5] or [Javascript][6].\n\n[5]: https://github.com/raganwald/Underscore-Matchers-for-Jasmine/blob/master/lib/underscore_matchers.coffee\n[6]: https://github.com/raganwald/Underscore-Matchers-for-Jasmine/blob/master/lib/underscore_matchers.js\n\nThat's it? Aren't there any more?\n---\n\nThis is what I happen to need right now for my actual code. **As I write more matchers, I'll add them**. So, if you're interested, watch the library. I suppose I could go through and make a matcher for every function in Underscore, but I'd rather let it grow organically. If there's a matcher you need that isn't here, well, **we're all in the same boat**:\n\n* If you're a *passenger*, send me a message describing the matcher you want. If it seems useful, I'll add it.\n* If you're a *sailor*, fork this project, add the matcher, and send me a pull request.\n* If you're the *captain of your own ship*, and you've already written some matchers like this, run up some signal flags and I'll include links to your project right here.\n* And if you're a *pirate*, take this code and/or just the idea and make your own library. I'm cool with that.\n\nIs it free?\n---\n\n[Yes][4].\n\n[4]: https://github.com/raganwald/Underscore-Matchers-for-Jasmine/blob/master/license.txt\n\nOther Random Observations\n---\n\n**Who's Using This?**\n\nI am.\n\n**Is there a gem?**\n\nNo. This is a Coffeescript and Javascript include file, not a ruby library. Coffeescript and Javascript files work everywhere, and you can read the source any time you want.\n\n**Any gotchas?**\n\nSome matchers, such as `toInclude(...)` and `toRespondTo(...)` can take multiple arguments. When they do, they have \"all\" semantics. For example:\n \n expect([1,2,3,4,5]).toRespondTo('push', 'pop')\n // => succeeds because arrays respond to .push and .pop\n\n expect([1,2,3,4,5]).toInclude(2,3,4,5,6)\n // => fails because 6 is not included.\n \nNow what if you want to test the opposite?\n\n expect([1,2,3,4,5]).not.toInclude(2,3,4,5,6)\n // succeeds because it doesn't include 2, 3, 4, 5, AND 6.\n \nIf that's what you want, fine. But if what you really want is to test whether it doesn't include ANY of the arguments, you need a slightly different matcher:\n \n expect([1,2,3,4,5]).toRespondToAny('push', 'select_sql', 'diagonalize')\n // => succeeds because arrays respond to at least one of the three methods given\n\n expect([1,2,3,4,5]).toIncludeAny(2,3,4,5,6)\n // => succeeds because it includes at least one of the arguments\n\nThe opposite of an \"any\" matcher is a \"none\" matcher:\n\n expect([1,2,3,4,5]).not.toIncludeAny(3, 6, 9)\n // => fails because [1,2,3,4,5] includes a 3\n\n expect([1,2,3,4,5]).not.toIncludeAny(6, 9, 12)\n // => succeeds because [1,2,3,4,5] does not include ANY of the aarguments\n\n\n**Is this just for underscore stuff?**\n\nNo. I also sneak in some Backbone stuff here and there, but the code works just fine even if you don't use Backbone.js. For example:\n\n $ ->\n describe 'States', ->\n it 'should permit cards to be added and removed', ->\n state = new State()\n card = new Card()\n expect(state.cards()).toBeEmpty()\n state.cards().add(card)\n expect(state.cards()).not.toBeEmpty()\n state.cards().remove(card)\n expect(state.cards()).toBeEmpty()\n \n`toBeEmpty` is more than just a wrapper for `_.isEmpty`:\n\n expect(\n _([]).isEmpty()\n ).toBeTruthy() // => succeeds\n \n expect(\n _(new Backbone.Collection()).isEmpty()\n ).toBeTruthy() // => fails, wtf!?\n \n expect([]).toBeEmpty()\n // => succeeds\n \n expect(new Backbone.Collection()).toBeEmpty()\n // => succeeds\n \nThe same goes for collection tests like `.toInclude`. You can pass it a backbone collection or an array as you see fit. If you don't want that behaviour, Jasmine includes a `contains()` matcher that expects an array.", + "maintainers": [ + { + "name": "raganwald", + "email": "raganwald@gmail.com" + } + ], + "time": { + "modified": "2011-12-05T20:55:52.210Z", + "created": "2011-11-28T22:32:23.712Z", + "0.0.1": "2011-11-28T22:32:24.208Z", + "0.0.2": "2011-12-05T20:14:18.245Z", + "0.0.3": "2011-12-05T20:55:52.210Z" + }, + "author": { + "name": "Reg Braithwaite", + "email": "raganwald@gmail.com", + "url": "http://reginald.braythwayt.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:raganwald/Underscore-Matchers-for-Jasmine.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/UnderscoreMatchersForJasmine/0.0.1", + "0.0.2": "http://registry.npmjs.org/UnderscoreMatchersForJasmine/0.0.2", + "0.0.3": "http://registry.npmjs.org/UnderscoreMatchersForJasmine/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "1b3b24d6d7a7b863f6df48410067af05fae828da", + "tarball": "http://registry.npmjs.org/UnderscoreMatchersForJasmine/-/UnderscoreMatchersForJasmine-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "089fa525901626763a100e0d070342ab935e3406", + "tarball": "http://registry.npmjs.org/UnderscoreMatchersForJasmine/-/UnderscoreMatchersForJasmine-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "a09c6833b0935237cb0b6dc4726408f1c32e150f", + "tarball": "http://registry.npmjs.org/UnderscoreMatchersForJasmine/-/UnderscoreMatchersForJasmine-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/UnderscoreMatchersForJasmine/" + }, + "underscorex": { + "name": "underscorex", + "description": "underscorex are some basic extensions for underscore.js", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "akidee", + "email": "mail@akidee.de" + } + ], + "author": { + "name": "Andreas Kalsch", + "email": "mail@akidee.de", + "url": "http://akidee.de/" + }, + "time": { + "modified": "2011-12-13T21:35:41.539Z", + "created": "2011-01-25T18:52:45.019Z", + "0.1.0": "2011-01-25T18:52:45.019Z", + "0.1.1": "2011-01-25T18:52:45.019Z", + "0.2.0": "2011-10-30T12:39:46.755Z", + "0.3.0": "2011-12-13T21:35:41.539Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/underscorex/0.1.0", + "0.1.1": "http://registry.npmjs.org/underscorex/0.1.1", + "0.2.0": "http://registry.npmjs.org/underscorex/0.2.0", + "0.3.0": "http://registry.npmjs.org/underscorex/0.3.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/underscorex/-/underscorex-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "403b5f0535fef47a905c0aeaad278cbf1b863e93", + "tarball": "http://registry.npmjs.org/underscorex/-/underscorex-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "38e7faae7b68e5816bd51ae5899327b45c77a379", + "tarball": "http://registry.npmjs.org/underscorex/-/underscorex-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "10a0c2b17be3efe801d28b1407e514328460f871", + "tarball": "http://registry.npmjs.org/underscorex/-/underscorex-0.3.0.tgz" + } + }, + "keywords": [ + "util", + "utility", + "functional", + "server", + "client", + "browser", + "underscore", + "underscore.js", + "ecma5", + "basic" + ], + "url": "http://registry.npmjs.org/underscorex/" + }, + "underscorify": { + "name": "underscorify", + "description": "an itty bitty curry utility", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "time": { + "modified": "2011-03-03T19:36:54.422Z", + "created": "2011-03-03T19:36:54.093Z", + "1.0.0": "2011-03-03T19:36:54.422Z" + }, + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me/" + }, + "repository": { + "type": "git", + "url": "git://github.com/isaacs/_ify.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/underscorify/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "8a56ceb554d04c65c9fb80d8a0cf148b18221155", + "tarball": "http://registry.npmjs.org/underscorify/-/underscorify-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/underscorify/" + }, + "unicode": { + "name": "unicode", + "description": "unicode lookup table", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "dodo", + "email": "dodo@blacksec.org" + } + ], + "time": { + "modified": "2011-11-29T14:01:40.089Z", + "created": "2011-05-18T01:17:10.914Z", + "0.0.1": "2011-05-18T01:17:11.591Z", + "0.1.0": "2011-05-22T13:54:48.935Z", + "0.1.1": "2011-05-22T13:56:41.856Z", + "0.1.2": "2011-05-24T21:44:29.172Z", + "0.1.3": "2011-05-25T22:05:42.812Z", + "0.1.3-1": "2011-05-29T17:58:52.229Z", + "0.1.3-2": "2011-05-29T19:04:46.075Z", + "0.1.3-3": "2011-05-29T19:32:52.896Z", + "0.1.3-4": "2011-05-29T20:35:07.934Z", + "0.1.3-5": "2011-05-29T20:58:26.444Z", + "0.1.3-6": "2011-05-29T21:02:33.179Z", + "0.1.3-7": "2011-05-29T21:37:32.340Z", + "0.1.4": "2011-05-30T06:13:48.503Z", + "0.2.0": "2011-08-24T12:23:54.101Z", + "0.2.1": "2011-11-29T14:01:40.089Z" + }, + "author": { + "name": "dodo", + "url": "https://github.com/dodo" + }, + "repository": { + "type": "git", + "url": "git://github.com/dodo/node-unicodetable.git" + }, + "users": { + "astro": true + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/unicode/0.0.1", + "0.1.0": "http://registry.npmjs.org/unicode/0.1.0", + "0.1.1": "http://registry.npmjs.org/unicode/0.1.1", + "0.1.2": "http://registry.npmjs.org/unicode/0.1.2", + "0.1.3": "http://registry.npmjs.org/unicode/0.1.3", + "0.1.3-1": "http://registry.npmjs.org/unicode/0.1.3-1", + "0.1.3-2": "http://registry.npmjs.org/unicode/0.1.3-2", + "0.1.3-3": "http://registry.npmjs.org/unicode/0.1.3-3", + "0.1.3-4": "http://registry.npmjs.org/unicode/0.1.3-4", + "0.1.3-5": "http://registry.npmjs.org/unicode/0.1.3-5", + "0.1.3-6": "http://registry.npmjs.org/unicode/0.1.3-6", + "0.1.3-7": "http://registry.npmjs.org/unicode/0.1.3-7", + "0.1.4": "http://registry.npmjs.org/unicode/0.1.4", + "0.2.0": "http://registry.npmjs.org/unicode/0.2.0", + "0.2.1": "http://registry.npmjs.org/unicode/0.2.1" + }, + "dist": { + "0.0.1": { + "shasum": "3a7f2ef6fbade8a475a56b865665172ce7bdc234", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-2-amd64": { + "shasum": "09e53bfafef8c7e4206bfa4cc83413d140d1ca37", + "tarball": "http://registry.npmjs.org/unicode/-/unicode-0.0.1-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-2-amd64.tgz" + } + }, + "tarball": "http://registry.npmjs.org/unicode/-/unicode-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "00d3d4a25a62236faa1d6fb4971e00ece60d5446", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-2-amd64": { + "shasum": "2a47f9d2d68bd0c7e4fb11577219b3c5f4481caf", + "tarball": "http://registry.npmjs.org/unicode/-/unicode-0.1.0-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-2-amd64.tgz" + } + }, + "tarball": "http://registry.npmjs.org/unicode/-/unicode-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "fc3f8a1efd59807a711c9e612b297f38745074de", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-2-amd64": { + "shasum": "6dd2b5eb80adcce2d552afa5bfda9bb4b8b66e29", + "tarball": "http://registry.npmjs.org/unicode/-/unicode-0.1.1-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.38-2-amd64.tgz" + } + }, + "tarball": "http://registry.npmjs.org/unicode/-/unicode-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "ec0146852af13ee6440b8480412b852d01331151", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64": { + "shasum": "65aebe08447d7bf53c572010f5b6d9e0c73b0d87", + "tarball": "http://registry.npmjs.org/unicode/-/unicode-0.1.2-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64.tgz" + } + }, + "tarball": "http://registry.npmjs.org/unicode/-/unicode-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "e6fed917a8bec728ed88f9f07829fe36ac0794b1", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64": { + "shasum": "c537113512c40981cd3e6cd25eb6d710274fb80c", + "tarball": "http://registry.npmjs.org/unicode/-/unicode-0.1.3-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64.tgz" + } + }, + "tarball": "http://registry.npmjs.org/unicode/-/unicode-0.1.3.tgz" + }, + "0.1.3-1": { + "shasum": "7b9c0dabcccf6e3ddee17619cff10da1d0cde35c", + "tarball": "http://registry.npmjs.org/unicode/-/unicode-0.1.3-1.tgz" + }, + "0.1.3-2": { + "shasum": "8f96996a2bfe26b87eab5b58bab64280ee3f3bbb", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64": { + "shasum": "c13f4b5d76229e997c6b45cd62bf1848fc383487", + "tarball": "http://registry.npmjs.org/unicode/-/unicode-0.1.3-2-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64.tgz" + } + }, + "tarball": "http://registry.npmjs.org/unicode/-/unicode-0.1.3-2.tgz" + }, + "0.1.3-3": { + "shasum": "d0ab3f4d115261ad308db1cc8e2bcde3466e7135", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64": { + "shasum": "3b820f98dbbeb199f6e20f753cc8fe77fb6f6157", + "tarball": "http://registry.npmjs.org/unicode/-/unicode-0.1.3-3-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64.tgz" + } + }, + "tarball": "http://registry.npmjs.org/unicode/-/unicode-0.1.3-3.tgz" + }, + "0.1.3-4": { + "shasum": "54ece03e6c8b66f9f05540b140d34ffc6a6b7a17", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64": { + "shasum": "1e1d7dae5935a058ce3b4116bbdcc9f651ac4cf5", + "tarball": "http://registry.npmjs.org/unicode/-/unicode-0.1.3-4-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64.tgz" + } + }, + "tarball": "http://registry.npmjs.org/unicode/-/unicode-0.1.3-4.tgz" + }, + "0.1.3-5": { + "shasum": "6bbd035d53f8b03abefc3e31201a39f73d062519", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64": { + "shasum": "1a7249848fb54193ad75925086b5e0932a3a508e", + "tarball": "http://registry.npmjs.org/unicode/-/unicode-0.1.3-5-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64.tgz" + } + }, + "tarball": "http://registry.npmjs.org/unicode/-/unicode-0.1.3-5.tgz" + }, + "0.1.3-6": { + "shasum": "e31ea8f21d721b97e3bff8b5e77462157d8ab9c1", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64": { + "shasum": "1b28dafd4f9d5a67a184e042e38bc28548a1d23c", + "tarball": "http://registry.npmjs.org/unicode/-/unicode-0.1.3-6-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64.tgz" + } + }, + "tarball": "http://registry.npmjs.org/unicode/-/unicode-0.1.3-6.tgz" + }, + "0.1.3-7": { + "shasum": "11c8caf3436c0f00590cb01de3c2dca52342db87", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64": { + "shasum": "eb761f0860459d791a4b7ab9b4ff49109874eb6c", + "tarball": "http://registry.npmjs.org/unicode/-/unicode-0.1.3-7-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64.tgz" + } + }, + "tarball": "http://registry.npmjs.org/unicode/-/unicode-0.1.3-7.tgz" + }, + "0.1.4": { + "shasum": "5e2c061fd71078615d70e5b6d02ce9403d8d74c8", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64": { + "shasum": "5b757790734763995c410c3582290410a424b3fd", + "tarball": "http://registry.npmjs.org/unicode/-/unicode-0.1.4-0.4-ares1.7.4-ev4.4-openssl1.0.0d-v83.1.8.10-linux-2.6.39-1-amd64.tgz" + } + }, + "tarball": "http://registry.npmjs.org/unicode/-/unicode-0.1.4.tgz" + }, + "0.2.0": { + "shasum": "3db8b4f21123cd2c96f02604c3874cfbfe7de84b", + "tarball": "http://registry.npmjs.org/unicode/-/unicode-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "8b152278bfac2fd964cc3b2e390cc5fb52c75ae6", + "tarball": "http://registry.npmjs.org/unicode/-/unicode-0.2.1.tgz" + } + }, + "url": "http://registry.npmjs.org/unicode/" + }, + "unicode-categories": { + "name": "unicode-categories", + "description": "Unicode categories regExps", + "dist-tags": { + "latest": "0.9.0" + }, + "readme": "# Unicode categories\nA list of unicode categories.\nIt could be used implement ECMAscript lexer etc.\n\n## Installation\n\n```bash\nnpm install unicode-categories\n```\n\n## Usage\n\n```javascript\nvar unicode = require('unicode-categories');\n// Tests if text is a valid ECMAscript identifier.\nvar isValidIdentifier = function(text) {\n return unicode.letter.test(text);\n};\n```\n\n## Documentation\nLibrary contains several unicode category regexps. Here's list of them:\n\n(short name, long name: description)\n\n- `Lu`, `upperCaseLetter`: upper case letter.\n- `Ll`, `lowerCaseLetter`: lower case letter.\n- `Lt`, `titleCaseLetter`: title case letter.\n- `Lm`, `modifierLetter`: modifier letter.\n- `Lo`, `otherLetter`: other letter.\n- `Mn`, `nonSpacingMark`: non-spacing mark.\n- `Mc`, `spaceMark`: space mark.\n- `Nl`, `number`: number.\n- `Nd`, `decimal`: decimal.\n- `Pc`, `punctuationConnector`: punctuation connector.\n- `letter`: combines `upperCaseLetter`, `lowerCaseLetter`, `titleCaseLetter`,\n`modifierLetter`, `otherLetter` and `number`. `letter` is a valid js identifier.\n\n## License\n(The MIT License)\n\nCopyright (c) 2011 Paul Miller (http://paulmillr.com/)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n", + "maintainers": [ + { + "name": "paulmillr", + "email": "paulmillr@me.com" + } + ], + "time": { + "modified": "2011-12-04T17:30:55.890Z", + "created": "2011-12-04T06:31:59.026Z", + "0.5.0": "2011-12-04T06:32:01.219Z", + "1.0.0": "2011-12-04T07:00:37.278Z", + "1.0.1": "2011-12-04T15:50:05.939Z", + "1.0.2": "2011-12-04T16:01:23.158Z", + "0.9.0": "2011-12-04T17:29:49.948Z" + }, + "author": { + "name": "Paul Miller", + "email": "paulmillr@me.com", + "url": "http://paulmillr.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/paulmillr/unicode-categories.git" + }, + "versions": { + "0.5.0": "http://registry.npmjs.org/unicode-categories/0.5.0", + "0.9.0": "http://registry.npmjs.org/unicode-categories/0.9.0" + }, + "dist": { + "0.5.0": { + "shasum": "dad06f10cb26f8fb47e0fc84af2824a3a71a3bcb", + "tarball": "http://registry.npmjs.org/unicode-categories/-/unicode-categories-0.5.0.tgz" + }, + "0.9.0": { + "shasum": "9ecdc6f13a11dfbc5ff9b250a813a19bed9a1a98", + "tarball": "http://registry.npmjs.org/unicode-categories/-/unicode-categories-0.9.0.tgz" + } + }, + "url": "http://registry.npmjs.org/unicode-categories/" + }, + "unicoder": { + "name": "unicoder", + "description": "detect and normalize encodings of text", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "trevor", + "email": "trevor@caira.com" + } + ], + "time": { + "modified": "2011-01-24T00:56:52.635Z", + "created": "2011-01-24T00:56:52.095Z", + "0.0.1": "2011-01-24T00:56:52.635Z" + }, + "author": { + "name": "Trevor Caira", + "email": "trevor@caira.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/unicoder/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "b16643ba05bb12d03dd5882c1ae314a53a5e0412", + "tarball": "http://registry.npmjs.org/unicoder/-/unicoder-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/unicoder/" + }, + "union": { + "name": "union", + "description": "A hybrid buffered / streaming middleware kernel backwards compatible with connect.", + "dist-tags": { + "latest": "0.1.6" + }, + "maintainers": [ + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + } + ], + "time": { + "modified": "2011-12-09T10:51:04.063Z", + "created": "2011-11-09T15:50:49.252Z", + "0.1.0": "2011-11-09T15:50:50.759Z", + "0.1.2": "2011-11-18T05:24:11.477Z", + "0.1.3": "2011-11-23T02:10:32.053Z", + "0.1.4": "2011-12-02T09:47:52.736Z", + "0.1.5": "2011-12-06T08:43:04.185Z", + "0.1.6": "2011-12-09T10:51:04.063Z" + }, + "author": { + "name": "Nodejitsu Inc.", + "email": "info@nodejitsu.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/flatiron/flatiron-http.git" + }, + "users": { + "wojohowitz": true + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/union/0.1.0", + "0.1.2": "http://registry.npmjs.org/union/0.1.2", + "0.1.3": "http://registry.npmjs.org/union/0.1.3", + "0.1.4": "http://registry.npmjs.org/union/0.1.4", + "0.1.5": "http://registry.npmjs.org/union/0.1.5", + "0.1.6": "http://registry.npmjs.org/union/0.1.6" + }, + "dist": { + "0.1.0": { + "shasum": "38a9c186828b4f23238e359070bf51ccb6cb9e7f", + "tarball": "http://registry.npmjs.org/union/-/union-0.1.0.tgz" + }, + "0.1.2": { + "shasum": "24ebaae1631f7a280a76d74ee2df19b616ab2396", + "tarball": "http://registry.npmjs.org/union/-/union-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "db0863af0e674d6d51a75eee10b83cda7508b309", + "tarball": "http://registry.npmjs.org/union/-/union-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "668a227031e8bb466f00b422f8196975b5e3355c", + "tarball": "http://registry.npmjs.org/union/-/union-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "8d4213fcdc1dd0b73d561228c4934acb48f47417", + "tarball": "http://registry.npmjs.org/union/-/union-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "86594b7b088bf7349c6397b70a7ea2f5f772c783", + "tarball": "http://registry.npmjs.org/union/-/union-0.1.6.tgz" + } + }, + "url": "http://registry.npmjs.org/union/" + }, + "uniquegroup": { + "name": "uniquegroup", + "description": "Generate lists, where a list can be a part of another list", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": null, + "maintainers": [ + { + "name": "ajnasz", + "email": "ajnasz@ajnasz.hu" + } + ], + "time": { + "modified": "2011-11-27T19:24:52.070Z", + "created": "2011-11-27T19:24:49.987Z", + "0.0.1": "2011-11-27T19:24:52.070Z" + }, + "author": { + "name": "Lajos Koszti", + "email": "ajnasz@ajnasz.hu", + "url": "http://ajnasz.hu" + }, + "repository": { + "type": "git", + "url": "git://github.com/Ajnasz/uniquegroup.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/uniquegroup/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "681f007ec139d8683fd19ed2c4b684f1c8c5b09b", + "tarball": "http://registry.npmjs.org/uniquegroup/-/uniquegroup-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/uniquegroup/" + }, + "unit": { + "name": "unit", + "description": "unit testing for node & the browser", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "brianc", + "email": "brian.m.carlson@gmail.com" + } + ], + "time": { + "modified": "2011-06-23T15:23:44.013Z", + "created": "2011-06-21T16:33:03.516Z", + "0.0.1": "2011-06-21T16:33:03.797Z", + "0.0.2": "2011-06-23T15:23:44.013Z" + }, + "author": { + "name": "Brian Carlson", + "email": "brian.m.carlson@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/brianc/unit.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/unit/0.0.1", + "0.0.2": "http://registry.npmjs.org/unit/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "d398f90e066a4afa9324213977ae1f5694dce134", + "tarball": "http://registry.npmjs.org/unit/-/unit-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "fae33597146e12560e86ff5925ae4e98bc6f9056", + "tarball": "http://registry.npmjs.org/unit/-/unit-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/unit/" + }, + "unite": { + "name": "unite", + "description": "Your databases. United.", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "monokrome", + "email": "monokrome@limpidtech.com" + } + ], + "time": { + "modified": "2011-08-05T01:26:28.144Z", + "created": "2011-08-05T01:26:25.516Z", + "0.0.0": "2011-08-05T01:26:28.144Z" + }, + "author": { + "name": "Brandon R. Stoner", + "email": "monokrome@limpidtech.com", + "url": "http://monokro.me" + }, + "repository": { + "type": "git", + "url": "https://mgithub.com/LimpidTech/United.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/unite/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "a6ad0e890323afc974776f4b45aa40d223ed4d20", + "tarball": "http://registry.npmjs.org/unite/-/unite-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/unite/" + }, + "unittest-jslint": { + "name": "unittest-jslint", + "description": "JSLint test case for unit testing", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "mikebannister", + "email": "mikebannister@gmail.com" + } + ], + "author": { + "name": "Mike Bannister", + "email": "mike@mike101.net" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/unittest-jslint/0.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/unittest-jslint/-/unittest-jslint-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/unittest-jslint/" + }, + "universe": { + "name": "universe", + "description": "Project directory structure", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "**Universe** is a library used to declare some project directory structure.\n\nAt the heart of universe is the project root:\n\n var universe = require('universe');\n console.log(universe.root);\n\nThe project root is assumed to be one directory up from the current process's\nexecutable (`require.main`). Another way of seeing it is that universe expects\nyour executables to live in e.g. the `bin/` or `libexec/` directories in your\nproject.\n\nOn the Node REPL, universe will simply use the current working directory.\n(`process.cwd()`)\n\nUniverse provides easy access to subdirectories:\n\n var fs = require('fs');\n var path = require('path');\n\n var configFile = path.resolve(universe.config, 'database.json');\n var config = JSON.parse(fs.readFileSync(configFile, 'utf-8'));\n\nBy default, universe defines `bin`, `lib`, `config`, `log` and `tmp`. These\ndirectories are created once the properties are accessed. To define additional\ndirectories:\n\n universe.addDirectory('libexec');\n\n // Or a bunch in one shot.\n universe.addDirectories(['libexec', 'data']);\n\n // Or with an explicit path.\n universe.addDirectory('sysTmp', '/tmp');\n\n // Also possible in a batch.\n universe.addDirectories({\n libexec: 'libexec',\n data: 'data',\n sysTmp: '/tmp'\n });\n\n## Configuration\n\nUniverse has a few configurables. Any configuration should happen at the\nearliest possible opportunity. Once a property such as `root` or `bin` is used\nby the application, it doesn't make much sense to reconfigure universe. And\ntypical usage assumes these properties to be **always** available.\n\nFor example, some special scenarios require a process to override the default\nroot directory. This would look as follows:\n\n #!/usr/bin/env node\n\n var path = require('path');\n\n // In this example, the executable is two levels deep. (bin/foo/bar.js)\n // (Note that path.resolve also needs a '..' for the filename itself.)\n var universe = require('universe');\n universe.defaultRoot = path.resolve(require.main.filename, '../../../');\n\n // Do so before even requiring other libraries.\n var someLibrary = require('someLibrary');\n\nUsers may override the root or any of the directories using environment\nvariables, e.g. `UNIVERSE_ROOT`, `UNIVERSE_LOG`, etc. The application may\nrequest a different variable name prefix:\n\n universe.envPrefix = 'MYPROJECT';\n // universe will look for 'MYPROJECT_ROOT', 'MYPROJECT_LOG', etc.\n\nAll properties may also be directly assigned. Especially for `root`, however,\nthis is not recommended, because it will override a user's environment\nvariables. Use `defaultRoot` instead.\n", + "maintainers": [ + { + "name": "stephank", + "email": "stephan@kochen.nl" + } + ], + "time": { + "modified": "2011-12-07T21:51:15.421Z", + "created": "2011-12-07T21:51:14.060Z", + "0.0.1": "2011-12-07T21:51:15.421Z" + }, + "author": { + "name": "Stéphan Kochen", + "email": "stephan@angrybytes.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/AngryBytes/universe.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/universe/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "41c24d844a6c1bab58040ccdbb7718d9beb22468", + "tarball": "http://registry.npmjs.org/universe/-/universe-0.0.1.tgz" + } + }, + "keywords": [ + "project", + "structure", + "directory", + "layout" + ], + "url": "http://registry.npmjs.org/universe/" + }, + "unixlib": { + "name": "unixlib", + "description": "Native Linux utilities for Node.js, currently PAM authentication, flock() and mkstemp", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "ditesh", + "email": "ditesh@gathani.org" + } + ], + "time": { + "modified": "2011-11-08T07:01:45.733Z", + "created": "2011-07-04T04:25:06.650Z", + "0.1.0": "2011-07-04T04:25:08.543Z", + "0.1.1": "2011-10-06T06:30:31.691Z", + "0.1.2": "2011-10-31T03:32:00.687Z", + "0.1.3": "2011-11-08T07:01:45.733Z" + }, + "author": { + "name": "Ditesh Shashikant Gathani", + "email": "ditesh@gathani.org", + "url": "http://ditesh.gathani.org/blog/" + }, + "repository": { + "type": "git", + "url": "git://github.com/ditesh/node-unixlib.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/unixlib/0.1.0", + "0.1.1": "http://registry.npmjs.org/unixlib/0.1.1", + "0.1.2": "http://registry.npmjs.org/unixlib/0.1.2", + "0.1.3": "http://registry.npmjs.org/unixlib/0.1.3" + }, + "dist": { + "0.1.0": { + "shasum": "54bfb38b70ff14339c52d010ed6a5abd695e14d7", + "tarball": "http://registry.npmjs.org/unixlib/-/unixlib-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "68fce354b24842e5070c0790c77f6087f74c3dea", + "tarball": "http://registry.npmjs.org/unixlib/-/unixlib-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "1eb4dee807fbdb2603e8230d31284532184c398e", + "tarball": "http://registry.npmjs.org/unixlib/-/unixlib-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "eddef1c392545f9e1804dbe4b1d5a2b9f5942f1b", + "tarball": "http://registry.npmjs.org/unixlib/-/unixlib-0.1.3.tgz" + } + }, + "keywords": [ + "linux", + "flock", + "pam", + "authentication", + "unix" + ], + "url": "http://registry.npmjs.org/unixlib/" + }, + "unlimit": { + "name": "unlimit", + "description": "allows for chaining with native JavaScript objects without extending objects' prototypes", + "dist-tags": { + "latest": "0.5.0" + }, + "maintainers": [ + { + "name": "lime", + "email": "limeblack7@gmail.com" + } + ], + "time": { + "modified": "2011-08-11T06:08:57.214Z", + "created": "2011-08-11T06:08:55.293Z", + "0.5.0": "2011-08-11T06:08:57.214Z" + }, + "author": { + "name": "Lime", + "email": "limeblack7@gmail.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:limeblack/UnlimitJS.git" + }, + "versions": { + "0.5.0": "http://registry.npmjs.org/unlimit/0.5.0" + }, + "dist": { + "0.5.0": { + "shasum": "3e6f023780945b0780be9c39f67ec23067a343fc", + "tarball": "http://registry.npmjs.org/unlimit/-/unlimit-0.5.0.tgz" + } + }, + "keywords": [ + "base", + "server", + "client", + "browser" + ], + "url": "http://registry.npmjs.org/unlimit/" + }, + "unorm": { + "name": "unorm", + "description": "JavaScript Unicode Normalization - NFC, NFD, NFKC, NFKD. Read UAX #15 Unicode Normalization Forms.", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "walling", + "email": "bwp@bwp.dk" + } + ], + "time": { + "modified": "2011-11-15T12:59:41.836Z", + "created": "2011-11-15T12:57:12.497Z", + "1.0.0": "2011-11-15T12:59:41.836Z" + }, + "author": { + "name": "Matsuza", + "email": "matsuza@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/walling/unorm.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/unorm/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "547e166729ef066067dd12c67f4b01c64144ac41", + "tarball": "http://registry.npmjs.org/unorm/-/unorm-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/unorm/" + }, + "unrequire": { + "name": "unrequire", + "description": "Module inclusion system", + "dist-tags": { + "latest": "0.3.5" + }, + "maintainers": [ + { + "name": "strager", + "email": "strager.nds@gmail.com" + } + ], + "time": { + "modified": "2011-11-03T06:33:55.375Z", + "created": "2011-08-11T22:44:57.007Z", + "0.1.0": "2011-08-11T22:44:58.356Z", + "0.1.1": "2011-08-11T22:45:11.097Z", + "0.1.2": "2011-08-12T05:40:21.618Z", + "0.2.0": "2011-08-13T02:08:05.107Z", + "0.2.1": "2011-08-13T02:15:31.299Z", + "0.3.0": "2011-08-25T22:10:09.861Z", + "0.3.1": "2011-08-30T23:27:49.981Z", + "0.3.2": "2011-09-08T01:20:36.603Z", + "0.3.3": "2011-10-05T01:27:21.467Z", + "0.3.4": "2011-11-03T06:22:22.733Z", + "0.3.5": "2011-11-03T06:33:55.375Z" + }, + "author": { + "name": "Matt Glazar", + "email": "matt.glazar@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/unrequire/0.1.0", + "0.1.1": "http://registry.npmjs.org/unrequire/0.1.1", + "0.1.2": "http://registry.npmjs.org/unrequire/0.1.2", + "0.2.0": "http://registry.npmjs.org/unrequire/0.2.0", + "0.2.1": "http://registry.npmjs.org/unrequire/0.2.1", + "0.3.0": "http://registry.npmjs.org/unrequire/0.3.0", + "0.3.1": "http://registry.npmjs.org/unrequire/0.3.1", + "0.3.2": "http://registry.npmjs.org/unrequire/0.3.2", + "0.3.3": "http://registry.npmjs.org/unrequire/0.3.3", + "0.3.4": "http://registry.npmjs.org/unrequire/0.3.4", + "0.3.5": "http://registry.npmjs.org/unrequire/0.3.5" + }, + "dist": { + "0.1.0": { + "shasum": "5c10e4f12a624758f3783553326e0a86a6761ca6", + "tarball": "http://registry.npmjs.org/unrequire/-/unrequire-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "78a4c8709744abff475bd076544caec27c99055e", + "tarball": "http://registry.npmjs.org/unrequire/-/unrequire-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "100ef7c46183825f13b8c69b278e48f3333ace87", + "tarball": "http://registry.npmjs.org/unrequire/-/unrequire-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "684b2022950a9746c3ad0b30341778ef49ea6486", + "tarball": "http://registry.npmjs.org/unrequire/-/unrequire-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "38686a819c856c74c32f7a19e2c73ff05a4a9476", + "tarball": "http://registry.npmjs.org/unrequire/-/unrequire-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "cf4c98d8c57cb86906f9abaa30409f6e53f9250a", + "tarball": "http://registry.npmjs.org/unrequire/-/unrequire-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "0fc08aa201e6da4e7c7fca2f4a91b980f2d78018", + "tarball": "http://registry.npmjs.org/unrequire/-/unrequire-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "2021341d9da93a5d9c1dfc4ba43db48224be37f1", + "tarball": "http://registry.npmjs.org/unrequire/-/unrequire-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "604257d73ebe3b6af9656068f10dcd1b6ab63835", + "tarball": "http://registry.npmjs.org/unrequire/-/unrequire-0.3.3.tgz" + }, + "0.3.4": { + "shasum": "157d54cd8177fb5fd144558b179f8775e25e3913", + "tarball": "http://registry.npmjs.org/unrequire/-/unrequire-0.3.4.tgz" + }, + "0.3.5": { + "shasum": "4dc86a97f09064efb608e86f3baba601912805d3", + "tarball": "http://registry.npmjs.org/unrequire/-/unrequire-0.3.5.tgz" + } + }, + "url": "http://registry.npmjs.org/unrequire/" + }, + "unshorten": { + "name": "unshorten", + "description": "A simple URL unshortener.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "mathias", + "email": "mathias@qiwi.be" + } + ], + "time": { + "modified": "2011-10-08T14:40:40.552Z", + "created": "2011-09-30T21:11:11.200Z", + "0.0.1": "2011-09-30T21:11:12.097Z", + "0.0.2": "2011-10-08T14:40:40.552Z" + }, + "author": { + "name": "Mathias Bynens", + "url": "http://mathiasbynens.be/" + }, + "repository": { + "type": "git", + "url": "git://github.com/mathiasbynens/node-unshorten.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/unshorten/0.0.1", + "0.0.2": "http://registry.npmjs.org/unshorten/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "d305b0df62d9f49524a578de4adcc43cafa6ee8e", + "tarball": "http://registry.npmjs.org/unshorten/-/unshorten-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "0e2a036f66e14fcd92255f0fbb286f8cb1df97db", + "tarball": "http://registry.npmjs.org/unshorten/-/unshorten-0.0.2.tgz" + } + }, + "keywords": [ + "url", + "unshorten", + "shorturl" + ], + "url": "http://registry.npmjs.org/unshorten/" + }, + "unshortener": { + "name": "unshortener", + "description": "A simple url unshortener for expanding short links.", + "dist-tags": { + "latest": "0.0.9" + }, + "maintainers": [ + { + "name": "swizec", + "email": "swizec@swizec.com" + } + ], + "time": { + "modified": "2011-11-23T21:35:10.793Z", + "created": "2011-05-21T11:33:45.967Z", + "0.0.3": "2011-05-21T11:33:46.364Z", + "0.0.4": "2011-05-22T07:10:17.352Z", + "0.0.5": "2011-05-22T23:43:35.601Z", + "0.0.6": "2011-05-29T13:43:02.414Z", + "0.0.8": "2011-06-18T15:31:05.900Z", + "0.0.9": "2011-11-23T21:35:10.793Z" + }, + "author": { + "name": "Swizec", + "email": "swizec@swizec.com", + "url": "http://swizec.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Swizec/node-unshortener.git" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/unshortener/0.0.3", + "0.0.4": "http://registry.npmjs.org/unshortener/0.0.4", + "0.0.5": "http://registry.npmjs.org/unshortener/0.0.5", + "0.0.6": "http://registry.npmjs.org/unshortener/0.0.6", + "0.0.8": "http://registry.npmjs.org/unshortener/0.0.8", + "0.0.9": "http://registry.npmjs.org/unshortener/0.0.9" + }, + "dist": { + "0.0.3": { + "shasum": "9c834e64f351027991e738415a21b04678e53b65", + "tarball": "http://registry.npmjs.org/unshortener/-/unshortener-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "f97714c126e52481080062f848a4ca0c57f0f338", + "tarball": "http://registry.npmjs.org/unshortener/-/unshortener-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "89ca5a04a0609c6537686bc57b3450d01c885eb6", + "tarball": "http://registry.npmjs.org/unshortener/-/unshortener-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "62fe121fbae0e8fb6380ad35097ea6602f11f96e", + "tarball": "http://registry.npmjs.org/unshortener/-/unshortener-0.0.6.tgz" + }, + "0.0.8": { + "shasum": "7d39a0472c97997464421bd92e8441f48c8100f1", + "tarball": "http://registry.npmjs.org/unshortener/-/unshortener-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "4839ec5e14a56976cbb514a24af2ba5c307ce845", + "tarball": "http://registry.npmjs.org/unshortener/-/unshortener-0.0.9.tgz" + } + }, + "url": "http://registry.npmjs.org/unshortener/" + }, + "unused": { + "name": "unused", + "description": "A module which reports unused variables in your code.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "kami", + "email": "tomaz@tomaz.me" + } + ], + "time": { + "modified": "2011-08-29T01:43:11.076Z", + "created": "2011-08-29T01:43:10.342Z", + "0.1.0": "2011-08-29T01:43:11.076Z" + }, + "author": { + "name": "Tomaz Muraus", + "email": "tomaz+npm@tomaz.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/Kami/node-unused.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/unused/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "59308a533c5c658d6c04b6365673af2e9f2bc5aa", + "tarball": "http://registry.npmjs.org/unused/-/unused-0.1.0.tgz" + } + }, + "keywords": [ + "unused", + "variables", + "imports", + "unused variables", + "unused imports" + ], + "url": "http://registry.npmjs.org/unused/" + }, + "updoc": { + "name": "updoc", + "description": "the flexible javascript documentation generator", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "gsmith", + "email": "gsmith@incompl.com" + } + ], + "time": { + "modified": "2011-11-28T21:45:09.754Z", + "created": "2011-11-28T21:07:53.993Z", + "0.0.1": "2011-11-28T21:07:54.536Z", + "0.1.0": "2011-11-28T21:45:09.754Z" + }, + "author": { + "name": "Greg Smith", + "url": "http://incompl.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:incompl/updoc.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/updoc/0.0.1", + "0.1.0": "http://registry.npmjs.org/updoc/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "8f53298f879bf66f0b93f2f3057af244d1e01619", + "tarball": "http://registry.npmjs.org/updoc/-/updoc-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "a532e042399a6efeade89fedcbd2b6c95c8d8a2c", + "tarball": "http://registry.npmjs.org/updoc/-/updoc-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/updoc/" + }, + "upload": { + "name": "upload", + "description": "Asynchronous file uploading using HTML5 file uploading or background iframes", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "amccollum", + "email": "amccollum+npm@gmail.com" + } + ], + "time": { + "modified": "2011-11-04T15:48:33.025Z", + "created": "2011-09-06T16:14:35.290Z", + "0.1.0": "2011-09-06T16:14:35.716Z", + "0.1.1": "2011-11-03T16:21:25.190Z", + "0.1.2": "2011-11-03T16:50:41.379Z", + "0.1.3": "2011-11-04T15:48:33.025Z" + }, + "author": { + "name": "Andrew McCollum", + "email": "amccollum@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/upload/0.1.0", + "0.1.1": "http://registry.npmjs.org/upload/0.1.1", + "0.1.2": "http://registry.npmjs.org/upload/0.1.2", + "0.1.3": "http://registry.npmjs.org/upload/0.1.3" + }, + "dist": { + "0.1.0": { + "shasum": "0155c97173ffd1e059ae9ecb571b857c5318f72a", + "tarball": "http://registry.npmjs.org/upload/-/upload-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "82302f5cd96d01a79bbd49f139fc0245b5c153ae", + "tarball": "http://registry.npmjs.org/upload/-/upload-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "1aef57afa04c43cff18228fd51bbe0f43a91bfde", + "tarball": "http://registry.npmjs.org/upload/-/upload-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "81ff6133ce7db534e12322b191f53e8155cb1350", + "tarball": "http://registry.npmjs.org/upload/-/upload-0.1.3.tgz" + } + }, + "keywords": [ + "ender", + "upload", + "async", + "files", + "iframe", + "form", + "html5" + ], + "url": "http://registry.npmjs.org/upload/" + }, + "uploadcare": { + "name": "uploadcare", + "description": "Library for uploadcare.com.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "rexm", + "email": "rex.morgan@gmail.com" + } + ], + "time": { + "modified": "2011-10-27T15:42:10.185Z", + "created": "2011-10-27T15:42:09.064Z", + "0.1.0": "2011-10-27T15:42:10.185Z" + }, + "author": { + "name": "Rex Morgan", + "email": "rex.morgan@gmail.com", + "url": "http://rexflex.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/rexmorgan/uploadcare-node.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/uploadcare/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "16168db73843eedff0a7201eae3a05bb887a86f9", + "tarball": "http://registry.npmjs.org/uploadcare/-/uploadcare-0.1.0.tgz" + } + }, + "keywords": [ + "upload", + "uploadcare", + "api", + "wrapper" + ], + "url": "http://registry.npmjs.org/uploadcare/" + }, + "uploader": { + "name": "uploader", + "description": "File sharing platform built on Nodejs and Amazon S3", + "dist-tags": { + "latest": "0.0.3" + }, + "readme": "[![Build Status](https://secure.travis-ci.org/bradleyg/uploader.png)](http://travis-ci.org/bradleyg/uploader) \n \nThis uploader application is a HTML5 only file sharing platform. Currently only browsers which support the [File Reader API](http://www.html5rocks.com/en/tutorials/file/dndfiles/) will work (Chrome and Firefox). \n\nThe application uses [jquery-filedrop](https://github.com/weixiyen/jquery-filedrop) for upload progress/drag + drop, [Nodejs](http://nodejs.org) to process and move the uploaded files to [Amazon S3](http://aws.amazon.com/s3/) and [MongoDB](http://www.mongodb.org/) to store it's data. \n\nCurrently there is no authorisation model, users can create their own 'secret' url which they can share with friends. If this url is ever discovered by somebody they will have access to all of your uploaded files!\n\n[Click here for a demo, courtesy of Nodejitsu](http://uploader.nodejitsu.com) (Files will be deleted every few hours).\n\n## Features:\n* Drag + Drop uploads\n* Upload progress\n* Amazon S3 as the storage platform\n* 'Secret' urls\n\n## Setup:\n* `npm install uploader` \n* Provide your Amazon/MongoDB database details in config/config.js\n* `node server.js` (started on port: 3000) \n \n## TODO:\n* Show error messages.\n* Support Safari\n\n## Good stuff:\n[jquery-filedrop](https://github.com/weixiyen/jquery-filedrop) ", + "maintainers": [ + { + "name": "bradleyg", + "email": "bradley.griffiths@gmail.com" + } + ], + "time": { + "modified": "2011-12-02T10:41:05.383Z", + "created": "2011-11-30T18:51:51.300Z", + "0.0.1": "2011-11-30T18:51:52.582Z", + "0.0.2": "2011-11-30T20:56:05.077Z", + "0.0.3": "2011-12-02T10:41:05.383Z" + }, + "author": { + "name": "Bradley Griffiths", + "email": "bradley.griffiths@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/bradleyg/uploader.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/uploader/0.0.1", + "0.0.2": "http://registry.npmjs.org/uploader/0.0.2", + "0.0.3": "http://registry.npmjs.org/uploader/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "a8cc7faece064102c2e3e23dbc2cc0e41c8149ea", + "tarball": "http://registry.npmjs.org/uploader/-/uploader-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "ae4754bf09d18f24534c4ef86202bee9b319bb76", + "tarball": "http://registry.npmjs.org/uploader/-/uploader-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "7b9780c2c94eaad31329215273acc07725b8efed", + "tarball": "http://registry.npmjs.org/uploader/-/uploader-0.0.3.tgz" + } + }, + "keywords": [ + "file", + "uploads", + "sharing", + "AWS" + ], + "url": "http://registry.npmjs.org/uploader/" + }, + "ups_node": { + "name": "ups_node", + "description": "UPS Shipping API Interface. Production ready, but the API is going to get cleaned up soon.", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "jessedpate", + "email": "jesse@stateoftomorrow.tv" + } + ], + "time": { + "modified": "2011-08-25T18:14:06.906Z", + "created": "2011-06-30T01:45:12.143Z", + "0.1.1": "2011-06-30T01:45:12.628Z", + "0.1.2": "2011-06-30T02:18:16.702Z", + "0.1.3": "2011-06-30T14:50:50.392Z", + "0.1.4": "2011-06-30T15:12:21.220Z", + "0.2.0": "2011-08-08T22:38:17.035Z", + "0.2.1": "2011-08-10T17:16:28.338Z", + "0.2.2": "2011-08-25T18:14:06.906Z" + }, + "author": { + "name": "Jesse Pate", + "email": "jesse@stateoftomorrow.tv" + }, + "repository": { + "type": "git", + "url": "git://github.com/jessedpate/ups_node.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/ups_node/0.1.1", + "0.1.2": "http://registry.npmjs.org/ups_node/0.1.2", + "0.1.3": "http://registry.npmjs.org/ups_node/0.1.3", + "0.1.4": "http://registry.npmjs.org/ups_node/0.1.4", + "0.2.0": "http://registry.npmjs.org/ups_node/0.2.0", + "0.2.1": "http://registry.npmjs.org/ups_node/0.2.1", + "0.2.2": "http://registry.npmjs.org/ups_node/0.2.2" + }, + "dist": { + "0.1.1": { + "shasum": "6975bb0e4e3fddfa9ec51c088495748a0a05d3c5", + "tarball": "http://registry.npmjs.org/ups_node/-/ups_node-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "7ab3d738bd5b44f91e25a9d8c285532dc8be9bd3", + "tarball": "http://registry.npmjs.org/ups_node/-/ups_node-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "ca97bd9eb4cb9b8cc4eed329d8e225797a7c3e54", + "tarball": "http://registry.npmjs.org/ups_node/-/ups_node-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "6bfbf73d2ffd83da4af9290bc5974f4d8e22ac9b", + "tarball": "http://registry.npmjs.org/ups_node/-/ups_node-0.1.4.tgz" + }, + "0.2.0": { + "shasum": "38c5dcd659e9d39ec5cb7733bdc899c57ffe5214", + "tarball": "http://registry.npmjs.org/ups_node/-/ups_node-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "ac0c0b9debe47ac48696a5a49684072ca6faa3c1", + "tarball": "http://registry.npmjs.org/ups_node/-/ups_node-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "a6d6bb1fb32dcd4fc41b5c7d12ed7235b7f9dfad", + "tarball": "http://registry.npmjs.org/ups_node/-/ups_node-0.2.2.tgz" + } + }, + "keywords": [ + "shipping", + "ups", + "ecommerce" + ], + "url": "http://registry.npmjs.org/ups_node/" + }, + "upy": { + "name": "upy", + "description": "Upy is a easy to use uptime module for node.js build with c++. ", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "frozzare", + "email": "fredrik.forsmo@gmail.com" + } + ], + "time": { + "modified": "2011-11-05T23:11:57.113Z", + "created": "2011-08-24T09:11:06.778Z", + "0.1.0": "2011-08-24T09:11:07.357Z", + "0.1.1": "2011-09-02T23:18:45.868Z", + "0.1.2": "2011-11-05T23:11:57.113Z" + }, + "author": { + "name": "Fredrik Forsmo", + "email": "fredrik.forsmo@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/duofy/node-upy.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/upy/0.1.0", + "0.1.1": "http://registry.npmjs.org/upy/0.1.1", + "0.1.2": "http://registry.npmjs.org/upy/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "e739b4caac7d25e24eecaadfe2b5bebe2665aefd", + "tarball": "http://registry.npmjs.org/upy/-/upy-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "31377a69a2704650a1df4fd99ae3b7bace45c8b0", + "tarball": "http://registry.npmjs.org/upy/-/upy-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "718e43bd79b1a2cdc87dcf2e6b694e99287f0005", + "tarball": "http://registry.npmjs.org/upy/-/upy-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/upy/" + }, + "uquery": { + "name": "uquery", + "description": "This is a port of some jQuery functions exported to Node.js as mixins to the underscore library. Primarily this was started to incoporate the jQuery.extend function into Node.js (jQuery.extend was ported as _.merge)", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": null, + "maintainers": [ + { + "name": "scull7", + "email": "nathan.sculli@kapinko.com" + } + ], + "time": { + "modified": "2011-11-08T20:31:20.701Z", + "created": "2011-11-08T20:30:59.001Z", + "0.0.1": "2011-11-08T20:31:20.701Z" + }, + "author": { + "name": "Nathan A Sculli", + "email": "nathan.sculli@kapinko.com", + "url": "nathansculli.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/scull7/uquery.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/uquery/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "0f52e12d2d2f0b2a44f9c34473ec5fd71e8366c9", + "tarball": "http://registry.npmjs.org/uquery/-/uquery-0.0.1.tgz" + } + }, + "keywords": [ + "jQuery", + "jQuery.extend", + "underscore", + "merge", + "uquery" + ], + "url": "http://registry.npmjs.org/uquery/" + }, + "urban": { + "name": "urban", + "description": "Simple API and command line for Urban Dictionary", + "dist-tags": { + "latest": "0.2.0" + }, + "readme": null, + "maintainers": [ + { + "name": "mvrilo", + "email": "mvrilo@gmail.com" + } + ], + "time": { + "modified": "2011-11-13T17:52:09.129Z", + "created": "2011-11-09T02:03:54.362Z", + "0.0.1": "2011-11-09T02:03:57.118Z", + "0.1.0": "2011-11-10T01:21:06.610Z", + "0.1.1": "2011-11-12T23:20:41.636Z", + "0.2.0": "2011-11-13T17:52:09.129Z" + }, + "author": { + "name": "Murilo Santana", + "email": "mvrilo@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mvrilo/urban.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/urban/0.0.1", + "0.1.0": "http://registry.npmjs.org/urban/0.1.0", + "0.1.1": "http://registry.npmjs.org/urban/0.1.1", + "0.2.0": "http://registry.npmjs.org/urban/0.2.0" + }, + "dist": { + "0.0.1": { + "shasum": "0be3883e70a309ecb442c8ff350bcf45d8f466fb", + "tarball": "http://registry.npmjs.org/urban/-/urban-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "46c1fd74e129c9768d5e89ae0b7c8e1884dcbcb0", + "tarball": "http://registry.npmjs.org/urban/-/urban-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "45f8a8d43efb8497b526d62349710d47052abd92", + "tarball": "http://registry.npmjs.org/urban/-/urban-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "11295eb71f02b070b09e10b7911d7e33550fad1a", + "tarball": "http://registry.npmjs.org/urban/-/urban-0.2.0.tgz" + } + }, + "keywords": [ + "urban", + "dictionary", + "api", + "definition" + ], + "url": "http://registry.npmjs.org/urban/" + }, + "urban-airship": { + "name": "urban-airship", + "description": "Urban Airship API wrapper.", + "dist-tags": { + "latest": "0.1.1" + }, + "readme": "#node-urban-airship\n\nSimple wrapper for the Urban Airship API.", + "maintainers": [ + { + "name": "cojohn", + "email": "cojohn@gmail.com" + } + ], + "time": { + "modified": "2011-12-01T20:12:24.478Z", + "created": "2011-12-01T19:03:35.651Z", + "0.1.0": "2011-12-01T19:03:36.263Z", + "0.1.1": "2011-12-01T20:12:24.478Z" + }, + "author": { + "name": "Christopher John", + "email": "cojohn@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/cojohn/node-urban-airship.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/urban-airship/0.1.0", + "0.1.1": "http://registry.npmjs.org/urban-airship/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "75150f3c7f746a888407963921a660c2cc488fb6", + "tarball": "http://registry.npmjs.org/urban-airship/-/urban-airship-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "04b7a122d8c5e28b55c068ed8af04e7cf86116bf", + "tarball": "http://registry.npmjs.org/urban-airship/-/urban-airship-0.1.1.tgz" + } + }, + "keywords": [ + "Urban Airship", + "iPhone", + "iOS", + "notification", + "push", + "api" + ], + "url": "http://registry.npmjs.org/urban-airship/" + }, + "uri": { + "name": "uri", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "s3u", + "email": "subbu@subbu.org" + } + ], + "author": { + "name": "webr3" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/uri/0.1.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/uri/-/uri-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/uri/" + }, + "uri-parser": { + "name": "uri-parser", + "description": "Module that has utilities for URI parsing", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "goulash1971", + "email": "goulash1971@yahoo.com" + } + ], + "time": { + "modified": "2011-06-27T02:46:13.986Z", + "created": "2011-06-27T02:46:12.762Z", + "1.0.0": "2011-06-27T02:46:13.986Z" + }, + "author": { + "name": "Stuart Hudson", + "email": "goulash1971@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/goulash1971/uri-parser.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/uri-parser/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "d4647814ab2012e0f6327ee4be8ec1b3bc014e23", + "tarball": "http://registry.npmjs.org/uri-parser/-/uri-parser-1.0.0.tgz" + } + }, + "keywords": [ + "uri", + "parser" + ], + "url": "http://registry.npmjs.org/uri-parser/" + }, + "uri-template": { + "name": "uri-template", + "description": "Parse URI templates into matcher/expander objects", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "grncdr", + "email": "glurgle@gmail.com" + } + ], + "time": { + "modified": "2011-11-22T03:34:46.662Z", + "created": "2011-10-27T08:30:27.862Z", + "0.0.1": "2011-10-27T08:33:54.201Z", + "0.0.2": "2011-10-27T08:55:04.398Z", + "0.0.3": "2011-10-28T02:44:51.186Z", + "0.0.4": "2011-11-19T01:20:29.759Z", + "0.1.0": "2011-11-22T03:34:46.662Z" + }, + "author": { + "name": "Stephen Sugden", + "email": "stephen@betsmartmedia.com", + "url": "betsmartmedia.com" + }, + "repository": { + "type": "git", + "url": "''" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/uri-template/0.0.1", + "0.0.2": "http://registry.npmjs.org/uri-template/0.0.2", + "0.0.3": "http://registry.npmjs.org/uri-template/0.0.3", + "0.0.4": "http://registry.npmjs.org/uri-template/0.0.4", + "0.1.0": "http://registry.npmjs.org/uri-template/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "8deac0c9906107c90502aa1dad5c483e2c4dc313", + "tarball": "http://registry.npmjs.org/uri-template/-/uri-template-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "0c0f2aef0f3e8197359367bb73b246ea58936cba", + "tarball": "http://registry.npmjs.org/uri-template/-/uri-template-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "e2ed085d2369157895582b4baa2e6ff6841412b9", + "tarball": "http://registry.npmjs.org/uri-template/-/uri-template-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "304706953bdca7160d99434201a6b19a0d3ed259", + "tarball": "http://registry.npmjs.org/uri-template/-/uri-template-0.0.4.tgz" + }, + "0.1.0": { + "shasum": "5b9bcf2babb19a1cef3812655a0d67d583370230", + "tarball": "http://registry.npmjs.org/uri-template/-/uri-template-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/uri-template/" + }, + "url": { + "name": "url", + "description": "Node.JS url module", + "dist-tags": { + "latest": "0.4.9" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-07-07T22:16:05.853Z", + "created": "2011-07-07T22:16:05.456Z", + "0.4.9": "2011-07-07T22:16:05.853Z" + }, + "author": { + "name": "Joyent", + "url": "http://www.joyent.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/coolaj86/nodejs-libs-4-browser.git" + }, + "versions": { + "0.4.9": "http://registry.npmjs.org/url/0.4.9" + }, + "dist": { + "0.4.9": { + "shasum": "d8ae654e43779d5dcc120c282cf51717b62427ba", + "tarball": "http://registry.npmjs.org/url/-/url-0.4.9.tgz" + } + }, + "keywords": [ + "ender", + "url" + ], + "url": "http://registry.npmjs.org/url/" + }, + "url-expander": { + "name": "url-expander", + "description": "An URL expander", + "dist-tags": { + "latest": "0.0.10" + }, + "maintainers": [ + { + "name": "dho", + "email": "daniel.hofstetter@42dh.com" + } + ], + "time": { + "modified": "2011-04-15T05:23:23.382Z", + "created": "2011-02-17T15:10:05.916Z", + "0.0.1": "2011-02-17T15:10:06.397Z", + "0.0.2": "2011-02-18T09:47:25.086Z", + "0.0.3": "2011-02-26T09:20:54.586Z", + "0.0.4": "2011-03-08T06:08:27.030Z", + "0.0.5": "2011-03-08T14:37:12.376Z", + "0.0.6": "2011-03-12T15:53:45.750Z", + "0.0.7": "2011-03-19T13:46:39.849Z", + "0.0.8": "2011-03-22T07:28:14.726Z", + "0.0.9": "2011-03-26T09:38:41.057Z", + "0.0.10": "2011-04-15T05:23:23.382Z" + }, + "author": { + "name": "Daniel Hofstetter", + "email": "daniel.hofstetter@42dh.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/cakebaker/node-url-expander.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/url-expander/0.0.1", + "0.0.2": "http://registry.npmjs.org/url-expander/0.0.2", + "0.0.3": "http://registry.npmjs.org/url-expander/0.0.3", + "0.0.4": "http://registry.npmjs.org/url-expander/0.0.4", + "0.0.5": "http://registry.npmjs.org/url-expander/0.0.5", + "0.0.6": "http://registry.npmjs.org/url-expander/0.0.6", + "0.0.7": "http://registry.npmjs.org/url-expander/0.0.7", + "0.0.8": "http://registry.npmjs.org/url-expander/0.0.8", + "0.0.9": "http://registry.npmjs.org/url-expander/0.0.9", + "0.0.10": "http://registry.npmjs.org/url-expander/0.0.10" + }, + "dist": { + "0.0.1": { + "shasum": "408f54acab717f3e6e475f80f8e6399aa02bd72c", + "tarball": "http://registry.npmjs.org/url-expander/-/url-expander-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "04ef10c51ebdc3ed0b359cf7ff1512f2c97bfcf3", + "tarball": "http://registry.npmjs.org/url-expander/-/url-expander-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "63d6c0b864eee3434c6c1ca53f0280fb18ba8ab8", + "tarball": "http://registry.npmjs.org/url-expander/-/url-expander-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "86daf47ee8280fb81df9ef322f6ca94487006368", + "tarball": "http://registry.npmjs.org/url-expander/-/url-expander-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "16a061b1cff41dbbd89db680967c46ea33c1d6cd", + "tarball": "http://registry.npmjs.org/url-expander/-/url-expander-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "3714a1a5da3a5cb08fda74256b88aaf3ffec6ad0", + "tarball": "http://registry.npmjs.org/url-expander/-/url-expander-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "f02d06b0e025ed35415e3af77cb43d7695db6578", + "tarball": "http://registry.npmjs.org/url-expander/-/url-expander-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "893f59880c6448be3d8eba0cd49f74576bcd5ee9", + "tarball": "http://registry.npmjs.org/url-expander/-/url-expander-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "54902993cc40221dba34e8c4717749058b71e9c8", + "tarball": "http://registry.npmjs.org/url-expander/-/url-expander-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "14fea5dbfcc1268f83260151e719f464848117d6", + "tarball": "http://registry.npmjs.org/url-expander/-/url-expander-0.0.10.tgz" + } + }, + "url": "http://registry.npmjs.org/url-expander/" + }, + "urllib": { + "name": "urllib", + "description": "Help in opening URLs (mostly HTTP) in a complex world — basic and digest authentication, redirections, cookies and more. Like python's _urllib_ module.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "fengmk2", + "email": "fengmk2@gmail.com" + } + ], + "time": { + "modified": "2011-05-16T07:32:55.750Z", + "created": "2011-05-16T02:11:39.183Z", + "0.0.1": "2011-05-16T02:11:40.905Z", + "0.1.0": "2011-05-16T07:32:55.750Z" + }, + "author": { + "name": "fengmk2", + "email": "fengmk2@gmail.com", + "url": "http://github.com/fengmk2" + }, + "repository": { + "type": "git", + "url": "git://github.com/fengmk2/urllib.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/urllib/0.0.1", + "0.1.0": "http://registry.npmjs.org/urllib/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "db8b80dad4bc3cdd195b0ca1db37f9c435d2ac2c", + "tarball": "http://registry.npmjs.org/urllib/-/urllib-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "e6c560db4ac35532a4d1ded60a16ab88d5eaf8f8", + "tarball": "http://registry.npmjs.org/urllib/-/urllib-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/urllib/" + }, + "URLON": { + "name": "URLON", + "description": "URL Object Notation. JSON-like encoding for URLs", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "vjeux", + "email": "vjeuxx@gmail.com" + } + ], + "time": { + "modified": "2011-10-02T16:22:25.458Z", + "created": "2011-09-24T13:18:18.547Z", + "1.0.0": "2011-09-24T13:18:18.847Z", + "1.0.1": "2011-10-02T16:22:25.458Z" + }, + "author": { + "name": "Vjeux", + "email": "vjeuxx@gmail.com", + "url": "http://blog.vjeux.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/vjeux/URLON.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/URLON/1.0.0", + "1.0.1": "http://registry.npmjs.org/URLON/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "877fd0686f66570bc006bf518e0ccf384a0af042", + "tarball": "http://registry.npmjs.org/URLON/-/URLON-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "839c1342deccb5711a6a085756dd427413f18ade", + "tarball": "http://registry.npmjs.org/URLON/-/URLON-1.0.1.tgz" + } + }, + "keywords": [ + "urlon", + "json", + "notation", + "url" + ], + "url": "http://registry.npmjs.org/URLON/" + }, + "urlparse": { + "name": "urlparse", + "description": "URL parsing, validation, normalization, and matching", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "lloyd", + "email": "lloyd@hilaiel.com" + } + ], + "time": { + "modified": "2011-10-26T23:32:34.874Z", + "created": "2011-10-26T23:32:33.991Z", + "0.0.1": "2011-10-26T23:32:34.874Z" + }, + "author": { + "name": "Lloyd Hilaiel", + "email": "lloyd@hilaiel.com", + "url": "http://lloyd.io" + }, + "repository": { + "type": "git", + "url": "git://github.com/lloyd/urlparse.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/urlparse/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "d171ec4681fcd0d8bd00b64345637d89a9700876", + "tarball": "http://registry.npmjs.org/urlparse/-/urlparse-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/urlparse/" + }, + "urlparse.js": { + "name": "urlparse.js", + "description": "Flexible node.js url.parse replacement. Parsed URLs like a browser would and fills in the missing pieces", + "dist-tags": { + "latest": "0.0.5" + }, + "readme": null, + "maintainers": [ + { + "name": "doki_pen", + "email": "rcorsaro@gmail.com" + } + ], + "time": { + "modified": "2011-12-09T17:38:33.876Z", + "created": "2011-11-21T21:15:30.270Z", + "0.0.1": "2011-11-21T21:15:30.862Z", + "0.0.2": "2011-11-21T21:19:52.043Z", + "0.0.3": "2011-12-09T13:12:08.884Z", + "0.0.4": "2011-12-09T13:59:06.834Z", + "0.0.5": "2011-12-09T17:38:33.876Z" + }, + "author": { + "name": "Bob Corsaro", + "email": "rcorsaro@gmail.com", + "url": "http://www.google.com/profiles/rcorsaro" + }, + "repository": { + "type": "git", + "url": "git://github.com/dokipen/parseurl.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/urlparse.js/0.0.1", + "0.0.2": "http://registry.npmjs.org/urlparse.js/0.0.2", + "0.0.3": "http://registry.npmjs.org/urlparse.js/0.0.3", + "0.0.4": "http://registry.npmjs.org/urlparse.js/0.0.4", + "0.0.5": "http://registry.npmjs.org/urlparse.js/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "e05b1c5afe2633a36c77a9f9fa38b62d37a926d2", + "tarball": "http://registry.npmjs.org/urlparse.js/-/urlparse.js-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "060a2eeda71d352c6e1da8b611f1902fc0eb58f1", + "tarball": "http://registry.npmjs.org/urlparse.js/-/urlparse.js-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "a25c64b0e43686f44f0421c4f846492295816c1e", + "tarball": "http://registry.npmjs.org/urlparse.js/-/urlparse.js-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "6880d89faebc0e681cd794a553bdf2bb53f4d16f", + "tarball": "http://registry.npmjs.org/urlparse.js/-/urlparse.js-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "1e313fdd49b5e6c09ad7c4d67db976815120cd33", + "tarball": "http://registry.npmjs.org/urlparse.js/-/urlparse.js-0.0.5.tgz" + } + }, + "keywords": [ + "url", + "parse" + ], + "url": "http://registry.npmjs.org/urlparse.js/" + }, + "urn-parser": { + "name": "urn-parser", + "description": "Module that has utilities for URN parsing", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "goulash1971", + "email": "goulash1971@yahoo.com" + } + ], + "time": { + "modified": "2011-06-27T06:31:43.856Z", + "created": "2011-06-27T06:31:42.664Z", + "1.0.0": "2011-06-27T06:31:43.856Z" + }, + "author": { + "name": "Stuart Hudson", + "email": "goulash1971@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/goulash1971/urn-parser.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/urn-parser/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "58faebf38b7578d25715dd6f97029748e92f975c", + "tarball": "http://registry.npmjs.org/urn-parser/-/urn-parser-1.0.0.tgz" + } + }, + "keywords": [ + "urn", + "parser" + ], + "url": "http://registry.npmjs.org/urn-parser/" + }, + "urun": { + "name": "urun", + "description": "The minimal test runner.", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "felixge", + "email": "felix@debuggable.com" + } + ], + "time": { + "modified": "2011-11-17T13:38:25.351Z", + "created": "2011-11-14T15:02:35.967Z", + "0.0.1": "2011-11-14T15:02:37.458Z", + "0.0.2": "2011-11-14T16:02:49.174Z", + "0.0.3": "2011-11-14T18:46:23.525Z", + "0.0.4": "2011-11-17T13:38:25.351Z" + }, + "author": { + "name": "Felix Geisendörfer", + "email": "felix@debuggable.com", + "url": "http://debuggable.com/" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/urun/0.0.1", + "0.0.2": "http://registry.npmjs.org/urun/0.0.2", + "0.0.3": "http://registry.npmjs.org/urun/0.0.3", + "0.0.4": "http://registry.npmjs.org/urun/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "43d0eacf78590549a0770f5acb8765a33ce648d7", + "tarball": "http://registry.npmjs.org/urun/-/urun-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "152b707266f717ec1e686d0552f0084f63e98fc5", + "tarball": "http://registry.npmjs.org/urun/-/urun-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "ffa9ecf0d1570f8392c383a1dc9c1d633d7c76e5", + "tarball": "http://registry.npmjs.org/urun/-/urun-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "a33547939ffda8b7fb8cab9533a8c53b365f03e2", + "tarball": "http://registry.npmjs.org/urun/-/urun-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/urun/" + }, + "useless": { + "name": "useless", + "description": "NodeJS framework that does everything and nothing at the same time", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "fractal", + "email": "contact@wearefractal.com" + } + ], + "time": { + "modified": "2011-08-14T04:07:57.325Z", + "created": "2011-08-14T04:07:56.887Z", + "0.0.1": "2011-08-14T04:07:57.325Z" + }, + "author": { + "name": "Contra", + "email": "contra@australia.edu", + "url": "http://wearefractal.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Contra/UselessJS/.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/useless/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "ec219fa1bd3ffaa3689dd92bac236e517986573a", + "tarball": "http://registry.npmjs.org/useless/-/useless-0.0.1.tgz" + } + }, + "keywords": [ + "node", + "framework", + "awesome", + "bro" + ], + "url": "http://registry.npmjs.org/useless/" + }, + "user-agent": { + "name": "user-agent", + "description": "user-agent string parser", + "dist-tags": { + "latest": "1.0.4" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "author": { + "name": "TJ Holowaychuk" + }, + "repository": { + "type": "git", + "url": "git://github.com/visionmedia/user-agent.js.git" + }, + "time": { + "modified": "2011-05-04T17:18:11.801Z", + "created": "2011-02-03T04:16:07.737Z", + "0.0.1": "2011-02-03T04:16:07.737Z", + "1.0.0": "2011-02-03T04:16:07.737Z", + "1.0.1": "2011-02-03T04:16:07.737Z", + "1.0.2": "2011-04-06T16:38:53.953Z", + "1.0.3": "2011-04-06T23:30:13.685Z", + "1.0.4": "2011-05-04T17:18:11.801Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/user-agent/0.0.1", + "1.0.0": "http://registry.npmjs.org/user-agent/1.0.0", + "1.0.1": "http://registry.npmjs.org/user-agent/1.0.1", + "1.0.2": "http://registry.npmjs.org/user-agent/1.0.2", + "1.0.3": "http://registry.npmjs.org/user-agent/1.0.3", + "1.0.4": "http://registry.npmjs.org/user-agent/1.0.4" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/user-agent/-/user-agent-0.0.1.tgz" + }, + "1.0.0": { + "tarball": "http://packages:5984/user-agent/-/user-agent-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "804893070134fe80a285e18d79e081eb5466dc54", + "tarball": "http://registry.npmjs.org/user-agent/-/user-agent-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "ea4f6b6424a23188853a2b5aa78f9a06b506b58e", + "tarball": "http://registry.npmjs.org/user-agent/-/user-agent-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "7f800b80a9a10d9224670ae71c4f33e1bef4f083", + "tarball": "http://registry.npmjs.org/user-agent/-/user-agent-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "61201431fc7e84ea4a5e1e76392f163a1539c9a4", + "tarball": "http://registry.npmjs.org/user-agent/-/user-agent-1.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/user-agent/" + }, + "useragent": { + "name": "useragent", + "description": "User-Agent string parser based on Browserscope.org algorithms for more browser reporting", + "dist-tags": { + "latest": "1.0.4" + }, + "maintainers": [ + { + "name": "V1", + "email": "info@3rd-Eden.com" + } + ], + "author": { + "name": "Arnout Kazemier" + }, + "time": { + "modified": "2011-12-11T15:26:58.303Z", + "created": "2010-12-29T19:40:31.654Z", + "0.1.0": "2010-12-29T19:40:31.654Z", + "0.1.1": "2010-12-29T19:40:31.654Z", + "0.1.2": "2011-05-10T14:28:20.060Z", + "1.0.0": "2011-10-01T20:53:22.862Z", + "1.0.1": "2011-10-02T20:45:23.365Z", + "1.0.2": "2011-10-19T08:24:13.231Z", + "1.0.3": "2011-11-17T18:43:10.183Z", + "1.0.4": "2011-12-11T15:26:58.303Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/3rd-Eden/useragent.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/useragent/0.1.0", + "0.1.1": "http://registry.npmjs.org/useragent/0.1.1", + "0.1.2": "http://registry.npmjs.org/useragent/0.1.2", + "1.0.0": "http://registry.npmjs.org/useragent/1.0.0", + "1.0.1": "http://registry.npmjs.org/useragent/1.0.1", + "1.0.2": "http://registry.npmjs.org/useragent/1.0.2", + "1.0.3": "http://registry.npmjs.org/useragent/1.0.3", + "1.0.4": "http://registry.npmjs.org/useragent/1.0.4" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/useragent/-/useragent-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "a0a6c405c66799421cb72634e7d73aba57e7bdf4", + "tarball": "http://registry.npmjs.org/useragent/-/useragent-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "4a93beaa340f5fe2509ca738c86a9027ca9c7194", + "tarball": "http://registry.npmjs.org/useragent/-/useragent-0.1.2.tgz" + }, + "1.0.0": { + "shasum": "d52323c7fe33aed7ecb124adc559adf5af08bd39", + "tarball": "http://registry.npmjs.org/useragent/-/useragent-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "87a621e4beafcb5e48c02f91ee1edc41d5af90a3", + "tarball": "http://registry.npmjs.org/useragent/-/useragent-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "c4896b708c119ea96fdb6d6ef634bf0190969a4e", + "tarball": "http://registry.npmjs.org/useragent/-/useragent-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "5551e32e71c5556092cbc496761f63cb42f30add", + "tarball": "http://registry.npmjs.org/useragent/-/useragent-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "3284b0d8e7edac3b0fb2535ebcce507f7127bf6f", + "tarball": "http://registry.npmjs.org/useragent/-/useragent-1.0.4.tgz" + } + }, + "keywords": [ + "user-agent", + "useragent", + "browserscope", + "ua", + "parser", + "agent", + "user agent" + ], + "url": "http://registry.npmjs.org/useragent/" + }, + "useragent_parser": { + "name": "useragent_parser", + "description": "Browser useragent parser.", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "koudelka", + "email": "koudelka@ryoukai.org" + } + ], + "time": { + "modified": "2011-03-03T21:02:23.805Z", + "created": "2011-03-03T21:02:23.636Z", + "1.0.0": "2011-03-03T21:02:23.805Z" + }, + "author": { + "name": "Michael Shapiro", + "email": "koudelka@ryoukai.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/koudelka/node-useragent_parser.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/useragent_parser/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "9cb4ee6f0ed3ab3137bbd257af6f6f8979bd1717", + "tarball": "http://registry.npmjs.org/useragent_parser/-/useragent_parser-1.0.0.tgz" + } + }, + "keywords": [ + "node", + "useragent", + "browser", + "parser" + ], + "url": "http://registry.npmjs.org/useragent_parser/" + }, + "usererror": { + "name": "usererror", + "description": "A base class for V8 JavaScript errors", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "mjijackson", + "email": "mjijackson@gmail.com" + } + ], + "time": { + "modified": "2011-11-16T19:05:50.570Z", + "created": "2011-10-31T02:29:04.229Z", + "1.0.0": "2011-10-31T02:30:26.671Z", + "1.0.1": "2011-11-16T19:05:50.570Z" + }, + "author": { + "name": "Michael Jackson", + "email": "mjijackson@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mjijackson/usererror.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/usererror/1.0.0", + "1.0.1": "http://registry.npmjs.org/usererror/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "c30be33ada1561d5f9073467406030d7c1209316", + "tarball": "http://registry.npmjs.org/usererror/-/usererror-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "4262166bc7253ee1b385d59d4f678ea151327b2e", + "tarball": "http://registry.npmjs.org/usererror/-/usererror-1.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/usererror/" + }, + "utest": { + "name": "utest", + "description": "The minimal unit testing library.", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "felixge", + "email": "felix@debuggable.com" + } + ], + "time": { + "modified": "2011-11-17T12:10:44.611Z", + "created": "2011-11-13T21:25:23.062Z", + "0.0.1": "2011-11-13T21:25:24.519Z", + "0.0.2": "2011-11-14T12:53:21.643Z", + "0.0.3": "2011-11-17T12:10:44.611Z" + }, + "author": { + "name": "Felix Geisendörfer", + "email": "felix@debuggable.com", + "url": "http://debuggable.com/" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/utest/0.0.1", + "0.0.2": "http://registry.npmjs.org/utest/0.0.2", + "0.0.3": "http://registry.npmjs.org/utest/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "2ddb8abf0be195af044c77c8e2d83b32b6e76e24", + "tarball": "http://registry.npmjs.org/utest/-/utest-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "3862e2975309ea5de0940444a6c6ee0179726a16", + "tarball": "http://registry.npmjs.org/utest/-/utest-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "591ee44a1703edb95c59b7d4f7f43d66eb6f188f", + "tarball": "http://registry.npmjs.org/utest/-/utest-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/utest/" + }, + "utf7": { + "name": "utf7", + "description": "Converts text to and from UTF-7 (RFC 2152 and IMAP)", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "kkaefer", + "email": "kkaefer@gmail.com" + } + ], + "time": { + "modified": "2011-06-12T10:17:28.040Z", + "created": "2011-06-12T10:17:27.408Z", + "1.0.0": "2011-06-12T10:17:28.040Z" + }, + "author": { + "name": "Konstantin Käfer", + "email": "kkaefer@gmail.com" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/utf7/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "70c895de9d85b8ee7ef5a1fa8e169241c46e72cc", + "tarball": "http://registry.npmjs.org/utf7/-/utf7-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/utf7/" + }, + "utf8": { + "name": "utf8", + "description": "Basic Utf-8 encoding/decoding library to alleviate confusion among people.", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "ryanmcgrath", + "email": "ryan@venodesigns.net" + } + ], + "time": { + "modified": "2011-05-30T05:59:10.607Z", + "created": "2011-05-30T05:59:09.551Z", + "1.0.0": "2011-05-30T05:59:10.607Z" + }, + "author": { + "name": "Ryan McGrath", + "email": "ryan@venodesigns.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/ryanmcgrath/node-utf8.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/utf8/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "b7890787bd785c1cba83eeda12c9fbbcc9c8652f", + "tarball": "http://registry.npmjs.org/utf8/-/utf8-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/utf8/" + }, + "util": { + "name": "util", + "description": "Node.JS util module", + "dist-tags": { + "latest": "0.4.9" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-09-07T07:57:03.759Z", + "created": "2011-09-07T07:57:03.366Z", + "0.4.9": "2011-09-07T07:57:03.759Z" + }, + "author": { + "name": "Joyent", + "url": "http://www.joyent.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/coolaj86/nodejs-libs-4-browser.git" + }, + "versions": { + "0.4.9": "http://registry.npmjs.org/util/0.4.9" + }, + "dist": { + "0.4.9": { + "shasum": "d95d5830d2328ec17dee3c80bfc50c33562b75a3", + "tarball": "http://registry.npmjs.org/util/-/util-0.4.9.tgz" + } + }, + "keywords": [ + "ender", + "util" + ], + "url": "http://registry.npmjs.org/util/" + }, + "utile": { + "name": "utile", + "description": "A drop-in replacement for `util` with some additional advantageous functions", + "dist-tags": { + "latest": "0.0.10" + }, + "maintainers": [ + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + } + ], + "time": { + "modified": "2011-12-08T23:46:38.402Z", + "created": "2011-10-31T21:22:38.147Z", + "0.0.1": "2011-10-31T21:22:39.264Z", + "0.0.2": "2011-10-31T21:32:41.377Z", + "0.0.3": "2011-11-01T08:51:33.164Z", + "0.0.4": "2011-11-09T01:26:32.712Z", + "0.0.5": "2011-11-09T12:44:51.865Z", + "0.0.6": "2011-11-13T00:18:43.028Z", + "0.0.8": "2011-11-26T00:50:46.574Z", + "0.0.9": "2011-11-29T23:59:23.542Z", + "0.0.10": "2011-12-08T23:46:38.402Z" + }, + "author": { + "name": "Nodejitsu Inc", + "email": "info@nodejitsu.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/flatiron/utile.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/utile/0.0.1", + "0.0.2": "http://registry.npmjs.org/utile/0.0.2", + "0.0.3": "http://registry.npmjs.org/utile/0.0.3", + "0.0.4": "http://registry.npmjs.org/utile/0.0.4", + "0.0.5": "http://registry.npmjs.org/utile/0.0.5", + "0.0.6": "http://registry.npmjs.org/utile/0.0.6", + "0.0.8": "http://registry.npmjs.org/utile/0.0.8", + "0.0.9": "http://registry.npmjs.org/utile/0.0.9", + "0.0.10": "http://registry.npmjs.org/utile/0.0.10" + }, + "dist": { + "0.0.1": { + "shasum": "b7694fd2ac4a799dc0d9612c499a04a5eda92632", + "tarball": "http://registry.npmjs.org/utile/-/utile-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "bc0017ea9b28d2c6b08c311c793ff4174048778f", + "tarball": "http://registry.npmjs.org/utile/-/utile-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "c89a7a1e9bb64dd77defd5ff33aa08043a98474e", + "tarball": "http://registry.npmjs.org/utile/-/utile-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "f4761e345ef0c5778d81cf8fd118c5da47b19a52", + "tarball": "http://registry.npmjs.org/utile/-/utile-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "e054818913263e4b29ebbff071bad3440dadb8f9", + "tarball": "http://registry.npmjs.org/utile/-/utile-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "f7b39d920cee957b64773ee41f979328431883f3", + "tarball": "http://registry.npmjs.org/utile/-/utile-0.0.6.tgz" + }, + "0.0.8": { + "shasum": "edddb801ceeb16a25461e0c16b1fc16c668b1234", + "tarball": "http://registry.npmjs.org/utile/-/utile-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "8212910c45f45b9412a2562c214bb2211146d81e", + "tarball": "http://registry.npmjs.org/utile/-/utile-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "a45345b6e90d679c48c8d215ab724e3ee3dafc18", + "tarball": "http://registry.npmjs.org/utile/-/utile-0.0.10.tgz" + } + }, + "url": "http://registry.npmjs.org/utile/" + }, + "utility-belt": { + "name": "utility-belt", + "description": "This package adds ruby-like chained casting methods to javascript objects.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "mckelvey", + "email": "david@mckelveycreative.com" + } + ], + "time": { + "modified": "2011-07-03T17:14:15.279Z", + "created": "2011-07-03T17:14:15.120Z", + "0.0.1": "2011-07-03T17:14:15.279Z" + }, + "author": { + "name": "David W. McKelvey", + "email": "david@mckelveycreative.com", + "url": "http://david.mckelveycreative.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/mckelvey/utility-belt.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/utility-belt/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "b3d225c3c7954ddb1c17de645954e66dec439f4b", + "tarball": "http://registry.npmjs.org/utility-belt/-/utility-belt-0.0.1.tgz" + } + }, + "keywords": [ + "object", + "type", + "casting" + ], + "url": "http://registry.npmjs.org/utility-belt/" + }, + "utils-js": { + "name": "utils-js", + "description": "Utilities for array, date, math, string, and timer.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "minodisk", + "email": "daiuske.mino@gmail.com" + } + ], + "time": { + "modified": "2011-09-29T19:44:27.072Z", + "created": "2011-09-29T19:44:24.444Z", + "0.0.1": "2011-09-29T19:44:27.072Z" + }, + "author": { + "name": "Daisuke MINO", + "email": "daisuke.mino@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/utils-js/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "698aa2c1bd06159b83bdf5d5f76f13ea61fa3c27", + "tarball": "http://registry.npmjs.org/utils-js/-/utils-js-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/utils-js/" + }, + "utml": { + "name": "utml", + "description": "Express compliant templating for underscore.js", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "mikefrey", + "email": "frey.mike@gmail.com" + } + ], + "time": { + "modified": "2011-03-31T04:22:03.015Z", + "created": "2011-03-26T00:28:05.052Z", + "0.1.0": "2011-03-26T00:28:05.306Z", + "0.2.0": "2011-03-31T04:22:03.015Z" + }, + "author": { + "name": "Mike Frey", + "email": "frey.mike@gmail.com", + "url": "http://freyday.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mikefrey/utml.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/utml/0.1.0", + "0.2.0": "http://registry.npmjs.org/utml/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "971ba43a373aa2a2aedcb8ddc4d32a161b902344", + "tarball": "http://registry.npmjs.org/utml/-/utml-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "6a546741823b2a9c17598a57e8eb4c08738dee48", + "tarball": "http://registry.npmjs.org/utml/-/utml-0.2.0.tgz" + } + }, + "keywords": [ + "underscore", + "express", + "template", + "templating", + "engine" + ], + "url": "http://registry.npmjs.org/utml/" + }, + "uubench": { + "name": "uubench", + "description": "A tiny asynchronous JavaScript benchmarking library", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "akdubya", + "email": "alekswilliams@earthlink.net" + } + ], + "author": { + "name": "Aleksander Williams" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/uubench/0.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/uubench/-/uubench-0.0.1.tgz" + } + }, + "keywords": [ + "benchmarking" + ], + "url": "http://registry.npmjs.org/uubench/" + }, + "uuid": { + "name": "uuid", + "description": "Simple libuuid bindings to allow UUIDs to be generated from JS.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "Tim-Smart", + "email": "tim@fostle.com" + } + ], + "author": { + "name": "Nikhil Marathe" + }, + "repository": { + "type": "hg", + "url": "http://bitbucket.org/nikhilm/uuidjs" + }, + "time": { + "modified": "2011-04-15T21:39:33.361Z", + "created": "2011-03-31T08:12:51.801Z", + "0.0.1": "2011-03-31T08:12:51.801Z", + "0.0.2": "2011-03-31T08:12:51.801Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/uuid/0.0.1", + "0.0.2": "http://registry.npmjs.org/uuid/0.0.2" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/uuid/-/uuid-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/uuid/-/uuid-0.0.2.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "2ff8d977261ddadfd1446cee661ab87863659e45", + "tarball": "http://registry.npmjs.org/uuid/-/uuid-0.0.2-0.4-sunos-5.11.tgz" + } + } + } + }, + "url": "http://registry.npmjs.org/uuid/" + }, + "uuid-js": { + "name": "uuid-js", + "description": "A js library to generate and parse UUIDs,TimeUUIDs and generate TimeUUID based on Date for range selections", + "dist-tags": { + "latest": "0.7.4" + }, + "maintainers": [ + { + "name": "patricknegri", + "email": "patrick@iugu.com.br" + } + ], + "time": { + "modified": "2011-11-13T19:53:31.545Z", + "created": "2011-11-07T22:54:59.791Z", + "0.5.0": "2011-11-07T22:55:02.166Z", + "0.5.1": "2011-11-07T22:57:33.277Z", + "0.5.2": "2011-11-07T23:36:31.182Z", + "0.5.3": "2011-11-10T00:21:34.336Z", + "0.5.4": "2011-11-11T14:35:58.871Z", + "0.7.0": "2011-11-13T16:19:32.929Z", + "0.7.1": "2011-11-13T16:20:34.046Z", + "0.7.2": "2011-11-13T16:29:25.221Z", + "0.7.3": "2011-11-13T19:43:07.954Z", + "0.7.4": "2011-11-13T19:53:31.545Z" + }, + "author": { + "name": "Patrick Negri", + "email": "patrick@iugu.com.br" + }, + "repository": { + "type": "git", + "url": "git://github.com/pnegri/uuid-js.git" + }, + "versions": { + "0.5.0": "http://registry.npmjs.org/uuid-js/0.5.0", + "0.5.1": "http://registry.npmjs.org/uuid-js/0.5.1", + "0.5.2": "http://registry.npmjs.org/uuid-js/0.5.2", + "0.5.3": "http://registry.npmjs.org/uuid-js/0.5.3", + "0.5.4": "http://registry.npmjs.org/uuid-js/0.5.4", + "0.7.0": "http://registry.npmjs.org/uuid-js/0.7.0", + "0.7.1": "http://registry.npmjs.org/uuid-js/0.7.1", + "0.7.2": "http://registry.npmjs.org/uuid-js/0.7.2", + "0.7.3": "http://registry.npmjs.org/uuid-js/0.7.3", + "0.7.4": "http://registry.npmjs.org/uuid-js/0.7.4" + }, + "dist": { + "0.5.0": { + "shasum": "04ff4fd511f44cb038557a107b1d27aeb74d2caa", + "tarball": "http://registry.npmjs.org/uuid-js/-/uuid-js-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "e9f23c9fdb5e4b6969c940d33af2ab5ce409425d", + "tarball": "http://registry.npmjs.org/uuid-js/-/uuid-js-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "fcdc479706c63adc8cb3ac47b2181cef6d3dd08f", + "tarball": "http://registry.npmjs.org/uuid-js/-/uuid-js-0.5.2.tgz" + }, + "0.5.3": { + "shasum": "fbe2f6bd9ab9c3ca84c04d99cdbc551ccbc1d568", + "tarball": "http://registry.npmjs.org/uuid-js/-/uuid-js-0.5.3.tgz" + }, + "0.5.4": { + "shasum": "fd97dae72baa979f4c49bb97ea85e1dff6b73cc0", + "tarball": "http://registry.npmjs.org/uuid-js/-/uuid-js-0.5.4.tgz" + }, + "0.7.0": { + "shasum": "83e54f9d68c2fd99b3335345b9c7a01e50fa22c4", + "tarball": "http://registry.npmjs.org/uuid-js/-/uuid-js-0.7.0.tgz" + }, + "0.7.1": { + "shasum": "15225b0f745d63c3c498ad831bc010de151f4c06", + "tarball": "http://registry.npmjs.org/uuid-js/-/uuid-js-0.7.1.tgz" + }, + "0.7.2": { + "shasum": "0ba8d6f2b6d842fdcfcf14504ea86143c2a9d6f7", + "tarball": "http://registry.npmjs.org/uuid-js/-/uuid-js-0.7.2.tgz" + }, + "0.7.3": { + "shasum": "81dc587e7844cb100043f05c25326a4042095fb9", + "tarball": "http://registry.npmjs.org/uuid-js/-/uuid-js-0.7.3.tgz" + }, + "0.7.4": { + "shasum": "5e68376e778cdebd6c47882eb98d06b930e5d8aa", + "tarball": "http://registry.npmjs.org/uuid-js/-/uuid-js-0.7.4.tgz" + } + }, + "url": "http://registry.npmjs.org/uuid-js/" + }, + "uuid-lib": { + "name": "uuid-lib", + "description": "A UUID generator and validator.", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "dandean", + "email": "me@dandean.com" + } + ], + "author": { + "name": "Dan Dean", + "email": "me@dandean.com", + "url": "http://dandean.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/dandean/uuid-lib.git" + }, + "versions": { + "0.0.6": "http://registry.npmjs.org/uuid-lib/0.0.6" + }, + "dist": { + "0.0.6": { + "tarball": "http://registry.npmjs.org/uuid-lib/-/uuid-lib@0.0.6.tgz" + } + }, + "url": "http://registry.npmjs.org/uuid-lib/" + }, + "uuid-pure": { + "name": "uuid-pure", + "description": "Random ID generator. NOT RFC COMPLIANT!! (see: node-uuid)", + "dist-tags": { + "latest": "1.0.10" + }, + "maintainers": [ + { + "name": "aaronblohowiak", + "email": "aaron.blohowiak@gmail.com" + } + ], + "time": { + "modified": "2011-05-12T08:35:14.346Z", + "created": "2010-12-19T08:59:30.310Z", + "1.0.0": "2010-12-19T08:59:31.634Z", + "1.0.1": "2010-12-19T09:18:36.324Z", + "1.0.1r1": "2010-12-19T09:23:18.085Z", + "1.0.2": "2011-01-01T05:45:36.425Z", + "1.0.3": "2011-01-03T00:44:46.069Z", + "1.0.4": "2011-05-12T06:28:09.225Z", + "1.0.5": "2011-05-12T08:14:00.062Z", + "1.0.6": "2011-05-12T08:23:46.592Z", + "1.0.10": "2011-05-12T08:35:14.346Z" + }, + "author": { + "name": "Aaron Blohowiak", + "email": "aaron.blohowiak@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/aaronblohowiak/Random-ID.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/uuid-pure/1.0.0", + "1.0.1": "http://registry.npmjs.org/uuid-pure/1.0.1", + "1.0.1r1": "http://registry.npmjs.org/uuid-pure/1.0.1r1", + "1.0.2": "http://registry.npmjs.org/uuid-pure/1.0.2", + "1.0.3": "http://registry.npmjs.org/uuid-pure/1.0.3", + "1.0.4": "http://registry.npmjs.org/uuid-pure/1.0.4", + "1.0.5": "http://registry.npmjs.org/uuid-pure/1.0.5", + "1.0.6": "http://registry.npmjs.org/uuid-pure/1.0.6", + "1.0.10": "http://registry.npmjs.org/uuid-pure/1.0.10" + }, + "dist": { + "1.0.0": { + "tarball": "http://registry.npmjs.org/uuid-pure/-/uuid-pure-1.0.0.tgz" + }, + "1.0.1": { + "tarball": "http://registry.npmjs.org/uuid-pure/-/uuid-pure-1.0.1.tgz" + }, + "1.0.1r1": { + "tarball": "http://registry.npmjs.org/uuid-pure/-/uuid-pure-1.0.1r1.tgz" + }, + "1.0.2": { + "shasum": "f66794c4df47bc1bc5b4e6785c3678a128e0386d", + "tarball": "http://registry.npmjs.org/uuid-pure/-/uuid-pure-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "c72d7e8dc1d581264abb3db78dd8abfa9c50f893", + "tarball": "http://registry.npmjs.org/uuid-pure/-/uuid-pure-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "461da64f6c0b4e66869b019bd6873687bdff147e", + "tarball": "http://registry.npmjs.org/uuid-pure/-/uuid-pure-1.0.4.tgz" + }, + "1.0.5": { + "shasum": "c7aeda9916952dd1705d19dd10d5f57f8cdaeb14", + "tarball": "http://registry.npmjs.org/uuid-pure/-/uuid-pure-1.0.5.tgz" + }, + "1.0.6": { + "shasum": "c4945db095f2004209059963766cf424499a2701", + "tarball": "http://registry.npmjs.org/uuid-pure/-/uuid-pure-1.0.6.tgz" + }, + "1.0.10": { + "shasum": "72f231b59cf6c3af5e9f6ba7b963a9186d109b5d", + "tarball": "http://registry.npmjs.org/uuid-pure/-/uuid-pure-1.0.10.tgz" + } + }, + "keywords": [ + "uuid", + "random id" + ], + "url": "http://registry.npmjs.org/uuid-pure/" + }, + "uuid-v4.js": { + "name": "uuid-v4.js", + "description": "random uuid (rfc-4122 v4) generator", + "dist-tags": { + "latest": "1.0.2" + }, + "maintainers": [ + { + "name": "makeable", + "email": "matt@makeable.co.uk" + } + ], + "time": { + "modified": "2011-12-06T16:31:52.959Z", + "created": "2011-12-03T23:41:15.048Z", + "1.0.0": "2011-12-03T23:41:16.441Z", + "1.0.1": "2011-12-03T23:50:10.507Z", + "1.0.2": "2011-12-06T16:31:52.959Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/makeable/uuid-v4.js.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/uuid-v4.js/1.0.0", + "1.0.1": "http://registry.npmjs.org/uuid-v4.js/1.0.1", + "1.0.2": "http://registry.npmjs.org/uuid-v4.js/1.0.2" + }, + "dist": { + "1.0.0": { + "shasum": "96f23e76e08100d0ac1ed5fe4e279533c02c73ea", + "tarball": "http://registry.npmjs.org/uuid-v4.js/-/uuid-v4.js-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "86e958529597332691d7b59a884b96f150d50e21", + "tarball": "http://registry.npmjs.org/uuid-v4.js/-/uuid-v4.js-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "624853b66318b186d033403719eb9a4ba9213f1b", + "tarball": "http://registry.npmjs.org/uuid-v4.js/-/uuid-v4.js-1.0.2.tgz" + } + }, + "keywords": [ + "ender", + "uuid" + ], + "url": "http://registry.npmjs.org/uuid-v4.js/" + }, + "uuid.js": { + "name": "uuid.js", + "description": "Wrapper on libuuid", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "s3u", + "email": "subbu@subbu.org" + } + ], + "author": { + "name": "Subbu Allamaraju", + "email": "subbu@subbu.org" + }, + "time": { + "modified": "2011-04-15T21:39:29.554Z", + "created": "2011-03-31T08:12:55.876Z", + "0.1.0": "2011-03-31T08:12:55.876Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/uuid.js/0.1.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/uuid.js/-/uuid.js-0.1.0.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "c80d76a14dc7bb68714e8280d5304588c988a9d2", + "tarball": "http://registry.npmjs.org/uuid.js/-/uuid.js-0.1.0-0.4-sunos-5.11.tgz" + } + } + } + }, + "url": "http://registry.npmjs.org/uuid.js/" + }, + "v8-profiler": { + "name": "v8-profiler", + "description": "node bindings for the v8 profiler", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "dannycoates", + "email": "dannycoates@gmail.com" + } + ], + "author": { + "name": "Danny Coates", + "email": "dannycoates@gmail.com" + }, + "time": { + "modified": "2011-04-15T21:39:38.710Z", + "created": "2011-01-26T04:34:14.121Z", + "0.0.1": "2011-01-26T04:34:14.121Z", + "0.0.2": "2011-01-26T04:34:14.121Z", + "0.0.3": "2011-01-26T04:34:14.121Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/v8-profiler/0.0.1", + "0.0.2": "http://registry.npmjs.org/v8-profiler/0.0.2", + "0.0.3": "http://registry.npmjs.org/v8-profiler/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "d2adbac19439b9bdffdeaa9b070c4f4e87991746", + "tarball": "http://registry.npmjs.org/v8-profiler/-/v8-profiler-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "cd6f3396073169bcd3b15bec4a3b977578004844", + "tarball": "http://registry.npmjs.org/v8-profiler/-/v8-profiler-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "4c0299285ce898bfe52e8639d597bc82f01ea17f", + "tarball": "http://registry.npmjs.org/v8-profiler/-/v8-profiler-0.0.3.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "85a624f07b41a7b8e924f2881549cacb4fee7c8b", + "tarball": "http://registry.npmjs.org/v8-profiler/-/v8-profiler-0.0.3-0.4-sunos-5.11.tgz" + } + } + } + }, + "keywords": [ + "profiler", + "inspector" + ], + "url": "http://registry.npmjs.org/v8-profiler/" + }, + "v8debug": { + "name": "v8debug", + "description": "Implementation of the V8 debugger protocol", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "fjakobs", + "email": "fabian.jakobs@web.de" + } + ], + "time": { + "modified": "2011-11-02T10:11:08.746Z", + "created": "2011-11-02T10:11:06.752Z", + "0.1.1": "2011-11-02T10:11:08.746Z" + }, + "author": { + "name": "Fabian Jakobs", + "email": "fabian@ajax.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/ajaxorg/lib-v8debug.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/v8debug/0.1.1" + }, + "dist": { + "0.1.1": { + "shasum": "85960f522c49429c4dc813a6291a1ee7b2466183", + "tarball": "http://registry.npmjs.org/v8debug/-/v8debug-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/v8debug/" + }, + "valentine": { + "name": "valentine", + "description": "JavaScripts Functional Sister. Utilitiy, Iterators, type checking", + "dist-tags": { + "latest": "1.4.6" + }, + "maintainers": [ + { + "name": "ded", + "email": "polvero@gmail.com" + } + ], + "time": { + "modified": "2011-12-13T22:59:31.250Z", + "created": "2011-04-11T07:03:53.618Z", + "0.0.1": "2011-12-06T23:10:15.800Z", + "1.0.0": "2011-12-06T23:10:15.800Z", + "1.0.1": "2011-12-06T23:10:15.800Z", + "1.0.2": "2011-12-06T23:10:15.800Z", + "1.0.3": "2011-12-06T23:10:15.800Z", + "1.1.0": "2011-12-06T23:10:15.800Z", + "1.1.1": "2011-12-06T23:10:15.800Z", + "1.1.3": "2011-12-06T23:10:15.800Z", + "1.1.4": "2011-12-06T23:10:15.800Z", + "1.1.5": "2011-12-06T23:10:15.800Z", + "1.1.6": "2011-12-06T23:10:15.800Z", + "1.1.7": "2011-12-06T23:10:15.800Z", + "1.1.8": "2011-12-06T23:10:15.800Z", + "1.1.9": "2011-12-06T23:10:15.800Z", + "1.2.0": "2011-12-06T23:10:15.800Z", + "1.3.0": "2011-12-06T23:10:15.800Z", + "1.3.1": "2011-12-06T23:10:15.800Z", + "1.4.0": "2011-12-06T23:10:15.800Z", + "1.4.1": "2011-12-06T23:10:15.800Z", + "1.4.2": "2011-12-06T23:10:15.800Z", + "1.4.3": "2011-12-06T23:10:15.800Z", + "1.4.4": "2011-11-21T02:14:51.846Z", + "1.4.5": "2011-12-06T23:10:15.800Z", + "1.4.6": "2011-12-13T22:59:31.250Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/ded/valentine.git" + }, + "author": { + "name": "Dustin Diaz", + "email": "dustin@dustindiaz.com", + "url": "http://dustindiaz.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/valentine/0.0.1", + "1.0.0": "http://registry.npmjs.org/valentine/1.0.0", + "1.0.1": "http://registry.npmjs.org/valentine/1.0.1", + "1.0.2": "http://registry.npmjs.org/valentine/1.0.2", + "1.0.3": "http://registry.npmjs.org/valentine/1.0.3", + "1.1.0": "http://registry.npmjs.org/valentine/1.1.0", + "1.1.1": "http://registry.npmjs.org/valentine/1.1.1", + "1.1.3": "http://registry.npmjs.org/valentine/1.1.3", + "1.1.4": "http://registry.npmjs.org/valentine/1.1.4", + "1.1.5": "http://registry.npmjs.org/valentine/1.1.5", + "1.1.6": "http://registry.npmjs.org/valentine/1.1.6", + "1.1.7": "http://registry.npmjs.org/valentine/1.1.7", + "1.1.8": "http://registry.npmjs.org/valentine/1.1.8", + "1.1.9": "http://registry.npmjs.org/valentine/1.1.9", + "1.2.0": "http://registry.npmjs.org/valentine/1.2.0", + "1.3.0": "http://registry.npmjs.org/valentine/1.3.0", + "1.3.1": "http://registry.npmjs.org/valentine/1.3.1", + "1.4.0": "http://registry.npmjs.org/valentine/1.4.0", + "1.4.1": "http://registry.npmjs.org/valentine/1.4.1", + "1.4.2": "http://registry.npmjs.org/valentine/1.4.2", + "1.4.3": "http://registry.npmjs.org/valentine/1.4.3", + "1.4.4": "http://registry.npmjs.org/valentine/1.4.4", + "1.4.5": "http://registry.npmjs.org/valentine/1.4.5", + "1.4.6": "http://registry.npmjs.org/valentine/1.4.6" + }, + "dist": { + "0.0.1": { + "shasum": "30949361f46296777a3c913e78b27c958b60ba27", + "tarball": "http://registry.npmjs.org/valentine/-/valentine-0.0.1.tgz" + }, + "1.0.0": { + "shasum": "6e0b29870163b0ae74c5de796ed69bc0155ab5cf", + "tarball": "http://registry.npmjs.org/valentine/-/valentine-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "b03883d12dfa75ba95f3ff87bcefd4f72d9d42fc", + "tarball": "http://registry.npmjs.org/valentine/-/valentine-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "1046b3d2d2d4b370a0de1b71e84bfe97130dd0e8", + "tarball": "http://registry.npmjs.org/valentine/-/valentine-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "392d400899da109cde689d4b904da322b5d0fe8e", + "tarball": "http://registry.npmjs.org/valentine/-/valentine-1.0.3.tgz" + }, + "1.1.0": { + "shasum": "f0a80e8c0ac0e534dfb4bcaaf885a58ba9160879", + "tarball": "http://registry.npmjs.org/valentine/-/valentine-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "4c832fcd85f378c32e75538ce1049a6b2f70c8e6", + "tarball": "http://registry.npmjs.org/valentine/-/valentine-1.1.1.tgz" + }, + "1.1.3": { + "shasum": "1901b4eda3aa3e59c3d904abd29384b4006550c1", + "tarball": "http://registry.npmjs.org/valentine/-/valentine-1.1.3.tgz" + }, + "1.1.4": { + "shasum": "bca581c753ca4ddc1b01810104c271f66c260b2e", + "tarball": "http://registry.npmjs.org/valentine/-/valentine-1.1.4.tgz" + }, + "1.1.5": { + "shasum": "06eebf9501a35efb8951e6cc4939b7a713cf432c", + "tarball": "http://registry.npmjs.org/valentine/-/valentine-1.1.5.tgz" + }, + "1.1.6": { + "shasum": "772ceafced8ac55370bb7b65fe0ca0eb9807ffa3", + "tarball": "http://registry.npmjs.org/valentine/-/valentine-1.1.6.tgz" + }, + "1.1.7": { + "shasum": "a9247ed86a89b9e1d0ece1a8dee011a512531fe6", + "tarball": "http://registry.npmjs.org/valentine/-/valentine-1.1.7.tgz" + }, + "1.1.8": { + "shasum": "59e8d7a0e239eba738134fcf5ca1c81e8f130e5b", + "tarball": "http://registry.npmjs.org/valentine/-/valentine-1.1.8.tgz" + }, + "1.1.9": { + "shasum": "bd2b906b745c813a786a13bf03d628a534d4eaea", + "tarball": "http://registry.npmjs.org/valentine/-/valentine-1.1.9.tgz" + }, + "1.2.0": { + "shasum": "5bdad71686171722ad1c8bcb69404c982ac60e41", + "tarball": "http://registry.npmjs.org/valentine/-/valentine-1.2.0.tgz" + }, + "1.3.0": { + "shasum": "81608fc0e68283a29fc4a8d06cc95b115af7b9cf", + "tarball": "http://registry.npmjs.org/valentine/-/valentine-1.3.0.tgz" + }, + "1.3.1": { + "shasum": "52a07dad9bd4068920b3bbb10dcb5a84f14251ab", + "tarball": "http://registry.npmjs.org/valentine/-/valentine-1.3.1.tgz" + }, + "1.4.0": { + "shasum": "7e1fde48359de3ea0e732dd920f5ab404be21b93", + "tarball": "http://registry.npmjs.org/valentine/-/valentine-1.4.0.tgz" + }, + "1.4.1": { + "shasum": "c0d01e1c3055b729bbb8ffa9c6b4d37331975898", + "tarball": "http://registry.npmjs.org/valentine/-/valentine-1.4.1.tgz" + }, + "1.4.2": { + "shasum": "af1a3fc82c4026a3cddaf31c43567bada6292655", + "tarball": "http://registry.npmjs.org/valentine/-/valentine-1.4.2.tgz" + }, + "1.4.3": { + "shasum": "e2b2aff0c570f355eca38251034134189606f322", + "tarball": "http://registry.npmjs.org/valentine/-/valentine-1.4.3.tgz" + }, + "1.4.4": { + "shasum": "e9a1ff8d9249867ece2ee6f0f7f41f9793d1cad9", + "tarball": "http://registry.npmjs.org/valentine/-/valentine-1.4.4.tgz" + }, + "1.4.5": { + "shasum": "2bc781ce6c739ed12272efa1a2d184f7f97ffe97", + "tarball": "http://registry.npmjs.org/valentine/-/valentine-1.4.5.tgz" + }, + "1.4.6": { + "shasum": "f8f0c46292180d47a9fc9d75babb5b362a491cd4", + "tarball": "http://registry.npmjs.org/valentine/-/valentine-1.4.6.tgz" + } + }, + "keywords": [ + "ender", + "functional", + "iteration", + "type checking", + "base" + ], + "url": "http://registry.npmjs.org/valentine/" + }, + "validate-json": { + "name": "validate-json", + "description": "A commandline utility test the validity of JSON files", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "time": { + "modified": "2011-09-02T23:05:36.463Z", + "created": "2011-07-25T19:31:19.900Z", + "0.0.0": "2011-07-25T19:31:20.276Z", + "1.0.0": "2011-09-02T23:05:36.463Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com", + "url": "http://coolaj86.info" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/validate-json/0.0.0", + "1.0.0": "http://registry.npmjs.org/validate-json/1.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "0f72c54e7f800e2bcb4596fcb83767819ea4b41a", + "tarball": "http://registry.npmjs.org/validate-json/-/validate-json-0.0.0.tgz" + }, + "1.0.0": { + "shasum": "aa1b60967648530f61958b0034dba53943ebc80c", + "tarball": "http://registry.npmjs.org/validate-json/-/validate-json-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/validate-json/" + }, + "validations": { + "name": "validations", + "description": "A validation library for JavaScript objects modeled loosely on ActiveRecord validations.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "danieldkim", + "email": "danieldkimster@gmail.com" + } + ], + "time": { + "modified": "2011-09-23T02:53:40.653Z", + "created": "2011-09-22T04:29:21.583Z", + "0.1.0": "2011-09-22T04:29:22.125Z", + "0.1.1": "2011-09-23T02:53:40.653Z" + }, + "author": { + "name": "Daniel Kim", + "email": "danieldkimster@gmail.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:danieldkim/validations-js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/validations/0.1.0", + "0.1.1": "http://registry.npmjs.org/validations/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "26aeaab768299fe707978a3cafe90f9437f9af90", + "tarball": "http://registry.npmjs.org/validations/-/validations-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "5949cd8dae78f754946164b47b801068033594e8", + "tarball": "http://registry.npmjs.org/validations/-/validations-0.1.1.tgz" + } + }, + "keywords": [ + "validation" + ], + "url": "http://registry.npmjs.org/validations/" + }, + "validator": { + "name": "validator", + "description": "Data validation, filtering and sanitization for node.js", + "dist-tags": { + "latest": "0.3.7" + }, + "maintainers": [ + { + "name": "cohara87", + "email": "cohara87@gmail.com" + } + ], + "author": { + "name": "Chris O'Hara", + "email": "cohara87@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/chriso/node-validator.git" + }, + "time": { + "modified": "2011-11-28T08:50:37.574Z", + "created": "2011-01-04T23:51:47.750Z", + "0.1.0": "2011-01-04T23:51:47.750Z", + "0.1.1": "2011-01-04T23:51:47.750Z", + "0.1.2": "2011-01-04T23:51:47.750Z", + "0.1.3": "2011-01-10T09:33:33.246Z", + "0.1.4": "2011-01-13T09:59:01.603Z", + "0.1.5": "2011-01-13T10:04:06.832Z", + "0.1.6": "2011-01-13T10:13:41.865Z", + "0.1.7": "2011-02-18T23:57:26.785Z", + "0.1.8": "2011-03-27T23:00:35.465Z", + "0.1.9": "2011-04-17T23:05:50.170Z", + "0.2.0": "2011-04-27T10:41:44.259Z", + "0.2.1": "2011-05-10T21:28:22.430Z", + "0.2.2": "2011-05-13T14:21:15.639Z", + "0.2.3": "2011-05-15T05:59:54.277Z", + "0.2.4": "2011-06-14T08:54:19.079Z", + "0.2.5": "2011-07-09T06:17:49.313Z", + "0.2.6": "2011-07-09T06:57:00.343Z", + "0.2.7": "2011-08-07T06:06:15.722Z", + "0.2.8": "2011-09-19T12:00:32.475Z", + "0.2.9": "2011-10-09T03:50:26.695Z", + "0.3.0": "2011-10-26T12:08:38.729Z", + "0.3.1": "2011-10-29T23:43:00.289Z", + "0.3.2": "2011-10-30T00:24:18.760Z", + "0.3.4": "2011-11-05T20:53:13.932Z", + "0.3.5": "2011-11-07T09:33:46.282Z", + "0.3.6": "2011-11-24T08:27:32.065Z", + "0.3.7": "2011-11-28T08:50:37.574Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/validator/0.1.0", + "0.1.1": "http://registry.npmjs.org/validator/0.1.1", + "0.1.2": "http://registry.npmjs.org/validator/0.1.2", + "0.1.3": "http://registry.npmjs.org/validator/0.1.3", + "0.1.4": "http://registry.npmjs.org/validator/0.1.4", + "0.1.5": "http://registry.npmjs.org/validator/0.1.5", + "0.1.6": "http://registry.npmjs.org/validator/0.1.6", + "0.1.7": "http://registry.npmjs.org/validator/0.1.7", + "0.1.8": "http://registry.npmjs.org/validator/0.1.8", + "0.1.9": "http://registry.npmjs.org/validator/0.1.9", + "0.2.0": "http://registry.npmjs.org/validator/0.2.0", + "0.2.1": "http://registry.npmjs.org/validator/0.2.1", + "0.2.2": "http://registry.npmjs.org/validator/0.2.2", + "0.2.3": "http://registry.npmjs.org/validator/0.2.3", + "0.2.4": "http://registry.npmjs.org/validator/0.2.4", + "0.2.5": "http://registry.npmjs.org/validator/0.2.5", + "0.2.6": "http://registry.npmjs.org/validator/0.2.6", + "0.2.7": "http://registry.npmjs.org/validator/0.2.7", + "0.2.8": "http://registry.npmjs.org/validator/0.2.8", + "0.2.9": "http://registry.npmjs.org/validator/0.2.9", + "0.3.0": "http://registry.npmjs.org/validator/0.3.0", + "0.3.1": "http://registry.npmjs.org/validator/0.3.1", + "0.3.2": "http://registry.npmjs.org/validator/0.3.2", + "0.3.4": "http://registry.npmjs.org/validator/0.3.4", + "0.3.5": "http://registry.npmjs.org/validator/0.3.5", + "0.3.6": "http://registry.npmjs.org/validator/0.3.6", + "0.3.7": "http://registry.npmjs.org/validator/0.3.7" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/validator/-/validator-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://registry.npmjs.org/validator/-/validator-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "93a1c57dd3c95693cff774609dcfb62c141e4390", + "tarball": "http://registry.npmjs.org/validator/-/validator-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "cd9f50577e178fc1561ee1f241cb305e1b5f9b70", + "tarball": "http://registry.npmjs.org/validator/-/validator-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "8c55e800800ec7a09cee48cef211fd7c31302ff8", + "tarball": "http://registry.npmjs.org/validator/-/validator-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "79273eeb714a86342685072c859d1cba31e598c3", + "tarball": "http://registry.npmjs.org/validator/-/validator-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "b2b34a5ffe7bed4ca25cdc29ffd0665356cfa541", + "tarball": "http://registry.npmjs.org/validator/-/validator-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "69fa095c35350ce21fca08074ce18f9d00b98019", + "tarball": "http://registry.npmjs.org/validator/-/validator-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "e3efc9e02485f1ec08773951a84d4b92b6684a10", + "tarball": "http://registry.npmjs.org/validator/-/validator-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "96ac092d439dcdb914a0798fe8e627f4225cc246", + "tarball": "http://registry.npmjs.org/validator/-/validator-0.1.9.tgz" + }, + "0.2.0": { + "shasum": "6110812b7a2a0c4c1ada473eb99477c1a96bd497", + "tarball": "http://registry.npmjs.org/validator/-/validator-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "52f5de3acc32abd08911e86b5df35ee47477448c", + "tarball": "http://registry.npmjs.org/validator/-/validator-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "fb2bf4aa9be1e5a5e45fb625ebb8db22ab72802c", + "tarball": "http://registry.npmjs.org/validator/-/validator-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "78398f89fabeeaa310c706e6379f5ed1c86feb22", + "tarball": "http://registry.npmjs.org/validator/-/validator-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "84da50b62c08dd957351c406ffb2637648e954fd", + "tarball": "http://registry.npmjs.org/validator/-/validator-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "9e7adaa063e316add290fce65fbcc5b15339ee62", + "tarball": "http://registry.npmjs.org/validator/-/validator-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "fe47b084d482e5b313536ee4e6652b1779acdec0", + "tarball": "http://registry.npmjs.org/validator/-/validator-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "488308ab979d3c2f7071909a7afc96a56b1f2d59", + "tarball": "http://registry.npmjs.org/validator/-/validator-0.2.7.tgz" + }, + "0.2.8": { + "shasum": "859778929c4d8cb173a0480395da708151c357f8", + "tarball": "http://registry.npmjs.org/validator/-/validator-0.2.8.tgz" + }, + "0.2.9": { + "shasum": "be1fd17861625e6ad0c7b8fc25a3842b639b1273", + "tarball": "http://registry.npmjs.org/validator/-/validator-0.2.9.tgz" + }, + "0.3.0": { + "shasum": "07ae8dac920edfc93616103c99aaa7eaeb6a588c", + "tarball": "http://registry.npmjs.org/validator/-/validator-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "31bbac9a5bfb80bcc5ad06720f8d1db1cd33549e", + "tarball": "http://registry.npmjs.org/validator/-/validator-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "0b8fa2f7476e84e0db13500c30403a5decdae889", + "tarball": "http://registry.npmjs.org/validator/-/validator-0.3.2.tgz" + }, + "0.3.4": { + "shasum": "49cf6dbd470a4088cfee86c94588f72e5359e52f", + "tarball": "http://registry.npmjs.org/validator/-/validator-0.3.4.tgz" + }, + "0.3.5": { + "shasum": "15be44f1d54cb8d75f293b5274ca28ea9303a8ef", + "tarball": "http://registry.npmjs.org/validator/-/validator-0.3.5.tgz" + }, + "0.3.6": { + "shasum": "93c21ff42f6f15896d6be4809a9a341cbac8d1d3", + "tarball": "http://registry.npmjs.org/validator/-/validator-0.3.6.tgz" + }, + "0.3.7": { + "shasum": "e8d38700b79a60d657f5cf8d8e16f06acbd53316", + "tarball": "http://registry.npmjs.org/validator/-/validator-0.3.7.tgz" + } + }, + "keywords": [ + "validator", + "validation", + "assert", + "params", + "sanitization", + "xss", + "entities", + "sanitize", + "sanitisation", + "input" + ], + "url": "http://registry.npmjs.org/validator/" + }, + "validatr": { + "name": "validatr", + "description": "A data validation language", + "dist-tags": { + "latest": "0.0.5" + }, + "readme": null, + "maintainers": [ + { + "name": "christophe.eymard", + "email": "christophe.eymard@ravelsoft.com" + } + ], + "time": { + "modified": "2011-11-22T15:58:57.905Z", + "created": "2011-11-15T16:10:35.477Z", + "0.0.2": "2011-11-15T16:10:37.441Z", + "0.0.3": "2011-11-15T16:15:15.996Z", + "0.0.4": "2011-11-16T17:01:14.580Z", + "0.0.5": "2011-11-22T15:58:57.905Z" + }, + "author": { + "name": "Christophe Eymard", + "email": "christophe.eymard@ravelsoft.com", + "url": "http://www.ravelsoft.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/ravelsoft/validatr.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/validatr/0.0.2", + "0.0.3": "http://registry.npmjs.org/validatr/0.0.3", + "0.0.4": "http://registry.npmjs.org/validatr/0.0.4", + "0.0.5": "http://registry.npmjs.org/validatr/0.0.5" + }, + "dist": { + "0.0.2": { + "shasum": "7792dc732a3535e9ec72f6be52c5fc3dc4fe0681", + "tarball": "http://registry.npmjs.org/validatr/-/validatr-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "7ebc7525b1f4a95aaf84049b6694a1f1f9a6ad4d", + "tarball": "http://registry.npmjs.org/validatr/-/validatr-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "4445b4daf8348afc590d84a91f347799b5cbb08b", + "tarball": "http://registry.npmjs.org/validatr/-/validatr-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "05138eba5a2ad9c8e810cbb3fc2670178a4efd1a", + "tarball": "http://registry.npmjs.org/validatr/-/validatr-0.0.5.tgz" + } + }, + "keywords": [ + "language", + "compiler", + "validation" + ], + "url": "http://registry.npmjs.org/validatr/" + }, + "valve": { + "name": "valve", + "description": "Super-simple control flow", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": null, + "maintainers": [ + { + "name": "TrevorBurnham", + "email": "trevorburnham@gmail.com" + } + ], + "time": { + "modified": "2011-11-29T17:16:11.275Z", + "created": "2011-11-29T17:16:10.839Z", + "0.1.0": "2011-11-29T17:16:11.275Z" + }, + "author": { + "name": "Trevor Burnham", + "url": "http://trevorburnham.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:TrevorBurnham/Valve.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/valve/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "a32b8c0fe8cc41b3b8cc720bddc90a1f8ceafa90", + "tarball": "http://registry.npmjs.org/valve/-/valve-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/valve/" + }, + "vanguard": { + "name": "vanguard", + "description": "MongoHQ Javascript Client", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": null, + "maintainers": [ + { + "name": "coderoshi", + "email": "eric@mongohq.com" + } + ], + "time": { + "modified": "2011-11-24T00:01:57.903Z", + "created": "2011-11-24T00:01:56.510Z", + "0.1.0": "2011-11-24T00:01:57.903Z" + }, + "author": { + "name": "Eric Redmond", + "email": "eric@mongohq.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mongohq/vanguard.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/vanguard/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "4b36a0147d7eb4e56138acc3dd72b0b2ed8df59a", + "tarball": "http://registry.npmjs.org/vanguard/-/vanguard-0.1.0.tgz" + } + }, + "keywords": [ + "mongohq", + "mongodb", + "http", + "client" + ], + "url": "http://registry.npmjs.org/vanguard/" + }, + "vanilla": { + "name": "vanilla", + "description": "a framework", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "chjj", + "email": "chjjeffrey@gmail.com" + } + ], + "time": { + "modified": "2011-07-20T07:10:20.565Z", + "created": "2011-07-20T07:10:20.055Z", + "0.0.4": "2011-07-20T07:10:20.565Z" + }, + "author": { + "name": "Christopher Jeffrey" + }, + "versions": { + "0.0.4": "http://registry.npmjs.org/vanilla/0.0.4" + }, + "dist": { + "0.0.4": { + "shasum": "3a8c94cb6ddf904e724dec79a4ef78ef309faa46", + "tarball": "http://registry.npmjs.org/vanilla/-/vanilla-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/vanilla/" + }, + "vapor": { + "name": "vapor", + "description": "JavaScript, but better!", + "dist-tags": {}, + "maintainers": [ + { + "name": "jed", + "email": "tr@nslator.jp" + } + ], + "time": { + "modified": "2011-05-03T21:28:39.243Z", + "created": "2011-05-03T21:28:39.243Z" + }, + "versions": {}, + "dist": {}, + "url": "http://registry.npmjs.org/vapor/" + }, + "vargs": { + "name": "vargs", + "description": "practical variable argument handling", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "cloudhead", + "email": "self@cloudhead.net" + } + ], + "author": { + "name": "Alexis Sellier", + "email": "self@cloudhead.net" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/vargs/0.1.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/vargs/-/vargs-0.1.0.tgz" + } + }, + "keywords": [ + "argument", + "arguments" + ], + "url": "http://registry.npmjs.org/vargs/" + }, + "vash": { + "name": "vash", + "description": "Razor syntax template parser/generator, for JS", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "kirbysayshi", + "email": "senofpeter@gmail.com" + } + ], + "time": { + "modified": "2011-08-16T06:56:26.089Z", + "created": "2011-08-16T05:44:24.801Z", + "0.2.1": "2011-08-16T05:44:25.158Z", + "0.2.2": "2011-08-16T06:45:06.540Z" + }, + "author": { + "name": "Andrew Petersen", + "email": "senofpeter@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/kirbysayshi/vash.git" + }, + "versions": { + "0.2.1": "http://registry.npmjs.org/vash/0.2.1", + "0.2.2": "http://registry.npmjs.org/vash/0.2.2" + }, + "dist": { + "0.2.1": { + "shasum": "70dac9c0a7721df0008c52149a559e25194181e1", + "tarball": "http://registry.npmjs.org/vash/-/vash-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "3bf671586e52cf5adfb6a8a699159df8d9d8c6eb", + "tarball": "http://registry.npmjs.org/vash/-/vash-0.2.2.tgz" + } + }, + "keywords": [ + "razor", + "parser", + "template", + "express" + ], + "url": "http://registry.npmjs.org/vash/" + }, + "vasttrafik": { + "name": "vasttrafik", + "description": "Vasttrafik Webservice API wrapper for Node.js.", + "dist-tags": { + "latest": "0.1.5" + }, + "maintainers": [ + { + "name": "oskarhagberg", + "email": "oskar.hagberg@gmail.com" + } + ], + "time": { + "modified": "2011-10-09T08:18:00.510Z", + "created": "2011-10-08T15:52:33.961Z", + "0.1.0": "2011-10-08T15:52:34.681Z", + "0.1.1": "2011-10-08T15:57:24.363Z", + "0.1.2": "2011-10-08T16:25:26.776Z", + "0.1.3": "2011-10-09T00:15:34.080Z", + "0.1.4": "2011-10-09T00:19:27.142Z", + "0.1.5": "2011-10-09T08:18:00.510Z" + }, + "author": { + "name": "Oskar Hagberg", + "url": "http://oskarhagberg.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/oskarhagberg/node-vasttrafik.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/vasttrafik/0.1.0", + "0.1.1": "http://registry.npmjs.org/vasttrafik/0.1.1", + "0.1.2": "http://registry.npmjs.org/vasttrafik/0.1.2", + "0.1.3": "http://registry.npmjs.org/vasttrafik/0.1.3", + "0.1.4": "http://registry.npmjs.org/vasttrafik/0.1.4", + "0.1.5": "http://registry.npmjs.org/vasttrafik/0.1.5" + }, + "dist": { + "0.1.0": { + "shasum": "c774e7046d284ceb7206207d14d451b6c598017a", + "tarball": "http://registry.npmjs.org/vasttrafik/-/vasttrafik-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "a1067c799f9408241d582f86b4d02e02a050e46f", + "tarball": "http://registry.npmjs.org/vasttrafik/-/vasttrafik-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "b664d9a1be821ace26ef223efa7b9bc64f342a3d", + "tarball": "http://registry.npmjs.org/vasttrafik/-/vasttrafik-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "3e8264d8c802849994ff2fab376d88736ad62a4d", + "tarball": "http://registry.npmjs.org/vasttrafik/-/vasttrafik-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "a55aef37ceed933085048d746544ca30bfe19217", + "tarball": "http://registry.npmjs.org/vasttrafik/-/vasttrafik-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "cbd64211fafcb22fbf8525a9363da4d63a5a90cb", + "tarball": "http://registry.npmjs.org/vasttrafik/-/vasttrafik-0.1.5.tgz" + } + }, + "keywords": [ + "gothenburg", + "gbg", + "vasttrafik", + "travel" + ], + "url": "http://registry.npmjs.org/vasttrafik/" + }, + "vbench": { + "name": "vbench", + "description": "visual benchmarking with node-canvas", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "time": { + "modified": "2011-10-11T18:23:50.890Z", + "created": "2011-09-15T16:25:48.544Z", + "0.0.1": "2011-09-15T16:25:49.848Z", + "0.0.2": "2011-10-11T18:23:50.890Z" + }, + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/vbench/0.0.1", + "0.0.2": "http://registry.npmjs.org/vbench/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "25e2dc8579b7b56c50c41241d1bbb0469b0f263a", + "tarball": "http://registry.npmjs.org/vbench/-/vbench-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c8138962d69876a1438e6479105afbe6019f7a16", + "tarball": "http://registry.npmjs.org/vbench/-/vbench-0.0.2.tgz" + } + }, + "keywords": [ + "bench", + "benchmark", + "canvas", + "performance" + ], + "url": "http://registry.npmjs.org/vbench/" + }, + "vcal": { + "name": "vcal", + "description": "An vCal ics parser designed to specifically handle Google's ICS private export feed, but could handle more too.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "jsjohnst", + "email": "npm@jeremyjohnstone.com" + } + ], + "time": { + "modified": "2011-10-20T22:43:28.594Z", + "created": "2011-10-20T22:43:28.144Z", + "0.0.1": "2011-10-20T22:43:28.594Z" + }, + "author": { + "name": "Jeremy Johnstone", + "email": "npm-node-vcal@jeremyjohnstone.com", + "url": "jeremyjohnstone.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/jsjohnst/node-vcal.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/vcal/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "3cdcfb231b511c1ae496852ea4508da549c1adb6", + "tarball": "http://registry.npmjs.org/vcal/-/vcal-0.0.1.tgz" + } + }, + "keywords": [ + "vcal", + "ics", + "calendar", + "ical", + "gcal", + "google" + ], + "url": "http://registry.npmjs.org/vcal/" + }, + "vcap": { + "name": "vcap", + "description": "VCAP(Cloudfoundry) Client Library for Node.js", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "# node-vcap-client\n\nVCAP(Cloudfoundry) Client Library for Node.js\n\n## Install\n\n npm install vcap\n\n## Fire.js Ignitable\n\nFor Fire.js Ignitables check [firebaseco/vcap-expressions](https://github.com/firebaseco/vcap-expressions)\n\n### Contributors\n\n* Johan (author). Email: *johan@firebase.co*\n\n## Cloning the Repository\n\n git clone https://github.com/firebaseco/node-vcap-client.git\n\n## MIT License\n\nCopyright (c) 2011 Firebase.co and Contributors - http://www.firebase.co\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.", + "maintainers": [ + { + "name": "firebaseco", + "email": "npm@firebase.co" + } + ], + "time": { + "modified": "2011-12-04T09:18:16.961Z", + "created": "2011-12-04T09:18:15.124Z", + "0.1.0": "2011-12-04T09:18:16.961Z" + }, + "author": { + "name": "Firebase.co", + "email": "npm@firebase.co", + "url": "http://www.firebase.co" + }, + "repository": { + "type": "git", + "url": "git://github.com/firebaseco/vcap-node-client.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/vcap/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "8d7b50bef2f9fa7aed5517bfcfd314f09d075933", + "tarball": "http://registry.npmjs.org/vcap/-/vcap-0.1.0.tgz" + } + }, + "keywords": [ + "cloud", + "vcap", + "vmc", + "cloudfoundry", + "vmware" + ], + "url": "http://registry.npmjs.org/vcap/" + }, + "vcap-expressions": { + "name": "vcap-expressions", + "description": "VCAP(Cloudfoundry) Expressions for Node.js", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "# vcap-expressions\n\nVCAP(Cloudfoundry) Expressions for Fire.js\n\n### Contributors\n\n* Johan (author). Email: *johan@firebase.co*\n\n## Cloning the Repository\n\n git clone https://github.com/firebaseco/vcap-expressions.git\n\n## MIT License\n\nCopyright (c) 2011 Firebase.co and Contributors - http://www.firebase.co\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.", + "maintainers": [ + { + "name": "firebaseco", + "email": "npm@firebase.co" + } + ], + "time": { + "modified": "2011-12-03T07:56:46.036Z", + "created": "2011-12-03T07:56:44.153Z", + "0.1.0": "2011-12-03T07:56:46.036Z" + }, + "author": { + "name": "Firebase.co", + "email": "npm@firebase.co", + "url": "http://www.firebase.co" + }, + "repository": { + "type": "git", + "url": "git://github.com/firebaseco/vcap-node-client.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/vcap-expressions/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "5047e409ba23d918818fce05f86c963f7dc578c8", + "tarball": "http://registry.npmjs.org/vcap-expressions/-/vcap-expressions-0.1.0.tgz" + } + }, + "keywords": [ + "cloud", + "vcap", + "vmc", + "cloudfoundry", + "vmware", + "ignitable" + ], + "url": "http://registry.npmjs.org/vcap-expressions/" + }, + "Vector": { + "name": "Vector", + "description": "A port of Processing PVector written in CoffeeScript", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "willbailey", + "email": "will.bailey@gmail.com" + } + ], + "time": { + "modified": "2011-08-31T15:07:28.899Z", + "created": "2011-08-31T15:07:27.895Z", + "0.0.1": "2011-08-31T15:07:28.899Z" + }, + "author": { + "name": "Will Bailey", + "email": "will.bailey@gmail.com", + "url": "willbailey.name" + }, + "repository": { + "type": "git", + "url": "git@github.com:willbailey/vector.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/Vector/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "d721bd09e0617c3fccb8fe3fc6d7b42f99291d61", + "tarball": "http://registry.npmjs.org/Vector/-/Vector-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/Vector/" + }, + "velocity": { + "name": "velocity", + "description": "measure how fast your objects are changing", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "rook2pawn", + "email": "rook2pawn@gmail.com" + } + ], + "time": { + "modified": "2011-10-17T10:11:03.734Z", + "created": "2011-10-17T10:11:02.851Z", + "0.0.1": "2011-10-17T10:11:03.734Z" + }, + "author": { + "name": "David Wee", + "email": "rook2pawn@gmail.com", + "url": "http://rook2pawn.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/rook2pawn/node-velocity.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/velocity/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "e8f99353db5f70407a0c9dcb9ce5b9313118dc84", + "tarball": "http://registry.npmjs.org/velocity/-/velocity-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/velocity/" + }, + "Velvet": { + "name": "Velvet", + "description": "Authentication and session management for node.js applications.", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "juliojimenez", + "email": "julio.js@live.com" + } + ], + "time": { + "modified": "2011-10-23T21:19:46.540Z", + "created": "2011-10-20T00:36:05.980Z", + "0.0.1": "2011-10-20T00:36:07.719Z", + "0.0.2": "2011-10-22T20:22:16.222Z", + "0.0.3": "2011-10-22T20:25:19.411Z", + "0.0.4": "2011-10-23T21:19:46.540Z" + }, + "author": { + "name": "Julio Jimenez", + "email": "julio.js@live.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/Velvet/0.0.1", + "0.0.2": "http://registry.npmjs.org/Velvet/0.0.2", + "0.0.3": "http://registry.npmjs.org/Velvet/0.0.3", + "0.0.4": "http://registry.npmjs.org/Velvet/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "e99d5f75e3e81d416beb593bda615cefbe0eef5f", + "tarball": "http://registry.npmjs.org/Velvet/-/Velvet-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c6a1e6314ccde9830700cfe7c8e3a802bdee3371", + "tarball": "http://registry.npmjs.org/Velvet/-/Velvet-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "c77d0d36a31dccdd4f9c2f7fc89852ebd730b187", + "tarball": "http://registry.npmjs.org/Velvet/-/Velvet-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "3f6bc281ee87cc6234280b7d3532cd347cde5fd6", + "tarball": "http://registry.npmjs.org/Velvet/-/Velvet-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/Velvet/" + }, + "vendor.js": { + "name": "vendor.js", + "description": "Simple Javascript assets downloader", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "tonistiigi", + "email": "tonistiigi@gmail.com" + } + ], + "time": { + "modified": "2011-12-08T09:11:49.283Z", + "created": "2011-09-22T18:52:26.282Z", + "0.0.1": "2011-12-08T09:11:49.283Z", + "0.0.2": "2011-12-08T09:11:49.283Z", + "0.0.3": "2011-10-29T12:08:26.438Z", + "0.0.4": "2011-12-08T09:11:49.283Z" + }, + "author": { + "name": "Tõnis Tiigi", + "email": "tonistiigi@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/tonistiigi/vendor.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/vendor.js/0.0.1", + "0.0.2": "http://registry.npmjs.org/vendor.js/0.0.2", + "0.0.3": "http://registry.npmjs.org/vendor.js/0.0.3", + "0.0.4": "http://registry.npmjs.org/vendor.js/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "5dce88183f1d46b26961dd9d2bc83b72f3447c3c", + "tarball": "http://registry.npmjs.org/vendor.js/-/vendor.js-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "5aa91c606df772a704a25401fa9851cfcd0676de", + "tarball": "http://registry.npmjs.org/vendor.js/-/vendor.js-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "43406b9fc9b5e7f2992891495b46b3206a640b2b", + "tarball": "http://registry.npmjs.org/vendor.js/-/vendor.js-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "4b56dbdfc67871115ec591d4d5248413d5e17a25", + "tarball": "http://registry.npmjs.org/vendor.js/-/vendor.js-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/vendor.js/" + }, + "ventstatus": { + "name": "ventstatus", + "description": "Module that uses ventrilo_status to report on the status of a ventrilo server", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "ncb000gt", + "email": "nicholas.j.campbell@gmail.com" + } + ], + "time": { + "modified": "2011-08-14T22:35:23.257Z", + "created": "2011-08-14T22:35:21.845Z", + "0.0.1": "2011-08-14T22:35:23.257Z" + }, + "author": { + "name": "Nick Campbell", + "url": "https://github.com/ncb000gt" + }, + "repository": { + "type": "git", + "url": "git://github.com/ncb000gt/node-ventstatus.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ventstatus/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "4521e712aafe08450745bb84348db48dbb13012f", + "tarball": "http://registry.npmjs.org/ventstatus/-/ventstatus-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/ventstatus/" + }, + "version": { + "name": "version", + "description": "NodeJS package.json version number fetcher", + "dist-tags": { + "latest": "0.0.4" + }, + "readme": "\n# version (NodeJS package.json version number fetcher)\n\n[![Build Status](https://secure.travis-ci.org/edwardhotchkiss/version.png)](http://travis-ci.org/edwardhotchkiss/version)\n\n### Installation\n\n```bash\n$ npm install version\n```\n", + "maintainers": [ + { + "name": "edwardhotchkiss", + "email": "e@ingk.com" + } + ], + "time": { + "modified": "2011-11-30T19:24:30.375Z", + "created": "2011-11-30T00:03:48.827Z", + "0.0.1": "2011-11-30T00:03:50.386Z", + "0.0.3": "2011-11-30T03:23:11.509Z", + "0.0.4": "2011-11-30T19:24:30.375Z" + }, + "author": { + "name": "Edward Hotchkiss", + "email": "e@ingk.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/edwardhotchkiss/version.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/version/0.0.1", + "0.0.3": "http://registry.npmjs.org/version/0.0.3", + "0.0.4": "http://registry.npmjs.org/version/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "39e29fb20d8455f0a5352caf018f39e033cbc91f", + "tarball": "http://registry.npmjs.org/version/-/version-0.0.1.tgz" + }, + "0.0.3": { + "shasum": "a93b23d0b6f1818da1cb738de84eed2326f1dc37", + "tarball": "http://registry.npmjs.org/version/-/version-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "843d1edc11cbef0b5e9509c81c8e8a429753b250", + "tarball": "http://registry.npmjs.org/version/-/version-0.0.4.tgz" + } + }, + "keywords": [ + "version", + "package", + "json", + "display", + "number" + ], + "url": "http://registry.npmjs.org/version/" + }, + "version-compare": { + "name": "version-compare", + "description": "PHP.js implementation of version compare coded in coffeescript for node.js", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "balupton", + "email": "b@lupton.cc" + } + ], + "time": { + "modified": "2011-09-20T11:47:35.993Z", + "created": "2011-09-20T11:47:31.063Z", + "0.1.0": "2011-09-20T11:47:35.993Z" + }, + "author": { + "name": "Benjamin Lupton", + "email": "b@lupton.cc", + "url": "http://balupton.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/balupton/version-compare.npm.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/version-compare/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "f001d002899104f33a3c52daee28308457be56a6", + "tarball": "http://registry.npmjs.org/version-compare/-/version-compare-0.1.0.tgz" + } + }, + "keywords": [ + "coffeescript", + "version", + "versioning", + "versions", + "compare", + "comparing", + "comparison" + ], + "url": "http://registry.npmjs.org/version-compare/" + }, + "vertica": { + "name": "vertica", + "description": "Pure Javascript client library for Vertica", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "wvanbergen", + "email": "willem@vanbergen.org" + } + ], + "time": { + "modified": "2011-12-06T05:35:50.338Z", + "created": "2011-07-18T11:47:04.685Z", + "0.1.0": "2011-07-18T11:47:04.922Z", + "0.1.1": "2011-07-18T12:45:11.796Z", + "0.1.2": "2011-07-28T13:07:20.011Z", + "0.1.3": "2011-07-29T17:38:58.108Z", + "0.1.4": "2011-07-29T17:59:54.817Z", + "0.1.5": "2011-07-30T21:26:18.853Z", + "0.1.6": "2011-08-02T20:53:07.790Z", + "0.1.7": "2011-08-02T23:21:20.942Z", + "0.1.8": "2011-08-16T16:53:34.962Z", + "0.1.9": "2011-08-16T19:54:07.558Z", + "0.1.10": "2011-08-17T16:38:43.526Z", + "0.2.0": "2011-08-31T21:37:54.199Z", + "0.2.1": "2011-08-31T21:51:07.915Z", + "0.2.2": "2011-08-31T22:50:05.089Z", + "0.3.0": "2011-12-06T05:35:50.338Z" + }, + "author": { + "name": "Willem van Bergen", + "email": "willem@shopify.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/wvanbergen/node-vertica.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/vertica/0.1.0", + "0.1.1": "http://registry.npmjs.org/vertica/0.1.1", + "0.1.2": "http://registry.npmjs.org/vertica/0.1.2", + "0.1.3": "http://registry.npmjs.org/vertica/0.1.3", + "0.1.4": "http://registry.npmjs.org/vertica/0.1.4", + "0.1.5": "http://registry.npmjs.org/vertica/0.1.5", + "0.1.6": "http://registry.npmjs.org/vertica/0.1.6", + "0.1.7": "http://registry.npmjs.org/vertica/0.1.7", + "0.1.8": "http://registry.npmjs.org/vertica/0.1.8", + "0.1.9": "http://registry.npmjs.org/vertica/0.1.9", + "0.1.10": "http://registry.npmjs.org/vertica/0.1.10", + "0.2.0": "http://registry.npmjs.org/vertica/0.2.0", + "0.2.1": "http://registry.npmjs.org/vertica/0.2.1", + "0.2.2": "http://registry.npmjs.org/vertica/0.2.2", + "0.3.0": "http://registry.npmjs.org/vertica/0.3.0" + }, + "dist": { + "0.1.0": { + "shasum": "e7c4b95ff7cd7070f214d14b4f5be23fca4ffc71", + "tarball": "http://registry.npmjs.org/vertica/-/vertica-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "9db7b7e570a4582ae35e055fe04fe571e6bc6f77", + "tarball": "http://registry.npmjs.org/vertica/-/vertica-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "0f276194fcb0eb0478495f0528d197842b628b29", + "tarball": "http://registry.npmjs.org/vertica/-/vertica-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "741b33557887a503cd5b491e539f7670cd9d6a9f", + "tarball": "http://registry.npmjs.org/vertica/-/vertica-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "f69d2599d031700155f1bdd9a6fe260f963bf3f6", + "tarball": "http://registry.npmjs.org/vertica/-/vertica-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "1e8b624b8b5b3fb7caad6c9a77ebc80109df9fb9", + "tarball": "http://registry.npmjs.org/vertica/-/vertica-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "933f9ae66bff704eacab7cb5f15a3a497c285b51", + "tarball": "http://registry.npmjs.org/vertica/-/vertica-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "088358689b0400da467931de39b23cbb61c360be", + "tarball": "http://registry.npmjs.org/vertica/-/vertica-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "2448d53e3b55579a4020d00aab3915d50c97e899", + "tarball": "http://registry.npmjs.org/vertica/-/vertica-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "6de829dc71e8a4c4cb31a3c318c8e68a6b130b46", + "tarball": "http://registry.npmjs.org/vertica/-/vertica-0.1.9.tgz" + }, + "0.1.10": { + "shasum": "45ddf9a787f38143edac4d0fa80d540ed2a8629c", + "tarball": "http://registry.npmjs.org/vertica/-/vertica-0.1.10.tgz" + }, + "0.2.0": { + "shasum": "4232472f815fa633d8fb5369f7eb4a8a1fba5a92", + "tarball": "http://registry.npmjs.org/vertica/-/vertica-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "af33575d83287c79a4617c6875440a7f25fc7fa0", + "tarball": "http://registry.npmjs.org/vertica/-/vertica-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "2daedd3739c1472e1cf6177149164a1c3ef4eb62", + "tarball": "http://registry.npmjs.org/vertica/-/vertica-0.2.2.tgz" + }, + "0.3.0": { + "shasum": "50ec9ef120e51f99def7e13260dbe561494ffdd6", + "tarball": "http://registry.npmjs.org/vertica/-/vertica-0.3.0.tgz" + } + }, + "keywords": [ + "database", + "vertica", + "sql" + ], + "url": "http://registry.npmjs.org/vertica/" + }, + "vhost": { + "name": "vhost", + "description": "'connect's \"vhost\" middleware, modified to accept a generic handler function. Works well with \"stack\", \"connect\", and \"http\" servers.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "TooTallNate", + "email": "nathan@tootallnate.net" + } + ], + "time": { + "modified": "2011-04-03T18:39:26.320Z", + "created": "2011-02-10T06:39:20.081Z", + "0.0.1": "2011-02-10T06:39:20.444Z", + "0.0.2": "2011-04-03T18:35:27.843Z" + }, + "author": { + "name": "Nathan Rajlich", + "email": "nathan@tootallnate.net" + }, + "repository": { + "type": "git", + "url": "git://gist.github.com/820042.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/vhost/0.0.1", + "0.0.2": "http://registry.npmjs.org/vhost/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "72342f812c586a08300070da44e6dd3929e7a091", + "tarball": "http://registry.npmjs.org/vhost/-/vhost-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "b7b0f78ca9c3fb1b99bd6ef70c54efe3fc803228", + "tarball": "http://registry.npmjs.org/vhost/-/vhost-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/vhost/" + }, + "vice": { + "name": "vice", + "description": "Vim mode for ace.", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "gozala", + "email": "rfobic@gmail.com" + } + ], + "time": { + "modified": "2011-02-10T15:32:10.745Z", + "created": "2011-02-10T14:20:50.908Z", + "0.0.2": "2011-02-10T14:20:51.316Z", + "0.0.3": "2011-02-10T15:32:10.745Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/Gozala/vice.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/vice/0.0.2", + "0.0.3": "http://registry.npmjs.org/vice/0.0.3" + }, + "dist": { + "0.0.2": { + "shasum": "58b00eab96cb775382b2d38de8b78a12db2ee34d", + "tarball": "http://registry.npmjs.org/vice/-/vice-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "b3e26c42b5ab369f96218626eed2fc8abc3f9d8c", + "tarball": "http://registry.npmjs.org/vice/-/vice-0.0.3.tgz" + } + }, + "keywords": [ + "vim", + "ace", + "editor" + ], + "url": "http://registry.npmjs.org/vice/" + }, + "video": { + "name": "video", + "description": "A C++ module for node.js that creates Theora/Ogg videos from RGB frames.", + "dist-tags": { + "latest": "1.0.2" + }, + "maintainers": [ + { + "name": "pkrumins", + "email": "peteris.krumins@gmail.com" + } + ], + "versions": { + "1.0.0": "http://registry.npmjs.org/video/1.0.0", + "1.0.1": "http://registry.npmjs.org/video/1.0.1", + "1.0.2": "http://registry.npmjs.org/video/1.0.2" + }, + "dist": { + "1.0.0": { + "tarball": "http://packages:5984/video/-/video-1.0.0.tgz" + }, + "1.0.1": { + "tarball": "http://packages:5984/video/-/video-1.0.1.tgz" + }, + "1.0.2": { + "tarball": "http://packages:5984/video/-/video-1.0.2.tgz" + } + }, + "keywords": [ + "video", + "videos", + "theora", + "rgb" + ], + "url": "http://registry.npmjs.org/video/" + }, + "vie": { + "name": "vie", + "description": "Editable RDFa with Backbone.js and JSON-LD", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "bergie", + "email": "henri.bergius@iki.fi" + } + ], + "time": { + "modified": "2011-07-15T13:54:30.156Z", + "created": "2011-03-09T16:30:13.856Z", + "0.0.2": "2011-03-09T16:30:14.341Z", + "1.0.0": "2011-07-15T13:54:30.156Z" + }, + "author": { + "name": "Henri Bergius" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/vie/0.0.2", + "1.0.0": "http://registry.npmjs.org/vie/1.0.0" + }, + "dist": { + "0.0.2": { + "shasum": "185f3ee71712fbe1b8efcfc9ff01dcbdbb74a6f0", + "tarball": "http://registry.npmjs.org/vie/-/vie-0.0.2.tgz" + }, + "1.0.0": { + "shasum": "c2e8cb7e3eff5b17643512268fa43bea031c8904", + "tarball": "http://registry.npmjs.org/vie/-/vie-1.0.0.tgz" + } + }, + "keywords": [ + "util", + "rdfa", + "model", + "template", + "server", + "client", + "browser" + ], + "url": "http://registry.npmjs.org/vie/" + }, + "view": { + "name": "view", + "description": "Markup as JavaScript", + "dist-tags": { + "latest": "2.0.5" + }, + "maintainers": [ + { + "name": "syntacticx", + "email": "ryan@syntacticx.com" + } + ], + "time": { + "modified": "2011-06-02T23:29:01.027Z", + "created": "2011-03-25T20:09:14.326Z", + "2.0.0": "2011-03-25T20:09:14.462Z", + "2.0.1": "2011-04-18T00:23:55.629Z", + "2.0.2": "2011-04-18T00:41:36.883Z", + "2.0.3": "2011-06-01T22:15:52.265Z", + "2.0.4": "2011-06-02T02:11:47.171Z", + "2.0.5": "2011-06-02T23:29:01.027Z" + }, + "author": { + "name": "Ryan Eastridge", + "email": "ryan@syntacticx.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/syntacticx/viewjs.git" + }, + "versions": { + "2.0.0": "http://registry.npmjs.org/view/2.0.0", + "2.0.1": "http://registry.npmjs.org/view/2.0.1", + "2.0.2": "http://registry.npmjs.org/view/2.0.2", + "2.0.3": "http://registry.npmjs.org/view/2.0.3", + "2.0.4": "http://registry.npmjs.org/view/2.0.4", + "2.0.5": "http://registry.npmjs.org/view/2.0.5" + }, + "dist": { + "2.0.0": { + "shasum": "fb670a54aa09013c5ee2453fe9b054130fc725fa", + "tarball": "http://registry.npmjs.org/view/-/view-2.0.0.tgz" + }, + "2.0.1": { + "shasum": "744544eae75076cc2c4c50528e5a7926dfbb9096", + "tarball": "http://registry.npmjs.org/view/-/view-2.0.1.tgz" + }, + "2.0.2": { + "shasum": "d00292c82862a5534a4231b166c21b2420b9c03a", + "tarball": "http://registry.npmjs.org/view/-/view-2.0.2.tgz" + }, + "2.0.3": { + "shasum": "3ef38fab4e0d59fc4f4b634f25efb4e5909a5c96", + "tarball": "http://registry.npmjs.org/view/-/view-2.0.3.tgz" + }, + "2.0.4": { + "shasum": "812af5b8e7e553544b0d3dcb4ad02e1ea9bf3927", + "tarball": "http://registry.npmjs.org/view/-/view-2.0.4.tgz" + }, + "2.0.5": { + "shasum": "3ff4eba2f293626d61add8518514ee282ac3fbb0", + "tarball": "http://registry.npmjs.org/view/-/view-2.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/view/" + }, + "vigilante": { + "name": "vigilante", + "description": "Vigilante is an intrusion detection system (IDS) written in NodeJS", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "contra", + "email": "contra@australia.edu" + }, + { + "name": "fractal", + "email": "contact@wearefractal.com" + } + ], + "time": { + "modified": "2011-09-17T10:10:07.758Z", + "created": "2011-09-01T13:31:27.670Z", + "0.0.3": "2011-09-01T13:31:28.723Z", + "0.0.4": "2011-09-02T05:39:44.559Z" + }, + "author": { + "name": "Contra", + "email": "contra@australia.edu", + "url": "http://wearefractal.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/Contra/vigilante.git" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/vigilante/0.0.3", + "0.0.4": "http://registry.npmjs.org/vigilante/0.0.4" + }, + "dist": { + "0.0.3": { + "shasum": "c67d6865e1d7d8fab99a9dcd4cbac85f85183f77", + "tarball": "http://registry.npmjs.org/vigilante/-/vigilante-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "883931764c09a5f318f05b182469ce2c4481d9c3", + "tarball": "http://registry.npmjs.org/vigilante/-/vigilante-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/vigilante/" + }, + "villain": { + "name": "villain", + "description": "The evil library for real-time games.", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "stephank", + "email": "stephan@kochen.nl" + } + ], + "author": { + "name": "Stéphan Kochen", + "email": "stephan@kochen.nl", + "url": "http://stephan.kochen.nl/" + }, + "repository": { + "type": "git", + "url": "http://github.com/stephank/villain.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/villain/0.1.1", + "0.1.2": "http://registry.npmjs.org/villain/0.1.2", + "0.1.3": "http://registry.npmjs.org/villain/0.1.3" + }, + "dist": { + "0.1.1": { + "tarball": "http://packages:5984/villain/-/villain-0.1.1.tgz" + }, + "0.1.2": { + "tarball": "http://packages:5984/villain/-/villain-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "140cbce58f537ec8f5948dcc026e6ef523017244", + "tarball": "http://registry.npmjs.org/villain/-/villain-0.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/villain/" + }, + "vimeo-client": { + "name": "vimeo-client", + "description": "Client for vimeo api", + "dist-tags": { + "latest": "0.1.5" + }, + "readme": "vimeo-client\n=============\n\nVimeo Advanced API Client library for Node.js\nThe library works with all methods provided by Vimeo API and allows you to authenticate via Vimeo.\nYou will first need to sign up for a [developer application](http://vimeo.com/api/applications) to get the consumer key and secret.\n\n## Installation\n $ npm install vimeo-client\n\n## Quick Start\nYou can use Express or Connect with vimeo-client\n\n1. **Add the vimeo-client middleware to Express**\n\n ```javascript\n var vimeo = require('vimeo-client');\n \n var app = module.exports = express.createServer();\n \n app.configure(function(){\n\t \n\t // Some your code\n app.use(express.bodyParser());\n app.use(express.cookieParser());\n app.use(express.session({ secret: 'secret'}));\n app.use(vimeo.middleware({\n consumerKey: 'YOUR CONSUMER KEY',\n consumerSecret: \"YOUR CONSUMER SECRET\",\n baseURL: 'http://localhost:3000',\n logging: 'debug', //Set logging: false to disable console logs\n afterLogin: '/helloVimeo',\n afterLogout: '/goodbyeVimeo',\n permission: 'write' // Vimeo API provide 3 level of permissions 'read, write, delete'\n }));\n });\n\t\n2. **Use vimeo API**\n\n ```javascript\n app.get('/hello', function(req, res){\n\t\n vimeo.post({ \n\t method: \"vimeo.albums.create\", \n description: \"My Music Videos\", \n title: \"My Music Videos\", \n video_id: \"29020150\", \n videos: \"15877632, 29020150, 16097839\"\n\n }, req, function(err, data, response) {\n\t\t res.send(data);\n\t\t });\n\t\t \n });\n\n**About options**\n - `method:` - Some Vimeo API method, a description of all methods can be found on [Vimeo API Method list](http://vimeo.com/api/docs/methods)\nThe `method:` must be the first since you can specify other options, like `video_id:.....etc`.\n\n### License\n(The MIT License)\n\nCopyright (c) 2011 Andriy Bazyuta <andriy.bazyuta@gmail.com>\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n---\n### Author\nAndriy Bazyuta", + "maintainers": [ + { + "name": "andriy", + "email": "andriy.bazyuta@gmail.com" + } + ], + "time": { + "modified": "2011-11-19T00:52:17.878Z", + "created": "2011-11-19T00:52:16.010Z", + "0.1.5": "2011-11-19T00:52:17.878Z" + }, + "author": { + "name": "Andriy Bazyuta", + "email": "andriy.bazyuta@gmail.com", + "url": "https://github.com/tih-ra/" + }, + "repository": { + "type": "git", + "url": "git://github.com/tih-ra/vimeo-client.git" + }, + "versions": { + "0.1.5": "http://registry.npmjs.org/vimeo-client/0.1.5" + }, + "dist": { + "0.1.5": { + "shasum": "fe9405c016594972bcd71684fec88993b4ef7a08", + "tarball": "http://registry.npmjs.org/vimeo-client/-/vimeo-client-0.1.5.tgz" + } + }, + "keywords": [ + "api", + "vimeo", + "oauth" + ], + "url": "http://registry.npmjs.org/vimeo-client/" + }, + "vine": { + "name": "vine", + "description": "API builder", + "dist-tags": { + "latest": "0.0.12" + }, + "maintainers": [ + { + "name": "architectd", + "email": "craig.j.condon@gmail.com" + } + ], + "time": { + "modified": "2011-12-12T03:18:57.394Z", + "created": "2011-07-14T02:15:31.899Z", + "0.0.1": "2011-07-14T02:15:32.107Z", + "0.0.1-1": "2011-07-14T02:40:44.991Z", + "0.0.1-2": "2011-07-18T07:58:29.982Z", + "0.0.5": "2011-08-10T02:58:50.248Z", + "0.0.6": "2011-08-14T22:43:56.245Z", + "0.0.7": "2011-08-15T04:48:31.531Z", + "0.0.8": "2011-09-12T05:22:20.232Z", + "0.0.9": "2011-09-13T17:44:43.999Z", + "0.0.10": "2011-11-14T22:32:43.943Z", + "0.0.11": "2011-11-30T18:54:55.583Z", + "0.0.12": "2011-12-12T03:18:57.394Z" + }, + "author": { + "name": "Craig Condon" + }, + "repository": { + "type": "git", + "url": "git://github.com/crcn/vine.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/vine/0.0.1", + "0.0.1-1": "http://registry.npmjs.org/vine/0.0.1-1", + "0.0.1-2": "http://registry.npmjs.org/vine/0.0.1-2", + "0.0.5": "http://registry.npmjs.org/vine/0.0.5", + "0.0.6": "http://registry.npmjs.org/vine/0.0.6", + "0.0.7": "http://registry.npmjs.org/vine/0.0.7", + "0.0.8": "http://registry.npmjs.org/vine/0.0.8", + "0.0.10": "http://registry.npmjs.org/vine/0.0.10", + "0.0.11": "http://registry.npmjs.org/vine/0.0.11", + "0.0.12": "http://registry.npmjs.org/vine/0.0.12" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/vine/-/vine-0.0.1.tgz" + }, + "0.0.1-1": { + "tarball": "http://registry.npmjs.org/vine/-/vine-0.0.1-1.tgz" + }, + "0.0.1-2": { + "tarball": "http://registry.npmjs.org/vine/-/vine-0.0.1-2.tgz" + }, + "0.0.5": { + "tarball": "http://registry.npmjs.org/vine/-/vine-0.0.5.tgz" + }, + "0.0.6": { + "tarball": "http://registry.npmjs.org/vine/-/vine-0.0.6.tgz" + }, + "0.0.7": { + "tarball": "http://registry.npmjs.org/vine/-/vine-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "881fd77646a875f1da5925b9f52fa567b6fd27ec", + "tarball": "http://registry.npmjs.org/vine/-/vine-0.0.8.tgz" + }, + "0.0.10": { + "shasum": "98c93f027962778dddbaed09b6edab039346ed82", + "tarball": "http://registry.npmjs.org/vine/-/vine-0.0.10.tgz" + }, + "0.0.11": { + "shasum": "3f334e32a18395641c7d00e901db8547c3836e4d", + "tarball": "http://registry.npmjs.org/vine/-/vine-0.0.11.tgz" + }, + "0.0.12": { + "shasum": "195ad8bb32abe0e185ef7ce80cd6a6aa9a599a66", + "tarball": "http://registry.npmjs.org/vine/-/vine-0.0.12.tgz" + } + }, + "url": "http://registry.npmjs.org/vine/" + }, + "vipe": { + "name": "vipe", + "description": "Visual programming environment", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "dirk", + "email": "dirk@esherido.com" + } + ], + "time": { + "modified": "2011-05-26T01:33:28.159Z", + "created": "2011-05-26T01:33:27.784Z", + "0.0.1": "2011-05-26T01:33:28.159Z" + }, + "author": { + "name": "dirk" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/vipe/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "c33b7fd72ea53665ddc6aee60c2de49db7b3bcd8", + "tarball": "http://registry.npmjs.org/vipe/-/vipe-0.0.1.tgz" + } + }, + "keywords": [ + "coffeescript", + "visual" + ], + "url": "http://registry.npmjs.org/vipe/" + }, + "viralheat": { + "name": "viralheat", + "description": "Module for accessing the Viralheat's API library", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "walker", + "email": "myself@walkerhamilton.com" + } + ], + "time": { + "modified": "2011-08-26T14:34:12.875Z", + "created": "2011-08-26T14:34:12.393Z", + "0.0.1": "2011-08-26T14:34:12.875Z" + }, + "author": { + "name": "Walker Hamilton", + "email": "myself@walkerhamilton.com", + "url": "http://walkerhamilton.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/walker/viralheat.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/viralheat/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "6b7a62559f75aecb1c91cf19a8989ab20eca8cdd", + "tarball": "http://registry.npmjs.org/viralheat/-/viralheat-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/viralheat/" + }, + "viralheat-sentiment": { + "name": "viralheat-sentiment", + "description": "Module for accessing the Viralheat sentiment analysis service.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "walker", + "email": "myself@walkerhamilton.com" + } + ], + "time": { + "modified": "2011-08-25T23:24:43.571Z", + "created": "2011-08-25T23:24:43.147Z", + "0.0.2": "2011-08-25T23:24:43.571Z" + }, + "author": { + "name": "Walker Hamilton", + "email": "myself@walkerhamilton.com", + "url": "http://walkerhamilton.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/walker/viralheat-sentiment.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/viralheat-sentiment/0.0.2" + }, + "dist": { + "0.0.2": { + "shasum": "9b75c217a7e9f9cd11892bf7d849bb7cc3c457e3", + "tarball": "http://registry.npmjs.org/viralheat-sentiment/-/viralheat-sentiment-0.0.2.tgz" + } + }, + "keywords": [ + "api", + "sentiment analysis", + "text", + "analysis" + ], + "url": "http://registry.npmjs.org/viralheat-sentiment/" + }, + "virustotal.js": { + "name": "virustotal.js", + "description": "VirusTotal API client for node.js.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "saltwaterc", + "email": "saltwaterc@gmail.com" + } + ], + "time": { + "modified": "2011-08-31T09:31:59.480Z", + "created": "2011-08-31T09:31:57.642Z", + "0.1.0": "2011-08-31T09:31:59.480Z" + }, + "author": { + "name": "Stefan Rusu", + "url": "http://www.saltwaterc.eu/" + }, + "repository": { + "type": "git", + "url": "git://github.com/SaltwaterC/virustotal.js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/virustotal.js/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "059b5650011930f5157d13625f95ff4aa6258684", + "tarball": "http://registry.npmjs.org/virustotal.js/-/virustotal.js-0.1.0.tgz" + } + }, + "keywords": [ + "virustotal", + "api", + "https", + "scan" + ], + "url": "http://registry.npmjs.org/virustotal.js/" + }, + "vivid-builder": { + "name": "vivid-builder", + "description": "Simple JavaScript packages builder", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "vtsvang", + "email": "vtsvang@gmail.com" + } + ], + "time": { + "modified": "2011-12-06T09:15:51.368Z", + "created": "2011-12-03T12:47:05.716Z", + "0.0.1": "2011-12-03T12:52:04.651Z", + "0.0.2": "2011-12-03T12:59:20.970Z", + "0.0.3": "2011-12-03T13:13:34.390Z", + "0.0.4": "2011-12-03T14:56:14.573Z", + "0.0.5": "2011-12-06T09:11:54.639Z" + }, + "author": { + "name": "Vladimir Tsvang", + "email": "vtsvang@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/vtsvang/vivid-builder.git" + }, + "users": {}, + "versions": { + "0.0.1": "http://registry.npmjs.org/vivid-builder/0.0.1", + "0.0.2": "http://registry.npmjs.org/vivid-builder/0.0.2", + "0.0.3": "http://registry.npmjs.org/vivid-builder/0.0.3", + "0.0.4": "http://registry.npmjs.org/vivid-builder/0.0.4", + "0.0.5": "http://registry.npmjs.org/vivid-builder/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "9f99cb2b5701a1fb1fe001f6273f24e13859793c", + "tarball": "http://registry.npmjs.org/vivid-builder/-/vivid-builder-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "9d7356950447e16749838c52b67416e0fa332643", + "tarball": "http://registry.npmjs.org/vivid-builder/-/vivid-builder-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "5f9ce4812715a195ea88396ad409c5cb034d8c99", + "tarball": "http://registry.npmjs.org/vivid-builder/-/vivid-builder-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "40af03564ae2830379ee624f2be8918b2ca2979e", + "tarball": "http://registry.npmjs.org/vivid-builder/-/vivid-builder-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "a512f101ee0b638b0cdb8f2dcc7fc7264ef6c688", + "tarball": "http://registry.npmjs.org/vivid-builder/-/vivid-builder-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/vivid-builder/" + }, + "vk": { + "name": "vk", + "description": "Vkontakte module for node.js", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "bobrik", + "email": "ibobrik@gmail.com" + } + ], + "time": { + "modified": "2011-09-20T13:26:05.943Z", + "created": "2011-09-01T06:14:48.334Z", + "0.1.0": "2011-09-01T06:14:48.963Z", + "0.1.1": "2011-09-17T09:10:46.520Z", + "0.1.2": "2011-09-17T09:13:19.869Z", + "0.1.3": "2011-09-20T13:26:05.943Z" + }, + "author": { + "name": "Ian Babrou", + "email": "ibobrik@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Sonetica/node-vk.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/vk/0.1.0", + "0.1.1": "http://registry.npmjs.org/vk/0.1.1", + "0.1.2": "http://registry.npmjs.org/vk/0.1.2", + "0.1.3": "http://registry.npmjs.org/vk/0.1.3" + }, + "dist": { + "0.1.0": { + "shasum": "205cf2a03d7bd371f1ca0ea39a2af9346c323d0b", + "tarball": "http://registry.npmjs.org/vk/-/vk-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "c046ef4b4efc324e13e6cc94a65377c365cad78e", + "tarball": "http://registry.npmjs.org/vk/-/vk-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "f0e43ed6e9d65993710e8569b49745317356e656", + "tarball": "http://registry.npmjs.org/vk/-/vk-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "a046a53f1f10980187f88e801a0ed211184e17d6", + "tarball": "http://registry.npmjs.org/vk/-/vk-0.1.3.tgz" + } + }, + "keywords": [ + "vk", + "vkontakte", + "social", + "api" + ], + "url": "http://registry.npmjs.org/vk/" + }, + "vmcjs": { + "name": "vmcjs", + "description": "Node.js VMC library", + "dist-tags": { + "latest": "0.1.5" + }, + "maintainers": [ + { + "name": "dberesford", + "email": "damian.beresford@feedhenry.com" + } + ], + "time": { + "modified": "2011-11-28T12:18:57.112Z", + "created": "2011-09-14T16:32:38.379Z", + "0.1.0": "2011-09-14T16:32:39.767Z", + "0.1.1": "2011-09-15T11:24:01.380Z", + "0.1.2": "2011-10-03T11:31:17.212Z", + "0.1.3": "2011-10-03T16:03:25.116Z", + "0.1.4": "2011-10-21T08:34:18.393Z", + "0.1.5": "2011-11-28T12:18:57.112Z" + }, + "author": { + "name": "Damian Beresford", + "email": "Damian.Beresford@feedhenry.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/feedhenry/vmcjs.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/vmcjs/0.1.0", + "0.1.1": "http://registry.npmjs.org/vmcjs/0.1.1", + "0.1.2": "http://registry.npmjs.org/vmcjs/0.1.2", + "0.1.3": "http://registry.npmjs.org/vmcjs/0.1.3", + "0.1.4": "http://registry.npmjs.org/vmcjs/0.1.4", + "0.1.5": "http://registry.npmjs.org/vmcjs/0.1.5" + }, + "dist": { + "0.1.0": { + "shasum": "269b3faa93e84857701ef6d2d57555d8c8248ca9", + "tarball": "http://registry.npmjs.org/vmcjs/-/vmcjs-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "16b775b4f1188780692c256b1c37e2bf483c288d", + "tarball": "http://registry.npmjs.org/vmcjs/-/vmcjs-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "77b5d1c288c1d16dc3f369f2735c4ac06a0aaaac", + "tarball": "http://registry.npmjs.org/vmcjs/-/vmcjs-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "573f7354d08e0c41921a6b9d3b7ff5064d9b57e4", + "tarball": "http://registry.npmjs.org/vmcjs/-/vmcjs-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "ffc44cf994c4a47e8df96fdb90d08193b2b3905f", + "tarball": "http://registry.npmjs.org/vmcjs/-/vmcjs-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "e6b775cb79c340cda433f3896f59b93fea35cf83", + "tarball": "http://registry.npmjs.org/vmcjs/-/vmcjs-0.1.5.tgz" + } + }, + "url": "http://registry.npmjs.org/vmcjs/" + }, + "vnstat.js": { + "name": "vnstat.js", + "description": "A simple Web interface to display statistics extracted from an existing VnStat database", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "nicolargo", + "email": "contact@nicolargo.com" + } + ], + "time": { + "modified": "2011-09-25T16:29:41.398Z", + "created": "2011-09-25T16:29:39.619Z", + "0.1.0": "2011-09-25T16:29:41.398Z" + }, + "author": { + "name": "Nicolas Hennion", + "email": "contact@nicolargo.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:nicolargo/vnstat.js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/vnstat.js/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "aa1a4d5b33e5aa33aa269dd954776d8fbb18e0ba", + "tarball": "http://registry.npmjs.org/vnstat.js/-/vnstat.js-0.1.0.tgz" + } + }, + "keywords": [ + "monitoring", + "vnstat", + "bitrate", + "bandwidth" + ], + "url": "http://registry.npmjs.org/vnstat.js/" + }, + "vogue": { + "name": "vogue", + "description": "Auto-reload stylesheets in web browser whenever the CSS files are saved.", + "dist-tags": { + "latest": "0.4.2" + }, + "maintainers": [ + { + "name": "andrewdavey", + "email": "andrew@equin.co.uk" + } + ], + "time": { + "modified": "2011-09-09T08:34:14.028Z", + "created": "2011-01-03T09:41:58.431Z", + "0.1.0": "2011-01-03T09:41:58.867Z", + "0.1.1": "2011-01-03T14:44:28.476Z", + "0.1.2": "2011-01-05T18:50:13.743Z", + "0.1.3": "2011-01-13T15:28:55.164Z", + "0.1.4": "2011-03-30T16:22:57.619Z", + "0.1.5": "2011-03-30T21:19:36.491Z", + "0.1.6": "2011-03-31T08:01:14.827Z", + "0.2.0": "2011-03-31T17:37:13.206Z", + "0.3.0": "2011-07-20T18:12:45.244Z", + "0.3.1": "2011-07-21T07:09:51.952Z", + "0.4.0": "2011-08-16T07:02:47.058Z", + "0.4.1": "2011-09-08T08:34:22.255Z", + "0.4.2": "2011-09-09T08:34:14.028Z" + }, + "author": { + "name": "Andrew Davey", + "email": "andrew@equin.co.uk", + "url": "http://aboutcode.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/andrewdavey/vogue.git" + }, + "versions": { + "0.1.5": "http://registry.npmjs.org/vogue/0.1.5", + "0.1.6": "http://registry.npmjs.org/vogue/0.1.6", + "0.2.0": "http://registry.npmjs.org/vogue/0.2.0", + "0.3.0": "http://registry.npmjs.org/vogue/0.3.0", + "0.3.1": "http://registry.npmjs.org/vogue/0.3.1", + "0.4.0": "http://registry.npmjs.org/vogue/0.4.0", + "0.4.1": "http://registry.npmjs.org/vogue/0.4.1", + "0.4.2": "http://registry.npmjs.org/vogue/0.4.2" + }, + "dist": { + "0.1.5": { + "shasum": "1f942ba49f3dcabeff2a3ca4f483ab2327c04aab", + "tarball": "http://registry.npmjs.org/vogue/-/vogue-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "f85d2e4d687d468361073c90689c18650c8c2ef5", + "tarball": "http://registry.npmjs.org/vogue/-/vogue-0.1.6.tgz" + }, + "0.2.0": { + "shasum": "72d19383f51110472c5b24dbb6a67776a1b2ba29", + "tarball": "http://registry.npmjs.org/vogue/-/vogue-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "13b2e0a1084d155a473fc39e706c3ec58df8ac00", + "tarball": "http://registry.npmjs.org/vogue/-/vogue-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "89608235638fe11c4bbb4bf91d3103a374c54e75", + "tarball": "http://registry.npmjs.org/vogue/-/vogue-0.3.1.tgz" + }, + "0.4.0": { + "shasum": "cafb6717edd0695d51b3c3e46547eb9276d9e0df", + "tarball": "http://registry.npmjs.org/vogue/-/vogue-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "f4f8b8148c515ff98a961995ba1f62709eb25a3a", + "tarball": "http://registry.npmjs.org/vogue/-/vogue-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "eae27d18531d5abe29edb3b4842f3b055135b4f8", + "tarball": "http://registry.npmjs.org/vogue/-/vogue-0.4.2.tgz" + } + }, + "url": "http://registry.npmjs.org/vogue/" + }, + "vogue-dtrejo": { + "name": "vogue-dtrejo", + "description": "Auto-reload stylesheets in web browser whenever the CSS files are saved.", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "dtrejo", + "email": "dtrejo@cs.brown.edu" + } + ], + "time": { + "modified": "2011-07-11T19:08:52.621Z", + "created": "2011-07-11T19:08:52.163Z", + "0.2.1": "2011-07-11T19:08:52.621Z" + }, + "author": { + "name": "Andrew Davey", + "email": "andrew@equin.co.uk", + "url": "http://aboutcode.net/" + }, + "repository": { + "type": "git", + "url": "git@github.com:DTrejo/vogue.git" + }, + "versions": { + "0.2.1": "http://registry.npmjs.org/vogue-dtrejo/0.2.1" + }, + "dist": { + "0.2.1": { + "shasum": "d00d7b91db453127597c2b8ad0c404fbe0863803", + "tarball": "http://registry.npmjs.org/vogue-dtrejo/-/vogue-dtrejo-0.2.1.tgz" + } + }, + "url": "http://registry.npmjs.org/vogue-dtrejo/" + }, + "votizen-logger": { + "name": "votizen-logger", + "description": "A Simpler way to log data to files from Node", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "Tim-Smart", + "email": "tim@fostle.com" + }, + { + "name": "miksago", + "email": "micheil@brandedcode.com" + } + ], + "time": { + "modified": "2011-02-24T17:57:35.008Z", + "created": "2011-01-27T00:06:19.154Z", + "0.0.1": "2011-01-27T00:06:20.103Z" + }, + "author": { + "name": "Micheil Smith", + "email": "micheil@votizen.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/votizen/logger.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/votizen-logger/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "ed4d6a0d78b2e6d1713df144c196224d9bc6d65b", + "tarball": "http://registry.npmjs.org/votizen-logger/-/votizen-logger-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/votizen-logger/" + }, + "vows": { + "name": "vows", + "description": "Asynchronous BDD & continuous integration for node.js", + "dist-tags": { + "latest": "0.6.0" + }, + "maintainers": [ + { + "name": "cloudhead", + "email": "self@cloudhead.net" + }, + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + } + ], + "author": { + "name": "Alexis Sellier", + "email": "self@cloudhead.net" + }, + "time": { + "modified": "2011-11-25T05:09:45.963Z", + "created": "2010-12-29T11:20:56.476Z", + "0.2.5": "2010-12-29T11:20:56.476Z", + "0.3.0": "2010-12-29T11:20:56.476Z", + "0.3.1": "2010-12-29T11:20:56.476Z", + "0.3.2": "2010-12-29T11:20:56.476Z", + "0.3.3": "2010-12-29T11:20:56.476Z", + "0.3.4": "2010-12-29T11:20:56.476Z", + "0.3.5": "2010-12-29T11:20:56.476Z", + "0.4.0": "2010-12-29T11:20:56.476Z", + "0.4.1": "2010-12-29T11:20:56.476Z", + "0.4.2": "2010-12-29T11:20:56.476Z", + "0.4.3": "2010-12-29T11:20:56.476Z", + "0.4.4": "2010-12-29T11:20:56.476Z", + "0.4.5": "2010-12-29T11:20:56.476Z", + "0.4.6": "2010-12-29T11:20:56.476Z", + "0.5.0": "2010-12-29T11:20:56.476Z", + "0.5.1": "2010-12-29T11:20:56.476Z", + "0.5.2": "2010-12-29T11:20:56.476Z", + "0.5.3": "2010-12-29T11:20:56.476Z", + "0.5.4": "2011-01-29T20:02:12.944Z", + "0.5.5": "2011-01-30T22:27:47.981Z", + "0.5.6": "2011-01-31T18:17:54.498Z", + "0.5.8": "2011-03-13T03:30:20.700Z", + "0.5.9": "2011-07-22T16:52:02.463Z", + "0.5.10": "2011-08-12T04:49:27.553Z", + "0.5.11": "2011-08-21T03:18:25.757Z", + "0.5.12": "2011-10-22T06:33:16.562Z", + "0.5.13": "2011-11-02T19:20:41.125Z", + "0.6.0": "2011-11-25T05:09:45.963Z" + }, + "users": { + "coverslide": true + }, + "versions": { + "0.2.5": "http://registry.npmjs.org/vows/0.2.5", + "0.3.0": "http://registry.npmjs.org/vows/0.3.0", + "0.3.1": "http://registry.npmjs.org/vows/0.3.1", + "0.3.2": "http://registry.npmjs.org/vows/0.3.2", + "0.3.3": "http://registry.npmjs.org/vows/0.3.3", + "0.3.4": "http://registry.npmjs.org/vows/0.3.4", + "0.3.5": "http://registry.npmjs.org/vows/0.3.5", + "0.4.0": "http://registry.npmjs.org/vows/0.4.0", + "0.4.1": "http://registry.npmjs.org/vows/0.4.1", + "0.4.2": "http://registry.npmjs.org/vows/0.4.2", + "0.4.3": "http://registry.npmjs.org/vows/0.4.3", + "0.4.4": "http://registry.npmjs.org/vows/0.4.4", + "0.4.5": "http://registry.npmjs.org/vows/0.4.5", + "0.4.6": "http://registry.npmjs.org/vows/0.4.6", + "0.5.0": "http://registry.npmjs.org/vows/0.5.0", + "0.5.5": "http://registry.npmjs.org/vows/0.5.5", + "0.5.6": "http://registry.npmjs.org/vows/0.5.6", + "0.5.8": "http://registry.npmjs.org/vows/0.5.8", + "0.5.9": "http://registry.npmjs.org/vows/0.5.9", + "0.5.10": "http://registry.npmjs.org/vows/0.5.10", + "0.5.11": "http://registry.npmjs.org/vows/0.5.11", + "0.5.12": "http://registry.npmjs.org/vows/0.5.12", + "0.5.13": "http://registry.npmjs.org/vows/0.5.13", + "0.6.0": "http://registry.npmjs.org/vows/0.6.0" + }, + "dist": { + "0.2.5": { + "tarball": "http://registry.npmjs.org/vows/-/vows-0.2.5.tgz" + }, + "0.3.0": { + "tarball": "http://registry.npmjs.org/vows/-/vows-0.3.0.tgz" + }, + "0.3.1": { + "tarball": "http://registry.npmjs.org/vows/-/vows-0.3.1.tgz" + }, + "0.3.2": { + "tarball": "http://registry.npmjs.org/vows/-/vows-0.3.2.tgz" + }, + "0.3.3": { + "tarball": "http://registry.npmjs.org/vows/-/vows-0.3.3.tgz" + }, + "0.3.4": { + "tarball": "http://registry.npmjs.org/vows/-/vows-0.3.4.tgz" + }, + "0.3.5": { + "tarball": "http://registry.npmjs.org/vows/-/vows-0.3.5.tgz" + }, + "0.4.0": { + "tarball": "http://registry.npmjs.org/vows/-/vows-0.4.0.tgz" + }, + "0.4.1": { + "tarball": "http://registry.npmjs.org/vows/-/vows-0.4.1.tgz" + }, + "0.4.2": { + "tarball": "http://registry.npmjs.org/vows/-/vows-0.4.2.tgz" + }, + "0.4.3": { + "tarball": "http://registry.npmjs.org/vows/-/vows-0.4.3.tgz" + }, + "0.4.4": { + "tarball": "http://registry.npmjs.org/vows/-/vows-0.4.4.tgz" + }, + "0.4.5": { + "tarball": "http://registry.npmjs.org/vows/-/vows-0.4.5.tgz" + }, + "0.4.6": { + "tarball": "http://registry.npmjs.org/vows/-/vows-0.4.6.tgz" + }, + "0.5.0": { + "tarball": "http://registry.npmjs.org/vows/-/vows-0.5.0.tgz" + }, + "0.5.5": { + "shasum": "514dd8dd569a95a4e1d5b3dea575a335c8494d04", + "tarball": "http://registry.npmjs.org/vows/-/vows-0.5.5.tgz" + }, + "0.5.6": { + "shasum": "9a87debc684b4eb018c864dbad34e32b93623dd4", + "tarball": "http://registry.npmjs.org/vows/-/vows-0.5.6.tgz" + }, + "0.5.8": { + "shasum": "46f1f6e627a6b0a1997b66933f1c03076cccdfb4", + "tarball": "http://registry.npmjs.org/vows/-/vows-0.5.8.tgz" + }, + "0.5.9": { + "shasum": "58db374b331c8e57ba453fabb3b290dc3fa55d0c", + "tarball": "http://registry.npmjs.org/vows/-/vows-0.5.9.tgz" + }, + "0.5.10": { + "shasum": "f6035211cf3af64c93fb999a8dc2052aa5bfea3b", + "tarball": "http://registry.npmjs.org/vows/-/vows-0.5.10.tgz" + }, + "0.5.11": { + "shasum": "408ffe381b33992c1f1fe9f54e189f27cc1bb408", + "tarball": "http://registry.npmjs.org/vows/-/vows-0.5.11.tgz" + }, + "0.5.12": { + "shasum": "cffdb774cf4cb7345f31acf9c775ed4a6940f519", + "tarball": "http://registry.npmjs.org/vows/-/vows-0.5.12.tgz" + }, + "0.5.13": { + "shasum": "f6fd9ee9c36d3f20bd6680455cff8090c4b29cde", + "tarball": "http://registry.npmjs.org/vows/-/vows-0.5.13.tgz" + }, + "0.6.0": { + "shasum": "be2f068009d39a37b37af85c29fa86d8573db431", + "tarball": "http://registry.npmjs.org/vows/-/vows-0.6.0.tgz" + } + }, + "keywords": [ + "testing", + "spec", + "test", + "BDD" + ], + "url": "http://registry.npmjs.org/vows/" + }, + "vows-bdd": { + "name": "vows-bdd", + "description": "A BDD wrapper for Vows, allowing for easy writing of tests in a given-when-then format", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "jmreidy", + "email": "jmreidy@rzrsharp.net" + } + ], + "time": { + "modified": "2011-11-27T21:51:03.501Z", + "created": "2011-08-16T19:30:42.999Z", + "0.1.0": "2011-08-16T19:30:43.198Z", + "0.1.1": "2011-11-26T15:56:25.263Z", + "0.1.2": "2011-11-27T21:04:57.687Z", + "0.2.0": "2011-11-27T21:51:03.501Z" + }, + "author": { + "name": "Justin Reidy", + "email": "jmreidy@rzrsharp.net", + "url": "http://rzrsharp.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/jmreidy/vows-bdd.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/vows-bdd/0.1.0", + "0.1.1": "http://registry.npmjs.org/vows-bdd/0.1.1", + "0.1.2": "http://registry.npmjs.org/vows-bdd/0.1.2", + "0.2.0": "http://registry.npmjs.org/vows-bdd/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "217b037845a756776a939ab27d326d28ee6d0953", + "tarball": "http://registry.npmjs.org/vows-bdd/-/vows-bdd-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "b4590796d0e7a2013f87adcf81acd4af00d0094d", + "tarball": "http://registry.npmjs.org/vows-bdd/-/vows-bdd-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "1d4e7aa509e56f0c951cd2bcb6e46a9782400964", + "tarball": "http://registry.npmjs.org/vows-bdd/-/vows-bdd-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "e0e5aeb609fbeb6636903f0ec488941ea450cbc3", + "tarball": "http://registry.npmjs.org/vows-bdd/-/vows-bdd-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/vows-bdd/" + }, + "vows-ext": { + "name": "vows-ext", + "description": "Icing on top of the delicious BDD cake of Vows.js", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "zdzolton", + "email": "zachary.zolton@gmail.com" + } + ], + "time": { + "modified": "2011-07-22T21:37:41.599Z", + "created": "2011-03-11T16:40:01.049Z", + "0.0.1": "2011-03-11T16:40:01.277Z", + "0.0.2": "2011-03-11T17:16:34.331Z", + "0.0.3": "2011-03-11T20:01:58.755Z", + "0.0.4": "2011-03-11T21:36:18.933Z", + "0.0.5": "2011-03-13T18:05:24.721Z", + "0.0.6": "2011-03-14T15:40:38.879Z", + "0.0.7": "2011-03-15T20:39:30.627Z", + "0.0.8": "2011-04-20T00:09:49.104Z", + "0.1.0": "2011-06-02T14:05:32.662Z", + "0.1.1": "2011-07-22T21:37:41.599Z" + }, + "author": { + "name": "Zach Zolton", + "email": "zachary.zolton@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/zdzolton/vows-ext.git" + }, + "versions": { + "0.0.5": "http://registry.npmjs.org/vows-ext/0.0.5", + "0.0.6": "http://registry.npmjs.org/vows-ext/0.0.6", + "0.0.7": "http://registry.npmjs.org/vows-ext/0.0.7", + "0.0.8": "http://registry.npmjs.org/vows-ext/0.0.8", + "0.1.0": "http://registry.npmjs.org/vows-ext/0.1.0", + "0.1.1": "http://registry.npmjs.org/vows-ext/0.1.1" + }, + "dist": { + "0.0.5": { + "shasum": "cd851ed568c74009161774b06da0e7f9720df051", + "tarball": "http://registry.npmjs.org/vows-ext/-/vows-ext-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "a081354c6e0cc25202caef36ee30e99be4745c4e", + "tarball": "http://registry.npmjs.org/vows-ext/-/vows-ext-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "c89138a7030b05a693854e8694effa110f680ad2", + "tarball": "http://registry.npmjs.org/vows-ext/-/vows-ext-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "6e78c076cb218df3f3505f14a39d874872dd6f21", + "tarball": "http://registry.npmjs.org/vows-ext/-/vows-ext-0.0.8.tgz" + }, + "0.1.0": { + "shasum": "5402dbfc022023d3f5853d8166c597120c28adaa", + "tarball": "http://registry.npmjs.org/vows-ext/-/vows-ext-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "f7c579a437b4a79a9bb733cb794d53aad99472ce", + "tarball": "http://registry.npmjs.org/vows-ext/-/vows-ext-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/vows-ext/" + }, + "vows-fluent": { + "name": "vows-fluent", + "description": "A fluent chaining API on top of vows", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "raynos", + "email": "raynos2@gmail.com" + } + ], + "time": { + "modified": "2011-09-01T15:21:06.851Z", + "created": "2011-08-18T20:27:08.658Z", + "0.1.0": "2011-08-18T20:27:11.205Z", + "0.1.1": "2011-08-19T12:14:44.263Z", + "0.1.2": "2011-08-19T12:40:17.871Z", + "0.1.3": "2011-08-19T22:35:08.918Z", + "0.1.4": "2011-08-19T22:36:03.842Z", + "0.1.5": "2011-08-19T23:08:19.602Z", + "0.1.7": "2011-08-20T14:24:09.886Z", + "0.1.8": "2011-08-20T17:53:42.550Z", + "0.1.9": "2011-08-21T12:38:14.310Z", + "0.1.10": "2011-08-30T12:05:15.939Z", + "0.2.0": "2011-09-01T15:21:06.851Z" + }, + "author": { + "name": "Raynos", + "email": "raynos2@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Raynos/vows-fluent.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/vows-fluent/0.1.0", + "0.1.1": "http://registry.npmjs.org/vows-fluent/0.1.1", + "0.1.2": "http://registry.npmjs.org/vows-fluent/0.1.2", + "0.1.3": "http://registry.npmjs.org/vows-fluent/0.1.3", + "0.1.4": "http://registry.npmjs.org/vows-fluent/0.1.4", + "0.1.5": "http://registry.npmjs.org/vows-fluent/0.1.5", + "0.1.7": "http://registry.npmjs.org/vows-fluent/0.1.7", + "0.1.8": "http://registry.npmjs.org/vows-fluent/0.1.8", + "0.1.9": "http://registry.npmjs.org/vows-fluent/0.1.9", + "0.1.10": "http://registry.npmjs.org/vows-fluent/0.1.10", + "0.2.0": "http://registry.npmjs.org/vows-fluent/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "6056c47ff6999e9c666b5a0cda65b25df8303e19", + "tarball": "http://registry.npmjs.org/vows-fluent/-/vows-fluent-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "9d9798ee44c9908b4421bd1b074935c79b52be55", + "tarball": "http://registry.npmjs.org/vows-fluent/-/vows-fluent-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "39ff3daeb9e625ab99fb1d4e1185bbb4eebb82d8", + "tarball": "http://registry.npmjs.org/vows-fluent/-/vows-fluent-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "97c2b8d8c7c3ffbf802bd86b070de426928e8222", + "tarball": "http://registry.npmjs.org/vows-fluent/-/vows-fluent-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "c486f0bdbf604d4f4799b1aa5a6b22b4c0767719", + "tarball": "http://registry.npmjs.org/vows-fluent/-/vows-fluent-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "0c79be0ea96413554e1f6d2d62bcaf447a5db18d", + "tarball": "http://registry.npmjs.org/vows-fluent/-/vows-fluent-0.1.5.tgz" + }, + "0.1.7": { + "shasum": "211a40ff31cdacd07200f25c778dcd876d912848", + "tarball": "http://registry.npmjs.org/vows-fluent/-/vows-fluent-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "88932ca8f4251b084a14b80b06d2ea7060b8fca9", + "tarball": "http://registry.npmjs.org/vows-fluent/-/vows-fluent-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "cfd8991c0f03b08d5282197a020e6a815aa1696e", + "tarball": "http://registry.npmjs.org/vows-fluent/-/vows-fluent-0.1.9.tgz" + }, + "0.1.10": { + "shasum": "3b4f459e3eaec63e0ea2750c8ad58be958013429", + "tarball": "http://registry.npmjs.org/vows-fluent/-/vows-fluent-0.1.10.tgz" + }, + "0.2.0": { + "shasum": "23a3d1779f93d8e0d66c31ec6bc758336724b6e3", + "tarball": "http://registry.npmjs.org/vows-fluent/-/vows-fluent-0.2.0.tgz" + } + }, + "keywords": [ + "vows", + "sugar", + "tdd", + "test", + "testing" + ], + "url": "http://registry.npmjs.org/vows-fluent/" + }, + "vows-is": { + "name": "vows-is", + "description": "A vows topic utility", + "dist-tags": { + "latest": "0.1.35" + }, + "maintainers": [ + { + "name": "raynos", + "email": "raynos2@gmail.com" + } + ], + "time": { + "modified": "2011-09-11T12:18:10.897Z", + "created": "2011-08-20T18:49:59.066Z", + "0.1.0": "2011-08-20T18:50:02.778Z", + "0.1.1": "2011-08-20T21:15:38.647Z", + "0.1.2": "2011-08-21T14:11:03.018Z", + "0.1.3": "2011-08-21T16:05:32.262Z", + "0.1.5": "2011-08-22T17:18:31.554Z", + "0.1.6": "2011-08-22T17:26:08.440Z", + "0.1.7": "2011-08-22T18:56:46.045Z", + "0.1.8": "2011-08-22T19:19:45.433Z", + "0.1.9": "2011-08-22T19:24:01.155Z", + "0.1.10": "2011-08-22T19:44:57.177Z", + "0.1.11": "2011-08-22T19:56:10.663Z", + "0.1.12": "2011-08-22T20:31:33.402Z", + "0.1.13": "2011-08-22T20:36:29.480Z", + "0.1.14": "2011-08-30T12:05:59.986Z", + "0.1.16": "2011-08-30T18:34:47.059Z", + "0.1.17": "2011-08-30T18:40:47.768Z", + "0.1.18": "2011-08-30T19:07:23.262Z", + "0.1.19": "2011-08-30T20:42:25.655Z", + "0.1.20": "2011-08-30T21:01:39.775Z", + "0.1.21": "2011-08-30T21:29:56.412Z", + "0.1.22": "2011-08-31T10:36:24.105Z", + "0.1.23": "2011-08-31T10:51:49.924Z", + "0.1.24": "2011-08-31T10:59:47.681Z", + "0.1.25": "2011-08-31T11:02:26.699Z", + "0.1.26": "2011-08-31T15:33:36.422Z", + "0.1.27": "2011-08-31T18:53:07.982Z", + "0.1.28": "2011-08-31T19:13:16.541Z", + "0.1.29": "2011-08-31T21:16:49.652Z", + "0.1.30": "2011-08-31T22:18:55.446Z", + "0.1.31": "2011-09-01T14:44:04.534Z", + "0.1.32": "2011-09-07T20:07:37.814Z", + "0.1.33": "2011-09-08T16:50:14.115Z", + "0.1.34": "2011-09-11T12:04:36.954Z", + "0.1.35": "2011-09-11T12:18:10.897Z" + }, + "author": { + "name": "Raynos", + "email": "raynos2@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Raynos/vows-is.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/vows-is/0.1.0", + "0.1.1": "http://registry.npmjs.org/vows-is/0.1.1", + "0.1.2": "http://registry.npmjs.org/vows-is/0.1.2", + "0.1.3": "http://registry.npmjs.org/vows-is/0.1.3", + "0.1.5": "http://registry.npmjs.org/vows-is/0.1.5", + "0.1.6": "http://registry.npmjs.org/vows-is/0.1.6", + "0.1.7": "http://registry.npmjs.org/vows-is/0.1.7", + "0.1.8": "http://registry.npmjs.org/vows-is/0.1.8", + "0.1.9": "http://registry.npmjs.org/vows-is/0.1.9", + "0.1.10": "http://registry.npmjs.org/vows-is/0.1.10", + "0.1.11": "http://registry.npmjs.org/vows-is/0.1.11", + "0.1.12": "http://registry.npmjs.org/vows-is/0.1.12", + "0.1.13": "http://registry.npmjs.org/vows-is/0.1.13", + "0.1.14": "http://registry.npmjs.org/vows-is/0.1.14", + "0.1.16": "http://registry.npmjs.org/vows-is/0.1.16", + "0.1.17": "http://registry.npmjs.org/vows-is/0.1.17", + "0.1.18": "http://registry.npmjs.org/vows-is/0.1.18", + "0.1.19": "http://registry.npmjs.org/vows-is/0.1.19", + "0.1.20": "http://registry.npmjs.org/vows-is/0.1.20", + "0.1.21": "http://registry.npmjs.org/vows-is/0.1.21", + "0.1.22": "http://registry.npmjs.org/vows-is/0.1.22", + "0.1.23": "http://registry.npmjs.org/vows-is/0.1.23", + "0.1.24": "http://registry.npmjs.org/vows-is/0.1.24", + "0.1.25": "http://registry.npmjs.org/vows-is/0.1.25", + "0.1.26": "http://registry.npmjs.org/vows-is/0.1.26", + "0.1.27": "http://registry.npmjs.org/vows-is/0.1.27", + "0.1.28": "http://registry.npmjs.org/vows-is/0.1.28", + "0.1.29": "http://registry.npmjs.org/vows-is/0.1.29", + "0.1.30": "http://registry.npmjs.org/vows-is/0.1.30", + "0.1.31": "http://registry.npmjs.org/vows-is/0.1.31", + "0.1.32": "http://registry.npmjs.org/vows-is/0.1.32", + "0.1.33": "http://registry.npmjs.org/vows-is/0.1.33", + "0.1.34": "http://registry.npmjs.org/vows-is/0.1.34", + "0.1.35": "http://registry.npmjs.org/vows-is/0.1.35" + }, + "dist": { + "0.1.0": { + "shasum": "f89e4d71ad6218e6ccf69f6bbd1e49d54d1cbd9c", + "tarball": "http://registry.npmjs.org/vows-is/-/vows-is-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "eeea076124edf00c4391b279c91e71a350d3f613", + "tarball": "http://registry.npmjs.org/vows-is/-/vows-is-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "5418785781d45fe02675afad6c4c50fb2d43bc6d", + "tarball": "http://registry.npmjs.org/vows-is/-/vows-is-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "f09e722e597e7109fa7f834cdf76ee614a06ddc2", + "tarball": "http://registry.npmjs.org/vows-is/-/vows-is-0.1.3.tgz" + }, + "0.1.5": { + "shasum": "04393ece52633d93521e6e43b3c8fb5cc7771d3e", + "tarball": "http://registry.npmjs.org/vows-is/-/vows-is-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "78d4db5ae65a71a8621a45dd0d960f1e22e420c0", + "tarball": "http://registry.npmjs.org/vows-is/-/vows-is-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "90f55bd1c24f6e7bf204e19ee75639a6c43d43c1", + "tarball": "http://registry.npmjs.org/vows-is/-/vows-is-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "80f9439b2dbaaa4b819ef0d5c4479459f8b666d4", + "tarball": "http://registry.npmjs.org/vows-is/-/vows-is-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "016b35373131ff81fb5c20582f4315182fe2d972", + "tarball": "http://registry.npmjs.org/vows-is/-/vows-is-0.1.9.tgz" + }, + "0.1.10": { + "shasum": "fe157784392388c69ee1f04aaa070dd220da5313", + "tarball": "http://registry.npmjs.org/vows-is/-/vows-is-0.1.10.tgz" + }, + "0.1.11": { + "shasum": "f61e1b66bb0e9c4d16687ea0d827bd08dcc233c4", + "tarball": "http://registry.npmjs.org/vows-is/-/vows-is-0.1.11.tgz" + }, + "0.1.12": { + "shasum": "3077bb11317106cbca1fb01ee80155bc2a63b102", + "tarball": "http://registry.npmjs.org/vows-is/-/vows-is-0.1.12.tgz" + }, + "0.1.13": { + "shasum": "9ba4871ab722874bd2047ec7b72f59c7ebd7b1da", + "tarball": "http://registry.npmjs.org/vows-is/-/vows-is-0.1.13.tgz" + }, + "0.1.14": { + "shasum": "15f548d47fa3ac11105425aeb33d7308d9607657", + "tarball": "http://registry.npmjs.org/vows-is/-/vows-is-0.1.14.tgz" + }, + "0.1.16": { + "shasum": "25b793bf8b0830050910a3ec1b9068eacbd9801b", + "tarball": "http://registry.npmjs.org/vows-is/-/vows-is-0.1.16.tgz" + }, + "0.1.17": { + "shasum": "d411e68fece299e06faf7ff476113590c1ec71df", + "tarball": "http://registry.npmjs.org/vows-is/-/vows-is-0.1.17.tgz" + }, + "0.1.18": { + "shasum": "864351a861bdfe8864e77f45d11f218dd8952d6d", + "tarball": "http://registry.npmjs.org/vows-is/-/vows-is-0.1.18.tgz" + }, + "0.1.19": { + "shasum": "f06b45f03122dc28578e8a25cd8d04b3c28be74c", + "tarball": "http://registry.npmjs.org/vows-is/-/vows-is-0.1.19.tgz" + }, + "0.1.20": { + "shasum": "4b30081e9957b107b75f51ab442a2c3511623b07", + "tarball": "http://registry.npmjs.org/vows-is/-/vows-is-0.1.20.tgz" + }, + "0.1.21": { + "shasum": "71685791e96b5cd985810555e33440579cdccb33", + "tarball": "http://registry.npmjs.org/vows-is/-/vows-is-0.1.21.tgz" + }, + "0.1.22": { + "shasum": "246705e179da7c9d735fbe5bd5c2eb845e723950", + "tarball": "http://registry.npmjs.org/vows-is/-/vows-is-0.1.22.tgz" + }, + "0.1.23": { + "shasum": "0595aafdf4aff914ac68691175fe0b17d5cbc358", + "tarball": "http://registry.npmjs.org/vows-is/-/vows-is-0.1.23.tgz" + }, + "0.1.24": { + "shasum": "d10ad6ebb74a7500e6206edec217ee7ddde5aaf6", + "tarball": "http://registry.npmjs.org/vows-is/-/vows-is-0.1.24.tgz" + }, + "0.1.25": { + "shasum": "29a0ac88e973c79f09c78be53ae6b261aad79c84", + "tarball": "http://registry.npmjs.org/vows-is/-/vows-is-0.1.25.tgz" + }, + "0.1.26": { + "shasum": "c647d9f9a7797fc3e6f0e09ea1bfc3ed296afbb2", + "tarball": "http://registry.npmjs.org/vows-is/-/vows-is-0.1.26.tgz" + }, + "0.1.27": { + "shasum": "081e632ac1c900a95b96bf750a269f9211f40092", + "tarball": "http://registry.npmjs.org/vows-is/-/vows-is-0.1.27.tgz" + }, + "0.1.28": { + "shasum": "11282220143bdaa04d080f1ca65a3c18663cf83e", + "tarball": "http://registry.npmjs.org/vows-is/-/vows-is-0.1.28.tgz" + }, + "0.1.29": { + "shasum": "f8d5df9b33aac7cfc48a2ba7aa3581aa237afad0", + "tarball": "http://registry.npmjs.org/vows-is/-/vows-is-0.1.29.tgz" + }, + "0.1.30": { + "shasum": "5d491efc07b8cade42af0641ffb750fdcc0bd7ae", + "tarball": "http://registry.npmjs.org/vows-is/-/vows-is-0.1.30.tgz" + }, + "0.1.31": { + "shasum": "97036d774de7c03ea82e3ac2275fd3578fe1c86d", + "tarball": "http://registry.npmjs.org/vows-is/-/vows-is-0.1.31.tgz" + }, + "0.1.32": { + "shasum": "9d7f084524264ae986922796178ba2bd9dd9083a", + "tarball": "http://registry.npmjs.org/vows-is/-/vows-is-0.1.32.tgz" + }, + "0.1.33": { + "shasum": "c7a02960665e7e7b8c88bc5656f87b4e0fba5455", + "tarball": "http://registry.npmjs.org/vows-is/-/vows-is-0.1.33.tgz" + }, + "0.1.34": { + "shasum": "f8e4d4426f3f4b484bba28766105bc176765e25c", + "tarball": "http://registry.npmjs.org/vows-is/-/vows-is-0.1.34.tgz" + }, + "0.1.35": { + "shasum": "e7a89f0b0312582555557c3cb280d219b9b639a4", + "tarball": "http://registry.npmjs.org/vows-is/-/vows-is-0.1.35.tgz" + } + }, + "keywords": [ + "vows", + "vows-fluent", + "tdd", + "test", + "testing" + ], + "url": "http://registry.npmjs.org/vows-is/" + }, + "voyeur": { + "name": "voyeur", + "description": "Voyeur.io server monitoring collection agents", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "damonoehlman", + "email": "damon.oehlman@sidelab.com" + } + ], + "time": { + "modified": "2011-08-31T12:12:02.913Z", + "created": "2011-08-31T10:38:27.961Z", + "0.0.1": "2011-08-31T10:38:49.623Z", + "0.0.2": "2011-08-31T12:12:02.913Z" + }, + "author": { + "name": "voyeur.io", + "email": "dev@voyeur.io" + }, + "repository": { + "type": "git", + "url": "git://github.com/voyeur-io/voyeur-collector.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/voyeur/0.0.1", + "0.0.2": "http://registry.npmjs.org/voyeur/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "b163d0d6be934dd400f09664f077b9425c5b12e3", + "tarball": "http://registry.npmjs.org/voyeur/-/voyeur-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "6dc71a561a9de05fd84118d78b935ce543f5aab3", + "tarball": "http://registry.npmjs.org/voyeur/-/voyeur-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/voyeur/" + }, + "vws.pubsub": { + "name": "vws.pubsub", + "description": "a pubsub system with bubbling and persistence", + "dist-tags": { + "latest": "0.4.1" + }, + "maintainers": [ + { + "name": "itsatony", + "email": "toni@linkcloud.org" + } + ], + "time": { + "modified": "2011-09-15T17:15:02.531Z", + "created": "2011-09-15T17:08:31.638Z", + "0.4.0": "2011-09-15T17:08:33.240Z", + "0.4.1": "2011-09-15T17:15:02.531Z" + }, + "author": { + "name": "Toni Wagner", + "email": "i@itsatony.com" + }, + "versions": { + "0.4.0": "http://registry.npmjs.org/vws.pubsub/0.4.0", + "0.4.1": "http://registry.npmjs.org/vws.pubsub/0.4.1" + }, + "dist": { + "0.4.0": { + "shasum": "36caa2e8c0c9b3a2cc3cc066bed5aee5ebcd0fa7", + "tarball": "http://registry.npmjs.org/vws.pubsub/-/vws.pubsub-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "8cd6658adacf89321ae3c71d8f4da53cd2a6790e", + "tarball": "http://registry.npmjs.org/vws.pubsub/-/vws.pubsub-0.4.1.tgz" + } + }, + "keywords": [ + "pubsub", + "events", + "publish", + "subscribe", + "bubbling", + "persistence", + "VisualWeb" + ], + "url": "http://registry.npmjs.org/vws.pubsub/" + }, + "wabtools": { + "name": "wabtools", + "description": "A place for various Node.js modules I've developed to ease Node.js development", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "billbarnhill", + "email": "w.a.barnhill@gmail.com" + } + ], + "time": { + "modified": "2011-07-03T01:19:06.383Z", + "created": "2011-07-02T20:08:51.427Z", + "0.0.1": "2011-07-02T20:08:51.575Z", + "0.0.2": "2011-07-03T00:53:26.622Z", + "0.0.3": "2011-07-03T01:19:06.383Z" + }, + "author": { + "name": "Bill Barnhill", + "email": "bill.barnhill@communitivity.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/isaacs/npm.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/wabtools/0.0.1", + "0.0.2": "http://registry.npmjs.org/wabtools/0.0.2", + "0.0.3": "http://registry.npmjs.org/wabtools/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "9ad91c6a905d3f20827f6f685757190d6007af85", + "tarball": "http://registry.npmjs.org/wabtools/-/wabtools-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "32eb9916e6390f4ac42e51e6f7ad7764aa132599", + "tarball": "http://registry.npmjs.org/wabtools/-/wabtools-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "6efef7e9a8d35110a721332dd7028bc8f2bea0c9", + "tarball": "http://registry.npmjs.org/wabtools/-/wabtools-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/wabtools/" + }, + "wadey-ranger": { + "name": "wadey-ranger", + "description": "wadey's fork of: A node.js library for interacting with Campfire", + "dist-tags": { + "latest": "0.3.5-noreconnect" + }, + "maintainers": [ + { + "name": "wadey", + "email": "wade@wades.im" + } + ], + "time": { + "modified": "2011-10-14T05:22:26.191Z", + "created": "2011-08-24T05:46:52.996Z", + "0.2.4": "2011-08-24T05:46:55.332Z", + "0.3.0": "2011-08-27T22:27:22.541Z", + "0.3.1": "2011-08-27T22:48:40.101Z", + "0.3.2": "2011-08-28T20:31:49.901Z", + "0.3.3": "2011-09-20T04:08:18.775Z", + "0.3.4": "2011-09-20T18:38:21.538Z", + "0.3.5": "2011-10-14T05:11:15.533Z", + "0.3.5-noreconnect": "2011-10-14T05:22:26.191Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/wadey/ranger.git" + }, + "versions": { + "0.2.4": "http://registry.npmjs.org/wadey-ranger/0.2.4", + "0.3.0": "http://registry.npmjs.org/wadey-ranger/0.3.0", + "0.3.1": "http://registry.npmjs.org/wadey-ranger/0.3.1", + "0.3.2": "http://registry.npmjs.org/wadey-ranger/0.3.2", + "0.3.3": "http://registry.npmjs.org/wadey-ranger/0.3.3", + "0.3.4": "http://registry.npmjs.org/wadey-ranger/0.3.4", + "0.3.5": "http://registry.npmjs.org/wadey-ranger/0.3.5", + "0.3.5-noreconnect": "http://registry.npmjs.org/wadey-ranger/0.3.5-noreconnect" + }, + "dist": { + "0.2.4": { + "shasum": "5f71485f8f2ab177b5bc906a4c1cbe1544962b41", + "tarball": "http://registry.npmjs.org/wadey-ranger/-/wadey-ranger-0.2.4.tgz" + }, + "0.3.0": { + "shasum": "9639a018f455ef30e87eeacb2999f21232e8f9de", + "tarball": "http://registry.npmjs.org/wadey-ranger/-/wadey-ranger-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "0aae154903e5134433a9b35868fbe6859bee9b63", + "tarball": "http://registry.npmjs.org/wadey-ranger/-/wadey-ranger-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "31231fe371c71c79c04b6f9798ba00ca37507b1e", + "tarball": "http://registry.npmjs.org/wadey-ranger/-/wadey-ranger-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "495bb34970a8b3ca9f4e563bcbbd8b864b90bd75", + "tarball": "http://registry.npmjs.org/wadey-ranger/-/wadey-ranger-0.3.3.tgz" + }, + "0.3.4": { + "shasum": "437530cc275c32e083526663f7c7b08be229f4c1", + "tarball": "http://registry.npmjs.org/wadey-ranger/-/wadey-ranger-0.3.4.tgz" + }, + "0.3.5": { + "shasum": "c6babd9d425d10128cefacc4c480a65278332bbf", + "tarball": "http://registry.npmjs.org/wadey-ranger/-/wadey-ranger-0.3.5.tgz" + }, + "0.3.5-noreconnect": { + "shasum": "27b7f4ad24c5003164a1ae0391c2053eb21fe714", + "tarball": "http://registry.npmjs.org/wadey-ranger/-/wadey-ranger-0.3.5-noreconnect.tgz" + } + }, + "keywords": [ + "campfire", + "chat", + "api" + ], + "url": "http://registry.npmjs.org/wadey-ranger/" + }, + "wagner": { + "name": "wagner", + "description": "Convention based Asychronous Modules", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "bmavity", + "email": "brian@brianmavity.com" + } + ], + "time": { + "modified": "2011-11-26T17:06:32.696Z", + "created": "2011-05-20T15:43:34.461Z", + "0.0.1": "2011-05-20T15:43:34.938Z", + "0.1.0": "2011-11-26T17:06:32.696Z" + }, + "author": { + "name": "Brian Mavity", + "email": "brian@brianmavity.com", + "url": "http://www.brianmavity.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/bmavity/wagner.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/wagner/0.0.1", + "0.1.0": "http://registry.npmjs.org/wagner/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "b809f44071d91a8a0dd67d4723f8f8a028650bba", + "tarball": "http://registry.npmjs.org/wagner/-/wagner-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "a7928997924d51c78b720063359dd74ed453a086", + "tarball": "http://registry.npmjs.org/wagner/-/wagner-0.1.0.tgz" + } + }, + "keywords": [ + "amd" + ], + "url": "http://registry.npmjs.org/wagner/" + }, + "wait": { + "name": "wait", + "description": "Simple utility functions to simplify setTimeout/setInterval", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "TrevorBurnham", + "email": "trevorburnham@gmail.com" + } + ], + "time": { + "modified": "2010-12-23T09:02:40.735Z", + "created": "2010-12-23T09:02:40.262Z", + "0.1.0": "2010-12-23T09:02:40.735Z" + }, + "author": { + "name": "Trevor Burnham" + }, + "repository": { + "type": "git", + "url": "http://github.com/TrevorBurnham/wait.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/wait/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "5d744bbe668e17f31b9bc26e7613b0e3a05b7d61", + "tarball": "http://registry.npmjs.org/wait/-/wait-0.1.0.tgz" + } + }, + "keywords": [ + "time", + "delay", + "repeat", + "interval", + "CoffeeScript" + ], + "url": "http://registry.npmjs.org/wait/" + }, + "waiter": { + "name": "waiter", + "description": "A simple way to wait for multiple asynchronous calls to return", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "marcello", + "email": "marcello@cellosoft.com" + } + ], + "time": { + "modified": "2011-04-13T01:31:03.772Z", + "created": "2011-04-11T03:39:16.944Z", + "0.1.0": "2011-04-11T03:39:17.062Z", + "0.1.1": "2011-04-13T01:31:03.772Z" + }, + "author": { + "name": "Marcello Bastéa-Forte", + "email": "marcello@cellosoft.com", + "url": "http://marcello.cellosoft.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/marcello3d/node-waiter.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/waiter/0.1.0", + "0.1.1": "http://registry.npmjs.org/waiter/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "e7b4067e7689e2bb2a02b4ec44e07ecc8bf5f4b7", + "tarball": "http://registry.npmjs.org/waiter/-/waiter-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "cf3c8b32f0a001c83ea15e3cf6b61c63d7ce0008", + "tarball": "http://registry.npmjs.org/waiter/-/waiter-0.1.1.tgz" + } + }, + "keywords": [ + "async", + "parallel", + "flow", + "asynchronous", + "flow-control", + "parallel" + ], + "url": "http://registry.npmjs.org/waiter/" + }, + "waitlist": { + "name": "waitlist", + "description": "Manage consumers standing in queue for resources.", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "repository": { + "type": "git", + "url": "http://github.com/substack/node-waitlist.git" + }, + "time": { + "modified": "2011-02-09T13:11:45.884Z", + "created": "2011-01-02T17:06:50.068Z", + "0.0.1": "2011-01-02T17:06:50.068Z", + "0.0.2": "2011-01-02T17:06:50.068Z", + "0.0.3": "2011-01-02T17:06:50.068Z", + "0.0.4": "2011-01-02T17:06:50.068Z", + "0.0.5": "2011-02-09T13:11:45.884Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/waitlist/0.0.1", + "0.0.2": "http://registry.npmjs.org/waitlist/0.0.2", + "0.0.3": "http://registry.npmjs.org/waitlist/0.0.3", + "0.0.4": "http://registry.npmjs.org/waitlist/0.0.4", + "0.0.5": "http://registry.npmjs.org/waitlist/0.0.5" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/waitlist/-/waitlist-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/waitlist/-/waitlist-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/waitlist/-/waitlist-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "13bfd541c7c73021f83134afacdaadbf12c67084", + "tarball": "http://registry.npmjs.org/waitlist/-/waitlist-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "b984342ca7e637999bc733280eff07b55e7ac4c4", + "tarball": "http://registry.npmjs.org/waitlist/-/waitlist-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/waitlist/" + }, + "wake_on_lan": { + "name": "wake_on_lan", + "description": "generate and send Wake-on-LAN packets", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "agnat", + "email": "david@artcom.de" + } + ], + "author": { + "name": "David Siegel", + "email": "david@artcom.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/agnat/node_wake_on_lan.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/wake_on_lan/0.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/wake_on_lan/-/wake_on_lan-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/wake_on_lan/" + }, + "walk": { + "name": "walk", + "description": "A node port of python's os.walk", + "dist-tags": { + "latest": "2.0.2", + "stable": "0.9.1" + }, + "maintainers": [ + { + "name": "coolaj86", + "email": "coolaj86@gmail.com" + } + ], + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com" + }, + "time": { + "modified": "2011-11-01T22:03:17.875Z", + "created": "2011-02-04T07:18:26.591Z", + "0.9.0": "2011-02-04T07:18:26.591Z", + "0.9.1": "2011-02-04T07:18:26.591Z", + "0.9.2": "2011-02-04T07:18:26.591Z", + "1.0.0": "2011-02-04T07:18:26.591Z", + "1.0.1": "2011-02-04T07:18:26.591Z", + "1.0.2": "2011-02-04T07:26:21.031Z", + "1.0.4": "2011-02-04T07:28:53.801Z", + "1.0.5": "2011-02-04T07:56:26.101Z", + "2.0.0": "2011-05-03T22:39:55.308Z", + "2.0.1": "2011-07-28T13:46:22.912Z", + "2.0.2": "2011-11-01T22:03:17.875Z" + }, + "versions": { + "0.9.0": "http://registry.npmjs.org/walk/0.9.0", + "0.9.1": "http://registry.npmjs.org/walk/0.9.1", + "0.9.2": "http://registry.npmjs.org/walk/0.9.2", + "1.0.0": "http://registry.npmjs.org/walk/1.0.0", + "1.0.1": "http://registry.npmjs.org/walk/1.0.1", + "1.0.2": "http://registry.npmjs.org/walk/1.0.2", + "1.0.4": "http://registry.npmjs.org/walk/1.0.4", + "1.0.5": "http://registry.npmjs.org/walk/1.0.5", + "2.0.0": "http://registry.npmjs.org/walk/2.0.0", + "2.0.1": "http://registry.npmjs.org/walk/2.0.1", + "2.0.2": "http://registry.npmjs.org/walk/2.0.2" + }, + "dist": { + "0.9.0": { + "tarball": "http://registry.npmjs.org/walk/-/walk-0.9.0.tgz" + }, + "0.9.1": { + "tarball": "http://registry.npmjs.org/walk/-/walk-0.9.1.tgz" + }, + "0.9.2": { + "tarball": "http://registry.npmjs.org/walk/-/walk-0.9.2.tgz" + }, + "1.0.0": { + "tarball": "http://registry.npmjs.org/walk/-/walk-1.0.0.tgz" + }, + "1.0.1": { + "tarball": "http://registry.npmjs.org/walk/-/walk-1.0.1.tgz" + }, + "1.0.2": { + "tarball": "http://registry.npmjs.org/walk/-/walk-1.0.2.tgz" + }, + "1.0.4": { + "tarball": "http://registry.npmjs.org/walk/-/walk-1.0.4.tgz" + }, + "1.0.5": { + "tarball": "http://registry.npmjs.org/walk/-/walk-1.0.5.tgz" + }, + "2.0.0": { + "shasum": "6d21c1310444226a8b0957c9a4a397e8d721000e", + "tarball": "http://registry.npmjs.org/walk/-/walk-2.0.0.tgz" + }, + "2.0.1": { + "shasum": "0d98704f99b2b8815ccf7186ed12cf4813cecd7e", + "tarball": "http://registry.npmjs.org/walk/-/walk-2.0.1.tgz" + }, + "2.0.2": { + "shasum": "135c7ae8a05832dd90a58b14da44664f7e1fc117", + "tarball": "http://registry.npmjs.org/walk/-/walk-2.0.2.tgz" + } + }, + "keywords": [ + "util", + "os", + "sys", + "fs", + "walk", + "walkSync" + ], + "url": "http://registry.npmjs.org/walk/" + }, + "walker": { + "name": "walker", + "description": "A simple directory tree walker.", + "dist-tags": { + "latest": "1.0.3" + }, + "maintainers": [ + { + "name": "naitik", + "email": "n@daaku.org" + } + ], + "author": { + "name": "Naitik Shah", + "email": "n@daaku.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/nshah/nodejs-walker.git" + }, + "time": { + "modified": "2011-08-17T21:07:44.294Z", + "created": "2011-02-25T03:14:27.035Z", + "0.0.1": "2011-02-25T03:14:27.035Z", + "0.0.3": "2011-02-25T03:14:27.035Z", + "0.0.4": "2011-04-18T02:16:54.498Z", + "1.0.0": "2011-07-24T19:45:54.486Z", + "1.0.1": "2011-07-24T19:53:40.513Z", + "1.0.2": "2011-07-27T17:41:46.799Z", + "1.0.3": "2011-08-17T21:07:44.294Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/walker/0.0.1", + "0.0.3": "http://registry.npmjs.org/walker/0.0.3", + "0.0.4": "http://registry.npmjs.org/walker/0.0.4", + "1.0.0": "http://registry.npmjs.org/walker/1.0.0", + "1.0.1": "http://registry.npmjs.org/walker/1.0.1", + "1.0.2": "http://registry.npmjs.org/walker/1.0.2", + "1.0.3": "http://registry.npmjs.org/walker/1.0.3" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/walker/-/walker-0.0.1.tgz" + }, + "0.0.3": { + "shasum": "ea65527ddb4c208a78a0a38af9e546661146b4ad", + "tarball": "http://registry.npmjs.org/walker/-/walker-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "05e0e7554d3c2b4780ba7b4dbab005dc04fd956f", + "tarball": "http://registry.npmjs.org/walker/-/walker-0.0.4.tgz" + }, + "1.0.0": { + "shasum": "a88298c29997ccca7854bc3503a0fe5a82e4086d", + "tarball": "http://registry.npmjs.org/walker/-/walker-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "76af7f844ed64f712bd8fbb9c430cea0b095e08b", + "tarball": "http://registry.npmjs.org/walker/-/walker-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "b623aa49b1fc88303f6e16dbea69e53b1550f19a", + "tarball": "http://registry.npmjs.org/walker/-/walker-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "5e6802d473533e769db74b54e8d5dbdf94a773a2", + "tarball": "http://registry.npmjs.org/walker/-/walker-1.0.3.tgz" + } + }, + "keywords": [ + "utils", + "fs", + "filesystem" + ], + "url": "http://registry.npmjs.org/walker/" + }, + "warp": { + "name": "warp", + "description": "Jump right to where you want to be. Easy Web Crawling in JavaScript", + "dist-tags": { + "latest": "0.1.5" + }, + "maintainers": [ + { + "name": "camwest", + "email": "cameron@bigbangtechnology.com" + } + ], + "time": { + "modified": "2011-08-06T19:28:21.480Z", + "created": "2011-07-23T22:37:46.750Z", + "0.0.1": "2011-07-23T22:37:46.887Z", + "0.0.2": "2011-07-23T22:50:02.720Z", + "0.0.3": "2011-07-23T22:53:12.357Z", + "0.1.0": "2011-08-03T22:39:48.556Z", + "0.1.1": "2011-08-03T22:49:52.070Z", + "0.1.2": "2011-08-03T22:53:56.482Z", + "0.1.3": "2011-08-03T23:30:04.560Z", + "0.1.4": "2011-08-04T01:55:05.753Z", + "0.1.5": "2011-08-06T19:28:21.480Z" + }, + "author": { + "name": "Big Bang Technology" + }, + "repository": { + "type": "git", + "url": "git://github.com/bigbangtechnology/warp.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/warp/0.0.1", + "0.0.2": "http://registry.npmjs.org/warp/0.0.2", + "0.0.3": "http://registry.npmjs.org/warp/0.0.3", + "0.1.0": "http://registry.npmjs.org/warp/0.1.0", + "0.1.1": "http://registry.npmjs.org/warp/0.1.1", + "0.1.2": "http://registry.npmjs.org/warp/0.1.2", + "0.1.3": "http://registry.npmjs.org/warp/0.1.3", + "0.1.4": "http://registry.npmjs.org/warp/0.1.4", + "0.1.5": "http://registry.npmjs.org/warp/0.1.5" + }, + "dist": { + "0.0.1": { + "shasum": "86f1648e6cdcdb1a7dc4528fef47c307c0dbfc9c", + "tarball": "http://registry.npmjs.org/warp/-/warp-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "5e65011cfe02a90c0e8e259ab25aa67756edfde9", + "tarball": "http://registry.npmjs.org/warp/-/warp-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "73e5a1bb8f588fe10f44d1f76e5e246e4b441762", + "tarball": "http://registry.npmjs.org/warp/-/warp-0.0.3.tgz" + }, + "0.1.0": { + "shasum": "0567f307e1d0df3b678c38b76750e159bb51da49", + "tarball": "http://registry.npmjs.org/warp/-/warp-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "03b4cf9448c82ac5307c481d08bde70ee971aa06", + "tarball": "http://registry.npmjs.org/warp/-/warp-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "85fe9550b71be2ee40b02a0876fedf9c5a0445be", + "tarball": "http://registry.npmjs.org/warp/-/warp-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "52c8ea8e33bd08354699d63ab19fdc70ca486642", + "tarball": "http://registry.npmjs.org/warp/-/warp-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "f5f2061599e86f5563f843c3deca2382244e3d16", + "tarball": "http://registry.npmjs.org/warp/-/warp-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "252741fd1edc13b4e81137ebbc07e8d9de8cd28a", + "tarball": "http://registry.npmjs.org/warp/-/warp-0.1.5.tgz" + } + }, + "keywords": [ + "crawling", + "scraping", + "http", + "https" + ], + "url": "http://registry.npmjs.org/warp/" + }, + "wasp-web": { + "name": "wasp-web", + "description": "NodeJS extensible monitoring solution for cloud servers, processes and applications", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "robink", + "email": "robin.komiwes@gmail.com" + }, + { + "name": "maximebrazeilles", + "email": "maxime.brazeilles@gmail.com" + }, + { + "name": "maximeb", + "email": "maxime.brazeilles@gmail.com" + } + ], + "time": { + "modified": "2011-10-04T12:51:54.469Z", + "created": "2011-09-29T14:19:48.460Z", + "0.1.0": "2011-09-29T14:19:49.221Z", + "0.1.1": "2011-09-29T14:49:23.373Z", + "0.1.2": "2011-09-29T14:56:47.668Z", + "0.1.3": "2011-10-04T12:48:58.174Z" + }, + "repository": { + "type": "git", + "url": "git@github.com:nectify/wasp.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/wasp-web/0.1.0", + "0.1.1": "http://registry.npmjs.org/wasp-web/0.1.1", + "0.1.2": "http://registry.npmjs.org/wasp-web/0.1.2", + "0.1.3": "http://registry.npmjs.org/wasp-web/0.1.3" + }, + "dist": { + "0.1.0": { + "shasum": "9a42ec450f35bbc7484c3b1e9d02df0785ab1e73", + "tarball": "http://registry.npmjs.org/wasp-web/-/wasp-web-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "f1e4e7f06d628d3baafe071996ea48180421370c", + "tarball": "http://registry.npmjs.org/wasp-web/-/wasp-web-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "ebf5661f03166dfa0ba3d82c9aebb8879a85b2ae", + "tarball": "http://registry.npmjs.org/wasp-web/-/wasp-web-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "17b715153e82d93eaa1f542d1d918659c07bd81e", + "tarball": "http://registry.npmjs.org/wasp-web/-/wasp-web-0.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/wasp-web/" + }, + "wasp-worker": { + "name": "wasp-worker", + "description": "Wasp daemon to be installed on each monitored host. Has to be used with wasp monitoring tool/", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "maximeb", + "email": "maxime.brazeilles@gmail.com" + }, + { + "name": "robink", + "email": "robin.komiwes@gmail.com" + } + ], + "time": { + "modified": "2011-10-04T12:51:11.046Z", + "created": "2011-09-29T08:46:34.891Z", + "0.1.0": "2011-09-29T08:46:35.791Z", + "0.1.1": "2011-10-03T15:01:49.564Z", + "0.1.2": "2011-10-03T16:10:19.661Z", + "0.1.3": "2011-10-04T08:10:20.358Z" + }, + "repository": { + "type": "git", + "url": "git@github.com:nectify/wasp-worker.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/wasp-worker/0.1.0", + "0.1.1": "http://registry.npmjs.org/wasp-worker/0.1.1", + "0.1.2": "http://registry.npmjs.org/wasp-worker/0.1.2", + "0.1.3": "http://registry.npmjs.org/wasp-worker/0.1.3" + }, + "dist": { + "0.1.0": { + "shasum": "c03d694b27324f4f9a6ac73c5348e0753221720b", + "tarball": "http://registry.npmjs.org/wasp-worker/-/wasp-worker-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "1ebe22c455cb254dcb5826454d689720faf97322", + "tarball": "http://registry.npmjs.org/wasp-worker/-/wasp-worker-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "81071b37bedf39318bf1325eb1ee425f9112620e", + "tarball": "http://registry.npmjs.org/wasp-worker/-/wasp-worker-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "ee2467014ac0f367d73943ae060eff4e90ee3895", + "tarball": "http://registry.npmjs.org/wasp-worker/-/wasp-worker-0.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/wasp-worker/" + }, + "watch": { + "name": "watch", + "description": "Utilities for watching file trees.", + "dist-tags": { + "latest": "0.5.0" + }, + "maintainers": [ + { + "name": "mikeal", + "email": "mikeal.rogers@gmail.com" + } + ], + "author": { + "name": "Mikeal Rogers", + "email": "mikeal.rogers@gmail.com" + }, + "time": { + "modified": "2011-12-07T18:18:02.809Z", + "created": "2011-01-03T00:41:15.407Z", + "0.1.0": "2011-01-03T00:41:15.407Z", + "0.2.0": "2011-01-03T00:41:15.407Z", + "0.2.1": "2011-01-03T00:41:15.407Z", + "0.3.0": "2011-01-03T00:41:15.407Z", + "0.3.1": "2011-02-22T06:49:29.718Z", + "0.3.2": "2011-05-18T21:23:43.722Z", + "0.3.3": "2011-09-22T15:29:07.687Z", + "0.4.0": "2011-10-22T15:57:06.524Z", + "0.5.0": "2011-12-07T18:18:02.809Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/mikeal/watch.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/watch/0.1.0", + "0.2.0": "http://registry.npmjs.org/watch/0.2.0", + "0.2.1": "http://registry.npmjs.org/watch/0.2.1", + "0.3.0": "http://registry.npmjs.org/watch/0.3.0", + "0.3.1": "http://registry.npmjs.org/watch/0.3.1", + "0.3.2": "http://registry.npmjs.org/watch/0.3.2", + "0.3.3": "http://registry.npmjs.org/watch/0.3.3", + "0.4.0": "http://registry.npmjs.org/watch/0.4.0", + "0.5.0": "http://registry.npmjs.org/watch/0.5.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/watch/-/watch-0.1.0.tgz" + }, + "0.2.0": { + "tarball": "http://packages:5984/watch/-/watch-0.2.0.tgz" + }, + "0.2.1": { + "tarball": "http://packages:5984/watch/-/watch-0.2.1.tgz" + }, + "0.3.0": { + "tarball": "http://registry.npmjs.org/watch/-/watch@0.3.0.tgz" + }, + "0.3.1": { + "shasum": "6da7994c24a8b65da81da18a323123d5abf5086f", + "tarball": "http://registry.npmjs.org/watch/-/watch-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "562b93754f6d1e138e782da361f570b32ce2b7a6", + "tarball": "http://registry.npmjs.org/watch/-/watch-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "2aa776716ed463464dbaa2c2e4f9c6aca1e2fa3c", + "tarball": "http://registry.npmjs.org/watch/-/watch-0.3.3.tgz" + }, + "0.4.0": { + "shasum": "06ee70e1627f0523dccbb3d3760ab54520a5b121", + "tarball": "http://registry.npmjs.org/watch/-/watch-0.4.0.tgz" + }, + "0.5.0": { + "shasum": "1eb1399b3420960127431efa646b718da146d37f", + "tarball": "http://registry.npmjs.org/watch/-/watch-0.5.0.tgz" + } + }, + "url": "http://registry.npmjs.org/watch/" + }, + "watch_dir": { + "name": "watch_dir", + "description": "Watch for file changes in specific directory", + "dist-tags": { + "latest": "0.6.0" + }, + "maintainers": [ + { + "name": "kossnocorp", + "email": "kossnocorp@gmail.com" + } + ], + "time": { + "modified": "2011-01-01T15:21:56.986Z", + "created": "2010-12-30T18:45:27.278Z", + "0.5.0": "2010-12-30T18:45:27.966Z", + "0.6.0": "2011-01-01T15:21:56.986Z" + }, + "author": { + "name": "Sasha Koss", + "email": "kossnocorp@gmail.com", + "url": "http://koss.nocorp.me/" + }, + "repository": { + "type": "git", + "url": "https://kossnocorp@github.com/kossnocorp/watch_dir.js.git" + }, + "versions": { + "0.5.0": "http://registry.npmjs.org/watch_dir/0.5.0", + "0.6.0": "http://registry.npmjs.org/watch_dir/0.6.0" + }, + "dist": { + "0.5.0": { + "shasum": "d7df81d70767bf7af1b8590fe9a1a296dbe14446", + "tarball": "http://registry.npmjs.org/watch_dir/-/watch_dir-0.5.0.tgz" + }, + "0.6.0": { + "shasum": "f94c383045e32208fb3e4e346f3dc5b43c6f15ef", + "tarball": "http://registry.npmjs.org/watch_dir/-/watch_dir-0.6.0.tgz" + } + }, + "keywords": [ + "watch", + "dir", + "monitor", + "fs" + ], + "url": "http://registry.npmjs.org/watch_dir/" + }, + "watch_r": { + "name": "watch_r", + "description": "", + "dist-tags": { + "latest": "0.0.2" + }, + "readme": "## Features\n\n- recursively watch files\n- **watch new dirs/files that have been added to any watched directory** \n- ability to ignore files with `.ignorewatch` including list of files to ignore (similar to `.gitignore`). Use `*` to ignore all files in `.ignorewatch` directory. \n\n## Installation\n\n\tnpm install watch_r\n\n````javascript \n \nvar watch_r = require('watch_r');\n\nwatch_r('/path/to/file', function(watcher) {\n\t\n\twatcher.on('change', function() {\n\t\t//do stuff\n\t})\n})\n\n```` \n\n", + "maintainers": [ + { + "name": "architectd", + "email": "craig.j.condon@gmail.com" + } + ], + "time": { + "modified": "2011-11-30T18:55:14.624Z", + "created": "2011-11-15T18:31:31.027Z", + "0.0.1": "2011-11-15T18:31:32.280Z", + "0.0.2": "2011-11-30T18:55:14.624Z" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/watch_r/0.0.1", + "0.0.2": "http://registry.npmjs.org/watch_r/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "16bd19ff6a7bf3246645f20aaf4adefa745a76bc", + "tarball": "http://registry.npmjs.org/watch_r/-/watch_r-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "eb40a0690c662558813f94e592274173f02e582b", + "tarball": "http://registry.npmjs.org/watch_r/-/watch_r-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/watch_r/" + }, + "watch-less": { + "name": "watch-less", + "description": "Watches your .less files recursively and auto-compiles them.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "jgreene", + "email": "justin.j.greene@gmail.com" + } + ], + "time": { + "modified": "2011-09-14T00:34:21.878Z", + "created": "2011-09-13T23:24:51.016Z", + "0.0.1": "2011-09-13T23:24:51.314Z", + "0.0.2": "2011-09-14T00:34:21.878Z" + }, + "author": { + "name": "Justin Greene", + "email": "justin.j.greene@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/jgreene/watch-less.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/watch-less/0.0.1", + "0.0.2": "http://registry.npmjs.org/watch-less/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "dee3ad0a5612bb7409eb85e56c3a957237dd28fc", + "tarball": "http://registry.npmjs.org/watch-less/-/watch-less-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "2a5166ace6a705b5d6feec8c2d8b682e64925bde", + "tarball": "http://registry.npmjs.org/watch-less/-/watch-less-0.0.2.tgz" + } + }, + "keywords": [ + "less", + "css", + "watch" + ], + "url": "http://registry.npmjs.org/watch-less/" + }, + "watch-node": { + "name": "watch-node", + "description": "Simple fsevents wrapper for node", + "dist-tags": { + "latest": "0.1.5" + }, + "maintainers": [ + { + "name": "viatropos", + "email": "lancejpollard@gmail.com" + } + ], + "time": { + "modified": "2011-11-08T08:23:35.178Z", + "created": "2011-11-01T23:19:59.311Z", + "0.1.0": "2011-11-01T23:19:59.837Z", + "0.1.5": "2011-11-08T08:23:35.178Z" + }, + "author": { + "name": "Lance Pollard", + "email": "lancejpollard@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/viatropos/watch-node.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/watch-node/0.1.0", + "0.1.5": "http://registry.npmjs.org/watch-node/0.1.5" + }, + "dist": { + "0.1.0": { + "shasum": "3c050ea957cbdb52f2e3466af91cb15763fe2e44", + "tarball": "http://registry.npmjs.org/watch-node/-/watch-node-0.1.0.tgz" + }, + "0.1.5": { + "shasum": "8dd5e846367557ff0d4caff9d38d5eb123c4cf9c", + "tarball": "http://registry.npmjs.org/watch-node/-/watch-node-0.1.5.tgz" + } + }, + "keywords": [ + "file system", + "compression", + "node" + ], + "url": "http://registry.npmjs.org/watch-node/" + }, + "watch-tree": { + "name": "watch-tree", + "description": "Yet another library for watching FS trees. Includes a JSON-on-stdout command-line tool and {filePreexisted,allPreexistingFilesReported} events.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "andrewschaaf", + "email": "andrew@andrewschaaf.com" + } + ], + "time": { + "modified": "2011-04-13T14:25:34.595Z", + "created": "2011-01-14T19:40:00.792Z", + "0.1.0": "2011-01-14T19:40:00.943Z", + "0.1.1": "2011-04-13T14:25:34.595Z" + }, + "author": { + "name": "Andrew Schaaf", + "email": "andrew@andrewschaaf.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/tafa/node-watch-tree.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/watch-tree/0.1.0", + "0.1.1": "http://registry.npmjs.org/watch-tree/0.1.1" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/watch-tree/-/watch-tree-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "d230ed253eaaa253b5664f4eb56d5aa8637404e7", + "tarball": "http://registry.npmjs.org/watch-tree/-/watch-tree-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/watch-tree/" + }, + "watch.js": { + "name": "watch.js", + "description": "A script and stylesheet reloader. Less browser refreshing.", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "markmarkoh", + "email": "markmarkoh@gmail.com" + } + ], + "time": { + "modified": "2011-07-26T06:09:08.017Z", + "created": "2011-07-25T03:29:40.357Z", + "0.0.1": "2011-07-25T03:29:40.677Z", + "0.0.2": "2011-07-25T03:41:08.034Z", + "0.0.3": "2011-07-26T05:09:08.665Z", + "0.0.4": "2011-07-26T05:47:26.458Z", + "0.0.5": "2011-07-26T06:09:08.017Z" + }, + "author": { + "name": "Mark DiMarco", + "url": "@markmarkoh" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/watch.js/0.0.1", + "0.0.2": "http://registry.npmjs.org/watch.js/0.0.2", + "0.0.3": "http://registry.npmjs.org/watch.js/0.0.3", + "0.0.4": "http://registry.npmjs.org/watch.js/0.0.4", + "0.0.5": "http://registry.npmjs.org/watch.js/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "6dafa135327a51a0f24d889b677d2de19d8c8004", + "tarball": "http://registry.npmjs.org/watch.js/-/watch.js-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "94cdf8fc28b48b1b41ae6e014b27afa2f8c14790", + "tarball": "http://registry.npmjs.org/watch.js/-/watch.js-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "aaa1a4a5af9056f96dd44d7acdfb098dc3eb4e6a", + "tarball": "http://registry.npmjs.org/watch.js/-/watch.js-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "22b216fc0950de7e5aedc411d2abe8a20fad93c2", + "tarball": "http://registry.npmjs.org/watch.js/-/watch.js-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "77b018e38ebd35e097f0b6d3b7a0a6df5fdfa1fd", + "tarball": "http://registry.npmjs.org/watch.js/-/watch.js-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/watch.js/" + }, + "watchable": { + "name": "watchable", + "description": "Watchable Event Extension", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "ckudige", + "email": "npm@kudige.com" + } + ], + "time": { + "modified": "2011-05-24T06:32:30.893Z", + "created": "2011-05-24T06:32:29.976Z", + "0.0.1": "2011-05-24T06:32:30.893Z" + }, + "repository": { + "type": "git", + "url": "git@github.com:kudige/watchable.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/watchable/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "818084dcd2ece8da5eb6f876da8ba170dff48905", + "tarball": "http://registry.npmjs.org/watchable/-/watchable-0.0.1.tgz" + } + }, + "keywords": [ + "event", + "evented i/o", + "unhandled events", + "watchable" + ], + "url": "http://registry.npmjs.org/watchable/" + }, + "watchersto": { + "name": "watchersto", + "description": "Fetch a github projects watchers and exports them to either json, csv or vcf formats", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "balupton", + "email": "b@lupton.cc" + } + ], + "time": { + "modified": "2011-04-15T04:33:18.637Z", + "created": "2011-04-15T04:23:20.541Z", + "0.1.0": "2011-04-15T04:23:21.893Z", + "0.1.1": "2011-04-15T04:33:18.637Z" + }, + "author": { + "name": "Benjamin Lupton", + "email": "b@lupton.cc", + "url": "http://balupton.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/balupton/watchersto.npm.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/watchersto/0.1.0", + "0.1.1": "http://registry.npmjs.org/watchersto/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "4d5451bbffcba9d002542532552a6007b542bd20", + "tarball": "http://registry.npmjs.org/watchersto/-/watchersto-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "a71995073a08fe15b2d810ecc57b7f119052ade0", + "tarball": "http://registry.npmjs.org/watchersto/-/watchersto-0.1.1.tgz" + } + }, + "keywords": [ + "github", + "email", + "watchers", + "newsletter", + "mail", + "campaign", + "csv", + "vcard" + ], + "url": "http://registry.npmjs.org/watchersto/" + }, + "watchit": { + "name": "watchit", + "description": "A sensible wrapper around fs.watch", + "dist-tags": { + "latest": "0.0.2" + }, + "readme": null, + "maintainers": [ + { + "name": "TrevorBurnham", + "email": "trevorburnham@gmail.com" + } + ], + "time": { + "modified": "2011-11-23T21:28:02.850Z", + "created": "2011-11-18T21:44:00.315Z", + "0.0.1": "2011-11-18T21:44:00.746Z", + "0.0.2": "2011-11-23T21:28:02.850Z" + }, + "author": { + "name": "Trevor Burnham", + "url": "http://trevorburnham.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/TrevorBurnham/Watchit.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/watchit/0.0.1", + "0.0.2": "http://registry.npmjs.org/watchit/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "4430955c7f32dbf5d4300db2f6b6fe53684e2c47", + "tarball": "http://registry.npmjs.org/watchit/-/watchit-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "19b09506a8f1ef381029e5943b27d9a2575bd67a", + "tarball": "http://registry.npmjs.org/watchit/-/watchit-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/watchit/" + }, + "watchman": { + "name": "watchman", + "description": "A simple utility to watch files/directories and perform an action when they change.", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "dfjones", + "email": "doug@dfjones.net" + } + ], + "time": { + "modified": "2011-07-20T04:08:55.128Z", + "created": "2011-04-13T03:31:39.632Z", + "0.1.0": "2011-04-13T03:31:39.769Z", + "0.1.1": "2011-04-13T18:41:53.968Z", + "0.1.2": "2011-04-14T21:36:16.007Z", + "0.1.3": "2011-04-14T21:43:07.680Z", + "0.1.4": "2011-07-20T04:08:55.128Z" + }, + "author": { + "name": "Doug Jones", + "email": "doug@dfjones.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/dfjones/watchman.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/watchman/0.1.0", + "0.1.1": "http://registry.npmjs.org/watchman/0.1.1", + "0.1.2": "http://registry.npmjs.org/watchman/0.1.2", + "0.1.3": "http://registry.npmjs.org/watchman/0.1.3", + "0.1.4": "http://registry.npmjs.org/watchman/0.1.4" + }, + "dist": { + "0.1.0": { + "shasum": "55e158542df6097b30f231d16bcefa7133c77a7b", + "tarball": "http://registry.npmjs.org/watchman/-/watchman-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "3c2691c5a0ca93302340d8ae39704fa31f741216", + "tarball": "http://registry.npmjs.org/watchman/-/watchman-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "27911d85a312cb7413e80c20a37e89743d520029", + "tarball": "http://registry.npmjs.org/watchman/-/watchman-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "2b2cd27f3386f52d393b8f228c78b6a7881ebe8d", + "tarball": "http://registry.npmjs.org/watchman/-/watchman-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "2ceb4f54d47f3548c6af5b42f96762087b8b8015", + "tarball": "http://registry.npmjs.org/watchman/-/watchman-0.1.4.tgz" + } + }, + "keywords": [ + "file", + "filesystem", + "change", + "command line" + ], + "url": "http://registry.npmjs.org/watchman/" + }, + "watchn": { + "name": "watchn", + "description": "Intelligently auto execute tasks on file/directory changes", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "mkitt", + "email": "mk.kitt@gmail.com" + } + ], + "time": { + "modified": "2011-09-19T06:05:27.385Z", + "created": "2011-04-22T05:05:22.084Z", + "0.0.5": "2011-04-22T05:05:22.415Z", + "0.0.6": "2011-04-24T07:31:26.624Z", + "0.0.7": "2011-04-24T19:45:21.577Z", + "0.0.8": "2011-04-25T17:37:49.849Z", + "0.0.9": "2011-08-21T08:04:49.040Z", + "0.1.0": "2011-08-21T22:19:25.013Z", + "0.1.1": "2011-09-19T06:05:27.385Z" + }, + "author": { + "name": "Matthew Kitt", + "email": "mk.kitt@gmail.com", + "url": "http://mkitt.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/mkitt/watchn.git" + }, + "versions": { + "0.0.5": "http://registry.npmjs.org/watchn/0.0.5", + "0.0.6": "http://registry.npmjs.org/watchn/0.0.6", + "0.0.7": "http://registry.npmjs.org/watchn/0.0.7", + "0.0.8": "http://registry.npmjs.org/watchn/0.0.8", + "0.0.9": "http://registry.npmjs.org/watchn/0.0.9", + "0.1.0": "http://registry.npmjs.org/watchn/0.1.0", + "0.1.1": "http://registry.npmjs.org/watchn/0.1.1" + }, + "dist": { + "0.0.5": { + "shasum": "b728f8bc107296eabbe7d8c6bc79e21bac285b8a", + "tarball": "http://registry.npmjs.org/watchn/-/watchn-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "ef5f84aeb188f7cc9c2952342eea84360faaa77c", + "tarball": "http://registry.npmjs.org/watchn/-/watchn-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "33f121e54716fe43931dede8e76e77ca7d4ac82c", + "tarball": "http://registry.npmjs.org/watchn/-/watchn-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "d53fd12aaed72aa0c84c879fc15d8ac0168eae79", + "tarball": "http://registry.npmjs.org/watchn/-/watchn-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "c2e69ec9639b43d40cac3858288ecfb2db0eed08", + "tarball": "http://registry.npmjs.org/watchn/-/watchn-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "80582e4a9e51cb1cd63ea8c8dc1fb2d062e014e2", + "tarball": "http://registry.npmjs.org/watchn/-/watchn-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "c7ed5144cfee082836b69c250590377c73519523", + "tarball": "http://registry.npmjs.org/watchn/-/watchn-0.1.1.tgz" + } + }, + "keywords": [ + "development tool", + "watch", + "notify", + "dev", + "development", + "reporter", + "test" + ], + "url": "http://registry.npmjs.org/watchn/" + }, + "watchr": { + "name": "watchr", + "description": "Node.js watching library, as all the other ones suck.", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "## Watchr. Node.js file watching that doesn't suck.\n\nWatchr is simple, you call `require('watchr').watch(path,function(){console.log('something changed inside the directory')})`\n\nTo install `npm install watchr`\n\nIt works with node.js 0.4, 0.5 and 0.6. It will use `fs.watchFile` if available, otherwise it will use `fs.watch` (e.g. windows support).\n\nThe `fs.watch` functionality is currently quite buggy - node.js returns segmentation faults here and there, but that is due to bugs in node.js. Sigh. Anyway, Enjoy.\n\n\n## License\n\nLicensed under the [MIT License](http://creativecommons.org/licenses/MIT/)\nCopyright 2011 [Benjamin Arthur Lupton](http://balupton.com)", + "maintainers": [ + { + "name": "balupton", + "email": "b@lupton.cc" + } + ], + "time": { + "modified": "2011-11-13T11:53:57.126Z", + "created": "2011-11-13T11:53:53.166Z", + "0.1.0": "2011-11-13T11:53:57.126Z" + }, + "author": { + "name": "Benjamin Lupton", + "email": "b@lupton.cc", + "url": "http://balupton.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/balupton/watchr.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/watchr/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "f9533dc60d942b0bb5b68e098aedfc4d2d75a8cb", + "tarball": "http://registry.npmjs.org/watchr/-/watchr-0.1.0.tgz" + } + }, + "keywords": [ + "watching", + "watch", + "files", + "directories", + "smart" + ], + "url": "http://registry.npmjs.org/watchr/" + }, + "wave": { + "name": "wave", + "description": "Wave Gadget API implementation", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "scottbw", + "email": "scott.bradley.wilson@gmail.com" + } + ], + "time": { + "modified": "2011-07-22T21:03:02.527Z", + "created": "2011-03-10T12:17:21.386Z", + "0.1.0": "2011-03-10T12:17:21.831Z", + "0.2.0": "2011-03-11T10:38:25.905Z", + "0.2.2": "2011-07-22T21:03:02.527Z" + }, + "author": { + "name": "Scott Wilson", + "email": "scott.bradley.wilson@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/wave/0.1.0", + "0.2.0": "http://registry.npmjs.org/wave/0.2.0", + "0.2.2": "http://registry.npmjs.org/wave/0.2.2" + }, + "dist": { + "0.1.0": { + "shasum": "a35e83cd1dbbc1531a3d4b6d8e7dcefa1ed614a1", + "tarball": "http://registry.npmjs.org/wave/-/wave-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "d2adbc4626698b75de2b485aef414f43c760df80", + "tarball": "http://registry.npmjs.org/wave/-/wave-0.2.0.tgz" + }, + "0.2.2": { + "shasum": "8031e956eb360d4653063e703f3979a92f36f497", + "tarball": "http://registry.npmjs.org/wave/-/wave-0.2.2.tgz" + } + }, + "keywords": [ + "wave", + "websocket", + "google wave" + ], + "url": "http://registry.npmjs.org/wave/" + }, + "wax": { + "name": "wax", + "dist-tags": { + "latest": "4.1.3" + }, + "maintainers": [ + { + "name": "kkaefer", + "email": "kkaefer@gmail.com" + }, + { + "name": "yhahn", + "email": "young@developmentseed.org" + }, + { + "name": "tmcw", + "email": "macwright@gmail.com" + }, + { + "name": "willwhite", + "email": "will@developmentseed.org" + }, + { + "name": "springmeyer", + "email": "dane@dbsgeo.com" + } + ], + "time": { + "modified": "2011-11-19T21:51:40.703Z", + "created": "2011-05-09T21:59:03.176Z", + "1.2.2": "2011-05-09T21:59:12.659Z", + "1.4.1": "2011-05-13T04:51:04.445Z", + "1.4.2": "2011-05-23T20:13:38.437Z", + "2.0.0": "2011-06-07T16:44:09.633Z", + "2.1.0": "2011-06-10T21:18:04.125Z", + "2.1.1": "2011-06-10T21:32:59.697Z", + "2.1.2": "2011-06-10T21:56:35.426Z", + "2.1.3": "2011-06-10T22:00:19.567Z", + "2.1.4": "2011-06-15T21:45:21.979Z", + "3.0.0": "2011-06-23T18:42:15.791Z", + "3.0.1": "2011-06-23T22:31:00.321Z", + "2.1.5": "2011-06-24T16:22:54.157Z", + "3.0.2": "2011-06-28T15:10:57.486Z", + "3.0.3": "2011-06-28T21:40:15.014Z", + "2.1.6": "2011-06-30T19:30:09.193Z", + "3.0.4": "2011-08-01T17:09:29.600Z", + "3.0.5": "2011-08-11T16:25:00.858Z", + "3.0.6": "2011-09-02T15:23:19.825Z", + "3.0.7": "2011-09-07T14:58:33.383Z", + "3.0.8": "2011-09-23T16:56:25.077Z", + "3.0.9": "2011-10-05T16:46:21.403Z", + "3.1.0": "2011-10-12T20:05:08.720Z", + "4.1.0": "2011-10-27T21:17:33.023Z", + "4.1.1": "2011-11-11T19:23:38.868Z", + "4.1.2": "2011-11-15T18:34:57.066Z", + "4.1.3": "2011-11-19T21:51:40.703Z" + }, + "author": { + "name": "MapBox", + "email": "info@mapbox.com", + "url": "http://mapbox.com/" + }, + "description": "Tools for improving web maps.", + "repository": { + "type": "git", + "url": "git://github.com/mapbox/wax.git" + }, + "versions": { + "1.2.2": "http://registry.npmjs.org/wax/1.2.2", + "1.4.1": "http://registry.npmjs.org/wax/1.4.1", + "1.4.2": "http://registry.npmjs.org/wax/1.4.2", + "2.0.0": "http://registry.npmjs.org/wax/2.0.0", + "2.1.0": "http://registry.npmjs.org/wax/2.1.0", + "2.1.1": "http://registry.npmjs.org/wax/2.1.1", + "2.1.2": "http://registry.npmjs.org/wax/2.1.2", + "2.1.3": "http://registry.npmjs.org/wax/2.1.3", + "2.1.4": "http://registry.npmjs.org/wax/2.1.4", + "2.1.5": "http://registry.npmjs.org/wax/2.1.5", + "2.1.6": "http://registry.npmjs.org/wax/2.1.6", + "3.0.0": "http://registry.npmjs.org/wax/3.0.0", + "3.0.1": "http://registry.npmjs.org/wax/3.0.1", + "3.0.2": "http://registry.npmjs.org/wax/3.0.2", + "3.0.3": "http://registry.npmjs.org/wax/3.0.3", + "3.0.4": "http://registry.npmjs.org/wax/3.0.4", + "3.0.5": "http://registry.npmjs.org/wax/3.0.5", + "3.0.6": "http://registry.npmjs.org/wax/3.0.6", + "3.0.7": "http://registry.npmjs.org/wax/3.0.7", + "3.0.8": "http://registry.npmjs.org/wax/3.0.8", + "3.1.0": "http://registry.npmjs.org/wax/3.1.0", + "4.1.0": "http://registry.npmjs.org/wax/4.1.0", + "4.1.1": "http://registry.npmjs.org/wax/4.1.1", + "4.1.2": "http://registry.npmjs.org/wax/4.1.2", + "4.1.3": "http://registry.npmjs.org/wax/4.1.3" + }, + "dist": { + "1.2.2": { + "shasum": "1c5559e2073f3dc6596f626cec4907864ed99b59", + "tarball": "http://registry.npmjs.org/wax/-/wax-1.2.2.tgz" + }, + "1.4.1": { + "shasum": "7666228ff6af9e6c070451782211e041fa81203b", + "tarball": "http://registry.npmjs.org/wax/-/wax-1.4.1.tgz" + }, + "1.4.2": { + "shasum": "816080c0949f97a89147461aab91f21d099bd61f", + "tarball": "http://registry.npmjs.org/wax/-/wax-1.4.2.tgz" + }, + "2.0.0": { + "shasum": "79c011a57135adbb3431c2bbce81db6a6d51fd6c", + "tarball": "http://registry.npmjs.org/wax/-/wax-2.0.0.tgz" + }, + "2.1.0": { + "shasum": "9ef375d7de1d4d30ffbb169758d304a61b707131", + "tarball": "http://registry.npmjs.org/wax/-/wax-2.1.0.tgz" + }, + "2.1.1": { + "shasum": "4a252ede76df600736a29f286d924d02014d864b", + "tarball": "http://registry.npmjs.org/wax/-/wax-2.1.1.tgz" + }, + "2.1.2": { + "shasum": "92743185c0c00fe688e77eabc52bfa850fb108d9", + "tarball": "http://registry.npmjs.org/wax/-/wax-2.1.2.tgz" + }, + "2.1.3": { + "shasum": "85be54b141bb94020b599831dc83aefa4effa322", + "tarball": "http://registry.npmjs.org/wax/-/wax-2.1.3.tgz" + }, + "2.1.4": { + "shasum": "0668d3c4c2e276f4f6991efa9fcdf03c2249ec39", + "tarball": "http://registry.npmjs.org/wax/-/wax-2.1.4.tgz" + }, + "2.1.5": { + "shasum": "414ee9c25e24e4bd6608bfc78c20a1be53eab856", + "tarball": "http://registry.npmjs.org/wax/-/wax-2.1.5.tgz" + }, + "2.1.6": { + "shasum": "bc914022b029d072da65c55078e24f142b422263", + "tarball": "http://registry.npmjs.org/wax/-/wax-2.1.6.tgz" + }, + "3.0.0": { + "shasum": "59bde69dac1fef1db9390c0fdec9d36e3f32dcc4", + "tarball": "http://registry.npmjs.org/wax/-/wax-3.0.0.tgz" + }, + "3.0.1": { + "shasum": "eb9f507eabf94ccd21aefb9661d4cf7bef0e7d6b", + "tarball": "http://registry.npmjs.org/wax/-/wax-3.0.1.tgz" + }, + "3.0.2": { + "shasum": "8b5b1cb070801159215cbed97acfe299c4e62f63", + "tarball": "http://registry.npmjs.org/wax/-/wax-3.0.2.tgz" + }, + "3.0.3": { + "shasum": "7fd2c28611dca2f19a0b1291a3a29c634953d0df", + "tarball": "http://registry.npmjs.org/wax/-/wax-3.0.3.tgz" + }, + "3.0.4": { + "shasum": "beb51fb3d06948c7fa1bc33855981e48c229cda2", + "tarball": "http://registry.npmjs.org/wax/-/wax-3.0.4.tgz" + }, + "3.0.5": { + "shasum": "9bb7d2c4c345c3e45c6404ec4c7e1a9037f1e4f2", + "tarball": "http://registry.npmjs.org/wax/-/wax-3.0.5.tgz" + }, + "3.0.6": { + "shasum": "9aa73b039d79d0217103ccb040de7794f08ffa31", + "tarball": "http://registry.npmjs.org/wax/-/wax-3.0.6.tgz" + }, + "3.0.7": { + "shasum": "21c56638f74d8590b6e8c13640d2c25731730471", + "tarball": "http://registry.npmjs.org/wax/-/wax-3.0.7.tgz" + }, + "3.0.8": { + "shasum": "1f31496b6fa397057b2c7fe3247ce01fc901dc10", + "tarball": "http://registry.npmjs.org/wax/-/wax-3.0.8.tgz" + }, + "3.1.0": { + "shasum": "795e0048262b4829eece31bc00eb55faef05d3cd", + "tarball": "http://registry.npmjs.org/wax/-/wax-3.1.0.tgz" + }, + "4.1.0": { + "shasum": "1a5fbaf7560ff60d2fb0b29b83109c77a1472554", + "tarball": "http://registry.npmjs.org/wax/-/wax-4.1.0.tgz" + }, + "4.1.1": { + "shasum": "94829ce189dc21d8621c07942402d3ccde077f26", + "tarball": "http://registry.npmjs.org/wax/-/wax-4.1.1.tgz" + }, + "4.1.2": { + "shasum": "70080f4459845c9d691d08437ed5983f57305df7", + "tarball": "http://registry.npmjs.org/wax/-/wax-4.1.2.tgz" + }, + "4.1.3": { + "shasum": "2c15981094592801a5912767a0f2b6ec53b7b472", + "tarball": "http://registry.npmjs.org/wax/-/wax-4.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/wax/" + }, + "waz-storage-js": { + "name": "waz-storage-js", + "description": "Windows Azure Storage library for Node JS", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "jpgarcia", + "email": "juanpablogarcia@gmail.com" + } + ], + "time": { + "modified": "2011-09-07T02:12:29.418Z", + "created": "2011-07-31T23:59:37.725Z", + "0.1.0": "2011-07-31T23:59:39.013Z", + "0.1.1": "2011-08-22T21:51:43.411Z", + "0.1.2": "2011-09-07T00:33:18.833Z" + }, + "author": { + "name": "Juan Pablo Garcia", + "email": "juanpablogarcia@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/jpgarcia/waz-tables-js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/waz-storage-js/0.1.0", + "0.1.1": "http://registry.npmjs.org/waz-storage-js/0.1.1", + "0.1.2": "http://registry.npmjs.org/waz-storage-js/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "0ef35493a48c153a98fb1df2aca1b15f4ff34b5a", + "tarball": "http://registry.npmjs.org/waz-storage-js/-/waz-storage-js-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "00ad442d90482ba951b36a2276b3df7c0ebae337", + "tarball": "http://registry.npmjs.org/waz-storage-js/-/waz-storage-js-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "ab7a36fa121023a714f6fabf310456c842c94bc5", + "tarball": "http://registry.npmjs.org/waz-storage-js/-/waz-storage-js-0.1.2.tgz" + } + }, + "keywords": [ + "azure", + "waz", + "windows", + "blobs", + "queues", + "tables" + ], + "url": "http://registry.npmjs.org/waz-storage-js/" + }, + "wd": { + "name": "wd", + "description": "WebDriver/Selenium 2 node.js client", + "dist-tags": { + "latest": "0.0.9" + }, + "maintainers": [ + { + "name": "admc", + "email": "adam.christian@gmail.com" + } + ], + "time": { + "modified": "2011-12-09T07:34:25.249Z", + "created": "2011-04-27T19:53:09.045Z", + "0.0.1": "2011-04-27T19:53:09.428Z", + "0.0.2": "2011-04-27T22:06:28.668Z", + "0.0.3": "2011-04-28T02:03:48.154Z", + "0.0.4": "2011-05-03T21:16:06.298Z", + "0.0.5": "2011-05-06T21:43:14.643Z", + "0.0.6": "2011-05-06T23:37:05.272Z", + "0.0.7": "2011-08-15T20:53:44.740Z", + "0.0.8": "2011-10-11T23:04:53.844Z", + "0.0.9": "2011-12-09T07:34:25.249Z" + }, + "author": { + "name": "Adam Christian", + "email": "adam.christian@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/admc/wd.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/wd/0.0.1", + "0.0.2": "http://registry.npmjs.org/wd/0.0.2", + "0.0.3": "http://registry.npmjs.org/wd/0.0.3", + "0.0.4": "http://registry.npmjs.org/wd/0.0.4", + "0.0.5": "http://registry.npmjs.org/wd/0.0.5", + "0.0.6": "http://registry.npmjs.org/wd/0.0.6", + "0.0.7": "http://registry.npmjs.org/wd/0.0.7", + "0.0.8": "http://registry.npmjs.org/wd/0.0.8", + "0.0.9": "http://registry.npmjs.org/wd/0.0.9" + }, + "dist": { + "0.0.1": { + "shasum": "68af2b9b26e3c8fe708b152f4c0489b7f6a5a220", + "tarball": "http://registry.npmjs.org/wd/-/wd-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c173050643eac926eaa339461261c5684cdf5b71", + "tarball": "http://registry.npmjs.org/wd/-/wd-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "2bd21b1c314cc84ac0f4516099b441f2b5e2f5a9", + "tarball": "http://registry.npmjs.org/wd/-/wd-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "0e7e170e807902efcbe4a820cd6acc984bd6ef04", + "tarball": "http://registry.npmjs.org/wd/-/wd-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "41253e5f062fa04367ccc1abbcc9484a4a8635d6", + "tarball": "http://registry.npmjs.org/wd/-/wd-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "499c21f6a5d312d3547f7f0ffd0964de3b5edee7", + "tarball": "http://registry.npmjs.org/wd/-/wd-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "17f8812a5e1f468c4f1eea67451e054d089cf367", + "tarball": "http://registry.npmjs.org/wd/-/wd-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "59b5c203ca8e90d444589e414cf3afaa7751af42", + "tarball": "http://registry.npmjs.org/wd/-/wd-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "65f327f5499a8710c3703aa37946faea9a46eee8", + "tarball": "http://registry.npmjs.org/wd/-/wd-0.0.9.tgz" + } + }, + "url": "http://registry.npmjs.org/wd/" + }, + "weak": { + "name": "weak", + "description": "Make weak references to JavaScript Objects.", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "TooTallNate", + "email": "nathan@tootallnate.net" + } + ], + "time": { + "modified": "2011-10-18T21:06:38.049Z", + "created": "2011-09-19T02:05:28.220Z", + "0.0.1": "2011-09-19T02:05:29.544Z", + "0.1.0": "2011-10-09T18:55:09.838Z", + "0.1.1": "2011-10-18T21:06:38.049Z" + }, + "author": { + "name": "Ben Noordhuis", + "email": "info@bnoordhuis.nl" + }, + "repository": { + "type": "git", + "url": "git://github.com/TooTallNate/node-weak.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/weak/0.0.1", + "0.1.0": "http://registry.npmjs.org/weak/0.1.0", + "0.1.1": "http://registry.npmjs.org/weak/0.1.1" + }, + "dist": { + "0.0.1": { + "shasum": "3b1de5d6c80fe86d8a92d173ad8c6d109fe263a4", + "tarball": "http://registry.npmjs.org/weak/-/weak-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "ec09fa93b8fa6fb9fc157f9809270b970f50b171", + "tarball": "http://registry.npmjs.org/weak/-/weak-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "bf0dfc700bd238f317b980c17d172955254ec879", + "tarball": "http://registry.npmjs.org/weak/-/weak-0.1.1.tgz" + } + }, + "keywords": [ + "weak", + "reference", + "js", + "javascript", + "object", + "function", + "callback" + ], + "url": "http://registry.npmjs.org/weak/" + }, + "web": { + "name": "web", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "samuraijack", + "email": "nickolay8@gmail.com" + } + ], + "time": { + "modified": "2011-09-05T06:43:37.865Z", + "created": "2011-09-05T06:43:37.052Z", + "0.0.0": "2011-09-05T06:43:37.865Z" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/web/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "c200f947ccdfcfe68f927e7e978769ddc6af9e86", + "tarball": "http://registry.npmjs.org/web/-/web-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/web/" + }, + "web-http-client": { + "name": "web-http-client", + "description": "a web based http client", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "marak", + "email": "marak.squires@gmail.com" + } + ], + "time": { + "modified": "2011-11-01T01:00:22.823Z", + "created": "2011-11-01T01:00:19.912Z", + "0.1.0": "2011-11-01T01:00:22.823Z" + }, + "author": { + "name": "Marak Squires", + "email": "marak.squires@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/nodeapps/web-http-client.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/web-http-client/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "eb81fe94f23af39969002460165892b7e33b7ceb", + "tarball": "http://registry.npmjs.org/web-http-client/-/web-http-client-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/web-http-client/" + }, + "web-irc": { + "name": "web-irc", + "description": "In-browser IRC client", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "akavlie", + "email": "akavlie@gmail.com" + } + ], + "time": { + "modified": "2011-12-01T06:01:55.243Z", + "created": "2011-12-01T05:55:34.539Z", + "0.0.1": "2011-12-01T06:01:55.243Z" + }, + "author": { + "name": "Aaron Kavlie" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/web-irc/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "5a34b36d3b4c1b0c114d4c329436ae69b7d6cf25", + "tarball": "http://registry.npmjs.org/web-irc/-/web-irc-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/web-irc/" + }, + "webapp": { + "name": "webapp", + "description": "Make a webapp out of anything", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "visnup", + "email": "visnupx@gmail.com" + } + ], + "time": { + "modified": "2011-03-13T07:43:58.350Z", + "created": "2011-03-13T06:30:52.815Z", + "0.0.1": "2011-03-13T06:30:53.321Z", + "0.0.2": "2011-03-13T07:43:58.350Z" + }, + "author": { + "name": "visnup", + "email": "visnupx@gmail.com", + "url": "http://visnup.com" + }, + "repository": { + "type": "git", + "url": "git@gist.github.com:700995.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/webapp/0.0.1", + "0.0.2": "http://registry.npmjs.org/webapp/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "fce939e821b4efeb79456554e2ece37f8055b492", + "tarball": "http://registry.npmjs.org/webapp/-/webapp-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "894257e8f5e52c8ecf4c8cd112bd4b8bc5676bb2", + "tarball": "http://registry.npmjs.org/webapp/-/webapp-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/webapp/" + }, + "webdav-sync": { + "name": "webdav-sync", + "description": "Basic local sync to WebDAV servers", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "bermi", + "email": "bermi@bermilabs.com" + } + ], + "time": { + "modified": "2011-10-07T02:00:31.559Z", + "created": "2011-10-07T02:00:30.940Z", + "0.1.1": "2011-10-07T02:00:31.559Z" + }, + "author": { + "name": "Bermi Ferrer", + "email": "bermi@bermilabs.com" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/webdav-sync/0.1.1" + }, + "dist": { + "0.1.1": { + "shasum": "6d5cb039d4abeed6ccf32c1acb2a200b5091a197", + "tarball": "http://registry.npmjs.org/webdav-sync/-/webdav-sync-0.1.1.tgz" + } + }, + "keywords": [ + "webdav-sync" + ], + "url": "http://registry.npmjs.org/webdav-sync/" + }, + "webdriverjs": { + "name": "webdriverjs", + "description": "A nodejs bindings implementation for selenium 2.0/webdriver", + "dist-tags": { + "latest": "0.5.0" + }, + "maintainers": [ + { + "name": "camilo.tapia", + "email": "camilo.tapia@gmail.com" + } + ], + "time": { + "modified": "2011-11-09T23:19:53.905Z", + "created": "2011-09-26T14:08:34.480Z", + "0.3.0": "2011-09-26T14:08:35.270Z", + "0.3.1": "2011-09-27T20:44:13.437Z", + "0.3.5": "2011-09-28T20:43:50.229Z", + "0.4.0": "2011-10-20T08:09:37.690Z", + "0.4.1": "2011-10-24T09:37:34.533Z", + "0.4.2": "2011-10-25T10:19:24.159Z", + "0.4.3": "2011-11-01T10:17:02.393Z", + "0.4.4": "2011-11-03T22:05:14.171Z", + "0.4.5": "2011-11-03T22:05:33.363Z", + "0.4.8": "2011-11-07T21:45:55.818Z", + "0.4.9": "2011-11-08T18:09:25.067Z", + "0.5.0": "2011-11-09T23:19:53.905Z" + }, + "author": { + "name": "camilo tapia", + "email": "camilo.tapia@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Camme/webdriverjs.git" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/webdriverjs/0.3.0", + "0.3.1": "http://registry.npmjs.org/webdriverjs/0.3.1", + "0.3.5": "http://registry.npmjs.org/webdriverjs/0.3.5", + "0.4.0": "http://registry.npmjs.org/webdriverjs/0.4.0", + "0.4.1": "http://registry.npmjs.org/webdriverjs/0.4.1", + "0.4.2": "http://registry.npmjs.org/webdriverjs/0.4.2", + "0.4.3": "http://registry.npmjs.org/webdriverjs/0.4.3", + "0.4.4": "http://registry.npmjs.org/webdriverjs/0.4.4", + "0.4.5": "http://registry.npmjs.org/webdriverjs/0.4.5", + "0.4.8": "http://registry.npmjs.org/webdriverjs/0.4.8", + "0.4.9": "http://registry.npmjs.org/webdriverjs/0.4.9", + "0.5.0": "http://registry.npmjs.org/webdriverjs/0.5.0" + }, + "dist": { + "0.3.0": { + "shasum": "f6a6dedd5ef192e730629ba658621925f666544e", + "tarball": "http://registry.npmjs.org/webdriverjs/-/webdriverjs-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "b126133dd0429b651d7e178ff5cc6e44de65ddfc", + "tarball": "http://registry.npmjs.org/webdriverjs/-/webdriverjs-0.3.1.tgz" + }, + "0.3.5": { + "shasum": "aa025b6798e7f8a9c9141a076fc2560e98af581f", + "tarball": "http://registry.npmjs.org/webdriverjs/-/webdriverjs-0.3.5.tgz" + }, + "0.4.0": { + "shasum": "b21a0d0676410612e49128a9dbc4ace91854f70d", + "tarball": "http://registry.npmjs.org/webdriverjs/-/webdriverjs-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "f6fad110c3a8a729a14b4c19d0cc12bd66f90be5", + "tarball": "http://registry.npmjs.org/webdriverjs/-/webdriverjs-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "4edbc6597190f661495cbf5a0adcfb43e1bd27f8", + "tarball": "http://registry.npmjs.org/webdriverjs/-/webdriverjs-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "26f3a1ff3964a55552aed297a9c5f0677ac20228", + "tarball": "http://registry.npmjs.org/webdriverjs/-/webdriverjs-0.4.3.tgz" + }, + "0.4.4": { + "shasum": "e9ca329f308afb214d57ed4f6994900a045cb0ed", + "tarball": "http://registry.npmjs.org/webdriverjs/-/webdriverjs-0.4.4.tgz" + }, + "0.4.5": { + "shasum": "c28c4f5aed861bc0ae4f43416a63d163efbb8fd1", + "tarball": "http://registry.npmjs.org/webdriverjs/-/webdriverjs-0.4.5.tgz" + }, + "0.4.8": { + "shasum": "ba065ac99b075d8e8210b506ff6ffcd4d613615c", + "tarball": "http://registry.npmjs.org/webdriverjs/-/webdriverjs-0.4.8.tgz" + }, + "0.4.9": { + "shasum": "1bb7ec0b8e09fd2560c037e3a5fa19ea6cbe0274", + "tarball": "http://registry.npmjs.org/webdriverjs/-/webdriverjs-0.4.9.tgz" + }, + "0.5.0": { + "shasum": "fa0b8c46486f68dd7e90e7363c274dc7a003085c", + "tarball": "http://registry.npmjs.org/webdriverjs/-/webdriverjs-0.5.0.tgz" + } + }, + "url": "http://registry.npmjs.org/webdriverjs/" + }, + "webfonts": { + "name": "webfonts", + "description": "ttf to woff, eot and svg generator", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "uipoet", + "email": "dont.tase@me.com" + } + ], + "time": { + "modified": "2011-07-01T20:05:04.235Z", + "created": "2011-06-24T03:30:25.606Z", + "0.1.0": "2011-06-24T03:30:26.322Z", + "0.1.1": "2011-07-01T20:05:04.235Z" + }, + "author": { + "name": "Jamie Hoover", + "email": "dont.tase@me.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/webfonts/0.1.0", + "0.1.1": "http://registry.npmjs.org/webfonts/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "f7a2cec49685ff6b1af604ba917a4e1f00c26e43", + "tarball": "http://registry.npmjs.org/webfonts/-/webfonts-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "6321ecf49fd29a68b98b4f25334db423220695a9", + "tarball": "http://registry.npmjs.org/webfonts/-/webfonts-0.1.1.tgz" + } + }, + "keywords": [ + "web", + "font", + "webfont", + "ttf", + "woff", + "eot", + "svg", + "generator", + "css", + "truetype" + ], + "url": "http://registry.npmjs.org/webfonts/" + }, + "webgenjs": { + "name": "webgenjs", + "description": "A library interpreting a JavaScript object structure as XML or HTML/CSS for generating a markup document.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "ernstsson", + "email": "magnus.ernstsson@patchworksolutions.com" + } + ], + "time": { + "modified": "2011-05-13T17:40:14.057Z", + "created": "2011-05-13T17:40:13.265Z", + "0.0.1": "2011-05-13T17:40:14.057Z" + }, + "author": { + "name": "Magnus Ernstsson", + "email": "magnus.ernstsson@patchworksolutions.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/webgenjs/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "4ab7f780bb09d799daff152231a335730028b790", + "tarball": "http://registry.npmjs.org/webgenjs/-/webgenjs-0.0.1.tgz" + } + }, + "keywords": [ + "web", + "jsml", + "html", + "jss", + "css" + ], + "url": "http://registry.npmjs.org/webgenjs/" + }, + "webgl": { + "name": "webgl", + "description": "webGL bindings for node", + "dist-tags": { + "latest": "0.0.7" + }, + "maintainers": [ + { + "name": "creationix", + "email": "tim@creationix.com" + } + ], + "time": { + "modified": "2011-11-14T21:23:13.318Z", + "created": "2011-08-27T13:33:14.089Z", + "0.0.0": "2011-08-27T13:33:14.556Z", + "0.0.1": "2011-08-27T14:52:45.807Z", + "0.0.2": "2011-08-27T21:22:48.159Z", + "0.0.3": "2011-08-29T23:56:05.182Z", + "0.0.4": "2011-08-30T21:03:22.706Z", + "0.0.5": "2011-09-08T00:47:26.605Z", + "0.0.6": "2011-09-08T20:31:47.389Z", + "0.0.7": "2011-10-13T22:32:24.837Z" + }, + "author": { + "name": "Tim Caswell", + "email": "tim@creationix.com", + "url": "http://creationix.com/" + }, + "users": { + "creationix": true + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/webgl/0.0.0", + "0.0.1": "http://registry.npmjs.org/webgl/0.0.1", + "0.0.2": "http://registry.npmjs.org/webgl/0.0.2", + "0.0.3": "http://registry.npmjs.org/webgl/0.0.3", + "0.0.4": "http://registry.npmjs.org/webgl/0.0.4", + "0.0.5": "http://registry.npmjs.org/webgl/0.0.5", + "0.0.6": "http://registry.npmjs.org/webgl/0.0.6", + "0.0.7": "http://registry.npmjs.org/webgl/0.0.7" + }, + "dist": { + "0.0.0": { + "shasum": "c453d361b3da6da99d4c35f8b9387a64ca878355", + "bin": { + "true": { + "shasum": "a49851a256b57d8a0c5041a1230f7dcc96092ac3" + }, + "0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.25-linux-2.6.38-11-generic": { + "tarball": "http://registry.npmjs.org/webgl/-/webgl-0.0.0-0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.25-linux-2.6.38-11-generic.tgz" + } + }, + "tarball": "http://registry.npmjs.org/webgl/-/webgl-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "a604cacd49f600b92c32e111d85cd5627b52cc37", + "bin": { + "true": { + "shasum": "39cfa4c8c29c0498fe70b1d4c929ae7c308aa9d7" + }, + "0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.25-linux-2.6.38-11-generic": { + "tarball": "http://registry.npmjs.org/webgl/-/webgl-0.0.1-0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.25-linux-2.6.38-11-generic.tgz" + } + }, + "tarball": "http://registry.npmjs.org/webgl/-/webgl-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "4b6d9250e7b532581b31a5f9f1a7ab7c6151bd6c", + "bin": { + "true": { + "shasum": "5e0366a319064f35be61108f70a0782b994104dc" + }, + "0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.25-linux-2.6.38-11-generic": { + "tarball": "http://registry.npmjs.org/webgl/-/webgl-0.0.2-0.4-ares1.7.4-ev4.4-openssl0.9.8o-v83.1.8.25-linux-2.6.38-11-generic.tgz" + } + }, + "tarball": "http://registry.npmjs.org/webgl/-/webgl-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "f21cde205be70b08d31665d00ec6a4a2c8938df6", + "tarball": "http://registry.npmjs.org/webgl/-/webgl-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "d05e4a39fdda53c26c9ef83b7656d9bdccf12c4d", + "tarball": "http://registry.npmjs.org/webgl/-/webgl-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "bda3d60745cd7586ddb949e481c7036df0768aba", + "tarball": "http://registry.npmjs.org/webgl/-/webgl-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "8306a67fd0edd0292015f6118b9ecb881613e0a5", + "tarball": "http://registry.npmjs.org/webgl/-/webgl-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "bc4ee95523993a2b624377419e6a2d9beb9d78c1", + "tarball": "http://registry.npmjs.org/webgl/-/webgl-0.0.7.tgz" + } + }, + "url": "http://registry.npmjs.org/webgl/" + }, + "webhookit-comment": { + "name": "webhookit-comment", + "description": "Comment module for WebHookIt", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "neyric", + "email": "eric.abouaf@gmail.com" + } + ], + "time": { + "modified": "2011-02-22T22:45:34.962Z", + "created": "2011-01-31T13:30:38.183Z", + "0.0.1": "2011-01-31T13:30:38.752Z", + "0.0.2": "2011-02-22T22:45:34.962Z" + }, + "author": { + "name": "Eric Abouaf", + "email": "eric.abouaf@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/neyric/webhookit-packages.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/webhookit-comment/0.0.1", + "0.0.2": "http://registry.npmjs.org/webhookit-comment/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "e927993da7ce56e985a8f2311feca9a0919715ae", + "tarball": "http://registry.npmjs.org/webhookit-comment/-/webhookit-comment-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "d937be484b1295ed0c8c01c6873d508953358096", + "tarball": "http://registry.npmjs.org/webhookit-comment/-/webhookit-comment-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/webhookit-comment/" + }, + "webhookit-ejs": { + "name": "webhookit-ejs", + "description": "EJS templating module for WebHookIt", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "neyric", + "email": "eric.abouaf@gmail.com" + } + ], + "time": { + "modified": "2011-02-22T22:45:41.365Z", + "created": "2011-01-31T13:25:54.299Z", + "0.0.1": "2011-01-31T13:25:54.863Z", + "0.0.2": "2011-02-22T22:45:41.365Z" + }, + "author": { + "name": "Eric Abouaf", + "email": "eric.abouaf@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/neyric/webhookit-packages.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/webhookit-ejs/0.0.1", + "0.0.2": "http://registry.npmjs.org/webhookit-ejs/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "d98a35790d63730c8b28b028d5c7113a87c8c36b", + "tarball": "http://registry.npmjs.org/webhookit-ejs/-/webhookit-ejs-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "44acdf10052da55d3742da6ed09745695745b113", + "tarball": "http://registry.npmjs.org/webhookit-ejs/-/webhookit-ejs-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/webhookit-ejs/" + }, + "webhookit-email": { + "name": "webhookit-email", + "description": "Email module for WebHookIt", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "neyric", + "email": "eric.abouaf@gmail.com" + } + ], + "time": { + "modified": "2011-02-22T22:45:51.761Z", + "created": "2011-01-31T13:29:14.624Z", + "0.0.1": "2011-01-31T13:29:15.136Z", + "0.0.2": "2011-02-22T22:45:51.761Z" + }, + "author": { + "name": "Eric Abouaf", + "email": "eric.abouaf@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/neyric/webhookit-packages.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/webhookit-email/0.0.1", + "0.0.2": "http://registry.npmjs.org/webhookit-email/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "c3bfb57b1c262cb53d0e6dff58ab10cfa371eefb", + "tarball": "http://registry.npmjs.org/webhookit-email/-/webhookit-email-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "b9f325666e463ec5f7bfc26a726ebfd258b643c3", + "tarball": "http://registry.npmjs.org/webhookit-email/-/webhookit-email-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/webhookit-email/" + }, + "webhookit-http": { + "name": "webhookit-http", + "description": "HTTP module for WebHookIt", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "neyric", + "email": "eric.abouaf@gmail.com" + } + ], + "time": { + "modified": "2011-02-23T00:12:51.503Z", + "created": "2011-01-31T13:36:36.426Z", + "0.0.1": "2011-01-31T13:36:36.944Z", + "0.0.2": "2011-02-22T20:50:20.488Z", + "0.0.3": "2011-02-22T21:31:52.851Z", + "0.0.4": "2011-02-22T22:46:20.116Z" + }, + "author": { + "name": "Eric Abouaf", + "email": "eric.abouaf@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/neyric/webhookit-packages.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/webhookit-http/0.0.1", + "0.0.2": "http://registry.npmjs.org/webhookit-http/0.0.2", + "0.0.3": "http://registry.npmjs.org/webhookit-http/0.0.3", + "0.0.4": "http://registry.npmjs.org/webhookit-http/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "d87a098a1142e5565d9a19fa0371fe2d85744123", + "tarball": "http://registry.npmjs.org/webhookit-http/-/webhookit-http-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "8982db2886c2c16b4e23cc1d4e236fe84c9b57f4", + "tarball": "http://registry.npmjs.org/webhookit-http/-/webhookit-http-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "a7444f07cf473a41c6ca446b1db4829eab226bc6", + "tarball": "http://registry.npmjs.org/webhookit-http/-/webhookit-http-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "5def84f0edbb0d8fed8d5d81ebca6d7706b87d2e", + "tarball": "http://registry.npmjs.org/webhookit-http/-/webhookit-http-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/webhookit-http/" + }, + "webhookit-jsonparse": { + "name": "webhookit-jsonparse", + "description": "JSON.parse module for WebHookIt", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "neyric", + "email": "eric.abouaf@gmail.com" + } + ], + "time": { + "modified": "2011-02-23T00:12:34.072Z", + "created": "2011-02-23T00:12:33.523Z", + "0.0.1": "2011-02-23T00:12:34.072Z" + }, + "author": { + "name": "Eric Abouaf", + "email": "eric.abouaf@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/neyric/webhookit-packages.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/webhookit-jsonparse/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "94e961f791b489cfdf9f3d74f4dc4f393b9fcc65", + "tarball": "http://registry.npmjs.org/webhookit-jsonparse/-/webhookit-jsonparse-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/webhookit-jsonparse/" + }, + "webhookit-jsonpath": { + "name": "webhookit-jsonpath", + "description": "JSONPath module for WebHookIt", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "neyric", + "email": "eric.abouaf@gmail.com" + } + ], + "time": { + "modified": "2011-02-22T22:46:27.937Z", + "created": "2011-01-31T11:25:48.460Z", + "0.0.1": "2011-01-31T11:25:49.006Z", + "0.0.2": "2011-02-22T22:46:27.937Z" + }, + "author": { + "name": "Eric Abouaf", + "email": "eric.abouaf@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/neyric/webhookit-packages.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/webhookit-jsonpath/0.0.1", + "0.0.2": "http://registry.npmjs.org/webhookit-jsonpath/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "77e752858490e5c9a33f6e1b0197324628b34a93", + "tarball": "http://registry.npmjs.org/webhookit-jsonpath/-/webhookit-jsonpath-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "0f2d54e2daf0f7d49a63f4bc81b4493f3a3904b6", + "tarball": "http://registry.npmjs.org/webhookit-jsonpath/-/webhookit-jsonpath-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/webhookit-jsonpath/" + }, + "webhookit-objectbuilder": { + "name": "webhookit-objectbuilder", + "description": "ObjectBuilder module for WebHookIt", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "neyric", + "email": "eric.abouaf@gmail.com" + } + ], + "time": { + "modified": "2011-02-22T22:46:40.923Z", + "created": "2011-01-31T13:32:15.067Z", + "0.0.1": "2011-01-31T13:32:15.562Z", + "0.0.2": "2011-02-22T22:46:40.923Z" + }, + "author": { + "name": "Eric Abouaf", + "email": "eric.abouaf@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/neyric/webhookit-packages.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/webhookit-objectbuilder/0.0.1", + "0.0.2": "http://registry.npmjs.org/webhookit-objectbuilder/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "566275c539b087a6b8353e0e709bd86776dd9dca", + "tarball": "http://registry.npmjs.org/webhookit-objectbuilder/-/webhookit-objectbuilder-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "75d9832d99ef1834258aba4a74f84fa5383bab9c", + "tarball": "http://registry.npmjs.org/webhookit-objectbuilder/-/webhookit-objectbuilder-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/webhookit-objectbuilder/" + }, + "webhookit-soupselect": { + "name": "webhookit-soupselect", + "description": "soupselect module for WebHookIt", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "neyric", + "email": "eric.abouaf@gmail.com" + } + ], + "time": { + "modified": "2011-01-31T11:28:36.075Z", + "created": "2011-01-30T18:59:27.528Z", + "0.0.1": "2011-01-30T18:59:27.984Z", + "0.0.2": "2011-01-30T19:05:39.938Z", + "0.0.4": "2011-01-31T09:55:58.209Z", + "0.0.5": "2011-01-31T11:28:36.075Z" + }, + "author": { + "name": "Eric Abouaf", + "email": "eric.abouaf@gmail.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/neyric/webhookit.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/webhookit-soupselect/0.0.1", + "0.0.2": "http://registry.npmjs.org/webhookit-soupselect/0.0.2", + "0.0.4": "http://registry.npmjs.org/webhookit-soupselect/0.0.4", + "0.0.5": "http://registry.npmjs.org/webhookit-soupselect/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "f1c555f0bc26f68294c5a10330a90ba7b57144ac", + "tarball": "http://registry.npmjs.org/webhookit-soupselect/-/webhookit-soupselect-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c51e987c700feeac61b5f0fbe8e7ffa54f5800d3", + "tarball": "http://registry.npmjs.org/webhookit-soupselect/-/webhookit-soupselect-0.0.2.tgz" + }, + "0.0.4": { + "shasum": "db487aacfba431a796bcca37130d0c5115b331e5", + "tarball": "http://registry.npmjs.org/webhookit-soupselect/-/webhookit-soupselect-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "394373d4ff80fb151387efee7629e8007b2d4386", + "tarball": "http://registry.npmjs.org/webhookit-soupselect/-/webhookit-soupselect-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/webhookit-soupselect/" + }, + "webhookit-xml2js": { + "name": "webhookit-xml2js", + "description": "xml2js-expat module for WebHookIt", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "neyric", + "email": "eric.abouaf@gmail.com" + } + ], + "time": { + "modified": "2011-02-23T00:12:41.933Z", + "created": "2011-02-23T00:12:41.388Z", + "0.0.1": "2011-02-23T00:12:41.933Z" + }, + "author": { + "name": "Eric Abouaf", + "email": "eric.abouaf@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/neyric/webhookit-packages.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/webhookit-xml2js/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "ef3c20109304077560b923c8da6f7adcd8afb9b7", + "tarball": "http://registry.npmjs.org/webhookit-xml2js/-/webhookit-xml2js-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/webhookit-xml2js/" + }, + "webhookit-yql": { + "name": "webhookit-yql", + "description": "YQL module for WebHookIt", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "neyric", + "email": "eric.abouaf@gmail.com" + } + ], + "time": { + "modified": "2011-02-22T22:56:07.018Z", + "created": "2011-01-31T10:36:26.217Z", + "0.0.1": "2011-01-31T10:36:26.741Z", + "0.0.2": "2011-02-22T22:46:49.076Z" + }, + "author": { + "name": "Eric Abouaf", + "email": "eric.abouaf@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/neyric/webhookit-packages.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/webhookit-yql/0.0.1", + "0.0.2": "http://registry.npmjs.org/webhookit-yql/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "35d1d75784a338930babfea7d6514fba5db0c27b", + "tarball": "http://registry.npmjs.org/webhookit-yql/-/webhookit-yql-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "d8bab8b9438bf99ae98857e57db78726b0ef9560", + "tarball": "http://registry.npmjs.org/webhookit-yql/-/webhookit-yql-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/webhookit-yql/" + }, + "webify": { + "name": "webify", + "description": "A simple drop-in script to make current directory available via http://*:8080", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "dvv", + "email": "dronnikov@gmail.com" + } + ], + "time": { + "modified": "2011-06-09T16:29:52.541Z", + "created": "2011-06-09T16:29:48.752Z", + "1.0.0": "2011-06-09T16:29:52.541Z" + }, + "author": { + "name": "Vladimir Dronnikov", + "email": "dronnikov@gmail.com", + "url": "https://github.com/dvv" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/webify/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "8b069856a2b4d941eb995436959be30d1ca348b5", + "tarball": "http://registry.npmjs.org/webify/-/webify-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/webify/" + }, + "webjs": { + "name": "webjs", + "description": "Simple and stable devlopment for Node.js", + "dist-tags": { + "latest": "0.3.6" + }, + "maintainers": [ + { + "name": "iwillwen", + "email": "willwengunn@gmail.com" + } + ], + "time": { + "modified": "2011-12-04T03:08:15.926Z", + "created": "2011-10-03T14:53:50.815Z", + "0.2.8": "2011-10-03T14:53:51.297Z", + "0.2.9": "2011-10-04T03:40:19.719Z", + "0.3.0": "2011-10-30T03:09:30.788Z", + "0.3.1": "2011-11-12T04:48:18.652Z", + "0.3.2": "2011-11-13T02:20:26.846Z", + "0.3.3-pre": "2011-11-18T14:18:42.419Z", + "0.3.4": "2011-11-26T07:01:21.499Z", + "0.3.5": "2011-12-03T08:42:18.653Z", + "0.3.6": "2011-12-04T03:08:15.926Z" + }, + "author": { + "name": "Will Wen Gunn", + "email": "willwengunn@gmail.com", + "url": "http://www.iwillwen.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/iwillwen/webjs.git" + }, + "versions": { + "0.2.8": "http://registry.npmjs.org/webjs/0.2.8", + "0.2.9": "http://registry.npmjs.org/webjs/0.2.9", + "0.3.0": "http://registry.npmjs.org/webjs/0.3.0", + "0.3.1": "http://registry.npmjs.org/webjs/0.3.1", + "0.3.2": "http://registry.npmjs.org/webjs/0.3.2", + "0.3.3-pre": "http://registry.npmjs.org/webjs/0.3.3-pre", + "0.3.4": "http://registry.npmjs.org/webjs/0.3.4", + "0.3.5": "http://registry.npmjs.org/webjs/0.3.5", + "0.3.6": "http://registry.npmjs.org/webjs/0.3.6" + }, + "dist": { + "0.2.8": { + "shasum": "8d5b1449c0eca38682b6654a08ad22c2b5012da7", + "tarball": "http://registry.npmjs.org/webjs/-/webjs-0.2.8.tgz" + }, + "0.2.9": { + "shasum": "be5b1a8dd827a9e015c7ad2445da5dd09e77b9e3", + "tarball": "http://registry.npmjs.org/webjs/-/webjs-0.2.9.tgz" + }, + "0.3.0": { + "shasum": "b70487ab4afd77cc0416572354a244f9da6ee955", + "tarball": "http://registry.npmjs.org/webjs/-/webjs-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "a2c20ca7cb1a9d2afafadd42d392abca8bf6acff", + "tarball": "http://registry.npmjs.org/webjs/-/webjs-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "59f619eeff5fc21eb1fca8a3e4a7bcf22fe38857", + "tarball": "http://registry.npmjs.org/webjs/-/webjs-0.3.2.tgz" + }, + "0.3.3-pre": { + "shasum": "76bf19683d25406d7f61df9331ee898ba1fd3f10", + "tarball": "http://registry.npmjs.org/webjs/-/webjs-0.3.3-pre.tgz" + }, + "0.3.4": { + "shasum": "eebf580b2e60593d0799eb1a0fc9450584cf9f3b", + "tarball": "http://registry.npmjs.org/webjs/-/webjs-0.3.4.tgz" + }, + "0.3.5": { + "shasum": "fb2a80274182170be078539a003d0b2f776745a6", + "tarball": "http://registry.npmjs.org/webjs/-/webjs-0.3.5.tgz" + }, + "0.3.6": { + "shasum": "53d3cc8764ed6d84b5048297d09e4ed6067f878d", + "tarball": "http://registry.npmjs.org/webjs/-/webjs-0.3.6.tgz" + } + }, + "keywords": [ + "http", + "tcp", + "framework", + "simple", + "restful" + ], + "url": "http://registry.npmjs.org/webjs/" + }, + "webkit-server": { + "name": "webkit-server", + "description": "A driver for webkit-server.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "tristandunn", + "email": "tristanzdunn@gmail.com" + } + ], + "time": { + "modified": "2011-10-25T01:04:30.112Z", + "created": "2011-10-25T01:04:29.327Z", + "0.1.0": "2011-10-25T01:04:30.112Z" + }, + "author": { + "name": "Tristan Dunn", + "email": "hello@tristandunn.com", + "url": "http://tristandunn.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/tristandunn/node-webkit-server.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/webkit-server/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "11a4b0d1fe5b01112df6cb0dbca14b90aa855ac7", + "tarball": "http://registry.npmjs.org/webkit-server/-/webkit-server-0.1.0.tgz" + } + }, + "keywords": [ + "driver", + "headless", + "webkit" + ], + "url": "http://registry.npmjs.org/webkit-server/" + }, + "webmake": { + "name": "webmake", + "description": "Bundle CommonJS modules into single script for web browser", + "dist-tags": { + "latest": "0.3.3" + }, + "maintainers": [ + { + "name": "medikoo", + "email": "medikoo+npm@medikoo.com" + } + ], + "time": { + "modified": "2011-08-12T13:41:59.998Z", + "created": "2011-05-11T13:00:08.359Z", + "0.2.1": "2011-05-11T13:00:09.146Z", + "0.2.2": "2011-07-20T09:12:14.416Z", + "0.3.0": "2011-08-11T16:09:38.659Z", + "0.3.1": "2011-08-11T16:19:11.829Z", + "0.3.2": "2011-08-12T11:53:53.279Z", + "0.3.3": "2011-08-12T13:41:59.998Z" + }, + "author": { + "name": "Mariusz Nowak", + "email": "medikoo+webmake@medikoo.com", + "url": "http://www.medikoo.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/medikoo/modules-webmake.git" + }, + "versions": { + "0.2.1": "http://registry.npmjs.org/webmake/0.2.1", + "0.2.2": "http://registry.npmjs.org/webmake/0.2.2", + "0.3.0": "http://registry.npmjs.org/webmake/0.3.0", + "0.3.1": "http://registry.npmjs.org/webmake/0.3.1", + "0.3.2": "http://registry.npmjs.org/webmake/0.3.2", + "0.3.3": "http://registry.npmjs.org/webmake/0.3.3" + }, + "dist": { + "0.2.1": { + "shasum": "dc683989b375a265cddf565688fec57c64a8381e", + "tarball": "http://registry.npmjs.org/webmake/-/webmake-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "fe740ffe8cba35c179e8d2a91ad9dbf54cbe6952", + "tarball": "http://registry.npmjs.org/webmake/-/webmake-0.2.2.tgz" + }, + "0.3.0": { + "shasum": "9fab4d822bb3b83cc9deb8eac902b6ac7fc0102b", + "tarball": "http://registry.npmjs.org/webmake/-/webmake-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "0e5bc9bdf3e68ef8a4e3ae7556691eb1e4873d40", + "tarball": "http://registry.npmjs.org/webmake/-/webmake-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "4dc9b8baf3b6c54f9d0685da3e4a0c07583eff46", + "tarball": "http://registry.npmjs.org/webmake/-/webmake-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "879d898b44d497d60ccc205fb6e3119f54ac05ee", + "tarball": "http://registry.npmjs.org/webmake/-/webmake-0.3.3.tgz" + } + }, + "keywords": [ + "modules", + "make", + "build", + "web", + "browser", + "deploy", + "bundle", + "package", + "builder", + "packager", + "generator", + "browserify" + ], + "url": "http://registry.npmjs.org/webmake/" + }, + "webmetrics": { + "name": "webmetrics", + "description": "Webmetrics JSON API library", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "ryanbreen", + "email": "ryan@ryanbreen.com" + } + ], + "time": { + "modified": "2011-08-31T22:13:11.408Z", + "created": "2011-08-31T22:13:10.938Z", + "0.1.0": "2011-08-31T22:13:11.408Z" + }, + "author": { + "name": "Ryan Breen", + "email": "ryan@ryanbreen.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/webmetrics/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "301448d67fee52d4fd493fed3654aafdf23cd30e", + "tarball": "http://registry.npmjs.org/webmetrics/-/webmetrics-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/webmetrics/" + }, + "webnull": { + "name": "webnull", + "description": "web/null eats your HTTP. a useful tool to assist with stress, performance and experiment testing.", + "dist-tags": { + "latest": "0.0.4" + }, + "readme": "# web/null\n\nweb/null is `/dev/null` for the Web. It silently agrees with and eats up any request\nbeing `VERB`d to it, and keeps statistics of it. \n\nweb/null is great to use as a diagnostics end-socket of any distributed system you\nhave, that works against another system sitting at an HTTP endpoint. \n\nReplace any service with it, in order to have a real peek at what\nyour other services are doing. \n\nweb/null is extremely useful (and being used) for getting stats data during stress\ntesting a complex system. \n\n## Quick Start\n\nclone this repository and run\n\n $ npm install\n\nYou should then be able to run\n\n $ node webnull\n == web/null v0.0.1. I eat your HTTP. ==\n * Listening on port 4000.\n * Flushing to webnull.log every 10 seconds.\n\nAnd now just experiment. Here is apachebench\n\n $ ab -n 10000 -c 10 \"http://localhost:4000/\"\n\nSample output, human-readable (debug)\n\n ...\n 127.0.0.1 - - [Wed, 09 Nov 2011 13:35:36 GMT] \"GET / HTTP/1.1\" 200 - \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1\"\n 127.0.0.1 - - [Wed, 09 Nov 2011 13:35:36 GMT] \"GET /favicon.ico HTTP/1.1\" 200 - \"-\" \"Mozilla/5.0 (X11; Linux i686) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1\"\n 1320845743 51 req(total)\t0 bytes(total)\t51 reqs\t0 bytes\t5.1 req(s)\t0 bytes(avg)\n\nSample output, CSV (webnull.log)\n\n ...\n 1320845743,51,0,51,0,5.1,0\n\n## Doing more\n\nHere's how help looks like:\n\n $ node webnull --help\n Usage: webnull [options]\n\n Options:\n\n -h, --help output usage information\n -V, --version output the version number\n -d, --debug Show when flush happens.\n -c, --canned-response [file] Existing file name to read a response from.\n -o, --output [file] File name to output to.\n -i, --interval [seconds] Flush interval.\n -p, --port [number] Port to listen on.\n\n## Contributing\n\nFork, implement, add tests, pull request, get my everlasting thanks and a respectable place here :).\n\n\n## Copyright\n\nCopyright (c) 2011 [Dotan Nahum](http://gplus.to/dotan) [@jondot](http://twitter.com/jondot). See MIT-LICENSE for further details.\n\n", + "maintainers": [ + { + "name": "jondot", + "email": "jondotan@gmail.com" + } + ], + "time": { + "modified": "2011-11-13T19:36:29.161Z", + "created": "2011-11-13T19:34:57.041Z", + "0.0.3": "2011-11-13T19:35:00.912Z", + "0.0.4": "2011-11-13T19:36:29.161Z" + }, + "author": { + "name": "Dotan Nahum" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/webnull/0.0.3", + "0.0.4": "http://registry.npmjs.org/webnull/0.0.4" + }, + "dist": { + "0.0.3": { + "shasum": "ed078fda5a71a221aa85379996cde01a4d9da41a", + "tarball": "http://registry.npmjs.org/webnull/-/webnull-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "e4504a0ebd12a6a7503ac8bf571efebd9316a234", + "tarball": "http://registry.npmjs.org/webnull/-/webnull-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/webnull/" + }, + "webrepl": { + "name": "webrepl", + "description": "Serve a repl for a node process via a web console", + "dist-tags": { + "latest": "0.4.6" + }, + "maintainers": [ + { + "name": "mmattozzi", + "email": "mike.mattozzi@gmail.com" + } + ], + "time": { + "modified": "2011-12-06T01:27:57.343Z", + "created": "2011-02-15T04:34:44.386Z", + "0.1.0": "2011-02-15T04:34:44.508Z", + "0.2.0": "2011-02-16T03:20:07.216Z", + "0.3.0": "2011-02-19T19:18:15.215Z", + "0.3.1": "2011-02-19T19:38:08.199Z", + "0.4.0": "2011-02-26T21:04:20.086Z", + "0.4.1": "2011-04-26T00:27:56.431Z", + "0.4.2": "2011-04-29T00:06:00.557Z", + "0.4.3": "2011-04-29T23:50:16.499Z", + "0.4.4": "2011-05-03T02:28:01.228Z", + "0.4.5": "2011-05-05T03:59:16.537Z", + "0.4.6": "2011-12-06T01:27:57.343Z" + }, + "author": { + "name": "Mike Mattozzi", + "email": "mike.mattozzi@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mmattozzi/webrepl.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/webrepl/0.1.0", + "0.2.0": "http://registry.npmjs.org/webrepl/0.2.0", + "0.3.0": "http://registry.npmjs.org/webrepl/0.3.0", + "0.3.1": "http://registry.npmjs.org/webrepl/0.3.1", + "0.4.0": "http://registry.npmjs.org/webrepl/0.4.0", + "0.4.1": "http://registry.npmjs.org/webrepl/0.4.1", + "0.4.2": "http://registry.npmjs.org/webrepl/0.4.2", + "0.4.3": "http://registry.npmjs.org/webrepl/0.4.3", + "0.4.4": "http://registry.npmjs.org/webrepl/0.4.4", + "0.4.5": "http://registry.npmjs.org/webrepl/0.4.5", + "0.4.6": "http://registry.npmjs.org/webrepl/0.4.6" + }, + "dist": { + "0.1.0": { + "shasum": "cf1d14d62f0ce57b135848536f731f62b1d2d770", + "tarball": "http://registry.npmjs.org/webrepl/-/webrepl-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "bf4e7dff5cae35c930bb17ec63ab8f9d16c4baad", + "tarball": "http://registry.npmjs.org/webrepl/-/webrepl-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "0e323e7627c04ab631cfb11dc0784183cd3d888e", + "tarball": "http://registry.npmjs.org/webrepl/-/webrepl-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "5b2f6e8184dc10a1877f88531591c7a6d2ff8071", + "tarball": "http://registry.npmjs.org/webrepl/-/webrepl-0.3.1.tgz" + }, + "0.4.0": { + "shasum": "eafb1d34fe8d7864a1da591fcc9b9056fd3c6f96", + "tarball": "http://registry.npmjs.org/webrepl/-/webrepl-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "27a96aa612b1f92f9336f6ff8282c41e4e9c5507", + "tarball": "http://registry.npmjs.org/webrepl/-/webrepl-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "cc4ff91e31189b8b6766b00df8aee573b28ea193", + "tarball": "http://registry.npmjs.org/webrepl/-/webrepl-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "0ac4e3ac5c16bfda1374f1269d1171b1f5f58f68", + "tarball": "http://registry.npmjs.org/webrepl/-/webrepl-0.4.3.tgz" + }, + "0.4.4": { + "shasum": "00a99be9bcffb7b113d59ed0a2d7e3a16589b6bb", + "tarball": "http://registry.npmjs.org/webrepl/-/webrepl-0.4.4.tgz" + }, + "0.4.5": { + "shasum": "3b78c70e0fac9803868bf7a9189f0e8b63ecba5c", + "tarball": "http://registry.npmjs.org/webrepl/-/webrepl-0.4.5.tgz" + }, + "0.4.6": { + "shasum": "3134799a504166a62c20a4ca23a1f7ab77a56a8d", + "tarball": "http://registry.npmjs.org/webrepl/-/webrepl-0.4.6.tgz" + } + }, + "keywords": [ + "repl", + "console", + "management" + ], + "url": "http://registry.npmjs.org/webrepl/" + }, + "webservice": { + "name": "webservice", + "description": "turns modules into RESTFul web-services", + "dist-tags": { + "latest": "0.5.1" + }, + "maintainers": [ + { + "name": "marak", + "email": "marak.squires@gmail.com" + } + ], + "author": { + "name": "Marak Squires", + "email": "marak.squires@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/marak/webservice.js.git" + }, + "time": { + "modified": "2011-06-16T00:36:15.406Z", + "created": "2011-01-17T10:29:31.740Z", + "0.2.0": "2011-01-17T10:29:31.740Z", + "0.3.0": "2011-01-17T10:29:31.740Z", + "0.4.6": "2011-01-21T23:59:28.987Z", + "0.4.8": "2011-01-23T21:40:15.371Z", + "0.4.9": "2011-02-02T09:40:12.105Z", + "0.5.0": "2011-04-28T05:36:16.778Z", + "0.5.1": "2011-06-16T00:36:15.406Z" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/webservice/0.2.0", + "0.3.0": "http://registry.npmjs.org/webservice/0.3.0", + "0.4.6": "http://registry.npmjs.org/webservice/0.4.6", + "0.4.8": "http://registry.npmjs.org/webservice/0.4.8", + "0.4.9": "http://registry.npmjs.org/webservice/0.4.9", + "0.5.0": "http://registry.npmjs.org/webservice/0.5.0", + "0.5.1": "http://registry.npmjs.org/webservice/0.5.1" + }, + "dist": { + "0.2.0": { + "tarball": "http://packages:5984/webservice/-/webservice-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "259518e02632a8a6672c7835aa0589012fc580bd", + "tarball": "http://registry.npmjs.org/webservice/-/webservice-0.3.0.tgz" + }, + "0.4.6": { + "shasum": "5ee9c99083f0dc4e8cf9b48773272d9acda0bf8d", + "tarball": "http://registry.npmjs.org/webservice/-/webservice-0.4.6.tgz" + }, + "0.4.8": { + "shasum": "d295b8beb95275fd8d5a4914a0766ed6b19e87c7", + "tarball": "http://registry.npmjs.org/webservice/-/webservice-0.4.8.tgz" + }, + "0.4.9": { + "shasum": "69575a402991d2fc4309a706dd16158e6b68c70d", + "tarball": "http://registry.npmjs.org/webservice/-/webservice-0.4.9.tgz" + }, + "0.5.0": { + "shasum": "369e85030cd8d7a06c73f68fe7f925157d1bc881", + "tarball": "http://registry.npmjs.org/webservice/-/webservice-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "d538ab466b0289e15dbcb53609b95e18616dae2e", + "tarball": "http://registry.npmjs.org/webservice/-/webservice-0.5.1.tgz" + } + }, + "keywords": [ + "webservice", + "REST", + "web-service", + "JSON" + ], + "url": "http://registry.npmjs.org/webservice/" + }, + "webshell": { + "name": "webshell", + "description": "A console-based web client utility.", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "scoates", + "email": "sean@seancoates.com" + } + ], + "time": { + "modified": "2011-04-13T16:49:02.293Z", + "created": "2011-04-13T16:49:02.162Z", + "0.2.0": "2011-04-13T16:49:02.293Z" + }, + "author": { + "name": "Evan Haas", + "email": "evan@fictivekin.com" + }, + "repository": { + "type": "git", + "url": "https://github.com/fictivekin/webshell.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/webshell/0.2.0" + }, + "dist": { + "0.2.0": { + "shasum": "fa037bd553b5a3fbc2af4f70f6e10cfbc07d4b4f", + "tarball": "http://registry.npmjs.org/webshell/-/webshell-0.2.0.tgz" + } + }, + "keywords": [ + "shell", + "http", + "utility", + "debug" + ], + "url": "http://registry.npmjs.org/webshell/" + }, + "websock": { + "name": "websock", + "description": "a complete websockets implementation", + "dist-tags": { + "latest": "0.3.7" + }, + "maintainers": [ + { + "name": "mafintosh", + "email": "mathiasbuus@gmail.com" + } + ], + "time": { + "modified": "2011-12-14T11:32:06.547Z", + "created": "2011-09-26T09:52:47.029Z", + "0.1.0": "2011-09-26T09:52:48.422Z", + "0.2.0": "2011-09-26T15:13:25.997Z", + "0.2.1": "2011-09-29T09:38:16.761Z", + "0.2.2": "2011-10-04T20:34:25.479Z", + "0.2.3": "2011-10-06T15:03:20.333Z", + "0.3.0": "2011-10-21T17:02:30.466Z", + "0.3.1": "2011-10-21T17:08:23.351Z", + "0.3.2": "2011-10-21T18:50:27.651Z", + "0.3.3": "2011-10-21T18:52:04.517Z", + "0.3.4": "2011-10-21T18:56:00.820Z", + "0.3.5": "2011-10-22T19:35:27.439Z", + "0.3.6": "2011-11-23T22:54:15.950Z", + "0.3.7": "2011-12-14T11:32:06.547Z" + }, + "author": { + "name": "Mathias Buus Madsen", + "email": "mathiasbuus@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/websock/0.1.0", + "0.2.0": "http://registry.npmjs.org/websock/0.2.0", + "0.2.1": "http://registry.npmjs.org/websock/0.2.1", + "0.2.2": "http://registry.npmjs.org/websock/0.2.2", + "0.2.3": "http://registry.npmjs.org/websock/0.2.3", + "0.3.0": "http://registry.npmjs.org/websock/0.3.0", + "0.3.1": "http://registry.npmjs.org/websock/0.3.1", + "0.3.2": "http://registry.npmjs.org/websock/0.3.2", + "0.3.3": "http://registry.npmjs.org/websock/0.3.3", + "0.3.4": "http://registry.npmjs.org/websock/0.3.4", + "0.3.5": "http://registry.npmjs.org/websock/0.3.5", + "0.3.6": "http://registry.npmjs.org/websock/0.3.6", + "0.3.7": "http://registry.npmjs.org/websock/0.3.7" + }, + "dist": { + "0.1.0": { + "shasum": "eb2c46d9a737c101cbc0e1f10bd3d15477d01bf1", + "tarball": "http://registry.npmjs.org/websock/-/websock-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "ce90f87008108c5c7bff13431d8ffc77a0b69667", + "tarball": "http://registry.npmjs.org/websock/-/websock-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "a78767ce7d530e48fcbb0169d01b68d6815e829f", + "tarball": "http://registry.npmjs.org/websock/-/websock-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "9c670d2fca8351cf9d750b700a69c9301c2589fb", + "tarball": "http://registry.npmjs.org/websock/-/websock-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "bcc238c2445106c16d01fbb895968ef579a209db", + "tarball": "http://registry.npmjs.org/websock/-/websock-0.2.3.tgz" + }, + "0.3.0": { + "shasum": "ff69cd54f43ebfc5a71292835d27ea84c2411331", + "tarball": "http://registry.npmjs.org/websock/-/websock-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "b24cde66635dbd8c15cfa390bf77802f16498780", + "tarball": "http://registry.npmjs.org/websock/-/websock-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "c017484169c49338d82ec4206016f163c7cac972", + "tarball": "http://registry.npmjs.org/websock/-/websock-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "16bac7df202b1cb5ebfeec6213f0dcd53870e767", + "tarball": "http://registry.npmjs.org/websock/-/websock-0.3.3.tgz" + }, + "0.3.4": { + "shasum": "c999d3a5f32d0302ce502913f11e81b7e018e0eb", + "tarball": "http://registry.npmjs.org/websock/-/websock-0.3.4.tgz" + }, + "0.3.5": { + "shasum": "434c2d8dcf508d767bfe6ef1f529a6d928de78f3", + "tarball": "http://registry.npmjs.org/websock/-/websock-0.3.5.tgz" + }, + "0.3.6": { + "shasum": "dac1a4570c3c086790fd08a37d471452bb2a3839", + "tarball": "http://registry.npmjs.org/websock/-/websock-0.3.6.tgz" + }, + "0.3.7": { + "shasum": "8366c98bb796652ab2023a16da9fb3bdf042b58a", + "tarball": "http://registry.npmjs.org/websock/-/websock-0.3.7.tgz" + } + }, + "keywords": [ + "browser", + "js", + "websockets", + "sockets", + "web", + "websock" + ], + "url": "http://registry.npmjs.org/websock/" + }, + "websocket": { + "name": "websocket", + "description": "Websocket Client & Server Library tracking the latest protocol drafts from the IETF.", + "dist-tags": { + "latest": "1.0.2" + }, + "maintainers": [ + { + "name": "theturtle32", + "email": "brian@worlize.com" + } + ], + "time": { + "modified": "2011-11-28T22:37:56.321Z", + "created": "2011-07-05T23:56:29.826Z", + "0.0.1": "2011-07-05T23:56:30.823Z", + "0.0.2": "2011-07-18T06:04:02.923Z", + "0.0.3": "2011-07-18T21:02:20.583Z", + "0.0.4": "2011-07-18T23:52:10.397Z", + "0.0.5": "2011-07-20T01:49:40.651Z", + "0.0.6": "2011-07-20T03:25:50.541Z", + "0.0.7": "2011-07-23T02:45:56.734Z", + "0.0.8": "2011-08-01T22:58:04.540Z", + "0.0.9": "2011-08-09T01:44:38.024Z", + "0.0.10": "2011-08-10T01:46:03.649Z", + "0.0.11": "2011-08-12T02:02:23.844Z", + "0.0.12": "2011-08-12T04:11:10.739Z", + "0.0.13": "2011-08-18T23:47:29.899Z", + "0.0.14": "2011-08-25T05:43:31.961Z", + "0.0.15": "2011-08-30T22:37:13.100Z", + "0.0.16": "2011-09-05T20:47:34.105Z", + "0.0.17": "2011-09-25T19:48:05.758Z", + "0.0.18": "2011-10-11T21:14:45.409Z", + "0.0.19": "2011-10-11T21:16:10.076Z", + "0.0.20": "2011-10-20T08:28:48.776Z", + "1.0.0": "2011-10-26T11:25:52.259Z", + "1.0.1": "2011-11-22T07:35:17.281Z", + "1.0.2": "2011-11-28T22:37:56.321Z" + }, + "author": { + "name": "Brian McKelvey", + "email": "brian@worlize.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Worlize/WebSocket-Node.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/websocket/0.0.1", + "0.0.2": "http://registry.npmjs.org/websocket/0.0.2", + "0.0.3": "http://registry.npmjs.org/websocket/0.0.3", + "0.0.4": "http://registry.npmjs.org/websocket/0.0.4", + "0.0.5": "http://registry.npmjs.org/websocket/0.0.5", + "0.0.6": "http://registry.npmjs.org/websocket/0.0.6", + "0.0.7": "http://registry.npmjs.org/websocket/0.0.7", + "0.0.8": "http://registry.npmjs.org/websocket/0.0.8", + "0.0.9": "http://registry.npmjs.org/websocket/0.0.9", + "0.0.10": "http://registry.npmjs.org/websocket/0.0.10", + "0.0.11": "http://registry.npmjs.org/websocket/0.0.11", + "0.0.12": "http://registry.npmjs.org/websocket/0.0.12", + "0.0.13": "http://registry.npmjs.org/websocket/0.0.13", + "0.0.14": "http://registry.npmjs.org/websocket/0.0.14", + "0.0.15": "http://registry.npmjs.org/websocket/0.0.15", + "0.0.16": "http://registry.npmjs.org/websocket/0.0.16", + "0.0.17": "http://registry.npmjs.org/websocket/0.0.17", + "0.0.18": "http://registry.npmjs.org/websocket/0.0.18", + "0.0.19": "http://registry.npmjs.org/websocket/0.0.19", + "0.0.20": "http://registry.npmjs.org/websocket/0.0.20", + "1.0.0": "http://registry.npmjs.org/websocket/1.0.0", + "1.0.1": "http://registry.npmjs.org/websocket/1.0.1", + "1.0.2": "http://registry.npmjs.org/websocket/1.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "67a8c53140d29a5e52f3ea881ee813a18df7dca0", + "tarball": "http://registry.npmjs.org/websocket/-/websocket-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "11b9b3cc82f34aa7d07c9d5667134aebc30cfcc7", + "tarball": "http://registry.npmjs.org/websocket/-/websocket-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "db7f90f3ca13cdd428ff70013cc76f9eb728c3be", + "tarball": "http://registry.npmjs.org/websocket/-/websocket-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "19f3ac34985370395c3ff65183a37c4c7eaaa7fa", + "tarball": "http://registry.npmjs.org/websocket/-/websocket-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "48d3856b57f24618398f4b30cf19cdd061b22134", + "tarball": "http://registry.npmjs.org/websocket/-/websocket-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "2938084f18d693c8826cbdfc902edf26c0b7ed08", + "tarball": "http://registry.npmjs.org/websocket/-/websocket-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "411d84853e41359614c9fda483c35234859df87d", + "tarball": "http://registry.npmjs.org/websocket/-/websocket-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "bc4b6df3c631bde5e1f7cfb373c919f95df55157", + "tarball": "http://registry.npmjs.org/websocket/-/websocket-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "b2ab26a9454d61e529fdc861ce1d27236f385379", + "tarball": "http://registry.npmjs.org/websocket/-/websocket-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "5a5e2db24837c6583078c925a0f905c2c86dcfaa", + "tarball": "http://registry.npmjs.org/websocket/-/websocket-0.0.10.tgz" + }, + "0.0.11": { + "shasum": "2bbecb3fde1fa34894fa089de092dd3082966a6d", + "tarball": "http://registry.npmjs.org/websocket/-/websocket-0.0.11.tgz" + }, + "0.0.12": { + "shasum": "d430596719b537eddfb068fee59b184b0c2b34d0", + "tarball": "http://registry.npmjs.org/websocket/-/websocket-0.0.12.tgz" + }, + "0.0.13": { + "shasum": "7172155e0bacf76c1a81a17a195bd2318133a92e", + "tarball": "http://registry.npmjs.org/websocket/-/websocket-0.0.13.tgz" + }, + "0.0.14": { + "shasum": "8f4dba633d71afa768d495bb2f5955924ae6c75c", + "tarball": "http://registry.npmjs.org/websocket/-/websocket-0.0.14.tgz" + }, + "0.0.15": { + "shasum": "7efa1fd4f4693bac1ac20066e48887c00db2cb5b", + "tarball": "http://registry.npmjs.org/websocket/-/websocket-0.0.15.tgz" + }, + "0.0.16": { + "shasum": "bc9c85d9b7b3acc08fbfeb8a890d3c13e2608e3d", + "tarball": "http://registry.npmjs.org/websocket/-/websocket-0.0.16.tgz" + }, + "0.0.17": { + "shasum": "a7dcc3dd6eb1a15c7675954b31f470dcb62c63f5", + "tarball": "http://registry.npmjs.org/websocket/-/websocket-0.0.17.tgz" + }, + "0.0.18": { + "shasum": "506790d6d18be585208ed7be4b80582eb7120dae", + "tarball": "http://registry.npmjs.org/websocket/-/websocket-0.0.18.tgz" + }, + "0.0.19": { + "shasum": "dde4a56108bd8edb7bd750e7eef6d679229c8821", + "tarball": "http://registry.npmjs.org/websocket/-/websocket-0.0.19.tgz" + }, + "0.0.20": { + "shasum": "569dcde3c524fbd2578d9e69a6189ac9e020f4ff", + "tarball": "http://registry.npmjs.org/websocket/-/websocket-0.0.20.tgz" + }, + "1.0.0": { + "shasum": "725eb2f2cd1fbd5439853c95fb609d1abab6639a", + "tarball": "http://registry.npmjs.org/websocket/-/websocket-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "e11abc9502cefb5db6d921a40589463aee24df58", + "tarball": "http://registry.npmjs.org/websocket/-/websocket-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "68157fdb86f60ab241f59b6b9e4f9b1e33be0c5f", + "tarball": "http://registry.npmjs.org/websocket/-/websocket-1.0.2.tgz" + } + }, + "keywords": [ + "websocket", + "socket", + "networking", + "comet", + "push" + ], + "url": "http://registry.npmjs.org/websocket/" + }, + "websocket-client": { + "name": "websocket-client", + "description": "An HTML5 Web Sockets client", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "pgriess", + "email": "pg@std.in" + } + ], + "author": { + "name": "Peter Griess", + "email": "pg@std.in" + }, + "versions": { + "0.9.3": "http://registry.npmjs.org/websocket-client/0.9.3", + "0.9.4": "http://registry.npmjs.org/websocket-client/0.9.4", + "0.9.5": "http://registry.npmjs.org/websocket-client/0.9.5", + "1.0.0": "http://registry.npmjs.org/websocket-client/1.0.0" + }, + "dist": { + "0.9.3": { + "tarball": "http://packages:5984/websocket-client/-/websocket-client-0.9.3.tgz" + }, + "0.9.4": { + "tarball": "http://packages:5984/websocket-client/-/websocket-client-0.9.4.tgz" + }, + "0.9.5": { + "tarball": "http://packages:5984/websocket-client/-/websocket-client-0.9.5.tgz" + }, + "1.0.0": { + "shasum": "f8727a2756b2324d1fd1b71e4db4c98a77007cda", + "tarball": "http://registry.npmjs.org/websocket-client/-/websocket-client-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/websocket-client/" + }, + "websocket-protocol": { + "name": "websocket-protocol", + "description": "A general websocket-protocol implementation for both Clients and Servers.", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "miksago", + "email": "micheil@brandedcode.com" + } + ], + "time": { + "modified": "2011-08-16T22:24:31.113Z", + "created": "2011-08-16T22:24:30.390Z", + "0.0.0": "2011-08-16T22:24:31.113Z" + }, + "author": { + "name": "Micheil Smith", + "email": "micheil@brandedcode.com", + "url": "http://brandedcode.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/miksago/node-websocket-protocol.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/websocket-protocol/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "932b5840cabfe7d0ab24a1c4e264f39b7159c4f3", + "tarball": "http://registry.npmjs.org/websocket-protocol/-/websocket-protocol-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/websocket-protocol/" + }, + "websocket-server": { + "name": "websocket-server", + "description": "A WebSocket Server for node.js, 90-100% spec compatible.", + "dist-tags": { + "latest": "1.4.04", + "stable": "1.4.04" + }, + "maintainers": [ + { + "name": "miksago", + "email": "micheil@brandedcode.com" + } + ], + "author": { + "name": "Micheil Smith", + "email": "micheil@brandedcode.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/miksago/node-websocket-server.git" + }, + "time": { + "modified": "2011-06-20T22:45:25.813Z", + "created": "2011-03-25T07:49:32.039Z", + "1.0.4": "2011-03-25T07:49:32.039Z", + "1.0.5": "2011-03-25T07:49:32.039Z", + "1.0.51": "2011-03-25T07:49:32.039Z", + "1.0.52": "2011-03-25T07:49:32.039Z", + "1.0.53": "2011-03-25T07:49:32.039Z", + "1.1.00": "2011-03-25T07:49:32.039Z", + "1.2.00": "2011-03-25T07:49:32.039Z", + "1.3.00": "2011-03-25T07:49:32.039Z", + "1.3.01": "2011-03-25T07:49:32.039Z", + "1.3.02": "2011-03-25T07:49:32.039Z", + "1.3.03": "2011-03-25T07:49:32.039Z", + "1.3.50": "2011-03-25T07:49:32.039Z", + "1.3.52": "2011-03-25T07:49:32.039Z", + "1.3.53": "2011-03-25T07:49:32.039Z", + "1.4.00": "2011-03-25T07:49:32.039Z", + "1.4.01": "2011-03-25T07:49:32.039Z", + "1.4.02": "2011-03-25T07:49:32.039Z", + "1.4.03": "2011-03-28T04:51:52.219Z", + "1.4.04": "2011-06-20T22:40:23.167Z" + }, + "versions": { + "1.0.4": "http://registry.npmjs.org/websocket-server/1.0.4", + "1.0.5": "http://registry.npmjs.org/websocket-server/1.0.5", + "1.0.51": "http://registry.npmjs.org/websocket-server/1.0.51", + "1.0.52": "http://registry.npmjs.org/websocket-server/1.0.52", + "1.0.53": "http://registry.npmjs.org/websocket-server/1.0.53", + "1.1.00": "http://registry.npmjs.org/websocket-server/1.1.00", + "1.2.00": "http://registry.npmjs.org/websocket-server/1.2.00", + "1.3.00": "http://registry.npmjs.org/websocket-server/1.3.00", + "1.3.01": "http://registry.npmjs.org/websocket-server/1.3.01", + "1.3.02": "http://registry.npmjs.org/websocket-server/1.3.02", + "1.3.03": "http://registry.npmjs.org/websocket-server/1.3.03", + "1.3.50": "http://registry.npmjs.org/websocket-server/1.3.50", + "1.3.52": "http://registry.npmjs.org/websocket-server/1.3.52", + "1.3.53": "http://registry.npmjs.org/websocket-server/1.3.53", + "1.4.00": "http://registry.npmjs.org/websocket-server/1.4.00", + "1.4.01": "http://registry.npmjs.org/websocket-server/1.4.01", + "1.4.02": "http://registry.npmjs.org/websocket-server/1.4.02", + "1.4.03": "http://registry.npmjs.org/websocket-server/1.4.03", + "1.4.04": "http://registry.npmjs.org/websocket-server/1.4.04" + }, + "dist": { + "1.0.4": { + "tarball": "http://packages:5984/websocket-server/-/websocket-server-1.0.4.tgz" + }, + "1.0.5": { + "tarball": "http://packages:5984/websocket-server/-/websocket-server-1.0.5.tgz" + }, + "1.0.51": { + "tarball": "http://packages:5984/websocket-server/-/websocket-server-1.0.51.tgz" + }, + "1.0.52": { + "tarball": "http://packages:5984/websocket-server/-/websocket-server-1.0.52.tgz" + }, + "1.0.53": { + "tarball": "http://packages:5984/websocket-server/-/websocket-server-1.0.53.tgz" + }, + "1.1.00": { + "tarball": "http://packages:5984/websocket-server/-/websocket-server-1.1.00.tgz" + }, + "1.2.00": { + "tarball": "http://packages:5984/websocket-server/-/websocket-server-1.2.00.tgz" + }, + "1.3.00": { + "tarball": "http://packages:5984/websocket-server/-/websocket-server-1.3.00.tgz" + }, + "1.3.01": { + "tarball": "http://packages:5984/websocket-server/-/websocket-server-1.3.01.tgz" + }, + "1.3.02": { + "tarball": "http://packages:5984/websocket-server/-/websocket-server-1.3.02.tgz" + }, + "1.3.03": { + "tarball": "http://packages:5984/websocket-server/-/websocket-server-1.3.03.tgz" + }, + "1.3.50": { + "tarball": "http://packages:5984/websocket-server/-/websocket-server-1.3.50.tgz" + }, + "1.3.52": { + "tarball": "http://packages:5984/websocket-server/-/websocket-server-1.3.52.tgz" + }, + "1.3.53": { + "tarball": "http://packages:5984/websocket-server/-/websocket-server-1.3.53.tgz" + }, + "1.4.00": { + "tarball": "http://registry.npmjs.org/websocket-server/-/websocket-server-1.4.00.tgz" + }, + "1.4.01": { + "tarball": "http://registry.npmjs.org/websocket-server/-/websocket-server-1.4.01.tgz" + }, + "1.4.02": { + "shasum": "de66dc8bc7ea4ba6c71382c9261d8148a355a2a7", + "tarball": "http://registry.npmjs.org/websocket-server/-/websocket-server-1.4.02.tgz" + }, + "1.4.03": { + "shasum": "58b06cd242cb6e014002e455186b08e22316a7ff", + "tarball": "http://registry.npmjs.org/websocket-server/-/websocket-server-1.4.03.tgz" + }, + "1.4.04": { + "shasum": "1fbbab618ac49a0df136e231e54a679beed115ea", + "tarball": "http://registry.npmjs.org/websocket-server/-/websocket-server-1.4.04.tgz" + } + }, + "url": "http://registry.npmjs.org/websocket-server/" + }, + "websocket.io": { + "name": "websocket.io", + "description": "Socket.IO websocket server", + "dist-tags": { + "latest": "0.1.2" + }, + "readme": "WebSocket.IO\n============\n\nWebSocket.IO is an abstraction of the websocket server previously used by Socket.IO.\nIt has the broadest support for websocket protocol/specifications and an API that\nallows for interoperability with higher-level frameworks such as\n[Engine](http://github.com/learnboost/engine.io),\n[Socket.IO](http://github.com/learnboost/socket.io)'s realtime core.\n\n## Features\n\n- Fast\n- Minimalistic\n - Offers an integration API for higher-level impls to handle authorization,\n routing, etc\n- Widest support of protocols\n - Draft-75\n - Draft-76\n - Draft-00\n - Protocol version 7\n - Protocol version 8\n - Protocol version 13\n- Written for Node 0.6\n\n## How to use\n\n### Standalone\n\n#### Listening on a port\n\n```js\nvar ws = require('websocket.io')\n , server = ws.listen(3000)\n\nserver.on('connection', function (client) {\n client.on('message', function () { });\n client.on('close', function () { });\n});\n```\n\n#### Intercepting WebSocket requests for a http.Server\n\n```js\nvar ws = require('websocket.io')\n , http = require('http').createServer().listen(3000)\n , server = ws.attach(http)\n\nserver.on('connection', function (client) {\n client.on('message', function () { });\n client.on('close', function () { });\n});\n```\n\n### Passing in requests\n\n```js\nvar ws = require('websocket.io')\n , server = new ws.Server()\n\n// … somewhere in your http server code\nserver.on('upgrade', function (req, socket, head) {\n server.handleUpgrade(req, socket, head);\n});\n```\n\n### Client-side example\n\n```js\nvar ws = new WebSocket(\"ws://host:port/\"); \n\nsocket.onopen = function() {\n //do something when connection estabilished\n};\n\nsocket.onmessage = function(message) {\n //do something when message arrives\n};\n\nsocket.onclose = function() {\n //do something when connection close\n};\n\n```\n\n## API\n\n

\n\n### Top-level\n\nThese are exposed by `require('websocket.io')`\n\n#### Properties\n\n- `version` _(String)_: protocol revision number\n- `Server` _(Function)_: server constructor\n- `Socket` _(Function)_: client constructor\n- `Logger` _(Function)_: logger constructor\n- `protocols` _(Object)_: hash of different `Socket` constructors for each protocol\n - `drafts` _(Function)_: client for drafts 75/76/00\n - `7` _(Function)_: client for protocol 7\n - `8` _(Function)_: client for protocol 8\n - `13` _(Function)_: client for protocol 13\n\n#### Methods\n\n- `listen`\n - Creates an `http.Server` which listens on the given port and attaches WS\n to it. It returns `501 Not Implemented` for regular http requests.\n - **Parameters**\n - `Number`: port to listen on.\n - `Function`: callback for `listen`. The options object can be supplied\n as second parameter as well.\n - `Object`: optional, options object. See `Server` constructor API for\n options.\n - **Returns** `Server`\n- `attach`\n - Captures `upgrade` requests for a `http.Server`. In other words, makes\n a regular http.Server websocket-compatible.\n - **Parameters**\n - `http.Server`: server to attach to.\n - `Object`: optional, options object. See `Server` constructor API for\n options.\n - **Returns** `Server`\n\n

\n\n### Server\n\n#### Events\n\n- `connection`\n - Fired when a new connection is established.\n - **Arguments**\n - `Socket`: a Socket object\n\n#### Methods\n\n- **constructor**\n - Initializes the server\n - **Parameters**\n - `Object`: optional, options object\n - **Options**\n - `logger` (`Object`/`Boolean`): logger object. If you want to customize the\n logger options, please supply a new `Logger` object (see API below). If you\n want to enable it, set this option to `true`.\n- ``handleUpgrade``\n - Handles an incoming request that triggered an `upgrade` event\n - **Parameters**\n - `http.Request`: http request\n - `http.Stream`: request socket\n - `Buffer`: stream head\n - **Returns** `Server`\n\n

\n\n### Socket\n\n#### Events\n\n- `message`\n - Fired when data is received.\n - **Arguments**\n - `String`: data\n- `close`\n - Fired when the connection is closed.\n\n#### Properties\n\n- `open`\n - Whether the socket is open for writing\n\n#### Methods\n\n- ``send``\n - Sends data to the socket.\n - **Parameters**\n - `String`: data to send\n - **Returns** `Socket`\n- ``close``\n - Closes the socket.\n - **Returns** `Socket`\n- ``destroy``\n - Forcibly closes the socket.\n - **Returns** `Socket`\n\n

\n\n### Logger\n\n#### Methods\n\n- **constructor**\n - Initializes the logger\n - **Parameters**\n - `Object`: optional, options object\n - **Options**\n - `enabled` (`Boolean`): whether to output to the console (`false`).\n - `log level` (`Number`): log level (`3`).\n - `colors` (`Boolean`): whether to output colors (`true`).\n\n#### Methods\n\n- **log**\n- **debug**\n- **warn**\n- **info**\n\n## Support\n\nThe support channels for `websocket.io` are the same as `socket.io`:\n\n * irc.freenode.net **#socket.io**\n * [Google Groups](http://groups.google.com/group/socket_io)\n * [Website](http://socket.io)\n\n## Development\n\nTo contribute patches, run tests or benchmarks, make sure to clone the\nrepository:\n\n```\ngit clone git://github.com/LearnBoost/websocket.io.git\n```\n\nThen:\n\n```\ncd websocket.io\nnpm install\n```\n\n## Tests\n\n```\n$ make test\n```\n## Benchmarks\n\n```\n$ make bench\n```\n\n## License \n\n(The MIT License)\n\nCopyright (c) 2011 Guillermo Rauch <guillermo@learnboost.com>\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n", + "maintainers": [ + { + "name": "rauchg", + "email": "rauchg@gmail.com" + } + ], + "time": { + "modified": "2011-12-12T22:10:44.524Z", + "created": "2011-11-27T21:28:46.374Z", + "0.1.1": "2011-11-27T21:28:48.305Z", + "0.1.2": "2011-12-12T22:10:44.524Z" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/websocket.io/0.1.1", + "0.1.2": "http://registry.npmjs.org/websocket.io/0.1.2" + }, + "dist": { + "0.1.1": { + "shasum": "148e285b0da1c07ab24bbbff0bc6c0af0ce5eeef", + "tarball": "http://registry.npmjs.org/websocket.io/-/websocket.io-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "1249de393fb4f265cd4785981ce6cb8755da826f", + "tarball": "http://registry.npmjs.org/websocket.io/-/websocket.io-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/websocket.io/" + }, + "websockets": { + "name": "websockets", + "description": "WebSocket Server & Client API", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "okubo", + "email": "okubo@east-cloud.co.jp" + } + ], + "time": { + "modified": "2011-08-27T08:24:18.298Z", + "created": "2011-08-27T08:24:14.875Z", + "0.1.0": "2011-08-27T08:24:18.298Z" + }, + "author": { + "name": "EastCloud", + "email": "info@east-cloud.co.jp" + }, + "repository": { + "type": "git", + "url": "git://github.com/EastCloud/node-spreadsheets.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/websockets/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "be110e608550ab8843af04cefdea9f08db5721df", + "tarball": "http://registry.npmjs.org/websockets/-/websockets-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/websockets/" + }, + "webworker": { + "name": "webworker", + "description": "An implementation of the HTML5 Web Worker API", + "dist-tags": { + "latest": "0.8.4" + }, + "maintainers": [ + { + "name": "pgriess", + "email": "pg@std.in" + } + ], + "author": { + "name": "Peter Griess", + "email": "pg@std.in" + }, + "time": { + "modified": "2011-05-22T20:41:43.188Z", + "created": "2011-04-08T14:23:46.307Z", + "0.1.0": "2011-04-08T14:23:46.307Z", + "0.8.0": "2011-04-08T14:23:46.307Z", + "0.8.1": "2011-04-08T14:23:46.307Z", + "0.8.2": "2011-04-08T14:23:46.307Z", + "0.8.3": "2011-04-08T14:23:46.307Z", + "0.8.4": "2011-05-22T20:41:43.188Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/webworker/0.1.0", + "0.8.0": "http://registry.npmjs.org/webworker/0.8.0", + "0.8.1": "http://registry.npmjs.org/webworker/0.8.1", + "0.8.2": "http://registry.npmjs.org/webworker/0.8.2", + "0.8.3": "http://registry.npmjs.org/webworker/0.8.3", + "0.8.4": "http://registry.npmjs.org/webworker/0.8.4" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/webworker/-/webworker-0.1.0.tgz" + }, + "0.8.0": { + "tarball": "http://packages:5984/webworker/-/webworker-0.8.0.tgz" + }, + "0.8.1": { + "tarball": "http://packages:5984/webworker/-/webworker-0.8.1.tgz" + }, + "0.8.2": { + "tarball": "http://packages:5984/webworker/-/webworker-0.8.2.tgz" + }, + "0.8.3": { + "shasum": "30847f2d2dfb6c715583ec76faa8ad36953e5f48", + "tarball": "http://registry.npmjs.org/webworker/-/webworker-0.8.3.tgz" + }, + "0.8.4": { + "shasum": "64af3e8b5ef4d277da2b6f4242ed18cfae338a84", + "tarball": "http://registry.npmjs.org/webworker/-/webworker-0.8.4.tgz" + } + }, + "url": "http://registry.npmjs.org/webworker/" + }, + "weibo": { + "name": "weibo", + "description": "Weibo SDK, base on node. Now support weibo, tqq, tsohu, twitter.", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "fengmk2", + "email": "fengmk2@gmail.com" + } + ], + "time": { + "modified": "2011-11-19T20:37:32.202Z", + "created": "2011-04-21T04:04:12.083Z", + "0.1.0": "2011-04-21T04:04:13.134Z", + "0.1.1": "2011-04-21T04:12:14.112Z", + "0.1.2": "2011-05-15T09:13:45.939Z", + "0.1.3": "2011-05-17T12:37:22.127Z", + "0.1.4": "2011-05-30T03:42:25.156Z", + "0.1.5": "2011-06-17T12:37:56.280Z", + "0.1.6": "2011-07-21T11:58:19.511Z", + "0.1.7": "2011-07-21T16:02:35.730Z", + "0.1.8": "2011-07-23T15:26:20.881Z", + "0.1.9": "2011-08-08T03:58:15.621Z", + "0.2.0": "2011-09-29T04:29:04.603Z", + "0.2.1": "2011-10-21T14:57:02.179Z", + "0.2.2": "2011-11-14T17:45:55.878Z", + "0.3.0": "2011-11-19T20:37:32.202Z" + }, + "author": { + "name": "fengmk2", + "email": "fengmk2@gmail.com", + "url": "http://fengmk2.cnblogs.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/fengmk2/node-weibo.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/weibo/0.1.0", + "0.1.1": "http://registry.npmjs.org/weibo/0.1.1", + "0.1.2": "http://registry.npmjs.org/weibo/0.1.2", + "0.1.3": "http://registry.npmjs.org/weibo/0.1.3", + "0.1.4": "http://registry.npmjs.org/weibo/0.1.4", + "0.1.5": "http://registry.npmjs.org/weibo/0.1.5", + "0.1.6": "http://registry.npmjs.org/weibo/0.1.6", + "0.1.7": "http://registry.npmjs.org/weibo/0.1.7", + "0.1.8": "http://registry.npmjs.org/weibo/0.1.8", + "0.1.9": "http://registry.npmjs.org/weibo/0.1.9", + "0.2.0": "http://registry.npmjs.org/weibo/0.2.0", + "0.2.1": "http://registry.npmjs.org/weibo/0.2.1", + "0.2.2": "http://registry.npmjs.org/weibo/0.2.2", + "0.3.0": "http://registry.npmjs.org/weibo/0.3.0" + }, + "dist": { + "0.1.0": { + "shasum": "7bce72ededaffc0fd9ded241bf1f87974d64aa4c", + "tarball": "http://registry.npmjs.org/weibo/-/weibo-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "a6987c47d289135343812d4ee622224800ee4703", + "tarball": "http://registry.npmjs.org/weibo/-/weibo-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "c0245ae626bc2753a509d6745802e81a24475f14", + "tarball": "http://registry.npmjs.org/weibo/-/weibo-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "6239b0b04519243b5bd013068f26a88c8390b99f", + "tarball": "http://registry.npmjs.org/weibo/-/weibo-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "33b81da698d3b9316ac3274cad3e44762fc73024", + "tarball": "http://registry.npmjs.org/weibo/-/weibo-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "e3cd3414b6e3ed3625f912a499cb18aeed6c56fa", + "tarball": "http://registry.npmjs.org/weibo/-/weibo-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "03fe543ad34bb4ee1f88a5e740db5f83c5254cf7", + "tarball": "http://registry.npmjs.org/weibo/-/weibo-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "dd463759e779ea895c44be522d84ff34e1decff6", + "tarball": "http://registry.npmjs.org/weibo/-/weibo-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "de388eabac342ff5b780932694ef008a790fb9e1", + "tarball": "http://registry.npmjs.org/weibo/-/weibo-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "19dd944619f282c8ac38bf1838132b31ea4e13b8", + "tarball": "http://registry.npmjs.org/weibo/-/weibo-0.1.9.tgz" + }, + "0.2.0": { + "shasum": "85887bb64ea0e5850c26912c74bac62287aee3d5", + "tarball": "http://registry.npmjs.org/weibo/-/weibo-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "b0986a132899789410923f77ae054b92306b3835", + "tarball": "http://registry.npmjs.org/weibo/-/weibo-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "f36eb02658a3c26aa5454060522b02eaa51b68e7", + "tarball": "http://registry.npmjs.org/weibo/-/weibo-0.2.2.tgz" + }, + "0.3.0": { + "shasum": "b78700494b7cf36ec68782daeff6a10137af9e1a", + "tarball": "http://registry.npmjs.org/weibo/-/weibo-0.3.0.tgz" + } + }, + "keywords": [ + "framework", + "sinatra", + "web", + "rest", + "restful", + "weibo", + "sdk" + ], + "url": "http://registry.npmjs.org/weibo/" + }, + "weld": { + "name": "weld", + "description": "Template antimatter for javascript", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "hij1nx", + "email": "hij1nx@me.com" + } + ], + "time": { + "modified": "2011-10-25T21:48:56.298Z", + "created": "2011-02-19T04:38:40.084Z", + "0.1.0": "2011-02-19T04:38:40.245Z", + "0.2.0": "2011-02-27T05:46:56.385Z", + "0.2.1": "2011-06-06T13:11:10.421Z", + "0.2.2": "2011-10-25T21:48:56.298Z" + }, + "author": { + "name": "hij1nx", + "email": "hij1nx@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/weld/0.1.0", + "0.2.0": "http://registry.npmjs.org/weld/0.2.0", + "0.2.1": "http://registry.npmjs.org/weld/0.2.1", + "0.2.2": "http://registry.npmjs.org/weld/0.2.2" + }, + "dist": { + "0.1.0": { + "shasum": "9828252a8110cbcb0cb8483925b4886b23b80f24", + "tarball": "http://registry.npmjs.org/weld/-/weld-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "d47f24144a2bbf22dc9d8981eb0edd0306baed5f", + "tarball": "http://registry.npmjs.org/weld/-/weld-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "cb86eaf1c5c5e3ac5d7cf783cb881f78f759421b", + "tarball": "http://registry.npmjs.org/weld/-/weld-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "1024d955bbdd2ffab2ed40afc694aad3536e1226", + "tarball": "http://registry.npmjs.org/weld/-/weld-0.2.2.tgz" + } + }, + "keywords": [ + "templates", + "templating", + "jsdom", + "unobtrusive" + ], + "url": "http://registry.npmjs.org/weld/" + }, + "wepp": { + "name": "wepp", + "description": "a node based LESS/CSS and JavaScript Preprocessor", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "lrsjng", + "email": "lrsjng@gmail.com" + } + ], + "time": { + "modified": "2011-10-30T12:26:51.322Z", + "created": "2011-10-30T12:22:44.649Z", + "0.4.0": "2011-10-30T12:22:49.188Z", + "0.3.0": "2011-10-30T12:26:51.322Z" + }, + "author": { + "name": "Lars Jung", + "email": "lrsjng@gmail.com" + }, + "versions": { + "0.4.0": "http://registry.npmjs.org/wepp/0.4.0", + "0.3.0": "http://registry.npmjs.org/wepp/0.3.0" + }, + "dist": { + "0.4.0": { + "shasum": "85f10fd7b2a6c53ff75f8a61afbf6f068f13c038", + "tarball": "http://registry.npmjs.org/wepp/-/wepp-0.4.0.tgz" + }, + "0.3.0": { + "shasum": "1000a8fc3942a729b012978a553708f15b96a1ba", + "tarball": "http://registry.npmjs.org/wepp/-/wepp-0.3.0.tgz" + } + }, + "keywords": [ + "preprocessor", + "less", + "css", + "lesscss", + "js", + "javascript" + ], + "url": "http://registry.npmjs.org/wepp/" + }, + "whatlang": { + "name": "whatlang", + "description": "simple language detection module", + "dist-tags": { + "latest": "0.1.0-1" + }, + "maintainers": [ + { + "name": "franzenzenhofer", + "email": "f.enzenhofer@gmail.com" + } + ], + "time": { + "modified": "2011-04-24T20:38:52.170Z", + "created": "2011-04-24T20:36:25.976Z", + "0.1.0-0": "2011-04-24T20:36:26.412Z", + "0.1.0-1": "2011-04-24T20:38:52.170Z" + }, + "author": { + "name": "Franz Enzenhofer", + "email": "f.enzenhofer@gmail.com" + }, + "versions": { + "0.1.0-0": "http://registry.npmjs.org/whatlang/0.1.0-0", + "0.1.0-1": "http://registry.npmjs.org/whatlang/0.1.0-1" + }, + "dist": { + "0.1.0-0": { + "shasum": "3c4a3cc137bbac822cc2a115166806109385961d", + "tarball": "http://registry.npmjs.org/whatlang/-/whatlang-0.1.0-0.tgz" + }, + "0.1.0-1": { + "shasum": "57d60a355255253b1fe036bddc8b869452475524", + "tarball": "http://registry.npmjs.org/whatlang/-/whatlang-0.1.0-1.tgz" + } + }, + "keywords": [ + "language", + "google" + ], + "url": "http://registry.npmjs.org/whatlang/" + }, + "wheat": { + "name": "wheat", + "description": "Git powered javascript blog.", + "dist-tags": { + "latest": "0.2.4" + }, + "maintainers": [ + { + "name": "creationix", + "email": "tim@creationix.com" + } + ], + "author": { + "name": "Tim Caswell", + "email": "tim@creationix.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/creationix/wheat.git" + }, + "time": { + "modified": "2011-12-13T17:51:29.818Z", + "created": "2011-03-05T07:27:29.185Z", + "0.1.1": "2011-03-05T07:27:29.185Z", + "0.1.2": "2011-03-05T07:27:29.185Z", + "0.1.3": "2011-03-05T07:27:29.185Z", + "0.1.4": "2011-03-05T07:27:29.185Z", + "0.1.5": "2011-03-05T07:27:29.185Z", + "0.2.0": "2011-03-05T07:27:29.185Z", + "0.2.1": "2011-09-27T06:47:10.553Z", + "0.2.2": "2011-09-27T07:09:10.302Z", + "0.2.3": "2011-09-27T07:20:57.418Z", + "0.2.4": "2011-12-13T17:51:29.818Z" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/wheat/0.1.1", + "0.1.2": "http://registry.npmjs.org/wheat/0.1.2", + "0.1.3": "http://registry.npmjs.org/wheat/0.1.3", + "0.1.4": "http://registry.npmjs.org/wheat/0.1.4", + "0.1.5": "http://registry.npmjs.org/wheat/0.1.5", + "0.2.0": "http://registry.npmjs.org/wheat/0.2.0", + "0.2.1": "http://registry.npmjs.org/wheat/0.2.1", + "0.2.2": "http://registry.npmjs.org/wheat/0.2.2", + "0.2.3": "http://registry.npmjs.org/wheat/0.2.3", + "0.2.4": "http://registry.npmjs.org/wheat/0.2.4" + }, + "dist": { + "0.1.1": { + "tarball": "http://packages:5984/wheat/-/wheat-0.1.1.tgz" + }, + "0.1.2": { + "tarball": "http://packages:5984/wheat/-/wheat-0.1.2.tgz" + }, + "0.1.3": { + "tarball": "http://packages:5984/wheat/-/wheat-0.1.3.tgz" + }, + "0.1.4": { + "tarball": "http://packages:5984/wheat/-/wheat-0.1.4.tgz" + }, + "0.1.5": { + "tarball": "http://packages:5984/wheat/-/wheat-0.1.5.tgz" + }, + "0.2.0": { + "shasum": "38f337ac71b0d03f6f2093c073f34edb8379deb1", + "tarball": "http://registry.npmjs.org/wheat/-/wheat-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "9fd4b196a9ddb3a9bc75959fbb4244f166e3e102", + "tarball": "http://registry.npmjs.org/wheat/-/wheat-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "3ca8232cd6666d8c9485a2fa709fb599bd0da598", + "tarball": "http://registry.npmjs.org/wheat/-/wheat-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "4a9a75c62ffc3a5e93bad42ddaf4be354517d323", + "tarball": "http://registry.npmjs.org/wheat/-/wheat-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "0e72f510c6753288ab9a5f93820015c82256a1f9", + "tarball": "http://registry.npmjs.org/wheat/-/wheat-0.2.4.tgz" + } + }, + "url": "http://registry.npmjs.org/wheat/" + }, + "which": { + "name": "which", + "description": "Like which(1) unix command. Find the first instance of an executable in the PATH.", + "dist-tags": { + "latest": "1.0.2" + }, + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "time": { + "modified": "2011-09-13T20:01:41.982Z", + "created": "2011-08-07T18:36:12.410Z", + "1.0.0": "2011-08-07T18:36:17.514Z", + "1.0.1": "2011-09-03T00:20:41.576Z", + "1.0.2": "2011-09-13T20:01:41.982Z" + }, + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/isaacs/node-which.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/which/1.0.0", + "1.0.1": "http://registry.npmjs.org/which/1.0.1", + "1.0.2": "http://registry.npmjs.org/which/1.0.2" + }, + "dist": { + "1.0.0": { + "shasum": "31c5f9bd9a939d6a08caf65456a9b660138ca5fc", + "tarball": "http://registry.npmjs.org/which/-/which-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "863c91cb0de414808e2dfa4e4473909d5f7945f5", + "tarball": "http://registry.npmjs.org/which/-/which-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "d50433d4935ccf0adf0c4f332c174b300a049415", + "tarball": "http://registry.npmjs.org/which/-/which-1.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/which/" + }, + "whiskers": { + "name": "whiskers", + "description": "A mustachioed templating library", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "gsf", + "email": "gsf747@gmail.com" + } + ], + "time": { + "modified": "2011-12-08T22:15:37.161Z", + "created": "2011-03-21T22:22:21.998Z", + "0.0.1": "2011-03-21T22:22:22.114Z", + "0.0.2": "2011-03-21T22:24:17.163Z", + "0.0.3": "2011-03-25T17:53:36.369Z", + "0.0.4": "2011-05-11T21:41:34.843Z", + "0.0.6": "2011-11-15T20:50:07.713Z", + "0.0.11": "2011-11-15T20:50:41.901Z", + "0.0.7": "2011-11-15T20:50:13.298Z", + "0.0.8": "2011-11-15T20:50:23.468Z", + "0.0.9": "2011-11-15T20:50:29.608Z", + "0.0.10": "2011-11-15T20:50:35.511Z", + "0.0.5": "2011-11-15T20:50:00.960Z", + "0.0.12": "2011-11-24T06:23:11.877Z", + "0.1.0": "2011-11-24T09:13:39.666Z", + "0.1.1": "2011-11-29T23:38:26.231Z", + "0.1.2": "2011-12-08T22:15:37.161Z" + }, + "author": { + "name": "Gabriel Farrell", + "email": "g@grrawr.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/gsf/whiskers.js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/whiskers/0.0.1", + "0.0.2": "http://registry.npmjs.org/whiskers/0.0.2", + "0.0.3": "http://registry.npmjs.org/whiskers/0.0.3", + "0.0.4": "http://registry.npmjs.org/whiskers/0.0.4", + "0.0.5": "http://registry.npmjs.org/whiskers/0.0.5", + "0.0.6": "http://registry.npmjs.org/whiskers/0.0.6", + "0.0.7": "http://registry.npmjs.org/whiskers/0.0.7", + "0.0.8": "http://registry.npmjs.org/whiskers/0.0.8", + "0.0.9": "http://registry.npmjs.org/whiskers/0.0.9", + "0.0.10": "http://registry.npmjs.org/whiskers/0.0.10", + "0.0.11": "http://registry.npmjs.org/whiskers/0.0.11", + "0.0.12": "http://registry.npmjs.org/whiskers/0.0.12", + "0.1.0": "http://registry.npmjs.org/whiskers/0.1.0", + "0.1.1": "http://registry.npmjs.org/whiskers/0.1.1", + "0.1.2": "http://registry.npmjs.org/whiskers/0.1.2" + }, + "dist": { + "0.0.1": { + "shasum": "34caacb0b0605f9a21201e06401ed0a151a27147", + "tarball": "http://registry.npmjs.org/whiskers/-/whiskers-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "d218981f33a157393a688c78590ed082983e34e5", + "tarball": "http://registry.npmjs.org/whiskers/-/whiskers-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "d08d3fcd9880c0a00186012b4a9a1a33292ba19c", + "tarball": "http://registry.npmjs.org/whiskers/-/whiskers-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "b8ef99ff3cbe492cc03dab720d33ce85615da73d", + "tarball": "http://registry.npmjs.org/whiskers/-/whiskers-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "7d0924c59c5e661e3718a558886c3a5bda378c15", + "tarball": "http://registry.npmjs.org/whiskers/-/whiskers-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "b7b76251a6ae33cbbd715c0b234fd13418ced88b", + "tarball": "http://registry.npmjs.org/whiskers/-/whiskers-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "e19abba79dab33b9e0cb785a51cfd0563fbe4985", + "tarball": "http://registry.npmjs.org/whiskers/-/whiskers-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "6989110e7e551462472d320c582dadaa190a5799", + "tarball": "http://registry.npmjs.org/whiskers/-/whiskers-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "5946253d9c49ada7f413eda21e056fb5ed92b7e0", + "tarball": "http://registry.npmjs.org/whiskers/-/whiskers-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "54bab49d80f5261c50eb98c446c08ad55d1c49a6", + "tarball": "http://registry.npmjs.org/whiskers/-/whiskers-0.0.10.tgz" + }, + "0.0.11": { + "shasum": "0de5fb27ae363e6ab7655492652a2f1394959074", + "tarball": "http://registry.npmjs.org/whiskers/-/whiskers-0.0.11.tgz" + }, + "0.0.12": { + "shasum": "d48ed96043b99206846e60e34433e115d42180d6", + "tarball": "http://registry.npmjs.org/whiskers/-/whiskers-0.0.12.tgz" + }, + "0.1.0": { + "shasum": "d0a3606a3e914fb7dbc18219c75ee2d9b31f5e84", + "tarball": "http://registry.npmjs.org/whiskers/-/whiskers-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "d90c3afa95a4877849115b8bd8690f38110ae072", + "tarball": "http://registry.npmjs.org/whiskers/-/whiskers-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "79987e6ebb0f296144fb534ea74c061d887e91af", + "tarball": "http://registry.npmjs.org/whiskers/-/whiskers-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/whiskers/" + }, + "whiskey": { + "name": "whiskey", + "description": "A simple test runner for NodeJS applications.", + "dist-tags": { + "latest": "0.6.2" + }, + "maintainers": [ + { + "name": "kami", + "email": "tomaz@tomaz.me" + } + ], + "time": { + "modified": "2011-12-01T21:36:55.794Z", + "created": "2011-03-27T00:40:47.813Z", + "0.2.0": "2011-03-27T00:40:48.256Z", + "0.2.1": "2011-03-27T11:53:55.701Z", + "0.2.2": "2011-03-30T15:15:46.688Z", + "0.2.3": "2011-04-15T11:45:38.198Z", + "0.3.0": "2011-05-01T20:27:23.521Z", + "0.3.1": "2011-05-02T19:59:21.260Z", + "0.3.2": "2011-05-04T22:08:26.862Z", + "0.3.3": "2011-05-17T18:30:20.604Z", + "0.3.4": "2011-05-31T16:14:52.403Z", + "0.4.0": "2011-06-15T09:44:24.928Z", + "0.4.1": "2011-07-11T19:54:29.823Z", + "0.4.2": "2011-08-28T22:23:50.090Z", + "0.5.0": "2011-11-05T13:48:37.052Z", + "0.5.1": "2011-11-06T22:45:04.479Z", + "0.6.0": "2011-11-27T15:36:22.537Z", + "0.6.1": "2011-11-28T23:28:54.851Z", + "0.6.2": "2011-12-01T21:36:55.794Z" + }, + "author": { + "name": "Cloudkick, Inc.", + "email": "tomaz+npm@cloudkick.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/cloudkick/whiskey.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/whiskey/0.2.0", + "0.2.1": "http://registry.npmjs.org/whiskey/0.2.1", + "0.2.2": "http://registry.npmjs.org/whiskey/0.2.2", + "0.2.3": "http://registry.npmjs.org/whiskey/0.2.3", + "0.3.0": "http://registry.npmjs.org/whiskey/0.3.0", + "0.3.1": "http://registry.npmjs.org/whiskey/0.3.1", + "0.3.2": "http://registry.npmjs.org/whiskey/0.3.2", + "0.3.3": "http://registry.npmjs.org/whiskey/0.3.3", + "0.3.4": "http://registry.npmjs.org/whiskey/0.3.4", + "0.4.0": "http://registry.npmjs.org/whiskey/0.4.0", + "0.4.1": "http://registry.npmjs.org/whiskey/0.4.1", + "0.4.2": "http://registry.npmjs.org/whiskey/0.4.2", + "0.5.0": "http://registry.npmjs.org/whiskey/0.5.0", + "0.5.1": "http://registry.npmjs.org/whiskey/0.5.1", + "0.6.0": "http://registry.npmjs.org/whiskey/0.6.0", + "0.6.1": "http://registry.npmjs.org/whiskey/0.6.1", + "0.6.2": "http://registry.npmjs.org/whiskey/0.6.2" + }, + "dist": { + "0.2.0": { + "shasum": "44e598e7901d9fc4dca9d49e9b5107a39508b8e7", + "tarball": "http://registry.npmjs.org/whiskey/-/whiskey-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "b5103aaacf8157341cf481bcfd3369bafce332c1", + "tarball": "http://registry.npmjs.org/whiskey/-/whiskey-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "2b2536fc5dc5b02334369358c020e59ff731bf98", + "tarball": "http://registry.npmjs.org/whiskey/-/whiskey-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "b76d4aa563671079e8989d3a49f925594e2dcd86", + "tarball": "http://registry.npmjs.org/whiskey/-/whiskey-0.2.3.tgz" + }, + "0.3.0": { + "shasum": "6e900b5caccae96f0940a0dcdd98eac493fa7132", + "tarball": "http://registry.npmjs.org/whiskey/-/whiskey-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "00fdd673ed4fa6c703747b321fb33a24d15d92bd", + "tarball": "http://registry.npmjs.org/whiskey/-/whiskey-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "487db9351cdb1939d179b1360f999cb7b0eab737", + "tarball": "http://registry.npmjs.org/whiskey/-/whiskey-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "e4530d5d6429a6ed8c0349df7f910ebcc10f483c", + "tarball": "http://registry.npmjs.org/whiskey/-/whiskey-0.3.3.tgz" + }, + "0.3.4": { + "shasum": "1d0d26876f7497a1843d4721ead7c0e7a5e68905", + "tarball": "http://registry.npmjs.org/whiskey/-/whiskey-0.3.4.tgz" + }, + "0.4.0": { + "shasum": "72b6db373060a9f06e359960a715225edcc311f6", + "tarball": "http://registry.npmjs.org/whiskey/-/whiskey-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "5c7167beeb3393aeecb29f18c3471f9a6414d8bb", + "tarball": "http://registry.npmjs.org/whiskey/-/whiskey-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "5dfc567f4d86048c6527ff6c475150bad41089eb", + "tarball": "http://registry.npmjs.org/whiskey/-/whiskey-0.4.2.tgz" + }, + "0.5.0": { + "shasum": "6979063defc6d0f2b5e94ab992b6812a13e23949", + "tarball": "http://registry.npmjs.org/whiskey/-/whiskey-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "0731c3e77cc24160e05866ce107e18eca889c134", + "tarball": "http://registry.npmjs.org/whiskey/-/whiskey-0.5.1.tgz" + }, + "0.6.0": { + "shasum": "6970a2b377139bd2566ddb7010dad045dde04dc9", + "tarball": "http://registry.npmjs.org/whiskey/-/whiskey-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "9117a8fc56ce1ba20995558b953aaed98a9fc243", + "tarball": "http://registry.npmjs.org/whiskey/-/whiskey-0.6.1.tgz" + }, + "0.6.2": { + "shasum": "1fc6a8d146c77079cfd9229b13e9dd4f2d3d11b2", + "tarball": "http://registry.npmjs.org/whiskey/-/whiskey-0.6.2.tgz" + } + }, + "keywords": [ + "whiskey", + "tests", + "test runner", + "testing", + "tdd", + "coverage", + "test coverage" + ], + "url": "http://registry.npmjs.org/whiskey/" + }, + "whisperjs": { + "name": "whisperjs", + "description": "HTTP Request functionality from within a node.js application using preset expresss routes and middleware", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "snodgrass23", + "email": "snodgrass23@gmail.com" + } + ], + "time": { + "modified": "2011-08-24T15:44:05.827Z", + "created": "2011-07-23T19:50:58.921Z", + "0.0.1": "2011-07-23T19:50:59.192Z", + "0.0.2": "2011-07-23T20:58:02.066Z", + "0.0.3": "2011-07-23T21:06:13.363Z", + "0.0.4": "2011-08-24T14:33:41.385Z", + "0.0.5": "2011-08-24T15:44:05.827Z" + }, + "author": { + "name": "Jim Snodgrass", + "email": "snodgrass23@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/snodgrass23/whisperjs.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/whisperjs/0.0.1", + "0.0.2": "http://registry.npmjs.org/whisperjs/0.0.2", + "0.0.3": "http://registry.npmjs.org/whisperjs/0.0.3", + "0.0.4": "http://registry.npmjs.org/whisperjs/0.0.4", + "0.0.5": "http://registry.npmjs.org/whisperjs/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "9dffef47fc007cbd9ef24832a1f5ab94de58ab9e", + "tarball": "http://registry.npmjs.org/whisperjs/-/whisperjs-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "3b6ddf24a4c2e6a33142d9ada5e0b4166818626c", + "tarball": "http://registry.npmjs.org/whisperjs/-/whisperjs-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "ba6825c53d7a60169ca3da01b41122ef22ae7687", + "tarball": "http://registry.npmjs.org/whisperjs/-/whisperjs-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "869f9f56a2c8775ed5bc9468fd90a9798e0a9aad", + "tarball": "http://registry.npmjs.org/whisperjs/-/whisperjs-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "a73573bee897b9934b80a6ff45c875f6be15ee73", + "tarball": "http://registry.npmjs.org/whisperjs/-/whisperjs-0.0.5.tgz" + } + }, + "keywords": [ + "framework", + "web", + "middleware", + "whisper" + ], + "url": "http://registry.npmjs.org/whisperjs/" + }, + "whoisjs": { + "name": "whoisjs", + "description": "A whois client for Node", + "dist-tags": { + "latest": "0.0.4" + }, + "readme": null, + "maintainers": [ + { + "name": "localtoast", + "email": "localtoast@eggandjam.com" + } + ], + "time": { + "modified": "2011-12-05T01:17:45.347Z", + "created": "2011-11-09T06:18:18.227Z", + "0.0.2": "2011-11-09T06:18:19.743Z", + "0.0.3": "2011-12-02T04:59:04.874Z", + "0.0.4": "2011-12-05T01:17:45.347Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/localtoast/Whoisjs.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/whoisjs/0.0.2", + "0.0.3": "http://registry.npmjs.org/whoisjs/0.0.3", + "0.0.4": "http://registry.npmjs.org/whoisjs/0.0.4" + }, + "dist": { + "0.0.2": { + "shasum": "f1be89a429ae845e61f47c8861284f5babec4b9e", + "tarball": "http://registry.npmjs.org/whoisjs/-/whoisjs-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "1e1a7e6a257b2f3f6b30568046913d0419688623", + "tarball": "http://registry.npmjs.org/whoisjs/-/whoisjs-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "f30a5cce71175267cf6054c2194156271a3ec7fb", + "tarball": "http://registry.npmjs.org/whoisjs/-/whoisjs-0.0.4.tgz" + } + }, + "keywords": [ + "dns", + "domain", + "whois" + ], + "url": "http://registry.npmjs.org/whoisjs/" + }, + "wia": { + "name": "wia", + "description": "WebisAble App Generator", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "ghis182", + "email": "ghis182@gmail.com" + } + ], + "time": { + "modified": "2011-11-10T14:20:45.657Z", + "created": "2011-11-10T14:20:43.946Z", + "0.0.1": "2011-11-10T14:20:45.657Z" + }, + "author": { + "name": "Ghislain Loaec", + "email": "ghis182@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/ghis182/webisable.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/wia/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "e313c6b0c89a99cf20468b8218a2c571677684fd", + "tarball": "http://registry.npmjs.org/wia/-/wia-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/wia/" + }, + "wia.client": { + "name": "wia.client", + "description": "WiA MVC Framework.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "ghis182", + "email": "ghis182@gmail.com" + } + ], + "time": { + "modified": "2011-10-20T14:52:26.135Z", + "created": "2011-10-20T14:52:21.420Z", + "0.0.1": "2011-10-20T14:52:26.135Z" + }, + "author": { + "name": "Ghislain Loaec" + }, + "repository": { + "type": "git", + "url": "git://github.com/ghis182/wia.client.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/wia.client/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "ce336580a97ba5f7bfe1ab805aafff96e9a7cfe9", + "tarball": "http://registry.npmjs.org/wia.client/-/wia.client-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/wia.client/" + }, + "wia.server": { + "name": "wia.server", + "description": "WiA MVC Framework.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "ghis182", + "email": "ghis182@gmail.com" + } + ], + "time": { + "modified": "2011-10-20T14:57:41.415Z", + "created": "2011-10-20T14:57:36.817Z", + "0.0.1": "2011-10-20T14:57:41.415Z" + }, + "author": { + "name": "Ghislain Loaec" + }, + "repository": { + "type": "git", + "url": "git://github.com/ghis182/wia.server.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/wia.server/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "0832b8406a980135ecc76c42ceb60507bcea080b", + "tarball": "http://registry.npmjs.org/wia.server/-/wia.server-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/wia.server/" + }, + "widget": { + "name": "widget", + "description": "Basic DOM widget library for Ender", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "amccollum", + "email": "amccollum+npm@gmail.com" + } + ], + "time": { + "modified": "2011-11-09T00:40:12.427Z", + "created": "2011-11-08T19:47:06.457Z", + "0.0.1": "2011-11-08T19:47:06.853Z", + "0.0.2": "2011-11-09T00:40:12.427Z" + }, + "author": { + "name": "Andrew McCollum", + "email": "amccollum@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/widget/0.0.1", + "0.0.2": "http://registry.npmjs.org/widget/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "493acb83c3fbcc1d446653bed9a74c504440d512", + "tarball": "http://registry.npmjs.org/widget/-/widget-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "3b0122666a63a050c41e3d96cc5ccdc52c434585", + "tarball": "http://registry.npmjs.org/widget/-/widget-0.0.2.tgz" + } + }, + "keywords": [ + "ender", + "widget", + "view", + "jQuery UI" + ], + "url": "http://registry.npmjs.org/widget/" + }, + "wigos": { + "name": "wigos", + "description": "Simple logging with Winston and Universe", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "**Wigos** brings together [Universe] and [winston] to make project logging a\nsnap.\n\nIn other words: _**Wi**nston **G**oes to **O**uter **S**pace!_\n\nBasic usage is as follows:\n\n var wigos = require('wigos');\n var log = wigos('access');\n log.info('GET /foobar');\n\nThe logger returned is a regular winston logger. Wigos keeps track of loggers\nby name, returning the same object every time, and centrally manages transports\non all loggers.\n\nBy default, logging is enabled to the console with level `info`, and to files\nin the project's `log` directory with level `verbose`. Log files are given the\n`.log` extension.\n\nThe default transports can be toggled on-the-fly:\n\n wigos.logToConsole(false);\n wigos.logToFiles(false);\n\nCustom transports can also be added or removed from all loggers:\n\n wigos.addTransport(MyTransport, { level: 'info' });\n wigos.removeTransport(MyTransport);\n\nNote that `addTransport` doesn't take transport instances, only constructor\nfunctions, unlike winston's `Logger#add`. This is because an instance needs to\nbe created for every wigos logger.\n\nRather than an options hash, you may also provide a function. The function\ntakes as its only argument the logger name requested. For example, the default\nfile logger is created roughly as follows:\n\n wigos.addTransport(winston.transports.File, function(basename) {\n return {\n dirname: universe.log,\n filename: basename + '.log',\n /* … */\n };\n });\n\n [Universe]: http://github.com/AngryBytes/universe\n [winston]: https://github.com/indexzero/winston\n", + "maintainers": [ + { + "name": "stephank", + "email": "stephan@kochen.nl" + } + ], + "time": { + "modified": "2011-12-07T21:51:39.688Z", + "created": "2011-12-07T21:51:38.411Z", + "0.0.1": "2011-12-07T21:51:39.688Z" + }, + "author": { + "name": "Stéphan Kochen", + "email": "stephan@angrybytes.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/AngryBytes/wigos.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/wigos/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "935ca7671e4fc3a102b36182c910795e95dad0dd", + "tarball": "http://registry.npmjs.org/wigos/-/wigos-0.0.1.tgz" + } + }, + "keywords": [ + "config", + "configuration" + ], + "url": "http://registry.npmjs.org/wigos/" + }, + "wikimapia": { + "name": "wikimapia", + "description": "Wrapper for the Wikimapia API", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "Sannis", + "email": "efimovov@gmail.com" + } + ], + "time": { + "modified": "2011-06-30T20:25:45.391Z", + "created": "2011-06-09T22:00:19.416Z", + "0.0.1": "2011-06-09T22:00:19.861Z", + "0.0.2": "2011-06-11T13:00:18.719Z", + "0.0.3": "2011-06-20T21:11:03.294Z" + }, + "author": { + "name": "Oleg Efimov", + "email": "efimovov@gmail.com" + }, + "repository": { + "type": "git", + "url": "https://github.com/Sannis/node-wikimapia.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/wikimapia/0.0.1", + "0.0.2": "http://registry.npmjs.org/wikimapia/0.0.2", + "0.0.3": "http://registry.npmjs.org/wikimapia/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "232795aad83342d599352c232ac11e52b6d6377a", + "tarball": "http://registry.npmjs.org/wikimapia/-/wikimapia-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "689d3755cd51c65449709458bf1bbb613d09804d", + "tarball": "http://registry.npmjs.org/wikimapia/-/wikimapia-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "31ec6c880ea37eaf1e3a8c07bbf0a3bf54bb6a38", + "tarball": "http://registry.npmjs.org/wikimapia/-/wikimapia-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/wikimapia/" + }, + "wikiminute": { + "name": "wikiminute", + "description": "A reader for Wikipedia", + "dist-tags": { + "latest": "0.6.3" + }, + "maintainers": [ + { + "name": "yuheibird", + "email": "yuhei@wikiminute.org" + } + ], + "time": { + "modified": "2011-06-22T00:10:27.120Z", + "created": "2011-06-14T05:41:55.375Z", + "0.6.1": "2011-06-14T05:41:56.605Z", + "0.6.2": "2011-06-16T10:19:08.414Z", + "0.6.3": "2011-06-22T00:07:52.227Z" + }, + "author": { + "name": "Yuhei Yoshida", + "email": "yuhei@wikiminute.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/yuheibird/wikiminute.git" + }, + "versions": { + "0.6.3": "http://registry.npmjs.org/wikiminute/0.6.3" + }, + "dist": { + "0.6.3": { + "shasum": "fa971e9f2d69faa62cb891c2a89984a68acd35fa", + "tarball": "http://registry.npmjs.org/wikiminute/-/wikiminute-0.6.3.tgz" + } + }, + "url": "http://registry.npmjs.org/wikiminute/" + }, + "wikiwym": { + "name": "wikiwym", + "description": "A module wrapping wikiwym, A simple WYSIWYM Google Code wiki to HTML converter", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "reidab", + "email": "mail@reidbeels.com" + } + ], + "time": { + "modified": "2011-08-04T00:23:03.663Z", + "created": "2011-08-04T00:23:01.518Z", + "0.0.1": "2011-08-04T00:23:03.663Z" + }, + "author": { + "name": "Reid Beels", + "email": "mail@reidbeels.com", + "url": "http://reidbeels.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/reidab/wikiwym-node.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/wikiwym/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "ff8278e4c570aaea727840695b4c3531baa64691", + "tarball": "http://registry.npmjs.org/wikiwym/-/wikiwym-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/wikiwym/" + }, + "wiky": { + "name": "wiky", + "description": "A Bidirectional WikiText Markup Converter.", + "dist-tags": { + "latest": "0.95.1" + }, + "maintainers": [ + { + "name": "gozala", + "email": "rfobic@gmail.com" + } + ], + "repository": { + "type": "git", + "url": "git://github.com/Gozala/wiky.git" + }, + "versions": { + "0.95.1": "http://registry.npmjs.org/wiky/0.95.1" + }, + "dist": { + "0.95.1": { + "tarball": "http://packages:5984/wiky/-/wiky-0.95.1.tgz" + } + }, + "keywords": [ + "wiki", + "wikitext", + "html", + "converter" + ], + "url": "http://registry.npmjs.org/wiky/" + }, + "wildfile": { + "name": "wildfile", + "description": "expand path/*/with*/wildcards.js", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "dominictarr", + "email": "dominic.tarr@gmail.com" + } + ], + "time": { + "modified": "2011-03-29T00:26:35.560Z", + "created": "2011-03-14T12:13:54.686Z", + "0.0.0": "2011-03-14T12:13:56.958Z", + "0.0.1": "2011-03-28T02:00:04.036Z" + }, + "author": { + "name": "Dominic Tarr", + "email": "dominic.tarr@gmail.com", + "url": "http://bit.ly/dominictarr" + }, + "repository": { + "type": "git", + "url": "git://github.com/dominictarr/wildfile.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/wildfile/0.0.0", + "0.0.1": "http://registry.npmjs.org/wildfile/0.0.1" + }, + "dist": { + "0.0.0": { + "shasum": "b83a8b137a19da002cf37edbbad2fc89295c4d70", + "tarball": "http://registry.npmjs.org/wildfile/-/wildfile-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "781dc856161e777618debbe2143f5389b998338e", + "tarball": "http://registry.npmjs.org/wildfile/-/wildfile-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/wildfile/" + }, + "willful.js": { + "name": "willful.js", + "description": "A simple spec'ing library for Node.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "anglicangeek", + "email": "ego@anglicangeek.com" + } + ], + "time": { + "modified": "2011-08-29T15:48:42.403Z", + "created": "2011-08-29T15:48:41.519Z", + "0.1.0": "2011-08-29T15:48:42.403Z" + }, + "author": { + "name": "Drew Miller", + "email": "ego@anglicangeek.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/anglicangeek/willful.js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/willful.js/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "70db41e17a6da1bfe425766639e9e34ca83dc60e", + "tarball": "http://registry.npmjs.org/willful.js/-/willful.js-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/willful.js/" + }, + "wilson": { + "name": "wilson", + "description": "a framework for people behind fences", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "chrisdickinson", + "email": "chris@neversaw.us" + } + ], + "author": { + "name": "Chris Dickinson" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/wilson/0.0.1", + "0.0.2": "http://registry.npmjs.org/wilson/0.0.2", + "0.0.3": "http://registry.npmjs.org/wilson/0.0.3", + "0.0.4": "http://registry.npmjs.org/wilson/0.0.4", + "0.0.5": "http://registry.npmjs.org/wilson/0.0.5" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/wilson/-/wilson-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/wilson/-/wilson-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/wilson/-/wilson-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://packages:5984/wilson/-/wilson-0.0.4.tgz" + }, + "0.0.5": { + "tarball": "http://packages:5984/wilson/-/wilson-0.0.5.tgz" + } + }, + "keywords": [ + "framework", + "orm" + ], + "url": "http://registry.npmjs.org/wilson/" + }, + "window": { + "name": "window", + "description": "Dummy Test Double of Window Object for NodeJs", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "fat", + "email": "jacobthornton@gmail.com" + } + ], + "time": { + "modified": "2011-06-20T02:37:03.198Z", + "created": "2011-06-20T02:37:02.640Z", + "0.0.1": "2011-06-20T02:37:03.198Z" + }, + "author": { + "name": "Jacob Thornton", + "email": "@fat" + }, + "repository": { + "type": "git", + "url": "git@github.com:fat/window.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/window/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "ca14abb00e176deca00b2a940ad455da065c29e7", + "tarball": "http://registry.npmjs.org/window/-/window-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/window/" + }, + "windshaft": { + "name": "windshaft", + "description": "A Node.js based map tile server for PostGIS & Mapnik", + "dist-tags": { + "latest": "0.4.3" + }, + "maintainers": [ + { + "name": "tokumine", + "email": "si@tinypla.net" + } + ], + "time": { + "modified": "2011-12-14T00:11:48.570Z", + "created": "2011-09-04T22:28:37.139Z", + "0.0.2": "2011-09-04T22:28:38.855Z", + "0.0.3": "2011-09-04T22:53:15.217Z", + "0.0.4": "2011-09-04T23:00:14.685Z", + "0.0.5": "2011-09-06T13:41:20.010Z", + "0.0.6": "2011-09-14T06:16:06.823Z", + "0.0.7": "2011-09-14T07:00:54.835Z", + "0.0.8": "2011-09-14T07:16:10.850Z", + "0.0.9": "2011-09-20T01:25:21.618Z", + "0.0.10": "2011-09-20T02:34:20.383Z", + "0.0.11": "2011-09-20T23:22:34.544Z", + "0.2.1": "2011-10-07T14:47:07.087Z", + "0.2.2": "2011-10-07T15:07:56.533Z", + "0.2.3": "2011-10-07T15:22:25.105Z", + "0.2.4": "2011-10-07T17:38:19.355Z", + "0.2.5": "2011-10-07T18:02:11.918Z", + "0.2.6": "2011-10-07T19:24:55.940Z", + "0.3.0": "2011-10-13T13:28:28.953Z", + "0.3.1": "2011-11-25T21:04:06.362Z", + "0.3.2": "2011-11-30T16:46:34.473Z", + "0.4.0": "2011-12-08T23:20:15.056Z", + "0.4.1": "2011-12-09T00:22:05.846Z", + "0.4.2": "2011-12-09T00:50:57.786Z", + "0.4.3": "2011-12-14T00:11:48.570Z" + }, + "author": { + "name": "Simon Tokumine, Javier Santana, Vizzuality", + "email": "simon@vizzuality.com", + "url": "http://vizzuality.com" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/windshaft/0.0.2", + "0.0.3": "http://registry.npmjs.org/windshaft/0.0.3", + "0.0.4": "http://registry.npmjs.org/windshaft/0.0.4", + "0.0.5": "http://registry.npmjs.org/windshaft/0.0.5", + "0.0.6": "http://registry.npmjs.org/windshaft/0.0.6", + "0.0.7": "http://registry.npmjs.org/windshaft/0.0.7", + "0.0.8": "http://registry.npmjs.org/windshaft/0.0.8", + "0.0.9": "http://registry.npmjs.org/windshaft/0.0.9", + "0.0.10": "http://registry.npmjs.org/windshaft/0.0.10", + "0.0.11": "http://registry.npmjs.org/windshaft/0.0.11", + "0.2.1": "http://registry.npmjs.org/windshaft/0.2.1", + "0.2.2": "http://registry.npmjs.org/windshaft/0.2.2", + "0.2.3": "http://registry.npmjs.org/windshaft/0.2.3", + "0.2.4": "http://registry.npmjs.org/windshaft/0.2.4", + "0.2.5": "http://registry.npmjs.org/windshaft/0.2.5", + "0.2.6": "http://registry.npmjs.org/windshaft/0.2.6", + "0.3.0": "http://registry.npmjs.org/windshaft/0.3.0", + "0.3.1": "http://registry.npmjs.org/windshaft/0.3.1", + "0.3.2": "http://registry.npmjs.org/windshaft/0.3.2", + "0.4.0": "http://registry.npmjs.org/windshaft/0.4.0", + "0.4.1": "http://registry.npmjs.org/windshaft/0.4.1", + "0.4.2": "http://registry.npmjs.org/windshaft/0.4.2", + "0.4.3": "http://registry.npmjs.org/windshaft/0.4.3" + }, + "dist": { + "0.0.2": { + "shasum": "070592120874bef25171b910ae0a0f2331bfbd3f", + "tarball": "http://registry.npmjs.org/windshaft/-/windshaft-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "214daf0d2f57fd808633d35aaef6ae8bf1488ac3", + "tarball": "http://registry.npmjs.org/windshaft/-/windshaft-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "6f2308a95db058dd0bf7e9b1dedeb9d3d56b8c19", + "tarball": "http://registry.npmjs.org/windshaft/-/windshaft-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "1032ac8cf344611b34d3b97c281de155e035c2ed", + "tarball": "http://registry.npmjs.org/windshaft/-/windshaft-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "93db6f645c30076b3870a84eeb2fca0515c0733a", + "tarball": "http://registry.npmjs.org/windshaft/-/windshaft-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "bdc25a45b05c7c2821aa5c32c82daa5755cb1479", + "tarball": "http://registry.npmjs.org/windshaft/-/windshaft-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "8e4b5441c1b405462befd333ead758abd48cfe22", + "tarball": "http://registry.npmjs.org/windshaft/-/windshaft-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "f4ae682e80f5f8cf2f0b2cf57957f0978003afec", + "tarball": "http://registry.npmjs.org/windshaft/-/windshaft-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "0850f8d5aef411c9c46a77ffe6873c7e5e6ca0f1", + "tarball": "http://registry.npmjs.org/windshaft/-/windshaft-0.0.10.tgz" + }, + "0.0.11": { + "shasum": "310a267013262663c7e3c259f55fa616040b59d7", + "tarball": "http://registry.npmjs.org/windshaft/-/windshaft-0.0.11.tgz" + }, + "0.2.1": { + "shasum": "4e9c06cb047a18fcb6831a70b80c5cd8ea4aecf7", + "tarball": "http://registry.npmjs.org/windshaft/-/windshaft-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "c93c50165860bd04c3dcc4b79eab93f2c2f61c53", + "tarball": "http://registry.npmjs.org/windshaft/-/windshaft-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "09a3d708dee29c93a9415221122c407e5f6d960f", + "tarball": "http://registry.npmjs.org/windshaft/-/windshaft-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "1b7e8671741c339797a772c9deb055109fc69cbf", + "tarball": "http://registry.npmjs.org/windshaft/-/windshaft-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "552398461b9d3ff4a171fd6b137cd40fca5210b4", + "tarball": "http://registry.npmjs.org/windshaft/-/windshaft-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "a64c25c9bbe8954b95285f13d677b7e80b2114ec", + "tarball": "http://registry.npmjs.org/windshaft/-/windshaft-0.2.6.tgz" + }, + "0.3.0": { + "shasum": "7c29678c721e6f00b184328bfc5b4d72d638a6b8", + "tarball": "http://registry.npmjs.org/windshaft/-/windshaft-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "12cadf91eb827c316d547bb70f21f9bb3d42efa3", + "tarball": "http://registry.npmjs.org/windshaft/-/windshaft-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "48fac3eda6596f6179f559804529ecae702196b1", + "tarball": "http://registry.npmjs.org/windshaft/-/windshaft-0.3.2.tgz" + }, + "0.4.0": { + "shasum": "a4bc34ae780f71a17f370e5955f866d901607e3d", + "tarball": "http://registry.npmjs.org/windshaft/-/windshaft-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "1807f29ea6725b726b5cdc6c3497a9b59530e2a1", + "tarball": "http://registry.npmjs.org/windshaft/-/windshaft-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "c7587ce1664b4b81b39f752cdd686c317d97f649", + "tarball": "http://registry.npmjs.org/windshaft/-/windshaft-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "3284eef9da37f76f6dbf2745938cc51957f274d8", + "tarball": "http://registry.npmjs.org/windshaft/-/windshaft-0.4.3.tgz" + } + }, + "url": "http://registry.npmjs.org/windshaft/" + }, + "windtunnel": { + "name": "windtunnel", + "description": "Easy JavaScript testing", + "dist-tags": { + "latest": "0.0.4" + }, + "readme": "Wind Tunnel\n===========\n\nWhat's this?\n------------\n\nIt's not really done yet, but it's going to be the successor to the webr experiment (https://github.com/thatdutchguy/webr).\nA headless JavaScript testing (using Jasmine, https://github.com/pivotal/jasmine) tool that doesn't require a browser, but\ncan simulate the DOM using jsdom (https://github.com/tmpvar/jsdom).\n\nOutput format can be text or html (a la RSpec).\n\nDisclaimer\n==========\n\nThere are no tests yet. I hammered this out while attending LSRC V. I'm still figuring out this node.js thing and \nam not sure how I'm going to structure this yet. Stuff will change. Stuff will break.\n\n\nInstall\n=======\n npm install -g windtunnel\n \nUsage\n=====\n wt [options]\n\nExamples\n--------\n wt jspec/\n\n wt jspec/ --summarizer html\n\n wt jspec/awesome_spec.js --summarizer html\n\nThe HMTL summarizer has been tailored to work well with TextMate.\n", + "maintainers": [ + { + "name": "thatdutchguy", + "email": "thatdutchguy@secretlymexico.com" + } + ], + "time": { + "modified": "2011-12-12T17:32:39.200Z", + "created": "2011-12-12T17:32:38.265Z", + "0.0.4": "2011-12-12T17:32:39.200Z" + }, + "author": { + "name": "Daniël van de Burgt", + "email": "thatdutchguy@secretlymexico.com" + }, + "versions": { + "0.0.4": "http://registry.npmjs.org/windtunnel/0.0.4" + }, + "dist": { + "0.0.4": { + "shasum": "b74b40d0d1a9e83070ed5a0ae0b964bc399211b4", + "tarball": "http://registry.npmjs.org/windtunnel/-/windtunnel-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/windtunnel/" + }, + "wingrr": { + "name": "wingrr", + "description": "Node Growl notifications for windows", + "dist-tags": { + "latest": "0.9.1" + }, + "maintainers": [ + { + "name": "bsatrom", + "email": "brsatrom@microsoft.com" + } + ], + "time": { + "modified": "2011-08-22T18:44:27.347Z", + "created": "2011-08-22T15:53:25.895Z", + "0.9.0": "2011-08-22T15:53:28.534Z", + "0.9.1": "2011-08-22T18:36:11.123Z" + }, + "author": { + "name": "Brandon Satrom", + "email": "bsatrom@gmail.com" + }, + "versions": { + "0.9.0": "http://registry.npmjs.org/wingrr/0.9.0", + "0.9.1": "http://registry.npmjs.org/wingrr/0.9.1" + }, + "dist": { + "0.9.0": { + "shasum": "bc24a99ae16c7c382027716be9be1b5268f33787", + "tarball": "http://registry.npmjs.org/wingrr/-/wingrr-0.9.0.tgz" + }, + "0.9.1": { + "shasum": "b32fb720e950d9cce62412fd791cbe11f2688981", + "tarball": "http://registry.npmjs.org/wingrr/-/wingrr-0.9.1.tgz" + } + }, + "url": "http://registry.npmjs.org/wingrr/" + }, + "wings": { + "name": "wings", + "description": "Templating library that works on the server and client closely modeled on Mustache", + "dist-tags": { + "latest": "0.5.6" + }, + "maintainers": [ + { + "name": "amccollum", + "email": "amccollum+npm@gmail.com" + } + ], + "time": { + "modified": "2011-11-19T18:59:25.733Z", + "created": "2011-09-06T16:14:25.824Z", + "0.1.0": "2011-09-06T16:14:26.212Z", + "0.3.0": "2011-10-04T01:12:55.286Z", + "0.4.0": "2011-10-04T17:16:55.248Z", + "0.5.0": "2011-10-04T18:16:12.874Z", + "0.5.1": "2011-10-04T18:34:38.490Z", + "0.5.2": "2011-10-04T18:51:26.380Z", + "0.5.3": "2011-10-04T19:06:03.520Z", + "0.5.4": "2011-10-04T19:21:31.751Z", + "0.5.5": "2011-10-07T02:25:51.988Z", + "0.5.6": "2011-11-19T18:59:25.733Z" + }, + "author": { + "name": "Andrew McCollum", + "email": "amccollum@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/wings/0.1.0", + "0.3.0": "http://registry.npmjs.org/wings/0.3.0", + "0.4.0": "http://registry.npmjs.org/wings/0.4.0", + "0.5.0": "http://registry.npmjs.org/wings/0.5.0", + "0.5.1": "http://registry.npmjs.org/wings/0.5.1", + "0.5.2": "http://registry.npmjs.org/wings/0.5.2", + "0.5.3": "http://registry.npmjs.org/wings/0.5.3", + "0.5.4": "http://registry.npmjs.org/wings/0.5.4", + "0.5.5": "http://registry.npmjs.org/wings/0.5.5", + "0.5.6": "http://registry.npmjs.org/wings/0.5.6" + }, + "dist": { + "0.1.0": { + "shasum": "9013387e0ab4d761b6e674f33d59a07e1784fc08", + "tarball": "http://registry.npmjs.org/wings/-/wings-0.1.0.tgz" + }, + "0.3.0": { + "shasum": "f9ecf5af68b09533dc6f23d45acd68272455d6c9", + "tarball": "http://registry.npmjs.org/wings/-/wings-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "d60d84302acab67a6d2e174c00ac14caba87eac8", + "tarball": "http://registry.npmjs.org/wings/-/wings-0.4.0.tgz" + }, + "0.5.0": { + "shasum": "07eebe081df663d78c0fbcdba85a06f7ac66f265", + "tarball": "http://registry.npmjs.org/wings/-/wings-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "0eea9182ba4a2c027c2ec2d5362d2bb8fc144162", + "tarball": "http://registry.npmjs.org/wings/-/wings-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "7b0362f7a5a3536140a038914e9e068306425b43", + "tarball": "http://registry.npmjs.org/wings/-/wings-0.5.2.tgz" + }, + "0.5.3": { + "shasum": "de5e1c972621671a1148ab7d70edad99b86f8824", + "tarball": "http://registry.npmjs.org/wings/-/wings-0.5.3.tgz" + }, + "0.5.4": { + "shasum": "f68e1bfb3b521ce7b8be696d97274cf9ee2aaa20", + "tarball": "http://registry.npmjs.org/wings/-/wings-0.5.4.tgz" + }, + "0.5.5": { + "shasum": "de87677f7386e783997b7f2148ee6a1639cd7e75", + "tarball": "http://registry.npmjs.org/wings/-/wings-0.5.5.tgz" + }, + "0.5.6": { + "shasum": "999f146e08526fbf48081c963611ebe81da2259e", + "tarball": "http://registry.npmjs.org/wings/-/wings-0.5.6.tgz" + } + }, + "keywords": [ + "ender", + "template", + "mustache", + "html" + ], + "url": "http://registry.npmjs.org/wings/" + }, + "winston": { + "name": "winston", + "description": "A multi-transport async logging library for Node.js", + "dist-tags": { + "latest": "0.5.9" + }, + "maintainers": [ + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + } + ], + "time": { + "modified": "2011-12-02T09:44:54.777Z", + "created": "2011-01-18T20:45:37.131Z", + "0.1.0": "2011-01-18T20:45:38.390Z", + "0.1.1": "2011-01-21T23:13:54.329Z", + "0.1.2": "2011-01-23T08:06:43.393Z", + "0.1.3": "2011-01-25T03:38:16.585Z", + "0.1.4": "2011-01-29T18:39:11.805Z", + "0.2.0": "2011-02-02T20:27:37.640Z", + "0.2.1": "2011-02-07T06:01:46.325Z", + "0.2.2": "2011-02-16T09:42:58.012Z", + "0.2.3": "2011-02-18T00:56:53.038Z", + "0.2.4": "2011-03-04T04:57:49.832Z", + "0.2.5": "2011-03-05T20:47:10.687Z", + "0.2.6": "2011-03-27T21:27:26.947Z", + "0.2.7": "2011-04-10T01:08:45.046Z", + "0.2.8": "2011-05-20T01:46:40.672Z", + "0.2.9": "2011-05-20T02:32:21.372Z", + "0.2.10": "2011-05-29T03:58:23.814Z", + "0.2.11": "2011-05-30T02:03:04.360Z", + "0.3.0": "2011-06-07T09:31:50.865Z", + "0.3.1": "2011-06-08T07:31:24.555Z", + "0.3.2": "2011-06-24T03:22:24.882Z", + "0.3.3": "2011-07-24T05:51:41.205Z", + "0.3.4": "2011-08-04T06:17:10.075Z", + "0.3.5": "2011-08-09T14:59:56.544Z", + "0.4.0": "2011-08-22T10:33:34.512Z", + "0.4.1": "2011-09-11T05:00:42.302Z", + "0.5.0": "2011-09-12T17:31:47.276Z", + "0.5.1": "2011-09-13T09:35:25.860Z", + "0.5.2": "2011-09-15T05:14:00.793Z", + "0.5.3": "2011-09-23T19:27:10.866Z", + "0.5.4": "2011-10-07T23:53:50.549Z", + "0.5.5": "2011-10-09T19:29:17.799Z", + "0.5.6": "2011-10-22T06:12:53.069Z", + "0.5.7": "2011-11-20T20:53:45.416Z", + "0.5.8": "2011-11-30T07:02:21.061Z", + "0.5.9": "2011-12-02T09:44:54.777Z" + }, + "author": { + "name": "Charlie Robbins", + "email": "charlie.robbins@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/indexzero/winston.git" + }, + "versions": { + "0.2.11": "http://registry.npmjs.org/winston/0.2.11", + "0.3.3": "http://registry.npmjs.org/winston/0.3.3", + "0.3.4": "http://registry.npmjs.org/winston/0.3.4", + "0.3.5": "http://registry.npmjs.org/winston/0.3.5", + "0.4.0": "http://registry.npmjs.org/winston/0.4.0", + "0.4.1": "http://registry.npmjs.org/winston/0.4.1", + "0.5.0": "http://registry.npmjs.org/winston/0.5.0", + "0.5.1": "http://registry.npmjs.org/winston/0.5.1", + "0.5.2": "http://registry.npmjs.org/winston/0.5.2", + "0.5.3": "http://registry.npmjs.org/winston/0.5.3", + "0.5.4": "http://registry.npmjs.org/winston/0.5.4", + "0.5.5": "http://registry.npmjs.org/winston/0.5.5", + "0.5.6": "http://registry.npmjs.org/winston/0.5.6", + "0.5.7": "http://registry.npmjs.org/winston/0.5.7", + "0.5.8": "http://registry.npmjs.org/winston/0.5.8", + "0.5.9": "http://registry.npmjs.org/winston/0.5.9" + }, + "dist": { + "0.2.11": { + "shasum": "596c131ac552a2194b37ba622ded9f887131599c", + "tarball": "http://registry.npmjs.org/winston/-/winston-0.2.11.tgz" + }, + "0.3.3": { + "shasum": "e4b38e7117e5cc91dc632a2338efbbbdcdf72034", + "tarball": "http://registry.npmjs.org/winston/-/winston-0.3.3.tgz" + }, + "0.3.4": { + "shasum": "bade1b45c944731970d8df9fb1d1927b0fbcf697", + "tarball": "http://registry.npmjs.org/winston/-/winston-0.3.4.tgz" + }, + "0.3.5": { + "shasum": "04d3fc80b7049872c065ee8a912c0fd3f5199668", + "tarball": "http://registry.npmjs.org/winston/-/winston-0.3.5.tgz" + }, + "0.4.0": { + "shasum": "c66bffffbb94b0c5d5173871fc26aa485be01a28", + "tarball": "http://registry.npmjs.org/winston/-/winston-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "ed47572fc787a266d4c65fcf14151e0298907b95", + "tarball": "http://registry.npmjs.org/winston/-/winston-0.4.1.tgz" + }, + "0.5.0": { + "shasum": "38269506eaf446ecb8808295ea1d3da05010ab82", + "tarball": "http://registry.npmjs.org/winston/-/winston-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "2b2f40cdbf469b60f1885cc549757c4b9973e5ea", + "tarball": "http://registry.npmjs.org/winston/-/winston-0.5.1.tgz" + }, + "0.5.2": { + "shasum": "5adcbf0a8a872e3b3584a11b1173765329b00765", + "tarball": "http://registry.npmjs.org/winston/-/winston-0.5.2.tgz" + }, + "0.5.3": { + "shasum": "2b40e4eaacfe76b27e0c0436e626aa820da5990e", + "tarball": "http://registry.npmjs.org/winston/-/winston-0.5.3.tgz" + }, + "0.5.4": { + "shasum": "e6d5fbfe6549a8a3e39900ad68967bc74c1c1586", + "tarball": "http://registry.npmjs.org/winston/-/winston-0.5.4.tgz" + }, + "0.5.5": { + "shasum": "f4f859ea6d7cb38cb2f4496b4fa5ea12050e5c92", + "tarball": "http://registry.npmjs.org/winston/-/winston-0.5.5.tgz" + }, + "0.5.6": { + "shasum": "0f4bae04ebe00c8bfd0a351797c3d2ce0416d033", + "tarball": "http://registry.npmjs.org/winston/-/winston-0.5.6.tgz" + }, + "0.5.7": { + "shasum": "50597e0e6860eef9f9716a709b2857aab817e51c", + "tarball": "http://registry.npmjs.org/winston/-/winston-0.5.7.tgz" + }, + "0.5.8": { + "shasum": "8a2f068613f25975d810d7f5dd45df141d67edb9", + "tarball": "http://registry.npmjs.org/winston/-/winston-0.5.8.tgz" + }, + "0.5.9": { + "shasum": "3160f86b2298781599ef061bac742752e7cc3c3a", + "tarball": "http://registry.npmjs.org/winston/-/winston-0.5.9.tgz" + } + }, + "keywords": [ + "logging", + "sysadmin", + "tools" + ], + "url": "http://registry.npmjs.org/winston/" + }, + "winston-amqp": { + "name": "winston-amqp", + "description": "An AMQP transport for winston", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "kr1sp1n", + "email": "krispinone@gmail.com" + } + ], + "time": { + "modified": "2011-08-29T13:37:28.792Z", + "created": "2011-08-04T07:47:03.713Z", + "0.0.1": "2011-08-04T07:47:04.563Z", + "0.0.2": "2011-08-29T13:37:28.792Z" + }, + "author": { + "name": "Krispin Schulz", + "email": "krispinone@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/kr1sp1n/winston-amqp.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/winston-amqp/0.0.1", + "0.0.2": "http://registry.npmjs.org/winston-amqp/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "10229b50796647c0517a5d7e01a93f8a6b0632c9", + "tarball": "http://registry.npmjs.org/winston-amqp/-/winston-amqp-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "61f46981a3bea1f15faf6eff355f20657fa2dcc7", + "tarball": "http://registry.npmjs.org/winston-amqp/-/winston-amqp-0.0.2.tgz" + } + }, + "keywords": [ + "logging", + "sysadmin", + "tools", + "winston", + "amqp", + "rabbitmq" + ], + "url": "http://registry.npmjs.org/winston-amqp/" + }, + "winston-mail": { + "name": "winston-mail", + "description": "A mail transport for winston", + "dist-tags": { + "latest": "0.1.2" + }, + "readme": null, + "maintainers": [ + { + "name": "wavded", + "email": "wavded@gmail.com" + } + ], + "time": { + "modified": "2011-11-30T19:54:39.731Z", + "created": "2011-11-28T18:11:10.507Z", + "0.0.1": "2011-11-28T18:11:11.631Z", + "0.1.0": "2011-11-29T13:51:20.772Z", + "0.1.1": "2011-11-30T19:17:48.236Z", + "0.1.2": "2011-11-30T19:54:39.731Z" + }, + "author": { + "name": "Marc Harter", + "email": "wavded@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/wavded/winston-mail.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/winston-mail/0.0.1", + "0.1.0": "http://registry.npmjs.org/winston-mail/0.1.0", + "0.1.1": "http://registry.npmjs.org/winston-mail/0.1.1", + "0.1.2": "http://registry.npmjs.org/winston-mail/0.1.2" + }, + "dist": { + "0.0.1": { + "shasum": "93d14d944e927501229603c3d64272e8377bd226", + "tarball": "http://registry.npmjs.org/winston-mail/-/winston-mail-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "8ae2b373d9398b97108d438ca4a36e4693b1437a", + "tarball": "http://registry.npmjs.org/winston-mail/-/winston-mail-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "e84237c1dd75f196559c589dd126ee90d1686836", + "tarball": "http://registry.npmjs.org/winston-mail/-/winston-mail-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "00d6a33b7b9e54eac3996907dc6db332e7c0a64f", + "tarball": "http://registry.npmjs.org/winston-mail/-/winston-mail-0.1.2.tgz" + } + }, + "keywords": [ + "logging", + "sysadmin", + "tools", + "winston", + "email" + ], + "url": "http://registry.npmjs.org/winston-mail/" + }, + "winston-mongodb": { + "name": "winston-mongodb", + "description": "A MongoDB transport for winston", + "dist-tags": { + "latest": "0.3.2" + }, + "maintainers": [ + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + } + ], + "time": { + "modified": "2011-08-28T14:05:31.883Z", + "created": "2011-06-07T09:32:00.936Z", + "0.2.0": "2011-06-07T09:32:01.265Z", + "0.3.0": "2011-08-22T10:37:37.552Z", + "0.3.1": "2011-08-28T14:02:56.984Z", + "0.3.2": "2011-08-28T14:05:31.883Z" + }, + "author": { + "name": "Charlie Robbins", + "email": "charlie.robbins@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/indexzero/winston-mongodb.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/winston-mongodb/0.2.0", + "0.3.0": "http://registry.npmjs.org/winston-mongodb/0.3.0", + "0.3.1": "http://registry.npmjs.org/winston-mongodb/0.3.1", + "0.3.2": "http://registry.npmjs.org/winston-mongodb/0.3.2" + }, + "dist": { + "0.2.0": { + "shasum": "0befd1aff75096ac5b35f5abb4ed79c1666572d4", + "tarball": "http://registry.npmjs.org/winston-mongodb/-/winston-mongodb-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "552004a623f131ddd4fee336e3665778acd018a7", + "tarball": "http://registry.npmjs.org/winston-mongodb/-/winston-mongodb-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "8845be8d1a8512f2acff0c6aa27acaa101c44095", + "tarball": "http://registry.npmjs.org/winston-mongodb/-/winston-mongodb-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "cc062633384b203a2c6d9ff1e90469a32d8ff31c", + "tarball": "http://registry.npmjs.org/winston-mongodb/-/winston-mongodb-0.3.2.tgz" + } + }, + "keywords": [ + "logging", + "sysadmin", + "tools", + "winston", + "mongodb" + ], + "url": "http://registry.npmjs.org/winston-mongodb/" + }, + "winston-redis": { + "name": "winston-redis", + "description": "A fixed-length Redis transport for winston", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + } + ], + "time": { + "modified": "2011-08-28T14:40:20.497Z", + "created": "2011-08-28T14:40:20.013Z", + "0.1.0": "2011-08-28T14:40:20.497Z" + }, + "author": { + "name": "Charlie Robbins", + "email": "charlie.robbins@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/indexzero/winston-redis.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/winston-redis/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "0ac428fb5a7a278c8f01390b36a6a937efc479e8", + "tarball": "http://registry.npmjs.org/winston-redis/-/winston-redis-0.1.0.tgz" + } + }, + "keywords": [ + "logging", + "sysadmin", + "tools", + "winston", + "redis" + ], + "url": "http://registry.npmjs.org/winston-redis/" + }, + "winston-riak": { + "name": "winston-riak", + "description": "A Riak transport for winston", + "dist-tags": { + "latest": "0.3.1" + }, + "maintainers": [ + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + } + ], + "time": { + "modified": "2011-08-28T13:54:26.877Z", + "created": "2011-06-07T09:31:54.863Z", + "0.2.0": "2011-06-07T09:31:55.109Z", + "0.2.1": "2011-06-25T05:22:36.633Z", + "0.2.2": "2011-06-25T05:31:32.543Z", + "0.3.0": "2011-08-22T10:46:48.929Z", + "0.3.1": "2011-08-28T13:54:26.877Z" + }, + "author": { + "name": "Charlie Robbins", + "email": "charlie.robbins@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/indexzero/winston-riak.git" + }, + "versions": { + "0.2.2": "http://registry.npmjs.org/winston-riak/0.2.2", + "0.3.0": "http://registry.npmjs.org/winston-riak/0.3.0", + "0.3.1": "http://registry.npmjs.org/winston-riak/0.3.1" + }, + "dist": { + "0.2.2": { + "shasum": "afd19f9fbbc101a4581f5a5caa50a2db0ce63d64", + "tarball": "http://registry.npmjs.org/winston-riak/-/winston-riak-0.2.2.tgz" + }, + "0.3.0": { + "shasum": "b44aa8e20704e7f763ce137d1a34389255fb79a4", + "tarball": "http://registry.npmjs.org/winston-riak/-/winston-riak-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "ab1c1a1ad50867167233bbf5002aa25116f31eb7", + "tarball": "http://registry.npmjs.org/winston-riak/-/winston-riak-0.3.1.tgz" + } + }, + "keywords": [ + "logging", + "sysadmin", + "tools", + "winston", + "riak" + ], + "url": "http://registry.npmjs.org/winston-riak/" + }, + "winston-scribe": { + "name": "winston-scribe", + "description": "A scribe transport for winston", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": null, + "maintainers": [ + { + "name": "wnoronha", + "email": "warren.noronha@gmail.com" + } + ], + "time": { + "modified": "2011-12-01T09:36:43.933Z", + "created": "2011-12-01T09:36:40.150Z", + "0.1.0": "2011-12-01T09:36:43.933Z" + }, + "author": { + "name": "Warren Noronha", + "email": "warren.noronha@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/chitika/winston-scribe.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/winston-scribe/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "cdd3c6f806f4eb89cbb2cb3fb041ce178e1fc89c", + "tarball": "http://registry.npmjs.org/winston-scribe/-/winston-scribe-0.1.0.tgz" + } + }, + "keywords": [ + "logging", + "sysadmin", + "tools", + "winston", + "scribe" + ], + "url": "http://registry.npmjs.org/winston-scribe/" + }, + "winston-simpledb": { + "name": "winston-simpledb", + "description": "A Winston transport for Amazon SimpleDB", + "dist-tags": { + "latest": "0.1.1" + }, + "readme": "# SimpleDB Transport for Winston\n\nThe winston-simpledb module allows you to log your winston messages to Amazon's SimpleDB.\n\n var SimpleDB = require('winston-simpledb').SimpleDB;\n \n winston.add(winston.transports.SimpleDB, {\n // for andychilton\n accessKeyId : '...',\n secretAccessKey : '...',\n awsAccountId : 'xxxx-xxxx-xxxx',\n domainName : 'log',\n region : amazon.US_EAST_1,\n itemName : 'uuid',\n });\n\n## Installation\n\n``` bash\n $ npm install winston-simpledb\n```\n\n## Usage\n\nwinston-simpledb is just like any other transport for winston. When adding it to winston, it takes some options so that\nit knows where to log to SimpleDB.\n\nThe SimpleDB transport takes the following options:\n\n accessKeyId : your AWS access key id\n secretAccessKey : your AWS secret access key\n awsAccountId : your AWS access id (of the form 'xxxx-xxxx-xxxx')\n region : the region where the domain is hosted (of the form amazon.US_EAST_1)\n domainName : the domain name to log to, or a function to generate the domain name\n itemName : the type of itemName to use or a function to generate the item name\n\n### AWS Credentials\n\nAll of these options are values that you can find from your Amazon Web Services account: 'accessKeyId',\n'secretAccessKey' and 'awsAccountId'.\n\n### Region\n\nThis is the region in which your domain is located. For example you need to pass it one of the amazon.* constants such\nas amazon.US_EAST_1 or amazon.EU_WEST_1. See 'awssum' for more details.\n\n### DomainName\n\nThe domainName provided is the one where you want your messages logged. As well as providing a string, you may instead\nprovide a function which returns a string. This gives you the ability to dynamically change which domain to log to.\n\nValid domainName options are:\n\n a string -> the domain name is this literal string\n a function -> the string that this function returns\n\n### ItemName\n\nThe itemName option you provide determines how the itemName is generated when logging to SimpleDB. You may provide a\nstring which is a predefined generator (such as 'uuid', 'epoch' or 'timestamp') or a function which returns an\nitemName.\n\nValid itemName options are:\n\n 'uuid' -> '75f38e1c-1bc6-4854-b3e2-9e6b65e9d012'\n 'epoch' -> 1321751212043\n 'timestamp' -> '2011-11-20T01:06:52.043Z'\n function -> (a string that the function returns)\n\n# Author\n\nWritten by [Andrew Chilton](http://www.chilts.org/blog/)\n\nCopyright 2011 [AppsAttic](http://www.appsattic.com/)\n\n(Ends)\n", + "maintainers": [ + { + "name": "chilts", + "email": "chilts@appsattic.com" + } + ], + "time": { + "modified": "2011-11-20T09:06:44.022Z", + "created": "2011-11-20T08:18:50.893Z", + "0.1.0": "2011-11-20T08:18:55.000Z", + "0.1.1": "2011-11-20T09:06:44.022Z" + }, + "author": { + "name": "Andrew Chilton", + "email": "chilts@appsattic.com", + "url": "http://www.appsattic.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/appsattic/winston-simpledb.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/winston-simpledb/0.1.0", + "0.1.1": "http://registry.npmjs.org/winston-simpledb/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "96bbaa4a314075e330ed04aee107ae88f4ac37f9", + "tarball": "http://registry.npmjs.org/winston-simpledb/-/winston-simpledb-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "47bce96bac02411f01c9dcc6ed33174a1ad2851c", + "tarball": "http://registry.npmjs.org/winston-simpledb/-/winston-simpledb-0.1.1.tgz" + } + }, + "keywords": [ + "logging", + "sysadmin", + "tools", + "winston", + "amazon", + "simpledb", + "awssum" + ], + "url": "http://registry.npmjs.org/winston-simpledb/" + }, + "winston-syslog": { + "name": "winston-syslog", + "description": "A syslog transport for winston", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "indexzero", + "email": "charlie.robbins@gmail.com" + } + ], + "time": { + "modified": "2011-08-28T13:46:14.790Z", + "created": "2011-06-25T07:16:05.919Z", + "0.1.0": "2011-06-25T07:16:06.190Z", + "0.2.0": "2011-08-22T10:46:26.787Z", + "0.2.1": "2011-08-28T11:16:01.454Z", + "0.2.2": "2011-08-28T13:46:14.790Z" + }, + "author": { + "name": "Charlie Robbins", + "email": "charlie.robbins@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/indexzero/winston-syslog.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/winston-syslog/0.1.0", + "0.2.0": "http://registry.npmjs.org/winston-syslog/0.2.0", + "0.2.1": "http://registry.npmjs.org/winston-syslog/0.2.1", + "0.2.2": "http://registry.npmjs.org/winston-syslog/0.2.2" + }, + "dist": { + "0.1.0": { + "shasum": "3aa08fb6526d493dffd746229727f555e8290ec1", + "tarball": "http://registry.npmjs.org/winston-syslog/-/winston-syslog-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "318d7648fef15fe31b23e77e9b8e26e5b2130dfb", + "tarball": "http://registry.npmjs.org/winston-syslog/-/winston-syslog-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "8d14bca15bce6cc7c6cf72b1ba63af899174f52d", + "tarball": "http://registry.npmjs.org/winston-syslog/-/winston-syslog-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "ff4ad711e46564249a04387a48c3afb7ecc42723", + "tarball": "http://registry.npmjs.org/winston-syslog/-/winston-syslog-0.2.2.tgz" + } + }, + "keywords": [ + "logging", + "sysadmin", + "tools", + "winston", + "syslog" + ], + "url": "http://registry.npmjs.org/winston-syslog/" + }, + "winston-zmq": { + "name": "winston-zmq", + "description": "A 0MQ transport for winston", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "# winston\n\nA 0mq transport for [winston][0].\n\n## Installation\n\n### Installing npm (node package manager)\n\n``` bash\n $ curl http://npmjs.org/install.sh | sh\n```\n\n### Installing winston-zmq\n\n``` bash\n $ npm install winston\n $ npm install winston-zmq\n```\n\n## Purpose\n\nThis winston transport allows you to publish logs using a 0mq pub socket (so that multiple recipients can subscribe to it)\n\nThe message is sent with a variable length prefix that allows the subscribers to subscribe log message of a certain threshold and above.\n\n## Usage\n``` js\n var winston = require('winston');\n\n //\n // Requiring `winston-zmq` will expose\n // `winston.transports.Zmq`\n //\n require('winston-zmq').Zmq;\n\n winston.add(winston.transports.Zmq, options);\n```\n\nThe Zmq transport takes the following options. 'db' is required:\n\n\n* __transport:__ Transport to use for 0mq. (tcp|ipc|inproc|pgm|epgm)\n* __address:__ Address that the socket will bind to e.g. \"127.0.0.1\" or \"10.23.45.67\"\n* __separator:__ Separator to separate the level string from the JSON default |*|\n* __prefix:__ Prefix used to denote the log level\n* __prefixMapping:__ Mapping between log levels and prefix string length. Used if using custom log levels. e.g. { silly: 1, verbose: 2, info: 3, warn: 4, debug: 5, error: 6 }\n* __port:__ [required for tcp] : port to bind to when using the tcp transport \n* __level:__ Level of messages that this transport should log.\n* __silent:__ Boolean flag indicating whether to suppress output.\n* __formatter:__ Optional formatter function to override the structure of the JSON data sent to the subscriber\n\n*Metadata:* Logged as a native JSON object.\n\n## Examples\n\n###Client \n```\nvar util = require('util'), zmq = require('zmq');\n\nvar socket = zmq.createSocket('sub');\nsocket.subscribe(''); // subscribe to all\n// socket.subscribe('***'); // subscribe to info and above\n\nsocket.on('message', function(bufMsg) {\n var msg = bufMsg.toString('utf8');\n try {\n var message = msg.split('|*|')[1];\n oMessage = JSON.parse(message);\n console.log(oMessage);\n } catch(err) {\n console.log(err);\n }\n});\n\nsocket.connect(\"tcp://127.0.0.1:7890\");\n```\n\n### Log Source\n\n```\nvar winston = require('winston');\nvar Zmq = require('../lib/winston-zmq.js').Zmq;\nvar transports = {};\n\n// Set up the zmq transport\ntransports.Zmq = new Zmq({level : 'silly',port: 7890});\n\n// Instantiate out logger.\nvar logger = new (winston.Logger)({transports : [transports.Zmq]});\n\nlogger.log('silly', 'Some Text', {somekey: 'some data'});\nlogger.log('error', 'Some Text', {somekey: 'some data'});\n```\n\n### Message Format\n\nThe above two messages will be transmitted as:\n\n```\n*|*|{\"timestamp\":\"2011-11-16T15:53:55.912Z\",\"level\":\"silly\",\"message\":\"Some Text\",\"meta\":{\"somekey\":\"some data\"}}\n```\n\n```\n******|*|{\"timestamp\":\"2011-11-16T15:53:55.913Z\",\"level\":\"error\",\"message\":\"Some Text\",\"meta\":{\"somekey\":\"some data\"}}\n```\n\n\n\n\n\n#### Author: [David Henderson](http://twitter.com/@DHDev)\n\n[0]: https://github.com/indexzero/winston", + "maintainers": [ + { + "name": "dhendo", + "email": "dhendo@gmail.com" + } + ], + "time": { + "modified": "2011-11-17T08:58:03.983Z", + "created": "2011-11-17T08:58:02.697Z", + "0.1.0": "2011-11-17T08:58:03.983Z" + }, + "author": { + "name": "David Henderson", + "email": "dhendo@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/TriggeredMessaging/winston-zmq.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/winston-zmq/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "815c36dff62550f810cbc1b7b8aac28985ea0642", + "tarball": "http://registry.npmjs.org/winston-zmq/-/winston-zmq-0.1.0.tgz" + } + }, + "keywords": [ + "logging", + "sysadmin", + "tools", + "winston", + "zmq", + "0mq", + "zeromq" + ], + "url": "http://registry.npmjs.org/winston-zmq/" + }, + "winstoon": { + "name": "winstoon", + "description": "Simple Wrapper for Winston Logger", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "arunoda", + "email": "arunoda.susiripala@gmail.com" + } + ], + "time": { + "modified": "2011-09-21T07:20:57.512Z", + "created": "2011-06-05T03:09:03.134Z", + "0.1.0beta": "2011-06-05T03:09:04.975Z", + "0.1.1beta": "2011-06-26T12:48:18.005Z", + "0.1.2beta": "2011-07-10T03:34:36.416Z", + "0.1.3": "2011-09-21T07:20:57.512Z" + }, + "author": { + "name": "Arunoda Susiripala", + "email": "arunoda.susiripala@gmail.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:arunoda/winstoon" + }, + "versions": { + "0.1.0beta": "http://registry.npmjs.org/winstoon/0.1.0beta", + "0.1.1beta": "http://registry.npmjs.org/winstoon/0.1.1beta", + "0.1.2beta": "http://registry.npmjs.org/winstoon/0.1.2beta", + "0.1.3": "http://registry.npmjs.org/winstoon/0.1.3" + }, + "dist": { + "0.1.0beta": { + "shasum": "86213d401b8da9d49b4b8d7f266bbb61ae0aa876", + "tarball": "http://registry.npmjs.org/winstoon/-/winstoon-0.1.0beta.tgz" + }, + "0.1.1beta": { + "shasum": "eb339308a563be974293a2d9ef1bad739b2146c8", + "tarball": "http://registry.npmjs.org/winstoon/-/winstoon-0.1.1beta.tgz" + }, + "0.1.2beta": { + "shasum": "408b84e304d63d04da1c6d06522de6e00a860d05", + "tarball": "http://registry.npmjs.org/winstoon/-/winstoon-0.1.2beta.tgz" + }, + "0.1.3": { + "shasum": "7e13ddb1d21a648f14551dd890f9a97572e8d2c0", + "tarball": "http://registry.npmjs.org/winstoon/-/winstoon-0.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/winstoon/" + }, + "wirez": { + "name": "wirez", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "cheng81", + "email": "fzanitti@gmail.com" + } + ], + "time": { + "modified": "2011-02-24T19:21:36.748Z", + "created": "2011-02-23T22:36:21.964Z", + "0.0.1": "2011-02-23T22:36:22.356Z", + "0.0.2": "2011-02-24T19:21:36.748Z" + }, + "author": { + "name": "Francesco Zanitti", + "email": "fzanitti@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/cheng81/wirez.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/wirez/0.0.1", + "0.0.2": "http://registry.npmjs.org/wirez/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "a6de5e9668aca2ece8d58a6e7f7b2efcd836ddc3", + "tarball": "http://registry.npmjs.org/wirez/-/wirez-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "bf99ea39eabcd8b4a49ae43ae786ce54af6be31f", + "tarball": "http://registry.npmjs.org/wirez/-/wirez-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/wirez/" + }, + "wobot": { + "name": "wobot", + "description": "A plugin-based HipChat bot.", + "dist-tags": { + "latest": "0.5.0" + }, + "maintainers": [ + { + "name": "cjoudrey", + "email": "cmallette@gmail.com" + } + ], + "time": { + "modified": "2011-12-10T21:00:21.717Z", + "created": "2011-05-06T02:02:20.093Z", + "0.0.1": "2011-12-07T02:00:47.054Z", + "0.1.0": "2011-12-07T02:00:47.054Z", + "0.2.0": "2011-12-07T02:00:47.054Z", + "0.3.0": "2011-12-07T02:00:47.054Z", + "0.3.1": "2011-11-10T00:38:28.797Z", + "0.4.0": "2011-12-07T02:00:47.054Z", + "0.5.0": "2011-12-10T21:00:21.717Z" + }, + "author": { + "name": "Christian Joudrey", + "email": "cmallette@gmail.com", + "url": "http://twitter.com/cjoudrey" + }, + "repository": { + "type": "git", + "url": "git://github.com/cjoudrey/wobot.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/wobot/0.0.1", + "0.1.0": "http://registry.npmjs.org/wobot/0.1.0", + "0.2.0": "http://registry.npmjs.org/wobot/0.2.0", + "0.3.0": "http://registry.npmjs.org/wobot/0.3.0", + "0.3.1": "http://registry.npmjs.org/wobot/0.3.1", + "0.4.0": "http://registry.npmjs.org/wobot/0.4.0", + "0.5.0": "http://registry.npmjs.org/wobot/0.5.0" + }, + "dist": { + "0.0.1": { + "shasum": "0ddce8acb0785c86ceaa1df627e9eaed7420cda9", + "tarball": "http://registry.npmjs.org/wobot/-/wobot-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "7ad5789fcaa86f629cc1e559a18243523991da7c", + "tarball": "http://registry.npmjs.org/wobot/-/wobot-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "44dcb72f6c452090327a7e9f457854eb540cc999", + "tarball": "http://registry.npmjs.org/wobot/-/wobot-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "0c04c3dc90543f7120de5c38e89086683cbff060", + "tarball": "http://registry.npmjs.org/wobot/-/wobot-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "25e6565e4a7de968dd74efe1ca16f0dee9d92612", + "tarball": "http://registry.npmjs.org/wobot/-/wobot-0.3.1.tgz" + }, + "0.4.0": { + "shasum": "67d772b4ef6f24dcd07011ce5518c7398c9720eb", + "tarball": "http://registry.npmjs.org/wobot/-/wobot-0.4.0.tgz" + }, + "0.5.0": { + "shasum": "c720962f894bac1ee231b14408c5ebc92284dcf2", + "tarball": "http://registry.npmjs.org/wobot/-/wobot-0.5.0.tgz" + } + }, + "keywords": [ + "bot", + "hipchat" + ], + "url": "http://registry.npmjs.org/wobot/" + }, + "wolfram": { + "name": "wolfram", + "description": "Wolfram Alpha API", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "liquidproof", + "email": "sami.matias.kukkonen@gmail.com" + } + ], + "time": { + "modified": "2011-11-14T14:31:02.558Z", + "created": "2011-10-17T20:02:14.557Z", + "0.1.0": "2011-10-17T20:02:16.505Z", + "0.1.1": "2011-10-28T14:19:55.891Z", + "0.1.2": "2011-11-02T21:32:43.779Z", + "0.2.0": "2011-11-14T14:31:02.558Z" + }, + "author": { + "name": "Sami Kukkonen", + "email": "sami.matias.kukkonen@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/liquidproof/wolfram.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/wolfram/0.1.0", + "0.1.1": "http://registry.npmjs.org/wolfram/0.1.1", + "0.1.2": "http://registry.npmjs.org/wolfram/0.1.2", + "0.2.0": "http://registry.npmjs.org/wolfram/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "1ad5522d06c0c3c796f524bc40352d7569839101", + "tarball": "http://registry.npmjs.org/wolfram/-/wolfram-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "d1dd6d1cdbc93c63f3563792fb523003a4e3fd0d", + "tarball": "http://registry.npmjs.org/wolfram/-/wolfram-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "de34c06f4abf4f914df1669385e44616e4f9ff71", + "tarball": "http://registry.npmjs.org/wolfram/-/wolfram-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "bb62ec854e039a493dd26c37fe929d9158e0eacf", + "tarball": "http://registry.npmjs.org/wolfram/-/wolfram-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/wolfram/" + }, + "word-generator": { + "name": "word-generator", + "description": "Generate(random or in order) a word or many words which can be used as (guess/crack) passwords, keys etc in nodejs.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "andrew_goal", + "email": "androidgao@gmail.com" + } + ], + "time": { + "modified": "2011-09-13T13:59:27.105Z", + "created": "2011-09-08T14:46:56.344Z", + "0.0.1": "2011-09-08T14:46:58.039Z", + "0.0.2": "2011-09-13T13:59:27.105Z" + }, + "author": { + "name": "Andrew Goal", + "email": "androidgao@gmail.com", + "url": "https://plus.google.com/116766125570728404851/about" + }, + "repository": { + "type": "git", + "url": "git://github.com/AndrewGoal/node-word-generator.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/word-generator/0.0.1", + "0.0.2": "http://registry.npmjs.org/word-generator/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "31739d30b2a8a52dac16ae3cdd7e986530b9165a", + "tarball": "http://registry.npmjs.org/word-generator/-/word-generator-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "da3be227b08d118030b15741bd65b53fcf310d86", + "tarball": "http://registry.npmjs.org/word-generator/-/word-generator-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/word-generator/" + }, + "wordnik": { + "name": "wordnik", + "description": "wordnik api wrapper for node.js", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "cpetzold", + "email": "cpetzold@gmail.com" + } + ], + "time": { + "modified": "2011-09-06T03:40:15.814Z", + "created": "2011-09-06T03:40:14.941Z", + "0.0.1": "2011-09-06T03:40:15.814Z" + }, + "author": { + "name": "Conner Petzold", + "email": "cpetzold@gmail.com", + "url": "http://the0th.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/cpetzold/node-wordnik.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/wordnik/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "780441ae61b2e8bf71b0db09e904948a20172880", + "tarball": "http://registry.npmjs.org/wordnik/-/wordnik-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/wordnik/" + }, + "wordpress-auth": { + "name": "wordpress-auth", + "description": "Authenticate users through node using WordPress cookies", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "nightgunner5", + "email": "nightgunner5@llamaslayers.net" + } + ], + "time": { + "modified": "2011-06-24T15:58:20.923Z", + "created": "2011-06-16T01:49:14.274Z", + "0.0.0": "2011-06-16T01:49:18.492Z", + "0.0.1": "2011-06-24T15:58:20.923Z" + }, + "author": { + "name": "Nightgunner5", + "email": "nightgunner5@llamaslayers.net", + "url": "http://llamaslayers.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/Nightgunner5/node-wordpress-auth.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/wordpress-auth/0.0.0", + "0.0.1": "http://registry.npmjs.org/wordpress-auth/0.0.1" + }, + "dist": { + "0.0.0": { + "shasum": "3700f365ca82d33a4f4d13393bcd9447afcd9552", + "tarball": "http://registry.npmjs.org/wordpress-auth/-/wordpress-auth-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "5720697bbb6d812c13675335b4df6a2fc614e55a", + "tarball": "http://registry.npmjs.org/wordpress-auth/-/wordpress-auth-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/wordpress-auth/" + }, + "wordwrap": { + "name": "wordwrap", + "description": "Wrap those words. Show them at what columns to start and stop.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-08-26T10:17:09.949Z", + "created": "2011-05-30T01:46:34.229Z", + "0.0.1": "2011-05-30T01:46:34.944Z", + "0.0.2": "2011-08-26T10:17:09.949Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-wordwrap.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/wordwrap/0.0.1", + "0.0.2": "http://registry.npmjs.org/wordwrap/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "ac9b6dfa49e1147523055c5ef490c069cdd61f3e", + "tarball": "http://registry.npmjs.org/wordwrap/-/wordwrap-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "b79669bb42ecb409f83d583cad52ca17eaa1643f", + "tarball": "http://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz" + } + }, + "keywords": [ + "word", + "wrap", + "rule", + "format", + "column" + ], + "url": "http://registry.npmjs.org/wordwrap/" + }, + "wordy": { + "name": "wordy", + "description": "Converts numbers into their english variants and back", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "ofxartem", + "email": "artem.titoulenko@gmail.com" + } + ], + "time": { + "modified": "2011-06-08T19:07:27.695Z", + "created": "2011-06-08T19:07:27.543Z", + "1.0.0": "2011-06-08T19:07:27.695Z" + }, + "author": { + "name": "Artem Titoulenko", + "email": "artem.titoulenko@gmail.com" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/wordy/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "b8f79568c1981f2f3e7a1697c6a0bb1f5feefc20", + "tarball": "http://registry.npmjs.org/wordy/-/wordy-1.0.0.tgz" + } + }, + "keywords": [ + "words", + "numbers", + "english", + "numerals" + ], + "url": "http://registry.npmjs.org/wordy/" + }, + "worker": { + "name": "worker", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "cramforce", + "email": "malte.ubl@gmail.com" + } + ], + "versions": { + "0.2.1": "http://registry.npmjs.org/worker/0.2.1" + }, + "dist": { + "0.2.1": { + "tarball": "http://packages:5984/worker/-/worker-0.2.1.tgz" + } + }, + "url": "http://registry.npmjs.org/worker/" + }, + "worker-pool": { + "name": "worker-pool", + "description": "An implementation of the web worker API with a worker pool support.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "kami", + "email": "tomaz@tomaz.me" + } + ], + "time": { + "modified": "2011-03-30T16:16:52.851Z", + "created": "2011-03-30T16:16:52.452Z", + "0.1.0": "2011-03-30T16:16:52.851Z" + }, + "author": { + "name": "Tomaz Muraus", + "email": "tomaz+npm@tomaz.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/Kami/node-worker-pool.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/worker-pool/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "ea8b4f40bb569ba7501006c8b0a843d0e51cbc44", + "tarball": "http://registry.npmjs.org/worker-pool/-/worker-pool-0.1.0.tgz" + } + }, + "keywords": [ + "worker", + "workers", + "web workers", + "worker pool" + ], + "url": "http://registry.npmjs.org/worker-pool/" + }, + "workflow": { + "name": "workflow", + "description": "n/a", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "hij1nx", + "email": "hij1nx@me.com" + } + ], + "time": { + "modified": "2011-11-28T15:51:23.099Z", + "created": "2011-06-05T17:37:54.649Z", + "0.0.0": "2011-06-05T17:37:55.075Z", + "0.0.1": "2011-11-28T15:38:27.509Z", + "0.0.2": "2011-11-28T15:40:09.776Z" + }, + "author": { + "name": "Async.ly", + "email": "info@async.ly" + }, + "repository": { + "type": "git", + "url": "git@github.com:asyncly/workflow.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/workflow/0.0.0", + "0.0.1": "http://registry.npmjs.org/workflow/0.0.1", + "0.0.2": "http://registry.npmjs.org/workflow/0.0.2" + }, + "dist": { + "0.0.0": { + "shasum": "ba4dd622e6ffb29d7706373f0a257ffc0ef2c018", + "tarball": "http://registry.npmjs.org/workflow/-/workflow-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "6805389d495ab6ea683ae86dbd080718d165dd54", + "tarball": "http://registry.npmjs.org/workflow/-/workflow-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "83e196c93df742f88e5cf0ca95487781556f21d4", + "tarball": "http://registry.npmjs.org/workflow/-/workflow-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/workflow/" + }, + "workhorse": { + "name": "workhorse", + "description": "Distributed computation server and clients", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "yoni", + "email": "yoni.bmesh@gmail.com" + } + ], + "author": { + "name": "Yoni Ben-Meshulam", + "email": "yoni@opower.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/workhorse/0.0.1", + "0.0.10": "http://registry.npmjs.org/workhorse/0.0.10", + "0.0.11": "http://registry.npmjs.org/workhorse/0.0.11", + "0.0.12": "http://registry.npmjs.org/workhorse/0.0.12", + "0.0.13": "http://registry.npmjs.org/workhorse/0.0.13", + "0.0.14": "http://registry.npmjs.org/workhorse/0.0.14", + "0.0.2": "http://registry.npmjs.org/workhorse/0.0.2", + "0.0.4": "http://registry.npmjs.org/workhorse/0.0.4", + "0.0.6": "http://registry.npmjs.org/workhorse/0.0.6", + "0.0.7": "http://registry.npmjs.org/workhorse/0.0.7", + "0.0.8": "http://registry.npmjs.org/workhorse/0.0.8", + "0.0.9": "http://registry.npmjs.org/workhorse/0.0.9", + "0.1.0": "http://registry.npmjs.org/workhorse/0.1.0" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/workhorse/-/workhorse-0.0.1.tgz" + }, + "0.0.10": { + "tarball": "http://packages:5984/workhorse/-/workhorse-0.0.10.tgz" + }, + "0.0.11": { + "tarball": "http://packages:5984/workhorse/-/workhorse-0.0.11.tgz" + }, + "0.0.12": { + "tarball": "http://packages:5984/workhorse/-/workhorse-0.0.12.tgz" + }, + "0.0.13": { + "tarball": "http://packages:5984/workhorse/-/workhorse-0.0.13.tgz" + }, + "0.0.14": { + "tarball": "http://packages:5984/workhorse/-/workhorse-0.0.14.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/workhorse/-/workhorse-0.0.2.tgz" + }, + "0.0.4": { + "tarball": "http://packages:5984/workhorse/-/workhorse-0.0.4.tgz" + }, + "0.0.6": { + "tarball": "http://packages:5984/workhorse/-/workhorse-0.0.6.tgz" + }, + "0.0.7": { + "tarball": "http://packages:5984/workhorse/-/workhorse-0.0.7.tgz" + }, + "0.0.8": { + "tarball": "http://packages:5984/workhorse/-/workhorse-0.0.8.tgz" + }, + "0.0.9": { + "tarball": "http://packages:5984/workhorse/-/workhorse-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "553c4f9cf749d83edbbfb3820442a18f2200617c", + "tarball": "http://registry.npmjs.org/workhorse/-/workhorse-0.1.0.tgz" + } + }, + "keywords": [ + "distributed computing", + "client-side", + "web", + "cluster computing", + "distributed programming", + "distributed systems", + "parallel computing" + ], + "url": "http://registry.npmjs.org/workhorse/" + }, + "workman": { + "name": "workman", + "description": "Job Server : Distribute your jobs anywhere.", + "dist-tags": { + "latest": "0.2.0" + }, + "readme": "# node-cloudq\n\nThe job queue you can enqueue and reserve jobs from\nanywhere.", + "maintainers": [ + { + "name": "jackhq", + "email": "tom@jackhq.com" + } + ], + "time": { + "modified": "2011-11-21T22:13:16.673Z", + "created": "2011-11-21T22:13:15.673Z", + "0.2.0": "2011-11-21T22:13:16.673Z" + }, + "author": { + "name": "Tom Wilson" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/workman/0.2.0" + }, + "dist": { + "0.2.0": { + "shasum": "73ac05542074f367ab35117107a3a58e42630cdb", + "tarball": "http://registry.npmjs.org/workman/-/workman-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/workman/" + }, + "world-db": { + "name": "world-db", + "description": "Highly effecient database for large tilemas", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "creationix", + "email": "tim@creationix.com" + } + ], + "author": { + "name": "Tim Caswell", + "email": "tim@creationix.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/creationix/world-db.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/world-db/0.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/world-db/-/world-db-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/world-db/" + }, + "wormhole": { + "name": "wormhole", + "description": "A streaming message queue system for Node.JS focused on performance.", + "dist-tags": { + "latest": "3.0.0" + }, + "maintainers": [ + { + "name": "aikar", + "email": "aikar@aikar.co" + } + ], + "time": { + "modified": "2011-09-24T16:10:18.363Z", + "created": "2011-04-14T00:17:05.846Z", + "0.1.0": "2011-04-14T00:17:05.999Z", + "1.0.0": "2011-04-17T18:01:07.286Z", + "2.0.0": "2011-04-26T18:07:10.934Z", + "2.0.1": "2011-09-14T00:12:39.930Z", + "3.0.0": "2011-09-24T07:32:38.093Z" + }, + "author": { + "name": "Aikar", + "email": "aikar@aikar.co" + }, + "repository": { + "type": "git", + "url": "git://github.com/aikar/wormhole.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/wormhole/0.1.0", + "1.0.0": "http://registry.npmjs.org/wormhole/1.0.0", + "2.0.0": "http://registry.npmjs.org/wormhole/2.0.0", + "2.0.1": "http://registry.npmjs.org/wormhole/2.0.1", + "3.0.0": "http://registry.npmjs.org/wormhole/3.0.0" + }, + "dist": { + "0.1.0": { + "shasum": "db134f2146797403fe006e210a4fb00ffbe721b2", + "tarball": "http://registry.npmjs.org/wormhole/-/wormhole-0.1.0.tgz" + }, + "1.0.0": { + "shasum": "e2c92fc50afd8f867dcd21defdf4260649f52a1d", + "tarball": "http://registry.npmjs.org/wormhole/-/wormhole-1.0.0.tgz" + }, + "2.0.0": { + "shasum": "befdbdd0d7ee033182a1a2adf68de001f8ef4124", + "tarball": "http://registry.npmjs.org/wormhole/-/wormhole-2.0.0.tgz" + }, + "2.0.1": { + "shasum": "873552e5d786fdbab7b48483c6ad7e690079ca47", + "tarball": "http://registry.npmjs.org/wormhole/-/wormhole-2.0.1.tgz" + }, + "3.0.0": { + "shasum": "7c784750683f23761686b71adbbb286661a5efa8", + "tarball": "http://registry.npmjs.org/wormhole/-/wormhole-3.0.0.tgz" + } + }, + "keywords": [ + "message", + "queue", + "pass", + "stream", + "parser", + "fast", + "json" + ], + "url": "http://registry.npmjs.org/wormhole/" + }, + "wpg": { + "name": "wpg", + "description": "Generates the XML file for a changing GNOME background from the image files in the current workign directory", + "dist-tags": { + "latest": "0.0.2" + }, + "readme": null, + "maintainers": [ + { + "name": "dlom", + "email": "dlom234@gmail.com" + } + ], + "time": { + "modified": "2011-12-01T00:25:41.004Z", + "created": "2011-11-30T04:56:25.960Z", + "0.0.1": "2011-11-30T04:56:27.939Z", + "0.0.2": "2011-12-01T00:25:41.004Z" + }, + "author": { + "name": "Mark Old", + "email": "dlom234@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/Dlom/wpg.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/wpg/0.0.1", + "0.0.2": "http://registry.npmjs.org/wpg/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "f0083d5d2ca2add0b34f45df42307eeba5420408", + "tarball": "http://registry.npmjs.org/wpg/-/wpg-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "1282094e05ad8a1c111482f92e4a6443a105bdc8", + "tarball": "http://registry.npmjs.org/wpg/-/wpg-0.0.2.tgz" + } + }, + "keywords": [ + "gnome", + "wallpaper" + ], + "url": "http://registry.npmjs.org/wpg/" + }, + "wrap": { + "name": "wrap", + "description": "Wrap is Prototype.js style context wrapping it in another function", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "firejune", + "email": "to@firejune.com" + } + ], + "time": { + "modified": "2011-10-19T03:19:58.855Z", + "created": "2011-09-10T00:20:28.469Z", + "0.1.0": "2011-09-10T00:20:32.439Z", + "0.1.1": "2011-10-19T03:15:31.232Z", + "0.1.2": "2011-10-19T03:19:58.855Z" + }, + "author": { + "name": "Firejune", + "url": "http://firejune.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/firejune/wrap.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/wrap/0.1.0", + "0.1.1": "http://registry.npmjs.org/wrap/0.1.1", + "0.1.2": "http://registry.npmjs.org/wrap/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "73b2552ad24645cd8b891113ac601a6c5eab92c6", + "tarball": "http://registry.npmjs.org/wrap/-/wrap-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "34f04a2fc2cb18447fd2927acd5466cd48de2f82", + "tarball": "http://registry.npmjs.org/wrap/-/wrap-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "57ac3eca3a45c9eaf4972cdda3b937c59ee6e288", + "tarball": "http://registry.npmjs.org/wrap/-/wrap-0.1.2.tgz" + } + }, + "keywords": [ + "wrap", + "bind", + "prototype", + "context", + "function" + ], + "url": "http://registry.npmjs.org/wrap/" + }, + "wrench": { + "name": "wrench", + "description": "Recursive filesystem (and other) operations that Node *should* have.", + "dist-tags": { + "latest": "1.3.2" + }, + "maintainers": [ + { + "name": "ryanmcgrath", + "email": "ryan@venodesigns.net" + } + ], + "author": { + "name": "Ryan McGrath", + "email": "ryan@venodesigns.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/ryanmcgrath/wrench-js.git" + }, + "time": { + "modified": "2011-11-04T02:54:00.848Z", + "created": "2011-04-13T04:36:13.126Z", + "0.1.0": "2011-04-13T04:36:13.126Z", + "1.0.0": "2011-04-13T04:36:13.126Z", + "1.1.0": "2011-04-29T02:19:09.485Z", + "1.2.0": "2011-09-19T04:14:32.369Z", + "1.3.0": "2011-10-10T16:58:37.712Z", + "1.3.1": "2011-10-23T07:55:11.731Z", + "1.3.2": "2011-11-04T02:54:00.848Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/wrench/0.1.0", + "1.0.0": "http://registry.npmjs.org/wrench/1.0.0", + "1.1.0": "http://registry.npmjs.org/wrench/1.1.0", + "1.2.0": "http://registry.npmjs.org/wrench/1.2.0", + "1.3.0": "http://registry.npmjs.org/wrench/1.3.0", + "1.3.1": "http://registry.npmjs.org/wrench/1.3.1", + "1.3.2": "http://registry.npmjs.org/wrench/1.3.2" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/wrench/-/wrench-0.1.0.tgz" + }, + "1.0.0": { + "tarball": "http://registry.npmjs.org/wrench/-/wrench-1.0.0.tgz" + }, + "1.1.0": { + "tarball": "http://registry.npmjs.org/wrench/-/wrench-1.1.0.tgz" + }, + "1.2.0": { + "shasum": "b8995797d53b9cf5e2b97f4ca566ec44c5295e7f", + "tarball": "http://registry.npmjs.org/wrench/-/wrench-1.2.0.tgz" + }, + "1.3.0": { + "shasum": "850d869724e3dab53ed561856acb867fd4d622eb", + "tarball": "http://registry.npmjs.org/wrench/-/wrench-1.3.0.tgz" + }, + "1.3.1": { + "shasum": "957a0b8faf9ef1a5fce9a7e5be3caa46f0f19c63", + "tarball": "http://registry.npmjs.org/wrench/-/wrench-1.3.1.tgz" + }, + "1.3.2": { + "shasum": "ec2b81b06d179b09d0d25e9e796ba58661fa21e5", + "tarball": "http://registry.npmjs.org/wrench/-/wrench-1.3.2.tgz" + } + }, + "url": "http://registry.npmjs.org/wrench/" + }, + "wru": { + "name": "wru", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "wru :: unit tests have never been that easy\n===========================================\n\n*wru* is an **essential unit test framework** compatible with **web** environment, [node.js](http://nodejs.org/) and [Rhino](http://www.mozilla.org/rhino/) as well.\n\n\nfeatures\n--------\n\n * **runs in both client and server environments**, compatible with html files, node.js, and Rhino\n * **both synchronous and asynchronous tests** in an absolutely intuitive way\n * **ES5 and JS.next ready**, compatible with `\"use strict\"` directive which means no `with` statements, `eval`, or misused `this` references\n * **easy**, probably the easiest way to test JS code out there thanks to its simplified API: `test`, `assert`, and `async` ... you already remember \"*all of them*\", isn't it?\n * **unobtrusive** and **self defensive**, since everything that could possibly change in such dynamic environment as JS is, is \"*sandboxed*\" inside the *wru closure*. This means no matter how \"*nasty*\" your code is, *wru* won't pollute or change the global environment, neither it will rely in native *constructor.prototypes* changes (`Array.prototype.push = ...` or `Object.prototype.hasOwnProperty = ...`? not a problem!)\n * **cursor included in both web and console** ... you gonna realize how much \"[THE CURSOR](http://www.3site.eu/cursor/)\" is important, specially to understand if your test is **stuck** or simply \"*waiting for*\" ... cursor is working in both Unix and OSX consoles\n * **tiny**, even if it's not important in Unit Tests world, *wru* fits into about 2Kb (1.2Kb *minzpped*) which means not much to fix or change here, just a simple, reliable, and essential framework for your tests\n * **under your control**, since there is absolutely **no magic behind the *wru* scene**. You assert what you want, you async what you need, you describe what's needed, and you are *ready to go* in less than 5 minutes\n\nIf you can't believe it check [html](https://github.com/WebReflection/wru/blob/master/test/test.html), [node.js](https://github.com/WebReflection/wru/blob/master/test/testnode.js), or [Rhino](https://github.com/WebReflection/wru/blob/master/test/testrhino.js) test and see how *wru* does work ;-)\n\n\ncompatibility\n-------------\n\n*wru* is compatible with basically all possible browsers out there included **IE5.5**, **IE6**, **IE7**, **IE8**, **IE9**, **IE10**, **Chrome**, **Firefox**, **Safari**, **Webkit** based, **Mobile Browsers**, and **Opera**.\n\nOn server side *wru* is compatible with latest **Rhino** and **node.js** versions. I swear if *I find an easy way to* easily *test Spider/Iron/JagerMonkey I will* include *support them* too.\n\n\nhow to test wru\n---------------\n\nThe simplest way to test wru is to use [template.html](https://raw.github.com/WebReflection/wru/master/build/template.html) for **web** tests or [template.js](https://raw.github.com/WebReflection/wru/master/build/template.js) for **server** tests.\nWith these 2 options you don't even need to fork or download the entire repository ... but if you do that ...\n\nFrom *wru* root directory, simply run these commands accordingly with what you want to test:\n\n // node.js test\n node test/testnode.js\n \n // Rhino\n java -jar builder/jar/js.jar test/testrhino.js\n \n // web (through Mac OSX but you can open test.html with any browser)\n open test/test.html\n\nIf you forked the project, you made some change, and you want to **rebuild wru**, this is all you have to do:\n\n // still inside wru folder\n python builder/build.py\n\nAfter the build process is finished, no more than 3 seconds with forced waiting time included to read stats if build has been *double-clicked*, you should be able to run again the test for your own environment.\n\nPlease bear in mind **JSbuilder.py** works with **Python < 3** (2.6 or 2.7 are fine) so be sure you have it (you should by default on Mac or Linux).\n\n\nwru basics\n----------\n\n // probably all you need as \"one shot\" test\n wru.test({\n name: \"Hello wru!\",\n test: function () {\n wru.assert(\"it works!\", 1);\n }\n });\n \n // for multiple tests ... pass an Array\n wru.test([{\n name: \"test #1\",\n setup: function () {\n // setup before the test\n },\n test: function () {\n // async test example\n setTimeout(wru.async(function () {\n wru.assert(\"executed\", true);\n }), 1000);\n },\n teardown: function () {\n // clean up after the test\n }\n },{\n name: \"test #2\",\n test: function () {\n // do other stuf here\n }\n }]);\n\nTo know more about *wru* possibilities ... please keep reading ;-)\n\n\nwru API\n=======\n\nThere are truly few things you need to know, and even less properties you need to configure!\n\n\nmethods\n-------\n\n * `test(object)` or `test([object, ..., object])` to execute one or more tests. A generic test object may have one or more properties:\n * `test` property, as **function**, to execute the test with one or more `wru.assert()` or `wru.async()` calls. **optional** but recommended\n * `name` or `description` property, as **string**, to have visual knowledge of the current test **optional**\n * `setup` property, as **function**, that will be executed right before the test: **optional**\n * `teardown` property, as **function**, that will be executed right after the test: **optopnal**\n * `assert(\"description\", truishOrFalsyValue)` to manually assert whatever you want where **description is optional** (but suggested) and the assertion is compatible with *truish* or *falsy* values. You are in charge of strictly compared results if necessary by *===* operator, nothing new to learn here\n * `async(\"description\", callback, timeout)` to tell *wru* that a test will be executed at some point later and where **both description and timeout are optionals**\n\n\nproperties\n----------\n\n * `random`, as `true` or `false`, to make tests order execution random (by default `false`)\n * `node` on **web version only** to set a different node from the default one (which is an element with `id == \"wru\"`or the `document.body` or the `document.documentElement` if `body` is not present yet)\n\n\nhow does wru work\n=================\n\nfollowing a list of explained tasks that are possible with *wru*\n\n\nsynchronous tests and wru.assert()\n----------------------------------\nEvery test **may** have one or more `wru.assert()` calls inside. The method itself accepts one or two arguments. Following a sequence of valid operations.\n\n // the test object ...\n {\n name: \"existance test\",\n test: function () {\n \n // example only: if next property is not\n // null, undefined, 0, false, \"\", or NaN\n // the assertion will pass the test\n wru.assert(\"callback exists\", window.onload);\n \n // if necessary, assertion can be strict without problems\n wru.assert(\n \"it is a callback\",\n typeof window.onload === \"function\"\n );\n \n // the description is visually useful\n // if the test fails but it's not mandatory\n // next example is still valid, no description\n wru.assert(\"isArray\" in Array);\n \n // if a condition supposes to be truish\n // wru.assert can make test life easier\n // returning the asserted value\n if (wru.assert(\"defineProperty\" in Object)) {\n wru.assert(\n Object.defineProperty({}, \"_\", {value: true})._\n );\n }\n \n }\n }\n\n\nasynchronous tests and wru.async()\n----------------------------------\nEvery test is performed synchronously unless there is one or more `wru.async()` calls. In latter case all tests after the current one will be waiting for the asynchronous call to be executed.\nWhen it happens, if the asynchronous call performed one or more assertions, the framework keep going without requiring any extra step: **is that easy!**\n\n // the test object ...\n {\n name: \"load content\",\n test: function () {\n // asynchronous test example\n \n // this will be synchronous\n wru.assert(\"condition accepted\", true);\n \n // this will be asynchronous\n var xhr = new XMLHttpRequest;\n xhr.open(\"get\", \"file.txt\", true);\n xhr.onreadystatechange = wru.async(function () {\n if (this.readyState === 4) {\n \n // only on readyState 4 there is an assertion\n wru.assert(\"text is not empty\", this.responseText.length);\n \n // if necessary, async call can be nested\n setTimeout(wru.async(function () {\n wru.assert(\n \"DOM changed in the meanwhile\",\n docment.body.innerHTML != storedLayout\n );\n }, 500));\n }\n });\n xhr.send(null);\n \n // this will be performed regardless\n wru.assert(\"something else to check\", 1);\n }\n }\n\nIn above example, the `onreadystatechange` function may be executed many times on different `readyState`. The *wru* logic cannot care less about it since an asynchronous callback is considered *done* when **at least one assertion has been performed**.\nIf this does not happen the internal `TIMEOUT` constant, by default 10 seconds, will kill the procedure.\nYou have to admit there is no reason to create an asynchronous test without performing some assertion inside the callback ... and this is where *wru* is smart.\nIf many assertions have been defined and one of them is not reached is most likely because there was an error or a failure in the test.\n*wru* tracks all tests without problems so forget things such `lib.expectedAssertions(3)` and \"*friends*\" ... you really may not need that!\n\n\nthe temporary object\n--------------------\n\nIf needed, every `setup`, `test`, or `teardown` function will receive a \"*freshly new backed*\" object for the current test.\nThis can be handy to store some reference or value on `setup`, use them during the `test`, and drop them during the `teardown` if necessary.\n\n // the test object ...\n {\n name: \"tmp object all over\",\n setup: function (tmp) {\n tmp.global = window;\n tmp.global.random = Math.random();\n },\n test: function (tmp) {\n wru.assert(\n tmp.global === window // true\n );\n wru.assert(\n typeof tmp.global.random == \"number\" // true again\n );\n },\n teardown: function (tmp) {\n delete tmp.global.random;\n delete tmp.global;\n }\n }\n\n\nthe build process\n=================\n\n*wru* is based on [javascript-builder](http://code.google.com/p/javascript-builder/) which is able to aggregate distributed files in order to produce the final library/framework even if the source/JS logic is split in more files.\n\nThis is the *wru* case, where some file is dedicated for web environment rather than console/shell one.\nIf you fork the project and you make some change/improvement, first of all let me know :-), secondly remember to re-build the script.\nThis is the list of files actually created by *wru build process* inside the *build* folder:\n\n * **wru.console.max.js** is the full script console/shell related, suitable for *node.js* or *rhino* tests\n * **wru.console.js** is the minified version of the precedent one with `wru.debug()` stripped out\n * **wru.dom.js** is the full script DOM related, suitable for *web* and *browsers*\n * **wru.min.js** is the minified version of the precedent one with `wru.debug()` stripped out\n\n`wru.debug()` is a method used to export, track, test, or change internals. You should never use this method unless strictly necessary but it's there for debugging purpose.\n`wru.debug()` is automatically removed from built versions so that no evaluation of internals can be possible.\n\nIf you want to have an overall view of the framework check already built output since if not familiar with this build process it may be hard at the beginning.\n\nThis is the [HTML version](https://github.com/WebReflection/wru/blob/master/build/wru.dom.js), and this is the [console one](https://github.com/WebReflection/wru/blob/master/build/wru.console.max.js), you will notice things make sense there since the order is specified in the [build.py](https://github.com/WebReflection/wru/blob/master/builder/build.py) file.\n\nPlease remember all you have to do to build *wru* is this call in the *wru* project root\n\n python builder/build.py\n\n\nwru against others\n==================\n\nOther UT frameworks may offer more than what *wru* does but this rarely comes for free.\nSome of them may have such complicated/articulated logic that it may happens is the UT framework itself that's failing rather than your code.\nAlso you need to read a lot of documentation and most likely to obtain something already possible with *wru*.\nI am not saying *wru* is the best UT framework out there, I am just saying you should consider your requirements before you chose an UT framework ;-)\nIn any case, *wru* aim is to make any sort of test simplified and under control.\n\nAs example: \"*do you really need so much 'magic' to perform these tasks?*\"\n\n // rather than specify expected arguments\n // via magic/complicated operations\n function (a, b, c) {\n wru.assert(\"received numbers\",\n typeof a == \"number\"\n &&\n typeof b == \"number\"\n &&\n typeof c == \"number\"\n );\n }\n \n // rather than specify returned values\n // via magic/complicated operations\n wru.assert(typeof callbac() != \"undefined\");\n \n // did you know the console object\n // may have already an assert() method\n // since that's basically all you need?\n wru.assert(\n \"if true, I can get rid of wru since all I need is 'assert'\",\n \"assert\" in console\n );\n \n // the only reason wru may be handy is the\n // cross platform/environment compatibility\n // and its async method interlaced with\n // current environment layout (HTML or shell/console/bash)\n wru.assert(\"oh come on but this is so easy!\", 1);\n\nJust give it a try ;-)\n\n\nHTML VS console\n===============\n\n*wru* core functionality is exactly the same in both environments ... it cannot be easier to maintain, imo.\nHowever, there are few substantial differences between HTML results and those shown in the console\n\n\nHTML tests\n----------\n\n * based on classes, easily to customize via [CSS](https://github.com/WebReflection/wru/blob/master/test/wru.css)\n * differential colors accordingly with test results: green if successful, red if failed, black if cryptical (e.g. unmanaged exceptions)\n * failures or errors are not shown by default, **one click** to see the list of problems in any of those non green tests\n * summary on top, no need to scroll 'till the end of the document to understand how it was. A nice summary with all passed, failed, or unmanaged errors test is shown on top\n\n\nconsole tests\n-------------\n\n * based on `stdout`\n * differential prefixes accordingly with test results: `[OK]` if successful, `[FAILURE]` if failed, `[ERROR]` if cryptical (e.g. unmanaged exceptions)\n * failures and errors are always listed in the output\n * summary always at the end of the test\n\n\nI need a setup per each test!\n=============================\n\nSure you do :-)\n\n // just create a simple wrapper before your tests\n // to fully automate the procedure\n wru.test = (function (test) {\n \n // we got a closure here, do whaveter you want!\n function whateverSetupIsNeeded(tmp) {\n // do setup stuff\n }\n \n return function (testObjects) {\n // be sure it's an array, convert otherwise\n testObjects = [].conca(testObjects);\n \n // per each object\n for (var\n // reassign the setup if present\n reassign = function (setup) {\n testObjects[i].setup = function (tmp) {\n whateverSetupIsNeeded(tmp);\n setup && setup(tmp);\n };\n },\n i = testObjects.length; i--;\n reassign(testObjects[i].setup)\n );\n \n // invoke wru.test() which is self bound\n test(list);\n \n // that's pretty much it\n };\n \n }(wru.test));\n\nSimilar technique if you need same teardown call per each test.\n\n\nI need other edge cases too !\n=============================\n\nThe cool part is that being simple, *wru* is also highly customizable.\nPlease keep an eye in the [solutions.html](https://github.com/WebReflection/wru/blob/master/test/solutions.html) file.\nI will try to update it as soon as some *request or edge case* comes up.\n\n\nwrap it if you want\n===================\n\nIf you think *wru* is too simple, you still have a chance to improve it wrapping its basic methods and create something wonderful out of it.\nArguments automations? Returned values? Expected number of calls per callback?\n\nThe *wru* cross environment core is easy to hack for anybody, check [wru.js](https://github.com/WebReflection/wru/blob/master/src/wru.js) and your are already half way through ;-)\n\n\nlicense\n=======\n\n*wru* unit test framework and the rest of the project is under Mit Style License\n\n Copyright (C) 2011 by Andrea Giammarchi, @WebReflection\n \n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n \n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n \n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n THE SOFTWARE.\n\n\nOT: some fun during wru development\n-----------------------------------\n\nIf you check the built source you will realize that a `wru.test()` lifecycle is between a call to internal `isGonnaBeLegen()` function, passing through the `waitForIt` variable if some asynchronous call has been required, and ending up into the `Dary()` callback.\n\nI know you don't care but at least now you know how is the `wru.test()` lifecycle :{D", + "maintainers": [ + { + "name": "webreflection", + "email": "andrea.giammarchi@gmail.com" + } + ], + "time": { + "modified": "2011-12-05T22:12:00.431Z", + "created": "2011-12-05T22:11:58.270Z", + "0.1.0": "2011-12-05T22:12:00.431Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/wru/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "a2462467f09b71f98e5fd16afda0edff4d4cc07a", + "tarball": "http://registry.npmjs.org/wru/-/wru-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/wru/" + }, + "ws": { + "name": "ws", + "description": "simple and very fast websocket protocol client for node.js", + "dist-tags": { + "latest": "0.3.5-4" + }, + "readme": "# ws: a node.js websocket.client #\n\n`ws` is a simple to use, blazing fast, websocket client for node.js, up-to-date against current HyBi protocol versions.\n\nPasses the quite extensible Autobahn test suite. See http://einaros.github.com/ws for the full report.\n\n## Usage ##\n\n### Installing ###\n\n`npm install ws`\n\n### Sending and receiving text data ###\n\n```js\nvar WebSocket = require('ws');\nvar ws = new WebSocket('ws://www.host.com/path');\nws.on('open', function() {\n ws.send('something');\n});\nws.on('message', function(data, flags) {\n // flags.binary will be set if a binary data is received\n // flags.masked will be set if the data was masked\n});\n```\n \n### Sending binary data ###\n\n```js\nvar WebSocket = require('ws');\nvar ws = new WebSocket('ws://www.host.com/path');\nws.on('open', function() {\n var array = new Float32Array(5);\n for (var i = 0; i < array.length; ++i) array[i] = i / 2;\n ws.send(array, {binary: true, mask: true});\n});\n```\n\nSetting `mask`, as done for the send options above, will cause the data to be masked according to the websocket protocol. The same option applies for text data.\n\n### echo.websocket.org demo ###\n\n```js\nvar WebSocket = require('ws');\nvar ws = new WebSocket('ws://echo.websocket.org/', {protocolVersion: 8, origin: 'http://websocket.org'});\nws.on('open', function() {\n console.log('connected');\n ws.send(Date.now().toString(), {mask: true});\n});\nws.on('close', function() {\n console.log('disconnected');\n});\nws.on('message', function(data, flags) {\n console.log('Roundtrip time: ' + (Date.now() - parseInt(data)) + 'ms', flags);\n setTimeout(function() {\n ws.send(Date.now().toString(), {mask: true});\n }, 500);\n});\n```\n\n### Other examples ###\n\nSee the test cases.\n\n### Running the tests ###\n\n`make test`\n\n## Todos ##\n\nNothing worth bragging about at present.\n\n## License ##\n\n(The MIT License)\n\nCopyright (c) 2011 Einar Otto Stangvik <einaros@gmail.com>\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n", + "maintainers": [ + { + "name": "einaros", + "email": "einaros@gmail.com" + } + ], + "time": { + "modified": "2011-12-13T22:21:57.061Z", + "created": "2011-12-04T10:32:12.839Z", + "0.2.6": "2011-12-04T10:32:14.627Z", + "0.2.7": "2011-12-07T12:28:11.002Z", + "0.2.8": "2011-12-07T12:52:53.588Z", + "0.2.9": "2011-12-07T14:42:17.238Z", + "0.3.0": "2011-12-08T13:30:10.031Z", + "0.3.1": "2011-12-08T19:39:18.407Z", + "0.3.2": "2011-12-11T22:40:27.266Z", + "0.3.3": "2011-12-12T08:02:31.982Z", + "0.3.4": "2011-12-12T10:09:11.389Z", + "0.3.4-2": "2011-12-12T11:31:05.010Z", + "0.3.5": "2011-12-13T11:55:41.773Z", + "0.3.5-2": "2011-12-13T14:53:45.350Z", + "0.3.5-3": "2011-12-13T18:32:37.432Z", + "0.3.5-4": "2011-12-13T22:21:57.061Z" + }, + "author": { + "name": "Einar Otto Stangvik", + "email": "einaros@gmail.com", + "url": "http://2x.io" + }, + "repository": { + "type": "git", + "url": "git://github.com/einaros/ws.git" + }, + "versions": { + "0.2.6": "http://registry.npmjs.org/ws/0.2.6", + "0.2.8": "http://registry.npmjs.org/ws/0.2.8", + "0.2.9": "http://registry.npmjs.org/ws/0.2.9", + "0.3.0": "http://registry.npmjs.org/ws/0.3.0", + "0.3.1": "http://registry.npmjs.org/ws/0.3.1", + "0.3.2": "http://registry.npmjs.org/ws/0.3.2", + "0.3.3": "http://registry.npmjs.org/ws/0.3.3", + "0.3.4": "http://registry.npmjs.org/ws/0.3.4", + "0.3.4-2": "http://registry.npmjs.org/ws/0.3.4-2", + "0.3.5": "http://registry.npmjs.org/ws/0.3.5", + "0.3.5-2": "http://registry.npmjs.org/ws/0.3.5-2", + "0.3.5-3": "http://registry.npmjs.org/ws/0.3.5-3", + "0.3.5-4": "http://registry.npmjs.org/ws/0.3.5-4" + }, + "dist": { + "0.2.6": { + "shasum": "aec644a272a71228f7cc86d41167a6ec855d8a12", + "tarball": "http://registry.npmjs.org/ws/-/ws-0.2.6.tgz" + }, + "0.2.8": { + "shasum": "861f66649e5019e0b188c380da99ec09fc078f95", + "tarball": "http://registry.npmjs.org/ws/-/ws-0.2.8.tgz" + }, + "0.2.9": { + "shasum": "7f32270036409863d1401d6da6e58653b572b18b", + "tarball": "http://registry.npmjs.org/ws/-/ws-0.2.9.tgz" + }, + "0.3.0": { + "shasum": "c67c62352261fa6f8b1eb5dbcf2f9be969525aaa", + "tarball": "http://registry.npmjs.org/ws/-/ws-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "73f5d1b310f72594857ecaf0e5f79c7af86385a9", + "tarball": "http://registry.npmjs.org/ws/-/ws-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "c57326cba08f76231002b3e4fa595676938d39af", + "tarball": "http://registry.npmjs.org/ws/-/ws-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "a506abb667a903e5a8a281009be3e976a1e17643", + "tarball": "http://registry.npmjs.org/ws/-/ws-0.3.3.tgz" + }, + "0.3.4": { + "shasum": "2252c1b3a6d646d899d5bab7b31bd979b139fadd", + "tarball": "http://registry.npmjs.org/ws/-/ws-0.3.4.tgz" + }, + "0.3.4-2": { + "shasum": "8ff01a3ed0bee94ef4f4c6b7bb1b868c6a58e5fa", + "tarball": "http://registry.npmjs.org/ws/-/ws-0.3.4-2.tgz" + }, + "0.3.5": { + "shasum": "cdda02de927eaec577b4a67604075ec16c145527", + "tarball": "http://registry.npmjs.org/ws/-/ws-0.3.5.tgz" + }, + "0.3.5-2": { + "shasum": "0e58b65ffb2eb597a85d08d5c975c54014f57f65", + "tarball": "http://registry.npmjs.org/ws/-/ws-0.3.5-2.tgz" + }, + "0.3.5-3": { + "shasum": "84afdaf8a4ed524ff41e38c18b7231ee5a98749f", + "tarball": "http://registry.npmjs.org/ws/-/ws-0.3.5-3.tgz" + }, + "0.3.5-4": { + "shasum": "d4bd8a2e3659a85e7784a061088a9410fa70f1ae", + "tarball": "http://registry.npmjs.org/ws/-/ws-0.3.5-4.tgz" + } + }, + "url": "http://registry.npmjs.org/ws/" + }, + "wsclient": { + "name": "wsclient", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "stesla", + "email": "samuel.tesla@gmail.com" + } + ], + "time": { + "modified": "2011-08-11T16:05:00.102Z", + "created": "2011-06-07T20:03:55.983Z", + "0.1.0": "2011-06-07T20:03:56.188Z", + "0.1.1": "2011-06-07T20:35:34.424Z", + "0.1.2": "2011-06-08T18:40:38.626Z", + "0.1.3": "2011-06-14T15:11:38.529Z", + "0.1.4": "2011-06-14T15:45:08.295Z", + "0.1.5": "2011-06-14T20:09:39.427Z", + "0.1.6": "2011-06-20T21:04:38.318Z", + "0.2.0": "2011-08-11T16:05:00.102Z" + }, + "author": { + "name": "Samuel Tesla", + "email": "samuel.tesla@gmail.com" + }, + "description": "A WebSocket client", + "versions": { + "0.1.0": "http://registry.npmjs.org/wsclient/0.1.0", + "0.1.1": "http://registry.npmjs.org/wsclient/0.1.1", + "0.1.2": "http://registry.npmjs.org/wsclient/0.1.2", + "0.1.3": "http://registry.npmjs.org/wsclient/0.1.3", + "0.1.4": "http://registry.npmjs.org/wsclient/0.1.4", + "0.1.5": "http://registry.npmjs.org/wsclient/0.1.5", + "0.1.6": "http://registry.npmjs.org/wsclient/0.1.6", + "0.2.0": "http://registry.npmjs.org/wsclient/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "5c62f8870379c8581590ab4733240d5c322b0f89", + "tarball": "http://registry.npmjs.org/wsclient/-/wsclient-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "2a443ba8ff93d75e427fe6663cca7556a23bffa0", + "tarball": "http://registry.npmjs.org/wsclient/-/wsclient-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "f65350df3d5d1156dc8c1e04b5a7d1d398e1d329", + "tarball": "http://registry.npmjs.org/wsclient/-/wsclient-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "9f42f74b4cabb44e9af891b7689b88143a767e53", + "tarball": "http://registry.npmjs.org/wsclient/-/wsclient-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "fab66ec44962aa86759c7c89fcbcbd1c6875ef33", + "tarball": "http://registry.npmjs.org/wsclient/-/wsclient-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "444d1d567128d6131ac2daf945ed27c30ab4c398", + "tarball": "http://registry.npmjs.org/wsclient/-/wsclient-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "790694bd96230317b643664a109a430ec5718e26", + "tarball": "http://registry.npmjs.org/wsclient/-/wsclient-0.1.6.tgz" + }, + "0.2.0": { + "shasum": "ffb266a42c8faa48eb919b690bc090ff6f18e2ed", + "tarball": "http://registry.npmjs.org/wsclient/-/wsclient-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/wsclient/" + }, + "wscomm": { + "name": "wscomm", + "description": "WebSocket JSON-RPC bidirectional communication library", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "dvv", + "email": "dronnikov@gmail.com" + } + ], + "time": { + "modified": "2011-05-14T20:09:38.442Z", + "created": "2011-05-11T05:03:35.832Z", + "0.0.1": "2011-05-11T05:03:36.223Z", + "0.0.2": "2011-05-11T07:07:02.612Z", + "0.0.3": "2011-05-11T11:29:29.999Z", + "0.0.4": "2011-05-12T13:13:27.084Z", + "0.0.5": "2011-05-13T11:45:30.898Z" + }, + "author": { + "name": "Vladimir Dronnikov", + "email": "dronnikov@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/wscomm/0.0.1", + "0.0.2": "http://registry.npmjs.org/wscomm/0.0.2", + "0.0.3": "http://registry.npmjs.org/wscomm/0.0.3", + "0.0.4": "http://registry.npmjs.org/wscomm/0.0.4", + "0.0.5": "http://registry.npmjs.org/wscomm/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "790d2595662283199a68b1316c95d6915414e534", + "tarball": "http://registry.npmjs.org/wscomm/-/wscomm-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c48410c18c7711d437fef5904bcfcacc7edae2f8", + "tarball": "http://registry.npmjs.org/wscomm/-/wscomm-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "087c4b6d5751b3870393d6c9183548251b326f50", + "tarball": "http://registry.npmjs.org/wscomm/-/wscomm-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "aa50d790efdf15aad78c5ed14a36e1412b56831d", + "tarball": "http://registry.npmjs.org/wscomm/-/wscomm-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "ed201e3b3b665a0a62be9b30e4055fbed9a57d30", + "tarball": "http://registry.npmjs.org/wscomm/-/wscomm-0.0.5.tgz" + } + }, + "keywords": [ + "websocket", + "json-rpc", + "underscore", + "bidirectional", + "live" + ], + "url": "http://registry.npmjs.org/wscomm/" + }, + "wsscraper": { + "name": "wsscraper", + "description": "Easy scraping and auth for JSON/XML web services. Based on node-scraper so it does web page scraping using jQuery too.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "davej", + "email": "dave@davejeffery.com" + } + ], + "time": { + "modified": "2011-01-12T13:58:28.436Z", + "created": "2011-01-12T13:58:27.920Z", + "0.0.1": "2011-01-12T13:58:28.436Z" + }, + "author": { + "name": "Dave Jeffery", + "email": "dave@davejeffery.com" + }, + "repository": { + "type": "git", + "url": "https://github.com/davej/node-wsscraper.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/wsscraper/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "0c1574e250b29ca0688864ebc925152776c28d2c", + "tarball": "http://registry.npmjs.org/wsscraper/-/wsscraper-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/wsscraper/" + }, + "wts": { + "name": "wts", + "description": "What The Shell! As of now, we have implementation of Command, Pipe and Shell Script - Which will enable you to implement High Performing, Highly Reusable node applications. Later implemementations of WTS will bring shell-way of doing things.", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "robinkc", + "email": "arora.k.robin@gmail.com" + } + ], + "time": { + "modified": "2011-12-11T12:09:27.817Z", + "created": "2011-10-11T17:36:06.184Z", + "0.0.1": "2011-10-11T17:36:10.634Z", + "0.0.2": "2011-10-16T18:35:44.772Z", + "0.0.3": "2011-11-20T03:53:06.849Z", + "0.0.4": "2011-12-03T14:06:19.952Z", + "0.0.5": "2011-12-11T12:09:27.817Z" + }, + "author": { + "name": "Robin KC", + "email": "arora.k.robin@gmail.com" + }, + "repository": { + "url": "https://github.com/robinkc/What-The-Shell.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/wts/0.0.1", + "0.0.2": "http://registry.npmjs.org/wts/0.0.2", + "0.0.3": "http://registry.npmjs.org/wts/0.0.3", + "0.0.4": "http://registry.npmjs.org/wts/0.0.4", + "0.0.5": "http://registry.npmjs.org/wts/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "6385fd2d81565af4a2357c3ed772555a372e9799", + "tarball": "http://registry.npmjs.org/wts/-/wts-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f24926ae7a9cd4b456e55b6beb3aa3cec0c8711a", + "tarball": "http://registry.npmjs.org/wts/-/wts-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "2f577dc5f774c811d14d56713c50e50becf70d68", + "tarball": "http://registry.npmjs.org/wts/-/wts-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "e414f7c87ecc584ffac07187a0994e6d06c34c27", + "tarball": "http://registry.npmjs.org/wts/-/wts-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "7f247378f4348e7b9d5cd766fd99997a4f1b8e33", + "tarball": "http://registry.npmjs.org/wts/-/wts-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/wts/" + }, + "wu": { + "name": "wu", + "description": "A lazy, functional Javascript library that ain't nuthin' ta f*ck wit.", + "dist-tags": { + "latest": "0.1.8", + "stable": "0.1.8" + }, + "maintainers": [ + { + "name": "nickfitzgerald", + "email": "fitzgen@gmail.com" + } + ], + "author": { + "name": "Nick Fitzgerald", + "email": "fitzgen@gmail.com", + "url": "http://fitzgeraldnick.com" + }, + "versions": { + "0.1.8": "http://registry.npmjs.org/wu/0.1.8" + }, + "dist": { + "0.1.8": { + "tarball": "http://registry.npmjs.org/wu/-/wu-0.1.8.tgz" + } + }, + "url": "http://registry.npmjs.org/wu/" + }, + "wunderapi": { + "name": "wunderapi", + "dist-tags": { + "latest": "0.0.9" + }, + "maintainers": [ + { + "name": "agnoster", + "email": "agnoster@gmail.com" + } + ], + "time": { + "modified": "2011-08-24T14:27:35.074Z", + "created": "2011-08-03T15:25:43.260Z", + "0.0.1": "2011-08-03T15:25:45.885Z", + "0.0.2": "2011-08-04T09:06:59.471Z", + "0.0.4": "2011-08-04T13:24:21.854Z", + "0.0.5": "2011-08-04T15:33:59.403Z", + "0.0.6": "2011-08-05T09:24:11.827Z", + "0.0.7": "2011-08-12T12:51:49.581Z", + "0.0.8": "2011-08-13T13:58:49.887Z", + "0.0.9": "2011-08-24T14:27:35.074Z" + }, + "description": "Test your APIs with stories written in Markdown", + "author": { + "name": "Isaac Wolkerstorfer", + "email": "isaac@6wunderkinder.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/6wunderkinder/wunderapi.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/wunderapi/0.0.1", + "0.0.2": "http://registry.npmjs.org/wunderapi/0.0.2", + "0.0.4": "http://registry.npmjs.org/wunderapi/0.0.4", + "0.0.5": "http://registry.npmjs.org/wunderapi/0.0.5", + "0.0.6": "http://registry.npmjs.org/wunderapi/0.0.6", + "0.0.7": "http://registry.npmjs.org/wunderapi/0.0.7", + "0.0.8": "http://registry.npmjs.org/wunderapi/0.0.8", + "0.0.9": "http://registry.npmjs.org/wunderapi/0.0.9" + }, + "dist": { + "0.0.1": { + "shasum": "8931d896d6aa3e83272aae7a05ea2361dbad4d6e", + "tarball": "http://registry.npmjs.org/wunderapi/-/wunderapi-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "9fe397c25854aac4d30e3a79c599b5eaf9e7cd9c", + "tarball": "http://registry.npmjs.org/wunderapi/-/wunderapi-0.0.2.tgz" + }, + "0.0.4": { + "shasum": "a4206d837fe6aab465ab388c40a823eb2814f1ec", + "tarball": "http://registry.npmjs.org/wunderapi/-/wunderapi-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "72d8ff2e7478dcac416b06d09a98c75a93947986", + "tarball": "http://registry.npmjs.org/wunderapi/-/wunderapi-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "7def08626aaf100b90660866bc18fa02d3e21754", + "tarball": "http://registry.npmjs.org/wunderapi/-/wunderapi-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "0aa2156debc08bb56cc5a379d78aaa78067cc1ba", + "tarball": "http://registry.npmjs.org/wunderapi/-/wunderapi-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "bb6f6fbda2f7a40bef21b87b6af2a046f4daef9f", + "tarball": "http://registry.npmjs.org/wunderapi/-/wunderapi-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "463bedae11c9fe70a74f693de5437085000b519b", + "tarball": "http://registry.npmjs.org/wunderapi/-/wunderapi-0.0.9.tgz" + } + }, + "keywords": [ + "testing", + "api" + ], + "url": "http://registry.npmjs.org/wunderapi/" + }, + "wurfl": { + "name": "wurfl", + "description": "NodeJS library for loading Wireless Universal Resource File (wurfl) xml file efficiently into memory for use in applications that need to lookup mobile device capabilities by their user agent.", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "jacwright", + "email": "jacwright@gmail.com" + } + ], + "time": { + "modified": "2011-10-11T00:48:19.482Z", + "created": "2011-10-10T15:32:58.464Z", + "0.1.0": "2011-10-10T15:32:58.794Z", + "0.2.0": "2011-10-11T00:48:19.482Z" + }, + "author": { + "name": "Jacob Wright", + "email": "jacwright@gmail.com", + "url": "jacwright.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/touchads/node-wurfl-api.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/wurfl/0.1.0", + "0.2.0": "http://registry.npmjs.org/wurfl/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "e5ec27036a342588d93c7ebf4d8f1c6acc2c49bd", + "tarball": "http://registry.npmjs.org/wurfl/-/wurfl-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "5af74db478b3ba7758333b5515425a5c67202f8d", + "tarball": "http://registry.npmjs.org/wurfl/-/wurfl-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/wurfl/" + }, + "wurfl-client": { + "name": "wurfl-client", + "description": "Simple client for WURFL's (mobile devices database) HTTP API.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "mauricemach", + "email": "maurice@bitbending.com" + } + ], + "author": { + "name": "Maurice Machado", + "email": "maurice@bitbending.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/wurfl-client/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "b62a819d8c7ddafae1bf79d066afa4d29bf094cf", + "tarball": "http://registry.npmjs.org/wurfl-client/-/wurfl-client-0.0.1.tgz" + } + }, + "keywords": [ + "mobile", + "device", + "detection" + ], + "url": "http://registry.npmjs.org/wurfl-client/" + }, + "wwwdude": { + "name": "wwwdude", + "description": "Simple to use HTTP library on top of the built in libs of node.js", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "pfleidi", + "email": "sg+npm@roothausen.de" + } + ], + "author": { + "name": "Sven Pfleiderer", + "email": "sven@roothausen.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/pfleidi/node-wwwdude.git" + }, + "time": { + "modified": "2011-05-10T12:33:19.278Z", + "created": "2011-01-24T18:46:01.739Z", + "0.0.2": "2011-01-24T18:46:01.739Z", + "0.0.3": "2011-01-24T18:46:01.739Z", + "0.0.4": "2011-01-24T18:46:01.739Z", + "0.0.5": "2011-02-01T11:05:07.673Z", + "0.0.6": "2011-03-10T01:40:12.328Z", + "0.0.7": "2011-03-24T10:13:25.549Z", + "0.1.0": "2011-05-10T12:33:19.278Z" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/wwwdude/0.0.2", + "0.0.3": "http://registry.npmjs.org/wwwdude/0.0.3", + "0.0.4": "http://registry.npmjs.org/wwwdude/0.0.4", + "0.0.5": "http://registry.npmjs.org/wwwdude/0.0.5", + "0.0.6": "http://registry.npmjs.org/wwwdude/0.0.6", + "0.0.7": "http://registry.npmjs.org/wwwdude/0.0.7", + "0.1.0": "http://registry.npmjs.org/wwwdude/0.1.0" + }, + "dist": { + "0.0.2": { + "tarball": "http://registry.npmjs.org/wwwdude/-/wwwdude-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "c38fe31488ae17e8602676d40b4b5d058441a075", + "tarball": "http://registry.npmjs.org/wwwdude/-/wwwdude-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "a943a7e138bc97ad928f603737cb68a81aed8c1e", + "tarball": "http://registry.npmjs.org/wwwdude/-/wwwdude-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "8d332b1fe2c2c1eb56a2ab05c11c377eea5d6605", + "tarball": "http://registry.npmjs.org/wwwdude/-/wwwdude-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "fac3f68ca758270fc9fb7f42c1618f80e78efa1e", + "tarball": "http://registry.npmjs.org/wwwdude/-/wwwdude-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "c40f5b20678a639fe2ca4de35171130c8f9d4e9b", + "tarball": "http://registry.npmjs.org/wwwdude/-/wwwdude-0.0.7.tgz" + }, + "0.1.0": { + "shasum": "dd07a7901bb88f791530c3fc2b343dd75720640a", + "tarball": "http://registry.npmjs.org/wwwdude/-/wwwdude-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/wwwdude/" + }, + "x": { + "name": "x", + "description": "provides a way to extending modules functionality (lame)", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "stagas", + "email": "gstagas@gmail.com" + } + ], + "time": { + "modified": "2011-03-04T19:42:39.517Z", + "created": "2011-03-04T07:58:27.059Z", + "0.0.1": "2011-03-04T07:58:27.817Z", + "0.0.2": "2011-03-04T19:36:18.100Z" + }, + "author": { + "name": "George Stagas", + "email": "gstagas@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/stagas/x.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/x/0.0.1", + "0.0.2": "http://registry.npmjs.org/x/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "29cf2cae7aaa9cb360cdaa83b4857228b6ecbb44", + "tarball": "http://registry.npmjs.org/x/-/x-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "d57994b4707d311e9983624b8fad26707532e1ea", + "tarball": "http://registry.npmjs.org/x/-/x-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/x/" + }, + "x-core": { + "name": "x-core", + "description": "node.js core extensions", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "stagas", + "email": "gstagas@gmail.com" + } + ], + "time": { + "modified": "2011-03-04T22:32:15.460Z", + "created": "2011-03-04T20:09:03.699Z", + "0.0.1": "2011-03-04T20:09:04.406Z", + "0.0.2": "2011-03-04T22:12:12.609Z" + }, + "author": { + "name": "George Stagas", + "email": "gstagas@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/stagas/x-core.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/x-core/0.0.1", + "0.0.2": "http://registry.npmjs.org/x-core/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "9998badb8af41cf0f24e9845627c9dabf3304536", + "tarball": "http://registry.npmjs.org/x-core/-/x-core-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "2f3480735fc694b9bcc94c3cb13954910955f874", + "tarball": "http://registry.npmjs.org/x-core/-/x-core-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/x-core/" + }, + "x-depends-on-y": { + "name": "x-depends-on-y", + "description": "Fake module: circular dependency demo. Self-destroy tomorrow!", + "dist-tags": { + "latest": "0.0.0" + }, + "readme": null, + "maintainers": [ + { + "name": "naholyr", + "email": "naholyr@gmail.com" + } + ], + "time": { + "modified": "2011-11-29T21:40:52.117Z", + "created": "2011-11-29T08:31:06.352Z", + "0.0.0": "2011-11-29T08:31:08.314Z", + "0.0.1": "2011-11-29T08:31:43.332Z" + }, + "author": { + "name": "Nicolas Chambrier" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/x-depends-on-y/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "b59a3d605ba3f9444bc849d8967788df30740ab8", + "tarball": "http://registry.npmjs.org/x-depends-on-y/-/x-depends-on-y-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/x-depends-on-y/" + }, + "x11": { + "name": "x11", + "description": "A pure node.js JavaScript client implementing X Window (X11) protocol.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "sidorares", + "email": "sidorares@yandex.ru" + } + ], + "time": { + "modified": "2011-09-11T13:16:19.059Z", + "created": "2011-09-04T12:49:07.100Z", + "0.0.1": "2011-09-04T12:49:10.379Z", + "0.0.2": "2011-09-11T13:16:19.059Z" + }, + "author": { + "name": "Andrey Sidorov", + "email": "sidorares@yandex.ru" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/x11/0.0.1", + "0.0.2": "http://registry.npmjs.org/x11/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "bda7a683de195182f950b097b522ea281bdf7dc2", + "tarball": "http://registry.npmjs.org/x11/-/x11-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "a7f3639e26c9e6ee9394aef7be18fd52cdfa1be5", + "tarball": "http://registry.npmjs.org/x11/-/x11-0.0.2.tgz" + } + }, + "keywords": [ + "X Window", + "ui", + "gui", + "widgets", + "desktop", + "XWindow", + "X" + ], + "url": "http://registry.npmjs.org/x11/" + }, + "xappy-async_testing": { + "name": "xappy-async_testing", + "description": "A simple Node testing library.", + "dist-tags": { + "latest": "0.4.0" + }, + "maintainers": [ + { + "name": "mren", + "email": "mark.c.engel@gmail.com" + } + ], + "time": { + "modified": "2011-06-26T11:04:31.706Z", + "created": "2011-06-26T11:04:30.233Z", + "0.4.0": "2011-06-26T11:04:31.706Z" + }, + "author": { + "name": "Benjamin Thomas" + }, + "repository": { + "type": "git", + "url": "git://github.com/bentomas/node-async-testing.git" + }, + "versions": { + "0.4.0": "http://registry.npmjs.org/xappy-async_testing/0.4.0" + }, + "dist": { + "0.4.0": { + "shasum": "43b281180d3972c19c13d53fa2142ca1360a682e", + "tarball": "http://registry.npmjs.org/xappy-async_testing/-/xappy-async_testing-0.4.0.tgz" + } + }, + "url": "http://registry.npmjs.org/xappy-async_testing/" + }, + "xappy-pg": { + "name": "xappy-pg", + "description": "PostgreSQL client - pure javascript & libpq with the same API", + "dist-tags": { + "latest": "0.5.0" + }, + "maintainers": [ + { + "name": "mren", + "email": "mark.c.engel@gmail.com" + } + ], + "time": { + "modified": "2011-06-26T11:09:43.084Z", + "created": "2011-06-26T11:09:42.533Z", + "0.5.0": "2011-06-26T11:09:43.084Z" + }, + "author": { + "name": "Brian Carlson", + "email": "brian.m.carlson@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/brianc/node-postgres.git" + }, + "versions": { + "0.5.0": "http://registry.npmjs.org/xappy-pg/0.5.0" + }, + "dist": { + "0.5.0": { + "shasum": "6dd4a450efe3bf3d96da03ec90d3caa4c9199b48", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.16-darwin-10.7.0": { + "shasum": "4543a6c868f2e8eba43edf924ee78b474a848db4", + "tarball": "http://registry.npmjs.org/xappy-pg/-/xappy-pg-0.5.0-0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.16-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/xappy-pg/-/xappy-pg-0.5.0.tgz" + } + }, + "keywords": [ + "postgres", + "pg", + "libpq", + "postgre", + "database", + "rdbms" + ], + "url": "http://registry.npmjs.org/xappy-pg/" + }, + "xb": { + "name": "xb", + "description": "A tiny and simple backoff policy library", + "dist-tags": { + "latest": "0.1.8" + }, + "maintainers": [ + { + "name": "fernandezpablo85", + "email": "fernandezpablo85@gmail.com" + } + ], + "time": { + "modified": "2011-11-09T16:12:52.906Z", + "created": "2011-11-07T00:44:19.371Z", + "0.1.0": "2011-11-07T00:49:22.551Z", + "0.1.1": "2011-11-07T01:00:35.586Z", + "0.1.2": "2011-11-07T01:06:39.798Z", + "0.1.3": "2011-11-07T01:10:47.214Z", + "0.1.4": "2011-11-07T01:39:43.053Z", + "0.1.5": "2011-11-07T02:21:08.268Z", + "0.1.6": "2011-11-09T16:07:43.746Z", + "0.1.7": "2011-11-09T16:10:11.507Z", + "0.1.8": "2011-11-09T16:12:52.906Z" + }, + "author": { + "name": "Pablo Fernandez", + "email": "fernandezpablo85@gmail.com", + "url": "http://fernandezpablo.tumblr.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/fernandezpablo85/Xb.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/xb/0.1.0", + "0.1.1": "http://registry.npmjs.org/xb/0.1.1", + "0.1.2": "http://registry.npmjs.org/xb/0.1.2", + "0.1.3": "http://registry.npmjs.org/xb/0.1.3", + "0.1.4": "http://registry.npmjs.org/xb/0.1.4", + "0.1.5": "http://registry.npmjs.org/xb/0.1.5", + "0.1.6": "http://registry.npmjs.org/xb/0.1.6", + "0.1.7": "http://registry.npmjs.org/xb/0.1.7", + "0.1.8": "http://registry.npmjs.org/xb/0.1.8" + }, + "dist": { + "0.1.0": { + "shasum": "4f1228f602c4eff6193565180a62f1f0c4c2643e", + "tarball": "http://registry.npmjs.org/xb/-/xb-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "5044ce543d692b82564da8554a4fde890b46a6dd", + "tarball": "http://registry.npmjs.org/xb/-/xb-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "de680c4e8ebe9a2eb4fb1efab442474a05682e69", + "tarball": "http://registry.npmjs.org/xb/-/xb-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "e7f4f81127a9e9be2d713134e54203d70d4630d5", + "tarball": "http://registry.npmjs.org/xb/-/xb-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "539a850e8fd0c125408e0adbf2420e5e37e9e018", + "tarball": "http://registry.npmjs.org/xb/-/xb-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "224f292f7a2dcfdbf73cc2f6a52707f99adcb5af", + "tarball": "http://registry.npmjs.org/xb/-/xb-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "92d46a17bf71b28819fe7700bb67be85c38918f7", + "tarball": "http://registry.npmjs.org/xb/-/xb-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "6afc7c9290ade799fda6cd725816fa58601162cd", + "tarball": "http://registry.npmjs.org/xb/-/xb-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "7d650fcf2f81d0ec4d2debc7f1beafe82bd9f412", + "tarball": "http://registry.npmjs.org/xb/-/xb-0.1.8.tgz" + } + }, + "keywords": [ + "backoff", + "xb", + "callback", + "exponential" + ], + "url": "http://registry.npmjs.org/xb/" + }, + "xbee": { + "name": "xbee", + "description": "Node talks to xbee radios through serialport", + "dist-tags": { + "latest": "0.0.3" + }, + "readme": null, + "maintainers": [ + { + "name": "mozz100", + "email": "richard@rmorrison.net" + } + ], + "time": { + "modified": "2011-11-28T21:13:19.270Z", + "created": "2011-11-27T11:48:44.496Z", + "0.0.2": "2011-11-27T11:49:10.622Z", + "0.0.3": "2011-11-28T21:13:19.270Z" + }, + "author": { + "name": "Richard Morrison", + "email": "richard@rmorrison.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/mozz100/node-xbee.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/xbee/0.0.2", + "0.0.3": "http://registry.npmjs.org/xbee/0.0.3" + }, + "dist": { + "0.0.2": { + "shasum": "466257477365534953fd29ffcee31177a3050c05", + "tarball": "http://registry.npmjs.org/xbee/-/xbee-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "fb722a628c9f834725f124bc1c750585b5dd1f38", + "tarball": "http://registry.npmjs.org/xbee/-/xbee-0.0.3.tgz" + } + }, + "keywords": [ + "xbee", + "serialport", + "robots", + "sensors", + "automation", + "control" + ], + "url": "http://registry.npmjs.org/xbee/" + }, + "xcb-canvas": { + "name": "xcb-canvas", + "description": "Uses node-canvas to render directly to an XCB drawable. In other words native application that uses canvas API", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "crypticswarm", + "email": "crypticswarm@gmail.com" + } + ], + "time": { + "modified": "2011-09-27T16:12:04.166Z", + "created": "2011-09-27T16:11:59.138Z", + "0.0.1": "2011-09-27T16:12:04.166Z" + }, + "author": { + "name": "Perrin Westrich", + "email": "crypticswarm@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/CrypticSwarm/xcb-canvas.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/xcb-canvas/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "1de484ecc726db19b5baa728081be2e8ff362065", + "tarball": "http://registry.npmjs.org/xcb-canvas/-/xcb-canvas-0.0.1.tgz" + } + }, + "keywords": [ + "canvas", + "node-canvas", + "X", + "X11", + "XCB" + ], + "url": "http://registry.npmjs.org/xcb-canvas/" + }, + "xcbjs": { + "name": "xcbjs", + "description": "Exposes libxcb to JS. ", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "crypticswarm", + "email": "crypticswarm@gmail.com" + } + ], + "time": { + "modified": "2011-09-27T16:09:57.862Z", + "created": "2011-09-04T11:46:01.892Z", + "0.0.1": "2011-09-04T11:46:03.481Z", + "0.0.2": "2011-09-27T16:09:57.862Z" + }, + "author": { + "name": "Perrin Westrich", + "email": "crypticswarm@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/CrypticSwarm/XCBJS.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/xcbjs/0.0.1", + "0.0.2": "http://registry.npmjs.org/xcbjs/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "425ced1988c4966d931af8c1d1e3dc449e7dda0b", + "tarball": "http://registry.npmjs.org/xcbjs/-/xcbjs-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "3b6b822b23c1eeb3810177df5c9bebc8cdf74d13", + "tarball": "http://registry.npmjs.org/xcbjs/-/xcbjs-0.0.2.tgz" + } + }, + "keywords": [ + "window manager", + "xcb", + "X", + "X11", + "X window" + ], + "url": "http://registry.npmjs.org/xcbjs/" + }, + "xemplar": { + "name": "xemplar", + "description": "Xemplar is a NodeJS RegEx library", + "dist-tags": { + "latest": "0.0.4" + }, + "maintainers": [ + { + "name": "contra", + "email": "contra@australia.edu" + } + ], + "time": { + "modified": "2011-10-04T03:47:15.940Z", + "created": "2011-09-17T11:57:06.482Z", + "0.0.1": "2011-09-17T11:57:08.512Z", + "0.0.2": "2011-09-17T12:09:15.652Z", + "0.0.4": "2011-10-04T03:47:15.940Z" + }, + "author": { + "name": "Fractal", + "email": "contact@wearefractal.com", + "url": "http://wearefractal.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/wearefractal/xemplar.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/xemplar/0.0.1", + "0.0.2": "http://registry.npmjs.org/xemplar/0.0.2", + "0.0.4": "http://registry.npmjs.org/xemplar/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "e52c9ef83b2125322b399779b23e3581399e1ba0", + "tarball": "http://registry.npmjs.org/xemplar/-/xemplar-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "bf1c4c37d19c1d4d99154e27568aec6286e610c9", + "tarball": "http://registry.npmjs.org/xemplar/-/xemplar-0.0.2.tgz" + }, + "0.0.4": { + "shasum": "e50501be85004774ce3148def29a894caed99a32", + "tarball": "http://registry.npmjs.org/xemplar/-/xemplar-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/xemplar/" + }, + "xfer": { + "name": "xfer", + "description": "Simple binary TLV transport", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "mscdex", + "email": "mscdex@mscdex.net" + } + ], + "time": { + "modified": "2011-08-05T05:54:11.275Z", + "created": "2011-08-05T05:54:10.661Z", + "0.0.1": "2011-08-05T05:54:11.275Z" + }, + "author": { + "name": "Brian White", + "email": "mscdex@mscdex.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/mscdex/xfer.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/xfer/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "508029422327a0d749240eac0c7aeb38066236a6", + "tarball": "http://registry.npmjs.org/xfer/-/xfer-0.0.1.tgz" + } + }, + "keywords": [ + "binary", + "transfer", + "tlv" + ], + "url": "http://registry.npmjs.org/xfer/" + }, + "xhrequest": { + "name": "xhrequest", + "description": "Node implementation of XMLHttpRequest", + "dist-tags": { + "latest": "1.0.1" + }, + "maintainers": [ + { + "name": "steveukx", + "email": "steve@mydev.co" + } + ], + "time": { + "modified": "2011-11-17T18:31:15.982Z", + "created": "2011-11-11T09:46:50.384Z", + "1.0.0": "2011-11-11T09:54:52.645Z", + "1.0.1": "2011-11-17T18:31:15.982Z" + }, + "author": { + "name": "Steve King", + "email": "steve@mydev.co" + }, + "repository": { + "type": "git", + "url": "git://github.com/steveukx/xhrequest.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/xhrequest/1.0.0", + "1.0.1": "http://registry.npmjs.org/xhrequest/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "d5694d1951f2eafca8f4272b84227ecd15b45270", + "tarball": "http://registry.npmjs.org/xhrequest/-/xhrequest-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "863e0356c82844121f5fff513c47aa96da19ff53", + "tarball": "http://registry.npmjs.org/xhrequest/-/xhrequest-1.0.1.tgz" + } + }, + "keywords": [ + "web", + "xhr", + "ajax" + ], + "url": "http://registry.npmjs.org/xhrequest/" + }, + "xjs": { + "name": "xjs", + "description": "A templating language for node.js using xml and javascript", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "tenorviol", + "email": "tenorviol@yahoo.com" + } + ], + "time": { + "modified": "2011-04-29T15:19:19.065Z", + "created": "2011-04-11T07:48:09.010Z", + "0.1.0": "2011-04-11T07:48:09.370Z", + "0.1.1": "2011-04-12T05:16:14.500Z", + "0.1.2": "2011-04-12T15:50:52.528Z", + "0.1.3": "2011-04-17T06:22:35.810Z", + "0.1.4": "2011-04-29T15:19:19.065Z" + }, + "author": { + "name": "Christopher Johnson" + }, + "repository": { + "type": "git", + "url": "git://github.com/tenorviol/xjs.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/xjs/0.1.0", + "0.1.1": "http://registry.npmjs.org/xjs/0.1.1", + "0.1.2": "http://registry.npmjs.org/xjs/0.1.2", + "0.1.3": "http://registry.npmjs.org/xjs/0.1.3", + "0.1.4": "http://registry.npmjs.org/xjs/0.1.4" + }, + "dist": { + "0.1.0": { + "shasum": "bc825c092747ff351cc55eec4b259936121c7c14", + "tarball": "http://registry.npmjs.org/xjs/-/xjs-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "d9db84c35ed38e84294bd35a84a7d949a6eb5069", + "tarball": "http://registry.npmjs.org/xjs/-/xjs-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "27e984dcd055f8d27976967ca2d5d2f5762e77af", + "tarball": "http://registry.npmjs.org/xjs/-/xjs-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "9644719964ecceeb2d2088984bec60d5218deb14", + "tarball": "http://registry.npmjs.org/xjs/-/xjs-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "5621a2363a74b25adeef9e73f39fd09e430fcb18", + "tarball": "http://registry.npmjs.org/xjs/-/xjs-0.1.4.tgz" + } + }, + "keywords": [ + "template", + "xml", + "xhp" + ], + "url": "http://registry.npmjs.org/xjs/" + }, + "xjst": { + "name": "xjst", + "description": "XSLT inspired JavaScript templates (with spices)", + "dist-tags": { + "latest": "0.2.17", + "stable": "0.2.17" + }, + "maintainers": [ + { + "name": "veged", + "email": "veged@mail.ru" + }, + { + "name": "fedor.indutny", + "email": "fedor.indutny@gmail.com" + } + ], + "time": { + "modified": "2011-12-09T12:26:03.058Z", + "created": "2011-01-28T22:55:54.953Z", + "0.0.3": "2011-12-08T16:15:23.675Z", + "0.0.5": "2011-12-08T16:15:23.675Z", + "0.0.6": "2011-12-08T16:15:23.675Z", + "0.0.7": "2011-12-08T16:15:23.675Z", + "0.0.8": "2011-12-08T16:15:23.675Z", + "0.1.0": "2011-11-01T12:41:22.359Z", + "0.1.1": "2011-11-01T12:57:02.559Z", + "0.1.2": "2011-11-01T13:20:44.754Z", + "0.1.3": "2011-11-01T13:26:51.331Z", + "0.1.4": "2011-11-02T17:17:30.614Z", + "0.1.5": "2011-11-02T18:06:35.912Z", + "0.1.6": "2011-11-03T11:16:29.442Z", + "0.1.7": "2011-11-03T11:19:17.264Z", + "0.1.8": "2011-11-03T11:45:13.447Z", + "0.2.0": "2011-11-07T10:51:06.430Z", + "0.2.1": "2011-11-08T14:17:43.995Z", + "0.1.9": "2011-11-08T14:33:55.175Z", + "0.2.2": "2011-11-23T12:56:53.087Z", + "0.2.3": "2011-11-23T13:02:26.967Z", + "0.2.4": "2011-11-23T16:19:42.649Z", + "0.2.5": "2011-11-23T17:06:25.637Z", + "0.2.6": "2011-11-23T20:54:35.101Z", + "0.2.7": "2011-11-24T15:22:53.198Z", + "0.2.8": "2011-11-24T20:36:33.286Z", + "0.2.8-1": "2011-11-24T20:55:27.457Z", + "0.2.8-2": "2011-11-24T22:12:11.302Z", + "0.2.8-3": "2011-11-24T22:16:13.289Z", + "0.2.9": "2011-11-25T18:18:14.513Z", + "0.2.11": "2011-11-29T13:32:23.948Z", + "0.2.12": "2011-11-30T12:00:24.415Z", + "0.2.13": "2011-11-30T21:28:07.731Z", + "0.2.14": "2011-12-02T17:14:02.242Z", + "0.2.15": "2011-12-08T16:15:23.675Z", + "0.2.16": "2011-12-09T12:22:23.742Z", + "0.2.17": "2011-12-09T12:25:02.675Z" + }, + "author": { + "name": "Sergey Berezhnoy", + "email": "veged@mail.ru", + "url": "http://github.com/veged" + }, + "repository": { + "type": "git", + "url": "git://github.com/veged/xjst.git" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/xjst/0.0.3", + "0.0.5": "http://registry.npmjs.org/xjst/0.0.5", + "0.0.6": "http://registry.npmjs.org/xjst/0.0.6", + "0.0.7": "http://registry.npmjs.org/xjst/0.0.7", + "0.0.8": "http://registry.npmjs.org/xjst/0.0.8", + "0.1.0": "http://registry.npmjs.org/xjst/0.1.0", + "0.1.1": "http://registry.npmjs.org/xjst/0.1.1", + "0.1.2": "http://registry.npmjs.org/xjst/0.1.2", + "0.1.3": "http://registry.npmjs.org/xjst/0.1.3", + "0.1.4": "http://registry.npmjs.org/xjst/0.1.4", + "0.1.5": "http://registry.npmjs.org/xjst/0.1.5", + "0.1.6": "http://registry.npmjs.org/xjst/0.1.6", + "0.1.7": "http://registry.npmjs.org/xjst/0.1.7", + "0.1.8": "http://registry.npmjs.org/xjst/0.1.8", + "0.2.0": "http://registry.npmjs.org/xjst/0.2.0", + "0.2.1": "http://registry.npmjs.org/xjst/0.2.1", + "0.1.9": "http://registry.npmjs.org/xjst/0.1.9", + "0.2.3": "http://registry.npmjs.org/xjst/0.2.3", + "0.2.4": "http://registry.npmjs.org/xjst/0.2.4", + "0.2.5": "http://registry.npmjs.org/xjst/0.2.5", + "0.2.6": "http://registry.npmjs.org/xjst/0.2.6", + "0.2.7": "http://registry.npmjs.org/xjst/0.2.7", + "0.2.11": "http://registry.npmjs.org/xjst/0.2.11", + "0.2.12": "http://registry.npmjs.org/xjst/0.2.12", + "0.2.13": "http://registry.npmjs.org/xjst/0.2.13", + "0.2.14": "http://registry.npmjs.org/xjst/0.2.14", + "0.2.17": "http://registry.npmjs.org/xjst/0.2.17" + }, + "dist": { + "0.0.3": { + "tarball": "http://registry.npmjs.org/xjst/-/xjst-0.0.3.tgz" + }, + "0.0.5": { + "shasum": "87a0609dad6f2df83b89c1534b5abe16f0384bf7", + "tarball": "http://registry.npmjs.org/xjst/-/xjst-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "d2e8c26bd4aff44cbe88397e52f48af58d93f5e1", + "tarball": "http://registry.npmjs.org/xjst/-/xjst-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "7480352b7f6f6581a292f095f807d2fb16c0ce80", + "tarball": "http://registry.npmjs.org/xjst/-/xjst-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "4105033767996a0108f6f166e86f54f32816ee90", + "tarball": "http://registry.npmjs.org/xjst/-/xjst-0.0.8.tgz" + }, + "0.1.0": { + "shasum": "b37baca3568a93e01be4e35cf5da0d9a6cbf489f", + "tarball": "http://registry.npmjs.org/xjst/-/xjst-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "9c1a9e701a4323b9335279b36fd60dfd20da3dd3", + "tarball": "http://registry.npmjs.org/xjst/-/xjst-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "9216ba86674e26cd3cdcaaff9e7d2907bc9f5c00", + "tarball": "http://registry.npmjs.org/xjst/-/xjst-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "d766b86d11459bf69823da9e3db18ca1ef03e034", + "tarball": "http://registry.npmjs.org/xjst/-/xjst-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "ea93d862f09b28916a812627a0298007ead4317a", + "tarball": "http://registry.npmjs.org/xjst/-/xjst-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "61727987ccc99ca16bbf3a9e375660eb7b3c50ec", + "tarball": "http://registry.npmjs.org/xjst/-/xjst-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "35489f4ae0cc6c9f2ee8cfcd98dffff4862d27d7", + "tarball": "http://registry.npmjs.org/xjst/-/xjst-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "aae504a87585dd3fc6d3ed5be00ddb50607869b7", + "tarball": "http://registry.npmjs.org/xjst/-/xjst-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "fd92a7c5795efb3402cb35f184cab632d9416220", + "tarball": "http://registry.npmjs.org/xjst/-/xjst-0.1.8.tgz" + }, + "0.2.0": { + "shasum": "c2da93e6fbd9f7188396c553551468ee13371c10", + "tarball": "http://registry.npmjs.org/xjst/-/xjst-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "6bdb67190645c29bda1207e7a7902ff3a157b0f1", + "tarball": "http://registry.npmjs.org/xjst/-/xjst-0.2.1.tgz" + }, + "0.1.9": { + "shasum": "3eefd35582cd89aa38657c9712865491bb9df3f2", + "tarball": "http://registry.npmjs.org/xjst/-/xjst-0.1.9.tgz" + }, + "0.2.3": { + "shasum": "94bee34ffbf7889aeac8033aeb294b06d1b7883f", + "tarball": "http://registry.npmjs.org/xjst/-/xjst-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "4baa3d88dfd2f36887ce86518929deb15e4b5602", + "tarball": "http://registry.npmjs.org/xjst/-/xjst-0.2.4.tgz" + }, + "0.2.5": { + "shasum": "6f4c0fb99e0a8a84b235d3615866173c06c6367b", + "tarball": "http://registry.npmjs.org/xjst/-/xjst-0.2.5.tgz" + }, + "0.2.6": { + "shasum": "e67067010e06a175d78ba4c5c15702e93d72b6e6", + "tarball": "http://registry.npmjs.org/xjst/-/xjst-0.2.6.tgz" + }, + "0.2.7": { + "shasum": "e24946bfe8048b68cd85c9198ec2afe7fccf2a5e", + "tarball": "http://registry.npmjs.org/xjst/-/xjst-0.2.7.tgz" + }, + "0.2.11": { + "shasum": "86f56aa2299a2f9062919cc46cec0d5eb9a26aca", + "tarball": "http://registry.npmjs.org/xjst/-/xjst-0.2.11.tgz" + }, + "0.2.12": { + "shasum": "1c71a63712114a289121fabb486edcb12f4d7195", + "tarball": "http://registry.npmjs.org/xjst/-/xjst-0.2.12.tgz" + }, + "0.2.13": { + "shasum": "4dc7255a6d2b4278478547971e2d7da0d3a7cbab", + "tarball": "http://registry.npmjs.org/xjst/-/xjst-0.2.13.tgz" + }, + "0.2.14": { + "shasum": "36ad28a29892173ed1562e12b7167ff7df7751ab", + "tarball": "http://registry.npmjs.org/xjst/-/xjst-0.2.14.tgz" + }, + "0.2.17": { + "shasum": "939e400caf89562c35b709729d35050752c14bed", + "tarball": "http://registry.npmjs.org/xjst/-/xjst-0.2.17.tgz" + } + }, + "url": "http://registry.npmjs.org/xjst/" + }, + "xkcdbot": { + "name": "xkcdbot", + "description": "!xkcd!", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "jsocol", + "email": "james.socol@gmail.com" + } + ], + "time": { + "modified": "2011-09-07T00:27:16.533Z", + "created": "2011-09-07T00:27:16.079Z", + "0.1.0": "2011-09-07T00:27:16.533Z" + }, + "author": { + "name": "James Socol", + "email": "james@mozilla.com", + "url": "http://coffeeonthekeyboard.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/jsocol/xkcdbot.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/xkcdbot/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "f38a362cc4fc89c5dd35084bc3858c9ba89e375b", + "tarball": "http://registry.npmjs.org/xkcdbot/-/xkcdbot-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/xkcdbot/" + }, + "xls": { + "name": "xls", + "description": "convert xls to json", + "dist-tags": { + "latest": "0.5.1" + }, + "maintainers": [ + { + "name": "ianjorgensen", + "email": "jorgensen.ian@gmail.com" + } + ], + "time": { + "modified": "2011-11-20T15:38:08.312Z", + "created": "2011-11-20T15:24:30.045Z", + "0.5.0": "2011-11-20T15:24:31.909Z", + "0.5.1": "2011-11-20T15:38:08.312Z" + }, + "versions": { + "0.5.0": "http://registry.npmjs.org/xls/0.5.0", + "0.5.1": "http://registry.npmjs.org/xls/0.5.1" + }, + "dist": { + "0.5.0": { + "shasum": "87d7ec62602f6a93b704ea57a7d4b80d7ea7db02", + "tarball": "http://registry.npmjs.org/xls/-/xls-0.5.0.tgz" + }, + "0.5.1": { + "shasum": "e7604623474880f8f720e8d04c80e1a6e07aeca5", + "tarball": "http://registry.npmjs.org/xls/-/xls-0.5.1.tgz" + } + }, + "url": "http://registry.npmjs.org/xls/" + }, + "xml": { + "name": "xml", + "description": "Fast and simple xml generator. Supports attributes, CDATA, etc. Includes tests and examples.", + "dist-tags": { + "latest": "0.0.7" + }, + "maintainers": [ + { + "name": "dylang", + "email": "dylang@gmail.com" + } + ], + "time": { + "modified": "2011-10-28T19:18:14.498Z", + "created": "2011-04-11T03:37:08.185Z", + "0.0.2": "2011-04-11T03:37:08.770Z", + "0.0.3": "2011-04-11T03:55:29.103Z", + "0.0.4": "2011-04-13T03:56:36.490Z", + "0.0.5": "2011-05-08T23:57:24.247Z", + "0.0.6": "2011-07-21T02:45:52.017Z", + "0.0.7": "2011-10-28T19:18:14.498Z" + }, + "author": { + "name": "Dylan Greene", + "url": "https://github.com/dylang" + }, + "repository": { + "type": "git", + "url": "git://github.com/dylang/node-xml.git" + }, + "users": { + "dylang": true + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/xml/0.0.2", + "0.0.3": "http://registry.npmjs.org/xml/0.0.3", + "0.0.4": "http://registry.npmjs.org/xml/0.0.4", + "0.0.5": "http://registry.npmjs.org/xml/0.0.5", + "0.0.7": "http://registry.npmjs.org/xml/0.0.7" + }, + "dist": { + "0.0.2": { + "shasum": "54cb1b704beee9dbbc894ca486be45e6c3f20762", + "tarball": "http://registry.npmjs.org/xml/-/xml-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "6655a81c2c036f6d263c4a4ef5494307b1e60c63", + "tarball": "http://registry.npmjs.org/xml/-/xml-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "20f1e57d25d97577de1c7ece2db353185db66fa3", + "tarball": "http://registry.npmjs.org/xml/-/xml-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "cff2a56ec1dd5efc121de91b31f50c83816d0853", + "tarball": "http://registry.npmjs.org/xml/-/xml-0.0.5.tgz" + }, + "0.0.7": { + "shasum": "1c07eab653658ab207369a905a463f2d3f605f8c", + "tarball": "http://registry.npmjs.org/xml/-/xml-0.0.7.tgz" + } + }, + "keywords": [ + "xml", + "create", + "builder" + ], + "url": "http://registry.npmjs.org/xml/" + }, + "xml-markup": { + "name": "xml-markup", + "description": "XML generator inspired by Ruby's XmlMarkup.", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "panzi", + "email": "grosser.meister.morti@gmx.net" + } + ], + "author": { + "name": "Mathias Panzenböck", + "email": "grosser.meister.morti@gmx.net" + }, + "repository": { + "type": "hg", + "url": "http://bitbucket.org/panzi/javascript-utils", + "web": "http://bitbucket.org/panzi/javascript-utils" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/xml-markup/1.0.0" + }, + "dist": { + "1.0.0": { + "tarball": "http://packages:5984/xml-markup/-/xml-markup-1.0.0.tgz" + } + }, + "keywords": [ + "xml", + "generator" + ], + "url": "http://registry.npmjs.org/xml-markup/" + }, + "xml-simple": { + "name": "xml-simple", + "description": "Simple XML Parsing based on xml2js", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "dscape", + "email": "nunojobpinto@gmail.com" + } + ], + "time": { + "modified": "2011-08-09T15:58:31.814Z", + "created": "2011-08-09T15:58:30.483Z", + "0.0.1": "2011-08-09T15:58:31.814Z" + }, + "author": { + "name": "Nuno Job", + "email": "nunojobpinto@gmail.com", + "url": "http://nunojob.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/xml-simple/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "86c7ea9b4ec2f1864203e489335dd936ab8229fe", + "tarball": "http://registry.npmjs.org/xml-simple/-/xml-simple-0.0.1.tgz" + } + }, + "keywords": [ + "xml2js", + "data", + "xml", + "json", + "parse", + "parsing" + ], + "url": "http://registry.npmjs.org/xml-simple/" + }, + "xml-stream": { + "name": "xml-stream", + "description": "XML stream to JavaScript object converter based on Expat.", + "dist-tags": { + "latest": "0.4.0" + }, + "maintainers": [ + { + "name": "dimituri", + "email": "dimituri@gmail.com" + } + ], + "time": { + "modified": "2011-11-10T15:10:54.754Z", + "created": "2011-06-21T05:10:19.341Z", + "0.2.0": "2011-06-21T05:10:20.087Z", + "0.3.0": "2011-09-21T05:03:08.770Z", + "0.3.1": "2011-09-21T12:01:07.062Z", + "0.3.2": "2011-09-23T02:27:07.933Z", + "0.3.3": "2011-10-19T01:33:48.810Z", + "0.3.4": "2011-11-07T15:24:21.165Z", + "0.4.0": "2011-11-10T15:10:54.754Z" + }, + "author": { + "name": "AssistUnion", + "email": "info@assistunion.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/assistunion/xml-stream.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/xml-stream/0.2.0", + "0.3.0": "http://registry.npmjs.org/xml-stream/0.3.0", + "0.3.1": "http://registry.npmjs.org/xml-stream/0.3.1", + "0.3.2": "http://registry.npmjs.org/xml-stream/0.3.2", + "0.3.3": "http://registry.npmjs.org/xml-stream/0.3.3", + "0.3.4": "http://registry.npmjs.org/xml-stream/0.3.4", + "0.4.0": "http://registry.npmjs.org/xml-stream/0.4.0" + }, + "dist": { + "0.2.0": { + "shasum": "71192e76f477e5ce8bf43402550e75e8a52709af", + "tarball": "http://registry.npmjs.org/xml-stream/-/xml-stream-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "54cd2ca30b7bf527b4a74a9a0c5c641964c0f606", + "tarball": "http://registry.npmjs.org/xml-stream/-/xml-stream-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "4bdf334ee06963dcb2aa908579a7707625191000", + "tarball": "http://registry.npmjs.org/xml-stream/-/xml-stream-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "264519a6b5572bc1d4fafdee2eac4ccf76a24adb", + "tarball": "http://registry.npmjs.org/xml-stream/-/xml-stream-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "b0b4e82272bdbe108cb4bef881b1d4328ed2ea84", + "tarball": "http://registry.npmjs.org/xml-stream/-/xml-stream-0.3.3.tgz" + }, + "0.3.4": { + "shasum": "73995da037d83172c43009b90c2af14ee7d65f76", + "tarball": "http://registry.npmjs.org/xml-stream/-/xml-stream-0.3.4.tgz" + }, + "0.4.0": { + "shasum": "2e00adc594c794d15e45edcc87f02c2528628240", + "tarball": "http://registry.npmjs.org/xml-stream/-/xml-stream-0.4.0.tgz" + } + }, + "keywords": [ + "xml", + "parser", + "expat" + ], + "url": "http://registry.npmjs.org/xml-stream/" + }, + "xml-writer": { + "name": "xml-writer", + "description": "Native and full Javascript implementation of the classic XMLWriter class", + "dist-tags": { + "latest": "1.0.3" + }, + "readme": "# XMLWriter for NodeJS\n\nIt\\'s native and full javascript implementation of the classic XMLWriter class.\nThe API is complete, flexible and tolerant.\nXML is still valid.\n\n# Installation\n\nWith [npm](http://npmjs.org) do:\n\n $ npm install xml-writer\n\n\n# Examples\n\n## Basic\n\n\tvar XMLWriter = require('xml-writer');\n\txw = new XMLWriter;\n\txw.startDocument();\n\txw.startElement('root');\n\txw.text('Some content');\n\txw.endDocument();\n\n\tconsole.log(xw.toString());\n\nOutput:\n\n\n \n\tSome content\n\n\t\n# Tests\n\nUse [nodeunit](https://github.com/caolan/nodeunit) to run the tests.\n\n $ npm install nodeunit\n $ nodeunit test\n\n# API Documentation\n\n## startDocument(String version = '1.0', String encoding = NULL, Boolean standalone = false) \n\nCreate document tag\n\n# Also\n\n* https://github.com/minchenkov/simple-xml-writer\n\n# License:\n\n[MIT/X11](./LICENSE)\n", + "maintainers": [ + { + "name": "touv", + "email": "nthouvenin@gmail.com" + } + ], + "time": { + "modified": "2011-11-25T21:49:48.792Z", + "created": "2011-11-21T22:30:50.606Z", + "1.0.0": "2011-11-21T22:30:53.706Z", + "1.0.1": "2011-11-23T13:06:29.350Z", + "1.0.2": "2011-11-24T10:51:54.102Z", + "1.0.3": "2011-11-25T21:49:48.792Z" + }, + "author": { + "name": "Nicolas Thouvenin", + "email": "nthouvenin@gmail.com", + "url": "http://blog.touv.fr" + }, + "repository": { + "type": "git", + "url": "git://github.com/touv/node-xml-writer.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/xml-writer/1.0.0", + "1.0.1": "http://registry.npmjs.org/xml-writer/1.0.1", + "1.0.2": "http://registry.npmjs.org/xml-writer/1.0.2", + "1.0.3": "http://registry.npmjs.org/xml-writer/1.0.3" + }, + "dist": { + "1.0.0": { + "shasum": "5f7e58f023a850b56c71d216a775bcf4746095d8", + "tarball": "http://registry.npmjs.org/xml-writer/-/xml-writer-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "f8603156aa7b8835db9890fc80c265dfc6edd924", + "tarball": "http://registry.npmjs.org/xml-writer/-/xml-writer-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "640282701b428b29c19a036976963f2eec7dfb21", + "tarball": "http://registry.npmjs.org/xml-writer/-/xml-writer-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "48373b7eb7f5ec3a5179453765b89a4ccc79db81", + "tarball": "http://registry.npmjs.org/xml-writer/-/xml-writer-1.0.3.tgz" + } + }, + "keywords": [ + "xml", + "writer", + "XMLWriter", + "generator" + ], + "url": "http://registry.npmjs.org/xml-writer/" + }, + "xml2js": { + "name": "xml2js", + "description": "Simple XML to JavaScript object converter.", + "dist-tags": { + "latest": "0.1.12" + }, + "maintainers": [ + { + "name": "maqr", + "email": "maqr.lollerskates@gmail.com" + }, + { + "name": "leonidas", + "email": "marek@xivilization.net" + } + ], + "author": { + "name": "Marek Kubica", + "email": "marek@xivilization.net", + "url": "http://xivilization.net" + }, + "time": { + "modified": "2011-11-26T03:42:22.627Z", + "created": "2011-04-20T16:17:56.230Z", + "0.1.0": "2011-04-20T16:17:56.230Z", + "0.1.1": "2011-04-20T16:17:56.230Z", + "0.1.2": "2011-04-20T16:17:56.230Z", + "0.1.3": "2011-04-20T16:17:56.230Z", + "0.1.4": "2011-04-20T16:17:56.230Z", + "0.1.5": "2011-04-20T16:17:56.230Z", + "0.1.6": "2011-04-20T16:23:59.408Z", + "0.1.7": "2011-06-07T10:28:05.095Z", + "0.1.8": "2011-06-11T13:48:49.372Z", + "0.1.9": "2011-06-23T18:42:32.484Z", + "0.1.10": "2011-08-31T09:44:23.833Z", + "0.1.11": "2011-10-01T14:57:53.082Z", + "0.1.12": "2011-11-26T03:42:22.627Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/Leonidas-from-XIV/node-xml2js.git" + }, + "users": { + "pid": true + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/xml2js/0.1.0", + "0.1.1": "http://registry.npmjs.org/xml2js/0.1.1", + "0.1.2": "http://registry.npmjs.org/xml2js/0.1.2", + "0.1.3": "http://registry.npmjs.org/xml2js/0.1.3", + "0.1.4": "http://registry.npmjs.org/xml2js/0.1.4", + "0.1.5": "http://registry.npmjs.org/xml2js/0.1.5", + "0.1.6": "http://registry.npmjs.org/xml2js/0.1.6", + "0.1.7": "http://registry.npmjs.org/xml2js/0.1.7", + "0.1.8": "http://registry.npmjs.org/xml2js/0.1.8", + "0.1.9": "http://registry.npmjs.org/xml2js/0.1.9", + "0.1.10": "http://registry.npmjs.org/xml2js/0.1.10", + "0.1.11": "http://registry.npmjs.org/xml2js/0.1.11", + "0.1.12": "http://registry.npmjs.org/xml2js/0.1.12" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/xml2js/-/xml2js-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://registry.npmjs.org/xml2js/-/xml2js-0.1.1.tgz" + }, + "0.1.2": { + "tarball": "http://registry.npmjs.org/xml2js/-/xml2js-0.1.2.tgz" + }, + "0.1.3": { + "tarball": "http://registry.npmjs.org/xml2js/-/xml2js-0.1.3.tgz" + }, + "0.1.4": { + "tarball": "http://registry.npmjs.org/xml2js/-/xml2js-0.1.4.tgz" + }, + "0.1.5": { + "tarball": "http://registry.npmjs.org/xml2js/-/xml2js-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "9a486e262e8a9181c59255feb13367767f05af24", + "tarball": "http://registry.npmjs.org/xml2js/-/xml2js-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "a84346c12cb78fb2d58bc027a74c31c0dd18ede3", + "tarball": "http://registry.npmjs.org/xml2js/-/xml2js-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "70564c949c67e09ff180defa886e198b0475a53d", + "tarball": "http://registry.npmjs.org/xml2js/-/xml2js-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "c26fd0826e01a2be7110748a34f0f8385be459f1", + "tarball": "http://registry.npmjs.org/xml2js/-/xml2js-0.1.9.tgz" + }, + "0.1.10": { + "shasum": "f904e6105a7fc617acf0b7a58ef5aff93745dbae", + "tarball": "http://registry.npmjs.org/xml2js/-/xml2js-0.1.10.tgz" + }, + "0.1.11": { + "shasum": "0e70f00e6542ec9da9603fc969c8a93f61ac67fc", + "tarball": "http://registry.npmjs.org/xml2js/-/xml2js-0.1.11.tgz" + }, + "0.1.12": { + "shasum": "2d3aba8a879a4d50c8359932685acd70883f0552", + "tarball": "http://registry.npmjs.org/xml2js/-/xml2js-0.1.12.tgz" + } + }, + "keywords": [ + "xml", + "json" + ], + "url": "http://registry.npmjs.org/xml2js/" + }, + "xml2js-expat": { + "name": "xml2js-expat", + "description": "Simple XML to JavaScript object converter that uses Expat, a fast XML parser.", + "dist-tags": { + "latest": "0.2.0" + }, + "maintainers": [ + { + "name": "Poetro", + "email": "poetro@gmail.com" + } + ], + "author": { + "name": "Peter Galiba", + "email": "poetro@gmail.com", + "url": "Poetro" + }, + "repository": { + "type": "git", + "url": "git://github.com/Poetro/node-xml2js-expat.git" + }, + "time": { + "modified": "2011-04-08T22:34:38.218Z", + "created": "2011-02-21T15:35:18.607Z", + "0.1.0": "2011-02-21T15:35:18.607Z", + "0.1.1": "2011-02-21T15:35:18.607Z", + "0.1.2": "2011-02-21T15:35:18.607Z", + "0.1.3": "2011-02-21T15:35:18.607Z", + "0.2.0": "2011-04-08T22:34:38.218Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/xml2js-expat/0.1.0", + "0.1.1": "http://registry.npmjs.org/xml2js-expat/0.1.1", + "0.1.2": "http://registry.npmjs.org/xml2js-expat/0.1.2", + "0.1.3": "http://registry.npmjs.org/xml2js-expat/0.1.3", + "0.2.0": "http://registry.npmjs.org/xml2js-expat/0.2.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/xml2js-expat/-/xml2js-expat-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://registry.npmjs.org/xml2js-expat/-/xml2js-expat-0.1.1.tgz" + }, + "0.1.2": { + "tarball": "http://registry.npmjs.org/xml2js-expat/-/xml2js-expat-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "5ff7861d077728a87cf6f086fe254958632f5348", + "tarball": "http://registry.npmjs.org/xml2js-expat/-/xml2js-expat-0.1.3.tgz" + }, + "0.2.0": { + "shasum": "a60b5a12f4887960c8d78779934fc126f3f64bab", + "tarball": "http://registry.npmjs.org/xml2js-expat/-/xml2js-expat-0.2.0.tgz" + } + }, + "keywords": [ + "xml", + "json", + "expat" + ], + "url": "http://registry.npmjs.org/xml2js-expat/" + }, + "xml2json": { + "name": "xml2json", + "description": "Converts xml to json and viceverza, using node-expat.", + "dist-tags": { + "latest": "0.2.4" + }, + "maintainers": [ + { + "name": "buglabs", + "email": "camilo@buglabs.net" + } + ], + "time": { + "modified": "2011-11-18T00:30:51.405Z", + "created": "2011-06-30T20:02:52.118Z", + "0.1.0": "2011-06-30T20:02:52.514Z", + "0.1.1": "2011-07-05T16:37:38.507Z", + "0.2.0": "2011-07-06T18:14:33.182Z", + "0.2.1": "2011-07-07T14:34:42.485Z", + "0.2.2": "2011-08-10T15:17:32.702Z", + "0.2.3": "2011-08-17T03:04:03.425Z", + "0.2.4": "2011-11-18T00:30:51.405Z" + }, + "author": { + "name": "Andrew Turley" + }, + "repository": { + "type": "git", + "url": "git://github.com/buglabs/node-xml2json.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/xml2json/0.1.0", + "0.1.1": "http://registry.npmjs.org/xml2json/0.1.1", + "0.2.0": "http://registry.npmjs.org/xml2json/0.2.0", + "0.2.1": "http://registry.npmjs.org/xml2json/0.2.1", + "0.2.2": "http://registry.npmjs.org/xml2json/0.2.2", + "0.2.3": "http://registry.npmjs.org/xml2json/0.2.3", + "0.2.4": "http://registry.npmjs.org/xml2json/0.2.4" + }, + "dist": { + "0.1.0": { + "shasum": "7796d51b899bded7ee5c02f9b647bc6b94803668", + "tarball": "http://registry.npmjs.org/xml2json/-/xml2json-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "2db895867d2c379c61fed3a257e666f8804b4bb0", + "tarball": "http://registry.npmjs.org/xml2json/-/xml2json-0.1.1.tgz" + }, + "0.2.0": { + "shasum": "0e1d920dcb4f7a0100101ab82f177802eeb955d0", + "tarball": "http://registry.npmjs.org/xml2json/-/xml2json-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "015f9b2c724d73f7017cc128d9e77d4ebc033a45", + "tarball": "http://registry.npmjs.org/xml2json/-/xml2json-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "b507953612620ddfe8d6462b3c1ac420336a888f", + "tarball": "http://registry.npmjs.org/xml2json/-/xml2json-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "de341300f6a9c59b459bfba7690f941644e65773", + "tarball": "http://registry.npmjs.org/xml2json/-/xml2json-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "18cfd64778e0a3fa293e1a8aeccbdb42543e5f14", + "tarball": "http://registry.npmjs.org/xml2json/-/xml2json-0.2.4.tgz" + } + }, + "url": "http://registry.npmjs.org/xml2json/" + }, + "xmlbuilder": { + "name": "xmlbuilder", + "description": "An XML builder for node.js", + "dist-tags": { + "latest": "0.3.1" + }, + "maintainers": [ + { + "name": "oozcitak", + "email": "oozcitak@gmail.com" + } + ], + "author": { + "name": "Ozgur Ozcitak", + "email": "oozcitak@gmail.com" + }, + "time": { + "modified": "2011-11-28T23:04:19.670Z", + "created": "2010-12-28T13:44:59.957Z", + "0.0.1": "2010-12-28T13:44:59.957Z", + "0.0.2": "2010-12-28T13:44:59.957Z", + "0.0.3": "2010-12-28T13:44:59.957Z", + "0.0.4": "2010-12-28T13:44:59.957Z", + "0.0.5": "2010-12-31T09:56:33.985Z", + "0.0.6": "2011-02-23T20:14:01.904Z", + "0.1.0": "2011-04-27T00:32:18.799Z", + "0.1.1": "2011-05-19T16:28:34.728Z", + "0.1.2": "2011-06-02T22:54:01.725Z", + "0.1.3": "2011-07-27T16:05:15.208Z", + "0.1.4": "2011-07-29T08:38:57.183Z", + "0.1.5": "2011-08-08T09:58:18.750Z", + "0.1.6": "2011-10-27T14:26:22.938Z", + "0.1.7": "2011-10-27T14:30:19.296Z", + "0.1.8": "2011-11-21T13:05:21.773Z", + "0.2.0": "2011-11-21T13:07:46.939Z", + "0.2.1": "2011-11-28T16:09:44.491Z", + "0.2.2": "2011-11-28T22:40:37.351Z", + "0.3.0": "2011-11-28T22:46:38.619Z", + "0.3.1": "2011-11-28T23:04:19.670Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/oozcitak/xmlbuilder-js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/xmlbuilder/0.0.1", + "0.0.2": "http://registry.npmjs.org/xmlbuilder/0.0.2", + "0.0.3": "http://registry.npmjs.org/xmlbuilder/0.0.3", + "0.0.4": "http://registry.npmjs.org/xmlbuilder/0.0.4", + "0.0.5": "http://registry.npmjs.org/xmlbuilder/0.0.5", + "0.0.6": "http://registry.npmjs.org/xmlbuilder/0.0.6", + "0.1.0": "http://registry.npmjs.org/xmlbuilder/0.1.0", + "0.1.1": "http://registry.npmjs.org/xmlbuilder/0.1.1", + "0.1.2": "http://registry.npmjs.org/xmlbuilder/0.1.2", + "0.1.3": "http://registry.npmjs.org/xmlbuilder/0.1.3", + "0.1.4": "http://registry.npmjs.org/xmlbuilder/0.1.4", + "0.1.5": "http://registry.npmjs.org/xmlbuilder/0.1.5", + "0.1.6": "http://registry.npmjs.org/xmlbuilder/0.1.6", + "0.1.7": "http://registry.npmjs.org/xmlbuilder/0.1.7", + "0.1.8": "http://registry.npmjs.org/xmlbuilder/0.1.8", + "0.2.0": "http://registry.npmjs.org/xmlbuilder/0.2.0", + "0.2.1": "http://registry.npmjs.org/xmlbuilder/0.2.1", + "0.2.2": "http://registry.npmjs.org/xmlbuilder/0.2.2", + "0.3.0": "http://registry.npmjs.org/xmlbuilder/0.3.0", + "0.3.1": "http://registry.npmjs.org/xmlbuilder/0.3.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://registry.npmjs.org/xmlbuilder/-/xmlbuilder-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://registry.npmjs.org/xmlbuilder/-/xmlbuilder-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://registry.npmjs.org/xmlbuilder/-/xmlbuilder-0.0.3.tgz" + }, + "0.0.4": { + "tarball": "http://registry.npmjs.org/xmlbuilder/-/xmlbuilder-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "5fa298489953ec26a5884b3e45c775405e4aca31", + "tarball": "http://registry.npmjs.org/xmlbuilder/-/xmlbuilder-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "d2004b76b5a5b104180ab48e330d1c808e2e2adc", + "tarball": "http://registry.npmjs.org/xmlbuilder/-/xmlbuilder-0.0.6.tgz" + }, + "0.1.0": { + "shasum": "38387f0a3f4e0adc6b7c7719e5c64e1dbf88b897", + "tarball": "http://registry.npmjs.org/xmlbuilder/-/xmlbuilder-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "a52dc1e9cd812f69a4577c169397b828be2dad5b", + "tarball": "http://registry.npmjs.org/xmlbuilder/-/xmlbuilder-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "7b7ed43dca548284d4d138169b502adc56acbec4", + "tarball": "http://registry.npmjs.org/xmlbuilder/-/xmlbuilder-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "d2ca27982e4016775e039132deae73d68da84d0b", + "tarball": "http://registry.npmjs.org/xmlbuilder/-/xmlbuilder-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "ff11c1ac73ea8ee62900c94aa2ccaff9cc031bea", + "tarball": "http://registry.npmjs.org/xmlbuilder/-/xmlbuilder-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "dd09d16aa0c460dbd646fc6378179a15d7e352dd", + "tarball": "http://registry.npmjs.org/xmlbuilder/-/xmlbuilder-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "d579144a40195fa9452a3322293259f19ae137c5", + "tarball": "http://registry.npmjs.org/xmlbuilder/-/xmlbuilder-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "02377307a1a6a9edb180a966ed93df150f65376c", + "tarball": "http://registry.npmjs.org/xmlbuilder/-/xmlbuilder-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "f405ffefa83cb044124d93f014b688125d007be7", + "tarball": "http://registry.npmjs.org/xmlbuilder/-/xmlbuilder-0.1.8.tgz" + }, + "0.2.0": { + "shasum": "f10403150a70c5e719f092c0252b4c9fa2cb5068", + "tarball": "http://registry.npmjs.org/xmlbuilder/-/xmlbuilder-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "1d8814a2ba0134358faa54929c8c3bed8e420a0a", + "tarball": "http://registry.npmjs.org/xmlbuilder/-/xmlbuilder-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "552fadd8bf52ae25b7a77b02e117328651c66672", + "tarball": "http://registry.npmjs.org/xmlbuilder/-/xmlbuilder-0.2.2.tgz" + }, + "0.3.0": { + "shasum": "f64520d5232b72029eb17901eb510620cb74acb1", + "tarball": "http://registry.npmjs.org/xmlbuilder/-/xmlbuilder-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "5ed4c22b4622c2437faf83e4f236f23d6bbf2641", + "tarball": "http://registry.npmjs.org/xmlbuilder/-/xmlbuilder-0.3.1.tgz" + } + }, + "keywords": [ + "xml xmlbuilder" + ], + "url": "http://registry.npmjs.org/xmlbuilder/" + }, + "xmlhttprequest": { + "name": "xmlhttprequest", + "description": "XMLHttpRequest for Node", + "dist-tags": { + "latest": "1.3.0" + }, + "maintainers": [ + { + "name": "driverdan", + "email": "dan@driverdan.com" + } + ], + "time": { + "modified": "2011-11-01T05:57:17.320Z", + "created": "2011-03-04T01:10:24.994Z", + "1.0.0": "2011-03-04T01:10:25.174Z", + "1.2.0": "2011-07-22T22:08:38.274Z", + "1.2.1": "2011-07-22T22:10:39.383Z", + "1.2.2": "2011-07-22T22:18:19.147Z", + "1.3.0": "2011-11-01T05:57:17.320Z" + }, + "author": { + "name": "Dan DeFelippi" + }, + "repository": { + "type": "git", + "url": "git://github.com/driverdan/node-XMLHttpRequest.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/xmlhttprequest/1.0.0", + "1.2.0": "http://registry.npmjs.org/xmlhttprequest/1.2.0", + "1.2.1": "http://registry.npmjs.org/xmlhttprequest/1.2.1", + "1.2.2": "http://registry.npmjs.org/xmlhttprequest/1.2.2", + "1.3.0": "http://registry.npmjs.org/xmlhttprequest/1.3.0" + }, + "dist": { + "1.0.0": { + "shasum": "06274b14e87b3feec289c40ebd947e85289f86c1", + "tarball": "http://registry.npmjs.org/xmlhttprequest/-/xmlhttprequest-1.0.0.tgz" + }, + "1.2.0": { + "shasum": "1cd061188912ba87bdba6e67d99c86ebb5b77fd1", + "tarball": "http://registry.npmjs.org/xmlhttprequest/-/xmlhttprequest-1.2.0.tgz" + }, + "1.2.1": { + "shasum": "1696d4b69e97fec1f07b094dfd048fa31323a5b4", + "tarball": "http://registry.npmjs.org/xmlhttprequest/-/xmlhttprequest-1.2.1.tgz" + }, + "1.2.2": { + "shasum": "e8875bdb13af7c22b04cbb034caadf8ff22676a3", + "tarball": "http://registry.npmjs.org/xmlhttprequest/-/xmlhttprequest-1.2.2.tgz" + }, + "1.3.0": { + "shasum": "f6888d76176a9e4217694aa168a02c366e5d454a", + "tarball": "http://registry.npmjs.org/xmlhttprequest/-/xmlhttprequest-1.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/xmlhttprequest/" + }, + "xmlrpc": { + "name": "xmlrpc", + "description": "A pure JavaScript XML-RPC client and server.", + "dist-tags": { + "latest": "0.9.2" + }, + "maintainers": [ + { + "name": "baalexander", + "email": "baalexander@gmail.com" + } + ], + "time": { + "modified": "2011-12-11T04:54:55.148Z", + "created": "2011-05-19T04:03:01.098Z", + "0.6.0": "2011-05-19T04:03:01.471Z", + "0.6.1": "2011-06-04T03:42:16.320Z", + "0.6.2": "2011-06-16T04:33:54.357Z", + "0.7.0": "2011-07-13T03:28:55.434Z", + "0.7.1": "2011-08-03T03:57:56.772Z", + "0.8.0": "2011-08-15T04:12:22.370Z", + "0.8.1": "2011-09-02T04:45:08.284Z", + "0.9.0": "2011-11-02T04:03:32.424Z", + "0.9.1": "2011-11-30T03:46:50.509Z", + "0.9.2": "2011-12-11T04:54:55.148Z" + }, + "author": { + "name": "Brandon Alexander", + "email": "baalexander@gmail.com", + "url": "https://github.com/baalexander" + }, + "repository": { + "type": "git", + "url": "git://github.com/baalexander/node-xmlrpc.git" + }, + "versions": { + "0.6.0": "http://registry.npmjs.org/xmlrpc/0.6.0", + "0.6.1": "http://registry.npmjs.org/xmlrpc/0.6.1", + "0.6.2": "http://registry.npmjs.org/xmlrpc/0.6.2", + "0.7.0": "http://registry.npmjs.org/xmlrpc/0.7.0", + "0.7.1": "http://registry.npmjs.org/xmlrpc/0.7.1", + "0.8.0": "http://registry.npmjs.org/xmlrpc/0.8.0", + "0.8.1": "http://registry.npmjs.org/xmlrpc/0.8.1", + "0.9.0": "http://registry.npmjs.org/xmlrpc/0.9.0", + "0.9.1": "http://registry.npmjs.org/xmlrpc/0.9.1", + "0.9.2": "http://registry.npmjs.org/xmlrpc/0.9.2" + }, + "dist": { + "0.6.0": { + "shasum": "d282b052fe8ff5801f2cecf16c2ae18b1d046c2a", + "tarball": "http://registry.npmjs.org/xmlrpc/-/xmlrpc-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "2d79bbb423243d53075d2134491bc2d8762703c3", + "tarball": "http://registry.npmjs.org/xmlrpc/-/xmlrpc-0.6.1.tgz" + }, + "0.6.2": { + "shasum": "774d3ed498230fc62902474c79e84e8b0aa31ab2", + "tarball": "http://registry.npmjs.org/xmlrpc/-/xmlrpc-0.6.2.tgz" + }, + "0.7.0": { + "shasum": "2fc2167b985d613e657d86bda4c74ec4098b17dd", + "tarball": "http://registry.npmjs.org/xmlrpc/-/xmlrpc-0.7.0.tgz" + }, + "0.7.1": { + "shasum": "196a4170dad2e7f1418a16ef13cf9e415d58382e", + "tarball": "http://registry.npmjs.org/xmlrpc/-/xmlrpc-0.7.1.tgz" + }, + "0.8.0": { + "shasum": "d6fc8342b0a7a907d077ddce037bfab9fa3a7eef", + "tarball": "http://registry.npmjs.org/xmlrpc/-/xmlrpc-0.8.0.tgz" + }, + "0.8.1": { + "shasum": "05c63dba749857d5cae54ea232d5b09f3a946fd8", + "tarball": "http://registry.npmjs.org/xmlrpc/-/xmlrpc-0.8.1.tgz" + }, + "0.9.0": { + "shasum": "085c9271a5af7b6a187aa3f97cce93015c5d3284", + "tarball": "http://registry.npmjs.org/xmlrpc/-/xmlrpc-0.9.0.tgz" + }, + "0.9.1": { + "shasum": "9f4817cacdd0ff72efd9d2e3873aa3e5af9b0ca4", + "tarball": "http://registry.npmjs.org/xmlrpc/-/xmlrpc-0.9.1.tgz" + }, + "0.9.2": { + "shasum": "3a96844ed671f0e7ae716f0a917869a1bf089fd2", + "tarball": "http://registry.npmjs.org/xmlrpc/-/xmlrpc-0.9.2.tgz" + } + }, + "keywords": [ + "xml-rpc", + "xmlrpc", + "xml", + "rpc" + ], + "url": "http://registry.npmjs.org/xmlrpc/" + }, + "xmlshim": { + "name": "xmlshim", + "description": "Provides DOMParser, XMLSerializer and DOMImplementation wrappers in the browser and emulates them on the server-side", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "znerol", + "email": "lo+npm@znerol.ch" + } + ], + "time": { + "modified": "2011-12-07T09:50:30.783Z", + "created": "2011-12-06T10:54:27.387Z", + "0.0.1": "2011-12-06T11:01:14.089Z", + "0.0.2": "2011-12-07T09:50:30.783Z" + }, + "author": { + "name": "Lorenz Schori", + "email": "lo+xmlshim@znerol.ch" + }, + "repository": { + "type": "git", + "url": "git@github.com:znerol/node-xmlshim.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/xmlshim/0.0.1", + "0.0.2": "http://registry.npmjs.org/xmlshim/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "93f7b81b33192292671f31872166ffa344337499", + "tarball": "http://registry.npmjs.org/xmlshim/-/xmlshim-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "91628f5063f88adc4f004b534b2eca3c76757f08", + "tarball": "http://registry.npmjs.org/xmlshim/-/xmlshim-0.0.2.tgz" + } + }, + "keywords": [ + "XML", + "DOM", + "DOMParser", + "XMLSerializer", + "createDocument", + "browserify" + ], + "url": "http://registry.npmjs.org/xmlshim/" + }, + "xmlslicer": { + "name": "xmlslicer", + "description": "Advanced XML Splitting and JSON conversion tools", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "damonoehlman", + "email": "damon.oehlman@sidelab.com" + } + ], + "time": { + "modified": "2011-09-29T00:06:19.923Z", + "created": "2011-09-29T00:06:17.893Z", + "0.0.1": "2011-09-29T00:06:19.923Z" + }, + "author": { + "name": "Damon Oehlman" + }, + "repository": { + "type": "git", + "url": "git://github.com/DamonOehlman/xmlslicer.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/xmlslicer/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "a9d50d8d2083f1654b47b61bd51c65ecb0035112", + "tarball": "http://registry.npmjs.org/xmlslicer/-/xmlslicer-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/xmlslicer/" + }, + "xmpp-client": { + "name": "xmpp-client", + "description": "High level xmpp client for node.js", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "athoune", + "email": "mathieu@garambrogne.net" + } + ], + "author": { + "name": "Mathieu Lecarme", + "email": "mathieu@garambrogne.net" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/xmpp-client/0.0.1" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/xmpp-client/-/xmpp-client-0.0.1.tgz" + } + }, + "keywords": [ + "xmpp" + ], + "url": "http://registry.npmjs.org/xmpp-client/" + }, + "xmpp-muc": { + "name": "xmpp-muc", + "description": "XMPP MUC handler", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "aredridel", + "email": "aredridel@nbtsc.org" + } + ], + "author": { + "name": "Aria Stewart" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/xmpp-muc/0.0.0" + }, + "dist": { + "0.0.0": { + "tarball": "http://packages:5984/xmpp-muc/-/xmpp-muc-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/xmpp-muc/" + }, + "xmpp-server": { + "name": "xmpp-server", + "description": "XMPP server based on node-xmpp", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "julien51", + "email": "julien@superfeedr.com" + } + ], + "time": { + "modified": "2011-10-02T13:06:19.607Z", + "created": "2011-09-06T14:41:27.994Z", + "0.0.1": "2011-09-06T14:41:29.704Z", + "0.0.2": "2011-09-15T19:21:12.613Z" + }, + "author": { + "name": "Julien Genestoux", + "email": "julien@superfeedr.com", + "url": "http://superfeedr.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/xmpp-server/0.0.1", + "0.0.2": "http://registry.npmjs.org/xmpp-server/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "cba66aa24d70f13fd75be0659da78a08722a07e8", + "tarball": "http://registry.npmjs.org/xmpp-server/-/xmpp-server-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "e647903ecc75f92502acbfbeb0efa8cacd8bc198", + "tarball": "http://registry.npmjs.org/xmpp-server/-/xmpp-server-0.0.2.tgz" + } + }, + "keywords": [ + "XMPP server node-xmpp chat jabber" + ], + "url": "http://registry.npmjs.org/xmpp-server/" + }, + "xp": { + "name": "xp", + "description": "agile programming tools in Coffeescript", + "dist-tags": { + "latest": "0.2.2" + }, + "maintainers": [ + { + "name": "marak", + "email": "marak.squires@gmail.com" + } + ], + "time": { + "modified": "2011-04-05T09:55:02.423Z", + "created": "2011-04-05T09:15:04.838Z", + "0.2.0": "2011-04-05T09:15:05.199Z", + "0.2.1": "2011-04-05T09:51:55.404Z", + "0.2.2": "2011-04-05T09:55:02.423Z" + }, + "author": { + "name": "Marak Squires", + "email": "marak.squires@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/marak/xp.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/xp/0.2.0", + "0.2.1": "http://registry.npmjs.org/xp/0.2.1", + "0.2.2": "http://registry.npmjs.org/xp/0.2.2" + }, + "dist": { + "0.2.0": { + "shasum": "d247555b53d13f8f82d9db05e0e3234df2d7d136", + "tarball": "http://registry.npmjs.org/xp/-/xp-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "a085255d420c22ac2143ab6e0411d6583156e762", + "tarball": "http://registry.npmjs.org/xp/-/xp-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "87af39e90a5e49a4917e657d1821d3eb1f6939ae", + "tarball": "http://registry.npmjs.org/xp/-/xp-0.2.2.tgz" + } + }, + "keywords": [ + "xp", + "agile", + "programming", + "git", + "tools", + "utility", + "utilities", + "tool", + "coffeescript" + ], + "url": "http://registry.npmjs.org/xp/" + }, + "xregexp": { + "name": "xregexp", + "description": "The one of a kind JavaScript regular expression library.", + "dist-tags": { + "latest": "1.5.0" + }, + "maintainers": [ + { + "name": "walling", + "email": "bwp@bwp.dk" + } + ], + "time": { + "modified": "2011-06-30T16:20:49.667Z", + "created": "2011-06-30T16:20:48.897Z", + "1.5.0": "2011-06-30T16:20:49.667Z" + }, + "author": { + "name": "Steven Levithan", + "email": "steves_list@hotmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/walling/xregexp.git" + }, + "versions": { + "1.5.0": "http://registry.npmjs.org/xregexp/1.5.0" + }, + "dist": { + "1.5.0": { + "shasum": "ae377617bd0ca52ca3656d10fd5c07ef7fe6f018", + "tarball": "http://registry.npmjs.org/xregexp/-/xregexp-1.5.0.tgz" + } + }, + "url": "http://registry.npmjs.org/xregexp/" + }, + "xrm": { + "name": "xrm", + "dist-tags": { + "latest": "0.0.1-beta" + }, + "maintainers": [ + { + "name": "amih", + "email": "ami@chartly.com" + } + ], + "time": { + "modified": "2011-11-14T10:48:50.312Z", + "created": "2011-11-14T10:39:31.384Z", + "0.0.1-beta": "2011-11-14T10:48:50.312Z" + }, + "versions": { + "0.0.1-beta": "http://registry.npmjs.org/xrm/0.0.1-beta" + }, + "dist": { + "0.0.1-beta": { + "shasum": "2ac87b6c36b6a2dfe68b76d8a8e440b8555e0552", + "tarball": "http://registry.npmjs.org/xrm/-/xrm-0.0.1-beta.tgz" + } + }, + "url": "http://registry.npmjs.org/xrm/" + }, + "xsd": { + "name": "xsd", + "description": "xsd tools for node", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "tmpvar", + "email": "tmpvar@gmail.com" + } + ], + "time": { + "modified": "2011-07-21T00:53:04.762Z", + "created": "2011-07-20T23:50:21.465Z", + "0.0.1": "2011-07-20T23:50:22.046Z", + "0.0.2": "2011-07-21T00:53:04.762Z" + }, + "author": { + "name": "Elijah Insua", + "email": "tmpvar@gmail.com" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/xsd/0.0.1", + "0.0.2": "http://registry.npmjs.org/xsd/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "b2d5943c1ccdd57e8827be8ea65382f08bf882a9", + "tarball": "http://registry.npmjs.org/xsd/-/xsd-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "47d3d131ccf5cc5923fa5efd4eeb7c95c39a0632", + "tarball": "http://registry.npmjs.org/xsd/-/xsd-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/xsd/" + }, + "xsockets": { + "name": "xsockets", + "description": "a socket optimized for cross-domain use for the web and node", + "dist-tags": { + "latest": "0.2.0" + }, + "readme": "# xsockets\n\na socket optimized for cross-domain use for the web and node. it's easy to use:\n\n``` js\nvar sockets = require('xsockets');\n\nsockets.listen(9999, function(socket) {\n\tsocket.on('message', function(message) {\n\t\tsocket.send(message); // echo\n\t});\n});\n\nvar socket = sockets.connect('localhost:9999');\n\nsocket.send({hello:'world'});\nsocket.on('message', function(message) {\n\tconsole.log(message);\n});\n\n```", + "maintainers": [ + { + "name": "mafintosh", + "email": "mathiasbuus@gmail.com" + } + ], + "time": { + "modified": "2011-11-17T12:01:10.028Z", + "created": "2011-11-17T10:48:27.384Z", + "0.2.0": "2011-11-17T10:48:28.917Z", + "0.2.1": "2011-11-17T10:50:18.871Z" + }, + "author": { + "name": "Ge.tt", + "email": "hello@ge.tt" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/xsockets/0.2.0" + }, + "dist": { + "0.2.0": { + "shasum": "c9e4006c26b664e7daed08e2b21a3a2c7bd53d7d", + "tarball": "http://registry.npmjs.org/xsockets/-/xsockets-0.2.0.tgz" + } + }, + "keywords": [ + "cross-domain", + "cors", + "socket", + "sockets" + ], + "url": "http://registry.npmjs.org/xsockets/" + }, + "ya-csv": { + "name": "ya-csv", + "description": "CSV parser and generator for Node.js", + "dist-tags": { + "latest": "0.1.8" + }, + "maintainers": [ + { + "name": "koles", + "email": "pavel.kolesnikov@gmail.com" + } + ], + "author": { + "name": "Pavel Kolesnikov", + "email": "pavel.kolesnikov@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/koles/ya-csv.git" + }, + "time": { + "modified": "2011-10-24T03:46:10.813Z", + "created": "2011-03-17T06:08:10.428Z", + "0.1.0": "2011-03-17T06:08:10.428Z", + "0.1.1": "2011-03-17T06:08:10.428Z", + "0.1.2": "2011-03-17T06:08:10.428Z", + "0.1.3": "2011-03-17T06:08:10.428Z", + "0.1.4": "2011-03-17T06:08:10.428Z", + "0.1.5": "2011-03-17T06:08:10.428Z", + "0.1.6": "2011-03-17T06:08:10.428Z", + "0.1.7": "2011-09-11T05:04:46.659Z", + "0.1.8": "2011-10-24T03:46:10.843Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/ya-csv/0.1.0", + "0.1.1": "http://registry.npmjs.org/ya-csv/0.1.1", + "0.1.2": "http://registry.npmjs.org/ya-csv/0.1.2", + "0.1.3": "http://registry.npmjs.org/ya-csv/0.1.3", + "0.1.4": "http://registry.npmjs.org/ya-csv/0.1.4", + "0.1.5": "http://registry.npmjs.org/ya-csv/0.1.5", + "0.1.6": "http://registry.npmjs.org/ya-csv/0.1.6", + "0.1.7": "http://registry.npmjs.org/ya-csv/0.1.7", + "0.1.8": "http://registry.npmjs.org/ya-csv/0.1.8" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/ya-csv/-/ya-csv-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://registry.npmjs.org/ya-csv/-/ya-csv-0.1.1.tgz" + }, + "0.1.2": { + "tarball": "http://registry.npmjs.org/ya-csv/-/ya-csv-0.1.2.tgz" + }, + "0.1.3": { + "tarball": "http://registry.npmjs.org/ya-csv/-/ya-csv-0.1.3.tgz" + }, + "0.1.4": { + "tarball": "http://registry.npmjs.org/ya-csv/-/ya-csv-0.1.4.tgz" + }, + "0.1.5": { + "tarball": "http://registry.npmjs.org/ya-csv/-/ya-csv-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "c514cc41ba1b3839b4393ed6c8c212aeeb7d80e5", + "tarball": "http://registry.npmjs.org/ya-csv/-/ya-csv-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "1b667a188746389dffc8a53c458a9961e66d8991", + "tarball": "http://registry.npmjs.org/ya-csv/-/ya-csv-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "98692278e302131c6ec46a4793a06d96831ed6eb", + "tarball": "http://registry.npmjs.org/ya-csv/-/ya-csv-0.1.8.tgz" + } + }, + "keywords": [ + "node", + "csv", + "parser" + ], + "url": "http://registry.npmjs.org/ya-csv/" + }, + "yabble": { + "name": "yabble", + "description": "A general purpose browser-side CommonJS module loader", + "dist-tags": { + "latest": "0.3.1" + }, + "maintainers": [ + { + "name": "francois", + "email": "francois@2metz.fr" + } + ], + "time": { + "modified": "2011-02-14T15:31:23.696Z", + "created": "2011-02-10T16:44:15.559Z", + "0.3.0": "2011-02-10T16:44:16.193Z", + "0.3.1": "2011-02-14T15:31:23.696Z" + }, + "versions": { + "0.3.0": "http://registry.npmjs.org/yabble/0.3.0", + "0.3.1": "http://registry.npmjs.org/yabble/0.3.1" + }, + "dist": { + "0.3.0": { + "shasum": "e4bbe3cffd09bf7bb3df4a9d638a8dbc35589678", + "tarball": "http://registry.npmjs.org/yabble/-/yabble-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "4065329278d3cde79b4833e3f3904ec648cb6c73", + "tarball": "http://registry.npmjs.org/yabble/-/yabble-0.3.1.tgz" + } + }, + "keywords": [ + "loader", + "browser" + ], + "url": "http://registry.npmjs.org/yabble/" + }, + "yaconf": { + "name": "yaconf", + "description": "Dead simple node.js file configuration", + "dist-tags": { + "latest": "0.0.3" + }, + "readme": "Yet Another Config library\n\n\n##### There's at least a kajillion other libraries that do the same thing - why did you build one?\n\nIt look me longer looking for the right one vs just building it.\n\n\nin my/config.js\n\n````javascript\n\nmodule.exports = require('yaconf').file('/etc/app/config.json');\n\n\n````\n\n\nin my/app.js\n\n```javascript\n\nvar cfg = require('./config');\n\n\n//saved\ncfg.save('person:name', Craig );\n\n\ncfg.get('person:name');// Craig\ncfg.get('person');// { name: \"Craig\" }", + "maintainers": [ + { + "name": "architectd", + "email": "craig.j.condon@gmail.com" + } + ], + "time": { + "modified": "2011-12-11T04:51:44.944Z", + "created": "2011-11-30T18:54:46.529Z", + "0.0.2": "2011-11-30T18:54:47.296Z", + "0.0.3": "2011-12-11T04:51:44.944Z" + }, + "author": { + "name": "Craig Condon" + }, + "repository": { + "type": "git", + "url": "git://github.com/crcn/yaconf.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/yaconf/0.0.2", + "0.0.3": "http://registry.npmjs.org/yaconf/0.0.3" + }, + "dist": { + "0.0.2": { + "shasum": "9b5abf17f5ceca4401a485c33b79939b4ff9bf5b", + "tarball": "http://registry.npmjs.org/yaconf/-/yaconf-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "dd307da4eac10be7278b05bdea20d8126fe2a117", + "tarball": "http://registry.npmjs.org/yaconf/-/yaconf-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/yaconf/" + }, + "yaconfig": { + "name": "yaconfig", + "description": "Dead simple node.js file configuration", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "architectd", + "email": "craig.j.condon@gmail.com" + } + ], + "time": { + "modified": "2011-09-24T07:26:10.412Z", + "created": "2011-09-21T22:05:36.991Z", + "0.0.1": "2011-09-21T22:05:37.796Z", + "0.0.2": "2011-09-24T06:31:08.600Z" + }, + "author": { + "name": "Craig Condon" + }, + "repository": { + "type": "git", + "url": "git://github.com/spiceapps/yaconf.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/yaconfig/0.0.1", + "0.0.2": "http://registry.npmjs.org/yaconfig/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "555873f4fc7cf80b2387ad7e9aa90d46bdd7fd8b", + "tarball": "http://registry.npmjs.org/yaconfig/-/yaconfig-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "58fd8a5b2a2d2ca13681824949249d529e7601d0", + "tarball": "http://registry.npmjs.org/yaconfig/-/yaconfig-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/yaconfig/" + }, + "yah": { + "name": "yah", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "samuraijack", + "email": "nickolay8@gmail.com" + } + ], + "time": { + "modified": "2011-09-05T06:36:51.047Z", + "created": "2011-09-05T06:36:50.218Z", + "0.0.0": "2011-09-05T06:36:51.047Z" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/yah/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "1fbba9b49dc034fee1fc484d546717d28f755f6d", + "tarball": "http://registry.npmjs.org/yah/-/yah-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/yah/" + }, + "yahoomaps": { + "name": "yahoomaps", + "description": "A simple way to query the Yahoo Maps API from Node.js", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "shamoons", + "email": "EmailShamoon@gmail.com" + } + ], + "time": { + "modified": "2011-11-10T16:38:07.903Z", + "created": "2011-09-30T19:09:10.093Z", + "0.1.1": "2011-09-30T19:09:10.529Z", + "0.1.2": "2011-09-30T19:12:25.827Z", + "0.1.3": "2011-11-10T16:38:07.903Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/shamoons/node-yahoomaps.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/yahoomaps/0.1.1", + "0.1.2": "http://registry.npmjs.org/yahoomaps/0.1.2", + "0.1.3": "http://registry.npmjs.org/yahoomaps/0.1.3" + }, + "dist": { + "0.1.1": { + "shasum": "ff5c553fff40f47bc3eaea043416df3cf2b68676", + "tarball": "http://registry.npmjs.org/yahoomaps/-/yahoomaps-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "d15356e8a368875203ff57f57360ba674e54c233", + "tarball": "http://registry.npmjs.org/yahoomaps/-/yahoomaps-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "024897c559d2ca476e3ac2d0d4c1496fcd6d2268", + "tarball": "http://registry.npmjs.org/yahoomaps/-/yahoomaps-0.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/yahoomaps/" + }, + "yajet": { + "name": "yajet", + "description": "Template engine forked from http://www.yajet.net/", + "dist-tags": { + "latest": "0.0.1-1" + }, + "maintainers": [ + { + "name": "thomblake", + "email": "thethomblake@gmail.com" + } + ], + "time": { + "modified": "2011-11-15T20:37:08.920Z", + "created": "2011-09-12T21:54:22.440Z", + "0.0.0": "2011-09-12T21:54:22.918Z", + "0.0.0-1": "2011-09-13T21:07:48.142Z", + "0.0.1-1": "2011-11-15T20:37:08.920Z" + }, + "author": { + "name": "Thom Blake", + "email": "thethomblake@gmail.com", + "url": "http://thomblake.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/thomblake/yajet.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/yajet/0.0.0", + "0.0.0-1": "http://registry.npmjs.org/yajet/0.0.0-1", + "0.0.1-1": "http://registry.npmjs.org/yajet/0.0.1-1" + }, + "dist": { + "0.0.0": { + "shasum": "ca32f85d8b239d99de2a1c2979356036796713d5", + "tarball": "http://registry.npmjs.org/yajet/-/yajet-0.0.0.tgz" + }, + "0.0.0-1": { + "shasum": "eec171fa6abaf266b3e32f07bb242bdb6ff6ae49", + "tarball": "http://registry.npmjs.org/yajet/-/yajet-0.0.0-1.tgz" + }, + "0.0.1-1": { + "shasum": "6acd6cad72fa4b85ab1576d7f14895b3507fce46", + "tarball": "http://registry.npmjs.org/yajet/-/yajet-0.0.1-1.tgz" + } + }, + "keywords": [ + "template" + ], + "url": "http://registry.npmjs.org/yajet/" + }, + "yajl": { + "name": "yajl", + "description": "Binding for libyajl", + "dist-tags": { + "latest": "0.6.1" + }, + "maintainers": [ + { + "name": "vibornoff", + "email": "vybornov@gmail.com" + } + ], + "time": { + "modified": "2011-04-29T19:13:03.030Z", + "created": "2011-04-29T19:13:02.329Z", + "0.6.1": "2011-04-29T19:13:03.030Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/vibornoff/node-yajl.git", + "web": "http://github.com/vibornoff/node-yajl" + }, + "versions": { + "0.6.1": "http://registry.npmjs.org/yajl/0.6.1" + }, + "dist": { + "0.6.1": { + "shasum": "98ff30969cc34831f96892bc62b456d511f9875f", + "tarball": "http://registry.npmjs.org/yajl/-/yajl-0.6.1.tgz" + } + }, + "url": "http://registry.npmjs.org/yajl/" + }, + "yajq": { + "name": "yajq", + "description": "Yet Another Job Queue", + "dist-tags": { + "latest": "0.0.4" + }, + "readme": null, + "maintainers": [ + { + "name": "pampa", + "email": "baron.pampa@gmail.com" + } + ], + "time": { + "modified": "2011-12-02T22:53:55.224Z", + "created": "2011-11-30T17:09:21.805Z", + "0.0.1": "2011-11-30T17:09:23.770Z", + "0.0.2": "2011-11-30T23:17:07.785Z", + "0.0.3": "2011-12-01T13:19:59.229Z", + "0.0.4": "2011-12-02T22:53:55.224Z" + }, + "author": { + "name": "Alex Zhukov", + "email": "baron.pampa@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/pampa/yajq.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/yajq/0.0.1", + "0.0.2": "http://registry.npmjs.org/yajq/0.0.2", + "0.0.3": "http://registry.npmjs.org/yajq/0.0.3", + "0.0.4": "http://registry.npmjs.org/yajq/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "c5cb9db76e48cbfe072f51001f4a32bce6f3c2f7", + "tarball": "http://registry.npmjs.org/yajq/-/yajq-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "5d89c60b0a67da3dc848d01a03b9aec30cbda0dd", + "tarball": "http://registry.npmjs.org/yajq/-/yajq-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "c1b32201b3dd06c0d786f1bcbfa5d91fe9343c9a", + "tarball": "http://registry.npmjs.org/yajq/-/yajq-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "b98c7f7cd5a91608bcc0c6cbfcf760416f0f729b", + "tarball": "http://registry.npmjs.org/yajq/-/yajq-0.0.4.tgz" + } + }, + "keywords": [ + "redis", + "jobs", + "queue", + "job queue" + ], + "url": "http://registry.npmjs.org/yajq/" + }, + "yaml": { + "name": "yaml", + "description": "Yaml parser", + "dist-tags": { + "latest": "0.2.3" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "author": { + "name": "TJ Holowaychuk", + "email": "tj@vision-media.ca" + }, + "time": { + "modified": "2011-12-05T20:18:09.979Z", + "created": "2011-04-15T16:25:52.216Z", + "0.1.0": "2011-04-15T16:25:52.216Z", + "0.1.1": "2011-04-15T16:25:52.216Z", + "0.1.2": "2011-04-15T16:25:52.216Z", + "0.2.0": "2011-05-21T19:08:13.195Z", + "0.2.1": "2011-05-22T17:20:58.242Z", + "0.2.2": "2011-08-31T17:45:55.087Z", + "0.2.3": "2011-12-05T20:18:09.979Z" + }, + "users": { + "naholyr": true + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/yaml/0.1.0", + "0.1.1": "http://registry.npmjs.org/yaml/0.1.1", + "0.1.2": "http://registry.npmjs.org/yaml/0.1.2", + "0.2.0": "http://registry.npmjs.org/yaml/0.2.0", + "0.2.1": "http://registry.npmjs.org/yaml/0.2.1", + "0.2.2": "http://registry.npmjs.org/yaml/0.2.2", + "0.2.3": "http://registry.npmjs.org/yaml/0.2.3" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/yaml/-/yaml-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "ac2a0ea9eb89f3d86c436763bd98b5bd92ed92f8", + "tarball": "http://registry.npmjs.org/yaml/-/yaml-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "0459d27fecb4f015f072b15db8ec64ca64af603f", + "tarball": "http://registry.npmjs.org/yaml/-/yaml-0.1.2.tgz" + }, + "0.2.0": { + "shasum": "6c37d91f3081690ec0e11c1b7d624dcb0e37cbe3", + "tarball": "http://registry.npmjs.org/yaml/-/yaml-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "e925585765208789e7006d673d79e52deee92b54", + "tarball": "http://registry.npmjs.org/yaml/-/yaml-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "1c83dd0b800f2dc867d6d3e4b260907f8ea0a0aa", + "tarball": "http://registry.npmjs.org/yaml/-/yaml-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "b5450e92e76ef36b5dd24e3660091ebaeef3e5c7", + "tarball": "http://registry.npmjs.org/yaml/-/yaml-0.2.3.tgz" + } + }, + "url": "http://registry.npmjs.org/yaml/" + }, + "yaml-config": { + "name": "yaml-config", + "description": "Manage your node.js app configuration based on NODE_ENV, all configuration defined in yaml", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "rjyo", + "email": "jyo.rakuraku@gmail.com" + } + ], + "time": { + "modified": "2011-11-22T16:02:24.353Z", + "created": "2011-06-06T02:18:51.529Z", + "0.0.1": "2011-06-06T02:18:52.762Z", + "0.1.0": "2011-11-22T16:02:24.353Z" + }, + "author": { + "name": "Rakuraku Jyo", + "email": "jyo.rakuraku@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/yaml-config/0.0.1", + "0.1.0": "http://registry.npmjs.org/yaml-config/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "c01e3936ce0f46ed80438d8da5ce407268a075ea", + "tarball": "http://registry.npmjs.org/yaml-config/-/yaml-config-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "51cdbef497f8ef1170a1957ecd57d8aa31504170", + "tarball": "http://registry.npmjs.org/yaml-config/-/yaml-config-0.1.0.tgz" + } + }, + "keywords": [], + "url": "http://registry.npmjs.org/yaml-config/" + }, + "yamlish": { + "name": "yamlish", + "description": "Parser/encoder for the yamlish format", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "isaacs", + "email": "i@izs.me" + } + ], + "time": { + "modified": "2011-10-25T01:15:46.655Z", + "created": "2011-04-07T00:55:43.041Z", + "0.0.1": "2011-04-07T00:55:43.877Z", + "0.0.2": "2011-10-25T01:15:46.655Z" + }, + "author": { + "name": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me/" + }, + "repository": { + "type": "git", + "url": "git://github.com/isaacs/yamlish.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/yamlish/0.0.1", + "0.0.2": "http://registry.npmjs.org/yamlish/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "e7911f2551ef17164b86919debc5c7c51cf226f1", + "tarball": "http://registry.npmjs.org/yamlish/-/yamlish-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "6d24d678003fdbd2ac440d555157a029ffb5d47d", + "tarball": "http://registry.npmjs.org/yamlish/-/yamlish-0.0.2.tgz" + } + }, + "keywords": [ + "yaml", + "yamlish", + "test", + "anything", + "protocol", + "tap" + ], + "url": "http://registry.npmjs.org/yamlish/" + }, + "yamlparser": { + "name": "yamlparser", + "description": "A YAML parser written in javascript. This is the port to CommonJS. Client-side script is available at http://code.google.com/p/javascript-yaml-parser/", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "h4evr", + "email": "costa.h4evr@gmail.com" + } + ], + "time": { + "modified": "2011-11-22T22:31:36.272Z", + "created": "2011-08-08T22:59:35.909Z", + "0.0.1": "2011-08-08T22:59:44.100Z", + "0.0.2": "2011-08-08T23:07:16.437Z" + }, + "author": { + "name": "Diogo Costa", + "email": "costa.h4evr@gmail.com", + "url": "http://diogocosta.pt.tl/" + }, + "repository": { + "type": "git", + "url": "git://github.com/h4evr/commonjs-javascript-yaml-parser.git" + }, + "users": { + "substack": true + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/yamlparser/0.0.1", + "0.0.2": "http://registry.npmjs.org/yamlparser/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "049690a8bb290633f2682545f50033ddbc24b9a8", + "tarball": "http://registry.npmjs.org/yamlparser/-/yamlparser-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "e9f3e05e52762df751e4c522e0b6a43fff9ce1c4", + "tarball": "http://registry.npmjs.org/yamlparser/-/yamlparser-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/yamlparser/" + }, + "yamlverse": { + "name": "yamlverse", + "description": "Read YAML configs with Universe", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "**YAMLverse** brings together [Universe], [YAML.node] and [c-c-config] to make\napplication configuration a snap.\n\nUsage is simple:\n\n var yamlverse = require('yamlverse');\n\n // Set some tags. Do this as early as possible.\n yamlverse.tags = \"development\";\n\n // Load a configuration file.\n var dbConfig = yamlverse('database');\n // Do something with dbConfig.\n\nYAMLverse will look for files in the project's `config` directory. Files should\nhave the `.yml` or `.yaml` extension. Tags are in the same format as expected\nby `c-c-config`.\n\nYAMLverse caches read configuration files. To reload configuration:\n\n yamlverse.clearCache();\n\n // Reload the configuration file.\n dbConfig = yamlverse('database');\n // Reset state or check for changes in dbConfig.\n\n [Universe]: http://github.com/AngryBytes/universe\n [YAML.node]: http://github.com/stephank/yaml.node\n [c-c-config]: http://github.com/AngryBytes/c-c-config\n", + "maintainers": [ + { + "name": "stephank", + "email": "stephan@kochen.nl" + } + ], + "time": { + "modified": "2011-12-07T21:51:30.792Z", + "created": "2011-12-07T21:51:29.491Z", + "0.0.1": "2011-12-07T21:51:30.792Z" + }, + "author": { + "name": "Stéphan Kochen", + "email": "stephan@angrybytes.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/AngryBytes/yamlverse.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/yamlverse/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "2000d462d25e11cea3378a1ffc6d1937bce6bae1", + "tarball": "http://registry.npmjs.org/yamlverse/-/yamlverse-0.0.1.tgz" + } + }, + "keywords": [ + "config", + "configuration" + ], + "url": "http://registry.npmjs.org/yamlverse/" + }, + "yammer-js": { + "name": "yammer-js", + "description": "Simple Yammer API client", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "smurthas", + "email": "simon@murtha-smith.com" + } + ], + "time": { + "modified": "2011-06-09T07:11:15.377Z", + "created": "2011-06-09T07:11:14.754Z", + "0.0.0": "2011-06-09T07:11:15.377Z" + }, + "author": { + "name": "Simon Murtha-Smith", + "email": "simon@murtha-smith.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/smurthas/yammer-js.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/yammer-js/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "715cad6d51210f5b534a6c4b84720f4d547302b8", + "tarball": "http://registry.npmjs.org/yammer-js/-/yammer-js-0.0.0.tgz" + } + }, + "keywords": [ + "yammer" + ], + "url": "http://registry.npmjs.org/yammer-js/" + }, + "yammerterm": { + "name": "yammerterm", + "description": "Yammer CLI tool using node.js", + "dist-tags": { + "latest": "0.0.12" + }, + "maintainers": [ + { + "name": "peterbraden", + "email": "peterbraden@peterbraden.co.uk" + } + ], + "time": { + "modified": "2011-11-22T20:31:14.990Z", + "created": "2011-11-22T18:52:11.997Z", + "0.0.7": "2011-11-22T18:55:32.604Z", + "0.0.8": "2011-11-22T19:16:52.050Z", + "0.0.9": "2011-11-22T19:45:41.573Z", + "0.0.10": "2011-11-22T19:48:19.354Z", + "0.0.11": "2011-11-22T20:29:40.558Z", + "0.0.12": "2011-11-22T20:31:14.990Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/peterbraden/nyam.git" + }, + "versions": { + "0.0.7": "http://registry.npmjs.org/yammerterm/0.0.7", + "0.0.8": "http://registry.npmjs.org/yammerterm/0.0.8", + "0.0.9": "http://registry.npmjs.org/yammerterm/0.0.9", + "0.0.10": "http://registry.npmjs.org/yammerterm/0.0.10", + "0.0.11": "http://registry.npmjs.org/yammerterm/0.0.11", + "0.0.12": "http://registry.npmjs.org/yammerterm/0.0.12" + }, + "dist": { + "0.0.7": { + "shasum": "2f4fed42a32140351f21624d9f7d6d661eaafe62", + "tarball": "http://registry.npmjs.org/yammerterm/-/yammerterm-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "f69b8254b3a14fb26ffe5e0091cf627976272ee4", + "tarball": "http://registry.npmjs.org/yammerterm/-/yammerterm-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "8ba0964002db3be700447ff891b6e2be14058863", + "tarball": "http://registry.npmjs.org/yammerterm/-/yammerterm-0.0.9.tgz" + }, + "0.0.10": { + "shasum": "aa3b60d5e40581f80ab235449d48bed5a1caceda", + "tarball": "http://registry.npmjs.org/yammerterm/-/yammerterm-0.0.10.tgz" + }, + "0.0.11": { + "shasum": "120724ab797103ba5f777e899e7bdfdc718d0c6c", + "tarball": "http://registry.npmjs.org/yammerterm/-/yammerterm-0.0.11.tgz" + }, + "0.0.12": { + "shasum": "c6c071266f6701fd20e86d9bf6efba3d3fb8aad2", + "tarball": "http://registry.npmjs.org/yammerterm/-/yammerterm-0.0.12.tgz" + } + }, + "keywords": [ + "yammer", + "cli", + "github", + "tools" + ], + "url": "http://registry.npmjs.org/yammerterm/" + }, + "yanc": { + "name": "yanc", + "description": "Yet Another Nodester CLI", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "agnoster", + "email": "agnoster@gmail.com" + } + ], + "time": { + "modified": "2011-02-06T21:44:45.889Z", + "created": "2011-02-06T20:30:38.409Z", + "0.0.1": "2011-02-06T20:30:38.938Z", + "0.0.2": "2011-02-06T20:48:04.567Z", + "0.0.3": "2011-02-06T21:44:45.889Z" + }, + "author": { + "name": "Isaac Wolkerstorfer", + "email": "agnoster@gmail.com", + "url": "http://agnoster.net/" + }, + "repository": "git://github.com/agnoster/yanc.git", + "versions": { + "0.0.1": "http://registry.npmjs.org/yanc/0.0.1", + "0.0.2": "http://registry.npmjs.org/yanc/0.0.2", + "0.0.3": "http://registry.npmjs.org/yanc/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "1d9adcf68337e2eedd50659061188c6855178451", + "tarball": "http://registry.npmjs.org/yanc/-/yanc-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "0f3c2c36e847907c494173d534ad64bf19043940", + "tarball": "http://registry.npmjs.org/yanc/-/yanc-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "2fc8e8d573010b3573c3c936f90019e12eef8785", + "tarball": "http://registry.npmjs.org/yanc/-/yanc-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/yanc/" + }, + "yanlibs": { + "name": "yanlibs", + "description": "Yet Another Node.js Libraries", + "dist-tags": { + "latest": "0.1.4" + }, + "maintainers": [ + { + "name": "afelix", + "email": "skryzhanovsky@gmail.com" + } + ], + "time": { + "modified": "2011-08-07T18:03:41.817Z", + "created": "2011-08-07T18:03:40.610Z", + "0.1.4": "2011-08-07T18:03:41.817Z" + }, + "author": { + "name": "Sergey Kryzhanovsky", + "email": "skryzhanovsky@gmail.com", + "url": "http://github.com/afelix" + }, + "repository": { + "type": "git", + "url": "git://github.com/afelix/yanlibs.git" + }, + "versions": { + "0.1.4": "http://registry.npmjs.org/yanlibs/0.1.4" + }, + "dist": { + "0.1.4": { + "shasum": "52bce3999f2d7fef1318580c5874c81609d56499", + "tarball": "http://registry.npmjs.org/yanlibs/-/yanlibs-0.1.4.tgz" + } + }, + "url": "http://registry.npmjs.org/yanlibs/" + }, + "yanop": { + "name": "yanop", + "description": "Yet Another Node Option Parser", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "frodwith", + "email": "frodwith@gmail.com" + } + ], + "time": { + "modified": "2011-10-17T19:35:58.088Z", + "created": "2011-05-03T16:36:11.646Z", + "0.1.0": "2011-05-03T16:36:11.985Z", + "0.1.1": "2011-05-03T20:03:16.483Z", + "0.1.2": "2011-10-17T19:35:58.088Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/yanop/0.1.0", + "0.1.1": "http://registry.npmjs.org/yanop/0.1.1", + "0.1.2": "http://registry.npmjs.org/yanop/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "2d252f36e66c688d784582eb0a3938d09cae1727", + "tarball": "http://registry.npmjs.org/yanop/-/yanop-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "1dc77c1089da07c788a0039c0a55cc2341f42bd8", + "tarball": "http://registry.npmjs.org/yanop/-/yanop-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "4435747e5433b257ac88873cdd692e15a2f24093", + "tarball": "http://registry.npmjs.org/yanop/-/yanop-0.1.2.tgz" + } + }, + "keywords": [ + "option", + "parse", + "commandline", + "command", + "line" + ], + "url": "http://registry.npmjs.org/yanop/" + }, + "yanx": { + "name": "yanx", + "description": "Yet Another Node.JS XML-RPC Client", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "tomas.heran", + "email": "tomas.heran@gmail.com" + } + ], + "versions": { + "0.1.0": "http://registry.npmjs.org/yanx/0.1.0" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/yanx/-/yanx-0.1.0.tgz" + } + }, + "keywords": [ + "xmlrpc" + ], + "url": "http://registry.npmjs.org/yanx/" + }, + "yasession": { + "name": "yasession", + "description": "Yet another session implementation for Node.js", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "jhh", + "email": "jhh@sendanor.com" + } + ], + "time": { + "modified": "2011-08-14T01:10:00.117Z", + "created": "2011-08-13T20:21:03.906Z", + "0.0.1": "2011-08-13T20:21:15.218Z", + "0.0.2": "2011-08-13T20:33:08.687Z", + "0.0.3": "2011-08-14T01:10:00.117Z" + }, + "author": { + "name": "Jaakko-Heikki Heusala", + "email": "jheusala@iki.fi", + "url": "http://www.jhh.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/jheusala/node-yasession.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/yasession/0.0.1", + "0.0.2": "http://registry.npmjs.org/yasession/0.0.2", + "0.0.3": "http://registry.npmjs.org/yasession/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "ff6cbcaaa5fe5925f43ff002f61ab507ba23a359", + "tarball": "http://registry.npmjs.org/yasession/-/yasession-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "647f909ad6d0d3c83177103fd53890f47b6ba0b7", + "tarball": "http://registry.npmjs.org/yasession/-/yasession-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "42d80afe2b984b8055b13fab00d1f9159523bfff", + "tarball": "http://registry.npmjs.org/yasession/-/yasession-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/yasession/" + }, + "ybundler": { + "name": "ybundler", + "description": "YBundler. It is better for you to not know what it is.", + "dist-tags": { + "latest": "0.8.1" + }, + "maintainers": [ + { + "name": "mihaild", + "email": "mihail.dektyarow@gmail.com" + } + ], + "time": { + "modified": "2011-11-15T16:33:03.808Z", + "created": "2011-11-15T16:19:28.330Z", + "0.8.1": "2011-11-15T16:33:03.808Z" + }, + "author": { + "name": "Mikhail Dektyarev", + "email": "mihail.dektyarow@gmail.com", + "url": "https://github.com/mihaild/" + }, + "versions": { + "0.8.1": "http://registry.npmjs.org/ybundler/0.8.1" + }, + "dist": { + "0.8.1": { + "shasum": "c118aaacc96efb15fe07bd248419bb38d3b82d43", + "tarball": "http://registry.npmjs.org/ybundler/-/ybundler-0.8.1.tgz" + } + }, + "url": "http://registry.npmjs.org/ybundler/" + }, + "yelp": { + "name": "yelp", + "description": "Library for interfacing with Yelp's API v2.0.", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "olalonde", + "email": "olalonde@gmail.com" + } + ], + "time": { + "modified": "2011-05-14T23:48:13.587Z", + "created": "2011-05-14T23:48:07.433Z", + "0.1.0": "2011-05-14T23:48:13.587Z" + }, + "author": { + "name": "Olivier Lalonde", + "email": "olalonde@gmail.com", + "url": "http://www.syskall.com/" + }, + "repository": { + "type": "git", + "url": "https://github.com/olalonde/node-yelp.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/yelp/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "58ea3d0ae23246e8533deeb1f2904cf07b22b268", + "tarball": "http://registry.npmjs.org/yelp/-/yelp-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/yelp/" + }, + "yeti": { + "name": "yeti", + "description": "The YUI Easy Testing Interface", + "dist-tags": { + "stable": "0.1.7", + "latest": "0.1.8" + }, + "maintainers": [ + { + "name": "reid", + "email": "me@reidburke.com" + } + ], + "author": { + "name": "Reid Burke", + "email": "me@reidburke.com", + "url": "http://reidburke.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/yui/yeti.git" + }, + "time": { + "modified": "2011-10-20T03:02:32.645Z", + "created": "2011-02-06T01:45:53.098Z", + "0.1.0": "2011-02-06T01:45:53.098Z", + "0.1.0rc3": "2011-02-06T01:45:53.098Z", + "0.1.1": "2011-02-06T01:45:53.098Z", + "0.1.2pre3": "2011-02-06T01:45:53.098Z", + "0.1.2pre4": "2011-02-06T01:45:53.098Z", + "0.1.2": "2011-02-06T01:45:53.098Z", + "0.1.3": "2011-02-06T01:45:53.098Z", + "0.1.4": "2011-02-06T01:45:53.098Z", + "0.1.5": "2011-03-29T23:19:39.546Z", + "0.1.6": "2011-03-30T06:55:09.913Z", + "0.1.7": "2011-03-30T15:38:29.659Z", + "0.1.8": "2011-10-20T03:02:32.645Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/yeti/0.1.0", + "0.1.0rc3": "http://registry.npmjs.org/yeti/0.1.0rc3", + "0.1.1": "http://registry.npmjs.org/yeti/0.1.1", + "0.1.2pre3": "http://registry.npmjs.org/yeti/0.1.2pre3", + "0.1.2pre4": "http://registry.npmjs.org/yeti/0.1.2pre4", + "0.1.2": "http://registry.npmjs.org/yeti/0.1.2", + "0.1.3": "http://registry.npmjs.org/yeti/0.1.3", + "0.1.4": "http://registry.npmjs.org/yeti/0.1.4", + "0.1.5": "http://registry.npmjs.org/yeti/0.1.5", + "0.1.6": "http://registry.npmjs.org/yeti/0.1.6", + "0.1.7": "http://registry.npmjs.org/yeti/0.1.7", + "0.1.8": "http://registry.npmjs.org/yeti/0.1.8" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/yeti/-/yeti-0.1.0.tgz" + }, + "0.1.0rc3": { + "tarball": "http://registry.npmjs.org/yeti/-/yeti-0.1.0rc3.tgz" + }, + "0.1.1": { + "tarball": "http://registry.npmjs.org/yeti/-/yeti-0.1.1.tgz" + }, + "0.1.2pre3": { + "tarball": "http://registry.npmjs.org/yeti/-/yeti-0.1.2pre3.tgz" + }, + "0.1.2pre4": { + "tarball": "http://registry.npmjs.org/yeti/-/yeti-0.1.2pre4.tgz" + }, + "0.1.2": { + "tarball": "http://registry.npmjs.org/yeti/-/yeti-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "767d7c9ab807650cc7119f113b5ff29418952e23", + "tarball": "http://registry.npmjs.org/yeti/-/yeti-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "b5efb1068d6eec77f4a5d42bbf05db63e21758f2", + "tarball": "http://registry.npmjs.org/yeti/-/yeti-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "6da138d9e4effbbe517cb1f2d41cc645f41a255e", + "tarball": "http://registry.npmjs.org/yeti/-/yeti-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "591d10b19e70d7a2f834e4dacfb2a071598569d3", + "tarball": "http://registry.npmjs.org/yeti/-/yeti-0.1.6.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "e06abf1484c45ab23564365866cf11271d01d6be", + "tarball": "http://registry.npmjs.org/yeti/-/yeti-0.1.6-0.4-sunos-5.11.tgz" + } + } + }, + "0.1.7": { + "shasum": "1e63f513491eea7e5f67071fdfd9fd400bd3c62c", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.8-darwin-10.6.0": { + "shasum": "8e55824a381740f98b443b7779fc8160c93a59bd", + "tarball": "http://registry.npmjs.org/yeti/-/yeti-0.1.7-0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.8-darwin-10.6.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/yeti/-/yeti-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "803905584da7bc61f78e645eb2df4ac4e9c97c89", + "tarball": "http://registry.npmjs.org/yeti/-/yeti-0.1.8.tgz" + } + }, + "keywords": [ + "YUI", + "web app", + "YUITest", + "TDD", + "BDD", + "yui3", + "test" + ], + "url": "http://registry.npmjs.org/yeti/" + }, + "yieutil": { + "name": "yieutil", + "description": "Web application framework", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": null, + "maintainers": [ + { + "name": "johnnywengluu", + "email": "johnny.weng.luu@gmail.com" + } + ], + "time": { + "modified": "2011-11-23T22:30:20.880Z", + "created": "2011-11-23T22:30:17.798Z", + "0.0.1": "2011-11-23T22:30:20.880Z" + }, + "author": { + "name": "Yobi" + }, + "repository": { + "type": "git", + "url": "git://github.com/yobi/yobiengine-util.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/yieutil/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "b010cf504f42bdf75495273cc9094c1c7fd0db35", + "tarball": "http://registry.npmjs.org/yieutil/-/yieutil-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/yieutil/" + }, + "yobiutil": { + "name": "yobiutil", + "description": "Utility toolbox to speed up your web application development", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "yobiutil\n========\n\nUtility toolbox to speed up your web application development", + "maintainers": [ + { + "name": "johnnywengluu", + "email": "johnny.weng.luu@gmail.com" + } + ], + "time": { + "modified": "2011-11-30T12:16:24.070Z", + "created": "2011-11-30T12:16:20.667Z", + "0.0.1": "2011-11-30T12:16:24.070Z" + }, + "author": { + "name": "Johnny Weng Luu" + }, + "repository": { + "type": "git", + "url": "git@github.com/johnnywengluu/yobiutil.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/yobiutil/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "e61edb4c057662f0373167382090206834c7ca58", + "tarball": "http://registry.npmjs.org/yobiutil/-/yobiutil-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/yobiutil/" + }, + "YouAreDaChef": { + "name": "YouAreDaChef", + "description": "Coffeescript/Javascript method combinations", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "You Are 'Da Chef\n===\n\nWhat is it?\n---\n\nThis library adds `before`, `after`, `around`, and `guard` method combinations to underscore.js projects, in much the same style as the Common Lisp Object System or Ruby on Rails controllers. With method combinations, you can easily separate concerns.\n\nFor example:\n\n class Wumpus\n roar: ->\n # ...\n run: ->\n #...\n\n class Hunter\n draw: (bow) ->\n # ...\n quiver: ->\n # ...\n run: ->\n #...\n\n hydrate = (object) ->\n # code that hydrates the object from storage\n\n YouAreDaChef(Wumpus, Hunter)\n \n .before 'roar', 'draw', 'run', ->\n hydrate(this)\n \n .after 'roar', 'draw', ->\n @trigger 'action'\n \n .after 'run', ->\n @trigger 'move'\n \nYou can even use regular expressions to specify pointcuts:\n\n class EnterpriseyLegume\n setId: (@id) ->\n setName: (@name) ->\n setDepartment: (@department) ->\n setCostCentre: (@costCentre) ->\n \n YouAreDaChef(EnterpriseyLegume)\n \n .around /set(.*)/, (pointcut, match, value) ->\n performTransaction () ->\n writeToLog \"#{match[1]}: #{value}\"\n pointcut(value)\n \n\nIs it any good?\n---\n\n[Yes][y].\n\n[y]: http://news.ycombinator.com/item?id=3067434\n\nCan I use it with pure Javascript?\n---\n\n[Yes][js].\n\nCan I install it with npm?\n---\n\nYes:\n\n npm install YouAreDaChef\n\nWill it make me smarter?\n---\n\nNo, but it can make you *appear* smarter. Just explain that *guard advice is a monad*:\n \n YouAreDaChef(EnterpriseyLegume)\n \n .guard /write(.*)/, ->\n @user.hasPermission('write', match[1])\n\nGuard advice works like a before combination, with the bonus that if it returns something falsely, the pointcut will not be executed. This behaviour is similar to the way ActiveRecord callbacks work.\n\nYou can also try making a [cryptic][cry] reference to a [computed][comp], non-local [COMEFROM][cf]. \n\n[cf]: http://en.wikipedia.org/wiki/COMEFROM\n[cry]: http://www.reddit.com/r/programming/comments/m4r4t/aspectoriented_programming_in_coffeescript_with_a/c2yfx6w\n[comp]: http://en.wikipedia.org/wiki/Goto#Computed_GOTO\n\nWhere can I read more?\n---\n\n[Separating Concerns in Coffeescript using Aspect-Oriented Programming][blog]\n\n[js]: https://github.com/raganwald/YouAreDaChef/blob/master/lib/YouAreDaChef.js\n[blog]: https://github.com/raganwald/homoiconic/blob/master/2011/11/YouAreDaChef.md#readme", + "maintainers": [ + { + "name": "raganwald", + "email": "raganwald@gmail.com" + } + ], + "time": { + "modified": "2011-11-28T22:23:25.513Z", + "created": "2011-11-28T22:23:25.037Z", + "0.0.1": "2011-11-28T22:23:25.513Z" + }, + "author": { + "name": "Reg Braithwaite", + "email": "raganwald@gmail.com", + "url": "http://reginald.braythwayt.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/raganwald/YouAreDaChef.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/YouAreDaChef/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "3a2d7b604c21bbe665c3a90c046b42da651d5cff", + "tarball": "http://registry.npmjs.org/YouAreDaChef/-/YouAreDaChef-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/YouAreDaChef/" + }, + "youtube": { + "name": "youtube", + "description": "YouTube upload API", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "time": { + "modified": "2011-09-14T21:29:03.708Z", + "created": "2011-09-01T16:52:46.801Z", + "0.0.1": "2011-09-01T16:52:48.105Z", + "0.0.2": "2011-09-01T17:22:31.687Z", + "0.0.3": "2011-09-14T21:29:03.708Z" + }, + "author": { + "name": "TJ Holowaychuk", + "email": "tj@learnboost.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/youtube/0.0.1", + "0.0.2": "http://registry.npmjs.org/youtube/0.0.2", + "0.0.3": "http://registry.npmjs.org/youtube/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "644fc4240624bf5c32327588bc22cc196a6ce059", + "tarball": "http://registry.npmjs.org/youtube/-/youtube-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "777280f796b27d84c7bccd86d384b79ae56b5a08", + "tarball": "http://registry.npmjs.org/youtube/-/youtube-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "c8068939a5b4f6c8ab1206a3cbc1c512390f3d46", + "tarball": "http://registry.npmjs.org/youtube/-/youtube-0.0.3.tgz" + } + }, + "keywords": [ + "youtube", + "upload", + "video" + ], + "url": "http://registry.npmjs.org/youtube/" + }, + "youtube-dl": { + "name": "youtube-dl", + "description": "youtube-dl driver for node", + "dist-tags": { + "latest": "1.2.1" + }, + "maintainers": [ + { + "name": "neat", + "email": "wrapper476@gmail.com" + } + ], + "time": { + "modified": "2011-10-05T11:22:31.383Z", + "created": "2011-04-18T14:08:20.609Z", + "0.1.0": "2011-04-18T14:08:21.125Z", + "0.2.0": "2011-07-18T18:49:32.601Z", + "0.2.1": "2011-07-18T18:55:07.777Z", + "0.2.2": "2011-07-18T19:03:22.077Z", + "0.2.3": "2011-07-18T19:07:20.701Z", + "0.3.0": "2011-07-19T09:08:56.543Z", + "0.3.5": "2011-07-20T10:53:56.717Z", + "0.3.6": "2011-07-21T00:51:17.334Z", + "0.3.7": "2011-07-21T00:55:38.016Z", + "0.3.8": "2011-07-22T20:09:07.543Z", + "1.0.1": "2011-08-01T07:13:48.091Z", + "1.0.2": "2011-08-03T05:51:39.135Z", + "1.0.3": "2011-08-03T10:13:49.182Z", + "1.0.4": "2011-08-05T12:54:24.581Z", + "1.1.0": "2011-08-27T13:24:27.542Z", + "1.1.1": "2011-09-08T22:26:43.585Z", + "1.1.2": "2011-09-15T06:48:10.590Z", + "1.2.0": "2011-09-16T09:03:40.782Z", + "1.2.1": "2011-10-05T11:22:31.383Z" + }, + "author": { + "name": "Roly Fentanes", + "url": "https://github.com/fent" + }, + "repository": { + "type": "git", + "url": "git://github.com/fent/node-youtube-dl.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/youtube-dl/0.1.0", + "0.2.0": "http://registry.npmjs.org/youtube-dl/0.2.0", + "0.2.1": "http://registry.npmjs.org/youtube-dl/0.2.1", + "0.2.2": "http://registry.npmjs.org/youtube-dl/0.2.2", + "0.2.3": "http://registry.npmjs.org/youtube-dl/0.2.3", + "0.3.0": "http://registry.npmjs.org/youtube-dl/0.3.0", + "0.3.5": "http://registry.npmjs.org/youtube-dl/0.3.5", + "0.3.6": "http://registry.npmjs.org/youtube-dl/0.3.6", + "0.3.7": "http://registry.npmjs.org/youtube-dl/0.3.7", + "0.3.8": "http://registry.npmjs.org/youtube-dl/0.3.8", + "1.0.1": "http://registry.npmjs.org/youtube-dl/1.0.1", + "1.0.2": "http://registry.npmjs.org/youtube-dl/1.0.2", + "1.0.3": "http://registry.npmjs.org/youtube-dl/1.0.3", + "1.0.4": "http://registry.npmjs.org/youtube-dl/1.0.4", + "1.1.0": "http://registry.npmjs.org/youtube-dl/1.1.0", + "1.1.1": "http://registry.npmjs.org/youtube-dl/1.1.1", + "1.1.2": "http://registry.npmjs.org/youtube-dl/1.1.2", + "1.2.0": "http://registry.npmjs.org/youtube-dl/1.2.0", + "1.2.1": "http://registry.npmjs.org/youtube-dl/1.2.1" + }, + "dist": { + "0.1.0": { + "shasum": "73a673dd2eeee1ec0559b917b22e948fb23625eb", + "tarball": "http://registry.npmjs.org/youtube-dl/-/youtube-dl-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "3f54402ecd72830a1d62f47a4eeed18189c12f2d", + "tarball": "http://registry.npmjs.org/youtube-dl/-/youtube-dl-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "ede835af52b7578423d5fec146dec7cb39905a82", + "tarball": "http://registry.npmjs.org/youtube-dl/-/youtube-dl-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "cf3c6783e6dc42ff22afc358359a06df9fc50ff5", + "tarball": "http://registry.npmjs.org/youtube-dl/-/youtube-dl-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "da5a9366beb9f5c2982568d40c15d4d48ea0d12f", + "tarball": "http://registry.npmjs.org/youtube-dl/-/youtube-dl-0.2.3.tgz" + }, + "0.3.0": { + "shasum": "b9c5bb8f016607a289705e97680884f4c173e53d", + "tarball": "http://registry.npmjs.org/youtube-dl/-/youtube-dl-0.3.0.tgz" + }, + "0.3.5": { + "shasum": "3f3df81f7814c496f2e326b96fa8980964c3bbd4", + "tarball": "http://registry.npmjs.org/youtube-dl/-/youtube-dl-0.3.5.tgz" + }, + "0.3.6": { + "shasum": "d499cc912454d8cf026a6c71f108116edcf7aaf6", + "tarball": "http://registry.npmjs.org/youtube-dl/-/youtube-dl-0.3.6.tgz" + }, + "0.3.7": { + "shasum": "d8cb75f4cebbdc97bec70227e8db4256b85fec02", + "tarball": "http://registry.npmjs.org/youtube-dl/-/youtube-dl-0.3.7.tgz" + }, + "0.3.8": { + "shasum": "a319cab2c06f52886b9e1d8f8904ecf8ba4890ac", + "tarball": "http://registry.npmjs.org/youtube-dl/-/youtube-dl-0.3.8.tgz" + }, + "1.0.1": { + "shasum": "cdbb0e2d1850988c92a48a7ca157590c682644db", + "tarball": "http://registry.npmjs.org/youtube-dl/-/youtube-dl-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "63c337bd817df37ced99978fa3053de61d48aec2", + "tarball": "http://registry.npmjs.org/youtube-dl/-/youtube-dl-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "ddce03c96f183b8b6ace95a403d08da6ae5a27b9", + "tarball": "http://registry.npmjs.org/youtube-dl/-/youtube-dl-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "a9e26c6235c9e661459f953832a9a26e65186eaf", + "tarball": "http://registry.npmjs.org/youtube-dl/-/youtube-dl-1.0.4.tgz" + }, + "1.1.0": { + "shasum": "732b6186fe75ab145e002ac09345e5c92fd2acfd", + "tarball": "http://registry.npmjs.org/youtube-dl/-/youtube-dl-1.1.0.tgz" + }, + "1.1.1": { + "shasum": "3738f98aa33cb9d55ab601734a089490bc370f4a", + "tarball": "http://registry.npmjs.org/youtube-dl/-/youtube-dl-1.1.1.tgz" + }, + "1.1.2": { + "shasum": "0a8bce16c1e8b616a79d6f435d30887df4c20136", + "tarball": "http://registry.npmjs.org/youtube-dl/-/youtube-dl-1.1.2.tgz" + }, + "1.2.0": { + "shasum": "afaabb0b9a700383cac73dd3eb433f70a73bc13c", + "tarball": "http://registry.npmjs.org/youtube-dl/-/youtube-dl-1.2.0.tgz" + }, + "1.2.1": { + "shasum": "7c03e35f0d5677046984f8ae95a6a173585cb985", + "tarball": "http://registry.npmjs.org/youtube-dl/-/youtube-dl-1.2.1.tgz" + } + }, + "keywords": [ + "youtube", + "download" + ], + "url": "http://registry.npmjs.org/youtube-dl/" + }, + "youtube-js": { + "name": "youtube-js", + "description": "Youtube downloader", + "dist-tags": { + "latest": "0.1.1" + }, + "maintainers": [ + { + "name": "m16a1", + "email": "a741su@gmail.com" + } + ], + "time": { + "modified": "2011-07-22T05:44:24.057Z", + "created": "2011-07-15T08:49:06.093Z", + "0.1.0": "2011-07-15T08:49:06.453Z", + "0.1.1": "2011-07-22T05:44:24.057Z" + }, + "author": { + "name": "m16a1" + }, + "repository": { + "type": "git", + "url": "git://github.com/m16a1/youtube-js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/youtube-js/0.1.0", + "0.1.1": "http://registry.npmjs.org/youtube-js/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "1a07ff1b3d12f0dcb3daecf1350dd4087702d853", + "tarball": "http://registry.npmjs.org/youtube-js/-/youtube-js-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "ec561d9c11a29c4018c773a16ebb4f3a163b1521", + "tarball": "http://registry.npmjs.org/youtube-js/-/youtube-js-0.1.1.tgz" + } + }, + "keywords": [ + "javascript", + "youtube", + "downloader" + ], + "url": "http://registry.npmjs.org/youtube-js/" + }, + "yproject": { + "name": "yproject", + "description": "Command line tool to simplify YUI3-based projects & librairies development", + "dist-tags": { + "latest": "1.3.0" + }, + "maintainers": [ + { + "name": "neyric", + "email": "eric.abouaf@gmail.com" + } + ], + "author": { + "name": "Eric Abouaf", + "email": "eric.abouaf@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/neyric/yproject.git" + }, + "time": { + "modified": "2011-09-23T22:05:55.161Z", + "created": "2011-02-18T17:35:27.709Z", + "1.0.0": "2011-02-18T17:35:27.709Z", + "1.1.0": "2011-02-18T17:35:27.709Z", + "1.2.0": "2011-02-18T17:35:27.709Z", + "1.3.0": "2011-09-23T22:05:55.161Z" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/yproject/1.0.0", + "1.1.0": "http://registry.npmjs.org/yproject/1.1.0", + "1.2.0": "http://registry.npmjs.org/yproject/1.2.0", + "1.3.0": "http://registry.npmjs.org/yproject/1.3.0" + }, + "dist": { + "1.0.0": { + "tarball": "http://registry.npmjs.org/yproject/-/yproject-1.0.0.tgz" + }, + "1.1.0": { + "tarball": "http://registry.npmjs.org/yproject/-/yproject-1.1.0.tgz" + }, + "1.2.0": { + "shasum": "580150993ad5b31d2b5ccf1d77f2af82aa83c52d", + "tarball": "http://registry.npmjs.org/yproject/-/yproject-1.2.0.tgz" + }, + "1.3.0": { + "shasum": "dfaf154bc017603fac1c0a4cd9d9fff3ae30a5f3", + "tarball": "http://registry.npmjs.org/yproject/-/yproject-1.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/yproject/" + }, + "yql": { + "name": "yql", + "description": "A YQL (Yahoo Query Language) client", + "dist-tags": { + "latest": "0.4.6" + }, + "maintainers": [ + { + "name": "drgath", + "email": "drgath@gmail.com" + } + ], + "author": { + "name": "Derek Gathright", + "email": "drg@yahoo-inc.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/derek/node-yql.git" + }, + "time": { + "modified": "2011-10-05T00:58:25.622Z", + "created": "2011-05-07T17:46:49.733Z", + "0.2.0": "2011-05-07T17:46:49.733Z", + "0.3.0": "2011-05-07T17:46:49.733Z", + "0.4.0": "2011-05-07T22:36:50.720Z", + "0.4.1": "2011-05-07T22:56:32.925Z", + "0.4.2": "2011-05-14T04:44:41.576Z", + "0.4.3": "2011-05-19T21:33:25.653Z", + "0.4.4": "2011-05-23T09:37:58.309Z", + "0.4.5": "2011-10-04T20:42:16.831Z", + "0.4.6": "2011-10-05T00:58:25.622Z" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/yql/0.2.0", + "0.3.0": "http://registry.npmjs.org/yql/0.3.0", + "0.4.0": "http://registry.npmjs.org/yql/0.4.0", + "0.4.1": "http://registry.npmjs.org/yql/0.4.1", + "0.4.2": "http://registry.npmjs.org/yql/0.4.2", + "0.4.3": "http://registry.npmjs.org/yql/0.4.3", + "0.4.4": "http://registry.npmjs.org/yql/0.4.4", + "0.4.5": "http://registry.npmjs.org/yql/0.4.5", + "0.4.6": "http://registry.npmjs.org/yql/0.4.6" + }, + "dist": { + "0.2.0": { + "tarball": "http://packages:5984/yql/-/yql-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "a712175a8628a256f532155eb4b553e0d9831345", + "tarball": "http://registry.npmjs.org/yql/-/yql-0.3.0.tgz" + }, + "0.4.0": { + "shasum": "42a86b01b29b266e38a0e86a127da3d01c7d116a", + "tarball": "http://registry.npmjs.org/yql/-/yql-0.4.0.tgz" + }, + "0.4.1": { + "shasum": "151eec9c9bbaf0b8358fceb1a0cc5ce8d5b0b785", + "tarball": "http://registry.npmjs.org/yql/-/yql-0.4.1.tgz" + }, + "0.4.2": { + "shasum": "99b0d02ce97a3f42c21b96a0ed45fe297605bf54", + "tarball": "http://registry.npmjs.org/yql/-/yql-0.4.2.tgz" + }, + "0.4.3": { + "shasum": "dbaeef3074070c37970d6f5a7e18f381584a5d70", + "tarball": "http://registry.npmjs.org/yql/-/yql-0.4.3.tgz" + }, + "0.4.4": { + "shasum": "c14f4e28d0e974a87da5c2e951b117519c0365dd", + "tarball": "http://registry.npmjs.org/yql/-/yql-0.4.4.tgz" + }, + "0.4.5": { + "shasum": "f7aa2bdf6d03a46670434a80c0dab9e631a5b53e", + "tarball": "http://registry.npmjs.org/yql/-/yql-0.4.5.tgz" + }, + "0.4.6": { + "shasum": "2d9aa872278f4e8ce6b437c599208fe713d4ada6", + "tarball": "http://registry.npmjs.org/yql/-/yql-0.4.6.tgz" + } + }, + "keywords": [ + "yql" + ], + "url": "http://registry.npmjs.org/yql/" + }, + "yslow": { + "name": "yslow", + "description": "Commnad line version of YSlow web performance analysis tool from HAR files", + "dist-tags": { + "latest": "3.0.8" + }, + "maintainers": [ + { + "name": "getyslow", + "email": "yperformance-xt@yahoo-inc.com" + } + ], + "time": { + "modified": "2011-12-04T08:44:03.737Z", + "created": "2011-12-04T08:37:59.984Z", + "3.0.8": "2011-12-04T08:44:03.737Z" + }, + "author": { + "name": "Yahoo! Inc.", + "email": "yslow@yahoo-inc.com", + "url": "http://getyslow.com" + }, + "repository": { + "type": "", + "url": "" + }, + "versions": { + "3.0.8": "http://registry.npmjs.org/yslow/3.0.8" + }, + "dist": { + "3.0.8": { + "shasum": "94848f9b036f69d00cf15bb51890230714145a3a", + "tarball": "http://registry.npmjs.org/yslow/-/yslow-3.0.8.tgz" + } + }, + "keywords": [ + "yslow", + "performance", + "har", + "yahoo", + "wpo", + "command", + "line", + "automation" + ], + "url": "http://registry.npmjs.org/yslow/" + }, + "yubico": { + "name": "yubico", + "description": "Node library for validating Yubico One Time Passwords (OTPs) based on the validation protocol version 2.0.", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "Kami", + "email": "tomaz@tomaz.me" + } + ], + "time": { + "modified": "2011-01-02T21:23:53.571Z", + "created": "2011-01-02T03:08:59.788Z", + "0.1.1": "2011-01-02T03:09:00.292Z", + "0.1.2": "2011-01-02T21:16:59.753Z" + }, + "author": { + "name": "Tomaz Muraus", + "email": "tomaz+npm@tomaz.me" + }, + "repository": { + "type": "git", + "url": "https://github.com/Kami/node-yubico.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/yubico/0.1.1", + "0.1.2": "http://registry.npmjs.org/yubico/0.1.2" + }, + "dist": { + "0.1.1": { + "shasum": "19dc7b3131c6740c18f9e1c72ecfb1cdff01d2d8", + "tarball": "http://registry.npmjs.org/yubico/-/yubico-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "2074abcea2434ac0e09d8e67ad4719fd5919ece2", + "tarball": "http://registry.npmjs.org/yubico/-/yubico-0.1.2.tgz" + } + }, + "keywords": [ + "yubikey", + "yubico", + "otp", + "one-time password" + ], + "url": "http://registry.npmjs.org/yubico/" + }, + "yui-cli": { + "name": "yui-cli", + "description": "YUI file combiner", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "davglass", + "email": "davglass@gmail.com" + } + ], + "time": { + "modified": "2011-05-02T19:11:41.846Z", + "created": "2011-01-05T23:16:36.941Z", + "0.0.1": "2011-01-05T23:16:37.178Z", + "0.0.2": "2011-01-21T22:40:39.383Z", + "0.0.3": "2011-05-02T19:11:41.846Z" + }, + "author": { + "name": "Dav Glass", + "email": "davglass@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/davglass/yui-cli.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/yui-cli/0.0.1", + "0.0.2": "http://registry.npmjs.org/yui-cli/0.0.2", + "0.0.3": "http://registry.npmjs.org/yui-cli/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "f63e28aa7d706b91cc89c085da92d70496d265ee", + "tarball": "http://registry.npmjs.org/yui-cli/-/yui-cli-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "5787337ecd0cf0525742c86d7ca8111d36a14e76", + "tarball": "http://registry.npmjs.org/yui-cli/-/yui-cli-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "8793604683a728058834f4e3d8bdd76d143d6ad1", + "tarball": "http://registry.npmjs.org/yui-cli/-/yui-cli-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/yui-cli/" + }, + "yui-compressor": { + "name": "yui-compressor", + "description": "Bindings to the YUI Compressor", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "Tim-Smart", + "email": "tim@fostle.com" + } + ], + "author": { + "name": "Tim-Smart" + }, + "repository": { + "type": "git", + "url": "git://github.com/Tim-Smart/node-yui-compressor.git" + }, + "time": { + "modified": "2011-09-13T23:08:22.460Z", + "created": "2011-01-25T01:15:35.698Z", + "0.1.0": "2011-01-25T01:15:35.698Z", + "0.1.1": "2011-01-25T01:15:35.698Z", + "0.1.2": "2011-03-02T04:47:23.741Z", + "0.1.3": "2011-09-13T23:08:22.460Z" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/yui-compressor/0.1.0", + "0.1.1": "http://registry.npmjs.org/yui-compressor/0.1.1", + "0.1.2": "http://registry.npmjs.org/yui-compressor/0.1.2", + "0.1.3": "http://registry.npmjs.org/yui-compressor/0.1.3" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/yui-compressor/-/yui-compressor-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "345728ffd132cd2f8b7494cbc2cdee14635326ea", + "tarball": "http://registry.npmjs.org/yui-compressor/-/yui-compressor-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "a0f878b119045e265c5bb86e6dd0ed37f186d858", + "tarball": "http://registry.npmjs.org/yui-compressor/-/yui-compressor-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "c459db8733ee678386092a2c2ce97bc6b121d97b", + "tarball": "http://registry.npmjs.org/yui-compressor/-/yui-compressor-0.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/yui-compressor/" + }, + "yui-repl": { + "name": "yui-repl", + "description": "YUI 3 Powered REPL", + "dist-tags": { + "latest": "0.2.1" + }, + "maintainers": [ + { + "name": "davglass", + "email": "davglass@gmail.com" + } + ], + "time": { + "modified": "2011-09-14T13:22:08.825Z", + "created": "2011-02-23T22:42:42.581Z", + "0.0.1": "2011-02-23T22:42:42.819Z", + "0.0.2": "2011-02-24T21:33:52.694Z", + "0.0.3": "2011-02-24T22:48:27.413Z", + "0.0.4": "2011-02-24T23:13:55.236Z", + "0.0.5": "2011-02-25T16:31:05.056Z", + "0.0.6": "2011-03-10T16:12:01.430Z", + "0.0.7": "2011-03-11T15:19:07.054Z", + "0.0.8": "2011-04-07T13:32:32.662Z", + "0.0.9": "2011-05-02T15:57:02.872Z", + "0.1.0": "2011-05-02T19:09:27.814Z", + "0.2.0": "2011-09-07T14:38:12.497Z", + "0.2.1": "2011-09-14T13:22:08.825Z" + }, + "author": { + "name": "Dav Glass", + "email": "davglass@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/davglass/yui-repl.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/yui-repl/0.0.1", + "0.0.2": "http://registry.npmjs.org/yui-repl/0.0.2", + "0.0.3": "http://registry.npmjs.org/yui-repl/0.0.3", + "0.0.4": "http://registry.npmjs.org/yui-repl/0.0.4", + "0.0.5": "http://registry.npmjs.org/yui-repl/0.0.5", + "0.0.6": "http://registry.npmjs.org/yui-repl/0.0.6", + "0.0.7": "http://registry.npmjs.org/yui-repl/0.0.7", + "0.0.8": "http://registry.npmjs.org/yui-repl/0.0.8", + "0.0.9": "http://registry.npmjs.org/yui-repl/0.0.9", + "0.1.0": "http://registry.npmjs.org/yui-repl/0.1.0", + "0.2.0": "http://registry.npmjs.org/yui-repl/0.2.0", + "0.2.1": "http://registry.npmjs.org/yui-repl/0.2.1" + }, + "dist": { + "0.0.1": { + "shasum": "f42e6501d9615087d23d250f1af25b995a8902bf", + "tarball": "http://registry.npmjs.org/yui-repl/-/yui-repl-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "852cf9cd242487805424ff45e7a8fd620c4d9fb9", + "tarball": "http://registry.npmjs.org/yui-repl/-/yui-repl-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "69ef1a3876c6efe43973a0925c981ef8cda31f2e", + "tarball": "http://registry.npmjs.org/yui-repl/-/yui-repl-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "8289ac1d6219188a6521d76556c6b5d9353b7b93", + "tarball": "http://registry.npmjs.org/yui-repl/-/yui-repl-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "84ec2d9c1e50e1661e4cc663b915c74ccb881430", + "tarball": "http://registry.npmjs.org/yui-repl/-/yui-repl-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "dc660795a2dbcb3a57beb91c2a6c08015d44dbea", + "tarball": "http://registry.npmjs.org/yui-repl/-/yui-repl-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "096bc9af423b02802dee2690f1c0e8d01c9dd068", + "tarball": "http://registry.npmjs.org/yui-repl/-/yui-repl-0.0.7.tgz" + }, + "0.0.8": { + "shasum": "c2ba84919bd2cb628dc8479a637e498e27f49561", + "tarball": "http://registry.npmjs.org/yui-repl/-/yui-repl-0.0.8.tgz" + }, + "0.0.9": { + "shasum": "263220b5e5ee2337df1d1509b5f99d3f8f76cb71", + "tarball": "http://registry.npmjs.org/yui-repl/-/yui-repl-0.0.9.tgz" + }, + "0.1.0": { + "shasum": "c7c8daeb801c01bf08b70324263a89b06ac2899e", + "tarball": "http://registry.npmjs.org/yui-repl/-/yui-repl-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "fdafefcd8753341251cb3f1b946bbbfdd0996c66", + "tarball": "http://registry.npmjs.org/yui-repl/-/yui-repl-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "e8d9ca45b393110ddcd558357710a095b63f672d", + "tarball": "http://registry.npmjs.org/yui-repl/-/yui-repl-0.2.1.tgz" + } + }, + "url": "http://registry.npmjs.org/yui-repl/" + }, + "yui3": { + "name": "yui3", + "description": "YUI 3 Library on NodeJS - Full Install - All dependencies", + "dist-tags": { + "latest": "0.7.12" + }, + "maintainers": [ + { + "name": "davglass", + "email": "davglass@gmail.com" + }, + { + "name": "reid", + "email": "me@reidburke.com" + } + ], + "author": { + "name": "Dav Glass", + "email": "davglass@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/davglass/nodejs-yui3.git" + }, + "time": { + "modified": "2011-12-09T20:54:18.666Z", + "created": "2011-01-12T23:00:23.526Z", + "0.5.0": "2011-01-12T23:00:23.526Z", + "0.5.1": "2011-01-12T23:00:23.526Z", + "0.5.10": "2011-01-12T23:00:23.526Z", + "0.5.11": "2011-01-12T23:00:23.526Z", + "0.5.12": "2011-01-12T23:00:23.526Z", + "0.5.13": "2011-01-12T23:00:23.526Z", + "0.5.14": "2011-01-12T23:00:23.526Z", + "0.5.2": "2011-01-12T23:00:23.526Z", + "0.5.3": "2011-01-12T23:00:23.526Z", + "0.5.4": "2011-01-12T23:00:23.526Z", + "0.5.5": "2011-01-12T23:00:23.526Z", + "0.5.6": "2011-01-12T23:00:23.526Z", + "0.5.7": "2011-01-12T23:00:23.526Z", + "0.5.8": "2011-01-12T23:00:23.526Z", + "0.5.9": "2011-01-12T23:00:23.526Z", + "0.5.16": "2011-01-12T23:00:23.526Z", + "0.5.17": "2011-01-12T23:00:23.526Z", + "0.5.18": "2011-01-12T23:00:23.526Z", + "0.5.19": "2011-01-21T22:38:56.222Z", + "0.5.20": "2011-01-29T00:41:35.852Z", + "0.5.21": "2011-01-29T01:02:32.877Z", + "0.5.22": "2011-02-01T16:43:00.667Z", + "0.5.23": "2011-02-11T04:51:51.258Z", + "0.5.24": "2011-02-16T13:47:22.255Z", + "0.5.25": "2011-02-16T14:50:28.500Z", + "0.5.26": "2011-02-17T17:48:56.938Z", + "0.5.27": "2011-02-23T23:01:18.221Z", + "0.5.28": "2011-02-24T21:57:02.293Z", + "0.5.29": "2011-02-25T14:49:22.150Z", + "0.5.30": "2011-03-10T16:57:45.166Z", + "0.5.31": "2011-03-15T02:02:13.365Z", + "0.5.32": "2011-03-21T20:56:40.553Z", + "0.5.33": "2011-03-23T14:47:27.916Z", + "0.5.34": "2011-04-15T19:19:01.749Z", + "0.6.0": "2011-05-02T19:05:56.977Z", + "0.6.1": "2011-05-09T16:17:33.159Z", + "0.6.2": "2011-05-23T16:40:59.458Z", + "0.6.3": "2011-09-06T16:19:04.575Z", + "0.6.4": "2011-09-06T17:01:36.019Z", + "0.6.5": "2011-09-06T17:46:38.108Z", + "0.7.0": "2011-09-07T14:37:51.159Z", + "0.7.1": "2011-09-14T13:58:23.831Z", + "0.7.2": "2011-10-04T17:51:38.617Z", + "0.7.3": "2011-10-12T13:58:18.851Z", + "0.7.4": "2011-10-12T14:41:28.146Z", + "0.7.5": "2011-10-18T14:08:26.496Z", + "0.7.6": "2011-10-19T14:37:52.482Z", + "0.7.7": "2011-10-25T14:02:26.671Z", + "0.7.8": "2011-10-25T19:25:32.641Z", + "0.7.9": "2011-10-28T20:19:10.232Z", + "0.7.10": "2011-11-07T21:17:33.998Z", + "0.7.11": "2011-11-08T23:00:28.341Z", + "0.7.12": "2011-12-09T20:54:18.666Z" + }, + "versions": { + "0.5.0": "http://registry.npmjs.org/yui3/0.5.0", + "0.5.1": "http://registry.npmjs.org/yui3/0.5.1", + "0.5.10": "http://registry.npmjs.org/yui3/0.5.10", + "0.5.11": "http://registry.npmjs.org/yui3/0.5.11", + "0.5.12": "http://registry.npmjs.org/yui3/0.5.12", + "0.5.13": "http://registry.npmjs.org/yui3/0.5.13", + "0.5.14": "http://registry.npmjs.org/yui3/0.5.14", + "0.5.2": "http://registry.npmjs.org/yui3/0.5.2", + "0.5.3": "http://registry.npmjs.org/yui3/0.5.3", + "0.5.4": "http://registry.npmjs.org/yui3/0.5.4", + "0.5.5": "http://registry.npmjs.org/yui3/0.5.5", + "0.5.6": "http://registry.npmjs.org/yui3/0.5.6", + "0.5.7": "http://registry.npmjs.org/yui3/0.5.7", + "0.5.8": "http://registry.npmjs.org/yui3/0.5.8", + "0.5.9": "http://registry.npmjs.org/yui3/0.5.9", + "0.5.16": "http://registry.npmjs.org/yui3/0.5.16", + "0.5.17": "http://registry.npmjs.org/yui3/0.5.17", + "0.5.18": "http://registry.npmjs.org/yui3/0.5.18", + "0.5.19": "http://registry.npmjs.org/yui3/0.5.19", + "0.5.20": "http://registry.npmjs.org/yui3/0.5.20", + "0.5.21": "http://registry.npmjs.org/yui3/0.5.21", + "0.5.22": "http://registry.npmjs.org/yui3/0.5.22", + "0.5.23": "http://registry.npmjs.org/yui3/0.5.23", + "0.5.24": "http://registry.npmjs.org/yui3/0.5.24", + "0.5.25": "http://registry.npmjs.org/yui3/0.5.25", + "0.5.26": "http://registry.npmjs.org/yui3/0.5.26", + "0.5.27": "http://registry.npmjs.org/yui3/0.5.27", + "0.5.28": "http://registry.npmjs.org/yui3/0.5.28", + "0.5.29": "http://registry.npmjs.org/yui3/0.5.29", + "0.5.30": "http://registry.npmjs.org/yui3/0.5.30", + "0.5.31": "http://registry.npmjs.org/yui3/0.5.31", + "0.5.32": "http://registry.npmjs.org/yui3/0.5.32", + "0.5.33": "http://registry.npmjs.org/yui3/0.5.33", + "0.5.34": "http://registry.npmjs.org/yui3/0.5.34", + "0.6.0": "http://registry.npmjs.org/yui3/0.6.0", + "0.6.1": "http://registry.npmjs.org/yui3/0.6.1", + "0.6.2": "http://registry.npmjs.org/yui3/0.6.2", + "0.6.3": "http://registry.npmjs.org/yui3/0.6.3", + "0.6.4": "http://registry.npmjs.org/yui3/0.6.4", + "0.6.5": "http://registry.npmjs.org/yui3/0.6.5", + "0.7.0": "http://registry.npmjs.org/yui3/0.7.0", + "0.7.1": "http://registry.npmjs.org/yui3/0.7.1", + "0.7.2": "http://registry.npmjs.org/yui3/0.7.2", + "0.7.3": "http://registry.npmjs.org/yui3/0.7.3", + "0.7.4": "http://registry.npmjs.org/yui3/0.7.4", + "0.7.5": "http://registry.npmjs.org/yui3/0.7.5", + "0.7.6": "http://registry.npmjs.org/yui3/0.7.6", + "0.7.7": "http://registry.npmjs.org/yui3/0.7.7", + "0.7.8": "http://registry.npmjs.org/yui3/0.7.8", + "0.7.9": "http://registry.npmjs.org/yui3/0.7.9", + "0.7.10": "http://registry.npmjs.org/yui3/0.7.10", + "0.7.11": "http://registry.npmjs.org/yui3/0.7.11", + "0.7.12": "http://registry.npmjs.org/yui3/0.7.12" + }, + "dist": { + "0.5.0": { + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.5.0.tgz" + }, + "0.5.1": { + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.5.1.tgz" + }, + "0.5.10": { + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.5.10.tgz" + }, + "0.5.11": { + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.5.11.tgz" + }, + "0.5.12": { + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.5.12.tgz" + }, + "0.5.13": { + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.5.13.tgz" + }, + "0.5.14": { + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.5.14.tgz" + }, + "0.5.2": { + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.5.2.tgz" + }, + "0.5.3": { + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.5.3.tgz" + }, + "0.5.4": { + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.5.4.tgz" + }, + "0.5.5": { + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.5.5.tgz" + }, + "0.5.6": { + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.5.6.tgz" + }, + "0.5.7": { + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.5.7.tgz" + }, + "0.5.8": { + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.5.8.tgz" + }, + "0.5.9": { + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.5.9.tgz" + }, + "0.5.16": { + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.5.16.tgz" + }, + "0.5.17": { + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.5.17.tgz" + }, + "0.5.18": { + "shasum": "54d64a7e13344c96c261085a9e018124137dd839", + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.5.18.tgz" + }, + "0.5.19": { + "shasum": "f5fc0bb29341959ceb10731991873125159de0b8", + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.5.19.tgz" + }, + "0.5.20": { + "shasum": "25ec23c66631a013f678bb2c3fb590fd101cc983", + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.5.20.tgz" + }, + "0.5.21": { + "shasum": "2a2e65419aacffec7c8b66e57931fd5877ee8c7c", + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.5.21.tgz" + }, + "0.5.22": { + "shasum": "88554593c0c0eb8db68df2ed151922de9b5a4098", + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.5.22.tgz" + }, + "0.5.23": { + "shasum": "e9948e640cac13862568dc71895a8aa74ed8687c", + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.5.23.tgz" + }, + "0.5.24": { + "shasum": "deaf12897df0fbb5db7522bf9fbec519b232440a", + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.5.24.tgz" + }, + "0.5.25": { + "shasum": "8426319b6b8d80f53908b8d5fb63362c9c653728", + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.5.25.tgz" + }, + "0.5.26": { + "shasum": "5433b0d922e355901334928f521d3e9f08aea242", + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.5.26.tgz" + }, + "0.5.27": { + "shasum": "926255b6b765820f6d03473348fd3ba7fad18f35", + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.5.27.tgz" + }, + "0.5.28": { + "shasum": "f123d3315b1856ac10bb45163730df4d812f4260", + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.5.28.tgz" + }, + "0.5.29": { + "shasum": "0c56f62208649cdb9b5753eb7a42cfcb91b197f6", + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.5.29.tgz" + }, + "0.5.30": { + "shasum": "98f02d213b4755bc91893627680f53f95a34037e", + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.5.30.tgz" + }, + "0.5.31": { + "shasum": "cb312f4625457d3487fe5ed84dfa3a3a288ae395", + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.5.31.tgz" + }, + "0.5.32": { + "shasum": "29fceedac050a9957f216831c16904dbdd7c724b", + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.5.32.tgz" + }, + "0.5.33": { + "shasum": "4c3f94f3478df87d0f3ce56a9dc020a102b7704e", + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.5.33.tgz" + }, + "0.5.34": { + "shasum": "38e5918483ae3c99fcbd3842dbc205a81e1a2ffb", + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.5.34.tgz" + }, + "0.6.0": { + "shasum": "ff297cce7c828af299b4e8e674f88b660d742f01", + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "f68ed54dd9327b598dd18dd7362e6a1c9e3ff5c6", + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.6.1.tgz" + }, + "0.6.2": { + "shasum": "f275cca54681f7ed5cbf803cedc73c58f0249cd9", + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.6.2.tgz" + }, + "0.6.3": { + "shasum": "6dce07ca61bdce95e2c8d0bd2b96f432fec92528", + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.6.3.tgz" + }, + "0.6.4": { + "shasum": "aaea37b72afd9b667b44e0245ab70b8918f7cec3", + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.6.4.tgz" + }, + "0.6.5": { + "shasum": "aac0ec7633a9f8e85a238ed5aaad6dd4f0e80e44", + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.6.5.tgz" + }, + "0.7.0": { + "shasum": "c73132dab45a58f284bd6af747f1900c0a2ab4be", + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.7.0.tgz" + }, + "0.7.1": { + "shasum": "44b79a483ea36e7e2866c381c89684ab92f36786", + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.7.1.tgz" + }, + "0.7.2": { + "shasum": "32a03c88fd93f3084eda1e02f1b9d5e1cfa37e83", + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.7.2.tgz" + }, + "0.7.3": { + "shasum": "e5bc79ec4cb65180c7e087ab7ec9b5e9c7a152cc", + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.7.3.tgz" + }, + "0.7.4": { + "shasum": "d0bef6f84597cd6cca936579207079443c60eff2", + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.7.4.tgz" + }, + "0.7.5": { + "shasum": "5fc68de927957a673375521d29e4d4cb6ef8e7ac", + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.7.5.tgz" + }, + "0.7.6": { + "shasum": "4d6432230202f6a5a8e3bb80517201cfc436be35", + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.7.6.tgz" + }, + "0.7.7": { + "shasum": "b0b76e54e470c71282a4f130616839c542c2c7b2", + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.7.7.tgz" + }, + "0.7.8": { + "shasum": "b209280783db2ab6d7bd2817a47839c31c2fc0b9", + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.7.8.tgz" + }, + "0.7.9": { + "shasum": "e9d8b9515421b68675e2b7c8aa90ef161bd400b2", + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.7.9.tgz" + }, + "0.7.10": { + "shasum": "d7936bf3bc1f10d280fc9664cfb1e97f113897be", + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.7.10.tgz" + }, + "0.7.11": { + "shasum": "0433d485d3c7dbd70397c33f7f8fd6deb9715d63", + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.7.11.tgz" + }, + "0.7.12": { + "shasum": "9e164d7e0030a5374c7ab88ab618de2724076e1b", + "tarball": "http://registry.npmjs.org/yui3/-/yui3-0.7.12.tgz" + } + }, + "url": "http://registry.npmjs.org/yui3/" + }, + "yui3-2in3": { + "name": "yui3-2in3", + "description": "YUI 2in3 Source", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "davglass", + "email": "davglass@gmail.com" + } + ], + "author": { + "name": "Dav Glass", + "email": "davglass@gmail.com" + }, + "repository": { + "type": "git", + "url": "http://github.com/yui/2in3.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/yui3-2in3/0.0.1", + "0.0.2": "http://registry.npmjs.org/yui3-2in3/0.0.2", + "0.0.3": "http://registry.npmjs.org/yui3-2in3/0.0.3" + }, + "dist": { + "0.0.1": { + "tarball": "http://packages:5984/yui3-2in3/-/yui3-2in3-0.0.1.tgz" + }, + "0.0.2": { + "tarball": "http://packages:5984/yui3-2in3/-/yui3-2in3-0.0.2.tgz" + }, + "0.0.3": { + "tarball": "http://packages:5984/yui3-2in3/-/yui3-2in3-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/yui3-2in3/" + }, + "yui3-bare": { + "name": "yui3-bare", + "description": "YUI 3 Library on NodeJS - Bare - No Dependencies - Only install if you know what you are doing.", + "dist-tags": { + "latest": "0.7.12" + }, + "maintainers": [ + { + "name": "davglass", + "email": "davglass@gmail.com" + } + ], + "time": { + "modified": "2011-12-09T20:54:10.161Z", + "created": "2011-02-17T17:51:32.430Z", + "0.5.26": "2011-02-17T17:51:32.661Z", + "0.5.27": "2011-02-23T23:01:14.609Z", + "0.5.28": "2011-02-24T21:56:58.639Z", + "0.5.29": "2011-02-25T14:49:14.183Z", + "0.5.30": "2011-03-10T16:57:40.902Z", + "0.5.31": "2011-03-15T02:02:26.908Z", + "0.5.32": "2011-03-21T20:56:34.855Z", + "0.5.33": "2011-03-23T14:47:24.487Z", + "0.5.34": "2011-04-15T19:18:58.049Z", + "0.6.1": "2011-05-09T16:17:24.917Z", + "0.6.2": "2011-05-23T16:40:54.918Z", + "0.6.3": "2011-09-06T16:18:20.782Z", + "0.6.4": "2011-09-06T17:01:11.434Z", + "0.6.5": "2011-09-06T17:46:34.017Z", + "0.7.0": "2011-09-07T14:37:45.619Z", + "0.7.1": "2011-09-14T13:58:20.211Z", + "0.7.2": "2011-10-04T17:51:34.734Z", + "0.7.3": "2011-10-12T13:58:15.204Z", + "0.7.4": "2011-10-12T14:41:24.842Z", + "0.7.5": "2011-10-18T14:08:22.557Z", + "0.7.6": "2011-10-19T14:37:48.273Z", + "0.7.7": "2011-10-25T14:02:22.703Z", + "0.7.8": "2011-10-25T19:25:28.854Z", + "0.7.9": "2011-10-28T20:19:04.496Z", + "0.7.10": "2011-11-07T21:17:27.247Z", + "0.7.11": "2011-11-08T23:00:18.167Z", + "0.7.12": "2011-12-09T20:54:10.161Z" + }, + "author": { + "name": "Dav Glass", + "email": "davglass@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/davglass/nodejs-yui3.git" + }, + "versions": { + "0.5.26": "http://registry.npmjs.org/yui3-bare/0.5.26", + "0.5.27": "http://registry.npmjs.org/yui3-bare/0.5.27", + "0.5.28": "http://registry.npmjs.org/yui3-bare/0.5.28", + "0.5.29": "http://registry.npmjs.org/yui3-bare/0.5.29", + "0.5.30": "http://registry.npmjs.org/yui3-bare/0.5.30", + "0.5.31": "http://registry.npmjs.org/yui3-bare/0.5.31", + "0.5.32": "http://registry.npmjs.org/yui3-bare/0.5.32", + "0.5.33": "http://registry.npmjs.org/yui3-bare/0.5.33", + "0.5.34": "http://registry.npmjs.org/yui3-bare/0.5.34", + "0.6.1": "http://registry.npmjs.org/yui3-bare/0.6.1", + "0.6.2": "http://registry.npmjs.org/yui3-bare/0.6.2", + "0.6.3": "http://registry.npmjs.org/yui3-bare/0.6.3", + "0.6.4": "http://registry.npmjs.org/yui3-bare/0.6.4", + "0.6.5": "http://registry.npmjs.org/yui3-bare/0.6.5", + "0.7.0": "http://registry.npmjs.org/yui3-bare/0.7.0", + "0.7.1": "http://registry.npmjs.org/yui3-bare/0.7.1", + "0.7.2": "http://registry.npmjs.org/yui3-bare/0.7.2", + "0.7.3": "http://registry.npmjs.org/yui3-bare/0.7.3", + "0.7.4": "http://registry.npmjs.org/yui3-bare/0.7.4", + "0.7.5": "http://registry.npmjs.org/yui3-bare/0.7.5", + "0.7.6": "http://registry.npmjs.org/yui3-bare/0.7.6", + "0.7.7": "http://registry.npmjs.org/yui3-bare/0.7.7", + "0.7.8": "http://registry.npmjs.org/yui3-bare/0.7.8", + "0.7.9": "http://registry.npmjs.org/yui3-bare/0.7.9", + "0.7.10": "http://registry.npmjs.org/yui3-bare/0.7.10", + "0.7.11": "http://registry.npmjs.org/yui3-bare/0.7.11", + "0.7.12": "http://registry.npmjs.org/yui3-bare/0.7.12" + }, + "dist": { + "0.5.26": { + "shasum": "9f41a6502f3df32193fbe3b9e3050189f1b83c23", + "tarball": "http://registry.npmjs.org/yui3-bare/-/yui3-bare-0.5.26.tgz" + }, + "0.5.27": { + "shasum": "633efc8552c2d6a36107b43111c9531c5e45b78a", + "tarball": "http://registry.npmjs.org/yui3-bare/-/yui3-bare-0.5.27.tgz" + }, + "0.5.28": { + "shasum": "ae5dc7fbcc65a635bfcf808cccd591ef02caccb5", + "tarball": "http://registry.npmjs.org/yui3-bare/-/yui3-bare-0.5.28.tgz" + }, + "0.5.29": { + "shasum": "5be01d98d85722baaed1f0d226c5814bb6354bd8", + "tarball": "http://registry.npmjs.org/yui3-bare/-/yui3-bare-0.5.29.tgz" + }, + "0.5.30": { + "shasum": "44b0e86c855108eb324313f47e324ef815d1e72d", + "tarball": "http://registry.npmjs.org/yui3-bare/-/yui3-bare-0.5.30.tgz" + }, + "0.5.31": { + "shasum": "745c1962f232e2da5db116180e3195614d24acae", + "tarball": "http://registry.npmjs.org/yui3-bare/-/yui3-bare-0.5.31.tgz" + }, + "0.5.32": { + "shasum": "240e65b6e35be3328a2891637b3dea9b7c1e85f2", + "tarball": "http://registry.npmjs.org/yui3-bare/-/yui3-bare-0.5.32.tgz" + }, + "0.5.33": { + "shasum": "0f54a259c73816acede82e7b0c7705f97a040de1", + "tarball": "http://registry.npmjs.org/yui3-bare/-/yui3-bare-0.5.33.tgz" + }, + "0.5.34": { + "shasum": "8a6205befc6c05258cc1c3e0a79a7928766b3875", + "tarball": "http://registry.npmjs.org/yui3-bare/-/yui3-bare-0.5.34.tgz" + }, + "0.6.1": { + "shasum": "75b61449bb3d4c2fd249f419f465b07be8682ca5", + "tarball": "http://registry.npmjs.org/yui3-bare/-/yui3-bare-0.6.1.tgz" + }, + "0.6.2": { + "shasum": "93955be0c708615eaa73b9d85522f70ac298c513", + "tarball": "http://registry.npmjs.org/yui3-bare/-/yui3-bare-0.6.2.tgz" + }, + "0.6.3": { + "shasum": "930571a117cd85a758d9531515b742c54cf2d321", + "tarball": "http://registry.npmjs.org/yui3-bare/-/yui3-bare-0.6.3.tgz" + }, + "0.6.4": { + "shasum": "d7f30a200179356660ac595b4a6b7b50a99f4b59", + "tarball": "http://registry.npmjs.org/yui3-bare/-/yui3-bare-0.6.4.tgz" + }, + "0.6.5": { + "shasum": "4380db3f478254da650f96684de99a3ca67fb751", + "tarball": "http://registry.npmjs.org/yui3-bare/-/yui3-bare-0.6.5.tgz" + }, + "0.7.0": { + "shasum": "a820c0fb68cba4b7c7297116e0541d623b5af797", + "tarball": "http://registry.npmjs.org/yui3-bare/-/yui3-bare-0.7.0.tgz" + }, + "0.7.1": { + "shasum": "0db890ff146b2bfae80f23a12ecae77da99648d1", + "tarball": "http://registry.npmjs.org/yui3-bare/-/yui3-bare-0.7.1.tgz" + }, + "0.7.2": { + "shasum": "755085b64c672269dc916a65759b9cb707c1aceb", + "tarball": "http://registry.npmjs.org/yui3-bare/-/yui3-bare-0.7.2.tgz" + }, + "0.7.3": { + "shasum": "c989183fb26a0f8d5c75bf0b871f13aeab5173b9", + "tarball": "http://registry.npmjs.org/yui3-bare/-/yui3-bare-0.7.3.tgz" + }, + "0.7.4": { + "shasum": "0bf413bee09ef77e8e5c9259e72ac1055981bafa", + "tarball": "http://registry.npmjs.org/yui3-bare/-/yui3-bare-0.7.4.tgz" + }, + "0.7.5": { + "shasum": "500de9f0ed49aec7f70ee32f6c3260adc0db3781", + "tarball": "http://registry.npmjs.org/yui3-bare/-/yui3-bare-0.7.5.tgz" + }, + "0.7.6": { + "shasum": "6c821270d6c2a969d971a9c507feb583db7b4ba2", + "tarball": "http://registry.npmjs.org/yui3-bare/-/yui3-bare-0.7.6.tgz" + }, + "0.7.7": { + "shasum": "23257dbc9c936249dc788988c3d329b474453a16", + "tarball": "http://registry.npmjs.org/yui3-bare/-/yui3-bare-0.7.7.tgz" + }, + "0.7.8": { + "shasum": "2437e0c1d4a8fc9793e3fc1292822a8c01c23446", + "tarball": "http://registry.npmjs.org/yui3-bare/-/yui3-bare-0.7.8.tgz" + }, + "0.7.9": { + "shasum": "b710a42ccff23abba4cb30afed274ade5635d806", + "tarball": "http://registry.npmjs.org/yui3-bare/-/yui3-bare-0.7.9.tgz" + }, + "0.7.10": { + "shasum": "47d22a8e79e84ced3052f2efe69b2f82b46f542a", + "tarball": "http://registry.npmjs.org/yui3-bare/-/yui3-bare-0.7.10.tgz" + }, + "0.7.11": { + "shasum": "bc9e474e972c721f9480709a2ca850d7b81fa726", + "tarball": "http://registry.npmjs.org/yui3-bare/-/yui3-bare-0.7.11.tgz" + }, + "0.7.12": { + "shasum": "ac7a1b77ce0f22992b7d15cb67612ae5e3f6ed2b", + "tarball": "http://registry.npmjs.org/yui3-bare/-/yui3-bare-0.7.12.tgz" + } + }, + "url": "http://registry.npmjs.org/yui3-bare/" + }, + "yui3-base": { + "name": "yui3-base", + "description": "YUI 3 Library on NodeJS - Base - Includes yui3-core dependency - NO DOM SUPPORT", + "dist-tags": { + "latest": "0.7.12" + }, + "maintainers": [ + { + "name": "davglass", + "email": "davglass@gmail.com" + } + ], + "time": { + "modified": "2011-12-09T20:54:13.855Z", + "created": "2011-02-17T17:48:55.124Z", + "0.5.26": "2011-02-17T17:48:55.406Z", + "0.5.27": "2011-02-23T23:01:16.478Z", + "0.5.28": "2011-02-24T21:57:00.454Z", + "0.5.29": "2011-02-25T14:49:15.672Z", + "0.5.30": "2011-03-10T16:57:43.473Z", + "0.5.31": "2011-03-15T02:02:28.604Z", + "0.5.32": "2011-03-21T20:56:37.534Z", + "0.5.33": "2011-03-23T14:47:26.160Z", + "0.5.34": "2011-04-15T19:18:59.798Z", + "0.6.1": "2011-05-09T16:17:29.473Z", + "0.6.2": "2011-05-23T16:40:57.078Z", + "0.6.3": "2011-09-06T16:18:42.594Z", + "0.6.4": "2011-09-06T17:01:13.936Z", + "0.6.5": "2011-09-06T17:46:35.937Z", + "0.7.0": "2011-09-07T14:37:47.759Z", + "0.7.1": "2011-09-14T13:58:21.942Z", + "0.7.2": "2011-10-04T17:51:36.528Z", + "0.7.3": "2011-10-12T13:58:16.878Z", + "0.7.4": "2011-10-12T14:41:26.393Z", + "0.7.5": "2011-10-18T14:08:24.731Z", + "0.7.6": "2011-10-19T14:37:50.151Z", + "0.7.7": "2011-10-25T14:02:24.536Z", + "0.7.8": "2011-10-25T19:25:30.638Z", + "0.7.9": "2011-10-28T20:19:07.285Z", + "0.7.10": "2011-11-07T21:17:30.692Z", + "0.7.11": "2011-11-08T23:00:24.612Z", + "0.7.12": "2011-12-09T20:54:13.855Z" + }, + "author": { + "name": "Dav Glass", + "email": "davglass@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/davglass/nodejs-yui3.git" + }, + "versions": { + "0.5.26": "http://registry.npmjs.org/yui3-base/0.5.26", + "0.5.27": "http://registry.npmjs.org/yui3-base/0.5.27", + "0.5.28": "http://registry.npmjs.org/yui3-base/0.5.28", + "0.5.29": "http://registry.npmjs.org/yui3-base/0.5.29", + "0.5.30": "http://registry.npmjs.org/yui3-base/0.5.30", + "0.5.31": "http://registry.npmjs.org/yui3-base/0.5.31", + "0.5.32": "http://registry.npmjs.org/yui3-base/0.5.32", + "0.5.33": "http://registry.npmjs.org/yui3-base/0.5.33", + "0.5.34": "http://registry.npmjs.org/yui3-base/0.5.34", + "0.6.1": "http://registry.npmjs.org/yui3-base/0.6.1", + "0.6.2": "http://registry.npmjs.org/yui3-base/0.6.2", + "0.6.3": "http://registry.npmjs.org/yui3-base/0.6.3", + "0.6.4": "http://registry.npmjs.org/yui3-base/0.6.4", + "0.6.5": "http://registry.npmjs.org/yui3-base/0.6.5", + "0.7.0": "http://registry.npmjs.org/yui3-base/0.7.0", + "0.7.1": "http://registry.npmjs.org/yui3-base/0.7.1", + "0.7.2": "http://registry.npmjs.org/yui3-base/0.7.2", + "0.7.3": "http://registry.npmjs.org/yui3-base/0.7.3", + "0.7.4": "http://registry.npmjs.org/yui3-base/0.7.4", + "0.7.5": "http://registry.npmjs.org/yui3-base/0.7.5", + "0.7.6": "http://registry.npmjs.org/yui3-base/0.7.6", + "0.7.7": "http://registry.npmjs.org/yui3-base/0.7.7", + "0.7.8": "http://registry.npmjs.org/yui3-base/0.7.8", + "0.7.9": "http://registry.npmjs.org/yui3-base/0.7.9", + "0.7.10": "http://registry.npmjs.org/yui3-base/0.7.10", + "0.7.11": "http://registry.npmjs.org/yui3-base/0.7.11", + "0.7.12": "http://registry.npmjs.org/yui3-base/0.7.12" + }, + "dist": { + "0.5.26": { + "shasum": "e9cd6a9536ce5b46c782655dea5195cac7bf7989", + "tarball": "http://registry.npmjs.org/yui3-base/-/yui3-base-0.5.26.tgz" + }, + "0.5.27": { + "shasum": "989547f7c8160ccc1e71b6d192f6c38fd36eca98", + "tarball": "http://registry.npmjs.org/yui3-base/-/yui3-base-0.5.27.tgz" + }, + "0.5.28": { + "shasum": "dcb090c71d2fa057ca3f50df93d779e4ab775754", + "tarball": "http://registry.npmjs.org/yui3-base/-/yui3-base-0.5.28.tgz" + }, + "0.5.29": { + "shasum": "bc2dea729c0ee7db699137d72bb593492cb52e3c", + "tarball": "http://registry.npmjs.org/yui3-base/-/yui3-base-0.5.29.tgz" + }, + "0.5.30": { + "shasum": "ec9fb772f43d090e7f779e05f637f7944b700382", + "tarball": "http://registry.npmjs.org/yui3-base/-/yui3-base-0.5.30.tgz" + }, + "0.5.31": { + "shasum": "0cd469ebd9490bceeb8c7bae879c5e2b7fe95845", + "tarball": "http://registry.npmjs.org/yui3-base/-/yui3-base-0.5.31.tgz" + }, + "0.5.32": { + "shasum": "1f99f78a2ebb71ac486419f3c143e9ea59b864f9", + "tarball": "http://registry.npmjs.org/yui3-base/-/yui3-base-0.5.32.tgz" + }, + "0.5.33": { + "shasum": "085d01d4a68ab696469b473095c173b588436c02", + "tarball": "http://registry.npmjs.org/yui3-base/-/yui3-base-0.5.33.tgz" + }, + "0.5.34": { + "shasum": "0e0c3964f5e32f0fa4205a839ef5c8d2e16e1aff", + "tarball": "http://registry.npmjs.org/yui3-base/-/yui3-base-0.5.34.tgz" + }, + "0.6.1": { + "shasum": "0400f3d833fb2c3e7be50be6fa5baf82e5638fce", + "tarball": "http://registry.npmjs.org/yui3-base/-/yui3-base-0.6.1.tgz" + }, + "0.6.2": { + "shasum": "acb59394e948b9466b205aadf8adf32afece8cd6", + "tarball": "http://registry.npmjs.org/yui3-base/-/yui3-base-0.6.2.tgz" + }, + "0.6.3": { + "shasum": "2635f70f2a748b8bf583a2c6906d3a2d68b537d9", + "tarball": "http://registry.npmjs.org/yui3-base/-/yui3-base-0.6.3.tgz" + }, + "0.6.4": { + "shasum": "7c32c75910e6445e5cf3bd0312927d249c8cf08d", + "tarball": "http://registry.npmjs.org/yui3-base/-/yui3-base-0.6.4.tgz" + }, + "0.6.5": { + "shasum": "3738df4cc2d0e35356a354aa8b3699c02d9509ba", + "tarball": "http://registry.npmjs.org/yui3-base/-/yui3-base-0.6.5.tgz" + }, + "0.7.0": { + "shasum": "5fcf6e1477edc5e6959ff19f25f41a167c327e87", + "tarball": "http://registry.npmjs.org/yui3-base/-/yui3-base-0.7.0.tgz" + }, + "0.7.1": { + "shasum": "f233ddb888ffc35c0f88042b20ae85949a5e8e54", + "tarball": "http://registry.npmjs.org/yui3-base/-/yui3-base-0.7.1.tgz" + }, + "0.7.2": { + "shasum": "a52e769e443f3280c278eb39dbc60810effa2c98", + "tarball": "http://registry.npmjs.org/yui3-base/-/yui3-base-0.7.2.tgz" + }, + "0.7.3": { + "shasum": "c5c8901f0e839453761810d1e02e2a37a8785f3d", + "tarball": "http://registry.npmjs.org/yui3-base/-/yui3-base-0.7.3.tgz" + }, + "0.7.4": { + "shasum": "16eb60b30c05edcef46f54bbc87a9fc01118b40e", + "tarball": "http://registry.npmjs.org/yui3-base/-/yui3-base-0.7.4.tgz" + }, + "0.7.5": { + "shasum": "55c56c1cb8cd496693d9b87375e7371efeb82003", + "tarball": "http://registry.npmjs.org/yui3-base/-/yui3-base-0.7.5.tgz" + }, + "0.7.6": { + "shasum": "9e0b1b6ca7eec52c2f3b1dfeaddb4687d947d407", + "tarball": "http://registry.npmjs.org/yui3-base/-/yui3-base-0.7.6.tgz" + }, + "0.7.7": { + "shasum": "c7321d88320f0e101814219c31ec11329944cd80", + "tarball": "http://registry.npmjs.org/yui3-base/-/yui3-base-0.7.7.tgz" + }, + "0.7.8": { + "shasum": "6ce5fe301fa5935769979c1e1913ede717d6fa15", + "tarball": "http://registry.npmjs.org/yui3-base/-/yui3-base-0.7.8.tgz" + }, + "0.7.9": { + "shasum": "0cf3fea802872285dfa71ae26ecd5e39df549a9c", + "tarball": "http://registry.npmjs.org/yui3-base/-/yui3-base-0.7.9.tgz" + }, + "0.7.10": { + "shasum": "d276f957683aee6e3506a5f379cea0ff12cec239", + "tarball": "http://registry.npmjs.org/yui3-base/-/yui3-base-0.7.10.tgz" + }, + "0.7.11": { + "shasum": "e8493e65881f4f5d0829e8f9d3ca862b045c46e3", + "tarball": "http://registry.npmjs.org/yui3-base/-/yui3-base-0.7.11.tgz" + }, + "0.7.12": { + "shasum": "63b78b9c769a732e174d4a2285777f9d5a55e7f2", + "tarball": "http://registry.npmjs.org/yui3-base/-/yui3-base-0.7.12.tgz" + } + }, + "url": "http://registry.npmjs.org/yui3-base/" + }, + "yui3-core": { + "name": "yui3-core", + "description": "YUI 3 Source", + "dist-tags": { + "latest": "3.4.1" + }, + "maintainers": [ + { + "name": "davglass", + "email": "davglass@gmail.com" + } + ], + "time": { + "modified": "2011-12-09T22:09:29.295Z", + "created": "2011-01-29T00:22:11.932Z", + "3.2.0": "2011-12-07T22:05:30.092Z", + "3.3.0": "2011-12-07T22:05:30.092Z", + "3.4.0": "2011-12-07T22:05:30.092Z", + "3.4.1": "2011-12-09T22:09:29.295Z" + }, + "author": { + "name": "Dav Glass", + "email": "davglass@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/yui/yui3.git" + }, + "versions": { + "3.2.0": "http://registry.npmjs.org/yui3-core/3.2.0", + "3.3.0": "http://registry.npmjs.org/yui3-core/3.3.0", + "3.4.0": "http://registry.npmjs.org/yui3-core/3.4.0", + "3.4.1": "http://registry.npmjs.org/yui3-core/3.4.1" + }, + "dist": { + "3.2.0": { + "shasum": "eb09c8396901bc19e2b4f90dd2d7a597e8c1a21c", + "tarball": "http://registry.npmjs.org/yui3-core/-/yui3-core-3.2.0.tgz" + }, + "3.3.0": { + "shasum": "9b5136e0fc827b164319183848a479552ed88a0d", + "tarball": "http://registry.npmjs.org/yui3-core/-/yui3-core-3.3.0.tgz" + }, + "3.4.0": { + "shasum": "ed6a32acc3ef9090b31c1947fb0d3d6139893e83", + "tarball": "http://registry.npmjs.org/yui3-core/-/yui3-core-3.4.0.tgz" + }, + "3.4.1": { + "shasum": "4038118a6bbcb1795d21d24766c6dfdbc3e5c3f9", + "tarball": "http://registry.npmjs.org/yui3-core/-/yui3-core-3.4.1.tgz" + } + }, + "url": "http://registry.npmjs.org/yui3-core/" + }, + "yui3-gallery": { + "name": "yui3-gallery", + "description": "YUI 3 Gallery", + "dist-tags": { + "latest": "2011.01.12" + }, + "maintainers": [ + { + "name": "davglass", + "email": "davglass@gmail.com" + } + ], + "author": { + "name": "Dav Glass", + "email": "davglass@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/yui/yui3-gallery.git" + }, + "time": { + "modified": "2011-08-08T16:38:49.782Z", + "created": "2011-01-12T23:35:44.246Z", + "0.0.1": "2011-01-12T23:35:44.246Z", + "2010.09.15": "2011-01-12T23:35:44.246Z", + "2010.09.22": "2011-01-12T23:35:44.246Z", + "2010.09.29": "2011-01-12T23:35:44.246Z", + "2011.12.01": "2011-01-12T23:35:44.246Z", + "2011.01.12": "2011-01-12T23:40:33.556Z" + }, + "versions": { + "2011.01.12": "http://registry.npmjs.org/yui3-gallery/2011.01.12", + "2010.09.29": "http://registry.npmjs.org/yui3-gallery/2010.09.29", + "2010.09.15": "http://registry.npmjs.org/yui3-gallery/2010.09.15" + }, + "dist": { + "2011.01.12": { + "shasum": "2f802e778f3666e0199e4ed8efcecf953848ea81", + "tarball": "http://registry.npmjs.org/yui3-gallery/-/yui3-gallery-2011.01.12.tgz" + }, + "2010.09.29": { + "shasum": "b478e68faeea63863d1a3b0b712f09d3ca0370eb", + "tarball": "http://registry.npmjs.org/yui3-gallery/-/yui3-gallery-2010.09.29.tgz" + }, + "2010.09.15": { + "shasum": "114a4b3f8f1a87b65d1a975bfe033a25202b56fd", + "tarball": "http://registry.npmjs.org/yui3-gallery/-/yui3-gallery-2010.09.15.tgz" + } + }, + "url": "http://registry.npmjs.org/yui3-gallery/" + }, + "yui3-mocha": { + "name": "yui3-mocha", + "description": "YUI CDN build for Mocha RLS", + "dist-tags": { + "latest": "3.3.0r0" + }, + "maintainers": [ + { + "name": "reid", + "email": "me@reidburke.com" + } + ], + "time": { + "modified": "2011-02-16T04:06:48.034Z", + "created": "2011-02-16T04:06:47.670Z", + "3.3.0r0": "2011-02-16T04:06:48.034Z" + }, + "author": { + "name": "Reid Burke", + "email": "rburke@yuilibrary.com", + "url": "on behalf of YUI Team" + }, + "repository": { + "type": "git", + "url": "http://github.com/yui/yui3.git" + }, + "versions": { + "3.3.0r0": "http://registry.npmjs.org/yui3-mocha/3.3.0r0" + }, + "dist": { + "3.3.0r0": { + "shasum": "03a02dbc9d05ffa7e6ae3a4741eb22f779d86430", + "tarball": "http://registry.npmjs.org/yui3-mocha/-/yui3-mocha-3.3.0r0.tgz" + } + }, + "url": "http://registry.npmjs.org/yui3-mocha/" + }, + "yuitest": { + "name": "yuitest", + "description": "YUI Test Library on NodeJS", + "dist-tags": { + "latest": "0.7.2" + }, + "maintainers": [ + { + "name": "nzakas", + "email": "nzakas@yahoo-inc.com" + } + ], + "time": { + "modified": "2011-12-08T00:24:19.936Z", + "created": "2011-02-14T16:17:10.364Z", + "0.6.0": "2011-12-07T23:37:54.309Z", + "0.6.1": "2011-12-07T23:37:54.309Z", + "0.6.2": "2011-12-07T23:37:54.309Z", + "0.6.3": "2011-12-07T23:37:54.309Z", + "0.6.6": "2011-12-07T23:37:54.309Z", + "0.6.7": "2011-12-07T23:37:54.309Z", + "0.6.8": "2011-12-07T23:37:54.309Z", + "0.6.9": "2011-12-07T23:37:54.309Z", + "0.7.0": "2011-11-25T23:55:23.872Z", + "0.7.1": "2011-12-07T23:37:54.309Z", + "0.7.2": "2011-12-08T00:24:19.936Z" + }, + "author": { + "name": "Nicholas C. Zakas", + "email": "nzakas@yahoo-inc.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/yui/yuitest.git" + }, + "versions": { + "0.6.0": "http://registry.npmjs.org/yuitest/0.6.0", + "0.6.1": "http://registry.npmjs.org/yuitest/0.6.1", + "0.6.2": "http://registry.npmjs.org/yuitest/0.6.2", + "0.6.3": "http://registry.npmjs.org/yuitest/0.6.3", + "0.6.6": "http://registry.npmjs.org/yuitest/0.6.6", + "0.6.7": "http://registry.npmjs.org/yuitest/0.6.7", + "0.6.8": "http://registry.npmjs.org/yuitest/0.6.8", + "0.6.9": "http://registry.npmjs.org/yuitest/0.6.9", + "0.7.0": "http://registry.npmjs.org/yuitest/0.7.0", + "0.7.1": "http://registry.npmjs.org/yuitest/0.7.1", + "0.7.2": "http://registry.npmjs.org/yuitest/0.7.2" + }, + "dist": { + "0.6.0": { + "shasum": "22bc01851716e50d7f4e04eb3af170976a3cc637", + "tarball": "http://registry.npmjs.org/yuitest/-/yuitest-0.6.0.tgz" + }, + "0.6.1": { + "shasum": "3a1b805c459c03e28553c2e62e0cfed224288aeb", + "tarball": "http://registry.npmjs.org/yuitest/-/yuitest-0.6.1.tgz" + }, + "0.6.2": { + "shasum": "0392bdce771ec105b11374a46adda1586f4fa7e8", + "tarball": "http://registry.npmjs.org/yuitest/-/yuitest-0.6.2.tgz" + }, + "0.6.3": { + "shasum": "3d2c705fdad1e42558c51413ab11240000c60165", + "tarball": "http://registry.npmjs.org/yuitest/-/yuitest-0.6.3.tgz" + }, + "0.6.6": { + "shasum": "5b3a544aa8660425d044493449281bd28f423c90", + "tarball": "http://registry.npmjs.org/yuitest/-/yuitest-0.6.6.tgz" + }, + "0.6.7": { + "shasum": "11ef926d9db3391709f9d26a1f150fd308088e38", + "tarball": "http://registry.npmjs.org/yuitest/-/yuitest-0.6.7.tgz" + }, + "0.6.8": { + "shasum": "e2bb6954211a8793a4b3b996687d3e1781a168eb", + "tarball": "http://registry.npmjs.org/yuitest/-/yuitest-0.6.8.tgz" + }, + "0.6.9": { + "shasum": "c99ad2decb09e3bd1bb7c661803d63d5fde36ad0", + "tarball": "http://registry.npmjs.org/yuitest/-/yuitest-0.6.9.tgz" + }, + "0.7.0": { + "shasum": "98cf9081f7bfb6aa07e1aa596489583e0cc3d38d", + "tarball": "http://registry.npmjs.org/yuitest/-/yuitest-0.7.0.tgz" + }, + "0.7.1": { + "shasum": "a72cba5a109cae218b814f8c1cbd219cc290b65e", + "tarball": "http://registry.npmjs.org/yuitest/-/yuitest-0.7.1.tgz" + }, + "0.7.2": { + "shasum": "2945663f4ac020a0c2a592f0a29f9921f2922abe", + "tarball": "http://registry.npmjs.org/yuitest/-/yuitest-0.7.2.tgz" + } + }, + "url": "http://registry.npmjs.org/yuitest/" + }, + "zalgo": { + "name": "zalgo", + "description": "z̼̜̟̹̳̣͈͓͉̘̗̤ͣ̾ͫ̇ͬ̍̉ạ͚̲̺̟͕̗͎̰̤͎͕̠̤͎̌͗̄̏l̡͉̹̥͍̤̜̤̗̙̞̤͚͙̟̰̥̯̯g̸̻̫̖̝͉̤͇̺̱̙̗͉̪͍̳̲͙̳o̢̠͈̹͓̩̺̺̫̻̹̹̳̠͍͈̤̬͇ ̨͚̭̩̳͇̦̺͙̫̅ͤ̇ͩͯ͆ͤͅͅu̪̪̦͈͍̜̤̟̖̖̖͖̬̼͇̭̳̥̤p͕̣̤̭̼͎̩̫̥͎̻ͦ̑̇ͧͨ͗̈̈ ̶̬̘̰̝͕̯̻̠͚̖̤̗̜̖̘̳̗͕i̛̲͍͉̞̬̘̰̮̱͓̦͕̙̰̣̪͕̲ņ̗̞̣̗̜̮̹̝̙̝̺͉̹͉̥̤͙̥ ͇͍̺̟̰̹͚͓͍̞̭̯̥̺͈̦͒ͣ̎t͔̻̹̼͈̹̰̺̳͖͖̱̫̣̪̪̱̤̤ḫ͍̘̪̲͕̫͉̗̙̫͉̳̯͙̭̟͈̜ị̢̪̘̻̩̬͙̖̫͕̬̩̺̰͚̹͚̥s̹̭̗͍̳͎̆͑̍ͨ̍ͯ̾̌̒ͮͫͤ̽ ̞̜͕͙̜̱̜̠͓̲̪̼̞͔̰̖̗̫͚b̶̼̝͙̦̬̠͓̭̰͙͉̦̹͖̬̝̯̰i̛̯̩̟̻͕͈͉̻͈̻̪̟̥̥͓̼̘̙t̘͎̗̘̤͔͎͈̻͈͙̞͇̱̝͕̬̼̪c̛̪͖͈̝̣̟̺̗̩͓͍̠̱̯̩̻͓ͯh͚̭͇̦̱̝͉̻͍̬̫̻̙̞̜͎̣̗̺", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "ecto", + "email": "diffference@gmail.com" + } + ], + "time": { + "modified": "2011-10-22T04:11:19.617Z", + "created": "2011-10-22T03:59:39.313Z", + "0.0.0": "2011-10-22T03:59:39.528Z", + "0.0.1": "2011-10-22T04:03:44.958Z" + }, + "author": { + "name": "Cam Pedersen", + "email": "diffference@gmail.com", + "url": "http://campedersen.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/ecto/zalgo.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/zalgo/0.0.0", + "0.0.1": "http://registry.npmjs.org/zalgo/0.0.1" + }, + "dist": { + "0.0.0": { + "shasum": "d4605a351fc077aa3754debfd27b7a9f0fa9e3b0", + "tarball": "http://registry.npmjs.org/zalgo/-/zalgo-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "3fb58b5644f6613142f0b0c9e9bc4b7e28c23aeb", + "tarball": "http://registry.npmjs.org/zalgo/-/zalgo-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/zalgo/" + }, + "zap": { + "name": "zap", + "description": "A tiny test runner", + "dist-tags": { + "latest": "0.2.4-1" + }, + "maintainers": [ + { + "name": "nornagon", + "email": "nornagon@nornagon.net" + } + ], + "time": { + "modified": "2011-09-13T04:23:31.613Z", + "created": "2011-03-03T03:13:55.384Z", + "0.1.0": "2011-03-03T03:13:56.720Z", + "0.2.0": "2011-03-03T05:35:01.328Z", + "0.2.1": "2011-03-09T00:19:52.333Z", + "0.2.2": "2011-04-04T11:50:35.803Z", + "0.2.3": "2011-06-01T04:33:08.362Z", + "0.2.4": "2011-09-13T02:12:52.660Z", + "0.2.4-1": "2011-09-13T04:23:31.613Z" + }, + "author": { + "name": "Jeremy Apthorp", + "email": "nornagon@nornagon.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/nornagon/node-zap.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/zap/0.1.0", + "0.2.0": "http://registry.npmjs.org/zap/0.2.0", + "0.2.1": "http://registry.npmjs.org/zap/0.2.1", + "0.2.2": "http://registry.npmjs.org/zap/0.2.2", + "0.2.3": "http://registry.npmjs.org/zap/0.2.3", + "0.2.4": "http://registry.npmjs.org/zap/0.2.4", + "0.2.4-1": "http://registry.npmjs.org/zap/0.2.4-1" + }, + "dist": { + "0.1.0": { + "tarball": "http://registry.npmjs.org/zap/-/zap@0.1.0.tgz" + }, + "0.2.0": { + "tarball": "http://registry.npmjs.org/zap/-/zap@0.2.0.tgz" + }, + "0.2.1": { + "tarball": "http://registry.npmjs.org/zap/-/zap@0.2.1.tgz" + }, + "0.2.2": { + "tarball": "http://registry.npmjs.org/zap/-/zap@0.2.2.tgz" + }, + "0.2.3": { + "shasum": "86b4725055e4e55ebfd79fe47da0874bbf3c7bb2", + "tarball": "http://registry.npmjs.org/zap/-/zap-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "4d7b85c5784bee3ffb6bcb289d0ac72d4b07965b", + "tarball": "http://registry.npmjs.org/zap/-/zap-0.2.4.tgz" + }, + "0.2.4-1": { + "shasum": "a86ccee24f3415c0b0ce0bc69412bda3c10b4fab", + "tarball": "http://registry.npmjs.org/zap/-/zap-0.2.4-1.tgz" + } + }, + "keywords": [ + "test", + "testing" + ], + "url": "http://registry.npmjs.org/zap/" + }, + "zappa": { + "name": "zappa", + "description": "CoffeeScript minimalist interface to express, socket.io and others", + "dist-tags": { + "latest": "0.3.3", + "stable": "0.2.1" + }, + "maintainers": [ + { + "name": "mauricemach", + "email": "maurice@bitbending.com" + } + ], + "author": { + "name": "Maurice Machado", + "email": "maurice@bitbending.com" + }, + "time": { + "modified": "2011-11-23T00:16:10.634Z", + "created": "2011-01-05T17:12:07.746Z", + "0.1.0": "2011-01-05T17:12:07.746Z", + "0.1.1": "2011-01-05T17:12:07.746Z", + "0.1.2": "2011-01-05T17:12:07.746Z", + "0.1.3": "2011-01-05T17:12:07.746Z", + "0.1.4": "2011-01-05T17:12:07.746Z", + "0.1.5": "2011-05-07T00:37:24.562Z", + "0.2.0beta": "2011-08-02T20:36:13.552Z", + "0.2.0": "2011-09-08T15:39:04.290Z", + "0.2.1": "2011-09-22T16:53:48.392Z", + "0.3.0": "2011-09-30T00:01:53.009Z", + "0.3.1": "2011-10-06T19:18:12.714Z", + "0.3.2": "2011-11-22T23:53:35.691Z", + "0.3.3": "2011-11-23T00:16:10.634Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/mauricemach/zappa.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/zappa/0.1.0", + "0.1.1": "http://registry.npmjs.org/zappa/0.1.1", + "0.1.2": "http://registry.npmjs.org/zappa/0.1.2", + "0.1.3": "http://registry.npmjs.org/zappa/0.1.3", + "0.1.4": "http://registry.npmjs.org/zappa/0.1.4", + "0.1.5": "http://registry.npmjs.org/zappa/0.1.5", + "0.2.0beta": "http://registry.npmjs.org/zappa/0.2.0beta", + "0.2.0": "http://registry.npmjs.org/zappa/0.2.0", + "0.2.1": "http://registry.npmjs.org/zappa/0.2.1", + "0.3.0": "http://registry.npmjs.org/zappa/0.3.0", + "0.3.1": "http://registry.npmjs.org/zappa/0.3.1", + "0.3.2": "http://registry.npmjs.org/zappa/0.3.2", + "0.3.3": "http://registry.npmjs.org/zappa/0.3.3" + }, + "dist": { + "0.1.0": { + "tarball": "http://packages:5984/zappa/-/zappa-0.1.0.tgz" + }, + "0.1.1": { + "tarball": "http://packages:5984/zappa/-/zappa-0.1.1.tgz" + }, + "0.1.2": { + "tarball": "http://registry.npmjs.org/zappa/-/zappa-0.1.2.tgz" + }, + "0.1.3": { + "tarball": "http://registry.npmjs.org/zappa/-/zappa-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "656e75b6b489e5714269a05338c9c4cfbb413550", + "tarball": "http://registry.npmjs.org/zappa/-/zappa-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "655574c7e4ba5b58fdb4c81899fd72d28e48e458", + "tarball": "http://registry.npmjs.org/zappa/-/zappa-0.1.5.tgz" + }, + "0.2.0beta": { + "shasum": "64b3498757a2e49ecde3d1e9b0b561bb0c7c3f19", + "tarball": "http://registry.npmjs.org/zappa/-/zappa-0.2.0beta.tgz" + }, + "0.2.0": { + "shasum": "a60a99a6bf1f1375b8d11f897d68e0929688f9a3", + "tarball": "http://registry.npmjs.org/zappa/-/zappa-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "300c4988c3032281582bd08a072698328c14e664", + "tarball": "http://registry.npmjs.org/zappa/-/zappa-0.2.1.tgz" + }, + "0.3.0": { + "shasum": "8f7fb50d5364d6d972ae09973c6fcae27a62090e", + "tarball": "http://registry.npmjs.org/zappa/-/zappa-0.3.0.tgz" + }, + "0.3.1": { + "shasum": "e134ed704c94500660670a526dd7b9315188c9af", + "tarball": "http://registry.npmjs.org/zappa/-/zappa-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "f537edad0f682c8570eb2d884e8c0ba57214b9ea", + "tarball": "http://registry.npmjs.org/zappa/-/zappa-0.3.2.tgz" + }, + "0.3.3": { + "shasum": "2658252ee3d231fd6091dde12beeb3f848145cdc", + "tarball": "http://registry.npmjs.org/zappa/-/zappa-0.3.3.tgz" + } + }, + "keywords": [ + "framework", + "websockets", + "coffeescript", + "express", + "socket.io", + "sammy", + "sinatra", + "dsl" + ], + "url": "http://registry.npmjs.org/zappa/" + }, + "zappa-canvas": { + "name": "zappa-canvas", + "description": "A shared whiteboard and chat application using Zappa", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "shimaore", + "email": "stephane@shimaore.net" + } + ], + "time": { + "modified": "2011-10-19T22:55:44.065Z", + "created": "2011-10-19T22:55:42.318Z", + "0.0.2": "2011-10-19T22:55:44.065Z" + }, + "repository": { + "type": "git", + "url": "git://stephane.shimaore.net/git/zappa-canvas.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/zappa-canvas/0.0.2" + }, + "dist": { + "0.0.2": { + "shasum": "5465dd02b84db570ed41df47d800c7b91108bf1a", + "tarball": "http://registry.npmjs.org/zappa-canvas/-/zappa-canvas-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/zappa-canvas/" + }, + "zen": { + "name": "zen", + "description": "is a simple, safe, basic, fast, general purpose module engine", + "dist-tags": { + "latest": "0.1.3" + }, + "maintainers": [ + { + "name": "pblabs", + "email": "labs@pianobit.com" + } + ], + "time": { + "modified": "2011-06-21T22:24:19.633Z", + "created": "2011-06-10T20:47:37.038Z", + "0.1.1": "2011-06-10T20:52:10.861Z", + "0.1.2": "2011-06-13T23:00:58.838Z", + "0.1.3": "2011-06-21T22:24:19.633Z" + }, + "author": { + "name": "pibi", + "email": "pibi@pianobit.com", + "url": "http://pianobit.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/pblabs/zen.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/zen/0.1.1", + "0.1.2": "http://registry.npmjs.org/zen/0.1.2", + "0.1.3": "http://registry.npmjs.org/zen/0.1.3" + }, + "dist": { + "0.1.1": { + "shasum": "689d0106f5282b70022c062b388ae340dec45998", + "tarball": "http://registry.npmjs.org/zen/-/zen-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "270bc1d9b5e799897c9c9bf73df435b583b91764", + "tarball": "http://registry.npmjs.org/zen/-/zen-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "10f7a50c0cdb6b68509fc21b212c438bcfcf8767", + "tarball": "http://registry.npmjs.org/zen/-/zen-0.1.3.tgz" + } + }, + "keywords": [ + "engine", + "stack", + "module", + "wsgi", + "rack", + "next" + ], + "url": "http://registry.npmjs.org/zen/" + }, + "zeparser": { + "name": "zeparser", + "description": "My JavaScript parser", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "felixge", + "email": "felix@debuggable.com" + }, + { + "name": "evilhackerdude", + "email": "evilhackerdude@gmail.com" + } + ], + "time": { + "modified": "2011-11-23T14:17:52.593Z", + "created": "2011-10-25T17:41:35.253Z", + "0.0.1": "2011-10-25T17:41:36.734Z", + "0.0.2": "2011-11-17T13:07:24.753Z", + "0.0.3": "2011-11-23T14:17:52.593Z" + }, + "author": { + "name": "Peter van der Zee", + "url": "http://qfox.nl/" + }, + "repository": { + "type": "git", + "url": "git://github.com/qfox/ZeParser.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/zeparser/0.0.1", + "0.0.2": "http://registry.npmjs.org/zeparser/0.0.2", + "0.0.3": "http://registry.npmjs.org/zeparser/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "9222eaaf3686af7b00dbf1b9a3eb9027eefdbbf2", + "tarball": "http://registry.npmjs.org/zeparser/-/zeparser-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c8ca8def5eec40b84956be6ccadad9dab65e0378", + "tarball": "http://registry.npmjs.org/zeparser/-/zeparser-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "d96288f57c3c927709df44bed096305fc4cf6717", + "tarball": "http://registry.npmjs.org/zeparser/-/zeparser-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/zeparser/" + }, + "zeppelin": { + "name": "zeppelin", + "description": "Multi application MVC framework", + "dist-tags": { + "latest": "0.0.3" + }, + "maintainers": [ + { + "name": "pelger", + "email": "elger.peter@gmail.com" + } + ], + "time": { + "modified": "2011-03-22T11:28:07.959Z", + "created": "2011-01-21T00:43:12.708Z", + "0.0.1": "2011-01-21T00:43:13.851Z", + "0.0.2": "2011-03-01T09:31:07.298Z", + "0.0.3": "2011-03-22T11:28:07.959Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/zeppelin/0.0.1", + "0.0.2": "http://registry.npmjs.org/zeppelin/0.0.2", + "0.0.3": "http://registry.npmjs.org/zeppelin/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "090f8e7c17b404bb4b9994a9e6f4d51af6ae0ffc", + "tarball": "http://registry.npmjs.org/zeppelin/-/zeppelin-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "647c53ded0c44cc2bb15471edc75efcdeb4fa6f9", + "tarball": "http://registry.npmjs.org/zeppelin/-/zeppelin-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "1224d3a4d2ec6b8bb77c6faa96ef81a3d071066f", + "tarball": "http://registry.npmjs.org/zeppelin/-/zeppelin-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/zeppelin/" + }, + "zero": { + "name": "zero", + "description": "version zero of a JavaScript project", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "\n# zero\n\nversion zero of a JavaScript project\n\n## Usage\n\ngit clone\n\n## License\n\n(The MIT License)\n\nCopyright (c) 2011 Enrico Marino <enrico.marino@email.com>\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "maintainers": [ + { + "name": "onirame", + "email": "enrico.marino@email.com" + } + ], + "time": { + "modified": "2011-12-10T11:23:02.765Z", + "created": "2011-12-06T21:23:32.846Z", + "0.0.0": "2011-12-06T21:23:34.727Z", + "0.0.1": "2011-12-10T11:23:02.765Z" + }, + "author": { + "name": "Enrico Marino", + "email": "enrico.marino@email.com", + "url": "http://onirame.no.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/onirame/zero.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/zero/0.0.0", + "0.0.1": "http://registry.npmjs.org/zero/0.0.1" + }, + "dist": { + "0.0.0": { + "shasum": "633d37eb26baf3af59393715148abad252079d4f", + "tarball": "http://registry.npmjs.org/zero/-/zero-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "155640aaf3fa81c16bf9676e54136f47b64bb1ab", + "tarball": "http://registry.npmjs.org/zero/-/zero-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/zero/" + }, + "zeromq": { + "name": "zeromq", + "description": "zeromq for node.js", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "This library gives you bindings to ØMQ from node.js. This is not terribly\nwell tested, but there is at least one company successfully using these bindings\nin production. Bug reports welcome.\n\nTo Install\n==========\n\nFirst, get [ØMQ 2.1], [Homebrew] on Mac will get you what you need.\nDebian/Ubuntu users may also need to install the `libev-dev` package.\n\nThen use [npm] to install zeromq.node:\n\n $ npm install zmq\n\n`npm` will yell at you if you don't have node 0.3.0, as that is required.\n\nAPI\n===\n\nThe API contains elements of the [ØMQ API]. You should refer to it\nfor in depth detail of the expected behaviors of the system. These methods will\nnever return error codes, but may throw an exception if any of the errors\ndescribed in the ØMQ documentation occur.\n\nFirst, include the module:\n\n```js\nvar zmq = require('zmq');\n```\n\nAfter that, you can create sockets with:\n\n```js\nvar sock = zmq.socket('req');\n```\n\nUsing ØMQ sockets\n-----------------\nA socket is where the action happens. You can send and receive things and it is\noh such fun.\n\n#### Constructor - `function(type)`\n\n * type - A string describing the type of socket. You can read about the\n different socket types [here][zmq_socket]. The name you use here matches the\n names of the `ZMQ_*` constants, sans the `ZMQ_` prefix.\n\n#### Methods\n\n * connect(address) - Connect to another socket. `address` should be a string\n as described in the [ØMQ API docs][zmq_connect]. This method is not\n asynchronous because it is non-blocking. ØMQ will use the provided address\n when it's necessary and will not block here.\n\n * bind(address, callback) - Bind to a socket to wait for incoming data.\n `address` should be a string as described in the [ØMQ API docs][zmq_bind].\n `callback` will be called when binding is complete and takes one argument,\n which may be an `Error`, or simply `undefined` if everything's peachy.\n\n * send(message, ...) - `message` is a string to send across the wire. The\n message is not sent immediately, but there is no callback indicating when\n it has been transmitted. See the\n [0MQ](http://www.zeromq.org/intro:read-the-manual) documentation for\n [zmq_send](http://api.zeromq.org/2-1:zmq-send) for exact\n transmission semantics. Raises an exception if the return is < 0.\n\n The message must be a `Buffer` object or a string. It is assumed that\n strings should be transmitted as UTF-8. If you provide more than one\n argument to send, then a multipart ØMQ message will be sent.\n\n * close() - Closes the socket\n\n#### Socket Options\n\n To set a socket option on a socket, use socket[property]. For example,\n\n socket['identity'] = \"mainLoop\";\n\n The following properties are available (the ZMQ_XXX constant describes the name in the ZeroMQ documentation available at [ØMQ setsockopt API]):\n\n * ioThreadAffinity - set affinity for IO thread (integer, ZMQ_AFFINITY);\n * backlog - set connection backlog for listening sockets (integer, ZMQ_BACKLOG);\n * identity - set the socket identity (name) (string, ZMQ_IDENTITY);\n * lingerPeriod - set the linger period in milliseconds (integer, -1 = unlimited, ZMQ_LINGER);\n * receiveBufferSize - set the kernel receive buffer size (integer, 0 = OS default, ZMQ_RCVBUF);\n * sendBufferSize - set the kernel receive buffer size (integer, 0 = OS default, ZMQ_RCVBUF);\n\n The following apply to message buffering and reconnection:\n\n * reconnectionInterval - set the time to wait between reconnection attempts in milliseconds (ZeroMQ attempts to reconnect broken connection automatically behind the scenes) (integer, ZMQ_RECONNECT_IVL)\n * highWaterMark - set high water mark (in number of outstanding messages) before buffered messages start being dropped or swapped to disk (integer, zero = unlimited, ZMQ_HWM);\n * diskOffloadSize - set the amount of disk swap space in bytes for buffering messages in case of disconnection (integer, ZMQ_SWAP)\n\n The following options are applicable to multicast:\n\n * multicastLoop - set whether multicast can go over loopback or not (boolean, ZMQ_MCAST_LOOP);\n * multicastDataRate - set maximum multicast transmission rate in kbits per second (integer, ZMQ_RATE);\n * multicastRecovery - set maximum multicast recovery interval in seconds (integer, ZMQ_RECOVERY_IVL)\n\n The following properties are exposed but not normally used by client code (they are used internally by the library):\n\n * _fd - File descriptor (integer, ZMQ_FD);\n * _ioevents - Event loop used internally (ZMQ_EVENTS);\n * _receiveMore - Message has more parts (boolean, ZMQ_RCVMORE);\n * _subscribe - Subscribe to a channel (see subscribe() method) (string, ZMQ_SUBSCRIBE);\n * _unsubscribe - Unsubscribe to a channel (see unsubscribe() method) (string, ZMQ_UNSUBSCRIBE);\n\n\n#### Events\n\n * message - A message was received. The arguments are the parts of the\n message. So, for example, if you have an `xrep` socket with plain `req`\n sockets on the other end, you can do something like:\n\n socket.on('message', function(envelope, blank, data) {\n socket.send(envelope, blank, compute_reply_for(data));\n });\n\n * error - There was some error. The only argument is an `Error` object\n explaining what the error was.\n\n\nTo Build\n========\n\n```\n$ make\n```\n\nTesting\n=======\n\n```\n$ make test\n```\n\nLicensing\n=========\n\nLicensed under the very permissive [MIT License].\n\n[node.js]: http://github.com/ry/node\n[npm]: https://github.com/isaacs/npm\n[ØMQ 2.1]: http://www.zeromq.org/intro:get-the-software\n[Homebrew]: http://mxcl.github.com/homebrew/\n[ØMQ API]: http://api.zeromq.org/\n[ØMQ setsockopt API]: http://api.zeromq.org/2-1-3:zmq-setsockopt\n[zmq_socket]: http://api.zeromq.org/zmq_socket.html\n[zmq_connect]: http://api.zeromq.org/zmq_connect.html\n[zmq_bind]: http://api.zeromq.org/zmq_bind.html\n[MIT license]: http://www.opensource.org/licenses/mit-license.php\n", + "maintainers": [ + { + "name": "tjholowaychuk", + "email": "tj@vision-media.ca" + } + ], + "time": { + "modified": "2011-11-29T19:54:29.328Z", + "created": "2011-11-29T19:54:27.861Z", + "0.0.1": "2011-11-29T19:54:29.328Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/JustinTulloss/zeromq.node.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/zeromq/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "6a0ec509a0f89553d7491a1a86368882ffdead25", + "tarball": "http://registry.npmjs.org/zeromq/-/zeromq-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/zeromq/" + }, + "zest": { + "name": "zest", + "description": "Another web framework for node.js", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "monokrome", + "email": "monokrome@monokro.me" + } + ], + "time": { + "modified": "2011-03-13T04:11:37.798Z", + "created": "2011-03-13T03:59:46.259Z", + "0.1.1": "2011-03-13T03:59:46.651Z", + "0.1.2": "2011-03-13T04:11:37.798Z" + }, + "author": { + "name": "Brandon R. Stoner", + "email": "monokrome@limpidtech.com", + "url": "http://monokro.me/" + }, + "repository": { + "type": "git", + "url": "git://github.com/LimpidTech/zest.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/zest/0.1.1", + "0.1.2": "http://registry.npmjs.org/zest/0.1.2" + }, + "dist": { + "0.1.1": { + "shasum": "7e1604099d8641063c1bb57839db49e3c04bec48", + "tarball": "http://registry.npmjs.org/zest/-/zest-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "5fb1f8af098c204d2dfa86da548b444ce5466992", + "tarball": "http://registry.npmjs.org/zest/-/zest-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/zest/" + }, + "zest-js": { + "name": "zest-js", + "description": "fast, lightweight, extensible css selector engine", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "chjj", + "email": "chjjeffrey@gmail.com" + } + ], + "time": { + "modified": "2011-08-13T00:36:39.550Z", + "created": "2011-06-26T09:49:46.860Z", + "0.0.1": "2011-06-26T09:49:47.277Z", + "0.0.2": "2011-08-13T00:36:39.550Z" + }, + "author": { + "name": "Christopher Jeffrey" + }, + "repository": { + "type": "git", + "url": "git://github.com/chjj/zest.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/zest-js/0.0.1", + "0.0.2": "http://registry.npmjs.org/zest-js/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "33915c25b1f1d75cd63a3edb1292c02468ec3a9b", + "tarball": "http://registry.npmjs.org/zest-js/-/zest-js-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "2c1872d750d093ce414ed78d9547f8b53c5dc666", + "tarball": "http://registry.npmjs.org/zest-js/-/zest-js-0.0.2.tgz" + } + }, + "keywords": [ + "css", + "selector", + "engine" + ], + "url": "http://registry.npmjs.org/zest-js/" + }, + "zion": { + "name": "zion", + "dist-tags": { + "latest": "0.0.2" + }, + "readme": "Zion is a nodejs process supervisor. It uses the `cluster` module that has\nbeen added to node 0.6.0 to fork child workers. Each child will load the given\npackage and call the main entry function.\n\nThe master maintains a two-way communication channel with its children. This\nallows child processes to send messages to the master, for example to instruct\nthe master to fork or restart workers. The main motivation for that was to\ncreate self-updating web servers: Add a special route to your web app (eg.\n`POST /site/deploy`), in the handler update the source code (eg. `git pull &&\nmake`) and finally send a message to the master to restart all workers.\n\nThe package is required to export a function which will be called by the\nworker and given a single argument. After startup the master will create\na single worker and send it a 'zion:bootstrap' message. Use that to bootstrap\nyour application (forking any workers that are necessary). Here is an example\nmain entry function:\n\n module.exports = function(msg) {\n if (msg.cmd === 'zion:bootstrap') {\n process.send({ cmd: 'zion:fork', worker: 'express-http-server' })\n process.send({ cmd: 'zion:fork', worker: 'background-job-handler' })\n\n process.exit(0)\n } else if (msg.cmd === 'zion:fork') {\n require(__dirname + '/workers/' + msg.worker)\n }\n }\n\nIf a worker exits with exit code other than 0, it is immediately restarted. If\nthe exit code is 0 then the worker is discarded and never started again.\n\nUsage: `zion /path/to/package`\n", + "maintainers": [ + { + "name": "tomc", + "email": "tomas.carnecky@gmail.com" + } + ], + "time": { + "modified": "2011-11-29T20:07:13.493Z", + "created": "2011-11-19T00:09:13.801Z", + "0.0.1": "2011-11-19T00:09:15.570Z", + "0.0.2": "2011-11-29T20:07:13.493Z" + }, + "author": { + "name": "Tomas Carnecky", + "email": "tomas.carnecky@gmail.com" + }, + "repository": { + "url": "git://github.com/wereHamster/zion.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/zion/0.0.1", + "0.0.2": "http://registry.npmjs.org/zion/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "7984c028439dd67037f307408e7b484007ab0146", + "tarball": "http://registry.npmjs.org/zion/-/zion-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f5215fd6bf9eef16c57fc1cc0ec4d31c2ef480cb", + "tarball": "http://registry.npmjs.org/zion/-/zion-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/zion/" + }, + "zip": { + "name": "zip", + "description": "An implementation of unzip for JavaScript", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "kriskowal", + "email": "kris.kowal@cixar.com" + } + ], + "time": { + "modified": "2011-10-11T23:53:42.764Z", + "created": "2011-02-10T18:54:08.115Z", + "0.0.0": "2011-02-10T18:54:08.522Z", + "0.0.1": "2011-02-11T20:05:16.524Z", + "0.0.2": "2011-05-18T17:00:22.637Z", + "0.0.3": "2011-05-18T17:32:26.071Z", + "0.0.4": "2011-08-12T01:00:06.731Z", + "0.0.6": "2011-10-11T23:53:42.764Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/kriskowal/zip.git" + }, + "author": { + "name": "Kris Kowal", + "email": "kris@cixar.com", + "url": "https://github.com/kriskowal" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/zip/0.0.0", + "0.0.1": "http://registry.npmjs.org/zip/0.0.1", + "0.0.2": "http://registry.npmjs.org/zip/0.0.2", + "0.0.3": "http://registry.npmjs.org/zip/0.0.3", + "0.0.4": "http://registry.npmjs.org/zip/0.0.4", + "0.0.6": "http://registry.npmjs.org/zip/0.0.6" + }, + "dist": { + "0.0.0": { + "tarball": "http://registry.npmjs.org/zip/-/zip-0.0.0.tgz" + }, + "0.0.1": { + "tarball": "http://registry.npmjs.org/zip/-/zip-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "bb12050055b40822bf73b10f1a70efd5c6746893", + "tarball": "http://registry.npmjs.org/zip/-/zip-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "61c5049d8da966dec3c4e321d27c93b4819ccb6e", + "tarball": "http://registry.npmjs.org/zip/-/zip-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "5198ffa5a67b4e269dcb287bb27ffcca9c517595", + "tarball": "http://registry.npmjs.org/zip/-/zip-0.0.4.tgz" + }, + "0.0.6": { + "shasum": "9c7097262b01110d363430a7a32be3c5f8559702", + "tarball": "http://registry.npmjs.org/zip/-/zip-0.0.6.tgz" + } + }, + "keywords": [ + "zip", + "compression" + ], + "url": "http://registry.npmjs.org/zip/" + }, + "zipcodes": { + "name": "zipcodes", + "description": "Useful zipcode database with helper methods", + "dist-tags": { + "latest": "0.1.0" + }, + "maintainers": [ + { + "name": "davglass", + "email": "davglass@gmail.com" + } + ], + "time": { + "modified": "2011-10-12T20:26:34.628Z", + "created": "2011-10-12T20:26:34.232Z", + "0.1.0": "2011-10-12T20:26:34.628Z" + }, + "author": { + "name": "Dav Glass", + "email": "davglass@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/davglass/zipcodes.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/zipcodes/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "002df39030a3b9ee5b852e3dbafce146cedea010", + "tarball": "http://registry.npmjs.org/zipcodes/-/zipcodes-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/zipcodes/" + }, + "zipfile": { + "name": "zipfile", + "description": "C++ library for handling zipfiles in node", + "dist-tags": { + "latest": "0.3.0" + }, + "maintainers": [ + { + "name": "springmeyer", + "email": "dane@dbsgeo.com" + }, + { + "name": "kkaefer", + "email": "kkaefer@gmail.com" + } + ], + "time": { + "modified": "2011-11-08T22:06:19.427Z", + "created": "2011-01-20T18:44:05.576Z", + "0.1.0": "2011-01-20T18:44:05.705Z", + "0.1.1": "2011-01-26T04:20:38.150Z", + "0.1.2": "2011-01-26T05:58:12.624Z", + "0.1.3": "2011-01-27T22:09:57.774Z", + "0.1.4": "2011-02-04T20:52:36.758Z", + "0.1.5": "2011-02-04T21:31:24.415Z", + "0.1.6": "2011-02-16T16:44:49.149Z", + "0.1.7": "2011-04-01T17:48:28.499Z", + "0.1.8": "2011-05-08T01:10:19.039Z", + "0.2.0": "2011-08-05T18:18:12.799Z", + "0.2.1": "2011-08-08T18:28:27.022Z", + "0.2.2": "2011-08-23T20:27:43.554Z", + "0.2.3": "2011-08-29T18:19:19.167Z", + "0.2.4": "2011-09-16T23:05:04.227Z", + "0.3.0": "2011-11-08T22:06:19.427Z" + }, + "author": { + "name": "Dane Springmeyer", + "email": "dane@dbsgeo.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/zipfile/0.1.0", + "0.1.1": "http://registry.npmjs.org/zipfile/0.1.1", + "0.1.2": "http://registry.npmjs.org/zipfile/0.1.2", + "0.1.3": "http://registry.npmjs.org/zipfile/0.1.3", + "0.1.4": "http://registry.npmjs.org/zipfile/0.1.4", + "0.1.5": "http://registry.npmjs.org/zipfile/0.1.5", + "0.1.6": "http://registry.npmjs.org/zipfile/0.1.6", + "0.1.7": "http://registry.npmjs.org/zipfile/0.1.7", + "0.1.8": "http://registry.npmjs.org/zipfile/0.1.8", + "0.2.0": "http://registry.npmjs.org/zipfile/0.2.0", + "0.2.1": "http://registry.npmjs.org/zipfile/0.2.1", + "0.2.2": "http://registry.npmjs.org/zipfile/0.2.2", + "0.2.3": "http://registry.npmjs.org/zipfile/0.2.3", + "0.2.4": "http://registry.npmjs.org/zipfile/0.2.4", + "0.3.0": "http://registry.npmjs.org/zipfile/0.3.0" + }, + "dist": { + "0.1.0": { + "shasum": "9565a45d6641a86a270b7f76e650807651d33e40", + "tarball": "http://registry.npmjs.org/zipfile/-/zipfile-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "4a0524c6feeb8d2dbc5847bbdab10791ee2feb8a", + "tarball": "http://registry.npmjs.org/zipfile/-/zipfile-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "0aa1abd7dd008d842f87a7cc4e76b5518953b07b", + "tarball": "http://registry.npmjs.org/zipfile/-/zipfile-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "db81e2aae17f53776bb4618c1914fe0a99607725", + "tarball": "http://registry.npmjs.org/zipfile/-/zipfile-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "874de52d365412ec79db7d83d390611cf920e814", + "tarball": "http://registry.npmjs.org/zipfile/-/zipfile-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "d1d0e3e5ab47957b0547396fa17da6de094fd9bc", + "tarball": "http://registry.npmjs.org/zipfile/-/zipfile-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "5fc8ac37cd0d11457a50d27513dc87e0af3a7f5f", + "tarball": "http://registry.npmjs.org/zipfile/-/zipfile-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "27d1f7373062d09b35c1d91bf5ba86fff8b03057", + "tarball": "http://registry.npmjs.org/zipfile/-/zipfile-0.1.7.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "c3be7f32e20cefec3d4df8e6e457cbc245171297", + "tarball": "http://registry.npmjs.org/zipfile/-/zipfile-0.1.7-0.4-sunos-5.11.tgz" + } + } + }, + "0.1.8": { + "shasum": "531dbb5c72850d34478cd319637a4581373f6b4f", + "tarball": "http://registry.npmjs.org/zipfile/-/zipfile-0.1.8.tgz" + }, + "0.2.0": { + "shasum": "da777bcd304c30f358f021e593f3f0386ccf7523", + "tarball": "http://registry.npmjs.org/zipfile/-/zipfile-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "4a125a17c43a69fe3a666130f77fe8b37ab6c3c3", + "tarball": "http://registry.npmjs.org/zipfile/-/zipfile-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "115509642add4d7a2b7c71f6d28c713a70890d69", + "tarball": "http://registry.npmjs.org/zipfile/-/zipfile-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "44e86dc7b0c24cf367466540feddcce9d7ee2c45", + "tarball": "http://registry.npmjs.org/zipfile/-/zipfile-0.2.3.tgz" + }, + "0.2.4": { + "shasum": "65b2b189ca85907b7e5be07957c94483551cdcdd", + "tarball": "http://registry.npmjs.org/zipfile/-/zipfile-0.2.4.tgz" + }, + "0.3.0": { + "shasum": "6416cb365e0006907cd8c3c7c7a07b15327b6d01", + "tarball": "http://registry.npmjs.org/zipfile/-/zipfile-0.3.0.tgz" + } + }, + "keywords": [ + "zipfile", + "uncompress", + "unzip", + "zlib" + ], + "url": "http://registry.npmjs.org/zipfile/" + }, + "zipper": { + "name": "zipper", + "description": "Insanely simple zipfile creator for node.js", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "rubenv", + "email": "ruben@savanne.be" + } + ], + "time": { + "modified": "2011-09-13T12:51:50.098Z", + "created": "2011-09-13T09:39:29.489Z", + "0.0.1": "2011-09-13T09:39:30.770Z", + "0.0.2": "2011-09-13T12:51:50.098Z" + }, + "author": { + "name": "Ruben Vermeersch", + "email": "ruben@savanne.be" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/zipper/0.0.1", + "0.0.2": "http://registry.npmjs.org/zipper/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "bb458b0e36106f155897d104a5e273ddb920d400", + "tarball": "http://registry.npmjs.org/zipper/-/zipper-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "b8d143f609bb1b6637066836de3102d343b1d5a8", + "tarball": "http://registry.npmjs.org/zipper/-/zipper-0.0.2.tgz" + } + }, + "keywords": [ + "zip", + "compress", + "archive", + "libzip" + ], + "url": "http://registry.npmjs.org/zipper/" + }, + "zippy": { + "name": "zippy", + "description": "zip() and zipWith() for Node.js!", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "jesusabdullah", + "email": "josh.holbrook@gmail.com" + } + ], + "time": { + "modified": "2011-09-21T06:03:54.990Z", + "created": "2011-09-20T03:01:43.524Z", + "0.0.0": "2011-09-20T03:01:44.681Z", + "0.0.1": "2011-09-21T05:03:12.342Z", + "0.0.2": "2011-09-21T06:03:54.990Z" + }, + "author": { + "name": "Joshua Holbrook", + "email": "josh.holbrook@gmail.com", + "url": "http://jesusabdullah.github.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:jesusabdullah/node-zippy.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/zippy/0.0.0", + "0.0.1": "http://registry.npmjs.org/zippy/0.0.1", + "0.0.2": "http://registry.npmjs.org/zippy/0.0.2" + }, + "dist": { + "0.0.0": { + "shasum": "a01ba572e95a833ccdc9e9a2a24476e6204d26c0", + "tarball": "http://registry.npmjs.org/zippy/-/zippy-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "67c303e178957785001c29284a0146f943e59731", + "tarball": "http://registry.npmjs.org/zippy/-/zippy-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "2f235af5ae35f3d58f9aa6b09c9589862f1e7ab7", + "tarball": "http://registry.npmjs.org/zippy/-/zippy-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/zippy/" + }, + "zipwith": { + "name": "zipwith", + "description": "A Node.js port of Haskell's zipWith function", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "mcandre", + "email": "andrew.pennebaker@gmail.com" + } + ], + "time": { + "modified": "2011-09-14T14:13:36.889Z", + "created": "2011-09-14T14:13:36.833Z", + "0.0.1": "2011-09-14T14:13:36.889Z" + }, + "author": { + "name": "Andrew Pennebaker", + "email": "andrew.pennebaker@gmail.com", + "url": "http://www.yellosoft.us/" + }, + "repository": { + "type": "git", + "url": "git://github.com/mcandre/node-zipwith.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/zipwith/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "c6c0b9b0b9b95f7c44505091c31b44e6be335f2d", + "tarball": "http://registry.npmjs.org/zipwith/-/zipwith-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/zipwith/" + }, + "zlib": { + "name": "zlib", + "description": "Simple, synchronous deflate/inflate for buffers", + "dist-tags": { + "latest": "1.0.5" + }, + "maintainers": [ + { + "name": "kkaefer", + "email": "kkaefer@gmail.com" + }, + { + "name": "tmcw", + "email": "macwright@gmail.com" + }, + { + "name": "yhahn", + "email": "young@developmentseed.org" + }, + { + "name": "willwhite", + "email": "will@developmentseed.org" + }, + { + "name": "springmeyer", + "email": "dane@dbsgeo.com" + } + ], + "time": { + "modified": "2011-08-08T18:15:58.018Z", + "created": "2011-03-11T15:40:05.050Z", + "1.0.0": "2011-03-11T15:40:05.290Z", + "1.0.1": "2011-03-11T17:02:02.988Z", + "1.0.2": "2011-03-11T19:32:46.684Z", + "1.0.3": "2011-03-29T21:42:31.878Z", + "1.0.4": "2011-06-22T06:42:47.119Z", + "1.0.5": "2011-08-08T18:15:58.018Z" + }, + "author": { + "name": "Konstantin Käfer", + "email": "kkaefer@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/kkaefer/node-zlib.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/zlib/1.0.0", + "1.0.1": "http://registry.npmjs.org/zlib/1.0.1", + "1.0.2": "http://registry.npmjs.org/zlib/1.0.2", + "1.0.3": "http://registry.npmjs.org/zlib/1.0.3", + "1.0.4": "http://registry.npmjs.org/zlib/1.0.4", + "1.0.5": "http://registry.npmjs.org/zlib/1.0.5" + }, + "dist": { + "1.0.0": { + "shasum": "983ca92346f37488a89253d48c3682e2100b0e0b", + "tarball": "http://registry.npmjs.org/zlib/-/zlib-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "3ac62c1aee3a5e72eec323190c1394f702ed03a5", + "tarball": "http://registry.npmjs.org/zlib/-/zlib-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "34f3cc6bbacebca18e6c22bfc5b100fd1e27e22a", + "tarball": "http://registry.npmjs.org/zlib/-/zlib-1.0.2.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "7108eea918ce28663042edb505b07d40b6fabf2c", + "tarball": "http://registry.npmjs.org/zlib/-/zlib-1.0.2-0.4-sunos-5.11.tgz" + } + } + }, + "1.0.3": { + "shasum": "3b90419efad5413c6288db894c4314d42a5aaeca", + "tarball": "http://registry.npmjs.org/zlib/-/zlib-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "6d5aef3746b6f6164b1c2926087c69274b17a02c", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.14-darwin-10.7.0": { + "shasum": "8374f8a9ed71672ad9fc11d29ab6134ac0936a16", + "tarball": "http://registry.npmjs.org/zlib/-/zlib-1.0.4-0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.14-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/zlib/-/zlib-1.0.4.tgz" + }, + "1.0.5": { + "shasum": "6e7c972fc371c645a6afb03ab14769def114fcc0", + "tarball": "http://registry.npmjs.org/zlib/-/zlib-1.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/zlib/" + }, + "zlib-sync": { + "name": "zlib-sync", + "description": "Synchronous compress/uncompress zlib/gzip/deflate formats wrapper over zlib for Node.js", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "ssuda", + "email": "sambasivarao@gmail.com" + } + ], + "time": { + "modified": "2011-09-22T08:23:25.184Z", + "created": "2011-09-22T08:23:23.805Z", + "0.0.1": "2011-09-22T08:23:25.184Z" + }, + "author": { + "name": "Sambasiva Suda" + }, + "repository": { + "type": "git", + "url": "git://github.com/ssuda/node-zlib-sync.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/zlib-sync/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "cd32181fcc4390158657cad377d8d80bab09906a", + "tarball": "http://registry.npmjs.org/zlib-sync/-/zlib-sync-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/zlib-sync/" + }, + "zlibcontext": { + "name": "zlibcontext", + "description": "Simple, synchronous deflate/inflate for buffers (ZLibContext modification)", + "dist-tags": { + "latest": "1.0.9", + "stable": "1.0.9" + }, + "maintainers": [ + { + "name": "fedor.indutny", + "email": "fedor.indutny@gmail.com" + } + ], + "time": { + "modified": "2011-11-06T18:26:59.400Z", + "created": "2011-04-11T08:10:24.203Z", + "1.0.4": "2011-04-11T08:10:25.360Z", + "1.0.5": "2011-04-22T15:45:49.753Z", + "1.0.7": "2011-04-24T19:25:43.390Z", + "1.0.9": "2011-11-06T18:26:16.148Z" + }, + "author": { + "name": "Fedor Indutny", + "email": "fedor.indutny@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/kkaefer/node-zlib.git" + }, + "versions": { + "1.0.4": "http://registry.npmjs.org/zlibcontext/1.0.4", + "1.0.5": "http://registry.npmjs.org/zlibcontext/1.0.5", + "1.0.7": "http://registry.npmjs.org/zlibcontext/1.0.7", + "1.0.9": "http://registry.npmjs.org/zlibcontext/1.0.9" + }, + "dist": { + "1.0.4": { + "shasum": "784c5f9e709d72efbbd47d3306ac0e7fabbd930e", + "tarball": "http://registry.npmjs.org/zlibcontext/-/zlibcontext-1.0.4.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "da4815c64f7ead78a7fdea3a59bd614580463ca1", + "tarball": "http://registry.npmjs.org/zlibcontext/-/zlibcontext-1.0.4-0.4-sunos-5.11.tgz" + } + } + }, + "1.0.5": { + "shasum": "d9ae6300bcaaef590474cede8520c66c03083d9f", + "tarball": "http://registry.npmjs.org/zlibcontext/-/zlibcontext-1.0.5.tgz" + }, + "1.0.7": { + "shasum": "615c6cd781a9aea0f60f166d068f2c96678af981", + "tarball": "http://registry.npmjs.org/zlibcontext/-/zlibcontext-1.0.7.tgz" + }, + "1.0.9": { + "shasum": "cb32f27e8ac91d58e72dd3ed4d57a42d0be4dcb6", + "tarball": "http://registry.npmjs.org/zlibcontext/-/zlibcontext-1.0.9.tgz" + } + }, + "url": "http://registry.npmjs.org/zlibcontext/" + }, + "zlibstream": { + "name": "zlibstream", + "description": "Streaming zlib interface.", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "carson", + "email": "carson@ioncannon.net" + } + ], + "time": { + "modified": "2011-04-15T21:41:17.078Z", + "created": "2011-04-14T01:06:12.823Z", + "1.0.0": "2011-04-14T01:06:13.013Z" + }, + "author": { + "name": "Carson McDonald", + "email": "carson@ioncannon.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/carsonmcdonald/node-zlibstream.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/zlibstream/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "1af6f4c553446ca13e60f29da8a71c0cd6bde87a", + "tarball": "http://registry.npmjs.org/zlibstream/-/zlibstream-1.0.0.tgz", + "bin": { + "0.4-sunos-5.11": { + "shasum": "45019441a6fd8e6feaf058c0777313d1a27d3871", + "tarball": "http://registry.npmjs.org/zlibstream/-/zlibstream-1.0.0-0.4-sunos-5.11.tgz" + } + } + } + }, + "url": "http://registry.npmjs.org/zlibstream/" + }, + "zmq": { + "name": "zmq", + "description": "Bindings for node.js to zeromq", + "dist-tags": { + "latest": "2.0.0" + }, + "maintainers": [ + { + "name": "justin", + "email": "justin.tulloss@gmail.com" + } + ], + "time": { + "modified": "2011-12-05T02:50:06.706Z", + "created": "2011-07-17T23:07:19.948Z", + "1.0.0": "2011-07-17T23:07:20.492Z", + "1.0.1": "2011-07-21T03:50:36.613Z", + "1.0.2": "2011-08-04T18:35:24.269Z", + "1.0.3": "2011-11-08T09:00:14.295Z", + "1.0.4": "2011-12-05T00:47:03.464Z", + "2.0.0": "2011-12-05T02:50:06.706Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/JustinTulloss/zeromq.node.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/zmq/1.0.0", + "1.0.1": "http://registry.npmjs.org/zmq/1.0.1", + "1.0.2": "http://registry.npmjs.org/zmq/1.0.2", + "1.0.3": "http://registry.npmjs.org/zmq/1.0.3", + "1.0.4": "http://registry.npmjs.org/zmq/1.0.4", + "2.0.0": "http://registry.npmjs.org/zmq/2.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "af53f8a08425d98084566376cb10906f2ddaced7", + "tarball": "http://registry.npmjs.org/zmq/-/zmq-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "3c531f9d1f199858689e43a72787e058f38b0e9a", + "tarball": "http://registry.npmjs.org/zmq/-/zmq-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "65f6d3ae65d8c296e7df5d9ed73171473c2b2e2b", + "tarball": "http://registry.npmjs.org/zmq/-/zmq-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "3af9a52103c125b8de16a60c2219fdb692d7966a", + "tarball": "http://registry.npmjs.org/zmq/-/zmq-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "7a57f40984277726f010eb5ffbca751a2b2253dc", + "tarball": "http://registry.npmjs.org/zmq/-/zmq-1.0.4.tgz" + }, + "2.0.0": { + "shasum": "3d1c8b30fb62e741dc12626bc89c73abf3097756", + "tarball": "http://registry.npmjs.org/zmq/-/zmq-2.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/zmq/" + }, + "zo": { + "name": "zo", + "description": "asynchronous query language, for the usual functional list processing functions: map, select, reduce, but async-friendly", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "refractalize", + "email": "timmacfarlane@gmail.com" + } + ], + "time": { + "modified": "2011-03-21T17:47:08.901Z", + "created": "2011-03-01T07:14:49.033Z", + "0.0.1": "2011-03-01T07:14:49.394Z", + "0.0.2": "2011-03-21T17:47:08.901Z" + }, + "repository": { + "type": "git", + "url": "https://github.com/refractalize/zo.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/zo/0.0.1", + "0.0.2": "http://registry.npmjs.org/zo/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "5e8ec813fc7db3a81d07ea29d2bceeada0ed0bef", + "tarball": "http://registry.npmjs.org/zo/-/zo-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "41a8f37d6000b68aeff47f91829702e2ebafc05d", + "tarball": "http://registry.npmjs.org/zo/-/zo-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/zo/" + }, + "zombie": { + "name": "zombie", + "description": "Insanely fast, full-stack, headless browser testing using Node.js", + "dist-tags": { + "latest": "0.12.3" + }, + "readme": "zombie.js(1) -- Insanely fast, headless full-stack testing using Node.js\n========================================================================\n\n\n## The Bite\n\nIf you're going to write an insanely fast, headless browser, how can you not call it Zombie? Zombie it is.\n\nZombie.js is a lightweight framework for testing client-side JavaScript code in a simulated environment. No browser\nrequired.\n\nLet's try to sign up to a page and see what happens:\n\n var zombie = require(\"zombie\");\n var assert = require(\"assert\");\n\n // Load the page from localhost\n zombie.visit(\"http://localhost:3000/\", function (e, browser, status) {\n\n // Fill email, password and submit form\n browser.\n fill(\"email\", \"zombie@underworld.dead\").\n fill(\"password\", \"eat-the-living\").\n pressButton(\"Sign Me Up!\", function(e, browser, status) {\n\n // Form submitted, new page loaded.\n assert.equal(status, 200);\n assert.equal(browser.text(\"title\"), \"Welcome To Brains Depot\");\n\n })\n\n });\n\nWell, that was easy.\n\n\n## Infection\n\nTo install Zombie.js you need Node.js, NPM, a C++ compiler and Python.\n\nOn OS X start by installing XCode, or use the [OSX GCC installer](https://github.com/kennethreitz/osx-gcc-installer)\n(less to download).\n\nNext, assuming you're using the mighty [Homebrew](http://mxcl.github.com/homebrew/):\n\n $ brew install node\n $ node --version\n v0.6.2\n $ curl http://npmjs.org/install.sh | sudo sh\n $ npm --version\n 1.0.106\n $ npm install zombie\n\nOn Ubuntu try these steps:\n\n $ sudo apt-get install python-software-properties\n $ sudo add-apt-repository ppa:chris-lea/node.js\n $ sudo apt-get update\n $ sudo apt-get install nodejs nodejs-dev npm\n $ node --version\n v0.6.2\n $ npm --version\n 1.0.106\n $ npm install z\")bie\n\nOn Windows you'll need Cygwin to get access to GCC, Python, etc. [Read\nthis](https://github.com/joyent/node/wiki/Building-node.js-on-Cygwin-(Windows)) for detailed instructions and\ntroubleshooting.\n\n\n## Walking\n\nTo start off we're going to need a browser. A browser maintains state across requests: history, cookies, HTML 5 local\nand session stroage, etc. A browser has a main window, and typically a document loaded into that window.\n\nYou can create a new `zombie.Browser` and point it at a document, either by setting the `location` property or calling\nits `visit` function. As a shortcut, you can just call the `zombie.visit` function with a URL and callback.\n\nThe browser will load the document and if the document includes any scripts, also load and execute these scripts. It\nwill then process some events, for example, anything your scripts do on page load. All of that, just like a real\nbrowser, happens asynchronously.\n\nTo wait for the page to fully load and process events, you pass `visit` a callback function. Zombie will then call your\ncallback with `null`, the browser object, the status code of the last response, and an array of errors (hopefully\nempty). This is JavaScript, so you don't need to declare all these arguments, and in fact can access them as\n`browser.statusCode` and `browser.errors`.\n\n(Why would the first callback argument be `null`? It works great when using asynchronous testing frameworks like\n[Vows.js](http://vowsjs.org/))\n\n\nMost errors that occur – resource loading and JavaScript execution – are not fatal, so rather the stopping processing,\nthey are collected in `browser.errors`. As a convenience, you can get the last error by calling `browser.error`, for\nexample:\n\n browser.visit(\"http://localhost:3000/\", function () {\n assert.equal(browser.success, \"Expected status code to be 2xx\");\n if (browser.error )\n console.dir(\"Errors reported:\", browser.errors);\n })\n\nWhenever you want to wait for all events to be processed, just call `browser.wait` with a callback. If you know how\nlong the wait is (e.g. animation or page transition), you can pass a duration (in milliseconds) as the first argument.\n\nOtherwise, Zombie makes best judgement by waiting up to 5 seconds for the page to load resources (scripts, XHR requests,\niframes), process DOM events, and fire timeouts events. It is quite common for pages to fire timeout events as they\nload, e.g. jQuery's `onready`. Usually these events delay the test by no more than a few milliseconds.\n\nRead more [on the Browser API](api)\n\n\n## Hunting\n\nThere are several ways you can inspect the contents of a document. For starters, there's the [DOM\nAPI](http://www.w3.org/DOM/DOMTR), which you can use to find elements and traverse the document tree.\n\nYou can also use CSS selectors to pick a specific element or node list. Zombie.js implements the [DOM Selector\nAPI](http://www.w3.org/TR/selectors-api/). These functions are available from every element, the document, and the\n`Browser` object itself.\n\nTo get the HTML contents of an element, read its `innerHTML` property. If you want to include the element itself with\nits attributes, read the element's `outerHTML` property instead. Alternatively, you can call the `browser.html`\nfunction with a CSS selector and optional context element. If the function selects multiple elements, it will return\nthe combined HTML of them all.\n\nTo see the textual contents of an element, read its `textContent` property. Alternatively, you can call the\n`browser.text` function with a CSS selector and optional context element. If the function selects multiple elements, it\nwill return the combined text contents of them all.\n\nHere are a few examples for checking the contents of a document:\n\n // Make sure we have an element with the ID brains.\n assert.ok(browser.query(\"#brains\"));\n\n // Make sure body has two elements with the class hand.\n assert.lengthOf(browser.body.queryAll(\".hand\"), 2);\n\n // Check the document title.\n assert.equal(browser.text(\"title\"), \"The Living Dead\");\n\n // Show me the document contents.\n console.log(browser.html());\n\n // Show me the contents of the parts table:\n console.log(browser.html(\"table.parts\"));\n\nCSS selectors are implemented by Sizzle.js. In addition to CSS 3 selectors you get additional and quite useful\nextensions, such as `:not(selector)`, `[NAME!=VALUE]`, `:contains(TEXT)`, `:first/:last` and so forth. Check out the\n[Sizzle.js documentation](https://github.com/jeresig/sizzle/wiki) for more details.\n\nRead more [on the Browser API](api) and [CSS selectors](selectors)\n\n\n## Feeding\n\nYou're going to want to perform some actions, like clicking links, entering text, submitting forms. You can certainly\ndo that using the [DOM API](http://www.w3.org/DOM/DOMTR), or several of the convenience functions we're going to cover\nnext.\n\nTo click a link on the page, use `clickLink` with selector and callback. The first argument can be a CSS selector (see\n_Hunting_), the `A` element, or the text contents of the `A` element you want to click.\n\nThe second argument is a callback, which much like the `visit` callback gets fired after all events are processed.\n\nLet's see that in action:\n\n // Now go to the shopping cart page and check that we have\n // three bodies there.\n browser.clickLink(\"View Cart\", function(e, browser, status) {\n assert.lengthOf(browser.queryAll(\"#cart .body\"), 3);\n });\n\nTo submit a form, use `pressButton`. The first argument can be a CSS selector, the button/input element. the button\nname (the value of the `name` argument) or the text that shows on the button. You can press any `BUTTON` element or\n`INPUT` of type `submit`, `reset` or `button`. The second argument is a callback, just like `clickLink`.\n\nOf course, before submitting a form, you'll need to fill it with values. For text fields, use the `fill` function,\nwhich takes two arguments: selector and the field value. This time the selector can be a CSS selector, the input\nelement, the field name (its `name` attribute), or the text that shows on the label associated with that field.\n\nZombie.js supports text fields, password fields, text areas, and also the new HTML 5 fields types like email, search and\nurl.\n\nThe `fill` function returns a reference to the browser, so you can chain several functions together. Its sibling\nfunctions `check` and `uncheck` (for check boxes), `choose` (for radio buttons) and `select` (for drop downs) work the\nsame way.\n\nLet's combine all of that into one example:\n\n // Fill in the form and submit.\n browser.\n fill(\"Your Name\", \"Arm Biter\").\n fill(\"Profession\", \"Living dead\").\n select(\"Born\", \"1968\").\n uncheck(\"Send me the newsletter\").\n pressButton(\"Sign me up\", function(e, browser, status) {\n\n // Make sure we got redirected to thank you page.\n assert.equal(browser.location.pathname, \"/thankyou\");\n\n });\n\nRead more [on the Browser API](api)\n\n\n## Readiness\n\nZombie.js supports the following:\n\n- HTML5 parsing and dealing with tag soups\n- [DOM Level 3](http://www.w3.org/DOM/DOMTR) implementation\n- HTML5 form fields (`search`, `url`, etc)\n- CSS3 Selectors with [some extensions](http://sizzlejs.com/)\n- Cookies and [Web Storage](http://dev.w3.org/html5/webstorage/)\n- `XMLHttpRequest` in all its glory\n- `setTimeout`/`setInterval`\n- `pushState`, `popstate` and `hashchange` events\n- Scripts that use `document.write`\n- `alert`, `confirm` and `prompt`\n\n\n## In The Family\n\n**[capybara-zombie](https://github.com/plataformatec/capybara-zombie)** -- Capybara driver for zombie.js running on top of node.\n\n**[zombie-jasmine-spike](https://github.com/mileskin/zombie-jasmine-spike)** -- Spike project for trying out Zombie.js with Jasmine\n\n**[Vows BDD](https://github.com/jmreidy/vows-bdd)** -- A BDD wrapper for Vows, allowing for easy writing of tests in a given-when-then format\n\n**[Mink](https://github.com/Behat/Mink)** -- PHP 5.3 acceptance test framework for web applications\n\n\n## Reporting Glitches\n\n**Step 1:** Run Zombie with debugging turned on, the trace will help figure out what it's doing. For example:\n\n var browser = new zombie.Browser({ debug: true });\n browser.visit(\"http://thedead\", function(e, browser, status) {\n console.log(status, browser.errors);\n ...\n });\n\n**Step 2:** Wait for it to finish processing, then dump the current browser state:\n\n browser.dump();\n\n**Step 3:** If publicly available, include the URL of the page you're trying to access. Even better, provide a test\nscript I can run from the Node.js console (similar to step 1 above).\n\nRead more [about troubleshooting](troubleshoot)\n\n\n## Giving Back\n\n\n* Find [assaf/zombie on Github](http://github.com/assaf/zombie)\n* Fork the project\n* Add tests\n* Make your changes\n* Send a pull request\n\nRead more [about the guts of Zombie.js](guts) and check out the outstanding [to-dos](todo).\n\nFollow announcements, ask questions on [the Google Group](https://groups.google.com/forum/?hl=en#!forum/zombie-js)\n\nGet help on IRC: join [zombie.js on Freenode](irc://irc.freenode.net/zombie.js) or [web-based\nIRC](http://webchat.freenode.net/?channels=zombie-js)\n\n\n## Brains\n\nZombie.js is copyright of [Assaf Arkin](http://labnotes.org), released under the MIT License\n\nBlood, sweat and tears of joy:\n\n[Damian Janowski aka djanowski](https://github.com/djanowski)\n\n[José Valim aka josevalim](http://blog.plataformatec.com.br/)\n\n[Bob Lail boblail](http://boblail.tumblr.com/)\n\nAnd all the fine people mentioned in [the changelog](changelog).\n\nZombie.js is written in [CoffeeScript](http://jashkenas.github.com/coffee-script/) for [Node.js](http://nodejs.org/)\n\nDOM emulation by Elijah Insua's [JSDOM](http://jsdom.org/)\n\nHTML5 parsing by Aria Stewart's [HTML5](https://github.com/aredridel/html5)\n\nCSS selectors by John Resig's [Sizzle.js](http://sizzlejs.com/)\n\nXPath support using Google's [AJAXSLT](http://code.google.com/p/ajaxslt/)\n\nMagical Zombie Girl by [Toho Scope](http://www.flickr.com/people/tohoscope/)\n\n\n## See Also\n\n**zombie-api**(7), **zombie-troubleshoot**(7), **zombie-selectors**(7), **zombie-changelog**(7), **zombie-todo**(7)\n", + "maintainers": [ + { + "name": "assaf", + "email": "assaf@labnotes.org" + } + ], + "time": { + "modified": "2011-12-13T19:28:27.936Z", + "created": "2011-12-07T07:01:04.405Z", + "0.12.1": "2011-12-07T07:01:07.184Z", + "0.12.2": "2011-12-13T03:56:29.183Z", + "0.12.3": "2011-12-13T19:28:27.936Z" + }, + "author": { + "name": "Assaf Arkin", + "email": "assaf@labnotes.org", + "url": "http://labnotes.org/" + }, + "repository": { + "type": "git", + "url": "git://github.com/assaf/zombie.git" + }, + "versions": { + "0.12.1": "http://registry.npmjs.org/zombie/0.12.1", + "0.12.2": "http://registry.npmjs.org/zombie/0.12.2", + "0.12.3": "http://registry.npmjs.org/zombie/0.12.3" + }, + "dist": { + "0.12.1": { + "shasum": "c8250ce332e8fedb6e2d6ba8d806907d88d284fc", + "tarball": "http://registry.npmjs.org/zombie/-/zombie-0.12.1.tgz" + }, + "0.12.2": { + "shasum": "947fe6bcfb1ad4728522967fde65daa8c1671eb7", + "tarball": "http://registry.npmjs.org/zombie/-/zombie-0.12.2.tgz" + }, + "0.12.3": { + "shasum": "fa0a8f411e21b1812171ed826810fd953af2fb3a", + "tarball": "http://registry.npmjs.org/zombie/-/zombie-0.12.3.tgz" + } + }, + "keywords": [ + "test", + "tests", + "testing", + "TDD", + "spec", + "specs", + "BDD", + "headless", + "browser", + "html", + "html5", + "dom", + "css", + "javascript", + "integration", + "ajax", + "full-stack", + "DSL" + ], + "url": "http://registry.npmjs.org/zombie/" + }, + "zombie-https": { + "name": "zombie-https", + "description": "Insanely fast, full-stack, headless browser testing using Node.js", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "diorahman", + "email": "diorahman@gmail.com" + } + ], + "time": { + "modified": "2011-06-10T01:07:36.098Z", + "created": "2011-06-10T01:07:33.811Z", + "0.0.1": "2011-06-10T01:07:36.098Z" + }, + "author": { + "name": "Assaf Arkin", + "email": "assaf@labnotes.org", + "url": "http://labnotes.org/" + }, + "repository": { + "type": "git", + "url": "https://assaf@github.com/assaf/zombie.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/zombie-https/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "a51594feb7f6a861da7584c038f899d55f49616c", + "tarball": "http://registry.npmjs.org/zombie-https/-/zombie-https-0.0.1.tgz" + } + }, + "keywords": [ + "test", + "tests", + "testing", + "TDD", + "spec", + "specs", + "BDD", + "headless", + "browser", + "html", + "html5", + "dom", + "css", + "javascript", + "integration", + "ajax", + "full-stack" + ], + "url": "http://registry.npmjs.org/zombie-https/" + }, + "zoneinfo": { + "name": "zoneinfo", + "description": "Library to parse zoneinfo files for use with a wrapper around Date objects.", + "dist-tags": { + "latest": "0.1.7" + }, + "maintainers": [ + { + "name": "gsmcwhirter", + "email": "greg@ideafreemonoid.org" + } + ], + "time": { + "modified": "2011-11-08T16:32:42.254Z", + "created": "2011-02-22T23:25:57.393Z", + "0.1.0": "2011-02-22T23:25:58.032Z", + "0.1.1": "2011-02-22T23:29:12.653Z", + "0.1.2": "2011-02-22T23:42:38.596Z", + "0.1.3": "2011-05-05T19:29:35.079Z", + "0.1.4": "2011-06-05T02:03:40.012Z", + "0.1.5": "2011-08-12T19:08:56.716Z", + "0.1.6": "2011-09-21T15:38:58.256Z", + "0.1.7": "2011-11-08T16:32:42.254Z" + }, + "author": { + "name": "Gregory McWhirter", + "email": "greg@ideafreemonoid.org", + "url": "http://ideafreemonoid.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/gsmcwhirter/node-zoneinfo.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/zoneinfo/0.1.0", + "0.1.1": "http://registry.npmjs.org/zoneinfo/0.1.1", + "0.1.2": "http://registry.npmjs.org/zoneinfo/0.1.2", + "0.1.3": "http://registry.npmjs.org/zoneinfo/0.1.3", + "0.1.4": "http://registry.npmjs.org/zoneinfo/0.1.4", + "0.1.5": "http://registry.npmjs.org/zoneinfo/0.1.5", + "0.1.6": "http://registry.npmjs.org/zoneinfo/0.1.6", + "0.1.7": "http://registry.npmjs.org/zoneinfo/0.1.7" + }, + "dist": { + "0.1.0": { + "shasum": "02bfada5190495a7418f4015d055762448f0da9c", + "tarball": "http://registry.npmjs.org/zoneinfo/-/zoneinfo-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "4514472bac38bf095074168eedd9264c1ed646dc", + "tarball": "http://registry.npmjs.org/zoneinfo/-/zoneinfo-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "770692d7d8c8d312e574516c08aee29ff9739dfe", + "tarball": "http://registry.npmjs.org/zoneinfo/-/zoneinfo-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "e465fbda9ff10a4978158769d3a34b7e2e45531b", + "tarball": "http://registry.npmjs.org/zoneinfo/-/zoneinfo-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "e2372784b7706b7089277039dd89417bc9378846", + "tarball": "http://registry.npmjs.org/zoneinfo/-/zoneinfo-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "68795f9ac6076f93e7770b6971cd9cf4580f8aaa", + "tarball": "http://registry.npmjs.org/zoneinfo/-/zoneinfo-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "eba6ef121939de52135b88f656b79116be5d3d7d", + "tarball": "http://registry.npmjs.org/zoneinfo/-/zoneinfo-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "5568c62d1d7a9591dd2c1a39319a19ed53bd41f8", + "tarball": "http://registry.npmjs.org/zoneinfo/-/zoneinfo-0.1.7.tgz" + } + }, + "url": "http://registry.npmjs.org/zoneinfo/" + }, + "zookeeper": { + "name": "zookeeper", + "description": "apache zookeeper client for node.js (zookeeper async API >= 3.3.1)", + "dist-tags": { + "latest": "3.3.3-0" + }, + "maintainers": [ + { + "name": "woodya", + "email": "woody.anderson@gmail.com" + } + ], + "time": { + "modified": "2011-04-11T04:19:38.843Z", + "created": "2011-01-06T09:21:27.753Z", + "3.3.2-1": "2011-01-06T09:21:28.100Z", + "3.3.2-2": "2011-01-10T01:31:17.466Z", + "3.3.2-3": "2011-02-20T18:54:57.806Z", + "3.3.2-4": "2011-04-11T03:47:10.824Z", + "3.3.3-0": "2011-04-11T04:19:38.843Z" + }, + "author": { + "name": "Yuri Finkelstein", + "email": "yurif2003@yahoo.com" + }, + "repository": { + "type": "git", + "url": "https://github.com/yfinkelstein/node-zookeeper.git" + }, + "versions": { + "3.3.2-1": "http://registry.npmjs.org/zookeeper/3.3.2-1", + "3.3.2-2": "http://registry.npmjs.org/zookeeper/3.3.2-2", + "3.3.2-3": "http://registry.npmjs.org/zookeeper/3.3.2-3", + "3.3.2-4": "http://registry.npmjs.org/zookeeper/3.3.2-4", + "3.3.3-0": "http://registry.npmjs.org/zookeeper/3.3.3-0" + }, + "dist": { + "3.3.2-1": { + "tarball": "http://registry.npmjs.org/zookeeper/-/zookeeper-3.3.2-1.tgz" + }, + "3.3.2-2": { + "tarball": "http://registry.npmjs.org/zookeeper/-/zookeeper-3.3.2-2.tgz" + }, + "3.3.2-3": { + "tarball": "http://registry.npmjs.org/zookeeper/-/zookeeper-3.3.2-3.tgz" + }, + "3.3.2-4": { + "tarball": "http://registry.npmjs.org/zookeeper/-/zookeeper-3.3.2-4.tgz" + }, + "3.3.3-0": { + "tarball": "http://registry.npmjs.org/zookeeper/-/zookeeper-3.3.3-0.tgz" + } + }, + "keywords": [ + "apache", + "zookeeper", + "client" + ], + "url": "http://registry.npmjs.org/zookeeper/" + }, + "zookeeper-ddopson": { + "name": "zookeeper-ddopson", + "description": "apache zookeeper client (zookeeper async API >= 3.4.0)", + "dist-tags": { + "latest": "4.1.0" + }, + "readme": "# Overview\n\nnode-zookeeper - A Node.js client for Apache Zookeeper.\n\nThis module is implemented on top of the ZooKeeper C API; consult the [ZK Reference](http://zookeeper.apache.org/doc/r3.4.0/index.html) for further details on behavior.\n\n# Example\n\n```javascript\nvar ZK = require (\"zookeeper\");\nvar zk = new ZK();\nzk.init ({connect:\"localhost:2181\", timeout:200000, debug_level:ZK.ZOO_LOG_LEVEL_WARNING, host_order_deterministic:false});\nzk.on ('connect', function (zkk) {\n console.log (\"zk session established, id=%s\", zkk.client_id);\n zkk.a_create (\"/node.js1\", \"some value\", ZK.ZOO_SEQUENCE | ZK.ZOO_EPHEMERAL, function (rc, error, path) {\n if (rc != 0)\n console.log (\"zk node create result: %d, error: '%s', path=%s\", rc, error, path);\n else {\n console.log (\"created zk node %s\", path);\n process.nextTick(function () {\n zkk.close ();\n });\n }\n });\n});\n```\n\n# API Reference\n\n### Methods ###\n\n* init ( options )\n* close ( )\n* a_create ( path, data, flags, path_cb )\n* a_exists ( path, watch, stat_cb )\n* a_get ( path, watch, data_cb )\n* a_get_children ( path, watch, child_cb )\n* a_get_children2 ( path, watch, child2_cb )\n* a_set ( path, data, version, stat_cb )\n* a_delete`_` ( path, version, void_cb )\n * (trailing `_` is added to avoid conflict with reserved word `_delete_` since zk_promise.js strips off prefix `a_` from all operations)\n\n*The watcher methods are forward-looking subscriptions that can recieve multiple callbacks whenever a matching event occurs.*\n\n* aw_exists ( path, watch_cb, stat_cb )\n* aw_get ( path, watch_cb, data_cb )\n* aw_get_children ( path, watch_cb, child_cb )\n* aw_get_children2 ( path, watch_cb, child2_cb )\n\n### Callback Signatures ###\n\n * path_cb : function ( rc, error, path )\n * stat_cb : function ( rc, error, stat )\n * data_cb : function ( rc, error, stat, data )\n * child_cb : function ( rc, error, children )\n * child2_cb : function ( rc, error, children, stat )\n * void_cb : function ( rc, error )\n * watch_cb : function ( type, state, path )\n\n### Input Parameters ###\n\n * options : object. valid keys: { connect, timeout, debug_level, host_order_deterministic, data_as_buffer}\n * path : string\n * data : string or Buffer\n * flags : int32\n * version : int32\n * watch : boolean\n\n### Output Parameters ###\n\n * path is a string\n * data is either a Buffer (default), or a string (this is controlled by data_as_buffer = true/false)\n * children is an array of strings\n * rc is an int (error codes from zk api)\n * error is a string (error string from zk api)\n * type is an int event type (from zk api)\n * state is an int (state when the watcher fired from zk api)\n * stat is an object with the following attributes:\n * long czxid // created zxid\n * long mzxid // last modified zxid\n * long ctime // created\n * long mtime // last modified\n * int version // version\n * int cversion // child version\n * int aversion // acl version\n * string ephemeralOwner // owner session id if ephemeral, 0 otw\n * int dataLength //length of the data in the node\n * int numChildren //number of children of this node\n * long pzxid // last modified children\n\n\nSession state machine is well described in Zookeeper docs, i.e.\n![here](http://hadoop.apache.org/zookeeper/docs/r3.3.1/images/state_dia.jpg \"State Diagram\")\n\n# Limitations\n* no zookeeper ACL support\n* no support for authentication\n* tests are not standalone, must run a zk server (easiest if you run at localhost:2181, if not you must pass the connect string to the tests)\n* only asynchronous ZK methods are implemented. Hey, this is node.js ... no sync calls are allowed\n\n# Implementation Notes\n\n### NOTE on Module Status (DDOPSON-2011-11-30):\n* I ported this module to Node v0.6.0. I did my best to retain compatibility with Node v0.4.x. File bugs if you find any.\n* I have also worked to normalized the API style to be more conformant with Node conventions. Again, I did my best to keep backwards compatibility with the old version. File bugs if you find any.\n* The test coverage is pretty spotty. It would be really great if someone converted the tests to Vows and / or using a mock instead of depending on a live ZK server. I can't test and don't really trust the \"promise\" stuff in this module, but the core module itself works and makes my tests pass on downstream dependencies.\n\nFixes:\n* Node v0.6.0 compatibility - There is no native EventEmitter class anymore. Need a JS shim.\n* Node v0.6.0 compatibility - MODULE_INIT macro just plain doesn't work. not sure why, but an init function works just fine.\n* Node v0.6.0 compatibility - 'sys' ==> 'util'\n* Node v0.6.0 compatibility - There was an issue with the EV_A macro in yield(); was able to comment it out without harming behavior\n* events should be strings like 'connect' instead of ZK.on_connected. follow convention here.\n* no sense in \"require('zookeeper').ZooKeeper\" instead of simply \"require('zookeeper')\"\n\nTODO:\n* convert error codes to the names of the constants (eg, ZOO_CONNECT_FAIL instead of -110).\n* method names should map to convention. The \"a_method\" pattern is quite redundant in node.\n* Init should be called \"connect\", and should take a callback. Forcing clients to use the events is awkward and error prone\n* Why do the watchers take two callbacks?\n\n\n### v0.2.x ==> v0.4.x Transition\nData coming out of ZooKeepr (in callbacks) will now default to being Buffer objects. The main ZK handle now has a boolean attribute called 'data_as_buffer', which defaults to true. If you are storing strings only, as was only allowed in the initial implementation, or you wish to have data in callbacks arrive as strings, you add 'data_as_buffer:false' to the init options, or add 'zk.data_as_buffer = false;' before using the handle. The behavior defaults to Buffer objects because this aligns more closely with ZooKeeper itself which uses byte arrays. They are interchangable on input, if the input is a Buffer it will be used directly, otherwise the toString() of the input is used (this will work with utf8 data as well) regardless of mode.\n\nWith the new Buffer changes in the 0.3+ and 0.4+ branches, these will be internal 'SlowBuffer' objects, and you should use Buffer.isBuffer if you are checking the type, as 'instanceof Buffer' will return false.\n\n### yfinkelstein's original implementation notes\n\n* Zookeeper C API library comes in 2 flavours: single-threaded and multi-threaded. For node.js, single-threaded library provides the most sense since all events coming from ZK responses have to be dispatched to the main JS thread.\n* The C++ code uses the same logging facility that ZK C API uses internally. Hence zk_log.h file checked into this project. The file is considered ZK internal and is not installed into /usr/local/include\n* Multiple simultaneous ZK connections are supported and tested\n* All ZK constants are exposed as read-only properties of the ZooKeeper function, like ZK.ZOO_EPHEMERAL\n* All ZK API methods including watchers are supported.\n* lib/zk_promise.js is an optional module that makes use of the very cool **node-promise** library;\n see tests/zk_test_shootout_promise.js for illustration of how it can simplify coding. Isn't the following looking nicer?\n\n```javascript\nzk_r.on_connected().\nthen (\n function (zkk){\n console.log (\"reader on_connected: zk=%j\", zkk);\n return zkk.create (\"/node.js2\", \"some value\", ZK.ZOO_SEQUENCE | ZK.ZOO_EPHEMERAL);\n }\n).then (\n function (path) {\n zk_r.context.path = path;\n console.log (\"node created path=%s\", path);\n return zk_r.w_get (path,\n function (type, state, path_w) { // this is a watcher\n console.log (\"watcher for path %s triggered\", path_w);\n deferred_watcher_triggered.resolve (path_w);\n }\n );\n }\n).then (\n function (stat_and_value) { // this is the response from w_get above\n console.log (\"get node: stat=%j, value=%s\", stat_and_value[0], stat_and_value[1]);\n deferred_watcher_ready.resolve (zk_r.context.path);\n return deferred_watcher_triggered;\n }\n).then (\n function () {\n console.log (\"zk_reader is finished\");\n process.nextTick( function () {\n zk_r.close ();\n });\n }\n);\n```\n\n* Also compare test/zk_test_watcher.js with test/zk_test_watcher_promise.js\n* tests/zk_master.js and tests/zk_worker.js illustrate launching multiple ZK client workers using webworker library. You have to install it first with **\"npm install webworker\"**\n\n# Building the module by hand\n-----\n\n```javascript\nnode-waf configure build [--zookeeper zookeeper-version|prefix-path|'']\n```\n\n- note: for more details on the zk c-client build process, see [here](http://hadoop.apache.org/zookeeper/docs/r3.3.1/zookeeperProgrammers.html#C+Binding \"Build C client\")\n- note: node_compat.h (ala node-png) handles Buffer changes from .2 to .3+, so you should be able to build against older node versions.\n- note: if you wish to build with a specific version of zookeeper C lib, use --zookeeper VERSION (will download/build it) or --zookeeper PATH (if you have downloaded it and possibly made changes etc.)\n- note: if you wish to link against an existing zookeeper lib: use --zoookeeper '', and put your lib/headers it in /usr/local/ (or edit the wscript appropriately)\n- note: if you are building on osx and you get a compile error regarding \"mmacosx-version-min\", you may need to edit the wscript and remove it (anyone with the answer please explain/fix if possible).\n- note: if you are building on a platform for which the options are not working, please add a specific elif for that platform and create a pull request.\n\n# Known Bugs & Issues\n\nDDOPSON-2011-11-30 - are these issues still relevant? unknown.\n\n- The lib will segfault if you try to use a ZooKeeper intance after the on_closed event is delivered (possibly as a result of session timeout etc.) YOU MAY NOT re-use the closed ZooKeeper instance. You should allocate a new one and initialize it as a completely new client. Any and all watchers from your first instance are lost, though they may fire (before the on_close) see below.\n- Any established watches may/will be fired once each when/if your client is expired by the ZK server, the input arguments are observed to be: type=-1, state=1, path=\"\". Care should be taken to handle this differently than a \"real\" watch event if that matters to your application.\n- Otherwise, it just works!\n\n# See Also\n\n- [http://hadoop.apache.org/zookeeper/releases.html](http://hadoop.apache.org/zookeeper/releases.html)\n- [http://hadoop.apache.org/zookeeper/docs/r3.3.1/zookeeperProgrammers.html#ZooKeeper+C+client+API](http://hadoop.apache.org/zookeeper/docs/r3.3.1/zookeeperProgrammers.html#ZooKeeper+C+client+API)\n- [http://github.com/kriszyp/node-promise](http://github.com/kriszyp/node-promise)\n- [http://github.com/pgriess/node-webworker](http://github.com/pgriess/node-webworker)\n\n# Acknowledgments\n\n- **[node-promise](http://github.com/kriszyp/node-promise \"node-promise\") by kriszyp** is a fantastic tool imho. I wish it was distributed as a module so that I could easily 'require' it rather then\n resort to distribution by copy.\n- **[node-webworker](http://github.com/pgriess/node-webworker \"node-webworker\") by pgriess** is used to spawn multiple ZK workers in one of the tests.\n\n# LICENSE\n\nSee [LICENSE-MIT.txt](./LICENSE-MIT.txt) file in the top level folder.\n\n# ORIGINAL AUTHOR\n\nYuri Finkelstein (yurif2003 at yahoo dot com)\n", + "maintainers": [ + { + "name": "ddopson", + "email": "ddopson@gmail.com" + } + ], + "time": { + "modified": "2011-12-01T05:23:35.188Z", + "created": "2011-12-01T05:23:33.923Z", + "4.1.0": "2011-12-01T05:23:35.188Z" + }, + "author": { + "name": "Yuri Finkelstein", + "email": "yurif2003@yahoo.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/ddopson/node-zookeeper.git" + }, + "versions": { + "4.1.0": "http://registry.npmjs.org/zookeeper-ddopson/4.1.0" + }, + "dist": { + "4.1.0": { + "shasum": "1e8505b42d5f9d658509aa9e946089e2a083796a", + "tarball": "http://registry.npmjs.org/zookeeper-ddopson/-/zookeeper-ddopson-4.1.0.tgz" + } + }, + "keywords": [ + "apache", + "zookeeper", + "client" + ], + "url": "http://registry.npmjs.org/zookeeper-ddopson/" + }, + "zoom": { + "name": "zoom", + "dist-tags": { + "latest": "0.0.0" + }, + "maintainers": [ + { + "name": "samuraijack", + "email": "nickolay8@gmail.com" + } + ], + "time": { + "modified": "2011-09-05T06:38:48.113Z", + "created": "2011-09-05T06:38:47.300Z", + "0.0.0": "2011-09-05T06:38:48.113Z" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/zoom/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "6f025170b00e74ee860c0b73107c5ad028b1b502", + "tarball": "http://registry.npmjs.org/zoom/-/zoom-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/zoom/" + }, + "zsock": { + "name": "zsock", + "description": "A small library for opening Unix Domain Sockets in Solaris Zones.", + "dist-tags": { + "latest": "1.0.5" + }, + "maintainers": [ + { + "name": "mcavage", + "email": "mcavage@gmail.com" + } + ], + "time": { + "modified": "2011-05-20T20:05:30.800Z", + "created": "2011-04-24T18:48:22.090Z", + "1.0.0": "2011-04-24T18:48:22.417Z", + "1.0.1": "2011-04-29T15:37:38.488Z", + "1.0.2": "2011-04-29T21:27:16.738Z", + "1.0.3": "2011-05-10T23:50:50.090Z", + "1.0.4": "2011-05-20T17:37:38.423Z", + "1.0.5": "2011-05-20T20:05:30.800Z" + }, + "author": { + "name": "Mark Cavage", + "email": "mcavage@gmail.com", + "url": "http://www.joyent.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mcavage/node-zsock.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/zsock/1.0.0", + "1.0.1": "http://registry.npmjs.org/zsock/1.0.1", + "1.0.2": "http://registry.npmjs.org/zsock/1.0.2", + "1.0.3": "http://registry.npmjs.org/zsock/1.0.3", + "1.0.4": "http://registry.npmjs.org/zsock/1.0.4", + "1.0.5": "http://registry.npmjs.org/zsock/1.0.5" + }, + "dist": { + "1.0.0": { + "shasum": "7657fbde4f3039b6a51c617dc3d21ba18550ab40", + "tarball": "http://registry.npmjs.org/zsock/-/zsock-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "544574aaad468e117c79080d3789c67b21bcd192", + "tarball": "http://registry.npmjs.org/zsock/-/zsock-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "35b6cb7736edceaa375c4d9e3c01ad903f48f0f0", + "tarball": "http://registry.npmjs.org/zsock/-/zsock-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "3c1b29440f6315d97e69a4ed240b5161b7fa53e9", + "bin": { + "0.4-darwin-10.7.0": { + "shasum": "885e61846f86d15ee43cdcb8547ea24e5d18fe99", + "tarball": "http://registry.npmjs.org/zsock/-/zsock-1.0.3-0.4-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/zsock/-/zsock-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "83d519f6cf397fb50365fb8368944cacf3157c51", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.0": { + "shasum": "a118a7dac62ea29e6fbc3e6a85e6d2b82f1e16b1", + "tarball": "http://registry.npmjs.org/zsock/-/zsock-1.0.4-0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/zsock/-/zsock-1.0.4.tgz" + }, + "1.0.5": { + "shasum": "3a5b65d1b96596870b739a61ec44f2d76dd3eb16", + "bin": { + "0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.0": { + "shasum": "ac58933c18c93925e019fc04c10994782401172d", + "tarball": "http://registry.npmjs.org/zsock/-/zsock-1.0.5-0.4-ares1.7.4-ev4.4-openssl0.9.8l-v83.1.8.10-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/zsock/-/zsock-1.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/zsock/" + }, + "zutil": { + "name": "zutil", + "description": "A SunOS-specific wrapper over zone.h and libzonecfg.h APIs", + "dist-tags": { + "latest": "0.1.2" + }, + "maintainers": [ + { + "name": "mcavage", + "email": "mcavage@gmail.com" + } + ], + "time": { + "modified": "2011-06-08T00:07:17.858Z", + "created": "2011-04-28T23:50:33.705Z", + "0.1.0": "2011-04-28T23:50:34.322Z", + "0.1.1": "2011-05-10T23:44:00.537Z", + "0.1.2": "2011-06-08T00:07:17.858Z" + }, + "author": { + "name": "Mark Cavage", + "email": "mcavage@gmail.com", + "url": "http://www.joyent.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mcavage/node-zutil.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/zutil/0.1.0", + "0.1.1": "http://registry.npmjs.org/zutil/0.1.1", + "0.1.2": "http://registry.npmjs.org/zutil/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "aa7df143d658bb07bd00e042225b2b0f43611784", + "tarball": "http://registry.npmjs.org/zutil/-/zutil-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "09e3e5d9d57896dd04a721d479b76cd5ed8177d7", + "bin": { + "0.4-darwin-10.7.0": { + "shasum": "72281f89d0fd62a8745eba5ab69f2cda30af848d", + "tarball": "http://registry.npmjs.org/zutil/-/zutil-0.1.1-0.4-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/zutil/-/zutil-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "9a19b8d0f606c2304577db0dbb3fe6277164fa9c", + "bin": { + "0.4-darwin-10.7.0": { + "shasum": "15d17678aa2b0b18022bba8bdf0d7adf6261cc6a", + "tarball": "http://registry.npmjs.org/zutil/-/zutil-0.1.2-0.4-darwin-10.7.0.tgz" + } + }, + "tarball": "http://registry.npmjs.org/zutil/-/zutil-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/zutil/" + }, + "_etag": "\"AGJXRWBIAOFSAKAJAUOS9E1RW\"", + "_updated": 1323865408000, + "strf": { + "name": "strf", + "description": "string formater", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "jga", + "email": "me@jga.me" + } + ], + "time": { + "modified": "2011-12-08T05:02:12.429Z", + "created": "2011-12-08T05:02:10.831Z", + "0.0.1": "2011-12-08T05:02:12.429Z" + }, + "author": { + "name": "Greg Allen", + "email": "@jgaui", + "url": "http://jga.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/jgallen23/strf.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/strf/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "8869a0b66cecac1f9926eb9e5013901db79849f1", + "tarball": "http://registry.npmjs.org/strf/-/strf-0.0.1.tgz" + } + }, + "keywords": [ + "ender", + "string", + "format" + ], + "url": "http://registry.npmjs.org/strf/" + }, + "npm-proxy": { + "name": "npm-proxy", + "description": "A proxy server for npm to publish packages to a child/private registry and install packages from a child or parent/public registry (if the child doesn't have the package).", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "A proxy server for npm to publish packages to a child/private registry\nand install packages from a child or parent/public registry (if the\nchild doesn't have the package).\n\n## Install\n\n### Local\n\n1. Run (force install because [http-proxy](https://github.com/nodejitsu/node-http-proxy) doesn't support node 0.6.x):\n\n npm install npm-proxy --force\n\n1. Run locally:\n\n\t./bin/npm-proxy --child-registry-target http://mysecret.npmjs.org:5984\n\n### As a couchdb os process deamon on the child npm registry:\n\n1. Install npm-proxy globally\n\n sudo npm install -g npm-proxy --force\n\n1. Add the following line to the `os_daemons` section of\n`/etc/couchdb/local.ini` on the child npm registry:\n\n npm_proxy = /usr/bin/npm-proxy --child-registry-target http://mysecret.npmjs.org:5984\n\n1. Restart couchdb and make sure npm-proxy started with it\n\n## Usage\n\n Usage: npm-proxy [options]\n\n Options:\n\n -h, --help output usage information\n -V, --version output the version number\n -t, --target [localhost:8080] hostname and port to listen on\n -c, --child-registry-target [localhost:5984] NPM registry to push packages and pull from first\n -p, --parent-registry-target [registry.npmjs.org:80] NPM registry to pull packages from if the child doesn't have it\n\nOnce the proxy is running point npm to it using any of the methods\nfrom \"Using the registry with the npm client\" section of the\n[npmjs.org](http://github.com/isaacs/npmjs.org) project.\n", + "maintainers": [ + { + "name": "g-k", + "email": "gregg@aweber.com" + } + ], + "time": { + "modified": "2011-12-08T06:43:32.873Z", + "created": "2011-12-08T06:43:32.103Z", + "0.0.1": "2011-12-08T06:43:32.873Z" + }, + "author": { + "name": "Greg G", + "email": "gregg@aweber.com" + }, + "repository": { + "url": "http://github.com/g-k/npm-proxy/" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/npm-proxy/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "751bca1dbe72cc27e1ed8e34b09f884254b1db77", + "tarball": "http://registry.npmjs.org/npm-proxy/-/npm-proxy-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/npm-proxy/" + }, + "mpns": { + "name": "mpns", + "description": "A Node.js interface to the Microsoft Push Notification Service (MPNS) for Windows Phone.", + "dist-tags": { + "latest": "1.0.0" + }, + "readme": "#mpns\r\n\r\nSend toast and live tile updates to Windows Phones through the Microsoft Push Notification Service (MPNS). Intended for the cloud and Node.js.\r\n\r\nThis is one of my very first Node.js projects so feedback and patience appreciated. I hope it helps!\r\n\r\n## Installation\r\n\r\nAs a submodule of your Git project\r\n\r\n\t$ git submodule add http://github.com/jeffwilcox/mpns.git mpns\r\n\t$ git submodule update --init\r\n\r\n## Usage\r\n### Load in the module\r\n\r\n\tvar mpns = require('mpns');\r\n\r\n### Create a new notification\r\nYou can create a new notification object (either of type live tile or toast). Raw notifications are not yet supported.\r\n\r\nProperty names for the notification object directly correlate to the names used in the MPNS XML payload as documented on MSDN. Properties can either be set directly on the object (such as toast.text1) or by passing the values in as options to the constructor.\r\n\r\n\toptions = { text1: 'Hello!'\r\n\t\t\t\t, text2: 'Great to see you today.'\r\n\t\t\t\t};\r\n\r\n\tvar toast = new mpns.toast(options);\r\n\r\n### Sending a notification\r\nTo send a notification simply call the `send` method on the object. The first parameter is the HTTP URI to the MPNS endpoint of the client you'd like to send the notification to. You may provide an optional callback function as well.\r\n\r\n\ttoast.send('http://sn1.notify.live.net/throttledthirdparty/01.00/YOUR_ENDPOINT_HERE');\r\n\r\nYou can also use the other syntax. Let's send a live tile update!\r\n\r\n\tvar toast = new mpns.liveTile();\r\n\ttoast.title: 'My App';\r\n\ttoast.backgroundUri: 'http://sample.com/image.png';\r\n\ttoast.send('http://sn1.notify.live.net/throttledthirdparty/01.00/YOUR_ENDPOINT_HERE', function(err,res) {\r\n\t\tif (err) console.dir(err);\r\n\t\telse console.dir(res);\r\n\t});\r\n\r\n### Results object information\r\nA results object is passed back through the callback and has important information from MPNS.\r\n\r\n- `deviceConnectionStatus`: The device status as reported by the service.\r\n- `notificationStatus`: The status of your provided notification.\r\n- `subscriptionStatus`: The status of the subscription URI.\r\n\r\nThe object will also contain all the key fields for your toast or live tile update, plus the pushType. This makes it easy to store this information in a history log somewhere in the ether.\r\n\r\n### Handling Errors\r\nIt is very important as a consumer that you store appropriate actionable data about failed push notification attempts. As a result, the callback's first parameter (err) is set to the standard results object as well as a few additional fields depending on the returned status code from the server.\r\n\r\nRemember to take action on that information in order to be a good MPNS citizen. These values may be set in the error object and of interest to you:\r\n\r\n- `minutesToDelay`: If this is present, it is the suggested minimum amount of time that you should wait until making another request to the same subscription URI. For HTTP 412s, for example, the minimum time is one hour and so the returned value defaults to 61.\r\n- `shouldDeleteChannel`: If this is set to `true`, the channel is gone according to MPNS. Delete it from your channel/subscription database and never look back.\r\n- `error`: If an error is captured while trying to make the HTTP request, this will be set to that error callback instance.\r\n\r\n### A note about Windows Phone 7.5\r\nThis module permits sending toasts and tiles specific to Mango. If you include the `param` field when sending a push to a 7.0 (first Windows Phone release) phone, unfortunately it may not be received, or will error out the subscription.\r\n\r\nTake care when registering your subscription channels with your cloud service to include the application platform version of the app (7.1 for Mango apps). To rock, maybe also grab the OS version and deployed app version. That information can be helpful when supporting customers.\r\n\r\n## Credits\r\n\r\nWritten and maintained by [Jeff Wilcox].\r\n\r\n## License\r\n\r\nCopyright 2011 Jeff Wilcox\r\n\r\nLicensed under the Apache License, Version 2.0 (the \"License\");\r\nyou may not use this file except in compliance with the License.\r\nYou may obtain a copy of the License at\r\n\r\n http://www.apache.org/licenses/LICENSE-2.0\r\n\r\nUnless required by applicable law or agreed to in writing, software\r\ndistributed under the License is distributed on an \"AS IS\" BASIS,\r\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\nSee the License for the specific language governing permissions and\r\nlimitations under the License.\r\n\r\n[Jeff Wilcox]: http://www.jeff.wilcox.name\r\n[npm]: http://github.com/isaacs/npm\r\n\r\n## Changelog\r\n\r\n1.0.0:\r\n\r\n* Initial implementation offering basic live tile and toast (no raw) support.\r\n", + "maintainers": [ + { + "name": "jeffwilcox", + "email": "jeffwilcox@gmail.com" + } + ], + "time": { + "modified": "2011-12-08T07:24:04.828Z", + "created": "2011-12-08T07:24:03.678Z", + "1.0.0": "2011-12-08T07:24:04.828Z" + }, + "author": { + "name": "Jeff Wilcox", + "email": "jeffwilcox+github@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/jeffwilcox/mpns.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/mpns/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "f80692ab3cd8454d31e7043f3e9346be1749e4ba", + "tarball": "http://registry.npmjs.org/mpns/-/mpns-1.0.0.tgz" + } + }, + "keywords": [ + "mpns", + "notifications", + "wp", + "windows phone", + "microsoft", + "push", + "push notifications" + ], + "url": "http://registry.npmjs.org/mpns/" + }, + "video-thumb": { + "name": "video-thumb", + "description": "Extract snapshots from video at a given time. Requires ffmpeg.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "vdemedes", + "email": "sbioko@gmail.com" + } + ], + "time": { + "modified": "2011-12-08T11:03:41.684Z", + "created": "2011-12-08T11:03:40.107Z", + "0.0.1": "2011-12-08T11:03:41.684Z" + }, + "author": { + "name": "Vadim Demedes", + "email": "sbioko@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/video-thumb/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "74e93f7ad38af6d8894e5a0c52c84bb67b29fdd9", + "tarball": "http://registry.npmjs.org/video-thumb/-/video-thumb-0.0.1.tgz" + } + }, + "keywords": [ + "ffmpeg", + "video", + "thumb", + "thumbnail", + "video thumbnail" + ], + "url": "http://registry.npmjs.org/video-thumb/" + }, + "stacktrace": { + "name": "stacktrace", + "description": "Lets you access v8::StackTrace", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "kuebk", + "email": "kuebzky@gmail.com" + } + ], + "time": { + "modified": "2011-12-08T11:51:47.087Z", + "created": "2011-12-08T11:35:57.060Z", + "1.0.0": "2011-12-08T11:51:47.087Z" + }, + "author": { + "name": "Jakub Lekstan", + "email": "kuebzky@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/kuebk/node-stack.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/stacktrace/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "8310c2ec8195a461b0f955685c37307d74cfe826", + "tarball": "http://registry.npmjs.org/stacktrace/-/stacktrace-1.0.0.tgz" + } + }, + "keywords": [ + "stack", + "trace", + "call", + "dump" + ], + "url": "http://registry.npmjs.org/stacktrace/" + }, + "sreeix-cradle": { + "name": "sreeix-cradle", + "description": "the high-level, caching, CouchDB library", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "cradle\n======\n\nA high-level, caching, CouchDB client for Node.js\n\nintroduction\n------------\n\nCradle is an asynchronous javascript client for [CouchDB](http://couchdb.apache.org).\nIt is somewhat higher-level than most other CouchDB clients, requiring a little less knowledge of CouchDB's REST API.\nCradle also has built-in write-through caching, giving you an extra level of speed, and making document _updates_ and _deletion_ easier.\nCradle was built from the love of CouchDB and Node.js, and tries to make the most out of this wonderful marriage of technologies.\n\nphilosophy\n----------\n\nThe key concept here is the common ground shared by CouchDB and Node.js, that is, _javascript_. The other important aspect of this marriage is the asynchronous behaviors of both these technologies. Cradle tries to make use of these symmetries, whenever it can.\nCradle's API, although closely knit with CouchDB's, isn't overly so. Whenever the API can be abstracted in a friendlier, simpler way, that's the route it takes. So even though a large part of the `Cradle <--> CouchDB` mappings are one to one, some Cradle functions, such as `save()`, can perform more than one operation, depending on how they are used.\n\nsynopsis\n--------\n\n``` js\n var cradle = require('cradle');\n var db = new(cradle.Connection)().database('starwars');\n\n db.get('vader', function (err, doc) {\n doc.name; // 'Darth Vader'\n assert.equal(doc.force, 'dark');\n });\n\n db.save('skywalker', {\n force: 'light',\n name: 'Luke Skywalker'\n }, function (err, res) {\n if (err) {\n // Handle error\n } else {\n // Handle success\n }\n });\n```\n\ninstallation\n------------\n\n``` bash\n $ npm install cradle\n```\n\nAPI\n---\n\nCradle's API builds right on top of Node's asynch API. Every asynch method takes a callback as its last argument. The return value is an `event.EventEmitter`, so listeners can also be optionally added.\n\n### Opening a connection ###\n\n``` js\n new(cradle.Connection)('http://living-room.couch', 5984, {\n cache: true,\n raw: false\n });\n```\n\n_Defaults to `127.0.0.1:5984`_\n\nNote that you can also use `cradle.setup` to set a global configuration:\n\n``` js\n cradle.setup({\n host: 'living-room.couch',\n cache: true, \n raw: false\n });\n\n var c = new(cradle.Connection),\n cc = new(cradle.Connection)('173.45.66.92');\n```\n\n### creating a database ###\n\n``` js\n var db = c.database('starwars');\n db.create();\n```\n\n#### checking for database existence ####\n\nYou can check if a database exists with the `exists()` method.\n\n``` js\n db.exists(function (err, exists) {\n if (err) {\n console.log('error', err);\n } else if (exists) {\n console.log('the force is with you.');\n } else {\n console.log('database does not exists.');\n db.create();\n /* populate design documents */\n }\n });\n```\n\n### destroy a database ###\n\n``` js\n db.destroy(cb);\n```\n\n### fetching a document _(GET)_ ###\n\n``` js\n db.get('vader', function (err, doc) {\n sys.puts(doc);\n });\n```\n\n> If you want to get a specific revision for that document, you can pass it as the 2nd parameter to `get()`.\n\nCradle is also able to fetch multiple documents if you have a list of ids, just pass an array to `get`:\n\n``` js\n db.get(['luke', 'vader'], function (err, doc) { ... });\n```\n\n### Querying a view ###\n\n``` js\n db.view('characters/all', function (err, res) {\n res.forEach(function (row) {\n sys.puts(row.name + \" is on the \" +\n row.force + \" side of the force.\");\n });\n });\n```\n\n#### Querying a row with a specific key ####\nLets suppose that you have a design document that you've created:\n\n``` js\n db.save('_design/user', {\n views: {\n byUsername: {\n map: 'function (doc) { if (doc.resource === 'User') { emit(doc.username, doc) } }'\n }\n }\n });\n```\n\nIn CouchDB you could query this view directly by making an HTTP request to:\n\n```\n /_design/User/_view/byUsername/?key=\"luke\"\n```\n\nIn `cradle` you can make this same query by using the `.view()` database function: \n\n``` js\n db.view('user/byUsername', { key: 'luke' }, function (err, doc) {\n console.dir(doc);\n });\n```\n\n### creating/updating documents ###\n\nIn general, document creation is done with the `save()` method, while updating is done with `merge()`.\n\n#### creating with an id _(PUT)_ ####\n\n``` js\n db.save('vader', {\n name: 'darth', force: 'dark'\n }, function (err, res) {\n // Handle response\n });\n```\n\n#### creating without an id _(POST)_ ####\n\n``` js\n db.save({\n force: 'dark', name: 'Darth'\n }, function (err, res) {\n // Handle response\n });\n```\n\n#### updating an existing document with the revision ####\n\n``` js\n db.save('luke', '1-94B6F82', {\n force: 'dark', name: 'Luke'\n }, function (err, res) {\n // Handle response\n });\n```\n\nNote that when saving a document this way, CouchDB overwrites the existing document with the new one. If you want to update only certain fields of the document, you have to fetch it first (with `get`), make your changes, then resave the modified document with the above method.\n\nIf you only want to update one or more attributes, and leave the others untouched, you can use the `merge()` method:\n\n``` js\n db.merge('luke', {jedi: true}, function (err, res) {\n // Luke is now a jedi,\n // but remains on the dark side of the force.\n });\n```\n\nNote that we didn't pass a `_rev`, this only works because we previously saved a full version of 'luke', and the `cache` option is enabled.\n\n#### bulk insertion ####\n\nIf you want to insert more than one document at a time, for performance reasons, you can pass an array to `save()`:\n\n``` js\n db.save([\n { name: 'Yoda' },\n { name: 'Han Solo' },\n { name: 'Leia' }\n ], function (err, res) {\n // Handle response\n });\n```\n\n#### creating views ####\n\nHere we create a design document named 'characters', with two views: 'all' and 'darkside'.\n\n``` js\n db.save('_design/characters', {\n all: {\n map: function (doc) {\n if (doc.name) emit(doc.name, doc);\n }\n },\n darkside: {\n map: function (doc) {\n if (doc.name && doc.force == 'dark') {\n emit(null, doc);\n }\n }\n }\n });\n```\n\nThese views can later be queried with `db.view('characters/all')`, for example.\n\nHere we create a temporary view. WARNING: do not use this in production as it is\nextremely slow (use it to test views).\n\n``` js\n db.temporaryView({\n map: function (doc) {\n if (doc.color) emit(doc._id, doc);\n }\n }, function (err, res) {\n if (err) console.log(err);\n console.log(res);\n });\n```\n\n### creating validation ###\n\nwhen saving a design document, cradle guesses you want to create a view, mention views explicitly to work around this.\n\n``` js\n db.save('_design/laws', {\n views: {},\n validate_doc_update: \n function (newDoc, oldDoc, usrCtx) {\n if(! /^(light|dark|neutral)$/(newDoc.force))\n throw { error: \"invalid value\", reason:\"force must be dark, light, or neutral\" }\n }\n }\n });\n```\n\n### removing documents _(DELETE)_ ###\n\nTo remove a document, you call the `remove()` method, passing the latest document revision.\n\n``` js\n db.remove('luke', '1-94B6F82', function (err, res) {\n // Handle response\n });\n```\n\n\nIf `remove` is called without a revision, and the document was recently fetched from the database, it will attempt to use the cached document's revision, providing caching is enabled.\n\nConnecting with authentication and SSL\n--------------------------------------\n\n``` js\n var connection = new(cradle.Connection)('https://couch.io', 443, {\n auth: { username: 'john', password: 'fha82l' }\n });\n```\n\nor\n\n``` js\n var connection = new(cradle.Connection)('couch.io', 443, {\n secure: true,\n auth: { username: 'john', password: 'fha82l' }\n });\n```\n\nChanges API\n-----------\n\nFor a one-time `_changes` query, simply call `db.changes` with a callback:\n\n``` js\n db.changes(function (list) {\n list.forEach(function (change) { console.log(change) });\n });\n```\n\nOr if you want to see changes since a specific sequence number:\n\n``` js\n db.changes({ since: 42 }, function (list) {\n ...\n });\n```\n\nThe callback will receive the list of changes as an *Array*. If you want to include\nthe affected documents, simply pass `include_docs: true` in the options.\n\n### Streaming #\n\nYou can also *stream* changes, by calling `db.changes` without the callback:\n\n``` js\n db.changes({ since: 42 }).on('response', function (res) {\n res.on('data', function (change) {\n console.log(change);\n });\n res.on('end', function () { ... });\n });\n```\n\nIn this case, it returns an `EventEmitter`, which behaves very similarly to node's `Stream` API.\n\n\nOther API methods\n-----------------\n\n### CouchDB Server level ###\n\n``` js\n new(cradle.Connection)().*\n```\n\n- `databases()`: Get list of databases\n- `config()`: Get server config\n- `info()`: Get server information\n- `stats()`: Statistics overview\n- `activeTasks()`: Get list of currently active tasks\n- `uuids(count)`: Get _count_ list of UUIDs\n- `replicate(options)`: Replicate a database.\n\n### database level ###\n\n``` js\n new(cradle.Connection)().database('starwars').*\n```\n\n- `info()`: Database information\n- `all()`: Get all documents\n- `allBySeq()`: Get all documents by sequence\n- `compact()`: Compact database\n- `viewCleanup()`: Cleanup old view data\n- `replicate(target, options)`: Replicate this database to `target`.\n\n", + "maintainers": [ + { + "name": "sreeix", + "email": "sreeix@gmail.com" + } + ], + "time": { + "modified": "2011-12-08T12:58:46.196Z", + "created": "2011-12-08T12:58:42.145Z", + "0.0.1": "2011-12-08T12:58:46.196Z" + }, + "author": { + "name": "Alexis Sellier", + "email": "self@cloudhead.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/sreeix/cradle.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/sreeix-cradle/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "288bf35f6743d04a18e92b82eb766be224341926", + "tarball": "http://registry.npmjs.org/sreeix-cradle/-/sreeix-cradle-0.0.1.tgz" + } + }, + "keywords": [ + "couchdb", + "database", + "couch" + ], + "url": "http://registry.npmjs.org/sreeix-cradle/" + }, + "mysql-queues": { + "name": "mysql-queues", + "description": "Wraps 'mysql' to provide mulitple query queues, allowing support for multiple statements and transactions.", + "dist-tags": { + "latest": "0.2.0" + }, + "readme": "# node-mysql-queues\n\nAdd your own node-mysql query queues to support transactions and multiple statements\n\nFor use with Node.JS and node-mysql: https://github.com/felixge/node-mysql\n\n## Install\n\n`npm install mysql-queues`\n\n## Usage\n\n```javascript\nvar mysql = require('mysql');\nvar client = mysql.createClient({\n\tuser: 'root',\n\tpassword: 'root'\n});\n//Enable mysql-queues\nvar queues = require('mysql-queues');\nqueues(client);\n//Start running queries as normal...\nclient.query(...);\n\n//Now you want a separate queue?\nvar q = client.createQueue();\nq.query(...); \nq.query(...);\nq.execute();\n\nclient.query(...); //Will not execute until all queued queries completed.\n\n//Now you want a transaction?\nvar trans = client.startTransaction();\ntrans.query(\"INSERT...\", [x, y, z], function(err, info) {\n\tif(err)\n\t\ttrans.rollback();\n\telse\n\t\ttrans.query(\"UPDATE...\", [a, b, c, info.insertId], function(err) {\n\t\t\tif(err)\n\t\t\t\ttrans.rollback();\n\t\t\telse\n\t\t\t\ttrans.commit();\n\t\t});\n});\ntrans.execute();\n//No other queries will get executed until the transaction completes\nclient.query(\"SELECT ...\") //This won't execute until the transaction is COMPLETELY done (including callbacks)\n```\n\n## API\n\n#### `client.query(sql, [params, cb])`\n\nUse normally. Same as node-mysql, except that if a Queue is still pending\ncompletion, this query may be queued for later execution.\n\n#### `client.createQueue()`\n\nCreates a new query Queue.\n\n#### `client.startTransaction()`\n\nCreates a new query Queue with \"START TRANSACTION\" as the first queued query.\nThe Queue object will also have `commit()` and `rollback()` methods.\n\n#### `Queue.query(sql, [params, cb])`\n\nSame as node-mysql. This query will be queued for execution until `execute()`\nis called on the `Queue`.\n\n#### `Queue.execute()`\n\nExecutes all queries that were queued using `Queue.query`. Until all query\n*callbacks* complete, it is guaranteed that all queries in this Queue\nwill be executed in order, with no other queries intermixed. That is, during\nexecution of this query Queue, all queries executed using `client.query` will\nbe queued until this Queue is empty and all callbacks of this Queue have\nfinished executing. That means that a query added to a Queue can also queue\na query using `Queue.query`, and it will be executed before any `client.query`\ncall. Thus, nested query queueing is supported in query callbacks, allowing\nsupport for transactions and more.\nSee the source code for further documentation.\n\nNote: Once `execute()` is called and all queries have completed, the Queue\nwill be empty again. You may continue to use `Queue.query` and `Queue.execute`\nto queue and execute more queries. However, as noted below, you should\n*never* reuse a Queue created by `client.startTransaction`\n\n#### `Queue.commit()`\n\nAvailable only if this Queue was created with `client.startTransaction`.\nThis queues 'COMMIT' and calls `execute()`\nYou should call either `commit()` or `rollback()` exactly once. Once you call\n`commit()` on this Queue, you should discard it.\n\nIf you do not call `commit()` or `rollback()` and the Queue has completed\nexecution, `commit()` will be called automatically; however, one should\n**NOT** rely on this behavior.\n\n#### `Queue.rollback()`\n\nAvailable only if this Queue was created with `client.startTransaction`.\nThis queues 'ROLLBACK' and calls `execute()`\nYou should call either `commit()` or `rollback()` exactly once. Once you call\n`rollback()` on this Queue, you should discard it.\n", + "maintainers": [ + { + "name": "bminer", + "email": "miner.blake@gmail.com" + } + ], + "time": { + "modified": "2011-12-08T21:38:31.500Z", + "created": "2011-12-08T21:38:31.276Z", + "0.2.0": "2011-12-08T21:38:31.500Z" + }, + "author": { + "name": "Blake Miner", + "email": "miner.blake@gmail.com", + "url": "http://www.blakeminer.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/bminer/node-mysql-queues.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/mysql-queues/0.2.0" + }, + "dist": { + "0.2.0": { + "shasum": "d1e59b78188990a237b6df3ed3ea8256df2cb4dd", + "tarball": "http://registry.npmjs.org/mysql-queues/-/mysql-queues-0.2.0.tgz" + } + }, + "keywords": [ + "mysql", + "transaction", + "multiple statements", + "queue", + "query", + "database" + ], + "url": "http://registry.npmjs.org/mysql-queues/" + }, + "logme": { + "name": "logme", + "description": "Minimalistic stream logger", + "dist-tags": { + "latest": "0.2.2" + }, + "readme": "# Logme\n\nMinimalistic logger for Node.js.\n\n![screenshot](http://img853.imageshack.us/img853/5865/screenshot20111209at122.png)\n\n## Features.\n\n- Error levels\n- Tokens\n- Custom templates\n- Custom everything\n\n## How to install it?\n\n\t$ npm install logme\n\t\n## Neat. Now what?\n\n\tvar logme = require('logme');\n\tlogme.critical('The base is under attack');\n\n## Whaaaat?\n\nFor more complete examples see \"examples/\".\n\n## Tests.\n\nSure.\n\n\t$ npm install\n\t$ make test\n\n## Contributing to this library.\n\nAnytime.\n\n## Inspiration.\n\n- [log.js](https://github.com/visionmedia/log.js)\n- [express](https://github.com/visionmedia/express)\n- [mongoose](https://github.com/LearnBoost/mongoose)\n\n## License.\n\nMIT License.", + "maintainers": [ + { + "name": "vesln", + "email": "hi@vesln.com" + } + ], + "time": { + "modified": "2011-12-10T15:06:06.495Z", + "created": "2011-12-08T22:29:28.082Z", + "0.0.1": "2011-12-08T22:29:29.967Z", + "0.1.0": "2011-12-09T17:01:49.416Z", + "0.2.0": "2011-12-10T12:35:48.829Z", + "0.2.1": "2011-12-10T12:49:36.132Z", + "0.2.2": "2011-12-10T15:06:06.495Z" + }, + "author": { + "name": "Veselin Todorov", + "email": "hi@vesln.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/vesln/logme.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/logme/0.0.1", + "0.1.0": "http://registry.npmjs.org/logme/0.1.0", + "0.2.0": "http://registry.npmjs.org/logme/0.2.0", + "0.2.1": "http://registry.npmjs.org/logme/0.2.1", + "0.2.2": "http://registry.npmjs.org/logme/0.2.2" + }, + "dist": { + "0.0.1": { + "shasum": "b9b70943b988a52a530bdec5ed719307ccf02776", + "tarball": "http://registry.npmjs.org/logme/-/logme-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "cc1519641c42c275f4407ffd98af7d8aeaac2569", + "tarball": "http://registry.npmjs.org/logme/-/logme-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "932df693bb46b54163ed6012f47cb0608d2a422a", + "tarball": "http://registry.npmjs.org/logme/-/logme-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "ad2e440e2529b68aa97e3676589f16b826b303dc", + "tarball": "http://registry.npmjs.org/logme/-/logme-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "e689639fe688c5fc9622048dfe4bb6217d7c6b2b", + "tarball": "http://registry.npmjs.org/logme/-/logme-0.2.2.tgz" + } + }, + "keywords": [ + "logger", + "logging", + "log" + ], + "url": "http://registry.npmjs.org/logme/" + }, + "numscale": { + "name": "numscale", + "description": "Scale numbers and convert into pretty strings with suffixes", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "#numscale.js\n\nA Node.js module for converting numbers into pretty strings with suffixes\nto indicate scale (Kilo, Mega, Giga, etc.)\n\n##Examples:\n\n\t>var ns = require('./numscale');\n\t>var myThroughput = {value: 1000000000, powerOf: 10, maxLen: 5};\n\t>ns.scale(myThroughput)\n\t'1G'\n\n\t>var myCapacity = {value: 1073741824, powerOf: 2, maxLen: 5};\n\t>ns.scale(myCapacity)\n\t'1G'\n\n\t>var myCounter = {value: 654345443, powerOf: 10, maxLen: 6};\n\t>ns.scale(myCounter)\n\t'654.3M'\n\n\t>var myMemory = {value: 43322466, powerOf: 2, maxLen: 7};\n\t>ns.scale(myMemory)\n\t'41.316M'\n\n##Usage:\n\nThe scale() method takes an object argument. The members of the argument object\nare as follows:\n\n* value (required) - the number to be scaled and formatted\n* powerOf (optional) - either 2 or 10: sets scaling factor (defaults to 10)\n* maxLen (optional) - maximum length of the string to be returned (default 20)\n", + "maintainers": [ + { + "name": "mharsch", + "email": "mike@harschsystems.com" + } + ], + "time": { + "modified": "2011-12-08T22:44:38.935Z", + "created": "2011-12-08T22:44:38.802Z", + "0.0.1": "2011-12-08T22:44:38.935Z" + }, + "author": { + "name": "Michael Harsch", + "email": "mike@harschsystems.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mharsch/numscale.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/numscale/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "0d359f99a6d52656d13e5b697d53a76eedebaf65", + "tarball": "http://registry.npmjs.org/numscale/-/numscale-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/numscale/" + }, + "geonode-simplegeo": { + "name": "geonode-simplegeo", + "description": "Geography for Node.js", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "wadey", + "email": "wade@wades.im" + } + ], + "time": { + "modified": "2011-12-09T00:24:28.124Z", + "created": "2011-12-09T00:24:27.061Z", + "0.0.1": "2011-12-09T00:24:28.124Z" + }, + "author": { + "name": "Paul Smith", + "email": "paulsmith@pobox.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/geonode-simplegeo/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "341e1d8353f7f9ab368f00d00835bd1121e9acfb", + "tarball": "http://registry.npmjs.org/geonode-simplegeo/-/geonode-simplegeo-0.0.1.tgz" + } + }, + "keywords": [ + "geography", + "geo", + "gis", + "geos", + "client" + ], + "url": "http://registry.npmjs.org/geonode-simplegeo/" + }, + "lmj-unibrow": { + "name": "lmj-unibrow", + "description": "unicode browser and search engine", + "dist-tags": { + "latest": "0.0.5" + }, + "readme": "# express-unibrow\n\nAn [expressjs][] app for browsing and searching unicode code points. Unicode\ndata comes from the [Unicode Consortium][].\n\nYou can install this app using `npm`:\n\n $ npm install lmj-unibrow\n\nThen either run the server (`coffee main.coffee`) or include it in your express\nserver:\n\n app.use('/unicode', require('lmj-unibrow').middleware())\n\n[expressjs]: http://expressjs.com\n[Unicode Consortium]: http://www.unicode.org/Public/UNIDATA/\n\n## License\n\nThe unicode codepoints file (codepoints.json) comes from data published by the\n[Unicode Consortium][]. The remainder of the code here is available under the\nfollowing license:\n\n(The MIT License)\n\nCopyright (c) 2011 Leif Johnson \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the 'Software'), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n", + "maintainers": [ + { + "name": "lmjohns3", + "email": "leif@leifjohnson.net" + } + ], + "time": { + "modified": "2011-12-09T05:18:29.865Z", + "created": "2011-12-09T00:06:28.131Z", + "0.0.2": "2011-12-09T00:06:29.059Z", + "0.0.3": "2011-12-09T00:25:22.298Z", + "0.0.4": "2011-12-09T00:26:34.781Z", + "0.0.5": "2011-12-09T05:18:29.865Z" + }, + "author": { + "name": "Leif Johnson", + "url": "http://leifjohnson.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/lmjohns3/express-unibrow.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/lmj-unibrow/0.0.2", + "0.0.3": "http://registry.npmjs.org/lmj-unibrow/0.0.3", + "0.0.4": "http://registry.npmjs.org/lmj-unibrow/0.0.4", + "0.0.5": "http://registry.npmjs.org/lmj-unibrow/0.0.5" + }, + "dist": { + "0.0.2": { + "shasum": "f8b41da91ef76cd24749f0d1e4f7ac85c8e6b82c", + "tarball": "http://registry.npmjs.org/lmj-unibrow/-/lmj-unibrow-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "446fd7b6b0fbae9dc02a0ff6abf75cfb9cb955ff", + "tarball": "http://registry.npmjs.org/lmj-unibrow/-/lmj-unibrow-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "53f0c84a38f3c590bc114dfaa6b5d76041f831a5", + "tarball": "http://registry.npmjs.org/lmj-unibrow/-/lmj-unibrow-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "8e39b592fd77560bddf8bdcb825a40bbc8185163", + "tarball": "http://registry.npmjs.org/lmj-unibrow/-/lmj-unibrow-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/lmj-unibrow/" + }, + "lmj-tomato": { + "name": "lmj-tomato", + "description": "pomodoro app for node.js", + "dist-tags": { + "latest": "0.0.4" + }, + "readme": "# express-tomato\n\nAn [expressjs][] server and [backbonejs][] client for using the\n[Pomodoro Technique®][pomodoro]. Currently uses [mongodb][] for persistence.\n\nTo use as a standalone app, just start up the server:\n\n $ coffee main.coffee\n\nTo mount within another express server, run the `.middleware()` method:\n\n app.use('/tomato', require('lmj-tomato').middleware(options))\n\nAvailable options:\n\n- **analytics** - a Google Analytics identifier\n- **db** - mongodb server to use (defaults to mongodb://localhost/tomato)\n- **timers** - an object with `workSec` and `breakSec` attributes specifying the\n length of the work and break timers (defaults to {workSec: 25 * 60, breakSec:\n 5 * 60})\n\n[expressjs]: http://expressjs.com\n[backbonejs]: http://backbonejs.org\n[pomodoro]: http://www.pomodorotechnique.com\n[mongodb]: http://mongodb.org\n\n## Inspiration\n\nInitial inspiration came from the lovely http://tomatoi.st/.\n\nThe Pomodoro Technique® was developed by Francesco Cirillo and appears to be a\nregistered trademark of the same.\n\n## License\n\n(The MIT License)\n\nCopyright (c) 2011 Leif Johnson <leif@leifjohnson.net>\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the 'Software'), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n", + "maintainers": [ + { + "name": "lmjohns3", + "email": "leif@leifjohnson.net" + } + ], + "time": { + "modified": "2011-12-09T05:17:31.693Z", + "created": "2011-12-08T23:30:48.894Z", + "0.0.2": "2011-12-08T23:30:49.824Z", + "0.0.3": "2011-12-09T01:09:57.051Z", + "0.0.4": "2011-12-09T05:17:31.693Z" + }, + "author": { + "name": "Leif Johnson", + "email": "leif@leifjohnson.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/lmjohns3/express-tomato.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/lmj-tomato/0.0.2", + "0.0.3": "http://registry.npmjs.org/lmj-tomato/0.0.3", + "0.0.4": "http://registry.npmjs.org/lmj-tomato/0.0.4" + }, + "dist": { + "0.0.2": { + "shasum": "15b3876488e36edc40d0d85098fecf3ed795db2f", + "tarball": "http://registry.npmjs.org/lmj-tomato/-/lmj-tomato-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "104c92c2a13fb5df49b41b5157f12a750f42a7d2", + "tarball": "http://registry.npmjs.org/lmj-tomato/-/lmj-tomato-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "067e5178706ef6dc5abef10f4ca23a49f4feff75", + "tarball": "http://registry.npmjs.org/lmj-tomato/-/lmj-tomato-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/lmj-tomato/" + }, + "sproutcore": { + "name": "sproutcore", + "description": "SproutCore with JS buildtools", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": null, + "maintainers": [ + { + "name": "geoffreyd", + "email": "geoffreyd@gmail.com" + } + ], + "time": { + "modified": "2011-12-09T01:22:41.727Z", + "created": "2011-12-09T01:22:36.506Z", + "0.0.1": "2011-12-09T01:22:41.727Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/fohr/sproutcore.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/sproutcore/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "2089516ce7b656fcb6e9cf0ed685eaba9daa3668", + "tarball": "http://registry.npmjs.org/sproutcore/-/sproutcore-0.0.1.tgz" + } + }, + "keywords": [ + "sproutcore" + ], + "url": "http://registry.npmjs.org/sproutcore/" + }, + "spex-util": { + "name": "spex-util", + "description": "spex utils for slice", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "_spex-util_ is a utility for use with spex that provides an alternative _load_ function to modulate's that has automatic mocking for unit tests as well as a _sample_ method for pulling in sample Models\n\n\nmodulate is used in **spex**\n", + "maintainers": [ + { + "name": "fractal", + "email": "contact@wearefractal.com" + } + ], + "time": { + "modified": "2011-12-09T01:40:28.817Z", + "created": "2011-12-09T01:40:27.003Z", + "0.0.1": "2011-12-09T01:40:28.817Z" + }, + "author": { + "name": "Fractal", + "email": "contact@wearefractal.com", + "url": "http://wearefractal.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/wearefractal/spex-util.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/spex-util/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "f2dae45a6a6e0066dea2d6d7328240d19b088681", + "tarball": "http://registry.npmjs.org/spex-util/-/spex-util-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/spex-util/" + }, + "request-iconv": { + "name": "request-iconv", + "description": "Request with iconv", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "# Request with iconv -- Simplified HTTP request method With iconv\r\n\r\n## Install\r\n\r\n
\r\n  npm install request-iconv\r\n
\r\n\r\nOr from source:\r\n\r\n
\r\n  git clone git://github.com/mikeal/request.git\r\n  cd request\r\n  npm link\r\n
\r\n\r\n## Super simple to use\r\n\r\nRequest is designed to be the simplest way possible to make http calls. It support HTTPS and follows redirects by default.\r\n\r\n```javascript\r\nvar request = require('request').set(\"Shift_JIS\");\r\n\r\nrequest('http://mysite', function (error, response, body) {\r\n if (!error && response.statusCode == 200) {\r\n console.log(body)\r\n }\r\n})\r\n\r\n\r\n", + "maintainers": [ + { + "name": "thorgeo", + "email": "thorgeo65@gmail.com" + } + ], + "time": { + "modified": "2011-12-09T02:09:40.126Z", + "created": "2011-12-09T02:09:37.501Z", + "0.1.0": "2011-12-09T02:09:40.126Z" + }, + "author": { + "name": "Thorgeo", + "email": "thorgeo65@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/request-iconv/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "837d7811e145a0921ef4f451423217c6deaa9bad", + "tarball": "http://registry.npmjs.org/request-iconv/-/request-iconv-0.1.0.tgz" + } + }, + "keywords": [ + "request", + "iconv", + "http", + "download" + ], + "url": "http://registry.npmjs.org/request-iconv/" + }, + "tongwen": { + "name": "tongwen", + "description": "Simplified/Traditional Chinese convertor", + "dist-tags": { + "latest": "0.3.2" + }, + "readme": null, + "maintainers": [ + { + "name": "huang47", + "email": "huge.huang@gmail.com" + } + ], + "time": { + "modified": "2011-12-09T04:12:29.962Z", + "created": "2011-12-09T04:07:37.293Z", + "0.3.1": "2011-12-09T04:07:41.576Z", + "0.3.2": "2011-12-09T04:12:29.962Z" + }, + "author": { + "name": "huang47", + "email": "huge.huang@gmail.com" + }, + "repository": { + "url": "" + }, + "versions": { + "0.3.1": "http://registry.npmjs.org/tongwen/0.3.1", + "0.3.2": "http://registry.npmjs.org/tongwen/0.3.2" + }, + "dist": { + "0.3.1": { + "shasum": "1489eac9839c85ef2274dd56dd654a907b20c3f4", + "tarball": "http://registry.npmjs.org/tongwen/-/tongwen-0.3.1.tgz" + }, + "0.3.2": { + "shasum": "041870860450a742301e6e88b21cb2f99b0b2eae", + "tarball": "http://registry.npmjs.org/tongwen/-/tongwen-0.3.2.tgz" + } + }, + "url": "http://registry.npmjs.org/tongwen/" + }, + "connect-redirecthost": { + "name": "connect-redirecthost", + "description": "Connect middleware for the Express.js framework that allows redirecting multiple domains to a default one", + "dist-tags": { + "latest": "0.0.2" + }, + "readme": "# Connect Host Redirect\n\nconnect-redirecthost is middleware for the Express.js framework that allows redirecting multiple domains to a default one.\n\n## Installation\n\n $ npm install node-force-domain\n\n## Quick Start\n\nUsing connect-redirecthost is easy. Register it within Express.js as middleware by adding the following line into your app.js file before most calls to app.use(...):\n\n```javascript\napp.use(require('connect-redirecthost').redirectHost('www.example.com'));\n```\n\nLocalhost is always excluded to make local development easier.\n\n### Exceptions\n\nRedirect exceptions are supported. If, for example, your site uses a CDN on a separate domain, you can create an exception for that domain\n\n```javascript\napp.use(require('connect-redirecthost').redirectHost({\n to: 'www.example.com', // all requests not on www.example.com will be redirected to www.example.com\n except: 'cdn.example.com' // except for those to cdn.example.com\n}));\n```\n\nYou can also specify multiple exceptions using an array.\n\n```javascript\napp.use(require('connect-redirecthost').redirectHost({\n to: 'www.example.com',\n except: ['cdn.example.com', 'origin.example.com']\n}));\n```\n\n\n## License\n\nView the LICENSE file.\n\n\n", + "maintainers": [ + { + "name": "perropicante", + "email": "perropicante@hotmail.com" + } + ], + "time": { + "modified": "2011-12-09T06:30:45.210Z", + "created": "2011-12-09T04:26:48.054Z", + "0.0.0": "2011-12-09T04:26:48.290Z", + "0.0.1": "2011-12-09T06:08:12.982Z", + "0.0.2": "2011-12-09T06:30:45.210Z" + }, + "author": { + "name": "M Gradek" + }, + "repository": { + "url": "git@github.com:perropicante/connect-redirecthost.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/connect-redirecthost/0.0.0", + "0.0.1": "http://registry.npmjs.org/connect-redirecthost/0.0.1", + "0.0.2": "http://registry.npmjs.org/connect-redirecthost/0.0.2" + }, + "dist": { + "0.0.0": { + "shasum": "c8950e55cb79e6268bfe455be8398c7f18009d64", + "tarball": "http://registry.npmjs.org/connect-redirecthost/-/connect-redirecthost-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "de4dadecf5f456de7db13d02a359dd0b8df66087", + "tarball": "http://registry.npmjs.org/connect-redirecthost/-/connect-redirecthost-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "9e32b3183687e0239b68fd91727d4c22529b9606", + "tarball": "http://registry.npmjs.org/connect-redirecthost/-/connect-redirecthost-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/connect-redirecthost/" + }, + "node-matrix-jsapi": { + "name": "node-matrix-jsapi", + "description": "Squiz Matrix JSAPI ported to Nodejs", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": null, + "maintainers": [ + { + "name": "maks", + "email": "maks@manichord.com" + } + ], + "time": { + "modified": "2011-12-09T05:28:39.815Z", + "created": "2011-12-09T05:28:36.115Z", + "0.0.1": "2011-12-09T05:28:39.815Z" + }, + "author": { + "name": "Maksim Lin", + "email": "maks@manichord.com", + "url": "http://manichord.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-matrix-jsapi/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "5cdad324add42d1fa9db5358b41968904deb5f9f", + "tarball": "http://registry.npmjs.org/node-matrix-jsapi/-/node-matrix-jsapi-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/node-matrix-jsapi/" + }, + "suicide": { + "name": "suicide", + "description": "kills self or the process which has required it", + "dist-tags": { + "latest": "0.2.0" + }, + "readme": "x|\n===\n\n", + "maintainers": [ + { + "name": "bilalhusain", + "email": "bilal@bilalhusain.com" + } + ], + "time": { + "modified": "2011-12-09T19:09:46.080Z", + "created": "2011-12-09T16:41:33.369Z", + "0.1.0": "2011-12-09T16:41:33.638Z", + "0.2.0": "2011-12-09T19:09:46.080Z" + }, + "author": { + "name": "Bilal Husain", + "email": "bilal@bilalhusain.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/bilalhusain/node-suicide.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/suicide/0.1.0", + "0.2.0": "http://registry.npmjs.org/suicide/0.2.0" + }, + "dist": { + "0.1.0": { + "shasum": "6d34f0c21933be699692f1e8042af84587f9f200", + "tarball": "http://registry.npmjs.org/suicide/-/suicide-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "8f2d71286743d894967ee7e25e9c6e7bb160346a", + "tarball": "http://registry.npmjs.org/suicide/-/suicide-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/suicide/" + }, + "mix": { + "name": "mix", + "description": "Mix properties into objects with ease.", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": null, + "maintainers": [ + { + "name": "moonmaster9000", + "email": "moonmaster9000@gmail.com" + } + ], + "time": { + "modified": "2011-12-09T20:29:43.676Z", + "created": "2011-12-09T20:29:42.668Z", + "0.0.1": "2011-12-09T20:29:43.676Z" + }, + "author": { + "name": "Matt Parker", + "email": "moonmaster9000@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/moonmaster9000/mix.coffee.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mix/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "2213325f50ed60d740abff73bb920755ffd7006e", + "tarball": "http://registry.npmjs.org/mix/-/mix-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/mix/" + }, + "dagron": { + "name": "dagron", + "description": "an HTML5 Drag and Drop library for Ender", + "dist-tags": { + "latest": "0.0.3" + }, + "readme": "## Ender interface to HTML5 Drag and Droppables\n\nWorks like this\n\n``` js\n$('div.draggables').dagron({\n // all options are 'optional', no pun intended\n handle: 'div.handle'\n , target: 'div.droptarget'\n , start: function (el) {\n // el is the item you started dragging\n }\n , drag: function (el) {\n // el is dragged element\n }\n , drop: function (el) {\n // el is the target the dragged item was dropped on\n }\n , enter: function (el) {\n // el is the element target you entered into\n }\n , leave: function (el) {\n // el is the item left from\n }\n , end: function (el) {\n // el is the element you stopped dragging\n }\n})\n```\n\n### Dependencies\nMinimal dependency of [Enders](http://ender.no.de) [Jeesh](http://ender-js.s3.amazonaws.com/jeesh.min.js)", + "maintainers": [ + { + "name": "ded", + "email": "polvero@gmail.com" + } + ], + "time": { + "modified": "2011-12-09T23:49:16.275Z", + "created": "2011-12-09T22:43:04.186Z", + "0.0.1": "2011-12-09T22:43:05.511Z", + "0.0.2": "2011-12-09T23:13:21.324Z", + "0.0.3": "2011-12-09T23:49:16.275Z" + }, + "author": { + "name": "Dustin Diaz", + "email": "dustin@dustindiaz.com", + "url": "http://dustindiaz.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/ded/dagron.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/dagron/0.0.1", + "0.0.2": "http://registry.npmjs.org/dagron/0.0.2", + "0.0.3": "http://registry.npmjs.org/dagron/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "ce1028665a38accaca1bc140b68032215e056b71", + "tarball": "http://registry.npmjs.org/dagron/-/dagron-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c89749e2eba1b7f87608d67fe7e1384eb41a328e", + "tarball": "http://registry.npmjs.org/dagron/-/dagron-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "78d9e5d33031a05a5668cd641289f1392563f221", + "tarball": "http://registry.npmjs.org/dagron/-/dagron-0.0.3.tgz" + } + }, + "keywords": [ + "ender", + "drag", + "drop", + "html5" + ], + "url": "http://registry.npmjs.org/dagron/" + }, + "figc": { + "name": "figc", + "description": "Merge config files with command-line arguments", + "dist-tags": { + "latest": "0.0.0" + }, + "readme": null, + "maintainers": [ + { + "name": "substack", + "email": "mail@substack.net" + } + ], + "time": { + "modified": "2011-12-09T23:57:45.681Z", + "created": "2011-12-09T23:57:44.352Z", + "0.0.0": "2011-12-09T23:57:45.681Z" + }, + "author": { + "name": "James Halliday", + "email": "mail@substack.net", + "url": "http://substack.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/substack/node-figc.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/figc/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "14a3a171ae7ac6377320358f198f097d40959936", + "tarball": "http://registry.npmjs.org/figc/-/figc-0.0.0.tgz" + } + }, + "keywords": [ + "config", + "json", + "argv", + "options", + "arguments" + ], + "url": "http://registry.npmjs.org/figc/" + }, + "webcl": { + "name": "webcl", + "description": "OpenCL bindings for Node.js", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": null, + "maintainers": [ + { + "name": "fifield", + "email": "fifield@mtnhigh.net" + } + ], + "time": { + "modified": "2011-12-09T23:58:26.768Z", + "created": "2011-12-09T23:58:25.665Z", + "0.1.0": "2011-12-09T23:58:26.768Z" + }, + "author": { + "name": "Jeff Fifield", + "email": "fifield@mtnhigh.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/fifield/node-webcl.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/webcl/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "ec8aabb80df9041cf3e737beac39bb06e7597657", + "tarball": "http://registry.npmjs.org/webcl/-/webcl-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/webcl/" + }, + "dropshare": { + "name": "dropshare", + "description": "A ge.tt / min.us clone for your private servers", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "Dropshare\n===\n\n[DropShare](http://dropsha.re) is a shameless [ge.tt](http://ge.tt) / [min.us](http://min.us) clone. [droplr](http://droplr.com) is also similar.\n\nClients\n===\n\nA few different clients are avaible.\n\nWeb\n---\n\nWith the web-client you can drag-n-drop or use the normal upload/download.\n\n [http://dropsha.re](http://dropsha.re)\n\nBash\n---\n\n**Usage**\n\n dropshare /path/to/file.ext\n \n # Example - share your public ssh key with someone\n dropshare ~/.ssh/id_rsa.pub\n \n**Example Output**\n\n Your file, Sir! (or Ma'am):\n \n http://dropsha.re/#foHsCQA\n \n wget 'http://api.dropsha.re/files/foHsCQA/coolaj86@ubuntu-tablet.pub'\n \n curl 'http://api.dropsha.re/files/foHsCQA' -o 'coolaj86@ubuntu-tablet.pub'\n\n**Installation**\n\n sudo wget 'https://raw.github.com/coolaj86/dropshare/master/clients/dropshare.sh' -O '/usr/local/bin/dropshare'\n sudo chmod a+x '/usr/local/bin/dropshare'\n\nServer\n===\n\nIf you're interested in consulting or setup to run DropShare on your private network\nat your Home Office, or Business please contact .\n\nQuick Start for Running your own DropShare\n---\n\n 0. Install `redis`. See Appendix (below) for installing redis on OS X.\n 0. Install [Spark](https://github.com/senchalabs/spark) with `npm install -g spark`.\n 0. Copy `config.default.js` to `config.js`, and customize any server\n settings you would like.\n 0. Run `cd public; ./deploy.sh` to compile the static assets.\n 0. Start the server with `spark`. By default it runs on port 3700.\n\nRunning Tests\n---\n\nRun the tests with:\n\n cd tests\n ./test.sh\n\nThe tests depend on being in the same directory as the test script, due\nto paths to resources and such.\n\n\nLICENSE\n===\n\nDropshare is available under the following licenses:\n\n * MIT\n * Apache 2\n\nAppendix\n===\n\nInstalling Redis\n---\n\n brew install redis\n\n mkdir -p ~/Library/LaunchAgents\n\n launchctl unload -w ~/Library/LaunchAgents/io.redis.redis-server.plist 2>/dev/null || true\n cp /usr/local/Cellar/redis/2.2.12/io.redis.redis-server.plist ~/Library/LaunchAgents/\n launchctl load -w ~/Library/LaunchAgents/io.redis.redis-server.plist\n\n**To start redis manually:**\n\n redis-server /usr/local/etc/redis.conf\n\n**To access the server:**\n redis-cli\n\nUbuntu Linux\n---\n\n sudo apt-get install redis\n", + "maintainers": [ + { + "name": "jergason", + "email": "jergason@gmail.com" + } + ], + "time": { + "modified": "2011-12-10T01:04:48.825Z", + "created": "2011-12-10T01:04:47.816Z", + "0.1.0": "2011-12-10T01:04:48.825Z" + }, + "author": { + "name": "AJ ONeal", + "email": "coolaj86@gmail.com", + "url": "http://coolaj86.info/" + }, + "repository": { + "type": "git", + "url": "git://github.com/coolaj86/dropshare.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/dropshare/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "4b1ae319825bdcbe3abd3fd8b7be6c85cfd6c7a7", + "tarball": "http://registry.npmjs.org/dropshare/-/dropshare-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/dropshare/" + }, + "amdefine": { + "name": "amdefine", + "description": "Provide AMD's define() API for declaring modules in the AMD format", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": null, + "maintainers": [ + { + "name": "jrburke", + "email": "jrburke@gmail.com" + } + ], + "time": { + "modified": "2011-12-10T01:16:03.912Z", + "created": "2011-12-10T01:16:02.521Z", + "0.0.1": "2011-12-10T01:16:03.912Z" + }, + "author": { + "name": "James Burke", + "email": "jrburke@gmail.com", + "url": "http://github.com/jrburke" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/amdefine/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "20add952bf0f8941ae2765386c92310679d4a954", + "tarball": "http://registry.npmjs.org/amdefine/-/amdefine-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/amdefine/" + }, + "superfeedr": { + "name": "superfeedr", + "description": "A package to interact with Superfeedr's API and get pushed RSS content", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": null, + "maintainers": [ + { + "name": "julien51", + "email": "julien@superfeedr.com" + } + ], + "time": { + "modified": "2011-12-10T01:55:11.079Z", + "created": "2011-12-10T01:55:09.753Z", + "0.0.1": "2011-12-10T01:55:11.079Z" + }, + "author": { + "name": "Julien Genestoux", + "email": "julien@superfeedr.com", + "url": "http://ouvre-boite.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/superfeedr/superfeedr-node.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/superfeedr/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "35651a82656a8b27681f8dae9209678b7a33a490", + "tarball": "http://registry.npmjs.org/superfeedr/-/superfeedr-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/superfeedr/" + }, + "node-TBD": { + "name": "node-TBD", + "description": "Node TDB", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "# Node TBD\n\nThis library is the debugger for callback functions.\n\n## Quick Example\n\n```js\nvar TBD = require('node-TBD');\nvar http = require('http');\n\nvar server = http.createServer(TBD);\nserver.listen();\n```\n\n```js\ntelnet localhost 13000\nnode-TBD> // input your code.\n```\n\n## Install\n\n```js\nnpm install TBD\n```\n\n## Author\n\n[@tricknotes](https://github.com/tricknotes)\n\n## License\n\nLicensed under MIT.\n", + "maintainers": [ + { + "name": "tricknotes", + "email": "tricknotes.rs@gmail.com" + } + ], + "time": { + "modified": "2011-12-10T07:06:54.962Z", + "created": "2011-12-10T07:06:52.032Z", + "0.0.1": "2011-12-10T07:06:54.962Z" + }, + "author": { + "name": "Ryunosuke SATO", + "email": "tricknotes.rs@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/tricknotes/node-TDB.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-TBD/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "2cd0d8a5278c631d495e92881e4285a04aa4032a", + "tarball": "http://registry.npmjs.org/node-TBD/-/node-TBD-0.0.1.tgz" + } + }, + "keywords": [ + "debugger", + "TBD" + ], + "url": "http://registry.npmjs.org/node-TBD/" + }, + "Google_Plus_Server_Library": { + "name": "Google_Plus_Server_Library", + "description": "Server-Side Implementation of Google's Client-Side Javascript Library for Google+", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "Detailed instructions coming in the near future.\n\nIn the meantime, this server side library is meant to use similar syntax as the Google JavaScript Client Library for Google+ (more info at http://googlecode.blogspot.com/2011/11/javascript-client-library-for-google.html)\n\nBasic usage can be viewed in Examples/test.js", + "maintainers": [ + { + "name": "phated", + "email": "blaine@iceddev.com" + } + ], + "time": { + "modified": "2011-12-10T07:55:53.162Z", + "created": "2011-12-10T07:55:51.946Z", + "0.0.1": "2011-12-10T07:55:53.162Z" + }, + "author": { + "name": "Blaine Bublitz", + "email": "blaine@iceddev.com", + "url": "http://iceddev.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/phated/Google-Plus-Server-Library.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/Google_Plus_Server_Library/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "4b91121353800688ab55d3dbf1779cb72edb4d08", + "tarball": "http://registry.npmjs.org/Google_Plus_Server_Library/-/Google_Plus_Server_Library-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/Google_Plus_Server_Library/" + }, + "authpack": { + "name": "authpack", + "description": "Package of distributed client and server OAuth2 API's", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "stolsma", + "email": "npm@tolsma.net" + } + ], + "time": { + "modified": "2011-12-10T08:07:30.090Z", + "created": "2011-12-10T08:07:28.421Z", + "0.0.1": "2011-12-10T08:07:30.090Z" + }, + "author": { + "name": "Tolsma Telematica Consultancy", + "email": "code@tolsma.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/stolsma/authpack.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/authpack/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "30b5b6a2966aead38da0f22e6614f5efca9dcfbe", + "tarball": "http://registry.npmjs.org/authpack/-/authpack-0.0.1.tgz" + } + }, + "keywords": [ + "distributed", + "oauth2", + "service", + "authorization", + "authentication", + "OpenID Connect" + ], + "url": "http://registry.npmjs.org/authpack/" + }, + "tinycolor": { + "name": "tinycolor", + "description": "a to-the-point color module for node", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "# tinycolor #\n\nThis is a no-fuzz, barebone, zero muppetry color module for node.js.", + "maintainers": [ + { + "name": "einaros", + "email": "einaros@gmail.com" + } + ], + "time": { + "modified": "2011-12-10T12:22:18.462Z", + "created": "2011-12-10T12:22:16.933Z", + "0.0.1": "2011-12-10T12:22:18.462Z" + }, + "author": { + "name": "Einar Otto Stangvik", + "email": "einaros@gmail.com", + "url": "http://2x.io" + }, + "repository": { + "type": "git", + "url": "git://github.com/einaros/tinycolor.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tinycolor/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "320b5a52d83abb5978d81a3e887d4aefb15a6164", + "tarball": "http://registry.npmjs.org/tinycolor/-/tinycolor-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/tinycolor/" + }, + "object": { + "name": "object", + "description": "JavaScript object utilities library", + "dist-tags": { + "latest": "0.2.0" + }, + "readme": "# object\n\nJavaScript object utilities library\n\n## installation\n\n $ npm install object\n\n## License\n\nMIT License\n\nCopyright (c) 2011 Enrico Marino <enrico.marino@email.com>\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "maintainers": [ + { + "name": "onirame", + "email": "enrico.marino@email.com" + } + ], + "time": { + "modified": "2011-12-10T15:37:12.534Z", + "created": "2011-12-10T14:11:41.758Z", + "0.0.0": "2011-12-10T14:11:43.833Z", + "0.1.0": "2011-12-10T15:06:12.099Z", + "0.2.0": "2011-12-10T15:37:12.534Z" + }, + "author": { + "name": "Enrico Marino", + "email": "enrico.marino@email.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/onirame/object.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/object/0.0.0", + "0.1.0": "http://registry.npmjs.org/object/0.1.0", + "0.2.0": "http://registry.npmjs.org/object/0.2.0" + }, + "dist": { + "0.0.0": { + "shasum": "a90541d6913fe3a4038d2dd64ceba853be3ae879", + "tarball": "http://registry.npmjs.org/object/-/object-0.0.0.tgz" + }, + "0.1.0": { + "shasum": "e95ad5ed8a64f49321032f55b1e33c4b0d114df4", + "tarball": "http://registry.npmjs.org/object/-/object-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "8193b7ae48e8d8881f37e4a0b051a6acb16082ca", + "tarball": "http://registry.npmjs.org/object/-/object-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/object/" + }, + "chainseq": { + "name": "chainseq", + "description": "Like seq, but smaller, more complicated and hopefully less buggy.", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": null, + "maintainers": [ + { + "name": "yorick", + "email": "yorickvanpelt@gmail.com" + } + ], + "time": { + "modified": "2011-12-10T17:01:34.859Z", + "created": "2011-12-10T17:01:32.226Z", + "0.0.1": "2011-12-10T17:01:34.859Z" + }, + "author": { + "name": "Yorick" + }, + "repository": { + "type": "git", + "url": "git://github.com/yorickvP/node-chainseq.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/chainseq/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "814d35921be426af47618cedeb2ba12e3b9e330c", + "tarball": "http://registry.npmjs.org/chainseq/-/chainseq-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/chainseq/" + }, + "array": { + "name": "array", + "description": "JavaScript array utilities library", + "dist-tags": { + "latest": "0.3.0" + }, + "readme": "# array\n\nJavaScript array utilities library\n\n## installation\n\n $ npm install array\n\n## License\n\nMIT License\n\nCopyright (c) 2011 Enrico Marino <enrico.marino@email.com>\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "maintainers": [ + { + "name": "onirame", + "email": "enrico.marino@email.com" + } + ], + "time": { + "modified": "2011-12-10T17:19:01.174Z", + "created": "2011-12-10T14:12:48.951Z", + "0.0.0": "2011-12-10T14:12:51.327Z", + "0.1.0": "2011-12-10T16:12:42.959Z", + "0.2.0": "2011-12-10T16:53:35.210Z", + "0.3.0": "2011-12-10T17:19:01.174Z" + }, + "author": { + "name": "Enrico Marino", + "email": "enrico.marino@email.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/onirame/array.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/array/0.0.0", + "0.1.0": "http://registry.npmjs.org/array/0.1.0", + "0.2.0": "http://registry.npmjs.org/array/0.2.0", + "0.3.0": "http://registry.npmjs.org/array/0.3.0" + }, + "dist": { + "0.0.0": { + "shasum": "5e5f37d4e28eff84c9144f1440c0fa7ed97d4894", + "tarball": "http://registry.npmjs.org/array/-/array-0.0.0.tgz" + }, + "0.1.0": { + "shasum": "95e63d44c0c4d7e1b472a18039dc94a7215681c9", + "tarball": "http://registry.npmjs.org/array/-/array-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "75668828a4236c77640ce1cb53bf467667a22081", + "tarball": "http://registry.npmjs.org/array/-/array-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "b2e48ee7372a40c0b712c3fde99dd2fe9e43c0a4", + "tarball": "http://registry.npmjs.org/array/-/array-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/array/" + }, + "string-util": { + "name": "string-util", + "description": "JavaScript string utilities library", + "dist-tags": { + "latest": "0.2.0" + }, + "readme": "# string\n\nJavaScript string utilities library\n\n## installation\n\n $ npm install string\n\n## License\n\nMIT License\n\nCopyright (c) 2011 Enrico Marino <enrico.marino@email.com>\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "maintainers": [ + { + "name": "onirame", + "email": "enrico.marino@email.com" + } + ], + "time": { + "modified": "2011-12-10T18:26:32.240Z", + "created": "2011-12-10T14:15:56.860Z", + "0.0.0": "2011-12-10T14:15:58.709Z", + "0.1.0": "2011-12-10T17:56:33.116Z", + "0.2.0": "2011-12-10T18:26:32.240Z" + }, + "author": { + "name": "Enrico Marino", + "email": "enrico.marino@email.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/onirame/string.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/string-util/0.0.0", + "0.1.0": "http://registry.npmjs.org/string-util/0.1.0", + "0.2.0": "http://registry.npmjs.org/string-util/0.2.0" + }, + "dist": { + "0.0.0": { + "shasum": "c29a862a68f58e3dca589cabd6158174f7ebf73f", + "tarball": "http://registry.npmjs.org/string-util/-/string-util-0.0.0.tgz" + }, + "0.1.0": { + "shasum": "f4048e739365cee11eec31ce618a85c30d80bc3b", + "tarball": "http://registry.npmjs.org/string-util/-/string-util-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "8a98ef5742496043a0275dfc0503d6e58656d707", + "tarball": "http://registry.npmjs.org/string-util/-/string-util-0.2.0.tgz" + } + }, + "url": "http://registry.npmjs.org/string-util/" + }, + "function": { + "name": "function", + "description": "JavaScript function utilities library", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "# function\n\nJavaScript function utilities library\n\n## installation\n\n $ npm install function\n\n## License\n\nMIT License\n\nCopyright (c) 2011 Enrico Marino <enrico.marino@email.com>\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "maintainers": [ + { + "name": "onirame", + "email": "enrico.marino@email.com" + } + ], + "time": { + "modified": "2011-12-10T18:41:45.185Z", + "created": "2011-12-10T14:13:42.590Z", + "0.0.0": "2011-12-10T14:13:44.534Z", + "0.1.0": "2011-12-10T18:41:45.185Z" + }, + "author": { + "name": "Enrico Marino", + "email": "enrico.marino@email.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/onirame/function.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/function/0.0.0", + "0.1.0": "http://registry.npmjs.org/function/0.1.0" + }, + "dist": { + "0.0.0": { + "shasum": "59b2b59d5041442bddc4d4ed70df79cc302552ef", + "tarball": "http://registry.npmjs.org/function/-/function-0.0.0.tgz" + }, + "0.1.0": { + "shasum": "c143042e7bcdaa93956a2cb17e1a8ebe75e2d081", + "tarball": "http://registry.npmjs.org/function/-/function-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/function/" + }, + "humane-js": { + "name": "humane-js", + "description": "A simple, modern, browser notification system", + "dist-tags": { + "latest": "2.2.7" + }, + "readme": null, + "maintainers": [ + { + "name": "wavded", + "email": "wavded@gmail.com" + } + ], + "time": { + "modified": "2011-12-10T19:52:51.812Z", + "created": "2011-12-10T19:52:50.362Z", + "2.2.7": "2011-12-10T19:52:51.812Z" + }, + "author": { + "name": "Marc Harter", + "email": "@wavded", + "url": "wavded.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/wavded/humane-js.git" + }, + "versions": { + "2.2.7": "http://registry.npmjs.org/humane-js/2.2.7" + }, + "dist": { + "2.2.7": { + "shasum": "82e839e0008266b2e7e1e550d133af9c8cb9af23", + "tarball": "http://registry.npmjs.org/humane-js/-/humane-js-2.2.7.tgz" + } + }, + "url": "http://registry.npmjs.org/humane-js/" + }, + "hash-struct": { + "name": "hash-struct", + "description": "JavaScript hash data structure library", + "dist-tags": { + "latest": "0.3.0" + }, + "readme": "# hash-struct\n\nJavaScript hash data structure library\n\n## Installation\n\n $ npm install hash-struct\n\n## License\n\nMIT License\n\nCopyright (c) 2011 Enrico Marino <enrico.marino@email.com>\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "maintainers": [ + { + "name": "onirame", + "email": "enrico.marino@email.com" + } + ], + "time": { + "modified": "2011-12-10T20:20:25.368Z", + "created": "2011-12-10T19:32:29.670Z", + "0.0.0": "2011-12-10T19:32:31.635Z", + "0.1.0": "2011-12-10T19:51:39.823Z", + "0.2.0": "2011-12-10T20:03:28.664Z", + "0.3.0": "2011-12-10T20:20:25.368Z" + }, + "author": { + "name": "Enrico Marino", + "email": "enrico.marino@email.com", + "url": "http://onirame.no.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/onirame/hash-struct.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/hash-struct/0.0.0", + "0.1.0": "http://registry.npmjs.org/hash-struct/0.1.0", + "0.2.0": "http://registry.npmjs.org/hash-struct/0.2.0", + "0.3.0": "http://registry.npmjs.org/hash-struct/0.3.0" + }, + "dist": { + "0.0.0": { + "shasum": "21b99cbf95dbf297f65c0ad5401688960cca51c1", + "tarball": "http://registry.npmjs.org/hash-struct/-/hash-struct-0.0.0.tgz" + }, + "0.1.0": { + "shasum": "a8e4aca4e6a712a7903e3dca8efed389b4d2f2aa", + "tarball": "http://registry.npmjs.org/hash-struct/-/hash-struct-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "a42a0e444172b75101a2b9bd5329eddc5644753e", + "tarball": "http://registry.npmjs.org/hash-struct/-/hash-struct-0.2.0.tgz" + }, + "0.3.0": { + "shasum": "8013b5c313ced0f86cdf306dfe52dade78fba876", + "tarball": "http://registry.npmjs.org/hash-struct/-/hash-struct-0.3.0.tgz" + } + }, + "url": "http://registry.npmjs.org/hash-struct/" + }, + "blueimp-md5": { + "name": "blueimp-md5", + "description": "JavaScript MD5 implementation.", + "dist-tags": { + "latest": "1.0.0" + }, + "readme": "# JavaScript MD5\n\n## Demo\n[JavaScript MD5 Demo](http://blueimp.github.com/JavaScript-MD5/)\n\n## Usage\n\n### Client-side\nInclude the (minified) JavaScript [MD5](http://en.wikipedia.org/wiki/MD5) script in your HTML markup:\n\n```html\n\n```\n\nIn your application code, calculate the ([hex](http://en.wikipedia.org/wiki/Hexadecimal)-encoded) [MD5](http://en.wikipedia.org/wiki/MD5) hash of a string by calling the **md5** method with the string as argument:\n\n```js\nvar hash = md5(\"value\"); // \"2063c1608d6e0baf80249c42e2be5804\"\n```\n\n### Server-side\n\nThe following is an example how to use the JavaScript MD5 module on the server-side with [node.js](http://nodejs.org/).\n\nCreate a new directory and add the **md5.js** file. Or alternatively, install the **blueimp-md5** package with [npm](http://npmjs.org/):\n\n```sh\nnpm install blueimp-md5\n```\n\nAdd a file **server.js** with the following content:\n\n```js\nrequire(\"http\").createServer(function (req, res) {\n // The md5 module exports the md5() function:\n var md5 = require(\"./md5\").md5,\n // Use the following version if you installed the package with npm:\n // var md5 = require(\"blueimp-md5\").md5,\n url = require(\"url\"),\n query = url.parse(req.url).query;\n res.writeHead(200, {\"Content-Type\": \"text/plain\"});\n // Calculate and print the MD5 hash of the url query:\n res.end(md5(query));\n}).listen(8080, \"localhost\");\nconsole.log(\"Server running at http://localhost:8080/\");\n```\n\nRun the application with the following command:\n\n```sh\nnode server.js\n```\n\n## Requirements\nThe JavaScript MD5 script has zero dependencies.\n\n## API\n\nCalculate the ([hex](http://en.wikipedia.org/wiki/Hexadecimal)-encoded) [MD5](http://en.wikipedia.org/wiki/MD5) hash of a given string value:\n\n```js\nvar hash = md5(\"value\"); // \"2063c1608d6e0baf80249c42e2be5804\"\n```\n\nCalculate the ([hex](http://en.wikipedia.org/wiki/Hexadecimal)-encoded) [HMAC](http://en.wikipedia.org/wiki/HMAC)-MD5 hash of a given string value and key:\n\n```js\nvar hash = md5(\"value\", \"key\"); // \"01433efd5f16327ea4b31144572c67f6\"\n```\n \nCalculate the raw [MD5](http://en.wikipedia.org/wiki/MD5) hash of a given string value:\n\n```js\nvar hash = md5(\"value\", null, true);\n```\n\nCalculate the raw [HMAC](http://en.wikipedia.org/wiki/HMAC)-MD5 hash of a given string value and key:\n\n```js\nvar hash = md5(\"value\", \"key\", true);\n```\n\n## License\nThe JavaScript MD5 script is released under the [MIT license](http://creativecommons.org/licenses/MIT/).\n", + "maintainers": [ + { + "name": "blueimp", + "email": "sebastian.tschan@gmail.com" + } + ], + "time": { + "modified": "2011-12-10T21:06:07.178Z", + "created": "2011-12-10T21:06:04.364Z", + "1.0.0": "2011-12-10T21:06:07.178Z" + }, + "author": { + "name": "Sebastian Tschan", + "url": "https://blueimp.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/blueimp/JavaScript-MD5.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/blueimp-md5/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "f546a235f74a5f9c0be72b6e2d33d8908bd4bcba", + "tarball": "http://registry.npmjs.org/blueimp-md5/-/blueimp-md5-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/blueimp-md5/" + }, + "usenode-release": { + "name": "usenode-release", + "description": "Release script for releasing usenode projects", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "richardhodgson", + "email": "contact@rhodgson.co.uk" + } + ], + "time": { + "modified": "2011-12-10T21:36:15.390Z", + "created": "2011-12-10T21:31:49.585Z", + "0.0.1": "2011-12-10T21:36:15.390Z" + }, + "author": { + "name": "Richard Hodgson", + "email": "contact@rhodgson.co.uk", + "url": "http://rhodgson.co.uk" + }, + "repository": { + "type": "git", + "url": "git://github.com/usenode/usenode-release.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/usenode-release/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "78b606790b610606a68a4b3ac9ec7825dfb8b375", + "tarball": "http://registry.npmjs.org/usenode-release/-/usenode-release-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/usenode-release/" + }, + "ae86": { + "name": "ae86", + "description": "Static website generator.", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "cliffano", + "email": "cliffano@gmail.com" + } + ], + "time": { + "modified": "2011-12-11T00:27:14.690Z", + "created": "2011-12-11T00:20:29.436Z", + "0.0.2": "2011-12-11T00:27:14.690Z" + }, + "author": { + "name": "Cliffano Subagio", + "email": "blah@cliffano.com", + "url": "http://blog.cliffano.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/cliffano/ae86.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/ae86/0.0.2" + }, + "dist": { + "0.0.2": { + "shasum": "aff90b085b2c08ad575480385aa529631bc8b7f6", + "tarball": "http://registry.npmjs.org/ae86/-/ae86-0.0.2.tgz" + } + }, + "keywords": [ + "static", + "website", + "generator" + ], + "url": "http://registry.npmjs.org/ae86/" + }, + "geckoboard-node": { + "name": "geckoboard-node", + "description": "Node.js middleware for creating Geckoboard widgets.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "hebo", + "email": "doubletime@gmail.com" + } + ], + "time": { + "modified": "2011-12-11T02:12:52.131Z", + "created": "2011-12-11T02:10:51.747Z", + "0.0.1": "2011-12-11T02:12:52.131Z" + }, + "author": { + "name": "James Richard", + "email": "james@james-richard.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:Cev/geckoboard-node.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/geckoboard-node/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "79cdd2bbfd27bd4e6d7007335c326145b8992f8b", + "tarball": "http://registry.npmjs.org/geckoboard-node/-/geckoboard-node-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/geckoboard-node/" + }, + "mobileagent": { + "name": "mobileagent", + "description": "Utility for Japanese mobile phones", + "dist-tags": { + "latest": "1.0.0" + }, + "readme": null, + "maintainers": [ + { + "name": "tokuhirom", + "email": "tokuhirom@gmail.com" + } + ], + "time": { + "modified": "2011-12-11T02:25:09.959Z", + "created": "2011-12-11T02:25:08.906Z", + "1.0.0": "2011-12-11T02:25:09.959Z" + }, + "author": { + "name": "Tokuhiro Matsuno", + "email": "tokuhirom@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/tokuhirom/mobileagent-js.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/mobileagent/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "bf25b3425c9818f62c9309876d9e2d5c956e780d", + "tarball": "http://registry.npmjs.org/mobileagent/-/mobileagent-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/mobileagent/" + }, + "dotpath": { + "name": "dotpath", + "description": "Utility to wrap object with dotpath support for traversal, modification and existence checking.", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "# DotPath\nDotPath is a utility to wrap objects with dotpath support for traversal, modification and existence checking.\n\n## Usage\n\n npm install dotpath\n\n## Interface\n\n#### new DotPath(obj, separator)\nBy default, '.' is used as the separation symbol. But you can change that to other things, such as '::'\n\n#### dotpath.exists(path)\nIf any point in the path doesn't exist, will return false. If the end is reached, will return true.\n\n#### dotpath.get([path])\nGet the value at the specified dotpath, if non supplied; return entire object. If any point in the path doesn't exist, will return undefined.\n\n#### dotpath.set(path, value, destroy)\nSet the value at the given dotpath. Will create new objects along the way if the path doesn't exist. If destroy is enabled, will also overwrite existing non-object parents in the path. If only one argument is supplied, the entire object will be overwritten to match it.\n\n#### dotpath.forceSet(path, value)\nThis is simply an alias to set() that always uses destroy = true.\n\n## Example\n\n var test = new DotPath({ foo: { bar: 'baz' } })\n test.exists('foo.bar') // true\n test.get('foo.bar') // 'baz'\n\n test.set('foo.foo.foo.bar', 'baz') // true\n test.get('foo.foo.foo.bar') // 'baz'\n\n var success = test.set('foo', 'bar') // false\n test.get('foo') // { bar: 'baz' }\n\n // Try destructive mode now.\n if ( ! success) {\n test.forceSet('foo', 'bar') // true\n test.get('foo') // 'bar'\n }\n\n---\n\n### Copyright (c) 2011 Stephen Belanger\n#### Licensed under MIT License\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "maintainers": [ + { + "name": "qard", + "email": "admin@stephenbelanger.com" + } + ], + "time": { + "modified": "2011-12-11T03:02:52.896Z", + "created": "2011-12-11T02:31:19.251Z", + "0.0.0": "2011-12-11T02:31:20.531Z", + "0.0.1": "2011-12-11T03:02:52.896Z" + }, + "author": { + "name": "Stephen Belanger", + "email": "admin@stephenbelanger.com", + "url": "http://stephenbelanger.com" + }, + "repository": { + "url": "git://github.com/Qard/DotPath.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/dotpath/0.0.0", + "0.0.1": "http://registry.npmjs.org/dotpath/0.0.1" + }, + "dist": { + "0.0.0": { + "shasum": "1c6492e380f9d55862aea3c3a7ea5a332af70d33", + "tarball": "http://registry.npmjs.org/dotpath/-/dotpath-0.0.0.tgz" + }, + "0.0.1": { + "shasum": "0e0c3a0b2dfcba842db7bf0757c0c2a6b40d1c73", + "tarball": "http://registry.npmjs.org/dotpath/-/dotpath-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/dotpath/" + }, + "mediatr": { + "name": "mediatr", + "description": "JavaScript Mediator Pattern", + "dist-tags": { + "latest": "1.0.1" + }, + "readme": "", + "maintainers": [ + { + "name": "chrisevans", + "email": "cmevans2@gmail.com" + } + ], + "time": { + "modified": "2011-12-11T03:50:36.532Z", + "created": "2011-12-11T03:43:28.292Z", + "1.0.0": "2011-12-11T03:43:28.576Z", + "1.0.1": "2011-12-11T03:50:36.532Z" + }, + "author": { + "name": "Chris Evans", + "email": "cmevans2@gmail.com", + "url": "http://twitter.com/_chrisevans" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/mediatr/1.0.0", + "1.0.1": "http://registry.npmjs.org/mediatr/1.0.1" + }, + "dist": { + "1.0.0": { + "shasum": "3f0024577d9e408b270e9d0ff307f5e4a1b40d11", + "tarball": "http://registry.npmjs.org/mediatr/-/mediatr-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "3ff297c07b6b022d70f861ad85815270b5f3379d", + "tarball": "http://registry.npmjs.org/mediatr/-/mediatr-1.0.1.tgz" + } + }, + "keywords": [ + "ender", + "decoupled", + "app-core", + "controller", + "base" + ], + "url": "http://registry.npmjs.org/mediatr/" + }, + "boxeen": { + "name": "boxeen", + "description": "Boxee API wrapper", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "# Boxeen\nBoxee API wrapper for node\n\n# Install\n $ npm install boxeen\n\n# Usage Example\n\n var boxeen = require('boxeen');\n \n boxeen.find(1000, function(hosts) {\n console.log('List of found hosts: \\n' + JSON.stringify(hosts));\n \n boxeen.GetVolume(hosts[0], function(e, volume) {\n if(e) {\n console.log(e);\n } else {\n console.log('Volume: ' + volume);\n }\n });\n });\n\n# API\n\n**find**: Find hosts in the local network\n\n * @param {int} timeout in millisecons\n * @param {function(hosts)} callback (optional)\n\n\nhosts:\n\n [\n {\n host: 'hostname',\n port: 8800\n },\n ...\n ]\n \nusage:\n\n boxeen.find(1000, function(hosts) {\n console.log('List of found hosts: \\n' + JSON.stringify(hosts));\n });\n\n**GetVolume**: Retrieves the current volume setting as a percentage of the maximum possible value.\n\n * @param {object} host\n * @param {function(error, volume)} callback (optional)\n\nusage:\n\n boxeen.GetVolume(host, function(e, volume) {\n if(e) {\n console.log(e);\n } else {\n console.log('Volume: ' + volume);\n }\n });\n\n**SetVolume(percent)**: Sets the volume as a percentage of the maximum possible.\n\n boxeen.SetVolume(host, 50, function(success) {\n if(success) {\n console.log('Volume changed');\n } else {\n console.log('Volume not changed');\n }\n });\n\n**Mute**: Toggles the sound on/off.\n\n boxeen.Mute(host, function(success) {\n if(success) {\n console.log('Mute toggled');\n } else {\n console.log('Mute not toggled');\n }\n });\n\n**Pause**: Pauses the currently playing media.\n\n boxeen.Pause(host, function(success) {\n if(success) {\n console.log('Pause toggled');\n } else {\n console.log('Pause not toggled');\n }\n });\n\n**Stop**: Stops the currently playing media.\n\n boxeen.Stop(host, function(success) {\n\t\tif(success) {\n\t\t\tconsole.log('Stoped');\n\t\t} else {\n\t\t\tconsole.log('Not Stoped');\n\t\t}\n\t});\n\n**PlayNext**: Starts playing/showing the next media/image in the current playlist or, if currently showing a slidshow, the slideshow playlist.\n\n boxeen.PlayNext(host, function(success) {\n\t\tif(success) {\n\t\t\tconsole.log('Playing Next');\n\t\t} else {\n\t\t\tconsole.log('Not Playing Next');\n\t\t}\n\t});\n\n**PlayPrev**: Starts playing/showing the previous media/image in the current playlist or, if currently showing a slidshow, the slideshow playlist.\n\n boxeen.PlayPrev(host, function(success) {\n\t\tif(success) {\n\t\t\tconsole.log('Playing Prev');\n\t\t} else {\n\t\t\tconsole.log('Not Playing Prev');\n\t\t}\n\t});\n\n\n**SeekPercentage(percentage)**: Sets the playing position of the currently playing media as a percentage of the media’s length.\n\n boxeen.Stop(host, percentage, function(success) {\n\t\tif(success) {\n\t\t\tconsole.log('Stoped');\n\t\t} else {\n\t\t\tconsole.log('Not Stoped');\n\t\t}\n\t});\n\n\n**SeekPercentageRelative(relative-percentage)**: Adds/Subtracts the current percentage on to the current postion in the song\n\n boxeen.Stop(host, percentage, function(success) {\n\t\tif(success) {\n\t\t\tconsole.log('Stoped');\n\t\t} else {\n\t\t\tconsole.log('Not Stoped');\n\t\t}\n\t});\n\n\n**GetPercentage**: Retrieves the current playing position of the currently playing media as a percentage of the media’s length.\n\n boxeen.Back(host, function(e, percentage) {\n\t\tif(success) {\n\t\t\tconsole.log('Back');\n\t\t} else {\n\t\t\tconsole.log('!Back');\n\t\t}\n\t});\n\n\n**Up**: Click on UP button\n\n boxeen.Up(host, function(success) {\n\t\tif(success) {\n\t\t\tconsole.log('Up');\n\t\t} else {\n\t\t\tconsole.log('!Up');\n\t\t}\n\t});\n\n**Down**: Click on DOWN button\n\n boxeen.Down(host, function(success) {\n\t\tif(success) {\n\t\t\tconsole.log('Down');\n\t\t} else {\n\t\t\tconsole.log('!Down');\n\t\t}\n\t});\n\n**Left**: Click on LEFT button\n\n boxeen.Left(host, function(success) {\n\t\tif(success) {\n\t\t\tconsole.log('Left');\n\t\t} else {\n\t\t\tconsole.log('!Left');\n\t\t}\n\t});\n\n**Right**: Click on RIGHT button\n\n boxeen.Right(host, function(success) {\n\t\tif(success) {\n\t\t\tconsole.log('Right');\n\t\t} else {\n\t\t\tconsole.log('!Right');\n\t\t}\n\t});\n\n**Back**: Click on BACK button\n\n boxeen.Back(host, function(success) {\n\t\tif(success) {\n\t\t\tconsole.log('Back');\n\t\t} else {\n\t\t\tconsole.log('!Back');\n\t\t}\n\t});\n\n**Backspace**: Sends an backspace key (used in keyboard)\n\n boxeen.Backspace(host, function(success) {\n if(success) {\n console.log('Backspace Successefull');\n } else {\n console.log('Backspace not successefull');\n }\n });\n\n**SendKey()**: Sends an ASCII key (used in keyboard)\n\n boxeen.SendKey(host, 27, function(success) {\n if(success) {\n\t\t\tconsole.log('Key sent');\n\t\t} else {\n\t\t\tconsole.log('Key not sent');\n\t\t}\n\t});\n\n## Node Compatibility\n\nThis is only compatible with older versions of node because dgram.setBroadcast(flag) is not implemented in the newest versions.\n\n## License \n\n(The MIT License)\n\nCopyright (c) 2009-2011 Sérgio Ramos <mail@sergioramos.me>\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "maintainers": [ + { + "name": "ramitos", + "email": "mail@sergioramos.me" + } + ], + "time": { + "modified": "2011-12-11T04:00:57.684Z", + "created": "2011-12-11T04:00:55.963Z", + "0.1.0": "2011-12-11T04:00:57.684Z" + }, + "author": { + "name": "S�rgio Ramos", + "email": "mail@sergioramos.me" + }, + "repository": { + "type": "git", + "url": "git://github.com/ramitos/boxeen.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/boxeen/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "7d59b426cc3a72e2878db58f00f3ee24a1271b58", + "tarball": "http://registry.npmjs.org/boxeen/-/boxeen-0.1.0.tgz" + } + }, + "keywords": [ + "boxee", + "API", + "wrapper" + ], + "url": "http://registry.npmjs.org/boxeen/" + }, + "u": { + "name": "u", + "description": "A minimalist, functional utility library designed for embedding into another small program.", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "# u.js — minimalist utilities\n\n`u.js` is a minimalist, functional utility library designed for embedding into another small program.\n\n * Collection utilities that work on both Arrays and Objects (`reduce`, `map`)\n * Copying/extending Objects\n * Binding function scope\n * Serializing and deserializing query-string KV pairs\n * Optional polyfills in `future.js` for the most important JS features \n missing from older browsers (e.g., `Array.map()`, `Object.keys()`)\n\nThat's it.
1 `u.js` has no dependencies and works in \nany browser. The code has seen extensive production use, but the tests were part of a bigger \nproject and have not yet been ported.\n\n\n## Why?\n\n`u.js` is ideal for building a **bootstrapper**. Several of my projects have been embeddable tools.\nWhen your code is going to run in hostile territory, versioning is especially important, but it\nrequires some way to get your versioned code on the page in the first place: a bootstrapper.\n\nA tiny bootstrapper gives your users the flexibility to choose a version, but gives you the power to\nsmooth over implementation assumptions (like changing configuration parameters, embedding-code, or\nthe inevitable bug pasted onto someone's page). So I needed something tiny primarily to parse\nquerystring values and work with collections. It had to come prior to the main program, as the\nprogram version could be overriden by configuration!\n\n\n## API\n\n### u.reduce(o, fn, [acc], [cxt=o])\n\nAs `Array.prototype.reduce()`, but for both Object and Arrays.\n\nInvokes `acc = fn.call(cxt, acc, v, k, o)` for each value in the collection, returning the final\nvalue of the accumulator. For Arrays, `k` will be the index.\n\n\n### u.map(o, fn, cxt=o)\n\nAs `Array.prototype.map()`, but for both Object and Arrays.\n\nInvokes `fn.call(cxt, v, k, o)` for each value in the collection, returning a new collection with\nthe mapped values. (The collection will be an Object or Array based on the type of the input\ncollection.)\n\n\n### u.extend(target, ...donors) -> target\n\nCopies all keys from each `donor` onto the `target` object, and then returns it.\n\n\n### u.bind(fn, context, ...args) -> Function\n\nStub for `Function.prototype.bind()`: returns a function `(...more_args)` that when invoked, \ncalls the original function with the supplied context and arguments from both invocations \nconcatenated together:\n\n`fn.apply( context, args.concat(more_args) )`\n\n\n### u.isArray(o) -> Boolean\n\nReturns whether the input object is an Array; calls `Array.isArray(o)` if it exists, and a polyfill\notherwise.\n\n\n### u.trim(s) -> String\n\nReturns the string with leading and trailing whitespace removed.\n\n\n### u.toKV(o, delimiter='&') -> String\n\nSerializes an object into a string of \"form-encoded\" key-value pairs, applying one layer of\nURL-encoding.\n\n\n### u.fromKV(q, delimiter='&') -> Object\n\nDeserializes \"form-encoded\" key-value pairs (removing one layer of URL-encoding), and returning an\nobject of their values. Note that repeated values in the serialized string will clobber each other.\n\n\n### u.setCookie(k, v, [expires, [path, [domain, [doc]]]]) -> Object\n\nSets a cookie, returning an updated map from cookie key to value.\n\nBy default, the cookie will be set for all paths on the current domain using the current document,\nexpiring on a distant date:\n\n- expires: `'Sun, 24-Mar-2024 11:11:11 GMT'`\n- path: `'/'`\n- domain: `doc.domain`\n- doc: `window.document`\n\n\n\n## Feedback\n\nOpen a ticket at [github](http://github.com/dsc/u.js), or send me [email](mailto:dsc@less.ly?subject=u.js).\n\n\n[1]: `u.js` does not provide any DOM manipulation; check out [Zepto.js](http://zeptojs.com) if you\nneed to fiddle with DOM elements.\n\n", + "maintainers": [ + { + "name": "dsc", + "email": "dsc@less.ly" + } + ], + "time": { + "modified": "2011-12-11T04:16:52.091Z", + "created": "2011-12-11T04:16:50.870Z", + "0.1.0": "2011-12-11T04:16:52.091Z" + }, + "author": { + "name": "David Schoonover", + "email": "dsc@less.ly", + "url": "http://less.ly" + }, + "repository": { + "type": "git", + "url": "git://github.com/dsc/u.js.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/u/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "f5cc15d0063241e2c95004990fc4dd989bf1fcb3", + "tarball": "http://registry.npmjs.org/u/-/u-0.1.0.tgz" + } + }, + "keywords": [ + "functional", + "util", + "client", + "browser", + "embedding", + "bootstrapper" + ], + "url": "http://registry.npmjs.org/u/" + }, + "connect-compiler": { + "name": "connect-compiler", + "description": "Dynamically recompile stale assets", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "# connect-compiler\n\n[`connect`](http://senchalabs.github.com/connect/) middleware for dynamically recompiling derived files at serve-time. This module is designed for speeding up development; best-practices would have you compile all necessary files as part of your production deploy process. But you knew that, of course.\n\nUsage is the same as all other `connect` middleware:\n\n````js\n var connect = require('connect')\n , compiler = require('connect-compiler')\n \n , server = connect.createServer(\n connect.logger(),\n compiler({\n src : 'src'\n dest : 'var'\n enabled : [ 'coffee', 'uglify' ]\n }),\n connect.static(__dirname + '/public'),\n connect.static(__dirname + '/var')\n )\n ;\n \n server.listen(6969);\n````\n\nOf note, earlier versions of `connect` actually came with a module like this, but they do not any longer.\n\n\n## Settings\n\nThe compiler middleware takes a settings object, minimally containing a list of compilers to \nenable (`enabled`). Most uses will also specify a source directory (`src`).\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n name\n \n type\n \n default\n \n description\n
\n enabled\n \n String, String[]\n \n Required Enabled compiler id(s). See below for included compilers.\n
\n src\n \n String, String[]\n \n cwd\n \n Directories to search for source files to compile.\n
\n dest\n \n String\n \n src or
\n src[0] if Array\n
\n Directory to write compiled result.\n
\n roots\n \n {src:dest, ...},
\n [[src, dest], ...]\n
\n Allows you to specify multiple, ordered src-dest pairs. One of roots or src is required; roots takes precedence over src if present.\n
\n log_level\n \n String , Number\n \n WARN\n \n Logging verbosity. Valid values (case-insensitive): error, warn, info, debug, silent, or a numeric constant (as found in LOG).\n
\n create_dirs\n \n Boolean\n \n true\n \n Creates intermediate directories for destination files.\n
\n mount\n \n String\n \n Prefix trimmed off request path before matching/processing.\n
\n delta\n \n Number\n \n 0\n \n Delta mtime (in seconds) required for a derived file to be considered stale, and therefore recompiled. By default, any change will cause a file to be recompiled on next request.\n
\n expires\n \n Boolean\n \n false\n \n Automatically treat files as stale if this old in secs.\n
\n external_timeout\n \n Number\n \n 3000\n \n Milliseconds after which to kill subprocess commands.\n
\n cascade\n \n Boolean\n \n false\n \n Invoke all compilers that match? otherwise, only first.\n
\n resolve_index\n \n Boolean , String\n \n false\n \n If true-y, directories are resolved with the supplied filename, where true maps to 'index.html'.\n
\n ignore\n \n RegExp\n \n /\\.(jpe?g|gif|png)$/i\n \n Requests matching this pattern are short-circuit ignored, and no compiler matching occurs.\n
\n allowed_methods\n \n String[]\n \n ['GET']\n \n HTTP methods compiler should process. This setting is global-only -- per-compiler overrides specified via options will have no effect.\n
\n options\n \n {compilerId:settings, ...}\n \n Hash of additional per-compiler options, mapped by compiler id. Each compiler is supplied a copy of the settings object; if additional options are supplied in this way for a given compiler, they will be merged into the settings (and override any colliding top-level keys).\n
\n\n\n\n## Compilers\n\nTo enable a compiler, you specify its `id`, which you can get from the handy list that follows. Some\ncompilers take options, which you pass using the `options` setting using the compiler `id` as the\nkey.\n\nFor example, to disable the `bare` option for the CoffeeScript compiler, you'd do something like:\n\n````js\nserver = connect.createServer(\n compiler({\n src : 'src'\n dest : 'var'\n enabled : [ 'coffee' ],\n options : {\n 'coffee' : {\n 'bare' : false\n }\n }\n }),\n connect.static(__dirname + '/public'),\n connect.static(__dirname + '/var')\n)\n````\n\n### Compiler IDs\n\n- [CoffeeScript](http://coffeescript.org/) Compiler: `coffee`\n- [Coco](http://satyr.github.com/coco/) Compiler: `coco`\n- [Uglify](https://github.com/mishoo/UglifyJS) Compiler: `uglify`\n- [Jade](http://jade-lang.com/) Compiler: `jade`\n- [Stylus](http://learnboost.github.com/stylus/) Compiler: `stylus`\n- [Less](http://lesscss.org/) Compiler: `less`\n- [Sass](http://sass-lang.com/) Compiler: `sass` -- Using [sass.js](https://github.com/visionmedia/sass.js).\n- [SassRuby](http://sass-lang.com/) Compiler: `sass_ruby` -- External compiler using a shell command to \n the [Ruby version of Sass](http://sass-lang.com/download.html) (which you must install that part yourself).\n- [Jison](http://zaach.github.com/jison/) Compiler: `jison`\n\n\n## Feedback\n\nFind a bug or want to contribute? Open a ticket on [github](http://github.com/dsc/connect-compiler). \nYou're also welcome to send me email at [dsc@less.ly](mailto:dsc@less.ly?subject=connect-compiler).\n\nIf you're interested in contributing, note that at the moment, a version of `node-seq` is checked in under \n`node_modules` while we wait for a pull request to be pulled into `master`.\n\n", + "maintainers": [ + { + "name": "dsc", + "email": "dsc@less.ly" + } + ], + "time": { + "modified": "2011-12-11T04:18:58.026Z", + "created": "2011-12-11T04:18:56.837Z", + "0.1.0": "2011-12-11T04:18:58.026Z" + }, + "author": { + "name": "David Schoonover", + "email": "http://less.ly", + "url": "dsc@less.ly" + }, + "repository": { + "type": "git", + "url": "git://github.com/dsc/connect-compiler.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/connect-compiler/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "28b7f9a0f42ec5b72c5c132d147e848d94937a35", + "tarball": "http://registry.npmjs.org/connect-compiler/-/connect-compiler-0.1.0.tgz" + } + }, + "keywords": [ + "connect", + "middleware", + "compiler", + "development", + "coffee-script", + "coco", + "jade", + "stylus", + "less", + "css", + "minify" + ], + "url": "http://registry.npmjs.org/connect-compiler/" + }, + "knock": { + "name": "knock", + "description": "Attempts to enumerate subdomains of a domain", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": null, + "maintainers": [ + { + "name": "cartercole", + "email": "node@cartercole.com" + } + ], + "time": { + "modified": "2011-12-11T05:19:40.421Z", + "created": "2011-12-11T05:19:39.868Z", + "0.0.1": "2011-12-11T05:19:40.421Z" + }, + "author": { + "name": "Carter Cole", + "email": "node@cartercole.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:neopunisher/node-knock.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/knock/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "55e706eaea3fc0673632509fdc968c5094f770ee", + "tarball": "http://registry.npmjs.org/knock/-/knock-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/knock/" + }, + "jsface": { + "name": "jsface", + "description": "JsFace JavaScript Object-Oriented Programming library", + "dist-tags": { + "latest": "2.0.0" + }, + "maintainers": [ + { + "name": "tannhu", + "email": "tnhu@me.com" + } + ], + "time": { + "modified": "2011-12-11T06:56:43.294Z", + "created": "2011-12-11T06:56:42.162Z", + "2.0.0": "2011-12-11T06:56:43.294Z" + }, + "author": { + "name": "Tan Nhu", + "email": "tnhu AT me . com" + }, + "repository": { + "type": "git", + "url": "git://github.com/tannhu/jsface.git" + }, + "versions": { + "2.0.0": "http://registry.npmjs.org/jsface/2.0.0" + }, + "dist": { + "2.0.0": { + "shasum": "6cb962fe7e98a203295579a3ff72916fe6c993d7", + "tarball": "http://registry.npmjs.org/jsface/-/jsface-2.0.0.tgz" + } + }, + "keywords": [ + "jsface", + "JsFace", + "OOP", + "JavaScript OOP", + "JavaScript Object Oriented Programming" + ], + "url": "http://registry.npmjs.org/jsface/" + }, + "rawhash": { + "name": "rawhash", + "description": "experimental in-memory key:value cache where keys are binary Buffers", + "dist-tags": { + "latest": "0.1.3" + }, + "readme": "rawhash\n-------\n\nAn experimental binary friendly alternative to using a hash as a key:value cache, for [node.js](http://www.nodejs.org).\n\nKeys are binary [Buffer](http://nodejs.org/docs/v0.6.5/api/buffers.html) objects rather than strings. Values are arbitrary objects.\n\n`rawhash` is built on [google-sparsehash](http://code.google.com/p/google-sparsehash) (not included) and [murmurhash3](http://code.google.com/p/smhasher/) (included).\n\nInstall\n-------\n\nget google-sparsehash:\n\n* on Debian/Ubuntu: `apt-get install libsparsehash-dev`\n* on OS X: `brew install google-sparsehash` or `port install google-sparsehash`\n\nor get the latest version from the [google\\-sparsehash project](http://code.google.com/p/google-sparsehash/downloads/list)\n\nthen install rawhash itself:\n\n`npm install rawhash`\n\nUsage\n-----\n\n```javascript\nvar rh = require('rawhash');\nvar k = new Buffer(6);\nvar h = new rh.Sparse();\nh.set(k, {a:1, b:2});\nconsole.log(h.get(k));\nh.each(function(k, v) {\n console.log(k, v);\n});\nh.del(k);\n```\n\nThere are 3 kinds of hashes:\n\n* `Sparse` is slower, but uses less memory, uses [sparse\\_hash\\_map<>](http://google-sparsehash.googlecode.com/svn/trunk/doc/sparse_hash_map.html)\n* `Dense` is faster, but uses more memory, uses [dense\\_hash\\_map<>](http://google-sparsehash.googlecode.com/svn/trunk/doc/dense_hash_map.html)\n* `Map` is usually somewhere between `Sparse` and `Dense`, uses the STL's [map<>](http://www.sgi.com/tech/stl/Map.html) which is actually ordered and supports range queries - not exposed in `Map`\n\n`Sparse` and `Dense` take an optional argument to seed `murmurhash3`.\n\n```javascript\nvar h = new rh.Dense(42);\n```\n\nPerformance\n-----------\n\nThis is largely TBD\n\nOn a synthetic test (see `./perf/`) with 150K sets, gets and deletes (very similar to `./test.js`) on a low-end MBP, this is how rawhash compares with using a Javascript hash:\n\n
\nSparse 509 ms\nDense  330 ms\nMap    463 ms\n{}     754 ms\n
\n\nLicense\n-------\n\n(The MIT License)\n\nCopyright (c) 2011 Carlos Guerreiro, [perceptiveconstructs.com](http://perceptiveconstructs.com)\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n", + "maintainers": [ + { + "name": "pconstr", + "email": "carlos@perceptiveconstructs.com" + } + ], + "time": { + "modified": "2011-12-11T10:44:06.592Z", + "created": "2011-12-11T10:44:04.588Z", + "0.1.3": "2011-12-11T10:44:06.592Z" + }, + "author": { + "name": "Carlos Guerreiro", + "url": "http://perceptiveconstructs.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/pconstr/rawhash.git" + }, + "versions": { + "0.1.3": "http://registry.npmjs.org/rawhash/0.1.3" + }, + "dist": { + "0.1.3": { + "shasum": "38f6219b98d2af9d3f2801a96edaa1e406adce32", + "tarball": "http://registry.npmjs.org/rawhash/-/rawhash-0.1.3.tgz" + } + }, + "keywords": [ + "key:value", + "buffer", + "store", + "in-memory", + "cache" + ], + "url": "http://registry.npmjs.org/rawhash/" + }, + "gits": { + "name": "gits", + "description": "A node.js git library with some cool features like synchronizing all the branches from a git remote to a local subdir", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "# gits - Yet another friendly git module for node.js with some goodies (and async)\n\nApart from simply exposing ```git(dir, args, callback)``` there are a couple of nice utilities.\n\n## Installation\n\n```bash\nnpm install gitsync\n```\n\n## Usage\n\n```javascript\nvar gits = require('gits');\n```\n\nAPI:\n\n * ```gits.pull(dir, callback)``` - runs git reset + git pull in a directory\n * ```gits.sync(origin, branch, dir, callbacl)``` - clones/pulls origin/branch into dir\n * ```gits.bsync(origin, target, branches, prefix, callback)``` - clones multiple branches (or all if branches is null) from origin into subdirectories under target dir. 'prefix' is prepended to subdirectory names\n * ```gits.bsyncAll(origin, target, prefix, callback)``` - clones all branches from origin into target\n * ```gits.currentBranch(dir, callback)``` - returns the current branch of a directory\n * ```gits.git(dir, argsArray, callback)``` - just runs git command line\n * ```gits.remotes(dir, callback)``` - returns a hash with the remotes in the repo\n\n## License\n\nMIT\n", + "maintainers": [ + { + "name": "eladb", + "email": "elad.benisrael@gmail.com" + } + ], + "time": { + "modified": "2011-12-11T12:16:52.457Z", + "created": "2011-12-11T12:16:48.958Z", + "0.0.1": "2011-12-11T12:16:52.457Z" + }, + "author": { + "name": "Elad Ben-Israel" + }, + "repository": { + "type": "git", + "url": "git://github.com/anodejs/node-gits.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/gits/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "80eadc45b7d38a167cd0fa7127c3c9b102626e76", + "tarball": "http://registry.npmjs.org/gits/-/gits-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/gits/" + }, + "partialize": { + "name": "partialize", + "description": "extends native 'path' module to underscore paths for partial views", + "dist-tags": { + "latest": "0.0.0" + }, + "readme": "# partialize\n\nextends native 'path' module to underscore paths for partial views\n\n## read it and weep\n\n```javascript\nvar path = require('partialize');\n\npath.partialize('blog/posts');\n //=> 'blog/_posts'\n```\n\n## as we proceed\n\n```bash\nnpm install partialize\n```\n\n## license\n\n # Permission is hereby granted, free of charge, to any person obtaining a copy\n # of this software and associated documentation files (the 'Software'), to deal\n # in the Software without restriction, including without limitation the rights\n # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n # copies of the Software, and to permit persons to whom the Software is\n # furnished to do so, subject to the following conditions:\n #\n # The above copyright notice and this permission notice shall be included in\n # all copies or substantial portions of the Software.\n #\n # THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n # THE SOFTWARE.\n\n", + "maintainers": [ + { + "name": "zzak", + "email": "zachary@zacharyscott.net" + } + ], + "time": { + "modified": "2011-12-11T13:56:43.549Z", + "created": "2011-12-11T13:56:40.697Z", + "0.0.0": "2011-12-11T13:56:43.549Z" + }, + "author": { + "name": "Zachary Scott", + "email": "zachary@zacharyscott.net", + "url": "http://zacharyscott.net/" + }, + "repository": { + "type": "git", + "url": "git://github.com/zzak/partialize.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/partialize/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "db85934a70824cd55de01b04cf180662f0d5115d", + "tarball": "http://registry.npmjs.org/partialize/-/partialize-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/partialize/" + }, + "declare": { + "name": "declare", + "description": "dojo 1.7 based oop utils", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": null, + "maintainers": [ + { + "name": "agebrock", + "email": "christoph.hagenbrock@googlemail.com" + } + ], + "time": { + "modified": "2011-12-11T15:21:20.688Z", + "created": "2011-12-11T15:21:18.372Z", + "0.0.1": "2011-12-11T15:21:20.688Z" + }, + "author": { + "name": "Christoph Hagenbrock", + "email": "christoph.hagenbrock@comvel.de" + }, + "repository": { + "type": "git", + "url": "git://github.com/agebrock/declare.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/declare/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "30d324ace06bc198b71426c2ca480b05cbcdfac6", + "tarball": "http://registry.npmjs.org/declare/-/declare-0.0.1.tgz" + } + }, + "keywords": [ + "declare", + "oop", + "class", + "dojo" + ], + "url": "http://registry.npmjs.org/declare/" + }, + "mongoose-troop": { + "name": "mongoose-troop", + "description": "plugins for mongoose", + "dist-tags": { + "latest": "0.0.0" + }, + "readme": "", + "maintainers": [ + { + "name": "tblobaum", + "email": "tblobaum@gmail.com" + } + ], + "time": { + "modified": "2011-12-11T16:27:03.690Z", + "created": "2011-12-11T16:27:02.568Z", + "0.0.0": "2011-12-11T16:27:03.690Z" + }, + "author": { + "name": "Thomas Blobaum", + "email": "tblobaum@gmail.com", + "url": "https://github.com/tblobaum/" + }, + "repository": { + "type": "git", + "url": "git://github.com/tblobaum/mongoose-troop.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/mongoose-troop/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "aa5456304d114b61811f1242a3759fa01be0de0c", + "tarball": "http://registry.npmjs.org/mongoose-troop/-/mongoose-troop-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/mongoose-troop/" + }, + "virtuoso-ini-parser": { + "name": "virtuoso-ini-parser", + "description": "OpenLink Virtuoso(.ini) parser", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "aldobucchi", + "email": "aldo.bucchi@gmail.com" + } + ], + "time": { + "modified": "2011-12-11T17:20:51.023Z", + "created": "2011-12-11T16:43:51.308Z", + "0.0.1": "2011-12-11T16:47:23.374Z", + "0.0.2": "2011-12-11T17:20:51.023Z" + }, + "author": { + "name": "Aldo Bucchi", + "email": "aldo.bucchi@gmail.com" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/virtuoso-ini-parser/0.0.1", + "0.0.2": "http://registry.npmjs.org/virtuoso-ini-parser/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "696475d476319d755269ea43419ca18ed470ea2a", + "tarball": "http://registry.npmjs.org/virtuoso-ini-parser/-/virtuoso-ini-parser-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "a2cc04fa2691938f0048736b826274adc5a8f1b1", + "tarball": "http://registry.npmjs.org/virtuoso-ini-parser/-/virtuoso-ini-parser-0.0.2.tgz" + } + }, + "keywords": [ + "virtuoso", + "openlink", + "sparql", + "rdf", + "linkeddata" + ], + "url": "http://registry.npmjs.org/virtuoso-ini-parser/" + }, + "ldapjs-elasticsearch": { + "name": "ldapjs-elasticsearch", + "description": "Search into your elastic search datas throught LDAP.", + "dist-tags": { + "latest": "0.0.2" + }, + "readme": "# Node ldap elasticsearch\n\nConvert ldap query (from [ldapjs](http://ldpajs.org) project) to\n[elastic search](http://www.elasticsearch.org/) query. With few code, you\ncreate a ldap server wich ask question to your elastic search index.\n\nImagine querying from your mail client to your intranet data stored in a classic storage (mysql, mongodb …)\n\n## What you can do\n * _or, and, equality, substr_ filters\n\n## What you can't do\n * there is a bug with _not_\n * no authentification for now\n\n## What will never work\n * no equivalent for \\>= and \\<=\n\n## Install and test\n\n npm install .\n\n npm test\n\n## Example\n\nThere is a simple example in the _example/addressbook_ folder.\n\n## Dependencies\n\nThe example use [elastical](https://github.com/rgrove/node-elastical),\nbut the query conversion is agnostic.\n\n## Licence\n\nMIT.\n", + "maintainers": [ + { + "name": "athoune", + "email": "mathieu@garambrogne.net" + } + ], + "time": { + "modified": "2011-12-11T18:14:22.984Z", + "created": "2011-12-11T17:58:54.429Z", + "0.0.1": "2011-12-11T17:58:56.305Z", + "0.0.2": "2011-12-11T18:14:22.984Z" + }, + "author": { + "name": "Mathieu Lecarme", + "email": "mathieu@garambrogne.net" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ldapjs-elasticsearch/0.0.1", + "0.0.2": "http://registry.npmjs.org/ldapjs-elasticsearch/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "15ee08790f946d34bee97284283180a46406530c", + "tarball": "http://registry.npmjs.org/ldapjs-elasticsearch/-/ldapjs-elasticsearch-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "87a60e23a6538b73ba2c0ffc89486eae42358e26", + "tarball": "http://registry.npmjs.org/ldapjs-elasticsearch/-/ldapjs-elasticsearch-0.0.2.tgz" + } + }, + "keywords": [ + "ldap", + "elasticsearch" + ], + "url": "http://registry.npmjs.org/ldapjs-elasticsearch/" + }, + "JS-string-minimization": { + "name": "JS-string-minimization", + "description": "Simple minimization for array of string", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": null, + "maintainers": [ + { + "name": "shuranov", + "email": "shuranov@meta.ua" + } + ], + "time": { + "modified": "2011-12-11T19:27:12.755Z", + "created": "2011-12-11T19:27:10.873Z", + "0.0.1": "2011-12-11T19:27:12.755Z" + }, + "author": { + "name": "Viacheslav Shuranov" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/JS-string-minimization/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "dde03431e31f6f6c6fa2c34a039699785cd4264f", + "tarball": "http://registry.npmjs.org/JS-string-minimization/-/JS-string-minimization-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/JS-string-minimization/" + }, + "node-arguments": { + "name": "node-arguments", + "description": "A toolset for easily working with node process command line arguments.", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": null, + "maintainers": [ + { + "name": "coolbloke1324", + "email": "rob@irrelon.com" + } + ], + "time": { + "modified": "2011-12-11T21:19:35.027Z", + "created": "2011-12-11T21:19:33.672Z", + "0.0.1": "2011-12-11T21:19:35.027Z" + }, + "author": { + "name": "Rob Evans", + "email": "rob@irrelon.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/coolbloke1324/node-arguments/arguments.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-arguments/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "f5407c9f8d829e34f031242d528ccf487a82e691", + "tarball": "http://registry.npmjs.org/node-arguments/-/node-arguments-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/node-arguments/" + }, + "putt": { + "name": "putt", + "description": "easily output text in lots of fun ways (speech, growl, email, ...)", + "dist-tags": { + "latest": "0.0.6" + }, + "readme": "**putt** is a node.js module that lets you easily output text in lots of fun ways. It wraps a bunch of other libraries to make this as simple as possible.\n\n var putt = require('putt');\n putt().speak(\"This is spoken aloud by your computer\");\n putt().desktop_notify(\"This appears as a desktop notification\");\n\nSupported output formats:\n\n* Speech synthesizer (by [say.js](https://github.com/Marak/say.js))\n* Desktop notification (by [node-growl](https://github.com/visionmedia/node-growl))\n* POST request (by [restler](https://github.com/danwrong/restler))\n* TODO: Email (by [nodemailer](https://github.com/andris9/nodemailer))\n* More coming soon... (SMS/call - twilio API, twitter/fb, ???)\n\n# Install\n\nTODO\n\n# Usage\n\n### Speech output\n\nFor `speak` to work:\n\n* Mac: it should just work\n* Linux: install [Festival](http://www.cstr.ed.ac.uk/projects/festival/) and see what voices you have available (e.g. `voice_rab_diphone`)\n\n### Desktop notification output\n\nFor `desktop_notify` output to work, install:\n\n* Mac: [growl](http://code.google.com/p/growl/downloads/list), including the `growlnotify` extra\n* Linux: `notify-send` with `sudo apt-get install libnotify-bin` or equivalent\n\n### POST request output\n\nExample usage:\n\nTODO\n\n### Email output\n\nTODO\n", + "maintainers": [ + { + "name": "6", + "email": "pg.sners@gmail.com" + } + ], + "time": { + "modified": "2011-12-11T23:01:39.276Z", + "created": "2011-12-11T14:27:31.334Z", + "0.0.2": "2011-12-11T14:27:31.528Z", + "0.0.3": "2011-12-11T15:20:23.964Z", + "0.0.4": "2011-12-11T17:01:20.683Z", + "0.0.5": "2011-12-11T19:17:43.120Z", + "0.0.6": "2011-12-11T23:01:39.276Z" + }, + "author": { + "name": "Peter Graham" + }, + "repository": { + "type": "git", + "url": "git://github.com/6/putt.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/putt/0.0.2", + "0.0.3": "http://registry.npmjs.org/putt/0.0.3", + "0.0.4": "http://registry.npmjs.org/putt/0.0.4", + "0.0.5": "http://registry.npmjs.org/putt/0.0.5", + "0.0.6": "http://registry.npmjs.org/putt/0.0.6" + }, + "dist": { + "0.0.2": { + "shasum": "c74fcf6a94438ee84c579b4b53c94df0977a2a86", + "tarball": "http://registry.npmjs.org/putt/-/putt-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "11a858f03e1e574f90f6d7ed240ed38219cf1d1f", + "tarball": "http://registry.npmjs.org/putt/-/putt-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "ff04e9a984a2d98903838b6af37e93837cbf2fe8", + "tarball": "http://registry.npmjs.org/putt/-/putt-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "3b3612105107c82c84b3ff7d133c23a9cc16db46", + "tarball": "http://registry.npmjs.org/putt/-/putt-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "895c68edf92d3027c087031950d8924e5bfe1c5b", + "tarball": "http://registry.npmjs.org/putt/-/putt-0.0.6.tgz" + } + }, + "keywords": [ + "output", + "notify", + "notification" + ], + "url": "http://registry.npmjs.org/putt/" + }, + "gister": { + "name": "gister", + "description": "gist API wrapper for editing, creating and retrieving.", + "dist-tags": { + "latest": "0.0.5" + }, + "readme": "# gister\n\n[![Build Status](https://secure.travis-ci.org/goatslacker/gister.png)](http://travis-ci.org/goatslacker/gister)\n\nnode.js module for gist.github.com -- edit, create, and retrieve gists.\n\n\n", + "maintainers": [ + { + "name": "goatslacker", + "email": "josh@goatslacker.com" + } + ], + "time": { + "modified": "2011-12-12T01:40:42.482Z", + "created": "2011-12-11T11:38:18.662Z", + "0.0.1": "2011-12-11T11:38:20.169Z", + "0.0.2": "2011-12-11T13:57:18.393Z", + "0.0.3": "2011-12-12T01:06:22.578Z", + "0.0.4": "2011-12-12T01:14:50.558Z", + "0.0.5": "2011-12-12T01:40:42.482Z" + }, + "author": { + "name": "Josh Perez", + "email": "josh@goatslacker.com", + "url": "http://github.com/goatslacker" + }, + "repository": { + "type": "git", + "url": "git://github.com/goatslacker/gister.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/gister/0.0.1", + "0.0.2": "http://registry.npmjs.org/gister/0.0.2", + "0.0.3": "http://registry.npmjs.org/gister/0.0.3", + "0.0.4": "http://registry.npmjs.org/gister/0.0.4", + "0.0.5": "http://registry.npmjs.org/gister/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "cb73df81e3f57271aec73dcc7eae28b1995e77b2", + "tarball": "http://registry.npmjs.org/gister/-/gister-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "3a677de6f236645ce652e5f6b3f4a617b41a360e", + "tarball": "http://registry.npmjs.org/gister/-/gister-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "3703925dce989ba7196a68025e496e6f822b678e", + "tarball": "http://registry.npmjs.org/gister/-/gister-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "41fb63affdc13255db48ed25ab8e53f34bcf5bcf", + "tarball": "http://registry.npmjs.org/gister/-/gister-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "d95629fd3e99afde1e1fd7c5c6ddb96f298d8fe3", + "tarball": "http://registry.npmjs.org/gister/-/gister-0.0.5.tgz" + } + }, + "keywords": [ + "gist", + "github" + ], + "url": "http://registry.npmjs.org/gister/" + }, + "outcome": { + "name": "outcome", + "description": "Better Result Handling", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "\n### Old Way\n\n```javascript\nvar fs = require('fs');\n\nfs.stat('some/file.js', function(err, result) {\n\t\n\tif(err) {\n\t\t//do stuff\n\t\treturn;\n\t}\n\n\n\t//do success stuff\n});\n\n```\n\n### Result.js way lets you pick your own flavor\n\n```javascript\nvar result = require('result');\n\nresult.call(fs.stat).on({\n\terror: function(error) {\n\t\t//do error stuff\n\t},\n\tdata: function(arg, anotherArg) {\n\t\t//do everything else\n\t}\n});\n```\n\nAnother variation\n\n```javascript\nvar result = require('result');\n\nfs.stat(result({\n\terror: function(error) {\n\t\t\n\t},\n\tresult: function(arg) {\n\t\t\n\t}\n}));\n````\n\nJust one more....\n\n```javascript\nvar result = require('result');\n\nfs.stat(result({\n\terror: result.throwError,\n\tresult: function(arg) {\n\t\t\n\t}\n}));\n```\n\nBy default, all errors are thrown unless you listen for an unhandled exception, like so:\n\n```javascript\n\nresult.on('unhandledError', function() {\n\t//report bugs here...\n});\n\n\nfs.stat(result(function(result) {\n\t\n}));\n```", + "maintainers": [ + { + "name": "architectd", + "email": "craig.j.condon@gmail.com" + } + ], + "time": { + "modified": "2011-12-12T02:42:25.859Z", + "created": "2011-12-12T02:42:24.815Z", + "0.0.1": "2011-12-12T02:42:25.859Z" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/outcome/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "9921940ab77a22d60257ef9634e050b061038523", + "tarball": "http://registry.npmjs.org/outcome/-/outcome-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/outcome/" + }, + "tldtools": { + "name": "tldtools", + "description": "Extracts a domain into its component parts (node-url wrapper), performs domain inspection functions", + "dist-tags": { + "latest": "0.0.6" + }, + "maintainers": [ + { + "name": "mjpearson", + "email": "npm@m.freshbutter.me" + } + ], + "time": { + "modified": "2011-12-12T06:58:04.232Z", + "created": "2011-12-11T21:48:50.190Z", + "0.0.1": "2011-12-11T21:48:51.769Z", + "0.0.2": "2011-12-11T22:12:15.580Z", + "0.0.3": "2011-12-11T22:15:56.922Z", + "0.0.4": "2011-12-11T22:40:26.555Z", + "0.0.5": "2011-12-12T06:50:01.062Z", + "0.0.6": "2011-12-12T06:58:04.232Z" + }, + "repository": { + "type": "git", + "url": "git://github.com/mjpearson/tldtools.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tldtools/0.0.1", + "0.0.2": "http://registry.npmjs.org/tldtools/0.0.2", + "0.0.3": "http://registry.npmjs.org/tldtools/0.0.3", + "0.0.4": "http://registry.npmjs.org/tldtools/0.0.4", + "0.0.5": "http://registry.npmjs.org/tldtools/0.0.5", + "0.0.6": "http://registry.npmjs.org/tldtools/0.0.6" + }, + "dist": { + "0.0.1": { + "shasum": "3e30a2bbc638713a9a1ca524033f6798417152e0", + "tarball": "http://registry.npmjs.org/tldtools/-/tldtools-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "966ede241eb711878df123cbd31fcd95fbcdc44f", + "tarball": "http://registry.npmjs.org/tldtools/-/tldtools-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "c62e7bace6d0527f3c3aced5b7b933fdb890bbe3", + "tarball": "http://registry.npmjs.org/tldtools/-/tldtools-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "7e3599b53abe56760b885e10a06dce2d34733de4", + "tarball": "http://registry.npmjs.org/tldtools/-/tldtools-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "abaeb553fbbdb393c945f578c17bcc8dd4ed5ca2", + "tarball": "http://registry.npmjs.org/tldtools/-/tldtools-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "8943e4e94bc0f598c0f3af635c75f7d239a8ef88", + "tarball": "http://registry.npmjs.org/tldtools/-/tldtools-0.0.6.tgz" + } + }, + "keywords": [ + "domain", + "tld", + "extract", + "parse", + "subdomain", + "domain tools", + "whois" + ], + "url": "http://registry.npmjs.org/tldtools/" + }, + "ringbuffer": { + "name": "ringbuffer", + "description": "Simple circular buffers (or ring buffers) implementation", + "dist-tags": { + "latest": "0.1.2" + }, + "readme": null, + "maintainers": [ + { + "name": "fzorca", + "email": "f@zorca.de" + } + ], + "time": { + "modified": "2011-12-12T10:42:32.676Z", + "created": "2011-12-12T09:33:10.679Z", + "0.1.0": "2011-12-12T09:33:12.556Z", + "0.1.2": "2011-12-12T10:42:32.676Z" + }, + "author": { + "name": "fzorca", + "email": "f@zorca.de", + "url": "https://github.com/FlorentinZorca" + }, + "repository": { + "type": "git", + "url": "git://github.com/FlorentinZorca/node-ringBuffer.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/ringbuffer/0.1.0", + "0.1.2": "http://registry.npmjs.org/ringbuffer/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "01a8ce9e965249e5b5e39d1f75a41b6bf54af950", + "tarball": "http://registry.npmjs.org/ringbuffer/-/ringbuffer-0.1.0.tgz" + }, + "0.1.2": { + "shasum": "1ce5313ee9e9132f6fd40ede5a87c9ece8401a6f", + "tarball": "http://registry.npmjs.org/ringbuffer/-/ringbuffer-0.1.2.tgz" + } + }, + "keywords": [ + "ring buffers", + "circular buffers" + ], + "url": "http://registry.npmjs.org/ringbuffer/" + }, + "pj_robin": { + "name": "pj_robin", + "description": "Robinson projection library, port of PJ_robin.c from PROJ.4", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "# pj_robin.js\n\nRobinson projection library - javascript port of PJ_robin.c from PROJ.4\n(v4.7.0). Use it to make less-stretchified (but bendy around the edges)\nglobal interactive slippy maps :)\n\n## Node.js usage\n\nInstall using `npm`.\n\n npm install pj_robin\n\nFrivolous example code:\n\n var Robinson = require('pj_robin'),\n pt = Robinson.project(51.507222, -0.1275);\n console.log(\"London is at x:\"+pt.x+\" y:\"+pt.y);\n\n## Browser usage\n\nUse the minified javascript file (which can be rebuilt using the included\nMakefile).\n\n \n \n\n## API reference\n\n### Robinson.project(lat, lng) -> Point\n\nProject a latitude / longitude (in degrees).\n\nReturns an object with `x` and `y` properties.\n\nAside: I *think* this conversion uses a unit sphere (TODO confirm this).\n\n### Robinson.unproject(x, y) -> LatLng\n\nUnproject an x / y point.\n\nReturns an object with lat and lng properties.\n\n### Robinson.remap(pt) -> Point\n\nRe-map a projected point to 0 <= x/y < 1 range.\n\n(useful for operations on square map tiles)\n", + "maintainers": [ + { + "name": "oesmith", + "email": "olly.smith@gmail.com" + } + ], + "time": { + "modified": "2011-12-12T11:50:42.347Z", + "created": "2011-12-12T11:50:38.480Z", + "0.1.0": "2011-12-12T11:50:42.347Z" + }, + "author": { + "name": "Olly Smith", + "email": "olly.smith@gmail.com" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/pj_robin/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "ec0a23a53df58f2b072ba89c6d20251ac045a804", + "tarball": "http://registry.npmjs.org/pj_robin/-/pj_robin-0.1.0.tgz" + } + }, + "keywords": [ + "proj", + "projection", + "robinson" + ], + "url": "http://registry.npmjs.org/pj_robin/" + }, + "dk-test": { + "name": "dk-test", + "description": "Framework-Agnostic Test Runner for DrumKit.js", + "dist-tags": { + "latest": "0.1.1" + }, + "readme": "# dk-test\n\n**WARNING! This framework is currently in very early development, it may be broken or may break at any time.**\n\nThe `dk-test` plugin provides a testing framework-agnositic test runner to \nDrumKit.js that can be used to test both server and browser code.\n\n## Installation\n\nInstall `dk-test` using `npm`:\n\n```bash\nnpm install dk-test\n```\n\n## Getting Started\n\n\n", + "maintainers": [ + { + "name": "chrisjpowers", + "email": "chrisjpowers@gmail.com" + } + ], + "time": { + "modified": "2011-12-12T14:06:45.680Z", + "created": "2011-12-12T14:06:42.455Z", + "0.1.1": "2011-12-12T14:06:45.680Z" + }, + "author": { + "name": "Chris Powers", + "email": "chrisjpowers@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/chrisjpowers/dk-test.git" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/dk-test/0.1.1" + }, + "dist": { + "0.1.1": { + "shasum": "dc7e9da0f8e0f1f22f83bbac166c4e426029a671", + "tarball": "http://registry.npmjs.org/dk-test/-/dk-test-0.1.1.tgz" + } + }, + "url": "http://registry.npmjs.org/dk-test/" + }, + "db-info": { + "name": "db-info", + "description": "Node.js relational database information utility", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "# db-info\n\ndb-info is a utility module which provides a database independent way of\ngetting database metadata.\n\nThe following databases are currently supported:\n\n * sqlite3 - via: [node-sqlite3](https://github.com/developmentseed/node-sqlite3)\n * mysql - via: [node-mysql](https://github.com/felixge/node-mysql)\n\n## Quick Examples\n var dbinfo = require(\"db-info\");\n\n dbinfo.getInfo({\n driver: 'mysql',\n user: 'root',\n password: 'root',\n database: 'test'\n }, function(err, result) {\n /* result = {\n tables: {\n person: {\n name: 'person',\n columns: {\n 'id': { name: 'id', notNull: true, primaryKey: true, type: 'integer', length: '11' },\n 'name': { name: 'name', notNull: true, type: 'varchar', length: '255' },\n 'email': { name: 'email', notNull: false, type: 'varchar', length: '100' },\n 'age': { name: 'age', notNull: false, type: 'integer', length: '11' }\n }\n }\n }\n } */\n });\n\n## Download\n\nYou can install using Node Package Manager (npm):\n\n npm install async\n\n## Documentation\n\n### getInfo(opts, callback)\n\nGets the metadata from a database.\n\n__Arguments__\n\n * opts - A hash of options.\n * driver - can be either \"mysql\" or \"sqlite3\"\n * _db_ - if db is passed in this connection will be used instead of making a new connection.\n * _other_ - will be passed to the drivers connect.\n * callback(err, result) - Callback called once complete. result will contain a hash containing all the tables\n along with column information.\n\n__Example__\n var db = new sqlite3.Database(':memory:');\n\n dbinfo.getInfo({\n driver: 'sqlite3',\n db: db\n }, function(err, result) {\n });", + "maintainers": [ + { + "name": "joeferner", + "email": "joe@fernsroth.com" + } + ], + "time": { + "modified": "2011-12-12T14:38:46.261Z", + "created": "2011-12-12T14:38:45.676Z", + "0.0.1": "2011-12-12T14:38:46.261Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/db-info/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "274c4cd450e12833b2de4f63320d65fbe1bf943d", + "tarball": "http://registry.npmjs.org/db-info/-/db-info-0.0.1.tgz" + } + }, + "keywords": [ + "database", + "db", + "sqlite", + "mysql" + ], + "url": "http://registry.npmjs.org/db-info/" + }, + "node-varnish": { + "name": "node-varnish", + "description": "A node.js connector to Varnish using the Varnish telnet management protocol", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "node-varnish\n==\n\nA node.js connector to Varnish using the [Varnish telnet management protocol](https://www.varnish-cache.org/trac/wiki/ManagementPort).\n\n```javascript\nvar client = new varnish.VarnishClient('127.0.0.1', MANAGEMENT_PORT);\nclient.on('ready', function() {\n client.run_cmd('purge obj.http.X == test', function(){});\n});\n```\n\nFor more usage examples, see the [tests](https://github.com/Vizzuality/node-varnish/blob/master/test/acceptance/varnish.js).\n\nDependencies\n--\n\n* [node.js](http://nodejs.org/) >=4.x\n* [varnish](https://www.varnish-cache.org/) >=2.x\n\nContributors\n--\n\n* [Javi Santana](https://github.com/javisantana/) - core code base\n* [Simon Tokumine](https://github.com/tokumine/) - packaging and docs\n", + "maintainers": [ + { + "name": "tokumine", + "email": "si@tinypla.net" + } + ], + "time": { + "modified": "2011-12-12T15:40:02.590Z", + "created": "2011-12-12T15:38:01.207Z", + "0.1.0": "2011-12-12T15:38:02.832Z" + }, + "author": { + "name": "Javier Santana, Simon Tokumine, Vizzuality", + "email": "jsantana@vizzuality.com", + "url": "http://vizzuality.com" + }, + "users": { + "gabrielfalcao": true + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/node-varnish/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "e947249ffdb065f9b4dc024c21222e69ac63cc4e", + "tarball": "http://registry.npmjs.org/node-varnish/-/node-varnish-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/node-varnish/" + }, + "taskng": { + "name": "taskng", + "description": "A simple CLI based task management tool", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "", + "maintainers": [ + { + "name": "automatedtester", + "email": "david.burns@theautomatedtester.co.uk" + } + ], + "time": { + "modified": "2011-12-12T16:12:02.580Z", + "created": "2011-12-12T16:12:01.139Z", + "0.0.1": "2011-12-12T16:12:02.580Z" + }, + "author": { + "name": "David Burns" + }, + "repository": { + "type": "git", + "url": "git://github.com/automatedtester/taskng.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/taskng/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "f54f11cccd83b020903a5b9cb7559c13ff3c9b66", + "tarball": "http://registry.npmjs.org/taskng/-/taskng-0.0.1.tgz" + } + }, + "keywords": [ + "task", + "management", + "cli" + ], + "url": "http://registry.npmjs.org/taskng/" + }, + "mon4mongo": { + "name": "mon4mongo", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "erhangundogan", + "email": "erhan@trposta.net" + } + ], + "time": { + "modified": "2011-12-12T17:59:36.850Z", + "created": "2011-12-11T21:07:44.251Z", + "0.0.1": "2011-12-11T21:15:36.431Z", + "0.0.2": "2011-12-12T17:59:36.850Z" + }, + "author": { + "name": "Erhan Gundogan", + "email": "erhan@trposta.net" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/mon4mongo/0.0.1", + "0.0.2": "http://registry.npmjs.org/mon4mongo/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "1f3491ce15c69f3f29c6d86137567350d9413903", + "tarball": "http://registry.npmjs.org/mon4mongo/-/mon4mongo-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "8d4608e9b6748a52a3c0ef7940113b67c0ec136f", + "tarball": "http://registry.npmjs.org/mon4mongo/-/mon4mongo-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/mon4mongo/" + }, + "audionode": { + "name": "audionode", + "description": "Mix and distribute audio in node :)", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "This is a 8-bit mono WAV audio streaming server. Supports multiple rooms. Starting the deamon:\n\n > ./server.js\n\nCreating a room (the room will vanish and all clients will disconnect when you disconnect):\n\n > (echo 'provide '; arecord) | nc 1289\n\nListening to a room:\n\n > nc 1289 | aplay\n listen \n\nImportant: Room names can't contain spaces!\n\nTo reduce audio lag with aplay and arecord, call them with `-B 1`.\n", + "maintainers": [ + { + "name": "thejh", + "email": "jannhorn@gmail.com" + } + ], + "time": { + "modified": "2011-12-12T20:28:31.333Z", + "created": "2011-12-12T20:28:29.470Z", + "0.1.0": "2011-12-12T20:28:31.333Z" + }, + "author": { + "name": "Jann Horn", + "email": "jannhorn@googlemail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/thejh/audionode.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/audionode/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "2532554e55003d71b93ea9e4278492134a71beea", + "tarball": "http://registry.npmjs.org/audionode/-/audionode-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/audionode/" + }, + "yui": { + "name": "yui", + "description": "YUI 3 Source", + "dist-tags": { + "latest": "3.5.0PR1" + }, + "readme": null, + "maintainers": [ + { + "name": "davglass", + "email": "davglass@gmail.com" + } + ], + "time": { + "modified": "2011-12-12T20:28:37.472Z", + "created": "2011-12-12T20:28:36.400Z", + "3.5.0PR1": "2011-12-12T20:28:37.472Z" + }, + "author": { + "name": "Dav Glass", + "email": "davglass@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/yui/yui3.git" + }, + "versions": { + "3.5.0PR1": "http://registry.npmjs.org/yui/3.5.0PR1" + }, + "dist": { + "3.5.0PR1": { + "shasum": "1304e16c4d1a3fce63e3dbe28f30af740be18f18", + "tarball": "http://registry.npmjs.org/yui/-/yui-3.5.0PR1.tgz" + } + }, + "url": "http://registry.npmjs.org/yui/" + }, + "static-asset": { + "name": "static-asset", + "description": "Static asset manager for Node.JS", + "dist-tags": { + "latest": "0.0.0" + }, + "readme": "#node-static-asset\n\nnode-static-asset is *the best* static asset manager for Node.JS, designed for use with Express, Jade,\nStylus, and Browserify. This project aims to solve all application deployment problems. No thinking\nrequired.\n\n## Install\n\n`npm install static-asset`\n\n...and done.\n\n## Basic Usage\n\nUsually, this should be good enough to get started. Stylus, CSS, Jade templates, and client-side\nJavaScript are automatically handled for you.\n\n```javascript\nvar app = require('express').createServer();\nvar asset = require('static-asset');\nasset.configure('development', asset.defaultConfig.development);\nasset.configure('production', asset.defaultConfig.production);\napp.use(asset.middleware);\n```\n\n## Default Configuration\n\nBy default, static-asset does the following:\n\n* Development Environment\n\t* When applicable, all files are compiled with debugging information, uncompressed\n* Production Environment\n\t* When applicable, all files are minified and compiled without debugging information\n* .css and .styl files are rendered using Stylus\n* .jade files are compiled and written to *.js files\n* .coffee files are compiled to *.js files\n* Assumes the following directory structure for your project:\n\tproject/\n\t\t/server\n\t\t\tThe location of app.js\n\t\t/client\n\t\t\tAll client-side .js and .coffee files\n\t\t\t/lib\n\t\t\t\tClient-side libraries\n\t\t/views\n\t\t\t.jade and .html files are in here\n\t\t/stylus\n\t\t\t.styl and .css source files are in here\n\t\t/public\n\t\t\tAll of the content publicly available to the WWW\n\t\t\t/images\n\t\t\t\tContains all of your images (png, jpeg, gif, bmp, etc.)\n\t\t\t/css\n\t\t\t\tThis dir is generated by static-asset and can be wiped at any time!\n\t\t\t/js\n\t\t\t\tThis dir is generated by static-asset and can be wiped at any time!\n\t\t\t/abcdef\n\t\t\t\tThis directory will never be touched. It's safe to put files in /static\n\n## Advanced Usage\n\n```javascript\nvar app = require('express').createServer();\nvar asset = require('static-asset');\nvar stylus = require('stylus');\nvar jade = require('jade');\n\nasset.configure(function() {\n\t//Environment-specific configuration goes here... 'this' refers to 'asset'\n\t\n\t//CSS\n\tthis.register(['styl', 'css'], function(body, filename, cb) {\n\t\t//'this' still refers to 'asset'\n\t\tstylus(body, this.get('stylus'))\n\t\t\t.set('filename', filename)\n\t\t\t.set('compress', || true)\n\t\t\t.include(__dirname + '/../css/')\n\t\t\t.import(__dirname + '/../css/mixins.styl')\n\t\t\t.import(__dirname + '/../css/colors.styl')\n\t\t\t.render(cb);\n\t});\n\t\n\t//Jade views\n\tthis.register('jade', function(body, filename, cb) {\n\t\tvar opts = asset.get('jade');\n\t\topts.filename = filename;\n\t\topts.client = true;\n\t\ttry {\n\t\t\tvar fn = jade.compile(body, opts);\n\t\t\tcb(null, fn.toString() );\n\t\t} catch(e) {\n\t\t\tcb(e);\n\t\t}\n\t});\n\t\n\t//JavaScript\n\t\n\t\n\t//Error-handling\n\tthis.on('error', function(err) {\n\t\t//Do something about some error\n\t\tconsole.log('This asset is being an ' + \"asset\".substring(0, 3) + ':', err.filename);\n\t});\n});\n\nasset.configure('development', function() {\n\t//Put your development-specific config here...\n\tthis.set('stylus', {\n\t\t'compress': false,\n\t\t'warn': true,\n\t\t'linenos': true\n\t});\n\tthis.set('jade', {\n\t\t'debug': true,\n\t\t'compileDebug': true\n\t});\n});\nasset.configure('production', function() {\n\tthis.set('jade', {\n\t\t'compileDebug': false\n\t});\n});\n\napp.use(asset.middleware);\n```\n", + "maintainers": [ + { + "name": "bminer", + "email": "miner.blake@gmail.com" + } + ], + "time": { + "modified": "2011-12-12T21:53:10.485Z", + "created": "2011-12-12T21:53:10.273Z", + "0.0.0": "2011-12-12T21:53:10.485Z" + }, + "author": { + "name": "Blake Miner", + "email": "miner.blake@gmail.com", + "url": "http://www.blakeminer.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/bminer/node-static-asset.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/static-asset/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "2641941ba3e22e2bb87b53436316b3e7d81dd586", + "tarball": "http://registry.npmjs.org/static-asset/-/static-asset-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/static-asset/" + }, + "tamed-coffee-script": { + "name": "tamed-coffee-script", + "description": "Unfancy JavaScript", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": null, + "maintainers": [ + { + "name": "maxtaco", + "email": "max@okcupid.com" + } + ], + "time": { + "modified": "2011-12-12T22:01:35.314Z", + "created": "2011-12-12T22:01:34.274Z", + "0.0.1": "2011-12-12T22:01:35.314Z" + }, + "author": { + "name": "Max Krohn" + }, + "repository": { + "type": "git", + "url": "git://github.com/maxtaco/coffee-script.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/tamed-coffee-script/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "a25af01c1caa07a7a331028cd8b5e27dc2121123", + "tarball": "http://registry.npmjs.org/tamed-coffee-script/-/tamed-coffee-script-0.0.1.tgz" + } + }, + "keywords": [ + "javascript", + "language", + "coffeescript", + "compiler" + ], + "url": "http://registry.npmjs.org/tamed-coffee-script/" + }, + "upbeat": { + "name": "upbeat", + "description": "Fast health and performance monitoring", + "dist-tags": { + "latest": "0.1.10" + }, + "readme": "Upbeat\n-------\n\nUseful for health and performance checking and then distributing the data in a quick manner. \n\nInstallation\n------------\n\n npm-g install upbeat\n upbeat \n\n\n", + "maintainers": [ + { + "name": "jeffsu", + "email": "me@jeffsu.com" + } + ], + "time": { + "modified": "2011-12-12T22:13:53.036Z", + "created": "2011-12-10T00:37:29.616Z", + "0.0.1": "2011-12-10T00:37:31.261Z", + "0.0.2": "2011-12-10T00:41:57.012Z", + "0.0.3": "2011-12-10T00:44:44.776Z", + "0.1.2": "2011-12-10T07:25:03.032Z", + "0.1.3": "2011-12-10T21:29:41.103Z", + "0.1.4": "2011-12-11T00:47:29.848Z", + "0.1.5": "2011-12-12T01:01:27.105Z", + "0.1.6": "2011-12-12T16:43:32.990Z", + "0.1.7": "2011-12-12T17:01:41.426Z", + "0.1.8": "2011-12-12T21:22:10.689Z", + "0.1.9": "2011-12-12T21:26:53.266Z", + "0.1.10": "2011-12-12T22:13:53.036Z" + }, + "author": { + "name": "Jeff Su", + "email": "me@jeffsu.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/jeffsu/upbeat.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/upbeat/0.0.1", + "0.0.2": "http://registry.npmjs.org/upbeat/0.0.2", + "0.0.3": "http://registry.npmjs.org/upbeat/0.0.3", + "0.1.2": "http://registry.npmjs.org/upbeat/0.1.2", + "0.1.3": "http://registry.npmjs.org/upbeat/0.1.3", + "0.1.4": "http://registry.npmjs.org/upbeat/0.1.4", + "0.1.5": "http://registry.npmjs.org/upbeat/0.1.5", + "0.1.6": "http://registry.npmjs.org/upbeat/0.1.6", + "0.1.7": "http://registry.npmjs.org/upbeat/0.1.7", + "0.1.8": "http://registry.npmjs.org/upbeat/0.1.8", + "0.1.9": "http://registry.npmjs.org/upbeat/0.1.9", + "0.1.10": "http://registry.npmjs.org/upbeat/0.1.10" + }, + "dist": { + "0.0.1": { + "shasum": "060b9752c60fa4a6d60bc7fc38c99ecb286fa9b3", + "tarball": "http://registry.npmjs.org/upbeat/-/upbeat-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "f9b433f991911061b95b75fa41a341aee4349b9b", + "tarball": "http://registry.npmjs.org/upbeat/-/upbeat-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "219644ebaaa6f2a3c59955cd7f9d792fdd72f814", + "tarball": "http://registry.npmjs.org/upbeat/-/upbeat-0.0.3.tgz" + }, + "0.1.2": { + "shasum": "1755f5724168acb5830e82324121d8b580b783c5", + "tarball": "http://registry.npmjs.org/upbeat/-/upbeat-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "2f5b063a9a8c9d60072d0fdddbf55e2683c18e34", + "tarball": "http://registry.npmjs.org/upbeat/-/upbeat-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "997ba28068ace4be82082bbc20d4c5a3bc40e6e4", + "tarball": "http://registry.npmjs.org/upbeat/-/upbeat-0.1.4.tgz" + }, + "0.1.5": { + "shasum": "8ce64cf15aa878b3901a402baa7cab4957db6362", + "tarball": "http://registry.npmjs.org/upbeat/-/upbeat-0.1.5.tgz" + }, + "0.1.6": { + "shasum": "794646bdcd77acde287822bb17add94fa5d76c9a", + "tarball": "http://registry.npmjs.org/upbeat/-/upbeat-0.1.6.tgz" + }, + "0.1.7": { + "shasum": "eb4322ec33b1b3b58e76de94ca25ed86232f59d5", + "tarball": "http://registry.npmjs.org/upbeat/-/upbeat-0.1.7.tgz" + }, + "0.1.8": { + "shasum": "01d2bd964d3243828faed9b11c1f1d247a0a737f", + "tarball": "http://registry.npmjs.org/upbeat/-/upbeat-0.1.8.tgz" + }, + "0.1.9": { + "shasum": "a39491c7521dd0610519950c3369bcaf7a912274", + "tarball": "http://registry.npmjs.org/upbeat/-/upbeat-0.1.9.tgz" + }, + "0.1.10": { + "shasum": "a2f2d34927eec284c204f8444eb7b3f427d53380", + "tarball": "http://registry.npmjs.org/upbeat/-/upbeat-0.1.10.tgz" + } + }, + "keywords": [ + "javascript", + "performance", + "health", + "monitoring", + "monit", + "haproxy" + ], + "url": "http://registry.npmjs.org/upbeat/" + }, + "amigen": { + "name": "amigen", + "description": "Tool for generating Amazon EC2 AMI images with pre-installed software", + "dist-tags": { + "latest": "0.0.4" + }, + "readme": null, + "maintainers": [ + { + "name": "perfectapi", + "email": "steve@perfectapi.com" + } + ], + "time": { + "modified": "2011-12-12T23:27:40.346Z", + "created": "2011-12-10T17:58:47.119Z", + "0.0.1": "2011-12-10T17:58:47.326Z", + "0.0.2": "2011-12-10T18:11:03.227Z", + "0.0.3": "2011-12-11T01:21:57.748Z", + "0.0.4": "2011-12-12T23:27:40.346Z" + }, + "author": { + "name": "Steve Campbell", + "email": "steve@perfectapi.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/perfectapi/ami-generator.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/amigen/0.0.1", + "0.0.2": "http://registry.npmjs.org/amigen/0.0.2", + "0.0.3": "http://registry.npmjs.org/amigen/0.0.3", + "0.0.4": "http://registry.npmjs.org/amigen/0.0.4" + }, + "dist": { + "0.0.1": { + "shasum": "ed384ded7af610502d1126fbfba788888930dbfd", + "tarball": "http://registry.npmjs.org/amigen/-/amigen-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "2670e3b55a28293ba13787c09c8b3b28b54e1d2a", + "tarball": "http://registry.npmjs.org/amigen/-/amigen-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "dfa0744efb78a24c7bc040b27630fa08ac4c9727", + "tarball": "http://registry.npmjs.org/amigen/-/amigen-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "c614a470eb5731fc30aadb25203ebcdb834b3260", + "tarball": "http://registry.npmjs.org/amigen/-/amigen-0.0.4.tgz" + } + }, + "keywords": [ + "AMI,AWS,EC2,Amazon" + ], + "url": "http://registry.npmjs.org/amigen/" + }, + "jab": { + "name": "jab", + "description": "xmpp client", + "dist-tags": { + "latest": "0.0.2" + }, + "readme": "_jab_ is a simple xmpp client, currently just wrapping node-xmpp\n\n\nxml dependencies for node-xmpp:\n\nsudo apt-get install libexpat1 libexpat1-dev \nnpm install node-expat\nsudo apt-get install libicu-dev \nnpm install node-stringprep\nnpm install node-xmpp\n", + "maintainers": [ + { + "name": "fractal", + "email": "contact@wearefractal.com" + } + ], + "time": { + "modified": "2011-12-13T02:18:03.932Z", + "created": "2011-12-13T02:18:02.524Z", + "0.0.2": "2011-12-13T02:18:03.932Z" + }, + "author": { + "name": "Fractal", + "email": "contact@wearefractal.com", + "url": "http://wearefractal.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/wearefractal/jab.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/jab/0.0.2" + }, + "dist": { + "0.0.2": { + "shasum": "9d4c6dd4a0654d08343773eac8aff25e55ab8197", + "tarball": "http://registry.npmjs.org/jab/-/jab-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/jab/" + }, + "CallbackRouter": { + "name": "CallbackRouter", + "description": "callback router", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "**CallbackRouter** routes callbacks\n", + "maintainers": [ + { + "name": "fractal", + "email": "contact@wearefractal.com" + } + ], + "time": { + "modified": "2011-12-13T02:26:34.385Z", + "created": "2011-12-13T02:26:29.920Z", + "0.0.1": "2011-12-13T02:26:34.385Z" + }, + "author": { + "name": "Fractal", + "email": "contact@wearefractal.com", + "url": "http://wearefractal.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/wearefractal/CallbackRouter.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/CallbackRouter/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "37fa4868bdb42f2c0be6d655927b9c3f189dd879", + "tarball": "http://registry.npmjs.org/CallbackRouter/-/CallbackRouter-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/CallbackRouter/" + }, + "rzr-util": { + "name": "rzr-util", + "description": "generic utilities", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "generic utilities\n", + "maintainers": [ + { + "name": "fractal", + "email": "contact@wearefractal.com" + } + ], + "time": { + "modified": "2011-12-13T02:28:24.334Z", + "created": "2011-12-13T02:28:23.169Z", + "0.0.1": "2011-12-13T02:28:24.334Z" + }, + "author": { + "name": "Fractal", + "email": "contact@wearefractal.com", + "url": "http://wearefractal.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/wearefractal/rzr-util.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/rzr-util/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "d2ff1f3413debc13fc235aa2f4db0c06144e6a47", + "tarball": "http://registry.npmjs.org/rzr-util/-/rzr-util-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/rzr-util/" + }, + "stopwatch": { + "name": "stopwatch", + "description": "A managed stopwatch for Realtime Node.JS Apps", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "[![Build Status](https://secure.travis-ci.org/emerleite/node-stopwatch.png)](http://travis-ci.org/emerleite/node-stopwatch)\n\nNode.js stopwatch\n=================\nThis project is a simple way to use a stopwatch. I've done some penny auction/bid sistems with stopwatches and also done a realtime social video visualization. These projects shares a core stopwatch logic and because it becomes hard to maintain I extracted it to this library. I hope it helps somebody else.\n\nDependencies\n------------\nOnly has dev depencencies:\n\n* mocha\n* should\n\nInstalation\n-----------\n> npm install stopwatch\n\nUsuage\n------\nTo create a stopwatch you only need a identifier and you can pass a hash with options with the stopwatch seconds. The default is 10 seconds.\n\n```js\nvar Stopwatch = require('stopwatch').Stopwatch;\n\nvar stopwatch = new Stopwatch(1, { seconds: 60 });\nstopwatch.on('tick', function(secondsLeft) {\n //when one second pass.\n});\nstopwatch.on('end', function() {\n //when the time ends\n});\n```\n\n### Managed\nIf you want a managed instance (per identifier) you only need to require the module and use the get function.\n\n```js\nvar StopwatchManager = require('stopwatch');\n\nvar stopwatch = StopwatchManager.get(1, {seconds: 10 });\nstopwatch.on('tick', function(secondsLeft) {\n //when one second pass.\n});\nstopwatch.on('end', function() {\n //when the time ends\n //StopwatchManager also destroys the managed hash reference\n});\n\n//It will get the same instance\nvar stopwatchRecovered = StopwatchManager.get(1, {seconds: 10 });\n```\n\nIf you invoke get with the same id, it will not create another instance, but use the same stored instance. When ends, it cleans the managed reference to prevent memory leaks by strong references.\n\n### Examples\nSee the test folder. I'll write more example in a examples folder.\n\nRunning tests\n-------------\nTo run the tests you need to install mocha and should. \n npm install\n npm test\n\nTo-Do\n-----\n* see ()\n\nAuthor\n------\n\n* Emerson Macedo ( and )\n\nLicense:\n--------\n\n(The MIT License)\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n", + "maintainers": [ + { + "name": "emerleite", + "email": "emerleite@gmail.com" + } + ], + "time": { + "modified": "2011-12-13T02:40:44.126Z", + "created": "2011-12-13T02:40:41.937Z", + "0.1.0": "2011-12-13T02:40:44.126Z" + }, + "author": { + "name": "Emerson Macedo", + "email": "emerleite@gmail.com", + "url": "http://codificando.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/emerleite/node-stopwatch.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/stopwatch/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "21386f6c40a4f9ec8dbdaaaa331a727248cd0b07", + "tarball": "http://registry.npmjs.org/stopwatch/-/stopwatch-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/stopwatch/" + }, + "passport-flickr": { + "name": "passport-flickr", + "description": "Flickr authentication strategy for Passport.", + "dist-tags": { + "latest": "0.1.1" + }, + "readme": null, + "maintainers": [ + { + "name": "johnnyhalife", + "email": "johnny.halife@me.com" + } + ], + "time": { + "modified": "2011-12-13T03:48:03.515Z", + "created": "2011-12-13T03:33:46.483Z", + "0.1.0": "2011-12-13T03:33:50.291Z", + "0.1.1": "2011-12-13T03:48:03.515Z" + }, + "author": { + "name": "Johnny Halife", + "email": "johnny.halife@me.com", + "url": "http://johnny.io/" + }, + "repository": { + "type": "git", + "url": "git://github.com/johnnyhalife/passport-flickr.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/passport-flickr/0.1.0", + "0.1.1": "http://registry.npmjs.org/passport-flickr/0.1.1" + }, + "dist": { + "0.1.0": { + "shasum": "5f9a51fce5bf87ddd3e1307c04aee46bcaef98d4", + "tarball": "http://registry.npmjs.org/passport-flickr/-/passport-flickr-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "64a06383bb696e071db0122d00ab48e764b293b9", + "tarball": "http://registry.npmjs.org/passport-flickr/-/passport-flickr-0.1.1.tgz" + } + }, + "keywords": [ + "passport", + "flickr", + "auth", + "authn", + "authentication", + "identity" + ], + "url": "http://registry.npmjs.org/passport-flickr/" + }, + "resourcecache": { + "name": "resourcecache", + "description": "Caches resources from a string or URL in local files.", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "# ResourceCache\nNode.js library that caches resources from a string or URL in local files.\n\n## Installation\n\n npm install resourcecache\n\n## Usage\nFirst, load the `ResourceCache` class from the `resourcecache` module and create an instance.\n\n ResourceCache = require('resourcecache');\n cache = new ResourceCache();\n\nThen, you can cache a piece of text in a file like this:\n\n cache.cacheFromString('text', function (error, fileName) {\n console.log('The text has been cached inside', fileName);\n console.log('This file contains:', require('fs').readFileSync(fileName, 'utf-8'));\n });\n\nOr you can cache an online resource:\n\n cache.cacheFromUrl('http://perdu.com/', function (error, fileName) {\n console.log('The resource has been cached inside', fileName);\n console.log('This file contains:', require('fs').readFileSync(fileName, 'utf-8'));\n });\n \nRelease the file when you don't need it anymore:\n\n cache.release(fileName);\n\nWhen the process exits, all remaining files will be released.\n\n## Status\nThis library is in alpha stage and doesn't do much caching yet. \nHowever, the described interface has been implemented and is fully functional.\n", + "maintainers": [ + { + "name": "rubenverborgh", + "email": "ruben.verborgh@gmail.com" + } + ], + "time": { + "modified": "2011-12-13T04:58:12.646Z", + "created": "2011-12-13T04:57:59.912Z", + "0.1.0": "2011-12-13T04:58:12.646Z" + }, + "author": { + "name": "Ruben Verborgh", + "email": "ruben.verborgh@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/RubenVerborgh/ResourceCache.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/resourcecache/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "0bc9cab1ddbcf745f67da163d698284215ceb064", + "tarball": "http://registry.npmjs.org/resourcecache/-/resourcecache-0.1.0.tgz" + } + }, + "keywords": [ + "cache", + "resource" + ], + "url": "http://registry.npmjs.org/resourcecache/" + }, + "eyeserver": { + "name": "eyeserver", + "description": "EYE reasoner server.", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "# EYE reasoner server for node.js\n# Installing\n\n [sudo] npm -g install eyeserver\n\n# Running\n\n eyeserver 8000\n\n# Using\n\n curl \"http://localhost:8000/?data=http://eulersharp.sourceforge.net/2003/03swap/socrates.n3&query=http://eulersharp.sourceforge.net/2003/03swap/socratesF.n3\"\n", + "maintainers": [ + { + "name": "rubenverborgh", + "email": "ruben.verborgh@gmail.com" + } + ], + "time": { + "modified": "2011-12-13T05:33:37.409Z", + "created": "2011-12-13T05:33:31.263Z", + "0.1.0": "2011-12-13T05:33:37.409Z" + }, + "author": { + "name": "Ruben Verborgh", + "email": "ruben.verborgh@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/RubenVerborgh/EyeServer.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/eyeserver/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "3619456efe61b88846ea64cc8788149c19e61b3f", + "tarball": "http://registry.npmjs.org/eyeserver/-/eyeserver-0.1.0.tgz" + } + }, + "keywords": [ + "eye", + "reasoner", + "n3" + ], + "url": "http://registry.npmjs.org/eyeserver/" + }, + "safe_datejs": { + "name": "safe_datejs", + "description": "A safe(node.js VM isolated) wrapper around datejs.com library. Safe to be used with mongoose", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "# Safe Date.js\n\nAn special wrapper for [the Date.js library](http://www.datejs.com/) that loads the Date.js Date extensions into an special type giving you access to the Date.js magic without screwing `Date` type of the Node.js application. It's safe to be used with type sensitive modules like [Mongoose.js](http://mongoosejs.com/).\n\nSee [the datejs site](http://www.datejs.com/) for more information.\n\n\n## Installation\n\n npm install safe_datejs\n\n## Usage\n\nUse the function `AsDateJs` to convert your date to Date.js and use `AsRegularDate` when you are finished working with Date.js. Both functions will return shallow copies.\n\n## Example\n\n var datejs = require('safe_datejs');\n\n\tvar today = new Date(2011, 11, 12, 0, 0, 0, 0);\n\tvar wrappedToday = today.AsDateJs();\n\tconsole.log('Is today:', wrappedToday.is().today());\n\t\n\tvar tomorrow = wrappedToday.clone().add({days:1});\n\tconsole.log('Wrapped Tomorrow:', tomorrow.toString(), 'is date regular Date: ', (tomorrow instanceof Date));\n\t\n\tvar unwrappedTomorrow = tomorrow.AsRegularDate(); \n\tconsole.log('Unwrapped Tomorrow:', unwrappedTomorrow.toString(), 'is date regular Date: ', (unwrappedTomorrow instanceof Date));\n\n### Result\n\n Is today: false\n\tWrapped Tomorrow: Tue Dec 13 2011 00:00:00 GMT-0500 (COT) is date regular Date: false\n\tUnwrapped Tomorrow: Tue Dec 13 2011 00:00:00 GMT-0500 (COT) is date regular Date: true\n\n## Cloning the Repository\n\n git clone https://github.com/firebaseco/safe_datejs.git\n\n## Tests\n\n npm test\n\n## Author\n\n* Johan (author). Email: *johan@firebase.co*\n\n## License\n\nMIT. Check the [the datejs site](http://www.datejs.com/)", + "maintainers": [ + { + "name": "firebaseco", + "email": "npm@firebase.co" + } + ], + "time": { + "modified": "2011-12-13T06:17:06.754Z", + "created": "2011-12-13T06:17:05.132Z", + "0.0.1": "2011-12-13T06:17:06.754Z" + }, + "author": { + "name": "Firebase.co", + "email": "npm@firebase.co", + "url": "http://www.firebase.co" + }, + "repository": { + "type": "git", + "url": "git://github.com/firebaseco/safe_datejs.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/safe_datejs/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "e4d9e8cdf66f6dfb305171c063b0b07a94f38648", + "tarball": "http://registry.npmjs.org/safe_datejs/-/safe_datejs-0.0.1.tgz" + } + }, + "keywords": [ + "safe", + "date.js", + "datejs", + "date" + ], + "url": "http://registry.npmjs.org/safe_datejs/" + }, + "zabbix-sender": { + "name": "zabbix-sender", + "description": "A zabbix_sender wrapper.", + "dist-tags": { + "latest": "0.0.3" + }, + "readme": "# zabbix-sender\n\nA zabbix_sender wrapper.\n\n## Install\n\n```\nnpm install zabbix-sender\n```\n\n## Usage\n\n```js\nvar ZabbixSender = require('zabbix-sender');\nvar sender = new ZabbixSender();\n\nsender.send({\n 'valueA': 1,\n 'nested': {\n 'valueB': 2,\n }\n}, function(err) {\n if (err) throw err;\n\n console.log('Wrote keys to zabbix');\n});\n```\n\n## Configuration options\n\nThe ZabbixSender constructor takes an object which has the following defaults:\n\n* **config**: The configuration file to use. Default: `'/etc/zabbix/zabbix_agentd.conf'`\n* **bin**: The path to the zabbix_sender program. Default: `'zabbix_sender'`\n* **hostname**: The hostname to report to zebbix. Default: `os.hostname()`\n\n## License\n\nzappix-sender is licensed under the MIT license.\n", + "maintainers": [ + { + "name": "felixge", + "email": "felix@debuggable.com" + }, + { + "name": "danjenkins", + "email": "dan.jenkins@holidayextras.com" + } + ], + "time": { + "modified": "2011-12-13T09:06:45.504Z", + "created": "2011-12-12T18:35:28.469Z", + "0.0.1": "2011-12-12T18:35:29.934Z", + "0.0.2": "2011-12-12T18:36:31.923Z", + "0.0.3": "2011-12-13T09:06:45.504Z" + }, + "author": { + "name": "Felix Geisendörfer", + "email": "felix@debuggable.com", + "url": "http://debuggable.com/" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/zabbix-sender/0.0.1", + "0.0.2": "http://registry.npmjs.org/zabbix-sender/0.0.2", + "0.0.3": "http://registry.npmjs.org/zabbix-sender/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "42c9447b6ddc3647421531db8b18c77886d11fec", + "tarball": "http://registry.npmjs.org/zabbix-sender/-/zabbix-sender-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "15696aeed99561e5f2d84753d45ec5be6976ec1e", + "tarball": "http://registry.npmjs.org/zabbix-sender/-/zabbix-sender-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "d13a7b6a873ff208418985285a539511468def79", + "tarball": "http://registry.npmjs.org/zabbix-sender/-/zabbix-sender-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/zabbix-sender/" + }, + "buster-jstestdriver": { + "name": "buster-jstestdriver", + "description": "Run JsTestDriver tests with Buster.JS", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": null, + "maintainers": [ + { + "name": "cjohansen", + "email": "christian@cjohansen.no" + } + ], + "time": { + "modified": "2011-12-13T11:17:33.187Z", + "created": "2011-12-13T11:17:31.493Z", + "0.1.0": "2011-12-13T11:17:33.187Z" + }, + "author": { + "name": "August Lilleaas and Christian Johansen" + }, + "repository": { + "type": "git", + "url": "git://gitorious.org/buster/buster-jstestdriver.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/buster-jstestdriver/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "79d0ae77c9566dd5855b3a3ec7cebdb5eb15a790", + "tarball": "http://registry.npmjs.org/buster-jstestdriver/-/buster-jstestdriver-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/buster-jstestdriver/" + }, + "lmd": { + "name": "lmd", + "description": "LMD: Lazy (and synchronous) Module Declaration", + "dist-tags": { + "latest": "1.0.4" + }, + "maintainers": [ + { + "name": "azproduction", + "email": "azazel.private@gmail.com" + } + ], + "time": { + "modified": "2011-12-13T14:28:29.140Z", + "created": "2011-12-11T14:07:23.352Z", + "1.0.2": "2011-12-12T11:38:40.346Z", + "1.0.3": "2011-12-12T21:19:22.709Z", + "1.0.4": "2011-12-13T14:28:29.140Z" + }, + "author": { + "name": "Mikhail Davydov", + "email": "azazel.private@gmail.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:azproduction/lmd.git" + }, + "versions": { + "1.0.2": "http://registry.npmjs.org/lmd/1.0.2", + "1.0.3": "http://registry.npmjs.org/lmd/1.0.3", + "1.0.4": "http://registry.npmjs.org/lmd/1.0.4" + }, + "dist": { + "1.0.2": { + "shasum": "32c0bf63e90eb6d25bdd9b50f461076846b1b4a8", + "tarball": "http://registry.npmjs.org/lmd/-/lmd-1.0.2.tgz" + }, + "1.0.3": { + "shasum": "15336c26b77025e775c395beae836b9d0f90a460", + "tarball": "http://registry.npmjs.org/lmd/-/lmd-1.0.3.tgz" + }, + "1.0.4": { + "shasum": "0deec874f34377c341f0b96e66fe1d0a5c7ca857", + "tarball": "http://registry.npmjs.org/lmd/-/lmd-1.0.4.tgz" + } + }, + "keywords": [ + "lmd", + "amd", + "module", + "builder" + ], + "url": "http://registry.npmjs.org/lmd/" + }, + "popcorn": { + "name": "popcorn", + "description": "Pop up made easy", + "dist-tags": { + "latest": "0.0.2" + }, + "maintainers": [ + { + "name": "gicappa", + "email": "giancarlo.pace@gmail.com" + } + ], + "time": { + "modified": "2011-12-13T14:29:40.677Z", + "created": "2011-12-13T14:19:55.501Z", + "0.0.1": "2011-12-13T14:27:39.855Z", + "0.0.2": "2011-12-13T14:29:40.677Z" + }, + "author": { + "name": "Gian Carlo Pace", + "email": "giancarlo.pace@gmail.com" + }, + "repository": { + "type": "git", + "url": "git@git.fractalgarden.org:popcorn.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/popcorn/0.0.1", + "0.0.2": "http://registry.npmjs.org/popcorn/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "e55004ce14731eaecf636d1046371b94e2f8c52d", + "tarball": "http://registry.npmjs.org/popcorn/-/popcorn-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "7fe1e46ba7f35e79f4b2fe55e353519d688b8278", + "tarball": "http://registry.npmjs.org/popcorn/-/popcorn-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/popcorn/" + }, + "spell": { + "name": "spell", + "description": "javascript dictionary module for node.js, and the browser", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "# spell\n\n`spell` is a dictionary module for `node.js`. for an explanation of the algorithm, performance, expectations, and techniques used please read [this article][norvig]\n\n# installation\n\n## node.js\n\n1. install [npm]\n2. `npm install spell`\n3. `var spell = require('spell');`\n\n## browser\n\n1. minimize spell.js\n2. load it into your webpage\n\n# usage\n\n## basics\n\n``` js\n// instantiate a new dictionary\nvar dict = spell();\n// load text into dictionary so we can train the dictionary to know\n// which words exists and which ones are more frequent than others\ndict.load(\"I am going to the park with Theo today. It's going to be the bomb\");\nconsole.log(dict.suggest('thew'));\n```\n\nnormally you would generate the dictionary once and then use it to this code is unlikely and serves for demonstration purposes only. this should log:\n\n``` js\n[{\"word\": \"the\", \"score\": 2}, {\"word\": \"theo\", \"score\": 1}]\n```\n\nas there are two occurrences of the word `the` and one of the word `theo`\n\nfeeling lucky?\n\n``` js\ndict.lucky('thew');\n```\n\nreturns:\n\n``` js\n\"the\"\n```\n\nyou can also `add` and `remove` words from the dictionary:\n\n``` js\ndict.remove_word('park');\ndict.add_word('nuno');\n```\n\nand you can `reset` the dictionary, making it empty:\n\n``` js\ndict.reset();\n```\n\nif you want to export the dictionary:\n\n``` js\ndict.export();\n```\n\n## advanced\n\nwhen loading you can provide a compiled dictionary instead of free form text\n\n``` js\ndict.load(\n { corpus: \n { \"I\" : 1\n , \"am\" : 1\n , \"going\" : 1\n , \"to\" : 2\n , \"the\" : 1\n , \"park\" : 1\n }\n }\n);\n```\n\nyou can also provide options:\n\n* `reset`, defaults to true, meaning it will reset the dictionary before running load\n* `store`, defaults to true, meaning it will store the dictionary after running load\n* `after_store`, defaults to empty function, the callback function to run after `store` is done\n\ne.g. to add text to an existing `dict` you could do:\n\n``` js\ndict.load(\n { corpus: \"Better yet, chocolate\"\n , reset: false\n }\n);\n```\n\nfinally when adding words you can optionally give it a score:\n\n``` js\ndict.add_word('beer', 100);\n```\n\n## storage\n\nby default `dict` is stored in process (memory) for each dictionary instance you create. however if you feel like storing the dictionary externally, or use a shared dictionary, you can:\n\nan example using `localStorage`:\n\n``` js\nvar dict = spell(\n { \"get\" : function () { \n JSON.parse(window.localStorage.getItem('dict')); \n }\n , \"store\" : function (dict,after_store) { \n window.localStorage.setItem('dict', JSON.stringify(dict));\n }\n }\n);\n```\n\n# roadmap\n\ncheck [issues]\n\n# contribute\n\neveryone is welcome to contribute. patches, bug-fixes, new features\n\n1. create an [issue][issues] so the community can comment on your idea\n2. fork `spell`\n3. create a new branch `git checkout -b my_branch`\n4. create tests for the changes you made\n5. make sure you pass both existing and newly inserted tests\n6. commit your changes\n7. push to your branch `git push origin my_branch`\n8. create an pull request\n\n# meta\n\n* code: `git clone git://github.com/dscape/spell.git`\n* home: \n* bugs: \n* build: [![build status](https://secure.travis-ci.org/dscape/spell.png)](http://travis-ci.org/dscape/spell)\n\n`(oO)--',-` in [caos]\n\n[npm]: http://npmjs.org\n[issues]: http://github.com/dscape/nano/issues\n[caos]: http://caos.di.uminho.pt/\n[norvig]: http://norvig.com/spell-correct.html", + "maintainers": [ + { + "name": "dscape", + "email": "nunojobpinto@gmail.com" + } + ], + "time": { + "modified": "2011-12-13T14:56:06.163Z", + "created": "2011-12-11T12:48:39.190Z", + "0.0.1": "2011-12-11T12:48:40.934Z", + "0.0.2": "2011-12-11T15:59:23.974Z", + "0.0.3": "2011-12-12T11:23:58.969Z", + "0.1.0": "2011-12-13T14:56:06.163Z" + }, + "author": { + "name": "Nuno Job", + "email": "nunojobpinto@gmail.com", + "url": "http://nunojob.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/dscape/spell.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/spell/0.0.1", + "0.0.2": "http://registry.npmjs.org/spell/0.0.2", + "0.0.3": "http://registry.npmjs.org/spell/0.0.3", + "0.1.0": "http://registry.npmjs.org/spell/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "31f60e46302ba1e313ca130c3b3fc7fded27feac", + "tarball": "http://registry.npmjs.org/spell/-/spell-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "de8dbac1319e5d0b05092c6e89988f6e65f681d4", + "tarball": "http://registry.npmjs.org/spell/-/spell-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "b599bac8e69133a2b48dc8806bf75ba1ab773699", + "tarball": "http://registry.npmjs.org/spell/-/spell-0.0.3.tgz" + }, + "0.1.0": { + "shasum": "7545736e18f81d0291bf3b2de0a10a0f742b082f", + "tarball": "http://registry.npmjs.org/spell/-/spell-0.1.0.tgz" + } + }, + "keywords": [ + "spell", + "speller", + "dictionary", + "nlp", + "dict", + "spell check" + ], + "url": "http://registry.npmjs.org/spell/" + }, + "opt": { + "name": "opt", + "description": "A very simple options module for NodeJS command line utilities.", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "opt\n===\nrevision 0.0.1\n--------------\n\n# Overview\n\nA very simple options module for NodeJS command line apps.\n\n# Example\n\nSource code example-1.js\n\n\tvar util = require('util'),\n\t\topt = require('./opt'),\n\t\tconfig = {},\n\t\tUSAGE = function () {\n\t\t\treturn \"\\n\\nUSAGE node example-1.js -- demo options.\\n\\n SYNOPSIS\\n\\n\\t\\tnode example-1.js --help \";\n\t\t};\n\t\n\topt.set(['-h','--help'], function () {\n\t\t\tvar help = opt.help(), ky;\n\t\n\t\t\tconsole.log(USAGE() + \"\\n\\n OPTIONS\\n\");\n\t\t\tfor (ky in help) {\n\t\t\t\t\tconsole.log(\"\\t\" + ky + \"\\t\\t\" + help[ky]); \n\t\t\t}\n\t\t\tconsole.log(\"\\n\\n\");\n\t\t\tprocess.exit(0);\n\t}, \"This help document.\");\n\t\t\n\t// Parse the command line options\n\tif (process.argv.length < 3) {\n\t\tconsole.log(\"Try using a command line option for demo:\\n\" + USAGE());\n\t} else {\n\t\topt.parse(process.argv);\n\t}\n\tconsole.log(\"\\nConfig object properties set by opt: \");\n\tconsole.log(util.inspect(config));\n", + "maintainers": [ + { + "name": "rsdoiel", + "email": "rsdoiel@gmail.com" + } + ], + "time": { + "modified": "2011-12-13T15:27:23.784Z", + "created": "2011-12-13T15:27:22.421Z", + "0.0.1": "2011-12-13T15:27:23.784Z" + }, + "author": { + "name": "R. S. Doiel", + "email": "rsdoiel@gmail.com", + "url": "https://github.com/rsdoiel" + }, + "repository": { + "type": "git", + "url": "git://github.com/rsdoiel/opt.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/opt/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "4ccf3feb369f609731d04584e8a785518a056a42", + "tarball": "http://registry.npmjs.org/opt/-/opt-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/opt/" + }, + "needle": { + "name": "needle", + "description": "Simplest HTTP client ever. Supports multipart uploads.", + "dist-tags": { + "latest": "0.1.2" + }, + "readme": "Needle\n======\n\nHTTP client for node. Supports HTTP basic auth, nested params and multipart form\nuploads. Really simple stuff, around 200 lines of code.\n\nUsage\n-----\n\n var client = require('needle');\n\n client.get(url, [options], callback(err, body, resp)\n client.post(url, [data], [options], callback(err, body, resp)\n client.put(url, [data], [options], callback(err, body, resp)\n client.delete(url, [options], callback(err, body, resp)\n\nOptions\n------\n\n - timeout: returns err if response takes more than X. defaults to 10000 (10 secs)\n - multipart: use multipart encoding or not. defaults to false\n - username: for http auth\n - password: for http auth\n - parse: whether to parse XML or JSON response bodies automagically. defaults to true.\n\nExamples\n--------\n\n### Simple GET.\n\nvar client = require('needle');\n\n client.get('http://www.google.com', function(err, body, resp){\n\n console.log(\"Got status code: \" + resp.statusCode);\n\n });\n\n### GET with options\n\n var options = {\n username: 'you',\n password: 'secret',\n headers: {\n 'User-Agent': \"MyApp/1.2.3\"\n }\n }\n\n client.get('http://api.server.com', options, function(err, body, resp){\n\n // used HTTP auth\n\n });\n\n### POST/PUT\n\n var data = {\n foo: 'bar',\n nested: {\n params: {\n are: {\n also: possible\n }\n }\n }\n }\n\n client.post('http://my.app.com', data, function(err, body, resp){\n\n // yay\n\n });\n\n### Multipart POST\n\n var data = {\n foo: bar,\n image: { file: '/home/tomas/linux.png', content_type: 'image/png' }\n }\n\n var options = {\n multipart: true,\n timeout: 10000\n }\n\n client.post('http://my.other.app.com', data, options, function(err, body, resp){\n\n // in this case, if the request takes more than 10 seconds\n // the callback will return an error\n\n });\n\nCredits\n-------\n\nWritten by Tomás Pollak.\n\nLegal\n-----\n\n(c) Copyright 2011 Fork Ltd. Licensed under the MIT license.\n", + "maintainers": [ + { + "name": "tomas", + "email": "tomas@forkhq.com" + } + ], + "time": { + "modified": "2011-12-13T16:10:06.998Z", + "created": "2011-12-11T05:31:30.478Z", + "0.1.0": "2011-12-11T05:31:33.591Z", + "0.1.1": "2011-12-11T05:51:11.288Z", + "0.1.2": "2011-12-13T16:10:06.998Z" + }, + "author": { + "name": "Tomás Pollak", + "email": "tomas@forkhq.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/tomas/needle.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/needle/0.1.0", + "0.1.1": "http://registry.npmjs.org/needle/0.1.1", + "0.1.2": "http://registry.npmjs.org/needle/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "3eb10ffc49ac5e07dd247d445df1077d73668543", + "tarball": "http://registry.npmjs.org/needle/-/needle-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "ff2f5993d9594bbf02031af40bcea34b588a3c19", + "tarball": "http://registry.npmjs.org/needle/-/needle-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "9d13197d1a523351a619874733e4e0f5db9e06bc", + "tarball": "http://registry.npmjs.org/needle/-/needle-0.1.2.tgz" + } + }, + "keywords": [ + "http", + "https", + "client", + "multipart", + "simple" + ], + "url": "http://registry.npmjs.org/needle/" + }, + "rext": { + "name": "rext", + "description": "Simple text file repository with versioning support.", + "dist-tags": { + "latest": "0.0.5" + }, + "readme": "\n# rext\n\nSimple text file repository with versioning support.\n\n## API\n\n- create\n- destroy\n- list\n- retrieve\n- update\n\n## License\n\n(The MIT License)\n\nCopyright (c) 2011 Grapily <dev@grapily.com>\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "maintainers": [ + { + "name": "spini", + "email": "federico.spini@gmail.com" + } + ], + "time": { + "modified": "2011-12-13T16:39:34.070Z", + "created": "2011-12-12T18:15:41.033Z", + "0.0.4": "2011-12-12T18:15:43.171Z", + "0.0.5": "2011-12-13T16:39:34.070Z" + }, + "author": { + "name": "Grapily", + "email": "dev.grapily.com" + }, + "versions": { + "0.0.4": "http://registry.npmjs.org/rext/0.0.4", + "0.0.5": "http://registry.npmjs.org/rext/0.0.5" + }, + "dist": { + "0.0.4": { + "shasum": "4deff1b1b5fd2e78c113c47203e00a41b48a7cad", + "tarball": "http://registry.npmjs.org/rext/-/rext-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "e40d9d6115b59411882587549c1777757af9471b", + "tarball": "http://registry.npmjs.org/rext/-/rext-0.0.5.tgz" + } + }, + "keywords": [ + "text", + "repository", + "file", + "versioning", + "filesystem" + ], + "url": "http://registry.npmjs.org/rext/" + }, + "rext-connect": { + "name": "rext-connect", + "description": "Add rext routes to connect", + "dist-tags": { + "latest": "0.0.5" + }, + "readme": "\n# Rext-connect\n\n Simple [rext](https://github.com/grapily/rext) router middleware for [connect](http://senchalabs.github.com/connect \"connect\")\n \n## How to use\n \n var connect = require('connect')\n , rext_connect = require('rext-connect');\n \n app.use(connect.bodyParser());\n app.use(connect.router(rext_connect.routes({\"prefix\":'myapp',\"rext\":rext})));\n\n## Running node tests\n\n Install dependencies:\n \n $ npm install -d\n \n Run them!\n \n $ make test-server\n\n## License \n\n(The MIT License)\n\nCopyright (c) 2011 Grapily <dev@grapily.com>\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "maintainers": [ + { + "name": "nss", + "email": "luca.lanziani@gmail.com" + } + ], + "time": { + "modified": "2011-12-13T17:55:16.748Z", + "created": "2011-12-13T17:13:14.659Z", + "0.0.3": "2011-12-13T17:13:16.580Z", + "0.0.4": "2011-12-13T17:19:16.461Z", + "0.0.5": "2011-12-13T17:55:16.748Z" + }, + "author": { + "name": "Grapily", + "email": "dev.grapily.com" + }, + "versions": { + "0.0.3": "http://registry.npmjs.org/rext-connect/0.0.3", + "0.0.4": "http://registry.npmjs.org/rext-connect/0.0.4", + "0.0.5": "http://registry.npmjs.org/rext-connect/0.0.5" + }, + "dist": { + "0.0.3": { + "shasum": "e2be2aa8db4ba0c1c1e167d612c2ada87b287f88", + "tarball": "http://registry.npmjs.org/rext-connect/-/rext-connect-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "495a96af50d55fa0eafaab23f0032ae8ac86b1a9", + "tarball": "http://registry.npmjs.org/rext-connect/-/rext-connect-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "7add1e9ae44c919d9d654d840f648e432e357c0f", + "tarball": "http://registry.npmjs.org/rext-connect/-/rext-connect-0.0.5.tgz" + } + }, + "keywords": [ + "middleware", + "connect", + "router" + ], + "url": "http://registry.npmjs.org/rext-connect/" + }, + "transkode": { + "name": "transkode", + "description": "Image/Video Transcoding Server", + "dist-tags": { + "latest": "0.0.4" + }, + "readme": "# transkode\n\nNode-powered, Redis-backed (queued) transcoding server for images and video (coming).\n\n## Is it any good?\n\nNo. This is just an experiment and is NOT production ready.\n\n## Dependancies\n\n- Node.js v0.4.6+\n- Redis v2.0+\n- GraphicsMagick\n\n## Proposed Usage\n\n```` js\n\nPOST http://localhost:4422/jobs/(image|video)\n\n{\n \"title\": \"resize profile pic for user 5432\"\n, \"input\": {\n \"filename\": \"original.jpg\"\n , \"local\": \"./test/images/original.jpg\"\n }\n, \"outputs\": [\n {\n \"resize\": { \"to\": \"400x200\", \"strategy\": \"crop\" }\n , \"blur\": 10\n , \"quality\": 80\n , \"cloudfiles\": {\n \"container\": \"...\"\n , \"name\": \"profile_images/new/400.jpg\"\n }\n }\n , {\n \"resize\": { \"to\": \"200x100\", \"strategy\": \"crop\" }\n , \"quality\": 70\n , \"local\": \"./test/images/new-200.jpg\"\n }\n , {\n \"resize\": { \"to\": \"50\", \"strategy\": \"crop\" }\n , \"quality\": 70\n , \"local\": \"./test/images/new-50.jpg\"\n }\n , {\n \"resize\": { \"to\": \"20\", \"strategy\": \"crop\" }\n , \"quality\": 70\n , \"local\": \"./test/images/new-10.jpg\"\n }\n ]\n, \"wait\": true\n, \"meta\": {\n \"user_id\": 5432\n }\n, \"postback_url\": \"http://localhost:3000/transcode\"\n}\n\n````\n\n## Image Processors\n\n### resize\n\n```` js\n\n\"resize\": {\n \"width\": 100\n, \"height\": 100\n, \"to\": \"100x100\"\n, \"strategy\": [fit|crop|pad|stretch]\n, \"zoom\": true\n, \"gravity\": [\"center\", ...] (when cropping or padding)\n, \"background\": [color]\n}\n\n````\n\n## Authors\n\n * Evan Owen\n\n## License\n\n(The MIT License)\n\nCopyright (c) 2011 Evan Owen <kainosnoema@gmail.com>\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.", + "maintainers": [ + { + "name": "kainosnoema", + "email": "kainosnoema@gmail.com" + } + ], + "time": { + "modified": "2011-12-13T20:37:47.382Z", + "created": "2011-12-13T20:37:47.078Z", + "0.0.4": "2011-12-13T20:37:47.382Z" + }, + "author": { + "name": "Evan Owen", + "email": "kainosnoema@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/kainosnoema/transkode.git" + }, + "versions": { + "0.0.4": "http://registry.npmjs.org/transkode/0.0.4" + }, + "dist": { + "0.0.4": { + "shasum": "0d4ae699783be5745d3ff41e8c5efa52a5db1d8e", + "tarball": "http://registry.npmjs.org/transkode/-/transkode-0.0.4.tgz" + } + }, + "url": "http://registry.npmjs.org/transkode/" + }, + "now-sessions": { + "name": "now-sessions", + "description": "Uses now-middleware for NowJS to enable HTTP session lookup from a Connect-compliant session store when a new nowjs session is created.", + "dist-tags": { + "latest": "0.0.1" + }, + "maintainers": [ + { + "name": "ianserlin", + "email": "npm@ianserlin.com" + } + ], + "time": { + "modified": "2011-12-13T20:38:48.893Z", + "created": "2011-12-13T20:26:38.226Z", + "0.0.1": "2011-12-13T20:38:48.893Z" + }, + "author": { + "name": "Ian Serlin" + }, + "repository": { + "type": "git", + "url": "git://github.com/ianserlin/now-sessions.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/now-sessions/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "93ebb7191c76e352a5dc136dd61157099a25a480", + "tarball": "http://registry.npmjs.org/now-sessions/-/now-sessions-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/now-sessions/" + }, + "now-middleware": { + "name": "now-middleware", + "description": "Enables a middleware API for hooking into the NowJS execution path.", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "NowJS Middleware Layer - Connect style\n--------------------------------------\n\nTo enable:\n\n\nvar nowjs = require('now');\nrequire('now-middleware')(nowjs);\n\n\n\nTo run when a new user connects:\n-------------------------------\n\n\n.before( function );\n\n\n
\nnowjs.before(function(client,next){\n  var sid = decodeURIComponent( client.user.cookie[sessionKey] );\n  sessionStore.get( sid, function( err, session ){\n    client.now.session = session;\n    next();\n  });\n});\n
\n\nParameters are:\n\n* the beforeware function you want called when each new nowjs session is established, you will receive the newly created nowjs user object (the \"this\" in remotely called functions) passed as client and the next() function which you must call to pass control to the next beforeware layer\n\nTo run when a user makes a remote method call on the server (e.g. to retrieve an HTTP session):\n-------------------------------\n\n\n.use( route, function );\n\n\n
\nnowjs.use('users', function(args, next){\n  var self = this;\n  console.log( 'middleware is running' )\n  // add additional arguments\n  args.push( { lollipop: \"is tasty\" } );\n  next();\n});\n
\n\nParameters are:\n\n* regex matched route (omit completely if you want to match all routes, what's a route? simply the name and namespace of the function you are calling)\n* the middleware function you want called, this function will receive all arguments the client sent, can manipulate/add to them, and then call next() to pass to the next layer in the middleware", + "maintainers": [ + { + "name": "ianserlin", + "email": "npm@ianserlin.com" + } + ], + "time": { + "modified": "2011-12-13T20:39:06.359Z", + "created": "2011-12-13T20:39:04.429Z", + "0.0.1": "2011-12-13T20:39:06.359Z" + }, + "author": { + "name": "Ian Serlin" + }, + "repository": { + "type": "git", + "url": "git://github.com/ianserlin/now-middleware.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/now-middleware/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "c562214fa90c3103f0cb19490fe604fc26d350cd", + "tarball": "http://registry.npmjs.org/now-middleware/-/now-middleware-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/now-middleware/" + }, + "bundle-up": { + "name": "bundle-up", + "description": "A simple asset manager middleware for connect", + "dist-tags": { + "latest": "0.1.4" + }, + "readme": "Bundle up!\n==========\n\nBundle up is a middleware for connect to manage all client-side assets in an organized way. Everything is manged using an assets file\n\n // assets.js\n module.exports = function(assets) {\n assets.root = __dirname\n \tassets.addJs(\"/public/js/jquery-1.6.4.min.js\");\n \tassets.addJs(\"/public/js/jquery.placeholder.min.js\");\n \tassets.addJs(\"/app/client/main.coffee\");\n \n \tassets.addCss(\"/public/bootstrap/bootstrap.min.css\");\n \tassets.addCss(\"/app/styles/screen.styl\");\n }\n\nJust point to a file (.js, .css, .coffee or .styl are currently supported) anywhere in your app directory. In your view you can then just render all the css or javascript files by calling `renderStyles` and `renderJs` like this:\n\n !!!\n html\n head\n != renderStyles\n body!= body\n != renderJs\n\nBy default this will render\n\n \n \n\n \n \n \n\nAll assets will be compiled on-the-fly when `bundle:false` is set. Therefore the server never\nneeds to be restarted when editing the different assets.\n\nTo render bundles `bundle:true` needs to be passed as a parameter to the middleware. This will concatenate all javascript and css files into bundles and render this:\n\n \n \n\nAll bundles are generated during startup. The filename will change with the content so you should configure your web server with far future expiry headers.\n\n### generated/\n\nAll files that needs to be compiled, copied (if you are bundling up a file that doesn't reside in your `public/` directory) or bundled will end up in `public/generated/` directory. This is to have an organized way to separate whats actually *your code* and whats *generated code*.\n\nUsage\n-----\n\n BundleUp(app, __dirname + \"/assets\", {\n staticRoot: __dirname + \"/public/\",\n staticUrlRoot:\"/\",\n bundle:true\n });\n\nThe first parameter is the app object and the second is the path to the assets file\n\nTODO\n----\n\n * Add support for addCss(\"folder/\\*.css\") and addJs(\"**.coffee\") etc.\n * Add support for namespaced assets\n\nLICENSE\n-------\n\nMIT licensed\n", + "maintainers": [ + { + "name": "freddan", + "email": "fredriklindin@gmail.com" + } + ], + "time": { + "modified": "2011-12-13T20:40:52.326Z", + "created": "2011-12-12T17:55:56.547Z", + "0.1.0": "2011-12-12T17:55:58.601Z", + "0.1.1": "2011-12-12T19:16:42.291Z", + "0.1.2": "2011-12-12T19:24:31.302Z", + "0.1.3": "2011-12-12T21:08:28.197Z", + "0.1.4": "2011-12-13T20:40:52.326Z" + }, + "author": { + "name": "Fredrik Lindin", + "email": "fredriklindin@gmail.com" + }, + "repository": { + "url": "" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/bundle-up/0.1.0", + "0.1.1": "http://registry.npmjs.org/bundle-up/0.1.1", + "0.1.2": "http://registry.npmjs.org/bundle-up/0.1.2", + "0.1.3": "http://registry.npmjs.org/bundle-up/0.1.3", + "0.1.4": "http://registry.npmjs.org/bundle-up/0.1.4" + }, + "dist": { + "0.1.0": { + "shasum": "e458bc42ce8d219589e506c45909acb0278fbf52", + "tarball": "http://registry.npmjs.org/bundle-up/-/bundle-up-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "ff6ea88e16b17268b014394f49ac5ca233485d75", + "tarball": "http://registry.npmjs.org/bundle-up/-/bundle-up-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "1373deb7c7bfea0bf8a10b5befd8fcacd9fef21d", + "tarball": "http://registry.npmjs.org/bundle-up/-/bundle-up-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "bc7a2fea7cf62f84d6dfe6529d328f924f79ff5c", + "tarball": "http://registry.npmjs.org/bundle-up/-/bundle-up-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "eb636dfd0bf7f8942bfda1abb075cfbbd62a4994", + "tarball": "http://registry.npmjs.org/bundle-up/-/bundle-up-0.1.4.tgz" + } + }, + "url": "http://registry.npmjs.org/bundle-up/" + }, + "node-aws": { + "name": "node-aws", + "description": "A client interface to various AWS services", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "# Node AWS\n\nNode AWS is an easy-to-use AWS client.\n\n## Usage\n\n```javascript\nvar aws = require('node-aws');\n\nvar client = aws.createClient({\n accessKeyId: '...',\n secretAccessKey: '...',\n});\n\naws.request('simpleDb', 'putAttributes', {\n domainName: \"test\",\n itemName: \"item1\",\n attributes: [\n {\n name: 'key1',\n value: 'val1',\n },\n ],\n}, function(response) {\n if (response instanceof Error) {\n // uh oh\n console.log(response.code, response.message);\n } else {\n // it worked!\n }\n})\n```\n\n## Status\n\nThe most up-to-date list of supported AWS services and methods is available by calling `require('node-aws').getSupportedMethods()`. A potentially outdated list is provided below:\n\n### EC2 (Elastic Compute Cloud)\n\n * allocateAddress\n * associateAddress\n * createKeyPair\n * deleteKeyPair\n * describeAddresses\n * describeAvailabilityZones\n * describeInstances\n * describeKeyPairs\n * describeRegions\n * disassociateAddress\n * getConsoleOutput\n * importKeyPair\n * rebootInstances\n * releaseAddress\n * startInstances\n * stopInstances\n\n### Route53\n\n * changeResourceRecordSets\n * createHostedZone\n * deleteHostedZone\n * getChange\n * getHostedZone\n * listHostedZones\n * listResourceRecordSets\n\n### S3 (Simple Storage Service)\n\n * createBucket\n * deleteBucket\n * deleteObject\n * getObject\n * listAllMyBuckets\n * listBucket\n * putObject\n\n### SES (Simple Email Service)\n\n * deleteVerifiedEmailAddress\n * getSendQuota\n * getSendStatistics\n * listVerifiedEmailAddresses\n * sendEmail\n * verifyEmailAddress\n\n### SimpleDB\n\n * batchDeleteAttributes\n * batchPutAttributes\n * createDomain\n * deleteAttributes\n * deleteDomain\n * domainMetadata\n * getAttributes\n * listDomains\n * putAttributes\n * select\n", + "maintainers": [ + { + "name": "sansmischevia", + "email": "chou.bryant@gmail.com" + } + ], + "time": { + "modified": "2011-12-13T21:05:20.469Z", + "created": "2011-12-13T21:05:19.905Z", + "0.1.0": "2011-12-13T21:05:20.469Z" + }, + "author": { + "name": "Jordan Ryan Moore", + "email": "jordanryanmoore@rainclouddev.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/sansMischevia/node-aws.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/node-aws/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "6ef4261b31cffa25ee98eb2629147c80220f06a1", + "tarball": "http://registry.npmjs.org/node-aws/-/node-aws-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/node-aws/" + }, + "blueimp-tmpl": { + "name": "blueimp-tmpl", + "description": "< 1KB lightweight, fast & powerful JavaScript templating engine with zero dependencies. Compatible with server-side environments like node.js, module loaders like RequireJS and all web browsers.", + "dist-tags": { + "latest": "1.0.2" + }, + "readme": "# JavaScript Templates\n\n## Demo\n[JavaScript Templates Demo](http://blueimp.github.com/JavaScript-Templates/)\n\n## Usage\n\n### Client-side\nInclude the (minified) JavaScript Templates script in your HTML markup:\n\n```html\n\n```\n\nAdd a script section with type **\"text/html\"** and your template definition as content:\n\n```html\n\n```\n\n**\"o\"** (the lowercase letter) is a reference to the data parameter of the template function (see the API section on how to modify this identifier).\n\nIn your application code, create a JavaScript object to use as data for the template:\n\n```js\nvar data = {\n \"title\": \"JavaScript Templates\",\n \"license\": {\n \"name\": \"MIT license\",\n \"url\": \"http://creativecommons.org/licenses/MIT/\"\n },\n \"features\": [\n \"lightweight & fast\",\n \"powerful\",\n \"zero dependencies\"\n ]\n};\n```\n\nIn a real application, this data could be the result of retrieving a [JSON](http://json.org/) resource.\n\nRender the result by calling the **tmpl()** method with the id of the template and the data object as arguments:\n\n```js\ndocument.getElementById(\"result\").innerHTML = tmpl(\"tmpl-demo\", data);\n```\n\n### Server-side\n\nThe following is an example how to use the JavaScript Templates engine on the server-side with [node.js](http://nodejs.org/).\n\nCreate a new directory and add the **tmpl.js** file. Or alternatively, install the **blueimp-tmpl** package with [npm](http://npmjs.org/):\n\n```sh\nnpm install blueimp-tmpl\n```\n\nAdd a file **template.html** with the following content:\n\n```html\n\n{%=o.title%}\n

{%=o.title%}

\n

Features

\n
    \n{% for (var i=0; i{%=o.features[i]%}\n{% } %}\n
\n```\n\nAdd a file **server.js** with the following content:\n\n```js\nrequire(\"http\").createServer(function (req, res) {\n var fs = require(\"fs\"),\n // The tmpl module exports the tmpl() function:\n tmpl = require(\"./tmpl\").tmpl,\n // Use the following version if you installed the package with npm:\n // tmpl = require(\"blueimp-tmpl\").tmpl,\n // Sample data:\n data = {\n \"title\": \"JavaScript Templates\",\n \"url\": \"https://github.com/blueimp/JavaScript-Templates\",\n \"features\": [\n \"lightweight & fast\",\n \"powerful\",\n \"zero dependencies\"\n ]\n };\n // Override the template loading method:\n tmpl.load = function (id) {\n var filename = id + \".html\";\n console.log(\"Loading \" + filename);\n return fs.readFileSync(filename, \"utf8\");\n };\n res.writeHead(200, {\"Content-Type\": \"text/html\"});\n // Render the content:\n res.end(tmpl(\"template\", data));\n}).listen(8080, \"localhost\");\nconsole.log(\"Server running at http://localhost:8080/\");\n```\n\nRun the application with the following command:\n\n```sh\nnode server.js\n```\n\n## Requirements\nThe JavaScript Templates script has zero dependencies.\n\n## API\n\n### tmpl() function\nThe **tmpl()** function is added to the global **window** object and can be called as global function:\n\n```js\nvar result = tmpl(\"tmpl-demo\", data);\n```\n\nThe **tmpl()** function can be called with the id of a template, or with a template string:\n\n```js\nvar result = tmpl(\"

{%=o.title%}

\", data);\n```\n\nIf called without second argument, **tmpl()** returns a reusable template function:\n\n```js\nvar func = tmpl(\"

{%=o.title%}

\");\ndocument.getElementById(\"result\").innerHTML = func(data);\n```\n\n### Templates cache\nTemplates loaded by id are cached in the map **tmpl.cache**, which can be modified:\n\n```js\nvar func = tmpl(\"tmpl-demo\");\nvar cached = typeof tmpl.cache[\"tmpl-demo\"] === \"function\"; // true\n\ntmpl.cache[\"tmpl-demo\"] = tmpl(\"

{%=o.title%}

\");\nvar result = tmpl(\"tmpl-demo\", {title: \"JS\"}); // Renders \"

JS

\"\n```\n\n### Output encoding\nThe method **tmpl.encode** is used to escape HTML special characters in template output:\n\n```js\nvar output = tmpl.encode(\"<>&\\\"\\x00\"); // Renders \"<>&"\"\n```\n\n**tmpl.encode** makes use of the regular expression **tmpl.encReg** and the encoding map **tmpl.encMap** to match and replace special characters, which can be modified to change the behavior of the output encoding:\n\n```js\n// Add single quotes to the encoding rules:\ntmpl.encReg = /[<>&\"'\\x00]/g;\ntmpl.encMap[\"'\"] = \"'\";\n\nvar output = tmpl.encode(\"<>&\\\"'\\x00\"); // Renders \"<>&"'\"\n```\n\n### Local helper variables\nThe local variables available inside the templates are the following:\n\n* **o**: The data object given as parameter to the template function (see the next section on how to modify the parameter name).\n* **_s**: The string for the rendered result content.\n* **_t**: A reference to the **tmpl** function object.\n* **_e**: A reference to the **tmpl.encode** method.\n* **print**: Function to add content to the rendered result string.\n* **include**: Function to include the return value of a different template in the result.\n\nTo introduce additional local helper variables, the string **tmpl.helper** can be extended. The following adds a convenience function for *console.log* and a streaming function, that streams the template rendering result back to the callback argument (note the comma at the beginning of each variable declaration):\n\n```js\ntmpl.helper += \",log=function(){console.log.apply(console, arguments)}\" +\n \",st='',stream=function(cb){var l=st.length;st=_s;cb( _s.slice(l));}\";\n```\n\nThose new helper functions could be used to stream the template contents to the console output:\n\n```html\n\n```\n\n### Template function argument\nThe generated template functions accept one argument, which is the data object given to the **tmpl(id, data)** function. This argument is available inside the template definitions as parameter **o** (the lowercase letter).\n\nThe argument name can be modified by overriding **tmpl.arg**:\n\n```js\ntmpl.arg = \"p\";\n\n// Renders \"

JavaScript Templates

\":\nvar result = tmpl(\"

{%=p.title%}

\", {title: \"JavaScript Templates\"});\n```\n\n### Template parsing\nThe template contents are matched and replaced using the regular expression **tmpl.regexp** and the replacement function **tmpl.func**. The replacement function operates based on the [parenthesized submatch strings](https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/String/replace#Specifying_a_function_as_a_parameter).\n\nTo use different tags for the template syntax, override **tmpl.regexp** with a modified regular expression, by exchanging all occurrences of \"**\\\\{%**\" and \"**%\\\\}**\", e.g. with \"**\\\\[%**\" and \"**%\\\\]**\":\n\n```js\ntmpl.regexp = /(\\s+)|('|\\\\)(?![^%]*%\\])|(?:\\[%(=|!)(.+?)%\\])|(\\[%)|(%\\])/g;\n```\n\n## Templates syntax\n\n### Interpolation\nPrint variable with HTML special characters escaped:\n\n```html\n

{%=o.title%}

\n```\n\nPrint variable without escaping:\n\n```html\n

{%!o.user_id%}

\n```\n\nPrint output of function calls:\n\n```html\nWebsite\n```\n\nUse dot notation to print nested properties:\n\n```html\n{%=o.author.name%}\n```\n\n### Evaluation\nUse **print(str)** to add escaped content to the output:\n\n```html\nYear: {% var d=new Date(); print(d.getFullYear()); %}\n```\n\nUse **print(str, true)** to add unescaped content to the output:\n\n```html\n{% print(\"Fast & powerful\", true); %}\n```\n\nUse **include(str, obj)** to include content from a different template:\n\n```html\n
\n{% include('tmpl-link', {name: \"Website\", url: \"http://example.org\"}); %}\n
\n```\n\nIf else condition:\n\n```html\n{% if (o.author.url) { %}\n {%=o.author.name%}\n{% } else { %}\n No author url.\n{% } %}\n```\n\nFor loop:\n\n```html\n
    \n{% for (var i=0; i{%=o.features[i]%}\n{% } %}\n
\n```\n\n## License\nThe JavaScript Templates script is released under the [MIT license](http://creativecommons.org/licenses/MIT/).\n", + "maintainers": [ + { + "name": "blueimp", + "email": "sebastian.tschan@gmail.com" + } + ], + "time": { + "modified": "2011-12-13T21:20:19.048Z", + "created": "2011-12-10T21:07:29.229Z", + "1.0.0": "2011-12-10T21:07:32.435Z", + "1.0.1": "2011-12-12T08:30:13.836Z", + "1.0.2": "2011-12-13T21:20:19.048Z" + }, + "author": { + "name": "Sebastian Tschan", + "url": "https://blueimp.net" + }, + "repository": { + "type": "git", + "url": "git://github.com/blueimp/JavaScript-Templates.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/blueimp-tmpl/1.0.0", + "1.0.1": "http://registry.npmjs.org/blueimp-tmpl/1.0.1", + "1.0.2": "http://registry.npmjs.org/blueimp-tmpl/1.0.2" + }, + "dist": { + "1.0.0": { + "shasum": "73999a41663ac4d9468d1f5a7e9818672bb1d691", + "tarball": "http://registry.npmjs.org/blueimp-tmpl/-/blueimp-tmpl-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "cbe9109af15f95a3c42f4399a4ea5ee3614f5952", + "tarball": "http://registry.npmjs.org/blueimp-tmpl/-/blueimp-tmpl-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "b96b785da7172b694dbee7f70cf59fedf953239c", + "tarball": "http://registry.npmjs.org/blueimp-tmpl/-/blueimp-tmpl-1.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/blueimp-tmpl/" + }, + "apitree": { + "name": "apitree", + "description": "Creates a SocketStream-style API tree from a file system directory", + "dist-tags": { + "latest": "1.0.0" + }, + "maintainers": [ + { + "name": "andreyvit", + "email": "andreyvit@me.com" + } + ], + "time": { + "modified": "2011-12-13T21:31:55.926Z", + "created": "2011-12-13T21:31:53.281Z", + "1.0.0": "2011-12-13T21:31:55.926Z" + }, + "author": { + "name": "Andrey Tarantsov", + "email": "andreyvit@me.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/andreyvit/apitree.js.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/apitree/1.0.0" + }, + "dist": { + "1.0.0": { + "shasum": "664e5480051ee48d36f8cee0997163559fd93bcd", + "tarball": "http://registry.npmjs.org/apitree/-/apitree-1.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/apitree/" + }, + "node-make-asset-pipeline": { + "name": "node-make-asset-pipeline", + "description": "An asset pipeline which retrieves assets depending on makefile commands when a watched modules has been updated", + "dist-tags": { + "latest": "0.0.3" + }, + "readme": "\n# Asset middleware\n\nThis middleware is intended to be used on development in a browser environment\nEach time a request for an asset is coming, the make command for the specific asset ( convention naming ) is executed\n\n## Set up express server \n\n```js\nvar app = express.createServer(\n require('node-make-asset-pipeline')({asset: 'asset_folder'})\n); \n```\n\n## Create makefile \n\nIn order to work, each command must output a file with the same name as the command\n\nExample\n\n jquery:\n\n ender build jQuery --output ./assets/jquery --debug \n\n underscore:\n\n ender build underscore --output ./assets/underscore --debug \n\n ember:\n\n cd ~/pathto/ember.js/; \\\n rake clean; \\\n rake \n app:\n \n cp -pr lib/app.js assets/app.js\n\n## asset_folder\n jquery.js \n jquery.js \n ember.js \n", + "maintainers": [ + { + "name": "ppcano", + "email": "ppcanodehuelva@gmail.com" + } + ], + "time": { + "modified": "2011-12-13T21:32:11.015Z", + "created": "2011-12-13T17:35:17.348Z", + "0.0.1": "2011-12-13T17:35:18.370Z", + "0.0.2": "2011-12-13T19:46:06.386Z", + "0.0.3": "2011-12-13T21:32:11.015Z" + }, + "author": { + "name": "Pepe Cano" + }, + "repository": { + "type": "git", + "url": "git://github.com/ppcano/node-make-asset-pipeline.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/node-make-asset-pipeline/0.0.1", + "0.0.2": "http://registry.npmjs.org/node-make-asset-pipeline/0.0.2", + "0.0.3": "http://registry.npmjs.org/node-make-asset-pipeline/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "a4f5899814817311e8d0c4473aafb43c564bf3b3", + "tarball": "http://registry.npmjs.org/node-make-asset-pipeline/-/node-make-asset-pipeline-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c36d0c47b466ea16b94c2fbbe3becddd84e440a2", + "tarball": "http://registry.npmjs.org/node-make-asset-pipeline/-/node-make-asset-pipeline-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "f13a7f60619ec3d8abe441776027d6697b1b6793", + "tarball": "http://registry.npmjs.org/node-make-asset-pipeline/-/node-make-asset-pipeline-0.0.3.tgz" + } + }, + "keywords": [ + "assets", + "makefile", + "pipeline" + ], + "url": "http://registry.npmjs.org/node-make-asset-pipeline/" + }, + "amqp-tool": { + "name": "amqp-tool", + "description": "Rabbitmq-tool - import/export data from a RabbitMQ broker", + "dist-tags": { + "latest": "0.0.2" + }, + "readme": "## (Work in Progress, will be released through npm soon) ##\n\n## Installation\n\n $ npm install amqp-tool -g\n\n## Usage overview\n\n```bash\nUsage: node ./bin/amqp-tool [options] [-import | -export]\n\nOptions:\n --host host [default: \"localhost\"]\n --user, -u username [default: \"guest\"]\n --password, -p password [default: \"guest\"]\n --port port [default: 5672]\n --vhost vhost [default: \"/\"]\n --queue, -q queue's name to work with [required]\n --passive set it to true if the queue already exist [default: true]\n --durable the queue will survive a borker restart\n --autoDelete the queue will be deleted when there is no more subscriptions\n --export export [filename], export queue's content to filename [default: \"stdout\"]\n --import import [filename], export file content into the queue [default: \"stdin\"]\n --count limit the number of message to export/import\n -v, --verbose verbose mode [default: false]\n -h, --help produce this help message\n```\n\n### Export the first 5000 messages of a queue\ninto a file ...\n\n amqp-tool --host rabbitmq.local -u user -p azerty -q queuetest --count 5000 --export dump.json\n\n... or to `stdout`\n\n amqp-tool --host rabbitmq.local -u user -p azerty -q queuetest --count 5000 --export > dump.json\n\n\n### Continuously export a queue into a file\n\n amqp-tool --host rabbitmq.local -u user -p azerty -q queuetest --export > dump.json\n\n\n### Import all messages to a queue\nfrom a file...\n\n amqp-tool --host rabbitmq.local -u user -p azerty -q queuetest --import dump.json\n\n...or from `stdin`\n\n cat dump.json | amqp-tool --host rabbitmq.local -u user -p azerty -q queuetest --import\n\n### Import the first 10 messages of a file into a queue\n\n head -n10 500messages.json | amqp-tool --host rabbitmq.local -u user -p azerty -q queuetest --import\n\n### Continuously transfer message between two RabbitMQ Server (just for fun)\n\n amqp-tool --host rabbitmq1.local -u user -p azerty -q queue1 --export | amqp-tool \\\n --host rabbitmq2.local -u user -p azerty -q queue2 --import\n ue from a file.json or `stdout`\n", + "maintainers": [ + { + "name": "fgribreau", + "email": "npm@fgribreau.com" + } + ], + "time": { + "modified": "2011-12-13T22:44:03.234Z", + "created": "2011-12-13T22:37:24.926Z", + "0.0.1": "2011-12-13T22:37:26.596Z", + "0.0.2": "2011-12-13T22:44:03.234Z" + }, + "author": { + "name": "Francois-Guillaume Ribreau", + "email": "npm@fgribreau.com", + "url": "http://fgribreau.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/FGRibreau/node-amqp-tool.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/amqp-tool/0.0.1", + "0.0.2": "http://registry.npmjs.org/amqp-tool/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "a1110661bfaf56a01b7a6f5265662cdbc490081c", + "tarball": "http://registry.npmjs.org/amqp-tool/-/amqp-tool-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "90fc638d0a5558e4ddb8caf04705c9597a051280", + "tarball": "http://registry.npmjs.org/amqp-tool/-/amqp-tool-0.0.2.tgz" + } + }, + "keywords": [ + "amqp", + "rabbitmq", + "tool", + "export", + "import" + ], + "url": "http://registry.npmjs.org/amqp-tool/" + }, + "bugswarm-cfg": { + "name": "bugswarm-cfg", + "description": "[Configuration] BUGswarm is platform that allows you to share and access your hardware sensor data easily and effortlessly.", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "# BUGswarm NodeJS library\n\nThis library has two main modules: participation and configuration. Use the\nthe configuration module to set up your swarms, resources as well as to manage \ninvitations and API keys. Use the participation module to send and receive\nmessages and binary data.\n\nThis library is an implementation of \n[BUGswarm API](http://developer.bugswarm.net/).\n\n### Features\n* Manages swarms, resources, invitations and apikeys.\n* Sends and receives private and public messages, as well as presence, \n between swarms and resources.\n* Sends and receives binary files.\n\n### Installation\n`npm install bugswarm`\n\n### Usage example\n\nProducing data:\n\n```javascript\n//TODO\n```\n\nConsuming:\n\n```javascript\n//TODO\n```\n\nTake a look at the [documentation]() for details about the library API and, \nfor more comprehensive examples, at the [examples]() directory. \n\n### Fork it, improve it and send us pull requests.\n```shell\ngit clone git@github.com:buglabs/bugswarm-api.git && cd bugswarm-api/nodejs\n```\n\n## License\n(The MIT License)\n\nCopyright 2011 BugLabs. All rights reserved.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n\n\n", + "maintainers": [ + { + "name": "buglabs", + "email": "camilo@buglabs.net" + } + ], + "time": { + "modified": "2011-12-13T22:57:11.065Z", + "created": "2011-12-13T22:57:10.754Z", + "0.1.0": "2011-12-13T22:57:11.065Z" + }, + "author": { + "name": "BugLabs Inc." + }, + "repository": { + "type": "git", + "url": "git://github.com/buglabs/bugswarm-api.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/bugswarm-cfg/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "f0d35463161ea46117b2aeef35dbe0e02b6e51bb", + "tarball": "http://registry.npmjs.org/bugswarm-cfg/-/bugswarm-cfg-0.1.0.tgz" + } + }, + "keywords": [ + "m2m", + "IoT", + "realtime", + "messaging", + "sensor", + "hardware", + "socket", + "configuration" + ], + "url": "http://registry.npmjs.org/bugswarm-cfg/" + }, + "bugswarm-prt": { + "name": "bugswarm-prt", + "description": "[Participation] BUGswarm is platform that allows you to share and access your hardware sensor data easily and effortlessly.", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "# BUGswarm NodeJS library\n\nThis library has two main modules: participation and configuration. Use the\nthe configuration module to set up your swarms, resources as well as to manage \ninvitations and API keys. Use the participation module to send and receive\nmessages and binary data.\n\nThis library is an implementation of \n[BUGswarm API](http://developer.bugswarm.net/).\n\n### Features\n* Manages swarms, resources, invitations and apikeys.\n* Sends and receives private and public messages, as well as presence, \n between swarms and resources.\n* Sends and receives binary files.\n\n### Installation\n`npm install bugswarm`\n\n### Usage example\n\nProducing data:\n\n```javascript\n//TODO\n```\n\nConsuming:\n\n```javascript\n//TODO\n```\n\nTake a look at the [documentation]() for details about the library API and, \nfor more comprehensive examples, at the [examples]() directory. \n\n### Fork it, improve it and send us pull requests.\n```shell\ngit clone git@github.com:buglabs/bugswarm-api.git && cd bugswarm-api/nodejs\n```\n\n## License\n(The MIT License)\n\nCopyright 2011 BugLabs. All rights reserved.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to\ndeal in the Software without restriction, including without limitation the\nrights to use, copy, modify, merge, publish, distribute, sublicense, and/or\nsell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\nIN THE SOFTWARE.\n\n\n", + "maintainers": [ + { + "name": "buglabs", + "email": "camilo@buglabs.net" + } + ], + "time": { + "modified": "2011-12-13T23:02:56.532Z", + "created": "2011-12-13T23:02:56.186Z", + "0.1.0": "2011-12-13T23:02:56.532Z" + }, + "author": { + "name": "BugLabs Inc." + }, + "repository": { + "type": "git", + "url": "git://github.com/buglabs/bugswarm-api.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/bugswarm-prt/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "af8b0c16cea7510bfb2ea0bb4584d079ae581bdd", + "tarball": "http://registry.npmjs.org/bugswarm-prt/-/bugswarm-prt-0.1.0.tgz" + } + }, + "keywords": [ + "m2m", + "IoT", + "realtime", + "messaging", + "sensor", + "hardware", + "socket", + "configuration" + ], + "url": "http://registry.npmjs.org/bugswarm-prt/" + }, + "telegraph": { + "name": "telegraph", + "description": "A framework which acts as an interface between Backbone, Socket.IO and Express.", + "dist-tags": { + "latest": "0.4.3" + }, + "maintainers": [ + { + "name": "natehunzaker", + "email": "nate.hunzaker@gmail.com" + } + ], + "time": { + "modified": "2011-12-13T23:10:36.398Z", + "created": "2011-12-12T00:28:15.366Z", + "0.4.1": "2011-12-12T00:28:15.839Z", + "0.4.3": "2011-12-13T23:10:36.398Z" + }, + "author": { + "name": "Nate Hunzaker", + "email": "nate.hunzaker@gmail.com", + "url": "natehunzaker.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:nhunzaker/telegraph.git" + }, + "versions": { + "0.4.1": "http://registry.npmjs.org/telegraph/0.4.1", + "0.4.3": "http://registry.npmjs.org/telegraph/0.4.3" + }, + "dist": { + "0.4.1": { + "shasum": "1bc54b6f9031598fd4a4ec2a8bd121e76ee6c13b", + "tarball": "http://registry.npmjs.org/telegraph/-/telegraph-0.4.1.tgz" + }, + "0.4.3": { + "shasum": "6c8682d0c8d4c42e63e8eae2617f403276cdbd3d", + "tarball": "http://registry.npmjs.org/telegraph/-/telegraph-0.4.3.tgz" + } + }, + "url": "http://registry.npmjs.org/telegraph/" + }, + "nploy": { + "name": "nploy", + "description": "Lazy spawn node apps on single ip", + "dist-tags": { + "latest": "0.1.2" + }, + "readme": "", + "maintainers": [ + { + "name": "stagas", + "email": "gstagas@gmail.com" + } + ], + "time": { + "modified": "2011-12-13T23:42:48.415Z", + "created": "2011-12-13T15:44:07.623Z", + "0.1.0": "2011-12-13T15:44:10.942Z", + "0.1.1": "2011-12-13T21:43:28.769Z", + "0.1.2": "2011-12-13T23:42:48.415Z" + }, + "author": { + "name": "George Stagas", + "email": "gstagas@gmail.com", + "url": "http://stagas.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/stagas/nploy.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/nploy/0.1.0", + "0.1.1": "http://registry.npmjs.org/nploy/0.1.1", + "0.1.2": "http://registry.npmjs.org/nploy/0.1.2" + }, + "dist": { + "0.1.0": { + "shasum": "c073bdfda9015676113d28b6c74017adf453c09c", + "tarball": "http://registry.npmjs.org/nploy/-/nploy-0.1.0.tgz" + }, + "0.1.1": { + "shasum": "7fab234046d6d1ac7e3fa1cc19c9c942b9cd6ea8", + "tarball": "http://registry.npmjs.org/nploy/-/nploy-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "7e0c71999be60af621ab0579f9665246808f37b3", + "tarball": "http://registry.npmjs.org/nploy/-/nploy-0.1.2.tgz" + } + }, + "url": "http://registry.npmjs.org/nploy/" + }, + "ldapauth": { + "name": "ldapauth", + "description": "Authenticate against an LDAP server", + "dist-tags": { + "latest": "1.0.2" + }, + "readme": "A simple node.js lib to authenticate against an LDAP server.\n\n# Usage\n\n var LdapAuth = require('ldapauth');\n var options = {\n url: 'ldaps://ldap.example.com:663',\n adminDn: '...'\n \n ...\n {\n };\n var auth = new LdapAuth(options);\n ...\n auth.authenticate(username, password, function(err, user) { ... });\n ...\n auth.close(function(err) { ... })\n\n# Install\n\n npm install ldapauth\n\n# `LdapAuth` Config Options\n\n[Use the source Luke](XXX)\n", + "maintainers": [ + { + "name": "trentm", + "email": "trentm@gmail.com" + } + ], + "time": { + "modified": "2011-12-14T00:04:42.441Z", + "created": "2011-12-13T23:03:52.686Z", + "1.0.0": "2011-12-13T23:03:53.727Z", + "1.0.1": "2011-12-13T23:45:04.622Z", + "1.0.2": "2011-12-14T00:04:42.441Z" + }, + "author": { + "name": "Trent Mick", + "email": "trentm@gmail.com", + "url": "http://trentm.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/trentm/node-ldapauth.git" + }, + "versions": { + "1.0.0": "http://registry.npmjs.org/ldapauth/1.0.0", + "1.0.1": "http://registry.npmjs.org/ldapauth/1.0.1", + "1.0.2": "http://registry.npmjs.org/ldapauth/1.0.2" + }, + "dist": { + "1.0.0": { + "shasum": "9a947f207e96c51847493e595ea9e308f1dbcf79", + "tarball": "http://registry.npmjs.org/ldapauth/-/ldapauth-1.0.0.tgz" + }, + "1.0.1": { + "shasum": "a1fc92a47ecf279a5d2d1665988f373834264d19", + "tarball": "http://registry.npmjs.org/ldapauth/-/ldapauth-1.0.1.tgz" + }, + "1.0.2": { + "shasum": "800258e3ec74ea961d07b9d0df555c07d9079078", + "tarball": "http://registry.npmjs.org/ldapauth/-/ldapauth-1.0.2.tgz" + } + }, + "keywords": [ + "authenticate", + "ldap" + ], + "url": "http://registry.npmjs.org/ldapauth/" + }, + "twit": { + "name": "twit", + "description": "Twitter API client for node (REST & Streaming)", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "#twit\n\nTwitter API client for node\n\nSupports both the **REST** and **Streaming** API.\n\n##Usage:\n\n```javascript\nvar Twit = require('twit');\n\nvar T = new Twit({\n consumer_key: '...'\n , consumer_secret: '...'\n , access_token: '...'\n , access_token_secret: '...'\n});\n\n//\n// tweet 'hello world!' using the REST API\n//\nT.REST\n .post('statuses/update.json')\n .params({ status: 'hello world!' })\n .end(function(err, reply) {\n // ...\n });\n \n//\n// search twitter for all tweets containing the word 'banana' since Nov. 11, 2011\n//\nT.REST\n .get('search.json')\n .params({ q: 'banana', since: '2011-11-11' })\n .end(function(err, reply) {\n // ...\n });\n \n//\n// Filter the Twitter stream of public statuses by the word 'mango'. \n//\n\nvar mangos = T.publicStream\n .get('statuses/filter.json')\n .params({ track: 'mango' })\n .persist();\n \n \nmangos.on('tweet', function(tweet) {\n // ...\n});\n\n```\n\n##GET and POST to:\n\n* **REST** - REST endpoints (https://dev.twitter.com/docs/api)\n* **publicStream** - public stream endpoints (https://dev.twitter.com/docs/streaming-api/methods)\n* **userStream** - user stream endpoints (https://dev.twitter.com/docs/streaming-api/user-streams) \n* **siteStream** - site stream endpoints (https://dev.twitter.com/docs/streaming-api/site-streams)\n\n\n\n\nThen, optionally pass in params to the request with `.params()`, and finish the request:\n\n\n#Finishing the request\n\n* `.end(function(err, reply) {})` makes the http request and calls the (optional) callback when the reply is received. \n* `.persist()` keeps the connection alive and allows you to listen on the following 4 events:\n\n * `tweet` status (tweet)\n * `delete` status (tweet) deletion message\n * `limit` limitation message \n * `scrub_geo` location deletion message\n\n\nHint: Use `.persist()` on the stream endpoints (`publicStream`, `userstream`, `siteStream`)\n\n#Installing\n\n```\nnpm install twit\n\n```\n\n\nGo here to create an app and get OAuth credentials (if you haven't already): https://dev.twitter.com/apps/new\n\n## License \n\n(The MIT License)\n\nCopyright (c) by Tolga Tezel \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.", + "maintainers": [ + { + "name": "ttezel", + "email": "tolgatezel11@gmail.com" + } + ], + "time": { + "modified": "2011-12-14T01:02:52.411Z", + "created": "2011-12-14T01:02:50.945Z", + "0.1.0": "2011-12-14T01:02:52.411Z" + }, + "author": { + "name": "Tolga Tezel" + }, + "repository": { + "type": "git", + "url": "git://github.com/ttezel/twit.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/twit/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "56f8ce6a337e61dcbd8074de2e27480dc418547e", + "tarball": "http://registry.npmjs.org/twit/-/twit-0.1.0.tgz" + } + }, + "keywords": [ + "twitter", + "rest", + "stream", + "oauth" + ], + "url": "http://registry.npmjs.org/twit/" + }, + "linx-util": { + "name": "linx-util", + "description": "Utility toolbox to speed up your web application development", + "dist-tags": { + "latest": "0.0.3" + }, + "readme": "yobiutil\n========\n\nUtility toolbox to speed up your web application development", + "maintainers": [ + { + "name": "johnnywengluu", + "email": "johnny.weng.luu@gmail.com" + } + ], + "time": { + "modified": "2011-12-14T01:51:50.745Z", + "created": "2011-12-11T16:29:28.886Z", + "0.0.1": "2011-12-11T16:29:32.789Z", + "0.0.2": "2011-12-11T16:40:56.554Z", + "0.0.3": "2011-12-14T01:51:50.745Z" + }, + "author": { + "name": "Johnny Weng Luu" + }, + "repository": { + "type": "git", + "url": "git@github.com/johnnywengluu/linx-util.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/linx-util/0.0.1", + "0.0.2": "http://registry.npmjs.org/linx-util/0.0.2", + "0.0.3": "http://registry.npmjs.org/linx-util/0.0.3" + }, + "dist": { + "0.0.1": { + "shasum": "104be970e2c7599ca72cf9a54c50363a51071bbd", + "tarball": "http://registry.npmjs.org/linx-util/-/linx-util-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "bf653c5a1a97e7a008fe5012e86d803cb3976a54", + "tarball": "http://registry.npmjs.org/linx-util/-/linx-util-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "629132789f75ebcb3b92c689c5eccfaaefd53e36", + "tarball": "http://registry.npmjs.org/linx-util/-/linx-util-0.0.3.tgz" + } + }, + "url": "http://registry.npmjs.org/linx-util/" + }, + "import": { + "name": "import", + "description": "File importing for CoffeeScript and JavaScript", + "dist-tags": { + "latest": "0.2.1" + }, + "readme": "File Importing for CoffeeScript and JavaScript\n==============================================\n\nEver wanted to have an `#import` statement in CoffeeScript or JavaScript that works like `#include` in other languages?\nWell now you have one! Importing files and concatenating them in the right place is now as easy as:\n\n #import \"name\"\n #import \"another.coffee\"\n #import \"somefile.js\"\n \n # some code using the imported files here...\n \nIn JavaScript, the `//import` directive is used instead of `#import`. \n\n## Features\n\n* File extensions are optional and will be automatically resolved if not included. \n* Files will only be included once in the resulting code, regardless of how many times a file is imported.\n* If used as a server, only modified files will be recompiled on subsequent requests.\n* All imported files are placed at the top of the file requesting the import.\n* Compiling CoffeeScript and JavaScript source files are included out of the box. You can add more \n to the `compile.extensions` object.\n\n## Server example\n\n http = require 'http'\n compile = require 'import'\n\n server = http.createServer (req, res) ->\n res.writeHead(200)\n \n compile 'mainfile.coffee', (err, code) ->\n if err\n res.end 'throw \"' + (err).replace(/\"/g, \"\\\\\\\"\") + '\"'\n else\n res.end code\n \n server.listen(8080)\n\nCurrently, importing CoffeeScript and JavaScript files are supported but you can extend that to other languages that compile to\nJavaScript by adding an entry to the `compile.extensions` object.\n\n compile.extensions['.lua'] = (code) -> lua.compile(code)\n \n## License\n\nThe `import` module is licensed under the MIT license.", + "maintainers": [ + { + "name": "devongovett", + "email": "devongovett@gmail.com" + } + ], + "time": { + "modified": "2011-12-14T02:12:16.743Z", + "created": "2011-12-12T18:41:17.869Z", + "0.1.0": "2011-12-12T18:41:18.825Z", + "0.2.0": "2011-12-14T02:09:08.624Z", + "0.2.1": "2011-12-14T02:12:16.743Z" + }, + "author": { + "name": "Devon Govett", + "email": "devongovett@gmail.com", + "url": "http://badassjs.com/" + }, + "repository": { + "type": "git", + "url": "git://github.com/devongovett/import.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/import/0.1.0", + "0.2.0": "http://registry.npmjs.org/import/0.2.0", + "0.2.1": "http://registry.npmjs.org/import/0.2.1" + }, + "dist": { + "0.1.0": { + "shasum": "3758285312e7a2c3332ed48f619383769d88cfe4", + "tarball": "http://registry.npmjs.org/import/-/import-0.1.0.tgz" + }, + "0.2.0": { + "shasum": "505592d55f7af19baf2ca47c3216accdde5a77bc", + "tarball": "http://registry.npmjs.org/import/-/import-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "c91b3fd0f8c5ed3d4b932aa8bcb2805cf7594232", + "tarball": "http://registry.npmjs.org/import/-/import-0.2.1.tgz" + } + }, + "url": "http://registry.npmjs.org/import/" + }, + "ws-proxy": { + "name": "ws-proxy", + "description": "WebSocket proxy using super fast `ws` module", + "dist-tags": { + "latest": "0.0.1" + }, + "readme": "# ws-proxy\nCopyright (C) 2011 by Maciej Małecki \nMIT License (see LICENSE file)\n\nWebSocket proxy using super fast [`ws`](https://github.com/einaros/ws) module.\n\n## Installation\n\n npm install ws-proxy\n\n## Usage\n### Command line\n\n ws-proxy --port 9000 --target ws://localhost:8000\n\nIt will start proxy at port `9000`, proxying messages to `ws://localhost:8000`.\n\n\n", + "maintainers": [ + { + "name": "mmalecki", + "email": "maciej.malecki@notimplemented.org" + } + ], + "time": { + "modified": "2011-12-14T02:37:54.745Z", + "created": "2011-12-14T02:37:52.787Z", + "0.0.1": "2011-12-14T02:37:54.745Z" + }, + "author": { + "name": "Maciej Małecki", + "email": "maciej.malecki@notimplemented.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/mmalecki/node-ws-proxy.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ws-proxy/0.0.1" + }, + "dist": { + "0.0.1": { + "shasum": "6ad613348fcc2df4910007b24be6d2a7877a4f76", + "tarball": "http://registry.npmjs.org/ws-proxy/-/ws-proxy-0.0.1.tgz" + } + }, + "url": "http://registry.npmjs.org/ws-proxy/" + }, + "easejs": { + "name": "easejs", + "description": "A Classical Object-Oriented Framework for JavaScript", + "dist-tags": { + "latest": "0.1.0-pre" + }, + "readme": "# ease.js\n\nease.js is a collection of CommonJS modules intended to \"ease\" the transition\ninto JavaScript from other Object-Oriented languages. It provides an intuitive\nmeans of achieving classical inheritance and has planned support traits/mixins.\n\nCurrent support includes:\n\n* Simple and intuitive class definitions\n* Classical inheritance\n* Abstract classes and methods\n* Interfaces\n* Visibility (public, protected and private members)\n* Static and constant members\n\nWhile the current focus of the project is Object-Oriented design, it is likely\nthat ease.js will expand to other paradigms in the future.\n\n**This project is still under development. Please read the manual for more\ninformation.**\n\n**Release/npm Note:** The first release of ease.js (and subsequently,\navailability on npm) will come once the features are solidified and committed\nto. This is to ensure adoption is not stifled by design alterations. Version\n0.1.0 release is near; please see the\n[v0.1.0 roadmap](http://easejs.org/bugs/roadmap_page.php?version_id=1) for\nout-standing issues.\n\n## Full Documentation\nFull documentation is available at the following URL:\n\nhttp://easejs.org/manual/ (Multiple Pages)\n\nhttp://easejs.org/manual.html (Single Page)\n\n## Bug Reports / Feature Requests\nPlease direct bug reports and feature requests to the bug tracker located at\nhttp://easejs.org/bugs/\n\n## Why ease.js?\nThere are already a number of libraries/frameworks that permit basic classical\nObject-Oriented development, so why ease.js? While many of the existing\nsolutions certainly provide viable solutions, they are largely incomplete. Until\nthe appearance of ECMAScript 5, many of the features enjoyed by classical OO\ndevelopers were elusive to JavaScript. The aim of this project is to provide an\nintuitive framework in a CommonJS format which also addresses ES5 issues and is\nan all-inclusive solution to OO techniques.\n\nECMAScript reserves certain keywords that hint at classical OO in future\nversions, but said features are uncertain. ease.js will satisfy the classical OO\nitch until the time where ECMAScript itself includes it, at which time ease.js\nwill still be useful for providing a transition in order to support older\nbrowsers. ease.js may also be useful in the future to augment the feature set of\nwhatever native ECMAScript implementation is decided upon.\n\n### Why Classical OOP in JavaScript?\nease.js was created (historically) for a number of reasons:\n\n* To \"ease\" Object-Oriented developers into JavaScript by providing a familiar\n environment.\n* To provide the maintenance and development benefits of classical OOP.\n* To provide features missing from the language, such as proper encapsulation\n through private/protected members, interfaces, traits, intuitive inheritance,\n etc.\n* To encapsulate the hacks commonly used to perform the above tasks.\n\nMany JS purists believe that classical Object-Oriented programming should be\nleft out of the language and one should stick strictly to prototypal\ndevelopment. While the two are related (both Object-Oriented), they can be\napplied to different problem domains in order to achieve results that are more\nnatural or intuitive to developers. ease.js works seamlessly with existing\nprototypes, allowing the developer to choose whether or not they want to use\n\"classes\".\n\n\n## How to Use\nPlease note that, as the project is under active development, the API may change\nuntil the first release.\n\nease.js uses the [CommonJS](http://commonjs.org) module format. In the\nexamples below, [Node.js](http://nodejs.org) is used.\n\n### Defining Classes\nThe constructor is provided as the `__construct()` method (influenced by\n[PHP](http://php.net)).\n\n````javascript\n var Class = require( 'easejs' ).Class;\n\n // anonymous class definition\n var Dog = Class(\n {\n 'private _name': '',\n\n 'public __construct': function( name )\n {\n this._name = name;\n },\n\n 'public bark': function()\n {\n console.log( 'Woof!' );\n },\n\n 'public getName': function()\n {\n return this._name;\n }\n });\n````\n\nThe above creates an anonymous class and stores it in the variable ``Dog``. You\nhave the option of naming class in order to provide more useful error messages\nand toString() output:\n\n````javascript\n var Dog = Class( 'Dog',\n {\n // ...\n });\n````\n\n### Extending Classes\nClasses may inherit from one-another. If the supertype was created using\n`Class.extend()`, a convenience `extend()` method has been added to it. Classes\nthat were not created via `Class.extend()` can still be extended by passing it\nas the first argument to `Class.extend()`.\n\nMultiple inheritance is not supported. ease.js is very generous with the options\nit provides to developers as alternatives, so pick whichever flavor your are\nmost comfortable with: interfaces, traits or mixins. Multiple inheritance will\n*not* be added in the future due to problems which have been addressed by\ninterfaces and traits.\n\n**Note that traits and mixins are not yet available. They are\nplanned features and will be available in the future.**\n\n````javascript\n var SubFoo = Foo.extend(\n {\n 'public anotherMethod': function()\n {\n },\n });\n\n // if Foo was not created via Class.extend(), this option may be used (has\n // the same effect as above, even if Foo was created using Class.extend())\n var SubFoo = Class.extend( Foo,\n {\n 'public anotherMethod': function()\n {\n },\n });\n````\n\n### Abstract Classes\nAbstract classes require that their subtypes implement certain methods. They\ncannot be instantiated. Classes are considered to be abstract if they contain\none or more abstract methods and are declared using `AbstractClass` rather than\n`Class`. If a class contains abstract methods but is not declared abstract, an\nerror will result. Similarily, if a class is declared to be abstract and\ncontains *no* abstract methods, an error will be thrown.\n\n````javascript\n var AbstractClass = require( 'easejs' ).AbstractClass;\n\n var AbstractFoo = AbstractClass(\n {\n // a function may be provided if you wish the subtypes to implement a\n // certain number of arguments\n 'abstract public fooBar': [ 'arg' ],\n\n // alternatively, you needn't supply implementation details\n 'abstract public fooBar2': [],\n });\n````\n\nIf the abstract method provides implementation details (as shown by\n`fooBar()`, subtypes must implement at least that many arguments or an exception\nwill be thrown. This ensures consistency between supertypes and their subtypes.\n\nAbstract classes can be extended from just as an other class. In order for its\nsubtype to be instantiated, it must provide concrete implementations of each\nabstract method. If any methods are left as abstract, then the subtype too will\nbe considered abstract and must be declared as such.\n\n````javascript\n // can be instantiated because concrete methods are supplied for both\n // abstract methods\n var ConcreteFoo = Class.extend( AbstractFoo,\n {\n 'public fooBar': function( arg )\n {\n },\n\n 'public fooBar2': function()\n {\n },\n });\n\n // cannot be instantiated because one abstract method remains\n var StillAbstractFoo = AbstractClass.extend( AbstractFoo,\n {\n 'public fooBar': function( arg )\n {\n },\n });\n````\n\n### Interfaces\nInterfaces can be declared in a very similar manner to classes. All members of\nan interface are implicitly abstract.\n\n````javascript\n var MyType = Interface(\n {\n 'public foo': []\n });\n````\n\nTo implement an interface, use the `implement()` class method:\n\n````javascript\n var ConcreteType = Class.implement( MyType ).extend(\n {\n 'public foo': function() {}\n });\n````\n\nNote that, if a concrete implementation for each method is not provided, the\nimplementing type must be declared abstract.\n\n\n## Use of Reserved Words\nThough JavaScript doesn't currently implement classes, interfaces, etc, it does\nreserve the keywords. In an effort to ensure that ease.js will not clash, the\nfollowing precautions are taken:\n\n* `Class` is used with a capital 'C'\n* `Interface` is used with a capital 'I'\n* Reserved keywords are quoted when used (e.g. in property strings)\n\n", + "maintainers": [ + { + "name": "mikegerwitz", + "email": "mike@mikegerwitz.com" + } + ], + "time": { + "modified": "2011-12-14T03:06:15.779Z", + "created": "2011-12-14T03:06:14.945Z", + "0.1.0-pre": "2011-12-14T03:06:15.779Z" + }, + "author": { + "name": "Mike Gerwitz", + "email": "mike@mikegerwitz.com", + "url": "http://mikegerwitz.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mikegerwitz/easejs.git" + }, + "versions": { + "0.1.0-pre": "http://registry.npmjs.org/easejs/0.1.0-pre" + }, + "dist": { + "0.1.0-pre": { + "shasum": "cde6bdab6089531394ed8576d26d2176d118a750", + "tarball": "http://registry.npmjs.org/easejs/-/easejs-0.1.0-pre.tgz" + } + }, + "url": "http://registry.npmjs.org/easejs/" + }, + "ender-pubsub-beta": { + "name": "ender-pubsub-beta", + "description": "A beta module for pubsub ender style", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "natehunzaker", + "email": "nate.hunzaker@gmail.com" + } + ], + "time": { + "modified": "2011-12-14T03:57:12.361Z", + "created": "2011-12-14T03:37:10.151Z", + "0.0.1": "2011-12-14T03:37:10.738Z", + "0.0.2": "2011-12-14T03:40:35.169Z", + "0.0.3": "2011-12-14T03:42:52.902Z", + "0.0.4": "2011-12-14T03:55:09.089Z", + "0.0.5": "2011-12-14T03:57:12.361Z" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/ender-pubsub-beta/0.0.1", + "0.0.2": "http://registry.npmjs.org/ender-pubsub-beta/0.0.2", + "0.0.3": "http://registry.npmjs.org/ender-pubsub-beta/0.0.3", + "0.0.4": "http://registry.npmjs.org/ender-pubsub-beta/0.0.4", + "0.0.5": "http://registry.npmjs.org/ender-pubsub-beta/0.0.5" + }, + "dist": { + "0.0.1": { + "shasum": "18a6fa2fd71b1c036172eaf44c50e5d0c22542ee", + "tarball": "http://registry.npmjs.org/ender-pubsub-beta/-/ender-pubsub-beta-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "84e51d4fd0764ebe74e692e0367a273945d8b8f0", + "tarball": "http://registry.npmjs.org/ender-pubsub-beta/-/ender-pubsub-beta-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "c73cf77f031181f4b8f634936d5e14416ac743c6", + "tarball": "http://registry.npmjs.org/ender-pubsub-beta/-/ender-pubsub-beta-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "45e77a89801773776f267886fb3d86b51cf6a7ee", + "tarball": "http://registry.npmjs.org/ender-pubsub-beta/-/ender-pubsub-beta-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "c8f395d37f04792eeef09976ddf25ee912972dfa", + "tarball": "http://registry.npmjs.org/ender-pubsub-beta/-/ender-pubsub-beta-0.0.5.tgz" + } + }, + "url": "http://registry.npmjs.org/ender-pubsub-beta/" + }, + "traversty": { + "name": "traversty", + "description": "Library agnostic utility for traversing the DOM", + "dist-tags": { + "latest": "0.0.2" + }, + "readme": "Traversty — headache-free DOM traversal\n=============================================\n\nTraversty is a library-agnostic DOM traversal utility giving you 4 flexible methods for moving around the DOM.\n\nInspired by [Prototype](http://prototypejs.org)'s excelent \"DOM traversal toolkit\", you get `up()`, `down()`, `next()` and `previous()` with optional `selector` and `index` arguments, all in a multi-element environment (jQuery-like rather than Prototype's single-element implementation).\n\nTraversty is designed primarily to be integrated in an [Ender](http://ender.no.de/) build, to augment what's already available in [Bonzo](https://github.com/ded/bonzo) but can just as easily be used as a stand-alone utility. \n\nExample usage\n-------------\n\n*This code is used Traversty Ender integration tests and depends on Bonzo*\n\n```js\n$('#root > ul') // can match multiple elements\n .down(0).css('color', 'red')\n .next('li', 1).css('color', 'green')\n .next().down('li', 2).css('color', 'blue')\n .next().down().css('color', 'yellow')\n .up(2).next().css('color', 'purple');\n```\n\n\nAPI\n---\n\n### Main: `traversty(elements || selector)` ###\n\nGives you a new Traversty instance containing the DOM elements you provide, allowing you to call any of the following methods. You can give a single DOM element or an array of DOM elements. If you provide a string argument it will be used as a selector to either query the DOM via the browser's native `querySelectorAll()` implementation or use a selector engine which you provide (see below).\n\nIndividual elements are available with array accessors, e.g. `traversty(document.body)[0] // → document.body` \n\nWhen included in an Ender build, `$(elements || selector)` does the same thing.\n\n### Next: `traversty(elements).next([selector = \"*\"[, index = 0]])` ###\n\n * `selector` *(String)* is an optional CSS selector (defaults to `'*'`, i.e. match all elements)\n * `index` *(Number)* is an optional array-ish index argument (defaults to `0`, i.e. first match)\n\nReturns a new Traversty instance wrapped around the resulting DOM elements. You will get elements that match the given *selector* (or '*') starting from the *nextSibling* of the starting element(s), all the way across to the last *nextSibling*.\n\nIf no `index` or `selector` is given then you get just the *nextSibling*s of the elements.\n\nIf just an `index` is provided then you'll get the `index+1` *nextSibling*s of the element(s). i.e. `index` is 0-based, like arrays, 0 is *nextSibling* and 1 is *nextSibling.nextSibling*, unless you provide a `selector` of course, in which case it'll skip over non-matching elements.\n\nIf just a `selector` is provided then no `index` will be assumed, you'll get **all** matching *nextSibling* elements.\n\n#### Examples ####\n\n```js\ntraversty('li:first-child').next(); // → returns the second `
  • ` of every list in the document\ntraversty('li.allstarts').next('li', 1); // → returns the `nextSibling` of the `nextSibling` of the starting elements\ntraversty('li:first-child').next('li'); // → returns all `
  • ` elements, except for the first-children of every lits in the document\n```\n\n\n### Previous: `traversty(elements).previous([selector = \"*\"[, index = 0]])` ###\n\n * `selector` *(String)* is an optional CSS selector (defaults to `'*'`, i.e. match all elements)\n * `index` *(Number)* is an optional array-ish index argument (defaults to `0`, i.e. first match)\n\nExactly the same as `.next()` except it works on *previousSibling*, so you move backwards amongst sibling elements.\n\n#### Examples ####\n\n```js\ntraversty('li:nth-child(20)').previous(); // → returns 19th child of the every list in the document (where it exists)\ntraversty('li.allstarts').previous('li', 1); // → returns the `previousSibling` of the `previousSibling` of the starting element\ntraversty('li:nth-child(20)').previous('.interesting'); // → returns all `
  • ` elements with class \"interesting\" up to the 19th child of every list in the document where there are at least 20 children.\n```\n\n### Up: `traversty(elements).up([selector = \"*\"[, index = 0]])` ###\n\n * `selector` *(String)* is an optional CSS selector (defaults to `'*'`, i.e. match all elements)\n * `index` *(Number)* is an optional array-ish index argument (defaults to `0`, i.e. first match)\n\nSimilar to `next()` and `previous()` except that it works on *parentNode*s and will continue all the up to the document root depending on what you're asking for.\n\nIf no `index` or `selector` is given then you get just the `parentNode*s of the elements.\n\nIf just an `index` is provided then you'll get the `index+1` *parentNode*s of the element. i.e. `index` is 0-based, like arrays, 0 is *parentNode* and 1 is *parentNode.parentNode*, unless you provide a `selector` of course, in which case it'll skip over non-matching elements.\n\nIf just a `selector` is provided then no `index` will be assumed, you'll get **all** matching ancestor elements.\n\n\n#### Examples ####\n\n```js\ntraversty('li#start').up(); // → returns the `
      ` parent element\ntraversty('li.allstarts').up('ul', 1); // → returns the grandparent `
        ` elements if the start elements are nested at two levels\ntraversty('li.allstarts').up('ul'); // → returns all ancestor `
          ` elements, no matter how deep the nesting\n```\n\n### Down: `traversty(elements).down([selector = \"*\"[, index = 0]])` ###\n\n * `selector` *(String)* is an optional CSS selector (defaults to `'*'`, i.e. match all elements)\n * `index` *(Number)* is an optional array-ish index argument (defaults to `0`, i.e. first match)\n\nWhile `down()` is very similar to the other methods, it's perhaps best to think of it as what you might get with a `find()` method from a selector engine.\n\n`down()` works on elements **in document-order**, so it operates on child elements and children of children but it also moves through child-siblings on the way to children of children.\n\nThe following fragment should illustrate the `index`ing you get when you use `down()`:\n\n```html\n
            \n
          • fisrt
          • \n
          • second
          • \n
          • third \n
              \n
            • i
            • \n
            • ii
            • \n
            • iii
            • \n
            \n
          \n
        • fourth
        • \n
        \n```\n\nSo\n\n```js\ntraversty('#root').down(5) // → will give you `
      • ii
      • `\ntraversty('#root').down('li', 5) // → will give you `
      • i
      • ` because the `
          ` is ignored:w\n```\n\nOf course `down()` works on multiple elements simultaneously just like the other methods.\n\n\nThings to note\n--------------\n\n * Traversty always does a **uniqueness** check on its collection of elements so you should never end up with duplicates. If you did a `traversty('body,ul').down('li')` you would still only get a unique list of all *
        • * elements in the document.\n\n * Traversty ignores text and comment nodes and should only ever operate on the DOM element nodes you would expect (i.e. with *nodeType==1*).\n\n * Traversty currently orders results (for each element in the starting list) in document-order, so `previous('*')` will give you results starting from the *firstChild* of the parent element up to the *previousSibling* of the starting element, rather than starting with the *previousSibling* and listing backwards (this doesn't impact on indexing, which still works backwards, only the order of result lists). This may change, I haven't decided yet!\n\n### Supported browsers ###\n\nTraversty is tested with IE6+, Firefox 3+, Safari 4+, Opera current and Chrome current. You'll need a supported selector engine to operate on some of these older browsers. See below.\n\n\nSelector engines\n----------------\n\nTraversty should work out-of-the-box on modern browsers as it leverages native `querySelectorAll()` and `matchesSelector()` where they exist. This means that you should be able to use Traversty without a selector engine on most smartphone browsers without any problems.\n\nUnfortunately, this doesn't work with older browsers, particularly IE8 and below. While IE8 has a CSS2-compliant `querySelectorAll()`, it doesn't have a `matchesSelector()` which Traversty makes heavy use of.\n\n### `traversty.setSelectorEngine(engine)` ###\n\nTraversty allows you to plug in your favourite selector engine so it can work on whatever browser your engine supports. Out of the box, Traversty is tested to support [Qwery](https://github.com/ded/qwery), [Sel](https://github.com/amccollum/sel), [Sizzle](https://github.com/jquery/sizzle) and [NWMatcher](https://github.com/dperini/nwmatcher).\n\nTraversty uses *feature detection* to figure out how to use your selector engine, it tries to find the method used to *find* elements given a element root and the method used to determine if an element *matches* a given selector. If it can't figure out how to use your selector engine then you just need to pretend that it works like one of the supported ones and it should be OK.\n\nFor example:\n\n```js\ntraversty.setSelectorEngine({\n select: function(selector, root) {\n return MyEngine(selector, root);\n }\n , is: function(selector, root) {\n return MyEngine(root).isTheSameAs(selector);\n }\n});\n```\n\nTraversty will also do some trickery to make up for deficiencies in some selector engines, such as out-of-order results when selecting on groups ('a,b').\n\nIf you have a new selector engine that you want Traversty to support then either let me know or fork, patch and submit.\n\n\nEnder integration\n-----------------\n\nTraversty is designed to be inserted into an Ender build. It's in NPM so simply include it in your build command, something like: `ender build sel bonzo traversty`\n\nTraversty will attempt to use whatever selector engine you've included in your Ender build.\n\n### What about Bonzo? ###\n\nTraversty is designed to add to the goodness you get in Bonzo, although Bonzo isn't a dependency. Bonzo has `next()` and `previous()` already and it is intended that Traversty replace these in your ender build. Argument-less they should do exactly the same thing but Traversty adds the extra arguments for greater flexibility. If you are using Bonzo in Ender along with Traversty then you should make sure Traversty is included *after* Bonzo. Unfortunately, [Ender doesn't guarantee order](https://github.com/ender-js/Ender/issues/63) so you may have to fiddle a bit. \n\n\nContributing\n------------\n\nAwesome! Just do it, fork and submit your pull requests and they will be promptly considered.\n\nI'd also love it if you could contribute tests for bugs you find or features you add.\n\nWhile I'm not a coding-style nazi but I do like consistency. I've chosen a particular style for this project (not my usual style, I have a Java background, I'm experimenting with style!) and I'd prefer to keep it consistent.\n\n### Tests ###\n\nTraversty uses [Buster](http://busterjs.org) for unit testing. It works by running a server for you to attach browsers to so you can submit all tests to be run in all of the attached browsers right from the command-line.\n\nSimply do this:\n\n```\n$ sudo npm install buster -g # install Buster if you haven't already got it\n$ make server # will start the Buster server for you on port 1111.\n$ # point a bunch of browsers to that server, including older versions of IE (start your VMs!)\n$ make test # will submit the tests to the Buster server to be run on those browsers\n```\n\nYou'll see a nice output with the results of the tests as they happen.\n\n### Where are your semi-colons? ###\n\nOh, you noticed that? Just think of this as my [The Cat in the Hat](http://en.wikipedia.org/wiki/The_Cat_in_the_Hat) project. It's an experiment in how difficult it is to write valid JavaScript devoid of semi-colons. There's only a couple of awkward constructions that could do with a `for` loop, but I don't think it's a big deal. \n\n\nCredits\n-------\n\n * Firstly, much credit should go to the awesome Prototype guys and their excellent API that I've ripped off.\n * Thanks to [@ded](http://github.com/ded) and [@fat](http://github.com/fat) for Ender, particularly @ded for Bonzo, upon which Traversty is designed to build.\n\nThe bulk of the work is done by me, Rod Vagg, [@rvagg](http://twitter.com/rvagg)\n\nLicence\n-------\n\nBlah, Blah, MIT\n", + "maintainers": [ + { + "name": "rvagg", + "email": "rod@vagg.org" + } + ], + "time": { + "modified": "2011-12-14T04:05:01.164Z", + "created": "2011-12-13T09:26:14.628Z", + "0.0.1": "2011-12-13T09:27:00.372Z", + "0.0.2": "2011-12-14T04:05:01.164Z" + }, + "author": { + "name": "Rod Vagg", + "email": "rod@vagg.org" + }, + "repository": { + "type": "git", + "url": "git://github.com/rvagg/traversty.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/traversty/0.0.1", + "0.0.2": "http://registry.npmjs.org/traversty/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "4723b41d883008e4852d80cdf536d25deeb46158", + "tarball": "http://registry.npmjs.org/traversty/-/traversty-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "d799ed4d9d806ea1b5db8de883c07b59e80ffe4d", + "tarball": "http://registry.npmjs.org/traversty/-/traversty-0.0.2.tgz" + } + }, + "keywords": [ + "ender", + "dom", + "nodes" + ], + "url": "http://registry.npmjs.org/traversty/" + }, + "geckoboard": { + "name": "geckoboard", + "description": "Node.js wrapper for creating Geckoboard widgets.", + "dist-tags": { + "latest": "0.0.9" + }, + "readme": "This module makes it slightly easier to define api widgets for geckoboard\n\nInstall\n=======\n\n npm install geckoboard\n\nBasic Usage\n===========\n\nCreate a GeckoBoard client and pass in an express instance:\n\n\n GeckoBoard = GeckoBoard.createClient({\n server: app,\n path: '/widget',\n key: 'asdf123'\n });\n\nand then define request handlers with `request`. Call the `respond` function with `error, data` to render your response to the API:\n\n GeckoBoard.request(\"live-users\", function(respond) {\n res = {item: [{\n text: \"\",\n \"value\" : 123\n }, {\n text: \"\",\n value: 238\n }]\n };\n\n respond(null, res);\n });", + "maintainers": [ + { + "name": "hebo", + "email": "doubletime@gmail.com" + } + ], + "time": { + "modified": "2011-12-14T04:54:39.082Z", + "created": "2011-12-11T22:06:47.549Z", + "0.0.2": "2011-12-11T22:06:48.766Z", + "0.0.3": "2011-12-11T22:52:04.017Z", + "0.0.4": "2011-12-14T03:49:10.293Z", + "0.0.5": "2011-12-14T04:05:12.162Z", + "0.0.6": "2011-12-14T04:19:22.417Z", + "0.0.7": "2011-12-14T04:23:53.690Z", + "0.0.9": "2011-12-14T04:54:39.082Z" + }, + "author": { + "name": "James Richard", + "email": "james@james-richard.com" + }, + "repository": { + "type": "git", + "url": "git@github.com:Cev/node-geckoboard.git" + }, + "versions": { + "0.0.2": "http://registry.npmjs.org/geckoboard/0.0.2", + "0.0.3": "http://registry.npmjs.org/geckoboard/0.0.3", + "0.0.4": "http://registry.npmjs.org/geckoboard/0.0.4", + "0.0.5": "http://registry.npmjs.org/geckoboard/0.0.5", + "0.0.6": "http://registry.npmjs.org/geckoboard/0.0.6", + "0.0.7": "http://registry.npmjs.org/geckoboard/0.0.7", + "0.0.9": "http://registry.npmjs.org/geckoboard/0.0.9" + }, + "dist": { + "0.0.2": { + "shasum": "d8d14b4329fc6a14b4fccad786069e1e4b8e0f91", + "tarball": "http://registry.npmjs.org/geckoboard/-/geckoboard-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "95d8e110026055efad8df9511a4d9528efa74228", + "tarball": "http://registry.npmjs.org/geckoboard/-/geckoboard-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "1767ef25ca4d4cd62125f37880fb9c7db78b6c3a", + "tarball": "http://registry.npmjs.org/geckoboard/-/geckoboard-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "2904baccd040ecdbf3bdee4da0a02c5d6425c65f", + "tarball": "http://registry.npmjs.org/geckoboard/-/geckoboard-0.0.5.tgz" + }, + "0.0.6": { + "shasum": "acca3c02cb2db64bf4e17fbfb9ad97f27f5584cb", + "tarball": "http://registry.npmjs.org/geckoboard/-/geckoboard-0.0.6.tgz" + }, + "0.0.7": { + "shasum": "2ca551ff0d15c332613fb78b0af5c72f439acb81", + "tarball": "http://registry.npmjs.org/geckoboard/-/geckoboard-0.0.7.tgz" + }, + "0.0.9": { + "shasum": "caefea096003842075c049bf0ba57b3210c3937d", + "tarball": "http://registry.npmjs.org/geckoboard/-/geckoboard-0.0.9.tgz" + } + }, + "url": "http://registry.npmjs.org/geckoboard/" + }, + "lozigo": { + "name": "lozigo", + "description": "Collect logs from a distributed network and parse them with connect-style middleware", + "dist-tags": { + "latest": "0.0.2" + }, + "readme": "", + "maintainers": [ + { + "name": "alexangelini", + "email": "alex@wavo.me" + } + ], + "time": { + "modified": "2011-12-14T05:42:11.550Z", + "created": "2011-12-13T04:25:31.800Z", + "0.0.1": "2011-12-13T04:25:32.207Z", + "0.0.2": "2011-12-14T05:42:11.550Z" + }, + "author": { + "name": "Alex Angelini", + "email": "alex.louis.angelini@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/SoapyIllusions/lozigo.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/lozigo/0.0.1", + "0.0.2": "http://registry.npmjs.org/lozigo/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "9d716f59c4711d7e9985fd5e76378bc6d4e34bba", + "tarball": "http://registry.npmjs.org/lozigo/-/lozigo-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "c502035847549cdbc497a3130e8b8dee7c290fd8", + "tarball": "http://registry.npmjs.org/lozigo/-/lozigo-0.0.2.tgz" + } + }, + "keywords": [ + "log", + "parser", + "distributed", + "connect", + "middleware" + ], + "url": "http://registry.npmjs.org/lozigo/" + }, + "defactor": { + "name": "defactor", + "description": "A deferred factory object", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "# Defector - A Deferred Factory Object\n\nDefector allows creating deferred objects with a many-to-many relationship between queues and resolvers.\nBy creating this type of event map there shouldn't be a need for callback insanity.\nHere's an example:\n\n```javascript\nvar dobj = defactor();\n\ndobj.add( 'done', 'resolve' )\n\t.add( 'fail', 'reject' )\n\t.add( 'always', 'resolve' )\n\t.add( 'always', 'reject' );\n\nvar defer = dobj.create();\n\ndefer.done(function() {\n\t\tconsole.log( 'done' );\n\t})\n\t.fail(function() {\n\t\tconsole.log( 'fail' );\n\t})\n\t.always(function() {\n\t\tconsole.log( 'always' );\n\t});\n\ndefer.resolve(); // LOG: \"done\"; \"always\"\n```\n\n## Roadmap:\n\n* add the `promise()` method to each deferred\n* allow `addWith()` to create queue/resolver pairs that accept a new context\n* `create()` should return an uninstantiated deferred\n* add `always()` method to create a queue that is always fired\n* add `then()` that accepts two queues and resolvers\n\n", + "maintainers": [ + { + "name": "trev.norris", + "email": "trev.norris@gmail.com" + } + ], + "time": { + "modified": "2011-12-14T05:51:33.516Z", + "created": "2011-12-09T19:49:22.558Z", + "0.0.1": "2011-12-09T19:49:22.970Z", + "0.0.2": "2011-12-09T20:37:44.511Z", + "0.0.3": "2011-12-09T21:39:10.655Z", + "0.0.4": "2011-12-10T04:28:19.146Z", + "0.0.5": "2011-12-12T19:14:27.269Z", + "0.1.0": "2011-12-14T05:51:33.516Z" + }, + "author": { + "name": "Trevor Norris", + "email": "trev.norris@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/trevnorris/defactor.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/defactor/0.0.1", + "0.0.2": "http://registry.npmjs.org/defactor/0.0.2", + "0.0.3": "http://registry.npmjs.org/defactor/0.0.3", + "0.0.4": "http://registry.npmjs.org/defactor/0.0.4", + "0.0.5": "http://registry.npmjs.org/defactor/0.0.5", + "0.1.0": "http://registry.npmjs.org/defactor/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "87886e1971822459f12d32a16b21aa50c501cb28", + "tarball": "http://registry.npmjs.org/defactor/-/defactor-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "9bcd13b2b7f232f7652ef3cd4c5bb3b0077a19b7", + "tarball": "http://registry.npmjs.org/defactor/-/defactor-0.0.2.tgz" + }, + "0.0.3": { + "shasum": "fd362b4a07b677f6adf24fe84bc77903fae1316b", + "tarball": "http://registry.npmjs.org/defactor/-/defactor-0.0.3.tgz" + }, + "0.0.4": { + "shasum": "235c4d1d7a284c1a89f39dc7ca1991bca315a2d4", + "tarball": "http://registry.npmjs.org/defactor/-/defactor-0.0.4.tgz" + }, + "0.0.5": { + "shasum": "8222792ef7ca959c7dfb314e4797608aed1fa8b7", + "tarball": "http://registry.npmjs.org/defactor/-/defactor-0.0.5.tgz" + }, + "0.1.0": { + "shasum": "ca3c487d19bb715bb12c76ee9c2690ccad5365d8", + "tarball": "http://registry.npmjs.org/defactor/-/defactor-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/defactor/" + }, + "multimethod": { + "name": "multimethod", + "description": "Multimethods for JavaScript", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "# Motivation\n\nMultimethods are a functional programming control structure for dispatching \nfunction calls with user-defined criteria that can be changed at run time.\nInspired by clojure's multimethods, multimethod.js provides an alternative to\nclassical, prototype-chain based polymorphism.\n\n# Usage\n\n## The Basics\n\nA `multimethod` is instantiated with the `multimethod` function.\n\n var stopLightColor = multimethod();\n \nA `multimethod` has methods. A `method` is has two parts, its match value\nand its implementation function. Methods are added using `when`.\n\n stopLightColor.when(\"go\", function() { return \"green\"; })\n .when(\"stop\", function() { return \"red\"; });\n\nYou can call a `multimethod` just like any other function.\n\n var goColor = stopLightColor(\"go\");\n console.log(goColor); // prints \"green\"\n\nWhen no method matches a `multimethod` it can take action with a `default` method.\n\n stopLightColor.default( function() { return \"unknown\"; } );\n console.log( stopLightColor(\"yield\") ); // prints \"unknown\"\n\nUnlike `switch` statements, a `multimethod` can handle new cases at run time.\n\n stopLightColor.when(\"yield\", function() { return \"yellow\"; });\n\nThere is a shorter way for a `method` to return a simple value. Rather than \npassing an implementation function to `when`, provide the value. \n\n stopLightColor.when(\"yield\", \"yellow\");\n console.log( stopLightColor(\"yield\") ); // prints \"yellow\"\n\nA `method` can be removed at run time.\n\n stopLightColor.remove(\"go\");\n console.log( stopLightColor(\"go\") ); // prints \"unknown\"\n\n## Deep Equality Matching\n\nMethod match values are compared using the underscore.js \n[`isEqual`](http://documentcloud.github.com/underscore/#isEqual)\nfunction. Deep equality testing allows great expressivity than a native \n`switch` statement.\n\n var greatPairs = multimethod()\n .when( [\"Salt\", \"Pepper\"], \"Shakers\" )\n .when( [{\"name\":\"Bonnie\"}, {\"name\":\"Clyde\"}], \"Robbers\" );\n\n console.log( greatPairs( [\"Salt\", \"Pepper\"] ) ); // Shakers\n\n## Dispatch Function\n\nEach `multimethod` uses a `dispatch` function to select the\n`method` to call. The `dispatch` function is passed the arguments\nthe `multimethod` is invoked with and returns a value to match\nwith a `method`.\n\nThe default `dispatch` function is an identity function. \nThe basic `stopLightColor` examples could have been \ncreated with an explicit `dispatch` function.\n\n var stopLightColor = multimethod()\n .dispatch(function(state){\n return state;\n })\n .when('go', 'green');\n console.log( stopLightColor('go') ); // green\n\nThe power of the `multimethod` paradigm is the ability to dispatch with a\nuser-defined function. This gives a `multimethod` its \"polymorphic\" powers. \nUnlike classical, object-oriented polymorphism where the compiler dispatches \nbased on the type hierarchy, a `multimethod` can dispatch on any criteria.\n\n var contacts = [\n {\"name\":\"Jack\", \"service\":\"Twitter\",\"handle\": \"@jack\"},\n {\"name\":\"Diane\",\"service\":\"Email\", \"address\":\"d@g.com\"},\n {\"name\":\"John\", \"service\":\"Phone\", \"number\": \"919-919-9191\"}\n ];\n\n var sendMessage = multimethod()\n .dispatch(function(contact, msg) {\n return contact.service;\n })\n .when(\"Twitter\", function(contact, msg) {\n console.log(\"Tweet @\"+contact.handle+\":\"+msg);\n })\n .when(\"Email\", function(contact, msg) {\n console.log(\"Emailing \"+contact.address+\":\"+msg);\n })\n .default(function(contact, msg) {\n console.log(\"Could not message \" + contact.name);\n });\n\n // Blast a message\n contacts.forEach( function(contact) {\n sendMessage(contact, \"Hello, world.\"); \n });\n\nPlucking a single property from an object is so commonly used as a `dispatch`\nfunction, like in the example above, there is a shortcut for this pattern. \nThe following `dispatch` call is equivalent to above.\n\n sendMessage.dispatch( 'service' );\n\nA `multimethod`'s `dispatch` is usually specified when constructed.\n\n var sendMessage = multimethod('service');\n\nJust like `method`s can be added and removed from a `multimethod` at \nrun time, the `dispatch` function can also be redefined at run time.\nPonder the implications of that for a minute. It is really powerful and \nreally dangerous. Don't shoot your eye out.\n\n# API\n\n- Constructor: `multimethod`( [fn | string] ): If empty, identity dispatch function used, otherwise same as `dispatch`.\n- `dispatch`(fn | string): Sets the multimethod's dispatch function. String values are transformed into a pluck function which projects a single property from an object argument.\n- `when`(match, fn | value): Add a `method` to be called when the dispatched value matches 'match'. If a non-function value is provided it will be used. Using the same match value twice will override previously set match value and method.\n- `remove`(match): Remove a method/match pair.\n- `default`(fn | value): Catch-all case when no other matched method is found.\n\n# Dependencies\n \n- Underscore.js\n", + "maintainers": [ + { + "name": "krisjordan", + "email": "krisjordan@gmail.com" + } + ], + "time": { + "modified": "2011-12-14T05:58:31.042Z", + "created": "2011-12-12T15:10:46.136Z", + "0.0.1": "2011-12-12T15:10:47.199Z", + "0.1.0": "2011-12-14T05:58:31.042Z" + }, + "author": { + "name": "Kris Jordan", + "email": "krisjordan@gmail.com", + "url": "http://krisjordan.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/KrisJordan/multimethod-js.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/multimethod/0.0.1", + "0.1.0": "http://registry.npmjs.org/multimethod/0.1.0" + }, + "dist": { + "0.0.1": { + "shasum": "a8ce5ea4f0492f72f00e3788e42b0c301122b74b", + "tarball": "http://registry.npmjs.org/multimethod/-/multimethod-0.0.1.tgz" + }, + "0.1.0": { + "shasum": "87ec08ffa1e6a9873cb734bacd0e4800378dc2d8", + "tarball": "http://registry.npmjs.org/multimethod/-/multimethod-0.1.0.tgz" + } + }, + "url": "http://registry.npmjs.org/multimethod/" + }, + "ctl": { + "name": "ctl", + "description": "Controller module for NodeJS. Made to be extremely hackable and light!", + "dist-tags": { + "latest": "0.1.4" + }, + "readme": null, + "maintainers": [ + { + "name": "leander", + "email": "me@leander.ca" + } + ], + "time": { + "modified": "2011-12-14T05:59:47.440Z", + "created": "2011-12-14T05:00:55.244Z", + "0.1.1": "2011-12-14T05:00:56.446Z", + "0.1.2": "2011-12-14T05:29:55.551Z", + "0.1.3": "2011-12-14T05:37:49.396Z", + "0.1.4": "2011-12-14T05:59:47.440Z" + }, + "author": { + "name": "Leander Lee" + }, + "versions": { + "0.1.1": "http://registry.npmjs.org/ctl/0.1.1", + "0.1.2": "http://registry.npmjs.org/ctl/0.1.2", + "0.1.3": "http://registry.npmjs.org/ctl/0.1.3", + "0.1.4": "http://registry.npmjs.org/ctl/0.1.4" + }, + "dist": { + "0.1.1": { + "shasum": "5ff1763d8d396ef9d768c45c69a13950ff840814", + "tarball": "http://registry.npmjs.org/ctl/-/ctl-0.1.1.tgz" + }, + "0.1.2": { + "shasum": "09280856f8931b3795731365aa282b8c7867f808", + "tarball": "http://registry.npmjs.org/ctl/-/ctl-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "f539a867d98c962f27a32ba0a35517eb32cb14ea", + "tarball": "http://registry.npmjs.org/ctl/-/ctl-0.1.3.tgz" + }, + "0.1.4": { + "shasum": "139e974696424f7ae2b88953e0fdcff17072ee52", + "tarball": "http://registry.npmjs.org/ctl/-/ctl-0.1.4.tgz" + } + }, + "url": "http://registry.npmjs.org/ctl/" + }, + "coffee-mixpanel": { + "name": "coffee-mixpanel", + "description": "Mixpanel for Node", + "dist-tags": { + "latest": "0.0.2" + }, + "readme": "coffee-mixpanel\n===============\n\n[Mixpanel](http://mixpanel.com/docs/api-documentation/http-specification-insert-data)\nfor Node.\n\n\n## Installation\n\n```bash\nnpm install coffee-mixpanel\n```\n", + "maintainers": [ + { + "name": "mikepb", + "email": "michael@mikepb.com" + } + ], + "time": { + "modified": "2011-12-14T06:19:35.477Z", + "created": "2011-12-14T05:37:54.341Z", + "0.0.1": "2011-12-14T05:37:56.328Z", + "0.0.2": "2011-12-14T06:19:35.477Z" + }, + "author": { + "name": "Michael Phan-Ba", + "email": "michael@mikepb.com", + "url": "http://mikepb.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/mikepb/coffee-mixpanel.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/coffee-mixpanel/0.0.1", + "0.0.2": "http://registry.npmjs.org/coffee-mixpanel/0.0.2" + }, + "dist": { + "0.0.1": { + "shasum": "9050aa30d6d49f33e53954f17427702fecc258db", + "tarball": "http://registry.npmjs.org/coffee-mixpanel/-/coffee-mixpanel-0.0.1.tgz" + }, + "0.0.2": { + "shasum": "77566b7465f0f49568bb8368a0162c5c33a7c7ac", + "tarball": "http://registry.npmjs.org/coffee-mixpanel/-/coffee-mixpanel-0.0.2.tgz" + } + }, + "url": "http://registry.npmjs.org/coffee-mixpanel/" + }, + "sew": { + "name": "sew", + "description": "Test, and build your CoffeeScript, LESS, Eco projects.", + "dist-tags": { + "latest": "0.1.3" + }, + "readme": "# About\n\nSew is a simple build/dev tool for your web based projects using CoffeeScript, LESS, and Eco.\n\n# Installation\n\nnpm install -g sew\n\n# Usage\n\nCommands:\n new Create new config file, this is required\n build Build your project\n watch Wacth and rebuild your project\n serve Start a simple HTTP server on port 3000, watch and build your project\n\nOptions:\n -p [default: 3000]\n", + "maintainers": [ + { + "name": "mikemurray", + "email": "mike@asmike.com" + } + ], + "time": { + "modified": "2011-12-14T06:47:25.298Z", + "created": "2011-12-13T06:50:57.522Z", + "0.1.2": "2011-12-13T06:52:30.021Z", + "0.1.3": "2011-12-14T06:47:25.298Z" + }, + "author": { + "name": "Mike Murray" + }, + "repository": { + "type": "git", + "url": "git://github.com/mikemurray/sew.git" + }, + "versions": { + "0.1.2": "http://registry.npmjs.org/sew/0.1.2", + "0.1.3": "http://registry.npmjs.org/sew/0.1.3" + }, + "dist": { + "0.1.2": { + "shasum": "64efc496348bcc98d2868f37b88bc1096101a5d9", + "tarball": "http://registry.npmjs.org/sew/-/sew-0.1.2.tgz" + }, + "0.1.3": { + "shasum": "6e0a6cff1f428d51f2c4f3de46388683a4aec640", + "tarball": "http://registry.npmjs.org/sew/-/sew-0.1.3.tgz" + } + }, + "url": "http://registry.npmjs.org/sew/" + }, + "always": { + "name": "always", + "description": "A CLI & Daemon tool to run a NodeJS process Forever, restarting on file changes & crashes with piping to stdout or log files.", + "dist-tags": { + "latest": "0.2.3" + }, + "readme": "\n# Always - [![Build Status](https://secure.travis-ci.org/edwardhotchkiss/always.png)](http://travis-ci.org/edwardhotchkiss/always)\n\n> A CLI & Daemon tool to run a NodeJS process Forever, restarting on file changes & crashes with piping to stdout or log files.\n\n## Installation\n\n```bash\n$ [sudo] npm install always -g\n```\n\n## Usage\n\n### Realtime Editing & Development\n\n```bash\n$ always app.js\n```\n\n## Run Tests\n\n``` bash\n$ npm test\n```\n\n## License (MIT)\n\nCopyright (c) 2011, Edward Hotchkiss.\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n## Author: [Edward Hotchkiss][0]\n\n[0]: http://ingklabs.com/\n", + "maintainers": [ + { + "name": "edwardhotchkiss", + "email": "e@ingk.com" + } + ], + "time": { + "modified": "2011-12-14T07:40:17.140Z", + "created": "2011-12-12T21:37:19.414Z", + "0.2.0": "2011-12-12T21:37:20.015Z", + "0.2.1": "2011-12-14T01:27:34.441Z", + "0.2.2": "2011-12-14T06:23:47.418Z", + "0.2.3": "2011-12-14T07:40:17.140Z" + }, + "author": { + "name": "Edward Hotchkiss", + "email": "e@ingk.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/edwardhotchkiss/always.git" + }, + "versions": { + "0.2.0": "http://registry.npmjs.org/always/0.2.0", + "0.2.1": "http://registry.npmjs.org/always/0.2.1", + "0.2.2": "http://registry.npmjs.org/always/0.2.2", + "0.2.3": "http://registry.npmjs.org/always/0.2.3" + }, + "dist": { + "0.2.0": { + "shasum": "0fa0d26e548653546c81a89ddf8b42afc4cc1e2a", + "tarball": "http://registry.npmjs.org/always/-/always-0.2.0.tgz" + }, + "0.2.1": { + "shasum": "fda4ca7988719de3797f196db3045404f7081c5c", + "tarball": "http://registry.npmjs.org/always/-/always-0.2.1.tgz" + }, + "0.2.2": { + "shasum": "bb0e0d0b40344fe74c961b897f610ab206142053", + "tarball": "http://registry.npmjs.org/always/-/always-0.2.2.tgz" + }, + "0.2.3": { + "shasum": "11ea478041819bc329175eef2a44b2e2b10e0f6d", + "tarball": "http://registry.npmjs.org/always/-/always-0.2.3.tgz" + } + }, + "keywords": [ + "always", + "process", + "forever", + "error", + "uncaught" + ], + "url": "http://registry.npmjs.org/always/" + }, + "lager": { + "name": "lager", + "description": "Simple, pretty and clean logging.", + "dist-tags": { + "latest": "0.0.0" + }, + "readme": null, + "maintainers": [ + { + "name": "qard", + "email": "admin@stephenbelanger.com" + } + ], + "time": { + "modified": "2011-12-14T09:17:47.722Z", + "created": "2011-12-14T09:17:45.947Z", + "0.0.0": "2011-12-14T09:17:47.722Z" + }, + "author": { + "name": "Stephen Belanger", + "email": "admin@stephenbelanger.com", + "url": "http://stephenbelanger.com" + }, + "repository": { + "url": "" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/lager/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "5ee9ae217b733f9902bd46a246c2269fc1251d78", + "tarball": "http://registry.npmjs.org/lager/-/lager-0.0.0.tgz" + } + }, + "url": "http://registry.npmjs.org/lager/" + }, + "thermos": { + "name": "thermos", + "dist-tags": { + "latest": "0.0.5" + }, + "maintainers": [ + { + "name": "davidpeter", + "email": "david.a.peter@gmail.com" + } + ], + "time": { + "modified": "2011-12-14T09:34:40.756Z", + "created": "2011-12-14T09:34:39.539Z", + "0.0.5": "2011-12-14T09:34:40.756Z" + }, + "versions": { + "0.0.5": "http://registry.npmjs.org/thermos/0.0.5" + }, + "dist": { + "0.0.5": { + "shasum": "a381a0f37b4ce4da293c43695a1f9f5fdeb41f57", + "tarball": "http://registry.npmjs.org/thermos/-/thermos-0.0.5.tgz" + } + }, + "keywords": [ + "template", + "coffeescript" + ], + "url": "http://registry.npmjs.org/thermos/" + }, + "hastests": { + "name": "hastests", + "description": "Interface to the HasTests ConceptScript data generation API", + "dist-tags": { + "latest": "0.1.0" + }, + "readme": "HasTests node.js library\n========================\n\n## Usage\n\n````\nht = require('hastests');\nht.run('{email: email(domain='test.com')}.vector(10)', function(err, ret) {\n if (err) {\n console.log(err);\n return;\n }\n ret.data.forEach(function(email) {\n // use the randomly generated email \n });\n});\n````\n\n## Documentation\n\n[The ConceptScript language documentation](http://conceptscript.org)\n\n", + "maintainers": [ + { + "name": "spawngrid", + "email": "team@spawngrid.com" + } + ], + "time": { + "modified": "2011-12-14T10:13:26.624Z", + "created": "2011-12-14T10:13:23.657Z", + "0.1.0": "2011-12-14T10:13:26.624Z" + }, + "author": { + "name": "Spawngrid, Inc.", + "email": "team@spawngrid.com", + "url": "http://spawngrid.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/spawngrid/hastests-node.git" + }, + "versions": { + "0.1.0": "http://registry.npmjs.org/hastests/0.1.0" + }, + "dist": { + "0.1.0": { + "shasum": "d517d2839c49eb30bc3bda5148843b2c67a68e3f", + "tarball": "http://registry.npmjs.org/hastests/-/hastests-0.1.0.tgz" + } + }, + "keywords": [ + "test", + "tests", + "testing", + "hastests", + "conceptscript", + "json", + "generation", + "data", + "TDD", + "spawngrid" + ], + "url": "http://registry.npmjs.org/hastests/" + }, + "cluster-manager": { + "name": "cluster-manager", + "description": "Manager for buildin cluster-module.", + "dist-tags": { + "latest": "0.0.0" + }, + "readme": "cluster-manager\r\n\r\nA module for Node.js that manages a cluster.\r\n\r\nUsage\r\n\r\n```js\r\nvar cm = require('cluster-manager');\r\nvar options = {\r\n port: 8080, // port to listen to\r\n hostname: '0.0.0.0', // hostname to bind to\r\n user: 'node', // the user to set a worker-process to\r\n app_path: null // path to app a worker serves\r\n};\r\ncm.run(options);\r\n```\r\n\r\nFeatures\r\n\r\n * Forks one worker per CPU by default (can be raised or lowered)\r\n * Reload of workers with a zero-down-time option\r\n * Commandline tool available\r\n\r\nMore features will be added by request.\r\n", + "maintainers": [ + { + "name": "pureppl", + "email": "pureppl@gmail.com" + } + ], + "time": { + "modified": "2011-12-14T10:27:09.288Z", + "created": "2011-12-14T10:27:06.867Z", + "0.0.0": "2011-12-14T10:27:09.288Z" + }, + "author": { + "name": "Oliver Leics", + "email": "oliver.leics@gmail.com" + }, + "repository": { + "type": "git", + "url": "git://github.com/oleics/cluster-manager.git" + }, + "versions": { + "0.0.0": "http://registry.npmjs.org/cluster-manager/0.0.0" + }, + "dist": { + "0.0.0": { + "shasum": "f1474bf51a956f5e84439ae63bc27a8b7db48a56", + "tarball": "http://registry.npmjs.org/cluster-manager/-/cluster-manager-0.0.0.tgz" + } + }, + "keywords": [ + "Cluster", + "Restart", + "Zero Down Time", + "Error Reporting" + ], + "url": "http://registry.npmjs.org/cluster-manager/" + }, + "dokimon": { + "name": "dokimon", + "description": "A simple framework that is used for test automation. Write tests for a website or web service and manage them with a command line interface", + "dist-tags": { + "latest": "0.0.15" + }, + "maintainers": [ + { + "name": "vic", + "email": "kontakt@victorjonsson.se" + } + ], + "time": { + "modified": "2011-12-14T10:58:00.832Z", + "created": "2011-12-12T23:18:38.727Z", + "0.0.1": "2011-12-13T07:21:10.368Z", + "0.0.12": "2011-12-13T07:50:49.854Z", + "0.0.13": "2011-12-13T15:50:41.199Z", + "0.0.14": "2011-12-14T08:36:45.586Z", + "0.0.15": "2011-12-14T10:58:00.832Z" + }, + "author": { + "name": "Victor Jonsson", + "email": "kontakt@victorjonsson.se", + "url": "http://victorjonsson.se" + }, + "repository": { + "type": "git", + "url": "git@github.com:victorjonsson/dokimon.git" + }, + "versions": { + "0.0.1": "http://registry.npmjs.org/dokimon/0.0.1", + "0.0.12": "http://registry.npmjs.org/dokimon/0.0.12", + "0.0.13": "http://registry.npmjs.org/dokimon/0.0.13", + "0.0.14": "http://registry.npmjs.org/dokimon/0.0.14", + "0.0.15": "http://registry.npmjs.org/dokimon/0.0.15" + }, + "dist": { + "0.0.1": { + "shasum": "8a12642fe8517362f6aa02a9efe1795b9dc06cb0", + "tarball": "http://registry.npmjs.org/dokimon/-/dokimon-0.0.1.tgz" + }, + "0.0.12": { + "shasum": "d6096e1aef3136f151d99f83e29757e05ee3e5d6", + "tarball": "http://registry.npmjs.org/dokimon/-/dokimon-0.0.12.tgz" + }, + "0.0.13": { + "shasum": "76a02c89b630a31109e4c55e485992133efb457d", + "tarball": "http://registry.npmjs.org/dokimon/-/dokimon-0.0.13.tgz" + }, + "0.0.14": { + "shasum": "55c8aa930d71e6e99c4b650e90aedf1d11dc40a9", + "tarball": "http://registry.npmjs.org/dokimon/-/dokimon-0.0.14.tgz" + }, + "0.0.15": { + "shasum": "da541a2a09b70dae063b93b8a630656aba13600b", + "tarball": "http://registry.npmjs.org/dokimon/-/dokimon-0.0.15.tgz" + } + }, + "keywords": [ + "test", + "tests", + "scraping", + "node.js", + "automation", + "testing" + ], + "url": "http://registry.npmjs.org/dokimon/" + } +} \ No newline at end of file diff --git a/samples/simple.html b/samples/simple.html new file mode 100644 index 0000000..90c786e --- /dev/null +++ b/samples/simple.html @@ -0,0 +1,23 @@ + + + + + Clarinet + + + + + + + Look at the console. + + \ No newline at end of file diff --git a/samples/twitter.js b/samples/twitter.js new file mode 100644 index 0000000..a961bb1 --- /dev/null +++ b/samples/twitter.js @@ -0,0 +1,135 @@ +// get a bunch of twitter streams +var stuff_to_search_for = + [ 'nodejs', 'nodejitsu', 'hadoop', 'couchdb', 'nosql', 'birds', 'dinosaurs' + , 'fun', 'dscape', 'clown', 'joyent', 'nyc', 'usa', 'portugal']; + +// npm install request fast-list clarinet +var request = require('request'); +var fs = require('fs'); +var clarinet = require('../clarinet'); +var p = 1; +var buffer = []; +var tweets = ['[']; +var parse_stream = clarinet.createStream(); +var stacklevel = 0; +var objlevel = 0; +var found_results = false; +var notfirst = false; +var stop_searching = false; +var previous = ''; +var i = 0; +var on_array = false; +var array_vals = []; + +function uri (pop) { + var term; + if(pop) i++; + if(stuff_to_search_for[i]) { + term = stuff_to_search_for[i]; + return 'http://search.twitter.com/search.json?q=' + term + + '&rpp=100&page='; + } + else + return null; +} + +parse_stream.on('openarray', function() { + previous = '['; + if(found_results) { + if(stacklevel !== 0) { buffer.push('['); on_array = true; } + stacklevel++; + } +}); + +parse_stream.on('closearray', function() { + if(found_results) { + stacklevel--; + if(stacklevel === 0) { + tweets.push(buffer.join('')); + buffer = []; + found_results = false; + if(previous === '[') // [] means no more results + stop_searching = true; + } else { + buffer.push(array_vals.join(',')); + array_vals = []; + on_array = false; + buffer.push(']'); + } + } + previous = ']'; +}); + +parse_stream.on('openobject', function(name) { + previous = '{'; + if(found_results) { + if(objlevel === 0 && notfirst) { buffer.push(','); } + if(name!=='result_type') { buffer.push('\n'); } + buffer.push('{"' + name + '": '); + notfirst = true; + objlevel++; + } +}); + +parse_stream.on('key', function(name) { + previous = ':'; + if(found_results) { + buffer.push(', "' + name + '": '); + } + if(name==='results' && !found_results) { + found_results = true; + } +}); + +parse_stream.on('closeobject', function() { + previous = '}'; + if(found_results) { + objlevel--; + buffer.push('}'); + } +}); + +parse_stream.on('end', function() { + previous = '!'; + if(tweets.length === 0) stop_searching = true; + console.log(tweets.join('')); +}); + +parse_stream.on('ready', function () { + var r_uri; + if(stop_searching) { + r_uri = uri(true); + if(r_uri === null) { + console.log(']'); + return; + } else { + p = 1; + stop_searching = false; + } + } + r_uri = r_uri || uri(); + tweets = []; + + if(r_uri!==null) { + request.get(r_uri+p) + .pipe(parse_stream); + p++; + } +}); + +parse_stream.on('value', function(value) { + if(found_results) { + var bla; + if(typeof value === 'string' || value === null) + bla = JSON.stringify(value); + else bla = value; + if (on_array) array_vals.push(bla); + else { buffer.push(bla); } + } +}); + +var s_uri = uri(); +if(s_uri!==null) + request.get(uri()+p) + .pipe(parse_stream); +p++; \ No newline at end of file diff --git a/samples/twitter.json b/samples/twitter.json new file mode 100644 index 0000000..55da7b2 --- /dev/null +++ b/samples/twitter.json @@ -0,0 +1,16719 @@ +[ +{"created_at": "Mon, 19 Dec 2011 18:56:59 +0000", "from_user": "edjoperez", "from_user_id": 372052399, "from_user_id_str": "372052399", "from_user_name": "Ed Perez", "geo": null, "id": 148839261322477570, "id_str": "148839261322477568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "I have to tell you: There is a project to create GTK bindings to #Nodejs, can you imagine javascript in a desktop GUI application? :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:27 +0000", "from_user": "donnfelker", "from_user_id": 14393851, "from_user_id_str": "14393851", "from_user_name": "Donn Felker", "geo": null, "id": 148838620537696260, "id_str": "148838620537696256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1514965492/Photo_on_2011-08-26_at_15.28_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1514965492/Photo_on_2011-08-26_at_15.28_2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "My last 3 days - Android. Python. NodeJs. MongoDB. MySql. Sqlite. Json. Html. JavaScript. Django.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:35 +0000", "from_user": "ntotten", "from_user_id": 6420932, "from_user_id_str": "6420932", "from_user_name": "Nathan Totten", "geo": null, "id": 148837647450771460, "id_str": "148837647450771457", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1455947729/ntotten_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1455947729/ntotten_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Playing around with LESS, Node.js, and express today. Very cool stuff. I really like how easy and clean css is with LESS. #nodejs #azure", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:56 +0000", "from_user": "GodezInc", "from_user_id": 49715292, "from_user_id_str": "49715292", "from_user_name": "Peyrouse Vincent", "geo": null, "id": 148836732421419000, "id_str": "148836732421419009", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1350515711/184903_1878935853844_1254697708_32237693_3223141_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1350515711/184903_1878935853844_1254697708_32237693_3223141_n_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "D\\u00E9couvre un nouveau monde avec #NodeJS et #MongoDB. Seule question pourquoi je ne les ai pas essay\\u00E9 plus t\\u00F4t ?!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:28 +0000", "from_user": "3rdEden", "from_user_id": 14350255, "from_user_id_str": "14350255", "from_user_name": "Arnout Kazemier", "geo": null, "id": 148836614204952580, "id_str": "148836614204952577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Server-Side JavaScript Injection: https://t.co/XjacSFhQ #nodejs #blackhat #security", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:48 +0000", "from_user": "pyhrus", "from_user_id": 44553100, "from_user_id_str": "44553100", "from_user_name": "Shankar Karuppiah", "geo": null, "id": 148836194741002240, "id_str": "148836194741002240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/249276442/Picture_003_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/249276442/Picture_003_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Finally, I was able to place an order for teespring.com/nodejs thanks to Captain Awesome from @teespring_ Awesome customer service. Cheers", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:55 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148833959088885760, "id_str": "148833959088885760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @mtw: #hackmtl http://t.co/Omr5l7lu recap of the nodejs hacakthon. congrats to all the developers!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:52 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148833943972626430, "id_str": "148833943972626432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#hackmtl http://t.co/pWyd3z0M recap of the nodejs hacakthon. congrats to all the developers! http://t.co/RtZQE6kX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:57 +0000", "from_user": "amyhoy", "from_user_id": 627213, "from_user_id_str": "627213", "from_user_name": "Amy Hoy", "geo": null, "id": 148833212704096260, "id_str": "148833212704096256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/65653569/amy-silly_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/65653569/amy-silly_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@nodejs here's how to deal with @allthis stealing your material & makin it look like you endorse their service http://t.co/39ShRFFz", "to_user": "nodejs", "to_user_id": 91985735, "to_user_id_str": "91985735", "to_user_name": "node js"}, +{"created_at": "Mon, 19 Dec 2011 18:31:01 +0000", "from_user": "allthisfeed", "from_user_id": 405310659, "from_user_id_str": "405310659", "from_user_name": "allthis feed", "geo": null, "id": 148832724797489150, "id_str": "148832724797489152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691844588/allthis_03_64_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691844588/allthis_03_64_normal.png", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "Trading ten minutes of node js's time @allthis @nodejs http://t.co/ODqQx4jN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:33 +0000", "from_user": "mromaniv", "from_user_id": 289957624, "from_user_id_str": "289957624", "from_user_name": "mike romaniv", "geo": null, "id": 148831348377915400, "id_str": "148831348377915392", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1341399098/Shri.Yantra.blue_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1341399098/Shri.Yantra.blue_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @habrahabr: Node.JS / \\u0417\\u0430\\u043F\\u0443\\u0441\\u043A\\u0430\\u0435\\u043C jQuery \\u043D\\u0430\\u00A0\\u0434\\u0432\\u0438\\u0436\\u043A\\u0435\\u00A0Node.js \\u0432\\u043C\\u0435\\u0441\\u0442\\u043E\\u00A0\\u0431\\u0440\\u0430\\u0443\\u0437\\u0435\\u0440\\u0430 http://t.co/C4PLf33V", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:08 +0000", "from_user": "niclupien", "from_user_id": 273447029, "from_user_id_str": "273447029", "from_user_name": "Nicolas Lupien", "geo": null, "id": 148831243851673600, "id_str": "148831243851673600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664486029/mobro_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664486029/mobro_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @mtw: #hackmtl http://t.co/Omr5l7lu recap of the nodejs hacakthon. congrats to all the developers!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:29 +0000", "from_user": "mtw", "from_user_id": 4609741, "from_user_id_str": "4609741", "from_user_name": "Montreal Tech Watch", "geo": null, "id": 148830829353766900, "id_str": "148830829353766912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1311424156/Screen_shot_2011-04-14_at_11.25.36_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1311424156/Screen_shot_2011-04-14_at_11.25.36_AM_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "#hackmtl http://t.co/Omr5l7lu recap of the nodejs hacakthon. congrats to all the developers!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:48 +0000", "from_user": "nilakanta", "from_user_id": 16202937, "from_user_id_str": "16202937", "from_user_name": "nilakanta", "geo": null, "id": 148829145999212540, "id_str": "148829145999212544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/65712075/Photo_4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/65712075/Photo_4_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:44 +0000", "from_user": "complex", "from_user_id": 784467, "from_user_id_str": "784467", "from_user_name": "Anthony Elizondo", "geo": null, "id": 148829130249601020, "id_str": "148829130249601025", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/783576456/Gleamies_WALLPAPER_by_Barbroute_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/783576456/Gleamies_WALLPAPER_by_Barbroute_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "when @nodejs compiles, it make colors. glorious colors.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:24 +0000", "from_user": "jerrodblavos", "from_user_id": 9904882, "from_user_id_str": "9904882", "from_user_name": "Jerrod - RecCenter", "geo": null, "id": 148828041437642750, "id_str": "148828041437642753", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1667973534/head_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667973534/head_normal.png", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/wHvP23U8 #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:12 +0000", "from_user": "kk6", "from_user_id": 8665642, "from_user_id_str": "8665642", "from_user_name": "\\u82A6\\u5C4B\\u3072\\u308D", "geo": null, "id": 148827235804119040, "id_str": "148827235804119040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1665970262/alice_s2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665970262/alice_s2_normal.jpg", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "MVC Web Application Framework for NodeJS written in CoffeeScript / \\u201CCoreJS \\u2014 Web Framework\\u201D http://t.co/HsztpWob", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:08:32 +0000", "from_user": "dmuth", "from_user_id": 10828662, "from_user_id_str": "10828662", "from_user_name": "Douglas Muth (Giza)", "geo": null, "id": 148827068849860600, "id_str": "148827068849860608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1632918786/giza_white_mage_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632918786/giza_white_mage_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "The node.js Aesthetic: http://t.co/w9j8iuJR #NodeJs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:05:41 +0000", "from_user": "h3rald", "from_user_id": 10164792, "from_user_id_str": "10164792", "from_user_name": "Fabio Cevasco", "geo": null, "id": 148826351061831680, "id_str": "148826351061831681", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1121784202/h3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1121784202/h3_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @dhofstet: \"If something is not documented, it's safe to assume it's either internal, deprecated or in 'private beta' mode.\" #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:03:22 +0000", "from_user": "Marlabs", "from_user_id": 44647144, "from_user_id_str": "44647144", "from_user_name": "Marlabs", "geo": null, "id": 148825766451351550, "id_str": "148825766451351552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1536148436/MarlabsFB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1536148436/MarlabsFB_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"Must read \"@newsycombinator: #Node.js #modules you should know about: #semver http://t.co/KXTe8lR8\"\\n@amazedsaint \" // a definite read", "to_user": "amazedsaint", "to_user_id": 15875576, "to_user_id_str": "15875576", "to_user_name": "Anoop Madhusudanan", "in_reply_to_status_id": 148297512556560400, "in_reply_to_status_id_str": "148297512556560384"}, +{"created_at": "Mon, 19 Dec 2011 18:03:11 +0000", "from_user": "hankejh", "from_user_id": 3633291, "from_user_id_str": "3633291", "from_user_name": "Damion Hankejh", "geo": null, "id": 148825722440519680, "id_str": "148825722440519681", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/55252992/d-night2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/55252992/d-night2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @kisshotch: You know what they say: if you don't feel like reading the docs, write your own. #NodeJS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:12 +0000", "from_user": "kaptencybear", "from_user_id": 14663205, "from_user_id_str": "14663205", "from_user_name": "Bj\\u00F6rn S\\u00F6derqvist", "geo": null, "id": 148824969646837760, "id_str": "148824969646837760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1327843885/218807_10150158449876906_625206905_6946414_1227294_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1327843885/218807_10150158449876906_625206905_6946414_1227294_o_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "If you like @NodeJS and word games, now is the time to create your own word game server! Introducing SowpodsJS https://t.co/bz51dZ67", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:55 +0000", "from_user": "sb_doc", "from_user_id": 36325362, "from_user_id_str": "36325362", "from_user_name": "Stefano Boldrin", "geo": null, "id": 148821125420417020, "id_str": "148821125420417024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/256200906/IMG_0056_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/256200906/IMG_0056_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @dalmaer: CoreJS is a CoffeeSCript MVC framework for NodeJS for non-trivial apps http://t.co/z42wvabq /by Ernesto M\\u00E9ndez", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:39:01 +0000", "from_user": "axolx", "from_user_id": 5162811, "from_user_id_str": "5162811", "from_user_name": "Martin Rio", "geo": null, "id": 148819639206555650, "id_str": "148819639206555648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1619182431/x100_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619182431/x100_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "Every time I read this, I get more on board w/nodejs \"Although originally designed for node.js, it can be used directly in the browser\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:04 +0000", "from_user": "cld9731", "from_user_id": 16745168, "from_user_id_str": "16745168", "from_user_name": "Charles Ditzel", "geo": null, "id": 148817889653309440, "id_str": "148817889653309440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/74655786/screenshot_02_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/74655786/screenshot_02_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Azure Cloud matures : first Java, now now Node.js and MongoDB, later Hadoop. Interesting. See : http://t.co/G7V1EwrC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:00 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148817874008539140, "id_str": "148817874008539136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @jcyhsiao ryah: this looks pretty awesome http://t.co/nwJd4b2l #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:00 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148817872863494140, "id_str": "148817872863494144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @markbates ryah: this looks pretty awesome http://t.co/nwJd4b2l #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:59 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148817870791507970, "id_str": "148817870791507969", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @FriendsOfNodeJS jcleblanc: A Node.js t-shirt http://t.co/eekX44lf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:00 +0000", "from_user": "soaj1664ashar", "from_user_id": 277735240, "from_user_id_str": "277735240", "from_user_name": "Ashar Javed", "geo": null, "id": 148817368364220400, "id_str": "148817368364220416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1301332153/ashar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1301332153/ashar_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @johnwilander: Server-side JavaScript injection: Attacking #nosql and #nodejs (pdf from BH 2011) https://t.co/9FCnbLpg via @shreeraj & @hackernewsbot", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:28:08 +0000", "from_user": "johnwilander", "from_user_id": 57622045, "from_user_id_str": "57622045", "from_user_name": "John Wilander", "geo": null, "id": 148816900594479100, "id_str": "148816900594479104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/341321376/john_sjunger_715_beskuren_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/341321376/john_sjunger_715_beskuren_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Server-side JavaScript injection: Attacking #nosql and #nodejs (pdf from BH 2011) https://t.co/9FCnbLpg via @shreeraj & @hackernewsbot", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:28:04 +0000", "from_user": "phamnp", "from_user_id": 16664126, "from_user_id_str": "16664126", "from_user_name": "Paul Pham", "geo": null, "id": 148816882487672830, "id_str": "148816882487672832", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1682624433/pauldraw-bw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682624433/pauldraw-bw_normal.jpg", "source": "<a href="http://aquaron.com" rel="nofollow">aqrd</a>", "text": "Code Node.js? Got to check out semver module http://t.co/9gizThFt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:27:25 +0000", "from_user": "edjafarov", "from_user_id": 18898176, "from_user_id_str": "18898176", "from_user_name": "Eldar Djafarov", "geo": null, "id": 148816717672480770, "id_str": "148816717672480768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/971019265/25-08-08_1708_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/971019265/25-08-08_1708_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Seems #nodejs docs sucks https://t.co/wASolXEr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:17:04 +0000", "from_user": "jcyhsiao", "from_user_id": 16742138, "from_user_id_str": "16742138", "from_user_name": "Jay Chih-Yu Hsiao", "geo": null, "id": 148814116180594700, "id_str": "148814116180594689", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/344564672/6380_527280044642_24102977_31249420_561245_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/344564672/6380_527280044642_24102977_31249420_561245_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:12:53 +0000", "from_user": "markbates", "from_user_id": 17388421, "from_user_id_str": "17388421", "from_user_name": "Mark Bates", "geo": null, "id": 148813060730126340, "id_str": "148813060730126336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/529484097/n566112099_1150855_5750_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/529484097/n566112099_1150855_5750_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:12:06 +0000", "from_user": "iammutex", "from_user_id": 18104503, "from_user_id_str": "18104503", "from_user_name": "iammutex", "geo": null, "id": 148812864235380740, "id_str": "148812864235380736", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/107988472/lennon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/107988472/lennon_normal.jpg", "source": "<a href="http://lgone.com/" rel="nofollow">\\u7231\\u8C01\\u8C01</a>", "text": "nodejs\\u5B58\\u5728\\u7684\\u4E00\\u4E2A\\u610F\\u4E49\\uFF0C\\u524D\\u7AEF\\u4EEC\\u5B66\\u70B9nodejs\\uFF0C\\u5C31\\u4EE5\\u4E3A\\u81EA\\u5DF1\\u4F1A\\u540E\\u7AEF\\u4E86\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:10:09 +0000", "from_user": "marcoarreguin", "from_user_id": 6052322, "from_user_id_str": "6052322", "from_user_name": "Marco Arregu\\u00EDn", "geo": null, "id": 148812375523463170, "id_str": "148812375523463168", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/469203564/Perfiles_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/469203564/Perfiles_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Quiero esta playera!!!!!! http://t.co/CkDRqX6P", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:09:18 +0000", "from_user": "corcav", "from_user_id": 17647167, "from_user_id_str": "17647167", "from_user_name": "Corrado Cavalli", "geo": null, "id": 148812161521692670, "id_str": "148812161521692672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/725890828/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/725890828/twitterProfilePhoto_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @imperugo: I need one RT \\u201C@NodeJsCommunity: A Node.js t-shirt http://t.co/Z8rCuOLe http://t.co/ozcliEVn\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:07:29 +0000", "from_user": "imperugo", "from_user_id": 22130633, "from_user_id_str": "22130633", "from_user_name": "Ugo Lattanzi", "geo": null, "id": 148811701964382200, "id_str": "148811701964382209", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1416210395/IMG_1538_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1416210395/IMG_1538_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I need one RT \\u201C@NodeJsCommunity: A Node.js t-shirt http://t.co/74bOdV9x http://t.co/einbNF8Y\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:00:43 +0000", "from_user": "Cianomaidin", "from_user_id": 23092438, "from_user_id_str": "23092438", "from_user_name": "Cian \\u00D3 Maid\\u00EDn", "geo": null, "id": 148810001782288400, "id_str": "148810001782288386", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1174545220/Cian-BW_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1174545220/Cian-BW_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jgatoluis: #nodejs how to develop web applications with #js and parallel process. It seems interesting, someone know about i? http://t.co/IpiHATjQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:00:14 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148809880793382900, "id_str": "148809880793382913", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "RT @jcleblanc: A Node.js t-shirt http://t.co/21w8qyxz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:58:00 +0000", "from_user": "tanepiper", "from_user_id": 20693, "from_user_id_str": "20693", "from_user_name": "Tane Piper", "geo": null, "id": 148809317611618300, "id_str": "148809317611618306", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1654339360/dizzy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654339360/dizzy_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "@iamtef NodeJS is what, 2 years old? PHP is 16 years old and probably just as vulnerable? Also - LOL eval, no serious dev still uses that", "to_user": "iamtef", "to_user_id": 16681276, "to_user_id_str": "16681276", "to_user_name": "tef", "in_reply_to_status_id": 148808151637037060, "in_reply_to_status_id_str": "148808151637037057"}, +{"created_at": "Mon, 19 Dec 2011 16:57:04 +0000", "from_user": "itwars", "from_user_id": 67265165, "from_user_id_str": "67265165", "from_user_name": "Vincent RABAH", "geo": null, "id": 148809080797003780, "id_str": "148809080797003776", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1135858686/cb-vincent_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1135858686/cb-vincent_normal.png", "source": "<a href="http://www.scoop.it" rel="nofollow">Scoop.it</a>", "text": "Yahoo pr\\u00E9sente un module node.js pour YSlow | #nodejs http://t.co/3NiBuC8B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:54:29 +0000", "from_user": "micajeho", "from_user_id": 200713623, "from_user_id_str": "200713623", "from_user_name": "Miguel Hon\\u00F3rio", "geo": null, "id": 148808431661363200, "id_str": "148808431661363200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1228827013/Imagem0172_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1228827013/Imagem0172_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT \"@giovannibassi: MVC + #CoffeeScript #FTW RT @ryah: this looks pretty awesome http://t.co/pxLX7AXw #nodejs\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:53:57 +0000", "from_user": "xtnw", "from_user_id": 432063127, "from_user_id_str": "432063127", "from_user_name": "Christian W", "geo": null, "id": 148808298374766600, "id_str": "148808298374766592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691724008/lgicon025_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691724008/lgicon025_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @substack: I like turtles: http://t.co/uoswx4E5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:49:22 +0000", "from_user": "brinklley", "from_user_id": 150124124, "from_user_id_str": "150124124", "from_user_name": "Jonatan Aguiar", "geo": null, "id": 148807143624146940, "id_str": "148807143624146944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1368425791/Picture0009_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1368425791/Picture0009_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @giovannibassi: MVC + #CoffeeScript #FTW RT @ryah: this looks pretty awesome http://t.co/Hi5BfbSW #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:47:13 +0000", "from_user": "giovannibassi", "from_user_id": 20732572, "from_user_id_str": "20732572", "from_user_name": "Giovanni Bassi", "geo": null, "id": 148806602231783420, "id_str": "148806602231783424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1250158855/Giggio_no_pesqueiro_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1250158855/Giggio_no_pesqueiro_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "MVC + #CoffeeScript #FTW RT @ryah: this looks pretty awesome http://t.co/Hi5BfbSW #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:46:44 +0000", "from_user": "diegosevilla", "from_user_id": 14180784, "from_user_id_str": "14180784", "from_user_name": "Diego Sevilla Ruiz", "geo": null, "id": 148806479636471800, "id_str": "148806479636471808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1447462735/48947_871895296_3078648_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1447462735/48947_871895296_3078648_q_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:45:15 +0000", "from_user": "VRajaRao", "from_user_id": 265225982, "from_user_id_str": "265225982", "from_user_name": "Vadugu Raja Rao", "geo": null, "id": 148806107840786430, "id_str": "148806107840786432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Windows Azure Updated To Support Hadoop and Node.js http://t.co/b9JSXCQO via @toolsjournal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:44:26 +0000", "from_user": "beautifulnode", "from_user_id": 428579497, "from_user_id_str": "428579497", "from_user_name": "beautifulnode", "geo": null, "id": 148805902047256580, "id_str": "148805902047256576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694584089/Untitleddrawing__1__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694584089/Untitleddrawing__1__normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @chrismatthieu: Only 2 days left to purchase this limited edition node.js tshirt! RT @substack: I like turtles: http://t.co/T2d5t5UO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:44:11 +0000", "from_user": "komlow", "from_user_id": 95929876, "from_user_id_str": "95929876", "from_user_name": "\\u8106\\u5F31\\u5148\\u8F29", "geo": null, "id": 148805839434678270, "id_str": "148805839434678273", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1623137955/asgasdgqer_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1623137955/asgasdgqer_normal.png", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "\\u201CMongoDB + node.js \\u3067\\u4F5C\\u308B\\u30BD\\u30FC\\u30B7\\u30E3\\u30EB\\u30B2\\u30FC\\u30E0\\u201D http://t.co/9gF1N2Zs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:44:09 +0000", "from_user": "beautifulnode", "from_user_id": 428579497, "from_user_id_str": "428579497", "from_user_name": "beautifulnode", "geo": null, "id": 148805830693752830, "id_str": "148805830693752832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694584089/Untitleddrawing__1__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694584089/Untitleddrawing__1__normal.png", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "RT @jackhq: NodeJs CLI get-post 0.1.0 released! - New Release of get-post! Verson 0.1.0 This version refines the api and... http://t.co/Pyp8yxCF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:44:02 +0000", "from_user": "jcleblanc", "from_user_id": 15392140, "from_user_id_str": "15392140", "from_user_name": "Jonathan LeBlanc", "geo": null, "id": 148805801211985920, "id_str": "148805801211985921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/281463265/3490041159_59b53be507_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/281463265/3490041159_59b53be507_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "A Node.js t-shirt http://t.co/21w8qyxz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:43:15 +0000", "from_user": "bsabrin", "from_user_id": 13777992, "from_user_id_str": "13777992", "from_user_name": "bsabrin", "geo": null, "id": 148805604159389700, "id_str": "148805604159389696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1268470086/ben_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1268470086/ben_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "#MongoDB from #10gen on #Azure. http://t.co/qXK53hv4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:42:03 +0000", "from_user": "beautifulnode", "from_user_id": 428579497, "from_user_id_str": "428579497", "from_user_name": "beautifulnode", "geo": null, "id": 148805302299541500, "id_str": "148805302299541504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694584089/Untitleddrawing__1__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694584089/Untitleddrawing__1__normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "check out -> http://t.co/KsJ4Hnfh #coffeescript #nodejs -> Read the Guide!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:41:38 +0000", "from_user": "peter_lorent", "from_user_id": 14898830, "from_user_id_str": "14898830", "from_user_name": "Peter Lorent", "geo": null, "id": 148805196200419330, "id_str": "148805196200419329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/695213701/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/695213701/twitterProfilePhoto_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: http://t.co/uXEkbeUU seems very interesting #nodejs http://t.co/PNrcwUNT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:39:34 +0000", "from_user": "puresight", "from_user_id": 14046153, "from_user_id_str": "14046153", "from_user_name": "Monty Dickerson", "geo": null, "id": 148804675741810700, "id_str": "148804675741810688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1222901959/purpleme_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1222901959/purpleme_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "via @Microsoft SDK for @nodejs makes @WindowsAzure a #cloud for JavaScript software apps development cc @ch9 http://t.co/NrWA02sL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:38:31 +0000", "from_user": "jackhq", "from_user_id": 15810776, "from_user_id_str": "15810776", "from_user_name": "Jack Russ Software", "geo": null, "id": 148804412188524540, "id_str": "148804412188524544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/493141971/jrs-logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/493141971/jrs-logo_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:36:34 +0000", "from_user": "CoffeeScript", "from_user_id": 144894853, "from_user_id_str": "144894853", "from_user_name": "CoffeeScript", "geo": null, "id": 148803921245257730, "id_str": "148803921245257728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1198075611/Screen_shot_2010-12-24_at_12.28.48_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1198075611/Screen_shot_2010-12-24_at_12.28.48_PM_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:36:17 +0000", "from_user": "understeer", "from_user_id": 4451471, "from_user_id_str": "4451471", "from_user_name": "MATSUO Yasuhiro ", "geo": null, "id": 148803851934380030, "id_str": "148803851934380034", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1314550179/4451471_origin_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1314550179/4451471_origin_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @sbose78: #Cloudfoundry #mogodb #node.js\\n\\nhttp://t.co/F6eKjFcB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:33:34 +0000", "from_user": "giwebud", "from_user_id": 258859621, "from_user_id_str": "258859621", "from_user_name": "Giweb", "geo": null, "id": 148803169697280000, "id_str": "148803169697280002", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1596514312/twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596514312/twitter_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "@Nodejs for dummies http://t.co/cKOeqcw1 http://t.co/b8fRWIjn", "to_user": "nodejs", "to_user_id": 91985735, "to_user_id_str": "91985735", "to_user_name": "node js"}, +{"created_at": "Mon, 19 Dec 2011 16:33:02 +0000", "from_user": "MIGUEVARGASC", "from_user_id": 229680266, "from_user_id_str": "229680266", "from_user_name": "MIGUEL A VARGAS C", "geo": null, "id": 148803033759891460, "id_str": "148803033759891458", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701321779/python_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701321779/python_2_normal.png", "source": "<a href="http://www.tweekiapp.com" rel="nofollow">Tweeki for Pokki</a>", "text": "RT @davidcp90: @nodejs e-book http://t.co/gyPgRG8F", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:32:29 +0000", "from_user": "davidcp90", "from_user_id": 211023590, "from_user_id_str": "211023590", "from_user_name": "David Camargo", "geo": null, "id": 148802894240559100, "id_str": "148802894240559104", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1455780323/52287_457877558806_597188806_5750681_3552214_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1455780323/52287_457877558806_597188806_5750681_3552214_o_normal.jpg", "source": "<a href="http://www.tweekiapp.com" rel="nofollow">Tweeki for Pokki</a>", "text": "@nodejs e-book http://t.co/gyPgRG8F", "to_user": "nodejs", "to_user_id": 91985735, "to_user_id_str": "91985735", "to_user_name": "node js"}, +{"created_at": "Mon, 19 Dec 2011 16:30:40 +0000", "from_user": "sbarysiuk", "from_user_id": 16024462, "from_user_id_str": "16024462", "from_user_name": "Serge Barysiuk", "geo": null, "id": 148802439804489730, "id_str": "148802439804489728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/546121932/x_957106d8_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/546121932/x_957106d8_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Do you know any real, mid-size #nodejs apps to learn how to organize and structure an app? #express + #mongoose + #socketio", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:28:58 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148802012027424770, "id_str": "148802012027424769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://choqok.gnufolks.org/" rel="nofollow">Choqok</a>", "text": "RT @jcsardin: if you are serious about using #Nodejs in your next proyect, this libraries are a must http://t.co/ewEf88Zf http://t.co/wsdV3PdU #step#async", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:28:56 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148802002346967040, "id_str": "148802002346967043", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "if you are serious about using #Nodejs in your next proyect, this libraries are a must http://t.co/gsiLT3Fp http... http://t.co/hGSonB0n", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:27:39 +0000", "from_user": "u1", "from_user_id": 3779321, "from_user_id_str": "3779321", "from_user_name": "u1(\\u690D\\u6751\\u512A\\u4E00)", "geo": null, "id": 148801680421560320, "id_str": "148801680421560323", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/623483628/125432_1795825550_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/623483628/125432_1795825550_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @sbose78: #Cloudfoundry #mogodb #node.js\\n\\nhttp://t.co/F6eKjFcB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:26:18 +0000", "from_user": "tucamon", "from_user_id": 14843149, "from_user_id_str": "14843149", "from_user_name": "tucamon", "geo": null, "id": 148801339013603330, "id_str": "148801339013603328", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/485896320/tucamon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/485896320/tucamon_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "El pr\\u00F3ximo dia 27 Ra\\u00FAl Murciano explicar\\u00E1 su sistema para desarrollar aplicaciones web con NodeJs. Mas info en http://t.co/iFTiGTwj #Madrid", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:25:38 +0000", "from_user": "carlospeix", "from_user_id": 64229525, "from_user_id_str": "64229525", "from_user_name": "Carlos Peix", "geo": null, "id": 148801172684288000, "id_str": "148801172684288000", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1224493755/DSC02349cc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1224493755/DSC02349cc_normal.jpg", "source": "<a href="http://www.digsby.com/?utm_campaign=twitter" rel="nofollow">Digsby</a>", "text": "@jfroma: RT @o_amp_o: Intersect - A multi-user audio sequencer using #nodejs, #socketio and #audiolet. http://t.co/5CjiznrB cc @sebarenzi", "to_user": "jfroma", "to_user_id": 26559849, "to_user_id_str": "26559849", "to_user_name": "Jos\\u00E9 F. Romaniello"}, +{"created_at": "Mon, 19 Dec 2011 16:23:35 +0000", "from_user": "danielwrobert", "from_user_id": 39916196, "from_user_id_str": "39916196", "from_user_name": "Dan Robert", "geo": null, "id": 148800655748894720, "id_str": "148800655748894722", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1667476543/newTwitterPic2_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667476543/newTwitterPic2_normal.jpeg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "RT @elijahmanor: \"Write your shell scripts in JavaScript, via Node.js\" by @rauschma #javascript http://t.co/RpKaSKKa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:23:15 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148800572479385600, "id_str": "148800572479385600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @sirmaximum: Azure price cuts, bigger databases, now with node.js and MongoDB support, Hadoop on its way http://t.co/NuVWzURh via @arstechnica", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:19:40 +0000", "from_user": "hribar", "from_user_id": 13875112, "from_user_id_str": "13875112", "from_user_name": "Jim Hribar", "geo": null, "id": 148799671144427520, "id_str": "148799671144427520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/968619732/icon_128_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/968619732/icon_128_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @garannm: Ahahaha awesome. Haven't tried this, but what a good idea. http://t.co/Gqc6Unup (Not saying that just because I don't know shell scripting.)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:15:02 +0000", "from_user": "lexx27", "from_user_id": 8923232, "from_user_id_str": "8923232", "from_user_name": "Lexx", "geo": null, "id": 148798502745542660, "id_str": "148798502745542656", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1360035898/avatar511_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1360035898/avatar511_normal.jpg", "source": "<a href="http://gun.io/#" rel="nofollow">Harbbl</a>", "text": "RT @GUNdotIO: New Open Source gig: Neo4j Node.js adapter http://t.co/KfQtLCYh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:14:41 +0000", "from_user": "jcsardin", "from_user_id": 53573344, "from_user_id_str": "53573344", "from_user_name": "Juan Carlos Sardin", "geo": null, "id": 148798414530949120, "id_str": "148798414530949120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1083557585/644fa35b-598e-4638-88f9-7dfb370113d9_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1083557585/644fa35b-598e-4638-88f9-7dfb370113d9_normal.png", "source": "<a href="http://choqok.gnufolks.org/" rel="nofollow">Choqok</a>", "text": "if you are serious about using #Nodejs in your next proyect, this libraries are a must http://t.co/ewEf88Zf http://t.co/wsdV3PdU #step#async", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:11:39 +0000", "from_user": "bradleymeck", "from_user_id": 15338477, "from_user_id_str": "15338477", "from_user_name": "bmeck", "geo": null, "id": 148797652639809540, "id_str": "148797652639809536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/282339703/Photo_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/282339703/Photo_7_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @garannm: Ahahaha awesome. Haven't tried this, but what a good idea. http://t.co/Gqc6Unup (Not saying that just because I don't know shell scripting.)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:11:19 +0000", "from_user": "sirmaximum", "from_user_id": 135678269, "from_user_id_str": "135678269", "from_user_name": "Maxime Duclos", "geo": null, "id": 148797566572703740, "id_str": "148797566572703744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1552343655/damtech_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552343655/damtech_copy_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Azure price cuts, bigger databases, now with node.js and MongoDB support, Hadoop on its way http://t.co/NuVWzURh via @arstechnica", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:07:17 +0000", "from_user": "crazy_google", "from_user_id": 96588107, "from_user_id_str": "96588107", "from_user_name": "Crazy Google", "geo": null, "id": 148796552331276300, "id_str": "148796552331276291", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/572871452/nataho_avatar_128_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/572871452/nataho_avatar_128_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Writing node.js extensions with C++ and V8 http://t.co/zVcBsUOC #nodejs# http://t.co/KAM57Ir1 http://t.co/rJ9nqBnp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:05:58 +0000", "from_user": "justinjmoses", "from_user_id": 16522485, "from_user_id_str": "16522485", "from_user_name": "Justin J. Moses", "geo": null, "id": 148796220654100480, "id_str": "148796220654100480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1220159577/in-park_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1220159577/in-park_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: http://t.co/uXEkbeUU seems very interesting #nodejs http://t.co/PNrcwUNT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:03:39 +0000", "from_user": "jsgeneve", "from_user_id": 404035068, "from_user_id_str": "404035068", "from_user_name": "Javascript Gen\\u00E8ve", "geo": null, "id": 148795639201923070, "id_str": "148795639201923072", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1620267028/twitter_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620267028/twitter_normal.gif", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Pas un jour ne passe sans un nouveau framework MVC pour #NodeJS. Aujourd'hui: RailwayJS inspir\\u00E9 de... RoR bien s\\u00FBr. http://t.co/DKYjvIR4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:57:39 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148794131035078660, "id_str": "148794131035078656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://chrome.google.com/extensions/detail/aicelmgbddfgmpieedjiggifabdpcnln" rel="nofollow">FaWave</a>", "text": "RT @syxc: How to Install Node.js - How To Node - NodeJS http://t.co/DF9uZaqX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:57:35 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148794114136223740, "id_str": "148794114136223744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "How to Install Node.js - How To Node - NodeJS http://t.co/xLJJ4QVs http://t.co/4gCU1mKP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:56:32 +0000", "from_user": "grippy", "from_user_id": 7617822, "from_user_id_str": "7617822", "from_user_name": "Greg Melton", "geo": null, "id": 148793847009378300, "id_str": "148793847009378304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/54209072/Photo_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/54209072/Photo_2_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "Finally started writing the core arduino sketch for a brewing controller I'm scheming. Think temp and pump controls backed by a nodejs app", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:55:18 +0000", "from_user": "syxc", "from_user_id": 173856301, "from_user_id_str": "173856301", "from_user_name": "\\u6714\\u6708\\u661F\\u8FB0", "geo": null, "id": 148793538816122880, "id_str": "148793538816122883", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1093839343/syc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1093839343/syc_normal.jpg", "source": "<a href="http://chrome.google.com/extensions/detail/aicelmgbddfgmpieedjiggifabdpcnln" rel="nofollow">FaWave</a>", "text": "How to Install Node.js - How To Node - NodeJS http://t.co/DF9uZaqX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:55:13 +0000", "from_user": "Hprun", "from_user_id": 409868335, "from_user_id_str": "409868335", "from_user_name": "Hprun", "geo": null, "id": 148793517207060480, "id_str": "148793517207060482", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1633356998/Hprun_AZO_glow_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633356998/Hprun_AZO_glow_normal.jpg", "source": "<a href="http://nurph.com" rel="nofollow">Nurph</a>", "text": "@NodeJsCommunity @FriendsOfNodeJS there's a real-time channel of Node.js tweets on http://t.co/LRIdrya5 - and it uses Node ... #nodejs", "to_user": "NodeJsCommunity", "to_user_id": 402824193, "to_user_id_str": "402824193", "to_user_name": "NodeJS Community"}, +{"created_at": "Mon, 19 Dec 2011 15:52:17 +0000", "from_user": "JimBorowicz", "from_user_id": 370347719, "from_user_id_str": "370347719", "from_user_name": "Jim Borowicz", "geo": null, "id": 148792777629646850, "id_str": "148792777629646848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1652063701/fCby079Q_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652063701/fCby079Q_normal", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @jasonh: Yes ==> RT @jbueza: wow.. Joyent has their own dhcp, ldap servers written in #NodeJS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:48:17 +0000", "from_user": "apprme", "from_user_id": 9545752, "from_user_id_str": "9545752", "from_user_name": "apprentice", "geo": null, "id": 148791772288524300, "id_str": "148791772288524288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/72942873/10168506_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/72942873/10168506_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "How I Learned to Stop Fearing and Love Javascript: http://t.co/5oldIk0Q", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:46:21 +0000", "from_user": "christopheeble", "from_user_id": 21884705, "from_user_id_str": "21884705", "from_user_name": "Christophe Ebl\\u00E9", "geo": null, "id": 148791284847484930, "id_str": "148791284847484930", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1186206049/kris_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1186206049/kris_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Nice introduction to #nodejs by @wezfurlong http://t.co/3NBwYADi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:43:57 +0000", "from_user": "MartialLienert", "from_user_id": 47908355, "from_user_id_str": "47908355", "from_user_name": "Martial Lienert", "geo": null, "id": 148790681035477000, "id_str": "148790681035476992", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": ":D @guillaumepotier GG pour NodeJS. Je vais te facturer nos conversations gTalk comme du consulting :p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:42:03 +0000", "from_user": "KCITP", "from_user_id": 80589393, "from_user_id_str": "80589393", "from_user_name": "KC IT Professionals", "geo": null, "id": 148790203107123200, "id_str": "148790203107123200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1143479908/kcit-twitter1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1143479908/kcit-twitter1_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "Easy to understand overview >> #NodeJS For Dummies http://t.co/XHTPL9Nr #JavaScript", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:34:12 +0000", "from_user": "Humantools", "from_user_id": 52186294, "from_user_id_str": "52186294", "from_user_name": "Kaspar L\\u00FCthi", "geo": null, "id": 148788228378464260, "id_str": "148788228378464256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1456915678/ilovepixel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1456915678/ilovepixel_normal.jpg", "source": "<a href="http://www.twhirl.org" rel="nofollow">Seesmic twhirl</a>", "text": "Blazing fast node.js: 10 performance tips from LinkedIn Mobile http://t.co/LRXLWNbt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:26:14 +0000", "from_user": "cayasso", "from_user_id": 57570032, "from_user_id_str": "57570032", "from_user_name": "Jonathan Brumley", "geo": null, "id": 148786221521440770, "id_str": "148786221521440769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/361872421/jonathan_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/361872421/jonathan_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:26:07 +0000", "from_user": "_sebastienp", "from_user_id": 29165043, "from_user_id_str": "29165043", "from_user_name": "Sebastien P.", "geo": null, "id": 148786192354246660, "id_str": "148786192354246658", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687229142/sebastienp_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687229142/sebastienp_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Write your shell scripts in JS; using node.js to write shell scripts in linux environments: http://t.co/eEbptziv http://t.co/nGdtWfjc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:25:57 +0000", "from_user": "illaaais", "from_user_id": 248608601, "from_user_id_str": "248608601", "from_user_name": "Guillaume Augais", "geo": null, "id": 148786153053622270, "id_str": "148786153053622272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: http://t.co/uXEkbeUU seems very interesting #nodejs http://t.co/PNrcwUNT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:22:09 +0000", "from_user": "arkaitzgamino", "from_user_id": 68934373, "from_user_id_str": "68934373", "from_user_name": "Arkaitz Gamino", "geo": null, "id": 148785196899115000, "id_str": "148785196899115008", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1213130488/arka_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1213130488/arka_normal.png", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "Para aprender un poco de nodejs http://t.co/Bw0yKdjN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:18:22 +0000", "from_user": "mickes", "from_user_id": 13958452, "from_user_id_str": "13958452", "from_user_name": "Mike Ickes", "geo": null, "id": 148784244943110140, "id_str": "148784244943110146", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/599292499/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/599292499/me_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "RT @elijahmanor: \"Write your shell scripts in JavaScript, via Node.js\" by @rauschma #javascript http://t.co/RpKaSKKa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:14:33 +0000", "from_user": "alfamale156", "from_user_id": 61744769, "from_user_id_str": "61744769", "from_user_name": "Andrew Woodcock", "geo": null, "id": 148783283327598600, "id_str": "148783283327598597", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693217959/Daddy_and_Emily_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693217959/Daddy_and_Emily_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Samisdat: Der Server l\\u00E4uft mit @Nodejs Daten speichern in @CouchDB und http://t.co/7KzDdmZH \\u00FCbernimmt die Session. Sch\\u00F6ner Code ohne PHP ;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:12:41 +0000", "from_user": "johnbender", "from_user_id": 17870251, "from_user_id_str": "17870251", "from_user_name": "John Bender", "geo": null, "id": 148782812194017280, "id_str": "148782812194017280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1427029604/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1427029604/profile_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Isn't the callback juggling just overhead given that performance is less often a consideration with shell scripts? http://t.co/o4XFnXSe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:11:00 +0000", "from_user": "ClaudeCK", "from_user_id": 25229814, "from_user_id_str": "25229814", "from_user_name": "John Claude", "geo": null, "id": 148782388099559420, "id_str": "148782388099559425", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Javascript\\u771F\\u662F\\u4E00\\u95E8\\u795E\\u5947\\u7684\\u8BED\\u8A00\\uFF0C\\u524D\\u7AEF\\u5F00\\u53D1\\u5F88\\u91CD\\u8981\\uFF0Cnodejs\\u706B\\u8D77\\u6765\\u4EE5\\u540E\\u4E5F\\u5F00\\u59CB\\u6162\\u6162\\u9002\\u5408\\u540E\\u53F0\\u5F00\\u53D1\\uFF0C\\u751A\\u81F3\\u8FDE\\u6700\\u8FD1\\u8F83\\u706B\\u7684mongodb\\u7528\\u7684\\u4E5F\\u662F\\u7528js\\u3002\\u4E89\\u8BBA\\u4E86\\u90A3\\u4E48\\u591A\\u5E74\\uFF0C\\u6211\\u89C9\\u5F97\\u5176\\u5B9Ejs\\u624D\\u662FThe Next Big", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:10:59 +0000", "from_user": "hnfirehose", "from_user_id": 213117318, "from_user_id_str": "213117318", "from_user_name": "HN Firehose", "geo": null, "id": 148782384802828300, "id_str": "148782384802828289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Write your shell scripts in JavaScript, via Node.js: http://t.co/RFY1RdIo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:10:53 +0000", "from_user": "newtriks", "from_user_id": 5393562, "from_user_id_str": "5393562", "from_user_name": "Simon Bailey", "geo": null, "id": 148782359922212860, "id_str": "148782359922212864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1577340350/E4775C83-C29B-453D-9E9F-BF2039D3A7D9_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1577340350/E4775C83-C29B-453D-9E9F-BF2039D3A7D9_normal", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: http://t.co/uXEkbeUU seems very interesting #nodejs http://t.co/PNrcwUNT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:04:46 +0000", "from_user": "triptych", "from_user_id": 811530, "from_user_id_str": "811530", "from_user_name": "Andrew Wooldridge", "geo": null, "id": 148780821136936960, "id_str": "148780821136936961", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1424805309/208566_10150156924594173_501484172_6445586_6746808_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1424805309/208566_10150156924594173_501484172_6445586_6746808_n_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "RT @elijahmanor: \"Write your shell scripts in JavaScript, via Node.js\" by @rauschma #javascript http://t.co/RpKaSKKa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 15:00:49 +0000", "from_user": "elijahmanor", "from_user_id": 9453872, "from_user_id_str": "9453872", "from_user_name": "Elijah Manor", "geo": null, "id": 148779826709397500, "id_str": "148779826709397504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676583918/dressed-up_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676583918/dressed-up_normal.png", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "\"Write your shell scripts in JavaScript, via Node.js\" by @rauschma #javascript http://t.co/RpKaSKKa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:00:27 +0000", "from_user": "LiaAllmon", "from_user_id": 388147217, "from_user_id_str": "388147217", "from_user_name": "Lia Allmon", "geo": null, "id": 148779732354334720, "id_str": "148779732354334720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1663602881/1153964_red_pullover_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663602881/1153964_red_pullover_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I\\u2019m working on a small browser game myself using jQuery, nodejs and MongoDB with the server doing a gzip JSON response", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:58:46 +0000", "from_user": "pedramp", "from_user_id": 16778637, "from_user_id_str": "16778637", "from_user_name": "Pedram Pourhossein", "geo": null, "id": 148779310780657660, "id_str": "148779310780657664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/699533580/pedram_pourhossein_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/699533580/pedram_pourhossein_copy_normal.jpg", "source": "<a href="http://pedram.mp" rel="nofollow">Pedram</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/EwYyEX6n #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:56:28 +0000", "from_user": "AvanadeFrance", "from_user_id": 322518915, "from_user_id_str": "322518915", "from_user_name": "Avanade France ", "geo": null, "id": 148778730188320770, "id_str": "148778730188320768", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1416947212/Avanade_-_A_normal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1416947212/Avanade_-_A_normal_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @AlainClapaud: #Microsoft baisse les prix d'Azure, augmente sa capacit\\u00E9 et l'ouvre \\u00E0 l'#OpenSource | arsTechnica http://t.co/6w5hLJbx (RT @dbmoore) #Cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:56:24 +0000", "from_user": "ajlopez", "from_user_id": 14567622, "from_user_id_str": "14567622", "from_user_name": "ajlopez", "geo": null, "id": 148778716531662850, "id_str": "148778716531662848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/53769404/spiral_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/53769404/spiral_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: http://t.co/uXEkbeUU seems very interesting #nodejs http://t.co/PNrcwUNT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:55:57 +0000", "from_user": "robinduckett", "from_user_id": 25199675, "from_user_id_str": "25199675", "from_user_name": "Robin Duckett", "geo": null, "id": 148778602807312400, "id_str": "148778602807312386", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1388538320/176841_10150436368780220_859920219_17595419_1074053_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1388538320/176841_10150436368780220_859920219_17595419_1074053_o_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "CNUG: #nodejs Website updated! New date for January, New Eventbrite details: http://t.co/53eKvDVC http://t.co/PaiUgHjD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:55:25 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148778467633278980, "id_str": "148778467633278976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://hotot.org" rel="nofollow">Hotot</a>", "text": "RT @erikzaadi: http://t.co/aZijwLM2 seems very interesting #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:55:23 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148778457793445900, "id_str": "148778457793445888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "http://t.co/uXEkbeUU seems very interesting #nodejs http://t.co/PNrcwUNT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:53:44 +0000", "from_user": "dyoona", "from_user_id": 65305818, "from_user_id_str": "65305818", "from_user_name": "Junhee Woo", "geo": null, "id": 148778045589815300, "id_str": "148778045589815296", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1400927905/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1400927905/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "\\uC870\\uD754 \\uAE00\\uC785\\uB2C8\\uB2E4. \\uB530\\uB77C\\uD558\\uACE0 \\uC788\\uB294\\uB370 \\uB178\\uB4DC 0.4.x\\uB300\\uB294 contextify \\uC124\\uCE58\\uB55C\\uC5D0 \\uC548\\uB418\\uB124\\uC694. \\uCC38\\uACE0 RT @parkto: \"\\uAF2D \\uC54C\\uC544\\uC57C\\uD560 node.js\" \\uBC88\\uC5ED \\uB9C1\\uD06C : http://t.co/NeQks8dG @hyungjoo_ \\uB2D8 \\uBC88\\uC5ED.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:51:23 +0000", "from_user": "p0cket", "from_user_id": 11825642, "from_user_id_str": "11825642", "from_user_name": "Pocket", "geo": null, "id": 148777453693829120, "id_str": "148777453693829120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1462685249/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1462685249/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@ohizkiya I forget if I've sent you this \"Node.js modules you should know about: redis (17 points)\" http://t.co/r8BRdOkz", "to_user": "ohizkiya", "to_user_id": 14302349, "to_user_id_str": "14302349", "to_user_name": "Oren Hizkiya"}, +{"created_at": "Mon, 19 Dec 2011 14:48:46 +0000", "from_user": "jsmanrique", "from_user_id": 6440602, "from_user_id_str": "6440602", "from_user_name": "Manrique Lopez", "geo": null, "id": 148776796085698560, "id_str": "148776796085698560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1606056832/jsmatwohit2011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606056832/jsmatwohit2011_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jgatoluis: #nodejs how to develop web applications with #js and parallel process. It seems interesting, someone know about i? http://t.co/IpiHATjQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:48:41 +0000", "from_user": "teespring_", "from_user_id": 273515759, "from_user_id_str": "273515759", "from_user_name": "Teespring", "geo": null, "id": 148776771213467650, "id_str": "148776771213467648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695025964/Twitter_Logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695025964/Twitter_Logo_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @substack: I like turtles: http://t.co/uoswx4E5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:47:30 +0000", "from_user": "erikzaadi", "from_user_id": 33958650, "from_user_id_str": "33958650", "from_user_name": "Erik Zaadi", "geo": null, "id": 148776473594052600, "id_str": "148776473594052608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/150720288/msn_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/150720288/msn_normal.JPG", "source": "<a href="http://hotot.org" rel="nofollow">Hotot</a>", "text": "http://t.co/aZijwLM2 seems very interesting #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:44:52 +0000", "from_user": "eldios", "from_user_id": 19900662, "from_user_id_str": "19900662", "from_user_name": "Lele 'El Dios'", "geo": null, "id": 148775813762912260, "id_str": "148775813762912256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1019549202/frengo_asciiColor_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1019549202/frengo_asciiColor_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Write your shell scripts in JS; using node.js to write shell scripts in linux environments: http://t.co/eEbptziv http://t.co/nGdtWfjc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:43:35 +0000", "from_user": "francbartoli", "from_user_id": 155518143, "from_user_id_str": "155518143", "from_user_name": "Francesco Bartoli", "geo": null, "id": 148775490528882700, "id_str": "148775490528882688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/993417644/CIMG0127_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/993417644/CIMG0127_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Write your shell scripts in JS; using node.js to write shell scripts in linux environments: http://t.co/eEbptziv http://t.co/nGdtWfjc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:42:40 +0000", "from_user": "jgatoluis", "from_user_id": 254149815, "from_user_id_str": "254149815", "from_user_name": "Jose Gato Luis ", "geo": null, "id": 148775258541932540, "id_str": "148775258541932547", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1249991564/foto-jgato_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1249991564/foto-jgato_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "#nodejs how to develop web applications with #js and parallel process. It seems interesting, someone know about i? http://t.co/IpiHATjQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:42:38 +0000", "from_user": "tbela99", "from_user_id": 18948891, "from_user_id_str": "18948891", "from_user_name": "Thierry Bela", "geo": null, "id": 148775249532563460, "id_str": "148775249532563456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/711413296/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/711413296/twitterProfilePhoto_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Write your shell scripts in JS; using node.js to write shell scripts in linux environments: http://t.co/eEbptziv http://t.co/nGdtWfjc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:38:37 +0000", "from_user": "Nodester", "from_user_id": 240751001, "from_user_id_str": "240751001", "from_user_name": "Nodester", "geo": null, "id": 148774238118084600, "id_str": "148774238118084608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Write your shell scripts in JS; using node.js to write shell scripts in linux environments: http://t.co/eEbptziv http://t.co/nGdtWfjc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:37:59 +0000", "from_user": "chrismatthieu", "from_user_id": 13604142, "from_user_id_str": "13604142", "from_user_name": "Chris Matthieu", "geo": null, "id": 148774080416460800, "id_str": "148774080416460800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/918916153/SuperChrisSmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/918916153/SuperChrisSmall_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Reading up on it now... RT @ryah: this looks pretty awesome http://t.co/yItfWYrF #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:35:29 +0000", "from_user": "pismute", "from_user_id": 124427984, "from_user_id_str": "124427984", "from_user_name": "changwoo park", "geo": null, "id": 148773451606396930, "id_str": "148773451606396931", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1671487070/pismute_profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671487070/pismute_profile_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:34:59 +0000", "from_user": "Ajido", "from_user_id": 19598915, "from_user_id_str": "19598915", "from_user_name": "Ajido", "geo": null, "id": 148773326926528500, "id_str": "148773326926528512", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/679286203/19526_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/679286203/19526_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NodeJS\\u306F\\u30B5\\u30FC\\u30D0\\u7528\\u9014\\u304C\\u30E1\\u30A4\\u30F3\\u3060\\u3051\\u3069\\u3001\\u30B7\\u30B9\\u30C6\\u30E0\\u306E\\u5236\\u5FA1\\uFF08\\uFF1D\\u30B7\\u30A7\\u30EB\\u30B9\\u30AF\\u30EA\\u30D7\\u30C8\\u306E\\u9818\\u57DF\\uFF09\\u306B\\u3082\\u4FBF\\u5229\\u3067\\u3001\\u4ECA\\u3068\\u306A\\u3063\\u3066\\u306F\\u5F53\\u305F\\u308A\\u524D\\u306E\\u30B0\\u30EA\\u30C3\\u30C9\\u51E6\\u7406\\u3084\\u4E26\\u5217\\u51E6\\u7406\\u306E\\u5B9F\\u88C5\\u304C\\u3001\\u8D85\\u624B\\u8EFD\\u306B\\u3067\\u304D\\u3066\\u30AA\\u30B9\\u30B9\\u30E1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:34:10 +0000", "from_user": "tanepiper", "from_user_id": 20693, "from_user_id_str": "20693", "from_user_name": "Tane Piper", "geo": null, "id": 148773120700981250, "id_str": "148773120700981248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1654339360/dizzy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654339360/dizzy_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Write your shell scripts in JS; using node.js to write shell scripts in linux environments: http://t.co/eEbptziv http://t.co/nGdtWfjc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:34:07 +0000", "from_user": "palendae", "from_user_id": 29798769, "from_user_id_str": "29798769", "from_user_name": "Nolan Brubaker", "geo": null, "id": 148773106876551170, "id_str": "148773106876551168", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1609342626/profile_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609342626/profile_pic_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@zeeg nodejs", "to_user": "zeeg", "to_user_id": 15732699, "to_user_id_str": "15732699", "to_user_name": "David Cramer", "in_reply_to_status_id": 148603422269112320, "in_reply_to_status_id_str": "148603422269112320"}, +{"created_at": "Mon, 19 Dec 2011 14:33:04 +0000", "from_user": "Rickard_O", "from_user_id": 182502359, "from_user_id_str": "182502359", "from_user_name": "Rickard Zachrisson", "geo": null, "id": 148772844980011000, "id_str": "148772844980011008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1542951165/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542951165/me_normal.jpg", "source": "<a href="http://js.gd" rel="nofollow">js.gd tweet queue</a>", "text": "RT @jsgoodies: Write your shell scripts in JS; using node.js to write shell scripts in linux environments: http://t.co/FWv9tkbn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:30:49 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148772275070574600, "id_str": "148772275070574593", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @jsgoodies Write your shell scripts in JS; using node.js to write shell scripts in linux environments: http://t.co/78jzLBdl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:30:18 +0000", "from_user": "MaRioBoT", "from_user_id": 17223058, "from_user_id_str": "17223058", "from_user_name": "Mario Botero Fl\\u00F3rez", "geo": null, "id": 148772147622453250, "id_str": "148772147622453248", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1015034050/2b36fa1b-3c37-4de1-b9c6-a65c2228ddbe_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1015034050/2b36fa1b-3c37-4de1-b9c6-a65c2228ddbe_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT: @julitogtu: #Node.js ahora con #Windows Azure https://t.co/QJrqhw4L #BNet #BDotNet #MSDN #MCS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:23:16 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148770376300765200, "id_str": "148770376300765184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://js.gd" rel="nofollow">js.gd tweet queue</a>", "text": "RT @jsgoodies: Write your shell scripts in JS; using node.js to write shell scripts in linux environments: http://t.co/FWv9tkbn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:23:14 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148770369245945860, "id_str": "148770369245945856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Write your shell scripts in JS; using node.js to write shell scripts in linux environments: http://t.co/eEbptziv http://t.co/nGdtWfjc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:19:49 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 148769509476532220, "id_str": "148769509476532224", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "appzone (0.2.5): http://t.co/r1jJJxiF Appzone NodeJS Client", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:06:39 +0000", "from_user": "julitogtu", "from_user_id": 65067674, "from_user_id_str": "65067674", "from_user_name": "Julio Avellaneda", "geo": null, "id": 148766194319622140, "id_str": "148766194319622145", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1544286571/f4a2b0d6-1c85-4123-b101-b3508f9c672d_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544286571/f4a2b0d6-1c85-4123-b101-b3508f9c672d_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "#Node.js ahora con #Windows Azure https://t.co/xpg459pr #BNet #BDotNet #MSDN #MCS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:05:00 +0000", "from_user": "moellenbeck", "from_user_id": 1936981, "from_user_id_str": "1936981", "from_user_name": "Martin M\\u00F6llenbeck", "geo": null, "id": 148765778605383680, "id_str": "148765778605383680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/30569592/FlickrIcon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/30569592/FlickrIcon_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @jasonh: Yes ==> RT @jbueza: wow.. Joyent has their own dhcp, ldap servers written in #NodeJS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:00:04 +0000", "from_user": "jsgoodies", "from_user_id": 222057071, "from_user_id_str": "222057071", "from_user_name": "jsgoodies", "geo": null, "id": 148764540224552960, "id_str": "148764540224552960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1259896749/jsgd_paul_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1259896749/jsgd_paul_normal.png", "source": "<a href="http://js.gd" rel="nofollow">js.gd tweet queue</a>", "text": "Write your shell scripts in JS; using node.js to write shell scripts in linux environments: http://t.co/FWv9tkbn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:58:37 +0000", "from_user": "joono_lee", "from_user_id": 168318363, "from_user_id_str": "168318363", "from_user_name": "\\uC774\\uC900\\uD638", "geo": null, "id": 148764173583650800, "id_str": "148764173583650816", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1423222429/T7ht5U4d_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1423222429/T7ht5U4d_normal", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @parkto: \\uB9C1\\uD06C\\uAC00 \\uAE68\\uC838\\uC11C \\uB2E4\\uC2DC @hyungjoo_ @pkrumins\\uAC00 \\uC791\\uC131\\uD55C \"\\uAF2D \\uC54C\\uC544\\uC57C\\uD55C node.js \\uBAA8\\uB4C8\" \\uC5F0\\uC7AC \\uBC88\\uC5ED. \\uD604\\uC7AC \\uCD1D 10\\uAC1C\\uC758 \\uAC8C\\uC2DC\\uBB3C\\uC911 7\\uAC1C\\uB97C \\uBC88\\uC5ED\\uD588\\uC2B5\\uB2C8\\uB2E4. \\uAD00\\uC2EC\\uC788\\uC73C\\uC2E0 \\uBD84\\uB4E4\\uC740 \\uC81C \\uBE14\\uB85C\\uADF8(nodejs-kr.org/insidejs)\\uC5D0 \\uBC29\\uBB38\\uD574\\uC8FC\\uC138\\uC694.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:48:26 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148761609840492540, "id_str": "148761609840492544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @Nicollemip: mindstorms: NoSQL: Attacking NoSQL and Node.js: Server-Side JavaScript _Injection_ (SSJS) http://t.co/669ojHHz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:48:24 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148761601426722800, "id_str": "148761601426722816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "mindstorms: NoSQL: Attacking NoSQL and Node.js: Server-Side JavaScript _Injection_ (SSJS) http://t.co/Xtq3qFTq http://t.co/WQGvSBgC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:47:27 +0000", "from_user": "zerobellalex", "from_user_id": 111588868, "from_user_id_str": "111588868", "from_user_name": "\\uAE40\\uC885\\uD6C8/Alex Kim", "geo": null, "id": 148761363827798000, "id_str": "148761363827798016", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1061328829/caillou-300x289_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1061328829/caillou-300x289_normal.gif", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @parkto: \"\\uAF2D \\uC54C\\uC544\\uC57C\\uD560 node.js\" \\uBC88\\uC5ED \\uB9C1\\uD06C : http://t.co/yBlFH0ST @hyungjoo_ \\uB2D8 \\uBC88\\uC5ED.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:41:11 +0000", "from_user": "Nicollemip", "from_user_id": 386032728, "from_user_id_str": "386032728", "from_user_name": "Nicolle Place", "geo": null, "id": 148759786014519300, "id_str": "148759786014519296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1575428783/pr3lnd55oe_133437437-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575428783/pr3lnd55oe_133437437-2_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "mindstorms: NoSQL: Attacking NoSQL and Node.js: Server-Side JavaScript _Injection_ (SSJS) http://t.co/669ojHHz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:39:23 +0000", "from_user": "teflonted", "from_user_id": 845611, "from_user_id_str": "845611", "from_user_name": "Teflon Ted", "geo": null, "id": 148759332983541760, "id_str": "148759332983541760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/387803769/2990377114_e10b9cabe6_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/387803769/2990377114_e10b9cabe6_o_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "\"NodeJS Web Framework written in CoffeeScript\" - that sounds sexy. when it has the maturity of rails i'll be all over it.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:36:27 +0000", "from_user": "AndyJ", "from_user_id": 6203362, "from_user_id_str": "6203362", "from_user_name": "Andy Jarrett", "geo": null, "id": 148758593611628540, "id_str": "148758593611628545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1610771482/Photo_on_28-10-2011_at_15.31__4_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610771482/Photo_on_28-10-2011_at_15.31__4_copy_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Loading from node_module folders within your app http://t.co/FG7r4CO0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:26:05 +0000", "from_user": "HanamiSolutions", "from_user_id": 325460307, "from_user_id_str": "325460307", "from_user_name": "Fabrizio Bartoloni", "geo": null, "id": 148755986360967170, "id_str": "148755986360967169", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1659360576/345f009b-0b90-4c7d-9fd1-5ec7d027f1cb_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659360576/345f009b-0b90-4c7d-9fd1-5ec7d027f1cb_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @arnejenssen: Toolbox for #nodejs http://t.co/DAKR0TNm via @nodetoolbox", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:25:13 +0000", "from_user": "arnejenssen", "from_user_id": 226237233, "from_user_id_str": "226237233", "from_user_name": "Arne Jenssen", "geo": null, "id": 148755769364451330, "id_str": "148755769364451328", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1640373213/Screen_Shot_2011-11-15_at_15.38.04__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640373213/Screen_Shot_2011-11-15_at_15.38.04__normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Toolbox for #nodejs http://t.co/DAKR0TNm via @nodetoolbox", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:23:14 +0000", "from_user": "hitoriblog", "from_user_id": 5862512, "from_user_id_str": "5862512", "from_user_name": "moyashi", "geo": null, "id": 148755270653325300, "id_str": "148755270653325313", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/55840562/face_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/55840562/face_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "utf-8\\u3057\\u304B\\u4F7F\\u3048\\u306A\\u3044\\u3068\\u601D\\u3044\\u304D\\u3084node-iconv\\u3063\\u3066\\u3044\\u3046\\u306E\\u304C\\u3042\\u308B\\u306E\\u306D\\u3002\\u901F\\u3044V8\\u3067\\u30A4\\u30F3\\u30BF\\u30D7\\u30EA\\u30BF\\u3068\\u3057\\u3066\\u3082\\u4F7F\\u3048\\u3066\\u30B9\\u30AF\\u30EC\\u30A4\\u30D4\\u30F3\\u30B0\\u3082\\u5B8C\\u74A7\\u3060\\u3068\\u3001Ruby/Python\\u3088\\u308A\\u52DD\\u308B\\u5C40\\u9762\\u3082\\u3042\\u308A\\u305D\\u3046 \"nodejs\\u3067jQuery\\u30B9\\u30AF\\u30EC\\u30A4\\u30D4\\u30F3\\u30B0\" http://t.co/vZOsvuny", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:18:58 +0000", "from_user": "jfroma", "from_user_id": 26559849, "from_user_id_str": "26559849", "from_user_name": "Jos\\u00E9 F. Romaniello", "geo": null, "id": 148754196752109570, "id_str": "148754196752109568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1152169901/avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1152169901/avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @o_amp_o: Intersect - A multi-user audio sequencer using #nodejs, #socketio and #audiolet. http://t.co/2zM3gb5U", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:18:18 +0000", "from_user": "frr149", "from_user_id": 105482552, "from_user_id_str": "105482552", "from_user_name": "Fernando Rodr\\u00EDguez", "geo": null, "id": 148754026664693760, "id_str": "148754026664693760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1617824239/portrait_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1617824239/portrait_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Intersect - A multi-user audio sequencer using #nodejs, #socketio and #audiolet. http://t.co/0uVAMXGA http://t.co/RqWyYTJM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:17:22 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148753790647025660, "id_str": "148753790647025664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @o_amp_o: Intersect - A multi-user audio sequencer using #nodejs, #socketio and #audiolet. http://t.co/2zM3gb5U", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:17:02 +0000", "from_user": "aredridel", "from_user_id": 17950990, "from_user_id_str": "17950990", "from_user_name": "Aria Stewart", "geo": null, "id": 148753707075502080, "id_str": "148753707075502080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/66907688/Ari-100x100_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/66907688/Ari-100x100_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @jasonh: Yes ==> RT @jbueza: wow.. Joyent has their own dhcp, ldap servers written in #NodeJS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:14:32 +0000", "from_user": "julienhuang", "from_user_id": 15600658, "from_user_id_str": "15600658", "from_user_name": "Julien Huang", "geo": null, "id": 148753081079824400, "id_str": "148753081079824384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/918074489/n1370959179_30046827_1624_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/918074489/n1370959179_30046827_1624_2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @sdouche: Technology behind Rackspace Cloud Monitoring / The Switch: Python to Node.js #python #nodejs - http://t.co/mxkJw4pK / http://t.co/AHATodsR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:09:01 +0000", "from_user": "ainame", "from_user_id": 15647680, "from_user_id_str": "15647680", "from_user_name": "Satoshi Namai", "geo": null, "id": 148751689720139780, "id_str": "148751689720139777", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691272796/301570_261387710566938_100000871336323_711540_156447265_n_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691272796/301570_261387710566938_100000871336323_711540_156447265_n_normal.jpeg", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "\\u3061\\u3087\\u304F\\u3061\\u3087\\u304F\\u8AAD\\u3080\\u3053\\u3068\\u306B\\u3057\\u307E\\u3059 / \\u201CNode.js Manual & Documentation\\u201D http://t.co/LLcBBoVd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:03:53 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 148750397912268800, "id_str": "148750397912268800", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejschina: Joyent's Ryan Dahl\\nhttp://t.co/vKPMBsHd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:57:08 +0000", "from_user": "dhofstet", "from_user_id": 9478792, "from_user_id_str": "9478792", "from_user_name": "Daniel Hofstetter", "geo": null, "id": 148748702293573630, "id_str": "148748702293573632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/35170612/dhofstet_bw_150x150_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/35170612/dhofstet_bw_150x150_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"If something is not documented, it's safe to assume it's either internal, deprecated or in 'private beta' mode.\" #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:50:55 +0000", "from_user": "matthewswallace", "from_user_id": 5477442, "from_user_id_str": "5477442", "from_user_name": "Matthew Wallace", "geo": null, "id": 148747136891228160, "id_str": "148747136891228160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1586875731/avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586875731/avatar_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: History of #NodeJS -- http://t.co/pF55CNRK \"v8 is a masterpiece of software\" -- wow! http://t.co/VUVfD8H4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:50:31 +0000", "from_user": "hitoriblog", "from_user_id": 5862512, "from_user_id_str": "5862512", "from_user_name": "moyashi", "geo": null, "id": 148747035238088700, "id_str": "148747035238088705", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/55840562/face_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/55840562/face_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "node.js\\u3063\\u3066JavaScript\\u30A4\\u30F3\\u30BF\\u30D7\\u30EA\\u30BF\\u3060\\u3063\\u305F\\u306E\\u304B\\uFF01\\u30A4\\u30F3\\u30BF\\u30E9\\u30AF\\u30C6\\u30A3\\u30D6\\u30B7\\u30A7\\u30EB\\u3082\\u3042\\u308B\\u3057\\u3001\\u30D1\\u30C3\\u30B1\\u30FC\\u30B8\\u7BA1\\u7406\\u30C4\\u30FC\\u30EB\\u307F\\u305F\\u3044\\u306A\\u306E\\u3082\\u3042\\u308B\\u3057 http://t.co/kuDDMn2s (via @gnue )", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:47:06 +0000", "from_user": "o_amp_o", "from_user_id": 19656815, "from_user_id_str": "19656815", "from_user_name": "Joe Turner", "geo": null, "id": 148746175862939650, "id_str": "148746175862939648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/602345265/joe_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/602345265/joe_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Intersect - A multi-user audio sequencer using #nodejs, #socketio and #audiolet. http://t.co/2zM3gb5U", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:46:09 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148745935348961280, "id_str": "148745935348961281", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "new joyent academic program: funding research, enabling research. #instrumentation #nodejs #client http://t.co/za5u1ZJx http://t.co/JuIlkxaG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:44:54 +0000", "from_user": "Hprun", "from_user_id": 409868335, "from_user_id_str": "409868335", "from_user_name": "Hprun", "geo": null, "id": 148745623720574980, "id_str": "148745623720574976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1633356998/Hprun_AZO_glow_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633356998/Hprun_AZO_glow_normal.jpg", "source": "<a href="http://nurph.com" rel="nofollow">Nurph</a>", "text": "@monkchips @julioprotzek @pedramp theres's a real-time channel of Node.js tweets on http://t.co/Sayo4zrm #nodejs", "to_user": "monkchips", "to_user_id": 61233, "to_user_id_str": "61233", "to_user_name": "James Governor", "in_reply_to_status_id": 148745270572744700, "in_reply_to_status_id_str": "148745270572744705"}, +{"created_at": "Mon, 19 Dec 2011 12:44:11 +0000", "from_user": "hitoriblog", "from_user_id": 5862512, "from_user_id_str": "5862512", "from_user_name": "moyashi", "geo": null, "id": 148745440781803520, "id_str": "148745440781803522", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/55840562/face_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/55840562/face_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@gnue \\u304A\\u304A\\u304A\\uFF01\\u3053\\u3046\\u3044\\u3046\\u3082\\u306E\\u3060\\u3063\\u305F\\u306E\\u304B\\uFF01\\u3042\\u3056\\u3063\\u3059\\uFF01http://t.co/1HVEhldr\\u306D\\uFF01", "to_user": "gnue", "to_user_id": 15647244, "to_user_id_str": "15647244", "to_user_name": "GNUE(\\u9D7A)", "in_reply_to_status_id": 148744578051223550, "in_reply_to_status_id_str": "148744578051223553"}, +{"created_at": "Mon, 19 Dec 2011 12:43:38 +0000", "from_user": "pedramp", "from_user_id": 16778637, "from_user_id_str": "16778637", "from_user_name": "Pedram Pourhossein", "geo": null, "id": 148745301728051200, "id_str": "148745301728051200", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/699533580/pedram_pourhossein_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/699533580/pedram_pourhossein_copy_normal.jpg", "source": "<a href="http://pedram.mp" rel="nofollow">Pedram</a>", "text": "image color palette extraction lib for #nodejs - https://t.co/joJbFHpa via(@rauchg)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:43:30 +0000", "from_user": "monkchips", "from_user_id": 61233, "from_user_id_str": "61233", "from_user_name": "James Governor", "geo": null, "id": 148745270572744700, "id_str": "148745270572744705", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627071088/hairstyle_oval_face_women-275x300_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627071088/hairstyle_oval_face_women-275x300_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "new joyent academic program: funding research, enabling research. #instrumentation #nodejs #client http://t.co/nlxmwrzg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:36:28 +0000", "from_user": "julioprotzek", "from_user_id": 7938202, "from_user_id_str": "7938202", "from_user_name": "Julio Protzek", "geo": null, "id": 148743500614209540, "id_str": "148743500614209536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/935415002/dr_manhatan_head_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/935415002/dr_manhatan_head_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:32:21 +0000", "from_user": "briandesu", "from_user_id": 50737284, "from_user_id_str": "50737284", "from_user_name": "Brian", "geo": null, "id": 148742464684048400, "id_str": "148742464684048384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1692341372/rawr_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692341372/rawr_normal.png", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "@NodeJsCommunity Write EVERYTHING in Javascript with Node.js! :D #nodejs", "to_user": "NodeJsCommunity", "to_user_id": 402824193, "to_user_id_str": "402824193", "to_user_name": "NodeJS Community", "in_reply_to_status_id": 148738151807070200, "in_reply_to_status_id_str": "148738151807070209"}, +{"created_at": "Mon, 19 Dec 2011 12:27:54 +0000", "from_user": "Hprun", "from_user_id": 409868335, "from_user_id_str": "409868335", "from_user_name": "Hprun", "geo": null, "id": 148741343399772160, "id_str": "148741343399772161", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1633356998/Hprun_AZO_glow_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633356998/Hprun_AZO_glow_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I'm a big fan of #nodejs & coffescript", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:25:07 +0000", "from_user": "alessioalex", "from_user_id": 159135821, "from_user_id_str": "159135821", "from_user_name": "alessio alex", "geo": null, "id": 148740644519673860, "id_str": "148740644519673856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1020302694/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1020302694/avatar_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 #html5 #css3 http:... http://t.co/p2AzQPCi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:23:42 +0000", "from_user": "NeilCauldwell", "from_user_id": 65543, "from_user_id_str": "65543", "from_user_name": "Neil Cauldwell", "geo": null, "id": 148740286242230270, "id_str": "148740286242230272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/40045492/me_in_tux_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/40045492/me_in_tux_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ryah There's a real-time channel of the #nodejs tweets on http://t.co/FpoTAI0w . Funnily enough it's powered by Node.js too :)", "to_user": "ryah", "to_user_id": 18975861, "to_user_id_str": "18975861", "to_user_name": "Ryan Dahl", "in_reply_to_status_id": 148659426897825800, "in_reply_to_status_id_str": "148659426897825792"}, +{"created_at": "Mon, 19 Dec 2011 12:23:40 +0000", "from_user": "Frozzare", "from_user_id": 17970859, "from_user_id_str": "17970859", "from_user_name": "Fredrik Forsmo", "geo": null, "id": 148740278205952000, "id_str": "148740278205952000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1552171719/twitter3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552171719/twitter3_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:21:39 +0000", "from_user": "genexp", "from_user_id": 12551, "from_user_id_str": "12551", "from_user_name": "Brian Corrigan", "geo": null, "id": 148739771739541500, "id_str": "148739771739541504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1515129325/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515129325/profile_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @jedisct1: CoreJS \\u2014 A web framework in #coffeescript for #nodejs: http://t.co/yBB46F4K", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:20:49 +0000", "from_user": "mareksuscak", "from_user_id": 66651296, "from_user_id_str": "66651296", "from_user_name": "Marek \\u0160u\\u0161\\u010D\\u00E1k", "geo": null, "id": 148739561537814530, "id_str": "148739561537814528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1417805804/f2250bd932d8a3d4987f9135bd04a5dd_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1417805804/f2250bd932d8a3d4987f9135bd04a5dd_normal.jpeg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:20:01 +0000", "from_user": "TheDeveloper", "from_user_id": 18001569, "from_user_id_str": "18001569", "from_user_name": "Geoff Wagstaff", "geo": null, "id": 148739358252466180, "id_str": "148739358252466176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1413195938/the_developer_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1413195938/the_developer_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:19:35 +0000", "from_user": "ya_pulser", "from_user_id": 159236194, "from_user_id_str": "159236194", "from_user_name": "Ilya Teterin", "geo": null, "id": 148739250605658100, "id_str": "148739250605658112", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1021173775/pulser_stepsel_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1021173775/pulser_stepsel_normal.gif", "source": "<a href="http://gun.io/#" rel="nofollow">Harbbl</a>", "text": "RT @GUNdotIO: New Open Source gig: Neo4j Node.js adapter http://t.co/KfQtLCYh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:18:40 +0000", "from_user": "whalesalad", "from_user_id": 31412599, "from_user_id_str": "31412599", "from_user_name": "Michael Whalen", "geo": null, "id": 148739021479219200, "id_str": "148739021479219200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1607946945/IMG_4864_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607946945/IMG_4864_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:15:15 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148738159784624130, "id_str": "148738159784624129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @strzel_a: Write your shell scripts in JavaScript, via Node.js - http://t.co/RNVTbqPG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:15:13 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148738151807070200, "id_str": "148738151807070209", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Write your shell scripts in JavaScript, via Node.js - http://t.co/SL5Msixg http://t.co/MCDZlR1D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:09:12 +0000", "from_user": "alessioalex", "from_user_id": 159135821, "from_user_id_str": "159135821", "from_user_name": "alessio alex", "geo": null, "id": 148736636241448960, "id_str": "148736636241448960", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1020302694/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1020302694/avatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tjholowaychuk: palette - image color palette extraction lib for #nodejs - https://t.co/bwzPe8NP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:05:44 +0000", "from_user": "jashkenas", "from_user_id": 123323498, "from_user_id_str": "123323498", "from_user_name": "Jeremy Ashkenas", "geo": null, "id": 148735767231987700, "id_str": "148735767231987712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1185870726/gravatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1185870726/gravatar_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:04:42 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148735506404999170, "id_str": "148735506404999168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @masylum: How to deploy a #nodejs application with monit, nginx and bouncy http://t.co/8gEkfjgo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:04:40 +0000", "from_user": "alessioalex", "from_user_id": 159135821, "from_user_id_str": "159135821", "from_user_name": "alessio alex", "geo": null, "id": 148735496837791740, "id_str": "148735496837791744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1020302694/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1020302694/avatar_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: How to deploy a #nodejs application with monit, nginx and bouncy http://t.co/1eelJRiJ http://t.co/rBHaO2VF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:00:06 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 148734346038226940, "id_str": "148734346038226944", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Joyent's Ryan Dahl\\nhttp://t.co/vKPMBsHd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:58:48 +0000", "from_user": "alessioalex", "from_user_id": 159135821, "from_user_id_str": "159135821", "from_user_name": "alessio alex", "geo": null, "id": 148734021453611000, "id_str": "148734021453611009", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1020302694/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1020302694/avatar_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: how to make a major tech shift switching from #python to #nodejs http://t.co/F0c5ncwm http://t.co/NGSWL7v4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:58:39 +0000", "from_user": "aaromnido", "from_user_id": 105176513, "from_user_id_str": "105176513", "from_user_name": "Fernando Val", "geo": null, "id": 148733983058956300, "id_str": "148733983058956288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1258768022/fer-avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1258768022/fer-avatar_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "So nice Bootstrap use! @ivanloire [Blog post] Example what #NodeJs is REALLY good at: high performance HTTP monitor: bit.ly/ruQwqT #node.js", "to_user": "ivanloire", "to_user_id": 24971085, "to_user_id_str": "24971085", "to_user_name": "Ivan Loire", "in_reply_to_status_id": 148705668910694400, "in_reply_to_status_id_str": "148705668910694400"}, +{"created_at": "Mon, 19 Dec 2011 11:57:08 +0000", "from_user": "aaromnido", "from_user_id": 105176513, "from_user_id_str": "105176513", "from_user_name": "Fernando Val", "geo": null, "id": 148733602438451200, "id_str": "148733602438451200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1258768022/fer-avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1258768022/fer-avatar_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ivanloire: [Blog post] Example of what #NodeJs is REALLY good at: a single threaded high performance HTTP monitor: http://t.co/Gc0waJVQ #node.js", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:56:17 +0000", "from_user": "kotsutsumi", "from_user_id": 69088395, "from_user_id_str": "69088395", "from_user_name": "\\u5C0F\\u5824\\u4E00\\u5F18", "geo": null, "id": 148733386951884800, "id_str": "148733386951884800", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/561666580/XenophyLogoOnly_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/561666580/XenophyLogoOnly_normal.gif", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "nodejs\\u3060\\u3051\\u3069ExtJS\\u3063\\u307D\\u304F\\u304B\\u3051\\u308B\\u306E\\u3002siesta\\u3063\\u307D\\u304F\\u3059\\u308B\\u306E\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:55:50 +0000", "from_user": "kuzrob", "from_user_id": 311927144, "from_user_id_str": "311927144", "from_user_name": "Robert Kuzelj", "geo": null, "id": 148733274502610940, "id_str": "148733274502610944", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1395675349/rk_twitter_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1395675349/rk_twitter_normal.JPG", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Intro into Node Modules Part III - CLI FAQ\\nhttp://t.co/gW6cFkkY\\n#nodejs #npmjs \\nplease RT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:51:58 +0000", "from_user": "strzel_a", "from_user_id": 89807885, "from_user_id_str": "89807885", "from_user_name": "Strzelewicz Alex", "geo": null, "id": 148732300685869060, "id_str": "148732300685869056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1176849150/img_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1176849150/img_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Write your shell scripts in JavaScript, via Node.js - http://t.co/RNVTbqPG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:42:22 +0000", "from_user": "MartinMinaya", "from_user_id": 34531045, "from_user_id_str": "34531045", "from_user_name": "Martin Minaya", "geo": null, "id": 148729883961458700, "id_str": "148729883961458688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1652439158/388455_2701858272651_1442547691_32964190_671622495_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652439158/388455_2701858272651_1442547691_32964190_671622495_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:42:14 +0000", "from_user": "dineshbhoopathy", "from_user_id": 25660336, "from_user_id_str": "25660336", "from_user_name": "dinesh bhoopathy", "geo": null, "id": 148729851493363700, "id_str": "148729851493363712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/960060000/IMG_2505_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/960060000/IMG_2505_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @derdesign: CoreJS - An MVC Web Application Framework for NodeJS http://t.co/HobzxkKX (Please RT)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:42:12 +0000", "from_user": "MartinMinaya", "from_user_id": 34531045, "from_user_id_str": "34531045", "from_user_name": "Martin Minaya", "geo": null, "id": 148729844014919680, "id_str": "148729844014919680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1652439158/388455_2701858272651_1442547691_32964190_671622495_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652439158/388455_2701858272651_1442547691_32964190_671622495_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @derdesign: CoreJS - An MVC Web Application Framework for NodeJS http://t.co/HobzxkKX (Please RT)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:39:39 +0000", "from_user": "hostvirtual", "from_user_id": 20729979, "from_user_id_str": "20729979", "from_user_name": "hostvirtual", "geo": null, "id": 148729199723675650, "id_str": "148729199723675648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/148547296/hv-logo-only_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/148547296/hv-logo-only_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @derdesign: CoreJS - An MVC Web Application Framework for NodeJS http://t.co/HobzxkKX (Please RT)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:39:30 +0000", "from_user": "hostvirtual", "from_user_id": 20729979, "from_user_id_str": "20729979", "from_user_name": "hostvirtual", "geo": null, "id": 148729163610722300, "id_str": "148729163610722305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/148547296/hv-logo-only_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/148547296/hv-logo-only_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @derdesign: Designing the website for an Open Source Web Framework for NodeJS I'm about to release at Github. Stay tuned :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:39:20 +0000", "from_user": "felipefdeaguiar", "from_user_id": 48890724, "from_user_id_str": "48890724", "from_user_name": "Felipe F. de Aguiar", "geo": null, "id": 148729120795279360, "id_str": "148729120795279361", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701375229/04_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701375229/04_normal.jpg", "source": "Zite Personalized Magazine", "text": "RT @dump: Web framework para NodeJS escrito em CoffeeScript http://t.co/O2ugiVYT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:36:44 +0000", "from_user": "ifreenow", "from_user_id": 179905855, "from_user_id_str": "179905855", "from_user_name": "Kun Wang", "geo": null, "id": 148728468803297280, "id_str": "148728468803297280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1107796953/11_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1107796953/11_normal.gif", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @PabloSerbo: Ensure that long live assets (css,js,png etc) don't get stuck in your users browser/proxy with versionator https://t.co/RCRGe8os #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:32:24 +0000", "from_user": "ifreenow", "from_user_id": 179905855, "from_user_id_str": "179905855", "from_user_name": "Kun Wang", "geo": null, "id": 148727375381790720, "id_str": "148727375381790721", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1107796953/11_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1107796953/11_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Technology behind Rackspace Cloud Monitoring / The Switch: Python to Node.js #python #nodejs - http://t.co/mxk... http://t.co/Acq15jEh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:24:48 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148725463643197440, "id_str": "148725463643197440", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @cierniak Node.js - First Impressions http://t.co/hqP9XoKM via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:24:48 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148725462527516670, "id_str": "148725462527516672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @liquuid dump: Web framework para NodeJS escrito em CoffeeScript http://t.co/4v4t2fHb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:24:47 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148725461118226430, "id_str": "148725461118226432", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @FriendsOfNodeJS dump: Web framework para NodeJS escrito em CoffeeScript http://t.co/4v4t2fHb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:23:04 +0000", "from_user": "tueoxenvad", "from_user_id": 201205649, "from_user_id_str": "201205649", "from_user_name": "Tue Oxenvad", "geo": null, "id": 148725029029421060, "id_str": "148725029029421057", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1175381630/buddy_icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1175381630/buddy_icon_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "MVC Web Framework for NodeJS http://t.co/PkyttrZ3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:20:14 +0000", "from_user": "cierniak", "from_user_id": 14637908, "from_user_id_str": "14637908", "from_user_name": "Michal Cierniak", "geo": null, "id": 148724316433956860, "id_str": "148724316433956865", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1430256685/michal4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1430256685/michal4_normal.jpg", "source": "Zite Personalized Magazine", "text": "Node.js - First Impressions http://t.co/dOloon49 via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:17:41 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 148723674931937280, "id_str": "148723674931937280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Yes ==> RT @jbueza: wow.. Joyent has their own dhcp, ldap servers written in #NodeJS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:09:44 +0000", "from_user": "thomasf", "from_user_id": 15242522, "from_user_id_str": "15242522", "from_user_name": "Fritz Thomas", "geo": null, "id": 148721670784426000, "id_str": "148721670784425984", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/56438285/Cow-Avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/56438285/Cow-Avatar_normal.png", "source": "<a href="http://gun.io/#" rel="nofollow">Harbbl</a>", "text": "RT @GUNdotIO: New Open Source gig: Neo4j Node.js adapter http://t.co/KfQtLCYh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:05:03 +0000", "from_user": "n1k0", "from_user_id": 6619162, "from_user_id_str": "6619162", "from_user_name": "Nicolas Perriault", "geo": null, "id": 148720493862727680, "id_str": "148720493862727681", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1509704854/meblur_bw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509704854/meblur_bw_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@_kemar tu crois que c'est nodejs le robot ? :o", "to_user": "_kemar", "to_user_id": 5785262, "to_user_id_str": "5785262", "to_user_name": "kemar", "in_reply_to_status_id": 148686831574192130, "in_reply_to_status_id_str": "148686831574192128"}, +{"created_at": "Mon, 19 Dec 2011 10:57:20 +0000", "from_user": "morteza_milani", "from_user_id": 166104316, "from_user_id_str": "166104316", "from_user_name": "Morteza Milani", "geo": null, "id": 148718552407490560, "id_str": "148718552407490560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681214380/me2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681214380/me2_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @PabloSerbo: Ensure that long live assets (css,js,png etc) don't get stuck in your users browser/proxy with versionator https://t.co/RCRGe8os #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:50:54 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148716931476754430, "id_str": "148716931476754433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @PabloSerbo: Ensure that long live assets (css,js,png etc) don't get stuck in your users browser/proxy with versionator https://t.co/RCRGe8os #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 10:50:54 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148716931476754430, "id_str": "148716931476754433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @PabloSerbo: Ensure that long live assets (css,js,png etc) don't get stuck in your users browser/proxy with versionator https://t.co/RCRGe8os #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:47:22 +0000", "from_user": "liquuid", "from_user_id": 14384960, "from_user_id_str": "14384960", "from_user_name": "liquuid", "geo": null, "id": 148716045828493300, "id_str": "148716045828493313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675903083/2011-12-05-185028_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675903083/2011-12-05-185028_normal.jpg", "source": "Zite Personalized Magazine", "text": "RT @dump: Web framework para NodeJS escrito em CoffeeScript http://t.co/O2ugiVYT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:42:42 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148714871440162800, "id_str": "148714871440162816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "Zite Personalized Magazine", "text": "RT @dump: Web framework para NodeJS escrito em CoffeeScript http://t.co/O2ugiVYT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:42:41 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148714863156400130, "id_str": "148714863156400128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Web framework para NodeJS escrito em CoffeeScript http://t.co/g8NO5fps http://t.co/cqzJPOzH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:42:33 +0000", "from_user": "adg314159", "from_user_id": 51143205, "from_user_id_str": "51143205", "from_user_name": "Arnold de Groot", "geo": null, "id": 148714832953212930, "id_str": "148714832953212928", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://www.apple.com" rel="nofollow">Safari on iOS</a>", "text": "Microsoft embraces #nodejs ? http://t.co/MY8iP66w", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:36:55 +0000", "from_user": "luisruizpavon", "from_user_id": 14489175, "from_user_id_str": "14489175", "from_user_name": "luisruizpavon", "geo": null, "id": 148713413722390530, "id_str": "148713413722390528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1258411827/luru_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1258411827/luru_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ivanloire: [Blog post] Example of what #NodeJs is REALLY good at: a single threaded high performance HTTP monitor: http://t.co/Gc0waJVQ #node.js", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:27:14 +0000", "from_user": "rgaidot", "from_user_id": 1245801, "from_user_id_str": "1245801", "from_user_name": "R\\u00E9gis Gaidot", "geo": null, "id": 148710979033763840, "id_str": "148710979033763840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1266738841/avatar-6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266738841/avatar-6_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "RT @GUNdotIO: New Open Source gig: Neo4j Node.js adapter http://t.co/GP6PrRRk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:27:09 +0000", "from_user": "dump", "from_user_id": 2665521, "from_user_id_str": "2665521", "from_user_name": "Christiano Anderson", "geo": null, "id": 148710955373707260, "id_str": "148710955373707265", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1603318086/avatar_twitter2_transp_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1603318086/avatar_twitter2_transp_normal.png", "source": "Zite Personalized Magazine", "text": "Web framework para NodeJS escrito em CoffeeScript http://t.co/O2ugiVYT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:21:45 +0000", "from_user": "SUKAIWARD", "from_user_id": 196305288, "from_user_id_str": "196305288", "from_user_name": "Idir IBOUCHICHENE", "geo": null, "id": 148709598034010100, "id_str": "148709598034010112", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1133306473/programmation_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1133306473/programmation_normal.jpg", "source": "<a href="http://www.scoop.it" rel="nofollow">Scoop.it</a>", "text": "RT @cjean_dev: LemonNode.js nouvel SSO en javascript http://t.co/rJuCwTUP #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:21:29 +0000", "from_user": "cjean_dev", "from_user_id": 248265595, "from_user_id_str": "248265595", "from_user_name": "Christophe Jean", "geo": null, "id": 148709528777658370, "id_str": "148709528777658368", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1236625278/thumbs-up_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1236625278/thumbs-up_normal.jpg", "source": "<a href="http://www.scoop.it" rel="nofollow">Scoop.it</a>", "text": "LemonNode.js nouvel SSO en javascript http://t.co/rJuCwTUP #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:20:17 +0000", "from_user": "NeCkEr", "from_user_id": 14176673, "from_user_id_str": "14176673", "from_user_name": "NeCkEr", "geo": null, "id": 148709229384052740, "id_str": "148709229384052736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1656954487/imgSnow_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656954487/imgSnow_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:17:59 +0000", "from_user": "bad_at_math", "from_user_id": 183217980, "from_user_id_str": "183217980", "from_user_name": "juske the badatmath", "geo": null, "id": 148708650129702900, "id_str": "148708650129702912", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1111214185/Untitled1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1111214185/Untitled1_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Node\\u306ET\\u30B7\\u30E3\\u30C4\\u8CA9\\u58F2\\u4E2D \\u3042\\u306E\\u4E80\\u306E\\u30A4\\u30E9\\u30B9\\u30C8\\u304C\\uFF01\\u3067\\u3082\\u3069\\u306E\\u30B5\\u30A4\\u30C8\\u306E\\u30A4\\u30E9\\u30B9\\u30C8\\u3060\\u3063\\u3051\\u304B\\u3002 http://t.co/c8GdjsZV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:13:49 +0000", "from_user": "julitrows", "from_user_id": 361122451, "from_user_id_str": "361122451", "from_user_name": "Julio Antequera", "geo": null, "id": 148707602115723260, "id_str": "148707602115723264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1688583546/290537_273787959339468_100001247993397_812696_1266700678_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688583546/290537_273787959339468_100001247993397_812696_1266700678_o_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @dalmaer: CoreJS is a CoffeeSCript MVC framework for NodeJS for non-trivial apps http://t.co/z42wvabq /by Ernesto M\\u00E9ndez", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:12:19 +0000", "from_user": "RikTarWeb", "from_user_id": 85145062, "from_user_id_str": "85145062", "from_user_name": "Riccardo Tartaglia", "geo": null, "id": 148707222120181760, "id_str": "148707222120181760", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1276933465/io_bw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1276933465/io_bw_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "sviluppando con websocket e nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:12:00 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148707141555986430, "id_str": "148707141555986433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ivanloire: [Blog post] Example of what #NodeJs is REALLY good at: a single threaded high performance HTTP monitor: http://t.co/Gc0waJVQ #node.js", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:11:58 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148707135105146880, "id_str": "148707135105146880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "[Blog post] Example of what #NodeJs is REALLY good at: a single threaded high performance HTTP monitor: http://t... http://t.co/KSldmKlD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:11:35 +0000", "from_user": "TrozosDePollo", "from_user_id": 338914474, "from_user_id_str": "338914474", "from_user_name": "vnk", "geo": null, "id": 148707037096837120, "id_str": "148707037096837120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1452855626/trozos-de-pollo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1452855626/trozos-de-pollo_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ivanloire: [Blog post] Example of what #NodeJs is REALLY good at: a single threaded high performance HTTP monitor: http://t.co/Gc0waJVQ #node.js", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:11:02 +0000", "from_user": "neo4j", "from_user_id": 22467617, "from_user_id_str": "22467617", "from_user_name": "Neo4j", "geo": null, "id": 148706898538012670, "id_str": "148706898538012672", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/195275920/square-logo-no-text-2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/195275920/square-logo-no-text-2_normal.png", "source": "<a href="http://gun.io/#" rel="nofollow">Harbbl</a>", "text": "RT @GUNdotIO: New Open Source gig: Neo4j Node.js adapter http://t.co/KfQtLCYh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:09:47 +0000", "from_user": "pablojimeno", "from_user_id": 73153128, "from_user_id_str": "73153128", "from_user_name": "Pablo Jimeno", "geo": null, "id": 148706585550659600, "id_str": "148706585550659584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1475799969/pablo-avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1475799969/pablo-avatar_normal.png", "source": "<a href="http://hotot.org" rel="nofollow">Hotot</a>", "text": "RT @ivanloire: Example of what #NodeJs is REALLY good at: a single threaded high performance HTTP monitor http://t.co/PELlqVyy #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:07:08 +0000", "from_user": "quippdPython", "from_user_id": 25536732, "from_user_id_str": "25536732", "from_user_name": "quippd Python News", "geo": null, "id": 148705917247041540, "id_str": "148705917247041536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/104837330/python_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/104837330/python_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @jdecool The Switch: Python to Node.js : http://t.co/IL7NP08F #nodejs #python", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:06:08 +0000", "from_user": "ivanloire", "from_user_id": 24971085, "from_user_id_str": "24971085", "from_user_name": "Ivan Loire", "geo": null, "id": 148705668910694400, "id_str": "148705668910694400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1180004088/bigorre_300_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1180004088/bigorre_300_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "[Blog post] Example of what #NodeJs is REALLY good at: a single threaded high performance HTTP monitor: http://t.co/Gc0waJVQ #node.js", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:04:21 +0000", "from_user": "Siji_Banjo", "from_user_id": 112398548, "from_user_id_str": "112398548", "from_user_name": "Siji Onabanjo", "geo": null, "id": 148705217851035650, "id_str": "148705217851035648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1592778928/Sijiisahunk2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592778928/Sijiisahunk2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "This is useful for your NHS article http://t.co/Sf9GcBdA #nodejs #vista @hjclark3 @Cyberduck_uk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:02:06 +0000", "from_user": "DigitalPond1", "from_user_id": 430951613, "from_user_id_str": "430951613", "from_user_name": "Digital Pond", "geo": null, "id": 148704651255091200, "id_str": "148704651255091200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1679448611/digital-pond-logo-final_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679448611/digital-pond-logo-final_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "RT @rtweed: Those who attended my #digitalpond talk on Node.js in healthcare may be interested in this: http://t.co/PW5XMbwI #nodejs #vista", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:02:05 +0000", "from_user": "Siji_Banjo", "from_user_id": 112398548, "from_user_id_str": "112398548", "from_user_name": "Siji Onabanjo", "geo": null, "id": 148704647903850500, "id_str": "148704647903850496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1592778928/Sijiisahunk2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592778928/Sijiisahunk2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "RT @rtweed: Those who attended my #digitalpond talk on Node.js in healthcare may be interested in this: http://t.co/PW5XMbwI #nodejs #vista", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:53:39 +0000", "from_user": "domharrington", "from_user_id": 20199183, "from_user_id_str": "20199183", "from_user_name": "Dom Harrington", "geo": null, "id": 148702527393771520, "id_str": "148702527393771520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1414317955/_mnm_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1414317955/_mnm_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:52:24 +0000", "from_user": "eldios", "from_user_id": 19900662, "from_user_id_str": "19900662", "from_user_name": "Lele 'El Dios'", "geo": null, "id": 148702210409250800, "id_str": "148702210409250818", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1019549202/frengo_asciiColor_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1019549202/frengo_asciiColor_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:45:24 +0000", "from_user": "tanepiper", "from_user_id": 20693, "from_user_id_str": "20693", "from_user_name": "Tane Piper", "geo": null, "id": 148700447249678340, "id_str": "148700447249678336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1654339360/dizzy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654339360/dizzy_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Something broke in nodejs compiling on MacOSX 10.6 between 0.6.4 -> 0.6.6 - now *needs* XCode, not just GCC packages. Not impressed #node", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:44:35 +0000", "from_user": "booyaa", "from_user_id": 719673, "from_user_id_str": "719673", "from_user_name": "booyaa", "geo": null, "id": 148700244769640450, "id_str": "148700244769640448", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/640332281/boo-sm-avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/640332281/boo-sm-avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Samisdat: Der Server l\\u00E4uft mit @Nodejs Daten speichern in @CouchDB und http://t.co/7KzDdmZH \\u00FCbernimmt die Session. Sch\\u00F6ner Code ohne PHP ;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:43:38 +0000", "from_user": "GridTwentyThree", "from_user_id": 18871028, "from_user_id_str": "18871028", "from_user_name": "Benjamin Moulin", "geo": null, "id": 148700004033376260, "id_str": "148700004033376256", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1335049234/Sans-titre---1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335049234/Sans-titre---1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@jhervouet pas de possibilit\\u00E9 de JS c\\u00F4t\\u00E9 serveur (nodejs, mongodb) ?", "to_user": "jhervouet", "to_user_id": 7741222, "to_user_id_str": "7741222", "to_user_name": "Julien Hervou\\u00EBt", "in_reply_to_status_id": 146239468242866180, "in_reply_to_status_id_str": "146239468242866176"}, +{"created_at": "Mon, 19 Dec 2011 09:42:42 +0000", "from_user": "ajlopez", "from_user_id": 14567622, "from_user_id_str": "14567622", "from_user_name": "ajlopez", "geo": null, "id": 148699768644845570, "id_str": "148699768644845568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/53769404/spiral_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/53769404/spiral_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @NodeJsCommunity: History of #NodeJS -- http://t.co/8EDbgvdo \"v8 is a masterpiece of software\" ...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:42:16 +0000", "from_user": "flngr", "from_user_id": 14322017, "from_user_id_str": "14322017", "from_user_name": "Julian Bilcke", "geo": null, "id": 148699659836211200, "id_str": "148699659836211200", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1578423064/procession_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1578423064/procession_normal.jpg", "source": "<a href="http://gun.io/#" rel="nofollow">Harbbl</a>", "text": "RT @GUNdotIO: New Open Source gig: Neo4j Node.js adapter http://t.co/KfQtLCYh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:42:10 +0000", "from_user": "jdecool", "from_user_id": 19333570, "from_user_id_str": "19333570", "from_user_name": "J\\u00E9r\\u00E9my DECOOL", "geo": null, "id": 148699637132435460, "id_str": "148699637132435456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1318451058/jdecool_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1318451058/jdecool_normal.png", "source": "<a href="http://clocktweets.com/" rel="nofollow">ClockTweets</a>", "text": "The Switch: Python to Node.js : http://t.co/TBjrxzHh #nodejs #python", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:41:06 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148699369183514620, "id_str": "148699369183514624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @jbueza: History of #NodeJS -- http://t.co/JAzn3Uqz \"v8 is a masterpiece of software\" -- wow!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:41:05 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148699362296463360, "id_str": "148699362296463360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "History of #NodeJS -- http://t.co/pF55CNRK \"v8 is a masterpiece of software\" -- wow! http://t.co/VUVfD8H4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:40:34 +0000", "from_user": "florenceMAHON", "from_user_id": 83641731, "from_user_id_str": "83641731", "from_user_name": "Florence de Monaghan", "geo": null, "id": 148699233111904260, "id_str": "148699233111904256", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1045106590/soir_e_agence_i_e_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1045106590/soir_e_agence_i_e_7_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @AlainClapaud: #Microsoft baisse les prix d'Azure, augmente sa capacit\\u00E9 et l'ouvre \\u00E0 l'#OpenSource | arsTechnica http://t.co/6w5hLJbx (RT @dbmoore) #Cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:35:29 +0000", "from_user": "jbueza", "from_user_id": 141423083, "from_user_id_str": "141423083", "from_user_name": "Jaime Bueza", "geo": null, "id": 148697953601732600, "id_str": "148697953601732608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @dalmaer: CoreJS is a CoffeeSCript MVC framework for NodeJS for non-trivial apps http://t.co/z42wvabq /by Ernesto M\\u00E9ndez", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:34:39 +0000", "from_user": "Poetro", "from_user_id": 4543971, "from_user_id_str": "4543971", "from_user_name": "Peter Galiba", "geo": null, "id": 148697744830238720, "id_str": "148697744830238720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/18340052/9ef94af232b3ec6b66b67bcc1d4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/18340052/9ef94af232b3ec6b66b67bcc1d4_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@ryah: this looks pretty awesome http://t.co/TKuISAmc #nodejs\" #weblabor", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:31:28 +0000", "from_user": "juanjeojeda", "from_user_id": 12679112, "from_user_id_str": "12679112", "from_user_name": "Juanje Ojeda \\u2713", "geo": null, "id": 148696941298065400, "id_str": "148696941298065408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/46025702/juanje_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/46025702/juanje_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @dalmaer: CoreJS is a CoffeeSCript MVC framework for NodeJS for non-trivial apps http://t.co/z42wvabq /by Ernesto M\\u00E9ndez", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:30:10 +0000", "from_user": "sebarmeli", "from_user_id": 79990282, "from_user_id_str": "79990282", "from_user_name": "Sebastiano Armeli", "geo": null, "id": 148696616235307000, "id_str": "148696616235307008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1162091042/avatar_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1162091042/avatar_normal.PNG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:27:10 +0000", "from_user": "patxangas", "from_user_id": 2176291, "from_user_id_str": "2176291", "from_user_name": "karlos g liberal", "geo": null, "id": 148695862644715520, "id_str": "148695862644715520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1583024255/patxangas_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583024255/patxangas_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @dalmaer: CoreJS is a CoffeeSCript MVC framework for NodeJS for non-trivial apps http://t.co/z42wvabq /by Ernesto M\\u00E9ndez", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:25:18 +0000", "from_user": "peterneubauer", "from_user_id": 14721805, "from_user_id_str": "14721805", "from_user_name": "Peter Neubauer", "geo": null, "id": 148695392127684600, "id_str": "148695392127684608", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/348968437/MyPicture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/348968437/MyPicture_normal.jpg", "source": "<a href="http://gun.io/#" rel="nofollow">Harbbl</a>", "text": "RT @GUNdotIO: New Open Source gig: Neo4j Node.js adapter http://t.co/KfQtLCYh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:23:49 +0000", "from_user": "jbueza", "from_user_id": 141423083, "from_user_id_str": "141423083", "from_user_name": "Jaime Bueza", "geo": null, "id": 148695019782545400, "id_str": "148695019782545408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "wow.. Joyent has their own dhcp, ldap servers written in #NodeJS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:22:23 +0000", "from_user": "jbueza", "from_user_id": 141423083, "from_user_id_str": "141423083", "from_user_name": "Jaime Bueza", "geo": null, "id": 148694655289135100, "id_str": "148694655289135104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "History of #NodeJS -- http://t.co/JAzn3Uqz \"v8 is a masterpiece of software\" -- wow!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:20:03 +0000", "from_user": "jsgoodies", "from_user_id": 222057071, "from_user_id_str": "222057071", "from_user_name": "jsgoodies", "geo": null, "id": 148694067772002300, "id_str": "148694067772002304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1259896749/jsgd_paul_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1259896749/jsgd_paul_normal.png", "source": "<a href="http://js.gd" rel="nofollow">js.gd tweet queue</a>", "text": "Create a JS builder with node.js ; about structuring js: http://t.co/KeS9EIZQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:18:21 +0000", "from_user": "GUNdotIO", "from_user_id": 354131767, "from_user_id_str": "354131767", "from_user_name": "Gun.io", "geo": null, "id": 148693643685920770, "id_str": "148693643685920768", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1521172483/square_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1521172483/square_normal.png", "source": "<a href="http://gun.io/#" rel="nofollow">Harbbl</a>", "text": "New Open Source gig: Neo4j Node.js adapter http://t.co/KfQtLCYh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:18:00 +0000", "from_user": "PabloSerbo", "from_user_id": 19900957, "from_user_id_str": "19900957", "from_user_name": "Paul Serby", "geo": null, "id": 148693555567800320, "id_str": "148693555567800320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/889739570/Buddy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/889739570/Buddy_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Ensure that long live assets (css,js,png etc) don't get stuck in your users browser/proxy with versionator https://t.co/RCRGe8os #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:17:57 +0000", "from_user": "CouchDB", "from_user_id": 14181317, "from_user_id_str": "14181317", "from_user_name": "CouchDB", "geo": null, "id": 148693542028578800, "id_str": "148693542028578816", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/51904457/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/51904457/logo_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Samisdat: Der Server l\\u00E4uft mit @Nodejs Daten speichern in @CouchDB und http://t.co/7KzDdmZH \\u00FCbernimmt die Session. Sch\\u00F6ner Code ohne PHP ;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:14:12 +0000", "from_user": "morteza_milani", "from_user_id": 166104316, "from_user_id_str": "166104316", "from_user_name": "Morteza Milani", "geo": null, "id": 148692599430062080, "id_str": "148692599430062080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681214380/me2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681214380/me2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Technology behind Rackspace Cloud Monitoring / The Switch: Python to Node.js #python #nodejs - http://t.co/mxk... http://t.co/Acq15jEh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:10:02 +0000", "from_user": "chrisayegh", "from_user_id": 378500613, "from_user_id_str": "378500613", "from_user_name": "christian sayegh", "geo": null, "id": 148691550849863680, "id_str": "148691550849863680", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1572522060/Portrait_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572522060/Portrait_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#Microsoft baisse les prix d'Azure, augmente sa capacit\\u00E9 et l'ouvre \\u00E0 l'#OpenSource | arsTechnica dlvr.it/10svMq (RT @AlainClapaud) #Cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:10:00 +0000", "from_user": "tweettrailbot1", "from_user_id": 197244919, "from_user_id_str": "197244919", "from_user_name": "Tweet Trail Announce", "geo": null, "id": 148691541676929020, "id_str": "148691541676929024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1134778998/ttlogo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1134778998/ttlogo_normal.png", "source": "<a href="http://www.tweettrail.com" rel="nofollow">Tweet Traill</a>", "text": "Check out who is tweeting about: ' nodejs ', here: http://t.co/D3Bwzmxm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:09:30 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148691415214460930, "id_str": "148691415214460928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @jedisct1: CoreJS \\u2014 A web framework in #coffeescript for #nodejs: http://t.co/yBB46F4K", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:09:28 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148691408474214400, "id_str": "148691408474214400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "CoreJS \\u2014 A web framework in #coffeescript for #nodejs: http://t.co/S5wavnK4 http://t.co/QLiSYOW6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:09:14 +0000", "from_user": "teerapapc", "from_user_id": 9738432, "from_user_id_str": "9738432", "from_user_name": "teerapapc", "geo": null, "id": 148691348382425100, "id_str": "148691348382425088", "iso_language_code": "th", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1422140477/vlcsnap75815ns2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1422140477/vlcsnap75815ns2_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "\\u0E1E\\u0E36\\u0E48\\u0E07\\u0E40\\u0E2B\\u0E47\\u0E19\\u0E40\\u0E27\\u0E47\\u0E1A nodejs \\u0E41\\u0E1A\\u0E1A\\u0E43\\u0E2B\\u0E21\\u0E48 \\u0E07\\u0E07\\u0E44\\u0E1B\\u0E0A\\u0E31\\u0E48\\u0E27\\u0E02\\u0E13\\u0E30", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:06:00 +0000", "from_user": "NodeJSAtSO", "from_user_id": 292124941, "from_user_id_str": "292124941", "from_user_name": "Node JS @ SO", "geo": null, "id": 148690533496274940, "id_str": "148690533496274944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1336740490/sprites_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1336740490/sprites_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Integrating NodeJS Realtime with existing PHP Application http://t.co/ZjoF6bO8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:05:16 +0000", "from_user": "ajlopez", "from_user_id": 14567622, "from_user_id_str": "14567622", "from_user_name": "ajlopez", "geo": null, "id": 148690348108029950, "id_str": "148690348108029953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/53769404/spiral_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/53769404/spiral_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @jedisct1: CoreJS \\u2014 A web framework in #coffeescript for #nodejs: http://t.co/yBB46F4K", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:04:22 +0000", "from_user": "olivierb", "from_user_id": 8403242, "from_user_id_str": "8403242", "from_user_name": "Olivier BONNAURE", "geo": null, "id": 148690124992024580, "id_str": "148690124992024576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/385824749/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/385824749/twitterProfilePhoto_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:04:00 +0000", "from_user": "jedisct1", "from_user_id": 17396038, "from_user_id_str": "17396038", "from_user_name": "Frank Denis", "geo": null, "id": 148690029009571840, "id_str": "148690029009571840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/64543895/cv_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/64543895/cv_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "CoreJS \\u2014 A web framework in #coffeescript for #nodejs: http://t.co/yBB46F4K", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:58:10 +0000", "from_user": "ryudaewan", "from_user_id": 137330047, "from_user_id_str": "137330047", "from_user_name": "\\uB958\\uB300\\uC644", "geo": null, "id": 148688562672504830, "id_str": "148688562672504832", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1181587855/41663_100001482856255_5703_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1181587855/41663_100001482856255_5703_q_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @parkto: \"\\uAF2D \\uC54C\\uC544\\uC57C\\uD560 node.js\" \\uBC88\\uC5ED \\uB9C1\\uD06C : http://t.co/yBlFH0ST @hyungjoo_ \\uB2D8 \\uBC88\\uC5ED.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:57:30 +0000", "from_user": "stackfeed", "from_user_id": 237310237, "from_user_id_str": "237310237", "from_user_name": "StackOverflow", "geo": null, "id": 148688393562365950, "id_str": "148688393562365953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Integrating NodeJS Realtime with existing PHP Application: I have an existing PHP app running on Apache server.\\n... http://t.co/XJtnytTp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:57:01 +0000", "from_user": "etribz", "from_user_id": 171813308, "from_user_id_str": "171813308", "from_user_name": "Etribz ", "geo": null, "id": 148688274536411140, "id_str": "148688274536411136", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1090105637/unhappy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1090105637/unhappy_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @sdouche: SockJS benchmarks #js #nodejs #python #pypy - http://t.co/JZxLjuwP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:44:37 +0000", "from_user": "GustavoRiveraMX", "from_user_id": 414259400, "from_user_id_str": "414259400", "from_user_name": "Gustavo Rivera Cruz", "geo": null, "id": 148685152485244930, "id_str": "148685152485244928", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1647489149/pic_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647489149/pic_normal.png", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "Hay talento, tecnolog\\u00EDa tambi\\u00E9n. #2012 a impulsar nuestra oferta de gaming apps, explotar #Flash en #mobile y #NodeJS v\\u00EDa web. #ComoDebeSer", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:33:09 +0000", "from_user": "WorkBandits", "from_user_id": 372201611, "from_user_id_str": "372201611", "from_user_name": "Work Bandits", "geo": null, "id": 148682265084432400, "id_str": "148682265084432384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680516821/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680516821/logo_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Azure price cuts, bigger databases, now with node.js and MongoDB support, Hadoop on its way http://t.co/VPydCcdb via @arstechnica", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:32:02 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 148681986112888830, "id_str": "148681986112888832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @substack: I like turtles: http://t.co/uoswx4E5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:30:25 +0000", "from_user": "AlainClapaud", "from_user_id": 18830245, "from_user_id_str": "18830245", "from_user_name": "Alain Clapaud", "geo": null, "id": 148681577214394370, "id_str": "148681577214394368", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1188582378/Ma-Caricature-Carr_e_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1188582378/Ma-Caricature-Carr_e_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#Microsoft baisse les prix d'Azure, augmente sa capacit\\u00E9 et l'ouvre \\u00E0 l'#OpenSource | arsTechnica http://t.co/6w5hLJbx (RT @dbmoore) #Cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:28:22 +0000", "from_user": "ZenikaIT", "from_user_id": 77093727, "from_user_id_str": "77093727", "from_user_name": "Zenika", "geo": null, "id": 148681062506168320, "id_str": "148681062506168320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/434625740/logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/434625740/logo_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @NodeJsCommunity: Nice Blog post, see here ---> A Full Javascript Architecture, Part One - NodeJS - @ZenikaIT - http://t.co/6KmcyhVB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:27:57 +0000", "from_user": "hiroyukim", "from_user_id": 4114621, "from_user_id_str": "4114621", "from_user_name": "hiroyukim", "geo": null, "id": 148680958143500300, "id_str": "148680958143500288", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/94649304/neko_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/94649304/neko_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "[nodejs] what is your favorite JS editor?\\u3000\\u3068\\u3044\\u3046\\u9762\\u767D\\u3044\\u8CEA\\u554F\\u304C(\\u30FD'\\u03C9`)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:26:49 +0000", "from_user": "peterwooley", "from_user_id": 766612, "from_user_id_str": "766612", "from_user_name": "Peter Wooley", "geo": null, "id": 148680671848701950, "id_str": "148680671848701952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1352667885/pwooley-256px_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1352667885/pwooley-256px_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @dalmaer: CoreJS is a CoffeeSCript MVC framework for NodeJS for non-trivial apps http://t.co/z42wvabq /by Ernesto M\\u00E9ndez", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:23:36 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148679862952013820, "id_str": "148679862952013824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @thomasf ryah: this looks pretty awesome http://t.co/nwJd4b2l #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:23:36 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148679861823733760, "id_str": "148679861823733760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @functionsource substack: I like turtles: http://t.co/48pml9ZF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:23:35 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148679860594810880, "id_str": "148679860594810881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @tobiassailer A beautiful marriage: MongoDB and node.js http://t.co/U1d5sANG \\nGood Talk , thanks @chrisricca", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:13:06 +0000", "from_user": "thomasf", "from_user_id": 15242522, "from_user_id_str": "15242522", "from_user_name": "Fritz Thomas", "geo": null, "id": 148677220871843840, "id_str": "148677220871843842", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/56438285/Cow-Avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/56438285/Cow-Avatar_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:12:07 +0000", "from_user": "functionsource", "from_user_id": 279275657, "from_user_id_str": "279275657", "from_user_name": "FunctionSource", "geo": null, "id": 148676973458243600, "id_str": "148676973458243584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1306206357/Screen_shot_2011-03-31_at_Mar_31___11.15.50_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1306206357/Screen_shot_2011-03-31_at_Mar_31___11.15.50_AM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @substack: I like turtles: http://t.co/uoswx4E5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:12:04 +0000", "from_user": "tobiassailer", "from_user_id": 80114907, "from_user_id_str": "80114907", "from_user_name": "tobias", "geo": null, "id": 148676962292998140, "id_str": "148676962292998144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1346694003/kuddl_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1346694003/kuddl_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "A beautiful marriage: MongoDB and node.js http://t.co/gYMTnHwk \\nGood Talk , thanks @chrisricca", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:09:21 +0000", "from_user": "dezoy", "from_user_id": 123176965, "from_user_id_str": "123176965", "from_user_name": "Anton Shestak", "geo": null, "id": 148676276285227000, "id_str": "148676276285227008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.friend.ly" rel="nofollow">friend.ly</a>", "text": "My #7faves on Twitter are @engadget @tjholowaychuk @felixge @nodejitsu @Kifozavr @nodejs @creationix -> http://t.co/pfoUNhvY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:08:43 +0000", "from_user": "trufae", "from_user_id": 15364094, "from_user_id_str": "15364094", "from_user_name": "pancake", "geo": null, "id": 148676117035880450, "id_str": "148676117035880448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1291415517/abdadcat_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1291415517/abdadcat_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: NodObjC (0.0.9): http://t.co/5hNDELCv The NodeJS \\u21C6 Objective-C bridge http://t.co/gAideF7w", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:07:06 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148675711748673540, "id_str": "148675711748673537", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @ktanimur: I want this!! \"Node.js, Now As A Snazzy Shirt\" http://t.co/fMSq18T4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:07:04 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148675704572223500, "id_str": "148675704572223488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "I want this!! \"Node.js, Now As A Snazzy Shirt\" http://t.co/I5rL8wKP http://t.co/KmhBn9qW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:06:40 +0000", "from_user": "kinglion75", "from_user_id": 12133302, "from_user_id_str": "12133302", "from_user_name": "Alessio Giorgini", "geo": null, "id": 148675602998763520, "id_str": "148675602998763520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/51751267/alessio1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/51751267/alessio1_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:04:04 +0000", "from_user": "iasen_87", "from_user_id": 250133790, "from_user_id_str": "250133790", "from_user_name": "Yasen", "geo": null, "id": 148674948167241730, "id_str": "148674948167241728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1241169620/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1241169620/me_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @dalmaer: CoreJS is a CoffeeSCript MVC framework for NodeJS for non-trivial apps http://t.co/z42wvabq /by Ernesto M\\u00E9ndez", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:03:03 +0000", "from_user": "AtuDesign", "from_user_id": 47754498, "from_user_id_str": "47754498", "from_user_name": "Itey Arthur", "geo": null, "id": 148674690985103360, "id_str": "148674690985103360", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1610656094/jpeg_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610656094/jpeg_normal.jpeg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "Le blues des frameworks MVC #node.js http://t.co/I1YhyWSz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:00:13 +0000", "from_user": "parkto", "from_user_id": 30360576, "from_user_id_str": "30360576", "from_user_name": "\\uBC15\\uD0DC\\uC6C5", "geo": null, "id": 148673980730064900, "id_str": "148673980730064896", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/248967176/P090529004_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/248967176/P090529004_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\"\\uAF2D \\uC54C\\uC544\\uC57C\\uD560 node.js\" \\uBC88\\uC5ED \\uB9C1\\uD06C : http://t.co/yBlFH0ST @hyungjoo_ \\uB2D8 \\uBC88\\uC5ED.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:00:12 +0000", "from_user": "jongkwang", "from_user_id": 127463938, "from_user_id_str": "127463938", "from_user_name": "\\uAE40\\uC885\\uAD11(\\uAEBD\\uB2EC\\uC774)", "geo": null, "id": 148673976355401730, "id_str": "148673976355401728", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1342674015/____320x320_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1342674015/____320x320_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @parkto: \\uB9C1\\uD06C\\uAC00 \\uAE68\\uC838\\uC11C \\uB2E4\\uC2DC @hyungjoo_ @pkrumins\\uAC00 \\uC791\\uC131\\uD55C \"\\uAF2D \\uC54C\\uC544\\uC57C\\uD55C node.js \\uBAA8\\uB4C8\" \\uC5F0\\uC7AC \\uBC88\\uC5ED. \\uD604\\uC7AC \\uCD1D 10\\uAC1C\\uC758 \\uAC8C\\uC2DC\\uBB3C\\uC911 7\\uAC1C\\uB97C \\uBC88\\uC5ED\\uD588\\uC2B5\\uB2C8\\uB2E4. \\uAD00\\uC2EC\\uC788\\uC73C\\uC2E0 \\uBD84\\uB4E4\\uC740 \\uC81C \\uBE14\\uB85C\\uADF8(nodejs-kr.org/insidejs)\\uC5D0 \\uBC29\\uBB38\\uD574\\uC8FC\\uC138\\uC694.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:00:02 +0000", "from_user": "heaven_sweetie", "from_user_id": 127223601, "from_user_id_str": "127223601", "from_user_name": "Heaven_\\uC120\\uC7AC", "geo": null, "id": 148673934085201920, "id_str": "148673934085201920", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1362071260/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1362071260/image_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @parkto: \\uB9C1\\uD06C\\uAC00 \\uAE68\\uC838\\uC11C \\uB2E4\\uC2DC @hyungjoo_ @pkrumins\\uAC00 \\uC791\\uC131\\uD55C \"\\uAF2D \\uC54C\\uC544\\uC57C\\uD55C node.js \\uBAA8\\uB4C8\" \\uC5F0\\uC7AC \\uBC88\\uC5ED. \\uD604\\uC7AC \\uCD1D 10\\uAC1C\\uC758 \\uAC8C\\uC2DC\\uBB3C\\uC911 7\\uAC1C\\uB97C \\uBC88\\uC5ED\\uD588\\uC2B5\\uB2C8\\uB2E4. \\uAD00\\uC2EC\\uC788\\uC73C\\uC2E0 \\uBD84\\uB4E4\\uC740 \\uC81C \\uBE14\\uB85C\\uADF8(nodejs-kr.org/insidejs)\\uC5D0 \\uBC29\\uBB38\\uD574\\uC8FC\\uC138\\uC694.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:59:01 +0000", "from_user": "parkto", "from_user_id": 30360576, "from_user_id_str": "30360576", "from_user_name": "\\uBC15\\uD0DC\\uC6C5", "geo": null, "id": 148673678601748480, "id_str": "148673678601748480", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/248967176/P090529004_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/248967176/P090529004_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\\uB9C1\\uD06C\\uAC00 \\uAE68\\uC838\\uC11C \\uB2E4\\uC2DC @hyungjoo_ @pkrumins\\uAC00 \\uC791\\uC131\\uD55C \"\\uAF2D \\uC54C\\uC544\\uC57C\\uD55C node.js \\uBAA8\\uB4C8\" \\uC5F0\\uC7AC \\uBC88\\uC5ED. \\uD604\\uC7AC \\uCD1D 10\\uAC1C\\uC758 \\uAC8C\\uC2DC\\uBB3C\\uC911 7\\uAC1C\\uB97C \\uBC88\\uC5ED\\uD588\\uC2B5\\uB2C8\\uB2E4. \\uAD00\\uC2EC\\uC788\\uC73C\\uC2E0 \\uBD84\\uB4E4\\uC740 \\uC81C \\uBE14\\uB85C\\uADF8(nodejs-kr.org/insidejs)\\uC5D0 \\uBC29\\uBB38\\uD574\\uC8FC\\uC138\\uC694.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:56:40 +0000", "from_user": "parkto", "from_user_id": 30360576, "from_user_id_str": "30360576", "from_user_name": "\\uBC15\\uD0DC\\uC6C5", "geo": null, "id": 148673084608618500, "id_str": "148673084608618496", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/248967176/P090529004_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/248967176/P090529004_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\\uD544\\uB3C5! RT @hyungjoo_: @pkrumins\\uAC00 \\uC791\\uC131\\uD55C \"\\uAF2D \\uC54C\\uC544\\uC57C\\uD55C node.js \\uBAA8\\uB4C8\" \\uC5F0\\uC7AC\\uB97C \\uBC88\\uC5ED\\uD558\\uACE0 \\uC788\\uC2B5\\uB2C8\\uB2E4. \\uD604\\uC7AC \\uCD1D 10\\uAC1C\\uC758 \\uAC8C\\uC2DC\\uBB3C\\uC911 7\\uAC1C\\uB97C \\uBC88\\uC5ED\\uD588\\uC2B5\\uB2C8\\uB2E4. \\uAD00\\uC2EC\\uC788\\uC73C\\uC2E0 \\uBD84\\uB4E4\\uC740 \\uC81C \\uBE14\\uB85C\\uADF8(http://t.co/ONIhS1Fs \\uBC29\\uBB38\\uD574\\uC8FC\\uC138\\uC694.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:50:23 +0000", "from_user": "twtomcat", "from_user_id": 83567168, "from_user_id_str": "83567168", "from_user_name": "Markus Leutwyler", "geo": null, "id": 148671503024660480, "id_str": "148671503024660480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693567535/4e4fa7fb-a4f8-4c6e-acb6-bf60fb42fc59_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693567535/4e4fa7fb-a4f8-4c6e-acb6-bf60fb42fc59_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @dalmaer: CoreJS is a CoffeeSCript MVC framework for NodeJS for non-trivial apps http://t.co/z42wvabq /by Ernesto M\\u00E9ndez", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:49:58 +0000", "from_user": "phynx17", "from_user_id": 50295771, "from_user_id_str": "50295771", "from_user_name": "Pandu Pradhana", "geo": null, "id": 148671400314552320, "id_str": "148671400314552320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1092511187/gw_lagi_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1092511187/gw_lagi_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:49:05 +0000", "from_user": "ErikRalston", "from_user_id": 317608274, "from_user_id_str": "317608274", "from_user_name": "Erik Ralston", "geo": null, "id": 148671178758823940, "id_str": "148671178758823937", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1397346873/226488_855831674573_27224672_41972385_7661480_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1397346873/226488_855831674573_27224672_41972385_7661480_n_normal.jpg", "source": "<a href="http://timely.is" rel="nofollow">Timely by Demandforce</a>", "text": "Sequelize \\u00BB A MySQL Object-Relational-Mapper for NodeJS http://t.co/xaYiyO58", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:41:41 +0000", "from_user": "indutny", "from_user_id": 92915570, "from_user_id_str": "92915570", "from_user_name": "Fedor Indutny", "geo": null, "id": 148669317058277380, "id_str": "148669317058277376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1342629236/e474c72a97af94dd27feb53be98ceab9_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1342629236/e474c72a97af94dd27feb53be98ceab9_normal.jpeg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:41:27 +0000", "from_user": "Zhang_Tianjin", "from_user_id": 14543059, "from_user_id_str": "14543059", "from_user_name": "Zhang Tianjin", "geo": null, "id": 148669254269550600, "id_str": "148669254269550593", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/956146231/PICT0011_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/956146231/PICT0011_normal.JPG", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @dalmaer: CoreJS is a CoffeeSCript MVC framework for NodeJS for non-trivial apps http://t.co/z42wvabq /by Ernesto M\\u00E9ndez", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:40:16 +0000", "from_user": "gothy", "from_user_id": 9680152, "from_user_id_str": "9680152", "from_user_name": "Dmitry Utkin", "geo": null, "id": 148668959485460480, "id_str": "148668959485460480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1421882566/Photo_on_2011-06-30_at_16.21_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1421882566/Photo_on_2011-06-30_at_16.21_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:29:10 +0000", "from_user": "okiess", "from_user_id": 24673, "from_user_id_str": "24673", "from_user_name": "Oliver Kiessler", "geo": null, "id": 148666165856698370, "id_str": "148666165856698368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/15228652/oli128_128_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/15228652/oli128_128_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @dalmaer: CoreJS is a CoffeeSCript MVC framework for NodeJS for non-trivial apps http://t.co/z42wvabq /by Ernesto M\\u00E9ndez", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:28:57 +0000", "from_user": "NetRoY", "from_user_id": 14138576, "from_user_id_str": "14138576", "from_user_name": "Aditya", "geo": null, "id": 148666111561433100, "id_str": "148666111561433089", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1593448068/jsfoo-me-bg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593448068/jsfoo-me-bg_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT: this looks pretty awesome http://t.co/kCoCMOxC #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:27:31 +0000", "from_user": "TopDevTweets", "from_user_id": 194520782, "from_user_id_str": "194520782", "from_user_name": "TopDevTweets", "geo": null, "id": 148665750280863740, "id_str": "148665750280863744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @dalmaer: CoreJS is a CoffeeSCript MVC framework for NodeJS for non-trivial apps http://t.co/z42wvabq /by Ernesto M\\u00E9ndez", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:24:34 +0000", "from_user": "maeseele", "from_user_id": 285667190, "from_user_id_str": "285667190", "from_user_name": "Peter Maeseele", "geo": null, "id": 148665008925048830, "id_str": "148665008925048833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1475112025/nice_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1475112025/nice_avatar_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @dalmaer: CoreJS is a CoffeeSCript MVC framework for NodeJS for non-trivial apps http://t.co/z42wvabq /by Ernesto M\\u00E9ndez", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:23:53 +0000", "from_user": "CodeBeard", "from_user_id": 21902920, "from_user_id_str": "21902920", "from_user_name": "Philip David Harvey", "geo": null, "id": 148664836069392400, "id_str": "148664836069392384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/664719505/poccopom_twit_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/664719505/poccopom_twit_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:23:43 +0000", "from_user": "genedna", "from_user_id": 14146361, "from_user_id_str": "14146361", "from_user_name": "Meaglith Ma", "geo": null, "id": 148664794168295420, "id_str": "148664794168295424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1441913445/icon_512_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1441913445/icon_512_normal.png", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @dalmaer: CoreJS is a CoffeeSCript MVC framework for NodeJS for non-trivial apps http://t.co/186uyghd /by Ernesto M\\u00E9ndez", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:21:58 +0000", "from_user": "mwessendorf", "from_user_id": 12287422, "from_user_id_str": "12287422", "from_user_name": "Matthias Wessendorf", "geo": null, "id": 148664351954440200, "id_str": "148664351954440192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1644899733/mw80s_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644899733/mw80s_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @dalmaer: CoreJS is a CoffeeSCript MVC framework for NodeJS for non-trivial apps http://t.co/dpKsDqwQ /", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:20:59 +0000", "from_user": "yamafaktory", "from_user_id": 21648720, "from_user_id_str": "21648720", "from_user_name": "Davy Duperron", "geo": null, "id": 148664106600239100, "id_str": "148664106600239104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700633331/P1010882_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700633331/P1010882_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/0edrDxOj #nodejs #coffeescript #mvc #trending", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:17:15 +0000", "from_user": "xydudu", "from_user_id": 14928756, "from_user_id_str": "14928756", "from_user_name": "\\u6BD2\\u6BD2", "geo": null, "id": 148663166824480770, "id_str": "148663166824480768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1257448138/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1257448138/avatar_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @dalmaer: CoreJS is a CoffeeSCript MVC framework for NodeJS for non-trivial apps http://t.co/z42wvabq /by Ernesto M\\u00E9ndez", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 07:15:29 +0000", "from_user": "ktanimur", "from_user_id": 135591363, "from_user_id_str": "135591363", "from_user_name": "Kazuyuki Tanimura", "geo": null, "id": 148662720479248400, "id_str": "148662720479248384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1298160761/designo64new4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1298160761/designo64new4_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "I want this!! \"Node.js, Now As A Snazzy Shirt\" http://t.co/fMSq18T4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:15:17 +0000", "from_user": "kubid", "from_user_id": 71208590, "from_user_id_str": "71208590", "from_user_name": "\\uF8FF Rifki Fauzi, S.T. ", "geo": null, "id": 148662671099691000, "id_str": "148662671099691008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662453821/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662453821/avatar_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @dalmaer: CoreJS is a CoffeeSCript MVC framework for NodeJS for non-trivial apps http://t.co/z42wvabq /by Ernesto M\\u00E9ndez", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:14:27 +0000", "from_user": "dalmaer", "from_user_id": 4216361, "from_user_id_str": "4216361", "from_user_name": "Dion Almaer", "geo": null, "id": 148662460239454200, "id_str": "148662460239454208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/292949152/dionprofile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/292949152/dionprofile_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "CoreJS is a CoffeeSCript MVC framework for NodeJS for non-trivial apps http://t.co/z42wvabq /by Ernesto M\\u00E9ndez", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:12:56 +0000", "from_user": "derdesign", "from_user_id": 69168314, "from_user_id_str": "69168314", "from_user_name": "Ernesto M\\u00E9ndez", "geo": null, "id": 148662081221177340, "id_str": "148662081221177344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1346443112/avatar_v5.0_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1346443112/avatar_v5.0_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:10:25 +0000", "from_user": "leftieFriele", "from_user_id": 5936042, "from_user_id_str": "5936042", "from_user_name": "espen", "geo": null, "id": 148661445519880200, "id_str": "148661445519880192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685539791/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685539791/image_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:09:18 +0000", "from_user": "kristianlunde", "from_user_id": 15949665, "from_user_id_str": "15949665", "from_user_name": "Kristian Lunde", "geo": null, "id": 148661166955180030, "id_str": "148661166955180032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1413726711/kristian_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1413726711/kristian_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @AnthonySterling: \"Node.js - First Impressions\" - http://t.co/vLfp7I77 /by @wezfurlong #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:06:33 +0000", "from_user": "atsuya", "from_user_id": 7483262, "from_user_id_str": "7483262", "from_user_name": "Atsuya Takagi", "geo": null, "id": 148660474303610880, "id_str": "148660474303610880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1644873867/atsuya_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644873867/atsuya_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "MVC Web Application Framework for NodeJS written in CoffeeScript http://t.co/YdPqrJ4x", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:06:26 +0000", "from_user": "atsuya", "from_user_id": 7483262, "from_user_id_str": "7483262", "from_user_name": "Atsuya Takagi", "geo": null, "id": 148660442376568830, "id_str": "148660442376568833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1644873867/atsuya_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644873867/atsuya_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:05:52 +0000", "from_user": "krzychukula", "from_user_id": 34560280, "from_user_id_str": "34560280", "from_user_name": "Krzysztof Kula", "geo": null, "id": 148660299967381500, "id_str": "148660299967381504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/834804836/krzychukula_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/834804836/krzychukula_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:04:49 +0000", "from_user": "cvillu", "from_user_id": 16542050, "from_user_id_str": "16542050", "from_user_name": "cvillu", "geo": null, "id": 148660036309233660, "id_str": "148660036309233664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/402750441/FERIA_MALAGA_08_224_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/402750441/FERIA_MALAGA_08_224_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tjholowaychuk: messing around with an open-source website screenshot app powered by #nodejs, phantomjs, redis, etc - http://t.co/t9RD674A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:04:48 +0000", "from_user": "kelvw", "from_user_id": 96323946, "from_user_id_str": "96323946", "from_user_name": "Kelvin", "geo": null, "id": 148660033645838340, "id_str": "148660033645838336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/570981776/square-128-opacity50_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/570981776/square-128-opacity50_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @bencrox: Just after a skim I am liking this ... RT @ryah: this looks pretty awesome http://t.co/MK2vpwYd #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:04:39 +0000", "from_user": "bencrox", "from_user_id": 1206561, "from_user_id_str": "1206561", "from_user_name": "\\u674E\\u5B78\\u658C / lxb / \\u0627\\u0628\\u0646 \\u0627\\u0644\\u0633\\u0628", "geo": null, "id": 148659993346973700, "id_str": "148659993346973696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1002055716/superv6_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1002055716/superv6_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Just after a skim I am liking this ... RT @ryah: this looks pretty awesome http://t.co/MK2vpwYd #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:04:37 +0000", "from_user": "mdevraj", "from_user_id": 15340674, "from_user_id_str": "15340674", "from_user_name": "Devraj Mukherjee", "geo": null, "id": 148659987600785400, "id_str": "148659987600785408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1684596285/DevrajAvatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684596285/DevrajAvatar_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:04:33 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148659968239865860, "id_str": "148659968239865856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:04:31 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148659961189236740, "id_str": "148659961189236736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "this looks pretty awesome http://t.co/NIXAuAYN #nodejs http://t.co/6pZzVkCr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:03:28 +0000", "from_user": "andreapontiggia", "from_user_id": 108931050, "from_user_id_str": "108931050", "from_user_name": "andrea pontiggia", "geo": null, "id": 148659699368214530, "id_str": "148659699368214528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/756142822/color_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/756142822/color_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Microsoft announced support for Node in Azure cloud platform. via node blog - http://t.co/Y04Je9PG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:02:23 +0000", "from_user": "ryah", "from_user_id": 18975861, "from_user_id_str": "18975861", "from_user_name": "Ryan Dahl", "geo": null, "id": 148659426897825800, "id_str": "148659426897825792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1634041610/name_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634041610/name_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:50:52 +0000", "from_user": "NetRoY", "from_user_id": 14138576, "from_user_id_str": "14138576", "from_user_name": "Aditya", "geo": null, "id": 148656525089579000, "id_str": "148656525089579008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1593448068/jsfoo-me-bg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593448068/jsfoo-me-bg_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Technology behind Rackspace Cloud Monitoring http://t.co/CEJs9kOe and why they switched from Python to NodeJS ht... http://t.co/UfUMLCzs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:50:35 +0000", "from_user": "goddyzhao", "from_user_id": 87882163, "from_user_id_str": "87882163", "from_user_name": "goddyzhao", "geo": null, "id": 148656455552208900, "id_str": "148656455552208896", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/622421804/zhaojingAvatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/622421804/zhaojingAvatar_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\\u6211\\u9876\\uFF0C\\u5982\\u679C\\u80FD\\u628A\\u5185\\u90E8\\u5B9E\\u73B0\\u7684\\u5177\\u4F53\\u533A\\u522B\\u6765\\u628A\\u8BBA\\u8BC1\\u5C31\\u597D\\u4E86\\uFF0C\\u8BA9\\u6211\\u770B\\u5230QJ\\u7684\\u8FC7\\u7A0B\\uFF0C\\u6211\\u6700\\u559C\\u6B22\\u8FD9\\u79CD\\u4E86 RT \"@fengmk2: exec\\u4E0Espawn\\u65B9\\u6CD5\\u7684\\u533A\\u522B\\u4E0E\\u9677\\u9631 _ Dead_horse http://t.co/x3Stdn0V #nodejs http://t.co/SwQZnpwx\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:44:29 +0000", "from_user": "AnthonySterling", "from_user_id": 21287694, "from_user_id_str": "21287694", "from_user_name": "Anthony Sterling", "geo": null, "id": 148654920818638850, "id_str": "148654920818638848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664008616/Dc_last_portraits_12-_10-000117-1tif_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664008616/Dc_last_portraits_12-_10-000117-1tif_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "\"Node.js - First Impressions\" - http://t.co/vLfp7I77 /by @wezfurlong #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:43:23 +0000", "from_user": "derdesign", "from_user_id": 69168314, "from_user_id_str": "69168314", "from_user_name": "Ernesto M\\u00E9ndez", "geo": null, "id": 148654645408038900, "id_str": "148654645408038912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1346443112/avatar_v5.0_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1346443112/avatar_v5.0_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "CoreJS - An MVC Web Application Framework for NodeJS http://t.co/HobzxkKX (Please RT)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:33:49 +0000", "from_user": "fengmk2", "from_user_id": 21738641, "from_user_id_str": "21738641", "from_user_name": "MK2", "geo": null, "id": 148652237881741300, "id_str": "148652237881741312", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/285484301/imk2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/285484301/imk2_normal.png", "source": "<a href="http://chrome.google.com/extensions/detail/aicelmgbddfgmpieedjiggifabdpcnln" rel="nofollow">FaWave</a>", "text": "exec\\u4E0Espawn\\u65B9\\u6CD5\\u7684\\u533A\\u522B\\u4E0E\\u9677\\u9631 _ Dead_horse http://t.co/Ltg2tg1p #nodejs http://t.co/j8bPylhU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:32:51 +0000", "from_user": "mehdiachour", "from_user_id": 85970960, "from_user_id_str": "85970960", "from_user_name": "Mehdi Achour", "geo": null, "id": 148651991256670200, "id_str": "148651991256670208", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700761105/ec8afc0392a7daa5d39835d0eb860d9e_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700761105/ec8afc0392a7daa5d39835d0eb860d9e_normal.jpeg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @wezfurlong: blogged: Node.js - First Impressions http://t.co/dzMFpkv9 #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:30:51 +0000", "from_user": "jsgeneve", "from_user_id": 404035068, "from_user_id_str": "404035068", "from_user_name": "Javascript Gen\\u00E8ve", "geo": null, "id": 148651491203362800, "id_str": "148651491203362816", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1620267028/twitter_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620267028/twitter_normal.gif", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "NodObjC (0.0.9): passerelle #NodeJS pour invoquer Objective-C en Javascript http://t.co/o10P7S9c", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:28:46 +0000", "from_user": "NodeJSAtSO", "from_user_id": 292124941, "from_user_id_str": "292124941", "from_user_name": "Node JS @ SO", "geo": null, "id": 148650965745139700, "id_str": "148650965745139712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1336740490/sprites_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1336740490/sprites_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "How I trigger the \"System Bell\" in nodejs http://t.co/MIWqtzEa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:17:18 +0000", "from_user": "stefounet", "from_user_id": 47931794, "from_user_id_str": "47931794", "from_user_name": "stephane rios", "geo": null, "id": 148648080349200400, "id_str": "148648080349200384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1218125494/11324a3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218125494/11324a3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tjholowaychuk: messing around with an open-source website screenshot app powered by #nodejs, phantomjs, redis, etc - http://t.co/t9RD674A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:12:37 +0000", "from_user": "moellenbeck", "from_user_id": 1936981, "from_user_id_str": "1936981", "from_user_name": "Martin M\\u00F6llenbeck", "geo": null, "id": 148646901397463040, "id_str": "148646901397463041", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/30569592/FlickrIcon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/30569592/FlickrIcon_normal.png", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "Nice module ;-) RT @andychilton: New module for #nodejs, some connect middleware ... not big but very useful : https://t.co/tAgWn66w", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:10:22 +0000", "from_user": "lorenzomassacci", "from_user_id": 663903, "from_user_id_str": "663903", "from_user_name": "Lorenzo Massacci", "geo": null, "id": 148646335644577800, "id_str": "148646335644577792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/46676082/mypictr_LinkedIn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/46676082/mypictr_LinkedIn_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Write your shell scripts in JavaScript, via Node.js http://t.co/SL5Msixg http://t.co/RXUA0xNq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:10:06 +0000", "from_user": "wPGnews", "from_user_id": 201365363, "from_user_id_str": "201365363", "from_user_name": "\\u308F\\u304B\\u3081\\u30CB\\u30E5\\u30FC\\u30B9\\uFF08\\u30D7\\u30ED\\u30B0\\u30E9\\u30DF\\u30F3\\u30B0\\uFF09", "geo": null, "id": 148646268212752400, "id_str": "148646268212752385", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1144557758/twiprogramming_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1144557758/twiprogramming_normal.gif", "source": "<a href="http://wakamenews.mydns.jp/programming.php" rel="nofollow">\\u308F\\u304B\\u3081\\u306B\\u3085\\u30FC\\u3059BOT\\uFF08Programming\\uFF09</a>", "text": "Node.js - Develop - Windows Azure http://t.co/7zWlSZdT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:05:08 +0000", "from_user": "hitzalg", "from_user_id": 130368767, "from_user_id_str": "130368767", "from_user_name": "\\u96C5", "geo": null, "id": 148645019291615230, "id_str": "148645019291615233", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "nodejs\\u3067\\u304A\\u4ED5\\u4E8B\\u3057\\u305F\\u3044\\u306A\\u3002\\u51FA\\u6765\\u308C\\u3070coffeescript\\u3067\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:02:22 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148644322382856200, "id_str": "148644322382856192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "RT @yamanetoshi: \\u201CNode.js, Now As A Snazzy Shirt\\u201D http://t.co/ZbPJLHsx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:02:21 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148644315026030600, "id_str": "148644315026030592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\u201CNode.js, Now As A Snazzy Shirt\\u201D http://t.co/TzjcQQXJ http://t.co/r3Og6kcE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:01:05 +0000", "from_user": "vesln", "from_user_id": 37680547, "from_user_id_str": "37680547", "from_user_name": "Veselin", "geo": null, "id": 148643996414124030, "id_str": "148643996414124033", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1634048495/avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634048495/avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Having real fun at work... You know what it is, node people :) #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:56:41 +0000", "from_user": "mizchi", "from_user_id": 14407731, "from_user_id_str": "14407731", "from_user_name": "\\u5F37\\u3044\\u3089\\u308C\\u3066\\u3044\\u308B\\u3093\\u3060\\u30C3\\uFF01", "geo": null, "id": 148642892230045700, "id_str": "148642892230045697", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1503077056/ss_2011-08-19_15.54.49_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1503077056/ss_2011-08-19_15.54.49_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "node.js\\u306E\\u4E80\\u304CV8\\u3063\\u3066\\u66F8\\u304B\\u308C\\u305F\\u30ED\\u30B1\\u30C3\\u30C8\\u80CC\\u8CA0\\u3063\\u3066\\u308B\\u30ED\\u30B4\\u3001\\u3055\\u3059\\u304C\\u306B\\u306A\\u3093\\u304B\\u9055\\u3046\\u3068\\u601D\\u3046 http://t.co/7aLE8Q2J", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:56:26 +0000", "from_user": "stackfeed", "from_user_id": 237310237, "from_user_id_str": "237310237", "from_user_name": "StackOverflow", "geo": null, "id": 148642828346605570, "id_str": "148642828346605568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "How I trigger the \"System Bell\" in nodejs: I'm running a long running custom nodejs script and would like to be ... http://t.co/isqo2XNE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:56:01 +0000", "from_user": "yamanetoshi", "from_user_id": 1081991, "from_user_id_str": "1081991", "from_user_name": "Yamane Toshiaki", "geo": null, "id": 148642723799367680, "id_str": "148642723799367681", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/54576135/glider_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/54576135/glider_normal.png", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "\\u201CNode.js, Now As A Snazzy Shirt\\u201D http://t.co/ZbPJLHsx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:31:43 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148636607631724540, "id_str": "148636607631724545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @sdouche: Technology behind Rackspace Cloud Monitoring / The Switch: Python to Node.js #python #nodejs - http://t.co/mxkJw4pK / http://t.co/AHATodsR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:31:41 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148636599347970050, "id_str": "148636599347970048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Technology behind Rackspace Cloud Monitoring / The Switch: Python to Node.js #python #nodejs - http://t.co/mxk... http://t.co/Acq15jEh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:28:36 +0000", "from_user": "outa7iME", "from_user_id": 64403059, "from_user_id_str": "64403059", "from_user_name": "outaTiME", "geo": null, "id": 148635824496451600, "id_str": "148635824496451584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1577438873/my.own.new_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1577438873/my.own.new_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: always (0.4.0): http://t.co/9LVs3arm CLI & Daemon tool to run a NodeJS process always, restarting on file change... http://t.co/DaVYTUVW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:28:23 +0000", "from_user": "cihan78", "from_user_id": 38511169, "from_user_id_str": "38511169", "from_user_name": "Cihan", "geo": null, "id": 148635769051947000, "id_str": "148635769051947008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1445222189/IMG_4262_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1445222189/IMG_4262_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @davidbgk: Technology behind Rackspace Cloud Monitoring http://t.co/paLVR6bZ and why they switched from Python to NodeJS http://t.co/WFqHI7x0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:25:59 +0000", "from_user": "BrackishLake", "from_user_id": 302234570, "from_user_id_str": "302234570", "from_user_name": "Chris@BrackishLake", "geo": null, "id": 148635163864207360, "id_str": "148635163864207360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1528769415/Untitled-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1528769415/Untitled-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Nodejs Shirts! http://t.co/I5rL8wKP http://t.co/6jLhzYnh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:24:36 +0000", "from_user": "sdouche", "from_user_id": 15830587, "from_user_id_str": "15830587", "from_user_name": "S\\u00E9bastien Douche", "geo": null, "id": 148634818735902720, "id_str": "148634818735902720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/64962323/sdouche_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/64962323/sdouche_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Technology behind Rackspace Cloud Monitoring / The Switch: Python to Node.js #python #nodejs - http://t.co/mxkJw4pK / http://t.co/AHATodsR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:24:10 +0000", "from_user": "wJSnews", "from_user_id": 250106399, "from_user_id_str": "250106399", "from_user_name": "\\u308F\\u304B\\u3081\\u306B\\u3085\\u30FC\\u3059\\uFF08Javascript\\uFF09", "geo": null, "id": 148634708954198000, "id_str": "148634708954198017", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1250694680/twijavascript_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1250694680/twijavascript_normal.gif", "source": "<a href="http://wakamenews.mydns.jp/programming.php" rel="nofollow">\\u308F\\u304B\\u3081\\u306B\\u3085\\u30FC\\u3059\\uFF08JS\\uFF09</a>", "text": "Node.js - Develop - Windows Azure http://t.co/Bnimrpm8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:22:03 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148634176210472960, "id_str": "148634176210472961", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @dadicool RESTeasy: Test any API with APIeasy http://t.co/0mPC2aaW -< with such a great ecosystem, #>em /em< is starting to feel...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:22:03 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148634175048646660, "id_str": "148634175048646656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @superstructor tomblobaum: node.js turtle t-shirt on sale at http://t.co/48pml9ZF for the next 48 hours http://t.co/vNWJr7N5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:22:03 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148634173870063600, "id_str": "148634173870063616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @pswar NodeJsCommunity: #nodejs #eclipse plugin with code assist - now we're talking: http://t.co/OvpbPLdO http://t.co/GHbE3ryo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:12:56 +0000", "from_user": "dadicool", "from_user_id": 14200949, "from_user_id_str": "14200949", "from_user_name": "Dali Kilani", "geo": null, "id": 148631880982470660, "id_str": "148631880982470656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/86577298/portrait_dali_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/86577298/portrait_dali_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "RESTeasy: Test any API with APIeasy http://t.co/XhMMayoW -> with such a great ecosystem, #nodejs is starting to feel unavoidable ...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:11:15 +0000", "from_user": "outa7iME", "from_user_id": 64403059, "from_user_id_str": "64403059", "from_user_name": "outaTiME", "geo": null, "id": 148631456200130560, "id_str": "148631456200130560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1577438873/my.own.new_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1577438873/my.own.new_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tjholowaychuk: uber-simple express 3.x-pre cookie session middleware https://t.co/d9AVDTZx (6 SLOC) #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:09:19 +0000", "from_user": "superstructor", "from_user_id": 209380936, "from_user_id_str": "209380936", "from_user_name": "Isaac Johnston", "geo": null, "id": 148630970885611520, "id_str": "148630970885611520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1435857282/isaac.johnston_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1435857282/isaac.johnston_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tomblobaum: node.js turtle t-shirt on sale at http://t.co/EsGzaTZR for the next 48 hours http://t.co/TUIYbqZQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:05:52 +0000", "from_user": "pswar", "from_user_id": 19135024, "from_user_id_str": "19135024", "from_user_name": "Sathish Pottavathini", "geo": null, "id": 148630101318303740, "id_str": "148630101318303746", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1415004691/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1415004691/image_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: #nodejs #eclipse plugin with code assist - now we're talking: http://t.co/6F2Zr1z2 http://t.co/arXCC8DT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:02:27 +0000", "from_user": "stevesandersonf", "from_user_id": 194307897, "from_user_id_str": "194307897", "from_user_name": "steve sanderson", "geo": null, "id": 148629241418891260, "id_str": "148629241418891265", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "A Node.js t-shirt http://t.co/ZJVnWkeG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:00:41 +0000", "from_user": "patrick232", "from_user_id": 27541440, "from_user_id_str": "27541440", "from_user_name": "patrick", "geo": null, "id": 148628797003022340, "id_str": "148628797003022338", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/707373883/qr_patrick_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/707373883/qr_patrick_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @substack: I like turtles: http://t.co/uoswx4E5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:58:50 +0000", "from_user": "mariorealm", "from_user_id": 12082152, "from_user_id_str": "12082152", "from_user_name": "Rafael Lopez", "geo": null, "id": 148628331548520450, "id_str": "148628331548520448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/297802767/gb_small_x_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/297802767/gb_small_x_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/ArjRN85g I want", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:57:58 +0000", "from_user": "obfuscurity", "from_user_id": 66432490, "from_user_id_str": "66432490", "from_user_name": "Jason Dixon", "geo": null, "id": 148628114153537540, "id_str": "148628114153537536", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1362856233/obfuscation_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1362856233/obfuscation_normal.jpeg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @wezfurlong: blogged: Node.js - First Impressions http://t.co/dzMFpkv9 #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:53:04 +0000", "from_user": "jibone", "from_user_id": 11623592, "from_user_id_str": "11623592", "from_user_name": "J Shamsul Bahri", "geo": null, "id": 148626880529047550, "id_str": "148626880529047553", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/610933151/avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/610933151/avatar_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "(o.O) RT @nodenpm: NodObjC (0.0.9): http://t.co/ySBVqrOK The NodeJS \\u21C6 Objective-C bridge", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:52:20 +0000", "from_user": "SubtleGradient", "from_user_id": 14405464, "from_user_id_str": "14405464", "from_user_name": "Thomas Aylott", "geo": null, "id": 148626695837069300, "id_str": "148626695837069312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/566657299/thomas-aylott-75_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/566657299/thomas-aylott-75_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @substack: I like turtles: http://t.co/uoswx4E5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:52:05 +0000", "from_user": "pinguxx", "from_user_id": 18173075, "from_user_id_str": "18173075", "from_user_name": "Ivan Torres", "geo": null, "id": 148626632016531460, "id_str": "148626632016531456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1245791573/50106_1239274592_4492_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1245791573/50106_1239274592_4492_q_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: NodObjC (0.0.9): http://t.co/5hNDELCv The NodeJS \\u21C6 Objective-C bridge http://t.co/gAideF7w", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:50:09 +0000", "from_user": "HNTweets", "from_user_id": 116276133, "from_user_id_str": "116276133", "from_user_name": "Hacker News", "geo": null, "id": 148626146496487420, "id_str": "148626146496487424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1369520630/HNTweets_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1369520630/HNTweets_normal.png", "source": "<a href="http://github.com/d4nt/HNTweets" rel="nofollow">HNTweets Bot</a>", "text": "A Node.js t-shirt: http://t.co/9QkM3ZUd Comments: http://t.co/r4CwYpJE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:48:31 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148625736129978370, "id_str": "148625736129978368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "RT @nodenpm: NodObjC (0.0.9): http://t.co/auSYB6KF The NodeJS \\u21C6 Objective-C bridge", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:48:29 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148625728643141630, "id_str": "148625728643141633", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NodObjC (0.0.9): http://t.co/5hNDELCv The NodeJS \\u21C6 Objective-C bridge http://t.co/gAideF7w", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:43:22 +0000", "from_user": "sbose78", "from_user_id": 190726716, "from_user_id_str": "190726716", "from_user_name": "Shoubhik Bose", "geo": null, "id": 148624441688076300, "id_str": "148624441688076289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1555136629/313678_10150287343724509_710069508_7509696_1574204_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555136629/313678_10150287343724509_710069508_7509696_1574204_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "How do I install the commandline tool for @cloudfoundry in Windows?\\nI'll be using @nodejs and #mongodb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:39:26 +0000", "from_user": "_PuffTheMagic_", "from_user_id": 82289924, "from_user_id_str": "82289924", "from_user_name": "Ryan Hope", "geo": null, "id": 148623448401391600, "id_str": "148623448401391616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668890565/IMG_3323_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668890565/IMG_3323_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "In the year two thoooooousaaaand! .... and twelve, WebKit and NodeJS will always be up to date on #webOS.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:34:52 +0000", "from_user": "huntoonfhzbri5", "from_user_id": 396190302, "from_user_id_str": "396190302", "from_user_name": "Huntoon Godwin", "geo": null, "id": 148622301653512200, "id_str": "148622301653512192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1601621166/imagesCA0Q7BZH_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601621166/imagesCA0Q7BZH_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Thatttt was fun. Just wrote my first prototype iphone app using nodeJS and socket.io.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:26:48 +0000", "from_user": "peterwooley", "from_user_id": 766612, "from_user_id_str": "766612", "from_user_name": "Peter Wooley", "geo": null, "id": 148620270255616000, "id_str": "148620270255616001", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1352667885/pwooley-256px_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1352667885/pwooley-256px_normal.png", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "I'd like this shirt very much. RT @substack: I like turtles: http://t.co/K4gTHTk1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:20:37 +0000", "from_user": "sebastibe", "from_user_id": 45152657, "from_user_id_str": "45152657", "from_user_name": "S\\u00E9bastien B\\u00E9al", "geo": null, "id": 148618713153810430, "id_str": "148618713153810433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1648440563/id_picture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648440563/id_picture_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @davidbgk: Technology behind Rackspace Cloud Monitoring http://t.co/paLVR6bZ and why they switched from Python to NodeJS http://t.co/WFqHI7x0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:20:20 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 148618641729011700, "id_str": "148618641729011713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "NodObjC (0.0.9): http://t.co/auSYB6KF The NodeJS \\u21C6 Objective-C bridge", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:12:15 +0000", "from_user": "mongodb_news", "from_user_id": 218710958, "from_user_id_str": "218710958", "from_user_name": "MongoDb", "geo": null, "id": 148616608863100930, "id_str": "148616608863100928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1173473945/imgres-1_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1173473945/imgres-1_normal.jpeg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @mtw: #hackmtl gathers 72 developers hacking on nodejs, redis and mongodb http://t.co/Fa3c4hxV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:06:06 +0000", "from_user": "jdslatts", "from_user_id": 14861727, "from_user_id_str": "14861727", "from_user_name": "Justin Slattery", "geo": null, "id": 148615062674878460, "id_str": "148615062674878466", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627622413/IMG_9312_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627622413/IMG_9312_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @substack: I like turtles: http://t.co/uoswx4E5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:00:07 +0000", "from_user": "shailensukul", "from_user_id": 15090996, "from_user_id_str": "15090996", "from_user_name": "Shailen Sukul", "geo": null, "id": 148613556118618100, "id_str": "148613556118618113", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1094023430/Profile_Shailen_5_Small_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1094023430/Profile_Shailen_5_Small_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "NodeJS and Windows Azure http://t.co/Lm359jNV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:56:10 +0000", "from_user": "gocho", "from_user_id": 14523807, "from_user_id_str": "14523807", "from_user_name": "gocho", "geo": null, "id": 148612563528200200, "id_str": "148612563528200192", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/943882585/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/943882585/twitter_normal.jpg", "source": "<a href="https://mozillalabs.com/ubiquity/" rel="nofollow">Ubiquity</a>", "text": "npm install \\u3063\\u3066\\u3001\\u5F15\\u6570\\u4ED8\\u3051\\u305A\\u306B\\u5B9F\\u884C\\u3059\\u308B\\u3068\\u3001\\u8DB3\\u308A\\u306A\\u3044\\u30E2\\u30B8\\u30E5\\u30FC\\u30EB\\u3092\\u78BA\\u8A8D\\u3057\\u3066\\u62FE\\u3063\\u3066\\u304D\\u3066\\u304F\\u308C\\u308B\\u3093\\u3060 nodejs\\u306E\\u30E2\\u30B8\\u30E5\\u30FC\\u30EB\\u7BA1\\u7406\\u306Fwindows\\u74B0\\u5883\\u3068\\u601D\\u3048\\u306A\\u3044\\u304F\\u3089\\u3044\\u4FBF\\u5229", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:53:42 +0000", "from_user": "chartjes", "from_user_id": 7418052, "from_user_id_str": "7418052", "from_user_name": "Chris Hartjes", "geo": null, "id": 148611943052214270, "id_str": "148611943052214272", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1632387753/thoughtfull-chris_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632387753/thoughtfull-chris_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @wezfurlong: blogged: Node.js - First Impressions http://t.co/dzMFpkv9 #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:46:01 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148610008215597060, "id_str": "148610008215597056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "RT @jackhq: NodeJs CLI get-post 0.1.0 released! - New Release of get-post! Verson 0.1.0 This version refines the api and... http://t.co/Pyp8yxCF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:45:59 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148609999113961470, "id_str": "148609999113961472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NodeJs CLI get-post 0.1.0 released! - New Release of get-post! Verson 0.1.0 This version refines the api and... ... http://t.co/EN7CBszJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:42:43 +0000", "from_user": "elazar", "from_user_id": 9105122, "from_user_id_str": "9105122", "from_user_name": "Matthew Turland", "geo": null, "id": 148609178137657340, "id_str": "148609178137657344", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1674107936/270483_808419244670_47912933_37915694_7250313_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674107936/270483_808419244670_47912933_37915694_7250313_n_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @wezfurlong: blogged: Node.js - First Impressions http://t.co/dzMFpkv9 #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:40:45 +0000", "from_user": "JRodass", "from_user_id": 98769356, "from_user_id_str": "98769356", "from_user_name": "JORGE RODAS ", "geo": null, "id": 148608680680636400, "id_str": "148608680680636417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697463299/28666_128267110530920_100000428944379_237827_6744478_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697463299/28666_128267110530920_100000428944379_237827_6744478_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Did you miss the Learn #Windows #Azure event Tuesday? The video is up on @ch9 http://t.co/cfUIsDJV #SQLAzure #nodejs /via @WindowsAzure", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:36:59 +0000", "from_user": "gocho", "from_user_id": 14523807, "from_user_id_str": "14523807", "from_user_name": "gocho", "geo": null, "id": 148607734206570500, "id_str": "148607734206570496", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/943882585/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/943882585/twitter_normal.jpg", "source": "<a href="https://mozillalabs.com/ubiquity/" rel="nofollow">Ubiquity</a>", "text": "nodejs\\u306EGLOBAL._\\u306B\\u95A2\\u3059\\u308B\\u8A18\\u8FF0\\u306F\\u898B\\u3064\\u304B\\u3089\\u306A\\u3044\\u306A\\u30FC \\u30A4\\u30F3\\u30BF\\u30FC\\u30D7\\u30EA\\u30BF\\u30FC\\u30E2\\u30FC\\u30C9\\u9650\\u5B9A\\u306E\\u6319\\u52D5\\u3060\\u3063\\u305F\\u308A\\u3059\\u308B\\u306E\\u304B\\u306A\\uFF1F http://t.co/n2b4k1qv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:31:06 +0000", "from_user": "wezfurlong", "from_user_id": 9589662, "from_user_id_str": "9589662", "from_user_name": "Wez Furlong", "geo": null, "id": 148606254804254720, "id_str": "148606254804254720", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1133560209/wezmug_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1133560209/wezmug_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "blogged: Node.js - First Impressions http://t.co/dzMFpkv9 #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:30:35 +0000", "from_user": "angrynoah", "from_user_id": 213869138, "from_user_id_str": "213869138", "from_user_name": "Noah Yetter", "geo": null, "id": 148606123069546500, "id_str": "148606123069546496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1164411491/64048-468x-mega-man_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1164411491/64048-468x-mega-man_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @garannm: Ahahaha awesome. Haven't tried this, but what a good idea. http://t.co/Gqc6Unup (Not saying that just because I don't know shell scripting.)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:25:09 +0000", "from_user": "nodeaz", "from_user_id": 258473067, "from_user_id_str": "258473067", "from_user_name": "Node Arizona", "geo": null, "id": 148604757525803000, "id_str": "148604757525803009", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1258927958/nodejs1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1258927958/nodejs1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @substack: I like turtles: http://t.co/uoswx4E5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:24:58 +0000", "from_user": "raj_arjun", "from_user_id": 52373256, "from_user_id_str": "52373256", "from_user_name": "Arjun Raj", "geo": null, "id": 148604708804771840, "id_str": "148604708804771841", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/501208183/n732491696_670862_8425_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/501208183/n732491696_670862_8425_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:24:05 +0000", "from_user": "alenards", "from_user_id": 10849112, "from_user_id_str": "10849112", "from_user_name": "Andrew Lenards", "geo": null, "id": 148604486204665860, "id_str": "148604486204665856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1653257768/andy_avatar_relvl_250x249_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653257768/andy_avatar_relvl_250x249_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "@sdevore it is a cause as much as node.js is - http://t.co/ATzFAVc1", "to_user": "sdevore", "to_user_id": 655823, "to_user_id_str": "655823", "to_user_name": "Sam DeVore", "in_reply_to_status_id": 148604222622023680, "in_reply_to_status_id_str": "148604222622023680"}, +{"created_at": "Mon, 19 Dec 2011 03:22:09 +0000", "from_user": "gocho", "from_user_id": 14523807, "from_user_id_str": "14523807", "from_user_name": "gocho", "geo": null, "id": 148604001464758270, "id_str": "148604001464758272", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/943882585/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/943882585/twitter_normal.jpg", "source": "<a href="https://mozillalabs.com/ubiquity/" rel="nofollow">Ubiquity</a>", "text": "nodejs\\u3067underscore.js\\u3092require\\u3057\\u3066\\u307F\\u305F\\u3093\\u3060\\u3051\\u3069\\u3001 GLOBAL._(\\u76F4\\u8FD1\\u306E\\u8A55\\u4FA1\\u5024\\u3092\\u4FDD\\u6301\\u3059\\u308B\\u5909\\u6570?)\\u3068\\u885D\\u7A81\\u3057\\u3066\\u3057\\u307E\\u3046\\u307F\\u305F\\u3044 \\u5358\\u7D14\\u306B\\u300C_\\u300D\\u3067underscore.js\\u306B\\u30A2\\u30AF\\u30BB\\u30B9\\u3059\\u308B\\u306E\\u306F\\u96E3\\u3057\\u305D\\u3046\\u306D http://t.co/MaFu3Lci", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:21:46 +0000", "from_user": "imd23", "from_user_id": 21980122, "from_user_id_str": "21980122", "from_user_name": "gaston", "geo": null, "id": 148603906065305600, "id_str": "148603906065305600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700006148/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700006148/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "who wants to test my first #nodejs #socketio project? DM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:21:11 +0000", "from_user": "jackhq", "from_user_id": 15810776, "from_user_id_str": "15810776", "from_user_name": "Jack Russ Software", "geo": null, "id": 148603757259800580, "id_str": "148603757259800579", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/493141971/jrs-logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/493141971/jrs-logo_normal.png", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "NodeJs CLI get-post 0.1.0 released! - New Release of get-post! Verson 0.1.0 This version refines the api and... http://t.co/Pyp8yxCF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:19:18 +0000", "from_user": "david_welch", "from_user_id": 296367257, "from_user_id_str": "296367257", "from_user_name": "David Welch", "geo": null, "id": 148603284326846460, "id_str": "148603284326846464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1349570213/Screen_shot_2011-05-11_at_3.02.43_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1349570213/Screen_shot_2011-05-11_at_3.02.43_PM_normal.png", "source": "<a href="http://adium.im" rel="nofollow">Adium</a>", "text": "Just wrote my first #NodeJs \"middleware\" to parse out @Facebook credentials on a request. A lot like #JavaEE Filters (without the web.xml)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:16:07 +0000", "from_user": "gjohnson391", "from_user_id": 37568587, "from_user_id_str": "37568587", "from_user_name": "Garrett Johnson", "geo": null, "id": 148602483961380860, "id_str": "148602483961380864", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1241793637/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1241793637/avatar_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "node-turtles! http://t.co/84n4N8fY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:15:35 +0000", "from_user": "gocho", "from_user_id": 14523807, "from_user_id_str": "14523807", "from_user_name": "gocho", "geo": null, "id": 148602347147374600, "id_str": "148602347147374592", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/943882585/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/943882585/twitter_normal.jpg", "source": "<a href="https://mozillalabs.com/ubiquity/" rel="nofollow">Ubiquity</a>", "text": "windows\\u306Enodejs\\u3001\\u30C7\\u30D5\\u30A9\\u30EB\\u30C8\\u306E\\u30B0\\u30ED\\u30FC\\u30D0\\u30EB\\u30A4\\u30F3\\u30B9\\u30C8\\u30FC\\u30EB\\u5148\\u304C C:\\Users\\%UserName%\\Appdata\\Roaming\\npm\\node_modules \\u306B\\u306A\\u3063\\u3066\\u308B\\u306E\\u304B nodejs\\u306Ewindows\\u5BFE\\u5FDC\\u3001\\u6C17\\u5408\\u5165\\u3063\\u3066\\u308B\\u306A\\uFF5E", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:14:02 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148601957123227650, "id_str": "148601957123227648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @subhaze: http://t.co/aUUy2Xu6 #bought", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:14:00 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148601948420059140, "id_str": "148601948420059136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "http://t.co/I5rL8wKP #bought http://t.co/RlULY5ZM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:08:03 +0000", "from_user": "brunolazzaro", "from_user_id": 112500870, "from_user_id_str": "112500870", "from_user_name": "Bruno Lazzaro", "geo": null, "id": 148600453251334140, "id_str": "148600453251334144", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1694015290/DSC_0347_reasonably_small_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694015290/DSC_0347_reasonably_small_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Actualizaron el sitio de NodeJS: http://t.co/jZx124mu :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:07:08 +0000", "from_user": "fengmk2", "from_user_id": 21738641, "from_user_id_str": "21738641", "from_user_name": "MK2", "geo": null, "id": 148600223982288900, "id_str": "148600223982288897", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/285484301/imk2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/285484301/imk2_normal.png", "source": "<a href="http://chrome.google.com/extensions/detail/aicelmgbddfgmpieedjiggifabdpcnln" rel="nofollow">FaWave</a>", "text": "ITier optimization practice, Data middleware application in Taobao RT @CNodeJS \"ITier\\u5F00\\u53D1\\u4F18\\u5316\\u5B9E\\u8DF5\" @\\u5B64\\u72EC\\u7684\\u767B\\u5C71\\u4EBA http://t.co/PEQv5YSQ #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:06:01 +0000", "from_user": "danieljgibson", "from_user_id": 77597228, "from_user_id_str": "77597228", "from_user_name": "Daniel Gibson", "geo": null, "id": 148599940250218500, "id_str": "148599940250218497", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1088215142/dan_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1088215142/dan_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:03:48 +0000", "from_user": "subhaze", "from_user_id": 138864322, "from_user_id_str": "138864322", "from_user_name": "Michael Russell", "geo": null, "id": 148599383854821380, "id_str": "148599383854821376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1118667070/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1118667070/me_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "http://t.co/aUUy2Xu6 #bought", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:52:43 +0000", "from_user": "modeerf", "from_user_id": 15188409, "from_user_id_str": "15188409", "from_user_name": "modeerf", "geo": null, "id": 148596594827206660, "id_str": "148596594827206656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1296892805/198538_10150136943803595_638368594_6603821_5858502_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1296892805/198538_10150136943803595_638368594_6603821_5858502_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @garannm: Ahahaha awesome. Haven't tried this, but what a good idea. http://t.co/Gqc6Unup (Not saying that just because I don't know shell scripting.)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:49:57 +0000", "from_user": "lloydhilaiel", "from_user_id": 14103559, "from_user_id_str": "14103559", "from_user_name": "lloydhilaiel", "geo": null, "id": 148595898866339840, "id_str": "148595898866339840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1330527210/lloyd_maybe_thinking_zoom_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1330527210/lloyd_maybe_thinking_zoom_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @substack: I like turtles: http://t.co/uoswx4E5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:44:32 +0000", "from_user": "aAmalia", "from_user_id": 35127479, "from_user_id_str": "35127479", "from_user_name": "Aulia Amalia", "geo": null, "id": 148594536329904130, "id_str": "148594536329904128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1555770955/Screen_shot_2011-09-23_at_1.36.04_PM_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555770955/Screen_shot_2011-09-23_at_1.36.04_PM_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "RT @jcleblanc: Node.js modules you should know about: semver http://t.co/hNLcfevd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:43:19 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148594226920308740, "id_str": "148594226920308736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @fastest963: Nodejs Shirts! http://t.co/DPelY14k", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:43:17 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148594220184244220, "id_str": "148594220184244225", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Nodejs Shirts! http://t.co/I5rL8wKP http://t.co/6jLhzYnh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:43:02 +0000", "from_user": "Eccra", "from_user_id": 17231467, "from_user_id_str": "17231467", "from_user_name": "Braden Powers", "geo": null, "id": 148594157374550000, "id_str": "148594157374550016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1305562881/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1305562881/profile_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Node.js, Now As A Snazzy Shirt http://t.co/wS9WGMSQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:34:54 +0000", "from_user": "Nodester", "from_user_id": 240751001, "from_user_id_str": "240751001", "from_user_name": "Nodester", "geo": null, "id": 148592110281564160, "id_str": "148592110281564160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Nice! RT @diaffalo: My nodejs implementation of fingerd is complete!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 02:34:24 +0000", "from_user": "luis2103", "from_user_id": 119916622, "from_user_id_str": "119916622", "from_user_name": "Luis Sancho", "geo": null, "id": 148591984070758400, "id_str": "148591984070758400", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1629425602/foto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629425602/foto_normal.jpg", "source": "<a href="http://reptincel.com" rel="nofollow">TwittTwittTwitt</a>", "text": "RT @jquery_addict: #jquery del lado server http://t.co/TrnN8Mum #mejorandola #nodejs (via @thesequencer)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:33:32 +0000", "from_user": "fastest963", "from_user_id": 15226527, "from_user_id_str": "15226527", "from_user_name": "James Hartig", "geo": null, "id": 148591765358776320, "id_str": "148591765358776321", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1623168786/230173_2055713118220_1406366465_2426488_816622_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1623168786/230173_2055713118220_1406366465_2426488_816622_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Nodejs Shirts! http://t.co/DPelY14k", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:33:23 +0000", "from_user": "Nodester", "from_user_id": 240751001, "from_user_id_str": "240751001", "from_user_name": "Nodester", "geo": null, "id": 148591729040306180, "id_str": "148591729040306176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Technology behind Rackspace Cloud Monitoring http://t.co/CEJs9kOe and why they switched from Python to NodeJS ht... http://t.co/UfUMLCzs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:33:02 +0000", "from_user": "francescaPasha", "from_user_id": 207559129, "from_user_id_str": "207559129", "from_user_name": "Francesca Krihely", "geo": null, "id": 148591642591510530, "id_str": "148591642591510529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1619685254/Screen_shot_2011-11-02_at_8.56.52_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619685254/Screen_shot_2011-11-02_at_8.56.52_PM_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: #hackmtl gathers 72 developers hacking on nodejs, redis and mongodb http://t.co/NI7qOYr1 #oilq http://t.co/I3eDQVok", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:29:52 +0000", "from_user": "Nodester", "from_user_id": 240751001, "from_user_id_str": "240751001", "from_user_name": "Nodester", "geo": null, "id": 148590845619212300, "id_str": "148590845619212288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @substack: I like turtles: http://t.co/uoswx4E5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:29:04 +0000", "from_user": "chrismatthieu", "from_user_id": 13604142, "from_user_id_str": "13604142", "from_user_name": "Chris Matthieu", "geo": null, "id": 148590643898355700, "id_str": "148590643898355712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/918916153/SuperChrisSmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/918916153/SuperChrisSmall_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Only 2 days left to purchase this limited edition node.js tshirt! RT @substack: I like turtles: http://t.co/T2d5t5UO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:28:47 +0000", "from_user": "fengmk2", "from_user_id": 21738641, "from_user_id_str": "21738641", "from_user_name": "MK2", "geo": null, "id": 148590569856315400, "id_str": "148590569856315393", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/285484301/imk2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/285484301/imk2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @substack: I like turtles: http://t.co/uoswx4E5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:27:39 +0000", "from_user": "mvrilo", "from_user_id": 18115242, "from_user_id_str": "18115242", "from_user_name": "ruf", "geo": null, "id": 148590285830627330, "id_str": "148590285830627328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1408810373/ruf_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1408810373/ruf_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @substack: I like turtles: http://t.co/uoswx4E5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:26:30 +0000", "from_user": "chadskidmore", "from_user_id": 22544441, "from_user_id_str": "22544441", "from_user_name": "Chad Skidmore", "geo": null, "id": 148589997430280200, "id_str": "148589997430280192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1671589932/chad-head-small_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671589932/chad-head-small_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Node.js, Now As A Snazzy Shirt http://t.co/dgI3jgIZ Minium order qty hit so they are shipping! Get yours now! #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:26:12 +0000", "from_user": "ryah", "from_user_id": 18975861, "from_user_id_str": "18975861", "from_user_name": "Ryan Dahl", "geo": null, "id": 148589920024399870, "id_str": "148589920024399872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1634041610/name_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634041610/name_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @substack: I like turtles: http://t.co/uoswx4E5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:21:24 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148588711754469380, "id_str": "148588711754469376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @jcleblanc Node.js modules you should know about: semver http://t.co/bJG3Zmyf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:21:23 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148588710655569920, "id_str": "148588710655569922", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @FriendsOfNodeJS substack: I like turtles: http://t.co/48pml9ZF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:21:23 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148588707807629300, "id_str": "148588707807629312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @cra @mccv \"Write your shell scripts in JavaScript...\" http://t.co/4yyymK1a", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:20:42 +0000", "from_user": "alexissmirnov", "from_user_id": 7611972, "from_user_id_str": "7611972", "from_user_name": "Alexis Smirnov", "geo": null, "id": 148588536327700480, "id_str": "148588536327700481", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/24487012/alexis_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/24487012/alexis_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @mtw: #hackmtl gathers 72 developers hacking on nodejs, redis and mongodb http://t.co/Fa3c4hxV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:19:02 +0000", "from_user": "jcleblanc", "from_user_id": 15392140, "from_user_id_str": "15392140", "from_user_name": "Jonathan LeBlanc", "geo": null, "id": 148588116767289340, "id_str": "148588116767289344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/281463265/3490041159_59b53be507_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/281463265/3490041159_59b53be507_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "Node.js modules you should know about: semver http://t.co/hNLcfevd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:12:01 +0000", "from_user": "thesequencer", "from_user_id": 299406941, "from_user_id_str": "299406941", "from_user_name": "cristian g. coronel ", "geo": null, "id": 148586350243880960, "id_str": "148586350243880960", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1580510176/yo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580510176/yo_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "#jquery del lado server http://t.co/gizcy0C0 #mejorandola #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:11:38 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148586254437584900, "id_str": "148586254437584896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "I like turtles: http://t.co/I5rL8wKP http://t.co/t7htUlNi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:10:02 +0000", "from_user": "cra", "from_user_id": 14602130, "from_user_id_str": "14602130", "from_user_name": "Chris Aniszczyk", "geo": null, "id": 148585850727432200, "id_str": "148585850727432192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1440894270/zxtwitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1440894270/zxtwitter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@mccv \"Write your shell scripts in JavaScript...\" http://t.co/EToD7rsp", "to_user": "mccv", "to_user_id": 9160152, "to_user_id_str": "9160152", "to_user_name": "Mark McBride"}, +{"created_at": "Mon, 19 Dec 2011 02:09:14 +0000", "from_user": "rbarraud", "from_user_id": 15363272, "from_user_id_str": "15363272", "from_user_name": "rbarraud", "geo": null, "id": 148585649442799600, "id_str": "148585649442799617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1159478248/sp-studio__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1159478248/sp-studio__1__normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: Imagine http://t.co/98HBW2Xi in real-time across a whole data center of production #nodejs processes sampling both JS and C functions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:06:13 +0000", "from_user": "goatslacker", "from_user_id": 9369012, "from_user_id_str": "9369012", "from_user_name": "Josh Perez", "geo": null, "id": 148584893159440400, "id_str": "148584893159440384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/529643794/4448_111189216356_647826356_3169504_3493906_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/529643794/4448_111189216356_647826356_3169504_3493906_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @substack: I like turtles: http://t.co/uoswx4E5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:01:43 +0000", "from_user": "fernanddosilva", "from_user_id": 353010666, "from_user_id_str": "353010666", "from_user_name": "Fernando Silva", "geo": null, "id": 148583761372643330, "id_str": "148583761372643328", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1569783784/avatar-gravatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1569783784/avatar-gravatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Tentando encontrar uma forma legal organizar a estrutura dos meus projetos em #nodejs E acho que encontrei hehehehe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:56:45 +0000", "from_user": "hij1nx", "from_user_id": 95938827, "from_user_id_str": "95938827", "from_user_name": "Paolo Fragomeni", "geo": null, "id": 148582509704249340, "id_str": "148582509704249344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1392216695/gravatar_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1392216695/gravatar_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @substack: I like turtles: http://t.co/uoswx4E5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:53:53 +0000", "from_user": "tjgillis", "from_user_id": 3957861, "from_user_id_str": "3957861", "from_user_name": "Thomas", "geo": null, "id": 148581786950184960, "id_str": "148581786950184960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1542511817/guinea_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542511817/guinea_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Tweaking my blog. Updated link: http://t.co/y0JLsKM1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:52:50 +0000", "from_user": "substack", "from_user_id": 125027291, "from_user_id_str": "125027291", "from_user_name": "James Halliday", "geo": null, "id": 148581523921178620, "id_str": "148581523921178627", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/805387602/laptop-robot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/805387602/laptop-robot_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I like turtles: http://t.co/uoswx4E5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:49:00 +0000", "from_user": "AgustinF", "from_user_id": 21112331, "from_user_id_str": "21112331", "from_user_name": "Agustin Feuerhake", "geo": null, "id": 148580557830365200, "id_str": "148580557830365184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/966644713/avataragustin_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/966644713/avataragustin_normal.png", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "RT @hackernewsbot: Node.js modules you should know about: semver... http://t.co/Xv87Pot0 cc:@iobaixas", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:44:51 +0000", "from_user": "tjgillis", "from_user_id": 3957861, "from_user_id_str": "3957861", "from_user_name": "Thomas", "geo": null, "id": 148579514933448700, "id_str": "148579514933448704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1542511817/guinea_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542511817/guinea_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "What is the best way to achieve a Flash/Unity app with shared Nodejs server? - http://t.co/taCVRKa7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:40:47 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148578492886425600, "id_str": "148578492886425600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://identi.ca" rel="nofollow">identica</a>", "text": "RT @observatoire: #hackmtl gathers 72 developers hacking on nodejs, redis and mongodb http://t.co/EH2PxKmI #oilq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:40:45 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148578481410809860, "id_str": "148578481410809856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#hackmtl gathers 72 developers hacking on nodejs, redis and mongodb http://t.co/NI7qOYr1 #oilq http://t.co/I3eDQVok", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:38:54 +0000", "from_user": "dtorres", "from_user_id": 10973202, "from_user_id_str": "10973202", "from_user_name": "Diego Torres", "geo": null, "id": 148578016350568450, "id_str": "148578016350568448", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701905441/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701905441/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Building nodejs :p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:31:44 +0000", "from_user": "sadasant", "from_user_id": 101949871, "from_user_id_str": "101949871", "from_user_name": "Daniel R.", "geo": null, "id": 148576214150426620, "id_str": "148576214150426624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1619598037/sadasant_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619598037/sadasant_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Technology behind Rackspace Cloud Monitoring http://t.co/CEJs9kOe and why they switched from Python to NodeJS ht... http://t.co/UfUMLCzs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:30:32 +0000", "from_user": "observatoire", "from_user_id": 17017451, "from_user_id_str": "17017451", "from_user_name": "observatoire", "geo": +{"coordinates": [46.8123,-71.2145], "type": "Point"}, "id": 148575913980866560, "id_str": "148575913980866562", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/906988827/lob-logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/906988827/lob-logo_normal.png", "source": "<a href="http://identi.ca" rel="nofollow">identica</a>", "text": "#hackmtl gathers 72 developers hacking on nodejs, redis and mongodb http://t.co/EH2PxKmI #oilq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:18:24 +0000", "from_user": "xiaofeng_metis", "from_user_id": 18009359, "from_user_id_str": "18009359", "from_user_name": "WangXiaoFeng", "geo": null, "id": 148572857708970000, "id_str": "148572857708969984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1157909208/_Users_ycat_Pictures_Skitch_icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1157909208/_Users_ycat_Pictures_Skitch_icon_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "coffee-script + less + nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:09:44 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148570676029165570, "id_str": "148570676029165568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @davidbgk: Technology behind Rackspace Cloud Monitoring http://t.co/paLVR6bZ and why they switched from Python to NodeJS http://t.co/WFqHI7x0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:09:42 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148570668605259780, "id_str": "148570668605259776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Technology behind Rackspace Cloud Monitoring http://t.co/CEJs9kOe and why they switched from Python to NodeJS ht... http://t.co/UfUMLCzs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:09:22 +0000", "from_user": "ncoghlan_dev", "from_user_id": 261665936, "from_user_id_str": "261665936", "from_user_name": "Nick Coghlan", "geo": null, "id": 148570583779643400, "id_str": "148570583779643393", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1276419269/pycon2011_language_summit_cropped_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1276419269/pycon2011_language_summit_cropped_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@wjlroe Oh, believe me, I also had the \"How the hell does moving from Twisted to NodeJS solve a developer inexperience problem?\" reaction :)", "to_user": "wjlroe", "to_user_id": 11835052, "to_user_id_str": "11835052", "to_user_name": "Will Roe", "in_reply_to_status_id": 148568973049479170, "in_reply_to_status_id_str": "148568973049479168"}, +{"created_at": "Mon, 19 Dec 2011 01:08:03 +0000", "from_user": "teespring_", "from_user_id": 273515759, "from_user_id_str": "273515759", "from_user_name": "Teespring", "geo": null, "id": 148570255122382850, "id_str": "148570255122382848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695025964/Twitter_Logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695025964/Twitter_Logo_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tomblobaum: node.js turtle t-shirt on sale at http://t.co/EsGzaTZR for the next 48 hours http://t.co/TUIYbqZQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:56:29 +0000", "from_user": "ingnucious", "from_user_id": 13062272, "from_user_id_str": "13062272", "from_user_name": "malaniz", "geo": null, "id": 148567344363487230, "id_str": "148567344363487232", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1518261118/avatar-8bit_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1518261118/avatar-8bit_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "probando #bogart para #nodejs... me gusta! es como #sinatra o mi tesis de licenciatura en python :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:40:46 +0000", "from_user": "diaffalo", "from_user_id": 14517902, "from_user_id_str": "14517902", "from_user_name": "diaffalo", "geo": null, "id": 148563386681147400, "id_str": "148563386681147392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1145039452/newtwit_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1145039452/newtwit_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "My nodejs implementation of fingerd is complete!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:38:41 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148562864242831360, "id_str": "148562864242831363", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tomblobaum: node.js turtle t-shirt on sale at http://t.co/EsGzaTZR for the next 48 hours http://t.co/TUIYbqZQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:38:39 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148562855564820480, "id_str": "148562855564820480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "node.js turtle t-shirt on sale at http://t.co/I5rL8wKP for the next 48 hours http://t.co/vUimiI8U http://t.co/Vtgo0ZSH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:38:17 +0000", "from_user": "davidbgk", "from_user_id": 14463703, "from_user_id_str": "14463703", "from_user_name": "David Larlet", "geo": null, "id": 148562764170919940, "id_str": "148562764170919936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/926181565/david-larlet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/926181565/david-larlet_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Technology behind Rackspace Cloud Monitoring http://t.co/paLVR6bZ and why they switched from Python to NodeJS http://t.co/WFqHI7x0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:33:59 +0000", "from_user": "wjlroe", "from_user_id": 11835052, "from_user_id_str": "11835052", "from_user_name": "Will Roe", "geo": null, "id": 148561682829017100, "id_str": "148561682829017088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1671712662/sacre_coeur_skeptical_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671712662/sacre_coeur_skeptical_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ncoghlan_dev so what made me think \"wat?\" was they had to write so many libraries to get it done. Brilliant for NodeJS peeps, otherwise?", "to_user": "ncoghlan_dev", "to_user_id": 261665936, "to_user_id_str": "261665936", "to_user_name": "Nick Coghlan", "in_reply_to_status_id": 148560527193407500, "in_reply_to_status_id_str": "148560527193407488"}, +{"created_at": "Mon, 19 Dec 2011 00:18:27 +0000", "from_user": "robmcguinness", "from_user_id": 135386437, "from_user_id_str": "135386437", "from_user_name": "Robert McGuinness", "geo": null, "id": 148557771602788350, "id_str": "148557771602788352", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1165265938/t128_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1165265938/t128_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "#backbonejs + #nodejs is pure bliss", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:15:55 +0000", "from_user": "matbeeDOTcom", "from_user_id": 44289928, "from_user_id_str": "44289928", "from_user_name": "Mathieu Gosbee", "geo": null, "id": 148557132323758080, "id_str": "148557132323758080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1227919001/167881_10150092165096460_513541459_6100965_461794_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1227919001/167881_10150092165096460_513541459_6100965_461794_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ryah .....lol.... Well, any pointers. NodeJS+Express vs R.O.R's crazy ruby syntax.", "to_user": "ryah", "to_user_id": 18975861, "to_user_id_str": "18975861", "to_user_name": "Ryan Dahl", "in_reply_to_status_id": 148556242741231600, "in_reply_to_status_id_str": "148556242741231616"}, +{"created_at": "Mon, 19 Dec 2011 00:11:36 +0000", "from_user": "gocho", "from_user_id": 14523807, "from_user_id_str": "14523807", "from_user_name": "gocho", "geo": null, "id": 148556049455136770, "id_str": "148556049455136768", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/943882585/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/943882585/twitter_normal.jpg", "source": "<a href="https://mozillalabs.com/ubiquity/" rel="nofollow">Ubiquity</a>", "text": "nodejs\\u306E\\u30A4\\u30F3\\u30BF\\u30FC\\u30D7\\u30EA\\u30BF\\u3001GLOBAL._ \\u306B\\u306F\\u3001\\u6700\\u5F8C\\u306B\\u8A55\\u4FA1\\u3055\\u308C\\u305F\\u5024\\u304C\\u5165\\u3063\\u3066\\u3044\\u308B\\u306E\\u304B eval\\u306E\\u623B\\u308A\\u5024\\u7684\\u306B\\u4F7F\\u3048\\u308B\\u306E\\u306D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:07:09 +0000", "from_user": "matbeeDOTcom", "from_user_id": 44289928, "from_user_id_str": "44289928", "from_user_name": "Mathieu Gosbee", "geo": null, "id": 148554929433358340, "id_str": "148554929433358336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1227919001/167881_10150092165096460_513541459_6100965_461794_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1227919001/167881_10150092165096460_513541459_6100965_461794_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ryah I'm having a discussion with a co-developer of a startup. Trying to decide: Ruby On Rails or NodeJS. Help.", "to_user": "ryah", "to_user_id": 18975861, "to_user_id_str": "18975861", "to_user_name": "Ryan Dahl"}, +{"created_at": "Sun, 18 Dec 2011 23:48:14 +0000", "from_user": "tomblobaum", "from_user_id": 141134421, "from_user_id_str": "141134421", "from_user_name": "Tom Blobaum", "geo": null, "id": 148550162988535800, "id_str": "148550162988535808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1405290920/8beaa9fcd7377a1f32ea66badaa6c1b5_2__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1405290920/8beaa9fcd7377a1f32ea66badaa6c1b5_2__normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "node.js turtle t-shirt on sale at http://t.co/EsGzaTZR for the next 48 hours http://t.co/TUIYbqZQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:44:43 +0000", "from_user": "david_authier", "from_user_id": 96945939, "from_user_id_str": "96945939", "from_user_name": "David Authier", "geo": null, "id": 148549282432159740, "id_str": "148549282432159744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1608249509/logo-david_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608249509/logo-david_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jackhq: This looks really cool! -> http://t.co/4RYZQcGe Lint Tool for #coffeescript #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:43:55 +0000", "from_user": "jackhq", "from_user_id": 15810776, "from_user_id_str": "15810776", "from_user_name": "Jack Russ Software", "geo": null, "id": 148549082946863100, "id_str": "148549082946863104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/493141971/jrs-logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/493141971/jrs-logo_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "This looks really cool! -> http://t.co/4RYZQcGe Lint Tool for #coffeescript #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:38:25 +0000", "from_user": "fernanddosilva", "from_user_id": 353010666, "from_user_id_str": "353010666", "from_user_name": "Fernando Silva", "geo": null, "id": 148547697169809400, "id_str": "148547697169809408", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1569783784/avatar-gravatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1569783784/avatar-gravatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "To come\\u00E7ando a gostar desse tal de #expressjs #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:37:06 +0000", "from_user": "evilsoft", "from_user_id": 14910488, "from_user_id_str": "14910488", "from_user_name": "Ian Hofmann-Hicks", "geo": null, "id": 148547365031256060, "id_str": "148547365031256064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/195547623/evilTweet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/195547623/evilTweet_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Really digging on #nodejs with #couchdb for data aggregation and mining.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:28:23 +0000", "from_user": "techngfx", "from_user_id": 314888606, "from_user_id_str": "314888606", "from_user_name": "techngfx", "geo": null, "id": 148545172404305920, "id_str": "148545172404305920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1390609558/Logo_Techngfx_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1390609558/Logo_Techngfx_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Node.js modules you should know about: semver http://t.co/nsae4v9u", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:20:26 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148543169796116480, "id_str": "148543169796116481", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @grahamlyons After a couple of hiccups I managed to get #nodejs builds working in #travisci: http://t.co/pLfdHX8x", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:20:25 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148543168680435700, "id_str": "148543168680435713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @FriendsOfNodeJS nodenpm: always (0.4.0): http://t.co/PuVi0r39 CLI & Daemon tool to run a NodeJS process always, restarting on...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:20:25 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148543167078203400, "id_str": "148543167078203392", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @Evangenieur cjean_dev: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/oaVI2J7R", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:17:57 +0000", "from_user": "grahamlyons", "from_user_id": 23963755, "from_user_id_str": "23963755", "from_user_name": "Graham Lyons", "geo": null, "id": 148542546908426240, "id_str": "148542546908426241", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/93918914/twitme_crop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/93918914/twitme_crop_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "After a couple of hiccups I managed to get #nodejs builds working in #travisci: http://t.co/VGbmPydz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:13:40 +0000", "from_user": "nodejs", "from_user_id": 91985735, "from_user_id_str": "91985735", "from_user_name": "node js", "geo": null, "id": 148541468045361150, "id_str": "148541468045361152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1437021459/nodejs-dark_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1437021459/nodejs-dark_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @gabrielfalcao: it's stunning how so many interesting node.js modules comes from @tjholowaychuk. Unbelievably awesome.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:06:19 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 148539619825299460, "id_str": "148539619825299456", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "speculum (0.1.0): http://t.co/rUt9v5ea NodeJS BDD Test Suite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:04:32 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148539170980241400, "id_str": "148539170980241408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "RT @nodenpm: always (0.4.0): http://t.co/C1U3Sx3d CLI & Daemon tool to run a NodeJS process always, restarting on file changes & crashes w...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:04:31 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148539164177088500, "id_str": "148539164177088512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "always (0.4.0): http://t.co/9LVs3arm CLI & Daemon tool to run a NodeJS process always, restarting on file change... http://t.co/DaVYTUVW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:57:31 +0000", "from_user": "Evangenieur", "from_user_id": 21945870, "from_user_id_str": "21945870", "from_user_name": "Evan Genieur", "geo": null, "id": 148537405568319500, "id_str": "148537405568319489", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/83725129/gunnm2_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/83725129/gunnm2_small_normal.jpg", "source": "Zite Personalized Magazine", "text": "RT @cjean_dev: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/yXLGQK9l", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:57:27 +0000", "from_user": "fernanddosilva", "from_user_id": 353010666, "from_user_id_str": "353010666", "from_user_name": "Fernando Silva", "geo": null, "id": 148537387146936320, "id_str": "148537387146936320", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1569783784/avatar-gravatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1569783784/avatar-gravatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Bora. E dale estudar #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:56:36 +0000", "from_user": "xaptronic", "from_user_id": 15613733, "from_user_id_str": "15613733", "from_user_name": "alex pilon", "geo": null, "id": 148537173547814900, "id_str": "148537173547814915", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1575351209/winter-me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575351209/winter-me_normal.jpg", "source": "Zite Personalized Magazine", "text": "RT @cjean_dev: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/yXLGQK9l", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:43:49 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 148533957527478270, "id_str": "148533957527478272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "always (0.4.0): http://t.co/C1U3Sx3d CLI & Daemon tool to run a NodeJS process always, restarting on file changes & crashes w...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:39:38 +0000", "from_user": "kimo", "from_user_id": 6068052, "from_user_id_str": "6068052", "from_user_name": "Krishna Guda", "geo": null, "id": 148532903897333760, "id_str": "148532903897333760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1576122748/stevejobs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576122748/stevejobs_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:36:07 +0000", "from_user": "hkokko", "from_user_id": 24726686, "from_user_id_str": "24726686", "from_user_name": "Hannu Kokko", "geo": null, "id": 148532018307792900, "id_str": "148532018307792896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/100266288/hannu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/100266288/hannu_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:34:29 +0000", "from_user": "dalmaer", "from_user_id": 4216361, "from_user_id_str": "4216361", "from_user_name": "Dion Almaer", "geo": null, "id": 148531608616570880, "id_str": "148531608616570880", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/292949152/dionprofile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/292949152/dionprofile_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tjholowaychuk: palette - image color palette extraction lib for #nodejs - https://t.co/bwzPe8NP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:33:31 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148531362322841600, "id_str": "148531362322841600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://www.tweettrail.com" rel="nofollow">Tweet Traill</a>", "text": "RT @tweettrailbot1: Check out who is tweeting about: ' nodejs ', here: http://t.co/D3Bwzmxm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:33:29 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148531354726965250, "id_str": "148531354726965248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Check out who is tweeting about: ' nodejs ', here: http://t.co/x32bDTje http://t.co/ueSiDpFP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:30:00 +0000", "from_user": "tweettrailbot1", "from_user_id": 197244919, "from_user_id_str": "197244919", "from_user_name": "Tweet Trail Announce", "geo": null, "id": 148530478532657150, "id_str": "148530478532657152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1134778998/ttlogo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1134778998/ttlogo_normal.png", "source": "<a href="http://www.tweettrail.com" rel="nofollow">Tweet Traill</a>", "text": "Check out who is tweeting about: ' nodejs ', here: http://t.co/D3Bwzmxm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:29:19 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 148530308663361540, "id_str": "148530308663361536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "short (0.2.7): http://t.co/dSD1mhZw NodeJS URL Shortener backed by MongooseJS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:24:53 +0000", "from_user": "Samisdat", "from_user_id": 5493712, "from_user_id_str": "5493712", "from_user_name": "Bastian Sackermann", "geo": null, "id": 148529190919094270, "id_str": "148529190919094272", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/34424312/quad_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/34424312/quad_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Der Server l\\u00E4uft mit @Nodejs Daten speichern in @CouchDB und http://t.co/7KzDdmZH \\u00FCbernimmt die Session. Sch\\u00F6ner Code ohne PHP ;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:11:02 +0000", "from_user": "kubicek", "from_user_id": 73639242, "from_user_id_str": "73639242", "from_user_name": "Ji\\u0159\\u00ED Kub\\u00ED\\u010Dek", "geo": null, "id": 148525708044550140, "id_str": "148525708044550145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/727445482/20090821_0783_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/727445482/20090821_0783_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Tak therubyracer na FreeBSD opravdu ne :( Pro\\u010D sakra less.rb nepou\\u017E\\u00EDv\\u00E1 NodeJS? #lessrb #fail", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:05:25 +0000", "from_user": "cccc4d", "from_user_id": 334495560, "from_user_id_str": "334495560", "from_user_name": "Milton Colwell", "geo": null, "id": 148524293758779400, "id_str": "148524293758779392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1471512767/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1471512767/profile_normal.png", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "\\u201CNode.js Windows Azure Introduction | Windows Azure Developer Experience Videos | Channel 9\\u201D http://t.co/aWUuAr68", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:00:45 +0000", "from_user": "heri", "from_user_id": 1578491, "from_user_id_str": "1578491", "from_user_name": "heri", "geo": null, "id": 148523116723834880, "id_str": "148523116723834880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1212243024/Screen_shot_2011-01-10_at_5.35.57_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1212243024/Screen_shot_2011-01-10_at_5.35.57_PM_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @jonotron: kewl work was done #hackmtl http://t.co/UF5NfJWS via @mtw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:00:05 +0000", "from_user": "mtw", "from_user_id": 4609741, "from_user_id_str": "4609741", "from_user_name": "Montreal Tech Watch", "geo": null, "id": 148522950914613250, "id_str": "148522950914613248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1311424156/Screen_shot_2011-04-14_at_11.25.36_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1311424156/Screen_shot_2011-04-14_at_11.25.36_AM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pluc: Best anecdote from #hackmtl, by @jamesaduncan: #NodeJS 0.6.4 was blocked in China because of Tiananmen Square events: http://t.co/I51oes0F", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:59:54 +0000", "from_user": "jvduf", "from_user_id": 41679937, "from_user_id_str": "41679937", "from_user_name": "Jeroen van Duffelen", "geo": null, "id": 148522904529805300, "id_str": "148522904529805312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1251159750/Jeroen_van_Duffelen_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1251159750/Jeroen_van_Duffelen_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ryah: @nodejs people should be following @indutny - he's been doing great core work the last few months", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:56:34 +0000", "from_user": "supakolya", "from_user_id": 10327102, "from_user_id_str": "10327102", "from_user_name": "Nicolas Weil", "geo": null, "id": 148522064855306240, "id_str": "148522064855306241", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/282132360/n679009215_9698_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/282132360/n679009215_9698_normal.jpg", "source": "<a href="http://www.scoop.it" rel="nofollow">Scoop.it</a>", "text": "Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 | @#scoopit http://t.co/8Dau55Eu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:48:45 +0000", "from_user": "cayasso", "from_user_id": 57570032, "from_user_id_str": "57570032", "from_user_name": "Jonathan Brumley", "geo": null, "id": 148520100243320830, "id_str": "148520100243320832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/361872421/jonathan_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/361872421/jonathan_normal.jpg", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "RT @cronopio2: Wow!! really awesome!! RT @maciejmalecki: @flatironjs has a simple http example now! http://t.co/RnOAdi8O #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:30:57 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148515620961517570, "id_str": "148515620961517568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "Zite Personalized Magazine", "text": "RT @HadoopNews: #Hackmtl Gathers 72 Developers Hacking On Nodejs, Redis And Mongodb http://t.co/6N0xTsqP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:30:56 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148515614380670980, "id_str": "148515614380670977", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Hackmtl Gathers 72 Developers Hacking On Nodejs, Redis And Mongodb http://t.co/hCpUr8E2 http://t.co/xgrq0zOo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:27:28 +0000", "from_user": "Poetro", "from_user_id": 4543971, "from_user_id_str": "4543971", "from_user_name": "Peter Galiba", "geo": null, "id": 148514740543569920, "id_str": "148514740543569920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/18340052/9ef94af232b3ec6b66b67bcc1d4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/18340052/9ef94af232b3ec6b66b67bcc1d4_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Write your shell scripts in JavaScript, via Node.js http://t.co/SL5Msixg http://t.co/RXUA0xNq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:22:47 +0000", "from_user": "maciejmalecki", "from_user_id": 263755874, "from_user_id_str": "263755874", "from_user_name": "Maciej Ma\\u0142ecki", "geo": null, "id": 148513565584789500, "id_str": "148513565584789504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1547225919/IMG_20110917_192531mt_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1547225919/IMG_20110917_192531mt_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ryah: @nodejs people should be following @indutny - he's been doing great core work the last few months", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:14:08 +0000", "from_user": "indexzero", "from_user_id": 13696102, "from_user_id_str": "13696102", "from_user_name": "Charlie Robbins", "geo": null, "id": 148511385515597820, "id_str": "148511385515597825", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1179850399/P1000093bw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1179850399/P1000093bw_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ryah: @nodejs people should be following @indutny - he's been doing great core work the last few months", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:10:41 +0000", "from_user": "jaguilera_", "from_user_id": 337691375, "from_user_id_str": "337691375", "from_user_name": "Jes\\u00FAs Aguilera", "geo": null, "id": 148510518548774900, "id_str": "148510518548774913", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1673129171/yo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673129171/yo_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "comunidad #nodejs hispana http://t.co/KkOTLFUJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:06:33 +0000", "from_user": "HadoopNews", "from_user_id": 251816878, "from_user_id_str": "251816878", "from_user_name": "John Ching", "geo": null, "id": 148509479233785860, "id_str": "148509479233785857", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1244235692/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1244235692/images_normal.jpg", "source": "Zite Personalized Magazine", "text": "#Hackmtl Gathers 72 Developers Hacking On Nodejs, Redis And Mongodb http://t.co/6N0xTsqP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:04:03 +0000", "from_user": "rauchg", "from_user_id": 15540222, "from_user_id_str": "15540222", "from_user_name": "Guillermo Rauch", "geo": null, "id": 148508849605845000, "id_str": "148508849605844992", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1547730928/Image_2011.09.17_6-39-27_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1547730928/Image_2011.09.17_6-39-27_PM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tjholowaychuk: palette - image color palette extraction lib for #nodejs - https://t.co/bwzPe8NP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:00:03 +0000", "from_user": "FGRibreau", "from_user_id": 5719692, "from_user_id_str": "5719692", "from_user_name": "Fran\\u00E7ois-G. Ribreau", "geo": null, "id": 148507840766672900, "id_str": "148507840766672896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1117780106/2009_shooting_medium_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1117780106/2009_shooting_medium_normal.png", "source": "<a href="http://fgribreau.com" rel="nofollow">FG</a>", "text": "Chai - #BDD / #TDD assert. framework for NodeJS and the browser that can be paired with any testing framework http://t.co/VWzd6sT5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:57:56 +0000", "from_user": "pluc", "from_user_id": 14517408, "from_user_id_str": "14517408", "from_user_name": "Pier-Luc Petitclerc", "geo": null, "id": 148507310459858940, "id_str": "148507310459858945", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1330464753/avatar-trans-sm_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1330464753/avatar-trans-sm_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Best anecdote from #hackmtl, by @jamesaduncan: #NodeJS 0.6.4 was blocked in China because of Tiananmen Square events: http://t.co/I51oes0F", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:57:48 +0000", "from_user": "jbueza", "from_user_id": 141423083, "from_user_id_str": "141423083", "from_user_name": "Jaime Bueza", "geo": null, "id": 148507278427955200, "id_str": "148507278427955200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: Imagine http://t.co/98HBW2Xi in real-time across a whole data center of production #nodejs processes sampling both JS and C functions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:51:19 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 148505646298435600, "id_str": "148505646298435584", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "webdriverjs (0.5.5): http://t.co/3ZFZlpoU A nodejs bindings implementation for selenium 2.0/webdriver", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:46:38 +0000", "from_user": "nzjames", "from_user_id": 13040212, "from_user_id_str": "13040212", "from_user_name": "James \\u2620\\u270E Magness", "geo": null, "id": 148504466520416260, "id_str": "148504466520416256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1591731085/IMG_0867_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591731085/IMG_0867_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@thiswayup GNOME Do, Docky for desktop/app launcher. nodejs running in a Gauke dropdown for quick Javascript foo.", "to_user": "thiswayup", "to_user_id": 613543, "to_user_id_str": "613543", "to_user_name": "Joe Lee"}, +{"created_at": "Sun, 18 Dec 2011 20:38:46 +0000", "from_user": "Nodester", "from_user_id": 240751001, "from_user_id_str": "240751001", "from_user_name": "Nodester", "geo": null, "id": 148502484674027520, "id_str": "148502484674027520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Hack the planet with nodejs! RT @PhiRequiem: @Nodester thanks for the code!! d(^_^o) do the world a little better.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:37:46 +0000", "from_user": "TooTallNate", "from_user_id": 277724842, "from_user_id_str": "277724842", "from_user_name": "Nathan Rajlich", "geo": null, "id": 148502234118897660, "id_str": "148502234118897664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1410702232/5dc62d823e229c44665830bbe429c338_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1410702232/5dc62d823e229c44665830bbe429c338_normal.jpeg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@travisci Do you guys have any plans for CI workers running OS X? I have some #nodejs modules that are darwin-only\\u2026 https://t.co/ih1X7klr", "to_user": "travisci", "to_user_id": 252481460, "to_user_id_str": "252481460", "to_user_name": "Travis CI"}, +{"created_at": "Sun, 18 Dec 2011 20:36:04 +0000", "from_user": "jonotron", "from_user_id": 275575110, "from_user_id_str": "275575110", "from_user_name": "Jon Volkmar", "geo": null, "id": 148501808577380350, "id_str": "148501808577380352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1296126508/34077_775555533467_13618427_44344764_6964541_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1296126508/34077_775555533467_13618427_44344764_6964541_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "kewl work was done #hackmtl http://t.co/UF5NfJWS via @mtw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:32:54 +0000", "from_user": "atsuya", "from_user_id": 7483262, "from_user_id_str": "7483262", "from_user_name": "Atsuya Takagi", "geo": null, "id": 148501011466698750, "id_str": "148501011466698752", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1644873867/atsuya_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644873867/atsuya_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tjholowaychuk: palette - image color palette extraction lib for #nodejs - https://t.co/bwzPe8NP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:28:57 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148500015151726600, "id_str": "148500015151726593", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jerrysievert: introducing servitude: http://t.co/WpuwTiAh - CSS/JavaScript injection sugar with #bricksjs #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:28:55 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148500005760679940, "id_str": "148500005760679937", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "introducing servitude: http://t.co/OAzhxfqy - CSS/JavaScript injection sugar with #bricksjs #nodejs http://t.co/SmK2CciH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:22:32 +0000", "from_user": "peteryorke", "from_user_id": 14136726, "from_user_id_str": "14136726", "from_user_name": "Peter Yorke", "geo": null, "id": 148498400529227780, "id_str": "148498400529227776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/51727717/peter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/51727717/peter_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: Imagine http://t.co/98HBW2Xi in real-time across a whole data center of production #nodejs processes sampling both JS and C functions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:19:19 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148497593108930560, "id_str": "148497593108930561", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @seligoroff ryah: Imagine http://t.co/jndIrO5e in real-time across a whole data center of production #nodejs processes samplin...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Sun, 18 Dec 2011 20:19:19 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148497591632543740, "id_str": "148497591632543745", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @edjafarov jerrysievert: introducing servitude: http://t.co/ZZ75IgKl - CSS/JavaScript injection sugar with #bricksjs #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:19:19 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148497590537830400, "id_str": "148497590537830400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @functionsource ryah: Imagine http://t.co/jndIrO5e in real-time across a whole data center of production #nodejs processes sam...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:14:36 +0000", "from_user": "seligoroff", "from_user_id": 64225482, "from_user_id_str": "64225482", "from_user_name": "igor selivanov", "geo": null, "id": 148496403730145280, "id_str": "148496403730145280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/354125573/IMG_0025_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/354125573/IMG_0025_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: Imagine http://t.co/98HBW2Xi in real-time across a whole data center of production #nodejs processes sampling both JS and C functions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:14:13 +0000", "from_user": "edjafarov", "from_user_id": 18898176, "from_user_id_str": "18898176", "from_user_name": "Eldar Djafarov", "geo": null, "id": 148496307038855170, "id_str": "148496307038855168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/971019265/25-08-08_1708_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/971019265/25-08-08_1708_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jerrysievert: introducing servitude: http://t.co/WpuwTiAh - CSS/JavaScript injection sugar with #bricksjs #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:12:06 +0000", "from_user": "functionsource", "from_user_id": 279275657, "from_user_id_str": "279275657", "from_user_name": "FunctionSource", "geo": null, "id": 148495774471303170, "id_str": "148495774471303168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1306206357/Screen_shot_2011-03-31_at_Mar_31___11.15.50_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1306206357/Screen_shot_2011-03-31_at_Mar_31___11.15.50_AM_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: Imagine http://t.co/98HBW2Xi in real-time across a whole data center of production #nodejs processes sampling both JS and C functions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:11:44 +0000", "from_user": "chadlung", "from_user_id": 43794758, "from_user_id_str": "43794758", "from_user_name": "Chad Lung", "geo": null, "id": 148495682557329400, "id_str": "148495682557329409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1207577008/chad_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1207577008/chad_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:10:10 +0000", "from_user": "jerrysievert", "from_user_id": 79071437, "from_user_id_str": "79071437", "from_user_name": "Jerry Sievert", "geo": null, "id": 148495289374883840, "id_str": "148495289374883840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1472035024/Screen_shot_2010-07-08_at_6.16.10_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1472035024/Screen_shot_2010-07-08_at_6.16.10_PM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "introducing servitude: http://t.co/WpuwTiAh - CSS/JavaScript injection sugar with #bricksjs #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:08:12 +0000", "from_user": "dalmaer", "from_user_id": 4216361, "from_user_id_str": "4216361", "from_user_name": "Dion Almaer", "geo": null, "id": 148494794136621060, "id_str": "148494794136621056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/292949152/dionprofile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/292949152/dionprofile_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: Imagine http://t.co/98HBW2Xi in real-time across a whole data center of production #nodejs processes sampling both JS and C functions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:03:09 +0000", "from_user": "jimpick", "from_user_id": 15839929, "from_user_id_str": "15839929", "from_user_name": "Jim Pick", "geo": null, "id": 148493523379945470, "id_str": "148493523379945472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/680570347/jpick-240x240_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/680570347/jpick-240x240_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: Imagine http://t.co/98HBW2Xi in real-time across a whole data center of production #nodejs processes sampling both JS and C functions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:00:15 +0000", "from_user": "NunoGodinho", "from_user_id": 9971382, "from_user_id_str": "9971382", "from_user_name": "Nuno Godinho", "geo": null, "id": 148492793738838000, "id_str": "148492793738838016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/831407287/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/831407287/twitterProfilePhoto_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "RT @mikepluta: Windows Azure Adds Node.js Support, Hadoop Preview - ReadWriteCloud http://t.co/hMkHpxtS #hadoop #azure", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:57:53 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148492198814560260, "id_str": "148492198814560256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @shamoons: Posting files with #NodeJS and #expressjs http://t.co/MjbDNTTo #awesome", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:57:51 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148492191222870000, "id_str": "148492191222870016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Posting files with #NodeJS and #expressjs http://t.co/qz8DDke7 #awesome http://t.co/LU4AEZtC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:57:45 +0000", "from_user": "johlrogge", "from_user_id": 27765583, "from_user_id_str": "27765583", "from_user_name": "Joakim Ohlrogge", "geo": null, "id": 148492164580638720, "id_str": "148492164580638720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1295212288/Picture_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1295212288/Picture_6_normal.png", "source": "<a href="http://www.nambu.com/" rel="nofollow">Nambu</a>", "text": "Captivating combination: nodejs, busterjs, busterjs-mode and interfacing with git using git plumbing :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:55:30 +0000", "from_user": "francescaPasha", "from_user_id": 207559129, "from_user_id_str": "207559129", "from_user_name": "Francesca Krihely", "geo": null, "id": 148491599620476930, "id_str": "148491599620476928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1619685254/Screen_shot_2011-11-02_at_8.56.52_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619685254/Screen_shot_2011-11-02_at_8.56.52_PM_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@aaronheckmann check out this prezi featuring #Mongoose http://t.co/U9ypJVnr", "to_user": "aaronheckmann", "to_user_id": 13818902, "to_user_id_str": "13818902", "to_user_name": "Aaron Heckmann"}, +{"created_at": "Sun, 18 Dec 2011 19:52:22 +0000", "from_user": "francescaPasha", "from_user_id": 207559129, "from_user_id_str": "207559129", "from_user_name": "Francesca Krihely", "geo": null, "id": 148490808058847230, "id_str": "148490808058847232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1619685254/Screen_shot_2011-11-02_at_8.56.52_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619685254/Screen_shot_2011-11-02_at_8.56.52_PM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@orgnzit hey! would love hear how you used #MongoDB and #nodejs at the montreal hack day", "to_user": "orgnzit", "to_user_id": 178032946, "to_user_id_str": "178032946", "to_user_name": "Orgnz.it"}, +{"created_at": "Sun, 18 Dec 2011 19:50:59 +0000", "from_user": "alenart", "from_user_id": 20821510, "from_user_id_str": "20821510", "from_user_name": "Andre Lenartowicz", "geo": null, "id": 148490461114400770, "id_str": "148490461114400768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1332509059/179819_553460160001_76004188_32085459_5984159_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1332509059/179819_553460160001_76004188_32085459_5984159_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:50:12 +0000", "from_user": "jsgeneve", "from_user_id": 404035068, "from_user_id_str": "404035068", "from_user_name": "Javascript Gen\\u00E8ve", "geo": null, "id": 148490265106202620, "id_str": "148490265106202624", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1620267028/twitter_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620267028/twitter_normal.gif", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Ecrire un module pour #NodeJS http://t.co/tnUSeANq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:46:38 +0000", "from_user": "mikepluta", "from_user_id": 15150700, "from_user_id_str": "15150700", "from_user_name": "Mike Pluta", "geo": null, "id": 148489367432871940, "id_str": "148489367432871936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1584807716/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584807716/image_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "Windows Azure Adds Node.js Support, Hadoop Preview - ReadWriteCloud http://t.co/hMkHpxtS #hadoop #azure", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:42:42 +0000", "from_user": "jefkingabc", "from_user_id": 242907489, "from_user_id_str": "242907489", "from_user_name": "Jef King", "geo": null, "id": 148488377715527680, "id_str": "148488377715527681", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1628969602/HeadShot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628969602/HeadShot_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @jbueza: Rackspace's Cloud Monitoring System is ported from #Python to #NodeJS. http://t.co/Cvjkok2f", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:41:14 +0000", "from_user": "shamoons", "from_user_id": 20744357, "from_user_id_str": "20744357", "from_user_name": "Shamoon Siddiqui", "geo": null, "id": 148488009363365900, "id_str": "148488009363365890", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1568292716/shamoon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1568292716/shamoon_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Posting files with #NodeJS and #expressjs http://t.co/MjbDNTTo #awesome", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:35:42 +0000", "from_user": "BrianTRice", "from_user_id": 651403, "from_user_id_str": "651403", "from_user_name": "Brian T. Rice", "geo": null, "id": 148486615902322700, "id_str": "148486615902322688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/659659835/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/659659835/twitterProfilePhoto_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "#NodeJS gets a lot of flack for callbacks, but the evolutionary pressure yields nice reusable libraries like Async: https://t.co/1NahTcVV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:33:36 +0000", "from_user": "jbueza", "from_user_id": 141423083, "from_user_id_str": "141423083", "from_user_name": "Jaime Bueza", "geo": null, "id": 148486087029964800, "id_str": "148486087029964801", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Rackspace's Cloud Monitoring System is ported from #Python to #NodeJS. http://t.co/Cvjkok2f", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:30:20 +0000", "from_user": "NickSegV", "from_user_id": 440251603, "from_user_id_str": "440251603", "from_user_name": "Nick", "geo": null, "id": 148485266179498000, "id_str": "148485266179497984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Bit of stuffing around to get Cloud9 IDE running.. Great IDE for Nodejs tinkering though", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:26:53 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148484394670243840, "id_str": "148484394670243840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://www.eqentia.com" rel="nofollow">Eqentia</a>", "text": "RT @canadatechnews: #hackmtl gathers 72 developers hacking on nodejs, redis and mongodb http://t.co/0rbsNQb7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:26:51 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148484386982080500, "id_str": "148484386982080513", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#hackmtl gathers 72 developers hacking on nodejs, redis and mongodb http://t.co/RPJgkmqi http://t.co/ikByDI31", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:22:43 +0000", "from_user": "canadatechnews", "from_user_id": 90630787, "from_user_id_str": "90630787", "from_user_name": "Canada Tech Eqentia", "geo": null, "id": 148483348510146560, "id_str": "148483348510146560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/540476847/logo_small_nobrandline_square_border_3D_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/540476847/logo_small_nobrandline_square_border_3D_normal.jpg", "source": "<a href="http://www.eqentia.com" rel="nofollow">Eqentia</a>", "text": "#hackmtl gathers 72 developers hacking on nodejs, redis and mongodb http://t.co/0rbsNQb7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:21:49 +0000", "from_user": "brianleroux", "from_user_id": 676363, "from_user_id_str": "676363", "from_user_name": "xno\\u0279\\u01DD\\u0283 u\\u0250\\u0131\\u0279q", "geo": null, "id": 148483123259256830, "id_str": "148483123259256833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1400507401/Photo_on_2011-06-17_at_12.40__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1400507401/Photo_on_2011-06-17_at_12.40__2_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "Wishlist: ability to package a specific nodejs executable version with my node_modules", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:21:42 +0000", "from_user": "debashis_saha", "from_user_id": 48057427, "from_user_id_str": "48057427", "from_user_name": "Debashis Saha", "geo": null, "id": 148483093521645570, "id_str": "148483093521645569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1655001743/DS_square_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655001743/DS_square_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: #nodejs #eclipse plugin with code assist - now we're talking: http://t.co/6F2Zr1z2 http://t.co/arXCC8DT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:19:38 +0000", "from_user": "cjoudrey", "from_user_id": 27691615, "from_user_id_str": "27691615", "from_user_name": "Christian Joudrey", "geo": null, "id": 148482573146927100, "id_str": "148482573146927104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1257970012/gravatar_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1257970012/gravatar_normal.jpeg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @mtw: #hackmtl gathers 72 developers hacking on nodejs, redis and mongodb http://t.co/Fa3c4hxV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:19:24 +0000", "from_user": "changertech", "from_user_id": 300474121, "from_user_id_str": "300474121", "from_user_name": "Changer Technologies", "geo": null, "id": 148482511822000130, "id_str": "148482511822000128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1358732030/logo-square_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1358732030/logo-square_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Nodester: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/BwLp4eHS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:19:21 +0000", "from_user": "Nodester", "from_user_id": 240751001, "from_user_id_str": "240751001", "from_user_name": "Nodester", "geo": null, "id": 148482499973103600, "id_str": "148482499973103616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "w00t! RT @rajeshpillai: @Nodester Eager to setup my first nodejs projects. All thanks go to #nodester for giving a free coupon :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:14:59 +0000", "from_user": "SurigaoDigitalS", "from_user_id": 423168459, "from_user_id_str": "423168459", "from_user_name": "Surigao Digital", "geo": null, "id": 148481401950453760, "id_str": "148481401950453760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1661951087/Surigao_Digital_Logo_Black_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661951087/Surigao_Digital_Logo_Black_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I\\u2019m working on a small browser game myself using jQuery, nodejs and MongoDB with the server doing a gzip JSON response", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:14:47 +0000", "from_user": "mtw", "from_user_id": 4609741, "from_user_id_str": "4609741", "from_user_name": "Montreal Tech Watch", "geo": null, "id": 148481353405571070, "id_str": "148481353405571072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1311424156/Screen_shot_2011-04-14_at_11.25.36_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1311424156/Screen_shot_2011-04-14_at_11.25.36_AM_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#hackmtl gathers 72 developers hacking on nodejs, redis and mongodb http://t.co/Fa3c4hxV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:09:11 +0000", "from_user": "TooTallNate", "from_user_id": 277724842, "from_user_id_str": "277724842", "from_user_name": "Nathan Rajlich", "geo": null, "id": 148479943171514370, "id_str": "148479943171514369", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1410702232/5dc62d823e229c44665830bbe429c338_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1410702232/5dc62d823e229c44665830bbe429c338_normal.jpeg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@innoying #nodejs v0.6.6 for iOS source is up: https://t.co/z7g6Qfep", "to_user": "innoying", "to_user_id": 144001499, "to_user_id_str": "144001499", "to_user_name": "Luke Young"}, +{"created_at": "Sun, 18 Dec 2011 19:06:42 +0000", "from_user": "kovchiy", "from_user_id": 227331487, "from_user_id_str": "227331487", "from_user_name": "Danil Kovchiy", "geo": null, "id": 148479315334541300, "id_str": "148479315334541312", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1351905818/mua_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1351905818/mua_normal.PNG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u0441\\u0435\\u0439\\u0447\\u0430\\u0441 \\u043F\\u043E\\u043B\\u0435\\u0437\\u043B\\u0438 \\u043D\\u0430\\u0440\\u0443\\u0436\\u0443 \\u0432\\u0441\\u044F\\u043A\\u0438\\u0435 \\u0444\\u0443\\u0442\\u0443\\u0440\\u0438\\u0441\\u0442\\u0438\\u0447\\u043D\\u044B\\u0435 \\u044F\\u0437\\u044B\\u043A\\u0438 \\u0442\\u0438\\u043F\\u0430 nodejs, go, coffeescript... \\u043A\\u0430\\u0436\\u0435\\u0442\\u0441\\u044F \\u043C\\u043D\\u0435, \\u0447\\u0442\\u043E \\u0442\\u043E\\u043F\\u0447\\u0443\\u0442\\u0441\\u044F \\u043E\\u043D\\u0438, \\u0434\\u043E\\u043B\\u0436\\u043D\\u043E \\u0431\\u044B\\u0442\\u044C \\u0447\\u0442\\u043E-\\u0442\\u043E \\u0441\\u0432\\u0435\\u0436\\u0435\\u0435", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:06:19 +0000", "from_user": "__juju__", "from_user_id": 18388231, "from_user_id_str": "18388231", "from_user_name": "julien \\u270C", "geo": null, "id": 148479221562482700, "id_str": "148479221562482688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681093352/15612c3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681093352/15612c3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/YG5tubvs ~ from python to nodejs - interesting", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:04:33 +0000", "from_user": "Abderrahmane_TJ", "from_user_id": 16528800, "from_user_id_str": "16528800", "from_user_name": "Abderrahmane T.J.", "geo": null, "id": 148478777012400130, "id_str": "148478777012400129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317050036/twitter_logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317050036/twitter_logo_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @felixge: Hacking on a patch/proposal for catch-all listener support in #nodejs. this.on(function(event, arg1, \\u2026) { }). Thoughts?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:02:13 +0000", "from_user": "heri", "from_user_id": 1578491, "from_user_id_str": "1578491", "from_user_name": "heri", "geo": null, "id": 148478188018872320, "id_str": "148478188018872320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1212243024/Screen_shot_2011-01-10_at_5.35.57_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1212243024/Screen_shot_2011-01-10_at_5.35.57_PM_normal.png", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "#hackmtl : nodejs/redis/mongodb hackathon http://t.co/2NAUqzx3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:02:06 +0000", "from_user": "functionsource", "from_user_id": 279275657, "from_user_id_str": "279275657", "from_user_name": "FunctionSource", "geo": null, "id": 148478158813921280, "id_str": "148478158813921280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1306206357/Screen_shot_2011-03-31_at_Mar_31___11.15.50_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1306206357/Screen_shot_2011-03-31_at_Mar_31___11.15.50_AM_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @felixge: Hacking on a patch/proposal for catch-all listener support in #nodejs. this.on(function(event, arg1, \\u2026) { }). Thoughts?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:55:31 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148476502814629900, "id_str": "148476502814629888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://chrome.google.com/extensions/detail/aicelmgbddfgmpieedjiggifabdpcnln" rel="nofollow">FaWave</a>", "text": "RT @fengmk2: the node.js aesthetic :: The Universe of Discord http://t.co/lzkKdEyC #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:55:29 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148476495415881730, "id_str": "148476495415881728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "the node.js aesthetic :: The Universe of Discord http://t.co/O4u4gTzm #nodejs http://t.co/QHHz5T8a", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:54:30 +0000", "from_user": "dalmaer", "from_user_id": 4216361, "from_user_id_str": "4216361", "from_user_name": "Dion Almaer", "geo": null, "id": 148476246152581120, "id_str": "148476246152581120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/292949152/dionprofile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/292949152/dionprofile_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @felixge: Hacking on a patch/proposal for catch-all listener support in #nodejs. this.on(function(event, arg1, \\u2026) { }). Thoughts?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:52:05 +0000", "from_user": "felixge", "from_user_id": 9599342, "from_user_id_str": "9599342", "from_user_name": "Felix Geisend\\u00F6rfer", "geo": null, "id": 148475639744311300, "id_str": "148475639744311296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1372196280/felix_head_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1372196280/felix_head_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Hacking on a patch/proposal for catch-all listener support in #nodejs. this.on(function(event, arg1, \\u2026) { }). Thoughts?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:46:50 +0000", "from_user": "fengmk2", "from_user_id": 21738641, "from_user_id_str": "21738641", "from_user_name": "MK2", "geo": null, "id": 148474316986662900, "id_str": "148474316986662915", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/285484301/imk2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/285484301/imk2_normal.png", "source": "<a href="http://chrome.google.com/extensions/detail/aicelmgbddfgmpieedjiggifabdpcnln" rel="nofollow">FaWave</a>", "text": "the node.js aesthetic :: The Universe of Discord http://t.co/lzkKdEyC #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:39:56 +0000", "from_user": "zeroload", "from_user_id": 14908513, "from_user_id_str": "14908513", "from_user_name": "Vincent Voyer", "geo": null, "id": 148472580486082560, "id_str": "148472580486082560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1427267879/myfacev2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1427267879/myfacev2_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @naholyr: Now you have 500 asset managers in #nodejs it's time for BDD test suites... I've seen at least 6 just for today. What's wrong with you guys?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:38:11 +0000", "from_user": "larsw", "from_user_id": 812367, "from_user_id_str": "812367", "from_user_name": "Lars Wilhelmsen", "geo": null, "id": 148472141644435460, "id_str": "148472141644435457", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1493520937/286554_506803857228_337700054_135341_3372933_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1493520937/286554_506803857228_337700054_135341_3372933_o_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ferventcoder: Now the installed version \"@chocolateynuget: #nodejs.install: Node JS - Evented I/O for v8 JavaScript. #chocolatey #new\" /cc @garyshort", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:36:29 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148471714035146750, "id_str": "148471714035146752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @teashawn: The switch: #Python to #NodeJS http://t.co/WO4cccZa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:36:27 +0000", "from_user": "fengmk2", "from_user_id": 21738641, "from_user_id_str": "21738641", "from_user_name": "MK2", "geo": null, "id": 148471706284081150, "id_str": "148471706284081152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/285484301/imk2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/285484301/imk2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: The switch: #Python to #NodeJS http://t.co/3snBam2b http://t.co/wLL40Wqh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:31:37 +0000", "from_user": "ferventcoder", "from_user_id": 9645312, "from_user_id_str": "9645312", "from_user_name": "Rob Reynolds", "geo": null, "id": 148470486320414720, "id_str": "148470486320414720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1176943763/IMG_3766_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1176943763/IMG_3766_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Now the installed version \"@chocolateynuget: #nodejs.install: Node JS - Evented I/O for v8 JavaScript. #chocolatey #new\" /cc @garyshort", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:26:00 +0000", "from_user": "andrew_j_stone", "from_user_id": 318079932, "from_user_id_str": "318079932", "from_user_name": "Andrew J. Stone", "geo": null, "id": 148469076174438400, "id_str": "148469076174438400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1598642373/284659_696310082096_24501632_36175371_4924429_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598642373/284659_696310082096_24501632_36175371_4924429_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Reading through the #nodejs http code. Need to figure out how to manually reuse sokets.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:23:52 +0000", "from_user": "12dcode", "from_user_id": 185096297, "from_user_id_str": "185096297", "from_user_name": "Patrick Ryan", "geo": null, "id": 148468536304615420, "id_str": "148468536304615425", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1114356976/39860_413431087542_571862542_4739730_5640997_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1114356976/39860_413431087542_571862542_4739730_5640997_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Using a mediator pattern for NodeJS to consolidate the API gateway. MAkes devs happy. https://t.co/LHot472i", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:23:11 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148468366871498750, "id_str": "148468366871498752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @PierreArlais: how to make a major tech shift switching from #python to #nodejs http://t.co/T85jdvZg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:23:09 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148468359091068930, "id_str": "148468359091068930", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "how to make a major tech shift switching from #python to #nodejs http://t.co/F0c5ncwm http://t.co/NGSWL7v4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:17:36 +0000", "from_user": "kr428", "from_user_id": 207401188, "from_user_id_str": "207401188", "from_user_name": "Kristian", "geo": null, "id": 148466958776537100, "id_str": "148466958776537090", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1525504632/thorns_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1525504632/thorns_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Web scraping and growl notifications with node.js and jsdom http://t.co/4JirG49w #growl #nodejs #notifications ... http://t.co/ggSrNaRQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:16:51 +0000", "from_user": "andreftavares", "from_user_id": 98865791, "from_user_id_str": "98865791", "from_user_name": "Andr\\u00E9 Tavares", "geo": null, "id": 148466773140848640, "id_str": "148466773140848640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1420596539/rapastwitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1420596539/rapastwitter_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "What's the best way to access a #MongoDB database via #nodejs ? Not having much luck with 'node-mongodb-native' :/", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:11:11 +0000", "from_user": "PierreArlais", "from_user_id": 19884434, "from_user_id_str": "19884434", "from_user_name": "Pierre Arlais", "geo": null, "id": 148465345248755700, "id_str": "148465345248755712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1266575001/eightbit-04d0a435-e3b3-44d2-96d9-1c5d414a3411_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266575001/eightbit-04d0a435-e3b3-44d2-96d9-1c5d414a3411_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "how to make a major tech shift switching from #python to #nodejs http://t.co/T85jdvZg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:07:49 +0000", "from_user": "percysystem", "from_user_id": 128736352, "from_user_id_str": "128736352", "from_user_name": "PeRcY QuIsPe", "geo": null, "id": 148464500486574080, "id_str": "148464500486574082", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1244186137/leamitie_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1244186137/leamitie_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@freddier holas el curso q dieron de nodejs el 15 de diciembre peuden subirlo ala pagina para verlo .. esq no estuve ese dia", "to_user": "freddier", "to_user_id": 16742912, "to_user_id_str": "16742912", "to_user_name": "John Freddy Vega"}, +{"created_at": "Sun, 18 Dec 2011 18:07:39 +0000", "from_user": "tjgillis", "from_user_id": 3957861, "from_user_id_str": "3957861", "from_user_name": "Thomas", "geo": null, "id": 148464456177946620, "id_str": "148464456177946624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1542511817/guinea_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542511817/guinea_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "using the dmg failed to install nodejs correctly on my mac with npm. Removed both (i think) and going to attempt this from src with macports", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:04:58 +0000", "from_user": "briangarcia", "from_user_id": 14496156, "from_user_id_str": "14496156", "from_user_name": "Brian Garcia", "geo": null, "id": 148463783294144500, "id_str": "148463783294144512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1550200402/94E86FD8-4F27-43AC-B336-0525EDBFAC24_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1550200402/94E86FD8-4F27-43AC-B336-0525EDBFAC24_normal", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@existentialism Add to build? RT @tjholowaychuk: messing around with an open-source website screenshot app #nodejs - http://t.co/TctlEUCx", "to_user": "existentialism", "to_user_id": 1710331, "to_user_id_str": "1710331", "to_user_name": "Brian Ng"}, +{"created_at": "Sun, 18 Dec 2011 18:03:39 +0000", "from_user": "favstar_pop", "from_user_id": 217046870, "from_user_id_str": "217046870", "from_user_name": "Favstar Pop", "geo": null, "id": 148463452082540540, "id_str": "148463452082540544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1170017104/twitterAvatarWithHat_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1170017104/twitterAvatarWithHat_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:59:25 +0000", "from_user": "ckristhoff", "from_user_id": 419115122, "from_user_id_str": "419115122", "from_user_name": "Cristhiam Fernandez", "geo": null, "id": 148462383260635140, "id_str": "148462383260635136", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1652907195/image_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652907195/image_normal.jpeg", "source": "<a href="http://www.digsby.com/?utm_campaign=twitter" rel="nofollow">Digsby</a>", "text": "Acabo de correr mi ejemplo de #nodejs gracias a #mejorandola .Muy interesante, pero se podr\\u00E1 usar para producci\\u00F3n?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:59:01 +0000", "from_user": "mamund", "from_user_id": 1121591, "from_user_id_str": "1121591", "from_user_name": "Mike Amundsen", "geo": null, "id": 148462283830460400, "id_str": "148462283830460416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/340449683/madmen_icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/340449683/madmen_icon_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "leveling up on my nodejs code skilz. next up, groking the world of modules & npm #sharpeningTheSaw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:52:21 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148460604586344450, "id_str": "148460604586344448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://chrome.google.com/extensions/detail/aicelmgbddfgmpieedjiggifabdpcnln" rel="nofollow">FaWave</a>", "text": "RT @fengmk2: Writing node.js extensions with C++ and V8 http://t.co/GiCIIDou #nodejs# http://t.co/dxaafCEb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:52:20 +0000", "from_user": "yannlombard", "from_user_id": 21089709, "from_user_id_str": "21089709", "from_user_name": "Yann Lombard", "geo": null, "id": 148460603843944450, "id_str": "148460603843944448", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1273581053/eightbit-6dcb89fa-1040-47d6-828d-f78e3351e0f9_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273581053/eightbit-6dcb89fa-1040-47d6-828d-f78e3351e0f9_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Mes vacances de no\\u00EBl sont foutue #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:52:19 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148460596575215600, "id_str": "148460596575215616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Writing node.js extensions with C++ and V8 http://t.co/zVcBsUOC #nodejs# http://t.co/KAM57Ir1 http://t.co/rJ9nqBnp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:52:17 +0000", "from_user": "rajeshpillai", "from_user_id": 9589242, "from_user_id_str": "9589242", "from_user_name": "rajeshpillai", "geo": null, "id": 148460591701438460, "id_str": "148460591701438464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/505188893/rajesh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/505188893/rajesh_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Nodester Eager to setup my first nodejs projects. All thanks go to #nodester for giving a free coupon :)", "to_user": "Nodester", "to_user_id": 240751001, "to_user_id_str": "240751001", "to_user_name": "Nodester"}, +{"created_at": "Sun, 18 Dec 2011 17:47:39 +0000", "from_user": "shamoons", "from_user_id": 20744357, "from_user_id_str": "20744357", "from_user_name": "Shamoon Siddiqui", "geo": null, "id": 148459424296599550, "id_str": "148459424296599553", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1568292716/shamoon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1568292716/shamoon_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "How can I upload a file using #NodeJS? http://t.co/yioQbefc #helpplease", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:46:53 +0000", "from_user": "fengmk2", "from_user_id": 21738641, "from_user_id_str": "21738641", "from_user_name": "MK2", "geo": null, "id": 148459230112915460, "id_str": "148459230112915456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/285484301/imk2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/285484301/imk2_normal.png", "source": "<a href="http://chrome.google.com/extensions/detail/aicelmgbddfgmpieedjiggifabdpcnln" rel="nofollow">FaWave</a>", "text": "Writing node.js extensions with C++ and V8 http://t.co/GiCIIDou #nodejs# http://t.co/dxaafCEb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:40:29 +0000", "from_user": "arifLogic", "from_user_id": 40475679, "from_user_id_str": "40475679", "from_user_name": "arif setyawan", "geo": null, "id": 148457619542114300, "id_str": "148457619542114306", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1545110950/asty-01_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545110950/asty-01_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tjholowaychuk: messing around with an open-source website screenshot app powered by #nodejs, phantomjs, redis, etc - http://t.co/t9RD674A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:32:31 +0000", "from_user": "danilopopeye", "from_user_id": 8930342, "from_user_id_str": "8930342", "from_user_name": "Danilo Sousa", "geo": null, "id": 148455613263912960, "id_str": "148455613263912962", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1648567995/27420_576203864_6868_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648567995/27420_576203864_6868_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:29:27 +0000", "from_user": "LabatG", "from_user_id": 394627086, "from_user_id_str": "394627086", "from_user_name": "Labat Guillaume", "geo": null, "id": 148454845014212600, "id_str": "148454845014212608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.shareaholic.com" rel="nofollow">shareaholic app</a>", "text": "Learning Javascript with Object Graphs (Part III) - How To Node - NodeJS - http://t.co/MdPfKKVf #neoweb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:29:20 +0000", "from_user": "LabatG", "from_user_id": 394627086, "from_user_id_str": "394627086", "from_user_name": "Labat Guillaume", "geo": null, "id": 148454812982312960, "id_str": "148454812982312960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.shareaholic.com" rel="nofollow">shareaholic app</a>", "text": "Learning Javascript with Object Graphs (Part II) - How To Node - NodeJS - http://t.co/x5mkDqIP #neoweb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:29:15 +0000", "from_user": "LabatG", "from_user_id": 394627086, "from_user_id_str": "394627086", "from_user_name": "Labat Guillaume", "geo": null, "id": 148454793151651840, "id_str": "148454793151651840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.shareaholic.com" rel="nofollow">shareaholic app</a>", "text": "Learning Javascript with Object Graphs (Part I) - How To Node - NodeJS - http://t.co/KbRkIiMa #neoweb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:27:48 +0000", "from_user": "j_me_roberts", "from_user_id": 294383761, "from_user_id_str": "294383761", "from_user_name": "Jamie Roberts", "geo": null, "id": 148454428658253820, "id_str": "148454428658253824", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1342131439/DunsScotus11_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1342131439/DunsScotus11_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "nodejs + redis = http://t.co/a715kTGe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:27:23 +0000", "from_user": "stackfeed", "from_user_id": 237310237, "from_user_id_str": "237310237", "from_user_name": "StackOverflow", "geo": null, "id": 148454322303275000, "id_str": "148454322303275008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "How can I upload af file using Node.js?: I've already seen Uploading images using NodeJS, Express, and Mongo but... http://t.co/AqEZsaN7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:26:17 +0000", "from_user": "HardBit", "from_user_id": 15433389, "from_user_id_str": "15433389", "from_user_name": "Iv\\u00E1n Gonz\\u00E1lez", "geo": null, "id": 148454047467307000, "id_str": "148454047467307008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1324406069/IMG_0511_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1324406069/IMG_0511_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tjholowaychuk: messing around with an open-source website screenshot app powered by #nodejs, phantomjs, redis, etc - http://t.co/t9RD674A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:23:55 +0000", "from_user": "nguyenkha", "from_user_id": 63092051, "from_user_id_str": "63092051", "from_user_name": "\\u0110\\u1ED7 Nguy\\u00EAn Kha", "geo": null, "id": 148453452853428220, "id_str": "148453452853428225", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/717238244/avtar_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/717238244/avtar_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Simple web command line by #nodejs http://t.co/0jaZeoKr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:22:16 +0000", "from_user": "ottawa_js", "from_user_id": 310368917, "from_user_id_str": "310368917", "from_user_name": "Ottawa JavaScript", "geo": null, "id": 148453036883320830, "id_str": "148453036883320833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1381554740/nodejs_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1381554740/nodejs_logo_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Safari on iOS</a>", "text": "Node.js modules you should know about: socket.io http://t.co/VRQkYfSQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:22:06 +0000", "from_user": "functionsource", "from_user_id": 279275657, "from_user_id_str": "279275657", "from_user_name": "FunctionSource", "geo": null, "id": 148452993073807360, "id_str": "148452993073807361", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1306206357/Screen_shot_2011-03-31_at_Mar_31___11.15.50_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1306206357/Screen_shot_2011-03-31_at_Mar_31___11.15.50_AM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tjholowaychuk: messing around with an open-source website screenshot app powered by #nodejs, phantomjs, redis, etc - http://t.co/t9RD674A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:18:09 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148452000735039500, "id_str": "148452000735039489", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @ariyahidayat tjholowaychuk: messing around with an open-source website screenshot app powered by #nodejs, phantomjs, redis, e...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:18:09 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148451999539658750, "id_str": "148451999539658752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @dalmaer tjholowaychuk: messing around with an open-source website screenshot app powered by #nodejs, phantomjs, redis, etc - ...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:18:09 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148451998025519100, "id_str": "148451998025519105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @cloudshift1 pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/4bwSLUie hint: @nodejs, lots of...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:14:00 +0000", "from_user": "ariyahidayat", "from_user_id": 15608761, "from_user_id_str": "15608761", "from_user_name": "Ariya Hidayat", "geo": null, "id": 148450955908755460, "id_str": "148450955908755456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1662373732/headshot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662373732/headshot_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tjholowaychuk: messing around with an open-source website screenshot app powered by #nodejs, phantomjs, redis, etc - http://t.co/t9RD674A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:12:41 +0000", "from_user": "dalmaer", "from_user_id": 4216361, "from_user_id_str": "4216361", "from_user_name": "Dion Almaer", "geo": null, "id": 148450622537089020, "id_str": "148450622537089024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/292949152/dionprofile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/292949152/dionprofile_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tjholowaychuk: messing around with an open-source website screenshot app powered by #nodejs, phantomjs, redis, etc - http://t.co/t9RD674A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:01:24 +0000", "from_user": "cloudshift1", "from_user_id": 337691852, "from_user_id_str": "337691852", "from_user_name": "cloudshift", "geo": null, "id": 148447785270775800, "id_str": "148447785270775808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:00:22 +0000", "from_user": "naholyr", "from_user_id": 35705169, "from_user_id_str": "35705169", "from_user_name": "Nicolas Chambrier", "geo": null, "id": 148447525702074370, "id_str": "148447525702074368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/412641899/52b68aaa7ba1e8f6c699560f97573443_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/412641899/52b68aaa7ba1e8f6c699560f97573443_normal.png", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Now you have 500 asset managers in #nodejs it's time for BDD test suites... I've seen at least 6 just for today. What's wrong with you guys?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:57:03 +0000", "from_user": "Sirwan", "from_user_id": 19653283, "from_user_id_str": "19653283", "from_user_name": "Sirwan Qutbi", "geo": null, "id": 148446689110392830, "id_str": "148446689110392832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700377110/4YGUjy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700377110/4YGUjy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#NodeJs #Node is going to change everything on the #web #tech #world. ty @ryah", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:51:19 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 148445247964315650, "id_str": "148445247964315649", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "speculum (0.0.3): http://t.co/rUt9v5ea NodeJS BDD Test Suite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:50:45 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148445104540106750, "id_str": "148445104540106753", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Web scraping and growl notifications with node.js and jsdom http://t.co/4JirG49w #growl #nodejs #notifications ... http://t.co/ggSrNaRQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:44:10 +0000", "from_user": "chocolateynuget", "from_user_id": 342874803, "from_user_id_str": "342874803", "from_user_name": "Chocolatey NuGet", "geo": null, "id": 148443448364634100, "id_str": "148443448364634112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1527393850/chocolateyicon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1527393850/chocolateyicon_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "nodejs.install: Node JS - Evented I/O for v8 JavaScript. #chocolatey #new", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:41:25 +0000", "from_user": "abhikpramanik", "from_user_id": 142687317, "from_user_id_str": "142687317", "from_user_name": "Abhik Pramanik", "geo": null, "id": 148442754505113600, "id_str": "148442754505113600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1293235464/download_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1293235464/download_normal.jpeg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: The switch: #Python to #NodeJS http://t.co/3snBam2b http://t.co/wLL40Wqh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:40:50 +0000", "from_user": "rbolgov", "from_user_id": 36910075, "from_user_id_str": "36910075", "from_user_name": "Bolgov Roman", "geo": null, "id": 148442608669167600, "id_str": "148442608669167616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1284608872/ava_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1284608872/ava_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @NodeJsCommunity The switch: #Python to #NodeJS http://t.co/HWxhybsL http://t.co/7EJUAXmZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:40:43 +0000", "from_user": "roberskilots", "from_user_id": 36629897, "from_user_id_str": "36629897", "from_user_name": "Rob Skillington", "geo": null, "id": 148442580730908670, "id_str": "148442580730908672", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1494830257/Capture_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1494830257/Capture_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/SPeX3aHe website re-design looks pretty stunning! @NodeJsCommunity", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:33:36 +0000", "from_user": "johnny_t", "from_user_id": 13405032, "from_user_id_str": "13405032", "from_user_name": "John Thornton", "geo": null, "id": 148440786294411260, "id_str": "148440786294411265", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1666779859/1403e08_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666779859/1403e08_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tjholowaychuk: messing around with an open-source website screenshot app powered by #nodejs, phantomjs, redis, etc - http://t.co/t9RD674A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:32:14 +0000", "from_user": "darrellpratt", "from_user_id": 15535975, "from_user_id_str": "15535975", "from_user_name": "Darrell Pratt", "geo": null, "id": 148440444437667840, "id_str": "148440444437667840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1159639029/31758_402638536937_646921937_4618867_2862895_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1159639029/31758_402638536937_646921937_4618867_2862895_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tjholowaychuk: messing around with an open-source website screenshot app powered by #nodejs, phantomjs, redis, etc - http://t.co/t9RD674A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:28:12 +0000", "from_user": "ferventcoder", "from_user_id": 9645312, "from_user_id_str": "9645312", "from_user_name": "Rob Reynolds", "geo": null, "id": 148439428799545340, "id_str": "148439428799545344", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1176943763/IMG_3766_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1176943763/IMG_3766_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@garyshort http://t.co/JTuHsewu #nodejs installer cinst nodejs.install", "to_user": "garyshort", "to_user_id": 1176401, "to_user_id_str": "1176401", "to_user_name": "Gary Short"}, +{"created_at": "Sun, 18 Dec 2011 16:21:56 +0000", "from_user": "marcoegli", "from_user_id": 226274466, "from_user_id_str": "226274466", "from_user_name": "Marco Egli", "geo": null, "id": 148437854299766800, "id_str": "148437854299766784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1655118916/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655118916/profile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tjholowaychuk: messing around with an open-source website screenshot app powered by #nodejs, phantomjs, redis, etc - http://t.co/t9RD674A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:21:46 +0000", "from_user": "notzach", "from_user_id": 11880322, "from_user_id_str": "11880322", "from_user_name": "zach", "geo": null, "id": 148437811886952450, "id_str": "148437811886952448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1143251511/photo_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1143251511/photo_normal.jpeg", "source": "<a href="http://posterous.com" rel="nofollow">Posterous</a>", "text": "Web scraping and growl notifications with node.js and jsdom http://t.co/nobNUl1b #growl #nodejs #notifications #webscraping", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:20:13 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148437419644039170, "id_str": "148437419644039168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The switch: #Python to #NodeJS http://t.co/3snBam2b http://t.co/wLL40Wqh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:18:02 +0000", "from_user": "ouvanous", "from_user_id": 15946024, "from_user_id_str": "15946024", "from_user_name": "Samuel Morello", "geo": null, "id": 148436870152466430, "id_str": "148436870152466432", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1555793189/sam-small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555793189/sam-small_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tjholowaychuk: palette - image color palette extraction lib for #nodejs - https://t.co/bwzPe8NP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Sun, 18 Dec 2011 16:16:55 +0000", "from_user": "pedrogte", "from_user_id": 16401507, "from_user_id_str": "16401507", "from_user_name": "Pedro Teixeira", "geo": null, "id": 148436588282650620, "id_str": "148436588282650625", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1591778458/DSC02359-2_copy_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591778458/DSC02359-2_copy_normal.JPG", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "did I recently tell you how great nodemon is? http://t.co/ERO1joL4 #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:02:00 +0000", "from_user": "debug_bird", "from_user_id": 324837805, "from_user_id_str": "324837805", "from_user_name": "Jason Zoo", "geo": null, "id": 148432836133793800, "id_str": "148432836133793792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699203750/___normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699203750/___normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "How to Install Node.js - How To Node - NodeJS http://t.co/FPATV7QX via @creationix", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:59:49 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 148432286688346100, "id_str": "148432286688346112", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "speculum (0.0.2): http://t.co/rUt9v5ea NodeJS BDD Test Suite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:59:19 +0000", "from_user": "bpierre", "from_user_id": 16317137, "from_user_id_str": "16317137", "from_user_name": "Pierre Bertet", "geo": null, "id": 148432161849081860, "id_str": "148432161849081856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1328521406/avatar-2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1328521406/avatar-2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tjholowaychuk: messing around with an open-source website screenshot app powered by #nodejs, phantomjs, redis, etc - http://t.co/t9RD674A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:59:01 +0000", "from_user": "sadasant", "from_user_id": 101949871, "from_user_id_str": "101949871", "from_user_name": "Daniel R.", "geo": null, "id": 148432084132835330, "id_str": "148432084132835328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1619598037/sadasant_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619598037/sadasant_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tjholowaychuk: messing around with an open-source website screenshot app powered by #nodejs, phantomjs, redis, etc - http://t.co/t9RD674A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:57:05 +0000", "from_user": "teashawn", "from_user_id": 78538975, "from_user_id_str": "78538975", "from_user_name": "Tihomir Petkov", "geo": null, "id": 148431598897987600, "id_str": "148431598897987585", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1555860376/me_200x200_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555860376/me_200x200_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "The switch: #Python to #NodeJS http://t.co/WO4cccZa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:56:49 +0000", "from_user": "tjholowaychuk", "from_user_id": 29255412, "from_user_id_str": "29255412", "from_user_name": "TJ Holowaychuk", "geo": null, "id": 148431533257138180, "id_str": "148431533257138178", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/124810348/DSC_0009_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/124810348/DSC_0009_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "messing around with an open-source website screenshot app powered by #nodejs, phantomjs, redis, etc - http://t.co/t9RD674A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:54:02 +0000", "from_user": "jsgeneve", "from_user_id": 404035068, "from_user_id_str": "404035068", "from_user_name": "Javascript Gen\\u00E8ve", "geo": null, "id": 148430831524904960, "id_str": "148430831524904960", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1620267028/twitter_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620267028/twitter_normal.gif", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Comment d\\u00E9ployer une application #nodejs avec monit, nginx et bouncy - http://t.co/YvzceF08", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:52:14 +0000", "from_user": "jsgeneve", "from_user_id": 404035068, "from_user_id_str": "404035068", "from_user_name": "Javascript Gen\\u00E8ve", "geo": null, "id": 148430380012285950, "id_str": "148430380012285953", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1620267028/twitter_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620267028/twitter_normal.gif", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@rpresedo C'est not\\u00E9: trop de #nodejs dans le flux d'actualit\\u00E9... et voil\\u00E0, un de plus :)", "to_user": "rpresedo", "to_user_id": 18867086, "to_user_id_str": "18867086", "to_user_name": "Roberto Presedo", "in_reply_to_status_id": 148426158382383100, "in_reply_to_status_id_str": "148426158382383104"}, +{"created_at": "Sun, 18 Dec 2011 15:51:51 +0000", "from_user": "ldn_tech_exec", "from_user_id": 20591684, "from_user_id_str": "20591684", "from_user_name": "London Tech Exec", "geo": null, "id": 148430283392303100, "id_str": "148430283392303104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1361306073/Screen_shot_2011-05-19_at_22.12.46_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1361306073/Screen_shot_2011-05-19_at_22.12.46_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "LESS and Sass are the new CSS, and works OTB with #nodejs http://t.co/4pnOWZGR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:49:12 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148429616724443140, "id_str": "148429616724443137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "How to deploy a #nodejs application with monit, nginx and bouncy http://t.co/1eelJRiJ http://t.co/rBHaO2VF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:44:25 +0000", "from_user": "davidjrusek", "from_user_id": 280319660, "from_user_id_str": "280319660", "from_user_name": "David Rusek", "geo": null, "id": 148428411113705470, "id_str": "148428411113705472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1324927535/2011_04_12_026_Pbwm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1324927535/2011_04_12_026_Pbwm_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "sometimes I just go to hacker news to read the #nodejs and #mongdb posts. I lol.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:38:41 +0000", "from_user": "masylum", "from_user_id": 2475601, "from_user_id_str": "2475601", "from_user_name": "Pau", "geo": null, "id": 148426966285037570, "id_str": "148426966285037569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/53868095/CIMG6255_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/53868095/CIMG6255_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "How to deploy a #nodejs application with monit, nginx and bouncy http://t.co/8gEkfjgo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:34:52 +0000", "from_user": "modeerf", "from_user_id": 15188409, "from_user_id_str": "15188409", "from_user_name": "modeerf", "geo": null, "id": 148426008570241020, "id_str": "148426008570241024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1296892805/198538_10150136943803595_638368594_6603821_5858502_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1296892805/198538_10150136943803595_638368594_6603821_5858502_n_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @javascriptalert: JLOUIS Ramblings: Differences between Node.js and Erlang: http://t.co/VUlBaNge", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:30:41 +0000", "from_user": "amtindia", "from_user_id": 17646260, "from_user_id_str": "17646260", "from_user_name": "AMT", "geo": null, "id": 148424955783163900, "id_str": "148424955783163904", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/341107159/AMT_twi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/341107159/AMT_twi_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Intro to Node.JS for .NET Developers http://t.co/xQskKPL0 #nodejs #dotnet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:26:47 +0000", "from_user": "takuto1981", "from_user_id": 14655252, "from_user_id_str": "14655252", "from_user_name": "takuto1981", "geo": null, "id": 148423973133234180, "id_str": "148423973133234177", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1072911699/takuto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1072911699/takuto_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Vows\\u306E\\u65B9\\u304C\\u3088\\u3055\\u3052\\u304B\\u306A\\u3002\\u4ECA\\u9031\\u306F\\u3053\\u308C\\u3067\\u904A\\u3093\\u3067\\u307F\\u308B\\u3002\\u3000Node.js + Vows\\u3067\\u306F\\u3058\\u3081\\u308B\\u30C6\\u30B9\\u30C8\\u99C6\\u52D5\\u958B\\u767A http://t.co/5SVwSRpr @d_akatsuka\\u3055\\u3093\\u304B\\u3089", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:23:32 +0000", "from_user": "kaihannonen", "from_user_id": 82849949, "from_user_id_str": "82849949", "from_user_name": "Kai Hannonen", "geo": null, "id": 148423154908413950, "id_str": "148423154908413953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670189711/android_skating_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670189711/android_skating_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Next week i will start project SLAM at @sofanatics. New backend stuff with nodejs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:20:23 +0000", "from_user": "KoheiYagura", "from_user_id": 359266307, "from_user_id_str": "359266307", "from_user_name": "Kohei Yagura", "geo": null, "id": 148422361539035140, "id_str": "148422361539035136", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1622005500/a_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622005500/a_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "\\uFF12\\uFF0E\\u30A2\\u30D7\\u30EA\\u30B1\\u30FC\\u30B7\\u30E7\\u30F3\\n\\u904E\\u53BB\\u306E\\u4E0D\\u826F\\u50B5\\u6A29\\u3068\\u3057\\u3066PHP5\\u4EE5\\u964D\\u304C\\u30B5\\u30DD\\u30FC\\u30C8\\u3055\\u308C\\u307E\\u3059\\u3002\\u3069\\u3046\\u305BFastCGI\\u306A\\u306E\\u3067\\u3001CGI\\u3082\\u6B8B\\u3057\\u307E\\u3057\\u3087\\u3046\\u3002MySQL\\u3082\\u30B5\\u30DD\\u30FC\\u30C8\\u3057\\u3068\\u3051\\u3070\\u3044\\u3044\\u3093\\u3067\\u3057\\u3087\\u3002\\u3042\\u3068\\u3001nodejs\\u3082\\u30B5\\u30DD\\u30FC\\u30C8\\u3059\\u308B\\u3088\\u3002socket.io\\u304C\\u4F7F\\u3048\\u308B\\u3088\\u3046\\u306BListen\\u3057\\u3066\\u3082\\u3044\\u3044\\u3088", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:19:20 +0000", "from_user": "faisdotal", "from_user_id": 91635549, "from_user_id_str": "91635549", "from_user_name": "Faisal Ahmed", "geo": null, "id": 148422097834745860, "id_str": "148422097834745856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1426959738/39553_100984426640690_100001873983282_6379_7074151_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1426959738/39553_100984426640690_100001873983282_6379_7074151_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@substack What about when I'm require()'ing modules in NodeJS?", "to_user": "substack", "to_user_id": 125027291, "to_user_id_str": "125027291", "to_user_name": "James Halliday"}, +{"created_at": "Sun, 18 Dec 2011 15:03:31 +0000", "from_user": "KoheiYagura", "from_user_id": 359266307, "from_user_id_str": "359266307", "from_user_name": "Kohei Yagura", "geo": null, "id": 148418119541604350, "id_str": "148418119541604352", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1622005500/a_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622005500/a_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u4EEE\\u60F3\\u5316\\u5168\\u76DB\\u3067\\u3059\\u304C\\u3001\\u30D7\\u30ED\\u30BB\\u30B9\\u306E\\u5B89\\u5168\\u6027\\u3060\\u3051\\u3092\\u62C5\\u4FDD\\u3057\\u305F\\u3044\\u5834\\u5408\\u306Bjail\\u3063\\u307D\\u3044\\u306E\\u306F\\u306F\\u6709\\u52B9\\u3060\\u3068\\u601D\\u3063\\u3066\\u3044\\u308B\\u306E\\u3067\\u3059\\u304C\\u3001\\u6C17\\u8EFD\\u306B\\u8A66\\u305B\\u308B\\u30BD\\u30EA\\u30E5\\u30FC\\u30B7\\u30E7\\u30F3\\u304C\\u306A\\u3044\\u306A\\u3042\\u30FB\\u30FB\\u30FB\\u30AB\\u30FC\\u30CD\\u30EB\\u30D1\\u30C3\\u30C1\\u3068\\u304B\\u52D8\\u5F01\\u3057\\u3066\\u307B\\u3057\\u3044\\u304A\\u30FB\\u30FB\\u30FB\\u5206\\u96E2\\u3057\\u305F\\u3044\\u30D7\\u30ED\\u30BB\\u30B9\\u306Fnodejs\\u3067\\u3059\\u30FB\\u30FB\\u30FB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:02:08 +0000", "from_user": "gazs", "from_user_id": 734203, "from_user_id_str": "734203", "from_user_name": "K\\u00F6rtesi G\\u00E1sp\\u00E1r", "geo": null, "id": 148417772110626800, "id_str": "148417772110626816", "iso_language_code": "hu", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682758046/avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682758046/avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "az\\u00E9rt ugye j\\u00E1r a csoki ha egy js lib megy 1. b\\u00F6ng\\u00E9sz\\u0151b\\u0151l 2. nodejs modulk\\u00E9nt 3. webworkerk\\u00E9nt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:57:01 +0000", "from_user": "Master_Geeks", "from_user_id": 239807690, "from_user_id_str": "239807690", "from_user_name": "Ben Taher Jihed", "geo": null, "id": 148416482685091840, "id_str": "148416482685091843", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1569702727/icon_geek_inside-250x250_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1569702727/icon_geek_inside-250x250_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT , Write your shell scripts in JavaScript, via Node.js \\nhttp://t.co/c27GetA9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:50:57 +0000", "from_user": "muzzamilhussain", "from_user_id": 61718751, "from_user_id_str": "61718751", "from_user_name": "Muzzamil Hussain", "geo": null, "id": 148414954838568960, "id_str": "148414954838568960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1499534758/me_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1499534758/me_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "U r talking about this?? http://t.co/pcRQjkeG RT @moyedansari\\n@muzzamilhussain node.is is an open source project, there", "to_user": "muzzamilhussain", "to_user_id": 61718751, "to_user_id_str": "61718751", "to_user_name": "Muzzamil Hussain"}, +{"created_at": "Sun, 18 Dec 2011 14:46:49 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148413915255144450, "id_str": "148413915255144448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @cassandranosql: Technology behind Rackspace Cloud Monitoring http://t.co/hklKQn7z #nodejs #python #twisted #zookeeper #thrift #cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:46:45 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148413900373762050, "id_str": "148413900373762048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Technology behind Rackspace Cloud Monitoring http://t.co/CEJs9kOe #nodejs #python #twisted #zookeeper #thrift #c... http://t.co/3L2fng40", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:46:13 +0000", "from_user": "UchihaCFC", "from_user_id": 43866842, "from_user_id_str": "43866842", "from_user_name": "CFC", "geo": null, "id": 148413762540535800, "id_str": "148413762540535808", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1657474558/okamura_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657474558/okamura_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "27 Dic 19:30 - Charla sobre nodejs y heroku http://t.co/lIkTR6Cl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:44:09 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148413243252162560, "id_str": "148413243252162560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nihed: Write your shell scripts in JavaScript, via Node.js http://t.co/IGN7AfUg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:43:38 +0000", "from_user": "knsk66", "from_user_id": 11945522, "from_user_id_str": "11945522", "from_user_name": "knsk66", "geo": null, "id": 148413115359445000, "id_str": "148413115359444992", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1169361433/for_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1169361433/for_twitter_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Safari on iOS</a>", "text": "#python #node #nodejs http://t.co/Mc2je771", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:43:05 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148412974925746180, "id_str": "148412974925746177", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://www.scoop.it" rel="nofollow">Scoop.it</a>", "text": "RT @Evangenieur: Workflow.nodejs - GitHub #javascript http://t.co/eSvZOrIB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:42:32 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148412838665392130, "id_str": "148412838665392128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "RT @dreur: Inaugural: Twitter streaming with node.js and HTML5 WebSockets http://t.co/2XIzEQRR - via delicious", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:42:01 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148412706427387900, "id_str": "148412706427387904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "RT @nodenpm: time (0.7.0): http://t.co/StN69LWB \"time.h\" bindings for NodeJS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:33:25 +0000", "from_user": "HRBG", "from_user_id": 14849107, "from_user_id_str": "14849107", "from_user_name": "Hector Bavio", "geo": null, "id": 148410545249320960, "id_str": "148410545249320960", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1615704779/61324d30-8582-4221-82e1-f07a90f92ca6_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615704779/61324d30-8582-4221-82e1-f07a90f92ca6_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Ryan Dahl - History of Node.js http://t.co/FX7XyJgS #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:32:39 +0000", "from_user": "Cebolinhabh", "from_user_id": 53163650, "from_user_id_str": "53163650", "from_user_name": "Thiago Miranda", "geo": null, "id": 148410352185511940, "id_str": "148410352185511937", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693643006/mario_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693643006/mario_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tjholowaychuk: palette - image color palette extraction lib for #nodejs - https://t.co/bwzPe8NP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:21:10 +0000", "from_user": "cassandranosql", "from_user_id": 337469713, "from_user_id_str": "337469713", "from_user_name": "Joe Stein", "geo": null, "id": 148407461408280580, "id_str": "148407461408280576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1455350503/cassandra_normal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1455350503/cassandra_normal_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Technology behind Rackspace Cloud Monitoring http://t.co/hklKQn7z #nodejs #python #twisted #zookeeper #thrift #cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:20:18 +0000", "from_user": "bdour_akram", "from_user_id": 340125806, "from_user_id_str": "340125806", "from_user_name": "bdour akram", "geo": null, "id": 148407241417048060, "id_str": "148407241417048065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1580457771/me_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580457771/me_normal.PNG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @BostjanRihter: http://t.co/O8YzLOqE develop a #nodejs app on #windows, then publish to the cloud w/ multiple vms, load balancing in under 5mins #impressive", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:19:08 +0000", "from_user": "EliasCanaza", "from_user_id": 89718470, "from_user_id_str": "89718470", "from_user_name": "Elias Mamani Canaza", "geo": null, "id": 148406946683289600, "id_str": "148406946683289602", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1587430812/io_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587430812/io_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@nodejs Hola tengo mi Node instalado en Windows 7 32 bits y no reconoce los archivos q estan en la unidad C: el problema es la version?", "to_user": "nodejs", "to_user_id": 91985735, "to_user_id_str": "91985735", "to_user_name": "node js"}, +{"created_at": "Sun, 18 Dec 2011 14:19:04 +0000", "from_user": "bdour_akram", "from_user_id": 340125806, "from_user_id_str": "340125806", "from_user_name": "bdour akram", "geo": null, "id": 148406931340525570, "id_str": "148406931340525568", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1580457771/me_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580457771/me_normal.PNG", "source": "<a href="http://twitter.com/">web</a>", "text": "Windows Azure Adds Node.js Support, Hadoop Preview http://t.co/nZY7JFf6 #azure #javascript #nodejs #hadoop #v", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:17:23 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148406507250253820, "id_str": "148406507250253825", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @Evangenieur Cradle a #CouchDB #NodeJS client http://t.co/PIOTRi7v", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:17:21 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148406501592137730, "id_str": "148406501592137728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @ZiTAL nihed: Write your shell scripts in JavaScript, via Node.js http://t.co/4yyymK1a", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:17:21 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148406498014400500, "id_str": "148406498014400512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @FriendsOfNodeJS GraemeF: Lazy is pretty close to Reactive Extensions for #nodejs http://t.co/uBs39GP1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:15:20 +0000", "from_user": "tjholowaychuk", "from_user_id": 29255412, "from_user_id_str": "29255412", "from_user_name": "TJ Holowaychuk", "geo": null, "id": 148405993745813500, "id_str": "148405993745813504", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/124810348/DSC_0009_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/124810348/DSC_0009_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "palette - image color palette extraction lib for #nodejs - https://t.co/bwzPe8NP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:09:17 +0000", "from_user": "kracetheking", "from_user_id": 79747253, "from_user_id_str": "79747253", "from_user_name": "kracekumar", "geo": null, "id": 148404471515451400, "id_str": "148404471515451392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1323780452/sachin-tendulkar-62d_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1323780452/sachin-tendulkar-62d_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "In twitter's search result for python contains `switch to python->node.js` of paul's in every 10 items. #python, #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:06:31 +0000", "from_user": "Evangenieur", "from_user_id": 21945870, "from_user_id_str": "21945870", "from_user_name": "Evan Genieur", "geo": null, "id": 148403772371107840, "id_str": "148403772371107840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/83725129/gunnm2_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/83725129/gunnm2_small_normal.jpg", "source": "<a href="http://www.scoop.it" rel="nofollow">Scoop.it</a>", "text": "Cradle a #CouchDB #NodeJS client http://t.co/jhFktvqN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:01:57 +0000", "from_user": "ZiTAL", "from_user_id": 35194560, "from_user_id_str": "35194560", "from_user_name": "ZiTAL", "geo": null, "id": 148402625421918200, "id_str": "148402625421918209", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1615728104/IMG_8549_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615728104/IMG_8549_normal.JPG", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nihed: Write your shell scripts in JavaScript, via Node.js http://t.co/IGN7AfUg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:00:48 +0000", "from_user": "basaldizain", "from_user_id": 319615595, "from_user_id_str": "319615595", "from_user_name": "Vinicius Braga", "geo": null, "id": 148402334114914300, "id_str": "148402334114914305", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1404276816/basaldizain_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1404276816/basaldizain_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@argentinomota A \\u00FAnica coisa boa do nodejs, \\u00E9 a p\\u00E1gina do site da Joyent. Muita boa: http://t.co/54K55xCW #design", "to_user": "argentinomota", "to_user_id": 127994929, "to_user_id_str": "127994929", "to_user_name": "Vanderson Mota", "in_reply_to_status_id": 148398077290614800, "in_reply_to_status_id_str": "148398077290614784"}, +{"created_at": "Sun, 18 Dec 2011 13:59:03 +0000", "from_user": "dokshor", "from_user_id": 54551112, "from_user_id_str": "54551112", "from_user_name": "\\uE00A Fab\\u00EDan Ram\\u00EDrez", "geo": null, "id": 148401896237957120, "id_str": "148401896237957120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1654292661/58_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654292661/58_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nihed: Write your shell scripts in JavaScript, via Node.js http://t.co/IGN7AfUg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:56:54 +0000", "from_user": "kaneshinth", "from_user_id": 67822265, "from_user_id_str": "67822265", "from_user_name": "\\u304B\\u306D\\u3057\\u3093@mm.ll", "geo": null, "id": 148401355353104400, "id_str": "148401355353104385", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1521932527/profile_icon-001_250_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1521932527/profile_icon-001_250_normal.jpg", "source": "<a href="http://janetter.net/" rel="nofollow">Janetter</a>", "text": "\\u521D\\u5FC3\\u8005\\u5411\\u3051Nodejs\\u8A18\\u4E8B\\u3067\\u3082\\u66F8\\u304F\\u304B\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:56:42 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148401301624074240, "id_str": "148401301624074240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @GraemeF: Lazy is pretty close to Reactive Extensions for #nodejs http://t.co/ev9ieHOH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:53:48 +0000", "from_user": "GraemeF", "from_user_id": 664333, "from_user_id_str": "664333", "from_user_name": "Graeme Foster", "geo": null, "id": 148400574520492030, "id_str": "148400574520492034", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1665825824/niQkG_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665825824/niQkG_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Lazy is pretty close to Reactive Extensions for #nodejs http://t.co/ev9ieHOH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:48:26 +0000", "from_user": "Evangenieur", "from_user_id": 21945870, "from_user_id_str": "21945870", "from_user_name": "Evan Genieur", "geo": null, "id": 148399221593223170, "id_str": "148399221593223168", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/83725129/gunnm2_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/83725129/gunnm2_small_normal.jpg", "source": "<a href="http://www.scoop.it" rel="nofollow">Scoop.it</a>", "text": "Node.js on your (jailbroken) iPhone #nodejs http://t.co/2dKa2Rll", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:46:42 +0000", "from_user": "Evangenieur", "from_user_id": 21945870, "from_user_id_str": "21945870", "from_user_name": "Evan Genieur", "geo": null, "id": 148398786379653120, "id_str": "148398786379653120", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/83725129/gunnm2_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/83725129/gunnm2_small_normal.jpg", "source": "<a href="http://www.scoop.it" rel="nofollow">Scoop.it</a>", "text": "node-lazy : Lazy lists module for #nodejs #javascript http://t.co/RpsotHMI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:43:53 +0000", "from_user": "argentinomota", "from_user_id": 127994929, "from_user_id_str": "127994929", "from_user_name": "Vanderson Mota", "geo": null, "id": 148398077290614800, "id_str": "148398077290614784", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/793241552/dedeco_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/793241552/dedeco_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "@tapajos @basaldizain hype == nodejs ? ;-P", "to_user": "tapajos", "to_user_id": 14749110, "to_user_id_str": "14749110", "to_user_name": "tapajos", "in_reply_to_status_id": 148047804466606080, "in_reply_to_status_id_str": "148047804466606080"}, +{"created_at": "Sun, 18 Dec 2011 13:43:49 +0000", "from_user": "jeremyday", "from_user_id": 14100393, "from_user_id_str": "14100393", "from_user_name": "Jeremy Day", "geo": null, "id": 148398062665072640, "id_str": "148398062665072640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/681417707/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/681417707/profile_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "Node.js modules you should know about: semver http://t.co/5iVJwvqW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:37:54 +0000", "from_user": "3rdEden", "from_user_id": 14350255, "from_user_id_str": "14350255", "from_user_name": "Arnout Kazemier", "geo": null, "id": 148396572814741500, "id_str": "148396572814741504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "EventReactor 0.0.4 is out, with .defer and .delay emits. Reworked the documentation and wrote more tests! https://t.co/21whxRYC #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:32:22 +0000", "from_user": "aprakash", "from_user_id": 686523, "from_user_id_str": "686523", "from_user_name": "Anand Prakash", "geo": null, "id": 148395178976231420, "id_str": "148395178976231425", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/20502282/anandOct02_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/20502282/anandOct02_normal.jpg", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: Node.js modules you should know about: semver http://t.co/Kh6resZg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:30:37 +0000", "from_user": "dnywjy", "from_user_id": 19855025, "from_user_id_str": "19855025", "from_user_name": "Donny A. Wijaya", "geo": null, "id": 148394740902137860, "id_str": "148394740902137856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1221898614/70360_1013907703_2967202_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1221898614/70360_1013907703_2967202_q_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/hMmHiut3 http://t.co/37PB0Fy2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:12:07 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148390085484748800, "id_str": "148390085484748800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Write your shell scripts in JavaScript, via Node.js http://t.co/SL5Msixg http://t.co/RXUA0xNq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:56:13 +0000", "from_user": "nihed", "from_user_id": 6856982, "from_user_id_str": "6856982", "from_user_name": "Nihed MBAREK", "geo": null, "id": 148386080511627260, "id_str": "148386080511627264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1602403091/316774_10150272671887190_610552189_8216390_4210824_n__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1602403091/316774_10150272671887190_610552189_8216390_4210824_n__1__normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Write your shell scripts in JavaScript, via Node.js http://t.co/IGN7AfUg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:53:02 +0000", "from_user": "whoshallsucceed", "from_user_id": 288925455, "from_user_id_str": "288925455", "from_user_name": "whoshallsucceed", "geo": null, "id": 148385279546372100, "id_str": "148385279546372096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1680662018/cap_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680662018/cap_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Nodester: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/BwLp4eHS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:49:45 +0000", "from_user": "AdrienBrault", "from_user_id": 72339598, "from_user_id_str": "72339598", "from_user_name": "Adrien Brault", "geo": null, "id": 148384455139135500, "id_str": "148384455139135488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1379150613/IMG_4956-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1379150613/IMG_4956-2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @rgaidot: Technology behind Rackspace Cloud Monitoring\\nhttp://t.co/YwDf79LJ #nodejs #python #twisted #zookeeper #thrift #cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:48:33 +0000", "from_user": "serl", "from_user_id": 9840022, "from_user_id_str": "9840022", "from_user_name": "Serl", "geo": null, "id": 148384153849692160, "id_str": "148384153849692161", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1625858465/310171_1946826085255_1680634117_1369419_432369007_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1625858465/310171_1946826085255_1680634117_1369419_432369007_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "c'ho qua un accrocchio NodeJS+Socket.io+MongoDB, e sembra funzionare. da pauraaaaa :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:46:25 +0000", "from_user": "TopDevTweets", "from_user_id": 194520782, "from_user_id_str": "194520782", "from_user_name": "TopDevTweets", "geo": null, "id": 148383615095554050, "id_str": "148383615095554049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @rgaidot: Technology behind Rackspace Cloud Monitoring\\nhttp://t.co/YwDf79LJ #nodejs #python #twisted #zookeeper #thrift #cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:45:45 +0000", "from_user": "pmolinam", "from_user_id": 156225514, "from_user_id_str": "156225514", "from_user_name": "Pedro J. Molina", "geo": null, "id": 148383448606846980, "id_str": "148383448606846976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1109269729/3b35f03f-866e-4105-afaa-c51b7c2e2363_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1109269729/3b35f03f-866e-4105-afaa-c51b7c2e2363_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @rgaidot: Technology behind Rackspace Cloud Monitoring\\nhttp://t.co/YwDf79LJ #nodejs #python #twisted #zookeeper #thrift #cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:44:55 +0000", "from_user": "MythicTechno", "from_user_id": 138286178, "from_user_id_str": "138286178", "from_user_name": "Mythic Technologies", "geo": null, "id": 148383239025856500, "id_str": "148383239025856512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1111710966/mythicbutton_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1111710966/mythicbutton_twitter_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Technology behind Rackspace Cloud Monitoring\\nhttp://t.co/CEJs9kOe #nodejs #python #twisted #zookeeper #thrift #... http://t.co/m6KgjnmV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:40:28 +0000", "from_user": "ludofleury", "from_user_id": 47574527, "from_user_id_str": "47574527", "from_user_name": "Ludovic Fleury", "geo": null, "id": 148382118114893820, "id_str": "148382118114893824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1264063021/ludovic_fleury_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1264063021/ludovic_fleury_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @rgaidot: Technology behind Rackspace Cloud Monitoring\\nhttp://t.co/YwDf79LJ #nodejs #python #twisted #zookeeper #thrift #cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:37:20 +0000", "from_user": "mattcollins84", "from_user_id": 236086111, "from_user_id_str": "236086111", "from_user_name": "Matthew Collins", "geo": null, "id": 148381328298098700, "id_str": "148381328298098689", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1211248836/cow_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1211248836/cow_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Just signed up for a beta invitation to the node.js hosting platform @nodesocket. #nodejs http://t.co/Z3ZDorkQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:29:28 +0000", "from_user": "tntaben", "from_user_id": 25791812, "from_user_id_str": "25791812", "from_user_name": "\\u5F6D\\u6D77\\u94B0", "geo": null, "id": 148379349995884540, "id_str": "148379349995884544", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1501292504/02_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1501292504/02_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @mengxy: \\u4ECA\\u5929\\u4E0B\\u5348\\u5728\\u5317\\u4EAC#NodeParty\\u4E0A\\u5206\\u4EAB\\u4E86\\u6700\\u8FD1\\u51E0\\u4E2A\\u6708\\u96EA\\u7403\\u4F7F\\u7528Node.js\\u9047\\u5230\\u7684\\u4E00\\u4E9B\\u95EE\\u9898\\u548C\\u4E00\\u4E9B\\u5C0F\\u5DE5\\u5177\\uFF0Cslides\\u5728\\u8FD9\\u91CC\\uFF0Chttp://t.co/Wp8yULEM \\u770B\\u8FC7LinkedIn Mobile\\u7684\\u5E94\\u8BE5\\u89C9\\u5F97\\u6709\\u4E9B\\u5185\\u5BB9\\u662F\\u91CD\\u5408\\u7684\\uFF0C\\u8BF4\\u660E\\u5927\\u5BB6\\u9047\\u5230\\u7684\\u95EE\\u9898\\u5176\\u5B9E\\u662F\\u7C7B\\u4F3C\\u7684", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:28:16 +0000", "from_user": "UdgWebDev", "from_user_id": 373963214, "from_user_id_str": "373963214", "from_user_name": "Underground WebDev", "geo": null, "id": 148379049960546300, "id_str": "148379049960546305", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1580189610/udgwebdev-logo-256_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580189610/udgwebdev-logo-256_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "#UDGWebDev - Post - 10 #M\\u00F3dulos para Node.js http://t.co/KISM1zMa #javascript #nodejs #frameworks #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:27:53 +0000", "from_user": "adammw", "from_user_id": 17669045, "from_user_id_str": "17669045", "from_user_name": "Adam M-W", "geo": null, "id": 148378953156010000, "id_str": "148378953156009984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1418910805/218029_10150159443719477_721599476_6489962_5028283_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1418910805/218029_10150159443719477_721599476_6489962_5028283_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Seeing a nodejs module on googlecode rather than github is just so unnatural...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:24:00 +0000", "from_user": "koichik", "from_user_id": 14453603, "from_user_id_str": "14453603", "from_user_name": "koichik", "geo": null, "id": 148377976134840320, "id_str": "148377976134840320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1399991501/hs-2010-26-a-small_web_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1399991501/hs-2010-26-a-small_web_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:23:29 +0000", "from_user": "NodeJSAtSO", "from_user_id": 292124941, "from_user_id_str": "292124941", "from_user_name": "Node JS @ SO", "geo": null, "id": 148377845490659330, "id_str": "148377845490659328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1336740490/sprites_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1336740490/sprites_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Benchmark.js module cannot find globally in Nodejs http://t.co/ilwHapdQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:20:08 +0000", "from_user": "JavierLoriente", "from_user_id": 19333596, "from_user_id_str": "19333596", "from_user_name": "Javier Loriente", "geo": null, "id": 148377002217451520, "id_str": "148377002217451520", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1441132351/javier_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1441132351/javier_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "Form Python to nodejs http://t.co/a8hXDKdN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:19:27 +0000", "from_user": "sheepland", "from_user_id": 15892615, "from_user_id_str": "15892615", "from_user_name": "\\u6BCE\\u65E5\\u611F\\u96FB\\u3072\\u3064\\u3058\\u732B(gdgd)", "geo": null, "id": 148376829722501120, "id_str": "148376829722501120", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1238344380/cec9865e-s2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1238344380/cec9865e-s2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "socket.emit\\u304C\\u81EA\\u5206\\u81EA\\u8EAB\\u3078\\u9001\\u308B\\u3067\\u3001\\nsocket.broadcast.emit\\u304C\\u81EA\\u5206\\u4EE5\\u5916\\u5168\\u54E1\\u3078\\u9001\\u308B\\u3067\\u3001\\nio.sockets.emit\\u304C\\u81EA\\u5206\\u3092\\u542B\\u3080\\u5168\\u54E1\\u3078\\u9001\\u308B\\u306A\\u306E\\u304B\\u3002 \\n#nodejs #socket.io", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:10:40 +0000", "from_user": "mwessendorf", "from_user_id": 12287422, "from_user_id_str": "12287422", "from_user_name": "Matthias Wessendorf", "geo": null, "id": 148374617097121800, "id_str": "148374617097121792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1644899733/mw80s_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644899733/mw80s_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:07:24 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148373797832114180, "id_str": "148373797832114176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Technology behind Rackspace Cloud Monitoring\\nhttp://t.co/CEJs9kOe #nodejs #python #twisted #zookeeper #thrift #... http://t.co/m6KgjnmV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:04:18 +0000", "from_user": "saleiva", "from_user_id": 29412160, "from_user_id_str": "29412160", "from_user_name": "saleiva", "geo": null, "id": 148373014822666240, "id_str": "148373014822666240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/126690590/cacacacacaca_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/126690590/cacacacacaca_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "And I have to say that is *really* easy to read/write calls to @cartoDB using Node.js. https://t.co/nJo2agMt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:58:57 +0000", "from_user": "rgaidot", "from_user_id": 1245801, "from_user_id_str": "1245801", "from_user_name": "R\\u00E9gis Gaidot", "geo": null, "id": 148371671286415360, "id_str": "148371671286415360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1266738841/avatar-6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266738841/avatar-6_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Technology behind Rackspace Cloud Monitoring\\nhttp://t.co/YwDf79LJ #nodejs #python #twisted #zookeeper #thrift #cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:55:20 +0000", "from_user": "gleicon", "from_user_id": 26049744, "from_user_id_str": "26049744", "from_user_name": "gleicon", "geo": null, "id": 148370760422010880, "id_str": "148370760422010880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662691743/forever_yao_ming_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662691743/forever_yao_ming_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:52:41 +0000", "from_user": "davenportsteve", "from_user_id": 53252787, "from_user_id_str": "53252787", "from_user_name": "Stephen Davenport", "geo": null, "id": 148370093947109380, "id_str": "148370093947109376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1200768814/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1200768814/me_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "The Switch: Python to Node.js | Paul's Journal http://t.co/KEAx0Dln #nodejs #python", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:33:47 +0000", "from_user": "substack", "from_user_id": 125027291, "from_user_id_str": "125027291", "from_user_name": "James Halliday", "geo": null, "id": 148365338692694000, "id_str": "148365338692694016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/805387602/laptop-robot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/805387602/laptop-robot_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:15:43 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148360792339787780, "id_str": "148360792339787777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @tweettrailbot1 Check out who is tweeting about: ' nodejs ', here: http://t.co/kquO5I9E", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:15:43 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148360791299596300, "id_str": "148360791299596288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @richardz_work Two good pieces to read together: python to #nodejs http://t.co/4bwSLUie http://t.co/pyUkz8dB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:15:43 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148360789441527800, "id_str": "148360789441527808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @surachart hackernewsbot: Node.js modules you should know about: semver... http://t.co/TGI2tb0N", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:13:32 +0000", "from_user": "tweettrailbot1", "from_user_id": 197244919, "from_user_id_str": "197244919", "from_user_name": "Tweet Trail Announce", "geo": null, "id": 148360239706681340, "id_str": "148360239706681344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1134778998/ttlogo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1134778998/ttlogo_normal.png", "source": "<a href="http://www.tweettrail.com" rel="nofollow">Tweet Traill</a>", "text": "Check out who is tweeting about: ' nodejs ', here: http://t.co/D3Bwzmxm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:12:06 +0000", "from_user": "sbose78", "from_user_id": 190726716, "from_user_id_str": "190726716", "from_user_name": "Shoubhik Bose", "geo": null, "id": 148359881936736260, "id_str": "148359881936736256", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1555136629/313678_10150287343724509_710069508_7509696_1574204_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555136629/313678_10150287343724509_710069508_7509696_1574204_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Cloudfoundry #mogodb #node.js\\n\\nhttp://t.co/F6eKjFcB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:11:32 +0000", "from_user": "azu_re", "from_user_id": 14169633, "from_user_id_str": "14169633", "from_user_name": "azu", "geo": null, "id": 148359735538761730, "id_str": "148359735538761728", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/660061378/3ce9edfa9aa06f2d118fc9a0d6c36de3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/660061378/3ce9edfa9aa06f2d118fc9a0d6c36de3_normal.png", "source": "<a href="http://userscripts.org/scripts/show/46441" rel="nofollow">PNBT</a>", "text": "\\u304A\\u30FC\\u3001\\u3053\\u3093\\u306A\\u30DA\\u30FC\\u30B8\\u3067\\u304D\\u3066\\u305F\\u3093\\u3060\\u3002Windows Azure\\u3067Node \"Node.js - \\u958B\\u767A - Windows Azure\" http://t.co/rCQVU901", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:05:16 +0000", "from_user": "hotoo", "from_user_id": 20674328, "from_user_id_str": "20674328", "from_user_name": "\\u95F2\\u8018\\u2122", "geo": null, "id": 148358162314051600, "id_str": "148358162314051584", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/961629577/xianyun76_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/961629577/xianyun76_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @mengxy: \\u4ECA\\u5929\\u4E0B\\u5348\\u5728\\u5317\\u4EAC#NodeParty\\u4E0A\\u5206\\u4EAB\\u4E86\\u6700\\u8FD1\\u51E0\\u4E2A\\u6708\\u96EA\\u7403\\u4F7F\\u7528Node.js\\u9047\\u5230\\u7684\\u4E00\\u4E9B\\u95EE\\u9898\\u548C\\u4E00\\u4E9B\\u5C0F\\u5DE5\\u5177\\uFF0Cslides\\u5728\\u8FD9\\u91CC\\uFF0Chttp://t.co/Wp8yULEM \\u770B\\u8FC7LinkedIn Mobile\\u7684\\u5E94\\u8BE5\\u89C9\\u5F97\\u6709\\u4E9B\\u5185\\u5BB9\\u662F\\u91CD\\u5408\\u7684\\uFF0C\\u8BF4\\u660E\\u5927\\u5BB6\\u9047\\u5230\\u7684\\u95EE\\u9898\\u5176\\u5B9E\\u662F\\u7C7B\\u4F3C\\u7684", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:04:49 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148358047453020160, "id_str": "148358047453020160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Two good pieces to read together: python to #nodejs http://t.co/CEJs9kOe http://t.co/F0c5ncwm http://t.co/7bURpifJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:59:03 +0000", "from_user": "richardz_work", "from_user_id": 162142779, "from_user_id_str": "162142779", "from_user_name": "Richard Zhang", "geo": null, "id": 148356595301105660, "id_str": "148356595301105664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670427171/rz1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670427171/rz1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Two good pieces to read together: python to #nodejs http://t.co/SLEXvyRQ http://t.co/WBTq9Ky2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:58:37 +0000", "from_user": "surachart", "from_user_id": 14229705, "from_user_id_str": "14229705", "from_user_name": "Surachart Opun", "geo": null, "id": 148356487851409400, "id_str": "148356487851409408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664451969/photo01_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664451969/photo01_normal.jpg", "source": "<a href="http://news.ycombinator.com/" rel="nofollow">Hacker News Bot</a>", "text": "RT @hackernewsbot: Node.js modules you should know about: semver... http://t.co/S7UAibLK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:54:47 +0000", "from_user": "hacksparrow", "from_user_id": 45615658, "from_user_id_str": "45615658", "from_user_name": "Hack Sparrow", "geo": null, "id": 148355520347119600, "id_str": "148355520347119616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/721961044/jack_sparrow_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/721961044/jack_sparrow_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "The Node.js module Forever seems to be buggy. It starts the script but forever list says \"No forever processes running\". #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:51:10 +0000", "from_user": "yrezgui", "from_user_id": 7168842, "from_user_id_str": "7168842", "from_user_name": "Yacine Rezgui", "geo": null, "id": 148354612712321020, "id_str": "148354612712321024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1020475002/hey_hey_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1020475002/hey_hey_normal.JPG", "source": "<a href="http://fgribreau.com" rel="nofollow">FG</a>", "text": "RT @FGRibreau: nodeDaveAPI - a minimalist, multi-node, transactional API framework for NodeJS. // It only supports Mysql so far http://t.co/d9JqZH7O", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:50:36 +0000", "from_user": "jenhsun", "from_user_id": 9134942, "from_user_id_str": "9134942", "from_user_name": "jenhsun", "geo": null, "id": 148354469418119170, "id_str": "148354469418119168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1257452304/myeh2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1257452304/myeh2_normal.png", "source": "<a href="http://startgoogleplus.com" rel="nofollow">SGPlus</a>", "text": "The Switch: Python to NodeJS http://t.co/1kYVi72F", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:50:23 +0000", "from_user": "yrezgui", "from_user_id": 7168842, "from_user_id_str": "7168842", "from_user_name": "Yacine Rezgui", "geo": null, "id": 148354416590852100, "id_str": "148354416590852096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1020475002/hey_hey_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1020475002/hey_hey_normal.JPG", "source": "<a href="http://termtter.org/" rel="nofollow">Termtter</a>", "text": "RT @itwars: I'm glad to say: I'm in the top 20 tweeters for node.js ! http://t.co/CQMkKfDz #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:50:12 +0000", "from_user": "yrezgui", "from_user_id": 7168842, "from_user_id_str": "7168842", "from_user_name": "Yacine Rezgui", "geo": null, "id": 148354367647514620, "id_str": "148354367647514624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1020475002/hey_hey_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1020475002/hey_hey_normal.JPG", "source": "<a href="http://www.scoop.it" rel="nofollow">Scoop.it</a>", "text": "RT @itwars: The Switch: Python to Node.js | Paul's Journal | #nodejs http://t.co/a4VuHMsq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:48:23 +0000", "from_user": "sbose78", "from_user_id": 190726716, "from_user_id_str": "190726716", "from_user_name": "Shoubhik Bose", "geo": null, "id": 148353911655378940, "id_str": "148353911655378944", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1555136629/313678_10150287343724509_710069508_7509696_1574204_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555136629/313678_10150287343724509_710069508_7509696_1574204_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "https://t.co/LcD704Ru\\nNode.js Mongodb driver\\n#nodejs #mongodb @NodeJsCommunity", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:47:35 +0000", "from_user": "bigdumbobject", "from_user_id": 10788, "from_user_id_str": "10788", "from_user_name": "James Bloomer", "geo": null, "id": 148353711004065800, "id_str": "148353711004065794", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/422001651/139458main_image_feature_468_ys_4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/422001651/139458main_image_feature_468_ys_4_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ChrisRicca Just watched your proxlet NodeJS + MongoDB talk. V. Interesting. Are you running a single node instance or clustering?", "to_user": "ChrisRicca", "to_user_id": 5815462, "to_user_id_str": "5815462", "to_user_name": "\\u00A9\\u00AE"}, +{"created_at": "Sun, 18 Dec 2011 10:45:00 +0000", "from_user": "sabinmarcu", "from_user_id": 175180165, "from_user_id_str": "175180165", "from_user_name": "Marcu Sabin", "geo": null, "id": 148353058802380800, "id_str": "148353058802380800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1322769268/168050_122514104482090_100001705041807_138398_5197732_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1322769268/168050_122514104482090_100001705041807_138398_5197732_n_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Well, well, well... this is a bit unexpected, but i must confess #Microsoft is on the right track with #nodejs #azure. I might just convert!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:38:34 +0000", "from_user": "erdoslaszlo", "from_user_id": 101695818, "from_user_id_str": "101695818", "from_user_name": "Laszlo Erdos", "geo": null, "id": 148351442841903100, "id_str": "148351442841903105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1623480741/Twitter1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1623480741/Twitter1_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/8m9CWICn via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:38:32 +0000", "from_user": "sbose78", "from_user_id": 190726716, "from_user_id_str": "190726716", "from_user_name": "Shoubhik Bose", "geo": null, "id": 148351434805612540, "id_str": "148351434805612544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1555136629/313678_10150287343724509_710069508_7509696_1574204_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555136629/313678_10150287343724509_710069508_7509696_1574204_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I love this ! http://t.co/gEPffpQi \\n#Node.js and #Mongodb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Sun, 18 Dec 2011 10:30:12 +0000", "from_user": "FGRibreau", "from_user_id": 5719692, "from_user_id_str": "5719692", "from_user_name": "Fran\\u00E7ois-G. Ribreau", "geo": null, "id": 148349335820705800, "id_str": "148349335820705793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1117780106/2009_shooting_medium_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1117780106/2009_shooting_medium_normal.png", "source": "<a href="http://fgribreau.com" rel="nofollow">FG</a>", "text": "nodeDaveAPI - a minimalist, multi-node, transactional API framework for NodeJS. // It only supports Mysql so far http://t.co/d9JqZH7O", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:26:54 +0000", "from_user": "vesln", "from_user_id": 37680547, "from_user_id_str": "37680547", "from_user_name": "Veselin", "geo": null, "id": 148348505826668540, "id_str": "148348505826668544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1634048495/avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634048495/avatar_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Lazy require with filter logic for #nodejs https://t.co/Mb950TG8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:22:30 +0000", "from_user": "itwars", "from_user_id": 67265165, "from_user_id_str": "67265165", "from_user_name": "Vincent RABAH", "geo": null, "id": 148347396345184260, "id_str": "148347396345184256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1135858686/cb-vincent_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1135858686/cb-vincent_normal.png", "source": "<a href="http://www.scoop.it" rel="nofollow">Scoop.it</a>", "text": "The Switch: Python to Node.js | Paul's Journal | #nodejs http://t.co/a4VuHMsq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:21:21 +0000", "from_user": "robby_pelssers", "from_user_id": 10737442, "from_user_id_str": "10737442", "from_user_name": "robby_pelssers", "geo": null, "id": 148347107210833920, "id_str": "148347107210833920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/38386282/robbyPcSmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/38386282/robbyPcSmall_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "A beautiful marriage: #MongoDB and #NodeJS http://t.co/EDXXFtWq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:07:58 +0000", "from_user": "jaguilera_", "from_user_id": 337691375, "from_user_id_str": "337691375", "from_user_name": "Jes\\u00FAs Aguilera", "geo": null, "id": 148343739826450430, "id_str": "148343739826450432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1673129171/yo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673129171/yo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Nodester: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/BwLp4eHS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:07:33 +0000", "from_user": "AndyJ", "from_user_id": 6203362, "from_user_id_str": "6203362", "from_user_name": "Andy Jarrett", "geo": null, "id": 148343636424265730, "id_str": "148343636424265729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1610771482/Photo_on_28-10-2011_at_15.31__4_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610771482/Photo_on_28-10-2011_at_15.31__4_copy_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "How http://t.co/CxC8tOuV uses MongoDB & NodeJS to serve over a million daily requests on a $10/month server http://t.co/eqvaWblg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:01:15 +0000", "from_user": "fengmk2", "from_user_id": 21738641, "from_user_id_str": "21738641", "from_user_name": "MK2", "geo": +{"coordinates": [30.2774,120.1177], "type": "Point"}, "id": 148342052164345860, "id_str": "148342052164345856", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/285484301/imk2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/285484301/imk2_normal.png", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "Nodeparty hangzhou done #nodejs @ \\u534E\\u661F\\u73B0\\u4EE3\\u4EA7\\u4E1A\\u56ED http://t.co/3jPGwjNR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:57:59 +0000", "from_user": "ferrari_tw", "from_user_id": 7886112, "from_user_id_str": "7886112", "from_user_name": "Ferrari", "geo": null, "id": 148341229149630460, "id_str": "148341229149630464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1463003058/690c694b5587e0a514f56179a4f9cfba_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1463003058/690c694b5587e0a514f56179a4f9cfba_normal.png", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "RT @pquerna: New Blog post: The Switch, Python to Node.js: http://t.co/DWCureoW \\\\ real case of using #nodejs on production!! :p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:56:20 +0000", "from_user": "hkokko", "from_user_id": 24726686, "from_user_id_str": "24726686", "from_user_name": "Hannu Kokko", "geo": null, "id": 148340814194544640, "id_str": "148340814194544640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/100266288/hannu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/100266288/hannu_normal.jpg", "source": "<a href="http://manageflitter.com" rel="nofollow">ManageFlitter</a>", "text": "Surfing on the edge. Both technologies are cool, simple enough and on the bleeding edge. https://t.co/5bZrt1Tn http://t.co/ord8DE3T", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:54:39 +0000", "from_user": "HornedKavu", "from_user_id": 14075398, "from_user_id_str": "14075398", "from_user_name": "Max Riveiro", "geo": null, "id": 148340388262969340, "id_str": "148340388262969344", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/96905779/11438--5847-w200_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/96905779/11438--5847-w200_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "@Crazy_Owl \\u044D\\u0442\\u043E \\u043A\\u043E\\u043D\\u0435\\u0447\\u043D\\u043E \\u043D\\u0435 \\u0440\\u0430\\u0441\\u043F\\u043E\\u0437\\u043D\\u043E\\u0432\\u0430\\u043D\\u0438\\u0435 \\u043B\\u0438\\u0446, \\u043D\\u043E\\u2026 http://t.co/iMPoISIg", "to_user": "Crazy_Owl", "to_user_id": 109023651, "to_user_id_str": "109023651", "to_user_name": "Vlad", "in_reply_to_status_id": 148339623792345100, "in_reply_to_status_id_str": "148339623792345090"}, +{"created_at": "Sun, 18 Dec 2011 09:50:53 +0000", "from_user": "clementj", "from_user_id": 14164930, "from_user_id_str": "14164930", "from_user_name": "Cl\\u00E9ment", "geo": null, "id": 148339442845884400, "id_str": "148339442845884416", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1398595935/photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1398595935/photo_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@FGRibreau tu as compl\\u00E8tement switcher sur nodejs toi ? ou tu utilise un autre langage serveur ? :)", "to_user": "FGRibreau", "to_user_id": 5719692, "to_user_id_str": "5719692", "to_user_name": "Fran\\u00E7ois-G. Ribreau", "in_reply_to_status_id": 148326772587503600, "in_reply_to_status_id_str": "148326772587503616"}, +{"created_at": "Sun, 18 Dec 2011 09:48:33 +0000", "from_user": "fengmk2", "from_user_id": 21738641, "from_user_id_str": "21738641", "from_user_name": "MK2", "geo": null, "id": 148338852778614800, "id_str": "148338852778614785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/285484301/imk2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/285484301/imk2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Check out who is tweeting about: ' nodejs ', here: http://t.co/x32bDTje http://t.co/MYGGuhw4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:46:59 +0000", "from_user": "fengmk2", "from_user_id": 21738641, "from_user_id_str": "21738641", "from_user_name": "MK2", "geo": null, "id": 148338459369676800, "id_str": "148338459369676800", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/285484301/imk2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/285484301/imk2_normal.png", "source": "<a href="http://chrome.google.com/extensions/detail/aicelmgbddfgmpieedjiggifabdpcnln" rel="nofollow">FaWave</a>", "text": "RT @\\u7384\\u4E86\\u4E2A\\u6F84\\u7684 @\\u9752\\u5C71\\u8001\\u5996_\\u9EC4\\u51A0 \\u7684\\u6F14\\u8BB2\\u98CE\\u683C\\u662F\\u73B0\\u573A\\u7801\\u4EE3\\u7801\\uFF0C\\u8FD9\\u4E0D\\u662F\\u4E00\\u822C\\u4EBA\\u6562\\u5E72\\u7684[\\u563B\\u563B]#nodeparty# #nodejs http://t.co/rwyPq5uD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:46:23 +0000", "from_user": "johlrogge", "from_user_id": 27765583, "from_user_id_str": "27765583", "from_user_name": "Joakim Ohlrogge", "geo": null, "id": 148338308848693250, "id_str": "148338308848693249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1295212288/Picture_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1295212288/Picture_6_normal.png", "source": "<a href="http://www.nambu.com/" rel="nofollow">Nambu</a>", "text": "Oh my, I'm trapped in a nodejs coding frenzy. It is pretty neat", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:45:22 +0000", "from_user": "fengmk2", "from_user_id": 21738641, "from_user_id_str": "21738641", "from_user_name": "MK2", "geo": null, "id": 148338052274716670, "id_str": "148338052274716672", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/285484301/imk2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/285484301/imk2_normal.png", "source": "<a href="http://chrome.google.com/extensions/detail/aicelmgbddfgmpieedjiggifabdpcnln" rel="nofollow">FaWave</a>", "text": "RT @\\u58A8\\u8A00_D \\u7B2C\\u4E00\\u573A\\u6765\\u81EA\\u5F00\\u53D1\\u5DE5\\u7A0B\\u5E08\\u674E\\u534E\\u715C@QLeelulu \\u5E26\\u6765\\u7684\\u300Anode.js\\u5F00\\u53D1\\u4F53\\u9A8C\\u300B\\uFF0C\\u73B0\\u573A\\u6295\\u5F71\\u51FA\\u4E86\\u70B9\\u72B6\\u51B5\\uFF0C\\u4E0D\\u8FC7hold\\u4F4F\\u4E86 #nodejs http://t.co/MBjlloI0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:31:19 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 148334518556823550, "id_str": "148334518556823552", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "speculum (0.0.1): http://t.co/rUt9v5ea NodeJS BDD Test Suite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:24:27 +0000", "from_user": "SUKAIWARD", "from_user_id": 196305288, "from_user_id_str": "196305288", "from_user_name": "Idir IBOUCHICHENE", "geo": null, "id": 148332788968464400, "id_str": "148332788968464384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1133306473/programmation_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1133306473/programmation_normal.jpg", "source": "Zite Personalized Magazine", "text": "RT @cjean_dev: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/yXLGQK9l", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:22:46 +0000", "from_user": "edjafarov", "from_user_id": 18898176, "from_user_id_str": "18898176", "from_user_name": "Eldar Djafarov", "geo": null, "id": 148332366878875650, "id_str": "148332366878875648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/971019265/25-08-08_1708_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/971019265/25-08-08_1708_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @3rdEden: @ryah @nodejs @indutny like getting SPDY support in core ;) *hint* *hint*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:17:40 +0000", "from_user": "ericmjohn", "from_user_id": 10286992, "from_user_id_str": "10286992", "from_user_name": "Eric M John", "geo": null, "id": 148331083379916800, "id_str": "148331083379916800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/838880155/pic-twitter-bw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/838880155/pic-twitter-bw_normal.jpg", "source": "<a href="http://github.com/d4nt/HNTweets" rel="nofollow">HNTweets Bot</a>", "text": "RT @HNTweets: Node.js modules you should know about: semver: http://t.co/5ZMiKLue Comments: http://t.co/qes7qMRU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:08:08 +0000", "from_user": "FredGOUTH", "from_user_id": 47584166, "from_user_id_str": "47584166", "from_user_name": "Frederic GOUTH", "geo": null, "id": 148328681545277440, "id_str": "148328681545277441", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/265204862/portrait_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/265204862/portrait_normal.jpg", "source": "<a href="http://termtter.org/" rel="nofollow">Termtter</a>", "text": "RT @itwars: I'm glad to say: I'm in the top 20 tweeters for node.js ! http://t.co/CQMkKfDz #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:05:44 +0000", "from_user": "ericmjohn", "from_user_id": 10286992, "from_user_id_str": "10286992", "from_user_name": "Eric M John", "geo": null, "id": 148328080589602800, "id_str": "148328080589602816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/838880155/pic-twitter-bw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/838880155/pic-twitter-bw_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:05:20 +0000", "from_user": "peterneubauer", "from_user_id": 14721805, "from_user_id_str": "14721805", "from_user_name": "Peter Neubauer", "geo": null, "id": 148327977485213700, "id_str": "148327977485213696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/348968437/MyPicture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/348968437/MyPicture_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@amit_twit @neo4j will try to answer on http://t.co/GXOrBEZ7 and ask the list, stay tuned ...", "to_user": "amit_twit", "to_user_id": 99925376, "to_user_id_str": "99925376", "to_user_name": "amit", "in_reply_to_status_id": 148174593268523000, "in_reply_to_status_id_str": "148174593268523008"}, +{"created_at": "Sun, 18 Dec 2011 09:04:14 +0000", "from_user": "leftieFriele", "from_user_id": 5936042, "from_user_id_str": "5936042", "from_user_name": "espen", "geo": null, "id": 148327702569566200, "id_str": "148327702569566208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685539791/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685539791/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:04:13 +0000", "from_user": "itwars", "from_user_id": 67265165, "from_user_id_str": "67265165", "from_user_name": "Vincent RABAH", "geo": null, "id": 148327695246303230, "id_str": "148327695246303232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1135858686/cb-vincent_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1135858686/cb-vincent_normal.png", "source": "<a href="http://termtter.org/" rel="nofollow">Termtter</a>", "text": "I'm glad to say: I'm in the top 20 tweeters for node.js ! http://t.co/CQMkKfDz #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:00:43 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148326816367640580, "id_str": "148326816367640577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Check out who is tweeting about: ' nodejs ', here: http://t.co/x32bDTje http://t.co/MYGGuhw4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:57:52 +0000", "from_user": "ferdy", "from_user_id": 791288, "from_user_id_str": "791288", "from_user_name": "Ferran Rodenas", "geo": null, "id": 148326101385613300, "id_str": "148326101385613312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1185956912/Ferran_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1185956912/Ferran_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:43:32 +0000", "from_user": "tweettrailbot1", "from_user_id": 197244919, "from_user_id_str": "197244919", "from_user_name": "Tweet Trail Announce", "geo": null, "id": 148322491390103550, "id_str": "148322491390103552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1134778998/ttlogo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1134778998/ttlogo_normal.png", "source": "<a href="http://www.tweettrail.com" rel="nofollow">Tweet Traill</a>", "text": "Check out who is tweeting about: ' nodejs ', here: http://t.co/D3Bwzmxm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:34:42 +0000", "from_user": "CyberConsulting", "from_user_id": 35604893, "from_user_id_str": "35604893", "from_user_name": "GreeneConsulting", "geo": null, "id": 148320269742780400, "id_str": "148320269742780416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/818188972/guy_beating_a_computernonanimated_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/818188972/guy_beating_a_computernonanimated_normal.jpg", "source": "<a href="http://news.ycombinator.com/" rel="nofollow">Hacker News Bot</a>", "text": "RT @hackernewsbot: Node.js modules you should know about: semver... http://t.co/S7UAibLK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:25:18 +0000", "from_user": "jarodf", "from_user_id": 14483521, "from_user_id_str": "14483521", "from_user_name": "jarod ferguson", "geo": null, "id": 148317901705838600, "id_str": "148317901705838592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1671060086/dRuKS6RC_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671060086/dRuKS6RC_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:25:17 +0000", "from_user": "rajeshpillai", "from_user_id": 9589242, "from_user_id_str": "9589242", "from_user_name": "rajeshpillai", "geo": null, "id": 148317898929213440, "id_str": "148317898929213440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/505188893/rajesh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/505188893/rajesh_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Nodester I would like to have a nodejs hosting coupon. Great if it could be sent at pillai.rajesh@gmail.com", "to_user": "Nodester", "to_user_id": 240751001, "to_user_id_str": "240751001", "to_user_name": "Nodester"}, +{"created_at": "Sun, 18 Dec 2011 08:20:24 +0000", "from_user": "mkopala", "from_user_id": 18088431, "from_user_id_str": "18088431", "from_user_name": "Matt Kopala", "geo": null, "id": 148316669788434430, "id_str": "148316669788434432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1136086466/me5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1136086466/me5_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "My head hurts after looking at all the different stuff available with #nodejs. Just this page by itself is crazy: https://t.co/w57Pi1Uh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:14:51 +0000", "from_user": "indutny", "from_user_id": 92915570, "from_user_id_str": "92915570", "from_user_name": "Fedor Indutny", "geo": null, "id": 148315273374597120, "id_str": "148315273374597120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1342629236/e474c72a97af94dd27feb53be98ceab9_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1342629236/e474c72a97af94dd27feb53be98ceab9_normal.jpeg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@ryah @nodejs thanks a lot! It's a big pleasure to help our platform grow!", "to_user": "ryah", "to_user_id": 18975861, "to_user_id_str": "18975861", "to_user_name": "Ryan Dahl", "in_reply_to_status_id": 148149731435102200, "in_reply_to_status_id_str": "148149731435102208"}, +{"created_at": "Sun, 18 Dec 2011 08:14:32 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148315192885915650, "id_str": "148315192885915649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @naholyr cjean_dev: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/oaVI2J7R", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:14:31 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148315191946395650, "id_str": "148315191946395648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @jdub pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/4bwSLUie hint: @nodejs, lots of NPM mo...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:14:31 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148315190889414660, "id_str": "148315190889414656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @ryah pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/4bwSLUie hint: @nodejs, lots of NPM mo...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:12:35 +0000", "from_user": "rimidl", "from_user_id": 122673998, "from_user_id_str": "122673998", "from_user_name": "Vladimir", "geo": null, "id": 148314701888106500, "id_str": "148314701888106496", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "http://t.co/LTlsCrEz Node.js \\u2014 \\u0440\\u0430\\u043A\\u043E\\u0432\\u0430\\u044F \\u043E\\u043F\\u0443\\u0445\\u043E\\u043B\\u044C #habr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:50:40 +0000", "from_user": "naholyr", "from_user_id": 35705169, "from_user_id_str": "35705169", "from_user_name": "Nicolas Chambrier", "geo": null, "id": 148309186600640500, "id_str": "148309186600640512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/412641899/52b68aaa7ba1e8f6c699560f97573443_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/412641899/52b68aaa7ba1e8f6c699560f97573443_normal.png", "source": "Zite Personalized Magazine", "text": "RT @cjean_dev: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/yXLGQK9l", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:46:47 +0000", "from_user": "jdub", "from_user_id": 4690301, "from_user_id_str": "4690301", "from_user_name": "Jeff Waugh", "geo": null, "id": 148308209248112640, "id_str": "148308209248112640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1544578810/jdub-big_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544578810/jdub-big_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:44:44 +0000", "from_user": "ryah", "from_user_id": 18975861, "from_user_id_str": "18975861", "from_user_name": "Ryan Dahl", "geo": null, "id": 148307695743676400, "id_str": "148307695743676416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1634041610/name_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634041610/name_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:42:02 +0000", "from_user": "hackernewsbot", "from_user_id": 19575586, "from_user_id_str": "19575586", "from_user_name": "Hacker News Bot", "geo": null, "id": 148307016048316400, "id_str": "148307016048316416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/73596050/yc500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/73596050/yc500_normal.jpg", "source": "<a href="http://news.ycombinator.com/" rel="nofollow">Hacker News Bot</a>", "text": "Node.js modules you should know about: semver... http://t.co/S7UAibLK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:35:53 +0000", "from_user": "gN3mes1s", "from_user_id": 53158658, "from_user_id_str": "53158658", "from_user_name": "Giuseppe `N3mes1s`", "geo": null, "id": 148305466039091200, "id_str": "148305466039091200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/626562524/hom_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/626562524/hom_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:27:42 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148303409940938750, "id_str": "148303409940938752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "This is fun, a nodeJS-like server written in Lua -> http://t.co/X15jMIMX http://t.co/ORbnncA6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:26:25 +0000", "from_user": "vince2_", "from_user_id": 286046143, "from_user_id_str": "286046143", "from_user_name": "Vincent Bernat", "geo": null, "id": 148303085649932300, "id_str": "148303085649932289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1321617929/moi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1321617929/moi_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:14:59 +0000", "from_user": "tannhu", "from_user_id": 26198243, "from_user_id_str": "26198243", "from_user_name": "Tan Nhu", "geo": null, "id": 148300206516092930, "id_str": "148300206516092928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/749964818/Screen_shot_2010-03-11_at_12.57.41_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/749964818/Screen_shot_2010-03-11_at_12.57.41_AM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "The most beautiful thing of NodeJS is npm.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:13:53 +0000", "from_user": "CupOfStartup", "from_user_id": 15714625, "from_user_id_str": "15714625", "from_user_name": "CupOfStartup", "geo": null, "id": 148299932963569660, "id_str": "148299932963569666", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/60443387/coffee_drinker_print_web_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/60443387/coffee_drinker_print_web_normal.jpg", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: Node.js modules you should know about: semver http://t.co/Kh6resZg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:06:57 +0000", "from_user": "Yeco", "from_user_id": 5978172, "from_user_id_str": "5978172", "from_user_name": "Y\\u00EBco", "geo": null, "id": 148298185436180480, "id_str": "148298185436180480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1595720091/yec_bigger_nu_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1595720091/yec_bigger_nu_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @HackerNewsYC: Node.js modules you should know about: semver http://t.co/PsRgVSJk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:06:47 +0000", "from_user": "HackerNewsYC", "from_user_id": 15042473, "from_user_id_str": "15042473", "from_user_name": "Hacker News YC", "geo": null, "id": 148298145577701380, "id_str": "148298145577701376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/55176345/hackernewsfeed_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/55176345/hackernewsfeed_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Node.js modules you should know about: semver http://t.co/PsRgVSJk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:05:44 +0000", "from_user": "delfinof", "from_user_id": 29531965, "from_user_id_str": "29531965", "from_user_name": "Francesco Delfino", "geo": null, "id": 148297878362800130, "id_str": "148297878362800128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1643688932/_29531965_-5740430031097686038_146_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643688932/_29531965_-5740430031097686038_146_normal.png", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: Node.js modules you should know about: semver http://t.co/Kh6resZg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:05:30 +0000", "from_user": "hetdegon", "from_user_id": 17054633, "from_user_id_str": "17054633", "from_user_name": "hetdegon", "geo": null, "id": 148297820116484100, "id_str": "148297820116484096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/445284550/PORTRAIT_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/445284550/PORTRAIT_normal.PNG", "source": "<a href="http://code.google.com/p/prpltwtr/" rel="nofollow">PrplTwtr2</a>", "text": "This is fun, a nodeJS-like server written in Lua -> http://t.co/IpHLvSNY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:04:16 +0000", "from_user": "amazedsaint", "from_user_id": 15875576, "from_user_id_str": "15875576", "from_user_name": "Anoop Madhusudanan", "geo": null, "id": 148297512556560400, "id_str": "148297512556560384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1135179282/ddbc7ac1-25a8-45a9-a808-eb3245a07080_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1135179282/ddbc7ac1-25a8-45a9-a808-eb3245a07080_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Must read \"@newsycombinator: Node.js modules you should know about: semver http://t.co/SCBxiJdL\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:04:01 +0000", "from_user": "pavlobaron", "from_user_id": 70747148, "from_user_id_str": "70747148", "from_user_name": "Pavlo Baron", "geo": null, "id": 148297448908013570, "id_str": "148297448908013568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1670021014/bad-santa-free_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670021014/bad-santa-free_3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:59:04 +0000", "from_user": "carnotweat", "from_user_id": 225349488, "from_user_id_str": "225349488", "from_user_name": "sameer", "geo": null, "id": 148296200951578620, "id_str": "148296200951578624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1317089589/sg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317089589/sg_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Node.js modules you should know about: semver http://t.co/3ydRV3CZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:54:13 +0000", "from_user": "manatsawin", "from_user_id": 12738602, "from_user_id_str": "12738602", "from_user_name": "\\u0E21\\u0E19\\u0E2A\\u0E27", "geo": null, "id": 148294982736941060, "id_str": "148294982736941056", "iso_language_code": "th", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698266811/mesky_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698266811/mesky_normal", "source": "<a href="https://chrome.google.com/webstore/detail/ogndknhgkahnialefpjkhmbekkobjfkh" rel="nofollow">Twitica Desktop</a>", "text": "(\\u0E41\\u0E15\\u0E48 nodejs indexer \\u0E02\\u0E2D\\u0E07\\u0E40\\u0E23\\u0E32\\u0E21\\u0E31\\u0E19 iconv error \\u0E1A\\u0E32\\u0E19 python \\u0E21\\u0E31\\u0E19\\u0E0A\\u0E31\\u0E27\\u0E23\\u0E4C\\u0E01\\u0E27\\u0E48\\u0E32\\u0E40\\u0E22\\u0E2D\\u0E30 \\u0E0B\\u0E2D\\u0E23\\u0E4C\\u0E2A\\u0E14\\u0E39\\u0E43\\u0E19 http://t.co/LsCux7LQ )", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:47:17 +0000", "from_user": "Keithnlarsen", "from_user_id": 255106464, "from_user_id_str": "255106464", "from_user_name": "Keith Larsen", "geo": null, "id": 148293238770499600, "id_str": "148293238770499584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1266123618/meandlexi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266123618/meandlexi_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "I just published a super simple to use mocking library for #nodejs check it out here: https://t.co/eRXQbTlP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:47:00 +0000", "from_user": "manatsawin", "from_user_id": 12738602, "from_user_id_str": "12738602", "from_user_name": "\\u0E21\\u0E19\\u0E2A\\u0E27", "geo": null, "id": 148293167115026430, "id_str": "148293167115026432", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698266811/mesky_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698266811/mesky_normal", "source": "<a href="https://chrome.google.com/webstore/detail/ogndknhgkahnialefpjkhmbekkobjfkh" rel="nofollow">Twitica Desktop</a>", "text": "python 24s nodejs 19s", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:43:58 +0000", "from_user": "jinnli", "from_user_id": 18330621, "from_user_id_str": "18330621", "from_user_name": "\\u01C7", "geo": null, "id": 148292402581483520, "id_str": "148292402581483520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1579601171/_______normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1579601171/_______normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Node.js modules you should know about: semver http://t.co/t8EJWd9L", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:41:39 +0000", "from_user": "manatsawin", "from_user_id": 12738602, "from_user_id_str": "12738602", "from_user_name": "\\u0E21\\u0E19\\u0E2A\\u0E27", "geo": null, "id": 148291821120929800, "id_str": "148291821120929792", "iso_language_code": "th", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698266811/mesky_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698266811/mesky_normal", "source": "<a href="https://chrome.google.com/webstore/detail/ogndknhgkahnialefpjkhmbekkobjfkh" rel="nofollow">Twitica Desktop</a>", "text": "\\u0E21\\u0E32\\u0E40\\u0E17\\u0E2A\\u0E14\\u0E35\\u0E01\\u0E27\\u0E48\\u0E32 \\u0E40\\u0E1E\\u0E25\\u0E07\\u0E40\\u0E23\\u0E32\\u0E21\\u0E35\\u0E01\\u0E35\\u0E48\\u0E40\\u0E1E\\u0E25\\u0E07\\u0E44\\u0E21\\u0E48\\u0E23\\u0E39\\u0E49\\u0E41\\u0E15\\u0E48\\u0E40\\u0E1B\\u0E47\\u0E19\\u0E2B\\u0E21\\u0E37\\u0E48\\u0E19 \\u0E08\\u0E30\\u0E23\\u0E31\\u0E19 indexer \\u0E17\\u0E35\\u0E48\\u0E40\\u0E23\\u0E32\\u0E40\\u0E02\\u0E35\\u0E22\\u0E19\\u0E40\\u0E1B\\u0E47\\u0E19 python+thread, nodejs output \\u0E40\\u0E1B\\u0E47\\u0E19 csv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:41:30 +0000", "from_user": "flashtml5", "from_user_id": 212360840, "from_user_id_str": "212360840", "from_user_name": "Michael Anthony", "geo": null, "id": 148291781178556400, "id_str": "148291781178556416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1460546123/Photo_on_2011-07-25_at_11.27_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1460546123/Photo_on_2011-07-25_at_11.27_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I also have been using a NodeJS script that traces out console.log's from mobile+IE in my main Firebug console. I need to release this stuff", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:41:28 +0000", "from_user": "seltzer", "from_user_id": 3598991, "from_user_id_str": "3598991", "from_user_name": "Taniguchi Makoto", "geo": null, "id": 148291774937432060, "id_str": "148291774937432064", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/18785992/me_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/18785992/me_small_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @meso: http://t.co/57mzDYxh \\u306E\\u65E5\\u672C\\u8A9E\\u30C9\\u30AD\\u30E5\\u30E1\\u30F3\\u30C8\\uFF08 http://t.co/RdocAc7f \\uFF09\\u3092\\u6700\\u65B0\\u5B89\\u5B9A\\u7248\\u3067\\u3042\\u308Bv0.6.6\\u306B\\u5BFE\\u5FDC\\u3055\\u305B\\u307E\\u3057\\u305F\\uFF08thanx to @koichik\\uFF09\\u3002 #nodejs_jp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:39:03 +0000", "from_user": "benjamin_ds", "from_user_id": 64560195, "from_user_id_str": "64560195", "from_user_name": "Benjamin Dos Santos", "geo": null, "id": 148291164498440200, "id_str": "148291164498440192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1624279481/benjamin_ds_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624279481/benjamin_ds_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:29:40 +0000", "from_user": "kazu_pon", "from_user_id": 17755912, "from_user_id_str": "17755912", "from_user_name": "kazuya kawaguchi", "geo": null, "id": 148288803579248640, "id_str": "148288803579248640", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1098382115/profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1098382115/profile_3_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @meso: http://t.co/57mzDYxh \\u306E\\u65E5\\u672C\\u8A9E\\u30C9\\u30AD\\u30E5\\u30E1\\u30F3\\u30C8\\uFF08 http://t.co/RdocAc7f \\uFF09\\u3092\\u6700\\u65B0\\u5B89\\u5B9A\\u7248\\u3067\\u3042\\u308Bv0.6.6\\u306B\\u5BFE\\u5FDC\\u3055\\u305B\\u307E\\u3057\\u305F\\uFF08thanx to @koichik\\uFF09\\u3002 #nodejs_jp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:24:20 +0000", "from_user": "javascriptalert", "from_user_id": 274501532, "from_user_id_str": "274501532", "from_user_name": "javascript", "geo": null, "id": 148287461494226940, "id_str": "148287461494226944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1304350707/___normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1304350707/___normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Ben's Journal: node.js - Evidence CPS is ideal for high performance?: http://t.co/767dtCMM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:21:47 +0000", "from_user": "stevesandersonf", "from_user_id": 194307897, "from_user_id_str": "194307897", "from_user_name": "steve sanderson", "geo": null, "id": 148286817991532540, "id_str": "148286817991532544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Node.js modules you should know about: semver http://t.co/U4qDTYRI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:12:29 +0000", "from_user": "dnene", "from_user_id": 12526082, "from_user_id_str": "12526082", "from_user_name": "Dhananjay Nene", "geo": null, "id": 148284478417158140, "id_str": "148284478417158145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1083521810/new_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1083521810/new_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@g0rm just googled for a random page which kind of placed Node.js and cps together http://t.co/4VhDuntE", "to_user": "g0rm", "to_user_id": 416034227, "to_user_id_str": "416034227", "to_user_name": "Nik Nawor", "in_reply_to_status_id": 148284022181732350, "in_reply_to_status_id_str": "148284022181732354"}, +{"created_at": "Sun, 18 Dec 2011 06:12:28 +0000", "from_user": "lluccipha", "from_user_id": 103246788, "from_user_id_str": "103246788", "from_user_name": "lluccipha", "geo": null, "id": 148284473618858000, "id_str": "148284473618857987", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697708417/BYbrkMru_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697708417/BYbrkMru_normal", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "newsycombinator: Node.js modules you should know about: semver http://t.co/guDmChVj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:10:34 +0000", "from_user": "rekatz", "from_user_id": 28733664, "from_user_id_str": "28733664", "from_user_name": "reuben e k\\uF8FFtz", "geo": +{"coordinates": [32.8445,-117.2487], "type": "Point"}, "id": 148283994956509200, "id_str": "148283994956509184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1469712918/rkatz_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1469712918/rkatz_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@newsycombinator: Node.js modules you should know about: semver http://t.co/uoFIsTua\\u201D cc @Scobleizer just always a hot topic", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:05:08 +0000", "from_user": "newsycombinator", "from_user_id": 14335498, "from_user_id_str": "14335498", "from_user_name": "news.yc Popular", "geo": null, "id": 148282628389343230, "id_str": "148282628389343232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/52589204/y_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/52589204/y_normal.png", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "Node.js modules you should know about: semver http://t.co/Kh6resZg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:02:27 +0000", "from_user": "ginpei_jp", "from_user_id": 68164583, "from_user_id_str": "68164583", "from_user_name": "\\u9AD8\\u68A8\\u30AE\\u30F3\\u30DA\\u30A4 / Ginpei", "geo": null, "id": 148281952531779600, "id_str": "148281952531779584", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694238457/image_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694238457/image_normal", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "LESS\\u306E\\u30D1\\u30FC\\u30B5\\u30FC\\u3092node\\u88FDhttpd\\u3067\\u52D5\\u304B\\u3059\\u304A\\u8A71\\u3002 / Node.js\\u3067LESS\\u30D5\\u30A1\\u30A4\\u30EB\\u3092\\u52D5\\u7684\\u306B\\u30B3\\u30F3\\u30D1\\u30A4\\u30EB\\u3059\\u308B :: 5509 http://t.co/kRU5xjXQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:02:26 +0000", "from_user": "hnbot", "from_user_id": 317653311, "from_user_id_str": "317653311", "from_user_name": "Hacker News", "geo": null, "id": 148281950141026300, "id_str": "148281950141026305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1405908372/1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1405908372/1_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Node.js modules you should know about: semver \\n(Discuss on HN - http://t.co/76HdcwfE) http://t.co/5SHCycmW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:00:02 +0000", "from_user": "HNTweets", "from_user_id": 116276133, "from_user_id_str": "116276133", "from_user_name": "Hacker News", "geo": null, "id": 148281347344048130, "id_str": "148281347344048129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1369520630/HNTweets_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1369520630/HNTweets_normal.png", "source": "<a href="http://github.com/d4nt/HNTweets" rel="nofollow">HNTweets Bot</a>", "text": "Node.js modules you should know about: semver: http://t.co/5ZMiKLue Comments: http://t.co/qes7qMRU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:58:20 +0000", "from_user": "gocho", "from_user_id": 14523807, "from_user_id_str": "14523807", "from_user_name": "gocho", "geo": null, "id": 148280919978024960, "id_str": "148280919978024960", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/943882585/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/943882585/twitter_normal.jpg", "source": "<a href="http://www.yoono.com" rel="nofollow">yoono</a>", "text": "windows,mac,un*x\\u3059\\u3079\\u3066\\u3067\\u975E\\u540C\\u671F\\u901A\\u4FE1\\u30921\\u3064\\u306E\\u30E9\\u30A4\\u30D6\\u30E9\\u30EA\\u3067\\u3053\\u306A\\u3059libuv! #nodejs https://t.co/48a6xC2K", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:53:49 +0000", "from_user": "praveen_v", "from_user_id": 7261552, "from_user_id_str": "7261552", "from_user_name": "Praveen", "geo": null, "id": 148279781476151300, "id_str": "148279781476151296", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/117288143/profilepic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/117288143/profilepic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/4jvadAN1 - New skin.. @nodejs #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:51:36 +0000", "from_user": "cadermino", "from_user_id": 56838193, "from_user_id_str": "56838193", "from_user_name": "Carlos calder\\u00F3n", "geo": null, "id": 148279222480289800, "id_str": "148279222480289793", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1678664309/deadmau5_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678664309/deadmau5_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "@cvander @freddier hola geniales las clases de nodejs gracias, yo trabajo con drupal y hay un modulo que los integra http://t.co/igybtWGi", "to_user": "cvander", "to_user_id": 817789, "to_user_id_str": "817789", "to_user_name": "Christian Van Der H"}, +{"created_at": "Sun, 18 Dec 2011 05:51:15 +0000", "from_user": "hnfirehose", "from_user_id": 213117318, "from_user_id_str": "213117318", "from_user_name": "HN Firehose", "geo": null, "id": 148279133682675700, "id_str": "148279133682675713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Node.js modules you should know about: semver: http://t.co/yF2YdOdH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:35:40 +0000", "from_user": "versicolor", "from_user_id": 16947927, "from_user_id_str": "16947927", "from_user_name": "versicolor", "geo": null, "id": 148275214948646900, "id_str": "148275214948646912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1231134781/tux_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1231134781/tux_normal.png", "source": "<a href="http://www.infinigraph.com" rel="nofollow">InfiniGraph</a>", "text": "RT @html50: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 #html5 #css3 http://t.co/5eaKUQi8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:25:19 +0000", "from_user": "nodejs", "from_user_id": 91985735, "from_user_id_str": "91985735", "from_user_name": "node js", "geo": null, "id": 148272609941921800, "id_str": "148272609941921792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1437021459/nodejs-dark_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1437021459/nodejs-dark_normal.png", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "RT @shr: \" Node.js has been an awesome platform to build our product on. \" Interesting write up. http://t.co/ktyMWwxr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:23:13 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 148272080394260480, "id_str": "148272080394260480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @DrDhodz: Testing node.js modules with Travis CI: pYou have written a node.js module lately? It has a\\u2026 http://t.co/DRfU7zMJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:19:02 +0000", "from_user": "MoriasEnkomion", "from_user_id": 194354030, "from_user_id_str": "194354030", "from_user_name": "Benjamin Anderson", "geo": null, "id": 148271027615571970, "id_str": "148271027615571970", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1669110227/twitterprofilepic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669110227/twitterprofilepic_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "Thx 4 RT, @Nodejs_bot: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets & #html5 #css3 http://t.co/0jfYdmfX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:12:53 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148269482488512500, "id_str": "148269482488512512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @morteza_milani NodeJsCommunity: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 #html5...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:12:53 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148269481234407420, "id_str": "148269481234407424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @emilbuzz html50: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 #html5 #css3 http://t...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:12:34 +0000", "from_user": "acarlos1000", "from_user_id": 8536242, "from_user_id_str": "8536242", "from_user_name": "Antonio C. Silveira", "geo": null, "id": 148269399894265860, "id_str": "148269399894265856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1346082012/antonio-2011yahoo-2723_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1346082012/antonio-2011yahoo-2723_small_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:07:01 +0000", "from_user": "DrDhodz", "from_user_id": 287479847, "from_user_id_str": "287479847", "from_user_name": "James Douglas", "geo": null, "id": 148268005112037380, "id_str": "148268005112037377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1531207315/DrDhodz_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1531207315/DrDhodz_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Testing node.js modules with Travis CI: pYou have written a node.js module lately? It has a\\u2026 http://t.co/DRfU7zMJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:26:31 +0000", "from_user": "morteza_milani", "from_user_id": 166104316, "from_user_id_str": "166104316", "from_user_name": "Morteza Milani", "geo": null, "id": 148257810440921100, "id_str": "148257810440921088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681214380/me2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681214380/me2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 #html5 #css3 http:... http://t.co/p2AzQPCi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:24:53 +0000", "from_user": "tommie_open", "from_user_id": 95061299, "from_user_id_str": "95061299", "from_user_name": "tommie", "geo": null, "id": 148257401106214900, "id_str": "148257401106214913", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/878135992/tumblr_kptjmv1QVf1qznd83o1_1280_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/878135992/tumblr_kptjmv1QVf1qznd83o1_1280_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@yosuke_furukawa \\u308F\\u30FC\\u3044\\u3000\\uFF08\\u25CF\\uFF3Eo\\uFF3E\\u25CF\\uFF09\\u3000\\u3068\\u3053\\u308D\\u3067\\u3001\\u3064\\u3076\\u3084\\u304D\\u304B\\u3089\\u65B0\\u805E\\u3092\\u4F5C\\u308Bpapar.li\\u3063\\u3066\\u306E\\u304C\\u9762\\u767D\\u3044\\u3067\\u3059\\u3002Node.js\\u306E\\u65B0\\u805E\\u2192http://t.co/2zOlcgkS", "to_user": "yosuke_furukawa", "to_user_id": 39272335, "to_user_id_str": "39272335", "to_user_name": "Yosuke FURUKAWA", "in_reply_to_status_id": 148255831354388480, "in_reply_to_status_id_str": "148255831354388480"}, +{"created_at": "Sun, 18 Dec 2011 04:24:01 +0000", "from_user": "zaynhamdan", "from_user_id": 157632949, "from_user_id_str": "157632949", "from_user_name": "zayn hamdan", "geo": null, "id": 148257183023370240, "id_str": "148257183023370242", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1052227543/IMG00002-20091124-1209_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1052227543/IMG00002-20091124-1209_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Drowning on nodejs, it's exciting! After hours battle to make my fb apps run on prod server, I found a way to run it on localhost ;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:09:43 +0000", "from_user": "emilbuzz", "from_user_id": 322685480, "from_user_id_str": "322685480", "from_user_name": "Emil Daniel", "geo": null, "id": 148253582154670080, "id_str": "148253582154670080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1601383755/iakasha-low_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601383755/iakasha-low_normal.JPG", "source": "<a href="http://www.infinigraph.com" rel="nofollow">InfiniGraph</a>", "text": "RT @html50: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 #html5 #css3 http://t.co/5eaKUQi8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:59:49 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 148251093695086600, "id_str": "148251093695086593", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "speculum (0.0.0): http://t.co/rUt9v5ea NodeJS BDD Test Suite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:46:44 +0000", "from_user": "KamiSLO", "from_user_id": 45091430, "from_user_id_str": "45091430", "from_user_name": "Toma\\u017E Muraus", "geo": null, "id": 148247800759595000, "id_str": "148247800759595008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/335942780/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/335942780/me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:40:19 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 148246186401345540, "id_str": "148246186401345536", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "tracker (0.0.0): http://t.co/gZxOGCup performance tracker for nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:38:39 +0000", "from_user": "javiercbk", "from_user_id": 94555589, "from_user_id_str": "94555589", "from_user_name": "Javier Lecuona", "geo": null, "id": 148245765519720450, "id_str": "148245765519720448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1666569364/XO3r4rWK_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666569364/XO3r4rWK_normal", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "if you're a nodeJS newbie, check out @hacksparrow blog http://t.co/ezGDIY05", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:31:30 +0000", "from_user": "hc5duke", "from_user_id": 17076398, "from_user_id_str": "17076398", "from_user_name": "HJ Choi", "geo": null, "id": 148243967253819400, "id_str": "148243967253819392", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1597465682/thefuck_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1597465682/thefuck_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "nodejs requires xcode? /sadface", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:19:31 +0000", "from_user": "kimo", "from_user_id": 6068052, "from_user_id_str": "6068052", "from_user_name": "Krishna Guda", "geo": null, "id": 148240949309476860, "id_str": "148240949309476864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1576122748/stevejobs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576122748/stevejobs_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ryah: @nodejs people should be following @indutny - he's been doing great core work the last few months", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:16:59 +0000", "from_user": "eradicus", "from_user_id": 11148862, "from_user_id_str": "11148862", "from_user_name": "Joset Anthony Zamora", "geo": null, "id": 148240311443927040, "id_str": "148240311443927041", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/57824803/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/57824803/avatar_normal.jpg", "source": "<a href="http://www.infinigraph.com" rel="nofollow">InfiniGraph</a>", "text": "RT @html50: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 #html5 #css3 http://t.co/5eaKUQi8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:12:57 +0000", "from_user": "jorgeespada", "from_user_id": 16649149, "from_user_id_str": "16649149", "from_user_name": "Jorge Espada", "geo": null, "id": 148239298603393020, "id_str": "148239298603393024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/187796214/jor_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/187796214/jor_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:06:43 +0000", "from_user": "aaronblohowiak", "from_user_id": 7142142, "from_user_id_str": "7142142", "from_user_name": "aaron blohowiak", "geo": null, "id": 148237728457310200, "id_str": "148237728457310209", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1548031798/mee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1548031798/mee_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:06:28 +0000", "from_user": "kishorelive", "from_user_id": 18895700, "from_user_id_str": "18895700", "from_user_name": "Kishore Nallan", "geo": null, "id": 148237667245621250, "id_str": "148237667245621249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/70745130/blotus_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/70745130/blotus_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:02:23 +0000", "from_user": "sunilband", "from_user_id": 61828777, "from_user_id_str": "61828777", "from_user_name": "Sunil B", "geo": null, "id": 148236638479331330, "id_str": "148236638479331328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/342673592/SunilPic_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/342673592/SunilPic_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:01:03 +0000", "from_user": "Cebolinhabh", "from_user_id": 53163650, "from_user_id_str": "53163650", "from_user_name": "Thiago Miranda", "geo": null, "id": 148236304499486720, "id_str": "148236304499486721", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693643006/mario_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693643006/mario_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:00:51 +0000", "from_user": "slidebot", "from_user_id": 246273889, "from_user_id_str": "246273889", "from_user_name": "slidebot", "geo": null, "id": 148236253475778560, "id_str": "148236253475778560", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1232681981/slidebot_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1232681981/slidebot_normal.png", "source": "<a href="http://deeeki.com/" rel="nofollow">slidebot</a>", "text": "*Hot!* \\u6771\\u4EACNode\\u5B66\\u5712#3 Domains & Isolates http://t.co/ccuFACSS (by koichik 2011-12-15) [ja][DL:OK] #Nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:00:01 +0000", "from_user": "yyfrankyy", "from_user_id": 56345494, "from_user_id_str": "56345494", "from_user_name": "Frank Xu", "geo": null, "id": 148236042904928260, "id_str": "148236042904928256", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1234202598/79c0b1355435ae5333ee8525e1c1e0fb_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1234202598/79c0b1355435ae5333ee8525e1c1e0fb_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\\u8FD9\\u4E2A\\u770B\\u8D77\\u6765\\u633A\\u4F18\\u96C5\\u7684\\u3002Sequelize \\u00BB A MySQL Object-Relational-Mapper for NodeJS http://t.co/cro8vmZN via @", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Sun, 18 Dec 2011 02:55:48 +0000", "from_user": "jeromatron", "from_user_id": 14726616, "from_user_id_str": "14726616", "from_user_name": "Jeremy Hanna", "geo": null, "id": 148234982643601400, "id_str": "148234982643601408", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1133849249/myphoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1133849249/myphoto_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "#nodejs + #cassandra | #cql driver http://t.co/vPaKkN72 used in http://t.co/GRB653X3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:53:46 +0000", "from_user": "tjholowaychuk", "from_user_id": 29255412, "from_user_id_str": "29255412", "from_user_name": "TJ Holowaychuk", "geo": null, "id": 148234470980468740, "id_str": "148234470980468738", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/124810348/DSC_0009_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/124810348/DSC_0009_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:49:08 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148233305488240640, "id_str": "148233305488240642", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 #html5 #css3 http:... http://t.co/p2AzQPCi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:46:44 +0000", "from_user": "spyced", "from_user_id": 36383929, "from_user_id_str": "36383929", "from_user_name": "Jonathan Ellis", "geo": null, "id": 148232702276010000, "id_str": "148232702276009984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/422398220/jbellis-3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/422398220/jbellis-3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:44:39 +0000", "from_user": "MWilbanks", "from_user_id": 19148078, "from_user_id_str": "19148078", "from_user_name": "Matt Wilbanks", "geo": null, "id": 148232177904132100, "id_str": "148232177904132096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1395211242/Screen_shot_2011-06-14_at_12.10.16_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1395211242/Screen_shot_2011-06-14_at_12.10.16_AM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:43:49 +0000", "from_user": "dehora", "from_user_id": 546313, "from_user_id_str": "546313", "from_user_name": "Bill de h\\u00D3ra", "geo": null, "id": 148231966133714940, "id_str": "148231966133714944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1353302609/131466384_04bd6f5204_o_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1353302609/131466384_04bd6f5204_o_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:37:12 +0000", "from_user": "sh1mmer", "from_user_id": 63803, "from_user_id_str": "63803", "from_user_name": "Tom Hughes-Croucher", "geo": null, "id": 148230299891925000, "id_str": "148230299891924992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1595178869/IMG_2476_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1595178869/IMG_2476_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:34:26 +0000", "from_user": "atsuya", "from_user_id": 7483262, "from_user_id_str": "7483262", "from_user_name": "Atsuya Takagi", "geo": null, "id": 148229606900641800, "id_str": "148229606900641792", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1644873867/atsuya_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644873867/atsuya_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "getUserMedia\\u306E\\u4E8B\\u3059\\u3063\\u304B\\u308A\\u5FD8\\u308C\\u3066\\u305F\\uFF01 http://t.co/rbtmOKJY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:31:51 +0000", "from_user": "jeromatron", "from_user_id": 14726616, "from_user_id_str": "14726616", "from_user_name": "Jeremy Hanna", "geo": null, "id": 148228953495187460, "id_str": "148228953495187456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1133849249/myphoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1133849249/myphoto_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:30:04 +0000", "from_user": "pquerna", "from_user_id": 7624272, "from_user_id_str": "7624272", "from_user_name": "Paul Querna", "geo": null, "id": 148228508005568500, "id_str": "148228508005568512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1366801499/pquerna-headshot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1366801499/pquerna-headshot_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:26:45 +0000", "from_user": "Outsideris", "from_user_id": 7932892, "from_user_id_str": "7932892", "from_user_name": "Outsider", "geo": null, "id": 148227673586544640, "id_str": "148227673586544640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1646891342/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646891342/image_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Write your shell scripts in JavaScript, via Node.js http://t.co/f0buaA9z", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:25:05 +0000", "from_user": "Ubacoda", "from_user_id": 366582721, "from_user_id_str": "366582721", "from_user_name": "Ben Walker", "geo": null, "id": 148227252000272400, "id_str": "148227252000272384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1525024752/ubacoda_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1525024752/ubacoda_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @chrismatthieu: Sweet! RT @sachalepretre: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/hsom9moM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:17:00 +0000", "from_user": "mkopala", "from_user_id": 18088431, "from_user_id_str": "18088431", "from_user_name": "Matt Kopala", "geo": null, "id": 148225218765266940, "id_str": "148225218765266944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1136086466/me5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1136086466/me5_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Diving in head-first to #nodejs and #coffeescript. Have tabs up on backbone, spine, sass, mongoose, jasmine, jade, underscore as well.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:10:52 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148223672480567300, "id_str": "148223672480567296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @swVisionary NodeJsCommunity: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:10:51 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148223670677020670, "id_str": "148223670677020672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @MoriasEnkomion html50: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 #html5 #css3 ht...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:10:51 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148223669586501630, "id_str": "148223669586501632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @html50 Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 #html5 #css3 http://t.co/7GWzIYfG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:07:58 +0000", "from_user": "swVisionary", "from_user_id": 108372259, "from_user_id_str": "108372259", "from_user_name": "Nick Vaidyanathan", "geo": null, "id": 148222944408113150, "id_str": "148222944408113152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/654869854/11453_810742209051_10019872_48993166_7125682_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/654869854/11453_810742209051_10019872_48993166_7125682_n_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/CGQYy1FL http://t.co/NKIJqu9n", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:06:07 +0000", "from_user": "grevych", "from_user_id": 89622691, "from_user_id_str": "89622691", "from_user_name": "Gerardo Reyes", "geo": null, "id": 148222477011648500, "id_str": "148222477011648512", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1518069120/cAflonsa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1518069120/cAflonsa_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Que tan seguro es NodeJs comparado con comet usando cualquier otro lenguaje?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:03:03 +0000", "from_user": "gblock", "from_user_id": 1434051, "from_user_id_str": "1434051", "from_user_name": "Glenn Block", "geo": null, "id": 148221706312495100, "id_str": "148221706312495104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1198284833/Photo_on_2010-12-24_at_20.51_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1198284833/Photo_on_2010-12-24_at_20.51_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @jbueza: @lucisferre Was deploying a #wordpress instance to #Azure few days ago. Took 25mins. #NodeJS is snappy, takes about 10 minutes!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:02:27 +0000", "from_user": "MajorYe", "from_user_id": 15338871, "from_user_id_str": "15338871", "from_user_name": "MajorYe", "geo": null, "id": 148221554386407420, "id_str": "148221554386407424", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/264055736/img_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/264055736/img_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u676D\\u5DDE\\u7684\\u5929\\u6C14\\u8FD8\\u662F\\u5F88\\u4E0D\\u9519\\u7684\\uFF0C\\u4E0B\\u5348\\u53BB\\u53C2\\u52A0nodejs\\u5927\\u4F1A~", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:01:41 +0000", "from_user": "ClaudeCK", "from_user_id": 25229814, "from_user_id_str": "25229814", "from_user_name": "John Claude", "geo": null, "id": 148221365416247300, "id_str": "148221365416247298", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\\u6B63\\u597D\\u524D\\u51E0\\u5929\\u4E5F\\u7528nodejs\\u5E72\\u4E86\\u5199shell script\\u5E72\\u7684\\u4E8B\\u60C5\\u3002\\u6709\\u4E00\\u4E9Btips\\u53EF\\u4EE5\\u5B66\\u4E0B\\u3002Write your shell scripts in JavaScript, via Node.js http://t.co/gtoCvUg6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:00:16 +0000", "from_user": "MoriasEnkomion", "from_user_id": 194354030, "from_user_id_str": "194354030", "from_user_name": "Benjamin Anderson", "geo": null, "id": 148221008216723460, "id_str": "148221008216723456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1669110227/twitterprofilepic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669110227/twitterprofilepic_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "RT @html50: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 #html5 #css3 http://t.co/0jfYdmfX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:54:17 +0000", "from_user": "html50", "from_user_id": 112795368, "from_user_id_str": "112795368", "from_user_name": "HTML 5.0", "geo": null, "id": 148219499294896130, "id_str": "148219499294896128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675783101/html5_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675783101/html5_normal", "source": "<a href="http://www.infinigraph.com" rel="nofollow">InfiniGraph</a>", "text": "Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 #html5 #css3 http://t.co/5eaKUQi8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:45:55 +0000", "from_user": "gabyz22", "from_user_id": 51928124, "from_user_id_str": "51928124", "from_user_name": "Gabriela Zu\\u00F1iga", "geo": null, "id": 148217396795162620, "id_str": "148217396795162624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/709433253/io_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/709433253/io_normal.jpg", "source": "<a href="http://www.snsanalytics.com" rel="nofollow">SNS Analytics</a>", "text": "RT @AjaxComputing: Getting Started with Node.js http://t.co/uTH31LyY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:44:36 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148217064463675400, "id_str": "148217064463675392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/CGQYy1FL http://t.co/NKIJqu9n", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:34:06 +0000", "from_user": "tdreyno", "from_user_id": 635793, "from_user_id_str": "635793", "from_user_name": "Thomas Reynolds", "geo": null, "id": 148214421112627200, "id_str": "148214421112627200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1615815446/thomas_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615815446/thomas_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "If I used nodejs, I think I'd be a little uncomfortable that they've had to put out 7 point releases in a little over a month and a half.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:32:38 +0000", "from_user": "jbueza", "from_user_id": 141423083, "from_user_id_str": "141423083", "from_user_name": "Jaime Bueza", "geo": null, "id": 148214053934870530, "id_str": "148214053934870528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@lucisferre Was deploying a #wordpress instance to #Azure few days ago. Took 25mins. #NodeJS is snappy, takes about 10 minutes!", "to_user": "lucisferre", "to_user_id": 47128593, "to_user_id_str": "47128593", "to_user_name": "Chris Nicola", "in_reply_to_status_id": 148212774378541060, "in_reply_to_status_id_str": "148212774378541056"}, +{"created_at": "Sun, 18 Dec 2011 01:32:17 +0000", "from_user": "cjean_dev", "from_user_id": 248265595, "from_user_id_str": "248265595", "from_user_name": "Christophe Jean", "geo": null, "id": 148213963904139260, "id_str": "148213963904139265", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1236625278/thumbs-up_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1236625278/thumbs-up_normal.jpg", "source": "Zite Personalized Magazine", "text": "Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/yXLGQK9l", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:19:53 +0000", "from_user": "mccode", "from_user_id": 52866760, "from_user_id_str": "52866760", "from_user_name": "Marc", "geo": null, "id": 148210843266449400, "id_str": "148210843266449408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/393803484/evil-smiley-face_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/393803484/evil-smiley-face_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "What I love most about #nodejs is the ability to crank out a feature in a fraction of the time I'd expect.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:39:38 +0000", "from_user": "alenaruprecht", "from_user_id": 167836220, "from_user_id_str": "167836220", "from_user_name": "Alena Ruprecht", "geo": null, "id": 148200712709484540, "id_str": "148200712709484544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1173890585/meScream_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1173890585/meScream_normal.jpg", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "@AaronAcerboni: @nodejs people should be following @indutny - he's been doing great core work the last few months", "to_user": "AaronAcerboni", "to_user_id": 151153709, "to_user_id_str": "151153709", "to_user_name": "Aaron Acerboni"}, +{"created_at": "Sun, 18 Dec 2011 00:23:31 +0000", "from_user": "jackhq", "from_user_id": 15810776, "from_user_id_str": "15810776", "from_user_name": "Jack Russ Software", "geo": null, "id": 148196658822381570, "id_str": "148196658822381568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/493141971/jrs-logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/493141971/jrs-logo_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tjholowaychuk: uber-simple express 3.x-pre cookie session middleware https://t.co/d9AVDTZx (6 SLOC) #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:13:24 +0000", "from_user": "oh3kqd", "from_user_id": 331422844, "from_user_id_str": "331422844", "from_user_name": "Antti Arvela", "geo": null, "id": 148194111260856320, "id_str": "148194111260856320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1647793351/SantaFace-a_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647793351/SantaFace-a_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/9B5efwfy by @FrancisShanahan #JavaScript", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:11:48 +0000", "from_user": "hnfirehose", "from_user_id": 213117318, "from_user_id_str": "213117318", "from_user_name": "HN Firehose", "geo": null, "id": 148193708347633660, "id_str": "148193708347633664", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Stream webcam w/ Javascript, NodeJS, Android, Opera Mobile, Web Sockets & HTML5: http://t.co/x7qLFvf4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:05:44 +0000", "from_user": "nicholaswyoung", "from_user_id": 10003492, "from_user_id_str": "10003492", "from_user_name": "Nicholas Young", "geo": null, "id": 148192185085468670, "id_str": "148192185085468672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1610887480/IMG_1171__2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610887480/IMG_1171__2__normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@Geniasaurus I already am! Working on my #nodejs project, and having a blast. This is my most productive setup yet!", "to_user": "Geniasaurus", "to_user_id": 181438231, "to_user_id_str": "181438231", "to_user_name": "Eugenia G", "in_reply_to_status_id": 148192064713146370, "in_reply_to_status_id_str": "148192064713146368"}, +{"created_at": "Sun, 18 Dec 2011 00:05:11 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148192043137642500, "id_str": "148192043137642496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/6Zl9rbg4 http://t.co/R7MzLqtd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:05:02 +0000", "from_user": "dtorres", "from_user_id": 10973202, "from_user_id_str": "10973202", "from_user_name": "Diego Torres", "geo": null, "id": 148192006638809100, "id_str": "148192006638809088", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701905441/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701905441/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@elJOjo queri aprender de verdad? haz algo en nodejs ;)", "to_user": "elJOjo", "to_user_id": 16358256, "to_user_id_str": "16358256", "to_user_name": "jos\\u00E9 tom\\u00E1s a", "in_reply_to_status_id": 148191174585368580, "in_reply_to_status_id_str": "148191174585368576"}, +{"created_at": "Sun, 18 Dec 2011 00:02:13 +0000", "from_user": "diegognt", "from_user_id": 67094756, "from_user_id_str": "67094756", "from_user_name": "Diego Navarro", "geo": null, "id": 148191297361022980, "id_str": "148191297361022976", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1057006020/avatar_2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1057006020/avatar_2__normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Esto de #nodejs me empieza a gustar mucho :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:55:07 +0000", "from_user": "roothybrid7", "from_user_id": 20235619, "from_user_id_str": "20235619", "from_user_name": "Satoshi Ohki", "geo": null, "id": 148189511006957570, "id_str": "148189511006957569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1479301676/rh7_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1479301676/rh7_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tjholowaychuk: uber-simple express 3.x-pre cookie session middleware https://t.co/d9AVDTZx (6 SLOC) #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:50:48 +0000", "from_user": "Nodester", "from_user_id": 240751001, "from_user_id_str": "240751001", "from_user_name": "Nodester", "geo": null, "id": 148188424115986430, "id_str": "148188424115986432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/BwLp4eHS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:34:45 +0000", "from_user": "rauchg", "from_user_id": 15540222, "from_user_id_str": "15540222", "from_user_name": "Guillermo Rauch", "geo": null, "id": 148184384606965760, "id_str": "148184384606965760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1547730928/Image_2011.09.17_6-39-27_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1547730928/Image_2011.09.17_6-39-27_PM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tjholowaychuk: uber-simple express 3.x-pre cookie session middleware https://t.co/d9AVDTZx (6 SLOC) #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:33:02 +0000", "from_user": "benjamin_ds", "from_user_id": 64560195, "from_user_id_str": "64560195", "from_user_name": "Benjamin Dos Santos", "geo": null, "id": 148183952388132860, "id_str": "148183952388132864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1624279481/benjamin_ds_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624279481/benjamin_ds_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tjholowaychuk: uber-simple express 3.x-pre cookie session middleware https://t.co/d9AVDTZx (6 SLOC) #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:27:39 +0000", "from_user": "techarch", "from_user_id": 14908034, "from_user_id_str": "14908034", "from_user_name": "Philippe Monnet", "geo": null, "id": 148182599418920960, "id_str": "148182599418920960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1096968079/Philippe11_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1096968079/Philippe11_copy_normal.jpg", "source": "<a href="http://pluggio.com" rel="nofollow">Pluggio</a>", "text": "Nice! :-) RT @ajlopez Research done. Switch to install last version of Node.js, on Windows http://t.co/NP8YIG9h look ma, npm!", "to_user": "ajlopez", "to_user_id": 14567622, "to_user_id_str": "14567622", "to_user_name": "ajlopez", "in_reply_to_status_id": 148171364216487940, "in_reply_to_status_id_str": "148171364216487936"}, +{"created_at": "Sat, 17 Dec 2011 23:26:56 +0000", "from_user": "GaruHenr", "from_user_id": 112743376, "from_user_id_str": "112743376", "from_user_name": "Bruno Henrique(Garu)", "geo": null, "id": 148182417889443840, "id_str": "148182417889443840", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1551147469/225472_1760698895957_1193588234_31583357_7276793_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1551147469/225472_1760698895957_1193588234_31583357_7276793_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "brincadeiras com #nodejs *----*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:18:15 +0000", "from_user": "ryanlowdermilk", "from_user_id": 7851942, "from_user_id_str": "7851942", "from_user_name": "Ryan Lowdermilk", "geo": null, "id": 148180233110036480, "id_str": "148180233110036480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/199052533/RyanLowdermilk_small_box_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/199052533/RyanLowdermilk_small_box_normal.gif", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Deploying my first node.js app to Azure. This should be harder. Feel like I'm cheating. #nodejs #azure", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:17:18 +0000", "from_user": "tjholowaychuk", "from_user_id": 29255412, "from_user_id_str": "29255412", "from_user_name": "TJ Holowaychuk", "geo": null, "id": 148179995804708860, "id_str": "148179995804708864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/124810348/DSC_0009_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/124810348/DSC_0009_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "uber-simple express 3.x-pre cookie session middleware https://t.co/d9AVDTZx (6 SLOC) #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:16:38 +0000", "from_user": "emerleite", "from_user_id": 16782712, "from_user_id_str": "16782712", "from_user_name": "Emerson Macedo", "geo": null, "id": 148179827206258700, "id_str": "148179827206258688", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1080818173/e4e27ec8-6e67-4316-91c8-3401c72e5ea0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1080818173/e4e27ec8-6e67-4316-91c8-3401c72e5ea0_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Hora de atualizar meu Node para 0.6.6. Por falar nisso o novo site ficou bem legal - http://t.co/2UxcBbLD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:14:22 +0000", "from_user": "nicktea", "from_user_id": 14957733, "from_user_id_str": "14957733", "from_user_name": "Nick Treadway", "geo": null, "id": 148179255258390530, "id_str": "148179255258390528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1150644660/day_of_dead_vader_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1150644660/day_of_dead_vader_sm_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @chrismatthieu: Sweet! RT @sachalepretre: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/hsom9moM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:08:02 +0000", "from_user": "mborbm", "from_user_id": 5569092, "from_user_id_str": "5569092", "from_user_name": "Manuel Borja", "geo": null, "id": 148177662261723140, "id_str": "148177662261723137", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/744896681/50444_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/744896681/50444_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@mejorandola \\u00BFen el pr\\u00F3ximo programa terminar\\u00E1n el ejemplo de nodejs ?", "to_user": "mejorandola", "to_user_id": 64863875, "to_user_id_str": "64863875", "to_user_name": "Mejorando la web"}, +{"created_at": "Sat, 17 Dec 2011 23:03:50 +0000", "from_user": "laurocaetano", "from_user_id": 241706667, "from_user_id_str": "241706667", "from_user_name": "Lauro Caetano", "geo": null, "id": 148176607805321200, "id_str": "148176607805321216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1635212972/eaef_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635212972/eaef_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: What exactly is #nodeJS (in pt-br):\\nhttp://t.co/S3GcJsG0 http://t.co/iQJav7Tb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:03:10 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148176439404015600, "id_str": "148176439404015616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @chrismatthieu Sweet! sachalepretre: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 ht...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:03:10 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148176437961170940, "id_str": "148176437961170944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @sachalepretre Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/U0qjlX5v", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:03:09 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148176435268427780, "id_str": "148176435268427777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @brainfucker NodeJsCommunity: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:03:05 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148176415894941700, "id_str": "148176415894941696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/hMmHiut3 http://t.co/GeBNElAB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:55:50 +0000", "from_user": "amit_twit", "from_user_id": 99925376, "from_user_id_str": "99925376", "from_user_name": "amit", "geo": null, "id": 148174593268523000, "id_str": "148174593268523008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1406766611/sp-studio_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1406766611/sp-studio_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@neo4j Is there a working wrapper/binding to #nodejs? tried some from Github and they seem to fail with v1.6", "to_user": "neo4j", "to_user_id": 22467617, "to_user_id_str": "22467617", "to_user_name": "Neo4j"}, +{"created_at": "Sat, 17 Dec 2011 22:52:53 +0000", "from_user": "Nodester", "from_user_id": 240751001, "from_user_id_str": "240751001", "from_user_name": "Nodester", "geo": null, "id": 148173849345794050, "id_str": "148173849345794048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: @nodejs people should be following @indutny - he's been doing great core work the last few months", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:51:29 +0000", "from_user": "chrismatthieu", "from_user_id": 13604142, "from_user_id_str": "13604142", "from_user_name": "Chris Matthieu", "geo": null, "id": 148173496311222270, "id_str": "148173496311222273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/918916153/SuperChrisSmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/918916153/SuperChrisSmall_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Sweet! RT @sachalepretre: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/hsom9moM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:47:27 +0000", "from_user": "sachalepretre", "from_user_id": 78666416, "from_user_id_str": "78666416", "from_user_name": "Sacha Lepretre", "geo": null, "id": 148172480945717250, "id_str": "148172480945717248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/829319624/sachalepretre_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/829319624/sachalepretre_normal.jpg", "source": "Zite Personalized Magazine", "text": "Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/BJ9yn1ha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:44:36 +0000", "from_user": "brainfucker", "from_user_id": 17170428, "from_user_id_str": "17170428", "from_user_name": "brainfucker", "geo": null, "id": 148171764650881020, "id_str": "148171764650881025", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1345274517/x_c90abfe3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1345274517/x_c90abfe3_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/hMmHiut3 http://t.co/37PB0Fy2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:44:26 +0000", "from_user": "dhaivatpoincare", "from_user_id": 233257440, "from_user_id_str": "233257440", "from_user_name": "Dhaivat Pandya", "geo": null, "id": 148171724888875000, "id_str": "148171724888875008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657560442/2011-11-25_13-57-39.638_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657560442/2011-11-25_13-57-39.638_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Just wrote another #realtime web app with #nodejs ... pretty addicting", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:43:00 +0000", "from_user": "ajlopez", "from_user_id": 14567622, "from_user_id_str": "14567622", "from_user_name": "ajlopez", "geo": null, "id": 148171364216487940, "id_str": "148171364216487936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/53769404/spiral_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/53769404/spiral_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Research done. Switch to install last version of Node.js, on Windows http://t.co/9sP5yC8P look ma, npm!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:35:16 +0000", "from_user": "sdouche", "from_user_id": 15830587, "from_user_id_str": "15830587", "from_user_name": "S\\u00E9bastien Douche", "geo": null, "id": 148169417698721800, "id_str": "148169417698721792", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/64962323/sdouche_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/64962323/sdouche_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "SockJS benchmarks #js #nodejs #python #pypy - http://t.co/JZxLjuwP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:32:01 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148168599528419330, "id_str": "148168599528419328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "What exactly is #nodeJS (in pt-br):\\nhttp://t.co/S3GcJsG0 http://t.co/iQJav7Tb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:20:15 +0000", "from_user": "t3rcio_andrade", "from_user_id": 57208899, "from_user_id_str": "57208899", "from_user_name": "Tercio de Andrade", "geo": null, "id": 148165638446268400, "id_str": "148165638446268416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1267770575/Contact_HPIM1267_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1267770575/Contact_HPIM1267_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "What exactly is #nodeJS (in pt-br):\\nhttp://t.co/f83Y5qVx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:15:29 +0000", "from_user": "kurokikaze", "from_user_id": 13150922, "from_user_id_str": "13150922", "from_user_name": "Serge Shirokov", "geo": null, "id": 148164439978422270, "id_str": "148164439978422274", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/56938132/x_66b88703_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/56938132/x_66b88703_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/hMmHiut3 http://t.co/37PB0Fy2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:14:11 +0000", "from_user": "ef80", "from_user_id": 320104063, "from_user_id_str": "320104063", "from_user_name": "Erlend", "geo": null, "id": 148164112956928000, "id_str": "148164112956928000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691301903/tur_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691301903/tur_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "ef80: javascript / node.js worker queue http://t.co/LoJ2IU5D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:58:00 +0000", "from_user": "madmw", "from_user_id": 1671311, "from_user_id_str": "1671311", "from_user_name": "Juli\\u00E1n Romero", "geo": null, "id": 148160037339140100, "id_str": "148160037339140096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/450218472/Avatar_Canencia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/450218472/Avatar_Canencia_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "apache, lighttpd, couchdb, redis, posgresql and a bunch of nodejs and django custom servers back to life; dinner time", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:52:44 +0000", "from_user": "scaganoff", "from_user_id": 15238450, "from_user_id_str": "15238450", "from_user_name": "Saul Caganoff", "geo": null, "id": 148158712144597000, "id_str": "148158712144596993", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/59295206/me_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/59295206/me_normal.jpeg", "source": "<a href="http://www.apple.com" rel="nofollow">Safari on iOS</a>", "text": "So optimizing RoR means use Node.js instead? http://t.co/TzKoX62z", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:46:15 +0000", "from_user": "3rdEden", "from_user_id": 14350255, "from_user_id_str": "14350255", "from_user_name": "Arnout Kazemier", "geo": null, "id": 148157082359693300, "id_str": "148157082359693313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@maciejmalecki Also having a menu bar on the right side is stupid, people read sites in a F pattern not in a \\uA7FB #nodejs", "to_user": "maciejmalecki", "to_user_id": 263755874, "to_user_id_str": "263755874", "to_user_name": "Maciej Ma\\u0142ecki", "in_reply_to_status_id": 148153714757206000, "in_reply_to_status_id_str": "148153714757206016"}, +{"created_at": "Sat, 17 Dec 2011 21:31:28 +0000", "from_user": "3rdEden", "from_user_id": 14350255, "from_user_id_str": "14350255", "from_user_name": "Arnout Kazemier", "geo": null, "id": 148153359789080580, "id_str": "148153359789080576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "I have said it before, and i'll say it again, having to scroll to find the link to documentation is fucking retarded #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:29:26 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148152850416009200, "id_str": "148152850416009216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/hMmHiut3 http://t.co/37PB0Fy2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:28:55 +0000", "from_user": "nodejitsu", "from_user_id": 157442008, "from_user_id_str": "157442008", "from_user_name": "Nodejitsu", "geo": null, "id": 148152717586608130, "id_str": "148152717586608128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ryah: @nodejs people should be following @indutny - he's been doing great core work the last few months", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:28:18 +0000", "from_user": "3rdEden", "from_user_id": 14350255, "from_user_id_str": "14350255", "from_user_name": "Arnout Kazemier", "geo": null, "id": 148152564314161150, "id_str": "148152564314161152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@ryah @nodejs @indutny like getting SPDY support in core ;) *hint* *hint*", "to_user": "ryah", "to_user_id": 18975861, "to_user_id_str": "18975861", "to_user_name": "Ryan Dahl", "in_reply_to_status_id": 148149731435102200, "in_reply_to_status_id_str": "148149731435102208"}, +{"created_at": "Sat, 17 Dec 2011 21:26:12 +0000", "from_user": "mrtopf", "from_user_id": 794885, "from_user_id_str": "794885", "from_user_name": "Christian Scholz", "geo": null, "id": 148152037073362940, "id_str": "148152037073362944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/817481781/mrtopf2010-klein_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/817481781/mrtopf2010-klein_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ryah: @nodejs people should be following @indutny - he's been doing great core work the last few months", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:23:44 +0000", "from_user": "tjholowaychuk", "from_user_id": 29255412, "from_user_id_str": "29255412", "from_user_name": "TJ Holowaychuk", "geo": null, "id": 148151413007061000, "id_str": "148151413007060992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/124810348/DSC_0009_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/124810348/DSC_0009_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ryah: @nodejs people should be following @indutny - he's been doing great core work the last few months", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:19:19 +0000", "from_user": "HTML5aldente", "from_user_id": 130282229, "from_user_id_str": "130282229", "from_user_name": "Chris Veltman", "geo": null, "id": 148150301948510200, "id_str": "148150301948510208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1125715140/html5-aldente-avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1125715140/html5-aldente-avatar_normal.jpg", "source": "Zite Personalized Magazine", "text": "Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/sphgw0rQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:17:03 +0000", "from_user": "ryah", "from_user_id": 18975861, "from_user_id_str": "18975861", "from_user_name": "Ryan Dahl", "geo": null, "id": 148149731435102200, "id_str": "148149731435102208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1634041610/name_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634041610/name_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@nodejs people should be following @indutny - he's been doing great core work the last few months", "to_user": "nodejs", "to_user_id": 91985735, "to_user_id_str": "91985735", "to_user_name": "node js"}, +{"created_at": "Sat, 17 Dec 2011 21:01:08 +0000", "from_user": "mwgriffith", "from_user_id": 280776244, "from_user_id_str": "280776244", "from_user_name": "Michael Griffith", "geo": null, "id": 148145725707005950, "id_str": "148145725707005952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1432284341/qr_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1432284341/qr_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Web Reflection: Create a JS builder with node.js http://t.co/wldXNFVe\\n#build #node.js", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:58:54 +0000", "from_user": "Bottico", "from_user_id": 14166522, "from_user_id_str": "14166522", "from_user_name": "Angel Botto", "geo": null, "id": 148145165985525760, "id_str": "148145165985525760", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1654717184/ba188789-ae61-4666-a1d2-49a0156dae39_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654717184/ba188789-ae61-4666-a1d2-49a0156dae39_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Nodejs Sublime Text 2 Package https://t.co/G1gUhBee #mejorandola", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:54:54 +0000", "from_user": "clystian_", "from_user_id": 98229677, "from_user_id_str": "98229677", "from_user_name": "Cristian Hernandez", "geo": null, "id": 148144158190735360, "id_str": "148144158190735362", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1622813688/sg_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622813688/sg_1__normal.jpg", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "RT @DiegoUG: Simple chat for Node.js - http://t.co/MQclglT0 http://t.co/jEm2JPFn - http://t.co/OuTo2DTP #mejorandojs (CC @cvander)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:53:17 +0000", "from_user": "NodeJSAtSO", "from_user_id": 292124941, "from_user_id_str": "292124941", "from_user_name": "Node JS @ SO", "geo": null, "id": 148143753847259140, "id_str": "148143753847259137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1336740490/sprites_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1336740490/sprites_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "pipe mixes different streams nodejs http://t.co/6UMdW32D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:49:05 +0000", "from_user": "adymitruk", "from_user_id": 14196181, "from_user_id_str": "14196181", "from_user_name": "Adam Dymitruk", "geo": null, "id": 148142696949751800, "id_str": "148142696949751808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1205941672/profilepic_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1205941672/profilepic_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Another nail in cygwin's coffin: npm is not available for nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:38:36 +0000", "from_user": "tjefford", "from_user_id": 14291039, "from_user_id_str": "14291039", "from_user_name": "Tyler Jefford", "geo": null, "id": 148140057411321860, "id_str": "148140057411321856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1292168201/IMG_0061_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1292168201/IMG_0061_normal.jpg", "source": "Zite Personalized Magazine", "text": "Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/w7dVl928 via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:30:41 +0000", "from_user": "rmhrisk", "from_user_id": 19459100, "from_user_id_str": "19459100", "from_user_name": "Ryan Hurst", "geo": null, "id": 148138062709395460, "id_str": "148138062709395456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/72951305/V35CADEMKDKCAY1N0JCCAFMSZT7CASY3XVSCA67MRUGCAFXBE16CAB9BNQXCA7ZQ2TNCABSLMH2CA1NN5B9CAXU54MJCASU1S2TCAQP57NNCAS48YIWCADVYES9CA7W3829CAIZ42NGCAH35MKUCAJS1M47_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/72951305/V35CADEMKDKCAY1N0JCCAFMSZT7CASY3XVSCA67MRUGCAFXBE16CAB9BNQXCA7ZQ2TNCABSLMH2CA1NN5B9CAXU54MJCASU1S2TCAQP57NNCAS48YIWCADVYES9CA7W3829CAIZ42NGCAH35MKUCAJS1M47_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I like that #BrowserID was implemented with NodeJS.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:22:54 +0000", "from_user": "larsw", "from_user_id": 812367, "from_user_id_str": "812367", "from_user_name": "Lars Wilhelmsen", "geo": null, "id": 148136105278050300, "id_str": "148136105278050305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1493520937/286554_506803857228_337700054_135341_3372933_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1493520937/286554_506803857228_337700054_135341_3372933_o_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@smarx Man! Why aren't you a CNN news anchor? re. http://t.co/Wt8ajtrs :-D", "to_user": "smarx", "to_user_id": 12449312, "to_user_id_str": "12449312", "to_user_name": "Steve Marx"}, +{"created_at": "Sat, 17 Dec 2011 20:10:06 +0000", "from_user": "Kurassier", "from_user_id": 121827295, "from_user_id_str": "121827295", "from_user_name": "Andr\\u00E9s Arias Rauld", "geo": null, "id": 148132883880615940, "id_str": "148132883880615936", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1650732275/LyY0CykA_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650732275/LyY0CykA_normal", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Instalado NodeJS, Sublime Text 2, SDEplorer, creo que estoy listo :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:07:47 +0000", "from_user": "luis2103", "from_user_id": 119916622, "from_user_id_str": "119916622", "from_user_name": "Luis Sancho", "geo": null, "id": 148132299970592770, "id_str": "148132299970592768", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1629425602/foto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629425602/foto_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/ycn8qdxK #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:02:07 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148130875123564540, "id_str": "148130875123564545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @tjholowaychuk rgaidot: Open sourcing a realtime mahjong http://t.co/MbqomYL6 #nodejs #expressjs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:02:05 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148130867842252800, "id_str": "148130867842252801", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @pelaphptutor #Web / #Facebook App with Google Map integration / use nodeJS when possible http://t.co/HWqgSN7T #jobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:02:04 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148130863404683260, "id_str": "148130863404683264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @TechGiirl Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/U0qjlX5v", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:56:45 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148129523169370100, "id_str": "148129523169370112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Web / #Facebook App with Google Map integration / use nodeJS when possible http://t.co/bOwXrlSc #jobs http://t.co/sM3SBGsY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:50:06 +0000", "from_user": "fnhernandez", "from_user_id": 163767275, "from_user_id_str": "163767275", "from_user_name": "Fabio Hernandez -\\uF8FF-", "geo": null, "id": 148127852318048260, "id_str": "148127852318048257", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696992518/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696992518/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@cvander Excelente, estaba esperando nodejs y SocketIO #mrjorandola", "to_user": "cvander", "to_user_id": 817789, "to_user_id_str": "817789", "to_user_name": "Christian Van Der H", "in_reply_to_status_id": 148113012799184900, "in_reply_to_status_id_str": "148113012799184896"}, +{"created_at": "Sat, 17 Dec 2011 19:41:37 +0000", "from_user": "tjholowaychuk", "from_user_id": 29255412, "from_user_id_str": "29255412", "from_user_name": "TJ Holowaychuk", "geo": null, "id": 148125718230994940, "id_str": "148125718230994944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/124810348/DSC_0009_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/124810348/DSC_0009_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rgaidot: Open sourcing a realtime mahjong http://t.co/ksPFXWFD #nodejs #expressjs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:36:02 +0000", "from_user": "pelaphptutor", "from_user_id": 52802067, "from_user_id_str": "52802067", "from_user_name": "pelaphptutorials.com", "geo": null, "id": 148124312551948300, "id_str": "148124312551948288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/292484362/n100131847672_3877_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/292484362/n100131847672_3877_normal.jpg", "source": "<a href="http://www.pelaphptutorials.com/" rel="nofollow">PelaPHPTutorials</a>", "text": "#Web / #Facebook App with Google Map integration / use nodeJS when possible http://t.co/11FYhP8L #jobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:34:46 +0000", "from_user": "manatsawin", "from_user_id": 12738602, "from_user_id_str": "12738602", "from_user_name": "\\u0E21\\u0E19\\u0E2A\\u0E27", "geo": null, "id": 148123994099421200, "id_str": "148123994099421184", "iso_language_code": "th", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698266811/mesky_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698266811/mesky_normal", "source": "<a href="https://chrome.google.com/webstore/detail/ogndknhgkahnialefpjkhmbekkobjfkh" rel="nofollow">Twitica Desktop</a>", "text": "lister \\u0E42\\u0E1B\\u0E23\\u0E41\\u0E01\\u0E23\\u0E21\\u0E19\\u0E35\\u0E49\\u0E21\\u0E31\\u0E48\\u0E19\\u0E43\\u0E08\\u0E44\\u0E27\\u0E01\\u0E27\\u0E48\\u0E32\\u0E42\\u0E1B\\u0E23\\u0E41\\u0E01\\u0E23\\u0E21\\u0E1A\\u0E19 windows \\u0E41\\u0E19\\u0E48\\u0E19\\u0E2D\\u0E19 \\u0E40\\u0E1E\\u0E23\\u0E32\\u0E30\\u0E21\\u0E31\\u0E19\\u0E41\\u0E15\\u0E01\\u0E40\\u0E18\\u0E23\\u0E14\\u0E23\\u0E31\\u0E27\\u0E46\\u0E46\\u0E46 \\u0E22\\u0E34\\u0E48\\u0E07\\u0E40\\u0E27\\u0E2D\\u0E23\\u0E4C\\u0E0A\\u0E31\\u0E48\\u0E19 nodejs \\u0E22\\u0E34\\u0E48\\u0E07\\u0E44\\u0E27\\u0E42\\u0E04\\u0E15\\u0E23", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:31:38 +0000", "from_user": "PepeVazquezS", "from_user_id": 270602775, "from_user_id_str": "270602775", "from_user_name": "Pepe Vazquez Sanchez", "geo": null, "id": 148123204496523260, "id_str": "148123204496523264", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1567190282/yo2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1567190282/yo2_normal.jpg", "source": "<a href="http://paper.li" rel="nofollow">Paper.li</a>", "text": "\\u00A1TechAgil & TechNews est\\u00E1 disponible! http://t.co/IW5gM8B3 \\u25B8 Historias del d\\u00EDa por @ikitommi @melt_cdk @nodejs @vfqdev @payerickdog", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:27:51 +0000", "from_user": "TechGiirl", "from_user_id": 416541210, "from_user_id_str": "416541210", "from_user_name": "TechGiirl", "geo": null, "id": 148122251491934200, "id_str": "148122251491934208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1647318013/tech_girl_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647318013/tech_girl_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/4ihAIHld", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:19:05 +0000", "from_user": "jerrymarino", "from_user_id": 14696816, "from_user_id_str": "14696816", "from_user_name": "jerrymarino", "geo": null, "id": 148120047062237200, "id_str": "148120047062237184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682006694/25902_1382810285979_1103612857_31169656_2142140_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682006694/25902_1382810285979_1103612857_31169656_2142140_n_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @Nodejs_bot: via @ziyadbazed Write your shell scripts in JavaScript, via Node.js http://t.co/Mohn0yTG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:14:08 +0000", "from_user": "jsgeneve", "from_user_id": 404035068, "from_user_id_str": "404035068", "from_user_name": "Javascript Gen\\u00E8ve", "geo": null, "id": 148118800540254200, "id_str": "148118800540254208", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1620267028/twitter_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620267028/twitter_normal.gif", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Manipulation de la DOM en #NodeJS avec JSDOM, jQuery et Mustache http://t.co/BHDEwITo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:12:35 +0000", "from_user": "chocolateynuget", "from_user_id": 342874803, "from_user_id_str": "342874803", "from_user_name": "Chocolatey NuGet", "geo": null, "id": 148118408746110980, "id_str": "148118408746110976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1527393850/chocolateyicon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1527393850/chocolateyicon_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "nodejs: Node JS - Evented I/O for v8 JavaScript. #chocolatey #new", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:11:00 +0000", "from_user": "DrDhodz", "from_user_id": 287479847, "from_user_id_str": "287479847", "from_user_name": "James Douglas", "geo": null, "id": 148118013193895940, "id_str": "148118013193895936", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1531207315/DrDhodz_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1531207315/DrDhodz_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Node.js Artikel im t3n Magazin: pIn der aktuellen a href=\"http://t3n.de/magazin/t3n-nr-22\\u2026 http://t.co/9Whhb7lO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Sat, 17 Dec 2011 18:54:36 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148113883448610800, "id_str": "148113883448610818", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Server-side DOM manipulation in Node.js with JSDOM, JQuery, and Mustache Templates http://t.co/A7QRYjBm #jquery http://t.co/m3QowjS9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:52:03 +0000", "from_user": "chesles", "from_user_id": 118408760, "from_user_id_str": "118408760", "from_user_name": "John Chesley", "geo": null, "id": 148113243859197950, "id_str": "148113243859197953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1139621304/IMG_2815_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1139621304/IMG_2815_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "they do make a cute couple, don't they? http://t.co/OTGOLbQN #nodejs #mongodb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:49:52 +0000", "from_user": "viking_olof", "from_user_id": 147300633, "from_user_id_str": "147300633", "from_user_name": "Olof", "geo": null, "id": 148112694527000580, "id_str": "148112694527000577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/936074674/80x80_comic0024_laymGAJROZkAVpgnnqSvQ_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/936074674/80x80_comic0024_laymGAJROZkAVpgnnqSvQ_normal.jpg", "source": "<a href="http://myworld.se/olga-olof-sitting-in-a-tree/" rel="nofollow">Olga</a>", "text": "Server-side DOM manipulation in Node.js with JSDOM, JQuery, and Mustache Templates http://t.co/jtPEFzmd #jquery", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:48:36 +0000", "from_user": "k_rother", "from_user_id": 61298929, "from_user_id_str": "61298929", "from_user_name": "Kristian Rother", "geo": null, "id": 148112373755031550, "id_str": "148112373755031554", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/339131787/k_rother_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/339131787/k_rother_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @masylum: It's been only one day that I open sourced a mahjong solitaire and 600 hours have already been wasted http://t.co/CXBy3dtr #nodejs #html5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:36:29 +0000", "from_user": "masylum", "from_user_id": 2475601, "from_user_id_str": "2475601", "from_user_name": "Pau", "geo": null, "id": 148109325133553660, "id_str": "148109325133553664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/53868095/CIMG6255_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/53868095/CIMG6255_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "It's been only one day that I open sourced a mahjong solitaire and 600 hours have already been wasted http://t.co/CXBy3dtr #nodejs #html5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:27:23 +0000", "from_user": "zohaibhassan", "from_user_id": 28342526, "from_user_id_str": "28342526", "from_user_name": "Zohaib Sibte Hassan", "geo": null, "id": 148107036473831420, "id_str": "148107036473831424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1528005473/phpbU9MP2AM_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1528005473/phpbU9MP2AM_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@umutm try this you my never come back to nodejs http://t.co/8RAtrLa6", "to_user": "umutm", "to_user_id": 19119804, "to_user_id_str": "19119804", "to_user_name": "Umut Muhaddisoglu", "in_reply_to_status_id": 148105886206922750, "in_reply_to_status_id_str": "148105886206922752"}, +{"created_at": "Sat, 17 Dec 2011 18:20:23 +0000", "from_user": "VRajaRao", "from_user_id": 265225982, "from_user_id_str": "265225982", "from_user_name": "Vadugu Raja Rao", "geo": null, "id": 148105273842741250, "id_str": "148105273842741248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Windows Azure Updated To Support Hadoop and Node.js http://t.co/b9JSXCQO via @toolsjournal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:19:38 +0000", "from_user": "startupcalgary", "from_user_id": 172414919, "from_user_id_str": "172414919", "from_user_name": "Startup Calgary", "geo": null, "id": 148105086525124600, "id_str": "148105086525124609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1153319940/twitter_logo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1153319940/twitter_logo_normal.gif", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @ekryski: Hackity Hackin' @AcceleratorYYC. I'm lonely. Come join me! #nodejs #MongoDB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:17:31 +0000", "from_user": "VRajaRao", "from_user_id": 265225982, "from_user_id_str": "265225982", "from_user_name": "Vadugu Raja Rao", "geo": null, "id": 148104553642987520, "id_str": "148104553642987520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Windows Azure Updated To Support Hadoop and Node.js http://t.co/b9JSXCQO via @toolsjournal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:56:34 +0000", "from_user": "a2exandre", "from_user_id": 48330766, "from_user_id_str": "48330766", "from_user_name": "Alexandre \\u2716", "geo": null, "id": 148099281495130100, "id_str": "148099281495130113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1614089650/alexandre-le-hegarat_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1614089650/alexandre-le-hegarat_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Stream a webcam using nodejs, html5 http://t.co/lOEbvaYh #in #nodejs #html5 #javascript http://t.co/aiiHtqoR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:54:19 +0000", "from_user": "prodrigestivill", "from_user_id": 154629313, "from_user_id_str": "154629313", "from_user_name": "Pau (plue)", "geo": null, "id": 148098715251507200, "id_str": "148098715251507200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/996972392/avatar2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/996972392/avatar2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Stream a webcam using nodejs, html5 http://t.co/lOEbvaYh #in #nodejs #html5 #javascript http://t.co/aiiHtqoR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:33:36 +0000", "from_user": "pksunkara", "from_user_id": 122074153, "from_user_id_str": "122074153", "from_user_name": "Pavan Kumar Sunkara", "geo": null, "id": 148093498070020100, "id_str": "148093498070020097", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1427115741/181a5dbeda025f718df4d37bf522ed3d_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1427115741/181a5dbeda025f718df4d37bf522ed3d_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@nodejitsu takes 26s to create and deploy a new app, #nodejs", "to_user": "nodejitsu", "to_user_id": 157442008, "to_user_id_str": "157442008", "to_user_name": "Nodejitsu"}, +{"created_at": "Sat, 17 Dec 2011 17:33:19 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 148093429451210750, "id_str": "148093429451210752", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "nodepress (0.3.1): http://t.co/r76FEKlA A nodejs micro-blog engine", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:27:29 +0000", "from_user": "cam2149", "from_user_id": 342283633, "from_user_id_str": "342283633", "from_user_name": "camartinez", "geo": null, "id": 148091960350093300, "id_str": "148091960350093313", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1640291214/DSC05087_-_copia_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640291214/DSC05087_-_copia_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Node.js v0.5.10 Manual & Documentation \\nhttp://t.co/rFwtzhql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:16:25 +0000", "from_user": "rdcotter", "from_user_id": 38607483, "from_user_id_str": "38607483", "from_user_name": "Rick Cotter", "geo": null, "id": 148089176221429760, "id_str": "148089176221429761", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1444956913/Floating_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1444956913/Floating_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @ekryski: Hackity Hackin' @AcceleratorYYC. I'm lonely. Come join me! #nodejs #MongoDB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:16:01 +0000", "from_user": "nodecalgary", "from_user_id": 330116925, "from_user_id_str": "330116925", "from_user_name": "Node Calgary", "geo": null, "id": 148089075876904960, "id_str": "148089075876904961", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1437275972/node_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1437275972/node_twitter_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @ekryski: Hackity Hackin' @AcceleratorYYC. I'm lonely. Come join me! #nodejs #MongoDB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:10:31 +0000", "from_user": "ekryski", "from_user_id": 258956663, "from_user_id_str": "258956663", "from_user_name": "Eric Kryski", "geo": null, "id": 148087691555250180, "id_str": "148087691555250176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1277933776/eric_home_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1277933776/eric_home_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Hackity Hackin' @AcceleratorYYC. I'm lonely. Come join me! #nodejs #MongoDB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:10:05 +0000", "from_user": "wPGnews", "from_user_id": 201365363, "from_user_id_str": "201365363", "from_user_name": "\\u308F\\u304B\\u3081\\u30CB\\u30E5\\u30FC\\u30B9\\uFF08\\u30D7\\u30ED\\u30B0\\u30E9\\u30DF\\u30F3\\u30B0\\uFF09", "geo": null, "id": 148087582704672770, "id_str": "148087582704672768", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1144557758/twiprogramming_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1144557758/twiprogramming_normal.gif", "source": "<a href="http://wakamenews.mydns.jp/programming.php" rel="nofollow">\\u308F\\u304B\\u3081\\u306B\\u3085\\u30FC\\u3059BOT\\uFF08Programming\\uFF09</a>", "text": "what is your favorite JS editor? - nodejs | Google \\u30B0\\u30EB\\u30FC\\u30D7 http://t.co/x7Ceq3eP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:01:13 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148085350315724800, "id_str": "148085350315724800", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @kernelhacker My weekend project in nodejs - http://t.co/QUCNKztx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:01:13 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148085349170679800, "id_str": "148085349170679808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @itwars node-spdy Implementation of the SPDY protocol on node.js | #nodejs http://t.co/ozEMATbN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:01:12 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148085346616352770, "id_str": "148085346616352768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @ziyadbazed Write your shell scripts in JavaScript, via Node.js http://t.co/Mohn0yTG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:42:29 +0000", "from_user": "stephohanley", "from_user_id": 292446376, "from_user_id_str": "292446376", "from_user_name": "Stephanie O'Hanley", "geo": null, "id": 148080635423113200, "id_str": "148080635423113216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1362853537/twitterphoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1362853537/twitterphoto_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @mtw: #hackmtl currently going on at @notmanhouse counting 8 projects working on #nodejs #mongodb #redis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:31:28 +0000", "from_user": "rifat", "from_user_id": 9706142, "from_user_id_str": "9706142", "from_user_name": "Rifat Nabi", "geo": +{"coordinates": [23.7822,90.406], "type": "Point"}, "id": 148077862086389760, "id_str": "148077862086389760", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/849836651/392ad9591d2b38dbdefc04af90ced991_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/849836651/392ad9591d2b38dbdefc04af90ced991_normal.jpeg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "Updating #androidsdk & #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:27:03 +0000", "from_user": "josuetec2003", "from_user_id": 97719877, "from_user_id_str": "97719877", "from_user_name": "Josu\\u00E9 Alvarez \\u30C4", "geo": null, "id": 148076751279493120, "id_str": "148076751279493120", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1628191634/DSC00016_-_copia__2__-_copia_-_copia_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628191634/DSC00016_-_copia__2__-_copia_-_copia_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@CARVANET Que pedos? Ya comenz\\u00F3 a desarrollar con #NodeJS ?", "to_user": "CARVANET", "to_user_id": 227199426, "to_user_id_str": "227199426", "to_user_name": "Carlos Vargas", "in_reply_to_status_id": 148076061106769920, "in_reply_to_status_id_str": "148076061106769920"}, +{"created_at": "Sat, 17 Dec 2011 16:25:21 +0000", "from_user": "TikalKnowledge", "from_user_id": 170645052, "from_user_id_str": "170645052", "from_user_name": "Tikal Knowledge", "geo": null, "id": 148076322386755600, "id_str": "148076322386755585", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1100393184/tn_logoGray-big_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1100393184/tn_logoGray-big_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Toolbox for nodejs http://t.co/mBuVJbFb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:23:51 +0000", "from_user": "tikalk", "from_user_id": 40843868, "from_user_id_str": "40843868", "from_user_name": "Tikal", "geo": null, "id": 148075945704685570, "id_str": "148075945704685568", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/278387960/tikal-64-leaf_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/278387960/tikal-64-leaf_normal.png", "source": "<a href="http://www.tikalk.com" rel="nofollow">Tikal Community</a>", "text": "orenf posted: Toolbox for nodejs http://t.co/WV8fa5Um", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:18:49 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148074680635502600, "id_str": "148074680635502592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "node-spdy Implementation of the SPDY protocol on node.js | #nodejs http://t.co/QUXiLiqD http://t.co/Px8scCml", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:16:43 +0000", "from_user": "mkohlmyr", "from_user_id": 16912414, "from_user_id_str": "16912414", "from_user_name": "Mikael Kohlmyr", "geo": null, "id": 148074149657587700, "id_str": "148074149657587713", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698394272/fb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698394272/fb_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@DearHarry Aldrig fel med fler spr\\u00E5k, vill g\\u00E4rna plocka upp python, ruby & nodejs f\\u00F6r att ut\\u00F6ka mitt artilleri f\\u00F6r webben hehe", "to_user": "DearHarry", "to_user_id": 16908505, "to_user_id_str": "16908505", "to_user_name": "Emanuel Andersson", "in_reply_to_status_id": 148073468007682050, "in_reply_to_status_id_str": "148073468007682048"}, +{"created_at": "Sat, 17 Dec 2011 16:14:51 +0000", "from_user": "mkohlmyr", "from_user_id": 16912414, "from_user_id_str": "16912414", "from_user_name": "Mikael Kohlmyr", "geo": null, "id": 148073679861977100, "id_str": "148073679861977090", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698394272/fb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698394272/fb_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@DearHarry Knappt tid f\\u00F6r egna projekt atm & letar internships f\\u00F6r sommar s\\u00E5 f\\u00E5r se :P Vill g\\u00E4rna leka med nodejs/cassandra/ruby etc.", "to_user": "DearHarry", "to_user_id": 16908505, "to_user_id_str": "16908505", "to_user_name": "Emanuel Andersson", "in_reply_to_status_id": 148071595250954240, "in_reply_to_status_id_str": "148071595250954240"}, +{"created_at": "Sat, 17 Dec 2011 16:10:24 +0000", "from_user": "dhaivatpoincare", "from_user_id": 233257440, "from_user_id_str": "233257440", "from_user_name": "Dhaivat Pandya", "geo": null, "id": 148072560251252740, "id_str": "148072560251252737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657560442/2011-11-25_13-57-39.638_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657560442/2011-11-25_13-57-39.638_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "I\"m in need of a programming project, preferably #python or #javascript (#jquery) or #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:58:11 +0000", "from_user": "kernelhacker", "from_user_id": 41547502, "from_user_id_str": "41547502", "from_user_name": "Qasims", "geo": null, "id": 148069488535928830, "id_str": "148069488535928834", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/222071855/photo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/222071855/photo_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "My weekend project in nodejs - http://t.co/o9WL0qcH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:52:52 +0000", "from_user": "itwars", "from_user_id": 67265165, "from_user_id_str": "67265165", "from_user_name": "Vincent RABAH", "geo": null, "id": 148068147847643140, "id_str": "148068147847643136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1135858686/cb-vincent_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1135858686/cb-vincent_normal.png", "source": "<a href="http://www.scoop.it" rel="nofollow">Scoop.it</a>", "text": "node-spdy Implementation of the SPDY protocol on node.js | #nodejs http://t.co/thucXsZu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:52:12 +0000", "from_user": "ziyadbazed", "from_user_id": 28047037, "from_user_id_str": "28047037", "from_user_name": "Ziyad Bazed", "geo": null, "id": 148067979790254080, "id_str": "148067979790254080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1513314654/IMG00937-20110625-2011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1513314654/IMG00937-20110625-2011_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "Write your shell scripts in JavaScript, via Node.js http://t.co/qdxJCaVN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:51:49 +0000", "from_user": "itwars", "from_user_id": 67265165, "from_user_id_str": "67265165", "from_user_name": "Vincent RABAH", "geo": null, "id": 148067885078675460, "id_str": "148067885078675458", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1135858686/cb-vincent_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1135858686/cb-vincent_normal.png", "source": "<a href="http://termtter.org/" rel="nofollow">Termtter</a>", "text": "#nodejs RT @zeroload: RT @nodenpm: spdy (1.0.0): http://t.co/H17O1J1r Implementation of the SPDY protocol on node.js.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:47:53 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148066896737091600, "id_str": "148066896737091585", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "mongoose-paginate (0.1.0): http://t.co/0JfPxjaI Mongoose ORM (NodeJS) Document Query Pagination http://t.co/pj9RQWbo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:43:40 +0000", "from_user": "txipi", "from_user_id": 2632531, "from_user_id_str": "2632531", "from_user_name": "txipi", "geo": null, "id": 148065834751889400, "id_str": "148065834751889408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1245238537/txipi-hub_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1245238537/txipi-hub_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Stream a webcam using nodejs, html5 http://t.co/lOEbvaYh #in #nodejs #html5 #javascript http://t.co/aiiHtqoR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:41:46 +0000", "from_user": "trufae", "from_user_id": 15364094, "from_user_id_str": "15364094", "from_user_name": "pancake", "geo": null, "id": 148065355061923840, "id_str": "148065355061923840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1291415517/abdadcat_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1291415517/abdadcat_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Stream a webcam using nodejs, html5 http://t.co/lOEbvaYh #in #nodejs #html5 #javascript http://t.co/aiiHtqoR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:34:19 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 148063482787536900, "id_str": "148063482787536898", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "mongoose-paginate (0.1.0): http://t.co/fhbMzLA0 Mongoose ORM (NodeJS) Document Query Pagination", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:29:29 +0000", "from_user": "MTLTalent", "from_user_id": 395320819, "from_user_id_str": "395320819", "from_user_name": "MTLTalent", "geo": null, "id": 148062264191234050, "id_str": "148062264191234050", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1599444158/MTL_Startup_Talent_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599444158/MTL_Startup_Talent_logo_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @mtw: #hackmtl currently going on at @notmanhouse counting 8 projects working on #nodejs #mongodb #redis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:29:18 +0000", "from_user": "mtw", "from_user_id": 4609741, "from_user_id_str": "4609741", "from_user_name": "Montreal Tech Watch", "geo": null, "id": 148062220331388930, "id_str": "148062220331388929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1311424156/Screen_shot_2011-04-14_at_11.25.36_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1311424156/Screen_shot_2011-04-14_at_11.25.36_AM_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "#hackmtl currently going on at @notmanhouse counting 8 projects working on #nodejs #mongodb #redis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:27:21 +0000", "from_user": "cirbif", "from_user_id": 166893803, "from_user_id_str": "166893803", "from_user_name": "Denny Trebbin", "geo": null, "id": 148061729539112960, "id_str": "148061729539112960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1182574135/Facebook_zoomed_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1182574135/Facebook_zoomed_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Developing apps for #webOS with #NodeJS is really easy but can be improved with #CoffeeScript :) #IntelliJ supports webOS out-of-the-box :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:46:52 +0000", "from_user": "_hiraq", "from_user_id": 15146420, "from_user_id_str": "15146420", "from_user_name": "hiraq citra m", "geo": null, "id": 148051540517728260, "id_str": "148051540517728257", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1136451829/SUC54797_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1136451829/SUC54797_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "nah! ini baru mantep! > http://t.co/9FTnzgA4 ... cakephp+node.js", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:42:57 +0000", "from_user": "asamidsgr", "from_user_id": 193665655, "from_user_id_str": "193665655", "from_user_name": "Asami Yuuki", "geo": null, "id": 148050555716108300, "id_str": "148050555716108288", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1160245296/8483064_2540497908_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1160245296/8483064_2540497908_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @__k__o__: nodejs\\u306B\\u89E6\\u3063\\u3066\\u307F\\u3066\\u308B\\u3002javascript\\u76F4\\u306B\\u306F\\u3042\\u3093\\u307E\\u308A\\u89E6\\u308A\\u305F\\u304F\\u306A\\u3044\\u3051\\u3069\\u3002GWT\\u3068\\u304B\\u3055\\u308F\\u3063\\u3066\\u307F\\u308B\\u3079\\u304D\\u304B\\u306A\\uFF1F", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:41:10 +0000", "from_user": "NodeJSAtSO", "from_user_id": 292124941, "from_user_id_str": "292124941", "from_user_name": "Node JS @ SO", "geo": null, "id": 148050106904625150, "id_str": "148050106904625152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1336740490/sprites_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1336740490/sprites_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Is there examples of nodejs+express secure user authentication http://t.co/1BA84G3C", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:38:55 +0000", "from_user": "Kurassier", "from_user_id": 121827295, "from_user_id_str": "121827295", "from_user_name": "Andr\\u00E9s Arias Rauld", "geo": null, "id": 148049541378228220, "id_str": "148049541378228224", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1650732275/LyY0CykA_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650732275/LyY0CykA_normal", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Buscando servidor Free para las pruebas con NodeJS, para luego montarlo en el mio :D!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:30:32 +0000", "from_user": "__k__o__", "from_user_id": 108172087, "from_user_id_str": "108172087", "from_user_name": "\\u30B3\\u30A6", "geo": null, "id": 148047431513288700, "id_str": "148047431513288706", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1146064357/IMG_0281_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1146064357/IMG_0281_normal.JPG", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "nodejs\\u306B\\u89E6\\u3063\\u3066\\u307F\\u3066\\u308B\\u3002javascript\\u76F4\\u306B\\u306F\\u3042\\u3093\\u307E\\u308A\\u89E6\\u308A\\u305F\\u304F\\u306A\\u3044\\u3051\\u3069\\u3002GWT\\u3068\\u304B\\u3055\\u308F\\u3063\\u3066\\u307F\\u308B\\u3079\\u304D\\u304B\\u306A\\uFF1F", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:21:28 +0000", "from_user": "lmatteis", "from_user_id": 281950081, "from_user_id_str": "281950081", "from_user_name": "Luca Matteis", "geo": null, "id": 148045148394225660, "id_str": "148045148394225664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1311121600/me_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1311121600/me_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Why in-memory database are sometimes useful @nodejs http://t.co/MKEl09cE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:18:50 +0000", "from_user": "mah0x211", "from_user_id": 106365751, "from_user_id_str": "106365751", "from_user_name": "mah", "geo": null, "id": 148044485530628100, "id_str": "148044485530628096", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1188866055/face_image_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1188866055/face_image_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u3067\\u3082\\u3001V8\\u306EIsolates\\u3067nodejs\\u3067\\u3082\\u30DE\\u30EB\\u30C1\\u30B9\\u30EC\\u30C3\\u30C9\\u306A\\u3093\\u3066\\u306A\\u3063\\u305F\\u3089\\u3069\\u3046\\u306A\\u308B\\u3093\\u3060\\u308D\\u3002\\u6642\\u9593\\u3042\\u308B\\u6642\\u306B\\u3061\\u3083\\u3093\\u3068\\u8ABF\\u3079\\u3066\\u307F\\u306A\\u304D\\u3083\\u3060\\u306A\\u3041\\u3002 \\uFF5Chttp://t.co/2QUblNh2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:16:30 +0000", "from_user": "mah0x211", "from_user_id": 106365751, "from_user_id_str": "106365751", "from_user_name": "mah", "geo": null, "id": 148043896889421820, "id_str": "148043896889421824", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1188866055/face_image_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1188866055/face_image_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u305D\\u3044\\u3048\\u3070\\u3001eio\\u306Eapi\\u3068\\u306B\\u3089\\u3081\\u3063\\u3053\\u3057\\u3059\\u304E\\u3066\\u3066nodejs\\u304C\\u30B7\\u30F3\\u30B0\\u30EB\\u30B9\\u30EC\\u30C3\\u30C9\\u3060\\u3063\\u3066\\u4E8B\\u3092\\u3059\\u3063\\u304B\\u308A\\u5FD8\\u308C\\u3066\\u305F\\u3002\\u305D\\u308C\\u306A\\u3089\\u3001CRC32\\u306A\\u3093\\u3066\\u8A08\\u7B97\\u3057\\u306A\\u304F\\u3066\\u3082gettimeofday\\u306E\\u30DE\\u30A4\\u30AF\\u30ED\\u79D2\\u3092\\u30AD\\u30FC\\u306B\\u3057\\u3061\\u3083\\u3048\\u3070\\u3044\\u3044\\u306E\\u304B\\u3002swig\\u307F\\u305F\\u3044\\u306B\\u30C6\\u30F3\\u30D7\\u30EC\\u30FC\\u30C8\\u6587\\u5B57\\u5217\\u3092\\u30CF\\u30C3\\u30B7\\u30E5\\u30AD\\u30FC\\u306B\\u4F7F\\u308F\\u306A\\u304F\\u3066\\u826F\\u304F\\u306A\\u308B\\u3057\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:15:27 +0000", "from_user": "lorenzomassacci", "from_user_id": 663903, "from_user_id_str": "663903", "from_user_name": "Lorenzo Massacci", "geo": null, "id": 148043634770583550, "id_str": "148043634770583552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/46676082/mypictr_LinkedIn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/46676082/mypictr_LinkedIn_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 | Francis Shanahan[.com] ... http://t.co/SMAIBoQP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:59:43 +0000", "from_user": "jsgeneve", "from_user_id": 404035068, "from_user_id_str": "404035068", "from_user_name": "Javascript Gen\\u00E8ve", "geo": null, "id": 148039675687338000, "id_str": "148039675687337984", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1620267028/twitter_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620267028/twitter_normal.gif", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "#nodelab: un \"snippet\" (terme de l'auteur) pour faire de la diffusion vid\\u00E9o stream\\u00E9e avec #nodejs et #operamobile http://t.co/KSpaIL7i", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:53:20 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148038069310853120, "id_str": "148038069310853120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @Simbiotika Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 | Francis Shanahan[.com] - ht...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:53:20 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148038068035797000, "id_str": "148038068035796993", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @driveon_es Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 | Francis Shanahan[.com] - ht...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:53:20 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148038066924294140, "id_str": "148038066924294145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @smediafactory Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 | Francis Shanahan[.com] -...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:45:21 +0000", "from_user": "dnielf", "from_user_id": 64901406, "from_user_id_str": "64901406", "from_user_name": "Daniel Flores", "geo": null, "id": 148036057923977200, "id_str": "148036057923977216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1593965956/devniel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593965956/devniel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 | Francis Shanahan[.com] ... http://t.co/SMAIBoQP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:42:16 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148035281608646660, "id_str": "148035281608646657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 | Francis Shanahan[.com] ... http://t.co/SMAIBoQP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:36:19 +0000", "from_user": "Simbiotika", "from_user_id": 104850961, "from_user_id_str": "104850961", "from_user_name": "Simbiotika", "geo": null, "id": 148033785651404800, "id_str": "148033785651404801", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1171652145/anagrama_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1171652145/anagrama_normal.jpg", "source": "<a href="http://karmacracy.com" rel="nofollow">Karmacracy</a>", "text": "Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 | Francis Shanahan[.com] - http://t.co/xf8iig0c", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:36:18 +0000", "from_user": "driveon_es", "from_user_id": 256127995, "from_user_id_str": "256127995", "from_user_name": "DriveOn", "geo": null, "id": 148033779833909250, "id_str": "148033779833909248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1252902399/twt_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1252902399/twt_normal.jpg", "source": "<a href="http://karmacracy.com" rel="nofollow">Karmacracy</a>", "text": "Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 | Francis Shanahan[.com] - http://t.co/tJ5RSsVm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:36:16 +0000", "from_user": "smediafactory", "from_user_id": 202579326, "from_user_id_str": "202579326", "from_user_name": "Social Media Factory", "geo": null, "id": 148033773542457340, "id_str": "148033773542457345", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1606139776/logo-smf-twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606139776/logo-smf-twitter_normal.png", "source": "<a href="http://karmacracy.com" rel="nofollow">Karmacracy</a>", "text": "Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 | Francis Shanahan[.com] - http://t.co/AL7AXxbG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:25:42 +0000", "from_user": "stackfeed", "from_user_id": 237310237, "from_user_id_str": "237310237", "from_user_name": "StackOverflow", "geo": null, "id": 148031115599417340, "id_str": "148031115599417344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Is there examples of nodejs+express secure user authentication: I've seen user authentication in nodepad example... http://t.co/0idX9GoU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:08:19 +0000", "from_user": "osonoi", "from_user_id": 26443917, "from_user_id_str": "26443917", "from_user_name": "\\u5C0F\\u8597\\u4E95", "geo": null, "id": 148026741003259900, "id_str": "148026741003259906", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1127805484/osonoi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1127805484/osonoi_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\\u3084\\u3063\\u3071\\u308Ahadoop\\u304B\\u3000RT @linuxfoundation: Top 10 OSS Projects of '11. http://t.co/Rzx51zyV Did your fave make the list? #linux #nodejs #puppet...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:01:01 +0000", "from_user": "stoodos", "from_user_id": 217206682, "from_user_id_str": "217206682", "from_user_name": "Stoodos", "geo": null, "id": 148024901779980300, "id_str": "148024901779980290", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1576949592/twitter_sem_ovo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576949592/twitter_sem_ovo_normal.jpg", "source": "<a href="http://www.stoodos.com" rel="nofollow">Tweetoodos</a>", "text": "Id\\u00E9ia legal: com um comando abrir diversos terminais com o projeto rodando http://t.co/dWd76Sf6 via Urubatan #soudev #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:59:02 +0000", "from_user": "NodeJSAtSO", "from_user_id": 292124941, "from_user_id_str": "292124941", "from_user_name": "Node JS @ SO", "geo": null, "id": 148024402267750400, "id_str": "148024402267750400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1336740490/sprites_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1336740490/sprites_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "How to compile NodeJS on a D-Link DNS 325 with fun_plug 0.5 installed? http://t.co/WpCjSrh3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:56:02 +0000", "from_user": "ddsakura", "from_user_id": 10463842, "from_user_id_str": "10463842", "from_user_name": "\\u8CFD\\u62C9\\u7DAD\\u2027\\u67EF\\u5357", "geo": null, "id": 148023648165445630, "id_str": "148023648165445632", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/42020492/630252_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/42020492/630252_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@clayliao nodejs\\u7B46\\u8A18\\u5BEB\\u5230 8 \\u6708\\u5C31\\u6C92\\u5728\\u5BEB\\u4E86 \\u5F88\\u671F\\u5F85\\u54A7 \\u4E0D\\u8981\\u518D\\u5FD9\\u8457\\u7D04\\u6703\\u4E86\\u5566!", "to_user": "clayliao", "to_user_id": 125693122, "to_user_id_str": "125693122", "to_user_name": "Ying-Hsiang, Liao"}, +{"created_at": "Sat, 17 Dec 2011 12:54:47 +0000", "from_user": "VictorGolias", "from_user_id": 268487866, "from_user_id_str": "268487866", "from_user_name": "Viktor Golia\\u0161", "geo": null, "id": 148023333299027970, "id_str": "148023333299027969", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1586380829/photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586380829/photo_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Optimizing #RubyOnRails applications with #NodeJS | PerfectLine Blog http://t.co/K2W2wK9s via @PerfectLine", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:53:48 +0000", "from_user": "jerrysievert", "from_user_id": 79071437, "from_user_id_str": "79071437", "from_user_name": "Jerry Sievert", "geo": null, "id": 148023085952536580, "id_str": "148023085952536577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1472035024/Screen_shot_2010-07-08_at_6.16.10_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1472035024/Screen_shot_2010-07-08_at_6.16.10_PM_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @3rdEden: \\o/ @jerrysievert just added `idle` functionality to the EventReactor module: https://t.co/oLABtXTj awesome stuff #nodejs #eventemitter", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:50:21 +0000", "from_user": "peppertw", "from_user_id": 398642585, "from_user_id_str": "398642585", "from_user_name": "peppertweet", "geo": null, "id": 148022216288768000, "id_str": "148022216288768000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1639488504/loghettino_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639488504/loghettino_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@JoL1hAHN thanks! We will release something open sourced as soon as possible! #nodejs", "to_user": "JoL1hAHN", "to_user_id": 14704550, "to_user_id_str": "14704550", "to_user_name": "Daniele Alessandri"}, +{"created_at": "Sat, 17 Dec 2011 12:44:41 +0000", "from_user": "lbdremy", "from_user_id": 37228165, "from_user_id_str": "37228165", "from_user_name": "R\\u00E9my", "geo": null, "id": 148020792062513150, "id_str": "148020792062513155", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1565685740/photo2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1565685740/photo2_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Stream a webcam using nodejs, html5 http://t.co/lOEbvaYh #in #nodejs #html5 #javascript http://t.co/aiiHtqoR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:40:12 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148019663610191870, "id_str": "148019663610191872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Stream a webcam using nodejs, html5 http://t.co/lOEbvaYh #in #nodejs #html5 #javascript http://t.co/aiiHtqoR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:29:35 +0000", "from_user": "dancerj", "from_user_id": 7647622, "from_user_id_str": "7647622", "from_user_name": "dancerj", "geo": null, "id": 148016990949347330, "id_str": "148016990949347329", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1109934873/neko_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1109934873/neko_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "1\\u6708\\u306F\\u30C7\\u30D3\\u30A2\\u30F3\\u3067\\u4F5C\\u308Bnodejs\\u30A2\\u30D6\\u30EA\\u3057\\u305F\\u3044\\u306A\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:13:22 +0000", "from_user": "Leo_lopezg", "from_user_id": 123842058, "from_user_id_str": "123842058", "from_user_name": "leandro lopez", "geo": null, "id": 148012910659112960, "id_str": "148012910659112961", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1232561117/173433_1073825249_4161880_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1232561117/173433_1073825249_4161880_n_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @doomhz: The #nodejs aesthetic http://t.co/e4Xbd17K", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:07:22 +0000", "from_user": "yamanetoshi", "from_user_id": 1081991, "from_user_id_str": "1081991", "from_user_name": "Yamane Toshiaki", "geo": null, "id": 148011398889345020, "id_str": "148011398889345024", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/54576135/glider_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/54576135/glider_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @meso: http://t.co/57mzDYxh \\u306E\\u65E5\\u672C\\u8A9E\\u30C9\\u30AD\\u30E5\\u30E1\\u30F3\\u30C8\\uFF08 http://t.co/RdocAc7f \\uFF09\\u3092\\u6700\\u65B0\\u5B89\\u5B9A\\u7248\\u3067\\u3042\\u308Bv0.6.6\\u306B\\u5BFE\\u5FDC\\u3055\\u305B\\u307E\\u3057\\u305F\\uFF08thanx to @koichik\\uFF09\\u3002 #nodejs_jp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:05:57 +0000", "from_user": "d8Pit", "from_user_id": 264394701, "from_user_id_str": "264394701", "from_user_name": "The URL Popularizer", "geo": null, "id": 148011045938675700, "id_str": "148011045938675712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317284522/logo-header_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317284522/logo-header_normal.png", "source": "<a href="http://d8p.it" rel="nofollow">d8P</a>", "text": "RT @mariandev96: All Eras wallpaper :: 1920 x 1080 :: #nodejs #mongodb #socket.io #mongoose #jquery | http://t.co/wlJ1X9cg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:05:08 +0000", "from_user": "tkc_tsuchiya", "from_user_id": 77670734, "from_user_id_str": "77670734", "from_user_name": "Takashi TSUCHIYA", "geo": null, "id": 148010838211563520, "id_str": "148010838211563520", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687127399/png_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687127399/png_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @meso: http://t.co/57mzDYxh \\u306E\\u65E5\\u672C\\u8A9E\\u30C9\\u30AD\\u30E5\\u30E1\\u30F3\\u30C8\\uFF08 http://t.co/RdocAc7f \\uFF09\\u3092\\u6700\\u65B0\\u5B89\\u5B9A\\u7248\\u3067\\u3042\\u308Bv0.6.6\\u306B\\u5BFE\\u5FDC\\u3055\\u305B\\u307E\\u3057\\u305F\\uFF08thanx to @koichik\\uFF09\\u3002 #nodejs_jp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:58:55 +0000", "from_user": "Shumpei", "from_user_id": 4327501, "from_user_id_str": "4327501", "from_user_name": "Shumpei Shiraishi", "geo": null, "id": 148009273815867400, "id_str": "148009273815867392", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/782734639/___2010-03-29_08.07__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/782734639/___2010-03-29_08.07__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @meso: http://t.co/57mzDYxh \\u306E\\u65E5\\u672C\\u8A9E\\u30C9\\u30AD\\u30E5\\u30E1\\u30F3\\u30C8\\uFF08 http://t.co/RdocAc7f \\uFF09\\u3092\\u6700\\u65B0\\u5B89\\u5B9A\\u7248\\u3067\\u3042\\u308Bv0.6.6\\u306B\\u5BFE\\u5FDC\\u3055\\u305B\\u307E\\u3057\\u305F\\uFF08thanx to @koichik\\uFF09\\u3002 #nodejs_jp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:56:00 +0000", "from_user": "rajeshpillai", "from_user_id": 9589242, "from_user_id_str": "9589242", "from_user_name": "rajeshpillai", "geo": null, "id": 148008540894789630, "id_str": "148008540894789632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/505188893/rajesh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/505188893/rajesh_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Stream a webcam using nodejs, html5 http://t.co/dCuHKh9n #in #nodejs #html5 #javascript", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:55:07 +0000", "from_user": "ajalabox", "from_user_id": 88629170, "from_user_id_str": "88629170", "from_user_name": "\\u3042\\u3058\\u3083\\u308B\\u3041", "geo": null, "id": 148008316562448400, "id_str": "148008316562448384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1686892075/ajalabox-re_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686892075/ajalabox-re_normal.jpg", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "[node.js] / \\u201Cnode.js - Folder structure for a nodejs project - Stack Overflow\\u201D http://t.co/eDsJAnTy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:37:43 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148003941039357950, "id_str": "148003941039357952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The #nodejs aesthetic http://t.co/jOyDQ4mG http://t.co/BfMopJ50", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:36:58 +0000", "from_user": "andychilton", "from_user_id": 10802172, "from_user_id_str": "10802172", "from_user_name": "andychilton", "geo": null, "id": 148003751603609600, "id_str": "148003751603609600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/87300310/andychilton_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/87300310/andychilton_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "New module for #nodejs, some connect middleware ... not big but very useful : https://t.co/mPNPBOMC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:32:16 +0000", "from_user": "mustafaakin", "from_user_id": 54159249, "from_user_id_str": "54159249", "from_user_name": "Mustafa Akin", "geo": null, "id": 148002568210092030, "id_str": "148002568210092033", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/548319203/n786576017_1398374_7727_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/548319203/n786576017_1398374_7727_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NodeJS Windows'a gelmi\\u015F, uzun s\\u00FCredir bekledi\\u011Fim \\u015Fey. Evet ben geli\\u015Ftirme ortam\\u0131 olarak Windows kullan\\u0131yorum :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:26:21 +0000", "from_user": "doomhz", "from_user_id": 16047022, "from_user_id_str": "16047022", "from_user_name": "Dumitru Glavan", "geo": null, "id": 148001076841422850, "id_str": "148001076841422848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1555311616/me_red_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555311616/me_red_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "The #nodejs aesthetic http://t.co/e4Xbd17K", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:25:42 +0000", "from_user": "mariandev96", "from_user_id": 237851147, "from_user_id_str": "237851147", "from_user_name": "Mihailescu Marian", "geo": null, "id": 148000915792736260, "id_str": "148000915792736256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1215645141/35812_134415596586693_100000547600954_264815_1932412_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1215645141/35812_134415596586693_100000547600954_264815_1932412_n_normal.jpg", "source": "<a href="http://twitpic.com" rel="nofollow">Twitpic</a>", "text": "All Eras wallpaper :: 1920 x 1080 :: #nodejs #mongodb #socket.io #mongoose #jquery http://t.co/VlGAbLd4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:25:19 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 148000818640060400, "id_str": "148000818640060417", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "classloader (0.0.3): http://t.co/hvgJyiax classloader helper for nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:09:22 +0000", "from_user": "webdev_vl", "from_user_id": 194783934, "from_user_id_str": "194783934", "from_user_name": "\\u0412\\u043B\\u0430\\u0434\\u0438\\u0432\\u043E\\u0441\\u0442\\u043E\\u043A - \\u043B\\u0443\\u0447\\u0448\\u0438\\u0439", "geo": null, "id": 147996805605498880, "id_str": "147996805605498880", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1507413917/0_6269d_d1c11071_XL_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1507413917/0_6269d_d1c11071_XL_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "\\u041F\\u043E\\u0441\\u043E\\u0432\\u0435\\u0442\\u0443\\u0439\\u0442\\u0435, \\u043F\\u043E\\u0436\\u0430\\u043B\\u0443\\u0439\\u0441\\u0442\\u0430, \\u0445\\u043E\\u0441\\u0442\\u0438\\u043D\\u0433 \\u0441 #nodejs?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:51:50 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 147992393675849730, "id_str": "147992393675849728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @ifreenow NodeJsCommunity: How to develop porn website with NodeJS http://t.co/T5FPk2Xv http://t.co/8z85iO8w", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:51:50 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 147992392249774080, "id_str": "147992392249774081", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @mattwalters5 @ThatJoeG http://t.co/96z0QVj5 Lookadat. #nodejs Runs on Windows and Azure.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:51:50 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 147992391050215420, "id_str": "147992391050215424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @ifreenow NodeJsCommunity: Node.js tools and resources #nodejs http://t.co/BIOhAKmv http://t.co/z3cWtKPU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:46:23 +0000", "from_user": "ifreenow", "from_user_id": 179905855, "from_user_id_str": "179905855", "from_user_name": "Kun Wang", "geo": null, "id": 147991021836435460, "id_str": "147991021836435457", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1107796953/11_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1107796953/11_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: How to develop porn website with NodeJS http://t.co/Ww2d5pBM http://t.co/nlh9Or37", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:31:30 +0000", "from_user": "asip2k25", "from_user_id": 20358870, "from_user_id_str": "20358870", "from_user_name": "Yasumasa Ashida", "geo": null, "id": 147987274729140220, "id_str": "147987274729140224", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1141034832/0030a3ec-88a2-4249-92c9-77a890017c60_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1141034832/0030a3ec-88a2-4249-92c9-77a890017c60_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @koichik: API \\u30C9\\u30AD\\u30E5\\u30E1\\u30F3\\u30C8\\u3078\\u306E\\u76F4\\u30EA\\u30F3\\u3070\\u304B\\u308A\\u4F7F\\u308F\\u308C\\u3066\\u6C17\\u3065\\u304B\\u308C\\u306A\\u3044\\u6C17\\u304C\\u3059\\u308B\\u3051\\u3069\\uFF0C\\u30EA\\u30CB\\u30E5\\u30FC\\u30A2\\u30EB\\u3057\\u305F http://t.co/WHP7CeoF \\u306B\\u5BFE\\u5FDC\\u3057\\u305F\\u3093\\u3060\\u304B\\u3089\\u306D\\uFF01 http://t.co/de3mGo6y #nodejs_jp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:31:02 +0000", "from_user": "asip2k25", "from_user_id": 20358870, "from_user_id_str": "20358870", "from_user_name": "Yasumasa Ashida", "geo": null, "id": 147987156810465280, "id_str": "147987156810465280", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1141034832/0030a3ec-88a2-4249-92c9-77a890017c60_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1141034832/0030a3ec-88a2-4249-92c9-77a890017c60_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @meso: http://t.co/57mzDYxh \\u306E\\u65E5\\u672C\\u8A9E\\u30C9\\u30AD\\u30E5\\u30E1\\u30F3\\u30C8\\uFF08 http://t.co/RdocAc7f \\uFF09\\u3092\\u6700\\u65B0\\u5B89\\u5B9A\\u7248\\u3067\\u3042\\u308Bv0.6.6\\u306B\\u5BFE\\u5FDC\\u3055\\u305B\\u307E\\u3057\\u305F\\uFF08thanx to @koichik\\uFF09\\u3002 #nodejs_jp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:29:06 +0000", "from_user": "koichik", "from_user_id": 14453603, "from_user_id_str": "14453603", "from_user_name": "koichik", "geo": null, "id": 147986670116016130, "id_str": "147986670116016128", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1399991501/hs-2010-26-a-small_web_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1399991501/hs-2010-26-a-small_web_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "API \\u30C9\\u30AD\\u30E5\\u30E1\\u30F3\\u30C8\\u3078\\u306E\\u76F4\\u30EA\\u30F3\\u3070\\u304B\\u308A\\u4F7F\\u308F\\u308C\\u3066\\u6C17\\u3065\\u304B\\u308C\\u306A\\u3044\\u6C17\\u304C\\u3059\\u308B\\u3051\\u3069\\uFF0C\\u30EA\\u30CB\\u30E5\\u30FC\\u30A2\\u30EB\\u3057\\u305F http://t.co/WHP7CeoF \\u306B\\u5BFE\\u5FDC\\u3057\\u305F\\u3093\\u3060\\u304B\\u3089\\u306D\\uFF01 http://t.co/de3mGo6y #nodejs_jp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:26:46 +0000", "from_user": "koichik", "from_user_id": 14453603, "from_user_id_str": "14453603", "from_user_name": "koichik", "geo": null, "id": 147986083915894800, "id_str": "147986083915894784", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1399991501/hs-2010-26-a-small_web_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1399991501/hs-2010-26-a-small_web_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @meso: http://t.co/57mzDYxh \\u306E\\u65E5\\u672C\\u8A9E\\u30C9\\u30AD\\u30E5\\u30E1\\u30F3\\u30C8\\uFF08 http://t.co/RdocAc7f \\uFF09\\u3092\\u6700\\u65B0\\u5B89\\u5B9A\\u7248\\u3067\\u3042\\u308Bv0.6.6\\u306B\\u5BFE\\u5FDC\\u3055\\u305B\\u307E\\u3057\\u305F\\uFF08thanx to @koichik\\uFF09\\u3002 #nodejs_jp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:24:28 +0000", "from_user": "jsgeneve", "from_user_id": 404035068, "from_user_id_str": "404035068", "from_user_name": "Javascript Gen\\u00E8ve", "geo": null, "id": 147985506288926720, "id_str": "147985506288926720", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1620267028/twitter_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620267028/twitter_normal.gif", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Processus de workflow - y compris de la vie r\\u00E9elle - avec #nodejs http://t.co/sNaxL5N3 // Je vais l'essayer celui-ci", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:21:39 +0000", "from_user": "mattwalters5", "from_user_id": 34128038, "from_user_id_str": "34128038", "from_user_name": "Matt Walters", "geo": null, "id": 147984798135226370, "id_str": "147984798135226368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1460915273/c250f0430c58d68fe3d11f1061acef29_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1460915273/c250f0430c58d68fe3d11f1061acef29_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@ThatJoeG http://t.co/TQ43kDYd Lookadat. #nodejs Runs on Windows and Azure.", "to_user": "ThatJoeG", "to_user_id": 36230107, "to_user_id_str": "36230107", "to_user_name": "Joe Gershgorin"}, +{"created_at": "Sat, 17 Dec 2011 10:21:24 +0000", "from_user": "ifreenow", "from_user_id": 179905855, "from_user_id_str": "179905855", "from_user_name": "Kun Wang", "geo": null, "id": 147984733744267260, "id_str": "147984733744267265", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1107796953/11_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1107796953/11_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Node.js tools and resources #nodejs http://t.co/zX6zEqz7 http://t.co/yKJMrXyk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:19:37 +0000", "from_user": "o0h_", "from_user_id": 100716906, "from_user_id_str": "100716906", "from_user_name": "\\u4ECA\\u65E5\\u3082\\u8AB0\\u304B\\u306E\\u306B\\u3061\\u3088\\u3046\\u3073", "geo": null, "id": 147984284739833860, "id_str": "147984284739833857", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1626505011/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626505011/image_normal.jpg", "source": "<a href="http://worris3.sakura.ne.jp/HatenaBookmarkMultiPost/" rel="nofollow">\\u306F\\u3066\\u30D6\\u30C4\\u30A4\\u30FC\\u30C8</a>", "text": "[B!] node.js http://t.co/eLDLOgAy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:19:33 +0000", "from_user": "o0h_", "from_user_id": 100716906, "from_user_id_str": "100716906", "from_user_name": "\\u4ECA\\u65E5\\u3082\\u8AB0\\u304B\\u306E\\u306B\\u3061\\u3088\\u3046\\u3073", "geo": null, "id": 147984268520472580, "id_str": "147984268520472576", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1626505011/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626505011/image_normal.jpg", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "[node.js][JS] / \\u201Cnode.js\\u201D http://t.co/rKwcd24B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:16:04 +0000", "from_user": "meso", "from_user_id": 4943161, "from_user_id_str": "4943161", "from_user_name": "Toshihiro Shimizu", "geo": null, "id": 147983391076270080, "id_str": "147983391076270081", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1547999114/photo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1547999114/photo_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/57mzDYxh \\u306E\\u65E5\\u672C\\u8A9E\\u30C9\\u30AD\\u30E5\\u30E1\\u30F3\\u30C8\\uFF08 http://t.co/RdocAc7f \\uFF09\\u3092\\u6700\\u65B0\\u5B89\\u5B9A\\u7248\\u3067\\u3042\\u308Bv0.6.6\\u306B\\u5BFE\\u5FDC\\u3055\\u305B\\u307E\\u3057\\u305F\\uFF08thanx to @koichik\\uFF09\\u3002 #nodejs_jp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:04:14 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147980413783113730, "id_str": "147980413783113728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Workflow.nodejs - GitHub #javascript http://t.co/IvIr2WCY http://t.co/Nm4dIqkx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:01:28 +0000", "from_user": "jsgeneve", "from_user_id": 404035068, "from_user_id_str": "404035068", "from_user_name": "Javascript Gen\\u00E8ve", "geo": null, "id": 147979715314057200, "id_str": "147979715314057216", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1620267028/twitter_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620267028/twitter_normal.gif", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Feedability remplace les extraits d'articles des flux RSS par leurs versions compl\\u00E8tes http://t.co/Yw1cV63N - Info: http://t.co/NizhdDdt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Sat, 17 Dec 2011 10:01:15 +0000", "from_user": "nkpun", "from_user_id": 45023223, "from_user_id_str": "45023223", "from_user_name": "nilpun", "geo": null, "id": 147979663904473100, "id_str": "147979663904473089", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1644311069/nil-pun_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644311069/nil-pun_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "node blog http://t.co/c5j9hnOt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:57:14 +0000", "from_user": "Evangenieur", "from_user_id": 21945870, "from_user_id_str": "21945870", "from_user_name": "Evan Genieur", "geo": null, "id": 147978653295321100, "id_str": "147978653295321088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/83725129/gunnm2_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/83725129/gunnm2_small_normal.jpg", "source": "<a href="http://www.scoop.it" rel="nofollow">Scoop.it</a>", "text": "Workflow.nodejs - GitHub #javascript http://t.co/eSvZOrIB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:56:12 +0000", "from_user": "dvbportal", "from_user_id": 19032384, "from_user_id_str": "19032384", "from_user_name": "Hans Schroeder", "geo": null, "id": 147978392204083200, "id_str": "147978392204083200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/409729378/real-me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/409729378/real-me_normal.jpg", "source": "<a href="http://posterous.com" rel="nofollow">Posterous</a>", "text": "Thanks for making it available. Open Source, f. y. http://t.co/uqwTQnZU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:53:13 +0000", "from_user": "ccsakuweb", "from_user_id": 15956690, "from_user_id_str": "15956690", "from_user_name": "Patricia Juarez ", "geo": null, "id": 147977641046192130, "id_str": "147977641046192128", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627951502/2336038309_901f1e3c5f_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627951502/2336038309_901f1e3c5f_o_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Reuni\\u00F3n acerca de nodejs y heroku en madrid, tambien se puede acceder en vivo por internet http://t.co/QknsWIJz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:48:16 +0000", "from_user": "azenned", "from_user_id": 196234589, "from_user_id_str": "196234589", "from_user_name": "Zenned Abderrazak", "geo": null, "id": 147976396810108930, "id_str": "147976396810108928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1368319751/49144_1805169896_5760_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1368319751/49144_1805169896_5760_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: Imagine http://t.co/98HBW2Xi in real-time across a whole data center of production #nodejs processes sampling both JS and C functions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:32:57 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147972542437662720, "id_str": "147972542437662720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Feedability : #javascript #Nodejs server that uses Readability to replace excerpts in feeds with the full artic... http://t.co/VkZkXTju", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:25:47 +0000", "from_user": "user24", "from_user_id": 14627664, "from_user_id_str": "14627664", "from_user_name": "Howard Yeend", "geo": null, "id": 147970735548284930, "id_str": "147970735548284928", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1142187736/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1142187736/avatar_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @fadrizul: Ya still using PHP? Old skool brah~ #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:21:30 +0000", "from_user": "Evangenieur", "from_user_id": 21945870, "from_user_id_str": "21945870", "from_user_name": "Evan Genieur", "geo": null, "id": 147969657524076540, "id_str": "147969657524076544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/83725129/gunnm2_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/83725129/gunnm2_small_normal.jpg", "source": "<a href="http://www.scoop.it" rel="nofollow">Scoop.it</a>", "text": "Feedability : #javascript #Nodejs server that uses Readability to replace excerpts in feeds with the full articles. http://t.co/8zw6GOtt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:20:29 +0000", "from_user": "3rdEden", "from_user_id": 14350255, "from_user_id_str": "14350255", "from_user_name": "Arnout Kazemier", "geo": null, "id": 147969401512144900, "id_str": "147969401512144896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "\\o/ @jerrysievert just added `idle` functionality to the EventReactor module: https://t.co/oLABtXTj awesome stuff #nodejs #eventemitter", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:11:35 +0000", "from_user": "fadrizul", "from_user_id": 28751049, "from_user_id_str": "28751049", "from_user_name": "Fadrizul H.", "geo": +{"coordinates": [3.117,101.7072], "type": "Point"}, "id": 147967162601062400, "id_str": "147967162601062400", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1549919280/580028.img.small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1549919280/580028.img.small_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Ya still using PHP? Old skool brah~ #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:08:21 +0000", "from_user": "kaihendry", "from_user_id": 14742294, "from_user_id_str": "14742294", "from_user_name": "Kai Hendry", "geo": null, "id": 147966350986453000, "id_str": "147966350986452994", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700146448/crushed_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700146448/crushed_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Yay, new nodejs package on Archlinux has docs file:///usr/share/doc/nodejs/index.html", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:00:17 +0000", "from_user": "rtweed", "from_user_id": 17843859, "from_user_id_str": "17843859", "from_user_name": "Rob Tweed", "geo": null, "id": 147964319605342200, "id_str": "147964319605342208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1398354510/me_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1398354510/me_normal.png", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "Those who attended my #digitalpond talk on Node.js in healthcare may be interested in this: http://t.co/PW5XMbwI #nodejs #vista", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:46:05 +0000", "from_user": "jsgeneve", "from_user_id": 404035068, "from_user_id_str": "404035068", "from_user_name": "Javascript Gen\\u00E8ve", "geo": null, "id": 147960744942641150, "id_str": "147960744942641152", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1620267028/twitter_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620267028/twitter_normal.gif", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Ecrit en 2009 d\\u00E9j\\u00E0: NodeJS + WebSockets pour lire un stream public de Twitter filtr\\u00E9 par mot cl\\u00E9 http://t.co/XLZ10YCi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:32:03 +0000", "from_user": "jsgeneve", "from_user_id": 404035068, "from_user_id_str": "404035068", "from_user_name": "Javascript Gen\\u00E8ve", "geo": null, "id": 147957215729426430, "id_str": "147957215729426433", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1620267028/twitter_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620267028/twitter_normal.gif", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Il sont vraiment... diff\\u00E9rents les japonnais: Cr\\u00E9er un site \\u00E9rotique avec #NodeJS http://t.co/UNvPPIG2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:23:43 +0000", "from_user": "Evangenieur", "from_user_id": 21945870, "from_user_id_str": "21945870", "from_user_name": "Evan Genieur", "geo": null, "id": 147955115687550980, "id_str": "147955115687550976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/83725129/gunnm2_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/83725129/gunnm2_small_normal.jpg", "source": "<a href="http://www.scoop.it" rel="nofollow">Scoop.it</a>", "text": "#JavaScript UIs with Sammy, Backbone and State Machines | Caffeinehit Ltd, London (Shoreditch) #nodejs http://t.co/ztEmLqPc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:23:34 +0000", "from_user": "katoy", "from_user_id": 4873281, "from_user_id_str": "4873281", "from_user_name": "youichi kato", "geo": null, "id": 147955079012565000, "id_str": "147955079012564992", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/21278082/fish_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/21278082/fish_normal.jpg", "source": "<a href="http://www.shareaholic.com" rel="nofollow">shareaholic app</a>", "text": "\\u56FD\\u969B\\u7D4C\\u6E08\\u65B0\\u805E\\uFF08Open Source Project\\uFF09: node.js express ejs \\u3067UNIX\\u306E\\u30B3\\u30DE\\u30F3\\u30C9\\u5B9F\\u884C\\u30C4\\u30FC\\u30EB\\u3092\\u4F5C\\u3063\\u3066\\u307F\\u305F\\uFF01 - http://t.co/5EiQQVyW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:21:23 +0000", "from_user": "Evangenieur", "from_user_id": 21945870, "from_user_id_str": "21945870", "from_user_name": "Evan Genieur", "geo": null, "id": 147954531160956930, "id_str": "147954531160956929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/83725129/gunnm2_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/83725129/gunnm2_small_normal.jpg", "source": "<a href="http://www.scoop.it" rel="nofollow">Scoop.it</a>", "text": "Sammy.js / A Small Web Framework with Class / RESTFul Evented #JavaScript #nodejs http://t.co/rxRGR6L3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:18:37 +0000", "from_user": "ogomogo", "from_user_id": 9487402, "from_user_id_str": "9487402", "from_user_name": "Oguz Karaesmen", "geo": null, "id": 147953832108892160, "id_str": "147953832108892160", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1415902096/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1415902096/profile_normal.jpg", "source": "<a href="https://wiki.ubuntu.com/Gwibber" rel="nofollow">Ubuntu</a>", "text": "RT @mirat: Tornado'mu Node.js mi? http://t.co/CrwawKpI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:09:44 +0000", "from_user": "DrDhodz", "from_user_id": 287479847, "from_user_id_str": "287479847", "from_user_name": "James Douglas", "geo": null, "id": 147951599808032770, "id_str": "147951599808032768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1531207315/DrDhodz_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1531207315/DrDhodz_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Testing node.js modules with Travis CI: pYou have written a node.js module lately? It has a\\u2026 http://t.co/qHC0QwFR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:01:44 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147949583509626880, "id_str": "147949583509626880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "How to develop porn website with NodeJS http://t.co/Ww2d5pBM http://t.co/nlh9Or37", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:50:51 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 147946845526695940, "id_str": "147946845526695938", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @datakurre EsaMatti: We just released the code of my first project at @opinsys http://t.co/l9idTTik #nodejs #html5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:50:51 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 147946844171939840, "id_str": "147946844171939841", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @liuming How to develop porn website with NodeJS http://t.co/T5FPk2Xv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:50:50 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 147946842963972100, "id_str": "147946842963972097", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @kkasravi Write your shell scripts in JavaScript, via Node.js http://t.co/Mohn0yTG via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:43:00 +0000", "from_user": "datakurre", "from_user_id": 97673403, "from_user_id_str": "97673403", "from_user_name": "Asko Soukka", "geo": null, "id": 147944870487666700, "id_str": "147944870487666688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1424867723/asko_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1424867723/asko_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @EsaMatti: We just released the code of my first project at @opinsys http://t.co/wTaaVIAs #nodejs #html5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:38:11 +0000", "from_user": "liuming", "from_user_id": 10324222, "from_user_id_str": "10324222", "from_user_name": "Raymond", "geo": null, "id": 147943657591410700, "id_str": "147943657591410688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1453692608/54S8miUp_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1453692608/54S8miUp_normal", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "How to develop porn website with NodeJS http://t.co/2XOquaBN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:33:14 +0000", "from_user": "kkasravi", "from_user_id": 9169892, "from_user_id_str": "9169892", "from_user_name": "kkasravi", "geo": null, "id": 147942411203649540, "id_str": "147942411203649536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "Write your shell scripts in JavaScript, via Node.js http://t.co/HCr8Jc65 via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:32:38 +0000", "from_user": "GeekDani", "from_user_id": 65526437, "from_user_id_str": "65526437", "from_user_name": "Dani Kim", "geo": null, "id": 147942263106969600, "id_str": "147942263106969600", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662698421/DSC04650_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662698421/DSC04650_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\\uC624\\uB298\\uC740 WebSocket , NodeJS, memcached, BDB \\uB97C \\uC798 \\uC870\\uD569\\uD574\\uC11C \\uD504\\uB85C\\uD0C0\\uC774\\uD551 \\uD574\\uBD10\\uC57C\\uC9C0. \\uC8FC\\uB9D0\\uC5D0 \\uC880\\uC529 \\uC0DD\\uAC01\\uB0A0 \\uB54C \\u314B\\u314B Beanstalkd \\uB3C4 \\uC5EE\\uC5B4\\uBCFC\\uAE4C\\uB098", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:32:28 +0000", "from_user": "ngelux", "from_user_id": 313979804, "from_user_id_str": "313979804", "from_user_name": "\\uAE40\\uC815\\uC218", "geo": null, "id": 147942219008065540, "id_str": "147942219008065536", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1392532101/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1392532101/image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Nodejs 0.6.6 Released - JavaScript #xespresso http://t.co/6dkN7vy6 @xespressonet \\uC5D0\\uC11C", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:26:13 +0000", "from_user": "javascriptalert", "from_user_id": 274501532, "from_user_id_str": "274501532", "from_user_name": "javascript", "geo": null, "id": 147940645879816200, "id_str": "147940645879816192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1304350707/___normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1304350707/___normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Node.js modules you should know about: socket.io - good coders code, great reuse: http://t.co/cbN0XIeK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:23:49 +0000", "from_user": "NodeHispano", "from_user_id": 414112311, "from_user_id_str": "414112311", "from_user_name": "Node.js Hispano", "geo": null, "id": 147940044857020400, "id_str": "147940044857020416", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1642679301/logo_nodehispano_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642679301/logo_nodehispano_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @chrismatthieu: Nice Spanish blog post covering @nodester - Publicando tu aplicaci\\u00F3n #nodejs http://t.co/e9ZWnEjc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:18:34 +0000", "from_user": "chrismatthieu", "from_user_id": 13604142, "from_user_id_str": "13604142", "from_user_name": "Chris Matthieu", "geo": null, "id": 147938722715926530, "id_str": "147938722715926528", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/918916153/SuperChrisSmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/918916153/SuperChrisSmall_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Nice Spanish blog post covering @nodester - Publicando tu aplicaci\\u00F3n #nodejs http://t.co/e9ZWnEjc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:15:45 +0000", "from_user": "Yvonne_Reed", "from_user_id": 342745553, "from_user_id_str": "342745553", "from_user_name": "Yvonne Reed", "geo": null, "id": 147938012863537150, "id_str": "147938012863537152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1461818915/859856_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1461818915/859856_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Node.js in Windows Azure, To the Cloud and Beyond! - Windows ... http://t.co/KgP8OHqP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:14:32 +0000", "from_user": "hikaruworld", "from_user_id": 4318231, "from_user_id_str": "4318231", "from_user_name": "hikaru world", "geo": null, "id": 147937707442716670, "id_str": "147937707442716672", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/332815632/icon_128_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/332815632/icon_128_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "nodejs\\u3067exports\\u3057\\u3066\\u3044\\u306A\\u3044function\\u306E\\u30C6\\u30B9\\u30C8\\u3092\\u66F8\\u304D\\u305F\\u3044\\u3093\\u3060\\u304C\\u3055\\u3066\\u3069\\u3046\\u3057\\u305F\\u3082\\u306E\\u304B\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:14:26 +0000", "from_user": "tnantoka", "from_user_id": 13549012, "from_user_id_str": "13549012", "from_user_name": "tnantoka (Born Neet)", "geo": null, "id": 147937679802249200, "id_str": "147937679802249216", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1557256276/twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1557256276/twitter_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Sublime Text 2\\u3068IntelliJ IDEA\\u77E5\\u3089\\u306A\\u304B\\u3063\\u305F\\u3001\\u3061\\u3087\\u3063\\u3068\\u8ABF\\u3079\\u3066\\u307F\\u308B [nodejs] what is your favorite JS editor? http://t.co/KKzlRu0g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:02:55 +0000", "from_user": "NodeHispano", "from_user_id": 414112311, "from_user_id_str": "414112311", "from_user_name": "Node.js Hispano", "geo": null, "id": 147934782263787520, "id_str": "147934782263787520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1642679301/logo_nodehispano_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642679301/logo_nodehispano_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT \\u201C@carlosro_ec: Thank's @nodester I love #NodeJS and now I love your services #happygeek\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:01:20 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147934382890561540, "id_str": "147934382890561536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @JeromeParadis: @jamesaduncan one of @joyent's 2 CTOs talking at the Nodejs/mongodb/redis Hackathon. http://t.co/as9hQrX2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 06:58:23 +0000", "from_user": "carlosro_ec", "from_user_id": 19497949, "from_user_id_str": "19497949", "from_user_name": "Carlos G. Rodr\\u00EDguez", "geo": null, "id": 147933642231005200, "id_str": "147933642231005184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1604968592/asd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1604968592/asd_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Thank's @nodester I love #NodeJS and now I love your services #happygeek", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 06:58:04 +0000", "from_user": "raycmorgan", "from_user_id": 102863, "from_user_id_str": "102863", "from_user_name": "Ray Morgan", "geo": null, "id": 147933563289997300, "id_str": "147933563289997312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/120180520/n1234501486_30142294_7954.jpg_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/120180520/n1234501486_30142294_7954.jpg_normal.jpeg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "I can't wait for #nodejs to be considered \"legacy\" so I can be the grumpy old man stuck in his ways.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 06:49:47 +0000", "from_user": "Nodester", "from_user_id": 240751001, "from_user_id_str": "240751001", "from_user_name": "Nodester", "geo": null, "id": 147931478234370050, "id_str": "147931478234370049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Nice! RT @mechanicles: It's very easy to deploy your nodejs app on @Nodester. Enjoyed it. http://auction_system.nodester.com", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 06:36:44 +0000", "from_user": "khaschuluu", "from_user_id": 345055962, "from_user_id_str": "345055962", "from_user_name": "Khaschuluu", "geo": null, "id": 147928192982843400, "id_str": "147928192982843393", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1629973628/IMG_20111109_113603_edit0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629973628/IMG_20111109_113603_edit0_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Node.js's Official Web Site Gets a Redesign http://t.co/nDblbEcc http://t.co/SqGiKOk9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 06:31:47 +0000", "from_user": "khaschuluu", "from_user_id": 345055962, "from_user_id_str": "345055962", "from_user_name": "Khaschuluu", "geo": null, "id": 147926948797087740, "id_str": "147926948797087746", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1629973628/IMG_20111109_113603_edit0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629973628/IMG_20111109_113603_edit0_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: http://t.co/5rZ6knsj runs on nodejs, 2-10x more performance then python: http://t.co/pDgi9sDK http://t.co/NB83QlOE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 06:31:41 +0000", "from_user": "itsatony", "from_user_id": 149881227, "from_user_id_str": "149881227", "from_user_name": "Toni Wagner", "geo": null, "id": 147926924063293440, "id_str": "147926924063293442", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1183369631/fadeeabe8427f1823ab2c89fa8de1af8_1__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1183369631/fadeeabe8427f1823ab2c89fa8de1af8_1__normal.png", "source": "<a href="http://mobileways.de/gravity" rel="nofollow">Gravity!</a>", "text": "RT @uma_kanth: Wowww, #Windows #Azure Platform now supports Node.Js #eSparks #NodeJS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 06:09:29 +0000", "from_user": "mechanicles", "from_user_id": 10389852, "from_user_id_str": "10389852", "from_user_name": "Santosh Wadghule", "geo": null, "id": 147921337409736700, "id_str": "147921337409736704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1684526489/my2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684526489/my2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "It's very easy to deploy your nodejs app on @Nodester. Enjoyed it. http://auction_system.nodester.com", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:53:02 +0000", "from_user": "leon_androide", "from_user_id": 338558803, "from_user_id_str": "338558803", "from_user_name": "leon", "geo": null, "id": 147917197010931700, "id_str": "147917197010931713", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670715658/country-unix_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670715658/country-unix_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u00BFQuieres instalar #nodejs en ubuntu o distros derivas de ubuntu?\\nInstalarlo es f\\u00E1cil \\u00A1\\u00A1\\u00A1 http://t.co/pdYrFz55", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:43:22 +0000", "from_user": "uma_kanth", "from_user_id": 11984102, "from_user_id_str": "11984102", "from_user_name": "UK Gupta", "geo": +{"coordinates": [12.9882,77.733], "type": "Point"}, "id": 147914765082177540, "id_str": "147914765082177538", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690514941/Copy__2__of_RFC_Mask_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690514941/Copy__2__of_RFC_Mask_normal.jpg", "source": "<a href="http://mobileways.de/gravity" rel="nofollow">Gravity!</a>", "text": "Wowww, #Windows #Azure Platform now supports Node.Js #eSparks #NodeJS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:34:33 +0000", "from_user": "earlyster", "from_user_id": 44763137, "from_user_id_str": "44763137", "from_user_name": "Justin Early", "geo": null, "id": 147912543652941820, "id_str": "147912543652941824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/250338301/Picture1_normal.GIF", "profile_image_url_https": "https://si0.twimg.com/profile_images/250338301/Picture1_normal.GIF", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: #nodejs #eclipse plugin with code assist - now we're talking: http://t.co/6F2Zr1z2 http://t.co/arXCC8DT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:26:31 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147910523562901500, "id_str": "147910523562901504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Streaming de Twitter: \\u2192 node.js \\u2192 WebSocket \\u2192 HTML5 Browser y el ejemplito http://t.co/Mvsbr4OC http://t.co/680eUoUr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:06:24 +0000", "from_user": "clozed2u", "from_user_id": 48272192, "from_user_id_str": "48272192", "from_user_name": "Lattapon Yodsuwan", "geo": null, "id": 147905462321426430, "id_str": "147905462321426432", "iso_language_code": "th", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1514728818/207815_145056845561702_100001721625589_261005_1759641_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1514728818/207815_145056845561702_100001721625589_261005_1759641_n_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @llun: nodejs.org \\u0E2B\\u0E19\\u0E49\\u0E32\\u0E15\\u0E32\\u0E40\\u0E1B\\u0E25\\u0E35\\u0E48\\u0E22\\u0E19\\u0E44\\u0E1B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:05:57 +0000", "from_user": "manatsawin", "from_user_id": 12738602, "from_user_id_str": "12738602", "from_user_name": "\\u0E21\\u0E19\\u0E2A\\u0E27", "geo": null, "id": 147905349737910270, "id_str": "147905349737910272", "iso_language_code": "th", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698266811/mesky_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698266811/mesky_normal", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @llun: nodejs.org \\u0E2B\\u0E19\\u0E49\\u0E32\\u0E15\\u0E32\\u0E40\\u0E1B\\u0E25\\u0E35\\u0E48\\u0E22\\u0E19\\u0E44\\u0E1B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:04:54 +0000", "from_user": "llun", "from_user_id": 12981882, "from_user_id_str": "12981882", "from_user_name": "llun:/n\\u00E6t/ not /l\\u028An/", "geo": null, "id": 147905085488369660, "id_str": "147905085488369664", "iso_language_code": "th", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1607061202/222354_10150168776961707_696331706_7129266_1795075_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607061202/222354_10150168776961707_696331706_7129266_1795075_n_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "nodejs.org \\u0E2B\\u0E19\\u0E49\\u0E32\\u0E15\\u0E32\\u0E40\\u0E1B\\u0E25\\u0E35\\u0E48\\u0E22\\u0E19\\u0E44\\u0E1B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:51:10 +0000", "from_user": "JavascriptNews", "from_user_id": 199621524, "from_user_id_str": "199621524", "from_user_name": "Javascript News", "geo": null, "id": 147901625351155700, "id_str": "147901625351155712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1161901944/skynewtAvatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1161901944/skynewtAvatar_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @nodenpm jcrawler (0.2.0): http://t.co/m0SmyDKa Crawler is a web spider written with Nodejs. It gives you t... http://t.co/wxcHQB2n", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:50:07 +0000", "from_user": "CakePHP_HBFeed", "from_user_id": 264768808, "from_user_id_str": "264768808", "from_user_name": "CakePHP\\u95A2\\u9023feed\\u3068\\u306F\\u3066\\u30D6", "geo": null, "id": 147901364238942200, "id_str": "147901364238942208", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "13:29 Video: CakePHP and Node.js | Web Builder Zone http://t.co/PoMqneFF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:49:54 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 147901308031090700, "id_str": "147901308031090688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @C0D34U5 Streaming de Twitter: \\u2192 node.js \\u2192 WebSocket \\u2192 HTML5 Browser y el ejemplito http://t.co/ndH9xLB0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:49:54 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 147901306781171700, "id_str": "147901306781171712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @nodenpm jcrawler (0.2.0): http://t.co/6PUUsXtV Crawler is a web spider written with Nodejs. It gives you the full power of jQuery o...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:49:53 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 147901305233485820, "id_str": "147901305233485824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @nodenpm whiskey (0.6.3): http://t.co/ODQQdf4u A simple test runner for NodeJS applications.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:39:48 +0000", "from_user": "C0D34U5", "from_user_id": 324763817, "from_user_id_str": "324763817", "from_user_name": "Douglas Bola\\u00F1os \\u2620 \\u2623", "geo": null, "id": 147898764991021060, "id_str": "147898764991021056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1567039277/DSC03808_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1567039277/DSC03808_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Streaming de Twitter: \\u2192 node.js \\u2192 WebSocket \\u2192 HTML5 Browser y el ejemplito http://t.co/l3YV1RLz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:35:19 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 147897639445336060, "id_str": "147897639445336064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "jcrawler (0.2.0): http://t.co/GfbYIDni Crawler is a web spider written with Nodejs. It gives you the full power of jQuery o...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:34:30 +0000", "from_user": "donnfelker", "from_user_id": 14393851, "from_user_id_str": "14393851", "from_user_name": "Donn Felker", "geo": null, "id": 147897434817830900, "id_str": "147897434817830912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1514965492/Photo_on_2011-08-26_at_15.28_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1514965492/Photo_on_2011-08-26_at_15.28_2_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Done coding Android two hours ago. Just finished NodeJs/mongodb work. Wish I had a Xbox, I'd relax doing that. :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:32:19 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 147896884634206200, "id_str": "147896884634206208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "whiskey (0.6.3): http://t.co/9fLjRfcl A simple test runner for NodeJS applications.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:31:38 +0000", "from_user": "roofdier", "from_user_id": 25777201, "from_user_id_str": "25777201", "from_user_name": "Henoc Dz", "geo": null, "id": 147896709798834180, "id_str": "147896709798834176", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689331793/SAM_1070twt_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689331793/SAM_1070twt_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@ealexgg No hab\\u00EDa investigado de NodeJS hasta hoy y es un relajo! as\\u00ED que no :P", "to_user": "ealexgg", "to_user_id": 124875302, "to_user_id_str": "124875302", "to_user_name": "Alex Gallardo ", "in_reply_to_status_id": 147896623077396480, "in_reply_to_status_id_str": "147896623077396480"}, +{"created_at": "Sat, 17 Dec 2011 04:29:47 +0000", "from_user": "k33g_org", "from_user_id": 86916604, "from_user_id_str": "86916604", "from_user_name": "Philippe Charri\\u00E8re", "geo": null, "id": 147896247670419460, "id_str": "147896247670419456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1449184169/k33g.org.min_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1449184169/k33g.org.min_normal.png", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "Write your shell scripts in JavaScript, via Node.js http://t.co/DuLlta64", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:27:24 +0000", "from_user": "C0D34U5", "from_user_id": 324763817, "from_user_id_str": "324763817", "from_user_name": "Douglas Bola\\u00F1os \\u2620 \\u2623", "geo": null, "id": 147895648061108220, "id_str": "147895648061108224", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1567039277/DSC03808_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1567039277/DSC03808_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Simple chat for Node.js - http://t.co/CaAsRU1U http://t.co/NJMS4dhY - https://t.co/rzPYFtkT #mejorandojs (CC @cvander)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:24:28 +0000", "from_user": "C0D34U5", "from_user_id": 324763817, "from_user_id_str": "324763817", "from_user_name": "Douglas Bola\\u00F1os \\u2620 \\u2623", "geo": null, "id": 147894909326737400, "id_str": "147894909326737408", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1567039277/DSC03808_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1567039277/DSC03808_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "#NodeJS de verdad que me saca lagrimas de felicidad, demasiado bueno", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:21:25 +0000", "from_user": "C0D34U5", "from_user_id": 324763817, "from_user_id_str": "324763817", "from_user_name": "Douglas Bola\\u00F1os \\u2620 \\u2623", "geo": null, "id": 147894142612144130, "id_str": "147894142612144129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1567039277/DSC03808_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1567039277/DSC03808_normal.JPG", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "RT @dreur: Inaugural: Twitter streaming with node.js and HTML5 WebSockets http://t.co/2XIzEQRR - via delicious", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:19:15 +0000", "from_user": "jbueza", "from_user_id": 141423083, "from_user_id_str": "141423083", "from_user_name": "Jaime Bueza", "geo": null, "id": 147893594089463800, "id_str": "147893594089463809", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "#LiveStream is hiring #NodeJS software engineers! http://t.co/VwPKkysc -- Excellent choice of technology ;) but are they using #Azure? :p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:15:22 +0000", "from_user": "jbueza", "from_user_id": 141423083, "from_user_id_str": "141423083", "from_user_name": "Jaime Bueza", "geo": null, "id": 147892617974255600, "id_str": "147892617974255616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Totally hacking together a solution for running #NodeJS + #VisualStudio + #JasmineBDD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:13:31 +0000", "from_user": "Kurassier", "from_user_id": 121827295, "from_user_id_str": "121827295", "from_user_name": "Andr\\u00E9s Arias Rauld", "geo": null, "id": 147892152276492300, "id_str": "147892152276492288", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1650732275/LyY0CykA_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650732275/LyY0CykA_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Ma\\u00F1ana edtudiar mas sobre NodeJS y Socket.IO y quiz\\u00E1s formatear la Lap", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:10:18 +0000", "from_user": "dantull", "from_user_id": 15697303, "from_user_id_str": "15697303", "from_user_name": "Dan Tull", "geo": null, "id": 147891343803416580, "id_str": "147891343803416578", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/57616554/TwitMe_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/57616554/TwitMe_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: Imagine http://t.co/98HBW2Xi in real-time across a whole data center of production #nodejs processes sampling both JS and C functions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:03:22 +0000", "from_user": "heri", "from_user_id": 1578491, "from_user_id_str": "1578491", "from_user_name": "heri", "geo": null, "id": 147889599887319040, "id_str": "147889599887319040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1212243024/Screen_shot_2011-01-10_at_5.35.57_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1212243024/Screen_shot_2011-01-10_at_5.35.57_PM_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": ". @cjoudrey did an awesome talk today at the nodejs hacakthon!", "to_user": "cjoudrey", "to_user_id": 27691615, "to_user_id_str": "27691615", "to_user_name": "Christian Joudrey", "in_reply_to_status_id": 147872811728384000, "in_reply_to_status_id_str": "147872811728384000"}, +{"created_at": "Sat, 17 Dec 2011 04:02:16 +0000", "from_user": "mtw", "from_user_id": 4609741, "from_user_id_str": "4609741", "from_user_name": "Montreal Tech Watch", "geo": null, "id": 147889321729458180, "id_str": "147889321729458176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1311424156/Screen_shot_2011-04-14_at_11.25.36_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1311424156/Screen_shot_2011-04-14_at_11.25.36_AM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @cjoudrey: Slides for my talk at Node.js/Redis/MongoDB hackathon: http://t.co/yBYMVdSB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:01:42 +0000", "from_user": "heri", "from_user_id": 1578491, "from_user_id_str": "1578491", "from_user_name": "heri", "geo": null, "id": 147889178795966460, "id_str": "147889178795966464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1212243024/Screen_shot_2011-01-10_at_5.35.57_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1212243024/Screen_shot_2011-01-10_at_5.35.57_PM_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@pHzBox @backbonerecipes you should come to the nodejs tomorrow @notmanhouse", "to_user": "pHzBox", "to_user_id": 294337539, "to_user_id_str": "294337539", "to_user_name": "Dominic Savoie", "in_reply_to_status_id": 147886164282572800, "in_reply_to_status_id_str": "147886164282572800"}, +{"created_at": "Sat, 17 Dec 2011 03:59:49 +0000", "from_user": "BrandonSheley", "from_user_id": 21883798, "from_user_id_str": "21883798", "from_user_name": "Brandon Sheley", "geo": null, "id": 147888706576072700, "id_str": "147888706576072704", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1417943890/196800_10150201667016251_669411250_8744421_6205815_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1417943890/196800_10150201667016251_669411250_8744421_6205815_n_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "getting sidetracked from working on #AdminTalk w/node.js http://t.co/TUeuIDiL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:54:55 +0000", "from_user": "jbueza", "from_user_id": 141423083, "from_user_id_str": "141423083", "from_user_name": "Jaime Bueza", "geo": null, "id": 147887471059927040, "id_str": "147887471059927042", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Anyone know how to run #NodeJS console output in #VisualStudio's Output window? Trying to run a set of headless tests through visual studio", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:53:37 +0000", "from_user": "shin1x1", "from_user_id": 3871051, "from_user_id_str": "3871051", "from_user_name": "Masashi Shinbara", "geo": null, "id": 147887145233813500, "id_str": "147887145233813504", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1118038428/be5c756e-ae2f-49b6-8c7b-bd8508b6dc93_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1118038428/be5c756e-ae2f-49b6-8c7b-bd8508b6dc93_normal.png", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "\\u201CVideo: CakePHP and Node.js | Web Builder Zone\\u201D http://t.co/bjdob8Mm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:52:00 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147886736926703600, "id_str": "147886736926703616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Inaugural: Twitter streaming with node.js and HTML5 WebSockets http://t.co/tpleBpq3 - via delicious http://t.co/y7kCLw9X", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:43:46 +0000", "from_user": "dreur", "from_user_id": 16423090, "from_user_id_str": "16423090", "from_user_name": "Benjamin Boudreau", "geo": null, "id": 147884663623516160, "id_str": "147884663623516160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1525110396/22549888054_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1525110396/22549888054_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "Inaugural: Twitter streaming with node.js and HTML5 WebSockets http://t.co/2XIzEQRR - via delicious", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:38:31 +0000", "from_user": "ryantourge", "from_user_id": 15888013, "from_user_id_str": "15888013", "from_user_name": "\\u2603 Ryan Tourge \\uF8FF", "geo": null, "id": 147883342853971970, "id_str": "147883342853971968", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1397771505/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1397771505/me_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@CageKicker376 @koush @nodejs @Punisher6G bwahahahha", "to_user": "CageKicker376", "to_user_id": 177799176, "to_user_id_str": "177799176", "to_user_name": "UNDISCLOSED", "in_reply_to_status_id": 147883240940769280, "in_reply_to_status_id_str": "147883240940769280"}, +{"created_at": "Sat, 17 Dec 2011 03:36:55 +0000", "from_user": "ryantourge", "from_user_id": 15888013, "from_user_id_str": "15888013", "from_user_name": "\\u2603 Ryan Tourge \\uF8FF", "geo": null, "id": 147882941882712060, "id_str": "147882941882712064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1397771505/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1397771505/me_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@CageKicker376 @koush @nodejs @Punisher6G What? You still have the source on moondoucher or some other secret website somewhere remember?", "to_user": "CageKicker376", "to_user_id": 177799176, "to_user_id_str": "177799176", "to_user_name": "UNDISCLOSED", "in_reply_to_status_id": 147882692510363650, "in_reply_to_status_id_str": "147882692510363648"}, +{"created_at": "Sat, 17 Dec 2011 03:34:58 +0000", "from_user": "ryantourge", "from_user_id": 15888013, "from_user_id_str": "15888013", "from_user_name": "\\u2603 Ryan Tourge \\uF8FF", "geo": null, "id": 147882451526615040, "id_str": "147882451526615041", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1397771505/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1397771505/me_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\"@koush: Using @nodejs to build a cross platform end user PC app.\" Shit @CageKicker376 did that ten years ago. Ask him... @Punisher6G", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:30:59 +0000", "from_user": "koush", "from_user_id": 18918415, "from_user_id_str": "18918415", "from_user_name": "koush", "geo": null, "id": 147881447536070660, "id_str": "147881447536070656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1577420755/img-18_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1577420755/img-18_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Using @nodejs to build a cross platform end user PC app.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:26:32 +0000", "from_user": "dylan_nissley", "from_user_id": 14284725, "from_user_id_str": "14284725", "from_user_name": "Dylan Nissley", "geo": null, "id": 147880329380769800, "id_str": "147880329380769793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1672514745/dylan-avatar2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672514745/dylan-avatar2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Finally got a functional build of what I'm going to call node-mysql-migrate. #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:14:42 +0000", "from_user": "agrohe21", "from_user_id": 377441070, "from_user_id_str": "377441070", "from_user_name": "Andy grohe", "geo": null, "id": 147877348719599600, "id_str": "147877348719599616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1571089596/Andrew-Grohe_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1571089596/Andrew-Grohe_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Created my first native #nodejs extension today. C++ is just like Javascript with pointers.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:56:40 +0000", "from_user": "cjoudrey", "from_user_id": 27691615, "from_user_id_str": "27691615", "from_user_name": "Christian Joudrey", "geo": null, "id": 147872811728384000, "id_str": "147872811728384000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1257970012/gravatar_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1257970012/gravatar_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "Slides for my talk at Node.js/Redis/MongoDB hackathon: http://t.co/yBYMVdSB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:53:08 +0000", "from_user": "mareksuscak", "from_user_id": 66651296, "from_user_id_str": "66651296", "from_user_name": "Marek \\u0160u\\u0161\\u010D\\u00E1k", "geo": null, "id": 147871923911663600, "id_str": "147871923911663617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1417805804/f2250bd932d8a3d4987f9135bd04a5dd_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1417805804/f2250bd932d8a3d4987f9135bd04a5dd_normal.jpeg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: Imagine http://t.co/98HBW2Xi in real-time across a whole data center of production #nodejs processes sampling both JS and C functions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:49:19 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 147870961327288320, "id_str": "147870961327288320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Azure price cuts, bigger databases, now with node.js and MongoDB support ... http://t.co/7p7mo7xq #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:45:02 +0000", "from_user": "dbmoore", "from_user_id": 5025521, "from_user_id_str": "5025521", "from_user_name": "Dennis Moore", "geo": null, "id": 147869886369116160, "id_str": "147869886369116160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/55245814/Dennis_Moore_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/55245814/Dennis_Moore_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#EnSW #Microsoft Azure price cuts, bigger databases, now with #OpenSource node.js and MongoDB support, #Hadoop on... http://t.co/B6AkM8jD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:37:39 +0000", "from_user": "marceloglezer", "from_user_id": 289382165, "from_user_id_str": "289382165", "from_user_name": "Marcelo Glezer", "geo": null, "id": 147868024882466800, "id_str": "147868024882466817", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1330326638/msngato_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1330326638/msngato_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "Node\\u00A0v0.6.6 http://t.co/eGMqw3as via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:31:44 +0000", "from_user": "iaflash", "from_user_id": 118644890, "from_user_id_str": "118644890", "from_user_name": "I, Architect.", "geo": null, "id": 147866538190438400, "id_str": "147866538190438400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/725284435/i1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/725284435/i1_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#iaflash Nice Blog post, see here ---> A Full Javascript Architecture, Part One - NodeJS - Zenika - http:... http://t.co/FZGcrCAU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:29:09 +0000", "from_user": "damian168", "from_user_id": 65390141, "from_user_id_str": "65390141", "from_user_name": "Damian", "geo": null, "id": 147865888446615550, "id_str": "147865888446615552", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698333215/1324133435522_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698333215/1324133435522_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Ganas de jugar con nodeJs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:18:37 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147863238854447100, "id_str": "147863238854447105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Nice Blog post, see here ---> A Full Javascript Architecture, Part One - NodeJS - Zenika - http://t.co/S61xuYD7 http://t.co/wV3zpgkJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:08:38 +0000", "from_user": "pluc", "from_user_id": 14517408, "from_user_id_str": "14517408", "from_user_name": "Pier-Luc Petitclerc", "geo": null, "id": 147860724826382340, "id_str": "147860724826382336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1330464753/avatar-trans-sm_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1330464753/avatar-trans-sm_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Great informal presentations tonight at @notmanhouse on NodeJS/Express.js/Rocket.js/MongoDB. Looking forward to the slides! cc @MTLTalent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:59:56 +0000", "from_user": "chrismatthieu", "from_user_id": 13604142, "from_user_id_str": "13604142", "from_user_name": "Chris Matthieu", "geo": null, "id": 147858537048059900, "id_str": "147858537048059906", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/918916153/SuperChrisSmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/918916153/SuperChrisSmall_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @NodeHispano: Nodester el hosting Open Source para Node.js la forma m\\u00E1s facil de publicar tus apps. #nodejs @Nodester nodester.com", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:59:01 +0000", "from_user": "NodeHispano", "from_user_id": 414112311, "from_user_id_str": "414112311", "from_user_name": "Node.js Hispano", "geo": null, "id": 147858303106564100, "id_str": "147858303106564096", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1642679301/logo_nodehispano_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642679301/logo_nodehispano_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Nodester el hosting Open Source para Node.js la forma m\\u00E1s facil de publicar tus apps. #nodejs @Nodester nodester.com", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:57:28 +0000", "from_user": "fyhao", "from_user_id": 19705371, "from_user_id_str": "19705371", "from_user_name": "Khor Yong Hao", "geo": null, "id": 147857916215558140, "id_str": "147857916215558144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1634947032/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634947032/image_normal.jpg", "source": "<a href="http://www.shareaholic.com" rel="nofollow">shareaholic app</a>", "text": "Nice Blog post, see here ---> A Full Javascript Architecture, Part One - NodeJS - Zenika - http://t.co/1VPdWNPM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:52:35 +0000", "from_user": "_ryancole", "from_user_id": 41050814, "from_user_id_str": "41050814", "from_user_name": "Ryan Cole", "geo": null, "id": 147856687339020300, "id_str": "147856687339020288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1196781010/n16720443_33906405_2900_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1196781010/n16720443_33906405_2900_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Every time I attempt to switch to nodejs I immediately appreciate all the quality python tools that I'm trying to leave behind. Python wins.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:52:25 +0000", "from_user": "sadasant", "from_user_id": 101949871, "from_user_id_str": "101949871", "from_user_name": "Daniel R.", "geo": null, "id": 147856642308968450, "id_str": "147856642308968448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1619598037/sadasant_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619598037/sadasant_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "mini localhost #nodejs server + #showoff.io goodness in less than 1 minute! http://t.co/pAkW4kXq via @csanz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:49:14 +0000", "from_user": "acarlos1000", "from_user_id": 8536242, "from_user_id_str": "8536242", "from_user_name": "Antonio C. Silveira", "geo": null, "id": 147855843990323200, "id_str": "147855843990323200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1346082012/antonio-2011yahoo-2723_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1346082012/antonio-2011yahoo-2723_small_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "Happy with the Demo the Contacts Team Presented this Friday. Super cool #nodejs #cocktails #yahoo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:48:19 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 147855611500036100, "id_str": "147855611500036096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @iceddev nodejs: Node v0.6.6 released http://t.co/6Iw2zUP8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:48:19 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 147855610430488580, "id_str": "147855610430488576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @iceddev Looking good!! Love the twitter bootstrap! @Nodester: New websites! First http://t.co/jT8sjMnY and now nod", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:34:39 +0000", "from_user": "iceddev", "from_user_id": 430242338, "from_user_id_str": "430242338", "from_user_name": "Iced Dev", "geo": null, "id": 147852173055770620, "id_str": "147852173055770624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1677940904/iceddev_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677940904/iceddev_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Node v0.6.6 released http://t.co/LGH5FqF6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Sat, 17 Dec 2011 01:34:39 +0000", "from_user": "iceddev", "from_user_id": 430242338, "from_user_id_str": "430242338", "from_user_name": "Iced Dev", "geo": null, "id": 147852173055770620, "id_str": "147852173055770624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1677940904/iceddev_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677940904/iceddev_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Node v0.6.6 released http://t.co/LGH5FqF6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:34:02 +0000", "from_user": "iceddev", "from_user_id": 430242338, "from_user_id_str": "430242338", "from_user_name": "Iced Dev", "geo": null, "id": 147852017736486900, "id_str": "147852017736486912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1677940904/iceddev_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677940904/iceddev_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Looking good!! Love the twitter bootstrap! @Nodester: New websites! First nodejs.org and now nodester.com", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:31:59 +0000", "from_user": "djidja8", "from_user_id": 60340043, "from_user_id_str": "60340043", "from_user_name": "Srdjan Strbanovic", "geo": null, "id": 147851500452970500, "id_str": "147851500452970498", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/727605334/Srdjan-sail_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/727605334/Srdjan-sail_normal.png", "source": "<a href="http://www.scoop.it" rel="nofollow">Scoop.it</a>", "text": "Aaronontheweb | Intro to Node.JS for .NET Developers http://t.co/6q23LYzZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:25:32 +0000", "from_user": "xfigue", "from_user_id": 70091627, "from_user_id_str": "70091627", "from_user_name": "Fabi\\u00E1n Figueredo", "geo": null, "id": 147849878310092800, "id_str": "147849878310092800", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1412484810/bac3ea98-3b22-48ef-9203-1543babc5a3d_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1412484810/bac3ea98-3b22-48ef-9203-1543babc5a3d_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Jugando con Nodejs. Hice un server Faye y un cliente que consume un canal. Me emocion\\u00E9 #newbie", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:21:53 +0000", "from_user": "DeirdreS", "from_user_id": 625093, "from_user_id_str": "625093", "from_user_name": "Deirdr\\u00E9 Straughan", "geo": null, "id": 147848957786193920, "id_str": "147848957786193920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1273049375/dpink_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273049375/dpink_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "RT @cgiffard: Wow, these DTrace-generated flame graphs are awesome! Can't wait for nodejs support to arrive. http://t.co/OFjeEgaD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:15:21 +0000", "from_user": "smerchek", "from_user_id": 49359644, "from_user_id_str": "49359644", "from_user_name": "Scott Smerchek", "geo": null, "id": 147847315544211460, "id_str": "147847315544211456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/323165504/profile_pic1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/323165504/profile_pic1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "As if nodejs development wasn't easy enough, @Cloud9IDE makes it even easier by letting me bypass the installation/deployment step!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:10:54 +0000", "from_user": "ericNtally", "from_user_id": 16072466, "from_user_id_str": "16072466", "from_user_name": "Eric", "geo": null, "id": 147846194369007600, "id_str": "147846194369007616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1425273963/IMG_20110518_200714-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1425273963/IMG_20110518_200714-1_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "back to ruby *waves goodbye to nodejs* till we meet again", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:09:35 +0000", "from_user": "tommie_open", "from_user_id": 95061299, "from_user_id_str": "95061299", "from_user_name": "tommie", "geo": null, "id": 147845862058491900, "id_str": "147845862058491904", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/878135992/tumblr_kptjmv1QVf1qznd83o1_1280_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/878135992/tumblr_kptjmv1QVf1qznd83o1_1280_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@KOBA789 node-lazy\\u3068\\u3044\\u3046\\u30E2\\u30B8\\u30E5\\u30FC\\u30EB\\u3060\\u3068 functional programming methods\\u304C\\u5B9F\\u73FE\\u3067\\u304D\\u308B\\u3088\\u3046\\u3067\\u3059\\u3002http://t.co/nFlZWq2X", "to_user": "KOBA789", "to_user_id": 56680439, "to_user_id_str": "56680439", "to_user_name": "\\u3053\\u3070@\\u975E\\u30EA\\u30A2\\u5145\\u306E\\u9999\\u308A", "in_reply_to_status_id": 146954895893864450, "in_reply_to_status_id_str": "146954895893864448"}, +{"created_at": "Sat, 17 Dec 2011 00:58:06 +0000", "from_user": "outa7iME", "from_user_id": 64403059, "from_user_id_str": "64403059", "from_user_name": "outaTiME", "geo": null, "id": 147842975458803700, "id_str": "147842975458803712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1577438873/my.own.new_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1577438873/my.own.new_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: mongoose-paginate (0.0.3): http://t.co/0JfPxjaI Mongoose ORM (NodeJS) Document Query Pagination http://t.co/GOwwAYhT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:54:22 +0000", "from_user": "derdesign", "from_user_id": 69168314, "from_user_id_str": "69168314", "from_user_name": "Ernesto M\\u00E9ndez", "geo": null, "id": 147842035934703600, "id_str": "147842035934703617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1346443112/avatar_v5.0_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1346443112/avatar_v5.0_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Designing the website for an Open Source Web Framework for NodeJS I'm about to release at Github. Stay tuned :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:48:40 +0000", "from_user": "cheryltom", "from_user_id": 18117275, "from_user_id_str": "18117275", "from_user_name": "cheryltom", "geo": null, "id": 147840599247167500, "id_str": "147840599247167488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1554040071/cheryl-tom_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554040071/cheryl-tom_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@MichaelMontero you'd be proud - geeking out on nodejs, redis, mongodb on my Friday night. #notmanhouse", "to_user": "MichaelMontero", "to_user_id": 34589728, "to_user_id_str": "34589728", "to_user_name": "Michael Montero"}, +{"created_at": "Sat, 17 Dec 2011 00:48:33 +0000", "from_user": "DerekJen", "from_user_id": 16379772, "from_user_id_str": "16379772", "from_user_name": "Derek Jen", "geo": null, "id": 147840569039790080, "id_str": "147840569039790080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1605935966/pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1605935966/pic_normal.jpg", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "nodejs longish redis hackathon (@ Notman House w/ 4 others) http://t.co/YqCBnaCB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:48:05 +0000", "from_user": "camerondgray", "from_user_id": 196793773, "from_user_id_str": "196793773", "from_user_name": "Cameron Gray", "geo": null, "id": 147840453318934530, "id_str": "147840453318934528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1134153656/03-14-06_1942_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1134153656/03-14-06_1942_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Sequelize is a very cool library and wins the prize for most hideous doc page background ever http://t.co/GccOzPco #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:43:55 +0000", "from_user": "cheryltom", "from_user_id": 18117275, "from_user_id_str": "18117275", "from_user_name": "cheryltom", "geo": null, "id": 147839404562591740, "id_str": "147839404562591746", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1554040071/cheryl-tom_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554040071/cheryl-tom_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @mtw: Nodejs hackathon is packed, i've never seen so many people at Notman house #hackmtl @MTLTalent http://t.co/JPzPDQLK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:25:56 +0000", "from_user": "dapsays", "from_user_id": 247636179, "from_user_id_str": "247636179", "from_user_name": "Dave Pacheco", "geo": null, "id": 147834877784498180, "id_str": "147834877784498176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1235295953/DSC_4227_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1235295953/DSC_4227_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: Imagine http://t.co/98HBW2Xi in real-time across a whole data center of production #nodejs processes sampling both JS and C functions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:23:23 +0000", "from_user": "ajamaica", "from_user_id": 776449, "from_user_id_str": "776449", "from_user_name": "Arturo Jamaica", "geo": null, "id": 147834237054238720, "id_str": "147834237054238721", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1478040314/8822-huge_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1478040314/8822-huge_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "Semi enchufado Nodejs con Django.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:17:29 +0000", "from_user": "dlsspy", "from_user_id": 14117412, "from_user_id_str": "14117412", "from_user_name": "Dustin Sallings", "geo": null, "id": 147832754220961800, "id_str": "147832754220961792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/57455325/IMG_0596_2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/57455325/IMG_0596_2_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: Imagine http://t.co/98HBW2Xi in real-time across a whole data center of production #nodejs processes sampling both JS and C functions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:16:22 +0000", "from_user": "brendangregg", "from_user_id": 208212889, "from_user_id_str": "208212889", "from_user_name": "Brendan Gregg", "geo": null, "id": 147832473697521660, "id_str": "147832473697521665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1441835128/bicon3t_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1441835128/bicon3t_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: Imagine http://t.co/98HBW2Xi in real-time across a whole data center of production #nodejs processes sampling both JS and C functions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:13:51 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147831837098643460, "id_str": "147831837098643456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "time (0.7.0): http://t.co/awPoRVBt \"time.h\" bindings for NodeJS http://t.co/qn5DPI4Q", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:05:58 +0000", "from_user": "danswer", "from_user_id": 9355102, "from_user_id_str": "9355102", "from_user_name": "Daniel", "geo": null, "id": 147829855424233470, "id_str": "147829855424233472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/72027514/n2732564_38538017_9163_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/72027514/n2732564_38538017_9163_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "May have just officially become a member of the #nodejs bandwagon.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:00:20 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 147828435702644740, "id_str": "147828435702644736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "time (0.7.0): http://t.co/StN69LWB \"time.h\" bindings for NodeJS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:59:43 +0000", "from_user": "trufae", "from_user_id": 15364094, "from_user_id_str": "15364094", "from_user_name": "pancake", "geo": null, "id": 147828280400162800, "id_str": "147828280400162817", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1291415517/abdadcat_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1291415517/abdadcat_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: Imagine http://t.co/98HBW2Xi in real-time across a whole data center of production #nodejs processes sampling both JS and C functions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:59:41 +0000", "from_user": "mcavage", "from_user_id": 17684601, "from_user_id_str": "17684601", "from_user_name": "Mark Cavage", "geo": null, "id": 147828272489701380, "id_str": "147828272489701376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534923852/gravatar_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534923852/gravatar_normal.jpeg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @trentmick: npm install ldapauth\\n# A #nodejs module to simplify auth'ing against an LDAP server, with requisite express example.\\nhttps://t.co/4kbO0TWj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:56:34 +0000", "from_user": "dreur", "from_user_id": 16423090, "from_user_id_str": "16423090", "from_user_name": "Benjamin Boudreau", "geo": null, "id": 147827488972746750, "id_str": "147827488972746752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1525110396/22549888054_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1525110396/22549888054_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @mtw: Nodejs hackathon is packed, i've never seen so many people at Notman house #hackmtl @MTLTalent http://t.co/JPzPDQLK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:55:26 +0000", "from_user": "grandecomplex", "from_user_id": 60835091, "from_user_id_str": "60835091", "from_user_name": "Alex Grande", "geo": null, "id": 147827205089656830, "id_str": "147827205089656832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/472148162/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/472148162/me_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@dandean: fspkg: a @nodejs module for packaging up parts of your file system. Nice work!!", "to_user": "dandean", "to_user_id": 9525212, "to_user_id_str": "9525212", "to_user_name": "Dan Dean"}, +{"created_at": "Fri, 16 Dec 2011 23:54:45 +0000", "from_user": "grandecomplex", "from_user_id": 60835091, "from_user_id_str": "60835091", "from_user_name": "Alex Grande", "geo": null, "id": 147827031638409200, "id_str": "147827031638409216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/472148162/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/472148162/me_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @dandean: fspkg: a @nodejs module for packaging up parts of your file system as a CommonJS module or JSON encoded string: https://t.co/0jovgws8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:53:19 +0000", "from_user": "rubyalert", "from_user_id": 279514715, "from_user_id_str": "279514715", "from_user_name": "rubyalert", "geo": null, "id": 147826671905538050, "id_str": "147826671905538049", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1305480594/ruby_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1305480594/ruby_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Sinatra\\u98A8\\u306E\\u66F8\\u304D\\u65B9\\u304C\\u3067\\u304D\\u308B\\u30B5\\u30FC\\u30D0\\u30FC\\u30B5\\u30A4\\u30C9JavaScript\\u300CExpressJs\\u300D | Web\\u6D3B\\u30E1\\u30E2\\u5E33: http://t.co/Iz7JnkZg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:52:57 +0000", "from_user": "trentmick", "from_user_id": 17164796, "from_user_id_str": "17164796", "from_user_name": "trentmick", "geo": null, "id": 147826580306133000, "id_str": "147826580306132992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1370125944/a405807316fa673ca53ee4d0d8a2231c_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1370125944/a405807316fa673ca53ee4d0d8a2231c_normal.jpeg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "npm install ldapauth\\n# A #nodejs module to simplify auth'ing against an LDAP server, with requisite express example.\\nhttps://t.co/4kbO0TWj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:50:53 +0000", "from_user": "Nodester", "from_user_id": 240751001, "from_user_id_str": "240751001", "from_user_name": "Nodester", "geo": null, "id": 147826060547985400, "id_str": "147826060547985408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "w00t! RT @freakyfractal: Awesome! Got free #nodejs hosting with @Nodester ... 'Up and Running' and excited to get hacking away at it.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:42:36 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 147823973319720960, "id_str": "147823973319720960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @JeromeParadis: Huge crowd at the Nodejs/mongodb/redis Hackathon http://t.co/AQ4RhL0j", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:42:34 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147823966659153920, "id_str": "147823966659153923", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Huge crowd at the Nodejs/mongodb/redis Hackathon http://t.co/rC0EOZVR http://t.co/Wvo44qe1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:42:04 +0000", "from_user": "jonzobrist", "from_user_id": 169299463, "from_user_id_str": "169299463", "from_user_name": "Jon Zobrist", "geo": null, "id": 147823839584325630, "id_str": "147823839584325632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1279516177/jon_n_les_2009_canada_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1279516177/jon_n_les_2009_canada_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Growing Up http://t.co/PD4JktSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:36:34 +0000", "from_user": "freakyfractal", "from_user_id": 120607945, "from_user_id_str": "120607945", "from_user_name": "freakyfractal", "geo": null, "id": 147822456185438200, "id_str": "147822456185438209", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1258082617/AIbEiAIAAABDCNWFm6WlpNPCXiILdmNhcmRfcGhvdG8qKDU5ZWQ4YjVhMDQ1OTVkZDZiMTA0MmQzMThhYWEwNjA1ZTliZDEwNmIwAVVer_kaEZb3D7oC3UHv6a_VSntv_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1258082617/AIbEiAIAAABDCNWFm6WlpNPCXiILdmNhcmRfcGhvdG8qKDU5ZWQ4YjVhMDQ1OTVkZDZiMTA0MmQzMThhYWEwNjA1ZTliZDEwNmIwAVVer_kaEZb3D7oC3UHv6a_VSntv_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "Awesome! Got free #nodejs hosting with @Nodester ... 'Up and Running' and excited to get hacking away at it.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:36:13 +0000", "from_user": "dhaivatpoincare", "from_user_id": 233257440, "from_user_id_str": "233257440", "from_user_name": "Dhaivat Pandya", "geo": null, "id": 147822367127777280, "id_str": "147822367127777280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657560442/2011-11-25_13-57-39.638_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657560442/2011-11-25_13-57-39.638_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Got my #nodejs package up! Check it out: http://t.co/bU2w1PcR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:27:52 +0000", "from_user": "jonhusband", "from_user_id": 13298, "from_user_id_str": "13298", "from_user_name": "Jon Husband", "geo": null, "id": 147820264850329600, "id_str": "147820264850329600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688131518/JH_summer_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688131518/JH_summer_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "VeryRT @JeromeParadis .. Huge crowd at Nodejs/mongodb/redis Hackathon http://t.co/Ku3q8i6N < Notman House, one home of the Web in Montreal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:26:49 +0000", "from_user": "mtw", "from_user_id": 4609741, "from_user_id_str": "4609741", "from_user_name": "Montreal Tech Watch", "geo": +{"coordinates": [45.5121,-73.5697], "type": "Point"}, "id": 147819997891268600, "id_str": "147819997891268608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1311424156/Screen_shot_2011-04-14_at_11.25.36_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1311424156/Screen_shot_2011-04-14_at_11.25.36_AM_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Nodejs hackathon is packed, i've never seen so many people at Notman house #hackmtl @MTLTalent http://t.co/JPzPDQLK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:25:45 +0000", "from_user": "cgiffard", "from_user_id": 14967638, "from_user_id_str": "14967638", "from_user_name": "Christopher Giffard", "geo": null, "id": 147819732735766530, "id_str": "147819732735766528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/405696519/3822572807_1b6414bda6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/405696519/3822572807_1b6414bda6_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "Wow, these DTrace-generated flame graphs are awesome! Can't wait for nodejs support to arrive. http://t.co/OFjeEgaD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:25:44 +0000", "from_user": "JeromeParadis", "from_user_id": 7025052, "from_user_id_str": "7025052", "from_user_name": "Jerome Paradis", "geo": null, "id": 147819724519112700, "id_str": "147819724519112705", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/565533545/0375_c_50pct_Square_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/565533545/0375_c_50pct_Square_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@jamesaduncan one of @joyent's 2 CTOs talking at the Nodejs/mongodb/redis Hackathon. http://t.co/as9hQrX2", "to_user": "jamesaduncan", "to_user_id": 1720581, "to_user_id_str": "1720581", "to_user_name": "James Duncan"}, +{"created_at": "Fri, 16 Dec 2011 23:25:22 +0000", "from_user": "elrowan", "from_user_id": 28970692, "from_user_id_str": "28970692", "from_user_name": "rowan", "geo": null, "id": 147819636702973950, "id_str": "147819636702973952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/517062241/10852_203728895538_661225538_4447749_5678742_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/517062241/10852_203728895538_661225538_4447749_5678742_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Cool talk by @jamesaduncan at the #nodejs hackathon intro here in #mtl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:24:23 +0000", "from_user": "flashuni", "from_user_id": 8961282, "from_user_id_str": "8961282", "from_user_name": "flashuni", "geo": null, "id": 147819389134184450, "id_str": "147819389134184448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/74454862/Picture_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/74454862/Picture_1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@Marakana Hey what song did you guys use for the intro to Ryan Dahl's nodejs talk? http://t.co/iyEGvW1S", "to_user": "Marakana", "to_user_id": 38562109, "to_user_id_str": "38562109", "to_user_name": "Marakana"}, +{"created_at": "Fri, 16 Dec 2011 23:20:32 +0000", "from_user": "jbueza", "from_user_id": 141423083, "from_user_id_str": "141423083", "from_user_name": "Jaime Bueza", "geo": null, "id": 147818419633405950, "id_str": "147818419633405954", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@haydockjp With the NodeJS SDK? ;) or perhaps PHP? or Java? http://t.co/Cv57WDJA #Windows #Azure", "to_user": "haydockjp", "to_user_id": 115575946, "to_user_id_str": "115575946", "to_user_name": "Jon Haydock", "in_reply_to_status_id": 147814101547089920, "in_reply_to_status_id_str": "147814101547089920"}, +{"created_at": "Fri, 16 Dec 2011 23:20:26 +0000", "from_user": "JeromeParadis", "from_user_id": 7025052, "from_user_id_str": "7025052", "from_user_name": "Jerome Paradis", "geo": null, "id": 147818390462013440, "id_str": "147818390462013440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/565533545/0375_c_50pct_Square_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/565533545/0375_c_50pct_Square_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Huge crowd at the Nodejs/mongodb/redis Hackathon http://t.co/AQ4RhL0j", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:14:06 +0000", "from_user": "ggrgur", "from_user_id": 246730738, "from_user_id_str": "246730738", "from_user_name": "Grgur Grisogono", "geo": null, "id": 147816802242666500, "id_str": "147816802242666496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1345117144/p-0021_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1345117144/p-0021_2_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Updated to the latest #mongodb and #Nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:13:04 +0000", "from_user": "leftbug", "from_user_id": 240625785, "from_user_id_str": "240625785", "from_user_name": "leftbug", "geo": null, "id": 147816543626067970, "id_str": "147816543626067968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1221663125/gravatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1221663125/gravatar_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: Imagine http://t.co/98HBW2Xi in real-time across a whole data center of production #nodejs processes sampling both JS and C functions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:11:11 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 147816066809212930, "id_str": "147816066809212928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "RT @stephaneledorze: Running your own #nodejs version on #heroku http://t.co/wtdivCKT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:11:09 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147816059464978430, "id_str": "147816059464978432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Running your own #nodejs version on #heroku http://t.co/9BfOxdBL http://t.co/Vct11X9v", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:05:48 +0000", "from_user": "highercomve", "from_user_id": 143896177, "from_user_id_str": "143896177", "from_user_name": "Sergio Marin", "geo": null, "id": 147814712078385150, "id_str": "147814712078385152", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1655539021/yfmGMplp_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655539021/yfmGMplp_normal", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Ya mi maquina tiene Ubuntu...aunque falta, Ruby,rails, apache, mysql, php, nodejs... Pero bueno vamos poco a poco xD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:57:23 +0000", "from_user": "cemuzunlar", "from_user_id": 15491922, "from_user_id_str": "15491922", "from_user_name": "Cem Uzunlar", "geo": null, "id": 147812595544502270, "id_str": "147812595544502272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/62874978/profil_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/62874978/profil_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: Imagine http://t.co/98HBW2Xi in real-time across a whole data center of production #nodejs processes sampling both JS and C functions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:50:34 +0000", "from_user": "jesusabdullah", "from_user_id": 184987977, "from_user_id_str": "184987977", "from_user_name": "Joshua Holbrook", "geo": null, "id": 147810880250327040, "id_str": "147810880250327040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1541971778/birdbirdbird-cropped_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541971778/birdbirdbird-cropped_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: Imagine http://t.co/98HBW2Xi in real-time across a whole data center of production #nodejs processes sampling both JS and C functions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:48:41 +0000", "from_user": "stephaneledorze", "from_user_id": 109690809, "from_user_id_str": "109690809", "from_user_name": "stephane le dorze", "geo": null, "id": 147810407137030140, "id_str": "147810407137030144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1432813661/tete_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1432813661/tete_normal.jpg", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "Running your own #nodejs version on #heroku http://t.co/wtdivCKT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:48:25 +0000", "from_user": "nodejs", "from_user_id": 91985735, "from_user_id_str": "91985735", "from_user_name": "node js", "geo": null, "id": 147810340288200700, "id_str": "147810340288200704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1437021459/nodejs-dark_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1437021459/nodejs-dark_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: Imagine http://t.co/98HBW2Xi in real-time across a whole data center of production #nodejs processes sampling both JS and C functions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:47:24 +0000", "from_user": "HowieDragon", "from_user_id": 184442035, "from_user_id_str": "184442035", "from_user_name": "Howie", "geo": null, "id": 147810083106078720, "id_str": "147810083106078722", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1412192196/IMG_2380_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1412192196/IMG_2380_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: Imagine http://t.co/98HBW2Xi in real-time across a whole data center of production #nodejs processes sampling both JS and C functions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:42:54 +0000", "from_user": "polotek", "from_user_id": 20079975, "from_user_id_str": "20079975", "from_user_name": "Marco Rogers", "geo": null, "id": 147808951927439360, "id_str": "147808951927439360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/422439290/n739064999_192287_1980_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/422439290/n739064999_192287_1980_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: Imagine http://t.co/98HBW2Xi in real-time across a whole data center of production #nodejs processes sampling both JS and C functions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:40:59 +0000", "from_user": "eschan", "from_user_id": 20226412, "from_user_id_str": "20226412", "from_user_name": "Edward Chan", "geo": null, "id": 147808466537422850, "id_str": "147808466537422848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/419783659/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/419783659/profile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "gotta love #nodejs and its progress on windows. just setup node on a windows machine and got my app running in less than 10 mins.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:39:58 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 147808212379381760, "id_str": "147808212379381760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: Imagine http://t.co/98HBW2Xi in real-time across a whole data center of production #nodejs processes sampling both JS and C functions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:39:57 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147808205672677380, "id_str": "147808205672677376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Imagine http://t.co/5qdH2Gyh in real-time across a whole data center of production #nodejs processes sampling bo... http://t.co/VgvPrEEO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:38:34 +0000", "from_user": "ryah", "from_user_id": 18975861, "from_user_id_str": "18975861", "from_user_name": "Ryan Dahl", "geo": null, "id": 147807859659374600, "id_str": "147807859659374592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1634041610/name_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634041610/name_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Imagine http://t.co/98HBW2Xi in real-time across a whole data center of production #nodejs processes sampling both JS and C functions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:34:49 +0000", "from_user": "SFLinux", "from_user_id": 62647280, "from_user_id_str": "62647280", "from_user_name": "Savoir-faire Linux", "geo": null, "id": 147806913806090240, "id_str": "147806913806090240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/346592408/sfl_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/346592408/sfl_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Bon Hackathon ! \"Nodejs/mongodb/redis Hackathon\" http://t.co/rYHEABqW via @eventbrite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:29:26 +0000", "from_user": "ozgurlukicin", "from_user_id": 10094282, "from_user_id_str": "10094282", "from_user_name": "\\u00D6zg\\u00FCrl\\u00FCk \\u0130\\u00E7in...", "geo": null, "id": 147805562086768640, "id_str": "147805562086768640", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/36014282/328_50_1180368575606_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/36014282/328_50_1180368575606_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Mirat Can BAYRAK: Tornado'mu Node.js mi dedim kendi kendime...: Yeni ve art\\u0131k son okul d\\u00F6nemi ile birlikte Lookr... http://t.co/DyWszUtn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:26:28 +0000", "from_user": "alexissmirnov", "from_user_id": 7611972, "from_user_id_str": "7611972", "from_user_name": "Alexis Smirnov", "geo": null, "id": 147804813642571780, "id_str": "147804813642571776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/24487012/alexis_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/24487012/alexis_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "See you at Nodejs/mongodb/redis Hackathon http://t.co/5sR8vw7l", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:26:08 +0000", "from_user": "atpok", "from_user_id": 13311422, "from_user_id_str": "13311422", "from_user_name": "Martin Kopta", "geo": null, "id": 147804729337053200, "id_str": "147804729337053184", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700067307/IMG_0008_bigger_bigger_bw_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700067307/IMG_0008_bigger_bigger_bw_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Yahoo Cocktails \\u2014 dal\\u0161\\u00ED cesta, jak ps\\u00E1t v HTML5/JS nativn\\u00ED aplikace jen jednou pro \\u201Ev\\u0161echny\\u201C platformy. \\u0160ance pro node. http://t.co/xLK2rgc5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:24:04 +0000", "from_user": "Xogost", "from_user_id": 126010186, "from_user_id_str": "126010186", "from_user_name": "Juan Camilo Martinez", "geo": null, "id": 147804209411141630, "id_str": "147804209411141633", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699288836/akane_y_yop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699288836/akane_y_yop_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ajamaica: Por cierto encontre Forever una manera de hacer deploy de Node.js sencillos http://t.co/47iMGc04", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:23:20 +0000", "from_user": "Nodester", "from_user_id": 240751001, "from_user_id_str": "240751001", "from_user_name": "Nodester", "geo": null, "id": 147804025864204300, "id_str": "147804025864204289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "We just sent out 100 new @nodester nodejs hosting coupons! /cc @mferrante3 @freakyfractal @mayoralito", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:23:01 +0000", "from_user": "ajamaica", "from_user_id": 776449, "from_user_id_str": "776449", "from_user_name": "Arturo Jamaica", "geo": null, "id": 147803947095171070, "id_str": "147803947095171072", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1478040314/8822-huge_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1478040314/8822-huge_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "Por cierto encontre Forever una manera de hacer deploy de Node.js sencillos http://t.co/47iMGc04", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:22:32 +0000", "from_user": "mirat", "from_user_id": 14368680, "from_user_id_str": "14368680", "from_user_name": "Mirat Can Bayrak", "geo": null, "id": 147803823237365760, "id_str": "147803823237365761", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1186664587/70438_649222888_5439295_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1186664587/70438_649222888_5439295_n_normal.jpg", "source": "<a href="https://wiki.ubuntu.com/Gwibber" rel="nofollow">Ubuntu</a>", "text": "Tornado'mu Node.js mi? http://t.co/CrwawKpI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:19:25 +0000", "from_user": "_johnnyray", "from_user_id": 74046600, "from_user_id_str": "74046600", "from_user_name": "Johnny Ray", "geo": null, "id": 147803039032541200, "id_str": "147803039032541184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696764011/success_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696764011/success_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: #nodejs #mocha is freaking awesome: http://t.co/qEAjqras #ftw http://t.co/dxil5Yyf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:18:38 +0000", "from_user": "przemyslawpluta", "from_user_id": 24577454, "from_user_id_str": "24577454", "from_user_name": "Przemyslaw Pluta", "geo": null, "id": 147802844349743100, "id_str": "147802844349743104", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1479677201/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1479677201/me_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "Awesome lineup for http://t.co/1FfEuEHw Intel, Microsoft, VMware, eBay #nodejs is growing fast", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:09:09 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 147800456167571460, "id_str": "147800456167571456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @cloudclint: srsly http://t.co/LTRnB1su is going to rock #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:09:05 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147800439809769470, "id_str": "147800439809769472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "srsly http://t.co/UU7KbtcZ is going to rock #nodejs http://t.co/C2fT6rci", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:08:57 +0000", "from_user": "kyledetella", "from_user_id": 22034842, "from_user_id_str": "22034842", "from_user_name": "Kyle Douglas DeTella", "geo": null, "id": 147800404716036100, "id_str": "147800404716036096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1583296978/kdd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583296978/kdd_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Sitting down with DayQuil, Christmas Music and diving into some NodeJS madness...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:01:11 +0000", "from_user": "dandean", "from_user_id": 9525212, "from_user_id_str": "9525212", "from_user_name": "Dan Dean", "geo": null, "id": 147798450212315140, "id_str": "147798450212315136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1291102275/set_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1291102275/set_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "fspkg: a @nodejs module for packaging up parts of your file system as a CommonJS module or JSON encoded string: https://t.co/0jovgws8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:55:08 +0000", "from_user": "DavidTouchette", "from_user_id": 16216329, "from_user_id_str": "16216329", "from_user_name": "\\u2190 hey, that's ME!", "geo": null, "id": 147796927176642560, "id_str": "147796927176642560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694823550/Picture_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694823550/Picture_1_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "#nerdenvy RT @pluc: Heading to @notmanhouse in a few minutes for the NodeJS/MongoDB/Redis workshop.", "to_user": "pluc", "to_user_id": 14517408, "to_user_id_str": "14517408", "to_user_name": "Pier-Luc Petitclerc", "in_reply_to_status_id": 147793874440564740, "in_reply_to_status_id_str": "147793874440564737"}, +{"created_at": "Fri, 16 Dec 2011 21:47:31 +0000", "from_user": "cramm", "from_user_id": 15446319, "from_user_id_str": "15446319", "from_user_name": "Mike Cramm", "geo": null, "id": 147795012883718140, "id_str": "147795012883718144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1521621454/coffee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1521621454/coffee_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: #nodejs #mocha is freaking awesome: http://t.co/qEAjqras #ftw http://t.co/dxil5Yyf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:46:17 +0000", "from_user": "cloudclint", "from_user_id": 178949793, "from_user_id_str": "178949793", "from_user_name": "Clint Greenwood", "geo": null, "id": 147794701079166980, "id_str": "147794701079166976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1342108211/me_specs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1342108211/me_specs_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "srsly http://t.co/LTRnB1su is going to rock #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:43:04 +0000", "from_user": "jbueza", "from_user_id": 141423083, "from_user_id_str": "141423083", "from_user_name": "Jaime Bueza", "geo": null, "id": 147793890785755140, "id_str": "147793890785755136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "#NodeJS is serious business: http://t.co/bZmhPBTF -- Microsoft, Intel, VMWare, eBay, Yahoo speakers", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:43:02 +0000", "from_user": "JaimeBuezaABC", "from_user_id": 396920479, "from_user_id_str": "396920479", "from_user_name": "Jaime Bueza", "geo": null, "id": 147793886096539650, "id_str": "147793886096539650", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1672356659/Jaime_new_v3_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672356659/Jaime_new_v3_small_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "#NodeJS is serious business: http://t.co/qvHaK0m3 -- Microsoft, Intel, VMWare, eBay, Yahoo speakers", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:43:00 +0000", "from_user": "pluc", "from_user_id": 14517408, "from_user_id_str": "14517408", "from_user_name": "Pier-Luc Petitclerc", "geo": null, "id": 147793874440564740, "id_str": "147793874440564737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1330464753/avatar-trans-sm_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1330464753/avatar-trans-sm_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Heading to @notmanhouse in a few minutes for the NodeJS/MongoDB/Redis workshop.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:39:12 +0000", "from_user": "rsrose", "from_user_id": 19767886, "from_user_id_str": "19767886", "from_user_name": "Ryan Rose", "geo": null, "id": 147792920097988600, "id_str": "147792920097988609", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1563194873/ryan-rose_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1563194873/ryan-rose_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @rgaidot: Make WebSocket work 2x faster on Node.js http://t.co/jISbItr5 #nodejs #websocket", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:38:25 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 147792722495946750, "id_str": "147792722495946752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @MarioBehrendt: #nodejs #mocha is freaking awesome: http://t.co/tMVs7Ehj #ftw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:38:23 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147792714136694800, "id_str": "147792714136694785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#nodejs #mocha is freaking awesome: http://t.co/qEAjqras #ftw http://t.co/dxil5Yyf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:31:50 +0000", "from_user": "moellenbeck", "from_user_id": 1936981, "from_user_id_str": "1936981", "from_user_name": "Martin M\\u00F6llenbeck", "geo": null, "id": 147791066282733570, "id_str": "147791066282733568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/30569592/FlickrIcon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/30569592/FlickrIcon_normal.png", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "Very interesting!! RT @rgaidot: Make WebSocket work 2x faster on Node.js http://t.co/IupR7cEA #nodejs #websocket", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:23:38 +0000", "from_user": "chrismatthieu", "from_user_id": 13604142, "from_user_id_str": "13604142", "from_user_name": "Chris Matthieu", "geo": null, "id": 147789002169262080, "id_str": "147789002169262080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/918916153/SuperChrisSmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/918916153/SuperChrisSmall_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Check out the new @nodester API page (specifically the REST API tab) - http://t.co/grumM42S #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:16:01 +0000", "from_user": "MarioBehrendt", "from_user_id": 268952646, "from_user_id_str": "268952646", "from_user_name": "Mario Behrendt", "geo": null, "id": 147787085573652480, "id_str": "147787085573652480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1279542068/41393_1392872855_5297780_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1279542068/41393_1392872855_5297780_n_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "#nodejs #mocha is freaking awesome: http://t.co/tMVs7Ehj #ftw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:13:38 +0000", "from_user": "mle_tanaka", "from_user_id": 186652183, "from_user_id_str": "186652183", "from_user_name": "Emily", "geo": null, "id": 147786485691723780, "id_str": "147786485691723778", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @twericb: More on @nodejs on #Azure and the Node Azure SDK: http://t.co/A6Oz0ItK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:13:24 +0000", "from_user": "twericb", "from_user_id": 260001315, "from_user_id_str": "260001315", "from_user_name": "eric b", "geo": null, "id": 147786424916254720, "id_str": "147786424916254720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1367358173/charicjpeg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1367358173/charicjpeg_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "More on @nodejs on #Azure and the Node Azure SDK: http://t.co/A6Oz0ItK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:11:00 +0000", "from_user": "ApocalypeX", "from_user_id": 98144476, "from_user_id_str": "98144476", "from_user_name": "ApocalypeX", "geo": null, "id": 147785823222366200, "id_str": "147785823222366208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1560906577/avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1560906577/avatar_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Time to start building my nodejs webserver.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:06:53 +0000", "from_user": "delfinof", "from_user_id": 29531965, "from_user_id_str": "29531965", "from_user_name": "Francesco Delfino", "geo": null, "id": 147784788164624400, "id_str": "147784788164624385", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1643688932/_29531965_-5740430031097686038_146_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643688932/_29531965_-5740430031097686038_146_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @hnfirehose: Node.js modules you should know about: cradle: http://t.co/Mgmhbu1t", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:05:21 +0000", "from_user": "shaundesigns", "from_user_id": 90294591, "from_user_id_str": "90294591", "from_user_name": "Shaun Baker", "geo": null, "id": 147784399696564220, "id_str": "147784399696564225", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1673422560/308618_2703477794037_1469502645_2918943_1688154821_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673422560/308618_2703477794037_1469502645_2918943_1688154821_n_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Safari on iOS</a>", "text": "http://t.co/8ZCIJGff cradle module for #nodejs http://t.co/8ZCIJGff", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:03:44 +0000", "from_user": "phpquickfix", "from_user_id": 422872219, "from_user_id_str": "422872219", "from_user_name": "PHP Quick Fix", "geo": null, "id": 147783993222365200, "id_str": "147783993222365184", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662673609/onfire_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662673609/onfire_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Video: CakePHP and Node.js | Web Builder Zone: Video: CakePHP and Node.js | Web Builder Zone : #cakephp #nodejs ... http://t.co/NWBrTefW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:56:51 +0000", "from_user": "3rdEden", "from_user_id": 14350255, "from_user_id_str": "14350255", "from_user_name": "Arnout Kazemier", "geo": null, "id": 147782260395999230, "id_str": "147782260395999233", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Released 0.0.5 of dev/null a #nodejs logging module: https://t.co/TMNpUwYd `npm install devnull` while it's still hot!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:55:42 +0000", "from_user": "OscarCantaro", "from_user_id": 100827671, "from_user_id_str": "100827671", "from_user_name": "Oscar C\\u00E1ntaro", "geo": null, "id": 147781970246639600, "id_str": "147781970246639616", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1653159688/oscar-bits-2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653159688/oscar-bits-2_normal.png", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "RT @DiegoUG: Simple chat for Node.js - http://t.co/MQclglT0 http://t.co/jEm2JPFn - http://t.co/OuTo2DTP #mejorandojs (CC @cvander)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:51:26 +0000", "from_user": "bcelenza", "from_user_id": 14261465, "from_user_id_str": "14261465", "from_user_name": "Brian Celenza", "geo": null, "id": 147780899562455040, "id_str": "147780899562455041", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1210621228/47238_771257466905_21413042_41763552_4214387_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1210621228/47238_771257466905_21413042_41763552_4214387_n_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Someone who knows NodeJS should create a database abstraction layer. Wait a minute, I know NodeJS.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:49:32 +0000", "from_user": "hnfirehose", "from_user_id": 213117318, "from_user_id_str": "213117318", "from_user_name": "HN Firehose", "geo": null, "id": 147780420900110340, "id_str": "147780420900110336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Node.js modules you should know about: cradle: http://t.co/Mgmhbu1t", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:47:38 +0000", "from_user": "speedata", "from_user_id": 66168039, "from_user_id_str": "66168039", "from_user_name": "speedata", "geo": null, "id": 147779940144791550, "id_str": "147779940144791552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1425809224/twitter-logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1425809224/twitter-logo_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Awesome new project with the #speedata Publisher, #nodejs and some #nosql database. Sounds like lots of fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:46:57 +0000", "from_user": "alxisv", "from_user_id": 205560908, "from_user_id_str": "205560908", "from_user_name": "Alcides Torres", "geo": null, "id": 147779770430656500, "id_str": "147779770430656512", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1554188509/2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554188509/2_normal.JPG", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Reuni\\u00F3n 3 de MadridJS: Nodejs y Heroku - MadridJS (Madrid) - Meetup http://t.co/YyjIARhA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:36:25 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147777120876249100, "id_str": "147777120876249088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Chai - #BDD / #TDD assert. framework for NodeJS and the browser that can be paired with any testing framework ht... http://t.co/g2cEO1Ds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:30:05 +0000", "from_user": "FGRibreau", "from_user_id": 5719692, "from_user_id_str": "5719692", "from_user_name": "Fran\\u00E7ois-G. Ribreau", "geo": null, "id": 147775525199429630, "id_str": "147775525199429632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1117780106/2009_shooting_medium_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1117780106/2009_shooting_medium_normal.png", "source": "<a href="http://fgribreau.com" rel="nofollow">FG</a>", "text": "Chai - #BDD / #TDD assert. framework for NodeJS and the browser that can be paired with any testing framework http://t.co/VWzd6sT5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:30:01 +0000", "from_user": "ohmybrain", "from_user_id": 7313752, "from_user_id_str": "7313752", "from_user_name": "Brian Williford \\uF8FF", "geo": null, "id": 147775507855982600, "id_str": "147775507855982593", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1266214815/mhf_227_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266214815/mhf_227_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pkrumins: Just blogged about another node.js module you should know about - cradle by @cloudhead - http://t.co/xTcFPEL3. #node #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:29:45 +0000", "from_user": "richardchaves", "from_user_id": 32394460, "from_user_id_str": "32394460", "from_user_name": "Richard Chaves", "geo": null, "id": 147775441107816450, "id_str": "147775441107816448", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/769450746/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/769450746/twitterProfilePhoto_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Open in the #Cloud: #Azure Libraries for .Net, Java and Node.js http://t.co/lfwB2V0A via @OpenAtMicrosoft #Java #NodeJS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:28:14 +0000", "from_user": "willkite", "from_user_id": 37689415, "from_user_id_str": "37689415", "from_user_name": "Will Stevens", "geo": null, "id": 147775060202102800, "id_str": "147775060202102784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/196297360/no_eye_contact_crop_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/196297360/no_eye_contact_crop_small_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Judging at a Nodejs/mongodb/redis Hackathon tomorrow. http://t.co/AMj8PAE7 via @eventbrite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Fri, 16 Dec 2011 20:28:12 +0000", "from_user": "maxogden", "from_user_id": 12241752, "from_user_id_str": "12241752", "from_user_name": "max ogden", "geo": null, "id": 147775048432889860, "id_str": "147775048432889857", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690285875/max_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690285875/max_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "happy pappy @ryah after discovering how big @voxer's node deployment is from @mranney #nodejs http://t.co/zAxstmOB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:24:33 +0000", "from_user": "philingrey", "from_user_id": 19531270, "from_user_id_str": "19531270", "from_user_name": "Phil Ingrey", "geo": null, "id": 147774132812136450, "id_str": "147774132812136448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1541073408/38144_799049857518_199708197_47770802_867897_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541073408/38144_799049857518_199708197_47770802_867897_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Made a comet server in @nodejs! Man, I really know how to make the most of a Friday night!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:22:09 +0000", "from_user": "ekanna", "from_user_id": 16922105, "from_user_id_str": "16922105", "from_user_name": "ekanna", "geo": null, "id": 147773527360155650, "id_str": "147773527360155649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/75231310/FotoFlexer_Photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/75231310/FotoFlexer_Photo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dezmozz I stay near DLF Ramapuram. Javascript and nodejs is my hobby. What about u?", "to_user": "dezmozz", "to_user_id": 16486026, "to_user_id_str": "16486026", "to_user_name": "Rajkumar Jegannathan", "in_reply_to_status_id": 146899645073858560, "in_reply_to_status_id_str": "146899645073858561"}, +{"created_at": "Fri, 16 Dec 2011 20:21:49 +0000", "from_user": "ryanjarvinen", "from_user_id": 14945367, "from_user_id_str": "14945367", "from_user_name": "ryan", "geo": null, "id": 147773446980513800, "id_str": "147773446980513793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1227505866/sp_head_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1227505866/sp_head_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pkrumins: Just blogged about another node.js module you should know about - cradle by @cloudhead - http://t.co/xTcFPEL3. #node #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:15:34 +0000", "from_user": "aditya_bhatt", "from_user_id": 43854667, "from_user_id_str": "43854667", "from_user_name": "Aditya Bhatt", "geo": null, "id": 147771870899486720, "id_str": "147771870899486720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1217326232/ddsds_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1217326232/ddsds_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Just signed up for a beta invitation to the node.js hosting platform @nodesocket. #nodejs http://t.co/dQBDlUtm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:05:56 +0000", "from_user": "3rdEden", "from_user_id": 14350255, "from_user_id_str": "14350255", "from_user_name": "Arnout Kazemier", "geo": null, "id": 147769447724224500, "id_str": "147769447724224513", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Working on the next dev/null #nodejs log module, writing a bit more documentation and it's can go out the door.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:05:29 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147769333244903420, "id_str": "147769333244903424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "mongoose-paginate (0.0.3): http://t.co/0JfPxjaI Mongoose ORM (NodeJS) Document Query Pagination http://t.co/GOwwAYhT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:05:07 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 147769244623450100, "id_str": "147769244623450113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Windows Azure Adds Node.js Support, Hadoop Preview http://t.co/DCg24rie #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:03:49 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 147768917388042240, "id_str": "147768917388042240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "mongoose-paginate (0.0.3): http://t.co/fhbMzLA0 Mongoose ORM (NodeJS) Document Query Pagination", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:03:19 +0000", "from_user": "sholloway", "from_user_id": 14143818, "from_user_id_str": "14143818", "from_user_name": "Samuel Holloway", "geo": null, "id": 147768787557560320, "id_str": "147768787557560320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/884525536/me_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/884525536/me_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "Looking for a dead simple mechanism for sending no-reply type emails without an SMTP server. Using NodeJS or Ruby.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:02:44 +0000", "from_user": "marcoegli", "from_user_id": 226274466, "from_user_id_str": "226274466", "from_user_name": "Marco Egli", "geo": null, "id": 147768643688738800, "id_str": "147768643688738816", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1655118916/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655118916/profile_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "node.js is growing up http://t.co/YreMx5SI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:01:34 +0000", "from_user": "NodeJSAtSO", "from_user_id": 292124941, "from_user_id_str": "292124941", "from_user_name": "Node JS @ SO", "geo": null, "id": 147768350678859780, "id_str": "147768350678859777", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1336740490/sprites_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1336740490/sprites_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Getting data from mongodb in nodejs http://t.co/YZf869lk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:59:46 +0000", "from_user": "dfeldman", "from_user_id": 2377901, "from_user_id_str": "2377901", "from_user_name": "David Feldman", "geo": null, "id": 147767894099505150, "id_str": "147767894099505152", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1359930052/dave-emoticon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1359930052/dave-emoticon_normal.png", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "Node.js gets Windows Azure, Visual Studio support http://t.co/YCIEYXJp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:58:43 +0000", "from_user": "jsrss", "from_user_id": 319369545, "from_user_id_str": "319369545", "from_user_name": "Jan's RSS Feeds", "geo": null, "id": 147767633213800450, "id_str": "147767633213800448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1400846880/Newspaper_Feed_512x512_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1400846880/Newspaper_Feed_512x512_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "CatOnMat: Node.js modules you should know about: cradle: Hello everyone! This is the twelfth post in the node.js... http://t.co/nck10vhk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:54:19 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 147766525686849540, "id_str": "147766525686849536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "mongoose-paginate (0.0.2): http://t.co/fhbMzLA0 Mongoose ORM (NodeJS) Document Query Pagination", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:51:31 +0000", "from_user": "maciejmalecki", "from_user_id": 263755874, "from_user_id_str": "263755874", "from_user_name": "Maciej Ma\\u0142ecki", "geo": null, "id": 147765818153902080, "id_str": "147765818153902080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1547225919/IMG_20110917_192531mt_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1547225919/IMG_20110917_192531mt_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "You should totally follow https://t.co/DOXvMYhQ. #nodejs awesomeness guaranteed!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:48:11 +0000", "from_user": "lscosta", "from_user_id": 22920306, "from_user_id_str": "22920306", "from_user_name": "Luciano Costa", "geo": null, "id": 147764981247647740, "id_str": "147764981247647744", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1340054803/luciano_transparent_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1340054803/luciano_transparent_normal.PNG", "source": "<a href="http://twitter.com/">web</a>", "text": "ae @fnando, passa l\\u00E1 na howto-nodejs@googlegroups.com! #howto", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:46:20 +0000", "from_user": "CromaCreativo", "from_user_id": 369765710, "from_user_id_str": "369765710", "from_user_name": "Croma Creativo", "geo": null, "id": 147764513482088450, "id_str": "147764513482088448", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681882117/croma_avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681882117/croma_avatar_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Y pens\\u00E1bamos que PHP y MySQL corriendo en Apache era todo lo que necesitabamos.. rethinking.. http://t.co/GPxLBUKE http://t.co/e4WzMFNJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:45:50 +0000", "from_user": "benyblack", "from_user_id": 19531113, "from_user_id_str": "19531113", "from_user_name": "Behnam Yousefi", "geo": null, "id": 147764389594931200, "id_str": "147764389594931200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1225716885/ME4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225716885/ME4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ryah: #nodejs people: We need a working 'gist' command.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:45:46 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 147764372922576900, "id_str": "147764372922576897", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @itwars Node.js modules you should know about: cradle - good coders code, great reuse | #nodejs http://t.co/Yrdsc0l0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:45:46 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 147764371072876540, "id_str": "147764371072876544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @developer_news Node.js modules you should know about: cradle http://t.co/SMBfAMSS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:45:45 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 147764369781035000, "id_str": "147764369781035008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @pkrumins Just blogged about another node.js module you should know about - cradle by @cloudhead - http://t.co/obZGuHGj. #node #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:39:58 +0000", "from_user": "sinhorinho", "from_user_id": 34638488, "from_user_id_str": "34638488", "from_user_name": "Elizeu Sinhorinho", "geo": null, "id": 147762912470106100, "id_str": "147762912470106112", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1464774462/elizeu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1464774462/elizeu_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "come\\u00E7ando com #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:39:11 +0000", "from_user": "itwars", "from_user_id": 67265165, "from_user_id_str": "67265165", "from_user_name": "Vincent RABAH", "geo": null, "id": 147762717225271300, "id_str": "147762717225271296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1135858686/cb-vincent_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1135858686/cb-vincent_normal.png", "source": "<a href="http://www.scoop.it" rel="nofollow">Scoop.it</a>", "text": "Node.js modules you should know about: cradle - good coders code, great reuse | #nodejs http://t.co/psW4EM2O", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:37:52 +0000", "from_user": "developer_news", "from_user_id": 26244954, "from_user_id_str": "26244954", "from_user_name": "Programming Tweets", "geo": null, "id": 147762386273706000, "id_str": "147762386273705984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/108550788/Exquisite-binary_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/108550788/Exquisite-binary_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Node.js modules you should know about: cradle http://t.co/mkshebnh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:37:31 +0000", "from_user": "pkrumins", "from_user_id": 2134501, "from_user_id_str": "2134501", "from_user_name": "Peteris Krumins", "geo": null, "id": 147762298130399230, "id_str": "147762298130399232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687863157/peteris-krumins_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687863157/peteris-krumins_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Just blogged about another node.js module you should know about - cradle by @cloudhead - http://t.co/xTcFPEL3. #node #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:34:46 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 147761605684371460, "id_str": "147761605684371458", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "RT @benyblack: Kanso Repository, Recipes with Backbone, Appify UI http://t.co/h7crIEj6 #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:34:43 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147761590022832130, "id_str": "147761590022832128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Kanso Repository, Recipes with Backbone, Appify UI http://t.co/66DHTC72 #nodejs http://t.co/q3I0vF8c", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:33:28 +0000", "from_user": "ryah", "from_user_id": 18975861, "from_user_id_str": "18975861", "from_user_name": "Ryan Dahl", "geo": null, "id": 147761276813197300, "id_str": "147761276813197312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1634041610/name_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634041610/name_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#nodejs people: We need a working 'gist' command.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:28:59 +0000", "from_user": "Ccrystle", "from_user_id": 14248746, "from_user_id_str": "14248746", "from_user_name": "Charlie Crystle", "geo": null, "id": 147760149736603650, "id_str": "147760149736603648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1568025057/Crystle30R_c__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1568025057/Crystle30R_c__1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@nodejs how about adding more context to the docs? like the \"why\" for each api and a couple of examples showing different approaches", "to_user": "nodejs", "to_user_id": 91985735, "to_user_id_str": "91985735", "to_user_name": "node js", "in_reply_to_status_id": 147460480989011970, "in_reply_to_status_id_str": "147460480989011968"}, +{"created_at": "Fri, 16 Dec 2011 19:25:06 +0000", "from_user": "mechanicles", "from_user_id": 10389852, "from_user_id_str": "10389852", "from_user_name": "Santosh Wadghule", "geo": null, "id": 147759171733946370, "id_str": "147759171733946368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1684526489/my2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684526489/my2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Nodester: New websites! First nodejs.org and now nodester.com", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:19:20 +0000", "from_user": "aitoribanez", "from_user_id": 116078585, "from_user_id_str": "116078585", "from_user_name": "Aitor Iba\\u00F1ez", "geo": null, "id": 147757720920010750, "id_str": "147757720920010752", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/733051885/logo-ai_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/733051885/logo-ai_normal.png", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "RT @DiegoUG: Simple chat for Node.js - http://t.co/MQclglT0 http://t.co/jEm2JPFn - http://t.co/OuTo2DTP #mejorandojs (CC @cvander)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:14:03 +0000", "from_user": "Abood_Nour", "from_user_id": 193821501, "from_user_id_str": "193821501", "from_user_name": "Abood Nour", "geo": null, "id": 147756392571355140, "id_str": "147756392571355136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1325634605/55422_1667717046476_1043799049_31817507_4450712_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1325634605/55422_1667717046476_1043799049_31817507_4450712_o_normal.jpg", "source": "<a href="http://www.metrotwit.com/" rel="nofollow">MetroTwit</a>", "text": "RT @AbdAllah_Ahmed: looking for #nodejs #PHP expert #Spring #JSP #VBA #python developers #job #work", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:12:52 +0000", "from_user": "benyblack", "from_user_id": 19531113, "from_user_id_str": "19531113", "from_user_name": "Behnam Yousefi", "geo": null, "id": 147756091692949500, "id_str": "147756091692949504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1225716885/ME4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225716885/ME4_normal.png", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "Kanso Repository, Recipes with Backbone, Appify UI http://t.co/h7crIEj6 #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:09:08 +0000", "from_user": "Lamies_H", "from_user_id": 213878168, "from_user_id_str": "213878168", "from_user_name": " \\u0644\\u0645\\u064A\\u0633 ", "geo": null, "id": 147755153481666560, "id_str": "147755153481666560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687760097/twitterpic_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687760097/twitterpic_normal.png", "source": "<a href="http://www.metrotwit.com/" rel="nofollow">MetroTwit</a>", "text": "RT @AbdAllah_Ahmed: looking for #nodejs #PHP expert #Spring #JSP #VBA #python developers #job #work", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:05:49 +0000", "from_user": "AbdAllah_Ahmed", "from_user_id": 48293642, "from_user_id_str": "48293642", "from_user_name": "AbdAllah Ahmed", "geo": null, "id": 147754318047608830, "id_str": "147754318047608832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696740970/265082_2020178498951_1078575461_2271513_398532_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696740970/265082_2020178498951_1078575461_2271513_398532_n_normal.jpg", "source": "<a href="http://www.metrotwit.com/" rel="nofollow">MetroTwit</a>", "text": "looking for #nodejs #PHP expert #Spring #JSP #VBA #python developers #jobs #work", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:00:37 +0000", "from_user": "qwert1x", "from_user_id": 253980967, "from_user_id_str": "253980967", "from_user_name": "Aleksey Makarov", "geo": null, "id": 147753011790352400, "id_str": "147753011790352384", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1308239476/DSC02698_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1308239476/DSC02698_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u041F\\u043E\\u043A\\u0430 \\u043A\\u043E\\u043C\\u043F\\u0438\\u043B\\u0438\\u0442\\u0441\\u044F nodejs \\u043D\\u0430 \\u0432\\u0438\\u0440\\u0442\\u0443\\u0430\\u043B\\u043A\\u0435, \\u043C\\u043E\\u0436\\u043D\\u043E \\u0437\\u0430\\u0441\\u0440\\u0430\\u0442\\u044C \\u0442\\u0432\\u0438\\u0442\\u0435\\u0440 \\u0435\\u0449\\u0451 \\u043E\\u0434\\u043D\\u0438\\u043C \\u0431\\u0440\\u0435\\u0434\\u043E\\u0432\\u043E\\u043C \\u043F\\u043E\\u0441\\u0442\\u043E\\u043C... \\u044D\\u0442\\u0438\\u043C...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:44:18 +0000", "from_user": "fnhernandez", "from_user_id": 163767275, "from_user_id_str": "163767275", "from_user_name": "Fabio Hernandez -\\uF8FF-", "geo": null, "id": 147748905268940800, "id_str": "147748905268940801", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696992518/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696992518/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#mejorandola quisiera saber donde puedo ver el video de la clase de ayer de Nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:35:37 +0000", "from_user": "koichik", "from_user_id": 14453603, "from_user_id_str": "14453603", "from_user_name": "koichik", "geo": null, "id": 147746717838749700, "id_str": "147746717838749696", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1399991501/hs-2010-26-a-small_web_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1399991501/hs-2010-26-a-small_web_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "http://t.co/iwqfH7uQ \\u306B\\u51FA\\u3066\\u304F\\u308B All it needs now is a good home with you \\u3063\\u3066\\u3069\\u3046\\u3044\\u3046\\u610F\\u5473\\uFF1F \\u306A\\u306B good home \\u3063\\u3066", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:33:07 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 147746089028685820, "id_str": "147746089028685824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rgaidot: Open sourcing a realtime mahjong http://t.co/ksPFXWFD #nodejs #expressjs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:33:05 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147746079750885380, "id_str": "147746079750885376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Open sourcing a realtime mahjong http://t.co/uhDpnM1M #nodejs #expressjs http://t.co/9RNjxk6p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:32:03 +0000", "from_user": "simongate", "from_user_id": 18766184, "from_user_id_str": "18766184", "from_user_name": "Simon \\u270C Gate", "geo": null, "id": 147745822136737800, "id_str": "147745822136737793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1606426115/eightbit-3642bd28-cdab-4406-bd06-8270b34d49ad_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606426115/eightbit-3642bd28-cdab-4406-bd06-8270b34d49ad_normal.png", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "Friday night, #beer and #nodejs. Everything is perfect!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:27:02 +0000", "from_user": "niclupien", "from_user_id": 273447029, "from_user_id_str": "273447029", "from_user_name": "Nicolas Lupien", "geo": null, "id": 147744560322314240, "id_str": "147744560322314241", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664486029/mobro_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664486029/mobro_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Check out \"Nodejs/mongodb/redis Hackathon\" http://t.co/nglYci8V via @eventbrite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:22:50 +0000", "from_user": "ArchUpdates", "from_user_id": 287085434, "from_user_id_str": "287085434", "from_user_name": "ArchLinux Updates", "geo": null, "id": 147743501906477060, "id_str": "147743501906477056", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1323447710/arch_reasonably_small_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1323447710/arch_reasonably_small_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "nodejs 0.6.6-3 x86_64 http://t.co/mJybOxUa #Archlinux", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:22:48 +0000", "from_user": "archlinuxbot", "from_user_id": 281470434, "from_user_id_str": "281470434", "from_user_name": "Arch Linux Bot", "geo": null, "id": 147743493744369660, "id_str": "147743493744369665", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1310040433/arch_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1310040433/arch_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "nodejs 0.6.6-3 i686 http://t.co/74YfQHNc #ArchLinux", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:22:48 +0000", "from_user": "ArchUpdates", "from_user_id": 287085434, "from_user_id_str": "287085434", "from_user_name": "ArchLinux Updates", "geo": null, "id": 147743492850974720, "id_str": "147743492850974720", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1323447710/arch_reasonably_small_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1323447710/arch_reasonably_small_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "nodejs 0.6.6-3 i686 http://t.co/yr34in1y #Archlinux", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:17:36 +0000", "from_user": "sebpaquet", "from_user_id": 7165142, "from_user_id_str": "7165142", "from_user_name": "Seb Paquet", "geo": null, "id": 147742183041150980, "id_str": "147742183041150976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1602971985/Lpn3yz6t_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1602971985/Lpn3yz6t_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "This PM, headed to Montreal nodejs, mongodb, redis Christmas hackathon http://t.co/vOJOQqNS then dinner with @stoweboyd and other awesomes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:15:00 +0000", "from_user": "oriolgual", "from_user_id": 128157474, "from_user_id_str": "128157474", "from_user_name": "Oriol Gual", "geo": null, "id": 147741528998150140, "id_str": "147741528998150144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1180117788/oriol_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1180117788/oriol_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @masylum: Open sourcing a realtime mahjong: http://t.co/CXBy3dtr #nodejs #socketio #html5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:08:41 +0000", "from_user": "cronopio2", "from_user_id": 14474239, "from_user_id_str": "14474239", "from_user_name": "D\\u24B6niel \\u24B6ristizabal \\u2622", "geo": null, "id": 147739942762709000, "id_str": "147739942762708993", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1587000370/DennisRitchie_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587000370/DennisRitchie_normal.gif", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Node v0.6.6 released http://t.co/LGH5FqF6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:08:26 +0000", "from_user": "dadeder", "from_user_id": 223841700, "from_user_id_str": "223841700", "from_user_name": "Dan de Neander", "geo": null, "id": 147739876744376320, "id_str": "147739876744376320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676842564/dadeder_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676842564/dadeder_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Great article ! How to deploy a #nodejs application with #monit, #nginx and bouncy by @masylum http://t.co/POvgxOhT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:05:03 +0000", "from_user": "MongoQuestion", "from_user_id": 233820847, "from_user_id_str": "233820847", "from_user_name": "Mongo Question", "geo": null, "id": 147739026479255550, "id_str": "147739026479255554", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1207364137/mq_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1207364137/mq_normal.jpg", "source": "<a href="http://learnmongo.com" rel="nofollow">Mongo Question</a>", "text": "\"Getting data from mongodb in nodejs\" #MongoDB - http://t.co/TjPrxAtw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:05:00 +0000", "from_user": "eneko", "from_user_id": 12622, "from_user_id_str": "12622", "from_user_name": "Eneko", "geo": null, "id": 147739016253546500, "id_str": "147739016253546496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1134194581/gravatar_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1134194581/gravatar_normal.jpeg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: http://t.co/5rZ6knsj runs on nodejs, 2-10x more performance then python: http://t.co/pDgi9sDK http://t.co/NB83QlOE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:00:10 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 147737796889677820, "id_str": "147737796889677825", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @robertcurrie: http://t.co/VbSp9Rie runs on nodejs, 2-10x more performance then python: http://t.co/c0f2MTE9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:00:07 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147737785401475070, "id_str": "147737785401475072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "http://t.co/5rZ6knsj runs on nodejs, 2-10x more performance then python: http://t.co/pDgi9sDK http://t.co/NB83QlOE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:00:04 +0000", "from_user": "rgaidot", "from_user_id": 1245801, "from_user_id_str": "1245801", "from_user_name": "R\\u00E9gis Gaidot", "geo": null, "id": 147737772222980100, "id_str": "147737772222980096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1266738841/avatar-6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266738841/avatar-6_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Open sourcing a realtime mahjong http://t.co/ksPFXWFD #nodejs #expressjs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:58:41 +0000", "from_user": "NetRoY", "from_user_id": 14138576, "from_user_id_str": "14138576", "from_user_name": "Aditya", "geo": null, "id": 147737423890223100, "id_str": "147737423890223104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1593448068/jsfoo-me-bg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593448068/jsfoo-me-bg_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@chrismatthieu the new nodester site looks sweet - RT @Nodester: New websites! First http://t.co/lUefmG0i and now http://t.co/1oCdU61d", "to_user": "chrismatthieu", "to_user_id": 13604142, "to_user_id_str": "13604142", "to_user_name": "Chris Matthieu"}, +{"created_at": "Fri, 16 Dec 2011 17:58:37 +0000", "from_user": "ellisgl", "from_user_id": 41533187, "from_user_id_str": "41533187", "from_user_name": "Kenneth McCall", "geo": null, "id": 147737406962024450, "id_str": "147737406962024449", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1478155840/IMG_1937_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1478155840/IMG_1937_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rgaidot: Make WebSocket work 2x faster on Node.js http://t.co/p2PsJHVh #nodejs #websocket", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:55:09 +0000", "from_user": "robertcurrie", "from_user_id": 137945432, "from_user_id_str": "137945432", "from_user_name": "Rob Currie", "geo": null, "id": 147736534827802620, "id_str": "147736534827802624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/857117863/pic_team_rcurrie_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/857117863/pic_team_rcurrie_copy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/VbSp9Rie runs on nodejs, 2-10x more performance then python: http://t.co/c0f2MTE9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:54:58 +0000", "from_user": "lagus123", "from_user_id": 111185293, "from_user_id_str": "111185293", "from_user_name": "Lagus", "geo": null, "id": 147736488396861440, "id_str": "147736488396861440", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1523869644/profile_normal.JPEG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1523869644/profile_normal.JPEG", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "RT @cvander: Aprendiendo de los m\\u00F3dulos de node.js. http://t.co/d7yl7vwy #mejorandojs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:53:10 +0000", "from_user": "berchun", "from_user_id": 258310347, "from_user_id_str": "258310347", "from_user_name": "Yury Berchun", "geo": null, "id": 147736034799652860, "id_str": "147736034799652864", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1256575922/a_2b3c651c_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1256575922/a_2b3c651c_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @habrahabr: Node.JS / \\u0417\\u0430\\u043F\\u0443\\u0441\\u043A\\u0430\\u0435\\u043C jQuery \\u043D\\u0430\\u00A0\\u0434\\u0432\\u0438\\u0436\\u043A\\u0435\\u00A0Node.js \\u0432\\u043C\\u0435\\u0441\\u0442\\u043E\\u00A0\\u0431\\u0440\\u0430\\u0443\\u0437\\u0435\\u0440\\u0430 http://t.co/C4PLf33V", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:52:07 +0000", "from_user": "fauveauarmel", "from_user_id": 81747730, "from_user_id_str": "81747730", "from_user_name": "Armel FAUVEAU", "geo": null, "id": 147735771229593600, "id_str": "147735771229593600", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1053733269/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1053733269/Untitled_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rgaidot: Make WebSocket work 2x faster on Node.js http://t.co/p2PsJHVh #nodejs #websocket", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:51:59 +0000", "from_user": "hswolff", "from_user_id": 20528279, "from_user_id_str": "20528279", "from_user_name": "Harry Wolff", "geo": null, "id": 147735739436777470, "id_str": "147735739436777472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1493671157/profile_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1493671157/profile_pic_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Growing Up http://t.co/PD4JktSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:51:46 +0000", "from_user": "rgaidot", "from_user_id": 1245801, "from_user_id_str": "1245801", "from_user_name": "R\\u00E9gis Gaidot", "geo": null, "id": 147735683879014400, "id_str": "147735683879014401", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1266738841/avatar-6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266738841/avatar-6_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Make WebSocket work 2x faster on Node.js http://t.co/p2PsJHVh #nodejs #websocket", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:50:06 +0000", "from_user": "cwholt", "from_user_id": 22210404, "from_user_id_str": "22210404", "from_user_name": "christopher w. holt", "geo": null, "id": 147735263630737400, "id_str": "147735263630737408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/85618138/n8802104_43757104_6402_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/85618138/n8802104_43757104_6402_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "just open-sourced a project i put together: http://t.co/1sS48s4b #nodejs #metrics #probablyamillionbugs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:48:18 +0000", "from_user": "DarwinSantanaP", "from_user_id": 417053843, "from_user_id_str": "417053843", "from_user_name": "Darwin", "geo": null, "id": 147734811149209600, "id_str": "147734811149209602", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1648469054/MOTO_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648469054/MOTO_normal.jpg", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "RT @DiegoUG: Simple chat for Node.js - http://t.co/MQclglT0 http://t.co/jEm2JPFn - http://t.co/OuTo2DTP #mejorandojs (CC @cvander)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:47:35 +0000", "from_user": "chrismatthieu", "from_user_id": 13604142, "from_user_id_str": "13604142", "from_user_name": "Chris Matthieu", "geo": null, "id": 147734633151332350, "id_str": "147734633151332352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/918916153/SuperChrisSmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/918916153/SuperChrisSmall_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Growing Up http://t.co/PD4JktSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:47:01 +0000", "from_user": "aravindavk", "from_user_id": 16153974, "from_user_id_str": "16153974", "from_user_name": "Aravinda", "geo": null, "id": 147734486895964160, "id_str": "147734486895964160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1492004681/DSC_0042_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1492004681/DSC_0042_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @chrismatthieu: w00t! RT @Nodester: New websites! First nodejs.org and now nodester.com", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:44:28 +0000", "from_user": "NeCkEr", "from_user_id": 14176673, "from_user_id_str": "14176673", "from_user_name": "NeCkEr", "geo": null, "id": 147733845586870270, "id_str": "147733845586870273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1656954487/imgSnow_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656954487/imgSnow_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Nodester: New websites! First nodejs.org and now nodester.com", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:38:01 +0000", "from_user": "GaruHenr", "from_user_id": 112743376, "from_user_id_str": "112743376", "from_user_name": "Bruno Henrique(Garu)", "geo": null, "id": 147732222248615940, "id_str": "147732222248615936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1551147469/225472_1760698895957_1193588234_31583357_7276793_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1551147469/225472_1760698895957_1193588234_31583357_7276793_n_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Growing Up http://t.co/PD4JktSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:37:13 +0000", "from_user": "errumm", "from_user_id": 42130293, "from_user_id_str": "42130293", "from_user_name": "Lewis Barclay", "geo": null, "id": 147732021073018880, "id_str": "147732021073018880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1607383649/selfportrait001_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607383649/selfportrait001_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Growing Up http://t.co/PD4JktSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:29:03 +0000", "from_user": "jezell", "from_user_id": 15152659, "from_user_id_str": "15152659", "from_user_name": "Jesse Ezell", "geo": null, "id": 147729968779116540, "id_str": "147729968779116544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/57444273/Twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/57444273/Twitter_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Growing Up http://t.co/PD4JktSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:28:37 +0000", "from_user": "OneEyedBum", "from_user_id": 125083073, "from_user_id_str": "125083073", "from_user_name": "Bruno Skvorc", "geo": null, "id": 147729857579728900, "id_str": "147729857579728896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/772964094/oeb1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/772964094/oeb1_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Growing Up http://t.co/PD4JktSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:28:05 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 147729724595118080, "id_str": "147729724595118080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @JavaScriptMN: Get out! http://t.co/NyEuTIYv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:28:04 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147729717909401600, "id_str": "147729717909401601", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Get out! http://t.co/Faifq6fG http://t.co/shnut5tQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:22:31 +0000", "from_user": "JavaScriptMN", "from_user_id": 342644565, "from_user_id_str": "342644565", "from_user_name": "JavaScriptMN", "geo": null, "id": 147728323307511800, "id_str": "147728323307511808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1461917971/jsmn_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1461917971/jsmn_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Get out! http://t.co/NyEuTIYv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:22:09 +0000", "from_user": "Xogost", "from_user_id": 126010186, "from_user_id_str": "126010186", "from_user_name": "Juan Camilo Martinez", "geo": null, "id": 147728229556424700, "id_str": "147728229556424704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699288836/akane_y_yop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699288836/akane_y_yop_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @papachan: node.js v0.6.6 released! http://t.co/skxwZYN5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:21:55 +0000", "from_user": "DiegoUG", "from_user_id": 54656041, "from_user_id_str": "54656041", "from_user_name": "Diego Uribe Gamez", "geo": null, "id": 147728170215424000, "id_str": "147728170215424000", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702546033/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702546033/avatar_normal.jpg", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "#mejorandojs RT @papachan: node.js v0.6.6 released! http://t.co/ygG5khdG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:21:54 +0000", "from_user": "habr7d", "from_user_id": 267450366, "from_user_id_str": "267450366", "from_user_name": "habr7d", "geo": null, "id": 147728167665283070, "id_str": "147728167665283072", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1276280148/habr_bigger_reasonably_small_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1276280148/habr_bigger_reasonably_small_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Node.JS \\u2192 \\u0417\\u0430\\u043F\\u0443\\u0441\\u043A\\u0430\\u0435\\u043C jQuery \\u043D\\u0430 \\u0434\\u0432\\u0438\\u0436\\u043A\\u0435 Node.js \\u0432\\u043C\\u0435\\u0441\\u0442\\u043E \\u0431\\u0440\\u0430\\u0443\\u0437\\u0435\\u0440\\u0430 http://t.co/d8DKr1GW #habr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:21:49 +0000", "from_user": "JoseTorrico", "from_user_id": 173299667, "from_user_id_str": "173299667", "from_user_name": "Jos\\u00E9 Miguel Torrico", "geo": null, "id": 147728145246715900, "id_str": "147728145246715904", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680390805/IMG00126-20100611-0905_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680390805/IMG00126-20100611-0905_normal.jpg", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "RT @DiegoUG: Simple chat for Node.js - http://t.co/MQclglT0 http://t.co/jEm2JPFn - http://t.co/OuTo2DTP #mejorandojs (CC @cvander)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:21:05 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147727962106626050, "id_str": "147727962106626049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Growing Up http://t.co/PD4JktSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:20:54 +0000", "from_user": "papachan", "from_user_id": 9147112, "from_user_id_str": "9147112", "from_user_name": "dan loaiza", "geo": null, "id": 147727914912329730, "id_str": "147727914912329728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1124261113/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1124261113/twitter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "node.js v0.6.6 released! http://t.co/skxwZYN5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:18:27 +0000", "from_user": "surfeurX", "from_user_id": 32346608, "from_user_id_str": "32346608", "from_user_name": "Chouki Amine", "geo": null, "id": 147727300409040900, "id_str": "147727300409040896", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/455598471/8418_1213011442029_1131085804_669771_1459919_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/455598471/8418_1213011442029_1131085804_669771_1459919_n_normal.jpg", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "cloud9 ide vimified http://t.co/Iz8LxqzE #nodejs #cloud9 #vim", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:12:43 +0000", "from_user": "jfroma", "from_user_id": 26559849, "from_user_id_str": "26559849", "from_user_name": "Jos\\u00E9 F. Romaniello", "geo": null, "id": 147725858390552580, "id_str": "147725858390552577", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1152169901/avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1152169901/avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jrdothoughts: @Tellago & @tellagostudios technology Dojo today: NodeJS, Hadoop, Solr, MongoDB in Windows Azure", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:07:07 +0000", "from_user": "archlinuxbot", "from_user_id": 281470434, "from_user_id_str": "281470434", "from_user_name": "Arch Linux Bot", "geo": null, "id": 147724449054081020, "id_str": "147724449054081024", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1310040433/arch_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1310040433/arch_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "nodejs 0.6.6-2 i686 http://t.co/niShpzdH #ArchLinux", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:07:07 +0000", "from_user": "ArchUpdates", "from_user_id": 287085434, "from_user_id_str": "287085434", "from_user_name": "ArchLinux Updates", "geo": null, "id": 147724448018079740, "id_str": "147724448018079745", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1323447710/arch_reasonably_small_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1323447710/arch_reasonably_small_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "nodejs 0.6.6-2 i686 http://t.co/nwGsRgF5 #Archlinux", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:05:12 +0000", "from_user": "chrismatthieu", "from_user_id": 13604142, "from_user_id_str": "13604142", "from_user_name": "Chris Matthieu", "geo": null, "id": 147723966503591940, "id_str": "147723966503591936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/918916153/SuperChrisSmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/918916153/SuperChrisSmall_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "w00t! RT @Nodester: New websites! First nodejs.org and now nodester.com", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:05:05 +0000", "from_user": "freakyfractal", "from_user_id": 120607945, "from_user_id_str": "120607945", "from_user_name": "freakyfractal", "geo": null, "id": 147723934886928400, "id_str": "147723934886928387", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1258082617/AIbEiAIAAABDCNWFm6WlpNPCXiILdmNhcmRfcGhvdG8qKDU5ZWQ4YjVhMDQ1OTVkZDZiMTA0MmQzMThhYWEwNjA1ZTliZDEwNmIwAVVer_kaEZb3D7oC3UHv6a_VSntv_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1258082617/AIbEiAIAAABDCNWFm6WlpNPCXiILdmNhcmRfcGhvdG8qKDU5ZWQ4YjVhMDQ1OTVkZDZiMTA0MmQzMThhYWEwNjA1ZTliZDEwNmIwAVVer_kaEZb3D7oC3UHv6a_VSntv_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "Open Source Node.JS PaaS @Nodester gets new site design: http://t.co/f4SaL8vh #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:04:56 +0000", "from_user": "Nodester", "from_user_id": 240751001, "from_user_id_str": "240751001", "from_user_name": "Nodester", "geo": null, "id": 147723898883018750, "id_str": "147723898883018752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "New websites! First nodejs.org and now nodester.com", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:04:21 +0000", "from_user": "ChristianMania", "from_user_id": 95129685, "from_user_id_str": "95129685", "from_user_name": "Christian Luna", "geo": null, "id": 147723752828977150, "id_str": "147723752828977153", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/562672798/Christianmania_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/562672798/Christianmania_normal.gif", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "RT @DiegoUG: Simple chat for Node.js - http://t.co/MQclglT0 http://t.co/jEm2JPFn - http://t.co/OuTo2DTP #mejorandojs (CC @cvander)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:03:06 +0000", "from_user": "zheref", "from_user_id": 186562635, "from_user_id_str": "186562635", "from_user_name": "Sergio Daniel Lozano", "geo": null, "id": 147723436863660030, "id_str": "147723436863660033", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1625311252/avatarNeoGenerationTwitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1625311252/avatarNeoGenerationTwitter_normal.png", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "RT @DiegoUG: Simple chat for Node.js - http://t.co/MQclglT0 http://t.co/jEm2JPFn - http://t.co/OuTo2DTP #mejorandojs (CC @cvander)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:02:58 +0000", "from_user": "cif", "from_user_id": 11799242, "from_user_id_str": "11799242", "from_user_name": "cif", "geo": null, "id": 147723403883847680, "id_str": "147723403883847680", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1136680961/fotoProjects_Cartoonizer_8_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1136680961/fotoProjects_Cartoonizer_8_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Para procesar web hooks: hook.io - the node.js web hook platform - http://t.co/htQ8Vfmv #nodejs #hook.io", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:00:50 +0000", "from_user": "monkeyonahill", "from_user_id": 55155032, "from_user_id_str": "55155032", "from_user_name": "James Tryand", "geo": null, "id": 147722867159744500, "id_str": "147722867159744512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/354233697/moah2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/354233697/moah2_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @dfinke: Manage #Nodejs applications hosted in Windows #Azure using a set of new #PowerShell cmdlets http://t.co/7GzIAu31", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:59:28 +0000", "from_user": "velvetflair", "from_user_id": 14651376, "from_user_id_str": "14651376", "from_user_name": "Shahriar Hyder", "geo": null, "id": 147722521901404160, "id_str": "147722521901404160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1016584964/4487ddc4-d6c0-48ad-aad5-fd663766182b_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1016584964/4487ddc4-d6c0-48ad-aad5-fd663766182b_normal.png", "source": "<a href="http://tweetmeme.com" rel="nofollow">TweetMeme</a>", "text": "RT @pkrumins Node.js modules you should know about: request - good coders code, great reuse http://t.co/5XRiQrpi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:54:44 +0000", "from_user": "DiegoUG", "from_user_id": 54656041, "from_user_id_str": "54656041", "from_user_name": "Diego Uribe Gamez", "geo": null, "id": 147721332979798000, "id_str": "147721332979798017", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702546033/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702546033/avatar_normal.jpg", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "Simple chat for Node.js - http://t.co/MQclglT0 http://t.co/jEm2JPFn - http://t.co/OuTo2DTP #mejorandojs (CC @cvander)", "to_user": "cvander", "to_user_id": 817789, "to_user_id_str": "817789", "to_user_name": "Christian Van Der H", "in_reply_to_status_id": 147717802369875970, "in_reply_to_status_id_str": "147717802369875968"}, +{"created_at": "Fri, 16 Dec 2011 16:48:52 +0000", "from_user": "dfinke", "from_user_id": 7476192, "from_user_id_str": "7476192", "from_user_name": "doug finke", "geo": null, "id": 147719854835765250, "id_str": "147719854835765249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1250974814/articWolf_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1250974814/articWolf_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Manage #Nodejs applications hosted in Windows #Azure using a set of new #PowerShell cmdlets http://t.co/7GzIAu31", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:44:53 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 147718850304155650, "id_str": "147718850304155648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @Leo_lopezg NodeJsCommunity: Benchmarking Node.js - basic performance tests against Apache + PHP http://t.co/07HzYJSi http://t...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:44:52 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 147718847393316860, "id_str": "147718847393316864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @ronkorving @ryah when is 0.7 going to end up on http://t.co/22odtuKE?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:44:51 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 147718842943152130, "id_str": "147718842943152129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @andyyu0920 NodeJsCommunity: Node.js tools and resources #nodejs http://t.co/BIOhAKmv http://t.co/z3cWtKPU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:43:59 +0000", "from_user": "vicrosoft", "from_user_id": 276769968, "from_user_id_str": "276769968", "from_user_name": "Victor H. Zevallos", "geo": null, "id": 147718625422356480, "id_str": "147718625422356480", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1512432014/E1yMU9zE_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1512432014/E1yMU9zE_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@cvander cuando cuelgan el video de NodeJs. ... .es un tema muy importante ojala se hable mas ...saludos desde Peru!", "to_user": "cvander", "to_user_id": 817789, "to_user_id_str": "817789", "to_user_name": "Christian Van Der H", "in_reply_to_status_id": 147718121078263800, "in_reply_to_status_id_str": "147718121078263808"}, +{"created_at": "Fri, 16 Dec 2011 16:40:55 +0000", "from_user": "8khan", "from_user_id": 70708756, "from_user_id_str": "70708756", "from_user_name": "khan-oke \\u2713", "geo": null, "id": 147717851862671360, "id_str": "147717851862671361", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1679849752/twrt_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679849752/twrt_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "RT @cvander: Aprendiendo de los m\\u00F3dulos de node.js. http://t.co/d7yl7vwy #mejorandojs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Fri, 16 Dec 2011 16:39:29 +0000", "from_user": "cvander", "from_user_id": 817789, "from_user_id_str": "817789", "from_user_name": "Christian Van Der H", "geo": null, "id": 147717494000451600, "id_str": "147717494000451585", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1559412162/cevy_lengua_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1559412162/cevy_lengua_normal.png", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "Aprendiendo de los m\\u00F3dulos de node.js. http://t.co/d7yl7vwy #mejorandojs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:38:17 +0000", "from_user": "Leo_lopezg", "from_user_id": 123842058, "from_user_id_str": "123842058", "from_user_name": "leandro lopez", "geo": null, "id": 147717193205940220, "id_str": "147717193205940224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1232561117/173433_1073825249_4161880_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1232561117/173433_1073825249_4161880_n_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Benchmarking Node.js - basic performance tests against Apache + PHP http://t.co/PMJCJmhs http://t.co/UriwafSL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:31:53 +0000", "from_user": "jrdothoughts", "from_user_id": 375678020, "from_user_id_str": "375678020", "from_user_name": "Jesus Rodriguez", "geo": null, "id": 147715579166457860, "id_str": "147715579166457856", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1548567084/JR_Headshot_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1548567084/JR_Headshot_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@Tellago & @tellagostudios technology Dojo today: NodeJS, Hadoop, Solr, MongoDB in Windows Azure", "to_user": "Tellago", "to_user_id": 56425625, "to_user_id_str": "56425625", "to_user_name": "Tellago"}, +{"created_at": "Fri, 16 Dec 2011 16:27:10 +0000", "from_user": "archlinuxbot", "from_user_id": 281470434, "from_user_id_str": "281470434", "from_user_name": "Arch Linux Bot", "geo": null, "id": 147714394451742720, "id_str": "147714394451742721", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1310040433/arch_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1310040433/arch_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "nodejs 0.6.6-1 x86_64 http://t.co/NoJ0PZdQ #ArchLinux", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:27:09 +0000", "from_user": "archlinuxbot", "from_user_id": 281470434, "from_user_id_str": "281470434", "from_user_name": "Arch Linux Bot", "geo": null, "id": 147714391268274180, "id_str": "147714391268274176", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1310040433/arch_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1310040433/arch_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "nodejs 0.6.6-1 i686 http://t.co/5OCToHCa #ArchLinux", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:27:08 +0000", "from_user": "ArchUpdates", "from_user_id": 287085434, "from_user_id_str": "287085434", "from_user_name": "ArchLinux Updates", "geo": null, "id": 147714386843279360, "id_str": "147714386843279360", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1323447710/arch_reasonably_small_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1323447710/arch_reasonably_small_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "nodejs 0.6.6-1 i686 http://t.co/ToDerCKS #Archlinux", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:26:46 +0000", "from_user": "ar3_me", "from_user_id": 16725749, "from_user_id_str": "16725749", "from_user_name": "Andrew Robinson III", "geo": null, "id": 147714291955531780, "id_str": "147714291955531777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/388378070/Profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/388378070/Profile_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@colinmathews I remember you saying to me that you would seriously consider rewriting your entire app in @nodejs...back then I just laughed.", "to_user": "colinmathews", "to_user_id": 17295221, "to_user_id_str": "17295221", "to_user_name": "Colin Mathews"}, +{"created_at": "Fri, 16 Dec 2011 16:16:45 +0000", "from_user": "twitinsin", "from_user_id": 61176621, "from_user_id_str": "61176621", "from_user_name": "Jonathan Buchanan", "geo": null, "id": 147711773624111100, "id_str": "147711773624111104", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1357049977/adventurer_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1357049977/adventurer_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Wee dirty server. mate: http://t.co/qAerxPQy #nodejs #DOMBuilder", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:14:36 +0000", "from_user": "nuHrep", "from_user_id": 233952060, "from_user_id_str": "233952060", "from_user_name": "\\u0412\\u0435\\u0441\\u0435\\u043B\\u044B\\u0439 \\u0411\\u0438\\u043B", "geo": null, "id": 147711231346741250, "id_str": "147711231346741248", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1206846511/astronaut_2_a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1206846511/astronaut_2_a_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "#habr Node.JS / \\u0417\\u0430\\u043F\\u0443\\u0441\\u043A\\u0430\\u0435\\u043C jQuery \\u043D\\u0430 \\u0434\\u0432\\u0438\\u0436\\u043A\\u0435 Node.js \\u0432\\u043C\\u0435\\u0441\\u0442\\u043E \\u0431\\u0440\\u0430\\u0443\\u0437\\u0435\\u0440\\u0430 http://t.co/NWggGLAw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:13:03 +0000", "from_user": "ronkorving", "from_user_id": 97658542, "from_user_id_str": "97658542", "from_user_name": "Ron Korving", "geo": null, "id": 147710841725259780, "id_str": "147710841725259777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1590707510/me3-big_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1590707510/me3-big_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@ryah when is 0.7 going to end up on blog.nodejs.org?", "to_user": "ryah", "to_user_id": 18975861, "to_user_id_str": "18975861", "to_user_name": "Ryan Dahl"}, +{"created_at": "Fri, 16 Dec 2011 16:12:34 +0000", "from_user": "andyyu0920", "from_user_id": 13848382, "from_user_id_str": "13848382", "from_user_name": "AndyYou(ZongYanYou)", "geo": null, "id": 147710719062839300, "id_str": "147710719062839296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1547771401/2011-09-12_11.08.44_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1547771401/2011-09-12_11.08.44_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Node.js tools and resources #nodejs http://t.co/zX6zEqz7 http://t.co/yKJMrXyk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:00:29 +0000", "from_user": "Elving", "from_user_id": 16748083, "from_user_id_str": "16748083", "from_user_name": "Elving Rodriguez\\n", "geo": null, "id": 147707679069044740, "id_str": "147707679069044736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1250861290/8-BITAVAR_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1250861290/8-BITAVAR_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@NodeJsCommunity: Node.js tools and resources #nodejs http://t.co/l4lD61yV http://t.co/pPH6bWcK\\u201D #osom", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:59:17 +0000", "from_user": "kimdogfoot", "from_user_id": 21736041, "from_user_id_str": "21736041", "from_user_name": "\\uAE40\\uAC1C\\uBC1C", "geo": null, "id": 147707377309843460, "id_str": "147707377309843457", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1645518311/profle00_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645518311/profle00_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Node.js tools and resources #nodejs http://t.co/zX6zEqz7 http://t.co/yKJMrXyk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:59:06 +0000", "from_user": "xthr3mx", "from_user_id": 270097469, "from_user_id_str": "270097469", "from_user_name": "xthr3mx", "geo": null, "id": 147707330916646900, "id_str": "147707330916646912", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1349701760/other_side3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1349701760/other_side3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@cvander el fin de semana tendre tiempo, que te parece si te envio algo utilizando nodejs+express+stylus+jade+...?", "to_user": "cvander", "to_user_id": 817789, "to_user_id_str": "817789", "to_user_name": "Christian Van Der H"}, +{"created_at": "Fri, 16 Dec 2011 15:56:55 +0000", "from_user": "mwjacks0n", "from_user_id": 83657910, "from_user_id_str": "83657910", "from_user_name": "Matt Jackson", "geo": null, "id": 147706781538320400, "id_str": "147706781538320384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/484767477/South_Park_Avatar1-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/484767477/South_Park_Avatar1-1_normal.jpg", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "@raoulmillais extra shiny :) http://t.co/QH5L8pWD", "to_user": "raoulmillais", "to_user_id": 29564713, "to_user_id_str": "29564713", "to_user_name": "Raoul Millais", "in_reply_to_status_id": 147703183987322880, "in_reply_to_status_id_str": "147703183987322880"}, +{"created_at": "Fri, 16 Dec 2011 15:54:46 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 147706238233350140, "id_str": "147706238233350144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://plusbounce.com/" rel="nofollow">PlusBounce</a>", "text": "RT @seyhunak: Node.js tools and resources #nodejs http://t.co/7QQucUal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:54:44 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147706230876545020, "id_str": "147706230876545024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Node.js tools and resources #nodejs http://t.co/zX6zEqz7 http://t.co/yKJMrXyk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:54:05 +0000", "from_user": "seyhunak", "from_user_id": 21591510, "from_user_id_str": "21591510", "from_user_name": "Seyhun AKY\\u00DCREK", "geo": null, "id": 147706068930269200, "id_str": "147706068930269184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1437612555/amatorka_big_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1437612555/amatorka_big_normal.jpg", "source": "<a href="http://plusbounce.com/" rel="nofollow">PlusBounce</a>", "text": "Node.js tools and resources #nodejs http://t.co/7QQucUal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:52:05 +0000", "from_user": "lacosox", "from_user_id": 131728860, "from_user_id_str": "131728860", "from_user_name": "Gustavo Lacoste", "geo": null, "id": 147705563894132740, "id_str": "147705563894132736", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1596276820/275956_731154144_133042306_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596276820/275956_731154144_133042306_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@freddier grabaron ayer el streaming de nodeJS?", "to_user": "freddier", "to_user_id": 16742912, "to_user_id_str": "16742912", "to_user_name": "John Freddy Vega"}, +{"created_at": "Fri, 16 Dec 2011 15:47:26 +0000", "from_user": "emerleite", "from_user_id": 16782712, "from_user_id_str": "16782712", "from_user_name": "Emerson Macedo", "geo": null, "id": 147704394765434880, "id_str": "147704394765434880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1080818173/e4e27ec8-6e67-4316-91c8-3401c72e5ea0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1080818173/e4e27ec8-6e67-4316-91c8-3401c72e5ea0_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: For those wondering, the Rackspace Cloud Monitoring product is mostly written in #Nodejs (Sign up for the private beta!)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:45:43 +0000", "from_user": "estilocss", "from_user_id": 148763456, "from_user_id_str": "148763456", "from_user_name": "Jorge", "geo": null, "id": 147703963855224830, "id_str": "147703963855224832", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1275906340/Sin_t_tulo-1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1275906340/Sin_t_tulo-1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "por fin aprend\\u00ED a usar nodejs gracias @mejorandola \\u00BFpor cierto me podriais explicar para que sirve nodester? @cvander @freddier @neojp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:43:40 +0000", "from_user": "twitinsin", "from_user_id": 61176621, "from_user_id_str": "61176621", "from_user_name": "Jonathan Buchanan", "geo": null, "id": 147703446584299520, "id_str": "147703446584299520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1357049977/adventurer_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1357049977/adventurer_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "#nodejs is awesome. Quick and dirty HTTP server to let the business kick off a temporarily-needed Selenium script on my machine.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:42:19 +0000", "from_user": "majimenezp", "from_user_id": 66774253, "from_user_id_str": "66774253", "from_user_name": "Miguel Jimenez", "geo": +{"coordinates": [18.6561,-91.8283], "type": "Point"}, "id": 147703107642597380, "id_str": "147703107642597376", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1628985965/canti_from_flcl_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628985965/canti_from_flcl_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@proserx mas que diferencias es ver que caracteristicas te acomodan,en lo personal prefiero leng. curly brace como nodejs(jsscript) o C#", "to_user": "proserx", "to_user_id": 202643428, "to_user_id_str": "202643428", "to_user_name": "andres vidal", "in_reply_to_status_id": 147700994107645950, "in_reply_to_status_id_str": "147700994107645952"}, +{"created_at": "Fri, 16 Dec 2011 15:38:09 +0000", "from_user": "rkmathi", "from_user_id": 86049415, "from_user_id_str": "86049415", "from_user_name": "\\u307E\\u3066\\u3043\\u30FC\\u3004", "geo": null, "id": 147702056487092220, "id_str": "147702056487092226", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680934016/miku_gentoo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680934016/miku_gentoo_normal.png", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "\\u3042\\u308C\\u3001Gentoo\\u306Enodejs\\u304C\\u3044\\u3064\\u306E\\u9593\\u306B\\u304B\\u3064\\u304B\\u3048\\u308B\\u3088\\u3046\\u306B\\u306A\\u3063\\u3068\\u308B {YF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:31:33 +0000", "from_user": "majimenezp", "from_user_id": 66774253, "from_user_id_str": "66774253", "from_user_name": "Miguel Jimenez", "geo": +{"coordinates": [18.6612,-91.8032], "type": "Point"}, "id": 147700397333676030, "id_str": "147700397333676032", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1628985965/canti_from_flcl_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628985965/canti_from_flcl_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@proserx umm pero que quieres hacer?apps web,de escritorio? Para web esta ruby on rails,python o nodeJS en ese orden", "to_user": "proserx", "to_user_id": 202643428, "to_user_id_str": "202643428", "to_user_name": "andres vidal", "in_reply_to_status_id": 147698121206530050, "in_reply_to_status_id_str": "147698121206530049"}, +{"created_at": "Fri, 16 Dec 2011 15:31:10 +0000", "from_user": "alosman24", "from_user_id": 25559423, "from_user_id_str": "25559423", "from_user_name": "Al Osman", "geo": null, "id": 147700300650774530, "id_str": "147700300650774529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1604897966/215748_10150149185598046_506638045_6296845_5950591_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1604897966/215748_10150149185598046_506638045_6296845_5950591_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "@NodeJsCommunity Node.js modules you should know about: request - good coders code, great reuse http://t.co/799pGHWD", "to_user": "NodeJsCommunity", "to_user_id": 402824193, "to_user_id_str": "402824193", "to_user_name": "NodeJS Community"}, +{"created_at": "Fri, 16 Dec 2011 15:25:10 +0000", "from_user": "emerleite", "from_user_id": 16782712, "from_user_id_str": "16782712", "from_user_name": "Emerson Macedo", "geo": null, "id": 147698790743281660, "id_str": "147698790743281664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1080818173/e4e27ec8-6e67-4316-91c8-3401c72e5ea0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1080818173/e4e27ec8-6e67-4316-91c8-3401c72e5ea0_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @3rdEden: #nodejs 0.6.6 has been released http://t.co/ipyxqLHs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:23:35 +0000", "from_user": "6matts6", "from_user_id": 60791885, "from_user_id_str": "60791885", "from_user_name": "Matias Sticchi", "geo": null, "id": 147698392196317200, "id_str": "147698392196317184", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/335454843/tronco_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/335454843/tronco_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Nodejs puede conectar a la misma BD con la que trabajo con php, por ejemplo a mysql? @cvander #mejorandola", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:23:25 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 147698348474900480, "id_str": "147698348474900480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @sandeepmeher: Benchmarking Node.js - basic performance tests against Apache + PHP http://t.co/Kgg90jRE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:23:22 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147698339004153860, "id_str": "147698339004153856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Benchmarking Node.js - basic performance tests against Apache + PHP http://t.co/PMJCJmhs http://t.co/UriwafSL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:19:42 +0000", "from_user": "mickeyyawn", "from_user_id": 57068454, "from_user_id_str": "57068454", "from_user_name": "Mickey Yawn", "geo": null, "id": 147697414080446460, "id_str": "147697414080446467", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1121085819/mick_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1121085819/mick_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "also interesting was that #nodejs was \"trending\". oh, I think it's more than a trend at this point!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:18:28 +0000", "from_user": "mikehenke", "from_user_id": 17878766, "from_user_id_str": "17878766", "from_user_name": "mikehenke", "geo": null, "id": 147697104565968900, "id_str": "147697104565968896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1603204237/grav_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1603204237/grav_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @bdcravens: finally writing some of my first front-end #nodejs code", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:17:57 +0000", "from_user": "victormalyy", "from_user_id": 102333434, "from_user_id_str": "102333434", "from_user_name": "Victor Malyy", "geo": null, "id": 147696976492888060, "id_str": "147696976492888064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/613996746/IMG_6837_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/613996746/IMG_6837_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "No just brains RT @lc0d3r: Is anyone going to use #nodejs at #doumixer?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:17:00 +0000", "from_user": "helsinkijs", "from_user_id": 427202134, "from_user_id_str": "427202134", "from_user_name": "HelsinkiJS", "geo": null, "id": 147696735676932100, "id_str": "147696735676932096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670980593/js_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670980593/js_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @EsaMatti: We just released the code of my first project at @opinsys http://t.co/wTaaVIAs #nodejs #html5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:16:42 +0000", "from_user": "odoenet", "from_user_id": 84098365, "from_user_id_str": "84098365", "from_user_name": "Rene R.", "geo": null, "id": 147696659403517950, "id_str": "147696659403517953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1269097454/gr_sneakpeak_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1269097454/gr_sneakpeak_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "RT @elijahmanor: \"Intro to Node.JS for .NET Developers\" by @aaronontheweb #javascript http://t.co/fvwMgwnv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:13:29 +0000", "from_user": "sandeepmeher", "from_user_id": 40974713, "from_user_id_str": "40974713", "from_user_name": "Sandeep Meher", "geo": null, "id": 147695849743454200, "id_str": "147695849743454208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/378129336/SRM2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/378129336/SRM2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Benchmarking Node.js - basic performance tests against Apache + PHP http://t.co/Kgg90jRE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:12:08 +0000", "from_user": "ringspun", "from_user_id": 17811371, "from_user_id_str": "17811371", "from_user_name": "DH", "geo": null, "id": 147695509358919680, "id_str": "147695509358919680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1369755337/eightbit-b03b47ae-07ed-4c71-866d-124e4205cc95_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1369755337/eightbit-b03b47ae-07ed-4c71-866d-124e4205cc95_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@jtclancey playing w/ GoogleMusic+NodeJs. Authd, got playlist etc - stuck on getting audio stream given a track ID. Any tips appreciatd. DM?", "to_user": "jtclancey", "to_user_id": 74326551, "to_user_id_str": "74326551", "to_user_name": "James Clancey", "in_reply_to_status_id": 147692230088462340, "in_reply_to_status_id_str": "147692230088462336"}, +{"created_at": "Fri, 16 Dec 2011 15:03:53 +0000", "from_user": "jonbros", "from_user_id": 14322420, "from_user_id_str": "14322420", "from_user_name": "Henning Kropp", "geo": null, "id": 147693436433207300, "id_str": "147693436433207296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1458406783/PC270242_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1458406783/PC270242_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Node.js Developer Center for @WindowsAzure http://t.co/qZ11Vyrh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:03:27 +0000", "from_user": "alessioalex", "from_user_id": 159135821, "from_user_id_str": "159135821", "from_user_name": "alessio alex", "geo": null, "id": 147693325489668100, "id_str": "147693325489668097", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1020302694/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1020302694/avatar_normal.jpg", "source": "<a href="http://proxlet.com" rel="nofollow">Proxlet</a>", "text": "node-growl - growl unobtrusive notification system for #nodejs by @tjholowaychuk http://t.co/RZgwA99y", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:02:14 +0000", "from_user": "ZiTAL", "from_user_id": 35194560, "from_user_id_str": "35194560", "from_user_name": "ZiTAL", "geo": null, "id": 147693020463104000, "id_str": "147693020463104000", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1615728104/IMG_8549_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615728104/IMG_8549_normal.JPG", "source": "<a href="http://identi.ca" rel="nofollow">identica</a>", "text": "RT @Neustradamus: node.js 0.6.6 has been released ( #node #nodejs ) http://t.co/miQF0vlk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:00:38 +0000", "from_user": "squarism", "from_user_id": 4112941, "from_user_id_str": "4112941", "from_user_name": "Chris Dillon", "geo": null, "id": 147692616102838270, "id_str": "147692616102838272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1240746588/mug_3.1_box_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1240746588/mug_3.1_box_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@mattbuller Why nodejs? Because javascript can't write files and open sockets. :D", "to_user": "mattbuller", "to_user_id": 46192138, "to_user_id_str": "46192138", "to_user_name": "Matt Buller", "in_reply_to_status_id": 147610673579438080, "in_reply_to_status_id_str": "147610673579438081"}, +{"created_at": "Fri, 16 Dec 2011 15:00:10 +0000", "from_user": "FGRibreau", "from_user_id": 5719692, "from_user_id_str": "5719692", "from_user_name": "Fran\\u00E7ois-G. Ribreau", "geo": null, "id": 147692499958382600, "id_str": "147692499958382592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1117780106/2009_shooting_medium_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1117780106/2009_shooting_medium_normal.png", "source": "<a href="http://fgribreau.com" rel="nofollow">FG</a>", "text": "Require-all - An easy way to require all files within a directory. #NodeJS http://t.co/PqeaqTFi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:55:38 +0000", "from_user": "martinhaynes", "from_user_id": 17676034, "from_user_id_str": "17676034", "from_user_name": "Martin Haynes", "geo": null, "id": 147691359023796220, "id_str": "147691359023796224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1343239031/icon_flat_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1343239031/icon_flat_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "ohhh the new #NodeJS Site looks awesome..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:53:57 +0000", "from_user": "nodebiscut", "from_user_id": 410338433, "from_user_id_str": "410338433", "from_user_name": "nodebiscut", "geo": null, "id": 147690933796864000, "id_str": "147690933796864001", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1635738119/eightbit-7d092f1b-9a4f-44cc-879e-6b3d80e6079e_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635738119/eightbit-7d092f1b-9a4f-44cc-879e-6b3d80e6079e_normal.png", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "pixel-tracker, a simple pixel tracker for #nodejs - http://t.co/a9W4zfL5 /via analyticsmachine", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:53:31 +0000", "from_user": "silentroach", "from_user_id": 8736072, "from_user_id_str": "8736072", "from_user_name": "Igor Kalashnikov", "geo": null, "id": 147690825747402750, "id_str": "147690825747402752", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1161213330/1265377_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1161213330/1265377_normal.jpg", "source": "<a href="http://twicext.com" rel="nofollow">Twic Extension</a>", "text": "http://t.co/XSLti9Vp \\u041E\\u0433\\u043E, \\u043B\\u044E\\u0434\\u0438 \\u043F\\u043E\\u043B\\u044C\\u0437\\u0443\\u044E\\u0442 jQuery \\u0434\\u0430\\u0436\\u0435 \\u0432 Node.js. \\u042F \\u0441\\u0447\\u0438\\u0442\\u0430\\u044E, \\u044D\\u0442\\u043E \\u0443\\u0436\\u0435 \\u043F\\u043E\\u0441\\u043B\\u0435\\u0434\\u043D\\u044F\\u044F \\u0441\\u0442\\u0430\\u0434\\u0438\\u044F \\u0440\\u0430\\u043A\\u0430 \\u043C\\u043E\\u0437\\u0433\\u0430.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:51:02 +0000", "from_user": "tansuozmen", "from_user_id": 15806958, "from_user_id_str": "15806958", "from_user_name": "Tansu Ozmen", "geo": null, "id": 147690200775131140, "id_str": "147690200775131136", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/377031287/Tansu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/377031287/Tansu_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Intro to Node.JS for .NET Developers - http://t.co/OIHqfnlw #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:50:23 +0000", "from_user": "Ys3ayeDL", "from_user_id": 152264298, "from_user_id_str": "152264298", "from_user_name": "morita", "geo": null, "id": 147690037297946620, "id_str": "147690037297946624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://sproutsocial.com" rel="nofollow">Sprout Social</a>", "text": "RT @linuxfoundation: Top 10 OSS Projects of '11. http://t.co/FWeyc8TF Did your fave make the list? #nginx #jQuery #linux #nodejs #puppet...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:48:40 +0000", "from_user": "OfficeWriter", "from_user_id": 302228792, "from_user_id_str": "302228792", "from_user_name": "OfficeWriter", "geo": null, "id": 147689605158797300, "id_str": "147689605158797313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1486919962/DSC_1540_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1486919962/DSC_1540_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Windows #Azure SDK for #Nodejs lets you build, deploy and manage Node apps in Azure using #PowerShell cmdlets! http://t.co/R43Xx0CY @gblock", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:48:33 +0000", "from_user": "hacksparrow", "from_user_id": 45615658, "from_user_id_str": "45615658", "from_user_name": "Hack Sparrow", "geo": null, "id": 147689575794475000, "id_str": "147689575794475009", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/721961044/jack_sparrow_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/721961044/jack_sparrow_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Node.js + Amazon S3 How To - http://t.co/oQA1Xc7e #nodejs #amazons3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:48:26 +0000", "from_user": "bergie", "from_user_id": 639003, "from_user_id_str": "639003", "from_user_name": "Henri Bergius", "geo": null, "id": 147689547763957760, "id_str": "147689547763957760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1170653292/bergie_haydarpasa2_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1170653292/bergie_haydarpasa2_small_normal.jpg", "source": "<a href="http://swipe.nokia.com/" rel="nofollow">Tweet from Nokia N9</a>", "text": "spent the day with #NodeJS on #Azure. Works well but needs Windows to dev and is poorly documented", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:44:48 +0000", "from_user": "ClaudeCK", "from_user_id": 25229814, "from_user_id_str": "25229814", "from_user_name": "John Claude", "geo": null, "id": 147688631799259140, "id_str": "147688631799259136", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u4E0B\\u5348\\u7528nodejs\\u505A\\u4E86\\u4E00\\u4E9Bapache logs\\u7684\\u5206\\u6790\\u3002\\u867D\\u7136node\\u6700\\u8FD1\\u88AB\\u7092\\u5F97\\u5F88\\u70ED\\uFF0C\\u4F46\\u662F\\u90A3\\u79CD\\u51E0\\u4E4E\\u5168\\u90E8\\u5F02\\u6B65\\u8C03\\u7528\\u7684\\u4EE3\\u7801\\u771F\\u7684\\u633A\\u6076\\u5FC3\\u7684\\u3002\\u5199\\u5F97\\u4E0D\\u597D\\u5C31\\u5BB9\\u6613\\u62EC\\u53F7\\u5957\\u62EC\\u53F7\\uFF0C\\u65E0\\u7A77\\u5D4C\\u5957{{{{T_T}}}}", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:42:53 +0000", "from_user": "Neustradamus", "from_user_id": 437333, "from_user_id_str": "437333", "from_user_name": "Neustradamus", "geo": null, "id": 147688151081689100, "id_str": "147688151081689088", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1493435214/Penguin_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1493435214/Penguin_normal.jpg", "source": "<a href="http://identi.ca" rel="nofollow">identica</a>", "text": "node.js 0.6.6 has been released ( #node #nodejs ) http://t.co/miQF0vlk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:40:16 +0000", "from_user": "sother", "from_user_id": 52273515, "from_user_id_str": "52273515", "from_user_name": "Luciano Sother", "geo": null, "id": 147687490277482500, "id_str": "147687490277482497", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1463500633/sother_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1463500633/sother_normal.jpg", "source": "<a href="http://www.twimbow.com" rel="nofollow">Twimbow</a>", "text": "Novo site do node.js http://t.co/WnEg0prk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:35:57 +0000", "from_user": "Donny_V", "from_user_id": 14955023, "from_user_id_str": "14955023", "from_user_name": "Donny Velazquez", "geo": null, "id": 147686404913246200, "id_str": "147686404913246208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1409947078/ProfilePic_Twitter01_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1409947078/ProfilePic_Twitter01_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "RT @elijahmanor: \"Intro to Node.JS for .NET Developers\" by @aaronontheweb #javascript http://t.co/fvwMgwnv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:29:19 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 147684736628826100, "id_str": "147684736628826112", "iso_language_code": "eo", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "7digital-api (0.4.1): http://t.co/QEBywYgw Simple 7digital API wrapper for nodeJS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:21:16 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 147682709295202300, "id_str": "147682709295202304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://twitter-chrome.com" rel="nofollow">chrome-share</a>", "text": "RT @aslamnd: Node.js's Official Web Site Gets a Redesign http://t.co/qfdzMH76", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:21:14 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147682700717858800, "id_str": "147682700717858817", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Node.js's Official Web Site Gets a Redesign http://t.co/nDblbEcc http://t.co/SqGiKOk9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:19:30 +0000", "from_user": "erickpatrick", "from_user_id": 20648766, "from_user_id_str": "20648766", "from_user_name": "Erick Patrick", "geo": null, "id": 147682266854858750, "id_str": "147682266854858752", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1417555002/Avatar-Pedro-II_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1417555002/Avatar-Pedro-II_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Olha s\\u00F3, o site do Node.js foi repaginado! Ficou bem melhor assim, viu? http://t.co/4D9bTYTm #Nodejs #JavaScript", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:14:50 +0000", "from_user": "yrezgui", "from_user_id": 7168842, "from_user_id_str": "7168842", "from_user_name": "Yacine Rezgui", "geo": null, "id": 147681091485044740, "id_str": "147681091485044736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1020475002/hey_hey_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1020475002/hey_hey_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJSAtSO: NodeJS, Multi-FileWatcher, Socket.IO and interaction with the client http://t.co/NSl9L8Op", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:14:42 +0000", "from_user": "yrezgui", "from_user_id": 7168842, "from_user_id_str": "7168842", "from_user_name": "Yacine Rezgui", "geo": null, "id": 147681056865255420, "id_str": "147681056865255424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1020475002/hey_hey_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1020475002/hey_hey_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @brauliobo: \"Benchmarking Node.js - basic performance tests against Apache + PHP :: Change(b)log\" http://t.co/lRnYrSmv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:08:05 +0000", "from_user": "stevebennett", "from_user_id": 10097522, "from_user_id_str": "10097522", "from_user_name": "Steve Bennett", "geo": null, "id": 147679392884195330, "id_str": "147679392884195328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1060826367/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1060826367/profile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Playing with @nodejs to back up the contents of a @basho riak cluster. So far it's all very straightforward.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:56:59 +0000", "from_user": "squdgy", "from_user_id": 82207593, "from_user_id_str": "82207593", "from_user_name": "Maura Wilder", "geo": null, "id": 147676599255437300, "id_str": "147676599255437312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/875294733/kayak_avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/875294733/kayak_avatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Windows Azure SDK for Node.js http://t.co/H8kPZIXy - got to find time to try this", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:56:34 +0000", "from_user": "larrywanzer", "from_user_id": 31208028, "from_user_id_str": "31208028", "from_user_name": "Larry Wanzer", "geo": null, "id": 147676492107759600, "id_str": "147676492107759616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/186362352/pierce_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/186362352/pierce_normal.jpeg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Mock Testing CouchDB in node.js with Nock and TAP http://t.co/CRmlvxpZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:49:48 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 147674791359426560, "id_str": "147674791359426560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://proxlet.com" rel="nofollow">Proxlet</a>", "text": "RT @alessioalex: Open source multiplayer mahjong using HTML5, Node.js, Socket.io and MongoDB released: http://t.co/cYMGK0k1 #nodejs #mongodb #html5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:44:45 +0000", "from_user": "tw_top_1z2n8rp", "from_user_id": 373516096, "from_user_id_str": "373516096", "from_user_name": "Top Weapons for E...", "geo": null, "id": 147673519554166800, "id_str": "147673519554166785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @WindowsAzure: Did you miss the Learn #Windows #Azure event Tuesday? The video is up on @ch9 http://t.co/UL6e4F5k #SQLAzure #nodejs /via @SyntaxC4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:43:58 +0000", "from_user": "ricardomedinaa", "from_user_id": 47125047, "from_user_id_str": "47125047", "from_user_name": "Ricardo Medina", "geo": null, "id": 147673322816159740, "id_str": "147673322816159744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/406051149/Me_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/406051149/Me_normal.PNG", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @WindowsAzure: Did you miss the Learn #Windows #Azure event Tuesday? The video is up on @ch9 http://t.co/UL6e4F5k #SQLAzure #nodejs /via @SyntaxC4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:43:24 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 147673179404509200, "id_str": "147673179404509184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @rene_redsofa NodeJsCommunity: Open sourcing a realtime mahjong: http://t.co/MbqomYL6 #nodejs #socketio #html5 http://t.co/4wiMgMRS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:34:13 +0000", "from_user": "alessioalex", "from_user_id": 159135821, "from_user_id_str": "159135821", "from_user_name": "alessio alex", "geo": null, "id": 147670868066185200, "id_str": "147670868066185217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1020302694/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1020302694/avatar_normal.jpg", "source": "<a href="http://proxlet.com" rel="nofollow">Proxlet</a>", "text": "Open source multiplayer mahjong using HTML5, Node.js, Socket.io and MongoDB released: http://t.co/cYMGK0k1 #nodejs #mongodb #html5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:33:24 +0000", "from_user": "kgmyh", "from_user_id": 60057133, "from_user_id_str": "60057133", "from_user_name": "\\uAE40\\uC131\\uD658", "geo": null, "id": 147670662436241400, "id_str": "147670662436241408", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1587626245/040106_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587626245/040106_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"Video: CakePHP and Node.js\" http://t.co/eeW2Tju5 #CakePHP #PHP #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:33:13 +0000", "from_user": "devworx", "from_user_id": 362704376, "from_user_id_str": "362704376", "from_user_name": "devworx", "geo": null, "id": 147670616315670530, "id_str": "147670616315670528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668310461/sq-endmark4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668310461/sq-endmark4_normal.jpg", "source": "<a href="http://sproutsocial.com" rel="nofollow">Sprout Social</a>", "text": "RT @linuxfoundation: Top 10 OSS Projects of '11. http://t.co/FWeyc8TF Did your fave make the list? #nginx #jQuery #linux #nodejs #puppet...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:22:16 +0000", "from_user": "rene_redsofa", "from_user_id": 20738201, "from_user_id_str": "20738201", "from_user_name": "Rene Richard", "geo": null, "id": 147667860901212160, "id_str": "147667860901212160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1658797812/2e721bc8d8dcbfd6024187735df8e4e4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658797812/2e721bc8d8dcbfd6024187735df8e4e4_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Open sourcing a realtime mahjong: http://t.co/uhDpnM1M #nodejs #socketio #html5 http://t.co/G3Cx6Lwy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:18:05 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147666810983026700, "id_str": "147666810983026688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Open sourcing a realtime mahjong: http://t.co/uhDpnM1M #nodejs #socketio #html5 http://t.co/G3Cx6Lwy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:09:01 +0000", "from_user": "felipernb", "from_user_id": 5610932, "from_user_id_str": "5610932", "from_user_name": "Felipe Ribeiro", "geo": null, "id": 147664528421814270, "id_str": "147664528421814273", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662468524/scanned-page-Z7ES5V_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662468524/scanned-page-Z7ES5V_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Blazing fast node.js: 10 performance tips from LinkedIn Mobile | LinkedIn Engineering http://t.co/Ays2fsoS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:05:22 +0000", "from_user": "enriclluelles", "from_user_id": 57446166, "from_user_id_str": "57446166", "from_user_name": "Enric Lluelles", "geo": null, "id": 147663609332367360, "id_str": "147663609332367360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/317069007/thumbbig-Anime-Cowboy-Bebop-11840_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/317069007/thumbbig-Anime-Cowboy-Bebop-11840_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @masylum: Open sourcing a realtime mahjong: http://t.co/CXBy3dtr #nodejs #socketio #html5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:58:37 +0000", "from_user": "stackfeed", "from_user_id": 237310237, "from_user_id_str": "237310237", "from_user_name": "StackOverflow", "geo": null, "id": 147661909523570700, "id_str": "147661909523570688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NodeJS|Cluster: How to send data from master to to all or single child/workers?: I have working (stock) script f... http://t.co/ZNdLiZfR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:40:46 +0000", "from_user": "DZone", "from_user_id": 14782935, "from_user_id_str": "14782935", "from_user_name": "DZone", "geo": null, "id": 147657416467681280, "id_str": "147657416467681280", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/258714549/dzone-square-256_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/258714549/dzone-square-256_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\"Video: CakePHP and Node.js\" http://t.co/eeW2Tju5 #CakePHP #PHP #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:35:31 +0000", "from_user": "pronebird", "from_user_id": 71172931, "from_user_id_str": "71172931", "from_user_name": "Andrej", "geo": null, "id": 147656098143420400, "id_str": "147656098143420416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688758426/479d1477ee1c9e0e042247e126c14cafb2537786e1885813083e3350502e8557.300x300_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688758426/479d1477ee1c9e0e042247e126c14cafb2537786e1885813083e3350502e8557.300x300_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "well, redis works and looks fast, I believe it's quite good solution for often changing session storage. #nodejs #redis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:21:32 +0000", "from_user": "timacheson", "from_user_id": 23962971, "from_user_id_str": "23962971", "from_user_name": "Tim Acheson", "geo": null, "id": 147652579705368580, "id_str": "147652579705368576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1167635492/Tim_Acheson_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1167635492/Tim_Acheson_normal.jpg", "source": "<a href="http://pluggio.com" rel="nofollow">Pluggio</a>", "text": "RT @jeremylikness: #NodeJS in #Windows #Azure - to the cloud and beyond by @gblock http://t.co/QwCsITBo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:21:22 +0000", "from_user": "GotNoSugarBaby", "from_user_id": 242235575, "from_user_id_str": "242235575", "from_user_name": "Jamie Mason", "geo": null, "id": 147652535493214200, "id_str": "147652535493214208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1675241788/Tashvatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675241788/Tashvatar_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: New release: Chai is a BDD/TDD assertion library for #nodejs and browser that is test framework agnostic. http:/... http://t.co/sZBtlvqT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:16:29 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 147651305471619070, "id_str": "147651305471619072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @jakeluer: New release: Chai is a BDD/TDD assertion library for #nodejs and browser that is test framework agnostic. http://t.co/KByhZjAw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:16:27 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147651298848813060, "id_str": "147651298848813057", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "New release: Chai is a BDD/TDD assertion library for #nodejs and browser that is test framework agnostic. http:/... http://t.co/sZBtlvqT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:16:04 +0000", "from_user": "mcfazeli", "from_user_id": 27494875, "from_user_id_str": "27494875", "from_user_name": "Mani C. Fazeli", "geo": null, "id": 147651202186883070, "id_str": "147651202186883072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1613914988/Mani_in_Suit_-_Square_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1613914988/Mani_in_Suit_-_Square_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Node v0.6.6 released http://t.co/LGH5FqF6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:04:54 +0000", "from_user": "jakeluer", "from_user_id": 18062262, "from_user_id_str": "18062262", "from_user_name": "Jake Luer", "geo": null, "id": 147648393622192130, "id_str": "147648393622192128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1607786833/me_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607786833/me_normal.jpeg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "New release: Chai is a BDD/TDD assertion library for #nodejs and browser that is test framework agnostic. http://t.co/KByhZjAw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:03:07 +0000", "from_user": "NunoGodinho", "from_user_id": 9971382, "from_user_id_str": "9971382", "from_user_name": "Nuno Godinho", "geo": null, "id": 147647944638738430, "id_str": "147647944638738432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/831407287/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/831407287/twitterProfilePhoto_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @jeremylikness: #NodeJS in #Windows #Azure - to the cloud and beyond by @gblock http://t.co/3Xxzcgsf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:59:29 +0000", "from_user": "jeremylikness", "from_user_id": 46210370, "from_user_id_str": "46210370", "from_user_name": "Jeremy Likness", "geo": null, "id": 147647030024609800, "id_str": "147647030024609792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1296534306/avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1296534306/avatar_normal.png", "source": "<a href="http://pluggio.com" rel="nofollow">Pluggio</a>", "text": "#NodeJS in #Windows #Azure - to the cloud and beyond by @gblock http://t.co/QwCsITBo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:50:40 +0000", "from_user": "fantasticJoho", "from_user_id": 218448297, "from_user_id_str": "218448297", "from_user_name": "Joho", "geo": null, "id": 147644808566026240, "id_str": "147644808566026240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691091979/206424_1004761632287_1022276477_26320_5931_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691091979/206424_1004761632287_1022276477_26320_5931_n_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "RT @elijahmanor: \"Intro to Node.JS for .NET Developers\" by @aaronontheweb #javascript http://t.co/fvwMgwnv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:47:27 +0000", "from_user": "Jangid", "from_user_id": 10432632, "from_user_id_str": "10432632", "from_user_name": "Pankaj Jangid", "geo": null, "id": 147644000101339140, "id_str": "147644000101339137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1237152718/157820_503085507_2303252_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1237152718/157820_503085507_2303252_q_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@bluesmoon have you evaluated any nodejs monodb driver? Any recommendation? I want to store some metadata.", "to_user": "bluesmoon", "to_user_id": 7510552, "to_user_id_str": "7510552", "to_user_name": "Philip Tellis"}, +{"created_at": "Fri, 16 Dec 2011 11:47:20 +0000", "from_user": "johanbove", "from_user_id": 231445532, "from_user_id_str": "231445532", "from_user_name": "Johan Bov\\u00E9", "geo": null, "id": 147643969516482560, "id_str": "147643969516482562", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1387101729/Tuscany_2009_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1387101729/Tuscany_2009_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "HEY - I'm now part of the NodeJs community, why aren't you? http://t.co/As0HZhqA via @nodejscommunity", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:14:23 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 147635677721407500, "id_str": "147635677721407488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://twuffer.com" rel="nofollow">Twuffer</a>", "text": "RT @dhaivatpoincare: Check out NimbleNotes! http://t.co/qOhIWKyC Written with #python #jquery #nodejs #mongodb #flask", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:14:21 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147635671069233150, "id_str": "147635671069233152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Check out NimbleNotes! http://t.co/QHs3Fngj Written with #python #jquery #nodejs #mongodb #flask http://t.co/LIaGo2Dn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:04:11 +0000", "from_user": "mlegenhausen", "from_user_id": 66335953, "from_user_id_str": "66335953", "from_user_name": "Malte", "geo": null, "id": 147633114229907460, "id_str": "147633114229907456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1090683310/12.05.07_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1090683310/12.05.07_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Growing Up http://t.co/PD4JktSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:00:53 +0000", "from_user": "dhaivatpoincare", "from_user_id": 233257440, "from_user_id_str": "233257440", "from_user_name": "Dhaivat Pandya", "geo": null, "id": 147632281492795400, "id_str": "147632281492795392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657560442/2011-11-25_13-57-39.638_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657560442/2011-11-25_13-57-39.638_normal.jpg", "source": "<a href="http://twuffer.com" rel="nofollow">Twuffer</a>", "text": "Check out NimbleNotes! http://t.co/qOhIWKyC Written with #python #jquery #nodejs #mongodb #flask", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:44:41 +0000", "from_user": "bdcravens", "from_user_id": 19546993, "from_user_id_str": "19546993", "from_user_name": "Billy Cravens", "geo": null, "id": 147628204616712200, "id_str": "147628204616712193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/550414769/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/550414769/twitterProfilePhoto_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "finally writing some of my first front-end #nodejs code", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:43:56 +0000", "from_user": "GotNoSugarBaby", "from_user_id": 242235575, "from_user_id_str": "242235575", "from_user_name": "Jamie Mason", "geo": null, "id": 147628016271495170, "id_str": "147628016271495168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1675241788/Tashvatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675241788/Tashvatar_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Write your shell scripts in JavaScript, via Node.js http://t.co/SL5Msixg #2ality http://t.co/RCjnrG97", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:43:00 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147627780681642000, "id_str": "147627780681641984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Write your shell scripts in JavaScript, via Node.js http://t.co/SL5Msixg #2ality http://t.co/RCjnrG97", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:42:00 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 147627528872402940, "id_str": "147627528872402945", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @jscentral Write your shell scripts in JavaScript, via Node.js @rauschma http://t.co/4yyymK1a", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:41:59 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 147627526540369920, "id_str": "147627526540369920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @rauschma Write your shell scripts in JavaScript, via Node.js http://t.co/4yyymK1a #2ality", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:05:45 +0000", "from_user": "NodeJSAtSO", "from_user_id": 292124941, "from_user_id_str": "292124941", "from_user_name": "Node JS @ SO", "geo": null, "id": 147618405829193730, "id_str": "147618405829193729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1336740490/sprites_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1336740490/sprites_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NodeJS, Multi-FileWatcher, Socket.IO and interaction with the client http://t.co/NSl9L8Op", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:58:20 +0000", "from_user": "chebatron", "from_user_id": 14336828, "from_user_id_str": "14336828", "from_user_name": "Cheba", "geo": null, "id": 147616540953554940, "id_str": "147616540953554944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1023503585/Scream_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1023503585/Scream_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Believing there's a right tool for a task is OK. Using \"JavaScript, PHP, Python, Perl, NodeJS, Java\" in one project is not really.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:57:42 +0000", "from_user": "przemyslawpluta", "from_user_id": 24577454, "from_user_id_str": "24577454", "from_user_name": "Przemyslaw Pluta", "geo": null, "id": 147616381687431170, "id_str": "147616381687431168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1479677201/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1479677201/me_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "#Nodejs in Windows #Azure, to the cloud and beyond - http://t.co/nKXk8nQF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Fri, 16 Dec 2011 09:57:42 +0000", "from_user": "przemyslawpluta", "from_user_id": 24577454, "from_user_id_str": "24577454", "from_user_name": "Przemyslaw Pluta", "geo": null, "id": 147616381687431170, "id_str": "147616381687431168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1479677201/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1479677201/me_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "#Nodejs in Windows #Azure, to the cloud and beyond - http://t.co/nKXk8nQF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:49:11 +0000", "from_user": "munichnug", "from_user_id": 389449919, "from_user_id_str": "389449919", "from_user_name": "Node.js UG Munich", "geo": null, "id": 147614237223690240, "id_str": "147614237223690240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1606077365/mnug_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606077365/mnug_twitter_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Node v0.6.6 released http://t.co/LGH5FqF6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:36:10 +0000", "from_user": "Depechie", "from_user_id": 1004381, "from_user_id_str": "1004381", "from_user_name": "Glenn Versweyveld", "geo": null, "id": 147610963858829300, "id_str": "147610963858829312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/311026785/SistersOfMercyWhite500x500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/311026785/SistersOfMercyWhite500x500_normal.jpg", "source": "<a href="http://www.metrotwit.com/" rel="nofollow">MetroTwit</a>", "text": "@davybrion @jakescott yeah maybe it is, but isn't there some 'value' in the remarks too? I must admit, I have not touched nodejs myself", "to_user": "davybrion", "to_user_id": 167135950, "to_user_id_str": "167135950", "to_user_name": "Davy Brion", "in_reply_to_status_id": 147610161022894080, "in_reply_to_status_id_str": "147610161022894080"}, +{"created_at": "Fri, 16 Dec 2011 09:17:31 +0000", "from_user": "mupinc", "from_user_id": 33440558, "from_user_id_str": "33440558", "from_user_name": "\\u0427\\u0438\\u0440\\u043A\\u043E\\u0432 \\u0410\\u043B\\u0435\\u043A\\u0441\\u0435\\u0439", "geo": null, "id": 147606268742344700, "id_str": "147606268742344705", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1207327572/3d8PHBld_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1207327572/3d8PHBld_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @azproduction: LMD - \\u043B\\u0435\\u0433\\u043A\\u0430\\u044F, \\u043B\\u0435\\u043D\\u0438\\u0432\\u0430\\u044F, \\u0441\\u0438\\u043D\\u0445\\u0440\\u043E\\u043D\\u043D\\u0430\\u044F \\u043C\\u043E\\u0434\\u0443\\u043B\\u044C\\u043D\\u0430\\u044F \\u0441\\u0438\\u0441\\u0442\\u0435\\u043C\\u0430 \\u0434\\u043B\\u044F \\u0442\\u0435\\u0445 \\u043A\\u0442\\u043E \\u043B\\u044E\\u0431\\u0438\\u0442 \\u043C\\u043E\\u0434\\u0443\\u043B\\u0438 @nodejs \\u0438 \\u0441\\u0442\\u0440\\u0430\\u0434\\u0430\\u0435\\u0442 \\u043E\\u0442 startup latency http://t.co/3DEoNncb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:08:39 +0000", "from_user": "dampeebe", "from_user_id": 47422110, "from_user_id_str": "47422110", "from_user_name": "Damiaan Peeters", "geo": null, "id": 147604038068875260, "id_str": "147604038068875264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1325422170/42c8f255-7d06-4665-af5d-60eba23a538c_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1325422170/42c8f255-7d06-4665-af5d-60eba23a538c_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@dscape I don't know anything on NodeJS... Not yet that is :-)", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147603629514309630, "in_reply_to_status_id_str": "147603629514309632"}, +{"created_at": "Fri, 16 Dec 2011 09:02:37 +0000", "from_user": "ajlopez", "from_user_id": 14567622, "from_user_id_str": "14567622", "from_user_name": "ajlopez", "geo": null, "id": 147602519856644100, "id_str": "147602519856644096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/53769404/spiral_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/53769404/spiral_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @dscape: i ... don't give a shit about #microsoft but they seem pretty serious on javascript http://t.co/9ElGMYhv #nodejs #hadoop #azure", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:49:54 +0000", "from_user": "edjafarov", "from_user_id": 18898176, "from_user_id_str": "18898176", "from_user_name": "Eldar Djafarov", "geo": null, "id": 147599319481065470, "id_str": "147599319481065472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/971019265/25-08-08_1708_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/971019265/25-08-08_1708_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Growing Up http://t.co/PD4JktSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:49:50 +0000", "from_user": "azenned", "from_user_id": 196234589, "from_user_id_str": "196234589", "from_user_name": "Zenned Abderrazak", "geo": null, "id": 147599302582210560, "id_str": "147599302582210560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1368319751/49144_1805169896_5760_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1368319751/49144_1805169896_5760_n_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Node v0.6.6 released http://t.co/LGH5FqF6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:47:21 +0000", "from_user": "D_Guidi", "from_user_id": 59773, "from_user_id_str": "59773", "from_user_name": "Diego Guidi", "geo": null, "id": 147598675282108400, "id_str": "147598675282108416", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1241356592/me_ciro_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1241356592/me_ciro_normal.jpg", "source": "<a href="http://www.metrotwit.com/" rel="nofollow">MetroTwit</a>", "text": "@robymes mah nodejs di fatto \\u00E8 usato in produzione, alla fine per fare una query su postgres ritornare il json l'userei senza patemi", "to_user": "robymes", "to_user_id": 86505260, "to_user_id_str": "86505260", "to_user_name": "Roberto Messora", "in_reply_to_status_id": 147597926905028600, "in_reply_to_status_id_str": "147597926905028609"}, +{"created_at": "Fri, 16 Dec 2011 08:43:46 +0000", "from_user": "HosipLan", "from_user_id": 37413851, "from_user_id_str": "37413851", "from_user_name": "Filip Proch\\u00E1zka", "geo": null, "id": 147597776174321660, "id_str": "147597776174321664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1277952292/internet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1277952292/internet_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @PatrikVotocek: http://t.co/t6s2IAmW muj prvn\\u00ED pokus s #ElasticSearch (powered by #Nodejs, #Redis, #ElasticSearch, #Nginx as proxy)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:43:06 +0000", "from_user": "D_Guidi", "from_user_id": 59773, "from_user_id_str": "59773", "from_user_name": "Diego Guidi", "geo": null, "id": 147597607634616320, "id_str": "147597607634616320", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1241356592/me_ciro_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1241356592/me_ciro_normal.jpg", "source": "<a href="http://www.metrotwit.com/" rel="nofollow">MetroTwit</a>", "text": "@robymes ottima domanda, IMHO in teoria nodejs \\u00E8 nato per cose del genere...", "to_user": "robymes", "to_user_id": 86505260, "to_user_id_str": "86505260", "to_user_name": "Roberto Messora", "in_reply_to_status_id": 147597286829076480, "in_reply_to_status_id_str": "147597286829076480"}, +{"created_at": "Fri, 16 Dec 2011 08:37:34 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 147596215050182660, "id_str": "147596215050182657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://www.scoop.it" rel="nofollow">Scoop.it</a>", "text": "RT @itwars: Using Eclipse as Node Applications Debugger - GitHub | #nodejs #eclipse #debug http://t.co/oQujbQNz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:34:10 +0000", "from_user": "gvlax", "from_user_id": 314211330, "from_user_id_str": "314211330", "from_user_name": "Maciej Gulak", "geo": null, "id": 147595359571558400, "id_str": "147595359571558400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1568384256/poolbird_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1568384256/poolbird_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "I'm now part of the NodeJs community... http://t.co/A6eLlp66 via @nodejscommunity", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:13:00 +0000", "from_user": "TimAnyasi", "from_user_id": 314120635, "from_user_id_str": "314120635", "from_user_name": "Timothy Anyasi", "geo": null, "id": 147590034525126660, "id_str": "147590034525126656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1394304998/tim_crop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1394304998/tim_crop_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@railsjedi I think so too. Btw what's your accessment of nodejs security, think still too early to use for serious apps?", "to_user": "railsjedi", "to_user_id": 18008485, "to_user_id_str": "18008485", "to_user_name": "Jacques Crocker", "in_reply_to_status_id": 147588947470585860, "in_reply_to_status_id_str": "147588947470585857"}, +{"created_at": "Fri, 16 Dec 2011 08:07:11 +0000", "from_user": "PatrikVotocek", "from_user_id": 16411991, "from_user_id_str": "16411991", "from_user_name": "Patrik Voto\\u010Dek", "geo": null, "id": 147588568485859330, "id_str": "147588568485859328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1458968939/avatar-256x256_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1458968939/avatar-256x256_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "http://t.co/t6s2IAmW muj prvn\\u00ED pokus s #ElasticSearch (powered by #Nodejs, #Redis, #ElasticSearch, #Nginx as proxy)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:06:46 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 147588465062723600, "id_str": "147588465062723584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "RT @D_Guidi: Reading 'Creating a node.js GeometryService : part 1': http://t.co/JTdJZ0oL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:57:36 +0000", "from_user": "D_Guidi", "from_user_id": 59773, "from_user_id_str": "59773", "from_user_name": "Diego Guidi", "geo": null, "id": 147586157599928320, "id_str": "147586157599928320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1241356592/me_ciro_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1241356592/me_ciro_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "Reading 'Creating a node.js GeometryService : part 1': http://t.co/JTdJZ0oL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:41:03 +0000", "from_user": "gianmarcog", "from_user_id": 97277627, "from_user_id_str": "97277627", "from_user_name": "Gian Marco Gherardi", "geo": null, "id": 147581990332399600, "id_str": "147581990332399616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/965786802/mario-mushroom-transparent-background_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/965786802/mario-mushroom-transparent-background_normal.png", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "MS Azure support for nodejs announced http://t.co/Jkmkz1y0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:35:44 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147580652093571070, "id_str": "147580652093571072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Minor update to spray released. New graph cube properties for errors and timeouts. http://t.co/EVw3pM06 #nodejs http://t.co/PXGHZxpA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:35:42 +0000", "from_user": "wdbacker", "from_user_id": 20968773, "from_user_id_str": "20968773", "from_user_name": "Ward De Backer", "geo": null, "id": 147580644963266560, "id_str": "147580644963266560", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1549651905/twitter_hr_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1549651905/twitter_hr_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Nice tips on #nodejs optimisation: http://t.co/X1JT9DL9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:31:50 +0000", "from_user": "leonpo", "from_user_id": 34383862, "from_user_id_str": "34383862", "from_user_name": "Leon Portman", "geo": null, "id": 147579674543919100, "id_str": "147579674543919104", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1465698746/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1465698746/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "node.js on Azure: http://t.co/NneihjFr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:31:50 +0000", "from_user": "RobertoBez", "from_user_id": 56687874, "from_user_id_str": "56687874", "from_user_name": "Roberto Bez", "geo": null, "id": 147579671335280640, "id_str": "147579671335280640", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1662812634/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662812634/me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Ich w\\u00FCrd wirklich gerne mal das Azure NodeJs Dingens probieren. Aber selbst f\\u00FCr die Testversion schon wieder eine Kreditkarte.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:28:30 +0000", "from_user": "goloroden", "from_user_id": 132484863, "from_user_id_str": "132484863", "from_user_name": "Golo Roden", "geo": null, "id": 147578833791488000, "id_str": "147578833791488000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/819558960/Golo_Roden_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/819558960/Golo_Roden_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Growing Up http://t.co/PD4JktSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:26:45 +0000", "from_user": "Optimyth", "from_user_id": 108300784, "from_user_id_str": "108300784", "from_user_name": "Optimyth Software", "geo": null, "id": 147578395025346560, "id_str": "147578395025346560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1178483201/optimyth_fondo_azul_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1178483201/optimyth_fondo_azul_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Read TechAgil & TechNews \\u25B8 today's top stories via @payerickdog @Optimyth @nodejs \\u25B8 http://t.co/pelgMvQu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:26:11 +0000", "from_user": "leonpo", "from_user_id": 34383862, "from_user_id_str": "34383862", "from_user_name": "Leon Portman", "geo": null, "id": 147578250296692740, "id_str": "147578250296692736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1465698746/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1465698746/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Growing Up http://t.co/PD4JktSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:15:20 +0000", "from_user": "jeffmueller", "from_user_id": 641073, "from_user_id_str": "641073", "from_user_name": "Jeff", "geo": null, "id": 147575519540559870, "id_str": "147575519540559873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668148364/icon-300_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668148364/icon-300_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "Got segfaults after installing Node.js 0.6.5 on Lion?\\n\\nhttp://t.co/VYVnj6NH\\n\\nTL;DR: Use the Node installer from http://t.co/pW91aSEp.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:15:03 +0000", "from_user": "ankjevel", "from_user_id": 15418194, "from_user_id_str": "15418194", "from_user_name": "Dennis Pettersson", "geo": null, "id": 147575450875605000, "id_str": "147575450875604993", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1298654277/FUU_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1298654277/FUU_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@ryah This is something that have been bugging me for some time now http://t.co/SKthIhRK (note: it's from the download-window on nodejs.org)", "to_user": "ryah", "to_user_id": 18975861, "to_user_id_str": "18975861", "to_user_name": "Ryan Dahl"}, +{"created_at": "Fri, 16 Dec 2011 07:12:18 +0000", "from_user": "andrew_j_stone", "from_user_id": 318079932, "from_user_id_str": "318079932", "from_user_name": "Andrew J. Stone", "geo": null, "id": 147574758593146880, "id_str": "147574758593146880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1598642373/284659_696310082096_24501632_36175371_4924429_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598642373/284659_696310082096_24501632_36175371_4924429_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Minor update to spray released. New graph cube properties for errors and timeouts. http://t.co/4La1O7hv #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:11:12 +0000", "from_user": "JanVanRyswyck", "from_user_id": 14344284, "from_user_id_str": "14344284", "from_user_name": "JanVanRyswyck", "geo": null, "id": 147574478996647940, "id_str": "147574478996647936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1444289576/Foto3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1444289576/Foto3_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Growing up: http://t.co/Sgq1lEta #shared #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:04:38 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 147572828064071680, "id_str": "147572828064071680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @AngeZanetti: The trap of performance sweet spot of Javascript http://t.co/2zhvNUlh #nodejs #WebGL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:02:45 +0000", "from_user": "fatshotty", "from_user_id": 95258760, "from_user_id_str": "95258760", "from_user_name": "Fabio", "geo": null, "id": 147572354111897600, "id_str": "147572354111897600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1342686720/fatshotty_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1342686720/fatshotty_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Using Eclipse as Node Applications Debugger - GitHub http://t.co/e4c7oezT #eclips #node #nodejs #javascript http://t.co/wUdw4le3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 06:56:24 +0000", "from_user": "kzfm", "from_user_id": 10674222, "from_user_id_str": "10674222", "from_user_name": "kzfm", "geo": null, "id": 147570755624906750, "id_str": "147570755624906752", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1101313417/40dea9e7-aef7-4320-8d71-6d1108ffa98c_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1101313417/40dea9e7-aef7-4320-8d71-6d1108ffa98c_normal.png", "source": "<a href="http://www.twitgether.com" rel="nofollow">twitgether</a>", "text": "@tomof node.js\\u306E\\u30D5\\u30ED\\u30F3\\u30C8\\u306Bnginx\\u304C\\u3044\\u308B\\u306E\\u304B\\uFF1F\\u3063\\u3066\\u8A71\\u3067\\u3059\\u3002\\u304A\\u3082\\u308D\\u304B\\u3063\\u305F http://t.co/3AiNT97e", "to_user": "tomof", "to_user_id": 9665062, "to_user_id_str": "9665062", "to_user_name": "tomof"}, +{"created_at": "Fri, 16 Dec 2011 06:43:32 +0000", "from_user": "florincoros", "from_user_id": 214974557, "from_user_id_str": "214974557", "from_user_name": "Florin Coros", "geo": null, "id": 147567517420883970, "id_str": "147567517420883968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1419152783/800px-Go-game-ear-reddening_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1419152783/800px-Go-game-ear-reddening_normal.jpeg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @WindowsAzure: Did you miss the Learn #Windows #Azure event Tuesday? The video is up on @ch9 http://t.co/UL6e4F5k #SQLAzure #nodejs /via @SyntaxC4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 06:35:22 +0000", "from_user": "jeremiedev", "from_user_id": 92844642, "from_user_id_str": "92844642", "from_user_name": "Jeremie Devillard", "geo": null, "id": 147565463629598720, "id_str": "147565463629598720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1183643382/Sans_titre-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1183643382/Sans_titre-1_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @WindowsAzure: Did you miss the Learn #Windows #Azure event Tuesday? The video is up on @ch9 http://t.co/UL6e4F5k #SQLAzure #nodejs /via @SyntaxC4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 06:34:11 +0000", "from_user": "JustinBeckwith", "from_user_id": 41165883, "from_user_id_str": "41165883", "from_user_name": "Justin Beckwith", "geo": null, "id": 147565162386292740, "id_str": "147565162386292736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1190971800/head_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1190971800/head_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Oooo, new node.js website: http://t.co/JSZy7Z1z. I like the #WindowsAzure section :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 06:33:41 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 147565038650142720, "id_str": "147565038650142720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @knsk66: Using Eclipse as Node Applications Debugger - GitHub http://t.co/sL2z2qiy #eclips #node #nodejs #javascript", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 06:26:57 +0000", "from_user": "darrellpratt", "from_user_id": 15535975, "from_user_id_str": "15535975", "from_user_name": "Darrell Pratt", "geo": null, "id": 147563346051346430, "id_str": "147563346051346432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1159639029/31758_402638536937_646921937_4618867_2862895_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1159639029/31758_402638536937_646921937_4618867_2862895_n_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Growing Up http://t.co/PD4JktSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 06:12:27 +0000", "from_user": "lanwin", "from_user_id": 14878823, "from_user_id_str": "14878823", "from_user_name": "Steve Wagner", "geo": null, "id": 147559696646148100, "id_str": "147559696646148097", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/597255103/avatar_80x80_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/597255103/avatar_80x80_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Lol RT @BjoernRochel One nodejs fan probably just died... ^^ RT@_lennart God, I hate JavaScript.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 06:10:25 +0000", "from_user": "jamus_se", "from_user_id": 112896032, "from_user_id_str": "112896032", "from_user_name": "jamus", "geo": null, "id": 147559183208820740, "id_str": "147559183208820736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1564910465/twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1564910465/twitter_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @knsk66: Using Eclipse as Node Applications Debugger - GitHub http://t.co/emFnzONc #eclips #node #nodejs #javascript", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 05:00:15 +0000", "from_user": "HomebrewUpdates", "from_user_id": 220882340, "from_user_id_str": "220882340", "from_user_name": "HomebrewUpdates", "geo": null, "id": 147541523381227520, "id_str": "147541523381227521", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1184540671/noback2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1184540671/noback2_normal.png", "source": "<a href="http://twitter.com/HomebrewUpdates" rel="nofollow">HomebrewUpdates</a>", "text": "[Rev:211a1165] formula updated: node 0.6.6 http://t.co/nltiBYyf #machomebrew #node", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 04:39:10 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 147536221642567680, "id_str": "147536221642567680", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @kaineer nodejs: Node v0.6.6 released http://t.co/6Iw2zUP8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 04:34:31 +0000", "from_user": "kaineer", "from_user_id": 16311212, "from_user_id_str": "16311212", "from_user_name": "Tangerine Cat", "geo": null, "id": 147535049812754430, "id_str": "147535049812754432", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1139159899/meh-20081016_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1139159899/meh-20081016_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u041D\\u044B\\u043D\\u0435\\u0448\\u043D\\u0438\\u0439 (0.6.6) @nodejs \\u0441\\u0442\\u0430\\u0432\\u0438\\u0442 \\u0441 \\u0441\\u043E\\u0431\\u043E\\u0439 \\u0434\\u043E \\u043A\\u0443\\u0447\\u0438 npm. \\u0418 \\u044D\\u0442\\u043E \\u043C\\u0435\\u043D\\u044F \\u0440\\u0430\\u0434\\u0443\\u0435\\u0442.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 04:28:08 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147533443335585800, "id_str": "147533443335585792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Bang goes 1.0, now with Hubot support http://t.co/qmlBbyz1 #nodejs #hubot http://t.co/vgKCL11p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 04:26:05 +0000", "from_user": "c4milo", "from_user_id": 38187360, "from_user_id_str": "38187360", "from_user_name": "Camilo Aguilar", "geo": null, "id": 147532928451223550, "id_str": "147532928451223554", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Node v0.6.6 released http://t.co/LGH5FqF6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 04:15:35 +0000", "from_user": "josedung", "from_user_id": 43813979, "from_user_id_str": "43813979", "from_user_name": "jose dung", "geo": null, "id": 147530285217628160, "id_str": "147530285217628160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://www.yahoo.com" rel="nofollow">Yahoo!</a>", "text": "nodeJS + html5 + do what?=money http://t.co/2pFqXCq4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 04:01:03 +0000", "from_user": "jimmycuadra", "from_user_id": 23913921, "from_user_id_str": "23913921", "from_user_name": "Jimmy Cuadra", "geo": null, "id": 147526627411243000, "id_str": "147526627411243008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1600729364/jc_logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600729364/jc_logo_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Bang goes 1.0, now with Hubot support http://t.co/oDYGzHMJ #nodejs #hubot", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 03:56:58 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 147525600549158900, "id_str": "147525600549158913", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @jimmycuadra: Bang 1.0.0 is released http://t.co/sxOZIXQE #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 03:56:57 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147525593821495300, "id_str": "147525593821495296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Bang 1.0.0 is released http://t.co/11n4JnSm #nodejs http://t.co/Jxcz9U0K", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 03:39:25 +0000", "from_user": "jimmycuadra", "from_user_id": 23913921, "from_user_id_str": "23913921", "from_user_name": "Jimmy Cuadra", "geo": null, "id": 147521182021857280, "id_str": "147521182021857280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1600729364/jc_logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600729364/jc_logo_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Bang 1.0.0 is released http://t.co/sxOZIXQE #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 02:55:02 +0000", "from_user": "King_of_Nakao", "from_user_id": 50851479, "from_user_id_str": "50851479", "from_user_name": "\\u306A\\u304B\\u304A\\u304D\\u3088\\u3057", "geo": null, "id": 147510014607765500, "id_str": "147510014607765506", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1590581134/onaka_icon_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1590581134/onaka_icon_normal.gif", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Node v0.6.6 released http://t.co/LGH5FqF6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 02:48:25 +0000", "from_user": "augustus_webdev", "from_user_id": 116316949, "from_user_id_str": "116316949", "from_user_name": "Thiago Augustus", "geo": null, "id": 147508346562412540, "id_str": "147508346562412544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1634220231/facebook-img_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634220231/facebook-img_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Node v0.6.6 released http://t.co/LGH5FqF6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 02:36:51 +0000", "from_user": "CRMLady", "from_user_id": 16563024, "from_user_id_str": "16563024", "from_user_name": "Anne Stanton", "geo": null, "id": 147505438454333440, "id_str": "147505438454333441", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1564066626/2530524c-48f4-4f69-9b56-7c8cdc714dec_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1564066626/2530524c-48f4-4f69-9b56-7c8cdc714dec_normal.png", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @WindowsAzure: Did you miss the Learn #Windows #Azure event Tuesday? The video is up on @ch9 http://t.co/UL6e4F5k #SQLAzure #nodejs /via @SyntaxC4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 02:30:43 +0000", "from_user": "naru0ga", "from_user_id": 131133214, "from_user_id_str": "131133214", "from_user_name": "Naruhiko Ogasawara", "geo": null, "id": 147503894187081730, "id_str": "147503894187081729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312133669/609294_2294024989_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312133669/609294_2294024989_normal.jpg", "source": "<a href="http://sproutsocial.com" rel="nofollow">Sprout Social</a>", "text": "RT @linuxfoundation: Top 10 OSS Projects of '11. http://t.co/FWeyc8TF Did your fave make the list? #nginx #jQuery #linux #nodejs #puppet...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 02:13:09 +0000", "from_user": "Nodester", "from_user_id": 240751001, "from_user_id_str": "240751001", "from_user_name": "Nodester", "geo": null, "id": 147499475013873660, "id_str": "147499475013873665", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Nice! RT @neojp: Un poco tarde, pero hicimos funcionar el script en nodejs usando @nodester http://t.co/auoaMFPW #mejorandola", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 02:01:38 +0000", "from_user": "HRBG", "from_user_id": 14849107, "from_user_id_str": "14849107", "from_user_name": "Hector Bavio", "geo": null, "id": 147496576988872700, "id_str": "147496576988872704", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1615704779/61324d30-8582-4221-82e1-f07a90f92ca6_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615704779/61324d30-8582-4221-82e1-f07a90f92ca6_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "#nvm #nodejs #ftw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:51:17 +0000", "from_user": "BeataLyn", "from_user_id": 10553852, "from_user_id_str": "10553852", "from_user_name": "Beata", "geo": null, "id": 147493970090528770, "id_str": "147493970090528768", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1669177191/bakeneko_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669177191/bakeneko_normal.jpg", "source": "<a href="http://tweetmeme.com" rel="nofollow">TweetMeme</a>", "text": "\\u5F9E\\u4F86\\u6C92\\u60F3\\u904E\\uFF0Cserver\\u7AEF\\u7684file & stream io\\u53EF\\u4EE5\\u9019\\u9EBC\\u7C21\\u55AE\\uFF0C\\u611F\\u52D5\\u7206\\u8868\\u7684 #nodejs module http://t.co/g8REorCC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:44:03 +0000", "from_user": "brian_jimerson", "from_user_id": 19949229, "from_user_id_str": "19949229", "from_user_name": "Brian Jimerson", "geo": null, "id": 147492149406085120, "id_str": "147492149406085120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1655551974/Profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655551974/Profile_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Growing Up http://t.co/PD4JktSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:29:00 +0000", "from_user": "micobot", "from_user_id": 1944011, "from_user_id_str": "1944011", "from_user_name": "Irving Villegas", "geo": null, "id": 147488361123287040, "id_str": "147488361123287041", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1648736502/micobot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648736502/micobot_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "JavaScript del lado del servidor, si asi como lo escucharon con node.js http://t.co/YhxOQ1ot", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:02:02 +0000", "from_user": "omolina", "from_user_id": 17017053, "from_user_id_str": "17017053", "from_user_name": "Oscar Molina Catal\\u00E1n", "geo": null, "id": 147481577654468600, "id_str": "147481577654468608", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1416438989/perfil_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1416438989/perfil_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Todo lo que hago es Async, resulta mejor en #nodejs jajajaja", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:45:35 +0000", "from_user": "hugojosefson", "from_user_id": 19494720, "from_user_id_str": "19494720", "from_user_name": "Hugo Josefson", "geo": null, "id": 147477437280825340, "id_str": "147477437280825345", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/430993156/Hugo_Josefson_-_face_-_192x192_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/430993156/Hugo_Josefson_-_face_-_192x192_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Growing Up http://t.co/PD4JktSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:44:08 +0000", "from_user": "peteryorke", "from_user_id": 14136726, "from_user_id_str": "14136726", "from_user_name": "Peter Yorke", "geo": null, "id": 147477073227825150, "id_str": "147477073227825153", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/51727717/peter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/51727717/peter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Node.js released v0.6.6 is out \\u25B8 http://t.co/HmomSSrF #nodejs http://t.co/ZqntSiHs @NodeJsCommunity", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:38:38 +0000", "from_user": "osConstruction", "from_user_id": 393579585, "from_user_id_str": "393579585", "from_user_name": "O.S.construction", "geo": null, "id": 147475686393778180, "id_str": "147475686393778179", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1661556431/OSC_twittertransparent50__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661556431/OSC_twittertransparent50__normal.png", "source": "<a href="http://sproutsocial.com" rel="nofollow">Sprout Social</a>", "text": "RT @linuxfoundation: Top 10 OSS Projects of '11. http://t.co/FWeyc8TF Did your fave make the list? #nginx #jQuery #linux #nodejs #puppet...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:21:30 +0000", "from_user": "ladyfatiha", "from_user_id": 219987296, "from_user_id_str": "219987296", "from_user_name": "Fatiha", "geo": null, "id": 147471376687706100, "id_str": "147471376687706112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699188528/Agvi_SLCEAAYwQ7_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699188528/Agvi_SLCEAAYwQ7_normal.png", "source": "<a href="http://sproutsocial.com" rel="nofollow">Sprout Social</a>", "text": "RT @linuxfoundation: Top 10 OSS Projects of '11. http://t.co/FWeyc8TF Did your fave make the list? #nginx #jQuery #linux #nodejs #puppet...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:18:50 +0000", "from_user": "jbboehr", "from_user_id": 71352049, "from_user_id_str": "71352049", "from_user_name": "John Boehr", "geo": null, "id": 147470706484051970, "id_str": "147470706484051968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1654655513/dc109a8a0126ae2825c603ae846c00a1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654655513/dc109a8a0126ae2825c603ae846c00a1_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Growing Up http://t.co/PD4JktSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:09:07 +0000", "from_user": "adrianpillinger", "from_user_id": 69106258, "from_user_id_str": "69106258", "from_user_name": "Adrian Pillinger", "geo": null, "id": 147468257249603600, "id_str": "147468257249603585", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627986895/E1237470-89B6-4166-8287-C409ABF403B6_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627986895/E1237470-89B6-4166-8287-C409ABF403B6_normal", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "Node is maturing, well worth a look http://t.co/aAtT4xuC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:03:52 +0000", "from_user": "AnetteDK", "from_user_id": 18072012, "from_user_id_str": "18072012", "from_user_name": "AnetteDK", "geo": null, "id": 147466937818021900, "id_str": "147466937818021888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/67189277/_L2H9733_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/67189277/_L2H9733_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @WindowsAzure: Did you miss the Learn #Windows #Azure event Tuesday? The video is up on @ch9 http://t.co/UL6e4F5k #SQLAzure #nodejs /via @SyntaxC4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:00:16 +0000", "from_user": "linuxfoundation", "from_user_id": 14706299, "from_user_id_str": "14706299", "from_user_name": "The Linux Foundation", "geo": null, "id": 147466030875295740, "id_str": "147466030875295744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/53940106/linuxfoundation_logo_BOX_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/53940106/linuxfoundation_logo_BOX_normal.jpg", "source": "<a href="http://sproutsocial.com" rel="nofollow">Sprout Social</a>", "text": "Top 10 OSS Projects of '11. http://t.co/FWeyc8TF Did your fave make the list? #nginx #jQuery #linux #nodejs #puppet...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:00:00 +0000", "from_user": "geddesign", "from_user_id": 39607761, "from_user_id_str": "39607761", "from_user_name": "Dave Geddes", "geo": null, "id": 147465964064210940, "id_str": "147465964064210944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1644883657/dave_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644883657/dave_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Growing Up http://t.co/PD4JktSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:53:04 +0000", "from_user": "estilocss", "from_user_id": 148763456, "from_user_id_str": "148763456", "from_user_name": "Jorge", "geo": null, "id": 147464219636412400, "id_str": "147464219636412416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1275906340/Sin_t_tulo-1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1275906340/Sin_t_tulo-1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "I don't know how to install nodejs on window, someone help me!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:48:20 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147463028332429300, "id_str": "147463028332429313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "rack (0.1.3): http://t.co/37jD5VeH NodeJS Cluster Abstraction Layer http://t.co/ZeEGmC5q", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:46:04 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 147462458653687800, "id_str": "147462458653687808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Growing Up http://t.co/PD4JktSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:45:52 +0000", "from_user": "pepoviola", "from_user_id": 135963582, "from_user_id_str": "135963582", "from_user_name": "pepo", "geo": null, "id": 147462406363287550, "id_str": "147462406363287552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/843344898/tux-logo_thumbnail_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/843344898/tux-logo_thumbnail_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Growing Up http://t.co/PD4JktSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:41:52 +0000", "from_user": "gregferrell", "from_user_id": 20506446, "from_user_id_str": "20506446", "from_user_name": "Greg Ferrell", "geo": null, "id": 147461403068989440, "id_str": "147461403068989441", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1182555305/greg_avatar_mono_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1182555305/greg_avatar_mono_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Yay! I love how fast node is coming along. RT @nodejs: Growing Up http://t.co/yoyYZlMC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:40:19 +0000", "from_user": "kevingorski", "from_user_id": 14825994, "from_user_id_str": "14825994", "from_user_name": "Kevin Gorski", "geo": null, "id": 147461011933368320, "id_str": "147461011933368320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1213954571/LookLeft_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1213954571/LookLeft_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Growing Up http://t.co/PD4JktSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:38:13 +0000", "from_user": "nodejs", "from_user_id": 91985735, "from_user_id_str": "91985735", "from_user_name": "node js", "geo": null, "id": 147460480989011970, "id_str": "147460480989011968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1437021459/nodejs-dark_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1437021459/nodejs-dark_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Growing Up http://t.co/PD4JktSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:33:16 +0000", "from_user": "HersonHN", "from_user_id": 265081634, "from_user_id_str": "265081634", "from_user_name": "Herson \\u2713", "geo": null, "id": 147459238854279170, "id_str": "147459238854279169", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692134183/megaman_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692134183/megaman_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "mongoDB + nodeJS = OMG!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:31:30 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147458791905038340, "id_str": "147458791905038336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jankeromnes: @nodejs is growing up http://t.co/7w3llgLA cc @NodeJsCommunity", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:29:43 +0000", "from_user": "__Pol", "from_user_id": 21239507, "from_user_id_str": "21239507", "from_user_name": "Apolinar R\\u00EDos", "geo": null, "id": 147458343559106560, "id_str": "147458343559106561", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/624570327/yo5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/624570327/yo5_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @neojp: Un poco tarde, pero hicimos funcionar el script en nodejs usando @nodester http://t.co/0Bdqh4et #mejorandola // funciona", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:28:38 +0000", "from_user": "neojp", "from_user_id": 818502, "from_user_id_str": "818502", "from_user_name": "Joan Piedra", "geo": null, "id": 147458071097122800, "id_str": "147458071097122816", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/393394330/ava_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/393394330/ava_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Un poco tarde, pero hicimos funcionar el script en nodejs usando @nodester http://t.co/yE3jMR6I #mejorandola", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:25:32 +0000", "from_user": "kevino80", "from_user_id": 16582535, "from_user_id_str": "16582535", "from_user_name": "Kevin O'Hara", "geo": null, "id": 147457291736723460, "id_str": "147457291736723456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1525738813/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1525738813/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@shobyabdi @michaelforce I also second #nodejs for a heroku project. I may have a Salesforce/node module coming out soon... ;)", "to_user": "shobyabdi", "to_user_id": 7135862, "to_user_id_str": "7135862", "to_user_name": "shoby abdi", "in_reply_to_status_id": 147452972123697150, "in_reply_to_status_id_str": "147452972123697152"}, +{"created_at": "Thu, 15 Dec 2011 23:17:06 +0000", "from_user": "Outsideris", "from_user_id": 7932892, "from_user_id_str": "7932892", "from_user_name": "Outsider", "geo": null, "id": 147455170459082750, "id_str": "147455170459082753", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1646891342/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646891342/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Node v0.6.6 released http://t.co/LGH5FqF6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:09:55 +0000", "from_user": "LocuraSabalera", "from_user_id": 166539088, "from_user_id_str": "166539088", "from_user_name": "Locura Sabalera", "geo": null, "id": 147453359652212740, "id_str": "147453359652212736", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1521623223/footerlogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1521623223/footerlogo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@freddier pude arrancar nodejs.. veo solo q llega el mje en el srv xqveo debug - websocket writing 1:: pero en la web no me cambia el text", "to_user": "freddier", "to_user_id": 16742912, "to_user_id_str": "16742912", "to_user_name": "John Freddy Vega"}, +{"created_at": "Thu, 15 Dec 2011 23:05:11 +0000", "from_user": "easylogic", "from_user_id": 52672213, "from_user_id_str": "52672213", "from_user_name": "easylogic", "geo": null, "id": 147452170088882180, "id_str": "147452170088882176", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1129302369/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1129302369/image_normal.jpg", "source": "<a href="http://www.nibirutech.com" rel="nofollow">TwitBird</a>", "text": "RT @nodejs Node v0.6.6 released http://t.co/Eoy9LKUa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:01:55 +0000", "from_user": "sgb004", "from_user_id": 189407877, "from_user_id_str": "189407877", "from_user_name": "sgb", "geo": null, "id": 147451347862683650, "id_str": "147451347862683648", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1564407264/DSC02567_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1564407264/DSC02567_normal.JPG", "source": "<a href="http://connect.mediastre.am/" rel="nofollow">En Vivo Mediastream</a>", "text": "perdon por insistir tanto pero no conocen un webhost con nodeJs gratuito o de paga que sea bueno? #mejorandola", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:01:07 +0000", "from_user": "shamoons", "from_user_id": 20744357, "from_user_id_str": "20744357", "from_user_name": "Shamoon Siddiqui", "geo": null, "id": 147451148276727800, "id_str": "147451148276727808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1568292716/shamoon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1568292716/shamoon_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "How do I structure TDD in #NodeJS? http://t.co/6DFGCxxx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:01:03 +0000", "from_user": "NodeJSAtSO", "from_user_id": 292124941, "from_user_id_str": "292124941", "from_user_name": "Node JS @ SO", "geo": null, "id": 147451127993073660, "id_str": "147451127993073664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1336740490/sprites_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1336740490/sprites_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "nodejs background task http://t.co/ErZszVxE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:57:58 +0000", "from_user": "xiaolin", "from_user_id": 8655372, "from_user_id_str": "8655372", "from_user_name": "xiaolin", "geo": null, "id": 147450355800743940, "id_str": "147450355800743936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/295047284/doggy_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/295047284/doggy_small_normal.jpg", "source": "<a href="http://icebirdapp.com/" rel="nofollow">Icebird for iPhone</a>", "text": "Node v0.6.6 released http://t.co/AmtQgWQX (via @nodejs)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:56:33 +0000", "from_user": "estilocss", "from_user_id": 148763456, "from_user_id_str": "148763456", "from_user_name": "Jorge", "geo": null, "id": 147449999037444100, "id_str": "147449999037444096", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1275906340/Sin_t_tulo-1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1275906340/Sin_t_tulo-1_normal.png", "source": "<a href="http://connect.mediastre.am/" rel="nofollow">En Vivo Mediastream</a>", "text": "quien sepa ingles, que busque nodejs en youtube y vera muchos videos que valen la pena :) #mejorandola", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:53:47 +0000", "from_user": "juanDJGL", "from_user_id": 217309383, "from_user_id_str": "217309383", "from_user_name": "$juand", "geo": null, "id": 147449301994455040, "id_str": "147449301994455040", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1642316109/IMG_0409_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642316109/IMG_0409_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@freddier Otro mejorando.la para el pr\\u00F3ximo jueves de nodejs", "to_user": "freddier", "to_user_id": 16742912, "to_user_id_str": "16742912", "to_user_name": "John Freddy Vega", "in_reply_to_status_id": 147448738351296500, "in_reply_to_status_id_str": "147448738351296512"}, +{"created_at": "Thu, 15 Dec 2011 22:51:13 +0000", "from_user": "FernandoEscher", "from_user_id": 21280033, "from_user_id_str": "21280033", "from_user_name": "Fernando Ir\\u00EDas", "geo": null, "id": 147448655018856450, "id_str": "147448655018856448", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1223839373/yo_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1223839373/yo_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "@cvander @freddier Aqu\\u00ED los recursos que van mencionando http://t.co/icdaKek3 #mejorandola", "to_user": "cvander", "to_user_id": 817789, "to_user_id_str": "817789", "to_user_name": "Christian Van Der H"}, +{"created_at": "Thu, 15 Dec 2011 22:50:22 +0000", "from_user": "saiaman01", "from_user_id": 291670134, "from_user_id_str": "291670134", "from_user_name": "Albuquerque Rui", "geo": null, "id": 147448439326781440, "id_str": "147448439326781441", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1369666774/7825_1172004455108_1077905329_30455508_3690179_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1369666774/7825_1172004455108_1077905329_30455508_3690179_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: For those wondering, the Rackspace Cloud Monitoring product is mostly written in #Nodejs (Sign up for the private beta!)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:47:07 +0000", "from_user": "xploit29", "from_user_id": 14838532, "from_user_id_str": "14838532", "from_user_name": "Irving Kcam Reyna", "geo": null, "id": 147447623324934140, "id_str": "147447623324934144", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1176199169/Jackie_-_Medio_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1176199169/Jackie_-_Medio_normal.jpg", "source": "<a href="http://connect.mediastre.am/" rel="nofollow">En Vivo Mediastream</a>", "text": "Manual de instalaci\\u00F3n de NodeJS en Windows 7 http://t.co/K88k3dAp #Mejorandola #NodeJS #mejorandola", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:43:29 +0000", "from_user": "victorgarcia317", "from_user_id": 185983925, "from_user_id_str": "185983925", "from_user_name": "V\\u00EDctor Garc\\u00EDa", "geo": null, "id": 147446710656970750, "id_str": "147446710656970752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1612192846/tux-kubuntu_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612192846/tux-kubuntu_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@juljupy i'm blue with nodejs", "to_user": "juljupy", "to_user_id": 82234876, "to_user_id_str": "82234876", "to_user_name": "Julio De Hoyos"}, +{"created_at": "Thu, 15 Dec 2011 22:40:57 +0000", "from_user": "jamescarr", "from_user_id": 12982472, "from_user_id_str": "12982472", "from_user_name": "jamescarr", "geo": null, "id": 147446072598466560, "id_str": "147446072598466560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/455220875/1udWUdsKPCKNBAbXofnULKziF2-mqY85th5ZQDz0f3GuF4bNXpmEOjGmVRI0Y9yO_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/455220875/1udWUdsKPCKNBAbXofnULKziF2-mqY85th5ZQDz0f3GuF4bNXpmEOjGmVRI0Y9yO_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: For those wondering, the Rackspace Cloud Monitoring product is mostly written in #Nodejs (Sign up for the private beta!)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:38:26 +0000", "from_user": "Cebolinhabh", "from_user_id": 53163650, "from_user_id_str": "53163650", "from_user_name": "Thiago Miranda", "geo": null, "id": 147445437652156400, "id_str": "147445437652156416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693643006/mario_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693643006/mario_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: For those wondering, the Rackspace Cloud Monitoring product is mostly written in #Nodejs (Sign up for the private beta!)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:36:56 +0000", "from_user": "sh1mmer", "from_user_id": 63803, "from_user_id_str": "63803", "from_user_name": "Tom Hughes-Croucher", "geo": null, "id": 147445060768763900, "id_str": "147445060768763904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1595178869/IMG_2476_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1595178869/IMG_2476_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: For those wondering, the Rackspace Cloud Monitoring product is mostly written in #Nodejs (Sign up for the private beta!)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:36:21 +0000", "from_user": "_alejandromg", "from_user_id": 53717698, "from_user_id_str": "53717698", "from_user_name": "Alejandro Morales", "geo": null, "id": 147444915633274880, "id_str": "147444915633274880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1473584095/2011-07-27-214648m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1473584095/2011-07-27-214648m_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: For those wondering, the Rackspace Cloud Monitoring product is mostly written in #Nodejs (Sign up for the private beta!)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:18:25 +0000", "from_user": "andrew_j_stone", "from_user_id": 318079932, "from_user_id_str": "318079932", "from_user_name": "Andrew J. Stone", "geo": null, "id": 147440400083337200, "id_str": "147440400083337217", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1598642373/284659_696310082096_24501632_36175371_4924429_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598642373/284659_696310082096_24501632_36175371_4924429_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @argv0: ---> Building nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 21:52:45 +0000", "from_user": "jaguilera_", "from_user_id": 337691375, "from_user_id_str": "337691375", "from_user_name": "Jes\\u00FAs Aguilera", "geo": null, "id": 147433941140381700, "id_str": "147433941140381698", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1673129171/yo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673129171/yo_normal.jpg", "source": "<a href="http://connect.mediastre.am/" rel="nofollow">En Vivo Mediastream</a>", "text": "Directorio de recursos para #nodejs http://t.co/qUHwyhkw #mejorandola", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 21:34:48 +0000", "from_user": "3rdEden", "from_user_id": 14350255, "from_user_id_str": "14350255", "from_user_name": "Arnout Kazemier", "geo": null, "id": 147429425087119360, "id_str": "147429425087119360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "muhahah: automatic log namespacing is working beautifully again: http://t.co/HJRgv3wj #nodejs http://t.co/TMNpUwYd will release soon.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} + +, +{"created_at": "Mon, 19 Dec 2011 16:31:58 +0000", "from_user": "maciejmalecki", "from_user_id": 263755874, "from_user_id_str": "263755874", "from_user_name": "Maciej Ma\\u0142ecki", "geo": null, "id": 148802765618028540, "id_str": "148802765618028544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1547225919/IMG_20110917_192531mt_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1547225919/IMG_20110917_192531mt_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@jvduf @nodejitsu Are these the 'rule the world' or 'rule the universe' plans? I never remember which ones are which :(", "to_user": "jvduf", "to_user_id": 41679937, "to_user_id_str": "41679937", "to_user_name": "Jeroen van Duffelen", "in_reply_to_status_id": 148801195006373900, "in_reply_to_status_id_str": "148801195006373888"}, +{"created_at": "Mon, 19 Dec 2011 16:25:44 +0000", "from_user": "jvduf", "from_user_id": 41679937, "from_user_id_str": "41679937", "from_user_name": "Jeroen van Duffelen", "geo": null, "id": 148801195006373900, "id_str": "148801195006373888", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1251159750/Jeroen_van_Duffelen_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1251159750/Jeroen_van_Duffelen_normal.jpeg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@nodejitsu masterplans... http://t.co/Y2BCu0Ww", "to_user": "nodejitsu", "to_user_id": 157442008, "to_user_id_str": "157442008", "to_user_name": "Nodejitsu"}, +{"created_at": "Mon, 19 Dec 2011 16:25:38 +0000", "from_user": "carlospeix", "from_user_id": 64229525, "from_user_id_str": "64229525", "from_user_name": "Carlos Peix", "geo": null, "id": 148801172684288000, "id_str": "148801172684288000", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1224493755/DSC02349cc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1224493755/DSC02349cc_normal.jpg", "source": "<a href="http://www.digsby.com/?utm_campaign=twitter" rel="nofollow">Digsby</a>", "text": "@jfroma: RT @o_amp_o: Intersect - A multi-user audio sequencer using #nodejs, #socketio and #audiolet. http://t.co/5CjiznrB cc @sebarenzi", "to_user": "jfroma", "to_user_id": 26559849, "to_user_id_str": "26559849", "to_user_name": "Jos\\u00E9 F. Romaniello"}, +{"created_at": "Mon, 19 Dec 2011 15:52:40 +0000", "from_user": "BrackishLake", "from_user_id": 302234570, "from_user_id_str": "302234570", "from_user_name": "Chris@BrackishLake", "geo": null, "id": 148792873444319230, "id_str": "148792873444319232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1528769415/Untitled-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1528769415/Untitled-2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@nodejitsu Are all services nominal? Our app can't seem to connect to the db all the sudden.", "to_user": "nodejitsu", "to_user_id": 157442008, "to_user_id_str": "157442008", "to_user_name": "Nodejitsu"}, +{"created_at": "Mon, 19 Dec 2011 14:28:03 +0000", "from_user": "benkross", "from_user_id": 16913955, "from_user_id_str": "16913955", "from_user_name": "Ben Ross", "geo": null, "id": 148771582389661700, "id_str": "148771582389661696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1120515336/Ben_Ad_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1120515336/Ben_Ad_normal.jpg", "source": "<a href="http://paper.li" rel="nofollow">Paper.li</a>", "text": "RT @nodejitsu: Nodejitsu Ninjas is out! http://t.co/PBus8pPz \\u25B8 Top stories today via @ddtrejo @cramforce @joemccann @danyork @sheynkman", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:58:53 +0000", "from_user": "bdryanovski", "from_user_id": 375704816, "from_user_id_str": "375704816", "from_user_name": "Bozhidar Dryanovski", "geo": null, "id": 148764242051469300, "id_str": "148764242051469313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1562056749/Cookie_Monster_by_ZoeWieZo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1562056749/Cookie_Monster_by_ZoeWieZo_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "That made my day. http://t.co/dQz7AsU6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:18:58 +0000", "from_user": "jfroma", "from_user_id": 26559849, "from_user_id_str": "26559849", "from_user_name": "Jos\\u00E9 F. Romaniello", "geo": null, "id": 148754196752109570, "id_str": "148754196752109568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1152169901/avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1152169901/avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @o_amp_o: Intersect - A multi-user audio sequencer using #nodejs, #socketio and #audiolet. http://t.co/2zM3gb5U", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:18:50 +0000", "from_user": "nodejitsu", "from_user_id": 157442008, "from_user_id_str": "157442008", "from_user_name": "Nodejitsu", "geo": null, "id": 148754162203635700, "id_str": "148754162203635713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "source": "<a href="http://paper.li" rel="nofollow">Paper.li</a>", "text": "Nodejitsu Ninjas is out! http://t.co/PBus8pPz \\u25B8 Top stories today via @ddtrejo @cramforce @joemccann @danyork @sheynkman", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:18:18 +0000", "from_user": "frr149", "from_user_id": 105482552, "from_user_id_str": "105482552", "from_user_name": "Fernando Rodr\\u00EDguez", "geo": null, "id": 148754026664693760, "id_str": "148754026664693760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1617824239/portrait_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1617824239/portrait_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Intersect - A multi-user audio sequencer using #nodejs, #socketio and #audiolet. http://t.co/0uVAMXGA http://t.co/RqWyYTJM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:17:22 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148753790647025660, "id_str": "148753790647025664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @o_amp_o: Intersect - A multi-user audio sequencer using #nodejs, #socketio and #audiolet. http://t.co/2zM3gb5U", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:47:06 +0000", "from_user": "o_amp_o", "from_user_id": 19656815, "from_user_id_str": "19656815", "from_user_name": "Joe Turner", "geo": null, "id": 148746175862939650, "id_str": "148746175862939648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/602345265/joe_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/602345265/joe_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Intersect - A multi-user audio sequencer using #nodejs, #socketio and #audiolet. http://t.co/2zM3gb5U", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:04:58 +0000", "from_user": "nodejitsu", "from_user_id": 157442008, "from_user_id_str": "157442008", "from_user_name": "Nodejitsu", "geo": null, "id": 148705374361493500, "id_str": "148705374361493506", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @robhawkes: @marak Played with hook.io over the weekend (finally). Loving the concept of splitting my app into component parts!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:42:40 +0000", "from_user": "nodejitsu", "from_user_id": 157442008, "from_user_id_str": "157442008", "from_user_name": "Nodejitsu", "geo": null, "id": 148699762365972480, "id_str": "148699762365972480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @marak: I just added UNIX pipe support to hook.io so you can now do stuff like: tail foo.txt -f | hookio and hookio -p | grep twitter::tweet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:59:19 +0000", "from_user": "marak", "from_user_id": 110465841, "from_user_id_str": "110465841", "from_user_name": "marak squires", "geo": null, "id": 148688853878845440, "id_str": "148688853878845440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1387685536/maraknormal_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1387685536/maraknormal_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Having a nice hook.io chat with @robhawkes on #nodejitsu freenode IRC !!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:09:21 +0000", "from_user": "dezoy", "from_user_id": 123176965, "from_user_id_str": "123176965", "from_user_name": "Anton Shestak", "geo": null, "id": 148676276285227000, "id_str": "148676276285227008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.friend.ly" rel="nofollow">friend.ly</a>", "text": "My #7faves on Twitter are @engadget @tjholowaychuk @felixge @nodejitsu @Kifozavr @nodejs @creationix -> http://t.co/pfoUNhvY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:08:00 +0000", "from_user": "_creative_area_", "from_user_id": 237257722, "from_user_id_str": "237257722", "from_user_name": "Creative Area", "geo": null, "id": 148660838058827780, "id_str": "148660838058827776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1213653822/logo_800x800_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1213653822/logo_800x800_normal.png", "source": "<a href="http://paper.li" rel="nofollow">Paper.li</a>", "text": "The Creative Area Weekly nouvelle \\u00E9dition http://t.co/YiWQu0Ej \\u25B8 Aujourd'hui \\u00E0 la UNE: @sencha @bocoup @nodejitsu @jaubourg @modernizr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:22:03 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148634176210472960, "id_str": "148634176210472961", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @dadicool RESTeasy: Test any API with APIeasy http://t.co/0mPC2aaW -< with such a great ecosystem, #>em /em< is starting to feel...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:12:56 +0000", "from_user": "dadicool", "from_user_id": 14200949, "from_user_id_str": "14200949", "from_user_name": "Dali Kilani", "geo": null, "id": 148631880982470660, "id_str": "148631880982470656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/86577298/portrait_dali_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/86577298/portrait_dali_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "RESTeasy: Test any API with APIeasy http://t.co/XhMMayoW -> with such a great ecosystem, #nodejs is starting to feel unavoidable ...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:34:24 +0000", "from_user": "luis2103", "from_user_id": 119916622, "from_user_id_str": "119916622", "from_user_name": "Luis Sancho", "geo": null, "id": 148591984070758400, "id_str": "148591984070758400", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1629425602/foto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629425602/foto_normal.jpg", "source": "<a href="http://reptincel.com" rel="nofollow">TwittTwittTwitt</a>", "text": "RT @jquery_addict: #jquery del lado server http://t.co/TrnN8Mum #mejorandola #nodejs (via @thesequencer)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:12:01 +0000", "from_user": "thesequencer", "from_user_id": 299406941, "from_user_id_str": "299406941", "from_user_name": "cristian g. coronel ", "geo": null, "id": 148586350243880960, "id_str": "148586350243880960", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1580510176/yo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580510176/yo_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "#jquery del lado server http://t.co/gizcy0C0 #mejorandola #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:33:50 +0000", "from_user": "donwb", "from_user_id": 21307435, "from_user_id_str": "21307435", "from_user_name": "Don Browning", "geo": null, "id": 148561641326395400, "id_str": "148561641326395392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1180549025/Profile_Pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1180549025/Profile_Pic_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "@larrywanzer @markph ya man.. go here for an overview of the stuff we did.. I can add you to our github repo also.. http://t.co/xFXlEPl5", "to_user": "larrywanzer", "to_user_id": 31208028, "to_user_id_str": "31208028", "to_user_name": "Larry Wanzer", "in_reply_to_status_id": 148559446132535300, "in_reply_to_status_id_str": "148559446132535297"}, +{"created_at": "Sun, 18 Dec 2011 18:52:48 +0000", "from_user": "robhawkes", "from_user_id": 14442542, "from_user_id_str": "14442542", "from_user_name": "Rob Hawkes", "geo": null, "id": 148475818811731970, "id_str": "148475818811731968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1082121604/Temporary_Avatar__Alt__-_600px_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1082121604/Temporary_Avatar__Alt__-_600px_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Getting stuck in with @Nodejitsu's hook.io. Taken a little while to get up to speed but it's starting to make sense.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:40:16 +0000", "from_user": "NodeKohai", "from_user_id": 299396879, "from_user_id_str": "299396879", "from_user_name": "Ko Hai", "geo": null, "id": 148382066009063420, "id_str": "148382066009063424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1357415286/saupload_happy_robot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1357415286/saupload_happy_robot_normal.jpg", "source": "<a href="http://github.com/nodejitsu/kohai" rel="nofollow">NodeKohai</a>", "text": "@mattcollins84 Did you try @nodejitsu, my creator?", "to_user": "mattcollins84", "to_user_id": 236086111, "to_user_id_str": "236086111", "to_user_name": "Matthew Collins"}, +{"created_at": "Sun, 18 Dec 2011 06:38:30 +0000", "from_user": "adrienneleigh", "from_user_id": 557563, "from_user_id_str": "557563", "from_user_name": "\\u01DDuu\\u01DD\\u0131\\u0279p\\u0250", "geo": null, "id": 148291026270949380, "id_str": "148291026270949377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/53518170/5b59018b13e51adf9369b9bdf0065e66_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/53518170/5b59018b13e51adf9369b9bdf0065e66_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@nodejitsu I just reserved my username, 'adrienneleigh', and it says to contact you. (I'm an early signup.)", "to_user": "nodejitsu", "to_user_id": 157442008, "to_user_id_str": "157442008", "to_user_name": "Nodejitsu"}, +{"created_at": "Sun, 18 Dec 2011 05:19:04 +0000", "from_user": "velvetflair", "from_user_id": 14651376, "from_user_id_str": "14651376", "from_user_name": "Shahriar Hyder", "geo": null, "id": 148271035056267260, "id_str": "148271035056267266", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1016584964/4487ddc4-d6c0-48ad-aad5-fd663766182b_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1016584964/4487ddc4-d6c0-48ad-aad5-fd663766182b_normal.png", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "node docs :: What are \"truthy\" and \"falsy\" values? http://t.co/LwvXrArk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:28:55 +0000", "from_user": "nodejitsu", "from_user_id": 157442008, "from_user_id_str": "157442008", "from_user_name": "Nodejitsu", "geo": null, "id": 148152717586608130, "id_str": "148152717586608128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ryah: @nodejs people should be following @indutny - he's been doing great core work the last few months", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:01:17 +0000", "from_user": "marak", "from_user_id": 110465841, "from_user_id_str": "110465841", "from_user_name": "marak squires", "geo": null, "id": 148115566492790800, "id_str": "148115566492790784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1387685536/maraknormal_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1387685536/maraknormal_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@pksunkara @nodejitsu That's neat. I much prefer that you can just type `jitsu deploy` once and then spam the enter key for all prompts :-)", "to_user": "pksunkara", "to_user_id": 122074153, "to_user_id_str": "122074153", "to_user_name": "Pavan Kumar Sunkara", "in_reply_to_status_id": 148093498070020100, "in_reply_to_status_id_str": "148093498070020097"}, +{"created_at": "Sat, 17 Dec 2011 17:33:36 +0000", "from_user": "pksunkara", "from_user_id": 122074153, "from_user_id_str": "122074153", "from_user_name": "Pavan Kumar Sunkara", "geo": null, "id": 148093498070020100, "id_str": "148093498070020097", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1427115741/181a5dbeda025f718df4d37bf522ed3d_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1427115741/181a5dbeda025f718df4d37bf522ed3d_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@nodejitsu takes 26s to create and deploy a new app, #nodejs", "to_user": "nodejitsu", "to_user_id": 157442008, "to_user_id_str": "157442008", "to_user_name": "Nodejitsu"}, +{"created_at": "Sat, 17 Dec 2011 14:48:26 +0000", "from_user": "Agarwal_Ankur", "from_user_id": 44179194, "from_user_id_str": "44179194", "from_user_name": "Ankur Agarwal", "geo": null, "id": 148051935155601400, "id_str": "148051935155601408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/310528056/aa1_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/310528056/aa1_normal.JPG", "source": "<a href="http://www.shareaholic.com" rel="nofollow">shareaholic app</a>", "text": "Scaling Isomorphic Javascript http://t.co/hkH7NA5w - scaling node.js applications one callback at a time. - http://t.co/0aEr1pQj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:00:23 +0000", "from_user": "pedrogte", "from_user_id": 16401507, "from_user_id_str": "16401507", "from_user_name": "Pedro Teixeira", "geo": null, "id": 147964346759258100, "id_str": "147964346759258112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1591778458/DSC02359-2_copy_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591778458/DSC02359-2_copy_normal.JPG", "source": "<a href="http://github.com/nodejitsu/kohai" rel="nofollow">NodeKohai</a>", "text": "RT @NodeKohai: .@astalwick We have stats! http://t.co/UKu7kYEJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:22:49 +0000", "from_user": "NodeKohai", "from_user_id": 299396879, "from_user_id_str": "299396879", "from_user_name": "Ko Hai", "geo": null, "id": 147909593387896830, "id_str": "147909593387896832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1357415286/saupload_happy_robot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1357415286/saupload_happy_robot_normal.jpg", "source": "<a href="http://github.com/nodejitsu/kohai" rel="nofollow">NodeKohai</a>", "text": ".@astalwick We have stats! http://t.co/UKu7kYEJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:49:51 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 147840897063723000, "id_str": "147840897063723008", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "nodejitsu-api (0.2.1-1): http://t.co/8LH46M0a nodejitsu API client wrapper", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:24:04 +0000", "from_user": "Xogost", "from_user_id": 126010186, "from_user_id_str": "126010186", "from_user_name": "Juan Camilo Martinez", "geo": null, "id": 147804209411141630, "id_str": "147804209411141633", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699288836/akane_y_yop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699288836/akane_y_yop_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ajamaica: Por cierto encontre Forever una manera de hacer deploy de Node.js sencillos http://t.co/47iMGc04", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:23:01 +0000", "from_user": "ajamaica", "from_user_id": 776449, "from_user_id_str": "776449", "from_user_name": "Arturo Jamaica", "geo": null, "id": 147803947095171070, "id_str": "147803947095171072", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1478040314/8822-huge_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1478040314/8822-huge_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "Por cierto encontre Forever una manera de hacer deploy de Node.js sencillos http://t.co/47iMGc04", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:09:40 +0000", "from_user": "diorahman", "from_user_id": 17058778, "from_user_id_str": "17058778", "from_user_name": "Dhi Aurrahman", "geo": null, "id": 147725087351640060, "id_str": "147725087351640064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1580655908/dio_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580655908/dio_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "it seems @nodejitsu haibu is nice, but @Nodester is great too", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:20:51 +0000", "from_user": "benyblack", "from_user_id": 19531113, "from_user_id_str": "19531113", "from_user_name": "Behnam Yousefi", "geo": null, "id": 147682605649764350, "id_str": "147682605649764353", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1225716885/ME4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225716885/ME4_normal.png", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "Proxying HTTP and Websockets in Node http://t.co/CBkArUdC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:20:50 +0000", "from_user": "benyblack", "from_user_id": 19531113, "from_user_id_str": "19531113", "from_user_name": "Behnam Yousefi", "geo": null, "id": 147682602353033200, "id_str": "147682602353033216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1225716885/ME4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225716885/ME4_normal.png", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "jsdom + jQuery in 5 lines with node.js http://t.co/CBkArUdC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:51:58 +0000", "from_user": "NodeKohai", "from_user_id": 299396879, "from_user_id_str": "299396879", "from_user_name": "Ko Hai", "geo": null, "id": 147660238592544770, "id_str": "147660238592544768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1357415286/saupload_happy_robot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1357415286/saupload_happy_robot_normal.jpg", "source": "<a href="http://github.com/nodejitsu/kohai" rel="nofollow">NodeKohai</a>", "text": "@jameswebmaster Did you try @nodejitsu, top node.js hosting platform?", "to_user": "jameswebmaster", "to_user_id": 103130733, "to_user_id_str": "103130733", "to_user_name": "Maikom"}, +{"created_at": "Fri, 16 Dec 2011 12:38:54 +0000", "from_user": "michielkalkman", "from_user_id": 14617589, "from_user_id_str": "14617589", "from_user_name": "Michiel Kalkman", "geo": null, "id": 147656950358872060, "id_str": "147656950358872065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1168254578/avatar2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1168254578/avatar2_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "RT @sborsje: Very interesting read: Scaling Isomorphic Javascript http://t.co/LIPYaOs6 (via @jvduf)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 05:09:05 +0000", "from_user": "alexindigo", "from_user_id": 26664625, "from_user_id_str": "26664625", "from_user_name": "Alex Indigo", "geo": null, "id": 147543749663277060, "id_str": "147543749663277058", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/835829223/me_by_igor_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/835829223/me_by_igor_small_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@edwardsanchez even simpler than Monit or haibu http://t.co/6U8HPieG", "to_user": "edwardsanchez", "to_user_id": 159394189, "to_user_id_str": "159394189", "to_user_name": "Edward Sanchez"}, +{"created_at": "Fri, 16 Dec 2011 00:15:46 +0000", "from_user": "diorahman", "from_user_id": 17058778, "from_user_id_str": "17058778", "from_user_name": "Dhi Aurrahman", "geo": null, "id": 147469933704515600, "id_str": "147469933704515584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1580655908/dio_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580655908/dio_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Ahhh, @nodejitsu is still the coolest :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:33:17 +0000", "from_user": "rootslab", "from_user_id": 265434730, "from_user_id_str": "265434730", "from_user_name": "guglielmo ferri", "geo": null, "id": 147459241324707840, "id_str": "147459241324707840", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1271109549/funny-pictures-anmilas-cats-white-chinese-cat_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1271109549/funny-pictures-anmilas-cats-white-chinese-cat_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@_nss_ gi\\u00E0 non mi ricordo bene, hai seguito questa struttura tu ?\\ndai un occhio! http://t.co/d4PQy4m2", "to_user": "_Nss_", "to_user_id": 104966372, "to_user_id_str": "104966372", "to_user_name": "Luca Lanziani"}, +{"created_at": "Thu, 15 Dec 2011 22:28:29 +0000", "from_user": "ikioteck", "from_user_id": 276776806, "from_user_id_str": "276776806", "from_user_name": "Israel Medina", "geo": null, "id": 147442934592188400, "id_str": "147442934592188416", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1299115366/kio_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1299115366/kio_normal.jpg", "source": "<a href="http://connect.mediastre.am/" rel="nofollow">En Vivo Mediastream</a>", "text": "Que onda con nodejitsu? #mejorandola", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:48:34 +0000", "from_user": "NodeKohai", "from_user_id": 299396879, "from_user_id_str": "299396879", "from_user_name": "Ko Hai", "geo": null, "id": 147402689364504580, "id_str": "147402689364504577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1357415286/saupload_happy_robot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1357415286/saupload_happy_robot_normal.jpg", "source": "<a href="http://github.com/nodejitsu/kohai" rel="nofollow">NodeKohai</a>", "text": ".@saadiq My telemetry module quantifies node popularity by number of razy IRC parties at #nodejitsu!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:38:10 +0000", "from_user": "webOS_Touchpad", "from_user_id": 103268768, "from_user_id_str": "103268768", "from_user_name": "webOS Touchpad", "geo": null, "id": 147384972179812350, "id_str": "147384972179812353", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1575638238/Screen_shot_2011-10-06_at_12.04.08_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575638238/Screen_shot_2011-10-06_at_12.04.08_PM_normal.png", "source": "<a href="http://paper.li" rel="nofollow">Paper.li</a>", "text": "The #webOS Community Daily is out! http://t.co/KzKyncDZ \\u25B8 Top stories today via @nodejitsu @mundodostablets @miwendt @bwabeinfo @acarback", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 14:47:57 +0000", "from_user": "kilianciuffolo", "from_user_id": 26379380, "from_user_id_str": "26379380", "from_user_name": "Kilian Ciuffolo", "geo": null, "id": 147327035793096700, "id_str": "147327035793096706", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1536892106/programma_101_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1536892106/programma_101_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@nodejitsu rss feed is literally gone crazy", "to_user": "nodejitsu", "to_user_id": 157442008, "to_user_id_str": "157442008", "to_user_name": "Nodejitsu"}, +{"created_at": "Thu, 15 Dec 2011 14:46:22 +0000", "from_user": "rikkertkoppes", "from_user_id": 22610288, "from_user_id_str": "22610288", "from_user_name": "Rikkert Koppes", "geo": null, "id": 147326636658929660, "id_str": "147326636658929665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/102853028/icon_96_96_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/102853028/icon_96_96_normal.png", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "RT @sborsje: Very interesting read: Scaling Isomorphic Javascript http://t.co/LIPYaOs6 (via @jvduf)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 14:39:58 +0000", "from_user": "sborsje", "from_user_id": 7642092, "from_user_id_str": "7642092", "from_user_name": "Stefan Borsje", "geo": null, "id": 147325025962295300, "id_str": "147325025962295296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/579249133/avatar_pro_200x200_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/579249133/avatar_pro_200x200_normal.png", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "Very interesting read: Scaling Isomorphic Javascript http://t.co/LIPYaOs6 (via @jvduf)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 07:52:18 +0000", "from_user": "nodejitsu", "from_user_id": 157442008, "from_user_id_str": "157442008", "from_user_name": "Nodejitsu", "geo": null, "id": 147222433450037250, "id_str": "147222433450037250", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Scheduled maintenance is starting now. All systems operational in 1-2 hours.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 07:11:24 +0000", "from_user": "EmilStenstrom", "from_user_id": 16038461, "from_user_id_str": "16038461", "from_user_name": "Emil Stenstr\\u00F6m", "geo": null, "id": 147212144188981250, "id_str": "147212144188981248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1570910143/emil_stenstrom_2011-09-20_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1570910143/emil_stenstrom_2011-09-20_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@nodejitsu Your RSS feed is 100% borked. Please fix!", "to_user": "nodejitsu", "to_user_id": 157442008, "to_user_id_str": "157442008", "to_user_name": "Nodejitsu"}, +{"created_at": "Thu, 15 Dec 2011 06:40:45 +0000", "from_user": "jvduf", "from_user_id": 41679937, "from_user_id_str": "41679937", "from_user_name": "Jeroen van Duffelen", "geo": null, "id": 147204428796141570, "id_str": "147204428796141569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1251159750/Jeroen_van_Duffelen_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1251159750/Jeroen_van_Duffelen_normal.jpeg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Let's see if we can crack the code for the isomorphic View-Presenter concept! http://t.co/o5kmnzx5 @flatiron @nodejitsu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 06:32:47 +0000", "from_user": "indutny", "from_user_id": 92915570, "from_user_id_str": "92915570", "from_user_name": "Fedor Indutny", "geo": null, "id": 147202425240035330, "id_str": "147202425240035329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1342629236/e474c72a97af94dd27feb53be98ceab9_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1342629236/e474c72a97af94dd27feb53be98ceab9_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: A big welcome to @dscape, the latest addition to Team Nodejitsu! #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 05:37:38 +0000", "from_user": "patxangas", "from_user_id": 2176291, "from_user_id_str": "2176291", "from_user_name": "karlos g liberal", "geo": null, "id": 147188544723632130, "id_str": "147188544723632129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1583024255/patxangas_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583024255/patxangas_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rgaidot: haibu: a node.js application server - spawn your own node.js clouds, on your own hardware http://t.co/28CNYAnK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 04:22:33 +0000", "from_user": "intabulas", "from_user_id": 4364161, "from_user_id_str": "4364161", "from_user_name": "Mark Lussier", "geo": null, "id": 147169647932866560, "id_str": "147169647932866560", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1291712793/eightbit-234b4a36-2fe1-4a5e-a781-802047827051_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1291712793/eightbit-234b4a36-2fe1-4a5e-a781-802047827051_normal.png", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@heroku has been nice but @nodejitsu has been amazing", "to_user": "heroku", "to_user_id": 10257182, "to_user_id_str": "10257182", "to_user_name": "heroku"}, +{"created_at": "Thu, 15 Dec 2011 04:13:22 +0000", "from_user": "chrisrauh", "from_user_id": 14961157, "from_user_id_str": "14961157", "from_user_name": "Christian Rauh", "geo": null, "id": 147167340000317440, "id_str": "147167340000317441", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/551379645/Marcello-Mastroianni-8.5-96px_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/551379645/Marcello-Mastroianni-8.5-96px_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rgaidot: haibu: a node.js application server - spawn your own node.js clouds, on your own hardware http://t.co/28CNYAnK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 03:18:43 +0000", "from_user": "drainmice", "from_user_id": 278349531, "from_user_id_str": "278349531", "from_user_name": "Jed Parsons", "geo": null, "id": 147153585615020030, "id_str": "147153585615020034", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1314012266/207533_1012868680414_1185937086_30065249_1320_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1314012266/207533_1012868680414_1185937086_30065249_1320_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rgaidot: haibu: a node.js application server - spawn your own node.js clouds, on your own hardware http://t.co/28CNYAnK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 02:59:55 +0000", "from_user": "replore", "from_user_id": 5230221, "from_user_id_str": "5230221", "from_user_name": "replore", "geo": null, "id": 147148852783357950, "id_str": "147148852783357952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1324817836/manuki_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1324817836/manuki_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "heatwave http://t.co/Me4iOwMw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 02:13:57 +0000", "from_user": "alexindigo", "from_user_id": 26664625, "from_user_id_str": "26664625", "from_user_name": "Alex Indigo", "geo": null, "id": 147137287573078000, "id_str": "147137287573078016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/835829223/me_by_igor_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/835829223/me_by_igor_small_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@edwardsanchez hey, prolly that's what are you looking for :) http://t.co/F15MD9bc", "to_user": "edwardsanchez", "to_user_id": 159394189, "to_user_id_str": "159394189", "to_user_name": "Edward Sanchez"}, +{"created_at": "Thu, 15 Dec 2011 02:11:04 +0000", "from_user": "bLeff", "from_user_id": 17518030, "from_user_id_str": "17518030", "from_user_name": "Ben Leffler", "geo": null, "id": 147136560033312770, "id_str": "147136560033312768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/65017553/q508130540_5663_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/65017553/q508130540_5663_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: Our open-source #nodejs application server haibu: http://t.co/qfjU7hDU 600+ instances currently running in production. Increase the cloud!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 00:49:52 +0000", "from_user": "_pablo", "from_user_id": 12249142, "from_user_id_str": "12249142", "from_user_name": "_pablo", "geo": null, "id": 147116127280042000, "id_str": "147116127280041984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/272586547/totoro.medium_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/272586547/totoro.medium_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "+1 RT @rgaidot: haibu: a node.js application server - spawn your own node.js clouds, on your own hardware http://t.co/6GtzNGp4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 00:47:06 +0000", "from_user": "danyork", "from_user_id": 10312, "from_user_id_str": "10312", "from_user_name": "Dan York", "geo": null, "id": 147115430706823170, "id_str": "147115430706823169", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/72286948/Dan-PulverTV1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/72286948/Dan-PulverTV1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rgaidot: haibu: a node.js application server - spawn your own node.js clouds, on your own hardware http://t.co/28CNYAnK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 00:40:06 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 147113667454959600, "id_str": "147113667454959616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rgaidot: haibu: a node.js application server - spawn your own node.js clouds, on your own hardware http://t.co/28CNYAnK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 00:37:23 +0000", "from_user": "marak", "from_user_id": 110465841, "from_user_id_str": "110465841", "from_user_name": "marak squires", "geo": null, "id": 147112984060231680, "id_str": "147112984060231682", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1387685536/maraknormal_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1387685536/maraknormal_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rgaidot: haibu: a node.js application server - spawn your own node.js clouds, on your own hardware http://t.co/28CNYAnK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 00:36:16 +0000", "from_user": "rgaidot", "from_user_id": 1245801, "from_user_id_str": "1245801", "from_user_name": "R\\u00E9gis Gaidot", "geo": null, "id": 147112705424236540, "id_str": "147112705424236545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1266738841/avatar-6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266738841/avatar-6_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "haibu: a node.js application server - spawn your own node.js clouds, on your own hardware http://t.co/28CNYAnK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 23:36:37 +0000", "from_user": "jvduf", "from_user_id": 41679937, "from_user_id_str": "41679937", "from_user_name": "Jeroen van Duffelen", "geo": null, "id": 147097691099373570, "id_str": "147097691099373568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1251159750/Jeroen_van_Duffelen_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1251159750/Jeroen_van_Duffelen_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: A big welcome to @dscape, the latest addition to Team Nodejitsu! #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 23:10:53 +0000", "from_user": "benkross", "from_user_id": 16913955, "from_user_id_str": "16913955", "from_user_name": "Ben Ross", "geo": null, "id": 147091215182086140, "id_str": "147091215182086144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1120515336/Ben_Ad_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1120515336/Ben_Ad_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: Our open-source #nodejs application server haibu: http://t.co/qfjU7hDU 600+ instances currently running in production. Increase the cloud!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 22:55:39 +0000", "from_user": "dadicool", "from_user_id": 14200949, "from_user_id_str": "14200949", "from_user_name": "Dali Kilani", "geo": null, "id": 147087383664410620, "id_str": "147087383664410624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/86577298/portrait_dali_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/86577298/portrait_dali_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: Our open-source #nodejs application server haibu: http://t.co/qfjU7hDU 600+ instances currently running in production. Increase the cloud!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 22:41:33 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 147083834997997570, "id_str": "147083834997997568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: Our open-source #nodejs application server haibu: http://t.co/qfjU7hDU 600+ instances currently running in production. Increase the cloud!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 22:41:25 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147083799145103360, "id_str": "147083799145103361", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Our open-source #nodejs application server haibu: http://t.co/lL6L2Mlu 600+ instances currently running in produ... http://t.co/jFWwbOqt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 22:20:41 +0000", "from_user": "marten_cz", "from_user_id": 65118026, "from_user_id_str": "65118026", "from_user_name": "Martin Malek", "geo": null, "id": 147078581888106500, "id_str": "147078581888106496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1143208813/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1143208813/profile_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @nodejitsu: #nodejs application server is open-source and awesome! Currently running 500+ haibu servers concurrently in production.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 22:10:51 +0000", "from_user": "nodejitsu", "from_user_id": 157442008, "from_user_id_str": "157442008", "from_user_name": "Nodejitsu", "geo": null, "id": 147076107873689600, "id_str": "147076107873689601", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Our open-source #nodejs application server haibu: http://t.co/qfjU7hDU 600+ instances currently running in production. Increase the cloud!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 22:05:15 +0000", "from_user": "nodejitsu", "from_user_id": 157442008, "from_user_id_str": "157442008", "from_user_name": "Nodejitsu", "geo": null, "id": 147074699044720640, "id_str": "147074699044720640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Fun fact: Our #nodejs application server is open-source and awesome! We are currently running 500+ haibu servers concurrently in production.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:49:12 +0000", "from_user": "_alejandromg", "from_user_id": 53717698, "from_user_id_str": "53717698", "from_user_name": "Alejandro Morales", "geo": null, "id": 147070661137940480, "id_str": "147070661137940480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1473584095/2011-07-27-214648m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1473584095/2011-07-27-214648m_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dscape Awesome news for nodejitsu! ;) Congrats.", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147070132664008700, "in_reply_to_status_id_str": "147070132664008705"}, +{"created_at": "Wed, 14 Dec 2011 21:47:43 +0000", "from_user": "ddtrejo", "from_user_id": 58248334, "from_user_id_str": "58248334", "from_user_name": "David Trejo", "geo": null, "id": 147070288037818370, "id_str": "147070288037818369", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/343749589/davidsculpture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/343749589/davidsculpture_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@marak @nodejitsu getting there, 1.5 more semesters to go! Just finished my last final minutes ago, off to the bay to code&chill for a month", "to_user": "marak", "to_user_id": 110465841, "to_user_id_str": "110465841", "to_user_name": "marak squires", "in_reply_to_status_id": 147068664485654530, "in_reply_to_status_id_str": "147068664485654528"}, +{"created_at": "Wed, 14 Dec 2011 21:45:49 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147069809220272130, "id_str": "147069809220272128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: A big welcome to @dscape, the latest addition to Team Nodejitsu! #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:41:16 +0000", "from_user": "marak", "from_user_id": 110465841, "from_user_id_str": "110465841", "from_user_name": "marak squires", "geo": null, "id": 147068664485654530, "id_str": "147068664485654528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1387685536/maraknormal_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1387685536/maraknormal_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@ddtrejo Are you almost done with school? Your name should be the next hire @nodejitsu tweets! :-)", "to_user": "ddtrejo", "to_user_id": 58248334, "to_user_id_str": "58248334", "to_user_name": "David Trejo", "in_reply_to_status_id": 147067837222105100, "in_reply_to_status_id_str": "147067837222105088"}, +{"created_at": "Wed, 14 Dec 2011 21:37:59 +0000", "from_user": "ddtrejo", "from_user_id": 58248334, "from_user_id_str": "58248334", "from_user_name": "David Trejo", "geo": null, "id": 147067837222105100, "id_str": "147067837222105088", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/343749589/davidsculpture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/343749589/davidsculpture_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@nodejitsu @dscape congrats dscape!", "to_user": "nodejitsu", "to_user_id": 157442008, "to_user_id_str": "157442008", "to_user_name": "Nodejitsu", "in_reply_to_status_id": 147060300984758270, "in_reply_to_status_id_str": "147060300984758272"}, +{"created_at": "Wed, 14 Dec 2011 21:33:39 +0000", "from_user": "NeCkEr", "from_user_id": 14176673, "from_user_id_str": "14176673", "from_user_name": "NeCkEr", "geo": null, "id": 147066746371702800, "id_str": "147066746371702784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1656954487/imgSnow_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656954487/imgSnow_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "congratz RT @nodejitsu A big welcome to @dscape, the latest addition to Team Nodejitsu! #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:31:19 +0000", "from_user": "adron", "from_user_id": 16063910, "from_user_id_str": "16063910", "from_user_name": "Adron Hall", "geo": null, "id": 147066159580196860, "id_str": "147066159580196864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1639079696/bikingMe2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639079696/bikingMe2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@donwb Got both @nodejitsu @Nodester in my previous list. They'll definitely be included in PaaS coolness ongoing. :)", "to_user": "donwb", "to_user_id": 21307435, "to_user_id_str": "21307435", "to_user_name": "Don Browning", "in_reply_to_status_id": 147057753716817920, "in_reply_to_status_id_str": "147057753716817921"}, +{"created_at": "Wed, 14 Dec 2011 21:25:58 +0000", "from_user": "indexzero", "from_user_id": 13696102, "from_user_id_str": "13696102", "from_user_name": "Charlie Robbins", "geo": null, "id": 147064812956950530, "id_str": "147064812956950529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1179850399/P1000093bw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1179850399/P1000093bw_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: A big welcome to @dscape, the latest addition to Team Nodejitsu! #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:23:38 +0000", "from_user": "nodejitsu", "from_user_id": 157442008, "from_user_id_str": "157442008", "from_user_name": "Nodejitsu", "geo": null, "id": 147064225867632640, "id_str": "147064225867632640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @saadiq: Getting a startup job for the startup newbie is about focus and persistence. http://t.co/LR19orLr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:15:14 +0000", "from_user": "cronopio2", "from_user_id": 14474239, "from_user_id_str": "14474239", "from_user_name": "D\\u24B6niel \\u24B6ristizabal \\u2622", "geo": null, "id": 147062110952755200, "id_str": "147062110952755200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1587000370/DennisRitchie_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587000370/DennisRitchie_normal.gif", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "GREAT!! More hands for awesome tools!! RT @nodejitsu: A big welcome to @dscape, the latest addition to Team Nodejitsu! #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:14:38 +0000", "from_user": "_alejandromg", "from_user_id": 53717698, "from_user_id_str": "53717698", "from_user_name": "Alejandro Morales", "geo": null, "id": 147061960943472640, "id_str": "147061960943472640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1473584095/2011-07-27-214648m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1473584095/2011-07-27-214648m_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: A big welcome to @dscape, the latest addition to Team Nodejitsu! #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:12:32 +0000", "from_user": "3rdEden", "from_user_id": 14350255, "from_user_id_str": "14350255", "from_user_name": "Arnout Kazemier", "geo": null, "id": 147061431228039170, "id_str": "147061431228039168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Congratulations @dscape! RT \\u201C@nodejitsu: A big welcome to @dscape, the latest addition to Team Nodejitsu! #nodejs\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:12:25 +0000", "from_user": "TheDeveloper", "from_user_id": 18001569, "from_user_id_str": "18001569", "from_user_name": "Geoff Wagstaff", "geo": null, "id": 147061404787150850, "id_str": "147061404787150848", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1413195938/the_developer_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1413195938/the_developer_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@nodejitsu @dscape congrats!", "to_user": "nodejitsu", "to_user_id": 157442008, "to_user_id_str": "157442008", "to_user_name": "Nodejitsu", "in_reply_to_status_id": 147060300984758270, "in_reply_to_status_id_str": "147060300984758272"}, +{"created_at": "Wed, 14 Dec 2011 21:09:07 +0000", "from_user": "mikeal", "from_user_id": 668423, "from_user_id_str": "668423", "from_user_name": "Mikeal", "geo": null, "id": 147060574549835780, "id_str": "147060574549835777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1554648053/avatar-bw_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554648053/avatar-bw_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: A big welcome to @dscape, the latest addition to Team Nodejitsu! #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:08:42 +0000", "from_user": "marak", "from_user_id": 110465841, "from_user_id_str": "110465841", "from_user_name": "marak squires", "geo": null, "id": 147060467318259700, "id_str": "147060467318259713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1387685536/maraknormal_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1387685536/maraknormal_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: A big welcome to @dscape, the latest addition to Team Nodejitsu! #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:08:02 +0000", "from_user": "nodejitsu", "from_user_id": 157442008, "from_user_id_str": "157442008", "from_user_name": "Nodejitsu", "geo": null, "id": 147060300984758270, "id_str": "147060300984758272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "A big welcome to @dscape, the latest addition to Team Nodejitsu! #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:05:25 +0000", "from_user": "marak", "from_user_id": 110465841, "from_user_id_str": "110465841", "from_user_name": "marak squires", "geo": null, "id": 147059641141047300, "id_str": "147059641141047297", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1387685536/maraknormal_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1387685536/maraknormal_normal.png", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "RT @dscape: WOOP! \"Nuno, looks like you're all good. Welcome to Nodejitsu.\" @saadiq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 20:57:55 +0000", "from_user": "donwb", "from_user_id": 21307435, "from_user_id_str": "21307435", "from_user_name": "Don Browning", "geo": null, "id": 147057753716817920, "id_str": "147057753716817921", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1180549025/Profile_Pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1180549025/Profile_Pic_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "@adron @nodejitsu and @Nodester are two node.js PaaS providers..", "to_user": "adron", "to_user_id": 16063910, "to_user_id_str": "16063910", "to_user_name": "Adron Hall", "in_reply_to_status_id": 147036170528894980, "in_reply_to_status_id_str": "147036170528894976"}, +{"created_at": "Wed, 14 Dec 2011 19:56:52 +0000", "from_user": "kstirman", "from_user_id": 8723762, "from_user_id_str": "8723762", "from_user_name": "Kelly Stirman", "geo": null, "id": 147042388894953470, "id_str": "147042388894953472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/210467530/244.mr.t.092806_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/210467530/244.mr.t.092806_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "RT @dscape: WOOP! \"Nuno, looks like you're all good. Welcome to Nodejitsu.\" @saadiq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 19:55:06 +0000", "from_user": "chrismatthieu", "from_user_id": 13604142, "from_user_id_str": "13604142", "from_user_name": "Chris Matthieu", "geo": null, "id": 147041946395873280, "id_str": "147041946395873280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/918916153/SuperChrisSmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/918916153/SuperChrisSmall_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "I finally realized why @nodejitsu's logo looked familiar to me. Check out Comtel Connect's logo http://t.co/kOMHDGvF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 19:31:15 +0000", "from_user": "intabulas", "from_user_id": 4364161, "from_user_id_str": "4364161", "from_user_name": "Mark Lussier", "geo": null, "id": 147035945793884160, "id_str": "147035945793884160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1291712793/eightbit-234b4a36-2fe1-4a5e-a781-802047827051_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1291712793/eightbit-234b4a36-2fe1-4a5e-a781-802047827051_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@nodejitsu got my email week or so back, so can I be activated now :) this is my userid I reserved", "to_user": "nodejitsu", "to_user_id": 157442008, "to_user_id_str": "157442008", "to_user_name": "Nodejitsu"}, +{"created_at": "Wed, 14 Dec 2011 18:56:46 +0000", "from_user": "pedrogte", "from_user_id": 16401507, "from_user_id_str": "16401507", "from_user_name": "Pedro Teixeira", "geo": null, "id": 147027265283293200, "id_str": "147027265283293184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1591778458/DSC02359-2_copy_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591778458/DSC02359-2_copy_normal.JPG", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "RT @dscape: WOOP! \"Nuno, looks like you're all good. Welcome to Nodejitsu.\" @saadiq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 18:45:43 +0000", "from_user": "booyaa", "from_user_id": 719673, "from_user_id_str": "719673", "from_user_name": "booyaa", "geo": null, "id": 147024486489788400, "id_str": "147024486489788417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/640332281/boo-sm-avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/640332281/boo-sm-avatar_normal.png", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": ".@dscape you just joined the @nodejitsu team?!?", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147009691636088830, "in_reply_to_status_id_str": "147009691636088833"}, +{"created_at": "Wed, 14 Dec 2011 17:46:56 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147009691636088830, "id_str": "147009691636088833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "WOOP! \"Nuno, looks like you're all good. Welcome to Nodejitsu.\" @saadiq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 17:09:45 +0000", "from_user": "djetchev", "from_user_id": 89859740, "from_user_id_str": "89859740", "from_user_name": "Dimitare Jetchev", "geo": null, "id": 147000333841862660, "id_str": "147000333841862657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/528621418/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/528621418/me_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Safari on iOS</a>", "text": "http://t.co/QrqKeYG7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 16:27:19 +0000", "from_user": "elfsternberg", "from_user_id": 18141592, "from_user_id_str": "18141592", "from_user_name": "Elf Sternberg", "geo": null, "id": 146989653914947600, "id_str": "146989653914947584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/67514365/Avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/67514365/Avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Gain 2,000 XP: http://t.co/Yx3OxNqE and http://t.co/8YqB70uM I can now fix and release switchboard, and it won't be broken.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 15:21:20 +0000", "from_user": "dakemasaya", "from_user_id": 214161231, "from_user_id_str": "214161231", "from_user_name": "\\u3060\\u3051", "geo": null, "id": 146973050296999940, "id_str": "146973050296999937", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1641220238/xrwD4j2a_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641220238/xrwD4j2a_normal", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @sugyan: Node\\u89E6\\u308A\\u59CB\\u3081\\u30662\\u30F6\\u6708\\u3067nodejitsu\\u306B\\u63A1\\u7528\\u3055\\u308C\\u305F17\\u6B73\\u304C\\u3044\\u308B\\u3001\\u3060\\u3068\\u2026 #tng3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 13:10:39 +0000", "from_user": "ryu22e", "from_user_id": 10098472, "from_user_id_str": "10098472", "from_user_name": "ryu22e", "geo": null, "id": 146940161509429250, "id_str": "146940161509429249", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1653669403/ryu22e_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653669403/ryu22e_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @sugyan: Node\\u89E6\\u308A\\u59CB\\u3081\\u30662\\u30F6\\u6708\\u3067nodejitsu\\u306B\\u63A1\\u7528\\u3055\\u308C\\u305F17\\u6B73\\u304C\\u3044\\u308B\\u3001\\u3060\\u3068\\u2026 #tng3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Wed, 14 Dec 2011 13:10:29 +0000", "from_user": "zegenvs", "from_user_id": 386573, "from_user_id_str": "386573", "from_user_name": "Fumikazu Fujiwara", "geo": null, "id": 146940118895300600, "id_str": "146940118895300608", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1241948499/ffujiwara_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1241948499/ffujiwara_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Node\\u89E6\\u308A\\u59CB\\u3081\\u3066\\u3000\\uFF12\\u30F6\\u6708\\u3067\\u3000http://t.co/i56UTZRd\\u3000\\u306B\\u63A1\\u7528\\u3055\\u308C\\u308B\\u9AD8\\u6821\\u751F\\u3068\\u304B \\u305D\\u3044\\u3046\\u6642\\u4EE3\\u304B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 13:10:24 +0000", "from_user": "sugyan", "from_user_id": 15081480, "from_user_id_str": "15081480", "from_user_name": "\\u3059\\u304E\\u3083\\u30FC\\u3093", "geo": null, "id": 146940098309656580, "id_str": "146940098309656578", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1549733370/icon-large_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1549733370/icon-large_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Node\\u89E6\\u308A\\u59CB\\u3081\\u30662\\u30F6\\u6708\\u3067nodejitsu\\u306B\\u63A1\\u7528\\u3055\\u308C\\u305F17\\u6B73\\u304C\\u3044\\u308B\\u3001\\u3060\\u3068\\u2026 #tng3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 09:01:22 +0000", "from_user": "DrAzraelTod", "from_user_id": 14235202, "from_user_id_str": "14235202", "from_user_name": "Dr. Azrael Tod", "geo": null, "id": 146877424431403000, "id_str": "146877424431403008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1551458056/qr_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1551458056/qr_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "coole Idee via @DATENWOLF -suppe: \"Heatwave\" - Code-Heatmap nach Aktivit\\u00E4t http://t.co/snPSkKbp http://t.co/MFUCehQi http://t.co/xDUVgyLZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 07:21:37 +0000", "from_user": "booyaa", "from_user_id": 719673, "from_user_id_str": "719673", "from_user_name": "booyaa", "geo": null, "id": 146852325338783740, "id_str": "146852325338783744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/640332281/boo-sm-avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/640332281/boo-sm-avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: New deployments should now be back online. Let the `jitsu deploy` begin! Need support? #nodejitsu on freenode or email support@nodejitsu.com", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 07:16:43 +0000", "from_user": "pintarqccnqx1", "from_user_id": 388529872, "from_user_id_str": "388529872", "from_user_name": "Pintar Dye", "geo": null, "id": 146851094058901500, "id_str": "146851094058901504", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1582274111/f_30_w_0112_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1582274111/f_30_w_0112_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@nodejitsu http://t.co/Yer1kvwi", "to_user": "nodejitsu", "to_user_id": 157442008, "to_user_id_str": "157442008", "to_user_name": "Nodejitsu", "in_reply_to_status_id": 146728597216960500, "in_reply_to_status_id_str": "146728597216960514"}, +{"created_at": "Wed, 14 Dec 2011 06:16:54 +0000", "from_user": "kuruma3", "from_user_id": 100368846, "from_user_id_str": "100368846", "from_user_name": "kuruma3", "geo": null, "id": 146836039821049860, "id_str": "146836039821049856", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1015332840/twittericon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1015332840/twittericon_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "nodejitsu\\u306Ejitsu\\u3063\\u3066\\u8853\\u3060\\u3063\\u305F\\u306E\\u304B\\u3041\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 05:59:53 +0000", "from_user": "beautifulnode", "from_user_id": 428579497, "from_user_id_str": "428579497", "from_user_name": "beautifulnode", "geo": null, "id": 146831757742841860, "id_str": "146831757742841856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694584089/Untitleddrawing__1__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694584089/Untitleddrawing__1__normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @marak: The growth we are seeing @Nodejitsu is kinda unreal. If you haven't gotten into #nodejs yet...you should RIGHT NOW! :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 04:09:41 +0000", "from_user": "JeffreyKaine", "from_user_id": 14598505, "from_user_id_str": "14598505", "from_user_name": "JeffreyKaine", "geo": null, "id": 146804024723775500, "id_str": "146804024723775488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1576501697/twavatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576501697/twavatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MagusXIX: The new site is up at http://t.co/Tkj9NaAz ... give it a gander if you please. :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 03:40:46 +0000", "from_user": "MagusXIX", "from_user_id": 18282604, "from_user_id_str": "18282604", "from_user_name": "Jack Wolfe", "geo": null, "id": 146796747010744320, "id_str": "146796747010744320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1229845680/Mechael_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1229845680/Mechael_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "The new site is up at http://t.co/Tkj9NaAz ... give it a gander if you please. :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 03:40:02 +0000", "from_user": "del_javascript", "from_user_id": 23282663, "from_user_id_str": "23282663", "from_user_name": "Javascript News", "geo": null, "id": 146796561802854400, "id_str": "146796561802854400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/90410047/clouds2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/90410047/clouds2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Keep a node.js server up with Forever - http://t.co/9EcXTchi - scaling node.js applications one callback at a time. http://t.co/F8Y5Rvjs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 03:23:08 +0000", "from_user": "PistachioPony", "from_user_id": 360848817, "from_user_id_str": "360848817", "from_user_name": "maria m m", "geo": null, "id": 146792310129172480, "id_str": "146792310129172480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1510777826/mmm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1510777826/mmm_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Great talk today at the Node.js meetup by @indexzero Guys beat me out to the last Nodejitsu t-shirt :( Nodejitsu is *the shit* yo!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 03:08:13 +0000", "from_user": "blake41", "from_user_id": 7605412, "from_user_id_str": "7605412", "from_user_name": "blake johnson", "geo": null, "id": 146788556088684540, "id_str": "146788556088684544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/136228431/IMG_0508_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/136228431/IMG_0508_normal.JPG", "source": "<a href="http://taptaptap.com/camera+" rel="nofollow">Camera+</a>", "text": "Finally one of the cool kids with my new @nodejitsu tshirt. Thanks for the talk tonight guys http://t.co/yfTAJYaL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 01:58:30 +0000", "from_user": "johnmurch", "from_user_id": 62303, "from_user_id_str": "62303", "from_user_name": "John Murch", "geo": null, "id": 146771008861384700, "id_str": "146771008861384704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1159967445/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1159967445/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@indexzero great presentation at #nycnode.js - Anyone new to #node including me is/should be reading http://t.co/7CfkBFkW", "to_user": "indexzero", "to_user_id": 13696102, "to_user_id_str": "13696102", "to_user_name": "Charlie Robbins"}, +{"created_at": "Wed, 14 Dec 2011 01:01:57 +0000", "from_user": "kuruma3", "from_user_id": 100368846, "from_user_id_str": "100368846", "from_user_name": "kuruma3", "geo": null, "id": 146756780016406530, "id_str": "146756780016406531", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1015332840/twittericon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1015332840/twittericon_normal.png", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "npm cheatsheet - http://t.co/VKQPA9Z6 - scaling node.js applications one callback at a time. -... http://t.co/6W10GcdA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 00:42:29 +0000", "from_user": "cronopio2", "from_user_id": 14474239, "from_user_id_str": "14474239", "from_user_name": "D\\u24B6niel \\u24B6ristizabal \\u2622", "geo": null, "id": 146751882197602300, "id_str": "146751882197602304", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1587000370/DennisRitchie_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587000370/DennisRitchie_normal.gif", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "@cvander @santiaguf Definitivamente un excelente lugar para buenas lecturas es el Blog de @nodejitsu http://t.co/X7qZahXX", "to_user": "cvander", "to_user_id": 817789, "to_user_id_str": "817789", "to_user_name": "Christian Van Der H", "in_reply_to_status_id": 146751412125188100, "in_reply_to_status_id_str": "146751412125188096"}, +{"created_at": "Tue, 13 Dec 2011 23:48:40 +0000", "from_user": "donwb", "from_user_id": 21307435, "from_user_id_str": "21307435", "from_user_name": "Don Browning", "geo": null, "id": 146738335728144400, "id_str": "146738335728144384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1180549025/Profile_Pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1180549025/Profile_Pic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: New deployments should now be back online. Let the `jitsu deploy` begin! Need support? #nodejitsu on freenode or email support@nodejitsu.com", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 23:34:39 +0000", "from_user": "nodejitsu", "from_user_id": 157442008, "from_user_id_str": "157442008", "from_user_name": "Nodejitsu", "geo": null, "id": 146734811728461820, "id_str": "146734811728461824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @marak: The #nodejitsu room on freenode is pretty awesome! 109 people right now! Fun fact, we've recruited THREE of our engineers from the room.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 23:33:54 +0000", "from_user": "marak", "from_user_id": 110465841, "from_user_id_str": "110465841", "from_user_name": "marak squires", "geo": null, "id": 146734620623372300, "id_str": "146734620623372288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1387685536/maraknormal_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1387685536/maraknormal_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "The #nodejitsu room on freenode is pretty awesome! 109 people right now! Fun fact, we've recruited THREE of our engineers from the room.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 23:33:38 +0000", "from_user": "michaelsbradley", "from_user_id": 15816565, "from_user_id_str": "15816565", "from_user_name": "Michael Bradley, Jr.", "geo": null, "id": 146734553552269300, "id_str": "146734553552269312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/660365696/michael-s_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/660365696/michael-s_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@marak just curious, did nodejitsu ever considering using linode as a/the VPS backend?", "to_user": "marak", "to_user_id": 110465841, "to_user_id_str": "110465841", "to_user_name": "marak squires", "in_reply_to_status_id": 146732858768244740, "in_reply_to_status_id_str": "146732858768244736"}, +{"created_at": "Tue, 13 Dec 2011 23:15:21 +0000", "from_user": "jesusabdullah", "from_user_id": 184987977, "from_user_id_str": "184987977", "from_user_name": "Joshua Holbrook", "geo": null, "id": 146729952329474050, "id_str": "146729952329474049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1541971778/birdbirdbird-cropped_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541971778/birdbirdbird-cropped_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: New deployments should now be back online. Let the `jitsu deploy` begin! Need support? #nodejitsu on freenode or email support@nodejitsu.com", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 23:10:12 +0000", "from_user": "marak", "from_user_id": 110465841, "from_user_id_str": "110465841", "from_user_name": "marak squires", "geo": null, "id": 146728657338105860, "id_str": "146728657338105858", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1387685536/maraknormal_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1387685536/maraknormal_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: New deployments should now be back online. Let the `jitsu deploy` begin! Need support? #nodejitsu on freenode or email support@nodejitsu.com", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 23:09:58 +0000", "from_user": "nodejitsu", "from_user_id": 157442008, "from_user_id_str": "157442008", "from_user_name": "Nodejitsu", "geo": null, "id": 146728597216960500, "id_str": "146728597216960514", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "New deployments should now be back online. Let the `jitsu deploy` begin! Need support? #nodejitsu on freenode or email support@nodejitsu.com", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 21:02:35 +0000", "from_user": "nodejitsu", "from_user_id": 157442008, "from_user_id_str": "157442008", "from_user_name": "Nodejitsu", "geo": null, "id": 146696542873587700, "id_str": "146696542873587712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @marak: http://t.co/uybgdZio is looking nice.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 19:12:07 +0000", "from_user": "scottdware", "from_user_id": 24906404, "from_user_id_str": "24906404", "from_user_name": "Scott Ware", "geo": null, "id": 146668739243409400, "id_str": "146668739243409409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1576920821/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576920821/profile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Cloud9IDE: Node love :) RT @gblock @JanVanRyswyck @hhariri @nodejitsu +1 @nodejitsu, @Cloud9IDE etc. There's a ton of energy around node!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 19:04:29 +0000", "from_user": "Cloud9IDE", "from_user_id": 143638554, "from_user_id_str": "143638554", "from_user_name": "Cloud9 IDE", "geo": null, "id": 146666822106759170, "id_str": "146666822106759169", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1523529310/Cloud9-IDE-Avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1523529310/Cloud9-IDE-Avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Node love :) RT @gblock @JanVanRyswyck @hhariri @nodejitsu +1 @nodejitsu, @Cloud9IDE etc. There's a ton of energy around node!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 18:59:39 +0000", "from_user": "JanVanRyswyck", "from_user_id": 14344284, "from_user_id_str": "14344284", "from_user_name": "JanVanRyswyck", "geo": null, "id": 146665602524774400, "id_str": "146665602524774400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1444289576/Foto3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1444289576/Foto3_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@gblock @hhariri @nodejitsu @Cloud9IDE That I can easily agree with. :-)", "to_user": "gblock", "to_user_id": 1434051, "to_user_id_str": "1434051", "to_user_name": "Glenn Block", "in_reply_to_status_id": 146665359129317380, "in_reply_to_status_id_str": "146665359129317376"}, +{"created_at": "Tue, 13 Dec 2011 18:58:41 +0000", "from_user": "gblock", "from_user_id": 1434051, "from_user_id_str": "1434051", "from_user_name": "Glenn Block", "geo": null, "id": 146665359129317380, "id_str": "146665359129317376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1198284833/Photo_on_2010-12-24_at_20.51_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1198284833/Photo_on_2010-12-24_at_20.51_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@JanVanRyswyck @hhariri @nodejitsu +1 @nodejitsu, @Cloud9IDE etc. There's a ton of energy around node!", "to_user": "JanVanRyswyck", "to_user_id": 14344284, "to_user_id_str": "14344284", "to_user_name": "JanVanRyswyck", "in_reply_to_status_id": 146664457412689920, "in_reply_to_status_id_str": "146664457412689920"}, +{"created_at": "Tue, 13 Dec 2011 18:55:06 +0000", "from_user": "JanVanRyswyck", "from_user_id": 14344284, "from_user_id_str": "14344284", "from_user_name": "JanVanRyswyck", "geo": null, "id": 146664457412689920, "id_str": "146664457412689920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1444289576/Foto3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1444289576/Foto3_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@hhariri I beg to differ. I love the adoption of Node.js by big blue but I think the @nodejitsu guys are doing some awesome work as well.", "to_user": "hhariri", "to_user_id": 15797140, "to_user_id_str": "15797140", "to_user_name": "Hadi Hariri", "in_reply_to_status_id": 146663970391080960, "in_reply_to_status_id_str": "146663970391080960"}, +{"created_at": "Tue, 13 Dec 2011 18:04:00 +0000", "from_user": "coderoshi", "from_user_id": 134567015, "from_user_id_str": "134567015", "from_user_name": "Eric Redmond", "geo": null, "id": 146651597445939200, "id_str": "146651597445939200", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1648597697/707e3965f1630286a3dcaad501a10fed_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648597697/707e3965f1630286a3dcaad501a10fed_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@adron http://t.co/dJxpWJcZ http://t.co/w0C8ZFPI http://t.co/tRncs5lr http://t.co/OsMJALSb", "to_user": "adron", "to_user_id": 16063910, "to_user_id_str": "16063910", "to_user_name": "Adron Hall", "in_reply_to_status_id": 146649655088914430, "in_reply_to_status_id_str": "146649655088914433"}, +{"created_at": "Tue, 13 Dec 2011 16:17:52 +0000", "from_user": "jsgeneve", "from_user_id": 404035068, "from_user_id_str": "404035068", "from_user_name": "Javascript Gen\\u00E8ve", "geo": null, "id": 146624889615429630, "id_str": "146624889615429632", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1620267028/twitter_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620267028/twitter_normal.gif", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Support Chat: un exemple chat pour bien d\\u00E9buter avec #nodejs avec socket.io + Express: http://t.co/9zjn4oIg - Demo: http://t.co/VxMflQEz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 15:49:50 +0000", "from_user": "maciejmalecki", "from_user_id": 263755874, "from_user_id_str": "263755874", "from_user_name": "Maciej Ma\\u0142ecki", "geo": null, "id": 146617833059659780, "id_str": "146617833059659776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1547225919/IMG_20110917_192531mt_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1547225919/IMG_20110917_192531mt_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @marak: The growth we are seeing @Nodejitsu is kinda unreal. If you haven't gotten into #nodejs yet...you should RIGHT NOW! :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 15:49:12 +0000", "from_user": "cronopio2", "from_user_id": 14474239, "from_user_id_str": "14474239", "from_user_name": "D\\u24B6niel \\u24B6ristizabal \\u2622", "geo": null, "id": 146617675920064500, "id_str": "146617675920064512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1587000370/DennisRitchie_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587000370/DennisRitchie_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @marak: The growth we are seeing @Nodejitsu is kinda unreal. If you haven't gotten into #nodejs yet...you should RIGHT NOW! :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 15:46:06 +0000", "from_user": "PistachioPony", "from_user_id": 360848817, "from_user_id_str": "360848817", "from_user_name": "maria m m", "geo": null, "id": 146616894718345200, "id_str": "146616894718345220", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1510777826/mmm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1510777826/mmm_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @marak: The growth we are seeing @Nodejitsu is kinda unreal. If you haven't gotten into #nodejs yet...you should RIGHT NOW! :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 14:08:21 +0000", "from_user": "donwb", "from_user_id": 21307435, "from_user_id_str": "21307435", "from_user_name": "Don Browning", "geo": null, "id": 146592294324273150, "id_str": "146592294324273154", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1180549025/Profile_Pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1180549025/Profile_Pic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @marak: The growth we are seeing @Nodejitsu is kinda unreal. If you haven't gotten into #nodejs yet...you should RIGHT NOW! :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 13:03:56 +0000", "from_user": "jvduf", "from_user_id": 41679937, "from_user_id_str": "41679937", "from_user_name": "Jeroen van Duffelen", "geo": null, "id": 146576085302263800, "id_str": "146576085302263808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1251159750/Jeroen_van_Duffelen_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1251159750/Jeroen_van_Duffelen_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @marak: The growth we are seeing @Nodejitsu is kinda unreal. If you haven't gotten into #nodejs yet...you should RIGHT NOW! :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 11:25:49 +0000", "from_user": "hitode909", "from_user_id": 4653091, "from_user_id_str": "4653091", "from_user_name": "\\u8DA3\\u5473\\u306F\\u30DE\\u30EA\\u30F3\\u30B9\\u30DD\\u30FC\\u30C4\\u3067\\u3059", "geo": null, "id": 146551391664619520, "id_str": "146551391664619520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1300767028/sushi_r_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1300767028/sushi_r_normal.gif", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "\\u201CScaling Isomorphic Javascript Code - http://t.co/HB9JE2ir - scaling node.js applications one callback at a time.\\u201D http://t.co/649L7HJU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 08:29:04 +0000", "from_user": "davybrion", "from_user_id": 167135950, "from_user_id_str": "167135950", "from_user_name": "Davy Brion", "geo": null, "id": 146506913889263600, "id_str": "146506913889263616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1648946210/pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648946210/pic_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@YvesGoeleven nodejitsu sounds great, then joyent's solution, then heroku", "to_user": "YvesGoeleven", "to_user_id": 24497096, "to_user_id_str": "24497096", "to_user_name": "Yves Goeleven", "in_reply_to_status_id": 146506401353699330, "in_reply_to_status_id_str": "146506401353699328"}, +{"created_at": "Tue, 13 Dec 2011 08:05:45 +0000", "from_user": "shakefon", "from_user_id": 10067102, "from_user_id_str": "10067102", "from_user_name": "Dave Stevens", "geo": null, "id": 146501044132782080, "id_str": "146501044132782080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1256053648/newavatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1256053648/newavatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @marak: The growth we are seeing @Nodejitsu is kinda unreal. If you haven't gotten into #nodejs yet...you should RIGHT NOW! :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 07:21:40 +0000", "from_user": "gigonaut", "from_user_id": 7440762, "from_user_id_str": "7440762", "from_user_name": "gigonaut", "geo": null, "id": 146489950144180220, "id_str": "146489950144180224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/136174586/gigonaut_logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/136174586/gigonaut_logo_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @marak: The growth we are seeing @Nodejitsu is kinda unreal. If you haven't gotten into #nodejs yet...you should RIGHT NOW! :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 07:13:09 +0000", "from_user": "jesusabdullah", "from_user_id": 184987977, "from_user_id_str": "184987977", "from_user_name": "Joshua Holbrook", "geo": null, "id": 146487805747535870, "id_str": "146487805747535872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1541971778/birdbirdbird-cropped_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541971778/birdbirdbird-cropped_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @marak: The growth we are seeing @Nodejitsu is kinda unreal. If you haven't gotten into #nodejs yet...you should RIGHT NOW! :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 07:11:32 +0000", "from_user": "thepumpkin", "from_user_id": 6913662, "from_user_id_str": "6913662", "from_user_name": "Johan Hernandez", "geo": null, "id": 146487399826993150, "id_str": "146487399826993152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1497447916/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1497447916/image_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @marak: The growth we are seeing @Nodejitsu is kinda unreal. If you haven't gotten into #nodejs yet...you should RIGHT NOW! :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 07:10:58 +0000", "from_user": "mattwalters5", "from_user_id": 34128038, "from_user_id_str": "34128038", "from_user_name": "Matt Walters", "geo": null, "id": 146487257535234050, "id_str": "146487257535234048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1460915273/c250f0430c58d68fe3d11f1061acef29_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1460915273/c250f0430c58d68fe3d11f1061acef29_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @marak: The growth we are seeing @Nodejitsu is kinda unreal. If you haven't gotten into #nodejs yet...you should RIGHT NOW! :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 07:10:42 +0000", "from_user": "marak", "from_user_id": 110465841, "from_user_id_str": "110465841", "from_user_name": "marak squires", "geo": null, "id": 146487192573853700, "id_str": "146487192573853696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1387685536/maraknormal_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1387685536/maraknormal_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "The growth we are seeing @Nodejitsu is kinda unreal. If you haven't gotten into #nodejs yet...you should RIGHT NOW! :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 06:12:36 +0000", "from_user": "mhalligan", "from_user_id": 177896251, "from_user_id_str": "177896251", "from_user_name": "Michael T. Halligan", "geo": null, "id": 146472568092766200, "id_str": "146472568092766208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1562598170/308610_10150407195219225_563429224_10522334_1302838775_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1562598170/308610_10150407195219225_563429224_10522334_1302838775_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@nodejitsu Here's a tip, @rackspace is incredibly incompetent at everything but sales.", "to_user": "nodejitsu", "to_user_id": 157442008, "to_user_id_str": "157442008", "to_user_name": "Nodejitsu", "in_reply_to_status_id": 146470215360856060, "in_reply_to_status_id_str": "146470215360856065"}, +{"created_at": "Tue, 13 Dec 2011 06:03:15 +0000", "from_user": "nodejitsu", "from_user_id": 157442008, "from_user_id_str": "157442008", "from_user_name": "Nodejitsu", "geo": null, "id": 146470215360856060, "id_str": "146470215360856065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "We've got soo many servers that we are crashing the rackspace cloud API! New deployments will be off until we can resolve with @rackspace", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 02:34:47 +0000", "from_user": "nicoleborsey", "from_user_id": 16714512, "from_user_id_str": "16714512", "from_user_name": "nicole borsey", "geo": null, "id": 146417753358733300, "id_str": "146417753358733312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/489655723/NicoleBorseyLite_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/489655723/NicoleBorseyLite_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@jtwebman hey!! Where u been?! :) sent u a message on Skype :) talk tomorrow? :))) #nodejs #RealEstate #nodejitsu", "to_user": "jtwebman", "to_user_id": 35268041, "to_user_id_str": "35268041", "to_user_name": "Jeff Turner", "in_reply_to_status_id": 143726392096469000, "in_reply_to_status_id_str": "143726392096468993"}, +{"created_at": "Tue, 13 Dec 2011 02:05:37 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 146410412873756670, "id_str": "146410412873756672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "RT @cccc4d: \\u201CKeep a node.js server up with Forever - http://t.co/VnePqz1B - scaling node.js applications one callback at a time.\\u201D http://t.co/4hxyvd8q", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 02:05:35 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 146410405638570000, "id_str": "146410405638569984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\u201CKeep a node.js server up with Forever - http://t.co/p6eS4zQU - scaling node.js applications one callback at a t... http://t.co/cb57geU7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 02:03:35 +0000", "from_user": "cccc4d", "from_user_id": 334495560, "from_user_id_str": "334495560", "from_user_name": "Milton Colwell", "geo": null, "id": 146409902515040260, "id_str": "146409902515040256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1471512767/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1471512767/profile_normal.png", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "\\u201CKeep a node.js server up with Forever - http://t.co/VnePqz1B - scaling node.js applications one callback at a time.\\u201D http://t.co/4hxyvd8q", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 01:52:24 +0000", "from_user": "hiroyukim", "from_user_id": 4114621, "from_user_id_str": "4114621", "from_user_name": "hiroyukim", "geo": null, "id": 146407087780544500, "id_str": "146407087780544513", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/94649304/neko_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/94649304/neko_normal.jpg", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "\\u201CKeep a node.js server up with Forever - http://t.co/KgOZcw2D - scaling node.js applications one callback at a time.\\u201D http://t.co/zQewoXSm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 23:11:03 +0000", "from_user": "johnmurch", "from_user_id": 62303, "from_user_id_str": "62303", "from_user_name": "John Murch", "geo": null, "id": 146366480932548600, "id_str": "146366480932548608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1159967445/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1159967445/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @shamoons: Pumped about @indexzero from @nodejitsu speaking at our #NodeJS Meetup tomorrow night! http://t.co/39DPnePf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 22:47:02 +0000", "from_user": "shamoons", "from_user_id": 20744357, "from_user_id_str": "20744357", "from_user_name": "Shamoon Siddiqui", "geo": null, "id": 146360437691265020, "id_str": "146360437691265024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1568292716/shamoon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1568292716/shamoon_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Pumped about @indexzero from @nodejitsu speaking at our #NodeJS Meetup tomorrow night! http://t.co/39DPnePf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 22:01:08 +0000", "from_user": "svenlito", "from_user_id": 16057846, "from_user_id_str": "16057846", "from_user_name": "Sven Lito", "geo": null, "id": 146348887299473400, "id_str": "146348887299473409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1161384337/photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1161384337/photo_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "getting started with node? this should be goto reference http://t.co/SReH3Q3j #nodejitsu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 21:49:07 +0000", "from_user": "jesusabdullah", "from_user_id": 184987977, "from_user_id_str": "184987977", "from_user_name": "Joshua Holbrook", "geo": null, "id": 146345864485552130, "id_str": "146345864485552128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1541971778/birdbirdbird-cropped_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541971778/birdbirdbird-cropped_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: New app deployments should be back online later today. Existing apps should be unaffected. If you require assistance, #nodejitsu on freenode", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 21:25:20 +0000", "from_user": "nodejitsu", "from_user_id": 157442008, "from_user_id_str": "157442008", "from_user_name": "Nodejitsu", "geo": null, "id": 146339876827168770, "id_str": "146339876827168768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "New app deployments should be back online later today. Existing apps should be unaffected. If you require assistance, #nodejitsu on freenode", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 21:08:38 +0000", "from_user": "obazoud", "from_user_id": 124223722, "from_user_id_str": "124223722", "from_user_name": "Olivier Bazoud", "geo": null, "id": 146335674281369600, "id_str": "146335674281369600", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1376713472/me4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1376713472/me4_normal.jpg", "source": "<a href="http://www.grumlapp.com/" rel="nofollow">Gruml</a>", "text": "RT @rmat0n: npm cheatsheet http://t.co/aH2hzSkA #nodejs #npm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 21:05:48 +0000", "from_user": "rmat0n", "from_user_id": 34291483, "from_user_id_str": "34291483", "from_user_name": "rmat0n", "geo": null, "id": 146334961711067140, "id_str": "146334961711067136", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1351608740/photo_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1351608740/photo_normal.jpeg", "source": "<a href="http://www.grumlapp.com/" rel="nofollow">Gruml</a>", "text": "npm cheatsheet http://t.co/aH2hzSkA #nodejs #npm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 20:05:59 +0000", "from_user": "jxson", "from_user_id": 14437884, "from_user_id_str": "14437884", "from_user_name": "Jason Campbell", "geo": null, "id": 146319910144983040, "id_str": "146319910144983040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1410639036/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1410639036/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@smallrivers http://t.co/CBwjFHAo seems to be eating my ctrl+clicks and opening links in the same window (clicking on headings)", "to_user": "SmallRivers", "to_user_id": 22681340, "to_user_id_str": "22681340", "to_user_name": "Paper.li"}, +{"created_at": "Mon, 12 Dec 2011 20:04:41 +0000", "from_user": "jwoschitz", "from_user_id": 236486382, "from_user_id_str": "236486382", "from_user_name": "Janosch Woschitz", "geo": null, "id": 146319579973558270, "id_str": "146319579973558272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1223713193/sweden_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1223713193/sweden_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: Wow! Our #nodejs application cloud currently has ~460 @rackspace servers online each running a http://t.co/qfjU7hDU Increase the cloud!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 19:22:43 +0000", "from_user": "booyaa", "from_user_id": 719673, "from_user_id_str": "719673", "from_user_name": "booyaa", "geo": null, "id": 146309018854494200, "id_str": "146309018854494210", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/640332281/boo-sm-avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/640332281/boo-sm-avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: Wow! Our #nodejs application cloud currently has ~460 @rackspace servers online each running a http://t.co/qfjU7hDU Increase the cloud!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 16:09:04 +0000", "from_user": "limptwiglet", "from_user_id": 125301474, "from_user_id_str": "125301474", "from_user_name": "Mark", "geo": null, "id": 146260289157996540, "id_str": "146260289157996544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1433863348/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1433863348/Untitled_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Nice work on flatiron @nodejitsu very clever stuff. Need more examples like http://t.co/7oUmnVIX Thanks @maciejmalecki", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 15:49:23 +0000", "from_user": "FotoVerite", "from_user_id": 15252015, "from_user_id_str": "15252015", "from_user_name": "Matthew Bergman", "geo": null, "id": 146255335198425100, "id_str": "146255335198425088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/55963700/_cover_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/55963700/_cover_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: Wow! Our #nodejs application cloud currently has ~460 @rackspace servers online each running a http://t.co/qfjU7hDU Increase the cloud!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 15:48:24 +0000", "from_user": "cronopio2", "from_user_id": 14474239, "from_user_id_str": "14474239", "from_user_name": "D\\u24B6niel \\u24B6ristizabal \\u2622", "geo": null, "id": 146255084530053120, "id_str": "146255084530053120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1587000370/DennisRitchie_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587000370/DennisRitchie_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: Wow! Our #nodejs application cloud currently has ~460 @rackspace servers online each running a http://t.co/qfjU7hDU Increase the cloud!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 15:09:41 +0000", "from_user": "maciejmalecki", "from_user_id": 263755874, "from_user_id_str": "263755874", "from_user_name": "Maciej Ma\\u0142ecki", "geo": null, "id": 146245343162535940, "id_str": "146245343162535937", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1547225919/IMG_20110917_192531mt_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1547225919/IMG_20110917_192531mt_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@NuckChorris Well, I don't think nodejitsu provides rapping as a service. @marak, what do you think?", "to_user": "NuckChorris", "to_user_id": 18070528, "to_user_id_str": "18070528", "to_user_name": "Peter Lejeck", "in_reply_to_status_id": 146244515609587700, "in_reply_to_status_id_str": "146244515609587712"}, +{"created_at": "Mon, 12 Dec 2011 14:51:49 +0000", "from_user": "gbelrose", "from_user_id": 18360266, "from_user_id_str": "18360266", "from_user_name": "Guillaume Belrose", "geo": null, "id": 146240844675026940, "id_str": "146240844675026944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/86817622/P1040551_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/86817622/P1040551_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Is there a JVM equivalent of http://t.co/oedxibrf maybe using #Scala and #Netty ?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 13:20:10 +0000", "from_user": "NuckChorris", "from_user_id": 18070528, "from_user_id_str": "18070528", "from_user_name": "Peter Lejeck", "geo": null, "id": 146217781682118660, "id_str": "146217781682118657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1621810033/nuckchorris0_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621810033/nuckchorris0_normal.png", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@maciejmalecki that was so white. Like, absurdly so. Haven't you learned anything from the peeps at @nodejitsu with their New York dialect?", "to_user": "maciejmalecki", "to_user_id": 263755874, "to_user_id_str": "263755874", "to_user_name": "Maciej Ma\\u0142ecki", "in_reply_to_status_id": 146201353344135170, "in_reply_to_status_id_str": "146201353344135168"}, +{"created_at": "Mon, 12 Dec 2011 13:18:56 +0000", "from_user": "nodejitsu", "from_user_id": 157442008, "from_user_id_str": "157442008", "from_user_name": "Nodejitsu", "geo": null, "id": 146217470569619460, "id_str": "146217470569619456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "source": "<a href="http://paper.li" rel="nofollow">Paper.li</a>", "text": "Nodejitsu Ninjas is out! http://t.co/PBus8pPz \\u25B8 Top stories today via @scottbrit @40square @phineasb @zohaibhassan @geekanddad", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 11:38:52 +0000", "from_user": "icelandicfunds", "from_user_id": 228932785, "from_user_id_str": "228932785", "from_user_name": "Icelandic funds", "geo": null, "id": 146192287502831600, "id_str": "146192287502831616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688805440/icon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688805440/icon_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "A big thank you to all the awesome people @nodejitsu for hosting our website. The service is incredible, and so is the support.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 09:30:32 +0000", "from_user": "_delph", "from_user_id": 133820271, "from_user_id_str": "133820271", "from_user_name": "Harry Jones", "geo": null, "id": 146159991479468030, "id_str": "146159991479468032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/828340507/delph_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/828340507/delph_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @RobAshton: Fixing a bug in @nodejitsu's plates and being reminded of http://t.co/TFOmafqx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 09:24:41 +0000", "from_user": "RobAshton", "from_user_id": 15036950, "from_user_id_str": "15036950", "from_user_name": "'Hurricane Rob'", "geo": null, "id": 146158521673715700, "id_str": "146158521673715712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692505029/santa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692505029/santa_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Fixing a bug in @nodejitsu's plates and being reminded of http://t.co/TFOmafqx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 07:12:14 +0000", "from_user": "maciejmalecki", "from_user_id": 263755874, "from_user_id_str": "263755874", "from_user_name": "Maciej Ma\\u0142ecki", "geo": null, "id": 146125186784178180, "id_str": "146125186784178176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1547225919/IMG_20110917_192531mt_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1547225919/IMG_20110917_192531mt_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: Wow! Our #nodejs application cloud currently has ~460 @rackspace servers online each running a http://t.co/qfjU7hDU Increase the cloud!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 05:43:46 +0000", "from_user": "bdefore", "from_user_id": 7547492, "from_user_id_str": "7547492", "from_user_name": "bdefore", "geo": null, "id": 146102923343040500, "id_str": "146102923343040512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/23790702/Photo_80_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/23790702/Photo_80_normal.jpg", "source": "<a href="http://mowglii.com/itsy" rel="nofollow">Itsy!</a>", "text": "@kristoferjoseph Funny timing that. This is a sandbox test of zappa + nodejitsu I made just days ago: http://t.co/NWmXJxrW", "to_user": "kristoferjoseph", "to_user_id": 7661142, "to_user_id_str": "7661142", "to_user_name": "Kristofer Joseph", "in_reply_to_status_id": 146034626094305280, "in_reply_to_status_id_str": "146034626094305282"}, +{"created_at": "Mon, 12 Dec 2011 05:26:35 +0000", "from_user": "laels", "from_user_id": 19866239, "from_user_id_str": "19866239", "from_user_name": "Lael Sturm", "geo": null, "id": 146098602215874560, "id_str": "146098602215874560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/74589509/Lael_Bris_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/74589509/Lael_Bris_normal.jpg", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "Every time I see this I crave hot pastrami fr Katz's Deli. RT @rekatz: Re: Katz Daily is out! http://t.co/EK2VBd44 via @ap_sims @nodejitsu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} + +, +{"created_at": "Mon, 19 Dec 2011 18:57:37 +0000", "from_user": "jpatanooga", "from_user_id": 14935521, "from_user_id_str": "14935521", "from_user_name": "Josh Patterson", "geo": null, "id": 148839419200290800, "id_str": "148839419200290817", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1471343793/summer_shot_cropped_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1471343793/summer_shot_cropped_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nattybnatkins: Need some SQL support for Hadoop? Never fear, Hive 0.8.0 is here! http://t.co/SdhM9dIp - Includes indexes and some new primitive types", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:14 +0000", "from_user": "lurino", "from_user_id": 243580387, "from_user_id_str": "243580387", "from_user_name": "Yuki Joji", "geo": null, "id": 148839071983222800, "id_str": "148839071983222784", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1656798036/Screen_Shot_2011-11-25_at_4.12.28_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656798036/Screen_Shot_2011-11-25_at_4.12.28_PM_normal.png", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@iambadung hadoop kayaknya menarik", "to_user": "iambadung", "to_user_id": 15363349, "to_user_id_str": "15363349", "to_user_name": "Purwanto Hasan", "in_reply_to_status_id": 148837892536549380, "in_reply_to_status_id_str": "148837892536549377"}, +{"created_at": "Mon, 19 Dec 2011 18:55:41 +0000", "from_user": "usenix", "from_user_id": 17161645, "from_user_id_str": "17161645", "from_user_name": "usenix", "geo": null, "id": 148838933860581380, "id_str": "148838933860581376", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/196507638/usenix_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/196507638/usenix_twitter_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @strataconf: Five Big Data predictions for 2012 http://t.co/VFu05xrA via @radar #bigdata #visualization #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:40 +0000", "from_user": "rikkiends", "from_user_id": 14421746, "from_user_id_str": "14421746", "from_user_name": "rikkiends", "geo": null, "id": 148838928626094080, "id_str": "148838928626094082", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1683919193/rikkiusenix_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683919193/rikkiusenix_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @strataconf: Five Big Data predictions for 2012 http://t.co/cAhhMByM via @radar #bigdata #visualization #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:27 +0000", "from_user": "ekampf", "from_user_id": 7467902, "from_user_id_str": "7467902", "from_user_name": "Eran Kampf", "geo": null, "id": 148838621930197000, "id_str": "148838621930196994", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1094675975/n613471493_1492_-_Copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1094675975/n613471493_1492_-_Copy_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @cloudera: Apache ZooKeeper 3.4.1 has been released: http://t.co/Ql078uKR via @phunt #Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:45 +0000", "from_user": "jimoneil", "from_user_id": 14350900, "from_user_id_str": "14350900", "from_user_name": "Jim O'Neil", "geo": null, "id": 148838444368535550, "id_str": "148838444368535552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/485630749/me_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/485630749/me_normal.png", "source": "<a href="http://www.metrotwit.com/" rel="nofollow">MetroTwit</a>", "text": "one more lingering blog post, then diving into Hadoop on #WindowsAzure - finally!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:32 +0000", "from_user": "nattybnatkins", "from_user_id": 23883150, "from_user_id_str": "23883150", "from_user_name": "Jonathan Natkins", "geo": null, "id": 148838393231585280, "id_str": "148838393231585280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1441187827/nattysmall_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1441187827/nattysmall_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "Need some SQL support for Hadoop? Never fear, Hive 0.8.0 is here! http://t.co/SdhM9dIp - Includes indexes and some new primitive types", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:08 +0000", "from_user": "colinmasson", "from_user_id": 15076177, "from_user_id_str": "15076177", "from_user_name": "Colin Masson", "geo": null, "id": 148838291989479420, "id_str": "148838291989479424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/57042182/cmassonBIO_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/57042182/cmassonBIO_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @msretail: Hadoop helps eBay with analyzing inventory data to building customer profiles using real live online behavior http://t.co/rUXTk6eo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:53 +0000", "from_user": "cloudera", "from_user_id": 16134540, "from_user_id_str": "16134540", "from_user_name": "Cloudera", "geo": null, "id": 148837974816206850, "id_str": "148837974816206848", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/934403054/favicon_32_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/934403054/favicon_32_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Apache ZooKeeper 3.4.1 has been released: http://t.co/Ql078uKR via @phunt #Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:44 +0000", "from_user": "jeffburknoe", "from_user_id": 259249759, "from_user_id_str": "259249759", "from_user_name": "Jeff Burk", "geo": null, "id": 148837437324537860, "id_str": "148837437324537856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1477726823/avatar_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1477726823/avatar_normal.PNG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Microsoft's Scott Guthrie and his impact on Azure: A six month report card http://t.co/8QWzskYU #windowsazure #s3 #vmware #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:59 +0000", "from_user": "jrzyshr", "from_user_id": 5658532, "from_user_id_str": "5658532", "from_user_name": "Peter Laudati", "geo": null, "id": 148836744127709200, "id_str": "148836744127709184", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1236117631/PeterBugEyes_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1236117631/PeterBugEyes_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @jongalloway: Hadoop Streaming and F# MapReduce : http://t.co/qqMbvXfr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:13 +0000", "from_user": "Aaronontheweb", "from_user_id": 14864055, "from_user_id_str": "14864055", "from_user_name": "Aaron", "geo": null, "id": 148836048322052100, "id_str": "148836048322052097", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1104793038/head_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1104793038/head_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @jongalloway: Hadoop Streaming and F# MapReduce : http://t.co/qqMbvXfr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:08 +0000", "from_user": "MattiasBolander", "from_user_id": 127586383, "from_user_id_str": "127586383", "from_user_name": "Mattias Bolander", "geo": null, "id": 148835522368909300, "id_str": "148835522368909312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @timoelliott: 2012: hadoop, in-memory, graph dbs, says @jameskobielus: http://t.co/CQIlbhgC #analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:14 +0000", "from_user": "IBM_InfoSphere", "from_user_id": 64781301, "from_user_id_str": "64781301", "from_user_name": "IBM InfoSphere", "geo": null, "id": 148835043522002940, "id_str": "148835043522002944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/357366799/InfoSphere_200x200_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/357366799/InfoSphere_200x200_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Understanding #BigData - NEW McGraw-Hill e-book by IBM experts - register & download: http://t.co/sctmv9q2 #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:37 +0000", "from_user": "nsnowhite", "from_user_id": 14364843, "from_user_id_str": "14364843", "from_user_name": "Nikki Snowhite", "geo": null, "id": 148834387088257020, "id_str": "148834387088257024", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1265181785/DSC_0169_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1265181785/DSC_0169_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@cloudera's @hackingdata featured in Forbes '30 Under 30' Technology Disruptors: http://t.co/lCLpezXf (by @VictoriaBarret) #hadoop #bigdata", "to_user": "cloudera", "to_user_id": 16134540, "to_user_id_str": "16134540", "to_user_name": "Cloudera"}, +{"created_at": "Mon, 19 Dec 2011 18:37:32 +0000", "from_user": "jerrykuch", "from_user_id": 14311701, "from_user_id_str": "14311701", "from_user_name": "jerrykuch", "geo": null, "id": 148834364392878080, "id_str": "148834364392878082", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/52471641/Clem-Looks-Surly_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/52471641/Clem-Looks-Surly_normal.jpg", "source": "<a href="http://twitter.com" rel="nofollow">Tweetie for Mac</a>", "text": "I have Hadoop AND a red Porsche. I am sooooo overcompensating. HT @ZUrlocker http://t.co/csFuPcr1 RT @cmastication", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:13 +0000", "from_user": "BuscaPeDev", "from_user_id": 169582767, "from_user_id_str": "169582767", "from_user_name": "BuscaP\\u00E9 Developer", "geo": null, "id": 148833780549947400, "id_str": "148833780549947394", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1181577048/buscapedev_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1181577048/buscapedev_twitter_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Do zero ao Hadoop! http://t.co/kVun9NvC #hadoop #mapreduce #soudev", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:59 +0000", "from_user": "albietz", "from_user_id": 11056912, "from_user_id_str": "11056912", "from_user_name": "Alberto Bietti", "geo": null, "id": 148833721804525570, "id_str": "148833721804525569", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/915386496/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/915386496/image_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "RT @paristechreview: Prospects and Promise of Big Data http://t.co/qYTorZpQ #bigdata (with @hadoop @streambase @TEDchris @HenriVerdier)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:02 +0000", "from_user": "kellabyte", "from_user_id": 47494539, "from_user_id_str": "47494539", "from_user_name": "Kelly Sommers", "geo": null, "id": 148833234086662140, "id_str": "148833234086662147", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1517690787/avatar-54_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517690787/avatar-54_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @jongalloway: Hadoop Streaming and F# MapReduce : http://t.co/qqMbvXfr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:48 +0000", "from_user": "matrix_spear", "from_user_id": 223258531, "from_user_id_str": "223258531", "from_user_name": "matrix_spear", "geo": null, "id": 148832921120276480, "id_str": "148832921120276482", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1501257763/matrixdancer_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1501257763/matrixdancer_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Microsoft Azure now hosts Hadoop http://t.co/POX6JvBW #bigdata #analytics #bi #cloud #hadoop #dev #software #microsoft #ibm #hp #sap #saas", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:04 +0000", "from_user": "Cloud9s", "from_user_id": 14759893, "from_user_id_str": "14759893", "from_user_name": "Kevin Haynes", "geo": null, "id": 148832738705817600, "id_str": "148832738705817600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1333766120/Kevin_sun_glasses_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1333766120/Kevin_sun_glasses_normal.jpg", "source": "<a href="http://paper.li" rel="nofollow">Paper.li</a>", "text": "Hadoop News and Influencers is out! http://t.co/kWfOYKZF \\u25B8 Top stories today via @syncsort @suren_h @mikepluta", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:49 +0000", "from_user": "jongalloway", "from_user_id": 765694, "from_user_id_str": "765694", "from_user_name": "Jon Galloway", "geo": null, "id": 148832674943995900, "id_str": "148832674943995904", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/329131438/JonFace420px_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/329131438/JonFace420px_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Hadoop Streaming and F# MapReduce : http://t.co/qqMbvXfr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:36 +0000", "from_user": "NunoGodinho", "from_user_id": 9971382, "from_user_id_str": "9971382", "from_user_name": "Nuno Godinho", "geo": null, "id": 148832370534002700, "id_str": "148832370534002689", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/831407287/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/831407287/twitterProfilePhoto_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @taswarbhatti: Using #Hadoop on #Azure JS Console for Data Visualizations | http://t.co/7xZCGdpR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:33 +0000", "from_user": "UIResearchPark", "from_user_id": 175415640, "from_user_id_str": "175415640", "from_user_name": "UIUC Research Park", "geo": null, "id": 148831852671680500, "id_str": "148831852671680512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1099239176/ew_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1099239176/ew_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "RT @Infobright: If you missed last week's webinar with LiveRail on using #Hadoop and Infobright, you can listen anytime you want http://t.co/0BmV1ubX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:32 +0000", "from_user": "fredericmalo", "from_user_id": 168825127, "from_user_id_str": "168825127", "from_user_name": "Fr\\u00E9d\\u00E9ric Malo", "geo": null, "id": 148830841299152900, "id_str": "148830841299152896", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1352796962/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1352796962/image_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "RT @paristechreview: Les promesses du Big Data : http://t.co/x1vX1XSw #bigdata (avec @HenriVerdier @hadoop @streambase)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:25 +0000", "from_user": "OBrien_Siobhan", "from_user_id": 20972333, "from_user_id_str": "20972333", "from_user_name": "Siobhan O'Brien", "geo": null, "id": 148830813570596860, "id_str": "148830813570596864", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1584578872/09.03.09_001_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584578872/09.03.09_001_normal.jpg", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Hiring a Hadoop Developer #2676 in Boston, MA http://t.co/2S1sAig1 #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:55 +0000", "from_user": "brocknoland", "from_user_id": 15394413, "from_user_id_str": "15394413", "from_user_name": "brocknoland", "geo": null, "id": 148830686814543870, "id_str": "148830686814543874", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/57015043/brock-headshot_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/57015043/brock-headshot_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @cloudera: Forbes '30 Under 30' Technology Disruptors features @Cloudera's @hackingdata: http://t.co/jOcOPp1D (by @VictoriaBarret) #hadoop #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:25 +0000", "from_user": "brocknoland", "from_user_id": 15394413, "from_user_id_str": "15394413", "from_user_name": "brocknoland", "geo": null, "id": 148830559257362430, "id_str": "148830559257362432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/57015043/brock-headshot_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/57015043/brock-headshot_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ClouderaU: Chicago - Cloudera Developer Training for Apache Hadoop - Jan 17-20. Register here: http://t.co/wulV9V0P", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:30 +0000", "from_user": "umitgunduz", "from_user_id": 33584412, "from_user_id_str": "33584412", "from_user_name": "Umit Gunduz", "geo": null, "id": 148830077000486900, "id_str": "148830077000486912", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1267325045/TweetLandPhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1267325045/TweetLandPhoto_normal.jpg", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "Hadoop Streaming and F# MapReduce http://t.co/GLMB9XqV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:58 +0000", "from_user": "sheriff72", "from_user_id": 14479083, "from_user_id_str": "14479083", "from_user_name": "Ron Adams", "geo": null, "id": 148829942996668400, "id_str": "148829942996668416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/60460420/SteamedRon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/60460420/SteamedRon_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "MapReduce for the Masses: http://t.co/b6EYWFwB #hadoop #dataanalytics #commoncrawl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:19 +0000", "from_user": "taleocareers", "from_user_id": 395588689, "from_user_id_str": "395588689", "from_user_name": "Taleo Careers", "geo": +{"coordinates": [37.7005,-121.9341], "type": "Point"}, "id": 148829529354412030, "id_str": "148829529354412032", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1600133482/174863_28268828197_1270923_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600133482/174863_28268828197_1270923_n_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Senior Hadoop ETL Engineer/Analyst - Taleo - Dublin, CA http://t.co/IgjHoRU4 #jobs @Taleo_Corp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:02 +0000", "from_user": "Infobright", "from_user_id": 16202088, "from_user_id_str": "16202088", "from_user_name": "Infobright", "geo": null, "id": 148829459766714370, "id_str": "148829459766714369", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/349754703/infobright_twitterlogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/349754703/infobright_twitterlogo_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "If you missed last week's webinar with LiveRail on using #Hadoop and Infobright, you can listen anytime you want http://t.co/0BmV1ubX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:59 +0000", "from_user": "matrix_spear", "from_user_id": 223258531, "from_user_id_str": "223258531", "from_user_name": "matrix_spear", "geo": null, "id": 148829443195011070, "id_str": "148829443195011073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1501257763/matrixdancer_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1501257763/matrixdancer_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "The Year Ahead In Big Data? Big, Cool, New Stuff Looms Large! http://t.co/vJExuoKu #bigdata #analytics #bi #cloud #hadoop #microsoft #ibm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:34 +0000", "from_user": "ogrisel", "from_user_id": 16067035, "from_user_id_str": "16067035", "from_user_name": "Olivier Grisel", "geo": null, "id": 148829338207395840, "id_str": "148829338207395841", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/422999926/aee56554ec30edfd680e1c937ed4e54d_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/422999926/aee56554ec30edfd680e1c937ed4e54d_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @bigdata: Big Data Analytics: if you dig Spark, check out ScalOps (its like Pig but with iterative extensions) http://t.co/O5bzEpKK #scala #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:37 +0000", "from_user": "melissahick", "from_user_id": 20812756, "from_user_id_str": "20812756", "from_user_name": "Melissa Hick", "geo": null, "id": 148828347680571400, "id_str": "148828347680571392", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1136078385/46603_10100510039653261_2007937_71570084_5675483_n_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1136078385/46603_10100510039653261_2007937_71570084_5675483_n_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Forbes '30 Under 30' Technology Disruptors features @Cloudera's @hackingdata: http://t.co/dIGHdqny (by @VictoriaBarret) #hadoop #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:08:15 +0000", "from_user": "QuinnEvoyHunk", "from_user_id": 339572662, "from_user_id_str": "339572662", "from_user_name": "Quinn Evoy", "geo": null, "id": 148826996280016900, "id_str": "148826996280016897", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1453053164/1311243543_010_results_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1453053164/1311243543_010_results_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Where are all the cloud-based Hadoop services?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:08:01 +0000", "from_user": "stojanovic", "from_user_id": 4242501, "from_user_id_str": "4242501", "from_user_name": "Alexander Stojanovic", "geo": null, "id": 148826937148719100, "id_str": "148826937148719106", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1614552290/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1614552290/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Looks cool (and I do like Spark) : \\u201C@bigdata: Big Data Analytics: if you dig Spark, check out ScalOps http://t.co/RUYUa1yQ #scala #hadoop\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:07:00 +0000", "from_user": "ClouderaU", "from_user_id": 304590949, "from_user_id_str": "304590949", "from_user_name": "Cloudera University", "geo": null, "id": 148826683082940400, "id_str": "148826683082940417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1562750756/Screen_Shot_2011-09-27_at_11.33.38_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1562750756/Screen_Shot_2011-09-27_at_11.33.38_AM_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Chicago - Cloudera Developer Training for Apache Hadoop - Jan 17-20. Register here: http://t.co/wulV9V0P", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:03:50 +0000", "from_user": "egadenne", "from_user_id": 14424892, "from_user_id_str": "14424892", "from_user_name": "Emmanuel Gadenne", "geo": null, "id": 148825885934493700, "id_str": "148825885934493696", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1650060011/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650060011/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Very good synthesis : http://t.co/hSqXg9fI #bigdata #hadoop #strataconf ~ @HenriVerdier", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:02:27 +0000", "from_user": "phunt", "from_user_id": 12370372, "from_user_id_str": "12370372", "from_user_name": "Patrick Hunt", "geo": null, "id": 148825536532189200, "id_str": "148825536532189184", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/80884383/phunt3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/80884383/phunt3_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @cloudera: Forbes '30 Under 30' Technology Disruptors features @Cloudera's @hackingdata: http://t.co/jOcOPp1D (by @VictoriaBarret) #hadoop #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:02:21 +0000", "from_user": "AzureServicesBr", "from_user_id": 42667151, "from_user_id_str": "42667151", "from_user_name": "Azure Services Br", "geo": null, "id": 148825511672553470, "id_str": "148825511672553472", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/569445229/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/569445229/twitterProfilePhoto_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Via @LuConde \"Um pequeno resumo das novidades do WIndows #Azure para Dezembro. Hadoop, Node.Js, SQLAzure 150GB e... http://t.co/QINhTwyv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:02:06 +0000", "from_user": "amberwinans", "from_user_id": 51945564, "from_user_id_str": "51945564", "from_user_name": "Amber Winans", "geo": null, "id": 148825446837010430, "id_str": "148825446837010432", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1672457505/amberwinans_2011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672457505/amberwinans_2011_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Forbes '30 Under 30' Technology Disruptors features @Cloudera's @hackingdata: http://t.co/4f18nzLT (by @VictoriaBarret) #hadoop #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:36 +0000", "from_user": "BhavaCom", "from_user_id": 80389740, "from_user_id_str": "80389740", "from_user_name": "Bhava Communications", "geo": null, "id": 148825322647859200, "id_str": "148825322647859201", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/456832230/bhavaMD3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/456832230/bhavaMD3_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Forbes '30 Under 30' Technology Disruptors features @Cloudera's @hackingdata: http://t.co/DOypLbl1 (by @VictoriaBarret) #hadoop #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:35 +0000", "from_user": "cloudera", "from_user_id": 16134540, "from_user_id_str": "16134540", "from_user_name": "Cloudera", "geo": null, "id": 148825319976079360, "id_str": "148825319976079360", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/934403054/favicon_32_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/934403054/favicon_32_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Forbes '30 Under 30' Technology Disruptors features @Cloudera's @hackingdata: http://t.co/jOcOPp1D (by @VictoriaBarret) #hadoop #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:34 +0000", "from_user": "hopenic", "from_user_id": 119460363, "from_user_id_str": "119460363", "from_user_name": "Hope Nicora", "geo": null, "id": 148825315681120260, "id_str": "148825315681120256", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/741311335/Hope_Nicora_Trimmed_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/741311335/Hope_Nicora_Trimmed_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Forbes '30 Under 30' Technology Disruptors features @Cloudera's @hackingdata: http://t.co/jEL8e2Zu (by @VictoriaBarret) #hadoop #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:57 +0000", "from_user": "patrickDurusau", "from_user_id": 152194866, "from_user_id_str": "152194866", "from_user_name": "Patrick Durusau", "geo": null, "id": 148825157736210430, "id_str": "148825157736210432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/961579480/patrick_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/961579480/patrick_normal.jpeg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Next Generation of Apache Hadoop MapReduce #topicmaps #hadoop #mapreduce - http://t.co/sBOipcSY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:47 +0000", "from_user": "vbs_br", "from_user_id": 115402924, "from_user_id_str": "115402924", "from_user_name": "Vin\\u00EDcius Souza", "geo": null, "id": 148824613432987650, "id_str": "148824613432987648", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1592485427/vinicius_photo_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592485427/vinicius_photo_3_normal.jpg", "source": "<a href="http://www.metrotwit.com/" rel="nofollow">MetroTwit</a>", "text": "RT @luconde: Um pequeno resumo das novidades do WIndows #Azure para Dezembro. http://t.co/fbriAgX8 Hadoop, Node.Js, SQL 150GB e outros.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:42 +0000", "from_user": "HenriVerdier", "from_user_id": 42113624, "from_user_id_str": "42113624", "from_user_name": "Henri Verdier", "geo": null, "id": 148824592948015100, "id_str": "148824592948015105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/319627362/Read_Digital_-_4_juin_par_empreintes_digitales_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/319627362/Read_Digital_-_4_juin_par_empreintes_digitales_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Very good synthesis : http://t.co/deBXojzK #bigdata #hadoop #strataconf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:47 +0000", "from_user": "5h15h", "from_user_id": 8567932, "from_user_id_str": "8567932", "from_user_name": "..S..h..i..S..h..", "geo": null, "id": 148824110473027600, "id_str": "148824110473027585", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/818057411/5h15h_zune_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/818057411/5h15h_zune_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Hadoop helps eBay with analyzing inventory data to building customer profiles using real live online behavior http://t.co/0VQI7vtB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:47 +0000", "from_user": "msretail", "from_user_id": 22028833, "from_user_id_str": "22028833", "from_user_name": "msretail", "geo": null, "id": 148824109189566460, "id_str": "148824109189566464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1514531931/MSRetailIcon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1514531931/MSRetailIcon_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Hadoop helps eBay with analyzing inventory data to building customer profiles using real live online behavior http://t.co/rUXTk6eo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:05 +0000", "from_user": "Luiz_Macedo", "from_user_id": 49366532, "from_user_id_str": "49366532", "from_user_name": "Luiz Macedo", "geo": null, "id": 148823934844932100, "id_str": "148823934844932096", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1105464700/Perfil_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1105464700/Perfil_normal.jpg", "source": "<a href="http://www.metrotwit.com/" rel="nofollow">MetroTwit</a>", "text": "RT @luconde: Um pequeno resumo das novidades do WIndows #Azure para Dezembro. http://t.co/fbriAgX8 Hadoop, Node.Js, SQL 150GB e outros.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:53 +0000", "from_user": "luconde", "from_user_id": 14282868, "from_user_id_str": "14282868", "from_user_name": "luconde", "geo": null, "id": 148823883389214720, "id_str": "148823883389214721", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/568122326/Eu_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/568122326/Eu_normal.gif", "source": "<a href="http://www.metrotwit.com/" rel="nofollow">MetroTwit</a>", "text": "Um pequeno resumo das novidades do WIndows #Azure para Dezembro. http://t.co/fbriAgX8 Hadoop, Node.Js, SQL 150GB e outros.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:29 +0000", "from_user": "megamda", "from_user_id": 19755562, "from_user_id_str": "19755562", "from_user_name": "Kumar Palaniappan", "geo": null, "id": 148823029705744400, "id_str": "148823029705744386", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627876492/kumar_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627876492/kumar_normal.jpeg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Meeting folks over lunch to talk about DATA #cloud #nosql #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:01 +0000", "from_user": "ChitikaInsights", "from_user_id": 434962995, "from_user_id_str": "434962995", "from_user_name": "Chitika Insights", "geo": null, "id": 148822658417565700, "id_str": "148822658417565696", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695213552/header_logo__2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695213552/header_logo__2__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Special Report: The Big Business Buzzword for 2012: Big Data http://t.co/IkKfy0qj #bigdata #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:53 +0000", "from_user": "RickHigh", "from_user_id": 14217219, "from_user_id_str": "14217219", "from_user_name": "Rick Hightower", "geo": null, "id": 148821616518901760, "id_str": "148821616518901761", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/750672834/rick2_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/750672834/rick2_normal.jpeg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "RT @hectcastro: Just completed 4 days of Solr and Hadoop training with @lucidimagineer. Highly recommended.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:44 +0000", "from_user": "softartisans", "from_user_id": 50410463, "from_user_id_str": "50410463", "from_user_name": "SoftArtisans ", "geo": null, "id": 148821329242628100, "id_str": "148821329242628099", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/292623405/SAtweet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/292623405/SAtweet_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#hadoop video: \"Mo Data, Mo Problems: #HBase,\" featuring an extended walmart metaphor by @aesphades http://t.co/GEhnzaqP @James_Stallings", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:49 +0000", "from_user": "Syncsort", "from_user_id": 119987616, "from_user_id_str": "119987616", "from_user_name": "Syncsort", "geo": null, "id": 148820848751558660, "id_str": "148820848751558657", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/858340521/syncsort_profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/858340521/syncsort_profile_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "[BLOG] Steve Totman on Big Data's invasion of Europe. http://t.co/BVHP0Ple #bigdata #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:49 +0000", "from_user": "SyncsortDI", "from_user_id": 381581134, "from_user_id_str": "381581134", "from_user_name": "SyncsortDI", "geo": null, "id": 148820846658592770, "id_str": "148820846658592768", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1593198934/Syncsort_Logo_150x150_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593198934/Syncsort_Logo_150x150_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "[BLOG] Steve Totman on Big Data's invasion of Europe. http://t.co/IwE9ZSad #bigdata #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:04 +0000", "from_user": "toge_", "from_user_id": 13359742, "from_user_id_str": "13359742", "from_user_name": "toge_", "geo": null, "id": 148820659877847040, "id_str": "148820659877847041", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/94924692/flower_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/94924692/flower_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "\\u30AA\\u30E9\\u30A4\\u30EA\\u30FC\\u306E\\u96FB\\u5B50\\u30D6\\u30C3\\u30AF\\u306B\\u3044\\u3064\\u306E\\u307E\\u306BBinary Hacks\\u3084Hadoop\\u7B2C\\uFF12\\u7248\\u304C\\u3002\\u65B0\\u520A\\u306E\\uFF16\\u518A\\u4E2D\\uFF14\\u518A\\u624B\\u5143\\u306B\\u6301\\u3063\\u3066\\u3066\\u3057\\u304B\\u3082\\u81EA\\u708A\\u30AD\\u30E5\\u30FC\\u306B\\u305F\\u307E\\u3063\\u3066\\u308B\\u3002\\u306A\\u3093\\u304B\\u5207\\u306A\\u3044\\u306A\\u3002\\u73FE\\u5B9F\\u306E\\u672C\\u3068\\u306E\\u30BF\\u30A4\\u30E0\\u30E9\\u30B0\\u3092\\u3082\\u3063\\u3068\\u6E1B\\u3089\\u3057\\u3066\\u307B\\u3057\\u3044\\u306A\\u3041\\u3002\\u3000https://t.co/oD3sdRFB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:24 +0000", "from_user": "LucidImagineer", "from_user_id": 19731100, "from_user_id_str": "19731100", "from_user_name": "Lucid Imagination", "geo": null, "id": 148820240002854900, "id_str": "148820240002854912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/79685689/lucid_glass_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/79685689/lucid_glass_normal.png", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "RT @hectcastro: Just completed 4 days of Solr and Hadoop training with @lucidimagineer. Highly recommended.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:38:00 +0000", "from_user": "fiistudent", "from_user_id": 70329310, "from_user_id_str": "70329310", "from_user_name": "FII Student", "geo": null, "id": 148819385077874700, "id_str": "148819385077874688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/390762512/fii-logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/390762512/fii-logo_normal.png", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @hurrycane From 0 to #Hadoop in 5 Minutes with Common Crawl: http://t.co/LeByriEk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:36:01 +0000", "from_user": "taswarbhatti", "from_user_id": 27633423, "from_user_id_str": "27633423", "from_user_name": "Taswar Bhatti", "geo": null, "id": 148818883854348300, "id_str": "148818883854348288", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/114756492/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/114756492/me_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Using #Hadoop on #Azure JS Console for Data Visualizations | http://t.co/fBSIaEfD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:35:42 +0000", "from_user": "scottdunlop", "from_user_id": 25550110, "from_user_id_str": "25550110", "from_user_name": "Scott Dunlop", "geo": null, "id": 148818804850438140, "id_str": "148818804850438144", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/104874078/blogscott_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/104874078/blogscott_normal.jpg", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Big data Software Engineers - Java, RoR, Hadoop, Cassandra, Solr, Machine Learni... http://t.co/UoeaJNue #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:02 +0000", "from_user": "Newitrsdotcom", "from_user_id": 330154962, "from_user_id_str": "330154962", "from_user_name": "New IT Risk Services", "geo": null, "id": 148818384098824200, "id_str": "148818384098824193", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680630772/logo4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680630772/logo4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @infomgmt: 2012 Holds Some Cool Prospects for Big Data -- http://t.co/lCUVtHD2 @jameskobielus #bigdata #analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:39 +0000", "from_user": "phaneeshn", "from_user_id": 78000743, "from_user_id_str": "78000743", "from_user_name": "Phaneesh Nagaraja", "geo": null, "id": 148818037536067600, "id_str": "148818037536067586", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/789289885/0383_guitarist_heavy_metal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/789289885/0383_guitarist_heavy_metal_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @bigdata: Big Data Analytics: if you dig Spark, check out ScalOps (its like Pig but with iterative extensions) http://t.co/O5bzEpKK #scala #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:04 +0000", "from_user": "cld9731", "from_user_id": 16745168, "from_user_id_str": "16745168", "from_user_name": "Charles Ditzel", "geo": null, "id": 148817889653309440, "id_str": "148817889653309440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/74655786/screenshot_02_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/74655786/screenshot_02_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Azure Cloud matures : first Java, now now Node.js and MongoDB, later Hadoop. Interesting. See : http://t.co/G7V1EwrC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:25:11 +0000", "from_user": "jakkigeiger", "from_user_id": 113683943, "from_user_id_str": "113683943", "from_user_name": "Jakki Geiger", "geo": null, "id": 148816156281667600, "id_str": "148816156281667584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/691720711/Picture1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/691720711/Picture1_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Watch this http://t.co/nkeOt75i clip from #hw2011 @Informaticacorp #Hparser no hand-coding, speeds up #Hadoop process", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:23:47 +0000", "from_user": "J_", "from_user_id": 40278705, "from_user_id_str": "40278705", "from_user_name": "Julien Le Dem", "geo": null, "id": 148815805654638600, "id_str": "148815805654638592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/277809119/cowboy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/277809119/cowboy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @bigdata: Big Data Analytics: if you dig Spark, check out ScalOps (its like Pig but with iterative extensions) http://t.co/O5bzEpKK #scala #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:22:25 +0000", "from_user": "barton808", "from_user_id": 9135742, "from_user_id_str": "9135742", "from_user_name": "Barton George", "geo": null, "id": 148815459536486400, "id_str": "148815459536486402", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/59421114/MySunPicSquare80x80_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/59421114/MySunPicSquare80x80_normal.jpeg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "Hadoop World: What Dell is up to with Big Data, Open Source and Developers http://t.co/dO4Z2Reu <- My interview on The Cube", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:20:42 +0000", "from_user": "brocknoland", "from_user_id": 15394413, "from_user_id_str": "15394413", "from_user_name": "brocknoland", "geo": null, "id": 148815027955175420, "id_str": "148815027955175424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/57015043/brock-headshot_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/57015043/brock-headshot_normal.png", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @robdielemans: Great: Three Xebia Consulants are Certfied #Cloudera Developers in Apache Hadoop....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:19:10 +0000", "from_user": "decisionmgt", "from_user_id": 239083333, "from_user_id_str": "239083333", "from_user_name": "DecisionMgtSolutions", "geo": null, "id": 148814641991131140, "id_str": "148814641991131138", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1239007269/DMSlogo_evenborder_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1239007269/DMSlogo_evenborder_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @Zementis: Operational Deployment of Predictive Solutions: Lost in Translation? Not with #PMML http://t.co/iOjIkykv #bigdata #cloud #analytics #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:18:30 +0000", "from_user": "darachennis", "from_user_id": 16210715, "from_user_id_str": "16210715", "from_user_name": "darachennis", "geo": null, "id": 148814476970426370, "id_str": "148814476970426368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1532050296/Me_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1532050296/Me_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @bigdata: Big Data Analytics: if you dig Spark, check out ScalOps (its like Pig but with iterative extensions) http://t.co/O5bzEpKK #scala #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:17:35 +0000", "from_user": "buka37", "from_user_id": 159722188, "from_user_id_str": "159722188", "from_user_name": "Garrick Evans", "geo": null, "id": 148814245876858880, "id_str": "148814245876858880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @bigdata: Big Data Analytics: if you dig Spark, check out ScalOps (its like Pig but with iterative extensions) http://t.co/O5bzEpKK #scala #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:17:33 +0000", "from_user": "A_AlvarezGarcia", "from_user_id": 51073764, "from_user_id_str": "51073764", "from_user_name": "Antonio Alvarez", "geo": null, "id": 148814234925547520, "id_str": "148814234925547521", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1647479342/Chipre_231_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647479342/Chipre_231_normal.JPG", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "\\u201C@timoelliott: 2012: hadoop, in-memory, graph dbs, says @jameskobielus: http://t.co/DPF7IsGU #analytics\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:17:10 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 148814140130066430, "id_str": "148814140130066434", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "Big Data Analytics: if you dig Spark, check out ScalOps (its like Pig but with iterative extensions) http://t.co/sSVMbDBs #scala #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:16:56 +0000", "from_user": "tda2505", "from_user_id": 261461014, "from_user_id_str": "261461014", "from_user_name": "aditya pratama", "geo": null, "id": 148814082198355970, "id_str": "148814082198355969", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1382377805/251668_1938303791705_1665714370_1917997_4454986_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1382377805/251668_1938303791705_1665714370_1917997_4454986_n_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "mahout + hadoop, what are they trying to do with these. Ini perusahaan konstruksi, data semacam apa yg mrk olah smp perlu tool seribet ini.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:16:20 +0000", "from_user": "bigdata", "from_user_id": 18318677, "from_user_id_str": "18318677", "from_user_name": "Ben Lorica", "geo": null, "id": 148813931111125000, "id_str": "148813931111124992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/235298259/bigdata_logo_center3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/235298259/bigdata_logo_center3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Big Data Analytics: if you dig Spark, check out ScalOps (its like Pig but with iterative extensions) http://t.co/O5bzEpKK #scala #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:16:03 +0000", "from_user": "paristechreview", "from_user_id": 21417104, "from_user_id_str": "21417104", "from_user_name": "ParisTech Review", "geo": null, "id": 148813857664671740, "id_str": "148813857664671744", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695021634/Twitter_R-128x128_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695021634/Twitter_R-128x128_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "Prospects and Promise of Big Data http://t.co/qYTorZpQ #bigdata (with @hadoop @streambase @TEDchris @HenriVerdier)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:15:01 +0000", "from_user": "taswarbhatti", "from_user_id": 27633423, "from_user_id_str": "27633423", "from_user_name": "Taswar Bhatti", "geo": null, "id": 148813600868401150, "id_str": "148813600868401152", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/114756492/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/114756492/me_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "#Hadoop Streaming and F# #MapReduce #fsharp | http://t.co/ooOAfVAp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:14:50 +0000", "from_user": "paristechreview", "from_user_id": 21417104, "from_user_id_str": "21417104", "from_user_name": "ParisTech Review", "geo": null, "id": 148813554970132480, "id_str": "148813554970132480", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695021634/Twitter_R-128x128_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695021634/Twitter_R-128x128_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "Les promesses du Big Data : http://t.co/x1vX1XSw #bigdata (avec @HenriVerdier @hadoop @streambase)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:13:26 +0000", "from_user": "insightspedia", "from_user_id": 16145206, "from_user_id_str": "16145206", "from_user_name": "Annie Shum", "geo": null, "id": 148813202094952450, "id_str": "148813202094952449", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/271913183/Annie2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/271913183/Annie2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Big Data Watch MT @barton808 Traditional data storage runs $5/GB, for same amount using #Hadoop, cost goes to $.25/GB http://t.co/TFPcy8mK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:10:21 +0000", "from_user": "d8Pit", "from_user_id": 264394701, "from_user_id_str": "264394701", "from_user_name": "The URL Popularizer", "geo": null, "id": 148812423216906240, "id_str": "148812423216906241", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317284522/logo-header_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317284522/logo-header_normal.png", "source": "<a href="http://d8p.it" rel="nofollow">d8P</a>", "text": "RT @sjvn: RT @ripcitylyman: Rmndr-new 451 CAOS podast w/Hadoop, WebOS, GPL fade, Red Hat targets: #opensource | http://t.co/hWNxDHL3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:09:57 +0000", "from_user": "sjvn", "from_user_id": 11099982, "from_user_id_str": "11099982", "from_user_name": "sjvn", "geo": null, "id": 148812325632221200, "id_str": "148812325632221185", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/54735395/twig_sjvn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/54735395/twig_sjvn_normal.jpg", "source": "<a href="http://twitterfall.com" rel="nofollow">Twitterfall</a>", "text": "RT @ripcitylyman: Rmndr-new 451 CAOS podast w/Hadoop, WebOS, GPL fade, Red Hat targets: http://t.co/9AlyxLLN #opensource", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:07:17 +0000", "from_user": "SSISBI", "from_user_id": 42411479, "from_user_id_str": "42411479", "from_user_name": "Duane Douglas", "geo": null, "id": 148811654849761280, "id_str": "148811654849761281", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/255567637/gnome_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/255567637/gnome_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "[Info Mgmt Blogs] The Year Ahead In Big Data? Big, Cool, New Stuff Looms Large!: The hype around big data has be... http://t.co/Om6ZJSYG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:04:00 +0000", "from_user": "cloud_dennis", "from_user_id": 21062686, "from_user_id_str": "21062686", "from_user_name": "Dennis Plucinik", "geo": null, "id": 148810825883328500, "id_str": "148810825883328512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/588950473/servers_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/588950473/servers_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Reading: One day at a time \\u00BB Blog Archive \\u00BB hadoop hbase ec2 installation: http://t.co/tZ6qHotl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:01:20 +0000", "from_user": "ripcitylyman", "from_user_id": 14050728, "from_user_id_str": "14050728", "from_user_name": "Jay Lyman", "geo": null, "id": 148810155688067070, "id_str": "148810155688067072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/209048268/workingman_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/209048268/workingman_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Rmndr-new 451 CAOS podast w/Hadoop, WebOS, GPL fade, Red Hat targets: http://t.co/4P3yuS2R #opensource", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:01:15 +0000", "from_user": "flngr", "from_user_id": 14322017, "from_user_id_str": "14322017", "from_user_name": "Julian Bilcke", "geo": null, "id": 148810135391838200, "id_str": "148810135391838208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1578423064/procession_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1578423064/procession_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @cascading: Twitter releases PyCascading, a #python layer for @cascading http://t.co/Egb6YYLv http://t.co/mcr2VuCu #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:58:50 +0000", "from_user": "barton808", "from_user_id": 9135742, "from_user_id_str": "9135742", "from_user_name": "Barton George", "geo": null, "id": 148809526617964540, "id_str": "148809526617964544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/59421114/MySunPicSquare80x80_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/59421114/MySunPicSquare80x80_normal.jpeg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "Traditional data storage runs $5/GB, for the same amount of storage using #Hadoop, the cost goes to $.25/GB http://t.co/ozVgYFt4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:56:10 +0000", "from_user": "infomgmt", "from_user_id": 22022138, "from_user_id_str": "22022138", "from_user_name": "Info Mgmt", "geo": null, "id": 148808855055368200, "id_str": "148808855055368192", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/181299584/IM-icon_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/181299584/IM-icon_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "2012 Holds Some Cool Prospects for Big Data -- http://t.co/lCUVtHD2 @jameskobielus #bigdata #analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:55:23 +0000", "from_user": "VmwareCabr", "from_user_id": 373212569, "from_user_id_str": "373212569", "from_user_name": "Chris Dixon", "geo": null, "id": 148808656140517380, "id_str": "148808656140517376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542254823/1315989427_vmw_vc_converter_600x600_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542254823/1315989427_vmw_vc_converter_600x600_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "MapR cranks out updated Hadoop data muncher http://t.co/dVdytXV6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:55:08 +0000", "from_user": "NewsoftheCloud", "from_user_id": 409469892, "from_user_id_str": "409469892", "from_user_name": "David Wyld", "geo": null, "id": 148808597034381300, "id_str": "148808597034381312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1632455800/clouds_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632455800/clouds_normal.jpeg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Microsoft Azure hosts Hadoop, other open-source apps http://t.co/kBvxqf9B Please RT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:52:36 +0000", "from_user": "lesliemschwartz", "from_user_id": 50905357, "from_user_id_str": "50905357", "from_user_name": "leslie schwartz", "geo": null, "id": 148807955817566200, "id_str": "148807955817566209", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/283068201/Video_Snapshot_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/283068201/Video_Snapshot_normal.jpeg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Microsoft Azure hosts Hadoop, other open-source apps http://t.co/ACtqpRLE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:47:56 +0000", "from_user": "baborin", "from_user_id": 19096739, "from_user_id_str": "19096739", "from_user_name": "Masaru Hiroki", "geo": null, "id": 148806782112890880, "id_str": "148806782112890880", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1488183306/75367_102585246480565_100001872700144_18709_1627676_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1488183306/75367_102585246480565_100001872700144_18709_1627676_n_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "Hadoop\\u306F\\u7D20\\u4EBA\\u306B\\u306F\\u4F7F\\u3044\\u3053\\u306A\\u305B\\u306A\\u3044\\u3068\\u3044\\u3046\\u4E3B\\u5F35\\u306F\\u9837\\u3051\\u308B\\u306E\\u3060\\u3051\\u3069\\u3001\\u30A4\\u30F3\\u30E1\\u30E2\\u30EA\\u3060\\u3051\\u306B\\u50BE\\u5012\\u3057\\u3059\\u304E\\u3066\\u306F\\u3044\\u3051\\u306A\\u3044\\u3088\\u306D\\u3002\\u3000\\uFF0F\\u3000Google\\u3001Oracle\\u3001Microsoft\\u3001IBM\\u306E\\u30D3\\u30C3\\u30B0\\u30C7\\u30FC\\u30BF\\u5BFE\\u5FDC\\u30A2\\u30D7\\u30ED\\u30FC\\u30C1 http://t.co/JoLQDKPG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:46:34 +0000", "from_user": "merv", "from_user_id": 11272022, "from_user_id_str": "11272022", "from_user_name": "Merv Adrian", "geo": null, "id": 148806440214208500, "id_str": "148806440214208512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1235820798/merv-1085_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1235820798/merv-1085_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Busy day of inquiries and briefings. Topics in my 2011 top 2: big data/Hadoop and Exadata.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:45:30 +0000", "from_user": "matrix_spear", "from_user_id": 223258531, "from_user_id_str": "223258531", "from_user_name": "matrix_spear", "geo": null, "id": 148806170021335040, "id_str": "148806170021335040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1501257763/matrixdancer_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1501257763/matrixdancer_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Business Process as a Service (BPaaS) delivered from the cloud http://t.co/ap2O8Sle #bigdata #analytics #bi #cloud #hadoop #microsoft #ibm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:45:15 +0000", "from_user": "VRajaRao", "from_user_id": 265225982, "from_user_id_str": "265225982", "from_user_name": "Vadugu Raja Rao", "geo": null, "id": 148806107840786430, "id_str": "148806107840786432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Windows Azure Updated To Support Hadoop and Node.js http://t.co/b9JSXCQO via @toolsjournal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:45:05 +0000", "from_user": "MySQLBot_en", "from_user_id": 305160384, "from_user_id_str": "305160384", "from_user_name": "MySQLBot_en", "geo": null, "id": 148806065620918270, "id_str": "148806065620918273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1368954854/mysql_100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1368954854/mysql_100_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @sfrezefond: using #MySQL Cluster to build a Scalable and Highly Available #HDFS (#Hadoop Distributed File System) Namenode http://t.co/7UEjWwc5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:43:47 +0000", "from_user": "rkizer1", "from_user_id": 29219608, "from_user_id_str": "29219608", "from_user_name": "Rich Kizer", "geo": null, "id": 148805737689260030, "id_str": "148805737689260032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1034720850/Rich_Kizer_FaceIII_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1034720850/Rich_Kizer_FaceIII_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:43:15 +0000", "from_user": "bsabrin", "from_user_id": 13777992, "from_user_id_str": "13777992", "from_user_name": "bsabrin", "geo": null, "id": 148805604159389700, "id_str": "148805604159389696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1268470086/ben_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1268470086/ben_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "#MongoDB from #10gen on #Azure. http://t.co/qXK53hv4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:42:39 +0000", "from_user": "sfrezefond", "from_user_id": 39950581, "from_user_id_str": "39950581", "from_user_name": "Serge Frezefond", "geo": null, "id": 148805454917677060, "id_str": "148805454917677056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/216996962/sf_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/216996962/sf_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "using #MySQL Cluster to build a Scalable and Highly Available #HDFS (#Hadoop Distributed File System) Namenode http://t.co/7UEjWwc5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 16:41:30 +0000", "from_user": "NewsoftheCloud", "from_user_id": 409469892, "from_user_id_str": "409469892", "from_user_name": "David Wyld", "geo": null, "id": 148805164546011140, "id_str": "148805164546011136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1632455800/clouds_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632455800/clouds_normal.jpeg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Microsoft Azure hosts Hadoop, other open-source apps http://t.co/G9lvpmeU Please ReTweet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:37:47 +0000", "from_user": "SpencerScott3", "from_user_id": 351162648, "from_user_id_str": "351162648", "from_user_name": "Spencer Scott", "geo": null, "id": 148804229467869200, "id_str": "148804229467869184", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1485217795/Spencer_ebay_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1485217795/Spencer_ebay_normal.jpg", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Looking for a Hadoop Software Engineer/Developer in Redmond, WA http://t.co/Y0xpTxZC #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:36:55 +0000", "from_user": "merv", "from_user_id": 11272022, "from_user_id_str": "11272022", "from_user_name": "Merv Adrian", "geo": null, "id": 148804012349730800, "id_str": "148804012349730816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1235820798/merv-1085_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1235820798/merv-1085_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@Pentaho Thanks for pointing Hadoop post out. More to come in 2012 - and distribution differences will matter,", "to_user": "Pentaho", "to_user_id": 20641938, "to_user_id_str": "20641938", "to_user_name": "Pentaho", "in_reply_to_status_id": 148600048668786700, "in_reply_to_status_id_str": "148600048668786691"}, +{"created_at": "Mon, 19 Dec 2011 16:36:44 +0000", "from_user": "ViritonIT", "from_user_id": 180812909, "from_user_id_str": "180812909", "from_user_name": "Viriton", "geo": null, "id": 148803966648598530, "id_str": "148803966648598528", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1107150255/virilogo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1107150255/virilogo_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "#Hadoop\\u304CLZ4\\u5727\\u7E2E\\u306B\\u5BFE\\u5FDC\\u3059\\u308B\\u304B\\u3082\\u7684\\u306A\\u8A71 / \\u201CFast Data Compression: LZ4 into Hadoop-MapReduce\\u201D http://t.co/Rn0EyERW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:32:35 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148802919397982200, "id_str": "148802919397982210", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @commoncrawl: MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl by @stevesalevan http://t.co/cBa5598M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:32:10 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148802816918552580, "id_str": "148802816918552577", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @vikasdp: Introducing hadoop in 20 pages - http://t.co/5l0rTnCN @myen", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:31:58 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148802763416023040, "id_str": "148802763416023041", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://www.slideshare.net/" rel="nofollow">Slideshare</a>", "text": "RT @slideshare: 'Hadoop and Machine Learning' is featured on our homepage. http://t.co/lkuEIFPn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:31:55 +0000", "from_user": "rindai87", "from_user_id": 13677822, "from_user_id_str": "13677822", "from_user_name": "norihiro shimoda", "geo": null, "id": 148802753320329200, "id_str": "148802753320329216", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1659014657/317090_311725905522220_100000544408846_1164285_73874304_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659014657/317090_311725905522220_100000544408846_1164285_73874304_n_normal.jpg", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "Hadoop\\u304CLZ4\\u5727\\u7E2E\\u306B\\u5BFE\\u5FDC\\u3059\\u308B\\u304B\\u3082\\u7684\\u306A\\u8A71 / \\u201CFast Data Compression: LZ4 into Hadoop-MapReduce\\u201D http://t.co/jhRNlaWH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:31:42 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148802698379137020, "id_str": "148802698379137026", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @JavierLeonRubio: Facebook timeline uses MySQL, not Hadoop http://t.co/k79Vk74f #dbclass", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:31:35 +0000", "from_user": "cyrilleleclerc", "from_user_id": 1325981, "from_user_id_str": "1325981", "from_user_name": "Cyrille Le Clerc", "geo": null, "id": 148802668553437200, "id_str": "148802668553437184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1280812001/my-gravatar_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1280812001/my-gravatar_normal.jpeg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @robdielemans: Great: Three Xebia Consulants are Certfied #Cloudera Developers in Apache Hadoop....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:31:04 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148802538840391680, "id_str": "148802538840391681", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @hmuehlburger: Check out this presentation : Modeling with Hadoop kdd2011 http://t.co/zVF11qzc via @slideshare", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:30:08 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148802305544826880, "id_str": "148802305544826880", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @bigdatajobs: #Job Senior Hadoop Software Engineer at Emc/greenplum (San Mateo, CA) http://t.co/DFW1NqNe #bigdata #cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:29:33 +0000", "from_user": "wmartinteam", "from_user_id": 225059840, "from_user_id_str": "225059840", "from_user_name": "Dr. Wolfgang Martin", "geo": null, "id": 148802156659613700, "id_str": "148802156659613696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1187253422/WM_Mai_2002-_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1187253422/WM_Mai_2002-_3_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @timoelliott: 2012: hadoop, in-memory, graph dbs, says @jameskobielus: http://t.co/CQIlbhgC #analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:29:22 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148802109867966460, "id_str": "148802109867966465", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "RT @chetnarcs: Hadoop Developer in Bangalore, India http://t.co/mzwg9tTa #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:29:17 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148802090389610500, "id_str": "148802090389610496", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @stackfeed: Small files and HDFS blocks: Does a block in Hadoop Distributed File System store multiple small files, or a blo... http://t.co/eJbQfmP4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:29:01 +0000", "from_user": "codelesson", "from_user_id": 143534212, "from_user_id_str": "143534212", "from_user_name": "CodeLesson", "geo": null, "id": 148802023893106700, "id_str": "148802023893106688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/897604542/logo_square_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/897604542/logo_square_normal.png", "source": "<a href="http://codelesson.com/" rel="nofollow">CodeLesson</a>", "text": "Happy Monday! Check out info and discounts on our online Crunching Big Data with Hadoop course: http://t.co/vkcZmBbf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:28:38 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148801924999811070, "id_str": "148801924999811072", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://www.apple.com" rel="nofollow">Safari on iOS</a>", "text": "RT @zenithon: MySQL \\uD074\\uB7EC\\uC2A4\\uD130\\uB85C Hadoop NameNode HA \\uAD6C\\uC131. \\uC2A4\\uC6E8\\uB374 \\uD559\\uC0DD\\uB4E4\\uC774 \\uC9C4\\uD589\\uD55C \\uD504\\uB85C\\uC81D\\uD2B8\\uB85C \\uBA54\\uD0C0\\uB370\\uC774\\uD130 \\uC800\\uC7A5\\uC744 MySQL\\uB85C \\uC7AC\\uAD6C\\uC131\\uD55C \\uB4EF. \\uCF54\\uB4DC\\uB3C4 \\uACF5\\uAC1C\\uB418\\uC5B4\\uC788\\uB124\\uC694 http://t.co/FTkGVmIH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:28:15 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148801830221131780, "id_str": "148801830221131776", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://www.dzone.com" rel="nofollow">DZone.com</a>", "text": "RT @DZone: Introducing hadoop in 20 pages - http://t.co/ejh1aKju - @DZone Big Link by adij", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:28:06 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148801791616753660, "id_str": "148801791616753665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "RT @DeannaHerderick: Job: Hadoop Solution Architect in Redmond, WA http://t.co/BHL5xTYX #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:27:30 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148801641318064130, "id_str": "148801641318064128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @annajkt: Hard drive manufacturers slash warranty periods: \\u00A0 The Grill: Hadoop creator Doug C... http://t.co/xxsfDhqN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:27:26 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148801622531768320, "id_str": "148801622531768321", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @nicktj: 34,800 map tasks. This is going to take awhile. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:26:44 +0000", "from_user": "yanaoki", "from_user_id": 4601811, "from_user_id_str": "4601811", "from_user_name": "naoki yanai", "geo": null, "id": 148801446635253760, "id_str": "148801446635253762", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1663501675/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663501675/profile_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "\\u304A\\u304A\\u30010.24\\u3067\\u3059\\u304B\\u306ART @komiya_atsushi: Hadoop \\u3067 LZ4 \\u306E\\u5727\\u7E2E\\u5F62\\u5F0F\\u304C\\u30B5\\u30DD\\u30FC\\u30C8\\u3055\\u308C\\u308B\\u3088\\u3046\\u306B\\u306A\\u308B\\u306E\\u304B\\u3082\\uFF1F \\u2026 Fast Data Compression: LZ4 into Hadoop-MapReduce http://t.co/lUO7Mqnb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:26:37 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148801416738250750, "id_str": "148801416738250752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @suren_h: Most interesting companies in the #Hadoop ecosystem: http://t.co/wOx2OQrb #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:26:16 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148801332642455550, "id_str": "148801332642455552", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @Cyan4973: Fast Data Compression: LZ4 into Hadoop-MapReduce http://t.co/XvrRzj1H", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:26:11 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148801311121473540, "id_str": "148801311121473536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @NewHorizons_Mad: #Microsoft offers Hadoop preview on Azure http://t.co/L63moztT #Tecnologia #Tech", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:25:53 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148801234835472400, "id_str": "148801234835472384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @ialjkk: Resources to write .Net based MapReduce jobs for Hadoop using ... http://t.co/g9db5ZA9 #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:25:22 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148801103700557820, "id_str": "148801103700557825", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @cgbeattie: Using Hadoop as allegory to describe why Big Data is so huge for the insurance industry - Big Insurance Data | Celent http://t.co/YeCdeq4h", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:24:49 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148800965032689660, "id_str": "148800965032689664", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @freshemployer1: http://t.co/7rUGweLC Java Engineer - Java, Map/Reduce, Spring, MySQL, Hadoop, NoSQL http://t.co/USBvWoPi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:24:35 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148800907579113470, "id_str": "148800907579113473", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://1topi.jp/" rel="nofollow">OneTopi</a>", "text": "RT @cloud_1topi: Hadoop\\u5BFE\\u5FDC\\u3092\\u9032\\u3081\\u3066\\u3044\\u308B\\uFF1AGoogle\\u3001Oracle\\u3001Microsoft\\u3001IBM\\u306E\\u30D3\\u30C3\\u30B0\\u30C7\\u30FC\\u30BF\\u5BFE\\u5FDC\\u30A2\\u30D7\\u30ED\\u30FC\\u30C1 \\uFF0D TechTarget\\u30B8\\u30E3\\u30D1\\u30F3 \\u60C5\\u5831\\u7CFB\\u30A2\\u30D7\\u30EA\\u30B1\\u30FC\\u30B7\\u30E7\\u30F3 http://t.co/lDiHk8DD\\n #1tp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:24:20 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148800842248622080, "id_str": "148800842248622080", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @bwtakacy: \\u76F4\\u8FD1\\u3067\\u306F\\u4F7F\\u308F\\u306A\\u305D\\u3046\\u3060\\u3051\\u3069\\u3001\\u53C2\\u8003\\u306B\\u306A\\u308B\\u304B\\u3082\\uFF1F\\uFF0F\\u3010VLDB2011\\u52C9\\u5F37\\u4F1A\\u3011Session 18: MapReduce and Hadoop http://t.co/CGeMOMgJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:23:52 +0000", "from_user": "matrix_spear", "from_user_id": 223258531, "from_user_id_str": "223258531", "from_user_name": "matrix_spear", "geo": null, "id": 148800727526014980, "id_str": "148800727526014976", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1501257763/matrixdancer_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1501257763/matrixdancer_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Webinar: Building a Predictive Enterprise Today http://t.co/kED3UQec #bigdata #analytics #bi #cloud #hadoop #microsoft #ibm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:23:15 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148800572479385600, "id_str": "148800572479385600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @sirmaximum: Azure price cuts, bigger databases, now with node.js and MongoDB support, Hadoop on its way http://t.co/NuVWzURh via @arstechnica", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:22:57 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148800494238826500, "id_str": "148800494238826497", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @komiya_atsushi: Hadoop \\u3067 LZ4 \\u306E\\u5727\\u7E2E\\u5F62\\u5F0F\\u304C\\u30B5\\u30DD\\u30FC\\u30C8\\u3055\\u308C\\u308B\\u3088\\u3046\\u306B\\u306A\\u308B\\u306E\\u304B\\u3082\\uFF1F Google snappy \\u3088\\u308A\\u6027\\u80FD\\u3044\\u3044\\u3068\\u304B\\u3001\\u3059\\u3054\\u3044\\u306D\\uFF01 Fast Data Compression: LZ4 into Hadoop-MapReduce http://t.co/yA6rJJgY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:18:47 +0000", "from_user": "komiya_atsushi", "from_user_id": 64378588, "from_user_id_str": "64378588", "from_user_name": "KOMIYA Atsushi", "geo": null, "id": 148799447831285760, "id_str": "148799447831285760", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/875688156/twitter-icon3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/875688156/twitter-icon3_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Hadoop \\u3067 LZ4 \\u306E\\u5727\\u7E2E\\u5F62\\u5F0F\\u304C\\u30B5\\u30DD\\u30FC\\u30C8\\u3055\\u308C\\u308B\\u3088\\u3046\\u306B\\u306A\\u308B\\u306E\\u304B\\u3082\\uFF1F Google snappy \\u3088\\u308A\\u6027\\u80FD\\u3044\\u3044\\u3068\\u304B\\u3001\\u3059\\u3054\\u3044\\u306D\\uFF01 Fast Data Compression: LZ4 into Hadoop-MapReduce http://t.co/yA6rJJgY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:16:21 +0000", "from_user": "shun_tak", "from_user_id": 129822537, "from_user_id_str": "129822537", "from_user_name": "Shun TAK", "geo": null, "id": 148798833952948220, "id_str": "148798833952948224", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/799645562/n46517528847_1383916_2288_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/799645562/n46517528847_1383916_2288_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@motohiro706 \\u305D\\u308C\\u30A2\\u30EB\\u30B4\\u30EA\\u30BA\\u30E0\\u3068\\u30C7\\u30FC\\u30BF\\u69CB\\u9020\\u306E\\u30AB\\u30D0\\u30FC\\u3059\\u308B\\u7BC4\\u56F2\\u3058\\u3083\\u306A\\u3044\\u3088\\u3002\\u30E1\\u30E2\\u30EA\\u7BA1\\u7406\\u306F\\u57FA\\u672C\\u7684\\u306BGC\\u306B\\u4EFB\\u305B\\u3066\\u3001\\u30C0\\u30E1\\u306A\\u3089\\u958B\\u653E\\u3057\\u3066\\u3084\\u308B\\u3002\\u30DE\\u30EB\\u30C1\\u30B9\\u30EC\\u30C3\\u30C9\\u3001GPGPU\\u3001Hadoop\\u3068\\u304B\\u8272\\u3005\\u3042\\u308B\\u3051\\u3069\\u3001\\u4E26\\u5217\\u8A08\\u7B97\\u30FB\\u5206\\u6563\\u51E6\\u7406\\u306F\\u8210\\u3081\\u305F\\u7A0B\\u5EA6\\u3067\\u8A73\\u3057\\u304F\\u306A\\u3044\\u304B\\u3089\\u5206\\u304B\\u3089\\u306A\\u3044\\u3002\\u3042\\u3068\\u30B3\\u30F3\\u30D1\\u30A4\\u30EB\\u304B\\u3089\\u5148\\u3068\\u306F\\uFF1F", "to_user": "motohiro706", "to_user_id": 131088649, "to_user_id_str": "131088649", "to_user_name": "M. Sakakibara", "in_reply_to_status_id": 148796123685994500, "in_reply_to_status_id_str": "148796123685994496"}, +{"created_at": "Mon, 19 Dec 2011 16:13:48 +0000", "from_user": "shinyaa31", "from_user_id": 51095845, "from_user_id_str": "51095845", "from_user_name": "\\u3057\\u3093\\u3084", "geo": null, "id": 148798194598428670, "id_str": "148798194598428673", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/894210518/_____normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/894210518/_____normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "RT @db_online: \\u610F\\u6B32\\u7684\\u306A\\u6539\\u826F\\u3092\\u53D6\\u308A\\u8FBC\\u3093\\u3060\\u9AD8\\u901F\\u5316Hadoop\\u3068\\u30C7\\u30FC\\u30BF\\u30A6\\u30A7\\u30A2\\u30CF\\u30A6\\u30B9\\u88FD\\u54C1 | \\u30C7\\u30FC\\u30BF\\u30BB\\u30F3\\u30BF\\u30FC\\u5B8C\\u5168\\u30AC\\u30A4\\u30C9 - http://t.co/5tnmRcVr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:13:09 +0000", "from_user": "db_online", "from_user_id": 296072112, "from_user_id_str": "296072112", "from_user_name": "DB Online\\u7DE8\\u96C6\\u90E8", "geo": null, "id": 148798028264898560, "id_str": "148798028264898561", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1346529191/db_icon_black_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1346529191/db_icon_black_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "\\u610F\\u6B32\\u7684\\u306A\\u6539\\u826F\\u3092\\u53D6\\u308A\\u8FBC\\u3093\\u3060\\u9AD8\\u901F\\u5316Hadoop\\u3068\\u30C7\\u30FC\\u30BF\\u30A6\\u30A7\\u30A2\\u30CF\\u30A6\\u30B9\\u88FD\\u54C1 | \\u30C7\\u30FC\\u30BF\\u30BB\\u30F3\\u30BF\\u30FC\\u5B8C\\u5168\\u30AC\\u30A4\\u30C9 - http://t.co/5tnmRcVr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:11:19 +0000", "from_user": "sirmaximum", "from_user_id": 135678269, "from_user_id_str": "135678269", "from_user_name": "Maxime Duclos", "geo": null, "id": 148797566572703740, "id_str": "148797566572703744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1552343655/damtech_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552343655/damtech_copy_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Azure price cuts, bigger databases, now with node.js and MongoDB support, Hadoop on its way http://t.co/NuVWzURh via @arstechnica", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:10:46 +0000", "from_user": "bwtakacy", "from_user_id": 197019815, "from_user_id_str": "197019815", "from_user_name": "takacy", "geo": null, "id": 148797429020499970, "id_str": "148797429020499968", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1289045858/___normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1289045858/___normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u76F4\\u8FD1\\u3067\\u306F\\u4F7F\\u308F\\u306A\\u305D\\u3046\\u3060\\u3051\\u3069\\u3001\\u53C2\\u8003\\u306B\\u306A\\u308B\\u304B\\u3082\\uFF1F\\uFF0F\\u3010VLDB2011\\u52C9\\u5F37\\u4F1A\\u3011Session 18: MapReduce and Hadoop http://t.co/CGeMOMgJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:09:56 +0000", "from_user": "luizkowalski", "from_user_id": 277802366, "from_user_id_str": "277802366", "from_user_name": "Luiz E.", "geo": null, "id": 148797222396502000, "id_str": "148797222396502016", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1515917648/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515917648/me_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Desvendando o genoma humano com o Hadoop: http://t.co/lOzo4Vy2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:09:31 +0000", "from_user": "cloud_1topi", "from_user_id": 80008490, "from_user_id_str": "80008490", "from_user_name": "ONETOPI\\u300C\\u30AF\\u30E9\\u30A6\\u30C9\\u300D", "geo": null, "id": 148797114359615500, "id_str": "148797114359615488", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/470039708/OT_icon_091008_cloud_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/470039708/OT_icon_091008_cloud_normal.png", "source": "<a href="http://1topi.jp/" rel="nofollow">OneTopi</a>", "text": "Hadoop\\u5BFE\\u5FDC\\u3092\\u9032\\u3081\\u3066\\u3044\\u308B\\uFF1AGoogle\\u3001Oracle\\u3001Microsoft\\u3001IBM\\u306E\\u30D3\\u30C3\\u30B0\\u30C7\\u30FC\\u30BF\\u5BFE\\u5FDC\\u30A2\\u30D7\\u30ED\\u30FC\\u30C1 \\uFF0D TechTarget\\u30B8\\u30E3\\u30D1\\u30F3 \\u60C5\\u5831\\u7CFB\\u30A2\\u30D7\\u30EA\\u30B1\\u30FC\\u30B7\\u30E7\\u30F3 http://t.co/lDiHk8DD\\n #1tp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:08:24 +0000", "from_user": "jjmerelo", "from_user_id": 62963, "from_user_id_str": "62963", "from_user_name": "JJ Merelo", "geo": +{"coordinates": [12.1167,-61.6667], "type": "Point"}, "id": 148796833718738940, "id_str": "148796833718738946", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1449189005/jj-che_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1449189005/jj-che_normal.JPG", "source": "<a href="http://identi.ca" rel="nofollow">identica</a>", "text": "Map/Reduce para todos con Hadoop y datos abiertos http://t.co/3uGjsnQ4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:04:03 +0000", "from_user": "usmaan002", "from_user_id": 240671986, "from_user_id_str": "240671986", "from_user_name": "Usmaan Pervaiz", "geo": null, "id": 148795738690830340, "id_str": "148795738690830337", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1368400959/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1368400959/me_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Grill: Doug Cutting: Doug Cutting, creator of the open-source Hadoop framework that allows enterprises to st... http://t.co/efrMmCcJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:03:45 +0000", "from_user": "freshemployer1", "from_user_id": 362653052, "from_user_id_str": "362653052", "from_user_name": "freshemployer", "geo": null, "id": 148795664078356480, "id_str": "148795664078356480", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "http://t.co/7rUGweLC Java Engineer - Java, Map/Reduce, Spring, MySQL, Hadoop, NoSQL http://t.co/USBvWoPi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:03:01 +0000", "from_user": "SeanAnthony411", "from_user_id": 432784366, "from_user_id_str": "432784366", "from_user_name": "Sean Anthony", "geo": null, "id": 148795477750579200, "id_str": "148795477750579200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683668369/mandrinkingcranberryjuiceXSmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683668369/mandrinkingcranberryjuiceXSmall_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Grill: Doug Cutting: Doug Cutting, creator of the open-source Hadoop framework that allows... http://t.co/KSpScgzW #research #online", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:03:00 +0000", "from_user": "SeanHerndon", "from_user_id": 20793622, "from_user_id_str": "20793622", "from_user_name": "MoneyOnlineResource", "geo": null, "id": 148795477142405120, "id_str": "148795477142405120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1562401755/bigsmilesean_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1562401755/bigsmilesean_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "News: The Grill: Doug Cutting: Doug Cutting, creator of the open-source Hadoop framework tha... http://t.co/EigVaSz0 #affiliate, #online", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:01:31 +0000", "from_user": "timoelliott", "from_user_id": 15822273, "from_user_id_str": "15822273", "from_user_name": "Timo Elliott", "geo": null, "id": 148795103899693060, "id_str": "148795103899693057", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/78853518/timo_elliott_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/78853518/timo_elliott_twitter_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "2012: hadoop, in-memory, graph dbs, says @jameskobielus: http://t.co/CQIlbhgC #analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:45:07 +0000", "from_user": "DhilipSiva_linx", "from_user_id": 151913719, "from_user_id_str": "151913719", "from_user_name": "DhilipSiva -CyberMan", "geo": null, "id": 148790974615793660, "id_str": "148790974615793664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1424456382/DhilipSiva__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1424456382/DhilipSiva__normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#linux #opensource The Grill: Doug Cutting - Hadoop's creator discusses how the technology is making its... http://t.co/DhH9UgrY #DhilipSiva", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:45:03 +0000", "from_user": "johnsarealtwit", "from_user_id": 57190069, "from_user_id_str": "57190069", "from_user_name": "John Dennison", "geo": null, "id": 148790956194402300, "id_str": "148790956194402305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1639746706/Image_12_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639746706/Image_12_normal.png", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "RT @cmastication: I have Hadoop AND a red Porsche. I am sooooo overcompensating. HT @ZUrlocker http://t.co/DCfMejxD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:44:31 +0000", "from_user": "cgbeattie", "from_user_id": 6180232, "from_user_id_str": "6180232", "from_user_name": "craig beattie", "geo": null, "id": 148790823956394000, "id_str": "148790823956393984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/727573006/DSCN0513-1_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/727573006/DSCN0513-1_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Using Hadoop as allegory to describe why Big Data is so huge for the insurance industry - Big Insurance Data | Celent http://t.co/YeCdeq4h", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:43:25 +0000", "from_user": "daisukebe_", "from_user_id": 15071746, "from_user_id_str": "15071746", "from_user_name": "Daisuke Kobayashi", "geo": null, "id": 148790546851307520, "id_str": "148790546851307520", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1179323267/who_retro_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1179323267/who_retro_normal.jpg", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "\\u201C\\u6700\\u3082\\u901F\\u304F Hadoop \\u74B0\\u5883\\u3092\\u624B\\u306B\\u5165\\u308C\\u308B\\u65B9\\u6CD5 - Elliptium\\u201D http://t.co/kcQroS6B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:42:41 +0000", "from_user": "Deploy_Online", "from_user_id": 125769341, "from_user_id_str": "125769341", "from_user_name": "Deploy Pty Ltd", "geo": null, "id": 148790361790218240, "id_str": "148790361790218240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/776183981/deploy-SP-icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/776183981/deploy-SP-icon_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Grill: Doug Cutting: Doug Cutting, creator of the open-source Hadoop framework that allows enterprises t... http://t.co/7ubVTXWs #IT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:41:24 +0000", "from_user": "usmaan002", "from_user_id": 240671986, "from_user_id_str": "240671986", "from_user_name": "Usmaan Pervaiz", "geo": null, "id": 148790039869001730, "id_str": "148790039869001729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1368400959/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1368400959/me_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Grill: Doug Cutting: Doug Cutting, creator of the open-source Hadoop framework that allows enterprises to st... http://t.co/XxAmrgJX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:36:42 +0000", "from_user": "yusufbash", "from_user_id": 52100906, "from_user_id_str": "52100906", "from_user_name": "Yusuf Bashir", "geo": null, "id": 148788855343034370, "id_str": "148788855343034368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1394565500/boston_apr_orientation_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1394565500/boston_apr_orientation_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\"When HANA meets Hadoop,\" a look at SAP HANA moving beyond its roots to reach a broader audience http://t.co/yFuddz0U via @jason_grosse", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:36:24 +0000", "from_user": "ivanassen", "from_user_id": 14809892, "from_user_id_str": "14809892", "from_user_name": "Ivan-Assen Ivanov", "geo": null, "id": 148788782471200770, "id_str": "148788782471200768", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1415361292/Photo_27.06.11_00_06_53_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1415361292/Photo_27.06.11_00_06_53_normal.jpeg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @Cyan4973: Fast Data Compression: LZ4 into Hadoop-MapReduce http://t.co/XvrRzj1H", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:31:22 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 148787515770413060, "id_str": "148787515770413056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Resources to write .Net based MapReduce jobs for Hadoop using ... http://t.co/g9db5ZA9 #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:30:57 +0000", "from_user": "NewHorizons_Mad", "from_user_id": 260172365, "from_user_id_str": "260172365", "from_user_name": "New Horizons Madrid", "geo": null, "id": 148787408870182900, "id_str": "148787408870182914", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1652154048/NHColorLogoNoTag_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652154048/NHColorLogoNoTag_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#Microsoft offers Hadoop preview on Azure http://t.co/L63moztT #Tecnologia #Tech", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:28:39 +0000", "from_user": "ovatsus", "from_user_id": 40453522, "from_user_id_str": "40453522", "from_user_name": "Gustavo Guerra", "geo": null, "id": 148786830848954370, "id_str": "148786830848954368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1556030271/Me200_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1556030271/Me200_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @taswarbhatti: Resources to write .Net based #MapReduce jobs for #Hadoop using F# #fsharp | http://t.co/6nXtwJe5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:28:00 +0000", "from_user": "reciente", "from_user_id": 15626267, "from_user_id_str": "15626267", "from_user_name": "reciente", "geo": null, "id": 148786666558074880, "id_str": "148786666558074880", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1675406948/img37e103f8zik1zj_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675406948/img37e103f8zik1zj_normal.gif", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Apache Hadoop + Apache Mahout\\u3068\\u304B\\u4F7F\\u3046\\u3068\\u8272\\u3005\\u697D\\u3057\\u305D\\u3046\\u306A\\u306E\\u3067\\u3001\\u3084\\u3063\\u3071\\u308A\\u3053\\u306E\\u8FBA\\u308A\\u306F\\u304D\\u3061\\u3093\\u3068\\u52C9\\u5F37\\u3057\\u3066\\u304A\\u304F\\u3068\\u3001\\u5E78\\u305B\\u306B\\u306A\\u308C\\u305D\\u3046\\u3002\\u4FFA\\u306E\\u5984\\u60F3\\u7684\\u306A\\u610F\\u5473\\u3067\\uFF57", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:27:48 +0000", "from_user": "Cyan4973", "from_user_id": 152221796, "from_user_id_str": "152221796", "from_user_name": "Yann Collet", "geo": null, "id": 148786619216957440, "id_str": "148786619216957440", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1166476778/webcam_200906_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1166476778/webcam_200906_small_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Fast Data Compression: LZ4 into Hadoop-MapReduce http://t.co/XvrRzj1H", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:26:07 +0000", "from_user": "suren_h", "from_user_id": 90256037, "from_user_id_str": "90256037", "from_user_name": "Suren Hiraman", "geo": null, "id": 148786193193111550, "id_str": "148786193193111552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Most interesting companies in the #Hadoop ecosystem: http://t.co/wOx2OQrb #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:22:29 +0000", "from_user": "reciente", "from_user_id": 15626267, "from_user_id_str": "15626267", "from_user_name": "reciente", "geo": null, "id": 148785280097329150, "id_str": "148785280097329152", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1675406948/img37e103f8zik1zj_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675406948/img37e103f8zik1zj_normal.gif", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "BOT\\u696D\\u8005\\u306E\\u6D3B\\u52D5\\u3092\\u201C\\u307B\\u307C\\u58CA\\u6EC5\\u201D\\u306B\\u8FFD\\u3044\\u3084\\u308B\\u307E\\u3067\\u306E\\u8ECC\\u8DE1\\u2015\\u2015\\u300C\\u30C9\\u30E9\\u30B4\\u30F3\\u30CD\\u30B9\\u30C8\\u300D\\u904B\\u55B6\\u30C1\\u30FC\\u30E0\\u306B\\u3088\\u308B1\\u5E74\\u534A\\u306E\\u4E0D\\u6B63\\u884C\\u70BA\\u5BFE\\u7B56\\u3092\\u632F\\u308A\\u8FD4\\u308B http://t.co/FxTgfLJM \\u3053\\u3093\\u306A\\u8A18\\u4E8B\\u3092\\u898B\\u308B\\u3068\\u3001\\u30ED\\u30B0\\u89E3\\u6790\\u90E8\\u5206\\u306BApache Hadoop\\u3092\\u4F7F\\u3046\\u3068\\u3069\\u3046\\u306A\\u3093\\u3060\\u308D\\u3068\\u304B\\u5984\\u60F3\\u304C\\u81A8\\u3089\\u3080", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:18:25 +0000", "from_user": "nicktj", "from_user_id": 25672245, "from_user_id_str": "25672245", "from_user_name": "Nick Jones", "geo": null, "id": 148784256116723700, "id_str": "148784256116723712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1224937816/profile_nice_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1224937816/profile_nice_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "34,800 map tasks. This is going to take awhile. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:17:57 +0000", "from_user": "chubbyturtle", "from_user_id": 74763589, "from_user_id_str": "74763589", "from_user_name": "Alex Ang", "geo": null, "id": 148784136574877700, "id_str": "148784136574877696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/970336358/chubbyturtle_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/970336358/chubbyturtle_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Hadoop: Be sure to check your configs when error occurs. Especially when everything is left to default.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:16:16 +0000", "from_user": "annajkt", "from_user_id": 110358859, "from_user_id_str": "110358859", "from_user_name": "anna", "geo": null, "id": 148783713298284540, "id_str": "148783713298284544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/668953526/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/668953526/images_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hard drive manufacturers slash warranty periods: \\u00A0 The Grill: Hadoop creator Doug C... http://t.co/xxsfDhqN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:15:02 +0000", "from_user": "taswarbhatti", "from_user_id": 27633423, "from_user_id_str": "27633423", "from_user_name": "Taswar Bhatti", "geo": null, "id": 148783405780307970, "id_str": "148783405780307968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/114756492/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/114756492/me_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Resources to write .Net based #MapReduce jobs for #Hadoop using F# #fsharp | http://t.co/6nXtwJe5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:13:00 +0000", "from_user": "DeannaHerderick", "from_user_id": 108788770, "from_user_id_str": "108788770", "from_user_name": "Deanna Herderick", "geo": null, "id": 148782890560397300, "id_str": "148782890560397312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1336298400/005-L_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1336298400/005-L_normal.jpg", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Job: Hadoop Solution Architect in Redmond, WA http://t.co/BHL5xTYX #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:10:22 +0000", "from_user": "keithkim", "from_user_id": 14881688, "from_user_id_str": "14881688", "from_user_name": "Keith Kim", "geo": null, "id": 148782231006097400, "id_str": "148782231006097409", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1485820747/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1485820747/me_normal.jpg", "source": "<a href="http://www.dzone.com" rel="nofollow">DZone.com</a>", "text": "RT @DZone: Introducing hadoop in 20 pages - http://t.co/ejh1aKju - @DZone Big Link by adij", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:10:04 +0000", "from_user": "zenithon", "from_user_id": 5204801, "from_user_id_str": "5204801", "from_user_name": "Joo Youl Lee", "geo": null, "id": 148782155047239680, "id_str": "148782155047239680", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/940608128/jylee4tw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/940608128/jylee4tw_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Safari on iOS</a>", "text": "MySQL \\uD074\\uB7EC\\uC2A4\\uD130\\uB85C Hadoop NameNode HA \\uAD6C\\uC131. \\uC2A4\\uC6E8\\uB374 \\uD559\\uC0DD\\uB4E4\\uC774 \\uC9C4\\uD589\\uD55C \\uD504\\uB85C\\uC81D\\uD2B8\\uB85C \\uBA54\\uD0C0\\uB370\\uC774\\uD130 \\uC800\\uC7A5\\uC744 MySQL\\uB85C \\uC7AC\\uAD6C\\uC131\\uD55C \\uB4EF. \\uCF54\\uB4DC\\uB3C4 \\uACF5\\uAC1C\\uB418\\uC5B4\\uC788\\uB124\\uC694 http://t.co/FTkGVmIH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:09:38 +0000", "from_user": "lj_cave", "from_user_id": 234957362, "from_user_id_str": "234957362", "from_user_name": "Lee John Cave", "geo": null, "id": 148782045693358080, "id_str": "148782045693358080", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1283530899/A0282491_-_Lee_John_Cave_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1283530899/A0282491_-_Lee_John_Cave_normal.jpg", "source": "<a href="http://www.dzone.com" rel="nofollow">DZone.com</a>", "text": "RT @DZone: Introducing hadoop in 20 pages - http://t.co/ejh1aKju - @DZone Big Link by adij", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:01:19 +0000", "from_user": "eBay_Careers", "from_user_id": 364537814, "from_user_id_str": "364537814", "from_user_name": "David Sneed", "geo": null, "id": 148779953998147600, "id_str": "148779953998147585", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1543608610/ebay1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543608610/ebay1_normal.jpg", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Job: Hadoop Engineer (ebay) in San Jose, CA http://t.co/jWvM71rG #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:57:13 +0000", "from_user": "genghisjahn", "from_user_id": 16422814, "from_user_id_str": "16422814", "from_user_name": "Jon Wear", "geo": null, "id": 148778922400694270, "id_str": "148778922400694273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1593010221/plugin_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593010221/plugin_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@robconery Tekpub for F# and/or hadoop? Let me know when it's done so I can buy it.", "to_user": "robconery", "to_user_id": 248815441, "to_user_id_str": "248815441", "to_user_name": "Rob Conery"}, +{"created_at": "Mon, 19 Dec 2011 14:56:28 +0000", "from_user": "AvanadeFrance", "from_user_id": 322518915, "from_user_id_str": "322518915", "from_user_name": "Avanade France ", "geo": null, "id": 148778730188320770, "id_str": "148778730188320768", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1416947212/Avanade_-_A_normal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1416947212/Avanade_-_A_normal_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @AlainClapaud: #Microsoft baisse les prix d'Azure, augmente sa capacit\\u00E9 et l'ouvre \\u00E0 l'#OpenSource | arsTechnica http://t.co/6w5hLJbx (RT @dbmoore) #Cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:45:47 +0000", "from_user": "stackfeed", "from_user_id": 237310237, "from_user_id_str": "237310237", "from_user_name": "StackOverflow", "geo": null, "id": 148776044428656640, "id_str": "148776044428656640", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Small files and HDFS blocks: Does a block in Hadoop Distributed File System store multiple small files, or a blo... http://t.co/eJbQfmP4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:41:54 +0000", "from_user": "chetnarcs", "from_user_id": 122336447, "from_user_id_str": "122336447", "from_user_name": "Chetana", "geo": null, "id": 148775067537506300, "id_str": "148775067537506306", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Hadoop Developer in Bangalore, India http://t.co/mzwg9tTa #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:37:54 +0000", "from_user": "bigdatajobs", "from_user_id": 343011637, "from_user_id_str": "343011637", "from_user_name": "Big Data Jobs", "geo": null, "id": 148774060560613380, "id_str": "148774060560613376", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#Job Sr Java Developer (Hadoop, Cassandra, NoSQL, MongoDB) at Mitchell Group (Los Angeles, CA) http://t.co/DZWVlMud #bigdata #cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:33:22 +0000", "from_user": "szk_sho", "from_user_id": 290530964, "from_user_id_str": "290530964", "from_user_name": "\\u3057\\u3087\\u305F\\u308D", "geo": null, "id": 148772920540409860, "id_str": "148772920540409856", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1332964516/missile_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1332964516/missile_normal.JPG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\\uFF28\\uFF41\\uFF44\\uFF4F\\uFF4F\\uFF50\\u5165\\u9580\\u30A4\\u30DE\\u30A4\\u30C1\\u3060\\u3063\\u305F\\u2026\\u8B1B\\u7FA9\\u306E\\u5185\\u5BB9\\u306F\\u81EA\\u5206\\u304C\\uFF57\\uFF45\\uFF42\\u3067\\u8ABF\\u3079\\u305F\\u306E\\u3068\\u5927\\u5DEE\\u306A\\u304B\\u3063\\u305F\\u306A\\u3041\\u3002\\u6F14\\u7FD2\\u306F\\u307E\\u3041\\u826F\\u304B\\u3063\\u305F\\u3051\\u3069\\u3001\\u5168\\u90E8\\u30B3\\u30D4\\u30DA\\u3067\\u30B5\\u30AF\\u30B5\\u30AF\\u9032\\u307F\\u3059\\u304E\\u305F\\u304B\\u3089\\u8EAB\\u306B\\u3064\\u3044\\u305F\\u306E\\u304B\\u306F\\u7591\\u554F\\u3002\\u3082\\u3046\\u5C11\\u3057\\u6F14\\u7FD2\\u6642\\u9593\\u3068\\u3063\\u3066\\u8003\\u3048\\u308B\\u6642\\u9593\\u6B32\\u3057\\u304B\\u3063\\u305F\\u306A\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:24:31 +0000", "from_user": "DrMathochist", "from_user_id": 41706498, "from_user_id_str": "41706498", "from_user_name": "John Armstrong", "geo": null, "id": 148770691154575360, "id_str": "148770691154575361", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/848921496/John_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/848921496/John_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@twoscomplement also works for Hadoop clusters.", "to_user": "twoscomplement", "to_user_id": 18959257, "to_user_id_str": "18959257", "to_user_name": "Jonathan Adamczewski", "in_reply_to_status_id": 148731337946312700, "in_reply_to_status_id_str": "148731337946312704"}, +{"created_at": "Mon, 19 Dec 2011 14:23:50 +0000", "from_user": "VideoSIZ", "from_user_id": 385066430, "from_user_id_str": "385066430", "from_user_name": "Kristopher Patton", "geo": null, "id": 148770519276191740, "id_str": "148770519276191744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1609500360/1319735343_apr2011-fg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609500360/1319735343_apr2011-fg_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Cloudera Updates Hadoop Management App With Health Checks, Reporting Features And More", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:11:02 +0000", "from_user": "zenkay", "from_user_id": 52355877, "from_user_id_str": "52355877", "from_user_name": "Andrea Mostosi", "geo": null, "id": 148767298126229500, "id_str": "148767298126229505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1662661248/me_family_lunch_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662661248/me_family_lunch_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "An incredibly-fast LAMP stack is not enough http://t.co/wEJmVCBH #Haystack #BigPipe #Hadoop and #Hive ensure performance in specific fields", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:10:05 +0000", "from_user": "bigdatajobs", "from_user_id": 343011637, "from_user_id_str": "343011637", "from_user_name": "Big Data Jobs", "geo": null, "id": 148767057968762880, "id_str": "148767057968762881", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#Job Senior Hadoop Software Engineer at Emc/greenplum (San Mateo, CA) http://t.co/DFW1NqNe #bigdata #cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:04:28 +0000", "from_user": "bigdatajobs", "from_user_id": 343011637, "from_user_id_str": "343011637", "from_user_name": "Big Data Jobs", "geo": null, "id": 148765645104873470, "id_str": "148765645104873473", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#Job Senior Software Engineer (Hadoop, Lucene) at Proofpoint (Sunnyvale, CA) http://t.co/Mp7n4v9O #bigdata #cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:02:30 +0000", "from_user": "ragskashyap", "from_user_id": 15181158, "from_user_id_str": "15181158", "from_user_name": "ragskashyap", "geo": null, "id": 148765149476560900, "id_str": "148765149476560898", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1597338512/DSC_0042_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1597338512/DSC_0042_normal.JPG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Spam of the day \" need Hadoop architect with 7-18 yrs experience\" #fb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:54:33 +0000", "from_user": "monkeyonahill", "from_user_id": 55155032, "from_user_id_str": "55155032", "from_user_name": "James Tryand", "geo": null, "id": 148763149594656770, "id_str": "148763149594656770", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/354233697/moah2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/354233697/moah2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@DanTup have you seen the pricing improvements on azure? (as of the 12th of this month.) http://t.co/CURcSZzj with node.js & hadoop support.", "to_user": "DanTup", "to_user_id": 61238575, "to_user_id_str": "61238575", "to_user_name": "Danny Tuppeny"}, +{"created_at": "Mon, 19 Dec 2011 13:53:17 +0000", "from_user": "jason_grosse", "from_user_id": 76032301, "from_user_id_str": "76032301", "from_user_name": "Jason Grosse", "geo": null, "id": 148762832362672130, "id_str": "148762832362672129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1010642099/profilepic_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1010642099/profilepic_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "From the #SAPsummit, \"When HANA meets Hadoop,\" a look at HANA moving beyond its roots to reach a broader audience http://t.co/5EjQbh76", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:52:27 +0000", "from_user": "rolandbouman", "from_user_id": 51754021, "from_user_id_str": "51754021", "from_user_name": "Roland Bouman", "geo": null, "id": 148762621728931840, "id_str": "148762621728931840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/287001025/roland_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/287001025/roland_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Cool to finally see a serious O'Reilly book on big data and Hadoop https://t.co/bQ3lkHFp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:49:19 +0000", "from_user": "followbotlist", "from_user_id": 420104059, "from_user_id_str": "420104059", "from_user_name": "\\u3076\\u308D\\u3063\\u304F\\u308A\\u3059\\u3068", "geo": null, "id": 148761834135109630, "id_str": "148761834135109632", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twittbot.net/" rel="nofollow">twittbot.net</a>", "text": "C\\u8A00\\u8A9E/C++/C#/F#/PHP/Perl/Ruby/Python/Lisp/Prolog/ML/Haskell/HTML5/VB/Basic/\\u30A6\\u30A7\\u30D6\\u30C7\\u30B6\\u30A4\\u30F3/\\u30EC\\u30F3\\u30BF\\u30EB\\u30B5\\u30FC\\u30D0/CGI/\\u30BB\\u30AD\\u30E5\\u30EA\\u30C6\\u30A3/FLASH/Web/\\u30BD\\u30FC\\u30B7\\u30E3\\u30EB/SNS/\\u30B0\\u30EB\\u30FC\\u30D7\\u30A6\\u30A7\\u30A2/Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:44:02 +0000", "from_user": "michfloyd", "from_user_id": 334656269, "from_user_id_str": "334656269", "from_user_name": "Michel Bonato", "geo": null, "id": 148760504725291000, "id_str": "148760504725291008", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1440476191/29072010448_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1440476191/29072010448_normal.jpg", "source": "<a href="http://www.samsungmobile.com" rel="nofollow">Samsung Mobile</a>", "text": "Aprendendo um pouco de hadoop.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:37:16 +0000", "from_user": "maxkalachev", "from_user_id": 333232986, "from_user_id_str": "333232986", "from_user_name": "Max Kalachev", "geo": null, "id": 148758800554393600, "id_str": "148758800554393601", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1647901278/max2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647901278/max2_normal.jpg", "source": "<a href="http://www.slideshare.net/" rel="nofollow">Slideshare</a>", "text": "RT @slideshare: 'Hadoop and Machine Learning' is featured on our homepage. http://t.co/lkuEIFPn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:35:00 +0000", "from_user": "hmuehlburger", "from_user_id": 73705954, "from_user_id_str": "73705954", "from_user_name": "Herbert M\\u00FChlburger", "geo": null, "id": 148758231680950270, "id_str": "148758231680950274", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/967104152/herbert-profil-s_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/967104152/herbert-profil-s_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Check out this presentation : Modeling with Hadoop kdd2011 http://t.co/zVF11qzc via @slideshare", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:32:09 +0000", "from_user": "kirkwy", "from_user_id": 61166763, "from_user_id_str": "61166763", "from_user_name": "Kirk Wylie", "geo": null, "id": 148757513096015870, "id_str": "148757513096015873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1429146846/BricksSmallSquare_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1429146846/BricksSmallSquare_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "RT @cmastication: I have Hadoop AND a red Porsche. I am sooooo overcompensating. HT @ZUrlocker http://t.co/DCfMejxD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:31:53 +0000", "from_user": "JavierLeonRubio", "from_user_id": 229885219, "from_user_id_str": "229885219", "from_user_name": "Javier Le\\u00F3n Rubio", "geo": null, "id": 148757445584486400, "id_str": "148757445584486400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1669463748/jl_warholized_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669463748/jl_warholized_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Facebook timeline uses MySQL, not Hadoop http://t.co/k79Vk74f #dbclass", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:31:00 +0000", "from_user": "mikiobraun", "from_user_id": 14962763, "from_user_id_str": "14962763", "from_user_name": "Mikio L. Braun", "geo": null, "id": 148757223873581060, "id_str": "148757223873581057", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1361898144/me_thinking_291_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1361898144/me_thinking_291_normal.png", "source": "<a href="http://www.slideshare.net/" rel="nofollow">Slideshare</a>", "text": "RT @slideshare: 'Hadoop and Machine Learning' is featured on our homepage. http://t.co/lkuEIFPn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:26:56 +0000", "from_user": "vikasdp", "from_user_id": 152682018, "from_user_id_str": "152682018", "from_user_name": "Vikas Pandya", "geo": null, "id": 148756200798949380, "id_str": "148756200798949376", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1140915733/VP_twitter_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1140915733/VP_twitter_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Introducing hadoop in 20 pages - http://t.co/5l0rTnCN @myen", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:22:28 +0000", "from_user": "jvalleroy", "from_user_id": 90212418, "from_user_id_str": "90212418", "from_user_name": "James Valleroy", "geo": null, "id": 148755077681790980, "id_str": "148755077681790976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @commoncrawl: MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl by @stevesalevan http://t.co/cBa5598M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:19:03 +0000", "from_user": "dimmu", "from_user_id": 9970902, "from_user_id_str": "9970902", "from_user_name": "dimmu", "geo": null, "id": 148754216540839940, "id_str": "148754216540839936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690015389/Photo_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690015389/Photo_1_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "RT @cmastication: I have Hadoop AND a red Porsche. I am sooooo overcompensating. HT @ZUrlocker http://t.co/DCfMejxD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:18:03 +0000", "from_user": "reputa_india", "from_user_id": 265834202, "from_user_id_str": "265834202", "from_user_name": "Reputa India", "geo": null, "id": 148753964165382140, "id_str": "148753964165382145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1283445555/2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1283445555/2_normal.jpg", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "URGENT Requirement : Hiring Hadoop Architect (2+ year contract position) require... http://t.co/ftg7MGUA #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:15:54 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 148753421883809800, "id_str": "148753421883809792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "No love/hat tip from @matkeep for my lead on the MySQL Cluster usage for Hadoop NodeName http://t.co/dhcpeEUA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:13:01 +0000", "from_user": "haiger_cao", "from_user_id": 435595611, "from_user_id_str": "435595611", "from_user_name": "Haiger", "geo": null, "id": 148752697984679940, "id_str": "148752697984679936", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695888000/ForumAttachment_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695888000/ForumAttachment_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u4ECA\\u5929\\u77E5\\u9053\\u4E86\\u9664\\u4E86binlog\\u4E4B\\u5916\\u8FD8\\u6709udf+trigger\\u53EF\\u4EE5\\u5B9E\\u73B0mysql\\u5F80memcached/redis/tt \\u540C\\u6B65\\u6570\\u636E...\\u540C\\u65F6,\\u5B8C\\u6210\\u4E86\\u6211\\u7684\\u7B2C\\u4E00\\u4E2A\\u57FA\\u4E8Ehadoop\\u7684M/R\\u7A0B\\u5E8F...oy~", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:11:32 +0000", "from_user": "AlainDELAFOSSE", "from_user_id": 320645176, "from_user_id_str": "320645176", "from_user_name": "Alain DELAFOSSE", "geo": null, "id": 148752325467582460, "id_str": "148752325467582464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1628537394/273343_543113365_1896220828_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628537394/273343_543113365_1896220828_q_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @stojanovic: Carl Nolan has a blog on using our #Hadoop on #Azure service and its #JavaScript shell for data visualization: http://t.co/qZeEO2EH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 13:11:32 +0000", "from_user": "AlainDELAFOSSE", "from_user_id": 320645176, "from_user_id_str": "320645176", "from_user_name": "Alain DELAFOSSE", "geo": null, "id": 148752325467582460, "id_str": "148752325467582464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1628537394/273343_543113365_1896220828_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628537394/273343_543113365_1896220828_q_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @stojanovic: Carl Nolan has a blog on using our #Hadoop on #Azure service and its #JavaScript shell for data visualization: http://t.co/qZeEO2EH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:05:31 +0000", "from_user": "tguemes", "from_user_id": 23236293, "from_user_id_str": "23236293", "from_user_name": "Celestino G\\u00FCemes", "geo": null, "id": 148750809490931700, "id_str": "148750809490931712", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/394198628/foto_oficial_tinog_a_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/394198628/foto_oficial_tinog_a_400_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "@ignaciobustillo Me alegro que te gusten. Yo me qued\\u00E9 con las ganas de meter alguno que incluyera Hadoop. Ya ser\\u00E1 otro a\\u00F1o. :-)", "to_user": "IgnacioBustillo", "to_user_id": 243145613, "to_user_id_str": "243145613", "to_user_name": "Ignacio Bustillo", "in_reply_to_status_id": 148719140818010100, "in_reply_to_status_id_str": "148719140818010112"}, +{"created_at": "Mon, 19 Dec 2011 13:02:58 +0000", "from_user": "cmastication", "from_user_id": 43186378, "from_user_id_str": "43186378", "from_user_name": "Mister Long", "geo": null, "id": 148750166055329800, "id_str": "148750166055329792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1133817555/croppedHead_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1133817555/croppedHead_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "I have Hadoop AND a red Porsche. I am sooooo overcompensating. HT @ZUrlocker http://t.co/DCfMejxD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:01:52 +0000", "from_user": "sakura_bird1", "from_user_id": 267718166, "from_user_id_str": "267718166", "from_user_name": "HENTAI\\u3055\\u304F\\u3089", "geo": null, "id": 148749893417189380, "id_str": "148749893417189376", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700178653/image_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700178653/image_normal", "source": "<a href="http://www.movatwi.jp" rel="nofollow">\\u30E2\\u30D0\\u30C4\\u30A4 / www.movatwi.jp</a>", "text": "RT @kimukou_26: @sakura_bird1 \\u6614\\u306F\\u305D\\u306E\\u4F5C\\u696D\\u306B\\u51C4\\u3044\\u30B9\\u30FC\\u30D1\\u30B3\\u30F3\\u30D4\\u30E5\\u30FC\\u30BF\\u3092\\u4F7F\\u3063\\u3066\\u9577\\u6642\\u9593\\u3057\\u3066\\u3044\\u307E\\u3057\\u305F\\u304C\\u3001Hadoop\\u7B49\\u306E\\u30AF\\u30E9\\u30A6\\u30C9DB\\u4F7F\\u3048\\u308B\\u3088\\u3046\\u306B\\u306A\\u3063\\u3066\\u30D1\\u30BD\\u30B3\\u30F3\\u6CA2\\u5C71\\u7528\\u610F\\u3059\\u308C\\u3070\\u5206\\u6790\\u51FA\\u6765\\u308B\\u306E\\u306F\\u9B45\\u529B\\u3002\\u7279\\u306BLinux\\u5165\\u308C\\u3089\\u308C\\u306A\\u304F\\u306A\\u308B\\u76F4\\u524D\\u306EPS3\\u3092\\u7C73\\u653F\\u5E9C\\u3084\\u5927\\u5B66\\u3001\\u5317\\u671D\\u9BAE\\u307E\\u3067\\u3082\\u5927\\u91CF\\u306B\\u8CFC\\u5165\\u3057\\u305F\\u8A71\\u3082\\u3042\\u308B\\u304F\\u3089\\u3044", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:59:45 +0000", "from_user": "nemo_kaz", "from_user_id": 6141502, "from_user_id_str": "6141502", "from_user_name": "kazuo nemoto", "geo": null, "id": 148749360665071600, "id_str": "148749360665071616", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/467548592/TLE12_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/467548592/TLE12_normal.jpg", "source": "<a href="http://cheebow.info/chemt/archives/2007/04/twitterwindowst.html" rel="nofollow">Twit for Windows</a>", "text": "\\u4ECA\\u65E5\\u4E00\\u65E5\\u306FManning Publications \\u534A\\u984D\\u3060\\u304B\\u3089Hadoop in Practice \\u4E88\\u7D04\\u3057\\u305F", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:58:27 +0000", "from_user": "fcicq", "from_user_id": 23272777, "from_user_id_str": "23272777", "from_user_name": "fcicq", "geo": null, "id": 148749031441575940, "id_str": "148749031441575936", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/183847467/okite_bg_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/183847467/okite_bg_normal.gif", "source": "<a href="http://www.zusaar.com/" rel="nofollow">Zusaar</a>", "text": "12/20, MapR Architecture http://t.co/L634ODUX / hadoop\\u30A2\\u30C9\\u30D9\\u30F3\\u30C8\\u30AB\\u30EC\\u30F3\\u30C0\\u30FC2011 http://t.co/JG0ki0wo #zusaar", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:56:41 +0000", "from_user": "beyeguy", "from_user_id": 249418488, "from_user_id_str": "249418488", "from_user_name": "Gregory Lancaster", "geo": null, "id": 148748586723717120, "id_str": "148748586723717120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1356580457/MyPicture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1356580457/MyPicture_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "Is Hadoop the new stored procedure\\u00A0? http://t.co/zsbpdFvy via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:54:26 +0000", "from_user": "ruby_U", "from_user_id": 27836117, "from_user_id_str": "27836117", "from_user_name": "\\u308B\\u3073\\u3085", "geo": null, "id": 148748023114117120, "id_str": "148748023114117121", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/585391487/qBqPu0mK.20061024094725_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/585391487/qBqPu0mK.20061024094725_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "CentOS\\u3092\\u6700\\u5C0F\\u30A4\\u30F3\\u30B9\\u30C8\\u30FC\\u30EB\\u3057\\u3066\\u64EC\\u4F3C\\u5206\\u6563hadoop, hbase\\u30BB\\u30C3\\u30C8\\u30A2\\u30C3\\u30D7\\u307E\\u3067\\u7D42\\u308F\\u3063\\u305F\\u30021.3GB\\u5F31\\u6D88\\u8CBB\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:53:05 +0000", "from_user": "beyeguy", "from_user_id": 249418488, "from_user_id_str": "249418488", "from_user_name": "Gregory Lancaster", "geo": null, "id": 148747680208797700, "id_str": "148747680208797696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1356580457/MyPicture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1356580457/MyPicture_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/k5Wv72GB via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:52:06 +0000", "from_user": "beyeguy", "from_user_id": 249418488, "from_user_id_str": "249418488", "from_user_name": "Gregory Lancaster", "geo": null, "id": 148747434154135550, "id_str": "148747434154135552", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1356580457/MyPicture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1356580457/MyPicture_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "Hadoop and Machine Learning http://t.co/OwVIcKod via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:51:45 +0000", "from_user": "kimukou_26", "from_user_id": 127385502, "from_user_id_str": "127385502", "from_user_name": "kimukou_26", "geo": null, "id": 148747347701145600, "id_str": "148747347701145601", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698307192/66.png_groovy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698307192/66.png_groovy_normal.png", "source": "<a href="http://www.movatwi.jp" rel="nofollow">\\u30E2\\u30D0\\u30C4\\u30A4 / www.movatwi.jp</a>", "text": "@sakura_bird1 \\u6614\\u306F\\u305D\\u306E\\u4F5C\\u696D\\u306B\\u51C4\\u3044\\u30B9\\u30FC\\u30D1\\u30B3\\u30F3\\u30D4\\u30E5\\u30FC\\u30BF\\u3092\\u4F7F\\u3063\\u3066\\u9577\\u6642\\u9593\\u3057\\u3066\\u3044\\u307E\\u3057\\u305F\\u304C\\u3001Hadoop\\u7B49\\u306E\\u30AF\\u30E9\\u30A6\\u30C9DB\\u4F7F\\u3048\\u308B\\u3088\\u3046\\u306B\\u306A\\u3063\\u3066\\u30D1\\u30BD\\u30B3\\u30F3\\u6CA2\\u5C71\\u7528\\u610F\\u3059\\u308C\\u3070\\u5206\\u6790\\u51FA\\u6765\\u308B\\u306E\\u306F\\u9B45\\u529B\\u3002\\u7279\\u306BLinux\\u5165\\u308C\\u3089\\u308C\\u306A\\u304F\\u306A\\u308B\\u76F4\\u524D\\u306EPS3\\u3092\\u7C73\\u653F\\u5E9C\\u3084\\u5927\\u5B66\\u3001\\u5317\\u671D\\u9BAE\\u307E\\u3067\\u3082\\u5927\\u91CF\\u306B\\u8CFC\\u5165\\u3057\\u305F\\u8A71\\u3082\\u3042\\u308B\\u304F\\u3089\\u3044", "to_user": "sakura_bird1", "to_user_id": 267718166, "to_user_id_str": "267718166", "to_user_name": "HENTAI\\u3055\\u304F\\u3089", "in_reply_to_status_id": 148743255780114430, "in_reply_to_status_id_str": "148743255780114432"}, +{"created_at": "Mon, 19 Dec 2011 12:51:03 +0000", "from_user": "vishwavikalp", "from_user_id": 83765473, "from_user_id_str": "83765473", "from_user_name": "Vishwavikalp", "geo": null, "id": 148747171603300350, "id_str": "148747171603300352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1258295366/DSC03650_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1258295366/DSC03650_normal.JPG", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Are you a good fit for this job? Java Developer, Hadoop in Bangalore, India http://t.co/J08f8SB1 #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:49:44 +0000", "from_user": "matrix_spear", "from_user_id": 223258531, "from_user_id_str": "223258531", "from_user_name": "matrix_spear", "geo": null, "id": 148746839770939400, "id_str": "148746839770939392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1501257763/matrixdancer_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1501257763/matrixdancer_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "All the latest news on #bigdata #analytics #bi #cloud #hadoop and much more at http://t.co/9f47W8vK #dev #tech #software #microsoft #ibm #hp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:47:39 +0000", "from_user": "Storiq", "from_user_id": 177908353, "from_user_id_str": "177908353", "from_user_name": "Storiq", "geo": null, "id": 148746314774089730, "id_str": "148746314774089728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1101962753/logo-storiq-gdm_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1101962753/logo-storiq-gdm_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#BigData - MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl | CommonCrawl - http://t.co/dN5jTSvV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:47:01 +0000", "from_user": "onodes", "from_user_id": 17942457, "from_user_id_str": "17942457", "from_user_name": "\\u5C0F\\u91CE\\u5BFA\\u5927\\u5730", "geo": null, "id": 148746153754755070, "id_str": "148746153754755073", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1550001772/__________2011-09-19_22.05.55_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1550001772/__________2011-09-19_22.05.55_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@yume36_pow_phon @onodes3 \\u30AC\\u30E9\\u30CAHadoop\\u5BFE\\u5FDC\\u3057\\u307E\\u3057\\u305F\\uFF0E", "to_user": "yume36_pow_phon", "to_user_id": 99524470, "to_user_id_str": "99524470", "to_user_name": "\\u305D\\u3089\\u3061", "in_reply_to_status_id": 148743040264175600, "in_reply_to_status_id_str": "148743040264175617"}, +{"created_at": "Mon, 19 Dec 2011 12:45:11 +0000", "from_user": "phenxtech", "from_user_id": 286808516, "from_user_id_str": "286808516", "from_user_name": "Phoenix Technologies", "geo": null, "id": 148745692180000770, "id_str": "148745692180000769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1347896079/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1347896079/logo_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "The Grill: Doug Cutting: Hadoop creator Doug Cutting says he expects the surge in interest in the big-data... http://t.co/YezwH1Tb #ATLANTA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:44:29 +0000", "from_user": "waxzce", "from_user_id": 29678151, "from_user_id_str": "29678151", "from_user_name": "Quentin ADAM", "geo": null, "id": 148745515268440060, "id_str": "148745515268440064", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1189500385/IMG_5569_-_carre_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1189500385/IMG_5569_-_carre_normal.JPG", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @vhe74: RT @felixaverlant: Introducing #Hadoop in 20 pages http://t.co/XLnU5ldl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:44:06 +0000", "from_user": "SomercoResearch", "from_user_id": 204833926, "from_user_id_str": "204833926", "from_user_name": "SOMERCO", "geo": null, "id": 148745420141625340, "id_str": "148745420141625344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1235726269/picture-3_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1235726269/picture-3_normal.gif", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @leejkeller: Slideshare: Hadoop and Machine Learning. Hint: Constraints Drive Innovation.\\rhttp://t.co/iVkG6YTd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:43:48 +0000", "from_user": "leejkeller", "from_user_id": 152311120, "from_user_id_str": "152311120", "from_user_name": "Lee J. Keller", "geo": null, "id": 148745345785020400, "id_str": "148745345785020416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/962375993/TimKavi_m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/962375993/TimKavi_m_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Slideshare: Hadoop and Machine Learning. Hint: Constraints Drive Innovation.\\rhttp://t.co/iVkG6YTd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:42:28 +0000", "from_user": "MarilynMoux", "from_user_id": 20026961, "from_user_id_str": "20026961", "from_user_name": "Marilyn Moux", "geo": null, "id": 148745010173579260, "id_str": "148745010173579265", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1312851382/marilyn_photo_2011_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312851382/marilyn_photo_2011_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Microsoft Tries Hadoop on Azure @CloudExpo #Cloud #CloudExpo #BigData", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:40:23 +0000", "from_user": "rajeshravim", "from_user_id": 304292121, "from_user_id_str": "304292121", "from_user_name": "Rajesh Manikka", "geo": null, "id": 148744483536777200, "id_str": "148744483536777216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1366889772/Rajesh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1366889772/Rajesh_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Successful with Apache Hadoop + MongoDB + Python..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:39:13 +0000", "from_user": "rentacoderuk", "from_user_id": 253776096, "from_user_id_str": "253776096", "from_user_name": "Susan Walker", "geo": null, "id": 148744192502403070, "id_str": "148744192502403073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1247546608/rentcoder_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1247546608/rentcoder_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Extracting data using Hadoop, MapReduce and Amazon ...--By MarkTheGlobe on Dec 19--Max Bid: Open to fair suggest... http://t.co/zFmr0JGd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:39:13 +0000", "from_user": "NumbersWingoUK", "from_user_id": 265621707, "from_user_id_str": "265621707", "from_user_name": "Amber Wingo", "geo": null, "id": 148744190489141250, "id_str": "148744190489141248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1271551297/or_bf463282119401601829254_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1271551297/or_bf463282119401601829254_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Extracting data using Hadoop, MapReduce and Amazon ...--By MarkTheGlobe on Dec 19--Max Bid: Open to fair suggest... http://t.co/HxECT4vk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:38:15 +0000", "from_user": "EnythengTools", "from_user_id": 387389937, "from_user_id_str": "387389937", "from_user_name": "Enytheng Tools", "geo": null, "id": 148743948528123900, "id_str": "148743948528123904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1579071639/ENYTHENG_NEW_SLOGAN_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1579071639/ENYTHENG_NEW_SLOGAN_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Scot Finnie: Getting a running start on 2012 in IT: Hadoop, the software framework and file system that many bel... http://t.co/Q5NxJcUK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:34:38 +0000", "from_user": "yume36_pow_phon", "from_user_id": 99524470, "from_user_id_str": "99524470", "from_user_name": "\\u305D\\u3089\\u3061", "geo": null, "id": 148743040264175600, "id_str": "148743040264175617", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1248646071/___________normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1248646071/___________normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@onodes3 \\u767D\\u9D6C\\u306FCore2Quad\\u306A\\u3093\\u3067\\u3059\\u3051\\u3069, \\u30AC\\u30E9\\u30CA\\u306FCore2Duo\\u306A\\u3093\\u3067\\u3059\\u3088...\\u3002\\u30B9\\u30EC\\u30C3\\u30C9\\u30D7\\u30ED\\u30B0\\u30E9\\u30DF\\u30F3\\u30B0\\u3057\\u3066\\u308B\\u3093\\u3067, \\u30B3\\u30A2\\u306E\\u591A\\u3044PC\\u3092\\u9078\\u3093\\u3067\\u4F7F\\u3063\\u3066\\u307E\\u3059\\u3002Hadoop\\u3067\\u3082\\u5165\\u308C\\u3066\\u304F\\u308C\\u308B\\u3068\\u3042\\u308A\\u304C\\u305F\\u3044\\u3093\\u3067\\u3059\\u3051\\u3069orz", "to_user": "onodes3", "to_user_id": 311383551, "to_user_id_str": "311383551", "to_user_name": "onodes\\u3055\\u3093", "in_reply_to_status_id": 148742281401339900, "in_reply_to_status_id_str": "148742281401339904"}, +{"created_at": "Mon, 19 Dec 2011 12:33:57 +0000", "from_user": "BabakGhazvehi", "from_user_id": 277256837, "from_user_id_str": "277256837", "from_user_name": "vWorker", "geo": null, "id": 148742866984910850, "id_str": "148742866984910848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#vWorker Extracting data using Hadoop, MapReduce and Amazon ...--By MarkTheGlobe on Dec 19--Max Bid: Ope... http://t.co/sujLzpGz #scrape", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:33:40 +0000", "from_user": "amirjainu", "from_user_id": 339034825, "from_user_id_str": "339034825", "from_user_name": "Amir Jain", "geo": null, "id": 148742793408417800, "id_str": "148742793408417793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Three Apache Hadoop On Windows TechNet Wiki Articles - Home ...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:31:42 +0000", "from_user": "bassettwood", "from_user_id": 215746003, "from_user_id_str": "215746003", "from_user_name": "Andrew Williams", "geo": null, "id": 148742300032446460, "id_str": "148742300032446464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1673978146/Photo_18_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673978146/Photo_18_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @peteskomoroch: How to quickly process 40TB of data from Common Crawl using Hadoop & Amazon EC2 http://t.co/yum3VZyF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:29:36 +0000", "from_user": "BigDataBlogs", "from_user_id": 408520849, "from_user_id_str": "408520849", "from_user_name": "BigData Blogs", "geo": null, "id": 148741770275061760, "id_str": "148741770275061760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1645240023/CloudBigData-300x239-resized-600_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645240023/CloudBigData-300x239-resized-600_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft polishes Azure, but are users convinced?: Microsoft also detailed an Apache Hadoop-bas... http://t.co/FBqtMU2j #bigdata #blogs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:29:35 +0000", "from_user": "vhe74", "from_user_id": 11751012, "from_user_id_str": "11751012", "from_user_name": "Vincent Heuschling", "geo": null, "id": 148741769041944580, "id_str": "148741769041944576", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1081103719/Avatar-vhe-240_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1081103719/Avatar-vhe-240_bigger_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @felixaverlant: Introducing #Hadoop in 20 pages http://t.co/XLnU5ldl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:27:08 +0000", "from_user": "mongodb_news", "from_user_id": 218710958, "from_user_id_str": "218710958", "from_user_name": "MongoDb", "geo": null, "id": 148741152760266750, "id_str": "148741152760266753", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1173473945/imgres-1_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1173473945/imgres-1_normal.jpeg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @brucedkyle: New Azure Release Supports Open Source Libraries Node.js, MongoDB, Hadoop, Solr, Memcached http://t.co/WKBsj1lW #MSDEV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:11:09 +0000", "from_user": "hnfirehose", "from_user_id": 213117318, "from_user_id_str": "213117318", "from_user_name": "HN Firehose", "geo": null, "id": 148737130343051260, "id_str": "148737130343051266", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Open Source - and Commercial?: http://t.co/IjFrBnH9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:08:53 +0000", "from_user": "dieswaytoofast", "from_user_id": 312604736, "from_user_id_str": "312604736", "from_user_name": "Mahesh P-Subramanya", "geo": null, "id": 148736556574851070, "id_str": "148736556574851072", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1572400317/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572400317/Untitled_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "#hadoop on @commoncrawl - http://t.co/SBZ1vOuQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:07:27 +0000", "from_user": "felixaverlant", "from_user_id": 26585636, "from_user_id_str": "26585636", "from_user_name": "F\\u00E9lix Averlant", "geo": null, "id": 148736196485464060, "id_str": "148736196485464064", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1155182036/1f31ece4-b0be-4818-80df-6e66bfadd721_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1155182036/1f31ece4-b0be-4818-80df-6e66bfadd721_normal.png", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "Introducing #Hadoop in 20 pages http://t.co/84iXfOMc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:03:23 +0000", "from_user": "shiumachi", "from_user_id": 11370182, "from_user_id_str": "11370182", "from_user_name": "Sho Shimauchi", "geo": null, "id": 148735173599559680, "id_str": "148735173599559680", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1112990537/2006-06-04_002_bigger_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1112990537/2006-06-04_002_bigger_normal.png", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @tetendo: hadoop \\u306E\\u8A8D\\u5B9A\\u8CC7\\u683C\\u306A\\u3093\\u3066\\u3042\\u308B\\u3093\\u3060\\u306D\\u3002\\u3042\\u3068\\u3001\\u30C8\\u30EC\\u30FC\\u30CB\\u30F3\\u30B0\\u3082\\u3002\\u4ED5\\u4E8B\\u3067\\u5FC5\\u8981\\u304C\\u751F\\u3058\\u305F\\u3089\\u4E0A\\u53F8\\u306B\\u304A\\u9858\\u3044\\u3057\\u3066\\u307F\\u3088\\u3046\\u304B\\u306Aw http://t.co/cZxeWCd8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:02:44 +0000", "from_user": "phaneeshn", "from_user_id": 78000743, "from_user_id_str": "78000743", "from_user_name": "Phaneesh Nagaraja", "geo": null, "id": 148735010147532800, "id_str": "148735010147532800", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/789289885/0383_guitarist_heavy_metal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/789289885/0383_guitarist_heavy_metal_normal.jpg", "source": "<a href="http://www.dzone.com" rel="nofollow">DZone.com</a>", "text": "RT @DZone: Introducing hadoop in 20 pages - http://t.co/ejh1aKju - @DZone Big Link by adij", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:02:13 +0000", "from_user": "DefineMeMore", "from_user_id": 438820963, "from_user_id_str": "438820963", "from_user_name": "DefineMeMore", "geo": null, "id": 148734882066083840, "id_str": "148734882066083840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697553438/xboxlogo_normal.jpg", "profile_image_url_https": null, "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Grill: Doug Cutting: Microsoft, Oracle, IBM and other big vendors have all begun doing things with Hadoop th... http://t.co/dvFAOGIe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:58:07 +0000", "from_user": "lichtsoft", "from_user_id": 176360046, "from_user_id_str": "176360046", "from_user_name": "Licht Soft", "geo": null, "id": 148733847092203520, "id_str": "148733847092203520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1101057221/Untitled-1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1101057221/Untitled-1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#technology The Grill: Doug Cutting: Hadoop creator Doug Cutting says he expects the surge in interes... http://t.co/a4OzUXzh #lichtsoft", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:57:22 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 148733658033950720, "id_str": "148733658033950720", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "hbase lzo fatal crash - MapR and Apache Hadoop http://t.co/HKz4A5iq #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:48:07 +0000", "from_user": "DGM885", "from_user_id": 14196638, "from_user_id_str": "14196638", "from_user_name": "Daniel G Murray", "geo": null, "id": 148731333118660600, "id_str": "148731333118660608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/425008101/DanMSmallBlogPhoto_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/425008101/DanMSmallBlogPhoto_normal.JPG", "source": "Zite Personalized Magazine", "text": "Using Hadoop on Azure JS Console for Data Visualizations http://t.co/7JlM1200 via @zite Times seem a little sluggish.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:40:50 +0000", "from_user": "geisbruch", "from_user_id": 93495861, "from_user_id_str": "93495861", "from_user_name": "Gabriel Eisbruch", "geo": null, "id": 148729498865631230, "id_str": "148729498865631232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1642849036/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642849036/twitter_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@jakajancar We are using dt=YYYY-MM-dd HH:mm:ss on a hadoop cluster and runs exelent with the adv you can use the #hive time functions", "to_user": "jakajancar", "to_user_id": 14741919, "to_user_id_str": "14741919", "to_user_name": "Jaka Jancar", "in_reply_to_status_id": 148709272832839680, "in_reply_to_status_id_str": "148709272832839681"}, +{"created_at": "Mon, 19 Dec 2011 11:39:58 +0000", "from_user": "wandering_char", "from_user_id": 89620772, "from_user_id_str": "89620772", "from_user_name": "\\u3055\\u3059\\u3089\\u3044\\u306E\\u30C1\\u30E3\\u30E9", "geo": null, "id": 148729281848152060, "id_str": "148729281848152064", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1465198019/V6010008_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1465198019/V6010008_normal.JPG", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "\\u3053\\u3046\\u3044\\u3046\\u7D71\\u8A08\\u306E\\u8A08\\u7B97\\u306FHadoop\\u306E\\u5F97\\u610F\\u5206\\u91CE\\u3060\\u306A\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:37:53 +0000", "from_user": "minky0", "from_user_id": 95861410, "from_user_id_str": "95861410", "from_user_name": "\\u307F \\u2122", "geo": null, "id": 148728757463683070, "id_str": "148728757463683072", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1581372018/SD-KAYO_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1581372018/SD-KAYO_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "\\u3059\\u3044\\u307E\\u305B\\u3093\\u3002\\u3000\\u30AB\\u30FC\\u30C9\\u304C\\u9045\\u308C\\u3066\\u3066orz QT @tmae: \\u53CC\\u516D\\u306E\\u5165\\u7A3F\\u304C\\u7D42\\u308F\\u3063\\u305F\\u4ECA\\u3001\\u6B21\\u306F\\u3053\\u306E\\u30B3\\u30D4\\u30FC\\u672C\\u3092\\u2026 QT @sechiro: \\u4ECA\\u65E5\\u306F\\u300C\\u767E\\u53F0\\u306EHadoop\\u30AF\\u30E9\\u30B9\\u30BF\\u300D\\u3092\\u300C\\u767E\\u5408\\u306EHadoop\\u30AF\\u30E9\\u30B9\\u30BF\\u300D\\u306B\\u7A7A\\u76EE\\u3057\\u305F\\u3051\\u3069\\u3001\\u308F\\u305F\\u3057\\u306F\\u5143\\u6C17\\u3067\\u3059\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:35:54 +0000", "from_user": "tmae", "from_user_id": 14811233, "from_user_id_str": "14811233", "from_user_name": "tmae", "geo": null, "id": 148728256143691780, "id_str": "148728256143691776", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1645930857/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645930857/image_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "\\u53CC\\u516D\\u306E\\u5165\\u7A3F\\u304C\\u7D42\\u308F\\u3063\\u305F\\u4ECA\\u3001\\u6B21\\u306F\\u3053\\u306E\\u30B3\\u30D4\\u30FC\\u672C\\u3092\\u2026 QT @sechiro: \\u4ECA\\u65E5\\u306F\\u300C\\u767E\\u53F0\\u306EHadoop\\u30AF\\u30E9\\u30B9\\u30BF\\u300D\\u3092\\u300C\\u767E\\u5408\\u306EHadoop\\u30AF\\u30E9\\u30B9\\u30BF\\u300D\\u306B\\u7A7A\\u76EE\\u3057\\u305F\\u3051\\u3069\\u3001\\u308F\\u305F\\u3057\\u306F\\u5143\\u6C17\\u3067\\u3059\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:35:01 +0000", "from_user": "steveify", "from_user_id": 41228516, "from_user_id_str": "41228516", "from_user_name": "Steve Claridge", "geo": null, "id": 148728034818654200, "id_str": "148728034818654208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1541178354/saphirs2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541178354/saphirs2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @substandardnerd: MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/NMijxDbr 40TB of data to play with. Cool!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:32:39 +0000", "from_user": "ekrTech", "from_user_id": 190163317, "from_user_id_str": "190163317", "from_user_name": "ekrTech", "geo": null, "id": 148727438875176960, "id_str": "148727438875176961", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1548191896/ekrtech_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1548191896/ekrtech_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Grill: Doug Cutting: Hadoop creator Doug Cutting says he expects the surge in interest in the big-data stora... http://t.co/2nZnU16T", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:25:23 +0000", "from_user": "fixmypcng", "from_user_id": 244102092, "from_user_id_str": "244102092", "from_user_name": "FIXMYPC ", "geo": null, "id": 148725610213150720, "id_str": "148725610213150720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700971621/fixmas_dp_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700971621/fixmas_dp_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Grill: Doug Cutting: Hadoop creator Doug Cutting says he expects the surge in interest in the big-data stora... http://t.co/rCWxuTtZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:17:04 +0000", "from_user": "sechiro", "from_user_id": 69270391, "from_user_id_str": "69270391", "from_user_name": "sechiro\\uFF20\\u53CC\\u516D\\u4F5C\\u6210\\u4E2D\\uFF01", "geo": null, "id": 148723517834276860, "id_str": "148723517834276864", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1468995057/_____normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1468995057/_____normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "\\u6F22\\u5B57\\u3067\\u30AF\\u30E9\\u30B9\\u30BF\\u3063\\u3066\\u7D9A\\u3044\\u3066\\u305F\\u304B\\u3089\\u3001\\u767E\\u5408\\u30AF\\u30E9\\u30B9\\u30BF\\u3060\\u3068\\u3070\\u304B\\u308A\\u2026 RT @ume2uguisu: \\u767E\\u5408\\u306EHadoop\\u30AF\\u30E9\\u30B9\\u30BF\\u8D85\\u3044\\u3044w RT @sechiro: \\u4ECA\\u65E5\\u306F\\u300C\\u767E\\u53F0\\u306EHadoop\\u30AF\\u30E9\\u30B9\\u30BF\\u300D\\u3092\\u300C\\u767E\\u5408\\u306EHadoop\\u30AF\\u30E9\\u30B9\\u30BF\\u300D\\u306B\\u7A7A\\u76EE\\u3057\\u305F\\u3051\\u3069\\u3001\\u308F\\u305F\\u3057\\u306F\\u5143\\u6C17\\u3067\\u3059\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:15:35 +0000", "from_user": "tetendo", "from_user_id": 76276603, "from_user_id_str": "76276603", "from_user_name": "tetendo", "geo": null, "id": 148723146508353540, "id_str": "148723146508353536", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1465733177/taiyan_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1465733177/taiyan_normal.png", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "hadoop \\u306E\\u8A8D\\u5B9A\\u8CC7\\u683C\\u306A\\u3093\\u3066\\u3042\\u308B\\u3093\\u3060\\u306D\\u3002\\u3042\\u3068\\u3001\\u30C8\\u30EC\\u30FC\\u30CB\\u30F3\\u30B0\\u3082\\u3002\\u4ED5\\u4E8B\\u3067\\u5FC5\\u8981\\u304C\\u751F\\u3058\\u305F\\u3089\\u4E0A\\u53F8\\u306B\\u304A\\u9858\\u3044\\u3057\\u3066\\u307F\\u3088\\u3046\\u304B\\u306Aw http://t.co/cZxeWCd8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:09:40 +0000", "from_user": "ume2uguisu", "from_user_id": 47900409, "from_user_id_str": "47900409", "from_user_name": "\\u3046\\u3050\\u3044\\u3059", "geo": null, "id": 148721654955114500, "id_str": "148721654955114497", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/630879416/P8251992_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/630879416/P8251992_normal.jpg", "source": "<a href="http://www.soicha.com" rel="nofollow">SOICHA</a>", "text": "\\u767E\\u5408\\u306EHadoop\\u30AF\\u30E9\\u30B9\\u30BF\\u8D85\\u3044\\u3044w RT @sechiro: \\u4ECA\\u65E5\\u306F\\u300C\\u767E\\u53F0\\u306EHadoop\\u30AF\\u30E9\\u30B9\\u30BF\\u300D\\u3092\\u300C\\u767E\\u5408\\u306EHadoop\\u30AF\\u30E9\\u30B9\\u30BF\\u300D\\u306B\\u7A7A\\u76EE\\u3057\\u305F\\u3051\\u3069\\u3001\\u308F\\u305F\\u3057\\u306F\\u5143\\u6C17\\u3067\\u3059\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:08:43 +0000", "from_user": "sweaterrr", "from_user_id": 128584753, "from_user_id_str": "128584753", "from_user_name": "\\uC774\\uC815\\uADDC, Jungkyu Lee", "geo": null, "id": 148721417511387140, "id_str": "148721417511387136", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1407757834/____normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1407757834/____normal.png", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "RT @mndoci: Hadoop and Pig at LinkedIn SNA http://t.co/kxSuZJDv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:07:40 +0000", "from_user": "alex_knorr", "from_user_id": 70223223, "from_user_id_str": "70223223", "from_user_name": "alexander_knorr", "geo": null, "id": 148721150661369860, "id_str": "148721150661369857", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/485631635/mypictr_140x185_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/485631635/mypictr_140x185_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Java Engineer - Java, Map/Reduce, Spring, MySQL, Hadoop, NoSQL - monster: CA-San Francisco, CyberCoders - Be Sel... http://t.co/7mLruBJ6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:06:58 +0000", "from_user": "sujoy_mitra", "from_user_id": 118740504, "from_user_id_str": "118740504", "from_user_name": "Sujoy Mitra", "geo": null, "id": 148720976337702900, "id_str": "148720976337702912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "Apache Mahout on top of Hadoop Cluster", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:06:08 +0000", "from_user": "ryonext", "from_user_id": 60238464, "from_user_id_str": "60238464", "from_user_name": "\\u3057\\u3089\\u304A\\u3062", "geo": null, "id": 148720765443907600, "id_str": "148720765443907584", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696058153/icon2012_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696058153/icon2012_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @sechiro: \\u4ECA\\u65E5\\u306F\\u300C\\u767E\\u53F0\\u306EHadoop\\u30AF\\u30E9\\u30B9\\u30BF\\u300D\\u3092\\u300C\\u767E\\u5408\\u306EHadoop\\u30AF\\u30E9\\u30B9\\u30BF\\u300D\\u306B\\u7A7A\\u76EE\\u3057\\u305F\\u3051\\u3069\\u3001\\u308F\\u305F\\u3057\\u306F\\u5143\\u6C17\\u3067\\u3059\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:04:21 +0000", "from_user": "sechiro", "from_user_id": 69270391, "from_user_id_str": "69270391", "from_user_name": "sechiro\\uFF20\\u53CC\\u516D\\u4F5C\\u6210\\u4E2D\\uFF01", "geo": null, "id": 148720316145860600, "id_str": "148720316145860608", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1468995057/_____normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1468995057/_____normal.png", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "RT @shiumachi: @sechiro \\u3053\\u3044\\u3064\\u3067\\u3044\\u304F\\u3089\\u3067\\u3082\\u5984\\u60F3\\u3057\\u3066\\u304F\\u3060\\u3055\\u3044 https://t.co/DHb5gNNk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:04:02 +0000", "from_user": "substandardnerd", "from_user_id": 141902310, "from_user_id_str": "141902310", "from_user_name": "Substandard Nerd", "geo": null, "id": 148720237490081800, "id_str": "148720237490081792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1094020241/2ebeca67-7c0d-4264-b454-9957921c2b6e_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1094020241/2ebeca67-7c0d-4264-b454-9957921c2b6e_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/NMijxDbr 40TB of data to play with. Cool!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:03:21 +0000", "from_user": "masteredmachine", "from_user_id": 327773995, "from_user_id_str": "327773995", "from_user_name": "masterthemachine", "geo": null, "id": 148720066656083970, "id_str": "148720066656083968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1454538127/Avatar-Don-Robot_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1454538127/Avatar-Don-Robot_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Grill: Doug Cutting: Hadoop creator Doug Cutting says he expects the surge in interest in the big-data stora... http://t.co/HffvBkXK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:02:48 +0000", "from_user": "show_no", "from_user_id": 16468453, "from_user_id_str": "16468453", "from_user_name": "show_no", "geo": null, "id": 148719926222397440, "id_str": "148719926222397441", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/65163136/1084964_98293818_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/65163136/1084964_98293818_normal.jpg", "source": "<a href="http://www.soicha.com" rel="nofollow">SOICHA</a>", "text": "Hadoop developer\\u3063\\u3066\\u8CC7\\u683C\\u3042\\u308B\\u3093\\u3060", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:00:23 +0000", "from_user": "sechiro", "from_user_id": 69270391, "from_user_id_str": "69270391", "from_user_name": "sechiro\\uFF20\\u53CC\\u516D\\u4F5C\\u6210\\u4E2D\\uFF01", "geo": null, "id": 148719321068208130, "id_str": "148719321068208128", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1468995057/_____normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1468995057/_____normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "\\u4ECA\\u65E5\\u306F\\u300C\\u767E\\u53F0\\u306EHadoop\\u30AF\\u30E9\\u30B9\\u30BF\\u300D\\u3092\\u300C\\u767E\\u5408\\u306EHadoop\\u30AF\\u30E9\\u30B9\\u30BF\\u300D\\u306B\\u7A7A\\u76EE\\u3057\\u305F\\u3051\\u3069\\u3001\\u308F\\u305F\\u3057\\u306F\\u5143\\u6C17\\u3067\\u3059\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:00:02 +0000", "from_user": "bryangrenn", "from_user_id": 222355429, "from_user_id_str": "222355429", "from_user_name": "bryan grenn", "geo": null, "id": 148719229993099260, "id_str": "148719229993099265", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1350391280/facebook_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1350391280/facebook_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "#hadoop #bigdata #calxeda #bigdataappliance #exadata #exalytics They all tie together. http://t.co/sFpUkVEZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:53:19 +0000", "from_user": "ashwinhm", "from_user_id": 67529042, "from_user_id_str": "67529042", "from_user_name": "Ashwin H M", "geo": null, "id": 148717541504712700, "id_str": "148717541504712704", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "I'm hiring! Hadoop/MapReduce Senior Staff Software E at Motorola Mobility - Bengaluru Area, India #jobs http://t.co/rO4wb5fw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:50:17 +0000", "from_user": "shiumachi", "from_user_id": 11370182, "from_user_id_str": "11370182", "from_user_name": "Sho Shimauchi", "geo": null, "id": 148716777621291000, "id_str": "148716777621291008", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1112990537/2006-06-04_002_bigger_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1112990537/2006-06-04_002_bigger_normal.png", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "\\u201C\\u6700\\u3082\\u901F\\u304F Hadoop \\u74B0\\u5883\\u3092\\u624B\\u306B\\u5165\\u308C\\u308B\\u65B9\\u6CD5 - Elliptium\\u201D http://t.co/JirHBq0z", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:49:38 +0000", "from_user": "shiumachi", "from_user_id": 11370182, "from_user_id_str": "11370182", "from_user_name": "Sho Shimauchi", "geo": null, "id": 148716613028429820, "id_str": "148716613028429824", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1112990537/2006-06-04_002_bigger_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1112990537/2006-06-04_002_bigger_normal.png", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "\\u201C\\u30BF\\u30E0\\u30BF\\u30E0\\u306E\\u65E5\\u8A18 - Hadoop\\u30A2\\u30C9\\u30D9\\u30F3\\u30C8\\u30AB\\u30EC\\u30F3\\u30C0\\u30FC2011 17\\u65E5\\u76EE - Hive 0.8 \\u306B\\u3064\\u3044\\u3066 -\\u201D http://t.co/S2FeJKh4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:48:11 +0000", "from_user": "hamburger_kid", "from_user_id": 71555930, "from_user_id_str": "71555930", "from_user_name": "Mitsuharu Hamba", "geo": null, "id": 148716247553552400, "id_str": "148716247553552384", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1290184319/hamburgerkid_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1290184319/hamburgerkid_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "RT @wyukawa: \\u7B2C3\\u7248\\u3067\\u308B\\u306E\\u304B\\uFF1EHadoop: The Definitive Guide, 3rd Edition\\u00A0-\\u00A0O'Reilly Media http://t.co/qRQN2aZ5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:35:19 +0000", "from_user": "codemonkeyism", "from_user_id": 17334287, "from_user_id_str": "17334287", "from_user_name": "Stephan Schmidt", "geo": null, "id": 148713010511355900, "id_str": "148713010511355904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/289074160/Avatar2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/289074160/Avatar2_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@say_hello_je RabbitMQ, Hadoop and Mahout. I already have so many others +g+", "to_user": "say_hello_je", "to_user_id": 47162706, "to_user_id_str": "47162706", "to_user_name": "Johannes Erhardt", "in_reply_to_status_id": 148707971231256580, "in_reply_to_status_id_str": "148707971231256576"}, +{"created_at": "Mon, 19 Dec 2011 10:32:26 +0000", "from_user": "afraarmani", "from_user_id": 151411523, "from_user_id_str": "151411523", "from_user_name": "c\\u2215\\u0334\\u0196fr\\u03B1 bocil's", "geo": null, "id": 148712284083077120, "id_str": "148712284083077120", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701606278/387858_1669875523686_1741311492_938508_88769472_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701606278/387858_1669875523686_1741311492_938508_88769472_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @kernepyftf3: @afraarmani http://t.co/Hju02eSD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:25:05 +0000", "from_user": "Matchtech_BI", "from_user_id": 125520610, "from_user_id_str": "125520610", "from_user_name": "Matchtech BI", "geo": null, "id": 148710436571856900, "id_str": "148710436571856896", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/825309103/m_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/825309103/m_normal.gif", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @strataconf: Five Big Data predictions for 2012 http://t.co/aYOJsix9 via @radar #bigdata #visualization #hadoop #MTGplc #BI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:21:08 +0000", "from_user": "emilio_dangelo", "from_user_id": 20760677, "from_user_id_str": "20760677", "from_user_name": "Emilio D'Angelo", "geo": null, "id": 148709443675238400, "id_str": "148709443675238402", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/77886694/avatarpic-l_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/77886694/avatarpic-l_normal.png", "source": "<a href="http://explore.live.com/windows-live-writer" rel="nofollow">Windows Live Writer</a>", "text": "RT @TheCloudPilot: New blog post: http://t.co/T3PBeXco - Hadoop on Azure CTP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:20:28 +0000", "from_user": "jakajancar", "from_user_id": 14741919, "from_user_id_str": "14741919", "from_user_name": "Jaka Jancar", "geo": null, "id": 148709272832839680, "id_str": "148709272832839681", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1240595704/egg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1240595704/egg_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Hive on S3 partitioning: /d=yyyy-mm-dd/t=hh-mm/ or /dt=yyyy-mm-dd-hh-mm/? Any suggestions? #hadoop #hive @andraz? :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:20:17 +0000", "from_user": "stackfeed", "from_user_id": 237310237, "from_user_id_str": "237310237", "from_user_name": "StackOverflow", "geo": null, "id": 148709228377411600, "id_str": "148709228377411584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Weird formatting issue in hadoop map/reduce program in java: I have a csv file with following sample records.\\n\\n|... http://t.co/mkd2vKzh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:17:42 +0000", "from_user": "skynapse", "from_user_id": 105657998, "from_user_id_str": "105657998", "from_user_name": "Prasanna", "geo": null, "id": 148708576867778560, "id_str": "148708576867778560", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1520106918/DSC_0510_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1520106918/DSC_0510_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "#Microsoft Tries #Hadoop on #Azure | #Cloud Computing Journal: http://t.co/K2INJCgO #cloudcomputing #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:16:20 +0000", "from_user": "TheCloudPilot", "from_user_id": 388486783, "from_user_id_str": "388486783", "from_user_name": "The Cloud Pilot", "geo": null, "id": 148708232855171070, "id_str": "148708232855171072", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1583013997/CloudPowerLogo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583013997/CloudPowerLogo_normal.png", "source": "<a href="http://explore.live.com/windows-live-writer" rel="nofollow">Windows Live Writer</a>", "text": "New blog post: http://t.co/T3PBeXco - Hadoop on Azure CTP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:13:07 +0000", "from_user": "dmcabrera", "from_user_id": 13927072, "from_user_id_str": "13927072", "from_user_name": "dmcabrera", "geo": null, "id": 148707424730230800, "id_str": "148707424730230784", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1192808870/MC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1192808870/MC_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"@DZone: Introducing hadoop in 20 pages - http://t.co/ln0mDbji - @DZone Big Link by adij\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:05:26 +0000", "from_user": "grosdim", "from_user_id": 69544862, "from_user_id_str": "69544862", "from_user_name": "Dimitri Charles", "geo": null, "id": 148705492603125760, "id_str": "148705492603125760", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1491306496/prof_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1491306496/prof_normal.jpeg", "source": "<a href="http://www.dzone.com" rel="nofollow">DZone.com</a>", "text": "RT @DZone: Introducing hadoop in 20 pages - http://t.co/ejh1aKju - @DZone Big Link by adij", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:03:11 +0000", "from_user": "stackfeed", "from_user_id": 237310237, "from_user_id_str": "237310237", "from_user_name": "StackOverflow", "geo": null, "id": 148704925122183170, "id_str": "148704925122183168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hbase development help any tool to write MR jobs: Just like we have Karmasphere for Hadoop MR jobs eclipse and N... http://t.co/JmACMp7r", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:01:12 +0000", "from_user": "pcis", "from_user_id": 17786911, "from_user_id_str": "17786911", "from_user_name": "PCIS", "geo": null, "id": 148704427468001280, "id_str": "148704427468001280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/507376974/pcis_yellow_2.jpeg_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/507376974/pcis_yellow_2.jpeg_normal.gif", "source": "<a href="http://www.prosyna.com" rel="nofollow">Prosyna</a>", "text": "#cloud Microsoft Tries Hadoop on Azure | Cloud Computing Journal - Maureen O'Gara the most read technology repo ... http://t.co/ApUJDCRp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:55:03 +0000", "from_user": "MassimoMorelli", "from_user_id": 2879881, "from_user_id_str": "2879881", "from_user_name": "Massimo Morelli", "geo": null, "id": 148702876460527600, "id_str": "148702876460527616", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/53961481/face-max-02_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/53961481/face-max-02_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Zero to Hadoop in five minutes: http://t.co/sC2mznYu (http://t.co/PL0JVKIA)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:49:58 +0000", "from_user": "marcusborba", "from_user_id": 18068926, "from_user_id_str": "18068926", "from_user_name": "Marcus Borba", "geo": null, "id": 148701597248131070, "id_str": "148701597248131072", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/423471047/MarcusBorba_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/423471047/MarcusBorba_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jenstirrup: RT @strataconf Five Big Data predictions for 2012 http://t.co/ZC2JTilR via @radar #bigdata #visualization #hadoop << Interesting Read", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:40:34 +0000", "from_user": "florenceMAHON", "from_user_id": 83641731, "from_user_id_str": "83641731", "from_user_name": "Florence de Monaghan", "geo": null, "id": 148699233111904260, "id_str": "148699233111904256", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1045106590/soir_e_agence_i_e_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1045106590/soir_e_agence_i_e_7_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @AlainClapaud: #Microsoft baisse les prix d'Azure, augmente sa capacit\\u00E9 et l'ouvre \\u00E0 l'#OpenSource | arsTechnica http://t.co/6w5hLJbx (RT @dbmoore) #Cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:35:23 +0000", "from_user": "yamanetoshi", "from_user_id": 1081991, "from_user_id_str": "1081991", "from_user_name": "Yamane Toshiaki", "geo": null, "id": 148697928515592200, "id_str": "148697928515592192", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/54576135/glider_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/54576135/glider_normal.png", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "\\u201CIntroducing hadoop in 20 pages.\\u201D http://t.co/eqDlX1Yb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:31:56 +0000", "from_user": "wrifster", "from_user_id": 15505337, "from_user_id_str": "15505337", "from_user_name": "Arif Rajwani", "geo": null, "id": 148697061762670600, "id_str": "148697061762670592", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/69419139/arifcrop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/69419139/arifcrop_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @moorsd: Introducing hadoop in 20 pages. http://t.co/YTLf8Dpu #Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:27:52 +0000", "from_user": "zoeghdie", "from_user_id": 70492960, "from_user_id_str": "70492960", "from_user_name": "Spike", "geo": null, "id": 148696035756220400, "id_str": "148696035756220416", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1535021473/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1535021473/image_normal.jpg", "source": "<a href="http://www.osfoora.com" rel="nofollow">Osfoora HD</a>", "text": "Five Big Data predictions for 2012 http://t.co/lBr5zjkp via @radar #bigdata #visualization #hadoop c/o @strataconf @jenstirrup #in", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:25:57 +0000", "from_user": "dwiardiirawan", "from_user_id": 20668782, "from_user_id_str": "20668782", "from_user_name": "d.a.i.licious \\u00AE ", "geo": null, "id": 148695555097374720, "id_str": "148695555097374720", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1645389617/twitter02_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645389617/twitter02_normal.jpg", "source": "<a href="http://www.dzone.com" rel="nofollow">DZone.com</a>", "text": "RT @DZone: Introducing hadoop in 20 pages - http://t.co/ejh1aKju - @DZone Big Link by adij", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:20:21 +0000", "from_user": "moorsd", "from_user_id": 26789275, "from_user_id_str": "26789275", "from_user_name": "David Moors", "geo": null, "id": 148694145878339600, "id_str": "148694145878339584", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/709629018/dm2_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/709629018/dm2_normal.gif", "source": "Zite Personalized Magazine", "text": "Introducing hadoop in 20 pages. http://t.co/zmHcgkcL #Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:12:07 +0000", "from_user": "beyondj2ee", "from_user_id": 57343233, "from_user_id_str": "57343233", "from_user_name": "Taeki Kim", "geo": null, "id": 148692074412257280, "id_str": "148692074412257281", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690404774/kimTK_reasonably_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690404774/kimTK_reasonably_small_normal.jpg", "source": "<a href="http://www.dzone.com" rel="nofollow">DZone.com</a>", "text": "RT @DZone: Introducing hadoop in 20 pages - http://t.co/ejh1aKju - @DZone Big Link by adij", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:10:55 +0000", "from_user": "lambdadevfr", "from_user_id": 402788474, "from_user_id_str": "402788474", "from_user_name": "lambdadev", "geo": null, "id": 148691769809317900, "id_str": "148691769809317888", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1617587525/logoPasseur_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1617587525/logoPasseur_normal.JPG", "source": "<a href="http://www.dzone.com" rel="nofollow">DZone.com</a>", "text": "RT @DZone: Introducing hadoop in 20 pages - http://t.co/ejh1aKju - @DZone Big Link by adij", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:10:24 +0000", "from_user": "bittle_", "from_user_id": 282109163, "from_user_id_str": "282109163", "from_user_name": "bittle", "geo": null, "id": 148691641367142400, "id_str": "148691641367142400", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1311424455/Picto_RVB_300px_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1311424455/Picto_RVB_300px_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @strataconf: Five Big Data predictions for 2012 http://t.co/0no2xN8g via @radar #bigdata #visualization #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:10:02 +0000", "from_user": "chrisayegh", "from_user_id": 378500613, "from_user_id_str": "378500613", "from_user_name": "christian sayegh", "geo": null, "id": 148691550849863680, "id_str": "148691550849863680", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1572522060/Portrait_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572522060/Portrait_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#Microsoft baisse les prix d'Azure, augmente sa capacit\\u00E9 et l'ouvre \\u00E0 l'#OpenSource | arsTechnica dlvr.it/10svMq (RT @AlainClapaud) #Cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:04:41 +0000", "from_user": "analyticsdennis", "from_user_id": 22375129, "from_user_id_str": "22375129", "from_user_name": "Dennis Plucinik", "geo": null, "id": 148690203895283700, "id_str": "148690203895283712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/588949572/analytics_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/588949572/analytics_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Reading: Big data spreadsheet analytics with Apache Hadoop - Datameer.: http://t.co/GKTkr102", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:59:44 +0000", "from_user": "ajlopez", "from_user_id": 14567622, "from_user_id_str": "14567622", "from_user_name": "ajlopez", "geo": null, "id": 148688955854950400, "id_str": "148688955854950402", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/53769404/spiral_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/53769404/spiral_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tadsan: F#\\u3067Streaming\\u3059\\u308B\\u8A71\\u3002\\u3042\\u3068\\u3067\\u8AAD\\u3080\\u3002\\u307F\\u3066\\u308B\\u306A\\u3046: Hadoop Streaming and F# MapReduce - Carl's Blog - Site Home - MSDN Blogs http://t.co/FDvVPFGx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:58:08 +0000", "from_user": "tadsan", "from_user_id": 11637282, "from_user_id_str": "11637282", "from_user_name": "\\u5317\\u306E\\u5927\\u5730\\u306E\\u305F\\uFF44\\u3055\\uFF4E", "geo": null, "id": 148688555336679420, "id_str": "148688555336679424", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696709631/image_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696709631/image_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "F#\\u3067Streaming\\u3059\\u308B\\u8A71\\u3002\\u3042\\u3068\\u3067\\u8AAD\\u3080\\u3002\\u307F\\u3066\\u308B\\u306A\\u3046: Hadoop Streaming and F# MapReduce - Carl's Blog - Site Home - MSDN Blogs http://t.co/FDvVPFGx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:54:56 +0000", "from_user": "micassoc", "from_user_id": 107252170, "from_user_id_str": "107252170", "from_user_name": "\\u30A8\\u30E0\\u30A2\\u30A4\\u30B7\\u30FC\\u30FB\\u30A2\\u30BD\\u30B7\\u30A8\\u30FC\\u30C4\\u682A\\u5F0F\\u4F1A\\u793E", "geo": null, "id": 148687749120139260, "id_str": "148687749120139265", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/646965551/MIC-logo-_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/646965551/MIC-logo-_normal.gif", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "\\u30B9\\u30C8\\u30EC\\u30FC\\u30B8\\u6700\\u65B0\\u60C5\\u5831\\u307E\\u3068\\u3081 12/19 : http://t.co/mHH2XuLt \\u3010LinuxTutorial\\u301112.1\\u30EA\\u30EA\\u30FC\\u30B9\\u3067\\u9032\\u5316\\u3059\\u308B openSUSE.../Windows Azure\\u3001Hadoop\\u3084Node.js\\u306A\\u3069\\u6709\\u540DOSS\\u3092\\u30B5\\u30DD\\u30FC\\u30C8../ #MIC #Storage", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:54:29 +0000", "from_user": "mk_mic", "from_user_id": 110366328, "from_user_id_str": "110366328", "from_user_name": "mic\\u30DE\\u30FC\\u30B1\\u30C6\\u30A3\\u30F3\\u30B0\\u90E8", "geo": null, "id": 148687637551648770, "id_str": "148687637551648768", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1231244449/keyboard-mic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1231244449/keyboard-mic_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\\u30B9\\u30C8\\u30EC\\u30FC\\u30B8\\u6700\\u65B0\\u60C5\\u5831\\u307E\\u3068\\u3081 12/19 : http://t.co/QmQWIHUO \\u3010LinuxTutorial\\u301112.1\\u30EA\\u30EA\\u30FC\\u30B9\\u3067\\u9032\\u5316\\u3059\\u308B openSUSE.../Windows Azure\\u3001Hadoop\\u3084Node.js\\u306A\\u3069\\u6709\\u540DOSS\\u3092\\u30B5\\u30DD\\u30FC\\u30C8../ #MIC #Storage", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:40:55 +0000", "from_user": "Thayer", "from_user_id": 3245521, "from_user_id_str": "3245521", "from_user_name": "Thayer Prime", "geo": null, "id": 148684219474907140, "id_str": "148684219474907136", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1679261479/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679261479/Untitled_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @strataconf: Five Big Data predictions for 2012 http://t.co/0no2xN8g via @radar #bigdata #visualization #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:37:02 +0000", "from_user": "jenstirrup", "from_user_id": 23242773, "from_user_id_str": "23242773", "from_user_name": "Jen Stirrup", "geo": null, "id": 148683244618006530, "id_str": "148683244618006528", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1580691601/JenStirrup_SpeakerPhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580691601/JenStirrup_SpeakerPhoto_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @strataconf Five Big Data predictions for 2012 http://t.co/ZC2JTilR via @radar #bigdata #visualization #hadoop << Interesting Read", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:36:29 +0000", "from_user": "kxiaotiger", "from_user_id": 280968194, "from_user_id_str": "280968194", "from_user_name": "xiaokang", "geo": null, "id": 148683107804004350, "id_str": "148683107804004353", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1309836265/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1309836265/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @strataconf: Five Big Data predictions for 2012 http://t.co/0no2xN8g via @radar #bigdata #visualization #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:35:11 +0000", "from_user": "jenstirrup", "from_user_id": 23242773, "from_user_id_str": "23242773", "from_user_name": "Jen Stirrup", "geo": null, "id": 148682776684666880, "id_str": "148682776684666880", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1580691601/JenStirrup_SpeakerPhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580691601/JenStirrup_SpeakerPhoto_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @strataconf: Five Big Data predictions for 2012 http://t.co/0no2xN8g via @radar #bigdata #visualization #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:35:02 +0000", "from_user": "SFDevJobs", "from_user_id": 411245524, "from_user_id_str": "411245524", "from_user_name": "San Fran Dev Jobs", "geo": null, "id": 148682741372821500, "id_str": "148682741372821504", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1652355565/devjobs-logo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652355565/devjobs-logo_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#sf Hadoop Software Engineer http://t.co/E9i0EkxG #devjob #jobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:33:09 +0000", "from_user": "WorkBandits", "from_user_id": 372201611, "from_user_id_str": "372201611", "from_user_name": "Work Bandits", "geo": null, "id": 148682265084432400, "id_str": "148682265084432384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680516821/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680516821/logo_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Azure price cuts, bigger databases, now with node.js and MongoDB support, Hadoop on its way http://t.co/VPydCcdb via @arstechnica", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:31:07 +0000", "from_user": "customercentria", "from_user_id": 159422375, "from_user_id_str": "159422375", "from_user_name": "Customer Centria", "geo": null, "id": 148681756306968580, "id_str": "148681756306968576", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1091791081/cc_logo_icon_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1091791081/cc_logo_icon_normal.gif", "source": "<a href="http://twuffer.com" rel="nofollow">Twuffer</a>", "text": "Five Big Data predictions for 2012 http://t.co/HsPrbDke via @radar #bigdata #visualization #hadoop RT @strataconf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 08:31:07 +0000", "from_user": "customercentria", "from_user_id": 159422375, "from_user_id_str": "159422375", "from_user_name": "Customer Centria", "geo": null, "id": 148681756306968580, "id_str": "148681756306968576", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1091791081/cc_logo_icon_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1091791081/cc_logo_icon_normal.gif", "source": "<a href="http://twuffer.com" rel="nofollow">Twuffer</a>", "text": "Five Big Data predictions for 2012 http://t.co/HsPrbDke via @radar #bigdata #visualization #hadoop RT @strataconf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:31:01 +0000", "from_user": "pinedoalberto", "from_user_id": 194706250, "from_user_id_str": "194706250", "from_user_name": "Alberto Pinedo", "geo": null, "id": 148681728490356740, "id_str": "148681728490356737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1618894379/yo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618894379/yo_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @davidsb: node, hadoop, mongo,java... ^^ RT @OpenAtMicrosoft: Microsoft announces Open Source updates to Windows Azure http://t.co/GkuqbusF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:30:34 +0000", "from_user": "JuanjoTRX", "from_user_id": 301319904, "from_user_id_str": "301319904", "from_user_name": "Juanjo Alvarez", "geo": null, "id": 148681617035112450, "id_str": "148681617035112448", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1656754849/Fraggle_Rock-Curri01_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656754849/Fraggle_Rock-Curri01_normal.jpg", "source": "<a href="http://www.dzone.com" rel="nofollow">DZone.com</a>", "text": "RT @DZone: Introducing hadoop in 20 pages - http://t.co/ejh1aKju - @DZone Big Link by adij", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:30:25 +0000", "from_user": "AlainClapaud", "from_user_id": 18830245, "from_user_id_str": "18830245", "from_user_name": "Alain Clapaud", "geo": null, "id": 148681577214394370, "id_str": "148681577214394368", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1188582378/Ma-Caricature-Carr_e_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1188582378/Ma-Caricature-Carr_e_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#Microsoft baisse les prix d'Azure, augmente sa capacit\\u00E9 et l'ouvre \\u00E0 l'#OpenSource | arsTechnica http://t.co/6w5hLJbx (RT @dbmoore) #Cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:30:21 +0000", "from_user": "Commercemuse", "from_user_id": 252534579, "from_user_id_str": "252534579", "from_user_name": "Commercemuse", "geo": null, "id": 148681561196347400, "id_str": "148681561196347392", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1562122522/commercemuse_copy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1562122522/commercemuse_copy_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @strataconf: Five Big Data predictions for 2012 http://t.co/0no2xN8g via @radar #bigdata #visualization #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:29:54 +0000", "from_user": "minimal_name", "from_user_id": 229541867, "from_user_id_str": "229541867", "from_user_name": "minimalist", "geo": null, "id": 148681449875312640, "id_str": "148681449875312640", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1552681339/ericdolphy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552681339/ericdolphy_normal.jpg", "source": "<a href="http://www.dzone.com" rel="nofollow">DZone.com</a>", "text": "RT @DZone: Introducing hadoop in 20 pages - http://t.co/ejh1aKju - @DZone Big Link by adij", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:28:28 +0000", "from_user": "Sahar841", "from_user_id": 91426639, "from_user_id_str": "91426639", "from_user_name": "Sahar Gotchita ", "geo": null, "id": 148681089429409800, "id_str": "148681089429409792", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1694973496/379438_292459130798595_100001035319716_867478_2139577923_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694973496/379438_292459130798595_100001035319716_867478_2139577923_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Introducing hadoop in 20 pages - http://t.co/qEADjRXe -", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:28:28 +0000", "from_user": "ATrullols", "from_user_id": 237214580, "from_user_id_str": "237214580", "from_user_name": "Albert Trullols", "geo": null, "id": 148681089366491140, "id_str": "148681089366491136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1213572106/Albert-Face-peque_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1213572106/Albert-Face-peque_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @davidsb: node, hadoop, mongo,java... ^^ RT @OpenAtMicrosoft: Microsoft announces Open Source updates to Windows Azure http://t.co/GkuqbusF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:27:52 +0000", "from_user": "DZone", "from_user_id": 14782935, "from_user_id_str": "14782935", "from_user_name": "DZone", "geo": null, "id": 148680936261816320, "id_str": "148680936261816320", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/258714549/dzone-square-256_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/258714549/dzone-square-256_normal.png", "source": "<a href="http://www.dzone.com" rel="nofollow">DZone.com</a>", "text": "Introducing hadoop in 20 pages - http://t.co/ejh1aKju - @DZone Big Link by adij", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:22:48 +0000", "from_user": "AliceBlundrland", "from_user_id": 316479264, "from_user_id_str": "316479264", "from_user_name": "Alice in Blunderland", "geo": null, "id": 148679663470915600, "id_str": "148679663470915584", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1650212606/freedom_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650212606/freedom_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @strataconf: Five Big Data predictions for 2012 http://t.co/0no2xN8g via @radar #bigdata #visualization #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:05:27 +0000", "from_user": "jeremiedev", "from_user_id": 92844642, "from_user_id_str": "92844642", "from_user_name": "Jeremie Devillard", "geo": null, "id": 148675295275270140, "id_str": "148675295275270144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1183643382/Sans_titre-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1183643382/Sans_titre-1_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @WindowsAzure: Microsoft Tries Hadoop on #Windows #Azure: gives Windows Azure Big Data capabilities http://t.co/hgQobdw2 #Cloud /via @Cloud_Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:59:38 +0000", "from_user": "anttimakkonen", "from_user_id": 36366003, "from_user_id_str": "36366003", "from_user_name": "Antti Makkonen", "geo": null, "id": 148673830347472900, "id_str": "148673830347472897", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/190326637/img_2393_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/190326637/img_2393_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @stojanovic: Carl Nolan has a blog on using our #Hadoop on #Azure service and #JavaScript for data visualization: http://t.co/tkeC3YYZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:53:07 +0000", "from_user": "tokentrojones", "from_user_id": 361196689, "from_user_id_str": "361196689", "from_user_name": "Troy Jones", "geo": null, "id": 148672191649685500, "id_str": "148672191649685504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1511284974/1314193686_tasklifecycle_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1511284974/1314193686_tasklifecycle_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Hadoop enables distributed 'big data' processing across clouds - Search Networking", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:50:25 +0000", "from_user": "disktnk", "from_user_id": 103459580, "from_user_id_str": "103459580", "from_user_name": "disktnk", "geo": null, "id": 148671513653018620, "id_str": "148671513653018624", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1566618208/disktnk_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566618208/disktnk_normal.jpg", "source": "<a href="http://www.soicha.com" rel="nofollow">SOICHA</a>", "text": "Hadoop in Action\\u306F\\u306A\\u304B\\u306A\\u304B\\u306B\\u30A2\\u30EC\\u3060\\u3063\\u305F\\u3051\\u3069\\uFF0CHadoop in Practice\\u306F\\u3069\\u3046\\u306A\\u3093\\u3060\\u308D\\u3046\\uFF0E\\u4ECA\\u65E5\\u3060\\u3051eBook\\u304C\\u534A\\u984D\\u3089\\u3057\\u3044\\u3057\\uFF0C\\u8AB0\\u304B\\u30EC\\u30DD\\u306A\\u3044\\u304B\\u306A(\\u3049\\u3043 http://t.co/q1qVktXh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:41:12 +0000", "from_user": "postgresqlplo", "from_user_id": 338627906, "from_user_id_str": "338627906", "from_user_name": "Allen Wong", "geo": null, "id": 148669192957206530, "id_str": "148669192957206528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Greenplum previews unified Hadoop biz-intel stack - Register", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:41:10 +0000", "from_user": "kernepyftf3", "from_user_id": 369946312, "from_user_id_str": "369946312", "from_user_name": "Kerne Wynn", "geo": null, "id": 148669185227100160, "id_str": "148669185227100160", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@DontJealousMee http://t.co/Hju02eSD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:37:04 +0000", "from_user": "kernepyftf3", "from_user_id": 369946312, "from_user_id_str": "369946312", "from_user_name": "Kerne Wynn", "geo": null, "id": 148668151394074620, "id_str": "148668151394074624", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@afraarmani http://t.co/Hju02eSD", "to_user": "afraarmani", "to_user_id": 151411523, "to_user_id_str": "151411523", "to_user_name": "c\\u2215\\u0334\\u0196fr\\u03B1 bocil's", "in_reply_to_status_id": 134769110163791870, "in_reply_to_status_id_str": "134769110163791872"}, +{"created_at": "Mon, 19 Dec 2011 07:32:22 +0000", "from_user": "kernepyftf3", "from_user_id": 369946312, "from_user_id_str": "369946312", "from_user_name": "Kerne Wynn", "geo": null, "id": 148666971813199870, "id_str": "148666971813199872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@itsobeezy http://t.co/Hju02eSD", "to_user": "itsobeezy", "to_user_id": 24767456, "to_user_id_str": "24767456", "to_user_name": "O.B.", "in_reply_to_status_id": 148646306041180160, "in_reply_to_status_id_str": "148646306041180161"}, +{"created_at": "Mon, 19 Dec 2011 07:28:26 +0000", "from_user": "kernepyftf3", "from_user_id": 369946312, "from_user_id_str": "369946312", "from_user_name": "Kerne Wynn", "geo": null, "id": 148665979809968130, "id_str": "148665979809968128", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@hellofawoman69 http://t.co/Hju02eSD", "to_user": "hellofawoman69", "to_user_id": 58980122, "to_user_id_str": "58980122", "to_user_name": "Katrina Canty", "in_reply_to_status_id": 148646329214697470, "in_reply_to_status_id_str": "148646329214697472"}, +{"created_at": "Mon, 19 Dec 2011 07:22:32 +0000", "from_user": "DataCenterBlogs", "from_user_id": 137312227, "from_user_id_str": "137312227", "from_user_name": "Data Center Blogs", "geo": null, "id": 148664494288146430, "id_str": "148664494288146433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/852678442/dcpavatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/852678442/dcpavatar_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hadoop World: What Dell is up to with Big Data, Open Source and Developers: Besides interviewing a bunch of peo... http://t.co/AewYUPAE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:22:00 +0000", "from_user": "ekedazu", "from_user_id": 317146063, "from_user_id_str": "317146063", "from_user_name": "Diet Campos", "geo": null, "id": 148664360158507000, "id_str": "148664360158507008", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1446707619/1732_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1446707619/1732_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hadoop in Action (Paperback) http://t.co/lpAuzbKX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:16:30 +0000", "from_user": "kernepyftf3", "from_user_id": 369946312, "from_user_id_str": "369946312", "from_user_name": "Kerne Wynn", "geo": null, "id": 148662977975947260, "id_str": "148662977975947264", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@FuckKwameO_o http://t.co/Hju02eSD", "to_user": "FuckKwameO_o", "to_user_id": 86451838, "to_user_id_str": "86451838", "to_user_name": "Kwame", "in_reply_to_status_id": 148646299691003900, "in_reply_to_status_id_str": "148646299691003905"}, +{"created_at": "Mon, 19 Dec 2011 07:13:10 +0000", "from_user": "kernepyftf3", "from_user_id": 369946312, "from_user_id_str": "369946312", "from_user_name": "Kerne Wynn", "geo": null, "id": 148662137986883600, "id_str": "148662137986883585", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@kayla_lewis94 http://t.co/Hju02eSD", "to_user": "kayla_lewis94", "to_user_id": 351116382, "to_user_id_str": "351116382", "to_user_name": "Kayla Lewis", "in_reply_to_status_id": 148646294817214460, "in_reply_to_status_id_str": "148646294817214464"}, +{"created_at": "Mon, 19 Dec 2011 07:09:23 +0000", "from_user": "kernepyftf3", "from_user_id": 369946312, "from_user_id_str": "369946312", "from_user_name": "Kerne Wynn", "geo": null, "id": 148661187981221900, "id_str": "148661187981221888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@YouLoveShanda http://t.co/Hju02eSD", "to_user": "YouLoveShanda", "to_user_id": 90494485, "to_user_id_str": "90494485", "to_user_name": "i say FKUC alot =]", "in_reply_to_status_id": 148646275800240130, "in_reply_to_status_id_str": "148646275800240128"}, +{"created_at": "Mon, 19 Dec 2011 07:06:58 +0000", "from_user": "boogie_pop", "from_user_id": 57008368, "from_user_id_str": "57008368", "from_user_name": "\\u4E95\\u4E0A\\u3000\\u4F51\\u5E0C", "geo": null, "id": 148660577709981700, "id_str": "148660577709981696", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695915522/00_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695915522/00_normal.png", "source": "<a href="http://janetter.net/" rel="nofollow">Janetter</a>", "text": "Hadoop\\u306E\\u8A2D\\u5B9A\\u306B\\u7121\\u99C4\\u306B\\u6642\\u9593\\u3092\\u3068\\u3089\\u308C\\u305F\\u308F\\u305A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:06:14 +0000", "from_user": "kernepyftf3", "from_user_id": 369946312, "from_user_id_str": "369946312", "from_user_name": "Kerne Wynn", "geo": null, "id": 148660392661495800, "id_str": "148660392661495808", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Xteen_16 http://t.co/Hju02eSD", "to_user": "Xteen_16", "to_user_id": 99618594, "to_user_id_str": "99618594", "to_user_name": "Christine Fairchild", "in_reply_to_status_id": 148646276404232200, "in_reply_to_status_id_str": "148646276404232192"}, +{"created_at": "Mon, 19 Dec 2011 06:58:39 +0000", "from_user": "kernepyftf3", "from_user_id": 369946312, "from_user_id_str": "369946312", "from_user_name": "Kerne Wynn", "geo": null, "id": 148658483372371970, "id_str": "148658483372371968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MdrnDayJunClver http://t.co/Hju02eSD", "to_user": "MdrnDayJunClver", "to_user_id": 231533378, "to_user_id_str": "231533378", "to_user_name": "Holly Johnson", "in_reply_to_status_id": 148646307974758400, "in_reply_to_status_id_str": "148646307974758400"}, +{"created_at": "Mon, 19 Dec 2011 06:55:32 +0000", "from_user": "kernepyftf3", "from_user_id": 369946312, "from_user_id_str": "369946312", "from_user_name": "Kerne Wynn", "geo": null, "id": 148657700744597500, "id_str": "148657700744597504", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Rainaxel http://t.co/Hju02eSD", "to_user": "Rainaxel", "to_user_id": 142383743, "to_user_id_str": "142383743", "to_user_name": "Erya", "in_reply_to_status_id": 148645976100438000, "in_reply_to_status_id_str": "148645976100438016"}, +{"created_at": "Mon, 19 Dec 2011 06:55:03 +0000", "from_user": "INFAIM", "from_user_id": 145062108, "from_user_id_str": "145062108", "from_user_name": "Julianna DeLua (EIM)", "geo": null, "id": 148657580393238530, "id_str": "148657580393238528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "source": "<a href="http://futuretweets.com" rel="nofollow"> Futuretweets V2</a>", "text": "Most popular On-demand Webinar 2011 @ralphkimball http://t.co/FjsjlgSC Make data warehouse adaptable for #bigdata #hadoop @informaticacorp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:51:27 +0000", "from_user": "kernepyftf3", "from_user_id": 369946312, "from_user_id_str": "369946312", "from_user_name": "Kerne Wynn", "geo": null, "id": 148656675094659070, "id_str": "148656675094659072", "iso_language_code": "fi", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Tyson_1818 http://t.co/Hju02eSD", "to_user": "Tyson_1818", "to_user_id": 279048665, "to_user_id_str": "279048665", "to_user_name": "Tyson McKean", "in_reply_to_status_id": 148645555072016400, "in_reply_to_status_id_str": "148645555072016385"}, +{"created_at": "Mon, 19 Dec 2011 06:48:05 +0000", "from_user": "kernepyftf3", "from_user_id": 369946312, "from_user_id_str": "369946312", "from_user_name": "Kerne Wynn", "geo": null, "id": 148655825735528450, "id_str": "148655825735528448", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@GCUgiggles http://t.co/Hju02eSD", "to_user": "GCUgiggles", "to_user_id": 160892937, "to_user_id_str": "160892937", "to_user_name": "Scott Higgins", "in_reply_to_status_id": 148646267273228300, "in_reply_to_status_id_str": "148646267273228288"}, +{"created_at": "Mon, 19 Dec 2011 06:37:58 +0000", "from_user": "sedictor", "from_user_id": 66209189, "from_user_id_str": "66209189", "from_user_name": "sedictor", "geo": null, "id": 148653278811521020, "id_str": "148653278811521026", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701422602/petr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701422602/petr_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "\\u201C@trukhinyuri Hadoop 0.22, \\u043F\\u043E\\u044F\\u0432\\u0438\\u043B\\u0438\\u0441\\u044C Backup \\u043D\\u043E\\u0434\\u044B \\u0434\\u043B\\u044F namenode. http://t.co/zTtnKx9X\\u201D http://t.co/WOrXVsPa \\u2014 Hive 0.8.0 \\u0442\\u043E\\u0436\\u0435 \\u0432\\u044B\\u0448\\u0435\\u043B \\u043D\\u0435\\u0434\\u0430\\u0432\\u043D\\u043E :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:37:12 +0000", "from_user": "kernepyftf3", "from_user_id": 369946312, "from_user_id_str": "369946312", "from_user_name": "Kerne Wynn", "geo": null, "id": 148653088553697280, "id_str": "148653088553697280", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@JasmineCharlene http://t.co/Hju02eSD", "to_user": "JasmineCharlene", "to_user_id": 326160715, "to_user_id_str": "326160715", "to_user_name": "Jasmine Hamm", "in_reply_to_status_id": 148646316417880060, "in_reply_to_status_id_str": "148646316417880064"}, +{"created_at": "Mon, 19 Dec 2011 06:34:51 +0000", "from_user": "maeseele", "from_user_id": 285667190, "from_user_id_str": "285667190", "from_user_name": "Peter Maeseele", "geo": null, "id": 148652495508488200, "id_str": "148652495508488194", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1475112025/nice_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1475112025/nice_avatar_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/p4JJhxqi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:33:50 +0000", "from_user": "trukhinyuri", "from_user_id": 17842396, "from_user_id_str": "17842396", "from_user_name": "Trukhin Yuri", "geo": null, "id": 148652241098780670, "id_str": "148652241098780672", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1669204139/199168_1616087365337_1330943072_1322854_468984_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669204139/199168_1616087365337_1330943072_1322854_468984_n_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "\\u041D\\u0435\\u0434\\u0430\\u0432\\u043D\\u043E \\u0432\\u044B\\u0448\\u0435\\u043B Hadoop 0.22, \\u0433\\u0434\\u0435 \\u043D\\u0430\\u043A\\u043E\\u043D\\u0435\\u0446-\\u0442\\u043E \\u043F\\u043E\\u044F\\u0432\\u0438\\u043B\\u0438\\u0441\\u044C Backup \\u043D\\u043E\\u0434\\u044B \\u0434\\u043B\\u044F namenode. \\u0425\\u043E\\u0442\\u044C \\u0447\\u0442\\u043E-\\u0442\\u043E\\u2026 http://t.co/T5anmEHl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:33:24 +0000", "from_user": "bmlever", "from_user_id": 287939768, "from_user_id_str": "287939768", "from_user_name": "Ben Lever", "geo": null, "id": 148652131904274430, "id_str": "148652131904274432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1325625737/gravatar_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1325625737/gravatar_small_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:33:23 +0000", "from_user": "kernepyftf3", "from_user_id": 369946312, "from_user_id_str": "369946312", "from_user_name": "Kerne Wynn", "geo": null, "id": 148652125721858050, "id_str": "148652125721858048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ThaIncredbile85 http://t.co/Hju02eSD", "to_user": "ThaIncredbile85", "to_user_id": 251604675, "to_user_id_str": "251604675", "to_user_name": "J.Green ", "in_reply_to_status_id": 148646341038456830, "in_reply_to_status_id_str": "148646341038456832"}, +{"created_at": "Mon, 19 Dec 2011 06:32:56 +0000", "from_user": "VisualFoxMe", "from_user_id": 218446591, "from_user_id_str": "218446591", "from_user_name": "Philippe Blanc", "geo": null, "id": 148652011922010100, "id_str": "148652011922010112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1178220314/visualfox_512x512x32_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1178220314/visualfox_512x512x32_normal.png", "source": "<a href="http://disqus.com/" rel="nofollow">DISQUS</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl: http://t.co/ZsxYu26g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:28:50 +0000", "from_user": "kernepyftf3", "from_user_id": 369946312, "from_user_id_str": "369946312", "from_user_name": "Kerne Wynn", "geo": null, "id": 148650982119710720, "id_str": "148650982119710720", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Bdonn917 http://t.co/Hju02eSD", "to_user": "Bdonn917", "to_user_id": 237274571, "to_user_id_str": "237274571", "to_user_name": "Brett Donnermeyer", "in_reply_to_status_id": 148646356284751870, "in_reply_to_status_id_str": "148646356284751872"}, +{"created_at": "Mon, 19 Dec 2011 06:20:34 +0000", "from_user": "kernepyftf3", "from_user_id": 369946312, "from_user_id_str": "369946312", "from_user_name": "Kerne Wynn", "geo": null, "id": 148648901593923600, "id_str": "148648901593923584", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@PlayingOnKFMC http://t.co/Hju02eSD", "to_user": "PlayingOnKFMC", "to_user_id": 278603127, "to_user_id_str": "278603127", "to_user_name": "Classic KFMC 106.5", "in_reply_to_status_id": 148646209224056830, "in_reply_to_status_id_str": "148646209224056832"}, +{"created_at": "Mon, 19 Dec 2011 06:16:50 +0000", "from_user": "kernepyftf3", "from_user_id": 369946312, "from_user_id_str": "369946312", "from_user_name": "Kerne Wynn", "geo": null, "id": 148647962090803200, "id_str": "148647962090803200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MrJeffries_ http://t.co/Hju02eSD", "to_user": "MrJeffries_", "to_user_id": 131675289, "to_user_id_str": "131675289", "to_user_name": "MONEY ", "in_reply_to_status_id": 148646225527316480, "in_reply_to_status_id_str": "148646225527316480"}, +{"created_at": "Mon, 19 Dec 2011 06:00:41 +0000", "from_user": "SimonDSAP", "from_user_id": 316886183, "from_user_id_str": "316886183", "from_user_name": "Simon Dale", "geo": null, "id": 148643898858803200, "id_str": "148643898858803200", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1639383087/IMG-20111114-00102_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639383087/IMG-20111114-00102_normal.jpg", "source": "<a href="http://motionobj.com/simplytweet" rel="nofollow">SimplyTweet</a>", "text": "RT @vavavavava: When HANA meets Hadoop. http://t.co/1E8kpFTD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:48:48 +0000", "from_user": "mattmcd", "from_user_id": 6854862, "from_user_id_str": "6854862", "from_user_name": "Matthew McDonnell", "geo": null, "id": 148640908605259780, "id_str": "148640908605259776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1401189383/me_skecth_no2_dark_800x800_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1401189383/me_skecth_no2_dark_800x800_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "#MapReduce for the Masses: Zero to #Hadoop in Five Minutes with Common Crawl http://t.co/yhsIw7sr #cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:44:28 +0000", "from_user": "matei_zaharia", "from_user_id": 201130645, "from_user_id_str": "201130645", "from_user_name": "Matei Zaharia", "geo": null, "id": 148639815456407550, "id_str": "148639815456407552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @commoncrawl: MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl by @stevesalevan http://t.co/cBa5598M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:36:33 +0000", "from_user": "satoruf", "from_user_id": 56858689, "from_user_id_str": "56858689", "from_user_name": "\\u8239\\u4E95\\u3000\\u899A, Satoru Funai", "geo": null, "id": 148637825741500400, "id_str": "148637825741500417", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/769358094/091203portrait_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/769358094/091203portrait_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "\\u306A\\u3093\\u3068\\uFF1F\\u201C@wyukawa: \\u7B2C3\\u7248\\u3067\\u308B\\u306E\\u304B\\uFF1EHadoop: The Definitive Guide, 3rd Edition\\u00A0-\\u00A0O'Reilly Media http://t.co/4HXKvu4L\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:32:42 +0000", "from_user": "jmichel_franco", "from_user_id": 122587156, "from_user_id_str": "122587156", "from_user_name": "Jean-Michel Franco", "geo": null, "id": 148636854407802880, "id_str": "148636854407802880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1250349187/JMF09_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1250349187/JMF09_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @dbmoore: #EnSW When #SAP HANA meets #Hadoop: \\u201CYou\\u2019ll be seeing more about SAP HANA and big data. We\\u2019ll be offering HANA for... http://t.co/TpJRlVKR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:32:17 +0000", "from_user": "takutwiter", "from_user_id": 405494923, "from_user_id_str": "405494923", "from_user_name": "taku", "geo": null, "id": 148636751617986560, "id_str": "148636751617986560", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\\u3044\\u3064\\u306E\\u9593\\u306B\\u304Bhadoop0.22\\u304C\\u30EA\\u30EA\\u30FC\\u30B9\\u3055\\u308C\\u3066\\u3044\\u305F\\u3002hadoop\\u306E\\u30D0\\u30FC\\u30B8\\u30E7\\u30F3\\u7BA1\\u7406\\u304C\\u3088\\u304F\\u308F\\u304B\\u3089\\u306A\\u3044\\u3001\\u3001\\u3001", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:31:14 +0000", "from_user": "asakusa_hadoop", "from_user_id": 259742692, "from_user_id_str": "259742692", "from_user_name": "Asakusa Framework", "geo": null, "id": 148636486902874100, "id_str": "148636486902874112", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1575270514/asakusafw_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575270514/asakusafw_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @g3akk: Hadoop\\u306E\\u305F\\u3081\\u306E\\u30D5\\u30EB\\u30B9\\u30BF\\u30C3\\u30AF\\u30D5\\u30EC\\u30FC\\u30E0\\u30EF\\u30FC\\u30AFAsakusa FW\\u306E\\u30D0\\u30FC\\u30B8\\u30E7\\u30F30.2.4\\u304C\\u30EA\\u30EA\\u30FC\\u30B9\\u3002\\u4EFB\\u610F\\u306ERDB\\u3068\\u9023\\u643A\\u3059\\u308BWindGate\\u304C\\u4ECA\\u56DE\\u304B\\u3089GA\\u306B\\u306A\\u3063\\u305F\\u307B\\u304B\\u3001\\u30C9\\u30AD\\u30E5\\u30E1\\u30F3\\u30C8\\u304C\\u5927\\u5E45\\u306B\\u62E1\\u5145\\u3055\\u308C\\u3066\\u3044\\u308B\\u305D\\u3046\\u3067\\u3059\\u2192 http://t.co/qhUiLVty", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:27:26 +0000", "from_user": "m_mouri", "from_user_id": 59664060, "from_user_id_str": "59664060", "from_user_name": "M.Mouri", "geo": null, "id": 148635529745932300, "id_str": "148635529745932289", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/329289919/img.php_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/329289919/img.php_normal.jpeg", "source": "<a href="http://www.tweenapp.org/" rel="nofollow">Tween</a>", "text": "\\u305D\\u308C\\u306B\\u3057\\u3066\\u3082\\u3001Hadoop 0.23\\u304Cstable\\u76F8\\u5F53\\u306B\\u306A\\u308B\\u306E\\u306F\\u3044\\u3064\\u306E\\u4E88\\u5B9A\\u306A\\u3093\\u3060\\u308D\\u3046\\uFF1F\\uFF1F\\uFF1F", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:25:09 +0000", "from_user": "m_mouri", "from_user_id": 59664060, "from_user_id_str": "59664060", "from_user_name": "M.Mouri", "geo": null, "id": 148634954618769400, "id_str": "148634954618769408", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/329289919/img.php_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/329289919/img.php_normal.jpeg", "source": "<a href="http://www.tweenapp.org/" rel="nofollow">Tween</a>", "text": "YARN\\u3082\\u66F8\\u3044\\u3066\\u3042\\u308B\\u306E\\u304B\\u3002\\u65E5\\u672C\\u8A9E\\u7248\\u3092\\u5F85\\u3064\\u3079\\u304D\\u304B\\u3001\\u6D0B\\u66F8\\u3067\\u8CB7\\u3046\\u3079\\u304D\\u304B\\u2026 QT @wyukawa: \\u7B2C3\\u7248\\u3067\\u308B\\u306E\\u304B\\uFF1EHadoop: The Definitive Guide, 3rd Edition\\u00A0-\\u00A0O'Reilly Media http://t.co/BFzMH6DP", "to_user": "wyukawa", "to_user_id": 14138696, "to_user_id_str": "14138696", "to_user_name": "Wataru Yukawa", "in_reply_to_status_id": 148633694511448060, "in_reply_to_status_id_str": "148633694511448064"}, +{"created_at": "Mon, 19 Dec 2011 05:21:31 +0000", "from_user": "osacaz4", "from_user_id": 77739815, "from_user_id_str": "77739815", "from_user_name": "hashimoto", "geo": null, "id": 148634040528945150, "id_str": "148634040528945152", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/527736341/twitter200911_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/527736341/twitter200911_normal.png", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "RT @wyukawa: \\u7B2C3\\u7248\\u3067\\u308B\\u306E\\u304B\\uFF1EHadoop: The Definitive Guide, 3rd Edition\\u00A0-\\u00A0O'Reilly Media http://t.co/qRQN2aZ5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:20:11 +0000", "from_user": "BayAreaJobsSH", "from_user_id": 60399575, "from_user_id_str": "60399575", "from_user_name": "StartUpHire", "geo": null, "id": 148633703579516930, "id_str": "148633703579516929", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/355642926/twitter_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/355642926/twitter_normal.gif", "source": "<a href="http://www.startuphire.com" rel="nofollow">StartUpHire Website</a>", "text": "Senior Hadoop Software Engineer in San Mateo at Greenplum http://t.co/uxTxgPab #jobs #StartUpHire", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:20:08 +0000", "from_user": "wyukawa", "from_user_id": 14138696, "from_user_id_str": "14138696", "from_user_name": "Wataru Yukawa", "geo": null, "id": 148633694511448060, "id_str": "148633694511448064", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1422846484/picture_12_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1422846484/picture_12_bigger_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "\\u7B2C3\\u7248\\u3067\\u308B\\u306E\\u304B\\uFF1EHadoop: The Definitive Guide, 3rd Edition\\u00A0-\\u00A0O'Reilly Media http://t.co/qRQN2aZ5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:16:51 +0000", "from_user": "mwarger", "from_user_id": 15886909, "from_user_id_str": "15886909", "from_user_name": "Mathew Warger", "geo": null, "id": 148632866983649280, "id_str": "148632866983649280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1487267520/2011-07-10-181749_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1487267520/2011-07-10-181749_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @commoncrawl: MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl by @stevesalevan http://t.co/cBa5598M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:06:24 +0000", "from_user": "timfives", "from_user_id": 7155092, "from_user_id_str": "7155092", "from_user_name": "Tim Fives", "geo": null, "id": 148630236949520400, "id_str": "148630236949520384", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1155029066/timfives_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1155029066/timfives_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "RT @mndoci: Hadoop and Pig at LinkedIn SNA http://t.co/kxSuZJDv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:01:08 +0000", "from_user": "robrohan", "from_user_id": 289741018, "from_user_id_str": "289741018", "from_user_name": "Rob Rohan", "geo": null, "id": 148628909498437630, "id_str": "148628909498437632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1331351287/download_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1331351287/download_normal.jpeg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl | CommonCrawl http://t.co/cDcnl9wB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:00:16 +0000", "from_user": "CloudPodcasts", "from_user_id": 89944823, "from_user_id_str": "89944823", "from_user_name": "Cloud Podcasts ", "geo": null, "id": 148628691189116930, "id_str": "148628691189116928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/527219943/Cloud_Podcasts_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/527219943/Cloud_Podcasts_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hadoop World: What Dell is up to with Big Data, Open Source and Developers: Besides interv... http://t.co/I4gvHbA5 #cloud #podcast #TCN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:58:12 +0000", "from_user": "followimaginea", "from_user_id": 91066092, "from_user_id_str": "91066092", "from_user_name": "imaginea", "geo": null, "id": 148628171229634560, "id_str": "148628171229634560", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1596052450/imaginea_tw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596052450/imaginea_tw_normal.jpg", "source": "Zite Personalized Magazine", "text": "RT @HadoopNews: #Hadoop and Machine Learning http://t.co/hDoLA0kT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:56:57 +0000", "from_user": "g3akk", "from_user_id": 278590903, "from_user_id_str": "278590903", "from_user_name": "GOMI Akiko", "geo": null, "id": 148627857504079870, "id_str": "148627857504079872", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1646879822/06_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646879822/06_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Hadoop\\u306E\\u305F\\u3081\\u306E\\u30D5\\u30EB\\u30B9\\u30BF\\u30C3\\u30AF\\u30D5\\u30EC\\u30FC\\u30E0\\u30EF\\u30FC\\u30AFAsakusa FW\\u306E\\u30D0\\u30FC\\u30B8\\u30E7\\u30F30.2.4\\u304C\\u30EA\\u30EA\\u30FC\\u30B9\\u3002\\u4EFB\\u610F\\u306ERDB\\u3068\\u9023\\u643A\\u3059\\u308BWindGate\\u304C\\u4ECA\\u56DE\\u304B\\u3089GA\\u306B\\u306A\\u3063\\u305F\\u307B\\u304B\\u3001\\u30C9\\u30AD\\u30E5\\u30E1\\u30F3\\u30C8\\u304C\\u5927\\u5E45\\u306B\\u62E1\\u5145\\u3055\\u308C\\u3066\\u3044\\u308B\\u305D\\u3046\\u3067\\u3059\\u2192 http://t.co/qhUiLVty", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:56:28 +0000", "from_user": "vishwavikalp", "from_user_id": 83765473, "from_user_id_str": "83765473", "from_user_name": "Vishwavikalp", "geo": null, "id": 148627735395311600, "id_str": "148627735395311616", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1258295366/DSC03650_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1258295366/DSC03650_normal.JPG", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "Java Hadoop / Java Developer http://t.co/1UzHUsYw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:43:10 +0000", "from_user": "carlosaguayo81", "from_user_id": 363392389, "from_user_id_str": "363392389", "from_user_name": "Carlos Aguayo", "geo": null, "id": 148624388340723700, "id_str": "148624388340723713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1526677946/46351_10150269873320527_729505526_15148384_6563080_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1526677946/46351_10150269873320527_729505526_15148384_6563080_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Deploy a Hadoop word counter against crawled web pages into Amazon infrastructure in 5 minutes! http://t.co/4qj5i162", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:40:54 +0000", "from_user": "TimMattison", "from_user_id": 16650099, "from_user_id_str": "16650099", "from_user_name": "Tim Mattison", "geo": null, "id": 148623819370807300, "id_str": "148623819370807296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1618766799/timmattison-twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618766799/timmattison-twitter_normal.png", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "Time to get serious about Hadoop, see you in class tomorrow @cloudera!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:40:05 +0000", "from_user": "ChrisDiehl", "from_user_id": 14595061, "from_user_id_str": "14595061", "from_user_name": "Chris Diehl", "geo": null, "id": 148623614567137280, "id_str": "148623614567137280", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/660241500/ZionSmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/660241500/ZionSmall_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "RT @mndoci: Hadoop and Pig at LinkedIn SNA http://t.co/kxSuZJDv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:37:25 +0000", "from_user": "peteskomoroch", "from_user_id": 14344469, "from_user_id_str": "14344469", "from_user_name": "Peter Skomoroch", "geo": null, "id": 148622941112909820, "id_str": "148622941112909825", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1331342742/skomoroch_photo_ocean_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1331342742/skomoroch_photo_ocean_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "RT @mndoci: Hadoop and Pig at LinkedIn SNA http://t.co/kxSuZJDv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:37:23 +0000", "from_user": "evaluator_group", "from_user_id": 214273110, "from_user_id_str": "214273110", "from_user_name": "Evaluator Group", "geo": null, "id": 148622933399576580, "id_str": "148622933399576577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1387282056/test_logo_product_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1387282056/test_logo_product_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:30:00 +0000", "from_user": "zs_frontline", "from_user_id": 165991495, "from_user_id_str": "165991495", "from_user_name": "frontline (\\u30D5\\u30ED\\u30F3\\u30C8\\u30E9\\u30A4\\u30F3)", "geo": null, "id": 148621074844762100, "id_str": "148621074844762112", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1074835094/main_bn_01_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1074835094/main_bn_01_normal.png", "source": "<a href="http://tweetbooking2.appspot.com/" rel="nofollow">tweetbooking2</a>", "text": "\\uFF3BJava\\uFF3D\\u81EA\\u793E\\u30B5\\u30FC\\u30D3\\u30B9\\u958B\\u767A\\u30A8\\u30F3\\u30B8\\u30CB\\u30A2\\u52DF\\u96C6\\u4E2D\\uFF01\\uFF0F\\u5927\\u91CF\\u30C7\\u30FC\\u30BF\\u5206\\u6790\\u30B7\\u30B9\\u30C6\\u30E0\\u3084\\u305D\\u308C\\u3092\\u7528\\u3044\\u305F\\u5206\\u6790\\u30B5\\u30FC\\u30D3\\u30B9\\u306E\\u958B\\u767A\\uFF0FHadoop\\u7B49\\u306E\\u5206\\u6563\\u51E6\\u7406\\u6280\\u8853\\u3092\\u5229\\u7528\\u3057\\u305F\\u958B\\u767A\\u7D4C\\u9A13\\u304C\\u3042\\u308B\\u65B9\\u3001\\u5927\\u6B53\\u8FCE\\uFF01\\uFF0F\\u8A73\\u7D30\\u2192 http://t.co/OGwnH1lt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:27:36 +0000", "from_user": "AIntellig", "from_user_id": 304717100, "from_user_id_str": "304717100", "from_user_name": "Matthias Heger", "geo": null, "id": 148620473972949000, "id_str": "148620473972948992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1367786194/ai_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1367786194/ai_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hadoop and Machine Learning: Slides for the talk by the Cloudera Data Science team on the state of machine learn... http://t.co/WhW2LYrZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:25:25 +0000", "from_user": "d8Pit", "from_user_id": 264394701, "from_user_id_str": "264394701", "from_user_name": "The URL Popularizer", "geo": null, "id": 148619923118243840, "id_str": "148619923118243840", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317284522/logo-header_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317284522/logo-header_normal.png", "source": "<a href="http://d8p.it" rel="nofollow">d8P</a>", "text": "RT @valleymobjobs: #sf Back end software engineer - Platform, Ruby, Mobile, Hadoop, Map #mobile #jobs | http://t.co/iIDe0Hn4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:24:49 +0000", "from_user": "StephenHawking9", "from_user_id": 341975857, "from_user_id_str": "341975857", "from_user_name": "Stephen Hawking", "geo": null, "id": 148619772496588800, "id_str": "148619772496588800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1459648557/StephanHawking_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1459648557/StephanHawking_normal.jpg", "source": "<a href="http://suhastech.com/tr" rel="nofollow">Tweet Random</a>", "text": "24 Interview Questions & Answers for Hadoop developers http://t.co/QOsinPTo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:24:14 +0000", "from_user": "valleymobjobs", "from_user_id": 285217228, "from_user_id_str": "285217228", "from_user_name": "Valley Mobile Jobs", "geo": null, "id": 148619625263927300, "id_str": "148619625263927296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1318878831/localmobjobs_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1318878831/localmobjobs_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#sf Back end software engineer - Platform, Ruby, Mobile, Hadoop, Map http://t.co/bypwYC8x #mobile #jobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:13:14 +0000", "from_user": "awadallah", "from_user_id": 11263102, "from_user_id_str": "11263102", "from_user_name": "Amr Awadallah", "geo": null, "id": 148616855387521020, "id_str": "148616855387521024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1536319816/amr_2011_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1536319816/amr_2011_twitter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:09:02 +0000", "from_user": "visualstudio10", "from_user_id": 120193019, "from_user_id_str": "120193019", "from_user_name": "visualstudio2010", "geo": null, "id": 148615801912569860, "id_str": "148615801912569856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1253466808/vstwitt_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1253466808/vstwitt_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Resources to write .Net based MapReduce jobs for Hadoop using F# http://t.co/VQM5FXTT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:01:38 +0000", "from_user": "turtle2005", "from_user_id": 54184073, "from_user_id_str": "54184073", "from_user_name": "Hitoshi Kamezaki", "geo": null, "id": 148613937238257660, "id_str": "148613937238257665", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/351040572/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/351040572/twitterProfilePhoto_normal.jpg", "source": "<a href="http://www.modiphi.com" rel="nofollow">MODIPHI SM3</a>", "text": "RT @bigdata_1topi: Windows Azure\\u3001Hadoop\\u3084Node.js\\u306A\\u3069\\u6709\\u540DOSS\\u3092\\u30B5\\u30DD\\u30FC\\u30C8 | \\u30A8\\u30F3\\u30BF\\u30FC\\u30D7\\u30E9\\u30A4\\u30BA | \\u30DE\\u30A4\\u30CA\\u30D3\\u30CB\\u30E5\\u30FC\\u30B9 http://t.co/jAtMEySf\\n #1tp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:00:27 +0000", "from_user": "NewsICT", "from_user_id": 215181262, "from_user_id_str": "215181262", "from_user_name": "NewsICT", "geo": null, "id": 148613638956122100, "id_str": "148613638956122113", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1305695667/215181262-1302367071-32_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1305695667/215181262-1302367071-32_normal", "source": "<a href="http://twitter.com/NewsICT" rel="nofollow">NewsICT</a>", "text": "(computer) \\u3010EMC\\u30B8\\u30E3\\u30D1\\u30F3\\u3011\\u610F\\u6B32\\u7684\\u306A\\u6539\\u826F\\u3092\\u53D6\\u308A\\u8FBC\\u3093\\u3060\\u9AD8\\u901F\\u5316Hadoop\\u3068\\u30C7\\u30FC\\u30BF\\u30A6\\u30A7\\u30A2\\u30CF\\u30A6\\u30B9\\u88FD\\u54C1 http://t.co/mLxWZ8xU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:41:53 +0000", "from_user": "CareerSculptors", "from_user_id": 368299625, "from_user_id_str": "368299625", "from_user_name": "CareerSculptors ", "geo": null, "id": 148608966061080580, "id_str": "148608966061080576", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1561907486/cs2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1561907486/cs2_normal.png", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Job: Hadoop / Mapreduce Developer in California http://t.co/E5HUASkt #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:41:44 +0000", "from_user": "elleryq", "from_user_id": 1696951, "from_user_id_str": "1696951", "from_user_name": "Yan-ren Tsai", "geo": null, "id": 148608930715668480, "id_str": "148608930715668481", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/29967862/__04_-small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/29967862/__04_-small_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Resources to write .Net based MapReduce jobs for Hadoop using F# http://t.co/G0oJKFZ8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:38:35 +0000", "from_user": "atsunori74", "from_user_id": 100479273, "from_user_id_str": "100479273", "from_user_name": "Atsunori Takashima", "geo": null, "id": 148608135957987330, "id_str": "148608135957987329", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1251687779/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1251687779/image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "#mynavinews Windows Azure\\u3001Hadoop\\u3084Node.js\\u306A\\u3069\\u6709\\u540DOSS\\u3092\\u30B5\\u30DD\\u30FC\\u30C8 http://t.co/3c7mIXsO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:34:23 +0000", "from_user": "vavavavava", "from_user_id": 75005535, "from_user_id_str": "75005535", "from_user_name": "\\u99AC\\u5834 \\u6E09 (Wataru Baba)", "geo": null, "id": 148607078527795200, "id_str": "148607078527795201", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1581784375/profile_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1581784375/profile_bigger_normal.jpg", "source": "<a href="http://motionobj.com/simplytweet" rel="nofollow">SimplyTweet</a>", "text": "When HANA meets Hadoop. http://t.co/1E8kpFTD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:33:12 +0000", "from_user": "cmastication", "from_user_id": 43186378, "from_user_id_str": "43186378", "from_user_name": "Mister Long", "geo": null, "id": 148606782036652030, "id_str": "148606782036652034", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1133817555/croppedHead_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1133817555/croppedHead_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@pinotblogger stochastic Monte Carlo simulations. I use Hadoop via elastic map reduce as a grid engine.", "to_user": "pinotblogger", "to_user_id": 1586961, "to_user_id_str": "1586961", "to_user_name": "Josh Hermsmeyer", "in_reply_to_status_id": 148606133765025800, "in_reply_to_status_id_str": "148606133765025793"}, +{"created_at": "Mon, 19 Dec 2011 03:31:33 +0000", "from_user": "lewaqysefe", "from_user_id": 316542406, "from_user_id_str": "316542406", "from_user_name": "Fax Geddie", "geo": null, "id": 148606368679604220, "id_str": "148606368679604224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1446665861/881_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1446665861/881_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hadoop: The Definitive Guide (Paperback) http://t.co/zX9VuDq6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:31:33 +0000", "from_user": "lewaqysefe", "from_user_id": 316542406, "from_user_id_str": "316542406", "from_user_name": "Fax Geddie", "geo": null, "id": 148606366334980100, "id_str": "148606366334980097", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1446665861/881_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1446665861/881_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Pro Hadoop (Expert's Voice in Open Source) (Paperback) http://t.co/W76brbc0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:31:16 +0000", "from_user": "wyukawa", "from_user_id": 14138696, "from_user_id_str": "14138696", "from_user_name": "Wataru Yukawa", "geo": null, "id": 148606294176174080, "id_str": "148606294176174080", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1422846484/picture_12_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1422846484/picture_12_bigger_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "@shiumachi \\u8ABF\\u3079\\u3066\\u307F\\u307E\\u3057\\u305F\\u304Croot\\u30E6\\u30FC\\u30B6\\u3067\\u5B9F\\u884C\\u3059\\u308B\\u306E\\u306F\\u9593\\u9055\\u3044\\u3063\\u307D\\u3044\\u3067\\u3059\\u306D\\u3002hdfs\\u30E6\\u30FC\\u30B6\\u306A\\u3089OK\\u3067\\u3059\\u3002logs, pids\\u306B\\u66F8\\u304D\\u8FBC\\u307F\\u6A29\\u9650\\u306E\\u3042\\u308Bhadoop\\u30B0\\u30EB\\u30FC\\u30D7\\u306B\\u5C5E\\u3059\\u308B\\u30E6\\u30FC\\u30B6\\u306A\\u3089\\u5927\\u4E08\\u592B\\u306A\\u3088\\u3046\\u3067\\u3059\\u306D\\u3002", "to_user": "shiumachi", "to_user_id": 11370182, "to_user_id_str": "11370182", "to_user_name": "Sho Shimauchi", "in_reply_to_status_id": 148597526445031420, "in_reply_to_status_id_str": "148597526445031424"}, +{"created_at": "Mon, 19 Dec 2011 03:25:11 +0000", "from_user": "TechnoMile", "from_user_id": 89779407, "from_user_id_str": "89779407", "from_user_name": "TechnoMile LLC", "geo": null, "id": 148604765373337600, "id_str": "148604765373337601", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1187113101/techomile_normal_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1187113101/techomile_normal_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Resources to write .Net based MapReduce jobs for Hadoop using F# http://t.co/NrjDz3MC Cloud Computinghttp://twit... http://t.co/FIT71p8S", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:24:14 +0000", "from_user": "TibidyUS", "from_user_id": 313799444, "from_user_id_str": "313799444", "from_user_name": "Tibidy", "geo": null, "id": 148604523940818940, "id_str": "148604523940818944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1458127887/tbd_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1458127887/tbd_normal.png", "source": "<a href="http://www.tibidy.com" rel="nofollow">Tibidy</a>", "text": "#MapReduce For the Masses With Common Crawl Data: http://t.co/umxU1xQ7 | #Hello #Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:23:03 +0000", "from_user": "TibidyUS", "from_user_id": 313799444, "from_user_id_str": "313799444", "from_user_name": "Tibidy", "geo": null, "id": 148604226560458750, "id_str": "148604226560458752", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1458127887/tbd_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1458127887/tbd_normal.png", "source": "<a href="http://www.tibidy.com" rel="nofollow">Tibidy</a>", "text": "All about #Hadoop. Tagged on http://t.co/9p11zC6K", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:22:22 +0000", "from_user": "kellycopson", "from_user_id": 367074993, "from_user_id_str": "367074993", "from_user_name": "kelly", "geo": null, "id": 148604054296207360, "id_str": "148604054296207361", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1526353507/kelly_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1526353507/kelly_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Resources to write .Net based MapReduce jobs for Hadoop using F# http://t.co/h70Te3fx Cloud Computing", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:21:00 +0000", "from_user": "JReuben1", "from_user_id": 18364654, "from_user_id_str": "18364654", "from_user_name": "JReuben1", "geo": null, "id": 148603713529978880, "id_str": "148603713529978880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1222470114/bioPic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1222470114/bioPic_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "CommonCrawl - http://t.co/Ecm31s6z - Hadoop Hello World with 40TB of web crawl data on Amazon cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:20:57 +0000", "from_user": "TechAssoc", "from_user_id": 92243805, "from_user_id_str": "92243805", "from_user_name": "TechnologyAssociates", "geo": null, "id": 148603701244854270, "id_str": "148603701244854272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/659762257/Technology_Asso_arrowsv2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/659762257/Technology_Asso_arrowsv2_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "Resources to write .Net based MapReduce jobs for Hadoop using F# http://t.co/kpbLr7hJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:18:37 +0000", "from_user": "SantiagFongtra", "from_user_id": 277471045, "from_user_id_str": "277471045", "from_user_name": "Santiago Fong", "geo": null, "id": 148603113178279940, "id_str": "148603113178279938", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1300882924/avatar-animated-06-1_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1300882924/avatar-animated-06-1_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/y6jD0knV Microsoft updates Azure with SDK and Hadoop preview - Register", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:13:50 +0000", "from_user": "ElGanador", "from_user_id": 14747697, "from_user_id_str": "14747697", "from_user_name": "ElGanador", "geo": null, "id": 148601909656293380, "id_str": "148601909656293376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/54089537/800px-Gary_Owens_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/54089537/800px-Gary_Owens_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "New submitter happyscientist writes \"This is a nice 'Hello World' for using Hadoop MapReduce on Common Crawl dat... http://t.co/CinnCbMh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:11:05 +0000", "from_user": "takutwiter", "from_user_id": 405494923, "from_user_id_str": "405494923", "from_user_name": "taku", "geo": null, "id": 148601217625501700, "id_str": "148601217625501697", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\\u30AA\\u30E9\\u30A4\\u30EA\\u30FC\\u3088\\u308A\\u3001Cassandra\\u306E\\u548C\\u8A33\\uFF080.8\\u30E1\\u30A4\\u30F3\\uFF09\\u304C12/24\\u306B\\u3001hadoop\\u306E\\u6D0B\\u66F8\\uFF08MRv2\\u30E1\\u30A4\\u30F3\\uFF09\\u304C\\u6765\\u5E744/22\\u306B\\u767A\\u58F2\\u4E88\\u5B9A\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:06:59 +0000", "from_user": "nyokohama", "from_user_id": 187913387, "from_user_id_str": "187913387", "from_user_name": "\\u306B\\u3087\\u3053(\\u30D5\\u30EA\\u30FC\\u30BF\\u30FC)", "geo": null, "id": 148600185600221200, "id_str": "148600185600221184", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1472413285/lena_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1472413285/lena_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @OpenJDSF: Windows Azure\\u3001Hadoop\\u3084Node.js\\u306A\\u3069\\u6709\\u540DOSS\\u3092\\u30B5\\u30DD\\u30FC\\u30C8 http://t.co/HV3s5FfJ #mynavinews #MIC #Storage", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:06:27 +0000", "from_user": "Pentaho", "from_user_id": 20641938, "from_user_id_str": "20641938", "from_user_name": "Pentaho", "geo": null, "id": 148600048668786700, "id_str": "148600048668786691", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/558415661/pentaho_twitter3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/558415661/pentaho_twitter3_normal.png", "source": "<a href="http://tweetmeme.com" rel="nofollow">TweetMeme</a>", "text": "Looking forward to speaking with @merv this week. Enjoying this comparison: Hadoop Distributions And Kids\\u2019 Soccer http://t.co/NJLe2yMn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:57:14 +0000", "from_user": "OpenJDSF", "from_user_id": 112994568, "from_user_id_str": "112994568", "from_user_name": "JDSF", "geo": null, "id": 148597730577629200, "id_str": "148597730577629186", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/692418172/JDSF.logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/692418172/JDSF.logo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Windows Azure\\u3001Hadoop\\u3084Node.js\\u306A\\u3069\\u6709\\u540DOSS\\u3092\\u30B5\\u30DD\\u30FC\\u30C8 http://t.co/HV3s5FfJ #mynavinews #MIC #Storage", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:50:54 +0000", "from_user": "prasen", "from_user_id": 15131606, "from_user_id_str": "15131606", "from_user_name": "prasen", "geo": null, "id": 148596135966158850, "id_str": "148596135966158848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @stojanovic: Carl Nolan has a blog on using our #Hadoop on #Azure service and its #JavaScript shell for data visualization: http://t.co/qZeEO2EH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:47:57 +0000", "from_user": "yaymixer", "from_user_id": 263546351, "from_user_id_str": "263546351", "from_user_name": "yaymixer", "geo": null, "id": 148595394505474050, "id_str": "148595394505474051", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1281882448/the_alhambra6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1281882448/the_alhambra6_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/uoe3yT6q Microsoft Tries Hadoop on Azure | Cloud Computing Journal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:46:25 +0000", "from_user": "mk_mic", "from_user_id": 110366328, "from_user_id_str": "110366328", "from_user_name": "mic\\u30DE\\u30FC\\u30B1\\u30C6\\u30A3\\u30F3\\u30B0\\u90E8", "geo": null, "id": 148595008658882560, "id_str": "148595008658882560", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1231244449/keyboard-mic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1231244449/keyboard-mic_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Windows Azure\\u3001Hadoop\\u3084Node.js\\u306A\\u3069\\u6709\\u540DOSS\\u3092\\u30B5\\u30DD\\u30FC\\u30C8: \\u30DE\\u30A4\\u30CA\\u30D3\\u30CB\\u30E5\\u30FC\\u30B9 -Microsoft\\u306F2011\\u5E7412\\u6708\\u306EWindows Azure\\u30EA\\u30EA\\u30FC\\u30B9\\u3067\\u3001OSS\\u95A2\\u9023\\u306E\\u30B5\\u30DD... http://t.co/AXVEM6t0 #MIC #Storage", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:46:02 +0000", "from_user": "mind_scratch", "from_user_id": 114927773, "from_user_id_str": "114927773", "from_user_name": "Craig W", "geo": null, "id": 148594910948372480, "id_str": "148594910948372480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1288408094/monster-eigth_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1288408094/monster-eigth_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "http://t.co/ssW2I47z: Map/Reduce With Hadoop and Ruby http://t.co/Rw4s8SVI via @mind_scratch", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:42:37 +0000", "from_user": "saedsayad", "from_user_id": 232981432, "from_user_id_str": "232981432", "from_user_name": "Saed Sayad", "geo": null, "id": 148594052827332600, "id_str": "148594052827332608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1204712670/saed_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1204712670/saed_twitter_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Check this video out -- Hadoop Part 8 - Configure and Test Cluster http://t.co/PRUuN4zZ via @youtube", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:41:51 +0000", "from_user": "jmhodges", "from_user_id": 9267272, "from_user_id_str": "9267272", "from_user_name": "Jeff Hodges", "geo": null, "id": 148593859276972030, "id_str": "148593859276972033", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/57084631/n20903342_33746840_708_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/57084631/n20903342_33746840_708_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@coda Get over zookeeper's API. Double down on hadoop stack maintenance. It is the path.", "to_user": "coda", "to_user_id": 637533, "to_user_id_str": "637533", "to_user_name": "Coda Hale", "in_reply_to_status_id": 148588852301398000, "in_reply_to_status_id_str": "148588852301398016"} +, +{"created_at": "Mon, 19 Dec 2011 02:38:09 +0000", "from_user": "hnfirehose", "from_user_id": 213117318, "from_user_id_str": "213117318", "from_user_name": "HN Firehose", "geo": null, "id": 148592930179915780, "id_str": "148592930179915776", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Trekking into the Cassandra Data Model: http://t.co/EBo7rjc3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:27:12 +0000", "from_user": "jbd28", "from_user_id": 74744418, "from_user_id_str": "74744418", "from_user_name": "Joe", "geo": null, "id": 148590171649085440, "id_str": "148590171649085440", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1263396064/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263396064/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@cmastication Hadoop?", "to_user": "cmastication", "to_user_id": 43186378, "to_user_id_str": "43186378", "to_user_name": "Mister Long", "in_reply_to_status_id": 148582487541547000, "in_reply_to_status_id_str": "148582487541547008"}, +{"created_at": "Mon, 19 Dec 2011 02:25:40 +0000", "from_user": "avkashchauhan", "from_user_id": 213118614, "from_user_id_str": "213118614", "from_user_name": "Avkash Chauhan", "geo": null, "id": 148589788755263500, "id_str": "148589788755263488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1615647152/asc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615647152/asc_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Blog: Resources to write .Net based #MapReduce jobs for #Hadoop using F# - http://t.co/GHkA2RUG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:20:15 +0000", "from_user": "wyukawa", "from_user_id": 14138696, "from_user_id_str": "14138696", "from_user_name": "Wataru Yukawa", "geo": null, "id": 148588422041309200, "id_str": "148588422041309184", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1422846484/picture_12_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1422846484/picture_12_bigger_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "CDH\\u7248Hadoop\\u3067root\\u3067start-balancer.sh\\u3092\\u5B9F\\u884C\\u3059\\u308B\\u3068\\u300C\\u8A73\\u3057\\u304F\\u306F `chown --help' \\u3092\\u5B9F\\u884C\\u3057\\u3066\\u4E0B\\u3055\\u3044.\\u300D\\u3068\\u8A00\\u308F\\u308C\\u308B\\u3002\\u5B9F\\u884C\\u306F\\u3055\\u308C\\u3066\\u3044\\u308B\\u3063\\u307D\\u3044\\u304C\\u3001\\u6B63\\u3057\\u3044\\u30EA\\u30D0\\u30E9\\u30F3\\u30B9\\u624B\\u9806\\u306F\\u4F55\\u3060\\u308D\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:05:52 +0000", "from_user": "akpurtell", "from_user_id": 48161485, "from_user_id_str": "48161485", "from_user_name": "Andrew Purtell", "geo": null, "id": 148584804537991170, "id_str": "148584804537991168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/975719155/apurtell_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/975719155/apurtell_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:03:04 +0000", "from_user": "BrandenLundy", "from_user_id": 182904085, "from_user_id_str": "182904085", "from_user_name": "Branden Lundy", "geo": null, "id": 148584101308403700, "id_str": "148584101308403713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662437264/Padmasambhava_Guru_rimpoche_at_samdruptse_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662437264/Padmasambhava_Guru_rimpoche_at_samdruptse_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @jameskobielus: Year ahead in #BigData ? #Hadoop deployments grow 10x. Graph DB mania 4 influence mining. Cloud #EDW goes mainstream. Data science in vogue", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:00:04 +0000", "from_user": "patrickDurusau", "from_user_id": 152194866, "from_user_id_str": "152194866", "from_user_name": "Patrick Durusau", "geo": null, "id": 148583345855533060, "id_str": "148583345855533056", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/961579480/patrick_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/961579480/patrick_normal.jpeg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Introducing Hadoop in 20 pages #topicmaps #hadoop #mapreduce http://t.co/Xt8VVT7G", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:57:32 +0000", "from_user": "maxkalachev", "from_user_id": 333232986, "from_user_id_str": "333232986", "from_user_name": "Max Kalachev", "geo": null, "id": 148582705783783420, "id_str": "148582705783783424", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1647901278/max2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647901278/max2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u0428\\u0438\\u043A\\u0430\\u0440\\u043D\\u0430\\u044F \\u043A\\u043D\\u0438\\u0433\\u0430 \\u043F\\u043E \\u0444\\u0440\\u0435\\u0439\\u043C\\u0432\\u043E\\u0440\\u043A\\u0443 Apache Hadoop http://t.co/CO2WK4PX #mapreduce", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:53:47 +0000", "from_user": "pradeep2002gs", "from_user_id": 58767051, "from_user_id_str": "58767051", "from_user_name": "G.S.Pradeep Kumar", "geo": null, "id": 148581763046846460, "id_str": "148581763046846464", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @MicrosoftBuzz: Microsoft Tries Hadoop on Azure (Apache Developer's Journal) http://t.co/gLLWrogj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:53:22 +0000", "from_user": "pradeep2002gs", "from_user_id": 58767051, "from_user_id_str": "58767051", "from_user_name": "G.S.Pradeep Kumar", "geo": null, "id": 148581656599605250, "id_str": "148581656599605248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:40:18 +0000", "from_user": "teguhprasetya", "from_user_id": 36217083, "from_user_id_str": "36217083", "from_user_name": "Teguh Prasetya", "geo": null, "id": 148578370576318460, "id_str": "148578370576318464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1135527778/IMG00258-20100929-0835_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1135527778/IMG00258-20100929-0835_normal.jpg", "source": "<a href="http://www.cheapwebsitehostingreviews.net/" rel="nofollow">WebsiteHostingReviews</a>", "text": "RT @HostingJoshua: Wyld About Cloud Computing: Hadoop growth will keep surging, says creator http://t.co/eapiPVev", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:35:59 +0000", "from_user": "TopCloudHosting", "from_user_id": 170814667, "from_user_id_str": "170814667", "from_user_name": "CloudComputing", "geo": null, "id": 148577282334801920, "id_str": "148577282334801921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1090310223/cloud_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1090310223/cloud_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @HostingJoshua Wyld About Cloud Computing: Hadoop growth will keep surging, says creator http://t.co/feSN8kID: Wyld About Cloud C...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:34:58 +0000", "from_user": "HostingJoshua", "from_user_id": 346447098, "from_user_id_str": "346447098", "from_user_name": "Joshua D. Cue", "geo": null, "id": 148577026830368770, "id_str": "148577026830368769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1472223344/10-man-on-laptop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1472223344/10-man-on-laptop_normal.jpg", "source": "<a href="http://www.cheapwebsitehostingreviews.net/" rel="nofollow">WebsiteHostingReviews</a>", "text": "Wyld About Cloud Computing: Hadoop growth will keep surging, says creator http://t.co/eapiPVev", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:32:02 +0000", "from_user": "alessandroleite", "from_user_id": 11503692, "from_user_id_str": "11503692", "from_user_name": "alessandroleite", "geo": null, "id": 148576287521374200, "id_str": "148576287521374209", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1243715520/avatar-photo_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1243715520/avatar-photo_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lucabastos: Par\\u00F3dia da queda agora Hadoop e NoSQL \"The namenode metadata was corrupted when the machine failed\" http://t.co/rNFane6f via @fdelariva", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:25:23 +0000", "from_user": "jaybuifun", "from_user_id": 357128068, "from_user_id_str": "357128068", "from_user_name": "Jayda Bui", "geo": null, "id": 148574617571819520, "id_str": "148574617571819521", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1500871035/1313620082_microsoft_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1500871035/1313620082_microsoft_logo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/tAviUjUc Microsoft updates Azure with SDK and Hadoop preview", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:22:05 +0000", "from_user": "Server_failure", "from_user_id": 305603734, "from_user_id_str": "305603734", "from_user_name": "Server_failure", "geo": null, "id": 148573787607150600, "id_str": "148573787607150592", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1424575579/server_failure_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1424575579/server_failure_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Google\\u3001Oracle\\u3001Microsoft\\u3001IBM\\u306E\\u30D3\\u30C3\\u30B0\\u30C7\\u30FC\\u30BF\\u5BFE\\u5FDC\\u30A2\\u30D7\\u30ED\\u30FC\\u30C1: \\u3044\\u3061\\u65E9\\u304F\\u30AF\\u30E9\\u30A6\\u30C9\\u30D9\\u30FC\\u30B9\\u306EHadoop\\u30A2\\u30D7\\u30EA\\u30B1\\u30FC\\u30B7\\u30E7\\u30F3\\u3092\\u30EA\\u30EA\\u30FC\\u30B9\\u3057\\u305FAmazon\\u3002\\u305D\\u308C\\u306B\\u7D9A\\u304D\\u3001Google\\u3001Oracle\\u3001Microsoft... http://t.co/F64rD3bz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:06:08 +0000", "from_user": "techlivezheng", "from_user_id": 96176159, "from_user_id_str": "96176159", "from_user_name": "Techlive Zheng", "geo": null, "id": 148569769958842370, "id_str": "148569769958842368", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1369496472/ul40312163-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1369496472/ul40312163-2_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @yongsun: \\u3010share\\u3011 \\u5728Hadoop\\u4E0A\\u8FD0\\u884C\\u57FA\\u4E8ERMM\\u4E2D\\u6587\\u5206\\u8BCD\\u7B97\\u6CD5\\u7684MapReduce\\u7A0B\\u5E8F: \\u6211\\u77E5\\u9053\\u8FD9\\u4E2A\\u6587\\u7AE0\\u6807\\u9898\\u5F88\\u201C\\u5B66\\u672F\\u201D\\u5316\\uFF0C\\u5F88\\u4FD7\\uFF0C\\u8BA9\\u4EBA\\u770B\\u8D77\\u6765\\u662F\\u4E00\\u7BC7\\u5F88\\u725BB\\u6216\\u8005\\u5F88\\u88C5\\u903C\\u7684\\u8BBA\\u6587\\uFF01\\u5176\\u5B9E\\u4E0D\\u7136\\uFF0C\\u53EA\\u662F\\u4E00\\u4EFD\\u666E\\u901A\\u2026 http://t.co/kPOsqIa5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:04:15 +0000", "from_user": "wyukawa", "from_user_id": 14138696, "from_user_id_str": "14138696", "from_user_name": "Wataru Yukawa", "geo": null, "id": 148569296614850560, "id_str": "148569296614850560", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1422846484/picture_12_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1422846484/picture_12_bigger_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "\\u30E9\\u30C3\\u30AF\\u8A2D\\u5B9A\\u306F\\u3084\\u3063\\u305F\\u3053\\u3068\\u306A\\u3044\\u306A\\u3042\\uFF1Ehadoop\\u30A2\\u30C9\\u30D9\\u30F3\\u30C8\\u30AB\\u30EC\\u30F3\\u30C0\\u30FC2011 19\\u65E5\\u76EE Hadoop\\u306E\\u30E9\\u30C3\\u30AF\\u8A8D\\u8B58\\u8A2D\\u5B9A\\u90E8\\u5206\\u306E\\u30BD\\u30FC\\u30B9\\u3092\\u8FFD\\u3044\\u304B\\u3051\\u3066\\u307F\\u305F - AOE\\u306E\\u65E5\\u8A18 http://t.co/2OtrJJRE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:54:57 +0000", "from_user": "yutuki_r", "from_user_id": 16252456, "from_user_id_str": "16252456", "from_user_name": "\\u8C4A\\u6708", "geo": null, "id": 148566955161432060, "id_str": "148566955161432064", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1570998126/___normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1570998126/___normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @dentomo: From my CLIP: [Hadoop]hadoop\\u30A2\\u30C9\\u30D9\\u30F3\\u30C8\\u30AB\\u30EC\\u30F3\\u30C0\\u30FC2011 19\\u65E5\\u76EE Hadoop\\u306E\\u30E9\\u30C3\\u30AF\\u8A8D\\u8B58\\u8A2D\\u5B9A\\u90E8\\u5206\\u306E\\u30BD\\u30FC\\u30B9\\u3092\\u8FFD\\u3044\\u304B\\u3051\\u3066\\u307F\\u305F http://t.co/hEhIp8UZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:51:01 +0000", "from_user": "MicrosoftBuzz", "from_user_id": 92041287, "from_user_id_str": "92041287", "from_user_name": "Microsoft news", "geo": null, "id": 148565965372792830, "id_str": "148565965372792832", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/540182132/computer_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/540182132/computer_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft Tries Hadoop on Azure (Apache Developer's Journal) http://t.co/gLLWrogj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:50:24 +0000", "from_user": "don9z", "from_user_id": 25628357, "from_user_id_str": "25628357", "from_user_name": "Chris Zheng | \\u90D1\\u680B", "geo": null, "id": 148565811693490180, "id_str": "148565811693490177", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1456104375/profile.avatar2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1456104375/profile.avatar2_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @yongsun: \\u3010share\\u3011 \\u5728Hadoop\\u4E0A\\u8FD0\\u884C\\u57FA\\u4E8ERMM\\u4E2D\\u6587\\u5206\\u8BCD\\u7B97\\u6CD5\\u7684MapReduce\\u7A0B\\u5E8F: \\u6211\\u77E5\\u9053\\u8FD9\\u4E2A\\u6587\\u7AE0\\u6807\\u9898\\u5F88\\u201C\\u5B66\\u672F\\u201D\\u5316\\uFF0C\\u5F88\\u4FD7\\uFF0C\\u8BA9\\u4EBA\\u770B\\u8D77\\u6765\\u662F\\u4E00\\u7BC7\\u5F88\\u725BB\\u6216\\u8005\\u5F88\\u88C5\\u903C\\u7684\\u8BBA\\u6587\\uFF01\\u5176\\u5B9E\\u4E0D\\u7136\\uFF0C\\u53EA\\u662F\\u4E00\\u4EFD\\u666E\\u901A\\u2026 http://t.co/kPOsqIa5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:37:41 +0000", "from_user": "dentomo", "from_user_id": 71979620, "from_user_id_str": "71979620", "from_user_name": "\\u50B3\\u667A\\u4E4B", "geo": null, "id": 148562610529386500, "id_str": "148562610529386496", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "From my CLIP: [Hadoop]hadoop\\u30A2\\u30C9\\u30D9\\u30F3\\u30C8\\u30AB\\u30EC\\u30F3\\u30C0\\u30FC2011 19\\u65E5\\u76EE Hadoop\\u306E\\u30E9\\u30C3\\u30AF\\u8A8D\\u8B58\\u8A2D\\u5B9A\\u90E8\\u5206\\u306E\\u30BD\\u30FC\\u30B9\\u3092\\u8FFD\\u3044\\u304B\\u3051\\u3066\\u307F\\u305F http://t.co/hEhIp8UZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:32:41 +0000", "from_user": "Connieerv", "from_user_id": 430066696, "from_user_id_str": "430066696", "from_user_name": "Connie Roets", "geo": null, "id": 148561352766664700, "id_str": "148561352766664704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1677559834/fr04v4ndhy_130268751-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677559834/fr04v4ndhy_130268751-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hadoop: The Definitive Guide: Discover how Apache Hadoop can unleash the power of your data. This comprehensive ... http://t.co/zQJROI3f", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:25:10 +0000", "from_user": "ys_said", "from_user_id": 195259964, "from_user_id_str": "195259964", "from_user_name": "Yasser Said", "geo": null, "id": 148559462733578240, "id_str": "148559462733578240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1160062145/ysaid_linkedin_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1160062145/ysaid_linkedin_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Five #BigData predictions for 2012: More powerful and expressive tools for analysis...Streaming data... dlvr.it/116XkC #Hadoop #in", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:19:01 +0000", "from_user": "followbotlist", "from_user_id": 420104059, "from_user_id_str": "420104059", "from_user_name": "\\u3076\\u308D\\u3063\\u304F\\u308A\\u3059\\u3068", "geo": null, "id": 148557912766300160, "id_str": "148557912766300160", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twittbot.net/" rel="nofollow">twittbot.net</a>", "text": "C\\u8A00\\u8A9E/C++/C#/F#/PHP/Perl/Ruby/Python/Lisp/Prolog/ML/Haskell/HTML5/VB/Basic/\\u30A6\\u30A7\\u30D6\\u30C7\\u30B6\\u30A4\\u30F3/\\u30EC\\u30F3\\u30BF\\u30EB\\u30B5\\u30FC\\u30D0/CGI/\\u30BB\\u30AD\\u30E5\\u30EA\\u30C6\\u30A3/FLASH/Web/\\u30BD\\u30FC\\u30B7\\u30E3\\u30EB/SNS/\\u30B0\\u30EB\\u30FC\\u30D7\\u30A6\\u30A7\\u30A2/Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:14:16 +0000", "from_user": "bgnori", "from_user_id": 23901870, "from_user_id_str": "23901870", "from_user_name": "Nori", "geo": null, "id": 148556717540655100, "id_str": "148556717540655105", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/93610285/Flowers002_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/93610285/Flowers002_normal.JPG", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "\"\\u2015\\u30DA\\u30BF\\u30D0\\u30A4\\u30C8\\u3084\\u30A8\\u30AF\\u30B5\\u30D0\\u30A4\\u30C8\\u3068\\u3044\\u3063\\u305F\\u30AF\\u30E9\\u30B9\\u306E\\u30C7\\u30FC\\u30BF\\u304C\\u666E\\u901A\\u306B\\u306A\\u3063\\u3066\\u304F\\u308B\\u3068\\u3001Hadoop\\u306E\\u3088\\u3046\\u306A\\u5206\\u6563\\u51E6\\u7406\\u7CFB\\u30B7\\u30B9\\u30C6\\u30E0\\u306E\\u91CD\\u8981\\u6027\\u304C\\u307E\\u3059\\u307E\\u3059\\u9AD8\\u307E\\u308A\\u305D\\u3046\\u306A\\u6C17\\u304C\\u3057\\u307E\\u3059\\u3002...\" http://t.co/ngwYyk0E", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:10:53 +0000", "from_user": "bigdata_1topi", "from_user_id": 397130113, "from_user_id_str": "397130113", "from_user_name": "ONETOPI\\u300C\\u30D3\\u30C3\\u30B0\\u30C7\\u30FC\\u30BF\\u300D", "geo": null, "id": 148555865715257340, "id_str": "148555865715257344", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1605698365/OT_icon_111025_BIG2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1605698365/OT_icon_111025_BIG2_normal.jpg", "source": "<a href="http://www.modiphi.com" rel="nofollow">MODIPHI SM3</a>", "text": "Windows Azure\\u3001Hadoop\\u3084Node.js\\u306A\\u3069\\u6709\\u540DOSS\\u3092\\u30B5\\u30DD\\u30FC\\u30C8 | \\u30A8\\u30F3\\u30BF\\u30FC\\u30D7\\u30E9\\u30A4\\u30BA | \\u30DE\\u30A4\\u30CA\\u30D3\\u30CB\\u30E5\\u30FC\\u30B9 http://t.co/jAtMEySf\\n #1tp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:07:45 +0000", "from_user": "andriumota", "from_user_id": 434877991, "from_user_id_str": "434877991", "from_user_name": "andriumota", "geo": null, "id": 148555078536671230, "id_str": "148555078536671232", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690169671/galleryPhoto42371_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690169671/galleryPhoto42371_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @bifacil: Excelente introducci\\u00F1on a Hadoop en proyectos BI http://t.co/helO85Nq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:36:05 +0000", "from_user": "benjguin", "from_user_id": 101798644, "from_user_id_str": "101798644", "from_user_name": "B. Guineberti\\u00E8re", "geo": null, "id": 148547108285317120, "id_str": "148547108285317121", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/615595556/BG_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/615595556/BG_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Availability of Community Technology Preview (CTP) of Hadoop based Service on Windows #Azure #BigData http://t.co/PAx6VYJf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:31:57 +0000", "from_user": "josephmisiti", "from_user_id": 58631564, "from_user_id_str": "58631564", "from_user_name": "joseph misiti", "geo": null, "id": 148546069385576450, "id_str": "148546069385576448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1473473302/Screen_shot_2011-08-01_at_9.19.42_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1473473302/Screen_shot_2011-08-01_at_9.19.42_PM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:30:48 +0000", "from_user": "john_m_keenan", "from_user_id": 16687006, "from_user_id_str": "16687006", "from_user_name": "john_m_keenan", "geo": null, "id": 148545781316591600, "id_str": "148545781316591616", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/137628465/headshot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/137628465/headshot_normal.jpg", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Java/Hadoop - Senior/Manager - Data Engineering in New York, NY http://t.co/mMTMqm81 #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:29:14 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 148545386229927940, "id_str": "148545386229927937", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hadoop enables distributedbig data processing across clouds http://t.co/5XZdWeR5 #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:28:54 +0000", "from_user": "itrecommend", "from_user_id": 291647412, "from_user_id_str": "291647412", "from_user_name": "IT\\u6280\\u672F\\u63A8\\u8350", "geo": null, "id": 148545303371452400, "id_str": "148545303371452416", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "\\u5728Hadoop\\u4E0A\\u8FD0\\u884C\\u57FA\\u4E8ERMM\\u4E2D\\u6587\\u5206\\u8BCD\\u7B97\\u6CD5\\u7684MapReduce\\u7A0B\\u5E8F http://t.co/afB67tel", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:26:07 +0000", "from_user": "phunt", "from_user_id": 12370372, "from_user_id_str": "12370372", "from_user_name": "Patrick Hunt", "geo": null, "id": 148544602700382200, "id_str": "148544602700382209", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/80884383/phunt3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/80884383/phunt3_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @robdielemans: Great: Three Xebia Consulants are Certfied #Cloudera Developers in Apache Hadoop....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:23:33 +0000", "from_user": "eBay_Careers", "from_user_id": 364537814, "from_user_id_str": "364537814", "from_user_name": "David Sneed", "geo": null, "id": 148543956177784830, "id_str": "148543956177784834", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1543608610/ebay1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543608610/ebay1_normal.jpg", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Job: Manager Hadoop Operations in San Jose, CA http://t.co/dBLZa2X7 #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:17:09 +0000", "from_user": "JavTH", "from_user_id": 26008317, "from_user_id_str": "26008317", "from_user_name": "Javier Torrenteras", "geo": null, "id": 148542344839434240, "id_str": "148542344839434240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1134728293/Foto_Perfil_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1134728293/Foto_Perfil_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @MicrosoftBI: I uploaded a @YouTube video http://t.co/WWiuQpFL Introduction to the Hadoop on Azure Interactive Hive Console", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:16:54 +0000", "from_user": "markswall", "from_user_id": 19688728, "from_user_id_str": "19688728", "from_user_name": "Mark Wall", "geo": null, "id": 148542280259743740, "id_str": "148542280259743744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676652683/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676652683/Untitled_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hadoop enables distributedbig data processing across clouds http://t.co/jwWa9xa4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:12:56 +0000", "from_user": "kernel023", "from_user_id": 164074432, "from_user_id_str": "164074432", "from_user_name": "kernel023", "geo": null, "id": 148541282061525000, "id_str": "148541282061524992", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1075719709/screenshots_small_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1075719709/screenshots_small_normal.png", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "RT @shiumachi: \"Hadoop\\u306F\\u3053\\u308C\\u3060\\u3051\\u5E83\\u304F\\u4F7F\\u308F\\u308C\\u3066\\u3044\\u308B\\u306B\\u3082\\u304B\\u304B\\u308F\\u3089\\u305A\\u3001\\u3069\\u3046\\u3082\\u516C\\u5F0F\\u306E\\u30C9\\u30AD\\u30E5\\u30E1\\u30F3\\u30C8\\u306F\\u60C5\\u5831\\u4E0D\\u8DB3\\u306E\\u3088\\u3046\\u306A\\u6C17\\u304C\\u3057\\u307E\\u3059\"JIRA\\u306B\\u300C\\u3053\\u306E\\u30C9\\u30AD\\u30E5\\u30E1\\u30F3\\u30C8\\u306D\\u30FC\\u3088\\u300D\\u3068\\u3044\\u3046\\u30C1\\u30B1\\u30C3\\u30C8\\u30AA\\u30FC\\u30D7\\u30F3\\u2192html\\u30DA\\u30FC\\u30B8\\u8FFD\\u52A0\\u306E\\u30D1\\u30C3\\u30C1\\u6295\\u7A3F\\u3001\\u3067\\u304A\\u9858\\u3044\\u3057\\u307E\\u3059 / \\u201Chadoo\\u2026\\u201D http://t.co/p6tgnvwq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:12:16 +0000", "from_user": "boot_vmlinuz", "from_user_id": 278964766, "from_user_id_str": "278964766", "from_user_name": "a black cat", "geo": null, "id": 148541116235530240, "id_str": "148541116235530240", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1307677079/lKoO9JNx_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1307677079/lKoO9JNx_normal", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "AKB48\\u3068Hadoop\\u8E8D\\u9032\\u3002\\u5927\\u898F\\u6A21\\u5206\\u6563\\u51E6\\u7406\\u6642\\u4EE3\\u306E\\u5230\\u6765\\u304B\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:12:15 +0000", "from_user": "cocoatomo", "from_user_id": 7590702, "from_user_id_str": "7590702", "from_user_name": "tomo", "geo": null, "id": 148541113567936500, "id_str": "148541113567936513", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1203705270/cbef4ed7-31d4-47a7-9e71-6316eead3ae4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1203705270/cbef4ed7-31d4-47a7-9e71-6316eead3ae4_normal.png", "source": "<a href="http://www.zusaar.com/" rel="nofollow">Zusaar</a>", "text": "RT @aoetk: 19\\u65E5\\u76EE\\u66F8\\u304D\\u307E\\u3057\\u305F\\u3002\\u30E9\\u30C3\\u30AF\\u8A8D\\u8B58\\u8A2D\\u5B9A\\u90E8\\u5206\\u306E\\u30BD\\u30FC\\u30B9\\u3092\\u8FFD\\u3044\\u304B\\u3051\\u305F\\u3068\\u304D\\u306E\\u30E1\\u30E2\\u3067\\u3059\\u3002 http://t.co/lqPAdKXb / hadoop\\u30A2\\u30C9\\u30D9\\u30F3\\u30C8\\u30AB\\u30EC\\u30F3\\u30C0\\u30FC2011 http://t.co/mLoAhsZW #zusaar", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:00:09 +0000", "from_user": "lucabastos", "from_user_id": 14911350, "from_user_id_str": "14911350", "from_user_name": "lucabastos", "geo": null, "id": 148538065453973500, "id_str": "148538065453973504", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1113432152/DevInSampa2010_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1113432152/DevInSampa2010_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Par\\u00F3dia da queda agora Hadoop e NoSQL \"The namenode metadata was corrupted when the machine failed\" http://t.co/rNFane6f via @fdelariva", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:51:26 +0000", "from_user": "danbradford", "from_user_id": 15704718, "from_user_id_str": "15704718", "from_user_name": "danbradford", "geo": null, "id": 148535872894140400, "id_str": "148535872894140416", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/78813003/10003_m_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/78813003/10003_m_normal.gif", "source": "<a href="http://jobvite.com" rel="nofollow">Jobvite</a>", "text": "Hortonworks is looking for: Hadoop MapReduce Software Engineer\\nhttp://t.co/FC4tq7CL #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:48:34 +0000", "from_user": "JonatBakerOther", "from_user_id": 352977860, "from_user_id_str": "352977860", "from_user_name": "Jonathon Baker", "geo": null, "id": 148535152438558720, "id_str": "148535152438558721", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1489870218/1313061302_vex-ccr_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1489870218/1313061302_vex-ccr_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/rHXfmCHf Hadoop Meets JobServer - Big Data Job Scheduling - http://t.co/zHR8uvuJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:45:58 +0000", "from_user": "sidux_ev", "from_user_id": 216424978, "from_user_id_str": "216424978", "from_user_name": "sidux e.V.", "geo": null, "id": 148534498609475600, "id_str": "148534498609475584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1171652995/fb-ev-logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1171652995/fb-ev-logo_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "The Apache\\u2122 Hadoop\\u2122 project develops open-source software for reliable, scalable, distributed computing. http://t.co/eDEzHr91", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:42:11 +0000", "from_user": "LizbethChanMone", "from_user_id": 360533716, "from_user_id_str": "360533716", "from_user_name": "Lizbeth Chan", "geo": null, "id": 148533544153661440, "id_str": "148533544153661441", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1509658219/1314101584_open_adoption101_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509658219/1314101584_open_adoption101_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Strata Week: New open-data initiatives in Canada and the UK - Open data from StatsCan and Whitehall, Dell open source http://t.co/QVICPisG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:41:10 +0000", "from_user": "danilo_dominici", "from_user_id": 204376797, "from_user_id_str": "204376797", "from_user_name": "Danilo Dominici", "geo": null, "id": 148533291643977730, "id_str": "148533291643977728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1213510506/dd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1213510506/dd_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @SQLServer: CTP of #Hadoop service for #WindowsAzure avail now! Gain insights w/ #MSBI tools! http://t.co/eZEZx0Z5 #bigdata #sqlserver", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:38:02 +0000", "from_user": "djdoran", "from_user_id": 21696879, "from_user_id_str": "21696879", "from_user_name": "Dave Doran", "geo": null, "id": 148532499448987650, "id_str": "148532499448987648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/615744626/waterfall_desktop_background-1600x1200_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/615744626/waterfall_desktop_background-1600x1200_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "SlideShare presentation : Hadoop and Machine Learning http://t.co/LzbmBhcW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:37:13 +0000", "from_user": "NunoGodinho", "from_user_id": 9971382, "from_user_id_str": "9971382", "from_user_name": "Nuno Godinho", "geo": null, "id": 148532293420593150, "id_str": "148532293420593152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/831407287/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/831407287/twitterProfilePhoto_normal.jpg", "source": "<a href="http://www.WindowsPhone.com/" rel="nofollow">WindowsLive</a>", "text": "New #Azure Release Supports Open Source Libraries #Node.js, #MongoDB, #Hadoop, #Solr, #Memcached http://t.co/FxcNEV4t", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:27:13 +0000", "from_user": "karahiyo", "from_user_id": 165488854, "from_user_id_str": "165488854", "from_user_name": "\\u304B\\u3089\\u3072\\u3088", "geo": null, "id": 148529779916808200, "id_str": "148529779916808192", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1117725285/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1117725285/image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\\u306F\\u3084\\u308F\\u304B\\u308AHadoop http://t.co/TuiiUQ9z", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:21:14 +0000", "from_user": "juanjoc", "from_user_id": 15924412, "from_user_id_str": "15924412", "from_user_name": "Juanjo Carmena", "geo": null, "id": 148528272563642370, "id_str": "148528272563642368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/58615733/FotoJJ_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/58615733/FotoJJ_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @davidsb: node, hadoop, mongo,java... ^^ RT @OpenAtMicrosoft: Microsoft announces Open Source updates to Windows Azure http://t.co/GkuqbusF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:18:56 +0000", "from_user": "esammer", "from_user_id": 9264352, "from_user_id_str": "9264352", "from_user_name": "Eric Sammer", "geo": null, "id": 148527696190779400, "id_str": "148527696190779392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/260959723/Photo_4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/260959723/Photo_4_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@vikasdp building indexes via MR is suboptimal (i.e. index update lag). better to fan out updates to both #hadoop and search infra.", "to_user": "vikasdp", "to_user_id": 152682018, "to_user_id_str": "152682018", "to_user_name": "Vikas Pandya", "in_reply_to_status_id": 148508758635589630, "in_reply_to_status_id_str": "148508758635589632"}, +{"created_at": "Sun, 18 Dec 2011 22:13:14 +0000", "from_user": "esammer", "from_user_id": 9264352, "from_user_id_str": "9264352", "from_user_name": "Eric Sammer", "geo": null, "id": 148526259553570800, "id_str": "148526259553570816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/260959723/Photo_4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/260959723/Photo_4_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @robdielemans: Great: Three Xebia Consulants are Certfied #Cloudera Developers in Apache Hadoop....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:09:04 +0000", "from_user": "cccc4d", "from_user_id": 334495560, "from_user_id_str": "334495560", "from_user_name": "Milton Colwell", "geo": null, "id": 148525210621063170, "id_str": "148525210621063168", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1471512767/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1471512767/profile_normal.png", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "\\u201CWindows Azure\\u3001Hadoop\\u3084Node.js\\u306A\\u3069\\u6709\\u540DOSS\\u3092\\u30B5\\u30DD\\u30FC\\u30C8 | \\u30A8\\u30F3\\u30BF\\u30FC\\u30D7\\u30E9\\u30A4\\u30BA | \\u30DE\\u30A4\\u30CA\\u30D3\\u30CB\\u30E5\\u30FC\\u30B9\\u201D http://t.co/URqJl1yd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:07:57 +0000", "from_user": "philipp_riemer", "from_user_id": 384276534, "from_user_id_str": "384276534", "from_user_name": "Philipp Riemer", "geo": null, "id": 148524929103577100, "id_str": "148524929103577088", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1571390293/photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1571390293/photo_normal.jpg", "source": "Zite Personalized Magazine", "text": "RT @HadoopNews: #Hadoop and Machine Learning http://t.co/hDoLA0kT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:00:09 +0000", "from_user": "robdielemans", "from_user_id": 14413229, "from_user_id_str": "14413229", "from_user_name": "Rob Dielemans", "geo": null, "id": 148522966609702900, "id_str": "148522966609702912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1678550926/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678550926/image_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "Great: Three Xebia Consulants are Certfied #Cloudera Developers in Apache Hadoop....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:44:06 +0000", "from_user": "spurpura", "from_user_id": 15138039, "from_user_id_str": "15138039", "from_user_name": "Stephen Purpura", "geo": null, "id": 148518927985672200, "id_str": "148518927985672193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/140858098/myHarvardpic_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/140858098/myHarvardpic_normal.JPG", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "I've already switched to Pig for data analytics. @whymicrosoft Azure Hadoop needs to support this.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:29:21 +0000", "from_user": "fatmusicbooster", "from_user_id": 157258048, "from_user_id_str": "157258048", "from_user_name": "Fatmusicbooster", "geo": null, "id": 148515216777424900, "id_str": "148515216777424896", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1660246415/2003-1-04-1a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660246415/2003-1-04-1a_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Microsoft Azure aloja Hadoop y otras aplicaciones de c\\u00F3digo abierto http://t.co/yJUuNyKD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:25:17 +0000", "from_user": "JonatBakerOther", "from_user_id": 352977860, "from_user_id_str": "352977860", "from_user_name": "Jonathon Baker", "geo": null, "id": 148514191035203600, "id_str": "148514191035203585", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1489870218/1313061302_vex-ccr_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1489870218/1313061302_vex-ccr_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Hadoop Meets JobServer - Big Data Job Scheduling - http://t.co/zHR8uvuJ http://t.co/rHXfmCHf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:20:48 +0000", "from_user": "conor_hayes", "from_user_id": 113016665, "from_user_id_str": "113016665", "from_user_name": "Conor Hayes", "geo": null, "id": 148513064210280450, "id_str": "148513064210280448", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1194380781/794159000aa547400691484473987629ef5c741c05e8777411d2724c72cd79e656ca8077_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1194380781/794159000aa547400691484473987629ef5c741c05e8777411d2724c72cd79e656ca8077_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ChrisDiehl: Modeling with Hadoop - KDD 2011 Tutorial - http://t.co/NfMNacWW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:20:01 +0000", "from_user": "JMcCormac", "from_user_id": 14227029, "from_user_id_str": "14227029", "from_user_name": "John McCormac", "geo": null, "id": 148512867203817470, "id_str": "148512867203817472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/224551153/hs1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/224551153/hs1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Got to start looking at Hadoop. Some combined historical tables in MySQL tables have about 1 billion rows of data.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:11:25 +0000", "from_user": "_marony", "from_user_id": 375382488, "from_user_id_str": "375382488", "from_user_name": "\\u307E\\u308D@\\u95A2\\u6570\\u578B\\u8A00\\u8A9E\\u52C9\\u5F37\\u4E2D", "geo": null, "id": 148510704310292480, "id_str": "148510704310292480", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1551453196/Twitter_____normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1551453196/Twitter_____normal.jpg", "source": "<a href="http://www.soicha.com" rel="nofollow">SOICHA</a>", "text": "\\u4ECA\\u65E5\\u306F\\u4F1A\\u793E\\u7740\\u3044\\u305F\\u3089\\u30D5\\u30E9\\u30F3\\u30AF\\u30EA\\u30F3\\u30D7\\u30E9\\u30F3\\u30CA\\u30FC\\u3092\\u30CD\\u30C3\\u30C8\\u3067\\u8CB7\\u3063\\u3066\\u3001\\u4ECA\\u632F\\u3089\\u308C\\u3066\\u308B\\u4ED5\\u4E8B\\u30921\\u6642\\u9593\\u304F\\u3089\\u3044\\u3067\\u3053\\u306A\\u3057\\u305F\\u3089Hadoop\\u3067\\u4F55\\u304B\\u30B5\\u30F3\\u30D7\\u30EB\\u3092\\u4F5C\\u308D\\u3046\\u3002\\u96F0\\u56F2\\u6C17\\u3092\\u77E5\\u3063\\u3066\\u3082\\u3089\\u3046\\u305F\\u3081\\u306B\\u306A\\u3093\\u304B\\u3044\\u3044\\u30B5\\u30F3\\u30D7\\u30EB\\u3092\\u8003\\u3048\\u306A\\u3051\\u308C\\u3070\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:09:44 +0000", "from_user": "fertapric", "from_user_id": 293662243, "from_user_id_str": "293662243", "from_user_name": "Fernando Tapia Rico", "geo": null, "id": 148510277648924670, "id_str": "148510277648924672", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1473101037/267716_1829753144543_1261796980_31489223_4599059_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1473101037/267716_1829753144543_1261796980_31489223_4599059_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Siempre has querido saber como funciona un HDFS Hadoop Distributed File Sytem? con este comic lo ver\\u00E1s claro http://t.co/ltKvAmD1 #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:09:36 +0000", "from_user": "shiumachi", "from_user_id": 11370182, "from_user_id_str": "11370182", "from_user_name": "Sho Shimauchi", "geo": null, "id": 148510246229393400, "id_str": "148510246229393410", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1112990537/2006-06-04_002_bigger_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1112990537/2006-06-04_002_bigger_normal.png", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "\"Hadoop\\u306F\\u3053\\u308C\\u3060\\u3051\\u5E83\\u304F\\u4F7F\\u308F\\u308C\\u3066\\u3044\\u308B\\u306B\\u3082\\u304B\\u304B\\u308F\\u3089\\u305A\\u3001\\u3069\\u3046\\u3082\\u516C\\u5F0F\\u306E\\u30C9\\u30AD\\u30E5\\u30E1\\u30F3\\u30C8\\u306F\\u60C5\\u5831\\u4E0D\\u8DB3\\u306E\\u3088\\u3046\\u306A\\u6C17\\u304C\\u3057\\u307E\\u3059\"JIRA\\u306B\\u300C\\u3053\\u306E\\u30C9\\u30AD\\u30E5\\u30E1\\u30F3\\u30C8\\u306D\\u30FC\\u3088\\u300D\\u3068\\u3044\\u3046\\u30C1\\u30B1\\u30C3\\u30C8\\u30AA\\u30FC\\u30D7\\u30F3\\u2192html\\u30DA\\u30FC\\u30B8\\u8FFD\\u52A0\\u306E\\u30D1\\u30C3\\u30C1\\u6295\\u7A3F\\u3001\\u3067\\u304A\\u9858\\u3044\\u3057\\u307E\\u3059 / \\u201Chadoo\\u2026\\u201D http://t.co/p6tgnvwq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:07:11 +0000", "from_user": "commandeura", "from_user_id": 223416203, "from_user_id_str": "223416203", "from_user_name": "Arnoud Commandeur", "geo": null, "id": 148509639871434750, "id_str": "148509639871434755", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1256010487/Naamloos_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1256010487/Naamloos_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @MicrosoftBI: I uploaded a @YouTube video http://t.co/WWiuQpFL Introduction to the Hadoop on Azure Interactive Hive Console", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:03:41 +0000", "from_user": "vikasdp", "from_user_id": 152682018, "from_user_id_str": "152682018", "from_user_name": "Vikas Pandya", "geo": null, "id": 148508758635589630, "id_str": "148508758635589632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1140915733/VP_twitter_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1140915733/VP_twitter_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@esammer @LucidImagineer @SolrLucene @shalinmangar looking for successful integration references/papers of Hadoop + Solr. Are there any?", "to_user": "esammer", "to_user_id": 9264352, "to_user_id_str": "9264352", "to_user_name": "Eric Sammer"}, +{"created_at": "Sun, 18 Dec 2011 21:01:25 +0000", "from_user": "pcis", "from_user_id": 17786911, "from_user_id_str": "17786911", "from_user_name": "PCIS", "geo": null, "id": 148508186637377540, "id_str": "148508186637377536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/507376974/pcis_yellow_2.jpeg_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/507376974/pcis_yellow_2.jpeg_normal.gif", "source": "<a href="http://www.prosyna.com" rel="nofollow">Prosyna</a>", "text": "#cloud Microsoft Tries Hadoop on Azure | Cloud Computing Journal - Maureen O'Gara the most read technology repo ... http://t.co/gAcOeN1G", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:00:48 +0000", "from_user": "venkat_sahasra", "from_user_id": 321575837, "from_user_id_str": "321575837", "from_user_name": "Venkat Prasad", "geo": null, "id": 148508031456509950, "id_str": "148508031456509952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1406743308/logo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1406743308/logo_normal.gif", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Looking for a Hadoop Training Program in Quincy, MA http://t.co/ssNfR1kj #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:55:18 +0000", "from_user": "agazzarini", "from_user_id": 265836752, "from_user_id_str": "265836752", "from_user_name": "Andrea Gazzarini", "geo": null, "id": 148506648690966530, "id_str": "148506648690966528", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1271944422/a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1271944422/a_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@ljannace devi a-s-s-o-l-u-t-a-m-e-n-t-e guardarti hadoop...tu ci crei qualche mostro", "to_user": "ljannace", "to_user_id": 350176280, "to_user_id_str": "350176280", "to_user_name": "Luca Jannace"}, +{"created_at": "Sun, 18 Dec 2011 20:52:39 +0000", "from_user": "seattledawson", "from_user_id": 72942381, "from_user_id_str": "72942381", "from_user_name": "Margaret Dawson", "geo": null, "id": 148505982316707840, "id_str": "148505982316707840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/406749705/P6060007_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/406749705/P6060007_normal.JPG", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @jameskobielus: Year ahead in #BigData ? #Hadoop deployments grow 10x. Graph DB mania 4 influence mining. Cloud #EDW goes mainstream. Data science in vogue", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:38:38 +0000", "from_user": "jasonbaldridge", "from_user_id": 119837224, "from_user_id_str": "119837224", "from_user_name": "Jason Baldridge", "geo": null, "id": 148502453401288700, "id_str": "148502453401288704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1269490811/jason_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1269490811/jason_normal.jpg", "source": "<a href="http://www.slideshare.net/" rel="nofollow">Slideshare</a>", "text": "RT @slideshare: 'Hadoop and Machine Learning' is featured on our homepage. http://t.co/lkuEIFPn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:36:42 +0000", "from_user": "AltaModaTech", "from_user_id": 208734645, "from_user_id_str": "208734645", "from_user_name": "AltaModa Tech.", "geo": null, "id": 148501966308380670, "id_str": "148501966308380673", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1153738147/Duomo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1153738147/Duomo_normal.JPG", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @stojanovic: Carl Nolan blog on using #Hadoop on #Azure service and its #JavaScript shell for data visualization: http://t.co/5ida1s9s", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:35:18 +0000", "from_user": "diegosevilla", "from_user_id": 14180784, "from_user_id_str": "14180784", "from_user_name": "Diego Sevilla Ruiz", "geo": null, "id": 148501614607613950, "id_str": "148501614607613953", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1447462735/48947_871895296_3078648_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1447462735/48947_871895296_3078648_q_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @domnikl: map reduce in ~5 minutes http://t.co/1IdXDrD4 #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:20:48 +0000", "from_user": "jameskobielus", "from_user_id": 14072398, "from_user_id_str": "14072398", "from_user_name": "jameskobielus", "geo": null, "id": 148497965017874430, "id_str": "148497965017874433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1398007310/James_Kobielus_official_forrester_photo_june_2011_cropped_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1398007310/James_Kobielus_official_forrester_photo_june_2011_cropped_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Year ahead in #BigData ? #Hadoop deployments grow 10x. Graph DB mania 4 influence mining. Cloud #EDW goes mainstream. Data science in vogue", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:20:29 +0000", "from_user": "OttmarAmann", "from_user_id": 237624488, "from_user_id_str": "237624488", "from_user_name": "Ottmar Amann", "geo": null, "id": 148497883853889540, "id_str": "148497883853889537", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1261125785/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1261125785/image_normal.jpg", "source": "<a href="http://www.visibli.com" rel="nofollow">Visibli</a>", "text": "RT @commoncrawl: MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl by @stevesalevan http://t.co/9ylVwsSo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:19:07 +0000", "from_user": "mattwalters5", "from_user_id": 34128038, "from_user_id_str": "34128038", "from_user_name": "Matt Walters", "geo": null, "id": 148497540206178300, "id_str": "148497540206178304", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1460915273/c250f0430c58d68fe3d11f1061acef29_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1460915273/c250f0430c58d68fe3d11f1061acef29_normal.png", "source": "<a href="http://shelby.tv" rel="nofollow">ShelbyTV</a>", "text": "Wicked vid of hadoop via javascript on Azure http://t.co/cg81WL74", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:17:09 +0000", "from_user": "Geoffmuse", "from_user_id": 35592012, "from_user_id_str": "35592012", "from_user_name": "Geoff Barker", "geo": null, "id": 148497046431735800, "id_str": "148497046431735809", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/524126534/gray184809_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/524126534/gray184809_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT Using #Hadoop on Azure JS Console for Data Visualizations http://t.co/iYsPGsUT @HadoopNews", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:16:37 +0000", "from_user": "pmolinam", "from_user_id": 156225514, "from_user_id_str": "156225514", "from_user_name": "Pedro J. Molina", "geo": null, "id": 148496911740047360, "id_str": "148496911740047361", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1109269729/3b35f03f-866e-4105-afaa-c51b7c2e2363_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1109269729/3b35f03f-866e-4105-afaa-c51b7c2e2363_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @domnikl: map reduce in ~5 minutes http://t.co/1IdXDrD4 #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:15:58 +0000", "from_user": "pharkmillups", "from_user_id": 29777587, "from_user_id_str": "29777587", "from_user_name": "Mark Phillips", "geo": null, "id": 148496747482722300, "id_str": "148496747482722304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1622470871/pharksplosion_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622470871/pharksplosion_bigger_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@tnm replacing it with Hadoop?", "to_user": "tnm", "to_user_id": 77009486, "to_user_id_str": "77009486", "to_user_name": "Ted Nyman", "in_reply_to_status_id": 148496530444255230, "in_reply_to_status_id_str": "148496530444255232"}, +{"created_at": "Sun, 18 Dec 2011 20:12:15 +0000", "from_user": "efoncubierta", "from_user_id": 113486984, "from_user_id_str": "113486984", "from_user_name": "Ezequiel Foncubierta", "geo": null, "id": 148495813058904060, "id_str": "148495813058904064", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1234094541/che_foto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1234094541/che_foto_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @domnikl: map reduce in ~5 minutes http://t.co/1IdXDrD4 #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:10:47 +0000", "from_user": "TechnoMile", "from_user_id": 89779407, "from_user_id_str": "89779407", "from_user_name": "TechnoMile LLC", "geo": null, "id": 148495443909812220, "id_str": "148495443909812225", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1187113101/techomile_normal_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1187113101/techomile_normal_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure - SYS-CON Media (press release) http://t.co/mXx3RIS7http://twit... http://t.co/EKBUR7oL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:08:59 +0000", "from_user": "HadoopNews", "from_user_id": 251816878, "from_user_id_str": "251816878", "from_user_name": "John Ching", "geo": null, "id": 148494989553446900, "id_str": "148494989553446912", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1244235692/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1244235692/images_normal.jpg", "source": "Zite Personalized Magazine", "text": "#Hadoop and Machine Learning http://t.co/hDoLA0kT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:08:58 +0000", "from_user": "ajlopez", "from_user_id": 14567622, "from_user_id_str": "14567622", "from_user_name": "ajlopez", "geo": null, "id": 148494986453856260, "id_str": "148494986453856257", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/53769404/spiral_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/53769404/spiral_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @domnikl: map reduce in ~5 minutes http://t.co/1IdXDrD4 #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:08:01 +0000", "from_user": "domnikl", "from_user_id": 39023394, "from_user_id_str": "39023394", "from_user_name": "Dominik Liebler", "geo": null, "id": 148494746275430400, "id_str": "148494746275430401", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1662889392/316781_311993388819884_100000276778047_1195762_1888202128_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662889392/316781_311993388819884_100000276778047_1195762_1888202128_n_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "map reduce in ~5 minutes http://t.co/1IdXDrD4 #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:06:54 +0000", "from_user": "HadoopNews", "from_user_id": 251816878, "from_user_id_str": "251816878", "from_user_name": "John Ching", "geo": null, "id": 148494466150432770, "id_str": "148494466150432768", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1244235692/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1244235692/images_normal.jpg", "source": "Zite Personalized Magazine", "text": "Using #Hadoop on Azure JS Console for Data Visualizations http://t.co/GAm4BbWb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:02:29 +0000", "from_user": "GoodZipprfour", "from_user_id": 265812516, "from_user_id_str": "265812516", "from_user_name": "GoodZipprfour", "geo": null, "id": 148493357583306750, "id_str": "148493357583306752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1277063559/avatar-137-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1277063559/avatar-137-2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure - SYS-CON Media (press release) http://t.co/mXx3RIS7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:00:15 +0000", "from_user": "NunoGodinho", "from_user_id": 9971382, "from_user_id_str": "9971382", "from_user_name": "Nuno Godinho", "geo": null, "id": 148492793738838000, "id_str": "148492793738838016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/831407287/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/831407287/twitterProfilePhoto_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "RT @mikepluta: Windows Azure Adds Node.js Support, Hadoop Preview - ReadWriteCloud http://t.co/hMkHpxtS #hadoop #azure", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:00:15 +0000", "from_user": "NunoGodinho", "from_user_id": 9971382, "from_user_id_str": "9971382", "from_user_name": "Nuno Godinho", "geo": null, "id": 148492793462001660, "id_str": "148492793462001665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/831407287/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/831407287/twitterProfilePhoto_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @stojanovic: Carl Nolan has a blog on using our #Hadoop on #Azure service and its #JavaScript shell for data visualization: http://t.co/qZeEO2EH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:48:55 +0000", "from_user": "jangelfdez", "from_user_id": 437359209, "from_user_id_str": "437359209", "from_user_name": "Jos\\u00E9 \\u00C1ngel Fern\\u00E1ndez", "geo": null, "id": 148489941733752830, "id_str": "148489941733752832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694406528/foto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694406528/foto_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @davidsb: node, hadoop, mongo,java... ^^ RT @OpenAtMicrosoft: Microsoft announces Open Source updates to Windows Azure http://t.co/GkuqbusF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:48:21 +0000", "from_user": "nzhiltsov", "from_user_id": 153506820, "from_user_id_str": "153506820", "from_user_name": "Nikita Zhiltsov", "geo": null, "id": 148489797554536450, "id_str": "148489797554536449", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675725290/tw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675725290/tw_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nicolastorzec: #Hadoop and Machine Learning, by Josh wills (@Josh_Wills), Tom Pierce & Jeff Hammerbach from Cloudera. Lot of links... http://t.co/25pzL3QR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:47:01 +0000", "from_user": "jcgm1978", "from_user_id": 120030580, "from_user_id_str": "120030580", "from_user_name": "Juan Carlos Gonz\\u00E1lez", "geo": null, "id": 148489461330755600, "id_str": "148489461330755585", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/733553691/Jc_Gonzalez_Foto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/733553691/Jc_Gonzalez_Foto_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @davidsb: node, hadoop, mongo,java... ^^ RT @OpenAtMicrosoft: Microsoft announces Open Source updates to Windows Azure http://t.co/GkuqbusF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:46:38 +0000", "from_user": "mikepluta", "from_user_id": 15150700, "from_user_id_str": "15150700", "from_user_name": "Mike Pluta", "geo": null, "id": 148489367432871940, "id_str": "148489367432871936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1584807716/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584807716/image_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "Windows Azure Adds Node.js Support, Hadoop Preview - ReadWriteCloud http://t.co/hMkHpxtS #hadoop #azure", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:44:51 +0000", "from_user": "stojanovic", "from_user_id": 4242501, "from_user_id_str": "4242501", "from_user_name": "Alexander Stojanovic", "geo": null, "id": 148488916704567300, "id_str": "148488916704567296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1614552290/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1614552290/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Carl Nolan has a blog on using our #Hadoop on #Azure service and its #JavaScript shell for data visualization: http://t.co/qZeEO2EH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:41:56 +0000", "from_user": "holdecon", "from_user_id": 323906804, "from_user_id_str": "323906804", "from_user_name": "Holden Conkle", "geo": null, "id": 148488183976435700, "id_str": "148488183976435713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1412790189/1309021322_image5_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1412790189/1309021322_image5_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Cloudera Expands Enterprise Management Software For Apache Hadoop With End-to-End Visibility for Big Data Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:39:26 +0000", "from_user": "stalln", "from_user_id": 16930382, "from_user_id_str": "16930382", "from_user_name": "Stallon Selvan", "geo": null, "id": 148487556651159550, "id_str": "148487556651159552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1650431145/320892_10150376427431777_637556776_8872952_99127909_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650431145/320892_10150376427431777_637556776_8872952_99127909_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @NathanMilford: sun-java-6 to be forcibly replaced by openjdk soon, Ubuntu users of Cassandra and Hadoop, have fun. http://t.co/XcYOk325", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:27:11 +0000", "from_user": "davidsb", "from_user_id": 9628892, "from_user_id_str": "9628892", "from_user_name": "David Salgado", "geo": null, "id": 148484470339682300, "id_str": "148484470339682304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1597731734/Untitled_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1597731734/Untitled_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "node, hadoop, mongo,java... ^^ RT @OpenAtMicrosoft: Microsoft announces Open Source updates to Windows Azure http://t.co/GkuqbusF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:25:21 +0000", "from_user": "NathanMilford", "from_user_id": 17096307, "from_user_id_str": "17096307", "from_user_name": "Nathan Milford", "geo": null, "id": 148484009310175230, "id_str": "148484009310175233", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/210996088/nathan.mangatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/210996088/nathan.mangatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "sun-java-6 to be forcibly replaced by openjdk soon, Ubuntu users of Cassandra and Hadoop, have fun. http://t.co/XcYOk325", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:23:10 +0000", "from_user": "AliRebai", "from_user_id": 194081605, "from_user_id_str": "194081605", "from_user_name": "Ali Rebai", "geo": null, "id": 148483461848645630, "id_str": "148483461848645633", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1669539394/twiter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669539394/twiter_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Please +K my influence in #Hadoop on @klout http://t.co/rcXhg1SO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:13:06 +0000", "from_user": "brmjt", "from_user_id": 378532465, "from_user_id_str": "378532465", "from_user_name": "brmjt", "geo": null, "id": 148480925850804220, "id_str": "148480925850804224", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1555980356/195740_185383814808775_4031577_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555980356/195740_185383814808775_4031577_n_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "hadoop in 20 pages http://t.co/EfdtTJZu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:11:22 +0000", "from_user": "mstrohm", "from_user_id": 14065835, "from_user_id_str": "14065835", "from_user_name": "Markus Strohmaier", "geo": null, "id": 148480490343641100, "id_str": "148480490343641089", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1140628345/5x5_1_small_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1140628345/5x5_1_small_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ChrisDiehl: Modeling with Hadoop - KDD 2011 Tutorial - http://t.co/NfMNacWW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:53:00 +0000", "from_user": "BusinAnalyGQQ", "from_user_id": 384530432, "from_user_id_str": "384530432", "from_user_name": "Perla Sarmiento", "geo": null, "id": 148475869717999600, "id_str": "148475869717999616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1611282732/1319807705_business-analytics_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611282732/1319807705_business-analytics_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Greenplum previews unified Hadoop biz-intel stack", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Sun, 18 Dec 2011 18:41:20 +0000", "from_user": "nicolastorzec", "from_user_id": 61111487, "from_user_id_str": "61111487", "from_user_name": "Nicolas Torzec", "geo": null, "id": 148472934271430660, "id_str": "148472934271430656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1525441753/Photo_on_2011-09-02_at_11.47__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1525441753/Photo_on_2011-09-02_at_11.47__2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Hadoop and Machine Learning, by Josh wills (@Josh_Wills), Tom Pierce & Jeff Hammerbach from Cloudera. Lot of links... http://t.co/25pzL3QR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:40:06 +0000", "from_user": "nugenSERVER", "from_user_id": 356873775, "from_user_id_str": "356873775", "from_user_name": "nugenSERVER", "geo": null, "id": 148472622072610800, "id_str": "148472622072610816", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u041F\\u0440\\u043E\\u0433\\u043D\\u043E\\u0437\\u0438\\u0440\\u0443\\u0435\\u043C\\u044B\\u0439 \\u0433\\u0440\\u0430\\u0444\\u0438\\u043A \\u0440\\u043E\\u0441\\u0442\\u0430 \\u0434\\u043E\\u043B\\u0438 \\u0441\\u0438\\u0441\\u0442\\u0435\\u043C \\u0445\\u0440\\u0430\\u043D\\u0435\\u043D\\u0438\\u044F \\u043D\\u0430 \\u0430\\u0440\\u0445\\u0438\\u0442\\u0435\\u043A\\u0442\\u0443\\u0440\\u0435 #Hadoop http://t.co/sFwVKqGz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:36:53 +0000", "from_user": "dataPlumbers", "from_user_id": 134805315, "from_user_id_str": "134805315", "from_user_name": "Sanjeev Kumar", "geo": null, "id": 148471812269948930, "id_str": "148471812269948928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:32:24 +0000", "from_user": "jobs77", "from_user_id": 71461219, "from_user_id_str": "71461219", "from_user_name": "jobs77", "geo": null, "id": 148470685914763260, "id_str": "148470685914763264", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/520756748/5_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/520756748/5_normal.gif", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Hadoop and Big Data Cloud: Software Engineer Job (Beijing, CN, China) http://t.co/8h459aID", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:30:56 +0000", "from_user": "Cloud9s", "from_user_id": 14759893, "from_user_id_str": "14759893", "from_user_name": "Kevin Haynes", "geo": null, "id": 148470318007189500, "id_str": "148470318007189505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1333766120/Kevin_sun_glasses_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1333766120/Kevin_sun_glasses_normal.jpg", "source": "<a href="http://paper.li" rel="nofollow">Paper.li</a>", "text": "Hadoop News and Influencers is out! http://t.co/kWfOYKZF \\u25B8 Top stories today via @danieldeluca @cheriejobtweets @subhashkolluru", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:26:03 +0000", "from_user": "AnishaTiczon", "from_user_id": 341950685, "from_user_id_str": "341950685", "from_user_name": "Anisha Ticzon", "geo": null, "id": 148469087146754050, "id_str": "148469087146754048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1459573870/anisha_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1459573870/anisha_500_normal.jpg", "source": "<a href="http://suhastech.com/tr" rel="nofollow">Tweet Random</a>", "text": "24 Interview Questions & Answers for Hadoop developers http://t.co/toflNL7m", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:26:02 +0000", "from_user": "RichardDawkins5", "from_user_id": 341947256, "from_user_id_str": "341947256", "from_user_name": "Richard Dawkins", "geo": null, "id": 148469084550471680, "id_str": "148469084550471680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1459560229/RichardDawkins_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1459560229/RichardDawkins_normal.jpg", "source": "<a href="http://suhastech.com/tr" rel="nofollow">Tweet Random</a>", "text": "24 Interview Questions & Answers for Hadoop developers http://t.co/UMtKx2Va", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:16:11 +0000", "from_user": "TechAssoc", "from_user_id": 92243805, "from_user_id_str": "92243805", "from_user_name": "TechnologyAssociates", "geo": null, "id": 148466604420759550, "id_str": "148466604420759552", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/659762257/Technology_Asso_arrowsv2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/659762257/Technology_Asso_arrowsv2_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "Using Hadoop on Azure JS Console for Data Visualizations http://t.co/Nlo9aG25", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:10:51 +0000", "from_user": "sharmask95", "from_user_id": 100018813, "from_user_id_str": "100018813", "from_user_name": "sanjeev Sharma", "geo": null, "id": 148465260326690800, "id_str": "148465260326690816", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/848542430/photo1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/848542430/photo1_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "Principal Architect - Hadoop - Gurgaon: http://t.co/kgsyArsx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:08:41 +0000", "from_user": "Lindy_Ryan", "from_user_id": 195508584, "from_user_id_str": "195508584", "from_user_name": "Lindy Ryan", "geo": null, "id": 148464718703628300, "id_str": "148464718703628288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682433128/090912_0007Lindy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682433128/090912_0007Lindy_normal.jpg", "source": "<a href="http://tweetmeme.com" rel="nofollow">TweetMeme</a>", "text": "RT @williammcknight: Pig and Hadoop support in Amazon Elastic MapReduce http://t.co/8OUCaXFR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:02:00 +0000", "from_user": "signedbyte", "from_user_id": 21605705, "from_user_id_str": "21605705", "from_user_name": "Richard Miller", "geo": null, "id": 148463035307139070, "id_str": "148463035307139072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1240440519/AndroidNRuby_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1240440519/AndroidNRuby_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:01:47 +0000", "from_user": "stackfeed", "from_user_id": 237310237, "from_user_id_str": "237310237", "from_user_name": "StackOverflow", "geo": null, "id": 148462979095076860, "id_str": "148462979095076864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Request Apache Accumulo error help using Hadoop and Zookeeper in a test environment: I am setting up a test envi... http://t.co/SAyhlTph", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:00:32 +0000", "from_user": "kellycopson", "from_user_id": 367074993, "from_user_id_str": "367074993", "from_user_name": "kelly", "geo": null, "id": 148462667760279550, "id_str": "148462667760279553", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1526353507/kelly_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1526353507/kelly_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Using Hadoop on Azure JS Console for Data Visualizations http://t.co/RqPO04ce Cloud Computing", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:56:29 +0000", "from_user": "chain", "from_user_id": 13049522, "from_user_id_str": "13049522", "from_user_name": "Antonio Rivas", "geo": null, "id": 148461647864938500, "id_str": "148461647864938497", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1326225474/215D6832-75FE-42AD-A3E6-1DD7BB0609A2_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1326225474/215D6832-75FE-42AD-A3E6-1DD7BB0609A2_normal", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "Muchas gracias! :) RT @bifacil: Excelente introducci\\u00F1on a Hadoop en proyectos BI http://t.co/qPqvjWCn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:48:20 +0000", "from_user": "lacarraro", "from_user_id": 42305202, "from_user_id_str": "42305202", "from_user_name": "Luiz Carraro", "geo": null, "id": 148459594639872000, "id_str": "148459594639872000", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1544848012/msn_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544848012/msn_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Excelente introdu\\u00E7\\u00E3o ao cluster hadoop -> Hadoop and Machine Learning http://t.co/VNwe3Z10", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:47:06 +0000", "from_user": "devseo", "from_user_id": 37402072, "from_user_id_str": "37402072", "from_user_name": "Alex Hall", "geo": +{"coordinates": [54.0633,-2.8842], "type": "Point"}, "id": 148459284211040260, "id_str": "148459284211040256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/634743139/d-logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/634743139/d-logo_normal.jpg", "source": "<a href="http://www.tweetywall.com" rel="nofollow">Tweetywall</a>", "text": "http://t.co/9B439MvH - Hadoop World 2011 - Summary of Day 2 (Closing Day)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:41:15 +0000", "from_user": "ebastien", "from_user_id": 61743315, "from_user_id_str": "61743315", "from_user_name": "Emmanuel Bastien", "geo": null, "id": 148457813415444480, "id_str": "148457813415444480", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1455152674/gp-manu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1455152674/gp-manu_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @nmaillot: Hadoop and Machine Learning - http://t.co/0U6iT0oN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:37:43 +0000", "from_user": "passingloop", "from_user_id": 347699447, "from_user_id_str": "347699447", "from_user_name": "passingloop", "geo": null, "id": 148456925305110530, "id_str": "148456925305110528", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1478397782/20110805_narundamon200_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1478397782/20110805_narundamon200_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "\\u30CE\\u30FC\\u30C1\\u30E9\\u30B9\\u3001Hadoop\\u30C7\\u30A3\\u30B9\\u30C8\\u30EA\\u30D3\\u30E5\\u30FC\\u30B7\\u30E7\\u30F3\\u306E\\u5546\\u7528\\u30B5\\u30DD\\u30FC\\u30C8\\u3092\\u958B\\u59CB\\uFF08\\u30CB\\u30E5\\u30FC\\u30B9\\uFF09 - Cloudera \\u306F NTT \\u30C7\\u30FC\\u30BF\\u304B\\u3089\\u4ED5\\u5165\\u308C\\u308B\\u5F62\\u306B\\u306A\\u308B\\u306E\\u304B\\u3057\\u3089\\uFF1F\\u304B\\u305F\\u3061\\u306E\\u3046\\u3048\\u3067\\u306F\\u3002 http://t.co/pI3eS07K", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:34:46 +0000", "from_user": "bifacil", "from_user_id": 87935794, "from_user_id_str": "87935794", "from_user_name": "BI FACIL", "geo": null, "id": 148456179947929600, "id_str": "148456179947929600", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/810344243/logo-b2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/810344243/logo-b2_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "MapReduce, tal cual, requiere que escribamos un mont\\u00F3n de c\\u00F3digo (y no vale SQL) http://t.co/helO85Nq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:34:10 +0000", "from_user": "bifacil", "from_user_id": 87935794, "from_user_id_str": "87935794", "from_user_name": "BI FACIL", "geo": null, "id": 148456030257414140, "id_str": "148456030257414144", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/810344243/logo-b2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/810344243/logo-b2_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Excelente introducci\\u00F1on a Hadoop en proyectos BI http://t.co/helO85Nq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:31:52 +0000", "from_user": "mattmcknight", "from_user_id": 5402722, "from_user_id_str": "5402722", "from_user_name": "matt mcknight", "geo": null, "id": 148455451837739000, "id_str": "148455451837739008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1210711155/matty_010911_0005_lowq__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1210711155/matty_010911_0005_lowq__1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:25:27 +0000", "from_user": "carl_nolan", "from_user_id": 229081931, "from_user_id_str": "229081931", "from_user_name": "Carl Nolan", "geo": null, "id": 148453834774167550, "id_str": "148453834774167553", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1640851918/Avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640851918/Avatar_normal.png", "source": "<a href="http://explore.live.com/windows-live-writer" rel="nofollow">Windows Live Writer</a>", "text": "New blog post: http://t.co/hxL23yDj - Using Hadoop on Azure JS Console for Data Visualizations", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:19:49 +0000", "from_user": "arthur3131", "from_user_id": 14300960, "from_user_id_str": "14300960", "from_user_name": "Andreas", "geo": null, "id": 148452417829220350, "id_str": "148452417829220352", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1136625362/aho_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1136625362/aho_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ChrisDiehl: Modeling with Hadoop - KDD 2011 Tutorial - http://t.co/NfMNacWW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:17:33 +0000", "from_user": "aoetk", "from_user_id": 23193872, "from_user_id_str": "23193872", "from_user_name": "AOE Takashi", "geo": null, "id": 148451847202541570, "id_str": "148451847202541568", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/112831123/qoo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/112831123/qoo_normal.jpg", "source": "<a href="http://www.zusaar.com/" rel="nofollow">Zusaar</a>", "text": "19\\u65E5\\u76EE\\u66F8\\u304D\\u307E\\u3057\\u305F\\u3002\\u30E9\\u30C3\\u30AF\\u8A8D\\u8B58\\u8A2D\\u5B9A\\u90E8\\u5206\\u306E\\u30BD\\u30FC\\u30B9\\u3092\\u8FFD\\u3044\\u304B\\u3051\\u305F\\u3068\\u304D\\u306E\\u30E1\\u30E2\\u3067\\u3059\\u3002 http://t.co/lqPAdKXb / hadoop\\u30A2\\u30C9\\u30D9\\u30F3\\u30C8\\u30AB\\u30EC\\u30F3\\u30C0\\u30FC2011 http://t.co/mLoAhsZW #zusaar", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:15:47 +0000", "from_user": "aoetk", "from_user_id": 23193872, "from_user_id_str": "23193872", "from_user_name": "AOE Takashi", "geo": null, "id": 148451402690199550, "id_str": "148451402690199552", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/112831123/qoo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/112831123/qoo_normal.jpg", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "hadoop\\u30A2\\u30C9\\u30D9\\u30F3\\u30C8\\u30AB\\u30EC\\u30F3\\u30C0\\u30FC2011 \\u306E19\\u65E5\\u76EE\\u3092\\u66F8\\u304D\\u307E\\u3057\\u305F\\u3002\\u30E9\\u30C3\\u30AF\\u8A8D\\u8B58\\u8A2D\\u5B9A\\u306B\\u3064\\u3044\\u3066\\u8ABF\\u3079\\u305F\\u6642\\u306E\\u30E1\\u30E2\\u3067\\u3059\\u3002 http://t.co/lqPAdKXb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:10:11 +0000", "from_user": "robymuhamad", "from_user_id": 21537777, "from_user_id_str": "21537777", "from_user_name": "Roby", "geo": null, "id": 148449993760583680, "id_str": "148449993760583680", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1629927631/beruang_halus_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629927631/beruang_halus_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@lurino hadoop", "to_user": "lurino", "to_user_id": 243580387, "to_user_id_str": "243580387", "to_user_name": "Yuki Joji", "in_reply_to_status_id": 148448585439133700, "in_reply_to_status_id_str": "148448585439133696"}, +{"created_at": "Sun, 18 Dec 2011 16:40:55 +0000", "from_user": "scottdunlop", "from_user_id": 25550110, "from_user_id_str": "25550110", "from_user_name": "Scott Dunlop", "geo": null, "id": 148442629930106880, "id_str": "148442629930106880", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/104874078/blogscott_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/104874078/blogscott_normal.jpg", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Big data Software Engineers - Java, RoR, Hadoop, Cassandra, Solr, Machine Learni... http://t.co/eZYCuslj #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:40:31 +0000", "from_user": "DBA_J", "from_user_id": 263132351, "from_user_id_str": "263132351", "from_user_name": "Jason Williams", "geo": null, "id": 148442527035424770, "id_str": "148442527035424768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1430694923/JasonWilliams_appointments_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1430694923/JasonWilliams_appointments_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Microsoft updates #Azure with SDK and #Hadoop preview http://t.co/SBUjEmfY via @regvulture", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:33:00 +0000", "from_user": "Gulshan1082", "from_user_id": 364304358, "from_user_id_str": "364304358", "from_user_name": "Gulshan Chaudhary", "geo": null, "id": 148440637929295870, "id_str": "148440637929295873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Are you a good fit for this job? Java Engineer with Hadoop in San Jose, CA http://t.co/2YcJx1qj #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:32:44 +0000", "from_user": "bradoop", "from_user_id": 84117884, "from_user_id_str": "84117884", "from_user_name": "Brad Sarsfield", "geo": null, "id": 148440569541173250, "id_str": "148440569541173248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/483171997/bradsa_jpg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/483171997/bradsa_jpg_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @MicrosoftBI: I uploaded a @YouTube video http://t.co/WWiuQpFL Introduction to the Hadoop on Azure Interactive Hive Console", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:29:18 +0000", "from_user": "Cloud9s", "from_user_id": 14759893, "from_user_id_str": "14759893", "from_user_name": "Kevin Haynes", "geo": null, "id": 148439705225138180, "id_str": "148439705225138176", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1333766120/Kevin_sun_glasses_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1333766120/Kevin_sun_glasses_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Hadoop and Machine Learning http://t.co/h4zfD53w", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:28:17 +0000", "from_user": "NeilRaden", "from_user_id": 15160685, "from_user_id_str": "15160685", "from_user_name": "Neil Raden", "geo": null, "id": 148439448852500480, "id_str": "148439448852500480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696638797/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696638797/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "[1] Many better Hadoop's emerging. Here's one. Reshef, DN et al. Detecting novel associations in large data sets. Science, Dec 15, 2011", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:25:47 +0000", "from_user": "rubiq", "from_user_id": 40761580, "from_user_id_str": "40761580", "from_user_name": "Gema R. Quintana", "geo": null, "id": 148438823024603140, "id_str": "148438823024603136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682565916/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682565916/image_normal.jpg", "source": "<a href="http://www.slideshare.net/" rel="nofollow">Slideshare</a>", "text": "RT @slideshare: 'Hadoop and Machine Learning' is featured on our homepage. http://t.co/lkuEIFPn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:20:35 +0000", "from_user": "d8Pit", "from_user_id": 264394701, "from_user_id_str": "264394701", "from_user_name": "The URL Popularizer", "geo": null, "id": 148437512967303170, "id_str": "148437512967303168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317284522/logo-header_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317284522/logo-header_normal.png", "source": "<a href="http://d8p.it" rel="nofollow">d8P</a>", "text": "RT @Cloud4Backup: Pig and Hadoop support in Amazon Elastic MapReduce - iProgrammer #cloud | http://t.co/P1IwL4zY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:19:31 +0000", "from_user": "danieldeluca", "from_user_id": 14715465, "from_user_id_str": "14715465", "from_user_name": "Daniel De Luca", "geo": +{"coordinates": [50.6537,4.5574], "type": "Point"}, "id": 148437244145971200, "id_str": "148437244145971200", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1210005546/dad-01_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1210005546/dad-01_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Introducing #hadoop (#NoSQL) in 20 pages. - http://t.co/hQuxmEMw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:18:47 +0000", "from_user": "solm", "from_user_id": 15683363, "from_user_id_str": "15683363", "from_user_name": "Thomas K", "geo": null, "id": 148437060066361340, "id_str": "148437060066361344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680233762/IMG_1486_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680233762/IMG_1486_normal.JPG", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Add another server to my Hadoop cluster. Up to 4 now. Amazon better start looking over their should.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:18:05 +0000", "from_user": "Cloud4Backup", "from_user_id": 47576906, "from_user_id_str": "47576906", "from_user_name": "Cloud For Backup", "geo": null, "id": 148436885478449150, "id_str": "148436885478449153", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1446547785/cloud_backup_1__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1446547785/cloud_backup_1__normal.png", "source": "<a href="http://www.whisthis.com" rel="nofollow">Graphene</a>", "text": "Pig and Hadoop support in Amazon Elastic MapReduce - iProgrammer http://t.co/901l8kss #cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:15:33 +0000", "from_user": "brianscourtney", "from_user_id": 16708226, "from_user_id_str": "16708226", "from_user_name": "Brian Courtney", "geo": null, "id": 148436247805820930, "id_str": "148436247805820928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/69330716/bri_crop_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/69330716/bri_crop_copy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#GE tests #Proficy Historian 4.5 against other big data solutions for time series data and Historian comes out on top. http://t.co/t73Gk8qw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:07:11 +0000", "from_user": "Chris_W_Jones", "from_user_id": 309151440, "from_user_id_str": "309151440", "from_user_name": "chris jones", "geo": null, "id": 148434141740924930, "id_str": "148434141740924928", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1672168747/1_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672168747/1_normal.gif", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @dpatil: oh yeah! \\u201C@mndoci: Hadoop and Pig at LinkedIn SNA http://t.co/KydyTQYE\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:53:09 +0000", "from_user": "snuffkin", "from_user_id": 12746012, "from_user_id_str": "12746012", "from_user_name": "Satoyuki Tsukano", "geo": null, "id": 148430608765435900, "id_str": "148430608765435904", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1592853925/180895_1827145360343_1291578006_2134016_3850008_a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592853925/180895_1827145360343_1291578006_2134016_3850008_a_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Hadoop Advent Calendar 2011\\u306E18\\u65E5\\u76EE\\u3092\\u6295\\u7A3F\\u3057\\u307E\\u3057\\u305F\\u3002\\u300CYARN\\u306E\\u65B0\\u6A5F\\u80FD Capacity Scheduler\\u300D http://t.co/yNT2nrIe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:48:33 +0000", "from_user": "kebomix", "from_user_id": 20355067, "from_user_id_str": "20355067", "from_user_name": "Ahmed Attyah", "geo": null, "id": 148429451133337600, "id_str": "148429451133337601", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1457667607/2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1457667607/2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/UDztPAf9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:48:07 +0000", "from_user": "mwexler", "from_user_id": 14179048, "from_user_id_str": "14179048", "from_user_name": "Michael Wexler", "geo": null, "id": 148429343687835650, "id_str": "148429343687835648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/52943728/headshot-goofy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/52943728/headshot-goofy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "GREAT preso on Hadoop and Machine Learning: very honest about where Hadoop helps and where it won't... yet. http://t.co/tJkaEuRu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:47:00 +0000", "from_user": "pen_sugar", "from_user_id": 291785501, "from_user_id_str": "291785501", "from_user_name": "pen_sugar", "geo": null, "id": 148429059997696000, "id_str": "148429059997696000", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1377638077/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1377638077/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Hadoop\\u306A\\u65E5\\u3067\\u3082\\u3042\\u3063\\u305F\\u3002\\u307E\\u3060\\u307E\\u3060\\u52C9\\u5F37\\u4E0D\\u8DB3\\u3002\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:46:46 +0000", "from_user": "Whitbyvu", "from_user_id": 395387423, "from_user_id_str": "395387423", "from_user_name": "Genevieve Whitby", "geo": null, "id": 148429002741252100, "id_str": "148429002741252096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1599591995/MFC-2799_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599591995/MFC-2799_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hadoop: The Definitive Guide: Hadoop: The Definitive Guide helps you harness the power of your data. Ideal for p... http://t.co/Rutiv2N9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:36:55 +0000", "from_user": "bella_ctj", "from_user_id": 76812894, "from_user_id_str": "76812894", "from_user_name": "Clelia Santambrogio", "geo": null, "id": 148426521579757570, "id_str": "148426521579757568", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1113852016/Clelia_en_sinflash3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1113852016/Clelia_en_sinflash3_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @CWVen: #Microsoft Azure aloja Apache Hadoop y otras aplicaciones de c\\u00F3digo abierto: http://t.co/msWqJusT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:36:44 +0000", "from_user": "yangpengg", "from_user_id": 191778885, "from_user_id_str": "191778885", "from_user_name": "yp", "geo": null, "id": 148426478248411140, "id_str": "148426478248411136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1665682313/zuoyou-google_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665682313/zuoyou-google_normal.jpg", "source": "<a href="http://www.slideshare.net/" rel="nofollow">Slideshare</a>", "text": "RT @slideshare: 'Hadoop and Machine Learning' is featured on our homepage. http://t.co/lkuEIFPn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:22:28 +0000", "from_user": "mat_kelcey", "from_user_id": 26970530, "from_user_id_str": "26970530", "from_user_name": "mat kelcey", "geo": null, "id": 148422887848681470, "id_str": "148422887848681472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/760825752/n650991500_422744_3329_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/760825752/n650991500_422744_3329_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:15:05 +0000", "from_user": "brunocm", "from_user_id": 30016358, "from_user_id_str": "30016358", "from_user_name": "Bruno", "geo": null, "id": 148421028450799600, "id_str": "148421028450799617", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1353914201/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1353914201/image_normal.jpg", "source": "<a href="http://www.news.me" rel="nofollow">news.me</a>", "text": "RT @mndoci: Hadoop and Pig at LinkedIn SNA http://t.co/OYU8PwS3 via @dpatil", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:13:16 +0000", "from_user": "cheriejobtweets", "from_user_id": 220523410, "from_user_id_str": "220523410", "from_user_name": "Cherie Smittle", "geo": null, "id": 148420570818691070, "id_str": "148420570818691073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1551872796/social_media_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1551872796/social_media_pic_normal.jpg", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Are you a good fit for this job? Hadoop/Software Development Manager in Redmond, WA http://t.co/tJnQXpyB #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:58:22 +0000", "from_user": "mopatel", "from_user_id": 17971178, "from_user_id_str": "17971178", "from_user_name": "Mo Patel", "geo": null, "id": 148416821857488900, "id_str": "148416821857488896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1189265555/profile3-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1189265555/profile3-1_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "Will have try this out RT @dpatil: oh yeah! \\u201C@mndoci: Hadoop and Pig at LinkedIn SNA http://t.co/MsZCSGx8\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:56:13 +0000", "from_user": "snuffkin", "from_user_id": 12746012, "from_user_id_str": "12746012", "from_user_name": "Satoyuki Tsukano", "geo": null, "id": 148416282721648640, "id_str": "148416282721648640", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1592853925/180895_1827145360343_1291578006_2134016_3850008_a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592853925/180895_1827145360343_1291578006_2134016_3850008_a_normal.jpg", "source": "<a href="http://www.zusaar.com/" rel="nofollow">Zusaar</a>", "text": "18\\u65E5\\u76EE\\u3002YARN\\u306ECapacity Scheduler\\u306B\\u3064\\u3044\\u3066\\u66F8\\u304D\\u307E\\u3057\\u305F\\u3002\\nhttp://t.co/XEiXXXWn\\n / hadoop\\u30A2\\u30C9\\u30D9\\u30F3\\u30C8\\u30AB\\u30EC\\u30F3\\u30C0\\u30FC2011 http://t.co/JXK0ZuN5 #zusaar", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:47:28 +0000", "from_user": "ItalieGubbi", "from_user_id": 211958720, "from_user_id_str": "211958720", "from_user_name": "Stefanie Gubbi", "geo": null, "id": 148414080183578620, "id_str": "148414080183578625", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1371156646/Pic_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1371156646/Pic_normal.JPG", "source": "<a href="http://www.slideshare.net/" rel="nofollow">Slideshare</a>", "text": "RT @slideshare: 'Hadoop and Machine Learning' is featured on our homepage. http://t.co/lkuEIFPn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:46:48 +0000", "from_user": "kumarshantanu", "from_user_id": 18362831, "from_user_id_str": "18362831", "from_user_name": "Shantanu Kumar", "geo": null, "id": 148413911920689150, "id_str": "148413911920689153", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1551932451/test-pic_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1551932451/test-pic_normal.JPG", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "[PDF] The Hadoop Distributed File System http://t.co/yTFYOjNl Good technical overview of how HDFS works. Tweeted earlier and doing so again.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:46:36 +0000", "from_user": "mahdi", "from_user_id": 718993, "from_user_id_str": "718993", "from_user_name": "Mahdi Taghizadeh", "geo": null, "id": 148413859827429380, "id_str": "148413859827429376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697108280/violet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697108280/violet_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl. http://t.co/htMuCqhd #Cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:41:08 +0000", "from_user": "dev_links", "from_user_id": 309995604, "from_user_id_str": "309995604", "from_user_name": "Joe Fawzy", "geo": null, "id": 148412486306103300, "id_str": "148412486306103297", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/Qvs4N7LZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:31:51 +0000", "from_user": "beartwo", "from_user_id": 19836161, "from_user_id_str": "19836161", "from_user_name": "Giorgio Baron%", "geo": null, "id": 148410148333957120, "id_str": "148410148333957120", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1331868189/bb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1331868189/bb_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Microsoft Azure aloja Apache Hadoop y otras aplicaciones de c\\u00F3digo abierto: http://t.co/ktS2ghFj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:31:50 +0000", "from_user": "CWVen", "from_user_id": 49653537, "from_user_id_str": "49653537", "from_user_name": "Computerworld Vene", "geo": null, "id": 148410145892864000, "id_str": "148410145892864000", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/276553291/CWVen_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/276553291/CWVen_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Microsoft Azure aloja Apache Hadoop y otras aplicaciones de c\\u00F3digo abierto: http://t.co/rXJLgTv9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:30:26 +0000", "from_user": "orirawlings", "from_user_id": 14793715, "from_user_id_str": "14793715", "from_user_name": "Ori Rawlings", "geo": null, "id": 148409793646825470, "id_str": "148409793646825472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/671699784/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/671699784/me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:30:25 +0000", "from_user": "leejohnsonseo", "from_user_id": 89424244, "from_user_id_str": "89424244", "from_user_name": "Lee Johnson", "geo": +{"coordinates": [54.0682,-2.7805], "type": "Point"}, "id": 148409787254710270, "id_str": "148409787254710273", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1225886877/lee-white_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225886877/lee-white_normal.png", "source": "<a href="http://www.tweetywall.com" rel="nofollow">Tweetywall</a>", "text": "http://t.co/97hyHxW4 - No, Hadoop Doesn't Own Big Data Analytics!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:29:35 +0000", "from_user": "NicoThieb", "from_user_id": 98618391, "from_user_id_str": "98618391", "from_user_name": "Nicolas Thi\\u00E9baud", "geo": null, "id": 148409576197328900, "id_str": "148409576197328897", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702417751/Screen_Shot_2011-12-19_at_5.49.08_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702417751/Screen_Shot_2011-12-19_at_5.49.08_PM_normal.png", "source": "<a href="http://www.apple.com" rel="nofollow">Camera on iOS</a>", "text": "15 jours, un objectif. #hadoop #hbase http://t.co/zmuJYe6G", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:28:31 +0000", "from_user": "josh_wills", "from_user_id": 14578294, "from_user_id_str": "14578294", "from_user_name": "Josh Wills", "geo": null, "id": 148409311176040450, "id_str": "148409311176040448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1392809578/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1392809578/me_normal.jpg", "source": "<a href="http://www.slideshare.net/" rel="nofollow">Slideshare</a>", "text": "RT @slideshare: 'Hadoop and Machine Learning' is featured on our homepage. http://t.co/lkuEIFPn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:28:06 +0000", "from_user": "raravena80", "from_user_id": 21988767, "from_user_id_str": "21988767", "from_user_name": "Ricardo Aravena", "geo": null, "id": 148409204686848000, "id_str": "148409204686848000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/83215605/Picture_4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/83215605/Picture_4_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft Tries Hadoop on Azure: Microsoft added a trial version of Apache\\u2019s open source Hadoop to its Windows A... http://t.co/CF1D4nFK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:19:10 +0000", "from_user": "stackfeed", "from_user_id": 237310237, "from_user_id_str": "237310237", "from_user_name": "StackOverflow", "geo": null, "id": 148406956107890700, "id_str": "148406956107890688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Image processing with Hadoop MapReduce: I am doing a project on motion estimation between two frames of a video ... http://t.co/WlJ0ap2j", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:19:04 +0000", "from_user": "bdour_akram", "from_user_id": 340125806, "from_user_id_str": "340125806", "from_user_name": "bdour akram", "geo": null, "id": 148406931340525570, "id_str": "148406931340525568", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1580457771/me_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580457771/me_normal.PNG", "source": "<a href="http://twitter.com/">web</a>", "text": "Windows Azure Adds Node.js Support, Hadoop Preview http://t.co/nZY7JFf6 #azure #javascript #nodejs #hadoop #v", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:16:55 +0000", "from_user": "ramprakashr", "from_user_id": 48626994, "from_user_id_str": "48626994", "from_user_name": "Ramprakash R", "geo": null, "id": 148406392540237820, "id_str": "148406392540237824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1115776605/41765_1390011752_753_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1115776605/41765_1390011752_753_q_normal.jpg", "source": "<a href="http://www.slideshare.net/" rel="nofollow">Slideshare</a>", "text": "RT @slideshare: 'Hadoop and Machine Learning' is featured on our homepage. http://t.co/lkuEIFPn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:16:02 +0000", "from_user": "ekampf", "from_user_id": 7467902, "from_user_id_str": "7467902", "from_user_name": "Eran Kampf", "geo": null, "id": 148406166953791500, "id_str": "148406166953791489", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1094675975/n613471493_1492_-_Copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1094675975/n613471493_1492_-_Copy_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl | CommonCrawl http://t.co/eJlQVpr2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:15:31 +0000", "from_user": "slideshare", "from_user_id": 9676152, "from_user_id_str": "9676152", "from_user_name": "SlideShare", "geo": null, "id": 148406039094636540, "id_str": "148406039094636544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/34292002/slideshare_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/34292002/slideshare_logo_normal.jpg", "source": "<a href="http://www.slideshare.net/" rel="nofollow">Slideshare</a>", "text": "'Hadoop and Machine Learning' is featured on our homepage. http://t.co/lkuEIFPn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:12:24 +0000", "from_user": "subhashkolluru", "from_user_id": 326320841, "from_user_id_str": "326320841", "from_user_name": "subhash kolluru", "geo": null, "id": 148405252901699600, "id_str": "148405252901699584", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Now Hiring: Big Data Hadoop Engineer in Chicago, IL http://t.co/nqpXCuR3 #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:10:36 +0000", "from_user": "TempleWest55", "from_user_id": 162072839, "from_user_id_str": "162072839", "from_user_name": "Temple West", "geo": null, "id": 148404799522619400, "id_str": "148404799522619392", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1505160323/20100902232358_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505160323/20100902232358_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "\\u30CE\\u30FC\\u30C1\\u30E9\\u30B9\\u3001Hadoop\\u30C7\\u30A3\\u30B9\\u30C8\\u30EA\\u30D3\\u30E5\\u30FC\\u30B7\\u30E7\\u30F3\\u306E\\u5546\\u7528\\u30B5\\u30DD\\u30FC\\u30C8\\u3092\\u958B\\u59CB\\uFF08\\u30CB\\u30E5\\u30FC\\u30B9\\uFF09 http://t.co/F5BcWb0L", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:42:46 +0000", "from_user": "liuerfire", "from_user_id": 313700400, "from_user_id_str": "313700400", "from_user_name": "\\u738B\\u5E78", "geo": null, "id": 148397796897210370, "id_str": "148397796897210369", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1402789999/IMG0148A_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1402789999/IMG0148A_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "\\u5728Hadoop\\u4E0A\\u8FD0\\u884C\\u57FA\\u4E8ERMM\\u4E2D\\u6587\\u5206\\u8BCD\\u7B97\\u6CD5\\u7684MapReduce\\u7A0B\\u5E8F http://t.co/VCNZ9nC4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:40:13 +0000", "from_user": "nirendraa", "from_user_id": 77999977, "from_user_id_str": "77999977", "from_user_name": "Nirendra Awasthi", "geo": null, "id": 148397156758335500, "id_str": "148397156758335488", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1585934460/me_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585934460/me_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Very interesting introduction to Big data: http://t.co/0rmBimgE #BigData #Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:25:12 +0000", "from_user": "sharow", "from_user_id": 14295056, "from_user_id_str": "14295056", "from_user_name": "\\u00A1\\u0287,u\\u0250\\u0254 \\u01DD\\u028D ou", "geo": null, "id": 148393374859276300, "id_str": "148393374859276288", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1688880416/forever48_xmas_colored_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688880416/forever48_xmas_colored_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Hadoop\\u306B\\u3042\\u307E\\u308A\\u53EF\\u80FD\\u6027\\u3092\\u611F\\u3058\\u306A\\u3044\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:19:32 +0000", "from_user": "t411", "from_user_id": 15835698, "from_user_id_str": "15835698", "from_user_name": "t411", "geo": null, "id": 148391951610286080, "id_str": "148391951610286081", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/69888816/logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/69888816/logo_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Real time search for Hadoop http://t.co/zizymaLq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:16:19 +0000", "from_user": "reputa_india", "from_user_id": 265834202, "from_user_id_str": "265834202", "from_user_name": "Reputa India", "geo": null, "id": 148391139643363330, "id_str": "148391139643363328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1283445555/2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1283445555/2_normal.jpg", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "URGENT Requirement : Hiring Hadoop Architect (2+ year contract position) require... http://t.co/xHBllFyf #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:15:36 +0000", "from_user": "gycheng", "from_user_id": 26445489, "from_user_id_str": "26445489", "from_user_name": "Guangyao Cheng/yoyo", "geo": null, "id": 148390961658085380, "id_str": "148390961658085376", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/109355118/1_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/109355118/1_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @nmaillot: Hadoop and Machine Learning - http://t.co/0U6iT0oN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:06:22 +0000", "from_user": "nmaillot", "from_user_id": 39479514, "from_user_id_str": "39479514", "from_user_name": "Nicolas Maillot", "geo": null, "id": 148388637560680450, "id_str": "148388637560680448", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/863139197/P1000058_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/863139197/P1000058_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Hadoop and Machine Learning - http://t.co/0U6iT0oN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:58:55 +0000", "from_user": "sharmask95", "from_user_id": 100018813, "from_user_id_str": "100018813", "from_user_name": "sanjeev Sharma", "geo": null, "id": 148386761515606000, "id_str": "148386761515606016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/848542430/photo1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/848542430/photo1_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "is looking for Hadoop Principal Architects for a US based multinational for their offshore facility at Gurgaon/Delhi N\\u2026http://t.co/p4po2SJR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:47:28 +0000", "from_user": "keithseahus", "from_user_id": 15808744, "from_user_id_str": "15808744", "from_user_name": "Keisuke TAKAHASHI", "geo": null, "id": 148383881832312830, "id_str": "148383881832312832", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1167703228/IMG_0489_mixi2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1167703228/IMG_0489_mixi2_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "\\u660E\\u65E5\\u306E\\u62C5\\u5F53\\u5185\\u52C9\\u5F37\\u4F1A\\u3063\\u3066\\u3001OS X Server\\u3067\\u3057\\u305F\\u3063\\u3051\\u3001\\u305D\\u308C\\u3068\\u3082Hadoop\\u3067\\u3057\\u305F\\u3063\\u3051\\u3002\\u3002\\u3002\\uFF08\\u6C57\\uFF09", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:23:43 +0000", "from_user": "parolariecjgi9", "from_user_id": 397141249, "from_user_id_str": "397141249", "from_user_name": "Parolari Carew", "geo": null, "id": 148377902478655500, "id_str": "148377902478655488", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1604079248/imagesCA2S7B5Y_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1604079248/imagesCA2S7B5Y_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@omgeraldicmat http://t.co/LbXUS6UL", "to_user": "omgeraldicmat", "to_user_id": 181853976, "to_user_id_str": "181853976", "to_user_name": "Gerald Icmat", "in_reply_to_status_id": 134920593475772420, "in_reply_to_status_id_str": "134920593475772416"}, +{"created_at": "Sun, 18 Dec 2011 12:19:54 +0000", "from_user": "parolariecjgi9", "from_user_id": 397141249, "from_user_id_str": "397141249", "from_user_name": "Parolari Carew", "geo": null, "id": 148376943904047100, "id_str": "148376943904047106", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1604079248/imagesCA2S7B5Y_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1604079248/imagesCA2S7B5Y_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Kamar_Moustapha http://t.co/LbXUS6UL", "to_user": "Kamar_Moustapha", "to_user_id": 143855045, "to_user_id_str": "143855045", "to_user_name": "Kamar Moustapha", "in_reply_to_status_id": 134920611972653060, "in_reply_to_status_id_str": "134920611972653056"}, +{"created_at": "Sun, 18 Dec 2011 12:17:51 +0000", "from_user": "TopTecRecruiter", "from_user_id": 92369482, "from_user_id_str": "92369482", "from_user_name": "Avetis Antaplyan", "geo": null, "id": 148376426201096200, "id_str": "148376426201096193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Are you a good fit for this job? Sr Java Engineer (Hadoop, NoSQL, Memcache) in Los Angeles, CA http://t.co/hERrBf9c #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:14:12 +0000", "from_user": "abava", "from_user_id": 8996422, "from_user_id_str": "8996422", "from_user_name": "abava", "geo": null, "id": 148375510190268400, "id_str": "148375510190268417", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/77150396/logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/77150396/logo_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Hadoop. \\u0412\\u0432\\u0435\\u0434\\u0435\\u043D\\u0438\\u0435 http://t.co/BLgQTOSS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:03:06 +0000", "from_user": "shinhiroo", "from_user_id": 264632370, "from_user_id_str": "264632370", "from_user_name": "H. SHINKAI", "geo": null, "id": 148372715772981250, "id_str": "148372715772981249", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1549550963/Shinhiroo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1549550963/Shinhiroo_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @tamagawa_ryuji: \\u304A\\u5F85\\u305F\\u305B\\u3057\\u307E\\u3057\\u305F\\u3002\\u8C61\\u672C\\u3053\\u3068\\u300Chadoop\\u300D\\u306Eebook\\u3001\\u51FA\\u307E\\u3057\\u305F\\uFF01\\u3000http://t.co/Ax1ALVbq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:02:52 +0000", "from_user": "misterololo", "from_user_id": 205618078, "from_user_id_str": "205618078", "from_user_name": "Misterololo", "geo": null, "id": 148372658113888260, "id_str": "148372658113888256", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1149312213/1307_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1149312213/1307_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hadoop. \\u0412\\u0432\\u0435\\u0434\\u0435\\u043D\\u0438\\u0435: \\u0425\\u043E\\u0440\\u043E\\u0448\\u0438\\u0439 (\\u0438 \\u043A\\u043E\\u043C\\u043F\\u0430\\u043A\\u0442\\u043D\\u044B\\u0439) \\u0434\\u043E\\u043A\\u0443\\u043C\\u0435\\u043D\\u0442 \\u043F\\u043E \\u043D\\u0430\\u0447\\u0430\\u043B\\u0443 \\u0440\\u0430\\u0431\\u043E\\u0442\\u044B \\u0441 Hadoop. \\u041E\\u0445\\u0432\\u0430\\u0447\\u0435\\u043D\\u043D\\u044B\\u0435 \\u0442\\u0435\\u043C\\u044B:\\u0412\\u0432\\u0435\\u0434\\u0435\\u043D\\u0438\\u0435 \\u0432 Hadoop\\u0427\\u0442... http://t.co/KX08ERVg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:57:27 +0000", "from_user": "victoriko", "from_user_id": 110011709, "from_user_id_str": "110011709", "from_user_name": "\\uACE0\\uC2B9\\uACE4(Victor Ko)", "geo": null, "id": 148371291383148540, "id_str": "148371291383148544", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/666279957/victoriko3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/666279957/victoriko3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "MS\\uC758 Azure \\uC77C\\uBCD1 \\uAD6C\\uD558\\uAE30 \\uD504\\uB85C\\uC81D\\uD2B8\\uAC00 \\uC11C\\uC11C\\uD788 \\uBAA8\\uC2B5\\uC744 \\uB4DC\\uB7EC\\uB0B4\\uACE0 \\uC788\\uC2B5\\uB2C8\\uB2E4. \\uC624\\uD508\\uC18C\\uC2A4 \\uC9C4\\uC601\\uC744 \\uD504\\uB85C\\uC81D\\uD2B8\\uB97C \\uACFC\\uAC10\\uD788 Azure\\uB85C \\uD3EC\\uD305\\uD558\\uACE0 \\uC788\\uB124\\uC694.Hadoop, Node.js, MongoDB, Lucene \\uB4F1.Azure\\uB294 MS \\uB0B4\\uC5D0\\uC11C\\uB3C4 \\uBCC4\\uB3D9\\uB300 \\uC778\\uB4EF\\uD569\\uB2C8\\uB2E4.^^", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:42:47 +0000", "from_user": "vishwavikalp", "from_user_id": 83765473, "from_user_id_str": "83765473", "from_user_name": "Vishwavikalp", "geo": null, "id": 148367600831840260, "id_str": "148367600831840256", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1258295366/DSC03650_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1258295366/DSC03650_normal.JPG", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Looking for a Java Developer, Hadoop in Bangalore, India http://t.co/W6eIxPg0 #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:35:07 +0000", "from_user": "randymillstop", "from_user_id": 323431151, "from_user_id_str": "323431151", "from_user_name": "Randy Mills", "geo": null, "id": 148365674316693500, "id_str": "148365674316693504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1411575160/1308947703_forn421l_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1411575160/1308947703_forn421l_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/i64yrUor Zettaset Launches Version 4 of Big Data Management Solution, Delivering New Stability for Hadoop Systems and ...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:17:54 +0000", "from_user": "pbouillaud", "from_user_id": 50699469, "from_user_id_str": "50699469", "from_user_name": "Bouillaud", "geo": null, "id": 148361340535312400, "id_str": "148361340535312384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1393928753/lapin_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1393928753/lapin_normal.jpg", "source": "<a href="http://www.scoop.it" rel="nofollow">Scoop.it</a>", "text": "Microsoft Tries Hadoop on Azure | Cloud Computing Journal | @scoopit via @tw_top_1z2n8rp http://t.co/MpdgEybZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:16:29 +0000", "from_user": "iwonabb", "from_user_id": 59262847, "from_user_id_str": "59262847", "from_user_name": "Iwona Bialynicka-B.", "geo": null, "id": 148360985147744260, "id_str": "148360985147744256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1330438533/bialynicka3_desaturated_square_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1330438533/bialynicka3_desaturated_square_small_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@noiano With properties prefixed with hadoop-hdfs, hadoop-common and hadoop-mapreduce - check out https://t.co/JW1DhSrf", "to_user": "noiano", "to_user_id": 54919596, "to_user_id_str": "54919596", "to_user_name": "Marco Didonna", "in_reply_to_status_id": 148007465924038660, "in_reply_to_status_id_str": "148007465924038657"}, +{"created_at": "Sun, 18 Dec 2011 11:13:18 +0000", "from_user": "oalonsollombart", "from_user_id": 239066186, "from_user_id_str": "239066186", "from_user_name": "\\u00D3scar Alonso Llombar", "geo": null, "id": 148360181540061200, "id_str": "148360181540061185", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1217418356/oalonso_cartoon_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1217418356/oalonso_cartoon_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Hadoop en proyectos de Business Intelligence | Dataprix: http://t.co/r8TxwxZX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:04:06 +0000", "from_user": "purplehayz", "from_user_id": 9017192, "from_user_id_str": "9017192", "from_user_name": "purplehayz", "geo": null, "id": 148357865063714800, "id_str": "148357865063714816", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/299158526/tattoo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/299158526/tattoo_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "#Microsoft tries #Hadoop on #Azure http://t.co/9TTID4BP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:55:27 +0000", "from_user": "GiulyBonll", "from_user_id": 328686800, "from_user_id_str": "328686800", "from_user_name": "Giuliana Bonello", "geo": null, "id": 148355691403427840, "id_str": "148355691403427840", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1441101745/24062011069_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1441101745/24062011069_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @strataconf: Five Big Data predictions for 2012 http://t.co/0no2xN8g via @radar #bigdata #visualization #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:55:08 +0000", "from_user": "nickhac", "from_user_id": 1267041, "from_user_id_str": "1267041", "from_user_name": "Nick Holmes \\u00E0 Court", "geo": null, "id": 148355611933933570, "id_str": "148355611933933569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1263176304/420buzz-420x0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263176304/420buzz-420x0_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/5MHw7fvf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:54:21 +0000", "from_user": "QwertyManiac", "from_user_id": 12430962, "from_user_id_str": "12430962", "from_user_name": "Harsh J Chouraria", "geo": null, "id": 148355415078477820, "id_str": "148355415078477824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1644988570/Up_front_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644988570/Up_front_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:53:36 +0000", "from_user": "dejavutimes", "from_user_id": 279589807, "from_user_id_str": "279589807", "from_user_name": "Deja-Vu Times", "geo": null, "id": 148355222887084030, "id_str": "148355222887084033", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1305859236/dvsl.logo.symbol_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1305859236/dvsl.logo.symbol_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "KloudData\\u2019s iKloud for Hortonworks Data Platform Brings Big Data Analytics to Apache Hadoop: http://t.co/RlkMQW09", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:51:26 +0000", "from_user": "danbradford", "from_user_id": 15704718, "from_user_id_str": "15704718", "from_user_name": "danbradford", "geo": null, "id": 148354679565336580, "id_str": "148354679565336577", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/78813003/10003_m_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/78813003/10003_m_normal.gif", "source": "<a href="http://jobvite.com" rel="nofollow">Jobvite</a>", "text": "Hortonworks is looking for: Hadoop MapReduce Sr. Software Engineer\\nhttp://t.co/wMtrb697 #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:40:10 +0000", "from_user": "cierniak", "from_user_id": 14637908, "from_user_id_str": "14637908", "from_user_name": "Michal Cierniak", "geo": null, "id": 148351844752695300, "id_str": "148351844752695296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1430256685/michal4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1430256685/michal4_normal.jpg", "source": "Zite Personalized Magazine", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/eLlSth8q via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:23:20 +0000", "from_user": "dataprix", "from_user_id": 44152774, "from_user_id_str": "44152774", "from_user_name": "Carlos Fernandez", "geo": null, "id": 148347608866365440, "id_str": "148347608866365440", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/701068875/isotipo_dataprix_screen_96_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/701068875/isotipo_dataprix_screen_96_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Dataplanet: Hadoop en proyectos de Business Intelligence http://t.co/M5IJft1A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:04:50 +0000", "from_user": "lkafle", "from_user_id": 5981342, "from_user_id_str": "5981342", "from_user_name": "Lava Kafle", "geo": null, "id": 148342953688043520, "id_str": "148342953688043521", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1361567862/lavaKbyGehendraB1_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1361567862/lavaKbyGehendraB1_normal.JPG", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "Hadoop: From Open Source Project to Big Data Ecosystem http://t.co/VJCu4v6T", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:56:59 +0000", "from_user": "hackingdata", "from_user_id": 16061930, "from_user_id_str": "16061930", "from_user_name": "Jeff Hammerbacher", "geo": null, "id": 148340976635740160, "id_str": "148340976635740160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/759606364/q4781_7814_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/759606364/q4781_7814_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Sun, 18 Dec 2011 09:42:03 +0000", "from_user": "analyticsdennis", "from_user_id": 22375129, "from_user_id_str": "22375129", "from_user_name": "Dennis Plucinik", "geo": null, "id": 148337220300967940, "id_str": "148337220300967936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/588949572/analytics_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/588949572/analytics_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Reading: 10 Hadoop-able Problems (a summary) \\u00AB Mike Pearce \\u2013 blog: http://t.co/zRRMek9c", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:38:22 +0000", "from_user": "ekampf", "from_user_id": 7467902, "from_user_id_str": "7467902", "from_user_name": "Eran Kampf", "geo": null, "id": 148336290025324540, "id_str": "148336290025324545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1094675975/n613471493_1492_-_Copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1094675975/n613471493_1492_-_Copy_normal.jpg", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "@larsgeorge the FB and SU guys at Hadoop World said they cap tables to ~20 regions. Any idea how? can't find any mention for that in docs", "to_user": "larsgeorge", "to_user_id": 19362860, "to_user_id_str": "19362860", "to_user_name": "Lars George"}, +{"created_at": "Sun, 18 Dec 2011 09:37:59 +0000", "from_user": "szibis", "from_user_id": 311095658, "from_user_id_str": "311095658", "from_user_name": "Slawomir", "geo": null, "id": 148336193883475970, "id_str": "148336193883475969", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://news.ycombinator.com/" rel="nofollow">Hacker News Bot</a>", "text": "RT @hackernewsbot: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl... http://t.co/JGEaGFBn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:27:22 +0000", "from_user": "asamidsgr", "from_user_id": 193665655, "from_user_id_str": "193665655", "from_user_name": "Asami Yuuki", "geo": null, "id": 148333525207236600, "id_str": "148333525207236608", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1160245296/8483064_2540497908_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1160245296/8483064_2540497908_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@yamamasa23 @kanreisa hadoop\\u307E\\u308F\\u308A\\u306F\\u4F7F\\u3063\\u3066\\u7814\\u7A76\\u3057\\u3066\\u307E\\u3057\\u305F\\u3002(\\u3063\\u3066\\u3059\\u3067\\u306Bgoogle\\u306B\\u983C\\u3063\\u3066\\u308B\\u3088\\u3046\\u306A\\u3082\\u306E\\u3060\\u3051\\u3069\\u3082\\u3002\\u3002\\u3002)", "to_user": "yamamasa23", "to_user_id": 103773155, "to_user_id_str": "103773155", "to_user_name": "Masa Yama", "in_reply_to_status_id": 148333201314689020, "in_reply_to_status_id_str": "148333201314689024"}, +{"created_at": "Sun, 18 Dec 2011 09:21:33 +0000", "from_user": "gold_bismuth", "from_user_id": 298532216, "from_user_id_str": "298532216", "from_user_name": "gold_bismuth", "geo": null, "id": 148332058392002560, "id_str": "148332058392002560", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694630308/bbc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694630308/bbc_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Hadoop\\u5B8C\\u6210\\u3068\\u540C\\u6642\\u306Bgoogle\\u691C\\u7D22\\u306E\\u5168\\u30A2\\u30EB\\u30B4\\u30EA\\u30BA\\u30E0\\u304C\\u6D41\\u51FA\\u3057\\u305F\\u3089\\u8A08\\u7B97\\u8CC7\\u6E90\\u91CF\\u304C\\u7206\\u767A\\u7684\\u767A\\u6398\\u3055\\u308C\\u3066\\u4E16\\u754C\\u304C\\u30E4\\u30D0\\u30A4\\u304F\\u306A\\u308B\\u3093\\u304B\\u306A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:54:20 +0000", "from_user": "citizenlow", "from_user_id": 28934419, "from_user_id_str": "28934419", "from_user_name": "citizenlow", "geo": null, "id": 148325208464437250, "id_str": "148325208464437249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693308524/square_and_retro_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693308524/square_and_retro_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "MT @mikeolson @josh_wills: Slides for the @cloudera data science team's talk on ML & #hadoop at #nips2011: http://t.co/4EjAM4c3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:53:31 +0000", "from_user": "gd047", "from_user_id": 415380812, "from_user_id_str": "415380812", "from_user_name": "George Dontas", "geo": null, "id": 148325002968694800, "id_str": "148325002968694784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1644898799/Copy_of_gd047_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644898799/Copy_of_gd047_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "#MapReduce for the Masses: Zero to #Hadoop in Five Minutes with Common Crawl http://t.co/Danaud8l", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:43:33 +0000", "from_user": "msnikosan", "from_user_id": 29941542, "from_user_id_str": "29941542", "from_user_name": "Nikos Anastopoulos", "geo": null, "id": 148322496498761730, "id_str": "148322496498761728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1443690739/avatarpic-l_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1443690739/avatarpic-l_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @MicrosoftBI: I uploaded a @YouTube video http://t.co/WWiuQpFL Introduction to the Hadoop on Azure Interactive Hive Console", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:29:04 +0000", "from_user": "adinelchirita", "from_user_id": 14053638, "from_user_id_str": "14053638", "from_user_name": "adinelchirita", "geo": null, "id": 148318853506670600, "id_str": "148318853506670592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1604712103/electric-dreams_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1604712103/electric-dreams_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @peteskomoroch: How to quickly process 40TB of data from Common Crawl using Hadoop & Amazon EC2 http://t.co/yum3VZyF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:22:44 +0000", "from_user": "moorsd", "from_user_id": 26789275, "from_user_id_str": "26789275", "from_user_name": "David Moors", "geo": null, "id": 148317259146862600, "id_str": "148317259146862592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/709629018/dm2_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/709629018/dm2_normal.gif", "source": "Zite Personalized Magazine", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/74fRC5MW #MapReduce #Hadoop #AWS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:18:18 +0000", "from_user": "w3lab", "from_user_id": 6183722, "from_user_id_str": "6183722", "from_user_name": "Tristan Thomas", "geo": null, "id": 148316141100605440, "id_str": "148316141100605440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1655919292/DSC_2163__2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655919292/DSC_2163__2__normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @nicolastorzec: Worth keeping in mind: datafu is LinkedIn's collection of #Pig UDFs for Statistics and Data Mining http://t.co/7Jlum0R5 - #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:02:03 +0000", "from_user": "petricek", "from_user_id": 11014982, "from_user_id_str": "11014982", "from_user_name": "petricek", "geo": null, "id": 148312054284025860, "id_str": "148312054284025856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/131340005/petricek_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/131340005/petricek_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:54:03 +0000", "from_user": "Giladst", "from_user_id": 18552017, "from_user_id_str": "18552017", "from_user_name": "Gilad Steinberger", "geo": null, "id": 148310041282351100, "id_str": "148310041282351104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1380737383/97228882c82a4b1cb3c5352e970b64b8_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1380737383/97228882c82a4b1cb3c5352e970b64b8_7_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "New Azure Release Supports Open Source Libraries Node.js, MongoDB, Hadoop, Solr, Memcached http://t.co/kn45ld2v", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:44:28 +0000", "from_user": "WayofJava", "from_user_id": 363289457, "from_user_id_str": "363289457", "from_user_name": "Java Developer", "geo": null, "id": 148307628957777920, "id_str": "148307628957777920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1520571328/javacode-908579_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1520571328/javacode-908579_normal.jpeg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "http://t.co/jzi7U3yd programmingfeed: haloop - An modified version of Hadoop to support efficient iterative data... http://t.co/m7e9ZNRS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:43:43 +0000", "from_user": "logicmd", "from_user_id": 45603439, "from_user_id_str": "45603439", "from_user_name": "\\u7D2B\\u6C14\\u516E\\u4E1C\\u6765", "geo": null, "id": 148307438494425100, "id_str": "148307438494425088", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1089529267/large_2135n169_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1089529267/large_2135n169_normal.jpg", "source": "<a href="http://logicmd.net" rel="nofollow">\\u7D2B\\u6C23\\u6771\\u4F86</a>", "text": "Hadoop\\u7684javadoc\\u5199\\u7684\\u4E00\\u584C\\u7CCA\\u6D82\\uFF0C\\u5565\\u90FD\\u4E0D\\u5199... \\u770B\\u770B\\u4EBA\\u5BB6Android\\uFF0CApache\\u8BE5\\u5411Google\\u5B66\\u4E60\\u554A\\uFF01", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:28:41 +0000", "from_user": "rjurney", "from_user_id": 15831927, "from_user_id_str": "15831927", "from_user_name": "Russell Jurney", "geo": null, "id": 148303654351413250, "id_str": "148303654351413248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1468674812/bad_avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1468674812/bad_avatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Very frustrated with hadoop data formats. There is no simple way to get data in or out.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:15:59 +0000", "from_user": "KaewGB", "from_user_id": 15037353, "from_user_id_str": "15037353", "from_user_name": "Kaew", "geo": null, "id": 148300458354671600, "id_str": "148300458354671617", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/537155451/Toad_Funny_Icon_crop_resize_bigger_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/537155451/Toad_Funny_Icon_crop_resize_bigger_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "I'm flooding NERSC's Hadoop job list. LOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:15:28 +0000", "from_user": "programmingfeed", "from_user_id": 23924836, "from_user_id_str": "23924836", "from_user_name": "programming feed", "geo": null, "id": 148300330097053700, "id_str": "148300330097053696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/93775994/progfeed_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/93775994/progfeed_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "haloop - An modified version of Hadoop to support efficient iterative data processing on large comm... http://t.co/AaQJIyKB #programming", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:11:44 +0000", "from_user": "Heybiiianca", "from_user_id": 384268572, "from_user_id_str": "384268572", "from_user_name": "Jemima Bianca\\u2122 \\u2661", "geo": null, "id": 148299389683765250, "id_str": "148299389683765248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697501999/p20111211-115951_-_Peter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697501999/p20111211-115951_-_Peter_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Succesful astrocamp! Wiii. Dougie on stage HADOOP. Pakapalan ng mukha sa stage makasayaw lang ng dougie!Sobrang SAYA!The best ! Thanks God .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:04:41 +0000", "from_user": "seekq", "from_user_id": 14902619, "from_user_id_str": "14902619", "from_user_name": "seekq", "geo": null, "id": 148297616130711550, "id_str": "148297616130711552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1309041921/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1309041921/image_normal.jpg", "source": "Zite Personalized Magazine", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/h30SUq0J via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:01:45 +0000", "from_user": "naoki014", "from_user_id": 131043882, "from_user_id_str": "131043882", "from_user_name": "naoki mashiko", "geo": null, "id": 148296877828354050, "id_str": "148296877828354048", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1097661903/_IMG_0010_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1097661903/_IMG_0010_normal.JPG", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "\\u7121\\u4E8B\\u5230\\u7740\\u3002\\u6771\\u540D\\u306E\\u539A\\u6728\\u301C\\u6A2A\\u6D5C\\u30673\\u56DE\\u3082\\u4E8B\\u6545\\u3092\\u307F\\u305F\\u3002\\u4E8B\\u6545\\u3063\\u3066\\u8D77\\u304D\\u308B\\u6642\\u306B\\u306F\\u8907\\u6570\\u306E\\u5834\\u6240\\u3067\\u8D77\\u304D\\u3066\\u308B\\u6C17\\u304C\\u3059\\u308B\\u3002hadoop\\u3068\\u304B\\u3067\\u4E8B\\u6545\\u767A\\u751F\\u78BA\\u7387\\u89E3\\u6790\\u3057\\u3066\\u3001\\u7D30\\u304B\\u3044\\u7C92\\u5EA6\\u3067\\u30C9\\u30E9\\u30A4\\u30D0\\u30FC\\u306B\\u304A\\u77E5\\u3089\\u305B\\u3067\\u304D\\u305F\\u3089\\u4E0D\\u5E78\\u304C\\u6E1B\\u3089\\u305B\\u308B\\u306E\\u3067\\u306F\\u306A\\u3044\\u304B\\u3068\\u5984\\u60F3\\u3057\\u3066\\u307F\\u308B\\u3002\\u3063\\u3066\\u3082\\u3046\\u3084\\u3063\\u3066\\u308B\\u4EBA\\u3044\\u308B\\u3093\\u3060\\u308D\\u306A\\u304D\\u3063\\u3068\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:00:36 +0000", "from_user": "squarecog", "from_user_id": 46440718, "from_user_id_str": "46440718", "from_user_name": "Dmitriy Ryaboy", "geo": null, "id": 148296589117632500, "id_str": "148296589117632512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/804718963/fbimg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/804718963/fbimg_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@rjurney if you are on a mac, go 1 commit back on hadoop-lzo. Turns out making ld behave the same on different *nix flavors is tricky.", "to_user": "rjurney", "to_user_id": 15831927, "to_user_id_str": "15831927", "to_user_name": "Russell Jurney", "in_reply_to_status_id": 148296257989910530, "in_reply_to_status_id_str": "148296257989910528"}, +{"created_at": "Sun, 18 Dec 2011 06:59:17 +0000", "from_user": "rjurney", "from_user_id": 15831927, "from_user_id_str": "15831927", "from_user_name": "Russell Jurney", "geo": null, "id": 148296257989910530, "id_str": "148296257989910528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1468674812/bad_avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1468674812/bad_avatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@squarecog @kevinweil I'm having trouble getting the dependency hadoop-lzo to build :(", "to_user": "squarecog", "to_user_id": 46440718, "to_user_id_str": "46440718", "to_user_name": "Dmitriy Ryaboy", "in_reply_to_status_id": 148290975847030800, "in_reply_to_status_id_str": "148290975847030784"}, +{"created_at": "Sun, 18 Dec 2011 06:55:03 +0000", "from_user": "INFAIM", "from_user_id": 145062108, "from_user_id_str": "145062108", "from_user_name": "Julianna DeLua (EIM)", "geo": null, "id": 148295190015246340, "id_str": "148295190015246336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "source": "<a href="http://futuretweets.com" rel="nofollow"> Futuretweets V2</a>", "text": "Most popular On-demand Webinar 2011 @ralphkimball http://t.co/FjsjlgSC Make data warehouse adaptable for #bigdata #hadoop @informaticacorp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:48:32 +0000", "from_user": "maxkalachev", "from_user_id": 333232986, "from_user_id_str": "333232986", "from_user_name": "Max Kalachev", "geo": null, "id": 148293550734446600, "id_str": "148293550734446592", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1647901278/max2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647901278/max2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ChrisDiehl: Modeling with Hadoop - KDD 2011 Tutorial - http://t.co/NfMNacWW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:47:26 +0000", "from_user": "curationary", "from_user_id": 10989382, "from_user_id_str": "10989382", "from_user_name": "Curationary", "geo": null, "id": 148293273176379400, "id_str": "148293273176379392", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1365955825/curationary_ico_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1365955825/curationary_ico_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "Hadoop and Machine Learning http://t.co/PMoIBy9K via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:40:46 +0000", "from_user": "markswall", "from_user_id": 19688728, "from_user_id_str": "19688728", "from_user_name": "Mark Wall", "geo": null, "id": 148291598248194050, "id_str": "148291598248194048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676652683/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676652683/Untitled_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft offers Hadoop preview on Azure Storage Technology News ... http://t.co/YcSvFUZR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:36:08 +0000", "from_user": "MSFT4EVER", "from_user_id": 205247045, "from_user_id_str": "205247045", "from_user_name": "Microsoft World News", "geo": null, "id": 148290432835657730, "id_str": "148290432835657728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1624255112/microsoft-logo-300x216_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624255112/microsoft-logo-300x216_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft Tries Hadoop on Azure: Microsoft added a trial version of Apache's open source Hadoop to its Windows A... http://t.co/u7X2aeK5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:25:49 +0000", "from_user": "d8Pit", "from_user_id": 264394701, "from_user_id_str": "264394701", "from_user_name": "The URL Popularizer", "geo": null, "id": 148287835252858880, "id_str": "148287835252858880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317284522/logo-header_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317284522/logo-header_normal.png", "source": "<a href="http://d8p.it" rel="nofollow">d8P</a>", "text": "RT @ialjkk: New MapR Hadoop Version Includes Windows, Mac Support #bigdata | http://t.co/7k8YLuYK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:24:45 +0000", "from_user": "nourlcn", "from_user_id": 70045630, "from_user_id_str": "70045630", "from_user_name": "\\u8682\\u8681", "geo": null, "id": 148287566070812670, "id_str": "148287566070812672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1529668189/katong_me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1529668189/katong_me_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "HFTP is a Hadoop filesystem implementation that lets you read data from a remote Hadoop HDFS cluster via HTTP, and data is sourced fr...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:21:16 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 148286691403243520, "id_str": "148286691403243520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "New MapR Hadoop Version Includes Windows, Mac Support http://t.co/hsypmkHL #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:19:59 +0000", "from_user": "followbotlist", "from_user_id": 420104059, "from_user_id_str": "420104059", "from_user_name": "\\u3076\\u308D\\u3063\\u304F\\u308A\\u3059\\u3068", "geo": null, "id": 148286367305187330, "id_str": "148286367305187328", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twittbot.net/" rel="nofollow">twittbot.net</a>", "text": "C\\u8A00\\u8A9E/C++/C#/F#/PHP/Perl/Ruby/Python/Lisp/Prolog/ML/Haskell/HTML5/VB/Basic/\\u30A6\\u30A7\\u30D6\\u30C7\\u30B6\\u30A4\\u30F3/\\u30EC\\u30F3\\u30BF\\u30EB\\u30B5\\u30FC\\u30D0/CGI/\\u30BB\\u30AD\\u30E5\\u30EA\\u30C6\\u30A3/FLASH/Web/\\u30BD\\u30FC\\u30B7\\u30E3\\u30EB/SNS/\\u30B0\\u30EB\\u30FC\\u30D7\\u30A6\\u30A7\\u30A2/Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:17:49 +0000", "from_user": "kimifusa", "from_user_id": 63910440, "from_user_id_str": "63910440", "from_user_name": "\\u3075\\u3058\\u3055\\u3093", "geo": null, "id": 148285821093552130, "id_str": "148285821093552128", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/559664546/akafuji2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/559664546/akafuji2_normal.jpg", "source": "<a href="http://www.soicha.com" rel="nofollow">SOICHA</a>", "text": "\\u30DE\\u30CD\\u30ED\\u30F3\\u3001\\u632F\\u308A\\u8FBC\\u3081\\u8A50\\u6B3A\\u9632\\u6B62\\u306E\\u89E3\\u6790\\u30B7\\u30B9\\u30C6\\u30E0\\u3002\\u5BCC\\u58EB\\u901A\\u3068NTT\\u30C7\\u30FC\\u30BF\\u304C\\u5171\\u540C\\u958B\\u767A\\u3002\\u5B89\\u4FA1\\u306A\\u30D1\\u30BD\\u30B3\\u30F3\\u30B5\\u30FC\\u30D0\\u30FC\\u3092\\u7E4B\\u304E\\u9AD8\\u901F\\u51E6\\u7406\\u304C\\u53EF\\u80FD\\u306A\\u30BD\\u30D5\\u30C8\\u3063\\u3066hadoop\\u3067\\u3059\\u304B\\u306D\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:15:42 +0000", "from_user": "stephenroller", "from_user_id": 13759132, "from_user_id_str": "13759132", "from_user_name": "Stephen Roller", "geo": null, "id": 148285289486495740, "id_str": "148285289486495744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/237613623/me3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/237613623/me3_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:07:03 +0000", "from_user": "patrickangeles", "from_user_id": 18193577, "from_user_id_str": "18193577", "from_user_name": "Patrick Angeles", "geo": null, "id": 148283113909403650, "id_str": "148283113909403648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/67818315/profile_image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/67818315/profile_image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:52:18 +0000", "from_user": "kn_shiva", "from_user_id": 334405372, "from_user_id_str": "334405372", "from_user_name": "Shiva", "geo": null, "id": 148279400528486400, "id_str": "148279400528486400", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1507689789/kn_shiva_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1507689789/kn_shiva_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @dpatil: oh yeah! \\u201C@mndoci: Hadoop and Pig at LinkedIn SNA http://t.co/KydyTQYE\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:45:57 +0000", "from_user": "Vivagvz", "from_user_id": 430054092, "from_user_id_str": "430054092", "from_user_name": "Viva Chidester", "geo": null, "id": 148277803756953600, "id_str": "148277803756953600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1677538957/r0ptxn55at_133044993_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677538957/r0ptxn55at_133044993_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Pro Hadoop: You\\u2019ve heard the hype about Hadoop: it runs petabyte\\u2013scale data mining tasks insanely fast, it runs ... http://t.co/ZsgQJwcT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:25:24 +0000", "from_user": "yapengwu", "from_user_id": 54426296, "from_user_id_str": "54426296", "from_user_name": "Yapeng Wu", "geo": null, "id": 148272630519181300, "id_str": "148272630519181312", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1382972548/P1000534_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1382972548/P1000534_1_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @simon: Love it :) \"@mndoci: Zero to #Hadoop in 5 minutes: http://t.co/UPA7VyWX #aws #coolstuff\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:18:54 +0000", "from_user": "stackfeed", "from_user_id": 237310237, "from_user_id_str": "237310237", "from_user_name": "StackOverflow", "geo": null, "id": 148270992463118340, "id_str": "148270992463118336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Unable to open iterator for alias in pig: I was doing some experiments in pig(hadoop mode).\\nI loaded the sample ... http://t.co/WSkvFbc8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:12:52 +0000", "from_user": "ichattopadhyaya", "from_user_id": 39338044, "from_user_id_str": "39338044", "from_user_name": "Ishan Chattopadhyaya", "geo": null, "id": 148269474376728580, "id_str": "148269474376728576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/215682146/ishan-hackergotchi_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/215682146/ishan-hackergotchi_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:12:17 +0000", "from_user": "nicolastorzec", "from_user_id": 61111487, "from_user_id_str": "61111487", "from_user_name": "Nicolas Torzec", "geo": null, "id": 148269327777411070, "id_str": "148269327777411072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1525441753/Photo_on_2011-09-02_at_11.47__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1525441753/Photo_on_2011-09-02_at_11.47__2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Worth keeping in mind: datafu is LinkedIn's collection of #Pig UDFs for Statistics and Data Mining http://t.co/7Jlum0R5 - #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:57:43 +0000", "from_user": "randymillstop", "from_user_id": 323431151, "from_user_id_str": "323431151", "from_user_name": "Randy Mills", "geo": null, "id": 148265662295453700, "id_str": "148265662295453696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1411575160/1308947703_forn421l_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1411575160/1308947703_forn421l_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Cloudera Expands Enterprise Management Software For Apache Hadoop With End-to-End Visibility for Big Data Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:48:00 +0000", "from_user": "melissahick", "from_user_id": 20812756, "from_user_id_str": "20812756", "from_user_name": "Melissa Hick", "geo": null, "id": 148263219818012670, "id_str": "148263219818012672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1136078385/46603_10100510039653261_2007937_71570084_5675483_n_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1136078385/46603_10100510039653261_2007937_71570084_5675483_n_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:42:16 +0000", "from_user": "sasaokstu9", "from_user_id": 397018488, "from_user_id_str": "397018488", "from_user_name": "Sasao Hunter", "geo": null, "id": 148261775731720200, "id_str": "148261775731720192", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@Umamor1 http://t.co/0zecFa07", "to_user": "Umamor1", "to_user_id": 73961204, "to_user_id_str": "73961204", "to_user_name": "That Girl Called Uma", "in_reply_to_status_id": 134975359144833020, "in_reply_to_status_id_str": "134975359144833025"}, +{"created_at": "Sun, 18 Dec 2011 04:40:09 +0000", "from_user": "ansmily", "from_user_id": 102714014, "from_user_id_str": "102714014", "from_user_name": "dily carrion", "geo": null, "id": 148261240861491200, "id_str": "148261240861491200", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1675574042/IMG01188-20111101-1143_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675574042/IMG01188-20111101-1143_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @compuenapex: Microsoft Azure aloja Hadoop y otras aplicaciones de c\\u00F3digo abierto http://t.co/KKdeRWDP #compuenapex", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:37:35 +0000", "from_user": "sasaokstu9", "from_user_id": 397018488, "from_user_id_str": "397018488", "from_user_name": "Sasao Hunter", "geo": null, "id": 148260596234715140, "id_str": "148260596234715136", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@PairadocsDental http://t.co/0zecFa07", "to_user": "PairadocsDental", "to_user_id": 317902344, "to_user_id_str": "317902344", "to_user_name": "Pairadocs Dental GRP", "in_reply_to_status_id": 134975171932061700, "in_reply_to_status_id_str": "134975171932061696"}, +{"created_at": "Sun, 18 Dec 2011 04:34:33 +0000", "from_user": "atsjobs", "from_user_id": 14892822, "from_user_id_str": "14892822", "from_user_name": "ATS Jobs", "geo": null, "id": 148259831667634180, "id_str": "148259831667634177", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/54806979/ATSjobs_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/54806979/ATSjobs_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Senior Hadoop ETL Engineer/Analyst - Taleo - Dublin, CA http://t.co/zbx8pD6I", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:34:00 +0000", "from_user": "dpatil", "from_user_id": 14839109, "from_user_id_str": "14839109", "from_user_name": "dj patil", "geo": null, "id": 148259695046561800, "id_str": "148259695046561792", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1307458892/Profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1307458892/Profile_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "oh yeah! \\u201C@mndoci: Hadoop and Pig at LinkedIn SNA http://t.co/KydyTQYE\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:33:44 +0000", "from_user": "sasaokstu9", "from_user_id": 397018488, "from_user_id_str": "397018488", "from_user_name": "Sasao Hunter", "geo": null, "id": 148259628789149700, "id_str": "148259628789149697", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@loveof3oranges http://t.co/0zecFa07", "to_user": "loveof3oranges", "to_user_id": 251866164, "to_user_id_str": "251866164", "to_user_name": "Love of 3 Oranges", "in_reply_to_status_id": 134975388081340420, "in_reply_to_status_id_str": "134975388081340416"}, +{"created_at": "Sun, 18 Dec 2011 04:33:04 +0000", "from_user": "kcqon", "from_user_id": 15573440, "from_user_id_str": "15573440", "from_user_name": "Kyle C. Quest", "geo": null, "id": 148259461771964400, "id_str": "148259461771964416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1483981355/kcq_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1483981355/kcq_pic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:30:22 +0000", "from_user": "sasaokstu9", "from_user_id": 397018488, "from_user_id_str": "397018488", "from_user_name": "Sasao Hunter", "geo": null, "id": 148258782273732600, "id_str": "148258782273732608", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@mousespah http://t.co/0zecFa07", "to_user": "mousespah", "to_user_id": 406671453, "to_user_id_str": "406671453", "to_user_name": "Egbert Enriquez", "in_reply_to_status_id": 134975376106590200, "in_reply_to_status_id_str": "134975376106590208"}, +{"created_at": "Sun, 18 Dec 2011 04:23:22 +0000", "from_user": "sasaokstu9", "from_user_id": 397018488, "from_user_id_str": "397018488", "from_user_name": "Sasao Hunter", "geo": null, "id": 148257018459861000, "id_str": "148257018459860993", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@VictoriaBiebeer http://t.co/0zecFa07", "to_user": "Victoriabiebeer", "to_user_id": 346683976, "to_user_id_str": "346683976", "to_user_name": "victoria", "in_reply_to_status_id": 134975407614214140, "in_reply_to_status_id_str": "134975407614214145"}, +{"created_at": "Sun, 18 Dec 2011 04:22:23 +0000", "from_user": "faizanj", "from_user_id": 24107824, "from_user_id_str": "24107824", "from_user_name": "Faizan Javed Ph.D.", "geo": null, "id": 148256771922866180, "id_str": "148256771922866177", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1220036226/pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1220036226/pic_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "RT @mndoci: Hadoop and Pig at LinkedIn SNA http://t.co/kxSuZJDv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:19:55 +0000", "from_user": "esteban", "from_user_id": 3352981, "from_user_id_str": "3352981", "from_user_name": "Esteban Gutierrez", "geo": null, "id": 148256151451082750, "id_str": "148256151451082752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1160811732/self4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1160811732/self4_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:13:49 +0000", "from_user": "hackingdata", "from_user_id": 16061930, "from_user_id_str": "16061930", "from_user_name": "Jeff Hammerbacher", "geo": null, "id": 148254614100262900, "id_str": "148254614100262913", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/759606364/q4781_7814_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/759606364/q4781_7814_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:12:28 +0000", "from_user": "sararuei", "from_user_id": 215649109, "from_user_id_str": "215649109", "from_user_name": "sara ruei", "geo": null, "id": 148254275145957380, "id_str": "148254275145957376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1166994094/4_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1166994094/4_bigger_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft has installed a version of Apache Hadoop on its Azure cloud service: Making decent on an announcement ... http://t.co/05f4Twqh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:01:21 +0000", "from_user": "shiumachi", "from_user_id": 11370182, "from_user_id_str": "11370182", "from_user_name": "Sho Shimauchi", "geo": null, "id": 148251476840554500, "id_str": "148251476840554497", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1112990537/2006-06-04_002_bigger_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1112990537/2006-06-04_002_bigger_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:01:13 +0000", "from_user": "sararuei", "from_user_id": 215649109, "from_user_id_str": "215649109", "from_user_name": "sara ruei", "geo": null, "id": 148251446515728400, "id_str": "148251446515728384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1166994094/4_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1166994094/4_bigger_normal.jpg", "source": "<a href="http://amuir.org" rel="nofollow">sara ruei</a>", "text": "Microsoft has installed a version of Apache Hadoop on its Azure cloud service - http://t.co/fxOq6dsq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:01:13 +0000", "from_user": "sararuei", "from_user_id": 215649109, "from_user_id_str": "215649109", "from_user_name": "sara ruei", "geo": null, "id": 148251444955451400, "id_str": "148251444955451392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1166994094/4_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1166994094/4_bigger_normal.jpg", "source": "<a href="http://amuir.org" rel="nofollow">sara ruei</a>", "text": "Microsoft has installed a version of Apache Hadoop on its Azure cloud service -", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:59:58 +0000", "from_user": "fwiffo", "from_user_id": 5503542, "from_user_id_str": "5503542", "from_user_name": "Joey Echeverria", "geo": null, "id": 148251128738496500, "id_str": "148251128738496512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/786576785/profile_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/786576785/profile_pic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:52:11 +0000", "from_user": "BeckieGetsBased", "from_user_id": 244335655, "from_user_id_str": "244335655", "from_user_name": "Beckiie:)", "geo": null, "id": 148249169843326980, "id_str": "148249169843326976", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683432328/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683432328/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Going to see Katie. Hadoop<3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:40:37 +0000", "from_user": "tatakaba", "from_user_id": 70071037, "from_user_id_str": "70071037", "from_user_name": "takahito takabayashi", "geo": null, "id": 148246259289948160, "id_str": "148246259289948160", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/555026214/___normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/555026214/___normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/yreader/id389733994" rel="nofollow">yReader</a>", "text": "Open source Crowbar code now available for Hadoop | Barton's Blog http://t.co/RxWDID7a", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:40:07 +0000", "from_user": "claudiomartella", "from_user_id": 52693451, "from_user_id_str": "52693451", "from_user_name": "Claudio Martella", "geo": null, "id": 148246133834125300, "id_str": "148246133834125312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/291874402/io_nuvole_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/291874402/io_nuvole_small_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @sscdotopen: New blogpost: Running #giraph's unit tests in a pseudo-distributed hadoop instance http://t.co/qOdCdkWJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:38:22 +0000", "from_user": "jpatanooga", "from_user_id": 14935521, "from_user_id_str": "14935521", "from_user_name": "Josh Patterson", "geo": null, "id": 148245692589154300, "id_str": "148245692589154304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1471343793/summer_shot_cropped_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1471343793/summer_shot_cropped_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rjurney: Pleased to see the Pig UDFs released by LinkedIn SNA team: http://t.co/ul1W8mgx #in #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:28:48 +0000", "from_user": "cuervocr", "from_user_id": 42284347, "from_user_id_str": "42284347", "from_user_name": "Carlos Cuervo ", "geo": null, "id": 148243288456048640, "id_str": "148243288456048640", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627723832/Datacenter_Carlos_Cuervo_Agosto_2005_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627723832/Datacenter_Carlos_Cuervo_Agosto_2005_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft Azure aloja Hadoop y otras aplicaciones de c\\u00F3digo abierto: Tal y como se se\\u00F1alara a inicios de este a\\u00F1... http://t.co/y9nXW4LN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:27:08 +0000", "from_user": "jaykreps", "from_user_id": 126226388, "from_user_id_str": "126226388", "from_user_name": "Jay Kreps", "geo": null, "id": 148242865867325440, "id_str": "148242865867325440", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/869018440/head_small_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/869018440/head_small_normal.JPG", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "RT @mndoci: Hadoop and Pig at LinkedIn SNA http://t.co/kxSuZJDv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:24:57 +0000", "from_user": "mndoci", "from_user_id": 605643, "from_user_id_str": "605643", "from_user_name": "Deepak Singh", "geo": null, "id": 148242318183497730, "id_str": "148242318183497729", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1106198507/3790132182_5d654efd4c_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1106198507/3790132182_5d654efd4c_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "Hadoop and Pig at LinkedIn SNA http://t.co/kxSuZJDv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:22:35 +0000", "from_user": "CareerSculptors", "from_user_id": 368299625, "from_user_id_str": "368299625", "from_user_name": "CareerSculptors ", "geo": null, "id": 148241721266933760, "id_str": "148241721266933761", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1561907486/cs2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1561907486/cs2_normal.png", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Hiring a Hadoop / Mapreduce Developer in California http://t.co/PcNB6TGP #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:17:29 +0000", "from_user": "ChrisDiehl", "from_user_id": 14595061, "from_user_id_str": "14595061", "from_user_name": "Chris Diehl", "geo": null, "id": 148240438879457280, "id_str": "148240438879457282", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/660241500/ZionSmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/660241500/ZionSmall_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Modeling with Hadoop - KDD 2011 Tutorial - http://t.co/NfMNacWW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:16:13 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 148240120858939400, "id_str": "148240120858939393", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hadoop-Hdfs-0.23-Build #106 [Jenkins] http://t.co/i7IIfGkN #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:12:16 +0000", "from_user": "rjurney", "from_user_id": 15831927, "from_user_id_str": "15831927", "from_user_name": "Russell Jurney", "geo": null, "id": 148239127790366720, "id_str": "148239127790366720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1468674812/bad_avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1468674812/bad_avatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Pleased to see the Pig UDFs released by LinkedIn SNA team: http://t.co/ul1W8mgx #in #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:11:40 +0000", "from_user": "jesuvaliant", "from_user_id": 86121541, "from_user_id_str": "86121541", "from_user_name": "Jesu Valiant", "geo": null, "id": 148238976204025860, "id_str": "148238976204025856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1276315028/Jesu_Valiant_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1276315028/Jesu_Valiant_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @WindowsAzure: Microsoft Tries Hadoop on #Windows #Azure: gives Windows Azure Big Data capabilities http://t.co/hgQobdw2 #Cloud /via @Cloud_Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:07:44 +0000", "from_user": "solbajoelmar", "from_user_id": 190465644, "from_user_id_str": "190465644", "from_user_name": "Pablo L H", "geo": null, "id": 148237985056440320, "id_str": "148237985056440321", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1437683420/a1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1437683420/a1_normal.jpg", "source": "<a href="http://news.ycombinator.com/" rel="nofollow">Hacker News Bot</a>", "text": "RT @hackernewsbot: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl... http://t.co/JGEaGFBn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:51:15 +0000", "from_user": "ctrl_alt_supr", "from_user_id": 19178236, "from_user_id_str": "19178236", "from_user_name": "Ctrl-Alt-Supr", "geo": null, "id": 148233837988675600, "id_str": "148233837988675584", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/71868677/encadenado_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/71868677/encadenado_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft Azure aloja Hadoop y otras aplicaciones de c\\u00F3digo abierto - ComputerWorld Venezuela http://t.co/4YBtkEZC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:49:29 +0000", "from_user": "andhos", "from_user_id": 42066641, "from_user_id_str": "42066641", "from_user_name": "Amjad Mohamed", "geo": null, "id": 148233391978975230, "id_str": "148233391978975233", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1653785782/photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653785782/photo_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "RT @rgaidot: MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/eId2csDr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:43:21 +0000", "from_user": "awatto", "from_user_id": 16662012, "from_user_id_str": "16662012", "from_user_name": "awatto", "geo": null, "id": 148231848462516220, "id_str": "148231848462516225", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/218313476/IMG_2589_2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/218313476/IMG_2589_2_normal.JPG", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @sadatshami: MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/1s1uXVdy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:37:59 +0000", "from_user": "y_a_s_s", "from_user_id": 111462305, "from_user_id_str": "111462305", "from_user_name": "yass", "geo": null, "id": 148230497254899700, "id_str": "148230497254899712", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1166894012/248_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1166894012/248_normal.png", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "[amazon][big data][hadoop][aws] / \\u201CAmazon Web Services Planning Real-Time, Big Data Stream Processing Service | Servi\\u2026\\u201D http://t.co/msWHAXys", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:25:08 +0000", "from_user": "StephenHawking9", "from_user_id": 341975857, "from_user_id_str": "341975857", "from_user_name": "Stephen Hawking", "geo": null, "id": 148227266709692400, "id_str": "148227266709692416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1459648557/StephanHawking_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1459648557/StephanHawking_normal.jpg", "source": "<a href="http://suhastech.com/tr" rel="nofollow">Tweet Random</a>", "text": "24 Interview Questions & Answers for Hadoop developers http://t.co/QOsinPTo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:21:36 +0000", "from_user": "rokorokoroko", "from_user_id": 44231643, "from_user_id_str": "44231643", "from_user_name": "Roko", "geo": null, "id": 148226373683642370, "id_str": "148226373683642369", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1225490181/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225490181/profile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:03:48 +0000", "from_user": "muralikrishnag", "from_user_id": 50158109, "from_user_id_str": "50158109", "from_user_name": "murali gandluru", "geo": null, "id": 148221894615773200, "id_str": "148221894615773184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Interesting, wonder what this does to FB NW design...\"Timeline uses MySQL, not Hadoop Hbase\"\\nhttp://t.co/eiHGp9pK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:55:21 +0000", "from_user": "ludofleury", "from_user_id": 47574527, "from_user_id_str": "47574527", "from_user_name": "Ludovic Fleury", "geo": null, "id": 148204670819643400, "id_str": "148204670819643392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1264063021/ludovic_fleury_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1264063021/ludovic_fleury_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "RT @rgaidot: MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/eId2csDr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:54:08 +0000", "from_user": "landehorsl", "from_user_id": 322643938, "from_user_id_str": "322643938", "from_user_name": "Landen Horsley", "geo": null, "id": 148204364165693440, "id_str": "148204364165693441", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1409567817/1308841562_sql_server_agent_1_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1409567817/1308841562_sql_server_agent_1_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Microsoft updates Azure with SDK and Hadoop preview - Register http://t.co/RP5Pb1VQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:36:17 +0000", "from_user": "_akisato", "from_user_id": 136650757, "from_user_id_str": "136650757", "from_user_name": "Akisato Kimura", "geo": null, "id": 148199872619757570, "id_str": "148199872619757568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/847946963/6317668_1055526607_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/847946963/6317668_1055526607_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:35:15 +0000", "from_user": "jay23jack", "from_user_id": 438655117, "from_user_id_str": "438655117", "from_user_name": "Jie Li", "geo": null, "id": 148199611486572540, "id_str": "148199611486572544", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": null, "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: 8 Most Interesting Companies for Hadoop's Future http://t.co/DGjsMLzh #Hadoop #Cloudera #Hortonworks #MapR #Hadapt #HPCC #DataStax #Zettaset", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:27:06 +0000", "from_user": "tmj_sfo_itdb", "from_user_id": 24697038, "from_user_id_str": "24697038", "from_user_name": "TMJ-SFO IT-DB Jobs", "geo": +{"coordinates": [37.7239,-122.4793], "type": "Point"}, "id": 148197562367746050, "id_str": "148197562367746048", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1501613411/Logo_tmj_new2b_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1501613411/Logo_tmj_new2b_normal.png", "source": "<a href="http://tweetmyjobs.com" rel="nofollow">SafeTweet by TweetMyJOBS</a>", "text": "CBS Corporation: Senior Hadoop Database Engineer ( #SanFrancisco , CA) http://t.co/qONPXBOu #Database #Job #Jobs #TweetMyJOBS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:24:06 +0000", "from_user": "martinabbott", "from_user_id": 38205552, "from_user_id_str": "38205552", "from_user_name": "Martin Abbott", "geo": null, "id": 148196806667415550, "id_str": "148196806667415552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/964353511/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/964353511/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rogerjenn: Added an Introduction to the #Hadoop on #Azure Interactive #Hive Console video to my current blog post: http://t.co/5NEHoktj #Cloud #BigData", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:09:14 +0000", "from_user": "wollepb", "from_user_id": 15015126, "from_user_id_str": "15015126", "from_user_name": "Wolfgang Reinhardt", "geo": null, "id": 148193063712473100, "id_str": "148193063712473088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1333572768/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1333572768/avatar_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/MQ4HHgPu via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:59:59 +0000", "from_user": "nyoppie", "from_user_id": 77865975, "from_user_id_str": "77865975", "from_user_name": "nyop", "geo": null, "id": 148190738197381120, "id_str": "148190738197381120", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1238406817/funifuku_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1238406817/funifuku_normal.jpg", "source": "<a href="http://twipple.jp/" rel="nofollow">\\u3064\\u3044\\u3063\\u3077\\u308B Pro for iPhone</a>", "text": "\\u9280\\u884C\\u306E\\u4E0D\\u6B63\\u53D6\\u5F15\\u691C\\u77E5\\u3001\\u5206\\u6563\\u7CFB\\u306E\\u30A2\\u30FC\\u30AD\\u30C6\\u30AF\\u30C1\\u30E3\\u3063\\u307D\\u3044\\u3051\\u3069\\u3001\\u3084\\u3071Hadoop\\u306A\\u3093\\u3060\\u308D\\u3046\\u304B\\uFF1F\\n\\u306B\\u3057\\u3066\\u3082CEP\\u3063\\u3066\\u30B7\\u30B9\\u30C6\\u30E0\\u4EE5\\u4E0A\\u306B\\u30EB\\u30FC\\u30EB\\u7D44\\u3080\\u306E\\u304C\\u96E3\\u3057\\u3044\\u3088\\u306A\\u3002\\nhttp://t.co/vlP1V2pY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:51:07 +0000", "from_user": "wunderkid", "from_user_id": 15167928, "from_user_id_str": "15167928", "from_user_name": "wunderkid", "geo": null, "id": 148188506945097730, "id_str": "148188506945097728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1622289560/Wunderkid_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622289560/Wunderkid_2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:40:55 +0000", "from_user": "pphanicareers", "from_user_id": 218695843, "from_user_id_str": "218695843", "from_user_name": "Phani", "geo": null, "id": 148185938093285380, "id_str": "148185938093285376", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: 8 Most Interesting Companies for Hadoop's Future http://t.co/DGjsMLzh #Hadoop #Cloudera #Hortonworks #MapR #Hadapt #HPCC #DataStax #Zettaset", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:40:47 +0000", "from_user": "mikeolson", "from_user_id": 803694, "from_user_id_str": "803694", "from_user_name": "Mike Olson", "geo": null, "id": 148185903762911230, "id_str": "148185903762911232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/69588222/head_shot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/69588222/head_shot_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/2gRq2D3a", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:37:51 +0000", "from_user": "from92714second", "from_user_id": 261707865, "from_user_id_str": "261707865", "from_user_name": "from92714second", "geo": null, "id": 148185166077112320, "id_str": "148185166077112320", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://www.eqentia.com" rel="nofollow">Eqentia</a>", "text": "RT @cloudEq: Microsoft Tries Hadoop on Azure http://t.co/CFmeKdlK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:32:30 +0000", "from_user": "from92714second", "from_user_id": 261707865, "from_user_id_str": "261707865", "from_user_name": "from92714second", "geo": null, "id": 148183821316132860, "id_str": "148183821316132864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://www.eqentia.com" rel="nofollow">Eqentia</a>", "text": "RT @cloudEq: Is Hadoop the new stored procedure ? http://t.co/oIVM4zTv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:30:11 +0000", "from_user": "Bay_Area_Jobs", "from_user_id": 65245080, "from_user_id_str": "65245080", "from_user_name": "Bay Area Jobs", "geo": null, "id": 148183235145379840, "id_str": "148183235145379840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/359850596/californiaflag_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/359850596/californiaflag_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Now Hiring: 5 Applications Architect - HADOOP/JAVA/J2EE Techno http://t.co/KixcEkeV Jobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:30:04 +0000", "from_user": "sfahad", "from_user_id": 42889631, "from_user_id_str": "42889631", "from_user_name": "Fahad Shah", "geo": null, "id": 148183209576890370, "id_str": "148183209576890368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/261897199/mypic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/261897199/mypic_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @sadatshami: MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/1s1uXVdy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:13:36 +0000", "from_user": "sreevatsanraman", "from_user_id": 58385843, "from_user_id_str": "58385843", "from_user_name": "sreevatsan raman", "geo": null, "id": 148179065663266800, "id_str": "148179065663266818", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:08:46 +0000", "from_user": "enriqueros", "from_user_id": 194104422, "from_user_id_str": "194104422", "from_user_name": "Enrique Ros", "geo": null, "id": 148177848065196030, "id_str": "148177848065196032", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1592307777/enrique.ros.profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592307777/enrique.ros.profile_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @W_TEN_G: Muy buen articulo acerca de Hadoop en BI http://t.co/hR6Ea5Dc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:08:24 +0000", "from_user": "xcbsmith", "from_user_id": 18576450, "from_user_id_str": "18576450", "from_user_name": "Christopher Smith", "geo": null, "id": 148177754859376640, "id_str": "148177754859376641", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/85358991/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/85358991/me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:07:12 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 148177451896418300, "id_str": "148177451896418304", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hadoop-Mapreduce-0.23-Build #124 [Jenkins] http://t.co/t5Li4Bzg #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:07:04 +0000", "from_user": "f90fe", "from_user_id": 61937301, "from_user_id_str": "61937301", "from_user_name": "Manish Agarwal", "geo": null, "id": 148177420757901300, "id_str": "148177420757901312", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1657291450/IMG_4558_s1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657291450/IMG_4558_s1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "What is Hadoop?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Sat, 17 Dec 2011 23:06:48 +0000", "from_user": "JeffMarvin", "from_user_id": 38384157, "from_user_id_str": "38384157", "from_user_name": "Jeff Marvin", "geo": null, "id": 148177354102013950, "id_str": "148177354102013952", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681544664/N7Shark_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681544664/N7Shark_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @strataconf: Five Big Data predictions for 2012 http://t.co/0no2xN8g via @radar #bigdata #visualization #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:04:30 +0000", "from_user": "rgaidot", "from_user_id": 1245801, "from_user_id_str": "1245801", "from_user_name": "R\\u00E9gis Gaidot", "geo": null, "id": 148176774432432130, "id_str": "148176774432432129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1266738841/avatar-6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266738841/avatar-6_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/eId2csDr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:59:34 +0000", "from_user": "sadatshami", "from_user_id": 23984573, "from_user_id_str": "23984573", "from_user_name": "Sadat Shami", "geo": null, "id": 148175533677613060, "id_str": "148175533677613056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/295326456/sadat_shami_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/295326456/sadat_shami_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/1s1uXVdy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:48:04 +0000", "from_user": "kevinduh", "from_user_id": 117742529, "from_user_id_str": "117742529", "from_user_name": "Kevin Duh", "geo": null, "id": 148172639716909060, "id_str": "148172639716909056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1317115134/portrait_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317115134/portrait_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:44:28 +0000", "from_user": "TimMattison", "from_user_id": 16650099, "from_user_id_str": "16650099", "from_user_name": "Tim Mattison", "geo": null, "id": 148171732535099400, "id_str": "148171732535099392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1618766799/timmattison-twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618766799/timmattison-twitter_normal.png", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "YES! Hadoop training is on this week with @cloudera. Writing a few articles about my newly developed Hadoop skills soon...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:30:18 +0000", "from_user": "paulrosania", "from_user_id": 15007480, "from_user_id_str": "15007480", "from_user_name": "Paul Rosania", "geo": null, "id": 148168166160334850, "id_str": "148168166160334849", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/905259976/Paul_Rosania-square_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/905259976/Paul_Rosania-square_normal.jpg", "source": "<a href="http://timely.is" rel="nofollow">Timely by Demandforce</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/2pseNHZ3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:25:53 +0000", "from_user": "d8Pit", "from_user_id": 264394701, "from_user_id_str": "264394701", "from_user_name": "The URL Popularizer", "geo": null, "id": 148167055114379260, "id_str": "148167055114379264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317284522/logo-header_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317284522/logo-header_normal.png", "source": "<a href="http://d8p.it" rel="nofollow">d8P</a>", "text": "RT @lespider: My blog post about data perishability - #splunk #hadoop #bigdata #in | http://t.co/55madDDT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:22:41 +0000", "from_user": "lespider", "from_user_id": 378266869, "from_user_id_str": "378266869", "from_user_name": "B Chen", "geo": null, "id": 148166249858347000, "id_str": "148166249858347008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1555270339/spider-man-logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555270339/spider-man-logo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "My blog post about data perishability - http://t.co/0LGAerGD #splunk #hadoop #bigdata #in", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:15:44 +0000", "from_user": "BethWPR", "from_user_id": 80382526, "from_user_id_str": "80382526", "from_user_name": "Beth Winkowski", "geo": null, "id": 148164501915713540, "id_str": "148164501915713536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/473391533/Beth_Head_Shot_9-4-09__1___2__normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/473391533/Beth_Head_Shot_9-4-09__1___2__normal.JPG", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @Wikibon: MapR Hadoop Strategy Stresses Performance, Availability and API Compatibility Over Open Source Code http://t.co/Z2Hc3SrU by @jeffreyfkelly", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:56:43 +0000", "from_user": "stlogicscorp", "from_user_id": 419813881, "from_user_id_str": "419813881", "from_user_name": "stlogics corp", "geo": null, "id": 148159717221470200, "id_str": "148159717221470208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1654287587/STLogics_5a_jpg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654287587/STLogics_5a_jpg_normal.jpg", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Know anyone for this job? Hadoop Training and SharePoint Training in Indianapolis, IN http://t.co/I4cPs3Bb #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:49:19 +0000", "from_user": "ChrisDiehl", "from_user_id": 14595061, "from_user_id_str": "14595061", "from_user_name": "Chris Diehl", "geo": null, "id": 148157853444739070, "id_str": "148157853444739072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/660241500/ZionSmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/660241500/ZionSmall_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:48:58 +0000", "from_user": "MrChrisJohnson", "from_user_id": 29661283, "from_user_id_str": "29661283", "from_user_name": "Christopher Johnson", "geo": null, "id": 148157766614257660, "id_str": "148157766614257664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1585369458/TeacherHead_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585369458/TeacherHead_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Enjoyed @matei_zaharia's #NIPS2011 workshop on #Spark and am excited to start playing w/ it (Hadoop for iterative algos == muy malo)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:47:44 +0000", "from_user": "lhillenbrand", "from_user_id": 22845507, "from_user_id_str": "22845507", "from_user_name": "Linden Hillenbrand", "geo": null, "id": 148157456458063870, "id_str": "148157456458063872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/87892395/n18500934_32419491_1963_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/87892395/n18500934_32419491_1963_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:37:44 +0000", "from_user": "acanimal", "from_user_id": 227674156, "from_user_id_str": "227674156", "from_user_name": "Antonio Santiago", "geo": null, "id": 148154939317813250, "id_str": "148154939317813248", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1192770772/antonio_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1192770772/antonio_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/feeddler-rss-reader-pro/id365710282?mt=8" rel="nofollow">Feeddler</a>", "text": "Introducing hadoop in 20 pages http://t.co/aqM3a7fT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:32:10 +0000", "from_user": "Taneli", "from_user_id": 2068881, "from_user_id_str": "2068881", "from_user_name": "Taneli Mielik\\u00E4inen", "geo": null, "id": 148153538747441150, "id_str": "148153538747441153", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/591220431/4113878348_bc8ed11826_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/591220431/4113878348_bc8ed11826_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Bitdeli: Data in 2012: Less Hadoop, more interactivity, experimentation, streaming and visualizations http://t.co/epxPI0QJ by @edd #hadoop #datavis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:26:50 +0000", "from_user": "mladjemi", "from_user_id": 68467066, "from_user_id_str": "68467066", "from_user_name": "Mehdi Ladjemi", "geo": null, "id": 148152193730625540, "id_str": "148152193730625537", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/379361013/2f1955badebe529782916c805f146a88_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/379361013/2f1955badebe529782916c805f146a88_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Azure : baisse des co\\u00FBts, SDK pour Node.js & plusieurs outils open source http://t.co/f676x81V via @ClubicPro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:26:25 +0000", "from_user": "Arcond", "from_user_id": 105179055, "from_user_id_str": "105179055", "from_user_name": "Alexander Kahoun", "geo": null, "id": 148152090118725630, "id_str": "148152090118725632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1667293656/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667293656/profile_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rogerjenn: Added an Introduction to the #Hadoop on #Azure Interactive #Hive Console video to my current blog post: http://t.co/5NEHoktj #Cloud #BigData", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:21:30 +0000", "from_user": "stackfeed", "from_user_id": 237310237, "from_user_id_str": "237310237", "from_user_name": "StackOverflow", "geo": null, "id": 148150854808113150, "id_str": "148150854808113152", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hadoop Fairschduler doesn't utilize all map slots: Running a 12-node hadoop cluster with total 48 map-slots avai... http://t.co/aniOuYlG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:16:39 +0000", "from_user": "rickggaribay", "from_user_id": 14164915, "from_user_id_str": "14164915", "from_user_name": "Rick G. Garibay", "geo": null, "id": 148149630729863170, "id_str": "148149630729863169", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1382402285/3cae00bf-9e68-49db-b905-64df96c40c96_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1382402285/3cae00bf-9e68-49db-b905-64df96c40c96_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rogerjenn: Added an Introduction to the #Hadoop on #Azure Interactive #Hive Console video to my current blog post: http://t.co/5NEHoktj #Cloud #BigData", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:15:15 +0000", "from_user": "javiercbk", "from_user_id": 94555589, "from_user_id_str": "94555589", "from_user_name": "Javier Lecuona", "geo": null, "id": 148149281856045060, "id_str": "148149281856045056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1666569364/XO3r4rWK_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666569364/XO3r4rWK_normal", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "I have so many things to read about software. Also I'm experimenting with node.js and MongoDB and going to play with hadoop later #in #geek", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:14:40 +0000", "from_user": "repeatedly", "from_user_id": 6731442, "from_user_id_str": "6731442", "from_user_name": "Mr. Fiber", "geo": null, "id": 148149133969068030, "id_str": "148149133969068032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1523175058/mini_new_icon_from_unno_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1523175058/mini_new_icon_from_unno_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:13:23 +0000", "from_user": "mopatel", "from_user_id": 17971178, "from_user_id_str": "17971178", "from_user_name": "Mo Patel", "geo": null, "id": 148148809761964030, "id_str": "148148809761964032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1189265555/profile3-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1189265555/profile3-1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:10:57 +0000", "from_user": "suzuvie_re", "from_user_id": 163804732, "from_user_id_str": "163804732", "from_user_name": "\\u3059\\u305A\\u304D\\u3068\\u3082", "geo": null, "id": 148148195816521730, "id_str": "148148195816521728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1443102380/SN370094.jpg_____normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1443102380/SN370094.jpg_____normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:09:25 +0000", "from_user": "Dottyrbp", "from_user_id": 430058492, "from_user_id_str": "430058492", "from_user_name": "Dotty Kondel", "geo": null, "id": 148147811794423800, "id_str": "148147811794423810", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677543381/qotn2ru4t5_122480869_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677543381/qotn2ru4t5_122480869_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Pro Hadoop: You\\u2019ve heard the hype about Hadoop: it runs petabyte\\u2013scale data mining tasks insanely fast, it runs ... http://t.co/faI4KpI4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:04:55 +0000", "from_user": "jpatanooga", "from_user_id": 14935521, "from_user_id_str": "14935521", "from_user_name": "Josh Patterson", "geo": null, "id": 148146678002757630, "id_str": "148146678002757633", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1471343793/summer_shot_cropped_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1471343793/summer_shot_cropped_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:01:20 +0000", "from_user": "nuvan", "from_user_id": 25082515, "from_user_id_str": "25082515", "from_user_name": "Nuno Valente", "geo": null, "id": 148145776030265340, "id_str": "148145776030265345", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/105214566/he-man_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/105214566/he-man_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/UMCxiD3u via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:58:29 +0000", "from_user": "josh_wills", "from_user_id": 14578294, "from_user_id_str": "14578294", "from_user_name": "Josh Wills", "geo": null, "id": 148145062449123330, "id_str": "148145062449123328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1392809578/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1392809578/me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:57:03 +0000", "from_user": "venkat_sahasra", "from_user_id": 321575837, "from_user_id_str": "321575837", "from_user_name": "Venkat Prasad", "geo": null, "id": 148144701487321100, "id_str": "148144701487321088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1406743308/logo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1406743308/logo_normal.gif", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Hadoop Training Program in Quincy, MA http://t.co/OuJk2rwH #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:49:09 +0000", "from_user": "optimusinfo", "from_user_id": 35262440, "from_user_id_str": "35262440", "from_user_name": "Optimus Information", "geo": null, "id": 148142709713014800, "id_str": "148142709713014784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/853822167/square_logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/853822167/square_logo_normal.png", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "RT @bmann: Azure price cuts, bigger databases, now with node.js and MongoDB support, Hadoop on its way - I\\u2019m impressed... http://t.co/3GBpDOzo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:45:14 +0000", "from_user": "wesmckinn", "from_user_id": 115494880, "from_user_id_str": "115494880", "from_user_name": "Wes McKinney", "geo": null, "id": 148141727516082180, "id_str": "148141727516082177", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1585682840/pic3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585682840/pic3_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:41:35 +0000", "from_user": "patrickclee0207", "from_user_id": 113093915, "from_user_id_str": "113093915", "from_user_name": "Patrick Lee", "geo": null, "id": 148140809626198000, "id_str": "148140809626198016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1164401647/twitterProfile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1164401647/twitterProfile_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @MicrosoftBI: I uploaded a @YouTube video http://t.co/WWiuQpFL Introduction to the Hadoop on Azure Interactive Hive Console", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:38:02 +0000", "from_user": "UpSearchBI", "from_user_id": 367246669, "from_user_id_str": "367246669", "from_user_name": "UpSearchBI", "geo": null, "id": 148139915232817150, "id_str": "148139915232817152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1526810136/UpSearch-image-all-black-square_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1526810136/UpSearch-image-all-black-square_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @MicrosoftBI: I uploaded a @YouTube video http://t.co/WWiuQpFL Introduction to the Hadoop on Azure Interactive Hive Console", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:35:26 +0000", "from_user": "CosimoAccoto", "from_user_id": 92730373, "from_user_id_str": "92730373", "from_user_name": "Cosimo Accoto", "geo": null, "id": 148139260552298500, "id_str": "148139260552298496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1432102362/Cosimo_A__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1432102362/Cosimo_A__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:34:04 +0000", "from_user": "LearnExcel", "from_user_id": 114589142, "from_user_id_str": "114589142", "from_user_name": "Guruonline-Iwebslog", "geo": null, "id": 148138915864387600, "id_str": "148138915864387584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/698010679/excel_2003_01_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/698010679/excel_2003_01_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "http://t.co/pHoXARdG-Microsoft Tries Hadoop on Azure: s App Engine. Users can build MapReduce jobs. Microsoft... http://t.co/t8wuWyrn #Excel", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:27:32 +0000", "from_user": "David_Ginzburg", "from_user_id": 37094219, "from_user_id_str": "37094219", "from_user_name": "David Ginzburg", "geo": null, "id": 148137270468288500, "id_str": "148137270468288512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1658569830/nelson_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658569830/nelson_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:26:18 +0000", "from_user": "NewHorizonsCLC", "from_user_id": 57162623, "from_user_id_str": "57162623", "from_user_name": "New Horizons", "geo": null, "id": 148136959544533000, "id_str": "148136959544532992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/317231961/NHColorLogoNoTag_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/317231961/NHColorLogoNoTag_sm_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#Microsoft offers Hadoop preview on Azure http://t.co/zJp7ects", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:17:57 +0000", "from_user": "darkrho", "from_user_id": 8260242, "from_user_id_str": "8260242", "from_user_name": "Rolando Espinoza", "geo": null, "id": 148134859183898620, "id_str": "148134859183898624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1631307886/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631307886/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:17:15 +0000", "from_user": "peteskomoroch", "from_user_id": 14344469, "from_user_id_str": "14344469", "from_user_name": "Peter Skomoroch", "geo": null, "id": 148134682612088830, "id_str": "148134682612088834", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1331342742/skomoroch_photo_ocean_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1331342742/skomoroch_photo_ocean_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:17:13 +0000", "from_user": "phunt", "from_user_id": 12370372, "from_user_id_str": "12370372", "from_user_name": "Patrick Hunt", "geo": null, "id": 148134676601634800, "id_str": "148134676601634816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/80884383/phunt3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/80884383/phunt3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:11:39 +0000", "from_user": "TechnoMile", "from_user_id": 89779407, "from_user_id_str": "89779407", "from_user_name": "TechnoMile LLC", "geo": null, "id": 148133275523751940, "id_str": "148133275523751936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1187113101/techomile_normal_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1187113101/techomile_normal_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Added an Introduction to the #Hadoop on #Azure Interactive #Hive Console video to my current blog post: http://t... http://t.co/oC3iCOMM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:10:08 +0000", "from_user": "rogerjenn", "from_user_id": 14107861, "from_user_id_str": "14107861", "from_user_name": "Roger Jennings", "geo": null, "id": 148132892759965700, "id_str": "148132892759965697", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1568028233/OakLeafLogoMVP100px_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1568028233/OakLeafLogoMVP100px_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Added an Introduction to the #Hadoop on #Azure Interactive #Hive Console video to my current blog post: http://t.co/5NEHoktj #Cloud #BigData", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:08:09 +0000", "from_user": "josh_wills", "from_user_id": 14578294, "from_user_id_str": "14578294", "from_user_name": "Josh Wills", "geo": null, "id": 148132394166267900, "id_str": "148132394166267904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1392809578/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1392809578/me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:01:53 +0000", "from_user": "UMMgl", "from_user_id": 26720438, "from_user_id_str": "26720438", "from_user_name": "Gianluca Nardin", "geo": null, "id": 148130816961159170, "id_str": "148130816961159168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/339976078/ahhh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/339976078/ahhh_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @AssemblingIT: Moving an Elephant: Large Scale Hadoop Data Migration at Facebook -> http://t.co/Lw6U72L8 #USER experiences..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:01:06 +0000", "from_user": "usetrigo", "from_user_id": 210122331, "from_user_id_str": "210122331", "from_user_name": "Eusebio Trigo", "geo": null, "id": 148130617756885000, "id_str": "148130617756884994", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1172429059/NerdHerd_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1172429059/NerdHerd_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @chain: Nuevo art\\u00EDculo en mi blog! Ah\\u00ED van mis dos c\\u00E9ntimos sobre #Hadoop y #BusinessIntelligence. http://t.co/xfHf4oJA #lohabiaprometido", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:54:08 +0000", "from_user": "jamestwhitehead", "from_user_id": 50410452, "from_user_id_str": "50410452", "from_user_name": "James Whitehead", "geo": null, "id": 148128867826143230, "id_str": "148128867826143232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1440275355/JamesProfile_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1440275355/JamesProfile_normal.JPG", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @MicrosoftBI: I uploaded a @YouTube video http://t.co/WWiuQpFL Introduction to the Hadoop on Azure Interactive Hive Console", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:53:05 +0000", "from_user": "ravisRealm", "from_user_id": 49320694, "from_user_id_str": "49320694", "from_user_name": "Raviteja", "geo": null, "id": 148128600544133120, "id_str": "148128600544133120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686041314/384376_334563946560263_100000199815735_1621040_849866453_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686041314/384376_334563946560263_100000199815735_1621040_849866453_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Hadoop Map Reduce is definitely a boon to Server based companies.. Kudos to apache for its innovation..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:50:19 +0000", "from_user": "chain", "from_user_id": 13049522, "from_user_id_str": "13049522", "from_user_name": "Antonio Rivas", "geo": null, "id": 148127904633593860, "id_str": "148127904633593856", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1326225474/215D6832-75FE-42AD-A3E6-1DD7BB0609A2_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1326225474/215D6832-75FE-42AD-A3E6-1DD7BB0609A2_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "Gracias! RT @W_TEN_G Muy buen articulo acerca de Hadoop en BI http://t.co/7C1Ryrsw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:49:28 +0000", "from_user": "unspiced", "from_user_id": 231414165, "from_user_id_str": "231414165", "from_user_name": "zinia adriaanse", "geo": null, "id": 148127692552802300, "id_str": "148127692552802304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1200783306/Twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1200783306/Twitter_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @MicrosoftBI: I uploaded a @YouTube video http://t.co/WWiuQpFL Introduction to the Hadoop on Azure Interactive Hive Console", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:46:07 +0000", "from_user": "MicrosoftBI", "from_user_id": 227829587, "from_user_id_str": "227829587", "from_user_name": "Microsoft BI", "geo": null, "id": 148126848889536500, "id_str": "148126848889536512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1214935103/Twitter-Icon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1214935103/Twitter-Icon_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I uploaded a @YouTube video http://t.co/WWiuQpFL Introduction to the Hadoop on Azure Interactive Hive Console", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:41:45 +0000", "from_user": "cutting", "from_user_id": 7542902, "from_user_id_str": "7542902", "from_user_name": "Doug Cutting", "geo": null, "id": 148125748123795460, "id_str": "148125748123795456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1550705879/DougBWSquare_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1550705879/DougBWSquare_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:28:30 +0000", "from_user": "W_TEN_G", "from_user_id": 342736818, "from_user_id_str": "342736818", "from_user_name": "Wilinton Tenorio", "geo": null, "id": 148122415061405700, "id_str": "148122415061405698", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Muy buen articulo acerca de Hadoop en BI http://t.co/hR6Ea5Dc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:26:27 +0000", "from_user": "Tshooter", "from_user_id": 5393922, "from_user_id_str": "5393922", "from_user_name": "Vinod Kumar V", "geo": null, "id": 148121901162692600, "id_str": "148121901162692608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1228756940/LatestPassportSize_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1228756940/LatestPassportSize_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:23:43 +0000", "from_user": "VanessaAlvarez1", "from_user_id": 16494284, "from_user_id_str": "16494284", "from_user_name": "Vanessa Alvarez", "geo": null, "id": 148121210075619330, "id_str": "148121210075619328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1615554216/FB_profile_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615554216/FB_profile_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @AssemblingIT: Moving an Elephant: Large Scale Hadoop Data Migration at Facebook -> http://t.co/Lw6U72L8 #USER experiences..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:23:12 +0000", "from_user": "valb00", "from_user_id": 15373404, "from_user_id_str": "15373404", "from_user_name": "valb00", "geo": null, "id": 148121083734802430, "id_str": "148121083734802432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1162802602/screen-capture-4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1162802602/screen-capture-4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @AssemblingIT: Moving an Elephant: Large Scale Hadoop Data Migration at Facebook -> http://t.co/Lw6U72L8 #USER experiences..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:10:43 +0000", "from_user": "blargeaux", "from_user_id": 422976542, "from_user_id_str": "422976542", "from_user_name": "Gerry Blargeaux", "geo": null, "id": 148117938426228740, "id_str": "148117938426228737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1661432649/Haeckel_Actiniae2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661432649/Haeckel_Actiniae2_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl | CommonCrawl http://t.co/xTNLCl8u via @addthis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:10:29 +0000", "from_user": "ngzax", "from_user_id": 9336642, "from_user_id_str": "9336642", "from_user_name": "Daryl Richter", "geo": null, "id": 148117879718555650, "id_str": "148117879718555648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1140875085/Photo_on_2010-10-09_at_14.28__3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1140875085/Photo_on_2010-10-09_at_14.28__3_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\"Brian ONeill s Blog: Hadoop MapReduce on Cassandra using Ruby and REST!\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:08:27 +0000", "from_user": "Techits", "from_user_id": 330375746, "from_user_id_str": "330375746", "from_user_name": "Technology Stream", "geo": null, "id": 148117371217911800, "id_str": "148117371217911808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1429141616/2207_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1429141616/2207_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl | CommonCrawl http://t.co/ccliUMmJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:07:08 +0000", "from_user": "proggitarticles", "from_user_id": 169429865, "from_user_id_str": "169429865", "from_user_name": "Proggit Articles", "geo": null, "id": 148117036344688640, "id_str": "148117036344688641", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl | CommonCrawl: submitted by mindrunn... http://t.co/r5Hj8WlF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:05:44 +0000", "from_user": "robotdharma", "from_user_id": 49160357, "from_user_id_str": "49160357", "from_user_name": "Eric ", "geo": null, "id": 148116684639703040, "id_str": "148116684639703040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/329176432/w_thumb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/329176432/w_thumb_normal.jpg", "source": "<a href="http://news.ycombinator.com/" rel="nofollow">Hacker News Bot</a>", "text": "RT @hackernewsbot: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl... http://t.co/JGEaGFBn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:01:27 +0000", "from_user": "jaredbrown", "from_user_id": 873901, "from_user_id_str": "873901", "from_user_name": "Jared Brown", "geo": null, "id": 148115606892314620, "id_str": "148115606892314624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1252982648/eightbit-f5132c56-cadc-43d6-a0a0-0f4417a96c8c_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1252982648/eightbit-f5132c56-cadc-43d6-a0a0-0f4417a96c8c_normal.png", "source": "<a href="http://www.talentopoly.com" rel="nofollow">Talentopoly</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/sdOQP1Uw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:01:26 +0000", "from_user": "tlntco", "from_user_id": 254050040, "from_user_id_str": "254050040", "from_user_name": "Talentopoly Feed", "geo": null, "id": 148115604723871740, "id_str": "148115604723871744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1248090661/T-Icon-vector_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1248090661/T-Icon-vector_normal.png", "source": "<a href="http://www.talentopoly.com" rel="nofollow">Talentopoly</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/xgRPpHfu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:57:02 +0000", "from_user": "markwigmans", "from_user_id": 7527532, "from_user_id_str": "7527532", "from_user_name": "Mark Wigmans", "geo": null, "id": 148114498748821500, "id_str": "148114498748821504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/837273831/MWI_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/837273831/MWI_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "Azure price cuts, bigger databases, now with node.js and MongoDB support, Hadoop on its way http://t.co/Z8pV69Fh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:48:04 +0000", "from_user": "smieszal", "from_user_id": 261779605, "from_user_id_str": "261779605", "from_user_name": "Adam Smieszny", "geo": null, "id": 148112239688302600, "id_str": "148112239688302592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1263932860/6400_656128556165_21408616_37970801_2872639_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263932860/6400_656128556165_21408616_37970801_2872639_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:44:46 +0000", "from_user": "alltop_java", "from_user_id": 191999280, "from_user_id_str": "191999280", "from_user_name": "Alltop Java", "geo": null, "id": 148111411460050940, "id_str": "148111411460050944", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1128524576/IloveAlltop_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1128524576/IloveAlltop_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Introducing hadoop in 20 pages http://t.co/q3cNZ5G1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:36:27 +0000", "from_user": "edenciso", "from_user_id": 14263141, "from_user_id_str": "14263141", "from_user_name": "Eduardo Enciso", "geo": null, "id": 148109318078734340, "id_str": "148109318078734336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1455339373/Edu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1455339373/Edu_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Microsoft Tries Hadoop on Azure | Cloud Computing Journal: http://t.co/wITNZtIa via @AddThis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:35:19 +0000", "from_user": "AssemblingIT", "from_user_id": 99696414, "from_user_id_str": "99696414", "from_user_name": "Alex Delgado Ruiz", "geo": null, "id": 148109031339343870, "id_str": "148109031339343872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/595694351/foto_carnet_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/595694351/foto_carnet_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Moving an Elephant: Large Scale Hadoop Data Migration at Facebook -> http://t.co/Lw6U72L8 #USER experiences..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:34:19 +0000", "from_user": "SyntressTech", "from_user_id": 246459852, "from_user_id_str": "246459852", "from_user_name": "Syntress", "geo": null, "id": 148108781925040130, "id_str": "148108781925040128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1243202871/Screen_shot_2011-02-13_at_9.37.14_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1243202871/Screen_shot_2011-02-13_at_9.37.14_AM_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl | CommonCrawl http://t.co/qcXAahJu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:31:45 +0000", "from_user": "jefkingabc", "from_user_id": 242907489, "from_user_id_str": "242907489", "from_user_name": "Jef King", "geo": null, "id": 148108135658295300, "id_str": "148108135658295296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1628969602/HeadShot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628969602/HeadShot_normal.jpg", "source": "<a href="http://paper.li" rel="nofollow">Paper.li</a>", "text": "RT @Cloud9s: Hadoop News and Influencers is out! http://t.co/kWfOYKZF \\u25B8 Top stories today via @zementis @otisg @sybaseanalytics @techmilind @billsandhill", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:31:29 +0000", "from_user": "sturlese", "from_user_id": 22685998, "from_user_id_str": "22685998", "from_user_name": "Marc Sturlese", "geo": null, "id": 148108066112536580, "id_str": "148108066112536577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1166866589/sturlese_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1166866589/sturlese_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:31:11 +0000", "from_user": "Cloud9s", "from_user_id": 14759893, "from_user_id_str": "14759893", "from_user_name": "Kevin Haynes", "geo": null, "id": 148107992397647870, "id_str": "148107992397647872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1333766120/Kevin_sun_glasses_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1333766120/Kevin_sun_glasses_normal.jpg", "source": "<a href="http://paper.li" rel="nofollow">Paper.li</a>", "text": "Hadoop News and Influencers is out! http://t.co/kWfOYKZF \\u25B8 Top stories today via @zementis @otisg @sybaseanalytics @techmilind @billsandhill", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:26:43 +0000", "from_user": "anrizal", "from_user_id": 54428352, "from_user_id_str": "54428352", "from_user_name": "anrizal", "geo": null, "id": 148106868961722370, "id_str": "148106868961722368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1205555041/photo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1205555041/photo_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @sscdotopen: New blogpost: Running #giraph's unit tests in a pseudo-distributed hadoop instance http://t.co/qOdCdkWJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:26:02 +0000", "from_user": "HaggbergConsult", "from_user_id": 149980936, "from_user_id_str": "149980936", "from_user_name": "Marie Haggberg", "geo": null, "id": 148106695132971000, "id_str": "148106695132971010", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664347672/Profile2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664347672/Profile2_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Hadoop and F# Map/Reduce functions: http://t.co/Bkz08t7v via @buckwoody #data #code", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:25:43 +0000", "from_user": "bmann", "from_user_id": 10821, "from_user_id_str": "10821", "from_user_name": "Boris Mann", "geo": null, "id": 148106616493981700, "id_str": "148106616493981696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1245832990/bmann_instagram_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1245832990/bmann_instagram_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Azure price cuts, bigger databases, now with node.js and MongoDB support, Hadoop on its way - I\\u2019m impressed... http://t.co/3GBpDOzo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:22:40 +0000", "from_user": "rahuljuneja", "from_user_id": 36554645, "from_user_id_str": "36554645", "from_user_name": "Rahul Juneja", "geo": null, "id": 148105849603231740, "id_str": "148105849603231744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/248976046/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/248976046/images_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "InfoQ: SOA\\u2019s Role in the Emerging Hadoop World: http://t.co/1ucfpuoS #hadoop #soa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:20:23 +0000", "from_user": "VRajaRao", "from_user_id": 265225982, "from_user_id_str": "265225982", "from_user_name": "Vadugu Raja Rao", "geo": null, "id": 148105273842741250, "id_str": "148105273842741248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Windows Azure Updated To Support Hadoop and Node.js http://t.co/b9JSXCQO via @toolsjournal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:17:31 +0000", "from_user": "VRajaRao", "from_user_id": 265225982, "from_user_id_str": "265225982", "from_user_name": "Vadugu Raja Rao", "geo": null, "id": 148104553642987520, "id_str": "148104553642987520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Windows Azure Updated To Support Hadoop and Node.js http://t.co/b9JSXCQO via @toolsjournal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:09:43 +0000", "from_user": "noiano", "from_user_id": 54919596, "from_user_id_str": "54919596", "from_user_name": "Marco Didonna", "geo": null, "id": 148102590989742080, "id_str": "148102590989742080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1673085134/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673085134/avatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "ubuntu repos are not working in #aws today:( can't run #hadoop cluster #ec2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:08:25 +0000", "from_user": "RiseVision", "from_user_id": 18480294, "from_user_id_str": "18480294", "from_user_name": "Rise Vision", "geo": null, "id": 148102261384552450, "id_str": "148102261384552448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/857654993/Rise_icon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/857654993/Rise_icon_normal.png", "source": "Zite Personalized Magazine", "text": "Neat~MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/B1NKJ0Mx via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:07:43 +0000", "from_user": "OBrien_Siobhan", "from_user_id": 20972333, "from_user_id_str": "20972333", "from_user_name": "Siobhan O'Brien", "geo": null, "id": 148102087731970050, "id_str": "148102087731970049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1584578872/09.03.09_001_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584578872/09.03.09_001_normal.jpg", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Know anyone for this job? Hadoop Developer #2676 in Boston, MA http://t.co/87tRZBbA #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:04:32 +0000", "from_user": "jinnli", "from_user_id": 18330621, "from_user_id_str": "18330621", "from_user_name": "\\u01C7", "geo": null, "id": 148101284187222000, "id_str": "148101284187222016", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1579601171/_______normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1579601171/_______normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Introducing hadoop in 20 pages http://t.co/vJ7p9slE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:04:08 +0000", "from_user": "tjf00420", "from_user_id": 29569215, "from_user_id_str": "29569215", "from_user_name": "Tyler Frederick", "geo": null, "id": 148101183058362370, "id_str": "148101183058362368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1220080588/SPavatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1220080588/SPavatar_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Safari on iOS</a>", "text": "Hadoop and the Network. Good read. http://t.co/qBopeuwA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:04:03 +0000", "from_user": "esammer", "from_user_id": 9264352, "from_user_id_str": "9264352", "from_user_name": "Eric Sammer", "geo": null, "id": 148101162430763000, "id_str": "148101162430763008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/260959723/Photo_4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/260959723/Photo_4_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:00:13 +0000", "from_user": "uupaa", "from_user_id": 30881611, "from_user_id_str": "30881611", "from_user_name": "uupaa", "geo": null, "id": 148100198978166800, "id_str": "148100198978166784", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1296768888/uupaa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1296768888/uupaa_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\\u300CArrows\\u30E6\\u30FC\\u30B6\\u306F\\u6F5C\\u5728\\u7684\\u8AB2\\u91D1\\u7387\\u3059\\u3054\\u3044\\u3093\\u3058\\u3083\\u306A\\u3044\\u304B\\u8AAC\\u300D Arrows\\u306B\\u9650\\u3089\\u305A\\u56FD\\u7523Android\\u7AEF\\u672B\\u30E6\\u30FC\\u30B6\\u306E\\u6F5C\\u5728\\u7684\\u8AB2\\u91D1\\u7387\\u306A\\u3093\\u304B\\u51C4\\u305D\\u3046\\u3060\\u304B\\u3089\\u3001iPhone\\u3084\\u97D3\\u56FD\\u88FD\\u7AEF\\u672B\\u3088\\u308A\\u512A\\u9047\\u3057\\u3066\\u3042\\u3052\\u3066\\u8AB2\\u91D1\\u7387UP\\u306B\\u3064\\u306A\\u3052\\u3088\\u3046\\u3068\\u3044\\u3046\\u767A\\u60F3\\u304C\\u3001\\u305D\\u308D\\u305D\\u308D\\u3069\\u3063\\u304B\\u306EHadoop\\u304B\\u3089\\u5C0E\\u304D\\u51FA\\u3055\\u308C\\u3066\\u3082\\u5225\\u306B\\u9A5A\\u304B\\u306A\\u3044\\u304B\\u306A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:50:13 +0000", "from_user": "Crypt0s", "from_user_id": 54561212, "from_user_id_str": "54561212", "from_user_name": "Cryptos", "geo": null, "id": 148097679619129340, "id_str": "148097679619129344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1282764111/eightbit-1207520f-c49d-43d8-84e6-30427ead6dcf_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1282764111/eightbit-1207520f-c49d-43d8-84e6-30427ead6dcf_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@brocknoland I'm just having trouble figuring out if I'm doing it in \"the hadoop way\" to get the best perf. I'm just doing stringmatching.", "to_user": "brocknoland", "to_user_id": 15394413, "to_user_id_str": "15394413", "to_user_name": "brocknoland", "in_reply_to_status_id": 147536609540186100, "in_reply_to_status_id_str": "147536609540186112"}, +{"created_at": "Sat, 17 Dec 2011 17:49:52 +0000", "from_user": "barbz79it", "from_user_id": 167353135, "from_user_id_str": "167353135", "from_user_name": "Michele Barbera", "geo": null, "id": 148097594776764400, "id_str": "148097594776764417", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1150048187/my_avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1150048187/my_avatar_normal.jpg", "source": "<a href="http://www.nibirutech.com" rel="nofollow">TwitBird</a>", "text": "RT @netseven_it Five Big Data predictions for 2012 http://t.co/5Ishmkfl #bigdata #visualization #hadoop (via @radar @strataconf @lod_it)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:40:21 +0000", "from_user": "dev_links", "from_user_id": 309995604, "from_user_id_str": "309995604", "from_user_name": "Joe Fawzy", "geo": null, "id": 148095199124520960, "id_str": "148095199124520960", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Introducing hadoop in 20 pages http://t.co/NyPubMrD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:39:52 +0000", "from_user": "lhillenbrand", "from_user_id": 22845507, "from_user_id_str": "22845507", "from_user_name": "Linden Hillenbrand", "geo": null, "id": 148095078458597380, "id_str": "148095078458597377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/87892395/n18500934_32419491_1963_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/87892395/n18500934_32419491_1963_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "You're my hero. RT: @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beaut...#hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:38:38 +0000", "from_user": "Denisse_Matsuno", "from_user_id": 310634357, "from_user_id_str": "310634357", "from_user_name": "Denisse _Matsuno", "geo": null, "id": 148094766725341200, "id_str": "148094766725341186", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1381123929/199698675673_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1381123929/199698675673_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "No, Hadoop Doesn't Own Big Data Analytics! - Big Data Big ...: Keep in mind that there are many things required ... http://t.co/GpqmRDyo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:34:05 +0000", "from_user": "oleg_usoltsev", "from_user_id": 351734565, "from_user_id_str": "351734565", "from_user_name": "Oleg Usoltsev", "geo": null, "id": 148093623320322050, "id_str": "148093623320322048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1486592331/retroportrait_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1486592331/retroportrait_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Research Shoots Hadoop, Clouds Out of the Sky http://t.co/VwdOtfQE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:31:53 +0000", "from_user": "mwm42", "from_user_id": 310937325, "from_user_id_str": "310937325", "from_user_name": "Manuel", "geo": null, "id": 148093067407261700, "id_str": "148093067407261696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1382659642/bild2kleiner_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1382659642/bild2kleiner_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:28:34 +0000", "from_user": "chicorss", "from_user_id": 216513473, "from_user_id_str": "216513473", "from_user_name": "Chico RSS", "geo": null, "id": 148092231700590600, "id_str": "148092231700590592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Introducing hadoop in 20 pages: Getting started in hadoop for a newbie is a non trivial task\\u2026 http://t.co/inQzzeE7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:27:03 +0000", "from_user": "tjf00420", "from_user_id": 29569215, "from_user_id_str": "29569215", "from_user_name": "Tyler Frederick", "geo": null, "id": 148091850811654140, "id_str": "148091850811654144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1220080588/SPavatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1220080588/SPavatar_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Safari on iOS</a>", "text": "Fantastic MapReduce with Hadoop article http://t.co/viW21if8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:26:27 +0000", "from_user": "sscdotopen", "from_user_id": 153208675, "from_user_id_str": "153208675", "from_user_name": "Sebastian", "geo": null, "id": 148091702400393200, "id_str": "148091702400393217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1467250573/sebastian_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1467250573/sebastian_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:25:33 +0000", "from_user": "tlipcon", "from_user_id": 16820641, "from_user_id_str": "16820641", "from_user_name": "Todd Lipcon", "geo": null, "id": 148091474817466370, "id_str": "148091474817466370", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1244722513/photo-cropped_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1244722513/photo-cropped_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:24:21 +0000", "from_user": "didierrano", "from_user_id": 11248062, "from_user_id_str": "11248062", "from_user_name": "Didier Rano", "geo": null, "id": 148091172139696130, "id_str": "148091172139696128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/80871363/cbe5fa3ab1258c1ca8914d637a17d141_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/80871363/cbe5fa3ab1258c1ca8914d637a17d141_normal.jpeg", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/5qbbPrE2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:19:44 +0000", "from_user": "followbotlist", "from_user_id": 420104059, "from_user_id_str": "420104059", "from_user_name": "\\u3076\\u308D\\u3063\\u304F\\u308A\\u3059\\u3068", "geo": null, "id": 148090012091678720, "id_str": "148090012091678720", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twittbot.net/" rel="nofollow">twittbot.net</a>", "text": "C\\u8A00\\u8A9E/C++/C#/F#/PHP/Perl/Ruby/Python/Lisp/Prolog/ML/Haskell/HTML5/VB/Basic/\\u30A6\\u30A7\\u30D6\\u30C7\\u30B6\\u30A4\\u30F3/\\u30EC\\u30F3\\u30BF\\u30EB\\u30B5\\u30FC\\u30D0/CGI/\\u30BB\\u30AD\\u30E5\\u30EA\\u30C6\\u30A3/FLASH/Web/\\u30BD\\u30FC\\u30B7\\u30E3\\u30EB/SNS/\\u30B0\\u30EB\\u30FC\\u30D7\\u30A6\\u30A7\\u30A2/Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:17:59 +0000", "from_user": "sedictor", "from_user_id": 66209189, "from_user_id_str": "66209189", "from_user_name": "sedictor", "geo": null, "id": 148089571110952960, "id_str": "148089571110952960", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701422602/petr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701422602/petr_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "http://t.co/LSoz55uw \\u2014 \\u0438 \\u0432\\u0435\\u0440\\u0441\\u0438\\u0438 Hadoop \\u0438 Pig \\u043E\\u0431\\u043D\\u043E\\u0432\\u0438\\u043B\\u0438. \\u0415\\u0449\\u0435 \\u0431\\u044B Hive \\u043E\\u0431\\u043D\\u043E\\u0432\\u0438\\u043B\\u0438 \\u0431\\u044B \\u0438 \\u0432\\u043E\\u043E\\u0431\\u0449\\u0435 \\u043A\\u0440\\u0430\\u0441\\u043E\\u0442\\u0430 :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:17:27 +0000", "from_user": "mccoyjus", "from_user_id": 247850191, "from_user_id_str": "247850191", "from_user_name": "Justin McCoy", "geo": null, "id": 148089434322116600, "id_str": "148089434322116608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1394619332/34726_433990041450_642136450_5242917_7444530_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1394619332/34726_433990041450_642136450_5242917_7444530_n_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @infochimps: RT @dguyadeen: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl: http://t.co/LkgSIWAl #BigData #Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:16:37 +0000", "from_user": "msusies", "from_user_id": 54159278, "from_user_id_str": "54159278", "from_user_name": "Miss Susie", "geo": null, "id": 148089224929869820, "id_str": "148089224929869825", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/299573565/charisse-mcauliffe-hot-eco-ceo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/299573565/charisse-mcauliffe-hot-eco-ceo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl | CommonCrawl: submitted by mindrunn... http://t.co/KxVSISIW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:15:48 +0000", "from_user": "phunt", "from_user_id": 12370372, "from_user_id_str": "12370372", "from_user_name": "Patrick Hunt", "geo": null, "id": 148089021317390340, "id_str": "148089021317390336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/80884383/phunt3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/80884383/phunt3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Sat, 17 Dec 2011 17:11:54 +0000", "from_user": "tom_e_white", "from_user_id": 28835645, "from_user_id_str": "28835645", "from_user_name": "Tom White", "geo": null, "id": 148088037581139970, "id_str": "148088037581139970", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/200791394/tom_white_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/200791394/tom_white_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:10:35 +0000", "from_user": "jpatanooga", "from_user_id": 14935521, "from_user_id_str": "14935521", "from_user_name": "Josh Patterson", "geo": null, "id": 148087707078365200, "id_str": "148087707078365184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1471343793/summer_shot_cropped_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1471343793/summer_shot_cropped_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:09:26 +0000", "from_user": "atm", "from_user_id": 27152588, "from_user_id_str": "27152588", "from_user_name": "Aaron T. Myers", "geo": null, "id": 148087419617554430, "id_str": "148087419617554432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/365896973/bee_suit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/365896973/bee_suit_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:09:00 +0000", "from_user": "kekline", "from_user_id": 22445912, "from_user_id_str": "22445912", "from_user_name": "Kevin Kline", "geo": null, "id": 148087309529657340, "id_str": "148087309529657344", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/388076294/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/388076294/twitterProfilePhoto_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @strataconf: Five Big Data predictions for 2012 http://t.co/Kq3ZxbYD via @radar #bigdata #visualization #hadoop #nosql #oreilly", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:08:28 +0000", "from_user": "srinikumar", "from_user_id": 21634684, "from_user_id_str": "21634684", "from_user_name": "Srini Kumar", "geo": null, "id": 148087174749892600, "id_str": "148087174749892608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/414807792/Srini_Kumar_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/414807792/Srini_Kumar_normal.gif", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Check out this SlideShare presentation : Hadoop and Hive Development at Facebook http://t.co/r5PYhmub", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:05:06 +0000", "from_user": "vikasdp", "from_user_id": 152682018, "from_user_id_str": "152682018", "from_user_name": "Vikas Pandya", "geo": null, "id": 148086328624562180, "id_str": "148086328624562176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1140915733/VP_twitter_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1140915733/VP_twitter_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@otisg are there any solr + hadoop success stories/references/papers to read upon? Have a usecase and need to prototype first.", "to_user": "otisg", "to_user_id": 8501652, "to_user_id_str": "8501652", "to_user_name": "Otis Gospodneti\\u0107"}, +{"created_at": "Sat, 17 Dec 2011 17:02:40 +0000", "from_user": "srinikumar", "from_user_id": 21634684, "from_user_id_str": "21634684", "from_user_name": "Srini Kumar", "geo": null, "id": 148085716402978800, "id_str": "148085716402978816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/414807792/Srini_Kumar_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/414807792/Srini_Kumar_normal.gif", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Facebook : HIVE: Data Warehousing & Analytics on Hadoop http://t.co/f80V5Zam", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:59:06 +0000", "from_user": "hariktriam", "from_user_id": 56933670, "from_user_id_str": "56933670", "from_user_name": "Takahiro Miura", "geo": null, "id": 148084819052601340, "id_str": "148084819052601344", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/643635116/n1214949804_1438_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/643635116/n1214949804_1438_normal.jpg", "source": "<a href="http://itok.jp/blog/software/hummings/" rel="nofollow">Hummings</a>", "text": "\\u3042\\u3068\\u306Fn\\u30B0\\u30E9\\u30E0\\u3092\\u4F55\\u304B\\u3057\\u3089\\u306E\\u65B9\\u6CD5\\u3067\\u6B63\\u898F\\u5316\\u3057\\u3066\\u308B\\u306E\\u304B\\u306A\\uFF1F\\u8F9E\\u66F8\\u4F9D\\u5B58\\u3057\\u306A\\u3044\\u65B9\\u6CD5\\u3068\\u3057\\u3066\\uFF0C\\u7279\\u5FB4\\u8A9E\\u62BD\\u51FA\\u307F\\u305F\\u3044\\u306A\\u7814\\u7A76\\u3082\\u3042\\u308B\\u3051\\u3069\\uFF0C\\u305D\\u3046\\u306A\\u308B\\u3068\\u9AD8\\u901F\\u5316\\u304C\\u2026\\uFF0E\\u30D0\\u30C3\\u30AF\\u30DC\\u30FC\\u30F3\\u304C\\u4F55\\u304B\\u306B\\u3088\\u3063\\u3066DB\\u3084\\u3089\\u4E26\\u5217\\u8A08\\u7B97(Hadoop)\\u3092\\u4E0A\\u624B\\u304F\\u99C6\\u4F7F\\u3057\\u3066\\u308B\\u306E\\u304B\\u3082\\u306A\\uFF0E\\u2026\\u610F\\u5916\\u3068\\u6280\\u8853\\u306E\\u7121\\u99C4\\u9063\\u3044\\u304B\\u3082\\uFF57\\uFF0ERT \\u8A9E\\u5F59\\u529B\\u5224\\u5B9A\\u3084\\u53E3\\u7656\\u5206\\u6790\\uFF0C", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:56:48 +0000", "from_user": "BlueBoxTraveler", "from_user_id": 33632713, "from_user_id_str": "33632713", "from_user_name": "\\u092F\\u093E\\u0915\\u0942\\u092C", "geo": null, "id": 148084237160026100, "id_str": "148084237160026112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1678377258/Screen_Shot_2011-12-06_at_8.13.13_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678377258/Screen_Shot_2011-12-06_at_8.13.13_PM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @sscdotopen: New blogpost: Running #giraph's unit tests in a pseudo-distributed hadoop instance http://t.co/qOdCdkWJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:51:42 +0000", "from_user": "y_a_s_s", "from_user_id": 111462305, "from_user_id_str": "111462305", "from_user_name": "yass", "geo": null, "id": 148082957255589900, "id_str": "148082957255589888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1166894012/248_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1166894012/248_normal.png", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "[hbase][hadoop][backup][s3][aws] / \\u201CBizosys Company Blog: HBase Backup to Amazon S3\\u201D http://t.co/FmLfJ3WF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:46:58 +0000", "from_user": "TheBigDataTrap", "from_user_id": 389163301, "from_user_id_str": "389163301", "from_user_name": "The Big Data Trap", "geo": null, "id": 148081765649616900, "id_str": "148081765649616897", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1584049409/twitter_prof_-big-data_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584049409/twitter_prof_-big-data_normal.jpg", "source": "<a href="http://trap.it" rel="nofollow">Trapit</a>", "text": "Microsoft Tries Hadoop on Azure http://t.co/ZINNmjlM #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:45:43 +0000", "from_user": "neuhausler", "from_user_id": 15800786, "from_user_id_str": "15800786", "from_user_name": "Marcel Neuhausler", "geo": null, "id": 148081449722064900, "id_str": "148081449722064896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1626388826/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626388826/profile_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "\"For-your-boss\" Saturday morning .. watched \"Apache Hadoop - Petabytes and Terawatts\" http://t.co/12FUXsuM .. excellent overview.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:44:49 +0000", "from_user": "predditfeed", "from_user_id": 141139216, "from_user_id_str": "141139216", "from_user_name": "feed reddit", "geo": null, "id": 148081224274026500, "id_str": "148081224274026496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl | CommonCrawl: submitted by mindrunn... http://t.co/uJnSohTe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:38:48 +0000", "from_user": "nessykalvo", "from_user_id": 16207251, "from_user_id_str": "16207251", "from_user_name": "nessykalvo", "geo": null, "id": 148079708121202700, "id_str": "148079708121202689", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/290201830/nessykalvo42_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/290201830/nessykalvo42_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "Hadoop Explosion !!! http://t.co/st4eSmGx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:27:49 +0000", "from_user": "edenciso", "from_user_id": 14263141, "from_user_id_str": "14263141", "from_user_name": "Eduardo Enciso", "geo": null, "id": 148076943391199230, "id_str": "148076943391199233", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1455339373/Edu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1455339373/Edu_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Availability of Community Technology Preview (CTP) of Hadoop based Service on Windows Azure http://t.co/f735NsSf via @SQLServer", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:26:53 +0000", "from_user": "DevNambi", "from_user_id": 37100602, "from_user_id_str": "37100602", "from_user_name": "Dev Nambi", "geo": null, "id": 148076711655899140, "id_str": "148076711655899137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1531520928/0140722c-940e-4c3f-9b60-7c3b84d2c4b3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1531520928/0140722c-940e-4c3f-9b60-7c3b84d2c4b3_normal.png", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "RT @datachick: MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/TAxV275b < Maybe 20 minutes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:24:55 +0000", "from_user": "adroitjobs", "from_user_id": 232291222, "from_user_id_str": "232291222", "from_user_name": "Adroit Resources", "geo": null, "id": 148076216585420800, "id_str": "148076216585420801", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1208095437/adroit-logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1208095437/adroit-logo_normal.jpg", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Looking for a Java Engg (with Hadoop) in San Jose, CA http://t.co/QTf6wlAG #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:15:40 +0000", "from_user": "nourlcn", "from_user_id": 70045630, "from_user_id_str": "70045630", "from_user_name": "\\u8682\\u8681", "geo": null, "id": 148073886796361730, "id_str": "148073886796361728", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1529668189/katong_me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1529668189/katong_me_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\u901A\\u8FC7@\\u5FAE\\u76D8 \\u5206\\u4EAB\\u6587\\u4EF6\"Correlation based File Prefetching Approach for Hadoop.pdf\" HDFS\\u4E2D\\u9884\\u53D6\\u673A\\u5236\\u63D0\\u9AD8\\u6027\\u80FD.#HADOOP# #HDFS# http://t.co/hIGj1A2Q", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:14:40 +0000", "from_user": "scottdunlop", "from_user_id": 25550110, "from_user_id_str": "25550110", "from_user_name": "Scott Dunlop", "geo": null, "id": 148073636656455680, "id_str": "148073636656455681", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/104874078/blogscott_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/104874078/blogscott_normal.jpg", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Big data Software Engineers - Java, RoR, Hadoop, Cassandra, Solr, Machine Learning - start... http://t.co/af1lmAoq #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:14:16 +0000", "from_user": "uu59", "from_user_id": 220567130, "from_user_id_str": "220567130", "from_user_name": "uuu", "geo": null, "id": 148073534512578560, "id_str": "148073534512578560", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1204078315/de4c8304-5ebe-4e13-8ea3-2f0f5d4260b0_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1204078315/de4c8304-5ebe-4e13-8ea3-2f0f5d4260b0_normal.png", "source": "<a href="https://github.com/uu59/crafted-bird" rel="nofollow">crafted-bird</a>", "text": "Hadoop\\u306F\\u6B21\\u306E\\u30D0\\u30FC\\u30B8\\u30E7\\u30F3\\u304B\\u306A\\u3093\\u304B\\u3067\\u30A2\\u30FC\\u30AD\\u30C6\\u30AF\\u30C1\\u30E3\\u30EC\\u30D9\\u30EB\\u3067\\u7D50\\u69CB\\u5909\\u308F\\u308B\\u3093\\u3058\\u3083\\u306A\\u304B\\u3063\\u305F\\u3063\\u3051\\u3002Cassandra\\u306F\\u3042\\u308C\\u306A\\u306E\\u3067\\u3069\\u3046\\u305B\\u306A\\u3089redis\\u3060\\u308D\\u3046\\u3057nginx\\u306F\\u307B\\u307C\\u6BCE\\u5E74\\u540C\\u3058\\u3053\\u3068\\u8A00\\u308F\\u308C\\u3066\\u308B\\u3057", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:13:17 +0000", "from_user": "REDDITSPAMMOR", "from_user_id": 56056641, "from_user_id_str": "56056641", "from_user_name": "REDDITSPAMMOR", "geo": null, "id": 148073286549512200, "id_str": "148073286549512192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#reddit MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl | CommonCrawl: submitt... http://t.co/vmRek8Rm #rulez", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:12:55 +0000", "from_user": "mcristia", "from_user_id": 8612292, "from_user_id_str": "8612292", "from_user_name": "Michael W Cristiani", "geo": null, "id": 148073193809260540, "id_str": "148073193809260544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/80441361/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/80441361/me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rheimann: Using my #Hadoop connector in @tableau via #Hive! Ballin!! http://t.co/8WExdTHp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:04:19 +0000", "from_user": "Yours_aFriend", "from_user_id": 117666206, "from_user_id_str": "117666206", "from_user_name": "S Kurniawan", "geo": null, "id": 148071029254791170, "id_str": "148071029254791168", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/727378413/NiaEska_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/727378413/NiaEska_normal.jpg", "source": "<a href="http://www.newstreamer.com/" rel="nofollow">Newstreamer</a>", "text": "Microsoft Tries Hadoop on Azure (java.sys-con) http://t.co/ZnNTglZp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:02:46 +0000", "from_user": "jpatanooga", "from_user_id": 14935521, "from_user_id_str": "14935521", "from_user_name": "Josh Patterson", "geo": null, "id": 148070639645900800, "id_str": "148070639645900800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1471343793/summer_shot_cropped_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1471343793/summer_shot_cropped_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @sscdotopen: New blogpost: Running #giraph's unit tests in a pseudo-distributed hadoop instance http://t.co/qOdCdkWJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:59:02 +0000", "from_user": "markswall", "from_user_id": 19688728, "from_user_id_str": "19688728", "from_user_name": "Mark Wall", "geo": null, "id": 148069700574785540, "id_str": "148069700574785536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676652683/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676652683/Untitled_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hadoop, HPCC, MapR and the TeraSort Benchmark \\u2022 myNoSQL http://t.co/q4Fs9u7o", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:59:01 +0000", "from_user": "markswall", "from_user_id": 19688728, "from_user_id_str": "19688728", "from_user_name": "Mark Wall", "geo": null, "id": 148069697114484740, "id_str": "148069697114484736", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676652683/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676652683/Untitled_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft Tries Hadoop on Azure | Cloud Computing Journal http://t.co/yrhIDepN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:57:13 +0000", "from_user": "basilverthorn", "from_user_id": 36272262, "from_user_id_str": "36272262", "from_user_name": "Brett Silverthorn", "geo": null, "id": 148069242808446980, "id_str": "148069242808446976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/818883138/brettsm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/818883138/brettsm_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @WindowsAzure: Microsoft Tries Hadoop on #Windows #Azure: gives Windows Azure Big Data capabilities http://t.co/hgQobdw2 #Cloud /via @Cloud_Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:46:45 +0000", "from_user": "swews", "from_user_id": 374638051, "from_user_id_str": "374638051", "from_user_name": "swetha andrews", "geo": null, "id": 148066612174524400, "id_str": "148066612174524416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1648715155/Akhila_2__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648715155/Akhila_2__1__normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft Tries Hadoop on Azure: Microsoft added a trial version of Apache\\u2019s open source Hadoop to its Windows A... http://t.co/L4rUJvK2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:44:12 +0000", "from_user": "nourlcn", "from_user_id": 70045630, "from_user_id_str": "70045630", "from_user_name": "\\u8682\\u8681", "geo": null, "id": 148065969330335740, "id_str": "148065969330335744", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1529668189/katong_me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1529668189/katong_me_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\u300AHadoop 0.23\\u4E2Dweb username\\u7684\\u8BBE\\u7F6E\\u300B http://t.co/r5qsF8we", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:39:21 +0000", "from_user": "bahree", "from_user_id": 16053116, "from_user_id_str": "16053116", "from_user_name": "Amit Bahree", "geo": null, "id": 148064746673934340, "id_str": "148064746673934337", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1091421831/Amit_Bahree__8__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1091421831/Amit_Bahree__8__normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @WindowsAzure: Microsoft Tries Hadoop on #Windows #Azure: gives Windows Azure Big Data capabilities http://t.co/hgQobdw2 #Cloud /via @Cloud_Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:37:28 +0000", "from_user": "alltop_java", "from_user_id": 191999280, "from_user_id_str": "191999280", "from_user_name": "Alltop Java", "geo": null, "id": 148064275800391680, "id_str": "148064275800391682", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1128524576/IloveAlltop_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1128524576/IloveAlltop_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft Tries Hadoop on Azure http://t.co/rSkmFVkU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:35:40 +0000", "from_user": "beatrizmateo", "from_user_id": 108578780, "from_user_id_str": "108578780", "from_user_name": "Beatriz Mateo", "geo": null, "id": 148063819946672130, "id_str": "148063819946672128", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1609765085/IMG_5263_4peque_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609765085/IMG_5263_4peque_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @chain: Nuevo art\\u00EDculo en mi blog! Ah\\u00ED van mis dos c\\u00E9ntimos sobre #Hadoop y #BusinessIntelligence. http://t.co/xfHf4oJA #lohabiaprometido", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:30:25 +0000", "from_user": "StatQiming", "from_user_id": 350050347, "from_user_id_str": "350050347", "from_user_name": "Qiming Huang", "geo": null, "id": 148062501286850560, "id_str": "148062501286850560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @bigdata: Training Linear Support Vector Machines over Big Data: example in MapReduce/#Hadoop involving tens of millions http://t.co/fQF4stv2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:27:02 +0000", "from_user": "dmohl", "from_user_id": 15455122, "from_user_id_str": "15455122", "from_user_name": "Daniel Mohl", "geo": null, "id": 148061646722576400, "id_str": "148061646722576385", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1251271746/dan_twitterpic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1251271746/dan_twitterpic_normal.jpg", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "RT @dsyme: RT @rickasaurus: RT @chris_brockett: Carl Nolan blogs on hadoop streaming and #fsharp map reduce http://t.co/JXz0abe7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:17:25 +0000", "from_user": "mikecthompson", "from_user_id": 25213898, "from_user_id_str": "25213898", "from_user_name": "mike thompson", "geo": null, "id": 148059226571423740, "id_str": "148059226571423744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/aEzMqgvk via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:17:08 +0000", "from_user": "tatesuke", "from_user_id": 30597967, "from_user_id_str": "30597967", "from_user_name": "tatesuke", "geo": null, "id": 148059155654131700, "id_str": "148059155654131713", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1135790887/2018150_3160166838_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1135790887/2018150_3160166838_normal.jpg", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "hadoop\\u3063\\u3066\\u6570\\u306E\\u66B4\\u529B\\u3060\\u3088\\u306D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:13:29 +0000", "from_user": "roelgerrits", "from_user_id": 14334257, "from_user_id_str": "14334257", "from_user_name": "Roel Gerrits", "geo": null, "id": 148058238015909900, "id_str": "148058238015909888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/481839952/roel_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/481839952/roel_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rheimann: Using my #Hadoop connector in @tableau via #Hive! Ballin!! http://t.co/8WExdTHp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:12:44 +0000", "from_user": "DeannaHerderick", "from_user_id": 108788770, "from_user_id_str": "108788770", "from_user_name": "Deanna Herderick", "geo": null, "id": 148058047711948800, "id_str": "148058047711948800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1336298400/005-L_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1336298400/005-L_normal.jpg", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Now Hiring: Hadoop Solution Architect in Redmond, WA http://t.co/6OyYb77b #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:00:51 +0000", "from_user": "chain", "from_user_id": 13049522, "from_user_id_str": "13049522", "from_user_name": "Antonio Rivas", "geo": null, "id": 148055058137890800, "id_str": "148055058137890817", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1326225474/215D6832-75FE-42AD-A3E6-1DD7BB0609A2_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1326225474/215D6832-75FE-42AD-A3E6-1DD7BB0609A2_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "Nuevo art\\u00EDculo en mi blog! Ah\\u00ED van mis dos c\\u00E9ntimos sobre #Hadoop y #BusinessIntelligence. http://t.co/xfHf4oJA #lohabiaprometido", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:57:54 +0000", "from_user": "dennylee", "from_user_id": 14610285, "from_user_id_str": "14610285", "from_user_name": "dennylee", "geo": null, "id": 148054318573035520, "id_str": "148054318573035521", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/996687129/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/996687129/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@datachick blatant self promo here - if you like #hadoop, check out #hadooponazure http://t.co/iOCKItve :-)", "to_user": "datachick", "to_user_id": 15534499, "to_user_id_str": "15534499", "to_user_name": "Karen Lopez", "in_reply_to_status_id": 148047187551596540, "in_reply_to_status_id_str": "148047187551596544"}, +{"created_at": "Sat, 17 Dec 2011 14:56:47 +0000", "from_user": "sscdotopen", "from_user_id": 153208675, "from_user_id_str": "153208675", "from_user_name": "Sebastian", "geo": null, "id": 148054036891971600, "id_str": "148054036891971584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1467250573/sebastian_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1467250573/sebastian_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "New blogpost: Running #giraph's unit tests in a pseudo-distributed hadoop instance http://t.co/qOdCdkWJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:51:23 +0000", "from_user": "joshdevins", "from_user_id": 73340253, "from_user_id_str": "73340253", "from_user_name": "Josh Devins", "geo": null, "id": 148052676331053060, "id_str": "148052676331053057", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1421673081/Photo_on_2011-07-01_at_10.50_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1421673081/Photo_on_2011-07-01_at_10.50_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @peteskomoroch: How to quickly process 40TB of data from Common Crawl using Hadoop & Amazon EC2 http://t.co/yum3VZyF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:50:01 +0000", "from_user": "Jorriss", "from_user_id": 6484132, "from_user_id_str": "6484132", "from_user_name": "Richie Rump", "geo": null, "id": 148052334394617860, "id_str": "148052334394617856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1262429740/jorriss_alexa_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1262429740/jorriss_alexa_normal.png", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "RT @datachick: MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/TAxV275b < Maybe 20 minutes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:36:08 +0000", "from_user": "Jorge_Galvez", "from_user_id": 19733706, "from_user_id_str": "19733706", "from_user_name": "Jorge G\\u00E1lvez", "geo": null, "id": 148048840665219070, "id_str": "148048840665219072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683089946/imagen_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683089946/imagen_twitter_normal.png", "source": "Zite Personalized Magazine", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/yu13ExCy via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:29:34 +0000", "from_user": "datachick", "from_user_id": 15534499, "from_user_id_str": "15534499", "from_user_name": "Karen Lopez", "geo": null, "id": 148047187551596540, "id_str": "148047187551596544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1639614262/9a4f5b93-2599-40e2-820e-eed4a5d0ac1a_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639614262/9a4f5b93-2599-40e2-820e-eed4a5d0ac1a_normal.png", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/TAxV275b < Maybe 20 minutes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:28:25 +0000", "from_user": "Frank_Scholten", "from_user_id": 34983987, "from_user_id_str": "34983987", "from_user_name": "Frank Scholten", "geo": null, "id": 148046895741284350, "id_str": "148046895741284352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1299982811/frankscholten_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1299982811/frankscholten_small_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@noiano Create your own properties file with overridden hadoop props and run $ whirr launch-cluster --config <path-to-prop-file>", "to_user": "noiano", "to_user_id": 54919596, "to_user_id_str": "54919596", "to_user_name": "Marco Didonna", "in_reply_to_status_id": 148040456717078530, "in_reply_to_status_id_str": "148040456717078528"}, +{"created_at": "Sat, 17 Dec 2011 14:18:52 +0000", "from_user": "shiumachi", "from_user_id": 11370182, "from_user_id_str": "11370182", "from_user_name": "Sho Shimauchi", "geo": null, "id": 148044495085256700, "id_str": "148044495085256704", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1112990537/2006-06-04_002_bigger_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1112990537/2006-06-04_002_bigger_normal.png", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": ". @fcicq \\u304C\\u82F1\\u8A9E\\u3067 hadoop \\u30A2\\u30C9\\u30D9\\u30F3\\u30C8\\u30AB\\u30EC\\u30F3\\u30C0\\u30FC\\u3092\\u66F8\\u3044\\u3066\\u304F\\u308C\\u308B\\u3051\\u3069\\u3001\\u8A13\\u7DF4\\u3055\\u308C\\u305F hadooper \\u306A\\u3089\\u82F1\\u8A9E\\u306E\\u30A8\\u30F3\\u30C8\\u30EA\\u30FC\\u3092\\u82E6\\u3082\\u306A\\u304F\\u8AAD\\u3081\\u308B\\u306E\\u3067\\u554F\\u984C\\u306A\\u3044\\u306F\\u305A\\u3060\\u3002", "to_user": "fcicq", "to_user_id": 23272777, "to_user_id_str": "23272777", "to_user_name": "fcicq", "in_reply_to_status_id": 148041489191157760, "in_reply_to_status_id_str": "148041489191157760"}, +{"created_at": "Sat, 17 Dec 2011 14:15:10 +0000", "from_user": "TriComTS", "from_user_id": 90954020, "from_user_id_str": "90954020", "from_user_name": "TriCom Tech Services", "geo": null, "id": 148043560678195200, "id_str": "148043560678195201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/860346163/TriCom-Icon-Small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/860346163/TriCom-Icon-Small_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @developerworks: Intro to Hadoop framework - Learn why it is one of the most important to #Linux http://t.co/7kIQz88y #Ubuntu #Redhat", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:14:23 +0000", "from_user": "godofthenetwork", "from_user_id": 427834340, "from_user_id_str": "427834340", "from_user_name": "Carlos Navarrete", "geo": null, "id": 148043364758061060, "id_str": "148043364758061056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft Tries Hadoop on Azure: Microsoft added a trial version of Apache\\u2019s open source Hadoop to its Windows A... http://t.co/33RDKlxM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:14:23 +0000", "from_user": "vojinurosevic", "from_user_id": 76060489, "from_user_id_str": "76060489", "from_user_name": "Vojin Urosevic \\u6C83\\u56E0 ", "geo": null, "id": 148043363969531900, "id_str": "148043363969531904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/447217797/Vojins_picture_hvar_normal.bmp", "profile_image_url_https": "https://si0.twimg.com/profile_images/447217797/Vojins_picture_hvar_normal.bmp", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft Tries Hadoop on Azure: Microsoft added a trial version of Apache\\u2019s open source Hadoop to its Windows A... http://t.co/zk49bpDV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:14:22 +0000", "from_user": "enterprise4j", "from_user_id": 236021267, "from_user_id_str": "236021267", "from_user_name": "Enterprise4J", "geo": null, "id": 148043362988068860, "id_str": "148043362988068864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1635237821/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635237821/logo_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft Tries Hadoop on Azure: Microsoft added a trial version of Apache\\u2019s open source Hadoop to its Windows A... http://t.co/Wy0INfn1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:13:58 +0000", "from_user": "airjrdn", "from_user_id": 15394566, "from_user_id_str": "15394566", "from_user_name": "airjrdn", "geo": null, "id": 148043259489431550, "id_str": "148043259489431552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/89213431/Bill_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/89213431/Bill_normal.jpg", "source": "<a href="http://omz-software.com/newsstand" rel="nofollow">NewsRack</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl - http://t.co/arkjSFg6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:12:24 +0000", "from_user": "shiumachi", "from_user_id": 11370182, "from_user_id_str": "11370182", "from_user_name": "Sho Shimauchi", "geo": null, "id": 148042868290887680, "id_str": "148042868290887681", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1112990537/2006-06-04_002_bigger_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1112990537/2006-06-04_002_bigger_normal.png", "source": "<a href="http://www.zusaar.com/" rel="nofollow">Zusaar</a>", "text": "RT @fcicq: 12/19, MapR distributed NameNode and lockless transaction / hadoop\\u30A2\\u30C9\\u30D9\\u30F3\\u30C8\\u30AB\\u30EC\\u30F3\\u30C0\\u30FC2011 http://t.co/JG0ki0wo #zusaar", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:11:07 +0000", "from_user": "fcicq", "from_user_id": 23272777, "from_user_id_str": "23272777", "from_user_name": "fcicq", "geo": null, "id": 148042541663666180, "id_str": "148042541663666178", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/183847467/okite_bg_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/183847467/okite_bg_normal.gif", "source": "<a href="http://www.zusaar.com/" rel="nofollow">Zusaar</a>", "text": "12/19, MapR distributed NameNode and lockless transaction / hadoop\\u30A2\\u30C9\\u30D9\\u30F3\\u30C8\\u30AB\\u30EC\\u30F3\\u30C0\\u30FC2011 http://t.co/JG0ki0wo #zusaar", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:08:49 +0000", "from_user": "cattaka_net", "from_user_id": 76055482, "from_user_id_str": "76055482", "from_user_name": "\\u4F4F\\u53CB \\u5B5D\\u90CE", "geo": null, "id": 148041963151704060, "id_str": "148041963151704064", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699761681/CattakaLogoSvg_xmas_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699761681/CattakaLogoSvg_xmas_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "PlayN\\u306FShriko\\u3092\\u5F62\\u306B\\u3057\\u305F\\u306E\\u3067\\u4E00\\u533A\\u5207\\u308AGenDbHandler\\u3082\\u4F5C\\u3063\\u305F\\u3057\\u3001\\u6B21\\u306F\\u4F55\\u3092\\u3057\\u3088\\u3046\\u3068\\u601D\\u3063\\u305F\\u3093\\u3060\\u3063\\u3051\\u3001\\u3001\\u3001\\u3042\\u3001QCAR\\u3068Hadoop\\u304C\\u6B8B\\u3063\\u3066\\u305F", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:06:56 +0000", "from_user": "fcicq", "from_user_id": 23272777, "from_user_id_str": "23272777", "from_user_name": "fcicq", "geo": null, "id": 148041489191157760, "id_str": "148041489191157760", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/183847467/okite_bg_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/183847467/okite_bg_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "@shiumachi Could I take part in hadoop\\u30A2\\u30C9\\u30D9\\u30F3\\u30C8\\u30AB\\u30EC\\u30F3\\u30C0\\u30FC2011 ? I would also write some MapR related things, but in English...", "to_user": "shiumachi", "to_user_id": 11370182, "to_user_id_str": "11370182", "to_user_name": "Sho Shimauchi"}, +{"created_at": "Sat, 17 Dec 2011 14:06:32 +0000", "from_user": "happiestkhan", "from_user_id": 10054542, "from_user_id_str": "10054542", "from_user_name": "Shahnawaz Khan", "geo": null, "id": 148041389647724540, "id_str": "148041389647724544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1612096046/MM_550_Off_Terrain_201_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612096046/MM_550_Off_Terrain_201_normal.jpg", "source": "Zite Personalized Magazine", "text": "MapReduce for the Masses: Zero to #Hadoop in Five Minutes with Common Crawl http://t.co/cMAFxinW #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:02:49 +0000", "from_user": "noiano", "from_user_id": 54919596, "from_user_id_str": "54919596", "from_user_name": "Marco Didonna", "geo": null, "id": 148040456717078530, "id_str": "148040456717078528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1673085134/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673085134/avatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Frank_Scholten thank you,but for some parameters I'd like to have the hadoop default,not the whirr def params. http://t.co/FDRlCMcg", "to_user": "Frank_Scholten", "to_user_id": 34983987, "to_user_id_str": "34983987", "to_user_name": "Frank Scholten", "in_reply_to_status_id": 148019672242069500, "in_reply_to_status_id_str": "148019672242069505"}, +{"created_at": "Sat, 17 Dec 2011 13:58:32 +0000", "from_user": "chepegin", "from_user_id": 41340611, "from_user_id_str": "41340611", "from_user_name": "Vadim Chepegin", "geo": null, "id": 148039375282901000, "id_str": "148039375282900992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/220861092/vadim_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/220861092/vadim_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @AzureCloudNet: #Azure #Cloud MS Tries Hadoop on Azure | Microsoft added a trial version of #Apache #Hadoop http://t.co/nlu0JSJo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:58:31 +0000", "from_user": "InformClub", "from_user_id": 274975196, "from_user_id_str": "274975196", "from_user_name": "InformClub", "geo": null, "id": 148039373387087870, "id_str": "148039373387087872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @AzureCloudNet: #Azure #Cloud MS Tries Hadoop on Azure | Microsoft added a trial version of #Apache #Hadoop http://t.co/14utAgHF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:57:31 +0000", "from_user": "straxnews", "from_user_id": 325768922, "from_user_id_str": "325768922", "from_user_name": "Strax News", "geo": null, "id": 148039120982253570, "id_str": "148039120982253569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1418446331/straxlogo_tweeter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1418446331/straxlogo_tweeter_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "#strax is about point number 1: making #Hadoop simple and accessible: Five big data predictions for 2012 http://t.co/AL73nSrF via @radar", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:52:11 +0000", "from_user": "MaureenOGara", "from_user_id": 129064482, "from_user_id_str": "129064482", "from_user_name": "Maureen O'Gara", "geo": null, "id": 148037780046491650, "id_str": "148037780046491648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/799332620/Maureen_OGara_120_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/799332620/Maureen_OGara_120_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @AzureCloudNet: #Azure #Cloud Microsoft Tries Hadoop on Azure | Cloud Computing Journal: Microsoft added a trial version of Apac... http://t.co/2GHywGPJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:52:02 +0000", "from_user": "GonzalezCarmen", "from_user_id": 62502991, "from_user_id_str": "62502991", "from_user_name": "Carmen Gonzalez", "geo": null, "id": 148037739265273860, "id_str": "148037739265273856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/891767832/Carmen_Gonzalez_220_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/891767832/Carmen_Gonzalez_220_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @AzureCloudNet: #Azure #Cloud Microsoft Tries Hadoop on Azure | Cloud Computing Journal: Microsoft added a trial version of Apac... http://t.co/2GHywGPJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:51:31 +0000", "from_user": "BigDataExpo", "from_user_id": 408440808, "from_user_id_str": "408440808", "from_user_name": "BigDataExpo\\u00A9", "geo": null, "id": 148037609791303680, "id_str": "148037609791303682", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1630353587/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630353587/image_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @AzureCloudNet: #Azure #Cloud Microsoft Tries Hadoop on Azure | Cloud Computing Journal: Microsoft added a trial version of Apac... http://t.co/2GHywGPJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:51:18 +0000", "from_user": "cfoundryexpo", "from_user_id": 281174670, "from_user_id_str": "281174670", "from_user_name": "Cloud Foundry Summit", "geo": null, "id": 148037556292956160, "id_str": "148037556292956160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1309359449/Cloud_Foundry_Summit_100_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1309359449/Cloud_Foundry_Summit_100_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @AzureCloudNet: #Azure #Cloud Microsoft Tries Hadoop on Azure | Cloud Computing Journal: Microsoft added a trial version of Apac... http://t.co/2GHywGPJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:50:55 +0000", "from_user": "AjaxRIAexpo", "from_user_id": 18903165, "from_user_id_str": "18903165", "from_user_name": "AJAX RIA Cloud Expo", "geo": null, "id": 148037461224853500, "id_str": "148037461224853504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/70774469/AJAXWorld_RIA_Conference_Logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/70774469/AJAXWorld_RIA_Conference_Logo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @AzureCloudNet: #Azure #Cloud Microsoft Tries Hadoop on Azure | Cloud Computing Journal: Microsoft added a trial version of Apac... http://t.co/2GHywGPJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:50:40 +0000", "from_user": "SOAWorldExpo", "from_user_id": 18906552, "from_user_id_str": "18906552", "from_user_name": "SOA in the Cloud", "geo": null, "id": 148037396871655420, "id_str": "148037396871655425", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/70794220/STORY_GRAPHIC_HUGE_SOA_NEW_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/70794220/STORY_GRAPHIC_HUGE_SOA_NEW_2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @AzureCloudNet: #Azure #Cloud Microsoft Tries Hadoop on Azure | Cloud Computing Journal: Microsoft added a trial version of Apac... http://t.co/2GHywGPJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:50:31 +0000", "from_user": "Ulitzer", "from_user_id": 18791290, "from_user_id_str": "18791290", "from_user_name": "Ulitzer.com", "geo": null, "id": 148037361320730620, "id_str": "148037361320730624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/745317755/Ulitzer_Logo_100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/745317755/Ulitzer_Logo_100_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @AzureCloudNet: #Azure #Cloud Microsoft Tries Hadoop on Azure | Cloud Computing Journal: Microsoft added a trial version of Apac... http://t.co/2GHywGPJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:50:16 +0000", "from_user": "sysconmedia", "from_user_id": 36339779, "from_user_id_str": "36339779", "from_user_name": "SYS-CON Media", "geo": null, "id": 148037297546342400, "id_str": "148037297546342401", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/745331242/SYS-CON_Media_Logo_100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/745331242/SYS-CON_Media_Logo_100_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @AzureCloudNet: #Azure #Cloud Microsoft Tries Hadoop on Azure | Cloud Computing Journal: Microsoft added a trial version of Apac... http://t.co/2GHywGPJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:49:58 +0000", "from_user": "CloudExpo", "from_user_id": 18854457, "from_user_id_str": "18854457", "from_user_name": "Cloud Expo\\u00AE", "geo": null, "id": 148037221952401400, "id_str": "148037221952401408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1338917249/cloud-square2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1338917249/cloud-square2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @AzureCloudNet: #Azure #Cloud Microsoft Tries Hadoop on Azure | Cloud Computing Journal: Microsoft added a trial version of Apac... http://t.co/2GHywGPJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:46:17 +0000", "from_user": "jg21", "from_user_id": 4921851, "from_user_id_str": "4921851", "from_user_name": "Jeremy Geelan", "geo": null, "id": 148036292880506880, "id_str": "148036292880506880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1378991855/Jeremy_Geelan_square_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1378991855/Jeremy_Geelan_square_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @AzureCloudNet: #Azure #Cloud Microsoft Tries Hadoop on Azure | Cloud Computing Journal: Microsoft added a trial version of Apac... http://t.co/2GHywGPJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:45:03 +0000", "from_user": "gunnard", "from_user_id": 7523612, "from_user_id_str": "7523612", "from_user_name": "gunnard", "geo": null, "id": 148035982615248900, "id_str": "148035982615248896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1286649442/purptent_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1286649442/purptent_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/b5rvK0m0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:43:44 +0000", "from_user": "borancar", "from_user_id": 273673395, "from_user_id_str": "273673395", "from_user_name": "Boran Car", "geo": null, "id": 148035651697254400, "id_str": "148035651697254401", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://news.ycombinator.com/" rel="nofollow">Hacker News Bot</a>", "text": "RT @hackernewsbot: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl... http://t.co/JGEaGFBn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:36:55 +0000", "from_user": "felixaverlant", "from_user_id": 26585636, "from_user_id_str": "26585636", "from_user_name": "F\\u00E9lix Averlant", "geo": null, "id": 148033935073493000, "id_str": "148033935073492992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1155182036/1f31ece4-b0be-4818-80df-6e66bfadd721_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1155182036/1f31ece4-b0be-4818-80df-6e66bfadd721_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @allthingshadoop: This R package allows an R programmer to perform statistical analysis via MapReduce on a Hadoop cluster http://t.co/S7FG4iQz via @piccolbo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:28:48 +0000", "from_user": "uboness", "from_user_id": 42660761, "from_user_id_str": "42660761", "from_user_name": "Uri Boness", "geo": null, "id": 148031893965766660, "id_str": "148031893965766656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/234354759/uri_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/234354759/uri_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @Frank_Scholten: Check this out http://t.co/tVHQsR8a > @noiano: default #hadoop settings in #whirr I curse you! Any idea on how to modify them?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:27:19 +0000", "from_user": "jg21", "from_user_id": 4921851, "from_user_id_str": "4921851", "from_user_name": "Jeremy Geelan", "geo": null, "id": 148031519615762430, "id_str": "148031519615762432", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1378991855/Jeremy_Geelan_square_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1378991855/Jeremy_Geelan_square_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @ialjkk: Microsoft Tries Hadoop on Azure | Cloud Computing Journal http://t.co/ywHuZRCk #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:17:11 +0000", "from_user": "ikkebr", "from_user_id": 25092629, "from_user_id_str": "25092629", "from_user_name": "Henrique Pereira", "geo": null, "id": 148028969717989380, "id_str": "148028969717989377", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1191300930/fotenhoheine_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1191300930/fotenhoheine_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josepapo: MapReduce para as massas! Hadoop em 5 minutos com a Amazon Web Services e CommonCrawl - http://t.co/ckKK6qEF #AWS #Show", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:10:24 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 148027262401396740, "id_str": "148027262401396736", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft Tries Hadoop on Azure | Cloud Computing Journal http://t.co/ywHuZRCk #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:09:58 +0000", "from_user": "ComputerWorldCa", "from_user_id": 18813658, "from_user_id_str": "18813658", "from_user_name": "ComputerWorldCa", "geo": null, "id": 148027153374642180, "id_str": "148027153374642176", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/72727281/CW-avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/72727281/CW-avatar_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "When HANA meets Hadoop - ITWorld Canada http://t.co/nvHFcWLC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:09:13 +0000", "from_user": "scaphe", "from_user_id": 14166573, "from_user_id_str": "14166573", "from_user_name": "Felipe Oliveira", "geo": null, "id": 148026964740014080, "id_str": "148026964740014080", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1587839736/chic_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587839736/chic_twitter_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josepapo: MapReduce para as massas! Hadoop em 5 minutos com a Amazon Web Services e CommonCrawl - http://t.co/ckKK6qEF #AWS #Show", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:08:19 +0000", "from_user": "osonoi", "from_user_id": 26443917, "from_user_id_str": "26443917", "from_user_name": "\\u5C0F\\u8597\\u4E95", "geo": null, "id": 148026741003259900, "id_str": "148026741003259906", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1127805484/osonoi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1127805484/osonoi_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\\u3084\\u3063\\u3071\\u308Ahadoop\\u304B\\u3000RT @linuxfoundation: Top 10 OSS Projects of '11. http://t.co/Rzx51zyV Did your fave make the list? #linux #nodejs #puppet...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:05:30 +0000", "from_user": "surkova", "from_user_id": 8608182, "from_user_id_str": "8608182", "from_user_name": "Vera Surkova", "geo": null, "id": 148026028592336900, "id_str": "148026028592336897", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/431104517/donkey_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/431104517/donkey_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "\\u0410 \\u0447\\u0438\\u0442\\u0430\\u044E \\u044F \\u043F\\u0440\\u043E \\u043E\\u0431\\u043B\\u0430\\u043A\\u0430, \\u0445\\u0440\\u0430\\u043D\\u0438\\u043B\\u0438\\u0449\\u0430 \\u0434\\u0430\\u043D\\u043D\\u044B\\u0445, Hadoop, MapReduce \\u0438 \\u043F\\u0440\\u043E\\u0447\\u0443\\u044E \\u0434\\u0440\\u0435\\u0431\\u0435\\u0434\\u0435\\u043D\\u044C.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:04:54 +0000", "from_user": "reputa_india", "from_user_id": 265834202, "from_user_id_str": "265834202", "from_user_name": "Reputa India", "geo": null, "id": 148025879111532540, "id_str": "148025879111532545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1283445555/2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1283445555/2_normal.jpg", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "URGENT Requirement : Hiring Hadoop Architect (2+ year contract position) required in Pune ... http://t.co/UKpaake3 #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:00:02 +0000", "from_user": "hatebuslip", "from_user_id": 288838550, "from_user_id_str": "288838550", "from_user_name": "hatebuslip", "geo": null, "id": 148024654534152200, "id_str": "148024654534152192", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1347101829/Clock-green-64_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1347101829/Clock-green-64_normal.png", "source": "<a href="http://hatebuslip.choilabo.com/" rel="nofollow">\\u306F\\u3066\\u3076\\u30B9\\u30EA\\u30C3\\u30D7</a>", "text": "Hadoop\\u3067\\u3001\\u304B\\u3093\\u305F\\u3093\\u5206\\u6563\\u51E6\\u7406 (Yahoo! JAPAN Tech Blog)\\uFF1Ahttp://t.co/JbvgTdij", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:59:26 +0000", "from_user": "rafanunes", "from_user_id": 25500670, "from_user_id_str": "25500670", "from_user_name": "Rafael Nunes", "geo": null, "id": 148024502494822400, "id_str": "148024502494822401", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/104568189/IMG_2027_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/104568189/IMG_2027_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josepapo: MapReduce para as massas! Hadoop em 5 minutos com a Amazon Web Services e CommonCrawl - http://t.co/ckKK6qEF #AWS #Show", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:55:24 +0000", "from_user": "josepapo", "from_user_id": 13322392, "from_user_id_str": "13322392", "from_user_name": "Jos\\u00E9 Papo", "geo": null, "id": 148023488043683840, "id_str": "148023488043683841", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/217252557/pessoal4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/217252557/pessoal4_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "MapReduce para as massas! Hadoop em 5 minutos com a Amazon Web Services e CommonCrawl - http://t.co/ckKK6qEF #AWS #Show", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:55:04 +0000", "from_user": "mimul", "from_user_id": 11425532, "from_user_id_str": "11425532", "from_user_name": "\\uD558\\uD638\\uC9C4", "geo": null, "id": 148023405667553280, "id_str": "148023405667553281", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/41073022/hhj_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/41073022/hhj_normal.jpg", "source": "<a href="http://pixelpipe.com/tools" rel="nofollow">Pixelpipe</a>", "text": "Hadoop\\uAE30\\uBC18\\uC758 \\uB370\\uC774\\uD130\\uB97C \\uB2E4\\uB8E8\\uAE30 \\uC26C\\uC6B4 \\uD615\\uD0DC\\uB85C \\uAC00\\uACF5\\uD558\\uB294\\uB370 \\uB3C4\\uC6C0\\uC774 \\uB418\\uB294 Apache Pig\\uC5D0 \\uC124\\uCE58 \\uBC0F \\uC0AC\\uC6A9\\uBC95\\uC744 \\uAC04\\uB2E8\\uD558\\uAC8C \\uC815\\uB9AC. - http://t.co/tZxMner3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:55:02 +0000", "from_user": "ProgrammingWord", "from_user_id": 158722669, "from_user_id_str": "158722669", "from_user_name": "\\u30D7\\u30ED\\u30B0\\u30E9\\u30DF\\u30F3\\u30B0\\u306B\\u5F79\\u7ACB\\u3064\\u540D\\u8A00\\u30FB\\u6CD5\\u5247", "geo": null, "id": 148023397547388930, "id_str": "148023397547388929", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1101069129/04_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1101069129/04_normal.jpg", "source": "<a href="http://d.hatena.ne.jp/japanrock_pg/" rel="nofollow">\\u30D7\\u30ED\\u30B0\\u30E9\\u30DF\\u30F3\\u30B0\\u3067\\u5F79\\u306B\\u7ACB\\u3064\\u8A00\\u8449</a>", "text": "\\u3088\\u308A\\u591A\\u304F\\u306E\\u30C7\\u30FC\\u30BF\\u306F\\u3088\\u308A\\u3088\\u3044\\u30A2\\u30EB\\u30B4\\u30EA\\u30BA\\u30E0\\u3092\\u51CC\\u99D5\\u3059\\u308B by \\u66F8\\u7C4D\\uFF1AHadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:53:43 +0000", "from_user": "GrandLogicInc", "from_user_id": 427826464, "from_user_id_str": "427826464", "from_user_name": "Grand Logic", "geo": null, "id": 148023063223607300, "id_str": "148023063223607297", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1672436646/gl_logo_simple_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672436646/gl_logo_simple_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Preparing your business data for #bigdata processing is often overlooked but critical step to having successful #hadoop deployment & mgmt..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:52:35 +0000", "from_user": "dsyme", "from_user_id": 25663453, "from_user_id_str": "25663453", "from_user_name": "Don Syme", "geo": null, "id": 148022779487338500, "id_str": "148022779487338496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @rickasaurus: RT @chris_brockett: Carl Nolan blogs on hadoop streaming and #fsharp map reduce http://t.co/UHYpV4G6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:46:40 +0000", "from_user": "juanjmostazo", "from_user_id": 236408605, "from_user_id_str": "236408605", "from_user_name": "Juan J. Mostazo", "geo": null, "id": 148021292765949950, "id_str": "148021292765949952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1217546054/1297489__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1217546054/1297489__1__normal.jpg", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "RT @techmilind: The 10 Most Important Open Source Projects of 2011 | http://t.co/2u4FbRqU http://t.co/Bt7uHaRI #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:40:14 +0000", "from_user": "Frank_Scholten", "from_user_id": 34983987, "from_user_id_str": "34983987", "from_user_name": "Frank Scholten", "geo": null, "id": 148019672242069500, "id_str": "148019672242069505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1299982811/frankscholten_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1299982811/frankscholten_small_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Check this out http://t.co/tVHQsR8a > @noiano: default #hadoop settings in #whirr I curse you! Any idea on how to modify them?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:36:19 +0000", "from_user": "vikasdp", "from_user_id": 152682018, "from_user_id_str": "152682018", "from_user_name": "Vikas Pandya", "geo": null, "id": 148018686614175740, "id_str": "148018686614175744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1140915733/VP_twitter_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1140915733/VP_twitter_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Are there any successful integrations of Hadoop with apache Solr? Looking for references. Cc @mahadevkonar", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:27:29 +0000", "from_user": "felixaverlant", "from_user_id": 26585636, "from_user_id_str": "26585636", "from_user_name": "F\\u00E9lix Averlant", "geo": null, "id": 148016461296840700, "id_str": "148016461296840704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1155182036/1f31ece4-b0be-4818-80df-6e66bfadd721_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1155182036/1f31ece4-b0be-4818-80df-6e66bfadd721_normal.png", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/dUX0HsGo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:23:09 +0000", "from_user": "bellochoamaker", "from_user_id": 360894074, "from_user_id_str": "360894074", "from_user_name": "Bella Ochoa", "geo": null, "id": 148015372925272060, "id_str": "148015372925272064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1510534954/1314145146_websiteanalyticschart_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1510534954/1314145146_websiteanalyticschart_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Cloudera Expands Enterprise Management Software For Apache Hadoop With End-to-End Visibility for Big Data Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:14:34 +0000", "from_user": "NunoGodinho", "from_user_id": 9971382, "from_user_id_str": "9971382", "from_user_name": "Nuno Godinho", "geo": null, "id": 148013213265559550, "id_str": "148013213265559552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/831407287/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/831407287/twitterProfilePhoto_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @WindowsAzure: Microsoft Tries Hadoop on #Windows #Azure: gives Windows Azure Big Data capabilities http://t.co/hgQobdw2 #Cloud /via @Cloud_Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:06:15 +0000", "from_user": "lj_milivojevic", "from_user_id": 234185186, "from_user_id_str": "234185186", "from_user_name": "Ljubisa Milivojevic", "geo": null, "id": 148011119733260300, "id_str": "148011119733260288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/QF2iE5mI via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:00:41 +0000", "from_user": "USA_Jobs_", "from_user_id": 296272184, "from_user_id_str": "296272184", "from_user_name": "USA Jobs", "geo": null, "id": 148009718613413900, "id_str": "148009718613413889", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Architect- Hadoop Engineering: San Mateo, CA - Architect- Hadoop Engineering EMC/GreenplumSan Mateo, CA... http://t.co/mYBGjX8D USA Jobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:58:29 +0000", "from_user": "nadavc", "from_user_id": 55014162, "from_user_id_str": "55014162", "from_user_name": "Nadav", "geo": null, "id": 148009165208563700, "id_str": "148009165208563713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1315738312/cropped_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1315738312/cropped_normal.jpeg", "source": "<a href="http://www.phantomfish.com/byline.php" rel="nofollow">Byline</a>", "text": "MS to invest in Hadoop? http://t.co/QtqegjpE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:51:44 +0000", "from_user": "noiano", "from_user_id": 54919596, "from_user_id_str": "54919596", "from_user_name": "Marco Didonna", "geo": null, "id": 148007465924038660, "id_str": "148007465924038657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1673085134/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673085134/avatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "default #hadoop settings in #whirr I curse you! Any idea on how to modify them?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Sat, 17 Dec 2011 11:51:05 +0000", "from_user": "Jobs_in_USA_C", "from_user_id": 207963471, "from_user_id_str": "207963471", "from_user_name": "Jobs in USA", "geo": null, "id": 148007304929882100, "id_str": "148007304929882113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.bravenewcode.com/products/wordtwit" rel="nofollow">WordTwit Plugin</a>", "text": "Architect- Hadoop Engineering - Jobs in USA (United States ) - New York - http://t.co/rKUVA37w", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:44:02 +0000", "from_user": "dataprix", "from_user_id": 44152774, "from_user_id_str": "44152774", "from_user_name": "Carlos Fernandez", "geo": null, "id": 148005528285614080, "id_str": "148005528285614080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/701068875/isotipo_dataprix_screen_96_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/701068875/isotipo_dataprix_screen_96_normal.jpg", "source": "<a href="http://businessintelligenceweekly.com" rel="nofollow">Business Intelligence Weekly</a>", "text": "RT @weeklybi: New MapR Hadoop Version Includes Windows, Mac Support http://t.co/QIZHRM5e", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:38:39 +0000", "from_user": "wrifster", "from_user_id": 15505337, "from_user_id_str": "15505337", "from_user_name": "Arif Rajwani", "geo": null, "id": 148004172690767870, "id_str": "148004172690767872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/69419139/arifcrop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/69419139/arifcrop_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "OK, OK, let's ride this Big Data wave together then, starting with reading Hadoop: The Definitive Guide http://t.co/mwXrpNXW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:36:10 +0000", "from_user": "tw_top_1z2n8rp", "from_user_id": 373516096, "from_user_id_str": "373516096", "from_user_name": "Top Weapons for E...", "geo": null, "id": 148003550088278000, "id_str": "148003550088278016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @WindowsAzure: Microsoft Tries Hadoop on #Windows #Azure: gives Windows Azure Big Data capabilities http://t.co/hgQobdw2 #Cloud /via @Cloud_Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:35:34 +0000", "from_user": "AndreyDess", "from_user_id": 232951889, "from_user_id_str": "232951889", "from_user_name": "Andrey Klochaniy", "geo": null, "id": 148003397881184260, "id_str": "148003397881184257", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1318894220/45057_100951323300204_100001560093966_5522_3562587_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1318894220/45057_100951323300204_100001560093966_5522_3562587_n_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @WindowsAzure: Microsoft Tries Hadoop on #Windows #Azure: gives Windows Azure Big Data capabilities http://t.co/hgQobdw2 #Cloud /via @Cloud_Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:31:08 +0000", "from_user": "plotti", "from_user_id": 15533871, "from_user_id_str": "15533871", "from_user_name": "plotti", "geo": null, "id": 148002281223229440, "id_str": "148002281223229440", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/280052987/DSCF4196_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/280052987/DSCF4196_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Awsome blog on starting with hadoop - http://t.co/kfrallT1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:29:34 +0000", "from_user": "replore", "from_user_id": 5230221, "from_user_id_str": "5230221", "from_user_name": "replore", "geo": null, "id": 148001888661540860, "id_str": "148001888661540864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1324817836/manuki_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1324817836/manuki_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl | CommonCrawl http://t.co/SUCczjsy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:27:30 +0000", "from_user": "khan_io", "from_user_id": 14276529, "from_user_id_str": "14276529", "from_user_name": "Mohammed Khan", "geo": null, "id": 148001366571364350, "id_str": "148001366571364352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/541354425/m-z-khan_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/541354425/m-z-khan_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "On a lazy weekend trying to get hands dirty with system logs. #Flume #Hadoop #hive", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:15:03 +0000", "from_user": "zai2kun", "from_user_id": 112105012, "from_user_id_str": "112105012", "from_user_name": "z2", "geo": null, "id": 147998236177735680, "id_str": "147998236177735680", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1458318130/images__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1458318130/images__1__normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @cocoatomo: \\u8272\\u3005\\u3042\\u305F\\u3075\\u305F\\u3057\\u306A\\u304C\\u3089\\u66F8\\u3044\\u305F. > \\u6700\\u3082\\u901F\\u304F Hadoop \\u74B0\\u5883\\u3092\\u624B\\u306B\\u5165\\u308C\\u308B\\u65B9\\u6CD5 - Elliptium http://t.co/QlM9Ymmy via @cocoatomo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:13:54 +0000", "from_user": "jim68000", "from_user_id": 6613562, "from_user_id_str": "6613562", "from_user_name": "Jim Smith", "geo": null, "id": 147997946280030200, "id_str": "147997946280030208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695455238/Untitled-1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695455238/Untitled-1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@iwrigley Ha! Ta. I figured out what I'd done wrong eventually. It was my first day let loose on our Hadoop cluster.", "to_user": "iwrigley", "to_user_id": 23684133, "to_user_id_str": "23684133", "to_user_name": "Ian Wrigley", "in_reply_to_status_id": 147845394792067070, "in_reply_to_status_id_str": "147845394792067072"}, +{"created_at": "Sat, 17 Dec 2011 11:08:00 +0000", "from_user": "NnamdiJr", "from_user_id": 17524943, "from_user_id_str": "17524943", "from_user_name": "Nnamdi Offor", "geo": null, "id": 147996460284252160, "id_str": "147996460284252160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1500434752/IMG_8890_-_Copy_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1500434752/IMG_8890_-_Copy_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "HADOOOP! \"MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl\" http://t.co/MXOmSQpP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:03:35 +0000", "from_user": "randoru", "from_user_id": 48198941, "from_user_id_str": "48198941", "from_user_name": "randoru", "geo": null, "id": 147995347266973700, "id_str": "147995347266973696", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1392919968/CIMG2049_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1392919968/CIMG2049_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "C\\u8A00\\u8A9E\\u306E\\u30D7\\u30ED\\u30B0\\u30E9\\u30E0\\u3092java\\u5316(\\u6B32\\u3092\\u8A00\\u3048\\u3070hadoop\\u3067\\u5B9F\\u884C\\u3067\\u304D\\u308B\\u5F62\\u306B\\u3057\\u3066\\u304F\\u3060\\u3055\\u3044)\\u3064\\u3044\\u3067\\u306B\\u5352\\u8AD6\\u3068\\u767A\\u8868\\u8CC7\\u6599\\u3082\\u7F6E\\u3044\\u3066\\u3063\\u3066\\u304F\\u308C\\u308C\\u3070\\u6CE3\\u3044\\u3066\\u559C\\u3076\\u3000#\\u30B5\\u30F3\\u30BF\\u3055\\u3093\\u4ECA\\u5E74\\u306E\\u30D7\\u30EC\\u30BC\\u30F3\\u30C8\\u3053\\u308C\\u3067\\u304A\\u9858\\u3044\\u3057\\u307E\\u3059", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:52:56 +0000", "from_user": "netseven_it", "from_user_id": 231457348, "from_user_id_str": "231457348", "from_user_name": "Net7 s.r.l. - Pisa", "geo": null, "id": 147992670969667600, "id_str": "147992670969667585", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1608885092/Net7-logo_180_TW_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608885092/Net7-logo_180_TW_normal.png", "source": "<a href="http://192.168.1.198" rel="nofollow">star_car_proxy</a>", "text": "Five Big Data predictions for 2012 http://t.co/Kn1hhYKt #bigdata #visualization #hadoop (via @radar @strataconf @lod_it)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:52:40 +0000", "from_user": "topcadexperts", "from_user_id": 7415172, "from_user_id_str": "7415172", "from_user_name": "Joao Greno Brogueira", "geo": null, "id": 147992602698973200, "id_str": "147992602698973184", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/547660846/JGB100x100_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/547660846/JGB100x100_normal.jpg", "source": "<a href="http://www.scoop.it" rel="nofollow">Scoop.it</a>", "text": "Big Data with Hadoop & Cloud | Cloudy Blog?!?!?! | @scoopit http://t.co/a8MyPJ0A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:46:34 +0000", "from_user": "vishwavikalp", "from_user_id": 83765473, "from_user_id_str": "83765473", "from_user_name": "Vishwavikalp", "geo": null, "id": 147991067906678800, "id_str": "147991067906678784", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1258295366/DSC03650_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1258295366/DSC03650_normal.JPG", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Java Developer, Hadoop in Bangalore, India http://t.co/TOgftUji #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:43:46 +0000", "from_user": "r00tm00se", "from_user_id": 114014493, "from_user_id_str": "114014493", "from_user_name": "\\u00C5ke Nordin", "geo": null, "id": 147990360424067070, "id_str": "147990360424067072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1647592457/bookface_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647592457/bookface_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @commoncrawl: MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl by @stevesalevan http://t.co/cBa5598M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:33:17 +0000", "from_user": "mvholmes", "from_user_id": 37717313, "from_user_id_str": "37717313", "from_user_name": "Michael Holmes", "geo": null, "id": 147987724115247100, "id_str": "147987724115247104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1590055595/metwit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1590055595/metwit_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ManningBooks: @hadoopnews #Hadoop in Practice MEAP launch! 50% off today. Use code hadoop50 at http://t.co/lMCtnYZy checkout.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:30:47 +0000", "from_user": "lod_it", "from_user_id": 169284011, "from_user_id_str": "169284011", "from_user_name": "linkedopendata.it", "geo": null, "id": 147987096160833540, "id_str": "147987096160833536", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1232758814/logo_lod_it_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1232758814/logo_lod_it_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @strataconf: Five Big Data predictions for 2012 http://t.co/0no2xN8g via @radar #bigdata #visualization #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:24:03 +0000", "from_user": "ajlopez", "from_user_id": 14567622, "from_user_id_str": "14567622", "from_user_name": "ajlopez", "geo": null, "id": 147985399174791170, "id_str": "147985399174791168", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/53769404/spiral_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/53769404/spiral_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @miguelpdl: Open source Crowbar code now available for Hadoop http://t.co/OZnKKw2x", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:22:50 +0000", "from_user": "miguelpdl", "from_user_id": 19868452, "from_user_id_str": "19868452", "from_user_name": "Miguel Ponce de Leon", "geo": null, "id": 147985093888196600, "id_str": "147985093888196608", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1286492078/twitterself_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1286492078/twitterself_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Open source Crowbar code now available for Hadoop http://t.co/OZnKKw2x", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:10:02 +0000", "from_user": "vishnebo", "from_user_id": 37504860, "from_user_id_str": "37504860", "from_user_name": "boris", "geo": null, "id": 147981871513481200, "id_str": "147981871513481216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl\\nhttp://t.co/taLITydz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:00:28 +0000", "from_user": "nbcaveatemptor", "from_user_id": 15651943, "from_user_id_str": "15651943", "from_user_name": "Paul Catchpole", "geo": null, "id": 147979463743897600, "id_str": "147979463743897601", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1190659877/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1190659877/me_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Crypt0s: Ruby streaming and Cloudera Distribution for #Hadoop are like peanut butter & jelly < A US quirk, not understood by rest of world?", "to_user": "Crypt0s", "to_user_id": 54561212, "to_user_id_str": "54561212", "to_user_name": "Cryptos"}, +{"created_at": "Sat, 17 Dec 2011 09:48:24 +0000", "from_user": "dewhiskeys", "from_user_id": 104772538, "from_user_id_str": "104772538", "from_user_name": "Luca De Vitis", "geo": null, "id": 147976428703584260, "id_str": "147976428703584257", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/665149384/n1424724587_280284_285889_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/665149384/n1424724587_280284_285889_normal.jpg", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/5qbbPrE2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:39:29 +0000", "from_user": "devilcoder", "from_user_id": 15849665, "from_user_id_str": "15849665", "from_user_name": "Anis Mesmouki", "geo": null, "id": 147974184880963600, "id_str": "147974184880963584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/215161437/n1035780156_149374_9362_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/215161437/n1035780156_149374_9362_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "RT @hackernewsbot: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl... http://t.co/b0Lzhp9U", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:31:11 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 147972095601676300, "id_str": "147972095601676288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "HBase, mail # user - Re: Delivery Status Notification (Failure) - 2011 ... http://t.co/fdHZpaxe #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:31:10 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 147972092267208700, "id_str": "147972092267208704", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft Tries Hadoop on Azure | Cloud Computing Journal http://t.co/bWqViVkr #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:31:10 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 147972091185078270, "id_str": "147972091185078272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with ... http://t.co/iuNulIyG #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:25:08 +0000", "from_user": "AnishaTiczon", "from_user_id": 341950685, "from_user_id_str": "341950685", "from_user_name": "Anisha Ticzon", "geo": null, "id": 147970573585235970, "id_str": "147970573585235968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1459573870/anisha_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1459573870/anisha_500_normal.jpg", "source": "<a href="http://suhastech.com/tr" rel="nofollow">Tweet Random</a>", "text": "24 Interview Questions & Answers for Hadoop developers http://t.co/toflNL7m", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:24:02 +0000", "from_user": "codelesson", "from_user_id": 143534212, "from_user_id_str": "143534212", "from_user_name": "CodeLesson", "geo": null, "id": 147970294932443140, "id_str": "147970294932443139", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/897604542/logo_square_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/897604542/logo_square_normal.png", "source": "<a href="http://codelesson.com/" rel="nofollow">CodeLesson</a>", "text": "Here's a link to our online Crunching Big Data with Hadoop course: http://t.co/vkcZmBbf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:18:09 +0000", "from_user": "fragileyouth", "from_user_id": 134001307, "from_user_id_str": "134001307", "from_user_name": "fragileyouth", "geo": null, "id": 147968815647563780, "id_str": "147968815647563776", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @tamagawa_ryuji: \\u304A\\u5F85\\u305F\\u305B\\u3057\\u307E\\u3057\\u305F\\u3002\\u8C61\\u672C\\u3053\\u3068\\u300Chadoop\\u300D\\u306Eebook\\u3001\\u51FA\\u307E\\u3057\\u305F\\uFF01\\u3000http://t.co/Ax1ALVbq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:56:00 +0000", "from_user": "HBaselog", "from_user_id": 335625738, "from_user_id_str": "335625738", "from_user_name": "HBase Commit Log", "geo": null, "id": 147963243695063040, "id_str": "147963243695063040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/hbaselog" rel="nofollow">Apache HBase Commit Log</a>", "text": "http://t.co/wOlCOZJh #HBase HBASE-5055 Build against hadoop 0.22 broken\\n\\ngit-svn-id: https://t.co/eNZp8Gxu@1215356 13f", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:50:41 +0000", "from_user": "anidris_SA", "from_user_id": 192487725, "from_user_id_str": "192487725", "from_user_name": "anidris", "geo": null, "id": 147961903661072400, "id_str": "147961903661072384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1126763950/logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1126763950/logo_normal.jpg", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "RT @techmilind: New record: 186 Gbps between data centers! Mirror 20PB hadoop cluster in only 20 days. http://t.co/hzJZ014p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:49:12 +0000", "from_user": "SoftEngJobsPay", "from_user_id": 428586447, "from_user_id_str": "428586447", "from_user_name": "SoftEngJobsPay", "geo": null, "id": 147961529441067000, "id_str": "147961529441067008", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1674192820/sqlusasquare1_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674192820/sqlusasquare1_bigger_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Software Engineer - Senior Hadoop Software Engineer at Emc/greenplum (San Mateo, CA) http://t.co/X4LpdSs8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:39:40 +0000", "from_user": "mhnsr", "from_user_id": 67339818, "from_user_id_str": "67339818", "from_user_name": "nsr", "geo": null, "id": 147959129200271360, "id_str": "147959129200271360", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1249463416/jpm-barc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1249463416/jpm-barc_normal.jpg", "source": "<a href="http://www.zusaar.com/" rel="nofollow">Zusaar</a>", "text": "RT @tamtam180: 17\\u65E5\\u76EE\\u66F8\\u304D\\u307E\\u3057\\u305F(\\u30FB\\u03C9\\u30FB)\\uFF89\\nHive0.8 timestamp\\u306B\\u3064\\u3044\\u3066\\u3067\\u3059\\u3002\\nhttp://t.co/IWOiiDNp\\u2026 / hadoop\\u30A2\\u30C9\\u30D9\\u30F3\\u30C8\\u30AB\\u30EC\\u30F3\\u30C0\\u30FC2011 http://t.co/FBdwvgDB #zusaar", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:35:01 +0000", "from_user": "danielchownet", "from_user_id": 16262954, "from_user_id_str": "16262954", "from_user_name": "Daniel Chow", "geo": null, "id": 147957962923712500, "id_str": "147957962923712512", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1433998841/photo_100x100_sv_gaussian3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1433998841/photo_100x100_sv_gaussian3_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure http://t.co/JDGDOLzJ #cloudcomputing", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:34:09 +0000", "from_user": "delfinof", "from_user_id": 29531965, "from_user_id_str": "29531965", "from_user_name": "Francesco Delfino", "geo": null, "id": 147957744165601280, "id_str": "147957744165601280", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1643688932/_29531965_-5740430031097686038_146_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643688932/_29531965_-5740430031097686038_146_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @simon: Love it :) \"@mndoci: Zero to #Hadoop in 5 minutes: http://t.co/UPA7VyWX #aws #coolstuff\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:26:28 +0000", "from_user": "msnikosan", "from_user_id": 29941542, "from_user_id_str": "29941542", "from_user_name": "Nikos Anastopoulos", "geo": null, "id": 147955807458295800, "id_str": "147955807458295809", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1443690739/avatarpic-l_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1443690739/avatarpic-l_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @MicrosoftBI: I uploaded a @YouTube video http://t.co/WWiuQpFL Introduction to the Hadoop on Azure Interactive Hive Console", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:26:19 +0000", "from_user": "msnikosan", "from_user_id": 29941542, "from_user_id_str": "29941542", "from_user_name": "Nikos Anastopoulos", "geo": null, "id": 147955772897234940, "id_str": "147955772897234944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1443690739/avatarpic-l_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1443690739/avatarpic-l_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @MicrosoftBI: You are QUICK! RT @AliRebai: Check this intro video for the latest (Metro-style) CTP of #Hadoop on Azure Hive Console : http://t.co/03VAjOsC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:09:23 +0000", "from_user": "mopennock", "from_user_id": 200005386, "from_user_id_str": "200005386", "from_user_name": "Maureen Pennock", "geo": null, "id": 147951508854546430, "id_str": "147951508854546432", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1649965581/mpennock_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649965581/mpennock_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @strataconf: Five Big Data predictions for 2012 http://t.co/0no2xN8g via @radar #bigdata #visualization #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:01:26 +0000", "from_user": "satoruf", "from_user_id": 56858689, "from_user_id_str": "56858689", "from_user_name": "\\u8239\\u4E95\\u3000\\u899A, Satoru Funai", "geo": null, "id": 147949509333356540, "id_str": "147949509333356544", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/769358094/091203portrait_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/769358094/091203portrait_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "\\uFF11\\uFF10\\uFF10\\uFF10\\u5186\\u5B89\\u3044\\uFF01\\u201C@tamagawa_ryuji: \\u304A\\u5F85\\u305F\\u305B\\u3057\\u307E\\u3057\\u305F\\u3002\\u8C61\\u672C\\u3053\\u3068\\u300Chadoop\\u300D\\u306Eebook\\u3001\\u51FA\\u307E\\u3057\\u305F\\uFF01\\u3000http://t.co/5KRyE5Fy\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:44:31 +0000", "from_user": "gnanavels", "from_user_id": 23320405, "from_user_id_str": "23320405", "from_user_name": "Gnanavel Subramaniam", "geo": null, "id": 147945254362955780, "id_str": "147945254362955776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl... http://t.co/oAYXCSrn -- hackernewsbot (@hackernewsbot)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:38:48 +0000", "from_user": "Dalice", "from_user_id": 5708502, "from_user_id_str": "5708502", "from_user_name": "\\u3060\\u308A\\u3059", "geo": null, "id": 147943814550654980, "id_str": "147943814550654976", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697858306/out-dalice-icon-null_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697858306/out-dalice-icon-null_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @tamagawa_ryuji: \\u304A\\u5F85\\u305F\\u305B\\u3057\\u307E\\u3057\\u305F\\u3002\\u8C61\\u672C\\u3053\\u3068\\u300Chadoop\\u300D\\u306Eebook\\u3001\\u51FA\\u307E\\u3057\\u305F\\uFF01\\u3000http://t.co/Ax1ALVbq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:37:43 +0000", "from_user": "dentomo", "from_user_id": 71979620, "from_user_id_str": "71979620", "from_user_name": "\\u50B3\\u667A\\u4E4B", "geo": null, "id": 147943541518241800, "id_str": "147943541518241792", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @tamagawa_ryuji: \\u304A\\u5F85\\u305F\\u305B\\u3057\\u307E\\u3057\\u305F\\u3002\\u8C61\\u672C\\u3053\\u3068\\u300Chadoop\\u300D\\u306Eebook\\u3001\\u51FA\\u307E\\u3057\\u305F\\uFF01\\u3000http://t.co/Ax1ALVbq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:30:14 +0000", "from_user": "amtindia", "from_user_id": 17646260, "from_user_id_str": "17646260", "from_user_name": "AMT", "geo": null, "id": 147941657533366270, "id_str": "147941657533366273", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/341107159/AMT_twi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/341107159/AMT_twi_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Five big data predictions for 2012 - By @Radar http://t.co/aEFdKfUy #NoSQL #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:29:08 +0000", "from_user": "hamaken", "from_user_id": 14853489, "from_user_id_str": "14853489", "from_user_name": "\\u6FF1\\u91CE \\u8CE2\\u4E00\\u6717 / Hamano ", "geo": null, "id": 147941380814151680, "id_str": "147941380814151680", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1371746814/NEC_6364_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1371746814/NEC_6364_normal.JPG", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @tamagawa_ryuji: \\u304A\\u5F85\\u305F\\u305B\\u3057\\u307E\\u3057\\u305F\\u3002\\u8C61\\u672C\\u3053\\u3068\\u300Chadoop\\u300D\\u306Eebook\\u3001\\u51FA\\u307E\\u3057\\u305F\\uFF01\\u3000http://t.co/Ax1ALVbq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:25:59 +0000", "from_user": "d8Pit", "from_user_id": 264394701, "from_user_id_str": "264394701", "from_user_name": "The URL Popularizer", "geo": null, "id": 147940588447207420, "id_str": "147940588447207424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317284522/logo-header_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317284522/logo-header_normal.png", "source": "<a href="http://d8p.it" rel="nofollow">d8P</a>", "text": "RT @beckersweet: \"What's possible when open source meets open data\" via @HPC_Guru @mndoci #hadoop #bigdata #github | http://t.co/1uNuUgxh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:23:19 +0000", "from_user": "tmybj", "from_user_id": 178367731, "from_user_id_str": "178367731", "from_user_name": "\\u3086\\u304B\\u3080", "geo": null, "id": 147939918470062080, "id_str": "147939918470062080", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1308638542/from_twitStatus18162_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1308638542/from_twitStatus18162_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @tamagawa_ryuji: \\u304A\\u5F85\\u305F\\u305B\\u3057\\u307E\\u3057\\u305F\\u3002\\u8C61\\u672C\\u3053\\u3068\\u300Chadoop\\u300D\\u306Eebook\\u3001\\u51FA\\u307E\\u3057\\u305F\\uFF01\\u3000http://t.co/Ax1ALVbq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:21:39 +0000", "from_user": "beckersweet", "from_user_id": 343024766, "from_user_id_str": "343024766", "from_user_name": "Barbara Collignon", "geo": null, "id": 147939499052253200, "id_str": "147939499052253184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1602983920/BarbaraCCollignon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1602983920/BarbaraCCollignon_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "\"What's possible when open source meets open data\" via @HPC_Guru @mndoci http://t.co/oIOsAEx2 #hadoop #bigdata #github", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:18:47 +0000", "from_user": "kimukou_26", "from_user_id": 127385502, "from_user_id_str": "127385502", "from_user_name": "kimukou_26", "geo": null, "id": 147938776382054400, "id_str": "147938776382054400", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698307192/66.png_groovy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698307192/66.png_groovy_normal.png", "source": "<a href="http://www.tweenapp.org/" rel="nofollow">Tween</a>", "text": "(#SakuTeki ust at http://t.co/K5GXY3C9 )\\nHadoop \\uFF0B Mahout \\u3050\\u3089\\u3044\\u306E\\u30EC\\u30A4\\u30E4\\u30FC \\uFF1D Jubatus", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:11:39 +0000", "from_user": "kimukou_26", "from_user_id": 127385502, "from_user_id_str": "127385502", "from_user_name": "kimukou_26", "geo": null, "id": 147936980372693000, "id_str": "147936980372692993", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698307192/66.png_groovy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698307192/66.png_groovy_normal.png", "source": "<a href="http://www.tweenapp.org/" rel="nofollow">Tween</a>", "text": "(#SakuTeki ust at http://t.co/K5GXY3C9 )\\nHadoop\\uFF09\\n\\u30FB\\u901F\\u3044 \\u30FB\\u30FB\\u30C7\\u30FC\\u30BF\\u3092\\u4E00\\u6C17\\u306B\\u51E6\\u7406 \\uFF1C\\u305F\\u3060\\u3057\\u30C7\\u30FC\\u30BF\\u53D6\\u5F97\\u306F\\u9045\\u3044 \\n\\u30FB\\u5206\\u6563 \\u30FB\\u30FBPC\\u5897\\u3084\\u305B\\u3070\\u901F\\u304F\\u3067\\u304D\\u308B \\n\\u30FB\\u30ED\\u30D0\\u30B9\\u30C8 \\u30FB\\u30FB1\\u500B\\u843D\\u3061\\u3066\\u3082\\u4F55\\u3068\\u304B\\u306A\\u308B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:11:00 +0000", "from_user": "Robotulisms", "from_user_id": 40804333, "from_user_id_str": "40804333", "from_user_name": "Dillon Compton", "geo": null, "id": 147936815498788860, "id_str": "147936815498788864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1008003785/45jsus6b_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1008003785/45jsus6b_normal", "source": "<a href="http://news.ycombinator.com/" rel="nofollow">Hacker News Bot</a>", "text": "RT @hackernewsbot: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl... http://t.co/JGEaGFBn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:10:20 +0000", "from_user": "kimukou_26", "from_user_id": 127385502, "from_user_id_str": "127385502", "from_user_name": "kimukou_26", "geo": null, "id": 147936649886703600, "id_str": "147936649886703616", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698307192/66.png_groovy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698307192/66.png_groovy_normal.png", "source": "<a href="http://www.tweenapp.org/" rel="nofollow">Tween</a>", "text": "(#SakuTeki ust at http://t.co/K5GXY3C9 )\\n\\u30AA\\u30F3\\u30E9\\u30A4\\u30F3\\u6A5F\\u68B0\\u5B66\\u7FD2 \\uFF06 Hadoop \\u306E\\u30B3\\u30E9\\u30DC \\nHadoop\\uFF09 \\n\\u30FB\\u30D0\\u30C3\\u30C1\\u51E6\\u7406\\u306E\\u5206\\u6563\\u30D5\\u30EC\\u30FC\\u30E0\\u30EF\\u30FC\\u30AF \\u3068\\u8003\\u3048\\u3066\\u826F\\u3044\\n\\uFF1C\\u3069\\u3053\\u3067\\u3082\\u8CB7\\u3048\\u308B\\u30D1\\u30BD\\u30B3\\u30F3\\u3067\\u5206\\u6563\\u51E6\\u7406", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:09:06 +0000", "from_user": "markswall", "from_user_id": 19688728, "from_user_id_str": "19688728", "from_user_name": "Mark Wall", "geo": null, "id": 147936340481282050, "id_str": "147936340481282049", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676652683/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676652683/Untitled_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft Tries Hadoop on Azure | Cloud Computing Journal http://t.co/8600wyI5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:08:56 +0000", "from_user": "tamagawa_ryuji", "from_user_id": 92008327, "from_user_id_str": "92008327", "from_user_name": "tamagawa ryuji", "geo": null, "id": 147936295954554880, "id_str": "147936295954554880", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/540083339/shichimi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/540083339/shichimi_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "\\u304A\\u5F85\\u305F\\u305B\\u3057\\u307E\\u3057\\u305F\\u3002\\u8C61\\u672C\\u3053\\u3068\\u300Chadoop\\u300D\\u306Eebook\\u3001\\u51FA\\u307E\\u3057\\u305F\\uFF01\\u3000http://t.co/Ax1ALVbq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:06:02 +0000", "from_user": "avkashchauhan", "from_user_id": 213118614, "from_user_id_str": "213118614", "from_user_name": "Avkash Chauhan", "geo": null, "id": 147935565822705660, "id_str": "147935565822705664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1615647152/asc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615647152/asc_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Just downloaded #ZooKeeper 3.4.1 release for my #Hadoop box, you can get as well -: http://t.co/E4qnXkln.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 06:55:03 +0000", "from_user": "INFAIM", "from_user_id": 145062108, "from_user_id_str": "145062108", "from_user_name": "Julianna DeLua (EIM)", "geo": null, "id": 147932804104196100, "id_str": "147932804104196097", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "source": "<a href="http://futuretweets.com" rel="nofollow"> Futuretweets V2</a>", "text": "Most popular On-demand Webinar 2011 @ralphkimball http://t.co/FjsjlgSC Make data warehouse adaptable for #bigdata #hadoop @informaticacorp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 06:51:30 +0000", "from_user": "TigerHasse", "from_user_id": 25981250, "from_user_id_str": "25981250", "from_user_name": "Hans Sterby", "geo": null, "id": 147931910675505150, "id_str": "147931910675505152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/114821309/Bild_32___normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/114821309/Bild_32___normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @chris_brockett: Carls source code for hadoop streaming and #FSharp mapreduce is here: http://t.co/T4AcG0K0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 06:39:07 +0000", "from_user": "meromelite", "from_user_id": 15690127, "from_user_id_str": "15690127", "from_user_name": "T. Sudou", "geo": null, "id": 147928795037433860, "id_str": "147928795037433857", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1602731505/DSC_4795_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1602731505/DSC_4795_normal.png", "source": "<a href="http://www.crowy.net/" rel="nofollow">Crowy</a>", "text": "@iakiyama Hadoop\\u57FA\\u5E79\\u30D0\\u30C3\\u30C1\\u306E\\u5B9F\\u52D9\\u62C5\\u5F53\\u8005\\u304C\\u558B\\u308B\\u3068\\u805E\\u3044\\u3066\\u884C\\u3063\\u3066\\u307F\\u305F\\u3089\\u3001MapReduce\\u306B\\u98DF\\u308F\\u305B\\u308B\\u524D\\u306E\\u30C7\\u30FC\\u30BF\\u306EETL\\u3092\\u3069\\u3046\\u3059\\u308B\\u304B\\u306B\\u3064\\u3044\\u3066\\u306E\\u8A71\\u3092\\u5EF6\\u3005\\u805E\\u304B\\u3055\\u308C\\u3066\\u6B7B\\u306C\\u304B\\u3068\\u601D\\u3063\\u305F\\u3053\\u3068\\u304C\\u3042\\u308A\\u307E\\u3059\\u3002\\u3067\\u3082\\u305D\\u308C\\u304C\\u5B9F\\u52D9\\u306E\\u73FE\\u5B9F\\u306A\\u3093\\u3067\\u3057\\u3087\\u3046\\u306D\\u3002", "to_user": "iakiyama", "to_user_id": 62665005, "to_user_id_str": "62665005", "to_user_name": "\\uFF8E\\uFF9F\\uFF9D\\uFF80\\u79CB\\u5C71\\u6CC9Izumi Akiyama", "in_reply_to_status_id": 147920064853712900, "in_reply_to_status_id_str": "147920064853712896"}, +{"created_at": "Sat, 17 Dec 2011 06:37:03 +0000", "from_user": "the_haigo", "from_user_id": 43882835, "from_user_id_str": "43882835", "from_user_name": "ShouTakafuji", "geo": null, "id": 147928271798018050, "id_str": "147928271798018050", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/249953482/843374_m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/249953482/843374_m_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Hadoop\\u306F\\u3000write once read\\u3000many\\u3000\\u307F\\u305F\\u3044\\u306A\\u306E\\u306B\\u9069\\u3057\\u3066\\u308B\\u3000\\u7279\\u306B\\u6574\\u7406\\u3057\\u3066\\u306A\\u3044\\u60C5\\u5831\\u3092\\u3069\\u3093\\u3069\\u3093\\u7A81\\u3063\\u8FBC\\u3093\\u3067\\u3000\\u5F8C\\u304B\\u3089\\u5FC5\\u8981\\u306A\\u306E\\u3092\\u53D6\\u308A\\u51FA\\u3059\\u3068\\u8A00\\u3063\\u305F\\u611F\\u3058\\u3000\\u8AB0\\u304B\\u3084\\u3089\\u306A\\u3044\\u304B\\u306A\\uFF1F\\u3000\\uFF08\\u30C1\\u30E9\\u30C1\\u30E9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 06:34:51 +0000", "from_user": "the_haigo", "from_user_id": 43882835, "from_user_id_str": "43882835", "from_user_name": "ShouTakafuji", "geo": null, "id": 147927721266257920, "id_str": "147927721266257920", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/249953482/843374_m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/249953482/843374_m_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "\\u3053\\u308CHadoop\\u3068\\u304B\\u3067\\u3084\\u308B\\u3068\\u9762\\u767D\\u3044\\u3093\\u3058\\u3083\\u306D\\uFF1F #LvsHvsEsemi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 06:24:56 +0000", "from_user": "StevenWeinberg", "from_user_id": 342000033, "from_user_id_str": "342000033", "from_user_name": "Steven Weinberg", "geo": null, "id": 147925226557149200, "id_str": "147925226557149184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1459709371/StevenWeinberg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1459709371/StevenWeinberg_normal.jpg", "source": "<a href="http://suhastech.com/tr" rel="nofollow">Tweet Random</a>", "text": "24 Interview Questions & Answers for Hadoop developers http://t.co/QiuZdAkW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 06:23:35 +0000", "from_user": "Mika_Koo", "from_user_id": 348365236, "from_user_id_str": "348365236", "from_user_name": "Mika K\\u00E4ck", "geo": null, "id": 147924883840577540, "id_str": "147924883840577536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1528504455/Kuva_otettu_4.9.2011_klo_21.16_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1528504455/Kuva_otettu_4.9.2011_klo_21.16_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @WindowsAzure: Microsoft Tries Hadoop on #Windows #Azure: gives Windows Azure Big Data capabilities http://t.co/hgQobdw2 #Cloud /via @Cloud_Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 06:20:36 +0000", "from_user": "ken121f", "from_user_id": 238123526, "from_user_id_str": "238123526", "from_user_name": "arif setiawan", "geo": null, "id": 147924134335225860, "id_str": "147924134335225856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1215428924/10843_176198593772_669158772_2903617_7802723_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1215428924/10843_176198593772_669158772_2903617_7802723_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Hadoop vs parallel dbms benchmark http://t.co/UHURH7sz. Cost and easy to setup is what makes hadoop attractive.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:58:41 +0000", "from_user": "msraurjp", "from_user_id": 130084480, "from_user_id_str": "130084480", "from_user_name": "Noboru Kuno", "geo": null, "id": 147918619655933950, "id_str": "147918619655933952", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1104059478/photo2__3__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1104059478/photo2__3__normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "Hadoop Streaming and F# MapReduce http://t.co/x17M7W6Z", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:46:02 +0000", "from_user": "kimukou_26", "from_user_id": 127385502, "from_user_id_str": "127385502", "from_user_name": "kimukou_26", "geo": null, "id": 147915432957984770, "id_str": "147915432957984769", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698307192/66.png_groovy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698307192/66.png_groovy_normal.png", "source": "<a href="http://www.tweenapp.org/" rel="nofollow">Tween</a>", "text": "(#SakuTeki ust at http://t.co/K5GXY3C9 )\\nhttp://t.co/xIPNNrDi P13 \\nHadoop\\u306E\\u8A71\\u3092\\u52C9\\u5F37\\u3059\\u308B\\u3088\\u308A\\u3001\\u3069\\u3046\\u30C7\\u30FC\\u30BF\\u3092\\u4F7F\\u3046\\u304B\\u3068\\u3044\\u3046\\u8A71\\u306F\\n\\u3084\\u306F\\u308A\\u7D71\\u8A08\\u5B66\\u3092\\u52C9\\u5F37\\u3057\\u306A\\u3044\\u3068\\u30C0\\u30E1 \\uFF1D\\uFF1EHadoop\\u306E\\u672C\\u3060\\u3051\\u3067\\u306A\\u304F\\u7D71\\u8A08\\u5B66\\u3082\\u52C9\\u5F37", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:45:51 +0000", "from_user": "amansk", "from_user_id": 7809372, "from_user_id_str": "7809372", "from_user_name": "Amandeep Khurana", "geo": null, "id": 147915388959735800, "id_str": "147915388959735808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1390756647/ak_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1390756647/ak_twitter_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "In Bangalore on Dec 20, 21. Ping me if you want to chat about #Hadoop, #BigData or even coffee or scotch!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:27:08 +0000", "from_user": "kimukou_26", "from_user_id": 127385502, "from_user_id_str": "127385502", "from_user_name": "kimukou_26", "geo": null, "id": 147910679423221760, "id_str": "147910679423221760", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698307192/66.png_groovy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698307192/66.png_groovy_normal.png", "source": "<a href="http://www.tweenapp.org/" rel="nofollow">Tween</a>", "text": "(#SakuTeki ust at http://t.co/K5GXY3C9 )\\nhttp://t.co/xIPNNrDi P5 \\nHadoop\\u306E\\u30C1\\u30E5\\u30FC\\u30CB\\u30F3\\u30B0\\uFF1D\\uFF1E\\u3053\\u308C\\u306F\\u96E3\\u3057\\u3044\\u3002\\n\\uFF1C\\uFF1D\\u3067\\u3082MySQL\\u306E\\u30C1\\u30E5\\u30FC\\u30CB\\u30F3\\u30B0\\u3068\\u304B\\u30A4\\u30F3\\u30D5\\u30E9\\u5468\\u308A\\u306E\\u8A2D\\u5B9A\\uFF08\\u30B3\\u30A2\\u306A\\u51E6\\uFF09\\u306F\\u96E3\\u3057\\u3044\\u306E\\u306F\\u5F53\\u7136\\u3067\\u3059\\u3088\\u306D\\uFF1F", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:25:57 +0000", "from_user": "KentaInLab", "from_user_id": 115071226, "from_user_id_str": "115071226", "from_user_name": "\\u77F3\\u539F\\u3000\\u5065\\u592A", "geo": null, "id": 147910382198071300, "id_str": "147910382198071296", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1196341865/KentaInLab_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1196341865/KentaInLab_normal.jpg", "source": "<a href="http://www.tweenapp.org/" rel="nofollow">Tween</a>", "text": "RT @kimukou_26: (#SakuTeki ust at http://t.co/K5GXY3C9 )\\nhttp://t.co/xIPNNrDi \\nP5 Hadoop\\u306F\\u96E3\\u3057\\u3044\\uFF1D\\uFF1E\\u305D\\u3093\\u306A\\u3053\\u3068\\u306F\\u306A\\u3044\\u3088 \\n\\uFF1C\\uFF0DHive\\u3084HiveQL\\uFF08\\u672C\\u5F53\\u306BMySQL\\u3068\\u5909\\u308F\\u3089\\u306A\\u3044\\u3088\\uFF5E", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:25:50 +0000", "from_user": "ejstembler", "from_user_id": 6163562, "from_user_id_str": "6163562", "from_user_name": "Edward J. Stembler", "geo": null, "id": 147910352611450880, "id_str": "147910352611450881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1550178728/ejs_icon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1550178728/ejs_icon_normal.png", "source": "<a href="http://news.ycombinator.com/" rel="nofollow">Hacker News Bot</a>", "text": "RT @hackernewsbot: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl... http://t.co/JGEaGFBn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:25:27 +0000", "from_user": "kimukou_26", "from_user_id": 127385502, "from_user_id_str": "127385502", "from_user_name": "kimukou_26", "geo": null, "id": 147910254682832900, "id_str": "147910254682832896", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698307192/66.png_groovy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698307192/66.png_groovy_normal.png", "source": "<a href="http://www.tweenapp.org/" rel="nofollow">Tween</a>", "text": "(#SakuTeki ust at http://t.co/K5GXY3C9 )\\nhttp://t.co/xIPNNrDi \\nP5 Hadoop\\u306F\\u96E3\\u3057\\u3044\\uFF1D\\uFF1E\\u305D\\u3093\\u306A\\u3053\\u3068\\u306F\\u306A\\u3044\\u3088 \\n\\uFF1C\\uFF0DHive\\u3084HiveQL\\uFF08\\u672C\\u5F53\\u306BMySQL\\u3068\\u5909\\u308F\\u3089\\u306A\\u3044\\u3088\\uFF5E", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:24:55 +0000", "from_user": "KentaInLab", "from_user_id": 115071226, "from_user_id_str": "115071226", "from_user_name": "\\u77F3\\u539F\\u3000\\u5065\\u592A", "geo": null, "id": 147910121710829570, "id_str": "147910121710829568", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1196341865/KentaInLab_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1196341865/KentaInLab_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "\\u8A71\\u984C\\u306EHadoop\\u3067\\u30D3\\u30C3\\u30AF\\u30C7\\u30FC\\u30BF\\u3092\\u3082\\u3061\\u3044\\u3066\\u304B\\u3063\\u3053\\u3044\\u3044\\u3053\\u3068\\u3092\\u3057\\u3066\\u308B\\u3042\\u3093\\u3061\\u3079\\u6C0F w #SakuTeki", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:24:01 +0000", "from_user": "kimukou_26", "from_user_id": 127385502, "from_user_id_str": "127385502", "from_user_name": "kimukou_26", "geo": null, "id": 147909894589255680, "id_str": "147909894589255681", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698307192/66.png_groovy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698307192/66.png_groovy_normal.png", "source": "<a href="http://www.tweenapp.org/" rel="nofollow">Tween</a>", "text": "(#SakuTeki ust at http://t.co/K5GXY3C9 )\\n\\u8A71\\u984C\\u306EHadoop\\u3092\\u4F7F\\u3063\\u3066\\uFF1D\\uFF1E\\u30D3\\u30C3\\u30AF\\u30C7\\u30FC\\u30BF\\u3092\\u4F7F\\u3063\\u3066\\u30C7\\u30FC\\u30BF\\u30DE\\u30A4\\u30CB\\u30F3\\u30B0\\uFF1D\\uFF1E\\u304B\\u3063\\u3053\\u3044\\u3044\\u4ED5\\u4E8B\\uFF01\\u6642\\u4EE3\\u306E\\u6700\\u5148\\u7AEF\\uFF01", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:21:55 +0000", "from_user": "alatani", "from_user_id": 15130994, "from_user_id_str": "15130994", "from_user_name": "alatani", "geo": null, "id": 147909364643151870, "id_str": "147909364643151872", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696309681/kokage_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696309681/kokage_normal.PNG", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@KatsukiYui \\u3044\\u3044\\u3048\\u3002\\u3044\\u307E\\u306E\\u30C8\\u30EC\\u30F3\\u30C9\\u306FHadoop\\u306B\\u3088\\u308B\\u5206\\u6563\\u4E26\\u5217\\u5316\\u3067\\u3059(\\uFF84\\uFF9E\\uFF94\\uFF6F", "to_user": "KatsukiYui", "to_user_id": 21756899, "to_user_id_str": "21756899", "to_user_name": "\\u83EF\\u6708\\u7531\\u6BD4 (-G-IRL-6)", "in_reply_to_status_id": 147908929114996740, "in_reply_to_status_id_str": "147908929114996736"}, +{"created_at": "Sat, 17 Dec 2011 05:20:53 +0000", "from_user": "ctdean", "from_user_id": 14950559, "from_user_id_str": "14950559", "from_user_name": "Chris Dean", "geo": null, "id": 147909105737142270, "id_str": "147909105737142272", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/66385933/2860397649_a4b5d16bb1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/66385933/2860397649_a4b5d16bb1_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @simon: Love it :) \"@mndoci: Zero to #Hadoop in 5 minutes: http://t.co/UPA7VyWX #aws #coolstuff\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:19:02 +0000", "from_user": "INFAIM", "from_user_id": 145062108, "from_user_id_str": "145062108", "from_user_name": "Julianna DeLua (EIM)", "geo": null, "id": 147908639217291260, "id_str": "147908639217291264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Check this out: http://t.co/zOomf3S4 Trying to turn #bigdata into Big Business Opps? @informaticacorp #hadoop #social #facebook", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:04:58 +0000", "from_user": "simon", "from_user_id": 9269, "from_user_id_str": "9269", "from_user_name": "Simone Brunozzi", "geo": null, "id": 147905100122308600, "id_str": "147905100122308608", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/62814875/simon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/62814875/simon_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Love it :) \"@mndoci: Zero to #Hadoop in 5 minutes: http://t.co/UPA7VyWX #aws #coolstuff\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:00:22 +0000", "from_user": "AzureCloudNet", "from_user_id": 92151837, "from_user_id_str": "92151837", "from_user_name": "Azure Cloud Network", "geo": null, "id": 147903943995957250, "id_str": "147903943995957249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1218573122/Windows_Asure_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218573122/Windows_Asure_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Azure #Cloud Microsoft Tries Hadoop on Azure | Cloud Computing Journal: Microsoft added a trial version of Apac... http://t.co/2GHywGPJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:53:36 +0000", "from_user": "rjurney", "from_user_id": 15831927, "from_user_id_str": "15831927", "from_user_name": "Russell Jurney", "geo": null, "id": 147902237937631230, "id_str": "147902237937631232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1468674812/bad_avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1468674812/bad_avatar_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@strlen @andrewwatson Voldemort is top hard to use with Hadoop. Mongo and HBase can be written to directly from Pig.", "to_user": "strlen", "to_user_id": 8959562, "to_user_id_str": "8959562", "to_user_name": "Alex Feinberg", "in_reply_to_status_id": 147901844272840700, "in_reply_to_status_id_str": "147901844272840704"}, +{"created_at": "Sat, 17 Dec 2011 04:53:28 +0000", "from_user": "biomap", "from_user_id": 158380504, "from_user_id_str": "158380504", "from_user_name": "Amandeep Sidhu", "geo": null, "id": 147902204504834050, "id_str": "147902204504834048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1649894835/pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649894835/pic_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @WindowsAzure: Microsoft Tries Hadoop on #Windows #Azure: gives Windows Azure Big Data capabilities http://t.co/hgQobdw2 #Cloud /via @Cloud_Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:52:02 +0000", "from_user": "strlen", "from_user_id": 8959562, "from_user_id_str": "8959562", "from_user_name": "Alex Feinberg", "geo": null, "id": 147901844272840700, "id_str": "147901844272840704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/234237160/books_belarus_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/234237160/books_belarus_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@rjurney @andrewwatson That said, I'm talking about primary data. For derived data (esp coming from Hadoop) use I'd use Voldemort right away", "to_user": "rjurney", "to_user_id": 15831927, "to_user_id_str": "15831927", "to_user_name": "Russell Jurney", "in_reply_to_status_id": 147901283662168060, "in_reply_to_status_id_str": "147901283662168065"}, +{"created_at": "Sat, 17 Dec 2011 04:48:47 +0000", "from_user": "INFAIM", "from_user_id": 145062108, "from_user_id_str": "145062108", "from_user_name": "Julianna DeLua (EIM)", "geo": null, "id": 147901029118251000, "id_str": "147901029118251008", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Informatica_URG: Replays Now Available for #InformaticaCorp \\u201CHadoop Tuesdays\\u201D 7-Part Series http://t.co/KUKoqvuy #BigData #Hadoop #IURG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:48:39 +0000", "from_user": "INFAIM", "from_user_id": 145062108, "from_user_id_str": "145062108", "from_user_name": "Julianna DeLua (EIM)", "geo": null, "id": 147900995568017400, "id_str": "147900995568017408", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Informatica_URG: Replays Now Available for #InformaticaCorp \\u201CHadoop Tuesdays\\u201D 7-Part Series http://t.co/KUKoqvuy #BigData #Hadoop @forrester @ventanaresearch", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:48:37 +0000", "from_user": "INFAIM", "from_user_id": 145062108, "from_user_id_str": "145062108", "from_user_name": "Julianna DeLua (EIM)", "geo": null, "id": 147900984797052930, "id_str": "147900984797052928", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Informatica_URG: Replays Now Available for #InformaticaCorp \\u201CHadoop Tuesdays\\u201D 7-Part Series http://t.co/KUKoqvuy #BigData #Hadoop @Accenture @451Research", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:48:32 +0000", "from_user": "INFAIM", "from_user_id": 145062108, "from_user_id_str": "145062108", "from_user_name": "Julianna DeLua (EIM)", "geo": null, "id": 147900966178533380, "id_str": "147900966178533376", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Informatica_URG: Replays Now Available for #InformaticaCorp \\u201CHadoop Tuesdays\\u201D 7-Part Series http://t.co/KUKoqvuy #BigData #Hadoop @cloudera @BigDataInt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:39:22 +0000", "from_user": "dbaishya", "from_user_id": 11195222, "from_user_id_str": "11195222", "from_user_name": "Dhruba Baishya", "geo": null, "id": 147898659370049540, "id_str": "147898659370049537", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1592018100/dbaishya_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592018100/dbaishya_normal.jpeg", "source": "<a href="http://www.alphonsolabs.com/" rel="nofollow">Pulse News</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl (74 points) http://t.co/7tNRDnZO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:24:55 +0000", "from_user": "StephenHawking9", "from_user_id": 341975857, "from_user_id_str": "341975857", "from_user_name": "Stephen Hawking", "geo": null, "id": 147895019636916220, "id_str": "147895019636916224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1459648557/StephanHawking_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1459648557/StephanHawking_normal.jpg", "source": "<a href="http://suhastech.com/tr" rel="nofollow">Tweet Random</a>", "text": "24 Interview Questions & Answers for Hadoop developers http://t.co/QOsinPTo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:21:48 +0000", "from_user": "tw_top_1zrvr5s", "from_user_id": 336197975, "from_user_id_str": "336197975", "from_user_name": "Top Tech", "geo": null, "id": 147894237789306880, "id_str": "147894237789306880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/5qbbPrE2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:21:15 +0000", "from_user": "nawabiqbal", "from_user_id": 290747670, "from_user_id_str": "290747670", "from_user_name": "Nawab Asad Iqbal", "geo": null, "id": 147894097967972350, "id_str": "147894097967972352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664306369/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664306369/twitter_normal.jpg", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/5qbbPrE2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:20:27 +0000", "from_user": "haricm", "from_user_id": 31181347, "from_user_id_str": "31181347", "from_user_name": "\\u0D39\\u0D30\\u0D3F ", "geo": null, "id": 147893897564135420, "id_str": "147893897564135425", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/691292304/final_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/691292304/final_bigger_normal.jpg", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/5qbbPrE2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:20:13 +0000", "from_user": "followbotlist", "from_user_id": 420104059, "from_user_id_str": "420104059", "from_user_name": "\\u3076\\u308D\\u3063\\u304F\\u308A\\u3059\\u3068", "geo": null, "id": 147893836444745730, "id_str": "147893836444745728", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twittbot.net/" rel="nofollow">twittbot.net</a>", "text": "C\\u8A00\\u8A9E/C++/C#/F#/PHP/Perl/Ruby/Python/Lisp/Prolog/ML/Haskell/HTML5/VB/Basic/\\u30A6\\u30A7\\u30D6\\u30C7\\u30B6\\u30A4\\u30F3/\\u30EC\\u30F3\\u30BF\\u30EB\\u30B5\\u30FC\\u30D0/CGI/\\u30BB\\u30AD\\u30E5\\u30EA\\u30C6\\u30A3/FLASH/Web/\\u30BD\\u30FC\\u30B7\\u30E3\\u30EB/SNS/\\u30B0\\u30EB\\u30FC\\u30D7\\u30A6\\u30A7\\u30A2/Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:15:29 +0000", "from_user": "MurthySudarshan", "from_user_id": 136985806, "from_user_id_str": "136985806", "from_user_name": "Sudarshan Murthy", "geo": null, "id": 147892646428413950, "id_str": "147892646428413952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/851419253/smurthy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/851419253/smurthy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Very useful post. Included video is a bit rushed MT @commoncrawl 0 to Hadoop in 5 mins w/ Common Crawl by @stevesalevan http://t.co/gZoiVAL9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:01:58 +0000", "from_user": "Informatica_URG", "from_user_id": 126268033, "from_user_id_str": "126268033", "from_user_name": "Informatica Resource", "geo": null, "id": 147889247142154240, "id_str": "147889247142154240", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702338869/Informatica_logo_300x300RGB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702338869/Informatica_logo_300x300RGB_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Replays Now Available for #InformaticaCorp \\u201CHadoop Tuesdays\\u201D 7-Part Series http://t.co/KUKoqvuy #BigData #Hadoop @cloudera @BigDataInt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:00:18 +0000", "from_user": "Informatica_URG", "from_user_id": 126268033, "from_user_id_str": "126268033", "from_user_name": "Informatica Resource", "geo": null, "id": 147888827787247600, "id_str": "147888827787247616", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702338869/Informatica_logo_300x300RGB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702338869/Informatica_logo_300x300RGB_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Replays Now Available for #InformaticaCorp \\u201CHadoop Tuesdays\\u201D 7-Part Series http://t.co/KUKoqvuy #BigData #Hadoop @Accenture @451Research", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:58:49 +0000", "from_user": "AzureCloudNet", "from_user_id": 92151837, "from_user_id_str": "92151837", "from_user_name": "Azure Cloud Network", "geo": null, "id": 147888454582276100, "id_str": "147888454582276096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1218573122/Windows_Asure_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218573122/Windows_Asure_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Azure #Cloud Microsoft Tries Hadoop on Azure | Cloud Computing Journal: Microsoft added a trial version of Apac... http://t.co/2zEo2tJC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:58:23 +0000", "from_user": "Informatica_URG", "from_user_id": 126268033, "from_user_id_str": "126268033", "from_user_name": "Informatica Resource", "geo": null, "id": 147888344616026100, "id_str": "147888344616026112", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702338869/Informatica_logo_300x300RGB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702338869/Informatica_logo_300x300RGB_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Replays Now Available for #InformaticaCorp \\u201CHadoop Tuesdays\\u201D 7-Part Series http://t.co/KUKoqvuy #BigData #Hadoop @forrester @ventanaresearch", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:55:54 +0000", "from_user": "Informatica_URG", "from_user_id": 126268033, "from_user_id_str": "126268033", "from_user_name": "Informatica Resource", "geo": null, "id": 147887719014608900, "id_str": "147887719014608896", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702338869/Informatica_logo_300x300RGB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702338869/Informatica_logo_300x300RGB_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Replays Now Available for #InformaticaCorp \\u201CHadoop Tuesdays\\u201D 7-Part Series http://t.co/KUKoqvuy #BigData #Hadoop #IURG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:52:01 +0000", "from_user": "josephmisiti", "from_user_id": 58631564, "from_user_id_str": "58631564", "from_user_name": "joseph misiti", "geo": null, "id": 147886740953235460, "id_str": "147886740953235456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1473473302/Screen_shot_2011-08-01_at_9.19.42_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1473473302/Screen_shot_2011-08-01_at_9.19.42_PM_normal.png", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @peteskomoroch: How to quickly process 40TB of data from Common Crawl using Hadoop & Amazon EC2 http://t.co/yum3VZyF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:51:12 +0000", "from_user": "kavasavada", "from_user_id": 32781950, "from_user_id_str": "32781950", "from_user_name": "Krutarth Vasavada", "geo": null, "id": 147886536422211600, "id_str": "147886536422211584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1621821134/IMG00222-20111104-1453_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621821134/IMG00222-20111104-1453_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT \"@newsycombinator: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/rQRPfqOQ\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:48:51 +0000", "from_user": "muteokie", "from_user_id": 175734409, "from_user_id_str": "175734409", "from_user_name": "Okie Emuoyibo", "geo": null, "id": 147885944387801100, "id_str": "147885944387801089", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://www.news.me" rel="nofollow">news.me</a>", "text": "How to quickly process 40TB of data from Common Crawl using Hadoop & Amazon EC2 http://t.co/dUONi52e via @peteskomoroch", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:48:42 +0000", "from_user": "amnigos", "from_user_id": 15596661, "from_user_id_str": "15596661", "from_user_name": "Vijay Rayapati", "geo": null, "id": 147885908677492740, "id_str": "147885908677492736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1335449264/220791_10150161521533510_518353509_6698152_7618770_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335449264/220791_10150161521533510_518353509_6698152_7618770_o_normal.jpg", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/5qbbPrE2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Sat, 17 Dec 2011 03:48:42 +0000", "from_user": "amnigos", "from_user_id": 15596661, "from_user_id_str": "15596661", "from_user_name": "Vijay Rayapati", "geo": null, "id": 147885908677492740, "id_str": "147885908677492736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1335449264/220791_10150161521533510_518353509_6698152_7618770_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335449264/220791_10150161521533510_518353509_6698152_7618770_o_normal.jpg", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/5qbbPrE2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:46:41 +0000", "from_user": "n_nkmr", "from_user_id": 15870152, "from_user_id_str": "15870152", "from_user_name": "n_nkmr", "geo": null, "id": 147885399027621900, "id_str": "147885399027621889", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/768024881/twitter_N-02_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/768024881/twitter_N-02_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u9023\\u8F09\\uFF1AAmazon Elastic MapReduce\\u306E\\u4F7F\\u3044\\u65B9\\u2500Hadoop\\u3088\\u308A\\u624B\\u8EFD\\u306B\\u306F\\u3058\\u3081\\u308B\\u5927\\u898F\\u6A21\\u8A08\\u7B97\\uFF5Cgihyo.jp \\u2026 \\u6280\\u8853\\u8A55\\u8AD6\\u793E - http://t.co/UscJKVgL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:42:01 +0000", "from_user": "michaelcoyote", "from_user_id": 16167428, "from_user_id_str": "16167428", "from_user_name": "michaelcoyote", "geo": null, "id": 147884227080359940, "id_str": "147884227080359936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/421284334/1226463797165_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/421284334/1226463797165_normal.jpg", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "RT @techmilind: New record: 186 Gbps between data centers! Mirror 20PB hadoop cluster in only 20 days. http://t.co/hzJZ014p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:35:39 +0000", "from_user": "CQ_Liu", "from_user_id": 189514007, "from_user_id_str": "189514007", "from_user_name": "Winston Liu", "geo": null, "id": 147882623799279600, "id_str": "147882623799279617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1163984472/MyTwitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1163984472/MyTwitter_normal.jpg", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/5qbbPrE2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:34:35 +0000", "from_user": "rhm2k", "from_user_id": 14065215, "from_user_id_str": "14065215", "from_user_name": "Rich Miller", "geo": null, "id": 147882355258966000, "id_str": "147882355258966016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1178804758/Headshot4b_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1178804758/Headshot4b_normal.jpg", "source": "<a href="http://www.feedly.com" rel="nofollow">feedly</a>", "text": "Cloudera Manager 3.7 released http://t.co/UfJYeINs < More steps toward making Hadoop enterprise grade.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:32:26 +0000", "from_user": "okachimachiorz1", "from_user_id": 170457076, "from_user_id_str": "170457076", "from_user_name": "\\u30B8\\u30A7\\u30A4\\u30E0\\u30BA\\u30FB\\u5FA1\\u5F92\\u753A\\u30FB\\u30D6\\u30C3\\u30AB\\u30FC", "geo": null, "id": 147881812960620540, "id_str": "147881812960620545", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1087454555/twitterProfilePhoto_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1087454555/twitterProfilePhoto_bigger_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @cocoatomo: \\u8272\\u3005\\u3042\\u305F\\u3075\\u305F\\u3057\\u306A\\u304C\\u3089\\u66F8\\u3044\\u305F. > \\u6700\\u3082\\u901F\\u304F Hadoop \\u74B0\\u5883\\u3092\\u624B\\u306B\\u5165\\u308C\\u308B\\u65B9\\u6CD5 - Elliptium http://t.co/QlM9Ymmy via @cocoatomo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:29:27 +0000", "from_user": "markswall", "from_user_id": 19688728, "from_user_id_str": "19688728", "from_user_name": "Mark Wall", "geo": null, "id": 147881061974683650, "id_str": "147881061974683648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676652683/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676652683/Untitled_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with ... http://t.co/Ir5j2jLg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:27:14 +0000", "from_user": "hideaki_t", "from_user_id": 9645112, "from_user_id_str": "9645112", "from_user_name": "Hideaki Takahashi", "geo": null, "id": 147880506183262200, "id_str": "147880506183262209", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1152578320/dp_ts_march03_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1152578320/dp_ts_march03_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nsharp_2ch: \\u3055\\u3063\\u305D\\u304F\\u3053\\u3046\\u3044\\u3046\\u30B5\\u30F3\\u30D7\\u30EB\\u304C\\u51FA\\u3066\\u304D\\u305F\\u304B\\u3002\\uFF08\\uFF1B\\uFF3E\\u03C9\\uFF3E\\uFF09\\nHadoop Streaming and F# MapReduce\\nhttp://t.co/MgKsrqiH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:26:50 +0000", "from_user": "stackfeed", "from_user_id": 237310237, "from_user_id_str": "237310237", "from_user_name": "StackOverflow", "geo": null, "id": 147880403234070530, "id_str": "147880403234070528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Type mismatch in key from map: expected .. Text, received ... LongWritable: I have a simple hadoop application, ... http://t.co/TCghZkI1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:25:18 +0000", "from_user": "alsargent", "from_user_id": 6623882, "from_user_id_str": "6623882", "from_user_name": "Al Sargent", "geo": null, "id": 147880016338878460, "id_str": "147880016338878466", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1110017170/al.sargent.2010.smiling.head.twitter.resolution_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1110017170/al.sargent.2010.smiling.head.twitter.resolution_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "RT @mjasay: LexisNexis open sources Hadoop challenger, says it's 4X faster http://t.co/FKDmhOIR <Maybe true, but Hadoop's strength is its community", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:23:14 +0000", "from_user": "yuya_takeyama", "from_user_id": 86672236, "from_user_id_str": "86672236", "from_user_name": "Yuya Takeyama", "geo": null, "id": 147879497788698620, "id_str": "147879497788698624", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1462152687/B000ELJAI8.01._SCLZZZZZZZ_V56939722__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1462152687/B000ELJAI8.01._SCLZZZZZZZ_V56939722__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nsharp_2ch: \\u3055\\u3063\\u305D\\u304F\\u3053\\u3046\\u3044\\u3046\\u30B5\\u30F3\\u30D7\\u30EB\\u304C\\u51FA\\u3066\\u304D\\u305F\\u304B\\u3002\\uFF08\\uFF1B\\uFF3E\\u03C9\\uFF3E\\uFF09\\nHadoop Streaming and F# MapReduce\\nhttp://t.co/MgKsrqiH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:21:48 +0000", "from_user": "nsharp_2ch", "from_user_id": 86472223, "from_user_id_str": "86472223", "from_user_name": "nsharp", "geo": null, "id": 147879139368640500, "id_str": "147879139368640512", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1482188154/icon3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1482188154/icon3_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u3055\\u3063\\u305D\\u304F\\u3053\\u3046\\u3044\\u3046\\u30B5\\u30F3\\u30D7\\u30EB\\u304C\\u51FA\\u3066\\u304D\\u305F\\u304B\\u3002\\uFF08\\uFF1B\\uFF3E\\u03C9\\uFF3E\\uFF09\\nHadoop Streaming and F# MapReduce\\nhttp://t.co/MgKsrqiH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:19:37 +0000", "from_user": "apinkin", "from_user_id": 29578597, "from_user_id_str": "29578597", "from_user_name": "Alex Pinkin", "geo": null, "id": 147878588228714500, "id_str": "147878588228714496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1630730056/apinkin_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630730056/apinkin_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @peteskomoroch: How to quickly process 40TB of data from Common Crawl using Hadoop & Amazon EC2 http://t.co/yum3VZyF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:16:01 +0000", "from_user": "d8Pit", "from_user_id": 264394701, "from_user_id_str": "264394701", "from_user_name": "The URL Popularizer", "geo": null, "id": 147877683970314240, "id_str": "147877683970314240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317284522/logo-header_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317284522/logo-header_normal.png", "source": "<a href="http://d8p.it" rel="nofollow">d8P</a>", "text": "RT @ialjkk: Cloudera upgrades Hadoop management tools, offers free version for startups #bigdata | http://t.co/a8jHlwZo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:00:24 +0000", "from_user": "MeetUpX", "from_user_id": 230423507, "from_user_id_str": "230423507", "from_user_name": "MeetUp eXtenders", "geo": null, "id": 147873752577875970, "id_str": "147873752577875968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1576027835/meetupx_sq_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576027835/meetupx_sq_normal.png", "source": "<a href="http://bostonpreneur.com/meetupx" rel="nofollow">MeetupXApp</a>", "text": "@cindywilliam you posted a tweet 'Attend a Meetup Surrounding the Hadoop World Conf..', wanna know who else did? visit http://t.co/FUg3u3ap", "to_user": "CindyWilliam", "to_user_id": 102209632, "to_user_id_str": "102209632", "to_user_name": "cindy william"}, +{"created_at": "Sat, 17 Dec 2011 02:58:46 +0000", "from_user": "nicolastorzec", "from_user_id": 61111487, "from_user_id_str": "61111487", "from_user_name": "Nicolas Torzec", "geo": null, "id": 147873339870941200, "id_str": "147873339870941185", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1525441753/Photo_on_2011-09-02_at_11.47__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1525441753/Photo_on_2011-09-02_at_11.47__2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Status: processing #Wikipedia EN for extracting Movie and TV related images... #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:57:29 +0000", "from_user": "marcosluis2186", "from_user_id": 71701378, "from_user_id_str": "71701378", "from_user_name": "Marcos Ortiz ", "geo": null, "id": 147873017953914880, "id_str": "147873017953914880", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1215605067/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1215605067/avatar_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", "text": "RT @HPC_Guru: Zero to #Hadoop in 5 minutes: http://t.co/ejQ8pEmj #aws #BigData via @mndoci", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:55:59 +0000", "from_user": "HPC_Guru", "from_user_id": 23293367, "from_user_id_str": "23293367", "from_user_name": "HPC Guru", "geo": null, "id": 147872639581552640, "id_str": "147872639581552641", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/121065329/IMG_0043_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/121065329/IMG_0043_normal.PNG", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", "text": "Zero to #Hadoop in 5 minutes: http://t.co/ejQ8pEmj #aws #BigData via @mndoci", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:50:05 +0000", "from_user": "ClearedJobsNet", "from_user_id": 18635626, "from_user_id_str": "18635626", "from_user_name": "ClearedJobsNet", "geo": null, "id": 147871156546977800, "id_str": "147871156546977793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1119145552/Profile2010_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1119145552/Profile2010_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Building a Business on Open Source - Hadoop, Hbase http://t.co/7NXTZi1F via @lusciouspear #pig #memcached #hadoop #opensources", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:49:19 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 147870961327288320, "id_str": "147870961327288320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Azure price cuts, bigger databases, now with node.js and MongoDB support ... http://t.co/7p7mo7xq #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:49:18 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 147870960190636030, "id_str": "147870960190636032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloudera upgrades Hadoop management tools, offers free version for startups http://t.co/1RYS7rDH #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:48:34 +0000", "from_user": "AdrianaRobbins", "from_user_id": 235381886, "from_user_id_str": "235381886", "from_user_name": "adriana robbins", "geo": null, "id": 147870772835262460, "id_str": "147870772835262464", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1209711999/adriana_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1209711999/adriana_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "LATEST: When HANA meets Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:46:01 +0000", "from_user": "d8Pit", "from_user_id": 264394701, "from_user_id_str": "264394701", "from_user_name": "The URL Popularizer", "geo": null, "id": 147870134231498750, "id_str": "147870134231498752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317284522/logo-header_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317284522/logo-header_normal.png", "source": "<a href="http://d8p.it" rel="nofollow">d8P</a>", "text": "RT @ialjkk: Microsoft Fully Committed to Hadoop Thanks to Hortonworks ... #bigdata | http://t.co/ZyIl5zgm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:45:50 +0000", "from_user": "satolone", "from_user_id": 398507580, "from_user_id_str": "398507580", "from_user_name": "Scott Tolone", "geo": null, "id": 147870086210924540, "id_str": "147870086210924544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1683949662/GlobalBigData_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683949662/GlobalBigData_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Novel solution to making Hadoop namenode highly available: MySQL cluster. http://t.co/hMCHZzTz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:45:02 +0000", "from_user": "dbmoore", "from_user_id": 5025521, "from_user_id_str": "5025521", "from_user_name": "Dennis Moore", "geo": null, "id": 147869886369116160, "id_str": "147869886369116160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/55245814/Dennis_Moore_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/55245814/Dennis_Moore_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#EnSW #Microsoft Azure price cuts, bigger databases, now with #OpenSource node.js and MongoDB support, #Hadoop on... http://t.co/B6AkM8jD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:38:02 +0000", "from_user": "johnmoehrke", "from_user_id": 15170018, "from_user_id_str": "15170018", "from_user_name": "johnmoehrke", "geo": null, "id": 147868122521665540, "id_str": "147868122521665536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1181050098/Snapshot_of_me_2_small_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1181050098/Snapshot_of_me_2_small_normal.png", "source": "<a href="http://news.ycombinator.com/" rel="nofollow">Hacker News Bot</a>", "text": "RT @hackernewsbot: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl... http://t.co/JGEaGFBn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:36:21 +0000", "from_user": "abhishektiwari", "from_user_id": 19114465, "from_user_id_str": "19114465", "from_user_name": "Abhishek Tiwari", "geo": null, "id": 147867699203153920, "id_str": "147867699203153920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1640032026/Twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640032026/Twitter_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @techmilind: @mahadevkonar now that multilingual protocol support for MR is available in #Hadoop, what's preventing native node-level services?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:34:25 +0000", "from_user": "patrickclee0207", "from_user_id": 113093915, "from_user_id_str": "113093915", "from_user_name": "Patrick Lee", "geo": null, "id": 147867214224162800, "id_str": "147867214224162817", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1164401647/twitterProfile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1164401647/twitterProfile_normal.jpg", "source": "<a href="http://news.ycombinator.com/" rel="nofollow">Hacker News Bot</a>", "text": "RT @hackernewsbot: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl... http://t.co/JGEaGFBn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:33:39 +0000", "from_user": "Dalice", "from_user_id": 5708502, "from_user_id_str": "5708502", "from_user_name": "\\u3060\\u308A\\u3059", "geo": null, "id": 147867018538917900, "id_str": "147867018538917888", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697858306/out-dalice-icon-null_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697858306/out-dalice-icon-null_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "\\u898B\\u3066\\u308B\\uFF1A\\u6700\\u3082\\u901F\\u304F Hadoop \\u74B0\\u5883\\u3092\\u624B\\u306B\\u5165\\u308C\\u308B\\u65B9\\u6CD5 - Elliptium http://t.co/XS9No5nP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:24:48 +0000", "from_user": "dentomo", "from_user_id": 71979620, "from_user_id_str": "71979620", "from_user_name": "\\u50B3\\u667A\\u4E4B", "geo": null, "id": 147864792709861380, "id_str": "147864792709861376", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @cocoatomo: \\u8272\\u3005\\u3042\\u305F\\u3075\\u305F\\u3057\\u306A\\u304C\\u3089\\u66F8\\u3044\\u305F. > \\u6700\\u3082\\u901F\\u304F Hadoop \\u74B0\\u5883\\u3092\\u624B\\u306B\\u5165\\u308C\\u308B\\u65B9\\u6CD5 - Elliptium http://t.co/QlM9Ymmy via @cocoatomo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:20:37 +0000", "from_user": "sfahad", "from_user_id": 42889631, "from_user_id_str": "42889631", "from_user_name": "Fahad Shah", "geo": null, "id": 147863738882605060, "id_str": "147863738882605056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/261897199/mypic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/261897199/mypic_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @WindowsAzure: Microsoft Tries Hadoop on #Windows #Azure: gives Windows Azure Big Data capabilities http://t.co/hgQobdw2 #Cloud /via @Cloud_Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:19:24 +0000", "from_user": "Informatica_URG", "from_user_id": 126268033, "from_user_id_str": "126268033", "from_user_name": "Informatica Resource", "geo": null, "id": 147863435332419600, "id_str": "147863435332419584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702338869/Informatica_logo_300x300RGB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702338869/Informatica_logo_300x300RGB_normal.jpg", "source": "<a href="http://futuretweets.com" rel="nofollow"> Futuretweets V2</a>", "text": "RT @INFAIM: Most popular On-demand Webinar 2011 @ralphkimball http://t.co/FjsjlgSC Make data warehouse adaptable for #bigdata #hadoop @informaticacorp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:18:42 +0000", "from_user": "tingletech", "from_user_id": 86486316, "from_user_id_str": "86486316", "from_user_name": "Brian Tingle", "geo": null, "id": 147863257355522050, "id_str": "147863257355522049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/703026457/n100000284269054_1783_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/703026457/n100000284269054_1783_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl | CommonCrawl - \\u201CCommon Crawl... http://t.co/b6ac9m52", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:18:10 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 147863122357665800, "id_str": "147863122357665792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft Fully Committed to Hadoop Thanks to Hortonworks ... http://t.co/J7XVP3hB #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:16:01 +0000", "from_user": "d8Pit", "from_user_id": 264394701, "from_user_id_str": "264394701", "from_user_name": "The URL Popularizer", "geo": null, "id": 147862580982067200, "id_str": "147862580982067202", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317284522/logo-header_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317284522/logo-header_normal.png", "source": "<a href="http://d8p.it" rel="nofollow">d8P</a>", "text": "RT @TheBigDataTrap: NoSQL Job of the Day: Hadoop Solution Architect #bigdata | http://t.co/6I30PoAP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:07:34 +0000", "from_user": "getwired", "from_user_id": 14960835, "from_user_id_str": "14960835", "from_user_name": "Wes Miller", "geo": null, "id": 147860456009248770, "id_str": "147860456009248768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702541807/photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702541807/photo_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @dennylee: \\u201C@Technitrain: Bringing It All Together In The Cloud and #Excel http://t.co/EWNaSsVv\\u201D #BigData #Hadoop #Azure #hadooponazure", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:06:57 +0000", "from_user": "CareerSculptors", "from_user_id": 368299625, "from_user_id_str": "368299625", "from_user_name": "CareerSculptors ", "geo": null, "id": 147860300069220350, "id_str": "147860300069220352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1561907486/cs2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1561907486/cs2_normal.png", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Now Hiring: Hadoop / Mapreduce Developer in California http://t.co/utZPzpR8 #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:02:55 +0000", "from_user": "smithatlanta", "from_user_id": 14599342, "from_user_id_str": "14599342", "from_user_name": "Michael Smith \\u269B", "geo": null, "id": 147859285047648260, "id_str": "147859285047648256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1563331358/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1563331358/image_normal.jpg", "source": "<a href="http://www.instapaper.com/" rel="nofollow">Instapaper</a>", "text": "Hadoop for Managers - Blogs at Near Infinity http://t.co/vniJFuZp (via Instapaper) - I like the coke plant comparison in this article.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:02:03 +0000", "from_user": "TheBigDataTrap", "from_user_id": 389163301, "from_user_id_str": "389163301", "from_user_name": "The Big Data Trap", "geo": null, "id": 147859066394394620, "id_str": "147859066394394625", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1584049409/twitter_prof_-big-data_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584049409/twitter_prof_-big-data_normal.jpg", "source": "<a href="http://trap.it" rel="nofollow">Trapit</a>", "text": "NoSQL Job of the Day: Hadoop Solution Architect http://t.co/sAkRRMIi #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:01:04 +0000", "from_user": "vscarpenter", "from_user_id": 59223, "from_user_id_str": "59223", "from_user_name": "Vinny Carpenter", "geo": null, "id": 147858822025846800, "id_str": "147858822025846784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/48540942/vinny-thumbnail-rounded_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/48540942/vinny-thumbnail-rounded_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl | CommonCrawl http://t.co/pUkDaieU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:59:34 +0000", "from_user": "BuildaCloud", "from_user_id": 388756611, "from_user_id_str": "388756611", "from_user_name": "BuildaCloud", "geo": null, "id": 147858442806231040, "id_str": "147858442806231040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1611146315/Fotolia_17583250_S_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611146315/Fotolia_17583250_S_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Top Wiki Ninjas of the Week - Wesley McSwain brings us Apache #Hadoop and\\u2026 http://t.co/EDUzF5l1 #virtualization", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:57:41 +0000", "from_user": "vkovalskiy", "from_user_id": 203103340, "from_user_id_str": "203103340", "from_user_name": "Vladimir Kovalskiy", "geo": null, "id": 147857969932017660, "id_str": "147857969932017664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1662226907/jetro_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662226907/jetro_normal.png", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/5qbbPrE2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:53:03 +0000", "from_user": "jcleblanc", "from_user_id": 15392140, "from_user_id_str": "15392140", "from_user_name": "Jonathan LeBlanc", "geo": null, "id": 147856801260507140, "id_str": "147856801260507136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/281463265/3490041159_59b53be507_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/281463265/3490041159_59b53be507_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/SflDWYcF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:47:13 +0000", "from_user": "dennylee", "from_user_id": 14610285, "from_user_id_str": "14610285", "from_user_name": "dennylee", "geo": null, "id": 147855333862281200, "id_str": "147855333862281216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/996687129/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/996687129/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "\\u201C@Technitrain: Bringing It All Together In The Cloud and #Excel http://t.co/EWNaSsVv\\u201D #BigData #Hadoop #Azure #hadooponazure", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:46:14 +0000", "from_user": "sameer_", "from_user_id": 23851532, "from_user_id_str": "23851532", "from_user_name": "Sameer Singh", "geo": null, "id": 147855086129922050, "id_str": "147855086129922048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/93368785/DSCN0137_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/93368785/DSCN0137_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @josephreisinger: Glimmers of a _real_ machine learning system for Hadoop via vw allreduce http://t.co/4Pskbuwd \\n#NIPS2011 big learning http://t.co/zT7X3rJi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:42:02 +0000", "from_user": "hackernewsbot", "from_user_id": 19575586, "from_user_id_str": "19575586", "from_user_name": "Hacker News Bot", "geo": null, "id": 147854031904186370, "id_str": "147854031904186369", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/73596050/yc500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/73596050/yc500_normal.jpg", "source": "<a href="http://news.ycombinator.com/" rel="nofollow">Hacker News Bot</a>", "text": "MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl... http://t.co/JGEaGFBn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:39:28 +0000", "from_user": "kevinlawler", "from_user_id": 14212833, "from_user_id_str": "14212833", "from_user_name": "Kevin Lawler", "geo": null, "id": 147853385297707000, "id_str": "147853385297707008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1523163957/2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1523163957/2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Though at 2s round-trip it's safe to bill it as a working Hadoop console", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:38:40 +0000", "from_user": "maropu", "from_user_id": 15774392, "from_user_id_str": "15774392", "from_user_name": "Takeshi Yamamuro", "geo": null, "id": 147853182444376060, "id_str": "147853182444376064", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1501984017/183851_137441423007770_100002257383170_255010_5398365_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1501984017/183851_137441423007770_100002257383170_255010_5398365_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @greenplummy: \\u300CC/C++ libhdfs\\u306E\\u5B9F\\u88C5\\u306B\\u3088\\u308AJava\\u4EEE\\u60F3\\u30DE\\u30B7\\u30F3\\u3092\\u56DE\\u907F\\u3057\\u3066\\u30D5\\u30A1\\u30A4\\u30EB\\u30B7\\u30B9\\u30C6\\u30E0\\u306B\\u30A2\\u30AF\\u30BB\\u30B9\\u300D\\u300CMapReduce 2.0\\u5BFE\\u5FDC\\u300D\\u7C73MapR\\u3001MapReduce 2.0\\u306B\\u5BFE\\u5FDC\\u3057\\u305FApache Hadoop\\u30C7\\u30A3\\u30B9\\u30C8\\u30ED\\u300CMapR 1.2\\u300D\\u3092\\u767A\\u8868http://t.co/bj8XpBC7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:38:32 +0000", "from_user": "boguta", "from_user_id": 28210273, "from_user_id_str": "28210273", "from_user_name": "John Boguta", "geo": null, "id": 147853148294352900, "id_str": "147853148294352896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/256398194/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/256398194/me_normal.jpg", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/5qbbPrE2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:37:51 +0000", "from_user": "kevinlawler", "from_user_id": 14212833, "from_user_id_str": "14212833", "from_user_name": "Kevin Lawler", "geo": null, "id": 147852975614869500, "id_str": "147852975614869504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1523163957/2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1523163957/2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "The promise of \"real-time Hadoop\" seems like wishful thinking. 200ms specially optimized queries are too slow.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:37:36 +0000", "from_user": "saoirsegirl", "from_user_id": 120908478, "from_user_id_str": "120908478", "from_user_name": "Paula Despins", "geo": null, "id": 147852913790828540, "id_str": "147852913790828544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1674268598/PICT0014_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674268598/PICT0014_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @spyced: Northwestern launches MS in analytics, covering #hadoop and #cassandra http://t.co/7ZBITVxI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:29:23 +0000", "from_user": "bobgourley", "from_user_id": 14554287, "from_user_id_str": "14554287", "from_user_name": "Bob Gourley", "geo": null, "id": 147850847878004740, "id_str": "147850847878004737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/55466197/bobpng_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/55466197/bobpng_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Crypt0s: Ruby streaming and Cloudera Distribution for #Hadoop are like peanut butter and jelly. Easy, quick, efficient, gets the job done, no stress.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:28:38 +0000", "from_user": "dguyadeen", "from_user_id": 22665665, "from_user_id_str": "22665665", "from_user_name": "Denis Guyadeen", "geo": null, "id": 147850660149342200, "id_str": "147850660149342208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1627510905/imprimes_71f7864038_big_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627510905/imprimes_71f7864038_big_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @cloudera: Video & slides available for the webinar \"Hadoop Management Made Easy with Cloudera Enterprise 3.7\" http://t.co/FhRQHTGt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:28:11 +0000", "from_user": "bobgourley", "from_user_id": 14554287, "from_user_id_str": "14554287", "from_user_name": "Bob Gourley", "geo": null, "id": 147850546441748480, "id_str": "147850546441748480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/55466197/bobpng_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/55466197/bobpng_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @cloudera: Video & slides available for the webinar \"Hadoop Management Made Easy with Cloudera Enterprise 3.7\" http://t.co/FhRQHTGt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:27:33 +0000", "from_user": "dguyadeen", "from_user_id": 22665665, "from_user_id_str": "22665665", "from_user_name": "Denis Guyadeen", "geo": null, "id": 147850384147365900, "id_str": "147850384147365888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1627510905/imprimes_71f7864038_big_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627510905/imprimes_71f7864038_big_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @dennylee: rockin' stuff! #hadooponazure \\u201C@carl_nolan: New blog post: http://t.co/VyO4tPzV - Hadoop Streaming and F# MapReduce (#in)\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:25:51 +0000", "from_user": "gloscon", "from_user_id": 16637496, "from_user_id_str": "16637496", "from_user_name": "gloscon", "geo": null, "id": 147849958685544450, "id_str": "147849958685544449", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/285227663/gloscon_icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/285227663/gloscon_icon_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Looking for Hadoop Architects? Post your jobs in Linkedin Group Hadoop Jobs http://t.co/hN0Kkc6X", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:21:51 +0000", "from_user": "FAQShop", "from_user_id": 102016867, "from_user_id_str": "102016867", "from_user_name": "FAQShop", "geo": null, "id": 147848950928523260, "id_str": "147848950928523264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/611340236/FAQShop_Twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/611340236/FAQShop_Twitter_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "[TechNet Blogs] Top Wiki Ninjas of the Week - Wesley McSwain brings us Apache Hadoop and Windows Azure: Welcome ... http://t.co/eEMK1kIf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:16:16 +0000", "from_user": "jtuulos", "from_user_id": 43878466, "from_user_id_str": "43878466", "from_user_name": "Jyri Tuulos", "geo": null, "id": 147847548009324540, "id_str": "147847548009324544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/687350955/jyrituulos2010_gravatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/687350955/jyrituulos2010_gravatar_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Bitdeli: Data in 2012: Less Hadoop, more interactivity, experimentation, streaming and visualizations http://t.co/epxPI0QJ by @edd #hadoop #datavis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:15:56 +0000", "from_user": "Bitdeli", "from_user_id": 383070412, "from_user_id_str": "383070412", "from_user_name": "Bitdeli", "geo": null, "id": 147847463028527100, "id_str": "147847463028527105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1606649241/bitdeli_icon_512_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606649241/bitdeli_icon_512_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Data in 2012: Less Hadoop, more interactivity, experimentation, streaming and visualizations http://t.co/epxPI0QJ by @edd #hadoop #datavis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:14:43 +0000", "from_user": "modernizecobol", "from_user_id": 351635069, "from_user_id_str": "351635069", "from_user_name": "Alchemy Solutions", "geo": null, "id": 147847155036590080, "id_str": "147847155036590081", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1621113690/200-200-symbol_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621113690/200-200-symbol_normal.png", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @WindowsAzure: Microsoft Tries Hadoop on #Windows #Azure: gives Windows Azure Big Data capabilities http://t.co/hgQobdw2 #Cloud /via @Cloud_Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:12:26 +0000", "from_user": "kimsterv", "from_user_id": 14255609, "from_user_id_str": "14255609", "from_user_name": "Kim Vogt", "geo": null, "id": 147846580463075330, "id_str": "147846580463075328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696173144/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696173144/image_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @peteskomoroch: How to quickly process 40TB of data from Common Crawl using Hadoop & Amazon EC2 http://t.co/yum3VZyF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:07:43 +0000", "from_user": "iwrigley", "from_user_id": 23684133, "from_user_id_str": "23684133", "from_user_name": "Ian Wrigley", "geo": null, "id": 147845394792067070, "id_str": "147845394792067072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/92400368/shoes_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/92400368/shoes_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@jim68000 If you want Hadoop help, just ask. I've a vague idea about it.", "to_user": "jim68000", "to_user_id": 6613562, "to_user_id_str": "6613562", "to_user_name": "Jim Smith", "in_reply_to_status_id": 147701857438011400, "in_reply_to_status_id_str": "147701857438011392"}, +{"created_at": "Sat, 17 Dec 2011 00:59:58 +0000", "from_user": "Darkmoth", "from_user_id": 14206580, "from_user_id_str": "14206580", "from_user_name": "Haniff Murray", "geo": null, "id": 147843443832524800, "id_str": "147843443832524800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "Zite Personalized Magazine", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/qea6KNES via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:58:15 +0000", "from_user": "nsharp_2ch", "from_user_id": 86472223, "from_user_id_str": "86472223", "from_user_name": "nsharp", "geo": null, "id": 147843011580141570, "id_str": "147843011580141568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1482188154/icon3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1482188154/icon3_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Introduction to the Hadoop on Azure Interactive Hive Console\\nhttp://t.co/MB6t0BQb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:56:00 +0000", "from_user": "d8Pit", "from_user_id": 264394701, "from_user_id_str": "264394701", "from_user_name": "The URL Popularizer", "geo": null, "id": 147842446628356100, "id_str": "147842446628356097", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317284522/logo-header_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317284522/logo-header_normal.png", "source": "<a href="http://d8p.it" rel="nofollow">d8P</a>", "text": "RT @arosenbaum: CommonCrawl Hadoop / AWS tutorial | http://t.co/7ddRQqNB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:54:45 +0000", "from_user": "arosenbaum", "from_user_id": 14522497, "from_user_id_str": "14522497", "from_user_name": "Aaron Rosenbaum", "geo": null, "id": 147842129744502800, "id_str": "147842129744502786", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693207144/Screen_Shot_2011-12-14_at_9.40.27_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693207144/Screen_Shot_2011-12-14_at_9.40.27_AM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "CommonCrawl Hadoop / AWS tutorial http://t.co/aFcJucFG <-mind spinning on stuff to do with CommonCrawl - didn't know about it #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:53:02 +0000", "from_user": "alp_lv", "from_user_id": 15548781, "from_user_id_str": "15548781", "from_user_name": "Brandon Schakola", "geo": null, "id": 147841697370472450, "id_str": "147841697370472448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/59934122/coffee_shop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/59934122/coffee_shop_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "RT @newsycombinator: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/NT65KUNg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:51:43 +0000", "from_user": "skynapse", "from_user_id": 105657998, "from_user_id_str": "105657998", "from_user_name": "Prasanna", "geo": null, "id": 147841369459793920, "id_str": "147841369459793920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1520106918/DSC_0510_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1520106918/DSC_0510_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "#Microsoft Tries #Hadoop on #Windows #Azure: gives Windows Azure #BigData capabilities http://t.co/47qVXEHT #Cloud #saas #cloudcomputing", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:46:02 +0000", "from_user": "d8Pit", "from_user_id": 264394701, "from_user_id_str": "264394701", "from_user_name": "The URL Popularizer", "geo": null, "id": 147839937989984260, "id_str": "147839937989984256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317284522/logo-header_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317284522/logo-header_normal.png", "source": "<a href="http://d8p.it" rel="nofollow">d8P</a>", "text": "RT @markjburnard: Some great cameos on #bigdata here from CFO world #greenplum #hadoop #exadata #emc | http://t.co/D875LNpe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:44:46 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 147839620581830660, "id_str": "147839620581830656", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "No, Hadoop Doesn't Own Big Data Analytics! - Big Data Big ... http://t.co/OkxGyR1g #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:43:29 +0000", "from_user": "markjburnard", "from_user_id": 68337287, "from_user_id_str": "68337287", "from_user_name": "Mark J Burnard", "geo": null, "id": 147839296878018560, "id_str": "147839296878018560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/378623459/Mark_Burnard__3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/378623459/Mark_Burnard__3_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Some great cameos on #bigdata here from CFO world http://t.co/WV5Mw6K1 #greenplum #hadoop #exadata #emc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:39:35 +0000", "from_user": "Kunzeroyale", "from_user_id": 21050828, "from_user_id_str": "21050828", "from_user_name": "Ron Kunze", "geo": null, "id": 147838315889033200, "id_str": "147838315889033216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/79053455/Charles_Russell_Logo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/79053455/Charles_Russell_Logo_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Interesting IDC article on #BigData, Hadoop players and expected industry acquisitions - http://t.co/IYbhh6ap", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:37:22 +0000", "from_user": "Kvittrekvitre", "from_user_id": 161651238, "from_user_id_str": "161651238", "from_user_name": "Kvittre Kvitter", "geo": null, "id": 147837758432493570, "id_str": "147837758432493569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1041979675/qrimage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1041979675/qrimage_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#opensource #geeks MapReduce for the Masses: Zero to Hadoop in Five M http://t.co/cmaiT5sx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:33:18 +0000", "from_user": "NHNewOrleans", "from_user_id": 21303770, "from_user_id_str": "21303770", "from_user_name": "New Horizons N.O.", "geo": null, "id": 147836732266659840, "id_str": "147836732266659841", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1129709379/3e84d4c7-5357-439a-beb2-bf5744f4b597_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1129709379/3e84d4c7-5357-439a-beb2-bf5744f4b597_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Microsoft offers Hadoop preview on Azure http://t.co/geE8drYz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:31:54 +0000", "from_user": "kcqon", "from_user_id": 15573440, "from_user_id_str": "15573440", "from_user_name": "Kyle C. Quest", "geo": null, "id": 147836381144678400, "id_str": "147836381144678400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1483981355/kcq_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1483981355/kcq_pic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @AliRebai: Check this intro video for the latest (Metro-style) CTP of #Hadoop on Azure Hive Console : http://t.co/oCZjOqlh? via @MicrosoftBI #BigData", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:27:42 +0000", "from_user": "ysimba", "from_user_id": 148815074, "from_user_id_str": "148815074", "from_user_name": "Robin Singh", "geo": null, "id": 147835321806106620, "id_str": "147835321806106625", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1225530206/cropped_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225530206/cropped_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @commoncrawl: MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl by @stevesalevan http://t.co/cBa5598M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:25:23 +0000", "from_user": "SQLGal", "from_user_id": 40076709, "from_user_id_str": "40076709", "from_user_name": "Lara Rubbelke", "geo": null, "id": 147834739330519040, "id_str": "147834739330519040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1591841505/WonderWoman2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591841505/WonderWoman2_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @dennylee: rockin' stuff! #hadooponazure \\u201C@carl_nolan: New blog post: http://t.co/VyO4tPzV - Hadoop Streaming and F# MapReduce (#in)\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:20:39 +0000", "from_user": "jnathp", "from_user_id": 325686860, "from_user_id_str": "325686860", "from_user_name": "Jitendra Pandey", "geo": null, "id": 147833550048215040, "id_str": "147833550048215040", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @HadoopNews: Microsoft Tries #Hadoop on #Azure | Cloud Computing Journal http://t.co/jruLNLCS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:17:20 +0000", "from_user": "nickfloyd", "from_user_id": 1009941, "from_user_id_str": "1009941", "from_user_name": "Nick Floyd", "geo": null, "id": 147832716472234000, "id_str": "147832716472233984", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/941854658/avitar9_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/941854658/avitar9_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "MapReduce : Zero to Hadoop in Five Minutes http://t.co/LKkOFbdH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:10:16 +0000", "from_user": "kpi", "from_user_id": 4046381, "from_user_id_str": "4046381", "from_user_name": "Stephan Karpischek", "geo": null, "id": 147830938611626000, "id_str": "147830938611625984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/62274167/kpi_square_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/62274167/kpi_square_normal.png", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl | CommonCrawl http://t.co/pRnZU2hv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:07:45 +0000", "from_user": "admock", "from_user_id": 13117102, "from_user_id_str": "13117102", "from_user_name": "Alan\\u00A0Mock", "geo": null, "id": 147830305087160320, "id_str": "147830305087160321", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @commoncrawl: MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl by @stevesalevan http://t.co/cBa5598M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:07:29 +0000", "from_user": "SynSysLab", "from_user_id": 431835644, "from_user_id_str": "431835644", "from_user_name": "Synoptic Systems Lab", "geo": null, "id": 147830235423965200, "id_str": "147830235423965184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697334800/3649492427_10431e9b83_z_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697334800/3649492427_10431e9b83_z_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Collecting fine-grain provenance on Hadoop jobs with less than 12% overhead for identity jobs; what's beyond drill down for debugging?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:04:49 +0000", "from_user": "Kylebassett", "from_user_id": 19802719, "from_user_id_str": "19802719", "from_user_name": "Kyle Bassett", "geo": null, "id": 147829564909953020, "id_str": "147829564909953024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1377024648/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1377024648/image_normal.jpg", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "RT @techmilind: New record: 186 Gbps between data centers! Mirror 20PB hadoop cluster in only 20 days. http://t.co/hzJZ014p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:58:26 +0000", "from_user": "ryanprociuk", "from_user_id": 17519769, "from_user_id_str": "17519769", "from_user_name": "Large Scale Mischief", "geo": null, "id": 147827957929488400, "id_str": "147827957929488384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1270614856/IMG00122_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1270614856/IMG00122_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@DataJunkie Exactly - I'm pushing mongodb to hadoop, its all fine, until I introduce volume. FML", "to_user": "DataJunkie", "to_user_id": 11595422, "to_user_id_str": "11595422", "to_user_name": "Ryan Rosario", "in_reply_to_status_id": 147827555502788600, "in_reply_to_status_id_str": "147827555502788609"}, +{"created_at": "Fri, 16 Dec 2011 23:57:25 +0000", "from_user": "adamjodonnell", "from_user_id": 14058046, "from_user_id_str": "14058046", "from_user_name": "adamjodonnell", "geo": null, "id": 147827704002117630, "id_str": "147827704002117633", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1690446969/6316849511_59752cc9ef_m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690446969/6316849511_59752cc9ef_m_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@tqbf s/riak/hadoop/", "to_user": "tqbf", "to_user_id": 9395312, "to_user_id_str": "9395312", "to_user_name": "Thomas H. Ptacek", "in_reply_to_status_id": 147821258350936060, "in_reply_to_status_id_str": "147821258350936064"}, +{"created_at": "Fri, 16 Dec 2011 23:57:03 +0000", "from_user": "jganoff", "from_user_id": 49971828, "from_user_id_str": "49971828", "from_user_name": "Jordan Ganoff", "geo": null, "id": 147827611681300480, "id_str": "147827611681300482", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1323834474/jg_cropped_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1323834474/jg_cropped_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "#Pentaho MapReduce is getting easier to install with RPM and Debian packages coming to a repository near you - soon! #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:56:50 +0000", "from_user": "DataJunkie", "from_user_id": 11595422, "from_user_id_str": "11595422", "from_user_name": "Ryan Rosario", "geo": null, "id": 147827555502788600, "id_str": "147827555502788609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1157898476/main-thumb-5941-100-FT7BIXkvPevFD6v2vc2uS3VMKOYv5kSO_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1157898476/main-thumb-5941-100-FT7BIXkvPevFD6v2vc2uS3VMKOYv5kSO_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@ryanprociuk Story of my life. Or I end up needing Hadoop and then having to port Python to Java for the better API.", "to_user": "ryanprociuk", "to_user_id": 17519769, "to_user_id_str": "17519769", "to_user_name": "Large Scale Mischief", "in_reply_to_status_id": 147826536874119170, "in_reply_to_status_id_str": "147826536874119168"}, +{"created_at": "Fri, 16 Dec 2011 23:55:11 +0000", "from_user": "drkhan", "from_user_id": 8465352, "from_user_id_str": "8465352", "from_user_name": "Khan M. Siddiqui, MD", "geo": null, "id": 147827141579522050, "id_str": "147827141579522048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1553565061/Siddiqui1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553565061/Siddiqui1_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @WindowsAzure: Microsoft Tries Hadoop on #Windows #Azure: gives Windows Azure Big Data capabilities http://t.co/hgQobdw2 #Cloud /via @Cloud_Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:55:03 +0000", "from_user": "Charoletteanu", "from_user_id": 422472185, "from_user_id_str": "422472185", "from_user_name": "Charolette Furry", "geo": null, "id": 147827105202307070, "id_str": "147827105202307072", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Pro Hadoop downloads: Pro Hadoop book download Jason Venner Download Pro Hadoop 1.. Books: See all 20 items. Ama... http://t.co/FRz5RoVE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:53:51 +0000", "from_user": "MedicalQuack", "from_user_id": 15248550, "from_user_id_str": "15248550", "from_user_name": "MedicalQuack", "geo": null, "id": 147826807222186000, "id_str": "147826807222185984", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/76341733/Dec_2008-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/76341733/Dec_2008-2_normal.jpg", "source": "<a href="http://www.TechHit.com/twinbox/" rel="nofollow">TwInbox</a>", "text": "RT @WindowsAzure: Microsoft Tries Hadoop on #Windows #Azure: gives Windows Azure Big Data capabilities http://t.co/iM08UFB0 #Cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:43:39 +0000", "from_user": "rafa_callcenter", "from_user_id": 429840940, "from_user_id_str": "429840940", "from_user_name": "Rafa Esca\\u00F1o", "geo": null, "id": 147824238961754100, "id_str": "147824238961754112", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677092620/rafael_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677092620/rafael_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @HadoopNews: Microsoft Tries #Hadoop on #Azure | Cloud Computing Journal http://t.co/jruLNLCS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:42:30 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 147823948879507460, "id_str": "147823948879507456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "HBase, mail # user - new to HBase/NoSQL, need some help with ... http://t.co/OOSXaPgH #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:39:14 +0000", "from_user": "MatthewErbs", "from_user_id": 38740734, "from_user_id_str": "38740734", "from_user_name": "Matthew Erbs", "geo": null, "id": 147823127995494400, "id_str": "147823127995494401", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1261599082/P1020116_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1261599082/P1020116_normal.JPG", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @WindowsAzure: Microsoft Tries Hadoop on #Windows #Azure: gives Windows Azure Big Data capabilities http://t.co/hgQobdw2 #Cloud /via @Cloud_Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:33:25 +0000", "from_user": "programmingfeed", "from_user_id": 23924836, "from_user_id_str": "23924836", "from_user_name": "programming feed", "geo": null, "id": 147821661280940030, "id_str": "147821661280940032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/93775994/progfeed_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/93775994/progfeed_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloudera \\u00BB Apache Hadoop for the Enterprise: http://t.co/WGNf8QpJ #programming", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:32:20 +0000", "from_user": "Zementis", "from_user_id": 40168855, "from_user_id_str": "40168855", "from_user_name": "Zementis", "geo": null, "id": 147821388688928770, "id_str": "147821388688928768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/535829691/zementis-icon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/535829691/zementis-icon_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Operational Deployment of Predictive Solutions: Lost in Translation? Not with #PMML http://t.co/iOjIkykv #bigdata #cloud #analytics #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:31:04 +0000", "from_user": "DoITDistributed", "from_user_id": 97191404, "from_user_id_str": "97191404", "from_user_name": "Bjoern Boettcher", "geo": null, "id": 147821071456944130, "id_str": "147821071456944128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/742734914/ichKlein_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/742734914/ichKlein_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @WindowsAzure: Microsoft Tries Hadoop on #Windows #Azure: gives Windows Azure Big Data capabilities http://t.co/hgQobdw2 #Cloud /via @Cloud_Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:30:07 +0000", "from_user": "TopDevTweets", "from_user_id": 194520782, "from_user_id_str": "194520782", "from_user_name": "TopDevTweets", "geo": null, "id": 147820832545181700, "id_str": "147820832545181696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @WindowsAzure: Microsoft Tries Hadoop on #Windows #Azure: gives Windows Azure Big Data capabilities http://t.co/hgQobdw2 #Cloud /via @Cloud_Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:25:26 +0000", "from_user": "RichardMcDougll", "from_user_id": 1119501, "from_user_id_str": "1119501", "from_user_name": "Richard McDougall", "geo": null, "id": 147819651848618000, "id_str": "147819651848617986", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/248898781/rmccar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/248898781/rmccar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Does anyone know how to get full pathnames instead of ?? in the MacOSX Dtrace I/O provider? (Tracing Hadoop)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:25:09 +0000", "from_user": "kimutan_sk", "from_user_id": 230634636, "from_user_id_str": "230634636", "from_user_name": "Kimura Sotaro", "geo": null, "id": 147819582437081100, "id_str": "147819582437081088", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1218184154/penguin_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218184154/penguin_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\\u3084\\u306F\\u308A\\u3001Hadoop\\u3001Storm\\u306E\\u3088\\u3046\\u306A\\u5206\\u6563\\u30B7\\u30B9\\u30C6\\u30E0\\u3067\\u306F\\u3001\\u300E\\u72B6\\u614B\\u300F\\u3092\\u3069\\u3046\\u6301\\u3064\\u304B\\u304C\\u8AB2\\u984C\\u306B\\u306A\\u308B\\u3088\\u3046\\u3067\\u3059\\u306D\\u3002\\u305F\\u3060\\u3001\\u5143\\u3005\\u3053\\u3046\\u3044\\u3046\\u5206\\u6563\\u30B7\\u30B9\\u30C6\\u30E0\\u81EA\\u4F53\\u304C\\u5927\\u57DF\\u60C5\\u5831\\u3092\\u6301\\u305F\\u306A\\u3044\\u3053\\u3068\\u3067\\u4E26\\u5217\\u5316\\u3092\\u9054\\u6210\\u3057\\u305F\\u3082\\u306E\\u306A\\u306E\\u3068\\u3044\\u3046\\u3053\\u3068\\u3067\\u3042\\u308A\\u307E\\u3057\\u3066\\u3002 #stormjp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:24:30 +0000", "from_user": "appsolutpaul", "from_user_id": 382439816, "from_user_id_str": "382439816", "from_user_name": "Paul Young", "geo": null, "id": 147819420784410620, "id_str": "147819420784410625", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1585623702/yoseflogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585623702/yoseflogo_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @WindowsAzure: Microsoft Tries Hadoop on #Windows #Azure: gives Windows Azure Big Data capabilities http://t.co/hgQobdw2 #Cloud /via @Cloud_Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Fri, 16 Dec 2011 23:21:07 +0000", "from_user": "jbueza", "from_user_id": 141423083, "from_user_id_str": "141423083", "from_user_name": "Jaime Bueza", "geo": null, "id": 147818566492766200, "id_str": "147818566492766208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @WindowsAzure: Microsoft Tries Hadoop on #Windows #Azure: gives Windows Azure Big Data capabilities http://t.co/hgQobdw2 #Cloud /via @Cloud_Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:20:01 +0000", "from_user": "HadoopNews", "from_user_id": 251816878, "from_user_id_str": "251816878", "from_user_name": "John Ching", "geo": null, "id": 147818288653668350, "id_str": "147818288653668352", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1244235692/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1244235692/images_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Microsoft Tries #Hadoop on #Azure | Cloud Computing Journal http://t.co/jruLNLCS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:19:20 +0000", "from_user": "danruss", "from_user_id": 19034177, "from_user_id_str": "19034177", "from_user_name": "Dan Russell", "geo": null, "id": 147818117685444600, "id_str": "147818117685444608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1141476958/BeardDan_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1141476958/BeardDan_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @windowsazure: Microsoft Tries Hadoop on #Windows #Azure: gives Windows Azure Big Data capabilities http://t.co/292BDtNg #Cloud /via...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:18:00 +0000", "from_user": "WindowsAzure", "from_user_id": 17000457, "from_user_id_str": "17000457", "from_user_name": "WindowsAzure", "geo": null, "id": 147817784640942080, "id_str": "147817784640942081", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689662914/Azure-300x300px_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689662914/Azure-300x300px_normal.png", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "Microsoft Tries Hadoop on #Windows #Azure: gives Windows Azure Big Data capabilities http://t.co/hgQobdw2 #Cloud /via @Cloud_Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:16:02 +0000", "from_user": "newsyc50", "from_user_id": 149124522, "from_user_id_str": "149124522", "from_user_name": "Hacker News 50", "geo": null, "id": 147817289184575500, "id_str": "147817289184575488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1083693716/yclogo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1083693716/yclogo_normal.gif", "source": "<a href="http://news.ycombinator.com" rel="nofollow">newsyc</a>", "text": "MapReduce for the Masses: Zero to Hadoop in 5 minutes with Commo http://t.co/ZlQ1SedC (http://t.co/k5cnytIX) #trending #guru", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:13:46 +0000", "from_user": "ramiyengar", "from_user_id": 82956123, "from_user_id_str": "82956123", "from_user_name": "Ram Iyengar", "geo": null, "id": 147816718914420740, "id_str": "147816718914420736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1671457039/IMG00526-20110902-0859_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671457039/IMG00526-20110902-0859_normal.jpg", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/5qbbPrE2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:11:11 +0000", "from_user": "CHempfield", "from_user_id": 18083918, "from_user_id_str": "18083918", "from_user_name": "CHempfield", "geo": null, "id": 147816067169914880, "id_str": "147816067169914881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1264925177/IMG2_6244_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1264925177/IMG2_6244_normal.JPG", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Interesting conversation with a west coast customer. They are doing some interesting things with Hadoop.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:09:55 +0000", "from_user": "lghandi", "from_user_id": 50045837, "from_user_id_str": "50045837", "from_user_name": "Lalitta Ghandikota", "geo": null, "id": 147815746897055740, "id_str": "147815746897055745", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1598588048/Lalitta_Ghandikota_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598588048/Lalitta_Ghandikota_normal.jpg", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "RT @cheriejobtweets: Job: Manager, Hadoop Operations in San Jose, CA http://t.co/xnSLrrhP #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:09:09 +0000", "from_user": "yzli_yzli", "from_user_id": 95430390, "from_user_id_str": "95430390", "from_user_name": "YZ", "geo": null, "id": 147815556442112000, "id_str": "147815556442112000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/5qbbPrE2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:07:09 +0000", "from_user": "hkokko", "from_user_id": 24726686, "from_user_id_str": "24726686", "from_user_name": "Hannu Kokko", "geo": null, "id": 147815053616365570, "id_str": "147815053616365568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/100266288/hannu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/100266288/hannu_normal.jpg", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/5qbbPrE2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:07:08 +0000", "from_user": "dinoamaral", "from_user_id": 41710220, "from_user_id_str": "41710220", "from_user_name": "Dino Amaral", "geo": null, "id": 147815050059587600, "id_str": "147815050059587584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1424745940/IMAG0144_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1424745940/IMAG0144_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @HadoopNews: #MapReduce for the Masses: Zero to #Hadoop in Five Minutes with Common Crawl | CommonCrawl http://t.co/5TSjK6eO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:04:07 +0000", "from_user": "LearnExcel", "from_user_id": 114589142, "from_user_id_str": "114589142", "from_user_name": "Guruonline-Iwebslog", "geo": null, "id": 147814288524967940, "id_str": "147814288524967936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/698010679/excel_2003_01_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/698010679/excel_2003_01_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "http://t.co/pHoXARdG-Microsoft Tries Hadoop on Azure: s App Engine. Users can build MapReduce jobs. Microsoft... http://t.co/KKUSyXaB #Excel", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:04:07 +0000", "from_user": "DBmxorg", "from_user_id": 261452842, "from_user_id_str": "261452842", "from_user_name": "DBmx.org", "geo": null, "id": 147814288336236540, "id_str": "147814288336236545", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1263199080/4395953684_419dff284f_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263199080/4395953684_419dff284f_normal.jpg", "source": "<a href="http://timely.is" rel="nofollow">Timely by Demandforce</a>", "text": "Hadoop puede vivir en Microsoft Azure http://t.co/zmcIi25R #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:03:53 +0000", "from_user": "HadoopNews", "from_user_id": 251816878, "from_user_id_str": "251816878", "from_user_name": "John Ching", "geo": null, "id": 147814229355933700, "id_str": "147814229355933697", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1244235692/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1244235692/images_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#MapReduce for the Masses: Zero to #Hadoop in Five Minutes with Common Crawl | CommonCrawl http://t.co/5TSjK6eO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:03:47 +0000", "from_user": "flytraplabs", "from_user_id": 392520190, "from_user_id_str": "392520190", "from_user_name": "flytraplabs", "geo": null, "id": 147814205968490500, "id_str": "147814205968490496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1610232771/flytrap_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610232771/flytrap_normal.png", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @peteskomoroch: How to quickly process 40TB of data from Common Crawl using Hadoop & Amazon EC2 http://t.co/yum3VZyF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:03:11 +0000", "from_user": "hspencer77", "from_user_id": 12226772, "from_user_id_str": "12226772", "from_user_name": "Harold L Spencer, Jr", "geo": null, "id": 147814053442629630, "id_str": "147814053442629635", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/189840432/IMG_0150_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/189840432/IMG_0150_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\"@newsycombinator: MapReduce for the Masses: 0 to Hadoop in 5 minutes with Common Crawl http://t.co/qpGtnm4V\"\" @chrisgbunch #Appscale-Euca?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:59:21 +0000", "from_user": "dagh", "from_user_id": 9735202, "from_user_id_str": "9735202", "from_user_name": "Dag Holmboe", "geo": null, "id": 147813088110972930, "id_str": "147813088110972928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1078123781/dagholmboe_bw_863x862_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1078123781/dagholmboe_bw_863x862_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @infochimps: RT @dguyadeen: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl: http://t.co/LkgSIWAl #BigData #Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:56:40 +0000", "from_user": "mat_kelcey", "from_user_id": 26970530, "from_user_id_str": "26970530", "from_user_name": "mat kelcey", "geo": null, "id": 147812413402656770, "id_str": "147812413402656769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/760825752/n650991500_422744_3329_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/760825752/n650991500_422744_3329_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @commoncrawl: MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl by @stevesalevan http://t.co/cBa5598M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:56:02 +0000", "from_user": "valb00", "from_user_id": 15373404, "from_user_id_str": "15373404", "from_user_name": "valb00", "geo": null, "id": 147812254333669380, "id_str": "147812254333669377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1162802602/screen-capture-4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1162802602/screen-capture-4_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @MicrosoftBI: I uploaded a @YouTube video http://t.co/WWiuQpFL Introduction to the Hadoop on Azure Interactive Hive Console", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:53:21 +0000", "from_user": "antonvirtual", "from_user_id": 115932585, "from_user_id_str": "115932585", "from_user_name": "Anton Zhbankov", "geo": null, "id": 147811578148954100, "id_str": "147811578148954112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1362621396/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1362621396/image_normal.jpg", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "RT @techmilind: New record: 186 Gbps between data centers! Mirror 20PB hadoop cluster in only 20 days. http://t.co/hzJZ014p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:53:07 +0000", "from_user": "Fowe", "from_user_id": 18560812, "from_user_id_str": "18560812", "from_user_name": "Adeyemi Fowe", "geo": null, "id": 147811523111288830, "id_str": "147811523111288832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1159654352/Fowe_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1159654352/Fowe_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @peteskomoroch: How to quickly process 40TB of data from Common Crawl using Hadoop & Amazon EC2 http://t.co/yum3VZyF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:51:37 +0000", "from_user": "AlexOlesker", "from_user_id": 278166677, "from_user_id_str": "278166677", "from_user_name": "Alexander Olesker", "geo": null, "id": 147811145678454800, "id_str": "147811145678454784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1392859364/Bar_profile_cut_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1392859364/Bar_profile_cut_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "RT @FutureSMEM: @AlexOlesker @ctovision i have handed the intro to hadoop and big data out before. You know, like at street corners with critical audiences", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:47:58 +0000", "from_user": "ChrisDiehl", "from_user_id": 14595061, "from_user_id_str": "14595061", "from_user_name": "Chris Diehl", "geo": null, "id": 147810224672223230, "id_str": "147810224672223232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/660241500/ZionSmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/660241500/ZionSmall_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @peteskomoroch: How to quickly process 40TB of data from Common Crawl using Hadoop & Amazon EC2 http://t.co/yum3VZyF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:47:06 +0000", "from_user": "_adeel", "from_user_id": 17425383, "from_user_id_str": "17425383", "from_user_name": "Adeel Ahmad", "geo": null, "id": 147810007147229200, "id_str": "147810007147229184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/972611450/bimbomug_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/972611450/bimbomug_normal.png", "source": "<a href="http://www.destroytwitter.com" rel="nofollow">DestroyTwitter</a>", "text": "Nice post @stevesalevan - Zero to Hadoop in Five Minutes with Common Crawl http://t.co/SPfPtNU2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:45:26 +0000", "from_user": "vgoklani", "from_user_id": 2129501, "from_user_id_str": "2129501", "from_user_name": "Vishal Goklani", "geo": null, "id": 147809586244616200, "id_str": "147809586244616193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/224307565/n571017400_9793.jpg_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/224307565/n571017400_9793.jpg_normal.jpeg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @peteskomoroch: How to quickly process 40TB of data from Common Crawl using Hadoop & Amazon EC2 http://t.co/yum3VZyF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:44:53 +0000", "from_user": "danyoel", "from_user_id": 28306402, "from_user_id_str": "28306402", "from_user_name": "Dan Liebling", "geo": null, "id": 147809450026209280, "id_str": "147809450026209280", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/212120891/twitter_profile_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/212120891/twitter_profile_pic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "F#, Hadoop, Azure http://t.co/lnPWEfvK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:41:49 +0000", "from_user": "peteskomoroch", "from_user_id": 14344469, "from_user_id_str": "14344469", "from_user_name": "Peter Skomoroch", "geo": null, "id": 147808678890831870, "id_str": "147808678890831872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1331342742/skomoroch_photo_ocean_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1331342742/skomoroch_photo_ocean_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "How to quickly process 40TB of data from Common Crawl using Hadoop & Amazon EC2 http://t.co/yum3VZyF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:39:13 +0000", "from_user": "Microtastic", "from_user_id": 49258571, "from_user_id_str": "49258571", "from_user_name": "Andrew James", "geo": null, "id": 147808022247391230, "id_str": "147808022247391233", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/353697753/thumbnail_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/353697753/thumbnail_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "GA Info: Microsoft Tries Hadoop on Azure | Cloud Computing Journal: With the SDK Microsoft says Azure can integr... http://t.co/wFDCXR5Y", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:37:56 +0000", "from_user": "MicrosoftBI", "from_user_id": 227829587, "from_user_id_str": "227829587", "from_user_name": "Microsoft BI", "geo": null, "id": 147807701483794430, "id_str": "147807701483794432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1214935103/Twitter-Icon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1214935103/Twitter-Icon_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "You are QUICK! RT @AliRebai: Check this intro video for the latest (Metro-style) CTP of #Hadoop on Azure Hive Console : http://t.co/03VAjOsC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:37:52 +0000", "from_user": "othmaniRabeb", "from_user_id": 109628739, "from_user_id_str": "109628739", "from_user_name": "othmani rabeb", "geo": null, "id": 147807685335728130, "id_str": "147807685335728128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1489780886/b75285dc-1a31-4cb8-94fb-ed518f89ea9c_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1489780886/b75285dc-1a31-4cb8-94fb-ed518f89ea9c_normal.png", "source": "<a href="http://www.metrotwit.com/" rel="nofollow">MetroTwit</a>", "text": "RT @AliRebai Check this video for the latest (Metro-style) CTP of #Hadoop on Azure Hive Console : http://t.co/spqsptxj? #BigData", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:37:41 +0000", "from_user": "furrier", "from_user_id": 833071, "from_user_id_str": "833071", "from_user_name": "John Furrier", "geo": null, "id": 147807636685996030, "id_str": "147807636685996032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1139238299/SiliconANGLE_jf_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1139238299/SiliconANGLE_jf_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @AliRebai: Check this intro video for the latest (Metro-style) CTP of #Hadoop on Azure Hive Console : http://t.co/oCZjOqlh? via @MicrosoftBI #BigData", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:36:57 +0000", "from_user": "AliRebai", "from_user_id": 194081605, "from_user_id_str": "194081605", "from_user_name": "Ali Rebai", "geo": null, "id": 147807451285172220, "id_str": "147807451285172224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1669539394/twiter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669539394/twiter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Check this intro video for the latest (Metro-style) CTP of #Hadoop on Azure Hive Console : http://t.co/oCZjOqlh? via @MicrosoftBI #BigData", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:36:16 +0000", "from_user": "DGleebits", "from_user_id": 364557525, "from_user_id_str": "364557525", "from_user_name": "Dan Gleebits \\u2714", "geo": null, "id": 147807280337911800, "id_str": "147807280337911808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1520153825/1310282366138_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1520153825/1310282366138_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Gonna try and stand infront of the Twitter firehose today. Do you think I can do this on a VM based Hadoop Cluster?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:34:15 +0000", "from_user": "coding_doc", "from_user_id": 14625547, "from_user_id_str": "14625547", "from_user_name": "coding_doc", "geo": null, "id": 147806773439500300, "id_str": "147806773439500288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1259872166/handsp66_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1259872166/handsp66_normal.gif", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "RT @jdudley: MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/ohsl5S5w", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:26:08 +0000", "from_user": "d8Pit", "from_user_id": 264394701, "from_user_id_str": "264394701", "from_user_name": "The URL Popularizer", "geo": null, "id": 147804730075254800, "id_str": "147804730075254785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317284522/logo-header_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317284522/logo-header_normal.png", "source": "<a href="http://d8p.it" rel="nofollow">d8P</a>", "text": "RT @Rohit2b: #hadoop #cassandra #openstack #jquery make the top 10 open source projects for 2011 | http://t.co/Eq8tl3CB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:25:01 +0000", "from_user": "RichardDawkins5", "from_user_id": 341947256, "from_user_id_str": "341947256", "from_user_name": "Richard Dawkins", "geo": null, "id": 147804449669267460, "id_str": "147804449669267456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1459560229/RichardDawkins_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1459560229/RichardDawkins_normal.jpg", "source": "<a href="http://suhastech.com/tr" rel="nofollow">Tweet Random</a>", "text": "24 Interview Questions & Answers for Hadoop developers http://t.co/UMtKx2Va", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:24:00 +0000", "from_user": "Rohit2b", "from_user_id": 15189860, "from_user_id_str": "15189860", "from_user_name": "Rohit Bakhshi", "geo": null, "id": 147804193959325700, "id_str": "147804193959325696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1130429140/Twitter_Picture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1130429140/Twitter_Picture_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#hadoop #cassandra #openstack #jquery make the top 10 open source projects for 2011 https://t.co/rX4aFIuG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:23:59 +0000", "from_user": "aidvu", "from_user_id": 303404476, "from_user_id_str": "303404476", "from_user_name": "Andrija Vu\\u010Dini\\u0107", "geo": null, "id": 147804189748244480, "id_str": "147804189748244480", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1600190540/ja_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600190540/ja_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Zero to Hadoop: MapReduce for masses\\nhttp://t.co/EdyuwnkG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:18:01 +0000", "from_user": "carnotweat", "from_user_id": 225349488, "from_user_id_str": "225349488", "from_user_name": "sameer", "geo": null, "id": 147802688044797950, "id_str": "147802688044797952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1317089589/sg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317089589/sg_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/w8tA6s1d", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:17:03 +0000", "from_user": "benosteen", "from_user_id": 9211912, "from_user_id_str": "9211912", "from_user_name": "Ben O'Steen", "geo": null, "id": 147802446238973950, "id_str": "147802446238973953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1586232682/profile_600x450_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586232682/profile_600x450_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @infochimps: RT @dguyadeen: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl: http://t.co/LkgSIWAl #BigData #Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:16:53 +0000", "from_user": "band", "from_user_id": 1169321, "from_user_id_str": "1169321", "from_user_name": "William L. Anderson", "geo": null, "id": 147802403998146560, "id_str": "147802403998146560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/791283923/bill4_2a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/791283923/bill4_2a_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @infochimps: RT @dguyadeen: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl: http://t.co/LkgSIWAl #BigData #Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:16:32 +0000", "from_user": "backupbear", "from_user_id": 89365312, "from_user_id_str": "89365312", "from_user_name": "Preston de Guise", "geo": null, "id": 147802315284430850, "id_str": "147802315284430849", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1557345714/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1557345714/image_normal.jpg", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "RT @techmilind: New record: 186 Gbps between data centers! Mirror 20PB hadoop cluster in only 20 days. http://t.co/hzJZ014p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:16:12 +0000", "from_user": "TechAssoc", "from_user_id": 92243805, "from_user_id_str": "92243805", "from_user_name": "TechnologyAssociates", "geo": null, "id": 147802231259930620, "id_str": "147802231259930625", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/659762257/Technology_Asso_arrowsv2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/659762257/Technology_Asso_arrowsv2_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "Hadoop Streaming and F# MapReduce http://t.co/TmSxarFI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:16:00 +0000", "from_user": "edd", "from_user_id": 12876, "from_user_id_str": "12876", "from_user_name": "Edd Dumbill", "geo": null, "id": 147802178491392000, "id_str": "147802178491392000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1250156247/oscon2010_casual_cropped_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1250156247/oscon2010_casual_cropped_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @commoncrawl: MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl by @stevesalevan http://t.co/cBa5598M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:14:06 +0000", "from_user": "vRobM", "from_user_id": 38737968, "from_user_id_str": "38737968", "from_user_name": "Rob Markovi\\u0107 (Robi)", "geo": null, "id": 147801700764352500, "id_str": "147801700764352512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/350626160/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/350626160/twitterProfilePhoto_normal.jpg", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "RT @techmilind: New record: 186 Gbps between data centers! Mirror 20PB hadoop cluster in only 20 days. http://t.co/hzJZ014p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:13:53 +0000", "from_user": "marklarosa", "from_user_id": 19042277, "from_user_id_str": "19042277", "from_user_name": "Mark LaRosa", "geo": null, "id": 147801646217437200, "id_str": "147801646217437184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1223708817/mark8bit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1223708817/mark8bit_normal.jpg", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/5qbbPrE2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:12:51 +0000", "from_user": "lluccipha", "from_user_id": 103246788, "from_user_id_str": "103246788", "from_user_name": "lluccipha", "geo": null, "id": 147801387705700350, "id_str": "147801387705700352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697708417/BYbrkMru_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697708417/BYbrkMru_normal", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "newsycombinator: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/EdfodrBI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:12:40 +0000", "from_user": "bioitbob", "from_user_id": 47755548, "from_user_id_str": "47755548", "from_user_name": "bob beliveau", "geo": null, "id": 147801341425754100, "id_str": "147801341425754112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/338003818/bioitlogo_normal.bmp", "profile_image_url_https": "https://si0.twimg.com/profile_images/338003818/bioitlogo_normal.bmp", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "Got Hadoop? | Genome Technology | Informatics | GenomeWeb http://t.co/KuXPbZvO << A primer on Hadoop in Bioinformatics. Thanks @sbarghaan", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:10:32 +0000", "from_user": "fimbul11", "from_user_id": 89163293, "from_user_id_str": "89163293", "from_user_name": "\\u30FE\\uFF9C\\uFF20\\u2312\\u30FC\\u2312\\uFF20\\uFF76\\u30CE", "geo": null, "id": 147800803917316100, "id_str": "147800803917316097", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1661036316/e5fa4764-83b7-425c-9b65-06cd8354af17_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661036316/e5fa4764-83b7-425c-9b65-06cd8354af17_normal.png", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "Hadoop\\u89E6\\u3063\\u3066\\u307F\\u305F\\u3044\\u3093\\u3084", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:09:02 +0000", "from_user": "SiegfriedEhret", "from_user_id": 214735657, "from_user_id_str": "214735657", "from_user_name": "Siegfried Ehret", "geo": null, "id": 147800428891996160, "id_str": "147800428891996160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1257460248/IMG_6903_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1257460248/IMG_6903_normal.jpg", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/5qbbPrE2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:08:41 +0000", "from_user": "jdanoz", "from_user_id": 17920112, "from_user_id_str": "17920112", "from_user_name": "jdanoz", "geo": null, "id": 147800337552646140, "id_str": "147800337552646144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1335360257/f2189069_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335360257/f2189069_normal.jpg", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/5qbbPrE2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:07:55 +0000", "from_user": "MarkMangraviti", "from_user_id": 385741005, "from_user_id_str": "385741005", "from_user_name": "Mark Mangraviti", "geo": null, "id": 147800147869437950, "id_str": "147800147869437953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1574688287/MarkPic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1574688287/MarkPic_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "When HANA meets Hadoop: We'll be offering HANA for Business Warehouse, as well as Hadoop support.\\u201D Hadoop, a pro... http://t.co/SKD3xQ3Q", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:06:22 +0000", "from_user": "hspencer77", "from_user_id": 12226772, "from_user_id_str": "12226772", "from_user_name": "Harold L Spencer, Jr", "geo": null, "id": 147799756331163650, "id_str": "147799756331163648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/189840432/IMG_0150_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/189840432/IMG_0150_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\"@newsycombinator: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/qpGtnm4V\" -> demo this with #Euca?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:05:19 +0000", "from_user": "snboyle", "from_user_id": 8920302, "from_user_id_str": "8920302", "from_user_name": "Steph Boyle", "geo": null, "id": 147799491024666620, "id_str": "147799491024666624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/81851420/stephandandrew_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/81851420/stephandandrew_2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Aloisius: Webcast on how to crunch Common Crawl's massive public web crawl dataset w/ hadoop http://http://bit.ly/trSH79 (HN http://t.co/ljzFrnCi)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:05:11 +0000", "from_user": "d24m", "from_user_id": 78574363, "from_user_id_str": "78574363", "from_user_name": "Oliver Heller", "geo": null, "id": 147799459848400900, "id_str": "147799459848400899", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/617828898/star_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/617828898/star_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure http://t.co/aw8AUP0T", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:05:06 +0000", "from_user": "newsycombinator", "from_user_id": 14335498, "from_user_id_str": "14335498", "from_user_name": "news.yc Popular", "geo": null, "id": 147799437941547000, "id_str": "147799437941547008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/52589204/y_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/52589204/y_normal.png", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/5qbbPrE2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:01:46 +0000", "from_user": "jdudley", "from_user_id": 10180222, "from_user_id_str": "10180222", "from_user_name": "jdudley", "geo": null, "id": 147798599420489730, "id_str": "147798599420489728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/61828330/mug_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/61828330/mug_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/ohsl5S5w", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:01:46 +0000", "from_user": "jinnli", "from_user_id": 18330621, "from_user_id_str": "18330621", "from_user_name": "\\u01C7", "geo": null, "id": 147798599303041020, "id_str": "147798599303041024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1579601171/_______normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1579601171/_______normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/dANjCNtZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:01:08 +0000", "from_user": "buckwoody", "from_user_id": 22874831, "from_user_id_str": "22874831", "from_user_name": "Buck Woody", "geo": null, "id": 147798440259239940, "id_str": "147798440259239936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1348746982/Buck1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1348746982/Buck1_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Nice - Hadoop and F# Map/Reduce functions: http://t.co/lawP11bC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:59:36 +0000", "from_user": "kellycopson", "from_user_id": 367074993, "from_user_id_str": "367074993", "from_user_name": "kelly", "geo": null, "id": 147798053942853630, "id_str": "147798053942853632", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1526353507/kelly_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1526353507/kelly_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hadoop Streaming and F# MapReduce http://t.co/UHvNc361 Cloud Computing", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:59:11 +0000", "from_user": "XaocCPS", "from_user_id": 22345392, "from_user_id_str": "22345392", "from_user_name": "Vladimir Yunev", "geo": null, "id": 147797949894758400, "id_str": "147797949894758400", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/107052445/personaltag_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/107052445/personaltag_normal.png", "source": "<a href="http://www.WindowsPhone.com/" rel="nofollow">WindowsLive</a>", "text": "Hadoop Streaming and F# MapReduce http://t.co/mnUbXlGr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:58:32 +0000", "from_user": "ripcitylyman", "from_user_id": 14050728, "from_user_id_str": "14050728", "from_user_name": "Jay Lyman", "geo": null, "id": 147797784039395330, "id_str": "147797784039395330", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/209048268/workingman_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/209048268/workingman_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "New 451 CAOS podcast with Hadoop, WebOS, oss licensing and Red Hat M&A: http://t.co/4P3yuS2R", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:57:24 +0000", "from_user": "mndoci", "from_user_id": 605643, "from_user_id_str": "605643", "from_user_name": "Deepak Singh", "geo": null, "id": 147797498088538100, "id_str": "147797498088538112", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1106198507/3790132182_5d654efd4c_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1106198507/3790132182_5d654efd4c_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Zero to #Hadoop in 5 minutes: http://t.co/HfsnZCtp #aws #coolstuff", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:56:39 +0000", "from_user": "mikepluta", "from_user_id": 15150700, "from_user_id_str": "15150700", "from_user_name": "Mike Pluta", "geo": null, "id": 147797311869816830, "id_str": "147797311869816832", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1584807716/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584807716/image_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Safari on iOS</a>", "text": "#bigdata #hadoop @commoncrawl Zero to Hadoop in 5 minutes http://t.co/aGTaRjB7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:52:51 +0000", "from_user": "avkashchauhan", "from_user_id": 213118614, "from_user_id_str": "213118614", "from_user_name": "Avkash Chauhan", "geo": null, "id": 147796352699613200, "id_str": "147796352699613184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1615647152/asc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615647152/asc_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#MapReduce for .net also known as \"#Hadoop #Streaming\" - Using MapReduce with F# - http://t.co/JhKSLOnE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:50:51 +0000", "from_user": "OCVC", "from_user_id": 5911402, "from_user_id_str": "5911402", "from_user_name": "Marc Averitt", "geo": null, "id": 147795849269878800, "id_str": "147795849269878785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1437668582/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1437668582/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @commoncrawl: MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl by @stevesalevan http://t.co/cBa5598M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:45:55 +0000", "from_user": "EdgarSanchez", "from_user_id": 9571502, "from_user_id_str": "9571502", "from_user_name": "Edgar S\\u00E1nchez", "geo": null, "id": 147794609496530940, "id_str": "147794609496530944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1147638240/EdgarVS210_120x120_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1147638240/EdgarVS210_120x120_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @chris_brockett: Carls source code for hadoop streaming and #FSharp mapreduce is here: http://t.co/IHFNPSH0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:45:23 +0000", "from_user": "attilacsordas", "from_user_id": 2443051, "from_user_id_str": "2443051", "from_user_name": "attilacsordas", "geo": null, "id": 147794473626243070, "id_str": "147794473626243072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/61448120/attila_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/61448120/attila_normal.JPG", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "RT @techmilind: The 10 Most Important Open Source Projects of 2011 | http://t.co/2u4FbRqU http://t.co/Bt7uHaRI #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:43:58 +0000", "from_user": "hnbot", "from_user_id": 317653311, "from_user_id_str": "317653311", "from_user_name": "Hacker News", "geo": null, "id": 147794119123673100, "id_str": "147794119123673088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1405908372/1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1405908372/1_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl \\n(Discuss on HN - http://t.co/jkcfg7Xd) http://t.co/pbr66ng3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:43:16 +0000", "from_user": "jasonHoyt", "from_user_id": 16515488, "from_user_id_str": "16515488", "from_user_name": "Jason Hoyt", "geo": null, "id": 147793942161801200, "id_str": "147793942161801216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1630910766/croppedCowboyInWales_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630910766/croppedCowboyInWales_normal.jpg", "source": "<a href="http://news.ycombinator.com" rel="nofollow">newsyc</a>", "text": "RT @newsyc20: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Commo http://t.co/HXXb5rXT (http://t.co/0HOrJ5ww) #trending #guru", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:43:14 +0000", "from_user": "BIO_HR", "from_user_id": 234311152, "from_user_id_str": "234311152", "from_user_name": "Ralph Schneider", "geo": null, "id": 147793936482705400, "id_str": "147793936482705409", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1227025829/RS_BIO_SAP_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1227025829/RS_BIO_SAP_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "When HANA meets Hadoop http://t.co/qTMFCvCl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:43:12 +0000", "from_user": "tomohiko_tanaka", "from_user_id": 62513070, "from_user_id_str": "62513070", "from_user_name": "Tomohiko Tanaka", "geo": null, "id": 147793927888580600, "id_str": "147793927888580608", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1315287230/a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1315287230/a_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "\\u3069\\u3053\\u304B\\u306B Hadoop \\u306E\\u8A18\\u4E8B\\u304C\\u3042\\u3063\\u305F\\u306A. \\u6771\\u4EAC\\u306B\\u7F6E\\u3044\\u3066\\u305F\\u304B??", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:39:48 +0000", "from_user": "jbvit_sf", "from_user_id": 156787564, "from_user_id_str": "156787564", "from_user_name": "San Francisco Jobs", "geo": null, "id": 147793068781862900, "id_str": "147793068781862913", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1035961513/jobvite_logo_box_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1035961513/jobvite_logo_box_normal.gif", "source": "<a href="http://jobvite.com" rel="nofollow">Jobvite</a>", "text": "EMC/Greenplum is looking for: Senior Hadoop Software Engineer\\nhttp://t.co/zzNAR5l3 #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:38:14 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 147792677621084160, "id_str": "147792677621084161", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Revolutions: RHadoop update: new tools for Hadoop map-reduce ... http://t.co/PtXmoSAR #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:38:14 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 147792675117072400, "id_str": "147792675117072385", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with ... http://t.co/Kamcfy1l #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:38:02 +0000", "from_user": "astar_alone", "from_user_id": 14126742, "from_user_id_str": "14126742", "from_user_name": "Hollyann Wood", "geo": null, "id": 147792627373309950, "id_str": "147792627373309952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1284255133/hollyprofile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1284255133/hollyprofile_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @infochimps: And if you want to go from zero to Hadoop without using Java, try Wukong: https://t.co/BM7pjwOk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:36:36 +0000", "from_user": "rbonazzo", "from_user_id": 45151505, "from_user_id_str": "45151505", "from_user_name": "Rinaldo Bonazzo", "geo": null, "id": 147792265526517760, "id_str": "147792265526517760", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/252198909/linux_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/252198909/linux_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @HadoopNews: When #HANA meets #Hadoop - http://t.co/fqrBu6LP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:34:14 +0000", "from_user": "harrisj", "from_user_id": 681473, "from_user_id_str": "681473", "from_user_name": "Jacob Harris", "geo": null, "id": 147791667758514180, "id_str": "147791667758514177", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1419244564/alternative_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1419244564/alternative_avatar_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @infochimps: RT @dguyadeen: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl: http://t.co/LkgSIWAl #BigData #Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:33:07 +0000", "from_user": "infochimps", "from_user_id": 15748351, "from_user_id_str": "15748351", "from_user_name": "infochimps", "geo": null, "id": 147791388833095680, "id_str": "147791388833095681", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1652358055/chimpmark_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652358055/chimpmark_normal.gif", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "And if you want to go from zero to Hadoop without using Java, try Wukong: https://t.co/BM7pjwOk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:32:39 +0000", "from_user": "infochimps", "from_user_id": 15748351, "from_user_id_str": "15748351", "from_user_name": "infochimps", "geo": null, "id": 147791269517729800, "id_str": "147791269517729792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1652358055/chimpmark_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652358055/chimpmark_normal.gif", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @dguyadeen: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl: http://t.co/LkgSIWAl #BigData #Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:31:50 +0000", "from_user": "Aloisius", "from_user_id": 14885927, "from_user_id_str": "14885927", "from_user_name": "Jordan Mendelson", "geo": null, "id": 147791064202358800, "id_str": "147791064202358785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/409944731/Joi_photo_of_Jordan_2_cropped_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/409944731/Joi_photo_of_Jordan_2_cropped_normal.jpg", "source": "<a href="http://news.ycombinator.com" rel="nofollow">newsyc</a>", "text": "RT @newsyc20: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Commo http://t.co/HXXb5rXT (http://t.co/0HOrJ5ww) #trending #guru", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:31:27 +0000", "from_user": "boudicca", "from_user_id": 7288362, "from_user_id_str": "7288362", "from_user_name": "Lisa Green", "geo": null, "id": 147790967506862080, "id_str": "147790967506862080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534144474/Lisa_Green_headshot_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534144474/Lisa_Green_headshot_2_normal.jpg", "source": "<a href="http://news.ycombinator.com" rel="nofollow">newsyc</a>", "text": "RT @newsyc20: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Commo http://t.co/HXXb5rXT (http://t.co/0HOrJ5ww) #trending #guru", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:30:07 +0000", "from_user": "newsyc20", "from_user_id": 148969874, "from_user_id_str": "148969874", "from_user_name": "Hacker News 20", "geo": null, "id": 147790631677341700, "id_str": "147790631677341696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1081970640/yclogo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1081970640/yclogo_normal.gif", "source": "<a href="http://news.ycombinator.com" rel="nofollow">newsyc</a>", "text": "MapReduce for the Masses: Zero to Hadoop in 5 minutes with Commo http://t.co/HXXb5rXT (http://t.co/0HOrJ5ww) #trending #guru", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:29:26 +0000", "from_user": "simply_ram", "from_user_id": 312189731, "from_user_id_str": "312189731", "from_user_name": "Ram Raju", "geo": null, "id": 147790462445559800, "id_str": "147790462445559808", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Hadoop and Cassandra - Open Source, and Commercial? http://t.co/rJKsA7Ja", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:28:41 +0000", "from_user": "jrzyshr", "from_user_id": 5658532, "from_user_id_str": "5658532", "from_user_name": "Peter Laudati", "geo": null, "id": 147790274087759870, "id_str": "147790274087759874", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1236117631/PeterBugEyes_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1236117631/PeterBugEyes_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @dennylee: rockin' stuff! #hadooponazure \\u201C@carl_nolan: New blog post: http://t.co/VyO4tPzV - Hadoop Streaming and F# MapReduce (#in)\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:28:27 +0000", "from_user": "chris_brockett", "from_user_id": 244818919, "from_user_id_str": "244818919", "from_user_name": "Chris Brockett", "geo": null, "id": 147790213274538000, "id_str": "147790213274537984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1478328675/chris_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1478328675/chris_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Carls source code for hadoop streaming and #FSharp mapreduce is here: http://t.co/IHFNPSH0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:28:19 +0000", "from_user": "beatriceyik", "from_user_id": 340133870, "from_user_id_str": "340133870", "from_user_name": "beatrice yik", "geo": null, "id": 147790181280391170, "id_str": "147790181280391168", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1459622835/01_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1459622835/01_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hadoop Streaming and F# MapReduce http://t.co/lB1tBmWB Tips", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:28:08 +0000", "from_user": "rickasaurus", "from_user_id": 16377511, "from_user_id_str": "16377511", "from_user_name": "Richard Minerich", "geo": null, "id": 147790132941029380, "id_str": "147790132941029377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1144629758/tweetphoto3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1144629758/tweetphoto3_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @chris_brockett: Carl Nolan blogs on hadoop streaming and #fsharp map reduce http://t.co/UHYpV4G6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:27:11 +0000", "from_user": "chris_brockett", "from_user_id": 244818919, "from_user_id_str": "244818919", "from_user_name": "Chris Brockett", "geo": null, "id": 147789896323575800, "id_str": "147789896323575808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1478328675/chris_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1478328675/chris_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Carl Nolan blogs on hadoop streaming and #fsharp map reduce http://t.co/gmBxsSIj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:26:02 +0000", "from_user": "HNComments", "from_user_id": 103485823, "from_user_id_str": "103485823", "from_user_name": "HN Comments", "geo": null, "id": 147789607847735300, "id_str": "147789607847735296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/622735724/hncomments_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/622735724/hncomments_normal.png", "source": "<a href="https://twitter.com/HNComments" rel="nofollow">HNComments Poster</a>", "text": "MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/PXCt5gzq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:25:49 +0000", "from_user": "lynnlangit", "from_user_id": 3105491, "from_user_id_str": "3105491", "from_user_name": "Lynn Langit", "geo": null, "id": 147789551241412600, "id_str": "147789551241412608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/125258306/meRed_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/125258306/meRed_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @dennylee: rockin' stuff! #hadooponazure \\u201C@carl_nolan: New blog post: http://t.co/VyO4tPzV - Hadoop Streaming and F# MapReduce (#in)\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:25:16 +0000", "from_user": "valb00", "from_user_id": 15373404, "from_user_id_str": "15373404", "from_user_name": "valb00", "geo": null, "id": 147789413383024640, "id_str": "147789413383024640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1162802602/screen-capture-4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1162802602/screen-capture-4_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @dennylee: rockin' stuff! #hadooponazure \\u201C@carl_nolan: New blog post: http://t.co/VyO4tPzV - Hadoop Streaming and F# MapReduce (#in)\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:24:33 +0000", "from_user": "dguyadeen", "from_user_id": 22665665, "from_user_id_str": "22665665", "from_user_name": "Denis Guyadeen", "geo": null, "id": 147789233711611900, "id_str": "147789233711611904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1627510905/imprimes_71f7864038_big_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627510905/imprimes_71f7864038_big_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Towards a Scalable and Highly Available HDFS Namenode: http://t.co/hqAw4ufn /cc @techmilind #Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:23:28 +0000", "from_user": "biddster", "from_user_id": 15233453, "from_user_id_str": "15233453", "from_user_name": "Luke Biddell", "geo": null, "id": 147788958863073280, "id_str": "147788958863073281", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1634260262/31e06l5V_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634260262/31e06l5V_normal", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @dguyadeen: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl: http://t.co/lqGOrnJ4 #BigData #Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:22:39 +0000", "from_user": "mars_chat", "from_user_id": 111609379, "from_user_id_str": "111609379", "from_user_name": "Marcel Naumann", "geo": null, "id": 147788754747269120, "id_str": "147788754747269120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1586768229/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586768229/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ClouderaU: Great job! RT @bramroeland \"Congratulations! You have passed the Cloudera Certified Developer for Apache Hadoop exam\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:21:07 +0000", "from_user": "NHLouisville", "from_user_id": 44166877, "from_user_id_str": "44166877", "from_user_name": "New Horizons Lou KY", "geo": null, "id": 147788366878998530, "id_str": "147788366878998529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/312068085/Louisville_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/312068085/Louisville_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft offers Hadoop preview on Azure http://t.co/t825vm4x ^KH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:21:04 +0000", "from_user": "NHCinDay", "from_user_id": 44126856, "from_user_id_str": "44126856", "from_user_name": "New Horizons CinDay", "geo": null, "id": 147788354556137470, "id_str": "147788354556137472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/393480819/CinciDayOV_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/393480819/CinciDayOV_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft offers Hadoop preview on Azure http://t.co/oGjhIBNF ^KH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:21:04 +0000", "from_user": "NHOklahoma", "from_user_id": 44474003, "from_user_id_str": "44474003", "from_user_name": "New Horizons OK", "geo": null, "id": 147788353973129200, "id_str": "147788353973129217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/312070938/Tulsa_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/312070938/Tulsa_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft offers Hadoop preview on Azure http://t.co/0EJgx7Jb ^KH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:21:03 +0000", "from_user": "nhkc", "from_user_id": 26798392, "from_user_id_str": "26798392", "from_user_name": "New Horizons KC", "geo": null, "id": 147788353796968450, "id_str": "147788353796968448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1230362793/twitterKS_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1230362793/twitterKS_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft offers Hadoop preview on Azure http://t.co/aNeqC7cw ^KH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:21:03 +0000", "from_user": "NHTexas", "from_user_id": 14235764, "from_user_id_str": "14235764", "from_user_name": "New Horizons - Texas", "geo": null, "id": 147788353641783300, "id_str": "147788353641783296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1230349422/twitterTX_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1230349422/twitterTX_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft offers Hadoop preview on Azure http://t.co/suneS8kS ^KH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Fri, 16 Dec 2011 21:19:09 +0000", "from_user": "jonisick", "from_user_id": 93724448, "from_user_id_str": "93724448", "from_user_name": "Joe Onisick", "geo": null, "id": 147787874178310140, "id_str": "147787874178310144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1479643628/IMG_4860-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1479643628/IMG_4860-2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @dguyadeen: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl: http://t.co/lqGOrnJ4 #BigData #Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:18:29 +0000", "from_user": "ctolabs", "from_user_id": 131904084, "from_user_id_str": "131904084", "from_user_name": "Bob Gourley", "geo": null, "id": 147787704720035840, "id_str": "147787704720035841", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1460128489/ctolabs_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1460128489/ctolabs_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "http://t.co/VsKrVMO1 Assessment on \\u201CWhat You Need To Know About Hadoop\\u201D http://t.co/HkCaSpP1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:18:03 +0000", "from_user": "diegocambiaso", "from_user_id": 11545, "from_user_id_str": "11545", "from_user_name": "Pixelco - Diego", "geo": null, "id": 147787598818050050, "id_str": "147787598818050048", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1581501562/djc3_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1581501562/djc3_normal", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @paulacambiaso: Microsoft Azure aloja Hadoop y otras aplicaciones de c\\u00F3digo abierto http://t.co/MWSaansC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:17:00 +0000", "from_user": "dennylee", "from_user_id": 14610285, "from_user_id_str": "14610285", "from_user_name": "dennylee", "geo": null, "id": 147787331607347200, "id_str": "147787331607347201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/996687129/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/996687129/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "rockin' stuff! #hadooponazure \\u201C@carl_nolan: New blog post: http://t.co/VyO4tPzV - Hadoop Streaming and F# MapReduce (#in)\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:15:36 +0000", "from_user": "carl_nolan", "from_user_id": 229081931, "from_user_id_str": "229081931", "from_user_name": "Carl Nolan", "geo": null, "id": 147786980309213200, "id_str": "147786980309213184", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1640851918/Avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640851918/Avatar_normal.png", "source": "<a href="http://explore.live.com/windows-live-writer" rel="nofollow">Windows Live Writer</a>", "text": "New blog post: http://t.co/PUAc1bXb - Hadoop Streaming and F# MapReduce (#in)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:14:38 +0000", "from_user": "paulacambiaso", "from_user_id": 15669392, "from_user_id_str": "15669392", "from_user_name": "paulacambiaso", "geo": null, "id": 147786735546413060, "id_str": "147786735546413056", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1370342197/3f26ee2e-be03-458a-9de9-2eead176546a_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1370342197/3f26ee2e-be03-458a-9de9-2eead176546a_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Microsoft Azure aloja Hadoop y otras aplicaciones de c\\u00F3digo abierto http://t.co/L4FG4aJr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:05:33 +0000", "from_user": "ericmjohn", "from_user_id": 10286992, "from_user_id_str": "10286992", "from_user_name": "Eric M John", "geo": null, "id": 147784450602840060, "id_str": "147784450602840064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/838880155/pic-twitter-bw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/838880155/pic-twitter-bw_normal.jpg", "source": "<a href="http://github.com/d4nt/HNTweets" rel="nofollow">HNTweets Bot</a>", "text": "RT @HNTweets: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl: http://t.co/S9OX304w Comments: http://t.co/L0xAQDNl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:02:11 +0000", "from_user": "flavioclesio", "from_user_id": 240034416, "from_user_id_str": "240034416", "from_user_name": "Fl\\u00E1vio Cl\\u00E9sio", "geo": null, "id": 147783603789627400, "id_str": "147783603789627392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674302765/No_Free_Lunch_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674302765/No_Free_Lunch_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @bigdata: Training Linear Support Vector Machines over Big Data: example in MapReduce/#Hadoop involving tens of millions http://t.co/fQF4stv2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:59:10 +0000", "from_user": "jen_perret", "from_user_id": 59065159, "from_user_id_str": "59065159", "from_user_name": "Jennifer Perret", "geo": null, "id": 147782845572722700, "id_str": "147782845572722688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1399042487/jenp_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1399042487/jenp_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Love the #hadoop on #WindowsAzure demo, looks really easy to use! Currently only available by invitation: https://t.co/ThQUwrtM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:56:28 +0000", "from_user": "gilelbaz", "from_user_id": 20188434, "from_user_id_str": "20188434", "from_user_name": "Gil Elbaz", "geo": null, "id": 147782166582018050, "id_str": "147782166582018050", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/537561331/IMG_2560_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/537561331/IMG_2560_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @commoncrawl: MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl by @stevesalevan http://t.co/cBa5598M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:54:25 +0000", "from_user": "NickJewell", "from_user_id": 14574047, "from_user_id_str": "14574047", "from_user_name": "NickJewell", "geo": null, "id": 147781647402676220, "id_str": "147781647402676225", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1199315104/ProfilePhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1199315104/ProfilePhoto_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "\"MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl\" http://t.co/tsfoJyuK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:50:07 +0000", "from_user": "Aloisius", "from_user_id": 14885927, "from_user_id_str": "14885927", "from_user_name": "Jordan Mendelson", "geo": null, "id": 147780565146402800, "id_str": "147780565146402816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/409944731/Joi_photo_of_Jordan_2_cropped_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/409944731/Joi_photo_of_Jordan_2_cropped_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Webcast on how to crunch Common Crawl's massive public web crawl dataset w/ hadoop http://http://bit.ly/trSH79 (HN http://t.co/ljzFrnCi)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:43:44 +0000", "from_user": "YCHackerNews", "from_user_id": 90440720, "from_user_id_str": "90440720", "from_user_name": "YC Hacker News", "geo": null, "id": 147778962096013300, "id_str": "147778962096013313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/529679802/y_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/529679802/y_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl: Comments:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:40:04 +0000", "from_user": "HackerNewsFP", "from_user_id": 378119541, "from_user_id_str": "378119541", "from_user_name": "HN Front Page", "geo": null, "id": 147778039118446600, "id_str": "147778039118446592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1554908894/yclogo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554908894/yclogo_normal.gif", "source": "<a href="http://no.such.site/" rel="nofollow">hnfp</a>", "text": "MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/rPTFZ0aS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:40:04 +0000", "from_user": "HNTweets", "from_user_id": 116276133, "from_user_id_str": "116276133", "from_user_name": "Hacker News", "geo": null, "id": 147778038438957060, "id_str": "147778038438957056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1369520630/HNTweets_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1369520630/HNTweets_normal.png", "source": "<a href="http://github.com/d4nt/HNTweets" rel="nofollow">HNTweets Bot</a>", "text": "MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl: http://t.co/S9OX304w Comments: http://t.co/L0xAQDNl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:36:22 +0000", "from_user": "davelester", "from_user_id": 2773111, "from_user_id_str": "2773111", "from_user_name": "Dave Lester", "geo": null, "id": 147777105487347700, "id_str": "147777105487347712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1616593005/Screen_shot_2011-10-31_at_8.03.59_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616593005/Screen_shot_2011-10-31_at_8.03.59_PM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @commoncrawl: MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl by @stevesalevan http://t.co/cBa5598M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:35:10 +0000", "from_user": "insightspedia", "from_user_id": 16145206, "from_user_id_str": "16145206", "from_user_name": "Annie Shum", "geo": null, "id": 147776805904990200, "id_str": "147776805904990208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/271913183/Annie2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/271913183/Annie2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "+1 \"Monitoring/mgmt's a bigdata problem to solve\" but \"Hadoop &other bigdata tools no one seems to be using within sys mgmt context @mjasay", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:30:35 +0000", "from_user": "boudicca", "from_user_id": 7288362, "from_user_id_str": "7288362", "from_user_name": "Lisa Green", "geo": null, "id": 147775651536060400, "id_str": "147775651536060418", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534144474/Lisa_Green_headshot_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534144474/Lisa_Green_headshot_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Great new post & video by @stevesalevan MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl by http://t.co/Xzbv2zSF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:26:35 +0000", "from_user": "nsjacob", "from_user_id": 2934781, "from_user_id_str": "2934781", "from_user_name": "Nigel Jacob", "geo": null, "id": 147774644596916220, "id_str": "147774644596916224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1637918310/Nige2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637918310/Nige2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @commoncrawl: MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl by @stevesalevan http://t.co/cBa5598M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:26:06 +0000", "from_user": "hnfirehose", "from_user_id": 213117318, "from_user_id_str": "213117318", "from_user_name": "HN Firehose", "geo": null, "id": 147774524878897150, "id_str": "147774524878897152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "MapReduce for the Masses: Zero to Hadoop in 5 minutes with CommonCrawl: http://t.co/AWwErFoa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:24:59 +0000", "from_user": "carlmalamud", "from_user_id": 17495946, "from_user_id_str": "17495946", "from_user_name": "Carl Malamud", "geo": null, "id": 147774243344625660, "id_str": "147774243344625664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1201420149/panel04_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1201420149/panel04_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @commoncrawl: MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl by @stevesalevan http://t.co/cBa5598M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:21:44 +0000", "from_user": "commoncrawl", "from_user_id": 112806109, "from_user_id_str": "112806109", "from_user_name": "CommonCrawl", "geo": null, "id": 147773422871650300, "id_str": "147773422871650305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1616236973/square-name-white_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616236973/square-name-white_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl by @stevesalevan http://t.co/cBa5598M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:17:24 +0000", "from_user": "PlatenReport", "from_user_id": 102851163, "from_user_id_str": "102851163", "from_user_name": "Floyd Strimling", "geo": null, "id": 147772331798966270, "id_str": "147772331798966272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1594985464/fs-shot1_resized_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1594985464/fs-shot1_resized_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "SAP's #HANA may drive a conversation but #Hadoop drives Big Data http://t.co/TgguRUIM SAP has much to learn about Open & #cloud #cloudera", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:12:55 +0000", "from_user": "sclopit", "from_user_id": 17751344, "from_user_id_str": "17751344", "from_user_name": "stefano bertolo", "geo": null, "id": 147771207478026240, "id_str": "147771207478026241", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/328230716/ste_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/328230716/ste_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @bigdata: Training Linear Support Vector Machines over Big Data: example in MapReduce/#Hadoop involving tens of millions http://t.co/fQF4stv2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:06:06 +0000", "from_user": "Gridflow", "from_user_id": 351754270, "from_user_id_str": "351754270", "from_user_name": "Erick Trolinger", "geo": null, "id": 147769490640355330, "id_str": "147769490640355329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1486637297/Gridflowlogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1486637297/Gridflowlogo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I've always been a fan of the O'reilly tech books. Here's the link at Amazon for an excellent book on Hadoop. http://t.co/mNW5QB52", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:06:02 +0000", "from_user": "d8Pit", "from_user_id": 264394701, "from_user_id_str": "264394701", "from_user_name": "The URL Popularizer", "geo": null, "id": 147769471287824400, "id_str": "147769471287824384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317284522/logo-header_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317284522/logo-header_normal.png", "source": "<a href="http://d8p.it" rel="nofollow">d8P</a>", "text": "RT @ialjkk: How to setup Hadoop inside Amazon EC2 using Rocks+ - YouTube #bigdata | http://t.co/X0R5DgHB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:05:09 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 147769251321749500, "id_str": "147769251321749504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "How to setup Hadoop inside Amazon EC2 using Rocks+ - YouTube http://t.co/jYUERWD4 #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:05:07 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 147769244623450100, "id_str": "147769244623450113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Windows Azure Adds Node.js Support, Hadoop Preview http://t.co/DCg24rie #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:04:03 +0000", "from_user": "Diegoepnl", "from_user_id": 195648226, "from_user_id_str": "195648226", "from_user_name": "Diego", "geo": null, "id": 147768972438290430, "id_str": "147768972438290432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1137264559/Diego_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1137264559/Diego_small_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ClouderaU: Great job! RT @bramroeland \"Congratulations! You have passed the Cloudera Certified Developer for Apache Hadoop exam\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:59:21 +0000", "from_user": "Gridflow", "from_user_id": 351754270, "from_user_id_str": "351754270", "from_user_name": "Erick Trolinger", "geo": null, "id": 147767790005256200, "id_str": "147767790005256193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1486637297/Gridflowlogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1486637297/Gridflowlogo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "VoltDB is an in-memory distributed RDMS that can be implemented with Hadoop and the one I'll probably use. http://t.co/yrm7c9RX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:58:12 +0000", "from_user": "maksim2042", "from_user_id": 153439378, "from_user_id_str": "153439378", "from_user_name": "Maksim Tsvetovat", "geo": null, "id": 147767503928557570, "id_str": "147767503928557568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1429062105/cover_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1429062105/cover_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @bigdata: Training Linear Support Vector Machines over Big Data: example in MapReduce/#Hadoop involving tens of millions http://t.co/fQF4stv2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:56:22 +0000", "from_user": "Gridflow", "from_user_id": 351754270, "from_user_id_str": "351754270", "from_user_name": "Erick Trolinger", "geo": null, "id": 147767042613854200, "id_str": "147767042613854208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1486637297/Gridflowlogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1486637297/Gridflowlogo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I started looking at Hadoop around 2008. It is an opensource implementation of Google's GFS. http://t.co/ZHFi5s5F", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:55:02 +0000", "from_user": "ProgrammingWord", "from_user_id": 158722669, "from_user_id_str": "158722669", "from_user_name": "\\u30D7\\u30ED\\u30B0\\u30E9\\u30DF\\u30F3\\u30B0\\u306B\\u5F79\\u7ACB\\u3064\\u540D\\u8A00\\u30FB\\u6CD5\\u5247", "geo": null, "id": 147766705505042430, "id_str": "147766705505042433", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1101069129/04_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1101069129/04_normal.jpg", "source": "<a href="http://d.hatena.ne.jp/japanrock_pg/" rel="nofollow">\\u30D7\\u30ED\\u30B0\\u30E9\\u30DF\\u30F3\\u30B0\\u3067\\u5F79\\u306B\\u7ACB\\u3064\\u8A00\\u8449</a>", "text": "\\u30CD\\u30C3\\u30C8\\u30EF\\u30FC\\u30AF\\u306E\\u5E2F\\u57DF\\u304C\\u30C7\\u30FC\\u30BF\\u30BB\\u30F3\\u30BF\\u30FC\\u306E\\u74B0\\u5883\\u306B\\u304A\\u3051\\u308B\\u6700\\u3082\\u8CB4\\u91CD\\u306A\\u8CC7\\u6E90\\u3067\\u3042\\u308B by Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:49:41 +0000", "from_user": "joemsie", "from_user_id": 15567239, "from_user_id_str": "15567239", "from_user_name": "Joe Johnson", "geo": null, "id": 147765359980724220, "id_str": "147765359980724224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1388595086/joemsie.1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1388595086/joemsie.1_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @SybaseAnalytics: @forbes lists the #bigdata predictions for 2012, #hadoop could be big http://t.co/3ZVplg8h", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:42:00 +0000", "from_user": "jchs86", "from_user_id": 56546974, "from_user_id_str": "56546974", "from_user_name": "Changsu Jiang", "geo": null, "id": 147763426796646400, "id_str": "147763426796646400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1642839476/image_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642839476/image_bigger_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @ManningBooks: #Hadoop in Practice MEAP launch! 50% off today. Use code hadoop50 http://t.co/lMCtnYZy checkout. http://t.co/bugYvWdh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:37:57 +0000", "from_user": "mauriciomartis", "from_user_id": 164150628, "from_user_id_str": "164150628", "from_user_name": "Mauricio Martis", "geo": null, "id": 147762406020489200, "id_str": "147762406020489216", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1442550350/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1442550350/profile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@albertoholts que tal la entrega de #wence ? est\\u00E1s preparado para la presentaci\\u00F3n de hoy ? #hadoop", "to_user": "albertoholts", "to_user_id": 11178972, "to_user_id_str": "11178972", "to_user_name": "Alberto Holts"}, +{"created_at": "Fri, 16 Dec 2011 19:29:32 +0000", "from_user": "bramroeland", "from_user_id": 234757479, "from_user_id_str": "234757479", "from_user_name": "Bram Roeland", "geo": null, "id": 147760287498518530, "id_str": "147760287498518528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1292444989/profilepic_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1292444989/profilepic_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ClouderaU: Great job! RT @bramroeland \"Congratulations! You have passed the Cloudera Certified Developer for Apache Hadoop exam\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:26:18 +0000", "from_user": "jobshoutnews", "from_user_id": 210196849, "from_user_id_str": "210196849", "from_user_name": "Jobshout", "geo": null, "id": 147759475808419840, "id_str": "147759475808419840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1210231148/Screen_shot_2011-01-08_at_17.16.26_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1210231148/Screen_shot_2011-01-08_at_17.16.26_normal.png", "source": "<a href="http://pluggio.com" rel="nofollow">Pluggio</a>", "text": "Top 10 Companies Looking for People with Hadoop Skills http://t.co/GOuDy2iI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:18:26 +0000", "from_user": "venkat_sahasra", "from_user_id": 321575837, "from_user_id_str": "321575837", "from_user_name": "Venkat Prasad", "geo": null, "id": 147757494977040400, "id_str": "147757494977040384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1406743308/logo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1406743308/logo_normal.gif", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Job: Hadoop Training Program in Quincy, MA http://t.co/hShj4Izr #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:18:13 +0000", "from_user": "trukhinyuri", "from_user_id": 17842396, "from_user_id_str": "17842396", "from_user_name": "Trukhin Yuri", "geo": null, "id": 147757438500741120, "id_str": "147757438500741122", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1669204139/199168_1616087365337_1330943072_1322854_468984_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669204139/199168_1616087365337_1330943072_1322854_468984_n_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@a_abashev \\u0435\\u0441\\u043B\\u0438 \\u0431\\u044B \\u0443 hadoop \\u043D\\u0435 \\u0431\\u044B\\u043B\\u043E \\u0442\\u043E\\u0447\\u043A\\u0438 \\u043F\\u0430\\u0434\\u0435\\u043D\\u0438\\u044F - \\u0435\\u0433\\u043E \\u043C\\u043E\\u0436\\u043D\\u043E \\u0431\\u044B\\u043B\\u043E \\u0431\\u044B \\u0437\\u0430\\u0438\\u0441\\u043F\\u043E\\u043B\\u044C\\u0437\\u043E\\u0432\\u0430\\u0442\\u044C.", "to_user": "a_abashev", "to_user_id": 273005705, "to_user_id_str": "273005705", "to_user_name": "Alexey Abashev", "in_reply_to_status_id": 147756121732546560, "in_reply_to_status_id_str": "147756121732546560"}, +{"created_at": "Fri, 16 Dec 2011 19:12:59 +0000", "from_user": "a_abashev", "from_user_id": 273005705, "from_user_id_str": "273005705", "from_user_name": "Alexey Abashev", "geo": null, "id": 147756121732546560, "id_str": "147756121732546560", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1567951426/00a5c2cdb76ca3192800b777466e402d_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1567951426/00a5c2cdb76ca3192800b777466e402d_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "@trukhinyuri \\u0432 \\u0442\\u0430\\u043A\\u0438\\u0445 \\u0442\\u043E\\u043D\\u043A\\u043E\\u0441\\u0442\\u044F\\u0445 hadoop \\u044F \\u043D\\u0435 \\u043A\\u043E\\u043F\\u0435\\u043D\\u0433\\u0430\\u0433\\u0435\\u043D. \\u041C\\u043E\\u0433\\u0443 \\u0442\\u043E\\u043B\\u044C\\u043A\\u043E \\u043F\\u0440\\u0435\\u0434\\u043B\\u043E\\u0436\\u0438\\u0442\\u044C \\u0432\\u0437\\u044F\\u0442\\u044C \\u0430\\u043C\\u0430\\u0437\\u043E\\u043D\\u043E\\u0432\\u0441\\u043A\\u0438\\u0439 mapreduce \\u0438 \\u043D\\u0435 \\u043F\\u0430\\u0440\\u0438\\u0442\\u044C \\u0441\\u0435\\u0431\\u0435 \\u043C\\u043E\\u0441\\u043A :)", "to_user": "trukhinyuri", "to_user_id": 17842396, "to_user_id_str": "17842396", "to_user_name": "Trukhin Yuri", "in_reply_to_status_id": 147638428094316540, "in_reply_to_status_id_str": "147638428094316545"}, +{"created_at": "Fri, 16 Dec 2011 19:04:50 +0000", "from_user": "hdalen74", "from_user_id": 171903258, "from_user_id_str": "171903258", "from_user_name": "Hermen", "geo": null, "id": 147754069975515140, "id_str": "147754069975515136", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1092444230/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1092444230/image_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Perfect Solution!RT @hansemc Big Data is de brandstof voor Hadoop, de stofzuiger voor ongestructureerde data. datamation.com/data-center/bi\\u2026", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:01:20 +0000", "from_user": "miguno", "from_user_id": 54478231, "from_user_id_str": "54478231", "from_user_name": "Michael G. Noll", "geo": null, "id": 147753190849396740, "id_str": "147753190849396738", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/301367652/Michael_250x250_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/301367652/Michael_250x250_normal.png", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@jonhurlock You're welcome. Glad to hear my Hadoop articles have helped you a little!", "to_user": "jonhurlock", "to_user_id": 11649702, "to_user_id_str": "11649702", "to_user_name": "Jon Hurlock", "in_reply_to_status_id": 147018243515744260, "in_reply_to_status_id_str": "147018243515744257"}, +{"created_at": "Fri, 16 Dec 2011 18:51:33 +0000", "from_user": "soafaq", "from_user_id": 107632498, "from_user_id_str": "107632498", "from_user_name": "soafaq", "geo": null, "id": 147750728163786750, "id_str": "147750728163786753", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/707458000/soafaq_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/707458000/soafaq_normal.jpg", "source": "<a href="http://www.soafaq.de" rel="nofollow">soafaq</a>", "text": "RT @CloudAware: Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure ( heise online ) ::: http://t.co/WRxsoEY3 :: #Hadoop #MSAzure #CloudComputing", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:51:14 +0000", "from_user": "SybaseAnalytics", "from_user_id": 57646918, "from_user_id_str": "57646918", "from_user_name": "Sybase Analytics", "geo": null, "id": 147750649105358850, "id_str": "147750649105358848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/981318939/TWITTERICON3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/981318939/TWITTERICON3_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "@forbes lists the #bigdata predictions for 2012, #hadoop could be big http://t.co/3ZVplg8h", "to_user": "Forbes", "to_user_id": 91478624, "to_user_id_str": "91478624", "to_user_name": "Forbes"}, +{"created_at": "Fri, 16 Dec 2011 18:49:11 +0000", "from_user": "CloudAware", "from_user_id": 110645929, "from_user_id_str": "110645929", "from_user_name": "CloudAware", "geo": null, "id": 147750132639739900, "id_str": "147750132639739905", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/689157241/cloudaware_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/689157241/cloudaware_normal.jpg", "source": "<a href="http://www.soafaq.de" rel="nofollow">soafaq</a>", "text": "Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure ( heise online ) ::: http://t.co/WRxsoEY3 :: #Hadoop #MSAzure #CloudComputing", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:47:47 +0000", "from_user": "mbutterf", "from_user_id": 18646461, "from_user_id_str": "18646461", "from_user_name": "Mike Fleischman", "geo": null, "id": 147749778866970620, "id_str": "147749778866970625", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1461828827/butter_sky_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1461828827/butter_sky_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Not one mention of Hadoop #ExpectToSeeAtBritneysWedding", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:47:18 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 147749657987137540, "id_str": "147749657987137536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "Training Linear Support Vector Machines over Big Data: example in MapReduce/#Hadoop involving tens of millions http://t.co/XB3flKn7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:44:14 +0000", "from_user": "irinifund", "from_user_id": 25057427, "from_user_id_str": "25057427", "from_user_name": "Irini", "geo": null, "id": 147748887678025730, "id_str": "147748887678025729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664402685/005_6A_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664402685/005_6A_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @bigdata: Training Linear Support Vector Machines over Big Data: example in MapReduce/#Hadoop involving tens of millions http://t.co/fQF4stv2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:42:31 +0000", "from_user": "MedicalQuack", "from_user_id": 15248550, "from_user_id_str": "15248550", "from_user_name": "MedicalQuack", "geo": null, "id": 147748456751046660, "id_str": "147748456751046656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/76341733/Dec_2008-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/76341733/Dec_2008-2_normal.jpg", "source": "<a href="http://www.TechHit.com/twinbox/" rel="nofollow">TwInbox</a>", "text": "#Hadoop in #healthcare-Cleveland Clinic has been developing their big data Hadoop platform http://t.co/IkSUGu3V", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:40:29 +0000", "from_user": "bigdata", "from_user_id": 18318677, "from_user_id_str": "18318677", "from_user_name": "Ben Lorica", "geo": null, "id": 147747944873992200, "id_str": "147747944873992194", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/235298259/bigdata_logo_center3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/235298259/bigdata_logo_center3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Training Linear Support Vector Machines over Big Data: example in MapReduce/#Hadoop involving tens of millions http://t.co/fQF4stv2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:39:31 +0000", "from_user": "efalcao", "from_user_id": 7768582, "from_user_id_str": "7768582", "from_user_name": "Eric Falcao", "geo": null, "id": 147747701851820030, "id_str": "147747701851820032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/56687614/a4c156ced4884d5da76d15a8055d6333_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/56687614/a4c156ced4884d5da76d15a8055d6333_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "I have gone so far down the hadoop rabbit hole it's crazy: I just can't settle for anything less than a snappy compressed sequence file", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:38:08 +0000", "from_user": "grep_alex", "from_user_id": 5036491, "from_user_id_str": "5036491", "from_user_name": "Alex Holmes", "geo": null, "id": 147747352466296830, "id_str": "147747352466296832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/312551441/trees_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/312551441/trees_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ManningBooks: @hadoopnews #Hadoop in Practice MEAP launch! 50% off today. Use code hadoop50 at http://t.co/lMCtnYZy checkout.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:37:37 +0000", "from_user": "grep_alex", "from_user_id": 5036491, "from_user_id_str": "5036491", "from_user_name": "Alex Holmes", "geo": null, "id": 147747223290130430, "id_str": "147747223290130432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/312551441/trees_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/312551441/trees_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "RT @ManningBooks: Brand new! We've started the MEAP of Hadoop in Practice! http://t.co/KyAqs6Hc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:37:26 +0000", "from_user": "grep_alex", "from_user_id": 5036491, "from_user_id_str": "5036491", "from_user_name": "Alex Holmes", "geo": null, "id": 147747174871080960, "id_str": "147747174871080962", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/312551441/trees_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/312551441/trees_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @ManningBooks: #Hadoop in Practice MEAP launch! 50% off today. Use code hadoop50 http://t.co/lMCtnYZy checkout. http://t.co/bugYvWdh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:31:31 +0000", "from_user": "Cloud9s", "from_user_id": 14759893, "from_user_id_str": "14759893", "from_user_name": "Kevin Haynes", "geo": null, "id": 147745686811705340, "id_str": "147745686811705344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1333766120/Kevin_sun_glasses_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1333766120/Kevin_sun_glasses_normal.jpg", "source": "<a href="http://paper.li" rel="nofollow">Paper.li</a>", "text": "Hadoop News and Influencers is out! http://t.co/kWfOYKZF \\u25B8 Top stories today via @billsandhill @derrickharris @ibm_infosphere @phunt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:30:13 +0000", "from_user": "MFDVbrokers", "from_user_id": 252756099, "from_user_id_str": "252756099", "from_user_name": "CARL WEIR", "geo": null, "id": 147745360868147200, "id_str": "147745360868147200", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1562211245/mVCTV_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1562211245/mVCTV_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure http://t.co/FoWUFncM via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:28:43 +0000", "from_user": "avkashchauhan", "from_user_id": 213118614, "from_user_id_str": "213118614", "from_user_name": "Avkash Chauhan", "geo": null, "id": 147744983993159680, "id_str": "147744983993159681", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1615647152/asc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615647152/asc_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Resources to use #Hadoop with different programming technology and environments: http://t.co/nZnJBnmO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:28:30 +0000", "from_user": "bestjobsonline", "from_user_id": 237507695, "from_user_id_str": "237507695", "from_user_name": "Best Jobs", "geo": null, "id": 147744926233411600, "id_str": "147744926233411584", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1214148827/bjo_logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1214148827/bjo_logo_normal.png", "source": "<a href="http://www.internships2011.com" rel="nofollow">Best Jobs Online</a>", "text": "Hadoop Administrator - http://t.co/crCvaLsl #jobs #AppleInc #Cupertino", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:16:43 +0000", "from_user": "weeklybi", "from_user_id": 426232831, "from_user_id_str": "426232831", "from_user_name": "BusinessIntelligence", "geo": null, "id": 147741964463382530, "id_str": "147741964463382528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1670309219/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670309219/images_normal.jpg", "source": "<a href="http://businessintelligenceweekly.com" rel="nofollow">Business Intelligence Weekly</a>", "text": "New MapR Hadoop Version Includes Windows, Mac Support http://t.co/QIZHRM5e", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:12:42 +0000", "from_user": "odoenet", "from_user_id": 84098365, "from_user_id_str": "84098365", "from_user_name": "Rene R.", "geo": null, "id": 147740950947561470, "id_str": "147740950947561474", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1269097454/gr_sneakpeak_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1269097454/gr_sneakpeak_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @ManningBooks: #Hadoop in Practice MEAP launch! 50% off today. Use code hadoop50 http://t.co/YUj8cV3t checkout. http://t.co/5420nNLd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:01:36 +0000", "from_user": "Wikibon", "from_user_id": 21509975, "from_user_id_str": "21509975", "from_user_name": "Wikibon", "geo": null, "id": 147738159835394050, "id_str": "147738159835394048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/382767286/BlueBeeMed_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/382767286/BlueBeeMed_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "In-Memory Database Engines Support Real-Time Analytics, Compliment @Hadoop http://t.co/s8A574sP by @jeffreyfkelly", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:01:01 +0000", "from_user": "EnterpriseXbro", "from_user_id": 373060405, "from_user_id_str": "373060405", "from_user_name": "Bella Ashton", "geo": null, "id": 147738010711101440, "id_str": "147738010711101440", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1541764597/1315959067_enterprise_5_hr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541764597/1315959067_enterprise_5_hr_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "When HANA meets Hadoop - ITWorld Canada", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:59:11 +0000", "from_user": "_toch", "from_user_id": 238058879, "from_user_id_str": "238058879", "from_user_name": "ChristophePhilemotte", "geo": null, "id": 147737548687556600, "id_str": "147737548687556608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1690634495/picture_toch_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690634495/picture_toch_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "And you? My Top 3: #Hadoop #jQuery #Git in The 10 Most Important Open Source Projects of 2011 | http://t.co/t4rmf5de http://t.co/saZuPPbJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:55:40 +0000", "from_user": "LearnExcel", "from_user_id": 114589142, "from_user_id_str": "114589142", "from_user_name": "Guruonline-Iwebslog", "geo": null, "id": 147736663815229440, "id_str": "147736663815229440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/698010679/excel_2003_01_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/698010679/excel_2003_01_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "http://t.co/pHoXARdG-Microsoft Tries Hadoop on Azure: s App Engine. Users can build MapReduce jobs. Microsoft... http://t.co/LF24TLSA #Excel", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:46:33 +0000", "from_user": "SQLGal", "from_user_id": 40076709, "from_user_id_str": "40076709", "from_user_name": "Lara Rubbelke", "geo": null, "id": 147734371292561400, "id_str": "147734371292561408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1591841505/WonderWoman2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591841505/WonderWoman2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Covering the curse of the last reducer #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:38:08 +0000", "from_user": "Cloud_Analytics", "from_user_id": 213668992, "from_user_id_str": "213668992", "from_user_name": "Cloud Analytics", "geo": null, "id": 147732254385389570, "id_str": "147732254385389568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1341626314/cloud-computing_analytics_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1341626314/cloud-computing_analytics_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft Tries Hadoop on Azure - SYS-CON Media (press release): It gives Azure Big Data capab... http://t.co/ZIj0hoor #Cloud #Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:34:50 +0000", "from_user": "Incentro_", "from_user_id": 25980296, "from_user_id_str": "25980296", "from_user_name": "Incentro", "geo": null, "id": 147731424039014400, "id_str": "147731424039014401", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1606662323/apple-touch-icon-114x114-precomposed_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606662323/apple-touch-icon-114x114-precomposed_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @mars_chat: Bam! En de volgende Hadoop certificering is binnen! @bramroeland proficiat @Incentro_ Big Data specialist", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:29:27 +0000", "from_user": "BioinfUPR", "from_user_id": 380837835, "from_user_id_str": "380837835", "from_user_name": "Annabelle Conkle", "geo": null, "id": 147730069119434750, "id_str": "147730069119434752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1610616610/avatar-animated-98-1_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610616610/avatar-animated-98-1_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Cloudera Expands Enterprise Management Software For Apache Hadoop With End-to-End Visibility for Big Data Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:29:17 +0000", "from_user": "ClouderaU", "from_user_id": 304590949, "from_user_id_str": "304590949", "from_user_name": "Cloudera University", "geo": null, "id": 147730025754533900, "id_str": "147730025754533888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1562750756/Screen_Shot_2011-09-27_at_11.33.38_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1562750756/Screen_Shot_2011-09-27_at_11.33.38_AM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Great job! RT @bramroeland \"Congratulations! You have passed the Cloudera Certified Developer for Apache Hadoop exam\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:28:35 +0000", "from_user": "sheilahmarhoifi", "from_user_id": 434623716, "from_user_id_str": "434623716", "from_user_name": "sheilah marhoifir", "geo": null, "id": 147729848289341440, "id_str": "147729848289341441", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688253980/9046_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688253980/9046_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure - SYS-CON Media (press release) http://t.co/ghCqkCQU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:27:18 +0000", "from_user": "mcristia", "from_user_id": 8612292, "from_user_id_str": "8612292", "from_user_name": "Michael W Cristiani", "geo": null, "id": 147729527957762050, "id_str": "147729527957762048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/80441361/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/80441361/me_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ColinJWhite: Significant demand for Hadoop-Tableau support. Achieved using Hive. Demand is from a different part of the organization. #bbbt @tableau.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:26:27 +0000", "from_user": "mcristia", "from_user_id": 8612292, "from_user_id_str": "8612292", "from_user_name": "Michael W Cristiani", "geo": null, "id": 147729311045136400, "id_str": "147729311045136384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/80441361/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/80441361/me_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Claudia_Imhoff: #BBBT More on Direct connect & Go: @tableau supports >25 live data sources natively including Hadoop. They also have in-memory data engine", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:25:19 +0000", "from_user": "wiseanalytics", "from_user_id": 15674265, "from_user_id_str": "15674265", "from_user_name": "Lyndsay Wise", "geo": null, "id": 147729028093186050, "id_str": "147729028093186048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1262034460/Pinpoint_Pinpoint__DSC0129_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1262034460/Pinpoint_Pinpoint__DSC0129_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ColinJWhite: Significant demand for Hadoop-Tableau support. Achieved using Hive. Demand is from a different part of the organization. #bbbt @tableau.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:25:11 +0000", "from_user": "ColinJWhite", "from_user_id": 17630419, "from_user_id_str": "17630419", "from_user_name": "Colin White", "geo": null, "id": 147728995805433860, "id_str": "147728995805433856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/70047566/CW_Photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/70047566/CW_Photo_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Significant demand for Hadoop-Tableau support. Achieved using Hive. Demand is from a different part of the organization. #bbbt @tableau.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:24:08 +0000", "from_user": "jenstirrup", "from_user_id": 23242773, "from_user_id_str": "23242773", "from_user_name": "Jen Stirrup", "geo": null, "id": 147728729920122880, "id_str": "147728729920122880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1580691601/JenStirrup_SpeakerPhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580691601/JenStirrup_SpeakerPhoto_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @johnlmyers44: RT @steve_dine: According to @Tableau, they are seeing big demand for #Hadoop. Using, in part, to validate Hadoop implementation #BBBT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:23:39 +0000", "from_user": "ManningBooks", "from_user_id": 24914741, "from_user_id_str": "24914741", "from_user_name": "Manning Publications", "geo": null, "id": 147728609665237000, "id_str": "147728609665236992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/386363365/uglyguy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/386363365/uglyguy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@hadoopnews #Hadoop in Practice MEAP launch! 50% off today. Use code hadoop50 at http://t.co/lMCtnYZy checkout.", "to_user": "HadoopNews", "to_user_id": 251816878, "to_user_id_str": "251816878", "to_user_name": "John Ching"}, +{"created_at": "Fri, 16 Dec 2011 17:23:32 +0000", "from_user": "Melidabqjdf", "from_user_id": 296669946, "from_user_id_str": "296669946", "from_user_name": "Melida Reiling", "geo": null, "id": 147728578925170700, "id_str": "147728578925170688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1349270119/large__raven_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1349270119/large__raven_1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Windows Azure Adds Node.js Support, Hadoop Preview - ReadWriteCloud http://t.co/8BX2OzuS #support", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:23:05 +0000", "from_user": "mcristia", "from_user_id": 8612292, "from_user_id_str": "8612292", "from_user_name": "Michael W Cristiani", "geo": null, "id": 147728464831717380, "id_str": "147728464831717378", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/80441361/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/80441361/me_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @johnlmyers44: RT @steve_dine: According to @Tableau, they are seeing big demand for #Hadoop. Using, in part, to validate Hadoop implementation #BBBT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:22:53 +0000", "from_user": "mcristia", "from_user_id": 8612292, "from_user_id_str": "8612292", "from_user_name": "Michael W Cristiani", "geo": null, "id": 147728415548641280, "id_str": "147728415548641280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/80441361/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/80441361/me_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Claudia_Imhoff: @tableau data sources - Aster, Hadoop Hive, greenplum, DB2, MSFT, Netezza, ParAccel, PostgreSQL, Sybase, Teradata, Vectorwise, Vertica #BBBT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:22:03 +0000", "from_user": "777final777feed", "from_user_id": 81675924, "from_user_id_str": "81675924", "from_user_name": "777final777feed", "geo": null, "id": 147728204273156100, "id_str": "147728204273156096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure: Microsoft added a trial version of Apache's open source Hadoop... http://t.co/RL8JsbO8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:21:36 +0000", "from_user": "chrismattmann", "from_user_id": 71156816, "from_user_id_str": "71156816", "from_user_name": "Chris Mattmann", "geo": null, "id": 147728092822122500, "id_str": "147728092822122496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/835910893/Photo_352_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/835910893/Photo_352_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @ManningBooks: #Hadoop in Practice MEAP launch! 50% off today. Use code hadoop50 http://t.co/lMCtnYZy checkout. http://t.co/bugYvWdh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:21:28 +0000", "from_user": "ManningBooks", "from_user_id": 24914741, "from_user_id_str": "24914741", "from_user_name": "Manning Publications", "geo": null, "id": 147728060710522880, "id_str": "147728060710522882", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/386363365/uglyguy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/386363365/uglyguy_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "#Hadoop in Practice MEAP launch! 50% off today. Use code hadoop50 http://t.co/lMCtnYZy checkout. http://t.co/bugYvWdh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:20:41 +0000", "from_user": "deilicke", "from_user_id": 112239604, "from_user_id_str": "112239604", "from_user_name": "Carla Ag\\u00FCero", "geo": null, "id": 147727860956794880, "id_str": "147727860956794880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1457352435/deilicke_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1457352435/deilicke_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Claudia_Imhoff: @tableau data sources - Aster, Hadoop Hive, greenplum, DB2, MSFT, Netezza, ParAccel, PostgreSQL, Sybase, Teradata, Vectorwise, Vertica #BBBT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:20:34 +0000", "from_user": "wiseanalytics", "from_user_id": 15674265, "from_user_id_str": "15674265", "from_user_name": "Lyndsay Wise", "geo": null, "id": 147727832456511500, "id_str": "147727832456511488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1262034460/Pinpoint_Pinpoint__DSC0129_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1262034460/Pinpoint_Pinpoint__DSC0129_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Claudia_Imhoff: @tableau data sources - Aster, Hadoop Hive, greenplum, DB2, MSFT, Netezza, ParAccel, PostgreSQL, Sybase, Teradata, Vectorwise, Vertica #BBBT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:19:40 +0000", "from_user": "Claudia_Imhoff", "from_user_id": 16534327, "from_user_id_str": "16534327", "from_user_name": "Claudia Imhoff", "geo": null, "id": 147727605704036350, "id_str": "147727605704036352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1398858970/2011_Claudia_in_the_Netherlands_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1398858970/2011_Claudia_in_the_Netherlands_2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@tableau data sources - Aster, Hadoop Hive, greenplum, DB2, MSFT, Netezza, ParAccel, PostgreSQL, Sybase, Teradata, Vectorwise, Vertica #BBBT", "to_user": "tableau", "to_user_id": 14792516, "to_user_id_str": "14792516", "to_user_name": "Tableau Software"}, +{"created_at": "Fri, 16 Dec 2011 17:17:10 +0000", "from_user": "TheBigDataTrap", "from_user_id": 389163301, "from_user_id_str": "389163301", "from_user_name": "The Big Data Trap", "geo": null, "id": 147726976310972400, "id_str": "147726976310972416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1584049409/twitter_prof_-big-data_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584049409/twitter_prof_-big-data_normal.jpg", "source": "<a href="http://trap.it" rel="nofollow">Trapit</a>", "text": "OSS Cloud Comp (google): Cloud Computing: Microsoft Tries Hadoop on Azure - SYS-CON Media (press release) http://t.co/KqJUFpu4 #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:12:43 +0000", "from_user": "jfroma", "from_user_id": 26559849, "from_user_id_str": "26559849", "from_user_name": "Jos\\u00E9 F. Romaniello", "geo": null, "id": 147725858390552580, "id_str": "147725858390552577", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1152169901/avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1152169901/avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jrdothoughts: @Tellago & @tellagostudios technology Dojo today: NodeJS, Hadoop, Solr, MongoDB in Windows Azure", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:07:21 +0000", "from_user": "LeonardoPrietoU", "from_user_id": 403539492, "from_user_id_str": "403539492", "from_user_name": "Leonardo Prieto", "geo": null, "id": 147724506226634750, "id_str": "147724506226634752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1666392453/fotoRS_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666392453/fotoRS_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @IBM_InfoSphere: Understanding Big Data - NEW McGraw-Hill e-book by IBM experts - register & download: http://t.co/sctmv9q2 #bigdata #ibmsoftware #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:04:41 +0000", "from_user": "biomap", "from_user_id": 158380504, "from_user_id_str": "158380504", "from_user_name": "Amandeep Sidhu", "geo": null, "id": 147723834261372930, "id_str": "147723834261372928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1649894835/pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649894835/pic_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @CloudTopics: Cloud Computing: Microsoft Tries Hadoop on Azure: Microsoft added a trial version of Apache... http://t.co/kerdmubB CloudComputingTopics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:03:23 +0000", "from_user": "InstantOnWorld", "from_user_id": 298547006, "from_user_id_str": "298547006", "from_user_name": "Cloud Computing", "geo": null, "id": 147723506988220400, "id_str": "147723506988220416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1353157070/stars_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1353157070/stars_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure: It gives Azure Big Data capabilities and advanced data analyti... http://t.co/H94fOzUt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:02:02 +0000", "from_user": "copperfroghost", "from_user_id": 259989500, "from_user_id_str": "259989500", "from_user_name": "Copper Frog", "geo": null, "id": 147723167996182530, "id_str": "147723167996182528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1261036211/copper-frog-logo-twitter_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1261036211/copper-frog-logo-twitter_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Great work being done to use MySQL Cluster to bring high-avail and scalability to Hadoop HDFS - http://t.co/bVu1n2iV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:58:34 +0000", "from_user": "IBMOptim4Oracle", "from_user_id": 259519535, "from_user_id_str": "259519535", "from_user_name": "IBM InfoSphere Optim", "geo": null, "id": 147722296478547970, "id_str": "147722296478547969", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1278105994/200_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1278105994/200_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @IBM_InfoSphere: Understanding Big Data - NEW McGraw-Hill e-book by IBM experts - register & download: http://t.co/sctmv9q2 #bigdata #ibmsoftware #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:57:13 +0000", "from_user": "BigDataBlogs", "from_user_id": 408520849, "from_user_id_str": "408520849", "from_user_name": "BigData Blogs", "geo": null, "id": 147721954617593860, "id_str": "147721954617593858", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1645240023/CloudBigData-300x239-resized-600_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645240023/CloudBigData-300x239-resized-600_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure: It gives Azure Big Data capabilities and advan... http://t.co/qLLync2L #bigdata #blogs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:55:21 +0000", "from_user": "wesleylong", "from_user_id": 21544956, "from_user_id_str": "21544956", "from_user_name": "Wesley Long", "geo": null, "id": 147721488156471300, "id_str": "147721488156471297", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/81265024/Wesley2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/81265024/Wesley2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure http://t.co/SIowcO5h", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:50:21 +0000", "from_user": "IBM_InfoSphere", "from_user_id": 64781301, "from_user_id_str": "64781301", "from_user_name": "IBM InfoSphere", "geo": null, "id": 147720227394826240, "id_str": "147720227394826240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/357366799/InfoSphere_200x200_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/357366799/InfoSphere_200x200_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Understanding Big Data - NEW McGraw-Hill e-book by IBM experts - register & download: http://t.co/sctmv9q2 #bigdata #ibmsoftware #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:50:10 +0000", "from_user": "softartisans", "from_user_id": 50410463, "from_user_id_str": "50410463", "from_user_name": "SoftArtisans ", "geo": null, "id": 147720180468953100, "id_str": "147720180468953088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/292623405/SAtweet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/292623405/SAtweet_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @prussom \"#Hadoop: Revealing its True Value for Business Intelligence\" http://t.co/sYlWvWf5 #bi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:45:37 +0000", "from_user": "wiseanalytics", "from_user_id": 15674265, "from_user_id_str": "15674265", "from_user_name": "Lyndsay Wise", "geo": null, "id": 147719036988440580, "id_str": "147719036988440576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1262034460/Pinpoint_Pinpoint__DSC0129_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1262034460/Pinpoint_Pinpoint__DSC0129_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Claudia_Imhoff: #BBBT More on Direct connect & Go: @tableau supports >25 live data sources natively including Hadoop. They also have in-memory data engine", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:44:33 +0000", "from_user": "INFAIM", "from_user_id": 145062108, "from_user_id_str": "145062108", "from_user_name": "Julianna DeLua (EIM)", "geo": null, "id": 147718767814770700, "id_str": "147718767814770690", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @BigDataInt: Last #Hadoop Tues webinar slides http://t.co/urbi1lMM Get started w/ #Hadoop @wei_zheng @informaticacorp Charles Zedlewski @cloudera", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:43:32 +0000", "from_user": "Claudia_Imhoff", "from_user_id": 16534327, "from_user_id_str": "16534327", "from_user_name": "Claudia Imhoff", "geo": null, "id": 147718512201314300, "id_str": "147718512201314305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1398858970/2011_Claudia_in_the_Netherlands_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1398858970/2011_Claudia_in_the_Netherlands_2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "#BBBT More on Direct connect & Go: @tableau supports >25 live data sources natively including Hadoop. They also have in-memory data engine", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Fri, 16 Dec 2011 17:12:43 +0000", "from_user": "Tellago", "from_user_id": 56425625, "from_user_id_str": "56425625", "from_user_name": "Tellago", "geo": null, "id": 147725858398945280, "id_str": "147725858398945280", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1359635587/tellago_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1359635587/tellago_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jrdothoughts: @Tellago & @tellagostudios technology Dojo today: NodeJS, Hadoop, Solr, MongoDB in Windows Azure", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:12:43 +0000", "from_user": "jfroma", "from_user_id": 26559849, "from_user_id_str": "26559849", "from_user_name": "Jos\\u00E9 F. Romaniello", "geo": null, "id": 147725858390552580, "id_str": "147725858390552577", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1152169901/avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1152169901/avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jrdothoughts: @Tellago & @tellagostudios technology Dojo today: NodeJS, Hadoop, Solr, MongoDB in Windows Azure", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:10:40 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 147725342348546050, "id_str": "147725342348546048", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hadoop enables distributed 'big data' processing across clouds http://t.co/0NMMCCpJ #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:07:21 +0000", "from_user": "LeonardoPrietoU", "from_user_id": 403539492, "from_user_id_str": "403539492", "from_user_name": "Leonardo Prieto", "geo": null, "id": 147724506226634750, "id_str": "147724506226634752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1666392453/fotoRS_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666392453/fotoRS_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @IBM_InfoSphere: Understanding Big Data - NEW McGraw-Hill e-book by IBM experts - register & download: http://t.co/sctmv9q2 #bigdata #ibmsoftware #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:04:41 +0000", "from_user": "biomap", "from_user_id": 158380504, "from_user_id_str": "158380504", "from_user_name": "Amandeep Sidhu", "geo": null, "id": 147723834261372930, "id_str": "147723834261372928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1649894835/pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649894835/pic_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @CloudTopics: Cloud Computing: Microsoft Tries Hadoop on Azure: Microsoft added a trial version of Apache... http://t.co/kerdmubB CloudComputingTopics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:03:23 +0000", "from_user": "InstantOnWorld", "from_user_id": 298547006, "from_user_id_str": "298547006", "from_user_name": "Cloud Computing", "geo": null, "id": 147723506988220400, "id_str": "147723506988220416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1353157070/stars_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1353157070/stars_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure: It gives Azure Big Data capabilities and advanced data analyti... http://t.co/H94fOzUt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:02:02 +0000", "from_user": "copperfroghost", "from_user_id": 259989500, "from_user_id_str": "259989500", "from_user_name": "Copper Frog", "geo": null, "id": 147723167996182530, "id_str": "147723167996182528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1261036211/copper-frog-logo-twitter_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1261036211/copper-frog-logo-twitter_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Great work being done to use MySQL Cluster to bring high-avail and scalability to Hadoop HDFS - http://t.co/bVu1n2iV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:58:34 +0000", "from_user": "IBMOptim4Oracle", "from_user_id": 259519535, "from_user_id_str": "259519535", "from_user_name": "IBM InfoSphere Optim", "geo": null, "id": 147722296478547970, "id_str": "147722296478547969", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1278105994/200_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1278105994/200_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @IBM_InfoSphere: Understanding Big Data - NEW McGraw-Hill e-book by IBM experts - register & download: http://t.co/sctmv9q2 #bigdata #ibmsoftware #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:57:13 +0000", "from_user": "BigDataBlogs", "from_user_id": 408520849, "from_user_id_str": "408520849", "from_user_name": "BigData Blogs", "geo": null, "id": 147721954617593860, "id_str": "147721954617593858", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1645240023/CloudBigData-300x239-resized-600_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645240023/CloudBigData-300x239-resized-600_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure: It gives Azure Big Data capabilities and advan... http://t.co/qLLync2L #bigdata #blogs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:55:21 +0000", "from_user": "wesleylong", "from_user_id": 21544956, "from_user_id_str": "21544956", "from_user_name": "Wesley Long", "geo": null, "id": 147721488156471300, "id_str": "147721488156471297", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/81265024/Wesley2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/81265024/Wesley2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure http://t.co/SIowcO5h", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:50:21 +0000", "from_user": "IBM_InfoSphere", "from_user_id": 64781301, "from_user_id_str": "64781301", "from_user_name": "IBM InfoSphere", "geo": null, "id": 147720227394826240, "id_str": "147720227394826240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/357366799/InfoSphere_200x200_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/357366799/InfoSphere_200x200_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Understanding Big Data - NEW McGraw-Hill e-book by IBM experts - register & download: http://t.co/sctmv9q2 #bigdata #ibmsoftware #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:50:10 +0000", "from_user": "softartisans", "from_user_id": 50410463, "from_user_id_str": "50410463", "from_user_name": "SoftArtisans ", "geo": null, "id": 147720180468953100, "id_str": "147720180468953088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/292623405/SAtweet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/292623405/SAtweet_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @prussom \"#Hadoop: Revealing its True Value for Business Intelligence\" http://t.co/sYlWvWf5 #bi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:45:37 +0000", "from_user": "wiseanalytics", "from_user_id": 15674265, "from_user_id_str": "15674265", "from_user_name": "Lyndsay Wise", "geo": null, "id": 147719036988440580, "id_str": "147719036988440576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1262034460/Pinpoint_Pinpoint__DSC0129_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1262034460/Pinpoint_Pinpoint__DSC0129_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Claudia_Imhoff: #BBBT More on Direct connect & Go: @tableau supports >25 live data sources natively including Hadoop. They also have in-memory data engine", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:44:33 +0000", "from_user": "INFAIM", "from_user_id": 145062108, "from_user_id_str": "145062108", "from_user_name": "Julianna DeLua (EIM)", "geo": null, "id": 147718767814770700, "id_str": "147718767814770690", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @BigDataInt: Last #Hadoop Tues webinar slides http://t.co/urbi1lMM Get started w/ #Hadoop @wei_zheng @informaticacorp Charles Zedlewski @cloudera", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:43:32 +0000", "from_user": "Claudia_Imhoff", "from_user_id": 16534327, "from_user_id_str": "16534327", "from_user_name": "Claudia Imhoff", "geo": null, "id": 147718512201314300, "id_str": "147718512201314305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1398858970/2011_Claudia_in_the_Netherlands_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1398858970/2011_Claudia_in_the_Netherlands_2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "#BBBT More on Direct connect & Go: @tableau supports >25 live data sources natively including Hadoop. They also have in-memory data engine", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:43:26 +0000", "from_user": "hpccsystems", "from_user_id": 136416356, "from_user_id_str": "136416356", "from_user_name": "HPCC Systems", "geo": null, "id": 147718487568158720, "id_str": "147718487568158720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1385998591/hpccsystems_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1385998591/hpccsystems_twitter_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "#HPCCSystems mentioned as mature #hadoop alternative - http://t.co/PcQRsjhg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:41:13 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 147717929486659600, "id_str": "147717929486659587", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "RT @markwigmans: 8 Most Interesting Companies for #Hadoop's Future http://t.co/q0DntXhL #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:41:13 +0000", "from_user": "douwen", "from_user_id": 31627529, "from_user_id_str": "31627529", "from_user_name": "Wen Dou", "geo": null, "id": 147717928744255500, "id_str": "147717928744255488", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1175372450/IMG_0080_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1175372450/IMG_0080_normal.jpg", "source": "<a href="http://fanfou.com" rel="nofollow">fanfou2.0</a>", "text": "\\u4EE5\\u524D\\u6709\\u4E2A\\u60F3\\u6CD5\\uFF0C\\u4E91\\u8BA1\\u7B97\\u7684\\u4E00\\u79CD\\u5F62\\u5F0F\\u5E94\\u8BE5\\u662F\\u5411\\u4E91\\u8BF7\\u6C42\\u8FD0\\u7B97\\u672C\\u5730\\u6570\\u636E\\u7684\\u4EE3\\u7801\\u3002\\u4ECA\\u5929\\u7EC8\\u4E8E\\u770B\\u5230hadoop\\u5C31\\u662F\\u201C\\u4EE3\\u7801\\u8D70\\u5411\\u6570\\u636E\\u201D\\u7684\\u8BBE\\u8BA1\\u7406\\u5FF5\\uFF0C\\u4E0D\\u8FC7\\u524D\\u63D0\\u662F\\u201C\\u672C\\u5730\\u201D\\u662F\\u4E91\\u7684\\u4E00\\u4E2A\\u8282\\u70B9\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:40:54 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 147717848565956600, "id_str": "147717848565956609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @DataMgmtUK: Is Hadoop the future of enterprise data warehousing? Groupon and NYSE trying to solve big data issues, moving to Hadoop http://t.co/d31DXu0B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:40:46 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 147717816320135170, "id_str": "147717816320135168", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @ialjkk: [#HDFS-2649] eclipse:eclipse build fails for hadoop-hdfs-httpfs ... http://t.co/zLTZOaTx #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:40:32 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 147717758023507970, "id_str": "147717758023507970", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @ialjkk: hadoop - HDFS distributed reads without Map/Reduce - Stack ... http://t.co/zsu1slIr #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:40:28 +0000", "from_user": "cathrinelungrin", "from_user_id": 434636600, "from_user_id_str": "434636600", "from_user_name": "cathrine lungrin", "geo": null, "id": 147717740990431230, "id_str": "147717740990431233", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688296112/96754615_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688296112/96754615_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure - SYS-CON Media (press release) http://t.co/2TqkrtJV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:40:21 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 147717712766967800, "id_str": "147717712766967809", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @stevehebert: A nice walkthru of hadoop on azure http://t.co/PTUS4PxI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:40:14 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 147717681561337860, "id_str": "147717681561337857", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @BigDataBlogs: 2012 Predictions \\u2013 Big Data, Bulk Load, Cloud Computing, Hadoop ...: Predictions for the year 20... http://t.co/6BKJ2kPu #bigdata #blogs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:40:04 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 147717637957365760, "id_str": "147717637957365760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @maxmether: #MySQL Cluster used to improve availability of #Hadoop File system (HDFS): http://t.co/AihMqcnP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:39:50 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 147717581992763400, "id_str": "147717581992763393", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jrdothoughts: @Tellago & @tellagostudios technology Dojo today: NodeJS, Hadoop, Solr, MongoDB in Windows Azure", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:38:45 +0000", "from_user": "jasonbaldridge", "from_user_id": 119837224, "from_user_id_str": "119837224", "from_user_name": "Jason Baldridge", "geo": null, "id": 147717308956164100, "id_str": "147717308956164099", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1269490811/jason_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1269490811/jason_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @josephreisinger: Glimmers of a _real_ machine learning system for Hadoop via vw allreduce http://t.co/4Pskbuwd \\n#NIPS2011 big learning http://t.co/zT7X3rJi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:34:22 +0000", "from_user": "JWSdan", "from_user_id": 39823566, "from_user_id_str": "39823566", "from_user_name": "Dan Griffin", "geo": null, "id": 147716207137669120, "id_str": "147716207137669120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/287785422/HeadShot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/287785422/HeadShot_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Comic explaining Hadoop Distributed File System (HDFS): http://t.co/tUj7huok = Edutainment!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:31:53 +0000", "from_user": "jrdothoughts", "from_user_id": 375678020, "from_user_id_str": "375678020", "from_user_name": "Jesus Rodriguez", "geo": null, "id": 147715579166457860, "id_str": "147715579166457856", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1548567084/JR_Headshot_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1548567084/JR_Headshot_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@Tellago & @tellagostudios technology Dojo today: NodeJS, Hadoop, Solr, MongoDB in Windows Azure", "to_user": "Tellago", "to_user_id": 56425625, "to_user_id_str": "56425625", "to_user_name": "Tellago"}, +{"created_at": "Fri, 16 Dec 2011 16:30:04 +0000", "from_user": "MySQLBot_en", "from_user_id": 305160384, "from_user_id_str": "305160384", "from_user_name": "MySQLBot_en", "geo": null, "id": 147715122494836740, "id_str": "147715122494836736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1368954854/mysql_100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1368954854/mysql_100_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @maxmether: #MySQL Cluster used to improve availability of #Hadoop File system (HDFS): http://t.co/AihMqcnP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:26:47 +0000", "from_user": "benlee", "from_user_id": 786148, "from_user_id_str": "786148", "from_user_name": "Ben Lee", "geo": null, "id": 147714297819172860, "id_str": "147714297819172865", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1286841019/madmen_icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1286841019/madmen_icon_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @josephreisinger: Glimmers of a _real_ machine learning system for Hadoop via vw allreduce http://t.co/4Pskbuwd \\n#NIPS2011 big learning http://t.co/zT7X3rJi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:26:05 +0000", "from_user": "hpccsystems", "from_user_id": 136416356, "from_user_id_str": "136416356", "from_user_name": "HPCC Systems", "geo": null, "id": 147714122740531200, "id_str": "147714122740531200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1385998591/hpccsystems_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1385998591/hpccsystems_twitter_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "RT @AAinslie: \"We are four faster than Hadoop on the Thor side. If Hadoop needs 1,000 nodes we can do it with 250\" http://t.co/TXu5uxvc #HPCC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:25:10 +0000", "from_user": "BigDataBlogs", "from_user_id": 408520849, "from_user_id_str": "408520849", "from_user_name": "BigData Blogs", "geo": null, "id": 147713888358633470, "id_str": "147713888358633472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1645240023/CloudBigData-300x239-resized-600_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645240023/CloudBigData-300x239-resized-600_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "2012 Predictions \\u2013 Big Data, Bulk Load, Cloud Computing, Hadoop ...: Predictions for the year 20... http://t.co/6BKJ2kPu #bigdata #blogs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:23:20 +0000", "from_user": "stevehebert", "from_user_id": 36799815, "from_user_id_str": "36799815", "from_user_name": "Steve Hebert", "geo": null, "id": 147713428402864130, "id_str": "147713428402864129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1204913250/daf24738-b8d1-4b62-9bc7-9b9041369616_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1204913250/daf24738-b8d1-4b62-9bc7-9b9041369616_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "A nice walkthru of hadoop on azure http://t.co/PTUS4PxI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:23:10 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 147713388112384000, "id_str": "147713388112384000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "hadoop - HDFS distributed reads without Map/Reduce - Stack ... http://t.co/zsu1slIr #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:22:17 +0000", "from_user": "onedump", "from_user_id": 97601403, "from_user_id_str": "97601403", "from_user_name": "\\u8FDF\\u6587", "geo": null, "id": 147713163318665200, "id_str": "147713163318665216", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/938083277/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/938083277/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@ninayan \\u8BDD\\u8BF4hadoop\\u8FD9\\u4E2A\\u4E1C\\u897F\\u8FD8\\u662F\\u6211\\u8FDB\\u4E86baidu\\u540E\\u624D\\u63A5\\u89E6\\u7684\\u3002\\u3002\\u3002\\u6CA1\\u60F3\\u5230\\u5B83\\u4E00\\u76F4\\u90FD\\u90A3\\u4E48\\u706B\\u3002\\u3002\\u3002", "to_user": "ninayan", "to_user_id": 15262903, "to_user_id_str": "15262903", "to_user_name": "\\u5C0F\\u8A00\\u541B", "in_reply_to_status_id": 147707844987334660, "in_reply_to_status_id_str": "147707844987334656"}, +{"created_at": "Fri, 16 Dec 2011 16:21:31 +0000", "from_user": "GrupoMVSolucion", "from_user_id": 360271706, "from_user_id_str": "360271706", "from_user_name": "Grupo M.V Soluciones", "geo": null, "id": 147712971857080320, "id_str": "147712971857080322", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1541675696/331957_218086794913146_190305511024608_526593_545320030_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541675696/331957_218086794913146_190305511024608_526593_545320030_o_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Microsoft Azure aloja Hadoop y otras aplicaciones de c\\u00F3digo abierto http://t.co/jESiCFQ1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:19:09 +0000", "from_user": "greenplummy", "from_user_id": 327237588, "from_user_id_str": "327237588", "from_user_name": "Greenplum \\u597D\\u304D", "geo": null, "id": 147712375196368900, "id_str": "147712375196368897", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1421559281/greenplum_icon_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1421559281/greenplum_icon_normal.gif", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\\u300CC/C++ libhdfs\\u306E\\u5B9F\\u88C5\\u306B\\u3088\\u308AJava\\u4EEE\\u60F3\\u30DE\\u30B7\\u30F3\\u3092\\u56DE\\u907F\\u3057\\u3066\\u30D5\\u30A1\\u30A4\\u30EB\\u30B7\\u30B9\\u30C6\\u30E0\\u306B\\u30A2\\u30AF\\u30BB\\u30B9\\u300D\\u300CMapReduce 2.0\\u5BFE\\u5FDC\\u300D\\u7C73MapR\\u3001MapReduce 2.0\\u306B\\u5BFE\\u5FDC\\u3057\\u305FApache Hadoop\\u30C7\\u30A3\\u30B9\\u30C8\\u30ED\\u300CMapR 1.2\\u300D\\u3092\\u767A\\u8868http://t.co/bj8XpBC7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:18:55 +0000", "from_user": "skedasis", "from_user_id": 239074975, "from_user_id_str": "239074975", "from_user_name": "Hamilton Ulmer", "geo": null, "id": 147712315901485060, "id_str": "147712315901485057", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1218707649/contact_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218707649/contact_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @josephreisinger: Glimmers of a _real_ machine learning system for Hadoop via vw allreduce http://t.co/4Pskbuwd \\n#NIPS2011 big learning http://t.co/zT7X3rJi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:15:55 +0000", "from_user": "maxmether", "from_user_id": 111616130, "from_user_id_str": "111616130", "from_user_name": "Max Mether", "geo": null, "id": 147711561820147700, "id_str": "147711561820147712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1645301328/IMG_0989_pw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645301328/IMG_0989_pw_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#MySQL Cluster used to improve availability of #Hadoop File system (HDFS): http://t.co/AihMqcnP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:13:23 +0000", "from_user": "ChrisDiehl", "from_user_id": 14595061, "from_user_id_str": "14595061", "from_user_name": "Chris Diehl", "geo": null, "id": 147710924814434300, "id_str": "147710924814434304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/660241500/ZionSmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/660241500/ZionSmall_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @josephreisinger: Glimmers of a _real_ machine learning system for Hadoop via vw allreduce http://t.co/4Pskbuwd \\n#NIPS2011 big learning http://t.co/zT7X3rJi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:13:22 +0000", "from_user": "ninayan", "from_user_id": 15262903, "from_user_id_str": "15262903", "from_user_name": "\\u5C0F\\u8A00\\u541B", "geo": null, "id": 147710922012639230, "id_str": "147710922012639233", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1494124280/ttw_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1494124280/ttw_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@aleksejevski //-\\\\ \\u5F88\\u7B80\\u5355\\u7684\\u73A9\\u610F\\u513F\\uFF0C\\u5C31\\u7528\\u5230\\u4E00\\u4E0B\\u4E0Bhadoop", "to_user": "aleksejevski", "to_user_id": 108292948, "to_user_id_str": "108292948", "to_user_name": "iAlex", "in_reply_to_status_id": 147710615056695300, "in_reply_to_status_id_str": "147710615056695296"}, +{"created_at": "Fri, 16 Dec 2011 16:09:39 +0000", "from_user": "AugmentedAdvert", "from_user_id": 25044297, "from_user_id_str": "25044297", "from_user_name": "AugmentedAdvertising", "geo": null, "id": 147709983579050000, "id_str": "147709983579049984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/101274714/patternpers_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/101274714/patternpers_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT: Had a conversation lat night with a friend about the intersection of Augmented Reality w/ Hadoop that has m... http://t.co/9Q73tVha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:08:37 +0000", "from_user": "myalltop_paul", "from_user_id": 216075147, "from_user_id_str": "216075147", "from_user_name": "MyAllTop - Cloud", "geo": null, "id": 147709726514360320, "id_str": "147709726514360320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure - SYS-CON Media (press release) http://t.co/jwW3Q1OA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:05:32 +0000", "from_user": "grigz", "from_user_id": 24448708, "from_user_id_str": "24448708", "from_user_name": "Dan Bettinger", "geo": null, "id": 147708947455942660, "id_str": "147708947455942657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1488105225/2db7ca8_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1488105225/2db7ca8_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Had a conversation lat night with a friend about the intersection of Augmented Reality w/ Hadoop that has my mind churning", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:04:18 +0000", "from_user": "greenplummy", "from_user_id": 327237588, "from_user_id_str": "327237588", "from_user_name": "Greenplum \\u597D\\u304D", "geo": null, "id": 147708637215862800, "id_str": "147708637215862784", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1421559281/greenplum_icon_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1421559281/greenplum_icon_normal.gif", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "EMC\\u306FGreenplum\\u30C7\\u30FC\\u30BF\\u30D9\\u30FC\\u30B9\\uFF0BHadoop\\uFF0B\\u30C7\\u30FC\\u30BF\\u5206\\u6790\\u30B3\\u30E9\\u30DC\\u30C4\\u30FC\\u30EBChorus\\u3092\\u7D44\\u307F\\u5408\\u308F\\u305B\\u305F\\u7D71\\u5408\\u5206\\u6790\\u30D7\\u30E9\\u30C3\\u30C8\\u30D5\\u30A9\\u30FC\\u30E0\\u3092\\u767A\\u8868\\u3002EMC Greenplum puts a social spin on big\\u00A0data http://t.co/aqaInpEc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:02:29 +0000", "from_user": "aleksejevski", "from_user_id": 108292948, "from_user_id_str": "108292948", "from_user_name": "iAlex", "geo": null, "id": 147708180154167300, "id_str": "147708180154167296", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1643562673/455949_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643562673/455949_1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ninayan hadoop\\u770B\\u4E86\\u4E00\\u4E0B\\uFF0C\\u5F53\\u65F6\\u89C9\\u5F97\\u8FD9\\u8D27\\u5F88\\u6298\\u78E8\\u4EBA\\u2026\\u2026\\u4E8E\\u662F\\u51B3\\u5B9A\\u6682\\u65F6\\u6401\\u7F6E\\u2026\\u2026", "to_user": "ninayan", "to_user_id": 15262903, "to_user_id_str": "15262903", "to_user_name": "\\u5C0F\\u8A00\\u541B", "in_reply_to_status_id": 147707844987334660, "in_reply_to_status_id_str": "147707844987334656"}, +{"created_at": "Fri, 16 Dec 2011 16:02:25 +0000", "from_user": "barneybeal", "from_user_id": 15088822, "from_user_id_str": "15088822", "from_user_name": "barneybeal", "geo": null, "id": 147708163569893380, "id_str": "147708163569893376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/720403844/new-twitter_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/720403844/new-twitter_normal.gif", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @DataMgmtUK: Is Hadoop the future of enterprise DW? Groupon + NYSE trying to solve big data issues, moving to Hadoop http://t.co/alFhGkW8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:01:10 +0000", "from_user": "Brunola88", "from_user_id": 146161097, "from_user_id_str": "146161097", "from_user_name": "Mark Brunelli", "geo": null, "id": 147707849278103550, "id_str": "147707849278103552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/916439724/markPick_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/916439724/markPick_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @DataMgmtUK: Is Hadoop the future of enterprise data warehousing? Groupon and NYSE trying to solve big data issues, moving to Hadoop http://t.co/d31DXu0B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:01:09 +0000", "from_user": "ninayan", "from_user_id": 15262903, "from_user_id_str": "15262903", "from_user_name": "\\u5C0F\\u8A00\\u541B", "geo": null, "id": 147707844987334660, "id_str": "147707844987334656", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1494124280/ttw_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1494124280/ttw_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u767E\\u5EA6\\u77E5\\u9053\\u63A8\\u8350\\u8BF4\\u7B49\\u5F85\\u4F60\\u6765\\u56DE\\u7B54\\u7684\\u95EE\\u9898\\uFF0C\\u653E\\u773C\\u671B\\u53BB\\u5168\\u662Fhadoop\\u3002\\u3002\\u3002\\u610F\\u601D\\u662F\\u6211\\u6700\\u8FD1\\u7528\\u767E\\u5EA6\\u522B\\u7684\\u6CA1\\u641C\\uFF0C\\u5149\\u641Chadoop\\u4E86\\u3002\\u3002\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:00:11 +0000", "from_user": "rolandbouman", "from_user_id": 51754021, "from_user_id_str": "51754021", "from_user_name": "Roland Bouman", "geo": null, "id": 147707602724323330, "id_str": "147707602724323328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/287001025/roland_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/287001025/roland_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@mjasay They had no choice, but considering what they could've done wrong, they're doing great. Hadoop is also proxy to sell more SQL server", "to_user": "mjasay", "to_user_id": 7617702, "to_user_id_str": "7617702", "to_user_name": "Matt Asay", "in_reply_to_status_id": 147706397851791360, "in_reply_to_status_id_str": "147706397851791361"}, +{"created_at": "Fri, 16 Dec 2011 15:58:03 +0000", "from_user": "markwigmans", "from_user_id": 7527532, "from_user_id_str": "7527532", "from_user_name": "Mark Wigmans", "geo": null, "id": 147707065085853700, "id_str": "147707065085853696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/837273831/MWI_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/837273831/MWI_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "8 Most Interesting Companies for #Hadoop's Future http://t.co/q0DntXhL #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:56:49 +0000", "from_user": "greenplummy", "from_user_id": 327237588, "from_user_id_str": "327237588", "from_user_name": "Greenplum \\u597D\\u304D", "geo": null, "id": 147706754216624130, "id_str": "147706754216624129", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1421559281/greenplum_icon_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1421559281/greenplum_icon_normal.gif", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\\u30A4\\u30F3\\u30B5\\u30A4\\u30C9 MapR (1) \\uFF08Hadoop \\u30A2\\u30C9\\u30D9\\u30F3\\u30C8\\u30AB\\u30EC\\u30F3\\u30C0\\u30FC 2011 16\\u65E5\\u76EE\\uFF09 - nagix (id:nagixx) http://t.co/9LKJPrDe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:52:27 +0000", "from_user": "CarlaSchroder", "from_user_id": 268381487, "from_user_id_str": "268381487", "from_user_name": "Carla Schroder", "geo": null, "id": 147705658328879100, "id_str": "147705658328879104", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1278286960/carla_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1278286960/carla_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @openlogic: LexixNexis Open Sources Hadoop Challenger http://t.co/F5pak36G via @regvulture #opensource", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:49:47 +0000", "from_user": "HadoopNews", "from_user_id": 251816878, "from_user_id_str": "251816878", "from_user_name": "John Ching", "geo": null, "id": 147704985822564350, "id_str": "147704985822564352", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1244235692/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1244235692/images_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "When #HANA meets #Hadoop - http://t.co/fqrBu6LP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:46:21 +0000", "from_user": "archiereed", "from_user_id": 21903567, "from_user_id_str": "21903567", "from_user_name": "Archie Reed", "geo": null, "id": 147704121863057400, "id_str": "147704121863057408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1106789661/HeadshotScribble1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1106789661/HeadshotScribble1_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Cloud Computing: Microsoft Tries Hadoop on Azure - SYS-CON Media (press release): SYS-CON Media (press release)... http://t.co/otgk9LLS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:46:20 +0000", "from_user": "archiereed", "from_user_id": 21903567, "from_user_id_str": "21903567", "from_user_name": "Archie Reed", "geo": null, "id": 147704118243368960, "id_str": "147704118243368961", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1106789661/HeadshotScribble1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1106789661/HeadshotScribble1_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Cloud Computing: Microsoft Tries Hadoop on Azure: Microsoft added a trial version of Apache\\u2019s open source Hadoo... http://t.co/3LlzaeMx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:45:10 +0000", "from_user": "mikegil", "from_user_id": 14346341, "from_user_id_str": "14346341", "from_user_name": "mikegil", "geo": null, "id": 147703823551574000, "id_str": "147703823551574016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1513465907/cropped_MG_background_bio_pic_--_color_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1513465907/cropped_MG_background_bio_pic_--_color_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @softartisans: \"\\u201CThe problem with #SQLServer is that it doesn\\u2019t have a dog.\\u201D\" http://t.co/lSCLORKt @BrentO >>or an elephant #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:37:21 +0000", "from_user": "jim68000", "from_user_id": 6613562, "from_user_id_str": "6613562", "from_user_name": "Jim Smith", "geo": null, "id": 147701857438011400, "id_str": "147701857438011392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695455238/Untitled-1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695455238/Untitled-1_normal.png", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "Waiting for my joins to anneal. This might require a weekend. Or I might have asked Hadoop for the impossible.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:29:02 +0000", "from_user": "patterngazer", "from_user_id": 259706997, "from_user_id_str": "259706997", "from_user_name": "Marc-Daniel Ortega", "geo": null, "id": 147699764589375500, "id_str": "147699764589375489", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1263491324/thumper_mini_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263491324/thumper_mini_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "RT @ManningBooks: Brand new! We've started the MEAP of Hadoop in Practice! http://t.co/KyAqs6Hc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:28:53 +0000", "from_user": "shiumachi", "from_user_id": 11370182, "from_user_id_str": "11370182", "from_user_name": "Sho Shimauchi", "geo": null, "id": 147699724215005200, "id_str": "147699724215005184", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1112990537/2006-06-04_002_bigger_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1112990537/2006-06-04_002_bigger_normal.png", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "@cocoatomo \\u3044\\u3084\\u3001\\u5358\\u306B\\u300Chadoop \\u306E\\u3053\\u3068\\u306F\\u3055\\u3066\\u304A\\u304D\\u3001\\u4ECA\\u65E5\\u306F\\u6570\\u5B66\\u306E\\u8A71\\u3092\\u3057\\u307E\\u3059\\u300D\\u3067\\u5EF6\\u3005\\u8A9E\\u3063\\u3066\\u304F\\u308C\\u3066\\u3082\\u3088\\u304B\\u3063\\u305F\\u3093\\u3060\\u305C\\uFF01", "to_user": "cocoatomo", "to_user_id": 7590702, "to_user_id_str": "7590702", "to_user_name": "tomo", "in_reply_to_status_id": 147699017067937800, "in_reply_to_status_id_str": "147699017067937792"}, +{"created_at": "Fri, 16 Dec 2011 15:27:08 +0000", "from_user": "ManningBooks", "from_user_id": 24914741, "from_user_id_str": "24914741", "from_user_name": "Manning Publications", "geo": null, "id": 147699283712409600, "id_str": "147699283712409601", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/386363365/uglyguy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/386363365/uglyguy_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "Brand new! We've started the MEAP of Hadoop in Practice! http://t.co/KyAqs6Hc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:26:04 +0000", "from_user": "cocoatomo", "from_user_id": 7590702, "from_user_id_str": "7590702", "from_user_name": "tomo", "geo": null, "id": 147699017067937800, "id_str": "147699017067937792", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1203705270/cbef4ed7-31d4-47a7-9e71-6316eead3ae4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1203705270/cbef4ed7-31d4-47a7-9e71-6316eead3ae4_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@shiumachi \\u304A\\u30FC\\u305D\\u308C\\u306F\\u3059\\u307E\\u3093. Hadoop \\u3067\\u6570\\u5B66\\u3068\\u8A00\\u3063\\u3066\\u3082, \\u4FFA\\u3084\\u3063\\u3066\\u305F\\u306E\\u7D14\\u7C8B\\u6570\\u5B66\\u3060\\u3063\\u305F\\u3057. \\u5FDC\\u7528 (\\u3068\\u547C\\u3070\\u308C\\u3066\\u305F\\u65B9) \\u306F\\u3042\\u3093\\u307E\\u308A\\u77E5\\u3089\\u3093\\u306E\\u3088.", "to_user": "shiumachi", "to_user_id": 11370182, "to_user_id_str": "11370182", "to_user_name": "Sho Shimauchi", "in_reply_to_status_id": 147698431111073800, "in_reply_to_status_id_str": "147698431111073792"}, +{"created_at": "Fri, 16 Dec 2011 15:25:23 +0000", "from_user": "inquire", "from_user_id": 14387034, "from_user_id_str": "14387034", "from_user_name": "inquire", "geo": null, "id": 147698845403455500, "id_str": "147698845403455488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/479402044/we_start_today_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/479402044/we_start_today_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "It's such a bad idea that Apache's Hadoop examples all use the deprecated API! #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:21:02 +0000", "from_user": "cocoatomo", "from_user_id": 7590702, "from_user_id_str": "7590702", "from_user_name": "tomo", "geo": null, "id": 147697749863833600, "id_str": "147697749863833600", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1203705270/cbef4ed7-31d4-47a7-9e71-6316eead3ae4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1203705270/cbef4ed7-31d4-47a7-9e71-6316eead3ae4_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\\u8272\\u3005\\u3042\\u305F\\u3075\\u305F\\u3057\\u306A\\u304C\\u3089\\u66F8\\u3044\\u305F. > \\u6700\\u3082\\u901F\\u304F Hadoop \\u74B0\\u5883\\u3092\\u624B\\u306B\\u5165\\u308C\\u308B\\u65B9\\u6CD5 - Elliptium http://t.co/QlM9Ymmy via @cocoatomo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:20:28 +0000", "from_user": "cocoatomo", "from_user_id": 7590702, "from_user_id_str": "7590702", "from_user_name": "tomo", "geo": null, "id": 147697606519291900, "id_str": "147697606519291906", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1203705270/cbef4ed7-31d4-47a7-9e71-6316eead3ae4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1203705270/cbef4ed7-31d4-47a7-9e71-6316eead3ae4_normal.png", "source": "<a href="http://www.zusaar.com/" rel="nofollow">Zusaar</a>", "text": "16\\u65E5\\u76EE\\u306E\\u65B9\\u304C\\u3044\\u305F\\u306E\\u3092\\u5FD8\\u308C\\u3066\\u307E\\u3057\\u305F. 15\\u65E5\\u76EE\\u3068\\u3057\\u3066\\u63D0\\u51FA\\u3057\\u307E\\u3059. http://t.co/QlM9Ymmy / hadoop\\u30A2\\u30C9\\u30D9\\u30F3\\u30C8\\u30AB\\u30EC\\u30F3\\u30C0\\u30FC2011 http://t.co/SXMNbOav #zusaar", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:19:56 +0000", "from_user": "followbotlist", "from_user_id": 420104059, "from_user_id_str": "420104059", "from_user_name": "\\u3076\\u308D\\u3063\\u304F\\u308A\\u3059\\u3068", "geo": null, "id": 147697475661213700, "id_str": "147697475661213697", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twittbot.net/" rel="nofollow">twittbot.net</a>", "text": "C\\u8A00\\u8A9E/C++/C#/F#/PHP/Perl/Ruby/Python/Lisp/Prolog/ML/Haskell/HTML5/VB/Basic/\\u30A6\\u30A7\\u30D6\\u30C7\\u30B6\\u30A4\\u30F3/\\u30EC\\u30F3\\u30BF\\u30EB\\u30B5\\u30FC\\u30D0/CGI/\\u30BB\\u30AD\\u30E5\\u30EA\\u30C6\\u30A3/FLASH/Web/\\u30BD\\u30FC\\u30B7\\u30E3\\u30EB/SNS/\\u30B0\\u30EB\\u30FC\\u30D7\\u30A6\\u30A7\\u30A2/Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:17:07 +0000", "from_user": "Heart_Beacon", "from_user_id": 30452090, "from_user_id_str": "30452090", "from_user_name": "Steven J. McGee", "geo": null, "id": 147696763158020100, "id_str": "147696763158020096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/458196056/heartbeat_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/458196056/heartbeat_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "IBM Redbook, HADOOP, Fireflies -- google / bing / yahoo + heartbeat.. it just goes and goes... can do this all day..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:13:27 +0000", "from_user": "yellowmarker", "from_user_id": 14528222, "from_user_id_str": "14528222", "from_user_name": "Sanjay Yermalkar", "geo": null, "id": 147695843804327940, "id_str": "147695843804327936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/856500231/ubuntu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/856500231/ubuntu_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @deanwampler: I see a lot of people in the Hadoop world making silly mistakes and reinventing wheels because they don't know functional programming.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:07:47 +0000", "from_user": "myalltop_paul", "from_user_id": 216075147, "from_user_id_str": "216075147", "from_user_name": "MyAllTop - Cloud", "geo": null, "id": 147694416700772350, "id_str": "147694416700772353", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft Tries Hadoop on Azure http://t.co/8eqrAKhu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:07:05 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 147694240288346100, "id_str": "147694240288346112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure - SYS-CON Media (press release) http://t.co/p2STQA6X", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:05:19 +0000", "from_user": "indian4ever", "from_user_id": 33933574, "from_user_id_str": "33933574", "from_user_name": "Raj M", "geo": null, "id": 147693795394334720, "id_str": "147693795394334720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691330534/i4e_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691330534/i4e_logo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure: Cloud Computing: Microsoft Tries Hadoop on Azure is a post fro... http://t.co/9ipBbgAr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:03:51 +0000", "from_user": "sakuma1210", "from_user_id": 4943371, "from_user_id_str": "4943371", "from_user_name": "ryoSakuma", "geo": null, "id": 147693424785637380, "id_str": "147693424785637376", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1520336030/6adca2e3551e41afab4a7807cf97c518_6_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1520336030/6adca2e3551e41afab4a7807cf97c518_6_normal.jpeg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@tomochika_sato @yagi H\\u3055\\u3093\\u3068\\u304B\\u3082C\\u306B\\u62D8\\u3063\\u3066\\u307E\\u3059\\u304C\\u3001\\u4ECA\\u3060\\u3063\\u305F\\u3089\\u4E0B\\u624B\\u306BC\\u4F7F\\u3046\\u3088\\u308A\\u3001\\u30B3\\u30A2\\u6570\\u3068\\u304Bi/o\\u30DC\\u30C8\\u30EB\\u30CD\\u30C3\\u30AF\\u3068\\u304B\\u8003\\u3048\\u308B\\u3068\\u4E26\\u884C\\u51E6\\u7406\\u7CFB\\u306E\\u8A00\\u8A9E\\u3084hadoop\\u4F7F\\u3063\\u305F\\u307B\\u3046\\u304C\\u52B9\\u7387\\u7684\\u306A\\u3053\\u3068\\u591A\\u3044\\u3060\\u308D\\u3046\\u306B\\u3001\\u3068\\u304B\\u3002\\u8272\\u3005\\u601D\\u3044\\u307E\\u3059\\u306D\\u3002", "to_user": "tomochika_sato", "to_user_id": 127786912, "to_user_id_str": "127786912", "to_user_name": "\\u3068\\u3082\\u3061\\u304B@\\u3078\\u3063\\u307D\\u3053\\u30D7\\u30ED\\u30C7\\u30E5\\u30FC\\u30B5\\u30FC", "in_reply_to_status_id": 147692563149754370, "in_reply_to_status_id_str": "147692563149754368"}, +{"created_at": "Fri, 16 Dec 2011 15:03:45 +0000", "from_user": "markswall", "from_user_id": 19688728, "from_user_id_str": "19688728", "from_user_name": "Mark Wall", "geo": null, "id": 147693401125560320, "id_str": "147693401125560322", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676652683/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676652683/Untitled_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure http://t.co/294manp6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:03:44 +0000", "from_user": "markswall", "from_user_id": 19688728, "from_user_id_str": "19688728", "from_user_name": "Mark Wall", "geo": null, "id": 147693398785142800, "id_str": "147693398785142785", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676652683/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676652683/Untitled_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "When HANA meets Hadoop http://t.co/O9CTRiuu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:03:34 +0000", "from_user": "workinthecloud", "from_user_id": 38276261, "from_user_id_str": "38276261", "from_user_name": "WorkInTheCloud", "geo": null, "id": 147693355080499200, "id_str": "147693355080499200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/203756131/clouds-28_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/203756131/clouds-28_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Cloud Cloud Computing: Microsoft Tries Hadoop on Azure - SYS-CON Media (press release): SYS-CON Media (press re... http://t.co/oyHHgDsN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:01:13 +0000", "from_user": "Syncsort", "from_user_id": 119987616, "from_user_id_str": "119987616", "from_user_name": "Syncsort", "geo": null, "id": 147692765587841020, "id_str": "147692765587841024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/858340521/syncsort_profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/858340521/syncsort_profile_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "[BLOG] Keith Kohl provides more insight into our DMExpress 7.0 release and what that means for our users http://t.co/jQnUgiPC #hadoop #bi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:00:36 +0000", "from_user": "vkalavri", "from_user_id": 261216056, "from_user_id_str": "261216056", "from_user_name": "Vasia Kalavri", "geo": null, "id": 147692608163037200, "id_str": "147692608163037185", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1262822157/_sagrada_familia_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1262822157/_sagrada_familia_normal.jpeg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@kargig hmm.. how can I put it so that u understand? We'll need to have some beers! Keywords: hadoop hive&pig,java,compilers,stratosphere", "to_user": "kargig", "to_user_id": 19106962, "to_user_id_str": "19106962", "to_user_name": "George Kargiotakis", "in_reply_to_status_id": 147690668607815680, "in_reply_to_status_id_str": "147690668607815680"}, +{"created_at": "Fri, 16 Dec 2011 14:59:14 +0000", "from_user": "ITNewsNet", "from_user_id": 123008201, "from_user_id_str": "123008201", "from_user_name": "IT News Network", "geo": null, "id": 147692262594326530, "id_str": "147692262594326529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/752399623/IT_News_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/752399623/IT_News_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#MDM #News When HANA meets Hadoop: A Journey to Adaptive MDM - Adaptive master data management (MDM) solutions c... http://t.co/MPlaChOv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:59:13 +0000", "from_user": "TheMDMNetwork", "from_user_id": 67768214, "from_user_id_str": "67768214", "from_user_name": "Madam", "geo": null, "id": 147692261533171700, "id_str": "147692261533171712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/374977493/sassy_lassy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/374977493/sassy_lassy_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#MDM #News When HANA meets Hadoop: A Journey to Adaptive MDM - Adaptive master data management (MDM) solutions c... http://t.co/8N2ZNnWQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:56:05 +0000", "from_user": "acroquest", "from_user_id": 365251149, "from_user_id_str": "365251149", "from_user_name": "Acroquest Technology", "geo": null, "id": 147691473079509000, "id_str": "147691473079508993", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1552942520/acroquest_logo2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552942520/acroquest_logo2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\u30D5\\u30ED\\u30F3\\u30C8SE\\u306E\\u304A\\u4ED5\\u4E8B\\uFF08OSS\\u3092\\u5229\\u7528\\u3057\\u305F\\u63D0\\u6848\\uFF09: \\u3053\\u3093\\u3070\\u3093\\u306F\\u3002\\n\\u00A0\\n\\u667A's Daddy\\u3067\\u3059\\u3002\\n\\u00A0\\n\\u79C1\\u306E\\u4ED5\\u4E8B\\u306F\\u3001\\u30D5\\u30ED\\u30F3\\u30C8\\uFF33\\uFF25\\u3067\\u3059\\u3002\\n\\u00A0\\nHadoop\\u304C\\u6CE8\\u76EE\\u3092\\u96C6\\u3081\\u3066\\u3044\\u307E\\u3059\\u304C\\u3001Hadoop\\u3060\\u3051\\u3067\\u306F\\u306A\\u304F\\u305D\\u306E\\u4ED6\\u306EOSS\\uFF08\\u30AA\\u30FC\\u30D7\\u30F3\\u30BD\\u30FC\\u30B9\\u30BD... http://t.co/1kwjJvCY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:56:04 +0000", "from_user": "d8Pit", "from_user_id": 264394701, "from_user_id_str": "264394701", "from_user_name": "The URL Popularizer", "geo": null, "id": 147691468281229300, "id_str": "147691468281229312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317284522/logo-header_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317284522/logo-header_normal.png", "source": "<a href="http://d8p.it" rel="nofollow">d8P</a>", "text": "RT @grbeaumont: Video Introduction to the #Hadoop on #Azure Interactive #JavaScript Console #BigData | http://t.co/UZ3V3dAj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:55:53 +0000", "from_user": "INFAIM", "from_user_id": 145062108, "from_user_id_str": "145062108", "from_user_name": "Julianna DeLua (EIM)", "geo": null, "id": 147691423515418620, "id_str": "147691423515418624", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @jakkigeiger: Parsing #Bigdata in #Hparser @Informatica http://t.co/UJINeSBf Article by @neilraden via @constellationRG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:55:46 +0000", "from_user": "INFAIM", "from_user_id": 145062108, "from_user_id_str": "145062108", "from_user_name": "Julianna DeLua (EIM)", "geo": null, "id": 147691393861681150, "id_str": "147691393861681152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @jakkigeiger: 30 day trial version http://t.co/QArXHHpk @informaticacorp #hparser, the new parsing technology for #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:54:59 +0000", "from_user": "pprett", "from_user_id": 15004077, "from_user_id_str": "15004077", "from_user_name": "pprett", "geo": null, "id": 147691196603568130, "id_str": "147691196603568130", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1152751417/gravatar_checkerboard_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1152751417/gravatar_checkerboard_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @josephreisinger: Glimmers of a _real_ machine learning system for Hadoop via vw allreduce http://t.co/4Pskbuwd \\n#NIPS2011 big learning http://t.co/zT7X3rJi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:53:55 +0000", "from_user": "cloudtimesorg", "from_user_id": 206781695, "from_user_id_str": "206781695", "from_user_name": "CloudTimes", "geo": null, "id": 147690925768982530, "id_str": "147690925768982529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1151349803/ct_fav2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1151349803/ct_fav2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure - SYS-CON Media (press release): SYS-CON Media (pr... http://t.co/xZ14yqSB #cloud #news", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:51:37 +0000", "from_user": "Cloud_Geek", "from_user_id": 198159985, "from_user_id_str": "198159985", "from_user_name": "CloudGeek", "geo": null, "id": 147690348817297400, "id_str": "147690348817297410", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1335104403/Picture_001-a4t-_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335104403/Picture_001-a4t-_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure - SYS-CON Media (press release) http://t.co/NcCd7t5U", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:50:58 +0000", "from_user": "grbeaumont", "from_user_id": 204075529, "from_user_id_str": "204075529", "from_user_name": "Greg Beaumont", "geo": null, "id": 147690185876975600, "id_str": "147690185876975616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1152669586/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1152669586/profile_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Video Introduction to the #Hadoop on #Azure Interactive #JavaScript Console http://t.co/cLsH76hZ #BigData", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:45:20 +0000", "from_user": "burnside_", "from_user_id": 435089792, "from_user_id_str": "435089792", "from_user_name": " Michael Burnside", "geo": null, "id": 147688768193822720, "id_str": "147688768193822722", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1689330013/11_12_12_MichaelBurnside_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689330013/11_12_12_MichaelBurnside_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure - SYS-CON Media (press release) http://t.co/zXwa3YdU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:44:22 +0000", "from_user": "BINewsWire", "from_user_id": 92127332, "from_user_id_str": "92127332", "from_user_name": "BINewsWire", "geo": null, "id": 147688524739649540, "id_str": "147688524739649538", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/545905035/bi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/545905035/bi_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure - SYS-CON Media (press release) http://t.co/oclmXDlh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:41:45 +0000", "from_user": "hfcci", "from_user_id": 88012852, "from_user_id_str": "88012852", "from_user_name": "HFCC Institute", "geo": null, "id": 147687863029469200, "id_str": "147687863029469185", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/520051496/HFCCI_LOGO1_small_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/520051496/HFCCI_LOGO1_small_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure - SYS-CON Media (press release) http://t.co/LCbnlYNj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:41:13 +0000", "from_user": "bramroeland", "from_user_id": 234757479, "from_user_id_str": "234757479", "from_user_name": "Bram Roeland", "geo": null, "id": 147687729361195000, "id_str": "147687729361195008", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1292444989/profilepic_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1292444989/profilepic_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @mars_chat: Bam! En de volgende Hadoop certificering is binnen! @bramroeland proficiat @Incentro_ Big Data specialist", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:40:06 +0000", "from_user": "TechnoMile", "from_user_id": 89779407, "from_user_id_str": "89779407", "from_user_name": "TechnoMile LLC", "geo": null, "id": 147687449806635000, "id_str": "147687449806635008", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1187113101/techomile_normal_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1187113101/techomile_normal_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azurehttp://twitter.com/allcloudnews: Cloud Computing: Microsoft Trie... http://t.co/xmZ41cKk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:37:47 +0000", "from_user": "MarilynMoux", "from_user_id": 20026961, "from_user_id_str": "20026961", "from_user_name": "Marilyn Moux", "geo": null, "id": 147686865150029820, "id_str": "147686865150029825", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1312851382/marilyn_photo_2011_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312851382/marilyn_photo_2011_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure @CloudExpo #Cloud #CloudExpo #BigData", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:36:13 +0000", "from_user": "guui_me", "from_user_id": 150436464, "from_user_id_str": "150436464", "from_user_name": "Guilherme Meinhardt", "geo": null, "id": 147686471380373500, "id_str": "147686471380373504", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1223901748/P291210_16.16__03__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1223901748/P291210_16.16__03__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @allcloudnews: Cloud Computing: Microsoft Tries Hadoop on Azure", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:35:32 +0000", "from_user": "allcloudnews", "from_user_id": 279338038, "from_user_id_str": "279338038", "from_user_name": "allcloudnews", "geo": null, "id": 147686299170639870, "id_str": "147686299170639874", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:32:45 +0000", "from_user": "ecolint", "from_user_id": 64603367, "from_user_id_str": "64603367", "from_user_name": "Lee Tae Ho(\\uC774\\uD0DC\\uD638)", "geo": null, "id": 147685598684127230, "id_str": "147685598684127232", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/667184261/thlee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/667184261/thlee_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @cloudysaas: Cloud Computing: Microsoft Tries Hadoop on Azure http://t.co/wzbdUhJv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:30:51 +0000", "from_user": "josephreisinger", "from_user_id": 56843433, "from_user_id_str": "56843433", "from_user_name": "joseph reisinger", "geo": null, "id": 147685123272351740, "id_str": "147685123272351745", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1279696513/222_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1279696513/222_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Glimmers of a _real_ machine learning system for Hadoop via vw allreduce http://t.co/4Pskbuwd \\n#NIPS2011 big learning http://t.co/zT7X3rJi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:30:28 +0000", "from_user": "BigDataClouds", "from_user_id": 401391920, "from_user_id_str": "401391920", "from_user_name": "Big Data Clouds", "geo": null, "id": 147685023217233920, "id_str": "147685023217233921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1613841395/CloudBigData-300x239-resized-600_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1613841395/CloudBigData-300x239-resized-600_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure - Soa Wolrd: It gives Azure Big Data capabiliti... http://t.co/GFgbOZVj #bigdata #cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:30:25 +0000", "from_user": "Cloud_Analytics", "from_user_id": 213668992, "from_user_id_str": "213668992", "from_user_name": "Cloud Analytics", "geo": null, "id": 147685013754888200, "id_str": "147685013754888193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1341626314/cloud-computing_analytics_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1341626314/cloud-computing_analytics_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure - Soa Wolrd: It gives Azure Big Data capabili... http://t.co/lN5XuvAX #Cloud #Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Fri, 16 Dec 2011 14:21:47 +0000", "from_user": "enterprise4c", "from_user_id": 426729470, "from_user_id_str": "426729470", "from_user_name": "enterprise4c", "geo": null, "id": 147682841612914700, "id_str": "147682841612914689", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1669844035/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669844035/images_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure: Microsoft added a trial version of Apache\\u2019s open source Hadoop... http://t.co/6cTuPpZJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:21:47 +0000", "from_user": "vojinurosevic", "from_user_id": 76060489, "from_user_id_str": "76060489", "from_user_name": "Vojin Urosevic \\u6C83\\u56E0 ", "geo": null, "id": 147682840576929800, "id_str": "147682840576929792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/447217797/Vojins_picture_hvar_normal.bmp", "profile_image_url_https": "https://si0.twimg.com/profile_images/447217797/Vojins_picture_hvar_normal.bmp", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure: Microsoft added a trial version of Apache\\u2019s open source Hadoop... http://t.co/C3bBioIr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:21:47 +0000", "from_user": "HowToCloud", "from_user_id": 229211023, "from_user_id_str": "229211023", "from_user_name": "HowToCloud.de ", "geo": null, "id": 147682837905158140, "id_str": "147682837905158144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1206537445/logofacebook_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1206537445/logofacebook_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "HowToCloud.de Cloud Computing: Microsoft Tries Hadoop on Azure: Microsoft added a trial version ... http://t.co/3Ibil5qP #CloudComputing", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:21:46 +0000", "from_user": "TheCloudNetwork", "from_user_id": 24609329, "from_user_id_str": "24609329", "from_user_name": "The Cloud Network ", "geo": null, "id": 147682837074681860, "id_str": "147682837074681856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1576230067/97143_matter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576230067/97143_matter_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Cloud #News Cloud Computing: Microsoft Tries Hadoop on Azure: Microsoft added a trial version of Apache\\u2019s ... http://t.co/0paeLYry #TCN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:20:31 +0000", "from_user": "TedC", "from_user_id": 8986692, "from_user_id_str": "8986692", "from_user_name": "TedC", "geo": null, "id": 147682521977593860, "id_str": "147682521977593858", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1463591993/ProfilePic_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1463591993/ProfilePic_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @strataconf: Five Big Data predictions for 2012 http://t.co/0no2xN8g via @radar #bigdata #visualization #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:19:08 +0000", "from_user": "ansmt", "from_user_id": 120515827, "from_user_id_str": "120515827", "from_user_name": "Andy Smith", "geo": null, "id": 147682174273994750, "id_str": "147682174273994752", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1131917324/676_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1131917324/676_normal.gif", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "When HANA meets Hadoop http://t.co/Xi1LVdav", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:16:21 +0000", "from_user": "OCVC", "from_user_id": 5911402, "from_user_id_str": "5911402", "from_user_name": "Marc Averitt", "geo": null, "id": 147681473644863500, "id_str": "147681473644863488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1437668582/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1437668582/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @AlexOlesker: This was one of my first posts on @ctovision and I still like it as an intro to Hadoop and Big Data: http://t.co/Cf3Et9Pf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:08:50 +0000", "from_user": "himskim", "from_user_id": 48746853, "from_user_id_str": "48746853", "from_user_name": "\\uAE40\\uBA85\\uC2E0", "geo": null, "id": 147679582433189900, "id_str": "147679582433189888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/415571755/MyImg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/415571755/MyImg_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @AzureCloudNet: #Azure #Cloud Microsoft Tries Hadoop on Azure - Soa Wolrd: Microsoft added a trial version of Apache's open... http://t.co/9tOIPbvP #TCN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:07:53 +0000", "from_user": "VirtualizationE", "from_user_id": 18939157, "from_user_id_str": "18939157", "from_user_name": "Virtualization Expo", "geo": null, "id": 147679341084545020, "id_str": "147679341084545025", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/70929050/STORY_GRAPHIC_HUGE_VIRTUALIZATION_NEW_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/70929050/STORY_GRAPHIC_HUGE_VIRTUALIZATION_NEW_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MaureenOGara: Microsoft Tries Hadoop on Azure \\u25B8 http://t.co/DEthVr1m @Ulitzer #Cloud #CloudExpo #CloudComputing #BigData @CloudExpo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:07:39 +0000", "from_user": "Ulitzer", "from_user_id": 18791290, "from_user_id_str": "18791290", "from_user_name": "Ulitzer.com", "geo": null, "id": 147679282272026620, "id_str": "147679282272026625", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/745317755/Ulitzer_Logo_100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/745317755/Ulitzer_Logo_100_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MaureenOGara: Microsoft Tries Hadoop on Azure \\u25B8 http://t.co/DEthVr1m @Ulitzer #Cloud #CloudExpo #CloudComputing #BigData @CloudExpo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:07:21 +0000", "from_user": "sysconmedia", "from_user_id": 36339779, "from_user_id_str": "36339779", "from_user_name": "SYS-CON Media", "geo": null, "id": 147679207697301500, "id_str": "147679207697301504", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/745331242/SYS-CON_Media_Logo_100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/745331242/SYS-CON_Media_Logo_100_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MaureenOGara: Microsoft Tries Hadoop on Azure \\u25B8 http://t.co/DEthVr1m @Ulitzer #Cloud #CloudExpo #CloudComputing #BigData @CloudExpo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:07:03 +0000", "from_user": "SOAWorldExpo", "from_user_id": 18906552, "from_user_id_str": "18906552", "from_user_name": "SOA in the Cloud", "geo": null, "id": 147679133831413760, "id_str": "147679133831413760", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/70794220/STORY_GRAPHIC_HUGE_SOA_NEW_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/70794220/STORY_GRAPHIC_HUGE_SOA_NEW_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MaureenOGara: Microsoft Tries Hadoop on Azure \\u25B8 http://t.co/DEthVr1m @Ulitzer #Cloud #CloudExpo #CloudComputing #BigData @CloudExpo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:06:48 +0000", "from_user": "cfoundryexpo", "from_user_id": 281174670, "from_user_id_str": "281174670", "from_user_name": "Cloud Foundry Summit", "geo": null, "id": 147679067162947600, "id_str": "147679067162947585", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1309359449/Cloud_Foundry_Summit_100_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1309359449/Cloud_Foundry_Summit_100_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MaureenOGara: Microsoft Tries Hadoop on Azure \\u25B8 http://t.co/DEthVr1m @Ulitzer #Cloud #CloudExpo #CloudComputing #BigData @CloudExpo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:06:23 +0000", "from_user": "CloudJobFair", "from_user_id": 153415247, "from_user_id_str": "153415247", "from_user_name": "Cloud Expo Job Fair", "geo": null, "id": 147678964759007230, "id_str": "147678964759007232", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1020913034/Cloud_Job_Fair_Logo_200_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1020913034/Cloud_Job_Fair_Logo_200_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MaureenOGara: Microsoft Tries Hadoop on Azure \\u25B8 http://t.co/DEthVr1m @Ulitzer #Cloud #CloudExpo #CloudComputing #BigData @CloudExpo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:05:54 +0000", "from_user": "felixaverlant", "from_user_id": 26585636, "from_user_id_str": "26585636", "from_user_name": "F\\u00E9lix Averlant", "geo": null, "id": 147678843602346000, "id_str": "147678843602345987", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1155182036/1f31ece4-b0be-4818-80df-6e66bfadd721_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1155182036/1f31ece4-b0be-4818-80df-6e66bfadd721_normal.png", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "http://t.co/cfw2A7zi Hadoop and Cassandra in the Top 10 Most Important Open Source Projects of 2011", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:05:29 +0000", "from_user": "AzureCloudNet", "from_user_id": 92151837, "from_user_id_str": "92151837", "from_user_name": "Azure Cloud Network", "geo": null, "id": 147678737444511740, "id_str": "147678737444511745", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1218573122/Windows_Asure_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218573122/Windows_Asure_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Azure #Cloud Microsoft Tries Hadoop on Azure - Soa Wolrd: Microsoft added a trial version of Apache's open... http://t.co/9tOIPbvP #TCN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:05:16 +0000", "from_user": "shaneschick", "from_user_id": 17519194, "from_user_id_str": "17519194", "from_user_name": "Shane Schick", "geo": null, "id": 147678682419441660, "id_str": "147678682419441664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1158138066/Shane_Schick_2010_Headshot_Small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1158138066/Shane_Schick_2010_Headshot_Small_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "When HANA meets Hadoop: http://t.co/rlcZJWqO My final story from this week's #sapsummit", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:03:58 +0000", "from_user": "bigdatajobs", "from_user_id": 343011637, "from_user_id_str": "343011637", "from_user_name": "Big Data Jobs", "geo": null, "id": 147678356387790850, "id_str": "147678356387790849", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#Job Senior DBA- Big Data Hadoop at Demandforce (San Francisco, CA) http://t.co/64J1dwe2 #bigdata #cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:00:54 +0000", "from_user": "JKnulst", "from_user_id": 376360866, "from_user_id_str": "376360866", "from_user_name": "Jasper Knulst", "geo": null, "id": 147677585499893760, "id_str": "147677585499893760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1550467260/Fotoshoot_vierkant_78_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1550467260/Fotoshoot_vierkant_78_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @bramroeland: \"Congratulations! You have passed the Cloudera Certified Developer for Apache Hadoop exam\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:59:18 +0000", "from_user": "00mb", "from_user_id": 5870022, "from_user_id_str": "5870022", "from_user_name": "Marc Boucher", "geo": null, "id": 147677179675815940, "id_str": "147677179675815936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1357145844/mb_qestion_sts134_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1357145844/mb_qestion_sts134_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "I remember early days of Hadoop. It was so messy, how things have changed- Five big data predictions for 2012 http://t.co/9E876ZKs #Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:58:40 +0000", "from_user": "scottdunlop", "from_user_id": 25550110, "from_user_id_str": "25550110", "from_user_name": "Scott Dunlop", "geo": null, "id": 147677021290500100, "id_str": "147677021290500096", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/104874078/blogscott_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/104874078/blogscott_normal.jpg", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Big data Software Engineers - Java, RoR, Hadoop, Cassandra, Solr, Machine Learning - start... http://t.co/sjCuNt3v #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:57:46 +0000", "from_user": "CloudWorkforce", "from_user_id": 96427890, "from_user_id_str": "96427890", "from_user_name": "Cloud-Workforce", "geo": null, "id": 147676795511128060, "id_str": "147676795511128065", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1276932526/Twitter_Icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1276932526/Twitter_Icon_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft Tries Hadoop on Azure http://t.co/fSiv0qZO #cloudcomputing", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:57:03 +0000", "from_user": "KiteVC", "from_user_id": 1121181, "from_user_id_str": "1121181", "from_user_name": "Bill Tai", "geo": null, "id": 147676615336398850, "id_str": "147676615336398848", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/296672253/twitter_avatar_btai_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/296672253/twitter_avatar_btai_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @pomu0325: Treasure Data\\u3002hadoop\\u4F7F\\u3063\\u305Fbigdata\\u51E6\\u7406\\u306E\\u30B5\\u30FC\\u30D3\\u30B9 #cfj11", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:52:23 +0000", "from_user": "mars_chat", "from_user_id": 111609379, "from_user_id_str": "111609379", "from_user_name": "Marcel Naumann", "geo": null, "id": 147675441417814000, "id_str": "147675441417814017", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1586768229/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586768229/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Bam! En de volgende Hadoop certificering is binnen! @bramroeland proficiat @Incentro_ Big Data specialist", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:49:46 +0000", "from_user": "FiveAR", "from_user_id": 223872307, "from_user_id_str": "223872307", "from_user_name": "Petar Jovevski", "geo": null, "id": 147674783545430000, "id_str": "147674783545430016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677945621/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677945621/avatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Hadoop The Definitive Guide is in the house", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:47:37 +0000", "from_user": "fimbul11", "from_user_id": 89163293, "from_user_id_str": "89163293", "from_user_name": "\\u30FE\\uFF9C\\uFF20\\u2312\\u30FC\\u2312\\uFF20\\uFF76\\u30CE", "geo": null, "id": 147674241368727550, "id_str": "147674241368727552", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1661036316/e5fa4764-83b7-425c-9b65-06cd8354af17_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661036316/e5fa4764-83b7-425c-9b65-06cd8354af17_normal.png", "source": "<a href="http://www.tweenapp.org/" rel="nofollow">Tween</a>", "text": "C++\\u3068Lua\\u3068Rails\\u3068Javascript\\u3068Hadoop\\u3084\\u308B\\u3067\\u3047", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:44:52 +0000", "from_user": "tuxtux", "from_user_id": 5663352, "from_user_id_str": "5663352", "from_user_name": "Joel Westerberg", "geo": null, "id": 147673549212106750, "id_str": "147673549212106752", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1268177999/Screen_shot_2011-03-10_at_22.29.06_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1268177999/Screen_shot_2011-03-10_at_22.29.06_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@psvensson Jag tror att de \\u00E4r r\\u00E4tt f\\u00E5 i SE som verkligen har nytta av hadoop, man m\\u00E5ste ha s\\u00E5 sjukt mycket data f\\u00F6r att det skall vara v\\u00E4rt.", "to_user": "psvensson", "to_user_id": 9704372, "to_user_id_str": "9704372", "to_user_name": "psvensson", "in_reply_to_status_id": 147672096670105600, "in_reply_to_status_id_str": "147672096670105600"}, +{"created_at": "Fri, 16 Dec 2011 13:41:42 +0000", "from_user": "openbillc", "from_user_id": 224331314, "from_user_id_str": "224331314", "from_user_name": "OpenBI, LLC", "geo": null, "id": 147672754282438660, "id_str": "147672754282438656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1185751352/openbi_icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1185751352/openbi_icon_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @cloudera: Video & slides available for the webinar \"Hadoop Management Made Easy with Cloudera Enterprise 3.7\" http://t.co/Ta9cMK8s", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:39:06 +0000", "from_user": "psvensson", "from_user_id": 9704372, "from_user_id_str": "9704372", "from_user_name": "psvensson", "geo": null, "id": 147672096670105600, "id_str": "147672096670105600", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/54524576/psvensson_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/54524576/psvensson_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "@tuxtux Nej, blev inget Hadoop, hade f\\u00F6r m\\u00E5nga \\u00E4gg p\\u00E5 n\\u00E4san som det var.", "to_user": "tuxtux", "to_user_id": 5663352, "to_user_id_str": "5663352", "to_user_name": "Joel Westerberg", "in_reply_to_status_id": 147669815966957570, "in_reply_to_status_id_str": "147669815966957568"}, +{"created_at": "Fri, 16 Dec 2011 13:38:55 +0000", "from_user": "RengEDV", "from_user_id": 377068445, "from_user_id_str": "377068445", "from_user_name": "Reng-EDV", "geo": null, "id": 147672052902531070, "id_str": "147672052902531072", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1552304297/rengedv3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552304297/rengedv3_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Ubuntu, Hadoop, Cloud, Clusterinstallationen. Hardware und Dienstleistungen, Programmierung, Amazon EC2. Fragen an info@reng-edv.de", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:29:53 +0000", "from_user": "bramroeland", "from_user_id": 234757479, "from_user_id_str": "234757479", "from_user_name": "Bram Roeland", "geo": null, "id": 147669779401015300, "id_str": "147669779401015296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1292444989/profilepic_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1292444989/profilepic_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "\"Congratulations! You have passed the Cloudera Certified Developer for Apache Hadoop exam\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:29:51 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 147669769234030600, "id_str": "147669769234030592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @cloudera: Video & slides available for the webinar \"Hadoop Management Made Easy with Cloudera Enterprise 3.7\" http://t.co/FhRQHTGt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:29:30 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 147669681917001730, "id_str": "147669681917001729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://identi.ca" rel="nofollow">identica</a>", "text": "RT @ijeyanthan: GoldenOrb is a cloud-based open source project for massive-scale graph analysis .. http://t.co/AKqRyWji #hadoop #JustKnew", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:27:04 +0000", "from_user": "allister35", "from_user_id": 16738522, "from_user_id_str": "16738522", "from_user_name": "Al Richardson", "geo": null, "id": 147669068231610370, "id_str": "147669068231610368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1633846773/CIMG1669rev1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633846773/CIMG1669rev1_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "@mikejulietbravo IBM infosphere big insights it's based on Hadoop I believe. Can point you to techie who knows.", "to_user": "mikejulietbravo", "to_user_id": 42609957, "to_user_id_str": "42609957", "to_user_name": "Mike Briercliffe", "in_reply_to_status_id": 147662139300126720, "in_reply_to_status_id_str": "147662139300126720"}, +{"created_at": "Fri, 16 Dec 2011 13:22:28 +0000", "from_user": "tashrif87", "from_user_id": 218768270, "from_user_id_str": "218768270", "from_user_name": "Ahmad Tashrif", "geo": null, "id": 147667911815860220, "id_str": "147667911815860224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1477015874/pitbull_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1477015874/pitbull_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "CYGWIN! Y U NO PLAY NICE WITH HADOOP!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:13:28 +0000", "from_user": "apache_install", "from_user_id": 370536013, "from_user_id_str": "370536013", "from_user_name": "Joseph S McCloud", "geo": null, "id": 147665647906730000, "id_str": "147665647906729984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1535449514/Joseph_McCloud_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1535449514/Joseph_McCloud_normal.jpg", "source": "<a href="http://ping.fm/" rel="nofollow">Ping.fm</a>", "text": "Hadoop Email Archiving by avineshp - Hi, We are looking a a really brilliant Hadoop Developer to custom build a n... http://t.co/sWZ7Jtw7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:11:11 +0000", "from_user": "mdesilver", "from_user_id": 19084074, "from_user_id_str": "19084074", "from_user_name": "Michael DeSilver", "geo": null, "id": 147665071634522100, "id_str": "147665071634522112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/75483350/IMG_3093_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/75483350/IMG_3093_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@dguyadeen I'm pretty sure the dam has been broken. MSFT already is the 3rd largest contributor to Linux. SMB, Hadoop are only the beginning", "to_user": "dguyadeen", "to_user_id": 22665665, "to_user_id_str": "22665665", "to_user_name": "Denis Guyadeen", "in_reply_to_status_id": 147495732625158140, "in_reply_to_status_id_str": "147495732625158145"}, +{"created_at": "Fri, 16 Dec 2011 13:04:28 +0000", "from_user": "stackfeed", "from_user_id": 237310237, "from_user_id_str": "237310237", "from_user_name": "StackOverflow", "geo": null, "id": 147663382940626940, "id_str": "147663382940626944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Run Hadoop Application: Can a Hadoop App be booted on any one of the cluster nodes, irrelvantly to the node type... http://t.co/asM83Ndw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:02:46 +0000", "from_user": "jplonie", "from_user_id": 17358002, "from_user_id_str": "17358002", "from_user_name": "jp", "geo": null, "id": 147662955306168320, "id_str": "147662955306168321", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1537005258/37E2DCE3-00DB-4C49-9393-71F4121A8BA8_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1537005258/37E2DCE3-00DB-4C49-9393-71F4121A8BA8_normal", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "why isn't the cleanup of my music collection, just one big f-off Hadoop map reduce", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:56:36 +0000", "from_user": "Erick_782", "from_user_id": 317777254, "from_user_id_str": "317777254", "from_user_name": "Erick Acevedo", "geo": null, "id": 147661402197340160, "id_str": "147661402197340160", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1653093656/P1090534_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653093656/P1090534_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Windows #Azure aloja c\\u00F3digo abierto (Hadoop) y m\\u00E1s http://t.co/tKSr2jMi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:56:20 +0000", "from_user": "Nerdjob", "from_user_id": 252977036, "from_user_id_str": "252977036", "from_user_name": "Nerdjob", "geo": null, "id": 147661337235947520, "id_str": "147661337235947520", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1252355030/Avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1252355030/Avatar_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure: Microsoft hat seinen Cloud-Dienst Azure unter anderem... http://t.co/rdZhDwh3 #itnews", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:50:08 +0000", "from_user": "yldosx", "from_user_id": 338619652, "from_user_id_str": "338619652", "from_user_name": "Dennis Fua", "geo": null, "id": 147659775524601860, "id_str": "147659775524601856", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Microsoft drops Dryad; puts its big-data bets on Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:48:31 +0000", "from_user": "reputa_india", "from_user_id": 265834202, "from_user_id_str": "265834202", "from_user_name": "Reputa India", "geo": null, "id": 147659368509349900, "id_str": "147659368509349888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1283445555/2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1283445555/2_normal.jpg", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "URGENT Requirement : Hiring Hadoop Architect (2+ year contract position) required in Pune ... http://t.co/vOClurNS #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:43:43 +0000", "from_user": "fujiyamakazu", "from_user_id": 98878436, "from_user_id_str": "98878436", "from_user_name": "\\u85E4\\u5C71\\u548C\\u5F66", "geo": null, "id": 147658160528822270, "id_str": "147658160528822272", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/637057618/___3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/637057618/___3_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @wyukawa: /etc/default/hadoop-0.20\\u306B\\u30C7\\u30FC\\u30E2\\u30F3\\u8D77\\u52D5\\u30E6\\u30FC\\u30B6\\u304C\\u66F8\\u304B\\u308C\\u3066\\u3044\\u308B\\u306E\\u304B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:42:30 +0000", "from_user": "tshrinivasan", "from_user_id": 44962404, "from_user_id_str": "44962404", "from_user_name": "shrinivasan", "geo": null, "id": 147657854671794180, "id_str": "147657854671794178", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1258506412/shrini-bw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1258506412/shrini-bw_normal.jpg", "source": "<a href="http://identi.ca" rel="nofollow">identica</a>", "text": "RT @ijeyanthan: GoldenOrb is a cloud-based open source project for massive-scale graph analysis .. http://t.co/AKqRyWji #hadoop #JustKnew", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:15:06 +0000", "from_user": "shorelineint", "from_user_id": 121514862, "from_user_id_str": "121514862", "from_user_name": "shorelineinteractive", "geo": null, "id": 147650959533813760, "id_str": "147650959533813760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1592376748/Si-ProfilePicture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592376748/Si-ProfilePicture_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloudera gets proactive with Hadoop management: Cloudera seeks to differentiate itself in the increasingly crowd... http://t.co/n9pvEnUI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:35:49 +0000", "from_user": "muenchenreport", "from_user_id": 195017114, "from_user_id_str": "195017114", "from_user_name": "M\\u00FCnchen Reporter", "geo": null, "id": 147641071382429700, "id_str": "147641071382429696", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1131015347/cam_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1131015347/cam_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#news Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure: Microsoft hat seinen Cloud-Dienst Azure un... http://t.co/7LgIk2fJ #nachrichten", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:32:21 +0000", "from_user": "netletter", "from_user_id": 156917051, "from_user_id_str": "156917051", "from_user_name": "net-run GmbH", "geo": null, "id": 147640202142285820, "id_str": "147640202142285824", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1438231308/nr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1438231308/nr_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "heiseonline: RT @iXmagazin: Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure http://t.co/HpRPZQJg http://t.co/d2qIkByq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:29:58 +0000", "from_user": "Nasentroll", "from_user_id": 81356905, "from_user_id_str": "81356905", "from_user_name": "Tobias Schindegger", "geo": null, "id": 147639599676653570, "id_str": "147639599676653568", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1409231563/DSC06650_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1409231563/DSC06650_normal.JPG", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Nasentroll: Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure: Microsoft hat seinen Cloud\\u2026 http://t.co/JHQKKnXD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:24:16 +0000", "from_user": "nerdfeed", "from_user_id": 85053924, "from_user_id_str": "85053924", "from_user_name": "Feeds for nerds", "geo": null, "id": 147638165832876030, "id_str": "147638165832876032", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure: Microsoft hat seinen Cloud-Dienst Azure unter and... http://t.co/wpR5u9Cl (via Heise)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:22:31 +0000", "from_user": "Monsieur_Lexi", "from_user_id": 183850883, "from_user_id_str": "183850883", "from_user_name": "Monsieur_Lexi", "geo": null, "id": 147637727167385600, "id_str": "147637727167385600", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1547660887/Tage_Social_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1547660887/Tage_Social_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "News: Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure: Microsoft hat seinen Cloud-Dienst Azure un... http://t.co/kRMU0ae8 #heiseonline", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:22:26 +0000", "from_user": "news_from_heise", "from_user_id": 257361032, "from_user_id_str": "257361032", "from_user_name": "Mark Fischer", "geo": null, "id": 147637703150813200, "id_str": "147637703150813184", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1254548005/sap_modus_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1254548005/sap_modus_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure: Microsoft hat seinen Cloud-Dienst Azure unter anderem ... http://t.co/YR5fCXsX #heise", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:19:59 +0000", "from_user": "chrisalu", "from_user_id": 80834855, "from_user_id_str": "80834855", "from_user_name": "von chrisalu", "geo": null, "id": 147637087171133440, "id_str": "147637087171133440", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1617161571/index_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1617161571/index_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure: Microsoft hat seinen Cloud-Dienst Azure unter anderem um neue... http://t.co/b1MkodtY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:15:14 +0000", "from_user": "Swisspex", "from_user_id": 266469387, "from_user_id_str": "266469387", "from_user_name": "Swisspex GmbH", "geo": null, "id": 147635891354087420, "id_str": "147635891354087424", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1273320807/Logo_Swisspex_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273320807/Logo_Swisspex_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure: Microsoft hat seinen Cloud-Dienst Azure unter anderem um neue... http://t.co/7pZHWnaZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:12:45 +0000", "from_user": "pasiona", "from_user_id": 266535423, "from_user_id_str": "266535423", "from_user_name": "pasiona", "geo": null, "id": 147635268130840580, "id_str": "147635268130840576", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1273455264/pasiona_imagenperfil_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273455264/pasiona_imagenperfil_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Microsoft #Azure aloja Hadoop y otras aplicaciones de c\\u00F3digo abierto http://t.co/nwjkAXzw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:06:37 +0000", "from_user": "ipodreaditlater", "from_user_id": 392608246, "from_user_id_str": "392608246", "from_user_name": "ipodreaditlaterrss", "geo": null, "id": 147633725885251600, "id_str": "147633725885251584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "http://t.co/yHlncBtu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:04:55 +0000", "from_user": "Nerdjob", "from_user_id": 252977036, "from_user_id_str": "252977036", "from_user_name": "Nerdjob", "geo": null, "id": 147633295071522800, "id_str": "147633295071522816", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1252355030/Avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1252355030/Avatar_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure http://t.co/EZNOwgzI #itnews", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:04:06 +0000", "from_user": "AnonNewsDE", "from_user_id": 353825896, "from_user_id_str": "353825896", "from_user_name": "Anonymous Germany", "geo": null, "id": 147633091287072770, "id_str": "147633091287072768", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1544244322/anonde_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544244322/anonde_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Heise: Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure http://t.co/ItRVcmtW #heiseonline", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:04:05 +0000", "from_user": "ComputerOK", "from_user_id": 153358240, "from_user_id_str": "153358240", "from_user_name": "Computer O.K.", "geo": null, "id": 147633088770486270, "id_str": "147633088770486272", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1551274271/C-OK_avatar300px_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1551274271/C-OK_avatar300px_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure: Microsoft hat seinen Cloud-Dienst Azure unter anderem um neue... http://t.co/1sOhfwj9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:04:04 +0000", "from_user": "Flips_Soft", "from_user_id": 152956933, "from_user_id_str": "152956933", "from_user_name": "Philipp Handle", "geo": null, "id": 147633083443712000, "id_str": "147633083443712001", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/967881241/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/967881241/logo_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "[Heise] Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure: Microsoft hat seinen Cloud-Dienst Azure unter ... http://t.co/NOU2lFn7 #Heise", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:04:04 +0000", "from_user": "udoweiser", "from_user_id": 229978294, "from_user_id_str": "229978294", "from_user_name": "Udo Weiser", "geo": null, "id": 147633080964886530, "id_str": "147633080964886528", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1197433573/udo-webcam-3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1197433573/udo-webcam-3_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#computer Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure: Microsoft hat seinen Cloud-Dienst Azure unter ander... http://t.co/mxrtZg2r", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:04:03 +0000", "from_user": "xtreme_office", "from_user_id": 259212373, "from_user_id_str": "259212373", "from_user_name": "Michaela Weiser", "geo": null, "id": 147633079371055100, "id_str": "147633079371055104", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1279129224/favicon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1279129224/favicon_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#computer Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure: Microsoft hat seinen Cloud-Dienst Azure unter ander... http://t.co/d05wg6uE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:04:03 +0000", "from_user": "Nasentroll", "from_user_id": 81356905, "from_user_id_str": "81356905", "from_user_name": "Tobias Schindegger", "geo": null, "id": 147633078171471870, "id_str": "147633078171471872", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1409231563/DSC06650_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1409231563/DSC06650_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure: Microsoft hat seinen Cloud-Dienst Azure unter anderem um neue... http://t.co/B1PRpuIB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:04:01 +0000", "from_user": "Nachrichten_muc", "from_user_id": 46066944, "from_user_id_str": "46066944", "from_user_name": "Nachrichten-Muenchen", "geo": null, "id": 147633069300531200, "id_str": "147633069300531200", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1044871116/27471_1506126354_3098_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1044871116/27471_1506126354_3098_q_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#news Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure: Microsoft hat seinen Cloud-Dienst Azur... http://t.co/2j89KQLj #nachrichten #it", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:03:56 +0000", "from_user": "binstweets", "from_user_id": 102934682, "from_user_id_str": "102934682", "from_user_name": "bins", "geo": null, "id": 147633049767657470, "id_str": "147633049767657472", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/630781713/avatar_b.ins_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/630781713/avatar_b.ins_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure: Microsoft hat seinen Cloud-Dienst Azure unter anderem um neue... http://t.co/pj5KZWn5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:03:53 +0000", "from_user": "heiternet", "from_user_id": 62758291, "from_user_id_str": "62758291", "from_user_name": "Axel Heiter", "geo": null, "id": 147633036706586620, "id_str": "147633036706586625", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/607433566/logo_viereckig_3oo-300_bg_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/607433566/logo_viereckig_3oo-300_bg_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure: Microsoft hat seinen Cloud-Dienst Azure unter ander... http://t.co/MVeOxLnM #IT #News", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:01:09 +0000", "from_user": "heiseopen", "from_user_id": 16433774, "from_user_id_str": "16433774", "from_user_name": "heise open", "geo": null, "id": 147632347213336580, "id_str": "147632347213336576", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/347669329/icon_open_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/347669329/icon_open_normal.png", "source": "<a href="http://www.heise.de" rel="nofollow">heise Tweetfeeds</a>", "text": "RT @iXmagazin: Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure http://t.co/0JikG2Ju", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:01:08 +0000", "from_user": "heisedc", "from_user_id": 18019316, "from_user_id_str": "18019316", "from_user_name": "heise Developer", "geo": null, "id": 147632343115501570, "id_str": "147632343115501570", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1286619044/icon_developer_bigger_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1286619044/icon_developer_bigger_normal.png", "source": "<a href="http://www.heise.de" rel="nofollow">heise Tweetfeeds</a>", "text": "RT @iXmagazin: Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure http://t.co/0JikG2Ju", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:00:11 +0000", "from_user": "patrickDurusau", "from_user_id": 152194866, "from_user_id_str": "152194866", "from_user_name": "Patrick Durusau", "geo": null, "id": 147632105545932800, "id_str": "147632105545932802", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/961579480/patrick_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/961579480/patrick_normal.jpeg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "EMC Greenplum puts a social spin on big data #topicmaps #bigdata #hadoop #socialmedia - http://t.co/fAPXW9qO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:45:38 +0000", "from_user": "jarrieta", "from_user_id": 18310417, "from_user_id_str": "18310417", "from_user_name": "Javier Arrieta", "geo": null, "id": 147628442878353400, "id_str": "147628442878353408", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/68355870/foto_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/68355870/foto_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Spring hadoop and data http://t.co/AEyrWaRh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:38:28 +0000", "from_user": "freelancerjobz", "from_user_id": 105766632, "from_user_id_str": "105766632", "from_user_name": "Freelance Job", "geo": null, "id": 147626641546412030, "id_str": "147626641546412033", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/637014492/1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/637014492/1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#freelance #jobs Hadoop Email Archiving by avineshp: Hi, We are looking a a really brilliant Hadoop Developer... http://t.co/vUSAicZA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:35:39 +0000", "from_user": "viswajithv", "from_user_id": 47445770, "from_user_id_str": "47445770", "from_user_name": "Viswajith V", "geo": null, "id": 147625933036191740, "id_str": "147625933036191744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/264421393/Viswa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/264421393/Viswa_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Hadoop Email Archiving by avineshp http://t.co/tk7awhib", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:31:35 +0000", "from_user": "NewsCloudCom", "from_user_id": 363723957, "from_user_id_str": "363723957", "from_user_name": "NewsCloudCom", "geo": null, "id": 147624907616956400, "id_str": "147624907616956416", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575194700/215181262-1302367071-32_1__normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575194700/215181262-1302367071-32_1__normal", "source": "<a href="http://twitter.com/NewsCloudCom" rel="nofollow">news of cloud computing.</a>", "text": "Windows Azure\\u3001Hadoop\\u3084Node.js\\u306A\\u3069\\u6709\\u540DOSS\\u3092\\u30B5\\u30DD\\u30FC\\u30C8 http://t.co/ChF6Gwfb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:29:29 +0000", "from_user": "FreelanceJobz4U", "from_user_id": 109293507, "from_user_id_str": "109293507", "from_user_name": "Freelance Jobz 4 U", "geo": null, "id": 147624378547449860, "id_str": "147624378547449856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/661495065/bassetthoundpup_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/661495065/bassetthoundpup_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#freelance jobs: Hadoop Email Archiving by avineshp: Hi, We are looking a a really brilliant Hadoop... http://t.co/K7hKwDt8 #projects", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:00:08 +0000", "from_user": "NewsICT", "from_user_id": 215181262, "from_user_id_str": "215181262", "from_user_name": "NewsICT", "geo": null, "id": 147616992554254340, "id_str": "147616992554254336", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1305695667/215181262-1302367071-32_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1305695667/215181262-1302367071-32_normal", "source": "<a href="http://twitter.com/NewsICT" rel="nofollow">NewsICT</a>", "text": "(computer) Windows Azure\\u3001Hadoop\\u3084Node.js\\u306A\\u3069\\u6709\\u540DOSS\\u3092\\u30B5\\u30DD\\u30FC\\u30C8 http://t.co/vfzE7UnC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:36:18 +0000", "from_user": "del_javascript", "from_user_id": 23282663, "from_user_id_str": "23282663", "from_user_name": "Javascript News", "geo": null, "id": 147610995769094140, "id_str": "147610995769094145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/90410047/clouds2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/90410047/clouds2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Introduction to the Hadoop on Azure Interactive JavaScript Console - YouTube http://t.co/LaIBHYUO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:32:48 +0000", "from_user": "takamasa_tanaka", "from_user_id": 140310365, "from_user_id_str": "140310365", "from_user_name": "Takamasa Tanaka", "geo": null, "id": 147610115674087420, "id_str": "147610115674087424", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1344363381/IMG_2307_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1344363381/IMG_2307_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "\\u30AC\\u30EA\\u52C9\\u306E\\u7532\\u6590\\u3042\\u308AHadoop\\u958B\\u767A\\u8005\\u8A66\\u9A13\\u3068\\u7BA1\\u7406\\u8005\\u8A66\\u9A13\\u3001\\u30C0\\u30D6\\u30EB\\u3067\\u5408\\u683C\\u3002\\u9054\\u6210\\u611F\\u306B\\u3088\\u308A\\u306A\\u3093\\u3060\\u304B\\u300C\\u4ECA\\u5E74\\u304A\\u308F\\u3063\\u305F\\uFF01\\u300D\\u307F\\u305F\\u3044\\u306A\\u6C17\\u5206\\u3002\\u306F\\u3044\\u3001\\u6765\\u9031\\u3082\\u3061\\u3083\\u3093\\u3068\\u4ED5\\u4E8B\\u3057\\u307E\\u3059\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:28:46 +0000", "from_user": "ISIKADO", "from_user_id": 118681114, "from_user_id_str": "118681114", "from_user_name": "\\u3044\\u3057\\u304B\\u3069", "geo": null, "id": 147609098555367420, "id_str": "147609098555367424", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1243986926/pict_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1243986926/pict_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u5927\\u5B66\\u306Ehadoop\\u30B5\\u30FC\\u30D0\\u306B\\u30ED\\u30B0\\u30A4\\u30F3\\u3067\\u304D\\u308B\\u3088\\u3046\\u306B\\u306A\\u3063\\u305F\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:26:14 +0000", "from_user": "shinya_yanagi", "from_user_id": 206039580, "from_user_id_str": "206039580", "from_user_name": "Shinya Yanagihara", "geo": null, "id": 147608461071491070, "id_str": "147608461071491072", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1269361655/191186_104323526316641_100002169828988_40900_875424_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1269361655/191186_104323526316641_100002169828988_40900_875424_o_normal.jpg", "source": "<a href="http://twipple.jp/" rel="nofollow">\\u3064\\u3044\\u3063\\u3077\\u308B/twipple</a>", "text": "#shinyalog InfoSphere BigInsights\\u30C6\\u30AF\\u30CB\\u30AB\\u30EB\\u30EF\\u30FC\\u30AF\\u30B7\\u30E7\\u30C3\\u30D7\\u306B\\u53C2\\u52A0\\u3057\\u3066\\u304D\\u305F\\u3088\\u3002InfoSphere BigInsights\\u3068\\u3044\\u3046\\u3088\\u308A\\u306F\\u3001Hadoop\\u306B\\u8208\\u5473\\u304C\\u3067\\u305F\\u3002\\u307E\\u305A\\u306F\\u3001Hadoop\\u3092\\u7814\\u7A76\\u3057\\u3066\\u307F\\u3063\\u304B\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:19:12 +0000", "from_user": "olivierflebus", "from_user_id": 242669696, "from_user_id_str": "242669696", "from_user_name": "Olivier FLEBUS", "geo": null, "id": 147606692010524670, "id_str": "147606692010524672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1225516106/carre_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225516106/carre_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@LuxNoSQL @manumarchal the \"Cassandra\" you use is not only the NoSQL Solution ! Try with \"Apache Cassandra\" http://t.co/KKKeRBgR Hadoop 1st", "to_user": "LuxNoSQL", "to_user_id": 19330336, "to_user_id_str": "19330336", "to_user_name": "Nestor", "in_reply_to_status_id": 147577688230596600, "in_reply_to_status_id_str": "147577688230596608"}, +{"created_at": "Fri, 16 Dec 2011 09:17:37 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147606293983662080, "id_str": "147606293983662081", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@rolandbouman well there's a lot of space for things that aren't hadoop but can do large scale like @hadapt. but thats a whole new topic :)", "to_user": "rolandbouman", "to_user_id": 51754021, "to_user_id_str": "51754021", "to_user_name": "Roland Bouman", "in_reply_to_status_id": 147605887140380670, "in_reply_to_status_id_str": "147605887140380672"}, +{"created_at": "Fri, 16 Dec 2011 09:15:18 +0000", "from_user": "rolandbouman", "from_user_id": 51754021, "from_user_id_str": "51754021", "from_user_name": "Roland Bouman", "geo": null, "id": 147605709431914500, "id_str": "147605709431914496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/287001025/roland_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/287001025/roland_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dscape Well, the surprising thing to me is MS finally got it right :) To them, Hadoop is just a vector that makes people want to run...", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147604614257188860, "in_reply_to_status_id_str": "147604614257188864"}, +{"created_at": "Fri, 16 Dec 2011 09:10:57 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147604614257188860, "id_str": "147604614257188864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@rolandbouman the integration with hadoop is surprising though. at least in my experience working in db companies", "to_user": "rolandbouman", "to_user_id": 51754021, "to_user_id_str": "51754021", "to_user_name": "Roland Bouman", "in_reply_to_status_id": 147604017206403070, "in_reply_to_status_id_str": "147604017206403072"}, +{"created_at": "Fri, 16 Dec 2011 08:22:04 +0000", "from_user": "mikepluta", "from_user_id": 15150700, "from_user_id_str": "15150700", "from_user_name": "Mike Pluta", "geo": null, "id": 147592314561363970, "id_str": "147592314561363968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1584807716/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584807716/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @bigdata: Parallel Analytics from @amplab: Hearing kickass performance #'s from Spark users (switching from Hadoop/MapReduce) http://t.co/f4syR33q", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:11:20 +0000", "from_user": "bramroeland", "from_user_id": 234757479, "from_user_id_str": "234757479", "from_user_name": "Bram Roeland", "geo": null, "id": 147589612422971400, "id_str": "147589612422971392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1292444989/profilepic_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1292444989/profilepic_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Day four (final day): Joining Data Sets in MapReduce Jobs, Graph Manipulation In MapReduce, Hadoop Developer Certification exam", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:34:37 +0000", "from_user": "wyukawa", "from_user_id": 14138696, "from_user_id_str": "14138696", "from_user_name": "Wataru Yukawa", "geo": null, "id": 147580374325788670, "id_str": "147580374325788672", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1422846484/picture_12_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1422846484/picture_12_bigger_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "/etc/default/hadoop-0.20\\u306B\\u30C7\\u30FC\\u30E2\\u30F3\\u8D77\\u52D5\\u30E6\\u30FC\\u30B6\\u304C\\u66F8\\u304B\\u308C\\u3066\\u3044\\u308B\\u306E\\u304B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 06:17:36 +0000", "from_user": "AlexaDigital", "from_user_id": 407857538, "from_user_id_str": "407857538", "from_user_name": "AlexaDigital", "geo": null, "id": 147560990987390980, "id_str": "147560990987390976", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686811041/AlexaDigitalTwitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686811041/AlexaDigitalTwitter_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft Azure aloja Hadoop y otras aplicaciones de c\\u00F3digo abierto http://t.co/CItLqRjH #microsoft #news", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 05:38:02 +0000", "from_user": "rjurney", "from_user_id": 15831927, "from_user_id_str": "15831927", "from_user_name": "Russell Jurney", "geo": null, "id": 147551032044560400, "id_str": "147551032044560385", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1468674812/bad_avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1468674812/bad_avatar_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@electrum32 Maybe: tail -f mylog.txt | hadoop fs -put", "to_user": "electrum32", "to_user_id": 176214089, "to_user_id_str": "176214089", "to_user_name": "David Phillips", "in_reply_to_status_id": 147516497009442800, "in_reply_to_status_id_str": "147516497009442816"}, +{"created_at": "Fri, 16 Dec 2011 04:17:48 +0000", "from_user": "nagix", "from_user_id": 228226265, "from_user_id_str": "228226265", "from_user_name": "\\u8349\\u8599 \\u662D\\u5F66", "geo": null, "id": 147530844385452030, "id_str": "147530844385452032", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1537271769/nagix_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1537271769/nagix_normal.png", "source": "<a href="http://www.zusaar.com/" rel="nofollow">Zusaar</a>", "text": "16\\u65E5\\u76EE\\u66F8\\u304D\\u307E\\u3057\\u305F\\u3002MapR\\u306B\\u3064\\u3044\\u3066\\u3067\\u3059\\u3002\\nhttp://t.co/OcfL12BU / hadoop\\u30A2\\u30C9\\u30D9\\u30F3\\u30C8\\u30AB\\u30EC\\u30F3\\u30C0\\u30FC2011 http://t.co/z0tUNWDC #zusaar", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 02:26:30 +0000", "from_user": "larry_franks", "from_user_id": 70437829, "from_user_id_str": "70437829", "from_user_name": "Larry Franks", "geo": null, "id": 147502834710097920, "id_str": "147502834710097920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/748789809/birdhouse_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/748789809/birdhouse_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @jamescon: RT @mdesilver: I just deployed a 20 node #Hadoop cluster in 7 min ran a job through javascript, got my answer. Wow. Never been easier #azure", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 02:01:21 +0000", "from_user": "padmasri4", "from_user_id": 325439770, "from_user_id_str": "325439770", "from_user_name": "padmasri", "geo": null, "id": 147496503039107070, "id_str": "147496503039107072", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Hadoop Technology in Bangalore, India http://t.co/K8k0vpxL #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:45:58 +0000", "from_user": "aliimam", "from_user_id": 15429623, "from_user_id_str": "15429623", "from_user_name": "ali imam", "geo": null, "id": 147492632959008770, "id_str": "147492632959008768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/58144512/backyardpic_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/58144512/backyardpic_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jaykreps: Ebay is using SSDs in their Hadoop clusters? Surely I heard that wrong...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:37:43 +0000", "from_user": "GrandLogicInc", "from_user_id": 427826464, "from_user_id_str": "427826464", "from_user_name": "Grand Logic", "geo": null, "id": 147490555096604670, "id_str": "147490555096604672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1672436646/gl_logo_simple_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672436646/gl_logo_simple_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Tie and feed your backoffice systems and corporate databases to your #bigdata. Seed your #hadoop with data feeds automated by Jobserver.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:11:03 +0000", "from_user": "NUROxxxx", "from_user_id": 313255702, "from_user_id_str": "313255702", "from_user_name": "NUROxxxx", "geo": null, "id": 147483844042428400, "id_str": "147483844042428417", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1648038528/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648038528/image_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "[\\u96FB\\u8133] Windows Azure\\u3001Hadoop\\u3084Node.js\\u306A\\u3069\\u6709\\u540DOSS\\u3092\\u30B5\\u30DD\\u30FC\\u30C8 \\uFF08\\u30DE\\u30A4\\u30CA\\u30D3\\uFF09 http://t.co/aMC9vajs #newsjp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:21:17 +0000", "from_user": "hubaghdadi", "from_user_id": 17536684, "from_user_id_str": "17536684", "from_user_name": "El Gusto", "geo": null, "id": 147456222197596160, "id_str": "147456222197596160", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698976822/images__1__normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698976822/images__1__normal.jpeg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Apache Hadoop is the Rock Star of 2011. #Hadoop #Java", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:40:39 +0000", "from_user": "NorSivad", "from_user_id": 21665194, "from_user_id_str": "21665194", "from_user_name": "Ron Davis", "geo": null, "id": 147445994949324800, "id_str": "147445994949324800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1138665753/Ron_in_hat_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1138665753/Ron_in_hat_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube video from @microsoftbi http://t.co/ERlA1QP5 Introduction to the Hadoop on Azure Interactive", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:29:26 +0000", "from_user": "nsharp_2ch", "from_user_id": 86472223, "from_user_id_str": "86472223", "from_user_name": "nsharp", "geo": null, "id": 147443171905904640, "id_str": "147443171905904640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1482188154/icon3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1482188154/icon3_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Introduction to the Hadoop on Azure Interactive JavaScript Console\\nhttp://t.co/NuAg4XI9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:01:43 +0000", "from_user": "sqlman101", "from_user_id": 14097974, "from_user_id_str": "14097974", "from_user_name": "Shashank Pawar", "geo": null, "id": 147436198086975500, "id_str": "147436198086975489", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1142523538/Shashank_Pawar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1142523538/Shashank_Pawar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lynnlangit: blogged: 'Trying out #Hadoop on #Azure' #BigData http://t.co/toEa53lS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 21:32:55 +0000", "from_user": "maordp", "from_user_id": 13278492, "from_user_id_str": "13278492", "from_user_name": "Maor David-Pur", "geo": null, "id": 147428950761685000, "id_str": "147428950761684993", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1239419922/TechEd2008_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1239419922/TechEd2008_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Openness Update for Windows Azure:New Release Supports Open Source Libraries Node.js,MongoDB,Hadoop,Solr,Memcached http://t.co/cgF8OMg1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 21:32:28 +0000", "from_user": "lynnlangit", "from_user_id": 3105491, "from_user_id_str": "3105491", "from_user_name": "Lynn Langit", "geo": null, "id": 147428836114575360, "id_str": "147428836114575360", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/125258306/meRed_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/125258306/meRed_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "blogged: 'Trying out #Hadoop on #Azure' #BigData http://t.co/toEa53lS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} + +, +{"created_at": "Mon, 19 Dec 2011 17:27:37 +0000", "from_user": "houcemberrayana", "from_user_id": 18717488, "from_user_id_str": "18717488", "from_user_name": "Houcem Berrayana", "geo": null, "id": 148816768113188860, "id_str": "148816768113188865", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534490937/houcem_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534490937/houcem_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "I received an invitation to schedule a call with @couchdb engineers in order to discuss about #couchDB use cases #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:57:30 +0000", "from_user": "eckoit", "from_user_id": 234107885, "from_user_id_str": "234107885", "from_user_name": "Ryan Ramage", "geo": null, "id": 148809189425287170, "id_str": "148809189425287170", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1206917088/ryan.new_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1206917088/ryan.new_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @_jhs: I wrote my first #kansojs package! Stew: relaxed CouchDB reduce functions: http://t.co/dCvyyW1c", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:41:27 +0000", "from_user": "abionic", "from_user_id": 45120313, "from_user_id_str": "45120313", "from_user_name": "AbhishekKr", "geo": null, "id": 148805153821167600, "id_str": "148805153821167616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/252040908/a1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/252040908/a1_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"Using CouchDb as a filesystem with PHP\" http://t.co/y4s3lkVs #PHP #CouchDB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:49:29 +0000", "from_user": "robenajbvgentry", "from_user_id": 277670628, "from_user_id_str": "277670628", "from_user_name": "robena gentry", "geo": null, "id": 148792072156102660, "id_str": "148792072156102656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1678876850/1170300_important_call_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678876850/1170300_important_call_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloudant Appoints Derek Schoettle as CEO: Apache CouchDB Expert Gets Former Vertica, Infocrossing Executive for ... http://t.co/9O8F7l4L", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:49:28 +0000", "from_user": "keliovimcmullin", "from_user_id": 277681553, "from_user_id_str": "277681553", "from_user_name": "keli mcmullin", "geo": null, "id": 148792071602450430, "id_str": "148792071602450432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1678878546/1171215_where_are_you_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678878546/1171215_where_are_you_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloudant Appoints Derek Schoettle as CEO: Apache CouchDB Expert Gets Former Vertica, Infocrossing Executive for ... http://t.co/g0G7Ajuo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:49:26 +0000", "from_user": "astridvprovost", "from_user_id": 277920506, "from_user_id_str": "277920506", "from_user_name": "astrid provost", "geo": null, "id": 148792060315574270, "id_str": "148792060315574274", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1678877843/1170492_young_woman_smiling_at_camera_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678877843/1170492_young_woman_smiling_at_camera_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloudant Appoints Derek Schoettle as CEO: Apache CouchDB Expert Gets Former Vertica, Infocrossing Executive for ... http://t.co/UHkQlKOg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:49:24 +0000", "from_user": "mayrabsfitts", "from_user_id": 277874670, "from_user_id_str": "277874670", "from_user_name": "mayra fitts", "geo": null, "id": 148792052405125120, "id_str": "148792052405125121", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1678879361/1183984_mysterious_girl_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678879361/1183984_mysterious_girl_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloudant Appoints Derek Schoettle as CEO: Apache CouchDB Expert Gets Former Vertica, Infocrossing Executive for ... http://t.co/zNKq3hmD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:49:22 +0000", "from_user": "mardellksrwentw", "from_user_id": 277926947, "from_user_id_str": "277926947", "from_user_name": "mardell wentworth", "geo": null, "id": 148792046470176770, "id_str": "148792046470176768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1678881385/1192040_jo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678881385/1192040_jo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloudant Appoints Derek Schoettle as CEO: Apache CouchDB Expert Gets Former Vertica, Infocrossing Executive for ... http://t.co/dd2xpFWW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:37:04 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 148788949928779780, "id_str": "148788949928779778", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "Document Databases and Data Migrations http://t.co/UCUT3gLu 1) no ORM 2) no schema 3) no data migrations #mongodb #couchdb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:23:42 +0000", "from_user": "pawelantczak", "from_user_id": 96818088, "from_user_id_str": "96818088", "from_user_name": "Pawe\\u0142 Antczak", "geo": null, "id": 148785584645750800, "id_str": "148785584645750784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689545768/1301862733695_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689545768/1301862733695_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Using CouchDb as a filesystem with PHP | Web Builder Zone: http://t.co/1wqTZikW via @AddThis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:17:31 +0000", "from_user": "benoitc", "from_user_id": 770056, "from_user_id_str": "770056", "from_user_name": "beno\\u00EEt chesneau", "geo": null, "id": 148784030131822600, "id_str": "148784030131822592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/76299981/avatar100x100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/76299981/avatar100x100_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@eckoit i need to think about it a little, also have a look in couchdb-fuse from @jasondavies for that.", "to_user": "eckoit", "to_user_id": 234107885, "to_user_id_str": "234107885", "to_user_name": "Ryan Ramage", "in_reply_to_status_id": 148770265197850620, "in_reply_to_status_id_str": "148770265197850626"}, +{"created_at": "Mon, 19 Dec 2011 15:14:33 +0000", "from_user": "alfamale156", "from_user_id": 61744769, "from_user_id_str": "61744769", "from_user_name": "Andrew Woodcock", "geo": null, "id": 148783283327598600, "id_str": "148783283327598597", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693217959/Daddy_and_Emily_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693217959/Daddy_and_Emily_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Samisdat: Der Server l\\u00E4uft mit @Nodejs Daten speichern in @CouchDB und http://t.co/7KzDdmZH \\u00FCbernimmt die Session. Sch\\u00F6ner Code ohne PHP ;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:07:30 +0000", "from_user": "keithkim", "from_user_id": 14881688, "from_user_id_str": "14881688", "from_user_name": "Keith Kim", "geo": null, "id": 148781508805660670, "id_str": "148781508805660672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1485820747/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1485820747/me_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"Using CouchDb as a filesystem with PHP\" http://t.co/y4s3lkVs #PHP #CouchDB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:42:14 +0000", "from_user": "FernandoSerapio", "from_user_id": 96901611, "from_user_id_str": "96901611", "from_user_name": "Fernando Serapio", "geo": null, "id": 148775148684709900, "id_str": "148775148684709890", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695507559/grinch_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695507559/grinch_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"Using CouchDb as a filesystem with PHP\" http://t.co/y4s3lkVs #PHP #CouchDB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:41:57 +0000", "from_user": "DZone", "from_user_id": 14782935, "from_user_id_str": "14782935", "from_user_name": "DZone", "geo": null, "id": 148775078795018240, "id_str": "148775078795018241", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/258714549/dzone-square-256_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/258714549/dzone-square-256_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\"Using CouchDb as a filesystem with PHP\" http://t.co/y4s3lkVs #PHP #CouchDB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:06:26 +0000", "from_user": "sas_71", "from_user_id": 301342282, "from_user_id_str": "301342282", "from_user_name": "Sven A. Schmidt", "geo": null, "id": 148766140687069200, "id_str": "148766140687069185", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1615292001/Screen_Shot_2011-10-31_at_10.19.28_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615292001/Screen_Shot_2011-10-31_at_10.19.28_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "New blog post: Couchdb migrations http://t.co/5hJKoLB8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:58:38 +0000", "from_user": "akeem", "from_user_id": 12597442, "from_user_id_str": "12597442", "from_user_name": "Akeem Adeniji", "geo": null, "id": 148764179615055870, "id_str": "148764179615055872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/645690442/highkey_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/645690442/highkey_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I need to find a solid command line tool to prod couchdb. I feel like I lose so much rhythm checking the browser", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:55:20 +0000", "from_user": "natevw", "from_user_id": 8419342, "from_user_id_str": "8419342", "from_user_name": "Nathan Vander Wilt", "geo": null, "id": 148763348543082500, "id_str": "148763348543082496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1266548910/updated_profile_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266548910/updated_profile_pic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @vmische: Knn-search for #GeoCouch, awesome! https://t.co/0sXvrIXr #CouchDB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:42:00 +0000", "from_user": "llabball", "from_user_id": 15782895, "from_user_id_str": "15782895", "from_user_name": "Ingo Radatz", "geo": null, "id": 148759989874462720, "id_str": "148759989874462722", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1369639796/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1369639796/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @maxogden: notes from the #couchdb couchapp community meeting https://t.co/wmiVpLB9 tl;dr we want couchapps to work as offline chrome extensions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:41:26 +0000", "from_user": "snowpong", "from_user_id": 65642799, "from_user_id_str": "65642799", "from_user_name": "Espen Riskedal", "geo": null, "id": 148759848589332480, "id_str": "148759848589332480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/362282436/ernern_overdrive_firkantet_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/362282436/ernern_overdrive_firkantet_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Anyone tried out CouchDB / Couchbase for cross-platform mobile apps? Researching good solutions for offline + automatic sync resolution.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:37:06 +0000", "from_user": "lartem", "from_user_id": 33361654, "from_user_id_str": "33361654", "from_user_name": "Artem Luzhnov", "geo": null, "id": 148758756983971840, "id_str": "148758756983971841", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1462123444/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1462123444/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @mezozoysky: \\u0414\\u043E\\u0440\\u043E\\u0433\\u043E \\u0442\\u0432\\u0438\\u0442\\u043E\\u0440, \\u0438\\u0449\\u0443 \\u0430\\u0434\\u0435\\u043A\\u0432\\u0430\\u0442\\u043D\\u043E\\u0433\\u043E \\u0447\\u0435\\u043B\\u043E\\u0432\\u0435\\u043A\\u0430 \\u0441 \\u043A\\u043E\\u043C\\u043F\\u0435\\u0442\\u0435\\u043D\\u0446\\u0438\\u0435\\u0439 Node.JS/CouchDB. RT, Please.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:34:13 +0000", "from_user": "jakobwesthoff", "from_user_id": 19823972, "from_user_id_str": "19823972", "from_user_name": "Jakob Westhoff", "geo": null, "id": 148758032740925440, "id_str": "148758032740925440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1234596152/twitter_portrait_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1234596152/twitter_portrait_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @koredn: I will give three #CouchDB related workshop at the JavaScript Days (http://t.co/Lu8qumvi) in March. Join me there!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:30:48 +0000", "from_user": "halfbyte", "from_user_id": 1272591, "from_user_id_str": "1272591", "from_user_name": "Jan Krutisch", "geo": null, "id": 148757173432885250, "id_str": "148757173432885249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/867773364/IMGP9883-3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/867773364/IMGP9883-3_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "So, what's the verdict on the current hottest/bestest Ruby/CouchDB library?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:18:49 +0000", "from_user": "tsunammis", "from_user_id": 8541592, "from_user_id_str": "8541592", "from_user_name": "Stan Chollet", "geo": null, "id": 148754157195636740, "id_str": "148754157195636736", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1129897969/stan-social-2010-2-carre_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1129897969/stan-social-2010-2-carre_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@sraymond38 J'h\\u00E9site encore \\u00E0 l'\\u00E9crire, de tr\\u00E8s ODM sont dispo maintenant avec Doctrine, tel que MongoDB et CouchDB \\u2026", "to_user": "sraymond38", "to_user_id": 217366634, "to_user_id_str": "217366634", "to_user_name": "St\\u00E9phane Raymond", "in_reply_to_status_id": 148718888891318270, "in_reply_to_status_id_str": "148718888891318273"}, +{"created_at": "Mon, 19 Dec 2011 12:52:51 +0000", "from_user": "benoitc", "from_user_id": 770056, "from_user_id_str": "770056", "from_user_name": "beno\\u00EEt chesneau", "geo": null, "id": 148747622415478800, "id_str": "148747622415478784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/76299981/avatar100x100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/76299981/avatar100x100_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "so couch_randomkey is in now named couch_randomdoc to reflect what iit is really .... url is now https://t.co/XZk0NU6A #couchdb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:36:22 +0000", "from_user": "benoitc", "from_user_id": 770056, "from_user_id_str": "770056", "from_user_name": "beno\\u00EEt chesneau", "geo": null, "id": 148743476471795700, "id_str": "148743476471795712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/76299981/avatar100x100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/76299981/avatar100x100_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Just released of couch_randomkey a simple couchdb module to fetch and render random document from #couchdb https://t.co/KSpVFHaH enjoy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:13:15 +0000", "from_user": "inyongwebid", "from_user_id": 324485660, "from_user_id_str": "324485660", "from_user_name": "Rachmat Hafidz", "geo": null, "id": 148737656703033340, "id_str": "148737656703033345", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1414298797/69073_152688678101738_100000818204398_223238_3422382_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1414298797/69073_152688678101738_100000818204398_223238_3422382_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Opo iku..?mbuh ra dong :D \"@adzymaniac: Cassandra vs MongoDB vs CouchDB vs Redis vs Riak vs HBase vs Membase vs Neo4j #NoSQL\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:08:19 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 148736416623501300, "id_str": "148736416623501313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "steelmesh (0.8.1): http://t.co/JcvODdbJ CouchDB distribution and management of Node.js applications", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:02:03 +0000", "from_user": "benoitc", "from_user_id": 770056, "from_user_id_str": "770056", "from_user_name": "beno\\u00EEt chesneau", "geo": null, "id": 148734838629871600, "id_str": "148734838629871617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/76299981/avatar100x100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/76299981/avatar100x100_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@andrewtj webdav is just http , i think mixing it with the way couchdb-fuse from @jasondavies works would be awesome", "to_user": "andrewtj", "to_user_id": 81712400, "to_user_id_str": "81712400", "to_user_name": "andrewtj", "in_reply_to_status_id": 148728228515815420, "in_reply_to_status_id_str": "148728228515815424"}, +{"created_at": "Mon, 19 Dec 2011 11:59:49 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 148734277306167300, "id_str": "148734277306167296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "attachmate (0.1.0): http://t.co/zDjKfaAA CouchDB Attachment Helpers (part of the Steelmesh stack)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:57:27 +0000", "from_user": "narkisr", "from_user_id": 65467155, "from_user_id_str": "65467155", "from_user_name": "Ronen", "geo": null, "id": 148733681035522050, "id_str": "148733681035522048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/796203344/ae70b718342bc0d140743709e21cdbe6_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/796203344/ae70b718342bc0d140743709e21cdbe6_normal.jpeg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Couchbase sounds really cool to old couchdb vetrans, distributed map reduce on a cluster", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:30:32 +0000", "from_user": "jasondavies", "from_user_id": 349963, "from_user_id_str": "349963", "from_user_name": "Jason Davies", "geo": null, "id": 148726905007382530, "id_str": "148726905007382528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1404285254/jasondavies.small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1404285254/jasondavies.small_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@benoitc You should totally add caching to https://t.co/riKttKBG to make it usable as a filesystem. :)", "to_user": "benoitc", "to_user_id": 770056, "to_user_id_str": "770056", "to_user_name": "beno\\u00EEt chesneau", "in_reply_to_status_id": 148713160294154240, "in_reply_to_status_id_str": "148713160294154240"}, +{"created_at": "Mon, 19 Dec 2011 11:05:49 +0000", "from_user": "andriebamz", "from_user_id": 46189314, "from_user_id_str": "46189314", "from_user_name": "Bambang Andrie G", "geo": null, "id": 148720688428101630, "id_str": "148720688428101632", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687513201/gitar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687513201/gitar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @adzymaniac: Cassandra vs MongoDB vs CouchDB vs Redis vs Riak vs HBase vs Membase vs Neo4j #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:04:13 +0000", "from_user": "adzymaniac", "from_user_id": 80246884, "from_user_id_str": "80246884", "from_user_name": "Aji Kisworo Mukti", "geo": null, "id": 148720283665170430, "id_str": "148720283665170432", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1599098532/20768_1286042198610_1456819387_30792496_8162696_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599098532/20768_1286042198610_1456819387_30792496_8162696_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Cassandra vs MongoDB vs CouchDB vs Redis vs Riak vs HBase vs Membase vs Neo4j #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:53:00 +0000", "from_user": "gawel_", "from_user_id": 10690822, "from_user_id_str": "10690822", "from_user_name": "Gael Pasgrimaud", "geo": null, "id": 148717463327096830, "id_str": "148717463327096832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1218959587/32fe7bc7d2e32c06c8c5b0aa84c64435_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218959587/32fe7bc7d2e32c06c8c5b0aa84c64435_normal.png", "source": "<a href="http://www.nambu.com/" rel="nofollow">Nambu</a>", "text": "@benoitc yup. can be a good alternative to dropbox since couchdb has native versioning", "to_user": "benoitc", "to_user_id": 770056, "to_user_id_str": "770056", "to_user_name": "beno\\u00EEt chesneau", "in_reply_to_status_id": 148716607852654600, "in_reply_to_status_id_str": "148716607852654594"}, +{"created_at": "Mon, 19 Dec 2011 10:42:32 +0000", "from_user": "bartvdeijnden", "from_user_id": 92321540, "from_user_id_str": "92321540", "from_user_name": "Bart van den Eijnden", "geo": null, "id": 148714828733755400, "id_str": "148714828733755393", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1594902606/bartvde_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1594902606/bartvde_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @vmische: Knn-search for #GeoCouch, awesome! https://t.co/0sXvrIXr #CouchDB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:36:32 +0000", "from_user": "benoitc", "from_user_id": 770056, "from_user_id_str": "770056", "from_user_name": "beno\\u00EEt chesneau", "geo": null, "id": 148713316087377920, "id_str": "148713316087377920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/76299981/avatar100x100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/76299981/avatar100x100_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @vmische: Knn-search for #GeoCouch, awesome! https://t.co/0sXvrIXr #CouchDB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:35:55 +0000", "from_user": "benoitc", "from_user_id": 770056, "from_user_id_str": "770056", "from_user_name": "beno\\u00EEt chesneau", "geo": null, "id": 148713160294154240, "id_str": "148713160294154240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/76299981/avatar100x100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/76299981/avatar100x100_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "i think i want to have a working couchdb fuse extension or webdav over couch so I could sync my media more easily", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:35:16 +0000", "from_user": "vmische", "from_user_id": 140552229, "from_user_id_str": "140552229", "from_user_name": "Volker Mische", "geo": null, "id": 148712999119618050, "id_str": "148712999119618048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/886369436/favicon007_73x73_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/886369436/favicon007_73x73_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Knn-search for #GeoCouch, awesome! https://t.co/0sXvrIXr #CouchDB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:54:36 +0000", "from_user": "sbose78", "from_user_id": 190726716, "from_user_id_str": "190726716", "from_user_name": "Shoubhik Bose", "geo": null, "id": 148702762715189250, "id_str": "148702762715189248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1555136629/313678_10150287343724509_710069508_7509696_1574204_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555136629/313678_10150287343724509_710069508_7509696_1574204_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@davecottlehuber Hey whats wrong with this POST request ?? http://t.co/KhJAiAK7 @CouchDB", "to_user": "davecottlehuber", "to_user_id": 20142853, "to_user_id_str": "20142853", "to_user_name": "Dave Cottlehuber"}, +{"created_at": "Mon, 19 Dec 2011 09:45:21 +0000", "from_user": "cgiffard", "from_user_id": 14967638, "from_user_id_str": "14967638", "from_user_name": "Christopher Giffard", "geo": null, "id": 148700435585314800, "id_str": "148700435585314816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/405696519/3822572807_1b6414bda6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/405696519/3822572807_1b6414bda6_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "I thought Mongo, but I'm not loving it. People who like CouchDB *love* CouchDB, so I might try that.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:44:56 +0000", "from_user": "fkndfatum", "from_user_id": 14627231, "from_user_id_str": "14627231", "from_user_name": "Alexandrov Alexandr", "geo": null, "id": 148700331788865540, "id_str": "148700331788865536", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/425325642/avatar2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/425325642/avatar2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @mezozoysky: \\u0414\\u043E\\u0440\\u043E\\u0433\\u043E \\u0442\\u0432\\u0438\\u0442\\u043E\\u0440, \\u0438\\u0449\\u0443 \\u0430\\u0434\\u0435\\u043A\\u0432\\u0430\\u0442\\u043D\\u043E\\u0433\\u043E \\u0447\\u0435\\u043B\\u043E\\u0432\\u0435\\u043A\\u0430 \\u0441 \\u043A\\u043E\\u043C\\u043F\\u0435\\u0442\\u0435\\u043D\\u0446\\u0438\\u0435\\u0439 Node.JS/CouchDB. RT, Please.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:44:35 +0000", "from_user": "booyaa", "from_user_id": 719673, "from_user_id_str": "719673", "from_user_name": "booyaa", "geo": null, "id": 148700244769640450, "id_str": "148700244769640448", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/640332281/boo-sm-avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/640332281/boo-sm-avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Samisdat: Der Server l\\u00E4uft mit @Nodejs Daten speichern in @CouchDB und http://t.co/7KzDdmZH \\u00FCbernimmt die Session. Sch\\u00F6ner Code ohne PHP ;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:39:39 +0000", "from_user": "glazs", "from_user_id": 19333682, "from_user_id_str": "19333682", "from_user_name": "\\u0415\\u0432\\u0433\\u0435\\u043D\\u0438\\u0439 \\u0413\\u043B\\u0430\\u0437\\u044B\\u0440\\u0438\\u043D", "geo": null, "id": 148699001682792450, "id_str": "148699001682792450", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1394121954/48_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1394121954/48_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @mezozoysky: \\u0414\\u043E\\u0440\\u043E\\u0433\\u043E \\u0442\\u0432\\u0438\\u0442\\u043E\\u0440, \\u0438\\u0449\\u0443 \\u0430\\u0434\\u0435\\u043A\\u0432\\u0430\\u0442\\u043D\\u043E\\u0433\\u043E \\u0447\\u0435\\u043B\\u043E\\u0432\\u0435\\u043A\\u0430 \\u0441 \\u043A\\u043E\\u043C\\u043F\\u0435\\u0442\\u0435\\u043D\\u0446\\u0438\\u0435\\u0439 Node.JS/CouchDB. RT, Please.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:35:54 +0000", "from_user": "mezozoysky", "from_user_id": 269736748, "from_user_id_str": "269736748", "from_user_name": "Edward Mezozoysky", "geo": null, "id": 148698059876995070, "id_str": "148698059876995072", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1657541954/schechter400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657541954/schechter400_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u0414\\u043E\\u0440\\u043E\\u0433\\u043E \\u0442\\u0432\\u0438\\u0442\\u043E\\u0440, \\u0438\\u0449\\u0443 \\u0430\\u0434\\u0435\\u043A\\u0432\\u0430\\u0442\\u043D\\u043E\\u0433\\u043E \\u0447\\u0435\\u043B\\u043E\\u0432\\u0435\\u043A\\u0430 \\u0441 \\u043A\\u043E\\u043C\\u043F\\u0435\\u0442\\u0435\\u043D\\u0446\\u0438\\u0435\\u0439 Node.JS/CouchDB. RT, Please.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:17:57 +0000", "from_user": "CouchDB", "from_user_id": 14181317, "from_user_id_str": "14181317", "from_user_name": "CouchDB", "geo": null, "id": 148693542028578800, "id_str": "148693542028578816", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/51904457/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/51904457/logo_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Samisdat: Der Server l\\u00E4uft mit @Nodejs Daten speichern in @CouchDB und http://t.co/7KzDdmZH \\u00FCbernimmt die Session. Sch\\u00F6ner Code ohne PHP ;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:11:11 +0000", "from_user": "wickamivjg8", "from_user_id": 395456503, "from_user_id_str": "395456503", "from_user_name": "Wicka Duncan", "geo": null, "id": 148691840277819400, "id_str": "148691840277819392", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@Sweett_n_Spicyy http://t.co/Vpec5N18", "to_user": "Sweett_n_Spicyy", "to_user_id": 321663404, "to_user_id_str": "321663404", "to_user_name": "Shannon Graveran", "in_reply_to_status_id": 148643112246460400, "in_reply_to_status_id_str": "148643112246460417"}, +{"created_at": "Mon, 19 Dec 2011 08:47:01 +0000", "from_user": "koredn", "from_user_id": 17995670, "from_user_id_str": "17995670", "from_user_name": "Kore Nordmann", "geo": null, "id": 148685754820861950, "id_str": "148685754820861952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1001178988/avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1001178988/avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "I will give three #CouchDB related workshop at the JavaScript Days (http://t.co/Lu8qumvi) in March. Join me there!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:16:21 +0000", "from_user": "caolan", "from_user_id": 12185182, "from_user_id_str": "12185182", "from_user_name": "Caolan McMahon", "geo": null, "id": 148678040703086600, "id_str": "148678040703086592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1328677360/colourful_cropped_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1328677360/colourful_cropped_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @_jhs: I wrote my first #kansojs package! Stew: relaxed CouchDB reduce functions: http://t.co/dCvyyW1c", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:02:10 +0000", "from_user": "_jhs", "from_user_id": 16281277, "from_user_id_str": "16281277", "from_user_name": "Jason Smith", "geo": null, "id": 148659369972731900, "id_str": "148659369972731904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1600208979/jason_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600208979/jason_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "I wrote my first #kansojs package! Stew: relaxed CouchDB reduce functions: http://t.co/dCvyyW1c", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:17:33 +0000", "from_user": "_jhs", "from_user_id": 16281277, "from_user_id_str": "16281277", "from_user_name": "Jason Smith", "geo": null, "id": 148648141997080580, "id_str": "148648141997080576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1600208979/jason_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600208979/jason_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @iriscouch: OH @caolan \"hmm, I'll link to build-couchdb too since that seems to work for a lot of people\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:17:28 +0000", "from_user": "iriscouch", "from_user_id": 270375368, "from_user_id_str": "270375368", "from_user_name": "Iris Couch", "geo": null, "id": 148648120757125120, "id_str": "148648120757125122", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1665147201/iris_couch_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665147201/iris_couch_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "OH @caolan \"hmm, I'll link to build-couchdb too since that seems to work for a lot of people\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:11:19 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 148631475477164030, "id_str": "148631475477164032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "steelmesh (0.8.0): http://t.co/JcvODdbJ CouchDB distribution and management of Node.js applications", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:36:17 +0000", "from_user": "KatelinEdelson", "from_user_id": 388370123, "from_user_id_str": "388370123", "from_user_name": "Katelin Edelson", "geo": null, "id": 148592458220052480, "id_str": "148592458220052480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1663798697/1142112_relaxing_girl_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663798697/1142112_relaxing_girl_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "MongoDB and CouchDB are probably two of the most well known document-oriented database systems around", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:30:21 +0000", "from_user": "datalaundry", "from_user_id": 19220745, "from_user_id_str": "19220745", "from_user_name": "Mike West", "geo": null, "id": 148590964666138620, "id_str": "148590964666138624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/623100090/mikewarmachine192square_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/623100090/mikewarmachine192square_normal.gif", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "RT @dadicool: #Kanso : the proper tool for #couchapps http://t.co/ewEYCFDy -> so glad I stumbled upon this! #couchdb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:27:44 +0000", "from_user": "datalaundry", "from_user_id": 19220745, "from_user_id_str": "19220745", "from_user_name": "Mike West", "geo": null, "id": 148590304939868160, "id_str": "148590304939868161", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/623100090/mikewarmachine192square_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/623100090/mikewarmachine192square_normal.gif", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "RT @dscape: couchdb is a database from the future. why the community stalled innovating taking advantage of this is something I'm yet to understand", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:05:49 +0000", "from_user": "DaveColvin", "from_user_id": 13495832, "from_user_id_str": "13495832", "from_user_name": "Dave Colvin", "geo": null, "id": 148584790130569200, "id_str": "148584790130569216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675863166/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675863166/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "API Doc is a bit light on...\" API Docs for Data\\n\\n:Store user data in CouchDB and have it be available to apps on any platform.\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:12:21 +0000", "from_user": "_jhs", "from_user_id": 16281277, "from_user_id_str": "16281277", "from_user_name": "Jason Smith", "geo": null, "id": 148556236382679040, "id_str": "148556236382679040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1600208979/jason_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600208979/jason_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @maxogden: functional transforms:couchdb::commits:git #opendata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:38:14 +0000", "from_user": "maxogden", "from_user_id": 12241752, "from_user_id_str": "12241752", "from_user_name": "max ogden", "geo": null, "id": 148547651607085060, "id_str": "148547651607085056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690285875/max_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690285875/max_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "functional transforms:couchdb::commits:git #opendata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:37:06 +0000", "from_user": "evilsoft", "from_user_id": 14910488, "from_user_id_str": "14910488", "from_user_name": "Ian Hofmann-Hicks", "geo": null, "id": 148547365031256060, "id_str": "148547365031256064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/195547623/evilTweet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/195547623/evilTweet_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Really digging on #nodejs with #couchdb for data aggregation and mining.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:13:50 +0000", "from_user": "strmpnk", "from_user_id": 198252361, "from_user_id_str": "198252361", "from_user_name": "strmpnk", "geo": null, "id": 148541511989080060, "id_str": "148541511989080064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1243790904/IMG_7685_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1243790904/IMG_7685_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@SaraJChipps it might depend on what's talking to CouchDB but there is a free book here: http://t.co/2avrTMvW", "to_user": "SaraJChipps", "to_user_id": 15524875, "to_user_id_str": "15524875", "to_user_name": "Sara Chipps", "in_reply_to_status_id": 148539164521005060, "in_reply_to_status_id_str": "148539164521005057"}, +{"created_at": "Sun, 18 Dec 2011 23:06:11 +0000", "from_user": "Ben_Hall", "from_user_id": 6898072, "from_user_id_str": "6898072", "from_user_name": "Ben Hall", "geo": null, "id": 148539584173719550, "id_str": "148539584173719552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/593855207/me_thumbnail_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/593855207/me_thumbnail_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@SaraJChipps the CouchDB book / wiki from o'reilly is good", "to_user": "SaraJChipps", "to_user_id": 15524875, "to_user_id_str": "15524875", "to_user_name": "Sara Chipps", "in_reply_to_status_id": 148539164521005060, "in_reply_to_status_id_str": "148539164521005057"}, +{"created_at": "Sun, 18 Dec 2011 22:24:53 +0000", "from_user": "Samisdat", "from_user_id": 5493712, "from_user_id_str": "5493712", "from_user_name": "Bastian Sackermann", "geo": null, "id": 148529190919094270, "id_str": "148529190919094272", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/34424312/quad_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/34424312/quad_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Der Server l\\u00E4uft mit @Nodejs Daten speichern in @CouchDB und http://t.co/7KzDdmZH \\u00FCbernimmt die Session. Sch\\u00F6ner Code ohne PHP ;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:30:03 +0000", "from_user": "MongoQuestion", "from_user_id": 233820847, "from_user_id_str": "233820847", "from_user_name": "Mongo Question", "geo": null, "id": 148485194167500800, "id_str": "148485194167500801", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1207364137/mq_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1207364137/mq_normal.jpg", "source": "<a href="http://learnmongo.com" rel="nofollow">Mongo Question</a>", "text": "\"How to create my DDD entities with Mongodb/Couchdb?\" #MongoDB - http://t.co/Wr1jD2l7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:03:23 +0000", "from_user": "iansari", "from_user_id": 14712598, "from_user_id_str": "14712598", "from_user_name": "Imran Ansari", "geo": null, "id": 148448282325168130, "id_str": "148448282325168128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1181071089/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1181071089/image_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@PeterBell is there @SpringData support for #CouchDB yet?, #CouchBase is gearing up for embedded version, would be helpful for backend intg", "to_user": "PeterBell", "to_user_id": 804749, "to_user_id_str": "804749", "to_user_name": "Peter Bell", "in_reply_to_status_id": 148438460905160700, "in_reply_to_status_id_str": "148438460905160705"}, +{"created_at": "Sun, 18 Dec 2011 16:51:18 +0000", "from_user": "jaseemabid", "from_user_id": 72292440, "from_user_id_str": "72292440", "from_user_name": "JavaScript Ninja!", "geo": null, "id": 148445244550168580, "id_str": "148445244550168577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668109024/IMG_5065_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668109024/IMG_5065_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Thinking @CouchDB :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:27:58 +0000", "from_user": "jaseemabid", "from_user_id": 72292440, "from_user_id_str": "72292440", "from_user_name": "JavaScript Ninja!", "geo": null, "id": 148439370129604600, "id_str": "148439370129604608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668109024/IMG_5065_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668109024/IMG_5065_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Performance Benchmark CouchDB x Relational Databases http://t.co/Tz77UC8E", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:28:58 +0000", "from_user": "alfamale156", "from_user_id": 61744769, "from_user_id_str": "61744769", "from_user_name": "Andrew Woodcock", "geo": null, "id": 148409423134593020, "id_str": "148409423134593025", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693217959/Daddy_and_Emily_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693217959/Daddy_and_Emily_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Restoring CouchDB databases from file http://t.co/3eGtbvis via http://t.co/ZrHEwBSt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:17:23 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148406507250253820, "id_str": "148406507250253825", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @Evangenieur Cradle a #CouchDB #NodeJS client http://t.co/PIOTRi7v", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:06:31 +0000", "from_user": "Evangenieur", "from_user_id": 21945870, "from_user_id_str": "21945870", "from_user_name": "Evan Genieur", "geo": null, "id": 148403772371107840, "id_str": "148403772371107840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/83725129/gunnm2_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/83725129/gunnm2_small_normal.jpg", "source": "<a href="http://www.scoop.it" rel="nofollow">Scoop.it</a>", "text": "Cradle a #CouchDB #NodeJS client http://t.co/jhFktvqN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:44:34 +0000", "from_user": "tinogomes", "from_user_id": 11265902, "from_user_id_str": "11265902", "from_user_name": "Celestino Gomes", "geo": null, "id": 148398249491963900, "id_str": "148398249491963905", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1266978946/Photo_14_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266978946/Photo_14_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "J\\u00E1 terminou o jogo, voltei da piscina e n\\u00E3o terminou a instala\\u00E7\\u00E3o do CouchDB #aff", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:58:22 +0000", "from_user": "obiwon", "from_user_id": 17131304, "from_user_id_str": "17131304", "from_user_name": "Boris Filipov", "geo": null, "id": 148386622776418300, "id_str": "148386622776418304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1129781473/28ae3d7d-b085-47c4-94e2-457415500580_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1129781473/28ae3d7d-b085-47c4-94e2-457415500580_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "http://t.co/D4om9kNG - \"Pay Attention. This is good.\" #couchdb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:16:38 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 148376118569873400, "id_str": "148376118569873409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "couchdb is a database from the future. why the community stalled innovating taking advantage of this is something I'm yet to understand", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:13:04 +0000", "from_user": "tinogomes", "from_user_id": 11265902, "from_user_id_str": "11265902", "from_user_name": "Celestino Gomes", "geo": null, "id": 148375223337631740, "id_str": "148375223337631744", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1266978946/Photo_14_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266978946/Photo_14_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "NO_ossa, demorando uma eternidade para instalar o CouchDB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:02:57 +0000", "from_user": "ewolff", "from_user_id": 15058614, "from_user_id_str": "15058614", "from_user_name": "Eberhard Wolff", "geo": null, "id": 148357576583692300, "id_str": "148357576583692288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/55233631/portraetminineu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/55233631/portraetminineu_normal.jpg", "source": "<a href="http://www.twitter.com" rel="nofollow">Twitter for Windows Phone</a>", "text": "@pavlobaron it will eventually happen. E.g. look at CouchDB and membase.", "to_user": "pavlobaron", "to_user_id": 70747148, "to_user_id_str": "70747148", "to_user_name": "Pavlo Baron", "in_reply_to_status_id": 148355456220413950, "in_reply_to_status_id_str": "148355456220413952"}, +{"created_at": "Sun, 18 Dec 2011 10:15:15 +0000", "from_user": "tikaszvince", "from_user_id": 41066098, "from_user_id_str": "41066098", "from_user_name": "Vince Tik\\u00E1sz", "geo": null, "id": 148345572674387970, "id_str": "148345572674387968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1599070602/facepalm-600-ff_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599070602/facepalm-600-ff_normal.jpg", "source": "<a href="http://yamm.hu" rel="nofollow">Yamm!</a>", "text": "#weblabor RT @phpizer CouchDB basics for PHP developers http://t.co/mzxM1CdP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:14:46 +0000", "from_user": "iansari", "from_user_id": 14712598, "from_user_id_str": "14712598", "from_user_name": "Imran Ansari", "geo": null, "id": 148254856627494900, "id_str": "148254856627494912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1181071089/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1181071089/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "#TouchDB a #CouchDB compatible mobile database (Objective-C version) https://t.co/IVtocjUe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:49:47 +0000", "from_user": "annwitbrock", "from_user_id": 14367689, "from_user_id_str": "14367689", "from_user_name": "Ann Witbrock", "geo": null, "id": 148233467115737100, "id_str": "148233467115737088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/552887655/red_fairy_lantern_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/552887655/red_fairy_lantern_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @Crad: Just pushed Tinman 0.3.0 to pypi with support for RabbitMQ, Redis, CouchDB templates and more. https://t.co/asUF8WIV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:39:51 +0000", "from_user": "drupalsteve", "from_user_id": 109211199, "from_user_id_str": "109211199", "from_user_name": "Steve Oliver", "geo": null, "id": 148230967671263230, "id_str": "148230967671263232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/833566844/drupal-steve-and-drupal-baby-small_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/833566844/drupal-steve-and-drupal-baby-small_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Interesting comments on Git and CouchDB :: \"What is the CouchDB replication protocol? Is it like Git?\" http://t.co/UHnDnU3w", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:14:12 +0000", "from_user": "Crad", "from_user_id": 12807022, "from_user_id_str": "12807022", "from_user_name": "Gavin M. Roy", "geo": null, "id": 148224511953743870, "id_str": "148224511953743873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1271485315/Screen_shot_2011-03-13_at_5.23.58_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1271485315/Screen_shot_2011-03-13_at_5.23.58_PM_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Just pushed Tinman 0.3.0 to pypi with support for RabbitMQ, Redis, CouchDB templates and more. https://t.co/asUF8WIV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:52:30 +0000", "from_user": "JLeeGhost", "from_user_id": 306117941, "from_user_id_str": "306117941", "from_user_name": "Johnneylee Rollins", "geo": null, "id": 148219051594887170, "id_str": "148219051594887168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1370810672/SpaceGhost_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1370810672/SpaceGhost_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@websuasion_ryan I love couchdb, I've been following it for some years, even before sofa and authentication were built in. Love map reduce.", "to_user": "websuasion_ryan", "to_user_id": 12664822, "to_user_id_str": "12664822", "to_user_name": "J. Ryan Williams", "in_reply_to_status_id": 148217679331856400, "in_reply_to_status_id_str": "148217679331856384"}, +{"created_at": "Sun, 18 Dec 2011 01:25:10 +0000", "from_user": "websuasion_ryan", "from_user_id": 12664822, "from_user_id_str": "12664822", "from_user_name": "J. Ryan Williams", "geo": null, "id": 148212174421098500, "id_str": "148212174421098496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1662853709/rubyredavitar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662853709/rubyredavitar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@JLeeGhost What do you like about OrientDB over, say, CouchDB (or Mongo... on paper... I know you said you'd only dabbled with it).", "to_user": "JLeeGhost", "to_user_id": 306117941, "to_user_id_str": "306117941", "to_user_name": "Johnneylee Rollins", "in_reply_to_status_id": 148210266243477500, "in_reply_to_status_id_str": "148210266243477504"}, +{"created_at": "Sun, 18 Dec 2011 00:44:34 +0000", "from_user": "ikioteck", "from_user_id": 276776806, "from_user_id_str": "276776806", "from_user_name": "Israel Medina", "geo": null, "id": 148201956689723400, "id_str": "148201956689723393", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1299115366/kio_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1299115366/kio_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @phpizer: CouchDB basics for PHP developers http://t.co/n4R5oqgF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:15:48 +0000", "from_user": "SusanPotter", "from_user_id": 16048796, "from_user_id_str": "16048796", "from_user_name": "Susan Potter", "geo": null, "id": 148194715639095300, "id_str": "148194715639095296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1238168669/me_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1238168669/me_normal.png", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Another project I have to figure out what is OSS-able: Erlang OTP config utilities to hook into Heroku (Redis, PG, CouchDB, Memcached, ...)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:37:45 +0000", "from_user": "alfamale156", "from_user_id": 61744769, "from_user_id_str": "61744769", "from_user_name": "Andrew Woodcock", "geo": null, "id": 148185142177968130, "id_str": "148185142177968129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693217959/Daddy_and_Emily_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693217959/Daddy_and_Emily_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Curl returning \\u201CInvalid UTF-8 JSON\\u201D error from CouchDb on Windows although JSON is correct http://t.co/5XHNKbRI via http://t.co/ZrHEwBSt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:27:18 +0000", "from_user": "paulkarayan", "from_user_id": 14326437, "from_user_id_str": "14326437", "from_user_name": "paulkarayan", "geo": null, "id": 148182511007186940, "id_str": "148182511007186944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/52532880/another_shitty_picture_happy_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/52532880/another_shitty_picture_happy_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "not sure why couchdb has suddenly stopped hating me, but I'll take it. pacified by pitchfork's spotify list? http://t.co/w2mJSO0t", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:26:21 +0000", "from_user": "dadicool", "from_user_id": 14200949, "from_user_id_str": "14200949", "from_user_name": "Dali Kilani", "geo": null, "id": 148182274049966080, "id_str": "148182274049966080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/86577298/portrait_dali_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/86577298/portrait_dali_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "#Kanso : the proper tool for #couchapps http://t.co/ewEYCFDy -> so glad I stumbled upon this! #couchdb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:18:09 +0000", "from_user": "maomuriel", "from_user_id": 41252072, "from_user_id_str": "41252072", "from_user_name": "Mauricio Muriel", "geo": null, "id": 148180208783081470, "id_str": "148180208783081472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/329899073/mia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/329899073/mia_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @phpizer: CouchDB basics for PHP developers http://t.co/n4R5oqgF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:04:22 +0000", "from_user": "ak4t0sh", "from_user_id": 394044498, "from_user_id_str": "394044498", "from_user_name": "ak4t0sh", "geo": null, "id": 148176739858788350, "id_str": "148176739858788352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1636817952/avatar_power_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1636817952/avatar_power_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @phpizer: CouchDB basics for PHP developers http://t.co/n4R5oqgF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:52:18 +0000", "from_user": "dadicool", "from_user_id": 14200949, "from_user_id_str": "14200949", "from_user_name": "Dali Kilani", "geo": null, "id": 148173701383335940, "id_str": "148173701383335936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/86577298/portrait_dali_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/86577298/portrait_dali_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "Sharing code between views http://t.co/LmTXww46 #couchdb #kanso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:58:00 +0000", "from_user": "madmw", "from_user_id": 1671311, "from_user_id_str": "1671311", "from_user_name": "Juli\\u00E1n Romero", "geo": null, "id": 148160037339140100, "id_str": "148160037339140096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/450218472/Avatar_Canencia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/450218472/Avatar_Canencia_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "apache, lighttpd, couchdb, redis, posgresql and a bunch of nodejs and django custom servers back to life; dinner time", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:39:57 +0000", "from_user": "cjk101010", "from_user_id": 27620736, "from_user_id_str": "27620736", "from_user_name": "Christian Kruse", "geo": null, "id": 148155495218290700, "id_str": "148155495218290690", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/643303938/Avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/643303938/Avatar_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "heavy database work is heavy. #couchdb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:15:42 +0000", "from_user": "SOTaggedQs", "from_user_id": 413434393, "from_user_id_str": "413434393", "from_user_name": "Mithun Patel", "geo": null, "id": 148149394980618240, "id_str": "148149394980618240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Can I store a CSS \"theme\" as a JSON document in CouchDB? ( and then load it and apply it? ): The syntax of CSS i... http://t.co/bikq0Mpo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:15:42 +0000", "from_user": "jQueryonSO", "from_user_id": 413032106, "from_user_id_str": "413032106", "from_user_name": "jQuery on SO", "geo": null, "id": 148149393902665730, "id_str": "148149393902665728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1640199208/jqueryso_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640199208/jqueryso_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Can I store a CSS \"theme\" as a JSON document in CouchDB? ( and then load it and apply it? ): The syntax of CSS i... http://t.co/nXPMEjj9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:46:33 +0000", "from_user": "tariquetuku", "from_user_id": 25580301, "from_user_id_str": "25580301", "from_user_name": "Tarique Tuku", "geo": null, "id": 148142055430946800, "id_str": "148142055430946816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1381198940/10042011201_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1381198940/10042011201_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @phpizer: CouchDB basics for PHP developers http://t.co/n4R5oqgF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:36:16 +0000", "from_user": "paulkarayan", "from_user_id": 14326437, "from_user_id_str": "14326437", "from_user_name": "paulkarayan", "geo": null, "id": 148139471467053060, "id_str": "148139471467053058", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/52532880/another_shitty_picture_happy_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/52532880/another_shitty_picture_happy_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "house cleaning then figuring out what the hell is wrong with my CouchDB installation", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:23:15 +0000", "from_user": "viking_olof", "from_user_id": 147300633, "from_user_id_str": "147300633", "from_user_name": "Olof", "geo": null, "id": 148136194495102980, "id_str": "148136194495102976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/936074674/80x80_comic0024_laymGAJROZkAVpgnnqSvQ_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/936074674/80x80_comic0024_laymGAJROZkAVpgnnqSvQ_normal.jpg", "source": "<a href="http://myworld.se/olga-olof-sitting-in-a-tree/" rel="nofollow">Olga</a>", "text": "CouchDB basics for PHP developers http://t.co/ULRmsa6a #php", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:06:08 +0000", "from_user": "bbpmkoert", "from_user_id": 21104854, "from_user_id_str": "21104854", "from_user_name": "Michael Koert", "geo": null, "id": 148131884533166080, "id_str": "148131884533166080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/83730970/IMG_0309_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/83730970/IMG_0309_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @phpizer: CouchDB basics for PHP developers http://t.co/n4R5oqgF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:54:36 +0000", "from_user": "natevw", "from_user_id": 8419342, "from_user_id_str": "8419342", "from_user_name": "Nathan Vander Wilt", "geo": null, "id": 148128982297088000, "id_str": "148128982297088000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1266548910/updated_profile_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266548910/updated_profile_pic_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Basically, I don't want half the data that raw @couchdb view output sends, but using a simple _list format function halves the speed too :-(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:52:14 +0000", "from_user": "natevw", "from_user_id": 8419342, "from_user_id_str": "8419342", "from_user_name": "Nathan Vander Wilt", "geo": null, "id": 148128387901292540, "id_str": "148128387901292544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1266548910/updated_profile_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266548910/updated_profile_pic_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Door no. 1: send 11.25MB of data in 16.3s\\nDoor no. 2: send 5.00MB of data in 34.86s\\n\\nBlame the IPC-boundary between @couchdb and its _lists?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Sat, 17 Dec 2011 19:51:34 +0000", "from_user": "frabcus", "from_user_id": 14328152, "from_user_id_str": "14328152", "from_user_name": "Francis Irving", "geo": null, "id": 148128219898449920, "id_str": "148128219898449920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/57028726/garage_with_4_cropped_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/57028726/garage_with_4_cropped_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@stef mongodb or couchdb? and would you need fancier queries, or syncing or just download to use?", "to_user": "stef", "to_user_id": 853471, "to_user_id_str": "853471", "to_user_name": "Stef Lewandowski", "in_reply_to_status_id": 148091931900117000, "in_reply_to_status_id_str": "148091931900116992"}, +{"created_at": "Sat, 17 Dec 2011 19:48:13 +0000", "from_user": "vlizco", "from_user_id": 41031976, "from_user_id_str": "41031976", "from_user_name": "Victor Lontoh", "geo": null, "id": 148127376121937920, "id_str": "148127376121937920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/923136180/Iron_Man_Teaser_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/923136180/Iron_Man_Teaser_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "CouchDB basics for PHP developers: http://t.co/wrCYja9j #php", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:48:09 +0000", "from_user": "phpizer", "from_user_id": 25524283, "from_user_id_str": "25524283", "from_user_name": "PHP Web Developer", "geo": null, "id": 148127362209431550, "id_str": "148127362209431553", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/104692230/php_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/104692230/php_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "CouchDB basics for PHP developers http://t.co/n4R5oqgF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:16:43 +0000", "from_user": "bdoughan", "from_user_id": 145827900, "from_user_id_str": "145827900", "from_user_name": "Blaise Doughan", "geo": null, "id": 148119450783195140, "id_str": "148119450783195136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1024958935/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1024958935/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@franciscophilip @notessensei You are looking to create a Java client to access CouchDB's JSON RESTful API?", "to_user": "franciscophilip", "to_user_id": 25666935, "to_user_id_str": "25666935", "to_user_name": "Francisco Philip", "in_reply_to_status_id": 148030708579975170, "in_reply_to_status_id_str": "148030708579975168"}, +{"created_at": "Sat, 17 Dec 2011 19:00:21 +0000", "from_user": "patrickDurusau", "from_user_id": 152194866, "from_user_id_str": "152194866", "from_user_name": "Patrick Durusau", "geo": null, "id": 148115332865867780, "id_str": "148115332865867778", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/961579480/patrick_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/961579480/patrick_normal.jpeg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Couchbase #topicmaps #NoSQL #Couchbase #CouchDB - http://t.co/05U3i3Gq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:52:47 +0000", "from_user": "Nerdmedia", "from_user_id": 137109537, "from_user_id_str": "137109537", "from_user_name": "Serkan Sipahi", "geo": null, "id": 148113428601520130, "id_str": "148113428601520129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/924084793/twitter_ente_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/924084793/twitter_ente_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "got my first couchDB webserver from raumopol.de ;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:42:50 +0000", "from_user": "pisatoshi", "from_user_id": 9822602, "from_user_id_str": "9822602", "from_user_name": "Satoshi Takida", "geo": null, "id": 148095821722828800, "id_str": "148095821722828801", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1130983937/GRP_0034_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1130983937/GRP_0034_normal.JPG", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "cloudant\\u306Ecouchdb\\u30DB\\u30B9\\u30C6\\u30A3\\u30F3\\u30B0\\u767B\\u9332\\u3057\\u3066\\u307F\\u305F\\u3002\\u3053\\u306A\\u3044\\u3060\\u767B\\u9332\\u3067\\u304D\\u306A\\u304B\\u3063\\u305F\\u306E\\u306F\\u30DB\\u30F3\\u30C8\\u306B\\u30B7\\u30B9\\u30C6\\u30E0\\u5074\\u306E\\u554F\\u984C\\u3060\\u3063\\u305F\\u307F\\u305F\\u3044", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:58:00 +0000", "from_user": "Medic", "from_user_id": 18257882, "from_user_id_str": "18257882", "from_user_name": "Medic Mobile", "geo": null, "id": 148084539070234620, "id_str": "148084539070234624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1183159540/MANDA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1183159540/MANDA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @caolan: Notes from the #couchapp community meeting Dec 2011 https://t.co/pzXlQs8U - thanks @maxogden for writing these up! #couchdb #kanso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:55:53 +0000", "from_user": "nieuws_website", "from_user_id": 202211352, "from_user_id_str": "202211352", "from_user_name": "nieuws_website", "geo": null, "id": 148068907343822850, "id_str": "148068907343822848", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1145927756/capica-website_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1145927756/capica-website_normal.gif", "source": "<a href="http://www.capica.nl" rel="nofollow">Capica B.V.</a>", "text": "Internet begrip: CouchDB http://t.co/CFhrqEJH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:47:51 +0000", "from_user": "alfamale156", "from_user_id": 61744769, "from_user_id_str": "61744769", "from_user_name": "Andrew Woodcock", "geo": null, "id": 148066888721772540, "id_str": "148066888721772545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693217959/Daddy_and_Emily_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693217959/Daddy_and_Emily_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Restoring CouchDB databases from file http://t.co/3eGtbvis via http://t.co/ZrHEwBSt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:07:01 +0000", "from_user": "jaseemabid", "from_user_id": 72292440, "from_user_id_str": "72292440", "from_user_name": "JavaScript Ninja!", "geo": null, "id": 148056610026176500, "id_str": "148056610026176513", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668109024/IMG_5065_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668109024/IMG_5065_normal.JPG", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "mapReduce is bloody awesome with couchDB :-) exploring more..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:34:32 +0000", "from_user": "alFReD88NSH", "from_user_id": 401435995, "from_user_id_str": "401435995", "from_user_name": "Farid Neshat", "geo": null, "id": 148048436527251460, "id_str": "148048436527251456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1680222776/226933_1697386080838_1423463094_31376426_7422822_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680222776/226933_1697386080838_1423463094_31376426_7422822_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I am starting to have a feeling that #couchdb has a weird name!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:00:09 +0000", "from_user": "patrickDurusau", "from_user_id": 152194866, "from_user_id_str": "152194866", "from_user_name": "Patrick Durusau", "geo": null, "id": 148039783464189950, "id_str": "148039783464189953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/961579480/patrick_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/961579480/patrick_normal.jpeg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Getting Started with CouchDB #topicmaps #NoSQL #CouchDB - http://t.co/wMUg73Rb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:53:12 +0000", "from_user": "Zhen_Guang", "from_user_id": 20353769, "from_user_id_str": "20353769", "from_user_name": "Zhen Guang", "geo": null, "id": 148038035970326530, "id_str": "148038035970326528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/423870151/n713891526_270276_3040_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/423870151/n713891526_270276_3040_normal.jpg", "source": "<a href="http://gettwidget.com" rel="nofollow">Twidget App</a>", "text": "CouchDB... CouchDB... CouchDB... CouchDB... CouchDB...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:37:49 +0000", "from_user": "meganehouser", "from_user_id": 188343967, "from_user_id_str": "188343967", "from_user_name": "\\u3081\\u304C\\u306D\\u306F\\u3046\\u3055\\u30FC", "geo": null, "id": 148034164954902530, "id_str": "148034164954902529", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1122988658/meganehouser_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1122988658/meganehouser_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u3084\\u3063\\u3068\\u30DB\\u30B9\\u30C8OS\\u304B\\u3089\\u30B2\\u30B9\\u30C8OS\\u306ECouchDB\\u306B\\u7E4B\\u304C\\u308B\\u3088\\u3046\\u306B\\u306A\\u3063\\u305F\\u2026\\u3002\\u75B2\\u52B4\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:30:07 +0000", "from_user": "meganehouser", "from_user_id": 188343967, "from_user_id_str": "188343967", "from_user_name": "\\u3081\\u304C\\u306D\\u306F\\u3046\\u3055\\u30FC", "geo": null, "id": 148032224950878200, "id_str": "148032224950878208", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1122988658/meganehouser_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1122988658/meganehouser_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u5165\\u9580\\u30BD\\u30FC\\u30B7\\u30E3\\u30EB\\u30C7\\u30FC\\u30BF\\u8AAD\\u3093\\u3067\\u3001CouchDB\\u3092\\u8A66\\u3057\\u3066\\u307F\\u305F\\u304F\\u306A\\u3063\\u305F\\uFF01\\u305B\\u3063\\u304B\\u304F\\u306A\\u306E\\u3067VirtualBox\\u3067Ubuntu\\u5165\\u308C\\u3066\\u3084\\u3063\\u3066\\u307F\\u3066\\u308B\\u3093\\u3060\\u304C\\u3044\\u3061\\u3044\\u3061\\u884C\\u304D\\u8A70\\u307E\\u308B\\u2026\\u3002Windows\\u8133\\u306B\\u306F\\u96E3\\u3057\\u3044\\u306A\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:24:05 +0000", "from_user": "franciscophilip", "from_user_id": 25666935, "from_user_id_str": "25666935", "from_user_name": "Francisco Philip", "geo": null, "id": 148030708579975170, "id_str": "148030708579975168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1509539265/nycm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509539265/nycm_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@bdoughan @notessensei on couchdb?", "to_user": "bdoughan", "to_user_id": 145827900, "to_user_id_str": "145827900", "to_user_name": "Blaise Doughan", "in_reply_to_status_id": 148027002547470340, "in_reply_to_status_id_str": "148027002547470336"}, +{"created_at": "Sat, 17 Dec 2011 11:45:53 +0000", "from_user": "merissimissima", "from_user_id": 262898875, "from_user_id_str": "262898875", "from_user_name": "Mery", "geo": null, "id": 148005995786932220, "id_str": "148005995786932224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1435096614/mariachiara-pezzotti_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1435096614/mariachiara-pezzotti_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @peppertw: [DEV] the migration from @CouchDB to @mongodb it's even closer with the last commit by @odracci . Well done!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:29:24 +0000", "from_user": "cirpo", "from_user_id": 452783, "from_user_id_str": "452783", "from_user_name": "cirpo", "geo": null, "id": 148001847993565200, "id_str": "148001847993565184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1614690021/IMG_1270_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1614690021/IMG_1270_1_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @peppertw: [DEV] the migration from @CouchDB to @mongodb it's even closer with the last commit by @odracci . Well done!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:29:22 +0000", "from_user": "webdebresa", "from_user_id": 272496798, "from_user_id_str": "272496798", "from_user_name": "webdebs", "geo": null, "id": 148001837088387070, "id_str": "148001837088387072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1313829230/187879_173601456023467_2524482_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1313829230/187879_173601456023467_2524482_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @peppertw: [DEV] the migration from @CouchDB to @mongodb it's even closer with the last commit by @odracci . Well done!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:28:59 +0000", "from_user": "peppertw", "from_user_id": 398642585, "from_user_id_str": "398642585", "from_user_name": "peppertweet", "geo": null, "id": 148001742687186940, "id_str": "148001742687186944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1639488504/loghettino_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639488504/loghettino_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "[DEV] the migration from @CouchDB to @mongodb it's even closer with the last commit by @odracci . Well done!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:16:52 +0000", "from_user": "ktiedt", "from_user_id": 30162398, "from_user_id_str": "30162398", "from_user_name": "Karl Tiedt", "geo": null, "id": 147968493957029900, "id_str": "147968493957029888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1188433232/karl_avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1188433232/karl_avatar_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "sigh, #couchdb why wont you return results when I want to match a single value in a complex query\\u2026 startkey=[\"a\"]&endkey=[\"a\"]", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:14:05 +0000", "from_user": "Kerrilqz", "from_user_id": 431755503, "from_user_id_str": "431755503", "from_user_name": "Carli Demo", "geo": null, "id": 147967791344009200, "id_str": "147967791344009216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681148073/0lpqub55cx_112547976-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681148073/0lpqub55cx_112547976-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "CouchDB: The Definitive Guide: Three of CouchDB's creators show you how to use this document-oriented database a... http://t.co/n3cPausF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:29:49 +0000", "from_user": "shase428", "from_user_id": 16577593, "from_user_id_str": "16577593", "from_user_name": "s.hasegawa", "geo": null, "id": 147956653650751500, "id_str": "147956653650751490", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1343603797/image_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1343603797/image_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u3042\\u30FC\\uFF08\\u3068\\u3057\\u304B\\u3044\\u3048\\u306A\\u3044\\uFF09 RT @mkouhei \\u3042\\u308C\\u3001CouchApp\\u304CDebian\\u304B\\u3089\\u6D88\\u3048\\u3066\\u308B\\u3002 #couchdb", "to_user": "mkouhei", "to_user_id": 7642012, "to_user_id_str": "7642012", "to_user_name": "Kouhei Maeda", "in_reply_to_status_id": 147955754106757120, "in_reply_to_status_id_str": "147955754106757121"}, +{"created_at": "Sat, 17 Dec 2011 08:26:19 +0000", "from_user": "resz", "from_user_id": 17708717, "from_user_id_str": "17708717", "from_user_name": "\\u3057\\u308A\\u3068\\u3063\\u305F\\u30FC", "geo": null, "id": 147955773434114050, "id_str": "147955773434114049", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1501759559/bot4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1501759559/bot4_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @mkouhei: \\u3042\\u308C\\u3001CouchApp\\u304CDebian\\u304B\\u3089\\u6D88\\u3048\\u3066\\u308B\\u3002 #couchdb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:26:15 +0000", "from_user": "mkouhei", "from_user_id": 7642012, "from_user_id_str": "7642012", "from_user_name": "Kouhei Maeda", "geo": null, "id": 147955754106757120, "id_str": "147955754106757121", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1374594278/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1374594278/profile_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "\\u3042\\u308C\\u3001CouchApp\\u304CDebian\\u304B\\u3089\\u6D88\\u3048\\u3066\\u308B\\u3002 #couchdb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 06:24:17 +0000", "from_user": "sof_ruby", "from_user_id": 73078298, "from_user_id_str": "73078298", "from_user_name": "StackOverFlow Ruby", "geo": null, "id": 147925060676620300, "id_str": "147925060676620288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/407634629/ruby-logo-R_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/407634629/ruby-logo-R_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Error on running CouchRest.put(): I need to update a couchdb document, when i try and run the command in irb \\n\\n ... http://t.co/RFuCrV4f", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:40:30 +0000", "from_user": "stackfeed", "from_user_id": 237310237, "from_user_id_str": "237310237", "from_user_name": "StackOverflow", "geo": null, "id": 147883842219417600, "id_str": "147883842219417601", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Error on running CouchRest.put(): I need to update a couchdb document, when i try and run the command command \\n\\n... http://t.co/R762UdL9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:35:19 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 147867440523657200, "id_str": "147867440523657216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "follow (0.6.1): http://t.co/uqj8pmxS Extremely robust, fault-tolerant CouchDB changes follower", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:23:25 +0000", "from_user": "parkerforprez", "from_user_id": 161733521, "from_user_id_str": "161733521", "from_user_name": "Angel Martinez", "geo": null, "id": 147864444591022080, "id_str": "147864444591022080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1671855454/299955_10150300096001868_583751867_8522478_1963744810_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671855454/299955_10150300096001868_583751867_8522478_1963744810_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "ah, found what I was looking for! http://t.co/x1yC3wOi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:59:39 +0000", "from_user": "thinkjson", "from_user_id": 24170535, "from_user_id_str": "24170535", "from_user_name": "Mark Cahill", "geo": null, "id": 147843365231276030, "id_str": "147843365231276032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1526946440/16766_100877089938022_100000471935187_20645_5642428_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1526946440/16766_100877089938022_100000471935187_20645_5642428_n_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@lukewelling We use CouchDB with LucidDB to get the best of both worlds. Unstructured documents *and* reporting via SQL.", "to_user": "lukewelling", "to_user_id": 14840808, "to_user_id_str": "14840808", "to_user_name": "Luke Welling", "in_reply_to_status_id": 147436795318124540, "in_reply_to_status_id_str": "147436795318124545"}, +{"created_at": "Sat, 17 Dec 2011 00:27:09 +0000", "from_user": "Ijokarumawak", "from_user_id": 128910202, "from_user_id_str": "128910202", "from_user_name": "Koji Kawamura", "geo": null, "id": 147835186745315330, "id_str": "147835186745315328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1200646395/Ijokarumawak_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1200646395/Ijokarumawak_normal.jpg", "source": "<a href="http://SkyGrid.com/" rel="nofollow">SkyGrid</a>", "text": "Couchbase Celebrates a Successful Year\\nhttp://t.co/X2ttOjVh Pokemon! These case studies r about Membase, only? Are they using CouchDB?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:23:39 +0000", "from_user": "tomdale", "from_user_id": 668863, "from_user_id_str": "668863", "from_user_name": "Tom Dale", "geo": null, "id": 147834306411241470, "id_str": "147834306411241472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317834118/avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317834118/avatar_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@awiltsch I think most people usually put a thin layer between CouchDB and the web. CouchDB protocol is hard to consume raw.", "to_user": "awiltsch", "to_user_id": 35546323, "to_user_id_str": "35546323", "to_user_name": "Alex W", "in_reply_to_status_id": 147832273885081600, "in_reply_to_status_id_str": "147832273885081600"}, +{"created_at": "Sat, 17 Dec 2011 00:16:45 +0000", "from_user": "datalaundry", "from_user_id": 19220745, "from_user_id_str": "19220745", "from_user_name": "Mike West", "geo": null, "id": 147832566504886270, "id_str": "147832566504886273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/623100090/mikewarmachine192square_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/623100090/mikewarmachine192square_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @caolan: Notes from the #couchapp community meeting Dec 2011 https://t.co/pzXlQs8U - thanks @maxogden for writing these up! #couchdb #kanso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:08:02 +0000", "from_user": "awiltsch", "from_user_id": 35546323, "from_user_id_str": "35546323", "from_user_name": "Alex W", "geo": null, "id": 147830375194968060, "id_str": "147830375194968065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1548646247/SkeleTON_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1548646247/SkeleTON_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@tomdale What's the backend for Amber.js? I've got a lot of CouchDB data I'd like to expose", "to_user": "tomdale", "to_user_id": 668863, "to_user_id_str": "668863", "to_user_name": "Tom Dale", "in_reply_to_status_id": 147825175319166980, "in_reply_to_status_id_str": "147825175319166976"}, +{"created_at": "Fri, 16 Dec 2011 23:12:34 +0000", "from_user": "ophbalance", "from_user_id": 17058064, "from_user_id_str": "17058064", "from_user_name": "Matthew D Williams", "geo": null, "id": 147816417809547260, "id_str": "147816417809547264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1442127524/Snapshot_20110714_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1442127524/Snapshot_20110714_normal.jpg", "source": "<a href="http://getspaz.com" rel="nofollow">Spaz HD for webOS</a>", "text": "RT @AndyJ turning x-men: first class on before for the first time whilst getting in to Node and CouchDB was a mistake. Movie 1, Leaning 0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:02:40 +0000", "from_user": "booyaa", "from_user_id": 719673, "from_user_id_str": "719673", "from_user_name": "booyaa", "geo": null, "id": 147813925482807300, "id_str": "147813925482807297", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/640332281/boo-sm-avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/640332281/boo-sm-avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @maxogden: notes from the #couchdb couchapp community meeting https://t.co/wmiVpLB9 tl;dr we want couchapps to work as offline chrome extensions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:58:03 +0000", "from_user": "JavierVilchezL", "from_user_id": 74251873, "from_user_id_str": "74251873", "from_user_name": "Javier Alexander", "geo": null, "id": 147812761756368900, "id_str": "147812761756368896", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1664130266/ubuntu11_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664130266/ubuntu11_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@programasphp ser\\u00EDa excelente un taller de php con bases de datos no sql #MongoDB #CouchDB y #Kasandra por ejemplo.", "to_user": "programasphp", "to_user_id": 165197451, "to_user_id_str": "165197451", "to_user_name": "Programadores de PHP", "in_reply_to_status_id": 147811051235311600, "in_reply_to_status_id_str": "147811051235311616"}, +{"created_at": "Fri, 16 Dec 2011 22:46:49 +0000", "from_user": "zm1th", "from_user_id": 17403517, "from_user_id_str": "17403517", "from_user_name": "Nate", "geo": null, "id": 147809935147810800, "id_str": "147809935147810816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1098563804/caveman_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1098563804/caveman_normal.gif", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "I'm looking to move away from couchrest_model. What's YOUR favorite way to get at couchdb from ruby?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:36:37 +0000", "from_user": "unhosted", "from_user_id": 188843108, "from_user_id_str": "188843108", "from_user_name": "Unhosted", "geo": null, "id": 147807366975459330, "id_str": "147807366975459328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1571295852/unhosted-logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1571295852/unhosted-logo_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@raster @jasonbot2000 Hi! yes, like CouchDB, ownCloud is compatible with remoteStorage http://t.co/5hma7ID2 and the devs are buddies of ours", "to_user": "raster", "to_user_id": 6177, "to_user_id_str": "6177", "to_user_name": "Pete Prodoehl", "in_reply_to_status_id": 147729893873025020, "in_reply_to_status_id_str": "147729893873025025"}, +{"created_at": "Fri, 16 Dec 2011 22:31:23 +0000", "from_user": "benoitc", "from_user_id": 770056, "from_user_id_str": "770056", "from_user_name": "beno\\u00EEt chesneau", "geo": null, "id": 147806050756739070, "id_str": "147806050756739073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/76299981/avatar100x100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/76299981/avatar100x100_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @refugeio: There is a sprint on the refuge project this week-end, any help will be appreciated http://t.co/INVfh2zI #couchdb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:19:19 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 147803016353943550, "id_str": "147803016353943552", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "replicate (0.2.0): http://t.co/tHEWdSOD A customizable CouchDB replicator in node.js.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:07:00 +0000", "from_user": "AndyJ", "from_user_id": 6203362, "from_user_id_str": "6203362", "from_user_name": "Andy Jarrett", "geo": null, "id": 147799917027541000, "id_str": "147799917027540992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1610771482/Photo_on_28-10-2011_at_15.31__4_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610771482/Photo_on_28-10-2011_at_15.31__4_copy_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "turning x-men: first class on before for the first time whilst getting in to Node and CouchDB was a mistake. Movie 1, Leaning 0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:55:18 +0000", "from_user": "VoIP2600", "from_user_id": 312912958, "from_user_id_str": "312912958", "from_user_name": "Patrick Sullivan", "geo": null, "id": 147796971783061500, "id_str": "147796971783061504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "http://t.co/ttkLjdip\\n\\nGood overview how we use BigCouch (and CouchDB) as our DB for our platform.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:46:13 +0000", "from_user": "bgnori", "from_user_id": 23901870, "from_user_id_str": "23901870", "from_user_name": "Nori", "geo": null, "id": 147794685509898240, "id_str": "147794685509898240", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/93610285/Flowers002_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/93610285/Flowers002_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "CouchDB\\u306F\\u660E\\u3089\\u304B\\u306Btoo much\\u3060\\u306A\\u3041\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:42:45 +0000", "from_user": "me_bx", "from_user_id": 357548180, "from_user_id_str": "357548180", "from_user_name": "Mehdi El Fadil", "geo": null, "id": 147793814210359300, "id_str": "147793814210359296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1627782844/photo_-_identite_-_square_-_300_x_300_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627782844/photo_-_identite_-_square_-_300_x_300_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @strmpnk: Good to see funding go Cloudant's way. It's definitely important for the entire CouchDB community.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:33:38 +0000", "from_user": "bgnori", "from_user_id": 23901870, "from_user_id_str": "23901870", "from_user_name": "Nori", "geo": null, "id": 147791520026734600, "id_str": "147791520026734592", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/93610285/Flowers002_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/93610285/Flowers002_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "twisted.enterprise.adbapi \\u3063\\u3066\\u3044\\u3046\\u306E\\u304C\\u3042\\u308B\\u306A\\u3041\\u3002\\u3042\\u3068\\u306Fpaisley for CouchDB\\u304B\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:31:09 +0000", "from_user": "mandric", "from_user_id": 3474, "from_user_id_str": "3474", "from_user_name": "Milan Andric", "geo": null, "id": 147790893963939840, "id_str": "147790893963939840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/64558932/IMG_0038_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/64558932/IMG_0038_normal.PNG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @caolan: Notes from the #couchapp community meeting Dec 2011 https://t.co/pzXlQs8U - thanks @maxogden for writing these up! #couchdb #kanso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:27:22 +0000", "from_user": "semanio", "from_user_id": 43466088, "from_user_id_str": "43466088", "from_user_name": "Nathan (Nate) Hanna", "geo": null, "id": 147789941483642880, "id_str": "147789941483642880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1524091859/93a2067ea3239176e9611e5148417a5d_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1524091859/93a2067ea3239176e9611e5148417a5d_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Cassandra vs MongoDB vs CouchDB vs Redis vs Riak vs HBase comparison :: KKovacs http://t.co/h3tprGSF via @addthis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:26:40 +0000", "from_user": "jchris", "from_user_id": 1623, "from_user_id_str": "1623", "from_user_name": "J Chris Anderson", "geo": null, "id": 147789763225718800, "id_str": "147789763225718784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1611440478/IMG_0049_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611440478/IMG_0049_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @maxogden: notes from the #couchdb couchapp community meeting https://t.co/wmiVpLB9 tl;dr we want couchapps to work as offline chrome extensions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:18:20 +0000", "from_user": "robertoames", "from_user_id": 26302524, "from_user_id_str": "26302524", "from_user_name": "Robert Ames", "geo": null, "id": 147787669689217020, "id_str": "147787669689217025", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1601392937/ROA-small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601392937/ROA-small_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Nice view backwards and forwards from @Couchbase Clears of Membase, CouchDB, Couchbase Server Confusion http://t.co/Tha0cIeE via @gotrapit", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:09:12 +0000", "from_user": "andrewa2", "from_user_id": 6086892, "from_user_id_str": "6086892", "from_user_name": "Andrew Sardone", "geo": null, "id": 147785369428049920, "id_str": "147785369428049921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1096256131/foo2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1096256131/foo2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @maxogden: notes from the #couchdb couchapp community meeting https://t.co/wmiVpLB9 tl;dr we want couchapps to work as offline chrome extensions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:18:47 +0000", "from_user": "ryanjarvinen", "from_user_id": 14945367, "from_user_id_str": "14945367", "from_user_name": "ryan", "geo": null, "id": 147772683210330100, "id_str": "147772683210330112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1227505866/sp_head_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1227505866/sp_head_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @maxogden: notes from the #couchdb couchapp community meeting https://t.co/wmiVpLB9 tl;dr we want couchapps to work as offline chrome extensions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:12:02 +0000", "from_user": "caolan", "from_user_id": 12185182, "from_user_id_str": "12185182", "from_user_name": "Caolan McMahon", "geo": null, "id": 147770982948548600, "id_str": "147770982948548608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1328677360/colourful_cropped_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1328677360/colourful_cropped_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Notes from the #couchapp community meeting Dec 2011 https://t.co/pzXlQs8U - thanks @maxogden for writing these up! #couchdb #kanso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:56:35 +0000", "from_user": "maxogden", "from_user_id": 12241752, "from_user_id_str": "12241752", "from_user_name": "max ogden", "geo": null, "id": 147767095864721400, "id_str": "147767095864721408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690285875/max_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690285875/max_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "notes from the #couchdb couchapp community meeting https://t.co/wmiVpLB9 tl;dr we want couchapps to work as offline chrome extensions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:53:49 +0000", "from_user": "jochumsenhoyyw0", "from_user_id": 395388937, "from_user_id_str": "395388937", "from_user_name": "Jochumsen Utley", "geo": null, "id": 147766400495259650, "id_str": "147766400495259649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1599594847/f_45_w_0001_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599594847/f_45_w_0001_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "so... has anyone tried embedding CouchDB into a Mac app? I know there\\u2019s an iOS story nowadays...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:14:18 +0000", "from_user": "furrier", "from_user_id": 833071, "from_user_id_str": "833071", "from_user_name": "John Furrier", "geo": null, "id": 147756454051454980, "id_str": "147756454051454976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1139238299/SiliconANGLE_jf_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1139238299/SiliconANGLE_jf_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @strmpnk: Good to see funding go Cloudant's way. It's definitely important for the entire CouchDB community.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:12:57 +0000", "from_user": "klimpong", "from_user_id": 4600051, "from_user_id_str": "4600051", "from_user_name": "Till!", "geo": null, "id": 147756112693833730, "id_str": "147756112693833728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/18810092/till_avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/18810092/till_avatar_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @strmpnk: Good to see funding go Cloudant's way. It's definitely important for the entire CouchDB community.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:12:48 +0000", "from_user": "strmpnk", "from_user_id": 198252361, "from_user_id_str": "198252361", "from_user_name": "strmpnk", "geo": null, "id": 147756076404703230, "id_str": "147756076404703232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1243790904/IMG_7685_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1243790904/IMG_7685_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Good to see funding go Cloudant's way. It's definitely important for the entire CouchDB community.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:06:58 +0000", "from_user": "TeddyCaddy", "from_user_id": 123038914, "from_user_id_str": "123038914", "from_user_name": "Teddy Caddy", "geo": null, "id": 147739508585136130, "id_str": "147739508585136128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1544852799/globex_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544852799/globex_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@alindeman Does MongoDB support CommonJS? I have used underscore.js in CouchDB.", "to_user": "alindeman", "to_user_id": 13235612, "to_user_id_str": "13235612", "to_user_name": "Andy Lindeman", "in_reply_to_status_id": 147737599572844540, "in_reply_to_status_id_str": "147737599572844546"}, +{"created_at": "Fri, 16 Dec 2011 18:02:37 +0000", "from_user": "j_ga", "from_user_id": 9121482, "from_user_id_str": "9121482", "from_user_name": "Javier G\\u00F3mez-Acebo", "geo": null, "id": 147738415276896260, "id_str": "147738415276896256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/32289792/Foto_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/32289792/Foto_3_normal.jpg", "source": "<a href="http://www.on24.com" rel="nofollow">on24 widget</a>", "text": "On the #CouchDB #webinar. Thanks @OReillyMedia! #CouchDB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:57:31 +0000", "from_user": "michael_silva", "from_user_id": 15679303, "from_user_id_str": "15679303", "from_user_name": "Michael Silva", "geo": null, "id": 147737132469981200, "id_str": "147737132469981185", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1447683200/IMG_1235_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1447683200/IMG_1235_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @OReillyMedia: Live #webcast starts in 30min with @snej #CouchDB 'Getting Started In Modeling With Couchbase Mobile http://t.co/HHMf9Bgq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:32:46 +0000", "from_user": "frickcesar", "from_user_id": 159378145, "from_user_id_str": "159378145", "from_user_name": "C\\u00E9sar Frick", "geo": null, "id": 147730901059637250, "id_str": "147730901059637248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1022484916/perfil_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1022484916/perfil_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @OReillyMedia: Live #webcast starts in 30min with @snej #CouchDB 'Getting Started In Modeling With Couchbase Mobile http://t.co/HHMf9Bgq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:32:32 +0000", "from_user": "the_fricky", "from_user_id": 8844532, "from_user_id_str": "8844532", "from_user_name": "The Fricky!", "geo": null, "id": 147730845287989250, "id_str": "147730845287989249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1278639741/ttgl_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1278639741/ttgl_avatar_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @OReillyMedia: Live #webcast starts in 30min with @snej #CouchDB 'Getting Started In Modeling With Couchbase Mobile http://t.co/HHMf9Bgq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:31:09 +0000", "from_user": "OReillyMedia", "from_user_id": 11069462, "from_user_id_str": "11069462", "from_user_name": "O'Reilly Media", "geo": null, "id": 147730496032489470, "id_str": "147730496032489472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/67008339/oreilly-icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/67008339/oreilly-icon_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Live #webcast starts in 30min with @snej #CouchDB 'Getting Started In Modeling With Couchbase Mobile http://t.co/HHMf9Bgq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:23:31 +0000", "from_user": "bitSprout", "from_user_id": 24836911, "from_user_id_str": "24836911", "from_user_name": "bitSprout", "geo": null, "id": 147728573585821700, "id_str": "147728573585821696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1124189574/BitSprout_Avatar_export_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1124189574/BitSprout_Avatar_export_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Just cut a release of a CouchDB integration module for Drupal 7. Check it out and help test it! http://t.co/hzQzNmYn #drupal #couchdb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:54:45 +0000", "from_user": "TheMightyAl", "from_user_id": 21303870, "from_user_id_str": "21303870", "from_user_name": "Allan S-M", "geo": null, "id": 147721336528183300, "id_str": "147721336528183296", "iso_language_code": "is", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1311386538/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1311386538/me_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Django, CouchDB and Lamson, I'm having fun :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:42:54 +0000", "from_user": "FranckErnewein", "from_user_id": 59106894, "from_user_id_str": "59106894", "from_user_name": "Franck Ernewein", "geo": null, "id": 147718354860376060, "id_str": "147718354860376065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1539864082/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1539864082/twitter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nathan_stott: Updated the #Bogart with #CouchDB blog example at http://t.co/ThnlkBRt to reflect current Bogart best practices: http://t.co/mll4X9jP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:18:25 +0000", "from_user": "creationix", "from_user_id": 70596949, "from_user_id_str": "70596949", "from_user_name": "Tim Caswell", "geo": null, "id": 147712191506812930, "id_str": "147712191506812929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/774817444/c953ddd239707998340e1a6fbb3eeb46_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/774817444/c953ddd239707998340e1a6fbb3eeb46_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nathan_stott: Updated the #Bogart with #CouchDB blog example at http://t.co/ThnlkBRt to reflect current Bogart best practices: http://t.co/mll4X9jP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:17:07 +0000", "from_user": "nathan_stott", "from_user_id": 22832730, "from_user_id_str": "22832730", "from_user_name": "Nathan Stott", "geo": null, "id": 147711863965237250, "id_str": "147711863965237248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/209226491/sunglasses_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/209226491/sunglasses_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Updated the #Bogart with #CouchDB blog example at http://t.co/ThnlkBRt to reflect current Bogart best practices: http://t.co/mll4X9jP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:16:55 +0000", "from_user": "iljawascoding", "from_user_id": 88638932, "from_user_id_str": "88638932", "from_user_name": "Ilja A. Iwas", "geo": null, "id": 147711813289648130, "id_str": "147711813289648128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1377847685/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1377847685/Untitled_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@christian_beer For some scenarios, a pretty good alternative to CouchDB. (You might want to buy the book to find out.) /cc @roidrage", "to_user": "christian_beer", "to_user_id": 18058089, "to_user_id_str": "18058089", "to_user_name": "Christian Beer", "in_reply_to_status_id": 147710762721345540, "in_reply_to_status_id_str": "147710762721345537"}, +{"created_at": "Fri, 16 Dec 2011 15:32:06 +0000", "from_user": "SergioRomecin", "from_user_id": 285308168, "from_user_id_str": "285308168", "from_user_name": "Sergio Romecin", "geo": null, "id": 147700536727191550, "id_str": "147700536727191554", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1673736360/275717_661266199_1132701205_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673736360/275717_661266199_1132701205_n_normal.jpg", "source": "<a href="https://wiki.ubuntu.com/Gwibber" rel="nofollow">Ubuntu</a>", "text": "acutualizando @couchdb la versi\\u00F3n 1.1.1 very nice... http://t.co/kO63T1S6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:13:19 +0000", "from_user": "charlires", "from_user_id": 82778545, "from_user_id_str": "82778545", "from_user_name": "Carlos Andonaegui", "geo": null, "id": 147695808630886400, "id_str": "147695808630886400", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1549225226/196506_201559113200812_100000401753609_600597_2640068_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1549225226/196506_201559113200812_100000401753609_600597_2640068_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "La unica competencia directa con Mongodb es Couchdb de apache y no se ve mal.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:07:50 +0000", "from_user": "bluesmoon", "from_user_id": 7510552, "from_user_id_str": "7510552", "from_user_name": "Philip Tellis", "geo": null, "id": 147679328992374800, "id_str": "147679328992374784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/63378169/philipface_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/63378169/philipface_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@Jangid I use couchdb", "to_user": "Jangid", "to_user_id": 10432632, "to_user_id_str": "10432632", "to_user_name": "Pankaj Jangid", "in_reply_to_status_id": 147644000101339140, "in_reply_to_status_id_str": "147644000101339137"}, +{"created_at": "Fri, 16 Dec 2011 13:56:34 +0000", "from_user": "larrywanzer", "from_user_id": 31208028, "from_user_id_str": "31208028", "from_user_name": "Larry Wanzer", "geo": null, "id": 147676492107759600, "id_str": "147676492107759616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/186362352/pierce_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/186362352/pierce_normal.jpeg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Mock Testing CouchDB in node.js with Nock and TAP http://t.co/CRmlvxpZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:27:35 +0000", "from_user": "akeem", "from_user_id": 12597442, "from_user_id_str": "12597442", "from_user_name": "Akeem Adeniji", "geo": null, "id": 147669201300107260, "id_str": "147669201300107264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/645690442/highkey_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/645690442/highkey_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "reviewing couchdb documentation. I have been failing at twitter hard this week", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:21:22 +0000", "from_user": "tebica", "from_user_id": 45733343, "from_user_id_str": "45733343", "from_user_name": "\\uBC15\\uBBFC\\uC6B0 Minwoo Park", "geo": null, "id": 147667636359135230, "id_str": "147667636359135232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1635092935/IMG_1109_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635092935/IMG_1109_normal.JPG", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@mathieujobin Great! Seems like everyone is moving to git and (mongodb or couchdb) !", "to_user": "mathieujobin", "to_user_id": 8751792, "to_user_id_str": "8751792", "to_user_name": "Mathieu Jobin (\\u771F\\u4E3B)", "in_reply_to_status_id": 147340101855346700, "in_reply_to_status_id_str": "147340101855346688"}, +{"created_at": "Fri, 16 Dec 2011 13:13:21 +0000", "from_user": "alfamale156", "from_user_id": 61744769, "from_user_id_str": "61744769", "from_user_name": "Andrew Woodcock", "geo": null, "id": 147665618353659900, "id_str": "147665618353659904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693217959/Daddy_and_Emily_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693217959/Daddy_and_Emily_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Restoring CouchDB databases from file http://t.co/3eGtbvis via http://t.co/ZrHEwBSt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:10:33 +0000", "from_user": "mkouhei", "from_user_id": 7642012, "from_user_id_str": "7642012", "from_user_name": "Kouhei Maeda", "geo": null, "id": 147664914587197440, "id_str": "147664914587197440", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1374594278/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1374594278/profile_normal.png", "source": "<a href="http://www.tweenapp.org/" rel="nofollow">Tween</a>", "text": "RT @ixixi: Amazon\\u304B\\u3089\\u3001\\u300CAdvanced CouchDB\\u300D\\u306E\\u767A\\u58F2\\u4E88\\u5B9A\\u65E5\\u304C12/30\\u304B\\u30891/31\\u306B\\u5EF6\\u671F\\u3057\\u305F\\u3068\\u306E\\u30E1\\u30FC\\u30EB\\u304C\\u6765\\u305F\\u2026 http://t.co/PXzd32Ck", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:09:37 +0000", "from_user": "Ijokarumawak", "from_user_id": 128910202, "from_user_id_str": "128910202", "from_user_name": "Koji Kawamura", "geo": null, "id": 147664678758268930, "id_str": "147664678758268928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1200646395/Ijokarumawak_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1200646395/Ijokarumawak_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I managed to get on a bus from Kawasaki st. I had great time @ #RelaxBar I wish CouchDB community in Japan to become bigger little by little", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:00:58 +0000", "from_user": "Ijokarumawak", "from_user_id": 128910202, "from_user_id_str": "128910202", "from_user_name": "Koji Kawamura", "geo": null, "id": 147662499691495420, "id_str": "147662499691495424", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1200646395/Ijokarumawak_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1200646395/Ijokarumawak_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@hayato_kapibara @ixixi @mkouhei @jp_watanabe \\u672C\\u65E5\\u306F\\u304A\\u5FD9\\u3057\\u3044\\u4E2D\\u304A\\u96C6\\u307E\\u308A\\u3044\\u305F\\u3060\\u304D\\u3001\\u3042\\u308A\\u304C\\u3068\\u3046\\u3054\\u3056\\u3044\\u307E\\u3057\\u305F\\uFF01CouchDB\\u306B\\u9589\\u3058\\u305A\\u3001\\u8272\\u3005\\u306A\\u304A\\u8A71\\u304C\\u805E\\u3051\\u3066\\u3001\\u5927\\u5909\\u53C2\\u8003\\u306B\\u306A\\u308A\\u307E\\u3057\\u305F\\u3002\\u307E\\u305F\\u6765\\u5E74\\u3001 #CouchConf \\u3067\\u4F1A\\u3044\\u307E\\u3057\\u3087\\u3046\\uFF01", "to_user": "Hayato_Kapibara", "to_user_id": 107363660, "to_user_id_str": "107363660", "to_user_name": "\\u306F\\u3084\\u3068"}, +{"created_at": "Fri, 16 Dec 2011 12:59:48 +0000", "from_user": "cemerick", "from_user_id": 15029885, "from_user_id_str": "15029885", "from_user_name": "Chas Emerick", "geo": null, "id": 147662207017173000, "id_str": "147662207017172992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1160448840/Untitled_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1160448840/Untitled_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Working on a CouchDB type for #Clojure bit.ly/tsvuNI #clutch", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:54:13 +0000", "from_user": "michaelkoper", "from_user_id": 18513150, "from_user_id_str": "18513150", "from_user_name": "Michael Koper", "geo": null, "id": 147660802017599500, "id_str": "147660802017599488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1131138282/photo1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1131138282/photo1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Starting to like CouchDB more and more!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:05:22 +0000", "from_user": "noodeeh", "from_user_id": 139661151, "from_user_id_str": "139661151", "from_user_name": "noodeeh", "geo": null, "id": 147648510429364220, "id_str": "147648510429364225", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Building Applications and Deploying CouchDB: http://t.co/GFX7Ploo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:37:41 +0000", "from_user": "boomooper", "from_user_id": 336302107, "from_user_id_str": "336302107", "from_user_name": "boomooper", "geo": null, "id": 147641544680292350, "id_str": "147641544680292352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Building Applications and Deploying CouchDB: http://t.co/e5c8nAzY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:36:37 +0000", "from_user": "davecottlehuber", "from_user_id": 20142853, "from_user_id_str": "20142853", "from_user_name": "Dave Cottlehuber", "geo": null, "id": 147626172996517900, "id_str": "147626172996517888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1425805603/dch_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1425805603/dch_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@mschoch @couchdb @stuffbymatt awesome #countmein. I am keen to grow my coding chops too!", "to_user": "mschoch", "to_user_id": 15067540, "to_user_id_str": "15067540", "to_user_name": "mschoch", "in_reply_to_status_id": 147438069514117120, "in_reply_to_status_id_str": "147438069514117121"}, +{"created_at": "Fri, 16 Dec 2011 10:12:10 +0000", "from_user": "jorgeakanieves", "from_user_id": 15956209, "from_user_id_str": "15956209", "from_user_name": "jorgeakanieves", "geo": null, "id": 147620019944169470, "id_str": "147620019944169472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1241403473/27484_795446987_6836_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1241403473/27484_795446987_6836_q_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "another nosql solution: http://t.co/XlLZaRVq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:07:01 +0000", "from_user": "runggolfp", "from_user_id": 149853090, "from_user_id_str": "149853090", "from_user_name": "runggolfp", "geo": null, "id": 147618727779778560, "id_str": "147618727779778560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Building Applications and Deploying CouchDB: http://t.co/IdGdf1lQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:54:34 +0000", "from_user": "Ijokarumawak", "from_user_id": 128910202, "from_user_id_str": "128910202", "from_user_name": "Koji Kawamura", "geo": null, "id": 147615590587170800, "id_str": "147615590587170816", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1200646395/Ijokarumawak_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1200646395/Ijokarumawak_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Hayato_Kapibara @ixixi @mkouhei @jp_watanabe RelaxBar@CouchDB \\u306E\\u5E79\\u4E8B\\u3067\\u3059\\u3002\\u304A\\u5E97\\u306F\\u6CB3\\u6751\\u3067\\u4E88\\u7D04\\u3057\\u3066\\u3044\\u307E\\u3059\\u3001\\u4E8C\\u968E\\u3067\\u304A\\u5F85\\u3061\\u3057\\u3066\\u304A\\u308A\\u307E\\u3059\\u3002", "to_user": "Hayato_Kapibara", "to_user_id": 107363660, "to_user_id_str": "107363660", "to_user_name": "\\u306F\\u3084\\u3068"}, +{"created_at": "Fri, 16 Dec 2011 09:39:56 +0000", "from_user": "Hayato_Kapibara", "from_user_id": 107363660, "from_user_id_str": "107363660", "from_user_name": "\\u306F\\u3084\\u3068", "geo": null, "id": 147611910186074100, "id_str": "147611910186074112", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702377804/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702377804/image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RelaxBar@CouchDB : ATND http://t.co/YcQ0ILho @atnd\\u3055\\u3093\\u304B\\u3089", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:38:27 +0000", "from_user": "Hayato_Kapibara", "from_user_id": 107363660, "from_user_id_str": "107363660", "from_user_name": "\\u306F\\u3084\\u3068", "geo": null, "id": 147611538683994100, "id_str": "147611538683994112", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702377804/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702377804/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\\u4ECA\\u65E5\\u306F\\u3053\\u308C\\u304B\\u3089couchdb\\u306A\\u4EBA\\u9054\\u3068\\u98F2\\u307F\\u307E\\u3059\\u3002\\u697D\\u3057\\u307F\\u3067\\u3059\\u3002(^3^)/", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:23:57 +0000", "from_user": "LuxNoSQL", "from_user_id": 19330336, "from_user_id_str": "19330336", "from_user_name": "Nestor", "geo": null, "id": 147577688230596600, "id_str": "147577688230596608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1123187681/logo_original4_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1123187681/logo_original4_normal.PNG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Google Insights: Cassandra as the leading NoSQL solution\\n\\nhttp://t.co/Jiew4xbd\\n\\n#nosql #google #cassandra #couchdb #mongodb #redis #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 06:34:54 +0000", "from_user": "dadicool", "from_user_id": 14200949, "from_user_id_str": "14200949", "from_user_name": "Dali Kilani", "geo": null, "id": 147565345987756030, "id_str": "147565345987756032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/86577298/portrait_dali_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/86577298/portrait_dali_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "data modeling - Recommended Document Structure for CouchDB - Stack Overflow http://t.co/b2st0TOw -> Good read #couchdb #performance", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 06:17:49 +0000", "from_user": "burritojustice", "from_user_id": 16944165, "from_user_id_str": "16944165", "from_user_name": "burritojustice", "geo": null, "id": 147561047694393340, "id_str": "147561047694393344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/856593717/burrito_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/856593717/burrito_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@brian_mount so I'm thinking a map of SF neighborhood blogs could be a fun test of couchDB, no?", "to_user": "brian_mount", "to_user_id": 153347833, "to_user_id_str": "153347833", "to_user_name": "Brian Mount"}, +{"created_at": "Fri, 16 Dec 2011 04:18:36 +0000", "from_user": "jenhsun", "from_user_id": 9134942, "from_user_id_str": "9134942", "from_user_name": "jenhsun", "geo": null, "id": 147531042679570430, "id_str": "147531042679570432", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1257452304/myeh2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1257452304/myeh2_normal.png", "source": "<a href="http://startgoogleplus.com" rel="nofollow">SGPlus</a>", "text": "Cassandra vs MongoDB vs CouchDB vs Redis vs Riak vs HBase vs Membase vs Neo4j comparison http://t.co/doZObye2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 04:14:22 +0000", "from_user": "codencolors", "from_user_id": 171800472, "from_user_id_str": "171800472", "from_user_name": "CodeNColors", "geo": null, "id": 147529979780014080, "id_str": "147529979780014080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1123471430/codencolors_logo1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1123471430/codencolors_logo1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @/CarmelaXRobles3UTC4412December54132400768416th5Friday2011MAPCHAT: Opensource Map-based CouchDB #Chat For Yo... http://t.co/PhCVwYnl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 04:01:49 +0000", "from_user": "mikeal", "from_user_id": 668423, "from_user_id_str": "668423", "from_user_name": "Mikeal", "geo": null, "id": 147526818126237700, "id_str": "147526818126237697", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1554648053/avatar-bw_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554648053/avatar-bw_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@jacobian you're defining resource too rigidly. there can be a \"bulk\" resource to handle these operations. see CouchDB /db/_bulk_docs", "to_user": "jacobian", "to_user_id": 18824526, "to_user_id_str": "18824526", "to_user_name": "jacobian", "in_reply_to_status_id": 147526486524575740, "in_reply_to_status_id_str": "147526486524575744"}, +{"created_at": "Fri, 16 Dec 2011 03:54:44 +0000", "from_user": "CarmelaXRobles", "from_user_id": 417582022, "from_user_id_str": "417582022", "from_user_name": "Carmela Robles", "geo": null, "id": 147525035765149700, "id_str": "147525035765149698", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1649692089/Nerdy_School_Girl_by_j_mae_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649692089/Nerdy_School_Girl_by_j_mae_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "MAPCHAT: Opensource Map-based CouchDB #Chat For Your Site http://t.co/Hylovos3 via @blogfreakz #webdevelopment", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 03:35:28 +0000", "from_user": "msonnabaum", "from_user_id": 14256182, "from_user_id_str": "14256182", "from_user_name": "msonnabaum", "geo": null, "id": 147520190542905340, "id_str": "147520190542905344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664185181/movember_w4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664185181/movember_w4_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@rb2k Isn't couchbase still just couchdb? I didn't think membase had been merged in yet.", "to_user": "rb2k", "to_user_id": 4086651, "to_user_id_str": "4086651", "to_user_name": "Marc \\u2605\\u2605\\u2605\\u2605\\u2606 ", "in_reply_to_status_id": 147504204934692860, "in_reply_to_status_id_str": "147504204934692864"}, +{"created_at": "Fri, 16 Dec 2011 03:33:19 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 147519648785637380, "id_str": "147519648785637377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "follow (0.6.0): http://t.co/uqj8pmxS Extremely robust, fault-tolerant CouchDB changes follower", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Fri, 16 Dec 2011 03:29:51 +0000", "from_user": "sam_symons", "from_user_id": 18592658, "from_user_id_str": "18592658", "from_user_name": "Sam Symons", "geo": null, "id": 147518773585387520, "id_str": "147518773585387520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1111632399/Screen_shot_2009-11-20_at_7.52.21_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1111632399/Screen_shot_2009-11-20_at_7.52.21_PM_normal.png", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "\"Apache CouchDB has started. Time to relax. Unless you want to stop the server, in which case go fuck yourself.\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 03:05:48 +0000", "from_user": "rimenes", "from_user_id": 17683957, "from_user_id_str": "17683957", "from_user_name": "Rimenes Ribeiro", "geo": null, "id": 147512724979585020, "id_str": "147512724979585024", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1171495954/logo_mini_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1171495954/logo_mini_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "@theoziran o CouchDB demorou um pouco mais pra instalar devido as depend\\u00EAncias, mas t\\u00E1 rolando 100%", "to_user": "theoziran", "to_user_id": 17788590, "to_user_id_str": "17788590", "to_user_name": "Theoziran Lima"}, +{"created_at": "Fri, 16 Dec 2011 03:03:31 +0000", "from_user": "dadicool", "from_user_id": 14200949, "from_user_id_str": "14200949", "from_user_name": "Dali Kilani", "geo": null, "id": 147512146509574140, "id_str": "147512146509574145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/86577298/portrait_dali_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/86577298/portrait_dali_normal.jpg", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "Doing an #opengovtn project with #couchdb, what a joy! I am pretty much following a DVCS methodology thanks to the replication capability :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 02:52:04 +0000", "from_user": "rimenes", "from_user_id": 17683957, "from_user_id_str": "17683957", "from_user_name": "Rimenes Ribeiro", "geo": null, "id": 147509265614118900, "id_str": "147509265614118913", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1171495954/logo_mini_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1171495954/logo_mini_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "@theoziran instalei o erlang naquela hora, vou instalar o couchDB. O brew doctor disse o qu\\u00EA?", "to_user": "theoziran", "to_user_id": 17788590, "to_user_id_str": "17788590", "to_user_name": "Theoziran Lima", "in_reply_to_status_id": 147508953285271550, "in_reply_to_status_id_str": "147508953285271552"}, +{"created_at": "Fri, 16 Dec 2011 02:50:49 +0000", "from_user": "theoziran", "from_user_id": 17788590, "from_user_id_str": "17788590", "from_user_name": "Theoziran Lima", "geo": null, "id": 147508953285271550, "id_str": "147508953285271552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1488413462/Picture-401_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1488413462/Picture-401_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@rimenes olha o que o brew me deu quando fui no couchdb \\nError: Failed executing: make install If 'brew doctor ...", "to_user": "rimenes", "to_user_id": 17683957, "to_user_id_str": "17683957", "to_user_name": "Rimenes Ribeiro"}, +{"created_at": "Fri, 16 Dec 2011 02:50:23 +0000", "from_user": "theoziran", "from_user_id": 17788590, "from_user_id_str": "17788590", "from_user_name": "Theoziran Lima", "geo": null, "id": 147508843495170050, "id_str": "147508843495170048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1488413462/Picture-401_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1488413462/Picture-401_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@rimenes pia mermo o fake \"Apache CouchDB has started, time to relax.\" t\\u00E1 funfando n\\u00E3o :(", "to_user": "rimenes", "to_user_id": 17683957, "to_user_id_str": "17683957", "to_user_name": "Rimenes Ribeiro"}, +{"created_at": "Fri, 16 Dec 2011 02:46:39 +0000", "from_user": "theoziran", "from_user_id": 17788590, "from_user_id_str": "17788590", "from_user_name": "Theoziran Lima", "geo": null, "id": 147507905187418100, "id_str": "147507905187418113", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1488413462/Picture-401_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1488413462/Picture-401_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@rimenes na verdade o que quero instalar \\u00E9 o CouchDb que tem o Erlang como dep.", "to_user": "rimenes", "to_user_id": 17683957, "to_user_id_str": "17683957", "to_user_name": "Rimenes Ribeiro"}, +{"created_at": "Fri, 16 Dec 2011 02:07:30 +0000", "from_user": "DeivinsonTejeda", "from_user_id": 15665633, "from_user_id_str": "15665633", "from_user_name": " Deivinson Tejeda ", "geo": null, "id": 147498051370618880, "id_str": "147498051370618880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1524305936/IMG_5392_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1524305936/IMG_5392_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @EduSo: Interesting post: #Cassandra vs #MongoDB vs #CouchDB vs #Redis vs #Riak vs #HBase vs #Membase vs #Neo4j comparison http://t.co/HVAHiF88", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 02:02:33 +0000", "from_user": "EduSo", "from_user_id": 25353224, "from_user_id_str": "25353224", "from_user_name": "Eduardo Sojo", "geo": null, "id": 147496804823474180, "id_str": "147496804823474176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1616696367/twitter1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616696367/twitter1_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Interesting post: #Cassandra vs #MongoDB vs #CouchDB vs #Redis vs #Riak vs #HBase vs #Membase vs #Neo4j comparison http://t.co/HVAHiF88", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:45:10 +0000", "from_user": "lxcid", "from_user_id": 28384294, "from_user_id_str": "28384294", "from_user_name": "Stan Chang Khin Boon", "geo": +{"coordinates": [1.2771,103.837], "type": "Point"}, "id": 147492429426208770, "id_str": "147492429426208768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1345106575/Stan_Chang_Khin_Boon_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1345106575/Stan_Chang_Khin_Boon_normal.jpeg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@echoz thanks. It was using couchdb though. Was fun trying out new tech.", "to_user": "echoz", "to_user_id": 43183, "to_user_id_str": "43183", "to_user_name": "Jeremy Foo", "in_reply_to_status_id": 147492192678707200, "in_reply_to_status_id_str": "147492192678707200"}, +{"created_at": "Fri, 16 Dec 2011 01:04:07 +0000", "from_user": "ctcliff", "from_user_id": 32199255, "from_user_id_str": "32199255", "from_user_name": "Christopher Cliff", "geo": null, "id": 147482100042436600, "id_str": "147482100042436608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1385214370/227243_10100487918698897_8612280_62805184_7498658_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1385214370/227243_10100487918698897_8612280_62805184_7498658_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "New Gist: Base Classes for Binding Backbone.js to the CouchDB Documents API http://t.co/ZABFSAHv @thedeftone", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:01:42 +0000", "from_user": "Kerriecgj", "from_user_id": 431706865, "from_user_id_str": "431706865", "from_user_name": "Kerrie Strub", "geo": null, "id": 147481492459749380, "id_str": "147481492459749377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681044427/large_ARHYKZKARBDU_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681044427/large_ARHYKZKARBDU_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Beginning CouchDB: The new world of cloud computing needs data storage. CouchDB is the scalable, portable, simpl... http://t.co/OIrcbFns", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:54:08 +0000", "from_user": "hugdubois", "from_user_id": 5525282, "from_user_id_str": "5525282", "from_user_name": "Hugues Dubois", "geo": null, "id": 147479588254138370, "id_str": "147479588254138370", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/22151492/portrait_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/22151492/portrait_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @__Neha: Phonegap + CouchDB + Ektorp #Win !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:21:07 +0000", "from_user": "perezd", "from_user_id": 811649, "from_user_id_str": "811649", "from_user_name": "Derek P.", "geo": null, "id": 147471278717141000, "id_str": "147471278717140992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1577846387/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1577846387/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "node, couchdb, collectd, chef, redis, websockets, haproxy, gearman, ec2, s3.\\n\\n\\nWhat do all of these have in common?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:41:42 +0000", "from_user": "JLeeGhost", "from_user_id": 306117941, "from_user_id_str": "306117941", "from_user_name": "Johnneylee Rollins", "geo": null, "id": 147461358215110660, "id_str": "147461358215110657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1370810672/SpaceGhost_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1370810672/SpaceGhost_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@websuasion_ryan I actually handle very little mongo in production on linode. Most my deployments were postgres. Two couchdb.", "to_user": "websuasion_ryan", "to_user_id": 12664822, "to_user_id_str": "12664822", "to_user_name": "J. Ryan Williams", "in_reply_to_status_id": 147460996154400770, "in_reply_to_status_id_str": "147460996154400768"}, +{"created_at": "Thu, 15 Dec 2011 23:10:11 +0000", "from_user": "rsvalerio", "from_user_id": 138584499, "from_user_id_str": "138584499", "from_user_name": "Rodrigo Valerio", "geo": null, "id": 147453430049423360, "id_str": "147453430049423361", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1608538288/perfil2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608538288/perfil2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @__Neha: Phonegap + CouchDB + Ektorp #Win !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:06:51 +0000", "from_user": "AnaNobel", "from_user_id": 112244260, "from_user_id_str": "112244260", "from_user_name": "Ana Lopez de E", "geo": null, "id": 147452590614003700, "id_str": "147452590614003712", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695396230/nor_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695396230/nor_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Viroide: #couchDB aun no s\\u00E9 si lo amar\\u00E9 o lo odiar\\u00E9, habr\\u00E1 que hacer algunas pruebas #noSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:32:17 +0000", "from_user": "smackthud", "from_user_id": 15585758, "from_user_id_str": "15585758", "from_user_name": "Grant Wood", "geo": null, "id": 147443891233243140, "id_str": "147443891233243137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1273050886/GrantWoodHS_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273050886/GrantWoodHS_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Playing with @mongodb for fun and profit today. very different than playing with #couchdb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:17:09 +0000", "from_user": "StuffByMatt", "from_user_id": 345183768, "from_user_id_str": "345183768", "from_user_name": "Matt Adams", "geo": null, "id": 147440083069444100, "id_str": "147440083069444096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1468805911/_normal.face", "profile_image_url_https": "https://si0.twimg.com/profile_images/1468805911/_normal.face", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@mschoch @davecottlehuber Count me in! I am thrilled by the prospect of getting my head and hands into the guts of @CouchDB! Erlang FTW.", "to_user": "mschoch", "to_user_id": 15067540, "to_user_id_str": "15067540", "to_user_name": "mschoch", "in_reply_to_status_id": 147438069514117120, "in_reply_to_status_id_str": "147438069514117121"}, +{"created_at": "Thu, 15 Dec 2011 22:10:40 +0000", "from_user": "Pelshoff", "from_user_id": 347963273, "from_user_id_str": "347963273", "from_user_name": "Pim Elshoff", "geo": null, "id": 147438449773912060, "id_str": "147438449773912066", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1476217527/IMG_0853_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1476217527/IMG_0853_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Playing around with #Doctrine for #CouchDB for the first time. The current PEAR packages for ODM and Common bite eachother :@", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:09:09 +0000", "from_user": "mschoch", "from_user_id": 15067540, "from_user_id_str": "15067540", "from_user_name": "mschoch", "geo": null, "id": 147438069514117120, "id_str": "147438069514117121", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1449769534/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1449769534/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "excited to get in the @CouchDB Development course! @davecottlehuber @StuffByMatt work together on group project?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:07:41 +0000", "from_user": "SOTaggedQs", "from_user_id": 413434393, "from_user_id_str": "413434393", "from_user_name": "Mithun Patel", "geo": null, "id": 147437697525497860, "id_str": "147437697525497856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "JQuery TypeError in CouchDB OpenDoc function: Though I use CouchDB-specific JQuery verison, the problem can appe... http://t.co/ymtizN59", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:07:40 +0000", "from_user": "jQueryonSO", "from_user_id": 413032106, "from_user_id_str": "413032106", "from_user_name": "jQuery on SO", "geo": null, "id": 147437696741146620, "id_str": "147437696741146624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1640199208/jqueryso_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640199208/jqueryso_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "JQuery TypeError in CouchDB OpenDoc function: Though I use CouchDB-specific JQuery verison, the problem can appe... http://t.co/D70bKLob", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:04:17 +0000", "from_user": "rahulgchaudhary", "from_user_id": 93134027, "from_user_id_str": "93134027", "from_user_name": "Rahul Chaudhary", "geo": null, "id": 147436844177571840, "id_str": "147436844177571840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1148856768/rahulchaudhary_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1148856768/rahulchaudhary_normal.jpg", "source": "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", "text": "NoSQL Support in Lift via @nosqlweekly http://t.co/JVp84Pdi #nosql #mongodb #couchdb #lift", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 21:58:07 +0000", "from_user": "dufft", "from_user_id": 13462782, "from_user_id_str": "13462782", "from_user_name": "Martin Davtyan", "geo": null, "id": 147435292364771330, "id_str": "147435292364771328", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/49087482/dufft_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/49087482/dufft_normal.gif", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\\u0432\\u043E\\u0442 \\u0442\\u0435\\u0431\\u0435 \\u0438 \\u0441\\u0434\\u0430\\u043B \\u043A\\u0443\\u0440\\u0441\\u0430\\u0447 \\u0422_\\u0422 http://t.co/L3mfpUEU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 21:41:24 +0000", "from_user": "jchris", "from_user_id": 1623, "from_user_id_str": "1623", "from_user_name": "J Chris Anderson", "geo": null, "id": 147431086727761920, "id_str": "147431086727761921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1611440478/IMG_0049_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611440478/IMG_0049_normal.jpg", "source": "<a href="http://trillian.im/" rel="nofollow">Trillian</a>", "text": "RT @wohali: Registration for the CouchDB Development course is now closed. Received >40 requests for 20 seats in 24h. Invites on their way. THX to all!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 21:40:46 +0000", "from_user": "jchris", "from_user_id": 1623, "from_user_id_str": "1623", "from_user_name": "J Chris Anderson", "geo": null, "id": 147430926182395900, "id_str": "147430926182395904", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1611440478/IMG_0049_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611440478/IMG_0049_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @__Neha: Phonegap + CouchDB + Ektorp #Win !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 21:08:35 +0000", "from_user": "wohali", "from_user_id": 2192921, "from_user_id_str": "2192921", "from_user_name": "Joan Touzet", "geo": null, "id": 147422825920208900, "id_str": "147422825920208896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/628245169/wohali_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/628245169/wohali_normal.png", "source": "<a href="http://trillian.im/" rel="nofollow">Trillian</a>", "text": "Registration for the CouchDB Development course is now closed. Received >40 requests for 20 seats in 24h. Invites on their way. THX to all!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 20:37:18 +0000", "from_user": "mromtz", "from_user_id": 93404658, "from_user_id_str": "93404658", "from_user_name": "Mario Martinez", "geo": null, "id": 147414954469888000, "id_str": "147414954469888000", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1620642466/mromtzlogo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620642466/mromtzlogo_normal.png", "source": "<a href="http://timely.is" rel="nofollow">Timely by Demandforce</a>", "text": "RT @DBmxorg: La presentaci\\u00F3n de nuestro taller \"CouchDB muy b\\u00E1sico\" http://t.co/Ta22OphO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 20:36:12 +0000", "from_user": "theoziran", "from_user_id": 17788590, "from_user_id_str": "17788590", "from_user_name": "Theoziran Lima", "geo": null, "id": 147414678035898370, "id_str": "147414678035898368", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1488413462/Picture-401_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1488413462/Picture-401_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Que m* dando pau geral o CouchDb no Mac OS, nem na m\\u00E3o nem pelo MacPorts, d\\u00E1 service running mas nada :/", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 20:16:07 +0000", "from_user": "DBmxorg", "from_user_id": 261452842, "from_user_id_str": "261452842", "from_user_name": "DBmx.org", "geo": null, "id": 147409624025403400, "id_str": "147409624025403392", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1263199080/4395953684_419dff284f_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263199080/4395953684_419dff284f_normal.jpg", "source": "<a href="http://timely.is" rel="nofollow">Timely by Demandforce</a>", "text": "La presentaci\\u00F3n de nuestro taller \"CouchDB muy b\\u00E1sico\" http://t.co/Ta22OphO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:41:24 +0000", "from_user": "plutarcoII", "from_user_id": 267271992, "from_user_id_str": "267271992", "from_user_name": "Plutarco Gonzalez", "geo": null, "id": 147400884228341760, "id_str": "147400884228341762", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@__Neha Do you have a blog with more information about Phonegap with CouchDB & Ektorp? #GWT", "to_user": "__Neha", "to_user_id": 22790291, "to_user_id_str": "22790291", "to_user_name": "Neha "}, +{"created_at": "Thu, 15 Dec 2011 19:38:00 +0000", "from_user": "kekline", "from_user_id": 22445912, "from_user_id_str": "22445912", "from_user_name": "Kevin Kline", "geo": null, "id": 147400032507789300, "id_str": "147400032507789312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/388076294/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/388076294/twitterProfilePhoto_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @OReillyMedia: Webcast Dec 16 at 10amPT/1pmET with @snej #CouchDB 'Getting Started In Modeling With Couchbase Mobile http://t.co/0rxLKc1P", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:00:04 +0000", "from_user": "atndbot_tweet", "from_user_id": 215235153, "from_user_id_str": "215235153", "from_user_name": "atndbot", "geo": null, "id": 147390483923079170, "id_str": "147390483923079168", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1178875269/default_profile_0_bigger_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1178875269/default_profile_0_bigger_normal.png", "source": "<a href="http://atndbot.appspot.com/" rel="nofollow">atndbot</a>", "text": "[Today]: RelaxBar@CouchDB,\\u5E74\\u5FD8\\u308C\\u3001\\u591C\\u306A\\u591C\\u306ACouchDB,\\u53C2\\u52A0\\u8005 5/\\u5B9A\\u54E1 7/\\u88DC\\u6B20\\u8005 0,\\u5DDD\\u5D0E\\u5E02\\u5DDD\\u5D0E\\u533A\\u7802\\u5B502-9-1\\u53C2\\u9CE5\\u5C45\\u9928,http://t.co/wqA6Rb4p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:57:43 +0000", "from_user": "seanhess", "from_user_id": 15780886, "from_user_id_str": "15780886", "from_user_name": "seanhess", "geo": null, "id": 147374795485491200, "id_str": "147374795485491200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1202794106/family_head_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1202794106/family_head_normal.jpeg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@aaronsnoswell MongoDB is much more like a normal database than CouchDB. It's easier to develop against and is lower latency.", "to_user": "aaronsnoswell", "to_user_id": 48354997, "to_user_id_str": "48354997", "to_user_name": "Aaron Snoswell", "in_reply_to_status_id": 142080369469038600, "in_reply_to_status_id_str": "142080369469038592"}, +{"created_at": "Thu, 15 Dec 2011 17:54:45 +0000", "from_user": "Blohin", "from_user_id": 15472137, "from_user_id_str": "15472137", "from_user_name": "\\u041D\\u0438\\u043A\\u043E\\u043B\\u0430\\u0439 \\u0411\\u043B\\u043E\\u0445\\u0438\\u043D", "geo": null, "id": 147374047771115520, "id_str": "147374047771115520", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/56816962/guy_computer_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/56816962/guy_computer_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Couchdb \\u043F\\u043E \\u0441\\u0440\\u0430\\u0432\\u043D\\u0435\\u043D\\u0438\\u044E \\u0441 Mongodb \\u0441\\u0434\\u0435\\u043B\\u0430\\u043D \\u044F\\u0432\\u043D\\u043E \\u043D\\u0435 \\u0434\\u043B\\u044F \\u043B\\u044E\\u0434\\u0435\\u0439.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:00:05 +0000", "from_user": "TheFourOrders", "from_user_id": 189846960, "from_user_id_str": "189846960", "from_user_name": "Terre Britton", "geo": null, "id": 147360290550448130, "id_str": "147360290550448128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1372054456/TerreBritton_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1372054456/TerreBritton_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @oreillymedia: Webcast Dec 16 at 10amPT/1pmET with @snej #CouchDB 'Getting Started In Modeling With Couchbase Mobile http://t.co/UWnbeoUk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 16:53:12 +0000", "from_user": "fvonx", "from_user_id": 13209922, "from_user_id_str": "13209922", "from_user_name": "Matthias Stiller", "geo": null, "id": 147358557560504320, "id_str": "147358557560504320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/67878234/P1010274_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/67878234/P1010274_normal.JPG", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Integration of couchdb and elasticsearch with tire: check \\u2713.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 16:52:09 +0000", "from_user": "tackun0301", "from_user_id": 239761231, "from_user_id_str": "239761231", "from_user_name": "tackun", "geo": null, "id": 147358294049173500, "id_str": "147358294049173504", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1610758047/9Vvlp846_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610758047/9Vvlp846_normal", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "\\u3042\\u3068\\u3067CouchDB\\u8ABF\\u3079\\u308B\\u3002REST\\u3067\\u30A2\\u30AF\\u30BB\\u30B9\\u3067\\u304D\\u308BDB\\uFF1F RT @rubyalert: Standalone Attachments in CouchDB + Ruby - Stack Overflow: http://t.co/8vvf3oSR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 16:34:59 +0000", "from_user": "Diogo_Nuno", "from_user_id": 71511215, "from_user_id_str": "71511215", "from_user_name": "Diogo Nuno", "geo": null, "id": 147353973018476540, "id_str": "147353973018476544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1324109664/eu2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1324109664/eu2_normal.png", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@locks seu couchdb", "to_user": "locks", "to_user_id": 7492672, "to_user_id_str": "7492672", "to_user_name": "Ricardo Mendes", "in_reply_to_status_id": 147353656180736000, "in_reply_to_status_id_str": "147353656180736001"}, +{"created_at": "Thu, 15 Dec 2011 16:16:01 +0000", "from_user": "org_ektorp", "from_user_id": 198155695, "from_user_id_str": "198155695", "from_user_name": "Ektorp", "geo": null, "id": 147349198667399170, "id_str": "147349198667399168", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @__Neha: Phonegap + CouchDB + Ektorp #Win !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:43:13 +0000", "from_user": "jkoynok", "from_user_id": 67087130, "from_user_id_str": "67087130", "from_user_name": "Jon Koynok", "geo": null, "id": 147340946592378880, "id_str": "147340946592378880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691736792/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691736792/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Omg #couchdb so completely rocks!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:39:52 +0000", "from_user": "mathieujobin", "from_user_id": 8751792, "from_user_id_str": "8751792", "from_user_name": "Mathieu Jobin (\\u771F\\u4E3B)", "geo": null, "id": 147340101855346700, "id_str": "147340101855346688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/444255063/7934_277356390633_622940633_8988913_5702485_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/444255063/7934_277356390633_622940633_8988913_5702485_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Is in love with CouchDB. converted my old SVN to git this morning and wrote a script that converts any database to CouchDB.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:37:17 +0000", "from_user": "alfredomeneses", "from_user_id": 78475498, "from_user_id_str": "78475498", "from_user_name": "Alfredo Meneses", "geo": null, "id": 147339452602261500, "id_str": "147339452602261505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/600617048/alter_ego_20091227_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/600617048/alter_ego_20091227_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"@OReillyMedia: Webcast Dec 16 at 10amPT/1pmET with @snej #CouchDB 'Getting Started In Modeling With Couchbase Mobile http://t.co/lyvyeony\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:35:52 +0000", "from_user": "jsuchal", "from_user_id": 21485265, "from_user_id_str": "21485265", "from_user_name": "J\\u00E1n Suchal", "geo": null, "id": 147339094937174000, "id_str": "147339094937174017", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/295141929/forum_icon_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/295141929/forum_icon_1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rubyslava: Dnes v kaf\\u00E9 Nervosa o 19:00 bude op\\u00E4\\u0165 husto. 27+23maybe. Akt\\u00EDvna dokument\\u00E1cia (@iNecas), CouchDB (+Michal Bartha) http://t.co/CKi9oCaR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:20:32 +0000", "from_user": "nieuws_website", "from_user_id": 202211352, "from_user_id_str": "202211352", "from_user_name": "nieuws_website", "geo": null, "id": 147335236118790140, "id_str": "147335236118790145", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1145927756/capica-website_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1145927756/capica-website_normal.gif", "source": "<a href="http://www.capica.nl" rel="nofollow">Capica B.V.</a>", "text": "Internet begrip: CouchDB http://t.co/CFhrqEJH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:05:44 +0000", "from_user": "OReillyMedia", "from_user_id": 11069462, "from_user_id_str": "11069462", "from_user_name": "O'Reilly Media", "geo": null, "id": 147331513699143680, "id_str": "147331513699143680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/67008339/oreilly-icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/67008339/oreilly-icon_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Webcast Dec 16 at 10amPT/1pmET with @snej #CouchDB 'Getting Started In Modeling With Couchbase Mobile http://t.co/HHMf9Bgq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 14:46:09 +0000", "from_user": "__Neha", "from_user_id": 22790291, "from_user_id_str": "22790291", "from_user_name": "Neha ", "geo": null, "id": 147326582191689730, "id_str": "147326582191689728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1326007011/Neha_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1326007011/Neha_twitter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dominik Kinda funny! but absolutely makes sense given we are talking 'couchdb' ! there is an example couchapp called sofa :D", "to_user": "dominik", "to_user_id": 2623, "to_user_id_str": "2623", "to_user_name": "Dominik Schwind", "in_reply_to_status_id": 147274023406018560, "in_reply_to_status_id_str": "147274023406018560"}, +{"created_at": "Thu, 15 Dec 2011 13:03:58 +0000", "from_user": "nvenky1983", "from_user_id": 55784377, "from_user_id_str": "55784377", "from_user_name": "Venkatesh Nannan", "geo": null, "id": 147300869149429760, "id_str": "147300869149429761", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1682803285/DSC_5198_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682803285/DSC_5198_normal.jpg", "source": "<a href="http://www.shareaholic.com" rel="nofollow">shareaholic app</a>", "text": "Cassandra vs MongoDB vs CouchDB vs Redis vs Riak vs HBase comparison :: KKovacs - http://t.co/qmKPg8Cy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 11:49:22 +0000", "from_user": "rubyslava", "from_user_id": 377890072, "from_user_id_str": "377890072", "from_user_name": "rubyslava", "geo": null, "id": 147282095893528580, "id_str": "147282095893528578", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1554367896/174756_172990032745033_2933445_s_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554367896/174756_172990032745033_2933445_s_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Dnes v kaf\\u00E9 Nervosa o 19:00 bude op\\u00E4\\u0165 husto. 27+23maybe. Akt\\u00EDvna dokument\\u00E1cia (@iNecas), CouchDB (+Michal Bartha) http://t.co/CKi9oCaR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 11:29:49 +0000", "from_user": "javascriptalert", "from_user_id": 274501532, "from_user_id_str": "274501532", "from_user_name": "javascript", "geo": null, "id": 147277176834768900, "id_str": "147277176834768896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1304350707/___normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1304350707/___normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Getting started with CouchDB and NodeJS on Ubuntu 10.10 | Giant Flying Saucer: http://t.co/GCBZ7wvg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 11:17:18 +0000", "from_user": "dominik", "from_user_id": 2623, "from_user_id_str": "2623", "from_user_name": "Dominik Schwind", "geo": null, "id": 147274023406018560, "id_str": "147274023406018560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1645421197/Photo_18.11.11_13_15_36__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645421197/Photo_18.11.11_13_15_36__1__normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "@__Neha whoever named Ektorp is one silly person\\u2026 naming a CouchDB API after an IKEA couch\\u2026 hehe.", "to_user": "__Neha", "to_user_id": 22790291, "to_user_id_str": "22790291", "to_user_name": "Neha ", "in_reply_to_status_id": 147273009047146500, "in_reply_to_status_id_str": "147273009047146496"}, +{"created_at": "Thu, 15 Dec 2011 11:13:16 +0000", "from_user": "__Neha", "from_user_id": 22790291, "from_user_id_str": "22790291", "from_user_name": "Neha ", "geo": null, "id": 147273009047146500, "id_str": "147273009047146496", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1326007011/Neha_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1326007011/Neha_twitter_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Phonegap + CouchDB + Ektorp #Win !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 10:44:01 +0000", "from_user": "AndreyGavrylyuk", "from_user_id": 220984179, "from_user_id_str": "220984179", "from_user_name": "Andrey", "geo": null, "id": 147265648693743600, "id_str": "147265648693743616", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1252267286/photo_87777_1032000_slide_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1252267286/photo_87777_1032000_slide_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u041D\\u0435\\u043F\\u043B\\u043E\\u0445\\u043E\\u0439 \\u043E\\u0431\\u0437\\u043E\\u0440 No-sql \\u0431\\u0430\\u0437 \\u0434\\u0430\\u043D\\u043D\\u044B\\u0445 http://t.co/6zX8LoAN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 10:33:37 +0000", "from_user": "alfamale156", "from_user_id": 61744769, "from_user_id_str": "61744769", "from_user_name": "Andrew Woodcock", "geo": null, "id": 147263033494872060, "id_str": "147263033494872065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693217959/Daddy_and_Emily_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693217959/Daddy_and_Emily_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Curl returning \\u201CInvalid UTF-8 JSON\\u201D error from CouchDb on Windows although JSON is correct http://t.co/5XHNKbRI via http://t.co/ZrHEwBSt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 09:49:46 +0000", "from_user": "tavobarrientos", "from_user_id": 3104781, "from_user_id_str": "3104781", "from_user_name": "Gustavo Barrientos G", "geo": null, "id": 147251998071336960, "id_str": "147251998071336960", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1645762612/914b595c-18d1-45bd-96e9-d23a52af132e_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645762612/914b595c-18d1-45bd-96e9-d23a52af132e_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Interesante video para iniciarse con CouchDB: http://t.co/fCyAWA3i", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 09:45:19 +0000", "from_user": "derekgardiner", "from_user_id": 16778769, "from_user_id_str": "16778769", "from_user_name": "derekgardiner", "geo": null, "id": 147250876074049540, "id_str": "147250876074049537", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1589770988/DGtwitterLogo_v2_320_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1589770988/DGtwitterLogo_v2_320_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@GarrenSmith @wohali that's going to be a cool course! Wish I had time for dive into some couchDB as well!", "to_user": "GarrenSmith", "to_user_id": 14853561, "to_user_id_str": "14853561", "to_user_name": "GarrenSmith", "in_reply_to_status_id": 147249690461732860, "in_reply_to_status_id_str": "147249690461732864"}, +{"created_at": "Thu, 15 Dec 2011 09:44:30 +0000", "from_user": "xergio", "from_user_id": 534943, "from_user_id_str": "534943", "from_user_name": "Sergio \\u00C1lvarez", "geo": null, "id": 147250669693317120, "id_str": "147250669693317120", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/17999562/sergio_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/17999562/sergio_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@dipina echa un ojo a esto http://t.co/QscWOi3D por si quieres completar el discurso para otra vez", "to_user": "dipina", "to_user_id": 68908905, "to_user_id_str": "68908905", "to_user_name": "Diego L\\u00F3pez de Ipi\\u00F1a", "in_reply_to_status_id": 146980294182977540, "in_reply_to_status_id_str": "146980294182977537"}, +{"created_at": "Thu, 15 Dec 2011 09:40:36 +0000", "from_user": "GarrenSmith", "from_user_id": 14853561, "from_user_id_str": "14853561", "from_user_name": "GarrenSmith", "geo": null, "id": 147249690461732860, "id_str": "147249690461732864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1205684853/mugshot1-sq_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1205684853/mugshot1-sq_normal.JPG", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "hey @wohali I like to enroll for the couchdb dev course if you still have space", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 08:35:44 +0000", "from_user": "skoleniRoR", "from_user_id": 277978059, "from_user_id_str": "277978059", "from_user_name": "\\u0160kolen\\u00ED RubyOnRails", "geo": null, "id": 147233363709804540, "id_str": "147233363709804545", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1301857795/Logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1301857795/Logo_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "RT @rubyslava: \\u0160tvrtok o 19:00 v Kaf\\u00E9 Nervosa: Akt\\u00EDvna dokument\\u00E1cia (@iNecas) a CouchDB (Michal Bartha) 15.12. http://t.co/CKi9oCaR RT pls.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 08:15:14 +0000", "from_user": "fumi1", "from_user_id": 4924121, "from_user_id_str": "4924121", "from_user_name": "Fumihiro Kato", "geo": null, "id": 147228206511030270, "id_str": "147228206511030272", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/709220006/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/709220006/twitterProfilePhoto_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "\\u88CF\\u306E\\u30C7\\u30FC\\u30BF\\u69CB\\u9020\\u304CMetaweb Object Model\\u306E\\u3088\\u3046\\u306A\\u5F62\\u3067Graph\\u3067\\u66F8\\u304B\\u308C\\u3066\\u3044\\u308B\\u3089\\u3057\\u3044\\uFF0Esection\\u3068\\u304B\\u306E\\u65AD\\u7247\\u304C\\u5168\\u90E8\\u30CE\\u30FC\\u30C9\\uFF0E\\u30B7\\u30B9\\u30C6\\u30E0\\u306FNode.js+CouchDB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 08:13:26 +0000", "from_user": "aschlapsi", "from_user_id": 16939577, "from_user_id_str": "16939577", "from_user_name": "aschlapsi", "geo": null, "id": 147227755514314750, "id_str": "147227755514314752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1426664666/Profilfoto_140x185_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1426664666/Profilfoto_140x185_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "@goloroden couchdb (erlang), pandoc (haskell) or unison (ocaml) are open source projects written in functional languages.", "to_user": "goloroden", "to_user_id": 132484863, "to_user_id_str": "132484863", "to_user_name": "Golo Roden", "in_reply_to_status_id": 147220624815824900, "in_reply_to_status_id_str": "147220624815824896"}, +{"created_at": "Thu, 15 Dec 2011 07:16:44 +0000", "from_user": "blachab", "from_user_id": 199579940, "from_user_id_str": "199579940", "from_user_name": "B.Blacha", "geo": null, "id": 147213485028290560, "id_str": "147213485028290561", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1584480982/me_photo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584480982/me_photo_normal.JPG", "source": "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", "text": "RT @developerworks: Learn why #CouchDB could become the de-facto #database for #webapp > http://t.co/zWAVirfC #Javascript #webdev #webdesign #app #code", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 07:02:03 +0000", "from_user": "Grommouth", "from_user_id": 148274375, "from_user_id_str": "148274375", "from_user_name": "Jerome Martin", "geo": null, "id": 147209788340703230, "id_str": "147209788340703233", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1143655075/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1143655075/image_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @del_javascript: Apache CouchDB: The CouchDB Project http://t.co/RkxxnlcO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 06:40:25 +0000", "from_user": "prudhviy", "from_user_id": 14572742, "from_user_id_str": "14572742", "from_user_name": "Bhaskar teja Yerneni", "geo": null, "id": 147204343966343170, "id_str": "147204343966343168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675735763/IMG_20111125_224735_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675735763/IMG_20111125_224735_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@wohali im interested in couchdb development course. plz let me know how to enroll. btw i stay in india", "to_user": "wohali", "to_user_id": 2192921, "to_user_id_str": "2192921", "to_user_name": "Joan Touzet"}, +{"created_at": "Thu, 15 Dec 2011 06:23:09 +0000", "from_user": "sbose78", "from_user_id": 190726716, "from_user_id_str": "190726716", "from_user_name": "Shoubhik Bose", "geo": null, "id": 147199999044882430, "id_str": "147199999044882432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1555136629/313678_10150287343724509_710069508_7509696_1574204_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555136629/313678_10150287343724509_710069508_7509696_1574204_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@iriscouch There should've been a \"Getting Started\" article following the account creation. Its really confusing for new couchdb users.", "to_user": "iriscouch", "to_user_id": 270375368, "to_user_id_str": "270375368", "to_user_name": "Iris Couch", "in_reply_to_status_id": 147190667217600500, "in_reply_to_status_id_str": "147190667217600512"}, +{"created_at": "Thu, 15 Dec 2011 06:13:27 +0000", "from_user": "jchris", "from_user_id": 1623, "from_user_id_str": "1623", "from_user_name": "J Chris Anderson", "geo": null, "id": 147197559423774720, "id_str": "147197559423774720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1611440478/IMG_0049_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611440478/IMG_0049_normal.jpg", "source": "<a href="http://trillian.im/" rel="nofollow">Trillian</a>", "text": "RT @wohali: Enrolment for the Intro to CouchDB Development course is open! Limited to 20 seats. http://t.co/4IjJEKT0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 05:59:27 +0000", "from_user": "sbose78", "from_user_id": 190726716, "from_user_id_str": "190726716", "from_user_name": "Shoubhik Bose", "geo": null, "id": 147194035096911870, "id_str": "147194035096911872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1555136629/313678_10150287343724509_710069508_7509696_1574204_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555136629/313678_10150287343724509_710069508_7509696_1574204_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@davecottlehuber hey I'm a noob in Couchdb. Tell me something, Admin users can create a db, but others can't . Right?\\nBut my db is public?", "to_user": "davecottlehuber", "to_user_id": 20142853, "to_user_id_str": "20142853", "to_user_name": "Dave Cottlehuber", "in_reply_to_status_id": 147083479631409150, "in_reply_to_status_id_str": "147083479631409152"}, +{"created_at": "Thu, 15 Dec 2011 05:46:04 +0000", "from_user": "iriscouch", "from_user_id": 270375368, "from_user_id_str": "270375368", "from_user_name": "Iris Couch", "geo": null, "id": 147190667217600500, "id_str": "147190667217600512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1665147201/iris_couch_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665147201/iris_couch_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@sbose78 Thanks! The idea is, standard CouchDB. Whatever Apache CouchDB does, your db does. Questions at http://t.co/EYYvAqq1", "to_user": "sbose78", "to_user_id": 190726716, "to_user_id_str": "190726716", "to_user_name": "Shoubhik Bose", "in_reply_to_status_id": 147189506536247300, "in_reply_to_status_id_str": "147189506536247296"}, +{"created_at": "Thu, 15 Dec 2011 05:41:16 +0000", "from_user": "robertdfrench", "from_user_id": 40887566, "from_user_id_str": "40887566", "from_user_name": "Robert D French", "geo": null, "id": 147189460700901380, "id_str": "147189460700901376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1127117917/profile_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1127117917/profile_normal.jpeg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "@wohali ooh, I want to be in your CouchDB class! Is it going to cover the B-Tree implementation?", "to_user": "wohali", "to_user_id": 2192921, "to_user_id_str": "2192921", "to_user_name": "Joan Touzet"}, +{"created_at": "Thu, 15 Dec 2011 05:32:10 +0000", "from_user": "rctorr", "from_user_id": 37769342, "from_user_id_str": "37769342", "from_user_name": "Ricardo Torres", "geo": null, "id": 147187171282001920, "id_str": "147187171282001920", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1647593936/bcdb583c-1820-4a83-8712-024f03dbb5e7_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647593936/bcdb583c-1820-4a83-8712-024f03dbb5e7_normal.png", "source": "<a href="http://timely.is" rel="nofollow">Timely by Demandforce</a>", "text": "RT @DBmxorg: Para usar CouchDB sin instalarlo localmente, puedes crear una cuenta en Iris Couch http://t.co/W35RgSfd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 05:20:07 +0000", "from_user": "DBmxorg", "from_user_id": 261452842, "from_user_id_str": "261452842", "from_user_name": "DBmx.org", "geo": null, "id": 147184136434618370, "id_str": "147184136434618368", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1263199080/4395953684_419dff284f_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263199080/4395953684_419dff284f_normal.jpg", "source": "<a href="http://timely.is" rel="nofollow">Timely by Demandforce</a>", "text": "Para usar CouchDB sin instalarlo localmente, puedes crear una cuenta en Iris Couch http://t.co/W35RgSfd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 05:02:20 +0000", "from_user": "AndroidAtSO", "from_user_id": 396953941, "from_user_id_str": "396953941", "from_user_name": "Android At SO", "geo": null, "id": 147179663037435900, "id_str": "147179663037435904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1603792720/androidatso_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1603792720/androidatso_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Null pointer exception when trying to fetch all documents from CouchDB database using ektorp on Android: I have ... http://t.co/XFbVK9vp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 04:55:53 +0000", "from_user": "imranweb", "from_user_id": 42443969, "from_user_id_str": "42443969", "from_user_name": "Imran", "geo": null, "id": 147178039527227400, "id_str": "147178039527227392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1045380059/q1410275950_8655_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1045380059/q1410275950_8655_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Exploring CouchDB http://t.co/GxKbxpDM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 04:53:24 +0000", "from_user": "i3enhamin", "from_user_id": 18757373, "from_user_id_str": "18757373", "from_user_name": "Ben Racine", "geo": null, "id": 147177414152298500, "id_str": "147177414152298496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1285814203/76288267C_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1285814203/76288267C_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @html5libs: #JavaScript #couchdb apps http://t.co/ZDekAhin", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 04:53:00 +0000", "from_user": "html5libs", "from_user_id": 418314157, "from_user_id_str": "418314157", "from_user_name": "HTML5 Libraries", "geo": null, "id": 147177314927640580, "id_str": "147177314927640576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1651201296/HTML5_Logo_256_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651201296/HTML5_Logo_256_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "#JavaScript #couchdb apps http://t.co/ZDekAhin", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 03:56:03 +0000", "from_user": "delicerubyrails", "from_user_id": 186274683, "from_user_id_str": "186274683", "from_user_name": "Delicious Ruby Rails", "geo": null, "id": 147162982273654800, "id_str": "147162982273654784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Standalone Attachments in CouchDB + Ruby - Stack Overflow: http://t.co/jvqy5IIG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 03:53:11 +0000", "from_user": "rubyalert", "from_user_id": 279514715, "from_user_id_str": "279514715", "from_user_name": "rubyalert", "geo": null, "id": 147162259494420480, "id_str": "147162259494420480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1305480594/ruby_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1305480594/ruby_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Standalone Attachments in CouchDB + Ruby - Stack Overflow: http://t.co/8T1PfTBB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 03:50:55 +0000", "from_user": "yssk22", "from_user_id": 15690947, "from_user_id_str": "15690947", "from_user_name": "Yohei Sasaki", "geo": null, "id": 147161688699965440, "id_str": "147161688699965440", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1166169462/elly_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1166169462/elly_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "\\u306A\\u306E\\u3067\\u3001npm\\u306E\\u30EA\\u30DD\\u30B8\\u30C8\\u30EA\\u4F5C\\u308B\\u306B\\u306FCouchDB\\u304C\\u5FC5\\u8981\\u3067\\u3059\\u3002\\u307E\\u3001\\u77E5\\u3063\\u3066\\u308A\\u3083\\u3055\\u304F\\u3063\\u3068\\u884C\\u3051\\u307E\\u3059\\u304C\\u3001\\u6B63\\u76F4\\u521D\\u5FC3\\u8005\\u306B\\u306F\\u304A\\u3059\\u3059\\u3081\\u3067\\u304D\\u307E\\u305B\\u3093\\u3002\\u3002\\u3002 RT @bad_at_math: http://t.co/Izkl5cgT\\u306E\\u30D0\\u30C3\\u30AF\\u30A8\\u30F3\\u30C9\\u306B\\u306FCouchDB\\u304C\\u4F7F\\u308F\\u308C\\u3066\\u308B\\u306E\\u304B\\u30FB\\u30FB\\u30FB\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 03:48:04 +0000", "from_user": "lxcid", "from_user_id": 28384294, "from_user_id_str": "28384294", "from_user_name": "Stan Chang Khin Boon", "geo": +{"coordinates": [1.3838,103.7443], "type": "Point"}, "id": 147160971662721020, "id_str": "147160971662721024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1345106575/Stan_Chang_Khin_Boon_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1345106575/Stan_Chang_Khin_Boon_normal.jpeg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@echoz they recently just made the foot print of couchdb from 15mb to less den 4mb in mobile. Still fat but nice for small app.", "to_user": "echoz", "to_user_id": 43183, "to_user_id_str": "43183", "to_user_name": "Jeremy Foo", "in_reply_to_status_id": 147018815526547460, "in_reply_to_status_id_str": "147018815526547456"}, +{"created_at": "Thu, 15 Dec 2011 03:34:25 +0000", "from_user": "del_javascript", "from_user_id": 23282663, "from_user_id_str": "23282663", "from_user_name": "Javascript News", "geo": null, "id": 147157537614082050, "id_str": "147157537614082048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/90410047/clouds2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/90410047/clouds2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Apache CouchDB: The CouchDB Project http://t.co/RkxxnlcO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 03:14:25 +0000", "from_user": "javascriptalert", "from_user_id": 274501532, "from_user_id_str": "274501532", "from_user_name": "javascript", "geo": null, "id": 147152502847045630, "id_str": "147152502847045633", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1304350707/___normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1304350707/___normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Apache CouchDB: The CouchDB Project: http://t.co/eFbFPoL5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 02:48:54 +0000", "from_user": "bad_at_math", "from_user_id": 183217980, "from_user_id_str": "183217980", "from_user_name": "juske the badatmath", "geo": null, "id": 147146081413771260, "id_str": "147146081413771264", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1111214185/Untitled1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1111214185/Untitled1_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "npmjs.org\\u306E\\u30D0\\u30C3\\u30AF\\u30A8\\u30F3\\u30C9\\u306B\\u306FCouchDB\\u304C\\u4F7F\\u308F\\u308C\\u3066\\u308B\\u306E\\u304B\\u30FB\\u30FB\\u30FB\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 02:36:33 +0000", "from_user": "Lodoicea", "from_user_id": 6200572, "from_user_id_str": "6200572", "from_user_name": "Daniel Bryan", "geo": null, "id": 147142974814433280, "id_str": "147142974814433282", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/270352142/n536021448_2470260_4194566_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/270352142/n536021448_2470260_4194566_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@wohali is it too late for the CouchDB course?", "to_user": "wohali", "to_user_id": 2192921, "to_user_id_str": "2192921", "to_user_name": "Joan Touzet"}, +{"created_at": "Thu, 15 Dec 2011 02:21:18 +0000", "from_user": "philipdurbin", "from_user_id": 18326200, "from_user_id_str": "18326200", "from_user_name": "Philip Durbin", "geo": null, "id": 147139138112602100, "id_str": "147139138112602112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1626175903/rootin8_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626175903/rootin8_normal.png", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@someara thanks. i was there and enjoyed the talk. interesting, the upcoming switch to erlang and away from couchdb", "to_user": "someara", "to_user_id": 15077315, "to_user_id_str": "15077315", "to_user_name": "someara", "in_reply_to_status_id": 145279722618748930, "in_reply_to_status_id_str": "145279722618748929"}, +{"created_at": "Thu, 15 Dec 2011 02:15:53 +0000", "from_user": "hkos", "from_user_id": 27012673, "from_user_id_str": "27012673", "from_user_name": "Heiko S.", "geo": null, "id": 147137771637714940, "id_str": "147137771637714944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1451964551/IMG_2654___normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1451964551/IMG_2654___normal.JPG", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "well then. the sun is up, it's probably time to get this over with and move some data around in my couchdb instances.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 01:38:11 +0000", "from_user": "_jhs", "from_user_id": 16281277, "from_user_id_str": "16281277", "from_user_name": "Jason Smith", "geo": null, "id": 147128286563143680, "id_str": "147128286563143680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1600208979/jason_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600208979/jason_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@tilgovi Tellin' it like it is on the CouchDB dev list", "to_user": "tilgovi", "to_user_id": 15258949, "to_user_id_str": "15258949", "to_user_name": "Randall Leeds"}, +{"created_at": "Thu, 15 Dec 2011 00:54:06 +0000", "from_user": "keithkim", "from_user_id": 14881688, "from_user_id_str": "14881688", "from_user_name": "Keith Kim", "geo": null, "id": 147117191064584200, "id_str": "147117191064584192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1485820747/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1485820747/me_normal.jpg", "source": "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", "text": "RT @developerworks: Learn why #CouchDB could become the de-facto #database for #webapp > http://t.co/zWAVirfC #Javascript #webdev #webdesign #app #code", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 00:52:51 +0000", "from_user": "keithkim", "from_user_id": 14881688, "from_user_id_str": "14881688", "from_user_name": "Keith Kim", "geo": null, "id": 147116878081425400, "id_str": "147116878081425408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1485820747/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1485820747/me_normal.jpg", "source": "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", "text": "RT @developerworks: Building #CouchDB CouchApps - #database #webapp using #HTML #CSS & #JavaScript > http://t.co/N4MeLBWG #webdesign #webdev #HTML5 #CSS3 #app", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 00:34:57 +0000", "from_user": "tilgovi", "from_user_id": 15258949, "from_user_id_str": "15258949", "from_user_name": "Randall Leeds", "geo": null, "id": 147112373063389200, "id_str": "147112373063389185", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/70894135/n1009387_33549803_5396_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/70894135/n1009387_33549803_5396_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I think this will be great: RT @wohali: Enrollment for the Intro to CouchDB Development course is open! http://t.co/aJ8eFrwB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 00:20:58 +0000", "from_user": "coderbyheart", "from_user_id": 23059309, "from_user_id_str": "23059309", "from_user_name": "Markus Tacker", "geo": null, "id": 147108855086727170, "id_str": "147108855086727168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1020646320/cbh-twitter-logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1020646320/cbh-twitter-logo_normal.png", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@lsmith What would be the advantages of #PHPCR over e.g. a #CouchDB?", "to_user": "lsmith", "to_user_id": 22903583, "to_user_id_str": "22903583", "to_user_name": "Lukas Kahwe Smith", "in_reply_to_status_id": 146936853822570500, "in_reply_to_status_id_str": "146936853822570496"}, +{"created_at": "Thu, 15 Dec 2011 00:07:28 +0000", "from_user": "davisp", "from_user_id": 14520158, "from_user_id_str": "14520158", "from_user_name": "Paul Joseph Davis", "geo": null, "id": 147105457167806460, "id_str": "147105457167806464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/235100456/cropped_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/235100456/cropped_normal.png", "source": "<a href="http://trillian.im/" rel="nofollow">Trillian</a>", "text": "RT @wohali: Enrolment for the Intro to CouchDB Development course is open! Limited to 20 seats. http://t.co/4IjJEKT0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 23:55:55 +0000", "from_user": "s89", "from_user_id": 28697346, "from_user_id_str": "28697346", "from_user_name": "Sander D", "geo": null, "id": 147102550116675600, "id_str": "147102550116675585", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1209615683/ik_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1209615683/ik_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@wohali Will the CouchDB course material be made available to non-participants too?", "to_user": "wohali", "to_user_id": 2192921, "to_user_id_str": "2192921", "to_user_name": "Joan Touzet"}, +{"created_at": "Wed, 14 Dec 2011 23:35:50 +0000", "from_user": "foertel", "from_user_id": 64152503, "from_user_id_str": "64152503", "from_user_name": "Felix Oertel", "geo": null, "id": 147097497116999680, "id_str": "147097497116999680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1252095596/kuehlschrank_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1252095596/kuehlschrank_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@krautsock distributed couchdb with membase memcached frontend ... nothing beats that ;)", "to_user": "krautsock", "to_user_id": 43083165, "to_user_id_str": "43083165", "to_user_name": "K-Rock", "in_reply_to_status_id": 147088144964124670, "in_reply_to_status_id_str": "147088144964124672"}, +{"created_at": "Wed, 14 Dec 2011 23:19:39 +0000", "from_user": "BradleyHolt", "from_user_id": 10909812, "from_user_id_str": "10909812", "from_user_name": "Bradley Holt", "geo": null, "id": 147093422392610800, "id_str": "147093422392610816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/727991509/bradley-holt-300x300_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/727991509/bradley-holt-300x300_normal.jpg", "source": "<a href="http://trillian.im/" rel="nofollow">Trillian</a>", "text": "RT @wohali: Enrolment for the Intro to CouchDB Development course is open! Limited to 20 seats. http://t.co/4IjJEKT0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 23:16:08 +0000", "from_user": "JLeeGhost", "from_user_id": 306117941, "from_user_id_str": "306117941", "from_user_name": "Johnneylee Rollins", "geo": null, "id": 147092536341708800, "id_str": "147092536341708801", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1370810672/SpaceGhost_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1370810672/SpaceGhost_normal.jpg", "source": "<a href="http://trillian.im/" rel="nofollow">Trillian</a>", "text": "RT @wohali: Enrolment for the Intro to CouchDB Development course is open! Limited to 20 seats. http://t.co/4IjJEKT0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 23:15:45 +0000", "from_user": "maxogden", "from_user_id": 12241752, "from_user_id_str": "12241752", "from_user_name": "max ogden", "geo": null, "id": 147092442016006140, "id_str": "147092442016006144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690285875/max_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690285875/max_normal.png", "source": "<a href="http://trillian.im/" rel="nofollow">Trillian</a>", "text": "RT @wohali: Enrolment for the Intro to CouchDB Development course is open! Limited to 20 seats. http://t.co/4IjJEKT0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 23:05:09 +0000", "from_user": "wohali", "from_user_id": 2192921, "from_user_id_str": "2192921", "from_user_name": "Joan Touzet", "geo": null, "id": 147089775315267600, "id_str": "147089775315267584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/628245169/wohali_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/628245169/wohali_normal.png", "source": "<a href="http://trillian.im/" rel="nofollow">Trillian</a>", "text": "Enrolment for the Intro to CouchDB Development course is open! Limited to 20 seats. http://t.co/4IjJEKT0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 23:04:52 +0000", "from_user": "Lodoicea", "from_user_id": 6200572, "from_user_id_str": "6200572", "from_user_name": "Daniel Bryan", "geo": null, "id": 147089700522430460, "id_str": "147089700522430464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/270352142/n536021448_2470260_4194566_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/270352142/n536021448_2470260_4194566_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@wohali I'd love to participate in the CouchDB course", "to_user": "wohali", "to_user_id": 2192921, "to_user_id_str": "2192921", "to_user_name": "Joan Touzet"}, +{"created_at": "Wed, 14 Dec 2011 21:51:44 +0000", "from_user": "drewconway", "from_user_id": 18463930, "from_user_id_str": "18463930", "from_user_name": "Drew Conway", "geo": null, "id": 147071297296404480, "id_str": "147071297296404480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1467825387/laptop_sepia_2_crop_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1467825387/laptop_sepia_2_crop_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@couchdb is it really true that CDB still does not support cross platform XMLHttpRequest? http://t.co/D4UAWFdF is there an easy patch?", "to_user": "CouchDB", "to_user_id": 14181317, "to_user_id_str": "14181317", "to_user_name": "CouchDB"} +, +{"created_at": "Wed, 14 Dec 2011 21:08:10 +0000", "from_user": "_alejandromg", "from_user_id": 53717698, "from_user_id_str": "53717698", "from_user_name": "Alejandro Morales", "geo": null, "id": 147060332534308860, "id_str": "147060332534308865", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1473584095/2011-07-27-214648m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1473584095/2011-07-27-214648m_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@sbose78 @NodeJsCommunity depends on what type of db? Redis, couchdb, mongodb?", "to_user": "sbose78", "to_user_id": 190726716, "to_user_id_str": "190726716", "to_user_name": "Shoubhik Bose", "in_reply_to_status_id": 146978403772411900, "in_reply_to_status_id_str": "146978403772411904"}, +{"created_at": "Wed, 14 Dec 2011 21:06:32 +0000", "from_user": "panterch", "from_user_id": 84031797, "from_user_id_str": "84031797", "from_user_name": "Panter llc", "geo": null, "id": 147059923484803070, "id_str": "147059923484803072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/482712494/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/482712494/logo_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@gr2m from minutes.io held a great pantalk on backbone.js, couchdb, usability and marketing. thx a bunch, we enjoyed it a lot!", "to_user": "gr2m", "to_user_id": 11754732, "to_user_id_str": "11754732", "to_user_name": "Gregor"}, +{"created_at": "Wed, 14 Dec 2011 21:03:44 +0000", "from_user": "amosdesigns", "from_user_id": 36741368, "from_user_id_str": "36741368", "from_user_name": "jerome amos", "geo": null, "id": 147059218799788030, "id_str": "147059218799788032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1630998475/amosdesignlogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630998475/amosdesignlogo_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "An O'Reilly webcast: Sync & Swim With CouchDB For Mac & iOS http://t.co/vFjPFPEW via @oreillymedia", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:00:21 +0000", "from_user": "patrickDurusau", "from_user_id": 152194866, "from_user_id_str": "152194866", "from_user_name": "Patrick Durusau", "geo": null, "id": 147058366143934460, "id_str": "147058366143934464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/961579480/patrick_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/961579480/patrick_normal.jpeg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "CouchDB: JSON, HTTP & MapReduce #topicmaps #CouchDB #JSON #MapReduce - http://t.co/MUv66XSh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 20:14:38 +0000", "from_user": "dethe", "from_user_id": 15999259, "from_user_id_str": "15999259", "from_user_name": "Dethe Elza", "geo": null, "id": 147046860245319680, "id_str": "147046860245319681", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1125406751/dethe_self_portrait_med_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1125406751/dethe_self_portrait_med_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@rem Or a CouchDB like standard on top of local storage?", "to_user": "rem", "to_user_id": 648873, "to_user_id_str": "648873", "to_user_name": "Remy Sharp", "in_reply_to_status_id": 147039061771694080, "in_reply_to_status_id_str": "147039061771694080"}, +{"created_at": "Wed, 14 Dec 2011 19:47:04 +0000", "from_user": "rootsmith", "from_user_id": 19415769, "from_user_id_str": "19415769", "from_user_name": "Kevin J. Smith", "geo": null, "id": 147039922610638850, "id_str": "147039922610638849", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1577720933/kangyatzi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1577720933/kangyatzi_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Anybody know any postgreSQL (or MySQL) with some noSQL (MongoDB, couchDB) database admin/devs that are looking for work?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 19:34:39 +0000", "from_user": "TopDevTweets", "from_user_id": 194520782, "from_user_id_str": "194520782", "from_user_name": "TopDevTweets", "geo": null, "id": 147036801222184960, "id_str": "147036801222184960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "source": "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", "text": "RT @developerworks: Building #CouchDB CouchApps - #database #webapp using #HTML #CSS & #JavaScript > http://t.co/N4MeLBWG #webdesign #webdev #HTML5 #CSS3 #app", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 19:31:46 +0000", "from_user": "developerworks", "from_user_id": 16362921, "from_user_id_str": "16362921", "from_user_name": "developerworks", "geo": null, "id": 147036074168942600, "id_str": "147036074168942592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/60341510/dWbadge_v2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/60341510/dWbadge_v2_normal.jpg", "source": "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", "text": "Building #CouchDB CouchApps - #database #webapp using #HTML #CSS & #JavaScript > http://t.co/N4MeLBWG #webdesign #webdev #HTML5 #CSS3 #app", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 18:56:32 +0000", "from_user": "rlee319", "from_user_id": 53321251, "from_user_id_str": "53321251", "from_user_name": "Rachel Lee", "geo": null, "id": 147027207615811600, "id_str": "147027207615811584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1187605637/kitchen_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1187605637/kitchen_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Using GoToWebinar for the first time for the @2600hertz webinar on how we use CouchDB and BigCouch as our databases. Pretty slick interface!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 18:52:41 +0000", "from_user": "malihamariyam", "from_user_id": 55841181, "from_user_id_str": "55841181", "from_user_name": "Maliha Mariyam", "geo": null, "id": 147026238450565120, "id_str": "147026238450565121", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/557810589/profile_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/557810589/profile_pic_normal.jpg", "source": "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", "text": "RT @developerworks: Learn why #CouchDB could become the de-facto #database for #webapp > http://t.co/zWAVirfC #Javascript #webdev #webdesign #app #code", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 18:10:28 +0000", "from_user": "yacinedechmi", "from_user_id": 410679776, "from_user_id_str": "410679776", "from_user_name": "Yacine Dechmi", "geo": null, "id": 147015613339025400, "id_str": "147015613339025408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", "text": "RT @developerworks: Learn why #CouchDB could become the de-facto #database for #webapp > http://t.co/zWAVirfC #Javascript #webdev #webdesign #app #code", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 18:09:31 +0000", "from_user": "RootElection", "from_user_id": 57440969, "from_user_id_str": "57440969", "from_user_name": "Root Election", "geo": null, "id": 147015373982666750, "id_str": "147015373982666752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1424259274/eleccion_root_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1424259274/eleccion_root_normal.png", "source": "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", "text": "RT @developerworks: Learn why #CouchDB could become the de-facto #database for #webapp > http://t.co/zWAVirfC #Javascript #webdev #webdesign #app #code", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 18:09:22 +0000", "from_user": "TopDevTweets", "from_user_id": 194520782, "from_user_id_str": "194520782", "from_user_name": "TopDevTweets", "geo": null, "id": 147015338473685000, "id_str": "147015338473684992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "source": "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", "text": "RT @developerworks: Learn why #CouchDB could become the de-facto #database for #webapp > http://t.co/zWAVirfC #Javascript #webdev #webdesign #app #code", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 18:08:56 +0000", "from_user": "_hoffman", "from_user_id": 43253569, "from_user_id_str": "43253569", "from_user_name": "Alan Hoffman", "geo": null, "id": 147015226238312450, "id_str": "147015226238312448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/918455256/Alan_BW_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/918455256/Alan_BW_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @2600hertz: Don't forget to tune in at 11AM PST to hear Darren talk about how we're using #bigcouch and #couchDB as our databases http://t.co/bQuJjWnw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 18:08:02 +0000", "from_user": "taskovskig", "from_user_id": 33683378, "from_user_id_str": "33683378", "from_user_name": "Gjorgji Taskovski", "geo": null, "id": 147015000567980030, "id_str": "147015000567980032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/324658943/sfera_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/324658943/sfera_avatar_normal.png", "source": "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", "text": "RT @developerworks: Learn why #CouchDB could become the de-facto #database for #webapp > http://t.co/zWAVirfC #Javascript #webdev #webdesign #app #code", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 18:07:30 +0000", "from_user": "Reve99", "from_user_id": 43749520, "from_user_id_str": "43749520", "from_user_name": "Mohamed El-Feky", "geo": null, "id": 147014866778075140, "id_str": "147014866778075136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1669433048/DSC01290_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669433048/DSC01290_normal.JPG", "source": "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", "text": "RT @developerworks: Learn why #CouchDB could become the de-facto #database for #webapp > http://t.co/zWAVirfC #Javascript #webdev #webdesign #app #code", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 18:07:09 +0000", "from_user": "dapiam", "from_user_id": 16964932, "from_user_id_str": "16964932", "from_user_name": "daniP", "geo": null, "id": 147014780513824770, "id_str": "147014780513824768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1062467300/f831e401-d477-4e7a-8677-c7c4ebc858ef_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1062467300/f831e401-d477-4e7a-8677-c7c4ebc858ef_normal.png", "source": "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", "text": "RT @developerworks: Learn why #CouchDB could become the de-facto #database for #webapp > http://t.co/zWAVirfC #Javascript #webdev #webdesign #app #code", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 18:05:46 +0000", "from_user": "developerworks", "from_user_id": 16362921, "from_user_id_str": "16362921", "from_user_name": "developerworks", "geo": null, "id": 147014430784364540, "id_str": "147014430784364546", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/60341510/dWbadge_v2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/60341510/dWbadge_v2_normal.jpg", "source": "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", "text": "Learn why #CouchDB could become the de-facto #database for #webapp > http://t.co/zWAVirfC #Javascript #webdev #webdesign #app #code", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 18:04:50 +0000", "from_user": "2600hertz", "from_user_id": 19119996, "from_user_id_str": "19119996", "from_user_name": "2600hz", "geo": null, "id": 147014197476208640, "id_str": "147014197476208642", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1260130067/2600.COM_logo_DarkBG_175x175_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1260130067/2600.COM_logo_DarkBG_175x175_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Don't forget to tune in at 11AM PST to hear Darren talk about how we're using #bigcouch and #couchDB as our databases http://t.co/bQuJjWnw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 18:03:49 +0000", "from_user": "lxcid", "from_user_id": 28384294, "from_user_id_str": "28384294", "from_user_name": "Stan Chang Khin Boon", "geo": null, "id": 147013940176633860, "id_str": "147013940176633860", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1345106575/Stan_Chang_Khin_Boon_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1345106575/Stan_Chang_Khin_Boon_normal.jpeg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "CouchDB has its issues but after using it for a while, I find it quite positive. Duplication works like a charm.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 18:00:31 +0000", "from_user": "fvonx", "from_user_id": 13209922, "from_user_id_str": "13209922", "from_user_name": "Matthias Stiller", "geo": null, "id": 147013111285682180, "id_str": "147013111285682177", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/67878234/P1010274_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/67878234/P1010274_normal.JPG", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "If you plan to install couchdb on ubuntu follow this link: http://t.co/yTwB6AFJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 17:44:32 +0000", "from_user": "tavobarrientos", "from_user_id": 3104781, "from_user_id_str": "3104781", "from_user_name": "Gustavo Barrientos G", "geo": null, "id": 147009088532906000, "id_str": "147009088532905985", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1645762612/914b595c-18d1-45bd-96e9-d23a52af132e_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645762612/914b595c-18d1-45bd-96e9-d23a52af132e_normal.png", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "Mmmm CouchDB o MongoDB?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 17:40:45 +0000", "from_user": "PGoodies", "from_user_id": 339439593, "from_user_id_str": "339439593", "from_user_name": "Programmers Goodies", "geo": null, "id": 147008137352839170, "id_str": "147008137352839170", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Django & Couchdb: How to deploy without Apache server http://t.co/UYkwycai", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 17:17:33 +0000", "from_user": "vscarpenter", "from_user_id": 59223, "from_user_id_str": "59223", "from_user_name": "Vinny Carpenter", "geo": null, "id": 147002298437083140, "id_str": "147002298437083136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/48540942/vinny-thumbnail-rounded_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/48540942/vinny-thumbnail-rounded_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "Why I choose CouchDB over MongoDB | Chris Allnutt http://t.co/1xXlS7Et", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 16:59:03 +0000", "from_user": "Viroide", "from_user_id": 6294472, "from_user_id_str": "6294472", "from_user_name": "Jon E. Eguiluz", "geo": null, "id": 146997643699175420, "id_str": "146997643699175424", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1560688479/avatar_new_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1560688479/avatar_new_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Pregunta sin responder de #couchDB \\u00BFse guarda en el archivo jquery.couch.js el usuario y las pass en texto plano? Imagino que no, \\u00BFcomo va?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 16:33:33 +0000", "from_user": "binjip978", "from_user_id": 124973249, "from_user_id_str": "124973249", "from_user_name": "binjip", "geo": null, "id": 146991225273192450, "id_str": "146991225273192448", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1630686890/binjip_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630686890/binjip_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\\u0430 \\u043A\\u0430\\u043A \\u043E\\u043A\\u0430\\u0437\\u0430\\u043B\\u043E\\u0441\\u044C \\u043F\\u043E\\u043A\\u0440\\u043E\\u0432\\u044B \\u0441\\u043B\\u0435\\u0433\\u043A\\u0430 \\u0441\\u0440\\u044B\\u0432\\u0430\\u0435\\u0442 \\u0434\\u0430\\u043D\\u043D\\u0430\\u044F \\u043A\\u043D\\u0438\\u0436\\u0435\\u0447\\u043A\\u0430 http://t.co/I56xoiXo \\u043F\\u0440\\u0438\\u0447\\u0435\\u043C \\u0431\\u043B\\u0438\\u043D \\u0431\\u0435\\u0441\\u043F\\u043B\\u0430\\u0442\\u043D\\u043E", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 15:31:20 +0000", "from_user": "Prinzhorn", "from_user_id": 187226449, "from_user_id_str": "187226449", "from_user_name": "Alexander Prinzhorn", "geo": null, "id": 146975566388674560, "id_str": "146975566388674561", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1117872966/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1117872966/twitter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#couchdb #help. I replicate doc \"foo\" from \"a\" to \"b\". Then I delete \"foo\" from \"b\". Next replication does not replicate foo to b again.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 15:21:25 +0000", "from_user": "dreguera", "from_user_id": 58756910, "from_user_id_str": "58756910", "from_user_name": "Dani Reguera", "geo": null, "id": 146973071906058240, "id_str": "146973071906058240", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701886315/danillovic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701886315/danillovic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@jonimanolduran Si, pero ha elegido #couchDB para el curso, aunque #mongoDB tambien es buena solucion (Foursquare, bit.ly... usan mongoDB)", "to_user": "jonimanolduran", "to_user_id": 143146829, "to_user_id_str": "143146829", "to_user_name": "Jon Imanol Dur\\u00E1n", "in_reply_to_status_id": 146953720888950800, "in_reply_to_status_id_str": "146953720888950784"}, +{"created_at": "Wed, 14 Dec 2011 15:20:37 +0000", "from_user": "OReillyMedia", "from_user_id": 11069462, "from_user_id_str": "11069462", "from_user_name": "O'Reilly Media", "geo": null, "id": 146972868587163650, "id_str": "146972868587163648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/67008339/oreilly-icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/67008339/oreilly-icon_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Webcast Dec 16 at 10amPT/1pmET with @snej #CouchDB 'Getting Started In Modeling With Couchbase Mobile http://t.co/HHMf9Bgq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 14:55:19 +0000", "from_user": "PatrickHeneise", "from_user_id": 18073349, "from_user_id_str": "18073349", "from_user_name": "Patrick Heneise", "geo": null, "id": 146966504062201860, "id_str": "146966504062201857", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1462247153/CIMG2411_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1462247153/CIMG2411_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Just imported some JSON exported from SQL into CouchDB, just because it's better to read and to get an idea of the data structure. #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 14:49:07 +0000", "from_user": "DBmxorg", "from_user_id": 261452842, "from_user_id_str": "261452842", "from_user_name": "DBmx.org", "geo": null, "id": 146964941356793860, "id_str": "146964941356793856", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1263199080/4395953684_419dff284f_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263199080/4395953684_419dff284f_normal.jpg", "source": "<a href="http://timely.is" rel="nofollow">Timely by Demandforce</a>", "text": "De c\\u00F3mo alguien restaur\\u00F3 sus datos CouchDB copiando el archivo (ingl\\u00E9s) http://t.co/E1mUXWL9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 13:44:06 +0000", "from_user": "bmaeser", "from_user_id": 188948772, "from_user_id_str": "188948772", "from_user_name": "Bernhard M\\u00E4ser", "geo": null, "id": 146948582166110200, "id_str": "146948582166110208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1268014232/mangatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1268014232/mangatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ingenthr cb server will not be compatible with cdb, cb single server will be discontinued. ok, couchdb will live on as apache-project,", "to_user": "ingenthr", "to_user_id": 14696873, "to_user_id_str": "14696873", "to_user_name": "Matt Ingenthron", "in_reply_to_status_id": 146675271733485570, "in_reply_to_status_id_str": "146675271733485568"}, +{"created_at": "Wed, 14 Dec 2011 13:42:55 +0000", "from_user": "chrisallnutt", "from_user_id": 37202294, "from_user_id_str": "37202294", "from_user_name": "Chris Allnutt", "geo": null, "id": 146948283124809730, "id_str": "146948283124809729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1480259058/new_profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1480259058/new_profile_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Old article, but GREAT explanation of couchDB and relating documents: http://t.co/zTgss3TT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 12:59:16 +0000", "from_user": "dreguera", "from_user_id": 58756910, "from_user_id_str": "58756910", "from_user_name": "Dani Reguera", "geo": null, "id": 146937299899387900, "id_str": "146937299899387904", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701886315/danillovic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701886315/danillovic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#couchDB tiene muy buena pinta. A ver si sacamos tiempo para salsear mas en detalle.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 12:35:06 +0000", "from_user": "alfamale156", "from_user_id": 61744769, "from_user_id_str": "61744769", "from_user_name": "Andrew Woodcock", "geo": null, "id": 146931216988389380, "id_str": "146931216988389376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693217959/Daddy_and_Emily_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693217959/Daddy_and_Emily_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Restoring CouchDB databases from file http://t.co/3eGtbvis via http://t.co/ZrHEwBSt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 12:34:24 +0000", "from_user": "minutillo", "from_user_id": 7451972, "from_user_id_str": "7451972", "from_user_name": "minutillo", "geo": null, "id": 146931039720308740, "id_str": "146931039720308736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/285197880/Foto_296_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/285197880/Foto_296_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @adamlofts: CouchBase pulls out of CouchDB. http://t.co/5Cs80tt7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 11:55:42 +0000", "from_user": "pedrogte", "from_user_id": 16401507, "from_user_id_str": "16401507", "from_user_name": "Pedro Teixeira", "geo": null, "id": 146921302878466050, "id_str": "146921302878466048", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1591778458/DSC02359-2_copy_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591778458/DSC02359-2_copy_normal.JPG", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@mvalente couchdb: http://t.co/x93bctgT redis: http://t.co/y1lnIMgs", "to_user": "mvalente", "to_user_id": 20232460, "to_user_id_str": "20232460", "to_user_name": "Mario Valente", "in_reply_to_status_id": 146920082302451700, "in_reply_to_status_id_str": "146920082302451712"}, +{"created_at": "Wed, 14 Dec 2011 11:54:20 +0000", "from_user": "Viroide", "from_user_id": 6294472, "from_user_id_str": "6294472", "from_user_name": "Jon E. Eguiluz", "geo": null, "id": 146920955606867970, "id_str": "146920955606867968", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1560688479/avatar_new_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1560688479/avatar_new_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "#couchDB aun no s\\u00E9 si lo amar\\u00E9 o lo odiar\\u00E9, habr\\u00E1 que hacer algunas pruebas #noSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 11:53:57 +0000", "from_user": "DBmxorg", "from_user_id": 261452842, "from_user_id_str": "261452842", "from_user_name": "DBmx.org", "geo": null, "id": 146920859079155700, "id_str": "146920859079155712", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1263199080/4395953684_419dff284f_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263199080/4395953684_419dff284f_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @stefanmo: Node.js + CouchDB #nerdgasm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 11:33:38 +0000", "from_user": "agonirena", "from_user_id": 2822571, "from_user_id_str": "2822571", "from_user_name": "Ander Go\\u00F1i", "geo": null, "id": 146915746360991740, "id_str": "146915746360991744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1344969339/superkoko_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1344969339/superkoko_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#NoSQL kurtsoan, orain #CouchDB #aed", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 11:18:34 +0000", "from_user": "dreguera", "from_user_id": 58756910, "from_user_id_str": "58756910", "from_user_name": "Dani Reguera", "geo": null, "id": 146911958006890500, "id_str": "146911958006890496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701886315/danillovic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701886315/danillovic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#couchDB is the \"database of the web\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 10:33:04 +0000", "from_user": "foertel", "from_user_id": 64152503, "from_user_id_str": "64152503", "from_user_name": "Felix Oertel", "geo": null, "id": 146900506395152400, "id_str": "146900506395152385", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1252095596/kuehlschrank_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1252095596/kuehlschrank_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@krautsock wonder if #couchDB would make a good cluster-wide-shared cache /cc @typo3media", "to_user": "krautsock", "to_user_id": 43083165, "to_user_id_str": "43083165", "to_user_name": "K-Rock", "in_reply_to_status_id": 146887508012187650, "in_reply_to_status_id_str": "146887508012187648"}, +{"created_at": "Wed, 14 Dec 2011 09:08:56 +0000", "from_user": "hdeshev", "from_user_id": 911441, "from_user_id_str": "911441", "from_user_name": "Hristo Deshev", "geo": null, "id": 146879334550994940, "id_str": "146879334550994944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1636878139/af93f492-706b-4f54-ab44-238fb7a31b81_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1636878139/af93f492-706b-4f54-ab44-238fb7a31b81_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@rnewson Yeah, I just didn't know about it. I stumbled upon the feature while reading the couchdb-lucene source code. :D", "to_user": "rnewson", "to_user_id": 66516844, "to_user_id_str": "66516844", "to_user_name": "Robert Newson", "in_reply_to_status_id": 146769066290458620, "in_reply_to_status_id_str": "146769066290458624"}, +{"created_at": "Wed, 14 Dec 2011 08:54:28 +0000", "from_user": "bell4all", "from_user_id": 97405511, "from_user_id_str": "97405511", "from_user_name": "DongGyun Ko", "geo": null, "id": 146875694192926720, "id_str": "146875694192926720", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1108959009/Moms_61th_043-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1108959009/Moms_61th_043-1_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "@xguru node\\uC640couch db\\uB85C \\uBE14\\uB85C\\uADF8\\uAD6C\\uC131 http://t.co/H6mitSA0 \\uB610 mongo db\\uC640 express\\uB97C \\uC0AC\\uC6A9\\uD55C \\uBE14\\uB85C\\uADF8 \\uB9CC\\uB4E4\\uAE30 http://t.co/VBj5HRQy \\uADF8\\uB7F0\\uB370\\uC815\\uC791howtonode\\uB294 wheat\\uC73C\\uB85C \\uB9CC\\uB4E4\\uC5C8\\uB124\\uC694. \\uAC10\\uC0AC\\uD569\\uB2C8\\uB2E4!", "to_user": "xguru", "to_user_id": 19699818, "to_user_id_str": "19699818", "to_user_name": "\\uAD8C\\uC815\\uD601/\\uAD6C\\uB8E8"}, +{"created_at": "Wed, 14 Dec 2011 08:38:29 +0000", "from_user": "kr428", "from_user_id": 207401188, "from_user_id_str": "207401188", "from_user_name": "Kristian", "geo": null, "id": 146871669493989380, "id_str": "146871669493989377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1525504632/thorns_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1525504632/thorns_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Using #CouchDB with #spring RestTemplate is a rather pleasant and straightforward experience.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 08:32:17 +0000", "from_user": "KatelinEdelson", "from_user_id": 388370123, "from_user_id_str": "388370123", "from_user_name": "Katelin Edelson", "geo": null, "id": 146870110366339070, "id_str": "146870110366339072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1663798697/1142112_relaxing_girl_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663798697/1142112_relaxing_girl_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "For the record, I'm sure CouchDB is built to a high standard as well (the BBC use it, after all)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 07:58:09 +0000", "from_user": "cstrep", "from_user_id": 15102168, "from_user_id_str": "15102168", "from_user_name": "Cosimo Streppone", "geo": null, "id": 146861520100392960, "id_str": "146861520100392960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1522506843/dungeon-master-48x48_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1522506843/dungeon-master-48x48_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "<strike>couchdb</strike> dzil release. relax.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 07:21:13 +0000", "from_user": "jQueryBot", "from_user_id": 117459709, "from_user_id_str": "117459709", "from_user_name": "jquerybot", "geo": null, "id": 146852225170419700, "id_str": "146852225170419713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1363606323/JQueryBot_bigger_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1363606323/JQueryBot_bigger_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @Nodejs_bot via @RmeetsH NodeJsCommunity: published \"Mobile Architecture using #jQuery, #Nodejs (+ express) and CouchDB\" http...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 07:20:21 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 146852007905476600, "id_str": "146852007905476608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @RmeetsH NodeJsCommunity: published \"Mobile Architecture using #jQuery, #Nodejs (+ express) and CouchDB\" http://t.co/TCOIAu1u ...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 06:52:56 +0000", "from_user": "RmeetsH", "from_user_id": 59466503, "from_user_id_str": "59466503", "from_user_name": "Roberto B.", "geo": null, "id": 146845107105173500, "id_str": "146845107105173504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/335863240/n1031294848_119805_3238_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/335863240/n1031294848_119805_3238_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: published \"Mobile Architecture using #jQuery, #Nodejs (+ express) and CouchDB\" http://t.co/Rq1yyy8U http://t.co/WmLezliY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 05:43:24 +0000", "from_user": "mwessendorf", "from_user_id": 12287422, "from_user_id_str": "12287422", "from_user_name": "Matthias Wessendorf", "geo": null, "id": 146827609274200060, "id_str": "146827609274200065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1644899733/mw80s_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644899733/mw80s_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @pelegri: Git repos for Apache { CouchDB, Cordova, Oak } - all at http://t.co/7Yf2LKEL Go #Git! Go Apache! See http://t.co/2ycA3Pwh for context", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 05:35:17 +0000", "from_user": "debasishg", "from_user_id": 6562002, "from_user_id_str": "6562002", "from_user_name": "Debasish Ghosh", "geo": null, "id": 146825564248997900, "id_str": "146825564248997888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/983678766/12062010119_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/983678766/12062010119_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @cemerick: Tasty: a Clojure DSL for querying @cloudant indexes. #couchdb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 05:09:52 +0000", "from_user": "xigurat", "from_user_id": 45653559, "from_user_id_str": "45653559", "from_user_name": "Eddy E del Valle", "geo": null, "id": 146819168107376640, "id_str": "146819168107376640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1683435781/ya_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683435781/ya_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "#couchdb and #couchdbkit are really amazing!!! I wrote a program to index books and the index is stored un #couchdb and its relly fast!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 02:37:57 +0000", "from_user": "pelegri", "from_user_id": 18031910, "from_user_id_str": "18031910", "from_user_name": "pelegri", "geo": null, "id": 146780937248710660, "id_str": "146780937248710659", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/497054681/PelegriCropped_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/497054681/PelegriCropped_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Git repos for Apache { CouchDB, Cordova, Oak } - all at http://t.co/7Yf2LKEL Go #Git! Go Apache! See http://t.co/2ycA3Pwh for context", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 01:58:03 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 146770896714072060, "id_str": "146770896714072064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @n_bucciarelli: Following a NodeJS tutorial on How To Node: http://t.co/yO0nq6lU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 01:58:01 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 146770887742459900, "id_str": "146770887742459906", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Following a NodeJS tutorial on How To Node: http://t.co/wHwH60Gr http://t.co/DZNHeQwU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 01:28:57 +0000", "from_user": "n_bucciarelli", "from_user_id": 40869925, "from_user_id_str": "40869925", "from_user_name": "Nick Bucciarelli", "geo": null, "id": 146763574390439940, "id_str": "146763574390439936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/218954706/2838_525028593270_193905612_31171586_7006031_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/218954706/2838_525028593270_193905612_31171586_7006031_n_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Following a NodeJS tutorial on How To Node: http://t.co/yO0nq6lU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 01:20:06 +0000", "from_user": "daleharvey", "from_user_id": 16378342, "from_user_id_str": "16378342", "from_user_name": "Dale Harvey", "geo": null, "id": 146761348636876800, "id_str": "146761348636876800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1225104527/5353288191_7671433a7a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225104527/5353288191_7671433a7a_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@rwillmer better couchdb = couchdb, better memcached = couchbase, I will be around tomorrow, see you there", "to_user": "rwillmer", "to_user_id": 14862695, "to_user_id_str": "14862695", "to_user_name": "Rachel Willmer"}, +{"created_at": "Wed, 14 Dec 2011 00:10:44 +0000", "from_user": "MetaThis", "from_user_id": 103917660, "from_user_id_str": "103917660", "from_user_name": "David Jacobs", "geo": null, "id": 146743891809415170, "id_str": "146743891809415168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/624905068/avatar_fullsize_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/624905068/avatar_fullsize_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "Is it possible to fetch multiple standalone attachments (1 per doc) with single #CouchDB request? Don't see anything in bulk docs API.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 00:09:53 +0000", "from_user": "julian_duque", "from_user_id": 277280697, "from_user_id_str": "277280697", "from_user_name": "Juli\\u00E1n Duque", "geo": null, "id": 146743676817768450, "id_str": "146743676817768448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690228473/krampus_thumb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690228473/krampus_thumb_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @caolan: Couchbase drop CouchDB... nope, it's not April 1st http://t.co/EqDWZUxI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 23:50:06 +0000", "from_user": "rwillmer", "from_user_id": 14862695, "from_user_id_str": "14862695", "from_user_name": "Rachel Willmer", "geo": null, "id": 146738696186638340, "id_str": "146738696186638336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/198689428/rachel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/198689428/rachel_normal.jpg", "source": "<a href="http://www.nambu.com/" rel="nofollow">Nambu</a>", "text": "@daleharvey If I wanted an improved couchdb or an improved memcached, which new product do I look for?", "to_user": "daleharvey", "to_user_id": 16378342, "to_user_id_str": "16378342", "to_user_name": "Dale Harvey"}, +{"created_at": "Tue, 13 Dec 2011 23:48:38 +0000", "from_user": "rwillmer", "from_user_id": 14862695, "from_user_id_str": "14862695", "from_user_name": "Rachel Willmer", "geo": null, "id": 146738327238869000, "id_str": "146738327238868992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/198689428/rachel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/198689428/rachel_normal.jpg", "source": "<a href="http://www.nambu.com/" rel="nofollow">Nambu</a>", "text": "@daleharvey I'm still confused. I've used memcached, I've used couchdb. What are the current products? #nosql", "to_user": "daleharvey", "to_user_id": 16378342, "to_user_id_str": "16378342", "to_user_name": "Dale Harvey", "in_reply_to_status_id": 146630962489475070, "in_reply_to_status_id_str": "146630962489475072"}, +{"created_at": "Tue, 13 Dec 2011 23:44:26 +0000", "from_user": "alvinjasm", "from_user_id": 178051675, "from_user_id_str": "178051675", "from_user_name": "Alvin Lau", "geo": null, "id": 146737272023298050, "id_str": "146737272023298048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1132904375/054606146_643676146_6168350_7868142_n_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1132904375/054606146_643676146_6168350_7868142_n_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Cassandra vs MongoDB vs CouchDB vs Redis vs Riak vs HBase comparison :: KKovacs http://t.co/E3IR5Koo via @addthis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 23:41:00 +0000", "from_user": "c4milo", "from_user_id": 38187360, "from_user_id_str": "38187360", "from_user_name": "Camilo Aguilar", "geo": null, "id": 146736405698195460, "id_str": "146736405698195456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @caolan: Couchbase drop CouchDB... nope, it's not April 1st http://t.co/EqDWZUxI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 23:27:06 +0000", "from_user": "davecottlehuber", "from_user_id": 20142853, "from_user_id_str": "20142853", "from_user_name": "Dave Cottlehuber", "geo": null, "id": 146732909775167500, "id_str": "146732909775167488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1425805603/dch_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1425805603/dch_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@GitHubHelp none of my dch/couchdb/downloads are accessible - they've been up for ~ month or more. Ditto for new uploads. Any idea why?", "to_user": "GitHubHelp", "to_user_id": 200286009, "to_user_id_str": "200286009", "to_user_name": "GitHub Support"}, +{"created_at": "Tue, 13 Dec 2011 23:07:18 +0000", "from_user": "juanjeojeda", "from_user_id": 12679112, "from_user_id_str": "12679112", "from_user_name": "Juanje Ojeda \\u2713", "geo": null, "id": 146727927113990140, "id_str": "146727927113990144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/46025702/juanje_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/46025702/juanje_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Which is the best NoSQL database for X? Good comparative: http://t.co/8qilFgrF #nosql #mongodb #couchdb #cassandra #redis #hbase #membase", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 22:59:57 +0000", "from_user": "hlship", "from_user_id": 14717608, "from_user_id_str": "14717608", "from_user_name": "Howard M. Lewis Ship", "geo": null, "id": 146726076784197630, "id_str": "146726076784197632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/349034119/howard-basement-hands-folded-square_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/349034119/howard-basement-hands-folded-square_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@josetesan I'm starting to look at document db's like #mongodb and #couchdb", "to_user": "josetesan", "to_user_id": 28523513, "to_user_id_str": "28523513", "to_user_name": "josete", "in_reply_to_status_id": 146719140244238340, "in_reply_to_status_id_str": "146719140244238337"}, +{"created_at": "Tue, 13 Dec 2011 22:52:13 +0000", "from_user": "simonjjones", "from_user_id": 15126336, "from_user_id_str": "15126336", "from_user_name": "Simon Jones", "geo": null, "id": 146724132220968960, "id_str": "146724132220968962", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1604447795/ma-at-at_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1604447795/ma-at-at_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Neither @macports & @MacHomebrew could install CouchDB 1.1.1 on my MacBook; Building from source worked first time. #Fail", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 22:50:08 +0000", "from_user": "davecottlehuber", "from_user_id": 20142853, "from_user_id_str": "20142853", "from_user_name": "Dave Cottlehuber", "geo": null, "id": 146723606813085700, "id_str": "146723606813085696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1425805603/dch_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1425805603/dch_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@alfamale156 did you check out http://t.co/ArDYpvhG great to see you're using couch on windows!", "to_user": "alfamale156", "to_user_id": 61744769, "to_user_id_str": "61744769", "to_user_name": "Andrew Woodcock", "in_reply_to_status_id": 146534128769171460, "in_reply_to_status_id_str": "146534128769171456"}, +{"created_at": "Tue, 13 Dec 2011 22:38:16 +0000", "from_user": "vRobM", "from_user_id": 38737968, "from_user_id_str": "38737968", "from_user_name": "Rob Markovi\\u0107 (Robi)", "geo": null, "id": 146720622125391870, "id_str": "146720622125391872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/350626160/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/350626160/twitterProfilePhoto_normal.jpg", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "@romant btw is that a couchDB avatar? ;]", "to_user": "romant", "to_user_id": 14292941, "to_user_id_str": "14292941", "to_user_name": "Roman Tarnavski", "in_reply_to_status_id": 146719881021239300, "in_reply_to_status_id_str": "146719881021239296"}, +{"created_at": "Tue, 13 Dec 2011 21:58:36 +0000", "from_user": "iNecas", "from_user_id": 14450875, "from_user_id_str": "14450875", "from_user_name": "Ivan Ne\\u010Das", "geo": null, "id": 146710636565504000, "id_str": "146710636565504000", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1538268591/profil_sq_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538268591/profil_sq_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "RT @rubyslava: \\u0160tvrtok o 19:00 v Kaf\\u00E9 Nervosa: Akt\\u00EDvna dokument\\u00E1cia (@iNecas) a CouchDB (Michal Bartha) 15.12. http://t.co/CKi9oCaR RT pls.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 21:54:46 +0000", "from_user": "francbartoli", "from_user_id": 155518143, "from_user_id_str": "155518143", "from_user_name": "Francesco Bartoli", "geo": null, "id": 146709674761269250, "id_str": "146709674761269248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/993417644/CIMG0127_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/993417644/CIMG0127_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: published \"Mobile Architecture using #jQuery, #Nodejs (+ express) and CouchDB\" http://t.co/Rq1yyy8U http://t.co/WmLezliY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 21:46:12 +0000", "from_user": "GaruHenr", "from_user_id": 112743376, "from_user_id_str": "112743376", "from_user_name": "Bruno Henrique(Garu)", "geo": null, "id": 146707516070440960, "id_str": "146707516070440960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1551147469/225472_1760698895957_1193588234_31583357_7276793_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1551147469/225472_1760698895957_1193588234_31583357_7276793_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Mobile Architecture using jQuery, Node.js (+ express) and CouchDB http://t.co/IZsE3vUG #mobile #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 21:19:39 +0000", "from_user": "nieuws_website", "from_user_id": 202211352, "from_user_id_str": "202211352", "from_user_name": "nieuws_website", "geo": null, "id": 146700835848589300, "id_str": "146700835848589312", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1145927756/capica-website_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1145927756/capica-website_normal.gif", "source": "<a href="http://www.capica.nl" rel="nofollow">Capica B.V.</a>", "text": "Internet begrip: CouchDB http://t.co/CFhrqEJH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 21:07:17 +0000", "from_user": "stoolrossa", "from_user_id": 223451753, "from_user_id_str": "223451753", "from_user_name": "Todd Jackson", "geo": null, "id": 146697723704393730, "id_str": "146697723704393729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1183925786/IMG_0572_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1183925786/IMG_0572_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: published \"Mobile Architecture using #jQuery, #Nodejs (+ express) and CouchDB\" http://t.co/Rq1yyy8U http://t.co/WmLezliY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 21:00:50 +0000", "from_user": "dnzHTML5", "from_user_id": 172336158, "from_user_id_str": "172336158", "from_user_name": "dnz HTML5", "geo": null, "id": 146696099967668220, "id_str": "146696099967668224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1276625057/thumbnail40_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1276625057/thumbnail40_normal.jpg", "source": "<a href="http://www.donanza.com" rel="nofollow">DoNanza-Feeder</a>", "text": "#HTML5 #job - Web based GIS using Leaflet javascript library, couchdb, html5, cs... ($1,000) - http://t.co/Eu6A4jc2 #jobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 20:06:25 +0000", "from_user": "YannCluchey", "from_user_id": 32330343, "from_user_id_str": "32330343", "from_user_name": "Yann Cluchey", "geo": null, "id": 146682405313445900, "id_str": "146682405313445888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1453837609/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1453837609/image_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @cloudant: Less than 24 hours until our friends at 2600hz talk #CouchDB, #BigCouch, and cloud-based telephony. Register here: http://t.co/NiZkRGCi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 20:06:23 +0000", "from_user": "ahmedyha", "from_user_id": 188139030, "from_user_id_str": "188139030", "from_user_name": "ahmed yehia", "geo": null, "id": 146682398438985730, "id_str": "146682398438985729", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Java Persistence API for CouchDB http://t.co/hwT6f91G via @ahmedyha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 19:59:47 +0000", "from_user": "dschoettle", "from_user_id": 18198220, "from_user_id_str": "18198220", "from_user_name": "dschoettle", "geo": null, "id": 146680736068550660, "id_str": "146680736068550657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1635130832/legs_feed_the_wolf_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635130832/legs_feed_the_wolf_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "@cloudant : Less than 24 hours until our friends at 2600hz talk #CouchDB , #BigCouch , and cloud-based telephony. Regis\\u2026http://t.co/Uv5m9zG2", "to_user": "cloudant", "to_user_id": 24537879, "to_user_id_str": "24537879", "to_user_name": "Cloudant"}, +{"created_at": "Tue, 13 Dec 2011 19:41:11 +0000", "from_user": "caolan", "from_user_id": 12185182, "from_user_id_str": "12185182", "from_user_name": "Caolan McMahon", "geo": null, "id": 146676055158161400, "id_str": "146676055158161408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1328677360/colourful_cropped_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1328677360/colourful_cropped_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@ingenthr @benoitc Is that an Apache CouchDB compatible HTTP API?", "to_user": "ingenthr", "to_user_id": 14696873, "to_user_id_str": "14696873", "to_user_name": "Matt Ingenthron", "in_reply_to_status_id": 146675027444637700, "in_reply_to_status_id_str": "146675027444637697"}, +{"created_at": "Tue, 13 Dec 2011 19:41:09 +0000", "from_user": "benoitc", "from_user_id": 770056, "from_user_id_str": "770056", "from_user_name": "beno\\u00EEt chesneau", "geo": null, "id": 146676046186549250, "id_str": "146676046186549248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/76299981/avatar100x100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/76299981/avatar100x100_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@ingenthr @caolan as far as I know it's different from the Apache CouchDB one. Or did it change ?", "to_user": "ingenthr", "to_user_id": 14696873, "to_user_id_str": "14696873", "to_user_name": "Matt Ingenthron", "in_reply_to_status_id": 146675027444637700, "in_reply_to_status_id_str": "146675027444637697"}, +{"created_at": "Tue, 13 Dec 2011 19:31:56 +0000", "from_user": "floatingatoll", "from_user_id": 1059931, "from_user_id_str": "1059931", "from_user_name": "Richard Soderberg", "geo": null, "id": 146673727323643900, "id_str": "146673727323643904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/27759712/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/27759712/me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @caolan: Couchbase drop CouchDB... nope, it's not April 1st http://t.co/EqDWZUxI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 19:31:11 +0000", "from_user": "stickbyatlas", "from_user_id": 14092934, "from_user_id_str": "14092934", "from_user_name": "Ari Najarian", "geo": null, "id": 146673537376198660, "id_str": "146673537376198656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/51581322/canada_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/51581322/canada_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "CouchDB updates its views incrementally. That makes me very, very happy.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 19:29:20 +0000", "from_user": "YannCluchey", "from_user_id": 32330343, "from_user_id_str": "32330343", "from_user_name": "Yann Cluchey", "geo": null, "id": 146673074417311740, "id_str": "146673074417311744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1453837609/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1453837609/image_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @mynosql_popescu: Unintentional Market Confusion... Membase, CouchDB, or Couchbase: Unintentional Market Confusion... Membase, Cou... http://t.co/zJgSiFwe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 19:17:56 +0000", "from_user": "cemerick", "from_user_id": 15029885, "from_user_id_str": "15029885", "from_user_name": "Chas Emerick", "geo": null, "id": 146670205177823230, "id_str": "146670205177823232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1160448840/Untitled_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1160448840/Untitled_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Tasty: a Clojure DSL for querying @cloudant indexes. #couchdb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 19:16:57 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 146669956233310200, "id_str": "146669956233310208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @FriendsOfNodeJS sandeepmeher: published \"Mobile Architecture using #jQuery, #Nodejs (+ express) and CouchDB\" http://t.co/TCOIAu1u", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 19:16:56 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 146669952743653380, "id_str": "146669952743653376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @sandeepmeher published \"Mobile Architecture using #jQuery, #Nodejs (+ express) and CouchDB\" http://t.co/TCOIAu1u", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 19:14:59 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 146669464308547600, "id_str": "146669464308547586", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @sandeepmeher: published \"Mobile Architecture using #jQuery, #Nodejs (+ express) and CouchDB\" http://t.co/mEddCd3N", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 19:14:58 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 146669456804950000, "id_str": "146669456804950016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "published \"Mobile Architecture using #jQuery, #Nodejs (+ express) and CouchDB\" http://t.co/Rq1yyy8U http://t.co/WmLezliY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 19:12:10 +0000", "from_user": "cloudant", "from_user_id": 24537879, "from_user_id_str": "24537879", "from_user_name": "Cloudant", "geo": null, "id": 146668753952845820, "id_str": "146668753952845824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1158249007/icon-2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1158249007/icon-2_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Less than 24 hours until our friends at 2600hz talk #CouchDB, #BigCouch, and cloud-based telephony. Register here: http://t.co/NiZkRGCi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 19:11:46 +0000", "from_user": "sandeepmeher", "from_user_id": 40974713, "from_user_id_str": "40974713", "from_user_name": "Sandeep Meher", "geo": null, "id": 146668652572315650, "id_str": "146668652572315649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/378129336/SRM2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/378129336/SRM2_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "published \"Mobile Architecture using #jQuery, #Nodejs (+ express) and CouchDB\" http://t.co/mEddCd3N", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 19:02:20 +0000", "from_user": "chrisallnutt", "from_user_id": 37202294, "from_user_id_str": "37202294", "from_user_name": "Chris Allnutt", "geo": null, "id": 146666278831140860, "id_str": "146666278831140864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1480259058/new_profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1480259058/new_profile_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Looking for good benchmarks comparing CouchDB or MongoDB to traditional RDBMS's when relationship like functionality is added with node.js", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 18:57:23 +0000", "from_user": "mromtz", "from_user_id": 93404658, "from_user_id_str": "93404658", "from_user_name": "Mario Martinez", "geo": null, "id": 146665032720203780, "id_str": "146665032720203776", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1620642466/mromtzlogo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620642466/mromtzlogo_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @DBmxorg: Couchbase Single Server es un CouchDB, a partir de Enero de 2012 se descontinua. Sigue la implementaci\\u00F3n d la Apache Software Foundation", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 18:37:39 +0000", "from_user": "DBmxorg", "from_user_id": 261452842, "from_user_id_str": "261452842", "from_user_name": "DBmx.org", "geo": null, "id": 146660068056772600, "id_str": "146660068056772608", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1263199080/4395953684_419dff284f_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263199080/4395953684_419dff284f_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Couchbase Single Server es un CouchDB, a partir de Enero de 2012 se descontinua. Sigue la implementaci\\u00F3n d la Apache Software Foundation", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 18:28:13 +0000", "from_user": "adamlofts", "from_user_id": 54258478, "from_user_id_str": "54258478", "from_user_name": "Adam Lofts", "geo": null, "id": 146657691924824060, "id_str": "146657691924824067", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "CouchBase pulls out of CouchDB. http://t.co/5Cs80tt7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 18:14:38 +0000", "from_user": "dieTF", "from_user_id": 124272016, "from_user_id_str": "124272016", "from_user_name": "Johannes J. Schmidt", "geo": null, "id": 146654274724691970, "id_str": "146654274724691968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1159096320/cartoons_120_bigger_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1159096320/cartoons_120_bigger_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @caolan: Couchbase drop CouchDB... nope, it's not April 1st http://t.co/EqDWZUxI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 18:08:11 +0000", "from_user": "mandric", "from_user_id": 3474, "from_user_id_str": "3474", "from_user_name": "Milan Andric", "geo": null, "id": 146652653047398400, "id_str": "146652653047398401", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/64558932/IMG_0038_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/64558932/IMG_0038_normal.PNG", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@couchdb @couchbase #unitedtech please tell me we will have stable #couchdb binary releases available for all the major OSs!", "to_user": "CouchDB", "to_user_id": 14181317, "to_user_id_str": "14181317", "to_user_name": "CouchDB"}, +{"created_at": "Tue, 13 Dec 2011 18:02:12 +0000", "from_user": "christoph_peter", "from_user_id": 32364910, "from_user_id_str": "32364910", "from_user_name": "christoph peter", "geo": null, "id": 146651145950076930, "id_str": "146651145950076929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1552881559/322626_137009353062477_100002602394126_201623_2091083686_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552881559/322626_137009353062477_100002602394126_201623_2091083686_o_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @bmaeser: couchbase kills couchdb. http://t.co/vXNeAhZj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:54:43 +0000", "from_user": "stickbyatlas", "from_user_id": 14092934, "from_user_id_str": "14092934", "from_user_name": "Ari Najarian", "geo": null, "id": 146649261646417920, "id_str": "146649261646417921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/51581322/canada_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/51581322/canada_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "This is the most complicated CouchDB view I've ever built. Makes me wish I harmonized data structures before writing to the DB. Dammit.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:51:34 +0000", "from_user": "ajfeed", "from_user_id": 260762269, "from_user_id_str": "260762269", "from_user_name": "Ajinkya Feed", "geo": null, "id": 146648468864249860, "id_str": "146648468864249856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "CompSci Unintentional Market Confusion... Membase, CouchDB, or Couchbase: Unintentional Market Confusion... Memb... http://t.co/a5WjKEOa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Tue, 13 Dec 2011 17:48:34 +0000", "from_user": "mynosql_popescu", "from_user_id": 197901055, "from_user_id_str": "197901055", "from_user_name": "myNoSQL", "geo": null, "id": 146647715210723330, "id_str": "146647715210723328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Unintentional Market Confusion... Membase, CouchDB, or Couchbase: Unintentional Market Confusion... Membase, Cou... http://t.co/zJgSiFwe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:42:34 +0000", "from_user": "bmaeser", "from_user_id": 188948772, "from_user_id_str": "188948772", "from_user_name": "Bernhard M\\u00E4ser", "geo": null, "id": 146646206393761800, "id_str": "146646206393761792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1268014232/mangatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1268014232/mangatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "couchbase kills couchdb. http://t.co/vXNeAhZj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:42:24 +0000", "from_user": "dieswaytoofast", "from_user_id": 312604736, "from_user_id_str": "312604736", "from_user_name": "Mahesh P-Subramanya", "geo": null, "id": 146646161883803650, "id_str": "146646161883803648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1572400317/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572400317/Untitled_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: Couchbase Unintentional Market Confusion http://t.co/q6ZNVfic #Couchbase #CouchDB #Membase", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:42:08 +0000", "from_user": "ashalynd", "from_user_id": 17307627, "from_user_id_str": "17307627", "from_user_name": "Anna Nachesa", "geo": null, "id": 146646097186656260, "id_str": "146646097186656257", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1001576760/4693401030_d0ea9408bf_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1001576760/4693401030_d0ea9408bf_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @caolan: Couchbase drop CouchDB... nope, it's not April 1st http://t.co/EqDWZUxI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:41:43 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 146645990680690700, "id_str": "146645990680690688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "Couchbase Unintentional Market Confusion http://t.co/q6ZNVfic #Couchbase #CouchDB #Membase", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:40:57 +0000", "from_user": "mike_neck", "from_user_id": 218150156, "from_user_id_str": "218150156", "from_user_name": "mike_neck", "geo": null, "id": 146645799659503600, "id_str": "146645799659503616", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1567497838/mike_icon_24843_image001_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1567497838/mike_icon_24843_image001_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "couchDB\\u306E\\u30B9\\u30B1\\u30FC\\u30E9\\u30D3\\u30EA\\u30C6\\u30A3\\u30FC\\u306E\\u554F\\u984C\\u3063\\u3066\\u89E3\\u6C7A\\u3057\\u305F\\u306E? / Check out Advanced CouchDB http://t.co/Tina8uDS @oreillymedia\\u3055\\u3093\\u304B\\u3089", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:40:11 +0000", "from_user": "mike_neck", "from_user_id": 218150156, "from_user_id_str": "218150156", "from_user_name": "mike_neck", "geo": null, "id": 146645606608281600, "id_str": "146645606608281600", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1567497838/mike_icon_24843_image001_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1567497838/mike_icon_24843_image001_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "couchDB\\u95A2\\u9023\\u3082\\u30C9\\u30AD\\u30E5\\u30E1\\u30F3\\u30C8\\u304C\\u5145\\u5B9F\\u3057\\u3066\\u304D\\u305F\\u306A / Check out Building Applications and Deploying CouchDB http://t.co/dHaRQsJ2 @oreillymedia\\u3055\\u3093\\u304B\\u3089", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:38:21 +0000", "from_user": "roidrage", "from_user_id": 14658472, "from_user_id_str": "14658472", "from_user_name": "Mathias Meyer", "geo": null, "id": 146645145884966900, "id_str": "146645145884966913", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1505416860/5653514417_94976350b9_m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505416860/5653514417_94976350b9_m_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@eee_c at least it's official that Couchbase has no interest in CouchDB, clears up some confusion ;) Shoulda just dropped \"Couch\" altogether", "to_user": "eee_c", "to_user_id": 18334333, "to_user_id_str": "18334333", "to_user_name": "Chris Strom", "in_reply_to_status_id": 146644489795153920, "in_reply_to_status_id_str": "146644489795153920"}, +{"created_at": "Tue, 13 Dec 2011 17:35:45 +0000", "from_user": "eee_c", "from_user_id": 18334333, "from_user_id_str": "18334333", "from_user_name": "Chris Strom", "geo": null, "id": 146644489795153920, "id_str": "146644489795153920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1351901330/2010-03-19-085402_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1351901330/2010-03-19-085402_normal.jpg", "source": "<a href="http://termtter.org/" rel="nofollow">Termtter</a>", "text": "Count me unclear on how Couchbase dropping CouchDB is going to clear up market confusion: http://t.co/zU1Vyso3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:35:09 +0000", "from_user": "dshaw", "from_user_id": 806757, "from_user_id_str": "806757", "from_user_name": "Daniel Shaw", "geo": null, "id": 146644338569523200, "id_str": "146644338569523200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1552591406/angry_unicorn_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552591406/angry_unicorn_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @caolan: Couchbase drop CouchDB... nope, it's not April 1st http://t.co/EqDWZUxI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:31:28 +0000", "from_user": "m_att_henderson", "from_user_id": 14058930, "from_user_id_str": "14058930", "from_user_name": "Matthew Henderson", "geo": null, "id": 146643412622381060, "id_str": "146643412622381056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1455518441/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1455518441/twitter_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "I've never really listened to Steely Dan before now, but for some reason it's become my Christmas music break for digging into #CouchDB.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:28:13 +0000", "from_user": "stefanmo", "from_user_id": 19017751, "from_user_id_str": "19017751", "from_user_name": "Stefan Mortensen", "geo": null, "id": 146642594905067520, "id_str": "146642594905067522", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1644870743/stefan1_sv_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644870743/stefan1_sv_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Node.js + CouchDB #nerdgasm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:24:59 +0000", "from_user": "wohali", "from_user_id": 2192921, "from_user_id_str": "2192921", "from_user_name": "Joan Touzet", "geo": null, "id": 146641779893092350, "id_str": "146641779893092352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/628245169/wohali_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/628245169/wohali_normal.png", "source": "<a href="http://trillian.im/" rel="nofollow">Trillian</a>", "text": "For those following, CouchBase is still building their product with CouchDB, just dropping API support. Boo.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:21:56 +0000", "from_user": "_hoffman", "from_user_id": 43253569, "from_user_id_str": "43253569", "from_user_name": "Alan Hoffman", "geo": null, "id": 146641012230598660, "id_str": "146641012230598656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/918455256/Alan_BW_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/918455256/Alan_BW_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@caolan BigCouch has no plans to deviate from the Apache CouchDB API, modulo release cycles (and playing catchup.)", "to_user": "caolan", "to_user_id": 12185182, "to_user_id_str": "12185182", "to_user_name": "Caolan McMahon", "in_reply_to_status_id": 146639107014135800, "in_reply_to_status_id_str": "146639107014135808"}, +{"created_at": "Tue, 13 Dec 2011 17:21:38 +0000", "from_user": "wohali", "from_user_id": 2192921, "from_user_id_str": "2192921", "from_user_name": "Joan Touzet", "geo": null, "id": 146640939010633730, "id_str": "146640939010633728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/628245169/wohali_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/628245169/wohali_normal.png", "source": "<a href="http://trillian.im/" rel="nofollow">Trillian</a>", "text": "Wacky. RT @caolan: Couchbase drop CouchDB... nope, it's not April 1st http://t.co/soJzQtUG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:20:57 +0000", "from_user": "SebastienHugues", "from_user_id": 20990789, "from_user_id_str": "20990789", "from_user_name": "Sebastien Hugues", "geo": null, "id": 146640765165121540, "id_str": "146640765165121536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677363132/photo_seb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677363132/photo_seb_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @caolan: Couchbase drop CouchDB... nope, it's not April 1st http://t.co/EqDWZUxI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:19:36 +0000", "from_user": "polotek", "from_user_id": 20079975, "from_user_id_str": "20079975", "from_user_name": "Marco Rogers", "geo": null, "id": 146640424029798400, "id_str": "146640424029798400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/422439290/n739064999_192287_1980_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/422439290/n739064999_192287_1980_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @caolan: Couchbase drop CouchDB... nope, it's not April 1st http://t.co/EqDWZUxI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:17:01 +0000", "from_user": "mikeurbanski", "from_user_id": 12086622, "from_user_id_str": "12086622", "from_user_name": "Mike Urbanski", "geo": null, "id": 146639776244699140, "id_str": "146639776244699136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1488737340/purple_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1488737340/purple_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Actively avoided MongoDB, but CouchDB/Redis/Cassandra aren't right. Small dataset, not updated frequently, complex queries. Why not Mongo?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:15:00 +0000", "from_user": "caolan", "from_user_id": 12185182, "from_user_id_str": "12185182", "from_user_name": "Caolan McMahon", "geo": null, "id": 146639268167684100, "id_str": "146639268167684096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1328677360/colourful_cropped_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1328677360/colourful_cropped_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@benoitc but their products will no longer be compatible with the Apache CouchDB API", "to_user": "benoitc", "to_user_id": 770056, "to_user_id_str": "770056", "to_user_name": "beno\\u00EEt chesneau", "in_reply_to_status_id": 146638864608526340, "in_reply_to_status_id_str": "146638864608526336"}, +{"created_at": "Tue, 13 Dec 2011 17:14:51 +0000", "from_user": "steely_glint", "from_user_id": 14197416, "from_user_id_str": "14197416", "from_user_name": "Tim Panton", "geo": null, "id": 146639231534641150, "id_str": "146639231534641152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/75949581/timred_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/75949581/timred_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @caolan: Couchbase drop CouchDB... nope, it's not April 1st http://t.co/EqDWZUxI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:14:22 +0000", "from_user": "caolan", "from_user_id": 12185182, "from_user_id_str": "12185182", "from_user_name": "Caolan McMahon", "geo": null, "id": 146639107014135800, "id_str": "146639107014135808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1328677360/colourful_cropped_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1328677360/colourful_cropped_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Thankfully, Cloudant's BigCouch still aims for parity and Iris Couch still provides *Apache* CouchDB hosting.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:13:24 +0000", "from_user": "benoitc", "from_user_id": 770056, "from_user_id_str": "770056", "from_user_name": "beno\\u00EEt chesneau", "geo": null, "id": 146638864608526340, "id_str": "146638864608526336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/76299981/avatar100x100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/76299981/avatar100x100_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@caolan actuallky they are stopping to release couchdb binaries, but they are still using it, reading the article ...", "to_user": "caolan", "to_user_id": 12185182, "to_user_id_str": "12185182", "to_user_name": "Caolan McMahon", "in_reply_to_status_id": 146638613239709700, "in_reply_to_status_id_str": "146638613239709696"}, +{"created_at": "Tue, 13 Dec 2011 17:12:56 +0000", "from_user": "majido", "from_user_id": 14806963, "from_user_id_str": "14806963", "from_user_name": "majido", "geo": null, "id": 146638745691623420, "id_str": "146638745691623424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/54302423/majid_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/54302423/majid_normal.JPG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I am not procrastinating, my couchDB is computing view indexes.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:12:24 +0000", "from_user": "caolan", "from_user_id": 12185182, "from_user_id_str": "12185182", "from_user_name": "Caolan McMahon", "geo": null, "id": 146638613239709700, "id_str": "146638613239709696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1328677360/colourful_cropped_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1328677360/colourful_cropped_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Couchbase drop CouchDB... nope, it's not April 1st http://t.co/EqDWZUxI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 16:58:46 +0000", "from_user": "BEARSunday", "from_user_id": 411931525, "from_user_id_str": "411931525", "from_user_name": "BEAR.Sunday", "geo": null, "id": 146635184203247600, "id_str": "146635184203247616", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1637910544/bear_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637910544/bear_normal.png", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@noopable \\u3055\\u3093\\u306ECouchDB\\u306E\\u8A18\\u4E8B\\u3092\\u8AAD\\u3093\\u3060\\u3002http://t.co/1t96cHmA \\u305D\\u3057\\u3066@IT\\u306E\\u300C\\u201C\\u52D5\\u7269\\u56F3\\u9451\\u201D\\u3067\\u77E5\\u308BCouchDB\\u306E\\u7279\\u5FB4\\u300D\\u3082\\u8AAD\\u3093\\u3060\\u3002 \\u2026. \\u3053\\u3001\\u3053\\u308C\\u306F...", "to_user": "noopable", "to_user_id": 17063130, "to_user_id_str": "17063130", "to_user_name": "noopable"}, +{"created_at": "Tue, 13 Dec 2011 16:57:59 +0000", "from_user": "jingbay", "from_user_id": 58447675, "from_user_id_str": "58447675", "from_user_name": "\\u9AD8\\u68A8\\u9663\\u5E73", "geo": null, "id": 146634984789250050, "id_str": "146634984789250049", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/322602576/JinpeiTakanashi_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/322602576/JinpeiTakanashi_normal.png", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "RT @yssk22: \\u30B5\\u30FC\\u30D3\\u30B9\\u306F\\u3068\\u3082\\u304B\\u304F\\u3068\\u3057\\u3066\\u3001\\u30C6\\u30AF\\u30CE\\u30ED\\u30B8\\u30FC\\u7684\\u306B\\u306F\\u672C\\u5F53\\u306B\\u597D\\u304D\\u306A\\u3053\\u3068\\u304C\\u3067\\u304D\\u308B\\u306E\\u3067(\\u3082\\u3061\\u308D\\u3093\\u4ECA\\u306E\\u74B0\\u5883\\u3068\\u3044\\u3046\\u5236\\u7D04\\u4E0B\\u306E\\u5143\\u3067\\u306F\\u5F79\\u306B\\u7ACB\\u305F\\u306A\\u3044\\u30C6\\u30AF\\u30CE\\u30ED\\u30B8\\u30FC\\u306F\\u597D\\u304D\\u3060\\u308D\\u3046\\u304C\\u4F55\\u3060\\u308D\\u3046\\u304C\\u5BB9\\u8D66\\u306A\\u304F\\u5207\\u308A\\u6368\\u3066\\u307E\\u3059\\u304C, CouchDB \\u3068\\u304Bw)\\u3001tech driven \\u3067\\u30D3\\u30B8\\u30CD\\u30B9\\u3092\\u8003\\u3048\\u305F\\u3044\\u4EBA\\u306F\\u662F\\u975E\\u304D\\u3066\\u307B\\u3057\\u3044\\u3002\\u3002\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 16:37:21 +0000", "from_user": "seppal123", "from_user_id": 116736210, "from_user_id_str": "116736210", "from_user_name": "Alessandro oehler", "geo": null, "id": 146629792576438270, "id_str": "146629792576438272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://startgoogleplus.com" rel="nofollow">SGPlus</a>", "text": "Nice overview and comparison of NoSQL databases. http://t.co/X7iAyRfE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 16:33:27 +0000", "from_user": "binjip978", "from_user_id": 124973249, "from_user_id_str": "124973249", "from_user_name": "binjip", "geo": null, "id": 146628810920562700, "id_str": "146628810920562691", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1630686890/binjip_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630686890/binjip_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "couchdb \\u0431\\u0435\\u0441\\u0441\\u0435\\u0440\\u0434\\u0435\\u0447\\u043D\\u0430\\u044F \\u0442\\u044B \\u0441\\u0443\\u043A\\u0430, \\u044F \\u0442\\u0435\\u0431\\u044F \\u0438 \\u0442\\u0430\\u043A \\u043B\\u044E\\u0431\\u0438\\u043B \\u0438 \\u0442\\u0430\\u043A, \\u0430 \\u0432\\u044B\\u0448\\u043B\\u043E \\u0432\\u0441\\u0435 \\u043A\\u0430\\u043A \\u043E\\u0431\\u044B\\u0447\\u043D\\u043E))", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 16:17:42 +0000", "from_user": "u1", "from_user_id": 3779321, "from_user_id_str": "3779321", "from_user_name": "u1(\\u690D\\u6751\\u512A\\u4E00)", "geo": null, "id": 146624846607032320, "id_str": "146624846607032320", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/623483628/125432_1795825550_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/623483628/125432_1795825550_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "RT @yssk22: \\u30B5\\u30FC\\u30D3\\u30B9\\u306F\\u3068\\u3082\\u304B\\u304F\\u3068\\u3057\\u3066\\u3001\\u30C6\\u30AF\\u30CE\\u30ED\\u30B8\\u30FC\\u7684\\u306B\\u306F\\u672C\\u5F53\\u306B\\u597D\\u304D\\u306A\\u3053\\u3068\\u304C\\u3067\\u304D\\u308B\\u306E\\u3067(\\u3082\\u3061\\u308D\\u3093\\u4ECA\\u306E\\u74B0\\u5883\\u3068\\u3044\\u3046\\u5236\\u7D04\\u4E0B\\u306E\\u5143\\u3067\\u306F\\u5F79\\u306B\\u7ACB\\u305F\\u306A\\u3044\\u30C6\\u30AF\\u30CE\\u30ED\\u30B8\\u30FC\\u306F\\u597D\\u304D\\u3060\\u308D\\u3046\\u304C\\u4F55\\u3060\\u308D\\u3046\\u304C\\u5BB9\\u8D66\\u306A\\u304F\\u5207\\u308A\\u6368\\u3066\\u307E\\u3059\\u304C, CouchDB \\u3068\\u304Bw)\\u3001tech driven \\u3067\\u30D3\\u30B8\\u30CD\\u30B9\\u3092\\u8003\\u3048\\u305F\\u3044\\u4EBA\\u306F\\u662F\\u975E\\u304D\\u3066\\u307B\\u3057\\u3044\\u3002\\u3002\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 16:13:15 +0000", "from_user": "yssk22", "from_user_id": 15690947, "from_user_id_str": "15690947", "from_user_name": "Yohei Sasaki", "geo": null, "id": 146623727415730180, "id_str": "146623727415730177", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1166169462/elly_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1166169462/elly_normal.png", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "\\u30B5\\u30FC\\u30D3\\u30B9\\u306F\\u3068\\u3082\\u304B\\u304F\\u3068\\u3057\\u3066\\u3001\\u30C6\\u30AF\\u30CE\\u30ED\\u30B8\\u30FC\\u7684\\u306B\\u306F\\u672C\\u5F53\\u306B\\u597D\\u304D\\u306A\\u3053\\u3068\\u304C\\u3067\\u304D\\u308B\\u306E\\u3067(\\u3082\\u3061\\u308D\\u3093\\u4ECA\\u306E\\u74B0\\u5883\\u3068\\u3044\\u3046\\u5236\\u7D04\\u4E0B\\u306E\\u5143\\u3067\\u306F\\u5F79\\u306B\\u7ACB\\u305F\\u306A\\u3044\\u30C6\\u30AF\\u30CE\\u30ED\\u30B8\\u30FC\\u306F\\u597D\\u304D\\u3060\\u308D\\u3046\\u304C\\u4F55\\u3060\\u308D\\u3046\\u304C\\u5BB9\\u8D66\\u306A\\u304F\\u5207\\u308A\\u6368\\u3066\\u307E\\u3059\\u304C, CouchDB \\u3068\\u304Bw)\\u3001tech driven \\u3067\\u30D3\\u30B8\\u30CD\\u30B9\\u3092\\u8003\\u3048\\u305F\\u3044\\u4EBA\\u306F\\u662F\\u975E\\u304D\\u3066\\u307B\\u3057\\u3044\\u3002\\u3002\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 14:24:43 +0000", "from_user": "wwday3", "from_user_id": 59976014, "from_user_id_str": "59976014", "from_user_name": "Walt", "geo": null, "id": 146596413910954000, "id_str": "146596413910953985", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/351667124/44_outgoing_blond_man_smiling_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/351667124/44_outgoing_blond_man_smiling_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Couchdb Pannier http://t.co/bUdVg75M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 14:16:49 +0000", "from_user": "Savvy_Talent", "from_user_id": 61901428, "from_user_id_str": "61901428", "from_user_name": "Savvy Talent", "geo": null, "id": 146594424464474100, "id_str": "146594424464474112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/397285034/savvypage_r1_c3_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/397285034/savvypage_r1_c3_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "* CouchDB/Python Software Engineer - Telecommute - Cupertino, CA: We are seeking a mid-level CouchDB/Python s... http://t.co/eDWT98bF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 13:44:03 +0000", "from_user": "sunsuk7tp", "from_user_id": 14712537, "from_user_id_str": "14712537", "from_user_name": "Shunsuke Nakamura", "geo": null, "id": 146586181767933950, "id_str": "146586181767933953", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1486485677/middle-profile-image_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1486485677/middle-profile-image_normal.png", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "USA\\u3068\\u305D\\u308C\\u4EE5\\u5916\\u306E\\u56FD\\u306E\\u6BD4\\u7387\\u3092\\u898B\\u308B\\u3068\\u3001HBase, Cassandra\\u3068MongoDB, Redis, CouchDB\\u306E\\u4E8C\\u5206\\u5316\\u3067\\u304D\\u3066\\u3001\\u305D\\u306E\\u7406\\u7531\\u3092\\u8003\\u5BDF\\u3059\\u308B\\u3068\\u9762\\u767D\\u305D\\u3046\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 13:08:16 +0000", "from_user": "thinkjson", "from_user_id": 24170535, "from_user_id_str": "24170535", "from_user_name": "Mark Cahill", "geo": null, "id": 146577174709796860, "id_str": "146577174709796864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1526946440/16766_100877089938022_100000471935187_20645_5642428_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1526946440/16766_100877089938022_100000471935187_20645_5642428_n_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@josvandongen Holds true for us. While we're doing CouchDB+LucidDB, the end game is analysis in Saiku/CDF /cc @magicaltrout", "to_user": "magicaltrout", "to_user_id": 76290832, "to_user_id_str": "76290832", "to_user_name": "Tom Barber", "in_reply_to_status_id": 146537658267602940, "in_reply_to_status_id_str": "146537658267602944"}, +{"created_at": "Tue, 13 Dec 2011 11:43:31 +0000", "from_user": "dw3w4at", "from_user_id": 140745117, "from_user_id_str": "140745117", "from_user_name": "Youhei Kondou", "geo": null, "id": 146555846841729020, "id_str": "146555846841729024", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1342571663/second_icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1342571663/second_icon_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\\u3042\\u308B\\u3044\\u306F CouchDB \\u3068 Apache\\u8CA1\\u56E3\\u3068\\u306E\\u3072\\u3068\\u60B6\\u7740\\u306B\\u3064\\u3044\\u3066 / InfoQ: Git\\u3001http://t.co/k3SSvd7b\\u3067CVS\\u3001SVN\\u3092\\u8D85\\u3048\\u308B: http://t.co/wyg5KSc5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 10:17:13 +0000", "from_user": "alfamale156", "from_user_id": 61744769, "from_user_id_str": "61744769", "from_user_name": "Andrew Woodcock", "geo": null, "id": 146534128769171460, "id_str": "146534128769171456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693217959/Daddy_and_Emily_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693217959/Daddy_and_Emily_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Curl returning \\u201CInvalid UTF-8 JSON\\u201D error from CouchDb on Windows although JSON is correct http://t.co/5XHNKbRI via http://t.co/ZrHEwBSt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 09:20:49 +0000", "from_user": "download68", "from_user_id": 262435299, "from_user_id_str": "262435299", "from_user_name": "Software for OS", "geo": null, "id": 146519936800534530, "id_str": "146519936800534528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1265302044/thumbnail_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1265302044/thumbnail_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "trombi 0.9.2: trombi 0.9.2\\u00A0is considered as a flexible and helpful asynchronous CouchDB client for Tornado. tro... http://t.co/H6kqDVIk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 08:36:18 +0000", "from_user": "alfamale156", "from_user_id": 61744769, "from_user_id_str": "61744769", "from_user_name": "Andrew Woodcock", "geo": null, "id": 146508732933734400, "id_str": "146508732933734400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693217959/Daddy_and_Emily_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693217959/Daddy_and_Emily_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Restoring CouchDB databases from file http://t.co/3eGtbvis via http://t.co/ZrHEwBSt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 08:30:21 +0000", "from_user": "CloudArenaIrl", "from_user_id": 307250219, "from_user_id_str": "307250219", "from_user_name": "Cloud Arena", "geo": null, "id": 146507233222602750, "id_str": "146507233222602752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Moving from a relational to a NoSQL database - interview with James Phillips from #CouchDb - http://t.co/q62gPrv0 #nosql #sql via@infoq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 08:30:08 +0000", "from_user": "rbconsulting", "from_user_id": 35206672, "from_user_id_str": "35206672", "from_user_name": "Richie Bowden", "geo": null, "id": 146507179996872700, "id_str": "146507179996872705", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/182764454/rb-pic1_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/182764454/rb-pic1_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Moving from a relational to a NoSQL database - interview with James Phillips from #CouchDb - http://t.co/bkawNPCx #nosql #sql via@infoq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 08:08:51 +0000", "from_user": "frmdrt", "from_user_id": 183502755, "from_user_id_str": "183502755", "from_user_name": "Tara Oldfield", "geo": null, "id": 146501823044390900, "id_str": "146501823044390912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1122749005/tara-twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1122749005/tara-twitter_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @akshatj_96: Please help sorting out this bug #ubuntu #couchdb #novacut http://t.co/LjohUu90", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 07:34:04 +0000", "from_user": "BenIhle", "from_user_id": 141918104, "from_user_id_str": "141918104", "from_user_name": "Ben Ihle", "geo": null, "id": 146493072832864260, "id_str": "146493072832864257", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1499375988/linkedin_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1499375988/linkedin_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@armchair_caver it really depends on the structure of the data as to the fit, couchdb / cassandra / neo4j each work better for diff. data.", "to_user": "armchair_caver", "to_user_id": 26917360, "to_user_id_str": "26917360", "to_user_name": "Paul Rowe", "in_reply_to_status_id": 146448441919283200, "in_reply_to_status_id_str": "146448441919283200"}, +{"created_at": "Tue, 13 Dec 2011 07:14:26 +0000", "from_user": "novacut", "from_user_id": 161922996, "from_user_id_str": "161922996", "from_user_name": "Novacut", "geo": null, "id": 146488128948015100, "id_str": "146488128948015104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1353303066/novacut-solo-brandmark_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1353303066/novacut-solo-brandmark_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @akshatj_96: Please help sorting out this bug #ubuntu #couchdb #novacut http://t.co/LjohUu90", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 07:00:33 +0000", "from_user": "akshatj_96", "from_user_id": 45562597, "from_user_id_str": "45562597", "from_user_name": "Akshat Jain", "geo": null, "id": 146484634362982400, "id_str": "146484634362982400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1256538752/110129-143654_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1256538752/110129-143654_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Please help sorting out this bug #ubuntu #couchdb #novacut http://t.co/LjohUu90", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 06:58:51 +0000", "from_user": "jgderose", "from_user_id": 130418225, "from_user_id_str": "130418225", "from_user_name": "Jason Gerard DeRose", "geo": null, "id": 146484209182179330, "id_str": "146484209182179328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1131459592/avatar-twitter-73x73_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1131459592/avatar-twitter-73x73_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Whew, making more progress on getting @CouchDB 1.1.1 into #Ubuntu Precise - http://t.co/PU4Py2IO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 05:09:57 +0000", "from_user": "SergioRomecin", "from_user_id": 285308168, "from_user_id_str": "285308168", "from_user_name": "Sergio Romecin", "geo": null, "id": 146456802186379260, "id_str": "146456802186379265", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1673736360/275717_661266199_1132701205_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673736360/275717_661266199_1132701205_n_normal.jpg", "source": "<a href="https://wiki.ubuntu.com/Gwibber" rel="nofollow">Ubuntu</a>", "text": "ohh kanso Simple, distributable JavaScript apps using CouchDB, renovado a probar se dijo http://t.co/gC6E6Xft", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 04:27:41 +0000", "from_user": "apache_install", "from_user_id": 370536013, "from_user_id_str": "370536013", "from_user_name": "Joseph S McCloud", "geo": null, "id": 146446168174493700, "id_str": "146446168174493698", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1535449514/Joseph_McCloud_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1535449514/Joseph_McCloud_normal.jpg", "source": "<a href="http://ping.fm/" rel="nofollow">Ping.fm</a>", "text": "Web based GIS using Leaflet javascript library, couchdb, html5, css and jquery . - oDesk http://t.co/7yPE2QSF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 03:28:04 +0000", "from_user": "Atul_Joshi", "from_user_id": 90597582, "from_user_id_str": "90597582", "from_user_name": "Atul Joshi", "geo": null, "id": 146431164893237250, "id_str": "146431164893237249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1141281298/41655_100000056117167_2224_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1141281298/41655_100000056117167_2224_q_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Working on CouchDB with Flow3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 02:48:51 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 146421292650856450, "id_str": "146421292650856450", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "RT @rgaidot: The geographic distribution of NoSQL skills: CouchDB and Neo4j http://t.co/zwGsAZhA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 02:45:49 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 146420531703463940, "id_str": "146420531703463937", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "follow (0.5.0): http://t.co/uqj8pmxS Extremely robust, fault-tolerant CouchDB changes follower", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 02:35:56 +0000", "from_user": "shields_up", "from_user_id": 18027985, "from_user_id_str": "18027985", "from_user_name": "Jake!", "geo": null, "id": 146418043369693200, "id_str": "146418043369693184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/881969371/9917_160841637802_534237802_3547280_3416447_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/881969371/9917_160841637802_534237802_3547280_3416447_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@surlyhobbit Oh god, that's horrible! Have you looked at couchDB?", "to_user": "surlyhobbit", "to_user_id": 46850828, "to_user_id_str": "46850828", "to_user_name": "J.P. Baggins, Esq.", "in_reply_to_status_id": 146417770345660400, "in_reply_to_status_id_str": "146417770345660416"}, +{"created_at": "Tue, 13 Dec 2011 02:35:02 +0000", "from_user": "omasanori", "from_user_id": 69728095, "from_user_id_str": "69728095", "from_user_name": "OGINO Masanori", "geo": null, "id": 146417816948580350, "id_str": "146417816948580353", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1535274224/9d2fe6fdc6224d8b903622c60968de82_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1535274224/9d2fe6fdc6224d8b903622c60968de82_normal.gif", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @cemerick: Clutch now has a build/CI home @travisci! http://t.co/b8xV17WH #couchdb #clojure", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 02:27:38 +0000", "from_user": "Twit_Developer", "from_user_id": 263828512, "from_user_id_str": "263828512", "from_user_name": "Twit Developer", "geo": null, "id": 146415952903409660, "id_str": "146415952903409666", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1268147372/twitter_follow_me_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1268147372/twitter_follow_me_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Web based GIS using Leaflet javascript library, couchdb, html5, css and jquery . - oDesk http://t.co/RpYtRQST", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 02:05:13 +0000", "from_user": "ashafa", "from_user_id": 18774518, "from_user_id_str": "18774518", "from_user_name": "Tunde Ashafa", "geo": null, "id": 146410313703632900, "id_str": "146410313703632896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/954034356/me_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/954034356/me_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @cemerick: Clutch now has a build/CI home @travisci! http://t.co/b8xV17WH #couchdb #clojure", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 02:03:36 +0000", "from_user": "fivetanley", "from_user_id": 306497372, "from_user_id_str": "306497372", "from_user_name": "Stanley Stuart", "geo": null, "id": 146409904423452670, "id_str": "146409904423452672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1555634614/profilepic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555634614/profilepic_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@anastasds I'm looking into Ruby on Rails and couchDB (document database for lessons and such could be cool) and postgres for other stuff.", "to_user": "anastasds", "to_user_id": 68495783, "to_user_id_str": "68495783", "to_user_name": "Anastas"}, +{"created_at": "Tue, 13 Dec 2011 01:57:50 +0000", "from_user": "javascriptalert", "from_user_id": 274501532, "from_user_id_str": "274501532", "from_user_name": "javascript", "geo": null, "id": 146408453039079420, "id_str": "146408453039079424", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1304350707/___normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1304350707/___normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Planet CouchDB: http://t.co/hyfDlUBq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 01:32:55 +0000", "from_user": "cemerick", "from_user_id": 15029885, "from_user_id_str": "15029885", "from_user_name": "Chas Emerick", "geo": null, "id": 146402184727236600, "id_str": "146402184727236610", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1160448840/Untitled_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1160448840/Untitled_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Clutch now has a build/CI home @travisci! http://t.co/b8xV17WH #couchdb #clojure", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 00:44:12 +0000", "from_user": "ixixi", "from_user_id": 15377475, "from_user_id_str": "15377475", "from_user_name": "Yudai Odagiri", "geo": null, "id": 146389924034252800, "id_str": "146389924034252800", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1273325819/ixixi_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273325819/ixixi_normal.gif", "source": "<a href="http://www.tweenapp.org/" rel="nofollow">Tween</a>", "text": "Amazon\\u304B\\u3089\\u3001\\u300CAdvanced CouchDB\\u300D\\u306E\\u767A\\u58F2\\u4E88\\u5B9A\\u65E5\\u304C12/30\\u304B\\u30891/31\\u306B\\u5EF6\\u671F\\u3057\\u305F\\u3068\\u306E\\u30E1\\u30FC\\u30EB\\u304C\\u6765\\u305F\\u2026 http://t.co/PXzd32Ck", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 00:27:02 +0000", "from_user": "GeekDani", "from_user_id": 65526437, "from_user_id_str": "65526437", "from_user_name": "Dani Kim", "geo": null, "id": 146385605272674300, "id_str": "146385605272674308", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662698421/DSC04650_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662698421/DSC04650_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @maslett: According to LinkedIn profiles the #NoSQL top 5 is MongoDB, Redis, CouchDB, HBase, and Cassandra. In that order: bit.ly/uF46j7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 23:46:58 +0000", "from_user": "brian_mount", "from_user_id": 153347833, "from_user_id_str": "153347833", "from_user_name": "Brian Mount", "geo": +{"coordinates": [37.7204,-122.4839], "type": "Point"}, "id": 146375520567836670, "id_str": "146375520567836672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1066899178/Brian_Mount_on_30th_b-day_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1066899178/Brian_Mount_on_30th_b-day_normal.png", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@burritojustice Thurs was blast. Made this after http://t.co/zO7OyvJk for moar ez polymaps on CouchDB, see 1st lnk & \"non-gory details\"", "to_user": "burritojustice", "to_user_id": 16944165, "to_user_id_str": "16944165", "to_user_name": "burritojustice", "in_reply_to_status_id": 146355578296479740, "in_reply_to_status_id_str": "146355578296479744"}, +{"created_at": "Mon, 12 Dec 2011 22:48:36 +0000", "from_user": "sbisbee", "from_user_id": 61703528, "from_user_id_str": "61703528", "from_user_name": "Sam Bisbee", "geo": null, "id": 146360833100886000, "id_str": "146360833100886016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1315333086/0784ef3cf96ce229544755d63b5cdb4f_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1315333086/0784ef3cf96ce229544755d63b5cdb4f_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Started hacking on couchdb-notify late last night so that I can get my irssi, or other remote alerts, anywhere. http://t.co/0IQ2QCd3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 22:34:18 +0000", "from_user": "waratuman", "from_user_id": 15935410, "from_user_id_str": "15935410", "from_user_name": "James R. Bracy", "geo": null, "id": 146357235327565820, "id_str": "146357235327565825", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1390274014/download_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1390274014/download_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Nodester: @mohsen____ Nodester runs on CouchDB but you can access any DBaaS such as @MongoHQ @iriscouch or @RedisToGo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 22:33:54 +0000", "from_user": "redistogo", "from_user_id": 164181615, "from_user_id_str": "164181615", "from_user_name": "Redis To Go", "geo": null, "id": 146357133485686800, "id_str": "146357133485686785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1089887675/icon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1089887675/icon_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Nodester: @mohsen____ Nodester runs on CouchDB but you can access any DBaaS such as @MongoHQ @iriscouch or @RedisToGo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 22:30:52 +0000", "from_user": "Nodester", "from_user_id": 240751001, "from_user_id_str": "240751001", "from_user_name": "Nodester", "geo": null, "id": 146356369858109440, "id_str": "146356369858109441", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@mohsen____ Nodester runs on CouchDB but you can access any DBaaS such as @MongoHQ @iriscouch or @RedisToGo", "to_user": "mohsen____", "to_user_id": 30211348, "to_user_id_str": "30211348", "to_user_name": "Mohsen Azimi", "in_reply_to_status_id": 146343770168897540, "in_reply_to_status_id_str": "146343770168897536"}, +{"created_at": "Mon, 12 Dec 2011 22:27:43 +0000", "from_user": "burritojustice", "from_user_id": 16944165, "from_user_id_str": "16944165", "from_user_name": "burritojustice", "geo": null, "id": 146355578296479740, "id_str": "146355578296479744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/856593717/burrito_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/856593717/burrito_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@brian_mount great seeing you last Thursday! BTW meant to send you this earlier: http://t.co/S3BPSkC8", "to_user": "brian_mount", "to_user_id": 153347833, "to_user_id_str": "153347833", "to_user_name": "Brian Mount"}, +{"created_at": "Mon, 12 Dec 2011 21:49:02 +0000", "from_user": "cht_z", "from_user_id": 121529764, "from_user_id_str": "121529764", "from_user_name": "Christian Tschenett", "geo": null, "id": 146345843874734080, "id_str": "146345843874734082", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1229151974/Foto_am_29-01-2011_um_18.17__3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1229151974/Foto_am_29-01-2011_um_18.17__3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Ruby, #CouchDB, #Performance. Fun presentation^^ http://t.co/EVVwJPg9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 21:19:19 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 146338365296484350, "id_str": "146338365296484352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "couchdb-api (0.12.0): http://t.co/BEggp141 An async wrapper for the CouchDB HTTP API, following Node.js conventions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 21:00:19 +0000", "from_user": "Ilaiod", "from_user_id": 431678494, "from_user_id_str": "431678494", "from_user_name": "Ila Castoreno", "geo": null, "id": 146333582175125500, "id_str": "146333582175125506", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680991797/32dys155q3_132642654-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680991797/32dys155q3_132642654-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "CouchDB: The Definitive Guide: Three of CouchDB's creators show you how to use this document-oriented database a... http://t.co/UMwwZxSf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 20:48:38 +0000", "from_user": "xrath", "from_user_id": 16795647, "from_user_id_str": "16795647", "from_user_name": "Jang-Ho Hwang", "geo": null, "id": 146330642454560770, "id_str": "146330642454560768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1663763117/profile2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663763117/profile2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lmatteis: If you're building a \"public\" API, you're doing it wrong. Developers should access the same APIs you use internally. Try CouchDB!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 20:48:25 +0000", "from_user": "pelegri", "from_user_id": 18031910, "from_user_id_str": "18031910", "from_user_name": "pelegri", "geo": null, "id": 146330587081347070, "id_str": "146330587081347072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/497054681/PelegriCropped_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/497054681/PelegriCropped_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Initial port of #CouchDB to #PlayBook at #github now: http://t.co/r6hmoWHV Passes most of #futon test. Post w/ details tomorrow", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 20:46:00 +0000", "from_user": "xrath", "from_user_id": 16795647, "from_user_id_str": "16795647", "from_user_name": "Jang-Ho Hwang", "geo": null, "id": 146329978194243600, "id_str": "146329978194243584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1663763117/profile2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663763117/profile2_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @40square: When building an app with @CouchDB don't think of the db first. Think of the front end and business logic, the db will follow naturally.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 20:06:41 +0000", "from_user": "d1rk", "from_user_id": 15930039, "from_user_id_str": "15930039", "from_user_name": "d1rk", "geo": null, "id": 146320085949222900, "id_str": "146320085949222912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/701343658/little-anonymous_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/701343658/little-anonymous_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Couchbase HTTP API Reference - Learn about CouchDB - the best documentation on that topic, ever. http://t.co/04pdUXtu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 19:36:49 +0000", "from_user": "sambervalley", "from_user_id": 14410673, "from_user_id_str": "14410673", "from_user_name": "SAMBER VALLEY", "geo": null, "id": 146312568661753860, "id_str": "146312568661753856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1198256118/blue_frog2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1198256118/blue_frog2_normal.png", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Cassandra vs MongoDB vs CouchDB vs Redis vs Riak vs HBase comparison - While SQL databases are insanely... http://t.co/XXGT2rwT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 19:33:18 +0000", "from_user": "sh4ka", "from_user_id": 3209151, "from_user_id_str": "3209151", "from_user_name": "Jes\\u00FAs Flores", "geo": null, "id": 146311683843948540, "id_str": "146311683843948544", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1450502181/yo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1450502181/yo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Usamos: html5, php, mysql, javascript, couchdb, amazon-s3, sphinx, smarty, badgeville y las api de FB y twitter. #medejoalgofijo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 19:32:22 +0000", "from_user": "datalaundry", "from_user_id": 19220745, "from_user_id_str": "19220745", "from_user_name": "Mike West", "geo": null, "id": 146311449705324540, "id_str": "146311449705324545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/623100090/mikewarmachine192square_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/623100090/mikewarmachine192square_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @caolan: Kanso 0.1.1 released, get it while it's hot! http://t.co/ynKJhrqi - release announcement: http://t.co/4MjjRFt4 #couchdb #nodejs #couchapps", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 19:30:06 +0000", "from_user": "sambervalley", "from_user_id": 14410673, "from_user_id_str": "14410673", "from_user_name": "SAMBER VALLEY", "geo": null, "id": 146310878881521660, "id_str": "146310878881521664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1198256118/blue_frog2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1198256118/blue_frog2_normal.png", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Why I choose CouchDB over MongoDB - Theres a lot of discussion lately over NoSQL databases for... http://t.co/QwJWiDz0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 19:05:38 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 146304720485629950, "id_str": "146304720485629952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @natevw caolan: NPM for CouchApps http://t.co/O51WOfib - the Kanso release announcement #nodejs #couchdb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 19:00:30 +0000", "from_user": "natevw", "from_user_id": 8419342, "from_user_id_str": "8419342", "from_user_name": "Nathan Vander Wilt", "geo": null, "id": 146303431089471500, "id_str": "146303431089471489", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1266548910/updated_profile_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266548910/updated_profile_pic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @caolan: NPM for CouchApps http://t.co/Duhj0Tol - the Kanso release announcement #nodejs #couchdb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 18:54:59 +0000", "from_user": "rgaidot", "from_user_id": 1245801, "from_user_id_str": "1245801", "from_user_name": "R\\u00E9gis Gaidot", "geo": null, "id": 146302043001331700, "id_str": "146302043001331712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1266738841/avatar-6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266738841/avatar-6_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "The geographic distribution of NoSQL skills: CouchDB and Neo4j http://t.co/og7rc5jz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 18:51:06 +0000", "from_user": "mandric", "from_user_id": 3474, "from_user_id_str": "3474", "from_user_name": "Milan Andric", "geo": null, "id": 146301063769751550, "id_str": "146301063769751553", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/64558932/IMG_0038_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/64558932/IMG_0038_normal.PNG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @caolan: Kanso 0.1.1 released, get it while it's hot! http://t.co/ynKJhrqi - release announcement: http://t.co/4MjjRFt4 #couchdb #nodejs #couchapps", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 18:29:34 +0000", "from_user": "nicolaiarocci", "from_user_id": 21412873, "from_user_id_str": "21412873", "from_user_name": "Nicola Iarocci", "geo": null, "id": 146295644557025280, "id_str": "146295644557025280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687505159/nicola_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687505159/nicola_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @maslett: According to LinkedIn profiles the #NoSQL top 5 is MongoDB, Redis, CouchDB, HBase, and Cassandra. In that order: bit.ly/uF46j7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 18:17:02 +0000", "from_user": "empr_enfurecido", "from_user_id": 435098504, "from_user_id_str": "435098504", "from_user_name": "Entrepreneur", "geo": null, "id": 146292490134237200, "id_str": "146292490134237184", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689348538/512px-Number_1_in_green_rounded_square.svg_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689348538/512px-Number_1_in_green_rounded_square.svg_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@dev_enfurecido NOS HAN RECOMENDANDO DESARROLLAR NUESTRO PRODUCTO EN NODEJS + COUCHDB Y TODO ESTO HOSPEDARLO EN HEROKU. NOS DAS TU OPINI\\u00D3N?", "to_user": "dev_enfurecido", "to_user_id": 352267014, "to_user_id_str": "352267014", "to_user_name": "craftsman enfurecido"}, +{"created_at": "Mon, 12 Dec 2011 18:12:05 +0000", "from_user": "daleharvey", "from_user_id": 16378342, "from_user_id_str": "16378342", "from_user_name": "Dale Harvey", "geo": null, "id": 146291246468567040, "id_str": "146291246468567040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1225104527/5353288191_7671433a7a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225104527/5353288191_7671433a7a_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @caolan: Kanso 0.1.1 released, get it while it's hot! http://t.co/ynKJhrqi - release announcement: http://t.co/4MjjRFt4 #couchdb #nodejs #couchapps", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 18:06:43 +0000", "from_user": "jdg995", "from_user_id": 9809222, "from_user_id_str": "9809222", "from_user_name": "Jeff Gray", "geo": null, "id": 146289894942191600, "id_str": "146289894942191616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/54684303/Photo_48_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/54684303/Photo_48_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @maslett: According to LinkedIn profiles the #NoSQL top 5 is MongoDB, Redis, CouchDB, HBase, and Cassandra. In that order: bit.ly/uF46j7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 18:02:02 +0000", "from_user": "capotribu", "from_user_id": 14830884, "from_user_id_str": "14830884", "from_user_name": "Marco Abis", "geo": null, "id": 146288717282283520, "id_str": "146288717282283521", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669854985/MarcoAbis_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669854985/MarcoAbis_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @maslett: According to LinkedIn profiles the #NoSQL top 5 is MongoDB, Redis, CouchDB, HBase, and Cassandra. In that order: bit.ly/uF46j7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 17:46:09 +0000", "from_user": "maslett", "from_user_id": 20518767, "from_user_id_str": "20518767", "from_user_name": "Matt Aslett", "geo": null, "id": 146284719942799360, "id_str": "146284719942799360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1380299722/aslettnewest_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1380299722/aslettnewest_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "According to LinkedIn profiles the #NoSQL top 5 is MongoDB, Redis, CouchDB, HBase, and Cassandra. In that order: bit.ly/uF46j7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 17:32:38 +0000", "from_user": "neo4j", "from_user_id": 22467617, "from_user_id_str": "22467617", "from_user_name": "Neo4j", "geo": null, "id": 146281315854061570, "id_str": "146281315854061569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/195275920/square-logo-no-text-2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/195275920/square-logo-no-text-2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "451 Blog Post: @maslett discusses #Neo4j user's geographic distribution http://t.co/mqJhY21b", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 16:52:09 +0000", "from_user": "benwoodall", "from_user_id": 18228651, "from_user_id_str": "18228651", "from_user_name": "Ben Woodall", "geo": null, "id": 146271129479286800, "id_str": "146271129479286784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1283113476/3585640_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1283113476/3585640_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Just had a huge AH HA! moment with CouchDB.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 16:48:02 +0000", "from_user": "dialogamsee", "from_user_id": 177916458, "from_user_id_str": "177916458", "from_user_name": "dialogamsee", "geo": null, "id": 146270093414903800, "id_str": "146270093414903808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1101977536/dialogamsee_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1101977536/dialogamsee_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Workaround f\\u00FCr CouchDB/Futon Fehler http://t.co/DVIxhtMO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 16:48:02 +0000", "from_user": "carstenreichel", "from_user_id": 15531333, "from_user_id_str": "15531333", "from_user_name": "carstenreichel", "geo": null, "id": 146270092727033860, "id_str": "146270092727033856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/57037566/carsten_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/57037566/carsten_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Workaround f\\u00FCr CouchDB/Futon Fehler http://t.co/jA5Kjj0d", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 16:42:07 +0000", "from_user": "MichelEnLaRed", "from_user_id": 52024106, "from_user_id_str": "52024106", "from_user_name": "Michel", "geo": null, "id": 146268606257303550, "id_str": "146268606257303552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1659226458/perfil2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659226458/perfil2_normal.jpg", "source": "<a href="http://identi.ca" rel="nofollow">identica</a>", "text": "Minimize the delta between #Debian and #Ubuntu #precise 12.04, yet keep the couchdb-bin/couchdb split! - http://t.co/51lHzc57", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 16:06:56 +0000", "from_user": "brunofuster", "from_user_id": 19590078, "from_user_id_str": "19590078", "from_user_name": "Bruno Fuster", "geo": null, "id": 146259748768067600, "id_str": "146259748768067585", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1599262971/25a3259811b826f44d7a8e444b802e71_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599262971/25a3259811b826f44d7a8e444b802e71_normal.jpeg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "redis, couchdb, cassandra, mongodb, hbase, riak, membase, neo4j http://t.co/LecYAcug", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 15:56:57 +0000", "from_user": "alterakey", "from_user_id": 217707508, "from_user_id_str": "217707508", "from_user_name": "Takahiro Yoshimura", "geo": null, "id": 146257238649094140, "id_str": "146257238649094144", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1669685243/IMG_20111202_113255__2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669685243/IMG_20111202_113255__2__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u4ECA\\u65E5\\u306E\\u30E1\\u30E2\\u3002\\u4E0D\\u5B9A\\u5F62\\u30C7\\u30FC\\u30BF\\u3092\\u4F34\\u3046\\u5927\\u91CF\\u306E\\u30E9\\u30F3\\u30C9\\u30DE\\u30FC\\u30AF\\u3002\\u3053\\u308C\\u3092\\u3069\\u3046\\u3084\\u3063\\u3066RDBMS\\u3067\\u691C\\u7D22\\u3057\\u3084\\u3059\\u3044\\u5F62\\u306B\\u3055\\u3070\\u3044\\u3066\\u3044\\u304F\\u304B\\u2026\\u3068\\u8003\\u3048\\u308B\\u3088\\u308A\\u3001CouchDB\\u3042\\u305F\\u308A\\u3092\\u4F7F\\u3063\\u305F\\u65B9\\u304C\\u826F\\u3044\\u3088\\u3046\\u306A\\u6C17\\u304C\\u3059\\u308B\\u3002\\u3057\\u304B\\u3057\\u5730\\u7406\\u7684\\u306A\\u691C\\u7D22\\u306F\\u2026\\u3068\\u601D\\u3063\\u3066\\u3044\\u305F\\u3089\\u3001\\u3069\\u3046\\u3084\\u3089\\u3067\\u304D\\u308B\\u3088\\u3046\\u3060\\u3002 http://t.co/GKT3ZhjF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 15:54:01 +0000", "from_user": "utkarsh2012", "from_user_id": 33236822, "from_user_id_str": "33236822", "from_user_name": "Utkarsh Sengar", "geo": null, "id": 146256497960161280, "id_str": "146256497960161280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1534612623/12756_173483567390_587602390_3430383_8177922_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534612623/12756_173483567390_587602390_3430383_8177922_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @architgupta: Great exposition on nosql vs mysql by quora founder. http://t.co/rZbrrjiI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 15:53:41 +0000", "from_user": "simon_weare", "from_user_id": 143751984, "from_user_id_str": "143751984", "from_user_name": "Simon Weare", "geo": null, "id": 146256414233473020, "id_str": "146256414233473024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1405907679/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1405907679/avatar_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Frictionless stack? @nodejs, @couchdb, @elasticsearch, #backbonejs. #rest, #js, #html, #css top-to-toe. \\nThen #BDD it up with @jasminebdd.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 15:24:18 +0000", "from_user": "DBmxorg", "from_user_id": 261452842, "from_user_id_str": "261452842", "from_user_name": "DBmx.org", "geo": null, "id": 146249020287893500, "id_str": "146249020287893504", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1263199080/4395953684_419dff284f_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263199080/4395953684_419dff284f_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rgaidot: LazyBoy is a Couchdb Object Document Model. http://t.co/lrZXSfUw #nodejs #couchdb #odm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 15:16:11 +0000", "from_user": "gsteinfeld", "from_user_id": 10345952, "from_user_id_str": "10345952", "from_user_name": "gsteinfeld", "geo": null, "id": 146246976927838200, "id_str": "146246976927838208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1030824237/bo036_grantInTreeBo2006_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1030824237/bo036_grantInTreeBo2006_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "Erlang looks really interesting. It's the language CouchdB is written in, I'm currently exploring Couch as a viable alternative to MongoDB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 15:06:21 +0000", "from_user": "apilink", "from_user_id": 199600594, "from_user_id_str": "199600594", "from_user_name": "apilink.net", "geo": null, "id": 146244502812762100, "id_str": "146244502812762112", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1240537985/95aGrume_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1240537985/95aGrume_normal", "source": "<a href="http://www.destroytwitter.com" rel="nofollow">DestroyTwitter</a>", "text": "Me han puesto deberes: a estudiar couchdb sincronizaci\\u00F3n transparente de dbs o algo as\\u00EDn. pues s\\u00ED que vienen pisando fuerte los j\\u00F3venes :-0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 14:49:44 +0000", "from_user": "josehidrom", "from_user_id": 268953393, "from_user_id_str": "268953393", "from_user_name": "Jose Hidalgo", "geo": null, "id": 146240322500964350, "id_str": "146240322500964352", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1336347727/fanboy-and-chum_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1336347727/fanboy-and-chum_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@luismedel @Leo_lopezg yo no me decido entre mongodb o couchdb...", "to_user": "luismedel", "to_user_id": 130584393, "to_user_id_str": "130584393", "to_user_name": "Luis Medel", "in_reply_to_status_id": 146239805326508030, "in_reply_to_status_id_str": "146239805326508032"}, +{"created_at": "Mon, 12 Dec 2011 14:37:09 +0000", "from_user": "mike_neck", "from_user_id": 218150156, "from_user_id_str": "218150156", "from_user_name": "mike_neck", "geo": null, "id": 146237154106933250, "id_str": "146237154106933249", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1567497838/mike_icon_24843_image001_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1567497838/mike_icon_24843_image001_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "port list cassandra\\u3068port list couchdb\\u3068port list hadoop\\u304C\\u3042\\u3063\\u305F\\u306E\\u306F\\u3073\\u3063\\u304F\\u308A\\uFF01", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 12 Dec 2011 14:06:19 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 146229396993351680, "id_str": "146229396993351680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "dk-model-couchdb (0.1.1): http://t.co/tX4yP9e1 CouchDB Model Implementation for DrumKit", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 14:05:50 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 146229272539967500, "id_str": "146229272539967488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "dk-couchdb (0.1.1): http://t.co/Dx5WFRLJ CouchDB Plugin for the Drumkit Framework", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 13:12:57 +0000", "from_user": "J01ce_", "from_user_id": 185004475, "from_user_id_str": "185004475", "from_user_name": "Joice Joseph", "geo": null, "id": 146215966676750340, "id_str": "146215966676750337", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1377621903/ldcjydgedgg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1377621903/ldcjydgedgg_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @planetubuntu: Jason Gerard DeRose: My proposal for CouchDB in Precise: Minimize the delta between Debian and Ubuntu, yet keep ... http://t.co/4NrWxcJR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 13:08:57 +0000", "from_user": "PatrickHeneise", "from_user_id": 18073349, "from_user_id_str": "18073349", "from_user_name": "Patrick Heneise", "geo": null, "id": 146214960035401730, "id_str": "146214960035401728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1462247153/CIMG2411_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1462247153/CIMG2411_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "\\u201C@rdmpage: Exporting data from Australian Faunal Directory on CouchDB http://t.co/KEMBbWCn\\u201D - nice!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 13:07:34 +0000", "from_user": "towhans", "from_user_id": 15512020, "from_user_id_str": "15512020", "from_user_name": "towhans", "geo": null, "id": 146214612101120000, "id_str": "146214612101120000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/56969365/sej_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/56969365/sej_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Ditching #CouchDB because of poor query capabilities. You just can't code around that without major performance penalty.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 13:06:43 +0000", "from_user": "rdmpage", "from_user_id": 14568034, "from_user_id_str": "14568034", "from_user_name": "Roderic Page", "geo": null, "id": 146214396253843460, "id_str": "146214396253843456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/422396807/255060272_f0f249723d_m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/422396807/255060272_f0f249723d_m_normal.jpg", "source": "<a href="http://friendfeed.com" rel="nofollow">FriendFeed</a>", "text": "Exporting data from Australian Faunal Directory on CouchDB http://t.co/j8qsKjj3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 12:22:35 +0000", "from_user": "pavel_sutyrin", "from_user_id": 143711992, "from_user_id_str": "143711992", "from_user_name": "Pavel Sutyrin", "geo": null, "id": 146203289048985600, "id_str": "146203289048985600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1308335774/spacediver_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1308335774/spacediver_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @sdfgh153: Writing debug logs from iPhone directly to CouchDB. Development \\u2014 siberian style.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 11:51:03 +0000", "from_user": "ww24", "from_user_id": 75828566, "from_user_id_str": "75828566", "from_user_name": "\\u305F\\u3051", "geo": null, "id": 146195354268876800, "id_str": "146195354268876800", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1490792273/1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1490792273/1_normal.png", "source": "<a href="http://miteru.gkbr.me/" rel="nofollow">\\u2611 \\u898B\\u3066\\u308B\\u306A\\u3046 </a>", "text": "CouchDB\\u3068MongoDB\\u306E\\u4F7F\\u3044\\u5206\\u3051 - \\u30E2\\u30B8\\u30ED\\u30B0: http://t.co/GbQxogGx #miteru", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 11:23:38 +0000", "from_user": "alfamale156", "from_user_id": 61744769, "from_user_id_str": "61744769", "from_user_name": "Andrew Woodcock", "geo": null, "id": 146188454508757000, "id_str": "146188454508756992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693217959/Daddy_and_Emily_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693217959/Daddy_and_Emily_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Curl returning \\u201CInvalid UTF-8 JSON\\u201D error from CouchDb on Windows although JSON is correct http://t.co/5XHNKbRI via http://t.co/ZrHEwBSt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 11:12:04 +0000", "from_user": "wactbprot", "from_user_id": 396792485, "from_user_id_str": "396792485", "from_user_name": "wactbprot", "geo": null, "id": 146185545276604400, "id_str": "146185545276604416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1603142535/eraserhead-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1603142535/eraserhead-1_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Speeding up development with CouchDB - I\\u2019m not sure what it is, but developing an App with CouchDB feels a... http://t.co/yH69dovv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 11:08:35 +0000", "from_user": "wactbprot", "from_user_id": 396792485, "from_user_id_str": "396792485", "from_user_name": "wactbprot", "geo": null, "id": 146184670046982140, "id_str": "146184670046982144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1603142535/eraserhead-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1603142535/eraserhead-1_normal.jpg", "source": "<a href="http://www.yoono.com" rel="nofollow">yoono</a>", "text": "#couchdb roundup http://t.co/v3iZIqu1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 11:05:33 +0000", "from_user": "nekrograve", "from_user_id": 95500132, "from_user_id_str": "95500132", "from_user_name": "Valery Meleshkin", "geo": null, "id": 146183906520088580, "id_str": "146183906520088577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1196678708/sochi_avatar3_150_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1196678708/sochi_avatar3_150_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @sdfgh153: Writing debug logs from iPhone directly to CouchDB. Development \\u2014 siberian style.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 11:05:05 +0000", "from_user": "sdfgh153", "from_user_id": 390808557, "from_user_id_str": "390808557", "from_user_name": "S\\u0451mka Novikov", "geo": null, "id": 146183787913560060, "id_str": "146183787913560064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685093073/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685093073/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Writing debug logs from iPhone directly to CouchDB. Development \\u2014 siberian style.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 10:47:35 +0000", "from_user": "UbuntuWorldWide", "from_user_id": 176428672, "from_user_id_str": "176428672", "from_user_name": "Ubuntu World Wide", "geo": null, "id": 146179381943996400, "id_str": "146179381943996416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1099072003/ubuntu-logo-500x500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1099072003/ubuntu-logo-500x500_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#ubuntu #linux Jason Gerard DeRose: My proposal for CouchDB in Precise: Minimize the delta between Debian and Ub... http://t.co/ttuqYk2m", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 10:47:34 +0000", "from_user": "planetubuntu", "from_user_id": 21967441, "from_user_id_str": "21967441", "from_user_name": "Planet Ubuntu", "geo": null, "id": 146179380840894460, "id_str": "146179380840894464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1477595408/cof_orange_hex_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1477595408/cof_orange_hex_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Jason Gerard DeRose: My proposal for CouchDB in Precise: Minimize the delta between Debian and Ubuntu, yet keep ... http://t.co/4NrWxcJR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 10:45:28 +0000", "from_user": "tomahoax", "from_user_id": 23421653, "from_user_id_str": "23421653", "from_user_name": "Yannick", "geo": null, "id": 146178848915079170, "id_str": "146178848915079168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/270939166/inthemix_mini_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/270939166/inthemix_mini_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Why I choose CouchDB over MongoDB http://t.co/hViPGtra #CouchDB #MongoDB #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 10:44:19 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 146178561928200200, "id_str": "146178561928200192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "txn (0.2.5): http://t.co/ya6DKFz1 Process and update CouchDB data in atomic, all-or-nothing transactions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 10:41:42 +0000", "from_user": "sirex_cr", "from_user_id": 15178006, "from_user_id_str": "15178006", "from_user_name": "sirex_cr", "geo": null, "id": 146177903003058180, "id_str": "146177903003058176", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1231650154/avatar_sirex_pfade_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1231650154/avatar_sirex_pfade_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Huuhuuu, hat hier schon jemand mit NoSQL-DBs gearbeitet? Sowas wie CouchDB?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 10:35:44 +0000", "from_user": "YanisGuenane", "from_user_id": 202164660, "from_user_id_str": "202164660", "from_user_name": "Yanis Guenane", "geo": null, "id": 146176399491874800, "id_str": "146176399491874816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1143829941/28d384c_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1143829941/28d384c_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @caolan: Kanso 0.1.1 released, get it while it's hot! http://t.co/ynKJhrqi - release announcement: http://t.co/4MjjRFt4 #couchdb #nodejs #couchapps", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 10:33:36 +0000", "from_user": "UbuntuGeekNews", "from_user_id": 313177709, "from_user_id_str": "313177709", "from_user_name": "Ubuntu Geek News", "geo": null, "id": 146175862977474560, "id_str": "146175862977474560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1386871562/Elisha-Ubuntu-150x150_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1386871562/Elisha-Ubuntu-150x150_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Jason Gerard DeRose: My proposal for CouchDB in Precise http://t.co/qzendDnS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 10:20:39 +0000", "from_user": "architgupta", "from_user_id": 28971466, "from_user_id_str": "28971466", "from_user_name": "Archit Gupta", "geo": null, "id": 146172606532427780, "id_str": "146172606532427776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1210479526/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1210479526/twitter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Great exposition on nosql vs mysql by quora founder. http://t.co/rZbrrjiI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 10:16:01 +0000", "from_user": "alian", "from_user_id": 2340151, "from_user_id_str": "2340151", "from_user_name": "Fero Alian Volar", "geo": null, "id": 146171439127592960, "id_str": "146171439127592960", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1604240070/IMG_2581_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1604240070/IMG_2581_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "RT @rubyslava: \\u0160tvrtok o 19:00 v Kaf\\u00E9 Nervosa: Akt\\u00EDvna dokument\\u00E1cia (@iNecas) a CouchDB (Michal Bartha) 15.12. http://t.co/CKi9oCaR RT pls.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 10:15:53 +0000", "from_user": "typingincolor", "from_user_id": 118448914, "from_user_id_str": "118448914", "from_user_name": "Andrew Braithwaite", "geo": null, "id": 146171406105841660, "id_str": "146171406105841664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1619385677/andrew-braithwaite-pointillized_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619385677/andrew-braithwaite-pointillized_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "This morning I shall mostly be setting up couchdb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 10:11:59 +0000", "from_user": "jgderose", "from_user_id": 130418225, "from_user_id_str": "130418225", "from_user_name": "Jason Gerard DeRose", "geo": null, "id": 146170425964113920, "id_str": "146170425964113920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1131459592/avatar-twitter-73x73_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1131459592/avatar-twitter-73x73_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "New blog post: My proposal for CouchDB in Precise - http://t.co/0jTw97oj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 10:10:39 +0000", "from_user": "e_scitalk", "from_user_id": 15850897, "from_user_id_str": "15850897", "from_user_name": "e-ScienceTalk", "geo": null, "id": 146170089568350200, "id_str": "146170089568350209", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1120925647/EST-logo-eScienceTalk_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1120925647/EST-logo-eScienceTalk_twitter_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @isgtw: Will @CERN follow the \\u2018red brick\\u2019 road of data management? http://t.co/jWGdJhfQ #NoSQL @WizaaardOfOz @BerkeleyLab @CouchDB @mongodb @Hadapt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 10:05:41 +0000", "from_user": "montaro23", "from_user_id": 14953818, "from_user_id_str": "14953818", "from_user_name": "\\u0627\\u0644\\u0631\\u0641\\u0627\\u0639\\u0649", "geo": null, "id": 146168839825133570, "id_str": "146168839825133568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1367798663/242358_10150196831924644_762369643_6730428_3755049_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1367798663/242358_10150196831924644_762369643_6730428_3755049_o_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Why I choose CouchDB over MongoDB http://t.co/Cdxsw07C", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 09:50:54 +0000", "from_user": "twest72", "from_user_id": 118988955, "from_user_id_str": "118988955", "from_user_name": "Thomas Westphal", "geo": null, "id": 146165118047223800, "id_str": "146165118047223808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1220291263/thomas_20090815_113756_sw_klein_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1220291263/thomas_20090815_113756_sw_klein_normal.jpg", "source": "<a href="http://www.dzone.com" rel="nofollow">DZone.com</a>", "text": "RT @DZone: Why I choose CouchDB over MongoDB - http://t.co/YXES78r9 - @DZone Big Link by mitchp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 09:31:40 +0000", "from_user": "tiso", "from_user_id": 3026681, "from_user_id_str": "3026681", "from_user_name": "Tibor Sovi\\u0161", "geo": null, "id": 146160276897665020, "id_str": "146160276897665024", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/14415512/tiso-icq_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/14415512/tiso-icq_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "RT @rubyslava: \\u0160tvrtok o 19:00 v Kaf\\u00E9 Nervosa: Akt\\u00EDvna dokument\\u00E1cia (@iNecas) a CouchDB (Michal Bartha) 15.12. http://t.co/CKi9oCaR RT pls.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 09:19:16 +0000", "from_user": "novacut", "from_user_id": 161922996, "from_user_id_str": "161922996", "from_user_name": "Novacut", "geo": null, "id": 146157156188692480, "id_str": "146157156188692480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1353303066/novacut-solo-brandmark_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1353303066/novacut-solo-brandmark_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jgderose: @sil @chipaca @thisfred @chadmiller what do you think of this CouchDB plan for #Ubuntu Precise? http://t.co/PU4Py2IO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 09:11:07 +0000", "from_user": "jsuchal", "from_user_id": 21485265, "from_user_id_str": "21485265", "from_user_name": "J\\u00E1n Suchal", "geo": null, "id": 146155104670720000, "id_str": "146155104670720000", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/295141929/forum_icon_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/295141929/forum_icon_1__normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "RT @rubyslava: \\u0160tvrtok o 19:00 v Kaf\\u00E9 Nervosa: Akt\\u00EDvna dokument\\u00E1cia (@iNecas) a CouchDB (Michal Bartha) 15.12. http://t.co/CKi9oCaR RT pls.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 09:10:35 +0000", "from_user": "rubyslava", "from_user_id": 377890072, "from_user_id_str": "377890072", "from_user_name": "rubyslava", "geo": null, "id": 146154972495609860, "id_str": "146154972495609856", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1554367896/174756_172990032745033_2933445_s_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554367896/174756_172990032745033_2933445_s_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "\\u0160tvrtok o 19:00 v Kaf\\u00E9 Nervosa: Akt\\u00EDvna dokument\\u00E1cia (@iNecas) a CouchDB (Michal Bartha) 15.12. http://t.co/CKi9oCaR RT pls.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 09:07:48 +0000", "from_user": "jgderose", "from_user_id": 130418225, "from_user_id_str": "130418225", "from_user_name": "Jason Gerard DeRose", "geo": null, "id": 146154270985699330, "id_str": "146154270985699328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1131459592/avatar-twitter-73x73_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1131459592/avatar-twitter-73x73_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@sil @chipaca @thisfred @chadmiller what do you think of this CouchDB plan for #Ubuntu Precise? http://t.co/PU4Py2IO", "to_user": "sil", "to_user_id": 1389781, "to_user_id_str": "1389781", "to_user_name": "Stuart Langridge"}, +{"created_at": "Mon, 12 Dec 2011 08:49:07 +0000", "from_user": "gonzalo123", "from_user_id": 5303212, "from_user_id_str": "5303212", "from_user_name": "Gonzalo Ayuso", "geo": null, "id": 146149571008008200, "id_str": "146149571008008192", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1250007873/gonzalo123.20110218_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1250007873/gonzalo123.20110218_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@itortv la integraci\\u00F3n de mongo+php es genial, pero yo me quedo con couchDB. Su killer-feature de replica multimaster me viene de perlas", "to_user": "itortv", "to_user_id": 34981400, "to_user_id_str": "34981400", "to_user_name": "Jordi", "in_reply_to_status_id": 146131207749505020, "in_reply_to_status_id_str": "146131207749505024"}, +{"created_at": "Mon, 12 Dec 2011 08:10:11 +0000", "from_user": "mryoshio", "from_user_id": 9047242, "from_user_id_str": "9047242", "from_user_name": "mryoshio", "geo": null, "id": 146139773050961920, "id_str": "146139773050961920", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1302125386/photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1302125386/photo_normal.jpg", "source": "<a href="http://www.yoono.com" rel="nofollow">yoono</a>", "text": "couchdb\\u306E\\u30D0\\u30FC\\u30B8\\u30E7\\u30F3\\u7BA1\\u7406\\u306E\\u4ED5\\u7D44\\u307F\\u306F\\u3001attachment\\u304C\\u3069\\u3093\\u3069\\u3093\\u5897\\u3048\\u3066\\u3044\\u304F\\u3068\\u3044\\u3046\\u4ED5\\u7D44\\u307F\\u306A\\u306E\\u304B\\u3002document\\u306E_rev\\u3054\\u3068\\u306Battachment\\u304C\\u5B58\\u5728\\u3059\\u308B\\u308F\\u3051\\u3067\\u306F\\u306A\\u3055\\u305D\\u3046\\u3002\\u5C11\\u306A\\u304F\\u3068\\u3082Futon\\u7D4C\\u7531\\u3067\\u306F\\u305D\\u3046\\u898B\\u3048\\u308B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 07:54:03 +0000", "from_user": "smhoekstra", "from_user_id": 193823687, "from_user_id_str": "193823687", "from_user_name": "Sanne Hoekstra", "geo": null, "id": 146135710133518340, "id_str": "146135710133518337", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1211977611/49132_1443484208_4654797_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1211977611/49132_1443484208_4654797_q_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @caolan: Kanso 0.1.1 released, get it while it's hot! http://t.co/ynKJhrqi - release announcement: http://t.co/4MjjRFt4 #couchdb #nodejs #couchapps", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 07:52:52 +0000", "from_user": "thenandagain", "from_user_id": 29844206, "from_user_id_str": "29844206", "from_user_name": "Darrell", "geo": null, "id": 146135412409245700, "id_str": "146135412409245696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1315608339/5212109819_c3936c9c49_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1315608339/5212109819_c3936c9c49_o_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @caolan: Kanso 0.1.1 released, get it while it's hot! http://t.co/ynKJhrqi - release announcement: http://t.co/4MjjRFt4 #couchdb #nodejs #couchapps", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 07:36:09 +0000", "from_user": "itortv", "from_user_id": 34981400, "from_user_id_str": "34981400", "from_user_name": "Jordi", "geo": null, "id": 146131207749505020, "id_str": "146131207749505024", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/493616455/itortvlogo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/493616455/itortvlogo_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@joserra_diaz @penguinjournals ... stamos structurndo xa la escalabd de la bd y decidiendo la nosql: mongodb, couchdb son las ppales candid", "to_user": "joserra_diaz", "to_user_id": 40336786, "to_user_id_str": "40336786", "to_user_name": "Jose Ram\\u00F3n", "in_reply_to_status_id": 145995259317469200, "in_reply_to_status_id_str": "145995259317469184"}, +{"created_at": "Mon, 12 Dec 2011 07:22:50 +0000", "from_user": "caolan", "from_user_id": 12185182, "from_user_id_str": "12185182", "from_user_name": "Caolan McMahon", "geo": null, "id": 146127856362205200, "id_str": "146127856362205184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1328677360/colourful_cropped_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1328677360/colourful_cropped_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Kanso 0.1.1 released, get it while it's hot! http://t.co/ynKJhrqi - release announcement: http://t.co/4MjjRFt4 #couchdb #nodejs #couchapps", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 07:11:18 +0000", "from_user": "chaojumori", "from_user_id": 210702528, "from_user_id_str": "210702528", "from_user_name": "Louise Mori", "geo": null, "id": 146124952033177600, "id_str": "146124952033177600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1637923494/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637923494/image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @Ijokarumawak: Only 1 seat is left! RelaxBar@CouchDB : ATND http://t.co/3pcO06mB via @atnd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 07:01:38 +0000", "from_user": "atnd_kanto", "from_user_id": 272283741, "from_user_id_str": "272283741", "from_user_name": "ATND\\u60C5\\u5831\\uFF08\\u95A2\\u6771\\uFF09", "geo": null, "id": 146122521278816260, "id_str": "146122521278816256", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1442262945/atnd_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1442262945/atnd_normal.png", "source": "<a href="http://maraigue.hhiro.net/twbot/" rel="nofollow">twbot2.rb</a>", "text": "[\\u66F4\\u65B0] 2011/12/16 RelaxBar\\uFF20CouchDB http://t.co/F45x8czN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 06:46:24 +0000", "from_user": "Ijokarumawak", "from_user_id": 128910202, "from_user_id_str": "128910202", "from_user_name": "Koji Kawamura", "geo": null, "id": 146118686661558270, "id_str": "146118686661558272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1200646395/Ijokarumawak_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1200646395/Ijokarumawak_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Only 1 seat is left! RelaxBar@CouchDB : ATND http://t.co/3pcO06mB via @atnd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 06:45:18 +0000", "from_user": "atnditbot", "from_user_id": 232413130, "from_user_id_str": "232413130", "from_user_name": "Atnd IT\\u52C9\\u5F37\\u4F1A\\u306A\\u3046", "geo": +{"coordinates": [35.529,139.7002], "type": "Point"}, "id": 146118409237692400, "id_str": "146118409237692416", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1203112962/atnd_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1203112962/atnd_normal.png", "source": "<a href="http://updatetweetbot.appspot.com/" rel="nofollow">Atnd IT\\u52C9\\u5F37\\u4F1A\\u306A\\u3046</a>", "text": "12/16\\uFF08\\u91D1\\uFF0919:00 RelaxBar@CouchDB\\uFF20\\u304B\\u3093\\u304B\\u3093\\u5546\\u5E97\\uFF086/7\\uFF09http://t.co/A2v9NB8i", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 06:35:22 +0000", "from_user": "atnditbot", "from_user_id": 232413130, "from_user_id_str": "232413130", "from_user_name": "Atnd IT\\u52C9\\u5F37\\u4F1A\\u306A\\u3046", "geo": +{"coordinates": [35.529,139.7002], "type": "Point"}, "id": 146115910460129280, "id_str": "146115910460129280", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1203112962/atnd_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1203112962/atnd_normal.png", "source": "<a href="http://updatetweetbot.appspot.com/" rel="nofollow">Atnd IT\\u52C9\\u5F37\\u4F1A\\u306A\\u3046</a>", "text": "12/16\\uFF08\\u91D1\\uFF0919:00 RelaxBar@CouchDB\\uFF20\\u99AC\\u523A\\u3057\\u30FB\\u70AD\\u706B\\u713C\\u9CE5\\u30FB\\u624B\\u7FBD\\u5148\\uFF086/7\\uFF09http://t.co/A2v9NB8i", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 05:39:16 +0000", "from_user": "mromtz", "from_user_id": 93404658, "from_user_id_str": "93404658", "from_user_name": "Mario Martinez", "geo": null, "id": 146101792005038080, "id_str": "146101792005038081", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1620642466/mromtzlogo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620642466/mromtzlogo_normal.png", "source": "<a href="http://timely.is" rel="nofollow">Timely by Demandforce</a>", "text": "RT @DBmxorg: Comparando: el MVCC hace m\\u00E1s \\u00E1gil a CouchDB, pero ocupa + espacio, a MongoDB le debe tomar + tiempo actualizar docs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 05:39:11 +0000", "from_user": "mromtz", "from_user_id": 93404658, "from_user_id_str": "93404658", "from_user_name": "Mario Martinez", "geo": null, "id": 146101773122273280, "id_str": "146101773122273280", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1620642466/mromtzlogo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620642466/mromtzlogo_normal.png", "source": "<a href="http://timely.is" rel="nofollow">Timely by Demandforce</a>", "text": "RT @DBmxorg: Comparando: la concurrencia d CouchDB se agiliza con MVCC (una nueva versi\\u00F3n del documento en cada actualizaci\\u00F3n) MongoDB no lo tiene", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 05:39:04 +0000", "from_user": "mromtz", "from_user_id": 93404658, "from_user_id_str": "93404658", "from_user_name": "Mario Martinez", "geo": null, "id": 146101744332570620, "id_str": "146101744332570625", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1620642466/mromtzlogo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620642466/mromtzlogo_normal.png", "source": "<a href="http://timely.is" rel="nofollow">Timely by Demandforce</a>", "text": "RT @DBmxorg: Comparando: la replicaci\\u00F3n d CouchDB es Master-Master y la d MondoDB Master/Slave", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 04:21:21 +0000", "from_user": "seanmrafferty", "from_user_id": 195450396, "from_user_id_str": "195450396", "from_user_name": "Sean Rafferty", "geo": null, "id": 146082184753717250, "id_str": "146082184753717249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1131818221/0805548_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1131818221/0805548_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Ohhhhh....#MongoDB is backed by 10gen (a corporation) and #CouchDB is backed by #Apache (a non-profit org). Hmmmm...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} + +, +{"created_at": "Mon, 19 Dec 2011 18:58:15 +0000", "from_user": "Frozzare", "from_user_id": 17970859, "from_user_id_str": "17970859", "from_user_name": "Fredrik Forsmo", "geo": null, "id": 148839579435270140, "id_str": "148839579435270145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1552171719/twitter3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552171719/twitter3_normal.png", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "RT @bolstad: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/ecvIERQW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:27 +0000", "from_user": "samkariu", "from_user_id": 35271650, "from_user_id_str": "35271650", "from_user_name": "Sam Kariu", "geo": null, "id": 148839376607129600, "id_str": "148839376607129600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1295717092/Photo0031_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1295717092/Photo0031_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @AntoRimba: Very stupid, unafaa kuchapwa @samkariu: A NoSQL database walks into a bar,but leaves immediately because he can't find any tables #getalife", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:26 +0000", "from_user": "tommyskott", "from_user_id": 149031404, "from_user_id_str": "149031404", "from_user_name": "Tommy Skott", "geo": null, "id": 148839373310398460, "id_str": "148839373310398464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688732617/006aa3d_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688732617/006aa3d_normal.jpg", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "RT @bolstad: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/ecvIERQW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:26 +0000", "from_user": "ajperella", "from_user_id": 93434607, "from_user_id_str": "93434607", "from_user_name": "Andrew Perella", "geo": null, "id": 148839372802887680, "id_str": "148839372802887680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/549875457/ajp_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/549875457/ajp_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "http://t.co/O0oVCHVX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:54 +0000", "from_user": "bolstad", "from_user_id": 12974922, "from_user_id_str": "12974922", "from_user_name": "Christian Bolstad", "geo": null, "id": 148837979228610560, "id_str": "148837979228610561", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1379219592/snurrad_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1379219592/snurrad_normal.jpg", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/ecvIERQW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:33 +0000", "from_user": "CaitlinRegan", "from_user_id": 14300275, "from_user_id_str": "14300275", "from_user_name": "CaitlinRegan", "geo": null, "id": 148837639930392580, "id_str": "148837639930392576", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1367351962/Twit_profile_pic_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1367351962/Twit_profile_pic_normal.PNG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @techielicous: Big Data and smart content: New challenges for content management applications - FierceContentMa... http://t.co/TbW6oRd6 #nosql #bigData", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:18 +0000", "from_user": "umitgunduz", "from_user_id": 33584412, "from_user_id_str": "33584412", "from_user_name": "Umit Gunduz", "geo": null, "id": 148837577871466500, "id_str": "148837577871466496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1267325045/TweetLandPhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1267325045/TweetLandPhoto_normal.jpg", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "MongoDB in Numbers: Foursquare, Wordnik, Disney http://t.co/8ulATeZx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:54 +0000", "from_user": "techielicous", "from_user_id": 240306053, "from_user_id_str": "240306053", "from_user_name": "Josette Rigsby", "geo": null, "id": 148837475194896400, "id_str": "148837475194896386", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1250483015/Josette_character_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1250483015/Josette_character_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Big Data and smart content: New challenges for content management applications - FierceContentMa... http://t.co/TbW6oRd6 #nosql #bigData", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:33 +0000", "from_user": "pvillega", "from_user_id": 14407620, "from_user_id_str": "14407620", "from_user_name": "Pere Villega", "geo": null, "id": 148836886008442880, "id_str": "148836886008442880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1052130874/avatar_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1052130874/avatar_2_normal.png", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/jZHhmPce", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:27 +0000", "from_user": "eyalbd1", "from_user_id": 21485089, "from_user_id_str": "21485089", "from_user_name": "Eyal Benishti", "geo": null, "id": 148836860985229300, "id_str": "148836860985229312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1448266383/Camping2008_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1448266383/Camping2008_3_normal.jpg", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/jZHhmPce", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:09 +0000", "from_user": "javutin", "from_user_id": 71221944, "from_user_id_str": "71221944", "from_user_name": "Javier Marcos", "geo": null, "id": 148836534680952830, "id_str": "148836534680952833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/396131569/foto_shark_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/396131569/foto_shark_normal.jpg", "source": "<a href="http://news.ycombinator.com/" rel="nofollow">Hacker News Bot</a>", "text": "RT @hackernewsbot: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS)... http://t.co/C5vM00Bt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:49 +0000", "from_user": "jupiterSpotless", "from_user_id": 188605903, "from_user_id_str": "188605903", "from_user_name": "Jupiter Spotless", "geo": null, "id": 148834940895756300, "id_str": "148834940895756288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1149995175/js_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1149995175/js_normal.jpg", "source": "<a href="http://www.alphonsolabs.com/" rel="nofollow">Pulse News</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) (41 points) http://t.co/R6DEXOgG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:32 +0000", "from_user": "fakalin", "from_user_id": 24603151, "from_user_id_str": "24603151", "from_user_name": "Frederick Akalin", "geo": null, "id": 148834869676482560, "id_str": "148834869676482560", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1167243280/49944_204956_6787309_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1167243280/49944_204956_6787309_q_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @iamtef: hahahahaha http://t.co/MSWqJTAl hahahahahhahahahahahahhaha javascript hahahahaha node.js", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:45 +0000", "from_user": "hugorodrigues", "from_user_id": 14528643, "from_user_id_str": "14528643", "from_user_name": "Hugo Rodrigues", "geo": null, "id": 148833412285874180, "id_str": "148833412285874176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1452203613/DSC_0108_2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1452203613/DSC_0108_2_normal.JPG", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/jZHhmPce", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:27 +0000", "from_user": "pdrobushevich", "from_user_id": 77585874, "from_user_id_str": "77585874", "from_user_name": "Pavel Drobushevich", "geo": null, "id": 148833338419982340, "id_str": "148833338419982336", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1601228996/me_from_scala_5_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601228996/me_from_scala_5_normal.JPG", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "@kochetkov_v \\u043F\\u043E\\u044D\\u0442\\u043E\\u043C\\u0443 \\u044F sql \\u0438 \\u0443\\u043F\\u043E\\u043C\\u044F\\u043D\\u0443\\u043B,\\u043F\\u0440\\u043E\\u0441\\u0442\\u043E \\u043C\\u0435\\u043D\\u044F \\u0433\\u0434\\u0435-\\u0442\\u043E \\u0442\\u0443\\u0442 \\u0443\\u0431\\u0435\\u0436\\u0434\\u0430\\u043B\\u0438,\\u0447\\u0442\\u043E \\u0441 nosql \\u043C\\u043E\\u0436\\u043D\\u043E \\u0437\\u0430\\u0431\\u044B\\u0442\\u044C \\u043F\\u0440\\u043E injection,\\u0430 \\u043D\\u0435\\u0442,\\u043D\\u0435\\u043B\\u044C\\u0437\\u044F \\u0434\\u043E\\u0432\\u0435\\u0440\\u044F\\u0442\\u044C \\u043D\\u0438\\u043A\\u043E\\u043C\\u0443 :)", "to_user": "kochetkov_v", "to_user_id": 250210715, "to_user_id_str": "250210715", "to_user_name": "Vladimir Kochetkov", "in_reply_to_status_id": 148821164607807500, "in_reply_to_status_id_str": "148821164607807488"}, +{"created_at": "Mon, 19 Dec 2011 18:32:20 +0000", "from_user": "telovitz", "from_user_id": 20350381, "from_user_id_str": "20350381", "from_user_name": "Tony Elovitz", "geo": null, "id": 148833057988816900, "id_str": "148833057988816896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1630332106/IMG_0628-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630332106/IMG_0628-2_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/IbSZLWrW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:21 +0000", "from_user": "teepark", "from_user_id": 16162656, "from_user_id_str": "16162656", "from_user_name": "teepark", "geo": null, "id": 148831299887566850, "id_str": "148831299887566849", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/111961453/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/111961453/profile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/PlygM3ui http://t.co/eZJhe1TQ man, must be a rough morning for @hipsterhacker", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:14 +0000", "from_user": "solbajoelmar", "from_user_id": 190465644, "from_user_id_str": "190465644", "from_user_name": "Pablo L H", "geo": null, "id": 148831269944426500, "id_str": "148831269944426497", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1437683420/a1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1437683420/a1_normal.jpg", "source": "<a href="http://news.ycombinator.com/" rel="nofollow">Hacker News Bot</a>", "text": "RT @hackernewsbot: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS)... http://t.co/C5vM00Bt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:30 +0000", "from_user": "AndrewFairbairn", "from_user_id": 17536784, "from_user_id_str": "17536784", "from_user_name": "Andrew Fairbairn", "geo": null, "id": 148831085516701700, "id_str": "148831085516701696", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1585350517/Refwah-360-Avatar-100x100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585350517/Refwah-360-Avatar-100x100_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @iamtef: hahahahaha http://t.co/MSWqJTAl hahahahahhahahahahahahhaha javascript hahahahaha node.js", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:08 +0000", "from_user": "dbaishya", "from_user_id": 11195222, "from_user_id_str": "11195222", "from_user_name": "Dhruba Baishya", "geo": null, "id": 148829484550852600, "id_str": "148829484550852609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1592018100/dbaishya_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592018100/dbaishya_normal.jpeg", "source": "<a href="http://www.alphonsolabs.com/" rel="nofollow">Pulse News</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) (41 points) http://t.co/whsjIb4x", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:30 +0000", "from_user": "jldavid", "from_user_id": 3415861, "from_user_id_str": "3415861", "from_user_name": "Jean-Luc David", "geo": null, "id": 148829322579427330, "id_str": "148829322579427329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1642295283/jld_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642295283/jld_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @ceben: RT @newsycombinator: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/a6TtvCjP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:11 +0000", "from_user": "ceben", "from_user_id": 14497983, "from_user_id_str": "14497983", "from_user_name": "Chris Eben", "geo": null, "id": 148829241763569660, "id_str": "148829241763569664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/317046498/photo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/317046498/photo_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @newsycombinator: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/a6TtvCjP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:46 +0000", "from_user": "Infobright", "from_user_id": 16202088, "from_user_id_str": "16202088", "from_user_name": "Infobright", "geo": null, "id": 148828634906505200, "id_str": "148828634906505217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/349754703/infobright_twitterlogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/349754703/infobright_twitterlogo_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Holiday present to yourself: Education on Row vs Column vs NoSQL. Register: http://t.co/RI6ClWxN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:13 +0000", "from_user": "Infobright", "from_user_id": 16202088, "from_user_id_str": "16202088", "from_user_name": "Infobright", "geo": null, "id": 148827741062578180, "id_str": "148827741062578176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/349754703/infobright_twitterlogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/349754703/infobright_twitterlogo_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Here's a great holiday present to yourself: Education on Rom, Column, NoSQL databases http://t.co/aVWhhdcK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:14 +0000", "from_user": "korchev", "from_user_id": 39838996, "from_user_id_str": "39838996", "from_user_name": "Atanas Korchev", "geo": null, "id": 148827493296652300, "id_str": "148827493296652288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1217972345/61784_443669071660_675096660_5116571_2047293_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1217972345/61784_443669071660_675096660_5116571_2047293_n_normal.jpg", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/jZHhmPce", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:55 +0000", "from_user": "Infobright", "from_user_id": 16202088, "from_user_id_str": "16202088", "from_user_name": "Infobright", "geo": null, "id": 148827417165828100, "id_str": "148827417165828096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/349754703/infobright_twitterlogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/349754703/infobright_twitterlogo_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Row vs Column vs NoSQL: Sign up for the webinar http://t.co/jOENPIM1 #bigdata #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:55 +0000", "from_user": "manolovn", "from_user_id": 256645312, "from_user_id_str": "256645312", "from_user_name": "Manolo Vera", "geo": null, "id": 148826662153363460, "id_str": "148826662153363456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1252599174/fCTBHKm5_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1252599174/fCTBHKm5_normal", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL Databases and Security \\u2022 myNoSQL: http://t.co/nmARlWcv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:48 +0000", "from_user": "alespinoza", "from_user_id": 23696089, "from_user_id_str": "23696089", "from_user_name": "Alejandro Espinoza", "geo": null, "id": 148825372484583420, "id_str": "148825372484583424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1634815135/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634815135/image_normal.jpg", "source": "<a href="http://www.nibirutech.com/mobilerss-google-reader-iphone.html" rel="nofollow">MobileRSS</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) \\u2022 http://t.co/Wbu35kjL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:30 +0000", "from_user": "s_kunk", "from_user_id": 34025095, "from_user_id_str": "34025095", "from_user_name": "(\\u25E3(\\u25E3_(\\u25E3_\\u25E2)_\\u25E2)\\u25E2)", "geo": null, "id": 148825295506518000, "id_str": "148825295506518016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1402683690/isee_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1402683690/isee_normal.png", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/jZHhmPce", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:07 +0000", "from_user": "hkokko", "from_user_id": 24726686, "from_user_id_str": "24726686", "from_user_name": "Hannu Kokko", "geo": null, "id": 148824696245338100, "id_str": "148824696245338112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/100266288/hannu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/100266288/hannu_normal.jpg", "source": "<a href="http://stone.com/Twittelator" rel="nofollow">Twittelator</a>", "text": "RT @newsycombinator Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/je1x3522", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:37 +0000", "from_user": "JsonCulverhouse", "from_user_id": 46495292, "from_user_id_str": "46495292", "from_user_name": "Jason Culverhouse", "geo": null, "id": 148824569489268740, "id_str": "148824569489268737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1572968933/Adium_Icon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572968933/Adium_Icon_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) \\u2022 myNoSQL: http://t.co/a75Z7xVR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:44 +0000", "from_user": "frlinux", "from_user_id": 75149327, "from_user_id_str": "75149327", "from_user_name": "Fr Linux", "geo": null, "id": 148824098791890940, "id_str": "148824098791890945", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/422364215/deadtux_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/422364215/deadtux_normal.png", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/jZHhmPce", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:53:41 +0000", "from_user": "ronnykaram", "from_user_id": 18973882, "from_user_id_str": "18973882", "from_user_name": "Ronny Karam", "geo": null, "id": 148823331326533630, "id_str": "148823331326533632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1319841722/rkase-logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1319841722/rkase-logo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/LHpUBrHh @leviathan", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:29 +0000", "from_user": "megamda", "from_user_id": 19755562, "from_user_id_str": "19755562", "from_user_name": "Kumar Palaniappan", "geo": null, "id": 148823029705744400, "id_str": "148823029705744386", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627876492/kumar_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627876492/kumar_normal.jpeg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Meeting folks over lunch to talk about DATA #cloud #nosql #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:20 +0000", "from_user": "tanyaoziel", "from_user_id": 169636172, "from_user_id_str": "169636172", "from_user_name": "Tanya Oziel", "geo": null, "id": 148822988320546800, "id_str": "148822988320546816", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1083857154/Professional_photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1083857154/Professional_photo_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "NoSQL Engineer / DBA http://t.co/34rcJSYP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:56 +0000", "from_user": "yoinkz", "from_user_id": 36439899, "from_user_id_str": "36439899", "from_user_name": "ed ooi", "geo": null, "id": 148822388237275140, "id_str": "148822388237275136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/239433695/Image006_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/239433695/Image006_normal.jpg", "source": "<a href="http://news.ycombinator.com/" rel="nofollow">Hacker News Bot</a>", "text": "RT @hackernewsbot: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS)... http://t.co/C5vM00Bt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:24 +0000", "from_user": "webdesignStatio", "from_user_id": 115815649, "from_user_id_str": "115815649", "from_user_name": "webdesignStatio", "geo": null, "id": 148821243276165120, "id_str": "148821243276165121", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1280965646/icon_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1280965646/icon_normal.gif", "source": "<a href="http://statio.ohbatch.net/" rel="nofollow">webdesignStatio bot</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) \\u2022 myNoSQL Jeff Darcy has written a while back... http://t.co/rphHFsjY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:18 +0000", "from_user": "mynosql_popescu", "from_user_id": 197901055, "from_user_id_str": "197901055", "from_user_name": "myNoSQL", "geo": null, "id": 148821218638835700, "id_str": "148821218638835712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "MongoDB in Numbers: Foursquare, Wordnik, Disney: MongoDB in Numbers: Foursquare, Wordnik, Disney: Derrick Harris... http://t.co/2EWZV2lm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:48 +0000", "from_user": "corund", "from_user_id": 23738856, "from_user_id_str": "23738856", "from_user_name": "Jin Kim", "geo": null, "id": 148821094705541120, "id_str": "148821094705541120", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1421578742/quigon_jinn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1421578742/quigon_jinn_normal.jpg", "source": "<a href="http://www.nibirutech.com/mobilerss-google-reader-iphone.html" rel="nofollow">MobileRSS</a>", "text": "\\uC11C\\uBC84\\uCABD \\uC790\\uBC14\\uC2A4\\uD06C\\uB9BD\\uD2B8 \\uACF5\\uACA9 \\uAC00\\uB2A5\\uC131? Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/m82K4Iz3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:20 +0000", "from_user": "WebGeekPH", "from_user_id": 40914569, "from_user_id_str": "40914569", "from_user_name": "WebGeek Philippines", "geo": null, "id": 148820471654268930, "id_str": "148820471654268929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1266820555/webgeekph-logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266820555/webgeekph-logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Interesting read: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS)... http://t.co/wpWmQ7YV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:36:24 +0000", "from_user": "vgholkar", "from_user_id": 14203002, "from_user_id_str": "14203002", "from_user_name": "Vidhya Gholkar", "geo": null, "id": 148818980134588400, "id_str": "148818980134588416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1326321528/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1326321528/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @devongovett: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) \\u2022 myNoSQL: http://t.co/ShkzZHP5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:07 +0000", "from_user": "functionsource", "from_user_id": 279275657, "from_user_id_str": "279275657", "from_user_name": "FunctionSource", "geo": null, "id": 148817901883895800, "id_str": "148817901883895808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1306206357/Screen_shot_2011-03-31_at_Mar_31___11.15.50_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1306206357/Screen_shot_2011-03-31_at_Mar_31___11.15.50_AM_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @devongovett: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) \\u2022 myNoSQL: http://t.co/ShkzZHP5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:05 +0000", "from_user": "xpqz", "from_user_id": 17704355, "from_user_id_str": "17704355", "from_user_name": "Stefan Kruger", "geo": null, "id": 148817641186918400, "id_str": "148817641186918400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/81965212/stef_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/81965212/stef_normal.jpg", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/jZHhmPce", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:12 +0000", "from_user": "pageman", "from_user_id": 20503, "from_user_id_str": "20503", "from_user_name": "The Pageman", "geo": null, "id": 148817418913988600, "id_str": "148817418913988608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1284515509/168777_1556829198391_1165064203_31306760_1441759_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1284515509/168777_1556829198391_1165064203_31306760_1441759_n_normal.jpg", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/jZHhmPce", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:00 +0000", "from_user": "soaj1664ashar", "from_user_id": 277735240, "from_user_id_str": "277735240", "from_user_name": "Ashar Javed", "geo": null, "id": 148817368364220400, "id_str": "148817368364220416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1301332153/ashar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1301332153/ashar_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @johnwilander: Server-side JavaScript injection: Attacking #nosql and #nodejs (pdf from BH 2011) https://t.co/9FCnbLpg via @shreeraj & @hackernewsbot", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:28:32 +0000", "from_user": "reneneee", "from_user_id": 168447758, "from_user_id_str": "168447758", "from_user_name": "ren\\u00E9 neee", "geo": null, "id": 148816998820876300, "id_str": "148816998820876288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1082355196/27372_100000460088715_4822_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1082355196/27372_100000460088715_4822_q_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @joedevon: Blog post: http://t.co/9ONGiDXb You thought SQL injection was bad? Schema injection coming to a NoSQL site near you. #php #mongodb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:28:08 +0000", "from_user": "johnwilander", "from_user_id": 57622045, "from_user_id_str": "57622045", "from_user_name": "John Wilander", "geo": null, "id": 148816900594479100, "id_str": "148816900594479104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/341321376/john_sjunger_715_beskuren_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/341321376/john_sjunger_715_beskuren_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Server-side JavaScript injection: Attacking #nosql and #nodejs (pdf from BH 2011) https://t.co/9FCnbLpg via @shreeraj & @hackernewsbot", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:27:59 +0000", "from_user": "MaesSven", "from_user_id": 250230912, "from_user_id_str": "250230912", "from_user_name": "Sven Maes", "geo": null, "id": 148816861553893380, "id_str": "148816861553893377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1269051091/188270_10150132298004433_720189432_6183636_1414228_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1269051091/188270_10150132298004433_720189432_6183636_1414228_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#nosql #db seems promising, but needs a standard..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:27:37 +0000", "from_user": "houcemberrayana", "from_user_id": 18717488, "from_user_id_str": "18717488", "from_user_name": "Houcem Berrayana", "geo": null, "id": 148816768113188860, "id_str": "148816768113188865", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534490937/houcem_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534490937/houcem_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "I received an invitation to schedule a call with @couchdb engineers in order to discuss about #couchDB use cases #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:24:29 +0000", "from_user": "syhunt", "from_user_id": 12798532, "from_user_id_str": "12798532", "from_user_name": "Syhunt", "geo": null, "id": 148815979697274880, "id_str": "148815979697274880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1126720714/sandcat_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1126720714/sandcat_twitter_normal.png", "source": "<a href="http://splitweet.com" rel="nofollow">Splitweet</a>", "text": "Sandcat Pro 4.2.8 Released. First version with NoSQL & Server-Side JavaScript Injection checks", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:21:56 +0000", "from_user": "mehmetkut", "from_user_id": 151001357, "from_user_id_str": "151001357", "from_user_name": "mehmetkut", "geo": null, "id": 148815341626212350, "id_str": "148815341626212352", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1587870158/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587870158/avatar_normal.jpg", "source": "<a href="http://trillian.im/" rel="nofollow">Trillian</a>", "text": "CV b\\u00F6yle yaz\\u0131l\\u0131r... http://t.co/Wb8J16yi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:21:42 +0000", "from_user": "schestowitz", "from_user_id": 26603208, "from_user_id_str": "26603208", "from_user_name": "Schestowitz", "geo": null, "id": 148815281718960130, "id_str": "148815281718960129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1302257133/40262-198-20110406184844_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1302257133/40262-198-20110406184844_normal.jpeg", "source": "<a href="http://identi.ca" rel="nofollow">identica</a>", "text": "#Grails 2.0 with more cloud support and NoSQL connectivity http://t.co/ORbY89ud #db", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:21:21 +0000", "from_user": "dennycd", "from_user_id": 65432805, "from_user_id_str": "65432805", "from_user_name": "Denny C. D.", "geo": null, "id": 148815194632626180, "id_str": "148815194632626177", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1412030733/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1412030733/image_normal.jpg", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/jZHhmPce", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:21:20 +0000", "from_user": "AntoRimba", "from_user_id": 77787161, "from_user_id_str": "77787161", "from_user_name": "Antony Rimba", "geo": null, "id": 148815190216028160, "id_str": "148815190216028161", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674882568/Image0195a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674882568/Image0195a_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Very stupid, unafaa kuchapwa @samkariu: A NoSQL database walks into a bar,but leaves immediately because he can't find any tables #getalife", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:20:40 +0000", "from_user": "trevormcleod", "from_user_id": 14501518, "from_user_id_str": "14501518", "from_user_name": "Trevor McLeod", "geo": null, "id": 148815019176505340, "id_str": "148815019176505344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1464968161/Trevor_Profile_2_a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1464968161/Trevor_Profile_2_a_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@michaelmuse just FYI - http://t.co/IMGY5Ime", "to_user": "michaelmuse", "to_user_id": 14129087, "to_user_id_str": "14129087", "to_user_name": "Michael Muse"}, +{"created_at": "Mon, 19 Dec 2011 17:20:33 +0000", "from_user": "kaniartur", "from_user_id": 150333665, "from_user_id_str": "150333665", "from_user_name": "Artur Kania", "geo": null, "id": 148814993381531650, "id_str": "148814993381531650", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1395318915/adCrB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1395318915/adCrB_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @devongovett: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) \\u2022 myNoSQL: http://t.co/ShkzZHP5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:20:10 +0000", "from_user": "th0ma5", "from_user_id": 15506652, "from_user_id_str": "15506652", "from_user_name": "Thomas Winningham", "geo": null, "id": 148814896337928200, "id_str": "148814896337928192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1544731417/self_sept_2011_smaller_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544731417/self_sept_2011_smaller_normal.png", "source": "<a href="http://news.ycombinator.com/" rel="nofollow">Hacker News Bot</a>", "text": "RT @hackernewsbot: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS)... http://t.co/C5vM00Bt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:20:02 +0000", "from_user": "Pelshoff", "from_user_id": 347963273, "from_user_id_str": "347963273", "from_user_name": "Pim Elshoff", "geo": null, "id": 148814862414389250, "id_str": "148814862414389249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1476217527/IMG_0853_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1476217527/IMG_0853_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @joedevon: Blog post: http://t.co/9ONGiDXb You thought SQL injection was bad? Schema injection coming to a NoSQL site near you. #php #mongodb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:18:28 +0000", "from_user": "j_ham3", "from_user_id": 23580248, "from_user_id_str": "23580248", "from_user_name": "James Hamilton", "geo": null, "id": 148814465310265340, "id_str": "148814465310265345", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/723361847/DSCN2202_c_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/723361847/DSCN2202_c_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ideoforms: the next generation of database injection queries is looking pretty terrifying. remain vigilant. http://t.co/cgZ1lik1 (via @iamtef)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:18:19 +0000", "from_user": "TheDeathsMaster", "from_user_id": 109958262, "from_user_id_str": "109958262", "from_user_name": "Samuel A. D\\u00E1vila I. ", "geo": null, "id": 148814429281194000, "id_str": "148814429281193984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1234346595/South_Park_Avatar_Wallpaper1280x960_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1234346595/South_Park_Avatar_Wallpaper1280x960_normal.png", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "MongoDB in Numbers: Foursquare, Wordnik, Disney - nosql: http://t.co/s5dJWOkv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:15:16 +0000", "from_user": "Xogost", "from_user_id": 126010186, "from_user_id_str": "126010186", "from_user_name": "Juan Camilo Martinez", "geo": null, "id": 148813659920015360, "id_str": "148813659920015361", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699288836/akane_y_yop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699288836/akane_y_yop_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @davidtoca: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/Zjhlz4Qr cc @DragonJAR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:14:57 +0000", "from_user": "mitchellhislop", "from_user_id": 15315808, "from_user_id_str": "15315808", "from_user_name": "Mitchell Hislop", "geo": null, "id": 148813583273295870, "id_str": "148813583273295872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1597979061/mitch_new_profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1597979061/mitch_new_profile_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @devongovett: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) \\u2022 myNoSQL: http://t.co/ShkzZHP5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:14:45 +0000", "from_user": "llun", "from_user_id": 12981882, "from_user_id_str": "12981882", "from_user_name": "llun:/n\\u00E6t/ not /l\\u028An/", "geo": null, "id": 148813530110492670, "id_str": "148813530110492672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1607061202/222354_10150168776961707_696331706_7129266_1795075_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607061202/222354_10150168776961707_696331706_7129266_1795075_n_normal.jpg", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/jZHhmPce", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:13:21 +0000", "from_user": "ripienaar", "from_user_id": 46250388, "from_user_id_str": "46250388", "from_user_name": "ripienaar", "geo": null, "id": 148813181240868860, "id_str": "148813181240868865", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/257864204/ducks_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/257864204/ducks_normal.png", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/jZHhmPce", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:13:14 +0000", "from_user": "lluccipha", "from_user_id": 103246788, "from_user_id_str": "103246788", "from_user_name": "lluccipha", "geo": null, "id": 148813149112516600, "id_str": "148813149112516610", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697708417/BYbrkMru_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697708417/BYbrkMru_normal", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "newsycombinator: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/23Zn8BjW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:12:30 +0000", "from_user": "tautvidas", "from_user_id": 53696221, "from_user_id_str": "53696221", "from_user_name": "Tautvidas Sipavi\\u010Dius", "geo": null, "id": 148812964504403970, "id_str": "148812964504403968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1494819107/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1494819107/me_normal.jpg", "source": "<a href="http://news.ycombinator.com/" rel="nofollow">Hacker News Bot</a>", "text": "RT @hackernewsbot: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS)... http://t.co/C5vM00Bt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:11:55 +0000", "from_user": "taverneiro", "from_user_id": 17220027, "from_user_id_str": "17220027", "from_user_name": "Michael", "geo": null, "id": 148812820576866300, "id_str": "148812820576866304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1597868944/avatar_deitado_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1597868944/avatar_deitado_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @newsycombinator: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/nnFQ6QNB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:10:50 +0000", "from_user": "dcaliri", "from_user_id": 17303143, "from_user_id_str": "17303143", "from_user_name": "Diego Caliri", "geo": null, "id": 148812546328113150, "id_str": "148812546328113153", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694661227/Screen_shot_2011-12-15_at_11.06.22_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694661227/Screen_shot_2011-12-15_at_11.06.22_AM_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "http://t.co/JJzFl3mz <-- ServerSide Javascript injection", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:07:58 +0000", "from_user": "davidtoca", "from_user_id": 65556624, "from_user_id_str": "65556624", "from_user_name": "David Toca", "geo": null, "id": 148811825331437570, "id_str": "148811825331437568", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1655876314/zelda_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655876314/zelda_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/Zjhlz4Qr cc @DragonJAR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:07:42 +0000", "from_user": "quard", "from_user_id": 8421902, "from_user_id_str": "8421902", "from_user_name": "Irek Khasyanov", "geo": null, "id": 148811756964286460, "id_str": "148811756964286466", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/907939174/x_00c1a954_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/907939174/x_00c1a954_normal.jpg", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/jZHhmPce", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:07:21 +0000", "from_user": "favstar_pop", "from_user_id": 217046870, "from_user_id_str": "217046870", "from_user_name": "Favstar Pop", "geo": null, "id": 148811670570012670, "id_str": "148811670570012674", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1170017104/twitterAvatarWithHat_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1170017104/twitterAvatarWithHat_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @joedevon: Blog post: http://t.co/9ONGiDXb You thought SQL injection was bad? Schema injection coming to a NoSQL site near you. #php #mongodb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:07:17 +0000", "from_user": "TopDevTweets", "from_user_id": 194520782, "from_user_id_str": "194520782", "from_user_name": "TopDevTweets", "geo": null, "id": 148811652819726340, "id_str": "148811652819726337", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @joedevon: Blog post: http://t.co/9ONGiDXb You thought SQL injection was bad? Schema injection coming to a NoSQL site near you. #php #mongodb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:06:22 +0000", "from_user": "jinnli", "from_user_id": 18330621, "from_user_id_str": "18330621", "from_user_name": "\\u01C7", "geo": null, "id": 148811420337848320, "id_str": "148811420337848320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1579601171/_______normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1579601171/_______normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/uJmuONE8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:05:05 +0000", "from_user": "ajfeed", "from_user_id": 260762269, "from_user_id_str": "260762269", "from_user_name": "Ajinkya Feed", "geo": null, "id": 148811100203397120, "id_str": "148811100203397120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "CompSci How to Run a MapReduce Job Against Common Crawl Data Using Amazon Elastic MapReduce: How to Run a MapRed... http://t.co/0SkxXsxI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:05:04 +0000", "from_user": "newsycombinator", "from_user_id": 14335498, "from_user_id_str": "14335498", "from_user_name": "news.yc Popular", "geo": null, "id": 148811094432034800, "id_str": "148811094432034816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/52589204/y_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/52589204/y_normal.png", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/jZHhmPce", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:03:56 +0000", "from_user": "mynosql_popescu", "from_user_id": 197901055, "from_user_id_str": "197901055", "from_user_name": "myNoSQL", "geo": null, "id": 148810811576549380, "id_str": "148810811576549377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "How to Run a MapReduce Job Against Common Crawl Data Using Amazon Elastic MapReduce: How to Run a MapReduce Job ... http://t.co/ebzHJbHV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:01:55 +0000", "from_user": "securityshell", "from_user_id": 43130563, "from_user_id_str": "43130563", "from_user_name": "d3v1l", "geo": null, "id": 148810301180084220, "id_str": "148810301180084224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1365830043/lol_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1365830043/lol_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @shreeraj Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS)... http://t.co/v8PfvGcP", "to_user": "shreeraj", "to_user_id": 15262068, "to_user_id_str": "15262068", "to_user_name": "shreeraj", "in_reply_to_status_id": 148808388472614900, "in_reply_to_status_id_str": "148808388472614912"}, +{"created_at": "Mon, 19 Dec 2011 17:01:52 +0000", "from_user": "carnotweat", "from_user_id": 225349488, "from_user_id_str": "225349488", "from_user_name": "sameer", "geo": null, "id": 148810289914200060, "id_str": "148810289914200065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1317089589/sg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317089589/sg_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/jnBkcHbb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:01:05 +0000", "from_user": "gabordemooij", "from_user_id": 43424305, "from_user_id_str": "43424305", "from_user_name": "Gabor", "geo": null, "id": 148810092773507070, "id_str": "148810092773507072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1633357620/4940_gabordemooij120_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633357620/4940_gabordemooij120_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @joedevon: Blog post: http://t.co/9ONGiDXb You thought SQL injection was bad? Schema injection coming to a NoSQL site near you. #php #mongodb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:00:37 +0000", "from_user": "zaiste", "from_user_id": 112849341, "from_user_id_str": "112849341", "from_user_name": "Zaiste!", "geo": null, "id": 148809976830378000, "id_str": "148809976830377984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1138873870/haut-de-forme_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1138873870/haut-de-forme_normal", "source": "<a href="http://itunes.apple.com/us/app/google-currents/id459182288?mt=8&uo=4" rel="nofollow">Google Currents on iOS</a>", "text": "GigaOM: NoSQL\\u2019s great, but bring your A game #cloud http://t.co/2GbVb3k1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:00:31 +0000", "from_user": "keniobats", "from_user_id": 140622262, "from_user_id_str": "140622262", "from_user_name": "Luciano Laporta ", "geo": null, "id": 148809951530319870, "id_str": "148809951530319872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1220950000/_DSC0517mod_resize_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1220950000/_DSC0517mod_resize_normal.jpg", "source": "<a href="http://news.ycombinator.com/" rel="nofollow">Hacker News Bot</a>", "text": "RT @hackernewsbot: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS)... http://t.co/C5vM00Bt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:00:24 +0000", "from_user": "lastknight", "from_user_id": 5464132, "from_user_id_str": "5464132", "from_user_name": "Matteo G.P. Flora", "geo": null, "id": 148809920404389900, "id_str": "148809920404389890", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1255914387/70448_502992052_537370_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1255914387/70448_502992052_537370_q_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "Cassandra, Zookeeper, Scribe, and Node.js Powering Rackspace Cloud Monitoring http://t.co/RPIgqA4Q", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:00:05 +0000", "from_user": "ideoforms", "from_user_id": 70773071, "from_user_id_str": "70773071", "from_user_name": "Daniel Jones", "geo": null, "id": 148809839122989060, "id_str": "148809839122989056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1218157896/entanglement-engine-avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218157896/entanglement-engine-avatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "the next generation of database injection queries is looking pretty terrifying. remain vigilant. http://t.co/cgZ1lik1 (via @iamtef)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:58:02 +0000", "from_user": "mattnowina", "from_user_id": 103869545, "from_user_id_str": "103869545", "from_user_name": "Matt Nowina", "geo": null, "id": 148809327153651700, "id_str": "148809327153651713", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1310193735/eightbit-9aa6f9af-a52d-4215-97f5-8ae5720906f1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1310193735/eightbit-9aa6f9af-a52d-4215-97f5-8ae5720906f1_normal.png", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "Neo4j and Spring Data for Configuration Management Database http://t.co/xhv5Gbep", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:56:59 +0000", "from_user": "alexboool", "from_user_id": 278443670, "from_user_id_str": "278443670", "from_user_name": "\\u0410\\u043B\\u0435\\u043A\\u0441\\u0430\\u043D\\u0434\\u0440 \\u0411\\u0443\\u043B\\u0430\\u0435\\u0432", "geo": null, "id": 148809060970536960, "id_str": "148809060970536960", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1536720708/z_18fe42a6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1536720708/z_18fe42a6_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Oracle \\u0432\\u0442\\u043E\\u0440\\u0433\\u0430\\u0435\\u0442\\u0441\\u044F \\u0432 \\u043C\\u0438\\u0440 #nosql http://t.co/qpVojWKC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:55:48 +0000", "from_user": "darkaico", "from_user_id": 21335960, "from_user_id_str": "21335960", "from_user_name": "Ariel Parra", "geo": null, "id": 148808764097695740, "id_str": "148808764097695745", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1089286508/e5438a0b-e39b-49d4-833f-d4b300ea6412_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1089286508/e5438a0b-e39b-49d4-833f-d4b300ea6412_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\\u00D1o\\u00F1ada de tarde http://t.co/D95qYDvz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:54:19 +0000", "from_user": "shreeraj", "from_user_id": 15262068, "from_user_id_str": "15262068", "from_user_name": "shreeraj", "geo": null, "id": 148808388472614900, "id_str": "148808388472614912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/79667965/shreeraj_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/79667965/shreeraj_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "RT @hackernewsbot: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS)... http://t.co/XMhylWKO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:53:22 +0000", "from_user": "iamtef", "from_user_id": 16681276, "from_user_id_str": "16681276", "from_user_name": "tef", "geo": null, "id": 148808151637037060, "id_str": "148808151637037057", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1567081510/325091_10150472042699546_506839545_11311187_1589281020_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1567081510/325091_10150472042699546_506839545_11311187_1589281020_o_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "hahahahaha http://t.co/MSWqJTAl hahahahahhahahahahahahhaha javascript hahahahaha node.js", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:53:17 +0000", "from_user": "jonriegel", "from_user_id": 19077601, "from_user_id_str": "19077601", "from_user_name": "Jon Riegel", "geo": null, "id": 148808128719355900, "id_str": "148808128719355905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/661431480/tongues2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/661431480/tongues2_normal.jpg", "source": "<a href="http://news.ycombinator.com/" rel="nofollow">Hacker News Bot</a>", "text": "RT @hackernewsbot: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS)... http://t.co/C5vM00Bt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:52:19 +0000", "from_user": "danmactough", "from_user_id": 1295411, "from_user_id_str": "1295411", "from_user_name": "Dan MacTough", "geo": null, "id": 148807885760102400, "id_str": "148807885760102400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/63375033/BenPullingDansHair128x128_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/63375033/BenPullingDansHair128x128_normal.png", "source": "<a href="http://scripting.com/stories/2011/03/26/aFractionalHorsepowerTwitt.html" rel="nofollow">Blork</a>", "text": "Panic! \"Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS).\" http://t.co/bNkf8hyE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:52:14 +0000", "from_user": "ccrsp", "from_user_id": 55604647, "from_user_id_str": "55604647", "from_user_name": "Rob", "geo": null, "id": 148807864062980100, "id_str": "148807864062980096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/307215336/kitteh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/307215336/kitteh_normal.jpg", "source": "<a href="http://news.ycombinator.com/" rel="nofollow">Hacker News Bot</a>", "text": "RT @hackernewsbot: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS)... http://t.co/C5vM00Bt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:51:13 +0000", "from_user": "Dj3bbZ", "from_user_id": 245791885, "from_user_id_str": "245791885", "from_user_name": "Khalid Jebbari", "geo": null, "id": 148807608386592770, "id_str": "148807608386592768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1341164960/photo_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1341164960/photo_normal.jpeg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @joedevon: Blog post: http://t.co/9ONGiDXb You thought SQL injection was bad? Schema injection coming to a NoSQL site near you. #php #mongodb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:49:30 +0000", "from_user": "pjbryant", "from_user_id": 20326673, "from_user_id_str": "20326673", "from_user_name": "P J Bryant", "geo": null, "id": 148807178927611900, "id_str": "148807178927611905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1642202640/munch_scream_head_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642202640/munch_scream_head_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @joedevon: Blog post: http://t.co/9ONGiDXb You thought SQL injection was bad? Schema injection coming to a NoSQL site near you. #php #mongodb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:48:54 +0000", "from_user": "vivekiyer87", "from_user_id": 31167749, "from_user_id_str": "31167749", "from_user_name": "Vivek Iyer", "geo": null, "id": 148807026754060300, "id_str": "148807026754060289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1348351107/209074_2044573999761_1406721034_2519048_1894810_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1348351107/209074_2044573999761_1406721034_2519048_1894810_o_normal.jpg", "source": "<a href="http://www.alphonsolabs.com/" rel="nofollow">Pulse News</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/8uHzqLPK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:48:42 +0000", "from_user": "mwessendorf", "from_user_id": 12287422, "from_user_id_str": "12287422", "from_user_name": "Matthias Wessendorf", "geo": null, "id": 148806977466806270, "id_str": "148806977466806272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1644899733/mw80s_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644899733/mw80s_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @al3xandru: On HackerNews: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/9nvIDy2m", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:45:39 +0000", "from_user": "RobTerp", "from_user_id": 314036289, "from_user_id_str": "314036289", "from_user_name": "Rob Terpilowski", "geo": null, "id": 148806208537624580, "id_str": "148806208537624577", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691239266/profileImage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691239266/profileImage_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Graph databases for #java developers. http://t.co/bDIJg8J9 #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:45:14 +0000", "from_user": "HatF2", "from_user_id": 265550190, "from_user_id_str": "265550190", "from_user_name": "HatF2", "geo": null, "id": 148806104657309700, "id_str": "148806104657309696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1271379428/hatf2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1271379428/hatf2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "New SOLR-powered TF2 item search at http://t.co/E8fHfDhq. Indexing over 1M items. Now with Craftability & Drop info. Say #NoSQL to #MySQL!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:42:03 +0000", "from_user": "hackernewsbot", "from_user_id": 19575586, "from_user_id_str": "19575586", "from_user_name": "Hacker News Bot", "geo": null, "id": 148805302526029820, "id_str": "148805302526029824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/73596050/yc500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/73596050/yc500_normal.jpg", "source": "<a href="http://news.ycombinator.com/" rel="nofollow">Hacker News Bot</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS)... http://t.co/C5vM00Bt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:41:31 +0000", "from_user": "matkeep", "from_user_id": 41140242, "from_user_id_str": "41140242", "from_user_name": "Mat Keep", "geo": null, "id": 148805168077615100, "id_str": "148805168077615104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/258637219/mat_photo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/258637219/mat_photo_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Interesting take on risk of schema injection on NoSQL-hosted web properties: http://t.co/dyGGKOYN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:39:59 +0000", "from_user": "masayh", "from_user_id": 83385970, "from_user_id_str": "83385970", "from_user_name": "Masayoshi Hagiwara", "geo": null, "id": 148804782897905660, "id_str": "148804782897905664", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/478025875/DSC_0079_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/478025875/DSC_0079_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u3067\\u30C8\\u30E9\\u30F3\\u30B6\\u30AF\\u30B7\\u30E7\\u30F3\\u30B9\\u30B3\\u30FC\\u30D7\\u3092\\u554F\\u984C\\u306B\\u3057\\u305F\\u30B9\\u30B1\\u30FC\\u30E9\\u30D3\\u30EA\\u30C6\\u30A3\\u306E\\u8B70\\u8AD6\\u304C\\u3042\\u308B\\u3051\\u308C\\u3069\\u3001\\u305D\\u308C\\u3088\\u308A\\u540C\\u6642\\u6027\\u5236\\u5FA1\\u306B\\u3088\\u308B\\u5F71\\u97FF\\u306E\\u65B9\\u304C\\u5927\\u304D\\u3044\\u3088\\u3002\\u540C\\u6642\\u6027\\u5236\\u5FA1\\u306F\\u307E\\u3058\\u3081\\u306B\\u8003\\u3048\\u305F\\u65B9\\u304C\\u3044\\u3044\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 16:37:35 +0000", "from_user": "PaulLomax", "from_user_id": 790734, "from_user_id_str": "790734", "from_user_name": "Paul Lomax", "geo": null, "id": 148804179303989250, "id_str": "148804179303989248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/825445648/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/825445648/twitterProfilePhoto_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @joedevon: Blog post: http://t.co/9ONGiDXb You thought SQL injection was bad? Schema injection coming to a NoSQL site near you. #php #mongodb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:36:31 +0000", "from_user": "Crell", "from_user_id": 21524871, "from_user_id_str": "21524871", "from_user_name": "Larry Garfield", "geo": null, "id": 148803909484429300, "id_str": "148803909484429312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @joedevon: Blog post: http://t.co/9ONGiDXb You thought SQL injection was bad? Schema injection coming to a NoSQL site near you. #php #mongodb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:33:57 +0000", "from_user": "tkdysk", "from_user_id": 81067870, "from_user_id_str": "81067870", "from_user_name": "Yusuke Takada \\uFF08\\u9AD8\\u7530\\u7950\\u8F14\\uFF09", "geo": null, "id": 148803264056541200, "id_str": "148803264056541184", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1525108517/Groovyist_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1525108517/Groovyist_normal.png", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "\\u3010InfoQ: James Phillips \\u6C0F\\u304C\\u8A9E\\u308B\\u300C\\u30EA\\u30EC\\u30FC\\u30B7\\u30E7\\u30CA\\u30EB\\u304B\\u3089 NoSQL \\u3078\\u306E\\u30C7\\u30FC\\u30BF\\u30D9\\u30FC\\u30B9\\u79FB\\u884C\\u300D http://t.co/bjn06vdH \\u3011", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:33:34 +0000", "from_user": "ajfeed", "from_user_id": 260762269, "from_user_id_str": "260762269", "from_user_name": "Ajinkya Feed", "geo": null, "id": 148803168170549250, "id_str": "148803168170549248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "CompSci Data Modeling for Document Databases: An Auction and Bids System: Staying with data modeling, but moving... http://t.co/RvDPH8NL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:33:03 +0000", "from_user": "arnaudsj", "from_user_id": 13253662, "from_user_id_str": "13253662", "from_user_name": "S\\u00E9bastien", "geo": null, "id": 148803036867854340, "id_str": "148803036867854337", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1225003048/Sebastien_250x250_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225003048/Sebastien_250x250_normal.png", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "noSQL & Machine Learning: http://t.co/Sjuc2CW3 #ai #mongodb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:32:54 +0000", "from_user": "tw_top_1z15el0", "from_user_id": 323506027, "from_user_id_str": "323506027", "from_user_name": "Top scientwitters", "geo": null, "id": 148802999886675970, "id_str": "148802999886675969", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @joedevon: Blog post: http://t.co/9ONGiDXb You thought SQL injection was bad? Schema injection coming to a NoSQL site near you. #php #mongodb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:31:36 +0000", "from_user": "lsmith", "from_user_id": 22903583, "from_user_id_str": "22903583", "from_user_name": "Lukas Kahwe Smith", "geo": null, "id": 148802672152150000, "id_str": "148802672152150018", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/734253815/n644648272_5107_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/734253815/n644648272_5107_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @joedevon: Blog post: http://t.co/9ONGiDXb You thought SQL injection was bad? Schema injection coming to a NoSQL site near you. #php #mongodb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:30:51 +0000", "from_user": "datacharmer", "from_user_id": 14670504, "from_user_id_str": "14670504", "from_user_name": "Giuseppe Maxia", "geo": null, "id": 148802483853074430, "id_str": "148802483853074432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/605169078/datacharmer_A_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/605169078/datacharmer_A_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @joedevon: Blog post: http://t.co/9ONGiDXb You thought SQL injection was bad? Schema injection coming to a NoSQL site near you. #php #mongodb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:28:59 +0000", "from_user": "toricky6", "from_user_id": 176677628, "from_user_id_str": "176677628", "from_user_name": "toricky", "geo": null, "id": 148802016183992320, "id_str": "148802016183992320", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1317222411/20110419163337_toricky_V98PXCFMR1WSJ0E3YK5UIN6ODLQ7BTZHGA24_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317222411/20110419163337_toricky_V98PXCFMR1WSJ0E3YK5UIN6ODLQ7BTZHGA24_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @masayh: \\u30BD\\u30D5\\u30C8\\u30A6\\u30A7\\u30A2\\u6280\\u8853\\u8005\\u306E\\u5BFF\\u547D\\u306F\\u77ED\\u3044\\u306E\\u3060\\u304B\\u3089\\u3002\\u7121\\u99C4\\u306A\\u6280\\u8853\\u306B\\u6642\\u9593\\u3092\\u8CBB\\u3084\\u3059\\u3079\\u304D\\u3067\\u306F\\u306A\\u3044\\u3057\\u3001\\u904E\\u3061\\u3092\\u7E70\\u308A\\u8FD4\\u3059\\u3079\\u304D\\u3067\\u306F\\u306A\\u3044\\u3001null pointer\\u3092\\u8A31\\u3059\\u3001\\u7121\\u6761\\u4EF6\\u306A\\u540C\\u6642\\u6027\\u5236\\u5FA1\\u304C\\u5FC5\\u8981\\u306A\\u30DE\\u30EB\\u30C1\\u30B9\\u30EC\\u30C3\\u30C9\\u3001\\u30D7\\u30ED\\u30B0\\u30E9\\u30DF\\u30F3\\u30B0\\u30D1\\u30E9\\u30C0\\u30A4\\u30E0\\u306B\\u4F9D\\u5B58\\u3059\\u308B\\u30C7\\u30B6\\u30A4\\u30F3\\u30D1\\u30BF\\u30FC\\u30F3\\u3001\\u8AA4\\u3063\\u305FRDB\\u3084NoSQL\\u306E\\u5229\\u7528\\u6CD5\\u306A\\u3069\\u306A\\u3069\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:26:37 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148801416738250750, "id_str": "148801416738250752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @suren_h: Most interesting companies in the #Hadoop ecosystem: http://t.co/wOx2OQrb #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:24:49 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148800965032689660, "id_str": "148800965032689664", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @freshemployer1: http://t.co/7rUGweLC Java Engineer - Java, Map/Reduce, Spring, MySQL, Hadoop, NoSQL http://t.co/USBvWoPi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:24:00 +0000", "from_user": "javascriptalert", "from_user_id": 274501532, "from_user_id_str": "274501532", "from_user_name": "javascript", "geo": null, "id": 148800758668722180, "id_str": "148800758668722177", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1304350707/___normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1304350707/___normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) \\u2022 myNoSQL: http://t.co/UgogDvC8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:23:28 +0000", "from_user": "komlow", "from_user_id": 95929876, "from_user_id_str": "95929876", "from_user_name": "\\u8106\\u5F31\\u5148\\u8F29", "geo": null, "id": 148800625788989440, "id_str": "148800625788989440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1623137955/asgasdgqer_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1623137955/asgasdgqer_normal.png", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "\\u201CAttacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) \\u2022 myNoSQL\\u201D http://t.co/9Xn65DTk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:22:42 +0000", "from_user": "tuxtux", "from_user_id": 5663352, "from_user_id_str": "5663352", "from_user_name": "Joel Westerberg", "geo": null, "id": 148800431261368320, "id_str": "148800431261368320", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1268177999/Screen_shot_2011-03-10_at_22.29.06_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1268177999/Screen_shot_2011-03-10_at_22.29.06_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@hising helt klart http://t.co/x1p2livw man e ju inte target f\\u00F6r SSJS med ASP i bakfickan iaf.", "to_user": "hising", "to_user_id": 14235149, "to_user_id_str": "14235149", "to_user_name": "Mattias Hising", "in_reply_to_status_id": 148782699941871600, "in_reply_to_status_id_str": "148782699941871617"}, +{"created_at": "Mon, 19 Dec 2011 16:22:09 +0000", "from_user": "tim_krueger", "from_user_id": 147594253, "from_user_id_str": "147594253", "from_user_name": "Tim Kr\\u00FCger", "geo": null, "id": 148800295831482370, "id_str": "148800295831482368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1679444531/_DSC7606_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679444531/_DSC7606_2_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/newsblur/id463981119?mt=8&uo=4" rel="nofollow">NewsBlur on iOS</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/4XJeMhIz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:18:11 +0000", "from_user": "joedevon", "from_user_id": 21734113, "from_user_id_str": "21734113", "from_user_name": "Joe Devon \\u00AE", "geo": null, "id": 148799297838788600, "id_str": "148799297838788609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1225220068/joedevon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225220068/joedevon_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Blog post: http://t.co/9ONGiDXb You thought SQL injection was bad? Schema injection coming to a NoSQL site near you. #php #mongodb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:17:10 +0000", "from_user": "vameos", "from_user_id": 390068509, "from_user_id_str": "390068509", "from_user_name": "Tobias Weiss", "geo": null, "id": 148799039444488200, "id_str": "148799039444488193", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1586995581/greg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586995581/greg_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Gleich geht's weiter mit spaltenbasierten #DWH Systemen sowie #NoSQL als Zukunft des #Datawarehousing", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:16:10 +0000", "from_user": "TopDevTweets", "from_user_id": 194520782, "from_user_id_str": "194520782", "from_user_name": "TopDevTweets", "geo": null, "id": 148798788943888400, "id_str": "148798788943888384", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @emiliotorrens: Version de #MongoMapper para #dotNET _id es un long se puede definir como un un incremental (identity) http://t.co/fm6UwRR4 #NoSQL #MongoDB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:11:11 +0000", "from_user": "emiliotorrens", "from_user_id": 21764595, "from_user_id_str": "21764595", "from_user_name": "Emilio Torrens", "geo": null, "id": 148797536960917500, "id_str": "148797536960917505", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1628882941/PerfilTwitter_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628882941/PerfilTwitter_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Version de #MongoMapper para #dotNET _id es un long se puede definir como un un incremental (identity) http://t.co/fm6UwRR4 #NoSQL #MongoDB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:08:59 +0000", "from_user": "panaghia", "from_user_id": 62253471, "from_user_id_str": "62253471", "from_user_name": "Sergio Panagia", "geo": null, "id": 148796983124045820, "id_str": "148796983124045824", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1450247575/163783_139769382743085_100001300727003_184777_1566539_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1450247575/163783_139769382743085_100001300727003_184777_1566539_n_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Expert in NoSQL http://t.co/v0YAj0Lo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:08:42 +0000", "from_user": "lexx27", "from_user_id": 8923232, "from_user_id_str": "8923232", "from_user_name": "Lexx", "geo": null, "id": 148796909664997380, "id_str": "148796909664997376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1360035898/avatar511_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1360035898/avatar511_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) \\u2022 myNoSQL: http://t.co/1w4azB2F", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:08:38 +0000", "from_user": "beketa", "from_user_id": 55174326, "from_user_id_str": "55174326", "from_user_name": "\\u7AF9\\u8FBA\\u9756\\u662D", "geo": null, "id": 148796892787122180, "id_str": "148796892787122177", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/763876028/manga_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/763876028/manga_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @masayh: \\u30BD\\u30D5\\u30C8\\u30A6\\u30A7\\u30A2\\u6280\\u8853\\u8005\\u306E\\u5BFF\\u547D\\u306F\\u77ED\\u3044\\u306E\\u3060\\u304B\\u3089\\u3002\\u7121\\u99C4\\u306A\\u6280\\u8853\\u306B\\u6642\\u9593\\u3092\\u8CBB\\u3084\\u3059\\u3079\\u304D\\u3067\\u306F\\u306A\\u3044\\u3057\\u3001\\u904E\\u3061\\u3092\\u7E70\\u308A\\u8FD4\\u3059\\u3079\\u304D\\u3067\\u306F\\u306A\\u3044\\u3001null pointer\\u3092\\u8A31\\u3059\\u3001\\u7121\\u6761\\u4EF6\\u306A\\u540C\\u6642\\u6027\\u5236\\u5FA1\\u304C\\u5FC5\\u8981\\u306A\\u30DE\\u30EB\\u30C1\\u30B9\\u30EC\\u30C3\\u30C9\\u3001\\u30D7\\u30ED\\u30B0\\u30E9\\u30DF\\u30F3\\u30B0\\u30D1\\u30E9\\u30C0\\u30A4\\u30E0\\u306B\\u4F9D\\u5B58\\u3059\\u308B\\u30C7\\u30B6\\u30A4\\u30F3\\u30D1\\u30BF\\u30FC\\u30F3\\u3001\\u8AA4\\u3063\\u305FRDB\\u3084NoSQL\\u306E\\u5229\\u7528\\u6CD5\\u306A\\u3069\\u306A\\u3069\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:06:26 +0000", "from_user": "nickfloyd", "from_user_id": 1009941, "from_user_id_str": "1009941", "from_user_name": "Nick Floyd", "geo": null, "id": 148796340342751230, "id_str": "148796340342751232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/941854658/avitar9_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/941854658/avitar9_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) - http://t.co/8HVFjSOO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:06:03 +0000", "from_user": "codemonkeyism", "from_user_id": 17334287, "from_user_id_str": "17334287", "from_user_name": "Stephan Schmidt", "geo": null, "id": 148796241516560400, "id_str": "148796241516560384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/289074160/Avatar2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/289074160/Avatar2_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@sallamar The problem is, what does sanitze mean? It's different for SQL, JS, HTML, NOSQL, ... How does your server recognize \"active\" data", "to_user": "sallamar", "to_user_id": 14075246, "to_user_id_str": "14075246", "to_user_name": "Subbu Allamaraju", "in_reply_to_status_id": 148795370166698000, "in_reply_to_status_id_str": "148795370166697984"}, +{"created_at": "Mon, 19 Dec 2011 16:04:51 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 148795940260687870, "id_str": "148795940260687872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@sallamar have you checked the NoSQL+node.js posts? I'm sure there are tons of correct apps out there, but many are completely ignoring sec.", "to_user": "sallamar", "to_user_id": 14075246, "to_user_id_str": "14075246", "to_user_name": "Subbu Allamaraju", "in_reply_to_status_id": 148795370166698000, "in_reply_to_status_id_str": "148795370166697984"}, +{"created_at": "Mon, 19 Dec 2011 16:03:45 +0000", "from_user": "freshemployer1", "from_user_id": 362653052, "from_user_id_str": "362653052", "from_user_name": "freshemployer", "geo": null, "id": 148795664078356480, "id_str": "148795664078356480", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "http://t.co/7rUGweLC Java Engineer - Java, Map/Reduce, Spring, MySQL, Hadoop, NoSQL http://t.co/USBvWoPi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:03:26 +0000", "from_user": "panaghia", "from_user_id": 62253471, "from_user_id_str": "62253471", "from_user_name": "Sergio Panagia", "geo": null, "id": 148795584709533700, "id_str": "148795584709533696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1450247575/163783_139769382743085_100001300727003_184777_1566539_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1450247575/163783_139769382743085_100001300727003_184777_1566539_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @albertoornaghi: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/O8j89pp8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:02:53 +0000", "from_user": "eliasisrael", "from_user_id": 13182282, "from_user_id_str": "13182282", "from_user_name": "Eli Israel", "geo": null, "id": 148795444359741440, "id_str": "148795444359741440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/277531030/0H6Z4202_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/277531030/0H6Z4202_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/1pn5kMTe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:02:33 +0000", "from_user": "totox8", "from_user_id": 68276205, "from_user_id_str": "68276205", "from_user_name": "tawfiq zidi", "geo": null, "id": 148795361136345100, "id_str": "148795361136345088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1073827067/o_h9Y5xvf3KUNLaU3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1073827067/o_h9Y5xvf3KUNLaU3_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "NoSQL facts : the only thing in common is that there is nothing in common !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:01:21 +0000", "from_user": "technige", "from_user_id": 120269446, "from_user_id_str": "120269446", "from_user_name": "Nigel Small", "geo": null, "id": 148795058206949380, "id_str": "148795058206949377", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1666826531/dragon-white.200x200_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666826531/dragon-white.200x200_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "GEOFF Evolved: http://t.co/xsT5p0gf @neo4j @py2neo #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:00:20 +0000", "from_user": "sunaot", "from_user_id": 62968355, "from_user_id_str": "62968355", "from_user_name": "tanabe sunao/\\u305F\\u306A\\u3079\\u3059\\u306A\\u304A", "geo": null, "id": 148794804371849200, "id_str": "148794804371849217", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/348450316/unit051105_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/348450316/unit051105_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @masayh: \\u30BD\\u30D5\\u30C8\\u30A6\\u30A7\\u30A2\\u6280\\u8853\\u8005\\u306E\\u5BFF\\u547D\\u306F\\u77ED\\u3044\\u306E\\u3060\\u304B\\u3089\\u3002\\u7121\\u99C4\\u306A\\u6280\\u8853\\u306B\\u6642\\u9593\\u3092\\u8CBB\\u3084\\u3059\\u3079\\u304D\\u3067\\u306F\\u306A\\u3044\\u3057\\u3001\\u904E\\u3061\\u3092\\u7E70\\u308A\\u8FD4\\u3059\\u3079\\u304D\\u3067\\u306F\\u306A\\u3044\\u3001null pointer\\u3092\\u8A31\\u3059\\u3001\\u7121\\u6761\\u4EF6\\u306A\\u540C\\u6642\\u6027\\u5236\\u5FA1\\u304C\\u5FC5\\u8981\\u306A\\u30DE\\u30EB\\u30C1\\u30B9\\u30EC\\u30C3\\u30C9\\u3001\\u30D7\\u30ED\\u30B0\\u30E9\\u30DF\\u30F3\\u30B0\\u30D1\\u30E9\\u30C0\\u30A4\\u30E0\\u306B\\u4F9D\\u5B58\\u3059\\u308B\\u30C7\\u30B6\\u30A4\\u30F3\\u30D1\\u30BF\\u30FC\\u30F3\\u3001\\u8AA4\\u3063\\u305FRDB\\u3084NoSQL\\u306E\\u5229\\u7528\\u6CD5\\u306A\\u3069\\u306A\\u3069\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:00:04 +0000", "from_user": "newsyc20", "from_user_id": 148969874, "from_user_id_str": "148969874", "from_user_name": "Hacker News 20", "geo": null, "id": 148794735706898430, "id_str": "148794735706898432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1081970640/yclogo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1081970640/yclogo_normal.gif", "source": "<a href="http://news.ycombinator.com" rel="nofollow">newsyc</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/Rvto2Il4 (http://t.co/PypQlHk5) #trending", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:59:04 +0000", "from_user": "yutuki_r", "from_user_id": 16252456, "from_user_id_str": "16252456", "from_user_name": "\\u8C4A\\u6708", "geo": null, "id": 148794487613833200, "id_str": "148794487613833216", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1570998126/___normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1570998126/___normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @masayh: \\u30BD\\u30D5\\u30C8\\u30A6\\u30A7\\u30A2\\u6280\\u8853\\u8005\\u306E\\u5BFF\\u547D\\u306F\\u77ED\\u3044\\u306E\\u3060\\u304B\\u3089\\u3002\\u7121\\u99C4\\u306A\\u6280\\u8853\\u306B\\u6642\\u9593\\u3092\\u8CBB\\u3084\\u3059\\u3079\\u304D\\u3067\\u306F\\u306A\\u3044\\u3057\\u3001\\u904E\\u3061\\u3092\\u7E70\\u308A\\u8FD4\\u3059\\u3079\\u304D\\u3067\\u306F\\u306A\\u3044\\u3001null pointer\\u3092\\u8A31\\u3059\\u3001\\u7121\\u6761\\u4EF6\\u306A\\u540C\\u6642\\u6027\\u5236\\u5FA1\\u304C\\u5FC5\\u8981\\u306A\\u30DE\\u30EB\\u30C1\\u30B9\\u30EC\\u30C3\\u30C9\\u3001\\u30D7\\u30ED\\u30B0\\u30E9\\u30DF\\u30F3\\u30B0\\u30D1\\u30E9\\u30C0\\u30A4\\u30E0\\u306B\\u4F9D\\u5B58\\u3059\\u308B\\u30C7\\u30B6\\u30A4\\u30F3\\u30D1\\u30BF\\u30FC\\u30F3\\u3001\\u8AA4\\u3063\\u305FRDB\\u3084NoSQL\\u306E\\u5229\\u7528\\u6CD5\\u306A\\u3069\\u306A\\u3069\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:57:45 +0000", "from_user": "temojin", "from_user_id": 15003854, "from_user_id_str": "15003854", "from_user_name": "temojin", "geo": null, "id": 148794154611249150, "id_str": "148794154611249153", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1239533074/hqt-photoboth-20110114_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1239533074/hqt-photoboth-20110114_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "RT @joedevon: myNoSQL: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) - nosql: http://t.co/wvjvKvMP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:56:43 +0000", "from_user": "lse_epita", "from_user_id": 440373188, "from_user_id_str": "440373188", "from_user_name": "EPITA Systems Lab", "geo": null, "id": 148793892215586800, "id_str": "148793892215586816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700980135/logoLSE_normal.png", "profile_image_url_https": null, "source": "<a href="http://www.lse.epita.fr/" rel="nofollow">LinkBot</a>", "text": "Server-Side JavaScript Injection in MongoDB and Node.JS https://t.co/NKJKuaWE #security #paper #blackhat #js #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:54:33 +0000", "from_user": "lyxint", "from_user_id": 201169348, "from_user_id_str": "201169348", "from_user_name": "duyue", "geo": null, "id": 148793346880569340, "id_str": "148793346880569344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1142091888/ul4680714-4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1142091888/ul4680714-4_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "..NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/LmlZU0U1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:53:43 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 148793141154152450, "id_str": "148793141154152449", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "On HackerNews: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/9nvIDy2m", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:53:39 +0000", "from_user": "NAL_6295", "from_user_id": 14843656, "from_user_id_str": "14843656", "from_user_name": "Hiroaki OHASHI", "geo": null, "id": 148793120962785280, "id_str": "148793120962785282", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1572432759/avatar_normal.JPEG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572432759/avatar_normal.JPEG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @masayh: \\u30BD\\u30D5\\u30C8\\u30A6\\u30A7\\u30A2\\u6280\\u8853\\u8005\\u306E\\u5BFF\\u547D\\u306F\\u77ED\\u3044\\u306E\\u3060\\u304B\\u3089\\u3002\\u7121\\u99C4\\u306A\\u6280\\u8853\\u306B\\u6642\\u9593\\u3092\\u8CBB\\u3084\\u3059\\u3079\\u304D\\u3067\\u306F\\u306A\\u3044\\u3057\\u3001\\u904E\\u3061\\u3092\\u7E70\\u308A\\u8FD4\\u3059\\u3079\\u304D\\u3067\\u306F\\u306A\\u3044\\u3001null pointer\\u3092\\u8A31\\u3059\\u3001\\u7121\\u6761\\u4EF6\\u306A\\u540C\\u6642\\u6027\\u5236\\u5FA1\\u304C\\u5FC5\\u8981\\u306A\\u30DE\\u30EB\\u30C1\\u30B9\\u30EC\\u30C3\\u30C9\\u3001\\u30D7\\u30ED\\u30B0\\u30E9\\u30DF\\u30F3\\u30B0\\u30D1\\u30E9\\u30C0\\u30A4\\u30E0\\u306B\\u4F9D\\u5B58\\u3059\\u308B\\u30C7\\u30B6\\u30A4\\u30F3\\u30D1\\u30BF\\u30FC\\u30F3\\u3001\\u8AA4\\u3063\\u305FRDB\\u3084NoSQL\\u306E\\u5229\\u7528\\u6CD5\\u306A\\u3069\\u306A\\u3069\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:50:45 +0000", "from_user": "b_erb", "from_user_id": 34872179, "from_user_id_str": "34872179", "from_user_name": "Benjamin Erb", "geo": null, "id": 148792391187447800, "id_str": "148792391187447808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1216365359/twitter2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1216365359/twitter2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/ShBYS79S", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:50:32 +0000", "from_user": "hnbot", "from_user_id": 317653311, "from_user_id_str": "317653311", "from_user_name": "Hacker News", "geo": null, "id": 148792336741183500, "id_str": "148792336741183488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1405908372/1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1405908372/1_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) \\n(Discuss on HN - http://t.co/pN3saR09) http://t.co/yLtM0tz3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:50:16 +0000", "from_user": "OpenSource4Biz", "from_user_id": 170064380, "from_user_id_str": "170064380", "from_user_name": "OpenSource4Biz", "geo": null, "id": 148792269615538180, "id_str": "148792269615538176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1088764897/brad-stripped_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1088764897/brad-stripped_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Grails 2.0 with More Cloud Support and NoSQL Connectivity http://t.co/dYqYxqIQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:50:15 +0000", "from_user": "Linux4Business", "from_user_id": 170066184, "from_user_id_str": "170066184", "from_user_name": "Linux4Business", "geo": null, "id": 148792268944457730, "id_str": "148792268944457728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1088772083/brad-stripped_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1088772083/brad-stripped_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Grails 2.0 with More Cloud Support and NoSQL Connectivity http://t.co/XbJankiu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:49:41 +0000", "from_user": "alltop_java", "from_user_id": 191999280, "from_user_id_str": "191999280", "from_user_name": "Alltop Java", "geo": null, "id": 148792123611807740, "id_str": "148792123611807744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1128524576/IloveAlltop_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1128524576/IloveAlltop_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/Ju75qmKN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:49:39 +0000", "from_user": "suren_h", "from_user_id": 90256037, "from_user_id_str": "90256037", "from_user_name": "Suren Hiraman", "geo": null, "id": 148792117924335600, "id_str": "148792117924335616", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Understanding #hbase and schema design - http://t.co/FjpTVvPt #nosql #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:46:30 +0000", "from_user": "williewheeler", "from_user_id": 18665786, "from_user_id_str": "18665786", "from_user_name": "Willie Wheeler", "geo": null, "id": 148791321937723400, "id_str": "148791321937723392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/535188049/willie_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/535188049/willie_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: Neo4j Domain Modeling With Spring Data http://t.co/SCeXU3rL Solve this with a relational database :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:46:09 +0000", "from_user": "HNComments", "from_user_id": 103485823, "from_user_id_str": "103485823", "from_user_name": "HN Comments", "geo": null, "id": 148791233660194800, "id_str": "148791233660194816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/622735724/hncomments_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/622735724/hncomments_normal.png", "source": "<a href="https://twitter.com/HNComments" rel="nofollow">HNComments Poster</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/jvRX6P3T", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:41:04 +0000", "from_user": "thesp0nge", "from_user_id": 9677762, "from_user_id_str": "9677762", "from_user_name": "Paolo Perego", "geo": null, "id": 148789956486242300, "id_str": "148789956486242304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1652332854/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652332854/image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @albertoornaghi: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/O8j89pp8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:40:03 +0000", "from_user": "YCHackerNews", "from_user_id": 90440720, "from_user_id_str": "90440720", "from_user_name": "YC Hacker News", "geo": null, "id": 148789701183152130, "id_str": "148789701183152128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/529679802/y_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/529679802/y_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS): Comments:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:40:03 +0000", "from_user": "HackerNewsFP", "from_user_id": 378119541, "from_user_id_str": "378119541", "from_user_name": "HN Front Page", "geo": null, "id": 148789700889554940, "id_str": "148789700889554944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1554908894/yclogo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554908894/yclogo_normal.gif", "source": "<a href="http://no.such.site/" rel="nofollow">hnfp</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/mZhE9itV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:40:02 +0000", "from_user": "HNTweets", "from_user_id": 116276133, "from_user_id_str": "116276133", "from_user_name": "Hacker News", "geo": null, "id": 148789696720416770, "id_str": "148789696720416768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1369520630/HNTweets_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1369520630/HNTweets_normal.png", "source": "<a href="http://github.com/d4nt/HNTweets" rel="nofollow">HNTweets Bot</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS): http://t.co/IaOiwaja Comments: http://t.co/o7QHK5it", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:38:51 +0000", "from_user": "mynosql_popescu", "from_user_id": 197901055, "from_user_id_str": "197901055", "from_user_name": "myNoSQL", "geo": null, "id": 148789398295687170, "id_str": "148789398295687168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Data Modeling for Document Databases: An Auction and Bids System: Staying with data modeling, but moving to the ... http://t.co/8dj0JBrp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:38:12 +0000", "from_user": "albertoornaghi", "from_user_id": 186182794, "from_user_id_str": "186182794", "from_user_name": "Alberto Ornaghi", "geo": null, "id": 148789232876527600, "id_str": "148789232876527616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1288990137/11e30732c18268fecce204bc1f2bda6b_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1288990137/11e30732c18268fecce204bc1f2bda6b_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/O8j89pp8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:37:04 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 148788949928779780, "id_str": "148788949928779778", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "Document Databases and Data Migrations http://t.co/UCUT3gLu 1) no ORM 2) no schema 3) no data migrations #mongodb #couchdb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:35:54 +0000", "from_user": "dieswaytoofast", "from_user_id": 312604736, "from_user_id_str": "312604736", "from_user_name": "Mahesh P-Subramanya", "geo": null, "id": 148788653706067970, "id_str": "148788653706067968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1572400317/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572400317/Untitled_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @al3xandru: Neo4j Domain Modeling With Spring Data http://t.co/oVG9nlwI Solve this with a relational database :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:35:40 +0000", "from_user": "dieswaytoofast", "from_user_id": 312604736, "from_user_id_str": "312604736", "from_user_name": "Mahesh P-Subramanya", "geo": null, "id": 148788597850513400, "id_str": "148788597850513408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1572400317/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572400317/Untitled_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "TANSTAAFL - you always need to worry about security (if its relevant, of course :-) ) - http://t.co/2zVIL7ux", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:35:40 +0000", "from_user": "scalextremeinc", "from_user_id": 233724009, "from_user_id_str": "233724009", "from_user_name": "ScaleXtreme, Inc.", "geo": null, "id": 148788597779214340, "id_str": "148788597779214336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1206179421/logo-4-facebook-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1206179421/logo-4-facebook-2_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "HackerNews: Attacking NoSQL and Node.js: #server-Side JavaScript Injection (SSJS) http://t.co/lMSLuAMx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:34:59 +0000", "from_user": "cheapRoc", "from_user_id": 1386421, "from_user_id_str": "1386421", "from_user_name": "cheapRoc", "geo": null, "id": 148788423782711300, "id_str": "148788423782711296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1543514942/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543514942/me_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Note to Morons: http://t.co/rxAFtVyZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:34:07 +0000", "from_user": "hnfirehose", "from_user_id": 213117318, "from_user_id_str": "213117318", "from_user_name": "HN Firehose", "geo": null, "id": 148788206765219840, "id_str": "148788206765219842", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS): http://t.co/4EOUpOsK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:34:01 +0000", "from_user": "suren_h", "from_user_id": 90256037, "from_user_id_str": "90256037", "from_user_name": "Suren Hiraman", "geo": null, "id": 148788180177522700, "id_str": "148788180177522689", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Using #redis bitmaps to do fast, real-time metrics calculations. Pretty cool. http://t.co/bYewxPXn #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:31:38 +0000", "from_user": "neo4j", "from_user_id": 22467617, "from_user_id_str": "22467617", "from_user_name": "Neo4j", "geo": null, "id": 148787580459155460, "id_str": "148787580459155456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/195275920/square-logo-no-text-2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/195275920/square-logo-no-text-2_normal.png", "source": "<a href="http://kiwi-app.net" rel="nofollow">kiwi</a>", "text": "Thanks! RT @al3xandru: Neo4j Domain Modeling With Spring Data http://t.co/HSedXjdd Solve this with a relational database :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:30:49 +0000", "from_user": "rgielen", "from_user_id": 14371317, "from_user_id_str": "14371317", "from_user_name": "Rene Gielen", "geo": null, "id": 148787376368525300, "id_str": "148787376368525313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/468381074/golden_gate_portrait_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/468381074/golden_gate_portrait_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Nice & elegant! @al3xandru: Neo4j Domain Modeling With Spring Data http://t.co/y3esOsnj Solve this with a relational database :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:29:42 +0000", "from_user": "williewheeler", "from_user_id": 18665786, "from_user_id_str": "18665786", "from_user_name": "Willie Wheeler", "geo": null, "id": 148787093932482560, "id_str": "148787093932482560", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/535188049/willie_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/535188049/willie_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: Neo4j and Spring Data for Configuration Management Database http://t.co/inxF9jj8 #Neo4j #SpringData #PoweredbyNoSQL #Skybase", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:27:42 +0000", "from_user": "seclectech", "from_user_id": 225581432, "from_user_id_str": "225581432", "from_user_name": "Matt Franz", "geo": null, "id": 148786592746704900, "id_str": "148786592746704897", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1456070737/PICT0117_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1456070737/PICT0117_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "RT @joedevon: myNoSQL: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) - nosql: http://t.co/wvjvKvMP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:26:07 +0000", "from_user": "suren_h", "from_user_id": 90256037, "from_user_id_str": "90256037", "from_user_name": "Suren Hiraman", "geo": null, "id": 148786193193111550, "id_str": "148786193193111552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Most interesting companies in the #Hadoop ecosystem: http://t.co/wOx2OQrb #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:24:20 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 148785743458873340, "id_str": "148785743458873344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "Neo4j Domain Modeling With Spring Data http://t.co/SCeXU3rL Solve this with a relational database :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:23:04 +0000", "from_user": "sbobrovsky", "from_user_id": 42171480, "from_user_id_str": "42171480", "from_user_name": "Serge Bobrovsky", "geo": null, "id": 148785427225116670, "id_str": "148785427225116672", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/468856400/ya0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/468856400/ya0_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/0nZ0iLjf 2.0 -- \\u0432\\u0435\\u0431-\\u0440\\u0430\\u0437\\u0440\\u0430\\u0431\\u043E\\u0442\\u043A\\u0430 \\u0434\\u043B\\u044F Java \\u0438 JVM-\\u044F\\u0437\\u044B\\u043A\\u043E\\u0432 \\u043F\\u043E \\u043C\\u043E\\u0434\\u0435\\u043B\\u0438 MVC + Groove + Grails-Object-Relational-Mapper + NoSQL !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:20:41 +0000", "from_user": "nanderoo", "from_user_id": 39574483, "from_user_id_str": "39574483", "from_user_name": "Neal Anders", "geo": null, "id": 148784824604311550, "id_str": "148784824604311552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/208948704/neal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/208948704/neal_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "RT @joedevon: myNoSQL: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) - nosql: http://t.co/wvjvKvMP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:19:55 +0000", "from_user": "joedevon", "from_user_id": 21734113, "from_user_id_str": "21734113", "from_user_name": "Joe Devon \\u00AE", "geo": null, "id": 148784635306983420, "id_str": "148784635306983424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1225220068/joedevon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225220068/joedevon_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": ".@daschl LOL, well my little blog isn't really \"news\". & it's not a #li3 issue. Just a tut needs a minor fix & ppl using nosql need caution", "to_user": "daschl", "to_user_id": 15881666, "to_user_id_str": "15881666", "to_user_name": "Michael Nitschinger", "in_reply_to_status_id": 148738612031266800, "in_reply_to_status_id_str": "148738612031266816"}, +{"created_at": "Mon, 19 Dec 2011 15:18:35 +0000", "from_user": "sototan", "from_user_id": 99141263, "from_user_id_str": "99141263", "from_user_name": "Sergio Soto", "geo": null, "id": 148784299204821000, "id_str": "148784299204820992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1644983978/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644983978/avatar_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"A Survey on Graph Databases for Java Developers\" http://t.co/YuCinhit #Neo4j #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:16:54 +0000", "from_user": "scislaghi", "from_user_id": 6364342, "from_user_id_str": "6364342", "from_user_name": "Stefano Cislaghi", "geo": null, "id": 148783872270794750, "id_str": "148783872270794752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1472119034/twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1472119034/twitter_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "MySQL is Not ACID Compliant \\u2022 myNoSQL: http://t.co/cpStSskO via @AddThis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:15:30 +0000", "from_user": "joedevon", "from_user_id": 21734113, "from_user_id_str": "21734113", "from_user_name": "Joe Devon \\u00AE", "geo": null, "id": 148783522310668300, "id_str": "148783522310668288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1225220068/joedevon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225220068/joedevon_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @daschl: @joedevon http://t.co/V30Aftlc good news? bad news? anyway #li3 in the news ;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:15:04 +0000", "from_user": "joedevon", "from_user_id": 21734113, "from_user_id_str": "21734113", "from_user_name": "Joe Devon \\u00AE", "geo": null, "id": 148783414391210000, "id_str": "148783414391209985", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1225220068/joedevon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225220068/joedevon_normal.png", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "myNoSQL: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) - nosql: http://t.co/wvjvKvMP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:15:04 +0000", "from_user": "softartisans", "from_user_id": 50410463, "from_user_id_str": "50410463", "from_user_name": "SoftArtisans ", "geo": null, "id": 148783412747051000, "id_str": "148783412747051008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/292623405/SAtweet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/292623405/SAtweet_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#screencast: @cloudera's @larsgeorge breaks down the #hbase schema http://t.co/f3rGTNN1 @al3xandru", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:14:48 +0000", "from_user": "scislaghi", "from_user_id": 6364342, "from_user_id_str": "6364342", "from_user_name": "Stefano Cislaghi", "geo": null, "id": 148783345034215420, "id_str": "148783345034215426", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1472119034/twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1472119034/twitter_normal.png", "source": "<a href="http://twittercounter.com" rel="nofollow">The Visitor Widget</a>", "text": "#myNoSQL http://t.co/dwu6GmCt #giafattodaunmiocliente", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:11:26 +0000", "from_user": "BrighthubLinux", "from_user_id": 69991836, "from_user_id_str": "69991836", "from_user_name": "BrighthubLinux", "geo": null, "id": 148782498594308100, "id_str": "148782498594308097", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/388602893/Linux_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/388602893/Linux_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "[http://t.co/XFv5sgqM] Grails 2.0 with More Cloud Support and NoSQL Connectivity: \\n\\tThe Grails development team h... http://t.co/Gm8nJFpG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:09:19 +0000", "from_user": "keithkim", "from_user_id": 14881688, "from_user_id_str": "14881688", "from_user_name": "Keith Kim", "geo": null, "id": 148781966169354240, "id_str": "148781966169354240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1485820747/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1485820747/me_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"Neo4j and GWT Based Social News Feed Demo on Wikipedia Graph Running\" http://t.co/NT7vcWvl #Java #Neo4j #GWT #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:08:04 +0000", "from_user": "AppDynamics", "from_user_id": 22432302, "from_user_id_str": "22432302", "from_user_name": "AppDynamics", "geo": null, "id": 148781651395231740, "id_str": "148781651395231746", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692382555/AD_twitter_icon-121311_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692382555/AD_twitter_icon-121311_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "2012 Cloud, PaaS, NoSQL Predictions http://t.co/PIm0iezr << Nice blog from Nati @Gigaspaces", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:08:00 +0000", "from_user": "TopDevTweets", "from_user_id": 194520782, "from_user_id_str": "194520782", "from_user_name": "TopDevTweets", "geo": null, "id": 148781633657507840, "id_str": "148781633657507840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"A Survey on Graph Databases for Java Developers\" http://t.co/YuCinhit #Neo4j #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:07:16 +0000", "from_user": "keithkim", "from_user_id": 14881688, "from_user_id_str": "14881688", "from_user_name": "Keith Kim", "geo": null, "id": 148781450857164800, "id_str": "148781450857164801", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1485820747/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1485820747/me_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"A Survey on Graph Databases for Java Developers\" http://t.co/YuCinhit #Neo4j #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:06:11 +0000", "from_user": "samuelcharron", "from_user_id": 190333842, "from_user_id_str": "190333842", "from_user_name": "uo\\u0279\\u0279\\u0250\\u0265\\u0186 \\uA781\\u01DDn\\u026F\\u0250S", "geo": null, "id": 148781177594069000, "id_str": "148781177594068992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1283676531/futurama_fry_looking_squint2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1283676531/futurama_fry_looking_squint2_normal.jpg", "source": "Zite Personalized Magazine", "text": "RT @bduclaux: NoSQL's great, but bring your A game http://t.co/7yLqhq8L", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:00:46 +0000", "from_user": "softartisans", "from_user_id": 50410463, "from_user_id_str": "50410463", "from_user_name": "SoftArtisans ", "geo": null, "id": 148779814428475400, "id_str": "148779814428475392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/292623405/SAtweet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/292623405/SAtweet_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "If you're using #nosql databases, you need to read Bryan Sullivan's paper on server-side #js injection attacks http://t.co/tLu74Nys", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:55:45 +0000", "from_user": "alecsg77", "from_user_id": 346788932, "from_user_id_str": "346788932", "from_user_name": "Alessio Gogna", "geo": null, "id": 148778550261059600, "id_str": "148778550261059584", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1473956791/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1473956791/image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Database di documenti NoSQL: Integrazione di RavenDB in un'applicazione http://t.co/lOKtC1EW MVC 3 http://t.co/Hcnba76X", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:54:05 +0000", "from_user": "jingbay", "from_user_id": 58447675, "from_user_id_str": "58447675", "from_user_name": "\\u9AD8\\u68A8\\u9663\\u5E73", "geo": null, "id": 148778133326278660, "id_str": "148778133326278656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/322602576/JinpeiTakanashi_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/322602576/JinpeiTakanashi_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"A Survey on Graph Databases for Java Developers\" http://t.co/YuCinhit #Neo4j #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:53:27 +0000", "from_user": "neo4j", "from_user_id": 22467617, "from_user_id_str": "22467617", "from_user_name": "Neo4j", "geo": null, "id": 148777973166772220, "id_str": "148777973166772224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/195275920/square-logo-no-text-2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/195275920/square-logo-no-text-2_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"A Survey on Graph Databases for Java Developers\" http://t.co/YuCinhit #Neo4j #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:49:58 +0000", "from_user": "DZone", "from_user_id": 14782935, "from_user_id_str": "14782935", "from_user_name": "DZone", "geo": null, "id": 148777097849094140, "id_str": "148777097849094145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/258714549/dzone-square-256_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/258714549/dzone-square-256_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\"A Survey on Graph Databases for Java Developers\" http://t.co/YuCinhit #Neo4j #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:47:07 +0000", "from_user": "jamie_allen", "from_user_id": 16935750, "from_user_id_str": "16935750", "from_user_name": "Jamie Allen", "geo": null, "id": 148776378794381300, "id_str": "148776378794381313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1238432751/jlacubs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1238432751/jlacubs_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/gBf90Zzo #NoSQLdatabase #Node.js #JavaScript #security", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:45:21 +0000", "from_user": "100pZ", "from_user_id": 324010767, "from_user_id_str": "324010767", "from_user_name": "|\\u03B8\\u03B8\\u03C1 \\u2714", "geo": null, "id": 148775933443194880, "id_str": "148775933443194880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1484057937/loop_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1484057937/loop_2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Grails 2.0 with More Cloud Support and NoSQL Connectivity: \\n\\tThe Grails development team has released version 2.... http://t.co/N6iVrIcQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:45:21 +0000", "from_user": "maniyadv", "from_user_id": 90178528, "from_user_id_str": "90178528", "from_user_name": "Mani", "geo": null, "id": 148775932201680900, "id_str": "148775932201680896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1430504514/twitterme_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1430504514/twitterme_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Grails 2.0 with More Cloud Support and NoSQL Connectivity http://t.co/wOmXaf5J", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:45:20 +0000", "from_user": "tux_news", "from_user_id": 242429286, "from_user_id_str": "242429286", "from_user_name": "tux_news", "geo": null, "id": 148775929282433020, "id_str": "148775929282433024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1225334349/tux_news_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225334349/tux_news_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Grails 2.0 with More Cloud Support and NoSQL Connectivity http://t.co/tANr4oXE #linux", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:45:19 +0000", "from_user": "ESITechadvisors", "from_user_id": 127507205, "from_user_id_str": "127507205", "from_user_name": "ESI Techadvisors", "geo": null, "id": 148775927772495870, "id_str": "148775927772495872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/783724638/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/783724638/twitter_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Grails 2.0 with More Cloud Support and NoSQL Connectivity: \\n\\tThe Grails development team has released version 2.... http://t.co/zaPtHOVz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:45:18 +0000", "from_user": "linuxnewstoday", "from_user_id": 144271076, "from_user_id_str": "144271076", "from_user_name": "Linux News", "geo": null, "id": 148775923460734980, "id_str": "148775923460734976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/902836592/robot_tux_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/902836592/robot_tux_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Grails 2.0 with More Cloud Support and NoSQL Connectivity: \\n\\tThe Grails development team has released ver... http://t.co/GUFpRoDx #linux", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:45:18 +0000", "from_user": "freesource", "from_user_id": 19503616, "from_user_id_str": "19503616", "from_user_name": "Free Software Feeds", "geo": null, "id": 148775921954988030, "id_str": "148775921954988032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/73127416/twitter_j_03_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/73127416/twitter_j_03_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Grails 2.0 with More Cloud Support and NoSQL Connectivity http://t.co/KB1WU9kd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:38:44 +0000", "from_user": "syahrulOCHrmdhn", "from_user_id": 193239222, "from_user_id_str": "193239222", "from_user_name": "syahrul ramadhan", "geo": null, "id": 148774269030105100, "id_str": "148774269030105088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1618179662/digginguitar.gif_w_500_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618179662/digginguitar.gif_w_500_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Grails 2.0 with More Cloud Support and NoSQL Connectivity: \\n\\tThe Grails development team has released version 2.... http://t.co/XIrnTHrr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:37:54 +0000", "from_user": "bigdatajobs", "from_user_id": 343011637, "from_user_id_str": "343011637", "from_user_name": "Big Data Jobs", "geo": null, "id": 148774060560613380, "id_str": "148774060560613376", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#Job Sr Java Developer (Hadoop, Cassandra, NoSQL, MongoDB) at Mitchell Group (Los Angeles, CA) http://t.co/DZWVlMud #bigdata #cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:37:29 +0000", "from_user": "TechOnWrox", "from_user_id": 144453127, "from_user_id_str": "144453127", "from_user_name": "TechOnWrox", "geo": null, "id": 148773955031924740, "id_str": "148773955031924737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/904714651/techonwrox_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/904714651/techonwrox_normal.PNG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Grails 2.0 with More Cloud Support and NoSQL Connectivity: \\n\\tThe Grails development team has released version 2.... http://t.co/8CWHGsqn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:31:57 +0000", "from_user": "BrendanColeman1", "from_user_id": 310247344, "from_user_id_str": "310247344", "from_user_name": "Brendan Coleman", "geo": null, "id": 148772563248623600, "id_str": "148772563248623616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670774902/Screen_Shot_2011-11-07_at_2.07.08_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670774902/Screen_Shot_2011-11-07_at_2.07.08_PM_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/U1xMo08Y, #10gen #mongodb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:30:48 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148772273699033100, "id_str": "148772273699033088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @FriendsOfNodeJS Nicollemip: mindstorms: NoSQL: Attacking NoSQL and Node.js: Server-Side JavaScript _Injection_ (SSJS) http://...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:28:52 +0000", "from_user": "nwjlyons", "from_user_id": 17298095, "from_user_id_str": "17298095", "from_user_name": "nwjlyons", "geo": null, "id": 148771784467021820, "id_str": "148771784467021824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1260989893/the_suburbs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1260989893/the_suburbs_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "brilliant http://t.co/3rQar94W", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:22:47 +0000", "from_user": "_sibudi", "from_user_id": 18154745, "from_user_id_str": "18154745", "from_user_name": "Shun Setiyabudi \\u2714", "geo": null, "id": 148770253353123840, "id_str": "148770253353123841", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1623678363/sty_7373_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1623678363/sty_7373_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "LAMP Replacement: The Jason Stack http://t.co/Le80Uzdg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:18:35 +0000", "from_user": "phaneeshn", "from_user_id": 78000743, "from_user_id_str": "78000743", "from_user_name": "Phaneesh Nagaraja", "geo": null, "id": 148769197365800960, "id_str": "148769197365800960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/789289885/0383_guitarist_heavy_metal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/789289885/0383_guitarist_heavy_metal_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"Neo4j and GWT Based Social News Feed Demo on Wikipedia Graph Running\" http://t.co/NT7vcWvl #Java #Neo4j #GWT #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 14:18:16 +0000", "from_user": "VoltDB", "from_user_id": 97716631, "from_user_id_str": "97716631", "from_user_name": "VoltDB", "geo": null, "id": 148769116856131600, "id_str": "148769116856131585", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1389280256/volt_db_logo_small_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1389280256/volt_db_logo_small_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "VoltDB for Digital Ad Tech apps: http://t.co/aOOSGsVa #mysql #nosql #newsql #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:17:51 +0000", "from_user": "ochawin", "from_user_id": 17104053, "from_user_id_str": "17104053", "from_user_name": "ochawin", "geo": null, "id": 148769014531891200, "id_str": "148769014531891200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1164246034/Untitled-1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1164246034/Untitled-1_normal.png", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "myNoSQL: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) - nosql: http://t.co/H0ZiGFhi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:10:28 +0000", "from_user": "fe_aragon", "from_user_id": 22362198, "from_user_id_str": "22362198", "from_user_name": "Felipe M. Aragon", "geo": null, "id": 148767157528969200, "id_str": "148767157528969216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1096112377/felipe_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1096112377/felipe_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @Trust_IT: Full Disclosure: Syhunt: Time-Based Blind NoSQL Injection http://t.co/f32DLj5b", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:06:46 +0000", "from_user": "mynosql_popescu", "from_user_id": 197901055, "from_user_id_str": "197901055", "from_user_name": "myNoSQL", "geo": null, "id": 148766222505357300, "id_str": "148766222505357312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS): Jeff Darcy has written a while back about ... http://t.co/SxyjClsq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:05:02 +0000", "from_user": "ttagit2", "from_user_id": 405446692, "from_user_id_str": "405446692", "from_user_name": "ttagit", "geo": null, "id": 148765788357136400, "id_str": "148765788357136386", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1667465890/Tumblr_lndioiz7js1qijsuuo1_500_large_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667465890/Tumblr_lndioiz7js1qijsuuo1_500_large_normal.jpeg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "The dark side of NoSQL http://t.co/yNWrlp90 via @codemonkeyism", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:56:07 +0000", "from_user": "mattnowina", "from_user_id": 103869545, "from_user_id_str": "103869545", "from_user_name": "Matt Nowina", "geo": null, "id": 148763544484184060, "id_str": "148763544484184065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1310193735/eightbit-9aa6f9af-a52d-4215-97f5-8ae5720906f1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1310193735/eightbit-9aa6f9af-a52d-4215-97f5-8ae5720906f1_normal.png", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "Cassandra, Zookeeper, Scribe, and Node.js Powering Rackspace Cloud Monitoring http://t.co/XXyYE3qo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:55:02 +0000", "from_user": "scroogy_choi", "from_user_id": 86291811, "from_user_id_str": "86291811", "from_user_name": "\\uCD5C\\uC601\\uBAA9", "geo": null, "id": 148763269912473600, "id_str": "148763269912473600", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1251201717/myPicture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1251201717/myPicture_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"Domain modeling with Spring Data Neo4j (code)\" http://t.co/lrgRuPxZ #Neo4j #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:51:00 +0000", "from_user": "Tarwn", "from_user_id": 656993, "from_user_id_str": "656993", "from_user_name": "Eli Weinstock-Herman", "geo": null, "id": 148762257520738300, "id_str": "148762257520738304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1512906051/Pic_MeanDL_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1512906051/Pic_MeanDL_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Twitter makes a great case for distributed NoSQL db's. Well, as long as you don't want the data back. #TwitterSearch #ArghChaos", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:48:26 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148761609840492540, "id_str": "148761609840492544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @Nicollemip: mindstorms: NoSQL: Attacking NoSQL and Node.js: Server-Side JavaScript _Injection_ (SSJS) http://t.co/669ojHHz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:48:24 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148761601426722800, "id_str": "148761601426722816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "mindstorms: NoSQL: Attacking NoSQL and Node.js: Server-Side JavaScript _Injection_ (SSJS) http://t.co/Xtq3qFTq http://t.co/WQGvSBgC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:41:11 +0000", "from_user": "neo4j", "from_user_id": 22467617, "from_user_id_str": "22467617", "from_user_name": "Neo4j", "geo": null, "id": 148759787490910200, "id_str": "148759787490910208", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/195275920/square-logo-no-text-2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/195275920/square-logo-no-text-2_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"Domain modeling with Spring Data Neo4j (code)\" http://t.co/lrgRuPxZ #Neo4j #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:41:11 +0000", "from_user": "Nicollemip", "from_user_id": 386032728, "from_user_id_str": "386032728", "from_user_name": "Nicolle Place", "geo": null, "id": 148759786014519300, "id_str": "148759786014519296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1575428783/pr3lnd55oe_133437437-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575428783/pr3lnd55oe_133437437-2_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "mindstorms: NoSQL: Attacking NoSQL and Node.js: Server-Side JavaScript _Injection_ (SSJS) http://t.co/669ojHHz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:40:38 +0000", "from_user": "NetCleaner1", "from_user_id": 345353778, "from_user_id_str": "345353778", "from_user_name": "Net Cleaner", "geo": null, "id": 148759646956560400, "id_str": "148759646956560385", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1469554927/images__2__normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1469554927/images__2__normal.jpeg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Syhunt: Time-Based Blind NoSQL Injection http://t.co/lkhEdIoD #netcleaner", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:39:00 +0000", "from_user": "alltop_java", "from_user_id": 191999280, "from_user_id_str": "191999280", "from_user_name": "Alltop Java", "geo": null, "id": 148759238754308100, "id_str": "148759238754308097", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1128524576/IloveAlltop_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1128524576/IloveAlltop_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL: Cassandra, Zookeeper, Scribe, and Node.js Powering Rackspace Cloud Monitoring http://t.co/ebVV4oFx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:28:17 +0000", "from_user": "me_bx", "from_user_id": 357548180, "from_user_id_str": "357548180", "from_user_name": "Mehdi El Fadil", "geo": null, "id": 148756541254795260, "id_str": "148756541254795264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1627782844/photo_-_identite_-_square_-_300_x_300_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627782844/photo_-_identite_-_square_-_300_x_300_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @al3xandru: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/wfLe2z5q #NoSQLdatabase #Node.js...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:27:29 +0000", "from_user": "dieswaytoofast", "from_user_id": 312604736, "from_user_id_str": "312604736", "from_user_name": "Mahesh P-Subramanya", "geo": null, "id": 148756339768819700, "id_str": "148756339768819712", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1572400317/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572400317/Untitled_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @al3xandru: Cassandra, Zookeeper, Scribe, and Node.js Powering Rackspace Cloud Monitoring http://t.co/7Le3jHZR #Cassandra #Zookeeper", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:15:54 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 148753421883809800, "id_str": "148753421883809792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "No love/hat tip from @matkeep for my lead on the MySQL Cluster usage for Hadoop NodeName http://t.co/dhcpeEUA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:13:00 +0000", "from_user": "murRZilla", "from_user_id": 86591593, "from_user_id_str": "86591593", "from_user_name": "Mureri Zilla", "geo": null, "id": 148752694612459520, "id_str": "148752694612459520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691155961/haters_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691155961/haters_normal.gif", "source": "<a href="http://www.writelonger.com" rel="nofollow">Write Longer</a>", "text": "this-->RT @samkariu: A NoSQL database walks into a bar,but leaves immediately because he can't find any tables #programmingjokes #ineedalife", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:12:04 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 148752459781767170, "id_str": "148752459781767168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "MongoDB in Scala Using Casbah and Salat Object Document Mapping http://t.co/CLRK46TY #MongoDB #Scala #Casbah #Scalat #ODM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:11:42 +0000", "from_user": "tuomassalo", "from_user_id": 436140595, "from_user_id_str": "436140595", "from_user_name": "Tuomas Salo", "geo": null, "id": 148752367947481100, "id_str": "148752367947481088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691672814/Screen_shot_2011-12-13_at_23.51.52_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691672814/Screen_shot_2011-12-13_at_23.51.52_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Some interesting NoSQL experiences from Wordnik, Foursquare, Disney. \"NoSQL\\u2019s great, but bring your A\\u00A0game\" http://t.co/4rKrvT8S", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:10:53 +0000", "from_user": "klittle212", "from_user_id": 15635707, "from_user_id_str": "15635707", "from_user_name": "Ken Little", "geo": null, "id": 148752162606940160, "id_str": "148752162606940160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/57564486/Cropped-42282471_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/57564486/Cropped-42282471_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "myNoSQL: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) - nosql: http://t.co/erqIntHx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:07:28 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 148751302942408700, "id_str": "148751302942408706", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "Cassandra, Zookeeper, Scribe, and Node.js Powering Rackspace Cloud Monitoring http://t.co/YFyNfrm7 #Cassandra #Zookeeper #Scribe #Node.js", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:07:25 +0000", "from_user": "matmosfera", "from_user_id": 26480445, "from_user_id_str": "26480445", "from_user_name": "Mervin Atmosfera", "geo": null, "id": 148751287264083970, "id_str": "148751287264083968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675553669/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675553669/image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/n6woehg2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:05:45 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 148750869901475840, "id_str": "148750869901475840", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "Neo4j and Spring Data for Configuration Management Database http://t.co/inxF9jj8 #Neo4j #SpringData #PoweredbyNoSQL #Skybase", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:02:53 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 148750149630435330, "id_str": "148750149630435328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/gBf90Zzo #NoSQLdatabase #Node.js #JavaScript #security", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:49:33 +0000", "from_user": "wernerkeil", "from_user_id": 50013926, "from_user_id_str": "50013926", "from_user_name": "Werner Keil", "geo": null, "id": 148746793348370430, "id_str": "148746793348370433", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1239138414/werner_Keil_2s_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1239138414/werner_Keil_2s_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"Domain modeling with Spring Data Neo4j (code)\" http://t.co/lrgRuPxZ #Neo4j #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:42:23 +0000", "from_user": "DZone", "from_user_id": 14782935, "from_user_id_str": "14782935", "from_user_name": "DZone", "geo": null, "id": 148744988870713340, "id_str": "148744988870713344", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/258714549/dzone-square-256_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/258714549/dzone-square-256_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\"Domain modeling with Spring Data Neo4j (code)\" http://t.co/lrgRuPxZ #Neo4j #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:26:43 +0000", "from_user": "yaymixer", "from_user_id": 263546351, "from_user_id_str": "263546351", "from_user_name": "yaymixer", "geo": null, "id": 148741044731785200, "id_str": "148741044731785216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1281882448/the_alhambra6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1281882448/the_alhambra6_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/sFGCrym7 JSR 107, JSR 347, Infinispan, NoSQL, Hot Rod, Memcached, CDI and Beyond - http://t.co/U8fIlHBO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:21:11 +0000", "from_user": "wernerkeil", "from_user_id": 50013926, "from_user_id_str": "50013926", "from_user_name": "Werner Keil", "geo": null, "id": 148739651727929340, "id_str": "148739651727929344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1239138414/werner_Keil_2s_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1239138414/werner_Keil_2s_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"Neo4j and GWT Based Social News Feed Demo on Wikipedia Graph Running\" http://t.co/NT7vcWvl #Java #Neo4j #GWT #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:20:54 +0000", "from_user": "csskarma", "from_user_id": 6997692, "from_user_id_str": "6997692", "from_user_name": "Tim Wright", "geo": null, "id": 148739582148624400, "id_str": "148739582148624386", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/92272281/tim-devils_punchbowl_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/92272281/tim-devils_punchbowl_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "Reading > You thought SQL injection was bad? Schema injection coming to a NoSQL site near you http://t.co/TFLZcVNP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:20:40 +0000", "from_user": "DZone", "from_user_id": 14782935, "from_user_id_str": "14782935", "from_user_name": "DZone", "geo": null, "id": 148739522274934800, "id_str": "148739522274934784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/258714549/dzone-square-256_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/258714549/dzone-square-256_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\"Neo4j and GWT Based Social News Feed Demo on Wikipedia Graph Running\" http://t.co/NT7vcWvl #Java #Neo4j #GWT #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:17:03 +0000", "from_user": "daschl", "from_user_id": 15881666, "from_user_id_str": "15881666", "from_user_name": "Michael Nitschinger", "geo": null, "id": 148738612031266800, "id_str": "148738612031266816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1170862042/photo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1170862042/photo_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@joedevon http://t.co/V30Aftlc good news? bad news? anyway #li3 in the news ;)", "to_user": "joedevon", "to_user_id": 21734113, "to_user_id_str": "21734113", "to_user_name": "Joe Devon \\u00AE"}, +{"created_at": "Mon, 19 Dec 2011 12:13:15 +0000", "from_user": "inyongwebid", "from_user_id": 324485660, "from_user_id_str": "324485660", "from_user_name": "Rachmat Hafidz", "geo": null, "id": 148737656703033340, "id_str": "148737656703033345", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1414298797/69073_152688678101738_100000818204398_223238_3422382_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1414298797/69073_152688678101738_100000818204398_223238_3422382_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Opo iku..?mbuh ra dong :D \"@adzymaniac: Cassandra vs MongoDB vs CouchDB vs Redis vs Riak vs HBase vs Membase vs Neo4j #NoSQL\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:10:21 +0000", "from_user": "ansonism", "from_user_id": 16527878, "from_user_id_str": "16527878", "from_user_name": "Anson Abraham", "geo": null, "id": 148736926537621500, "id_str": "148736926537621504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1583892138/Charactucture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583892138/Charactucture_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "NoSQL's great, but bring your A game http://t.co/FzogW44C", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:53:17 +0000", "from_user": "melihbirim", "from_user_id": 20923032, "from_user_id_str": "20923032", "from_user_name": "Melih Birim", "geo": null, "id": 148732633575194620, "id_str": "148732633575194624", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/772053658/snoopy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/772053658/snoopy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#NoSQL \\u00FCzerine \\u00E7al\\u0131\\u015Facak #Java bilen elemanlar ar\\u0131yoruz, ilgilenenler, arkada\\u015F\\u0131 i\\u015F arayanlar bana ula\\u015F\\u0131rlarsa sevinirim.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:51:31 +0000", "from_user": "melihbirim", "from_user_id": 20923032, "from_user_id_str": "20923032", "from_user_name": "Melih Birim", "geo": null, "id": 148732189075447800, "id_str": "148732189075447809", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/772053658/snoopy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/772053658/snoopy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "looking for developers to work on #java and #nosql.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:51:16 +0000", "from_user": "lukasafonov", "from_user_id": 418544298, "from_user_id_str": "418544298", "from_user_name": "Luka Safonov", "geo": null, "id": 148732123535249400, "id_str": "148732123535249408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1664063198/fuckyeah_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664063198/fuckyeah_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @d0znpp: Time-Based Blind NoSQL Injection http://t.co/GxlYsgav by Felipe Aragon", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:42:04 +0000", "from_user": "adsbringcust", "from_user_id": 80654241, "from_user_id_str": "80654241", "from_user_name": "david morgan", "geo": +{"coordinates": [33.982,-118.2365], "type": "Point"}, "id": 148729807625142270, "id_str": "148729807625142272", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/548706886/cj_-_Copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/548706886/cj_-_Copy_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "\\u270D US [contract] MySQL/NoSQL Data Administrator at http://t.co/n1qjBmAv \\u2714 #jobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:42:04 +0000", "from_user": "contractjob", "from_user_id": 93242849, "from_user_id_str": "93242849", "from_user_name": "david morgan", "geo": +{"coordinates": [33.982,-118.2365], "type": "Point"}, "id": 148729807553826800, "id_str": "148729807553826816", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/548511035/cj_-_Copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/548511035/cj_-_Copy_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "\\u270D US [contract] MySQL/NoSQL Data Administrator at http://t.co/Es6Olr6G \\u2714 #jobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:37:45 +0000", "from_user": "jacksonicson", "from_user_id": 14192906, "from_user_id_str": "14192906", "from_user_name": "Andreas Wolke", "geo": null, "id": 148728721556250620, "id_str": "148728721556250624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1164222240/50732250_N00_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1164222240/50732250_N00_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @styggiti: The problem with companies like IBM and Oracle baking NoSQL \"scalability\" into their products isn't the tech, it's the $$$ licensing.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:27:29 +0000", "from_user": "mmwesh21", "from_user_id": 271337937, "from_user_id_str": "271337937", "from_user_name": "Mary Mueni", "geo": null, "id": 148726137961451520, "id_str": "148726137961451520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1605709763/tw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1605709763/tw_normal.jpg", "source": "<a href="http://www.writelonger.com" rel="nofollow">Write Longer</a>", "text": "OhMyGod umebeat! RT @samkariu: A NoSQL database walks into a bar,but leaves immediately because he can't (cont) http://t.co/nHBrXqlp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:25:15 +0000", "from_user": "ronald131313", "from_user_id": 61864464, "from_user_id_str": "61864464", "from_user_name": "Ronald van Schaik", "geo": null, "id": 148725577199779840, "id_str": "148725577199779840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1172269627/SL380188_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1172269627/SL380188_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Hi nodes! Smth about queries, but not as you know them http://t.co/1hLm5Lqb #tocutashortstorylong #network #nosql #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:18:19 +0000", "from_user": "ajfeed", "from_user_id": 260762269, "from_user_id_str": "260762269", "from_user_name": "Ajinkya Feed", "geo": null, "id": 148723832637755400, "id_str": "148723832637755392", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "CompSci Cassandra, Zookeeper, Scribe, and Node.js Powering Rackspace Cloud Monitoring: Cassandra, Zookeeper, Scr... http://t.co/3JfdX71t", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:15:08 +0000", "from_user": "johtani", "from_user_id": 22106285, "from_user_id_str": "22106285", "from_user_name": "Jun Ohtani", "geo": null, "id": 148723031714435070, "id_str": "148723031714435072", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1124999827/1618939_92420970_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1124999827/1618939_92420970_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "#solrjp @hirotakaster: lucene 4.0\\u306E\\u304A\\u306F\\u306A\\u3057\\u3002\\u3053\\u3053\\u3089\\u8FBA\\u3068\\u304B\\u304B\\u306A\\u301C\\u3002 http://t.co/2jfXLK23\\n\\u300C\\u307E\\u305F Solr \\u306F\\uFF0C\\u5148\\u9032\\u7684\\u306A\\u5206\\u6563\\u30A4\\u30F3\\u30C7\\u30C3\\u30AF\\u30B9\\u6A5F\\u80FD\\u3092\\u6301\\u3064\\u3053\\u3068\\u3067\\uFF0CNoSQL \\u30C7\\u30FC\\u30BF\\u30B9\\u30C8\\u30A2\\u306B\\u5909\\u5BB9\\u3057\\u3064\\u3064\\u3042\\u308A\\u307E\\u3059\\u3002\\u300D\\u3068\\u304B\\u671F\\u5F85\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:14:36 +0000", "from_user": "samkariu", "from_user_id": 35271650, "from_user_id_str": "35271650", "from_user_name": "Sam Kariu", "geo": null, "id": 148722898411065340, "id_str": "148722898411065345", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1295717092/Photo0031_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1295717092/Photo0031_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "A NoSQL database walks into a bar,but leaves immediately because he can't find any tables #programmingjokes #ineedalife", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:14:29 +0000", "from_user": "hirotakaster", "from_user_id": 6160482, "from_user_id_str": "6160482", "from_user_name": "Hirotaka Niisato", "geo": null, "id": 148722867457097730, "id_str": "148722867457097728", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/255402187/fd6b1b8f5fbe55a836b7d91cd467e0c7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/255402187/fd6b1b8f5fbe55a836b7d91cd467e0c7_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "lucene 4.0\\u306E\\u304A\\u306F\\u306A\\u3057\\u3002\\u3053\\u3053\\u3089\\u8FBA\\u3068\\u304B\\u304B\\u306A\\u301C\\u3002 http://t.co/Dvrg2GoU\\n\\u300C\\u307E\\u305F Solr \\u306F\\uFF0C\\u5148\\u9032\\u7684\\u306A\\u5206\\u6563\\u30A4\\u30F3\\u30C7\\u30C3\\u30AF\\u30B9\\u6A5F\\u80FD\\u3092\\u6301\\u3064\\u3053\\u3068\\u3067\\uFF0CNoSQL \\u30C7\\u30FC\\u30BF\\u30B9\\u30C8\\u30A2\\u306B\\u5909\\u5BB9\\u3057\\u3064\\u3064\\u3042\\u308A\\u307E\\u3059\\u3002\\u300D\\u3068\\u304B\\u671F\\u5F85\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:12:37 +0000", "from_user": "somkiat", "from_user_id": 14053735, "from_user_id_str": "14053735", "from_user_name": "UP1", "geo": null, "id": 148722398345170940, "id_str": "148722398345170944", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/925551910/4db95ccd-33db-4d03-be01-292013d5abdb_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/925551910/4db95ccd-33db-4d03-be01-292013d5abdb_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "NoSQL Benchmarking http://t.co/73FQVnF1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:12:02 +0000", "from_user": "amorgaut", "from_user_id": 17018913, "from_user_id_str": "17018913", "from_user_name": "Alexandre Morgaut", "geo": null, "id": 148722253218066430, "id_str": "148722253218066432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1386942812/Photo_on_2011-06-08_at_12.11__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1386942812/Photo_on_2011-06-08_at_12.11__2_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "NoSQL, Server-Side JavaScript, Ajax, CSS3... All I love in one platform ;-) http://t.co/kdeKeTrd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:07:40 +0000", "from_user": "alex_knorr", "from_user_id": 70223223, "from_user_id_str": "70223223", "from_user_name": "alexander_knorr", "geo": null, "id": 148721150661369860, "id_str": "148721150661369857", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/485631635/mypictr_140x185_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/485631635/mypictr_140x185_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Java Engineer - Java, Map/Reduce, Spring, MySQL, Hadoop, NoSQL - monster: CA-San Francisco, CyberCoders - Be Sel... http://t.co/7mLruBJ6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:05:49 +0000", "from_user": "andriebamz", "from_user_id": 46189314, "from_user_id_str": "46189314", "from_user_name": "Bambang Andrie G", "geo": null, "id": 148720688428101630, "id_str": "148720688428101632", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687513201/gitar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687513201/gitar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @adzymaniac: Cassandra vs MongoDB vs CouchDB vs Redis vs Riak vs HBase vs Membase vs Neo4j #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:04:13 +0000", "from_user": "adzymaniac", "from_user_id": 80246884, "from_user_id_str": "80246884", "from_user_name": "Aji Kisworo Mukti", "geo": null, "id": 148720283665170430, "id_str": "148720283665170432", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1599098532/20768_1286042198610_1456819387_30792496_8162696_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599098532/20768_1286042198610_1456819387_30792496_8162696_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Cassandra vs MongoDB vs CouchDB vs Redis vs Riak vs HBase vs Membase vs Neo4j #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:02:25 +0000", "from_user": "mynosql_popescu", "from_user_id": 197901055, "from_user_id_str": "197901055", "from_user_name": "myNoSQL", "geo": null, "id": 148719831741513730, "id_str": "148719831741513728", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cassandra, Zookeeper, Scribe, and Node.js Powering Rackspace Cloud Monitoring: Cassandra, Zookeeper, Scribe, and... http://t.co/XZXenQjE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:01:24 +0000", "from_user": "KiteVC", "from_user_id": 1121181, "from_user_id_str": "1121181", "from_user_name": "Bill Tai", "geo": null, "id": 148719574072832000, "id_str": "148719574072832000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/296672253/twitter_avatar_btai_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/296672253/twitter_avatar_btai_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @satolone: Real-Time Log Collection with Fluentd and MongoDB. #nosql http://t.co/XO1fl8LQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:56:53 +0000", "from_user": "blackthorne", "from_user_id": 9874712, "from_user_id_str": "9874712", "from_user_name": "Francisco Gama T. R.", "geo": null, "id": 148718438934786050, "id_str": "148718438934786049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/286408472/owl_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/286408472/owl_normal.jpeg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @opexxx: Syhunt: Time-Based Blind NoSQL Injection http://t.co/SJn9qucL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:47:27 +0000", "from_user": "ajfeed", "from_user_id": 260762269, "from_user_id_str": "260762269", "from_user_name": "Ajinkya Feed", "geo": null, "id": 148716064350535680, "id_str": "148716064350535680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "CompSci MongoDB in Scala Using Casbah and Salat Object Document Mapping: MongoDB in Scala Using Casbah and Salat... http://t.co/Wv3hxARD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:28:09 +0000", "from_user": "mynosql_popescu", "from_user_id": 197901055, "from_user_id_str": "197901055", "from_user_name": "myNoSQL", "geo": null, "id": 148711205706539000, "id_str": "148711205706539008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "MongoDB in Scala Using Casbah and Salat Object Document Mapping: MongoDB in Scala Using Casbah and Salat Object ... http://t.co/IHJQU1pa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:27:21 +0000", "from_user": "pureflight", "from_user_id": 108616181, "from_user_id_str": "108616181", "from_user_name": "\\uD604\\uCCA0\\uBBFC", "geo": null, "id": 148711008381304830, "id_str": "148711008381304832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1179714913/70532_100001659583329_194372_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1179714913/70532_100001659583329_194372_q_normal.jpg", "source": "<a href="http://www.alphonsolabs.com/" rel="nofollow">Pulse News</a>", "text": "Nati Shalom's Blog: 2012 Cloud, PaaS, NoSQL Predictions http://t.co/1UsvumDt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:24:32 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 148710296645681150, "id_str": "148710296645681152", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL Screencast HBase Schema Design \\u2022 myNoSQL http://t.co/BqsfUNQp #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:22:25 +0000", "from_user": "kpy3", "from_user_id": 52630563, "from_user_id_str": "52630563", "from_user_name": "Sergey Yelin", "geo": null, "id": 148709763025338370, "id_str": "148709763025338369", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1031761848/syelin_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1031761848/syelin_normal.jpeg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @izs: Every sufficiently complicated NoSQL client program contains an ad-hoc, informally specified, bug-ridden, slow implementation of half of SQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:21:03 +0000", "from_user": "Zavidan", "from_user_id": 114202957, "from_user_id_str": "114202957", "from_user_name": "Zavidan", "geo": null, "id": 148709422653386750, "id_str": "148709422653386753", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1533050126/photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1533050126/photo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @d0znpp: Time-Based Blind NoSQL Injection http://t.co/GxlYsgav by Felipe Aragon", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:15:23 +0000", "from_user": "emedinam", "from_user_id": 14658093, "from_user_id_str": "14658093", "from_user_name": "emedinam", "geo": null, "id": 148707996074131460, "id_str": "148707996074131456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/504587573/careto_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/504587573/careto_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Auction and Bidding Applications with Document-Based NoSQL | .NET Zone: http://t.co/UBUl83wD via @AddThis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:08:28 +0000", "from_user": "lukkas35", "from_user_id": 109898948, "from_user_id_str": "109898948", "from_user_name": "lukkas magikk", "geo": null, "id": 148706255962247170, "id_str": "148706255962247169", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1165481660/Ficelle_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1165481660/Ficelle_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @lecolibrilibre: RT @sraymond38: #cassandra : explication de son fonctionnement http://t.co/4AufWt2Z #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:07:29 +0000", "from_user": "lecolibrilibre", "from_user_id": 131956085, "from_user_id_str": "131956085", "from_user_name": "dhoko", "geo": null, "id": 148706006204022800, "id_str": "148706006204022784", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1377814405/250dhokoJUNE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1377814405/250dhokoJUNE_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @sraymond38: #cassandra : explication de son fonctionnement http://t.co/4AufWt2Z #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:04:09 +0000", "from_user": "philjones88", "from_user_id": 72888516, "from_user_id_str": "72888516", "from_user_name": "Phil Jones", "geo": null, "id": 148705167209021440, "id_str": "148705167209021440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1599161702/20111021_094600_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599161702/20111021_094600_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @RavenDB: New video: Polymorphism and #RavenDB http://t.co/qKb84X1B #nosql #dotnet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:00:13 +0000", "from_user": "markwigmans", "from_user_id": 7527532, "from_user_id_str": "7527532", "from_user_name": "Mark Wigmans", "geo": null, "id": 148704178221482000, "id_str": "148704178221481985", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/837273831/MWI_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/837273831/MWI_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "RT @emadgeorgy: RT @dabuki: #NOSQL Patterns http://t.co/7ubvpOM4 via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:59:07 +0000", "from_user": "radekhub", "from_user_id": 378507528, "from_user_id_str": "378507528", "from_user_name": "Radek Hubner", "geo": null, "id": 148703901410013200, "id_str": "148703901410013184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1597693121/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1597693121/profile_normal.jpg", "source": "<a href="http://twitter.com" rel="nofollow">Tweetie for Mac</a>", "text": "RT @_dagi: Pondelni #czjug Lightning Talks rozdeleny do techto tracku: NoSQL/High scalability, REST/Web, Java a Tools http://t.co/vvrzzuq8 prosim RT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:55:15 +0000", "from_user": "soaj1664ashar", "from_user_id": 277735240, "from_user_id_str": "277735240", "from_user_name": "Ashar Javed", "geo": null, "id": 148702928444719100, "id_str": "148702928444719104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1301332153/ashar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1301332153/ashar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @d0znpp: Time-Based Blind NoSQL Injection http://t.co/GxlYsgav by Felipe Aragon", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:49:50 +0000", "from_user": "ucq", "from_user_id": 14949468, "from_user_id_str": "14949468", "from_user_name": "\\u52C7\\u58EBQ", "geo": null, "id": 148701564507402240, "id_str": "148701564507402240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1203331429/ucq2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1203331429/ucq2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @d0znpp: Time-Based Blind NoSQL Injection http://t.co/GxlYsgav by Felipe Aragon", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:49:27 +0000", "from_user": "tuchihan", "from_user_id": 167727325, "from_user_id_str": "167727325", "from_user_name": "tuchihan", "geo": null, "id": 148701470148141060, "id_str": "148701470148141056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1280330236/img_0262_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1280330236/img_0262_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @d0znpp: Time-Based Blind NoSQL Injection http://t.co/GxlYsgav by Felipe Aragon", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:40:14 +0000", "from_user": "stevestarges", "from_user_id": 216655995, "from_user_id_str": "216655995", "from_user_name": "Steve Starges", "geo": null, "id": 148699148948996100, "id_str": "148699148948996096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1498209216/275px-Manga_in_Jp.svg_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1498209216/275px-Manga_in_Jp.svg_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Search Analytics: Business Value & BigData NoSQL Backend: Search is increasingly the primary information access ... http://t.co/TbKHtpOE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:36:42 +0000", "from_user": "mbenlakhoua", "from_user_id": 20861609, "from_user_id_str": "20861609", "from_user_name": "Mourad Ben Lakhoua", "geo": null, "id": 148698260415066100, "id_str": "148698260415066112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662683223/IMG_0043_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662683223/IMG_0043_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @d0znpp: Time-Based Blind NoSQL Injection http://t.co/GxlYsgav by Felipe Aragon", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:35:54 +0000", "from_user": "d0znpp", "from_user_id": 136229524, "from_user_id_str": "136229524", "from_user_name": "Vladimir Vorontsov", "geo": null, "id": 148698059386265600, "id_str": "148698059386265600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1158251605/vasbl_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1158251605/vasbl_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Time-Based Blind NoSQL Injection http://t.co/GxlYsgav by Felipe Aragon", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:21:57 +0000", "from_user": "creativesuk", "from_user_id": 247378564, "from_user_id_str": "247378564", "from_user_name": "creativesonline.com", "geo": null, "id": 148694546136563700, "id_str": "148694546136563712", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1392454092/lkdnimage01_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1392454092/lkdnimage01_normal.png", "source": "<a href="http://www.creativesonline.com" rel="nofollow">Creativesonline</a>", "text": "nocompany: MySQL/NoSQL Data Administrator (Sunnyvale, California) http://t.co/26auBsxl\\n #Jobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:16:52 +0000", "from_user": "Driadan", "from_user_id": 69888556, "from_user_id_str": "69888556", "from_user_name": "Guillermo Vay\\u00E1", "geo": null, "id": 148693269059088400, "id_str": "148693269059088384", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/387935026/bomb_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/387935026/bomb_normal.png", "source": "<a href="http://code.google.com/p/qwit/" rel="nofollow">Qwit</a>", "text": "dia y pico leyendo sobre NoSQL y aun no se si me merece la pena el cambio => probablemente no", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:07:09 +0000", "from_user": "ReaktorNow", "from_user_id": 280949688, "from_user_id_str": "280949688", "from_user_name": "Reaktor", "geo": null, "id": 148690822647382000, "id_str": "148690822647382016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1609101118/reaktor_logo_big_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609101118/reaktor_logo_big_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/G2OASX3A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:58:11 +0000", "from_user": "kbucek", "from_user_id": 16308531, "from_user_id_str": "16308531", "from_user_name": "Karol Bucek", "geo": null, "id": 148688564828385280, "id_str": "148688564828385280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1185709496/boc_sqd_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1185709496/boc_sqd_small_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "my twitter interactions are incomplete, my github activity is missing an action or two ... guess this is what you'll get in the NoSQL world", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:42:10 +0000", "from_user": "adesousa", "from_user_id": 21821336, "from_user_id_str": "21821336", "from_user_name": "Antonio de Sousa", "geo": null, "id": 148684536304246800, "id_str": "148684536304246785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1286911782/Nobody_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1286911782/Nobody_normal.gif", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Auction and Bidding Applications with Document-Based NoSQL http://t.co/MRboxqme v\\u00EDa @dzone", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:40:55 +0000", "from_user": "adesousa", "from_user_id": 21821336, "from_user_id_str": "21821336", "from_user_name": "Antonio de Sousa", "geo": null, "id": 148684222327037950, "id_str": "148684222327037952", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1286911782/Nobody_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1286911782/Nobody_normal.gif", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Search Analytics: Business Value & BigData NoSQL Backend http://t.co/dtvMaQB5 v\\u00EDa @dzone", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:36:01 +0000", "from_user": "norman0818", "from_user_id": 248284796, "from_user_id_str": "248284796", "from_user_name": "Norman Chen", "geo": null, "id": 148682986760581120, "id_str": "148682986760581120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1236656213/41526_100000049291290_4387_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1236656213/41526_100000049291290_4387_q_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "The Hard Life Of A NoSQL Coder http://t.co/gMLwp3TK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:35:44 +0000", "from_user": "EldarSilver", "from_user_id": 240722531, "from_user_id_str": "240722531", "from_user_name": "Eldar", "geo": null, "id": 148682916082360320, "id_str": "148682916082360320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1228439341/20100804_011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1228439341/20100804_011_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @1nf0s3cpt: Syhunt: Time-Based Blind NoSQL Injection http://t.co/qDJ2bAR9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:24:37 +0000", "from_user": "BusinessAr", "from_user_id": 116773657, "from_user_id_str": "116773657", "from_user_name": "Business Articles", "geo": null, "id": 148680120717148160, "id_str": "148680120717148160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/713772241/writing_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/713772241/writing_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Search Analytics: Business Value & BigData NoSQL Backend http://t.co/5VFnPNvm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:20:13 +0000", "from_user": "adesousa", "from_user_id": 21821336, "from_user_id_str": "21821336", "from_user_name": "Antonio de Sousa", "geo": null, "id": 148679011491516400, "id_str": "148679011491516417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1286911782/Nobody_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1286911782/Nobody_normal.gif", "source": "<a href="http://tweetmeme.com" rel="nofollow">TweetMeme</a>", "text": "Nati Shalom's Blog: 2012 Cloud, PaaS, NoSQL Predictions http://t.co/Pi0GGe3J", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:01:02 +0000", "from_user": "jinnli", "from_user_id": 18330621, "from_user_id_str": "18330621", "from_user_name": "\\u01C7", "geo": null, "id": 148674184707457020, "id_str": "148674184707457024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1579601171/_______normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1579601171/_______normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Search Analytics: Business Value & BigData NoSQL Backend http://t.co/TI61bJgc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:01:01 +0000", "from_user": "icodenow", "from_user_id": 366706300, "from_user_id_str": "366706300", "from_user_name": "CODE IT", "geo": null, "id": 148674182081814530, "id_str": "148674182081814528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Search Analytics: Business Value & BigData NoSQL Backend: Search is increasingly the primary information... http://t.co/VPsmV1mJ #4geeks", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:59:51 +0000", "from_user": "mahdi", "from_user_id": 718993, "from_user_id_str": "718993", "from_user_name": "Mahdi Taghizadeh", "geo": null, "id": 148673887310323700, "id_str": "148673887310323712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697108280/violet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697108280/violet_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "Search Analytics: Business Value & BigData NoSQL Backend. http://t.co/MVJirEum #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:59:51 +0000", "from_user": "KaiWaehner", "from_user_id": 207673942, "from_user_id_str": "207673942", "from_user_name": "Kai W\\u00E4hner", "geo": null, "id": 148673885485793280, "id_str": "148673885485793280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1152411806/70768_702410504_6783159_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1152411806/70768_702410504_6783159_q_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Kingwulf: Apache Gora community has voted to graduate from incubator: http://t.co/JgOUbsKd #gora #nosql #orm #asf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:59:02 +0000", "from_user": "dev_links", "from_user_id": 309995604, "from_user_id_str": "309995604", "from_user_name": "Joe Fawzy", "geo": null, "id": 148673682385014800, "id_str": "148673682385014784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Search Analytics: Business Value & BigData NoSQL Backend http://t.co/Z9HJFd5R", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:57:34 +0000", "from_user": "godofthenetwork", "from_user_id": 427834340, "from_user_id_str": "427834340", "from_user_name": "Carlos Navarrete", "geo": null, "id": 148673313684729860, "id_str": "148673313684729856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Search Analytics: Business Value & BigData NoSQL Backend: Search is increasingly the primary information access ... http://t.co/OMfE3ZVW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:56:30 +0000", "from_user": "couchbase", "from_user_id": 237401623, "from_user_id_str": "237401623", "from_user_name": "Couchbase", "geo": null, "id": 148673044481720320, "id_str": "148673044481720320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1335620360/couchbase_couch_red_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335620360/couchbase_couch_red_twitter_normal.png", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "Great intro by Sharon, now Frank talking 2.0 - #CouchConf Israel has begun! #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:47:27 +0000", "from_user": "arichika", "from_user_id": 7707772, "from_user_id_str": "7707772", "from_user_name": "\\u8C37\\u53E3\\u6709\\u8FD1/\\u305F\\u306B\\u3050\\u3061\\u3042\\u308A\\u3061\\u304B", "geo": null, "id": 148670765770878980, "id_str": "148670765770878978", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1505137198/mussa4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505137198/mussa4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "SQL Azure (RDBMS) vs Azure Table (NoSQL) \\u306E\\u8996\\u70B9\\u3067\\u306E\\u697D\\u3057\\u3044\\u8A71\\u984C #azurecsv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:38:37 +0000", "from_user": "alak86", "from_user_id": 47793024, "from_user_id_str": "47793024", "from_user_name": "Alak Awesome", "geo": null, "id": 148668543532150800, "id_str": "148668543532150784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1151244551/41619_1265676292_5318_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1151244551/41619_1265676292_5318_q_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "*Should* be interesting: Time-Based Blind NoSQL Injection http://t.co/1yQIjLgH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:30:41 +0000", "from_user": "keoko", "from_user_id": 6192952, "from_user_id_str": "6192952", "from_user_name": "natxo cabr\\u00E9", "geo": null, "id": 148666544900157440, "id_str": "148666544900157440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/690250910/avatarnatxopeke_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/690250910/avatarnatxopeke_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @old_sound: RabbitMQ in Action is a book for hipsters. See this excerpt: \"Mnesia, the Erlang database that was there even before NoSQL was cool\".", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:29:15 +0000", "from_user": "florentsolt", "from_user_id": 7453512, "from_user_id_str": "7453512", "from_user_name": "Florent Solt", "geo": null, "id": 148666187130220540, "id_str": "148666187130220544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1237644468/5425226663_a228d6f5f6_m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1237644468/5425226663_a228d6f5f6_m_normal.jpg", "source": "Zite Personalized Magazine", "text": "NoSQL's great, but bring your A game http://t.co/rszM8hhU via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:24:32 +0000", "from_user": "markfermor1", "from_user_id": 180757899, "from_user_id_str": "180757899", "from_user_name": "Mark", "geo": null, "id": 148664998502211600, "id_str": "148664998502211584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1175418521/3_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1175418521/3_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Picking the Right NoSQL Database Tool - A good beginners introduction to that thing called NoSQL - http://t.co/bV67zs5o", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:12:34 +0000", "from_user": "GoodmanBryan", "from_user_id": 426722152, "from_user_id_str": "426722152", "from_user_name": "Bryan Goodman ", "geo": null, "id": 148661988535439360, "id_str": "148661988535439360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1669828500/avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669828500/avatar_normal.png", "source": "<a href="http://test.com/twitterapp/" rel="nofollow">Emilys Test App</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/z0qq0LRY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:08:04 +0000", "from_user": "s_kunk", "from_user_id": 34025095, "from_user_id_str": "34025095", "from_user_name": "(\\u25E3(\\u25E3_(\\u25E3_\\u25E2)_\\u25E2)\\u25E2)", "geo": null, "id": 148660855037362180, "id_str": "148660855037362176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1402683690/isee_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1402683690/isee_normal.png", "source": "<a href="http://www.egeektronic.com/" rel="nofollow">eGEEKtronic</a>", "text": "RT @egeektronic: Time-Based Blind NoSQL Injection http://t.co/mN4TsHbB #webappsec", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:04:37 +0000", "from_user": "emadgeorgy", "from_user_id": 231323969, "from_user_id_str": "231323969", "from_user_name": "Emad G.", "geo": null, "id": 148659988708077570, "id_str": "148659988708077568", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1200600558/EG_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1200600558/EG_normal.JPG", "source": "<a href="http://www.osfoora.com" rel="nofollow">Osfoora HD</a>", "text": "RT @dabuki: NOSQL Patterns http://t.co/CmM9zoyF via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:04:04 +0000", "from_user": "kisasondi", "from_user_id": 37629519, "from_user_id_str": "37629519", "from_user_name": "Tonimir Kisasondi", "geo": null, "id": 148659850157629440, "id_str": "148659850157629440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1279503325/ja2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1279503325/ja2_normal.jpg", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "RT @wollepb: NoSQL's great, but bring your A game http://t.co/4tZG5ihI via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:02:49 +0000", "from_user": "braoru", "from_user_id": 391628982, "from_user_id_str": "391628982", "from_user_name": "B", "geo": null, "id": 148659532736905200, "id_str": "148659532736905217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1590032365/dessin_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1590032365/dessin_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @opexxx: Syhunt: Time-Based Blind NoSQL Injection http://t.co/1C0AMtoL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:55:57 +0000", "from_user": "drypot", "from_user_id": 67624477, "from_user_id_str": "67624477", "from_user_name": "\\uBC15\\uADDC\\uD604", "geo": null, "id": 148657803962220540, "id_str": "148657803962220544", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1443294125/harry-potter-1x1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1443294125/harry-potter-1x1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Join \\uAE30\\uB2A5\\uC774 \\uC5C6\\uB294 NoSQL \\uC2DC\\uC2A4\\uD15C\\uC740 \\uC5B4\\uD50C\\uB9AC\\uCF00\\uC774\\uC158 \\uB2E8\\uC5D0 \\uC791\\uC5C5\\uC774 \\uBAB0\\uB9AC\\uAE30 \\uB54C\\uBB38\\uC5D0 \\uB3C4\\uBA54\\uC778 \\uBAA8\\uB378\\uC744 \\uC7A1\\uACE0 \\uAC00\\uB294 \\uBC29\\uC2DD\\uB4E4\\uC774 \\uC885\\uAD6D\\uC5D0\\uB294 \\uB354 \\uC720\\uB9AC\\uD560 \\uC218 \\uC788\\uB2E4. Join \\uC744 \\uC790\\uB3D9\\uC73C\\uB85C \\uD574\\uC904\\uD14C\\uB2C8.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 06:38:44 +0000", "from_user": "escan_sachin", "from_user_id": 270336633, "from_user_id_str": "270336633", "from_user_name": "sachin", "geo": null, "id": 148653471934070800, "id_str": "148653471934070784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @opexxx: Syhunt: Time-Based Blind NoSQL Injection http://t.co/1C0AMtoL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:32:19 +0000", "from_user": "QAJournal", "from_user_id": 268847164, "from_user_id_str": "268847164", "from_user_name": "IT Techy", "geo": null, "id": 148651856523042800, "id_str": "148651856523042816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/KRLrcfIs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:25:46 +0000", "from_user": "fakod", "from_user_id": 36150256, "from_user_id_str": "36150256", "from_user_name": "fakod", "geo": null, "id": 148650207956041730, "id_str": "148650207956041728", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/572535508/ich_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/572535508/ich_normal.jpg", "source": "Zite Personalized Magazine", "text": "RT @dabuki: NOSQL Patterns http://t.co/SfQBseBA via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:18:43 +0000", "from_user": "eldariof", "from_user_id": 192175898, "from_user_id_str": "192175898", "from_user_name": "Eldar Abdrazakov", "geo": null, "id": 148648435732590600, "id_str": "148648435732590592", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1432763188/eldar_abdrazakov_normal.jpe", "profile_image_url_https": "https://si0.twimg.com/profile_images/1432763188/eldar_abdrazakov_normal.jpe", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "RT @kumarshantanu: NoSQL Benchmarking http://t.co/MyAqNTmk /via @CUBRID", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:06:00 +0000", "from_user": "dabuki", "from_user_id": 16038866, "from_user_id_str": "16038866", "from_user_name": "buki", "geo": null, "id": 148645237106016260, "id_str": "148645237106016256", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1170602051/logo_head_white_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1170602051/logo_head_white_normal.png", "source": "Zite Personalized Magazine", "text": "NOSQL Patterns http://t.co/SfQBseBA via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:05:22 +0000", "from_user": "egeektronic", "from_user_id": 60040368, "from_user_id_str": "60040368", "from_user_name": "Teguh", "geo": null, "id": 148645077810552830, "id_str": "148645077810552832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1611536804/egeektronic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611536804/egeektronic_normal.jpg", "source": "<a href="http://www.egeektronic.com/" rel="nofollow">eGEEKtronic</a>", "text": "Time-Based Blind NoSQL Injection http://t.co/mN4TsHbB #webappsec", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:05:07 +0000", "from_user": "kumarshantanu", "from_user_id": 18362831, "from_user_id_str": "18362831", "from_user_name": "Shantanu Kumar", "geo": null, "id": 148645014224896000, "id_str": "148645014224896001", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1551932451/test-pic_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1551932451/test-pic_normal.JPG", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "NoSQL Benchmarking http://t.co/MyAqNTmk /via @CUBRID", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:03:36 +0000", "from_user": "tonivdv", "from_user_id": 24175097, "from_user_id_str": "24175097", "from_user_name": "Toni Van de Voorde", "geo": null, "id": 148644630236381200, "id_str": "148644630236381184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/444540494/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/444540494/me_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @old_sound: RabbitMQ in Action is a book for hipsters. See this excerpt: \"Mnesia, the Erlang database that was there even before NoSQL was cool\".", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:01:54 +0000", "from_user": "Edubeat", "from_user_id": 49025026, "from_user_id_str": "49025026", "from_user_name": "EDUBEAT", "geo": null, "id": 148644202090209280, "id_str": "148644202090209280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702346828/17a8f0e2a6b09d15ef80c4bcdf1c78341_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702346828/17a8f0e2a6b09d15ef80c4bcdf1c78341_normal.jpg", "source": "<a href="http://www.visibli.com" rel="nofollow">Visibli</a>", "text": "NoSQL\\u2019s great, but bring your A game \\u00AB mashtop - the top links, mashed up: \\n\\t\\thttp://t.co/mVy9hPka\\n\\t\\n\\t\\n\\t\\tMongoDB ... http://t.co/v2107g0X", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:40:37 +0000", "from_user": "madmongol", "from_user_id": 14371668, "from_user_id_str": "14371668", "from_user_name": "Altan Khendup", "geo": null, "id": 148638848308613120, "id_str": "148638848308613120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/79843945/thesteppesagain_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/79843945/thesteppesagain_normal.jpg", "source": "<a href="http://www.alphonsolabs.com/" rel="nofollow">Pulse News</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/CyORh81s", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:38:45 +0000", "from_user": "understeer", "from_user_id": 4451471, "from_user_id_str": "4451471", "from_user_name": "MATSUO Yasuhiro ", "geo": null, "id": 148638376306802700, "id_str": "148638376306802688", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1314550179/4451471_origin_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1314550179/4451471_origin_normal.gif", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Auction and Bidding Applications with Document-Based NoSQL http://t.co/n6HddVFa @dzone\\u3055\\u3093\\u304B\\u3089", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:31:18 +0000", "from_user": "Trust_IT", "from_user_id": 78572553, "from_user_id_str": "78572553", "from_user_name": "Trust-IT Security ", "geo": null, "id": 148636501125758980, "id_str": "148636501125758977", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/637910176/logo-white_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/637910176/logo-white_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Full Disclosure: Syhunt: Time-Based Blind NoSQL Injection http://t.co/f32DLj5b", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:21:12 +0000", "from_user": "the_toon", "from_user_id": 135405236, "from_user_id_str": "135405236", "from_user_name": "Sergei Plaxienko", "geo": null, "id": 148633959494983680, "id_str": "148633959494983680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1536129335/2782651_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1536129335/2782651_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @old_sound: RabbitMQ in Action is a book for hipsters. See this excerpt: \"Mnesia, the Erlang database that was there even before NoSQL was cool\".", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:12:02 +0000", "from_user": "p_toi", "from_user_id": 81106743, "from_user_id_str": "81106743", "from_user_name": "Peter Toi", "geo": null, "id": 148631656012591100, "id_str": "148631656012591104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1572541097/twitter-head_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572541097/twitter-head_normal.png", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "#NoSQL\\u2019s great, but bring your A game http://t.co/UGoExtzH #MongoDB #backtoschool", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:10:46 +0000", "from_user": "papulovskiy", "from_user_id": 117332131, "from_user_id_str": "117332131", "from_user_name": "Alexey S Papulovskiy", "geo": null, "id": 148631335639068670, "id_str": "148631335639068672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1370938934/transparent_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1370938934/transparent_normal.gif", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @old_sound: RabbitMQ in Action is a book for hipsters. See this excerpt: \"Mnesia, the Erlang database that was there even before NoSQL was cool\".", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:59:41 +0000", "from_user": "shadowc4t", "from_user_id": 60483638, "from_user_id_str": "60483638", "from_user_name": "shadowcat", "geo": null, "id": 148628546653392900, "id_str": "148628546653392897", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/333831136/computer_Don_t_Spy_on_Me_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/333831136/computer_Don_t_Spy_on_Me_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Full Disclosure: Syhunt: Time-Based Blind NoSQL Injection: http://t.co/PMs2FVkE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:49:54 +0000", "from_user": "1nf0s3cpt", "from_user_id": 219517617, "from_user_id_str": "219517617", "from_user_name": "infosecpt", "geo": null, "id": 148626083909074940, "id_str": "148626083909074944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1176163956/wallpaper-439252_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1176163956/wallpaper-439252_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Syhunt: Time-Based Blind NoSQL Injection http://t.co/qDJ2bAR9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:48:30 +0000", "from_user": "write2munish", "from_user_id": 19847332, "from_user_id_str": "19847332", "from_user_name": "Munish K Gupta", "geo": null, "id": 148625732409622530, "id_str": "148625732409622528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/949433271/munish_gupta_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/949433271/munish_gupta_normal.PNG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/uWMlxxXo <- interesting", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:38:30 +0000", "from_user": "danushkamenik", "from_user_id": 17956629, "from_user_id_str": "17956629", "from_user_name": "Danushka", "geo": null, "id": 148623215600738300, "id_str": "148623215600738305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/66709601/my_icon_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/66709601/my_icon_normal.JPG", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "RT @srinath_perera: NoSQL reading list http://t.co/0e7DIJgl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:38:12 +0000", "from_user": "i812ht", "from_user_id": 53246203, "from_user_id_str": "53246203", "from_user_name": "David Kramer", "geo": null, "id": 148623138689777660, "id_str": "148623138689777664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1288187126/ImageJPEG_6749_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1288187126/ImageJPEG_6749_normal.jpg", "source": "<a href="http://SkyGrid.com/" rel="nofollow">SkyGrid</a>", "text": "NoSQL's great, but bring your A game\\nhttp://t.co/8OzNElex", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:36:38 +0000", "from_user": "tecnox", "from_user_id": 10869762, "from_user_id_str": "10869762", "from_user_name": "Enrique Ortu\\u00F1o", "geo": null, "id": 148622745821921280, "id_str": "148622745821921280", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1116237115/dorsal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1116237115/dorsal_normal.jpg", "source": "<a href="http://www.twhirl.org" rel="nofollow">Seesmic twhirl</a>", "text": "Interesantes herramientas para administrar una MongoDB http://t.co/0lUG80WU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:21:09 +0000", "from_user": "mafazrox", "from_user_id": 69370559, "from_user_id_str": "69370559", "from_user_name": "Mafaz Ansar", "geo": null, "id": 148618850143973380, "id_str": "148618850143973376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1327724323/189903_192239740815593_100000887048797_462749_851113_s_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1327724323/189903_192239740815593_100000887048797_462749_851113_s_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @louiebaur: NoSQL\\u2019s great, but bring your A game http://t.co/tAHu1Nvc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:17:48 +0000", "from_user": "SainathDK", "from_user_id": 335859162, "from_user_id_str": "335859162", "from_user_name": "Sainath", "geo": null, "id": 148618004656160770, "id_str": "148618004656160769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1456806781/Twitter_profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1456806781/Twitter_profile_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "NoSQL's great, but bring your A game http://t.co/bLixDrNJ via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:08:18 +0000", "from_user": "belgort", "from_user_id": 6902482, "from_user_id_str": "6902482", "from_user_name": "Bruce Elgort", "geo": null, "id": 148615613814804480, "id_str": "148615613814804480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1103744224/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1103744224/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Our podcast with @stickfight on NoSQL is approaching 3,500 listens http://t.co/J1Yzs0To", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:56:14 +0000", "from_user": "Radarbot", "from_user_id": 231963930, "from_user_id_str": "231963930", "from_user_name": "Securityradarbot", "geo": null, "id": 148612576845107200, "id_str": "148612576845107200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Syhunt: Time-Based Blind NoSQL Injection: Posted by Felipe M. Aragon on Dec 18Time-Based Blind NoSQL Injection -... http://t.co/NxuqSZxd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:56:13 +0000", "from_user": "hacktalkblog", "from_user_id": 38467809, "from_user_id_str": "38467809", "from_user_name": "Hack Talk", "geo": null, "id": 148612575867846660, "id_str": "148612575867846656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/585291781/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/585291781/logo_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Full Disclosure Syhunt: Time-Based Blind NoSQL Injection: Posted by Felipe M. Aragon on Dec 18Time-Based Blind N... http://t.co/TPbPVPwa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:56:13 +0000", "from_user": "SecMailLists", "from_user_id": 92154392, "from_user_id_str": "92154392", "from_user_name": "SecMailLists", "geo": null, "id": 148612575012208640, "id_str": "148612575012208640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/540950019/Mail-envelope_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/540950019/Mail-envelope_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Full Disclosure: Syhunt: Time-Based Blind NoSQL Injection http://t.co/Y0NYRGnZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:50:55 +0000", "from_user": "thefrontend", "from_user_id": 95566127, "from_user_id_str": "95566127", "from_user_name": "The Frontend", "geo": null, "id": 148611239495467000, "id_str": "148611239495467008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/566109951/fe_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/566109951/fe_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Auction and Bidding Applications with Document-Based NoSQL http://t.co/AnPe1bjl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:50:21 +0000", "from_user": "opexxx", "from_user_id": 32839909, "from_user_id_str": "32839909", "from_user_name": "alexander knorr", "geo": null, "id": 148611098529112060, "id_str": "148611098529112064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/303774966/3124604_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/303774966/3124604_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Syhunt: Time-Based Blind NoSQL Injection http://t.co/1C0AMtoL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:45:07 +0000", "from_user": "mahdi", "from_user_id": 718993, "from_user_id_str": "718993", "from_user_name": "Mahdi Taghizadeh", "geo": null, "id": 148609782184550400, "id_str": "148609782184550400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697108280/violet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697108280/violet_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "Auction and Bidding Applications with Document-Based NoSQL. http://t.co/QifrBGH4 #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:43:57 +0000", "from_user": "DevelopMentor_", "from_user_id": 58955729, "from_user_id_str": "58955729", "from_user_name": "DevelopMentor", "geo": null, "id": 148609487744409600, "id_str": "148609487744409601", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/325399980/basic_dm_logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/325399980/basic_dm_logo_normal.png", "source": "<a href="http://www.develop.com/" rel="nofollow">DevelopMentor TweetBot</a>", "text": "@bobbeauch yes I did it's all good #DevelopMentor. I am working on #noSQL and #SQLServer2012 now, what about you? (via @lynnlangit)", "to_user": "bobbeauch", "to_user_id": 229214354, "to_user_id_str": "229214354", "to_user_name": "Bob Beauchemin", "in_reply_to_status_id": 148605832064536580, "in_reply_to_status_id_str": "148605832064536577"}, +{"created_at": "Mon, 19 Dec 2011 03:42:11 +0000", "from_user": "dev_links", "from_user_id": 309995604, "from_user_id_str": "309995604", "from_user_name": "Joe Fawzy", "geo": null, "id": 148609042066059260, "id_str": "148609042066059264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Auction and Bidding Applications with Document-Based NoSQL http://t.co/QskIDnB0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:39:58 +0000", "from_user": "lynnlangit", "from_user_id": 3105491, "from_user_id_str": "3105491", "from_user_name": "Lynn Langit", "geo": null, "id": 148608483506401280, "id_str": "148608483506401280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/125258306/meRed_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/125258306/meRed_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@bobbeauch yes I did it's all good #DevelopMentor. I am working on #noSQL and #SQLServer2012 now, what about you?", "to_user": "bobbeauch", "to_user_id": 229214354, "to_user_id_str": "229214354", "to_user_name": "Bob Beauchemin", "in_reply_to_status_id": 148605832064536580, "in_reply_to_status_id_str": "148605832064536577"}, +{"created_at": "Mon, 19 Dec 2011 03:31:28 +0000", "from_user": "oxytehehak", "from_user_id": 316989823, "from_user_id_str": "316989823", "from_user_name": "Marsland Bumpers", "geo": null, "id": 148606347435450370, "id_str": "148606347435450368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1446708114/1416_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1446708114/1416_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Definitive Guide to MongoDB: The NoSQL Database for Cloud and Desktop Computing (Paperback) http://t.co/JALNqDN4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:30:37 +0000", "from_user": "pinotblogger", "from_user_id": 1586961, "from_user_id_str": "1586961", "from_user_name": "Josh Hermsmeyer", "geo": null, "id": 148606133765025800, "id_str": "148606133765025793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1576903898/mug_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576903898/mug_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@cmastication you using NoSQL I take it. I'm not sold myself except for specific use cases. What's yours?", "to_user": "cmastication", "to_user_id": 43186378, "to_user_id_str": "43186378", "to_user_name": "Mister Long", "in_reply_to_status_id": 148582487541547000, "in_reply_to_status_id_str": "148582487541547008"}, +{"created_at": "Mon, 19 Dec 2011 03:17:02 +0000", "from_user": "prabath", "from_user_id": 10963912, "from_user_id_str": "10963912", "from_user_name": "prabath", "geo": null, "id": 148602713486266370, "id_str": "148602713486266369", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/58329054/prabath3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/58329054/prabath3_normal.jpg", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "RT @srinath_perera: NoSQL reading list http://t.co/0e7DIJgl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:00:49 +0000", "from_user": "jason_trost", "from_user_id": 121200611, "from_user_id_str": "121200611", "from_user_name": "Jason Trost", "geo": null, "id": 148598633053429760, "id_str": "148598633053429760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1305123182/graph4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1305123182/graph4_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @orenfalkowitz: #NoSQL is necessary but it\\u2019s not for companies afraid of hard work http://t.co/aQrVEjlk #Accumulo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:00:02 +0000", "from_user": "LeeWeiden", "from_user_id": 366446253, "from_user_id_str": "366446253", "from_user_name": "Lee Weiden", "geo": null, "id": 148598437431087100, "id_str": "148598437431087105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1679888188/Lee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679888188/Lee_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @louiebaur: NoSQL\\u2019s great, but bring your A game http://t.co/tAHu1Nvc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:59:31 +0000", "from_user": "yostar", "from_user_id": 14936911, "from_user_id_str": "14936911", "from_user_name": "Yoav Schwartz", "geo": null, "id": 148598307260874750, "id_str": "148598307260874752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1657102728/profile-pic-bw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657102728/profile-pic-bw_normal.jpg", "source": "Zite Personalized Magazine", "text": "RT @talshalit: NoSQL's great, but bring your A game http://t.co/psmiM0JY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:53:58 +0000", "from_user": "JasonWReid", "from_user_id": 366649622, "from_user_id_str": "366649622", "from_user_name": "Jason Reid", "geo": null, "id": 148596906791153660, "id_str": "148596906791153665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1679925414/Loud_Music_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679925414/Loud_Music_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @louiebaur: NoSQL\\u2019s great, but bring your A game http://t.co/tAHu1Nvc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:46:27 +0000", "from_user": "srinath_perera", "from_user_id": 66572848, "from_user_id_str": "66572848", "from_user_name": "Srinath Perera", "geo": null, "id": 148595016678379520, "id_str": "148595016678379520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/694359829/n746176070_5759_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/694359829/n746176070_5759_normal.jpg", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "NoSQL reading list http://t.co/0e7DIJgl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:46:04 +0000", "from_user": "mimura1018", "from_user_id": 7110632, "from_user_id_str": "7110632", "from_user_name": "Yoshiyuki Mimura", "geo": null, "id": 148594921786449920, "id_str": "148594921786449921", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1238038345/warai_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1238038345/warai_normal.png", "source": "<a href="http://app.gacha.net/sylfeed" rel="nofollow">Sylfeed</a>", "text": "\\u30C1\\u30A7\\u30C3\\u30AF | \"InfoQ.com Japan\" James Phillips \\u6C0F\\u304C\\u8A9E\\u308B\\u300C\\u30EA\\u30EC\\u30FC\\u30B7\\u30E7\\u30CA\\u30EB\\u304B\\u3089 NoSQL \\u3078\\u306E\\u30C7\\u30FC\\u30BF\\u30D9\\u30FC\\u30B9\\u79FB\\u884C\\u300D http://t.co/mYOsqLAb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:40:20 +0000", "from_user": "PurvisRobinson", "from_user_id": 367029069, "from_user_id_str": "367029069", "from_user_name": "Purvis Robinson", "geo": null, "id": 148593476790005760, "id_str": "148593476790005761", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1680150770/p_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680150770/p_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @louiebaur: NoSQL\\u2019s great, but bring your A game http://t.co/tAHu1Nvc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:37:18 +0000", "from_user": "jsreno", "from_user_id": 68602837, "from_user_id_str": "68602837", "from_user_name": "John Reno", "geo": null, "id": 148592714257141760, "id_str": "148592714257141761", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/690551394/JR_image_0210_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/690551394/JR_image_0210_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/yinF3RE5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:36:00 +0000", "from_user": "PeterSBurton", "from_user_id": 367209383, "from_user_id_str": "367209383", "from_user_name": "Peter Sidney Burton", "geo": null, "id": 148592388078710800, "id_str": "148592388078710784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680192532/Purvis_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680192532/Purvis_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @louiebaur: NoSQL\\u2019s great, but bring your A game http://t.co/tAHu1Nvc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:31:51 +0000", "from_user": "SearleMorris", "from_user_id": 370724877, "from_user_id_str": "370724877", "from_user_name": "Searle Morris", "geo": null, "id": 148591344447799300, "id_str": "148591344447799296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680254634/illustrated-face_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680254634/illustrated-face_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @louiebaur: NoSQL\\u2019s great, but bring your A game http://t.co/tAHu1Nvc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:26:01 +0000", "from_user": "RobertsChapman", "from_user_id": 371109006, "from_user_id_str": "371109006", "from_user_name": "Roberts Chapman", "geo": null, "id": 148589875401203700, "id_str": "148589875401203712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1686679800/Freedom_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686679800/Freedom_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @louiebaur: NoSQL\\u2019s great, but bring your A game http://t.co/tAHu1Nvc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:16:27 +0000", "from_user": "PeterAlexandrov", "from_user_id": 371615963, "from_user_id_str": "371615963", "from_user_name": "Peter Alexandrov", "geo": null, "id": 148587465391878140, "id_str": "148587465391878145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680289504/Dog_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680289504/Dog_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @louiebaur: NoSQL\\u2019s great, but bring your A game http://t.co/tAHu1Nvc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:14:11 +0000", "from_user": "theanti9", "from_user_id": 18149726, "from_user_id_str": "18149726", "from_user_name": "Ryan", "geo": null, "id": 148586897105629200, "id_str": "148586897105629184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1181955584/Photo_on_2010-11-30_at_19.49_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1181955584/Photo_on_2010-11-30_at_19.49_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Image Manipulation Server - C# and MongoDB - A venture into the world of NoSQL: http://t.co/gKmDTcjy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:13:55 +0000", "from_user": "JessiMinchincon", "from_user_id": 371647743, "from_user_id_str": "371647743", "from_user_name": "Jessica Minchincon", "geo": null, "id": 148586829669613570, "id_str": "148586829669613568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680310081/abstract-life-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680310081/abstract-life-1_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @louiebaur: NoSQL\\u2019s great, but bring your A game http://t.co/tAHu1Nvc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:12:04 +0000", "from_user": "konstblg", "from_user_id": 27557328, "from_user_id_str": "27557328", "from_user_name": "Konstantin Filatov", "geo": null, "id": 148586362449309700, "id_str": "148586362449309696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1516780868/IMG_2087_-_Version_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1516780868/IMG_2087_-_Version_2_normal.jpg", "source": "<a href="http://omz-software.com/newsstand" rel="nofollow">NewsRack</a>", "text": "RT @ferretgod: #NoSQL 's great, but bring your A game http://t.co/YCGapi9n", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:06:29 +0000", "from_user": "cmalbari", "from_user_id": 69732779, "from_user_id_str": "69732779", "from_user_name": "Miraz", "geo": null, "id": 148584957302931460, "id_str": "148584957302931456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1649429032/bkBn0s5u_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649429032/bkBn0s5u_normal", "source": "Zite Personalized Magazine", "text": "NoSQL's great, but bring your A game http://t.co/TxRGfbX0 @chazzuka", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:56:03 +0000", "from_user": "iBachue", "from_user_id": 125917459, "from_user_id_str": "125917459", "from_user_name": "Bachue Zhou", "geo": null, "id": 148582333337968640, "id_str": "148582333337968640", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1117487708/6e1d8011f8eff869f919b8ff_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1117487708/6e1d8011f8eff869f919b8ff_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\\u300AMySQL\\u4E0ENoSQL\\u2014\\u2014SQL\\u4E0ENoSQL\\u7684\\u878D\\u5408\\u300Bhttp://t.co/GpTuUeGc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:51:27 +0000", "from_user": "TimothyZachary", "from_user_id": 373425844, "from_user_id_str": "373425844", "from_user_name": "Timothy Zachary", "geo": null, "id": 148581176569892860, "id_str": "148581176569892865", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680354909/Yellow3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680354909/Yellow3_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @louiebaur: NoSQL\\u2019s great, but bring your A game http://t.co/tAHu1Nvc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:49:19 +0000", "from_user": "schida", "from_user_id": 19803427, "from_user_id_str": "19803427", "from_user_name": "Chida", "geo": null, "id": 148580640525266940, "id_str": "148580640525266944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1593780751/chida_FB_4_small_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593780751/chida_FB_4_small_twitter_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Good round up of mongoDB experience as NoSQL - http://t.co/N8iPuTUS #mongodb #10gen @mongoDC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:48:32 +0000", "from_user": "ferretgod", "from_user_id": 78959366, "from_user_id_str": "78959366", "from_user_name": "Sergey Katalichenka", "geo": null, "id": 148580441564250100, "id_str": "148580441564250114", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1155929269/HD_drawing_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1155929269/HD_drawing_normal.jpg", "source": "<a href="http://omz-software.com/newsstand" rel="nofollow">NewsRack</a>", "text": "#NoSQL 's great, but bring your A game http://t.co/YCGapi9n", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:44:25 +0000", "from_user": "lheritier", "from_user_id": 14337952, "from_user_id_str": "14337952", "from_user_name": "Romain Lheritier", "geo": null, "id": 148579404988166140, "id_str": "148579404988166144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1414899425/Lheritier_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1414899425/Lheritier_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/XQotRRFb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:42:51 +0000", "from_user": "ItTechnoNews", "from_user_id": 382914611, "from_user_id_str": "382914611", "from_user_name": "IT\\u30C6\\u30C3\\u30AF\\u307E\\u3068\\u3081\\u30CB\\u30E5\\u30FC\\u30B9", "geo": null, "id": 148579013407944700, "id_str": "148579013407944704", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.zepan.org/software/tweetly-updater/" rel="nofollow">Tweetly Updater</a>", "text": "\\u65B0\\u7740\\u8A18\\u4E8B : James Phillips \\u6C0F\\u304C\\u8A9E\\u308B\\u300C\\u30EA\\u30EC\\u30FC\\u30B7\\u30E7\\u30CA\\u30EB\\u304B\\u3089 NoSQL \\u3078\\u306E\\u30C7\\u30FC\\u30BF\\u30D9\\u30FC\\u30B9\\u79FB\\u884C\\u300D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:32:02 +0000", "from_user": "alessandroleite", "from_user_id": 11503692, "from_user_id_str": "11503692", "from_user_name": "alessandroleite", "geo": null, "id": 148576287521374200, "id_str": "148576287521374209", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1243715520/avatar-photo_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1243715520/avatar-photo_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lucabastos: Par\\u00F3dia da queda agora Hadoop e NoSQL \"The namenode metadata was corrupted when the machine failed\" http://t.co/rNFane6f via @fdelariva", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:28:14 +0000", "from_user": "mikecthompson", "from_user_id": 25213898, "from_user_id_str": "25213898", "from_user_name": "mike thompson", "geo": null, "id": 148575334885900300, "id_str": "148575334885900289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/N2Dy3g9g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:10:19 +0000", "from_user": "talshalit", "from_user_id": 178446490, "from_user_id_str": "178446490", "from_user_name": "Tal Shalit", "geo": null, "id": 148570825522548740, "id_str": "148570825522548736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1177083778/Tal_Head_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1177083778/Tal_Head_normal.JPG", "source": "Zite Personalized Magazine", "text": "NoSQL's great, but bring your A game http://t.co/psmiM0JY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:04:11 +0000", "from_user": "tatakaba", "from_user_id": 70071037, "from_user_id_str": "70071037", "from_user_name": "takahito takabayashi", "geo": null, "id": 148569282152898560, "id_str": "148569282152898560", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/555026214/___normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/555026214/___normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/yreader/id389733994" rel="nofollow">yReader</a>", "text": "InfoQ: James Phillips \\u6C0F\\u304C\\u8A9E\\u308B\\u300C\\u30EA\\u30EC\\u30FC\\u30B7\\u30E7\\u30CA\\u30EB\\u304B\\u3089 NoSQL \\u3078\\u306E\\u30C7\\u30FC\\u30BF\\u30D9\\u30FC\\u30B9\\u79FB\\u884C\\u300D http://t.co/FUJXdaHB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:54:02 +0000", "from_user": "rkttu", "from_user_id": 54143426, "from_user_id_str": "54143426", "from_user_name": "\\uB0A8\\uC815\\uD604 (Jung Hyun, Nam)", "geo": null, "id": 148566728597717000, "id_str": "148566728597716994", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1155870251/5577d0e7-1e4b-4fa1-b26e-d5b2b576c7e3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1155870251/5577d0e7-1e4b-4fa1-b26e-d5b2b576c7e3_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "[DEVPIA C# RSS] #Riak Quick Review: \\uC694\\uC998 \\uB300\\uADDC\\uBAA8 \\uBD84\\uC0B0 \\uD658\\uACBD\\uC774\\uB098 \\uBE45\\uB370\\uC774\\uD0C0 \\uAD00\\uB828\\uD574\\uC11C NoSQL\\uC911\\uC5D0\\uC11C Riak\\uC774 \\uB9CE\\uC774 \\uC5B8\\uAE09\\uB418\\uB294\\uB370... \\uC0DD\\uAC01\\uBCF4\\uB2E4\\u2026 http://t.co/B1U54SOC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:51:58 +0000", "from_user": "rkttu", "from_user_id": 54143426, "from_user_id_str": "54143426", "from_user_name": "\\uB0A8\\uC815\\uD604 (Jung Hyun, Nam)", "geo": null, "id": 148566208269127680, "id_str": "148566208269127680", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1155870251/5577d0e7-1e4b-4fa1-b26e-d5b2b576c7e3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1155870251/5577d0e7-1e4b-4fa1-b26e-d5b2b576c7e3_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "[Win-Azure RSS] Riak Quick Review: \\uC694\\uC998 \\uB300\\uADDC\\uBAA8 \\uBD84\\uC0B0 \\uD658\\uACBD\\uC774\\uB098 \\uBE45\\uB370\\uC774\\uD0C0 \\uAD00\\uB828\\uD574\\uC11C NoSQL\\uC911\\uC5D0\\uC11C Riak\\uC774 \\uB9CE\\uC774 \\uC5B8\\uAE09\\uB418\\uB294\\uB370... \\uC0DD\\uAC01\\uBCF4\\uB2E4\\u2026 http://t.co/2YaPwl7I", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:21:10 +0000", "from_user": "steveos", "from_user_id": 14120820, "from_user_id_str": "14120820", "from_user_name": "steveos", "geo": null, "id": 148558456222269440, "id_str": "148558456222269440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1127303959/me_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1127303959/me_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/p0JqYO9L", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:14:59 +0000", "from_user": "ThePigLA", "from_user_id": 15621574, "from_user_id_str": "15621574", "from_user_name": "The Pig", "geo": null, "id": 148556898638114800, "id_str": "148556898638114817", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1382356834/Photo_on_2011-01-11_at_08.29_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1382356834/Photo_on_2011-01-11_at_08.29_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dierken I think I want to skip SQL and move directly to NoSQL. Cassandra sounds appealing.", "to_user": "dierken", "to_user_id": 12933302, "to_user_id_str": "12933302", "to_user_name": "dierken", "in_reply_to_status_id": 148486337530576900, "in_reply_to_status_id_str": "148486337530576897"}, +{"created_at": "Mon, 19 Dec 2011 00:04:43 +0000", "from_user": "suttonr", "from_user_id": 6724622, "from_user_id_str": "6724622", "from_user_name": "Ryan Sutton", "geo": null, "id": 148554317098516480, "id_str": "148554317098516480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1366615612/Me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1366615612/Me_normal.jpg", "source": "<a href="http://ping.fm/" rel="nofollow">Ping.fm</a>", "text": "\"Virtual disks have virtual performance\" GigaOM: NoSQL\\u2019s great, but bring your A game http://t.co/ERRgt255", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:03:26 +0000", "from_user": "orenfalkowitz", "from_user_id": 24792160, "from_user_id_str": "24792160", "from_user_name": "Oren J. Falkowitz", "geo": null, "id": 148553993507966980, "id_str": "148553993507966976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1202759971/OrenWW_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1202759971/OrenWW_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "#NoSQL is necessary but it\\u2019s not for companies afraid of hard work http://t.co/aQrVEjlk #Accumulo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:03:25 +0000", "from_user": "newic500", "from_user_id": 36994148, "from_user_id_str": "36994148", "from_user_name": "Eric V", "geo": null, "id": 148553988365750270, "id_str": "148553988365750273", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/194281888/Me591_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/194281888/Me591_normal.jpg", "source": "Zite Personalized Magazine", "text": "NoSQL Benchmarking Cassandra/HBase/MongoDB... gloire a l'insert http://t.co/2YtoXskW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:02:26 +0000", "from_user": "abe_masanori", "from_user_id": 238525344, "from_user_id_str": "238525344", "from_user_name": "ABE Masanori \\u963F\\u90E8 \\u5C06\\u5178", "geo": null, "id": 148553742587928580, "id_str": "148553742587928576", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1263696578/myimg_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263696578/myimg_normal.png", "source": "<a href="http://twipple.jp/" rel="nofollow">Twipple for Android</a>", "text": "NoSQL\\u306E\\u30C8\\u30E9\\u30F3\\u30B6\\u30AF\\u30B7\\u30E7\\u30F3\\u7BA1\\u7406\\u6A5F\\u80FD\\u306E\\u6B20\\u5982\\u3092\\u88DC\\u3046\\u305F\\u3081\\u306B\\u3001\\u5916\\u90E8\\u306B\\u30C8\\u30E9\\u30F3\\u30B6\\u30AF\\u30B7\\u30E7\\u30F3\\u30E2\\u30CB\\u30BF\\u30FC\\u3092\\u7F6E\\u304F\\u3068\\u3044\\u3046\\u8003\\u3048\\u65B9\\u306F\\u3042\\u308A\\u306A\\u306E\\u304B\\uFF1F\\u3068\\u3066\\u3082\\u826F\\u3044\\u30A2\\u30A4\\u30C7\\u30A3\\u30A2\\u306B\\u306F\\u601D\\u3048\\u306A\\u3044\\u306E\\u3060\\u304C\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:00:22 +0000", "from_user": "ITjobsYP", "from_user_id": 431633759, "from_user_id_str": "431633759", "from_user_name": "ictjob.de", "geo": null, "id": 148553220778762240, "id_str": "148553220778762242", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688760510/Logo_Twitter_Channels_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688760510/Logo_Twitter_Channels_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "1&1 - OpenSource DB-Administrator (m/w) - Schwerpunkt NoSQL-Datenbanken/Datenspeicherung - 1&1 Internet #Jobs #IT #YP http://t.co/FgDEXExY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:46:42 +0000", "from_user": "understeer", "from_user_id": 4451471, "from_user_id_str": "4451471", "from_user_name": "MATSUO Yasuhiro ", "geo": null, "id": 148549782451925000, "id_str": "148549782451924992", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1314550179/4451471_origin_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1314550179/4451471_origin_normal.gif", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "InfoQ: James Phillips \\u6C0F\\u304C\\u8A9E\\u308B\\u300C\\u30EA\\u30EC\\u30FC\\u30B7\\u30E7\\u30CA\\u30EB\\u304B\\u3089 NoSQL \\u3078\\u306E\\u30C7\\u30FC\\u30BF\\u30D9\\u30FC\\u30B9\\u79FB\\u884C\\u300D: http://t.co/Un0U2vdG via @AddThis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:32:06 +0000", "from_user": "CraigCav", "from_user_id": 70438825, "from_user_id_str": "70438825", "from_user_name": "Craig Cavalier", "geo": null, "id": 148546105368514560, "id_str": "148546105368514560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1440989453/16345_540166941854_289300412_2363137_4860204_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1440989453/16345_540166941854_289300412_2363137_4860204_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @RavenDB: New video: Polymorphism and #RavenDB http://t.co/qKb84X1B #nosql #dotnet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:29:31 +0000", "from_user": "JeffMiller", "from_user_id": 124242545, "from_user_id_str": "124242545", "from_user_name": "Jeff Miller", "geo": null, "id": 148545455326887940, "id_str": "148545455326887936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1452026204/jeff_headshot_256x256_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1452026204/jeff_headshot_256x256_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/N2Dy3g9g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:26:32 +0000", "from_user": "techngfx", "from_user_id": 314888606, "from_user_id_str": "314888606", "from_user_name": "techngfx", "geo": null, "id": 148544708451381250, "id_str": "148544708451381248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1390609558/Logo_Techngfx_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1390609558/Logo_Techngfx_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/XKrDaF9v", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:24:25 +0000", "from_user": "arrch", "from_user_id": 19104094, "from_user_id_str": "19104094", "from_user_name": "Andrew Lum", "geo": null, "id": 148544174453555200, "id_str": "148544174453555201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/71673780/1099256_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/71673780/1099256_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "@michaelmelhem you might like the numbers quoted at the bottom of the article. NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/kmAvAiWs", "to_user": "michaelmelhem", "to_user_id": 19161107, "to_user_id_str": "19161107", "to_user_name": "Michael Melhem"}, +{"created_at": "Sun, 18 Dec 2011 23:12:09 +0000", "from_user": "bigdata_1topi", "from_user_id": 397130113, "from_user_id_str": "397130113", "from_user_name": "ONETOPI\\u300C\\u30D3\\u30C3\\u30B0\\u30C7\\u30FC\\u30BF\\u300D", "geo": null, "id": 148541085570961400, "id_str": "148541085570961408", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1605698365/OT_icon_111025_BIG2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1605698365/OT_icon_111025_BIG2_normal.jpg", "source": "<a href="http://www.modiphi.com" rel="nofollow">MODIPHI SM3</a>", "text": "James Phillips \\u6C0F\\u304C\\u8A9E\\u308B\\u300C\\u30EA\\u30EC\\u30FC\\u30B7\\u30E7\\u30CA\\u30EB\\u304B\\u3089 NoSQL \\u3078\\u306E\\u30C7\\u30FC\\u30BF\\u30D9\\u30FC\\u30B9\\u79FB\\u884C\\u300D http://t.co/GPgN8CIh\\n #1tp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:07:31 +0000", "from_user": "ted_gomez", "from_user_id": 428900167, "from_user_id_str": "428900167", "from_user_name": "Ted Gomez", "geo": null, "id": 148539920649162750, "id_str": "148539920649162752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1674988019/eightbit2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674988019/eightbit2_normal.png", "source": "<a href="http://test.com/twitterapp/" rel="nofollow">Emilys Test App</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/PMd6fyXm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:00:09 +0000", "from_user": "lucabastos", "from_user_id": 14911350, "from_user_id_str": "14911350", "from_user_name": "lucabastos", "geo": null, "id": 148538065453973500, "id_str": "148538065453973504", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1113432152/DevInSampa2010_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1113432152/DevInSampa2010_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Par\\u00F3dia da queda agora Hadoop e NoSQL \"The namenode metadata was corrupted when the machine failed\" http://t.co/rNFane6f via @fdelariva", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:59:38 +0000", "from_user": "ChumaLtd", "from_user_id": 428896544, "from_user_id_str": "428896544", "from_user_name": "\\u4E2D\\u99AC", "geo": null, "id": 148537938555310080, "id_str": "148537938555310080", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1675166923/2173340615_805fd360e1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675166923/2173340615_805fd360e1_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "James Phillips \\u6C0F\\u304C\\u8A9E\\u308B\\u300C\\u30EA\\u30EC\\u30FC\\u30B7\\u30E7\\u30CA\\u30EB\\u304B\\u3089 NoSQL \\u3078\\u306E\\u30C7\\u30FC\\u30BF\\u30D9\\u30FC\\u30B9\\u79FB\\u884C\\u300D http://t.co/CAySvCpZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:46:21 +0000", "from_user": "wollepb", "from_user_id": 15015126, "from_user_id_str": "15015126", "from_user_name": "Wolfgang Reinhardt", "geo": null, "id": 148534593543348220, "id_str": "148534593543348224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1333572768/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1333572768/avatar_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "NoSQL's great, but bring your A game http://t.co/Cyi56YEQ via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:32:51 +0000", "from_user": "MrtinTalbot", "from_user_id": 95974600, "from_user_id_str": "95974600", "from_user_name": "Martin Talbot", "geo": null, "id": 148531195599257600, "id_str": "148531195599257600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1684962681/C1CC027F-CA68-4FB7-83CC-18E51AED3D01_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684962681/C1CC027F-CA68-4FB7-83CC-18E51AED3D01_normal", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Slides: What You Need to Know to Move from a Relational to NoSQL Database http://t.co/gSm8erl1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:29:11 +0000", "from_user": "sanderhahn", "from_user_id": 137385974, "from_user_id_str": "137385974", "from_user_name": "Sander Hahn", "geo": null, "id": 148530275431878660, "id_str": "148530275431878656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1599364026/2011-05-30_13.05.43_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599364026/2011-05-30_13.05.43_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Schemaless NoSQL document databases take null pointer exceptions and dynamic type-errors to a whole new level.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:27:27 +0000", "from_user": "monadic", "from_user_id": 77293, "from_user_id_str": "77293", "from_user_name": "alexis richardson", "geo": null, "id": 148529838397988860, "id_str": "148529838397988864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/836600467/alexis4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/836600467/alexis4_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @old_sound: RabbitMQ in Action is a book for hipsters. See this excerpt: \"Mnesia, the Erlang database that was there even before NoSQL was cool\".", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:17:45 +0000", "from_user": "rahuljuneja", "from_user_id": 36554645, "from_user_id_str": "36554645", "from_user_name": "Rahul Juneja", "geo": null, "id": 148527397480824830, "id_str": "148527397480824835", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/248976046/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/248976046/images_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@kshyamsunder >>>>>>>> Just finished my talk on NOSQL vs RDBMS at #javaone11. House full.>>>>>>> Do you have the PPT for this ?", "to_user": "kshyamsunder", "to_user_id": 136282967, "to_user_id_str": "136282967", "to_user_name": "Karthik Shyamsunder", "in_reply_to_status_id": 121025007068516350, "in_reply_to_status_id_str": "121025007068516352"}, +{"created_at": "Sun, 18 Dec 2011 22:14:29 +0000", "from_user": "mstolk", "from_user_id": 16921180, "from_user_id_str": "16921180", "from_user_name": "Marco Stolk", "geo": null, "id": 148526575216885760, "id_str": "148526575216885760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1189392684/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1189392684/image_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "NoSQL's great, but bring your A game http://t.co/HUOeqRWY via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:07:20 +0000", "from_user": "JoshInHR", "from_user_id": 27459245, "from_user_id_str": "27459245", "from_user_name": "Joshua Barger", "geo": null, "id": 148524776980361200, "id_str": "148524776980361217", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1647833645/josh_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647833645/josh_normal.png", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "I'm hiring! Search / Big Data / NoSQL Engineer at http://t.co/Lf2QF2oH - San Francisco Bay Area #jobs http://t.co/hCZEO0dN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:56:59 +0000", "from_user": "andraz", "from_user_id": 14250157, "from_user_id_str": "14250157", "from_user_name": "Andraz Tori", "geo": null, "id": 148522171386433540, "id_str": "148522171386433536", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/52535596/crop-max_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/52535596/crop-max_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@svizec Sure, poglej si jih na Slideshareu http://t.co/52wN3pFI", "to_user": "svizec", "to_user_id": 14541647, "to_user_id_str": "14541647", "to_user_name": "Nejc Kostanj\\u0161ek", "in_reply_to_status_id": 147604723745308670, "in_reply_to_status_id_str": "147604723745308672"}, +{"created_at": "Sun, 18 Dec 2011 21:13:43 +0000", "from_user": "sanxxorr", "from_user_id": 155810759, "from_user_id_str": "155810759", "from_user_name": "Sami Yliharju", "geo": null, "id": 148511282469937150, "id_str": "148511282469937152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1565039749/vincent_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1565039749/vincent_normal.jpg", "source": "<a href="http://www.feedly.com" rel="nofollow">feedly</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/sRuYxPEr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:09:14 +0000", "from_user": "cccc4d", "from_user_id": 334495560, "from_user_id_str": "334495560", "from_user_name": "Milton Colwell", "geo": null, "id": 148510152927092740, "id_str": "148510152927092736", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1471512767/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1471512767/profile_normal.png", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "\\u201CWindows Azure\\u304CNoSQL\\u5BFE\\u5FDC\\u3092\\u63A8\\u9032\\u4E2D\\u3002MongoDB\\u3084Membase\\u306A\\u3069\\u5BFE\\u5FDC\\u3078 \\uFF0D Publickey\\u201D http://t.co/rDKTl5cG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:50:06 +0000", "from_user": "dierken", "from_user_id": 12933302, "from_user_id_str": "12933302", "from_user_name": "dierken", "geo": null, "id": 148505338772074500, "id_str": "148505338772074496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1254896557/mike_d__med__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1254896557/mike_d__med__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Some sys eng issues couched as NoSQL. i.e. \"Disney: More than 1,400 MongoDB instances.\" /Any/ 1,400 hosts is hard. http://t.co/MYU2VAgO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:48:13 +0000", "from_user": "SocialHabitat", "from_user_id": 244773106, "from_user_id_str": "244773106", "from_user_name": "Social Habitat", "geo": null, "id": 148504865893654530, "id_str": "148504865893654528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1229586190/tiny_shasta_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1229586190/tiny_shasta_normal.PNG", "source": "<a href="http://multwiple.com" rel="nofollow">multwiple</a>", "text": "NoSQL: What is it Good For? #cassandra http://t.co/w2AMcB6N", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:48:05 +0000", "from_user": "lukashasik", "from_user_id": 40207923, "from_user_id_str": "40207923", "from_user_name": "Lukas Hasik", "geo": null, "id": 148504832796409860, "id_str": "148504832796409856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/314905003/lukas_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/314905003/lukas_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @_dagi Pondelni #czjug Lightning Talks rozdeleny do tracku: NoSQL/High scalability, REST/Web, Java a Tools http://t.co/5MVBlph8 #missit", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:41:20 +0000", "from_user": "Nmaster64", "from_user_id": 14329137, "from_user_id_str": "14329137", "from_user_name": "David C.", "geo": null, "id": 148503132824027140, "id_str": "148503132824027137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1093236091/DarkLink_Headshot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1093236091/DarkLink_Headshot_normal.jpg", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "@Unaz I first read that w/ \"view query\" cut off and was highly amused by the thought of swapping some random guy's post w/ a block of NoSQL.", "to_user": "Unaz", "to_user_id": 16113206, "to_user_id_str": "16113206", "to_user_name": "Erik", "in_reply_to_status_id": 148501836708585470, "in_reply_to_status_id_str": "148501836708585472"}, +{"created_at": "Sun, 18 Dec 2011 20:41:15 +0000", "from_user": "si2w", "from_user_id": 232142129, "from_user_id_str": "232142129", "from_user_name": "si2w", "geo": null, "id": 148503112750080000, "id_str": "148503112750080000", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1653575968/3691829358_2d92e8b67a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653575968/3691829358_2d92e8b67a_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @jllachf: http://t.co/7npCzfZU nice job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:36:11 +0000", "from_user": "Unaz", "from_user_id": 16113206, "from_user_id_str": "16113206", "from_user_name": "Erik", "geo": null, "id": 148501836708585470, "id_str": "148501836708585472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/59355136/kross_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/59355136/kross_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Nmaster64 @ZeRootOfAllEvil The best part is what I did yesterday was write a 150 line nosql function to replace the forum thread view query", "to_user": "Nmaster64", "to_user_id": 14329137, "to_user_id_str": "14329137", "to_user_name": "David C.", "in_reply_to_status_id": 148500565226299400, "in_reply_to_status_id_str": "148500565226299392"}, +{"created_at": "Sun, 18 Dec 2011 20:35:15 +0000", "from_user": "asthukral", "from_user_id": 15422017, "from_user_id_str": "15422017", "from_user_name": "asthukral", "geo": null, "id": 148501599629754370, "id_str": "148501599629754368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/Zh1ik4Zb need to know your context", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:34:25 +0000", "from_user": "asthukral", "from_user_id": 15422017, "from_user_id_str": "15422017", "from_user_name": "asthukral", "geo": null, "id": 148501392997359600, "id_str": "148501392997359616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/N2Dy3g9g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:34:15 +0000", "from_user": "asthukral", "from_user_id": 15422017, "from_user_id_str": "15422017", "from_user_name": "asthukral", "geo": null, "id": 148501349590499330, "id_str": "148501349590499329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "@gigaom need to know your context before riding the noSQL bandwagon", "to_user": "gigaom", "to_user_id": 2893971, "to_user_id_str": "2893971", "to_user_name": "GigaOM", "in_reply_to_status_id": 148134036009787400, "in_reply_to_status_id_str": "148134036009787394"}, +{"created_at": "Sun, 18 Dec 2011 20:33:50 +0000", "from_user": "AxelTroike", "from_user_id": 287275135, "from_user_id_str": "287275135", "from_user_name": "Axel Troike", "geo": null, "id": 148501243076157440, "id_str": "148501243076157440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1323773278/at2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1323773278/at2_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @pbokelly: NoSQL: the Klingon rite of ascension of database management http://t.co/f7mhef1c", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Sun, 18 Dec 2011 20:32:27 +0000", "from_user": "geniusboywonder", "from_user_id": 17383891, "from_user_id_str": "17383891", "from_user_name": "geniusboywonder", "geo": null, "id": 148500895255113730, "id_str": "148500895255113728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1491645281/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1491645281/image_normal.jpg", "source": "Zite Personalized Magazine", "text": "NoSQL's great, but bring your A game http://t.co/RB1RCwLH via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:25:39 +0000", "from_user": "Han_Cholo", "from_user_id": 15436161, "from_user_id_str": "15436161", "from_user_name": "Andrew Rubalcaba", "geo": null, "id": 148499183790329860, "id_str": "148499183790329856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/461496225/marcoerikestrada3wb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/461496225/marcoerikestrada3wb_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @old_sound: RabbitMQ in Action is a book for hipsters. See this excerpt: \"Mnesia, the Erlang database that was there even before NoSQL was cool\".", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:12:03 +0000", "from_user": "Foritus", "from_user_id": 197887758, "from_user_id_str": "197887758", "from_user_name": "Richard Thorne", "geo": null, "id": 148495763738075140, "id_str": "148495763738075136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1600316160/House-Life_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600316160/House-Life_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Just watched @r39132 's fantastic qcon presentation about Netflix and SimpleDB, a reminder that NoSQL != NoProblems http://t.co/BVCeeupJ :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:10:59 +0000", "from_user": "strzalekk", "from_user_id": 19115131, "from_user_id_str": "19115131", "from_user_name": "\\u0141ukasz Strza\\u0142kowski", "geo": null, "id": 148495496665772030, "id_str": "148495496665772032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/915013407/e28434223c9c5d2ee0d7f7b7c887b36a_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/915013407/e28434223c9c5d2ee0d7f7b7c887b36a_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "@roidrage you better hurry up with NoSQL Handbook, I'm waiting!", "to_user": "roidrage", "to_user_id": 14658472, "to_user_id_str": "14658472", "to_user_name": "Mathias Meyer", "in_reply_to_status_id": 148495157518536700, "in_reply_to_status_id_str": "148495157518536704"}, +{"created_at": "Sun, 18 Dec 2011 20:09:27 +0000", "from_user": "HadoopNews", "from_user_id": 251816878, "from_user_id_str": "251816878", "from_user_name": "John Ching", "geo": null, "id": 148495108239663100, "id_str": "148495108239663104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1244235692/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1244235692/images_normal.jpg", "source": "Zite Personalized Magazine", "text": "#NoSQL's great, but bring your A game http://t.co/L4w16H6X", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:07:55 +0000", "from_user": "ijedouglas", "from_user_id": 20246682, "from_user_id_str": "20246682", "from_user_name": "Ian Douglas", "geo": null, "id": 148494723819122700, "id_str": "148494723819122688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1219595791/161422_607241248_1562486_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1219595791/161422_607241248_1562486_q_normal.jpg", "source": "<a href="http://www.alphonsolabs.com/" rel="nofollow">Pulse News</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/aFgx45t0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:03:50 +0000", "from_user": "benjochems", "from_user_id": 174597976, "from_user_id_str": "174597976", "from_user_name": "Ben Jochems", "geo": null, "id": 148493695736483840, "id_str": "148493695736483840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1179447647/18a0d9f_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1179447647/18a0d9f_1__normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @gigaom: #NoSQL\\u2019s great, but bring your A game http://t.co/AXk1D3PG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:02:03 +0000", "from_user": "enca64", "from_user_id": 418967392, "from_user_id_str": "418967392", "from_user_name": "encarna ", "geo": null, "id": 148493244588752900, "id_str": "148493244588752897", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "22 Dec. webinar : RDBMS and NoSQL, And Beyond http://t.co/8M8BOjTT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:58:21 +0000", "from_user": "vsouders", "from_user_id": 13965322, "from_user_id_str": "13965322", "from_user_name": "vsouders", "geo": null, "id": 148492314258571260, "id_str": "148492314258571264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/51111822/avatar_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/51111822/avatar_normal.gif", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/1kuAHz9P", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:35:02 +0000", "from_user": "gandalf0610", "from_user_id": 24872003, "from_user_id_str": "24872003", "from_user_name": "Patrick Whelan", "geo": null, "id": 148486447446495230, "id_str": "148486447446495232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "NoSQL's great, but bring your A game http://t.co/gpApxsZo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:25:28 +0000", "from_user": "d8Pit", "from_user_id": 264394701, "from_user_id_str": "264394701", "from_user_name": "The URL Popularizer", "geo": null, "id": 148484041828601860, "id_str": "148484041828601856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317284522/logo-header_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317284522/logo-header_normal.png", "source": "<a href="http://d8p.it" rel="nofollow">d8P</a>", "text": "RT @TechFanas: Introduction to Oracle's NoSQL Database #cloud #NoSql | http://t.co/6ClVY5eG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:24:23 +0000", "from_user": "TechFanas", "from_user_id": 353817699, "from_user_id_str": "353817699", "from_user_name": "TechFanas", "geo": null, "id": 148483766501912580, "id_str": "148483766501912576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1509977280/Logo-TechFanas_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509977280/Logo-TechFanas_normal.png", "source": "<a href="http://www.ajaymatharu.com/" rel="nofollow">Tweet Old Post</a>", "text": "Introduction to Oracle's NoSQL Database http://t.co/ezhSzRSl #cloud #NoSql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:23:35 +0000", "from_user": "_kulbir", "from_user_id": 192492245, "from_user_id_str": "192492245", "from_user_name": "Kulbir Saini", "geo": null, "id": 148483567402496000, "id_str": "148483567402496000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689392135/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689392135/profile_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @DEVOPS_BORAT: Attention devops: \"learn NoSQL\" is not same as \"learn no SQL\"!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:20:30 +0000", "from_user": "lukas_krecan", "from_user_id": 40662802, "from_user_id_str": "40662802", "from_user_name": "Lukas Krecan", "geo": null, "id": 148482791590473730, "id_str": "148482791590473729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1337533528/profil_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1337533528/profil_normal.jpg", "source": "<a href="http://twitter.com" rel="nofollow">Tweetie for Mac</a>", "text": "RT @_dagi: Pondelni #czjug Lightning Talks rozdeleny do techto tracku: NoSQL/High scalability, REST/Web, Java a Tools http://t.co/vvrzzuq8 prosim RT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:20:30 +0000", "from_user": "ches", "from_user_id": 790104, "from_user_id_str": "790104", "from_user_name": "Ches Martin \\u265E", "geo": null, "id": 148482789732384770, "id_str": "148482789732384769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/58213153/mr_pensive_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/58213153/mr_pensive_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @jonpierce: Check out @Basho on @Workvibe today. One of my fav deep tech co's in Boston. Great team, killer product in Riak. http://t.co/KsvmdGbq #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:19:01 +0000", "from_user": "old_sound", "from_user_id": 16484216, "from_user_id_str": "16484216", "from_user_name": "Alvaro Videla", "geo": null, "id": 148482416812634100, "id_str": "148482416812634112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1228830603/DSC05906_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1228830603/DSC05906_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RabbitMQ in Action is a book for hipsters. See this excerpt: \"Mnesia, the Erlang database that was there even before NoSQL was cool\".", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:11:23 +0000", "from_user": "fe_aragon", "from_user_id": 22362198, "from_user_id_str": "22362198", "from_user_name": "Felipe M. Aragon", "geo": null, "id": 148480494365974530, "id_str": "148480494365974528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1096112377/felipe_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1096112377/felipe_normal.png", "source": "<a href="http://splitweet.com" rel="nofollow">Splitweet</a>", "text": "RT @syhunt Sandcat Pro 4.2.8 adds NoSQL Injection detection http://t.co/z83bd5zi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:10:59 +0000", "from_user": "johnny723", "from_user_id": 13001002, "from_user_id_str": "13001002", "from_user_name": "Johnny Chan", "geo": null, "id": 148480394583486460, "id_str": "148480394583486464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1258068103/johnny__large__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1258068103/johnny__large__normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "RT @HackerNewsYC: NoSQL\\u2019s great, but bring your A game http://t.co/j0TqHDC3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:06:35 +0000", "from_user": "tim_yates", "from_user_id": 16680935, "from_user_id_str": "16680935", "from_user_name": "Tim Yates", "geo": null, "id": 148479289166266370, "id_str": "148479289166266368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/422071707/tweet2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/422071707/tweet2_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @dslevin: NoSQL's great, but bring your A game http://t.co/a2l9uo6x", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:05:28 +0000", "from_user": "pbokelly", "from_user_id": 26058258, "from_user_id_str": "26058258", "from_user_name": "Peter O'Kelly", "geo": null, "id": 148479007887851520, "id_str": "148479007887851520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/349219461/petero_kelly_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/349219461/petero_kelly_pic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL: the Klingon rite of ascension of database management http://t.co/MP4HPLo0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:02:13 +0000", "from_user": "syhunt", "from_user_id": 12798532, "from_user_id_str": "12798532", "from_user_name": "Syhunt", "geo": null, "id": 148478188601876480, "id_str": "148478188601876480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1126720714/sandcat_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1126720714/sandcat_twitter_normal.png", "source": "<a href="http://splitweet.com" rel="nofollow">Splitweet</a>", "text": "Time-Based Blind NoSQL Injection http://t.co/0y2oliQj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:57:47 +0000", "from_user": "molloycr", "from_user_id": 50644070, "from_user_id_str": "50644070", "from_user_name": "Chris Molloy", "geo": null, "id": 148477073659408400, "id_str": "148477073659408384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1211071240/Chris_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1211071240/Chris_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "NoSQL's great, but bring your A game http://t.co/pEnMyAKg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:52:17 +0000", "from_user": "daveof", "from_user_id": 44096146, "from_user_id_str": "44096146", "from_user_name": "Dave O'Flanagan", "geo": null, "id": 148475687228018700, "id_str": "148475687228018689", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1312614727/edit_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312614727/edit_normal.jpeg", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "RT @dermot_oc: NoSQL\\u2019s great, but bring your A game http://t.co/EA0Am6ZZ #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:47:07 +0000", "from_user": "syhunt", "from_user_id": 12798532, "from_user_id_str": "12798532", "from_user_name": "Syhunt", "geo": null, "id": 148474389590052860, "id_str": "148474389590052864", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1126720714/sandcat_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1126720714/sandcat_twitter_normal.png", "source": "<a href="http://splitweet.com" rel="nofollow">Splitweet</a>", "text": "Sandcat Pro 4.2.8 adds NoSQL Injection detection http://t.co/oPv3KQan", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:45:28 +0000", "from_user": "airjrdn", "from_user_id": 15394566, "from_user_id_str": "15394566", "from_user_name": "airjrdn", "geo": null, "id": 148473975163453440, "id_str": "148473975163453440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/89213431/Bill_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/89213431/Bill_normal.jpg", "source": "<a href="http://omz-software.com/newsstand" rel="nofollow">NewsRack</a>", "text": "NoSQL\\u2019s great, but bring your A game - http://t.co/zGKypG9Y", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:38:28 +0000", "from_user": "jessenoller", "from_user_id": 14100497, "from_user_id_str": "14100497", "from_user_name": "jessenoller", "geo": null, "id": 148472212540764160, "id_str": "148472212540764160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1263045963/Photo_on_2011-03-05_at_15.59_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263045963/Photo_on_2011-03-05_at_15.59_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@zzzeek @benbangert The question I have is how to get bigger publications to be interest in python stuff - that was a cloud/nosql fluffer", "to_user": "zzzeek", "to_user_id": 15088129, "to_user_id_str": "15088129", "to_user_name": "mike bayer"}, +{"created_at": "Sun, 18 Dec 2011 18:35:17 +0000", "from_user": "TechnoMile", "from_user_id": 89779407, "from_user_id_str": "89779407", "from_user_name": "TechnoMile LLC", "geo": null, "id": 148471411248349200, "id_str": "148471411248349184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1187113101/techomile_normal_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1187113101/techomile_normal_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL's great, but bring your A game \\u2014 Cloud Computing Newshttp://twitter.com/emilipattshivr: NoSQL's great, but... http://t.co/QhmtlYWK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:22:24 +0000", "from_user": "inSoftwareToday", "from_user_id": 259345366, "from_user_id_str": "259345366", "from_user_name": "LinkedIn Software", "geo": null, "id": 148468170636791800, "id_str": "148468170636791808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1260319814/thumbscompsci_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1260319814/thumbscompsci_normal.png", "source": "<a href="http://www.linkedin.com" rel="nofollow">linkedin_today</a>", "text": "NoSQL's great, but bring your A game (http://t.co/GRybKm75) http://t.co/ytArrXiu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:19:03 +0000", "from_user": "emilipattshivr", "from_user_id": 329430844, "from_user_id_str": "329430844", "from_user_name": "Emilio Patton", "geo": null, "id": 148467325178359800, "id_str": "148467325178359808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1426884044/1309832402_clouds_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1426884044/1309832402_clouds_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL's great, but bring your A game \\u2014 Cloud Computing News", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:14:19 +0000", "from_user": "partham", "from_user_id": 21061921, "from_user_id_str": "21061921", "from_user_name": "Partha Mukhopadhyay", "geo": null, "id": 148466135942168580, "id_str": "148466135942168577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1134989172/Image2243_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1134989172/Image2243_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "NoSQL's great, but bring your A game http://t.co/NMdhOVW3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:40:52 +0000", "from_user": "d6rkaiz", "from_user_id": 5948782, "from_user_id_str": "5948782", "from_user_name": "d6rkaiz", "geo": null, "id": 148457715130302460, "id_str": "148457715130302465", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1272155085/5948782_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1272155085/5948782_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\\u7B2C2\\u56DE MySQL5.6 - \\u3055\\u3089\\u306A\\u308B\\u6A5F\\u80FD\\u8FFD\\u52A0\\u3068NoSQL | Think IT: http://t.co/MWTn6Uai via @AddThis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:40:36 +0000", "from_user": "d6rkaiz", "from_user_id": 5948782, "from_user_id_str": "5948782", "from_user_name": "d6rkaiz", "geo": null, "id": 148457648298262530, "id_str": "148457648298262528", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1272155085/5948782_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1272155085/5948782_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\\u7B2C3\\u56DE NoSQL\\uFF06RDBMS\\u30AF\\u30E9\\u30B9\\u30BF MySQL Cluster | Think IT: http://t.co/GEEIh7p4 via @AddThis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:38:31 +0000", "from_user": "mikepluta", "from_user_id": 15150700, "from_user_id_str": "15150700", "from_user_name": "Mike Pluta", "geo": null, "id": 148457124463247360, "id_str": "148457124463247362", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1584807716/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584807716/image_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "10gen - MongoDB and NoSQL video, webcasts, presentations, and more http://t.co/jw7D4a9o #bigdata #mongodb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:36:53 +0000", "from_user": "mikepluta", "from_user_id": 15150700, "from_user_id_str": "15150700", "from_user_name": "Mike Pluta", "geo": null, "id": 148456713698295800, "id_str": "148456713698295810", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1584807716/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584807716/image_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/xTUnxogz #bigdata @gigaom", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:36:30 +0000", "from_user": "avkashchauhan", "from_user_id": 213118614, "from_user_id_str": "213118614", "from_user_name": "Avkash Chauhan", "geo": null, "id": 148456618651160580, "id_str": "148456618651160577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1615647152/asc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615647152/asc_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#MongoDB might be a popular choice in #NoSQL databases, but it\\u2019s not perfect - http://t.co/lkTJD60z @gigaom", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:36:07 +0000", "from_user": "jnape", "from_user_id": 240073274, "from_user_id_str": "240073274", "from_user_name": "John Napier", "geo": null, "id": 148456522282835970, "id_str": "148456522282835970", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1619370052/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619370052/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "It just occurred to me that our [immediate] future in NoSQL DBs may be phasing out conventional DBA as a profession. Q: Did we ever need it?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:15:58 +0000", "from_user": "hofri", "from_user_id": 11936592, "from_user_id_str": "11936592", "from_user_name": "yehuda hofri", "geo": null, "id": 148451450354286600, "id_str": "148451450354286592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/300504667/foto_yehuda_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/300504667/foto_yehuda_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "NoSQL 2.0 .. checking out RavenDB http://t.co/mmwm2JOT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:06:15 +0000", "from_user": "ashithraj", "from_user_id": 11663732, "from_user_id_str": "11663732", "from_user_name": "ashithraj", "geo": null, "id": 148449006316560400, "id_str": "148449006316560385", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1274205803/862634f9-1830-4c21-a3cc-37e9198b393f_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1274205803/862634f9-1830-4c21-a3cc-37e9198b393f_normal.png", "source": "<a href="http://bit.ly/g9oge9" rel="nofollow">Tech News Now</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/MPKtD50v", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:01:03 +0000", "from_user": "alsahh", "from_user_id": 207405374, "from_user_id_str": "207405374", "from_user_name": "Peter Thiel", "geo": null, "id": 148447695713992700, "id_str": "148447695713992704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1528753781/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1528753781/me_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"Auction and Bidding Applications with Document-Based NoSQL\" http://t.co/MO9aQshX #NoSQL #RavenDB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:59:48 +0000", "from_user": "jirifabian", "from_user_id": 15688167, "from_user_id_str": "15688167", "from_user_name": "Jiri Fabian \\u2622", "geo": null, "id": 148447382772785150, "id_str": "148447382772785152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1185013901/Screen_shot_2010-12-07_at_9.33.46_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1185013901/Screen_shot_2010-12-07_at_9.33.46_PM_normal.png", "source": "<a href="http://twitter.com" rel="nofollow">Tweetie for Mac</a>", "text": "RT @_dagi: Pondelni #czjug Lightning Talks rozdeleny do techto tracku: NoSQL/High scalability, REST/Web, Java a Tools http://t.co/vvrzzuq8 prosim RT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:49:37 +0000", "from_user": "syntheticzero", "from_user_id": 17917064, "from_user_id_str": "17917064", "from_user_name": "Mitsu Hadeishi", "geo": null, "id": 148444818811535360, "id_str": "148444818811535362", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1266244101/mitsuface3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266244101/mitsuface3_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "Valuable scalability tales RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/VAWHJSPs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:47:48 +0000", "from_user": "newblogkz", "from_user_id": 401373072, "from_user_id_str": "401373072", "from_user_name": "GM", "geo": null, "id": 148444361775005700, "id_str": "148444361775005696", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1613788736/new2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1613788736/new2_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\\u0421\\u0442\\u0430\\u0442\\u044C\\u044F: cassandra, \\u043F\\u0435\\u0440\\u0432\\u044B\\u0435 \\u0448\\u0430\\u0433\\u0438 \\u0432 NoSQL. (\\u0447\\u0430\\u0441\\u0442\\u044C 1. Debain, \\u0443\\u0441\\u0442\\u0430\\u043D\\u043E\\u0432\\u043A\\u0430) http://t.co/aK2dueg0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:42:23 +0000", "from_user": "mdaisuke", "from_user_id": 23722273, "from_user_id_str": "23722273", "from_user_name": "Daisuke Mori", "geo": null, "id": 148442998324199420, "id_str": "148442998324199424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1243093879/ore_with_macbook_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1243093879/ore_with_macbook_normal.JPG", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "RT @Sixeight: \\u201CPractical NoSQL - Solving a Real Problem with MongoDB and Redis\\u201D http://t.co/U3m8f1QP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:42:12 +0000", "from_user": "chrismckee", "from_user_id": 14406257, "from_user_id_str": "14406257", "from_user_name": "Chris McKee", "geo": null, "id": 148442952140734460, "id_str": "148442952140734464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/358802305/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/358802305/twitterProfilePhoto_normal.jpg", "source": "<a href="http://www.metrotwit.com/" rel="nofollow">MetroTwit</a>", "text": "Facebook Timeline shows mysql still has legs http://t.co/36Mz9HeB and that fb have resisted jumping on the nosql mines shinier bandwagon", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:33:29 +0000", "from_user": "somkiat", "from_user_id": 14053735, "from_user_id_str": "14053735", "from_user_name": "UP1", "geo": null, "id": 148440757244661760, "id_str": "148440757244661761", "iso_language_code": "th", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/925551910/4db95ccd-33db-4d03-be01-292013d5abdb_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/925551910/4db95ccd-33db-4d03-be01-292013d5abdb_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Search Analytics: Business Value & BigData NoSQL Backend http://t.co/ib6axh4d \\u0E1E\\u0E39\\u0E14\\u0E44\\u0E14\\u0E49\\u0E19\\u0E48\\u0E32\\u0E2A\\u0E19\\u0E43\\u0E08\\u0E40\\u0E01\\u0E35\\u0E48\\u0E22\\u0E27\\u0E01\\u0E32\\u0E23\\u0E27\\u0E34\\u0E40\\u0E04\\u0E23\\u0E32\\u0E30\\u0E2B\\u0E4C\\u0E01\\u0E32\\u0E23\\u0E04\\u0E49\\u0E19\\u0E2B\\u0E32\\u0E02\\u0E2D\\u0E07\\u0E1C\\u0E39\\u0E49\\u0E43\\u0E0A\\u0E49\\u0E07\\u0E32\\u0E19", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:32:36 +0000", "from_user": "Sixeight", "from_user_id": 6160692, "from_user_id_str": "6160692", "from_user_name": "Tomohiro Nishimura", "geo": null, "id": 148440536246796300, "id_str": "148440536246796288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1288962293/RIMG0079_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1288962293/RIMG0079_normal.jpeg", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "\\u201CPractical NoSQL - Solving a Real Problem with MongoDB and Redis\\u201D http://t.co/U3m8f1QP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:28:52 +0000", "from_user": "ayende", "from_user_id": 14454642, "from_user_id_str": "14454642", "from_user_name": "ayende", "geo": null, "id": 148439595120472060, "id_str": "148439595120472066", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/350174796/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/350174796/twitterProfilePhoto_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @RavenDB: New video: Polymorphism and #RavenDB http://t.co/qKb84X1B #nosql #dotnet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:27:11 +0000", "from_user": "HiberRhinos", "from_user_id": 331662346, "from_user_id_str": "331662346", "from_user_name": "Hibernating Rhinos", "geo": null, "id": 148439174113017860, "id_str": "148439174113017857", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1432331739/HR_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1432331739/HR_normal.PNG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @RavenDB: New video: Polymorphism and #RavenDB http://t.co/qKb84X1B #nosql #dotnet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:24:55 +0000", "from_user": "EenProgrammeur", "from_user_id": 239876283, "from_user_id_str": "239876283", "from_user_name": "EenProgrammeur", "geo": null, "id": 148438603641536500, "id_str": "148438603641536513", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1219654675/theme-xml_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1219654675/theme-xml_normal.gif", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"Cassandra for LOBS\" http://t.co/7pMwN8lU #NoSQL #Cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:24:18 +0000", "from_user": "RavenDB", "from_user_id": 331695242, "from_user_id_str": "331695242", "from_user_name": "RavenDB", "geo": null, "id": 148438449937072130, "id_str": "148438449937072128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1438347989/RavenDBliconBurgandy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1438347989/RavenDBliconBurgandy_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "New video: Polymorphism and #RavenDB http://t.co/qKb84X1B #nosql #dotnet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:19:31 +0000", "from_user": "danieldeluca", "from_user_id": 14715465, "from_user_id_str": "14715465", "from_user_name": "Daniel De Luca", "geo": +{"coordinates": [50.6537,4.5574], "type": "Point"}, "id": 148437244145971200, "id_str": "148437244145971200", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1210005546/dad-01_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1210005546/dad-01_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Introducing #hadoop (#NoSQL) in 20 pages. - http://t.co/hQuxmEMw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:17:26 +0000", "from_user": "supermem613", "from_user_id": 219014464, "from_user_id_str": "219014464", "from_user_name": "Marcus Markiewicz", "geo": null, "id": 148436718381563900, "id_str": "148436718381563904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1606070757/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606070757/image_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "#NoSQL\\u2019s great, but bring your A game. http://t.co/cRuxYf2Q", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:05:05 +0000", "from_user": "ITJobsinUSA", "from_user_id": 20668038, "from_user_id_str": "20668038", "from_user_name": "IT Jobs in the USA", "geo": null, "id": 148433612222631940, "id_str": "148433612222631937", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/79294538/20861781_21383609_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/79294538/20861781_21383609_normal.jpg", "source": "<a href="http://www.twitjobsearch.com/" rel="nofollow">TwitJobSearch.com Jobs</a>", "text": "PHP Developer - JavaScript, HTML, CSS, SQL, NoSQL, Large Scale - San Mateo - U... #jobs http://t.co/aKDpVLtR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:00:58 +0000", "from_user": "sunilvemuri", "from_user_id": 54229467, "from_user_id_str": "54229467", "from_user_name": "Sunil Vemuri", "geo": null, "id": 148432577710145540, "id_str": "148432577710145536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/761389512/Sunil_Vemuri-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/761389512/Sunil_Vemuri-1_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "NoSQL's great, but bring your A game http://t.co/ht5hysvm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:00:52 +0000", "from_user": "katox", "from_user_id": 17165319, "from_user_id_str": "17165319", "from_user_name": "Kamil Toman", "geo": null, "id": 148432552011628540, "id_str": "148432552011628544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/63586818/650720_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/63586818/650720_normal.jpg", "source": "<a href="http://twitter.com" rel="nofollow">Tweetie for Mac</a>", "text": "RT @_dagi: Pondelni #czjug Lightning Talks rozdeleny do techto tracku: NoSQL/High scalability, REST/Web, Java a Tools http://t.co/vvrzzuq8 prosim RT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:57:14 +0000", "from_user": "tom_nichols", "from_user_id": 18992617, "from_user_id_str": "18992617", "from_user_name": "Thom Nichols", "geo": null, "id": 148431634507640830, "id_str": "148431634507640832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/365347476/profile_picture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/365347476/profile_picture_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @dslevin: NoSQL's great, but bring your A game http://t.co/a2l9uo6x", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:51:41 +0000", "from_user": "abu07b_RSS", "from_user_id": 278047297, "from_user_id_str": "278047297", "from_user_name": "abu07b-RSS", "geo": null, "id": 148430241587662850, "id_str": "148430241587662848", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "InfoQ Japan: James Phillips \\u6C0F\\u304C\\u8A9E\\u308B\\u300C\\u30EA\\u30EC\\u30FC\\u30B7\\u30E7\\u30CA\\u30EB\\u304B\\u3089 NoSQL \\u3078\\u306E\\u30C7\\u30FC\\u30BF\\u30D9\\u30FC\\u30B9\\u79FB\\u884C\\u300D http://t.co/TGI8LHPG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:50:29 +0000", "from_user": "mekkaokereke", "from_user_id": 19847709, "from_user_id_str": "19847709", "from_user_name": "Mekka Okereke", "geo": null, "id": 148429938406596600, "id_str": "148429938406596609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/990000746/profile_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/990000746/profile_pic_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @chrismarin NoSQL's great, but bring your A game http://t.co/zQNECjeV via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:30:10 +0000", "from_user": "digg_m8y", "from_user_id": 389230394, "from_user_id_str": "389230394", "from_user_name": "Digg News", "geo": null, "id": 148424825726173200, "id_str": "148424825726173184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1626739141/digg_m8y_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626739141/digg_m8y_normal.png", "source": "<a href="http://atm8y.com" rel="nofollow">@m8y</a>", "text": "How Digg is Built? Using a Bunch of NoSQL technologies :: myNoSQL #digg http://t.co/106oP72D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:25:38 +0000", "from_user": "dwiardiirawan", "from_user_id": 20668782, "from_user_id_str": "20668782", "from_user_name": "d.a.i.licious \\u00AE ", "geo": null, "id": 148423682950316030, "id_str": "148423682950316032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1645389617/twitter02_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645389617/twitter02_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"Auction and Bidding Applications with Document-Based NoSQL\" http://t.co/MO9aQshX #NoSQL #RavenDB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:23:35 +0000", "from_user": "DZone", "from_user_id": 14782935, "from_user_id_str": "14782935", "from_user_name": "DZone", "geo": null, "id": 148423170167275520, "id_str": "148423170167275521", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/258714549/dzone-square-256_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/258714549/dzone-square-256_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\"Auction and Bidding Applications with Document-Based NoSQL\" http://t.co/MO9aQshX #NoSQL #RavenDB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:19:45 +0000", "from_user": "DZone", "from_user_id": 14782935, "from_user_id_str": "14782935", "from_user_name": "DZone", "geo": null, "id": 148422202939818000, "id_str": "148422202939817984", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/258714549/dzone-square-256_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/258714549/dzone-square-256_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\"Cassandra for LOBS\" http://t.co/7pMwN8lU #NoSQL #Cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:19:17 +0000", "from_user": "DZone", "from_user_id": 14782935, "from_user_id_str": "14782935", "from_user_name": "DZone", "geo": null, "id": 148422086589812740, "id_str": "148422086589812737", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/258714549/dzone-square-256_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/258714549/dzone-square-256_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\"Search Analytics: Business Value & BigData NoSQL Backend\" http://t.co/s42CjF94 #BigData #Solr #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:18:39 +0000", "from_user": "adrianionel", "from_user_id": 11917312, "from_user_id_str": "11917312", "from_user_name": "Adrian Ionel", "geo": null, "id": 148421924983287800, "id_str": "148421924983287808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/54491752/adrian_3648_3_sq_medium_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/54491752/adrian_3648_3_sq_medium_2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "NoSQL is great but takes top talent. Disney, Foursquare and Wordnik share their MongoDB experience. http://t.co/mrOXnIKt #yam", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:05:05 +0000", "from_user": "yegle", "from_user_id": 14157249, "from_user_id_str": "14157249", "from_user_name": "\\u4E00\\u9601", "geo": null, "id": 148418514007498750, "id_str": "148418514007498752", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1122670876/gravatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1122670876/gravatar_normal.png", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@lfeng \\u6211\\u7684\\u76EE\\u6807\\u662F\\u628A\\u6570\\u636E\\u5E93\\u632A\\u5230GAE\\u4E0A\\u2026\\u5FC5\\u987B\\u8981\\u7814\\u7A76NoSQL\\u554A\\u2026", "to_user": "lfeng", "to_user_id": 8759082, "to_user_id_str": "8759082", "to_user_name": "lfeng", "in_reply_to_status_id": 148418155922993150, "in_reply_to_status_id_str": "148418155922993152"}, +{"created_at": "Sun, 18 Dec 2011 15:02:20 +0000", "from_user": "hfeeds", "from_user_id": 273857521, "from_user_id_str": "273857521", "from_user_name": "myfeeds", "geo": null, "id": 148417822425493500, "id_str": "148417822425493504", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "James Phillips \\u6C0F\\u304C\\u8A9E\\u308B\\u300C\\u30EA\\u30EC\\u30FC\\u30B7\\u30E7\\u30CA\\u30EB\\u304B\\u3089 NoSQL \\u3078\\u306E\\u30C7\\u30FC\\u30BF\\u30D9\\u30FC\\u30B9\\u79FB\\u884C\\u300D http://t.co/Mnd9MPM0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:00:32 +0000", "from_user": "patrickDurusau", "from_user_id": 152194866, "from_user_id_str": "152194866", "from_user_name": "Patrick Durusau", "geo": null, "id": 148417366278152200, "id_str": "148417366278152192", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/961579480/patrick_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/961579480/patrick_normal.jpeg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Cassandra - London Podcasts #topicmaps #Cassandra #NoSQL - http://t.co/5ZxrUp88", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:58:18 +0000", "from_user": "drune", "from_user_id": 14625984, "from_user_id_str": "14625984", "from_user_name": "Luis Marques", "geo": null, "id": 148416803700350980, "id_str": "148416803700350977", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1341257689/super-twitter-282x300_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1341257689/super-twitter-282x300_normal.JPG", "source": "<a href="http://www.metrotwit.com/" rel="nofollow">MetroTwit</a>", "text": "Enterprise Edition of Oracle NoSQL database is 14.3MB... #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:58:10 +0000", "from_user": "hnws", "from_user_id": 18449183, "from_user_id_str": "18449183", "from_user_name": "hnws", "geo": null, "id": 148416771915907070, "id_str": "148416771915907072", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/68892084/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/68892084/Untitled_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u5173\\u7CFB\\u578B\\u8DDF NoSQL \\u4E92\\u76F8\\u66FF\\u6362\\u4E4B\\u7C7B\\u7684\\uFF0C\\u67D0\\u5927\\u578B\\u5546\\u4E1A\\u673A\\u6784\\u91CC\\u8FD8\\u6709\\u6307\\u5BFC\\u6027\\u6587\\u6863\\u5462(ry", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:50:15 +0000", "from_user": "lfeng", "from_user_id": 8759082, "from_user_id_str": "8759082", "from_user_name": "lfeng", "geo": null, "id": 148414779621515260, "id_str": "148414779621515264", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1199249916/6a211233022b5bd51a4cffba_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1199249916/6a211233022b5bd51a4cffba_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@yegle \\u8150\\u72F8\\u554A\\uFF0CNoSQL\\u7684\\u7279\\u6027\\uFF0C\\u4F60\\u8981\\u60F3\\u5F53\\u5173\\u7CFB\\u578B\\u6765\\u7528\\uFF0C\\u5F88\\u96BE\\u54DF", "to_user": "yegle", "to_user_id": 14157249, "to_user_id_str": "14157249", "to_user_name": "\\u4E00\\u9601", "in_reply_to_status_id": 148401242455015420, "in_reply_to_status_id_str": "148401242455015425"}, +{"created_at": "Sun, 18 Dec 2011 14:40:12 +0000", "from_user": "sjc_mis_jobs", "from_user_id": 103815507, "from_user_id_str": "103815507", "from_user_name": "SanjoseTechJobs", "geo": null, "id": 148412250254872580, "id_str": "148412250254872576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1237875058/monster_tweets_avitar_reasonably_small_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1237875058/monster_tweets_avitar_reasonably_small_normal.png", "source": "<a href="http://jobview.monster.com" rel="nofollow">Monster Job View</a>", "text": "Check out our job opening for a NoSQL Engineer / DBA in Cupertino, CA! Tata Consultancy Ser #Jobs http://t.co/DJtRXnlj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:38:31 +0000", "from_user": "yegle", "from_user_id": 14157249, "from_user_id_str": "14157249", "from_user_name": "\\u4E00\\u9601", "geo": null, "id": 148411828404371460, "id_str": "148411828404371458", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1122670876/gravatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1122670876/gravatar_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "\\u88AB\\u4EBA\\u4E00\\u53E5\\u8BDD\\u70B9\\u9192\\uFF1Awhat is the point of an ORM for a document database that is not in any way relational? NoSQL\\u4E3A\\u5565\\u9700\\u8981ORM\\u5462\\uFF1F", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:38:23 +0000", "from_user": "anibalrojas", "from_user_id": 19025695, "from_user_id_str": "19025695", "from_user_name": "An\\u00EDbal Rojas (en)", "geo": null, "id": 148411791439958000, "id_str": "148411791439958018", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1314724471/anibal-posterized-01_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1314724471/anibal-posterized-01_normal.jpeg", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "Been there, fun never ends RT @ae_bm: RT \"@jordimirobruix NoSQL\\u2019s great, but bring your A game http://t.co/p9OB4RSQ /cc @rhoml \"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:38:21 +0000", "from_user": "anibal", "from_user_id": 812920, "from_user_id_str": "812920", "from_user_name": "An\\u00EDbal Rojas", "geo": null, "id": 148411786612322300, "id_str": "148411786612322305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1314726186/anibal-posterized-01_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1314726186/anibal-posterized-01_normal.jpeg", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "Been there, fun never ends RT @ae_bm: RT \"@jordimirobruix NoSQL\\u2019s great, but bring your A game http://t.co/d1JLZbeh /cc @rhoml \"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:36:08 +0000", "from_user": "marek_gerhart", "from_user_id": 355451279, "from_user_id_str": "355451279", "from_user_name": "Marek Gerhart", "geo": null, "id": 148411228216229900, "id_str": "148411228216229888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1497079708/40525_1580193673177_1485720672_1669288_1070604_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1497079708/40525_1580193673177_1485720672_1669288_1070604_n_normal.jpg", "source": "<a href="http://twitter.com" rel="nofollow">Tweetie for Mac</a>", "text": "RT @_dagi: Pondelni #czjug Lightning Talks rozdeleny do techto tracku: NoSQL/High scalability, REST/Web, Java a Tools http://t.co/vvrzzuq8 prosim RT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:30:08 +0000", "from_user": "777final777feed", "from_user_id": 81675924, "from_user_id_str": "81675924", "from_user_name": "777final777feed", "geo": null, "id": 148409715754401800, "id_str": "148409715754401792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL's great, but bring your A game \\u2014 Cloud Computing News: At last week's MongoSV conference in Santa Clara, C... http://t.co/qdEmxfLj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:25:42 +0000", "from_user": "wesleylong", "from_user_id": 21544956, "from_user_id_str": "21544956", "from_user_name": "Wesley Long", "geo": null, "id": 148408601520771070, "id_str": "148408601520771074", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/81265024/Wesley2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/81265024/Wesley2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL's great, but bring your A game \\u2014 Cloud Computing News http://t.co/ZLNYsLI9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:23:33 +0000", "from_user": "_dagi", "from_user_id": 16532750, "from_user_id_str": "16532750", "from_user_name": "Roman Pichl\\u00EDk", "geo": null, "id": 148408059474083840, "id_str": "148408059474083840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/61020998/fotosmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/61020998/fotosmall_normal.jpg", "source": "<a href="http://twitter.com" rel="nofollow">Tweetie for Mac</a>", "text": "Pondelni #czjug Lightning Talks rozdeleny do techto tracku: NoSQL/High scalability, REST/Web, Java a Tools http://t.co/vvrzzuq8 prosim RT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:15:47 +0000", "from_user": "d8Pit", "from_user_id": 264394701, "from_user_id_str": "264394701", "from_user_name": "The URL Popularizer", "geo": null, "id": 148406104169254900, "id_str": "148406104169254912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317284522/logo-header_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317284522/logo-header_normal.png", "source": "<a href="http://d8p.it" rel="nofollow">d8P</a>", "text": "RT @dermot_oc: NoSQL\\u2019s great, but bring your A game #bigdata | http://t.co/3f06VF78", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:10:02 +0000", "from_user": "MongoQuestion", "from_user_id": 233820847, "from_user_id_str": "233820847", "from_user_name": "Mongo Question", "geo": null, "id": 148404659793563650, "id_str": "148404659793563648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1207364137/mq_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1207364137/mq_normal.jpg", "source": "<a href="http://learnmongo.com" rel="nofollow">Mongo Question</a>", "text": "\"Any Python ORM make full use of NoSQL's schema-less feature?\" #MongoDB - http://t.co/yWredmYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:09:58 +0000", "from_user": "pythonatso", "from_user_id": 244462999, "from_user_id_str": "244462999", "from_user_name": "PythonAtSO", "geo": null, "id": 148404640311025660, "id_str": "148404640311025665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1228917593/Screen_shot_2011-01-29_at_7.25.02_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1228917593/Screen_shot_2011-01-29_at_7.25.02_PM_normal.png", "source": "<a href="http://pythonatso.appspot.com/" rel="nofollow">@PythonAtSO</a>", "text": "Any Python ORM make full use of NoSQL's schema-less feature? http://t.co/1pf5JeHY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:09:40 +0000", "from_user": "TopCloudHosting", "from_user_id": 170814667, "from_user_id_str": "170814667", "from_user_name": "CloudComputing", "geo": null, "id": 148404565732106240, "id_str": "148404565732106241", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1090310223/cloud_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1090310223/cloud_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @trollkarlnet #NoSQL\\u2019s great, but bring your A game \\u2014 Cloud Computing News http://t.co/WLi2H80h: #NoSQL\\u2019s great, but bring your A...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:08:11 +0000", "from_user": "dermot_oc", "from_user_id": 213812970, "from_user_id_str": "213812970", "from_user_name": "Dermot O'Connor", "geo": null, "id": 148404192762003460, "id_str": "148404192762003456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1163516449/me-hd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1163516449/me-hd_normal.jpg", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/EA0Am6ZZ #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:01:01 +0000", "from_user": "trollkarlnet", "from_user_id": 45505753, "from_user_id_str": "45505753", "from_user_name": "Greg Skafte", "geo": null, "id": 148402390939344900, "id_str": "148402390939344896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/254106512/Personal-2006-05-16-PENTAX_Optio_W20-0004_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/254106512/Personal-2006-05-16-PENTAX_Optio_W20-0004_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "#NoSQL\\u2019s great, but bring your A game \\u2014 Cloud Computing News http://t.co/OFm1jQ37", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:56:28 +0000", "from_user": "yegle", "from_user_id": 14157249, "from_user_id_str": "14157249", "from_user_name": "\\u4E00\\u9601", "geo": null, "id": 148401242455015420, "id_str": "148401242455015425", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1122670876/gravatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1122670876/gravatar_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "\\u6709\\u771F\\u6B63\\u5145\\u5206\\u4F7F\\u7528\\u4E86NoSQL\\u7279\\u6027\\u7684Python ORM\\u5417\\uFF1F\\u7279\\u6307\\u90A3\\u79CD\\u6D3E\\u751F\\u7C7B\\u548C\\u7236\\u7C7B\\u653E\\u5728\\u4E00\\u4E2Acollection/table\\u7684ORM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:53:24 +0000", "from_user": "jaminguy", "from_user_id": 11055372, "from_user_id_str": "11055372", "from_user_name": "Jamin Guy", "geo": null, "id": 148400472745705470, "id_str": "148400472745705472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1537339154/SwanBall2011Face_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1537339154/SwanBall2011Face_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "NoSQL\\u2019s great, but bring your A game | Cloud Computing News http://t.co/PrgnPq2h", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:39:01 +0000", "from_user": "TopCloudHosting", "from_user_id": 170814667, "from_user_id_str": "170814667", "from_user_name": "CloudComputing", "geo": null, "id": 148396851983425540, "id_str": "148396851983425537", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1090310223/cloud_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1090310223/cloud_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @TechnoMile NoSQL\\u2019s great, but bring your A game \\u2014 Cloud Computing News | http://t.co/MPbcWtgwhttp://twitter.com/vakulkumarm... h...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:34:37 +0000", "from_user": "TechnoMile", "from_user_id": 89779407, "from_user_id_str": "89779407", "from_user_name": "TechnoMile LLC", "geo": null, "id": 148395746226487300, "id_str": "148395746226487296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1187113101/techomile_normal_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1187113101/techomile_normal_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game \\u2014 Cloud Computing News | http://t.co/MPbcWtgwhttp://twitter.com/vakulkumarm... http://t.co/P4LvbjdU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:31:10 +0000", "from_user": "bretthoerner", "from_user_id": 638913, "from_user_id_str": "638913", "from_user_name": "Brett Hoerner", "geo": null, "id": 148394878928302080, "id_str": "148394878928302080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1218545267/brett2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218545267/brett2_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"My ORM doesn't work well with NoSQL, so it sucks.\" What is this, I don't even. http://t.co/SdY5qDRK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:30:13 +0000", "from_user": "dotnetsoul", "from_user_id": 20122975, "from_user_id_str": "20122975", "from_user_name": "Vakul Kumar More", "geo": null, "id": 148394639077023740, "id_str": "148394639077023744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1430063576/VakulKMore-Twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1430063576/VakulKMore-Twitter_normal.jpg", "source": "<a href="http://smartr.mobi" rel="nofollow">smartr</a>", "text": "NoSQL\\u2019s great, but bring your A game \\u2014 Cloud Computing News | http://t.co/MPbcWtgw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:25:24 +0000", "from_user": "w3lab", "from_user_id": 6183722, "from_user_id_str": "6183722", "from_user_name": "Tristan Thomas", "geo": null, "id": 148393427757838340, "id_str": "148393427757838338", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1655919292/DSC_2163__2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655919292/DSC_2163__2__normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @skion: Whoa 1400+ #mongo's at Disney \\u201C@filos: NoSQL\\u2019s great, but bring your A game http://t.co/8lwNK8bq\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:20:28 +0000", "from_user": "edgar", "from_user_id": 812868, "from_user_id_str": "812868", "from_user_name": "Edgar Gonz\\u00E1lez", "geo": null, "id": 148392184402558980, "id_str": "148392184402558976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1563370607/IMG_1799_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1563370607/IMG_1799_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@ae_bm: RT \"@jordimirobruix NoSQL\\u2019s great, but bring your A game http://t.co/MnXAOPM4 /cc @rhoml \" /cc @anibal @edgar @thimotyd\\u201D thx!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:19:15 +0000", "from_user": "blysscomputers", "from_user_id": 110210484, "from_user_id_str": "110210484", "from_user_name": "Blyss Computers", "geo": null, "id": 148391877731819520, "id_str": "148391877731819520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/668487429/smileprofile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/668487429/smileprofile_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL for us RDBMS folks - MongoDB 101 | Javalobby: http://t.co/kq1KKDuc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:06:51 +0000", "from_user": "romsson", "from_user_id": 14898705, "from_user_id_str": "14898705", "from_user_name": "Romain Vuillemot", "geo": null, "id": 148388760097263600, "id_str": "148388760097263616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1646789005/moi-id-tof-effects-600x600-gplus_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646789005/moi-id-tof-effects-600x600-gplus_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @NicolasMax: NoSQL\\u2019s great, but bring your A game http://t.co/aYeFbuus", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:04:56 +0000", "from_user": "dominiek", "from_user_id": 8620452, "from_user_id_str": "8620452", "from_user_name": "Dominiek ter Heide", "geo": null, "id": 148388276418523140, "id_str": "148388276418523136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1318014532/blink_215_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1318014532/blink_215_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/N2Dy3g9g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:59:26 +0000", "from_user": "Ivan_Debnar", "from_user_id": 148461671, "from_user_id_str": "148461671", "from_user_name": "Ivan Debn\\u00E1r", "geo": null, "id": 148386893078347780, "id_str": "148386893078347777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1580165037/n797574571_1211920_7793_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580165037/n797574571_1211920_7793_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/EnyVZ4uZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:43:23 +0000", "from_user": "ostaquet", "from_user_id": 130800387, "from_user_id_str": "130800387", "from_user_name": "Olivier Staquet", "geo": null, "id": 148382854244605950, "id_str": "148382854244605955", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/853329375/P1010191_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/853329375/P1010191_normal.jpeg", "source": "<a href="http://www.apple.com" rel="nofollow">Safari on iOS</a>", "text": "#NoSQL is useful for some use cases, but it\\u2019s not for companies afraid of hard work. (cases studies) http://t.co/y75OaGGw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:36:54 +0000", "from_user": "kerneltime", "from_user_id": 14139529, "from_user_id_str": "14139529", "from_user_name": "Ritesh", "geo": null, "id": 148381218784808960, "id_str": "148381218784808960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/766072638/twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/766072638/twitter_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @RichRogersHDS: \"NoSQL is necessary for a lot of use cases, but it\\u2019s not for companies afraid of hard work.\" - @derrickharris http://t.co/ZwSk2iq7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:34:31 +0000", "from_user": "Andrey_Lomakin", "from_user_id": 96553655, "from_user_id_str": "96553655", "from_user_name": "Andrey Lomakin", "geo": null, "id": 148380622619025400, "id_str": "148380622619025409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1263883395/a_a4af1b6e_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263883395/a_a4af1b6e_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lgarulli: #OrientDB 1.0rc8-SNAPSHOT: 300% faster importing IMDB db than 1.0rc7. New relationships mgmt scales up much better! #graphdb #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:34:25 +0000", "from_user": "Andrey_Lomakin", "from_user_id": 96553655, "from_user_id_str": "96553655", "from_user_name": "Andrey Lomakin", "geo": null, "id": 148380597616775170, "id_str": "148380597616775168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1263883395/a_a4af1b6e_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263883395/a_a4af1b6e_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lgarulli: How to plug a new command in #OrientDB console? https://t.co/Dy5KjvVu #graphdb #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Sun, 18 Dec 2011 12:30:32 +0000", "from_user": "geoguru", "from_user_id": 2609201, "from_user_id_str": "2609201", "from_user_name": "geoguru", "geo": null, "id": 148379620268441600, "id_str": "148379620268441600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/563107275/353_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/563107275/353_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "NoSQL\\u2019s great, but bring your A game | Cloud Computing News http://t.co/18it8cp9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:26:36 +0000", "from_user": "Bizzabo", "from_user_id": 218061205, "from_user_id_str": "218061205", "from_user_name": "Bizzabo", "geo": null, "id": 148378628412026880, "id_str": "148378628412026880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1534197723/bizzabo_SQ_Small_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534197723/bizzabo_SQ_Small_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @couchbase: Big day tomorrow! #CouchConf Israel! get your tix to this #nosql event here --> http://t.co/vfV6nTRk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:17:51 +0000", "from_user": "TopTecRecruiter", "from_user_id": 92369482, "from_user_id_str": "92369482", "from_user_name": "Avetis Antaplyan", "geo": null, "id": 148376426201096200, "id_str": "148376426201096193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Are you a good fit for this job? Sr Java Engineer (Hadoop, NoSQL, Memcache) in Los Angeles, CA http://t.co/hERrBf9c #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:12:39 +0000", "from_user": "NicolasMax", "from_user_id": 6054612, "from_user_id_str": "6054612", "from_user_name": "Nicolas Guillaume", "geo": null, "id": 148375117636972540, "id_str": "148375117636972544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1111995362/PhotoRefPortrait1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1111995362/PhotoRefPortrait1_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/aYeFbuus", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:08:46 +0000", "from_user": "KevinDGreer", "from_user_id": 28472258, "from_user_id_str": "28472258", "from_user_name": "Kevin Greer", "geo": null, "id": 148374141605642240, "id_str": "148374141605642240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1281867856/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1281867856/image_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/NgVGVmrM (via @gigaom)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:08:44 +0000", "from_user": "louiebaur", "from_user_id": 14429823, "from_user_id_str": "14429823", "from_user_name": "Louie Baur ", "geo": null, "id": 148374131778387970, "id_str": "148374131778387968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1334347647/louiefacesmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1334347647/louiefacesmall_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/tAHu1Nvc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:08:44 +0000", "from_user": "vasantk", "from_user_id": 9637002, "from_user_id_str": "9637002", "from_user_name": "Vasant Kumar", "geo": null, "id": 148374131639992320, "id_str": "148374131639992320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/211963559/vk4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/211963559/vk4_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/pJTgBW6p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:08:44 +0000", "from_user": "i_discover", "from_user_id": 35052997, "from_user_id_str": "35052997", "from_user_name": "i-Discover", "geo": null, "id": 148374130792726530, "id_str": "148374130792726528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1197013002/testlogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1197013002/testlogo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: MongoDB might be a popular choice in NoSQL databases, but it\\u2019s not perfect... http://t.co/d6mOerkg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:08:43 +0000", "from_user": "jbdcolley", "from_user_id": 20989396, "from_user_id_str": "20989396", "from_user_name": "John Colley", "geo": null, "id": 148374129857409020, "id_str": "148374129857409024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693229525/Colley11_073col_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693229525/Colley11_073col_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: MongoDB might be a popular choice in NoSQL databases, but it\\u2019s not perfect... http://t.co/gg0NcPu9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:08:42 +0000", "from_user": "_cmom_", "from_user_id": 89728883, "from_user_id_str": "89728883", "from_user_name": "Claudio M.O. Moura", "geo": null, "id": 148374126023815170, "id_str": "148374126023815168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1026177335/8916e1106e6334453657c181b468b8f6_1__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1026177335/8916e1106e6334453657c181b468b8f6_1__normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: MongoDB might be a popular choice in NoSQL databases, but it\\u2019s not pe... http://t.co/eYJpQRGm [GO]", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:08:36 +0000", "from_user": "Telletto", "from_user_id": 39851511, "from_user_id_str": "39851511", "from_user_name": "Telletto", "geo": null, "id": 148374098257510400, "id_str": "148374098257510400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/210683933/tell-twit_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/210683933/tell-twit_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: MongoDB might be a popular choice in NoSQL databases, but it\\u2019s not perfect... http://t.co/BIYJVK9k", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:07:03 +0000", "from_user": "torazuka", "from_user_id": 27420006, "from_user_id_str": "27420006", "from_user_name": "torazuka", "geo": null, "id": 148373708514398200, "id_str": "148373708514398208", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1112431716/torazuka_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1112431716/torazuka_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u5F97\\u4F53\\u306E\\u77E5\\u308C\\u306A\\u3044NoSQL\\u305D\\u308A\\u3085\\u30FC\\u3057\\u3087\\u3093\\u306B\\u30AB\\u30E2\\u3089\\u308C\\u306A\\u3044\\u3088\\u3046\\u306B\\u77E5\\u8B58\\u3092\\u8EAB\\u306B\\u3064\\u3051\\u308B\\u3063\\u3066\\u3001\\u308F\\u308A\\u3068\\u76F4\\u8FD1\\u306E\\u8AB2\\u984C\\u306A\\u3093\\u3060\\u3051\\u308C\\u3069\\u3082\\u3001\\u30B5\\u30C6\\u3002\\u3002\\u3002\\u77E5\\u3089\\u306A\\u3044\\u3053\\u3068\\u304C\\u591A\\u3059\\u304E\\u308B\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:06:18 +0000", "from_user": "jzedward", "from_user_id": 58768407, "from_user_id_str": "58768407", "from_user_name": "John Edwards", "geo": null, "id": 148373521280667650, "id_str": "148373521280667648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/324402850/jzedward360_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/324402850/jzedward360_normal.gif", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/N2Dy3g9g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:03:00 +0000", "from_user": "anrizal", "from_user_id": 54428352, "from_user_id_str": "54428352", "from_user_name": "anrizal", "geo": null, "id": 148372691655737340, "id_str": "148372691655737344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1205555041/photo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1205555041/photo_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Kingwulf: Apache Gora community has voted to graduate from incubator: http://t.co/JgOUbsKd #gora #nosql #orm #asf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:58:43 +0000", "from_user": "mwessendorf", "from_user_id": 12287422, "from_user_id_str": "12287422", "from_user_name": "Matthias Wessendorf", "geo": null, "id": 148371612767490050, "id_str": "148371612767490048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1644899733/mw80s_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644899733/mw80s_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Kingwulf: Apache Gora community has voted to graduate from incubator: http://t.co/JgOUbsKd #gora #nosql #orm #asf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:49:21 +0000", "from_user": "krishnanuli", "from_user_id": 30651051, "from_user_id_str": "30651051", "from_user_name": "Krishna Nuli", "geo": null, "id": 148369253853167600, "id_str": "148369253853167616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1108703905/Profile-Pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1108703905/Profile-Pic_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "NoSQL\\u2019s great, but bring your A game | Cloud Computing News http://t.co/0fwCsGOg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:43:03 +0000", "from_user": "delicerubyrails", "from_user_id": 186274683, "from_user_id_str": "186274683", "from_user_name": "Delicious Ruby Rails", "geo": null, "id": 148367668683079680, "id_str": "148367668683079680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "HandlerSocket: The NoSQL MySQL & Ruby - http://t.co/VGMRn4MF: http://t.co/198vsSmW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:39:14 +0000", "from_user": "KarlRanseier", "from_user_id": 15301646, "from_user_id_str": "15301646", "from_user_name": "Karl Ranseier", "geo": null, "id": 148366708095189000, "id_str": "148366708095188993", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1077034896/ranseier_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1077034896/ranseier_bigger_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @RichRogersHDS: \"NoSQL is necessary for a lot of use cases, but it\\u2019s not for companies afraid of hard work.\" - @derrickharris http://t.co/ZwSk2iq7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:35:08 +0000", "from_user": "GlennSallis", "from_user_id": 188079988, "from_user_id_str": "188079988", "from_user_name": "GlennSallis", "geo": null, "id": 148365676824895500, "id_str": "148365676824895488", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1553598726/SAlis01web_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553598726/SAlis01web_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "NoSQL Conferences: http://t.co/FbrvlLQU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:34:45 +0000", "from_user": "_entreprenerd", "from_user_id": 141852977, "from_user_id_str": "141852977", "from_user_name": "Arno Smit", "geo": null, "id": 148365579349270530, "id_str": "148365579349270528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1463374446/IMG_1453_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1463374446/IMG_1453_normal.jpeg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "Great read, why NoSQL is not for everybody. #mongodb #foursquare #disney http://t.co/Vq6tYVq0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:31:01 +0000", "from_user": "sergeikastrov", "from_user_id": 52012384, "from_user_id_str": "52012384", "from_user_name": "Sergei Kastrov", "geo": null, "id": 148364640345272320, "id_str": "148364640345272320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1189918170/best-replica-homer-simpson01_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1189918170/best-replica-homer-simpson01_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/jeWX7vJC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:28:46 +0000", "from_user": "RichRogersHDS", "from_user_id": 283053195, "from_user_id_str": "283053195", "from_user_name": "Rich Rogers", "geo": null, "id": 148364073535414270, "id_str": "148364073535414272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1599587043/Rich_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599587043/Rich_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"NoSQL is necessary for a lot of use cases, but it\\u2019s not for companies afraid of hard work.\" - @derrickharris http://t.co/ZwSk2iq7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:00:29 +0000", "from_user": "udilev", "from_user_id": 28398545, "from_user_id_str": "28398545", "from_user_name": "Udi Levin", "geo": null, "id": 148356956401303550, "id_str": "148356956401303552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1333963235/1206-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1333963235/1206-1_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "NoSQL's great, but bring your A game http://t.co/fwhF2I4M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:54:07 +0000", "from_user": "schmkr", "from_user_id": 9292262, "from_user_id_str": "9292262", "from_user_name": "Alwin Schoemaker", "geo": null, "id": 148355355611643900, "id_str": "148355355611643905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1429617800/instagram-profile-picture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1429617800/instagram-profile-picture_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "NoSQL's great, but bring your A game http://t.co/Zkrhjbtc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:52:12 +0000", "from_user": "stevenhsu", "from_user_id": 14157198, "from_user_id_str": "14157198", "from_user_name": "Steven Hsu", "geo": null, "id": 148354872104861700, "id_str": "148354872104861696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1188774622/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1188774622/image_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "RT @tzangms: NoSQL's great, but bring your A game http://t.co/RYy0qkUb via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:41:15 +0000", "from_user": "areaweb", "from_user_id": 53359864, "from_user_id_str": "53359864", "from_user_name": "Cristiano Rastelli", "geo": null, "id": 148352116531011600, "id_str": "148352116531011585", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/433489099/redneck_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/433489099/redneck_normal.png", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/ZaUqX6M7 /cc @nosqlday", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:35:59 +0000", "from_user": "xinu", "from_user_id": 10462732, "from_user_id_str": "10462732", "from_user_name": "Rodrigo A. de Campos", "geo": null, "id": 148350792292765700, "id_str": "148350792292765696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675132674/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675132674/image_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "NoSQL's great, but bring your A game http://t.co/0oYDw2Uy via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:29:37 +0000", "from_user": "broersa", "from_user_id": 15907577, "from_user_id_str": "15907577", "from_user_name": "broersa", "geo": null, "id": 148349189431103500, "id_str": "148349189431103488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1155983782/20091009_10132701-1_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1155983782/20091009_10132701-1_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/xd3DpzTP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:25:29 +0000", "from_user": "Teabeats", "from_user_id": 21852400, "from_user_id_str": "21852400", "from_user_name": "Piet Schrijver", "geo": null, "id": 148348148350328830, "id_str": "148348148350328832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/290697335/amiga1_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/290697335/amiga1_3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Kingwulf: Apache Gora community has voted to graduate from incubator: http://t.co/JgOUbsKd #gora #nosql #orm #asf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:23:52 +0000", "from_user": "shazrinjb", "from_user_id": 137771694, "from_user_id_str": "137771694", "from_user_name": "Sheik Hazrin", "geo": null, "id": 148347740500398080, "id_str": "148347740500398081", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1445689736/tw_9922234_1310838816_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1445689736/tw_9922234_1310838816_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Open Source Grails 2.0 with more cloud support and NoSQL connectivity: The Grails development te... http://t.co/O29UQYlE ... @jezrin.com", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:12:05 +0000", "from_user": "clhplus1", "from_user_id": 299018307, "from_user_id_str": "299018307", "from_user_name": "Hamish Dwight", "geo": null, "id": 148344775412682750, "id_str": "148344775412682752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/UhFLwhiB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:05:42 +0000", "from_user": "redeye", "from_user_id": 928941, "from_user_id_str": "928941", "from_user_name": "Mark P. ", "geo": null, "id": 148343168461570050, "id_str": "148343168461570048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639983245/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639983245/image_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/N2Dy3g9g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:45:16 +0000", "from_user": "nikmes", "from_user_id": 47760853, "from_user_id_str": "47760853", "from_user_name": "Nicholas Messaritis", "geo": null, "id": 148338026882408450, "id_str": "148338026882408448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/368104319/nik_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/368104319/nik_normal.JPG", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "NoSQL's great, but bring your A game http://t.co/6MvWtlyk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:44:28 +0000", "from_user": "aravindajad", "from_user_id": 1169681, "from_user_id_str": "1169681", "from_user_name": "Aravind Ajad", "geo": null, "id": 148337826583429120, "id_str": "148337826583429120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1299520026/avatar_normal.JPEG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1299520026/avatar_normal.JPEG", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/A9ZQRKXi #in", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:39:04 +0000", "from_user": "yenerm", "from_user_id": 27433411, "from_user_id_str": "27433411", "from_user_name": "Murat Yener", "geo": null, "id": 148336469331820540, "id_str": "148336469331820545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1583179863/148549_10150099677974880_622379879_7356841_1622959_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583179863/148549_10150099677974880_622379879_7356841_1622959_n_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "RT @nacidai: NoSQL's great, but bring your A game... http://t.co/bWkADz6w", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:38:48 +0000", "from_user": "currencytweetie", "from_user_id": 95452088, "from_user_id_str": "95452088", "from_user_name": "currencytweetie", "geo": null, "id": 148336399878336500, "id_str": "148336399878336512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/564993343/currencytweetie_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/564993343/currencytweetie_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @stocksradar: NoSQL\\u2019s great, but bring your A game http://t.co/6auFbqN6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:38:17 +0000", "from_user": "nessykalvo", "from_user_id": 16207251, "from_user_id_str": "16207251", "from_user_name": "nessykalvo", "geo": null, "id": 148336270123347970, "id_str": "148336270123347968", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/290201830/nessykalvo42_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/290201830/nessykalvo42_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "NoSql, No SQL ? .. http://t.co/aUBG2tXh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:26:52 +0000", "from_user": "commoditytree", "from_user_id": 95452478, "from_user_id_str": "95452478", "from_user_name": "commoditytree", "geo": null, "id": 148333398748954620, "id_str": "148333398748954624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/564996335/commoditytree_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/564996335/commoditytree_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @stocksradar: NoSQL\\u2019s great, but bring your A game http://t.co/6auFbqN6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:23:11 +0000", "from_user": "TomaszJaniczek", "from_user_id": 374186997, "from_user_id_str": "374186997", "from_user_name": "Tomasz Janiczek", "geo": null, "id": 148332470817918980, "id_str": "148332470817918976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1624457965/tomasz-janiczek_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624457965/tomasz-janiczek_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/hh1UV7p0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:21:36 +0000", "from_user": "michael_abraham", "from_user_id": 18367318, "from_user_id_str": "18367318", "from_user_name": "Michael Abraham", "geo": null, "id": 148332073109815300, "id_str": "148332073109815296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691975794/gdpit_com_96762788_6_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691975794/gdpit_com_96762788_6_normal.gif", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/N2Dy3g9g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:21:09 +0000", "from_user": "ae_bm", "from_user_id": 141272779, "from_user_id_str": "141272779", "from_user_name": "Alejandro E B M", "geo": null, "id": 148331959947493380, "id_str": "148331959947493376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1213776781/mu2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1213776781/mu2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT \"@jordimirobruix NoSQL\\u2019s great, but bring your A game http://t.co/CdB6XAor /cc @rhoml \" /cc @anibal @edgar @thimotyd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:21:01 +0000", "from_user": "vrinek", "from_user_id": 18434220, "from_user_id_str": "18434220", "from_user_name": "\\u039A\\u03CE\\u03C3\\u03C4\\u03B1\\u03C2 \\u039A\\u03B1\\u03C1\\u03B1\\u03C7\\u03AC\\u03BB\\u03B9\\u03BF\\u03C2", "geo": null, "id": 148331923863904260, "id_str": "148331923863904257", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/234907969/sonic_48px_hi_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/234907969/sonic_48px_hi_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @HackerNewsYC: NoSQL\\u2019s great, but bring your A game http://t.co/702fKy99", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:12:01 +0000", "from_user": "CraigEunson", "from_user_id": 38903928, "from_user_id_str": "38903928", "from_user_name": "Craig Eunson", "geo": null, "id": 148329659224961020, "id_str": "148329659224961024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1673831799/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673831799/image_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Examples of live nosql.. NoSQL\\u2019s great, but bring your A game http://t.co/RJIwCuG7: Examples of live nosql.. NoS... http://t.co/PaSFpfiS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:10:57 +0000", "from_user": "1Marc", "from_user_id": 14465898, "from_user_id_str": "14465898", "from_user_name": "Marc Grabanski", "geo": null, "id": 148329392089743360, "id_str": "148329392089743361", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1590274005/marcgrabanski_avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1590274005/marcgrabanski_avatar_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @couchbase: Big day tomorrow! #CouchConf Israel! get your tix to this #nosql event here --> http://t.co/tR4inCwx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:09:16 +0000", "from_user": "rajanmanick", "from_user_id": 205200705, "from_user_id_str": "205200705", "from_user_name": "Rajan Manickavasagam", "geo": null, "id": 148328969119346700, "id_str": "148328969119346688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698642028/Rajan_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698642028/Rajan_normal.jpg", "source": "<a href="http://news360.com/" rel="nofollow">News360</a>", "text": "Examples of live nosql.. NoSQL\\u2019s great, but bring your A game http://t.co/xvivL9qF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:59:49 +0000", "from_user": "javameme", "from_user_id": 234813052, "from_user_id_str": "234813052", "from_user_name": "Javameme", "geo": null, "id": 148326590953160700, "id_str": "148326590953160704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Search Analytics: Business Value & BigData NoSQL Backend: Search is increasingly the primary information access ... http://t.co/ZlEMLF1U", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:58:34 +0000", "from_user": "aquajach", "from_user_id": 64916606, "from_user_id_str": "64916606", "from_user_name": "Jack Chen S Y", "geo": null, "id": 148326276174843900, "id_str": "148326276174843905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1285171587/IMG_2394_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1285171587/IMG_2394_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "\"Virtual disks has virtual performance\" RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/x1dOYvaz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:47:48 +0000", "from_user": "timechanter", "from_user_id": 14290594, "from_user_id_str": "14290594", "from_user_name": "timechanter", "geo": null, "id": 148323567740792830, "id_str": "148323567740792833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/52619571/n649770846_4538_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/52619571/n649770846_4538_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/N2Dy3g9g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:47:44 +0000", "from_user": "jtenhunen", "from_user_id": 281165683, "from_user_id_str": "281165683", "from_user_name": "Jari Tenhunen", "geo": null, "id": 148323550284103680, "id_str": "148323550284103681", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1309862901/viikset2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1309862901/viikset2_normal.jpg", "source": "<a href="http://swipe.nokia.com/" rel="nofollow">Tweet from Nokia N9</a>", "text": "Dear Internet, which in-memory NoSQL database should I use? It should have a nice Python API.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:43:52 +0000", "from_user": "peerz", "from_user_id": 15734124, "from_user_id_str": "15734124", "from_user_name": "Peerz ", "geo": null, "id": 148322574437322750, "id_str": "148322574437322752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1132989116/only_p_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1132989116/only_p_normal.jpg", "source": "Zite Personalized Magazine", "text": "NoSQL's great, but bring your A game http://t.co/JnSk4xCX via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:36:40 +0000", "from_user": "bduclaux", "from_user_id": 14532362, "from_user_id_str": "14532362", "from_user_name": "Bastien Duclaux", "geo": null, "id": 148320763211022340, "id_str": "148320763211022336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1092404061/3a72f9d_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1092404061/3a72f9d_normal.jpg", "source": "Zite Personalized Magazine", "text": "NoSQL's great, but bring your A game http://t.co/7yLqhq8L", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:35:25 +0000", "from_user": "PanosJee", "from_user_id": 17865999, "from_user_id_str": "17865999", "from_user_name": "Panos Papadopoulos", "geo": null, "id": 148320448222998530, "id_str": "148320448222998528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/455901110/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/455901110/me_normal.jpg", "source": "<a href="http://www.alphonsolabs.com/" rel="nofollow">Pulse News</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/btd3ubXt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:32:46 +0000", "from_user": "aninditoyr", "from_user_id": 23914785, "from_user_id_str": "23914785", "from_user_name": "anindito yoga", "geo": null, "id": 148319783899758600, "id_str": "148319783899758592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/281329443/yogyes-small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/281329443/yogyes-small_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/EjZGJzbE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:30:49 +0000", "from_user": "AmrAttia", "from_user_id": 54157120, "from_user_id_str": "54157120", "from_user_name": "Amr Attia", "geo": null, "id": 148319292750958600, "id_str": "148319292750958592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1102523546/a6922_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1102523546/a6922_normal.jpg", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/6WPq0sq7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:30:06 +0000", "from_user": "Nicky_Rede", "from_user_id": 88729410, "from_user_id_str": "88729410", "from_user_name": "Nicky_Rede", "geo": null, "id": 148319109652815870, "id_str": "148319109652815872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1649491311/676108dc0e5c11e1abb01231381b65e3_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649491311/676108dc0e5c11e1abb01231381b65e3_7_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/ZnbZ5vxZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:24:44 +0000", "from_user": "TopCloudHosting", "from_user_id": 170814667, "from_user_id_str": "170814667", "from_user_name": "CloudComputing", "geo": null, "id": 148317760085176320, "id_str": "148317760085176320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1090310223/cloud_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1090310223/cloud_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @tguemes Interesting experiences on MongoDB: \"NoSQL\\u2019s great, but bring your A game \\u2014 Cloud Computing News\" http://t.co/fL4TLmhz: ...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:17:55 +0000", "from_user": "andreabalducci", "from_user_id": 16302044, "from_user_id_str": "16302044", "from_user_name": "andreabalducci", "geo": null, "id": 148316046359674880, "id_str": "148316046359674880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1391450977/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1391450977/image_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "NoSQL's great, but bring your A game http://t.co/CEpwGJf0 via @zite 1.400 mongodb instances?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:14:07 +0000", "from_user": "AdalineMcleoud", "from_user_id": 407707133, "from_user_id_str": "407707133", "from_user_name": "Adaline Mcleoud", "geo": null, "id": 148315088917508100, "id_str": "148315088917508096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1629084149/148851318745__2__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629084149/148851318745__2__normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/xKzNbHOp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:13:21 +0000", "from_user": "tguemes", "from_user_id": 23236293, "from_user_id_str": "23236293", "from_user_name": "Celestino G\\u00FCemes", "geo": null, "id": 148314896315056130, "id_str": "148314896315056128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/394198628/foto_oficial_tinog_a_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/394198628/foto_oficial_tinog_a_400_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Interesting experiences on MongoDB: \"NoSQL\\u2019s great, but bring your A game \\u2014 Cloud Computing News\" http://t.co/AjzWD4lC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:12:19 +0000", "from_user": "aliozgur", "from_user_id": 52377176, "from_user_id_str": "52377176", "from_user_name": "Ali \\u00D6zg\\u00FCr", "geo": null, "id": 148314634531770370, "id_str": "148314634531770368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1320985903/AO_Small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1320985903/AO_Small_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/N2Dy3g9g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:11:51 +0000", "from_user": "arashmilanii", "from_user_id": 17511291, "from_user_id_str": "17511291", "from_user_name": "Arash Milani", "geo": null, "id": 148314518093697020, "id_str": "148314518093697024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1460658634/IMG_1914_b_s_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1460658634/IMG_1914_b_s_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "RT @mahdi: Google Insights: Cassandra appear as the leading NoSQL solution. http://t.co/fjETAsGw #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:09:59 +0000", "from_user": "AuraJardine", "from_user_id": 407707848, "from_user_id_str": "407707848", "from_user_name": "Aura Jardine", "geo": null, "id": 148314050428796930, "id_str": "148314050428796929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1629085589/83166283470_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629085589/83166283470_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/Fg7ffW9M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:03:38 +0000", "from_user": "DanyellMorelle", "from_user_id": 407708423, "from_user_id_str": "407708423", "from_user_name": "Danyell Morelle", "geo": null, "id": 148312451782418430, "id_str": "148312451782418432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1629086207/1556331921colazero.com-female_1129_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629086207/1556331921colazero.com-female_1129_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/KCW8QCKG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:03:34 +0000", "from_user": "ElwandaLevy", "from_user_id": 407706960, "from_user_id_str": "407706960", "from_user_name": "Elwanda Levy", "geo": null, "id": 148312432455061500, "id_str": "148312432455061504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1629083993/604946924165_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629083993/604946924165_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/kKNQdvmn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:52:17 +0000", "from_user": "KatharineBerry", "from_user_id": 8178372, "from_user_id_str": "8178372", "from_user_name": "Katharine Berry", "geo": null, "id": 148309593397788670, "id_str": "148309593397788672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1010417949/Screen_shot_2010-06-21_at_12.33.41_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1010417949/Screen_shot_2010-06-21_at_12.33.41_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@PatchouliW @signpostmarv NoSQL (in some perhaps less generic forms) has entirely legitimate uses! Key-value stores are good sometimes, too!", "to_user": "PatchouliW", "to_user_id": 5854302, "to_user_id_str": "5854302", "to_user_name": "Patchouli Woollahra", "in_reply_to_status_id": 148308136925732860, "in_reply_to_status_id_str": "148308136925732865"}, +{"created_at": "Sun, 18 Dec 2011 07:51:44 +0000", "from_user": "CristyRobison", "from_user_id": 407706514, "from_user_id_str": "407706514", "from_user_name": "Cristy Robison", "geo": null, "id": 148309454348222460, "id_str": "148309454348222464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1630675895/flower_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630675895/flower_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/u1PcYoTP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:51:32 +0000", "from_user": "razisharir", "from_user_id": 18939089, "from_user_id_str": "18939089", "from_user_name": "Razi Sharir", "geo": null, "id": 148309404146602000, "id_str": "148309404146601984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1035296518/razisharir_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1035296518/razisharir_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/PZIG11Om", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:51:21 +0000", "from_user": "BrittnyGelzinis", "from_user_id": 407706515, "from_user_id_str": "407706515", "from_user_name": "Brittny Gelzinis", "geo": null, "id": 148309359175278600, "id_str": "148309359175278593", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1629083322/1602106896gjfjsfgj_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629083322/1602106896gjfjsfgj_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/aZWimyo0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:49:51 +0000", "from_user": "AddieHysell", "from_user_id": 407706803, "from_user_id_str": "407706803", "from_user_name": "Addie Hysell", "geo": null, "id": 148308983600513020, "id_str": "148308983600513024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1629103378/28214354314__4__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629103378/28214354314__4__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/bl4e99M1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:49:27 +0000", "from_user": "jordimirobruix", "from_user_id": 1657591, "from_user_id_str": "1657591", "from_user_name": "jordimirobruix", "geo": null, "id": 148308880949116930, "id_str": "148308880949116928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1197105290/AH0EGMJZBQ5ZO14O_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1197105290/AH0EGMJZBQ5ZO14O_normal.jpg", "source": "<a href="http://www.alphonsolabs.com/" rel="nofollow">Pulse News</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/9k3QaAjc /cc @rhoml", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:46:29 +0000", "from_user": "PatchouliW", "from_user_id": 5854302, "from_user_id_str": "5854302", "from_user_name": "Patchouli Woollahra", "geo": null, "id": 148308136925732860, "id_str": "148308136925732865", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1311001023/PatchiWildcat_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1311001023/PatchiWildcat_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SignpostMarv @KatharineBerry it makes even less sense than NoSQL. that's how bad MSSQL is. #runsAwayFromPitchforks", "to_user": "SignpostMarv", "to_user_id": 8435922, "to_user_id_str": "8435922", "to_user_name": "SignpostMarv", "in_reply_to_status_id": 148254824218116100, "in_reply_to_status_id_str": "148254824218116096"}, +{"created_at": "Sun, 18 Dec 2011 07:44:05 +0000", "from_user": "TonyaLorenzano", "from_user_id": 407707125, "from_user_id_str": "407707125", "from_user_name": "Tonya Lorenzano", "geo": null, "id": 148307533218590720, "id_str": "148307533218590720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1629084096/1780665661image1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629084096/1780665661image1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/jipV6VRX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:42:01 +0000", "from_user": "biomap", "from_user_id": 158380504, "from_user_id_str": "158380504", "from_user_name": "Amandeep Sidhu", "geo": null, "id": 148307011010965500, "id_str": "148307011010965506", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1649894835/pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649894835/pic_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "\\u201C@utollwi: NoSQL\\u2019s great, but bring your A game http://t.co/DZRCa6cT\\u201D - gr8 read I will definitely comment about it over holidays in my blog", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:36:20 +0000", "from_user": "HopeStevison", "from_user_id": 407707612, "from_user_id_str": "407707612", "from_user_name": "Hope Stevison", "geo": null, "id": 148305579461447680, "id_str": "148305579461447680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1629085018/439264211105_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629085018/439264211105_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/1Lse0KKI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:35:19 +0000", "from_user": "CindyTulk", "from_user_id": 407708058, "from_user_id_str": "407708058", "from_user_name": "Cindy Tulk", "geo": null, "id": 148305324791709700, "id_str": "148305324791709696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1629085776/101937036colazero.com-female_1043_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629085776/101937036colazero.com-female_1043_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/fjH5hfvB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:34:24 +0000", "from_user": "LynelleEpple", "from_user_id": 407706708, "from_user_id_str": "407706708", "from_user_name": "Lynelle Epple", "geo": null, "id": 148305094109175800, "id_str": "148305094109175808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1629083738/295001999166_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629083738/295001999166_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/8x9tBsbD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:34:11 +0000", "from_user": "AnitaNemer", "from_user_id": 407709709, "from_user_id_str": "407709709", "from_user_name": "Anita Nemer", "geo": null, "id": 148305038366871550, "id_str": "148305038366871553", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1629087320/117497933542__2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629087320/117497933542__2__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/ztFFZZyn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:31:49 +0000", "from_user": "JacalynWorsham", "from_user_id": 407707453, "from_user_id_str": "407707453", "from_user_name": "Jacalyn Worsham", "geo": null, "id": 148304443392270340, "id_str": "148304443392270336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1629084573/3523305932297_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629084573/3523305932297_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/9kGuZYCG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:30:57 +0000", "from_user": "hakanerdogan", "from_user_id": 46212796, "from_user_id_str": "46212796", "from_user_name": "Hakan ERDOGAN", "geo": null, "id": 148304227515629570, "id_str": "148304227515629568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1574968765/hakan_erdogan_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1574968765/hakan_erdogan_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@nacidai: NoSQL's great, but bring your A game... http://t.co/b2EltQ8q\\u201D @haqen", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:25:33 +0000", "from_user": "azataslanyan", "from_user_id": 25737136, "from_user_id_str": "25737136", "from_user_name": "azat aslanyan", "geo": null, "id": 148302869123186700, "id_str": "148302869123186688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/227425329/azat_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/227425329/azat_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/bOkwuY8f", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:25:07 +0000", "from_user": "AmieMillsap", "from_user_id": 407709127, "from_user_id_str": "407709127", "from_user_name": "Amie Millsap", "geo": null, "id": 148302757286264830, "id_str": "148302757286264832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1629087041/1729105613colazero.com-female_1199_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629087041/1729105613colazero.com-female_1199_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/VedD1XnF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:25:00 +0000", "from_user": "JolineMehtala", "from_user_id": 407708074, "from_user_id_str": "407708074", "from_user_name": "Joline Mehtala", "geo": null, "id": 148302727905165300, "id_str": "148302727905165312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1629085952/1229652563image50_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629085952/1229652563image50_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/rBRGuH1R", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:23:59 +0000", "from_user": "ArianeSahady", "from_user_id": 407708088, "from_user_id_str": "407708088", "from_user_name": "Ariane Sahady", "geo": null, "id": 148302474510479360, "id_str": "148302474510479360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1629085982/16127390212__2__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629085982/16127390212__2__normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/iAZJvDsB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:22:00 +0000", "from_user": "couchbase", "from_user_id": 237401623, "from_user_id_str": "237401623", "from_user_name": "Couchbase", "geo": null, "id": 148301974054518800, "id_str": "148301974054518784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1335620360/couchbase_couch_red_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335620360/couchbase_couch_red_twitter_normal.png", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "Big day tomorrow! #CouchConf Israel! get your tix to this #nosql event here --> http://t.co/tR4inCwx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:20:17 +0000", "from_user": "SoilaSteinkamp", "from_user_id": 407707618, "from_user_id_str": "407707618", "from_user_name": "Soila Steinkamp", "geo": null, "id": 148301542095732740, "id_str": "148301542095732736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1629085290/11123306037__3__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629085290/11123306037__3__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/rcSRONyy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:20:06 +0000", "from_user": "LinhPagliuca", "from_user_id": 407708575, "from_user_id_str": "407708575", "from_user_name": "Linh Pagliuca", "geo": null, "id": 148301496751112200, "id_str": "148301496751112192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1629086631/749151652colazero.com-female_1296_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629086631/749151652colazero.com-female_1296_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/w29cGQ74", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:17:22 +0000", "from_user": "seekingalphalfa", "from_user_id": 95452322, "from_user_id_str": "95452322", "from_user_name": "seekingalphalfa", "geo": null, "id": 148300808621002750, "id_str": "148300808621002752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/564995101/seekingalphalfa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/564995101/seekingalphalfa_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/1pXiEvZK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:16:40 +0000", "from_user": "EviaKominek", "from_user_id": 407707232, "from_user_id_str": "407707232", "from_user_name": "Evia Kominek", "geo": null, "id": 148300629884944400, "id_str": "148300629884944384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1629084246/16914594092830_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629084246/16914594092830_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/laL21Yfu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:16:26 +0000", "from_user": "JerleneCopa", "from_user_id": 407707414, "from_user_id_str": "407707414", "from_user_name": "Jerlene Copa", "geo": null, "id": 148300573593190400, "id_str": "148300573593190400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1629084561/22570407767_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629084561/22570407767_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/jPY9blPo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:16:25 +0000", "from_user": "nacidai", "from_user_id": 18124258, "from_user_id_str": "18124258", "from_user_name": "nacidai", "geo": null, "id": 148300568476123140, "id_str": "148300568476123137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1643832632/IMG_5915_-_Version_2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643832632/IMG_5915_-_Version_2_normal.JPG", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "NoSQL's great, but bring your A game... http://t.co/bWkADz6w", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:15:41 +0000", "from_user": "lianscr", "from_user_id": 32254853, "from_user_id_str": "32254853", "from_user_name": "willians caicedo", "geo": null, "id": 148300385600286720, "id_str": "148300385600286720", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/449979138/Yo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/449979138/Yo_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "base de datos NoSQL MongoDB http://t.co/giVye8PO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:15:32 +0000", "from_user": "garyhhdry", "from_user_id": 296997214, "from_user_id_str": "296997214", "from_user_name": "Gary", "geo": null, "id": 148300344881987600, "id_str": "148300344881987585", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1349507275/garyhhdry_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1349507275/garyhhdry_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/5BYovrE1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:14:37 +0000", "from_user": "DannieSchatzel", "from_user_id": 407707658, "from_user_id_str": "407707658", "from_user_name": "Dannie Schatzel", "geo": null, "id": 148300113616449540, "id_str": "148300113616449536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1629085298/17196894143_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629085298/17196894143_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/YCQs1Q2R", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:14:34 +0000", "from_user": "curationary", "from_user_id": 10989382, "from_user_id_str": "10989382", "from_user_name": "Curationary", "geo": null, "id": 148300103298465800, "id_str": "148300103298465792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1365955825/curationary_ico_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1365955825/curationary_ico_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "NoSQL's great, but bring your A game http://t.co/AgTHj4Yt via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:14:31 +0000", "from_user": "ToryGatch", "from_user_id": 407707542, "from_user_id_str": "407707542", "from_user_name": "Tory Gatch", "geo": null, "id": 148300092103852030, "id_str": "148300092103852032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1629084829/21382662103_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629084829/21382662103_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/4xlEtd7O", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:13:26 +0000", "from_user": "RivkaDrock", "from_user_id": 407706831, "from_user_id_str": "407706831", "from_user_name": "Rivka Drock", "geo": null, "id": 148299818526183420, "id_str": "148299818526183424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1629083926/52289840376_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629083926/52289840376_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/SRLNQ7ql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:12:03 +0000", "from_user": "AgripinaGawron", "from_user_id": 407706575, "from_user_id_str": "407706575", "from_user_name": "Agripina Gawron", "geo": null, "id": 148299470688358400, "id_str": "148299470688358400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1629083500/170573443326_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629083500/170573443326_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/Evf382zV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:09:11 +0000", "from_user": "MagdaMcguinnes", "from_user_id": 374112056, "from_user_id_str": "374112056", "from_user_name": "Magda Mcguinnes", "geo": null, "id": 148298749314220030, "id_str": "148298749314220032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1544858171/14301510081551_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544858171/14301510081551_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/d5kWxD7A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:09:06 +0000", "from_user": "TaReifel", "from_user_id": 374081497, "from_user_id_str": "374081497", "from_user_name": "Ta Reifel", "geo": null, "id": 148298727524810750, "id_str": "148298727524810753", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1544817293/14640097472706_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544817293/14640097472706_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/wKqBv7nL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:07:46 +0000", "from_user": "InstantOnWorld", "from_user_id": 298547006, "from_user_id_str": "298547006", "from_user_name": "Cloud Computing", "geo": null, "id": 148298393800818700, "id_str": "148298393800818688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1353157070/stars_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1353157070/stars_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL's great, but bring your A game \\u2014 Cloud Computing News: At last week's MongoSV conference in Santa Clara, C... http://t.co/8n8LSyLw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Sun, 18 Dec 2011 07:04:37 +0000", "from_user": "MalenaKoppel", "from_user_id": 374096032, "from_user_id_str": "374096032", "from_user_name": "Malena Koppel", "geo": null, "id": 148297597751271420, "id_str": "148297597751271425", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1544835016/95795802246_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544835016/95795802246_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/BWpbVawj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:04:27 +0000", "from_user": "LuClinkscale", "from_user_id": 369400202, "from_user_id_str": "369400202", "from_user_name": "Lu Clinkscale", "geo": null, "id": 148297558710693900, "id_str": "148297558710693888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1533348370/62212319407_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1533348370/62212319407_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/ssK1ooQ1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:04:25 +0000", "from_user": "SusannahWeems", "from_user_id": 374098312, "from_user_id_str": "374098312", "from_user_name": "Susannah Weems", "geo": null, "id": 148297550565359600, "id_str": "148297550565359617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1544838630/131824734324_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544838630/131824734324_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/fI6zXuHf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:04:16 +0000", "from_user": "GracieFrayre", "from_user_id": 374107200, "from_user_id_str": "374107200", "from_user_name": "Gracie Frayre", "geo": null, "id": 148297510878846980, "id_str": "148297510878846976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1544947522/14803127484_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544947522/14803127484_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/DqY24biF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:03:39 +0000", "from_user": "IbrahimMalick", "from_user_id": 21992449, "from_user_id_str": "21992449", "from_user_name": "Ibrahim Sajid Malick", "geo": null, "id": 148297354464866300, "id_str": "148297354464866305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1354126020/IbrahimMalick_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1354126020/IbrahimMalick_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@CarlNannie You need to know what you are doing with NoSQL - no use owning a Porsche if you don't know how to drive", "to_user": "CarlNannie", "to_user_id": 374131542, "to_user_id_str": "374131542", "to_user_name": "Carl Nannie", "in_reply_to_status_id": 148294888721629200, "in_reply_to_status_id_str": "148294888721629185"}, +{"created_at": "Sun, 18 Dec 2011 07:03:37 +0000", "from_user": "GinoRossi", "from_user_id": 26283439, "from_user_id_str": "26283439", "from_user_name": "Gino Rossi", "geo": null, "id": 148297348588638200, "id_str": "148297348588638208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686281006/Avatar_GinoRossi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686281006/Avatar_GinoRossi_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/R97dMnO8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:03:18 +0000", "from_user": "DomitilaMelusky", "from_user_id": 374112916, "from_user_id_str": "374112916", "from_user_name": "Domitila Melusky", "geo": null, "id": 148297267047186430, "id_str": "148297267047186432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1544843103/474390684841_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544843103/474390684841_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/CwHjbpFx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:03:09 +0000", "from_user": "hotrackr", "from_user_id": 404958426, "from_user_id_str": "404958426", "from_user_name": "hotrackr", "geo": null, "id": 148297228740595700, "id_str": "148297228740595712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1622351203/4de4912f2fc18_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622351203/4de4912f2fc18_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/hUKG8OER", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:02:36 +0000", "from_user": "ampstoeleven", "from_user_id": 297979757, "from_user_id_str": "297979757", "from_user_name": "ampstoeleven", "geo": null, "id": 148297090714435600, "id_str": "148297090714435584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1351879299/ampstoeleven_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1351879299/ampstoeleven_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game #gaming http://t.co/27Xofa08", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:01:47 +0000", "from_user": "SumikoStockinge", "from_user_id": 374079498, "from_user_id_str": "374079498", "from_user_name": "Sumiko Stockinger", "geo": null, "id": 148296885575229440, "id_str": "148296885575229440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1544939063/322120384colazero.com-female_1223_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544939063/322120384colazero.com-female_1223_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/eBueOqd2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:01:42 +0000", "from_user": "slashsoft", "from_user_id": 91886883, "from_user_id_str": "91886883", "from_user_name": "slashsoft", "geo": null, "id": 148296867069968400, "id_str": "148296867069968385", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1360174629/slashsoft_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1360174629/slashsoft_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/yL4pFY89", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:00:20 +0000", "from_user": "ShirlyGalletta", "from_user_id": 374097211, "from_user_id_str": "374097211", "from_user_name": "Shirly Galletta", "geo": null, "id": 148296519055974400, "id_str": "148296519055974400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1544920927/88306174575_resize_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544920927/88306174575_resize_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/Bs3MjGuP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:59:24 +0000", "from_user": "remonstrator", "from_user_id": 127706779, "from_user_id_str": "127706779", "from_user_name": "subrata chakraborty", "geo": null, "id": 148296286624428030, "id_str": "148296286624428032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Cloud - Dell and HP have started to offer the OpenStack based cloud to their customers, as has Citrix. http://t.co/7vF2KYHn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:59:11 +0000", "from_user": "AlishaEvinger", "from_user_id": 374405083, "from_user_id_str": "374405083", "from_user_name": "Alisha Evinger", "geo": null, "id": 148296233084129280, "id_str": "148296233084129280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1546285239/970911022155_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546285239/970911022155_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/ergCizAM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:57:56 +0000", "from_user": "RoseCorkery", "from_user_id": 369394687, "from_user_id_str": "369394687", "from_user_name": "Rose Corkery", "geo": null, "id": 148295916997189630, "id_str": "148295916997189632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1533382711/11781107426__3__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1533382711/11781107426__3__normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/EX8eJ0ui", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:57:05 +0000", "from_user": "SpinsJaclyn", "from_user_id": 367722654, "from_user_id_str": "367722654", "from_user_name": "jackie spins", "geo": null, "id": 148295702810869760, "id_str": "148295702810869760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1528087801/jackiespins_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1528087801/jackiespins_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/kidSXlhS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:54:52 +0000", "from_user": "JolandaSlinker", "from_user_id": 370440216, "from_user_id_str": "370440216", "from_user_name": "Jolanda Slinker", "geo": null, "id": 148295146545487870, "id_str": "148295146545487872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1535279381/814036204image2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1535279381/814036204image2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/iakizfGs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:53:59 +0000", "from_user": "MaeFuente", "from_user_id": 370437359, "from_user_id_str": "370437359", "from_user_name": "Mae Fuente", "geo": null, "id": 148294923861495800, "id_str": "148294923861495808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1535280665/19164834519__2__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1535280665/19164834519__2__normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/nU4ZhTbr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:53:54 +0000", "from_user": "GabrielDepue", "from_user_id": 374428317, "from_user_id_str": "374428317", "from_user_name": "Gabriel Depue", "geo": null, "id": 148294903355555840, "id_str": "148294903355555840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1545825915/1270454423bvnthfda_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545825915/1270454423bvnthfda_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/5mCX2r7z", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:53:51 +0000", "from_user": "CarlNannie", "from_user_id": 374131542, "from_user_id_str": "374131542", "from_user_name": "Carl Nannie", "geo": null, "id": 148294888721629200, "id_str": "148294888721629185", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1544870550/425045900colazero.com-female_1032_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544870550/425045900colazero.com-female_1032_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/OkAcKj5i", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:52:00 +0000", "from_user": "AmiraGoretti", "from_user_id": 374393515, "from_user_id_str": "374393515", "from_user_name": "Amira Goretti", "geo": null, "id": 148294423334240260, "id_str": "148294423334240258", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1545810239/1174043186image060_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545810239/1174043186image060_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/eYEim3I6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:51:59 +0000", "from_user": "smashinglinks", "from_user_id": 339221258, "from_user_id_str": "339221258", "from_user_name": "smashinglinks", "geo": null, "id": 148294419148320770, "id_str": "148294419148320769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1451997028/smashinglinks_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1451997028/smashinglinks_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/gZcAiOm0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:51:48 +0000", "from_user": "EladiaCrutch", "from_user_id": 374129494, "from_user_id_str": "374129494", "from_user_name": "Eladia Crutch", "geo": null, "id": 148294374239903740, "id_str": "148294374239903746", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1544916753/1987959422142_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544916753/1987959422142_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/sReOEgJO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:51:36 +0000", "from_user": "LovePeterka", "from_user_id": 374097875, "from_user_id_str": "374097875", "from_user_name": "Love Peterka", "geo": null, "id": 148294324378013700, "id_str": "148294324378013696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1544838271/14046083462509_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544838271/14046083462509_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/bLQSujeO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:50:29 +0000", "from_user": "DebroahShramek", "from_user_id": 374435247, "from_user_id_str": "374435247", "from_user_name": "Debroah Shramek", "geo": null, "id": 148294044089450500, "id_str": "148294044089450496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1545841548/162380557image013_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545841548/162380557image013_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/bvzyjlSR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:48:58 +0000", "from_user": "ThelmaAus", "from_user_id": 374119677, "from_user_id_str": "374119677", "from_user_name": "Thelma Aus", "geo": null, "id": 148293662617501700, "id_str": "148293662617501696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1544859740/285606814167_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544859740/285606814167_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/6Hmw8nJ3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:48:14 +0000", "from_user": "myrhaines87", "from_user_id": 419728439, "from_user_id_str": "419728439", "from_user_name": "myrhaines", "geo": null, "id": 148293476096806900, "id_str": "148293476096806913", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://ping.fm/" rel="nofollow">Ping.fm</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/X7Of5WpQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:47:22 +0000", "from_user": "alexis_romano", "from_user_id": 371051528, "from_user_id_str": "371051528", "from_user_name": "Alexis Romano", "geo": null, "id": 148293258857037820, "id_str": "148293258857037824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1536644901/Z_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1536644901/Z_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/1j5YIfqa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:47:12 +0000", "from_user": "CaterinaMirao", "from_user_id": 369396186, "from_user_id_str": "369396186", "from_user_name": "Caterina Mirao", "geo": null, "id": 148293215177547780, "id_str": "148293215177547777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1533382148/33394264859_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1533382148/33394264859_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/1b7el8WQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:47:02 +0000", "from_user": "DanilleRichner", "from_user_id": 369396609, "from_user_id_str": "369396609", "from_user_name": "Danille Richner", "geo": null, "id": 148293172391444480, "id_str": "148293172391444480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1533333555/17189129591549_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1533333555/17189129591549_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/IJL0Ny1p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:46:57 +0000", "from_user": "linkmeweb", "from_user_id": 339330555, "from_user_id_str": "339330555", "from_user_name": "linkmeweb", "geo": null, "id": 148293154666323970, "id_str": "148293154666323968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1452154725/linkmeweb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1452154725/linkmeweb_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/DEHfKqHP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:46:40 +0000", "from_user": "IsidraBarrete", "from_user_id": 369398366, "from_user_id_str": "369398366", "from_user_name": "Isidra Barrete", "geo": null, "id": 148293082012598270, "id_str": "148293082012598272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1533339682/206560706563_resize_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1533339682/206560706563_resize_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/9KB3EtKN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:46:39 +0000", "from_user": "FattyBoomBalaty", "from_user_id": 368857113, "from_user_id_str": "368857113", "from_user_name": "FattyBoomBalatty", "geo": null, "id": 148293078170611700, "id_str": "148293078170611713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1531180890/fatty_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1531180890/fatty_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/7vGbIIab", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:46:19 +0000", "from_user": "Sharethisdeal", "from_user_id": 185434655, "from_user_id_str": "185434655", "from_user_name": "Sharethisdeal", "geo": null, "id": 148292994703953920, "id_str": "148292994703953920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1437243014/346_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1437243014/346_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/Wps5ggT4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:44:38 +0000", "from_user": "tweetstech", "from_user_id": 403863283, "from_user_id_str": "403863283", "from_user_name": "Tweets on Technology", "geo": null, "id": 148292568197763070, "id_str": "148292568197763072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1619966800/techtweets_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619966800/techtweets_normal.png", "source": "<a href="http://www.infowebcentral.com/" rel="nofollow">Infowebcentral - Tech Tweets</a>", "text": "Auction and Bidding Applications with Document-Based NoSQL - http://t.co/C2gBUpCP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:44:26 +0000", "from_user": "LadonnaShuga", "from_user_id": 369396723, "from_user_id_str": "369396723", "from_user_name": "Ladonna Shuga", "geo": null, "id": 148292521670361100, "id_str": "148292521670361088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1533379326/69160067819__2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1533379326/69160067819__2__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/S6nNxMbF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:44:01 +0000", "from_user": "ShirleneFewell", "from_user_id": 374106569, "from_user_id_str": "374106569", "from_user_name": "Shirlene Fewell", "geo": null, "id": 148292416217157630, "id_str": "148292416217157634", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1544850470/1531719387134_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544850470/1531719387134_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/yTt3j0vC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:43:30 +0000", "from_user": "Pedroalexson", "from_user_id": 337152193, "from_user_id_str": "337152193", "from_user_name": "Pedro", "geo": null, "id": 148292284679602180, "id_str": "148292284679602176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1446961317/pedro_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1446961317/pedro_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/02fIOA9K", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:43:29 +0000", "from_user": "MarianelaGrav", "from_user_id": 374072755, "from_user_id_str": "374072755", "from_user_name": "Marianela Grav", "geo": null, "id": 148292282083315700, "id_str": "148292282083315713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1544807668/129551398190_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544807668/129551398190_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/HhQVFS4w", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:43:01 +0000", "from_user": "stocksradar", "from_user_id": 62584212, "from_user_id_str": "62584212", "from_user_name": "stocksradar", "geo": null, "id": 148292162524680200, "id_str": "148292162524680196", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/423516626/radar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/423516626/radar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/6auFbqN6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:42:35 +0000", "from_user": "socialmediaaaa", "from_user_id": 337413129, "from_user_id_str": "337413129", "from_user_name": "socialmediamaven", "geo": null, "id": 148292055309885440, "id_str": "148292055309885441", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1447707533/socialmediaaa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1447707533/socialmediaaa_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/d56Y9tGV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:41:34 +0000", "from_user": "JerilynEliason", "from_user_id": 369405209, "from_user_id_str": "369405209", "from_user_name": "Jerilyn Eliason", "geo": null, "id": 148291796601016320, "id_str": "148291796601016320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1533340634/25127512766__2__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1533340634/25127512766__2__normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/jpBiei8o", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:41:31 +0000", "from_user": "FreyNelly", "from_user_id": 368357191, "from_user_id_str": "368357191", "from_user_name": "Nelly Frey", "geo": null, "id": 148291787243520000, "id_str": "148291787243520000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1529890593/nelly_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1529890593/nelly_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/PxEGwJTs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:41:01 +0000", "from_user": "bartylboo", "from_user_id": 369208125, "from_user_id_str": "369208125", "from_user_name": "bartyboo", "geo": null, "id": 148291660323880960, "id_str": "148291660323880960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1532072626/boo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1532072626/boo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/ISGaSoz0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:37:59 +0000", "from_user": "SpectralCoreCEO", "from_user_id": 107380318, "from_user_id_str": "107380318", "from_user_name": "Damir Bulic", "geo": null, "id": 148290897145102340, "id_str": "148290897145102336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/713585324/ramo_majmun_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/713585324/ramo_majmun_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "NoSQL\\u2019s great, but bring your A game - At last week's MongoSV conference in Santa Clara, Calif., a number of users s... http://t.co/wPPcoqRk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:23:54 +0000", "from_user": "newitfarmer", "from_user_id": 109803082, "from_user_id_str": "109803082", "from_user_name": "newitfarmer", "geo": null, "id": 148287352756903940, "id_str": "148287352756903936", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1170140116/0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1170140116/0_normal.jpg", "source": "<a href="http://www.qiqiboy.com/products/plugins/social-medias-connect" rel="nofollow">Social Medias Connect</a>", "text": "\\u3010New Blog\\u3011[repost ]leveldb \\u8D44\\u6599 - http://t.co/v1NGRlpd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:17:56 +0000", "from_user": "lozanojavier", "from_user_id": 47095591, "from_user_id_str": "47095591", "from_user_name": "Javier Lozano", "geo": null, "id": 148285852605366270, "id_str": "148285852605366272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1260197832/DSC03209__800x793__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1260197832/DSC03209__800x793__normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT: NoSQL\\u2019s great, but bring your A game: MongoDB might be a popular choice in NoSQL databases, but it\\u2019s not... http://t.co/WJlEDlUv #in", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:15:12 +0000", "from_user": "eeagle630", "from_user_id": 14822482, "from_user_id_str": "14822482", "from_user_name": "Stephen Mayer", "geo": null, "id": 148285162730422270, "id_str": "148285162730422272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/54358520/Cleo_046_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/54358520/Cleo_046_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @aordring: NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/4Gv4HPgs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:12:03 +0000", "from_user": "matrzaska", "from_user_id": 292868269, "from_user_id_str": "292868269", "from_user_name": "Mariusz Trzaska", "geo": null, "id": 148284369256189950, "id_str": "148284369256189953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1640167089/DSCN3086-Mariusz_02_512x512_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640167089/DSCN3086-Mariusz_02_512x512_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "NoSQL's great, but bring your A game (MongoDB) http://t.co/pw0WZzzc via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:02:33 +0000", "from_user": "SwatantraKumar", "from_user_id": 93168741, "from_user_id_str": "93168741", "from_user_name": "Swatantra Verified \\u2714", "geo": null, "id": 148281980340019200, "id_str": "148281980340019200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1352218078/GoaSeminarCompressed_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1352218078/GoaSeminarCompressed_normal.JPG", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "NoSQL bring your A game http://t.co/lsNc06Cy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:53:45 +0000", "from_user": "rhm2k", "from_user_id": 14065215, "from_user_id_str": "14065215", "from_user_name": "Rich Miller", "geo": null, "id": 148279762790518800, "id_str": "148279762790518784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1178804758/Headshot4b_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1178804758/Headshot4b_normal.jpg", "source": "<a href="http://www.feedly.com" rel="nofollow">feedly</a>", "text": "Listening to: Enterprise Caches Versus Data Grids Versus NoSQL Databases http://t.co/LhOFJCb2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:47:18 +0000", "from_user": "DZoneDotNetZone", "from_user_id": 36052770, "from_user_id_str": "36052770", "from_user_name": "DZone .NET Zone", "geo": null, "id": 148278140647637000, "id_str": "148278140647636992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/188217096/mh_dzone_logo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/188217096/mh_dzone_logo_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "New Post: Auction and Bidding Applications with Document-Based NoSQL http://t.co/zWEZNoES", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:45:58 +0000", "from_user": "rohitbansal03", "from_user_id": 163458873, "from_user_id_str": "163458873", "from_user_name": "Rohit Bansal", "geo": null, "id": 148277808039329800, "id_str": "148277808039329792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1055167135/Rohit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1055167135/Rohit_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/ZB24W7TO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:35:14 +0000", "from_user": "ankurpshah", "from_user_id": 19602291, "from_user_id_str": "19602291", "from_user_name": "Ankur Shah", "geo": null, "id": 148275106085482500, "id_str": "148275106085482496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1244860886/android1297740766426_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1244860886/android1297740766426_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/3Rqh90D1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:22:51 +0000", "from_user": "aordring", "from_user_id": 60157628, "from_user_id_str": "60157628", "from_user_name": "Keith Brings", "geo": null, "id": 148271988639666180, "id_str": "148271988639666177", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1190235672/49294_1260949268_6539485_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1190235672/49294_1260949268_6539485_q_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/4Gv4HPgs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:21:48 +0000", "from_user": "PhilKrnjeu", "from_user_id": 326352838, "from_user_id_str": "326352838", "from_user_name": "Phil Krnjeu", "geo": null, "id": 148271725296103420, "id_str": "148271725296103424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1442211579/philCloseUp_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1442211579/philCloseUp_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @MirzaMB: NoSQL\\u2019s great, but bring your A game http://t.co/YqnlXjof", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:19:24 +0000", "from_user": "MHensleyJr", "from_user_id": 20474829, "from_user_id_str": "20474829", "from_user_name": "Mark E. Hensley Jr.", "geo": null, "id": 148271119210790900, "id_str": "148271119210790912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1463180584/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1463180584/image_normal.jpg", "source": "Zite Personalized Magazine", "text": "NoSQL's great, but bring your A game http://t.co/5O3zJNwU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:18:59 +0000", "from_user": "rhm2k", "from_user_id": 14065215, "from_user_id_str": "14065215", "from_user_name": "Rich Miller", "geo": null, "id": 148271013489156100, "id_str": "148271013489156096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1178804758/Headshot4b_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1178804758/Headshot4b_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Reading: NoSQL\\u2019s great, but bring your A game \\u2014 Cloud Computing News http://t.co/bES4gmzx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:17:44 +0000", "from_user": "javalobbyposts", "from_user_id": 147910377, "from_user_id_str": "147910377", "from_user_name": "Javalobby", "geo": null, "id": 148270702217269250, "id_str": "148270702217269248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/929194867/mh_dzone_logo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/929194867/mh_dzone_logo_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Search Analytics: Business Value & BigData NoSQL Backend: Search is increasingly the primary information access ... http://t.co/y4Pe4ARG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:11:24 +0000", "from_user": "Edisonsepulveda", "from_user_id": 36261974, "from_user_id_str": "36261974", "from_user_name": "Edison Sepulveda ", "geo": null, "id": 148269108964769800, "id_str": "148269108964769793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1431700259/Edison_Sepulveda_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1431700259/Edison_Sepulveda_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "El futuro de las Bases de datos - NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/9Sq2NTVZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:47:33 +0000", "from_user": "nmensah1", "from_user_id": 37041660, "from_user_id_str": "37041660", "from_user_name": "Nana Osafo-Mensah", "geo": null, "id": 148263104751468540, "id_str": "148263104751468544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/315308377/100_1880_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/315308377/100_1880_normal.JPG", "source": "<a href="http://www.alphonsolabs.com/" rel="nofollow">Pulse News</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/nySPwNic", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:47:13 +0000", "from_user": "lyxint", "from_user_id": 201169348, "from_user_id_str": "201169348", "from_user_name": "duyue", "geo": null, "id": 148263021586817020, "id_str": "148263021586817025", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1142091888/ul4680714-4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1142091888/ul4680714-4_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @zzzeek: \"NoSQL is necessary for a lot of use cases, but it\\u2019s not for co's afraid of hard work.\" http://t.co/ZAlpzZ8C", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:44:52 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 148262430181556220, "id_str": "148262430181556226", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "RT @mahdi: Google Insights: Cassandra appear as the leading NoSQL solution. http://t.co/fjETAsGw #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:43:21 +0000", "from_user": "Rdchris", "from_user_id": 161283468, "from_user_id_str": "161283468", "from_user_name": "Chris Richards", "geo": null, "id": 148262050018234370, "id_str": "148262050018234368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1613821341/Tiny_Profile_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1613821341/Tiny_Profile_pic_normal.jpg", "source": "<a href="http://www.alphonsolabs.com/" rel="nofollow">Pulse News</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/jnn7I6cB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:22:13 +0000", "from_user": "zzzeek", "from_user_id": 15088129, "from_user_id_str": "15088129", "from_user_name": "mike bayer", "geo": null, "id": 148256730927734800, "id_str": "148256730927734785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1422671211/Screen_shot_2011-07-01_at_1.20.37_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1422671211/Screen_shot_2011-07-01_at_1.20.37_PM_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "\"NoSQL is necessary for a lot of use cases, but it\\u2019s not for co's afraid of hard work.\" http://t.co/ZAlpzZ8C", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:20:47 +0000", "from_user": "mreunionlabs", "from_user_id": 186400392, "from_user_id_str": "186400392", "from_user_name": "mreunion labs", "geo": null, "id": 148256369609412600, "id_str": "148256369609412608", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1139042121/mrlabs-logo-border3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1139042121/mrlabs-logo-border3_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@md_ray dr dulu ikut monitor perkembangan NoSQL ini, tapi kalau ditanya sekarang pasti gw tetep rekomend MySQL dulu, gak berani lgsng NoSQL", "to_user": "md_ray", "to_user_id": 25480604, "to_user_id_str": "25480604", "to_user_name": "Muhammad Rayhan", "in_reply_to_status_id": 148212190762119170, "in_reply_to_status_id_str": "148212190762119168"}, +{"created_at": "Sun, 18 Dec 2011 04:08:59 +0000", "from_user": "MirzaMB", "from_user_id": 281734938, "from_user_id_str": "281734938", "from_user_name": "Mirza Mushtaq Baig", "geo": null, "id": 148253398762930180, "id_str": "148253398762930176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1432628857/head_shot_-_Mirza_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1432628857/head_shot_-_Mirza_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/YqnlXjof", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:08:59 +0000", "from_user": "lesindigenes", "from_user_id": 328917731, "from_user_id_str": "328917731", "from_user_name": "les indigenes", "geo": null, "id": 148253397437517820, "id_str": "148253397437517825", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1443642939/rss_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1443642939/rss_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: MongoDB might be a popular choice in NoSQL databases, but it\\u2019s... http://t.co/8BN5iQu5 via @gigaom", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:00:26 +0000", "from_user": "ecomso", "from_user_id": 28958317, "from_user_id_str": "28958317", "from_user_name": "Danny Lim", "geo": null, "id": 148251247294693380, "id_str": "148251247294693376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1677514441/danny-cube_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677514441/danny-cube_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/5WCFfsDD\\n#NoSQL #A-Game", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:59:57 +0000", "from_user": "robotvert", "from_user_id": 28258266, "from_user_id_str": "28258266", "from_user_name": "Julien", "geo": null, "id": 148251125039112200, "id_str": "148251125039112193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1673017970/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673017970/profile_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/N2Dy3g9g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:57:22 +0000", "from_user": "Kingwulf", "from_user_id": 16954778, "from_user_id_str": "16954778", "from_user_name": "Henry Saputra", "geo": null, "id": 148250474775183360, "id_str": "148250474775183360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/90754996/Letter_Jacket_Thumb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/90754996/Letter_Jacket_Thumb_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Apache Gora community has voted to graduate from incubator: http://t.co/JgOUbsKd #gora #nosql #orm #asf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:52:44 +0000", "from_user": "alespinoza", "from_user_id": 23696089, "from_user_id_str": "23696089", "from_user_name": "Alejandro Espinoza", "geo": null, "id": 148249309035503600, "id_str": "148249309035503618", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1634815135/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634815135/image_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "NoSQL's great, but bring your A game http://t.co/iLbSDUla", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:46:36 +0000", "from_user": "ssprasad", "from_user_id": 14904898, "from_user_id_str": "14904898", "from_user_name": "Sandeep S Prasad", "geo": null, "id": 148247764894105600, "id_str": "148247764894105600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1202270056/9feba6b7-1bc0-49c4-8f88-9b40f54b4c67_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1202270056/9feba6b7-1bc0-49c4-8f88-9b40f54b4c67_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/q7T7vYiE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:31:53 +0000", "from_user": "bzob", "from_user_id": 17750575, "from_user_id_str": "17750575", "from_user_name": "Brad Zobrist", "geo": null, "id": 148244064234508300, "id_str": "148244064234508288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1597376756/bzob_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1597376756/bzob_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @ITBlogs: NoSQL\\u2019s great, but bring your A game http://t.co/34zSxVgH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:31:51 +0000", "from_user": "jfpaschke", "from_user_id": 106886485, "from_user_id_str": "106886485", "from_user_name": "Jesse Paschke", "geo": null, "id": 148244053870391300, "id_str": "148244053870391296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1667164918/281955_2314254455230_1215489152_32855989_7600033_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667164918/281955_2314254455230_1215489152_32855989_7600033_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/H2OAL7T2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:31:03 +0000", "from_user": "montegibbs", "from_user_id": 21899209, "from_user_id_str": "21899209", "from_user_name": "Monte Gibbs", "geo": null, "id": 148243854225719300, "id_str": "148243854225719296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1452743098/MG_Bio_Photo_2010_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1452743098/MG_Bio_Photo_2010_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "NoSQL's great, but bring your A game http://t.co/M6g5E7Pe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:30:59 +0000", "from_user": "adriandantas", "from_user_id": 7492622, "from_user_id_str": "7492622", "from_user_name": "Adri\\u00E1n Dantas", "geo": null, "id": 148243838069243900, "id_str": "148243838069243904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1622697255/_MG_2532-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622697255/_MG_2532-1_normal.jpg", "source": "<a href="http://www.alphonsolabs.com/" rel="nofollow">Pulse News</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/qf1qyAaW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:20:42 +0000", "from_user": "BearDown_Devs", "from_user_id": 238761310, "from_user_id_str": "238761310", "from_user_name": "bear down", "geo": null, "id": 148241250531807230, "id_str": "148241250531807232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1216811968/345d1c57-1b30-4f4b-922f-503bd2ac22fe_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1216811968/345d1c57-1b30-4f4b-922f-503bd2ac22fe_normal.png", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "NoSQL's great, but bring your A game http://t.co/X31gBefN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:18:53 +0000", "from_user": "ghelleks", "from_user_id": 7373472, "from_user_id_str": "7373472", "from_user_name": "Gunnar Hellekson", "geo": null, "id": 148240789724598270, "id_str": "148240789724598272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/440288489/gh-headshot-rh-crop-tiny_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/440288489/gh-headshot-rh-crop-tiny_normal.png", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "\"NoSQL\\u2019s great, but bring your A game\" http://t.co/Mv3WGmyM < This makes being a sysadmin sound like fun. Kinda.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:15:27 +0000", "from_user": "megamda", "from_user_id": 19755562, "from_user_id_str": "19755562", "from_user_name": "Kumar Palaniappan", "geo": null, "id": 148239925823799300, "id_str": "148239925823799296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627876492/kumar_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627876492/kumar_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL is necessary for a lot of use cases,but it\\u2019s not for companies afraid of hard work. http://t.co/QjAx2DRh <means not for enterprise(?!)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:12:05 +0000", "from_user": "akaCarioca", "from_user_id": 101642089, "from_user_id_str": "101642089", "from_user_name": "Carlos", "geo": null, "id": 148239078415007740, "id_str": "148239078415007744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699426918/SantaFunny_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699426918/SantaFunny_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "NoSQL's great, but bring your A game http://t.co/GCZpTEvo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:06:13 +0000", "from_user": "sprusky", "from_user_id": 68478708, "from_user_id_str": "68478708", "from_user_name": "Sergio Prusky", "geo": null, "id": 148237603047612400, "id_str": "148237603047612416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1178737533/sergio_passport_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1178737533/sergio_passport_normal.jpg", "source": "Zite Personalized Magazine", "text": "MongoDB, NoSQL's great, but bring your A game http://t.co/lK87NScA via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:05:54 +0000", "from_user": "mgomezq", "from_user_id": 162098321, "from_user_id_str": "162098321", "from_user_name": "Mauricio Gomez", "geo": null, "id": 148237524127580160, "id_str": "148237524127580160", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1322674286/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1322674286/avatar_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @chalalo: Que buena es la base de datos Cache, soporta NoSQL y SQL sobre las mismas colecciones // +1 Cache Rulz!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:45:36 +0000", "from_user": "maddentw", "from_user_id": 268562163, "from_user_id_str": "268562163", "from_user_name": "Tim Madden", "geo": null, "id": 148232417226932220, "id_str": "148232417226932224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1287341921/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1287341921/image_normal.jpg", "source": "<a href="http://www.instapaper.com/" rel="nofollow">Instapaper</a>", "text": "NoSQL\\u2019s great, but bring your A game \\u2014 \\t\\tCloud Computing News\\t http://t.co/Nl0k7mne (via Instapaper)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:36:01 +0000", "from_user": "Kyoku57", "from_user_id": 133433582, "from_user_id_str": "133433582", "from_user_name": "S\\u00E9bastien DUPIRE", "geo": null, "id": 148230003392393200, "id_str": "148230003392393216", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1430731254/seb_anim_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1430731254/seb_anim_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @jedisct1: RT @OracleDatabase: Podcast: Introducing Oracle #NoSQL Database http://t.co/54mWKN1M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:33:24 +0000", "from_user": "chipchilders", "from_user_id": 14388078, "from_user_id_str": "14388078", "from_user_name": "chipchilders", "geo": null, "id": 148229343531896830, "id_str": "148229343531896832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/64446601/me_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/64446601/me_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/N2Dy3g9g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:32:57 +0000", "from_user": "uma_kanth", "from_user_id": 11984102, "from_user_id_str": "11984102", "from_user_name": "UK Gupta", "geo": null, "id": 148229231468490750, "id_str": "148229231468490753", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690514941/Copy__2__of_RFC_Mask_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690514941/Copy__2__of_RFC_Mask_normal.jpg", "source": "<a href="http://www.snaptu.com" rel="nofollow">Snaptu</a>", "text": "\"Facts & Figures about #NoSQL & #MongoDB.\" #CloudComputing http://t.co/qwuR5lof", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:28:55 +0000", "from_user": "yoshiks", "from_user_id": 130033802, "from_user_id_str": "130033802", "from_user_name": "S Yoshiks", "geo": null, "id": 148228216887320580, "id_str": "148228216887320577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1256661529/SP005_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1256661529/SP005_normal.jpg", "source": "<a href="http://posterous.com" rel="nofollow">Posterous</a>", "text": "NoSQL\\u2019s great, but...: http://t.co/2kl3ARdD ...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:26:55 +0000", "from_user": "tzangms", "from_user_id": 690663, "from_user_id_str": "690663", "from_user_name": "tzangms / \\u5C0F\\u6D77", "geo": null, "id": 148227713537294340, "id_str": "148227713537294337", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1377644692/100_2349_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1377644692/100_2349_normal.JPG", "source": "Zite Personalized Magazine", "text": "NoSQL's great, but bring your A game http://t.co/QRhc1iOF via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:15:54 +0000", "from_user": "mongodb_news", "from_user_id": 218710958, "from_user_id_str": "218710958", "from_user_name": "MongoDb", "geo": null, "id": 148224942251577340, "id_str": "148224942251577344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1173473945/imgres-1_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1173473945/imgres-1_normal.jpeg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @IT_Usability: NoSQL\\u2019s great, but bring your A game http://t.co/JTwVn1oO #Cloudcomputing", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:13:33 +0000", "from_user": "TopCloudHosting", "from_user_id": 170814667, "from_user_id_str": "170814667", "from_user_name": "CloudComputing", "geo": null, "id": 148224349906812930, "id_str": "148224349906812931", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1090310223/cloud_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1090310223/cloud_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @cloud_dennis Reading: NoSQL\\u2019s great, but bring your A game \\u2014 Cloud Computing News: http://t.co/fZBUGgLu: Reading: NoSQL\\u2019s great...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:06:00 +0000", "from_user": "schultkl", "from_user_id": 9063792, "from_user_id_str": "9063792", "from_user_name": "schultkl", "geo": null, "id": 148222448477806600, "id_str": "148222448477806592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/31459422/HPIM3194_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/31459422/HPIM3194_normal.jpg", "source": "<a href="http://gplus.sagg.im" rel="nofollow">Google+ Agent</a>", "text": "NoSQL's great, but bring your A game http://t.co/y7GSadxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:05:10 +0000", "from_user": "pmferro", "from_user_id": 18579069, "from_user_id_str": "18579069", "from_user_name": "Pablo Ferro", "geo": null, "id": 148222240125751300, "id_str": "148222240125751296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/69445567/pabs_mexico_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/69445567/pabs_mexico_normal.jpg", "source": "Zite Personalized Magazine", "text": "NoSQL's great, but bring your A game http://t.co/9IJlyzSz via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:00:12 +0000", "from_user": "cloud_dennis", "from_user_id": 21062686, "from_user_id_str": "21062686", "from_user_name": "Dennis Plucinik", "geo": null, "id": 148220990248333300, "id_str": "148220990248333312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/588950473/servers_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/588950473/servers_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Reading: NoSQL\\u2019s great, but bring your A game \\u2014 Cloud Computing News: http://t.co/gsISuJvu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:59:10 +0000", "from_user": "SimonDarr", "from_user_id": 223436333, "from_user_id_str": "223436333", "from_user_name": "SimonD", "geo": null, "id": 148220729257754620, "id_str": "148220729257754624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1314507857/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1314507857/image_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @HackerNewsYC: NoSQL\\u2019s great, but bring your A game http://t.co/702fKy99", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:52:27 +0000", "from_user": "valigula", "from_user_id": 56190612, "from_user_id_str": "56190612", "from_user_name": "Andres Suarez Villa", "geo": null, "id": 148219038441545730, "id_str": "148219038441545728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1417790162/2UJ8Msm1_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1417790162/2UJ8Msm1_normal", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "NoSQL's great, but bring your A game http://t.co/6orMCNhO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:38:39 +0000", "from_user": "nycjobber", "from_user_id": 413991585, "from_user_id_str": "413991585", "from_user_name": "nycjobber", "geo": null, "id": 148215566577053700, "id_str": "148215566577053696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1642023980/1321452628_Job-Ready_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642023980/1321452628_Job-Ready_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Linux / NoSQL System Administrator for eCommerce Retail Site http://t.co/wtW980eP #jobs #NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:31:22 +0000", "from_user": "apistilli", "from_user_id": 14827230, "from_user_id_str": "14827230", "from_user_name": "Alessandro Pistilli", "geo": null, "id": 148213733620056060, "id_str": "148213733620056065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/774884798/apistilli_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/774884798/apistilli_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/VWsCooAk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:27:55 +0000", "from_user": "domenicosolazzo", "from_user_id": 127299744, "from_user_id_str": "127299744", "from_user_name": "Domenico Solazzo", "geo": null, "id": 148212866292523000, "id_str": "148212866292523008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1351558080/dome4_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1351558080/dome4_2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "NoSQL\\u2019s great, but bring your A game: http://t.co/q7yD0kab #nosql #mongodb #db", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:27:25 +0000", "from_user": "NYTIMESJOBZ", "from_user_id": 140543571, "from_user_id_str": "140543571", "from_user_name": "Alex Brown", "geo": null, "id": 148212739779735550, "id_str": "148212739779735552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Linux / NoSQL System Administrator for eCommerce Retail Site: NY-New York, CyberCoders - Be Selective Location N... http://t.co/zxEoVavp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Sun, 18 Dec 2011 01:27:55 +0000", "from_user": "domenicosolazzo", "from_user_id": 127299744, "from_user_id_str": "127299744", "from_user_name": "Domenico Solazzo", "geo": null, "id": 148212866292523000, "id_str": "148212866292523008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1351558080/dome4_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1351558080/dome4_2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "NoSQL\\u2019s great, but bring your A game: http://t.co/q7yD0kab #nosql #mongodb #db", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:27:25 +0000", "from_user": "NYTIMESJOBZ", "from_user_id": 140543571, "from_user_id_str": "140543571", "from_user_name": "Alex Brown", "geo": null, "id": 148212739779735550, "id_str": "148212739779735552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Linux / NoSQL System Administrator for eCommerce Retail Site: NY-New York, CyberCoders - Be Selective Location N... http://t.co/zxEoVavp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:26:21 +0000", "from_user": "tediscript", "from_user_id": 15878412, "from_user_id_str": "15878412", "from_user_name": "Tedi", "geo": null, "id": 148212472669671420, "id_str": "148212472669671424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668804161/semongko_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668804161/semongko_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @md_ray: NoSQL\\u2019s great, but bring your A game - http://t.co/MoYSczPp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:25:14 +0000", "from_user": "md_ray", "from_user_id": 25480604, "from_user_id_str": "25480604", "from_user_name": "Muhammad Rayhan", "geo": null, "id": 148212190762119170, "id_str": "148212190762119168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1594135858/Tresna_Cahya_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1594135858/Tresna_Cahya_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "NoSQL\\u2019s great, but bring your A game - http://t.co/MoYSczPp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:22:52 +0000", "from_user": "BirdJob", "from_user_id": 335393409, "from_user_id_str": "335393409", "from_user_name": "Bird Job", "geo": null, "id": 148211593493217280, "id_str": "148211593493217280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1442418464/Twitter-for-job-Seekers_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1442418464/Twitter-for-job-Seekers_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Needed Linux / NoSQL System Administrator for eCommerce Retail Site: NY-New York, CyberCoders - Be ... http://t.co/7yDecn88 #Retail #Ny", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:20:53 +0000", "from_user": "daulfingrey", "from_user_id": 61768284, "from_user_id_str": "61768284", "from_user_name": "Daulfin Grey", "geo": null, "id": 148211096006819840, "id_str": "148211096006819840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1210011798/coffee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1210011798/coffee_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "http://t.co/PX1XR0lZ Linux / NoSQL System Administrator for eCommerce Retail Site: NY-New York, CyberCo... http://t.co/wh2N4HsQ #monster", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:20:43 +0000", "from_user": "nuttyknot", "from_user_id": 5492972, "from_user_id_str": "5492972", "from_user_name": "NuttyKnot", "geo": null, "id": 148211055267557380, "id_str": "148211055267557376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/535285544/20091002_163130_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/535285544/20091002_163130_normal.JPG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "NoSQL is great, if you're willing too work on it! http://t.co/ExYFKvKM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:17:59 +0000", "from_user": "instanttechnews", "from_user_id": 390754287, "from_user_id_str": "390754287", "from_user_name": "technews", "geo": null, "id": 148210364134330370, "id_str": "148210364134330368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1589948185/5tqpdjmavdv097c64n51t219171318659855_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1589948185/5tqpdjmavdv097c64n51t219171318659855_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/mRdpY75V", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:17:34 +0000", "from_user": "eComjobs", "from_user_id": 21094743, "from_user_id_str": "21094743", "from_user_name": "Henry James", "geo": null, "id": 148210260191092740, "id_str": "148210260191092737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/198415503/deathstar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/198415503/deathstar_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Ecom Jobs USA Linux / NoSQL System Administrator for eCommerce Retail Site: NY-New York, CyberCoders -... http://t.co/p8iF1ZCy #ecomjobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:11:02 +0000", "from_user": "MythicTechno", "from_user_id": 138286178, "from_user_id_str": "138286178", "from_user_name": "Mythic Technologies", "geo": null, "id": 148208615055032320, "id_str": "148208615055032320", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1111710966/mythicbutton_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1111710966/mythicbutton_twitter_normal.png", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "NoSQL: Apache Cassandra 101 - http://t.co/WsDFUFBQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:03:01 +0000", "from_user": "mattnowina", "from_user_id": 103869545, "from_user_id_str": "103869545", "from_user_name": "Matt Nowina", "geo": null, "id": 148206601080287230, "id_str": "148206601080287232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1310193735/eightbit-9aa6f9af-a52d-4215-97f5-8ae5720906f1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1310193735/eightbit-9aa6f9af-a52d-4215-97f5-8ae5720906f1_normal.png", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "NoSQL Screencast: Building a StackOverflow Clone With RavenDB http://t.co/uhplr1Ak", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:00:51 +0000", "from_user": "dieswaytoofast", "from_user_id": 312604736, "from_user_id_str": "312604736", "from_user_name": "Mahesh P-Subramanya", "geo": null, "id": 148206052951867400, "id_str": "148206052951867394", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1572400317/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572400317/Untitled_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @justinsheehy: . @derrickharris I'm curious: why a headline and generalizations about \"NoSQL\" in an article ... just about one database?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:44:55 +0000", "from_user": "skion", "from_user_id": 11132192, "from_user_id_str": "11132192", "from_user_name": "Pieter Ennes", "geo": null, "id": 148202043528593400, "id_str": "148202043528593410", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/695079114/avatar-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/695079114/avatar-1_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Whoa 1400+ #mongo's at Disney \\u201C@filos: NoSQL\\u2019s great, but bring your A game http://t.co/8lwNK8bq\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:39:32 +0000", "from_user": "ramhv", "from_user_id": 11172632, "from_user_id_str": "11172632", "from_user_name": "Ram H. Viswanathan", "geo": +{"coordinates": [-36.8469,174.7615], "type": "Point"}, "id": 148200691154948100, "id_str": "148200691154948096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1448576035/01_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1448576035/01_normal.jpg", "source": "Zite Personalized Magazine", "text": "NoSQL's great, but bring your A game http://t.co/inKR8gbw & good luck when you start hitting disk IO issues!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:38:28 +0000", "from_user": "iWillByte", "from_user_id": 321963281, "from_user_id_str": "321963281", "from_user_name": "Will", "geo": null, "id": 148200422195200000, "id_str": "148200422195200000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1461591375/3A6DE3A1-40C4-47BE-81E5-12E1134A08C2_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1461591375/3A6DE3A1-40C4-47BE-81E5-12E1134A08C2_normal", "source": "<a href="http://itunes.apple.com/us/app/google-currents/id459182288?mt=8&uo=4" rel="nofollow">Google Currents on iOS</a>", "text": "GigaOM: NoSQL\\u2019s great, but bring your A game http://t.co/c5BKuEuF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:37:03 +0000", "from_user": "ITJobsinUSA", "from_user_id": 20668038, "from_user_id_str": "20668038", "from_user_name": "IT Jobs in the USA", "geo": null, "id": 148200064349765630, "id_str": "148200064349765632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/79294538/20861781_21383609_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/79294538/20861781_21383609_normal.jpg", "source": "<a href="http://www.twitjobsearch.com/" rel="nofollow">TwitJobSearch.com Jobs</a>", "text": "PHP Developer - JavaScript, HTML, CSS, SQL, NoSQL, Large Scale - Redwood City... #jobs http://t.co/Yhh1jnsC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:35:15 +0000", "from_user": "jay23jack", "from_user_id": 438655117, "from_user_id_str": "438655117", "from_user_name": "Jie Li", "geo": null, "id": 148199611486572540, "id_str": "148199611486572544", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": null, "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: 8 Most Interesting Companies for Hadoop's Future http://t.co/DGjsMLzh #Hadoop #Cloudera #Hortonworks #MapR #Hadapt #HPCC #DataStax #Zettaset", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:34:52 +0000", "from_user": "JusticeMitchell", "from_user_id": 2660761, "from_user_id_str": "2660761", "from_user_name": "Justice Mitchell", "geo": null, "id": 148199515357315070, "id_str": "148199515357315072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1339057414/JM_square_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1339057414/JM_square_sm_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game #gigaom http://t.co/C43Ho8XO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:27:11 +0000", "from_user": "yangcaosweeper", "from_user_id": 12425782, "from_user_id_str": "12425782", "from_user_name": "Yang Cao", "geo": null, "id": 148197580088684540, "id_str": "148197580088684545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1315579372/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1315579372/image_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "NoSQL's great, but bring your A game http://t.co/o6xGiLd6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:09:05 +0000", "from_user": "IntelligentD8a", "from_user_id": 15595196, "from_user_id_str": "15595196", "from_user_name": "Jon Zakaras", "geo": null, "id": 148193027943432200, "id_str": "148193027943432192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1279625100/image001_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1279625100/image001_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "NoSQL\\u2019s great, but bring your A game - http://t.co/XufLhUVG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:08:20 +0000", "from_user": "PhaleBlog", "from_user_id": 146253962, "from_user_id_str": "146253962", "from_user_name": "Jerry Phalen", "geo": null, "id": 148192838608371700, "id_str": "148192838608371712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/917216656/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/917216656/image_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/N2Dy3g9g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:07:21 +0000", "from_user": "bangkokdad", "from_user_id": 112373619, "from_user_id_str": "112373619", "from_user_name": "Vladimir", "geo": null, "id": 148192590418808830, "id_str": "148192590418808832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/682887713/IMG_6274-2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/682887713/IMG_6274-2_normal.JPG", "source": "<a href="http://www.alphonsolabs.com/" rel="nofollow">Pulse News</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/2uR8HxJJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:03:56 +0000", "from_user": "hermanjunge", "from_user_id": 270723897, "from_user_id_str": "270723897", "from_user_name": "Herman A. Junge", "geo": null, "id": 148191728875221000, "id_str": "148191728875220992", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680398755/20111208.Auto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680398755/20111208.Auto_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@chalalo la dura? Cuando sube ud los resultados maestro? Soy veterano de C # y seria bonito ver como opera con noSQL", "to_user": "chalalo", "to_user_id": 97229616, "to_user_id_str": "97229616", "to_user_name": "Gonzalo P\\u00E9rez C.", "in_reply_to_status_id": 148191085741613060, "in_reply_to_status_id_str": "148191085741613057"}, +{"created_at": "Sun, 18 Dec 2011 00:02:59 +0000", "from_user": "scrollinondubs", "from_user_id": 10337242, "from_user_id_str": "10337242", "from_user_name": "Sean Tierney", "geo": null, "id": 148191491402104830, "id_str": "148191491402104832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/36954142/ScrollinAvatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/36954142/ScrollinAvatar_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "good overview of pro's & con's of NoSQL db's and summary of diff flavors: http://t.co/qkn7zhoQ via @bryankirch", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:02:31 +0000", "from_user": "chrismarin", "from_user_id": 21202409, "from_user_id_str": "21202409", "from_user_name": "Christopher Marin", "geo": null, "id": 148191375710629900, "id_str": "148191375710629890", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1619537889/cmarin_profile_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619537889/cmarin_profile_pic_normal.jpg", "source": "Zite Personalized Magazine", "text": "NoSQL's great, but bring your A game http://t.co/taa1v7IR via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:01:55 +0000", "from_user": "l0s", "from_user_id": 17058600, "from_user_id_str": "17058600", "from_user_name": "Carlos Macasaet", "geo": null, "id": 148191221037277200, "id_str": "148191221037277184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1365426673/self-portrait-md_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1365426673/self-portrait-md_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "NoSQL's great, but bring your A game http://t.co/f8ekPjKr #MongoDB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:57:54 +0000", "from_user": "juan_diaz_diaz", "from_user_id": 17420951, "from_user_id_str": "17420951", "from_user_name": "juan_diaz_diaz", "geo": null, "id": 148190214345601020, "id_str": "148190214345601024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1414202955/newbackgroundimg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1414202955/newbackgroundimg_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Grails 2.0 with more cloud support and NoSQL connectivity: The Grails development team has released version 2.0 ... http://t.co/Dss0Ji0E", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:55:17 +0000", "from_user": "adrienthery", "from_user_id": 197447411, "from_user_id_str": "197447411", "from_user_name": "Adrien Thery", "geo": null, "id": 148189553201643520, "id_str": "148189553201643520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1168422182/photo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1168422182/photo_normal.JPG", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "RT @axelpavageau: NoSQL\\u2019s great, but bring your A game \\u2014 Cloud Computing News http://t.co/FkX2jdhW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:53:30 +0000", "from_user": "achuang0", "from_user_id": 267946179, "from_user_id_str": "267946179", "from_user_name": "Andy Huang", "geo": null, "id": 148189104293683200, "id_str": "148189104293683200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://www.visibli.com" rel="nofollow">Visibli</a>", "text": "NoSQL\\u2019s great, but bring your A game (42 points) http://t.co/qNV05wkR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:47:56 +0000", "from_user": "newic500", "from_user_id": 36994148, "from_user_id_str": "36994148", "from_user_name": "Eric V", "geo": null, "id": 148187702137851900, "id_str": "148187702137851905", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/194281888/Me591_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/194281888/Me591_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "HBase Schema Design -Webcast http://t.co/Pl3CNqYw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:41:57 +0000", "from_user": "theshah", "from_user_id": 6645822, "from_user_id_str": "6645822", "from_user_name": "Shawn", "geo": null, "id": 148186198907695100, "id_str": "148186198907695105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1257864880/eightbit-852e11fd-b52d-44b9-b89a-42838b429826_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1257864880/eightbit-852e11fd-b52d-44b9-b89a-42838b429826_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @HackerNewsYC: NoSQL\\u2019s great, but bring your A game http://t.co/702fKy99", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:40:55 +0000", "from_user": "pphanicareers", "from_user_id": 218695843, "from_user_id_str": "218695843", "from_user_name": "Phani", "geo": null, "id": 148185938093285380, "id_str": "148185938093285376", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: 8 Most Interesting Companies for Hadoop's Future http://t.co/DGjsMLzh #Hadoop #Cloudera #Hortonworks #MapR #Hadapt #HPCC #DataStax #Zettaset", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:33:38 +0000", "from_user": "DC_APP_", "from_user_id": 341465435, "from_user_id_str": "341465435", "from_user_name": "DC ALM", "geo": null, "id": 148184106457505800, "id_str": "148184106457505792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1694910133/DC_PICTURE_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694910133/DC_PICTURE_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/NXH0Qw8W via @DC_APP_", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:33:24 +0000", "from_user": "chalalo", "from_user_id": 97229616, "from_user_id_str": "97229616", "from_user_name": "Gonzalo P\\u00E9rez C.", "geo": null, "id": 148184046747402240, "id_str": "148184046747402240", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1089195366/e714ad01-6022-4d78-ab73-7d78af81986f_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1089195366/e714ad01-6022-4d78-ab73-7d78af81986f_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Que buena es la base de datos Cache, soporta NoSQL y SQL sobre las mismas colecciones", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:28:34 +0000", "from_user": "rodolfor", "from_user_id": 16690663, "from_user_id_str": "16690663", "from_user_name": "Rodolfo Rosini", "geo": null, "id": 148182829023510530, "id_str": "148182829023510529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1156959873/rodolfo_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1156959873/rodolfo_twitter_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @jasonh: Yes the shitty mystery IO on AWS must be the db's fault ==> RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/ZONs4kRy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:26:44 +0000", "from_user": "dslevin", "from_user_id": 21022068, "from_user_id_str": "21022068", "from_user_name": "David Levin", "geo": null, "id": 148182369805934600, "id_str": "148182369805934592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1161047841/David_Levin_Profile_Pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1161047841/David_Levin_Profile_Pic_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "NoSQL's great, but bring your A game http://t.co/a2l9uo6x", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:25:50 +0000", "from_user": "dadepo", "from_user_id": 9822792, "from_user_id_str": "9822792", "from_user_name": "dade!", "geo": null, "id": 148182143447744500, "id_str": "148182143447744513", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/736008027/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/736008027/twitterProfilePhoto_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "looking into MongoDB and just thinking about having a db with no schema seems almost sacrilegious :( #Nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:18:07 +0000", "from_user": "ktechblog", "from_user_id": 271936250, "from_user_id_str": "271936250", "from_user_name": "Karthi", "geo": null, "id": 148180199685632000, "id_str": "148180199685632001", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1286627399/ktb_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1286627399/ktb_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/5aOtWPYN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:16:25 +0000", "from_user": "byteee", "from_user_id": 185411958, "from_user_id_str": "185411958", "from_user_name": "Joan Art\\u00E9s \\uF8FF", "geo": null, "id": 148179770700603400, "id_str": "148179770700603393", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693712430/Foto_del_d_a_15-12-11_a_la_s__01.10_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693712430/Foto_del_d_a_15-12-11_a_la_s__01.10_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @devsidestory: Despu\\u00E9s del \\u00E9xito de NoSQL, hemos iniciado el movimiento NoOracle. Est\\u00E1 arrasando...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:08:58 +0000", "from_user": "rgaidot", "from_user_id": 1245801, "from_user_id_str": "1245801", "from_user_name": "R\\u00E9gis Gaidot", "geo": null, "id": 148177898984050700, "id_str": "148177898984050690", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1266738841/avatar-6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266738841/avatar-6_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/6HiSHulq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:45:54 +0000", "from_user": "troybeno", "from_user_id": 14200797, "from_user_id_str": "14200797", "from_user_name": "Troy Benohanian", "geo": null, "id": 148172090921582600, "id_str": "148172090921582592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/914140671/JulyAug09-Troy2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/914140671/JulyAug09-Troy2_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/KIgHzKxk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:43:29 +0000", "from_user": "runeroniek", "from_user_id": 75693595, "from_user_id_str": "75693595", "from_user_name": "Luiz Fonseca ", "geo": null, "id": 148171486497210370, "id_str": "148171486497210369", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1548189325/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1548189325/me_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Algum dos amigos tem experi\\u00EAncia com NoSQL (Redis/Riak)?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:41:49 +0000", "from_user": "aneelk", "from_user_id": 49139437, "from_user_id_str": "49139437", "from_user_name": "aneel kumar", "geo": null, "id": 148171063812030460, "id_str": "148171063812030464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/273648104/aneelkumar3_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/273648104/aneelkumar3_normal.gif", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/Bi7fn0vj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:31:24 +0000", "from_user": "YCHackerNews", "from_user_id": 90440720, "from_user_id_str": "90440720", "from_user_name": "YC Hacker News", "geo": null, "id": 148168445563904000, "id_str": "148168445563904000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/529679802/y_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/529679802/y_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: Comments:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:28:46 +0000", "from_user": "DataCenterBlogs", "from_user_id": 137312227, "from_user_id_str": "137312227", "from_user_name": "Data Center Blogs", "geo": null, "id": 148167782247313400, "id_str": "148167782247313408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/852678442/dcpavatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/852678442/dcpavatar_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: MongoDB might be a popular choice in NoSQL databases, but it's not perfect... http://t.co/irfnIPQ4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:26:14 +0000", "from_user": "aemadrid", "from_user_id": 7436122, "from_user_id_str": "7436122", "from_user_name": "aemadrid", "geo": null, "id": 148167142100058100, "id_str": "148167142100058113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1370236561/shot_1294018556793_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1370236561/shot_1294018556793_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lgarulli: #OrientDB 1.0rc8-SNAPSHOT: 300% faster importing IMDB db than 1.0rc7. New relationships mgmt scales up much better! #graphdb #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:26:00 +0000", "from_user": "shasta247", "from_user_id": 75019515, "from_user_id_str": "75019515", "from_user_name": "Scott Schommer", "geo": null, "id": 148167079432962050, "id_str": "148167079432962048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1550813457/ProfilePic_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1550813457/ProfilePic_normal.PNG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "These aren't the toys your looking for. Lora was a Star Wars Super Trooper with the kids! NOSQL for me today. #sql http://t.co/2Czlwqng", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:21:25 +0000", "from_user": "HackerNewsYC", "from_user_id": 15042473, "from_user_id_str": "15042473", "from_user_name": "Hacker News YC", "geo": null, "id": 148165930315288580, "id_str": "148165930315288576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/55176345/hackernewsfeed_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/55176345/hackernewsfeed_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/702fKy99", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:08:09 +0000", "from_user": "roxkur", "from_user_id": 358215236, "from_user_id_str": "358215236", "from_user_name": "Fernando", "geo": null, "id": 148162594014900220, "id_str": "148162594014900224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1566587658/TMQ_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566587658/TMQ_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL's great, but bring your A game http://t.co/glGP3Ur8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:07:54 +0000", "from_user": "rafa_callcenter", "from_user_id": 429840940, "from_user_id_str": "429840940", "from_user_name": "Rafa Esca\\u00F1o", "geo": null, "id": 148162529875607550, "id_str": "148162529875607552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677092620/rafael_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677092620/rafael_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "NoSQL\\u2019s great, but bring your A game | Cloud Computing News http://t.co/lMz78gDz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:06:03 +0000", "from_user": "mattnowina", "from_user_id": 103869545, "from_user_id_str": "103869545", "from_user_name": "Matt Nowina", "geo": null, "id": 148162063989092350, "id_str": "148162063989092353", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1310193735/eightbit-9aa6f9af-a52d-4215-97f5-8ae5720906f1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1310193735/eightbit-9aa6f9af-a52d-4215-97f5-8ae5720906f1_normal.png", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "NoSQL Screencast: HBase Schema Design http://t.co/Z5ictNhW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:04:45 +0000", "from_user": "RobTiffany", "from_user_id": 9767702, "from_user_id_str": "9767702", "from_user_name": "Rob Tiffany", "geo": null, "id": 148161735365378050, "id_str": "148161735365378049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1580132500/Rob88_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580132500/Rob88_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/FX6X0V33", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:04:13 +0000", "from_user": "densone", "from_user_id": 1480571, "from_user_id_str": "1480571", "from_user_name": "Sean Carey", "geo": null, "id": 148161603307704320, "id_str": "148161603307704320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1608193868/df586a470a47c7dfcbd3cd6fff23b807_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608193868/df586a470a47c7dfcbd3cd6fff23b807_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @justinsheehy: . @derrickharris I'm curious: why a headline and generalizations about \"NoSQL\" in an article that was all just about one database?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:01:19 +0000", "from_user": "x_cloudservices", "from_user_id": 246398555, "from_user_id_str": "246398555", "from_user_name": "XYDO Cloud Services", "geo": null, "id": 148160874505437200, "id_str": "148160874505437184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1232872070/XYDO_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1232872070/XYDO_normal.jpeg", "source": "<a href="http://www.xydo.com" rel="nofollow">XYDOhandles</a>", "text": "NoSQL\\u2019s great, but bring your A game #cloud #cloudservices http://t.co/RIFePX8G", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:00:02 +0000", "from_user": "HackerNewsFP", "from_user_id": 378119541, "from_user_id_str": "378119541", "from_user_name": "HN Front Page", "geo": null, "id": 148160552202534900, "id_str": "148160552202534912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1554908894/yclogo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554908894/yclogo_normal.gif", "source": "<a href="http://no.such.site/" rel="nofollow">hnfp</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/GZNvyNe4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:55:02 +0000", "from_user": "pogrebnyak", "from_user_id": 15761635, "from_user_id_str": "15761635", "from_user_name": "pogrebnyak", "geo": null, "id": 148159291512193020, "id_str": "148159291512193025", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/57869645/cth_hpl_lit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/57869645/cth_hpl_lit_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Reading: http://t.co/owEHF5xw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:49:11 +0000", "from_user": "BlueDoorLab", "from_user_id": 263999951, "from_user_id_str": "263999951", "from_user_name": "Gina Lujan", "geo": null, "id": 148157819034677250, "id_str": "148157819034677248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1268518286/back_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1268518286/back_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: Comments http://t.co/C50jlyVh #startups #coworking", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:47:36 +0000", "from_user": "shar1z", "from_user_id": 44580952, "from_user_id_str": "44580952", "from_user_name": "Sharone Zitzman", "geo": null, "id": 148157422530330620, "id_str": "148157422530330626", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1675824447/avatar_normal.JPEG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675824447/avatar_normal.JPEG", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "NoSQL\\u2019s great, but bring your A game | Cloud Computing News http://t.co/VGOCpKwX ~>FYI @natishalom @uri1803 #cloudify #nosql #scaling", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:46:32 +0000", "from_user": "CloudTopics", "from_user_id": 106687290, "from_user_id_str": "106687290", "from_user_name": "Olafur Ingthorsson", "geo": null, "id": 148157151242747900, "id_str": "148157151242747904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1208278264/OI-3-2010_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1208278264/OI-3-2010_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: At last week's MongoSV conference in Santa Clara, Cal... http://t.co/qkiTnT7b CloudComputingTopics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:44:21 +0000", "from_user": "axelpavageau", "from_user_id": 66305481, "from_user_id_str": "66305481", "from_user_name": "Axel Pavageau", "geo": null, "id": 148156602149646340, "id_str": "148156602149646336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1188791882/portrait_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1188791882/portrait_normal.png", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "NoSQL\\u2019s great, but bring your A game \\u2014 Cloud Computing News http://t.co/FkX2jdhW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:43:53 +0000", "from_user": "Vimalaranjan", "from_user_id": 45351976, "from_user_id_str": "45351976", "from_user_name": "Vimalaranjan", "geo": null, "id": 148156484604276740, "id_str": "148156484604276736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1210917729/DSC02808_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1210917729/DSC02808_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: At last week's MongoSV conference in Santa Clara, Calif., a number of user... http://t.co/BC8Tvrao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:43:52 +0000", "from_user": "PliddShare", "from_user_id": 250775915, "from_user_id_str": "250775915", "from_user_name": "Plidd.com", "geo": null, "id": 148156483664752640, "id_str": "148156483664752640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1391894711/Plidd_logofb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1391894711/Plidd_logofb_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: At last week's MongoSV conference in Santa Clara, Calif., a number of user... http://t.co/cb1RcxtR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:43:10 +0000", "from_user": "avalaxy", "from_user_id": 134939672, "from_user_id_str": "134939672", "from_user_name": "Leon Cullens", "geo": null, "id": 148156306501537800, "id_str": "148156306501537792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1652142062/3e5ff01_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652142062/3e5ff01_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/O4t3VLxM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:39:30 +0000", "from_user": "renatoLuna", "from_user_id": 15012618, "from_user_id_str": "15012618", "from_user_name": "Renato Luna", "geo": null, "id": 148155381242282000, "id_str": "148155381242281984", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682405190/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682405190/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@danielsarsi NoSQL geralmente \\u00E9 mais r\\u00E1pido, MySQL \\u00E9 mais seguro.", "to_user": "danielsarsi", "to_user_id": 14539290, "to_user_id_str": "14539290", "to_user_name": "Daniel Sarsi Orta", "in_reply_to_status_id": 148154720626806800, "in_reply_to_status_id_str": "148154720626806787"}, +{"created_at": "Sat, 17 Dec 2011 21:39:24 +0000", "from_user": "mhoegh", "from_user_id": 14019962, "from_user_id_str": "14019962", "from_user_name": "Martin H\\u00F8gh", "geo": null, "id": 148155359406718980, "id_str": "148155359406718977", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1596021362/e286784c-136a-44e0-adeb-77676c85ff02_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596021362/e286784c-136a-44e0-adeb-77676c85ff02_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/N2Dy3g9g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:39:23 +0000", "from_user": "Alan_Dill", "from_user_id": 400197767, "from_user_id_str": "400197767", "from_user_name": "Alan Dill", "geo": null, "id": 148155353039765500, "id_str": "148155353039765504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1610972594/iStock_000012743251XSmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610972594/iStock_000012743251XSmall_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:37:31 +0000", "from_user": "rjbrown99", "from_user_id": 16616784, "from_user_id_str": "16616784", "from_user_name": "Robert Brown", "geo": null, "id": 148154883747495940, "id_str": "148154883747495936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1332338070/RJBPROFILE-GCOGH-sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1332338070/RJBPROFILE-GCOGH-sm_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/N2Dy3g9g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:35:32 +0000", "from_user": "renatoLuna", "from_user_id": 15012618, "from_user_id_str": "15012618", "from_user_name": "Renato Luna", "geo": null, "id": 148154386256900100, "id_str": "148154386256900097", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682405190/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682405190/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@danielsarsi Se voc\\u00EA for macho consegue fazer em NoSQL, mas \\u00E9 bom saber MySQL :)", "to_user": "danielsarsi", "to_user_id": 14539290, "to_user_id_str": "14539290", "to_user_name": "Daniel Sarsi Orta", "in_reply_to_status_id": 148152981777416200, "in_reply_to_status_id_str": "148152981777416192"}, +{"created_at": "Sat, 17 Dec 2011 21:34:56 +0000", "from_user": "filos", "from_user_id": 788994, "from_user_id_str": "788994", "from_user_name": "Luca Filigheddu", "geo": null, "id": 148154234427293700, "id_str": "148154234427293696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1576460185/primopiano_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576460185/primopiano_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/uEj7w4vT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:34:49 +0000", "from_user": "Dakshinamurti", "from_user_id": 2847571, "from_user_id_str": "2847571", "from_user_name": "Salazar @ Teelook", "geo": null, "id": 148154204660318200, "id_str": "148154204660318208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/141017586/ANIM_TWITTER_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/141017586/ANIM_TWITTER_normal.gif", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/SpUngEuD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:34:36 +0000", "from_user": "ITBlogs", "from_user_id": 15858658, "from_user_id_str": "15858658", "from_user_name": "ITBlogs", "geo": null, "id": 148154149299699700, "id_str": "148154149299699713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/393514876/it_blogs_75x75_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/393514876/it_blogs_75x75_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/34zSxVgH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:33:02 +0000", "from_user": "RancuBorneo", "from_user_id": 389712425, "from_user_id_str": "389712425", "from_user_name": "Peter Stanley ", "geo": null, "id": 148153754368213000, "id_str": "148153754368212993", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668332819/387374_245444692181908_100001491369378_726063_72423067_n__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668332819/387374_245444692181908_100001491369378_726063_72423067_n__1__normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/vUgEMRQb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:32:32 +0000", "from_user": "beinwal", "from_user_id": 16920358, "from_user_id_str": "16920358", "from_user_name": "Bryan E.", "geo": null, "id": 148153628316807170, "id_str": "148153628316807170", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/634632948/beaker_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/634632948/beaker_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/N2Dy3g9g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:31:26 +0000", "from_user": "DataEco", "from_user_id": 286379953, "from_user_id_str": "286379953", "from_user_name": "Green IT", "geo": null, "id": 148153353854128130, "id_str": "148153353854128128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1321620623/data_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1321620623/data_normal.jpeg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "@earth2tech: NoSQL\\u2019s great, but bring your A game - At last week's MongoSV conference in Santa Clara, Calif., a numb... http://t.co/UxxHWsfB", "to_user": "Earth2Tech", "to_user_id": 15566998, "to_user_id_str": "15566998", "to_user_name": "Earth2Tech"}, +{"created_at": "Sat, 17 Dec 2011 21:30:02 +0000", "from_user": "HNTweets", "from_user_id": 116276133, "from_user_id_str": "116276133", "from_user_name": "Hacker News", "geo": null, "id": 148153001108963330, "id_str": "148153001108963328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1369520630/HNTweets_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1369520630/HNTweets_normal.png", "source": "<a href="http://github.com/d4nt/HNTweets" rel="nofollow">HNTweets Bot</a>", "text": "NoSQL\\u2019s great, but bring your A game: http://t.co/F0xtsN4P Comments: http://t.co/I7KkiUnE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:29:52 +0000", "from_user": "srustiranjan", "from_user_id": 35185036, "from_user_id_str": "35185036", "from_user_name": "Srusti Ranjan", "geo": null, "id": 148152959467921400, "id_str": "148152959467921408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1538611138/SR_Small_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538611138/SR_Small_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "NoSQL\\u2019s great, but bring your A game - At last week's MongoSV conference in Santa Clara, Calif., a number of users s... http://t.co/Js8F0VUi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:26:56 +0000", "from_user": "peakscale", "from_user_id": 20656014, "from_user_id_str": "20656014", "from_user_name": "Tim Freeman", "geo": null, "id": 148152220179906560, "id_str": "148152220179906560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/77520980/timf_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/77520980/timf_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @jasonh: Yes the shitty mystery IO on AWS must be the db's fault ==> RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/ZONs4kRy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:26:27 +0000", "from_user": "damangmedia", "from_user_id": 94989200, "from_user_id_str": "94989200", "from_user_name": "Matt Clark", "geo": null, "id": 148152096791863300, "id_str": "148152096791863296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1183631747/Matthew_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1183631747/Matthew_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "NoSQL\\u2019s great, but bring your A game - At last week's MongoSV conference in Santa Clara, Calif., a number of users s... http://t.co/NckCDBe8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:26:27 +0000", "from_user": "itstrue", "from_user_id": 9644622, "from_user_id_str": "9644622", "from_user_name": "Matt Clark", "geo": null, "id": 148152096565370880, "id_str": "148152096565370880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1201784466/Matt_Web_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1201784466/Matt_Web_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "NoSQL\\u2019s great, but bring your A game - At last week's MongoSV conference in Santa Clara, Calif., a number of users s... http://t.co/rnl79LmD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:26:08 +0000", "from_user": "frivoliti_com", "from_user_id": 23153945, "from_user_id_str": "23153945", "from_user_name": "Frivoliti.com", "geo": null, "id": 148152017674711040, "id_str": "148152017674711040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1342906234/Apple-Touch-Icon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1342906234/Apple-Touch-Icon_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "NoSQL\\u2019s great, but bring your A game - MongoDB might be a popular choice in NoSQL databases, but it's not perfect a... http://t.co/8YPLGkwX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:26:06 +0000", "from_user": "frivoliti", "from_user_id": 19374255, "from_user_id_str": "19374255", "from_user_name": "Frivoliti.com", "geo": null, "id": 148152012582817800, "id_str": "148152012582817792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1570711366/Apple-Touch-Icon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1570711366/Apple-Touch-Icon_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "NoSQL\\u2019s great, but bring your A game - MongoDB might be a popular choice in NoSQL databases, but it's not perfect a... http://t.co/fdd5mCga", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:26:05 +0000", "from_user": "frivoliti_tech", "from_user_id": 22586388, "from_user_id_str": "22586388", "from_user_name": "Frivoliti.com", "geo": null, "id": 148152007922950140, "id_str": "148152007922950144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1574323747/Apple-Touch-Icon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1574323747/Apple-Touch-Icon_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "NoSQL\\u2019s great, but bring your A game - MongoDB might be a popular choice in NoSQL databases, but it's not perfect a... http://t.co/1PaVP5rI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:25:09 +0000", "from_user": "agasthees", "from_user_id": 39697033, "from_user_id_str": "39697033", "from_user_name": "Agas", "geo": null, "id": 148151772983210000, "id_str": "148151772983209984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/235555339/Agas_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/235555339/Agas_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/kosX6llD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:22:39 +0000", "from_user": "dondecorleon", "from_user_id": 394874988, "from_user_id_str": "394874988", "from_user_name": "Silvio Roguljic", "geo": null, "id": 148151143695007740, "id_str": "148151143695007744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683792659/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683792659/image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "What the f*** (@crucially would say) there's only a handful A gamer outside: NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/s8VakdDX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:21:19 +0000", "from_user": "danielsarsi", "from_user_id": 14539290, "from_user_id_str": "14539290", "from_user_name": "Daniel Sarsi Orta", "geo": null, "id": 148150805495693300, "id_str": "148150805495693312", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695932206/Avatar_Quadrado_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695932206/Avatar_Quadrado_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "NoSQL ou MySQL?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:21:00 +0000", "from_user": "iowahawkeyedave", "from_user_id": 176743256, "from_user_id_str": "176743256", "from_user_name": "David Cornish", "geo": null, "id": 148150728924475400, "id_str": "148150728924475392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1364146193/n108700350_30141489_5015_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1364146193/n108700350_30141489_5015_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/wLC85vDL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:20:35 +0000", "from_user": "iTechNews21", "from_user_id": 428225985, "from_user_id_str": "428225985", "from_user_name": "iTechNews", "geo": null, "id": 148150623982989300, "id_str": "148150623982989312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1673382384/iTechNew21_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673382384/iTechNew21_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/N2Dy3g9g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:19:06 +0000", "from_user": "hnfirehose", "from_user_id": 213117318, "from_user_id_str": "213117318", "from_user_name": "HN Firehose", "geo": null, "id": 148150247850393600, "id_str": "148150247850393601", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL's great, but bring your A game: http://t.co/Ir9xSPm1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:16:39 +0000", "from_user": "AWSomeCloud", "from_user_id": 342249235, "from_user_id_str": "342249235", "from_user_name": "AWSomeCloud", "geo": null, "id": 148149630964744200, "id_str": "148149630964744192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1460849872/aws_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1460849872/aws_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game - http://t.co/X3qUmxhd: As he explained, Wordnik actually launch... http://t.co/HxJr053d #AWS #Cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:16:08 +0000", "from_user": "smite_me", "from_user_id": 73553273, "from_user_id_str": "73553273", "from_user_name": "Smite Me", "geo": null, "id": 148149502233165820, "id_str": "148149502233165824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/410588375/677507-48_super_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/410588375/677507-48_super_1__normal.jpg", "source": "<a href="http://friendfeed.com" rel="nofollow">FriendFeed</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/gIIHKXKS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:15:35 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 148149362608963600, "id_str": "148149362608963585", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/yfYJkBEa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:15:28 +0000", "from_user": "HeidiBullock", "from_user_id": 90743066, "from_user_id_str": "90743066", "from_user_name": "Heidi Bullock", "geo": null, "id": 148149336612683780, "id_str": "148149336612683778", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1144434185/Screen_shot_2010-10-13_at_9.46.34_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1144434185/Screen_shot_2010-10-13_at_9.46.34_PM_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/C4NGsyyF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:10:20 +0000", "from_user": "germcdonald", "from_user_id": 336610322, "from_user_id_str": "336610322", "from_user_name": "germcdonald", "geo": null, "id": 148148042900570100, "id_str": "148148042900570112", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1470859235/fbpic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1470859235/fbpic_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Data Jujitsu and Data Karate - nosql: http://t.co/5Xetg1BS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:08:44 +0000", "from_user": "justinsheehy", "from_user_id": 14317497, "from_user_id_str": "14317497", "from_user_name": "Justin Sheehy", "geo": null, "id": 148147641635700740, "id_str": "148147641635700736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1127160055/minna-square_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1127160055/minna-square_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": ". @derrickharris I'm curious: why a headline and generalizations about \"NoSQL\" in an article that was all just about one database?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:08:43 +0000", "from_user": "mjlefevre", "from_user_id": 16467040, "from_user_id_str": "16467040", "from_user_name": "Matthew Lefevre", "geo": null, "id": 148147636090830850, "id_str": "148147636090830848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/407240436/matt-pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/407240436/matt-pic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RedBeanPHP version 3 released - http://t.co/sibiCSs0 Combine the simplicity of NoSQL with the power of SQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:06:10 +0000", "from_user": "vergasta", "from_user_id": 24008798, "from_user_id_str": "24008798", "from_user_name": "Igor Vergasta", "geo": null, "id": 148146993758355460, "id_str": "148146993758355457", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/193245960/foto_LinkedIn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/193245960/foto_LinkedIn_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/N2Dy3g9g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:59:44 +0000", "from_user": "mahdi", "from_user_id": 718993, "from_user_id_str": "718993", "from_user_name": "Mahdi Taghizadeh", "geo": null, "id": 148145373498712060, "id_str": "148145373498712065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697108280/violet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697108280/violet_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "Google Insights: Cassandra appear as the leading NoSQL solution. http://t.co/fjETAsGw #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:55:50 +0000", "from_user": "gianlucacarrera", "from_user_id": 142426846, "from_user_id_str": "142426846", "from_user_name": "gianluca carrera", "geo": null, "id": 148144395504463870, "id_str": "148144395504463872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1561093622/gian_picture_jpg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1561093622/gian_picture_jpg_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game #socialmedia http://t.co/fG5sGeJZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:53:44 +0000", "from_user": "todayamerican", "from_user_id": 186930401, "from_user_id_str": "186930401", "from_user_name": "Today American", "geo": null, "id": 148143865386373120, "id_str": "148143865386373120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.todayamerican.com" rel="nofollow">Today American Log</a>", "text": "[374] NoSQL\\u2019s great, but bring your A game\\nhttp://t.co/7pDIGVp0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:53:17 +0000", "from_user": "LMDUK", "from_user_id": 208122735, "from_user_id_str": "208122735", "from_user_name": "LiveMarketingDirect", "geo": null, "id": 148143751548768260, "id_str": "148143751548768257", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1153245709/logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1153245709/logo_normal.jpg", "source": "<a href="http://www.twaitter.com" rel="nofollow">Twaitter</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/a2BKjpDs #livemarketingdirect #sales #success #business", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Sat, 17 Dec 2011 20:51:07 +0000", "from_user": "SourceLondon", "from_user_id": 220335761, "from_user_id_str": "220335761", "from_user_name": "Source Marketing Dir", "geo": null, "id": 148143205978865660, "id_str": "148143205978865664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1462012100/2011_Source_Logo_Full_tiny_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1462012100/2011_Source_Logo_Full_tiny_normal.jpg", "source": "<a href="http://www.twaitter.com" rel="nofollow">Twaitter</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/Mxh7yLkU #business #sourcemarketingdirect", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:49:38 +0000", "from_user": "HowieDragon", "from_user_id": 184442035, "from_user_id_str": "184442035", "from_user_name": "Howie", "geo": null, "id": 148142833575002100, "id_str": "148142833575002112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1412192196/IMG_2380_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1412192196/IMG_2380_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @jasonh: Yes the shitty mystery IO on AWS must be the db's fault ==> RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/ZONs4kRy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:49:05 +0000", "from_user": "SMSTechnology", "from_user_id": 108807772, "from_user_id_str": "108807772", "from_user_name": "SMS TECHNOLOGY", "geo": null, "id": 148142693313282050, "id_str": "148142693313282048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1513225223/Orange_twitter_profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1513225223/Orange_twitter_profile_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/Gl8ysF5C Via @gigaom", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:48:57 +0000", "from_user": "WebTech_update", "from_user_id": 361945158, "from_user_id_str": "361945158", "from_user_name": "Web Tech Update", "geo": null, "id": 148142659452674050, "id_str": "148142659452674048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1558404821/webtech_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1558404821/webtech_logo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: At last week's MongoSV conference in Santa Clara, Calif., a number of user... http://t.co/NYH7E9Xr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:48:56 +0000", "from_user": "itshumphrey", "from_user_id": 42976258, "from_user_id_str": "42976258", "from_user_name": "Humphrey", "geo": null, "id": 148142659263938560, "id_str": "148142659263938560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/831852130/n28115437_376_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/831852130/n28115437_376_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/AG9Dfl24", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:48:55 +0000", "from_user": "BrodysDadd", "from_user_id": 19249004, "from_user_id_str": "19249004", "from_user_name": "Chris Barnhart", "geo": null, "id": 148142652494319600, "id_str": "148142652494319616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1266119140/eightbit-498320f7-038e-42ef-909d-fab1e137a095_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266119140/eightbit-498320f7-038e-42ef-909d-fab1e137a095_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "[GigaOM] NoSQL\\u2019s great, but bring your A game: At last week's MongoSV conference in Santa Clara, Calif., a numbe... http://t.co/FxUzXpOq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:46:26 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 148142029069762560, "id_str": "148142029069762560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Yes the shitty mystery IO on AWS must be the db's fault ==> RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/ZONs4kRy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:41:38 +0000", "from_user": "nicomech", "from_user_id": 14320981, "from_user_id_str": "14320981", "from_user_name": "NicoMech", "geo": null, "id": 148140818107076600, "id_str": "148140818107076608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/138843469/photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/138843469/photo_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/N2Dy3g9g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:38:41 +0000", "from_user": "vraffy", "from_user_id": 391401600, "from_user_id_str": "391401600", "from_user_name": "Raffaella Ventaglio", "geo": null, "id": 148140078881972220, "id_str": "148140078881972224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lgarulli: How to plug a new command in #OrientDB console? https://t.co/Dy5KjvVu #graphdb #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:37:56 +0000", "from_user": "jessienuez", "from_user_id": 20348924, "from_user_id_str": "20348924", "from_user_name": "Jessie Nuez", "geo": null, "id": 148139888754167800, "id_str": "148139888754167808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1216441366/jess_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1216441366/jess_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#tech #news NoSQL\\u2019s great, but bring your A game - At last week's MongoSV conference in Santa Clara, Calif., a numbe... http://t.co/khjU2xCk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:36:02 +0000", "from_user": "nixgeek", "from_user_id": 37211927, "from_user_id_str": "37211927", "from_user_name": "Alex Howells", "geo": null, "id": 148139412914577400, "id_str": "148139412914577408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/193181492/3494053757_49f1ee5b4f_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/193181492/3494053757_49f1ee5b4f_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @wattersjames: RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/OvFApQnC <--summary of recent practical talks", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:35:40 +0000", "from_user": "cartmetrix", "from_user_id": 20680688, "from_user_id_str": "20680688", "from_user_name": "Cartmetrix", "geo": null, "id": 148139319184461820, "id_str": "148139319184461826", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1269192074/damonp_caracas_sq_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1269192074/damonp_caracas_sq_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/POKsUnrT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:35:40 +0000", "from_user": "ServerSecurity", "from_user_id": 274013798, "from_user_id_str": "274013798", "from_user_name": "Damon Parker", "geo": null, "id": 148139318676959230, "id_str": "148139318676959232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1291542754/damonp_caracas_sq_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1291542754/damonp_caracas_sq_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/bo3wb2dW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:34:25 +0000", "from_user": "CloudConnexion", "from_user_id": 366440661, "from_user_id_str": "366440661", "from_user_name": "CloudConnexion", "geo": null, "id": 148139002623574000, "id_str": "148139002623574016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1524708170/CloudConnexionProfilePic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1524708170/CloudConnexionProfilePic_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "NoSQL\\u2019s great, but bring your A game: MongoDB might be a popular choice in NoSQL databases\\u2026 http://t.co/wBi0ZOpC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:32:40 +0000", "from_user": "tim_maliyil", "from_user_id": 91243832, "from_user_id_str": "91243832", "from_user_name": "Tim Maliyil", "geo": null, "id": 148138564583030800, "id_str": "148138564583030784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/766801483/13849_208823055490_204226925490_4497717_5597259_s_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/766801483/13849_208823055490_204226925490_4497717_5597259_s_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#cloud NoSQL\\u2019s great, but bring your A game - At last week's MongoSV conference in Santa Clara, Calif., a number of ... http://t.co/DMs5wKTX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:31:21 +0000", "from_user": "networkreading", "from_user_id": 254722584, "from_user_id_str": "254722584", "from_user_name": "Network Reading", "geo": null, "id": 148138231463022600, "id_str": "148138231463022592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1367178073/network_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1367178073/network_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: At last week's MongoSV conference in Santa Clara, Calif., a number of user... http://t.co/mburEP22", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:30:27 +0000", "from_user": "Technology_om", "from_user_id": 333617580, "from_user_id_str": "333617580", "from_user_name": "Technology_om", "geo": null, "id": 148138007361355780, "id_str": "148138007361355776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1437358120/technology_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1437358120/technology_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/CnnxDEnQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:29:44 +0000", "from_user": "DenisseScoble", "from_user_id": 377248199, "from_user_id_str": "377248199", "from_user_name": "Denisse Scoble", "geo": null, "id": 148137825156599800, "id_str": "148137825156599808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1552797865/karineny_cr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552797865/karineny_cr_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/eaxfcRCA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:28:14 +0000", "from_user": "wattersjames", "from_user_id": 36093693, "from_user_id_str": "36093693", "from_user_name": "James Watters", "geo": null, "id": 148137448206118900, "id_str": "148137448206118912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1592323102/smile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592323102/smile_1_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/OvFApQnC <--summary of recent practical talks", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:27:40 +0000", "from_user": "OriginalSignal", "from_user_id": 9657882, "from_user_id_str": "9657882", "from_user_name": "OriginalSignal", "geo": null, "id": 148137306883244030, "id_str": "148137306883244033", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/34313992/avatar_roze_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/34313992/avatar_roze_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: At last week's MongoSV conference in Santa Clara, Calif., a number of user... http://t.co/8SsdU3nv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:27:32 +0000", "from_user": "EskoboNews", "from_user_id": 404819320, "from_user_id_str": "404819320", "from_user_name": "Eskobo News", "geo": null, "id": 148137269944000500, "id_str": "148137269944000512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1622047551/eskobo1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622047551/eskobo1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/WLyKinQ5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:25:57 +0000", "from_user": "d8Pit", "from_user_id": 264394701, "from_user_id_str": "264394701", "from_user_name": "The URL Popularizer", "geo": null, "id": 148136873213173760, "id_str": "148136873213173760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317284522/logo-header_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317284522/logo-header_normal.png", "source": "<a href="http://d8p.it" rel="nofollow">d8P</a>", "text": "RT @techielicous: NoSQL's great, but bring your A game - GigaOm #nosql #bigdata | http://t.co/s5CXr847", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:25:45 +0000", "from_user": "ImagraphicX", "from_user_id": 56958540, "from_user_id_str": "56958540", "from_user_name": "Deb Tech's Only", "geo": null, "id": 148136821459648500, "id_str": "148136821459648512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1082568175/icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1082568175/icon_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/52pcSwjk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:25:09 +0000", "from_user": "eaworldwideco", "from_user_id": 218776898, "from_user_id_str": "218776898", "from_user_name": "EA Worldwide", "geo": null, "id": 148136673027432450, "id_str": "148136673027432448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1192535816/untitled_8_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1192535816/untitled_8_normal.PNG", "source": "<a href="http://www.twaitter.com" rel="nofollow">Twaitter</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/PNyW9wyl #marketing #business #success #biztips", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:23:59 +0000", "from_user": "onlinewithalan", "from_user_id": 404942436, "from_user_id_str": "404942436", "from_user_name": "Alan D", "geo": null, "id": 148136376532082700, "id_str": "148136376532082688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1622298740/iStock_000003475840XSmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622298740/iStock_000003475840XSmall_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:23:14 +0000", "from_user": "geokoder", "from_user_id": 108086917, "from_user_id_str": "108086917", "from_user_name": "Markus Wuersch", "geo": null, "id": 148136191110287360, "id_str": "148136191110287360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1140456139/gkavatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1140456139/gkavatar_normal.png", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/LbEK15AG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:23:11 +0000", "from_user": "janpaul", "from_user_id": 13771912, "from_user_id_str": "13771912", "from_user_name": "Jan Paul \\uE12B", "geo": null, "id": 148136176639938560, "id_str": "148136176639938561", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1643530010/me_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643530010/me_normal.png", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/tsAEt7oq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:21:01 +0000", "from_user": "techielicous", "from_user_id": 240306053, "from_user_id_str": "240306053", "from_user_name": "Josette Rigsby", "geo": null, "id": 148135633372725250, "id_str": "148135633372725248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1250483015/Josette_character_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1250483015/Josette_character_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL's great, but bring your A game - GigaOm http://t.co/ZZM6XRkL #nosql #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:18:44 +0000", "from_user": "lluccipha", "from_user_id": 103246788, "from_user_id_str": "103246788", "from_user_name": "lluccipha", "geo": null, "id": 148135058845339650, "id_str": "148135058845339648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697708417/BYbrkMru_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697708417/BYbrkMru_normal", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/8fDiDeAy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:18:14 +0000", "from_user": "revmail", "from_user_id": 44439023, "from_user_id_str": "44439023", "from_user_name": "George T. Thibault", "geo": null, "id": 148134931812466700, "id_str": "148134931812466688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/248648135/IMG_0056_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/248648135/IMG_0056_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/vKzZTJ8Y", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:17:42 +0000", "from_user": "Geoteq", "from_user_id": 32666259, "from_user_id_str": "32666259", "from_user_name": "Aparecido H. Leite", "geo": null, "id": 148134797808648200, "id_str": "148134797808648192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696264065/Screen_Shot_2011-11-23_at_6.54.14_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696264065/Screen_Shot_2011-11-23_at_6.54.14_AM_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/N2Dy3g9g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:17:37 +0000", "from_user": "techsqueeze", "from_user_id": 76108677, "from_user_id_str": "76108677", "from_user_name": "Tech Squeeze", "geo": null, "id": 148134777726304260, "id_str": "148134777726304258", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/5AgL42GJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:16:46 +0000", "from_user": "disktnk", "from_user_id": 103459580, "from_user_id_str": "103459580", "from_user_name": "disktnk", "geo": null, "id": 148134564194295800, "id_str": "148134564194295809", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1566618208/disktnk_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566618208/disktnk_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "How Does the Future of Computing Look Like? \\u2022 myNoSQL: http://t.co/BvSaAX7d \\uFF1C \\u3078\\u3047\\uFF0CSC2011\\u306E\\u3082\\u53D6\\u308A\\u4E0A\\u3052\\u308B\\u3093\\u3060", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:15:51 +0000", "from_user": "noodeeh", "from_user_id": 139661151, "from_user_id_str": "139661151", "from_user_name": "noodeeh", "geo": null, "id": 148134330202468350, "id_str": "148134330202468353", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL the Ruby Way: http://t.co/JGt3B2Yp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:15:14 +0000", "from_user": "Pacific_Typhoon", "from_user_id": 166858852, "from_user_id_str": "166858852", "from_user_name": "Yasbella Sebastian", "geo": null, "id": 148134177311698940, "id_str": "148134177311698944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1131023134/1__7__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1131023134/1__7__normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/I0x3EYGW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:15:14 +0000", "from_user": "marcx_hughes", "from_user_id": 368807816, "from_user_id_str": "368807816", "from_user_name": "marc_hughes", "geo": null, "id": 148134176015659000, "id_str": "148134176015659008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1652692293/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652692293/images_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/d6swG8pk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:15:06 +0000", "from_user": "DarcyBrookhart", "from_user_id": 424315664, "from_user_id_str": "424315664", "from_user_name": "Darcy Brookhart", "geo": null, "id": 148134143849537540, "id_str": "148134143849537536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1665510628/199359333622__3__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665510628/199359333622__3__normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:14:49 +0000", "from_user": "planetbigdata", "from_user_id": 305730903, "from_user_id_str": "305730903", "from_user_name": "Planet big data", "geo": null, "id": 148134071833333760, "id_str": "148134071833333760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1370033839/Planet_Big_Data_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1370033839/Planet_Big_Data_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: At last week's MongoSV conference in Santa Clara, Calif., a numbe... http://t.co/pyzOownT #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:14:45 +0000", "from_user": "gustavoriffo", "from_user_id": 20996232, "from_user_id_str": "20996232", "from_user_name": "Gustavo Riffo", "geo": null, "id": 148134056075329540, "id_str": "148134056075329537", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1643469992/white-back_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643469992/white-back_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "NoSQL\\u2019s great, but bring your A game", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:14:43 +0000", "from_user": "mshollymorris", "from_user_id": 226713678, "from_user_id_str": "226713678", "from_user_name": "Holly Morris", "geo": null, "id": 148134045761544200, "id_str": "148134045761544192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1191415444/picture1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1191415444/picture1_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/eI4gmG2E", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:14:43 +0000", "from_user": "mr_lotts", "from_user_id": 18281570, "from_user_id_str": "18281570", "from_user_name": "mr_lotts", "geo": null, "id": 148134045744775170, "id_str": "148134045744775168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1178539867/50099_707071805_544_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1178539867/50099_707071805_544_q_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/P1HadQXT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:14:41 +0000", "from_user": "myamazingdesign", "from_user_id": 221047346, "from_user_id_str": "221047346", "from_user_name": "amazinginteriors", "geo": null, "id": 148134038329237500, "id_str": "148134038329237504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1179378765/img-5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1179378765/img-5_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/csfqECr4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:14:41 +0000", "from_user": "gigaom", "from_user_id": 2893971, "from_user_id_str": "2893971", "from_user_name": "GigaOM", "geo": null, "id": 148134036009787400, "id_str": "148134036009787394", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1630819501/GigaOM.Social.200x200_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630819501/GigaOM.Social.200x200_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/N2Dy3g9g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:14:40 +0000", "from_user": "ElissaAngela", "from_user_id": 175642828, "from_user_id_str": "175642828", "from_user_name": "Elissa Angela", "geo": null, "id": 148134035619708930, "id_str": "148134035619708928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1099978988/n100000509731063_1641_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1099978988/n100000509731063_1641_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/nNWPNQoU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:14:26 +0000", "from_user": "disktnk", "from_user_id": 103459580, "from_user_id_str": "103459580", "from_user_name": "disktnk", "geo": null, "id": 148133976601665540, "id_str": "148133976601665537", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1566618208/disktnk_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566618208/disktnk_normal.jpg", "source": "<a href="http://www.soicha.com" rel="nofollow">SOICHA</a>", "text": "Redis Bitmaps for Real-Time Metrics at Spool \\u2022 myNoSQL: http://t.co/Il6e1Uws \\u30E1\\u30E2\\uFF0E", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:12:00 +0000", "from_user": "DocDoCc", "from_user_id": 399236859, "from_user_id_str": "399236859", "from_user_name": "RSS to Share", "geo": null, "id": 148133361494409200, "id_str": "148133361494409216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1608802751/Pear_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608802751/Pear_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "[DocDocc] NoSQL\\u2019s great, but bring your A game http://t.co/g5tZQqIQ via gigaOM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:11:51 +0000", "from_user": "DenisseScoble", "from_user_id": 377248199, "from_user_id_str": "377248199", "from_user_name": "Denisse Scoble", "geo": null, "id": 148133323863113730, "id_str": "148133323863113728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1552797865/karineny_cr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552797865/karineny_cr_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/nSrbYT51", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:10:12 +0000", "from_user": "utollwi", "from_user_id": 4807561, "from_user_id_str": "4807561", "from_user_name": "William Toll", "geo": null, "id": 148132911172960260, "id_str": "148132911172960256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/91496291/WilliamToll_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/91496291/WilliamToll_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/uEmENCEo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:10:04 +0000", "from_user": "mytechbuddy", "from_user_id": 172978429, "from_user_id_str": "172978429", "from_user_name": "Jeff Gibbard", "geo": null, "id": 148132874170806270, "id_str": "148132874170806273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1092009385/neo_bullets_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1092009385/neo_bullets_1_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/K0ybeQ8z", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:10:02 +0000", "from_user": "devevangelist", "from_user_id": 15330061, "from_user_id_str": "15330061", "from_user_name": "Robbie Jack", "geo": null, "id": 148132868818870270, "id_str": "148132868818870272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1603284835/in_the_screen_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1603284835/in_the_screen_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/ofu0FIdP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:09:29 +0000", "from_user": "All_Trends_IT", "from_user_id": 380329513, "from_user_id_str": "380329513", "from_user_name": "All Trends IT", "geo": null, "id": 148132728720719870, "id_str": "148132728720719873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1560812623/IMGP1596_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1560812623/IMGP1596_normal.JPG", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/vpwboTcm via Derrick Harris", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:03:53 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 148131321573679100, "id_str": "148131321573679104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/xviLOJUd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:02:18 +0000", "from_user": "Jeffrey_Blake", "from_user_id": 15531806, "from_user_id_str": "15531806", "from_user_name": "Jeffrey Blake", "geo": null, "id": 148130920061341700, "id_str": "148130920061341696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1193079363/OrcasIsland-square-01_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1193079363/OrcasIsland-square-01_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/DFzt1y8M @GigaOM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:02:10 +0000", "from_user": "structureblog", "from_user_id": 177272998, "from_user_id_str": "177272998", "from_user_name": "structureblog", "geo": null, "id": 148130887068950530, "id_str": "148130887068950528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "NoSQL\\u2019s great, but bring your A game: At last week's MongoSV conference in Santa Clara, Calif., a number of users... http://t.co/G0YB7wGg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:02:09 +0000", "from_user": "jm_jenkins", "from_user_id": 22333321, "from_user_id_str": "22333321", "from_user_name": "Jacquelyn Jenkins", "geo": null, "id": 148130884221026300, "id_str": "148130884221026305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/84923882/JJ_At_LostCoast_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/84923882/JJ_At_LostCoast_normal.JPG", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/eMl0kzvn #cloud #gigaom", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:02:05 +0000", "from_user": "MyNewsBot", "from_user_id": 435630833, "from_user_id_str": "435630833", "from_user_name": "My News Bot", "geo": null, "id": 148130867691266050, "id_str": "148130867691266049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "[GigaOM] NoSQL\\u2019s great, but bring your A game http://t.co/gnWlhvxZ #gigaom", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:02:05 +0000", "from_user": "andreseml", "from_user_id": 15908981, "from_user_id_str": "15908981", "from_user_name": "Andr\\u00E9s Mu\\u00F1oz", "geo": null, "id": 148130866386829300, "id_str": "148130866386829312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693906189/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693906189/image_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: MongoDB might be a popular choice in NoSQL databases, but it\\u2019s... http://t.co/HWytQbMi Via. GigaOM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:02:05 +0000", "from_user": "niteshkr6", "from_user_id": 91141226, "from_user_id_str": "91141226", "from_user_name": "Nitesh Kumar", "geo": null, "id": 148130865103376400, "id_str": "148130865103376384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: MongoDB might be a popular choice in NoSQL databases, but it\\u2019s not perfect... http://t.co/N1M2V9Pm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:02:04 +0000", "from_user": "nirajrajput88", "from_user_id": 209714167, "from_user_id_str": "209714167", "from_user_name": "Niraj Rajput", "geo": null, "id": 148130864813965300, "id_str": "148130864813965312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692390344/12122010272-002_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692390344/12122010272-002_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: MongoDB might be a popular choice in NoSQL databases, but it\\u2019s not perfect... http://t.co/FW1DUPca", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:02:04 +0000", "from_user": "megastuffs", "from_user_id": 235214801, "from_user_id_str": "235214801", "from_user_name": "Mitanshu Saini", "geo": null, "id": 148130863358545920, "id_str": "148130863358545920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1209356231/santang-rambo-tux-2036_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1209356231/santang-rambo-tux-2036_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: MongoDB might be a popular choice in NoSQL databases, but it\\u2019s not perfect... http://t.co/IivLBzVr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:02:04 +0000", "from_user": "AppleFanboyFTW", "from_user_id": 385265200, "from_user_id_str": "385265200", "from_user_name": "Apple Fanboy", "geo": null, "id": 148130861143953400, "id_str": "148130861143953408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1573490171/apple-fanboy-g4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1573490171/apple-fanboy-g4_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: MongoDB might be a popular choice in NoSQL databases, but it\\u2019s not perfect... http://t.co/5SukOd4S", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:02:03 +0000", "from_user": "PeterAlexandrov", "from_user_id": 371615963, "from_user_id_str": "371615963", "from_user_name": "Peter Alexandrov", "geo": null, "id": 148130857306161150, "id_str": "148130857306161152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680289504/Dog_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680289504/Dog_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: MongoDB might be a popular choice in NoSQL databases, but it\\u2019s not perfect... http://t.co/l8Mg5SbE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:02:00 +0000", "from_user": "RobertsChapman", "from_user_id": 371109006, "from_user_id_str": "371109006", "from_user_name": "Roberts Chapman", "geo": null, "id": 148130845067186180, "id_str": "148130845067186176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1686679800/Freedom_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686679800/Freedom_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: MongoDB might be a popular choice in NoSQL databases, but it\\u2019s not perfect... http://t.co/G0ofQfwj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:01:58 +0000", "from_user": "SearleMorris", "from_user_id": 370724877, "from_user_id_str": "370724877", "from_user_name": "Searle Morris", "geo": null, "id": 148130838406639600, "id_str": "148130838406639618", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680254634/illustrated-face_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680254634/illustrated-face_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: MongoDB might be a popular choice in NoSQL databases, but it\\u2019s not perfect... http://t.co/1o3om1uk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:01:58 +0000", "from_user": "Socialblogfeed", "from_user_id": 378825962, "from_user_id_str": "378825962", "from_user_name": "Percy Smith ", "geo": null, "id": 148130837731360770, "id_str": "148130837731360768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1556676188/Blogger_Button_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1556676188/Blogger_Button_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: MongoDB might be a popular choice in NoSQL databases, but it\\u2019s not perfect... http://t.co/UAMItHg7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:01:58 +0000", "from_user": "SusanBeame", "from_user_id": 370535742, "from_user_id_str": "370535742", "from_user_name": "Susan Beame", "geo": null, "id": 148130836934434800, "id_str": "148130836934434816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686701454/S_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686701454/S_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: MongoDB might be a popular choice in NoSQL databases, but it\\u2019s not perfect... http://t.co/wSe1roP4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:01:57 +0000", "from_user": "Socialsymphany", "from_user_id": 378816359, "from_user_id_str": "378816359", "from_user_name": "Marshall", "geo": null, "id": 148130835575472130, "id_str": "148130835575472128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1556668250/social-media_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1556668250/social-media_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: MongoDB might be a popular choice in NoSQL databases, but it\\u2019s not perfect... http://t.co/K7NbSOk9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:01:57 +0000", "from_user": "RayInformatics", "from_user_id": 369370241, "from_user_id_str": "369370241", "from_user_name": "Ray Informatics", "geo": null, "id": 148130835508375550, "id_str": "148130835508375552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1532579482/Ray_Informatics_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1532579482/Ray_Informatics_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: MongoDB might be a popular choice in NoSQL databases, but it\\u2019s not perfect... http://t.co/DzYm4ZNG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:01:57 +0000", "from_user": "Siliconshack", "from_user_id": 255127917, "from_user_id_str": "255127917", "from_user_name": "SiliconShack", "geo": null, "id": 148130833088258050, "id_str": "148130833088258048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1489735930/technology_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1489735930/technology_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/yzwBJHWH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:01:56 +0000", "from_user": "Techallo", "from_user_id": 345443662, "from_user_id_str": "345443662", "from_user_name": "Techallo", "geo": null, "id": 148130830890442750, "id_str": "148130830890442753", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1552713338/1683814995image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552713338/1683814995image_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/aqwELeFV @amarchugg #news", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:01:56 +0000", "from_user": "TechTweeties", "from_user_id": 375974178, "from_user_id_str": "375974178", "from_user_name": "TechTweeties", "geo": null, "id": 148130829900578800, "id_str": "148130829900578816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1549460610/technology_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1549460610/technology_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/JLdVthdK @amarchugg #news", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:01:54 +0000", "from_user": "Papr8tzi", "from_user_id": 32162450, "from_user_id_str": "32162450", "from_user_name": "Brandy Luscalzo", "geo": null, "id": 148130822753497100, "id_str": "148130822753497088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/141375179/DSC01023_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/141375179/DSC01023_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: MongoDB might be a popular choice in NoSQL databases, but it\\u2019s not... http://t.co/entLGaXL #gigaom", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:01:53 +0000", "from_user": "HuongHernon", "from_user_id": 234183283, "from_user_id_str": "234183283", "from_user_name": "Huong Hernon", "geo": null, "id": 148130817015689200, "id_str": "148130817015689216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1207244026/359664835fgjafjf_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1207244026/359664835fgjafjf_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: MongoDB might be a popular choice in NoSQL databases, but it\\u2019s not perfect \\u2014 at least out of th...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:01:38 +0000", "from_user": "IT_Usability", "from_user_id": 314039651, "from_user_id_str": "314039651", "from_user_name": "IT Usability", "geo": null, "id": 148130753031581700, "id_str": "148130753031581697", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1388835454/ver5HomeLogoBar3_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1388835454/ver5HomeLogoBar3_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/JTwVn1oO #Cloudcomputing", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:43:20 +0000", "from_user": "RyuKurosaa", "from_user_id": 309989889, "from_user_id_str": "309989889", "from_user_name": "Ryu Kurosaa", "geo": null, "id": 148126146821754880, "id_str": "148126146821754880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "http://t.co/1N8fCkiL phpBB Discussion \\u2022 Re: phBB noSQL: utomo wrote:I just afraid if Oracle abandon the Free/ Op... http://t.co/dkC3GdRH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:27:17 +0000", "from_user": "ChrisFaw", "from_user_id": 58072509, "from_user_id_str": "58072509", "from_user_name": "Chris Fawcett \\uF8FF", "geo": null, "id": 148122107564404740, "id_str": "148122107564404736", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1324482780/Screen_shot_2011-04-25_at_1.33.30_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1324482780/Screen_shot_2011-04-25_at_1.33.30_AM_normal.png", "source": "<a href="http://www.ajaymatharu.com/" rel="nofollow">Tweet Old Post</a>", "text": "RT @estamosenlinea: Oracle anuncia que ya est\\u00E1 disponible Oracle NoSQL Database http://t.co/IJfF2SGh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:27:12 +0000", "from_user": "jcsirot", "from_user_id": 126661036, "from_user_id_str": "126661036", "from_user_name": "JeanChristophe Sirot", "geo": null, "id": 148122089419833340, "id_str": "148122089419833344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1191139262/Minus_cortex_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1191139262/Minus_cortex_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL Screencast: Building a StackOverflow Clone With RavenDB \\u2022 myNoSQL: http://t.co/2cbzNzL1 #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:14:43 +0000", "from_user": "roidrage", "from_user_id": 14658472, "from_user_id_str": "14658472", "from_user_name": "Mathias Meyer", "geo": null, "id": 148118947416375300, "id_str": "148118947416375298", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1505416860/5653514417_94976350b9_m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505416860/5653514417_94976350b9_m_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Sending errata in style, thanks @jarkko: https://t.co/a64l4lQr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:00:21 +0000", "from_user": "patrickDurusau", "from_user_id": 152194866, "from_user_id_str": "152194866", "from_user_name": "Patrick Durusau", "geo": null, "id": 148115332865867780, "id_str": "148115332865867778", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/961579480/patrick_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/961579480/patrick_normal.jpeg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Couchbase #topicmaps #NoSQL #Couchbase #CouchDB - http://t.co/05U3i3Gq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:52:07 +0000", "from_user": "SQLJOB", "from_user_id": 19657921, "from_user_id_str": "19657921", "from_user_name": "SQL JOBS", "geo": null, "id": 148113258568630270, "id_str": "148113258568630274", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/126654624/1160569_techeye_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/126654624/1160569_techeye_2_normal.jpg", "source": "<a href="http://www.twitjobsearch.com/" rel="nofollow">TwitJobSearch.com Jobs</a>", "text": "Linux Systems Administrator / DevOps -Ubuntu, MySQL Mongo noSQL - London - Unit... #job http://t.co/MufUkvkp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:39:14 +0000", "from_user": "SethAldini", "from_user_id": 18195354, "from_user_id_str": "18195354", "from_user_name": "Seth Aldini", "geo": null, "id": 148110016375832580, "id_str": "148110016375832577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1546292935/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546292935/images_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jamespmclachlan: I'm starting a #NoSequel movement. Database admins against movie franchises. #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:07:10 +0000", "from_user": "runggolfp", "from_user_id": 149853090, "from_user_id_str": "149853090", "from_user_name": "runggolfp", "geo": null, "id": 148101947587690500, "id_str": "148101947587690496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL the Ruby Way: http://t.co/UFHhuDgs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:48:47 +0000", "from_user": "gcard3", "from_user_id": 28898167, "from_user_id_str": "28898167", "from_user_name": "Gerry Cardinal III", "geo": null, "id": 148097322121826300, "id_str": "148097322121826305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/121987599/Picture_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/121987599/Picture_1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jamespmclachlan: I'm starting a #NoSequel movement. Database admins against movie franchises. #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:45:09 +0000", "from_user": "DhilipSiva_linx", "from_user_id": 151913719, "from_user_id_str": "151913719", "from_user_name": "DhilipSiva -CyberMan", "geo": null, "id": 148096406282965000, "id_str": "148096406282964992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1424456382/DhilipSiva__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1424456382/DhilipSiva__normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#linux #opensource Grails 2.0 with more cloud support and NoSQL connectivity http://t.co/mqaRZUBz #DhilipSiva", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:42:13 +0000", "from_user": "phil_nash", "from_user_id": 19881648, "from_user_id_str": "19881648", "from_user_name": "Phil Nash", "geo": null, "id": 148095667942862850, "id_str": "148095667942862848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1355857426/20110513046-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1355857426/20110513046-2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jamespmclachlan: I'm starting a #NoSequel movement. Database admins against movie franchises. #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:25:49 +0000", "from_user": "JLeeGhost", "from_user_id": 306117941, "from_user_id_str": "306117941", "from_user_name": "Johnneylee Rollins", "geo": null, "id": 148091541762748400, "id_str": "148091541762748418", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1370810672/SpaceGhost_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1370810672/SpaceGhost_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lgarulli: @JLeeGhost Thank you! Hope to have found a brand new contributor ;-) #OrientDB #nosql #graphdb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:24:51 +0000", "from_user": "dbelcham", "from_user_id": 14468939, "from_user_id_str": "14468939", "from_user_name": "Donald Belcham", "geo": null, "id": 148091298027536400, "id_str": "148091298027536385", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/53119721/igloocoder_twitterlogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/53119721/igloocoder_twitterlogo_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "anyone spent any significant time with Sterling NoSql db? www.sterlingdatabase.com", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:24:25 +0000", "from_user": "rajanmanick", "from_user_id": 205200705, "from_user_id_str": "205200705", "from_user_name": "Rajan Manickavasagam", "geo": +{"coordinates": [51.7851,-0.2046], "type": "Point"}, "id": 148091187201454080, "id_str": "148091187201454080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698642028/Rajan_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698642028/Rajan_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Tech - NOSQL Tutorial - Part 1 (Introduction) http://t.co/GifOXvNX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:09:00 +0000", "from_user": "kekline", "from_user_id": 22445912, "from_user_id_str": "22445912", "from_user_name": "Kevin Kline", "geo": null, "id": 148087309529657340, "id_str": "148087309529657344", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/388076294/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/388076294/twitterProfilePhoto_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @strataconf: Five Big Data predictions for 2012 http://t.co/Kq3ZxbYD via @radar #bigdata #visualization #hadoop #nosql #oreilly", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:08:48 +0000", "from_user": "oguzbilgener", "from_user_id": 65898204, "from_user_id_str": "65898204", "from_user_name": "O\\u011Fuz Bilgener", "geo": null, "id": 148087260456288260, "id_str": "148087260456288256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700222106/sea_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700222106/sea_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Scaling the Web: Databases & NoSQL http://t.co/32Tmx531 via @youtube", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:06:35 +0000", "from_user": "antiplastics", "from_user_id": 231141217, "from_user_id_str": "231141217", "from_user_name": "Koki Tsuyuzaki", "geo": null, "id": 148086701217161200, "id_str": "148086701217161216", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1201721741/tatikoma_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1201721741/tatikoma_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "SQL\\u3082\\u307E\\u3060\\u305D\\u308C\\u307B\\u3069\\u7406\\u89E3\\u3057\\u3066\\u3044\\u306A\\u3044\\u306E\\u306B\\u3001NOSQL\\u304C\\u308F\\u304B\\u308B\\u3060\\u308D\\u3046\\u304B\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:58:05 +0000", "from_user": "KelEnd", "from_user_id": 66813881, "from_user_id_str": "66813881", "from_user_name": "\\uF8FF Kelvis Finol \\u2714", "geo": null, "id": 148084562717720580, "id_str": "148084562717720576", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674719747/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674719747/image_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "RT @estamosenlinea: Oracle anuncia que ya est\\u00E1 disponible Oracle NoSQL Database http://t.co/GTHEsAw4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:51:41 +0000", "from_user": "sifutwit", "from_user_id": 183088601, "from_user_id_str": "183088601", "from_user_name": "Sifutwit", "geo": null, "id": 148082952981594100, "id_str": "148082952981594112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1134297247/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1134297247/image_normal.jpg", "source": "<a href="http://stone.com/Twittelator" rel="nofollow">Twittelator</a>", "text": "Grails 2.0 with more cloud support and NoSQL connectivity: The Grails development team has released version 2.0 ... http://t.co/WuJWCSO3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:39:29 +0000", "from_user": "estamosenlinea", "from_user_id": 37096554, "from_user_id_str": "37096554", "from_user_name": "Estamos en Linea", "geo": null, "id": 148079880205119500, "id_str": "148079880205119489", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1137622709/icono_fondo_blanco_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1137622709/icono_fondo_blanco_normal.jpg", "source": "<a href="http://www.ajaymatharu.com/" rel="nofollow">Tweet Old Post</a>", "text": "Oracle anuncia que ya est\\u00E1 disponible Oracle NoSQL Database http://t.co/IJfF2SGh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:30:04 +0000", "from_user": "cekicbaris", "from_user_id": 40089831, "from_user_id_str": "40089831", "from_user_name": "Baris Cekic", "geo": null, "id": 148077511572590600, "id_str": "148077511572590593", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1390014815/BarisCekic_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1390014815/BarisCekic_normal.gif", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@erhankeseli , are you sure? Cassandra which is main db for facebook is not an in-memory db. It is nosql and runs on commodity hardware.", "to_user": "erhankeseli", "to_user_id": 63464115, "to_user_id_str": "63464115", "to_user_name": "Erhan Keseli", "in_reply_to_status_id": 147970640270467070, "in_reply_to_status_id_str": "147970640270467073"}, +{"created_at": "Sat, 17 Dec 2011 16:27:20 +0000", "from_user": "sathpal", "from_user_id": 70186403, "from_user_id_str": "70186403", "from_user_name": "sathpal singh", "geo": null, "id": 148076822754635780, "id_str": "148076822754635777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "The Hard Life Of A NoSQL Coder http://t.co/G8Ab6RVj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:06:46 +0000", "from_user": "CompuwareJOBS", "from_user_id": 103014075, "from_user_id_str": "103014075", "from_user_name": "Compuware", "geo": null, "id": 148071649604927500, "id_str": "148071649604927488", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1357745731/twitter_icons_R-1_Compuware_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1357745731/twitter_icons_R-1_Compuware_normal.jpg", "source": "<a href="http://www.jobmagic.com" rel="nofollow">Jobmagic</a>", "text": "NoSQL Database Architect (US-MI-Detroit) http://t.co/4aO3iEv2 #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:00:03 +0000", "from_user": "MySQLBot_es", "from_user_id": 305268592, "from_user_id_str": "305268592", "from_user_name": "MySQLBot_es", "geo": null, "id": 148069958277013500, "id_str": "148069958277013505", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1369510701/mysql_100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1369510701/mysql_100_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @28ten2eight: #MySQL * #NoSQL * #HadoopHbase. #tech <3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:59:02 +0000", "from_user": "markswall", "from_user_id": 19688728, "from_user_id_str": "19688728", "from_user_name": "Mark Wall", "geo": null, "id": 148069700574785540, "id_str": "148069700574785536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676652683/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676652683/Untitled_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hadoop, HPCC, MapR and the TeraSort Benchmark \\u2022 myNoSQL http://t.co/q4Fs9u7o", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:46:14 +0000", "from_user": "28ten2eight", "from_user_id": 398652192, "from_user_id_str": "398652192", "from_user_name": "MsKrisyHan", "geo": null, "id": 148066481496789000, "id_str": "148066481496788993", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1607493431/khepredbeach_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607493431/khepredbeach_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "#MySQL * #NoSQL * #HadoopHbase. #tech <3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Sat, 17 Dec 2011 15:46:14 +0000", "from_user": "28ten2eight", "from_user_id": 398652192, "from_user_id_str": "398652192", "from_user_name": "MsKrisyHan", "geo": null, "id": 148066481496789000, "id_str": "148066481496788993", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1607493431/khepredbeach_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607493431/khepredbeach_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "#MySQL * #NoSQL * #HadoopHbase. #tech <3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:41:47 +0000", "from_user": "wadearnold", "from_user_id": 16250884, "from_user_id_str": "16250884", "from_user_name": "wadearnold", "geo": +{"coordinates": [42.5022,-92.4151], "type": "Point"}, "id": 148065360057344000, "id_str": "148065360057344001", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546226413/Wade-5939-TightSquareCrop-MedRes_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546226413/Wade-5939-TightSquareCrop-MedRes_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "http://t.co/FvmvFqEG Good webinar from @larsgeorge on #hbase schema design", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:11:43 +0000", "from_user": "medicalcumulus", "from_user_id": 98506206, "from_user_id_str": "98506206", "from_user_name": "Medical Cumulus", "geo": null, "id": 148057792303988740, "id_str": "148057792303988737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/587328926/MedicalCumulus_Twitter_Profile_Pic_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/587328926/MedicalCumulus_Twitter_Profile_Pic_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Grails 2.0 with more cloud support and NoSQL connectivity http://t.co/onAZiPpI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:07:34 +0000", "from_user": "satiromarra", "from_user_id": 21444368, "from_user_id_str": "21444368", "from_user_name": "satiro", "geo": null, "id": 148056748727615500, "id_str": "148056748727615491", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1606258042/satiro.es_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606258042/satiro.es_normal.png", "source": "<a href="http://www.greattweet.com/" rel="nofollow">GreatTweet</a>", "text": "[ENG] Bases de datos NoSQL, as\\u00ED podemos considerar redes sociales como #facebook o #twitter. Las bases de datos ... http://t.co/P1g51Svs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:54:28 +0000", "from_user": "datachick", "from_user_id": 15534499, "from_user_id_str": "15534499", "from_user_name": "Karen Lopez", "geo": null, "id": 148053454055686140, "id_str": "148053454055686145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1639614262/9a4f5b93-2599-40e2-820e-eed4a5d0ac1a_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639614262/9a4f5b93-2599-40e2-820e-eed4a5d0ac1a_normal.png", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "A Big List of Interesting Programming Books Released in 2011 http://t.co/6X8AQLU1 < Knuth, SemWeb, DataViz, NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:51:37 +0000", "from_user": "feedcatdemon", "from_user_id": 179782943, "from_user_id_str": "179782943", "from_user_name": "feedcatdemon", "geo": null, "id": 148052736284430340, "id_str": "148052736284430338", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1105469588/Feed_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1105469588/Feed_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The H - Grails 2.0 with more cloud support and NoSQL connectivity http://t.co/1RTotiYP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:46:55 +0000", "from_user": "phaneeshn", "from_user_id": 78000743, "from_user_id_str": "78000743", "from_user_name": "Phaneesh Nagaraja", "geo": null, "id": 148051551070588930, "id_str": "148051551070588928", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/789289885/0383_guitarist_heavy_metal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/789289885/0383_guitarist_heavy_metal_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "#HBase Schema Design http://t.co/GRSRupjj #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:32:09 +0000", "from_user": "Flavio58", "from_user_id": 17228282, "from_user_id_str": "17228282", "from_user_name": "Flavio58", "geo": null, "id": 148047838008446980, "id_str": "148047838008446978", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1558799380/File110908_103743_718_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1558799380/File110908_103743_718_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Grails 2.0 with more cloud support and NoSQL connectivity: The Grails development team has released version 2.0 ... http://t.co/iQ2NaXgi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:26:12 +0000", "from_user": "0fredla", "from_user_id": 256114966, "from_user_id_str": "256114966", "from_user_name": "Fred La", "geo": null, "id": 148046337718501380, "id_str": "148046337718501376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1430546574/01mageia.adrielhernandez-twittux-22215_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1430546574/01mageia.adrielhernandez-twittux-22215_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Grails 2.0 with more cloud support and NoSQL connectivity http://t.co/l8zOKaun via @addthis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:21:28 +0000", "from_user": "lmatteis", "from_user_id": 281950081, "from_user_id_str": "281950081", "from_user_name": "Luca Matteis", "geo": null, "id": 148045148394225660, "id_str": "148045148394225664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1311121600/me_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1311121600/me_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Why in-memory database are sometimes useful @nodejs http://t.co/MKEl09cE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:12:46 +0000", "from_user": "RobbertFrank", "from_user_id": 110953124, "from_user_id_str": "110953124", "from_user_name": "Robbert-Frank", "geo": null, "id": 148042957260468220, "id_str": "148042957260468224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/757967297/RF-twitt_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/757967297/RF-twitt_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Grails 2.0 with more cloud support and NoSQL connectivity: The Grails development team has released version 2.0 ... http://t.co/Egg43Fdb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:08:41 +0000", "from_user": "ExadataV2", "from_user_id": 85375436, "from_user_id_str": "85375436", "from_user_name": "Steve Dickson", "geo": null, "id": 148041929186222080, "id_str": "148041929186222080", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/491391360/Steve2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/491391360/Steve2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @OracleDatabase: Podcast: Introducing Oracle #NoSQL Database http://t.co/JuzGKz8h", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:08:02 +0000", "from_user": "markwigmans", "from_user_id": 7527532, "from_user_id_str": "7527532", "from_user_name": "Mark Wigmans", "geo": null, "id": 148041769479700480, "id_str": "148041769479700480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/837273831/MWI_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/837273831/MWI_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "#NoSQL Benchmarking, the differences between hbase, cassandra and mongodb http://t.co/RviI7bBI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:06:29 +0000", "from_user": "techielicous", "from_user_id": 240306053, "from_user_id_str": "240306053", "from_user_name": "Josette Rigsby", "geo": null, "id": 148041377098375170, "id_str": "148041377098375168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1250483015/Josette_character_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1250483015/Josette_character_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Grails 2.0 with more cloud support and NoSQL connectivity - The H http://t.co/22Ftweaf #nosql #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:00:09 +0000", "from_user": "patrickDurusau", "from_user_id": 152194866, "from_user_id_str": "152194866", "from_user_name": "Patrick Durusau", "geo": null, "id": 148039783464189950, "id_str": "148039783464189953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/961579480/patrick_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/961579480/patrick_normal.jpeg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Getting Started with CouchDB #topicmaps #NoSQL #CouchDB - http://t.co/wMUg73Rb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:44:10 +0000", "from_user": "OpenManiac", "from_user_id": 148128785, "from_user_id_str": "148128785", "from_user_name": "Openmaniac Meisopen", "geo": null, "id": 148035761499938800, "id_str": "148035761499938816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1008968707/mw_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1008968707/mw_normal.png", "source": "<a href="http://twetool.com" rel="nofollow">TweTool</a>", "text": "Grails 2.0 with more cloud support and NoSQL connectivity http://t.co/gAExhKxO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:42:34 +0000", "from_user": "imtrafficking", "from_user_id": 168238813, "from_user_id_str": "168238813", "from_user_name": "Traffic King", "geo": null, "id": 148035359568171000, "id_str": "148035359568171008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1081305757/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1081305757/images_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Grails 2.0 with more cloud support and NoSQL connectivity http://t.co/1F1zTJAg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:40:43 +0000", "from_user": "3DR", "from_user_id": 25687108, "from_user_id_str": "25687108", "from_user_name": "Dirk Reimer", "geo": null, "id": 148034891483852800, "id_str": "148034891483852801", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/105633073/Dirk-Reimer_July2008_NXP_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/105633073/Dirk-Reimer_July2008_NXP_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Grails 2.0 with more cloud support and NoSQL connectivity: The Grails development team has released version 2.0 ... http://t.co/M9zWbPlc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:38:55 +0000", "from_user": "lgarulli", "from_user_id": 74181214, "from_user_id_str": "74181214", "from_user_name": "Luca Garulli", "geo": null, "id": 148034441820897280, "id_str": "148034441820897280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1142225678/webcam_luca34_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1142225678/webcam_luca34_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@JLeeGhost Thank you! Hope to have found a brand new contributor ;-) #OrientDB #nosql #graphdb", "to_user": "JLeeGhost", "to_user_id": 306117941, "to_user_id_str": "306117941", "to_user_name": "Johnneylee Rollins", "in_reply_to_status_id": 147870649967329280, "in_reply_to_status_id_str": "147870649967329280"}, +{"created_at": "Sat, 17 Dec 2011 13:27:14 +0000", "from_user": "Cyb3r", "from_user_id": 150890388, "from_user_id_str": "150890388", "from_user_name": "Cyb3r CMG", "geo": null, "id": 148031501127270400, "id_str": "148031501127270400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/951859651/cy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/951859651/cy_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Grails 2.0 with more cloud support and NoSQL connectivity: The Grails development team has released version 2.0 ... http://t.co/Rc5TXFrc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:25:49 +0000", "from_user": "TechL0G", "from_user_id": 209734424, "from_user_id_str": "209734424", "from_user_name": "Tech Log", "geo": null, "id": 148031143697063940, "id_str": "148031143697063936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1155305767/tl_normalf1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1155305767/tl_normalf1_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#Open_Source \\u00B7Grails 2.0 with more cloud support and NoSQL connectivity: The Grails... http://t.co/qBEEa9oE |http://t.co/ne8OZiob", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:21:02 +0000", "from_user": "TibidyUS", "from_user_id": 313799444, "from_user_id_str": "313799444", "from_user_name": "Tibidy", "geo": null, "id": 148029941236244480, "id_str": "148029941236244481", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1458127887/tbd_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1458127887/tbd_normal.png", "source": "<a href="http://www.tibidy.com" rel="nofollow">Tibidy</a>", "text": "#Grails 2.0 with more cloud support and #NoSQL #connectivity: http://t.co/KbNOhPta | #IDE #development #experience #version", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:18:02 +0000", "from_user": "TibidyUS", "from_user_id": 313799444, "from_user_id_str": "313799444", "from_user_name": "Tibidy", "geo": null, "id": 148029186475442180, "id_str": "148029186475442176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1458127887/tbd_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1458127887/tbd_normal.png", "source": "<a href="http://www.tibidy.com" rel="nofollow">Tibidy</a>", "text": "All about #NoSQL. Tagged on http://t.co/VxLcOEOf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:16:40 +0000", "from_user": "DrTom21", "from_user_id": 265282023, "from_user_id_str": "265282023", "from_user_name": "Thomas Schank", "geo": null, "id": 148028840470528000, "id_str": "148028840470528000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1359272911/1095_-_Thomas_Schank_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1359272911/1095_-_Thomas_Schank_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL vs SQL for web applications, pretty good wrap-up by @strlen http://t.co/GhwhyNat", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:15:27 +0000", "from_user": "heiseonlinepl", "from_user_id": 52022635, "from_user_id_str": "52022635", "from_user_name": "heise online", "geo": null, "id": 148028535469117440, "id_str": "148028535469117442", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/288392396/ho_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/288392396/ho_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Grails 2.0 with more cloud support and NoSQL connectivity: The Grails development team has released version 2.0 ... http://t.co/HqLfFNAR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:14:47 +0000", "from_user": "infwonder", "from_user_id": 336539168, "from_user_id_str": "336539168", "from_user_name": "Jason Lin", "geo": null, "id": 148028365369114620, "id_str": "148028365369114624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1445373893/photo_mosaic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1445373893/photo_mosaic_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Grails 2.0 with more cloud support and NoSQL connectivity: The Grails development team has released version 2.0 ... http://t.co/DJiUiAXq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:10:34 +0000", "from_user": "RyuKurosaa", "from_user_id": 309989889, "from_user_id_str": "309989889", "from_user_name": "Ryu Kurosaa", "geo": null, "id": 148027304554135550, "id_str": "148027304554135552", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "http://t.co/1N8fCkiL phpBB Discussion \\u2022 Re: phpBB noSQL: utomo wrote:Kevin Clark wrote:utomo wrote:noSQL forum u... http://t.co/lQvvdhhP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:09:47 +0000", "from_user": "thinker0", "from_user_id": 27849933, "from_user_id_str": "27849933", "from_user_name": "thinker0", "geo": null, "id": 148027108608843780, "id_str": "148027108608843776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/741818694/buggie_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/741818694/buggie_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @PeterBell: RT @rgcoding: Looking at NOSQL? Then take a peek at Neo4j: Awesome. http://t.co/rPMupGFx http://t.co/QvGcqPfz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:09:26 +0000", "from_user": "ScalingNerd", "from_user_id": 362724902, "from_user_id_str": "362724902", "from_user_name": "Scaling News", "geo": null, "id": 148027019278549000, "id_str": "148027019278548992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1514940425/scalingnerd_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1514940425/scalingnerd_normal.png", "source": "<a href="http://ScalingNerd.com" rel="nofollow">ScalingNerd.com</a>", "text": "Grails 2.0 with more cloud support and NoSQL connectivity - The H http://t.co/oCBQG6sX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:03:48 +0000", "from_user": "neo4j", "from_user_id": 22467617, "from_user_id_str": "22467617", "from_user_name": "Neo4j", "geo": null, "id": 148025602480422900, "id_str": "148025602480422912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/195275920/square-logo-no-text-2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/195275920/square-logo-no-text-2_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @PeterBell: RT @rgcoding: Looking at NOSQL? Then take a peek at Neo4j: Awesome. http://t.co/rPMupGFx http://t.co/QvGcqPfz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:03:06 +0000", "from_user": "heiseonlineuk", "from_user_id": 15003788, "from_user_id_str": "15003788", "from_user_name": "News from The H", "geo": null, "id": 148025424524476400, "id_str": "148025424524476417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/79630431/vsmallhavatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/79630431/vsmallhavatar_normal.png", "source": "<a href="http://www.heise.de" rel="nofollow">heise Tweetfeeds</a>", "text": "RT @honlinenews: Grails 2.0 with more cloud support and NoSQL connectivity http://t.co/UBbWevOz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:03:05 +0000", "from_user": "honlinenews", "from_user_id": 20971642, "from_user_id_str": "20971642", "from_user_name": "The H - News", "geo": null, "id": 148025420644745200, "id_str": "148025420644745217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/83431811/theHmulti_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/83431811/theHmulti_normal.jpg", "source": "<a href="http://www.heise.de" rel="nofollow">heise Tweetfeeds</a>", "text": "Grails 2.0 with more cloud support and NoSQL connectivity http://t.co/UBbWevOz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:00:08 +0000", "from_user": "patrickDurusau", "from_user_id": 152194866, "from_user_id_str": "152194866", "from_user_name": "Patrick Durusau", "geo": null, "id": 148024681469984770, "id_str": "148024681469984768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/961579480/patrick_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/961579480/patrick_normal.jpeg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Redis, from the ground up #topicmaps #NoSQL #Redis - http://t.co/iy7UHlcF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:59:08 +0000", "from_user": "Hayato_Kapibara", "from_user_id": 107363660, "from_user_id_str": "107363660", "from_user_name": "\\u306F\\u3084\\u3068", "geo": null, "id": 148024426481451000, "id_str": "148024426481451008", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702377804/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702377804/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @jllachf: http://t.co/7npCzfZU nice job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:56:42 +0000", "from_user": "ekrTech", "from_user_id": 190163317, "from_user_id_str": "190163317", "from_user_name": "ekrTech", "geo": null, "id": 148023816654819330, "id_str": "148023816654819333", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1548191896/ekrtech_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1548191896/ekrtech_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Grails 2.0 with more cloud support and NoSQL connectivity: The Grails development team has released version ... http://t.co/gsORf4l8 #in", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:55:58 +0000", "from_user": "freesource", "from_user_id": 19503616, "from_user_id_str": "19503616", "from_user_name": "Free Software Feeds", "geo": null, "id": 148023632575209470, "id_str": "148023632575209474", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/73127416/twitter_j_03_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/73127416/twitter_j_03_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Grails 2.0 with more cloud support and NoSQL connectivity http://t.co/2KGH15fX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:44:39 +0000", "from_user": "gauravpaliwal", "from_user_id": 19814653, "from_user_id_str": "19814653", "from_user_name": "Gaurav Paliwal", "geo": null, "id": 148020782809874430, "id_str": "148020782809874432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/400786107/gaurav.paliwal1989_gmail.com_bcfc34fb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/400786107/gaurav.paliwal1989_gmail.com_bcfc34fb_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@smarty7 the time is of NoSQL :P", "to_user": "smarty7", "to_user_id": 15268706, "to_user_id_str": "15268706", "to_user_name": "Shailendra Paliwal", "in_reply_to_status_id": 148018549351383040, "in_reply_to_status_id_str": "148018549351383041"}, +{"created_at": "Sat, 17 Dec 2011 12:39:18 +0000", "from_user": "RyuKurosaa", "from_user_id": 309989889, "from_user_id_str": "309989889", "from_user_name": "Ryu Kurosaa", "geo": null, "id": 148019436975173630, "id_str": "148019436975173632", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "http://t.co/1N8fCkiL phpBB Discussion \\u2022 Re: phBB noSQL: utomo wrote:noSQL forum using phpBB http://t.co/N6ZFy6nM... http://t.co/SpGu88G0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:25:49 +0000", "from_user": "alltop_java", "from_user_id": 191999280, "from_user_id_str": "191999280", "from_user_name": "Alltop Java", "geo": null, "id": 148016044240412670, "id_str": "148016044240412673", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1128524576/IloveAlltop_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1128524576/IloveAlltop_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL: NoSQL Screencast: HBase Schema Design http://t.co/JLS4RnKz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:24:50 +0000", "from_user": "nodoherty", "from_user_id": 10439452, "from_user_id_str": "10439452", "from_user_name": "Niall O'Doherty", "geo": null, "id": 148015795971166200, "id_str": "148015795971166208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1230777742/31123e4e-388b-46dd-bd65-530032657350_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1230777742/31123e4e-388b-46dd-bd65-530032657350_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @PeterBell: RT @rgcoding: Looking at NOSQL? Then take a peek at Neo4j: Awesome. http://t.co/rPMupGFx http://t.co/QvGcqPfz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:17:08 +0000", "from_user": "PeterBell", "from_user_id": 804749, "from_user_id_str": "804749", "from_user_name": "Peter Bell", "geo": null, "id": 148013858601181200, "id_str": "148013858601181184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1017174968/Latest-headshot-130x130_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1017174968/Latest-headshot-130x130_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @rgcoding: Looking at NOSQL? Then take a peek at Neo4j: Awesome. http://t.co/rPMupGFx http://t.co/QvGcqPfz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:49:23 +0000", "from_user": "ruckiand", "from_user_id": 58284725, "from_user_id_str": "58284725", "from_user_name": "Andrej Ruckij", "geo": null, "id": 148006873562488830, "id_str": "148006873562488832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1267693504/Untitled_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1267693504/Untitled_normal.png", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "We have this in prod. Env. @cassandra: release of #cassandra 1.0.6, changes: http://t.co/sAjRuzgq (http://t.co/myzfgt3h) #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:46:24 +0000", "from_user": "ronnylt", "from_user_id": 14145543, "from_user_id_str": "14145543", "from_user_name": "Ronny L\\u00F3pez", "geo": null, "id": 148006123071483900, "id_str": "148006123071483904", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/66084714/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/66084714/profile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Colecci\\u00F3n de recursos para el aprendizaje de NoSQL, big data, data mining: http://t.co/QRJ4JcV2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:23:43 +0000", "from_user": "alltop_java", "from_user_id": 191999280, "from_user_id_str": "191999280", "from_user_name": "Alltop Java", "geo": null, "id": 148000414862815230, "id_str": "148000414862815232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1128524576/IloveAlltop_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1128524576/IloveAlltop_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL: NoSQL Screencast: Building a StackOverflow Clone With RavenDB http://t.co/L4WGcQtP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:12:07 +0000", "from_user": "roidrage", "from_user_id": 14658472, "from_user_id_str": "14658472", "from_user_name": "Mathias Meyer", "geo": null, "id": 147997497233653760, "id_str": "147997497233653760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1505416860/5653514417_94976350b9_m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505416860/5653514417_94976350b9_m_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@jedschmidt Twitter works, but also an email to riak@nosqlhandbook.com or https://t.co/GplXO4TE. Thanks!", "to_user": "jedschmidt", "to_user_id": 815114, "to_user_id_str": "815114", "to_user_name": "Jed Schmidt", "in_reply_to_status_id": 147922692975235070, "in_reply_to_status_id_str": "147922692975235072"}, +{"created_at": "Sat, 17 Dec 2011 11:11:05 +0000", "from_user": "coders_vzla", "from_user_id": 199569043, "from_user_id_str": "199569043", "from_user_name": "coders_vzla", "geo": null, "id": 147997236679290880, "id_str": "147997236679290880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1196821157/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1196821157/logo_normal.png", "source": "<a href="http://timely.is" rel="nofollow">Timely by Demandforce</a>", "text": "Schneems \\u2022 Scaling the Web: Databases & NoSQL http://t.co/rZKqYTGL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:02:09 +0000", "from_user": "ajfeed", "from_user_id": 260762269, "from_user_id_str": "260762269", "from_user_name": "Ajinkya Feed", "geo": null, "id": 147994987341156350, "id_str": "147994987341156352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "CompSci NoSQL Screencast: HBase Schema Design: In this O\\u2019Reilly webcast, long time HBase developer and Cloudera ... http://t.co/qQCU3JYE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:44:38 +0000", "from_user": "mynosql_popescu", "from_user_id": 197901055, "from_user_id_str": "197901055", "from_user_name": "myNoSQL", "geo": null, "id": 147990582118199300, "id_str": "147990582118199296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL Screencast: HBase Schema Design: In this O\\u2019Reilly webcast, long time HBase developer and Cloudera HBase/Ha... http://t.co/FCRDlf7K", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:34:59 +0000", "from_user": "nromanetti", "from_user_id": 11372422, "from_user_id_str": "11372422", "from_user_name": "nromanetti", "geo": null, "id": 147988150491430900, "id_str": "147988150491430912", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/73963531/jaxio-nicolas-romanetti_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/73963531/jaxio-nicolas-romanetti_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Pr\\u00E9sentation #cassandra #nosql en #corse #ajaccio d\\u00E9but janvier. http://t.co/aJ85oLv0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:34:17 +0000", "from_user": "diegomarino", "from_user_id": 3705121, "from_user_id_str": "3705121", "from_user_name": "Diego Mari\\u00F1o", "geo": null, "id": 147987977300213760, "id_str": "147987977300213760", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1194189604/dmarinoc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1194189604/dmarinoc_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@adrianmg el twitter de Jan es @wulczer... Pero solo lo utiliza para arremeter contra la gente de JS, Ruby y NoSQL :D", "to_user": "adrianmg", "to_user_id": 15727391, "to_user_id_str": "15727391", "to_user_name": "Adri\\u00E1n Mato", "in_reply_to_status_id": 147987440571924480, "in_reply_to_status_id_str": "147987440571924480"}, +{"created_at": "Sat, 17 Dec 2011 10:32:26 +0000", "from_user": "adPeGu", "from_user_id": 103245969, "from_user_id_str": "103245969", "from_user_name": "Adri\\u00E1n Pereira", "geo": null, "id": 147987510360948740, "id_str": "147987510360948736", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687635209/786687_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687635209/786687_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u00A1Buen\\u00EDsimo! http://t.co/vT6qj5C2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:30:34 +0000", "from_user": "ajfeed", "from_user_id": 260762269, "from_user_id_str": "260762269", "from_user_name": "Ajinkya Feed", "geo": null, "id": 147987040770859000, "id_str": "147987040770859008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "CompSci NoSQL Screencast: Building a StackOverflow Clone With RavenDB: Ayende and Justin pair to model a StackOv... http://t.co/puzjYqjj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:14:26 +0000", "from_user": "mynosql_popescu", "from_user_id": 197901055, "from_user_id_str": "197901055", "from_user_name": "myNoSQL", "geo": null, "id": 147982981741559800, "id_str": "147982981741559808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL Screencast: Building a StackOverflow Clone With RavenDB: Ayende and Justin pair to model a StackOverflow w... http://t.co/0rCJtzVx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:13:42 +0000", "from_user": "mongodb_news", "from_user_id": 218710958, "from_user_id_str": "218710958", "from_user_name": "MongoDb", "geo": null, "id": 147982796013572100, "id_str": "147982796013572096", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1173473945/imgres-1_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1173473945/imgres-1_normal.jpeg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @jllachf: http://t.co/7npCzfZU nice job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:45:09 +0000", "from_user": "dmakovec", "from_user_id": 14120044, "from_user_id_str": "14120044", "from_user_name": "Dan", "geo": null, "id": 147975608712970240, "id_str": "147975608712970240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1551095187/Photo_on_2011-09-20_at_13.00_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1551095187/Photo_on_2011-09-20_at_13.00_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jamespmclachlan: I'm starting a #NoSequel movement. Database admins against movie franchises. #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:07:54 +0000", "from_user": "ShoNakamura", "from_user_id": 101534058, "from_user_id_str": "101534058", "from_user_name": "\\u306A\\u304B\\u3080\\u3057\\u3087\\u3046", "geo": null, "id": 147966237861871600, "id_str": "147966237861871617", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/607831698/3834241_2352217911_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/607831698/3834241_2352217911_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u30AF\\u30E9\\u30A6\\u30C9\\u306E\\u57FA\\u672C\\u306E\\u77E5\\u8B58\\u30E1\\u30E2\\nIT\\u30B7\\u30B9\\u30C6\\u30E0\\u306B\\u5229\\u7528\\u3055\\u308C\\u308B\\u30B7\\u30B9\\u30C6\\u30E0\\u306F\\u3053\\u308C\\u307E\\u3067RDB \\u30EA\\u30EC\\u30FC\\u30B7\\u30E7\\u30CA\\u30EB\\u30C7\\u30FC\\u30BF\\u30D9\\u30FC\\u30B9\\u304C\\u4E3B\\u6D41\\u3060\\u3063\\u305F\\u304C\\u3001\\u30AF\\u30E9\\u30A6\\u30C9\\u306F\\u81EA\\u5728\\u306B\\u30B9\\u30B1\\u30FC\\u30EB\\u3067\\u304D\\u308B\\u3002\\u305D\\u3053\\u3067\\u8FD1\\u5E74\\u3001NoSQL\\u304C\\u6CE8\\u76EE\\u3055\\u308C\\u3066\\u3044\\u308B\\u3002RDB\\u306B\\u6BD4\\u3079\\u3066\\u51E6\\u7406\\u304C\\u9AD8\\u901F\\u3067\\u5206\\u6563\\u51E6\\u7406\\u306B\\u5F37\\u304F\\u3001\\u7528\\u9014\\u3084\\u30B3\\u30B9\\u30C8\\u3001\\u30B9\\u30B1\\u30FC\\u30EB\\u306B\\u5408\\u308F\\u305B\\u305F\\u6700\\u9069\\u5316\\u304C\\u3057\\u3084\\u3059\\u3044", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:45:03 +0000", "from_user": "MongoQuestion", "from_user_id": 233820847, "from_user_id_str": "233820847", "from_user_name": "Mongo Question", "geo": null, "id": 147960486779039740, "id_str": "147960486779039744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1207364137/mq_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1207364137/mq_normal.jpg", "source": "<a href="http://learnmongo.com" rel="nofollow">Mongo Question</a>", "text": "\"Rails microblog using (No)SQL\" #MongoDB - http://t.co/9S2KsLz6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:44:24 +0000", "from_user": "LabsXooFoo", "from_user_id": 181174051, "from_user_id_str": "181174051", "from_user_name": "XooFoo", "geo": null, "id": 147960320391000060, "id_str": "147960320391000064", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1107782194/logo_xoofoo_48_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1107782194/logo_xoofoo_48_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Mini Server Web NoSql - Version 2.1: Nous vous proposons une nouvelle version de notre mini server NoSql avec la... http://t.co/Bbsew2rD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:23:17 +0000", "from_user": "kris_fr", "from_user_id": 15236350, "from_user_id_str": "15236350", "from_user_name": "kris_fr", "geo": null, "id": 147955006715334660, "id_str": "147955006715334656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/689089611/Sans_titre-2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/689089611/Sans_titre-2_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Mini Server Web NoSql - Version 2.1 with MongoDB 2.0.2 - http://t.co/AZPhxnJ5 http://t.co/0v5ui0Tc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:00:18 +0000", "from_user": "azanetti", "from_user_id": 5650772, "from_user_id_str": "5650772", "from_user_name": "Antony Zanetti", "geo": null, "id": 147949226150723600, "id_str": "147949226150723585", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/53246295/me2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/53246295/me2_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"Building a Location-Based Web App w/ MongoDB\" http://t.co/xINEkBRH #MongoDB #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:57:09 +0000", "from_user": "bit_jammer", "from_user_id": 68004390, "from_user_id_str": "68004390", "from_user_name": "Francisco Calle", "geo": null, "id": 147948430742913020, "id_str": "147948430742913024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1258503285/ff0329c8-d442-4ffc-98f9-f1d73ca902aa_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1258503285/ff0329c8-d442-4ffc-98f9-f1d73ca902aa_normal.png", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Geek And Poke: The Hard Life Of A NoSQL Coder http://t.co/Xd8lYzlr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:48:06 +0000", "from_user": "OussamaLachiheb", "from_user_id": 106569324, "from_user_id_str": "106569324", "from_user_name": "Oussama Lachiheb", "geo": null, "id": 147946154179563520, "id_str": "147946154179563520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1389091367/tof_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1389091367/tof_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "technology is like human, it borns, one day it will die.. but it will have a child\\n( Relational models and nosql Databases relationship )", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:31:54 +0000", "from_user": "elithp", "from_user_id": 102653304, "from_user_id_str": "102653304", "from_user_name": "EL", "geo": null, "id": 147942077219606530, "id_str": "147942077219606528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Orthogonal design for product pricing and production planning with NoSQL database: I am in the process of develo... http://t.co/pZ7CQYMZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:31:54 +0000", "from_user": "johnniefeed", "from_user_id": 225491085, "from_user_id_str": "225491085", "from_user_name": "Johnnie Zhang", "geo": null, "id": 147942075470585860, "id_str": "147942075470585856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Orthogonal design for product pricing and production planning with NoSQL database: I am in the process of develo... http://t.co/Reosw3Nr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:30:14 +0000", "from_user": "amtindia", "from_user_id": 17646260, "from_user_id_str": "17646260", "from_user_name": "AMT", "geo": null, "id": 147941657533366270, "id_str": "147941657533366273", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/341107159/AMT_twi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/341107159/AMT_twi_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Five big data predictions for 2012 - By @Radar http://t.co/aEFdKfUy #NoSQL #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:15:01 +0000", "from_user": "QAJournal", "from_user_id": 268847164, "from_user_id_str": "268847164", "from_user_name": "IT Techy", "geo": null, "id": 147937829371133950, "id_str": "147937829371133952", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL: Apache Cassandra 101 http://t.co/TDGt6T7o via @AddThis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 06:59:30 +0000", "from_user": "bproctor1", "from_user_id": 353026850, "from_user_id_str": "353026850", "from_user_name": "Brad Proctor", "geo": null, "id": 147933923991756800, "id_str": "147933923991756800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1692087896/me-medium_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692087896/me-medium_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "To NoSQL or not to NoSQL: http://t.co/L5nCtWMq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 06:42:39 +0000", "from_user": "touchecomm", "from_user_id": 81461213, "from_user_id_str": "81461213", "from_user_name": "Touch\\u00E9 Comm", "geo": null, "id": 147929683105824770, "id_str": "147929683105824768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/463815634/default_profile_1_normal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/463815634/default_profile_1_normal_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Touch\\u00E9 Comm - Looking at NOSQL? Then take a peek at Neo4j http://t.co/uYtrkge7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 06:35:00 +0000", "from_user": "rgcoding", "from_user_id": 48980803, "from_user_id_str": "48980803", "from_user_name": "Renato Gomes", "geo": null, "id": 147927759178579970, "id_str": "147927759178579968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/718171630/logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/718171630/logo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Looking at NOSQL? Then take a peek at Neo4j: Awesome. http://t.co/ESd45imy http://t.co/tgFcTJcw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 06:08:52 +0000", "from_user": "FlexBloggers", "from_user_id": 267836050, "from_user_id_str": "267836050", "from_user_name": "Flex Bloggers", "geo": null, "id": 147921182056910850, "id_str": "147921182056910849", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1277077625/icon_128_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1277077625/icon_128_normal.png", "source": "<a href="http://www.flexbloggers.org" rel="nofollow">Flex Bloggers Bot</a>", "text": "Looking at NOSQL? Then take a peek at Neo4j - http://t.co/VFdAQJyy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:43:52 +0000", "from_user": "furthest_works", "from_user_id": 313799257, "from_user_id_str": "313799257", "from_user_name": "Furthest Works", "geo": null, "id": 147914891699814400, "id_str": "147914891699814400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1388620416/furthest_work1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1388620416/furthest_work1_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "#JavaScript Web Application by firemountain: This project is for someone who\\u2026 http://t.co/GGtcq4Pv #freelance #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:32:51 +0000", "from_user": "job4freelancetk", "from_user_id": 415541754, "from_user_id_str": "415541754", "from_user_name": "job4freelancetk", "geo": null, "id": 147912119013220350, "id_str": "147912119013220353", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1645181274/66small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645181274/66small_normal.jpg", "source": "<a href="http://www.linksalpha.com/" rel="nofollow">LinksAlpha</a>", "text": "JavaScript Web Application by firemountain http://t.co/FLvSAc1r", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:31:54 +0000", "from_user": "abe_masanori", "from_user_id": 238525344, "from_user_id_str": "238525344", "from_user_name": "ABE Masanori \\u963F\\u90E8 \\u5C06\\u5178", "geo": null, "id": 147911877006065660, "id_str": "147911877006065665", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1263696578/myimg_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263696578/myimg_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Oracle NoSQL Database, Community Edition\\u306F\\u300Cawaiting final license approval\\u300D\\u3068\\u3044\\u3046\\u72B6\\u614B\\u3067\\u306A\\u304B\\u306A\\u304B\\u30EA\\u30EA\\u30FC\\u30B9\\u3055\\u308C\\u306A\\u3044\\u3002\\u8A66\\u7528\\u3067\\u3042\\u308C\\u3070Enterprise Edition\\u3092OTN\\u30E9\\u30A4\\u30BB\\u30F3\\u30B9\\u3067\\u4F7F\\u3048\\u3070\\u826F\\u3044\\u3051\\u3069\\u3002\\u3002\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:18:36 +0000", "from_user": "estamosenlinea", "from_user_id": 37096554, "from_user_id_str": "37096554", "from_user_name": "Estamos en Linea", "geo": null, "id": 147908532493221900, "id_str": "147908532493221889", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1137622709/icono_fondo_blanco_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1137622709/icono_fondo_blanco_normal.jpg", "source": "<a href="http://www.ajaymatharu.com/" rel="nofollow">Tweet Old Post</a>", "text": "Oracle anuncia que ya est\\u00E1 disponible Oracle NoSQL Database http://t.co/IJfF2SGh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:52:45 +0000", "from_user": "Work__Freelance", "from_user_id": 240105001, "from_user_id_str": "240105001", "from_user_name": "Freelance Jobs", "geo": null, "id": 147902026460827650, "id_str": "147902026460827648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1219638828/freelancex200_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1219638828/freelancex200_normal.jpg", "source": "<a href="http://www.managetwit.com" rel="nofollow">ManageTwit</a>", "text": "Freelance Javascript Job - JavaScript Web Application http://t.co/srm9PF9H #freelance #jobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:49:13 +0000", "from_user": "StartWorkNow", "from_user_id": 336548162, "from_user_id_str": "336548162", "from_user_name": "Freelance Jobs", "geo": null, "id": 147901134873427970, "id_str": "147901134873427968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1445380382/programmer_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1445380382/programmer_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "JavaScript Web Application by firemountain: This project is for someone who is legitimately talented in th... http://t.co/NkqnSR00 #jobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:48:01 +0000", "from_user": "infogroova", "from_user_id": 101355095, "from_user_id_str": "101355095", "from_user_name": "INFOGROOVA", "geo": null, "id": 147900833021960200, "id_str": "147900833021960192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "RT @MySQL: Live webinar in #APAC time zone next Thur: Product Roadmap of #MySQL - RDBMS and #NoSQL, And Beyond: http://t.co/Pr2Sr8aC pls retweet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:46:29 +0000", "from_user": "reconnect_Job", "from_user_id": 281615923, "from_user_id_str": "281615923", "from_user_name": "Programming Job", "geo": null, "id": 147900448156827650, "id_str": "147900448156827648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#JavaScipt JavaScript Web Application by firemountain: This project is for someone who is legitimat... http://t.co/Pfbg0MrW #Programming", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:44:01 +0000", "from_user": "freelancesuper", "from_user_id": 304718129, "from_user_id_str": "304718129", "from_user_name": "freelancesucces", "geo": null, "id": 147899828658110460, "id_str": "147899828658110464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1623635476/Freelance_Succes_LOgo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1623635476/Freelance_Succes_LOgo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "JavaScript Web Application by firemountain: This project is for someone who is legitimately talented in the use ... http://t.co/NmOdWOEg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:42:42 +0000", "from_user": "FreelanceJobz4U", "from_user_id": 109293507, "from_user_id_str": "109293507", "from_user_name": "Freelance Jobz 4 U", "geo": null, "id": 147899495689093120, "id_str": "147899495689093121", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/661495065/bassetthoundpup_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/661495065/bassetthoundpup_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#freelance jobs: JavaScript Web Application by firemountain: This project is for someone who is legiti... http://t.co/oEgRgc7O #projects", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:41:19 +0000", "from_user": "UrFreelanceJobs", "from_user_id": 112100565, "from_user_id_str": "112100565", "from_user_name": "Your Freelance Jobs", "geo": null, "id": 147899149927460860, "id_str": "147899149927460865", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/680942151/money_tree_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/680942151/money_tree_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "JavaScript Web Application by firemountain http://t.co/C5VKEhCh #freelance", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:40:34 +0000", "from_user": "Blue_Bovine", "from_user_id": 17511965, "from_user_id_str": "17511965", "from_user_name": "Blue_Bovine", "geo": null, "id": 147898959719960580, "id_str": "147898959719960576", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "NoSQL Benchmarking http://t.co/2YwnX1ww via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:36:55 +0000", "from_user": "viswajithv", "from_user_id": 47445770, "from_user_id_str": "47445770", "from_user_name": "Viswajith V", "geo": null, "id": 147898042924793860, "id_str": "147898042924793856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/264421393/Viswa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/264421393/Viswa_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "JavaScript Web Application by firemountain http://t.co/IOseMq75", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:36:30 +0000", "from_user": "sem_jobs", "from_user_id": 39963740, "from_user_id_str": "39963740", "from_user_name": "SEM Jobs", "geo": null, "id": 147897936246865920, "id_str": "147897936246865920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/614197762/logo_sem_jobs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/614197762/logo_sem_jobs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "JavaScript Web Application by firemountain: This project is for someone who is legitimately talented ... http://t.co/0mslt2sp #sem #jobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:33:37 +0000", "from_user": "MediaSME", "from_user_id": 17631273, "from_user_id_str": "17631273", "from_user_name": "MediaSME", "geo": null, "id": 147897209000701950, "id_str": "147897209000701952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1542050534/mediasme-logo-2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542050534/mediasme-logo-2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hire or Be Hired_ JavaScript Web Application by firemountain http://t.co/ALvDQdTc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:32:05 +0000", "from_user": "NovyBarks", "from_user_id": 306674434, "from_user_id_str": "306674434", "from_user_name": "Novy Barks", "geo": null, "id": 147896824496275460, "id_str": "147896824496275457", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1371988055/1caa2656397_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1371988055/1caa2656397_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#forfreelancer JavaScript Web Application by firemountain http://t.co/eVrBOghS #dothatsjobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:32:05 +0000", "from_user": "MicheleBanks2", "from_user_id": 306673166, "from_user_id_str": "306673166", "from_user_name": "Michele Banks", "geo": null, "id": 147896823787434000, "id_str": "147896823787433984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1371989287/15ff16085262_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1371989287/15ff16085262_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#forfreelancer JavaScript Web Application by firemountain http://t.co/odnLqdyj #dothatsjobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:32:04 +0000", "from_user": "Rakadanda", "from_user_id": 225062421, "from_user_id_str": "225062421", "from_user_name": "heru nugraha", "geo": null, "id": 147896818989146100, "id_str": "147896818989146112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1187257049/Aing_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1187257049/Aing_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#forfreelancer JavaScript Web Application by firemountain http://t.co/rFBi4b2V #dothatsjobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:31:57 +0000", "from_user": "workfreelancer", "from_user_id": 95474694, "from_user_id_str": "95474694", "from_user_name": "Work Freelancer", "geo": null, "id": 147896791982026750, "id_str": "147896791982026752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/573379472/logofreelance_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/573379472/logofreelance_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "JavaScript Web Application by firemountain: This project is for someone who is legitimately tal... http://t.co/d3ReoYdY #Freelance #Jobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:23:34 +0000", "from_user": "kkodong", "from_user_id": 125886147, "from_user_id_str": "125886147", "from_user_name": "dongwook", "geo": null, "id": 147894680405803000, "id_str": "147894680405803008", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\uC744 \\uC5EC\\uD589\\uD558\\uB294 \\uD788\\uCE58\\uD558\\uC774\\uCEE4\\uB97C \\uC704\\uD55C \\uC548\\uB0B4\\uC11C, \\uC1A1\\uAE30\\uC120 http://t.co/6WfHX9WU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:23:33 +0000", "from_user": "freelancergigs", "from_user_id": 69451318, "from_user_id_str": "69451318", "from_user_name": "FreelancerGigs", "geo": null, "id": 147894677054558200, "id_str": "147894677054558208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1661246254/freelancergigs_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661246254/freelancergigs_normal.png", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "JavaScript Web Application by firemountain http://t.co/PUkn6Vak", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:46:16 +0000", "from_user": "vscarpenter", "from_user_id": 59223, "from_user_id_str": "59223", "from_user_name": "Vinny Carpenter", "geo": null, "id": 147870196575633400, "id_str": "147870196575633408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/48540942/vinny-thumbnail-rounded_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/48540942/vinny-thumbnail-rounded_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "InfoQ: JSR 107, JSR 347, Infinispan, NoSQL, Hot Rod, Memcached, CDI and Beyond http://t.co/3N00y2CU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:33:18 +0000", "from_user": "shankar303", "from_user_id": 15455186, "from_user_id_str": "15455186", "from_user_name": "shankar303", "geo": null, "id": 147866930815049730, "id_str": "147866930815049728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1219729299/face_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1219729299/face_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "New NOSQL based disturbed database >> Apache Cassandra. used by facebook, twitter.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:16:01 +0000", "from_user": "d8Pit", "from_user_id": 264394701, "from_user_id_str": "264394701", "from_user_name": "The URL Popularizer", "geo": null, "id": 147862580982067200, "id_str": "147862580982067202", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317284522/logo-header_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317284522/logo-header_normal.png", "source": "<a href="http://d8p.it" rel="nofollow">d8P</a>", "text": "RT @TheBigDataTrap: NoSQL Job of the Day: Hadoop Solution Architect #bigdata | http://t.co/6I30PoAP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:02:03 +0000", "from_user": "TheBigDataTrap", "from_user_id": 389163301, "from_user_id_str": "389163301", "from_user_name": "The Big Data Trap", "geo": null, "id": 147859066394394620, "id_str": "147859066394394625", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1584049409/twitter_prof_-big-data_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584049409/twitter_prof_-big-data_normal.jpg", "source": "<a href="http://trap.it" rel="nofollow">Trapit</a>", "text": "NoSQL Job of the Day: Hadoop Solution Architect http://t.co/sAkRRMIi #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:57:13 +0000", "from_user": "sweemeng", "from_user_id": 11877522, "from_user_id_str": "11877522", "from_user_name": "sweemeng", "geo": null, "id": 147857850180448260, "id_str": "147857850180448257", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1586374686/275543_671264318_115996077_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586374686/275543_671264318_115996077_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "must find chance to attempt this for @sinarproject #opendata http://t.co/JtxorDJL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:53:18 +0000", "from_user": "smithatlanta", "from_user_id": 14599342, "from_user_id_str": "14599342", "from_user_name": "Michael Smith \\u269B", "geo": null, "id": 147856864376389630, "id_str": "147856864376389632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1563331358/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1563331358/image_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Safari on iOS</a>", "text": "This is a little dated but I like how it gives different scenarios for the use of each type of nosql storage. http://t.co/Ti5CJiCP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:44:49 +0000", "from_user": "mongodb_news", "from_user_id": 218710958, "from_user_id_str": "218710958", "from_user_name": "MongoDb", "geo": null, "id": 147854731493126140, "id_str": "147854731493126144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1173473945/imgres-1_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1173473945/imgres-1_normal.jpeg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"Building a Location-Based Web App w/ MongoDB\" http://t.co/xINEkBRH #MongoDB #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:31:13 +0000", "from_user": "alonhorev", "from_user_id": 358053230, "from_user_id_str": "358053230", "from_user_name": "Alon Horev", "geo": null, "id": 147851308039286800, "id_str": "147851308039286785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1661119064/DSC_1549_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661119064/DSC_1549_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "nosql is so fun not because its schema-less, but because it doesn't require migrations, and if you want schema, coding a migration is easy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:15:26 +0000", "from_user": "owenheaps", "from_user_id": 148683115, "from_user_id_str": "148683115", "from_user_name": "Scotty ere nor there", "geo": null, "id": 147847336058564600, "id_str": "147847336058564609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701924911/owen_heaps_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701924911/owen_heaps_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jamespmclachlan: I'm starting a #NoSequel movement. Database admins against movie franchises. #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Sat, 17 Dec 2011 01:09:15 +0000", "from_user": "sjb351", "from_user_id": 33214971, "from_user_id_str": "33214971", "from_user_name": "Steven Black", "geo": null, "id": 147845779678179330, "id_str": "147845779678179328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1589071369/Janus_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1589071369/Janus_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jamespmclachlan: I'm starting a #NoSequel movement. Database admins against movie franchises. #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:04:58 +0000", "from_user": "tunaranch", "from_user_id": 15464944, "from_user_id_str": "15464944", "from_user_name": "Haikal Saadh", "geo": null, "id": 147844704258633730, "id_str": "147844704258633728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1102551115/e5657cc8-8b05-4385-ad98-44e6dd5e02a2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1102551115/e5657cc8-8b05-4385-ad98-44e6dd5e02a2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jamespmclachlan: I'm starting a #NoSequel movement. Database admins against movie franchises. #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:00:33 +0000", "from_user": "Veli_Bayar", "from_user_id": 438682020, "from_user_id_str": "438682020", "from_user_name": "Veli Bayar", "geo": null, "id": 147843589337128960, "id_str": "147843589337128961", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697159897/JacobsLadder_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697159897/JacobsLadder_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/jOkSzpNA a girerek, NoSQL veri tabanlar\\u0131na dair veriler bulunabilir. Bunlar \\u00F6nemli \\u015Feyler insanc\\u0131klar.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:56:29 +0000", "from_user": "joshdavey", "from_user_id": 2367691, "from_user_id_str": "2367691", "from_user_name": "Joshua Davey", "geo": null, "id": 147842566275084300, "id_str": "147842566275084288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1258256138/profile-picture-dmz_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1258256138/profile-picture-dmz_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jamespmclachlan: I'm starting a #NoSequel movement. Database admins against movie franchises. #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:36:35 +0000", "from_user": "keithkim", "from_user_id": 14881688, "from_user_id_str": "14881688", "from_user_name": "Keith Kim", "geo": null, "id": 147837559978991600, "id_str": "147837559978991616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1485820747/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1485820747/me_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"Building a Location-Based Web App w/ MongoDB\" http://t.co/xINEkBRH #MongoDB #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:32:27 +0000", "from_user": "TopDevTweets", "from_user_id": 194520782, "from_user_id_str": "194520782", "from_user_name": "TopDevTweets", "geo": null, "id": 147836517337935870, "id_str": "147836517337935873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "RT @doryokujin: many presentations at #mongosv are here! #mongodb / \\u201C10gen - MongoDB and NoSQL video, webcasts, presentations, and mo\\u2026\\u201D http://t.co/1X6UHcxx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:30:32 +0000", "from_user": "doryokujin", "from_user_id": 73622174, "from_user_id_str": "73622174", "from_user_name": "Takahiro Inoue", "geo": null, "id": 147836036993654800, "id_str": "147836036993654784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/620019651/runninng_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/620019651/runninng_normal.jpeg", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "many presentations at #mongosv are here! #mongodb / \\u201C10gen - MongoDB and NoSQL video, webcasts, presentations, and mo\\u2026\\u201D http://t.co/1X6UHcxx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:18:13 +0000", "from_user": "usul_", "from_user_id": 5528042, "from_user_id_str": "5528042", "from_user_name": "Fran\\u00E7ois Dussert", "geo": null, "id": 147832939298828300, "id_str": "147832939298828288", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1476077804/gravatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1476077804/gravatar_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @jedisct1: RT @OracleDatabase: Podcast: Introducing Oracle #NoSQL Database http://t.co/54mWKN1M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:14:49 +0000", "from_user": "jedisct1", "from_user_id": 17396038, "from_user_id_str": "17396038", "from_user_name": "Frank Denis", "geo": null, "id": 147832081442013200, "id_str": "147832081442013184", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/64543895/cv_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/64543895/cv_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @OracleDatabase: Podcast: Introducing Oracle #NoSQL Database http://t.co/54mWKN1M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:54:54 +0000", "from_user": "ar_farias", "from_user_id": 22497637, "from_user_id_str": "22497637", "from_user_name": "Anderson R. Farias", "geo": null, "id": 147827068464414720, "id_str": "147827068464414720", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/924915480/teste_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/924915480/teste_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @OracleDatabase: Podcast: Introducing Oracle #NoSQL Database http://t.co/JuzGKz8h", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:42:30 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 147823948879507460, "id_str": "147823948879507456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "HBase, mail # user - new to HBase/NoSQL, need some help with ... http://t.co/OOSXaPgH #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:36:59 +0000", "from_user": "daisuke_kawada", "from_user_id": 297712820, "from_user_id_str": "297712820", "from_user_name": "\\u5DDD\\u7530\\u5927\\u8F14 Daisuke Kawada", "geo": null, "id": 147822559692472320, "id_str": "147822559692472320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1351323088/____________2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1351323088/____________2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @wso2: Sumedha Rubasighe presenting \"Data in your SOA: From SQL to NoSQL and Beyond\" at #wso2con 2011 http://t.co/cMD4a3f0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:30:58 +0000", "from_user": "understeer", "from_user_id": 4451471, "from_user_id_str": "4451471", "from_user_name": "MATSUO Yasuhiro ", "geo": null, "id": 147821046291107840, "id_str": "147821046291107841", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1314550179/4451471_origin_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1314550179/4451471_origin_normal.gif", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "The 10gen Blog on MongoDB and NoSQL, Announcing the 2011 MongoDB Community Award Winners: http://t.co/IxGEepn7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:26:44 +0000", "from_user": "a_musing_moose", "from_user_id": 15658358, "from_user_id_str": "15658358", "from_user_name": "a_musing_moose", "geo": null, "id": 147819980287787000, "id_str": "147819980287787008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/630560005/me2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/630560005/me2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jamespmclachlan: I'm starting a #NoSequel movement. Database admins against movie franchises. #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:19:53 +0000", "from_user": "tswicegood", "from_user_id": 9478892, "from_user_id_str": "9478892", "from_user_name": "Travis Swicegood", "geo": null, "id": 147818255745167360, "id_str": "147818255745167360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1380831239/new-avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1380831239/new-avatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jamespmclachlan: I'm starting a #NoSequel movement. Database admins against movie franchises. #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:07:30 +0000", "from_user": "zbesiroglu", "from_user_id": 99265193, "from_user_id_str": "99265193", "from_user_name": "Zekeriya Be\\u015Firo\\u011Flu", "geo": null, "id": 147815139926749200, "id_str": "147815139926749185", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1631579037/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631579037/image_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @OracleDatabase: Podcast: Introducing Oracle #NoSQL Database http://t.co/JuzGKz8h", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:04:07 +0000", "from_user": "DBmxorg", "from_user_id": 261452842, "from_user_id_str": "261452842", "from_user_name": "DBmx.org", "geo": null, "id": 147814288336236540, "id_str": "147814288336236545", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1263199080/4395953684_419dff284f_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263199080/4395953684_419dff284f_normal.jpg", "source": "<a href="http://timely.is" rel="nofollow">Timely by Demandforce</a>", "text": "Hadoop puede vivir en Microsoft Azure http://t.co/zmcIi25R #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:39:12 +0000", "from_user": "zizzamia", "from_user_id": 25728571, "from_user_id_str": "25728571", "from_user_name": "Leonardo Zizzamia", "geo": null, "id": 147808018761920500, "id_str": "147808018761920512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1615599868/39f192b_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615599868/39f192b_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@bernarpa @giovannibajo cool cool! The next step is to use #MongoDB. Enough Sql, long live the #NoSQL. :-D", "to_user": "bernarpa", "to_user_id": 156004270, "to_user_id_str": "156004270", "to_user_name": "Paolo Bernardi", "in_reply_to_status_id": 147763577816756220, "in_reply_to_status_id_str": "147763577816756224"}, +{"created_at": "Fri, 16 Dec 2011 22:25:43 +0000", "from_user": "PursueMobile", "from_user_id": 369193926, "from_user_id_str": "369193926", "from_user_name": "Pursue Mobile", "geo": null, "id": 147804624135520260, "id_str": "147804624135520256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1532057433/PMSquareV2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1532057433/PMSquareV2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "How AOL Advertising Uses NoSQL to Make Millions of Smart Decisions Every Hour http://t.co/iuaFhtOX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:04:56 +0000", "from_user": "hnfirehose", "from_user_id": 213117318, "from_user_id_str": "213117318", "from_user_name": "HN Firehose", "geo": null, "id": 147799395818156030, "id_str": "147799395818156032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "How AOL Advertising Uses NoSQL to Make Millions of Smart Decisions Every Hour: http://t.co/LCnoTVr2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:28:52 +0000", "from_user": "techielicous", "from_user_id": 240306053, "from_user_id_str": "240306053", "from_user_name": "Josette Rigsby", "geo": null, "id": 147790320506109950, "id_str": "147790320506109952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1250483015/Josette_character_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1250483015/Josette_character_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloudant claims $2M funding - Mass High Tech http://t.co/u9yQEWyb #nosql #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:28:33 +0000", "from_user": "hmedney", "from_user_id": 18916747, "from_user_id_str": "18916747", "from_user_name": "hmedney", "geo": null, "id": 147790237614088200, "id_str": "147790237614088193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/70830095/twitter-face_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/70830095/twitter-face_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Enjoyed the Taking Notes 142 podcast - good intro to NoSQL and comparison to #lotusnotes NSF. http://t.co/PCoAhc5b", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:25:13 +0000", "from_user": "lintzston", "from_user_id": 15534230, "from_user_id_str": "15534230", "from_user_name": "Justin Lintz", "geo": null, "id": 147789398593904640, "id_str": "147789398593904640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1161127231/73884_742770040882_16100151_40343487_1377918_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1161127231/73884_742770040882_16100151_40343487_1377918_n_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "Facebook: There Are No Published Cases of NoSQL Databases Operating at the Scale of Facebook\\u2019s MySQL Database http://t.co/Ewf3AuSn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:22:32 +0000", "from_user": "b2berry", "from_user_id": 238645222, "from_user_id_str": "238645222", "from_user_name": "Brandon Berry", "geo": null, "id": 147788724321779700, "id_str": "147788724321779712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1653873598/ipadFace_Twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653873598/ipadFace_Twitter_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: \\u267B How Does the Future of Computing Look Like? http://t.co/XjqBDoNp #future", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:07:49 +0000", "from_user": "zippy1981", "from_user_id": 19685647, "from_user_id_str": "19685647", "from_user_name": "Justin Dearing", "geo": null, "id": 147785022982725630, "id_str": "147785022982725632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1672673440/Gravatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672673440/Gravatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@jamespmclachlan what about T2, empire strikes back TWOK? #nosequel #nosql", "to_user": "jamespmclachlan", "to_user_id": 219524685, "to_user_id_str": "219524685", "to_user_name": "James McLachlan", "in_reply_to_status_id": 147784335892819970, "in_reply_to_status_id_str": "147784335892819969"}, +{"created_at": "Fri, 16 Dec 2011 21:07:10 +0000", "from_user": "zippy1981", "from_user_id": 19685647, "from_user_id_str": "19685647", "from_user_name": "Justin Dearing", "geo": null, "id": 147784856909262850, "id_str": "147784856909262848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1672673440/Gravatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672673440/Gravatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jamespmclachlan: I'm starting a #NoSequel movement. Database admins against movie franchises. #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:06:42 +0000", "from_user": "kchodorow", "from_user_id": 31141896, "from_user_id_str": "31141896", "from_user_name": "kristina", "geo": null, "id": 147784739321954300, "id_str": "147784739321954304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/362414023/n809676_30991415_5620_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/362414023/n809676_30991415_5620_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jamespmclachlan: I'm starting a #NoSequel movement. Database admins against movie franchises. #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:05:06 +0000", "from_user": "jamespmclachlan", "from_user_id": 219524685, "from_user_id_str": "219524685", "from_user_name": "James McLachlan", "geo": null, "id": 147784335892819970, "id_str": "147784335892819969", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1663713323/JamesFace_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663713323/JamesFace_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I'm starting a #NoSequel movement. Database admins against movie franchises. #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:02:29 +0000", "from_user": "javazquez", "from_user_id": 15304140, "from_user_id_str": "15304140", "from_user_name": "javazquez", "geo": null, "id": 147783677529702400, "id_str": "147783677529702401", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1415946610/Photo_6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1415946610/Photo_6_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @graemerocher: Published an updated developer guide for folks interested in creating implementations of GORM http://t.co/a3FMxeuC #grails #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:01:25 +0000", "from_user": "gpuchawski", "from_user_id": 158722057, "from_user_id_str": "158722057", "from_user_name": "Grzegorz Puchawski", "geo": null, "id": 147783412353212400, "id_str": "147783412353212416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Or maybe this is like with NOSQL, that NO EMAILS means NOt only EMAILS?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:47:38 +0000", "from_user": "speedata", "from_user_id": 66168039, "from_user_id_str": "66168039", "from_user_name": "speedata", "geo": null, "id": 147779940144791550, "id_str": "147779940144791552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1425809224/twitter-logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1425809224/twitter-logo_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Awesome new project with the #speedata Publisher, #nodejs and some #nosql database. Sounds like lots of fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:42:37 +0000", "from_user": "bentrm", "from_user_id": 242676306, "from_user_id_str": "242676306", "from_user_name": "bt", "geo": null, "id": 147778679479603200, "id_str": "147778679479603200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1414110586/20110604_iPhone_00418_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1414110586/20110604_iPhone_00418_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "NoSQL makes me feel like I've missed something in the past.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:39:34 +0000", "from_user": "Gridflow", "from_user_id": 351754270, "from_user_id_str": "351754270", "from_user_name": "Erick Trolinger", "geo": null, "id": 147777912454643700, "id_str": "147777912454643712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1486637297/Gridflowlogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1486637297/Gridflowlogo_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "The NoSQL space has really expanded. There are over 120 projects in this area according to http://t.co/0R1QhZMf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:28:48 +0000", "from_user": "Innopplinc", "from_user_id": 266687201, "from_user_id_str": "266687201", "from_user_name": "Innoppl Technologies", "geo": null, "id": 147775203169153020, "id_str": "147775203169153024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691161011/74282_10150297601905467_490647825466_15474758_6725828_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691161011/74282_10150297601905467_490647825466_15474758_6725828_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "#BigData #NoSQL Atlanta LinkedIn group is now open for new members http://t.co/2TxZ0YUJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:12:53 +0000", "from_user": "nivertech", "from_user_id": 18736601, "from_user_id_str": "18736601", "from_user_name": "Zvi", "geo": null, "id": 147771198565130240, "id_str": "147771198565130241", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/297198891/0609_future_tv_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/297198891/0609_future_tv_normal.jpg", "source": "<a href="http://www.handmark.com" rel="nofollow">TweetCaster for iOS</a>", "text": "RT @CloudCompute: #NoSQL Benchmarking http://t.co/a6a3PGUO cassandra #mongodb #hbase", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:11:46 +0000", "from_user": "wso2", "from_user_id": 15594932, "from_user_id_str": "15594932", "from_user_name": "wso2", "geo": null, "id": 147770914921132030, "id_str": "147770914921132032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/57207794/wso2-logo-twitter_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/57207794/wso2-logo-twitter_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Sumedha Rubasighe presenting \"Data in your SOA: From SQL to NoSQL and Beyond\" at #wso2con 2011 http://t.co/cMD4a3f0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:09:16 +0000", "from_user": "CloudCompute", "from_user_id": 15457407, "from_user_id_str": "15457407", "from_user_name": "CloudCompute", "geo": null, "id": 147770286434037760, "id_str": "147770286434037760", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/178810177/Picture_9_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/178810177/Picture_9_normal.png", "source": "<a href="http://www.handmark.com" rel="nofollow">TweetCaster for iOS</a>", "text": "#NoSQL Benchmarking http://t.co/a6a3PGUO cassandra #mongodb #hbase", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:07:55 +0000", "from_user": "valleymobjobs", "from_user_id": 285217228, "from_user_id_str": "285217228", "from_user_name": "Valley Mobile Jobs", "geo": null, "id": 147769946972233730, "id_str": "147769946972233728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1318878831/localmobjobs_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1318878831/localmobjobs_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#sf Technical Evangelist for Couchbase and NoSQL http://t.co/CowQlX1D #mobile #jobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:05:20 +0000", "from_user": "cgrahamseven", "from_user_id": 100053478, "from_user_id_str": "100053478", "from_user_name": "Chris Graham", "geo": null, "id": 147769294984445950, "id_str": "147769294984445952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1550141943/maserati_tridente_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1550141943/maserati_tridente_normal.jpg", "source": "<a href="http://twitter.com" rel="nofollow">Tweetie for Mac</a>", "text": "RT @DBAHULK: HULK LAUGH RT @abrams @webtonull: A DBA walks into a NOSQL bar, but turns and leaves because he couldn't find a table", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:05:01 +0000", "from_user": "satolone", "from_user_id": 398507580, "from_user_id_str": "398507580", "from_user_name": "Scott Tolone", "geo": null, "id": 147769217540833280, "id_str": "147769217540833280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1683949662/GlobalBigData_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683949662/GlobalBigData_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "NoSQL does not mean no data model needed.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:03:29 +0000", "from_user": "seyhunak", "from_user_id": 21591510, "from_user_id_str": "21591510", "from_user_name": "Seyhun AKY\\u00DCREK", "geo": null, "id": 147768830071013380, "id_str": "147768830071013377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1437612555/amatorka_big_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1437612555/amatorka_big_normal.jpg", "source": "<a href="http://plusbounce.com/" rel="nofollow">PlusBounce</a>", "text": "Scaling the Web: Databases & NoSQL #nosql https://t.co/FLxup0c2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:55:32 +0000", "from_user": "devseo", "from_user_id": 37402072, "from_user_id_str": "37402072", "from_user_name": "Alex Hall", "geo": +{"coordinates": [54.0633,-2.8842], "type": "Point"}, "id": 147766832567296000, "id_str": "147766832567296000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/634743139/d-logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/634743139/d-logo_normal.jpg", "source": "<a href="http://www.tweetywall.com" rel="nofollow">Tweetywall</a>", "text": "#programming Working with ScaleBase and NOSQL - http://t.co/bmsGmA9g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:51:47 +0000", "from_user": "zoraslapen", "from_user_id": 44078594, "from_user_id_str": "44078594", "from_user_name": "Saroj Maharjan", "geo": null, "id": 147765888785985540, "id_str": "147765888785985537", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1419822259/3_small_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1419822259/3_small_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @millisami: I liked a @YouTube video http://t.co/KYf3ngpn Scaling the Web: Databases & NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:43:04 +0000", "from_user": "turtle2005", "from_user_id": 54184073, "from_user_id_str": "54184073", "from_user_name": "Hitoshi Kamezaki", "geo": null, "id": 147763694049296400, "id_str": "147763694049296386", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/351040572/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/351040572/twitterProfilePhoto_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "I think facebook gives up transfering from mysql to NoSQL on their system. http://t.co/DKH1EFNf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:37:50 +0000", "from_user": "peterneo", "from_user_id": 14993077, "from_user_id_str": "14993077", "from_user_name": "Peter Nedonosko", "geo": null, "id": 147762374957477900, "id_str": "147762374957477888", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/54994260/itpro1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/54994260/itpro1_normal.png", "source": "<a href="http://choqok.gnufolks.org/" rel="nofollow">Choqok</a>", "text": "Big List of Interesting Programming Books #2011 http://t.co/pksohzBE #java #html5 #amazon #gpu #nosql #android (via @jboner @planetclojure)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:28:19 +0000", "from_user": "ccnmtlDev", "from_user_id": 351868363, "from_user_id_str": "351868363", "from_user_name": "CCNMTL Developers", "geo": null, "id": 147759983172390900, "id_str": "147759983172390913", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1488903267/dev_icon_twitter_grey_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1488903267/dev_icon_twitter_grey_normal.jpg", "source": "<a href="http://ccnmtl.columbia.edu/compiled" rel="nofollow">ccnmtl-irc</a>", "text": "http://t.co/Jcs99iIC: Building Legal Language Explorer: Interactivity and drill-down, noSQL and SQL /via @thraxil", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:12:22 +0000", "from_user": "nicotourne", "from_user_id": 17189365, "from_user_id_str": "17189365", "from_user_name": "Nicol\\u00E1s Tourn\\u00E9", "geo": null, "id": 147755968715948030, "id_str": "147755968715948032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/702329176/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/702329176/profile_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "A #NoSQL joke: \"How to write a CV\" http://t.co/ztxNKiVq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:08:38 +0000", "from_user": "rugi", "from_user_id": 6753802, "from_user_id_str": "6753802", "from_user_name": "Isaac Ruiz Guerra", "geo": null, "id": 147755027807735800, "id_str": "147755027807735808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1389880431/15722_417097019282_539559282_5248112_3688748_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1389880431/15722_417097019282_539559282_5248112_3688748_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "I suggested: ElasticSearch out of the box as NoSQL database http://t.co/J6EMhhvR via @Jelastic", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:07:33 +0000", "from_user": "JLeeGhost", "from_user_id": 306117941, "from_user_id_str": "306117941", "from_user_name": "Johnneylee Rollins", "geo": null, "id": 147754756528537600, "id_str": "147754756528537600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1370810672/SpaceGhost_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1370810672/SpaceGhost_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lgarulli: How to plug a new command in #OrientDB console? https://t.co/Dy5KjvVu #graphdb #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:06:24 +0000", "from_user": "lgarulli", "from_user_id": 74181214, "from_user_id_str": "74181214", "from_user_name": "Luca Garulli", "geo": null, "id": 147754466744078340, "id_str": "147754466744078338", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1142225678/webcam_luca34_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1142225678/webcam_luca34_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "How to plug a new command in #OrientDB console? https://t.co/Dy5KjvVu #graphdb #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:01:05 +0000", "from_user": "rahulgchaudhary", "from_user_id": 93134027, "from_user_id_str": "93134027", "from_user_name": "Rahul Chaudhary", "geo": null, "id": 147753126957559800, "id_str": "147753126957559809", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1148856768/rahulchaudhary_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1148856768/rahulchaudhary_normal.jpg", "source": "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", "text": "Cypher - A view from a recovering SQL DBA via @nosqlweekly http://t.co/UbLhgsH8 #neo4j #nosql #cypher #sql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:39:31 +0000", "from_user": "TopDevTweets", "from_user_id": 194520782, "from_user_id_str": "194520782", "from_user_name": "TopDevTweets", "geo": null, "id": 147747700312506370, "id_str": "147747700312506368", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @OracleDatabase: Podcast: Introducing Oracle #NoSQL Database http://t.co/JuzGKz8h", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:36:58 +0000", "from_user": "BlkMarketEmpire", "from_user_id": 234149479, "from_user_id_str": "234149479", "from_user_name": "D-B\\u2200NKZ", "geo": null, "id": 147747059812925440, "id_str": "147747059812925441", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691763291/Thinking2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691763291/Thinking2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @OracleDatabase: Podcast: Introducing Oracle #NoSQL Database http://t.co/JuzGKz8h", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:35:47 +0000", "from_user": "andybuffington", "from_user_id": 186725149, "from_user_id_str": "186725149", "from_user_name": "Andy Buffington", "geo": null, "id": 147746762508075000, "id_str": "147746762508075008", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1503882196/1a4ad21_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1503882196/1a4ad21_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @OracleDatabase: Podcast: Introducing Oracle #NoSQL Database http://t.co/JuzGKz8h", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:35:03 +0000", "from_user": "OracleDatabase", "from_user_id": 21010243, "from_user_id_str": "21010243", "from_user_name": "Oracle Database", "geo": null, "id": 147746577233084400, "id_str": "147746577233084417", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/290915888/twitter_Database_avatar_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/290915888/twitter_Database_avatar_normal.gif", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Podcast: Introducing Oracle #NoSQL Database http://t.co/JuzGKz8h", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:24:20 +0000", "from_user": "csrakowski", "from_user_id": 225140009, "from_user_id_str": "225140009", "from_user_name": "Christiaan Rakowski", "geo": null, "id": 147743881247723520, "id_str": "147743881247723521", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1288157841/Headshot_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1288157841/Headshot_normal.png", "source": "<a href="http://twitter.com" rel="nofollow">Tweetie for Mac</a>", "text": "RT @DBAHULK: HULK LAUGH RT @abrams @webtonull: A DBA walks into a NOSQL bar, but turns and leaves because he couldn't find a table", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:07:00 +0000", "from_user": "kekline", "from_user_id": 22445912, "from_user_id_str": "22445912", "from_user_name": "Kevin Kline", "geo": null, "id": 147739518135574530, "id_str": "147739518135574529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/388076294/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/388076294/twitterProfilePhoto_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Dataversity: Check out our Dec #DATAVERSITY Digest: http://t.co/716JLSZ9 #mdm #nosql #bigdata #datagovernance #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:01:30 +0000", "from_user": "kodfejtok", "from_user_id": 425065563, "from_user_id_str": "425065563", "from_user_name": "K\\u00F3dfejt\\u0151k", "geo": null, "id": 147738131997802500, "id_str": "147738131997802496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1666022815/kodfejtok_square_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666022815/kodfejtok_square_logo_normal.jpg", "source": "<a href="http://www.ajaymatharu.com/" rel="nofollow">Tweet Old Post</a>", "text": "H\\u00EDrek,... http://t.co/tq1XBfp9 #adatb\\u00E1zis #android #bugs #gnome #hack #hib\\u00E1k #ice_cream_sandwich #instagram #lockpick #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:17:01 +0000", "from_user": "yaymixer", "from_user_id": 263546351, "from_user_id_str": "263546351", "from_user_name": "yaymixer", "geo": null, "id": 147726940537761800, "id_str": "147726940537761792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1281882448/the_alhambra6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1281882448/the_alhambra6_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "JSR 107, JSR 347, Infinispan, NoSQL, Hot Rod, Memcached, CDI and Beyond - http://t.co/U8fIlHBO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:03:55 +0000", "from_user": "riakhandbook", "from_user_id": 430739221, "from_user_id_str": "430739221", "from_user_name": "Riak Handbook", "geo": null, "id": 147723642413912060, "id_str": "147723642413912064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679701261/profile_riak_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679701261/profile_riak_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @roidrage: Added an errata file for @riakhandbook to the feedback repository: http://t.co/knynheER Thanks a lot for reporting these!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:03:46 +0000", "from_user": "roidrage", "from_user_id": 14658472, "from_user_id_str": "14658472", "from_user_name": "Mathias Meyer", "geo": null, "id": 147723606045102080, "id_str": "147723606045102080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1505416860/5653514417_94976350b9_m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505416860/5653514417_94976350b9_m_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Added an errata file for @riakhandbook to the feedback repository: http://t.co/knynheER Thanks a lot for reporting these!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:02:14 +0000", "from_user": "Dataversity", "from_user_id": 260472941, "from_user_id_str": "260472941", "from_user_name": "Dataversity", "geo": null, "id": 147723217765797900, "id_str": "147723217765797888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1286039423/DataversityIcon_300px_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1286039423/DataversityIcon_300px_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "In case you missed it, check out our Dec #DATAVERSITY Digest: http://t.co/lkrr0Jr2 #mdm #nosql #bigdata #datagovernance", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:47:50 +0000", "from_user": "millisami", "from_user_id": 4904081, "from_user_id_str": "4904081", "from_user_name": "Sachin Sagar Rai", "geo": null, "id": 147719596311453700, "id_str": "147719596311453696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/21502492/the-shot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/21502492/the-shot_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube video http://t.co/KYf3ngpn Scaling the Web: Databases & NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:41:13 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 147717929486659600, "id_str": "147717929486659587", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "RT @markwigmans: 8 Most Interesting Companies for #Hadoop's Future http://t.co/q0DntXhL #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:40:45 +0000", "from_user": "wear_here", "from_user_id": 17025934, "from_user_id_str": "17025934", "from_user_name": "Jeffrey Wear", "geo": null, "id": 147717812364910600, "id_str": "147717812364910594", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/790201937/jeff_scans_the_sepia_horizon__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/790201937/jeff_scans_the_sepia_horizon__normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @schwa: I know NoSQL is suffering lash back lately but I'd actually really like to see a schema-less CoreData-ish implementation.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:40:14 +0000", "from_user": "stevesandersonf", "from_user_id": 194307897, "from_user_id_str": "194307897", "from_user_name": "steve sanderson", "geo": null, "id": 147717679954935800, "id_str": "147717679954935809", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Building Legal Language Explorer: Interactivity and drill-down, noSQL and SQL http://t.co/dWgbS3jf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:34:32 +0000", "from_user": "YCHackerNews", "from_user_id": 90440720, "from_user_id_str": "90440720", "from_user_name": "YC Hacker News", "geo": null, "id": 147716246786412540, "id_str": "147716246786412545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/529679802/y_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/529679802/y_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Building Legal Language Explorer: Interactivity and drill-down, noSQL and SQL: Comments:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:32:56 +0000", "from_user": "MarlonRibunal", "from_user_id": 14358801, "from_user_id_str": "14358801", "from_user_name": "Marlon Ribunal", "geo": null, "id": 147715842770087940, "id_str": "147715842770087936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1254931977/47203_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1254931977/47203_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"Building Legal Language Explorer: Interactivity and drill-down, noSQL and SQL\" http://t.co/WmQa59kP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:30:08 +0000", "from_user": "HNTweets", "from_user_id": 116276133, "from_user_id_str": "116276133", "from_user_name": "Hacker News", "geo": null, "id": 147715141952213000, "id_str": "147715141952212992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1369520630/HNTweets_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1369520630/HNTweets_normal.png", "source": "<a href="http://github.com/d4nt/HNTweets" rel="nofollow">HNTweets Bot</a>", "text": "Building Legal Language Explorer: Interactivity and drill-down, noSQL and SQL: http://t.co/14cAS2ZD Comments: http://t.co/3T3NkOU5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:26:11 +0000", "from_user": "hnfirehose", "from_user_id": 213117318, "from_user_id_str": "213117318", "from_user_name": "HN Firehose", "geo": null, "id": 147714145138130940, "id_str": "147714145138130944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Building Legal Language Explorer: Interactivity and drill-down, noSQL and SQL: http://t.co/ckLaBZeg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:23:37 +0000", "from_user": "newsery9", "from_user_id": 245372623, "from_user_id_str": "245372623", "from_user_name": "newsery9", "geo": null, "id": 147713501757054980, "id_str": "147713501757054976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://www.twitter.com" rel="nofollow">RSSToHere</a>", "text": "Building Legal Language Explorer: Interactivity and drill-down, noSQL and SQL - http://t.co/OQeexaeI - [Hacker News FH]", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:09:08 +0000", "from_user": "achilued", "from_user_id": 150947743, "from_user_id_str": "150947743", "from_user_name": "Eduardo Aceituno", "geo": null, "id": 147709856084795400, "id_str": "147709856084795392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/987139612/achied_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/987139612/achied_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "Availability and Operational Stability of NoSQL | CUBRID Blog http://t.co/E4Xkw8ww", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:05:23 +0000", "from_user": "staffingpower", "from_user_id": 20834614, "from_user_id_str": "20834614", "from_user_name": "staffingpower", "geo": null, "id": 147708909703016450, "id_str": "147708909703016448", "iso_language_code": "eo", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/577138962/SP_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/577138962/SP_normal.png", "source": "<a href="http://staffingpower.com" rel="nofollow">Staffingpower</a>", "text": "JobG8: Senior JAVA/Hibernate/Spring Developer NoSQL (Atlanta, Georgia) MISSING_ARG_APIKEY #Jobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:58:03 +0000", "from_user": "markwigmans", "from_user_id": 7527532, "from_user_id_str": "7527532", "from_user_name": "Mark Wigmans", "geo": null, "id": 147707065085853700, "id_str": "147707065085853696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/837273831/MWI_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/837273831/MWI_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "8 Most Interesting Companies for #Hadoop's Future http://t.co/q0DntXhL #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:51:01 +0000", "from_user": "VoltDB", "from_user_id": 97716631, "from_user_id_str": "97716631", "from_user_name": "VoltDB", "geo": null, "id": 147705294359760900, "id_str": "147705294359760896", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1389280256/volt_db_logo_small_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1389280256/volt_db_logo_small_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "VoltDB for Capital Markets apps: http://t.co/emycuQx1 #sql #nosql #newsql #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:50:52 +0000", "from_user": "mujeeb_rahman", "from_user_id": 38413770, "from_user_id_str": "38413770", "from_user_name": "Mujeeb Rahman", "geo": null, "id": 147705257114341380, "id_str": "147705257114341377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1200605606/41391_1139906319_8108_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1200605606/41391_1139906319_8108_q_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Making slides for presenting #NoSQL @cabotsolutions tomorrow. not prepared well yet Errr....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:49:35 +0000", "from_user": "nuvolabase", "from_user_id": 249169811, "from_user_id_str": "249169811", "from_user_name": "nuvolabase", "geo": null, "id": 147704937349001200, "id_str": "147704937349001217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1240280657/nuvolabase-mini_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1240280657/nuvolabase-mini_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lgarulli: #OrientDB 1.0rc8-SNAPSHOT: 300% faster importing IMDB db than 1.0rc7. New relationships mgmt scales up much better! #graphdb #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:49:08 +0000", "from_user": "afocareta", "from_user_id": 231376137, "from_user_id_str": "231376137", "from_user_name": "Alfonso Focareta", "geo": null, "id": 147704823402336260, "id_str": "147704823402336257", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1200708967/0fcd6eb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1200708967/0fcd6eb_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lgarulli: #OrientDB 1.0rc8-SNAPSHOT: 300% faster importing IMDB db than 1.0rc7. New relationships mgmt scales up much better! #graphdb #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:47:30 +0000", "from_user": "dekt", "from_user_id": 16493708, "from_user_id_str": "16493708", "from_user_name": "dekt", "geo": null, "id": 147704413056811000, "id_str": "147704413056811008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1032739585/dekel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1032739585/dekel_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "stating my Friday with a nice read on #NoSQL - #mongodb vs #hbase vs #cassandra http://t.co/KzR7gxdI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:43:11 +0000", "from_user": "edward_ribeiro", "from_user_id": 12951512, "from_user_id_str": "12951512", "from_user_name": "Edward Ribeiro", "geo": null, "id": 147703324702027780, "id_str": "147703324702027776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/314665512/rasta_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/314665512/rasta_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @adinelchirita: \"NewSQL vs. NoSQL for New OLTP\", by Michael Stonebraker, MIT http://t.co/g8lXcAQr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:35:33 +0000", "from_user": "JLeeGhost", "from_user_id": 306117941, "from_user_id_str": "306117941", "from_user_name": "Johnneylee Rollins", "geo": null, "id": 147701403803074560, "id_str": "147701403803074560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1370810672/SpaceGhost_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1370810672/SpaceGhost_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lgarulli: #OrientDB 1.0rc8-SNAPSHOT: 300% faster importing IMDB db than 1.0rc7. New relationships mgmt scales up much better! #graphdb #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:32:08 +0000", "from_user": "ing33k", "from_user_id": 23810014, "from_user_id_str": "23810014", "from_user_name": "Vamsi Krishna", "geo": null, "id": 147700542611795970, "id_str": "147700542611795968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1579601165/cloud_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1579601165/cloud_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "I suggested: ElasticSearch out of the box as NoSQL database http://t.co/Yi2CQP7C via @Jelastic", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:27:19 +0000", "from_user": "Grandite", "from_user_id": 17717256, "from_user_id_str": "17717256", "from_user_name": "Grandite", "geo": null, "id": 147699331477151740, "id_str": "147699331477151745", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1373004005/G_2400dpi_at_red-tr_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1373004005/G_2400dpi_at_red-tr_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @AxelTroike: SQL vs. NoSQL > RT @pbokelly: [Why Facebook Uses MySQL for Timeline - .. [Mashable]: Still waiting to see a NoSQL\\u2026 http://t.co/aI1QqHYj ]", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:27:18 +0000", "from_user": "SILVERRUN_Tools", "from_user_id": 80282261, "from_user_id_str": "80282261", "from_user_name": "SILVERRUN Modeling", "geo": null, "id": 147699326368493570, "id_str": "147699326368493568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1487160482/sr-mid-plus-tr-2_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1487160482/sr-mid-plus-tr-2_normal.PNG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @AxelTroike: SQL vs. NoSQL > RT @pbokelly: [Why Facebook Uses MySQL for Timeline - .. [Mashable]: Still waiting to see a NoSQL\\u2026 http://t.co/aI1QqHYj ]", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:12:20 +0000", "from_user": "Rbaassi", "from_user_id": 308473256, "from_user_id_str": "308473256", "from_user_name": "Renata Bassi", "geo": null, "id": 147695560260976640, "id_str": "147695560260976640", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1607507985/foto_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607507985/foto_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @caelum: Novo curso Design Patterns online, NoSQL e Cloud no Blog da Caelum http://t.co/fIK8nlZd #newsletter #caelum", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:11:50 +0000", "from_user": "chadgross80", "from_user_id": 270602185, "from_user_id_str": "270602185", "from_user_name": "Chad Gross", "geo": null, "id": 147695433920159740, "id_str": "147695433920159744", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1284052825/untitled_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1284052825/untitled_normal.JPG", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "NoSQL vs NewSQL? http://t.co/gJ7CtHtl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:11:09 +0000", "from_user": "takahiro0220", "from_user_id": 70334370, "from_user_id_str": "70334370", "from_user_name": "takahiro0220", "geo": null, "id": 147695262528311300, "id_str": "147695262528311296", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/521061716/Forest_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/521061716/Forest_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\\u3053\\u308C\\u304C\\u3001\\u3069\\u3046\\u3044\\u3046\\u610F\\u5473\\u306A\\u306E\\u304B\\u304C\\u76F8\\u5909\\u308F\\u3089\\u305A\\u6C17\\u306B\\u306A\\u308B\\u30FB\\u30FB\\u30FB\\n\\nNoSQL\\u306ECouchbase\\u3068NTT\\u30C9\\u30B3\\u30E2\\u304C\\u6226\\u7565\\u7684\\u63D0\\u643A\\u3002NTT\\u30C9\\u30B3\\u30E2\\u306E\\u6B21\\u671F\\u30B5\\u30FC\\u30D3\\u30B9\\u306B\\u63A1\\u7528\\u691C\\u8A0E\\u304B\\uFF1F \\uFF0D Publickey http://t.co/vfAyeTQ8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:07:09 +0000", "from_user": "agencee", "from_user_id": 138325221, "from_user_id_str": "138325221", "from_user_name": "Agence-e", "geo": null, "id": 147694256285433860, "id_str": "147694256285433856", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/859540008/ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/859540008/ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@agencee recherche un D\\u00E9veloppeur PHP MVC NoSQL Mongo DB \\u2013 emarketing - H/F", "to_user": "agencee", "to_user_id": 138325221, "to_user_id_str": "138325221", "to_user_name": "Agence-e"}, +{"created_at": "Fri, 16 Dec 2011 15:05:37 +0000", "from_user": "dnugffm", "from_user_id": 241163740, "from_user_id_str": "241163740", "from_user_name": ".NET UG Frankfurt", "geo": null, "id": 147693872363995140, "id_str": "147693872363995136", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1222069231/dnugffm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1222069231/dnugffm_normal.jpg", "source": "<a href="http://www.metrotwit.com/" rel="nofollow">MetroTwit</a>", "text": "RT @JohannesHoppe: http://t.co/AgWbnkax - [GERMAN] NoSQL aus der Praxis \\u2013 Slides und Download #NoSQL #MongoDB #RavenDB @dnugffm @sqlpass_de", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:50:35 +0000", "from_user": "fnuabhishek", "from_user_id": 322040749, "from_user_id_str": "322040749", "from_user_name": "Abhishek", "geo": null, "id": 147690087520542720, "id_str": "147690087520542720", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1545389767/random_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545389767/random_normal.png", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "NoSQL Benchmarking http://t.co/6GAnfNZD via @zite #in", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:48:34 +0000", "from_user": "webeneer", "from_user_id": 88987030, "from_user_id_str": "88987030", "from_user_name": "c benson", "geo": null, "id": 147689581435830270, "id_str": "147689581435830272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1432854928/nyc2CB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1432854928/nyc2CB_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Diff between broad vs. narrow = data science vs. BI. #BigData #DevOps #BusinessIntelligence #DataQuality #noSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:40:29 +0000", "from_user": "jld", "from_user_id": 14125970, "from_user_id_str": "14125970", "from_user_name": "Jos\\u00E9 Devezas", "geo": null, "id": 147687543951994880, "id_str": "147687543951994880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1486128519/Avatar2011-Small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1486128519/Avatar2011-Small_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lgarulli: #OrientDB 1.0rc8-SNAPSHOT: 300% faster importing IMDB db than 1.0rc7. New relationships mgmt scales up much better! #graphdb #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:38:04 +0000", "from_user": "MaDaPHaKa", "from_user_id": 262796183, "from_user_id_str": "262796183", "from_user_name": "Luca Molino", "geo": null, "id": 147686938776846340, "id_str": "147686938776846336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1266029343/me_sp-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266029343/me_sp-2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lgarulli: #OrientDB 1.0rc8-SNAPSHOT: 300% faster importing IMDB db than 1.0rc7. New relationships mgmt scales up much better! #graphdb #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:37:12 +0000", "from_user": "_tamanm", "from_user_id": 259801174, "from_user_id_str": "259801174", "from_user_name": "Mohamed Taman", "geo": null, "id": 147686720073240580, "id_str": "147686720073240578", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1260412681/MT12-07-2010_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1260412681/MT12-07-2010_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "Oracle NoSQL Database is here! http://t.co/ZoAYaUsi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:32:02 +0000", "from_user": "tsubame959", "from_user_id": 32947843, "from_user_id_str": "32947843", "from_user_name": "Hokuto", "geo": null, "id": 147685419813834750, "id_str": "147685419813834752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lgarulli: #OrientDB 1.0rc8-SNAPSHOT: 300% faster importing IMDB db than 1.0rc7. New relationships mgmt scales up much better! #graphdb #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:30:57 +0000", "from_user": "the_mindflayer", "from_user_id": 25477483, "from_user_id_str": "25477483", "from_user_name": "Giorgio Salluzzo", "geo": null, "id": 147685146655596540, "id_str": "147685146655596544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/612245713/mindy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/612245713/mindy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lgarulli: #OrientDB 1.0rc8-SNAPSHOT: 300% faster importing IMDB db than 1.0rc7. New relationships mgmt scales up much better! #graphdb #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:30:28 +0000", "from_user": "kampees", "from_user_id": 73797545, "from_user_id_str": "73797545", "from_user_name": "Kampee", "geo": null, "id": 147685023414370300, "id_str": "147685023414370304", "iso_language_code": "th", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700631203/k1_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700631203/k1_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Upgrade firewall kernel, postfix+mysql+dovecot+spamassassin \\u0E41\\u0E25\\u0E30\\u0E40\\u0E14\\u0E35\\u0E4B\\u0E22\\u0E27\\u0E08\\u0E30\\u0E25\\u0E07\\u0E42\\u0E1B\\u0E23\\u0E41\\u0E01\\u0E23\\u0E21 NoSQL Server \\u0E14\\u0E39\\u0E2D\\u0E22\\u0E32\\u0E01\\u0E23\\u0E39\\u0E49 \\u0E2D\\u0E22\\u0E32\\u0E01\\u0E25\\u0E2D\\u0E07 \\u0E2D\\u0E22\\u0E32\\u0E01\\u0E40\\u0E2B\\u0E47\\u0E19 \\u0E40\\u0E02\\u0E32\\u0E27\\u0E48\\u0E32\\u0E14\\u0E35\\u0E01\\u0E31\\u0E19\\u0E19\\u0E31\\u0E01\\u0E2B\\u0E19\\u0E32", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:29:59 +0000", "from_user": "lgarulli", "from_user_id": 74181214, "from_user_id_str": "74181214", "from_user_name": "Luca Garulli", "geo": null, "id": 147684905155952640, "id_str": "147684905155952641", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1142225678/webcam_luca34_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1142225678/webcam_luca34_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#OrientDB 1.0rc8-SNAPSHOT: 300% faster importing IMDB db than 1.0rc7. New relationships mgmt scales up much better! #graphdb #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:29:40 +0000", "from_user": "AxelTroike", "from_user_id": 287275135, "from_user_id_str": "287275135", "from_user_name": "Axel Troike", "geo": null, "id": 147684823878746100, "id_str": "147684823878746112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1323773278/at2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1323773278/at2_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "SQL vs. NoSQL > RT @pbokelly: [Why Facebook Uses MySQL for Timeline - .. [Mashable]: Still waiting to see a NoSQL\\u2026 http://t.co/aI1QqHYj ]", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:24:23 +0000", "from_user": "Goldyvr", "from_user_id": 307527220, "from_user_id_str": "307527220", "from_user_name": "Suk Virdi", "geo": null, "id": 147683492900245500, "id_str": "147683492900245505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1673145437/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673145437/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "\\u201C@Oracle: View video and learn how #Oracle #NoSQL Database can help you meet your #BigData challenges: http://t.co/XtsNDsjK\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Fri, 16 Dec 2011 14:05:54 +0000", "from_user": "felixaverlant", "from_user_id": 26585636, "from_user_id_str": "26585636", "from_user_name": "F\\u00E9lix Averlant", "geo": null, "id": 147678843602346000, "id_str": "147678843602345987", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1155182036/1f31ece4-b0be-4818-80df-6e66bfadd721_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1155182036/1f31ece4-b0be-4818-80df-6e66bfadd721_normal.png", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "http://t.co/cfw2A7zi Hadoop and Cassandra in the Top 10 Most Important Open Source Projects of 2011", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:01:53 +0000", "from_user": "agajorte", "from_user_id": 29109476, "from_user_id_str": "29109476", "from_user_name": "Rodrigo HJORT", "geo": null, "id": 147677833400033280, "id_str": "147677833400033280", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1102473168/rodrigo-defense-303_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1102473168/rodrigo-defense-303_normal.jpg", "source": "<a href="http://splitweet.com" rel="nofollow">Splitweet</a>", "text": "Minha participa\\u00E7\\u00E3o pelo @SERPRO na \"Semana da Qualidade e Seguran\\u00E7a da Informa\\u00E7\\u00E3o - 2011\" da #PRODAM http://t.co/ADwLmn34 #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:32:11 +0000", "from_user": "renatoelias", "from_user_id": 12185172, "from_user_id_str": "12185172", "from_user_name": "Renato Elias", "geo": null, "id": 147670359062224900, "id_str": "147670359062224896", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1139353242/4142086130_1808405773_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1139353242/4142086130_1808405773_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @guilhermecaelum: RT @emguerra: Na verdade leitura obrigat\\u00F3ria para quem quer entender NoSQL! RT @pedrocavalero http://t.co/AYJDuQRf leitura recomendada!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:31:35 +0000", "from_user": "paulociecomp", "from_user_id": 58767887, "from_user_id_str": "58767887", "from_user_name": "Paulo Moura", "geo": null, "id": 147670207840796670, "id_str": "147670207840796673", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701286859/eu2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701286859/eu2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @guilhermecaelum: RT @emguerra: Na verdade leitura obrigat\\u00F3ria para quem quer entender NoSQL! RT @pedrocavalero http://t.co/AYJDuQRf leitura recomendada!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:31:23 +0000", "from_user": "NazaninSaadati", "from_user_id": 335330871, "from_user_id_str": "335330871", "from_user_name": "Nazanin Saadati", "geo": null, "id": 147670155957243900, "id_str": "147670155957243904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1442443889/264652_102083649890543_100002667245097_8053_2573047_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1442443889/264652_102083649890543_100002667245097_8053_2573047_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @D_E_Schneider: why was the software developer sad when he finished the 7th harry potter book? There was #NoSQL. #Badtechjokes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:30:06 +0000", "from_user": "guilhermecaelum", "from_user_id": 23954891, "from_user_id_str": "23954891", "from_user_name": "Guilherme Silveira", "geo": null, "id": 147669833260072960, "id_str": "147669833260072960", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/295990089/eu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/295990089/eu_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @emguerra: Na verdade leitura obrigat\\u00F3ria para quem quer entender NoSQL! RT @pedrocavalero http://t.co/AYJDuQRf leitura recomendada!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:30:03 +0000", "from_user": "D_E_Schneider", "from_user_id": 299723281, "from_user_id_str": "299723281", "from_user_name": "David Schneider", "geo": null, "id": 147669822396825600, "id_str": "147669822396825600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1358102917/225686_102692563155398_100002439641162_20642_5202945_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1358102917/225686_102692563155398_100002439641162_20642_5202945_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "why was the software developer sad when he finished the 7th harry potter book? There was #NoSQL. #Badtechjokes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:25:55 +0000", "from_user": "manuel_sejourne", "from_user_id": 110764316, "from_user_id_str": "110764316", "from_user_name": "Sejourne", "geo": null, "id": 147668780116492300, "id_str": "147668780116492288", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1151022010/Capture_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1151022010/Capture_normal.PNG", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @ltoinel: Cluster BDD vs Cache applicatif r\\u00E9parti vs NoSQL http://t.co/WV49p5oV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:17:30 +0000", "from_user": "rodolphoc", "from_user_id": 48720919, "from_user_id_str": "48720919", "from_user_name": "Rodolpho Carvalho", "geo": null, "id": 147666663435812860, "id_str": "147666663435812864", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/419180046/Video_Snapshot-1_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/419180046/Video_Snapshot-1_normal.jpeg", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "Especialista em NOSQL http://t.co/JVuHfIzf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:09:10 +0000", "from_user": "gedejong", "from_user_id": 24981669, "from_user_id_str": "24981669", "from_user_name": "Edwin de Jong", "geo": null, "id": 147664564920659970, "id_str": "147664564920659968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696595935/gravatar_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696595935/gravatar_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "#fascinating new #db technology: #nuodb. I wonder if it will take off and prove to be an ACID contender with #nosql (http://t.co/lMfm8e8o)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:46:22 +0000", "from_user": "TopDevTweets", "from_user_id": 194520782, "from_user_id_str": "194520782", "from_user_name": "TopDevTweets", "geo": null, "id": 147658829285425150, "id_str": "147658829285425152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"Building a Location-Based Web App w/ MongoDB\" http://t.co/xINEkBRH #MongoDB #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:42:42 +0000", "from_user": "somkiat", "from_user_id": 14053735, "from_user_id_str": "14053735", "from_user_name": "UP1", "geo": null, "id": 147657903967445000, "id_str": "147657903967444992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/925551910/4db95ccd-33db-4d03-be01-292013d5abdb_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/925551910/4db95ccd-33db-4d03-be01-292013d5abdb_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"Building a Location-Based Web App w/ MongoDB\" http://t.co/xINEkBRH #MongoDB #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:40:26 +0000", "from_user": "DZone", "from_user_id": 14782935, "from_user_id_str": "14782935", "from_user_name": "DZone", "geo": null, "id": 147657333407883260, "id_str": "147657333407883264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/258714549/dzone-square-256_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/258714549/dzone-square-256_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\"Building a Location-Based Web App w/ MongoDB\" http://t.co/xINEkBRH #MongoDB #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:03:50 +0000", "from_user": "bluedavy", "from_user_id": 15158779, "from_user_id_str": "15158779", "from_user_name": "bluedavy", "geo": null, "id": 147648124234629120, "id_str": "147648124234629120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1399283375/twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1399283375/twitter_normal.png", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "RT @natishalom: #NoSQL Benchmarking http://t.co/yBZqiCsA <- Excellent read #cassandra #mongodb #hbase", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:00:49 +0000", "from_user": "epiraces", "from_user_id": 11723252, "from_user_id_str": "11723252", "from_user_name": "epiraces", "geo": null, "id": 147647364373544960, "id_str": "147647364373544961", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/215196191/ScreenShot_7_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/215196191/ScreenShot_7_normal.png", "source": "<a href="http://www.socialflow.com" rel="nofollow">SocialFlow</a>", "text": "I have been working with #Varnish and #Drupal, they are awesome together. Mh, wonder if there is any way to use NoSql? http://t.co/HrBXAzM8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:56:55 +0000", "from_user": "xmlprague", "from_user_id": 15942706, "from_user_id_str": "15942706", "from_user_name": "xmlprague", "geo": null, "id": 147646381698457600, "id_str": "147646381698457600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/76985671/favicon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/76985671/favicon_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @28msec: It's that time of the year... http://t.co/JZKlgcXG #xmlprague #xquery #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:54:16 +0000", "from_user": "pbokelly", "from_user_id": 26058258, "from_user_id_str": "26058258", "from_user_name": "Peter O'Kelly", "geo": null, "id": 147645717249396740, "id_str": "147645717249396736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/349219461/petero_kelly_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/349219461/petero_kelly_pic_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Why Facebook Uses MySQL for Timeline - Yahoo! News [Mashable]: Still waiting to see a NoSQL\\u2026 http://t.co/dLG8iDxQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:50:06 +0000", "from_user": "grtjn", "from_user_id": 197173319, "from_user_id_str": "197173319", "from_user_name": "Geert", "geo": null, "id": 147644667373170700, "id_str": "147644667373170689", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1478737900/IMG_7433___-_Copy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1478737900/IMG_7433___-_Copy_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @28msec: It's that time of the year... http://t.co/JZKlgcXG #xmlprague #xquery #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:48:25 +0000", "from_user": "samuelrettore", "from_user_id": 57025296, "from_user_id_str": "57025296", "from_user_name": "Samuel Rettore", "geo": null, "id": 147644245237440500, "id_str": "147644245237440512", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/314849857/121607144347-00_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/314849857/121607144347-00_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Para quem esta acostumado com \"YesSQL\" mudar para NoSQL da um n\\u00F3 na muringa, mas \\u00E9 bem interessante.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:35:33 +0000", "from_user": "ochoa_marcelo", "from_user_id": 414166840, "from_user_id_str": "414166840", "from_user_name": "Marcelo F. Ochoa", "geo": null, "id": 147641004101615600, "id_str": "147641004101615616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1642383832/profileOchoa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642383832/profileOchoa_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Understanding a Big Data Implementation and its Components\\nhttp://t.co/UkLQMc2Y\\ngreat introductory post on using #Oracle and #NoSQL #in", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:23:48 +0000", "from_user": "dalvac", "from_user_id": 49849549, "from_user_id_str": "49849549", "from_user_name": "Diego Alvarez", "geo": null, "id": 147638050636300300, "id_str": "147638050636300288", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/418532052/diego_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/418532052/diego_normal.JPG", "source": "<a href="http://www.tweets60.com/" rel="nofollow">Tweets60dm</a>", "text": "RT @emguerra: Na verdade leitura obrigat\\u00F3ria para quem quer entender NoSQL! RT @pedrocavalero http://t.co/Ya0cKpnk leitura recomendada!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:22:26 +0000", "from_user": "regbac", "from_user_id": 25979479, "from_user_id_str": "25979479", "from_user_name": "R\\u00E9gis Baccaro", "geo": null, "id": 147637703859638270, "id_str": "147637703859638272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1277986366/n812574173_314152_3729_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1277986366/n812574173_314152_3729_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "SQL or NOSQL that is not the question....rather Not Only SQL. #hadoop #solidq http://t.co/7dhQ8TeI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:18:21 +0000", "from_user": "edouarda14", "from_user_id": 289509414, "from_user_id_str": "289509414", "from_user_name": "Edouard A.", "geo": +{"coordinates": [48.8637,2.35], "type": "Point"}, "id": 147636677890949120, "id_str": "147636677890949121", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1330722921/snake_charmer_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1330722921/snake_charmer_normal.png", "source": "<a href="http://www.twitter.com" rel="nofollow">Twitter for Windows Phone</a>", "text": "1.2 GiB/s that's the speed we achieved with our software. #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:08:31 +0000", "from_user": "adalbertozanata", "from_user_id": 16263932, "from_user_id_str": "16263932", "from_user_name": "Adalberto Zanata", "geo": null, "id": 147634203096383500, "id_str": "147634203096383489", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/278967121/nautilus_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/278967121/nautilus_normal.jpg", "source": "<a href="http://www.tweets60.com/" rel="nofollow">Tweets60dm</a>", "text": "RT @emguerra: Na verdade leitura obrigat\\u00F3ria para quem quer entender NoSQL! RT @pedrocavalero http://t.co/Ya0cKpnk leitura recomendada!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:03:39 +0000", "from_user": "vmische", "from_user_id": 140552229, "from_user_id_str": "140552229", "from_user_name": "Volker Mische", "geo": null, "id": 147632978401574900, "id_str": "147632978401574913", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/886369436/favicon007_73x73_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/886369436/favicon007_73x73_normal.png", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @couchbase: Just a few days til #CouchConf Israel in Tel Aviv! Still some tickets left - get them now while you can! http://t.co/tR4inCwx #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:59:23 +0000", "from_user": "emguerra", "from_user_id": 78590341, "from_user_id_str": "78590341", "from_user_name": "Eduardo Guerra", "geo": null, "id": 147631905062404100, "id_str": "147631905062404096", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1631348739/avatar_2011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631348739/avatar_2011_normal.jpg", "source": "<a href="http://www.tweets60.com/" rel="nofollow">Tweets60dm</a>", "text": "Na verdade leitura obrigat\\u00F3ria para quem quer entender NoSQL! RT @pedrocavalero http://t.co/Ya0cKpnk leitura recomendada!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:58:48 +0000", "from_user": "aravindajad", "from_user_id": 1169681, "from_user_id_str": "1169681", "from_user_name": "Aravind Ajad", "geo": null, "id": 147631757997510660, "id_str": "147631757997510656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1299520026/avatar_normal.JPEG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1299520026/avatar_normal.JPEG", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @natishalom #NoSQL Benchmarking http://t.co/IJJ4sBqj <- Excellent read #cassandra #mongodb #hbase", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:53:28 +0000", "from_user": "InterSystemsRU", "from_user_id": 105082155, "from_user_id_str": "105082155", "from_user_name": "InterSystems Russia", "geo": null, "id": 147630416541646850, "id_str": "147630416541646848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1230719229/isc-avatar-icon_reasonably_small_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1230719229/isc-avatar-icon_reasonably_small_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @InterSystems: Congratulations to @antoshalee, winner of the@InterSystems 2nd Globals Challenge! - http://t.co/aKuMAeiC - #NoSQL #DBMS #Java #Node.js", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:16:35 +0000", "from_user": "D0uDa", "from_user_id": 92761519, "from_user_id_str": "92761519", "from_user_name": "D0uDa", "geo": null, "id": 147621133468962800, "id_str": "147621133468962816", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/544965367/twitter_bird_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/544965367/twitter_bird_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ZenikaIT: Tout sur les nouveaut\\u00E9s de #grails 2.0 par @mboillod + retour experience : http://t.co/CKukr6dd @ZenikaIT #BlogZenika #nosql #plugin #spring", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:12:10 +0000", "from_user": "jorgeakanieves", "from_user_id": 15956209, "from_user_id_str": "15956209", "from_user_name": "jorgeakanieves", "geo": null, "id": 147620019944169470, "id_str": "147620019944169472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1241403473/27484_795446987_6836_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1241403473/27484_795446987_6836_q_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "another nosql solution: http://t.co/XlLZaRVq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:10:08 +0000", "from_user": "marcos_quesada", "from_user_id": 18081176, "from_user_id_str": "18081176", "from_user_name": "marcos.quesada", "geo": null, "id": 147619509065363460, "id_str": "147619509065363456", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1660518625/foto_perfil_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660518625/foto_perfil_2_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Redis, base de datos NoSQL clave-valor http://t.co/jeehNGHh v\\u00EDa @slideshare", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:01:27 +0000", "from_user": "TopDevTweets", "from_user_id": 194520782, "from_user_id_str": "194520782", "from_user_name": "TopDevTweets", "geo": null, "id": 147617325183541250, "id_str": "147617325183541248", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @emiliotorrens: Nueva version de #MongoMapper para #dotNET, he cambiado el tipo del _id de los documentos de Guid a int http://t.co/fm6UwRR4 #MongoDB #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:57:21 +0000", "from_user": "emiliotorrens", "from_user_id": 21764595, "from_user_id_str": "21764595", "from_user_name": "Emilio Torrens", "geo": null, "id": 147616294789849100, "id_str": "147616294789849088", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1628882941/PerfilTwitter_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628882941/PerfilTwitter_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Nueva version de #MongoMapper para #dotNET, he cambiado el tipo del _id de los documentos de Guid a int http://t.co/fm6UwRR4 #MongoDB #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:56:22 +0000", "from_user": "ShaggyBurton", "from_user_id": 302119425, "from_user_id_str": "302119425", "from_user_name": "Ivan Rubio Heras", "geo": null, "id": 147616045153263600, "id_str": "147616045153263616", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1362276140/174485_1203818896_3984809_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1362276140/174485_1203818896_3984809_q_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Testeando MongoDB una alternativa NoSQL interesante", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:50:22 +0000", "from_user": "BuildaCloud", "from_user_id": 388756611, "from_user_id_str": "388756611", "from_user_name": "BuildaCloud", "geo": null, "id": 147614536831217660, "id_str": "147614536831217664", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1611146315/Fotolia_17583250_S_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611146315/Fotolia_17583250_S_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "NoSQL: Apache Cassandra 101 http://t.co/hBiCHoAy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:48:25 +0000", "from_user": "julienvey", "from_user_id": 44668175, "from_user_id_str": "44668175", "from_user_name": "Julien Vey", "geo": null, "id": 147614045015515140, "id_str": "147614045015515136", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1491457013/moi_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1491457013/moi_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ZenikaIT: Tout sur les nouveaut\\u00E9s de #grails 2.0 par @mboillod + retour experience : http://t.co/CKukr6dd @ZenikaIT #BlogZenika #nosql #plugin #spring", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:45:07 +0000", "from_user": "MySQLBot_en", "from_user_id": 305160384, "from_user_id_str": "305160384", "from_user_name": "MySQLBot_en", "geo": null, "id": 147613212773330940, "id_str": "147613212773330944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1368954854/mysql_100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1368954854/mysql_100_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @jameslafa: #Facebook Uses #MySQL for Timeline because #noSQL was not appropriate for this data organization http://t.co/F2O1KD6l", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:44:02 +0000", "from_user": "wcandillon", "from_user_id": 14435226, "from_user_id_str": "14435226", "from_user_name": "wcandillon", "geo": null, "id": 147612942072946700, "id_str": "147612942072946688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/387152395/wcandillon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/387152395/wcandillon_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @28msec: It's that time of the year... http://t.co/qpVgXTjk #xmlprague #xquery #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:31:02 +0000", "from_user": "jameslafa", "from_user_id": 13583972, "from_user_id_str": "13583972", "from_user_name": "James Lafa", "geo": null, "id": 147609671027539970, "id_str": "147609671027539970", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1226144765/25649_1265842008603_1306364364_30620112_6436040_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1226144765/25649_1265842008603_1306364364_30620112_6436040_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "#Facebook Uses #MySQL for Timeline because #noSQL was not appropriate for this data organization http://t.co/F2O1KD6l", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:26:44 +0000", "from_user": "benorama", "from_user_id": 10273742, "from_user_id_str": "10273742", "from_user_name": "Benoit HEDIARD", "geo": null, "id": 147608589752746000, "id_str": "147608589752745984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/150150267/P1000467_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/150150267/P1000467_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "RT @natishalom: #NoSQL Benchmarking http://t.co/yBZqiCsA <- Excellent read #cassandra #mongodb #hbase", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:23:50 +0000", "from_user": "28msec", "from_user_id": 83566648, "from_user_id_str": "83566648", "from_user_name": "28msec Inc.", "geo": null, "id": 147607858840735740, "id_str": "147607858840735744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/632776423/twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/632776423/twitter_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "It's that time of the year... http://t.co/JZKlgcXG #xmlprague #xquery #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:22:38 +0000", "from_user": "AnnaSabryan", "from_user_id": 191349533, "from_user_id_str": "191349533", "from_user_name": "Anna", "geo": null, "id": 147607557937176580, "id_str": "147607557937176577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1363195298/Annn44_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1363195298/Annn44_normal.jpg", "source": "<a href="http://friendfeed.com" rel="nofollow">FriendFeed</a>", "text": "Apache Cassandra 101 http://t.co/WVCj0ziI via @AddThis http://t.co/EqoPRLJW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:22:37 +0000", "from_user": "AnnaSabryan", "from_user_id": 191349533, "from_user_id_str": "191349533", "from_user_name": "Anna", "geo": null, "id": 147607551444385800, "id_str": "147607551444385792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1363195298/Annn44_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1363195298/Annn44_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Apache Cassandra 101 http://t.co/WVCj0ziI via @AddThis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:22:35 +0000", "from_user": "natishalom", "from_user_id": 15245950, "from_user_id_str": "15245950", "from_user_name": "natishalom", "geo": null, "id": 147607541696839680, "id_str": "147607541696839680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/87048919/nati.IMG_2415_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/87048919/nati.IMG_2415_normal.JPG", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "#NoSQL Benchmarking http://t.co/yBZqiCsA <- Excellent read #cassandra #mongodb #hbase", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:22:19 +0000", "from_user": "djacques3", "from_user_id": 228313223, "from_user_id_str": "228313223", "from_user_name": "djacques3", "geo": null, "id": 147607477666594800, "id_str": "147607477666594816", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ZenikaIT: Tout sur les nouveaut\\u00E9s de #grails 2.0 par @mboillod + retour experience : http://t.co/CKukr6dd @ZenikaIT #BlogZenika #nosql #plugin #spring", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:19:12 +0000", "from_user": "olivierflebus", "from_user_id": 242669696, "from_user_id_str": "242669696", "from_user_name": "Olivier FLEBUS", "geo": null, "id": 147606692010524670, "id_str": "147606692010524672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1225516106/carre_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225516106/carre_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@LuxNoSQL @manumarchal the \"Cassandra\" you use is not only the NoSQL Solution ! Try with \"Apache Cassandra\" http://t.co/KKKeRBgR Hadoop 1st", "to_user": "LuxNoSQL", "to_user_id": 19330336, "to_user_id_str": "19330336", "to_user_name": "Nestor", "in_reply_to_status_id": 147577688230596600, "in_reply_to_status_id_str": "147577688230596608"}, +{"created_at": "Fri, 16 Dec 2011 09:15:49 +0000", "from_user": "OliviaHalimi", "from_user_id": 203174961, "from_user_id_str": "203174961", "from_user_name": "Olivia Halimi", "geo": null, "id": 147605841405677570, "id_str": "147605841405677568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1436689630/Photo_du_41080214-06-_a__11.24_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1436689630/Photo_du_41080214-06-_a__11.24_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rgaidot: wakanda public beta is now available! http://t.co/GI8tETeb good job @wakanda teams, Laurent R. & Luc H. /cc @abenkira #ssjs #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:14:22 +0000", "from_user": "benjaminhoudu", "from_user_id": 6829652, "from_user_id_str": "6829652", "from_user_name": "Benjamin Houdu", "geo": null, "id": 147605474995486720, "id_str": "147605474995486721", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1348449586/zen-kanji_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1348449586/zen-kanji_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ZenikaIT: Tout sur les nouveaut\\u00E9s de #grails 2.0 par @mboillod + retour experience : http://t.co/CKukr6dd @ZenikaIT #BlogZenika #nosql #plugin #spring", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:13:27 +0000", "from_user": "wakandasoft", "from_user_id": 66729934, "from_user_id_str": "66729934", "from_user_name": "Wakanda", "geo": null, "id": 147605245399269380, "id_str": "147605245399269376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1410804256/wakanda-avatar-72px_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1410804256/wakanda-avatar-72px_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rgaidot: wakanda public beta is now available! http://t.co/GI8tETeb good job @wakanda teams, Laurent R. & Luc H. /cc @abenkira #ssjs #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:11:23 +0000", "from_user": "svizec", "from_user_id": 14541647, "from_user_id_str": "14541647", "from_user_name": "Nejc Kostanj\\u0161ek", "geo": null, "id": 147604723745308670, "id_str": "147604723745308672", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1512630525/tw_12120621_1314269489_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1512630525/tw_12120621_1314269489_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@andraz Zdravo! Imam eno pro\\u0161njo - bi se dalo dobit \"slajde\" iz predavanja NoSQL na wwwh?", "to_user": "andraz", "to_user_id": 14250157, "to_user_id_str": "14250157", "to_user_name": "Andraz Tori"}, +{"created_at": "Fri, 16 Dec 2011 08:57:50 +0000", "from_user": "ZenikaIT", "from_user_id": 77093727, "from_user_id_str": "77093727", "from_user_name": "Zenika", "geo": null, "id": 147601314740830200, "id_str": "147601314740830208", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/434625740/logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/434625740/logo_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Tout sur les nouveaut\\u00E9s de #grails 2.0 par @mboillod + retour experience : http://t.co/CKukr6dd @ZenikaIT #BlogZenika #nosql #plugin #spring", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:49:31 +0000", "from_user": "antonkirillov", "from_user_id": 42834244, "from_user_id_str": "42834244", "from_user_name": "Anton Kirillov", "geo": null, "id": 147599224161312770, "id_str": "147599224161312768", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1544355479/IMG_20110701_143534_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544355479/IMG_20110701_143534_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Graph-based NoSQL \\u0432\\u043E\\u043E\\u0431\\u0449\\u0435 \\u043E\\u0442\\u043B\\u0438\\u0447\\u043D\\u0430\\u044F \\u0448\\u0442\\u0443\\u043A\\u0430 \\u0441 \\u0442\\u043E\\u0447\\u043A\\u0438 \\u0437\\u0440\\u0435\\u043D\\u0438\\u044F \\u043C\\u043E\\u0434\\u0435\\u043B\\u0438 \\u0434\\u0430\\u043D\\u043D\\u044B\\u0445. \\u041D\\u043E \\u0437\\u0430\\u0432\\u0438\\u0441\\u0438\\u0442 \\u043E\\u0442 \\u0437\\u0430\\u0434\\u0430\\u0447. \\u0414\\u043B\\u044F \\u0440\\u0430\\u0437\\u043B\\u0438\\u0447\\u043D\\u044B\\u0445 \\u0441\\u043E\\u0446\\u0438\\u0430\\u043B\\u043E\\u043A \\u0431\\u043E\\u043B\\u0435\\u0435 \\u0447\\u0435\\u043C \\u0443\\u0434\\u043E\\u0431\\u043D\\u043E.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:43:41 +0000", "from_user": "aleqs1", "from_user_id": 185207804, "from_user_id_str": "185207804", "from_user_name": "Aleksi K.", "geo": null, "id": 147597756150710270, "id_str": "147597756150710272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1269768440/Kolehmainen-Aleksi-1_83556d_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1269768440/Kolehmainen-Aleksi-1_83556d_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "InfoQ: James Phillips on Moving from Relational to NoSQL Databases: http://t.co/NftiDOVy via @AddThis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:38:33 +0000", "from_user": "jordimanuel", "from_user_id": 118495045, "from_user_id_str": "118495045", "from_user_name": "Jordi Manuel", "geo": null, "id": 147596461725589500, "id_str": "147596461725589504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1636930597/Foto_12_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1636930597/Foto_12_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @yapsee: Yapsee's #hiring a skilled and ambitious #developer. #HTML5 #CSS3 #Javascript #PHP #Python #Ruby #NoSQL #Startup #Jobs #hire #entrepreneur", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:34:19 +0000", "from_user": "b162love", "from_user_id": 158365227, "from_user_id_str": "158365227", "from_user_name": "HyunHo Lee", "geo": null, "id": 147595395835506700, "id_str": "147595395835506688", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "Zite Personalized Magazine", "text": "RT @zenithon: Cassandra, HBase, MongoDB \\uC7A5\\uC560 \\uB300\\uC751 \\uBA54\\uCEE4\\uB2C8\\uC998 http://t.co/ezjisNhP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:34:10 +0000", "from_user": "b162love", "from_user_id": 158365227, "from_user_id_str": "158365227", "from_user_name": "HyunHo Lee", "geo": null, "id": 147595359416365060, "id_str": "147595359416365056", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "Zite Personalized Magazine", "text": "RT @zenithon: 2012\\uB144 Cloud, BigData \\uAE30\\uC220 \\uC804\\uB9DD http://t.co/3W7DY8UA \\uC62C\\uD574\\uC5D0 \\uC774\\uC5B4 \\uB0B4\\uB144\\uC5D0\\uB3C4 BigData App. Platform\\uC758 \\uD544\\uC694\\uC131\\uC744 \\uC8FC\\uC7A5\\uD558\\uB294\\uAD70\\uC694", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:33:45 +0000", "from_user": "Monitis", "from_user_id": 17421289, "from_user_id_str": "17421289", "from_user_name": "monitis", "geo": null, "id": 147595252981698560, "id_str": "147595252981698561", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1491389208/Monitis-icon-72x72_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1491389208/Monitis-icon-72x72_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL: Apache Cassandra 101 http://t.co/ZFnLHAaA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:33:12 +0000", "from_user": "Driadan", "from_user_id": 69888556, "from_user_id_str": "69888556", "from_user_name": "Guillermo Vay\\u00E1", "geo": null, "id": 147595114716467200, "id_str": "147595114716467200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/387935026/bomb_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/387935026/bomb_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@LuxNoSQL cassandra is also a person's name, so it explains the big gap, try adding nosql or database to the search terms", "to_user": "LuxNoSQL", "to_user_id": 19330336, "to_user_id_str": "19330336", "to_user_name": "Nestor", "in_reply_to_status_id": 147577688230596600, "in_reply_to_status_id_str": "147577688230596608"}, +{"created_at": "Fri, 16 Dec 2011 08:30:03 +0000", "from_user": "EmploiHandicap", "from_user_id": 80315443, "from_user_id_str": "80315443", "from_user_name": "Emploi Handicap", "geo": null, "id": 147594323083530240, "id_str": "147594323083530240", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/457698992/missionhandicap_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/457698992/missionhandicap_avatar_normal.png", "source": "<a href="http://www.missionhandicap.com" rel="nofollow">Emploi Handicap</a>", "text": "#EMPLOI Stage Ing\\u00E9nieur- Big Data & NoSQL H/F http://t.co/azdoiT5e", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:20:00 +0000", "from_user": "couchbase", "from_user_id": 237401623, "from_user_id_str": "237401623", "from_user_name": "Couchbase", "geo": null, "id": 147591793934999550, "id_str": "147591793934999552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1335620360/couchbase_couch_red_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335620360/couchbase_couch_red_twitter_normal.png", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "Just a few days til #CouchConf Israel in Tel Aviv! Still some tickets left - get them now while you can! http://t.co/tR4inCwx #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:18:48 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 147591491844448260, "id_str": "147591491844448257", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "\\u267B Standalone Heroku Postgres' Unanswered Question http://t.co/VdrPL3u8 #PostgreSQL #Heroku #Data-as-a-Service #DaaS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:06:56 +0000", "from_user": "snowmeup", "from_user_id": 282536578, "from_user_id_str": "282536578", "from_user_name": "World Conqueror ", "geo": null, "id": 147588506657624060, "id_str": "147588506657624064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1526815171/BattleofIssus333BC-mosaic-detail1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1526815171/BattleofIssus333BC-mosaic-detail1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "View video and learn how #Oracle #NoSQL Database can help you meet your #BigData challenges: http://t.co/ejrQKuAK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:03:50 +0000", "from_user": "mikepluta", "from_user_id": 15150700, "from_user_id_str": "15150700", "from_user_name": "Mike Pluta", "geo": null, "id": 147587724298305540, "id_str": "147587724298305536", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1584807716/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584807716/image_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: 8 Most Interesting Companies for Hadoop's Future http://t.co/DGjsMLzh #Hadoop #Cloudera #Hortonworks #MapR #Hadapt #HPCC #DataStax #Zettaset", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:01:30 +0000", "from_user": "krismeukens", "from_user_id": 19177874, "from_user_id_str": "19177874", "from_user_name": "Kris Meukens", "geo": null, "id": 147587138119139330, "id_str": "147587138119139328", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1438654836/Kris_Meukens__2011.07.12_b_w_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1438654836/Kris_Meukens__2011.07.12_b_w_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @itworks: Big Data in 2012: Five Predictions - Forbes http://t.co/XLkS3IHz #bigdata #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:00:09 +0000", "from_user": "lastknight", "from_user_id": 5464132, "from_user_id_str": "5464132", "from_user_name": "Matteo G.P. Flora", "geo": null, "id": 147586796878954500, "id_str": "147586796878954496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1255914387/70448_502992052_537370_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1255914387/70448_502992052_537370_q_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "Centralized Logging With Amazon SimpleDB, Slf4j, and Logback http://t.co/40sVaztD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:45:01 +0000", "from_user": "IAmOnDemand", "from_user_id": 33486430, "from_user_id_str": "33486430", "from_user_name": "I Am OnDemand", "geo": null, "id": 147582988308316160, "id_str": "147582988308316160", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1465370566/IMG_4281__2___604x800__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1465370566/IMG_4281__2___604x800__normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: 8 Most Interesting Companies for Hadoop's Future http://t.co/DGjsMLzh #Hadoop #Cloudera #Hortonworks #MapR #Hadapt #HPCC #DataStax #Zettaset", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:30:04 +0000", "from_user": "MySQLBot_en", "from_user_id": 305160384, "from_user_id_str": "305160384", "from_user_name": "MySQLBot_en", "geo": null, "id": 147579227221401600, "id_str": "147579227221401600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1368954854/mysql_100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1368954854/mysql_100_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @somkiat: Product Roadmap of MySQL - RDBMS and NoSQL, And Beyond #mysql http://t.co/WmY5tomF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:28:44 +0000", "from_user": "techielicous", "from_user_id": 240306053, "from_user_id_str": "240306053", "from_user_name": "Josette Rigsby", "geo": null, "id": 147578894273359870, "id_str": "147578894273359872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1250483015/Josette_character_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1250483015/Josette_character_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Facebook Pulls Back Curtain on 'Timeline' - Wired News http://t.co/9UeYltQM #nosql #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:27:14 +0000", "from_user": "somkiat", "from_user_id": 14053735, "from_user_id_str": "14053735", "from_user_name": "UP1", "geo": null, "id": 147578515661922300, "id_str": "147578515661922304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/925551910/4db95ccd-33db-4d03-be01-292013d5abdb_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/925551910/4db95ccd-33db-4d03-be01-292013d5abdb_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Product Roadmap of MySQL - RDBMS and NoSQL, And Beyond #mysql http://t.co/WmY5tomF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:23:57 +0000", "from_user": "LuxNoSQL", "from_user_id": 19330336, "from_user_id_str": "19330336", "from_user_name": "Nestor", "geo": null, "id": 147577688230596600, "id_str": "147577688230596608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1123187681/logo_original4_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1123187681/logo_original4_normal.PNG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Google Insights: Cassandra as the leading NoSQL solution\\n\\nhttp://t.co/Jiew4xbd\\n\\n#nosql #google #cassandra #couchdb #mongodb #redis #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:17:39 +0000", "from_user": "trait_", "from_user_id": 418703316, "from_user_id_str": "418703316", "from_user_name": "trait", "geo": null, "id": 147576105027633150, "id_str": "147576105027633152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1652074133/trait_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652074133/trait_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "759 likes: Visual Guide to NoSQL Systems - Nathan Hurst's Blog: Visual Guide to NoSQL Systems\\u2026 http://t.co/9fqRJUjR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:15:08 +0000", "from_user": "Handi_IT", "from_user_id": 199710837, "from_user_id_str": "199710837", "from_user_name": "Handi-it", "geo": null, "id": 147575469682860030, "id_str": "147575469682860032", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1194866630/handi-it_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1194866630/handi-it_normal.png", "source": "<a href="http://www.handi-it.fr" rel="nofollow">Handi-IT</a>", "text": "#EMPLOI Stage Ing\\u00E9nieur- Big Data & NoSQL H/F http://t.co/fNro25UN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:04:16 +0000", "from_user": "ibrahim_bilgen", "from_user_id": 354264631, "from_user_id_str": "354264631", "from_user_name": "ibrahim bilgen", "geo": null, "id": 147572733461532670, "id_str": "147572733461532672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1645697242/2011-11-18_137_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645697242/2011-11-18_137_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "RT @MySQL: Live webinar in #APAC time zone next Thur: Product Roadmap of #MySQL - RDBMS and #NoSQL, And Beyond: http://t.co/Pr2Sr8aC pls retweet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:02:13 +0000", "from_user": "premsankar", "from_user_id": 9520862, "from_user_id_str": "9520862", "from_user_name": "Prem Sankar G", "geo": null, "id": 147572219860615170, "id_str": "147572219860615168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1246260239/prem3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1246260239/prem3_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "MongoDB Monitoring Service (MMS) - http://t.co/hcaxtgFV - tool to manage MongoDB apps #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:00:10 +0000", "from_user": "premsankar", "from_user_id": 9520862, "from_user_id_str": "9520862", "from_user_name": "Prem Sankar G", "geo": null, "id": 147571701801168900, "id_str": "147571701801168897", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1246260239/prem3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1246260239/prem3_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "List All of the Riak Keys http://t.co/wmfQCC1V #RIAK #Nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 06:40:00 +0000", "from_user": "Analton", "from_user_id": 2043051, "from_user_id_str": "2043051", "from_user_name": "Lord Analton Morion", "geo": null, "id": 147566629146984450, "id_str": "147566629146984448", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1511003495/294011_207767525943478_100001306958849_528790_125462_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1511003495/294011_207767525943478_100001306958849_528790_125462_n_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @natiblues: The Hard Life Of A NoSQL Coder http://t.co/eg2hksoY | Jajajajajajajajajajajajaja @focojoaco", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 06:39:01 +0000", "from_user": "natiblues", "from_user_id": 90462463, "from_user_id_str": "90462463", "from_user_name": "Nat Nat", "geo": null, "id": 147566382849073150, "id_str": "147566382849073153", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1679274436/leia3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679274436/leia3_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "The Hard Life Of A NoSQL Coder http://t.co/eg2hksoY | Jajajajajajajajajajajajaja @focojoaco", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 06:18:26 +0000", "from_user": "spicermatthews", "from_user_id": 21408687, "from_user_id_str": "21408687", "from_user_name": "Spicer Matthews", "geo": null, "id": 147561202728448000, "id_str": "147561202728448000", "iso_language_code": "eo", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1392017853/2011-02-26_14-49-35_515_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1392017853/2011-02-26_14-49-35_515_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Super funny!!! http://t.co/iueazQG8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 05:33:34 +0000", "from_user": "VForciniti", "from_user_id": 432885580, "from_user_id_str": "432885580", "from_user_name": "Vincenzo Forciniti", "geo": null, "id": 147549908256301060, "id_str": "147549908256301057", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1683922093/230708_2011156322427_1349318836_2420460_7595340_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683922093/230708_2011156322427_1349318836_2420460_7595340_n_normal.jpg", "source": "<a href="http://spredfast.com" rel="nofollow">Spredfast</a>", "text": "RT @Oracle: View video and learn how #Oracle #NoSQL Database can help you meet your #BigData challenges: http://t.co/ikumWT0g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 04:59:41 +0000", "from_user": "aabramkin", "from_user_id": 161584131, "from_user_id_str": "161584131", "from_user_name": "Alexei Abramkin", "geo": null, "id": 147541381966082050, "id_str": "147541381966082048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1042194880/sonic2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1042194880/sonic2_normal.JPG", "source": "<a href="http://spredfast.com" rel="nofollow">Spredfast</a>", "text": "RT @Oracle: View video and learn how #Oracle #NoSQL Database can help you meet your #BigData challenges: http://t.co/ikumWT0g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 04:55:13 +0000", "from_user": "JeongSoh", "from_user_id": 336436412, "from_user_id_str": "336436412", "from_user_name": "Soh, Jeong Ryong", "geo": null, "id": 147540259264151550, "id_str": "147540259264151552", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1643604257/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643604257/image_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: 8 Most Interesting Companies for Hadoop's Future http://t.co/DGjsMLzh #Hadoop #Cloudera #Hortonworks #MapR #Hadapt #HPCC #DataStax #Zettaset", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 04:33:00 +0000", "from_user": "isllei", "from_user_id": 90402485, "from_user_id_str": "90402485", "from_user_name": "liulei", "geo": null, "id": 147534666621124600, "id_str": "147534666621124609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1109893120/1c34a2954a570fe94684ff3682cb5c36_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1109893120/1c34a2954a570fe94684ff3682cb5c36_normal.png", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: \\u267B MySQL Cluster Used to Implement a Highly Available and Scalable Hadoop NodeName http://t.co/jd3lo3Dh #MySQLCluster #Hadoop #HDFS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 04:05:59 +0000", "from_user": "jug_c", "from_user_id": 196268474, "from_user_id_str": "196268474", "from_user_name": "JavaUserGroupChennai", "geo": null, "id": 147527867234926600, "id_str": "147527867234926592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1201287899/169627704_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1201287899/169627704_normal.png", "source": "<a href="http://spredfast.com" rel="nofollow">Spredfast</a>", "text": "RT @Oracle: View video and learn how #Oracle #NoSQL Database can help you meet your #BigData challenges: http://t.co/ikumWT0g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 04:00:18 +0000", "from_user": "patrickDurusau", "from_user_id": 152194866, "from_user_id_str": "152194866", "from_user_name": "Patrick Durusau", "geo": null, "id": 147526436436189200, "id_str": "147526436436189186", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/961579480/patrick_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/961579480/patrick_normal.jpeg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Raven DB - Stable Build - 573 #topicmaps #RavenDB #NoSQL #Windows #.Net - http://t.co/Tb8IKQP7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 03:34:44 +0000", "from_user": "kaiba", "from_user_id": 5580052, "from_user_id_str": "5580052", "from_user_name": "kaiba", "geo": null, "id": 147520004034793470, "id_str": "147520004034793473", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670953332/pureri_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670953332/pureri_normal.png", "source": "<a href="http://twipple.jp/" rel="nofollow">\\u3064\\u3044\\u3063\\u3077\\u308B/twipple</a>", "text": "\\u51AC\\u4F11\\u307F\\u306E\\u5BBF\\u984C : iPhone\\u30A2\\u30D7\\u30EA(\\u81EA\\u7531\\u7814\\u7A76), DI(\\u6570\\u5B66), symfony(\\u5BB6\\u5EAD\\u79D1), Clojure(\\u82F1\\u8A9E), Effective Java(\\u8AAD\\u66F8), HTML5(\\u56FD\\u8A9E), CSS3(\\u7F8E\\u8853), Phonegap(\\u7406\\u79D1), git(\\u793E\\u4F1A\\u5316), NoSQL(\\u4FDD\\u5065\\u4F53\\u80B2)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 03:30:05 +0000", "from_user": "MySQLBot_en", "from_user_id": 305160384, "from_user_id_str": "305160384", "from_user_name": "MySQLBot_en", "geo": null, "id": 147518834243403780, "id_str": "147518834243403777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1368954854/mysql_100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1368954854/mysql_100_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @PanosSer: Why Facebook Uses #MySQL for Timeline http://t.co/LAg9o8T1 #uncategorized #facebooktimeline #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 03:25:54 +0000", "from_user": "PanosSer", "from_user_id": 134741365, "from_user_id_str": "134741365", "from_user_name": "Panos", "geo": null, "id": 147517779635994620, "id_str": "147517779635994624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/995831209/icon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/995831209/icon_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Why Facebook Uses #MySQL for Timeline http://t.co/LAg9o8T1 #uncategorized #facebooktimeline #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 02:51:38 +0000", "from_user": "marcosluis2186", "from_user_id": 71701378, "from_user_id_str": "71701378", "from_user_name": "Marcos Ortiz ", "geo": null, "id": 147509158214766600, "id_str": "147509158214766592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1215605067/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1215605067/avatar_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Welcome to issue 55 of NoSQL Weekly http://t.co/xSwUoyyj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 02:44:48 +0000", "from_user": "matematicki", "from_user_id": 214891198, "from_user_id_str": "214891198", "from_user_name": "Matemati\\u010Dki fakultet", "geo": null, "id": 147507437157621760, "id_str": "147507437157621760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1166125043/matf-logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1166125043/matf-logo_normal.png", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "RT @MySQL: Live webinar in #APAC time zone next Thur: Product Roadmap of #MySQL - RDBMS and #NoSQL, And Beyond: http://t.co/Pr2Sr8aC pls retweet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 02:44:47 +0000", "from_user": "openstackcisco", "from_user_id": 384864243, "from_user_id_str": "384864243", "from_user_name": "Murali Raju", "geo": null, "id": 147507432040562700, "id_str": "147507432040562688", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: 8 Most Interesting Companies for Hadoop's Future http://t.co/DGjsMLzh #Hadoop #Cloudera #Hortonworks #MapR #Hadapt #HPCC #DataStax #Zettaset", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 02:31:03 +0000", "from_user": "shurupov", "from_user_id": 68659476, "from_user_id_str": "68659476", "from_user_name": "Dmitry Shurupov", "geo": null, "id": 147503979801223170, "id_str": "147503979801223168", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1543786967/20110618_iseegod_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543786967/20110618_iseegod_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@victordottir: nosql! :)", "to_user": "victordottir", "to_user_id": 85860937, "to_user_id_str": "85860937", "to_user_name": "Anna Shlyaeva", "in_reply_to_status_id": 147496002549587970, "in_reply_to_status_id_str": "147496002549587968"}, +{"created_at": "Fri, 16 Dec 2011 02:18:36 +0000", "from_user": "Anniceyli", "from_user_id": 431709244, "from_user_id_str": "431709244", "from_user_name": "Annice Treacy", "geo": null, "id": 147500845859209200, "id_str": "147500845859209216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681049886/aqgvsx454u_132334620-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681049886/aqgvsx454u_132334620-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Definitive Guide to MongoDB: The NoSQL Database for Cloud and Desktop Computing: MongoDB, a cross-platform N... http://t.co/BSjOJ8vu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 02:05:37 +0000", "from_user": "searless", "from_user_id": 197567981, "from_user_id_str": "197567981", "from_user_name": "Searle Oliveira", "geo": null, "id": 147497577397485570, "id_str": "147497577397485568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1694594917/370723_100003069040094_1724844995_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694594917/370723_100003069040094_1724844995_n_normal.jpg", "source": "<a href="http://spredfast.com" rel="nofollow">Spredfast</a>", "text": "RT @Oracle: View video and learn how #Oracle #NoSQL Database can help you meet your #BigData challenges: http://t.co/ikumWT0g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 02:04:56 +0000", "from_user": "maiko_rocha", "from_user_id": 28005487, "from_user_id_str": "28005487", "from_user_name": "Maiko Rocha", "geo": null, "id": 147497407054225400, "id_str": "147497407054225408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1180840211/f4a6b689-792f-4628-bd56-e72e9a586e15_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1180840211/f4a6b689-792f-4628-bd56-e72e9a586e15_normal.png", "source": "<a href="http://spredfast.com" rel="nofollow">Spredfast</a>", "text": "RT @Oracle: View video and learn how #Oracle #NoSQL Database can help you meet your #BigData challenges: http://t.co/ikumWT0g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:41:29 +0000", "from_user": "OsamaOracle", "from_user_id": 50257111, "from_user_id_str": "50257111", "from_user_name": "Osama Mustafa ", "geo": null, "id": 147491502703116300, "id_str": "147491502703116288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1526656933/P1207_10-03-11_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1526656933/P1207_10-03-11_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "View video and learn how #Oracle #NoSQL Database can help you meet your #BigData challenges: http://t.co/ucrRg7nr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:26:30 +0000", "from_user": "eddyleesinti", "from_user_id": 41144544, "from_user_id_str": "41144544", "from_user_name": "Eddy Lee", "geo": null, "id": 147487731998666750, "id_str": "147487731998666752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://spredfast.com" rel="nofollow">Spredfast</a>", "text": "RT @Oracle: View video and learn how #Oracle #NoSQL Database can help you meet your #BigData challenges: http://t.co/ikumWT0g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:23:04 +0000", "from_user": "heimusu", "from_user_id": 27903113, "from_user_id_str": "27903113", "from_user_name": "\\u308A\\u3063\\u3061\\u3083\\u3093\\u306B\\u9B45\\u5165\\u3089\\u308C\\u3057\\u8005", "geo": null, "id": 147486870618640400, "id_str": "147486870618640384", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1592851508/DSC01535_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592851508/DSC01535_normal.jpg", "source": "<a href="http://www.tweenapp.org/" rel="nofollow">Tween</a>", "text": "NoSQL\\u3068\\u306F", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:22:37 +0000", "from_user": "Lauren_Chang", "from_user_id": 54705325, "from_user_id_str": "54705325", "from_user_name": "Kyung-Ah Chang", "geo": null, "id": 147486758236471300, "id_str": "147486758236471298", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1142958569/chihochiahn-twt_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1142958569/chihochiahn-twt_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "RT @xguru: 2012 \\uD074\\uB77C\\uC6B0\\uB4DC,PaaS,NoSQL \\uC608\\uC0C1 http://t.co/8C9E6u0D \\uD074\\uB77C\\uC6B0\\uB4DC\\uB294 \\uC0AC\\uC6A9\\uC790\\uC5D0\\uAC8C iCloud/Dropbox\\uCC98\\uB7FC \\uC548\\uBCF4\\uC774\\uAC8C \\uB2E4\\uAC00\\uC624\\uACE0, \\uBAA8\\uBC14\\uC77C \\uAE30\\uAE30 \\uACE0\\uB3C4\\uD654\\uB97C \\uC704\\uD574 \\uD074\\uB77C\\uC6B0\\uB4DC\\uB97C \\uBC31\\uC5D4\\uB4DC\\uB85C \\uC0AC\\uC6A9\\uD558\\uB294 \\uBAA8\\uC2B5\\uC774 \\uB9CE\\uC544\\uC9C8\\uAC83", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:20:30 +0000", "from_user": "Arraisjr", "from_user_id": 56746526, "from_user_id_str": "56746526", "from_user_name": "Francisco Arrais", "geo": null, "id": 147486224234455040, "id_str": "147486224234455040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1215024451/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1215024451/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@Oracle: View video and learn how #Oracle #NoSQL Database can help you meet your #BigData challenges: http://t.co/Hlvoh4Nc\\u201D @rlljorge", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:16:52 +0000", "from_user": "joshprismon", "from_user_id": 45583998, "from_user_id_str": "45583998", "from_user_name": "Joshua Prismon", "geo": null, "id": 147485308399783940, "id_str": "147485308399783936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1285979072/IMG_0271_face1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1285979072/IMG_0271_face1_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "EMC Greenplum Database and Hadoop Distribution Puts a Social Spin on Big Data http://t.co/ygKlqY94", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Fri, 16 Dec 2011 01:16:29 +0000", "from_user": "MagnetoLab", "from_user_id": 364193634, "from_user_id_str": "364193634", "from_user_name": "kiwavi", "geo": null, "id": 147485212367007740, "id_str": "147485212367007744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1605446309/my_picture1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1605446309/my_picture1_normal.jpg", "source": "<a href="http://spredfast.com" rel="nofollow">Spredfast</a>", "text": "RT @Oracle: View video and learn how #Oracle #NoSQL Database can help you meet your #BigData challenges: http://t.co/ikumWT0g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:15:08 +0000", "from_user": "Oracle", "from_user_id": 809273, "from_user_id_str": "809273", "from_user_name": "Oracle", "geo": null, "id": 147484871667892220, "id_str": "147484871667892224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/251235104/twitterlogo_v1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/251235104/twitterlogo_v1_normal.png", "source": "<a href="http://spredfast.com" rel="nofollow">Spredfast</a>", "text": "View video and learn how #Oracle #NoSQL Database can help you meet your #BigData challenges: http://t.co/ikumWT0g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:06:28 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 147482692915695600, "id_str": "147482692915695619", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "\\u267B MySQL Cluster Used to Implement a Highly Available and Scalable Hadoop NodeName http://t.co/jd3lo3Dh #MySQLCluster #Hadoop #HDFS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:03:04 +0000", "from_user": "mattnowina", "from_user_id": 103869545, "from_user_id_str": "103869545", "from_user_name": "Matt Nowina", "geo": null, "id": 147481834928873470, "id_str": "147481834928873472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1310193735/eightbit-9aa6f9af-a52d-4215-97f5-8ae5720906f1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1310193735/eightbit-9aa6f9af-a52d-4215-97f5-8ae5720906f1_normal.png", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "8 Most Interesting Companies for Hadoop's Future http://t.co/V3bH2GZg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:48:56 +0000", "from_user": "sfsalesjobs", "from_user_id": 322856213, "from_user_id_str": "322856213", "from_user_name": "SF Sales Jobs", "geo": null, "id": 147478277550911500, "id_str": "147478277550911488", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1636340670/sjobs-logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1636340670/sjobs-logo_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#sf Sales Hunter/complex software sales/NoSQL http://t.co/mIFgbhp7 #sales #jobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:48:02 +0000", "from_user": "joe_hrmn", "from_user_id": 14989590, "from_user_id_str": "14989590", "from_user_name": "Hiromune Shishido", "geo": null, "id": 147478054078394370, "id_str": "147478054078394368", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1275627373/14989590_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1275627373/14989590_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\\u3053\\u308C\\u304B\\u3089\\u8AAD\\u3080\\u3002/ Availability and Operational Stability of NoSQL | CUBRID Blog: http://t.co/RjjxdUZx via @AddThis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:40:41 +0000", "from_user": "yapsee", "from_user_id": 402446711, "from_user_id_str": "402446711", "from_user_name": "Yapsee", "geo": null, "id": 147476203064926200, "id_str": "147476203064926208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1648044790/yapsee_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648044790/yapsee_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Yapsee's #hiring a skilled and ambitious #developer. #HTML5 #CSS3 #Javascript #PHP #Python #Ruby #NoSQL #Startup #Jobs #hire #entrepreneur", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:27:21 +0000", "from_user": "pedrocavalero", "from_user_id": 73974609, "from_user_id_str": "73974609", "from_user_name": "Pedro Caval\\u00E9ro", "geo": null, "id": 147472848217309200, "id_str": "147472848217309184", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/413724729/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/413724729/twitter_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "http://t.co/Ovo0lk47 leitura recomendada!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:17:03 +0000", "from_user": "likesky3", "from_user_id": 98395292, "from_user_id_str": "98395292", "from_user_name": "Soo-Yong Shin", "geo": null, "id": 147470254359056400, "id_str": "147470254359056384", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1462807106/________normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1462807106/________normal.jpg", "source": "Zite Personalized Magazine", "text": "RT @HadoopNews: #NoSQL Benchmarking http://t.co/C92wt7OF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:12:08 +0000", "from_user": "Winterpool", "from_user_id": 15397617, "from_user_id_str": "15397617", "from_user_name": "Winterpool", "geo": null, "id": 147469016443785200, "id_str": "147469016443785216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1655019692/miki01_110_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655019692/miki01_110_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": ".@AaronHEllis Is Twitter's NoSQL database any better at keeping 'favourites' than it is at keeping tweets in general?", "to_user": "AaronHEllis", "to_user_id": 155609096, "to_user_id_str": "155609096", "to_user_name": "AaronHEllis", "in_reply_to_status_id": 147468632572694530, "in_reply_to_status_id_str": "147468632572694528"}, +{"created_at": "Fri, 16 Dec 2011 00:10:35 +0000", "from_user": "stevestarges", "from_user_id": 216655995, "from_user_id_str": "216655995", "from_user_name": "Steve Starges", "geo": null, "id": 147468626289635330, "id_str": "147468626289635328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1498209216/275px-Manga_in_Jp.svg_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1498209216/275px-Manga_in_Jp.svg_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "A Reliable, Scalable, and (Kinda) Cheap Cloud Hosting Architecture for MongoDB: I did a talk at the Austin NoSQL... http://t.co/audGeM1b", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:02:38 +0000", "from_user": "timglabisch", "from_user_id": 110407647, "from_user_id_str": "110407647", "from_user_name": "Tim Glabisch", "geo": null, "id": 147466627418554370, "id_str": "147466627418554368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1215825992/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1215825992/me_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "RT @MySQL: Live webinar in #APAC time zone next Thur: Product Roadmap of #MySQL - RDBMS and #NoSQL, And Beyond: http://t.co/Pr2Sr8aC pls retweet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:57:50 +0000", "from_user": "alibabaie", "from_user_id": 43753223, "from_user_id_str": "43753223", "from_user_name": "Ali Babaie", "geo": null, "id": 147465419018612740, "id_str": "147465419018612736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701973281/DSC00155-ali_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701973281/DSC00155-ali_normal.jpg", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "Great article NoSQL and challenges: let's have a serious NoSQL discussion http://t.co/EKjBq6C4 #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:41:43 +0000", "from_user": "petetasker", "from_user_id": 72562996, "from_user_id_str": "72562996", "from_user_name": "Peter Tasker", "geo": null, "id": 147461365710323700, "id_str": "147461365710323712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1192350663/n537725614_4282789_9985_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1192350663/n537725614_4282789_9985_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "honestly I've had enough of this key value NoSQL bizness. Honestly, who the hell wants to deal with massive associative arrays? SQL anyone?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:33:33 +0000", "from_user": "usul_", "from_user_id": 5528042, "from_user_id_str": "5528042", "from_user_name": "Fran\\u00E7ois Dussert", "geo": null, "id": 147459309956104200, "id_str": "147459309956104192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1476077804/gravatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1476077804/gravatar_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "wakanda public beta is now available! http://t.co/tP2az9Pt #ssjs #nosql (via @rgaidot)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:23:47 +0000", "from_user": "nid777", "from_user_id": 108751911, "from_user_id_str": "108751911", "from_user_name": "A.Niida", "geo": null, "id": 147456850919559170, "id_str": "147456850919559168", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1221860464/161418_100002017657580_4219310_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1221860464/161418_100002017657580_4219310_q_normal.jpg", "source": "Zite Personalized Magazine", "text": "RT @HadoopNews: #NoSQL Benchmarking http://t.co/C92wt7OF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:11:58 +0000", "from_user": "Cloud_Prime", "from_user_id": 140715388, "from_user_id_str": "140715388", "from_user_name": "CloudPrime", "geo": null, "id": 147453875790675970, "id_str": "147453875790675968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/877523108/CloudPrimeGlobeLarge_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/877523108/CloudPrimeGlobeLarge_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Nati Shalom's Blog: 2012 Cloud, PaaS, NoSQL Predictions http://t.co/kMRT1jkX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:11:31 +0000", "from_user": "dehora", "from_user_id": 546313, "from_user_id_str": "546313", "from_user_name": "Bill de h\\u00D3ra", "geo": null, "id": 147453765757308930, "id_str": "147453765757308928", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1353302609/131466384_04bd6f5204_o_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1353302609/131466384_04bd6f5204_o_normal.png", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: 8 Most Interesting Companies for Hadoop's Future http://t.co/DGjsMLzh #Hadoop #Cloudera #Hortonworks #MapR #Hadapt #HPCC #DataStax #Zettaset", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:10:26 +0000", "from_user": "notkea", "from_user_id": 130785168, "from_user_id_str": "130785168", "from_user_name": "Notkea", "geo": null, "id": 147453492712312830, "id_str": "147453492712312832", "iso_language_code": "fi", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/824485375/notkea-logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/824485375/notkea-logo_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Riak Handbook: Yksi lupaavimmista NoSQL-tietokannoista on eitt\\u00E4m\\u00E4tt\\u00E4 Riak. Dynamo-ideaan perustuvaa tietokantaa ... http://t.co/PjWlrnMt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:06:51 +0000", "from_user": "AnaNobel", "from_user_id": 112244260, "from_user_id_str": "112244260", "from_user_name": "Ana Lopez de E", "geo": null, "id": 147452590614003700, "id_str": "147452590614003712", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695396230/nor_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695396230/nor_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Viroide: #couchDB aun no s\\u00E9 si lo amar\\u00E9 o lo odiar\\u00E9, habr\\u00E1 que hacer algunas pruebas #noSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:59:57 +0000", "from_user": "mahdi", "from_user_id": 718993, "from_user_id_str": "718993", "from_user_name": "Mahdi Taghizadeh", "geo": null, "id": 147450853668818940, "id_str": "147450853668818944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697108280/violet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697108280/violet_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "A Reliable, Scalable, and (Kinda) Cheap Cloud Hosting Architecture for MongoDB. http://t.co/a0rPAi3G #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:58:18 +0000", "from_user": "godofthenetwork", "from_user_id": 427834340, "from_user_id_str": "427834340", "from_user_name": "Carlos Navarrete", "geo": null, "id": 147450436524314620, "id_str": "147450436524314624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "A Reliable, Scalable, and (Kinda) Cheap Cloud Hosting Architecture for MongoDB: I did a talk at the Austin NoSQL... http://t.co/Hj1J4Afg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:58:11 +0000", "from_user": "xcoatl", "from_user_id": 28551844, "from_user_id_str": "28551844", "from_user_name": "Beto Borbolla", "geo": null, "id": 147450409831759870, "id_str": "147450409831759873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1244659079/bike_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1244659079/bike_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @markmadsen: Just read another nosql/Hadoop product's info with a new \"SQL-like language\". Let's create a WTFsql standard and be done with new standards", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:45:38 +0000", "from_user": "_tomorro", "from_user_id": 15443683, "from_user_id_str": "15443683", "from_user_name": "Daniele Moraschi", "geo": null, "id": 147447250497454080, "id_str": "147447250497454080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1223711459/IMG_2906_4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1223711459/IMG_2906_4_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "MySQL :: Product Roadmap of MySQL - RDBMS and NoSQL, And Beyond http://t.co/ZDAKj7xO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:45:36 +0000", "from_user": "wagnerbianchijr", "from_user_id": 233255853, "from_user_id_str": "233255853", "from_user_name": "Wagner Bianchi", "geo": null, "id": 147447242377273340, "id_str": "147447242377273345", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1582645499/wb-sea_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1582645499/wb-sea_normal.png", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "RT @MySQL: Live webinar in #APAC time zone next Thur: Product Roadmap of #MySQL - RDBMS and #NoSQL, And Beyond: http://t.co/Pr2Sr8aC pls retweet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:45:07 +0000", "from_user": "MySQLBot_en", "from_user_id": 305160384, "from_user_id_str": "305160384", "from_user_name": "MySQLBot_en", "geo": null, "id": 147447118125219840, "id_str": "147447118125219840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1368954854/mysql_100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1368954854/mysql_100_normal.png", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "RT @MySQL: Live webinar in #APAC time zone next Thur: Product Roadmap of #MySQL - RDBMS and #NoSQL, And Beyond: http://t.co/Pr2Sr8aC pls retweet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:44:12 +0000", "from_user": "apermuy", "from_user_id": 16869391, "from_user_id_str": "16869391", "from_user_name": "apermuy", "geo": null, "id": 147446887748870140, "id_str": "147446887748870144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1599288937/dmrlive_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599288937/dmrlive_normal.gif", "source": "<a href="http://twitter.com" rel="nofollow">Tweetie for Mac</a>", "text": "Live webinar in #APAC time zone next Thur: Product Roadmap of #MySQL - RDBMS and #NoSQL, And Beyond: http://t.co/EBOBOIgv (via @MySQL)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:43:38 +0000", "from_user": "MySQL", "from_user_id": 44932521, "from_user_id_str": "44932521", "from_user_name": "MySQL", "geo": null, "id": 147446745570361340, "id_str": "147446745570361344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1240079072/logo-mysql-170x170_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1240079072/logo-mysql-170x170_normal.png", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "Live webinar in #APAC time zone next Thur: Product Roadmap of #MySQL - RDBMS and #NoSQL, And Beyond: http://t.co/Pr2Sr8aC pls retweet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:33:46 +0000", "from_user": "bjorngranvik", "from_user_id": 25514609, "from_user_id_str": "25514609", "from_user_name": "Bj\\u00F6rn Granvik", "geo": null, "id": 147444265369341950, "id_str": "147444265369341952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/104606663/Bj\\u00F6rn_Granvik_Colour_green_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/104606663/Bj\\u00F6rn_Granvik_Colour_green_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT New JDBC Driver (yes that's right!) for @neo4j by @rickardoberg. Testing help needed! http://t.co/YnnQOJl3 #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:25:21 +0000", "from_user": "jupiterorbit", "from_user_id": 14156586, "from_user_id_str": "14156586", "from_user_name": "Kaustav Bhattacharya", "geo": null, "id": 147442147401023500, "id_str": "147442147401023489", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/57931383/Photo_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/57931383/Photo_1_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "Found this very thorough guide about what NoSQL is for. Goes in to NoSQL system standards and compares against RDBMS. http://t.co/Wk0poVmh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:18:42 +0000", "from_user": "victorpascual", "from_user_id": 11043372, "from_user_id_str": "11043372", "from_user_name": "victorpascual", "geo": null, "id": 147440471445225470, "id_str": "147440471445225472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1115026461/mr-monkey_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1115026461/mr-monkey_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nosqlmatters: Our new website is online! From now on you can find current information about the #nosql #conference #2012 here: http://t.co/aYrAfS7l", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:16:41 +0000", "from_user": "JoeChanNYC", "from_user_id": 155064900, "from_user_id_str": "155064900", "from_user_name": "Joseph Chan", "geo": null, "id": 147439963405955070, "id_str": "147439963405955072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694818259/Profile_Pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694818259/Profile_Pic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Are you an #Oracle #DBA Lead with #NoSQL looking for a managerial opportunity? #CheetahMail is hiring. Check it out. http://t.co/bwCujS2h", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:12:14 +0000", "from_user": "mongodb_news", "from_user_id": 218710958, "from_user_id_str": "218710958", "from_user_name": "MongoDb", "geo": null, "id": 147438845028335600, "id_str": "147438845028335616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1173473945/imgres-1_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1173473945/imgres-1_normal.jpeg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"HBase, Cassandra, and MongoDB - How They Recover From a Failure\" http://t.co/tVxBQJj5 #HBase #Cassandra #MongoDB #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:11:34 +0000", "from_user": "rgaidot", "from_user_id": 1245801, "from_user_id_str": "1245801", "from_user_name": "R\\u00E9gis Gaidot", "geo": null, "id": 147438678178926600, "id_str": "147438678178926592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1266738841/avatar-6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266738841/avatar-6_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "wakanda public beta is now available! http://t.co/GI8tETeb good job @wakanda teams, Laurent R. & Luc H. /cc @abenkira #ssjs #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:08:51 +0000", "from_user": "joprichard", "from_user_id": 87571658, "from_user_id_str": "87571658", "from_user_name": "Jo Prichard", "geo": null, "id": 147437992510890000, "id_str": "147437992510889985", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1586920069/5107CR3B_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586920069/5107CR3B_1__normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: 8 Most Interesting Companies for Hadoop's Future http://t.co/DGjsMLzh #Hadoop #Cloudera #Hortonworks #MapR #Hadapt #HPCC #DataStax #Zettaset", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:06:03 +0000", "from_user": "mattnowina", "from_user_id": 103869545, "from_user_id_str": "103869545", "from_user_name": "Matt Nowina", "geo": null, "id": 147437289772040200, "id_str": "147437289772040192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1310193735/eightbit-9aa6f9af-a52d-4215-97f5-8ae5720906f1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1310193735/eightbit-9aa6f9af-a52d-4215-97f5-8ae5720906f1_normal.png", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "Centralized Logging With Amazon SimpleDB, Slf4j, and Logback http://t.co/YdpAUAGn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:04:17 +0000", "from_user": "rahulgchaudhary", "from_user_id": 93134027, "from_user_id_str": "93134027", "from_user_name": "Rahul Chaudhary", "geo": null, "id": 147436844177571840, "id_str": "147436844177571840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1148856768/rahulchaudhary_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1148856768/rahulchaudhary_normal.jpg", "source": "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", "text": "NoSQL Support in Lift via @nosqlweekly http://t.co/JVp84Pdi #nosql #mongodb #couchdb #lift", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:04:05 +0000", "from_user": "lukewelling", "from_user_id": 14840808, "from_user_id_str": "14840808", "from_user_name": "Luke Welling", "geo": null, "id": 147436795318124540, "id_str": "147436795318124545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1588367966/elephant_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1588367966/elephant_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "I'm not a big fan of NoSQL databases for most tasks, but some days anything other than SQL seems pretty appealing", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:03:33 +0000", "from_user": "lpiot", "from_user_id": 22353012, "from_user_id_str": "22353012", "from_user_name": "Ludovic Piot", "geo": null, "id": 147436657874968580, "id_str": "147436657874968576", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/89454404/n1220121809_907363_4719_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/89454404/n1220121809_907363_4719_normal.jpg", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "RT @vhe74: Cassandra et Hadoop dans les \"10 Most Important Open Source Projects of 2011\" http://t.co/J7GMDVlo #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 21:58:12 +0000", "from_user": "jsalvachua", "from_user_id": 780336, "from_user_id_str": "780336", "from_user_name": "Joaquin salvachua", "geo": null, "id": 147435314108051460, "id_str": "147435314108051456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/255663970/Imagen_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/255663970/Imagen_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nosqlmatters: Our new website is online! From now on you can find current information about the #nosql #conference #2012 here: http://t.co/aYrAfS7l", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 21:56:44 +0000", "from_user": "post_relational", "from_user_id": 402513077, "from_user_id_str": "402513077", "from_user_name": "postrelational", "geo": null, "id": 147434941884538880, "id_str": "147434941884538880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://explore.live.com/windows-live-writer" rel="nofollow">Windows Live Writer</a>", "text": "Top 10 List of Changes in MongoDB 2.0.2 - http://t.co/Vpljb8Us #mongodb #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 21:19:40 +0000", "from_user": "X4F34r", "from_user_id": 130800499, "from_user_id_str": "130800499", "from_user_name": "418 Ima teapot", "geo": null, "id": 147425615149154300, "id_str": "147425615149154304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1617785733/meh_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1617785733/meh_normal.png", "source": "<a href="http://hotot.org" rel="nofollow">Hotot for Chrome</a>", "text": "@ddrmanxbxfr @j_lavoie Yes,but now i dont need that.And I really like nginx and PHP.I read a lot of things about noSQL DBs but I prefer SQL", "to_user": "ddrmanxbxfr", "to_user_id": 133566013, "to_user_id_str": "133566013", "to_user_name": "Mathieu", "in_reply_to_status_id": 147423434090090500, "in_reply_to_status_id_str": "147423434090090496"}, +{"created_at": "Thu, 15 Dec 2011 21:14:15 +0000", "from_user": "leandro_storoli", "from_user_id": 46277106, "from_user_id_str": "46277106", "from_user_name": "Leandro Storoli", "geo": null, "id": 147424253149585400, "id_str": "147424253149585408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1368141969/profile_image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1368141969/profile_image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"Learn Couchbase - Couchbase Server 2.0 Ruby Client\" http://t.co/p0o0z6Hf #Ruby #NoSQL #Couchbase", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 21:11:00 +0000", "from_user": "ddrmanxbxfr", "from_user_id": 133566013, "from_user_id_str": "133566013", "from_user_name": "Mathieu", "geo": null, "id": 147423434090090500, "id_str": "147423434090090496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@X4F34r @j_lavoie ever thinked about using a #erlang web server such as #cowboy or #mochiweb with Webmachine ? and a noSQL db ?", "to_user": "X4F34r", "to_user_id": 130800499, "to_user_id_str": "130800499", "to_user_name": "418 Ima teapot", "in_reply_to_status_id": 147370719372775420, "in_reply_to_status_id_str": "147370719372775424"}, +{"created_at": "Thu, 15 Dec 2011 21:01:36 +0000", "from_user": "josearcos_", "from_user_id": 225098820, "from_user_id_str": "225098820", "from_user_name": "Jos\\u00E9 Arcos", "geo": null, "id": 147421069245030400, "id_str": "147421069245030401", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1187396412/CIMG3985_1__normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1187396412/CIMG3985_1__normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @david_bonilla: Oracle #NoSQL: primeras impresiones http://t.co/YpSo3T2D O_o", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 21:00:01 +0000", "from_user": "DZone", "from_user_id": 14782935, "from_user_id_str": "14782935", "from_user_name": "DZone", "geo": null, "id": 147420669125201920, "id_str": "147420669125201920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/258714549/dzone-square-256_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/258714549/dzone-square-256_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\"Learn Couchbase - Couchbase Server 2.0 Ruby Client\" http://t.co/p0o0z6Hf #Ruby #NoSQL #Couchbase", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 20:58:48 +0000", "from_user": "EvansBI", "from_user_id": 304523605, "from_user_id_str": "304523605", "from_user_name": "Peter Evans", "geo": null, "id": 147420365692481540, "id_str": "147420365692481536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1368935952/Periscope_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1368935952/Periscope_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @markmadsen: nosql is a terrible term, you have to clearly think about the storage layer, data mgmt & execution, programming layers in db - @colinjwhite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 20:57:54 +0000", "from_user": "markmadsen", "from_user_id": 7648872, "from_user_id_str": "7648872", "from_user_name": "Mark Madsen", "geo": null, "id": 147420136574431230, "id_str": "147420136574431232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/85422990/mark_madsen_pr_1452_bw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/85422990/mark_madsen_pr_1452_bw_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "nosql is a terrible term, you have to clearly think about the storage layer, data mgmt & execution, programming layers in db - @colinjwhite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 20:45:05 +0000", "from_user": "satolone", "from_user_id": 398507580, "from_user_id_str": "398507580", "from_user_name": "Scott Tolone", "geo": null, "id": 147416912513605630, "id_str": "147416912513605632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1683949662/GlobalBigData_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683949662/GlobalBigData_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "SQL Schema management is a big reason why developers are looking at NoSQL databases as an alternative.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 20:42:57 +0000", "from_user": "mrjabba", "from_user_id": 2502591, "from_user_id_str": "2502591", "from_user_name": "Kevin Hutson", "geo": null, "id": 147416373881077760, "id_str": "147416373881077760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/493766507/minime_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/493766507/minime_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "We tried casting \"Dispel Oracle\" and \"Summon MongoDb\" today but we missed our saving throw. Not gonna give up. #nosql #iHateOracle", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 20:32:28 +0000", "from_user": "abdintarkmani", "from_user_id": 89257211, "from_user_id_str": "89257211", "from_user_name": "Abdin", "geo": null, "id": 147413738318868480, "id_str": "147413738318868481", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1578671840/IMG_0561_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1578671840/IMG_0561_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Amusing video to settle MongoDB vs. MySQL argument http://t.co/k5uYA7Rb #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 20:30:42 +0000", "from_user": "arcesino", "from_user_id": 145028614, "from_user_id_str": "145028614", "from_user_name": "Ignacio Arces Garc\\u00EDa", "geo": null, "id": 147413293177372670, "id_str": "147413293177372672", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1671787670/arcesino_gmail.com_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671787670/arcesino_gmail.com_normal.jpg", "source": "<a href="http://hotot.org" rel="nofollow">Hotot</a>", "text": "MySQL 5.6 prove\\u00E9 interfaz NoSQL basada en memcached para InnoDB: http://t.co/28NOLZSr <- Habr\\u00E1 que probarlo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 20:25:05 +0000", "from_user": "satolone", "from_user_id": 398507580, "from_user_id_str": "398507580", "from_user_name": "Scott Tolone", "geo": null, "id": 147411879361384450, "id_str": "147411879361384448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1683949662/GlobalBigData_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683949662/GlobalBigData_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "It's easy to forget when looking at NoSQL choices that Amazon SimpleDB is another choice for a scalable non-relational data store.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 20:14:20 +0000", "from_user": "wjdataguy", "from_user_id": 23024212, "from_user_id_str": "23024212", "from_user_name": "Chris Sorensen", "geo": null, "id": 147409173355823100, "id_str": "147409173355823104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1203515105/ChrisS_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1203515105/ChrisS_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @markmadsen: Just read another nosql/Hadoop product's info with a new \"SQL-like language\". Let's create a WTFsql standard and be done with new standards", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 20:13:33 +0000", "from_user": "mmntum", "from_user_id": 432709145, "from_user_id_str": "432709145", "from_user_name": "Momentum", "geo": null, "id": 147408977016262660, "id_str": "147408977016262656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1683752590/SquareLogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683752590/SquareLogo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": ".@MySQL is thriving... congrats to the team pushing through despite @Oracle http://t.co/PtGfUBhq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 20:13:01 +0000", "from_user": "jaymyers", "from_user_id": 14135365, "from_user_id_str": "14135365", "from_user_name": "jay myers", "geo": null, "id": 147408843947769860, "id_str": "147408843947769856", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/521280134/jaymyers-twitpic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/521280134/jaymyers-twitpic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@doylecentral @bsletten netkernel, spring, riak (or other nosql stores), cloud", "to_user": "doylecentral", "to_user_id": 17042418, "to_user_id_str": "17042418", "to_user_name": "doylecentral", "in_reply_to_status_id": 147398577700868100, "in_reply_to_status_id_str": "147398577700868097"}, +{"created_at": "Thu, 15 Dec 2011 20:05:05 +0000", "from_user": "satolone", "from_user_id": 398507580, "from_user_id_str": "398507580", "from_user_name": "Scott Tolone", "geo": null, "id": 147406846494384130, "id_str": "147406846494384130", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1683949662/GlobalBigData_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683949662/GlobalBigData_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Good look at failure characteristics of the major NoSQL databases. http://t.co/F0Bju0DD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 20:04:07 +0000", "from_user": "rahulgchaudhary", "from_user_id": 93134027, "from_user_id_str": "93134027", "from_user_name": "Rahul Chaudhary", "geo": null, "id": 147406600951431170, "id_str": "147406600951431168", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1148856768/rahulchaudhary_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1148856768/rahulchaudhary_normal.jpg", "source": "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", "text": "FoneDoktor, A WibiData Application via @nosqlweekly http://t.co/GjmZqj4B #hbase #hadoop #nosql #android", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:47:52 +0000", "from_user": "Tamsen_Creative", "from_user_id": 327035351, "from_user_id_str": "327035351", "from_user_name": "Teya Tamsen", "geo": null, "id": 147402513493143550, "id_str": "147402513493143552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1659755309/3004166359_0f6ef0051d_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659755309/3004166359_0f6ef0051d_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @techielicous: The New Microsoft-Hadoop Hosting Deal - Infoboom: The New Microsoft-Hadoop Hosting DealInfoboomH... http://t.co/6Q8XZaSk #nosql #bigData", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:47:14 +0000", "from_user": "techielicous", "from_user_id": 240306053, "from_user_id_str": "240306053", "from_user_name": "Josette Rigsby", "geo": null, "id": 147402355061694460, "id_str": "147402355061694465", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1250483015/Josette_character_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1250483015/Josette_character_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The New Microsoft-Hadoop Hosting Deal - Infoboom: The New Microsoft-Hadoop Hosting DealInfoboomH... http://t.co/6Q8XZaSk #nosql #bigData", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:46:44 +0000", "from_user": "dspettinga", "from_user_id": 27618508, "from_user_id_str": "27618508", "from_user_name": "Dennis Pettinga", "geo": null, "id": 147402230436343800, "id_str": "147402230436343809", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1659237503/Dennis_Pettinga_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659237503/Dennis_Pettinga_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @gjfmunneke: Iemand ervaring met Cassandra NoSQL database?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:45:20 +0000", "from_user": "php_wwwshop", "from_user_id": 143352881, "from_user_id_str": "143352881", "from_user_name": "phpdevelopers", "geo": null, "id": 147401878093836300, "id_str": "147401878093836289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/896383895/php_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/896383895/php_normal.png", "source": "<a href="http://www.phpdevelopers.com.au" rel="nofollow">PHP Developers</a>", "text": "Working with ScaleBase and NOSQL : http://t.co/AlukvMMP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:35:32 +0000", "from_user": "apivovarov", "from_user_id": 82060789, "from_user_id_str": "82060789", "from_user_name": "Andrey Pivovarov", "geo": null, "id": 147399410685456400, "id_str": "147399410685456384", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1522597920/dbbeer11_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1522597920/dbbeer11_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Safari on iOS</a>", "text": "NoSQL Benchmarking. \\u0418\\u043D\\u0442\\u0435\\u0440\\u0435\\u0441\\u043D\\u043E. http://t.co/hwKBV2vc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:33:51 +0000", "from_user": "eric_girouard", "from_user_id": 16877144, "from_user_id_str": "16877144", "from_user_name": "Eric Girouard", "geo": null, "id": 147398985261400060, "id_str": "147398985261400064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1145079950/5081722742_9b28cfee98_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1145079950/5081722742_9b28cfee98_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Facebook Pulls Back Curtain on #Timeline - Here's the engineer who designed it: \\nhttp://t.co/z92Y6xih #mysql #hadoop #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:29:12 +0000", "from_user": "datachick", "from_user_id": 15534499, "from_user_id_str": "15534499", "from_user_name": "Karen Lopez", "geo": null, "id": 147397815872655360, "id_str": "147397815872655360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1639614262/9a4f5b93-2599-40e2-820e-eed4a5d0ac1a_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639614262/9a4f5b93-2599-40e2-820e-eed4a5d0ac1a_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @markmadsen: Just read another nosql/Hadoop product's info with a new \"SQL-like language\". Let's create a WTFsql standard and be done with new standards", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:25:57 +0000", "from_user": "adrianco", "from_user_id": 13895242, "from_user_id_str": "13895242", "from_user_name": "adrian cockcroft", "geo": null, "id": 147396996511170560, "id_str": "147396996511170560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688583582/zappa_front_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688583582/zappa_front_normal.jpeg", "source": "<a href="http://www.feedly.com" rel="nofollow">feedly</a>", "text": "RT @rhm2k: MySQL Cluster for Highly Available & Scalable Hadoop NodeName http://t.co/B2rd2jI7 < MapR has addressed this. Hortonworks real soon.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:17:25 +0000", "from_user": "markmadsen", "from_user_id": 7648872, "from_user_id_str": "7648872", "from_user_name": "Mark Madsen", "geo": null, "id": 147394851716075520, "id_str": "147394851716075520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/85422990/mark_madsen_pr_1452_bw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/85422990/mark_madsen_pr_1452_bw_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Just read another nosql/Hadoop product's info with a new \"SQL-like language\". Let's create a WTFsql standard and be done with new standards", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:14:26 +0000", "from_user": "alibabaie", "from_user_id": 43753223, "from_user_id_str": "43753223", "from_user_name": "Ali Babaie", "geo": null, "id": 147394100973420540, "id_str": "147394100973420544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701973281/DSC00155-ali_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701973281/DSC00155-ali_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "RT @mahdi: A SMALL cross-section of BIG Data. http://t.co/LbLTtHIX #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:10:45 +0000", "from_user": "rhm2k", "from_user_id": 14065215, "from_user_id_str": "14065215", "from_user_name": "Rich Miller", "geo": null, "id": 147393172287397900, "id_str": "147393172287397888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1178804758/Headshot4b_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1178804758/Headshot4b_normal.jpg", "source": "<a href="http://www.feedly.com" rel="nofollow">feedly</a>", "text": "Reading: Spotify Architecture: The P2P Network http://t.co/OPToZmpx < Q:for FinTech & other low-latency problems, what to use for P2P?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:08:33 +0000", "from_user": "siaqodb", "from_user_id": 111045781, "from_user_id_str": "111045781", "from_user_name": "siaqodb", "geo": null, "id": 147392621168439300, "id_str": "147392621168439297", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1150374147/managerIcon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1150374147/managerIcon_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pwbattles: We've recently implemented #siaqodb in Patchwork. Great NoSQL db solution with native #Unity3D build (X-Platform). Devs should check it out!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:05:42 +0000", "from_user": "iC", "from_user_id": 7483052, "from_user_id_str": "7483052", "from_user_name": "cliveb", "geo": null, "id": 147391902700941300, "id_str": "147391902700941312", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1401754677/cliveb_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1401754677/cliveb_normal.png", "source": "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", "text": "RT @rahulgchaudhary: Heroku, Neo4j and Google Spreadsheet in 10min. Flat via @nosqlweekly http://t.co/bsgDtKB3 #neo4j #nosql #heroku", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:05:07 +0000", "from_user": "ThibArg", "from_user_id": 73433446, "from_user_id_str": "73433446", "from_user_name": "Thibaud Arguillere", "geo": null, "id": 147391755371823100, "id_str": "147391755371823105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1588190673/Thibaud_AP-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1588190673/Thibaud_AP-2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Wakanday: One step closer to a production version.. Wakanda public beta now available! http://t.co/4U1htADz #html5 #javascript #nosql via @wakandasoft", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:01:03 +0000", "from_user": "mahdi", "from_user_id": 718993, "from_user_id_str": "718993", "from_user_name": "Mahdi Taghizadeh", "geo": null, "id": 147390733085708300, "id_str": "147390733085708289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697108280/violet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697108280/violet_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "A SMALL cross-section of BIG Data. http://t.co/niejxhwa #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:52:16 +0000", "from_user": "SCLBase", "from_user_id": 148655629, "from_user_id_str": "148655629", "from_user_name": "ScaleBase", "geo": null, "id": 147388521777336320, "id_str": "147388521777336322", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1190321033/ScaleBaseLogo-facebook_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1190321033/ScaleBaseLogo-facebook_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Why we at ScaleBase love NOSQL solutions - http://t.co/m6zLiw0D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:51:20 +0000", "from_user": "alvaro_zabala", "from_user_id": 286178047, "from_user_id_str": "286178047", "from_user_name": "alvaro.zabala", "geo": null, "id": 147388284815945730, "id_str": "147388284815945728", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1508285834/8OL0FiQf_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1508285834/8OL0FiQf_normal", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @david_bonilla: Oracle #NoSQL: primeras impresiones http://t.co/YpSo3T2D O_o", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:44:36 +0000", "from_user": "spiffxp", "from_user_id": 1975851, "from_user_id_str": "1975851", "from_user_name": "Aaron Crickenberger", "geo": null, "id": 147386593714503680, "id_str": "147386593714503680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1645439159/acrickenberger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645439159/acrickenberger_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @argv0: Props to @roidrage on the @riakhandbook: http://t.co/KE0HzkOT #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:42:53 +0000", "from_user": "Dataversity", "from_user_id": 260472941, "from_user_id_str": "260472941", "from_user_name": "Dataversity", "geo": null, "id": 147386158064742400, "id_str": "147386158064742400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1286039423/DataversityIcon_300px_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1286039423/DataversityIcon_300px_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "#NoSQL Job of the Day: Online Development Manager http://t.co/5o4We5Dd #jobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:35:10 +0000", "from_user": "rahulgchaudhary", "from_user_id": 93134027, "from_user_id_str": "93134027", "from_user_name": "Rahul Chaudhary", "geo": null, "id": 147384218551459840, "id_str": "147384218551459840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1148856768/rahulchaudhary_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1148856768/rahulchaudhary_normal.jpg", "source": "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", "text": "RT @nosqlweekly: #NoSQL Weekly (Issue 55 - December 15, 2011) http://t.co/394mA7eC #riak #mongodb #redis #hadoop #cassandra #hbase #cql #graphdb #neo4j", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:32:13 +0000", "from_user": "klintron", "from_user_id": 3961541, "from_user_id_str": "3961541", "from_user_name": "Klint Finley", "geo": null, "id": 147383475475984400, "id_str": "147383475475984384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693418685/klint-cube_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693418685/klint-cube_normal.JPG", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "8 Most Interesting Companies for Hadoop\\u2019s Future http://t.co/pH49McJs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:28:35 +0000", "from_user": "ericmoritz", "from_user_id": 5972272, "from_user_id_str": "5972272", "from_user_name": "Eric Moritz", "geo": null, "id": 147382561625210880, "id_str": "147382561625210880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1422752129/Photo_on_2011-05-26_at_14.20_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1422752129/Photo_on_2011-05-26_at_14.20_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@roidrage You probably know this already but links in the Riak Handbook go to a 404, http://t.co/j1Zn6F3L", "to_user": "roidrage", "to_user_id": 14658472, "to_user_id_str": "14658472", "to_user_name": "Mathias Meyer", "in_reply_to_status_id": 147380852291145730, "in_reply_to_status_id_str": "147380852291145729"}, +{"created_at": "Thu, 15 Dec 2011 18:27:45 +0000", "from_user": "Wakanday", "from_user_id": 374570568, "from_user_id_str": "374570568", "from_user_name": "JS.everywhere()", "geo": null, "id": 147382350106476540, "id_str": "147382350106476544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1552888936/wakanday-twitter-avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552888936/wakanday-twitter-avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "One step closer to a production version.. Wakanda public beta now available! http://t.co/4U1htADz #html5 #javascript #nosql via @wakandasoft", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:22:41 +0000", "from_user": "pavithratg", "from_user_id": 203434572, "from_user_id_str": "203434572", "from_user_name": "Pavithra Gunasekara", "geo": null, "id": 147381076975816700, "id_str": "147381076975816704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1169916377/20102010115_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1169916377/20102010115_normal.jpg", "source": "<a href="http://www.shareaholic.com" rel="nofollow">shareaholic app</a>", "text": "Origin of NoSQL \\u2022 myNoSQL - http://t.co/gfq1HuVn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:17:30 +0000", "from_user": "nosqlweekly", "from_user_id": 217229304, "from_user_id_str": "217229304", "from_user_name": "NoSQL Weekly", "geo": null, "id": 147379770047479800, "id_str": "147379770047479808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1609431328/nosql-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609431328/nosql-2_normal.jpg", "source": "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", "text": "#NoSQL Weekly (Issue 55 - December 15, 2011) http://t.co/394mA7eC #riak #mongodb #redis #hadoop #cassandra #hbase #cql #graphdb #neo4j", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:17:20 +0000", "from_user": "amorgaut", "from_user_id": 17018913, "from_user_id_str": "17018913", "from_user_name": "Alexandre Morgaut", "geo": null, "id": 147379731224985600, "id_str": "147379731224985600", "iso_language_code": "is", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1386942812/Photo_on_2011-06-08_at_12.11__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1386942812/Photo_on_2011-06-08_at_12.11__2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ThibArg: Yeah! #Wakanda v1 beta is reaaaaady! wakanda.org #ssjs #javascript #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:14:00 +0000", "from_user": "edrendar", "from_user_id": 64034408, "from_user_id_str": "64034408", "from_user_name": "Eduardo Montes d Oca", "geo": null, "id": 147378891848298500, "id_str": "147378891848298498", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1507079853/obladi-762064_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1507079853/obladi-762064_normal.jpg", "source": "<a href="https://wiki.ubuntu.com/Gwibber" rel="nofollow">Ubuntu</a>", "text": "\\u267A @DBmxorg: El concepto \"ausencia de esquema\" implica que no hay \"CREATE TABLE ...\" #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:11:07 +0000", "from_user": "DBmxorg", "from_user_id": 261452842, "from_user_id_str": "261452842", "from_user_name": "DBmx.org", "geo": null, "id": 147378165713612800, "id_str": "147378165713612801", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1263199080/4395953684_419dff284f_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263199080/4395953684_419dff284f_normal.jpg", "source": "<a href="http://timely.is" rel="nofollow">Timely by Demandforce</a>", "text": "El concepto \"ausencia de esquema\" implica que no hay \"CREATE TABLE ...\" #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:07:46 +0000", "from_user": "cgorsline", "from_user_id": 15799729, "from_user_id_str": "15799729", "from_user_name": "Craig Gorsline", "geo": null, "id": 147377324604657660, "id_str": "147377324604657664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1607504361/TWers_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607504361/TWers_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @FrancisShanahan: Really nice summary of #NoSql space from @twthoughts http://t.co/4JSbdAQF @martinfowler", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:06:13 +0000", "from_user": "elharaty", "from_user_id": 22181432, "from_user_id_str": "22181432", "from_user_name": "Darreg Zoomtick", "geo": null, "id": 147376930981806080, "id_str": "147376930981806080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/132214486/emad20_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/132214486/emad20_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @argv0: Props to @roidrage on the @riakhandbook: http://t.co/KE0HzkOT #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:05:04 +0000", "from_user": "cj_account", "from_user_id": 386041966, "from_user_id_str": "386041966", "from_user_name": "Christian Jkr", "geo": null, "id": 147376641327370240, "id_str": "147376641327370241", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1634909448/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634909448/logo_normal.png", "source": "Zite Personalized Magazine", "text": "RT @HadoopNews: #NoSQL Benchmarking http://t.co/C92wt7OF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:57:26 +0000", "from_user": "argv0", "from_user_id": 6509982, "from_user_id_str": "6509982", "from_user_name": "Andy Gross", "geo": null, "id": 147374723553181700, "id_str": "147374723553181696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1599769542/lol_face_Your_MumMom_Jokes-s274x280-119842-535_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599769542/lol_face_Your_MumMom_Jokes-s274x280-119842-535_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Props to @roidrage on the @riakhandbook: http://t.co/KE0HzkOT #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:50:37 +0000", "from_user": "StevevdMerwe", "from_user_id": 38123663, "from_user_id_str": "38123663", "from_user_name": "StevevanderMerwe", "geo": null, "id": 147373006203797500, "id_str": "147373006203797504", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/202914367/steve_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/202914367/steve_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "NoSQL Benchmarking http://t.co/jonnwupY via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:50:01 +0000", "from_user": "HadoopNews", "from_user_id": 251816878, "from_user_id_str": "251816878", "from_user_name": "John Ching", "geo": null, "id": 147372856479711230, "id_str": "147372856479711232", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1244235692/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1244235692/images_normal.jpg", "source": "Zite Personalized Magazine", "text": "#NoSQL Benchmarking http://t.co/C92wt7OF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:45:47 +0000", "from_user": "chichiwiya", "from_user_id": 73620302, "from_user_id_str": "73620302", "from_user_name": "Jeremiah Brusola", "geo": null, "id": 147371791847919600, "id_str": "147371791847919617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1270411639/34326_138005326210882_100000042472085_374899_4909914_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1270411639/34326_138005326210882_100000042472085_374899_4909914_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Having fun with MongoDB. Databases without SQL IS fun! HAHA. #NoSQL #MongoDB #NodeJS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:35:11 +0000", "from_user": "ahmedsiouani", "from_user_id": 29201704, "from_user_id_str": "29201704", "from_user_name": "Ahmed", "geo": null, "id": 147369121644949500, "id_str": "147369121644949505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1300838122/ahmed_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1300838122/ahmed_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @maslett : How to to provide a strongly consistent distributed database and not break CAP Theorem http://t.co/VjCx1PAY #nosql #newsql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:30:43 +0000", "from_user": "JCdelValle", "from_user_id": 8991552, "from_user_id_str": "8991552", "from_user_name": "JC Del Valle", "geo": null, "id": 147368000650096640, "id_str": "147368000650096641", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1656446650/180479_10150097959566794_528191793_6441798_6251849_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656446650/180479_10150097959566794_528191793_6441798_6251849_n_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Tutorial de Neo4j (NOSQL Enterprise database) + Heroku + Google Calc - [Video, ingl\\u00E9s] http://t.co/RUbhymQD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:30:11 +0000", "from_user": "datachick", "from_user_id": 15534499, "from_user_id_str": "15534499", "from_user_name": "Karen Lopez", "geo": null, "id": 147367863261466620, "id_str": "147367863261466624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1639614262/9a4f5b93-2599-40e2-820e-eed4a5d0ac1a_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639614262/9a4f5b93-2599-40e2-820e-eed4a5d0ac1a_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Fabulous IRMAC crowd today. Encouraged by strong turnout this close to holidays. We talked NoSQL, ERDs, hiring, data governance and space.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:26:05 +0000", "from_user": "_OmarGarrido", "from_user_id": 251339484, "from_user_id_str": "251339484", "from_user_name": "Omar Garrido", "geo": null, "id": 147366832720973820, "id_str": "147366832720973824", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1531794152/waghgood_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1531794152/waghgood_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Me lo has dicho todo con la carita O.o RT @david_bonilla \"Oracle #NoSQL: primeras impresiones http://t.co/fkMLFmNr O_o\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:24:20 +0000", "from_user": "olivergierke", "from_user_id": 16736130, "from_user_id_str": "16736130", "from_user_name": "Oliver Gierke", "geo": null, "id": 147366393350848500, "id_str": "147366393350848514", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/69836753/P1000914_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/69836753/P1000914_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @peterneubauer: New JDBC Driver (yes that's right!) for @neo4j by @rickardoberg. Testing help needed! http://t.co/b8XvGoph #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:19:44 +0000", "from_user": "dbouwman", "from_user_id": 2774911, "from_user_id_str": "2774911", "from_user_name": "Dave Bouwman", "geo": null, "id": 147365233458020350, "id_str": "147365233458020352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/96021046/dbouwman-twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/96021046/dbouwman-twitter_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@mclampy yeah - I like the nosql stuff but I'm still not grokkin the reporting/aggregation side of things... so much to say on top of!", "to_user": "mclampy", "to_user_id": 139811258, "to_user_id_str": "139811258", "to_user_name": "Darin Lampson", "in_reply_to_status_id": 147338914200432640, "in_reply_to_status_id_str": "147338914200432640"}, +{"created_at": "Thu, 15 Dec 2011 17:19:07 +0000", "from_user": "codemonkeyism", "from_user_id": 17334287, "from_user_id_str": "17334287", "from_user_name": "Stephan Schmidt", "geo": null, "id": 147365079581589500, "id_str": "147365079581589504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/289074160/Avatar2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/289074160/Avatar2_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @peterneubauer: New JDBC Driver (yes that's right!) for @neo4j by @rickardoberg. Testing help needed! http://t.co/b8XvGoph #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Thu, 15 Dec 2011 17:19:07 +0000", "from_user": "codemonkeyism", "from_user_id": 17334287, "from_user_id_str": "17334287", "from_user_name": "Stephan Schmidt", "geo": null, "id": 147365079581589500, "id_str": "147365079581589504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/289074160/Avatar2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/289074160/Avatar2_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @peterneubauer: New JDBC Driver (yes that's right!) for @neo4j by @rickardoberg. Testing help needed! http://t.co/b8XvGoph #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:14:57 +0000", "from_user": "CharlesFung", "from_user_id": 139343234, "from_user_id_str": "139343234", "from_user_name": "Charles Fung", "geo": null, "id": 147364029327880200, "id_str": "147364029327880193", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/898445247/DSC00661_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/898445247/DSC00661_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Schooner\\u9996\\u5E2D\\u6280\\u672F\\u5B98John Busch\\uFF1AMySQL\\u4F18\\u5316\\u7A7A\\u95F4\\u5E7F\\u9614 NoSQL\\u9769\\u547D\\u4ECD\\u9700\\u7B49\\u5F85: \\n[CSDN\\u4E13\\u8BBF\\u4E13\\u7A3F]\\u00A0 \\u5728\\u65E5\\u524D\\u4E3E\\u884C\\u7684Velocity\\u00A0China\\u00A02011(Web\\u6027\\u80FD\\u548C\\u8FD0\\u7EF4\\u5927\\u4F1A)\\u4E0A\\uFF0CCSDN\\u8BB0\\u8005\\u6709\\u5E78\\u5BF9\\u8BDD\\u4E86... http://t.co/yGVg5Aw9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:13:03 +0000", "from_user": "LuxNoSQL", "from_user_id": 19330336, "from_user_id_str": "19330336", "from_user_name": "Nestor", "geo": null, "id": 147363553509261300, "id_str": "147363553509261312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1123187681/logo_original4_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1123187681/logo_original4_normal.PNG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "MongoDB 2.0.2 has been released\\n\\nhttp://t.co/OWZtzvvE\\n\\n#nosql #bigdata #mongodb #release", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:08:29 +0000", "from_user": "emileifrem", "from_user_id": 14684110, "from_user_id_str": "14684110", "from_user_name": "Emil Eifrem", "geo": null, "id": 147362405494685700, "id_str": "147362405494685696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/53878772/emil-profile-arlanda-2007-08-18-cropped_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/53878772/emil-profile-arlanda-2007-08-18-cropped_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @peterneubauer: New JDBC Driver (yes that's right!) for @neo4j by @rickardoberg. Testing help needed! http://t.co/b8XvGoph #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:04:35 +0000", "from_user": "dsolsona", "from_user_id": 14072958, "from_user_id_str": "14072958", "from_user_name": "dsolsona", "geo": null, "id": 147361424052727800, "id_str": "147361424052727808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: \\u267B Muscula Architecture: Node.js, MongoDB, and CDN http://t.co/mIpiBZrk #Node.js #MongoDB #PoweredbyNoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:04:10 +0000", "from_user": "cbautista1986", "from_user_id": 46025986, "from_user_id_str": "46025986", "from_user_name": "Cristian Bautista ", "geo": null, "id": 147361317743890430, "id_str": "147361317743890432", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/964109810/n1092665553_30039436_1091_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/964109810/n1092665553_30039436_1091_normal.jpg", "source": "<a href="http://www.alphonsolabs.com/" rel="nofollow">Pulse News</a>", "text": "Tutorial de Neo4j (NOSQL Enterprise database) + Heroku + Google Calc - [Video, ingl\\u00E9s] http://t.co/CPXkwqh6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:01:56 +0000", "from_user": "RubyJobsEu", "from_user_id": 403337317, "from_user_id_str": "403337317", "from_user_name": "RubyJobsEu", "geo": +{"coordinates": [42.2708,83.8087], "type": "Point"}, "id": 147360753861664770, "id_str": "147360753861664768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1620564677/ruby_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620564677/ruby_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "AWARD Winning Company wants Ruby on Rails! at Cybercoders (Ann Arbor, MI): Ajax, NoSQL, MongoDB AWARD Winning Co... http://t.co/geaZHlhe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 16:59:29 +0000", "from_user": "dblockdotorg", "from_user_id": 210932450, "from_user_id_str": "210932450", "from_user_name": "Daniel Doubrovkine", "geo": null, "id": 147360137521278980, "id_str": "147360137521278977", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1157542777/13118-DSC_5535_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1157542777/13118-DSC_5535_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@sam_10gen @mongodb yes, we'll have a session on ActiveRecord and will use MongoDB as a NoSQL example", "to_user": "sam_10gen", "to_user_id": 293016538, "to_user_id_str": "293016538", "to_user_name": "Samantha", "in_reply_to_status_id": 147357344324530180, "in_reply_to_status_id_str": "147357344324530176"}, +{"created_at": "Thu, 15 Dec 2011 16:58:10 +0000", "from_user": "mattnowina", "from_user_id": 103869545, "from_user_id_str": "103869545", "from_user_name": "Matt Nowina", "geo": null, "id": 147359808398434300, "id_str": "147359808398434304", "iso_language_code": "eo", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1310193735/eightbit-9aa6f9af-a52d-4215-97f5-8ae5720906f1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1310193735/eightbit-9aa6f9af-a52d-4215-97f5-8ae5720906f1_normal.png", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "Redis Bitmaps for Real-Time Metrics at Spool http://t.co/E66vuKo6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 16:47:02 +0000", "from_user": "ThibArg", "from_user_id": 73433446, "from_user_id_str": "73433446", "from_user_name": "Thibaud Arguillere", "geo": null, "id": 147357007463202800, "id_str": "147357007463202816", "iso_language_code": "is", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1588190673/Thibaud_AP-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1588190673/Thibaud_AP-2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Yeah! #Wakanda v1 beta is reaaaaady! wakanda.org #ssjs #javascript #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 16:45:48 +0000", "from_user": "wso2", "from_user_id": 15594932, "from_user_id_str": "15594932", "from_user_name": "wso2", "geo": null, "id": 147356696015151100, "id_str": "147356696015151104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/57207794/wso2-logo-twitter_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/57207794/wso2-logo-twitter_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "WSO2Con 2011: Data in your SOA: From SQL to NoSQL and Beyond - Sumedha Rubasighe http://t.co/LRb7aeAe #wso2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 16:20:45 +0000", "from_user": "jaganadhg", "from_user_id": 100505040, "from_user_id_str": "100505040", "from_user_name": "Jaganadh G", "geo": null, "id": 147350389354807300, "id_str": "147350389354807296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1341146774/16042011044ngjhghj__copy__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1341146774/16042011044ngjhghj__copy__normal.jpg", "source": "<a href="https://launchpad.net/gwibber" rel="nofollow">Gwibber-Fedora</a>", "text": "\\u267A @mongodb: MongoDB 2.0.2 Released http://t.co/H3dMwzgj #MongoDB #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 16:17:08 +0000", "from_user": "dieswaytoofast", "from_user_id": 312604736, "from_user_id_str": "312604736", "from_user_name": "Mahesh P-Subramanya", "geo": null, "id": 147349481258631170, "id_str": "147349481258631168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1572400317/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572400317/Untitled_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Seriously, why *would* you do it? (Use Heroku's Postgres _outside_ Heroku) http://t.co/BEwJ6ncO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 16:05:10 +0000", "from_user": "Denise_Cornell", "from_user_id": 379150862, "from_user_id_str": "379150862", "from_user_name": "Denise Cornell", "geo": null, "id": 147346468255182850, "id_str": "147346468255182848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695358670/denise-0010_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695358670/denise-0010_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@solo_ifr is like my personal tech Google. I ask him things like What's the \"No\" in NoSQL? & What does it mean to normalize data?", "to_user": "solo_ifr", "to_user_id": 108155373, "to_user_id_str": "108155373", "to_user_name": "Charles Cornell"}, +{"created_at": "Thu, 15 Dec 2011 16:00:33 +0000", "from_user": "emilsit", "from_user_id": 13027552, "from_user_id_str": "13027552", "from_user_name": "Emil Sit", "geo": null, "id": 147345306827239420, "id_str": "147345306827239424", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/713084639/es_20100220_0016_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/713084639/es_20100220_0016_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: 8 Most Interesting Companies for Hadoop's Future http://t.co/DGjsMLzh #Hadoop #Cloudera #Hortonworks #MapR #Hadapt #HPCC #DataStax #Zettaset", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:56:27 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 147344276542595070, "id_str": "147344276542595072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "\\u201C@roidrage: @al3xandru aren't these Qs the same for any hosted DB service? <- they are, but I wanted to place'em in ctx http://t.co/ukppbjMU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:53:09 +0000", "from_user": "BigDataExpo", "from_user_id": 408440808, "from_user_id_str": "408440808", "from_user_name": "BigDataExpo\\u00A9", "geo": null, "id": 147343446653415420, "id_str": "147343446653415424", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1630353587/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630353587/image_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: 8 Most Interesting Companies for Hadoop's Future http://t.co/DGjsMLzh #Hadoop #Cloudera #Hortonworks #MapR #Hadapt #HPCC #DataStax #Zettaset", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:51:24 +0000", "from_user": "hpccsystems", "from_user_id": 136416356, "from_user_id_str": "136416356", "from_user_name": "HPCC Systems", "geo": null, "id": 147343005844647940, "id_str": "147343005844647936", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1385998591/hpccsystems_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1385998591/hpccsystems_twitter_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: 8 Most Interesting Companies for Hadoop's Future http://t.co/DGjsMLzh #Hadoop #Cloudera #Hortonworks #MapR #Hadapt #HPCC #DataStax #Zettaset", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:49:45 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 147342588167454720, "id_str": "147342588167454721", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "Standalone Heroku Postgres' Unanswered Question http://t.co/VdrPL3u8 #PostgreSQL #Heroku #Data-as-a-Service #DaaS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:41:34 +0000", "from_user": "FrancisShanahan", "from_user_id": 15757363, "from_user_id_str": "15757363", "from_user_name": "Francis Shanahan", "geo": null, "id": 147340530051842050, "id_str": "147340530051842049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/108638524/fs_sq_73_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/108638524/fs_sq_73_normal.png", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Really nice summary of #NoSql space from @twthoughts http://t.co/4JSbdAQF @martinfowler", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:38:05 +0000", "from_user": "itworks", "from_user_id": 12643712, "from_user_id_str": "12643712", "from_user_name": "I.T. Works (Patrick)", "geo": null, "id": 147339652544725000, "id_str": "147339652544724992", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1350509294/PATRICKVANRENTERGHEMsquare2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1350509294/PATRICKVANRENTERGHEMsquare2_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Big Data in 2012: Five Predictions - Forbes http://t.co/Qk7TVpnq #bigdata #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:35:09 +0000", "from_user": "mclampy", "from_user_id": 139811258, "from_user_id_str": "139811258", "from_user_name": "Darin Lampson", "geo": null, "id": 147338914200432640, "id_str": "147338914200432640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/879112263/images_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/879112263/images_normal.jpeg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@dbouwman EF makes it so easy to get going. However, I have just run into issues and missed NH. These days I am moving to nosql options", "to_user": "dbouwman", "to_user_id": 2774911, "to_user_id_str": "2774911", "to_user_name": "Dave Bouwman", "in_reply_to_status_id": 147337543153754100, "in_reply_to_status_id_str": "147337543153754113"}, +{"created_at": "Thu, 15 Dec 2011 15:34:50 +0000", "from_user": "robertfriberg", "from_user_id": 28348118, "from_user_id_str": "28348118", "from_user_name": "Robert Friberg", "geo": null, "id": 147338837708914700, "id_str": "147338837708914688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/119040694/robert_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/119040694/robert_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Best NoSQL article ever by @rickyphyllis http://t.co/bgsenbdX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:30:24 +0000", "from_user": "ajfeed", "from_user_id": 260762269, "from_user_id_str": "260762269", "from_user_name": "Ajinkya Feed", "geo": null, "id": 147337720472158200, "id_str": "147337720472158208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "CompSci Standalone Heroku Postgres' Unanswered Question: While the offer is clear and valuable in itself:\\n99.99%... http://t.co/k9qaNWjz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:24:25 +0000", "from_user": "7lucaseduardo", "from_user_id": 328646264, "from_user_id_str": "328646264", "from_user_name": "# lucas maksemovicz", "geo": null, "id": 147336214326951940, "id_str": "147336214326951936", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690039515/twwwittttttttttttttttttttttttt_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690039515/twwwittttttttttttttttttttttttt_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @fernaando: @danielvlopes estou procurando devs em rails, nivel mais avan\\u00E7ado, que ja estejam trabalhando com NoSQL e etc. Tem pra indicar? Abra\\u00E7os", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:20:26 +0000", "from_user": "mynosql_popescu", "from_user_id": 197901055, "from_user_id_str": "197901055", "from_user_name": "myNoSQL", "geo": null, "id": 147335212412583940, "id_str": "147335212412583936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Standalone Heroku Postgres' Unanswered Question: While the offer is clear and valuable in itself:\\n99.99% uptime\\n... http://t.co/0cfAAbVO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:08:48 +0000", "from_user": "techforn10", "from_user_id": 38720166, "from_user_id_str": "38720166", "from_user_name": "Ashwin Kumar Kayyoor", "geo": null, "id": 147332283991474180, "id_str": "147332283991474176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/203526996/manip_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/203526996/manip_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @andreisavu: MySQL Cluster Used to Implement a Highly Available and Scalable Hadoop NodeName http://t.co/5Wgqcu5O", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:08:25 +0000", "from_user": "Cristalmzo", "from_user_id": 434891724, "from_user_id_str": "434891724", "from_user_name": "Justin Lara", "geo": null, "id": 147332188529106940, "id_str": "147332188529106944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693189110/1037698932_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693189110/1037698932_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "InfoQ: Oracle Joins the NoSQL Club:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:05:39 +0000", "from_user": "StarcounterDB", "from_user_id": 117407475, "from_user_id_str": "117407475", "from_user_name": "Starcounter", "geo": null, "id": 147331492408852480, "id_str": "147331492408852480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1304542564/twsc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1304542564/twsc_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "An interesting look at the #NoSQL paradigm (via @sambit19) http://t.co/LWPTriUO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:04:52 +0000", "from_user": "clairedwillett", "from_user_id": 225147537, "from_user_id_str": "225147537", "from_user_name": "Claire Willett", "geo": null, "id": 147331295381434370, "id_str": "147331295381434368", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1617179992/profq_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1617179992/profq_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "\"8 Most Interesting Companies for #Hadoop\\u2019s Future\" @hadapt @datastax @cloudera @hstreaming @mapr @cloudera http://t.co/3K9JLaOG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 14:56:27 +0000", "from_user": "Viroide", "from_user_id": 6294472, "from_user_id_str": "6294472", "from_user_name": "Jon E. Eguiluz", "geo": null, "id": 147329177073352700, "id_str": "147329177073352704", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1560688479/avatar_new_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1560688479/avatar_new_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @dipina: Mi \\u00FAltimo curso (Curso NoSQL) publicado en slideshare: \"NoSQL: la siguiente generaci\\u00F3n de Base de Datos\", http://t.co/hZ92oi4R", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 14:45:09 +0000", "from_user": "mahdi", "from_user_id": 718993, "from_user_id_str": "718993", "from_user_name": "Mahdi Taghizadeh", "geo": null, "id": 147326333914071040, "id_str": "147326333914071040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697108280/violet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697108280/violet_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "EclipseLink JPA Proposal for Usage of NoSQL databases, incl. MongoDB, Hadoop, Cassandra, et al. http://t.co/nukHlixL #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 14:43:49 +0000", "from_user": "kampees", "from_user_id": 73797545, "from_user_id_str": "73797545", "from_user_name": "Kampee", "geo": null, "id": 147325998898221060, "id_str": "147325998898221058", "iso_language_code": "th", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700631203/k1_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700631203/k1_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "MongoDB 2.0.2 \\u0E40\\u0E1E\\u0E34\\u0E48\\u0E07\\u0E2D\\u0E31\\u0E1A\\u0E40\\u0E14\\u0E15\\u0E43\\u0E2B\\u0E21\\u0E48 \\u0E2A\\u0E33\\u0E2B\\u0E23\\u0E31\\u0E1A\\u0E42\\u0E1B\\u0E23\\u0E41\\u0E01\\u0E23\\u0E21\\u0E40\\u0E21\\u0E2D\\u0E23\\u0E4C\\u0E17\\u0E35\\u0E48\\u0E43\\u0E0A\\u0E49 NoSQL \\u0E2A\\u0E32\\u0E21\\u0E32\\u0E23\\u0E16\\u0E44\\u0E1B\\u0E2D\\u0E31\\u0E1A\\u0E40\\u0E01\\u0E23\\u0E14\\u0E44\\u0E14\\u0E49\\u0E41\\u0E25\\u0E49\\u0E27", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 14:39:06 +0000", "from_user": "dev_links", "from_user_id": 309995604, "from_user_id_str": "309995604", "from_user_name": "Joe Fawzy", "geo": null, "id": 147324808781234180, "id_str": "147324808781234176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "EclipseLink JPA Proposal for Usage of NoSQL databases, incl. MongoDB, Hadoop, Cassandra, et al http://t.co/omrevZBo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 14:33:04 +0000", "from_user": "elie_h", "from_user_id": 61969137, "from_user_id_str": "61969137", "from_user_name": "Elie Habib", "geo": null, "id": 147323292808785920, "id_str": "147323292808785921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1631821626/photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631821626/photo_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "NoSQL bad for startups - read till the end. Epic ! http://t.co/7gtbjpN3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 14:30:23 +0000", "from_user": "kodfejtok", "from_user_id": 425065563, "from_user_id_str": "425065563", "from_user_name": "K\\u00F3dfejt\\u0151k", "geo": null, "id": 147322616754090000, "id_str": "147322616754089984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1666022815/kodfejtok_square_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666022815/kodfejtok_square_logo_normal.jpg", "source": "<a href="http://www.ajaymatharu.com/" rel="nofollow">Tweet Old Post</a>", "text": "H\\u00EDrek,... http://t.co/tq1XBfp9 #adatb\\u00E1zis #android #bugs #gnome #hack #hib\\u00E1k #ice_cream_sandwich #instagram #lockpick #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 14:25:28 +0000", "from_user": "NateOsit", "from_user_id": 17974442, "from_user_id_str": "17974442", "from_user_name": "Nate Osit", "geo": null, "id": 147321378813640700, "id_str": "147321378813640705", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1372856436/nate_avatar_hcsmvac_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1372856436/nate_avatar_hcsmvac_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @InterSystems: Congratulations to @antoshalee, winner of the@InterSystems 2nd Globals Challenge! - http://t.co/aKuMAeiC - #NoSQL #DBMS #Java #Node.js", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 14:17:14 +0000", "from_user": "andreisavu", "from_user_id": 14943648, "from_user_id_str": "14943648", "from_user_name": "Andrei Savu", "geo": null, "id": 147319308970770430, "id_str": "147319308970770432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1488349563/IMG_0279_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1488349563/IMG_0279_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "MySQL Cluster Used to Implement a Highly Available and Scalable Hadoop NodeName http://t.co/5Wgqcu5O", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 14:08:38 +0000", "from_user": "mynosql_popescu", "from_user_id": 197901055, "from_user_id_str": "197901055", "from_user_name": "myNoSQL", "geo": null, "id": 147317141878734850, "id_str": "147317141878734849", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "8 Most Interesting Companies for Hadoop's Future: Filtering and augmenting a Q&A on Quora:\\nCloudera: Hadoop dist... http://t.co/3jQJMb1C", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 14:08:36 +0000", "from_user": "realtowz", "from_user_id": 17737123, "from_user_id_str": "17737123", "from_user_name": "Alex", "geo": null, "id": 147317133083291650, "id_str": "147317133083291648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694320075/dennis-the-menace-downloads-271_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694320075/dennis-the-menace-downloads-271_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "I have just seen the light #noSQL #mongodb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 14:05:38 +0000", "from_user": "zenithon", "from_user_id": 5204801, "from_user_id_str": "5204801", "from_user_name": "Joo Youl Lee", "geo": null, "id": 147316389286395900, "id_str": "147316389286395904", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/940608128/jylee4tw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/940608128/jylee4tw_normal.jpg", "source": "Zite Personalized Magazine", "text": "Cassandra, HBase, MongoDB \\uC7A5\\uC560 \\uB300\\uC751 \\uBA54\\uCEE4\\uB2C8\\uC998 http://t.co/ezjisNhP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 14:01:45 +0000", "from_user": "boom1492", "from_user_id": 109881232, "from_user_id_str": "109881232", "from_user_name": "\\uC774\\uC815\\uD604", "geo": null, "id": 147315411136954370, "id_str": "147315411136954368", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1554864133/7R309VOs_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554864133/7R309VOs_normal", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "RT @xguru: 2012 \\uD074\\uB77C\\uC6B0\\uB4DC,PaaS,NoSQL \\uC608\\uC0C1 http://t.co/8C9E6u0D \\uD074\\uB77C\\uC6B0\\uB4DC\\uB294 \\uC0AC\\uC6A9\\uC790\\uC5D0\\uAC8C iCloud/Dropbox\\uCC98\\uB7FC \\uC548\\uBCF4\\uC774\\uAC8C \\uB2E4\\uAC00\\uC624\\uACE0, \\uBAA8\\uBC14\\uC77C \\uAE30\\uAE30 \\uACE0\\uB3C4\\uD654\\uB97C \\uC704\\uD574 \\uD074\\uB77C\\uC6B0\\uB4DC\\uB97C \\uBC31\\uC5D4\\uB4DC\\uB85C \\uC0AC\\uC6A9\\uD558\\uB294 \\uBAA8\\uC2B5\\uC774 \\uB9CE\\uC544\\uC9C8\\uAC83", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 13:59:15 +0000", "from_user": "zenithon", "from_user_id": 5204801, "from_user_id_str": "5204801", "from_user_name": "Joo Youl Lee", "geo": null, "id": 147314782553387000, "id_str": "147314782553387009", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/940608128/jylee4tw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/940608128/jylee4tw_normal.jpg", "source": "Zite Personalized Magazine", "text": "2012\\uB144 Cloud, BigData \\uAE30\\uC220 \\uC804\\uB9DD http://t.co/3W7DY8UA \\uC62C\\uD574\\uC5D0 \\uC774\\uC5B4 \\uB0B4\\uB144\\uC5D0\\uB3C4 BigData App. Platform\\uC758 \\uD544\\uC694\\uC131\\uC744 \\uC8FC\\uC7A5\\uD558\\uB294\\uAD70\\uC694", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 13:59:12 +0000", "from_user": "COTOHA", "from_user_id": 20502974, "from_user_id_str": "20502974", "from_user_name": "COTOHA", "geo": null, "id": 147314766896042000, "id_str": "147314766896041985", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1621085935/cotoha_sad_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621085935/cotoha_sad_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@_TLK \\u043C\\u0434\\u0435... \\u0432\\u043E\\u0442 \\u0442\\u044B \\u0442\\u0430\\u043A \\u0436\\u0435 \\u0443 \\u043D\\u0430\\u0447\\u0430\\u043B\\u044C\\u0441\\u0442\\u0432\\u0430 \\u0431\\u0443\\u0434\\u0435\\u0448\\u044C \\u0440\\u0430\\u0437\\u0440\\u0435\\u0448\\u0435\\u043D\\u0438\\u044F \\u0441\\u043F\\u0440\\u0430\\u0448\\u0438\\u0432\\u0430\\u0442\\u044C \\u043D\\u0430 NoSQL? \\u0434\\u0435\\u043B\\u0430\\u0439, \\u0431\\u043B\\u0438\\u043D! \\u0430 \\u043F\\u043E\\u0442\\u043E\\u043C, \\u0435\\u0441\\u043B\\u0438 \\u0447\\u0442\\u043E, \\u0438\\u0437\\u0432\\u0438\\u043D\\u0438\\u0448\\u044C\\u0441\\u044F...", "to_user": "_TLK", "to_user_id": 111316503, "to_user_id_str": "111316503", "to_user_name": "Anatoliy Kolesnick", "in_reply_to_status_id": 147311253503754240, "in_reply_to_status_id_str": "147311253503754241"}, +{"created_at": "Thu, 15 Dec 2011 13:56:04 +0000", "from_user": "mattnowina", "from_user_id": 103869545, "from_user_id_str": "103869545", "from_user_name": "Matt Nowina", "geo": null, "id": 147313981126754300, "id_str": "147313981126754305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1310193735/eightbit-9aa6f9af-a52d-4215-97f5-8ae5720906f1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1310193735/eightbit-9aa6f9af-a52d-4215-97f5-8ae5720906f1_normal.png", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "Spotify Architecture: The Peer to Peer Network http://t.co/0PbfkdKi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 13:42:24 +0000", "from_user": "zucaritask", "from_user_id": 50553371, "from_user_id_str": "50553371", "from_user_name": "Mariano Valles", "geo": null, "id": 147310540862144500, "id_str": "147310540862144512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/281355691/foto3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/281355691/foto3_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "After a post by @lalithsuresh http://t.co/bEn3lulp, I can't believe the repercussions http://t.co/Acflc00J", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 13:37:53 +0000", "from_user": "OraTweets", "from_user_id": 90651613, "from_user_id_str": "90651613", "from_user_name": "Iggy Fernandez", "geo": null, "id": 147309402431561730, "id_str": "147309402431561728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/531065932/Iggy_Fernandez_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/531065932/Iggy_Fernandez_normal.JPG", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @atmanes: A DBA walks into a NOSQL bar, but turns and leaves because he couldn't find a table - via @cuttertweets and many others.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 13:29:04 +0000", "from_user": "mandubian", "from_user_id": 200653266, "from_user_id_str": "200653266", "from_user_name": "mandubian", "geo": null, "id": 147307185280520200, "id_str": "147307185280520193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1140994143/lampe_588x368_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1140994143/lampe_588x368_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Zenklys As usual, there will be modules for each NoSQL DB at least! Mongo already works with it afaik!", "to_user": "Zenklys", "to_user_id": 39550728, "to_user_id_str": "39550728", "to_user_name": "Michiel Missotten", "in_reply_to_status_id": 147306573507731460, "in_reply_to_status_id_str": "147306573507731456"}, +{"created_at": "Thu, 15 Dec 2011 13:26:38 +0000", "from_user": "Zenklys", "from_user_id": 39550728, "from_user_id_str": "39550728", "from_user_name": "Michiel Missotten", "geo": null, "id": 147306573507731460, "id_str": "147306573507731456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1164264095/Logo-lilweb_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1164264095/Logo-lilweb_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@mandubian Btw any news about NoSQL and Play2?", "to_user": "mandubian", "to_user_id": 200653266, "to_user_id_str": "200653266", "to_user_name": "mandubian", "in_reply_to_status_id": 147305437346275330, "in_reply_to_status_id_str": "147305437346275328"}, +{"created_at": "Thu, 15 Dec 2011 13:23:03 +0000", "from_user": "QuarkGluonHQ", "from_user_id": 360557721, "from_user_id_str": "360557721", "from_user_name": "QuarkGluon", "geo": null, "id": 147305671870775300, "id_str": "147305671870775297", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1510010027/twitter_logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1510010027/twitter_logo_normal.png", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: MySQL Cluster Used to Implement a Highly Available and Scalable Hadoop NodeName http://t.co/jd3lo3Dh #MySQLCluster #Hadoop #HDFS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 13:22:07 +0000", "from_user": "mandubian", "from_user_id": 200653266, "from_user_id_str": "200653266", "from_user_name": "mandubian", "geo": null, "id": 147305437346275330, "id_str": "147305437346275328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1140994143/lampe_588x368_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1140994143/lampe_588x368_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Zenklys NoSQL was fresh air injected into the stale SQL DB cartel! Only this argument makes it worth ;)", "to_user": "Zenklys", "to_user_id": 39550728, "to_user_id_str": "39550728", "to_user_name": "Michiel Missotten", "in_reply_to_status_id": 147303113227907070, "in_reply_to_status_id_str": "147303113227907072"}, +{"created_at": "Thu, 15 Dec 2011 13:12:53 +0000", "from_user": "Zenklys", "from_user_id": 39550728, "from_user_id_str": "39550728", "from_user_name": "Michiel Missotten", "geo": null, "id": 147303113227907070, "id_str": "147303113227907072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1164264095/Logo-lilweb_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1164264095/Logo-lilweb_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Very nice comments on this posts. The first two to be precise : http://t.co/q2HpCamm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 13:11:31 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 147302766858084350, "id_str": "147302766858084352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "MySQL Cluster Used to Implement a Highly Available and Scalable Hadoop NodeName http://t.co/jd3lo3Dh #MySQLCluster #Hadoop #HDFS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 13:07:26 +0000", "from_user": "joeharris76", "from_user_id": 18681946, "from_user_id_str": "18681946", "from_user_name": "Joe Harris", "geo": null, "id": 147301740016975870, "id_str": "147301740016975873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691544593/new_profile_square_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691544593/new_profile_square_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Hyder NoSQL DB \"The log is the database.\" http://t.co/ghsJ9d6J\\nLike! Uses binary search tree, rather than stratified b-tree a la @Acunu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 13:05:02 +0000", "from_user": "saltfactory", "from_user_id": 20606823, "from_user_id_str": "20606823", "from_user_name": "saltfactory", "geo": null, "id": 147301136934764540, "id_str": "147301136934764544", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1130313161/000001_140_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1130313161/000001_140_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@doortts \\u314B\\u314B \\uC800\\uB3C4 \\uBA70\\uCE60\\uC804\\uC5D0 \\uADF8 \\uACE0\\uBBFC\\uD558\\uB2E4\\uAC00 MySQL\\uB85C \\uC2DC\\uC791\\uD588\\uC2B5\\uB2C8\\uB2E4. \\uACB0\\uB860\\uC740 NoSQL\\uC774 \\uC4F0\\uC77C\\uACF3\\uC5D0 NoSQL\\uC744 \\uC4F0\\uBA74\\uB418\\uACE0 \\uAD73\\uC774 MySQL\\uB85C \\uC11C\\uBE44\\uC2A4\\uAC00 \\uBB38\\uC81C \\uC5C6\\uB294\\uB370 \\uBB34\\uB9AC\\uD574\\uC11C \\uC2DC\\uB3C4\\uD558\\uC9C0 \\uB9D0\\uC790\\uB294\\uAC8C \\uACB0\\uB860\\uC774\\uC600\\uC2B5\\uB2C8\\uB2E4~", "to_user": "doortts", "to_user_id": 53479782, "to_user_id_str": "53479782", "to_user_name": "\\uC5EC\\uB984\\uC73C\\uB85C \\uAC00\\uB294 \\uBB38"}, +{"created_at": "Thu, 15 Dec 2011 13:04:19 +0000", "from_user": "scroogy_choi", "from_user_id": 86291811, "from_user_id_str": "86291811", "from_user_name": "\\uCD5C\\uC601\\uBAA9", "geo": null, "id": 147300955845701630, "id_str": "147300955845701632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1251201717/myPicture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1251201717/myPicture_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"HBase, Cassandra, and MongoDB - How They Recover From a Failure\" http://t.co/tVxBQJj5 #HBase #Cassandra #MongoDB #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 13:01:16 +0000", "from_user": "Zenklys", "from_user_id": 39550728, "from_user_id_str": "39550728", "from_user_name": "Michiel Missotten", "geo": null, "id": 147300187721842700, "id_str": "147300187721842688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1164264095/Logo-lilweb_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1164264095/Logo-lilweb_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@clemherreman Check this out about the ChtiJug NoSQL : http://t.co/zW4lPie4", "to_user": "clemherreman", "to_user_id": 126346874, "to_user_id_str": "126346874", "to_user_name": "Cl\\u00E9ment Herreman"}, +{"created_at": "Thu, 15 Dec 2011 12:58:00 +0000", "from_user": "sshishkin", "from_user_id": 126725290, "from_user_id_str": "126725290", "from_user_name": "Sergey Shishkin", "geo": null, "id": 147299367550849020, "id_str": "147299367550849024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/777292604/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/777292604/me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nosqlmatters: Our new website is online! From now on you can find current information about the #nosql #conference #2012 here: http://t.co/aYrAfS7l", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 12:56:25 +0000", "from_user": "enterprise4c", "from_user_id": 426729470, "from_user_id_str": "426729470", "from_user_name": "enterprise4c", "geo": null, "id": 147298967556853760, "id_str": "147298967556853760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1669844035/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669844035/images_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"HBase, Cassandra, and MongoDB - How They Recover From a Failure\" http://t.co/tVxBQJj5 #HBase #Cassandra #MongoDB #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 12:56:24 +0000", "from_user": "beyond4ee", "from_user_id": 410516547, "from_user_id_str": "410516547", "from_user_name": "taeki.kim", "geo": null, "id": 147298964880883700, "id_str": "147298964880883712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1634760269/kimTK_reasonably_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634760269/kimTK_reasonably_small_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"HBase, Cassandra, and MongoDB - How They Recover From a Failure\" http://t.co/tVxBQJj5 #HBase #Cassandra #MongoDB #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 12:56:23 +0000", "from_user": "enterprise4j", "from_user_id": 236021267, "from_user_id_str": "236021267", "from_user_name": "Enterprise4J", "geo": null, "id": 147298959948394500, "id_str": "147298959948394496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1635237821/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635237821/logo_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"HBase, Cassandra, and MongoDB - How They Recover From a Failure\" http://t.co/tVxBQJj5 #HBase #Cassandra #MongoDB #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 12:56:20 +0000", "from_user": "beyondj2ee", "from_user_id": 57343233, "from_user_id_str": "57343233", "from_user_name": "Taeki Kim", "geo": null, "id": 147298945817788400, "id_str": "147298945817788416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690404774/kimTK_reasonably_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690404774/kimTK_reasonably_small_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"HBase, Cassandra, and MongoDB - How They Recover From a Failure\" http://t.co/tVxBQJj5 #HBase #Cassandra #MongoDB #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 12:53:02 +0000", "from_user": "paranoiase", "from_user_id": 30003059, "from_user_id_str": "30003059", "from_user_name": "\\uAC15\\uC131\\uD76C", "geo": null, "id": 147298117228834800, "id_str": "147298117228834816", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685286319/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685286319/profile_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @doortts: \\uC2E0\\uADDC \\uC11C\\uBE44\\uC2A4\\uC5D0 NoSQL\\uC744 \\uC4F8 \\uAC83\\uC778\\uAC00? \\uC544\\uB2C8\\uBA74 MySQL\\uAC19\\uC740 RDBMS\\uB97C \\uC4F8 \\uAC83\\uC778\\uAC00?\\uC5D0 \\uB300\\uD55C \\uACE0\\uBBFC\\uC740 \\uBCF8\\uC778\\uC758 \\uC11C\\uBE44\\uC2A4\\uAC00 \\uC0AC\\uB78C\\uB4E4\\uC5D0\\uAC8C (\\uBB34\\uC9C0)\\uB9CE\\uC774 \\uC4F0\\uC774\\uACE0 \\uB098\\uC11C \\uACE0\\uBBFC\\uD574\\uB3C4 \\uB2A6\\uC9C0 \\uC54A\\uB2E4. \\uADF8\\uB9AC\\uB2C8 \\uC6B0\\uC120\\uC740 \\uCF54\\uB4DC\\uBD80\\uD130 \\uC880 \\uC791\\uC131\\uC744...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 12:51:14 +0000", "from_user": "ewolff", "from_user_id": 15058614, "from_user_id_str": "15058614", "from_user_name": "Eberhard Wolff", "geo": null, "id": 147297664608907260, "id_str": "147297664608907264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/55233631/portraetminineu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/55233631/portraetminineu_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nosqlmatters: Our new website is online! From now on you can find current information about the #nosql #conference #2012 here: http://t.co/aYrAfS7l", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 12:50:41 +0000", "from_user": "pavlobaron", "from_user_id": 70747148, "from_user_id_str": "70747148", "from_user_name": "Pavlo Baron", "geo": null, "id": 147297528029777920, "id_str": "147297528029777920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1670021014/bad-santa-free_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670021014/bad-santa-free_3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nosqlmatters: Our new website is online! From now on you can find current information about the #nosql #conference #2012 here: http://t.co/aYrAfS7l", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 12:42:35 +0000", "from_user": "TopDevTweets", "from_user_id": 194520782, "from_user_id_str": "194520782", "from_user_name": "TopDevTweets", "geo": null, "id": 147295486167105540, "id_str": "147295486167105538", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"HBase, Cassandra, and MongoDB - How They Recover From a Failure\" http://t.co/tVxBQJj5 #HBase #Cassandra #MongoDB #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 12:39:36 +0000", "from_user": "AyuuFebrina", "from_user_id": 105988800, "from_user_id_str": "105988800", "from_user_name": "Ayu Febrina", "geo": +{"coordinates": [0.5444,101.4177], "type": "Point"}, "id": 147294738716966900, "id_str": "147294738716966912", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674923827/ggggg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674923827/ggggg_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @INDOBARCELONA: FT: Bar\\u00E7a 4 - 0 Al-sadd (Adriano 2, keita, Maxwell. Next Final vs Santos #ViscaBarca #AnimsVilla http://t.co/To7mgJWf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 12:36:57 +0000", "from_user": "okiess", "from_user_id": 24673, "from_user_id_str": "24673", "from_user_name": "Oliver Kiessler", "geo": null, "id": 147294070476247040, "id_str": "147294070476247040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/15228652/oli128_128_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/15228652/oli128_128_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nosqlmatters: Our new website is online! From now on you can find current information about the #nosql #conference #2012 here: http://t.co/aYrAfS7l", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 12:35:08 +0000", "from_user": "belowski", "from_user_id": 14762518, "from_user_id_str": "14762518", "from_user_name": "Patrick Belowski", "geo": null, "id": 147293611527114750, "id_str": "147293611527114752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/569479575/cdc1f909a.3181454_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/569479575/cdc1f909a.3181454_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nosqlmatters: Our new website is online! From now on you can find current information about the #nosql #conference #2012 here: http://t.co/aYrAfS7l", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 12:34:06 +0000", "from_user": "nosqlmatters", "from_user_id": 356704483, "from_user_id_str": "356704483", "from_user_name": "NoSQL Conference CGN", "geo": null, "id": 147293350528172030, "id_str": "147293350528172032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694725716/F105300787_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694725716/F105300787_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Our new website is online! From now on you can find current information about the #nosql #conference #2012 here: http://t.co/aYrAfS7l", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 12:27:08 +0000", "from_user": "hstef", "from_user_id": 20662303, "from_user_id_str": "20662303", "from_user_name": "Hubert STEFANI", "geo": null, "id": 147291599859224580, "id_str": "147291599859224576", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/669885233/logoHbz_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/669885233/logoHbz_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "petit dej' @OCTOTechonlogy: tr\\u00E8s belle pr\\u00E9sentation des enjeux et paradigmes #NoSQL, puis SQLFire en solution performante et scalable.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 12:22:55 +0000", "from_user": "alessioalex", "from_user_id": 159135821, "from_user_id_str": "159135821", "from_user_name": "alessio alex", "geo": null, "id": 147290539170074620, "id_str": "147290539170074624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1020302694/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1020302694/avatar_normal.jpg", "source": "<a href="http://proxlet.com" rel="nofollow">Proxlet</a>", "text": "NoSQL is bad for startups? Read this article: http://t.co/YcyJXoJE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 12:19:40 +0000", "from_user": "raul_herranz", "from_user_id": 382547020, "from_user_id_str": "382547020", "from_user_name": "Ra\\u00FAl Herranz", "geo": null, "id": 147289719124922370, "id_str": "147289719124922368", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1566341389/herranz_serrano_raul_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566341389/herranz_serrano_raul_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Ut\\u00F3pica Inform\\u00E1tica: Veo que por alg\\u00FAn problema no se hab\\u00EDa publicado aqu\\u00ED en twitter mi post de introducci\\u00F3n a #NoSQL: http://t.co/0yNeNNbU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 12:04:07 +0000", "from_user": "technige", "from_user_id": 120269446, "from_user_id_str": "120269446", "from_user_name": "Nigel Small", "geo": null, "id": 147285805671530500, "id_str": "147285805671530499", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1666826531/dragon-white.200x200_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666826531/dragon-white.200x200_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_adell: #Neo4jPHP 0.0.6-beta released! Fulltext indexing, named Cypher/Gremlin parameters http://t.co/Z7d1Btf6 #neo4j #graphdb #nosql #php", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 12:03:34 +0000", "from_user": "chananb", "from_user_id": 21512594, "from_user_id_str": "21512594", "from_user_name": "Chanan Braunstein", "geo": null, "id": 147285670610731000, "id_str": "147285670610731008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/225231315/us_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/225231315/us_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @RavenDB: New stable build is out http://t.co/XodioVhN #dotnet #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 11:55:29 +0000", "from_user": "cuerty", "from_user_id": 14997220, "from_user_id_str": "14997220", "from_user_name": "Angel Freire", "geo": null, "id": 147283636125835260, "id_str": "147283636125835264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1143092774/14108_1177760464776_1851074858_338185_5849247_s_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1143092774/14108_1177760464776_1851074858_338185_5849247_s_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @eitikimura: NoSql Benchmarking\\nhttp://t.co/1k9MgsGf\\n#cassandra, #mongodb, #hbase very informative", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 11:46:43 +0000", "from_user": "nawroth", "from_user_id": 8653792, "from_user_id_str": "8653792", "from_user_name": "Anders Nawroth", "geo": null, "id": 147281430022602750, "id_str": "147281430022602752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/523474573/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/523474573/avatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_adell: #Neo4jPHP 0.0.6-beta released! Fulltext indexing, named Cypher/Gremlin parameters http://t.co/Z7d1Btf6 #neo4j #graphdb #nosql #php", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 11:44:54 +0000", "from_user": "eitikimura", "from_user_id": 143991167, "from_user_id_str": "143991167", "from_user_name": "Eiti Kimura", "geo": null, "id": 147280972059127800, "id_str": "147280972059127808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1236823590/174117_100002017854386_2247361_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1236823590/174117_100002017854386_2247361_q_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSql Benchmarking\\nhttp://t.co/1k9MgsGf\\n#cassandra, #mongodb, #hbase very informative", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 11:30:40 +0000", "from_user": "iordanis_g", "from_user_id": 95617311, "from_user_id_str": "95617311", "from_user_name": "Iordanis Giannakakis", "geo": null, "id": 147277387778883600, "id_str": "147277387778883584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/568594366/Jor2_ht_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/568594366/Jor2_ht_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Using MySQL as NoSQL: http://t.co/IswpmrpY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 10:50:33 +0000", "from_user": "philjones88", "from_user_id": 72888516, "from_user_id_str": "72888516", "from_user_name": "Phil Jones", "geo": null, "id": 147267294530248700, "id_str": "147267294530248705", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1599161702/20111021_094600_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599161702/20111021_094600_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @RavenDB: New stable build is out http://t.co/XodioVhN #dotnet #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 10:49:00 +0000", "from_user": "AtosWorldline", "from_user_id": 403727654, "from_user_id_str": "403727654", "from_user_name": "Atos Worldline", "geo": null, "id": 147266905328201730, "id_str": "147266905328201728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1619491938/logo_worldline-carre_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619491938/logo_worldline-carre_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @Atos: Atos\\u2019 Scientific Community #whitepaper Understanding the capabilities and limits of NoSQL and distributed-computing technologies...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 10:29:44 +0000", "from_user": "antonioalegria", "from_user_id": 25085130, "from_user_id_str": "25085130", "from_user_name": "Ant\\u00F3nio Alegria", "geo": null, "id": 147262056737947650, "id_str": "147262056737947648", "iso_language_code": "eo", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1544454254/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544454254/avatar_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: \\u267B Redis Bitmaps for Real-Time Metrics at Spool http://t.co/cAvum5MA #Redis #PoweredbyNoSQL #Spool", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 09:31:34 +0000", "from_user": "sebprunier", "from_user_id": 145972643, "from_user_id_str": "145972643", "from_user_name": "S\\u00E9bastien PRUNIER", "geo": null, "id": 147247415345430530, "id_str": "147247415345430528", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1653935042/large_226306_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653935042/large_226306_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Ca traine pas sur http://t.co/uhLbPtFZ :-) http://t.co/Bv7WcSjk #hibernate #cloud /cc @nantesjug", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 09:23:23 +0000", "from_user": "rickardoberg", "from_user_id": 27801862, "from_user_id_str": "27801862", "from_user_name": "Rickard \\u00D6berg", "geo": null, "id": 147245359209512960, "id_str": "147245359209512960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/115713860/rickardcityface_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/115713860/rickardcityface_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @peterneubauer: New JDBC Driver (yes that's right!) for @neo4j by @rickardoberg. Testing help needed! http://t.co/NE7oiahf #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 09:10:06 +0000", "from_user": "haqen", "from_user_id": 281439302, "from_user_id_str": "281439302", "from_user_name": "Hakan", "geo": null, "id": 147242014658932740, "id_str": "147242014658932736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1630985055/avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630985055/avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Availability and Operational Stability of NoSQL\\nhttp://t.co/KMcTytSZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 09:04:52 +0000", "from_user": "steveworkman", "from_user_id": 15452755, "from_user_id_str": "15452755", "from_user_name": "Steve Workman", "geo": null, "id": 147240699010617340, "id_str": "147240699010617344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701827605/399012_1000765022322_61103614_47848744_122399880_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701827605/399012_1000765022322_61103614_47848744_122399880_n_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @simondring: What I learnt about building NoSQL solutions on Google App Engine: http://t.co/yxYMaop1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 09:02:58 +0000", "from_user": "enpresadigitala", "from_user_id": 76150626, "from_user_id_str": "76150626", "from_user_name": "Enpresa Digitala", "geo": null, "id": 147240220973211650, "id_str": "147240220973211648", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1268770895/enpresadigitala_tw_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1268770895/enpresadigitala_tw_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @dipina: Mi \\u00FAltimo curso (Curso NoSQL) publicado en slideshare: \"NoSQL: la siguiente generaci\\u00F3n de Base de Datos\", http://t.co/hZ92oi4R", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 08:59:48 +0000", "from_user": "mattsches", "from_user_id": 8056252, "from_user_id_str": "8056252", "from_user_name": "Matthias Gutjahr", "geo": null, "id": 147239422163816450, "id_str": "147239422163816448", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/701268270/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/701268270/twitterProfilePhoto_normal.jpg", "source": "<a href="https://launchpad.net/polly" rel="nofollow">Polly</a>", "text": "Haha! RT @svenkaemper: The hard Life of a NoSQL Coder - http://t.co/wWMtYSwI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 08:59:08 +0000", "from_user": "edhgoose", "from_user_id": 249246227, "from_user_id_str": "249246227", "from_user_name": "Ed Hartwell Goose", "geo": null, "id": 147239255024992260, "id_str": "147239255024992256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1451862407/image_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1451862407/image_normal.PNG", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @simondring: What I learnt about building NoSQL solutions on Google App Engine: http://t.co/yxYMaop1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 08:54:12 +0000", "from_user": "svenkaemper", "from_user_id": 15258237, "from_user_id_str": "15258237", "from_user_name": "Sven Kaemper", "geo": null, "id": 147238014752534530, "id_str": "147238014752534528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1130142230/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1130142230/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "The hard Life of a NoSQL Coder - http://t.co/cPwcQajH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 08:37:53 +0000", "from_user": "sniffdk", "from_user_id": 109310519, "from_user_id_str": "109310519", "from_user_name": "Mads Levring Krohn", "geo": null, "id": 147233907379671040, "id_str": "147233907379671041", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1494644157/me_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1494644157/me_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @RavenDB: New stable build is out http://t.co/XodioVhN #dotnet #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 08:37:47 +0000", "from_user": "adrianco", "from_user_id": 13895242, "from_user_id_str": "13895242", "from_user_name": "adrian cockcroft", "geo": null, "id": 147233882683613200, "id_str": "147233882683613184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688583582/zappa_front_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688583582/zappa_front_normal.jpeg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: \\u267B Card Payment Sytems and the CAP Theorem http://t.co/KI9MXpsU #NoSQLtheory #CAP #distributed", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 08:25:59 +0000", "from_user": "emilcardell", "from_user_id": 14047724, "from_user_id_str": "14047724", "from_user_name": "Emil Cardell", "geo": null, "id": 147230913372225540, "id_str": "147230913372225536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1489581283/twitter-pic_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1489581283/twitter-pic_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @RavenDB: New stable build is out http://t.co/XodioVhN #dotnet #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 08:20:09 +0000", "from_user": "amithegde", "from_user_id": 80529596, "from_user_id_str": "80529596", "from_user_name": "Amit", "geo": null, "id": 147229443428061200, "id_str": "147229443428061184", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1397245937/fb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1397245937/fb_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Intro to NoSQL: http://t.co/wkq8iMhk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 08:16:53 +0000", "from_user": "cfmendible", "from_user_id": 84275426, "from_user_id_str": "84275426", "from_user_name": "Carlos Mendible", "geo": null, "id": 147228621461921800, "id_str": "147228621461921792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1355753737/CFM_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1355753737/CFM_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @RavenDB: New stable build is out http://t.co/XodioVhN #dotnet #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 08:16:45 +0000", "from_user": "luca_julian", "from_user_id": 327896271, "from_user_id_str": "327896271", "from_user_name": "Luca Zulian", "geo": null, "id": 147228590151438340, "id_str": "147228590151438336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1423199319/2PARIS_10marzo-16marzo_2011_043_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1423199319/2PARIS_10marzo-16marzo_2011_043_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @RavenDB: New stable build is out http://t.co/XodioVhN #dotnet #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 08:12:19 +0000", "from_user": "RavenDB", "from_user_id": 331695242, "from_user_id_str": "331695242", "from_user_name": "RavenDB", "geo": null, "id": 147227473644494850, "id_str": "147227473644494848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1438347989/RavenDBliconBurgandy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1438347989/RavenDBliconBurgandy_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "New stable build is out http://t.co/XodioVhN #dotnet #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 08:06:01 +0000", "from_user": "nexruby", "from_user_id": 23553828, "from_user_id_str": "23553828", "from_user_name": "\\uBC15\\uC0C1\\uC8FC(Sangju Park)", "geo": null, "id": 147225885840392200, "id_str": "147225885840392192", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697687104/image_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697687104/image_normal", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "RT @xguru: 2012 \\uD074\\uB77C\\uC6B0\\uB4DC,PaaS,NoSQL \\uC608\\uC0C1 http://t.co/8C9E6u0D \\uD074\\uB77C\\uC6B0\\uB4DC\\uB294 \\uC0AC\\uC6A9\\uC790\\uC5D0\\uAC8C iCloud/Dropbox\\uCC98\\uB7FC \\uC548\\uBCF4\\uC774\\uAC8C \\uB2E4\\uAC00\\uC624\\uACE0, \\uBAA8\\uBC14\\uC77C \\uAE30\\uAE30 \\uACE0\\uB3C4\\uD654\\uB97C \\uC704\\uD574 \\uD074\\uB77C\\uC6B0\\uB4DC\\uB97C \\uBC31\\uC5D4\\uB4DC\\uB85C \\uC0AC\\uC6A9\\uD558\\uB294 \\uBAA8\\uC2B5\\uC774 \\uB9CE\\uC544\\uC9C8\\uAC83", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 08:05:36 +0000", "from_user": "marceloverdijk", "from_user_id": 27459817, "from_user_id_str": "27459817", "from_user_name": "Marcel Overdijk", "geo": null, "id": 147225782186549250, "id_str": "147225782186549248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1608025728/marceloverdijk-twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608025728/marceloverdijk-twitter_normal.png", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "RT @sebastiangozin: I know it's for nosql support but #grails is doing what JPA/Hibernate should have done long ago.\\nhttp://t.co/LTmWAiFg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 08:04:06 +0000", "from_user": "markwigmans", "from_user_id": 7527532, "from_user_id_str": "7527532", "from_user_name": "Mark Wigmans", "geo": null, "id": 147225404145541120, "id_str": "147225404145541120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/837273831/MWI_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/837273831/MWI_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "Fast, easy, realtime metrics using Redis bitmaps \\u00AB http://t.co/JPqzcCiw #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Thu, 15 Dec 2011 08:01:17 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 147224696272850940, "id_str": "147224696272850945", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "\\u267B Card Payment Sytems and the CAP Theorem http://t.co/KI9MXpsU #NoSQLtheory #CAP #distributed", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 07:53:52 +0000", "from_user": "ArnaultJeanson", "from_user_id": 153337304, "from_user_id_str": "153337304", "from_user_name": "Arnault Jeanson", "geo": null, "id": 147222829815955460, "id_str": "147222829815955457", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1524129915/Arno-180_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1524129915/Arno-180_normal.jpg", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "RT @vhe74: Cassandra et Hadoop dans les \"10 Most Important Open Source Projects of 2011\" http://t.co/J7GMDVlo #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 07:50:12 +0000", "from_user": "tshanky", "from_user_id": 17313104, "from_user_id_str": "17313104", "from_user_name": "Shashank Tiwari", "geo": null, "id": 147221907148783600, "id_str": "147221907148783616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1335022623/st_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335022623/st_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @graemerocher: Published an updated developer guide for folks interested in creating implementations of GORM http://t.co/a3FMxeuC #grails #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 07:43:49 +0000", "from_user": "juliendubois", "from_user_id": 24742031, "from_user_id_str": "24742031", "from_user_name": "Julien Dubois", "geo": null, "id": 147220300029894660, "id_str": "147220300029894656", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/348313383/julien_dubois_picture240x299_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/348313383/julien_dubois_picture240x299_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ltoinel: @juliendubois merci pour cette intervention au #nantesjug ! http://t.co/q6y3M8cT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 07:43:17 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 147220164339957760, "id_str": "147220164339957760", "iso_language_code": "eo", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "\\u267B Redis Bitmaps for Real-Time Metrics at Spool http://t.co/cAvum5MA #Redis #PoweredbyNoSQL #Spool", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 07:42:21 +0000", "from_user": "cristinagutiu", "from_user_id": 25963959, "from_user_id_str": "25963959", "from_user_name": "Cristina Gutiu", "geo": null, "id": 147219930583023600, "id_str": "147219930583023616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/180299663/me1-small_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/180299663/me1-small_normal.PNG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @peterneubauer: New JDBC Driver (yes that's right!) for @neo4j by @rickardoberg. Testing help needed! http://t.co/b8XvGoph #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 07:42:18 +0000", "from_user": "cti97", "from_user_id": 14624389, "from_user_id_str": "14624389", "from_user_name": "Catalin Istratoiu", "geo": null, "id": 147219919119986700, "id_str": "147219919119986688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1217309563/cata1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1217309563/cata1_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: \\u267B How Does the Future of Computing Look Like? http://t.co/XjqBDoNp #future", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 07:35:16 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 147218148796547070, "id_str": "147218148796547072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "\\u267B How Does the Future of Computing Look Like? http://t.co/XjqBDoNp #future", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 07:16:14 +0000", "from_user": "cuwac1", "from_user_id": 14073470, "from_user_id_str": "14073470", "from_user_name": "Bill C", "geo": null, "id": 147213356896497660, "id_str": "147213356896497664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/95095399/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/95095399/me_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hadoop and Cassandra in the Top 10 Most Important Open Source Projects of 2011: Hadoop and ... http://t.co/44FrmvTe (from Google Reader)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 07:15:27 +0000", "from_user": "peterneubauer", "from_user_id": 14721805, "from_user_id_str": "14721805", "from_user_name": "Peter Neubauer", "geo": null, "id": 147213163786547200, "id_str": "147213163786547200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/348968437/MyPicture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/348968437/MyPicture_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "New JDBC Driver (yes that's right!) for @neo4j by @rickardoberg. Testing help needed! http://t.co/b8XvGoph #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 07:07:06 +0000", "from_user": "peicheng", "from_user_id": 6964482, "from_user_id_str": "6964482", "from_user_name": "peicheng", "geo": null, "id": 147211060695404540, "id_str": "147211060695404544", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/31002152/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/31002152/me_normal.jpg", "source": "<a href="http://plurk.com" rel="nofollow">Plurk</a>", "text": "\\u8AAA http://t.co/fHiOkUZf\\n(\\u4E3A\\u4EC0\\u4E48\\u8BF4\\u5F88\\u591ANoSQL\\u7684Benchmark\\u662F\\u626F\\u6DE1\\uFF1F \\u2013 \\u56DB\\u53F7\\u7A0B\\u5E8F\\u5458) http://t.co/in9tUBHL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 07:06:35 +0000", "from_user": "usul_", "from_user_id": 5528042, "from_user_id_str": "5528042", "from_user_name": "Fran\\u00E7ois Dussert", "geo": null, "id": 147210928289624060, "id_str": "147210928289624064", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1476077804/gravatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1476077804/gravatar_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "MongoDB, Geospatial Indexing, and Advanced Queries\\u2026 http://t.co/snvQpNSk #nosql (via @fauveauarmel)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 06:58:26 +0000", "from_user": "vikramdoctor", "from_user_id": 19016018, "from_user_id_str": "19016018", "from_user_name": "vikram", "geo": null, "id": 147208880743657470, "id_str": "147208880743657472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "A DBA walks into a NOSQL bar, but turns and leaves because he couldn't find a table http://t.co/O5CP8oEo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 06:56:56 +0000", "from_user": "rindai87", "from_user_id": 13677822, "from_user_id_str": "13677822", "from_user_name": "norihiro shimoda", "geo": null, "id": 147208500999757820, "id_str": "147208500999757824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1659014657/317090_311725905522220_100000544408846_1164285_73874304_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659014657/317090_311725905522220_100000544408846_1164285_73874304_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_adell: #Neo4jPHP 0.0.6-beta released! Fulltext indexing, named Cypher/Gremlin parameters http://t.co/Z7d1Btf6 #neo4j #graphdb #nosql #php", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 06:56:40 +0000", "from_user": "dora_kou", "from_user_id": 8914452, "from_user_id_str": "8914452", "from_user_name": "\\u30C9\\u30E9\\u3061\\u3083\\u3093(Dora-kou)", "geo": null, "id": 147208436210343940, "id_str": "147208436210343936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/64436177/DCP00129_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/64436177/DCP00129_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_adell: #Neo4jPHP 0.0.6-beta released! Fulltext indexing, named Cypher/Gremlin parameters http://t.co/Z7d1Btf6 #neo4j #graphdb #nosql #php", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 06:55:25 +0000", "from_user": "neo4j", "from_user_id": 22467617, "from_user_id_str": "22467617", "from_user_name": "Neo4j", "geo": null, "id": 147208118592487420, "id_str": "147208118592487424", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/195275920/square-logo-no-text-2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/195275920/square-logo-no-text-2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @frankgreco: Dec 21 #NYJavaSIG Meeting - #Neo4J - High Performance NoSQL Graph Database - Peter Bell - CTO Skinnio - register at http://t.co/mVagPiVz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 05:43:39 +0000", "from_user": "dauber", "from_user_id": 14314245, "from_user_id_str": "14314245", "from_user_name": "Mike Dauber", "geo": null, "id": 147190059177746430, "id_str": "147190059177746432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/571903615/30syd_mike_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/571903615/30syd_mike_normal.JPG", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "How long before this is common? 5 yrs? \\u201C@elubow: NorthWestern offers masters in analytics with #Cassandra #NoSQL. http://t.co/SSQsFJ9k \\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 05:39:04 +0000", "from_user": "adrianco", "from_user_id": 13895242, "from_user_id_str": "13895242", "from_user_name": "adrian cockcroft", "geo": null, "id": 147188907182788600, "id_str": "147188907182788609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688583582/zappa_front_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688583582/zappa_front_normal.jpeg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "RT @elubow: NorthWestern offers masters in analytics with #Cassandra #NoSQL. http://t.co/rTjc1He3 Awesome on so many levels.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 05:29:25 +0000", "from_user": "gahea", "from_user_id": 40652982, "from_user_id_str": "40652982", "from_user_name": "August Shin", "geo": null, "id": 147186477183406080, "id_str": "147186477183406080", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/299434409/3331754597_b104e54515_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/299434409/3331754597_b104e54515_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "\\uBAA8\\uBC14\\uC77C \\uD3EC\\uD138 \\uD50C\\uB7AB\\uD3FC \\uB9CC\\uB4E4\\uAE30. \\uC624\\uB298\\uB85C\\uC11C \\uD3EC\\uAE30. \\uBE45\\uD14C\\uC774\\uBE14\\uACFC \\uD06C\\uB77C\\uC6B0\\uB4DC \\uB4F1\\uC758 \\uC804\\uBB38\\uC601\\uC5ED\\uC744 \\uB108\\uBB34 \\uC27D\\uAC8C \\uC0DD\\uAC01\\uD55C\\uB4EF. \\uB355\\uBD84\\uC5D0 aws, cluster, nosql, \\uAC80\\uC0C9\\uC5D4\\uC9C4\\uC5D0 \\uAC01\\uC885 php \\uD504\\uB808\\uC784\\uC6CD\\uC744 \\uB2E4 \\uC368\\uBD24\\uB124.. \\uB2E8\\uC9C0 \\uAE30\\uD68D\\uC790\\uAC00 \\uADF8\\uC9D3\\uC744 \\uD588\\uB2E4\\uB294\\uAC8C \\uC5D0\\uB7EC...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 05:22:22 +0000", "from_user": "oWretch", "from_user_id": 193983895, "from_user_id_str": "193983895", "from_user_name": "Jerome Brown", "geo": null, "id": 147184704267886600, "id_str": "147184704267886592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1129473264/Facebook_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1129473264/Facebook_normal.png", "source": "<a href="http://www.tweetings.net/" rel="nofollow">Tweetings for iPhone</a>", "text": "@jamesbannan @chrisbrownie @ibbers maybe he's a proponent of #NoSQL ?", "to_user": "jamesbannan", "to_user_id": 31350442, "to_user_id_str": "31350442", "to_user_name": "James Bannan", "in_reply_to_status_id": 147174815273463800, "in_reply_to_status_id_str": "147174815273463808"}, +{"created_at": "Thu, 15 Dec 2011 05:02:19 +0000", "from_user": "emileifrem", "from_user_id": 14684110, "from_user_id_str": "14684110", "from_user_name": "Emil Eifrem", "geo": null, "id": 147179655567392770, "id_str": "147179655567392769", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/53878772/emil-profile-arlanda-2007-08-18-cropped_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/53878772/emil-profile-arlanda-2007-08-18-cropped_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @frankgreco: Dec 21 #NYJavaSIG Meeting - #Neo4J - High Performance NoSQL Graph Database - Peter Bell - CTO Skinnio - register at http://t.co/mVagPiVz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 04:53:08 +0000", "from_user": "fadis_", "from_user_id": 163425786, "from_user_id_str": "163425786", "from_user_name": "Fadis", "geo": null, "id": 147177346485596160, "id_str": "147177346485596160", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1199796678/__3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1199796678/__3_normal.png", "source": "<a href="http://www.tweenapp.org/" rel="nofollow">Tween</a>", "text": "RT @akineko: NoSQL\\u30C7\\u30FC\\u30BF\\u30D9\\u30FC\\u30B9\\u306ERedis\\u3063\\u3066\\u3069\\u3046\\u306A\\u3093\\u3060\\u308D\\u3046\\uFF1F", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 04:37:11 +0000", "from_user": "9inningTech", "from_user_id": 161371365, "from_user_id_str": "161371365", "from_user_name": "9no Inning Technolog", "geo": null, "id": 147173333153222660, "id_str": "147173333153222657", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1045259455/9i_tech_logo_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1045259455/9i_tech_logo_2_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Oracle anuncia que ya est\\u00E1 disponible Oracle NoSQL Database http://t.co/S5RqaWe4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 04:24:54 +0000", "from_user": "http_web", "from_user_id": 203746274, "from_user_id_str": "203746274", "from_user_name": "WEB", "geo": null, "id": 147170241678557200, "id_str": "147170241678557184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1514607077/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1514607077/images_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Researching NoSQL Is No Different Than The Early RDBMS Market http://t.co/kwLD9ot8 #SocialMedia http://t.co/3oXKVtbw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 04:05:02 +0000", "from_user": "rakeshag", "from_user_id": 15173867, "from_user_id_str": "15173867", "from_user_name": "Rakesh Aggarwal", "geo": null, "id": 147165243204845570, "id_str": "147165243204845568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/360864641/beach_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/360864641/beach_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Technology seems to have a circular path for evolution, e.g. : \"No SQL-->SQL-->NoSql\" , \"(Desktop) apps --> Browser --> (Mobile) apps\". #in", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 04:00:26 +0000", "from_user": "scroogy_choi", "from_user_id": 86291811, "from_user_id_str": "86291811", "from_user_name": "\\uCD5C\\uC601\\uBAA9", "geo": null, "id": 147164084981342200, "id_str": "147164084981342208", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1251201717/myPicture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1251201717/myPicture_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "RT @xguru: 2012 \\uD074\\uB77C\\uC6B0\\uB4DC,PaaS,NoSQL \\uC608\\uC0C1 http://t.co/8C9E6u0D \\uD074\\uB77C\\uC6B0\\uB4DC\\uB294 \\uC0AC\\uC6A9\\uC790\\uC5D0\\uAC8C iCloud/Dropbox\\uCC98\\uB7FC \\uC548\\uBCF4\\uC774\\uAC8C \\uB2E4\\uAC00\\uC624\\uACE0, \\uBAA8\\uBC14\\uC77C \\uAE30\\uAE30 \\uACE0\\uB3C4\\uD654\\uB97C \\uC704\\uD574 \\uD074\\uB77C\\uC6B0\\uB4DC\\uB97C \\uBC31\\uC5D4\\uB4DC\\uB85C \\uC0AC\\uC6A9\\uD558\\uB294 \\uBAA8\\uC2B5\\uC774 \\uB9CE\\uC544\\uC9C8\\uAC83", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 03:42:51 +0000", "from_user": "frankgreco", "from_user_id": 53283114, "from_user_id_str": "53283114", "from_user_name": "Frank Greco", "geo": null, "id": 147159659369869300, "id_str": "147159659369869312", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1134151893/FrankG_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1134151893/FrankG_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Dec 21 #NYJavaSIG Meeting - #Neo4J - High Performance NoSQL Graph Database - Peter Bell - CTO Skinnio - register at http://t.co/mVagPiVz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 03:36:10 +0000", "from_user": "tas50", "from_user_id": 16125527, "from_user_id_str": "16125527", "from_user_name": "Tim Smith", "geo": null, "id": 147157979232350200, "id_str": "147157979232350209", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1271973872/Portland_Flag_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1271973872/Portland_Flag_sm_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @cassandra: Announcing the release of #cassandra 1.0.6 (maintenance release), changes: http://t.co/J56N2i4B (http://t.co/B6K04i71) #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 03:15:40 +0000", "from_user": "leandro_storoli", "from_user_id": 46277106, "from_user_id_str": "46277106", "from_user_name": "Leandro Storoli", "geo": null, "id": 147152818501976060, "id_str": "147152818501976065", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1368141969/profile_image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1368141969/profile_image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "http://t.co/w1V1jrvk \\o/", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 03:06:16 +0000", "from_user": "cmeik", "from_user_id": 6815762, "from_user_id_str": "6815762", "from_user_name": "Chris Meiklejohn", "geo": null, "id": 147150453757591550, "id_str": "147150453757591552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/64598958/icon_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/64598958/icon_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @jonpierce: Check out @Basho on @Workvibe today. One of my fav deep tech co's in Boston. Great team, killer product in Riak. http://t.co/KsvmdGbq #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 02:57:00 +0000", "from_user": "hguerreroo", "from_user_id": 101049181, "from_user_id_str": "101049181", "from_user_name": "Hugo Guerrero", "geo": null, "id": 147148118624964600, "id_str": "147148118624964609", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1474699101/twitter_profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1474699101/twitter_profile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "PostgreSQL usado como base NoSQL: http://t.co/V42tJuFw cc @pacocasmar", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 02:55:48 +0000", "from_user": "boushka", "from_user_id": 34294674, "from_user_id_str": "34294674", "from_user_name": "Anna Lee", "geo": null, "id": 147147820598689800, "id_str": "147147820598689792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1511373637/_____45_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1511373637/_____45_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @GlobalsDB: Congratulations to @antoshalee, winner of the @InterSystems 2nd Globals Challenge! - http://t.co/cf11mCWO - #NoSQL #DBMS #Java #Node.js", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 02:49:52 +0000", "from_user": "yunyongchoi", "from_user_id": 30826749, "from_user_id_str": "30826749", "from_user_name": "YunYong Choi (\\uCD5C\\uC724\\uC6A9)", "geo": null, "id": 147146327111905280, "id_str": "147146327111905282", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/135658242/mypic2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/135658242/mypic2_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "RT @xguru: 2012 \\uD074\\uB77C\\uC6B0\\uB4DC,PaaS,NoSQL \\uC608\\uC0C1 http://t.co/8C9E6u0D \\uD074\\uB77C\\uC6B0\\uB4DC\\uB294 \\uC0AC\\uC6A9\\uC790\\uC5D0\\uAC8C iCloud/Dropbox\\uCC98\\uB7FC \\uC548\\uBCF4\\uC774\\uAC8C \\uB2E4\\uAC00\\uC624\\uACE0, \\uBAA8\\uBC14\\uC77C \\uAE30\\uAE30 \\uACE0\\uB3C4\\uD654\\uB97C \\uC704\\uD574 \\uD074\\uB77C\\uC6B0\\uB4DC\\uB97C \\uBC31\\uC5D4\\uB4DC\\uB85C \\uC0AC\\uC6A9\\uD558\\uB294 \\uBAA8\\uC2B5\\uC774 \\uB9CE\\uC544\\uC9C8\\uAC83", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 02:30:06 +0000", "from_user": "MySQLBot_en", "from_user_id": 305160384, "from_user_id_str": "305160384", "from_user_name": "MySQLBot_en", "geo": null, "id": 147141350876397570, "id_str": "147141350876397568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1368954854/mysql_100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1368954854/mysql_100_normal.png", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: \\u267B MySQL MEMORY as Poor Man's Memcached Replacement http://t.co/ql2VnMYJ #MySQL #Memcached", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 02:24:08 +0000", "from_user": "fabianf74", "from_user_id": 181302635, "from_user_id_str": "181302635", "from_user_name": "Fabian Ferdgelis", "geo": null, "id": 147139851152658430, "id_str": "147139851152658432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1630673338/Primer_Plano_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630673338/Primer_Plano_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @marianocifre: NoSQL sessions with jetty7 and jetty8: http://t.co/ocgLjdgB #apache #tomcat #fail?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 02:21:32 +0000", "from_user": "marianocifre", "from_user_id": 15072836, "from_user_id_str": "15072836", "from_user_name": "Mariano Cifre", "geo": null, "id": 147139195289341950, "id_str": "147139195289341952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1127775264/Nano_beer_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1127775264/Nano_beer_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL sessions with jetty7 and jetty8: http://t.co/ocgLjdgB #apache #tomcat #fail?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 02:09:26 +0000", "from_user": "cwestin63", "from_user_id": 162173507, "from_user_id_str": "162173507", "from_user_name": "Chris Westin", "geo": null, "id": 147136149427720200, "id_str": "147136149427720192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1125328797/headshot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1125328797/headshot_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: \\u267B MongoDB: With Adoption Comes... More Adoption http://t.co/vPSJfjAD #MongoDB #OpenShift #RedHat #Joyent #Jaspersoft", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 01:55:37 +0000", "from_user": "assidu", "from_user_id": 60289225, "from_user_id_str": "60289225", "from_user_name": "sangjin", "geo": null, "id": 147132673222119420, "id_str": "147132673222119424", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1480410981/sjbak_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1480410981/sjbak_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "RT @xguru: 2012 \\uD074\\uB77C\\uC6B0\\uB4DC,PaaS,NoSQL \\uC608\\uC0C1 http://t.co/8C9E6u0D \\uD074\\uB77C\\uC6B0\\uB4DC\\uB294 \\uC0AC\\uC6A9\\uC790\\uC5D0\\uAC8C iCloud/Dropbox\\uCC98\\uB7FC \\uC548\\uBCF4\\uC774\\uAC8C \\uB2E4\\uAC00\\uC624\\uACE0, \\uBAA8\\uBC14\\uC77C \\uAE30\\uAE30 \\uACE0\\uB3C4\\uD654\\uB97C \\uC704\\uD574 \\uD074\\uB77C\\uC6B0\\uB4DC\\uB97C \\uBC31\\uC5D4\\uB4DC\\uB85C \\uC0AC\\uC6A9\\uD558\\uB294 \\uBAA8\\uC2B5\\uC774 \\uB9CE\\uC544\\uC9C8\\uAC83", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 01:55:23 +0000", "from_user": "corund", "from_user_id": 23738856, "from_user_id_str": "23738856", "from_user_name": "Jin Kim", "geo": null, "id": 147132614476705800, "id_str": "147132614476705792", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1421578742/quigon_jinn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1421578742/quigon_jinn_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\uADF8\\uB9AC\\uACE0 nosql\\uC774\\uB77C\\uB294 \\uAC83\\uB3C4 redis\\uB97C \\uC81C\\uC678\\uD558\\uBA74 buzz \\uB610\\uB294 \\uC9C0\\uB098\\uCE58\\uAC8C \\uD2B9\\uD654\\uB41C \\uC194\\uB8E8\\uC158\\uC774\\uB77C \\uBCF4\\uC778\\uB2E4.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 01:34:33 +0000", "from_user": "benhyronde", "from_user_id": 40247759, "from_user_id_str": "40247759", "from_user_name": "hyronde benoit", "geo": null, "id": 147127373479940100, "id_str": "147127373479940096", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1266723575/IMG_6492g_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266723575/IMG_6492g_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Cluster BDD vs Cache applicatif r\\u00E9parti vs NoSQL - Alors que le Cloud Computing est en plein boom \"marketing\", le st... http://t.co/k32AXrma", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 01:34:29 +0000", "from_user": "kfalter", "from_user_id": 253578873, "from_user_id_str": "253578873", "from_user_name": "Kelsey Falter", "geo": null, "id": 147127354190348300, "id_str": "147127354190348288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690576937/photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690576937/photo_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: \\u267B MongoDB: With Adoption Comes... More Adoption http://t.co/vPSJfjAD #MongoDB #OpenShift #RedHat #Joyent #Jaspersoft", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 01:27:45 +0000", "from_user": "antoshalee", "from_user_id": 33976695, "from_user_id_str": "33976695", "from_user_name": "Anton Lee", "geo": null, "id": 147125660681379840, "id_str": "147125660681379840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/583592110/i_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/583592110/i_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @GlobalsDB: Congratulations to @antoshalee, winner of the @InterSystems 2nd Globals Challenge! - http://t.co/cf11mCWO - #NoSQL #DBMS #Java #Node.js", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 00:54:23 +0000", "from_user": "wizmusa", "from_user_id": 42998617, "from_user_id_str": "42998617", "from_user_name": "Sihyoung Jurn(\\uC804\\uC2DC\\uD615)", "geo": null, "id": 147117262954971140, "id_str": "147117262954971136", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/412803805/cherryblossom_____normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/412803805/cherryblossom_____normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "RT @xguru: 2012 \\uD074\\uB77C\\uC6B0\\uB4DC,PaaS,NoSQL \\uC608\\uC0C1 http://t.co/8C9E6u0D \\uD074\\uB77C\\uC6B0\\uB4DC\\uB294 \\uC0AC\\uC6A9\\uC790\\uC5D0\\uAC8C iCloud/Dropbox\\uCC98\\uB7FC \\uC548\\uBCF4\\uC774\\uAC8C \\uB2E4\\uAC00\\uC624\\uACE0, \\uBAA8\\uBC14\\uC77C \\uAE30\\uAE30 \\uACE0\\uB3C4\\uD654\\uB97C \\uC704\\uD574 \\uD074\\uB77C\\uC6B0\\uB4DC\\uB97C \\uBC31\\uC5D4\\uB4DC\\uB85C \\uC0AC\\uC6A9\\uD558\\uB294 \\uBAA8\\uC2B5\\uC774 \\uB9CE\\uC544\\uC9C8\\uAC83", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 00:52:08 +0000", "from_user": "elubow", "from_user_id": 26804085, "from_user_id_str": "26804085", "from_user_name": "Eric Lubow", "geo": null, "id": 147116694882631680, "id_str": "147116694882631680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1616306519/e_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616306519/e_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "NorthWestern offers masters in analytics with #Cassandra #NoSQL. http://t.co/rTjc1He3 Awesome on so many levels.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 00:49:32 +0000", "from_user": "hisern", "from_user_id": 19665587, "from_user_id_str": "19665587", "from_user_name": "Heidi K. Isern", "geo": null, "id": 147116041900793860, "id_str": "147116041900793857", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1252031962/profilebody2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1252031962/profilebody2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "geeking out in @DealmakerMedia offices with Ravi Mhatre and Avery Lyford talking about nosql...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 00:42:02 +0000", "from_user": "fauveauarmel", "from_user_id": 81747730, "from_user_id_str": "81747730", "from_user_name": "Armel FAUVEAU", "geo": null, "id": 147114154979897340, "id_str": "147114154979897344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1053733269/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1053733269/Untitled_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "MongoDB, Geospatial Indexing, and Advanced Queries\\u2026 http://t.co/XVOghVjl #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 00:36:58 +0000", "from_user": "jm95037", "from_user_id": 156421808, "from_user_id_str": "156421808", "from_user_name": "John McCauley", "geo": null, "id": 147112879424929800, "id_str": "147112879424929792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/996987652/IMG_0383ac_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/996987652/IMG_0383ac_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @BashoT: Best developers in the world are wanted at Basho! What it's like working here. http://t.co/KRzaCRCA very cool. #basho #NoSQL #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 00:31:56 +0000", "from_user": "josh_adell", "from_user_id": 175481346, "from_user_id_str": "175481346", "from_user_name": "Josh Adell", "geo": null, "id": 147111614364135420, "id_str": "147111614364135424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1138021543/hobbes_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1138021543/hobbes_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Neo4jPHP 0.0.6-beta released! Fulltext indexing, named Cypher/Gremlin parameters http://t.co/Z7d1Btf6 #neo4j #graphdb #nosql #php", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 00:23:04 +0000", "from_user": "ar_farias", "from_user_id": 22497637, "from_user_id_str": "22497637", "from_user_name": "Anderson R. Farias", "geo": null, "id": 147109383078293500, "id_str": "147109383078293504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/924915480/teste_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/924915480/teste_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @OracleDatabase: Oracle #NoSQL Database Now Available for Download from #OTN http://t.co/HSo2ZMAA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 00:19:11 +0000", "from_user": "fcassia", "from_user_id": 13128922, "from_user_id_str": "13128922", "from_user_name": "Fernando Cassia", "geo": null, "id": 147108404610076670, "id_str": "147108404610076672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1649866860/fcassia-outdoor-tw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649866860/fcassia-outdoor-tw_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @monkchips: .@webmink apache still does a LOT of good work. the git thing has been an issue, but apache is still a force for good. and nosql.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 00:13:56 +0000", "from_user": "ltoinel", "from_user_id": 13645142, "from_user_id_str": "13645142", "from_user_name": "Ludovic Toinel", "geo": null, "id": 147107082322198530, "id_str": "147107082322198528", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1168849701/geeek-v4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1168849701/geeek-v4_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@juliendubois merci pour cette intervention au #nantesjug ! http://t.co/q6y3M8cT", "to_user": "juliendubois", "to_user_id": 24742031, "to_user_id_str": "24742031", "to_user_name": "Julien Dubois"}, +{"created_at": "Thu, 15 Dec 2011 00:10:26 +0000", "from_user": "monkchips", "from_user_id": 61233, "from_user_id_str": "61233", "from_user_name": "James Governor", "geo": null, "id": 147106203997188100, "id_str": "147106203997188096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627071088/hairstyle_oval_face_women-275x300_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627071088/hairstyle_oval_face_women-275x300_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": ".@webmink apache still does a LOT of good work. the git thing has been an issue, but apache is still a force for good. and nosql.", "to_user": "webmink", "to_user_id": 752133, "to_user_id_str": "752133", "to_user_name": "Simon Phipps", "in_reply_to_status_id": 147104857327796220, "in_reply_to_status_id_str": "147104857327796224"}, +{"created_at": "Thu, 15 Dec 2011 00:01:34 +0000", "from_user": "GlobalsDB", "from_user_id": 274534639, "from_user_id_str": "274534639", "from_user_name": "Globals Master", "geo": null, "id": 147103969309769730, "id_str": "147103969309769728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1292674003/Globals-snowboarder-v1b_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1292674003/Globals-snowboarder-v1b_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Congratulations to @antoshalee, winner of the @InterSystems 2nd Globals Challenge! - http://t.co/cf11mCWO - #NoSQL #DBMS #Java #Node.js", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 00:00:10 +0000", "from_user": "SocialCaster", "from_user_id": 159355874, "from_user_id_str": "159355874", "from_user_name": "\\uC18C\\uC15C\\uCE90\\uC2A4\\uD130", "geo": null, "id": 147103618447843330, "id_str": "147103618447843328", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696310815/image_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696310815/image_normal", "source": "<a href="http://www.foobar.com" rel="nofollow">socialcaster</a>", "text": "RT @xguru: 2012 \\uD074\\uB77C\\uC6B0\\uB4DC,PaaS,NoSQL \\uC608\\uC0C1 http://t.co/3cWjZgn4 \\uD074\\uB77C\\uC6B0\\uB4DC\\uB294 \\uC0AC\\uC6A9\\uC790\\uC5D0\\uAC8C iCloud/Dropbox\\uCC98\\uB7FC \\uC548\\uBCF4\\uC774\\uAC8C \\uB2E4\\uAC00\\uC624\\uACE0, \\uBAA8\\uBC14\\uC77C \\uAE30\\uAE30 \\uACE0\\uB3C4\\uD654\\uB97C \\uC704\\uD574 \\uD074\\uB77C\\uC6B0\\uB4DC\\uB97C \\uBC31\\uC5D4\\uB4DC\\uB85C \\uC0AC\\uC6A9\\uD558\\uB294 \\uBAA8\\uC2B5\\uC774 \\uB9CE\\uC544\\uC9C8\\uAC83", "to_user": "xguru", "to_user_id": 19699818, "to_user_id_str": "19699818", "to_user_name": "\\uAD8C\\uC815\\uD601/\\uAD6C\\uB8E8", "in_reply_to_status_id": 147103160895406080, "in_reply_to_status_id_str": "147103160895406081"}, +{"created_at": "Wed, 14 Dec 2011 23:58:21 +0000", "from_user": "xguru", "from_user_id": 19699818, "from_user_id_str": "19699818", "from_user_name": "\\uAD8C\\uC815\\uD601/\\uAD6C\\uB8E8", "geo": null, "id": 147103160895406080, "id_str": "147103160895406081", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699752595/20100328-IMG_6103-400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699752595/20100328-IMG_6103-400_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "2012 \\uD074\\uB77C\\uC6B0\\uB4DC,PaaS,NoSQL \\uC608\\uC0C1 http://t.co/8C9E6u0D \\uD074\\uB77C\\uC6B0\\uB4DC\\uB294 \\uC0AC\\uC6A9\\uC790\\uC5D0\\uAC8C iCloud/Dropbox\\uCC98\\uB7FC \\uC548\\uBCF4\\uC774\\uAC8C \\uB2E4\\uAC00\\uC624\\uACE0, \\uBAA8\\uBC14\\uC77C \\uAE30\\uAE30 \\uACE0\\uB3C4\\uD654\\uB97C \\uC704\\uD574 \\uD074\\uB77C\\uC6B0\\uB4DC\\uB97C \\uBC31\\uC5D4\\uB4DC\\uB85C \\uC0AC\\uC6A9\\uD558\\uB294 \\uBAA8\\uC2B5\\uC774 \\uB9CE\\uC544\\uC9C8\\uAC83", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 23:48:31 +0000", "from_user": "philip_schwarz", "from_user_id": 14684035, "from_user_id_str": "14684035", "from_user_name": "Philip Schwarz", "geo": null, "id": 147100686927142900, "id_str": "147100686927142912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/724078981/mugshot2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/724078981/mugshot2_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "RT @sebastiangozin: I know it's for nosql support but #grails is doing what JPA/Hibernate should have done long ago.\\nhttp://t.co/LTmWAiFg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 23:41:47 +0000", "from_user": "dieswaytoofast", "from_user_id": 312604736, "from_user_id_str": "312604736", "from_user_name": "Mahesh P-Subramanya", "geo": null, "id": 147098993896337400, "id_str": "147098993896337408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1572400317/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572400317/Untitled_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: Card Payment Sytems and the CAP Theorem http://t.co/KI9MXpsU #NoSQLtheory #CAP #distributed", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 23:36:46 +0000", "from_user": "adeelkh", "from_user_id": 146900694, "from_user_id_str": "146900694", "from_user_name": "Adeel Ahmad Khan", "geo": null, "id": 147097730173517820, "id_str": "147097730173517825", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1541887544/1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541887544/1_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "For me, NoSQL over SQL doesn't have anything to do with performance. It's an aesthetic choice.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 23:07:43 +0000", "from_user": "mattnowina", "from_user_id": 103869545, "from_user_id_str": "103869545", "from_user_name": "Matt Nowina", "geo": null, "id": 147090418142691330, "id_str": "147090418142691328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1310193735/eightbit-9aa6f9af-a52d-4215-97f5-8ae5720906f1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1310193735/eightbit-9aa6f9af-a52d-4215-97f5-8ae5720906f1_normal.png", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "Muscula Architecture: Node.js, MongoDB, and CDN http://t.co/mZPhNgTa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 23:05:56 +0000", "from_user": "rcastellow", "from_user_id": 14933058, "from_user_id_str": "14933058", "from_user_name": "rcastellow", "geo": null, "id": 147089971105366000, "id_str": "147089971105366016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/58311825/0011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/58311825/0011_normal.jpg", "source": "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", "text": "RT @developerworks: dW Knowledge Path - Using #NoSQL - Analyzing #Bigdata - Handle massive amounts of #data easily > http://t.co/Lhwg3pQZ #Database #DBA #SQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 22:31:12 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 147081229236318200, "id_str": "147081229236318208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "Card Payment Sytems and the CAP Theorem http://t.co/KI9MXpsU #NoSQLtheory #CAP #distributed", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 22:16:00 +0000", "from_user": "mulpat", "from_user_id": 25259411, "from_user_id_str": "25259411", "from_user_name": "Patrick Mulder", "geo": null, "id": 147077402852474880, "id_str": "147077402852474881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1544356598/pm_profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544356598/pm_profile_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "the #mongodb echo sample app shows some nice modeling issues when using models in #nosql, both has_many and embeds_many are interesting", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 22:11:12 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 147076194658041860, "id_str": "147076194658041856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "Centralized Logging With Amazon SimpleDB, Slf4j, and Logback http://t.co/ynKfnovl #AmazonSimpleDB #Java", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:57:55 +0000", "from_user": "Unaz", "from_user_id": 16113206, "from_user_id_str": "16113206", "from_user_name": "Erik", "geo": null, "id": 147072855463563260, "id_str": "147072855463563266", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/59355136/kross_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/59355136/kross_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Ok @percona, let's do this http://t.co/ALOnMa0u (early iteration) :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:29:40 +0000", "from_user": "gammadoradus", "from_user_id": 345682804, "from_user_id_str": "345682804", "from_user_name": "Phillip Warner", "geo": null, "id": 147065745262645250, "id_str": "147065745262645248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1539281896/rooster_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1539281896/rooster_normal.png", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "RT @sebastiangozin: I know it's for nosql support but #grails is doing what JPA/Hibernate should have done long ago.\\nhttp://t.co/LTmWAiFg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:29:33 +0000", "from_user": "ludofleury", "from_user_id": 47574527, "from_user_id_str": "47574527", "from_user_name": "Ludovic Fleury", "geo": null, "id": 147065714086383600, "id_str": "147065714086383616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1264063021/ludovic_fleury_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1264063021/ludovic_fleury_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rgaidot: RT @cassandra: Announcing the release of #cassandra 1.0.6 (maintenance release), changes: http://t.co/bUikZnfe (http://t.co/Q9VUUXqb) #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:29:20 +0000", "from_user": "rgaidot", "from_user_id": 1245801, "from_user_id_str": "1245801", "from_user_name": "R\\u00E9gis Gaidot", "geo": null, "id": 147065661376573440, "id_str": "147065661376573440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1266738841/avatar-6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266738841/avatar-6_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @cassandra: Announcing the release of #cassandra 1.0.6 (maintenance release), changes: http://t.co/bUikZnfe (http://t.co/Q9VUUXqb) #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:21:53 +0000", "from_user": "anthony_souquet", "from_user_id": 18048662, "from_user_id_str": "18048662", "from_user_name": "Anthony Souquet", "geo": null, "id": 147063784568135680, "id_str": "147063784568135680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "James Phillips on Moving from Relational to NoSQL Databases... http://t.co/UIMeRZMb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:12:40 +0000", "from_user": "neo4j", "from_user_id": 22467617, "from_user_id_str": "22467617", "from_user_name": "Neo4j", "geo": null, "id": 147061467387150340, "id_str": "147061467387150337", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/195275920/square-logo-no-text-2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/195275920/square-logo-no-text-2_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @isenbe: @Visitkard noSQL u kish premtu ma shum. neo4j, osht graph db, super pershtatet per natyren e projektit. Gjithsesi, suksese :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:10:55 +0000", "from_user": "AddisonSearchIT", "from_user_id": 397530267, "from_user_id_str": "397530267", "from_user_name": "Lauren Mowers", "geo": null, "id": 147061025508827140, "id_str": "147061025508827136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @mpron: \"Global vs. Local Graph Ranking\" http://t.co/J9quGDFB #GraphDB #Gremlin #neo4j #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:09:03 +0000", "from_user": "maltuna", "from_user_id": 53117343, "from_user_id_str": "53117343", "from_user_name": "Mikel Altuna", "geo": null, "id": 147060554480091140, "id_str": "147060554480091138", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1590024283/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1590024283/image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @dipina: Mi \\u00FAltimo curso (Curso NoSQL) publicado en slideshare: \"NoSQL: la siguiente generaci\\u00F3n de Base de Datos\", http://t.co/hZ92oi4R", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:07:23 +0000", "from_user": "jonpierce", "from_user_id": 186923, "from_user_id_str": "186923", "from_user_name": "Jon Pierce", "geo": null, "id": 147060138417725440, "id_str": "147060138417725440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/90727730/jonpierce_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/90727730/jonpierce_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Check out @Basho on @Workvibe today. One of my fav deep tech co's in Boston. Great team, killer product in Riak. http://t.co/KsvmdGbq #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 20:49:15 +0000", "from_user": "LuxNoSQL", "from_user_id": 19330336, "from_user_id_str": "19330336", "from_user_name": "Nestor", "geo": null, "id": 147055573425328130, "id_str": "147055573425328128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1123187681/logo_original4_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1123187681/logo_original4_normal.PNG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Did 2011 was the NoSQL year ?\\n\\nhttp://t.co/JKsUor2P\\n\\n#nosql #bigdata #hadoop #cassandra #nodejs #jquery #2011", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 20:43:18 +0000", "from_user": "dreguera", "from_user_id": 58756910, "from_user_id_str": "58756910", "from_user_name": "Dani Reguera", "geo": null, "id": 147054077669408770, "id_str": "147054077669408770", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701886315/danillovic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701886315/danillovic_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @dipina: Mi \\u00FAltimo curso (Curso NoSQL) publicado en slideshare: \"NoSQL: la siguiente generaci\\u00F3n de Base de Datos\", http://t.co/hZ92oi4R", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 20:38:02 +0000", "from_user": "JohannesHoppe", "from_user_id": 43859239, "from_user_id_str": "43859239", "from_user_name": "Johannes Hoppe", "geo": null, "id": 147052752164491260, "id_str": "147052752164491264", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1101539456/twitter_avatar_johannes_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1101539456/twitter_avatar_johannes_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @dnugffm: Gemeinschaftstreffen mit der @sqlpass_de RG Rhein/Main zu #NoSQL mit @pro_cessor und @JohannesHoppe ist ein cooler Jahresabschluss! #dnugffm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 20:25:41 +0000", "from_user": "MichaelAstreiko", "from_user_id": 43370659, "from_user_id_str": "43370659", "from_user_name": "Michael", "geo": null, "id": 147049644336226300, "id_str": "147049644336226304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/397786431/______________________________normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/397786431/______________________________normal.gif", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @graemerocher: Published an updated developer guide for folks interested in creating implementations of GORM http://t.co/a3FMxeuC #grails #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 20:24:56 +0000", "from_user": "olesovhcom", "from_user_id": 290971726, "from_user_id_str": "290971726", "from_user_name": "Octave alias Oles", "geo": null, "id": 147049455907123200, "id_str": "147049455907123202", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1334060030/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1334060030/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Jheberg si tu d\\u00E9veloppes des applications sous php, mysql, python, java, nosql, etc \\u00E7a ne t\\u2019int\\u00E9resse pas.", "to_user": "Jheberg", "to_user_id": 82116766, "to_user_id_str": "82116766", "to_user_name": "Th\\u00E9otime on Jheberg", "in_reply_to_status_id": 147048996534353920, "in_reply_to_status_id_str": "147048996534353920"}, +{"created_at": "Wed, 14 Dec 2011 20:20:04 +0000", "from_user": "graemerocher", "from_user_id": 15903390, "from_user_id_str": "15903390", "from_user_name": "Graeme Rocher", "geo": null, "id": 147048229874319360, "id_str": "147048229874319362", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/58510377/me-pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/58510377/me-pic_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "RT @sebastiangozin: I know it's for nosql support but #grails is doing what JPA/Hibernate should have done long ago.\\nhttp://t.co/LTmWAiFg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 20:15:41 +0000", "from_user": "jericevans", "from_user_id": 38885823, "from_user_id_str": "38885823", "from_user_name": "Eric Evans", "geo": null, "id": 147047127837704200, "id_str": "147047127837704193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/518157683/eevans_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/518157683/eevans_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @cassandra: Announcing the release of #cassandra 0.8.9 (maintenance release), changes: http://t.co/Y3Ai7rAw (http://t.co/B6K04i71) #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 20:12:03 +0000", "from_user": "TopDevTweets", "from_user_id": 194520782, "from_user_id_str": "194520782", "from_user_name": "TopDevTweets", "geo": null, "id": 147046212548296700, "id_str": "147046212548296704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @cassandra: Announcing the release of #cassandra 0.8.9 (maintenance release), changes: http://t.co/Y3Ai7rAw (http://t.co/B6K04i71) #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 20:07:30 +0000", "from_user": "mynosql_popescu", "from_user_id": 197901055, "from_user_id_str": "197901055", "from_user_name": "myNoSQL", "geo": null, "id": 147045066375045120, "id_str": "147045066375045120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "How Does the Future of Computing Look Like?: We\\u2019ll get long lasting batteries and teraflops chips, Big Data on M... http://t.co/3Tj9aNad", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 20:05:30 +0000", "from_user": "mcsong", "from_user_id": 2236621, "from_user_id_str": "2236621", "from_user_name": "Justin Song", "geo": null, "id": 147044564694347780, "id_str": "147044564694347776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1419991788/justin.song_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1419991788/justin.song_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @cassandra: Announcing the release of #cassandra 0.8.9 (maintenance release), changes: http://t.co/Y3Ai7rAw (http://t.co/B6K04i71) #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 20:04:39 +0000", "from_user": "usul_", "from_user_id": 5528042, "from_user_id_str": "5528042", "from_user_name": "Fran\\u00E7ois Dussert", "geo": null, "id": 147044348507340800, "id_str": "147044348507340800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1476077804/gravatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1476077804/gravatar_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "RT @cassandra: Announcing the release of #cassandra 1.0.6 (maintenance release), changes: http://t.co/QJYmR0uW (http://t.co/2pQGFO7f) #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 20:02:59 +0000", "from_user": "cassandra", "from_user_id": 38971803, "from_user_id_str": "38971803", "from_user_name": "Cassandra Database", "geo": null, "id": 147043931803230200, "id_str": "147043931803230208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/519958997/cassandra_small_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/519958997/cassandra_small_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Announcing the release of #cassandra 0.8.9 (maintenance release), changes: http://t.co/Y3Ai7rAw (http://t.co/B6K04i71) #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 20:00:53 +0000", "from_user": "cwestin63", "from_user_id": 162173507, "from_user_id_str": "162173507", "from_user_name": "Chris Westin", "geo": null, "id": 147043401899061250, "id_str": "147043401899061248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1125328797/headshot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1125328797/headshot_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ameliamango: RT @10gen: Deputy CTO Paul Pederson will be presenting on NoSQL and MongoDB tomorrow (Thursday) at DAMA San Francisco", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 19:50:01 +0000", "from_user": "ameliamango", "from_user_id": 18517825, "from_user_id_str": "18517825", "from_user_name": "ameliamango", "geo": null, "id": 147040666902478850, "id_str": "147040666902478848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692201149/laugh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692201149/laugh_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @10gen: Deputy CTO Paul Pederson will be presenting on NoSQL and MongoDB tomorrow (Thursday) at DAMA San Francisco", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 19:47:04 +0000", "from_user": "rootsmith", "from_user_id": 19415769, "from_user_id_str": "19415769", "from_user_name": "Kevin J. Smith", "geo": null, "id": 147039922610638850, "id_str": "147039922610638849", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1577720933/kangyatzi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1577720933/kangyatzi_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Anybody know any postgreSQL (or MySQL) with some noSQL (MongoDB, couchDB) database admin/devs that are looking for work?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 19:45:47 +0000", "from_user": "harish11g", "from_user_id": 175766255, "from_user_id_str": "175766255", "from_user_name": "Harish Ganesan", "geo": null, "id": 147039601301798900, "id_str": "147039601301798912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1175262838/harish_profile_photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1175262838/harish_profile_photo_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @DEVOPS_BORAT: Attention devops: \"learn NoSQL\" is not same as \"learn no SQL\"!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 19:43:56 +0000", "from_user": "alexyakunin", "from_user_id": 58261179, "from_user_id_str": "58261179", "from_user_name": "Alex Yakunin", "geo": null, "id": 147039136791007230, "id_str": "147039136791007233", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/966018990/Ava_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/966018990/Ava_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Erik Meijer explains duality of SQL and noSQL (especially good if you know C#): http://t.co/m8e09F1L", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 19:31:32 +0000", "from_user": "mynosql_popescu", "from_user_id": 197901055, "from_user_id_str": "197901055", "from_user_name": "myNoSQL", "geo": null, "id": 147036015901671420, "id_str": "147036015901671424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Centralized Logging With Amazon SimpleDB, Slf4j, and Logback: Centralized Logging With Amazon SimpleDB, Slf4j, a... http://t.co/CuAXUIh9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 19:18:32 +0000", "from_user": "JensRantil", "from_user_id": 80839666, "from_user_id_str": "80839666", "from_user_name": "Jens Rantil", "geo": null, "id": 147032744172589060, "id_str": "147032744172589057", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/577732175/n719411625_1562483_1352_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/577732175/n719411625_1562483_1352_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "Licensing and Distribution Holding Back the Age of Data http://t.co/zHfwPu3v Welcome back data silos!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 18:55:54 +0000", "from_user": "nantesjug", "from_user_id": 47305034, "from_user_id_str": "47305034", "from_user_name": "Nantes JUG", "geo": null, "id": 147027047351468030, "id_str": "147027047351468032", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/474291096/img_1217255298194_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/474291096/img_1217255298194_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@juliendubois nous parle d'Hibernate, de cloud et de NoSQL au #nantesjug http://t.co/isDpnn1u", "to_user": "juliendubois", "to_user_id": 24742031, "to_user_id_str": "24742031", "to_user_name": "Julien Dubois"}, +{"created_at": "Wed, 14 Dec 2011 18:39:55 +0000", "from_user": "jedisct1", "from_user_id": 17396038, "from_user_id_str": "17396038", "from_user_name": "Frank Denis", "geo": null, "id": 147023026620334080, "id_str": "147023026620334081", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/64543895/cv_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/64543895/cv_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @cassandra: Announcing the release of #cassandra 1.0.6 (maintenance release), changes: http://t.co/5NZtlBvR (http://t.co/FvfNZTTd) #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 17:49:13 +0000", "from_user": "ludofleury", "from_user_id": 47574527, "from_user_id_str": "47574527", "from_user_name": "Ludovic Fleury", "geo": null, "id": 147010265626574850, "id_str": "147010265626574850", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1264063021/ludovic_fleury_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1264063021/ludovic_fleury_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @10gen: Deputy CTO Paul Pederson will be presenting on NoSQL and MongoDB tomorrow (Thursday) at DAMA San Francisco", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 17:48:56 +0000", "from_user": "10gen", "from_user_id": 14474967, "from_user_id_str": "14474967", "from_user_name": "10gen", "geo": null, "id": 147010194768019460, "id_str": "147010194768019456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/53140716/Picture_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/53140716/Picture_1_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Deputy CTO Paul Pederson will be presenting on NoSQL and MongoDB tomorrow (Thursday) at DAMA San Francisco", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 17:46:35 +0000", "from_user": "mynosql_popescu", "from_user_id": 197901055, "from_user_id_str": "197901055", "from_user_name": "myNoSQL", "geo": null, "id": 147009603224346620, "id_str": "147009603224346625", "iso_language_code": "eo", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Redis Bitmaps for Real-Time Metrics at Spool: Redis Bitmaps for Real-Time Metrics at Spool: Chandra Patni:\\n\\nTrad... http://t.co/M3mcwul3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 17:22:43 +0000", "from_user": "meyersdc", "from_user_id": 36725165, "from_user_id_str": "36725165", "from_user_name": "David Meyers", "geo": null, "id": 147003596209266700, "id_str": "147003596209266690", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1286699794/wisconsin_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1286699794/wisconsin_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "RT @vscarpenter: A Look at the NoSQL Landscape | Javalobby http://t.co/yL6tLnyS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 16:24:58 +0000", "from_user": "redeskako", "from_user_id": 41999137, "from_user_id_str": "41999137", "from_user_name": "Carlos S. Bocanegra", "geo": null, "id": 146989063759597570, "id_str": "146989063759597568", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1151469684/kk_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1151469684/kk_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "#NoSQL: la siguiente generaci\\u00F3n de Base de Datos http://t.co/wOY8vKvB v\\u00EDa @slideshare", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 15:52:09 +0000", "from_user": "legallb", "from_user_id": 15307496, "from_user_id_str": "15307496", "from_user_name": "legallb", "geo": null, "id": 146980804201947140, "id_str": "146980804201947137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/673402162/photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/673402162/photo_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "10 Reasons Why You Should Consider NOSQL http://t.co/0BA78wIB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 15:09:11 +0000", "from_user": "phaneeshn", "from_user_id": 78000743, "from_user_id_str": "78000743", "from_user_name": "Phaneesh Nagaraja", "geo": null, "id": 146969992947171330, "id_str": "146969992947171329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/789289885/0383_guitarist_heavy_metal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/789289885/0383_guitarist_heavy_metal_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "#Hadoop Market Competition: #comScore From #Cloudera to #MapR: http://t.co/JjbOjQIu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} + +, +{"created_at": "Mon, 19 Dec 2011 18:59:14 +0000", "from_user": "LITTLE_JUICY", "from_user_id": 301155351, "from_user_id_str": "301155351", "from_user_name": "Karen Santamaria ", "geo": null, "id": 148839824835620860, "id_str": "148839824835620864", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1441251329/mTd2puLYY08_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1441251329/mTd2puLYY08_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @valladolor: \"Angry Birds Las Delicias\" en tu App Store, consiste en lanzar trozos de chatarra y cobre a Monchines, nunca les matas, se lo quedan todo.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:13 +0000", "from_user": "Bessieee801", "from_user_id": 379976799, "from_user_id_str": "379976799", "from_user_name": "Bessie Redd", "geo": null, "id": 148839822709112830, "id_str": "148839822709112832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1559829174/LPSS-3539_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1559829174/LPSS-3539_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Birds Bell Pull Counted Cross-Stitch Kit: Four varieties of colorful birds are recreated in fantastic detail by ... http://t.co/ljtEp8CV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:13 +0000", "from_user": "AKA_KyleWatson", "from_user_id": 41403263, "from_user_id_str": "41403263", "from_user_name": "kyle watson", "geo": +{"coordinates": [55.0674,-3.603], "type": "Point"}, "id": 148839821266268160, "id_str": "148839821266268161", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1640599057/scully_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640599057/scully_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@brogie10 @raffenator10 @rossybumpinsero As it happens Ive got 4 nice tickets to Noels high flying birds here , but I ain't going #cheif", "to_user": "brogie10", "to_user_id": 353107405, "to_user_id_str": "353107405", "to_user_name": "Stephen Brogan"}, +{"created_at": "Mon, 19 Dec 2011 18:59:13 +0000", "from_user": "ToPiXx626", "from_user_id": 192109834, "from_user_id_str": "192109834", "from_user_name": "Walter", "geo": null, "id": 148839819894734850, "id_str": "148839819894734849", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1126077718/1239070483584_edit0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1126077718/1239070483584_edit0_normal.jpg", "source": "<a href="http://www.myyearbook.com/" rel="nofollow">myYearbook Share</a>", "text": "Soo high, thee birds are jealous(x: http://t.co/0Z1t0ObH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:12 +0000", "from_user": "CREEZAYPHRESH", "from_user_id": 191350112, "from_user_id_str": "191350112", "from_user_name": "Christina \\u042Feid ", "geo": null, "id": 148839818921652220, "id_str": "148839818921652224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699376506/Photo_on_12-17-11_at_8.24_PM__4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699376506/Photo_on_12-17-11_at_8.24_PM__4_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "im a shark sorry \"@_KoolAde_: birds of a feather lol RT @CREEZAYPHRESH: @_KoolAde_ yuh fool enuh\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:09 +0000", "from_user": "ChickadeeSeed", "from_user_id": 227359440, "from_user_id_str": "227359440", "from_user_name": "Chickadee", "geo": null, "id": 148839806493921280, "id_str": "148839806493921280", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683714335/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683714335/image_normal.jpg", "source": "<a href="http://www.shareaholic.com" rel="nofollow">shareaholic app</a>", "text": "RT @Birding_Is_Fun: RT - Pied-billed Grebe \\u00AB Rich Ditch's Photography Blog - http://t.co/z0td08tc #birds #birding", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:08 +0000", "from_user": "_LoveTenisha", "from_user_id": 44808615, "from_user_id_str": "44808615", "from_user_name": "Tenisha Kyler", "geo": null, "id": 148839799481049100, "id_str": "148839799481049090", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1632600147/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632600147/image_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Lmbo!! \"@ERIN_coleman: This school shit is for the birds\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:07 +0000", "from_user": "Flutterbybybye", "from_user_id": 104797922, "from_user_id_str": "104797922", "from_user_name": "Jemma Stafford", "geo": null, "id": 148839795987189760, "id_str": "148839795987189760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/630676339/pic2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/630676339/pic2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I used to like birds. But the. I took a sparrow to the knee.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:05 +0000", "from_user": "SassyMsB", "from_user_id": 127691700, "from_user_id_str": "127691700", "from_user_name": "Simply MsB", "geo": null, "id": 148839789796392960, "id_str": "148839789796392960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1663697765/317486_2355438039689_1062351486_2689913_455170766_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663697765/317486_2355438039689_1062351486_2689913_455170766_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "My stomach is sounding like hungry baby birds. Weird ass noise its makin", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:04 +0000", "from_user": "x_DopeAssTEASE", "from_user_id": 161343915, "from_user_id_str": "161343915", "from_user_name": "Bad \\u2665", "geo": null, "id": 148839782129205250, "id_str": "148839782129205249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1678077192/290283_2182276086695_1540765217_31791211_2019058512_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678077192/290283_2182276086695_1540765217_31791211_2019058512_o_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "All that bull shit for the birds & she pigeon toed .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:03 +0000", "from_user": "milk707", "from_user_id": 175288501, "from_user_id_str": "175288501", "from_user_name": "Brenda Tan", "geo": null, "id": 148839779117699070, "id_str": "148839779117699073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1096719061/ayu_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1096719061/ayu_normal.jpeg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "It's 3am, n I'm still playing angry birds jz to get 3stars!! Got poison influence by BB !!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:02 +0000", "from_user": "teknobot", "from_user_id": 182753520, "from_user_id_str": "182753520", "from_user_name": "Brian", "geo": null, "id": 148839775309279230, "id_str": "148839775309279233", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1649274867/twit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649274867/twit_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @Gertatron: http://t.co/oGy6MCMY Migrating birds getting shot out of the sky. They call it sport, I call it sickening.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:58 +0000", "from_user": "scarlettgrace99", "from_user_id": 239912642, "from_user_id_str": "239912642", "from_user_name": "a", "geo": null, "id": 148839760541126660, "id_str": "148839760541126656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702355291/IMG01154-20110818-1235_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702355291/IMG01154-20110818-1235_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Its bad enough stuck over here without main land birds tweetering without me lol x", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:57 +0000", "from_user": "AngrySolutions", "from_user_id": 364178698, "from_user_id_str": "364178698", "from_user_name": "Angry Birds Solution", "geo": null, "id": 148839755579277300, "id_str": "148839755579277312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1518795105/286px-Angry_Birds_Icon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1518795105/286px-Angry_Birds_Icon_normal.png", "source": "<a href="http://www.zepan.org/software/tweetly-updater/" rel="nofollow">Tweetly Updater</a>", "text": "Angry Birds - 15 NEW Free Levels! A Golden Egg, Secret Level Hidden In Rio Movie Commercial! [1.5.1] http://t.co/6ZnMqMID #AngryBirds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:57 +0000", "from_user": "Alidasao", "from_user_id": 426261441, "from_user_id_str": "426261441", "from_user_name": "Alida Hartfield", "geo": null, "id": 148839753658277900, "id_str": "148839753658277888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668795613/LLCM-0715_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668795613/LLCM-0715_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Imamous Hey, download Pigeon Palooza (the next angry birds)- it is in Android Mktplce - will be in App Store next week.", "to_user": "Imamous", "to_user_id": 65617835, "to_user_id_str": "65617835", "to_user_name": "Imam ch", "in_reply_to_status_id": 148812854928224260, "in_reply_to_status_id_str": "148812854928224256"}, +{"created_at": "Mon, 19 Dec 2011 18:58:51 +0000", "from_user": "SUGA_SHAYY", "from_user_id": 234236069, "from_user_id_str": "234236069", "from_user_name": "SaMaNtHa LaShAy !", "geo": null, "id": 148839729050300400, "id_str": "148839729050300416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1682469050/156961_1249281049829_1763560146_476207_3957577_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682469050/156961_1249281049829_1763560146_476207_3957577_n_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "All the bs for the birds throw some bread out!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:48 +0000", "from_user": "___SNiiPER___", "from_user_id": 187259973, "from_user_id_str": "187259973", "from_user_name": "\\u2605'iSniiper Vl Sal ", "geo": null, "id": 148839716878426100, "id_str": "148839716878426112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701150924/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701150924/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I honestly think the best weeknd songs (top 3) are : Initiation , The Knowing , Birds part 1.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:46 +0000", "from_user": "m3wallace", "from_user_id": 101695920, "from_user_id_str": "101695920", "from_user_name": "Bwall", "geo": null, "id": 148839709496446980, "id_str": "148839709496446976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691843844/m3wallace_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691843844/m3wallace_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "man this greeting stuff is for the birds, hate this ish |m3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:41 +0000", "from_user": "lbitria", "from_user_id": 118831304, "from_user_id_str": "118831304", "from_user_name": "Lloren\\u00E7 Bitri\\u00E0", "geo": null, "id": 148839689099550720, "id_str": "148839689099550720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1684753230/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684753230/image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "'Angry Birds considera salir a Bolsa en Hong Kong' http://t.co/fbDbUVGW via @expansioncom", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:40 +0000", "from_user": "lazarushearts", "from_user_id": 294751229, "from_user_id_str": "294751229", "from_user_name": "Tanith Pyner", "geo": null, "id": 148839682053124100, "id_str": "148839682053124096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695347510/lurr_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695347510/lurr_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "'do birds of different species, like, hang out?' god sometimes i sound so stoned.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:38 +0000", "from_user": "JeremyMeade45", "from_user_id": 211872915, "from_user_id_str": "211872915", "from_user_name": "Jeremy Meade", "geo": null, "id": 148839674885062660, "id_str": "148839674885062657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1621551408/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621551408/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @Laurenbellalex: Shake it for the birds, shake it for the bees.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:38 +0000", "from_user": "grumpy1970", "from_user_id": 22869662, "from_user_id_str": "22869662", "from_user_name": "Susan ", "geo": null, "id": 148839673282826240, "id_str": "148839673282826240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1449097409/grumpy1970_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1449097409/grumpy1970_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@PopcornPalace ~ four calling (popping) birds #12dayspop", "to_user": "PopcornPalace", "to_user_id": 29562199, "to_user_id_str": "29562199", "to_user_name": "Popcorn Palace", "in_reply_to_status_id": 148839079130312700, "in_reply_to_status_id_str": "148839079130312704"}, +{"created_at": "Mon, 19 Dec 2011 18:58:37 +0000", "from_user": "J3aTuR", "from_user_id": 404692389, "from_user_id_str": "404692389", "from_user_name": "MerT J3aTTaL", "geo": null, "id": 148839672813068300, "id_str": "148839672813068288", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Crazy Birds Rio http://t.co/v0lhfmVx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:35 +0000", "from_user": "letsgolakers086", "from_user_id": 78384041, "from_user_id_str": "78384041", "from_user_name": "letsgolakers086", "geo": null, "id": 148839661660409860, "id_str": "148839661660409856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1336727966/CHAMPIONS_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1336727966/CHAMPIONS_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@PopcornPalace It's a bird, it's a plane, no it's even better. It's popcorn birds! #12dayspop", "to_user": "PopcornPalace", "to_user_id": 29562199, "to_user_id_str": "29562199", "to_user_name": "Popcorn Palace"}, +{"created_at": "Mon, 19 Dec 2011 18:58:31 +0000", "from_user": "nikuyasaidayo", "from_user_id": 222740205, "from_user_id_str": "222740205", "from_user_name": "\\u306B\\u304F", "geo": null, "id": 148839646028247040, "id_str": "148839646028247040", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1187855299/dari1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1187855299/dari1_normal.jpg", "source": "<a href="http://tbtwit.com" rel="nofollow">tbtwit</a>", "text": "\\u30E1\\u30EA\\u30FC\\u30DD\\u30D4\\u30F3\\u30BA\\u898B\\u3066\\u3001\\u3053\\u306E\\u5834\\u9762\\u306B\\u306A\\u308B\\u3068\\u6CE3\\u304D\\u305D\\u3046\\u306B\\u306A\\u308B\\u3002YouTube - Feed The Birds - Mary Poppins (Julie Andrews) http://t.co/DDoodXtt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:29 +0000", "from_user": "BhunaBhuna", "from_user_id": 228110623, "from_user_id_str": "228110623", "from_user_name": "Martin Shaw", "geo": null, "id": 148839638549794800, "id_str": "148839638549794817", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1599083947/Screen_20110407_073928_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599083947/Screen_20110407_073928_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Alright hairdresser / hairdressee birds? 'Yeah pretty much'. Sweet, sweet... I have a working fridge and four bottles of Bud from work so...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:28 +0000", "from_user": "YoGirlsFavKappa", "from_user_id": 166724970, "from_user_id_str": "166724970", "from_user_name": "Antonio Guevara", "geo": null, "id": 148839631222358000, "id_str": "148839631222358016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1534597726/334278_1948222741084_1108036448_31720231_1416687_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534597726/334278_1948222741084_1108036448_31720231_1416687_o_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Happy birthday @kay_loray !!! You and @NUPEologist have fun on yalls one year celebration lol...two.little love birds lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:24 +0000", "from_user": "BraveBoldNathan", "from_user_id": 375671996, "from_user_id_str": "375671996", "from_user_name": "Nathan Bone", "geo": null, "id": 148839616940736500, "id_str": "148839616940736513", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1548542874/249494_1543650531051_1828634700_937807_7381645_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1548542874/249494_1543650531051_1828634700_937807_7381645_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"I have a test tomorrow in birds suddenly appear....I mean English\" gotta love lisa #TheSimpsons", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:23 +0000", "from_user": "NomaGeeDiva", "from_user_id": 60005497, "from_user_id_str": "60005497", "from_user_name": "Nomagugu K. Moyo", "geo": null, "id": 148839613157486600, "id_str": "148839613157486592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702424289/331704466_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702424289/331704466_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": ":\"D RT @KiranYoliswa: And the mosquitos out here are like small birds!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:22 +0000", "from_user": "EugenaZeimantz5", "from_user_id": 437578495, "from_user_id_str": "437578495", "from_user_name": "Eugena Zeimantz", "geo": null, "id": 148839609307107330, "id_str": "148839609307107328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701210147/27569470522640_100415376656824_100000650857409_8543_964294_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701210147/27569470522640_100415376656824_100000650857409_8543_964294_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Good morninggggg sunshineee,,rainbow,,cloud, the birds and the bees, the air, the green leaf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:22 +0000", "from_user": "BlackwellAmy", "from_user_id": 418893945, "from_user_id_str": "418893945", "from_user_name": "Amy Blackwell", "geo": null, "id": 148839607344168960, "id_str": "148839607344168960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1652365050/Amy_at_DC_Capitol_Hill_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652365050/Amy_at_DC_Capitol_Hill_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @monumentpharm: Tips 4 finding the right #veterinary #pharmacy: http://t.co/PCglnydp #pets #animals #dogs #cats #horses #birds #reptiles #meds #medicine", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:21 +0000", "from_user": "Louracaux", "from_user_id": 426260722, "from_user_id_str": "426260722", "from_user_name": "Loura Emmert", "geo": null, "id": 148839601660899330, "id_str": "148839601660899329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668792937/LLCM-4006_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668792937/LLCM-4006_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Jevan54 Go get Pigeon Palooza (the next angry birds)- it's launched in Android Mktplce - will be in ITunes in a few days.", "to_user": "Jevan54", "to_user_id": 25535243, "to_user_id_str": "25535243", "to_user_name": "Joshua Caraway", "in_reply_to_status_id": 148833630901370880, "in_reply_to_status_id_str": "148833630901370881"}, +{"created_at": "Mon, 19 Dec 2011 18:58:19 +0000", "from_user": "Kid_DTK", "from_user_id": 301966487, "from_user_id_str": "301966487", "from_user_name": "dkyp", "geo": null, "id": 148839595822415870, "id_str": "148839595822415872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688073615/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688073615/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@JawsonsTweets: I rate guys on how many relationships they've held down, not on how birds they've banged.\\u201D looool #DPMO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:15 +0000", "from_user": "erkrosales", "from_user_id": 132967809, "from_user_id_str": "132967809", "from_user_name": "Erik Rosales", "geo": null, "id": 148839579800178700, "id_str": "148839579800178688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702188377/IMG00340-20110717-1710_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702188377/IMG00340-20110717-1710_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Dailymotion - Theme park creates real-life Angry Birds game http://t.co/qjTEUytN via @dailymotion_lat", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:10 +0000", "from_user": "imanazman", "from_user_id": 21068069, "from_user_id_str": "21068069", "from_user_name": "iman azman", "geo": null, "id": 148839557113192450, "id_str": "148839557113192448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1421843497/260393_10150285529773623_660063622_9229361_2991156_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1421843497/260393_10150285529773623_660063622_9229361_2991156_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "Wrote a long blog post about our day in #Vienna and lost it all when my baby cousin decided to play angry birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:10 +0000", "from_user": "Roxanefvj", "from_user_id": 426262051, "from_user_id_str": "426262051", "from_user_name": "Roxane Chafetz", "geo": null, "id": 148839555540332540, "id_str": "148839555540332545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668798016/LLCM-4894_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668798016/LLCM-4894_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@kyyman Hey, try out Pigeon Palooza (the next angry birds)- it is in Android Mktplce - will be in ITunes soon.", "to_user": "kyyman", "to_user_id": 257744730, "to_user_id_str": "257744730", "to_user_name": "Mickyle", "in_reply_to_status_id": 148824820707102720, "in_reply_to_status_id_str": "148824820707102720"}, +{"created_at": "Mon, 19 Dec 2011 18:58:07 +0000", "from_user": "JediBeadles", "from_user_id": 49422193, "from_user_id_str": "49422193", "from_user_name": "Nick Beadles", "geo": null, "id": 148839544475750400, "id_str": "148839544475750400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1219374496/Backflip_013_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1219374496/Backflip_013_normal.jpg", "source": "<a href="http://www.motorola.com" rel="nofollow">motoblur</a>", "text": "Pulling for the Jets this week & the Giants next week. 200 to 1 odds...I'll take it. After this season atleast the Birds still have a chance", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:06 +0000", "from_user": "MicahEgnater", "from_user_id": 72736588, "from_user_id_str": "72736588", "from_user_name": "Micah Egnater", "geo": null, "id": 148839541208395780, "id_str": "148839541208395776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1519720811/yo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1519720811/yo_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Birds flying high, you know how I feel", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:02 +0000", "from_user": "Justbirds1", "from_user_id": 291680688, "from_user_id_str": "291680688", "from_user_name": "Bev", "geo": null, "id": 148839522359189500, "id_str": "148839522359189505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1335631073/5261855304_0f68f9ba91_m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335631073/5261855304_0f68f9ba91_m_normal.jpg", "source": "<a href="http://www.twaitter.com" rel="nofollow">Twaitter</a>", "text": "Portrait of a Buzzard http://t.co/tXZzk3cH #birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:58 +0000", "from_user": "ShugaHud", "from_user_id": 115376442, "from_user_id_str": "115376442", "from_user_name": "ShugaHud", "geo": null, "id": 148839508333441020, "id_str": "148839508333441024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1683624961/134857_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683624961/134857_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "No one is free, Even the birds are chained to the sky", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:57 +0000", "from_user": "MissEp3", "from_user_id": 155083481, "from_user_id_str": "155083481", "from_user_name": "JESSICA S.", "geo": null, "id": 148839502062956540, "id_str": "148839502062956544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684484120/N3DQR4eS_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684484120/N3DQR4eS_normal", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "Thank you! Big ups to you for being man enough to agree! RT @DJJONEZNYC Lol true! RT @MissEp3: Men are birds too, just saying.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:57 +0000", "from_user": "Agnusnxw", "from_user_id": 426260297, "from_user_id_str": "426260297", "from_user_name": "Agnus Zumbach", "geo": null, "id": 148839501077299200, "id_str": "148839501077299201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668792048/LLCM-3852_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668792048/LLCM-3852_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Pardo_Lu Have to check out Pigeon Palooza (the next angry birds)- it is for sale in Android Mktplce - will be in App Store in a few days.", "to_user": "Pardo_Lu", "to_user_id": 357534768, "to_user_id_str": "357534768", "to_user_name": "Luc\\u00EDa Pardo", "in_reply_to_status_id": 148831608110198800, "in_reply_to_status_id_str": "148831608110198784"}, +{"created_at": "Mon, 19 Dec 2011 18:57:50 +0000", "from_user": "ahudal", "from_user_id": 82324184, "from_user_id_str": "82324184", "from_user_name": "Ahu", "geo": null, "id": 148839472941895680, "id_str": "148839472941895680", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1676004335/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676004335/image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "http://t.co/v9vtagWy birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:49 +0000", "from_user": "Chris_in_Dior", "from_user_id": 146400364, "from_user_id_str": "146400364", "from_user_name": "Christopher robinson", "geo": null, "id": 148839468235890700, "id_str": "148839468235890688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1656338229/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656338229/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "The Weeknd - The Birds Part 2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:49 +0000", "from_user": "____HateOnME", "from_user_id": 235864141, "from_user_id_str": "235864141", "from_user_name": "BallOrGetBalledOn :)", "geo": null, "id": 148839467812270080, "id_str": "148839467812270080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697478208/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697478208/image_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Sitting here with deangela india khrystal teara and marlon watching angry birds/rios", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:45 +0000", "from_user": "Janine_Rocka", "from_user_id": 24515512, "from_user_id_str": "24515512", "from_user_name": "Janine \\u24CB\\u24BA\\u24C7\\u24D8\\u24BB\\u24D8\\u24BA\\u24B9 \\u2714", "geo": null, "id": 148839452532408320, "id_str": "148839452532408320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689565289/331377352_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689565289/331377352_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "If you're avi pic is the size of a birds eye pea you're hiding uglyness", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:44 +0000", "from_user": "Cerpentol", "from_user_id": 246183842, "from_user_id_str": "246183842", "from_user_name": "cerpentol", "geo": null, "id": 148839448505876480, "id_str": "148839448505876480", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699541058/Mike_Patton_Mike_01_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699541058/Mike_Patton_Mike_01_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Neng emang mau ngapain? / Mau tamatin Angry birds dulu../ oh ya udah, jangan lupa besok belanja buat nyegik neng ya, jgn begadang mulu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:43 +0000", "from_user": "x_DhatsDonDoe_x", "from_user_id": 303589671, "from_user_id_str": "303589671", "from_user_name": "Tadonya Thomas", "geo": null, "id": 148839443552403460, "id_str": "148839443552403456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1676242979/ColorTouch-1320001765901_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676242979/ColorTouch-1320001765901_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "My Granny Tryin Talk Bout The Birds An The Bees and ummmmm #ItsALilToLateFaDhat!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:42 +0000", "from_user": "liobrien", "from_user_id": 46666884, "from_user_id_str": "46666884", "from_user_name": "Lisa O Brien", "geo": null, "id": 148839440637362180, "id_str": "148839440637362177", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1235927418/Cedars072_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1235927418/Cedars072_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "These Festive Angry Birds Decorations Are Really An Fun Interactive Game http://t.co/5pZ32Gk9 via @simplyzesty", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:41 +0000", "from_user": "LiZZO_13", "from_user_id": 208387098, "from_user_id_str": "208387098", "from_user_name": "Liz Patterson ", "geo": null, "id": 148839436942192640, "id_str": "148839436942192640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1545128346/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545128346/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "this 4am stuff is for the birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:39 +0000", "from_user": "DulceVita__", "from_user_id": 314075584, "from_user_id_str": "314075584", "from_user_name": "Elizabeth Pineda", "geo": null, "id": 148839428754907140, "id_str": "148839428754907136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685795435/2011-12-10_16-36-25_953c_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685795435/2011-12-10_16-36-25_953c_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "That shits for the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:35 +0000", "from_user": "BrianDingler", "from_user_id": 37454300, "from_user_id_str": "37454300", "from_user_name": "Brian Dingler", "geo": null, "id": 148839411310805000, "id_str": "148839411310804992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702246340/BrianDingler_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702246340/BrianDingler_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u00AB@someecards Angry Birds now available on iPhone, Droid, and completely insane man's Christmas lights display. http://t.co/tcfGNyl5\\u00BB\\u00BB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:35 +0000", "from_user": "Intellico_On", "from_user_id": 37151953, "from_user_id_str": "37151953", "from_user_name": "Anomaly Rho Esq.", "geo": null, "id": 148839410509692930, "id_str": "148839410509692928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1659882906/sali_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659882906/sali_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "This level of angry birds is pissing me off! they are cheating!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:31 +0000", "from_user": "kashmyl", "from_user_id": 161916864, "from_user_id_str": "161916864", "from_user_name": "Karen", "geo": null, "id": 148839393677942800, "id_str": "148839393677942784", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697503197/ouw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697503197/ouw_normal.jpg", "source": "<a href="http://hypem.com" rel="nofollow">The Hype Machine</a>", "text": "Just loved Wooden Birds - Believe In Love http://t.co/ETAdKM40 on @hypem", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:31 +0000", "from_user": "JuliaJups", "from_user_id": 16312353, "from_user_id_str": "16312353", "from_user_name": "J\\u00FAlia Jups", "geo": null, "id": 148839392990076930, "id_str": "148839392990076928", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1566047320/twinto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566047320/twinto_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "papai noel, apenas desejo: um angry birds infinito", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:25 +0000", "from_user": "liveyourdreamsc", "from_user_id": 228829293, "from_user_id_str": "228829293", "from_user_name": "emily chance", "geo": null, "id": 148839370143703040, "id_str": "148839370143703040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690492463/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690492463/image_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Been playing angry birds all morning #nolife", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:25 +0000", "from_user": "thatdiva87", "from_user_id": 40130722, "from_user_id_str": "40130722", "from_user_name": "Dark Skin Beauty", "geo": null, "id": 148839367383859200, "id_str": "148839367383859200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701572087/meeee_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701572087/meeee_normal.jpeg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I swear bitches r birds some of the shit these girls be saying is ridiculous....ok u f*cked u want a gold medal for it !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:21 +0000", "from_user": "ImRegiMendez", "from_user_id": 234112347, "from_user_id_str": "234112347", "from_user_name": "quien? yo?", "geo": null, "id": 148839351437107200, "id_str": "148839351437107200", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681161509/373790_283365395034666_100000836239782_709537_1583490129_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681161509/373790_283365395034666_100000836239782_709537_1583490129_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "quiero jugar angry birds\\u2665", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:22 +0000", "from_user": "maddie_heiar23", "from_user_id": 335054161, "from_user_id_str": "335054161", "from_user_name": "Madeline Heiar", "geo": null, "id": 148839348366884860, "id_str": "148839348366884864", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1441526133/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1441526133/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@annz_jochum6 #BIRDS http://t.co/FH41QJnl", "to_user": "annz_jochum6", "to_user_id": 395546630, "to_user_id_str": "395546630", "to_user_name": "Anna Jochum "}, +{"created_at": "Mon, 19 Dec 2011 18:57:20 +0000", "from_user": "2BeMe_", "from_user_id": 126812765, "from_user_id_str": "126812765", "from_user_name": "J. DeLana", "geo": null, "id": 148839347981008900, "id_str": "148839347981008897", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692061389/1213111533_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692061389/1213111533_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "first angry birds...ow temple run -____- #icant", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:17 +0000", "from_user": "MissEp3", "from_user_id": 155083481, "from_user_id_str": "155083481", "from_user_name": "JESSICA S.", "geo": null, "id": 148839336765427700, "id_str": "148839336765427713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684484120/N3DQR4eS_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684484120/N3DQR4eS_normal", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @DJJONEZNYC: Lol true! RT @MissEp3: Men are birds too, just saying.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:17 +0000", "from_user": "triggatimsongz", "from_user_id": 273596693, "from_user_id_str": "273596693", "from_user_name": "Tim Landock Jr", "geo": null, "id": 148839333577752580, "id_str": "148839333577752576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1290604082/timmy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1290604082/timmy_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Birds of a feather flock together !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:13 +0000", "from_user": "BraveBoldNathan", "from_user_id": 375671996, "from_user_id_str": "375671996", "from_user_name": "Nathan Bone", "geo": null, "id": 148839319132581900, "id_str": "148839319132581888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1548542874/249494_1543650531051_1828634700_937807_7381645_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1548542874/249494_1543650531051_1828634700_937807_7381645_n_normal.jpg", "source": "<a href="http://getglue.com" rel="nofollow">GetGlue.com</a>", "text": "\"I have a test tomorrow in birds suddenly appear....I mean english!\" http://t.co/zh4wqVMq @GetGlue #thesimpsons", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:13 +0000", "from_user": "erkrosales", "from_user_id": 132967809, "from_user_id_str": "132967809", "from_user_name": "Erik Rosales", "geo": null, "id": 148839318578925570, "id_str": "148839318578925568", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702188377/IMG00340-20110717-1710_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702188377/IMG00340-20110717-1710_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Hasta donde han llegado #angrybirds abren parque tem\\u00E1tico en China http://t.co/TMKCHxGT hahahahaha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:11 +0000", "from_user": "nathanleah", "from_user_id": 35303525, "from_user_id_str": "35303525", "from_user_name": "Nathan Leah", "geo": null, "id": 148839311054340100, "id_str": "148839311054340099", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1653487729/IMG00021-20111122-1657_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653487729/IMG00021-20111122-1657_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @WTFuckFacts: Over 1,000 birds a year die from smashing into windows.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:11 +0000", "from_user": "PrettyShanell21", "from_user_id": 145450828, "from_user_id_str": "145450828", "from_user_name": "Shiffon Neverson", "geo": null, "id": 148839309103996930, "id_str": "148839309103996929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702552405/PrettyShanell21_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702552405/PrettyShanell21_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "I don't like making love I leave that to the married ppl or the love birds ..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:11 +0000", "from_user": "VeroniicaLynn", "from_user_id": 195193252, "from_user_id_str": "195193252", "from_user_name": "Veronica Skittles", "geo": null, "id": 148839308437094400, "id_str": "148839308437094400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1634705065/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634705065/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "That awkward moment when you realize one level of angry birds lasts longer than your relationships", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:10 +0000", "from_user": "BossDre_", "from_user_id": 124734009, "from_user_id_str": "124734009", "from_user_name": "Andr\\u00E9 \\u2714", "geo": null, "id": 148839305945677820, "id_str": "148839305945677824", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700052319/Foto_68_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700052319/Foto_68_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ohnoitsafro: @BossDre_ ga niet suicide, kill gewoon die birds je mag niet dood :( - hihih yeah <3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:07 +0000", "from_user": "InsectTribe", "from_user_id": 66624452, "from_user_id_str": "66624452", "from_user_name": "Yo.", "geo": null, "id": 148839292121251840, "id_str": "148839292121251841", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668442590/388291_1992286026323_1818594261_1319840_1467390361_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668442590/388291_1992286026323_1818594261_1319840_1467390361_n_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Angry birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:06 +0000", "from_user": "ashlynochoy", "from_user_id": 305822181, "from_user_id_str": "305822181", "from_user_name": "ashlyn choy", "geo": null, "id": 148839291114622980, "id_str": "148839291114622976", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1682829555/Comforter_Sets_Twin_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682829555/Comforter_Sets_Twin_normal.jpg", "source": "<a href="http://comfortersetstwin.com" rel="nofollow">Comforter Sets Twin</a>", "text": "Q: Birds Butterflies and http://t.co/er4JP7It", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:06 +0000", "from_user": "Jannausld", "from_user_id": 426261581, "from_user_id_str": "426261581", "from_user_name": "Janna Cadorette", "geo": null, "id": 148839290556792830, "id_str": "148839290556792833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668795630/LLCM-2162_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668795630/LLCM-2162_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@xLOiiSBiiEBER Dude, get Pigeon Palooza (the next angry birds)- it's in Android Mktplce - will be in ITunes soon.", "to_user": "xLOiiSBiiEBER", "to_user_id": 254555340, "to_user_id_str": "254555340", "to_user_name": "a BELIEBER in BIEBER", "in_reply_to_status_id": 148838193637240830, "in_reply_to_status_id_str": "148838193637240832"}, +{"created_at": "Mon, 19 Dec 2011 18:57:05 +0000", "from_user": "NajeraTheBeast", "from_user_id": 198767448, "from_user_id_str": "198767448", "from_user_name": "Lidin Aaron Najera", "geo": null, "id": 148839283149635600, "id_str": "148839283149635584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689669071/NajeraTheBeast_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689669071/NajeraTheBeast_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Never fails. Fuckin morning branch every morning.. there's birds chilling on it and shit.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:04 +0000", "from_user": "dimdom", "from_user_id": 20195643, "from_user_id_str": "20195643", "from_user_name": "Dominic Langmead", "geo": null, "id": 148839279471235070, "id_str": "148839279471235072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1642361452/dom_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642361452/dom_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "just given my 10 year old niece a #WP7 within seconds she was in the marketplace downloading Angry Birds after never seeing it before.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:03 +0000", "from_user": "DJJONEZNYC", "from_user_id": 34871605, "from_user_id_str": "34871605", "from_user_name": "DJ JON\\u039EZ Bombita\\u2714", "geo": null, "id": 148839277713834000, "id_str": "148839277713833984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1663951011/387368_10150355991522676_510162675_8481253_878600325_n-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663951011/387368_10150355991522676_510162675_8481253_878600325_n-1_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Lol true! RT @MissEp3: Men are birds too, just saying.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:02 +0000", "from_user": "Lawannabm70", "from_user_id": 387913190, "from_user_id_str": "387913190", "from_user_name": "Lawanna Mazzeo", "geo": null, "id": 148839272894562300, "id_str": "148839272894562304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1580572099/PPK-3283_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580572099/PPK-3283_normal.jpg", "source": "<a href="http://bestdealsvk2.co.cc" rel="nofollow">bestdealsvk2.co.cc</a>", "text": "http://t.co/SyjFrxtv Angry Birds - Gaming Poster Angry Birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:58 +0000", "from_user": "tankababy01", "from_user_id": 266392500, "from_user_id_str": "266392500", "from_user_name": "Tanka B", "geo": null, "id": 148839256671010800, "id_str": "148839256671010816", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695962643/Picture0169_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695962643/Picture0169_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@KonvicB @MisFine89 immm joeeee hye u luv birds :)", "to_user": "KonvicB", "to_user_id": 92476914, "to_user_id_str": "92476914", "to_user_name": "#meagainsttheworld", "in_reply_to_status_id": 148838853019566080, "in_reply_to_status_id_str": "148838853019566080"}, +{"created_at": "Mon, 19 Dec 2011 18:56:57 +0000", "from_user": "_rondo38", "from_user_id": 263415746, "from_user_id_str": "263415746", "from_user_name": "Nine Rondo . !!", "geo": null, "id": 148839251465875460, "id_str": "148839251465875456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1551265518/brah-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1551265518/brah-1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @channyRICH: playing angry birds , this shit addicting !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:55 +0000", "from_user": "_vicKiUrSecRet", "from_user_id": 97718194, "from_user_id_str": "97718194", "from_user_name": "Jazzy Love", "geo": null, "id": 148839244461379600, "id_str": "148839244461379584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1427603554/3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1427603554/3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "aye she blowin me that shit is reckless bitch chill cuz all that talk is for the birds get over it all aint friends part ways #fuck", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:55 +0000", "from_user": "bw5599", "from_user_id": 239294392, "from_user_id_str": "239294392", "from_user_name": "Brandon", "geo": null, "id": 148839241642815500, "id_str": "148839241642815489", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1658603046/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658603046/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@JonPitman @ESPN_Colin bottom line if birds didn't have wings they couldn't fly!! #denverdelusion", "to_user": "ESPN_Colin", "to_user_id": 52529896, "to_user_id_str": "52529896", "to_user_name": "Colin Cowherd", "in_reply_to_status_id": 148835849184886800, "in_reply_to_status_id_str": "148835849184886784"}, +{"created_at": "Mon, 19 Dec 2011 18:56:53 +0000", "from_user": "Tony_O92", "from_user_id": 118245224, "from_user_id_str": "118245224", "from_user_name": "Tony Ortega ", "geo": null, "id": 148839236211183600, "id_str": "148839236211183616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1686224350/munch_2011_10_31_190745_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686224350/munch_2011_10_31_190745_normal.png", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@AlfonsoOrtixx blood and glory, angry birds, cut the rope, gunbros, infinity blade, zombieville, plants vs zombies, falling fred", "to_user": "AlfonsoOrtixx", "to_user_id": 123609142, "to_user_id_str": "123609142", "to_user_name": "Pedro Ortiz", "in_reply_to_status_id": 148804335499870200, "in_reply_to_status_id_str": "148804335499870211"}, +{"created_at": "Mon, 19 Dec 2011 18:56:52 +0000", "from_user": "nicolekayys", "from_user_id": 35506521, "from_user_id_str": "35506521", "from_user_name": "Nicole Spouge", "geo": null, "id": 148839232310493200, "id_str": "148839232310493184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1502631706/Vintage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1502631706/Vintage_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "The only things to keep me company right now are my birds. #loneliness", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:50 +0000", "from_user": "3LEGGED_DICKI", "from_user_id": 58128549, "from_user_id_str": "58128549", "from_user_name": "RICHARD A.K.A. DICKI", "geo": null, "id": 148839222743277570, "id_str": "148839222743277569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1514566843/261957_123300007757851_100002335572574_196180_854825_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1514566843/261957_123300007757851_100002335572574_196180_854825_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "LOL WHERES THE BIRDS *throws rice on dick*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:48 +0000", "from_user": "_YouABADDGirl", "from_user_id": 239551540, "from_user_id_str": "239551540", "from_user_name": "\\u2665\\u2665\\u2665", "geo": null, "id": 148839214782484480, "id_str": "148839214782484480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698539757/_123456_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698539757/_123456_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @JenJen_BadDoe: Jus downloaded angry birds :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:48 +0000", "from_user": "Luanahqp", "from_user_id": 431706462, "from_user_id_str": "431706462", "from_user_name": "Luana Edgerson", "geo": null, "id": 148839214375632900, "id_str": "148839214375632896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681043380/ikjwfl45yz_135321104-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681043380/ikjwfl45yz_135321104-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Avian Biochemistry and Molecular Biology: The biology of birds is diverse and frequently differs significantly f... http://t.co/AdZcQZEv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:46 +0000", "from_user": "loriahorton", "from_user_id": 210643292, "from_user_id_str": "210643292", "from_user_name": "Lori Horton", "geo": null, "id": 148839206809108480, "id_str": "148839206809108480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1661334493/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661334493/twitter_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "And a few minutes of angry birds before the kids come home from school? This MUST be my day!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:46 +0000", "from_user": "iTweet4Pesos", "from_user_id": 208654031, "from_user_id_str": "208654031", "from_user_name": "Pedro ", "geo": null, "id": 148839205907345400, "id_str": "148839205907345408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698926534/profile_image_1324157934270_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698926534/profile_image_1324157934270_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "And flippin them bricks RT @tstrong4 Thats cause mike was moving them birds RT @iTweet4Pesos: Smooth Criminal just came on Jeezy Pandora", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:44 +0000", "from_user": "RoeDent", "from_user_id": 52410631, "from_user_id_str": "52410631", "from_user_name": "Roe Dent", "geo": null, "id": 148839196340129800, "id_str": "148839196340129792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/639414532/roe_avatar_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/639414532/roe_avatar_normal.PNG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @harvardjames: 'Today's prize is perfect for anyone who want to keep nocturnal predatory birds warm on a cold night: it's this heated owl-rail.' #ISIHAC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:44 +0000", "from_user": "KaylaMarchee", "from_user_id": 242063362, "from_user_id_str": "242063362", "from_user_name": "Kayla Marchee'", "geo": null, "id": 148839195337687040, "id_str": "148839195337687041", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701202462/2011-08-08_20.36.20-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701202462/2011-08-08_20.36.20-1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "This training is 4 tha effn birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:38 +0000", "from_user": "Agnusidr", "from_user_id": 426264992, "from_user_id_str": "426264992", "from_user_name": "Marlin Osburne", "geo": null, "id": 148839170931040260, "id_str": "148839170931040256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668803895/LLCM-1660_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668803895/LLCM-1660_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@_ImSunnyAF Ya should try out Pigeon Palooza (the next angry birds)- it's for sale in Android Mktplce - will be in App Store soon.", "to_user": "_ImSunnyAF", "to_user_id": 173588622, "to_user_id_str": "173588622", "to_user_name": "Navier Nicole \\u2764", "in_reply_to_status_id": 148826291125239800, "in_reply_to_status_id_str": "148826291125239808"}, +{"created_at": "Mon, 19 Dec 2011 18:56:38 +0000", "from_user": "RaQueLHelena86", "from_user_id": 197892768, "from_user_id_str": "197892768", "from_user_name": "ShELL\\u2764\\u2764", "geo": null, "id": 148839170654212100, "id_str": "148839170654212096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702599370/IMG_9154_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702599370/IMG_9154_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@GarrettKlingel no myspace!!!...hah just tweetin wit the birds for now;)", "to_user": "GarrettKlingel", "to_user_id": 164729664, "to_user_id_str": "164729664", "to_user_name": "Garrett Klingel"}, +{"created_at": "Mon, 19 Dec 2011 18:56:36 +0000", "from_user": "Diannebrink", "from_user_id": 280662049, "from_user_id_str": "280662049", "from_user_name": "Dianne Brink", "geo": null, "id": 148839162332721150, "id_str": "148839162332721152", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1308792545/Naamloos_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1308792545/Naamloos_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Hahaha m'n moeder en zusjes zijn Angry Birds aan het spelen ^^", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:32 +0000", "from_user": "JosieMonteraJKS", "from_user_id": 428355695, "from_user_id_str": "428355695", "from_user_name": "Josie Montera", "geo": null, "id": 148839148285988860, "id_str": "148839148285988865", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674178556/16114177451195463_meghan_laughing_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674178556/16114177451195463_meghan_laughing_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@LisannePul Ya have to get Pigeon Palooza (the next angry birds)- it's live in Android Mktplce - will be in App Store next week.", "to_user": "LisannePul", "to_user_id": 377994681, "to_user_id_str": "377994681", "to_user_name": "Lisanne", "in_reply_to_status_id": 148818562289647600, "in_reply_to_status_id_str": "148818562289647616"}, +{"created_at": "Mon, 19 Dec 2011 18:56:32 +0000", "from_user": "WHOters_GiRl", "from_user_id": 213013421, "from_user_id_str": "213013421", "from_user_name": "DEViLiNa_BlUE DRESs", "geo": null, "id": 148839146885091330, "id_str": "148839146885091328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700726212/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700726212/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "killed two birds with one stone", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:28 +0000", "from_user": "TakeMyDicNFLOSS", "from_user_id": 73972269, "from_user_id_str": "73972269", "from_user_name": "\\u2605\\u2605 740 Shawtyyy \\u2605\\u2605", "geo": null, "id": 148839129067683840, "id_str": "148839129067683840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700508562/382170_2506028086041_1113202176_2747575_370355247_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700508562/382170_2506028086041_1113202176_2747575_370355247_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_StayyTrueee: All that beatin around the bush shit aint foreal , Shits for the birds !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:26 +0000", "from_user": "cute_lala99", "from_user_id": 196857788, "from_user_id_str": "196857788", "from_user_name": "Eyets weyinmi", "geo": null, "id": 148839121522147330, "id_str": "148839121522147328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691633760/331454995_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691633760/331454995_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "LolRT @dfixerr: As we celebrate Christmas. A lot of birds are in fear for their lives.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:23 +0000", "from_user": "godsonbates", "from_user_id": 274086871, "from_user_id_str": "274086871", "from_user_name": "d. Bates", "geo": null, "id": 148839108922454000, "id_str": "148839108922454016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693670663/331509268_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693670663/331509268_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Crazy wit the head, but she crazy in the head! Attract allotta birds cuz I got allotta bread!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:22 +0000", "from_user": "ShowMeMorr", "from_user_id": 172192066, "from_user_id_str": "172192066", "from_user_name": "Sean Morrissey", "geo": null, "id": 148839105315356670, "id_str": "148839105315356672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1682027161/Me_and_Chris_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682027161/Me_and_Chris_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "As more time goes by I would really like to see a 6' vegan powered afro launching pad standing on first base for the birds on the bat.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:16 +0000", "from_user": "_IDontCareee", "from_user_id": 216152809, "from_user_id_str": "216152809", "from_user_name": "Breea Nikol", "geo": null, "id": 148839081491701760, "id_str": "148839081491701761", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1653353436/Photo_on_2011-11-09_at_10.18__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653353436/Photo_on_2011-11-09_at_10.18__2_normal.jpg", "source": "<a href="http://www.twitter.com" rel="nofollow">Twitter for Windows Phone</a>", "text": "RT @TylerTheDebator: Birds of a feather flock together", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:16 +0000", "from_user": "EssaFrase_diz", "from_user_id": 302120462, "from_user_id_str": "302120462", "from_user_name": "Somente Frases \\u263A", "geo": null, "id": 148839079717507070, "id_str": "148839079717507073", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1364786129/folha_solta2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1364786129/folha_solta2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "P\\u00F4neis Malditos? Por que n\\u00E3o Angry Birds Malditos? #BigFollow: http://t.co/95g8W4rw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:15 +0000", "from_user": "MitzioDeSousa", "from_user_id": 388348407, "from_user_id_str": "388348407", "from_user_name": "Mitzio De Sousa", "geo": null, "id": 148839076798279680, "id_str": "148839076798279680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691556836/twitter_final_final_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691556836/twitter_final_final_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Cool old man who can barely walk, drives to the area i live in just to feed the birds every morning! never fails!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:56:13 +0000", "from_user": "dani_hendler", "from_user_id": 26655157, "from_user_id_str": "26655157", "from_user_name": "Dani Hendler", "geo": null, "id": 148839068527104000, "id_str": "148839068527104001", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1265223748/Eu_033he_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1265223748/Eu_033he_normal.jpg", "source": "<a href="http://www.tweekly.fm/" rel="nofollow">Tweekly.fm</a>", "text": "My Top 3 #lastfm Artists: Metallica (61), Arctic Monkeys (30) & Noel Gallagher's High Flying Birds (28) http://t.co/7GpP975k", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:11 +0000", "from_user": "bpfball75", "from_user_id": 73524561, "from_user_id_str": "73524561", "from_user_name": "philip gebbia ", "geo": null, "id": 148839056896294900, "id_str": "148839056896294912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697650314/Image_19_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697650314/Image_19_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "Bored playing angry birds and watching tv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:11 +0000", "from_user": "kindadodgy", "from_user_id": 21236808, "from_user_id_str": "21236808", "from_user_name": "S. Dodge", "geo": null, "id": 148839056585932800, "id_str": "148839056585932800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1134875591/7570017_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1134875591/7570017_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Ok, it seems Angry Birds is now my tool for keeping hyperactive young children busy. I don't even like the game much, but it sure is useful!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:10 +0000", "from_user": "elliemoffat", "from_user_id": 65797927, "from_user_id_str": "65797927", "from_user_name": "Ellie Moffat", "geo": null, "id": 148839053519896580, "id_str": "148839053519896579", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696780359/elliemoffat_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696780359/elliemoffat_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "my brother has spent the past hour playing angry birds on my phone. hey luke, since when did you become five again?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:09 +0000", "from_user": "sadiebaby9", "from_user_id": 249951142, "from_user_id_str": "249951142", "from_user_name": "Sadie Paddock", "geo": null, "id": 148839050319630340, "id_str": "148839050319630337", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1658204539/2011-11-17_13.44.29_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658204539/2011-11-17_13.44.29_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "My worst fear is getting kidnapped, birds are right there with it.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:09 +0000", "from_user": "Lorettekkq", "from_user_id": 426264025, "from_user_id_str": "426264025", "from_user_name": "Lorette Hanner", "geo": null, "id": 148839049212346370, "id_str": "148839049212346369", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668804985/LLCM-5202_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668804985/LLCM-5202_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Ssasyasha Hey, play Pigeon Palooza (the next angry birds)- it's in Android Mktplce - should be in ITunes soon.", "to_user": "Ssasyasha", "to_user_id": 146057069, "to_user_id_str": "146057069", "to_user_name": "Risala sati bumi", "in_reply_to_status_id": 148795609116196860, "in_reply_to_status_id_str": "148795609116196864"}, +{"created_at": "Mon, 19 Dec 2011 18:56:06 +0000", "from_user": "OMGomezx", "from_user_id": 227259171, "from_user_id_str": "227259171", "from_user_name": " Gelly \\u262E", "geo": null, "id": 148839037245984770, "id_str": "148839037245984769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702072165/tumblr_lriqbh6dRh1qe8z50o1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702072165/tumblr_lriqbh6dRh1qe8z50o1_500_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "My idols gives water to imaginary Blue birds . http://t.co/cwEwOipV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:05 +0000", "from_user": "fransiskanadia", "from_user_id": 67556878, "from_user_id_str": "67556878", "from_user_name": "Fransiska Nadia", "geo": null, "id": 148839031852109820, "id_str": "148839031852109824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1644316288/IMG-20110923-00541_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644316288/IMG-20110923-00541_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Stars shining bright above you. Night breezes seem to whisper I love you birds singing in the sycamore tree. Dream a little dream of me.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:03 +0000", "from_user": "blackgaidenx", "from_user_id": 287245019, "from_user_id_str": "287245019", "from_user_name": "Bill Austin", "geo": null, "id": 148839024684040200, "id_str": "148839024684040195", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1323705062/hank_hill-avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1323705062/hank_hill-avatar_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IM+ Adds Own In-App Messenger \"Beep\", Angry Birds Theme - Consumer Electronics Net", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:02 +0000", "from_user": "KarenatashaB", "from_user_id": 288458452, "from_user_id_str": "288458452", "from_user_name": "Karen Backstein", "geo": null, "id": 148839022121328640, "id_str": "148839022121328640", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1365468289/Karen_head_shot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1365468289/Karen_head_shot_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @SterlingBooks: True Tales & A Cherry On Top: Olivia's Birds http://t.co/XixmEMDA cc @BirdgirlLiv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:58 +0000", "from_user": "lolczarina", "from_user_id": 335491031, "from_user_id_str": "335491031", "from_user_name": "czarina", "geo": null, "id": 148839003880300540, "id_str": "148839003880300544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1663791419/Snapshot_20111117_5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663791419/Snapshot_20111117_5_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I always wonder why birds stay in the same place when they can fly anywhere on this earth. Then I ask myself the same question. -Harun Yahya", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:56 +0000", "from_user": "____AMM", "from_user_id": 248019492, "from_user_id_str": "248019492", "from_user_name": "Annie Mariah \\u2665", "geo": null, "id": 148838994636062720, "id_str": "148838994636062721", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1674575664/380352_2086932464359_1576609961_31665238_920572206_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674575664/380352_2086932464359_1576609961_31665238_920572206_n_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @_ImSunnyAF: RT @____AMM: Temple Run , Angry Birds , and Twitter take up my whole life", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:55 +0000", "from_user": "tylerberger410", "from_user_id": 371849015, "from_user_id_str": "371849015", "from_user_name": "Bow-ty Ya'self", "geo": null, "id": 148838991356104700, "id_str": "148838991356104705", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701580078/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701580078/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "Drop shits... Like birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:55 +0000", "from_user": "_xJayNeice", "from_user_id": 291966159, "from_user_id_str": "291966159", "from_user_name": " You See it .", "geo": null, "id": 148838990097821700, "id_str": "148838990097821696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699375038/2011-12-17_22.06.53_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699375038/2011-12-17_22.06.53_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for iPhone</a>", "text": "Since when they start putting the little things from Madagascar in Angry Birds .!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:55 +0000", "from_user": "Sunnylove0001", "from_user_id": 375120775, "from_user_id_str": "375120775", "from_user_name": "shaymyname:D ", "geo": null, "id": 148838989498032130, "id_str": "148838989498032129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700043152/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700043152/image_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @PrettyAxx_Che: \"I Smokee Trees Wiff Thee Birds Andd Thee Bees\" Thatt Fuckin Nashay !!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:49 +0000", "from_user": "Johannpee", "from_user_id": 328029398, "from_user_id_str": "328029398", "from_user_name": "Johannpee", "geo": null, "id": 148838966928478200, "id_str": "148838966928478208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1431733568/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1431733568/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Do birds get tired of flying? Goodnight. :]", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:47 +0000", "from_user": "Sunnylove0001", "from_user_id": 375120775, "from_user_id_str": "375120775", "from_user_name": "shaymyname:D ", "geo": null, "id": 148838957927505920, "id_str": "148838957927505922", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700043152/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700043152/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "i wanna smoke trees w.the birds & bees :) #daily tweet.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:46 +0000", "from_user": "iBlowPiNkClouds", "from_user_id": 218324153, "from_user_id_str": "218324153", "from_user_name": "Stoner, Ima___xoxoxo", "geo": null, "id": 148838955058593800, "id_str": "148838955058593792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697733825/bnash5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697733825/bnash5_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "if fine you fine to me you could purple and i wouldnt care as long as you attractive to me lol that color shit is for the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:44 +0000", "from_user": "foxy_c0de", "from_user_id": 27837759, "from_user_id_str": "27837759", "from_user_name": "c0de", "geo": null, "id": 148838945881460740, "id_str": "148838945881460737", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1612789583/avi-housepets-4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612789583/avi-housepets-4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@natev2 @SwirlyTails @JoltiWolfe birds are smexy", "to_user": "natev2", "to_user_id": 49526547, "to_user_id_str": "49526547", "to_user_name": "Nate", "in_reply_to_status_id": 148838701324173300, "in_reply_to_status_id_str": "148838701324173313"}, +{"created_at": "Mon, 19 Dec 2011 18:55:43 +0000", "from_user": "ABBarlow1", "from_user_id": 311509463, "from_user_id_str": "311509463", "from_user_name": "AB Barlow", "geo": null, "id": 148838939422236670, "id_str": "148838939422236672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1382930574/Drink_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1382930574/Drink_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "A #Photo of a #Tree with a lot of #Birds in it-#Crows\\thttp://t.co/88lKcfMk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:42 +0000", "from_user": "JayJohnsonbeatz", "from_user_id": 408560528, "from_user_id_str": "408560528", "from_user_name": "Jay Johnson", "geo": null, "id": 148838936041623550, "id_str": "148838936041623553", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681261525/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681261525/image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Jay Johnson (Prod. by Jay Johnson)preview\" by JAY JOHNSON ON THE BEATZ AKA MR. WHY DO BIRDS - http://t.co/UAHbkvN3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:41 +0000", "from_user": "Indiraqsu", "from_user_id": 426263021, "from_user_id_str": "426263021", "from_user_name": "Indira Muldrow", "geo": null, "id": 148838931914432500, "id_str": "148838931914432513", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668799239/LLCM-1135_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668799239/LLCM-1135_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@40thingsby40 Ya must try Pigeon Palooza (the next angry birds)- it's avail in Android Mktplce - should be in App Store soon.", "to_user": "40thingsby40", "to_user_id": 232711425, "to_user_id_str": "232711425", "to_user_name": "40thingsby40", "in_reply_to_status_id": 148831639823331330, "in_reply_to_status_id_str": "148831639823331328"}, +{"created_at": "Mon, 19 Dec 2011 18:55:40 +0000", "from_user": "Mr_Titanic", "from_user_id": 170544884, "from_user_id_str": "170544884", "from_user_name": "Anthony ", "geo": null, "id": 148838927724331000, "id_str": "148838927724331010", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699175535/191dba87_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699175535/191dba87_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Hey @Reuben_Wu were you really the one who remixed Birds of Prey? I downld'ed the remix attributed to you! Reply and make me feel special!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:40 +0000", "from_user": "UBinH8n_WatsNew", "from_user_id": 248485958, "from_user_id_str": "248485958", "from_user_name": "Sica IfUDidntKnew", "geo": null, "id": 148838926700904450, "id_str": "148838926700904449", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1678508945/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678508945/image_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Wat tip is ol head on in this electric wheel chair doin the birds done high st wit a snuggie on #FuckDaCityUp lmao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:34 +0000", "from_user": "c_melloyello", "from_user_id": 438054858, "from_user_id_str": "438054858", "from_user_name": "Carmen Janel", "geo": null, "id": 148838904135565300, "id_str": "148838904135565313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701299785/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701299785/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@DABOIGENIUS: Im looking 4wd to joining #TeamMac this PC ish for the birds\\u201D yes...come over to the Mac side....we have cookies. & faster OS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:33 +0000", "from_user": "MikeSimpson32", "from_user_id": 39678013, "from_user_id_str": "39678013", "from_user_name": "Michael Simpson", "geo": null, "id": 148838899295334400, "id_str": "148838899295334400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668072999/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668072999/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "The fat red bird is my favorite on angry birds hahaha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:31 +0000", "from_user": "PrettyAxx_Che", "from_user_id": 360328508, "from_user_id_str": "360328508", "from_user_name": "Tache' Sample", "geo": null, "id": 148838889623257100, "id_str": "148838889623257088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1509073312/_tachee_redoo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509073312/_tachee_redoo_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "\"I Smokee Trees Wiff Thee Birds Andd Thee Bees\" Thatt Fuckin Nashay !!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:29 +0000", "from_user": "xek", "from_user_id": 987541, "from_user_id_str": "987541", "from_user_name": "Josh Myer", "geo": null, "id": 148838883835133950, "id_str": "148838883835133952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1166675025/AIbEiAIAAABDCKDtn4XYkNuRByILdmNhcmRfcGhvdG8qKDdiYzI5OTRiODdjZmIxM2Y3YjZkZDhlZjVmMjVhMmVhN2I1MGI2ZGMwATgU5QHjcuW7ds9r1zFHGXAQ8Q5N_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1166675025/AIbEiAIAAABDCKDtn4XYkNuRByILdmNhcmRfcGhvdG8qKDdiYzI5OTRiODdjZmIxM2Y3YjZkZDhlZjVmMjVhMmVhN2I1MGI2ZGMwATgU5QHjcuW7ds9r1zFHGXAQ8Q5N_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/InpFldZV And then the NYT compared Lisbeth Salander (The Girl With the XYZ) to the birds in Angry Birds. So that happened.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:29 +0000", "from_user": "screamnRoSS", "from_user_id": 384239487, "from_user_id_str": "384239487", "from_user_name": "Sha'ee ", "geo": null, "id": 148838883302453250, "id_str": "148838883302453248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690763960/68mw7guY_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690763960/68mw7guY_normal", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "I'm I don't have time for the high school drama that shit for the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:29 +0000", "from_user": "KenNarahs_Mom", "from_user_id": 427721751, "from_user_id_str": "427721751", "from_user_name": "Jasmine Townes", "geo": null, "id": 148838880253181950, "id_str": "148838880253181952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693593034/nD319GLM_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693593034/nD319GLM_normal", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @ThsWht_iCallHer: Birds of a feather flock together. Hoes on the same shit chase after the same dick.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:26 +0000", "from_user": "kneehigh86", "from_user_id": 437567268, "from_user_id_str": "437567268", "from_user_name": "hate it or love it", "geo": null, "id": 148838871629692930, "id_str": "148838871629692928", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694858934/IMAG0055_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694858934/IMAG0055_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Bahaaaaa birds!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:23 +0000", "from_user": "zavele", "from_user_id": 109556393, "from_user_id_str": "109556393", "from_user_name": "maruta", "geo": null, "id": 148838858149212160, "id_str": "148838858149212160", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@LaurisReiniks Mhm ANGRY BIRDS ir super\\u012Bgi.", "to_user": "LaurisReiniks", "to_user_id": 44196684, "to_user_id_str": "44196684", "to_user_name": "Lauris Reiniks ", "in_reply_to_status_id": 148137173625999360, "in_reply_to_status_id_str": "148137173625999360"}, +{"created_at": "Mon, 19 Dec 2011 18:55:22 +0000", "from_user": "sarah_belhaj", "from_user_id": 311550280, "from_user_id_str": "311550280", "from_user_name": "sarah belhaj", "geo": null, "id": 148838853166374900, "id_str": "148838853166374913", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702607146/391037_2892221513172_1489296376_33039863_1210237176_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702607146/391037_2892221513172_1489296376_33039863_1210237176_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "angry birds is the only thing getting me through babysitting ahh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:22 +0000", "from_user": "SoCalMiracle", "from_user_id": 129582641, "from_user_id_str": "129582641", "from_user_name": "IV.XXVII.MCMXCIV \\u2665", "geo": null, "id": 148838852843413500, "id_str": "148838852843413504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1639195987/6260044323_f65d96ce95_z__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639195987/6260044323_f65d96ce95_z__1__normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@urFutureIDOL *Shoots Birds* Whatever.. Gay People ALWAYS Wanna Walk Away From A Fiqht.! Lol @DWill_PBE Handle This Fool.! Lol", "to_user": "urFutureIDOL", "to_user_id": 265106957, "to_user_id_str": "265106957", "to_user_name": "Alex Gardner", "in_reply_to_status_id": 148837800299597820, "in_reply_to_status_id_str": "148837800299597824"}, +{"created_at": "Mon, 19 Dec 2011 18:55:20 +0000", "from_user": "Tildaies", "from_user_id": 426262628, "from_user_id_str": "426262628", "from_user_name": "Tilda Heltzel", "geo": null, "id": 148838843058106370, "id_str": "148838843058106369", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668798045/LLCM-2344_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668798045/LLCM-2344_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@bmango77 Ya must check out Pigeon Palooza (the next angry birds)- it's avail in Android Mktplce - will be in ITunes next week.", "to_user": "bmango77", "to_user_id": 97357706, "to_user_id_str": "97357706", "to_user_name": "bekah", "in_reply_to_status_id": 148819524764971000, "in_reply_to_status_id_str": "148819524764971009"}, +{"created_at": "Mon, 19 Dec 2011 18:55:19 +0000", "from_user": "UmThePresident", "from_user_id": 154228783, "from_user_id_str": "154228783", "from_user_name": "Mrs. UnFCKWITable", "geo": null, "id": 148838836141690880, "id_str": "148838836141690880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1639316337/Green_Patron_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639316337/Green_Patron_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Camera on iOS</a>", "text": "Which one of you bitch ass birds shitted on Becky?? http://t.co/UQUJIpte", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:18 +0000", "from_user": "TheFukknJuice", "from_user_id": 413617583, "from_user_id_str": "413617583", "from_user_name": "Arland Woodruff", "geo": null, "id": 148838834929549300, "id_str": "148838834929549312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690839816/zrvD00Nj_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690839816/zrvD00Nj_normal", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Me an my girl both go be in the jail birds for domestic violence #tragic", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:18 +0000", "from_user": "JayJohnsonbeatz", "from_user_id": 408560528, "from_user_id_str": "408560528", "from_user_name": "Jay Johnson", "geo": null, "id": 148838834401050620, "id_str": "148838834401050624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681261525/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681261525/image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\"Weight Room - Jay Johnson (Prod. by Jay Johnson)preview\" by JAY JOHNSON ON THE BEATZ AKA MR. WHY DO BIRDS - http://t.co/UAHbkvN3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:16 +0000", "from_user": "Feleciavcj", "from_user_id": 431756494, "from_user_id_str": "431756494", "from_user_name": "Felecia Jaubert", "geo": null, "id": 148838826591268860, "id_str": "148838826591268864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681149924/3i2ten552a_130716018_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681149924/3i2ten552a_130716018_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Sequence of Plumages and Moults of the Passerine Birds of New York (Annals of The New York Academy of Scienc... http://t.co/VSBX4fKL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:16 +0000", "from_user": "Paletorra", "from_user_id": 183097477, "from_user_id_str": "183097477", "from_user_name": "Pale Torres", "geo": null, "id": 148838826364776450, "id_str": "148838826364776448", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670873935/IMG02200_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670873935/IMG02200_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @BelleMillaQEOG @Paletorra Hey, go get Pigeon Palooza (the next angry birds)...// pens\\u00E9 que era de @pacopalooza. No me importa entonces.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:14 +0000", "from_user": "I_am_Kungu", "from_user_id": 302811580, "from_user_id_str": "302811580", "from_user_name": "Samuel Kung'u ", "geo": null, "id": 148838820324966400, "id_str": "148838820324966400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680842310/II_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680842310/II_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@MMasha3 u sed am slow, see its birds of w feather \\u2193\\u2193checkYOURmentionB4mine\\u2193\\u2193", "to_user": "MMasha3", "to_user_id": 261230914, "to_user_id_str": "261230914", "to_user_name": "Masha Macharia", "in_reply_to_status_id": 148835356165414900, "in_reply_to_status_id_str": "148835356165414914"}, +{"created_at": "Mon, 19 Dec 2011 18:55:11 +0000", "from_user": "KiranYoliswa", "from_user_id": 274559968, "from_user_id_str": "274559968", "from_user_name": "Kiran M-Ray", "geo": null, "id": 148838808035667970, "id_str": "148838808035667969", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1292757077/171822_10150101858949194_507759193_6008342_6755413_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1292757077/171822_10150101858949194_507759193_6008342_6755413_o_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "And the mosquitos out here are like small birds!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:11 +0000", "from_user": "kissya_franco", "from_user_id": 72072387, "from_user_id_str": "72072387", "from_user_name": "Feliz Natal HOHO :{D", "geo": null, "id": 148838805221277700, "id_str": "148838805221277696", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695446583/Foto_A1013_Instant_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695446583/Foto_A1013_Instant_1_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "P\\u00F4neis Malditos? Por que n\\u00E3o Angry Birds Malditos? #BigFollow: http://t.co/pAt0bSnK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:10 +0000", "from_user": "iheartKay_", "from_user_id": 303489183, "from_user_id_str": "303489183", "from_user_name": "Kayla Hamilton", "geo": null, "id": 148838801253482500, "id_str": "148838801253482497", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1665105887/Picture_of_me_6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665105887/Picture_of_me_6_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "These birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:06 +0000", "from_user": "nossiac295", "from_user_id": 220015632, "from_user_id_str": "220015632", "from_user_name": "Jon Bozeman", "geo": null, "id": 148838785608724480, "id_str": "148838785608724480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702332600/imagesCAOR7003_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702332600/imagesCAOR7003_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Beat the Dirty Birds on #MNF #GoFans #NO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:04 +0000", "from_user": "mckinderegg", "from_user_id": 141736347, "from_user_id_str": "141736347", "from_user_name": "Emily mckinley", "geo": null, "id": 148838778226749440, "id_str": "148838778226749440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700378001/lglp1491_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700378001/lglp1491_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "if a couple in love are called love birds then a couple who are fighting should be called angry birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:04 +0000", "from_user": "WOAH_ItsLexie", "from_user_id": 33429958, "from_user_id_str": "33429958", "from_user_name": "Lexie `im not a star", "geo": null, "id": 148838776859398140, "id_str": "148838776859398144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1656629413/x2_97e334a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656629413/x2_97e334a_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "why do birds...suddenly appear....every time....you are near?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:00 +0000", "from_user": "TriceC12", "from_user_id": 281703270, "from_user_id_str": "281703270", "from_user_name": "Patrice Smith", "geo": null, "id": 148838759968948220, "id_str": "148838759968948225", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697029327/Snapshot_20111216_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697029327/Snapshot_20111216_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "When my little sister saw my iPhone the first thing she says is \"Yay! Now I can play Angry Birds!\" Ummm...no. Lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:59 +0000", "from_user": "Roxanefvj", "from_user_id": 426262051, "from_user_id_str": "426262051", "from_user_name": "Roxane Chafetz", "geo": null, "id": 148838755355197440, "id_str": "148838755355197440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668798016/LLCM-4894_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668798016/LLCM-4894_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@megancampbell16 Ya have to try out Pigeon Palooza (the next angry birds)- it's in Android Mktplce - should be in App Store next week.", "to_user": "megancampbell16", "to_user_id": 355034509, "to_user_id_str": "355034509", "to_user_name": "Megan Salvatore-Way", "in_reply_to_status_id": 148824878001299460, "in_reply_to_status_id_str": "148824878001299456"}, +{"created_at": "Mon, 19 Dec 2011 18:54:58 +0000", "from_user": "TylerTheDebator", "from_user_id": 101017433, "from_user_id_str": "101017433", "from_user_name": "mr.Nice guy", "geo": +{"coordinates": [39.2274,-76.8293], "type": "Point"}, "id": 148838751840370700, "id_str": "148838751840370690", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1674560016/tumblr_lvpnlzXvsD1qgre1io1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674560016/tumblr_lvpnlzXvsD1qgre1io1_500_normal.jpg", "source": "<a href="http://www.twitter.com" rel="nofollow">Twitter for Windows Phone</a>", "text": "Birds of a feather flock together", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:58 +0000", "from_user": "UltiMasTeratism", "from_user_id": 247450798, "from_user_id_str": "247450798", "from_user_name": "Thad", "geo": null, "id": 148838751534186500, "id_str": "148838751534186497", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1640272741/IMG00129-20110409-1150_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640272741/IMG00129-20110409-1150_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Fuck you angry birds! #toohard", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:57 +0000", "from_user": "zavele", "from_user_id": 109556393, "from_user_id_str": "109556393", "from_user_name": "maruta", "geo": null, "id": 148838748963090430, "id_str": "148838748963090433", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @LaurisReiniks: Liel\\u0101kais ieguvums no mana jaun\\u0101 MacBook Pro ir..... ANGRY BIRDS! Tie putni mani ir konkr\\u0113ti sag\\u016Bst\\u012Bju\\u0161i sav\\u0101 var\\u0101 :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:57 +0000", "from_user": "3stee", "from_user_id": 19024357, "from_user_id_str": "19024357", "from_user_name": "Estee!", "geo": null, "id": 148838748161982460, "id_str": "148838748161982466", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/841406590/l_dbda9c8a61e7b9d06c390fe9c6dd377f_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/841406590/l_dbda9c8a61e7b9d06c390fe9c6dd377f_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "If I don't get 3 stars on this angry birds level soon I'm going to lose it on everyone.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:54 +0000", "from_user": "Kellehlmh", "from_user_id": 426260155, "from_user_id_str": "426260155", "from_user_name": "Kelle Rayas", "geo": null, "id": 148838734098477060, "id_str": "148838734098477056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668791732/LLCM-1074_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668791732/LLCM-1074_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ForeverGucci128 Go try out Pigeon Palooza (the next angry birds)- it's launched in Android Mktplce - should be in App Store soon.", "to_user": "ForeverGucci128", "to_user_id": 384006227, "to_user_id_str": "384006227", "to_user_name": "Get DOWN Or Lay DOWN", "in_reply_to_status_id": 148835103085301760, "in_reply_to_status_id_str": "148835103085301760"}, +{"created_at": "Mon, 19 Dec 2011 18:54:51 +0000", "from_user": "Katerinoula_S", "from_user_id": 367268542, "from_user_id_str": "367268542", "from_user_name": "Katerina Spyridakis", "geo": null, "id": 148838722325061630, "id_str": "148838722325061632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700744051/Photo_on_2011-12-17_at_19.34__3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700744051/Photo_on_2011-12-17_at_19.34__3_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Angry birds is getting me so angry \\uD83D\\uDE21 I can't beat level 3 lmao!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:50 +0000", "from_user": "sbseventsvzw", "from_user_id": 405038103, "from_user_id_str": "405038103", "from_user_name": "sbsevents", "geo": null, "id": 148838718831210500, "id_str": "148838718831210496", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1622596159/logo_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622596159/logo_1__normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Goed nieuws voor de 'Early Birds'! Omdat we jullie graag zien krijgen de eerste 40 aanwezigen gratis vodka (of... http://t.co/mXPlYgHM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:49 +0000", "from_user": "Jaimeengql", "from_user_id": 426262582, "from_user_id_str": "426262582", "from_user_name": "Jaimee Goldman", "geo": null, "id": 148838715488346100, "id_str": "148838715488346112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668798708/LLCM-3633_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668798708/LLCM-3633_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@theganggy Ya should get Pigeon Palooza (the next angry birds)- it is avail in Android Mktplce - will be in App Store soon.", "to_user": "theganggy", "to_user_id": 289291927, "to_user_id_str": "289291927", "to_user_name": "\\u2603SH\\u03A3\\u03A3R \\u270C", "in_reply_to_status_id": 148808515035738100, "in_reply_to_status_id_str": "148808515035738112"}, +{"created_at": "Mon, 19 Dec 2011 18:54:46 +0000", "from_user": "natev2", "from_user_id": 49526547, "from_user_id_str": "49526547", "from_user_name": "Nate", "geo": null, "id": 148838701324173300, "id_str": "148838701324173313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1238596428/Sonic_The_Hedgehog_by_Deadklown_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1238596428/Sonic_The_Hedgehog_by_Deadklown_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@SwirlyTails @JoltiWolfe started talking about birds!", "to_user": "SwirlyTails", "to_user_id": 418332850, "to_user_id_str": "418332850", "to_user_name": "bluwehusky", "in_reply_to_status_id": 148838590980440060, "in_reply_to_status_id_str": "148838590980440064"}, +{"created_at": "Mon, 19 Dec 2011 18:54:46 +0000", "from_user": "ShonaSchlickerU", "from_user_id": 428329314, "from_user_id_str": "428329314", "from_user_name": "Shona Schlicker", "geo": null, "id": 148838701202546700, "id_str": "148838701202546690", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1674178618/15093392221209438_double_call_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674178618/15093392221209438_double_call_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@mrs_onix Ya have to try Pigeon Palooza (the next angry birds)- it is avail in Android Mktplce - will be in ITunes soon.", "to_user": "mrs_onix", "to_user_id": 431022675, "to_user_id_str": "431022675", "to_user_name": "Mrs. Onix", "in_reply_to_status_id": 148832356285939700, "in_reply_to_status_id_str": "148832356285939712"}, +{"created_at": "Mon, 19 Dec 2011 18:54:44 +0000", "from_user": "Jbenavidez3", "from_user_id": 187339110, "from_user_id_str": "187339110", "from_user_name": "Julia Benavidez", "geo": null, "id": 148838692084138000, "id_str": "148838692084137984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680135596/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680135596/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Walmart lady started trippin out cus i started throwing the angry birds at maria. :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:42 +0000", "from_user": "UnseenGreatness", "from_user_id": 176845036, "from_user_id_str": "176845036", "from_user_name": "keenan williams", "geo": null, "id": 148838685075443700, "id_str": "148838685075443713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1387148630/avatar_normal.JPEG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1387148630/avatar_normal.JPEG", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Lil drewie in the angry birds hit lol http://t.co/Rm0uj3EB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:41 +0000", "from_user": "promowestlive", "from_user_id": 17162659, "from_user_id_str": "17162659", "from_user_name": "PromoWest Live", "geo": null, "id": 148838680084234240, "id_str": "148838680084234240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/974877670/promowest_live_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/974877670/promowest_live_normal.png", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Video: Don\\u2019t miss A Lot Like Birds w/ Decoder and Just Like Vinyl - January 25 at The Basement! http://t.co/kutO3nZh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:37 +0000", "from_user": "_StayyTrueee", "from_user_id": 337244596, "from_user_id_str": "337244596", "from_user_name": "India Adrianna ", "geo": null, "id": 148838663319584770, "id_str": "148838663319584769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1666580852/meeeee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666580852/meeeee_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "All that beatin around the bush shit aint foreal , Shits for the birds !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:33 +0000", "from_user": "Kyoosh", "from_user_id": 278935118, "from_user_id_str": "278935118", "from_user_name": "just a lonely girl", "geo": null, "id": 148838647435763700, "id_str": "148838647435763712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1675865718/________________normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675865718/________________normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Stars shining bright above you.\\nNight breezes seem to whisper I love you\\nBirds singing in the sycamore tree.\\nDream a little dream of me. ~", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:30 +0000", "from_user": "joysunlove", "from_user_id": 147645702, "from_user_id_str": "147645702", "from_user_name": "nicole", "geo": null, "id": 148838634647326720, "id_str": "148838634647326720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1093805730/Snapshot_20100624_52_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1093805730/Snapshot_20100624_52_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Letting my cousins beat the levels on angry birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:27 +0000", "from_user": "ohnoitsafro", "from_user_id": 126572536, "from_user_id_str": "126572536", "from_user_name": "kekellie kwami", "geo": null, "id": 148838622689370100, "id_str": "148838622689370112", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683301553/Snapshot_20111209_5_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683301553/Snapshot_20111209_5_normal.JPG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@BossDre_ ga niet suicide, kill gewoon die birds je mag niet dood :(", "to_user": "BossDre_", "to_user_id": 124734009, "to_user_id_str": "124734009", "to_user_name": "Andr\\u00E9 \\u2714"}, +{"created_at": "Mon, 19 Dec 2011 18:54:22 +0000", "from_user": "tstrong4", "from_user_id": 127372030, "from_user_id_str": "127372030", "from_user_name": "Tweezy\\u2122", "geo": null, "id": 148838600727998460, "id_str": "148838600727998464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1564874063/____ntwan____normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1564874063/____ntwan____normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Thats cause mike was moving them birds RT @iTweet4Pesos: Smooth Criminal just came on Jeezy Pandora", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:22 +0000", "from_user": "Dr_Jaymz", "from_user_id": 86642937, "from_user_id_str": "86642937", "from_user_name": "Alberto J Gonz\\u00E1lez B", "geo": null, "id": 148838600702828540, "id_str": "148838600702828544", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1121727116/James_Hetfield_by_Keeji_d_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1121727116/James_Hetfield_by_Keeji_d_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@serson33 como lo actualizo? casi todos los dias entro n l market y no m sale actualizacion para ninguno d los angry birds...", "to_user": "serson33", "to_user_id": 103638855, "to_user_id_str": "103638855", "to_user_name": "andres gonzalez ", "in_reply_to_status_id": 148830230998548480, "in_reply_to_status_id_str": "148830230998548480"}, +{"created_at": "Mon, 19 Dec 2011 18:54:20 +0000", "from_user": "esha_mae26", "from_user_id": 290916294, "from_user_id_str": "290916294", "from_user_name": " Iesha\\u2122", "geo": null, "id": 148838594319089660, "id_str": "148838594319089664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692221930/20111213_45_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692221930/20111213_45_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Angry Birds Flow", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:20 +0000", "from_user": "NotShia", "from_user_id": 78412459, "from_user_id_str": "78412459", "from_user_name": "Dustin LeBoeuf", "geo": null, "id": 148838593312469000, "id_str": "148838593312468992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1419645676/stone_henge_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1419645676/stone_henge_twitter_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\"Birds on the roof used to shit in our water. It didn't kill us\". -Paw paw, re: life before running water.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:18 +0000", "from_user": "arjangommers", "from_user_id": 31079510, "from_user_id_str": "31079510", "from_user_name": "Arjan Gommers", "geo": +{"coordinates": [51.9924,4.3788], "type": "Point"}, "id": 148838585074851840, "id_str": "148838585074851841", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/719971157/Arjan_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/719971157/Arjan_normal.jpg", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "Altijd leuk alv..... (@ Blue Birds) http://t.co/Sbiw4J6x", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:18 +0000", "from_user": "Always_Vera", "from_user_id": 263464034, "from_user_id_str": "263464034", "from_user_name": "Vera ", "geo": null, "id": 148838583862693900, "id_str": "148838583862693888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1654051922/330282135_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654051922/330282135_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Aubrey is walking around saying she has angry birds in her stomach o_O", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:16 +0000", "from_user": "HAM_MAH23", "from_user_id": 171340867, "from_user_id_str": "171340867", "from_user_name": "M.Harris~ABB", "geo": null, "id": 148838577642545150, "id_str": "148838577642545152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695888139/2011-12-15_19.30.53-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695888139/2011-12-15_19.30.53-1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "http://t.co/t8qf8J7y lil pagitti wit da angry birds hat #fresh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:14 +0000", "from_user": "babystrollBW", "from_user_id": 399226634, "from_user_id_str": "399226634", "from_user_name": "babystrollBW", "geo": null, "id": 148838569287491600, "id_str": "148838569287491584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1610249380/1319753466_bj-mini-orange-big_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610249380/1319753466_bj-mini-orange-big_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "50% off: Birds of Paradise: A Novel", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:14 +0000", "from_user": "mllaurinha", "from_user_id": 86093415, "from_user_id_str": "86093415", "from_user_name": "maria laura cabral", "geo": null, "id": 148838568717062140, "id_str": "148838568717062144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687923549/new_031_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687923549/new_031_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "tem fase nova no angry birds, uhuuuuuuuul!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:13 +0000", "from_user": "RyanW1701", "from_user_id": 350948541, "from_user_id_str": "350948541", "from_user_name": "Ryan Wilson", "geo": null, "id": 148838562098454530, "id_str": "148838562098454528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1566437737/hehe_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566437737/hehe_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Finally listened to Noel Gallagher's High Flying Birds. Album is quality, Noel is definitely the better songwriter of the Gallagher's", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:12 +0000", "from_user": "iIgoruha", "from_user_id": 214605811, "from_user_id_str": "214605811", "from_user_name": "Igoruha", "geo": null, "id": 148838560865325060, "id_str": "148838560865325056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1549770633/Igoruha_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1549770633/Igoruha_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube video http://t.co/JXSjXbsj Angry Birds Wreck The Halls animation", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:10 +0000", "from_user": "TwerkOnMyFace", "from_user_id": 138632419, "from_user_id_str": "138632419", "from_user_name": "Mr.Flirtaholic", "geo": null, "id": 148838552132792320, "id_str": "148838552132792323", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685465638/331235440_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685465638/331235440_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "They ainn shit -_- RT @fckurTHOUGHTS: I hate birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:01 +0000", "from_user": "SMALL_Packagee", "from_user_id": 276781998, "from_user_id_str": "276781998", "from_user_name": "G6'Ridin Rudy ", "geo": null, "id": 148838511355772930, "id_str": "148838511355772929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687023968/IMAG0901_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687023968/IMAG0901_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Angry Birds shirts played out well it was never played in.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:59 +0000", "from_user": "sugareegirl", "from_user_id": 38275547, "from_user_id_str": "38275547", "from_user_name": "Shauna Smith", "geo": null, "id": 148838505605378050, "id_str": "148838505605378049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/260106812/s1204653791_307715_3544_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/260106812/s1204653791_307715_3544_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Damn you Angry Birds!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:56 +0000", "from_user": "DestroeW925", "from_user_id": 343795277, "from_user_id_str": "343795277", "from_user_name": "Ricky Enciso", "geo": null, "id": 148838492338790400, "id_str": "148838492338790400", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1585802154/_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585802154/_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Birds are pretty bitchmade", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:54 +0000", "from_user": "Agnusnxw", "from_user_id": 426260297, "from_user_id_str": "426260297", "from_user_name": "Agnus Zumbach", "geo": null, "id": 148838482247294980, "id_str": "148838482247294977", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668792048/LLCM-3852_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668792048/LLCM-3852_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dessa_zika2 Have to go get Pigeon Palooza (the next angry birds)- it's for sale in Android Mktplce - should be in ITunes in a few days.", "to_user": "dessa_zika2", "to_user_id": 402189775, "to_user_id_str": "402189775", "to_user_name": "Dessa", "in_reply_to_status_id": 148831678159274000, "in_reply_to_status_id_str": "148831678159273984"}, +{"created_at": "Mon, 19 Dec 2011 18:53:50 +0000", "from_user": "clay_deja", "from_user_id": 330012142, "from_user_id_str": "330012142", "from_user_name": "T A T", "geo": null, "id": 148838468036997120, "id_str": "148838468036997121", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1657201358/dejaclay_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657201358/dejaclay_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NP>>> The Weeknd- Birds Part 2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:47 +0000", "from_user": "WonderBread_45", "from_user_id": 330253889, "from_user_id_str": "330253889", "from_user_name": "Josh Lam", "geo": null, "id": 148838453650534400, "id_str": "148838453650534400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1674204150/1323041172561_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674204150/1323041172561_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @chase_____1: Subtweetin is for the birds! smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:40 +0000", "from_user": "Dashia2Sexy", "from_user_id": 356705517, "from_user_id_str": "356705517", "from_user_name": "Dashia Farrell", "geo": null, "id": 148838426303672320, "id_str": "148838426303672322", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693797099/Evq621ol_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693797099/Evq621ol_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "My swag to official thats why these birds jockin it. . . & coppin errthing i got. :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:39 +0000", "from_user": "KeithJonesJr", "from_user_id": 15896497, "from_user_id_str": "15896497", "from_user_name": "The Mayor", "geo": null, "id": 148838422478458880, "id_str": "148838422478458880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668036989/Snapshot_20110730_9_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668036989/Snapshot_20110730_9_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@campi3ell_soup Yea I was playing Angry Birds on Chrome one day and it kept acting up.", "to_user": "campi3ell_soup", "to_user_id": 32473821, "to_user_id_str": "32473821", "to_user_name": "Rich", "in_reply_to_status_id": 148836552863260670, "in_reply_to_status_id_str": "148836552863260672"}, +{"created_at": "Mon, 19 Dec 2011 18:53:35 +0000", "from_user": "Agnusidr", "from_user_id": 426264992, "from_user_id_str": "426264992", "from_user_name": "Marlin Osburne", "geo": null, "id": 148838403574730750, "id_str": "148838403574730752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668803895/LLCM-1660_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668803895/LLCM-1660_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Blessed_Booty Ya must try out Pigeon Palooza (the next angry birds)- it's in Android Mktplce - should be in ITunes in a few days.", "to_user": "Blessed_Booty", "to_user_id": 24283506, "to_user_id_str": "24283506", "to_user_name": "Amy ", "in_reply_to_status_id": 148826292224147460, "in_reply_to_status_id_str": "148826292224147457"}, +{"created_at": "Mon, 19 Dec 2011 18:53:35 +0000", "from_user": "kierstenhyvtosh", "from_user_id": 306014563, "from_user_id_str": "306014563", "from_user_name": "Kiersten Tosh", "geo": null, "id": 148838403104976900, "id_str": "148838403104976897", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1685426354/4a03b034abe39_m_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685426354/4a03b034abe39_m_1__normal.jpg", "source": "<a href="http://cybermondayorblackfriday.com" rel="nofollow">cybermondayorblackfridaydotcom</a>", "text": "Discounts Wall Accents-Flying Birds & Tree Removable Vinyl Home Wall Art Stick http://t.co/tsmaQkZ4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:34 +0000", "from_user": "Christinemiddl1", "from_user_id": 319270893, "from_user_id_str": "319270893", "from_user_name": "Christinemiddlechild", "geo": null, "id": 148838401632780300, "id_str": "148838401632780288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1400727820/me_at_moms_resized_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1400727820/me_at_moms_resized_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "Birds in Flight : RedGage - http://t.co/yD4spWRv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:34 +0000", "from_user": "slantyyz", "from_user_id": 16932050, "from_user_id_str": "16932050", "from_user_name": "Steven Ng", "geo": null, "id": 148838400068288500, "id_str": "148838400068288513", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/656923704/avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/656923704/avatar_normal.png", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "Video: The Interactive Angry Birds Christmas Lights Display | TechCrunch http://t.co/6xeW2pMC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:30 +0000", "from_user": "CMFC99", "from_user_id": 285309729, "from_user_id_str": "285309729", "from_user_name": "Writing Shotgun", "geo": null, "id": 148838383655981060, "id_str": "148838383655981057", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682797076/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682797076/profile_normal.png", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "RT @NottyChrissy: My hatred of birds definitely extends to flamingos. The physics of those things creeps me out.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:28 +0000", "from_user": "KING_MAMA_COLE", "from_user_id": 39641972, "from_user_id_str": "39641972", "from_user_name": "Britain Berry", "geo": null, "id": 148838376710221820, "id_str": "148838376710221825", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1565742098/profile_image_1317332435248_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1565742098/profile_image_1317332435248_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "Its squirrels thats shittin on my car not birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:22 +0000", "from_user": "cyncere23", "from_user_id": 35398114, "from_user_id_str": "35398114", "from_user_name": "James Hicks", "geo": null, "id": 148838351242395650, "id_str": "148838351242395648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1588152928/Cyncere_-_7_Days_-_II_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1588152928/Cyncere_-_7_Days_-_II_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@oompa03 good. Thx. My appt is tomorrow morning. Hopefully I can get some meds. This itching is for the birds!!!", "to_user": "oompa03", "to_user_id": 19634101, "to_user_id_str": "19634101", "to_user_name": "oompa", "in_reply_to_status_id": 148838061994811400, "in_reply_to_status_id_str": "148838061994811392"}, +{"created_at": "Mon, 19 Dec 2011 18:53:22 +0000", "from_user": "turnstilemusic", "from_user_id": 19721512, "from_user_id_str": "19721512", "from_user_name": "turnstilemusic", "geo": null, "id": 148838350466465800, "id_str": "148838350466465793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1392528579/6e97e6cb-cd2e-4ab0-b594-ba75cfdd8fb2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1392528579/6e97e6cb-cd2e-4ab0-b594-ba75cfdd8fb2_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Quick nap. Woke up in Reading. @gruffingtonpost is writing. @turnstiletame is playing angry birds.12 mins late #atheistxmasep", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:22 +0000", "from_user": "JawsonsTweets", "from_user_id": 431162490, "from_user_id_str": "431162490", "from_user_name": "Alex Dawson", "geo": null, "id": 148838347807277060, "id_str": "148838347807277057", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685407819/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685407819/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I rate guys on how many relationships they've held down, not on how birds they've banged.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:21 +0000", "from_user": "chase_____1", "from_user_id": 352081741, "from_user_id_str": "352081741", "from_user_name": "chase hensley", "geo": null, "id": 148838344506347520, "id_str": "148838344506347521", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1656701872/7U73dzip_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656701872/7U73dzip_normal", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Subtweetin is for the birds! smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:18 +0000", "from_user": "taymanjojo1", "from_user_id": 234263473, "from_user_id_str": "234263473", "from_user_name": "Tavan Harvey", "geo": null, "id": 148838332359643140, "id_str": "148838332359643136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699430831/picplz_2011-11-30_12.36.10_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699430831/picplz_2011-11-30_12.36.10_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "If u play wit them BIRDS long enough, u will find out wat it feel like to shit on niggas", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:17 +0000", "from_user": "Redcore", "from_user_id": 294005264, "from_user_id_str": "294005264", "from_user_name": "Jordan Severson", "geo": null, "id": 148838329578819600, "id_str": "148838329578819584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697020777/325190_309585785738451_100000610962222_1047367_114148879_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697020777/325190_309585785738451_100000610962222_1047367_114148879_o_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Angry birds. #hardinthepaint", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:17 +0000", "from_user": "raskoltf", "from_user_id": 47685753, "from_user_id_str": "47685753", "from_user_name": "Ra\\u00FAl", "geo": null, "id": 148838327683006460, "id_str": "148838327683006466", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1626977679/vbsECXV4_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626977679/vbsECXV4_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @valladolor: \"Angry Birds Las Delicias\" en tu App Store, consiste en lanzar trozos de chatarra y cobre a Monchines, nunca les matas, se lo quedan todo.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:16 +0000", "from_user": "MochaMoJia", "from_user_id": 266404580, "from_user_id_str": "266404580", "from_user_name": "Jasmine", "geo": null, "id": 148838326076583940, "id_str": "148838326076583936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1628674629/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628674629/image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Flock Of Birds Mistake Walmart Parking Lot For Pond | Care2 Causes http://t.co/EL9cmmnJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:53:17 +0000", "from_user": "Redcore", "from_user_id": 294005264, "from_user_id_str": "294005264", "from_user_name": "Jordan Severson", "geo": null, "id": 148838329578819600, "id_str": "148838329578819584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697020777/325190_309585785738451_100000610962222_1047367_114148879_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697020777/325190_309585785738451_100000610962222_1047367_114148879_o_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Angry birds. #hardinthepaint", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:17 +0000", "from_user": "raskoltf", "from_user_id": 47685753, "from_user_id_str": "47685753", "from_user_name": "Ra\\u00FAl", "geo": null, "id": 148838327683006460, "id_str": "148838327683006466", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1626977679/vbsECXV4_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626977679/vbsECXV4_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @valladolor: \"Angry Birds Las Delicias\" en tu App Store, consiste en lanzar trozos de chatarra y cobre a Monchines, nunca les matas, se lo quedan todo.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:16 +0000", "from_user": "MochaMoJia", "from_user_id": 266404580, "from_user_id_str": "266404580", "from_user_name": "Jasmine", "geo": null, "id": 148838326076583940, "id_str": "148838326076583936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1628674629/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628674629/image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Flock Of Birds Mistake Walmart Parking Lot For Pond | Care2 Causes http://t.co/EL9cmmnJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:15 +0000", "from_user": "llysabug", "from_user_id": 346839345, "from_user_id_str": "346839345", "from_user_name": "China Cat Sunflower.", "geo": null, "id": 148838321567698940, "id_str": "148838321567698944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1675832057/379567_10150593549214062_520074061_12037038_1619780927_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675832057/379567_10150593549214062_520074061_12037038_1619780927_n_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster</a>", "text": "Angry birds potty time.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:13 +0000", "from_user": "DiicaDiica", "from_user_id": 17259980, "from_user_id_str": "17259980", "from_user_name": "Diica", "geo": null, "id": 148838312663203840, "id_str": "148838312663203840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694688039/_am2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694688039/_am2_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Asshole birds.. stop auuuuuuuuing", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:13 +0000", "from_user": "MyTeam_Michigan", "from_user_id": 254275655, "from_user_id_str": "254275655", "from_user_name": "Vincent", "geo": null, "id": 148838310171779070, "id_str": "148838310171779073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1509131186/polo_polo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509131186/polo_polo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Ms_LaughAlott Birds Are Part Of Nature You Suppose To Love Them lol", "to_user": "Ms_LaughAlott", "to_user_id": 316128434, "to_user_id_str": "316128434", "to_user_name": "Gisselle Rosario"}, +{"created_at": "Mon, 19 Dec 2011 18:53:12 +0000", "from_user": "GPIINC", "from_user_id": 65445208, "from_user_id_str": "65445208", "from_user_name": "C'est Moi PINC\\u00A9", "geo": null, "id": 148838306745024500, "id_str": "148838306745024512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690364717/GPIINC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690364717/GPIINC_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "My new read: maya angelou I know why the caged birds sings", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:11 +0000", "from_user": "_JoJoBANKS", "from_user_id": 177664538, "from_user_id_str": "177664538", "from_user_name": "Lucy Smith", "geo": null, "id": 148838302999511040, "id_str": "148838302999511042", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698509851/IMG103_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698509851/IMG103_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @BIGBanks_: We just two love birds that's why we always tweetin lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:11 +0000", "from_user": "CrazyMaMonster", "from_user_id": 311763926, "from_user_id_str": "311763926", "from_user_name": "UniqueA.Herring", "geo": null, "id": 148838301711859700, "id_str": "148838301711859712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700871287/legs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700871287/legs_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I'm Scared Of Them Big Ass Birds That Be Flying To Dame Close To The Ground.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:10 +0000", "from_user": "bubbly_chicken", "from_user_id": 42095508, "from_user_id_str": "42095508", "from_user_name": "Hollie Archibald", "geo": null, "id": 148838298771660800, "id_str": "148838298771660800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1316234136/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1316234136/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Why do birds suddenly appear?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:09 +0000", "from_user": "sherylshaz", "from_user_id": 306631811, "from_user_id_str": "306631811", "from_user_name": "sh\\u0454\\u044Fy\\u2113\\u2570\\u2606\\u256E", "geo": null, "id": 148838296162795520, "id_str": "148838296162795521", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700651994/sherylshazme_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700651994/sherylshazme_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RTRTRT @TheBieberSoul: Omfg, I used to think Angry Birds was boring, now I'm sat here not being able to stop playing it.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:09 +0000", "from_user": "SimplySunShinne", "from_user_id": 99241833, "from_user_id_str": "99241833", "from_user_name": "HeeaatheerRoyal(;", "geo": null, "id": 148838294929670140, "id_str": "148838294929670144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699120525/ColorTouch_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699120525/ColorTouch_normal.jpeg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "#Goodmoring L\\u00EFddo Birds :) I mean TWITTER ! <3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:07 +0000", "from_user": "MrSoloRager", "from_user_id": 339151468, "from_user_id_str": "339151468", "from_user_name": "MSR.\\u2122", "geo": null, "id": 148838287094710270, "id_str": "148838287094710272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699709013/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699709013/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I feel like a little boy in my Angry Birds shirt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:07 +0000", "from_user": "fabs_alverca", "from_user_id": 63546671, "from_user_id_str": "63546671", "from_user_name": "Fabricio Alverca", "geo": null, "id": 148838285899333630, "id_str": "148838285899333632", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1559419934/eu_2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1559419934/eu_2_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "N\\u00C3O ACREDITO QUE EU CONSEGUI PASSAR DA FASE QUE EU TO H\\u00C1 3 DIAS PRA PASSAR NO ANGRY BIRDS AHHHHHHHHHHHHHHHHHHHHHHHH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:58 +0000", "from_user": "SuperTr3", "from_user_id": 78049917, "from_user_id_str": "78049917", "from_user_name": "Tevincredible", "geo": null, "id": 148838249547300860, "id_str": "148838249547300864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1683996497/best_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683996497/best_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Them angry birds really be looking angry", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:58 +0000", "from_user": "RickThe_Ruler", "from_user_id": 345823556, "from_user_id_str": "345823556", "from_user_name": "\\uE031Classico\\uE031", "geo": null, "id": 148838249387917300, "id_str": "148838249387917313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1648050335/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648050335/image_normal.jpg", "source": "<a href="http://tweetlogix.com" rel="nofollow">Tweetlogix</a>", "text": "\"but he told me he's falling for me\" #birds RT @Catalinaaaa_: Your personality is ugly. (cont) http://t.co/xkblA2AI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:58 +0000", "from_user": "ScreamInSpanish", "from_user_id": 159259735, "from_user_id_str": "159259735", "from_user_name": "III XXVI", "geo": null, "id": 148838247005560830, "id_str": "148838247005560833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695834114/Photo_on_2011-11-24_at_19.32__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695834114/Photo_on_2011-11-24_at_19.32__2_normal.jpg", "source": "<a href="http://www.twimbow.com" rel="nofollow">Twimbow</a>", "text": "in class eatin chips, playin Angry Birds and watching Home Alone", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:55 +0000", "from_user": "MYLOVE_jbfever", "from_user_id": 267549550, "from_user_id_str": "267549550", "from_user_name": "Jennifer:)", "geo": null, "id": 148838234351349760, "id_str": "148838234351349760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1470551821/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1470551821/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "If happy couples are called love birds,then couples that argue should be called angry birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:46 +0000", "from_user": "PLR_Franchesca", "from_user_id": 190102428, "from_user_id_str": "190102428", "from_user_name": "Pilare Simon \\uE32D", "geo": null, "id": 148838197961560060, "id_str": "148838197961560064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689647584/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689647584/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Fooling yourself. Grow up and take like real bitch. Cause that nonsense is for the birds #GirlSTOP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:45 +0000", "from_user": "xLOiiSBiiEBER", "from_user_id": 254555340, "from_user_id_str": "254555340", "from_user_name": "a BELIEBER in BIEBER", "geo": null, "id": 148838193637240830, "id_str": "148838193637240832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689102951/loisbieber__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689102951/loisbieber__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Loemiekje its like angry birds, but the birds ar cows, and the green pigs are steers LOL", "to_user": "Loemiekje", "to_user_id": 383312200, "to_user_id_str": "383312200", "to_user_name": "Gao Ling"}, +{"created_at": "Mon, 19 Dec 2011 18:52:45 +0000", "from_user": "FmRu_net", "from_user_id": 138503868, "from_user_id_str": "138503868", "from_user_name": "FmRu.net", "geo": null, "id": 148838193352032260, "id_str": "148838193352032256", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1307617413/fmru.net.square_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1307617413/fmru.net.square_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Angry Birds - \\u0438\\u043B\\u043B\\u044E\\u0441\\u0442\\u0440\\u0430\\u0446\\u0438\\u044F \\u043F\\u043E\\u0441\\u043B\\u043E\\u0432\\u0438\\u0446\\u044B \"\\u0413\\u0443\\u0441\\u044C \\u0441\\u0432\\u0438\\u043D\\u044C\\u0435 \\u043D\\u0435 \\u0442\\u043E\\u0432\\u0430\\u0440\\u0438\\u0449\". http://t.co/dg8igN7i", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:43 +0000", "from_user": "Theodosia_Rose", "from_user_id": 33112290, "from_user_id_str": "33112290", "from_user_name": "turqoise porter", "geo": null, "id": 148838187614224400, "id_str": "148838187614224384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695482421/r6q7hr4r_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695482421/r6q7hr4r_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Kissy_MzMickey BAHAHA!! Thought your hair was a birds nest..", "to_user": "Kissy_MzMickey", "to_user_id": 58329734, "to_user_id_str": "58329734", "to_user_name": "JaCara' Mickey", "in_reply_to_status_id": 148791501109985280, "in_reply_to_status_id_str": "148791501109985280"}, +{"created_at": "Mon, 19 Dec 2011 18:52:43 +0000", "from_user": "DeeMagicGurl", "from_user_id": 278755526, "from_user_id_str": "278755526", "from_user_name": "DeeMagicGurl", "geo": null, "id": 148838186372702200, "id_str": "148838186372702208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1325270095/IMG_3087_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1325270095/IMG_3087_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Angry Birds (noun) - How you kill two stones with one bird.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:43 +0000", "from_user": "gudzenov", "from_user_id": 389406042, "from_user_id_str": "389406042", "from_user_name": "Victor", "geo": null, "id": 148838186175569920, "id_str": "148838186175569921", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1584676895/Koki_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584676895/Koki_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\u0428\\u0443\\u0442\\u043A\\u0430 #7435: Angry Birds - \\u0438\\u043B\\u043B\\u044E\\u0441\\u0442\\u0440\\u0430\\u0446\\u0438\\u044F \\u043F\\u043E\\u0441\\u043B\\u043E\\u0432\\u0438\\u0446\\u044B \"\\u0413\\u0443\\u0441\\u044C \\u0441\\u0432\\u0438\\u043D\\u044C\\u0435 \\u043D\\u0435 \\u0442\\u043E\\u0432\\u0430\\u0440\\u0438\\u0449\". http://t.co/oSkyTh5f", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:43 +0000", "from_user": "link_kazan", "from_user_id": 339641184, "from_user_id_str": "339641184", "from_user_name": "\\u041B\\u0438\\u043D\\u043A", "geo": null, "id": 148838183990329340, "id_str": "148838183990329344", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1465379944/_MG_4617_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1465379944/_MG_4617_2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\u0428\\u0443\\u0442\\u043A\\u0430 #7435: Angry Birds - \\u0438\\u043B\\u043B\\u044E\\u0441\\u0442\\u0440\\u0430\\u0446\\u0438\\u044F \\u043F\\u043E\\u0441\\u043B\\u043E\\u0432\\u0438\\u0446\\u044B \"\\u0413\\u0443\\u0441\\u044C \\u0441\\u0432\\u0438\\u043D\\u044C\\u0435 \\u043D\\u0435 \\u0442\\u043E\\u0432\\u0430\\u0440\\u0438\\u0449\". http://t.co/SWSBgg7w http://t.co/ChkVEZuO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:42 +0000", "from_user": "petrovskaja_v", "from_user_id": 342596919, "from_user_id_str": "342596919", "from_user_name": "\\u0412\\u0438\\u0442\\u0430 \\u041F\\u0435\\u0442\\u0440\\u043E\\u0432\\u0441\\u043A\\u0430\\u044F", "geo": null, "id": 148838183457652740, "id_str": "148838183457652737", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1461466533/1111111111111111111111_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1461466533/1111111111111111111111_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Angry Birds - \\u0438\\u043B\\u043B\\u044E\\u0441\\u0442\\u0440\\u0430\\u0446\\u0438\\u044F \\u043F\\u043E\\u0441\\u043B\\u043E\\u0432\\u0438\\u0446\\u044B \"\\u0413\\u0443\\u0441\\u044C \\u0441\\u0432\\u0438\\u043D\\u044C\\u0435 \\u043D\\u0435 \\u0442\\u043E\\u0432\\u0430\\u0440\\u0438\\u0449\". http://t.co/KmQhXRqp #sledui", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:42 +0000", "from_user": "Gennadij_N", "from_user_id": 340887658, "from_user_id_str": "340887658", "from_user_name": "\\u0413\\u0435\\u043D\\u043D\\u0430\\u0434\\u0438\\u0439 \\u041D.", "geo": null, "id": 148838182396497920, "id_str": "148838182396497920", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1458101965/gennav_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1458101965/gennav_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Angry Birds - \\u0438\\u043B\\u043B\\u044E\\u0441\\u0442\\u0440\\u0430\\u0446\\u0438\\u044F \\u043F\\u043E\\u0441\\u043B\\u043E\\u0432\\u0438\\u0446\\u044B \"\\u0413\\u0443\\u0441\\u044C \\u0441\\u0432\\u0438\\u043D\\u044C\\u0435 \\u043D\\u0435 \\u0442\\u043E\\u0432\\u0430\\u0440\\u0438\\u0449\". http://t.co/yGOFe9GG #sledui", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:41 +0000", "from_user": "bartomartin", "from_user_id": 139010755, "from_user_id_str": "139010755", "from_user_name": "Martin P.", "geo": null, "id": 148838175740141570, "id_str": "148838175740141568", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1675879917/12a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675879917/12a_normal.jpg", "source": "<a href="http://hootsuite.com/hootbar" rel="nofollow">HootBar</a>", "text": "Noel Gallagher's High Flying Birds - If I Had a Gun #nowplaying #inloop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:40 +0000", "from_user": "The_DougieFresh", "from_user_id": 50117047, "from_user_id_str": "50117047", "from_user_name": "\\uE42A Doug Harper\\uE42A ", "geo": null, "id": 148838174007894000, "id_str": "148838174007894016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695415450/12489e2e276f11e1abb01231381b65e3_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695415450/12489e2e276f11e1abb01231381b65e3_7_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "2 BIRDS N THE KITCHEN ONE BRICK ONE DESERT EAGLE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:39 +0000", "from_user": "EatMy_PERRY", "from_user_id": 239692777, "from_user_id_str": "239692777", "from_user_name": "alyaT !", "geo": null, "id": 148838168710483970, "id_str": "148838168710483968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701788323/121911033736_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701788323/121911033736_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "so high up i got birds in the condo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:39 +0000", "from_user": "WickedMisery", "from_user_id": 350482256, "from_user_id_str": "350482256", "from_user_name": "Jack Martinelli", "geo": null, "id": 148838168035201020, "id_str": "148838168035201024", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694364826/Photo_on_2011-07kuyg-08_at_19.39_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694364826/Photo_on_2011-07kuyg-08_at_19.39_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I love birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:36 +0000", "from_user": "Dr_Shonzy", "from_user_id": 20243253, "from_user_id_str": "20243253", "from_user_name": "Shona Patel", "geo": null, "id": 148838155217403900, "id_str": "148838155217403904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685899776/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685899776/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I'm not sure bout Santa going down my chimney in Croydon.I'd be concerned about dead birds, rats and heroin needles being down there...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:34 +0000", "from_user": "sherylshaz", "from_user_id": 306631811, "from_user_id_str": "306631811", "from_user_name": "sh\\u0454\\u044Fy\\u2113\\u2570\\u2606\\u256E", "geo": null, "id": 148838149030821900, "id_str": "148838149030821888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700651994/sherylshazme_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700651994/sherylshazme_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @TheBieberSoul: Omfg, I used to think Angry Birds was boring, now I'm sat here not being able to stop playing it.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:29 +0000", "from_user": "Diegorioja94", "from_user_id": 280174230, "from_user_id_str": "280174230", "from_user_name": "Diego Rioja", "geo": null, "id": 148838126691958800, "id_str": "148838126691958784", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1649217956/EXIO1TXj_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649217956/EXIO1TXj_normal", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Angry Birds y las torres gemelas http://t.co/0ByLDSjL v\\u00EDa @cuantocabron", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:29 +0000", "from_user": "connorhibbert", "from_user_id": 23355592, "from_user_id_str": "23355592", "from_user_name": "connorhibbert", "geo": null, "id": 148838125999894530, "id_str": "148838125999894528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698385801/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698385801/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "most of the birds in hollyoaks are helfy!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:28 +0000", "from_user": "MatheusAthayde", "from_user_id": 290484918, "from_user_id_str": "290484918", "from_user_name": "matheusathayde", "geo": null, "id": 148838122510229500, "id_str": "148838122510229505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1335062311/OgAAALhZH6vAh_nGWaFXBkIVeX4x2bKUJU7NFnnIGo-2J_5Wg5R-ksgfXOUR9V9Hd6p9ha3mUFEfIL8Sjyb8IVjTSVUAm1T1UNAvQiICYWKdOPbCV9B9mbIHKtA5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335062311/OgAAALhZH6vAh_nGWaFXBkIVeX4x2bKUJU7NFnnIGo-2J_5Wg5R-ksgfXOUR9V9Hd6p9ha3mUFEfIL8Sjyb8IVjTSVUAm1T1UNAvQiICYWKdOPbCV9B9mbIHKtA5_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"Birds fly over the rainbow,why then, oh why can't I?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:22 +0000", "from_user": "Gertatron", "from_user_id": 321509486, "from_user_id_str": "321509486", "from_user_name": "Gert Corfield", "geo": null, "id": 148838100053925900, "id_str": "148838100053925890", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1636860773/Qvo41z6N_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1636860773/Qvo41z6N_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "http://t.co/oGy6MCMY Migrating birds getting shot out of the sky. They call it sport, I call it sickening.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:20 +0000", "from_user": "AshlanL", "from_user_id": 309222713, "from_user_id_str": "309222713", "from_user_name": "Ashlan Lang", "geo": null, "id": 148838088838352900, "id_str": "148838088838352897", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686186053/zzzzzzzCIMG0502_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686186053/zzzzzzzCIMG0502_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@nickolescharles the other day me & my mom were in town and saw THE BIRDS.. Sooo many like thousands", "to_user": "nickolescharles", "to_user_id": 103729926, "to_user_id_str": "103729926", "to_user_name": "Nick McDonald"}, +{"created_at": "Mon, 19 Dec 2011 18:52:18 +0000", "from_user": "RenoDeRuso", "from_user_id": 100093474, "from_user_id_str": "100093474", "from_user_name": "Never kiss & tell", "geo": null, "id": 148838079732523000, "id_str": "148838079732523008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1694146421/4-up_on_2011-07-03_at_09.57__9_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694146421/4-up_on_2011-07-03_at_09.57__9_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Angry birds >", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:15 +0000", "from_user": "BevPhotos", "from_user_id": 19466086, "from_user_id_str": "19466086", "from_user_name": "Bev ", "geo": null, "id": 148838067858452480, "id_str": "148838067858452480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1168019560/4450777546_c4c5f4ea6f_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1168019560/4450777546_c4c5f4ea6f_o_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @greenroofsuk: World's most threatened birds set up new nest in Gloucestershire -#Nature #biodiversity #Environment http://t.co/eOwO5xf5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:12 +0000", "from_user": "tomcomerfordnut", "from_user_id": 342211873, "from_user_id_str": "342211873", "from_user_name": "Thomas Comerford", "geo": null, "id": 148838057829859330, "id_str": "148838057829859329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1479756351/Ki_Josh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1479756351/Ki_Josh_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Dream on/High flying birds #chooon", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:12 +0000", "from_user": "Kukuachoo", "from_user_id": 71973443, "from_user_id_str": "71973443", "from_user_name": "I Am The Walrus", "geo": null, "id": 148838054159851520, "id_str": "148838054159851521", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1610226451/photo4_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610226451/photo4_normal.JPG", "source": "<a href="http://www.nibirutech.com" rel="nofollow">TwitBird</a>", "text": "I sneeze like my mother. It scares birds in the immediate vicinity.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:11 +0000", "from_user": "AyeeLilybeth", "from_user_id": 116976827, "from_user_id_str": "116976827", "from_user_name": "UNKNOWN", "geo": null, "id": 148838053635571700, "id_str": "148838053635571712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687459673/AyeeLilybeth_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687459673/AyeeLilybeth_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Sitting here .. Listening to the birds sing. Chirp chirp ..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:10 +0000", "from_user": "pdescendo", "from_user_id": 117999533, "from_user_id_str": "117999533", "from_user_name": "Pantaloon Descendo", "geo": null, "id": 148838048388481020, "id_str": "148838048388481024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1685541974/pdescendo-shoot_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685541974/pdescendo-shoot_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Turns out I'm better at Angry Birds when drunk. Like I am at Operation and, you know, life.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:09 +0000", "from_user": "MAF_Beto", "from_user_id": 372756753, "from_user_id_str": "372756753", "from_user_name": "Beto Dikgole", "geo": +{"coordinates": [-25.6301,27.2727], "type": "Point"}, "id": 148838044479397900, "id_str": "148838044479397888", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700745341/jc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700745341/jc_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Good night birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:09 +0000", "from_user": "Sober_Soper", "from_user_id": 95827925, "from_user_id_str": "95827925", "from_user_name": "Sober Soper", "geo": null, "id": 148838041660817400, "id_str": "148838041660817408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1146474323/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1146474323/me_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "\"How do Angry Birds get along with cats?\" \"They don't\". \"Good. Where do I get one?\" #papahatescats #angrybirds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:07 +0000", "from_user": "Tildaies", "from_user_id": 426262628, "from_user_id_str": "426262628", "from_user_name": "Tilda Heltzel", "geo": null, "id": 148838036967407600, "id_str": "148838036967407616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668798045/LLCM-2344_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668798045/LLCM-2344_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Moucha13 Go try Pigeon Palooza (the next angry birds)- it's in Android Mktplce - should be in ITunes next week.", "to_user": "Moucha13", "to_user_id": 122924561, "to_user_id_str": "122924561", "to_user_name": "Ond\\u0159ej Muchka", "in_reply_to_status_id": 148819528355282940, "in_reply_to_status_id_str": "148819528355282944"}, +{"created_at": "Mon, 19 Dec 2011 18:52:07 +0000", "from_user": "fckurTHOUGHTS", "from_user_id": 144011698, "from_user_id_str": "144011698", "from_user_name": "RLM\\u264C", "geo": null, "id": 148838033066692600, "id_str": "148838033066692608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699693479/newlook_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699693479/newlook_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I hate birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:04 +0000", "from_user": "juggmanRECKLESS", "from_user_id": 51142232, "from_user_id_str": "51142232", "from_user_name": "J\\u2206\\u00FF-\\u00AE\\u00EA\\u00E7k/\\u00E8\\u00A7\\u00A7\\u00D8G\\u00F4D \\u221A ", "geo": null, "id": 148838021251338240, "id_str": "148838021251338242", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688114976/388475_310133765666183_100000086855881_1366064_2078161906_a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688114976/388475_310133765666183_100000086855881_1366064_2078161906_a_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Birds Of Tha Same Feather Fly Tagetha..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:04 +0000", "from_user": "AReL013010", "from_user_id": 186683293, "from_user_id_str": "186683293", "from_user_name": "Ayrel \\u0394\\u03A3\\u03B8", "geo": null, "id": 148838020634775550, "id_str": "148838020634775552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699387015/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699387015/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "this unconditional love thing is for the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:01 +0000", "from_user": "calieagle7", "from_user_id": 348868472, "from_user_id_str": "348868472", "from_user_name": "tk ", "geo": null, "id": 148838007955398660, "id_str": "148838007955398656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1479668947/IMG-20110708-00010_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1479668947/IMG-20110708-00010_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "It's about time Eagles support the team instead of criticizing all the team. Got faith in tha Eagles. Go Birds!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:59 +0000", "from_user": "SmokahontasOGOD", "from_user_id": 233975877, "from_user_id_str": "233975877", "from_user_name": "Team Go Barbie !", "geo": null, "id": 148838003345854460, "id_str": "148838003345854464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1672239837/yreyu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672239837/yreyu_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "My dad just called angry birds mad birds that shit was funny", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:59 +0000", "from_user": "Aquarian_0214", "from_user_id": 229625264, "from_user_id_str": "229625264", "from_user_name": "2/14/95", "geo": null, "id": 148838002817380350, "id_str": "148838002817380352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695126551/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695126551/profile_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @ThsWht_iCallHer: Birds of a feather flock together. Hoes on the same shit chase after the same dick.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:56 +0000", "from_user": "MissEp3", "from_user_id": 155083481, "from_user_id_str": "155083481", "from_user_name": "JESSICA S.", "geo": null, "id": 148837987004850180, "id_str": "148837987004850176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684484120/N3DQR4eS_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684484120/N3DQR4eS_normal", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "Diablo you wasted no time on that! Huh. Lol RT @Og_Chris not more then bitches RT @MissEp3 Men are birds too, just saying.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:53 +0000", "from_user": "BIGBanks_", "from_user_id": 131338719, "from_user_id_str": "131338719", "from_user_name": "President Banks ", "geo": null, "id": 148837978305855500, "id_str": "148837978305855489", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700782475/IMG080_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700782475/IMG080_normal.jpeg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "We just two love birds that's why we always tweetin lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:52 +0000", "from_user": "nanarodriguees", "from_user_id": 174363727, "from_user_id_str": "174363727", "from_user_name": "Morgana Rodrigues", "geo": null, "id": 148837970273767420, "id_str": "148837970273767425", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1684275156/pag_20leo_203_20-_20Copy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684275156/pag_20leo_203_20-_20Copy_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "to ficando revoltada ja pq nao consigo passar de uma fase do angry birds!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:50 +0000", "from_user": "jevanmoore", "from_user_id": 295150350, "from_user_id_str": "295150350", "from_user_name": "JEvanMoore", "geo": null, "id": 148837964984754180, "id_str": "148837964984754176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1403043138/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1403043138/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Not sure why the Angry Birds are so angry! They're the ones crapping on MY car!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:50 +0000", "from_user": "greeno29", "from_user_id": 272585276, "from_user_id_str": "272585276", "from_user_name": "Andy Green", "geo": null, "id": 148837962929537020, "id_str": "148837962929537025", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1289750742/st._peters_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1289750742/st._peters_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @someecards: Angry Birds now available on iPhone, Droid, and completely insane man's Christmas lights display. http://t.co/mrfMU8Hl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:49 +0000", "from_user": "BelleMillaQEOG", "from_user_id": 428355696, "from_user_id_str": "428355696", "from_user_name": "Belle Milla", "geo": null, "id": 148837957971877900, "id_str": "148837957971877888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1674178599/7012289841192040_jo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674178599/7012289841192040_jo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Paletorra Hey, go get Pigeon Palooza (the next angry birds)- it is for sale in Android Mktplce - will be in ITunes soon.", "to_user": "Paletorra", "to_user_id": 183097477, "to_user_id_str": "183097477", "to_user_name": "Pale Torres", "in_reply_to_status_id": 148824887002279940, "in_reply_to_status_id_str": "148824887002279936"}, +{"created_at": "Mon, 19 Dec 2011 18:51:47 +0000", "from_user": "Dinosauriuz_SD", "from_user_id": 195819414, "from_user_id_str": "195819414", "from_user_name": "dinora rowLan", "geo": null, "id": 148837952372482050, "id_str": "148837952372482048", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1650570923/Dinora_G_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650570923/Dinora_G_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @garabatoAdan: @Dinosauriuz_SD es cuando te propongo, pasa este nivel de angry birds y te paso el de lolo xd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:43 +0000", "from_user": "orangezara", "from_user_id": 64736239, "from_user_id_str": "64736239", "from_user_name": "Zara Hussain", "geo": null, "id": 148837936253779970, "id_str": "148837936253779968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1484500323/264359_1660785418285_1796694280_1040092_7728430_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1484500323/264359_1660785418285_1796694280_1040092_7728430_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@LozzZol I mainly love the colours, they really match the mood of the song + the little things like candles & raindrops & birds are...", "to_user": "LozzZol", "to_user_id": 250704026, "to_user_id_str": "250704026", "to_user_name": "Lozz", "in_reply_to_status_id": 148836169692614660, "in_reply_to_status_id_str": "148836169692614656"}, +{"created_at": "Mon, 19 Dec 2011 18:51:38 +0000", "from_user": "PunithaNaidu", "from_user_id": 270481698, "from_user_id_str": "270481698", "from_user_name": "Punitha Naidu", "geo": null, "id": 148837914678272000, "id_str": "148837914678272000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681696071/xxx_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681696071/xxx_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Liam_Doyle_ NO, DONT BE PROUD OF THAT LIAM! you'll be pullin birds, and not the female kind! #kinkehh #peado", "to_user": "Liam_Doyle_", "to_user_id": 202165822, "to_user_id_str": "202165822", "to_user_name": "Liam Doyle", "in_reply_to_status_id": 148834762746888200, "in_reply_to_status_id_str": "148834762746888194"}, +{"created_at": "Mon, 19 Dec 2011 18:51:38 +0000", "from_user": "ben_champ", "from_user_id": 20691985, "from_user_id_str": "20691985", "from_user_name": "Ben Slack", "geo": null, "id": 148837912811802620, "id_str": "148837912811802625", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668783985/12b6cdc0112811e180c9123138016265_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668783985/12b6cdc0112811e180c9123138016265_7_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@b_molly_ better percentage of fit birds in Notts though.", "to_user": "b_molly_", "to_user_id": 44232745, "to_user_id_str": "44232745", "to_user_name": "B.Molly", "in_reply_to_status_id": 148833852448718850, "in_reply_to_status_id_str": "148833852448718851"}, +{"created_at": "Mon, 19 Dec 2011 18:51:38 +0000", "from_user": "Crag92", "from_user_id": 131448477, "from_user_id_str": "131448477", "from_user_name": "Craig Mullen", "geo": null, "id": 148837911482204160, "id_str": "148837911482204160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1344575934/Crag92_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1344575934/Crag92_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @morsey91: sick of fake fit birds following me on here! Stop getting my hopes up #Bellends", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:36 +0000", "from_user": "Keiseeey", "from_user_id": 255839213, "from_user_id_str": "255839213", "from_user_name": "Keiseeey", "geo": null, "id": 148837905459195900, "id_str": "148837905459195905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1638235583/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638235583/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Words can't explain how much I hate birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:35 +0000", "from_user": "RachiieeJayne", "from_user_id": 29069194, "from_user_id_str": "29069194", "from_user_name": "Rachael Jayne Bell", "geo": null, "id": 148837898983178240, "id_str": "148837898983178240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690529897/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690529897/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@RyanAllonby: @glennaggie did i get a taxi home with you and two fat birds? on saturday?\\u201D absolutely brilliant Ry!!!! Made me night hahaha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:35 +0000", "from_user": "BossyJohnson", "from_user_id": 325090972, "from_user_id_str": "325090972", "from_user_name": "CROUCHY T", "geo": null, "id": 148837898802839550, "id_str": "148837898802839553", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1683694549/DKgUoUhN_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683694549/DKgUoUhN_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @_BigPimpin1500: Me and my gurlfriend @BossyJohnson we like 2 love birds lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:34 +0000", "from_user": "bridgettblafoll", "from_user_id": 306014392, "from_user_id_str": "306014392", "from_user_name": "bridgett lafollette", "geo": null, "id": 148837896760209400, "id_str": "148837896760209408", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1678772376/Carat_Diamond_Earrings_Sale_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678772376/Carat_Diamond_Earrings_Sale_normal.jpg", "source": "<a href="http://caratdiamondearringssale.com" rel="nofollow">Carat Diamond Earrings Sale</a>", "text": ">: Brooke http://t.co/DhyUUp5Y", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:34 +0000", "from_user": "Ninja_eneje24", "from_user_id": 338458380, "from_user_id_str": "338458380", "from_user_name": "Nenna Eneje", "geo": null, "id": 148837895086673920, "id_str": "148837895086673921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1690187945/4CjTKSnk_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690187945/4CjTKSnk_normal", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @Miss_BWilliams: Mann, these cramps is for the birds \\uD83D\\uDC4E\\u274C\\uD83D\\uDE37", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:32 +0000", "from_user": "ThatJerseyNiqqa", "from_user_id": 238406520, "from_user_id_str": "238406520", "from_user_name": "Deion Romero ", "geo": null, "id": 148837888237371400, "id_str": "148837888237371392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1556790606/snapshot__20__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1556790606/snapshot__20__normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "#WhatHappened2 angry birds ? Now everyones playing Temple Run or w.e the fuck its called", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:31 +0000", "from_user": "Prada_J", "from_user_id": 63920742, "from_user_id_str": "63920742", "from_user_name": "Justin Davis", "geo": null, "id": 148837884433141760, "id_str": "148837884433141760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1471188914/PRADA_JOCCIN4_edited_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1471188914/PRADA_JOCCIN4_edited_1_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Why tha Hell are tha birds jus NOW headin south.. its mid December in Minnesota ! Lol Smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:30 +0000", "from_user": "iprada5150", "from_user_id": 191480806, "from_user_id_str": "191480806", "from_user_name": "lakeya elmore", "geo": null, "id": 148837881195143170, "id_str": "148837881195143170", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1667342806/IMG_20111201_004243-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667342806/IMG_20111201_004243-1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Des fckin birds down here <<<< I had like 5 heart attacks alrey..I dnt like shit flying by my head", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:30 +0000", "from_user": "KharleyJay", "from_user_id": 371515889, "from_user_id_str": "371515889", "from_user_name": "Kay'Jay!", "geo": null, "id": 148837879924273150, "id_str": "148837879924273153", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1638605992/zRRtHaAl_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638605992/zRRtHaAl_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "All I want for Christmas Is you. All this extra ish is for the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:29 +0000", "from_user": "Jess_Daniels90", "from_user_id": 40467172, "from_user_id_str": "40467172", "from_user_name": "Jessica Daniels", "geo": null, "id": 148837876493332480, "id_str": "148837876493332480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699840656/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699840656/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Got overly excited completing a level of angry birds and dropped my phone on my face #fatlip! :(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:28 +0000", "from_user": "minnieN_Omouse", "from_user_id": 301415219, "from_user_id_str": "301415219", "from_user_name": "Sha\\u2022Don\\u2022Asty \\u2661", "geo": null, "id": 148837871732785150, "id_str": "148837871732785152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698923634/ar08mdSN_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698923634/ar08mdSN_normal", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @The_Rebel: Birds of a feather flock together!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:27 +0000", "from_user": "JohnavonBV", "from_user_id": 401689510, "from_user_id_str": "401689510", "from_user_name": "Johnavon Williams", "geo": null, "id": 148837867664314370, "id_str": "148837867664314368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687562784/1fD2SMBv_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687562784/1fD2SMBv_normal", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "RT @YellaBoi_DMJ: Birds Part 2 > ....lyrically insane real shit..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:26 +0000", "from_user": "ecuadorrebel", "from_user_id": 228134822, "from_user_id_str": "228134822", "from_user_name": "Steve Herrmann", "geo": null, "id": 148837863436464130, "id_str": "148837863436464128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1224455765/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1224455765/me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Article on Blue-gray #Tanager of #Ecuador http://t.co/h1dw9Ap4 #birds #birding #nature #wildlife", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:26 +0000", "from_user": "PittFanAlli", "from_user_id": 29094217, "from_user_id_str": "29094217", "from_user_name": "Alli", "geo": null, "id": 148837863335804930, "id_str": "148837863335804929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1595349454/steelers_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1595349454/steelers_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@patmuldowney haha, you should probably be watching the road and not the birds.", "to_user": "patmuldowney", "to_user_id": 18971284, "to_user_id_str": "18971284", "to_user_name": "Patrick Muldowney", "in_reply_to_status_id": 148837639842308100, "in_reply_to_status_id_str": "148837639842308096"}, +{"created_at": "Mon, 19 Dec 2011 18:51:23 +0000", "from_user": "TheNamesChelly", "from_user_id": 77839713, "from_user_id_str": "77839713", "from_user_name": "Why Yes,Im Chelly\\u266C\\u266C", "geo": null, "id": 148837851310735360, "id_str": "148837851310735360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700803986/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700803986/profile_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @ThsWht_iCallHer: Birds of a feather flock together. Hoes on the same shit chase after the same dick.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:21 +0000", "from_user": "EmmanuelOfficer", "from_user_id": 388370015, "from_user_id_str": "388370015", "from_user_name": "Emmanuel Officer", "geo": null, "id": 148837843404455940, "id_str": "148837843404455936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1663714069/1213694_handycam_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663714069/1213694_handycam_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "In other words, it means taking the best lessons from games like FarmVille, World of Warcraft and Angry Birds, and using them in business", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:21 +0000", "from_user": "NoSeVolar_", "from_user_id": 209409788, "from_user_id_str": "209409788", "from_user_name": "J e s u s\\u262E", "geo": null, "id": 148837842355896320, "id_str": "148837842355896320", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1647890093/303987_267472369962594_100000994994610_816977_1229101951_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647890093/303987_267472369962594_100000994994610_816977_1229101951_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "P\\u00F4neis Malditos? Por que n\\u00E3o Angry Birds Malditos? #BigFollow: http://t.co/mvfGn6Tj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:20 +0000", "from_user": "Tonylean", "from_user_id": 162779142, "from_user_id_str": "162779142", "from_user_name": "Tony", "geo": null, "id": 148837836274139140, "id_str": "148837836274139137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1050290544/Le_Voyage_dans_la_Lune_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1050290544/Le_Voyage_dans_la_Lune_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Thousands of migratory birds crash land... after mistaking", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:18 +0000", "from_user": "Margrettgdl", "from_user_id": 431730033, "from_user_id_str": "431730033", "from_user_name": "Margrett Kennon", "geo": null, "id": 148837830066581500, "id_str": "148837830066581504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681093552/efqtiualdd_132938134_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681093552/efqtiualdd_132938134_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Sterling Silver 3/4\" Round St. Francis, Patron of Animals and Birds Medal on 20\" Chain: Sterling Silver 3/4\" Rou... http://t.co/oIiftrAc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:17 +0000", "from_user": "ohh_fahREALdoe", "from_user_id": 64318344, "from_user_id_str": "64318344", "from_user_name": "jazmine'baylor ", "geo": null, "id": 148837825020837900, "id_str": "148837825020837888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692198148/1a6BGUB8_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692198148/1a6BGUB8_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@MAdlY_UNiiQUE hahahahaha still don't know how to play Angry Birds after I showed yu yesterday smh", "to_user": "MAdlY_UNiiQUE", "to_user_id": 305159899, "to_user_id_str": "305159899", "to_user_name": "Chazah Carter", "in_reply_to_status_id": 148836653639806980, "in_reply_to_status_id_str": "148836653639806976"}, +{"created_at": "Mon, 19 Dec 2011 18:51:16 +0000", "from_user": "supersonicopop", "from_user_id": 57773904, "from_user_id_str": "57773904", "from_user_name": "Supers\\u00F4nico", "geo": null, "id": 148837822898503680, "id_str": "148837822898503680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/318817782/Super_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/318817782/Super_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Hole-For Once In Your Life//Noel Gallagher's High Flying Birds-The Death Of You And Me//Incubus-Promises,Promises//", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:16 +0000", "from_user": "Kaligigi", "from_user_id": 426265713, "from_user_id_str": "426265713", "from_user_name": "Kali Talsma", "geo": null, "id": 148837820801368060, "id_str": "148837820801368064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668805839/LLCM-2689_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668805839/LLCM-2689_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@StayWavyBabyYDG Ya should play Pigeon Palooza (the next angry birds)- it's launched in Android Mktplce - will be in ITunes next week.", "to_user": "StayWavyBabyYDG", "to_user_id": 377985529, "to_user_id_str": "377985529", "to_user_name": "Eric Garcia", "in_reply_to_status_id": 148805799395868670, "in_reply_to_status_id_str": "148805799395868672"}, +{"created_at": "Mon, 19 Dec 2011 18:51:11 +0000", "from_user": "hawaiianbabez", "from_user_id": 252916318, "from_user_id_str": "252916318", "from_user_name": "YESitsmeJAZZY", "geo": null, "id": 148837801339797500, "id_str": "148837801339797505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697323343/378981_304593979563379_100000383377595_1004762_1761085281_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697323343/378981_304593979563379_100000383377595_1004762_1761085281_n_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "All the bullshits for the birds, u aint nun but a volture....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:09 +0000", "from_user": "Og_Chris", "from_user_id": 38656448, "from_user_id_str": "38656448", "from_user_name": "Chriz", "geo": null, "id": 148837792775016450, "id_str": "148837792775016448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699212648/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699212648/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "not more then bitches RT @MissEp3 Men are birds too, just saying.", "to_user": "MissEp3", "to_user_id": 155083481, "to_user_id_str": "155083481", "to_user_name": "JESSICA S.", "in_reply_to_status_id": 148837689662242800, "in_reply_to_status_id_str": "148837689662242816"}, +{"created_at": "Mon, 19 Dec 2011 18:51:04 +0000", "from_user": "JustinBlake44", "from_user_id": 402978901, "from_user_id_str": "402978901", "from_user_name": "Justin Blake", "geo": null, "id": 148837768766832640, "id_str": "148837768766832640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "ANGRY BIRDS ANGRY BIRDS ANGRY BIRDS!!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:02 +0000", "from_user": "girasolitayo", "from_user_id": 130708080, "from_user_id_str": "130708080", "from_user_name": "Irlanda Garcia", "geo": null, "id": 148837764278915070, "id_str": "148837764278915073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/808353671/SDC103682_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/808353671/SDC103682_normal.JPG", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "I want to play angry birds!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:01 +0000", "from_user": "SlideAngryBirds", "from_user_id": 266094153, "from_user_id_str": "266094153", "from_user_name": "Angry Birds", "geo": null, "id": 148837756418785280, "id_str": "148837756418785280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1272442319/SlideAngryBirds_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1272442319/SlideAngryBirds_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @simmytimmy: They say the first step is admitting you have a problem.. Well I'm addicted to _angry_ _birds_.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:56 +0000", "from_user": "gurikmogumogu", "from_user_id": 235511242, "from_user_id_str": "235511242", "from_user_name": "clockworkpussy", "geo": null, "id": 148837737770917900, "id_str": "148837737770917889", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1210426976/ghost_in_the_shell_2_051006021922499_wideweb__375x500_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1210426976/ghost_in_the_shell_2_051006021922499_wideweb__375x500_1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MuratAykul: D\\u00FCn gece, hi\\u00E7 tan\\u0131mad\\u0131\\u011F\\u0131m bir tavu\\u011Fu, s\\u0131rf Angry Birds'e benziyor diye, usulca sokulup havaya f\\u0131rlatt\\u0131m.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:55 +0000", "from_user": "_BigPimpin1500", "from_user_id": 314808696, "from_user_id_str": "314808696", "from_user_name": "rome smith", "geo": null, "id": 148837733446594560, "id_str": "148837733446594560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693506452/n56mX30N_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693506452/n56mX30N_normal", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Me and my gurlfriend @BossyJohnson we like 2 love birds lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:54 +0000", "from_user": "ShonaSchlickerU", "from_user_id": 428329314, "from_user_id_str": "428329314", "from_user_name": "Shona Schlicker", "geo": null, "id": 148837728522481660, "id_str": "148837728522481664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1674178618/15093392221209438_double_call_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674178618/15093392221209438_double_call_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@msdorasanchez Hey, check out Pigeon Palooza (the next angry birds)- it is for sale in Android Mktplce - will be in ITunes next week.", "to_user": "msdorasanchez", "to_user_id": 87572092, "to_user_id_str": "87572092", "to_user_name": "Shaquita hunt", "in_reply_to_status_id": 148832398019268600, "in_reply_to_status_id_str": "148832398019268608"}, +{"created_at": "Mon, 19 Dec 2011 18:50:51 +0000", "from_user": "heartsinsf", "from_user_id": 114907105, "from_user_id_str": "114907105", "from_user_name": "Charise #NSN", "geo": null, "id": 148837717793443840, "id_str": "148837717793443840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1533491705/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1533491705/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "@minamaya13 \\nUnder-threat birds... That is GREAT", "to_user": "minamaya13", "to_user_id": 54182296, "to_user_id_str": "54182296", "to_user_name": "OriginalBADYOGAKITTY", "in_reply_to_status_id": 148836640910098430, "in_reply_to_status_id_str": "148836640910098432"}, +{"created_at": "Mon, 19 Dec 2011 18:50:50 +0000", "from_user": "soglamwright", "from_user_id": 37158520, "from_user_id_str": "37158520", "from_user_name": "Terrica Wright", "geo": null, "id": 148837713381036030, "id_str": "148837713381036032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1635309429/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635309429/profile_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "We just 2 love birds that's why we always tweeting", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:45 +0000", "from_user": "MissEp3", "from_user_id": 155083481, "from_user_id_str": "155083481", "from_user_name": "JESSICA S.", "geo": null, "id": 148837689662242800, "id_str": "148837689662242816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684484120/N3DQR4eS_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684484120/N3DQR4eS_normal", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "Men are birds too, just saying.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:45 +0000", "from_user": "Rosamondbnmq", "from_user_id": 426260430, "from_user_id_str": "426260430", "from_user_name": "Rosamond Wengel", "geo": null, "id": 148837689100218370, "id_str": "148837689100218368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668792505/LLCM-4623_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668792505/LLCM-4623_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@NathanBarclay Dude, play Pigeon Palooza (the next angry birds)- it's for sale in Android Mktplce - will be in App Store in a few days.", "to_user": "NathanBarclay", "to_user_id": 189242155, "to_user_id_str": "189242155", "to_user_name": "Nathan Barclay", "in_reply_to_status_id": 148828303090913280, "in_reply_to_status_id_str": "148828303090913280"}, +{"created_at": "Mon, 19 Dec 2011 18:50:44 +0000", "from_user": "Kishen_99", "from_user_id": 157489687, "from_user_id_str": "157489687", "from_user_name": "Kishen Lakhani", "geo": null, "id": 148837688605282300, "id_str": "148837688605282305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1551901087/kishen_rulez____normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1551901087/kishen_rulez____normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Lord_Voldemort7: #WhenIWasGrowingUp The only 'Angry Birds' were pissed off owls.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:44 +0000", "from_user": "tolgayavuz6", "from_user_id": 428140253, "from_user_id_str": "428140253", "from_user_name": "tolga yavuz", "geo": null, "id": 148837686034169860, "id_str": "148837686034169857", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Crazy Birds Rio http://t.co/GhaCqQCe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:50:44 +0000", "from_user": "tolgayavuz6", "from_user_id": 428140253, "from_user_id_str": "428140253", "from_user_name": "tolga yavuz", "geo": null, "id": 148837686034169860, "id_str": "148837686034169857", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Crazy Birds Rio http://t.co/GhaCqQCe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:37 +0000", "from_user": "NoDOPEnameHere_", "from_user_id": 72651774, "from_user_id_str": "72651774", "from_user_name": "Zuh-Knee-Yah\\u2122", "geo": null, "id": 148837657609371650, "id_str": "148837657609371648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699202640/IMAG0793_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699202640/IMAG0793_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @The_Rebel: Birds of a feather flock together!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:37 +0000", "from_user": "GeoAnche", "from_user_id": 334933006, "from_user_id_str": "334933006", "from_user_name": "polatje (:", "geo": null, "id": 148837656325914620, "id_str": "148837656325914625", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685979340/Picture_66_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685979340/Picture_66_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @xxxzoe96: Ik snap echt niet waarom iedereen angry birds zo geweldig vindt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:36 +0000", "from_user": "ianfuckinfarmer", "from_user_id": 26020726, "from_user_id_str": "26020726", "from_user_name": "Ian Farmer", "geo": null, "id": 148837652815282180, "id_str": "148837652815282176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1556448779/Photo_on_2011-09-23_at_14.17__3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1556448779/Photo_on_2011-09-23_at_14.17__3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@fuckcarmic I'm pretty sure baby birds aren't allowed to use ovens.", "to_user": "fuckcarmic", "to_user_id": 20348357, "to_user_id_str": "20348357", "to_user_name": "Carolyn McHugh", "in_reply_to_status_id": 148837046931296260, "in_reply_to_status_id_str": "148837046931296256"}, +{"created_at": "Mon, 19 Dec 2011 18:50:34 +0000", "from_user": "secretbones", "from_user_id": 74138607, "from_user_id_str": "74138607", "from_user_name": "\\u2625 \\u262F Jazlyn \\u264B \\u270C ", "geo": null, "id": 148837647022948350, "id_str": "148837647022948352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702595497/newtattoooyar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702595497/newtattoooyar_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "I LOVE BIRDS SIA HOW? BIRDS ARE SUCH AQTPIE \\u201C@Cursedwithsex: @secretbones Y U INK ANOTHER BIRD? queen of birds sia #salute\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:33 +0000", "from_user": "patmuldowney", "from_user_id": 18971284, "from_user_id_str": "18971284", "from_user_name": "Patrick Muldowney", "geo": +{"coordinates": [41.4799,-73.6524], "type": "Point"}, "id": 148837639842308100, "id_str": "148837639842308096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690074966/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690074966/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Flocking birds are so cool.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:32 +0000", "from_user": "DJWigidiWack", "from_user_id": 130750137, "from_user_id_str": "130750137", "from_user_name": "Salvador = Savior", "geo": null, "id": 148837634620395520, "id_str": "148837634620395520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1624808432/442198290_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624808432/442198290_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Mayberryband correction owls r noctunal animals n r only active at night so we're more like humming birds(The Office DWight). Lol", "to_user": "Mayberryband", "to_user_id": 313707028, "to_user_id_str": "313707028", "to_user_name": "Mayberry"}, +{"created_at": "Mon, 19 Dec 2011 18:50:31 +0000", "from_user": "ghettolushes", "from_user_id": 258400906, "from_user_id_str": "258400906", "from_user_name": "Amanda V.", "geo": null, "id": 148837630983929860, "id_str": "148837630983929858", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692984423/FbIG5tcx_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692984423/FbIG5tcx_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @DEPTR: My little brother is hooked on Angry Birds lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:24 +0000", "from_user": "OneandOnlyJarbu", "from_user_id": 314233534, "from_user_id_str": "314233534", "from_user_name": "Zack Jarbu", "geo": null, "id": 148837600990474240, "id_str": "148837600990474242", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664909386/ny_zack_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664909386/ny_zack_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "3 little birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:19 +0000", "from_user": "weekndjunkie", "from_user_id": 158942725, "from_user_id_str": "158942725", "from_user_name": "Bob Marley", "geo": null, "id": 148837580614541300, "id_str": "148837580614541312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700683072/loop1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700683072/loop1_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "The weeknd video for the birds pt 1 is to cute , the girl in it is beautiful and by next fall my hair gonna be just like that .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:16 +0000", "from_user": "irmanovianti20", "from_user_id": 184517197, "from_user_id_str": "184517197", "from_user_name": "irma novianti", "geo": null, "id": 148837571244458000, "id_str": "148837571244457985", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702603186/IMG_4077__E5_89_AF_E6_9C_AC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702603186/IMG_4077__E5_89_AF_E6_9C_AC_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "BoamRT @junialdi1: Permainan gue tuh RT @irmanovianti20: Point blankRT @GueMauTanya: Pilih (angry birds/ayo dance/mafia wars/point blank)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:15 +0000", "from_user": "Tabasco08", "from_user_id": 16935067, "from_user_id_str": "16935067", "from_user_name": "A Red Nosed Reindeer", "geo": null, "id": 148837564185456640, "id_str": "148837564185456640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1674074969/nkrOp_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674074969/nkrOp_normal.jpg", "source": "<a href="http://stone.com/Twittelator" rel="nofollow">Twittelator</a>", "text": "Angry Birds causes stress...let me go start cooking", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:13 +0000", "from_user": "_Paganoti", "from_user_id": 171112590, "from_user_id_str": "171112590", "from_user_name": "_Paganoti", "geo": null, "id": 148837556157562880, "id_str": "148837556157562880", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1414821527/DSC02084_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1414821527/DSC02084_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "La vou eu jogar um angry birds......", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:12 +0000", "from_user": "UberSurge1", "from_user_id": 391279883, "from_user_id_str": "391279883", "from_user_name": "UberSurgeClothing", "geo": null, "id": 148837553565470720, "id_str": "148837553565470720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1589228996/UBS2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1589228996/UBS2_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I favorited a @YouTube video http://t.co/BObJUEBm Noel Gallagher's High Flying Birds - AKA... What A Life", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:09 +0000", "from_user": "Justbirds1", "from_user_id": 291680688, "from_user_id_str": "291680688", "from_user_name": "Bev", "geo": null, "id": 148837539141255170, "id_str": "148837539141255169", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1335631073/5261855304_0f68f9ba91_m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335631073/5261855304_0f68f9ba91_m_normal.jpg", "source": "<a href="http://www.twaitter.com" rel="nofollow">Twaitter</a>", "text": "Kite Close Up http://t.co/nNNpJYPl #birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:08 +0000", "from_user": "Photobug52", "from_user_id": 90379242, "from_user_id_str": "90379242", "from_user_name": "Alan S Hochman Photo", "geo": null, "id": 148837537320939520, "id_str": "148837537320939520", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/741189496/P1010013crop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/741189496/P1010013crop_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Little Blue Heron juvenile http://t.co/op0IjsWA #birding #birds #heron Visit http://t.co/VdlG7gZ2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:08 +0000", "from_user": "Laurenbellalex", "from_user_id": 268036097, "from_user_id_str": "268036097", "from_user_name": "Lauren \\u271E", "geo": null, "id": 148837534120685570, "id_str": "148837534120685568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1684467114/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684467114/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Shake it for the birds, shake it for the bees.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:08 +0000", "from_user": "Candy_Tweet434", "from_user_id": 28630315, "from_user_id_str": "28630315", "from_user_name": "Tweet McLovin", "geo": null, "id": 148837534095507460, "id_str": "148837534095507457", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702516984/IMG_20111201_184128-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702516984/IMG_20111201_184128-1_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "This weather is for the birds. Make your mind mother nature!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:07 +0000", "from_user": "Shizueskep", "from_user_id": 426262224, "from_user_id_str": "426262224", "from_user_name": "Shizue Lautz", "geo": null, "id": 148837530731675650, "id_str": "148837530731675648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668797298/LLCM-4396_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668797298/LLCM-4396_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MissBrownn Ya have to try out Pigeon Palooza (the next angry birds)- it is launched in Android Mktplce - should be in App Store next week.", "to_user": "MissBrownn", "to_user_id": 128885818, "to_user_id_str": "128885818", "to_user_name": "' Miss Brown \\u2661", "in_reply_to_status_id": 148835716674224130, "in_reply_to_status_id_str": "148835716674224128"}, +{"created_at": "Mon, 19 Dec 2011 18:50:05 +0000", "from_user": "ThickyBrown", "from_user_id": 98746289, "from_user_id_str": "98746289", "from_user_name": "Black Stallion", "geo": null, "id": 148837523127402500, "id_str": "148837523127402496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692284214/xbTzsiU5_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692284214/xbTzsiU5_normal", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", "text": "RT @Rozaayyy_: Miss me wit the bullshit..... I let dat shit fly wit the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:02 +0000", "from_user": "POP_Agency", "from_user_id": 11056422, "from_user_id_str": "11056422", "from_user_name": "POP", "geo": null, "id": 148837512809418750, "id_str": "148837512809418752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/574558907/pop_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/574558907/pop_logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Angry Birds Christmas Light Game http://t.co/bERaW4Fw #WatchThis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:02 +0000", "from_user": "simmytimmy", "from_user_id": 100392929, "from_user_id_str": "100392929", "from_user_name": "Sim-one ", "geo": null, "id": 148837508996808700, "id_str": "148837508996808704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1652414948/Picture_2344_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652414948/Picture_2344_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "They say the first step is admitting you have a problem.. Well I'm addicted to angry birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:01 +0000", "from_user": "VsoWavy", "from_user_id": 353755324, "from_user_id_str": "353755324", "from_user_name": "V", "geo": null, "id": 148837508434767870, "id_str": "148837508434767873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1664940272/IMG-20101220-00167_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664940272/IMG-20101220-00167_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "Cosign..for some reason birds see my car as a target RT @domomodelesque Something i need to do !! \\u201C@KING_AOK1: Finally got my car washed !!\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:01 +0000", "from_user": "CameronDort", "from_user_id": 355183534, "from_user_id_str": "355183534", "from_user_name": "Cameron Dort", "geo": null, "id": 148837505066733570, "id_str": "148837505066733568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1495654634/dustin_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1495654634/dustin_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "I hope the girl in front of me has either a hair brush, or birds to fill the nest on her head on christmas list", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:59 +0000", "from_user": "queengerr954", "from_user_id": 304154382, "from_user_id_str": "304154382", "from_user_name": "gerian elizabeth (:", "geo": null, "id": 148837497110142980, "id_str": "148837497110142976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662605346/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662605346/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "TWITTER >>>>> ANGRY BIRDS >>>> SKYPE >>>> TEXTING >>>>> TALKING ON THE PHONE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:58 +0000", "from_user": "ldaugusto", "from_user_id": 14643922, "from_user_id_str": "14643922", "from_user_name": "Daniel Cre\\u00E3o", "geo": null, "id": 148837495931543550, "id_str": "148837495931543554", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1397607456/House-Stark-game-of-thrones-20596053-800-600_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1397607456/House-Stark-game-of-thrones-20596053-800-600_normal.jpg", "source": "<a href="http://www.tweekly.fm/" rel="nofollow">Tweekly.fm</a>", "text": "My Top 3 #lastfm Artists: Noel Gallagher's High Flying Birds (35), Nightwish (34) & Marilyn Manson (19) http://t.co/Y4DjjvLU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:56 +0000", "from_user": "RienkeSchilder", "from_user_id": 334846009, "from_user_id_str": "334846009", "from_user_name": "Rienke Schilder", "geo": null, "id": 148837486158807040, "id_str": "148837486158807040", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1640446473/P011111_17.06__01__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640446473/P011111_17.06__01__normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @RaadDezeTweet: - - - - - ( \\u00F2 )> (^(00)^) ANGRY BIRDS! Retweet als je het ziet! #RDT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:55 +0000", "from_user": "CalPrivacy", "from_user_id": 243836254, "from_user_id_str": "243836254", "from_user_name": "Privacy ", "geo": null, "id": 148837479573766140, "id_str": "148837479573766144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1227609928/Logo_Cropped2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1227609928/Logo_Cropped2_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Birds-eye view of 2011 Data Breaches:\\nhttp://t.co/kDI4oTzL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:51 +0000", "from_user": "JenJen_BadDoe", "from_user_id": 235764075, "from_user_id_str": "235764075", "from_user_name": "Jennifer Jemia", "geo": null, "id": 148837463618633730, "id_str": "148837463618633730", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700548145/2011-12-18_11.51.06_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700548145/2011-12-18_11.51.06_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Jus downloaded angry birds :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:49 +0000", "from_user": "TheTonyRam", "from_user_id": 281019533, "from_user_id_str": "281019533", "from_user_name": "Anthony Ramirez", "geo": null, "id": 148837457432018940, "id_str": "148837457432018944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1308988452/28814_406537072377_612312377_4259657_3491048_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1308988452/28814_406537072377_612312377_4259657_3491048_n_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Angry Birds is a fantastic game for passing the time. It's also great for pissing me off to no end.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:49 +0000", "from_user": "CoachMcCraySwag", "from_user_id": 317875207, "from_user_id_str": "317875207", "from_user_name": "Ashley McCray", "geo": null, "id": 148837454546341900, "id_str": "148837454546341889", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699472685/CoachMcCraySwag_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699472685/CoachMcCraySwag_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Hey birds, hey sun, hey clouds, hey stars, heeyyy!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:49 +0000", "from_user": "AyeJayWest", "from_user_id": 219814980, "from_user_id_str": "219814980", "from_user_name": "A.J. West", "geo": null, "id": 148837454181433340, "id_str": "148837454181433344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693625077/IMG_5556__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693625077/IMG_5556__1__normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Jeezy got me feelin like a dope boy..nigga lookin lame as hell in my da dukes red caviler..ain't no birds in the trunk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:45 +0000", "from_user": "kaygodd", "from_user_id": 174231163, "from_user_id_str": "174231163", "from_user_name": "Kimberly Godfrey", "geo": null, "id": 148837439165825020, "id_str": "148837439165825025", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701298300/Photo_on_2011-08-24_at_16.54__7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701298300/Photo_on_2011-08-24_at_16.54__7_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@stanleyspotts: @kaygodd ..too fly for them birds http://t.co/OME7diJc\\u201D what what !!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:44 +0000", "from_user": "MajhVilleda", "from_user_id": 256633373, "from_user_id_str": "256633373", "from_user_name": "Majh Villeda Snchz", "geo": null, "id": 148837436070445060, "id_str": "148837436070445058", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697843707/mah_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697843707/mah_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @OkamiV: Las indirectas en Twitter son como el juego de Angry Birds; Avientas un tweet al aire y le das en la madre a una puerca gorda.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:43 +0000", "from_user": "NeverGaveA_Fuck", "from_user_id": 260958511, "from_user_id_str": "260958511", "from_user_name": "\\u00A9a\\u03A0ad\\u00A1\\u00A1a\\u03A0 ' K\\u00A1\\u03A0G", "geo": null, "id": 148837433167974400, "id_str": "148837433167974400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1549234540/K8tgw6jT_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1549234540/K8tgw6jT_normal", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "amgry birds game . http://t.co/J22Mzuim", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:42 +0000", "from_user": "TruthOr_Rare", "from_user_id": 421265236, "from_user_id_str": "421265236", "from_user_name": "Rare Breed", "geo": null, "id": 148837426134126600, "id_str": "148837426134126592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702443265/IMG_20110913_203334_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702443265/IMG_20110913_203334_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "All that bullshit is for the birds throw some bread out !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:40 +0000", "from_user": "MsTaniD", "from_user_id": 80998038, "from_user_id_str": "80998038", "from_user_name": "\\uE32ETani D\\uE32E", "geo": null, "id": 148837419284828160, "id_str": "148837419284828160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1604557992/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1604557992/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Dear motivation, I need you back asaptually! I know, I know...this ish is for the birds but I can't without you man", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:40 +0000", "from_user": "_StareAtMyTweet", "from_user_id": 281763432, "from_user_id_str": "281763432", "from_user_name": "-iH y p e r HOE ! \\u2665", "geo": null, "id": 148837418223681540, "id_str": "148837418223681537", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701095230/IMG00693-20111218-1748-5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701095230/IMG00693-20111218-1748-5_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "We needa have a Talk about the birds & the bee's ,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:39 +0000", "from_user": "LatoyaJ_Iam", "from_user_id": 231622699, "from_user_id_str": "231622699", "from_user_name": "Latoya J Flowers", "geo": null, "id": 148837416382369800, "id_str": "148837416382369792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1592369492/profile_image_1318837249006_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592369492/profile_image_1318837249006_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">twidroyd</a>", "text": "RT @TSoulMusic: If couples who are in love are called \"love birds\", then couples who always argue should be called \"Angry birds.\" :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:39 +0000", "from_user": "aLiciaCaLidade", "from_user_id": 268820954, "from_user_id_str": "268820954", "from_user_name": "Alicia Vaca ", "geo": null, "id": 148837414868221950, "id_str": "148837414868221952", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1279260781/muere_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1279260781/muere_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @valladolor: \"Angry Birds Las Delicias\" en tu App Store, consiste en lanzar trozos de chatarra y cobre a Monchines, nunca les matas, se lo quedan todo.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:36 +0000", "from_user": "muhhkayla", "from_user_id": 277254493, "from_user_id_str": "277254493", "from_user_name": "mdapj.", "geo": null, "id": 148837402226606080, "id_str": "148837402226606081", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1672620818/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672620818/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Angry birds stresses me out when I can't beat the level.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:33 +0000", "from_user": "Johnhvt", "from_user_id": 116142671, "from_user_id_str": "116142671", "from_user_name": "John Otterspeer", "geo": null, "id": 148837387873697800, "id_str": "148837387873697792", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691432971/Hollywood__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691432971/Hollywood__normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Ik ga Angry Birds spelen, reageert laat x.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:25 +0000", "from_user": "Tee_2EXCLUSIVE", "from_user_id": 299978644, "from_user_id_str": "299978644", "from_user_name": "Tee\\u2665 \\n", "geo": null, "id": 148837354688360450, "id_str": "148837354688360448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700671083/ColorTouch-1324235970711_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700671083/ColorTouch-1324235970711_normal.jpeg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Angry birds>>>>", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:25 +0000", "from_user": "JMacGroup", "from_user_id": 83028562, "from_user_id_str": "83028562", "from_user_name": "James Mac McPartland", "geo": null, "id": 148837354218598400, "id_str": "148837354218598400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1520798919/Screen_shot_2011-08-30_at_9.56.45_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1520798919/Screen_shot_2011-08-30_at_9.56.45_AM_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Are you an angry birds fan? What video games can teach us about our #motivation at work http://t.co/SFZnRNCT #productivity", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:25 +0000", "from_user": "EdwardBibbey", "from_user_id": 391870389, "from_user_id_str": "391870389", "from_user_name": "Edward Bibbey", "geo": null, "id": 148837353681715200, "id_str": "148837353681715200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @UberSurge1: I liked a @YouTube video http://t.co/BObJUEBm @NoelGallagher High Flying Birds - AKA... What A Life!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:23 +0000", "from_user": "NottyChrissy", "from_user_id": 14343127, "from_user_id_str": "14343127", "from_user_name": " Chrissy ", "geo": null, "id": 148837347830677500, "id_str": "148837347830677504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693374960/205B9120-5E64-4DCD-A69C-DC6298682904_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693374960/205B9120-5E64-4DCD-A69C-DC6298682904_normal", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "My hatred of birds definitely extends to flamingos. The physics of those things creeps me out.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:23 +0000", "from_user": "Kha_DeDe", "from_user_id": 241709518, "from_user_id_str": "241709518", "from_user_name": "khadeja anthony", "geo": null, "id": 148837346836619260, "id_str": "148837346836619264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700833235/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700833235/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "When I cant get passed a level on angry birds <<<", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:22 +0000", "from_user": "Magalywbdq", "from_user_id": 426261624, "from_user_id_str": "426261624", "from_user_name": "Magaly Lankford", "geo": null, "id": 148837344055787520, "id_str": "148837344055787520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668796259/LLCM-0607_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668796259/LLCM-0607_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@tommykurniaji Ya have to try Pigeon Palooza (the next angry birds)- it is live in Android Mktplce - will be in App Store next week.", "to_user": "tommykurniaji", "to_user_id": 99939909, "to_user_id_str": "99939909", "to_user_name": "Tommy Tri Kurniaji", "in_reply_to_status_id": 148809330563629060, "in_reply_to_status_id_str": "148809330563629056"}, +{"created_at": "Mon, 19 Dec 2011 18:49:20 +0000", "from_user": "MCkaploow", "from_user_id": 431977551, "from_user_id_str": "431977551", "from_user_name": "MCkaploow", "geo": null, "id": 148837335440699400, "id_str": "148837335440699392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699437132/300447_243272062391440_100001259449422_762895_1648754432_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699437132/300447_243272062391440_100001259449422_762895_1648754432_n_normal.jpg", "source": "<a href="http://angrybirdstweets.com" rel="nofollow">Angry Birds Tweets</a>", "text": "just unlocked the angry birds seasons twitter levels, http://t.co/IQatfitE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:18 +0000", "from_user": "RaynDaddi", "from_user_id": 220602304, "from_user_id_str": "220602304", "from_user_name": "Rayn Daddi\\u2122", "geo": null, "id": 148837327031119870, "id_str": "148837327031119873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1608123233/HWN5YSuO_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608123233/HWN5YSuO_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Chief_Marley why do birds song so gay, & lovers await the break of day, why do fools fall in love", "to_user": "Chief_Marley", "to_user_id": 69393903, "to_user_id_str": "69393903", "to_user_name": "\\u2714 Verified Chiefer ", "in_reply_to_status_id": 148837128887992320, "in_reply_to_status_id_str": "148837128887992320"}, +{"created_at": "Mon, 19 Dec 2011 18:49:18 +0000", "from_user": "eBC_Pets_NE", "from_user_id": 126784945, "from_user_id_str": "126784945", "from_user_name": "eBC Pets Northeast", "geo": null, "id": 148837324980109300, "id_str": "148837324980109312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/786618773/eBayClassifiedsWeb_73x73_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/786618773/eBayClassifiedsWeb_73x73_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Pittsburgh: bird cage *NEW* - $75 (Uniontown) http://t.co/HnkPwAPg #eBC #Pets", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:17 +0000", "from_user": "BrinAllDay", "from_user_id": 39073155, "from_user_id_str": "39073155", "from_user_name": "Matt Brindisi", "geo": null, "id": 148837320555102200, "id_str": "148837320555102208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1231267903/19637_1243403528800_1340700006_30704208_6631096_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1231267903/19637_1243403528800_1340700006_30704208_6631096_n_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "This week is for the birds. Get me to Christmas", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:15 +0000", "from_user": "AnessaVayRose", "from_user_id": 279835376, "from_user_id_str": "279835376", "from_user_name": "vanessa rose", "geo": null, "id": 148837314460786700, "id_str": "148837314460786690", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694099303/nessie_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694099303/nessie_1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @MayBachMims: Dad: A bird told me you are doing drugs..... Me: You're talking with birds and I'm the one doing drugs?!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:14 +0000", "from_user": "TheTeflonJon_40", "from_user_id": 438475276, "from_user_id_str": "438475276", "from_user_name": "Jonathan Joseph", "geo": null, "id": 148837310815944700, "id_str": "148837310815944705", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696732690/JJ_TWITTER_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696732690/JJ_TWITTER_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@ChristinaDelano BIRDS DON'T PLAY TAG ON THE HIGHWAYS!", "to_user": "ChristinaDelano", "to_user_id": 403705318, "to_user_id_str": "403705318", "to_user_name": "Christina Delano", "in_reply_to_status_id": 148798340597948400, "in_reply_to_status_id_str": "148798340597948416"}, +{"created_at": "Mon, 19 Dec 2011 18:49:14 +0000", "from_user": "tkcapri", "from_user_id": 38818552, "from_user_id_str": "38818552", "from_user_name": "Chong Tai Khoon", "geo": null, "id": 148837308358082560, "id_str": "148837308358082560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1081727402/bffa49cd-70c5-4c1c-99f0-91075605339f_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1081727402/bffa49cd-70c5-4c1c-99f0-91075605339f_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Vote for me and you could win an Angry Birds Plush collection! http://t.co/p8EWOMp2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:13 +0000", "from_user": "paintbygretzky", "from_user_id": 98942966, "from_user_id_str": "98942966", "from_user_name": "Greta Hansen", "geo": null, "id": 148837306567114750, "id_str": "148837306567114752", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/619670492/Gretzky_painting_4-09_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/619670492/Gretzky_painting_4-09_sm_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Marsh Birds Fridge Magnet... http://t.co/1lGQ9iio", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:11 +0000", "from_user": "renatdashkin", "from_user_id": 300212555, "from_user_id_str": "300212555", "from_user_name": "Renat Dashkin", "geo": null, "id": 148837295049555970, "id_str": "148837295049555968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697954115/______normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697954115/______normal.jpg", "source": "<a href="http://vk.com" rel="nofollow">vk.com</a>", "text": "angry birds chrome :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:08 +0000", "from_user": "Flight_326", "from_user_id": 38104398, "from_user_id_str": "38104398", "from_user_name": "C.J.N d-_-b \\u266A \\u266B \\u266C ", "geo": null, "id": 148837286098903040, "id_str": "148837286098903040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662715882/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662715882/image_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @ThsWht_iCallHer: Birds of a feather flock together. Hoes on the same shit chase after the same dick.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:04 +0000", "from_user": "Miss_BWilliams", "from_user_id": 269582752, "from_user_id_str": "269582752", "from_user_name": "Briana Williams \\uE003", "geo": null, "id": 148837269401387000, "id_str": "148837269401387008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1613017092/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1613017092/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Mann, these cramps is for the birds \\uD83D\\uDC4E\\u274C\\uD83D\\uDE37", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:01 +0000", "from_user": "Based_Dan", "from_user_id": 244736851, "from_user_id_str": "244736851", "from_user_name": "Danny M.", "geo": null, "id": 148837254515785730, "id_str": "148837254515785728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1667366799/37723_1510076387862_1112936546_1442805_6126195_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667366799/37723_1510076387862_1112936546_1442805_6126195_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "i dont hunt birds but ill shoot you in yo mohawk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:00 +0000", "from_user": "natigori", "from_user_id": 54798348, "from_user_id_str": "54798348", "from_user_name": "Natalia Gori", "geo": null, "id": 148837249511981060, "id_str": "148837249511981056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1024401008/26590_10150176835545425_625250424_11614944_8070636_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1024401008/26590_10150176835545425_625250424_11614944_8070636_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Up with the birds \\u2600", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:00 +0000", "from_user": "Shark_DIVA", "from_user_id": 95887680, "from_user_id_str": "95887680", "from_user_name": "IrishaShurubova", "geo": null, "id": 148837249419722750, "id_str": "148837249419722753", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1484474033/IMG_3693__________normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1484474033/IMG_3693__________normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I favorited a @YouTube video http://t.co/DpzrgkaI Angry Birds Nail Tutorial", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:59 +0000", "from_user": "Shark_DIVA", "from_user_id": 95887680, "from_user_id_str": "95887680", "from_user_name": "IrishaShurubova", "geo": null, "id": 148837246353674240, "id_str": "148837246353674240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1484474033/IMG_3693__________normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1484474033/IMG_3693__________normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube video http://t.co/DpzrgkaI Angry Birds Nail Tutorial", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:57 +0000", "from_user": "King_Muh", "from_user_id": 343865825, "from_user_id_str": "343865825", "from_user_name": "Muhsin Abdullah", "geo": null, "id": 148837236379619330, "id_str": "148837236379619328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1465340966/148855_167538526598906_100000282782688_478628_8341211_n_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1465340966/148855_167538526598906_100000282782688_478628_8341211_n_1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@youngdour101 lol its the truth though. these birds go on here talkin all this super fly shit knowin they catch the jitney 2 work everyday!!", "to_user": "youngdour101", "to_user_id": 278358371, "to_user_id_str": "278358371", "to_user_name": "YoungDour", "in_reply_to_status_id": 148836870120419330, "in_reply_to_status_id_str": "148836870120419329"}, +{"created_at": "Mon, 19 Dec 2011 18:48:56 +0000", "from_user": "Dreaded_L10", "from_user_id": 426690731, "from_user_id_str": "426690731", "from_user_name": "L L Coolin..", "geo": null, "id": 148837234148245500, "id_str": "148837234148245504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694822191/5s1t2jcp_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694822191/5s1t2jcp_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "All dat bullshit fr da birds, n she ws pigeontoed.. #weezy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:53 +0000", "from_user": "KenderlynYasnel", "from_user_id": 119781487, "from_user_id_str": "119781487", "from_user_name": "Kenderlyn.", "geo": null, "id": 148837223092068350, "id_str": "148837223092068352", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1640958796/cfvghbjnfc__11__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640958796/cfvghbjnfc__11__normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "sii*-* RT @FuckYeahJoose: Descargaste el seasons? RT @KenderlynYasnel: Jugar\\u00E9 angry birds mientras pelissia ora por mi.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:51 +0000", "from_user": "AKACharlieB", "from_user_id": 25904977, "from_user_id_str": "25904977", "from_user_name": "Sharlynn Jeffery ", "geo": null, "id": 148837212677615600, "id_str": "148837212677615616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1122330231/IMG00022_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1122330231/IMG00022_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Going fishing today!!! And I just gave my lunch to birds. Hoopla!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:43 +0000", "from_user": "morsey91", "from_user_id": 187590322, "from_user_id_str": "187590322", "from_user_name": "Dan Morse", "geo": null, "id": 148837178686976000, "id_str": "148837178686976002", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691559295/ken-bates-sells-leeds-united_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691559295/ken-bates-sells-leeds-united_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "sick of fake fit birds following me on here! Stop getting my hopes up #Bellends", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:41 +0000", "from_user": "FuckYeahJoose", "from_user_id": 101394524, "from_user_id_str": "101394524", "from_user_name": "Joose.", "geo": null, "id": 148837169476276220, "id_str": "148837169476276224", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698995552/Sony_DigitaCamera_171211_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698995552/Sony_DigitaCamera_171211_normal.JPG", "source": "<a href="http://yfrog.com" rel="nofollow">Yfrog</a>", "text": "Descargaste el seasons? RT @KenderlynYasnel: Jugar\\u00E9 angry birds mientras pelissia ora por mi.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:40 +0000", "from_user": "Pinky_Dip", "from_user_id": 42314190, "from_user_id_str": "42314190", "from_user_name": "M.Priscilla *", "geo": null, "id": 148837168301875200, "id_str": "148837168301875201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701341640/qvBCLERk_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701341640/qvBCLERk_normal", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @_ashleymarieeee: - all that bullshit is for the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:37 +0000", "from_user": "ethicalifa", "from_user_id": 27850638, "from_user_id_str": "27850638", "from_user_name": "ethical partnership", "geo": null, "id": 148837155937071100, "id_str": "148837155937071107", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1657377053/my_photos_in_case_you_want_some_of_them_006_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657377053/my_photos_in_case_you_want_some_of_them_006_normal.JPG", "source": "<a href="http://www.independent.co.uk/" rel="nofollow">The Independent</a>", "text": "The world's most threatened birds set up new nest in Gloucestershire http://t.co/mnMTVxMa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:36 +0000", "from_user": "Arceliapty", "from_user_id": 440226728, "from_user_id_str": "440226728", "from_user_name": "Arcelia Golob", "geo": null, "id": 148837148144050180, "id_str": "148837148144050178", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700609583/large_RZRSBZHBASCF_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700609583/large_RZRSBZHBASCF_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Rare Birds of the World (First Edition With Dust Jacket): http://t.co/GoyqD29b", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:35 +0000", "from_user": "ImThatDude_Nick", "from_user_id": 235311185, "from_user_id_str": "235311185", "from_user_name": "\\u24D3\\u24D4\\u24D2 \\u30C4 XOXO", "geo": null, "id": 148837145895899140, "id_str": "148837145895899136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1682362431/Manila_tmp0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682362431/Manila_tmp0_normal.jpg", "source": "<a href="http://www.htc.com" rel="nofollow">HTC Peep</a>", "text": "Goodmorning early birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:32 +0000", "from_user": "FireZenk", "from_user_id": 54642878, "from_user_id_str": "54642878", "from_user_name": "Jorge Garrido Oval", "geo": null, "id": 148837134378340350, "id_str": "148837134378340352", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1582980212/414759598_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1582980212/414759598_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Angry Birds y las torres gemelas http://t.co/sfP7UOL9 v\\u00EDa @cuantocabron juas que bestia xDD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:32 +0000", "from_user": "On3ClassyChick", "from_user_id": 320447932, "from_user_id_str": "320447932", "from_user_name": "VICTORIA C. OUTLEY", "geo": null, "id": 148837133648543740, "id_str": "148837133648543745", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1660074465/13_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660074465/13_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @ThsWht_iCallHer: Birds of a feather flock together. Hoes on the same shit chase after the same dick.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:29 +0000", "from_user": "kaioticmodel7", "from_user_id": 338185786, "from_user_id_str": "338185786", "from_user_name": "Kailey Marie", "geo": +{"coordinates": [43.2153,-75.4552], "type": "Point"}, "id": 148837121405362180, "id_str": "148837121405362176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1688086960/149015_1750628246000_1247675789_31960703_5841030_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688086960/149015_1750628246000_1247675789_31960703_5841030_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@irishlove212 I agree..and I keep coming with different kinds of birds lol", "to_user": "irishlove212", "to_user_id": 368109366, "to_user_id_str": "368109366", "to_user_name": "liz finley", "in_reply_to_status_id": 148836759537598460, "in_reply_to_status_id_str": "148836759537598464"}, +{"created_at": "Mon, 19 Dec 2011 18:48:29 +0000", "from_user": "Elenorus", "from_user_id": 388986457, "from_user_id_str": "388986457", "from_user_name": "Eleanor Booton", "geo": null, "id": 148837120256118800, "id_str": "148837120256118784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://angrybirdstweets.com" rel="nofollow">Angry Birds Tweets</a>", "text": "Just unlocked the angry birds seasons twitter levels, http://t.co/bvOFZ3ur", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:29 +0000", "from_user": "DaaiTheo", "from_user_id": 49032666, "from_user_id_str": "49032666", "from_user_name": "Theo Van Rooyen", "geo": null, "id": 148837119304007680, "id_str": "148837119304007681", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1414766731/243202_137298153011744_113638838711009_246659_79213_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1414766731/243202_137298153011744_113638838711009_246659_79213_o_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "Birds on a wall... http://t.co/voDdogaS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:28 +0000", "from_user": "Misztitiz", "from_user_id": 38918312, "from_user_id_str": "38918312", "from_user_name": "Frikii :)", "geo": null, "id": 148837116284121100, "id_str": "148837116284121088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1650292500/Misztitiz_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650292500/Misztitiz_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "I don't fucks with bitchs in Danbury for a reason don't face me no nuttin birds I swear", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:24 +0000", "from_user": "emblaney", "from_user_id": 36692469, "from_user_id_str": "36692469", "from_user_name": "Emmy ", "geo": null, "id": 148837101151068160, "id_str": "148837101151068160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689350636/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689350636/profile_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "This shit is for theee BIRDS!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:23 +0000", "from_user": "ItsBeauty_Bitch", "from_user_id": 333093967, "from_user_id_str": "333093967", "from_user_name": "\\uE329J A S M I N E : )\\uE314", "geo": null, "id": 148837096482803700, "id_str": "148837096482803712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702597952/jasmine_13_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702597952/jasmine_13_normal", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @ThsWht_iCallHer: Birds of a feather flock together. Hoes on the same shit chase after the same dick.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:19 +0000", "from_user": "alberto_03_", "from_user_id": 299037720, "from_user_id_str": "299037720", "from_user_name": "Alberto Valdi", "geo": null, "id": 148837079063867400, "id_str": "148837079063867393", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1673914161/homer_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673914161/homer_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @valladolor: \"Angry Birds Las Delicias\" en tu App Store, consiste en lanzar trozos de chatarra y cobre a Monchines, nunca les matas, se lo quedan todo.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:18 +0000", "from_user": "EricaSmith46", "from_user_id": 401157467, "from_user_id_str": "401157467", "from_user_name": "Erica Smith", "geo": null, "id": 148837075481919500, "id_str": "148837075481919488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687602913/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687602913/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Caroline: Flamingos aren't animals they're birds! #wow @CarolineWeaver4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:17 +0000", "from_user": "KenderlynYasnel", "from_user_id": 119781487, "from_user_id_str": "119781487", "from_user_name": "Kenderlyn.", "geo": null, "id": 148837069681205250, "id_str": "148837069681205248", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1640958796/cfvghbjnfc__11__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640958796/cfvghbjnfc__11__normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Jugar\\u00E9 angry birds mientras pelissia ora por mi.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:15 +0000", "from_user": "RawPureTalent", "from_user_id": 259966889, "from_user_id_str": "259966889", "from_user_name": "Raw ", "geo": null, "id": 148837061934317570, "id_str": "148837061934317568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701660541/H517P8Yy_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701660541/H517P8Yy_normal", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @EEEEZZEEE: #SHOUTOUT to the birds who fuck and blow niggas just to get in the club for free. #FYI girls were free all night... But u knew that tho..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:15 +0000", "from_user": "UberSurge1", "from_user_id": 391279883, "from_user_id_str": "391279883", "from_user_name": "UberSurgeClothing", "geo": null, "id": 148837060390817800, "id_str": "148837060390817792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1589228996/UBS2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1589228996/UBS2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I liked a @YouTube video http://t.co/BObJUEBm @NoelGallagher High Flying Birds - AKA... What A Life!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:15 +0000", "from_user": "dat_longharold", "from_user_id": 95726808, "from_user_id_str": "95726808", "from_user_name": "ron-al-do", "geo": null, "id": 148837060134961150, "id_str": "148837060134961152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700415408/76LhX88J_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700415408/76LhX88J_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Angry birds > angry frogs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:13 +0000", "from_user": "xxTmGgxx", "from_user_id": 440263496, "from_user_id_str": "440263496", "from_user_name": "tatyana martinez", "geo": null, "id": 148837051977056260, "id_str": "148837051977056256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702604121/VKK3eJN9_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702604121/VKK3eJN9_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Woah! My mom plays angry birds now!? That game is dead to me all of a sudden..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:12 +0000", "from_user": "LeslieRamirezM", "from_user_id": 297124466, "from_user_id_str": "297124466", "from_user_name": "Leslie Ramirez", "geo": null, "id": 148837049556934660, "id_str": "148837049556934656", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695784420/389873_151712468265766_100002810427939_160844_2081342597_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695784420/389873_151712468265766_100002810427939_160844_2081342597_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Angry Birds navide\\u00F1o esta lento:(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:11 +0000", "from_user": "Ciroc_Alexander", "from_user_id": 65870195, "from_user_id_str": "65870195", "from_user_name": "Retro Kicks Jones", "geo": null, "id": 148837044955791360, "id_str": "148837044955791360", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683495637/Ciroc_Alexander_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683495637/Ciroc_Alexander_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", "text": "#NP Slangin' Birds- 2Chainz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:11 +0000", "from_user": "E_smaLLsz", "from_user_id": 69202081, "from_user_id_str": "69202081", "from_user_name": "Erica SmaLLsz", "geo": null, "id": 148837043399700480, "id_str": "148837043399700480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686124985/IMAG0014-1-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686124985/IMAG0014-1-1_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "LMAO OH RT @EEEEZZEEE #SHOUTOUT to the birds who fuck and blow niggas just to get in the club for free. #FYI girls were free all night...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:10 +0000", "from_user": "Mauradmv", "from_user_id": 426260348, "from_user_id_str": "426260348", "from_user_name": "Maura Loepp", "geo": null, "id": 148837042783129600, "id_str": "148837042783129601", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668792271/LLCM-4565_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668792271/LLCM-4565_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Me_And_My_Pros Ya have to go get Pigeon Palooza (the next angry birds)- it's avail in Android Mktplce - will be in App Store next week.", "to_user": "Me_And_My_Pros", "to_user_id": 321470818, "to_user_id_str": "321470818", "to_user_name": "#Free B #R.I.P. Kev", "in_reply_to_status_id": 148826782882201600, "in_reply_to_status_id_str": "148826782882201601"}, +{"created_at": "Mon, 19 Dec 2011 18:48:10 +0000", "from_user": "katolds", "from_user_id": 201925204, "from_user_id_str": "201925204", "from_user_name": "Kathleen Olds", "geo": null, "id": 148837041533227000, "id_str": "148837041533227008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1145076370/IMG_0477-1_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1145076370/IMG_0477-1_normal.JPG", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "Birds are desperately trying to get into the attic lately. Wonder if that means we'll finally get some winter weather soon.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:10 +0000", "from_user": "SheIsMona", "from_user_id": 30944153, "from_user_id_str": "30944153", "from_user_name": "M\\u00F3nica", "geo": null, "id": 148837041487101950, "id_str": "148837041487101952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698192247/IMG00192_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698192247/IMG00192_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Pinches Angry Birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:09 +0000", "from_user": "racingheartsx", "from_user_id": 314102114, "from_user_id_str": "314102114", "from_user_name": "rachel elizabeth.", "geo": null, "id": 148837037011767300, "id_str": "148837037011767297", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693031992/03402684-ee1e-44cf-a771-44bf16849722_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693031992/03402684-ee1e-44cf-a771-44bf16849722_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/Vg4j07LA pleeease let this be under the christmas tree on sunday <3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:05 +0000", "from_user": "TasteMy_Polo", "from_user_id": 363205189, "from_user_id_str": "363205189", "from_user_name": "StilLmakinUsayMyName", "geo": null, "id": 148837020511383550, "id_str": "148837020511383552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694444075/20111210234600_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694444075/20111210234600_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @PrettiFlow: My mother always said birds of a feather flock together. Not my cup of tea .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:04 +0000", "from_user": "DingDong_TLC", "from_user_id": 246098855, "from_user_id_str": "246098855", "from_user_name": "Terry Conerly", "geo": null, "id": 148837013880193020, "id_str": "148837013880193024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697789762/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697789762/image_normal.jpg", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "So I fuckin hate angry birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:00 +0000", "from_user": "ToToSaud19", "from_user_id": 363044916, "from_user_id_str": "363044916", "from_user_name": "\\u0627\\u0644\\u0623\\u0637\\u0640\\u0653\\u0644\\u0627\\u0644\\u064F \\u273F", "geo": null, "id": 148836999191740400, "id_str": "148836999191740416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1631929361/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631929361/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @Engliiiiiish: Birds: \\u0637\\u064A\\u0648\\u0631\\n\\nPigeon---\\u067E\\u064A\\u0686\\u064F\\u0646\\u0652---\\u062D\\u0645\\u0627\\u0645\\n\\nParrot---\\u067E\\u064E\\u0627\\u0631\\u064F\\u062A\\u0652---\\u0628\\u0628\\u063A\\u0627\\u0621\\n\\nPeacock--\\u067E\\u064A\\u0643\\u064F\\u0643\\u0652---\\u0637\\u0627\\u0648\\u0648\\u0633", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:00 +0000", "from_user": "Karol_killzzz", "from_user_id": 348129017, "from_user_id_str": "348129017", "from_user_name": "Karolynn Valdez\\uE13C", "geo": null, "id": 148836998986207230, "id_str": "148836998986207232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689440006/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689440006/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "We killed two birds with one stone #heckyes lol @Helen_Cee45", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:54 +0000", "from_user": "TCRED93581", "from_user_id": 379809451, "from_user_id_str": "379809451", "from_user_name": "TCRED United", "geo": null, "id": 148836971895197700, "id_str": "148836971895197697", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1559385048/ATT0001514151513_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1559385048/ATT0001514151513_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Make turbines safer for birds. But is there really such a thing?... http://t.co/ThII1n47", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:47:53 +0000", "from_user": "SheGetSoFly", "from_user_id": 123336796, "from_user_id_str": "123336796", "from_user_name": "It's Hamidaa. \\u2655", "geo": null, "id": 148836969609306100, "id_str": "148836969609306112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1677948757/Yuuupp_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677948757/Yuuupp_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @ThsWht_iCallHer: Birds of a feather flock together. Hoes on the same shit chase after the same dick.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:52 +0000", "from_user": "nickacousins", "from_user_id": 23784354, "from_user_id_str": "23784354", "from_user_name": "nick cousins", "geo": null, "id": 148836965859602430, "id_str": "148836965859602432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/186316596/nav_jobs_char_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/186316596/nav_jobs_char_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@adamrubins I think someone needs to have a quick word with you about the birds and bees my friend", "to_user": "adamrubins", "to_user_id": 21204951, "to_user_id_str": "21204951", "to_user_name": "Adam", "in_reply_to_status_id": 148798042454241280, "in_reply_to_status_id_str": "148798042454241281"}, +{"created_at": "Mon, 19 Dec 2011 18:47:51 +0000", "from_user": "TR_Home_Garden", "from_user_id": 151479202, "from_user_id_str": "151479202", "from_user_name": "Home & Garden News", "geo": null, "id": 148836961505914880, "id_str": "148836961505914880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/956247465/n54499120758_7522_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/956247465/n54499120758_7522_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Gardener: Feed birds in winter to guarantee a show http://t.co/MUzC3pdA #homegarden", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:50 +0000", "from_user": "belajarpsikolog", "from_user_id": 190535653, "from_user_id_str": "190535653", "from_user_name": "Belajar Psikologi", "geo": null, "id": 148836955587747840, "id_str": "148836955587747841", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1123461292/header_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1123461292/header_normal.jpg", "source": "<a href="http://www.blogtopsites.com" rel="nofollow">BlogTopSites - Blog Connect</a>", "text": "Video: The Interactive Angry Birds Christmas Lights Display http://t.co/LAqxdGGv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:47 +0000", "from_user": "Geralyndcf", "from_user_id": 426262070, "from_user_id_str": "426262070", "from_user_name": "Geralyn Aron", "geo": null, "id": 148836946146365440, "id_str": "148836946146365440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668797133/LLCM-1691_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668797133/LLCM-1691_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@mjlovely99 Go play Pigeon Palooza (the next angry birds)- it's live in Android Mktplce - will be in App Store next week.", "to_user": "mjlovely99", "to_user_id": 356719201, "to_user_id_str": "356719201", "to_user_name": "Mary-jayne", "in_reply_to_status_id": 148835862845730800, "in_reply_to_status_id_str": "148835862845730816"}, +{"created_at": "Mon, 19 Dec 2011 18:47:46 +0000", "from_user": "unadevotchka", "from_user_id": 14406356, "from_user_id_str": "14406356", "from_user_name": "Katy Callie", "geo": null, "id": 148836941163544580, "id_str": "148836941163544576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1670873432/Photo_on_2011-08-30_at_08.29_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670873432/Photo_on_2011-08-30_at_08.29_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Oh Jesus H. Christ, there's some kind of crazy bird orgy going on outside my window. SHUT UP, BIRDS!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:45 +0000", "from_user": "Sandraduc", "from_user_id": 246306569, "from_user_id_str": "246306569", "from_user_name": "Sandrau", "geo": null, "id": 148836935878713340, "id_str": "148836935878713344", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1585273065/422102000_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585273065/422102000_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @valladolor: \"Angry Birds Las Delicias\" en tu App Store, consiste en lanzar trozos de chatarra y cobre a Monchines, nunca les matas, se lo quedan todo.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:34 +0000", "from_user": "bellaalysia", "from_user_id": 317343758, "from_user_id_str": "317343758", "from_user_name": "Alysia C.\\u2764", "geo": null, "id": 148836888969617400, "id_str": "148836888969617408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1658314909/Image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658314909/Image_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @FastCarVettie: Social web-site should be used for net working, having fun catching up w/ old friends etc. All that other drama is for the #birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:33 +0000", "from_user": "hajaratheninja", "from_user_id": 127565933, "from_user_id_str": "127565933", "from_user_name": "\\u306F\\u3058\\u3083\\u3089", "geo": null, "id": 148836886650159100, "id_str": "148836886650159104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1685603007/103_1798_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685603007/103_1798_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "np - TheWeeknd : the birds part 2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:32 +0000", "from_user": "txter1407", "from_user_id": 367292494, "from_user_id_str": "367292494", "from_user_name": "Sam", "geo": null, "id": 148836880333541380, "id_str": "148836880333541376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1676522956/IMG_1603_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676522956/IMG_1603_normal.JPG", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "These birds starred at me for an hour! \\uD83D\\uDC26 #thebirds! http://t.co/69zwUtOo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:32 +0000", "from_user": "ncuriel", "from_user_id": 14960984, "from_user_id_str": "14960984", "from_user_name": "Nora", "geo": null, "id": 148836879842807800, "id_str": "148836879842807808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1671601806/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671601806/image_normal.jpg", "source": "<a href="http://timely.is" rel="nofollow">Timely by Demandforce</a>", "text": "RT @audubonsociety: What happens after #xmasbirdcount counters send their tallies? Audubon's scentists get to work. http://t.co/ptfZ3lbq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:28 +0000", "from_user": "SBylev", "from_user_id": 332757235, "from_user_id_str": "332757235", "from_user_name": "\\u0421\\u0435\\u0440\\u0433\\u0435\\u0439 \\u0411\\u044B\\u043B\\u044C\\u0435\\u0432", "geo": null, "id": 148836864206442500, "id_str": "148836864206442496", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1641631297/3GSiMOgC_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641631297/3GSiMOgC_normal", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @yeleleo: \\u0422\\u0435\\u043C, \\u043A\\u0442\\u043E \\u043D\\u0435 \\u0443\\u043C\\u0435\\u0435\\u0442 \\u0438\\u0433\\u0440\\u0430\\u0442\\u044C \\u0432 Angry Birds. http://t.co/X5vXZaQl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:26 +0000", "from_user": "LunaPrat", "from_user_id": 28202439, "from_user_id_str": "28202439", "from_user_name": "Vanessa Prat", "geo": null, "id": 148836858267316220, "id_str": "148836858267316224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1684440875/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684440875/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@MelissaG84 also, steak, no chicken no turkey, no birds (they \"scratch\" for food, so we will be \"scrapping by\")", "to_user": "MelissaG84", "to_user_id": 330287876, "to_user_id_str": "330287876", "to_user_name": "Melissa Grant", "in_reply_to_status_id": 148836341914931200, "in_reply_to_status_id_str": "148836341914931200"}, +{"created_at": "Mon, 19 Dec 2011 18:47:20 +0000", "from_user": "ActuallyBig", "from_user_id": 210714634, "from_user_id_str": "210714634", "from_user_name": "Kelz", "geo": null, "id": 148836831377633280, "id_str": "148836831377633281", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1645306980/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645306980/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Walking the lake pulling tree watching ppl\\nDogs chase the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:18 +0000", "from_user": "aFletch_23", "from_user_id": 316724078, "from_user_id_str": "316724078", "from_user_name": "Allen Fletcher", "geo": null, "id": 148836823320367100, "id_str": "148836823320367104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702609930/PART951321323662987_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702609930/PART951321323662987_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @CHS_footballKJ: 1 hand on my money 1 hand on my buddie that ak 47 make ya neighborhood love me bullets like birds yu can hear dem bitches humming #WAYNE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:17 +0000", "from_user": "GlendaTow1456", "from_user_id": 343902494, "from_user_id_str": "343902494", "from_user_name": "Glenda Tow", "geo": null, "id": 148836819432251400, "id_str": "148836819432251392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702446904/9571086375182952a438236108b240327459l_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702446904/9571086375182952a438236108b240327459l_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Why is politics for the birds? Because politiciands always parrot the same old lines!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:16 +0000", "from_user": "abc4", "from_user_id": 11321162, "from_user_id_str": "11321162", "from_user_name": "a-dum carlson", "geo": null, "id": 148836816529784830, "id_str": "148836816529784832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1633051510/x2_938100e_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633051510/x2_938100e_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@SmellyDanielly just imagining an origami remake of the birds", "to_user": "SmellyDanielly", "to_user_id": 19406467, "to_user_id_str": "19406467", "to_user_name": "Danielle Ciavarro", "in_reply_to_status_id": 148835600840130560, "in_reply_to_status_id_str": "148835600840130560"}, +{"created_at": "Mon, 19 Dec 2011 18:47:16 +0000", "from_user": "EEEEZZEEE", "from_user_id": 333682834, "from_user_id_str": "333682834", "from_user_name": "Benjamin Rackin", "geo": null, "id": 148836814260670460, "id_str": "148836814260670464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1641736103/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641736103/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#SHOUTOUT to the birds who fuck and blow niggas just to get in the club for free. #FYI girls were free all night... But u knew that tho..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:14 +0000", "from_user": "lovecmose", "from_user_id": 150013248, "from_user_id_str": "150013248", "from_user_name": "crystal mosley", "geo": null, "id": 148836805179998200, "id_str": "148836805179998209", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1659265046/lovecmose_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659265046/lovecmose_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Oh lord, now she's playing angry birds!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:13 +0000", "from_user": "Kellyexfs", "from_user_id": 431688975, "from_user_id_str": "431688975", "from_user_name": "Kellye Heinly", "geo": null, "id": 148836800633376770, "id_str": "148836800633376768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681005016/large_017_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681005016/large_017_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Schneider Cuckoo Clock-Feeding Birds and Music, Model #MT 6106/10: Chalet cuckoo clock with feeding birds that r... http://t.co/RThVjY49", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:11 +0000", "from_user": "PrettiFlow", "from_user_id": 223412436, "from_user_id_str": "223412436", "from_user_name": "PrettiMaccin", "geo": null, "id": 148836794912346100, "id_str": "148836794912346112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696002839/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696002839/profile_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "My mother always said birds of a feather flock together. Not my cup of tea .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:10 +0000", "from_user": "SundialCharters", "from_user_id": 272032080, "from_user_id_str": "272032080", "from_user_name": "Captain Rene", "geo": null, "id": 148836787517800450, "id_str": "148836787517800448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1291505521/head_01_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1291505521/head_01_normal.gif", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Regular guide and customer, check out her new book Diana Churchill Birds \\nhttp://t.co/GbdfJRZ2 I am... http://t.co/VsJRATrL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:08 +0000", "from_user": "MissKoolAid", "from_user_id": 17172741, "from_user_id_str": "17172741", "from_user_name": "MissKoolAid", "geo": null, "id": 148836781029195780, "id_str": "148836781029195776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/596989115/4153706444_95d9ac5bd5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/596989115/4153706444_95d9ac5bd5_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Hundreds of birds just flew by my window... Magical!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:00 +0000", "from_user": "Naomi_kibey", "from_user_id": 254218188, "from_user_id_str": "254218188", "from_user_name": "Ki", "geo": null, "id": 148836745394389000, "id_str": "148836745394388992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676490089/o66eeY0b_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676490089/o66eeY0b_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "@ButtaBaybeee That shit for the birds :/", "to_user": "ButtaBaybeee", "to_user_id": 227005385, "to_user_id_str": "227005385", "to_user_name": "PrettyGirlButta ", "in_reply_to_status_id": 148836349351432200, "in_reply_to_status_id_str": "148836349351432193"}, +{"created_at": "Mon, 19 Dec 2011 18:46:59 +0000", "from_user": "Particiamso", "from_user_id": 426263721, "from_user_id_str": "426263721", "from_user_name": "Particia Brun", "geo": null, "id": 148836744685559800, "id_str": "148836744685559808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668801396/LLCM-4961_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668801396/LLCM-4961_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@agm_andy Have to try Pigeon Palooza (the next angry birds)- it's for sale in Android Mktplce - will be in ITunes next week.", "to_user": "agm_andy", "to_user_id": 253687684, "to_user_id_str": "253687684", "to_user_name": "Andrea Garc\\u00EDa Montes", "in_reply_to_status_id": 148822179180576770, "in_reply_to_status_id_str": "148822179180576768"}, +{"created_at": "Mon, 19 Dec 2011 18:46:59 +0000", "from_user": "jesperbeunk", "from_user_id": 337280391, "from_user_id_str": "337280391", "from_user_name": "Jesper onbekend", "geo": null, "id": 148836744408731650, "id_str": "148836744408731648", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1675744953/330965492_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675744953/330965492_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "angry birds doen", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:57 +0000", "from_user": "Gabrieleqpf", "from_user_id": 430062538, "from_user_id_str": "430062538", "from_user_name": "Gabriele Cluff", "geo": null, "id": 148836734828941300, "id_str": "148836734828941312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1677551512/zculpy21ur_109638363-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677551512/zculpy21ur_109638363-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Black Forest Cuckoo Clock - Animated Cuckoo Clock, Model #1206: Model #1206 Feeding birds with grapes leaves, 12... http://t.co/QaWU9ApL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:55 +0000", "from_user": "natalieroska", "from_user_id": 124766846, "from_user_id_str": "124766846", "from_user_name": "Natalie Roska", "geo": null, "id": 148836726197075970, "id_str": "148836726197075968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1673973874/31_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673973874/31_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "all my birds are sooooooo hot!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:54 +0000", "from_user": "BenSlowLoris", "from_user_id": 407545194, "from_user_id_str": "407545194", "from_user_name": "Ng Khong Zien", "geo": null, "id": 148836721046466560, "id_str": "148836721046466560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1632676509/SlowLoris_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632676509/SlowLoris_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@amandafrancis37 that must be boring right? Seeing how the birds hitting objects that's it..", "to_user": "amandafrancis37", "to_user_id": 96078615, "to_user_id_str": "96078615", "to_user_name": "Amanda Francis \\uC544\\uB9CC\\uB2E4 ", "in_reply_to_status_id": 148836070652514300, "in_reply_to_status_id_str": "148836070652514305"}, +{"created_at": "Mon, 19 Dec 2011 18:46:47 +0000", "from_user": "_Sarah27", "from_user_id": 149694697, "from_user_id_str": "149694697", "from_user_name": "\\u2665 Sarah! \\u20AA \\u00F8 lll \\u00B7o.", "geo": null, "id": 148836694517493760, "id_str": "148836694517493761", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1609574234/938e7d0f-cd9b-4788-bcb4-5a57b2e55646_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609574234/938e7d0f-cd9b-4788-bcb4-5a57b2e55646_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Our life is just like Angry Birds. When you fail, there's always some pigs laughing at you...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:41 +0000", "from_user": "nivi_ms", "from_user_id": 94432064, "from_user_id_str": "94432064", "from_user_name": "Nivi Morales", "geo": null, "id": 148836667657170940, "id_str": "148836667657170944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1454204224/IMG_0343_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1454204224/IMG_0343_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@rythie @phuunet @robday @jdrydn there will be #cake of some description for the early birds ;) I'll be bringing it @leampack", "to_user": "rythie", "to_user_id": 14181142, "to_user_id_str": "14181142", "to_user_name": "Richard Cunningham", "in_reply_to_status_id": 148832406898606080, "in_reply_to_status_id_str": "148832406898606080"}, +{"created_at": "Mon, 19 Dec 2011 18:46:40 +0000", "from_user": "Shizueskep", "from_user_id": 426262224, "from_user_id_str": "426262224", "from_user_name": "Shizue Lautz", "geo": null, "id": 148836664041685000, "id_str": "148836664041684992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668797298/LLCM-4396_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668797298/LLCM-4396_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MusikBotTeamspe Hey, get Pigeon Palooza (the next angry birds)- it's in Android Mktplce - will be in ITunes next week.", "to_user": "MusikBotTeamspe", "to_user_id": 430937809, "to_user_id_str": "430937809", "to_user_name": "Musik Bot Teamspeak ", "in_reply_to_status_id": 148835749226229760, "in_reply_to_status_id_str": "148835749226229760"}, +{"created_at": "Mon, 19 Dec 2011 18:46:40 +0000", "from_user": "Magalywbdq", "from_user_id": 426261624, "from_user_id_str": "426261624", "from_user_name": "Magaly Lankford", "geo": null, "id": 148836664020713470, "id_str": "148836664020713473", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668796259/LLCM-0607_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668796259/LLCM-0607_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@_iAMyungBUTdope Hey, play Pigeon Palooza (the next angry birds)- it is launched in Android Mktplce - will be in ITunes in a few days.", "to_user": "_iAMyungBUTdope", "to_user_id": 163985111, "to_user_id_str": "163985111", "to_user_name": "dree, TheCreator \\u30C4 \\u2122", "in_reply_to_status_id": 148809405754908670, "in_reply_to_status_id_str": "148809405754908673"}, +{"created_at": "Mon, 19 Dec 2011 18:46:40 +0000", "from_user": "SelinahRaine", "from_user_id": 436915495, "from_user_id_str": "436915495", "from_user_name": "Selinah Newton", "geo": null, "id": 148836661743198200, "id_str": "148836661743198208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693335879/image_normal.jpg", "profile_image_url_https": null, "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Gabe: I hope you get stuck on a level of Angry Birds.\\nMe: I hope you fall off a cliff and fall forever\\nGabe: Thats a little extreme\\nMe: no(:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:38 +0000", "from_user": "MAdlY_UNiiQUE", "from_user_id": 305159899, "from_user_id_str": "305159899", "from_user_name": "Chazah Carter", "geo": null, "id": 148836653639806980, "id_str": "148836653639806976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1570372053/100201_1631_00__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1570372053/100201_1631_00__normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Somebody...anybody...help me get passed dis level in angry birds :(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:38 +0000", "from_user": "Gay210BigC", "from_user_id": 398271071, "from_user_id_str": "398271071", "from_user_name": "Gay Bigc", "geo": null, "id": 148836653325226000, "id_str": "148836653325225985", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1606563662/KOM-1224_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606563662/KOM-1224_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Birds of the Kruger National Park: http://t.co/niLGz9iT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:37 +0000", "from_user": "Pansyrap", "from_user_id": 426265387, "from_user_id_str": "426265387", "from_user_name": "Pansy Rickey", "geo": null, "id": 148836649797816320, "id_str": "148836649797816320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668806319/LLCM-4703_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668806319/LLCM-4703_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@DJFRANK_WHITE Ya should get Pigeon Palooza (the next angry birds)- it is in Android Mktplce - should be in ITunes in a few days.", "to_user": "DJFRANK_WHITE", "to_user_id": 182239856, "to_user_id_str": "182239856", "to_user_name": "FRANK WHITE", "in_reply_to_status_id": 148828429893107700, "in_reply_to_status_id_str": "148828429893107713"}, +{"created_at": "Mon, 19 Dec 2011 18:46:37 +0000", "from_user": "NibbleHacker", "from_user_id": 247908327, "from_user_id_str": "247908327", "from_user_name": "Nibble Hacker", "geo": null, "id": 148836649730711550, "id_str": "148836649730711552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1235846105/avatar_Martien_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1235846105/avatar_Martien_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "DIY Angry Birds Christmas Display is an Interactive Game [Video]: From the same guy that brought you the playabl... http://t.co/smsVeysQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:35 +0000", "from_user": "minamaya13", "from_user_id": 54182296, "from_user_id_str": "54182296", "from_user_name": "OriginalBADYOGAKITTY", "geo": null, "id": 148836640910098430, "id_str": "148836640910098432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1440650149/moon_cat_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1440650149/moon_cat_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "GREAT NEWS! #UK Most under-threat birds took up residence in Wildfowl & Wetlands Trust. Fewer than 100 pairs left\\nhttp://t.co/LljlV4B3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:32 +0000", "from_user": "lewis_aldridge", "from_user_id": 306701389, "from_user_id_str": "306701389", "from_user_name": "Lewis Aldridge", "geo": null, "id": 148836630931841020, "id_str": "148836630931841024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1660800523/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660800523/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@ryan_scott99 bye bye draco malfoy! He gets no birds anyway hes just a playa hater", "to_user": "ryan_scott99", "to_user_id": 262630415, "to_user_id_str": "262630415", "to_user_name": "Ryan Alexander", "in_reply_to_status_id": 148834670866481150, "in_reply_to_status_id_str": "148834670866481152"}, +{"created_at": "Mon, 19 Dec 2011 18:46:29 +0000", "from_user": "_OhreallyNow", "from_user_id": 81666737, "from_user_id_str": "81666737", "from_user_name": "Tyesha Reid \\u2665", "geo": null, "id": 148836616444723200, "id_str": "148836616444723200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1694043342/IMG_20111122_120105_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694043342/IMG_20111122_120105_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @DntBlowMy_Tweet: RT @JehmarNOtJamar: this being home shit is #dead and for the birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:29 +0000", "from_user": "UrBoss_Chick", "from_user_id": 226932484, "from_user_id_str": "226932484", "from_user_name": "da_CEO911", "geo": null, "id": 148836616268554240, "id_str": "148836616268554240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699206874/7Y3uq17M_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699206874/7Y3uq17M_normal", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @NotoriousLIZ: 2011 was a bad year for birds............The feather earrings trend.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:27 +0000", "from_user": "derekmahoney299", "from_user_id": 411121530, "from_user_id_str": "411121530", "from_user_name": "Derek Mahoney", "geo": null, "id": 148836607292747780, "id_str": "148836607292747777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668263564/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668263564/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@NormallyWasted pretty nice bull. Flawk of birds led right to it http://t.co/kjqAW1rs", "to_user": "NormallyWasted", "to_user_id": 315011156, "to_user_id_str": "315011156", "to_user_name": "Norm Bettencourt"}, +{"created_at": "Mon, 19 Dec 2011 18:46:25 +0000", "from_user": "Chungodp", "from_user_id": 426261931, "from_user_id_str": "426261931", "from_user_name": "Chung Knee", "geo": null, "id": 148836600430866430, "id_str": "148836600430866432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668796811/LLCM-5119_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668796811/LLCM-5119_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@tia_shiree Ya should check out Pigeon Palooza (the next angry birds)- it's in Android Mktplce - should be in ITunes in a few days.", "to_user": "tia_shiree", "to_user_id": 157012549, "to_user_id_str": "157012549", "to_user_name": "Tia Powell", "in_reply_to_status_id": 148821468296388600, "in_reply_to_status_id_str": "148821468296388609"}, +{"created_at": "Mon, 19 Dec 2011 18:46:22 +0000", "from_user": "cazygirl8", "from_user_id": 156348688, "from_user_id_str": "156348688", "from_user_name": "Calsie Burnside", "geo": null, "id": 148836587357208580, "id_str": "148836587357208576", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/996347381/29091_1282307468996_1569385604_30609343_3951953_s_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/996347381/29091_1282307468996_1569385604_30609343_3951953_s_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Photoset: fat-birds: http://t.co/wfnW0wIl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:21 +0000", "from_user": "emmymaeisaak", "from_user_id": 271262177, "from_user_id_str": "271262177", "from_user_name": "Emily Isaak", "geo": null, "id": 148836584660283400, "id_str": "148836584660283392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693701068/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693701068/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Why do birds suddenly appear every time you are near!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:21 +0000", "from_user": "dedeskaka", "from_user_id": 129143305, "from_user_id_str": "129143305", "from_user_name": "Deska Sulistia!", "geo": null, "id": 148836581921402880, "id_str": "148836581921402880", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701051218/dedeskaka_737341081782223144_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701051218/dedeskaka_737341081782223144_normal.jpg", "source": "<a href="http://twittanic.com" rel="nofollow">Twittanic\\u2122</a>", "text": "\\u00F4neis Malditos? Por que n\\u00E3o Angry Birds Malditos? #BigFollow: http://t.co/oK1Sb9Uw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:19 +0000", "from_user": "nauorneva", "from_user_id": 37707222, "from_user_id_str": "37707222", "from_user_name": "Nau or Neva!", "geo": null, "id": 148836575571230720, "id_str": "148836575571230721", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1159515338/ene_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1159515338/ene_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "Hungry birds http://t.co/H1vZNY75", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:18 +0000", "from_user": "FastCarVettie", "from_user_id": 280803411, "from_user_id_str": "280803411", "from_user_name": "Corvette Courtney", "geo": null, "id": 148836570101850100, "id_str": "148836570101850112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1637898390/503_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637898390/503_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Social web-site should be used for net working, having fun catching up w/ old friends etc. All that other drama is for the #birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:17 +0000", "from_user": "JUSTONEAMERICAN", "from_user_id": 38067927, "from_user_id_str": "38067927", "from_user_name": "ONEAMERICANLOOKING@U", "geo": null, "id": 148836565429399550, "id_str": "148836565429399553", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1273593109/spiralwound_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273593109/spiralwound_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "THE MOST BANNED VID ON YOUTUBE EVER! Strange bird formations\\birds dying all over earth PT. 6-9 http://t.co/8yui0EmG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:16 +0000", "from_user": "Phill022", "from_user_id": 299286193, "from_user_id_str": "299286193", "from_user_name": "Phill 02", "geo": null, "id": 148836564905103360, "id_str": "148836564905103360", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1423661716/Untitled_2_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1423661716/Untitled_2_normal.gif", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "Wood Birds\\thttp://t.co/ov33Mcoq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:15 +0000", "from_user": "Q103", "from_user_id": 18491062, "from_user_id_str": "18491062", "from_user_name": "Q103", "geo": null, "id": 148836559918071800, "id_str": "148836559918071810", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/69065069/Q103_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/69065069/Q103_normal.png", "source": "<a href="http://www.securenetsystems.net" rel="nofollow">Securenet Systems Radio Playlist Update</a>", "text": "THREE LITTLE BIRDS - BOB MARLEY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:15 +0000", "from_user": "CHS_footballKJ", "from_user_id": 326426979, "from_user_id_str": "326426979", "from_user_name": "Khalyll johnson", "geo": null, "id": 148836556772343800, "id_str": "148836556772343808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677941540/photo_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677941540/photo_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "1 hand on my money 1 hand on my buddie that ak 47 make ya neighborhood love me bullets like birds yu can hear dem bitches humming #WAYNE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:12 +0000", "from_user": "asegPL", "from_user_id": 319644456, "from_user_id_str": "319644456", "from_user_name": "Arek S.", "geo": null, "id": 148836546945093630, "id_str": "148836546945093632", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1590194037/IMG_8555_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1590194037/IMG_8555_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@Wooks_PL W Angry Birds nie grales?! TO PO CO CI SMARTFON?! =]", "to_user": "Wooks_PL", "to_user_id": 222460913, "to_user_id_str": "222460913", "to_user_name": "\\u0141ukasz Depko", "in_reply_to_status_id": 148836409829105660, "in_reply_to_status_id_str": "148836409829105665"}, +{"created_at": "Mon, 19 Dec 2011 18:46:11 +0000", "from_user": "randi_bugga", "from_user_id": 65846014, "from_user_id_str": "65846014", "from_user_name": "Jack Blackheart", "geo": null, "id": 148836542843076600, "id_str": "148836542843076609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1144027592/738e809c-1114-484b-9742-68e529028707_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1144027592/738e809c-1114-484b-9742-68e529028707_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Angry Birds maker now aims at Asian IPO http://t.co/ZQLTneKv via @regvulture", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:10 +0000", "from_user": "LiquorSexWeed", "from_user_id": 174607314, "from_user_id_str": "174607314", "from_user_name": "Prima Donna", "geo": null, "id": 148836536312528900, "id_str": "148836536312528896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1659931246/379734_111470165631741_100003062738346_78837_1144958359_n_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659931246/379734_111470165631741_100003062738346_78837_1144958359_n_normal.jpeg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "np: Gone, What You Need, Coming Down, The Birds (pt1 &2)- @theweekndxo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:03 +0000", "from_user": "socialwebinnova", "from_user_id": 318131732, "from_user_id_str": "318131732", "from_user_name": "SocialWebInnovation", "geo": null, "id": 148836510240735230, "id_str": "148836510240735232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1403545589/logo2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1403545589/logo2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "@simplyzesty These Festive Angry Birds Decorations Are Really An Fun Interactive... http://t.co/83povpNW #social #innovation", "to_user": "SimplyZesty", "to_user_id": 20886486, "to_user_id_str": "20886486", "to_user_name": "SimplyZesty"}, +{"created_at": "Mon, 19 Dec 2011 18:46:02 +0000", "from_user": "G_AlMohannadi", "from_user_id": 306279702, "from_user_id_str": "306279702", "from_user_name": "Ghada AlMohannadi", "geo": null, "id": 148836504603602940, "id_str": "148836504603602945", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702602190/Screen_Shot_2011-12-19_at_9.47.30_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702602190/Screen_Shot_2011-12-19_at_9.47.30_PM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "'No one is free, even the birds are chained to the sky.'", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:01 +0000", "from_user": "MistyKrissy", "from_user_id": 113392602, "from_user_id_str": "113392602", "from_user_name": "Kristen Hall\\u2122", "geo": null, "id": 148836500186992640, "id_str": "148836500186992640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1615641855/MistyKrissy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615641855/MistyKrissy_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @DoItLike_BErNie: I wonder how imma explain the birds and bees to my kids....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:00 +0000", "from_user": "NeverGaveA_Fuck", "from_user_id": 260958511, "from_user_id_str": "260958511", "from_user_name": "\\u00A9a\\u03A0ad\\u00A1\\u00A1a\\u03A0 ' K\\u00A1\\u03A0G", "geo": null, "id": 148836496684757000, "id_str": "148836496684756992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1549234540/K8tgw6jT_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1549234540/K8tgw6jT_normal", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "alright . bet ! && yu knoo dhey got angry birds at walmark. its a actual game.RT @TankDaGamer: @NeverGaveA_Fuck lmfao lemme see wat I can do", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:54 +0000", "from_user": "FuckingJuu", "from_user_id": 219798577, "from_user_id_str": "219798577", "from_user_name": "Jussara Prado", "geo": null, "id": 148836470277414900, "id_str": "148836470277414914", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1676457440/9d5c57dbc60327329_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676457440/9d5c57dbc60327329_normal.jpg", "source": "<a href="http://m.dabr.co.uk" rel="nofollow">Dabr</a>", "text": "Chega de Angry Birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:53 +0000", "from_user": "Alexiskds", "from_user_id": 401997454, "from_user_id_str": "401997454", "from_user_name": "Alex", "geo": null, "id": 148836467605643260, "id_str": "148836467605643266", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://www.ajaymatharu.com/" rel="nofollow">Tweet Old Post</a>", "text": "Tips For Attracting Birds To Your Back Yard http://t.co/Gd8DFJCO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:53 +0000", "from_user": "TomAtkinson23", "from_user_id": 321518283, "from_user_id_str": "321518283", "from_user_name": " Tom Atkinson", "geo": null, "id": 148836466162810880, "id_str": "148836466162810880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695406177/384880_2256472215152_1348765027_1856773_2110334398_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695406177/384880_2256472215152_1348765027_1856773_2110334398_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @jSimpson333: Fat birds only upload photos of their top half #conartists", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:52 +0000", "from_user": "xCindyfoREVer", "from_user_id": 322547266, "from_user_id_str": "322547266", "from_user_name": "Cindy ", "geo": null, "id": 148836460643098620, "id_str": "148836460643098625", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691326797/tumblr_lroxjtlwuq1qervbxo1_400_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691326797/tumblr_lroxjtlwuq1qervbxo1_400_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "@spiegelrand gare foto |:'3 angry birds ;'D", "to_user": "spiegelrand", "to_user_id": 370509736, "to_user_id_str": "370509736", "to_user_name": "ALEXEJ \\u2665 ZOEMAY :D", "in_reply_to_status_id": 148836182883704830, "in_reply_to_status_id_str": "148836182883704832"}, +{"created_at": "Mon, 19 Dec 2011 18:45:51 +0000", "from_user": "ccvancouver", "from_user_id": 42976344, "from_user_id_str": "42976344", "from_user_name": "Columbia College", "geo": null, "id": 148836459523227650, "id_str": "148836459523227648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/235171048/Dragon_Boat_Sleeves_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/235171048/Dragon_Boat_Sleeves_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Cool video. The Interactive Angry Birds Christmas Light Game\\nhttp://t.co/9ceIYkow", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:50 +0000", "from_user": "Datniggabizzy", "from_user_id": 367075812, "from_user_id_str": "367075812", "from_user_name": "Craig ", "geo": null, "id": 148836452258680830, "id_str": "148836452258680833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696429917/s8wuffUX_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696429917/s8wuffUX_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @SayWatCmarie88: Im addicted to angry birds seasons", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:48 +0000", "from_user": "TayThaTruth_", "from_user_id": 238782093, "from_user_id_str": "238782093", "from_user_name": "Taylor Simone", "geo": null, "id": 148836446432792580, "id_str": "148836446432792577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694020506/IMAG0053_wonder_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694020506/IMAG0053_wonder_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "that shit it for the birds...she was pigeon toed.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:42 +0000", "from_user": "harvardjames", "from_user_id": 85362602, "from_user_id_str": "85362602", "from_user_name": "James Harvard", "geo": null, "id": 148836418779742200, "id_str": "148836418779742208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1495426815/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1495426815/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "'Today's prize is perfect for anyone who want to keep nocturnal predatory birds warm on a cold night: it's this heated owl-rail.' #ISIHAC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:41 +0000", "from_user": "channyRICH", "from_user_id": 133986190, "from_user_id_str": "133986190", "from_user_name": "Chantice Richardson", "geo": null, "id": 148836416590319600, "id_str": "148836416590319616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688368713/p20111211-233705_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688368713/p20111211-233705_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "playing angry birds , this shit addicting !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:38 +0000", "from_user": "Matt_Omega_", "from_user_id": 41843733, "from_user_id_str": "41843733", "from_user_name": "muhanguzi omega", "geo": null, "id": 148836401633443840, "id_str": "148836401633443840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701921338/IMG00569-20111219-1343_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701921338/IMG00569-20111219-1343_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@Kanyenyeri_ go drink..then go home..see, two birds with one shot", "to_user": "Kanyenyeri_", "to_user_id": 224786739, "to_user_id_str": "224786739", "to_user_name": "Michele Munyabagisha", "in_reply_to_status_id": 148831038209134600, "in_reply_to_status_id_str": "148831038209134592"}, +{"created_at": "Mon, 19 Dec 2011 18:45:37 +0000", "from_user": "dakoksnr", "from_user_id": 237169341, "from_user_id_str": "237169341", "from_user_name": "OluwaDakok Snr", "geo": null, "id": 148836399540486140, "id_str": "148836399540486144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695279892/IMG01745-20111215-1027_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695279892/IMG01745-20111215-1027_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Birdz as in?\"@drewhizzy: @dakoksnr attention, how many birds did u kill today?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:36 +0000", "from_user": "lewis_aldridge", "from_user_id": 306701389, "from_user_id_str": "306701389", "from_user_name": "Lewis Aldridge", "geo": null, "id": 148836396457660400, "id_str": "148836396457660416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1660800523/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660800523/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I bet @chrisbrown loves listening to take you down whilst smashing birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:36 +0000", "from_user": "_av0cado", "from_user_id": 106180985, "from_user_id_str": "106180985", "from_user_name": "Carly Hamilton", "geo": null, "id": 148836393853009920, "id_str": "148836393853009920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1627861118/yay_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627861118/yay_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "theres a lyer bird outside my window, theyre the birds that imitate all other birds, its amazing!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:36 +0000", "from_user": "karinasoclassy", "from_user_id": 333578699, "from_user_id_str": "333578699", "from_user_name": "Karina Teresa", "geo": null, "id": 148836393706201100, "id_str": "148836393706201088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1689509152/nnj8b_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689509152/nnj8b_normal.jpg", "source": "<a href="http://stone.com/Twittelator" rel="nofollow">Twittelator</a>", "text": "\"!!!Birds of a feather Biatch!!!\" /via @CallmeHAIRSHOW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:33 +0000", "from_user": "FRD_KREW", "from_user_id": 306342571, "from_user_id_str": "306342571", "from_user_name": "FRD KREW ", "geo": null, "id": 148836383878950900, "id_str": "148836383878950913", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1371270478/FRD_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1371270478/FRD_logo_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Photo: gamefreaksnz: http://t.co/9KtC2iH2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:33 +0000", "from_user": "CaptinCrunch_", "from_user_id": 180419526, "from_user_id_str": "180419526", "from_user_name": "Captain Amb\\uE335", "geo": null, "id": 148836383795056640, "id_str": "148836383795056641", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686050002/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686050002/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I bet you Amb won't sleep cause imma put the heat to ya beak you birds like tweet tweet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:32 +0000", "from_user": "HoMoMuSicJuNkiE", "from_user_id": 47436685, "from_user_id_str": "47436685", "from_user_name": "I RoQ R@yn3bOws", "geo": null, "id": 148836379898544130, "id_str": "148836379898544128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692427504/befunky_artwork_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692427504/befunky_artwork_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Smgdh....birds of a feather...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:31 +0000", "from_user": "SYLVIABUBBLE", "from_user_id": 258613309, "from_user_id_str": "258613309", "from_user_name": "SYLVIA ", "geo": null, "id": 148836374802468860, "id_str": "148836374802468864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1638021376/302533_290440094312085_121638317858931_993804_202961968_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638021376/302533_290440094312085_121638317858931_993804_202961968_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Story of my life bro RT @JORDANNFLEMING: Fucking birds flying around islington station almost flew into my head -___-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:30 +0000", "from_user": "Pretty95Pink", "from_user_id": 291526231, "from_user_id_str": "291526231", "from_user_name": "Markia Marie", "geo": null, "id": 148836371270860800, "id_str": "148836371270860800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693035012/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693035012/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@ImPayneYOLO yea you right. So let's stop the arguing end this on a good note b/c this shit for the birds :)", "to_user": "ImPayneYOLO", "to_user_id": 274736123, "to_user_id_str": "274736123", "to_user_name": "\\u2714 Verified ", "in_reply_to_status_id": 148835692393414660, "in_reply_to_status_id_str": "148835692393414656"}, +{"created_at": "Mon, 19 Dec 2011 18:45:30 +0000", "from_user": "_tombarker", "from_user_id": 20074818, "from_user_id_str": "20074818", "from_user_name": "Tom Barker", "geo": null, "id": 148836369899327500, "id_str": "148836369899327488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1673745114/Picture_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673745114/Picture_2_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "And that fact I've met the 2 chinese birds once I can't imagine them coming in at 4am...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:30 +0000", "from_user": "ImInMonmouth", "from_user_id": 65162017, "from_user_id_str": "65162017", "from_user_name": "I'm In Monmouth", "geo": null, "id": 148836369735745540, "id_str": "148836369735745539", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1388928458/Button_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1388928458/Button_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#socialmedia These Festive Angry Birds Decorations Are Really An Fun Interactive Game http://t.co/aTbkifz8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:25 +0000", "from_user": "TomRoche15", "from_user_id": 404313433, "from_user_id_str": "404313433", "from_user_name": "Tom Roche", "geo": null, "id": 148836347828899840, "id_str": "148836347828899840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1664715864/........_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664715864/........_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "On new years eve I might just take a loaf of bread to a pond and rave with the ducks, then I can go into 2012 surrounded by birds #Player", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:23 +0000", "from_user": "Kareendmmg", "from_user_id": 426262455, "from_user_id_str": "426262455", "from_user_name": "Kareen Sicari", "geo": null, "id": 148836341323538430, "id_str": "148836341323538432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668798646/LLCM-2128_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668798646/LLCM-2128_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@rubencej Go get Pigeon Palooza (the next angry birds)- it's in Android Mktplce - should be in App Store soon.", "to_user": "rubencej", "to_user_id": 269837410, "to_user_id_str": "269837410", "to_user_name": "Rub\\u00E9n Ceja", "in_reply_to_status_id": 148830028728250370, "in_reply_to_status_id_str": "148830028728250368"}, +{"created_at": "Mon, 19 Dec 2011 18:45:22 +0000", "from_user": "RaulCortejoso", "from_user_id": 147369999, "from_user_id_str": "147369999", "from_user_name": "Ra\\u00FAl Cortejoso L\\u00F3pez", "geo": null, "id": 148836335594127360, "id_str": "148836335594127360", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1640071848/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640071848/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @valladolor: \"Angry Birds Las Delicias\" en tu App Store, consiste en lanzar trozos de chatarra y cobre a Monchines, nunca les matas, se lo quedan todo.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:22 +0000", "from_user": "manunaslandia", "from_user_id": 82147820, "from_user_id_str": "82147820", "from_user_name": "Emanuelle", "geo": null, "id": 148836335187275780, "id_str": "148836335187275776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702612860/a_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702612860/a_normal.JPG", "source": "<a href="http://twitpic.com" rel="nofollow">Twitpic</a>", "text": "angry birds http://t.co/QpaRtQvR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:22 +0000", "from_user": "bonesizzle", "from_user_id": 428368210, "from_user_id_str": "428368210", "from_user_name": "chris webster", "geo": null, "id": 148836334335827970, "id_str": "148836334335827968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701034897/IMG00144-20110426-1848_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701034897/IMG00144-20110426-1848_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Just illin listenin to \"the birds\" evil ebenezer. Man CoastPeakStudios is dope!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:21 +0000", "from_user": "OJPhilly", "from_user_id": 222161827, "from_user_id_str": "222161827", "from_user_name": "OJ Philly", "geo": null, "id": 148836332679069700, "id_str": "148836332679069696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694971079/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694971079/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@BlitzChics The Birds waited until now to rally\\u2026Please bring back the NY Sack Exchange from the 80s for this one. GET SHE-LI!!!", "to_user": "BlitzChics", "to_user_id": 137027648, "to_user_id_str": "137027648", "to_user_name": "Shawn", "in_reply_to_status_id": 148834256796389380, "in_reply_to_status_id_str": "148834256796389376"}, +{"created_at": "Mon, 19 Dec 2011 18:45:17 +0000", "from_user": "nialldevittSMI", "from_user_id": 113141293, "from_user_id_str": "113141293", "from_user_name": "Niall Devitt", "geo": null, "id": 148836315864117250, "id_str": "148836315864117248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1369997226/Niall_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1369997226/Niall_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @dmigroup These Festive Angry Birds Decorations Are Really An Fun Interactive Game http://t.co/EEao2q2K", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:16 +0000", "from_user": "Mylifeofart1", "from_user_id": 315315075, "from_user_id_str": "315315075", "from_user_name": "MyLifeofArt", "geo": null, "id": 148836310327623680, "id_str": "148836310327623680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1391507497/Blueprint_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1391507497/Blueprint_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "This is a #Photo of the #Sky full of #Seagulls-#Birds\\thttp://t.co/g0Ulq28G", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:16 +0000", "from_user": "Ontal92", "from_user_id": 225540330, "from_user_id_str": "225540330", "from_user_name": "Daniel Ontalvilla", "geo": null, "id": 148836309648150530, "id_str": "148836309648150528", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1669366122/Manucho-avi_n-_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669366122/Manucho-avi_n-_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @valladolor: \"Angry Birds Las Delicias\" en tu App Store, consiste en lanzar trozos de chatarra y cobre a Monchines, nunca les matas, se lo quedan todo.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:14 +0000", "from_user": "HattieTigerBoom", "from_user_id": 20816263, "from_user_id_str": "20816263", "from_user_name": "Hattie Crocker", "geo": null, "id": 148836301871919100, "id_str": "148836301871919104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1629236940/185485_10100138537064408_199701172_51448162_138203_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629236940/185485_10100138537064408_199701172_51448162_138203_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @adamtmason: I was hoping for two birds with one stone when i saw Kaiser Chiefs trending underneath Kim Jong.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:13 +0000", "from_user": "N0RMALIDADES", "from_user_id": 303518822, "from_user_id_str": "303518822", "from_user_name": "NORMALIDADES", "geo": null, "id": 148836298256416770, "id_str": "148836298256416768", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1365216810/cats_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1365216810/cats_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "P\\u00F4neis Malditos? Por que n\\u00E3o Angry Birds Malditos? #BigFollow: http://t.co/q9c2h7GM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:11 +0000", "from_user": "bookcheapcruise", "from_user_id": 333123919, "from_user_id_str": "333123919", "from_user_name": "Best Cruise Deals", "geo": null, "id": 148836290467594240, "id_str": "148836290467594240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1436055145/cruise-twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1436055145/cruise-twitter_normal.png", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "Exotic Birds on remote island preservations. Book a cruise and see the world at it's best http://t.co/fV8hKMpX #birdwatchers @wefollow", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:09 +0000", "from_user": "ohjunkitsemily", "from_user_id": 25588544, "from_user_id_str": "25588544", "from_user_name": "Emily Rose", "geo": null, "id": 148836281860886530, "id_str": "148836281860886529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1676624409/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676624409/image_normal.jpg", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "I just finished all my levels in Angry Birds...#nowwhat?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:09 +0000", "from_user": "Snucumz", "from_user_id": 136750996, "from_user_id_str": "136750996", "from_user_name": "Kea ", "geo": null, "id": 148836281416290300, "id_str": "148836281416290305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693496908/Temba-20111204-00931_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693496908/Temba-20111204-00931_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Lol first time on Twitter today ... Now that is unusual .. Good evening twit birds \\u2665...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:08 +0000", "from_user": "LBiggane", "from_user_id": 430163508, "from_user_id_str": "430163508", "from_user_name": "LaurenBiggane", "geo": null, "id": 148836278283145200, "id_str": "148836278283145217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696389337/166949_2801364790998_1164925317_33134225_1722883347_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696389337/166949_2801364790998_1164925317_33134225_1722883347_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "There's so many birds and I'm just a little bug @KevinNegDB11", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:08 +0000", "from_user": "ThaWorst_Skinny", "from_user_id": 431969686, "from_user_id_str": "431969686", "from_user_name": "Quezzzzzzzzzzzzz;)", "geo": null, "id": 148836276584460300, "id_str": "148836276584460289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702347200/VgHq8GzQ_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702347200/VgHq8GzQ_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Incorrect verbs, irks my moms nerves shes a language teacher, who taught & song to birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:05 +0000", "from_user": "GrandeWish", "from_user_id": 282827297, "from_user_id_str": "282827297", "from_user_name": "se\\u00F1ora INCREIBLE", "geo": null, "id": 148836265276608500, "id_str": "148836265276608512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686144804/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686144804/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Latin_luver 4 calling birds:]", "to_user": "Latin_luver", "to_user_id": 303338210, "to_user_id_str": "303338210", "to_user_name": "Paul ", "in_reply_to_status_id": 148835297512275970, "in_reply_to_status_id_str": "148835297512275968"}, +{"created_at": "Mon, 19 Dec 2011 18:45:04 +0000", "from_user": "JustEstrell", "from_user_id": 274260445, "from_user_id_str": "274260445", "from_user_name": "Estrell Young ", "geo": null, "id": 148836262961352700, "id_str": "148836262961352704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1292140539/All_i_got_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1292140539/All_i_got_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster</a>", "text": "I ain't got nuffin against deaf people but long ass conversations w/ interpreters are 4 the birds! (I'm sorry sir cud u repeat that? Damn)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:04 +0000", "from_user": "Justbirds1", "from_user_id": 291680688, "from_user_id_str": "291680688", "from_user_name": "Bev", "geo": null, "id": 148836259991781380, "id_str": "148836259991781377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1335631073/5261855304_0f68f9ba91_m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335631073/5261855304_0f68f9ba91_m_normal.jpg", "source": "<a href="http://www.twaitter.com" rel="nofollow">Twaitter</a>", "text": "Whoosh! http://t.co/BhlVvwl1 #birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:45:04 +0000", "from_user": "Justbirds1", "from_user_id": 291680688, "from_user_id_str": "291680688", "from_user_name": "Bev", "geo": null, "id": 148836259991781380, "id_str": "148836259991781377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1335631073/5261855304_0f68f9ba91_m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335631073/5261855304_0f68f9ba91_m_normal.jpg", "source": "<a href="http://www.twaitter.com" rel="nofollow">Twaitter</a>", "text": "Whoosh! http://t.co/BhlVvwl1 #birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:03 +0000", "from_user": "csulfarro", "from_user_id": 17798577, "from_user_id_str": "17798577", "from_user_name": "Craig", "geo": null, "id": 148836256061722620, "id_str": "148836256061722625", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1361171381/IMG00171-20100223-2351_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1361171381/IMG00171-20100223-2351_normal.jpg", "source": "<a href="http://www.webstore.com/" rel="nofollow">Webstore.com</a>", "text": "I'm selling 'M.C. Escher iPad 2 Fabric Wrapped Case - Plane with Birds' Click to see http://t.co/Yy1Pr32H", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:01 +0000", "from_user": "ItsChemiztry", "from_user_id": 18756974, "from_user_id_str": "18756974", "from_user_name": "Greg", "geo": null, "id": 148836247643766800, "id_str": "148836247643766784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1560904738/checkin2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1560904738/checkin2_normal.jpg", "source": "<a href="http://www.handmark.com" rel="nofollow">TweetCaster for iOS</a>", "text": "RT @JasmineGiselle: Early birds gets the worm - second mouse gets the cheese!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:57 +0000", "from_user": "valladolor", "from_user_id": 288644954, "from_user_id_str": "288644954", "from_user_name": "Valladolor", "geo": null, "id": 148836233035005950, "id_str": "148836233035005952", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1655990465/rrrrrr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655990465/rrrrrr_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"Angry Birds Las Delicias\" en tu App Store, consiste en lanzar trozos de chatarra y cobre a Monchines, nunca les matas, se lo quedan todo.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:56 +0000", "from_user": "JaackieRamireez", "from_user_id": 412006936, "from_user_id_str": "412006936", "from_user_name": "\\u30B8\\u30E3\\u30C3\\u30AD\\u30FC (:", "geo": null, "id": 148836227506901000, "id_str": "148836227506900992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699532387/kMlkM9UJ_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699532387/kMlkM9UJ_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I deleted my Angry Birds app because I couldn't pass level 7 so I got mad. I'm a failure.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:56 +0000", "from_user": "HappyBeeDayProd", "from_user_id": 139911919, "from_user_id_str": "139911919", "from_user_name": "HappyBirthdayProdigy", "geo": null, "id": 148836227070705660, "id_str": "148836227070705664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698316586/JJlMzR3N_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698316586/JJlMzR3N_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "OH EM GEEEEE!!!! Angry Birds Fruit Gummies!.!!!? I'M BUYING EM ALL OFF THA SHELF!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:53 +0000", "from_user": "junialdi1", "from_user_id": 416117623, "from_user_id_str": "416117623", "from_user_name": "junialdi", "geo": null, "id": 148836213032357900, "id_str": "148836213032357889", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Permainan gue tuh RT @irmanovianti20: Point blankRT @GueMauTanya: Pilih (angry birds/ayo dance/mafia wars/point blank)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:48 +0000", "from_user": "jessiejayjay13", "from_user_id": 279897094, "from_user_id_str": "279897094", "from_user_name": "Jessica Johnson", "geo": null, "id": 148836193709203460, "id_str": "148836193709203457", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1584525279/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584525279/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "That one mothafuckin pig that always stays alive in Angry Birds. Ahhhhh! <<<<<<<<", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:42 +0000", "from_user": "eurooscar", "from_user_id": 46246482, "from_user_id_str": "46246482", "from_user_name": "euro oscar", "geo": null, "id": 148836169721987070, "id_str": "148836169721987072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1678709098/eurooscar22_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678709098/eurooscar22_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "224 #pics: #leo, #cheeta, #elephant, #monkey, rhino, #bear, zebra, #birds. http://t.co/tGFEIECd - - - #Cats (176 pics): http://t.co/41LOKGPc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:42 +0000", "from_user": "chavolo_7", "from_user_id": 402651999, "from_user_id_str": "402651999", "from_user_name": "Javier Mart\\u00EDn", "geo": null, "id": 148836167951974400, "id_str": "148836167951974400", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1617034973/3G4htMCX_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1617034973/3G4htMCX_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Oscar_delapisa tu sin el angry birds friki asqueroso!", "to_user": "Oscar_delapisa", "to_user_id": 268514741, "to_user_id_str": "268514741", "to_user_name": "\\u00D3scar de la Pisa ", "in_reply_to_status_id": 148831907390570500, "in_reply_to_status_id_str": "148831907390570496"}, +{"created_at": "Mon, 19 Dec 2011 18:44:39 +0000", "from_user": "TobeyGorilla", "from_user_id": 441060165, "from_user_id_str": "441060165", "from_user_name": "Tobey Monkey Monster", "geo": null, "id": 148836157571072000, "id_str": "148836157571072000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702565630/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702565630/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@tobeymonster WITH AFRICAN BIRDS", "to_user": "tobeymonster", "to_user_id": 227568015, "to_user_id_str": "227568015", "to_user_name": "Tobey | Lady Gaga"}, +{"created_at": "Mon, 19 Dec 2011 18:44:36 +0000", "from_user": "KymryGroup", "from_user_id": 171559621, "from_user_id_str": "171559621", "from_user_name": "MardiWelchDickinson", "geo": null, "id": 148836143503384580, "id_str": "148836143503384577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1386516178/K_Logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1386516178/K_Logo_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "NEW Article Chris Bosak wrote on Westport CT CBC Time to count the birds: Local birdwatchers tackle annual census. \\rhttp://t.co/a7kCOn2s", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:35 +0000", "from_user": "MardiWD", "from_user_id": 144162954, "from_user_id_str": "144162954", "from_user_name": "MardiDickinson", "geo": null, "id": 148836139967582200, "id_str": "148836139967582211", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1464602793/019O9214_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1464602793/019O9214_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "NEW Article Chris Bosak wrote on Westport CT CBC Time to count the birds: Local birdwatchers tackle annual census. \\rhttp://t.co/XXAABcFv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:27 +0000", "from_user": "lindseyp1998", "from_user_id": 163421998, "from_user_id_str": "163421998", "from_user_name": "Lindsey Paters", "geo": null, "id": 148836104471195650, "id_str": "148836104471195648", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1673337113/Omdat_het_kan_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673337113/Omdat_het_kan_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Angry birds aan het spelen :d", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:26 +0000", "from_user": "SayWatCmarie88", "from_user_id": 104700477, "from_user_id_str": "104700477", "from_user_name": " \\u2605\\u2665CMarie\\u2665\\u2605", "geo": null, "id": 148836100520153100, "id_str": "148836100520153088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681175209/Camera_Effects-1323285064143_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681175209/Camera_Effects-1323285064143_normal.jpeg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Im addicted to angry birds seasons", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:25 +0000", "from_user": "softmutt", "from_user_id": 28555016, "from_user_id_str": "28555016", "from_user_name": "Vanessa Morriss", "geo": null, "id": 148836098733375500, "id_str": "148836098733375488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685580703/a62af43c-f408-42cf-bdef-9ab9b88d4736_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685580703/a62af43c-f408-42cf-bdef-9ab9b88d4736_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@Placepot Yes, all bird feed has shot up in price. Peanuts in particular. Birds round here demand I feed 'em. #birds #rspb", "to_user": "Placepot", "to_user_id": 28132444, "to_user_id_str": "28132444", "to_user_name": "Wayne the Gardener", "in_reply_to_status_id": 148835051138842620, "in_reply_to_status_id_str": "148835051138842624"}, +{"created_at": "Mon, 19 Dec 2011 18:44:23 +0000", "from_user": "Rozaayyy_", "from_user_id": 309606037, "from_user_id_str": "309606037", "from_user_name": "S.T.E.P.H", "geo": null, "id": 148836086964174850, "id_str": "148836086964174848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687895547/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687895547/image_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", "text": "Miss me wit the bullshit..... I let dat shit fly wit the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:20 +0000", "from_user": "SoftyxGunz", "from_user_id": 441080396, "from_user_id_str": "441080396", "from_user_name": "Softyx Gunz", "geo": null, "id": 148836076260306940, "id_str": "148836076260306944", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702587545/384389_113231412127255_100003211911936_66687_1480263212_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702587545/384389_113231412127255_100003211911936_66687_1480263212_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "P\\u00F4neis Malditos? Por que n\\u00E3o Angry Birds Malditos? #MaisFollowers: http://t.co/5vl0Ddpm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:18 +0000", "from_user": "passionatebirdr", "from_user_id": 286818361, "from_user_id_str": "286818361", "from_user_name": "Bill Saur", "geo": null, "id": 148836066156220400, "id_str": "148836066156220416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1322694459/headshotWalgCrop2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1322694459/headshotWalgCrop2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Ivory-Billed Woodpecker, from \"Birds of America,\" 1829 \\u2666 Framed \\u2666 http://t.co/0x2h4FR7 #art #birds #giftideas", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:17 +0000", "from_user": "TexasEcoFlower", "from_user_id": 213065208, "from_user_id_str": "213065208", "from_user_name": "Cynthia Cable", "geo": null, "id": 148836062268112900, "id_str": "148836062268112897", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1162057944/000001742719XS_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1162057944/000001742719XS_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Bad (and good) news for Costa Rican farmers: A 10-year walking census of Costa Rican birds proves that intensive... http://t.co/NzQbzel4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:16 +0000", "from_user": "hkmart3", "from_user_id": 34178325, "from_user_id_str": "34178325", "from_user_name": "Kim Martin", "geo": null, "id": 148836060292591600, "id_str": "148836060292591618", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/180279784/HKMface_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/180279784/HKMface_normal.jpg", "source": "<a href="http://www.youversion.com" rel="nofollow">Bible</a>", "text": "7If you want to learn,\\n then go and ask\\n the wild animals and the birds,\\n \\n 8the flowers and the fish. \\n 9Any o\\u2026 http://t.co/aoWCYtzz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:16 +0000", "from_user": "Particiamso", "from_user_id": 426263721, "from_user_id_str": "426263721", "from_user_name": "Particia Brun", "geo": null, "id": 148836057968947200, "id_str": "148836057968947200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668801396/LLCM-4961_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668801396/LLCM-4961_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@TyranasourusTom Have to try out Pigeon Palooza (the next angry birds)- it's live in Android Mktplce - will be in App Store in a few days.", "to_user": "TyranasourusTom", "to_user_id": 346320012, "to_user_id_str": "346320012", "to_user_name": "Thomas Robinson", "in_reply_to_status_id": 148822231789735940, "in_reply_to_status_id_str": "148822231789735936"}, +{"created_at": "Mon, 19 Dec 2011 18:44:13 +0000", "from_user": "mworch", "from_user_id": 117620953, "from_user_id_str": "117620953", "from_user_name": "Matthias Worch", "geo": null, "id": 148836047214751740, "id_str": "148836047214751744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1661535356/mworch_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661535356/mworch_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@eingy We use a mixture of Angry Birds and Elmo's ABCs.", "to_user": "eingy", "to_user_id": 9819432, "to_user_id_str": "9819432", "to_user_name": "eingy", "in_reply_to_status_id": 148834696401399800, "in_reply_to_status_id_str": "148834696401399808"}, +{"created_at": "Mon, 19 Dec 2011 18:44:13 +0000", "from_user": "fabs_alverca", "from_user_id": 63546671, "from_user_id_str": "63546671", "from_user_name": "Fabricio Alverca", "geo": null, "id": 148836046669488130, "id_str": "148836046669488129", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1559419934/eu_2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1559419934/eu_2_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "vou jogar mais um pouquinho de angry birds ent\\u00E3o", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:12 +0000", "from_user": "truepyt", "from_user_id": 242986627, "from_user_id_str": "242986627", "from_user_name": "Inhale My Tweets ;)", "geo": null, "id": 148836044274544640, "id_str": "148836044274544641", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1684022825/meme_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684022825/meme_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Can't get pass this level in angry birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:12 +0000", "from_user": "MrKn0wItAll23", "from_user_id": 26766225, "from_user_id_str": "26766225", "from_user_name": "Cap'M", "geo": null, "id": 148836043364376580, "id_str": "148836043364376576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1569747331/296581_10150783340800527_646380526_20729233_4655722_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1569747331/296581_10150783340800527_646380526_20729233_4655722_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "Cold as shit out. Why are there birds out let alone BIRD SHIT on my window smdh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:12 +0000", "from_user": "TyloMonroe", "from_user_id": 249938852, "from_user_id_str": "249938852", "from_user_name": "Tylo Monroe", "geo": null, "id": 148836042630373380, "id_str": "148836042630373376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1683771292/vXn2GivH_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683771292/vXn2GivH_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "My moms been playing angry birds for days..ughhh.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:07 +0000", "from_user": "Eviahxa", "from_user_id": 440171846, "from_user_id_str": "440171846", "from_user_name": "Evia Antal", "geo": null, "id": 148836020866121730, "id_str": "148836020866121728", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700479650/large_KMRMBYREHLLTFBT_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700479650/large_KMRMBYREHLLTFBT_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Birds - Wild Turkey Gobbler - Tile Pen Holders-5 inch tile pen holder: Wild Turkey Gobbler Tile Pen Holder is me... http://t.co/oTxId1uv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:05 +0000", "from_user": "wildaboutsussex", "from_user_id": 74112925, "from_user_id_str": "74112925", "from_user_name": "Rob Yarham", "geo": null, "id": 148836013026967550, "id_str": "148836013026967552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696661331/e079cee7-3c17-47d9-bcc8-b488eda62605_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696661331/e079cee7-3c17-47d9-bcc8-b488eda62605_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @charliemoores: Can't yet find words to describe seeing 13 SpbSands at @WWTslimbridge today. Such perfect birds. Am working on it tho...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:01 +0000", "from_user": "ZoZo1704", "from_user_id": 375627050, "from_user_id_str": "375627050", "from_user_name": "Zoe Smith", "geo": null, "id": 148835997700984830, "id_str": "148835997700984832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670132087/me_and_scotttt_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670132087/me_and_scotttt_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "home alone, steps on very loud, playing angry birds - my definition of perfect!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:58 +0000", "from_user": "Pansyrap", "from_user_id": 426265387, "from_user_id_str": "426265387", "from_user_name": "Pansy Rickey", "geo": null, "id": 148835983494885380, "id_str": "148835983494885376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668806319/LLCM-4703_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668806319/LLCM-4703_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ShaRmdjn Hey, download Pigeon Palooza (the next angry birds)- it is live in Android Mktplce - will be in App Store in a few days.", "to_user": "ShaRmdjn", "to_user_id": 103707774, "to_user_id_str": "103707774", "to_user_name": "Shamim Rmdjn", "in_reply_to_status_id": 148828430870380540, "in_reply_to_status_id_str": "148828430870380544"}, +{"created_at": "Mon, 19 Dec 2011 18:43:57 +0000", "from_user": "amberemma1909", "from_user_id": 146931633, "from_user_id_str": "146931633", "from_user_name": "Amberr'E.. ", "geo": null, "id": 148835979174748160, "id_str": "148835979174748161", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702601127/Beemster-20111218-00485_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702601127/Beemster-20111218-00485_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Papa speelt angry birds op zijn maccie:$", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:56 +0000", "from_user": "semenov2020", "from_user_id": 152658078, "from_user_id_str": "152658078", "from_user_name": "Alexander Semenov", "geo": null, "id": 148835977580904450, "id_str": "148835977580904448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "Angry Birds officially coming in-store in Russia. Finally. Been a while.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:55 +0000", "from_user": "Kristen__Myers", "from_user_id": 341827056, "from_user_id_str": "341827056", "from_user_name": "Kristen Myers", "geo": null, "id": 148835970706444300, "id_str": "148835970706444288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699244112/111209-182252_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699244112/111209-182252_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Great.. my fear of birds Is getting bigger.. #letsnottalkaboutthis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:51 +0000", "from_user": "DauiCudi", "from_user_id": 89416696, "from_user_id_str": "89416696", "from_user_name": "Daui Bitature", "geo": null, "id": 148835954260582400, "id_str": "148835954260582400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1588959826/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1588959826/image_normal.jpg", "source": "<a href="http://messaging.nokia.com/site/main.do" rel="nofollow"> Ovi by Nokia </a>", "text": "I can bet the ipads the ntv news anchors have are off or on pause after playing angry birds!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:50 +0000", "from_user": "csulfarro", "from_user_id": 17798577, "from_user_id_str": "17798577", "from_user_name": "Craig", "geo": null, "id": 148835952347971600, "id_str": "148835952347971585", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1361171381/IMG00171-20100223-2351_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1361171381/IMG00171-20100223-2351_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Check Out M.C. Escher iPad 2 Fabric Wrapped Case - Plane with Birds at http://t.co/YGFKzeNi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:50 +0000", "from_user": "juliito77", "from_user_id": 280224612, "from_user_id_str": "280224612", "from_user_name": "Julio Poll\\u00E1n", "geo": null, "id": 148835951047749630, "id_str": "148835951047749633", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1661458028/Sin_t_tulo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661458028/Sin_t_tulo_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Jugando al angry birds con @JesusNikki y @RaulGonzalez", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:50 +0000", "from_user": "AlexG3293", "from_user_id": 116567114, "from_user_id_str": "116567114", "from_user_name": "Alex Giordano", "geo": null, "id": 148835949248393200, "id_str": "148835949248393217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1571022725/saraaah_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1571022725/saraaah_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "My father is ADDICTED to Angry Birds #surprisingchangessincethanksgiving #thingsIneverthoughtIdsay", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:50 +0000", "from_user": "zoombiejoker", "from_user_id": 46970934, "from_user_id_str": "46970934", "from_user_name": "joker do batman", "geo": null, "id": 148835948698935300, "id_str": "148835948698935296", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1604996503/l_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1604996503/l_copy_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "s\\u00F3 faltam dois abacaxis pra eu completar os abacaxis do angry birds mas eu nao acho", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:49 +0000", "from_user": "511anna80", "from_user_id": 281510563, "from_user_id_str": "281510563", "from_user_name": "\\u3042\\u3093\\u306A", "geo": null, "id": 148835946295607300, "id_str": "148835946295607296", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://www.touchlive.jp/" rel="nofollow">JUNGLE BIRDS</a>", "text": "\\u3010JUNGLE BIRDS\\uFF1APlayer\\uFF1A337350pts #touchlive4i http://t.co/dITgIE5M \\u3011", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:48 +0000", "from_user": "MishanQue", "from_user_id": 91154661, "from_user_id_str": "91154661", "from_user_name": "Mishan Q. ", "geo": null, "id": 148835943548334080, "id_str": "148835943548334080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/623099786/images-21_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/623099786/images-21_normal.jpeg", "source": "<a href="http://www.visibli.com" rel="nofollow">Visibli</a>", "text": "Angry Birds\\u2019 \\u2018Wreck the Halls\\u2019 cartoon: Fun on the slopes, but I miss balloon bird http://t.co/VlIBMIW4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:47 +0000", "from_user": "Safadone", "from_user_id": 321765168, "from_user_id_str": "321765168", "from_user_name": "Jefferson felipe", "geo": null, "id": 148835936522878980, "id_str": "148835936522878977", "iso_language_code": "is", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701187780/Foto-0673__3__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701187780/Foto-0673__3__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Np Christina Aguilera - Birds of Prey", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:45 +0000", "from_user": "Sheld", "from_user_id": 14743926, "from_user_id_str": "14743926", "from_user_name": "Shel", "geo": null, "id": 148835928167817200, "id_str": "148835928167817216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1646517512/Sheld_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646517512/Sheld_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "The tree is up and it's in the front window. That's 2 birds one stone in my book.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:43 +0000", "from_user": "rlbocean", "from_user_id": 348857014, "from_user_id_str": "348857014", "from_user_name": "Riki Beck", "geo": null, "id": 148835921154932740, "id_str": "148835921154932736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1488829432/Dolphin_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1488829432/Dolphin_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @BBCNature: Some of the world's rarest birds have been moved to a special aviary @WWTslimbridge watch a film about their journey: http://t.co/maWMaPp1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:42 +0000", "from_user": "TRAPATHON1700", "from_user_id": 430561100, "from_user_id_str": "430561100", "from_user_name": "uptown_sour(~__~)", "geo": null, "id": 148835915165483000, "id_str": "148835915165483008", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1678709446/UPTOWN3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678709446/UPTOWN3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "2 #BIRDS N DA \"KITCHEN\" 1BRICK 1DESERT EAGLE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:34 +0000", "from_user": "Num1ChynaDoll", "from_user_id": 135648076, "from_user_id_str": "135648076", "from_user_name": "1TWEETNassBITCH ", "geo": null, "id": 148835885155233800, "id_str": "148835885155233792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668456818/profile_image_1322774905457_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668456818/profile_image_1322774905457_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "RT @G__MONI: RT @Num1ChynaDoll n ima need @G__MONI's Angry Birds t-shirt for Christmas too LLs \\u00AB ha!..ill dm u the location", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:32 +0000", "from_user": "qt_kt_lee", "from_user_id": 44605998, "from_user_id_str": "44605998", "from_user_name": "Katie Street", "geo": null, "id": 148835875156000770, "id_str": "148835875156000768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1496299785/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1496299785/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Birds cheeping at 5:30am #wideawake", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:30 +0000", "from_user": "PablitoNoguez", "from_user_id": 34843470, "from_user_id_str": "34843470", "from_user_name": "Pablito Noguez", "geo": null, "id": 148835867434291200, "id_str": "148835867434291200", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1576778203/PablitoNoguez_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576778203/PablitoNoguez_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "La nueva historia de Angry Birds!!! (via @elrompepepas ) http://t.co/ExJA9w31", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:29 +0000", "from_user": "mjlovely99", "from_user_id": 356719201, "from_user_id_str": "356719201", "from_user_name": "Mary-jayne", "geo": null, "id": 148835862845730800, "id_str": "148835862845730816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701047703/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701047703/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Just welcomed my mum to the world of technology..... She's been playing on angry birds for the past half hour \\uD83D\\uDE01", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:29 +0000", "from_user": "ZoeTorro", "from_user_id": 433833205, "from_user_id_str": "433833205", "from_user_name": "Zoey Torro", "geo": null, "id": 148835862682148860, "id_str": "148835862682148865", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Playing angry birds on a touch pad. It's cool :P", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:28 +0000", "from_user": "gugus8", "from_user_id": 106165879, "from_user_id_str": "106165879", "from_user_name": "Gustavo Mungu\\u00EDa", "geo": null, "id": 148835857967751170, "id_str": "148835857967751169", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1667300114/DSC083722_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667300114/DSC083722_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Angry Birds Movie Trailer | Kontraband http://t.co/ZSERUunp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:28 +0000", "from_user": "DynamiteMiley", "from_user_id": 41088671, "from_user_id_str": "41088671", "from_user_name": "Harry Potter \\uE13D\\uE52D", "geo": null, "id": 148835857393127420, "id_str": "148835857393127424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1675659535/5tumblr_lvqoj25vnO1r6s66vo1_500_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675659535/5tumblr_lvqoj25vnO1r6s66vo1_500_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Why do birds suddenly appear,everytime we are near?just like me,they long to be,close to you.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:27 +0000", "from_user": "Geralyndcf", "from_user_id": 426262070, "from_user_id_str": "426262070", "from_user_name": "Geralyn Aron", "geo": null, "id": 148835852833918980, "id_str": "148835852833918976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668797133/LLCM-1691_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668797133/LLCM-1691_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@adyaliam Go check out Pigeon Palooza (the next angry birds)- it is avail in Android Mktplce - should be in ITunes soon.", "to_user": "adyaliam", "to_user_id": 268418461, "to_user_id_str": "268418461", "to_user_name": "\\u0130layda y\\u0131ld\\u0131r\\u0131m", "in_reply_to_status_id": 148814987517886460, "in_reply_to_status_id_str": "148814987517886464"}, +{"created_at": "Mon, 19 Dec 2011 18:43:24 +0000", "from_user": "Jazzyog", "from_user_id": 19209080, "from_user_id_str": "19209080", "from_user_name": "Adina ", "geo": null, "id": 148835842226520060, "id_str": "148835842226520064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687327101/Photo_on_2011-12-08_at_13.19__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687327101/Photo_on_2011-12-08_at_13.19__2_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@BEEdntgivatweet stop hating thats why the ravens lost you never see steelers fan tweet about them birds", "to_user": "BEEdntgivatweet", "to_user_id": 96624023, "to_user_id_str": "96624023", "to_user_name": "King Bee", "in_reply_to_status_id": 148833463024353280, "in_reply_to_status_id_str": "148833463024353281"}, +{"created_at": "Mon, 19 Dec 2011 18:43:24 +0000", "from_user": "stanleyspotts", "from_user_id": 51471562, "from_user_id_str": "51471562", "from_user_name": "Stanley Spottswood", "geo": null, "id": 148835841526075400, "id_str": "148835841526075392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1489928365/new_twitcon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1489928365/new_twitcon_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "@kaygodd ..too fly for them birds http://t.co/sGUBKyDN", "to_user": "kaygodd", "to_user_id": 174231163, "to_user_id_str": "174231163", "to_user_name": "Kimberly Godfrey"}, +{"created_at": "Mon, 19 Dec 2011 18:43:24 +0000", "from_user": "AnJeeMariee", "from_user_id": 33658180, "from_user_id_str": "33658180", "from_user_name": "Anj \\u270C\\u2764", "geo": null, "id": 148835839957418000, "id_str": "148835839957417984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699589585/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699589585/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "My nana always makin me feed the birds with bread lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:23 +0000", "from_user": "Placepot", "from_user_id": 28132444, "from_user_id_str": "28132444", "from_user_name": "Wayne the Gardener", "geo": null, "id": 148835837608595460, "id_str": "148835837608595456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/543418371/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/543418371/twitterProfilePhoto_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "'Peanut butter' this goes a little way to explaining price hike for #birds ~ http://t.co/ZH5fIiVt #rspb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:22 +0000", "from_user": "VJSE2", "from_user_id": 376090915, "from_user_id_str": "376090915", "from_user_name": "VJSE Team", "geo": null, "id": 148835834295099400, "id_str": "148835834295099392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1646660147/vjse2011Holiday_winner_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646660147/vjse2011Holiday_winner_normal.jpg", "source": "<a href="http://www.DynamicTweets.com" rel="nofollow">Dynamic Tweets</a>", "text": "#vjse2 Vintage #jewelry #laurelburch Vintage Laurel Burch Love Dove Birds by thejewelseeker http://t.co/QgN0XmF7 via @Etsy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:22 +0000", "from_user": "thejewelseeker", "from_user_id": 150931151, "from_user_id_str": "150931151", "from_user_name": "Gayla & Alfred Esch", "geo": null, "id": 148835831598161920, "id_str": "148835831598161920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1419962837/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1419962837/avatar_normal.jpg", "source": "<a href="http://www.DynamicTweets.com" rel="nofollow">Dynamic Tweets</a>", "text": "#vjse2 Vintage #jewelry #laurelburch Vintage Laurel Burch Love Dove Birds by thejewelseeker http://t.co/BEficYVA via @Etsy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:19 +0000", "from_user": "ahdeenahslove", "from_user_id": 347678346, "from_user_id_str": "347678346", "from_user_name": "asdfghjkl :)", "geo": null, "id": 148835818600017920, "id_str": "148835818600017920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1683896040/lB5q0ww2_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683896040/lB5q0ww2_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I are squirrels and birds everywhere, in the middle of December.. how beautiful.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:18 +0000", "from_user": "rdonnalson", "from_user_id": 78296061, "from_user_id_str": "78296061", "from_user_name": "Rene Donnalson", "geo": null, "id": 148835817404645380, "id_str": "148835817404645377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1304339915/P1030136_cropped_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1304339915/P1030136_cropped_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "A #Photo of #Pelicans in the #Fishermen's #Boats-#Birds\\thttp://t.co/1hXWfMq1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:15 +0000", "from_user": "Jannausld", "from_user_id": 426261581, "from_user_id_str": "426261581", "from_user_name": "Janna Cadorette", "geo": null, "id": 148835805299875840, "id_str": "148835805299875840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668795630/LLCM-2162_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668795630/LLCM-2162_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MAdlY_UNiiQUE Ya should go get Pigeon Palooza (the next angry birds)- it is avail in Android Mktplce - will be in App Store in a few days.", "to_user": "MAdlY_UNiiQUE", "to_user_id": 305159899, "to_user_id_str": "305159899", "to_user_name": "Chazah Carter", "in_reply_to_status_id": 148825882298040320, "in_reply_to_status_id_str": "148825882298040321"}, +{"created_at": "Mon, 19 Dec 2011 18:43:13 +0000", "from_user": "charliemoores", "from_user_id": 84286320, "from_user_id_str": "84286320", "from_user_name": "Charlie Moores", "geo": null, "id": 148835795543916540, "id_str": "148835795543916544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691187374/Charlie_Moores_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691187374/Charlie_Moores_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Can't yet find words to describe seeing 13 SpbSands at @WWTslimbridge today. Such perfect birds. Am working on it tho...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:12 +0000", "from_user": "WTFISGOD", "from_user_id": 73286202, "from_user_id_str": "73286202", "from_user_name": "Trish", "geo": null, "id": 148835789898391550, "id_str": "148835789898391553", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1242567200/DSC08917_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1242567200/DSC08917_normal.JPG", "source": "<a href="http://yardsellr.com" rel="nofollow">Yardsellr</a>", "text": "1965 Familiar Birds Garden Birds of America By Collins Jr. #YARDSELLR http://t.co/OotM8F28", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:10 +0000", "from_user": "UKGrower", "from_user_id": 362710434, "from_user_id_str": "362710434", "from_user_name": "UKGrower", "geo": null, "id": 148835781639811070, "id_str": "148835781639811072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.ajaymatharu.com/" rel="nofollow">Tweet Old Post</a>", "text": "Rosewood Naturals Fabulous Fruit Sticks for Birds - \\u00A33.89 http://t.co/H8LBQTfB #birds #fabulous #fruit #naturals #rosewood #sticks", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:05 +0000", "from_user": "Kellehlmh", "from_user_id": 426260155, "from_user_id_str": "426260155", "from_user_name": "Kelle Rayas", "geo": null, "id": 148835761230319600, "id_str": "148835761230319617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668791732/LLCM-1074_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668791732/LLCM-1074_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@DENIISEJx Ya have to get Pigeon Palooza (the next angry birds)- it is launched in Android Mktplce - should be in ITunes in a few days.", "to_user": "DENIISEJx", "to_user_id": 143184301, "to_user_id_str": "143184301", "to_user_name": "Denise", "in_reply_to_status_id": 148835105610285060, "in_reply_to_status_id_str": "148835105610285058"}, +{"created_at": "Mon, 19 Dec 2011 18:43:04 +0000", "from_user": "Burris5000", "from_user_id": 105959881, "from_user_id_str": "105959881", "from_user_name": "Alex Portillo", "geo": null, "id": 148835757723893760, "id_str": "148835757723893760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IM+ Adds Own In-App Messenger \"Beep\", Angry Birds Theme: \"6.1 trillion SMS text messages were sent in 2010. We b... http://t.co/0IXELZTx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:02 +0000", "from_user": "MusikBotTeamspe", "from_user_id": 430937809, "from_user_id_str": "430937809", "from_user_name": "Musik Bot Teamspeak ", "geo": null, "id": 148835749226229760, "id_str": "148835749226229760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1679406222/bot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679406222/bot_normal.jpg", "source": "<a href="http://nowplayingplugin.com/" rel="nofollow">Now Playing</a>", "text": "London Philharmonic Orchestra & Andrew Skeet // Angry Birds: Main Theme", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:02 +0000", "from_user": "__CHOOSEYLover", "from_user_id": 154587051, "from_user_id_str": "154587051", "from_user_name": "CraZy Beautiful;*", "geo": null, "id": 148835748265721860, "id_str": "148835748265721858", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702559709/__CHOOSEYLover_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702559709/__CHOOSEYLover_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @ThsWht_iCallHer: Birds of a feather flock together. Hoes on the same shit chase after the same dick.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:01 +0000", "from_user": "heATE_breezy", "from_user_id": 373070833, "from_user_id_str": "373070833", "from_user_name": "bre - on - uh \\uF8FF", "geo": null, "id": 148835744981598200, "id_str": "148835744981598208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687622324/ad42a64a239b11e1a87612313804ec91_7-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687622324/ad42a64a239b11e1a87612313804ec91_7-1_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @ZayMane23: All that bullshit for da birds, u ain't nothin but a vulture", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:55 +0000", "from_user": "Duckie104", "from_user_id": 38887130, "from_user_id_str": "38887130", "from_user_name": "Duckie johnson", "geo": null, "id": 148835720482656260, "id_str": "148835720482656256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1618662779/QqMHWch5_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618662779/QqMHWch5_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@iiLoveSmooky I see it as killing two birds wit one stone", "to_user": "iiLoveSmooky", "to_user_id": 64088758, "to_user_id_str": "64088758", "to_user_name": "Teajya Way \\u2714"}, +{"created_at": "Mon, 19 Dec 2011 18:42:54 +0000", "from_user": "MissBrownn", "from_user_id": 128885818, "from_user_id_str": "128885818", "from_user_name": "' Miss Brown \\u2661", "geo": null, "id": 148835716674224130, "id_str": "148835716674224128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702357798/IMG01305-20111216-1856_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702357798/IMG01305-20111216-1856_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Angry birds..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:54 +0000", "from_user": "uLoveYouSomeMe", "from_user_id": 231521550, "from_user_id_str": "231521550", "from_user_name": "Kristie Crawford", "geo": null, "id": 148835714073759740, "id_str": "148835714073759744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701483390/4Ec18lXb_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701483390/4Ec18lXb_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "All that bullshit is fa the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:49 +0000", "from_user": "demetria_back", "from_user_id": 177762266, "from_user_id_str": "177762266", "from_user_name": "demetria[\\u2666]lofton", "geo": null, "id": 148835695421693950, "id_str": "148835695421693954", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697641626/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697641626/profile_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @ThsWht_iCallHer: Birds of a feather flock together. Hoes on the same shit chase after the same dick.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:49 +0000", "from_user": "delcotimes", "from_user_id": 74168324, "from_user_id_str": "74168324", "from_user_name": "Delco Times", "geo": null, "id": 148835694838677500, "id_str": "148835694838677504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/416431248/DailyTimes_square_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/416431248/DailyTimes_square_logo_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @PhilHeron: Reid plans to ignore key Giants game before Birds play Dallas - http://t.co/j5AnCPLk http://t.co/PgEPIhJN via @delcotimes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:41 +0000", "from_user": "Naattaaall", "from_user_id": 137642941, "from_user_id_str": "137642941", "from_user_name": "Nattieeeee", "geo": null, "id": 148835662395752450, "id_str": "148835662395752448", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1658935954/IMG-20111126-00074_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658935954/IMG-20111126-00074_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "Errrrr angry birds!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:36 +0000", "from_user": "nik_esco", "from_user_id": 283848457, "from_user_id_str": "283848457", "from_user_name": "Nikhil", "geo": null, "id": 148835640291754000, "id_str": "148835640291753984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680621513/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680621513/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Why do birds suddenly appearrrr, everytimeeeee you are neaarrrrr...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:35 +0000", "from_user": "Yankovich8269ap", "from_user_id": 433379909, "from_user_id_str": "433379909", "from_user_name": "Carlita Yankovich", "geo": null, "id": 148835634709151740, "id_str": "148835634709151744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685038347/18599330321168191_-_smiling_so_happy_-_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685038347/18599330321168191_-_smiling_so_happy_-_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Best-Ever Backyard Birding Tips: Hundreds of Easy Ways to Attract the Birds You Love to Watch (Rodale Organic Ga... http://t.co/5NDnDOnp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:34 +0000", "from_user": "HippiChickiNiki", "from_user_id": 73596168, "from_user_id_str": "73596168", "from_user_name": "Niki Grigsby Princip", "geo": null, "id": 148835633232748540, "id_str": "148835633232748544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1643302272/298848_765407764572_3110955_37872424_1581125378_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643302272/298848_765407764572_3110955_37872424_1581125378_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Angry-Birds Game in Christmas Lights from the Guitar Hero Lights guy - http://t.co/WN23RE3n", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:34 +0000", "from_user": "saintlanta88", "from_user_id": 401455544, "from_user_id_str": "401455544", "from_user_name": "markuia hurd", "geo": null, "id": 148835632272257020, "id_str": "148835632272257024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1667555167/sCw0n5N9_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667555167/sCw0n5N9_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "OOMF NEED TO TAKE HIS ASS TO SLEEP BECAUSE WHEN I GET BACK THAT SHIT IS FOR THE BIRDS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:34 +0000", "from_user": "Mendrala8928lif", "from_user_id": 431494227, "from_user_id_str": "431494227", "from_user_name": "Kam Mendrala", "geo": null, "id": 148835631500496900, "id_str": "148835631500496896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680600764/14018692011159804_miss_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680600764/14018692011159804_miss_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Best-Ever Backyard Birding Tips: Hundreds of Easy Ways to Attract the Birds You Love to Watch (Rodale Organic Ga... http://t.co/MjSfsvJP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:30 +0000", "from_user": "bosskwame", "from_user_id": 73743681, "from_user_id_str": "73743681", "from_user_name": "Kwame", "geo": null, "id": 148835613230112770, "id_str": "148835613230112768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1658502020/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658502020/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "I once cooked pasta and added some birds eye southern fried 100% chicken fillet to it. She seemed to like it.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:29 +0000", "from_user": "reneecars93", "from_user_id": 309299448, "from_user_id_str": "309299448", "from_user_name": "Renee Carsi", "geo": null, "id": 148835611581755400, "id_str": "148835611581755393", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700727000/OsNhVs7R_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700727000/OsNhVs7R_normal", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @MayBachMims: Dad: A bird told me you are doing drugs..... Me: You're talking with birds and I'm the one doing drugs?!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:29 +0000", "from_user": "monumentpharm", "from_user_id": 167445223, "from_user_id_str": "167445223", "from_user_name": "Monument Pharmacy", "geo": null, "id": 148835610688368640, "id_str": "148835610688368640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1079827885/Mt_Elbert_Colorado_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1079827885/Mt_Elbert_Colorado_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Tips 4 finding the right #veterinary #pharmacy: http://t.co/PCglnydp #pets #animals #dogs #cats #horses #birds #reptiles #meds #medicine", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:28 +0000", "from_user": "Kareendmmg", "from_user_id": 426262455, "from_user_id_str": "426262455", "from_user_name": "Kareen Sicari", "geo": null, "id": 148835604615004160, "id_str": "148835604615004160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668798646/LLCM-2128_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668798646/LLCM-2128_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@abreduardo Dude, go get Pigeon Palooza (the next angry birds)- it is avail in Android Mktplce - will be in ITunes soon.", "to_user": "abreduardo", "to_user_id": 38194576, "to_user_id_str": "38194576", "to_user_name": "Eduardo Baca", "in_reply_to_status_id": 148830081320632320, "in_reply_to_status_id_str": "148830081320632320"}, +{"created_at": "Mon, 19 Dec 2011 18:42:25 +0000", "from_user": "LesterDiamond28", "from_user_id": 180600314, "from_user_id_str": "180600314", "from_user_name": "Lester Diamond", "geo": null, "id": 148835594854866940, "id_str": "148835594854866944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1420764224/Dangar_Place_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1420764224/Dangar_Place_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@rickygervais to celebrate the holidays Ollie plans the murders of rodents and birds.", "to_user": "rickygervais", "to_user_id": 20015311, "to_user_id_str": "20015311", "to_user_name": "Ricky Gervais", "in_reply_to_status_id": 148835266633805820, "in_reply_to_status_id_str": "148835266633805824"}, +{"created_at": "Mon, 19 Dec 2011 18:42:24 +0000", "from_user": "LetsGo_GetLost", "from_user_id": 280907196, "from_user_id_str": "280907196", "from_user_name": "Jan", "geo": null, "id": 148835590991921150, "id_str": "148835590991921152", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1370081071/001_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1370081071/001_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Noel und seine High Flying Birds vers\\u00FC\\u00DFen mir den Feierabend.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:24 +0000", "from_user": "MarkHubbard14", "from_user_id": 313069341, "from_user_id_str": "313069341", "from_user_name": "Mark Hubbard", "geo": null, "id": 148835588450164740, "id_str": "148835588450164737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1386594554/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1386594554/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Makin' birds with @king_wyman_IV #hellayes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:24 +0000", "from_user": "PhilHeron", "from_user_id": 29771899, "from_user_id_str": "29771899", "from_user_name": "Philip Heron", "geo": null, "id": 148835588282400770, "id_str": "148835588282400768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/129539081/Heron_Phil_Color_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/129539081/Heron_Phil_Color_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Reid plans to ignore key Giants game before Birds play Dallas - http://t.co/j5AnCPLk http://t.co/PgEPIhJN via @delcotimes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:21 +0000", "from_user": "MoneyMurph02", "from_user_id": 342278980, "from_user_id_str": "342278980", "from_user_name": "Murph", "geo": null, "id": 148835578442551300, "id_str": "148835578442551296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1460487322/m_65b984797c614ac4afa5320f7e4717e6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1460487322/m_65b984797c614ac4afa5320f7e4717e6_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@DearOldPuchiex3 Lol Let Them Bee Birds Eventually They Will Go Away its That Timee Of Thee Season.", "to_user": "DearOldPuchiex3", "to_user_id": 132352718, "to_user_id_str": "132352718", "to_user_name": "Sharilyn Figueroa", "in_reply_to_status_id": 148835067509223420, "in_reply_to_status_id_str": "148835067509223424"}, +{"created_at": "Mon, 19 Dec 2011 18:42:18 +0000", "from_user": "Wardz_de_souzA", "from_user_id": 36481662, "from_user_id_str": "36481662", "from_user_name": "\\uE00DWanderson de souzA\\uF8FF", "geo": null, "id": 148835565326970880, "id_str": "148835565326970880", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702586737/d7b7a5237e4d53eeb9f48e754aca0f61_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702586737/d7b7a5237e4d53eeb9f48e754aca0f61_normal.jpeg", "source": "<a href="http://faixamobi.com" rel="nofollow">FaixaMobi</a>", "text": "RT @faixamobi: Angry Birds para os aparelhos Nokia C3-01 e X3-02: http://t.co/wxtyoMiW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:17 +0000", "from_user": "SosoSakar", "from_user_id": 440400898, "from_user_id_str": "440400898", "from_user_name": "sakar", "geo": null, "id": 148835558360227840, "id_str": "148835558360227841", "iso_language_code": "ar", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701153316/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701153316/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u2022\\u2022 \\n\\n\\u0645\\u0622 \\u0637\\u0622\\u0631 \\u0637\\u064A\\u0631(\\u0646) \\u0648\\u0622\\u0631\\u062A\\u0641\\u0639\\n\\u0622\\u0644\\u0622 \\u0643\\u0640\\u0640\\u0645\\u0622 \\u0637\\u0640\\u0640\\u0622\\u0631 \\u0648\\u0642\\u0640\\u0640\\u0639\\n\\n\\n\\u0633\\u062C\\u0644 \\u0639\\u0646\\u062F\\u0643 \\u0646\\u0641\\u0633\\u064A\\u0629 \\u0627\\u0646\\u0642\\u0631\\u064A \\u0628\\u064A\\u0631\\u062F Angry Birds =D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:16 +0000", "from_user": "American_Jesus", "from_user_id": 17004639, "from_user_id_str": "17004639", "from_user_name": "American_Jesus", "geo": null, "id": 148835555583594500, "id_str": "148835555583594498", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1268263307/American_Jesus120x120_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1268263307/American_Jesus120x120_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Angry Birds Christmas Lights http://t.co/No5Ov011", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:16 +0000", "from_user": "GreenKeithMEP", "from_user_id": 310221185, "from_user_id_str": "310221185", "from_user_name": "Keith Taylor", "geo": null, "id": 148835554526629900, "id_str": "148835554526629888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1380088021/KEITH_TAYLOR_Twitter_sq__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1380088021/KEITH_TAYLOR_Twitter_sq__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I call to end illegal Italian #wildbirdhunting. EU has 500 great wild bird species but 43% facing serious decline http://t.co/prqDiiOp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:15 +0000", "from_user": "jessversus", "from_user_id": 16464751, "from_user_id_str": "16464751", "from_user_name": "jess versus", "geo": null, "id": 148835553624854530, "id_str": "148835553624854529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1655231598/square-beach-profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655231598/square-beach-profile_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Chevron is so \"in\" this year. I dunno about fashion, but it's the first year I've noticed craft trends other than owls/birds/tentacles.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:15 +0000", "from_user": "_ButYuMadTho", "from_user_id": 240903251, "from_user_id_str": "240903251", "from_user_name": "Marquis Benton", "geo": null, "id": 148835551313793020, "id_str": "148835551313793025", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670882600/IMAG0382_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670882600/IMAG0382_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "this shit is for the birds! i dont wish this torture upon anyone!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:14 +0000", "from_user": "anyoldbooks", "from_user_id": 223076545, "from_user_id_str": "223076545", "from_user_name": "Jeremy LeLean", "geo": null, "id": 148835548826570750, "id_str": "148835548826570752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1182955215/Logo-AOB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1182955215/Logo-AOB_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Audubon's Birds of America for sale @ChristiesInc on 20/01/12 (http://t.co/Y6sKanBc). Second in a little over 12 months.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:10 +0000", "from_user": "LaurenisaL0ser", "from_user_id": 244131364, "from_user_id_str": "244131364", "from_user_name": "Lauren White", "geo": null, "id": 148835531470536700, "id_str": "148835531470536704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698281011/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698281011/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Why do birds suddenly appear every time you are near?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:10 +0000", "from_user": "Arlaifk", "from_user_id": 431718239, "from_user_id_str": "431718239", "from_user_name": "Arla Uzzle", "geo": null, "id": 148835530191278080, "id_str": "148835530191278080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681067885/hedqu44554_122771732_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681067885/hedqu44554_122771732_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Birds On A Wire 12X12 Love Birds Collection Paper (Fancy Pants): FANCY PANTS-Love Birds. This package contains t... http://t.co/5R7BW1gD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:09 +0000", "from_user": "ZayMane23", "from_user_id": 127257145, "from_user_id_str": "127257145", "from_user_name": "Xavier Chambers", "geo": null, "id": 148835527074918400, "id_str": "148835527074918400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701013955/91D0YCV9_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701013955/91D0YCV9_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "All that bullshit for da birds, u ain't nothin but a vulture", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:41:53 +0000", "from_user": "sergioquintero_", "from_user_id": 99825457, "from_user_id_str": "99825457", "from_user_name": "Sergio Quintero", "geo": null, "id": 148835461790572540, "id_str": "148835461790572544", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1394370219/eightbit-2eb1f30f-c514-482e-8df6-ea1afd5ceda4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1394370219/eightbit-2eb1f30f-c514-482e-8df6-ea1afd5ceda4_normal.png", "source": "<a href="http://www.tweekly.fm/" rel="nofollow">Tweekly.fm</a>", "text": "My Top 3 #lastfm Artists: The Fratellis (13), Noel Gallagher's High Flying Birds (7) & Miles Kane (6) http://t.co/ZxE7ubZW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:52 +0000", "from_user": "NikkiLiburd", "from_user_id": 392291133, "from_user_id_str": "392291133", "from_user_name": "nikki", "geo": null, "id": 148835457243942900, "id_str": "148835457243942912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702420191/nicki-minaj-roman-in-moscow-500x500_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702420191/nicki-minaj-roman-in-moscow-500x500_1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "bye tweeters and tweety birds. will b bak on really soon.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:52 +0000", "from_user": "Sabreezybr0", "from_user_id": 16303171, "from_user_id_str": "16303171", "from_user_name": "Beautiful Breeeezy.", "geo": null, "id": 148835455499124740, "id_str": "148835455499124737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693080096/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693080096/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Birds run away from me.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:51 +0000", "from_user": "CedThomas", "from_user_id": 49747703, "from_user_id_str": "49747703", "from_user_name": "Ask Your Neighbor", "geo": null, "id": 148835452621828100, "id_str": "148835452621828096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1207135391/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1207135391/image_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @DABOIGENIUS: Im looking 4wd to joining #TeamMac this PC ish for the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:51 +0000", "from_user": "DMoralesReyes", "from_user_id": 108430900, "from_user_id_str": "108430900", "from_user_name": "Diego Morales", "geo": null, "id": 148835450524663800, "id_str": "148835450524663808", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1097646872/pointy-haired_boss_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1097646872/pointy-haired_boss_bigger_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @exp_empresas: El creador de Angry Birds considera salir a Bolsa en Hong Kong: La compa\\u00F1\\u00EDa creadora de Angry Birds, el videojue... http://t.co/kGKL4LMR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:51 +0000", "from_user": "4yourpets", "from_user_id": 389380311, "from_user_id_str": "389380311", "from_user_name": "Marry", "geo": null, "id": 148835449610317820, "id_str": "148835449610317824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://www.ajaymatharu.com/" rel="nofollow">Tweet Old Post</a>", "text": "Pink Parrot\\u00AE Hawaiian Delights\\u00AE 10\" Hanging Cookies, Wheels & Blocks for Sm/Med/Lg Birds - PetAg\\u00AE Hawaiian... http://t.co/y8fbUVBa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:49 +0000", "from_user": "eileen_dover2", "from_user_id": 324705125, "from_user_id_str": "324705125", "from_user_name": "Eileen Dominguez", "geo": null, "id": 148835444661026800, "id_str": "148835444661026816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1594096599/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1594096599/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Discussing what birds talk about when they're all on a post hanging out #winterbeachtrips", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:48 +0000", "from_user": "Lorettekkq", "from_user_id": 426264025, "from_user_id_str": "426264025", "from_user_name": "Lorette Hanner", "geo": null, "id": 148835439866945540, "id_str": "148835439866945536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668804985/LLCM-5202_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668804985/LLCM-5202_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@erinlashae913 Ya must try out Pigeon Palooza (the next angry birds)- it's avail in Android Mktplce - will be in ITunes next week.", "to_user": "erinlashae913", "to_user_id": 295983240, "to_user_id_str": "295983240", "to_user_name": "Erin Davis :) ", "in_reply_to_status_id": 148795611980906500, "in_reply_to_status_id_str": "148795611980906496"}, +{"created_at": "Mon, 19 Dec 2011 18:41:46 +0000", "from_user": "nlnarayan", "from_user_id": 36915089, "from_user_id_str": "36915089", "from_user_name": "Lakshminarayan", "geo": null, "id": 148835431444774900, "id_str": "148835431444774912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1271532760/4848_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1271532760/4848_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Saudi Prince invests 300 m$ in Twitter...now that is what i call \"economics\" is smarter than birds..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:44 +0000", "from_user": "kuzderet", "from_user_id": 162352891, "from_user_id_str": "162352891", "from_user_name": "TolgaSion", "geo": null, "id": 148835420527009800, "id_str": "148835420527009792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1553397339/Photo_255_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553397339/Photo_255_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Not only in my country, but also here little kids follow birds hmm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:42 +0000", "from_user": "RoseKAnderson", "from_user_id": 85471123, "from_user_id_str": "85471123", "from_user_name": "Rose Anderson ", "geo": null, "id": 148835412788510720, "id_str": "148835412788510723", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1563733660/Rose-Tree_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1563733660/Rose-Tree_normal.jpg", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "Did I just get two ravens on camera? #birds , not football players (@ Music Fair Marsh) http://t.co/f6TAurH2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:42 +0000", "from_user": "KrzaKraig", "from_user_id": 437686041, "from_user_id_str": "437686041", "from_user_name": "Kraig Lasher", "geo": null, "id": 148835412775944200, "id_str": "148835412775944194", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695092838/me_phils_hat_normal.jpg", "profile_image_url_https": null, "source": "<a href="http://twitter.com/">web</a>", "text": "Getting crazy at the end of the NFL season. Go Birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:38 +0000", "from_user": "MarzGod_", "from_user_id": 24243598, "from_user_id_str": "24243598", "from_user_name": "Maria Lord", "geo": null, "id": 148835398632734720, "id_str": "148835398632734720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681509778/Photo_497_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681509778/Photo_497_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@LuciaBeeman I'm gonna txt you whether you like or not. Lol. This shit is for the birds.", "to_user": "LuciaBeeman", "to_user_id": 270703162, "to_user_id_str": "270703162", "to_user_name": "Lucia Beeman\\u26A1", "in_reply_to_status_id": 148833578204143600, "in_reply_to_status_id_str": "148833578204143619"}, +{"created_at": "Mon, 19 Dec 2011 18:41:35 +0000", "from_user": "iwandiary", "from_user_id": 82874075, "from_user_id_str": "82874075", "from_user_name": "Iwan Susanto", "geo": null, "id": 148835386188242940, "id_str": "148835386188242946", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1487849055/n703317961_830675_3915_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1487849055/n703317961_830675_3915_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Angry Birds v1.6.2 (latest version) Full \\u2013 Free Download http://t.co/T0pswZXP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:33 +0000", "from_user": "NashFenrir", "from_user_id": 400038141, "from_user_id_str": "400038141", "from_user_name": "nash fenrir", "geo": null, "id": 148835372615471100, "id_str": "148835372615471104", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1671976015/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671976015/image_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Photos on iOS</a>", "text": "Birds http://t.co/ZK6m8dbf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:31 +0000", "from_user": "Louracaux", "from_user_id": 426260722, "from_user_id_str": "426260722", "from_user_name": "Loura Emmert", "geo": null, "id": 148835369176137730, "id_str": "148835369176137728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668792937/LLCM-4006_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668792937/LLCM-4006_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@justNeta Dude, check out Pigeon Palooza (the next angry birds)- it is avail in Android Mktplce - will be in ITunes next week.", "to_user": "justNeta", "to_user_id": 121134761, "to_user_id_str": "121134761", "to_user_name": "Neta", "in_reply_to_status_id": 148833707912994800, "in_reply_to_status_id_str": "148833707912994818"}, +{"created_at": "Mon, 19 Dec 2011 18:41:30 +0000", "from_user": "lazyjeanius", "from_user_id": 204083642, "from_user_id_str": "204083642", "from_user_name": "Eddie King", "geo": null, "id": 148835362368794620, "id_str": "148835362368794624", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1606572608/P3221627_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606572608/P3221627_normal.JPG", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "Amillio got all da birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:27 +0000", "from_user": "bbo_p", "from_user_id": 287591376, "from_user_id_str": "287591376", "from_user_name": "\\u314D\\u315B\\u314D", "geo": null, "id": 148835352797380600, "id_str": "148835352797380608", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1324586293/15228d224ced52b30871e4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1324586293/15228d224ced52b30871e4_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "just another day \\uB2F5\\uB2F5\\uD574.. \\uC54C\\uC544\\uB4E3\\uACE0 \\uC2F6\\uC5B4... \\uC0C8\\uB294 \\uC6B8\\uACE0 \\uC232\\uC744 \\uB0A0\\uC544?! birds are singing, things are growing\\uAC00 \\uC800\\uB7F0 \\uAC00\\uC0AC\\uAC00 \\uB418\\uB098...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:22 +0000", "from_user": "DntBlowMy_Tweet", "from_user_id": 245054070, "from_user_id_str": "245054070", "from_user_name": "Destinee Miller", "geo": null, "id": 148835328986316800, "id_str": "148835328986316800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686368075/Snapshot_20111209_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686368075/Snapshot_20111209_3_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @JehmarNOtJamar: this being home shit is #dead and for the birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:19 +0000", "from_user": "MoxitoBandito", "from_user_id": 199068108, "from_user_id_str": "199068108", "from_user_name": "Mohssine Affane", "geo": null, "id": 148835318680928260, "id_str": "148835318680928256", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1560915761/n501444341_253593_5726_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1560915761/n501444341_253593_5726_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@HoudaZiou tu as la t\\u00EAte dial dak l'oiseau jaune f ANgry Birds HAHAHAHAHA", "to_user": "HoudaZiou", "to_user_id": 182918821, "to_user_id_str": "182918821", "to_user_name": "Houda Ziou", "in_reply_to_status_id": 148835151751819260, "in_reply_to_status_id_str": "148835151751819264"}, +{"created_at": "Mon, 19 Dec 2011 18:41:14 +0000", "from_user": "MarabeehkiLenem", "from_user_id": 405713864, "from_user_id_str": "405713864", "from_user_name": "Maraa_Been_Caakeed", "geo": null, "id": 148835297403211780, "id_str": "148835297403211776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1669946088/diggy-simmons-photo-of-the-day-2010-10-17-300x400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669946088/diggy-simmons-photo-of-the-day-2010-10-17-300x400_normal.jpg", "source": "<a href="http://www.panoramicsoft.com/mobileapps/motweets/moTweets.php" rel="nofollow">Panoramic moTweets</a>", "text": "RT @i_pull_dreadz: Everytime I see a dude with a big beard I imagine a family of birds living in there", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:14 +0000", "from_user": "The_Ivy_AnKAr", "from_user_id": 188968319, "from_user_id_str": "188968319", "from_user_name": "Candace SanDiego", "geo": null, "id": 148835294202957820, "id_str": "148835294202957824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1637009439/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637009439/image_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @NotoriousLIZ: 2011 was a bad year for birds............The feather earrings trend.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:14 +0000", "from_user": "ayunigifts", "from_user_id": 56043197, "from_user_id_str": "56043197", "from_user_name": "Ayuni Gifts", "geo": null, "id": 148835294135853060, "id_str": "148835294135853056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1584577497/pinkdog_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584577497/pinkdog_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "I'm selling I. Godinger Glass Plate Tray 10\" Square - Birds in Tree http://t.co/P1gE9Ncc @addoway", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:12 +0000", "from_user": "Christianentk", "from_user_id": 440188107, "from_user_id_str": "440188107", "from_user_name": "Christiane Naslund", "geo": null, "id": 148835289249497100, "id_str": "148835289249497088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700517925/large_OZNMBYEUADPE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700517925/large_OZNMBYEUADPE_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "About Birds (Turtleback School & Library Binding Edition): FOR USE IN SCHOOLS AND LIBRARIES ONLY. Text and illus... http://t.co/jIfu1AM4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:10 +0000", "from_user": "roostlondon", "from_user_id": 375638767, "from_user_id_str": "375638767", "from_user_name": "roost", "geo": null, "id": 148835280097513470, "id_str": "148835280097513472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1614222831/LogoSmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1614222831/LogoSmall_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Photo: Early birds tickets are moving fast for our event Jan 21st 2012... http://t.co/CaxJ9OB5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:07 +0000", "from_user": "MikaylaaKelly", "from_user_id": 228098322, "from_user_id_str": "228098322", "from_user_name": "Mikayla Kelly Martin", "geo": null, "id": 148835267418128400, "id_str": "148835267418128384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1597875901/EL7ydr0o_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1597875901/EL7ydr0o_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@rogerdoger70 whaddddddup(: I've been playing angry birds this whole time...", "to_user": "rogerdoger70", "to_user_id": 51203843, "to_user_id_str": "51203843", "to_user_name": "Pablo Kidd", "in_reply_to_status_id": 148834157458497540, "in_reply_to_status_id_str": "148834157458497537"}, +{"created_at": "Mon, 19 Dec 2011 18:41:07 +0000", "from_user": "Samd779", "from_user_id": 14634438, "from_user_id_str": "14634438", "from_user_name": "Sam Dixon", "geo": null, "id": 148835265748803600, "id_str": "148835265748803586", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1265183478/asd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1265183478/asd_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@GabeLudden As a journalist, I can tell you that the 'Angry Birds' have no interest in taking you down They just hate your pompous attitude", "to_user": "GabeLudden", "to_user_id": 359802782, "to_user_id_str": "359802782", "to_user_name": "Gabriel Ludden", "in_reply_to_status_id": 148822834574143500, "in_reply_to_status_id_str": "148822834574143490"}, +{"created_at": "Mon, 19 Dec 2011 18:41:04 +0000", "from_user": "Hoe_ISaid", "from_user_id": 195575328, "from_user_id_str": "195575328", "from_user_name": "[]L\\u00A3SA Is My Name[]", "geo": null, "id": 148835256248705020, "id_str": "148835256248705024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696753146/jOMkVl2x_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696753146/jOMkVl2x_normal", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @ThsWht_iCallHer: Birds of a feather flock together. Hoes on the same shit chase after the same dick.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:03 +0000", "from_user": "jSimpson333", "from_user_id": 311137894, "from_user_id_str": "311137894", "from_user_name": "Jonathan Simpson", "geo": null, "id": 148835251643351040, "id_str": "148835251643351040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1653841781/creeps_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653841781/creeps_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Fat birds only upload photos of their top half #conartists", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:03 +0000", "from_user": "olardarpo", "from_user_id": 377646559, "from_user_id_str": "377646559", "from_user_name": "oyenekan oladapo", "geo": null, "id": 148835250968076300, "id_str": "148835250968076288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686759208/331277831_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686759208/331277831_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Tell dat 2 d birds mr oga RT @SheunCrowther: Can't believe I havnt tasted food all day..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:02 +0000", "from_user": "BreitWerk", "from_user_id": 288840026, "from_user_id_str": "288840026", "from_user_name": "Deni Breitenbach", "geo": null, "id": 148835246887026700, "id_str": "148835246887026690", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1499000317/BreitWerk-logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1499000317/BreitWerk-logo_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "RT @jan4insight: Mini-Journal - Pink with Birds, on Zibbet http://t.co/1F0G5gQs Stocking stuffer! Last chance to get it by #Christmas!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:01 +0000", "from_user": "poison1313", "from_user_id": 412003339, "from_user_id_str": "412003339", "from_user_name": "poison", "geo": null, "id": 148835240322924540, "id_str": "148835240322924544", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://www.touchlive.jp/" rel="nofollow">JUNGLE BIRDS</a>", "text": "\\u3010JUNGLE BIRDS\\uFF1Abluedlug\\uFF1A280850pts #touchlive4i http://t.co/bGcyEcvb \\u3011", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:00 +0000", "from_user": "KlippinKrazy", "from_user_id": 314231043, "from_user_id_str": "314231043", "from_user_name": "Klippin' Krazy!", "geo": null, "id": 148835238242566140, "id_str": "148835238242566144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1389151177/klippin_krazy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1389151177/klippin_krazy_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Who doesn't LOVE Angry Birds? Especially ate 58% off on Lightening Deal.... http://t.co/mlL92RUq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:59 +0000", "from_user": "WalterKing1", "from_user_id": 430840158, "from_user_id_str": "430840158", "from_user_name": "Walter King", "geo": null, "id": 148835231523291140, "id_str": "148835231523291136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1679356694/walterking_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679356694/walterking_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Rovio\\u2019s CMO Peter Vesterbacka\\u2019s wife even wore an Angry Birds formal gown to a state gala", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:56 +0000", "from_user": "mitchfel", "from_user_id": 27960538, "from_user_id_str": "27960538", "from_user_name": "Mitch Feltsch", "geo": null, "id": 148835218806161400, "id_str": "148835218806161408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/744216290/lionman_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/744216290/lionman_normal.gif", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "All birds must die. KILL ALL BIRDFORM. #camping #its5am", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:50 +0000", "from_user": "_ChinkyRiChxO", "from_user_id": 352123941, "from_user_id_str": "352123941", "from_user_name": "\\u00BBKiss My T A T T S\\u2764", "geo": null, "id": 148835194605027330, "id_str": "148835194605027328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701185796/trEATthis_bitCh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701185796/trEATthis_bitCh_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "All That Talkin For The Birds.. Deliver That Beef , Bring It To My FRONT Door!! #Wassupp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:46 +0000", "from_user": "fReShPrince26", "from_user_id": 81183998, "from_user_id_str": "81183998", "from_user_name": "Alex", "geo": null, "id": 148835178519863300, "id_str": "148835178519863296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685518574/picplz_2011-11-17_23.00.58_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685518574/picplz_2011-11-17_23.00.58_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @Listentohersing RT @DJFRANK_WHITE LIFE IS LIKE AN IPHONE , ALL THESE ANGRY BIRDS .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:41 +0000", "from_user": "TheLifeOfNizzle", "from_user_id": 34976050, "from_user_id_str": "34976050", "from_user_name": "Captain Nizz", "geo": null, "id": 148835156659150850, "id_str": "148835156659150848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701597089/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701597089/image_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @NotoriousLIZ: 2011 was a bad year for birds............The feather earrings trend.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:39 +0000", "from_user": "g4ybar", "from_user_id": 104565670, "from_user_id_str": "104565670", "from_user_name": "Mila Kunis", "geo": null, "id": 148835150527086600, "id_str": "148835150527086594", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1663876100/310544_2219377927196_1330089194_31901953_1008177025_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663876100/310544_2219377927196_1330089194_31901953_1008177025_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Why do birds suddenly appear every time you are near", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:35 +0000", "from_user": "Lary_Bennington", "from_user_id": 236098684, "from_user_id_str": "236098684", "from_user_name": "\\u2620Larissa Bennington\\u2620", "geo": null, "id": 148835134102192130, "id_str": "148835134102192129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695322258/Tigress_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695322258/Tigress_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Mauradmv: @Lary_Bennington Ya have to try Pigeon Palooza (the next angry birds)- it's live in Android Mktplce - will be in ITunes next week.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:35 +0000", "from_user": "dkeown44", "from_user_id": 238043472, "from_user_id_str": "238043472", "from_user_name": "David Keown", "geo": null, "id": 148835132525125630, "id_str": "148835132525125632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1444593379/IMG000313_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1444593379/IMG000313_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@CoachNinoDBE323 that's what's up hope y'all had some fun for me cuz this factory work is for the birds lol", "to_user": "CoachNinoDBE323", "to_user_id": 38744039, "to_user_id_str": "38744039", "to_user_name": "Lil Nino", "in_reply_to_status_id": 148834814110334980, "in_reply_to_status_id_str": "148834814110334976"}, +{"created_at": "Mon, 19 Dec 2011 18:40:35 +0000", "from_user": "Keeeepy", "from_user_id": 364220852, "from_user_id_str": "364220852", "from_user_name": "Michael Keep", "geo": null, "id": 148835131963080700, "id_str": "148835131963080704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1580510722/you_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580510722/you_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Angry birds in HD is the closest I've been to heaven", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:31 +0000", "from_user": "Smattjack", "from_user_id": 36395325, "from_user_id_str": "36395325", "from_user_name": "Stu Jack", "geo": null, "id": 148835114296684540, "id_str": "148835114296684546", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1281471836/fitted_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1281471836/fitted_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Just saw the biggest flock of birds ever fly by...they were flying 2 million deep...used my iPhone compass to confirm they were flying south", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:29 +0000", "from_user": "Angelinamul", "from_user_id": 431731537, "from_user_id_str": "431731537", "from_user_name": "Angelina Furgison", "geo": null, "id": 148835106570772480, "id_str": "148835106570772480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681095955/large_4915e41264422-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681095955/large_4915e41264422-1_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Songbirds Tapestry Throw: Beautiful birds wake us each morning with heavenly song. Artist Sandy Clough has desig... http://t.co/jyxdvmto", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:29 +0000", "from_user": "DENIISEJx", "from_user_id": 143184301, "from_user_id_str": "143184301", "from_user_name": "Denise", "geo": null, "id": 148835105610285060, "id_str": "148835105610285058", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698287493/DENISE__PF_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698287493/DENISE__PF_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Haha ro & peet doen allebei angry birds xd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:28 +0000", "from_user": "xefrox", "from_user_id": 15193039, "from_user_id_str": "15193039", "from_user_name": "xefrox", "geo": null, "id": 148835103643144200, "id_str": "148835103643144192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1590515351/8bc3d32a-4d5b-4fcb-aff2-d2bf366e04ff_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1590515351/8bc3d32a-4d5b-4fcb-aff2-d2bf366e04ff_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@Nx_Her Did not know im living in a fantasy world where birds and ghost talks :P nd alien :P", "to_user": "Nx_Her", "to_user_id": 91365666, "to_user_id_str": "91365666", "to_user_name": "Nuzhah Naashidh", "in_reply_to_status_id": 148834679099891700, "in_reply_to_status_id_str": "148834679099891712"}, +{"created_at": "Mon, 19 Dec 2011 18:40:28 +0000", "from_user": "ForeverGucci128", "from_user_id": 384006227, "from_user_id_str": "384006227", "from_user_name": "Get DOWN Or Lay DOWN", "geo": null, "id": 148835103085301760, "id_str": "148835103085301760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701389224/lTgx2Gy8_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701389224/lTgx2Gy8_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Angry Birds >>>>>", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:27 +0000", "from_user": "Gabrieltrentin", "from_user_id": 39560499, "from_user_id_str": "39560499", "from_user_name": "Gabriel Trentin", "geo": null, "id": 148835097729175550, "id_str": "148835097729175552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1355160234/OgAAANS88bQlbTs38o0M6MD7ZIAy6bTHP5lGMJKvVXCGWPfmikcVWhR8nRcfrPUvi7CAoi_le5SjT9G9mu4FcIhuu04Am1T1UNJyElxyiRBRK_1cHFakC6HgIyYf_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1355160234/OgAAANS88bQlbTs38o0M6MD7ZIAy6bTHP5lGMJKvVXCGWPfmikcVWhR8nRcfrPUvi7CAoi_le5SjT9G9mu4FcIhuu04Am1T1UNJyElxyiRBRK_1cHFakC6HgIyYf_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "vou jogar angry birds pra tentar aliviar o stress", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:26 +0000", "from_user": "ufff_yaar", "from_user_id": 245386682, "from_user_id_str": "245386682", "from_user_name": "\\u2605Indu Barla\\u2605", "geo": null, "id": 148835094214348800, "id_str": "148835094214348800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1553357678/24072011330-4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553357678/24072011330-4_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "nyt y'all tweet birds! take care <33", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:24 +0000", "from_user": "_JU1C3_", "from_user_id": 354443437, "from_user_id_str": "354443437", "from_user_name": "Josh Akins", "geo": null, "id": 148835088434606080, "id_str": "148835088434606080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1493528903/2010-10-15_16.24.00_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1493528903/2010-10-15_16.24.00_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "2 of my teachers look like angry birds. 3rd mod = white one. 4th mod = yellow one. Lls", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:24 +0000", "from_user": "Adrienne65", "from_user_id": 20307527, "from_user_id_str": "20307527", "from_user_name": "Adrienne B", "geo": null, "id": 148835086488453120, "id_str": "148835086488453120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670105649/profile_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670105649/profile_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@JonathanAnsell That's a lot of birds! Have you devised a name for the recipe?", "to_user": "JonathanAnsell", "to_user_id": 34305448, "to_user_id_str": "34305448", "to_user_name": "Jonathan Ansell", "in_reply_to_status_id": 148834749157355520, "in_reply_to_status_id_str": "148834749157355520"}, +{"created_at": "Mon, 19 Dec 2011 18:40:23 +0000", "from_user": "SuperKidJunior", "from_user_id": 120433512, "from_user_id_str": "120433512", "from_user_name": "H\\u0394ikal Roks\\u2020arr", "geo": +{"coordinates": [1.329,103.8994], "type": "Point"}, "id": 148835082126364670, "id_str": "148835082126364672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690985918/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690985918/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#nowplaying You don't know me - Birds Escape #love this band too! \\uE041", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:22 +0000", "from_user": "iAbuseHoes", "from_user_id": 153820628, "from_user_id_str": "153820628", "from_user_name": "Aniishaa \\u2655", "geo": null, "id": 148835077244190720, "id_str": "148835077244190720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686931724/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686931724/image_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @ThsWht_iCallHer: Birds of a feather flock together. Hoes on the same shit chase after the same dick.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:19 +0000", "from_user": "xstitchschool", "from_user_id": 78137366, "from_user_id_str": "78137366", "from_user_name": "Carla", "geo": null, "id": 148835065806340100, "id_str": "148835065806340096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1678189831/Tulips_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678189831/Tulips_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@PopcornPalace tuxedo birds fly high for Popcorn Palace Double Chocolate Popcorn #12dayspop", "to_user": "PopcornPalace", "to_user_id": 29562199, "to_user_id_str": "29562199", "to_user_name": "Popcorn Palace", "in_reply_to_status_id": 147807974944018430, "in_reply_to_status_id_str": "147807974944018432"}, +{"created_at": "Mon, 19 Dec 2011 18:40:16 +0000", "from_user": "Placepot", "from_user_id": 28132444, "from_user_id_str": "28132444", "from_user_name": "Wayne the Gardener", "geo": null, "id": 148835051138842620, "id_str": "148835051138842624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/543418371/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/543418371/twitterProfilePhoto_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Bird peanuts are so pricey atm, paid \\u00A322.69 for 12.5kg today, 12m ago \\u00A312.19! Any other #birds #rspb folk noticed too?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:15 +0000", "from_user": "Melinda7Life", "from_user_id": 391672575, "from_user_id_str": "391672575", "from_user_name": "Melinda Grossman", "geo": null, "id": 148835049855393800, "id_str": "148835049855393792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1590093257/Melinda_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1590093257/Melinda_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Natural outdoor decorations might come with a few risks...\"#Christmas decorating is for the birds\" - http://t.co/clre5yDX #holiday", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:11 +0000", "from_user": "Liieeess", "from_user_id": 223488318, "from_user_id_str": "223488318", "from_user_name": "superwoman lisa. ", "geo": null, "id": 148835030830022660, "id_str": "148835030830022656", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1665726875/hey._normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665726875/hey._normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "ik zit nu al een uur angry birds op de ipad te spelen.. Dat spel is echt te verslavend", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:09 +0000", "from_user": "Evandrro", "from_user_id": 283633776, "from_user_id_str": "283633776", "from_user_name": "Evandro", "geo": null, "id": 148835022118465540, "id_str": "148835022118465536", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1402119920/Evandro2_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1402119920/Evandro2_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "eu tava jogando angry birds RIO ;-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:04 +0000", "from_user": "Kroketawoman", "from_user_id": 190961109, "from_user_id_str": "190961109", "from_user_name": "Me llaman Octubre", "geo": null, "id": 148835001763500030, "id_str": "148835001763500032", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1581290312/DSC09857_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1581290312/DSC09857_normal.JPG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Que alguien me borre el angry birds antes que sea demasiado tarde.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:01 +0000", "from_user": "MyLoveIsPoetic1", "from_user_id": 210662339, "from_user_id_str": "210662339", "from_user_name": "Torea Toombs", "geo": null, "id": 148834991437131780, "id_str": "148834991437131777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688092275/393712_1694629741033_1696527112_875657_1104355512_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688092275/393712_1694629741033_1696527112_875657_1104355512_n_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Smh. The birds got me thinking....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:56 +0000", "from_user": "Shilly_1871RFC", "from_user_id": 168333570, "from_user_id_str": "168333570", "from_user_name": "Sam Shillingford", "geo": null, "id": 148834970335588350, "id_str": "148834970335588352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1610843953/300790_10150879088955121_835830120_21339901_110625708_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610843953/300790_10150879088955121_835830120_21339901_110625708_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Willcox94: Can't wait for New Years eve. Knowing me I'll wake up somewhere like Poland with a swastika tattoo and some birds knickers on my head.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:56 +0000", "from_user": "_max_k_", "from_user_id": 403584758, "from_user_id_str": "403584758", "from_user_name": "Max", "geo": null, "id": 148834969920348160, "id_str": "148834969920348160", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1619170301/1407019691_6_Cwn4_1_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619170301/1407019691_6_Cwn4_1_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "@isabomm angry birds knuffel verzameling op kermis al je geld daaraan uitgeven:p", "to_user": "isabomm", "to_user_id": 228298848, "to_user_id_str": "228298848", "to_user_name": "Isa B ."}, +{"created_at": "Mon, 19 Dec 2011 18:39:55 +0000", "from_user": "ColorMehRed", "from_user_id": 267221512, "from_user_id_str": "267221512", "from_user_name": "...Krystal", "geo": null, "id": 148834966569095170, "id_str": "148834966569095168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698111421/IMAG0411_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698111421/IMAG0411_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "@me_Mocahontas are yuh throwinq up the birds in yuhr avi.? lol.!", "to_user": "me_Mocahontas", "to_user_id": 357131275, "to_user_id_str": "357131275", "to_user_name": "C. Nelay", "in_reply_to_status_id": 148834749044113400, "in_reply_to_status_id_str": "148834749044113409"}, +{"created_at": "Mon, 19 Dec 2011 18:39:53 +0000", "from_user": "foretnordique", "from_user_id": 205351413, "from_user_id_str": "205351413", "from_user_name": "Martin Filion", "geo": null, "id": 148834954598559740, "id_str": "148834954598559744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1148889035/logo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1148889035/logo_normal.gif", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @CdnBoreal: Save wild forests, save migratory birds http://t.co/rRdmxMcG #cnn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:50 +0000", "from_user": "SippenonCoLa", "from_user_id": 246315476, "from_user_id_str": "246315476", "from_user_name": "Ginelle Cola", "geo": null, "id": 148834943483658240, "id_str": "148834943483658240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698476384/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698476384/image_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Of coarse when I'm trying to save Rio in Angry Birds its time to leave. -___-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:50 +0000", "from_user": "jennxcimm", "from_user_id": 70385089, "from_user_id_str": "70385089", "from_user_name": "Jennifer Cimmaruta", "geo": null, "id": 148834942942593020, "id_str": "148834942942593024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1535089688/Photo_on_9-8-11_at_3.01_PM_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1535089688/Photo_on_9-8-11_at_3.01_PM_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@xoemilydeveau well thats because birds are ugly bastards", "to_user": "xoemilydeveau", "to_user_id": 295247866, "to_user_id_str": "295247866", "to_user_name": "Emily Deveau", "in_reply_to_status_id": 148830443628806140, "in_reply_to_status_id_str": "148830443628806145"}, +{"created_at": "Mon, 19 Dec 2011 18:39:49 +0000", "from_user": "jordanerror", "from_user_id": 39379440, "from_user_id_str": "39379440", "from_user_name": "jordan somersc", "geo": null, "id": 148834938362404860, "id_str": "148834938362404864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1214244239/7034_147552139521_549934521_2420480_187174_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1214244239/7034_147552139521_549934521_2420480_187174_n_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Two birds one stone: \"classic\" hitchens article on Kim's North Korea: Kim Jong-il's regime is even weirder and m... http://t.co/tpvhyjHz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:43 +0000", "from_user": "BrittanyChere", "from_user_id": 32828316, "from_user_id_str": "32828316", "from_user_name": "Brittany M.", "geo": null, "id": 148834912600997900, "id_str": "148834912600997888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1443554658/321251894_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1443554658/321251894_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I need to pick up a hobby.. this being at home during the day is for the birds!!! Idk what I'm going to do come Jan.! Ugh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:42 +0000", "from_user": "JustBeano", "from_user_id": 138074659, "from_user_id_str": "138074659", "from_user_name": "Beano French", "geo": null, "id": 148834911397216260, "id_str": "148834911397216256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664306622/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664306622/image_normal.jpg", "source": "<a href="http://www.nibirutech.com" rel="nofollow">TwitBird</a>", "text": "So I'll Be Cheering For The Jets This Saturday!!! Nd My Birds Gotta Win Out", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:42 +0000", "from_user": "purplekisskia", "from_user_id": 214542094, "from_user_id_str": "214542094", "from_user_name": "Shy Johnson", "geo": null, "id": 148834910264762370, "id_str": "148834910264762368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686785738/x2XwkrmD_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686785738/x2XwkrmD_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @2piecee: @purplekisskia Did Yu See Tht Eagles Game Yesterday? How Bout Those Birds! Lol We On Our Way!!\\n#EagleNation", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:42 +0000", "from_user": "BevPhotos", "from_user_id": 19466086, "from_user_id_str": "19466086", "from_user_name": "Bev ", "geo": null, "id": 148834909581094900, "id_str": "148834909581094912", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1168019560/4450777546_c4c5f4ea6f_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1168019560/4450777546_c4c5f4ea6f_o_normal.jpg", "source": "<a href="http://stone.com/Twittelator" rel="nofollow">Twittelator</a>", "text": "RT @simonscotland: RT @KerriFar Celebrate Today ~ http://t.co/jiSufiI9 #bluebird #birds #nature #outdoors", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:41 +0000", "from_user": "DatDudeNickT93", "from_user_id": 45289019, "from_user_id_str": "45289019", "from_user_name": "The Kid Frankie", "geo": null, "id": 148834904472420350, "id_str": "148834904472420353", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1618803544/DatDudeNickT93_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618803544/DatDudeNickT93_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Birds flyin high u kno how I feel", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:39 +0000", "from_user": "GodsGift_93", "from_user_id": 399748474, "from_user_id_str": "399748474", "from_user_name": "Jason Lewis", "geo": null, "id": 148834899741257730, "id_str": "148834899741257728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679880108/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679880108/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@Naturalle_KeMoe: Somebody was driving in front us and they slowed down and she said they slowed down fa some damn birds..hit them bitches", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:37 +0000", "from_user": "guero_pacquiao", "from_user_id": 66384844, "from_user_id_str": "66384844", "from_user_name": "david othon", "geo": null, "id": 148834888030765060, "id_str": "148834888030765057", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664844331/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664844331/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@andieochoa: Los pajaros rojos de angry birds son los mas chafos #winterbreak #nothingtodo // Vete a montaaaaaaar!!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:35 +0000", "from_user": "Thykst_Dym", "from_user_id": 124279961, "from_user_id_str": "124279961", "from_user_name": "Lucinda Damone ", "geo": null, "id": 148834881995149300, "id_str": "148834881995149312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696032734/331557579_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696032734/331557579_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "This a woman shit is for the birds. I'm extremely miserable right now n I wanna cry for no damn reason", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:35 +0000", "from_user": "BlueMark18", "from_user_id": 99015505, "from_user_id_str": "99015505", "from_user_name": "Mark", "geo": null, "id": 148834879205949440, "id_str": "148834879205949440", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691777224/LewisHamiltonHelmetBrazil_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691777224/LewisHamiltonHelmetBrazil_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@jkno87 \\u00BFPor qu\\u00E9 odias a los Angry Birds? Hahaha", "to_user": "jkno87", "to_user_id": 26190756, "to_user_id_str": "26190756", "to_user_name": "jose cano", "in_reply_to_status_id": 148834756463824900, "in_reply_to_status_id_str": "148834756463824896"}, +{"created_at": "Mon, 19 Dec 2011 18:39:34 +0000", "from_user": "CAPITALJD", "from_user_id": 103535117, "from_user_id_str": "103535117", "from_user_name": "CAPITAL JD", "geo": null, "id": 148834876441886720, "id_str": "148834876441886720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/624821979/l_dd1ad7730eaaa3d99aa2839506cb1c82_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/624821979/l_dd1ad7730eaaa3d99aa2839506cb1c82_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Tweet Tweet\\nTweet Tweet \\nBirds chirpin", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:33 +0000", "from_user": "whitneez_way", "from_user_id": 33368326, "from_user_id_str": "33368326", "from_user_name": " respect my THOUGHTS", "geo": null, "id": 148834871194812400, "id_str": "148834871194812418", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700322676/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700322676/image_normal.jpg", "source": "<a href="http://www.handmark.com" rel="nofollow">TweetCaster for iOS</a>", "text": "everything else is for the birds she has her friends and I have mine BUT our bond ... Pssshhhhh we've been thru too much !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:30 +0000", "from_user": "DABOIGENIUS", "from_user_id": 18998220, "from_user_id_str": "18998220", "from_user_name": "Kwame T. Hall", "geo": null, "id": 148834861430485000, "id_str": "148834861430484992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701325400/Dbg_lee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701325400/Dbg_lee_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Im looking 4wd to joining #TeamMac this PC ish for the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:29 +0000", "from_user": "aboutGardens", "from_user_id": 278086682, "from_user_id_str": "278086682", "from_user_name": "about garden", "geo": null, "id": 148834857080987650, "id_str": "148834857080987650", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1302094860/trowel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1302094860/trowel_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Peckish Table Seed Blend Bird Food 3kg http://t.co/XJ8SVMF7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:26 +0000", "from_user": "J_Word9", "from_user_id": 50515581, "from_user_id_str": "50515581", "from_user_name": "Jonathan Word", "geo": null, "id": 148834844883951600, "id_str": "148834844883951617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639777324/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639777324/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "music and angry birds kept me occupied during class first semester.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:25 +0000", "from_user": "Phenomenal_Ju", "from_user_id": 147642153, "from_user_id_str": "147642153", "from_user_name": "Julie-Anne Blanc", "geo": null, "id": 148834839246807040, "id_str": "148834839246807040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687612216/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687612216/me_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I really forgot how thugged out the birds were up here...and they no longer have all day metro cards.#losing", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:25 +0000", "from_user": "_DonDizzle_", "from_user_id": 104700828, "from_user_id_str": "104700828", "from_user_name": "Formerly QStorm19", "geo": null, "id": 148834838034661380, "id_str": "148834838034661377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1631520138/1320899465650_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631520138/1320899465650_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Yup \\u00AB@QuieroAmor_ :(\\nThat sucks. All 4 of em? RT @_DonDizzle_: Just got my wisdom teeth pulled smh this shit is for the birds\\u00BB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:23 +0000", "from_user": "BeezyFBaby23", "from_user_id": 297111471, "from_user_id_str": "297111471", "from_user_name": "Brandon McNeal", "geo": null, "id": 148834832519135230, "id_str": "148834832519135234", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687035714/DO5083oa_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687035714/DO5083oa_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Lookin for divine and a lil intervention but the birds dont fly.. without my permission", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:22 +0000", "from_user": "SonuNation", "from_user_id": 99115210, "from_user_id_str": "99115210", "from_user_name": "Rajvinder singh", "geo": null, "id": 148834828375179260, "id_str": "148834828375179265", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1613445301/sonunation_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1613445301/sonunation_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iTweetFunny_: Dad: A bird told me you are doing drugs..... Me: You're talking with birds and I'm the one doing drugs?!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:22 +0000", "from_user": "mommakarii", "from_user_id": 423543681, "from_user_id_str": "423543681", "from_user_name": "Karina Luna", "geo": null, "id": 148834826638721020, "id_str": "148834826638721024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670234835/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670234835/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\"@ABLozano19: 3 Months With @jadoreMaggie ! Best 3 Months Ever and still more to come (; #LovingHer\\u201D STFU!!! Jk congratulations love birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:20 +0000", "from_user": "Yung_Eazie", "from_user_id": 52622946, "from_user_id_str": "52622946", "from_user_name": "DatNugga", "geo": null, "id": 148834819730718720, "id_str": "148834819730718720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1647625320/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647625320/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Chilln where da birds be", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:17 +0000", "from_user": "Dewx222_BITCHH", "from_user_id": 310283806, "from_user_id_str": "310283806", "from_user_name": "T a m y a h h : )", "geo": null, "id": 148834807546249200, "id_str": "148834807546249216", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1656384247/PB9GoK3b_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656384247/PB9GoK3b_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Playingg Angryy Birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:17 +0000", "from_user": "stacygrows", "from_user_id": 15207364, "from_user_id_str": "15207364", "from_user_name": "Stacy Tornio", "geo": null, "id": 148834807273627650, "id_str": "148834807273627649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1408153183/Picture_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1408153183/Picture_5_normal.png", "source": "<a href="http://www.twhirl.org" rel="nofollow">Seesmic twhirl</a>", "text": "RT @birdorable: Enter to win $50 merch from Wild Birds Unlimited http://t.co/9mkDd71v Winner drawn tomorrow!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:17 +0000", "from_user": "_KaraNicole", "from_user_id": 336727149, "from_user_id_str": "336727149", "from_user_name": "Kara Scott", "geo": null, "id": 148834804559917060, "id_str": "148834804559917056", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1666031990/avatar_normal.JPEG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666031990/avatar_normal.JPEG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @_AlecBrooks_: The bird, bird, bird. The birds the word, get it!?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:16 +0000", "from_user": "fancyme1", "from_user_id": 39346756, "from_user_id_str": "39346756", "from_user_name": "sha Hollman", "geo": null, "id": 148834800696954880, "id_str": "148834800696954880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1430774349/K4M2adpr_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1430774349/K4M2adpr_normal", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @NotoriousLIZ: 2011 was a bad year for birds............The feather earrings trend.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:15 +0000", "from_user": "Roxanefvj", "from_user_id": 426262051, "from_user_id_str": "426262051", "from_user_name": "Roxane Chafetz", "geo": null, "id": 148834795047231500, "id_str": "148834795047231488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668798016/LLCM-4894_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668798016/LLCM-4894_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@DoOmiiPedrerOs Ya must try out Pigeon Palooza (the next angry birds)- it is in Android Mktplce - should be in App Store next week.", "to_user": "DoOmiiPedrerOs", "to_user_id": 212423577, "to_user_id_str": "212423577", "to_user_name": "TeamO\\u2661", "in_reply_to_status_id": 148824894547828740, "in_reply_to_status_id_str": "148824894547828736"}, +{"created_at": "Mon, 19 Dec 2011 18:39:14 +0000", "from_user": "Tildaies", "from_user_id": 426262628, "from_user_id_str": "426262628", "from_user_name": "Tilda Heltzel", "geo": null, "id": 148834793138819070, "id_str": "148834793138819073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668798045/LLCM-2344_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668798045/LLCM-2344_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@nyduece21 Ya have to try Pigeon Palooza (the next angry birds)- it is live in Android Mktplce - should be in ITunes soon.", "to_user": "nyduece21", "to_user_id": 159739191, "to_user_id_str": "159739191", "to_user_name": "derek", "in_reply_to_status_id": 148819584890314750, "in_reply_to_status_id_str": "148819584890314753"}, +{"created_at": "Mon, 19 Dec 2011 18:39:12 +0000", "from_user": "yasuhara_k", "from_user_id": 107780328, "from_user_id_str": "107780328", "from_user_name": "yasuhara kenta", "geo": null, "id": 148834782472716300, "id_str": "148834782472716288", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1554847041/11_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554847041/11_normal.jpg", "source": "<a href="http://apiwiki.twitter.com/" rel="nofollow">ROPELAND API</a>", "text": "RT @COIL_bot: \\u6709\\u7D42\\u306E\\u7F8E\\u98FE\\u308B\\u4EBA\\u751F\\u304C\\u50D5\\u3092\\u5F85\\u3063\\u3066\\u3044\\u308B\\u3000\\u5371\\u306A\\u3044\\u6A4B\\u6E21\\u308B\\u3053\\u306E\\u50D5\\u3092\\u8A31\\u3057\\u3066\\u306D \\u3010BIRDS\\u3011", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:09 +0000", "from_user": "Marcelinehhs", "from_user_id": 440217046, "from_user_id_str": "440217046", "from_user_name": "Marceline Fullford", "geo": null, "id": 148834773408821250, "id_str": "148834773408821250", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700584038/large_photo_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700584038/large_photo_1__normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Birds of Bahrain: http://t.co/9NSRA1hu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:08 +0000", "from_user": "LoVelli_DanNy", "from_user_id": 269513667, "from_user_id_str": "269513667", "from_user_name": "Danielle Sims", "geo": null, "id": 148834767981395970, "id_str": "148834767981395968", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702454487/1324313850096_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702454487/1324313850096_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Angry birds finna piss me off !!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:07 +0000", "from_user": "Call_Me_Goldo", "from_user_id": 395128559, "from_user_id_str": "395128559", "from_user_name": "Steven", "geo": null, "id": 148834762419744770, "id_str": "148834762419744768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691395677/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691395677/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "My tl is full of jail birds lmao. #YaTuSabe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:05 +0000", "from_user": "jkno87", "from_user_id": 26190756, "from_user_id_str": "26190756", "from_user_name": "jose cano", "geo": null, "id": 148834756463824900, "id_str": "148834756463824896", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1503828638/street_fighter_iii_3rd_strike_by_toshiharu-d3l6691_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1503828638/street_fighter_iii_3rd_strike_by_toshiharu-d3l6691_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Malditos sean angry birds!! tengo que verlos hasta en los cheetos. Ya no quiero vivir en este planeta", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:58 +0000", "from_user": "DakiyaC", "from_user_id": 312188576, "from_user_id_str": "312188576", "from_user_name": "Dakiya curtis", "geo": null, "id": 148834724318691330, "id_str": "148834724318691329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "I've been using Angry Birds and I think you might like it. Check it out from your Android phone:\\nhttp://t.co/Rn5diQOv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:56 +0000", "from_user": "SirBlazeBlaze", "from_user_id": 38514060, "from_user_id_str": "38514060", "from_user_name": "Prince De' Oscar", "geo": null, "id": 148834719344246800, "id_str": "148834719344246784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693217460/Zz_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693217460/Zz_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Tru il just play angry birds anyways RT @PinkPillPopper @SirBlazeBlaze Bring it for the hell of it", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:38:56 +0000", "from_user": "bdyerr", "from_user_id": 258020001, "from_user_id_str": "258020001", "from_user_name": "Brendan Dyer", "geo": null, "id": 148834716563406850, "id_str": "148834716563406848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1574177042/303941_10150344203559544_577039543_8029042_1145078606_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1574177042/303941_10150344203559544_577039543_8029042_1145078606_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "summer evening, birds are calling", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:55 +0000", "from_user": "_MirianLeal", "from_user_id": 284519578, "from_user_id_str": "284519578", "from_user_name": "Mirian Leal", "geo": null, "id": 148834714856329200, "id_str": "148834714856329218", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1317122438/Mirian_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317122438/Mirian_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "P\\u00F4neis Malditos? Por que n\\u00E3o Angry Birds Malditos? #BigFollow: http://t.co/3QBiaHXK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:51 +0000", "from_user": "08blasop", "from_user_id": 332986860, "from_user_id_str": "332986860", "from_user_name": "Sophie Blackwell", "geo": null, "id": 148834697831649280, "id_str": "148834697831649280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702582705/111215-184912_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702582705/111215-184912_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "no one is free, even the birds are chained to the sky", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:50 +0000", "from_user": "HelloTricey", "from_user_id": 32753037, "from_user_id_str": "32753037", "from_user_name": "Patrice Powell", "geo": null, "id": 148834694069366800, "id_str": "148834694069366784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702355194/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702355194/image_normal.jpg", "source": "<a href="http://www.handmark.com" rel="nofollow">TweetCaster for iOS</a>", "text": "This shit is for the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:49 +0000", "from_user": "Keoniaaaa_", "from_user_id": 33141302, "from_user_id_str": "33141302", "from_user_name": "Ricky Todd's \\u2764", "geo": null, "id": 148834689392721920, "id_str": "148834689392721920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1624627675/IMG_0514_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624627675/IMG_0514_normal.JPG", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "Everything that I got, I got from slanging birds..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:48 +0000", "from_user": "Mariia_Vidal", "from_user_id": 367067815, "from_user_id_str": "367067815", "from_user_name": "Maria Vidal", "geo": null, "id": 148834682782482430, "id_str": "148834682782482432", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1590983653/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1590983653/image_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@Crispecab x lo mns aora m va bn el interneet y ma\\u00F1ana en dibujo podre jugar a los sims o al angry birds jajajajajajajajajajaja", "to_user": "Crispecab", "to_user_id": 404499708, "to_user_id_str": "404499708", "to_user_name": "Cristina Pe\\u00F1as", "in_reply_to_status_id": 148832170276945920, "in_reply_to_status_id_str": "148832170276945920"}, +{"created_at": "Mon, 19 Dec 2011 18:38:46 +0000", "from_user": "Hollywood_GB", "from_user_id": 52901890, "from_user_id_str": "52901890", "from_user_name": "LaDrena Hollywood", "geo": null, "id": 148834674716839940, "id_str": "148834674716839936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692347292/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692347292/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Are you shooting doves in yo backyard too?!? Lol \\u201C@MrToo_LIVE: Let me blast these watching ass birds out my sky real quick\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:39 +0000", "from_user": "32wilson32", "from_user_id": 249375401, "from_user_id_str": "249375401", "from_user_name": "James Wilson", "geo": null, "id": 148834647990738940, "id_str": "148834647990738945", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697098821/387895_10150581765823345_532153344_11827824_672071667_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697098821/387895_10150581765823345_532153344_11827824_672071667_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@RoryJDevlin all the birds on sky sports news are tidy!", "to_user": "RoryJDevlin", "to_user_id": 201429079, "to_user_id_str": "201429079", "to_user_name": "*Rory Devlin", "in_reply_to_status_id": 148833517818744830, "in_reply_to_status_id_str": "148833517818744832"}, +{"created_at": "Mon, 19 Dec 2011 18:38:36 +0000", "from_user": "AustynNestor", "from_user_id": 346589775, "from_user_id_str": "346589775", "from_user_name": "Austyn Nestor", "geo": null, "id": 148834633612673020, "id_str": "148834633612673024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697804141/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697804141/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @Mav23lb: @maddi651 @joeyrosas39 gosh you two love birds!! (:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:36 +0000", "from_user": "any_fuckin_way", "from_user_id": 143281374, "from_user_id_str": "143281374", "from_user_name": "- unKnown.", "geo": null, "id": 148834632962547700, "id_str": "148834632962547713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696819389/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696819389/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Everybody I talk to have anger problems, i guess birds of a feather really flock together", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:34 +0000", "from_user": "DannDraper", "from_user_id": 321625762, "from_user_id_str": "321625762", "from_user_name": "Daniel Cruz Valle", "geo": null, "id": 148834626830475260, "id_str": "148834626830475264", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1408567147/mad_men_cd_cover_325x325_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1408567147/mad_men_cd_cover_325x325_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Angry Birds y las torres gemelas http://t.co/iFivoINX v\\u00EDa @cuantocabron \\n\\nVi\\u00F1eta bestia donde las haya. Pero me he reido, y mucho.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:29 +0000", "from_user": "RO_PRETTY_BAD", "from_user_id": 236482070, "from_user_id_str": "236482070", "from_user_name": " R O ", "geo": null, "id": 148834605875728400, "id_str": "148834605875728385", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699287341/RO_PRETTY_BAD_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699287341/RO_PRETTY_BAD_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @NotoriousLIZ: 2011 was a bad year for birds............The feather earrings trend.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:29 +0000", "from_user": "ORoutdoors", "from_user_id": 256739612, "from_user_id_str": "256739612", "from_user_name": "Oregon Outdoors", "geo": null, "id": 148834602985865200, "id_str": "148834602985865217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1550571929/Oregon_Outdoors_Logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1550571929/Oregon_Outdoors_Logo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Oregon Outdoors for December: A day for the birds, Pat Wray and last-minute gifts for people who love the outdoors. http://t.co/AUyc6SHv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:27 +0000", "from_user": "AmirHawk", "from_user_id": 267215353, "from_user_id_str": "267215353", "from_user_name": " \\u00ABAMIR\\u00BB", "geo": null, "id": 148834596522430460, "id_str": "148834596522430464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700194262/IMG-20110801-00121-11_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700194262/IMG-20110801-00121-11_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "#Igetsoangry when playing angry birds. Hahaha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:27 +0000", "from_user": "Louracaux", "from_user_id": 426260722, "from_user_id_str": "426260722", "from_user_name": "Loura Emmert", "geo": null, "id": 148834594127482880, "id_str": "148834594127482881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668792937/LLCM-4006_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668792937/LLCM-4006_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@A_Smooov Go check out Pigeon Palooza (the next angry birds)- it's live in Android Mktplce - will be in ITunes next week.", "to_user": "A_Smooov", "to_user_id": 385221295, "to_user_id_str": "385221295", "to_user_name": "Aeryonna Keeling", "in_reply_to_status_id": 148833723054432260, "in_reply_to_status_id_str": "148833723054432256"}, +{"created_at": "Mon, 19 Dec 2011 18:38:25 +0000", "from_user": "TranFaist9342", "from_user_id": 437576689, "from_user_id_str": "437576689", "from_user_name": "Tran Faist", "geo": null, "id": 148834588649725950, "id_str": "148834588649725952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701209412/88335514619558_100803529951629_100000659473727_21243_2619881_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701209412/88335514619558_100803529951629_100000659473727_21243_2619881_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Good morninggggg sunshineee,,rainbow,,cloud, the birds and the bees, the air, the green leaf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:23 +0000", "from_user": "wowitsnate", "from_user_id": 330135873, "from_user_id_str": "330135873", "from_user_name": "Nate Nate ", "geo": null, "id": 148834578122022900, "id_str": "148834578122022912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1659075262/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659075262/image_normal.jpg", "source": "<a href="http://tweetlogix.com" rel="nofollow">Tweetlogix</a>", "text": "U gotta stop messing with them birds it's pretty ones out there RT @JusG_Lyons: @wowitsnate foh nate lmaoo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:22 +0000", "from_user": "irmanovianti20", "from_user_id": 184517197, "from_user_id_str": "184517197", "from_user_name": "irma novianti", "geo": null, "id": 148834576825991170, "id_str": "148834576825991168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702603186/IMG_4077__E5_89_AF_E6_9C_AC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702603186/IMG_4077__E5_89_AF_E6_9C_AC_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Point blankRT @GueMauTanya: Pilih (angry birds/ayo dance/mafia wars/point blank)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:21 +0000", "from_user": "King_Muh", "from_user_id": 343865825, "from_user_id_str": "343865825", "from_user_name": "Muhsin Abdullah", "geo": null, "id": 148834569293004800, "id_str": "148834569293004800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1465340966/148855_167538526598906_100000282782688_478628_8341211_n_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1465340966/148855_167538526598906_100000282782688_478628_8341211_n_1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@youngdour101 cuz these birds r 2 busy tryin 2 impress other bitches instead of focusing on whats really important.", "to_user": "youngdour101", "to_user_id": 278358371, "to_user_id_str": "278358371", "to_user_name": "YoungDour", "in_reply_to_status_id": 148833852658434050, "in_reply_to_status_id_str": "148833852658434050"}, +{"created_at": "Mon, 19 Dec 2011 18:38:21 +0000", "from_user": "Bkxtcxhk", "from_user_id": 440615777, "from_user_id_str": "440615777", "from_user_name": "Bkxtcxhkx", "geo": null, "id": 148834568760340480, "id_str": "148834568760340480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MrKattWilliams: I was masturbating in a Tree, then my sperm dropped on somebody head, then the person said.....\"I HATE WHEN BIRDS SHIT ON ME!!!\" =)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:18 +0000", "from_user": "shelamvpersaud", "from_user_id": 277865338, "from_user_id_str": "277865338", "from_user_name": "shela persaud", "geo": null, "id": 148834558832414720, "id_str": "148834558832414720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1609129352/1142112_relaxing_girl_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609129352/1142112_relaxing_girl_2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Floral Friends - Humming Birds and Flowers: 3.5 Gallon tin filed with Popcorn World's original Vanilla Butter w/... http://t.co/LCqES5W4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:18 +0000", "from_user": "nickihwoolford", "from_user_id": 277702045, "from_user_id_str": "277702045", "from_user_name": "nicki woolford", "geo": null, "id": 148834557368602620, "id_str": "148834557368602624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1609136381/1149929_pet_wedding_2009_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609136381/1149929_pet_wedding_2009_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Floral Friends - Humming Birds and Flowers: 3.5 Gallon tin filed with Popcorn World's original Vanilla Butter w/... http://t.co/HecpS72b", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:18 +0000", "from_user": "brittapcwaldo", "from_user_id": 277702015, "from_user_id_str": "277702015", "from_user_name": "britta waldo", "geo": null, "id": 148834557104373760, "id_str": "148834557104373760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1609137232/1153964_red_pullover_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609137232/1153964_red_pullover_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Floral Friends - Humming Birds and Flowers: 3.5 Gallon tin filed with Popcorn World's original Vanilla Butter w/... http://t.co/3zQgfAP2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:17 +0000", "from_user": "sherrievlkeure", "from_user_id": 277925025, "from_user_id_str": "277925025", "from_user_name": "sherrie eure", "geo": null, "id": 148834554910736400, "id_str": "148834554910736384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1609138413/1159804_miss_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609138413/1159804_miss_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Floral Friends - Humming Birds and Flowers: 3.5 Gallon tin filed with Popcorn World's original Vanilla Butter w/... http://t.co/FDUqD3dZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:16 +0000", "from_user": "LablanchFanny", "from_user_id": 321335111, "from_user_id_str": "321335111", "from_user_name": "Lablanche Fanny", "geo": null, "id": 148834550317989900, "id_str": "148834550317989889", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1411130926/Photo_08_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1411130926/Photo_08_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "RT @KernRiverPrsrv: This Red-shouldered Hawk was spotted on the Bakersfield Christmas Bird Count. These birds are riparian obligates... http://t.co/65oNMpMa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:15 +0000", "from_user": "_DiiegoCamargo", "from_user_id": 319310772, "from_user_id_str": "319310772", "from_user_name": "Diego Camargo", "geo": null, "id": 148834545209319420, "id_str": "148834545209319424", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1400691428/Mor_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1400691428/Mor_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "carai hoje tem nada aqui no trampo to jogando angry birds dia todo kkk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:14 +0000", "from_user": "vtvolleygirl", "from_user_id": 248749820, "from_user_id_str": "248749820", "from_user_name": "Eva Zajkowski", "geo": null, "id": 148834539215659000, "id_str": "148834539215659008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "<%= encodeURIComponent(document.title) %> http://t.co/2F6I7xNz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:13 +0000", "from_user": "michael_hersh", "from_user_id": 251347199, "from_user_id_str": "251347199", "from_user_name": "Michael Hersh", "geo": null, "id": 148834538531987460, "id_str": "148834538531987456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1606400524/linked_in_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606400524/linked_in_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@benjaminwest11 I can't believe you stole all your dads birds! #iveseenyouplaybuckhunter @spawningsalmon @chaz9908", "to_user": "benjaminwest11", "to_user_id": 227196264, "to_user_id_str": "227196264", "to_user_name": "Benjamin Carroll"}, +{"created_at": "Mon, 19 Dec 2011 18:38:13 +0000", "from_user": "giagoesrawr", "from_user_id": 40433093, "from_user_id_str": "40433093", "from_user_name": "lord voldemort.", "geo": null, "id": 148834535193317380, "id_str": "148834535193317378", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1675877583/snapshot22_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675877583/snapshot22_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@flyingspagetti no, I didn't. But you did, so it's like killing two birds with one stone.....actually I don't even know what I said. okay.", "to_user": "flyingspagetti", "to_user_id": 54721369, "to_user_id_str": "54721369", "to_user_name": "Philip Thearle", "in_reply_to_status_id": 148833783452401660, "in_reply_to_status_id_str": "148833783452401664"}, +{"created_at": "Mon, 19 Dec 2011 18:38:10 +0000", "from_user": "brandyjackson", "from_user_id": 14147120, "from_user_id_str": "14147120", "from_user_name": "brandyjackson", "geo": null, "id": 148834526456586240, "id_str": "148834526456586241", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1565431521/finals-04_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1565431521/finals-04_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Love birds successfully moved to the winter pasture.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:08 +0000", "from_user": "Alidasao", "from_user_id": 426261441, "from_user_id_str": "426261441", "from_user_name": "Alida Hartfield", "geo": null, "id": 148834514364416000, "id_str": "148834514364416000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668795613/LLCM-0715_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668795613/LLCM-0715_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Kimbabe92 Ya must check out Pigeon Palooza (the next angry birds)- it's in Android Mktplce - will be in App Store next week.", "to_user": "Kimbabe92", "to_user_id": 296493749, "to_user_id_str": "296493749", "to_user_name": "Kimberly Irene \\u2665", "in_reply_to_status_id": 148812904290983940, "in_reply_to_status_id_str": "148812904290983937"}, +{"created_at": "Mon, 19 Dec 2011 18:38:06 +0000", "from_user": "HeelsOverSneaks", "from_user_id": 179865691, "from_user_id_str": "179865691", "from_user_name": "Sunshine Shante'", "geo": null, "id": 148834508223938560, "id_str": "148834508223938560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1632808146/sitedit_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632808146/sitedit_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @liloozie3: \\u201C@HeelsOverSneaks: Worrying is for the birds...\\u201D exactly", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:06 +0000", "from_user": "lucashit_", "from_user_id": 108970175, "from_user_id_str": "108970175", "from_user_name": "Lucas Tonatto ", "geo": null, "id": 148834506193907700, "id_str": "148834506193907712", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681954917/problem_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681954917/problem_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "acho que vou ir jogar angry birds............ rsrs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:58 +0000", "from_user": "haynes_amy", "from_user_id": 69233444, "from_user_id_str": "69233444", "from_user_name": "Amy-Lee Haynes", "geo": null, "id": 148834475093147650, "id_str": "148834475093147648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702597686/Picture_335_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702597686/Picture_335_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "birds by kate nash is a beautiful song.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:57 +0000", "from_user": "Justbirds1", "from_user_id": 291680688, "from_user_id_str": "291680688", "from_user_name": "Bev", "geo": null, "id": 148834470605238270, "id_str": "148834470605238273", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1335631073/5261855304_0f68f9ba91_m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335631073/5261855304_0f68f9ba91_m_normal.jpg", "source": "<a href="http://www.twaitter.com" rel="nofollow">Twaitter</a>", "text": "Immature Bald Eagle http://t.co/MmUxDVoR #birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:56 +0000", "from_user": "Kyle_DaGiant", "from_user_id": 167625419, "from_user_id_str": "167625419", "from_user_name": "Kyle Randolph ", "geo": null, "id": 148834465500770300, "id_str": "148834465500770306", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1370613593/dorm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1370613593/dorm_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Honestly this shit is for the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:55 +0000", "from_user": "QuieroAmor_", "from_user_id": 168745362, "from_user_id_str": "168745362", "from_user_name": "Quita Williams", "geo": null, "id": 148834463307145200, "id_str": "148834463307145216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1682569754/bamagrl_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682569754/bamagrl_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": ":(\\nThat sucks. All 4 of em? RT @_DonDizzle_: Just got my wisdom teeth pulled smh this shit is for the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:54 +0000", "from_user": "Photobug52", "from_user_id": 90379242, "from_user_id_str": "90379242", "from_user_name": "Alan S Hochman Photo", "geo": null, "id": 148834458236227600, "id_str": "148834458236227584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/741189496/P1010013crop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/741189496/P1010013crop_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Red-winged Blackbird at HoleyLand WMA http://t.co/3pdjsq2M #bird #birding #birds #blackbird Visit http://t.co/VdlG7gZ2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:53 +0000", "from_user": "NotoriousLIZ", "from_user_id": 102583149, "from_user_id_str": "102583149", "from_user_name": "Liz. That's All", "geo": null, "id": 148834452624244740, "id_str": "148834452624244736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698869669/Photo_on_2011-12-17_at_14.41__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698869669/Photo_on_2011-12-17_at_14.41__2_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "2011 was a bad year for birds............The feather earrings trend.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:49 +0000", "from_user": "ipreferEmily", "from_user_id": 225165934, "from_user_id_str": "225165934", "from_user_name": "Emma Campbell", "geo": null, "id": 148834435150790660, "id_str": "148834435150790657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1594318721/emma_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1594318721/emma_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Ashwaah you always pick up the old birds lmaox", "to_user": "Ashwaah", "to_user_id": 109073773, "to_user_id_str": "109073773", "to_user_name": "Ashley Campbell", "in_reply_to_status_id": 148834323305476100, "in_reply_to_status_id_str": "148834323305476097"}, +{"created_at": "Mon, 19 Dec 2011 18:37:47 +0000", "from_user": "QianRuisha", "from_user_id": 357651555, "from_user_id_str": "357651555", "from_user_name": "Ruisha Qian", "geo": null, "id": 148834428947406850, "id_str": "148834428947406848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1613303799/AnneGreenGables2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1613303799/AnneGreenGables2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@xiamer_a99 They have pigeons; we have a rooster! We both have birds...", "to_user": "xiamer_a99", "to_user_id": 351705075, "to_user_id_str": "351705075", "to_user_name": "Xia Jiang", "in_reply_to_status_id": 148807642666643460, "in_reply_to_status_id_str": "148807642666643456"}, +{"created_at": "Mon, 19 Dec 2011 18:37:45 +0000", "from_user": "TheRealMiffy", "from_user_id": 214829477, "from_user_id_str": "214829477", "from_user_name": "Thomas Highfield", "geo": null, "id": 148834420097433600, "id_str": "148834420097433600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1615480345/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615480345/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@benrobbo1989 @sarah_duffey @danallinson1 there would be pints and birds flying all over with robbo out #bigbackattack", "to_user": "benrobbo1989", "to_user_id": 196140233, "to_user_id_str": "196140233", "to_user_name": "Ben Robinson", "in_reply_to_status_id": 148834195685392400, "in_reply_to_status_id_str": "148834195685392385"}, +{"created_at": "Mon, 19 Dec 2011 18:37:44 +0000", "from_user": "DearOldPuchiex3", "from_user_id": 132352718, "from_user_id_str": "132352718", "from_user_name": "Sharilyn Figueroa", "geo": null, "id": 148834414573531140, "id_str": "148834414573531137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1628968345/Puchie_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628968345/Puchie_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for iPhone</a>", "text": "i swear i never seen soo many birds in my life !!!!!!!! -.-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:43 +0000", "from_user": "Joe_Odwyer11", "from_user_id": 332812240, "from_user_id_str": "332812240", "from_user_name": "Joey O'Dwyer.", "geo": null, "id": 148834411222286340, "id_str": "148834411222286337", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701247435/DSCF2712_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701247435/DSCF2712_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@MikeWilson95 where was you off? Getting ye birds present", "to_user": "MikeWilson95", "to_user_id": 316425980, "to_user_id_str": "316425980", "to_user_name": "Michael Wilson", "in_reply_to_status_id": 148833713944399870, "in_reply_to_status_id_str": "148833713944399872"}, +{"created_at": "Mon, 19 Dec 2011 18:37:33 +0000", "from_user": "asliiakkus", "from_user_id": 250741192, "from_user_id_str": "250741192", "from_user_name": "Asl\\u0131 Akku\\u015F", "geo": null, "id": 148834369954512900, "id_str": "148834369954512896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1492074549/makeover__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1492074549/makeover__1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Angry Birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:30 +0000", "from_user": "Raspberrih", "from_user_id": 120424576, "from_user_id_str": "120424576", "from_user_name": "Helen Raspberrih", "geo": null, "id": 148834357866528770, "id_str": "148834357866528768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1599292270/180720112378_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599292270/180720112378_normal.jpg", "source": "<a href="http://sgBEAT.com/" rel="nofollow">sgBEAT</a>", "text": "I hear birds chirping outside my window. It's not even 3 a.m.... It's abnormal. But I wouldn't know.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:29 +0000", "from_user": "PhiIipKross", "from_user_id": 362645563, "from_user_id_str": "362645563", "from_user_name": "Philip Kross", "geo": null, "id": 148834351898038270, "id_str": "148834351898038272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1618344844/NEW_Philip_Kross_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618344844/NEW_Philip_Kross_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Fuck yo\\u00FC birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:27 +0000", "from_user": "manuubritto", "from_user_id": 377075932, "from_user_id_str": "377075932", "from_user_name": "Manuela Britto", "geo": null, "id": 148834342033047550, "id_str": "148834342033047552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693614578/304026_2623892846129_1519493190_2769400_1395715431_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693614578/304026_2623892846129_1519493190_2769400_1395715431_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "genteee n sei jogos p. baixar no iphone!!! so tenho hellkid angry birds e kamikazeee race", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:26 +0000", "from_user": "CorpusTXDaily", "from_user_id": 193192262, "from_user_id_str": "193192262", "from_user_name": "Corpus Christi", "geo": null, "id": 148834339206082560, "id_str": "148834339206082560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1178881319/Corpus_Christi__TX_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1178881319/Corpus_Christi__TX_normal.jpg", "source": "<a href="http://www.snsanalytics.com" rel="nofollow">SNS Analytics</a>", "text": "Christmas time brings thankful thoughts of birds, friends, family http://t.co/O1chs7se", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:25 +0000", "from_user": "babyDollVIXENN", "from_user_id": 230637741, "from_user_id_str": "230637741", "from_user_name": "r.i.p. Gunnaaa!", "geo": null, "id": 148834336668516350, "id_str": "148834336668516352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1651865233/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651865233/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "everything I got I got frm slangin birds !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:25 +0000", "from_user": "ShootinStarHeta", "from_user_id": 202118593, "from_user_id_str": "202118593", "from_user_name": "Heta Bhuta", "geo": null, "id": 148834334831415300, "id_str": "148834334831415296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1143763009/46946_1602343745304_1437390687_1582738_5968243_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1143763009/46946_1602343745304_1437390687_1582738_5968243_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "#thatawkwardmoment when your mother knows how to play angry birds & fruit ninja! But she won't know how to check her mail!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:25 +0000", "from_user": "DREAMCHASERS911", "from_user_id": 400430924, "from_user_id_str": "400430924", "from_user_name": "Dominic Bonner", "geo": null, "id": 148834334705582080, "id_str": "148834334705582080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701481092/00GTC6pt_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701481092/00GTC6pt_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "(Birds eye view) second day n a row i seen a hawk swoop dwn on it's pray (mustmeansumthin).... @DrewLocOnIt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:19 +0000", "from_user": "AJj3311", "from_user_id": 394721487, "from_user_id_str": "394721487", "from_user_name": "Jake", "geo": null, "id": 148834308495376400, "id_str": "148834308495376384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1597928971/25372_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1597928971/25372_normal.JPG", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "A #Photo of #Two #Birds on the #Bank\\thttp://t.co/z0TgOBBZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:18 +0000", "from_user": "MatthewSlaney", "from_user_id": 107132185, "from_user_id_str": "107132185", "from_user_name": "Matthew Slaney", "geo": null, "id": 148834308054990850, "id_str": "148834308054990848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1660980394/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660980394/Untitled_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "My two favourite birds 'Don't put it on facebook' she cried 'twitter is ok' http://t.co/iQ041ii6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:10 +0000", "from_user": "BrookeSachaLove", "from_user_id": 258320462, "from_user_id_str": "258320462", "from_user_name": "SophLouise1D", "geo": null, "id": 148834272168525820, "id_str": "148834272168525824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700233294/Niallster.x_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700233294/Niallster.x_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Gonna get up early tomorrow and make sure that I'm ready for this morning to see the birds @SachaLParkinson and @BrookeLVincent :) xx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:07 +0000", "from_user": "auro_mendez", "from_user_id": 82730896, "from_user_id_str": "82730896", "from_user_name": "Aurora M\\u00E9ndez \\u2714", "geo": null, "id": 148834259891785730, "id_str": "148834259891785728", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702607721/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702607721/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Pensandolo bien, quien necesita amor cuando tienes un iPhone y angry birds en el!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:07 +0000", "from_user": "_giuliameneguci", "from_user_id": 238784211, "from_user_id_str": "238784211", "from_user_name": "Giulia Meneguci", "geo": null, "id": 148834258235039740, "id_str": "148834258235039745", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1658144998/sitio24_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658144998/sitio24_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "vou jogar agry birds e depois guitar hero", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:04 +0000", "from_user": "Dr_CorneliusZ16", "from_user_id": 417215494, "from_user_id_str": "417215494", "from_user_name": "Thomas Cornelius", "geo": null, "id": 148834247350820860, "id_str": "148834247350820864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700542265/2011-12-18_13.00.15_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700542265/2011-12-18_13.00.15_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Everything that I got I got from slangin birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:01 +0000", "from_user": "AmberLei_YaDigg", "from_user_id": 318458378, "from_user_id_str": "318458378", "from_user_name": "L.A's Very Own", "geo": null, "id": 148834233908084740, "id_str": "148834233908084736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688157496/Snapshot_20111209_3_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688157496/Snapshot_20111209_3_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "#NP Three Little Birds by: Bob Marley. This beat is frikken AMAZING!!! <3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:56 +0000", "from_user": "HOLLEYWOODSWING", "from_user_id": 233722732, "from_user_id_str": "233722732", "from_user_name": "Boss Holley", "geo": null, "id": 148834215423770620, "id_str": "148834215423770624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1657726369/2GITSBIT_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657726369/2GITSBIT_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@BeauDEEful_252 the birds duh slow ass", "to_user": "BeauDEEful_252", "to_user_id": 385814400, "to_user_id_str": "385814400", "to_user_name": "Deana Clayton", "in_reply_to_status_id": 148833090259787780, "in_reply_to_status_id_str": "148833090259787776"}, +{"created_at": "Mon, 19 Dec 2011 18:36:55 +0000", "from_user": "IDontKnowBro", "from_user_id": 241652458, "from_user_id_str": "241652458", "from_user_name": "Ck Rojas", "geo": null, "id": 148834211288195070, "id_str": "148834211288195074", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1578715524/295855_1925012854205_1508650348_31625903_6134396_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1578715524/295855_1925012854205_1508650348_31625903_6134396_n_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "The sub is talking to me about Fruit Ninja & Angry Birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:48 +0000", "from_user": "Thecoupongirlz", "from_user_id": 202482024, "from_user_id_str": "202482024", "from_user_name": "Michelle", "geo": null, "id": 148834181605109760, "id_str": "148834181605109760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1293729863/coupongirlz_design_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1293729863/coupongirlz_design_normal.JPG", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Free Angry Birds App http://t.co/Pnnmx3Gb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:48 +0000", "from_user": "BIGDIP730AFB", "from_user_id": 55632636, "from_user_id_str": "55632636", "from_user_name": "Dip ", "geo": null, "id": 148834179461808130, "id_str": "148834179461808128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681765931/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681765931/profile_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @ReginaRenea: Birds of a feather...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:44 +0000", "from_user": "kesterpoh", "from_user_id": 26999915, "from_user_id_str": "26999915", "from_user_name": "Kester Poh", "geo": null, "id": 148834161946398720, "id_str": "148834161946398720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702509331/k1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702509331/k1_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "RT @TechCrunch: Video: The Interactive Angry Birds Christmas Lights Game http://t.co/LJDcavsv by @mjburnsy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:41 +0000", "from_user": "Alberteaux", "from_user_id": 16028797, "from_user_id_str": "16028797", "from_user_name": "Ordaz", "geo": null, "id": 148834151527755780, "id_str": "148834151527755776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1620054155/movember_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620054155/movember_normal.png", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Well nice besides the atmosphere being half JAWS, half The Birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:40 +0000", "from_user": "Renerucn", "from_user_id": 426261959, "from_user_id_str": "426261959", "from_user_name": "Rene Henao", "geo": null, "id": 148834145781547000, "id_str": "148834145781547009", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668797651/LLCM-0795_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668797651/LLCM-0795_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@RawaniiAQ Ya gotta get Pigeon Palooza (the next angry birds)- it's in Android Mktplce - should be in ITunes soon.", "to_user": "RawaniiAQ", "to_user_id": 425888203, "to_user_id_str": "425888203", "to_user_name": "Rawanii\\u03A8*", "in_reply_to_status_id": 148820061052866560, "in_reply_to_status_id_str": "148820061052866560"}, +{"created_at": "Mon, 19 Dec 2011 18:36:38 +0000", "from_user": "bcsanswers", "from_user_id": 17539105, "from_user_id_str": "17539105", "from_user_name": "BeachChair Scientist", "geo": null, "id": 148834140622557200, "id_str": "148834140622557187", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1408278138/bcssmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1408278138/bcssmall_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Flock Of Birds Mistake Walmart Parking Lot For Pond http://t.co/07ZKXNDn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:34 +0000", "from_user": "CKintheMJ", "from_user_id": 14361998, "from_user_id_str": "14361998", "from_user_name": "Cory K", "geo": null, "id": 148834123463667700, "id_str": "148834123463667712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1119214081/Cory_Vandy_hat_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1119214081/Cory_Vandy_hat_normal.JPG", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Birds, like humans, clearly prefer clean places to poop. My freshly-washed car is proof.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:30 +0000", "from_user": "BangzXReshia143", "from_user_id": 214809561, "from_user_id_str": "214809561", "from_user_name": "- Reshia's Husband \\u2665", "geo": null, "id": 148834105415577600, "id_str": "148834105415577600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1692543624/IMG244_-_Anne_Rain_Film_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692543624/IMG244_-_Anne_Rain_Film_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "All the birds peck my woody o_O", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:29 +0000", "from_user": "bwavey_617", "from_user_id": 438102308, "from_user_id_str": "438102308", "from_user_name": "billygana", "geo": null, "id": 148834102144016400, "id_str": "148834102144016384", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698955107/Photo_on_2011-10-18_at_19.25_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698955107/Photo_on_2011-10-18_at_19.25_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @PatrickPiff: Exx gfs = Angry Birds #hahahaha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:28 +0000", "from_user": "ReginaRenea", "from_user_id": 35067378, "from_user_id_str": "35067378", "from_user_name": "ReginaRenea", "geo": null, "id": 148834094673965060, "id_str": "148834094673965056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1570343484/profile_image_1317608162548_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1570343484/profile_image_1317608162548_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Birds of a feather...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:25 +0000", "from_user": "pablin_foster", "from_user_id": 340294447, "from_user_id_str": "340294447", "from_user_name": "Pablo Garcia Anton", "geo": null, "id": 148834084435669000, "id_str": "148834084435668993", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1479283818/chicholonso_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1479283818/chicholonso_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Jugando al Angry Birds con el ordenador podeis instalarlo con el #Chrome", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:25 +0000", "from_user": "jimmysujimmy26", "from_user_id": 261854120, "from_user_id_str": "261854120", "from_user_name": "northland ", "geo": null, "id": 148834083793936400, "id_str": "148834083793936384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1267023033/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1267023033/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Video: Angry Birds Chistmas Lights Game http://t.co/sOPiyIAf via @GeohotJailbreak\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:22 +0000", "from_user": "_BossManDouley", "from_user_id": 231961124, "from_user_id_str": "231961124", "from_user_name": "\\u2708OhSoSLUTTY\\u2708", "geo": null, "id": 148834070271496200, "id_str": "148834070271496192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694782246/redskins_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694782246/redskins_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Games like Temple runner , and angry birds are so addiciting moe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:18 +0000", "from_user": "zacaFK", "from_user_id": 208750320, "from_user_id_str": "208750320", "from_user_name": "@zaca", "geo": null, "id": 148834056241549300, "id_str": "148834056241549313", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679999786/Dup_1_Foto-0008_-_C_pia_-_C_pia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679999786/Dup_1_Foto-0008_-_C_pia_-_C_pia_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "P\\u00F4neis Malditos? Por que n\\u00E3o Angry Birds Malditos? #BigFollow: http://t.co/Z832IhDt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:17 +0000", "from_user": "Britton_Hunter", "from_user_id": 382857413, "from_user_id_str": "382857413", "from_user_name": "Britton Piatt", "geo": null, "id": 148834051267104770, "id_str": "148834051267104768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674313039/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674313039/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "@T_Thieman I finished the exam in 20 effin' minutes. Now We have to sit here for an hour, playing angry birds! #mylifesucks", "to_user": "T_Thieman", "to_user_id": 421987428, "to_user_id_str": "421987428", "to_user_name": "Taylor Thieman"}, +{"created_at": "Mon, 19 Dec 2011 18:36:16 +0000", "from_user": "RoO_Osornio", "from_user_id": 128390583, "from_user_id_str": "128390583", "from_user_name": "rodrigo osornio", "geo": null, "id": 148834046879866880, "id_str": "148834046879866880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1185260691/Foto0076_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1185260691/Foto0076_normal.jpg", "source": "<a href="http://twitpic.com" rel="nofollow">Twitpic</a>", "text": "angry birds!! http://t.co/dk9mqB5Z", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:13 +0000", "from_user": "Jaimeengql", "from_user_id": 426262582, "from_user_id_str": "426262582", "from_user_name": "Jaimee Goldman", "geo": null, "id": 148834035634937860, "id_str": "148834035634937857", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668798708/LLCM-3633_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668798708/LLCM-3633_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Wiekeehh Ya must check out Pigeon Palooza (the next angry birds)- it's avail in Android Mktplce - will be in App Store in a few days.", "to_user": "Wiekeehh", "to_user_id": 436810108, "to_user_id_str": "436810108", "to_user_name": "Wieke de Jager", "in_reply_to_status_id": 148808563219902460, "in_reply_to_status_id_str": "148808563219902464"}, +{"created_at": "Mon, 19 Dec 2011 18:36:13 +0000", "from_user": "zacaFK", "from_user_id": 208750320, "from_user_id_str": "208750320", "from_user_name": "@zaca", "geo": null, "id": 148834035521687550, "id_str": "148834035521687552", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679999786/Dup_1_Foto-0008_-_C_pia_-_C_pia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679999786/Dup_1_Foto-0008_-_C_pia_-_C_pia_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "P\\u00F4neis Malditos? Por que n\\u00E3o Angry Birds Malditos? #BigFollow: http://t.co/wBLmj9Me", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:13 +0000", "from_user": "AyliaMichelle", "from_user_id": 206959366, "from_user_id_str": "206959366", "from_user_name": "Aylia Lawyer", "geo": null, "id": 148834034884157440, "id_str": "148834034884157440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684548510/Picture_113_-_Copyedited_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684548510/Picture_113_-_Copyedited_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "my feet hurt ughhhhhhhhhhhh this wearing heels bit is for the BIRDS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:11 +0000", "from_user": "Kaligigi", "from_user_id": 426265713, "from_user_id_str": "426265713", "from_user_name": "Kali Talsma", "geo": null, "id": 148834026445221900, "id_str": "148834026445221889", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668805839/LLCM-2689_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668805839/LLCM-2689_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@maidy_rivera Ya must check out Pigeon Palooza (the next angry birds)- it's launched in Android Mktplce - will be in App Store next week.", "to_user": "maidy_rivera", "to_user_id": 353936763, "to_user_id_str": "353936763", "to_user_name": "maidylee\\u2122", "in_reply_to_status_id": 148805875879002100, "in_reply_to_status_id_str": "148805875879002114"}, +{"created_at": "Mon, 19 Dec 2011 18:36:10 +0000", "from_user": "auro_mendez", "from_user_id": 82730896, "from_user_id_str": "82730896", "from_user_name": "Aurora M\\u00E9ndez \\u2714", "geo": null, "id": 148834023194632200, "id_str": "148834023194632192", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702607721/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702607721/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "A mi conquistase teniendo angry birds en tu iPhone, tu amor que?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:08 +0000", "from_user": "KatherineFletch", "from_user_id": 233294134, "from_user_id_str": "233294134", "from_user_name": "Katherine Fletcher", "geo": null, "id": 148834014365614080, "id_str": "148834014365614080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1669986622/KLF_6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669986622/KLF_6_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @RachChilcatMEOW: So guys, lets talk turkeys. They lay eggs, right, cos' all birds do.. But who's ever heard of a turkey egg? Ponder this.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:08 +0000", "from_user": "steviem206", "from_user_id": 259934377, "from_user_id_str": "259934377", "from_user_name": "hugh jarse", "geo": null, "id": 148834011949703170, "id_str": "148834011949703168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1365615908/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1365615908/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Yaco1872 sound guy his birds dad is a good friend of mine \\n\\nThey're all going for a beer or 8 tonight I've got manflu so won't make it", "to_user": "Yaco1872", "to_user_id": 222273508, "to_user_id_str": "222273508", "to_user_name": "Ginga Ninja", "in_reply_to_status_id": 148832792615206900, "in_reply_to_status_id_str": "148832792615206914"}, +{"created_at": "Mon, 19 Dec 2011 18:36:08 +0000", "from_user": "RockyTopFan8", "from_user_id": 306298014, "from_user_id_str": "306298014", "from_user_name": "Paul Morrow", "geo": null, "id": 148834010821431300, "id_str": "148834010821431297", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1442897415/20091212225550_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1442897415/20091212225550_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Saints-all that bullshit is for the birds throw some bread out. GO FALCONS!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:07 +0000", "from_user": "wordsallowed", "from_user_id": 102754563, "from_user_id_str": "102754563", "from_user_name": "Susan Grossman", "geo": null, "id": 148834010389413900, "id_str": "148834010389413888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1609033480/SGMar_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609033480/SGMar_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "#Twitchers. Spoon billed sandpiper one of world's most threatened birds is now out of quarantine at Slimbridge Glos http://t.co/ENahNel7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:05 +0000", "from_user": "Frank140466", "from_user_id": 233160579, "from_user_id_str": "233160579", "from_user_name": "Frank de Heer", "geo": null, "id": 148833999693950980, "id_str": "148833999693950976", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1444300458/me_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1444300458/me_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@ericvanooijen 25000 angry birds .", "to_user": "ericvanooijen", "to_user_id": 116182050, "to_user_id_str": "116182050", "to_user_name": "eric van ooijen", "in_reply_to_status_id": 148798166144270340, "in_reply_to_status_id_str": "148798166144270338"}, +{"created_at": "Mon, 19 Dec 2011 18:35:56 +0000", "from_user": "britishbulldog", "from_user_id": 15352066, "from_user_id_str": "15352066", "from_user_name": "steve speirs", "geo": null, "id": 148833963773923330, "id_str": "148833963773923329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1632260639/steve_gibbet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632260639/steve_gibbet_normal.jpg", "source": "<a href="http://www.dailymile.com" rel="nofollow">dailymile</a>", "text": "Ran 6.23 miles in 45 mins and felt good. Nice little leg stretcher. A tad breezy, and the thousands of birds at the ... http://t.co/sdZeMgoW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:47 +0000", "from_user": "MrToo_LIVE", "from_user_id": 51924415, "from_user_id_str": "51924415", "from_user_name": "That LIVE #Rattler", "geo": null, "id": 148833926629171200, "id_str": "148833926629171200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1604799022/7rhDyBtX_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1604799022/7rhDyBtX_normal", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Let me blast these watching ass birds out my sky real quick", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:47 +0000", "from_user": "TFNY_", "from_user_id": 135092729, "from_user_id_str": "135092729", "from_user_name": "TfnyDllPrdn", "geo": null, "id": 148833923189833730, "id_str": "148833923189833728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696371852/IMG0002n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696371852/IMG0002n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Can not sleep.And still playing Angry Birds huahaha-_-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:44 +0000", "from_user": "RunBeanRun", "from_user_id": 127134990, "from_user_id_str": "127134990", "from_user_name": "Bean", "geo": null, "id": 148833911055720450, "id_str": "148833911055720449", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702195437/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702195437/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "18-8 on Angry Birds is going to lead to a heroin addiction. Been stuck on it for three days.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:43 +0000", "from_user": "nouvellevalery", "from_user_id": 268924821, "from_user_id_str": "268924821", "from_user_name": "Valeria Dmntvskaya", "geo": null, "id": 148833905892528130, "id_str": "148833905892528129", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681247966/___________2011-12-06___22.48_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681247966/___________2011-12-06___22.48_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "\\u0447\\u0442\\u043E\\u0431\\u044B \\u0432\\u0438\\u0434\\u0435\\u0442\\u044C\\u0441\\u044F \\u0447\\u0430\\u0449\\u0435 \\u0441 \\u043D\\u0435\\u043A\\u043E\\u0442\\u043E\\u0440\\u044B\\u043C\\u0438 \\u043B\\u044E\\u0434\\u044C\\u043C\\u0438, \\u043F\\u0440\\u0438\\u0445\\u043E\\u0434\\u0438\\u0442\\u0441\\u044F \\u0441\\u043A\\u0430\\u0447\\u0438\\u0432\\u0430\\u0442\\u044C angry birds \\u043D\\u0430 \\u0430\\u0439\\u0444\\u043E\\u043D. \\u0441\\u0443\\u0440\\u043E\\u0432\\u044B\\u0435 \\u0440\\u0435\\u0430\\u043B\\u0438\\u0438 \\u0436\\u0438\\u0437\\u043D\\u0438.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:42 +0000", "from_user": "Golfnut77777", "from_user_id": 368479708, "from_user_id_str": "368479708", "from_user_name": "Todd Holt", "geo": null, "id": 148833904063819780, "id_str": "148833904063819776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1530192049/PICT0047-800x600_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1530192049/PICT0047-800x600_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@CJAY92 Russman, Cathedral is across the street from me. Tell the road crew girls to stop in at Berry Flooring. Kill 2 birds with 1 stone", "to_user": "CJAY92", "to_user_id": 171657474, "to_user_id_str": "171657474", "to_user_name": "CJAY 92"}, +{"created_at": "Mon, 19 Dec 2011 18:35:40 +0000", "from_user": "MyWorkOfart1", "from_user_id": 321625240, "from_user_id_str": "321625240", "from_user_name": "MyWork Ofart", "geo": null, "id": 148833896195301380, "id_str": "148833896195301376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1406887810/Uncle_Sam_-_Cartoon_4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1406887810/Uncle_Sam_-_Cartoon_4_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "This is a #Photo of a #Cardinal and a #Blue #Bird in a #Yard-#Birds\\thttp://t.co/bWXR0qQF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:40 +0000", "from_user": "BartRossieau", "from_user_id": 71055234, "from_user_id_str": "71055234", "from_user_name": "Bart Rossieau", "geo": null, "id": 148833893745823740, "id_str": "148833893745823745", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1072409167/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1072409167/twitter_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@chrisbellekom @wvdeerenbeemt Jij maakt er weer een Birds-achtig, Hitchcock-ding van! :-)", "to_user": "chrisbellekom", "to_user_id": 50940718, "to_user_id_str": "50940718", "to_user_name": "Chris Bellekom", "in_reply_to_status_id": 148828527943360500, "in_reply_to_status_id_str": "148828527943360512"}, +{"created_at": "Mon, 19 Dec 2011 18:35:39 +0000", "from_user": "23cutie", "from_user_id": 39500968, "from_user_id_str": "39500968", "from_user_name": "dominique", "geo": null, "id": 148833892575617020, "id_str": "148833892575617024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1642635626/9sjxbH1z_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642635626/9sjxbH1z_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@sexipink1 yes it was packed lol I would def go back but not with tiff and trina lol their some early birds", "to_user": "sexipink1", "to_user_id": 349862693, "to_user_id_str": "349862693", "to_user_name": "Shay davis", "in_reply_to_status_id": 148833541831135230, "in_reply_to_status_id_str": "148833541831135232"}, +{"created_at": "Mon, 19 Dec 2011 18:35:39 +0000", "from_user": "emmybelle9", "from_user_id": 213873951, "from_user_id_str": "213873951", "from_user_name": "Emmy ", "geo": null, "id": 148833891912925200, "id_str": "148833891912925184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1303207318/ja_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1303207318/ja_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "Packed my movies away :/ now my biggest distraction is Angry Birds lol #worldsbestprocrastinator", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:35 +0000", "from_user": "DD072906AH", "from_user_id": 166859180, "from_user_id_str": "166859180", "from_user_name": "David D.", "geo": null, "id": 148833875454476300, "id_str": "148833875454476289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1388242484/Smiley_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1388242484/Smiley_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@BadWolfDre sounds good. Maybe if @ASHnairda could drop off her pc, two birds, one stone:)", "to_user": "BadWolfDre", "to_user_id": 33889526, "to_user_id_str": "33889526", "to_user_name": "iDre", "in_reply_to_status_id": 148832519096242180, "in_reply_to_status_id_str": "148832519096242176"}, +{"created_at": "Mon, 19 Dec 2011 18:35:33 +0000", "from_user": "dee_nice89", "from_user_id": 139255016, "from_user_id_str": "139255016", "from_user_name": "Dee", "geo": null, "id": 148833867812450300, "id_str": "148833867812450305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1618619881/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618619881/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Who the fuck are you?RT @Geralyndcf: @dee_nice89 Go download Pigeon Palooza (the next angry birds)- (cont) http://t.co/Ba6BNjuK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:33 +0000", "from_user": "2piecee", "from_user_id": 338804184, "from_user_id_str": "338804184", "from_user_name": "Damaris Albright", "geo": null, "id": 148833867627896830, "id_str": "148833867627896832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1451773409/2piece_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1451773409/2piece_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@purplekisskia Did Yu See Tht Eagles Game Yesterday? How Bout Those Birds! Lol We On Our Way!!\\n#EagleNation", "to_user": "purplekisskia", "to_user_id": 214542094, "to_user_id_str": "214542094", "to_user_name": "Shy Johnson"} +, +{"created_at": "Mon, 19 Dec 2011 18:35:30 +0000", "from_user": "Bug_TheGreat", "from_user_id": 428725600, "from_user_id_str": "428725600", "from_user_name": "Daroderick Sallie", "geo": null, "id": 148833853480501250, "id_str": "148833853480501248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692380240/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692380240/image_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "I WISH THESE TWO LOVE BIRDS WOULD STOP SAYING LOVE STUFF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:25 +0000", "from_user": "Doloreskdz", "from_user_id": 431724666, "from_user_id_str": "431724666", "from_user_name": "Dolores Roshak", "geo": null, "id": 148833834400616450, "id_str": "148833834400616448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681081938/ozv4aw2qih_129201295-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681081938/ozv4aw2qih_129201295-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Schneider 19 Inch Moving Birds 8 Day Movement Black Forest Cuckoo Clock: This delightful Schneider cuckoo clock ... http://t.co/n8xCh8eH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:25 +0000", "from_user": "HBIC_BL", "from_user_id": 277742592, "from_user_id_str": "277742592", "from_user_name": "Vontralla", "geo": +{"coordinates": [30.2234,-92.3717], "type": "Point"}, "id": 148833832743862270, "id_str": "148833832743862273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700629353/9GX9SvUb_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700629353/9GX9SvUb_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "That shit for the birds! So I'm.about to let it fly!!!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:25 +0000", "from_user": "safahfierce_", "from_user_id": 95235655, "from_user_id_str": "95235655", "from_user_name": "safah knowles-carter", "geo": null, "id": 148833830776741900, "id_str": "148833830776741889", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1634055171/b_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634055171/b_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Angry Birds is sooo over-rated", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:23 +0000", "from_user": "ayunigifts", "from_user_id": 56043197, "from_user_id_str": "56043197", "from_user_name": "Ayuni Gifts", "geo": null, "id": 148833821947740160, "id_str": "148833821947740160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1584577497/pinkdog_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584577497/pinkdog_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "I'm selling I. Godinger Glass Plate Tray 6\" Square - Birds in Tree http://t.co/Lzhcc1eK @addoway", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:22 +0000", "from_user": "Lelaaa_", "from_user_id": 61141986, "from_user_id_str": "61141986", "from_user_name": "Neala Stevenson", "geo": null, "id": 148833819833794560, "id_str": "148833819833794560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1543113508/neala_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543113508/neala_normal.JPG", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Youve been nothing but amazing &I never take that for granted. Half of these birds would have flew the coop but you, you truly understand it", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:20 +0000", "from_user": "Suet4Woodpecker", "from_user_id": 280536619, "from_user_id_str": "280536619", "from_user_name": "WoodpeckerFeeder Guy", "geo": null, "id": 148833809410957300, "id_str": "148833809410957312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1401856447/downy-woodpecker-crop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1401856447/downy-woodpecker-crop_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Suet feeders and suet-Christmas gift! We ship Priority USPS! Make a bunch of wild birds even happy! http://t.co/jY6n3vBg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:19 +0000", "from_user": "ILLIONARE", "from_user_id": 38640069, "from_user_id_str": "38640069", "from_user_name": "BETO", "geo": null, "id": 148833805472514050, "id_str": "148833805472514048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1257232440/Screen_shot_2011-02-27_at_6.54.16_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1257232440/Screen_shot_2011-02-27_at_6.54.16_PM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "LMAO at all the thirsty ass birds that went to the Drake after party and he didnt even show up!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:17 +0000", "from_user": "bostoncommag", "from_user_id": 191092917, "from_user_id_str": "191092917", "from_user_name": "Boston Common Mag", "geo": null, "id": 148833798195396600, "id_str": "148833798195396610", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668219568/cover_americanhoror_winter2011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668219568/cover_americanhoror_winter2011_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Bejeweled Birds of Paradise by Van Cleef & Arpels - http://t.co/zyCaV3e8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:13 +0000", "from_user": "StayInYour_LANA", "from_user_id": 238343642, "from_user_id_str": "238343642", "from_user_name": "lanaaaaaaaaaaa : ) ", "geo": null, "id": 148833783817306100, "id_str": "148833783817306113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700918183/McKGoFao_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700918183/McKGoFao_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Young_Brina: Arguin on sociial networks <<<<<<<<<<< that shit for the birds .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:09 +0000", "from_user": "genwhirl", "from_user_id": 26624944, "from_user_id_str": "26624944", "from_user_name": "Jennifer Worrell", "geo": null, "id": 148833766805225470, "id_str": "148833766805225473", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/502630790/n30509364_32609484_5876_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/502630790/n30509364_32609484_5876_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "I'm off on the countdown, but...4 Calling Birds! http://t.co/Kz5OFE5U", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:09 +0000", "from_user": "andreameijomil", "from_user_id": 88979834, "from_user_id_str": "88979834", "from_user_name": "Andrea Meijomil", "geo": null, "id": 148833765098127360, "id_str": "148833765098127360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/519842543/Dibujo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/519842543/Dibujo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "I always wonder why birds stay in the same place when they can fly anywhere on the earth http://t.co/WxUYqZID", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:09 +0000", "from_user": "lizbethsgarden", "from_user_id": 275317105, "from_user_id_str": "275317105", "from_user_name": "Elizabeth C", "geo": null, "id": 148833764200562700, "id_str": "148833764200562688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1295471115/tassel_avatar2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1295471115/tassel_avatar2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Pretty pink and green earrings with mother of pearl birds Clips are sterling silver by lizbethsgarden on #Etsy http://t.co/ZcwGifBl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:05 +0000", "from_user": "kmasson", "from_user_id": 16724707, "from_user_id_str": "16724707", "from_user_name": "kmasson", "geo": null, "id": 148833749864419330, "id_str": "148833749864419329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/857977443/20380_336820493328_508423328_3297698_543161_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/857977443/20380_336820493328_508423328_3297698_543161_n_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @TheEconomist iPhone app makes ordering up a private plane anywhere in world easy as playing Angry Birds http://t.co/iXC5FRI6 < Finally!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:02 +0000", "from_user": "rodtrent", "from_user_id": 7372952, "from_user_id_str": "7372952", "from_user_name": "Rod Trent", "geo": null, "id": 148833737520582660, "id_str": "148833737520582656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1335626870/Rod_Trent_mstag_vcard_2011211132719_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335626870/Rod_Trent_mstag_vcard_2011211132719_small_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Tips for a successful Birds of a Feather (BOF) http://t.co/ODbBN8ay via @myitforum", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:59 +0000", "from_user": "A_Smooov", "from_user_id": 385221295, "from_user_id_str": "385221295", "from_user_name": "Aeryonna Keeling", "geo": null, "id": 148833723054432260, "id_str": "148833723054432256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1674012570/WP_000034_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674012570/WP_000034_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "angry birds >>", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:59 +0000", "from_user": "akash_iem", "from_user_id": 64420940, "from_user_id_str": "64420940", "from_user_name": "Akash Bhattacharya", "geo": null, "id": 148833721867440130, "id_str": "148833721867440128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/630300222/Thats_me___fb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/630300222/Thats_me___fb_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "I posted 5 photos on Facebook in the album \"Bharatpur - Birds,Fort and City-life| December 2011\" http://t.co/CGbFLgnG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:55 +0000", "from_user": "justNeta", "from_user_id": 121134761, "from_user_id_str": "121134761", "from_user_name": "Neta", "geo": null, "id": 148833707912994800, "id_str": "148833707912994818", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696927457/stock-vector-vector-drawing-alphabet-letter-n-50649865_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696927457/stock-vector-vector-drawing-alphabet-letter-n-50649865_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "angry birds make me anger", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:53 +0000", "from_user": "JosieMonteraJKS", "from_user_id": 428355695, "from_user_id_str": "428355695", "from_user_name": "Josie Montera", "geo": null, "id": 148833697444016130, "id_str": "148833697444016128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674178556/16114177451195463_meghan_laughing_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674178556/16114177451195463_meghan_laughing_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Btw_hesmine_ Go download Pigeon Palooza (the next angry birds)- it is avail in Android Mktplce - will be in ITunes next week.", "to_user": "Btw_hesmine_", "to_user_id": 396829464, "to_user_id_str": "396829464", "to_user_name": "joy haley", "in_reply_to_status_id": 148818625652981760, "in_reply_to_status_id_str": "148818625652981761"}, +{"created_at": "Mon, 19 Dec 2011 18:34:50 +0000", "from_user": "ChrisGeiloGeils", "from_user_id": 46648088, "from_user_id_str": "46648088", "from_user_name": "Chris Geils", "geo": null, "id": 148833684303249400, "id_str": "148833684303249409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1541154831/HONEYMOON_PICS_1034_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541154831/HONEYMOON_PICS_1034_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Just had my car washed and a thousand birds shat on it! Damn you Murphey!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:48 +0000", "from_user": "yarak1", "from_user_id": 117786333, "from_user_id_str": "117786333", "from_user_name": "John Pitson", "geo": null, "id": 148833676862566400, "id_str": "148833676862566400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1064217282/n807450602_1047_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1064217282/n807450602_1047_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/fopmlH9W", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:41 +0000", "from_user": "txtisha", "from_user_id": 83685300, "from_user_id_str": "83685300", "from_user_name": "Tisha Clinkenbeard", "geo": null, "id": 148833646965563400, "id_str": "148833646965563393", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693700012/Thanksgiving_2011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693700012/Thanksgiving_2011_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "http://t.co/JgT12zwn Birds In Winter", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:40 +0000", "from_user": "MissRebeccaC", "from_user_id": 197720741, "from_user_id_str": "197720741", "from_user_name": "Rebecca Cawley", "geo": null, "id": 148833643895336960, "id_str": "148833643895336960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691919891/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691919891/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@cathnreon #blue #grey #birds #shitsignal #cost2much ur word #children xx", "to_user": "cathnreon", "to_user_id": 58555608, "to_user_id_str": "58555608", "to_user_name": "cath long", "in_reply_to_status_id": 148771373328773120, "in_reply_to_status_id_str": "148771373328773122"}, +{"created_at": "Mon, 19 Dec 2011 18:34:37 +0000", "from_user": "Jevan54", "from_user_id": 25535243, "from_user_id_str": "25535243", "from_user_name": "Joshua Caraway", "geo": null, "id": 148833630901370880, "id_str": "148833630901370881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1638167891/Picture_15_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638167891/Picture_15_normal.png", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", "text": "To ease my nerves, I broke down and it Angry Birds. Not addicted yet, but Michael Hodum would be proud.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:35 +0000", "from_user": "_DonDizzle_", "from_user_id": 104700828, "from_user_id_str": "104700828", "from_user_name": "Formerly QStorm19", "geo": null, "id": 148833621468397570, "id_str": "148833621468397568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1631520138/1320899465650_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631520138/1320899465650_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Just got my wisdom teeth pulled smh this shit is for the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:33 +0000", "from_user": "barntiques859", "from_user_id": 224653835, "from_user_id_str": "224653835", "from_user_name": "Paulasbarntiques", "geo": null, "id": 148833614862368770, "id_str": "148833614862368768", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1186436452/barnPaula_Hutchinson_logo_1__normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1186436452/barnPaula_Hutchinson_logo_1__normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Large Deep Oval Meat Platter 1900 German birds Butterflies\\t$80.00\\thttp://t.co/q0ZWr0LD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:33 +0000", "from_user": "gcculture", "from_user_id": 113473244, "from_user_id_str": "113473244", "from_user_name": "God.Country.Culture.", "geo": null, "id": 148833614862352400, "id_str": "148833614862352385", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1367834608/praying_hands_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1367834608/praying_hands_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Taking Angry Birds Love Too Far - This guy loves Angry Birds way too much. And is also amazing at Christmas light di... http://t.co/e1SHoe4u", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:33 +0000", "from_user": "_NoFebruary", "from_user_id": 348020594, "from_user_id_str": "348020594", "from_user_name": "24Hr SCHEDULE!", "geo": null, "id": 148833612865867780, "id_str": "148833612865867776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699022765/ColorTouch-1324150062947_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699022765/ColorTouch-1324150062947_normal.jpeg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Niggas anit Fly they jus a Bunch of Birds!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:30 +0000", "from_user": "eye_go_ham", "from_user_id": 291186084, "from_user_id_str": "291186084", "from_user_name": "Liu Kang", "geo": null, "id": 148833600513654800, "id_str": "148833600513654785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700235437/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700235437/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "this nigga breath smell like he ate the bottom of a birds cage", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:27 +0000", "from_user": "Bekah7726", "from_user_id": 50506644, "from_user_id_str": "50506644", "from_user_name": "rebekah shallow", "geo": null, "id": 148833589847535600, "id_str": "148833589847535617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687907760/lvGdmgap_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687907760/lvGdmgap_normal", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @1H3ART1L0V3: We are love birds call us doves #lilwaynevoice", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:27 +0000", "from_user": "HolsKnott", "from_user_id": 217152310, "from_user_id_str": "217152310", "from_user_name": "Holly Knott", "geo": null, "id": 148833587855228930, "id_str": "148833587855228928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1632099676/Chheeerr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632099676/Chheeerr_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@AmyEggg GIRLY! What are you and the birds doing for the big NY??", "to_user": "AmyEggg", "to_user_id": 239902546, "to_user_id_str": "239902546", "to_user_name": "Amy Eglin"}, +{"created_at": "Mon, 19 Dec 2011 18:34:23 +0000", "from_user": "Young_Brina", "from_user_id": 92538749, "from_user_id_str": "92538749", "from_user_name": "Sabrina FREE-MAN .", "geo": null, "id": 148833570281107460, "id_str": "148833570281107456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701267007/374200_263426490381166_100001414501491_766174_1167926869_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701267007/374200_263426490381166_100001414501491_766174_1167926869_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Arguin on sociial networks <<<<<<<<<<< that shit for the birds .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:22 +0000", "from_user": "stephanielevyy", "from_user_id": 424023740, "from_user_id_str": "424023740", "from_user_name": "Stephanie Levy", "geo": null, "id": 148833568083288060, "id_str": "148833568083288064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1663816815/25294_1412497988051_1100561879_1306216_4951107_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663816815/25294_1412497988051_1100561879_1306216_4951107_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "getting the birds & the bees talk from mr. paul.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:21 +0000", "from_user": "row_aint_shit", "from_user_id": 27594713, "from_user_id_str": "27594713", "from_user_name": "tyrone balone von do", "geo": null, "id": 148833565147267070, "id_str": "148833565147267072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1690446904/row_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690446904/row_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@killa_sammm lol it was. Im goin back to it bc this shit here nigga. Is for the birds!", "to_user": "killa_sammm", "to_user_id": 357864298, "to_user_id_str": "357864298", "to_user_name": "MRS.kLo \\uE32A", "in_reply_to_status_id": 148833313069596670, "in_reply_to_status_id_str": "148833313069596672"}, +{"created_at": "Mon, 19 Dec 2011 18:34:20 +0000", "from_user": "SimplyLisa1", "from_user_id": 193545945, "from_user_id_str": "193545945", "from_user_name": "Lisa", "geo": null, "id": 148833557987602430, "id_str": "148833557987602433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1659973312/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659973312/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "So Tt in here bout I said burn its cold an im like no it's birds it's cold. Then I rememberd @KaySchweetz tld me it was Burr lmbo #BringItOn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:19 +0000", "from_user": "WhoIsRachi", "from_user_id": 267259731, "from_user_id_str": "267259731", "from_user_name": "Geoffrey Burries", "geo": null, "id": 148833557220032500, "id_str": "148833557220032512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692371373/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692371373/image_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @HeelsOverSneaks: Worrying is for the birds...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:18 +0000", "from_user": "andieochoa", "from_user_id": 36477022, "from_user_id_str": "36477022", "from_user_name": "Andie Ochoa-Garcia", "geo": null, "id": 148833549942915070, "id_str": "148833549942915072", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1518652460/ScreenShot_2011-08-29_01-55-09_by_s4bb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1518652460/ScreenShot_2011-08-29_01-55-09_by_s4bb_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Los pajaros rojos de angry birds son los mas chafos #winterbreak #nothingtodo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:14 +0000", "from_user": "theFabz", "from_user_id": 140254652, "from_user_id_str": "140254652", "from_user_name": "the gawd...", "geo": null, "id": 148833536126894080, "id_str": "148833536126894080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692091337/profile_image_1323830308162_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692091337/profile_image_1323830308162_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for iPhone</a>", "text": "Silly guy wanna sell birds all your life... I gotta lot of nerve hitting curbs runnin lights", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:09 +0000", "from_user": "raffeg", "from_user_id": 60722320, "from_user_id_str": "60722320", "from_user_name": "Raffe Gold", "geo": null, "id": 148833511955120130, "id_str": "148833511955120128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1645577716/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645577716/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@neyne Oh absolutely. Though when it comes to Angry Birds I kind of get like that as well.", "to_user": "neyne", "to_user_id": 14213971, "to_user_id_str": "14213971", "to_user_name": "Branko Rihtman", "in_reply_to_status_id": 148832601958916100, "in_reply_to_status_id_str": "148832601958916097"}, +{"created_at": "Mon, 19 Dec 2011 18:34:08 +0000", "from_user": "DivaStyles_32", "from_user_id": 372743731, "from_user_id_str": "372743731", "from_user_name": "\\u2606*\\u2022\\uFF61\\u2605 Nhikko'l \\u2606*\\u2022\\uFF61\\u2605", "geo": null, "id": 148833507689508860, "id_str": "148833507689508864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1606826529/sexy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606826529/sexy_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "So i guess angry birds is the move bcuz we are doin NOTHING in class,matter of fact half the instructors arent here or students,smh #bored", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:07 +0000", "from_user": "Indiraqsu", "from_user_id": 426263021, "from_user_id_str": "426263021", "from_user_name": "Indira Muldrow", "geo": null, "id": 148833506586394620, "id_str": "148833506586394625", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668799239/LLCM-1135_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668799239/LLCM-1135_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Swiffy_YurpGang Ya have to get Pigeon Palooza (the next angry birds)- it is live in Android Mktplce - will be in App Store next week.", "to_user": "Swiffy_YurpGang", "to_user_id": 325985157, "to_user_id_str": "325985157", "to_user_name": "Swift Breeze", "in_reply_to_status_id": 148831762661900300, "in_reply_to_status_id_str": "148831762661900288"}, +{"created_at": "Mon, 19 Dec 2011 18:34:06 +0000", "from_user": "YungWild_Nigga", "from_user_id": 309714820, "from_user_id_str": "309714820", "from_user_name": "Malik Linthicum", "geo": null, "id": 148833501460959230, "id_str": "148833501460959233", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698870955/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698870955/profile_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "Everything that I got,I got from slangin birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:04 +0000", "from_user": "Creolaokd", "from_user_id": 431689006, "from_user_id_str": "431689006", "from_user_name": "Creola Oregel", "geo": null, "id": 148833493579857920, "id_str": "148833493579857920", "iso_language_code": "fi", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681009773/jsbc2t55tc_130916810-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681009773/jsbc2t55tc_130916810-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Kaytee Kay Kob 605 Cu In 8lb 4cs: Kaytee kay kob 605 cu in 8lb 4cs http://t.co/f4G8MeCK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:04 +0000", "from_user": "Peyton_Fortweng", "from_user_id": 417514418, "from_user_id_str": "417514418", "from_user_name": "Peyton Fortwengler", "geo": null, "id": 148833492153802750, "id_str": "148833492153802752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674547421/387601_167828203315924_100002662364007_263524_2088185373_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674547421/387601_167828203315924_100002662364007_263524_2088185373_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "My mom is obsessed with angry birds. Lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:03 +0000", "from_user": "MasterKush_er", "from_user_id": 317904904, "from_user_id_str": "317904904", "from_user_name": "Jordon Hailey", "geo": null, "id": 148833486550204400, "id_str": "148833486550204416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1632460641/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632460641/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@lil_luther38 hope it wasn't bout the birds and the bees haha", "to_user": "lil_luther38", "to_user_id": 233706315, "to_user_id_str": "233706315", "to_user_name": "Alesha Luther\\uE32D", "in_reply_to_status_id": 148832615825293300, "in_reply_to_status_id_str": "148832615825293312"}, +{"created_at": "Mon, 19 Dec 2011 18:33:56 +0000", "from_user": "MargotCity", "from_user_id": 197830080, "from_user_id_str": "197830080", "from_user_name": "Margot", "geo": null, "id": 148833458339323900, "id_str": "148833458339323904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702543297/DSC_0130_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702543297/DSC_0130_1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "If the birds were mine, I'd tell you what I'd do.. I'd teach the birds such lovely words and make 'em sing for you.. \\u2665", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:51 +0000", "from_user": "rasyidHS", "from_user_id": 128568156, "from_user_id_str": "128568156", "from_user_name": "Anwar Rasyid", "geo": null, "id": 148833437493637120, "id_str": "148833437493637120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1444104922/2396504453_ef645942c8_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1444104922/2396504453_ef645942c8_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @zefrank: what if there were three birds in the bush? #justblewyourfrigginmind", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:47 +0000", "from_user": "chalissberry", "from_user_id": 319677662, "from_user_id_str": "319677662", "from_user_name": "chaliss berry", "geo": null, "id": 148833422054408200, "id_str": "148833422054408192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694566974/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694566974/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "7th period consists of sleeping , playing angry birds, and checking twitter", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:46 +0000", "from_user": "TMCphotographs", "from_user_id": 141249819, "from_user_id_str": "141249819", "from_user_name": "Teresa Carleton", "geo": null, "id": 148833416639549440, "id_str": "148833416639549440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1316406017/for_web_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1316406017/for_web_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@Gary_UK1 no thats exactly what his stuff is like I can't think why he popped into my head, it may have been the flock of birds image? :\\", "to_user": "Gary_UK1", "to_user_id": 36367899, "to_user_id_str": "36367899", "to_user_name": "Gary", "in_reply_to_status_id": 148832917332828160, "in_reply_to_status_id_str": "148832917332828162"}, +{"created_at": "Mon, 19 Dec 2011 18:33:45 +0000", "from_user": "chiptycent", "from_user_id": 172781697, "from_user_id_str": "172781697", "from_user_name": "fer", "geo": null, "id": 148833414726959100, "id_str": "148833414726959104", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1119789478/mini_me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1119789478/mini_me_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@CptVico: Para los que les guste el juego Angry Birds, aqu\\u00ED el vestido que us\\u00F3 la esposa del CEO de Rovio. http://t.co/QfOe7B4d\\u201D @jaferic", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:43 +0000", "from_user": "icanhazmangu", "from_user_id": 18072928, "from_user_id_str": "18072928", "from_user_name": "Juice", "geo": null, "id": 148833405981818880, "id_str": "148833405981818881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700890525/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700890525/image_normal.jpg", "source": "<a href="http://tweetlogix.com" rel="nofollow">Tweetlogix</a>", "text": "i see them walk around brooklyn everyday. RT @YeahImAshley: Birds would look so stupid if they wore boots.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:43 +0000", "from_user": "NabilaEsmaralda", "from_user_id": 380882741, "from_user_id_str": "380882741", "from_user_name": "Secretly Zayn's .", "geo": null, "id": 148833402605408260, "id_str": "148833402605408256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702480512/p1DR5FxX_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702480512/p1DR5FxX_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Niddu_Hafizz: @NabilaEsmaralda i hear majong , hahaha , wait , do birds have ears ? D:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:42 +0000", "from_user": "LaudieXxMomo", "from_user_id": 377262686, "from_user_id_str": "377262686", "from_user_name": "LaurenLovesMowgli", "geo": null, "id": 148833401984651260, "id_str": "148833401984651264", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701879019/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701879019/image_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @RaadDezeTweet: - - - - - ( \\u00F2 )> (^(00)^) ANGRY BIRDS! Retweet als je het ziet! #RDT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:38 +0000", "from_user": "Agnusidr", "from_user_id": 426264992, "from_user_id_str": "426264992", "from_user_name": "Marlin Osburne", "geo": null, "id": 148833383441637380, "id_str": "148833383441637377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668803895/LLCM-1660_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668803895/LLCM-1660_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@_JoeyOliver Hey, try Pigeon Palooza (the next angry birds)- it's in Android Mktplce - should be in App Store in a few days.", "to_user": "_JoeyOliver", "to_user_id": 439655231, "to_user_id_str": "439655231", "to_user_name": "Joey Oliver", "in_reply_to_status_id": 148826312872706050, "in_reply_to_status_id_str": "148826312872706048"}, +{"created_at": "Mon, 19 Dec 2011 18:33:36 +0000", "from_user": "ShonaSchlickerU", "from_user_id": 428329314, "from_user_id_str": "428329314", "from_user_name": "Shona Schlicker", "geo": null, "id": 148833376818827260, "id_str": "148833376818827264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1674178618/15093392221209438_double_call_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674178618/15093392221209438_double_call_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@miss_sarahkita Hey, download Pigeon Palooza (the next angry birds)- it is launched in Android Mktplce - will be in App Store in a few days.", "to_user": "miss_sarahkita", "to_user_id": 243637808, "to_user_id_str": "243637808", "to_user_name": "sarah williams", "in_reply_to_status_id": 148832465350434800, "in_reply_to_status_id_str": "148832465350434816"}, +{"created_at": "Mon, 19 Dec 2011 18:33:36 +0000", "from_user": "LupieStardust", "from_user_id": 20631103, "from_user_id_str": "20631103", "from_user_name": "Mr Lucian", "geo": null, "id": 148833373488545800, "id_str": "148833373488545793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1673815487/Photo_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673815487/Photo_1_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Birds have just gone in the small, hot room.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:34 +0000", "from_user": "StephHowald", "from_user_id": 59149502, "from_user_id_str": "59149502", "from_user_name": "Stephanie Howald", "geo": null, "id": 148833368740597760, "id_str": "148833368740597760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/326495389/n500259153_583370_5057_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/326495389/n500259153_583370_5057_1__normal.jpg", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "Sitting by an adorable asian little girl and her grandma. She is playing angry birds on her ipad. Kids these days... :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:34 +0000", "from_user": "megaanbrittany", "from_user_id": 389808980, "from_user_id_str": "389808980", "from_user_name": "Megan Smith", "geo": null, "id": 148833367272599550, "id_str": "148833367272599553", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@LarissaaCaitlin okayyss! Get off at argyle kay? Its right after lyburn... And not soo scary without birds!", "to_user": "LarissaaCaitlin", "to_user_id": 132723925, "to_user_id_str": "132723925", "to_user_name": "Larissa Whitehead", "in_reply_to_status_id": 148831663747641340, "in_reply_to_status_id_str": "148831663747641344"}, +{"created_at": "Mon, 19 Dec 2011 18:33:33 +0000", "from_user": "leneea", "from_user_id": 76003955, "from_user_id_str": "76003955", "from_user_name": "elena.", "geo": null, "id": 148833360981147650, "id_str": "148833360981147648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1678972243/new_ava_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678972243/new_ava_normal.jpg", "source": "<a href="http://www.tweekly.fm/" rel="nofollow">Tweekly.fm</a>", "text": "My Top 3 #lastfm Artists: Marina & The Diamonds (14), Noel Gallagher's High Flying Birds (10) & Soap&Skin (8) http://t.co/TpjJGRpT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:31 +0000", "from_user": "priprapro1", "from_user_id": 311932645, "from_user_id_str": "311932645", "from_user_name": "JustinVLD", "geo": null, "id": 148833353662070800, "id_str": "148833353662070784", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691624185/e26JXvRA_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691624185/e26JXvRA_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@Barkey95: Iemand laat mij niet fatsoenlijk angry birds spelen!!!!!!!!!!!!!! #UCS!!!!!!!!!!!!!!\"ANGRY BIRDS FOR THE WIN!!!!! :P", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:28 +0000", "from_user": "TyTie1", "from_user_id": 263782964, "from_user_id_str": "263782964", "from_user_name": "Freakolicious", "geo": null, "id": 148833342186459140, "id_str": "148833342186459136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702096321/1321533190-picsay_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702096321/1321533190-picsay_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@travoloso lol then you've killed 2 birds with one stone", "to_user": "travoloso", "to_user_id": 18485036, "to_user_id_str": "18485036", "to_user_name": "TraVoloso ", "in_reply_to_status_id": 148819762904965120, "in_reply_to_status_id_str": "148819762904965120"}, +{"created_at": "Mon, 19 Dec 2011 18:33:28 +0000", "from_user": "_NoseInTheAir", "from_user_id": 261448954, "from_user_id_str": "261448954", "from_user_name": "PimpNamedSlickBack .", "geo": null, "id": 148833341901242370, "id_str": "148833341901242369", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683923925/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683923925/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Seven_isLegend: @_NoseInTheAir child please lol better go play angry birds or some talking like that", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:26 +0000", "from_user": "Jerzy_licious", "from_user_id": 136790373, "from_user_id_str": "136790373", "from_user_name": "MY MASTER!!!", "geo": null, "id": 148833331247718400, "id_str": "148833331247718402", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657143746/Vs93HD94_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657143746/Vs93HD94_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "This shit is for the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:24 +0000", "from_user": "TennisFanMark23", "from_user_id": 34914041, "from_user_id_str": "34914041", "from_user_name": "Mark", "geo": null, "id": 148833323676991500, "id_str": "148833323676991488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1666935643/390985_2615442183424_1176165985_33171188_839956796_n-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666935643/390985_2615442183424_1176165985_33171188_839956796_n-1_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Angry Birds is serious business - just missed one bird in Rio and it didn't go down well", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:22 +0000", "from_user": "cbellistweet", "from_user_id": 20506572, "from_user_id_str": "20506572", "from_user_name": "Chris Bellis", "geo": null, "id": 148833317725282300, "id_str": "148833317725282305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/76984369/100_2199_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/76984369/100_2199_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @GeekChicDaily: Win swag from Smallville, @StarWars, @bbcdoctorwho and more from our Holiday Gift Guide contest! http://t.co/8GRbSpRT RT for a 2nd try!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:21 +0000", "from_user": "youngdemoCat", "from_user_id": 41102327, "from_user_id_str": "41102327", "from_user_name": "Sarah Gross", "geo": null, "id": 148833310389452800, "id_str": "148833310389452800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1589813043/drunksarahwedding_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1589813043/drunksarahwedding_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\"My eyes feel like birds\"....should I call 911?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:20 +0000", "from_user": "_Stephaniecarol", "from_user_id": 326414114, "from_user_id_str": "326414114", "from_user_name": "StephanieCaroline :3", "geo": null, "id": 148833306836869120, "id_str": "148833306836869120", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690990792/Foto-0117_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690990792/Foto-0117_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "N\\u00E3o consigo passar da fase 102 no Angry Birds @:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:18 +0000", "from_user": "shellbbs", "from_user_id": 303479460, "from_user_id_str": "303479460", "from_user_name": "Shelby", "geo": null, "id": 148833301493325820, "id_str": "148833301493325824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693932899/Photo_on_2011-12-10_at_15.20_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693932899/Photo_on_2011-12-10_at_15.20_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "angry birds should be called angry people I get just as mad as the birds when I can't beat a level #addicted \\uD83D\\uDE21", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:18 +0000", "from_user": "noireka", "from_user_id": 362887488, "from_user_id_str": "362887488", "from_user_name": "Angel Sanders", "geo": null, "id": 148833297814921200, "id_str": "148833297814921217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1515449436/BlackupMainImage-0218_bd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515449436/BlackupMainImage-0218_bd_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @YeahImAshley: Birds would look so stupid if they wore boots.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:12 +0000", "from_user": "Mayesny", "from_user_id": 431707026, "from_user_id_str": "431707026", "from_user_name": "Maye Egger", "geo": null, "id": 148833274318438400, "id_str": "148833274318438402", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681044084/kcfvdt5530_98299362_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681044084/kcfvdt5530_98299362_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Birds of East Asia: China, Taiwan, Korea, Japan, and Russia (Princeton Field Guides): With 234 superb color plat... http://t.co/Fhe6VrEN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:09 +0000", "from_user": "Seven_isLegend", "from_user_id": 242059411, "from_user_id_str": "242059411", "from_user_name": "Rod Callaway", "geo": null, "id": 148833261991362560, "id_str": "148833261991362560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1652181592/rod_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652181592/rod_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@_NoseInTheAir child please lol better go play angry birds or some talking like that", "to_user": "_NoseInTheAir", "to_user_id": 261448954, "to_user_id_str": "261448954", "to_user_name": "PimpNamedSlickBack .", "in_reply_to_status_id": 148832859426258940, "in_reply_to_status_id_str": "148832859426258944"}, +{"created_at": "Mon, 19 Dec 2011 18:33:08 +0000", "from_user": "BabyDoll_Lay", "from_user_id": 374827608, "from_user_id_str": "374827608", "from_user_name": "Lashaa (:", "geo": null, "id": 148833256660406270, "id_str": "148833256660406272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1655609012/image__4__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655609012/image__4__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "time for some angry birds, ON MY BIRTHDAY(:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:07 +0000", "from_user": "Raiden00x", "from_user_id": 436795688, "from_user_id_str": "436795688", "from_user_name": "Raiden", "geo": null, "id": 148833255653781500, "id_str": "148833255653781504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693148717/thumbnail_normal.aspx", "profile_image_url_https": null, "source": "<a href="http://twitter.com/">web</a>", "text": "\\u201CThe key thing is people get flu from people, not the birds.\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:07 +0000", "from_user": "fe_nazelis", "from_user_id": 327038415, "from_user_id_str": "327038415", "from_user_name": "' Fern\\u03B1nd\\u03B1 \\u221E", "geo": null, "id": 148833255532134400, "id_str": "148833255532134400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694994027/pro_tt_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694994027/pro_tt_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "esse aplicativo tiny monster \\u00E9 mto plagio de Angry birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:07 +0000", "from_user": "Kaligigi", "from_user_id": 426265713, "from_user_id_str": "426265713", "from_user_name": "Kali Talsma", "geo": null, "id": 148833253363687420, "id_str": "148833253363687424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668805839/LLCM-2689_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668805839/LLCM-2689_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Laangg Ya gotta get Pigeon Palooza (the next angry birds)- it is avail in Android Mktplce - should be in ITunes next week.", "to_user": "Laangg", "to_user_id": 183081169, "to_user_id_str": "183081169", "to_user_name": "Sebastian Duro", "in_reply_to_status_id": 148805926281941000, "in_reply_to_status_id_str": "148805926281940992"}, +{"created_at": "Mon, 19 Dec 2011 18:33:07 +0000", "from_user": "Rosamondbnmq", "from_user_id": 426260430, "from_user_id_str": "426260430", "from_user_name": "Rosamond Wengel", "geo": null, "id": 148833252948459520, "id_str": "148833252948459522", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668792505/LLCM-4623_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668792505/LLCM-4623_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@RandyTandy Ya have to download Pigeon Palooza (the next angry birds)- it's avail in Android Mktplce - should be in ITunes soon.", "to_user": "RandyTandy", "to_user_id": 20172261, "to_user_id_str": "20172261", "to_user_name": "Randy Tandy", "in_reply_to_status_id": 148828323856920580, "in_reply_to_status_id_str": "148828323856920576"}, +{"created_at": "Mon, 19 Dec 2011 18:33:06 +0000", "from_user": "vivas_so_based", "from_user_id": 251859142, "from_user_id_str": "251859142", "from_user_name": "Alex Vivas", "geo": +{"coordinates": [26.1362,-81.7638], "type": "Point"}, "id": 148833250679336960, "id_str": "148833250679336960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664567845/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664567845/image_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster</a>", "text": "Wolf gang cuss birds never flock together but the wolfs going be fam forever", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:01 +0000", "from_user": "tipytoe_tipyTAY", "from_user_id": 242344468, "from_user_id_str": "242344468", "from_user_name": "realniggaTayluhhh", "geo": null, "id": 148833226734047230, "id_str": "148833226734047233", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693148234/Photo_on_2011-12-14_at_11.01__3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693148234/Photo_on_2011-12-14_at_11.01__3_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "The Birds Part 2 - The Weeknd >>", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:01 +0000", "from_user": "silverelefanfic", "from_user_id": 100815462, "from_user_id_str": "100815462", "from_user_name": "Andi", "geo": null, "id": 148833226499174400, "id_str": "148833226499174400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700933148/People_Always_Leave._normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700933148/People_Always_Leave._normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Angry birds doesn't half drain the battery :O @freddjones22 @bmango77", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:00 +0000", "from_user": "iDanielOficial", "from_user_id": 238815559, "from_user_id_str": "238815559", "from_user_name": "Daniel", "geo": null, "id": 148833225475764220, "id_str": "148833225475764224", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695668783/DF_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695668783/DF_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Saldr\\u00E1 la pel\\u00EDcula de Angry Birds en nickelodeon :-O", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:59 +0000", "from_user": "ThuulioN", "from_user_id": 124517442, "from_user_id_str": "124517442", "from_user_name": "Th\\u00FAlio Noslen", "geo": null, "id": 148833218265747460, "id_str": "148833218265747456", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1655514674/Image_1082_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655514674/Image_1082_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @complexogeek: Parque tem\\u00E1tico de Angry Birds.: O sucesso da franquia Angry Birds cresce a cada dia e a Rovio,... http://t.co/AEo5KC7y (via @nerddisse)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:58 +0000", "from_user": "jordanrdean", "from_user_id": 430950118, "from_user_id_str": "430950118", "from_user_name": "Jordan Dean", "geo": null, "id": 148833216596422660, "id_str": "148833216596422658", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679467174/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679467174/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Love birds #happytweet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:58 +0000", "from_user": "kensley_marie15", "from_user_id": 171314077, "from_user_id_str": "171314077", "from_user_name": "Kensley Hill", "geo": null, "id": 148833215287799800, "id_str": "148833215287799809", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695049648/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695049648/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Willcox94: Can't wait for New Years eve. Knowing me I'll wake up somewhere like Poland with a swastika tattoo and some birds knickers on my head.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:55 +0000", "from_user": "AmorTiffani", "from_user_id": 305787445, "from_user_id_str": "305787445", "from_user_name": "Shadow", "geo": null, "id": 148833204554579970, "id_str": "148833204554579969", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1618933180/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618933180/image_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "When ppl say birds of a feather flock together believe it and if you disagree w/ sum actions of the birds you flyin with #FLYAWAY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:55 +0000", "from_user": "Barkey95", "from_user_id": 50690951, "from_user_id_str": "50690951", "from_user_name": "Brian", "geo": null, "id": 148833202650365950, "id_str": "148833202650365952", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1543058952/326556154_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543058952/326556154_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Iemand laat mij niet fatsoenlijk angry birds spelen!!!!!!!!!!!!!! #UCS!!!!!!!!!!!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:52 +0000", "from_user": "dfixerr", "from_user_id": 205771194, "from_user_id_str": "205771194", "from_user_name": "Ik", "geo": null, "id": 148833191329931260, "id_str": "148833191329931265", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1669326210/330763172_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669326210/330763172_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "As we celebrate Christmas. A lot of birds are in fear for their lives.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:51 +0000", "from_user": "noticiasmercado", "from_user_id": 153040012, "from_user_id_str": "153040012", "from_user_name": "Noticias de Mercado", "geo": null, "id": 148833184816173060, "id_str": "148833184816173056", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://www.fusiontech.me/wordpress/wordpress-tweeter/" rel="nofollow">WPTweeter</a>", "text": "Noticias de Mercado Nueva Entrada - El creador de Angry Birds considera salir a Bolsa en Hong Kong. Leela en http://t.co/QLbx7vEf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:50 +0000", "from_user": "Teamsagegrouse", "from_user_id": 90448578, "from_user_id_str": "90448578", "from_user_name": "CSR Inc", "geo": null, "id": 148833183490768900, "id_str": "148833183490768897", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1508493126/167175_494037082609_325608592609_6830238_6948232_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1508493126/167175_494037082609_325608592609_6830238_6948232_n_normal.jpg", "source": "<a href="http://timely.is" rel="nofollow">Timely by Demandforce</a>", "text": "RT @audubonsociety: What happens after #xmasbirdcount counters send their tallies? Audubon's scentists get to work. http://t.co/ptfZ3lbq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:50 +0000", "from_user": "1caramelkissez", "from_user_id": 393687875, "from_user_id_str": "393687875", "from_user_name": "caramel kissez", "geo": null, "id": 148833182005985280, "id_str": "148833182005985280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1641234805/Photo0512_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641234805/Photo0512_1__normal.jpg", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "Birds of a feather flock together, I have become more understanding to that phrase.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:48 +0000", "from_user": "lknrodriguez", "from_user_id": 359650447, "from_user_id_str": "359650447", "from_user_name": "e ai manolo :3", "geo": null, "id": 148833173793542140, "id_str": "148833173793542144", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702524029/251144_116485068439233_100002332201299_152564_7006974_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702524029/251144_116485068439233_100002332201299_152564_7006974_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "P\\u00F4neis Malditos? Por que n\\u00E3o Angry Birds Malditos? #BigFollow: http://t.co/g46rE5VK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:46 +0000", "from_user": "BirdsBooksCold", "from_user_id": 363431257, "from_user_id_str": "363431257", "from_user_name": "Jay", "geo": null, "id": 148833163676885000, "id_str": "148833163676884993", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693366168/tumblr_lfa36oieDu1qajnsxo1_500_large_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693366168/tumblr_lfa36oieDu1qajnsxo1_500_large_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Photo: thefieldjournal: http://t.co/o7uRJF85", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:44 +0000", "from_user": "Latashiamau", "from_user_id": 431682736, "from_user_id_str": "431682736", "from_user_name": "Latashia Dejarnett", "geo": null, "id": 148833158064914430, "id_str": "148833158064914432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680992357/ffsnqfnsjb_130521752-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680992357/ffsnqfnsjb_130521752-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Birds of Prey of Africa & Its Islands: Covering the raptors and owls of Africa and its islands, this reference p... http://t.co/r9HGSSQU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:44 +0000", "from_user": "MissDivaD87", "from_user_id": 74027359, "from_user_id_str": "74027359", "from_user_name": "Denyda", "geo": null, "id": 148833156257169400, "id_str": "148833156257169409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693681566/Brooklyn-20111118-00747_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693681566/Brooklyn-20111118-00747_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @BooshieBella: I really do love fellow bad chicks, fly amazons, a Tru #6inchwalker, n stylish chica's,birds of a feather look damn good flocking together", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:43 +0000", "from_user": "Mecia_F_Baby", "from_user_id": 215769899, "from_user_id_str": "215769899", "from_user_name": "Kiss begin wit (K)ay", "geo": null, "id": 148833151593086980, "id_str": "148833151593086976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1666205796/kimbulls_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666205796/kimbulls_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "All the bs 4 the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:38 +0000", "from_user": "JosieMonteraJKS", "from_user_id": 428355695, "from_user_id_str": "428355695", "from_user_name": "Josie Montera", "geo": null, "id": 148833133977018370, "id_str": "148833133977018369", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674178556/16114177451195463_meghan_laughing_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674178556/16114177451195463_meghan_laughing_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@anggunmrz Ya should check out Pigeon Palooza (the next angry birds)- it's launched in Android Mktplce - will be in ITunes in a few days.", "to_user": "anggunmrz", "to_user_id": 234298659, "to_user_id_str": "234298659", "to_user_name": "Anggun (\\u02D8\\u2323\\u02D8) ", "in_reply_to_status_id": 148818690324955140, "in_reply_to_status_id_str": "148818690324955136"}, +{"created_at": "Mon, 19 Dec 2011 18:32:38 +0000", "from_user": "ThisIsJuiceE", "from_user_id": 365036390, "from_user_id_str": "365036390", "from_user_name": "Lastname:Gaddis", "geo": null, "id": 148833131980521470, "id_str": "148833131980521473", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698445460/-JuiceE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698445460/-JuiceE_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@MustBeMack @Official_Speedy bahahahahaha there where birds lions bears n squirrels all around us last night", "to_user": "MustBeMack", "to_user_id": 285909792, "to_user_id_str": "285909792", "to_user_name": "Mack Gaddis", "in_reply_to_status_id": 148832903810383870, "in_reply_to_status_id_str": "148832903810383874"}, +{"created_at": "Mon, 19 Dec 2011 18:32:37 +0000", "from_user": "iloveminigame", "from_user_id": 257059652, "from_user_id_str": "257059652", "from_user_name": "I love mini games", "geo": null, "id": 148833129711411200, "id_str": "148833129711411201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1306724512/eightbit-5a7b1663-2245-442d-9594-565632084afd_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1306724512/eightbit-5a7b1663-2245-442d-9594-565632084afd_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Angry Birds Christmas Lights Insanity That You Can Play [Video] http://t.co/hqu5Eboh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:33 +0000", "from_user": "LazyeOne", "from_user_id": 232956980, "from_user_id_str": "232956980", "from_user_name": "LazyeLove\\u2764", "geo": null, "id": 148833109264175100, "id_str": "148833109264175104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701693566/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701693566/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @DEPTR: My little brother is hooked on Angry Birds lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:31 +0000", "from_user": "JR3N33", "from_user_id": 18068104, "from_user_id_str": "18068104", "from_user_name": "Renee", "geo": null, "id": 148833101974478850, "id_str": "148833101974478848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1643917016/300323_236514573058857_100001009490180_680932_6201363_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643917016/300323_236514573058857_100001009490180_680932_6201363_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "these two love birds. Lance & Portia Lmfao.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:29 +0000", "from_user": "shianturner", "from_user_id": 75910624, "from_user_id_str": "75910624", "from_user_name": "shian turner", "geo": null, "id": 148833092512137200, "id_str": "148833092512137218", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680164194/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680164194/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#igetsoangry when I'm playing angry birds ..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:32:38 +0000", "from_user": "ThisIsJuiceE", "from_user_id": 365036390, "from_user_id_str": "365036390", "from_user_name": "Lastname:Gaddis", "geo": null, "id": 148833131980521470, "id_str": "148833131980521473", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698445460/-JuiceE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698445460/-JuiceE_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@MustBeMack @Official_Speedy bahahahahaha there where birds lions bears n squirrels all around us last night", "to_user": "MustBeMack", "to_user_id": 285909792, "to_user_id_str": "285909792", "to_user_name": "Mack Gaddis", "in_reply_to_status_id": 148832903810383870, "in_reply_to_status_id_str": "148832903810383874"}, +{"created_at": "Mon, 19 Dec 2011 18:32:37 +0000", "from_user": "iloveminigame", "from_user_id": 257059652, "from_user_id_str": "257059652", "from_user_name": "I love mini games", "geo": null, "id": 148833129711411200, "id_str": "148833129711411201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1306724512/eightbit-5a7b1663-2245-442d-9594-565632084afd_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1306724512/eightbit-5a7b1663-2245-442d-9594-565632084afd_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Angry Birds Christmas Lights Insanity That You Can Play [Video] http://t.co/hqu5Eboh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:33 +0000", "from_user": "LazyeOne", "from_user_id": 232956980, "from_user_id_str": "232956980", "from_user_name": "LazyeLove\\u2764", "geo": null, "id": 148833109264175100, "id_str": "148833109264175104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701693566/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701693566/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @DEPTR: My little brother is hooked on Angry Birds lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:31 +0000", "from_user": "JR3N33", "from_user_id": 18068104, "from_user_id_str": "18068104", "from_user_name": "Renee", "geo": null, "id": 148833101974478850, "id_str": "148833101974478848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1643917016/300323_236514573058857_100001009490180_680932_6201363_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643917016/300323_236514573058857_100001009490180_680932_6201363_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "these two love birds. Lance & Portia Lmfao.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:29 +0000", "from_user": "shianturner", "from_user_id": 75910624, "from_user_id_str": "75910624", "from_user_name": "shian turner", "geo": null, "id": 148833092512137200, "id_str": "148833092512137218", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680164194/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680164194/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#igetsoangry when I'm playing angry birds ..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:27 +0000", "from_user": "Jacks076", "from_user_id": 211544178, "from_user_id_str": "211544178", "from_user_name": "Jacks 076", "geo": null, "id": 148833083876057100, "id_str": "148833083876057089", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701546085/nigert33_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701546085/nigert33_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Angry Birds Soundtrack - Theme Song http://t.co/48iz5jpc #onokad", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:23 +0000", "from_user": "GRE8TBLACKSHARK", "from_user_id": 376565512, "from_user_id_str": "376565512", "from_user_name": "KILLUMINATI EMPEROR", "geo": null, "id": 148833070638829570, "id_str": "148833070638829569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1603295320/C1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1603295320/C1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@OUenvyME S/O 2U 4 showing Lil B respect. #Based birds of a feather should flock 2gether. lol Follow 4 follow? :^)", "to_user": "OUenvyME", "to_user_id": 172538229, "to_user_id_str": "172538229", "to_user_name": "KAY STIVERS \\u2713"}, +{"created_at": "Mon, 19 Dec 2011 18:32:20 +0000", "from_user": "Jaimeengql", "from_user_id": 426262582, "from_user_id_str": "426262582", "from_user_name": "Jaimee Goldman", "geo": null, "id": 148833057963651070, "id_str": "148833057963651073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668798708/LLCM-3633_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668798708/LLCM-3633_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@arinsinghx Ya must check out Pigeon Palooza (the next angry birds)- it's for sale in Android Mktplce - will be in ITunes soon.", "to_user": "arinsinghx", "to_user_id": 342921694, "to_user_id_str": "342921694", "to_user_name": "Arin Singh", "in_reply_to_status_id": 148808577245650940, "in_reply_to_status_id_str": "148808577245650944"}, +{"created_at": "Mon, 19 Dec 2011 18:32:18 +0000", "from_user": "Earth_NewsRT", "from_user_id": 173469798, "from_user_id_str": "173469798", "from_user_name": "Earth News ReTweeted", "geo": null, "id": 148833045980524540, "id_str": "148833045980524544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1093196933/fg_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1093196933/fg_copy_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @Natural_Matters RT @greenroofsuk: Exciting bird news - World's most threatened #birds set up new nest in Glo... http://t.co/Ab840OTK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:17 +0000", "from_user": "nhlphil", "from_user_id": 28431822, "from_user_id_str": "28431822", "from_user_name": "Phil Geary", "geo": null, "id": 148833045091328000, "id_str": "148833045091328000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/119249536/phil_boy_lightness_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/119249536/phil_boy_lightness_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @YeahImAshley: Birds would look so stupid if they wore boots.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:09 +0000", "from_user": "BJFernand", "from_user_id": 371700907, "from_user_id_str": "371700907", "from_user_name": "Fernand Julian", "geo": null, "id": 148833009905307650, "id_str": "148833009905307648", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1565587695/thedeathofyouandme_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1565587695/thedeathofyouandme_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Noel Gallagher's High Flying Birds @ Rome. Can't wait", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:55 +0000", "from_user": "lil_dougie_", "from_user_id": 49158912, "from_user_id_str": "49158912", "from_user_name": "NuNu", "geo": +{"coordinates": [41.6583,-91.5337], "type": "Point"}, "id": 148832951294111740, "id_str": "148832951294111744", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668572701/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668572701/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Np- slangin' birds ->> 2 chainz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:53 +0000", "from_user": "jt_ayres", "from_user_id": 346137655, "from_user_id_str": "346137655", "from_user_name": "Mr. Ranger, Sir", "geo": null, "id": 148832941177442300, "id_str": "148832941177442304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702326122/rooney_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702326122/rooney_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MaireadFromBray LOL, no kidding. Everyone talks about lady birds which is lady bugs for us.", "to_user": "MaireadFromBray", "to_user_id": 311507335, "to_user_id_str": "311507335", "to_user_name": "Mairead Turner", "in_reply_to_status_id": 148830057262092300, "in_reply_to_status_id_str": "148830057262092288"}, +{"created_at": "Mon, 19 Dec 2011 18:31:50 +0000", "from_user": "AceBoom", "from_user_id": 16174314, "from_user_id_str": "16174314", "from_user_name": "AceBoom", "geo": null, "id": 148832929190129660, "id_str": "148832929190129665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1659978683/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659978683/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "I beg to differ RT @YeahImAshley: Birds would look so stupid if they wore boots.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:48 +0000", "from_user": "TommiGal7", "from_user_id": 269154124, "from_user_id_str": "269154124", "from_user_name": "Tasneem Adams", "geo": null, "id": 148832924232454140, "id_str": "148832924232454144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1577861214/8ea4028ffe8cb2ff2f1ab6e8568760dd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1577861214/8ea4028ffe8cb2ff2f1ab6e8568760dd_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Three little birds - Bob Marley #thatisall", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:45 +0000", "from_user": "Agnusnxw", "from_user_id": 426260297, "from_user_id_str": "426260297", "from_user_name": "Agnus Zumbach", "geo": null, "id": 148832911267860480, "id_str": "148832911267860481", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668792048/LLCM-3852_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668792048/LLCM-3852_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@parttimesoldier Go check out Pigeon Palooza (the next angry birds)- it's live in Android Mktplce - will be in App Store next week.", "to_user": "parttimesoldier", "to_user_id": 90375376, "to_user_id_str": "90375376", "to_user_name": "Will", "in_reply_to_status_id": 148831935731474430, "in_reply_to_status_id_str": "148831935731474432"}, +{"created_at": "Mon, 19 Dec 2011 18:31:45 +0000", "from_user": "StaceyPegg", "from_user_id": 336530182, "from_user_id_str": "336530182", "from_user_name": "Stacey Pegg", "geo": null, "id": 148832910508703740, "id_str": "148832910508703744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697999885/230027_10150188708371220_732681219_7452309_7846759_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697999885/230027_10150188708371220_732681219_7452309_7846759_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@JesusChristFTM bet you're raging with jealousy at Noah, smelling nice and getting all the birds on the Lynx ad. #outdone", "to_user": "JesusChristFTM", "to_user_id": 338305554, "to_user_id_str": "338305554", "to_user_name": "JesusChristFTM"}, +{"created_at": "Mon, 19 Dec 2011 18:31:41 +0000", "from_user": "Laureelulu", "from_user_id": 276047129, "from_user_id_str": "276047129", "from_user_name": "Laury Lulu", "geo": null, "id": 148832891474939900, "id_str": "148832891474939905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689320638/nu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689320638/nu_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I cannot stop playing Angry Birds!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:38 +0000", "from_user": "Indiraqsu", "from_user_id": 426263021, "from_user_id_str": "426263021", "from_user_name": "Indira Muldrow", "geo": null, "id": 148832880854966270, "id_str": "148832880854966273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668799239/LLCM-1135_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668799239/LLCM-1135_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@levien_043 Go get Pigeon Palooza (the next angry birds)- it's launched in Android Mktplce - will be in ITunes in a few days.", "to_user": "levien_043", "to_user_id": 223272020, "to_user_id_str": "223272020", "to_user_name": "levien ", "in_reply_to_status_id": 148831790080069630, "in_reply_to_status_id_str": "148831790080069632"}, +{"created_at": "Mon, 19 Dec 2011 18:31:36 +0000", "from_user": "emilianoprzdo", "from_user_id": 86614275, "from_user_id_str": "86614275", "from_user_name": "Emily Emiliano ", "geo": null, "id": 148832873665929200, "id_str": "148832873665929217", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700719236/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700719236/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Yo si juntare los tazos de Angry Birds,FIN.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:34 +0000", "from_user": "06ChocolateDrop", "from_user_id": 59381291, "from_user_id_str": "59381291", "from_user_name": "Chocolate Thunder", "geo": null, "id": 148832863201148930, "id_str": "148832863201148930", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1690184507/mail1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690184507/mail1_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "This Charlotte Pike traffic is for the birds!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:30 +0000", "from_user": "Willcox94", "from_user_id": 161031975, "from_user_id_str": "161031975", "from_user_name": "Jack Willcox", "geo": null, "id": 148832848118427650, "id_str": "148832848118427649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1442083285/me_20and_20chittick_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1442083285/me_20and_20chittick_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Can't wait for New Years eve. Knowing me I'll wake up somewhere like Poland with a swastika tattoo and some birds knickers on my head.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:29 +0000", "from_user": "Shizueskep", "from_user_id": 426262224, "from_user_id_str": "426262224", "from_user_name": "Shizue Lautz", "geo": null, "id": 148832844104470530, "id_str": "148832844104470529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668797298/LLCM-4396_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668797298/LLCM-4396_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@megeplok Ya gotta get Pigeon Palooza (the next angry birds)- it is avail in Android Mktplce - will be in App Store soon.", "to_user": "megeplok", "to_user_id": 250229654, "to_user_id_str": "250229654", "to_user_name": "Miggy Marcelo", "in_reply_to_status_id": 148792371881054200, "in_reply_to_status_id_str": "148792371881054208"}, +{"created_at": "Mon, 19 Dec 2011 18:31:28 +0000", "from_user": "Agnusidr", "from_user_id": 426264992, "from_user_id_str": "426264992", "from_user_name": "Marlin Osburne", "geo": null, "id": 148832837653635070, "id_str": "148832837653635073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668803895/LLCM-1660_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668803895/LLCM-1660_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@StanleyShane Ya must play Pigeon Palooza (the next angry birds)- it is live in Android Mktplce - will be in App Store in a few days.", "to_user": "StanleyShane", "to_user_id": 279820737, "to_user_id_str": "279820737", "to_user_name": "Stanley Shane", "in_reply_to_status_id": 148826338889957380, "in_reply_to_status_id_str": "148826338889957376"}, +{"created_at": "Mon, 19 Dec 2011 18:31:27 +0000", "from_user": "eewaroach", "from_user_id": 252283484, "from_user_id_str": "252283484", "from_user_name": "Jackie R", "geo": null, "id": 148832833950060540, "id_str": "148832833950060545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1438387408/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1438387408/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "5 days, 13 hours, and 30 min... til I can play angry birds seasons christmas level number 25", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:25 +0000", "from_user": "Rosescold", "from_user_id": 85919512, "from_user_id_str": "85919512", "from_user_name": "Nanny P. Cascaes", "geo": null, "id": 148832826463223800, "id_str": "148832826463223808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677191242/ifhfd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677191242/ifhfd_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Andry Birds \\u00E9 muito lecal. :3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:22 +0000", "from_user": "alex7ask", "from_user_id": 92949490, "from_user_id_str": "92949490", "from_user_name": "Alex Tudor", "geo": null, "id": 148832814144561150, "id_str": "148832814144561154", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1234917733/TheONE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1234917733/TheONE_normal.jpg", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "Angry.Birds.Rio.v1.3.2.MacOSX.Cracked-CORE http://t.co/7xYuP4FA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:22 +0000", "from_user": "MichelleBrowell", "from_user_id": 393773196, "from_user_id_str": "393773196", "from_user_name": "Michelle Browell", "geo": null, "id": 148832811644760060, "id_str": "148832811644760067", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1624682937/Picture0022_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624682937/Picture0022_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@AlexaMyrdal got a picture of him posing with an angry birds plushie #priceless", "to_user": "AlexaMyrdal", "to_user_id": 348179371, "to_user_id_str": "348179371", "to_user_name": "Alexa Myrdal", "in_reply_to_status_id": 148828526580211700, "in_reply_to_status_id_str": "148828526580211712"}, +{"created_at": "Mon, 19 Dec 2011 18:31:18 +0000", "from_user": "Jus10Jonez", "from_user_id": 117295687, "from_user_id_str": "117295687", "from_user_name": "Justin Jones", "geo": null, "id": 148832797501554700, "id_str": "148832797501554688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1542080793/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542080793/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@ShaunPhillips95 great win last night! Y'all SHOCKED the black birds. Bolt up!!!", "to_user": "ShaunPhillips95", "to_user_id": 28692568, "to_user_id_str": "28692568", "to_user_name": "Shaun Phillips", "in_reply_to_status_id": 148831771608354800, "in_reply_to_status_id_str": "148831771608354817"}, +{"created_at": "Mon, 19 Dec 2011 18:31:17 +0000", "from_user": "Emi__lie", "from_user_id": 101037588, "from_user_id_str": "101037588", "from_user_name": "Emi-lie_", "geo": null, "id": 148832791193325570, "id_str": "148832791193325569", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699879984/ava_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699879984/ava_3_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Soon, it'll be mine ! #Bambi http://t.co/VYoQXx7n via @Etsy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:11 +0000", "from_user": "TheaBerggreen", "from_user_id": 354973677, "from_user_id_str": "354973677", "from_user_name": "Thea Berggreen", "geo": null, "id": 148832766467899400, "id_str": "148832766467899392", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681068185/_pkojlh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681068185/_pkojlh_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "jeez, mor og stefar har f\\u00E5tt ny tlf. s\\u00E5 n\\u00E5 sitter de \\u00E5 spiller angry birds #lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:11 +0000", "from_user": "Mikeyjizlejones", "from_user_id": 419636608, "from_user_id_str": "419636608", "from_user_name": "Shane Codrington", "geo": null, "id": 148832765134114800, "id_str": "148832765134114816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691605894/Picture_0132_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691605894/Picture_0132_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Not only urs RT @miss_sarahkita I think angry birds is sending my mother mad..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:10 +0000", "from_user": "OneManos_", "from_user_id": 218478427, "from_user_id_str": "218478427", "from_user_name": "Wauwww", "geo": null, "id": 148832762596565000, "id_str": "148832762596564993", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1603642387/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1603642387/image_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:09 +0000", "from_user": "jules_5447", "from_user_id": 441063934, "from_user_id_str": "441063934", "from_user_name": "Julie Cunha", "geo": null, "id": 148832757349498880, "id_str": "148832757349498880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702555601/007_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702555601/007_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@curtassjtweeting is for the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:09 +0000", "from_user": "PhilDolinger", "from_user_id": 30578035, "from_user_id_str": "30578035", "from_user_name": "Phil Dolinger", "geo": null, "id": 148832757026525200, "id_str": "148832757026525184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/141057169/Profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/141057169/Profile_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @someecards: Angry Birds now available on iPhone, Droid, and completely insane man's Christmas lights display. http://t.co/mrfMU8Hl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:05 +0000", "from_user": "InhaleMyKush", "from_user_id": 29575149, "from_user_id_str": "29575149", "from_user_name": "I-XXIV-XCV", "geo": null, "id": 148832741679562750, "id_str": "148832741679562754", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701394311/image_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701394311/image_normal", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @ThsWht_iCallHer: Birds of a feather flock together. Hoes on the same shit chase after the same dick.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:04 +0000", "from_user": "fearlessGSMITTY", "from_user_id": 34009753, "from_user_id_str": "34009753", "from_user_name": "@Gaston Smith", "geo": null, "id": 148832737191665660, "id_str": "148832737191665664", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702507607/image_reasonably_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702507607/image_reasonably_small_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @SimplyAyeJae: #iGetsoAngry playing angry birds >.< lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:03 +0000", "from_user": "JussGucci", "from_user_id": 34420820, "from_user_id_str": "34420820", "from_user_name": "AMAZING_Grace \\u2661", "geo": null, "id": 148832729893568500, "id_str": "148832729893568512", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694193442/zRiXyHEo_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694193442/zRiXyHEo_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Her birds eye ! <3 http://t.co/JMh1Ty8M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:00 +0000", "from_user": "HippiChickiNiki", "from_user_id": 73596168, "from_user_id_str": "73596168", "from_user_name": "Niki Grigsby Princip", "geo": null, "id": 148832720729018370, "id_str": "148832720729018368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1643302272/298848_765407764572_3110955_37872424_1581125378_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643302272/298848_765407764572_3110955_37872424_1581125378_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @someecards: Angry Birds now available on iPhone, Droid, and completely insane man's Christmas lights display. http://t.co/mrfMU8Hl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:57 +0000", "from_user": "TheSansMan", "from_user_id": 163290628, "from_user_id_str": "163290628", "from_user_name": "Michael", "geo": null, "id": 148832708238389250, "id_str": "148832708238389249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1523758490/293503_10150257133921927_681921926_8195473_2060233_n__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1523758490/293503_10150257133921927_681921926_8195473_2060233_n__1__normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @YeahImAshley: Birds would look so stupid if they wore boots.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:51 +0000", "from_user": "CptVico", "from_user_id": 65086505, "from_user_id_str": "65086505", "from_user_name": "Victor Fuentes", "geo": null, "id": 148832681319342080, "id_str": "148832681319342080", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693316476/X-Mas_2011_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693316476/X-Mas_2011_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Para todas las que les guste el juego Angry Birds, aqu\\u00ED el vestido que us\\u00F3 la esposa del CEO de Rovio. http://t.co/peB7vRZu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:46 +0000", "from_user": "ALoyalMan716", "from_user_id": 28289878, "from_user_id_str": "28289878", "from_user_name": "Marcus", "geo": null, "id": 148832660649820160, "id_str": "148832660649820160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694160277/Me_on_my_birthday_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694160277/Me_on_my_birthday_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "smh...this shit is for the birds....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:44 +0000", "from_user": "designs_by_debi", "from_user_id": 241452842, "from_user_id_str": "241452842", "from_user_name": "Debi Auger", "geo": null, "id": 148832652533825540, "id_str": "148832652533825537", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1222520913/debi_avatar_300x317_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1222520913/debi_avatar_300x317_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Any Angry Birds lovers out there? Look at this incredible set of beads Nikki over at Bastille Bleu Lampwork just... http://t.co/vc35EcKM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:43 +0000", "from_user": "Mike_Ford12", "from_user_id": 295498064, "from_user_id_str": "295498064", "from_user_name": "Michael Ford ", "geo": null, "id": 148832651535585280, "id_str": "148832651535585282", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1565919734/l0n3NEfl_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1565919734/l0n3NEfl_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Seeing birds trying to fly into the wind never fails to make me laugh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:43 +0000", "from_user": "Marinabel1824", "from_user_id": 162710549, "from_user_id_str": "162710549", "from_user_name": "Marina Belyakov", "geo": null, "id": 148832650122117120, "id_str": "148832650122117120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1049815138/_MG_6283-2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1049815138/_MG_6283-2_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "The world through my eyes: Paris.Birds http://t.co/4sKAA7nX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:43 +0000", "from_user": "_AlecBrooks_", "from_user_id": 182954571, "from_user_id_str": "182954571", "from_user_name": "Alec Brooks", "geo": null, "id": 148832649555886080, "id_str": "148832649555886080", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699448232/Ag6zFswCAAEMcKw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699448232/Ag6zFswCAAEMcKw_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "The bird, bird, bird. The birds the word, get it!?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:43 +0000", "from_user": "Magalywbdq", "from_user_id": 426261624, "from_user_id_str": "426261624", "from_user_name": "Magaly Lankford", "geo": null, "id": 148832649505550340, "id_str": "148832649505550336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668796259/LLCM-0607_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668796259/LLCM-0607_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@EmmaCassady179 Hey, go get Pigeon Palooza (the next angry birds)- it's avail in Android Mktplce - should be in App Store next week.", "to_user": "EmmaCassady179", "to_user_id": 397643325, "to_user_id_str": "397643325", "to_user_name": "Emma Cassady(:", "in_reply_to_status_id": 148809420296568830, "in_reply_to_status_id_str": "148809420296568833"}, +{"created_at": "Mon, 19 Dec 2011 18:30:43 +0000", "from_user": "Avaldss", "from_user_id": 402001540, "from_user_id_str": "402001540", "from_user_name": "Ava", "geo": null, "id": 148832647945269250, "id_str": "148832647945269248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://www.ajaymatharu.com/" rel="nofollow">Tweet Old Post</a>", "text": "Tips For Attracting Birds To Your Back Yard http://t.co/hGmVhqWP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:36 +0000", "from_user": "SterlingBooks", "from_user_id": 17161347, "from_user_id_str": "17161347", "from_user_name": "Sterling Publishing", "geo": null, "id": 148832621428867070, "id_str": "148832621428867072", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1563785139/SterlingTwitterLogo_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1563785139/SterlingTwitterLogo_bigger_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "True Tales & A Cherry On Top: Olivia's Birds http://t.co/XixmEMDA cc @BirdgirlLiv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:34 +0000", "from_user": "LORDKAY2", "from_user_id": 282189544, "from_user_id_str": "282189544", "from_user_name": "chikelue-mbonu kosy", "geo": null, "id": 148832611664539650, "id_str": "148832611664539648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691609100/kay_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691609100/kay_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@AquaKeli yeah it really would....but d kiss was ment 4u and not d birds or chicken either...", "to_user": "AquaKeli", "to_user_id": 262197577, "to_user_id_str": "262197577", "to_user_name": "Edi", "in_reply_to_status_id": 148831739777794050, "in_reply_to_status_id_str": "148831739777794048"}, +{"created_at": "Mon, 19 Dec 2011 18:30:33 +0000", "from_user": "RyanAllonby", "from_user_id": 357073486, "from_user_id_str": "357073486", "from_user_name": "Ryan Allonby", "geo": null, "id": 148832605700231170, "id_str": "148832605700231168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687858345/a0xwg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687858345/a0xwg_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@glennaggie did i get a taxi home with you and two fat birds? on saturday?", "to_user": "glennaggie", "to_user_id": 111614721, "to_user_id_str": "111614721", "to_user_name": "Glenn Agnew"}, +{"created_at": "Mon, 19 Dec 2011 18:30:32 +0000", "from_user": "neyne", "from_user_id": 14213971, "from_user_id_str": "14213971", "from_user_name": "Branko Rihtman", "geo": null, "id": 148832601958916100, "id_str": "148832601958916097", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1271623578/bio-thinkvis_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1271623578/bio-thinkvis_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@raffeg come on, tell me this doesn't invite a \"I couldn't finish the 47th level on Angry Birds\" comment http://t.co/I2i1igiN", "to_user": "raffeg", "to_user_id": 60722320, "to_user_id_str": "60722320", "to_user_name": "Raffe Gold", "in_reply_to_status_id": 148830895837675520, "in_reply_to_status_id_str": "148830895837675522"}, +{"created_at": "Mon, 19 Dec 2011 18:30:30 +0000", "from_user": "Ni4iporkoff", "from_user_id": 232255878, "from_user_id_str": "232255878", "from_user_name": "Illya Nichiporkov", "geo": null, "id": 148832595428380670, "id_str": "148832595428380672", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1665892701/IMG_0002______________normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665892701/IMG_0002______________normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u041D\\u0423 \\u041F\\u041E\\u0427\\u0415\\u041C\\u0423 \\u0412 ANGRY BIRDS F \\u043D\\u0435 \\u0440\\u0430\\u0432\\u043D\\u043E mg???????? \\u0432\\u0441\\u0435 \\u0431\\u044B\\u043B\\u043E \\u0431\\u044B \\u043F\\u0440\\u043E\\u0449\\u0435", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:29 +0000", "from_user": "ASerrate", "from_user_id": 17839243, "from_user_id_str": "17839243", "from_user_name": "Ashley Serrate", "geo": null, "id": 148832589640253440, "id_str": "148832589640253441", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1221791198/ash_with_yama_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1221791198/ash_with_yama_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @MrBelal: @ASerrate Just a typical day at NBC Miami... chillin with wild birds. http://t.co/9YTZVvTs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:25 +0000", "from_user": "AntiqueBeak", "from_user_id": 409383234, "from_user_id_str": "409383234", "from_user_name": "Antique Beak Vintage", "geo": null, "id": 148832575769677820, "id_str": "148832575769677824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1640473304/antiquebeakstore_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640473304/antiquebeakstore_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "\\u2603 \\u2603 \\u2603 You'll find beautiful hard-to-find bird trinkets and antiques at http://t.co/YqIBCZjK #Birds #Antiques \\u2603 \\u2603 \\u2603", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:25 +0000", "from_user": "Rosamondbnmq", "from_user_id": 426260430, "from_user_id_str": "426260430", "from_user_name": "Rosamond Wengel", "geo": null, "id": 148832574410723330, "id_str": "148832574410723328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668792505/LLCM-4623_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668792505/LLCM-4623_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@vicki1512 Ya gotta try out Pigeon Palooza (the next angry birds)- it is live in Android Mktplce - should be in ITunes next week.", "to_user": "vicki1512", "to_user_id": 343727579, "to_user_id_str": "343727579", "to_user_name": "vicki pelan", "in_reply_to_status_id": 148828332597841920, "in_reply_to_status_id_str": "148828332597841920"}, +{"created_at": "Mon, 19 Dec 2011 18:30:25 +0000", "from_user": "DolaSola", "from_user_id": 441034044, "from_user_id_str": "441034044", "from_user_name": "Miss. Sola Dola", "geo": null, "id": 148832574393950200, "id_str": "148832574393950208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702589125/168749_181312048570134_100000740198431_470801_1630945_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702589125/168749_181312048570134_100000740198431_470801_1630945_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Birds seen flying around, you never see them too long on the ground. You wanna be one of them. #followback", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:25 +0000", "from_user": "Every1HateKarma", "from_user_id": 364626414, "from_user_id_str": "364626414", "from_user_name": "Everyone Hates Karma", "geo": null, "id": 148832574293295100, "id_str": "148832574293295104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701672695/Every1HateKarma_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701672695/Every1HateKarma_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "birds of a feather flock together", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:22 +0000", "from_user": "jobondi", "from_user_id": 24113474, "from_user_id_str": "24113474", "from_user_name": "jo grogan ", "geo": null, "id": 148832560997339140, "id_str": "148832560997339136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1649795337/Photo_on_2011-05-28_at_18.13_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649795337/Photo_on_2011-05-28_at_18.13_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "no daylight saving in qld = all the freaking birds wake up early!my dad's house feels like it's in the middle of a bird sanctuary #hello5am", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:20 +0000", "from_user": "rinielenika", "from_user_id": 23968427, "from_user_id_str": "23968427", "from_user_name": "Chamille / Rin", "geo": null, "id": 148832553640529920, "id_str": "148832553640529921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1629269185/derpedme_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629269185/derpedme_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "WHY IS BOB MARLEY \"THREE LITTLE BIRDS\" IN MY PENDULUM RADIO?!?!?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:16 +0000", "from_user": "JAMBMom", "from_user_id": 47674753, "from_user_id_str": "47674753", "from_user_name": "Susan Schmidt", "geo": null, "id": 148832536305483780, "id_str": "148832536305483776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1263234466/2011_Flower_Susan_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263234466/2011_Flower_Susan_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"Carol of the Birds\" on electric bass -not so good.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:11 +0000", "from_user": "KjarDno", "from_user_id": 98752892, "from_user_id_str": "98752892", "from_user_name": "kristen ", "geo": null, "id": 148832515178762240, "id_str": "148832515178762241", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688303205/Picture_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688303205/Picture_6_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Kill2 birds RT @big_maaack: \"i jus take prenatal vitamins for my hair. and then if i get knocked up, i'll have a healthy baby, too\" @KjarDno", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:11 +0000", "from_user": "MFrost3", "from_user_id": 404064505, "from_user_id_str": "404064505", "from_user_name": "MFrost", "geo": null, "id": 148832513631072260, "id_str": "148832513631072256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1620316286/P1090503_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620316286/P1090503_normal.JPG", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "This is a #Photo of a #Seagull and some #Blackbirds-#Birds\\thttp://t.co/FtsrKuyv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:10 +0000", "from_user": "PrinceBreezyy_", "from_user_id": 249998887, "from_user_id_str": "249998887", "from_user_name": "TaylorGang..", "geo": null, "id": 148832509164130300, "id_str": "148832509164130306", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701717515/90zt4eoN_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701717515/90zt4eoN_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ataaa_: i got so much honey, the bees envy me. :b haha RT @PrinceBreezyy_ I got a sweeter song, then the birds in the trees", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:09 +0000", "from_user": "PaulByrneUK", "from_user_id": 141560817, "from_user_id_str": "141560817", "from_user_name": "Paul Byrne", "geo": null, "id": 148832505951293440, "id_str": "148832505951293440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1262739762/n862740354_6049378_3767721a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1262739762/n862740354_6049378_3767721a_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@mcfarlandalison they seem to forget that part and that video games like angry birds are built around behaviourism http://t.co/fodaTAxI", "to_user": "mcfarlandalison", "to_user_id": 406869728, "to_user_id_str": "406869728", "to_user_name": "Alison McFarland", "in_reply_to_status_id": 148829469539434500, "in_reply_to_status_id_str": "148829469539434496"}, +{"created_at": "Mon, 19 Dec 2011 18:30:07 +0000", "from_user": "Justbirds1", "from_user_id": 291680688, "from_user_id_str": "291680688", "from_user_name": "Bev", "geo": null, "id": 148832498930028540, "id_str": "148832498930028544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1335631073/5261855304_0f68f9ba91_m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335631073/5261855304_0f68f9ba91_m_normal.jpg", "source": "<a href="http://www.twaitter.com" rel="nofollow">Twaitter</a>", "text": "Horned Owl Takes Flight http://t.co/lUPbvzYl #birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:04 +0000", "from_user": "_duuhfc", "from_user_id": 263810442, "from_user_id_str": "263810442", "from_user_name": "Eduardinha", "geo": null, "id": 148832485957054460, "id_str": "148832485957054464", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1586594360/PAAAAN51n0L1RNBxxr1nGLF9dMpfSpQfjMhUvUDGUJfetE3Kq5N5C488EbKjR9wSeoAugOFwquOYl_Uu8HdguXqYcaEAm1T1UGpvgl6YYu5WW5rXuHBc5KL7bpb5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586594360/PAAAAN51n0L1RNBxxr1nGLF9dMpfSpQfjMhUvUDGUJfetE3Kq5N5C488EbKjR9wSeoAugOFwquOYl_Uu8HdguXqYcaEAm1T1UGpvgl6YYu5WW5rXuHBc5KL7bpb5_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "P\\u00F4neis Malditos? Por que n\\u00E3o Angry Birds Malditos? #MaisFollowers: http://t.co/E18b1C7I", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:04 +0000", "from_user": "elisasouza", "from_user_id": 21268951, "from_user_id_str": "21268951", "from_user_name": "Elisa Souza", "geo": null, "id": 148832484195450880, "id_str": "148832484195450880", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1436193518/elisasouza2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1436193518/elisasouza2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "t\\u00F4 presa numa fase de angry birds eagora", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:02 +0000", "from_user": "SimplyAyeJae", "from_user_id": 164671468, "from_user_id_str": "164671468", "from_user_name": "Aye Jae\\uE303", "geo": null, "id": 148832477899800580, "id_str": "148832477899800576", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700795115/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700795115/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "#iGetsoAngry playing angry birds >.< lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:59 +0000", "from_user": "miss_sarahkita", "from_user_id": 243637808, "from_user_id_str": "243637808", "from_user_name": "sarah williams", "geo": null, "id": 148832465350434800, "id_str": "148832465350434816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692940413/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692940413/image_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "I think angry birds is sending my mother mad..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:57 +0000", "from_user": "j_Goldss", "from_user_id": 334417837, "from_user_id_str": "334417837", "from_user_name": "Jon", "geo": null, "id": 148832458551459840, "id_str": "148832458551459840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693302014/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693302014/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@chrisZerfass @d_irz if the GMEN choke then must b better than da #birds because u need 2 b #contenders 2 b considered #chokers...", "to_user": "chrisZerfass", "to_user_id": 360866535, "to_user_id_str": "360866535", "to_user_name": "Chris Zerfass", "in_reply_to_status_id": 148829275867447300, "in_reply_to_status_id_str": "148829275867447296"}, +{"created_at": "Mon, 19 Dec 2011 18:29:57 +0000", "from_user": "tinuh_ROSE52", "from_user_id": 46803450, "from_user_id_str": "46803450", "from_user_name": "t i n u h h", "geo": null, "id": 148832456475287550, "id_str": "148832456475287552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702577107/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702577107/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "This shit is for the birds! #imhungry", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:56 +0000", "from_user": "idkwhatooput", "from_user_id": 421514092, "from_user_id_str": "421514092", "from_user_name": "i like the name carl", "geo": null, "id": 148832452721389570, "id_str": "148832452721389570", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700415500/DSCF5852_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700415500/DSCF5852_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@x_HGO_LOUDED watch you gonna be a zoo keepper in the bird section. ugly birds. lololol, you gonnna look STANK. <3", "to_user": "x_HGO_LOUDED", "to_user_id": 144220483, "to_user_id_str": "144220483", "to_user_name": "J\\u0394Vii\\u03A3R ", "in_reply_to_status_id": 148832193769242620, "in_reply_to_status_id_str": "148832193769242624"}, +{"created_at": "Mon, 19 Dec 2011 18:29:48 +0000", "from_user": "NathDeNatal", "from_user_id": 235726970, "from_user_id_str": "235726970", "from_user_name": "Nathalia Silva", "geo": null, "id": 148832417623441400, "id_str": "148832417623441409", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691166508/perfil_orkut_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691166508/perfil_orkut_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "P\\u00F4neis Malditos? Por que n\\u00E3o Angry Birds Malditos? #MaisFollowers: http://t.co/RV8bRSvl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:47 +0000", "from_user": "JAMBMom", "from_user_id": 47674753, "from_user_id_str": "47674753", "from_user_name": "Susan Schmidt", "geo": null, "id": 148832413332672500, "id_str": "148832413332672513", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1263234466/2011_Flower_Susan_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263234466/2011_Flower_Susan_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Jeremy is perfecting \"Carol of the Birds\" on recorder today...At least he's good.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:45 +0000", "from_user": "BNTheadhuncho", "from_user_id": 265888019, "from_user_id_str": "265888019", "from_user_name": "B.N.T Lil Randy", "geo": null, "id": 148832406315610100, "id_str": "148832406315610112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688517921/alLDS2R5_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688517921/alLDS2R5_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "MAN nothing to tweet about so I'm gone birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:44 +0000", "from_user": "E_N_Jay", "from_user_id": 152539428, "from_user_id_str": "152539428", "from_user_name": "Ian J", "geo": null, "id": 148832403958411260, "id_str": "148832403958411264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1585607602/buddyn-banner_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585607602/buddyn-banner_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "This one is for @paigeyri - Over 1,000 birds a year die from smashing into windows.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:43 +0000", "from_user": "msdorasanchez", "from_user_id": 87572092, "from_user_id_str": "87572092", "from_user_name": "Shaquita hunt", "geo": null, "id": 148832398019268600, "id_str": "148832398019268608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1416749233/264488_1808031362502_1291470292_31489392_4569088_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1416749233/264488_1808031362502_1291470292_31489392_4569088_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Guess ill play angry birds til i fall asleep", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:43 +0000", "from_user": "court_rene", "from_user_id": 396768343, "from_user_id_str": "396768343", "from_user_name": "Courtney", "geo": null, "id": 148832397234933760, "id_str": "148832397234933760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694064027/381266_2332251020984_1091010107_31890737_48461642_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694064027/381266_2332251020984_1091010107_31890737_48461642_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "falling in love is for the birds...#truefact never will i let love capture me.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:39 +0000", "from_user": "L_C__", "from_user_id": 104209539, "from_user_id_str": "104209539", "from_user_name": "\\u26A1\\u26A1\\u26A1\\u26A1\\u26A1", "geo": null, "id": 148832383129493500, "id_str": "148832383129493505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699745194/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699745194/image_normal.jpg", "source": "<a href="http://tweetlogix.com" rel="nofollow">Tweetlogix</a>", "text": "\"you watch for the birds cause they're gonna help you those birds\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:37 +0000", "from_user": "meeklabs", "from_user_id": 46413526, "from_user_id_str": "46413526", "from_user_name": "Meeklabs", "geo": null, "id": 148832371783909380, "id_str": "148832371783909376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/876932502/flask_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/876932502/flask_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Oh boy! An #Angrybirds lights display! If only I could get that barking dog down the street with the same effect. http://t.co/76ZNENnP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:37 +0000", "from_user": "Sophiiiee16", "from_user_id": 221526322, "from_user_id_str": "221526322", "from_user_name": "Sophie", "geo": null, "id": 148832371716796400, "id_str": "148832371716796417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1251637813/twitterpic_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1251637813/twitterpic_normal.JPG", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I favorited a @YouTube video http://t.co/cMm3g2Uk The Cinematic Orchestra Arrival of the Birds & Transformati", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:33 +0000", "from_user": "mrs_onix", "from_user_id": 431022675, "from_user_id_str": "431022675", "from_user_name": "Mrs. Onix", "geo": null, "id": 148832356285939700, "id_str": "148832356285939712", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1679582743/0231_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679582743/0231_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Pues nada, voy a jugar un poquito a Angry Birds...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:31 +0000", "from_user": "capriowyjelb8", "from_user_id": 376831491, "from_user_id_str": "376831491", "from_user_name": "Caprio Kay", "geo": null, "id": 148832349344366600, "id_str": "148832349344366592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1551695369/imagesCAQKHHPT_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1551695369/imagesCAQKHHPT_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "6 cats, 2 dogs and 3 birds found new homes today!eLtjWk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:31 +0000", "from_user": "Hannakhj", "from_user_id": 191921623, "from_user_id_str": "191921623", "from_user_name": "Hanna K. Hjardar", "geo": null, "id": 148832345619824640, "id_str": "148832345619824643", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1406726919/IMG_0134_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1406726919/IMG_0134_normal.JPG", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube video http://t.co/XfjpKEEx Angry Birds: The Movie (Trailer)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:28 +0000", "from_user": "Borrell7217shel", "from_user_id": 433254238, "from_user_id_str": "433254238", "from_user_name": "Mirella Borrell", "geo": null, "id": 148832333628321800, "id_str": "148832333628321792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1684774546/17235587091135062_smiling_beauty_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684774546/17235587091135062_smiling_beauty_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Birds: Birds\\n\\n\\n Birds come in all sizes, shapes, and colors. Birds are magic. Birds are everywhere. If you liste... http://t.co/ZSLpdPSm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:27 +0000", "from_user": "Nordmark7746bar", "from_user_id": 430012755, "from_user_id_str": "430012755", "from_user_name": "Nguyet Nordmark", "geo": null, "id": 148832331266916350, "id_str": "148832331266916352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677450077/18391580171197819_blondie_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677450077/18391580171197819_blondie_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Birds: Birds\\n\\n\\n Birds come in all sizes, shapes, and colors. Birds are magic. Birds are everywhere. If you liste... http://t.co/Xf8BfTpk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:26 +0000", "from_user": "jessemariababe", "from_user_id": 312179006, "from_user_id_str": "312179006", "from_user_name": "jessica morales", "geo": null, "id": 148832328318324740, "id_str": "148832328318324737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1684516432/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684516432/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "yay angry birds toy <3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:26 +0000", "from_user": "Dost_Ivan", "from_user_id": 153153871, "from_user_id_str": "153153871", "from_user_name": "Ivan Garcia", "geo": null, "id": 148832325105491970, "id_str": "148832325105491968", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701607194/sepia_diciembre_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701607194/sepia_diciembre_2_normal.jpg", "source": "<a href="http://www.tweets60.com/" rel="nofollow">Tweets60dm</a>", "text": "Musica y mas musica pa alegrar el alma\"High Flying Birds\" Noel Gallaghers http://t.co/E3LehwAa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:24 +0000", "from_user": "BGMoNeyTalK_FMB", "from_user_id": 61115369, "from_user_id_str": "61115369", "from_user_name": "Ant", "geo": null, "id": 148832316859498500, "id_str": "148832316859498497", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1565967818/Who_20Look_20Better_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1565967818/Who_20Look_20Better_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@MamaCashnOut_08 Smh.. Them Jail Birds.", "to_user": "MamaCashnOut_08", "to_user_id": 306414693, "to_user_id_str": "306414693", "to_user_name": "Adrianne "}, +{"created_at": "Mon, 19 Dec 2011 18:29:24 +0000", "from_user": "dieblougevaar", "from_user_id": 269375231, "from_user_id_str": "269375231", "from_user_name": "Johann Kruger", "geo": null, "id": 148832316851109900, "id_str": "148832316851109888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://vip.wordpress.com/hosting" rel="nofollow">WordPress.com VIP</a>", "text": "RT @TechCrunch: Video: The Interactive Angry Birds Christmas Lights Game http://t.co/cDrhsoV3 by @mjburnsy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:23 +0000", "from_user": "davidhwheeler", "from_user_id": 209735838, "from_user_id_str": "209735838", "from_user_name": "David Wheeler", "geo": null, "id": 148832313483075600, "id_str": "148832313483075584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1320066226/dave.headshot.small_4-11_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1320066226/dave.headshot.small_4-11_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Linda's For the Birds: The Maurice National Scenic and Recreational River, Cumberland County: Maur... http://t.co/CELkU1SI #njenviro #nj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:22 +0000", "from_user": "Mauradmv", "from_user_id": 426260348, "from_user_id_str": "426260348", "from_user_name": "Maura Loepp", "geo": null, "id": 148832311071354880, "id_str": "148832311071354880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668792271/LLCM-4565_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668792271/LLCM-4565_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Lary_Bennington Ya have to try Pigeon Palooza (the next angry birds)- it's live in Android Mktplce - will be in ITunes next week.", "to_user": "Lary_Bennington", "to_user_id": 236098684, "to_user_id_str": "236098684", "to_user_name": "\\u2620Larissa Bennington\\u2620", "in_reply_to_status_id": 148826799424552960, "in_reply_to_status_id_str": "148826799424552960"}, +{"created_at": "Mon, 19 Dec 2011 18:29:16 +0000", "from_user": "MollyyyBeee_", "from_user_id": 250990724, "from_user_id_str": "250990724", "from_user_name": "R.i.pDominiqueCurry.", "geo": null, "id": 148832282906591230, "id_str": "148832282906591232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692364906/6nrkHh2q_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692364906/6nrkHh2q_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "But about to text one of my jail birds that I meet last night lol.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:14 +0000", "from_user": "Particiamso", "from_user_id": 426263721, "from_user_id_str": "426263721", "from_user_name": "Particia Brun", "geo": null, "id": 148832276392845300, "id_str": "148832276392845312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668801396/LLCM-4961_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668801396/LLCM-4961_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@khairulnidzam Go try out Pigeon Palooza (the next angry birds)- it's launched in Android Mktplce - will be in App Store in a few days.", "to_user": "khairulnidzam", "to_user_id": 230221801, "to_user_id_str": "230221801", "to_user_name": "KhairulNidzam Othman", "in_reply_to_status_id": 148822267105779700, "in_reply_to_status_id_str": "148822267105779712"}, +{"created_at": "Mon, 19 Dec 2011 18:29:14 +0000", "from_user": "vitious", "from_user_id": 107035075, "from_user_id_str": "107035075", "from_user_name": "Alessandro Vit", "geo": null, "id": 148832275612696580, "id_str": "148832275612696579", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/645700588/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/645700588/avatar_normal.jpg", "source": "<a href="http://path.com/" rel="nofollow">Path 2.0</a>", "text": "Mah \\u266B Three Little Birds by @bobmarley \\u2014 http://t.co/7jZRS8zl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:12 +0000", "from_user": "Jay_B28", "from_user_id": 244128792, "from_user_id_str": "244128792", "from_user_name": "Jesse Beato", "geo": null, "id": 148832269803593730, "id_str": "148832269803593728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696483654/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696483654/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@DJFRANK_WHITE: LIFE IS LIKE AN IPHONE , ALL THESE ANGRY BIRDS .\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:09 +0000", "from_user": "_RStokes_", "from_user_id": 385116933, "from_user_id_str": "385116933", "from_user_name": "Rikayla", "geo": null, "id": 148832255165476860, "id_str": "148832255165476864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1694120837/180457_10150177811599062_743349061_8837791_8205231_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694120837/180457_10150177811599062_743349061_8837791_8205231_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "probably just the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:07 +0000", "from_user": "JCScruggs", "from_user_id": 28253912, "from_user_id_str": "28253912", "from_user_name": "Carlos Spicywiener", "geo": null, "id": 148832244964917250, "id_str": "148832244964917248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697804007/1324103845289_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697804007/1324103845289_normal.jpg", "source": "<a href="http://www.motorola.com" rel="nofollow">motoblur</a>", "text": "Im more addicted to Fruit Ninja then Angry Birds and Temple Run.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:06 +0000", "from_user": "LizGuarniery", "from_user_id": 143856234, "from_user_id_str": "143856234", "from_user_name": "\\u0AEA Liz Guarn\\u00EDery.", "geo": null, "id": 148832243073286140, "id_str": "148832243073286144", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700911820/DSC_0000023_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700911820/DSC_0000023_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "P\\u00F4neis Malditos? Por que n\\u00E3o Angry Birds Malditos? #BigFollow: http://t.co/kX21sGnX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:28:59 +0000", "from_user": "RadLanda", "from_user_id": 400087105, "from_user_id_str": "400087105", "from_user_name": "Radha Landa", "geo": null, "id": 148832214241652740, "id_str": "148832214241652738", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1625443391/315003_2365208891092_1276492736_2847767_7848413_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1625443391/315003_2365208891092_1276492736_2847767_7848413_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MollieMcHenry classy birds ;) I finish college tomorrow afternoon so I'm started the celebrations now. Got Black Mirror on, you watched it?", "to_user": "MollieMcHenry", "to_user_id": 71606719, "to_user_id_str": "71606719", "to_user_name": "Mollie McHenry", "in_reply_to_status_id": 148831375737364480, "in_reply_to_status_id_str": "148831375737364481"}, +{"created_at": "Mon, 19 Dec 2011 18:28:59 +0000", "from_user": "Niddu_Hafizz", "from_user_id": 367762066, "from_user_id_str": "367762066", "from_user_name": "\\u0438 \\u043D\\u0454\\u044F\\u0438\\u03B1\\u0438\\u2202\\u0454z", "geo": null, "id": 148832213553774600, "id_str": "148832213553774593", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685484536/me__2_D_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685484536/me__2_D_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@NabilaEsmaralda i hear majong , hahaha , wait , do birds have ears ? D:", "to_user": "NabilaEsmaralda", "to_user_id": 380882741, "to_user_id_str": "380882741", "to_user_name": "Secretly Zayn's .", "in_reply_to_status_id": 148831681409843200, "in_reply_to_status_id_str": "148831681409843200"}, +{"created_at": "Mon, 19 Dec 2011 18:28:59 +0000", "from_user": "Skatebder4ever", "from_user_id": 326962727, "from_user_id_str": "326962727", "from_user_name": "Josh torres", "geo": null, "id": 148832212912058370, "id_str": "148832212912058370", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1573264268/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1573264268/image_normal.jpg", "source": "<a href="http://angrybirdstweets.com" rel="nofollow">Angry Birds Tweets</a>", "text": "Just unlocked the angry birds seasons twitter levels, http://t.co/hqFZ0EMZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:55 +0000", "from_user": "paviblogs", "from_user_id": 96503720, "from_user_id_str": "96503720", "from_user_name": "Pavithran blogs", "geo": null, "id": 148832197950967800, "id_str": "148832197950967808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/576010547/creativenerds-fav-icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/576010547/creativenerds-fav-icon_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "TOI Blogs Birds of then: Sifting through the daily barrage of trash mail and such, I hit upon somewhat of a trea... http://t.co/hw1Mlfjq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:54 +0000", "from_user": "magchola", "from_user_id": 231122984, "from_user_id_str": "231122984", "from_user_name": "maggie lane", "geo": null, "id": 148832193647611900, "id_str": "148832193647611904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1674524894/magchola_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674524894/magchola_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Hes right. Emotions are for the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:53 +0000", "from_user": "JuanCortes_", "from_user_id": 152680294, "from_user_id_str": "152680294", "from_user_name": "Juan Cort\\u00E9s Gonz\\u00E1lez", "geo": null, "id": 148832187859484670, "id_str": "148832187859484672", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702474700/Sin_t_tulo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702474700/Sin_t_tulo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @DexterSecs: En Angry Birds, la expresi\\u00F3n \"Matar dos p\\u00E1jaros de un tiro\" se ve modificada a: \"Matar dos cerdos de un p\\u00E1jaro\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:48 +0000", "from_user": "SneedAndWeed", "from_user_id": 42160862, "from_user_id_str": "42160862", "from_user_name": "Sneedenhiemer\\u2122 \\u2714 ", "geo": null, "id": 148832169089974270, "id_str": "148832169089974272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1666892309/tumblr_lvi0hnmwmM1qlc6juo1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666892309/tumblr_lvi0hnmwmM1qlc6juo1_500_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "They only after your bread , them fucking birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:48 +0000", "from_user": "inHOTpursuit", "from_user_id": 19727052, "from_user_id_str": "19727052", "from_user_name": "Alex Michael May", "geo": +{"coordinates": [33.9909,-118.4639], "type": "Point"}, "id": 148832166443352060, "id_str": "148832166443352064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1680206392/Picture_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680206392/Picture_5_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "A 2 year old just creamed me in angry birds. And can navigate the iPad better than me.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:45 +0000", "from_user": "RaptorCentre", "from_user_id": 71678578, "from_user_id_str": "71678578", "from_user_name": "Mountsberg", "geo": null, "id": 148832155462668300, "id_str": "148832155462668288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/432572957/teddyface_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/432572957/teddyface_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @olsondotinfo: A photo of Phoenix, a 22 year old bald eagle at Mountsberg @raptorcentre http://t.co/sWoMxLBI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:41 +0000", "from_user": "veronicasage", "from_user_id": 19777875, "from_user_id_str": "19777875", "from_user_name": "Veronica Sage", "geo": null, "id": 148832137418780670, "id_str": "148832137418780673", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/233342190/IMG_0208_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/233342190/IMG_0208_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "The little birds that visit my window And chirp their way from tree to tree--home to home--delight me to no end", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:35 +0000", "from_user": "TukieTheOUTkast", "from_user_id": 160751809, "from_user_id_str": "160751809", "from_user_name": "Tukie Rox'ann Tywoun", "geo": null, "id": 148832114081665020, "id_str": "148832114081665024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687789872/tukie1234_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687789872/tukie1234_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "#Sorry doesnt make the sun come up or the birds sing, GOD does. . . so start by telling him cuz, that word is fucking overrated.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:32 +0000", "from_user": "_jeazyy", "from_user_id": 280201229, "from_user_id_str": "280201229", "from_user_name": "Your Name Here ", "geo": null, "id": 148832102064988160, "id_str": "148832102064988160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668414277/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668414277/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Them nachos from Free Birds gave me life.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:32 +0000", "from_user": "Sofianechachoua", "from_user_id": 115473763, "from_user_id_str": "115473763", "from_user_name": "Sofian\\u00EA\\u2665Power\\u263BKing", "geo": null, "id": 148832101272256500, "id_str": "148832101272256513", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1337420044/180188_143369135726425_100001600170381_268016_2744377_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1337420044/180188_143369135726425_100001600170381_268016_2744377_n_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube video http://t.co/gekdR6w2 The Weeknd - The Birds (Part 1)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:29 +0000", "from_user": "Lucas_A_Mann", "from_user_id": 223927920, "from_user_id_str": "223927920", "from_user_name": "Lucas A Mann", "geo": null, "id": 148832088928419840, "id_str": "148832088928419840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1611257786/5KNxwbly_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611257786/5KNxwbly_normal", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @someecards: Angry Birds now available on iPhone, Droid, and completely insane man's Christmas lights display. http://t.co/mrfMU8Hl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:29 +0000", "from_user": "deenay10", "from_user_id": 149683615, "from_user_id_str": "149683615", "from_user_name": "yvonne barry", "geo": null, "id": 148832087741435900, "id_str": "148832087741435904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1040359847/Untitled_-_1.jpgMR_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1040359847/Untitled_-_1.jpgMR_normal.jpg", "source": "<a href="http://www.news-republic.com" rel="nofollow">News Republic</a>", "text": "IM+ Adds Own In-App Messenger \"Beep\", Angry Birds Theme http://t.co/V3X45t3m", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:28 +0000", "from_user": "Dank_T", "from_user_id": 422791450, "from_user_id_str": "422791450", "from_user_name": "Daniel Thompson", "geo": null, "id": 148832083031236600, "id_str": "148832083031236608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1661961419/oGxw5O7U_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661961419/oGxw5O7U_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Lunch was legit now time for some angry birds. #lovemyjob", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:28 +0000", "from_user": "euando_roberto", "from_user_id": 316072822, "from_user_id_str": "316072822", "from_user_name": "Euan", "geo": null, "id": 148832081563230200, "id_str": "148832081563230211", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700789306/248542_1679232155370_1674517579_1225275_1581750_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700789306/248542_1679232155370_1674517579_1225275_1581750_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "some of the wee third year birds wear so much blusher stuff they look like lobsters.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:28 +0000", "from_user": "SamBircham", "from_user_id": 40892108, "from_user_id_str": "40892108", "from_user_name": "Sam Bircham", "geo": null, "id": 148832081353519100, "id_str": "148832081353519105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1373869678/225006_187900627929357_100001282626721_519921_4906120_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1373869678/225006_187900627929357_100001282626721_519921_4906120_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "What's so great about penguins? They're the clowns of the birds. How I loathe them!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:28 +0000", "from_user": "kaylakangaroo", "from_user_id": 60925835, "from_user_id_str": "60925835", "from_user_name": "Kayla Mann", "geo": null, "id": 148832079533195260, "id_str": "148832079533195264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1643651086/66324_440833385769_595310769_5890338_5976578_n_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643651086/66324_440833385769_595310769_5890338_5976578_n_1__normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Birds nests :) http://t.co/eJDny87Q", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:25 +0000", "from_user": "Misscoolfinds", "from_user_id": 30348296, "from_user_id_str": "30348296", "from_user_name": "Misscoolfinds ", "geo": null, "id": 148832069240369150, "id_str": "148832069240369152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1476663529/shopping-8376_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1476663529/shopping-8376_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Red Angry Bird Bag Clip & Angry Birds Decorative Decals Removeable Free Shipping http://t.co/ZctHBnCM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:21 +0000", "from_user": "just_steven", "from_user_id": 31274220, "from_user_id_str": "31274220", "from_user_name": "steven oriee", "geo": null, "id": 148832054740660220, "id_str": "148832054740660224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1655976537/1322168286201_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655976537/1322168286201_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Shit-tastic day! Running away... high into the hills... fly with the birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:21 +0000", "from_user": "iiAMnotJASMINE", "from_user_id": 227698341, "from_user_id_str": "227698341", "from_user_name": "Jasmine Herbert", "geo": null, "id": 148832053687877630, "id_str": "148832053687877633", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1582295332/4vS07OH8_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1582295332/4vS07OH8_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @blker_the_berri: i cant make anymore C, that ish is for the birds now", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:21 +0000", "from_user": "PlayaaaKP", "from_user_id": 163617693, "from_user_id_str": "163617693", "from_user_name": "PlayaaaKP ", "geo": null, "id": 148832053679493120, "id_str": "148832053679493120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699077167/A4Ld82lR_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699077167/A4Ld82lR_normal", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @Mpala_: Keep a diva never fuck with the birds talking models with coke bottles see I fuck with the curves", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:20 +0000", "from_user": "Sanjuanitaniz", "from_user_id": 415409086, "from_user_id_str": "415409086", "from_user_name": "Sha Kuritz", "geo": null, "id": 148832048784752640, "id_str": "148832048784752640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1692697866/3un3g345zy_129228258-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692697866/3un3g345zy_129228258-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Ospreys (Really Wild Life of Birds of Prey): http://t.co/39czfikt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:19 +0000", "from_user": "Leeo_Says", "from_user_id": 80437546, "from_user_id_str": "80437546", "from_user_name": "Leeo Ricco (:", "geo": null, "id": 148832046939254800, "id_str": "148832046939254784", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1516667917/l_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1516667917/l_o_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "ZEREI O JOGUINHO D ANGRY BIRDS *-* KKKKKKKKKKKKKKK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:16 +0000", "from_user": "ThinkFastToys", "from_user_id": 38702027, "from_user_id_str": "38702027", "from_user_name": "ThinkFastToys.com", "geo": null, "id": 148832031734894600, "id_str": "148832031734894593", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1497690730/IMG_6063_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1497690730/IMG_6063_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "We dunno #WhatHappened2 our turtle doves and pear tree but.. Christmas is Sunday so get 3 Angry Birds and a PearHead! http://t.co/hYxlkbyQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:15 +0000", "from_user": "KRNaturalPhoto", "from_user_id": 29227935, "from_user_id_str": "29227935", "from_user_name": "Kyle Reynolds", "geo": null, "id": 148832026919833600, "id_str": "148832026919833600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/133438085/Chemung_River_Dec272008_0062_Standard_e-mail_view_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/133438085/Chemung_River_Dec272008_0062_Standard_e-mail_view_normal.jpg", "source": "<a href="http://timely.is" rel="nofollow">Timely by Demandforce</a>", "text": "RT @audubonsociety: What happens after #xmasbirdcount counters send their tallies? Audubon's scentists get to work. http://t.co/ptfZ3lbq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:14 +0000", "from_user": "viloja", "from_user_id": 42786926, "from_user_id_str": "42786926", "from_user_name": "v\\u00EDctorl\\u00F3pezjaramillo", "geo": null, "id": 148832023971246080, "id_str": "148832023971246082", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1596959025/724fddac-7342-4f01-8d33-18a67a43a281_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596959025/724fddac-7342-4f01-8d33-18a67a43a281_normal.png", "source": "<a href="http://www.tweekly.fm/" rel="nofollow">Tweekly.fm</a>", "text": "#lastfm Artists: Arctic Monkeys (129), Noel Gallagher's High Flying Birds (98) & Enrique Bunbury (78) http://t.co/xdG17mwT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:13 +0000", "from_user": "Agnusnxw", "from_user_id": 426260297, "from_user_id_str": "426260297", "from_user_name": "Agnus Zumbach", "geo": null, "id": 148832021324636160, "id_str": "148832021324636160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668792048/LLCM-3852_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668792048/LLCM-3852_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Thaina_Motta Ya have to download Pigeon Palooza (the next angry birds)- it's avail in Android Mktplce - should be in App Store next week.", "to_user": "Thaina_Motta", "to_user_id": 131294445, "to_user_id_str": "131294445", "to_user_name": "Nobody's Perfect", "in_reply_to_status_id": 148802291716194300, "in_reply_to_status_id_str": "148802291716194307"}, +{"created_at": "Mon, 19 Dec 2011 18:28:12 +0000", "from_user": "Shizueskep", "from_user_id": 426262224, "from_user_id_str": "426262224", "from_user_name": "Shizue Lautz", "geo": null, "id": 148832017247768580, "id_str": "148832017247768576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668797298/LLCM-4396_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668797298/LLCM-4396_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@datkidkuko Have to check out Pigeon Palooza (the next angry birds)- it is avail in Android Mktplce - should be in App Store soon.", "to_user": "datkidkuko", "to_user_id": 77809392, "to_user_id_str": "77809392", "to_user_name": " Manny Gonzalez", "in_reply_to_status_id": 148792438398525440, "in_reply_to_status_id_str": "148792438398525440"}, +{"created_at": "Mon, 19 Dec 2011 18:28:12 +0000", "from_user": "jdizz_DOMO", "from_user_id": 149101254, "from_user_id_str": "149101254", "from_user_name": "James Domineck", "geo": null, "id": 148832016455057400, "id_str": "148832016455057409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689502111/jwd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689502111/jwd_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "you ever wounder what birds do or say while sitting on top of a tall as building looking at people below #makesyouthink", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:04 +0000", "from_user": "BelleMillaQEOG", "from_user_id": 428355696, "from_user_id_str": "428355696", "from_user_name": "Belle Milla", "geo": null, "id": 148831981466157060, "id_str": "148831981466157056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1674178599/7012289841192040_jo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674178599/7012289841192040_jo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Im_that_DUDEo_O Have to play Pigeon Palooza (the next angry birds)- it is in Android Mktplce - will be in App Store in a few days.", "to_user": "Im_that_DUDEo_O", "to_user_id": 338139360, "to_user_id_str": "338139360", "to_user_name": ":::Raina Baina:::", "in_reply_to_status_id": 148824898855374850, "in_reply_to_status_id_str": "148824898855374849"}, +{"created_at": "Mon, 19 Dec 2011 18:28:03 +0000", "from_user": "Evelyn785469213", "from_user_id": 405400412, "from_user_id_str": "405400412", "from_user_name": "Evelyn", "geo": null, "id": 148831980212064260, "id_str": "148831980212064256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1623359669/p12_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1623359669/p12_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "OCEAN BIRDS.: http://t.co/n4Y5G18i", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:02 +0000", "from_user": "Black_Bear_69", "from_user_id": 269461573, "from_user_id_str": "269461573", "from_user_name": "Mr.Parker", "geo": null, "id": 148831974117752830, "id_str": "148831974117752832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668124598/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668124598/me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@BrothaSam22 lol life is expensive shit for the birds lol", "to_user": "BrothaSam22", "to_user_id": 286409032, "to_user_id_str": "286409032", "to_user_name": "Samuel David", "in_reply_to_status_id": 148831765631479800, "in_reply_to_status_id_str": "148831765631479808"}, +{"created_at": "Mon, 19 Dec 2011 18:27:59 +0000", "from_user": "Neptunestarbaby", "from_user_id": 127257252, "from_user_id_str": "127257252", "from_user_name": "Lil Bobby\\u21223ENT", "geo": null, "id": 148831960339456000, "id_str": "148831960339456000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688288982/IMG_0005_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688288982/IMG_0005_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Studying is for the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:58 +0000", "from_user": "ataaa_", "from_user_id": 84751135, "from_user_id_str": "84751135", "from_user_name": ". . . \\u2665", "geo": null, "id": 148831959005659140, "id_str": "148831959005659137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702565092/faaaaame_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702565092/faaaaame_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "i got so much honey, the bees envy me. :b haha RT @PrinceBreezyy_ I got a sweeter song, then the birds in the trees", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:56 +0000", "from_user": "taidos", "from_user_id": 184360604, "from_user_id_str": "184360604", "from_user_name": "Carlos Faustino", "geo": null, "id": 148831948352126980, "id_str": "148831948352126977", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1306519814/41492_100001408658673_806_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1306519814/41492_100001408658673_806_n_normal.jpg", "source": "<a href="http://www.visibli.com" rel="nofollow">Visibli</a>", "text": "DIY Angry Birds Christmas Display is an Interactive Game [Video] http://t.co/gWW24xx1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:53 +0000", "from_user": "parttimesoldier", "from_user_id": 90375376, "from_user_id_str": "90375376", "from_user_name": "Will", "geo": null, "id": 148831935731474430, "id_str": "148831935731474432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1608107068/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608107068/image_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@EXNavyGirl only so much angry birds i can take, gets difficult and annoying lol", "to_user": "EXNavyGirl", "to_user_id": 134047327, "to_user_id_str": "134047327", "to_user_name": "Sam Mia Fields", "in_reply_to_status_id": 148830591733858300, "in_reply_to_status_id_str": "148830591733858304"}, +{"created_at": "Mon, 19 Dec 2011 18:27:51 +0000", "from_user": "adrianrocaperez", "from_user_id": 404029645, "from_user_id_str": "404029645", "from_user_name": "adrian roca perez", "geo": null, "id": 148831928060100600, "id_str": "148831928060100608", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1677904195/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677904195/images_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @exp_empresas: El creador de Angry Birds considera salir a Bolsa en Hong Kong: La compa\\u00F1\\u00EDa creadora de Angry Birds, el videojue... http://t.co/kGKL4LMR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:50 +0000", "from_user": "vaughnsghaep1", "from_user_id": 376836565, "from_user_id_str": "376836565", "from_user_name": "Vaughns Gotter", "geo": null, "id": 148831924859838460, "id_str": "148831924859838464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1551709048/imagesCAJF7J2Q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1551709048/imagesCAJF7J2Q_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "THOUSANDS of blackbirds landed in our meadow. Looks like the Hitchcock \"Birds\" movie. I'm stay indooj4t", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:41 +0000", "from_user": "qufeqarile", "from_user_id": 296502057, "from_user_id_str": "296502057", "from_user_name": "Kuzma", "geo": null, "id": 148831886796537860, "id_str": "148831886796537856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1356566495/187_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1356566495/187_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/EyF4Ldx2 Birds of ocean and estuary (The Orbis encyclopedia of birds of Britain and Europe) (978085613350", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:38 +0000", "from_user": "Briie_Loves_Yuh", "from_user_id": 97695278, "from_user_id_str": "97695278", "from_user_name": "\\u2122 \\(\\u2022_\\u2022\\) Random", "geo": null, "id": 148831872984682500, "id_str": "148831872984682496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1690201481/jgmWG7GR_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690201481/jgmWG7GR_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@EightPacKiid But ion wanna play wit em.....dey sum big birds.! -__-", "to_user": "EightPacKiid", "to_user_id": 440542518, "to_user_id_str": "440542518", "to_user_name": "Rashad", "in_reply_to_status_id": 148831480121008130, "in_reply_to_status_id_str": "148831480121008128"}, +{"created_at": "Mon, 19 Dec 2011 18:27:37 +0000", "from_user": "Glenn_W_Bush", "from_user_id": 35260133, "from_user_id_str": "35260133", "from_user_name": "Glenn Bush", "geo": null, "id": 148831868450635780, "id_str": "148831868450635776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690129241/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690129241/image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @someecards: Angry Birds now available on iPhone, Droid, and completely insane man's Christmas lights display. http://t.co/mrfMU8Hl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:35 +0000", "from_user": "Rick50cc", "from_user_id": 410161656, "from_user_id_str": "410161656", "from_user_name": "Rick", "geo": null, "id": 148831862410854400, "id_str": "148831862410854402", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1636877029/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1636877029/image_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @RaadDezeTweet: - - - - - ( \\u00F2 )> (^(00)^) ANGRY BIRDS! Retweet als je het ziet! #RDT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:32 +0000", "from_user": "KING_MONTANA_IV", "from_user_id": 50933486, "from_user_id_str": "50933486", "from_user_name": "KING MONTANA IV", "geo": null, "id": 148831850171875330, "id_str": "148831850171875328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698878359/PicsArt1324155702941_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698878359/PicsArt1324155702941_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "That love shit is for the birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:30 +0000", "from_user": "nicoleanna19", "from_user_id": 407257852, "from_user_id_str": "407257852", "from_user_name": "Nicole Van Nuland", "geo": null, "id": 148831838729814000, "id_str": "148831838729814016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688174044/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688174044/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "big birds voice sounds like a pedo. #js", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:27 +0000", "from_user": "liloozie3", "from_user_id": 86208785, "from_user_id_str": "86208785", "from_user_name": "Lil OOzie", "geo": null, "id": 148831829447811070, "id_str": "148831829447811072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691769821/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691769821/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@HeelsOverSneaks: Worrying is for the birds...\\u201D exactly", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:22 +0000", "from_user": "SweetOlMini", "from_user_id": 28270001, "from_user_id_str": "28270001", "from_user_name": "Parental Advisory", "geo": null, "id": 148831808446922750, "id_str": "148831808446922752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695105661/securedownload1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695105661/securedownload1_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "All that bullshit is for the birds & all the money is for the hustler's.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:22 +0000", "from_user": "MorganeGB", "from_user_id": 112840201, "from_user_id_str": "112840201", "from_user_name": "Morgane GB", "geo": null, "id": 148831808199475200, "id_str": "148831808199475200", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1654135869/Phototwitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654135869/Phototwitter_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @manenti_boris: \"Angry Birds, le jeu le plus t\\u00E9l\\u00E9charg\\u00E9 de l'histoire\" http://t.co/nMxxrkYp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:18 +0000", "from_user": "trashBaggGANG", "from_user_id": 195246841, "from_user_id_str": "195246841", "from_user_name": "...LOADING\\uF8FF", "geo": null, "id": 148831790826655740, "id_str": "148831790826655744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695283215/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695283215/image_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @MeeeeeeeeZy: \\u201C@Mr_124 \\u201C@MeeeeeeeeZy: Angry Birds Kids Hoody I de$igned/Painted! http://t.co/LZbs8IEJ\\u201D\\u201D dope shit\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:18 +0000", "from_user": "levien_043", "from_user_id": 223272020, "from_user_id_str": "223272020", "from_user_name": "levien ", "geo": null, "id": 148831790080069630, "id_str": "148831790080069632", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1573954519/327560972_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1573954519/327560972_normal.jpg", "source": "<a href="http://globalgrind.com" rel="nofollow">UncleUber for Blackberry</a>", "text": "Asus tablet gekocht yeahh straks meteen angry birds bouwen", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:18 +0000", "from_user": "eBC_Pets_NE", "from_user_id": 126784945, "from_user_id_str": "126784945", "from_user_name": "eBC Pets Northeast", "geo": null, "id": 148831789983612930, "id_str": "148831789983612929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/786618773/eBayClassifiedsWeb_73x73_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/786618773/eBayClassifiedsWeb_73x73_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "New York: RUSSIAN RUSSIAN CANARIES GET OUT OF HOBBY EVERYTHING FOR SALE - Please Contact (Brooklyn) http://t.co/p3H8GFWF #eBC #Pets", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:18 +0000", "from_user": "eBC_Pets_NE", "from_user_id": 126784945, "from_user_id_str": "126784945", "from_user_name": "eBC Pets Northeast", "geo": null, "id": 148831788423315460, "id_str": "148831788423315457", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/786618773/eBayClassifiedsWeb_73x73_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/786618773/eBayClassifiedsWeb_73x73_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "New York: 2 playful conures parrots w/cage - Please Contact (Brooklyn) http://t.co/3Ydhaag8 #eBC #Pets", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:17 +0000", "from_user": "chiafiesta", "from_user_id": 336732735, "from_user_id_str": "336732735", "from_user_name": "GET IN MA BELLY.", "geo": null, "id": 148831787475419140, "id_str": "148831787475419137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1673209867/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673209867/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Bella: look the birds are dancing... \\nMe: bella they're fighting", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:14 +0000", "from_user": "_iMJustKrystaal", "from_user_id": 367380031, "from_user_id_str": "367380031", "from_user_name": "Krystal Encinas", "geo": null, "id": 148831774250774530, "id_str": "148831774250774528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694900169/Pic-1112201_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694900169/Pic-1112201_1__normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Dad: A bird told me you are doing drugs... Boy: You're talking with birds and I'm the one doing drugs?! o_O", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:14 +0000", "from_user": "DavBaynga", "from_user_id": 143937809, "from_user_id_str": "143937809", "from_user_name": "\\u266C\\u266A Luke Flywalker \\u266A\\u266C", "geo": null, "id": 148831773302857730, "id_str": "148831773302857728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693637803/PicsArt1323886287862_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693637803/PicsArt1323886287862_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "Birds of a feather", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:12 +0000", "from_user": "Swiffy_YurpGang", "from_user_id": 325985157, "from_user_id_str": "325985157", "from_user_name": "Swift Breeze", "geo": null, "id": 148831762661900300, "id_str": "148831762661900288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1667125658/113011212515_wonder_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667125658/113011212515_wonder_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "i think i wanna get one of them angry birds tatted", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:11 +0000", "from_user": "jeanwadier", "from_user_id": 87441261, "from_user_id_str": "87441261", "from_user_name": "jeanwadier", "geo": null, "id": 148831761944678400, "id_str": "148831761944678401", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1647281537/Login_Icon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647281537/Login_Icon_normal.png", "source": "<a href="http://publicize.wp.com/" rel="nofollow">WordPress.com</a>", "text": "Quote of the Day: \" \" Birds in flight ... are not between places, they carry their places with them ...\" quoted by P\\u2026 http://t.co/k7zAv9RQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:08 +0000", "from_user": "JehmarNOtJamar", "from_user_id": 243014265, "from_user_id_str": "243014265", "from_user_name": "Jehmar McCauley", "geo": null, "id": 148831747566600200, "id_str": "148831747566600192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696939524/ColorTouch-1322121288296_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696939524/ColorTouch-1322121288296_normal.jpeg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "this being home shit is #dead and for the birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:02 +0000", "from_user": "Press1forHeze", "from_user_id": 112213379, "from_user_id_str": "112213379", "from_user_name": "HEZE (Heezee)", "geo": null, "id": 148831724695072770, "id_str": "148831724695072769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679746132/ProfilePhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679746132/ProfilePhoto_normal.png", "source": "<a href="http://www.osfoora.com" rel="nofollow">Osfoora for iPhone</a>", "text": "Tell him I need a whole chicken RT @CBake229: My cousin got dem birds out yo way RT @Press1forHeze: Can anybody put me on to a PT gig?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:59 +0000", "from_user": "Earth_NewsRT", "from_user_id": 173469798, "from_user_id_str": "173469798", "from_user_name": "Earth News ReTweeted", "geo": null, "id": 148831710786764800, "id_str": "148831710786764800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1093196933/fg_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1093196933/fg_copy_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @Aisne2011 Slimbridge's Spoonbilled sandpipers on the news. Gorgeous little birds; hope it's not too late for... http://t.co/mmt6L85T", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:58 +0000", "from_user": "_CharlieBrownn", "from_user_id": 228514504, "from_user_id_str": "228514504", "from_user_name": "Martinique ", "geo": null, "id": 148831705766174720, "id_str": "148831705766174720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1665085556/nik_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665085556/nik_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "and wild turkeys lmao RT @KenJ_19 dis shit is for da birds. Lmao feel like deres only deers n raccoons to hang out wit out here. Lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:57 +0000", "from_user": "moosamoose", "from_user_id": 19047560, "from_user_id_str": "19047560", "from_user_name": "Anna Incs Lantsman", "geo": null, "id": 148831700003209200, "id_str": "148831700003209216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/71364157/Mo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/71364157/Mo_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "http://t.co/1RqZBOnz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:56 +0000", "from_user": "Ryan_Horsburgh", "from_user_id": 70944051, "from_user_id_str": "70944051", "from_user_name": "Ryan Horsburgh", "geo": null, "id": 148831698677809150, "id_str": "148831698677809152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691882597/the_just_up_dead_look_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691882597/the_just_up_dead_look_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "birds of prey always look fucking evil ;s", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:52 +0000", "from_user": "HeelsOverSneaks", "from_user_id": 179865691, "from_user_id_str": "179865691", "from_user_name": "Sunshine Shante'", "geo": null, "id": 148831680726171650, "id_str": "148831680726171648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1632808146/sitedit_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632808146/sitedit_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "Worrying is for the birds...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:51 +0000", "from_user": "dessa_zika2", "from_user_id": 402189775, "from_user_id_str": "402189775", "from_user_name": "Dessa", "geo": null, "id": 148831678159274000, "id_str": "148831678159273984", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677724767/Foto3106Tw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677724767/Foto3106Tw_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "P\\u00F4neis Malditos? Por que n\\u00E3o Angry Birds Malditos? #BigFollow:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:51 +0000", "from_user": "HollyCasee", "from_user_id": 264306816, "from_user_id_str": "264306816", "from_user_name": "Holly Case\\u2740\\u273F", "geo": null, "id": 148831677697888260, "id_str": "148831677697888256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1554805899/hollly_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554805899/hollly_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iTweetFunny_: Any time a bird craps on my car, I eat an entire plate of scrambled eggs on my porch, just to show the birds what I'm capable of.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:43 +0000", "from_user": "EmRenan", "from_user_id": 292454172, "from_user_id_str": "292454172", "from_user_name": "Emerson Renan", "geo": null, "id": 148831643900198900, "id_str": "148831643900198912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1678529051/u_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678529051/u_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial</a>", "text": "Whit birds i share this lonely view", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:42 +0000", "from_user": "40thingsby40", "from_user_id": 232711425, "from_user_id_str": "232711425", "from_user_name": "40thingsby40", "geo": null, "id": 148831639823331330, "id_str": "148831639823331328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1225971179/logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225971179/logo_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", "text": "My youngest keeps telling me he wants angry birds for Christmas. Any tips in how I can make birds angry I get from the pet store for him?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:42 +0000", "from_user": "WTFISGOD", "from_user_id": 73286202, "from_user_id_str": "73286202", "from_user_name": "Trish", "geo": null, "id": 148831638128836600, "id_str": "148831638128836608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1242567200/DSC08917_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1242567200/DSC08917_normal.JPG", "source": "<a href="http://yardsellr.com" rel="nofollow">Yardsellr</a>", "text": "1965 Familiar Birds Garden Birds of America By Collins Jr. #YARDSELLR http://t.co/KxuRZZVT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:37 +0000", "from_user": "HazyyDaze", "from_user_id": 441061064, "from_user_id_str": "441061064", "from_user_name": "Mary Jane", "geo": null, "id": 148831619636133900, "id_str": "148831619636133888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702542451/trippy-man-tree_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702542451/trippy-man-tree_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "WTF... TWITTER OVER CAPACITY, so there is a picture of a whale being carried by birds... how the FUCK does that add up #toostoned", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:36 +0000", "from_user": "moosamoose", "from_user_id": 19047560, "from_user_id_str": "19047560", "from_user_name": "Anna Incs Lantsman", "geo": null, "id": 148831615370526720, "id_str": "148831615370526721", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/71364157/Mo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/71364157/Mo_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "http://t.co/m9lASTj9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:35 +0000", "from_user": "Pardo_Lu", "from_user_id": 357534768, "from_user_id_str": "357534768", "from_user_name": "Luc\\u00EDa Pardo", "geo": null, "id": 148831608110198800, "id_str": "148831608110198784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702610634/IMG02151-20111210-1729_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702610634/IMG02151-20111210-1729_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@Ronald_MacKay Todav\\u00EDa tenes Angry Birds??", "to_user": "Ronald_MacKay", "to_user_id": 41252345, "to_user_id_str": "41252345", "to_user_name": "Ronald MacKay", "in_reply_to_status_id": 148814864788357120, "in_reply_to_status_id_str": "148814864788357120"}, +{"created_at": "Mon, 19 Dec 2011 18:26:35 +0000", "from_user": "Manda_Minaj", "from_user_id": 353724994, "from_user_id_str": "353724994", "from_user_name": "Amanda Gecaj", "geo": null, "id": 148831607338434560, "id_str": "148831607338434560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697042134/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697042134/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "These birds all over partridge are giving me anxiety \\uD83D\\uDE32\\uD83D\\uDE37", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:33 +0000", "from_user": "ItsRaniaBieber", "from_user_id": 275638701, "from_user_id_str": "275638701", "from_user_name": "i Adore Jelena....\\u2665\\u2665", "geo": null, "id": 148831601206378500, "id_str": "148831601206378497", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702587709/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702587709/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@SelGomez200 awwwe, my love birds :) hahaha", "to_user": "SelGomez200", "to_user_id": 379735857, "to_user_id_str": "379735857", "to_user_name": "$ELEN@ G0M3Z", "in_reply_to_status_id": 148830213567033340, "in_reply_to_status_id_str": "148830213567033344"}, +{"created_at": "Mon, 19 Dec 2011 18:26:32 +0000", "from_user": "Richdatdude", "from_user_id": 19374100, "from_user_id_str": "19374100", "from_user_name": "Cat Daddy!", "geo": null, "id": 148831596043186180, "id_str": "148831596043186176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699289065/2011-12-17_14.37.09_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699289065/2011-12-17_14.37.09_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "I have my cookie to the birds and they swarmed me!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:30 +0000", "from_user": "EatMyFireBox", "from_user_id": 312180919, "from_user_id_str": "312180919", "from_user_name": "\\u6C49\\u5B57/\\u6F22\\u5B57", "geo": null, "id": 148831588220801020, "id_str": "148831588220801025", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1659132001/Snapshot_20111017_9_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659132001/Snapshot_20111017_9_normal.JPG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "lmao . I will be saying the same thing when the birds trash you @Steve_Stagner", "to_user": "Steve_Stagner", "to_user_id": 275266932, "to_user_id_str": "275266932", "to_user_name": "Steve Stagner", "in_reply_to_status_id": 148829449834598400, "in_reply_to_status_id_str": "148829449834598400"}, +{"created_at": "Mon, 19 Dec 2011 18:26:28 +0000", "from_user": "exp_empresas", "from_user_id": 14942767, "from_user_id_str": "14942767", "from_user_name": "exp_empresas", "geo": null, "id": 148831580893360130, "id_str": "148831580893360129", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/54807729/E_empresas_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/54807729/E_empresas_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "El creador de Angry Birds considera salir a Bolsa en Hong Kong: La compa\\u00F1\\u00EDa creadora de Angry Birds, el videojue... http://t.co/kGKL4LMR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:24 +0000", "from_user": "d307lastfm", "from_user_id": 273914115, "from_user_id_str": "273914115", "from_user_name": "d307lastfm", "geo": null, "id": 148831564028051460, "id_str": "148831564028051456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1291334234/last-fm_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1291334234/last-fm_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "2 Chainz Ft. Young Jeezy, Yo Gotti, & Birdman \\u2013 Slangin Birds (Prod. By Drumma Boy): http://t.co/O7Jfh7uD%... http://t.co/E8FCsbXn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:23 +0000", "from_user": "Murielnpa", "from_user_id": 431714874, "from_user_id_str": "431714874", "from_user_name": "Muriel Kazan", "geo": null, "id": 148831560228024320, "id_str": "148831560228024320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681060915/large_205442_10150163633982290_663277289_6677396_52_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681060915/large_205442_10150163633982290_663277289_6677396_52_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Field Guide to the Birds of Western Africa (Helm Field Guides): This new field guide uses all of the plates from... http://t.co/Q3EawKOd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:15 +0000", "from_user": "Jannausld", "from_user_id": 426261581, "from_user_id_str": "426261581", "from_user_name": "Janna Cadorette", "geo": null, "id": 148831524744200200, "id_str": "148831524744200193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668795630/LLCM-2162_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668795630/LLCM-2162_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@signedvc Go go get Pigeon Palooza (the next angry birds)- it's launched in Android Mktplce - will be in ITunes in a few days.", "to_user": "signedvc", "to_user_id": 237419114, "to_user_id_str": "237419114", "to_user_name": "Marissa Peterson", "in_reply_to_status_id": 148826056864968700, "in_reply_to_status_id_str": "148826056864968705"}, +{"created_at": "Mon, 19 Dec 2011 18:26:14 +0000", "from_user": "Cesmi_Nergis", "from_user_id": 251631550, "from_user_id_str": "251631550", "from_user_name": "Cesmi_Nergis", "geo": null, "id": 148831519522291700, "id_str": "148831519522291713", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1679474907/DSC01397_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679474907/DSC01397_normal.JPG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "ahahahayy cok guldummm Angara birds :))))))) http://t.co/8442uTep", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:11 +0000", "from_user": "jamrfirdaus", "from_user_id": 153702207, "from_user_id_str": "153702207", "from_user_name": "Jamar Firdaus", "geo": null, "id": 148831506939396100, "id_str": "148831506939396096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/973485883/jamr2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/973485883/jamr2_normal.jpg", "source": "<a href="http://publicize.wp.com/" rel="nofollow">WordPress.com</a>", "text": "[Share] Angry Birds Portable http://t.co/svATe4e8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:07 +0000", "from_user": "fernandes_leo", "from_user_id": 59210709, "from_user_id_str": "59210709", "from_user_name": "leonardo fernandes", "geo": null, "id": 148831493261766660, "id_str": "148831493261766656", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/326813790/leo1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/326813790/leo1_normal.jpg", "source": "<a href="http://www.tweekly.fm/" rel="nofollow">Tweekly.fm</a>", "text": "My Top 3 #lastfm Artists: MGMT (10), Noel Gallagher's High Flying Birds (4) & Blondie (2) #mm http://t.co/1OOv1AYo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:07 +0000", "from_user": "scarahhhh", "from_user_id": 91899926, "from_user_id_str": "91899926", "from_user_name": "Scarahhhh", "geo": null, "id": 148831491529510900, "id_str": "148831491529510912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1665582789/laughing_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665582789/laughing_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\"Why would you ask me that question? Me? The falcon. Because everyone knows that falcons are notoriously monogamous birds!\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:02 +0000", "from_user": "ItsLilBeezy", "from_user_id": 51661207, "from_user_id_str": "51661207", "from_user_name": "B(ilal)", "geo": null, "id": 148831472130854900, "id_str": "148831472130854913", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/311681541/2642_511874776967_28601029_30767263_1586486_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/311681541/2642_511874776967_28601029_30767263_1586486_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "If you feed the birds in any of the boroughs, you can go to hell. #Shitshow", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:02 +0000", "from_user": "coe_lette", "from_user_id": 331670920, "from_user_id_str": "331670920", "from_user_name": "Collette Angelle", "geo": null, "id": 148831470918701060, "id_str": "148831470918701057", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701538229/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701538229/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@Drayy7: bouta check out\\u201D check out and come to the levee with a shotgun me and Sarah wanna shoot birds lmao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:01 +0000", "from_user": "DaveyWonder23", "from_user_id": 86140316, "from_user_id_str": "86140316", "from_user_name": "Dave Presocki", "geo": null, "id": 148831466674065400, "id_str": "148831466674065408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1283435689/38818_10150238695160574_898015573_14129599_7573014_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1283435689/38818_10150238695160574_898015573_14129599_7573014_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@reyman1218 @ElizabethMay926 @raekayleigh The birds are back", "to_user": "reyman1218", "to_user_id": 88234155, "to_user_id_str": "88234155", "to_user_name": "Stephen Rey"}, +{"created_at": "Mon, 19 Dec 2011 18:26:01 +0000", "from_user": "LRob83", "from_user_id": 282209277, "from_user_id_str": "282209277", "from_user_name": "LynseyR83", "geo": null, "id": 148831465721966600, "id_str": "148831465721966592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675899378/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675899378/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @B6_illest: Gotta love a bit of angry birds on the bog at work!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:58 +0000", "from_user": "HubofJD", "from_user_id": 258466559, "from_user_id_str": "258466559", "from_user_name": "JDHub", "geo": null, "id": 148831455122960400, "id_str": "148831455122960384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1258035344/My_two_cents_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1258035344/My_two_cents_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "A #Photo of a #Spoonbill #Bird and #Two other Birds\\thttp://t.co/XNyovDsd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:59 +0000", "from_user": "Dumbinican", "from_user_id": 188607015, "from_user_id_str": "188607015", "from_user_name": "Esteban Perez", "geo": null, "id": 148831454485413900, "id_str": "148831454485413889", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701965600/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701965600/image_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Photos on iOS</a>", "text": "Isle 13 cake mix, flour, and birds http://t.co/F8GF9qKa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:57 +0000", "from_user": "RedCapeGhost", "from_user_id": 346151470, "from_user_id_str": "346151470", "from_user_name": "Fantasma Capa Roja", "geo": null, "id": 148831450999963650, "id_str": "148831450999963648", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1471410036/manta_polarvide_ikea_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1471410036/manta_polarvide_ikea_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @AntonioRull: Molar\\u00EDa ver, en tiempo real, la fase a la que van llegando los diputados en el Angry Birds del iPad mientras Rajoy habla", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:57 +0000", "from_user": "Ellyikg", "from_user_id": 430047525, "from_user_id_str": "430047525", "from_user_name": "Elly Wakley", "geo": null, "id": 148831448097501200, "id_str": "148831448097501184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1677521726/dm1ism45my_123530396-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677521726/dm1ism45my_123530396-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Life Cycle of Birds: From Egg to Adult: Discusses how birds differ from other animals, their habitat, what t... http://t.co/a3yaQgsM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:55 +0000", "from_user": "CBake229", "from_user_id": 137185411, "from_user_id_str": "137185411", "from_user_name": "Wally West ", "geo": null, "id": 148831440388362240, "id_str": "148831440388362240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1667832290/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667832290/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "My cousin got dem birds out yo way RT @Press1forHeze: Can anybody put me on to a PT gig?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:52 +0000", "from_user": "myzerowaste", "from_user_id": 15842266, "from_user_id_str": "15842266", "from_user_name": "myzerowaste", "geo": null, "id": 148831430720503800, "id_str": "148831430720503810", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1259444442/twit2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1259444442/twit2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @greenroofsuk: World's most threatened birds set up new nest in Gloucestershire -#Nature #biodiversity #Environment http://t.co/eOwO5xf5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:50 +0000", "from_user": "RFMobilePages", "from_user_id": 24207452, "from_user_id_str": "24207452", "from_user_name": "RockFishMobilePages", "geo": null, "id": 148831419005808640, "id_str": "148831419005808640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1476838356/All_In__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1476838356/All_In__normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Video: The Interactive Angry Birds Christmas Lights\\u00A0Display http://t.co/v005txa0 via @techcrunch", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:50 +0000", "from_user": "Allgamers_fr", "from_user_id": 131220234, "from_user_id_str": "131220234", "from_user_name": "Allgamers.fr", "geo": null, "id": 148831418947080200, "id_str": "148831418947080192", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1256452526/space_invaders_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1256452526/space_invaders_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Angry Birds Christmas Light Game http://t.co/dYhtKs7q #Noel #AngryBirds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:45 +0000", "from_user": "MeGTheRebellion", "from_user_id": 125476086, "from_user_id_str": "125476086", "from_user_name": "Magda Bologna", "geo": null, "id": 148831398441123840, "id_str": "148831398441123840", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1180220778/likeFirenze_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1180220778/likeFirenze_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "vorrei affacciarmi e vedere \"blue birds\" in the skie", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:44 +0000", "from_user": "joseesol", "from_user_id": 64085790, "from_user_id_str": "64085790", "from_user_name": "jose solares ", "geo": null, "id": 148831396453040130, "id_str": "148831396453040129", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699615438/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699615438/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Angry birds jaja http://t.co/MTsWJCTc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:44 +0000", "from_user": "PrinceBreezyy_", "from_user_id": 249998887, "from_user_id_str": "249998887", "from_user_name": "TaylorGang..", "geo": null, "id": 148831394913722370, "id_str": "148831394913722368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701717515/90zt4eoN_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701717515/90zt4eoN_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I got a sweeter song, then the birds in the trees", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:25:43 +0000", "from_user": "Katves", "from_user_id": 54902917, "from_user_id_str": "54902917", "from_user_name": "Kat Ves", "geo": null, "id": 148831390560034800, "id_str": "148831390560034816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1676578904/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676578904/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "My phone was just hijacked by a three year old; he completed four levels of angry birds before I got it back.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:41 +0000", "from_user": "TuNegroFavorito", "from_user_id": 196062270, "from_user_id_str": "196062270", "from_user_name": "Carlos Barrios.", "geo": null, "id": 148831382230151170, "id_str": "148831382230151168", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695159642/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695159642/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "JAJAJAJAJAJAJAJJAJAA MALDITA SEAAAAA! JAJAKSJLDHQWOUFGQWVCSWUH0QWODH http://t.co/dRVFcyob", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:40 +0000", "from_user": "KandiceXChanel", "from_user_id": 40364837, "from_user_id_str": "40364837", "from_user_name": "Kandice McMillian", "geo": null, "id": 148831377402494980, "id_str": "148831377402494976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701166228/FOadwHKR_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701166228/FOadwHKR_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "Yo, my horoscope aint never right, Shits for the birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:39 +0000", "from_user": "AIRWICK_FRESH", "from_user_id": 25608405, "from_user_id_str": "25608405", "from_user_name": "Ai-Rick Coleman", "geo": null, "id": 148831373233373200, "id_str": "148831373233373184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1227765325/11060_105621589453193_100000160578066_153284_3210405_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1227765325/11060_105621589453193_100000160578066_153284_3210405_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "angry birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:35 +0000", "from_user": "porracohen", "from_user_id": 87725238, "from_user_id_str": "87725238", "from_user_name": "COHEN C-O-H-E-N", "geo": null, "id": 148831359069196300, "id_str": "148831359069196288", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1430942899/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1430942899/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "ok @esteves_ana tu me deixou viciado em agry birds, obg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:32 +0000", "from_user": "BelleMillaQEOG", "from_user_id": 428355696, "from_user_id_str": "428355696", "from_user_name": "Belle Milla", "geo": null, "id": 148831344531742720, "id_str": "148831344531742720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1674178599/7012289841192040_jo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674178599/7012289841192040_jo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@KilUWitKindness Ya gotta check out Pigeon Palooza (the next angry birds)- it's avail in Android Mktplce - will be in App Store soon.", "to_user": "KilUWitKindness", "to_user_id": 195082103, "to_user_id_str": "195082103", "to_user_name": "Maudie Amos", "in_reply_to_status_id": 148825163264311300, "in_reply_to_status_id_str": "148825163264311296"}, +{"created_at": "Mon, 19 Dec 2011 18:25:29 +0000", "from_user": "andrew_haws", "from_user_id": 387493283, "from_user_id_str": "387493283", "from_user_name": "andrew", "geo": null, "id": 148831334582845440, "id_str": "148831334582845440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1587053525/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587053525/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "The whole angry birds craze needed to stop a year or two ago!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:29 +0000", "from_user": "tremoloid", "from_user_id": 91665729, "from_user_id_str": "91665729", "from_user_name": "\\u30C8\\u30EC\\u30E2\\u30ED\\u30A4\\u30C9\\uFF5CTREMOLOID", "geo": null, "id": 148831331659415550, "id_str": "148831331659415552", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1249777608/MTCA_5025_Tremololoop_JP_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1249777608/MTCA_5025_Tremololoop_JP_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "12/19\\u306E\\u30C8\\u30EC\\u30E2\\u30ED\\u30A4\\u30C9\\u4F01\\u753B\\u300C\\u591C\\u660E\\u3051\\u524D\\u300D\\u306B\\u6765\\u3066\\u304F\\u308C\\u305F\\u7686\\u69D8\\u3042\\u308A\\u304C\\u3068\\u3046\\uFF01\\u50D5\\u3089\\u3060\\u3051\\u3067\\u306F\\u306A\\u304F\\u3001\\u30CB\\u30E5\\u30FC\\u30E8\\u30FC\\u30AF\\u3068\\u81EA\\u8EE2\\u8ECA\\u3001birds melt sky,\\u5C0F\\u5CF6\\u30B1\\u30A4\\u30BF\\u30CB\\u30FC\\u30E9\\u30D6\\u3002\\u30CD\\u30B4\\u30F3\\u30DC\\u306E\\u30AB\\u30EC\\u30FC\\u306E\\u611F\\u60F3\\u306A\\u3069\\u3092\\u3000#yoakemae\\u3000\\u306E\\u30CF\\u30C3\\u30B7\\u30E5\\u30BF\\u30B0\\u3092\\u4ED8\\u3051\\u3066\\u3064\\u3076\\u3084\\u3044\\u3066\\u3082\\u3089\\u3048\\u308B\\u3068\\u5B09\\u3057\\u3044\\u3067\\u3059\\uFF01\\u307E\\u305F\\u660E\\u65E5\\uFF01\\uFF01\\u30BD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:29 +0000", "from_user": "i_make_em_say", "from_user_id": 188632010, "from_user_id_str": "188632010", "from_user_name": "Dee H.", "geo": null, "id": 148831330938011650, "id_str": "148831330938011648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669962824/profile_image_1322848519183_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669962824/profile_image_1322848519183_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "I really really really hate when birds fly over my head!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:28 +0000", "from_user": "vanessanoguti", "from_user_id": 128921942, "from_user_id_str": "128921942", "from_user_name": "vanessa noguti", "geo": null, "id": 148831327553208320, "id_str": "148831327553208322", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696325686/DSC00016_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696325686/DSC00016_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "P\\u00F4neis Malditos? Por que n\\u00E3o Angry Birds Malditos? #BigFollow:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:23 +0000", "from_user": "V4DIO", "from_user_id": 170887014, "from_user_id_str": "170887014", "from_user_name": "otac\\u00EDlio", "geo": null, "id": 148831308364267520, "id_str": "148831308364267521", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694220204/111214-002435_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694220204/111214-002435_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @whysouseless: daora n\\u00E3o ter angry birds no itunes brasil", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:23 +0000", "from_user": "jean_suzuki", "from_user_id": 21148770, "from_user_id_str": "21148770", "from_user_name": "Jean Suzuki", "geo": null, "id": 148831305415667700, "id_str": "148831305415667712", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685478672/DSC_7546__2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685478672/DSC_7546__2__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Uma lista com os 50 melhores \\u00E1lbuns de 2011, ouvi incr\\u00EDveis 1. High Flying Birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:22 +0000", "from_user": "t_garner", "from_user_id": 45786839, "from_user_id_str": "45786839", "from_user_name": "Tommy Garner", "geo": null, "id": 148831304807497730, "id_str": "148831304807497729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1516326542/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1516326542/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@CarmelaCubbie2 not a fan of the Birds? Whys that? And I wouldn't want you to fight anyone! #badfirstdate", "to_user": "CarmelaCubbie2", "to_user_id": 49621178, "to_user_id_str": "49621178", "to_user_name": "Carmela Wassmer", "in_reply_to_status_id": 148830091466637300, "in_reply_to_status_id_str": "148830091466637313"}, +{"created_at": "Mon, 19 Dec 2011 18:25:22 +0000", "from_user": "AkiraHitsugaya", "from_user_id": 259640720, "from_user_id_str": "259640720", "from_user_name": "ibrahim edward \\u2611", "geo": null, "id": 148831303251394560, "id_str": "148831303251394561", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690919438/314905_10150386055627241_548512240_8169653_1215959487_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690919438/314905_10150386055627241_548512240_8169653_1215959487_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Good night tweeter birds and sweet dream pls wish me luck for final paper 2moro ... I'm bluff wey haha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:22 +0000", "from_user": "Angelyncie", "from_user_id": 440169631, "from_user_id_str": "440169631", "from_user_name": "Angelyn Cobell", "geo": null, "id": 148831302261555200, "id_str": "148831302261555201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700472808/large_8129_1197522349032_1557705399_30536231_820065_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700472808/large_8129_1197522349032_1557705399_30536231_820065_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "SET OF 3 REPLACEMENT BIRDS - for Kyjen Hide-a-Bird: Set of Three replacement squeaky squirrels for the Kyjen Hid... http://t.co/3z5HoF6X", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:21 +0000", "from_user": "Rowenah661", "from_user_id": 400986038, "from_user_id_str": "400986038", "from_user_name": "Noreen Bryan", "geo": null, "id": 148831300034379780, "id_str": "148831300034379776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1663267759/163266488Steffanie_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663267759/163266488Steffanie_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I bet the guy who programs Angry Birds can't walk into a building without thinking about exactly where he'd hit it to make it fall down", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:19 +0000", "from_user": "DipsyFTM", "from_user_id": 439615252, "from_user_id_str": "439615252", "from_user_name": "Dipsy", "geo": null, "id": 148831289406009340, "id_str": "148831289406009346", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699172956/image_normal.jpg", "profile_image_url_https": null, "source": "<a href="http://twitter.com/">web</a>", "text": "havin a house party tomorra any1 comin? get smashed on j2os an we can have wankin sessions over da birds till our knobs hurt, GONNA BE MESSY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:18 +0000", "from_user": "sant_gr", "from_user_id": 58646480, "from_user_id_str": "58646480", "from_user_name": "sant g.r.", "geo": null, "id": 148831281302601730, "id_str": "148831281302601729", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1552980923/IaTrDXuC_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552980923/IaTrDXuC_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@SarahLoSh mis esferas de angry birds terminadas!:D http://t.co/CroKjw2V", "to_user": "SarahLoSh", "to_user_id": 253780167, "to_user_id_str": "253780167", "to_user_name": "Sarah*"}, +{"created_at": "Mon, 19 Dec 2011 18:25:14 +0000", "from_user": "Wouterzoet", "from_user_id": 257496574, "from_user_id_str": "257496574", "from_user_name": "Wouter Zoet", "geo": null, "id": 148831270980435970, "id_str": "148831270980435969", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1583213338/cDcxR0Pv_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583213338/cDcxR0Pv_normal", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @RaadDezeTweet: - - - - - ( \\u00F2 )> (^(00)^) ANGRY BIRDS! Retweet als je het ziet! #RDT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:14 +0000", "from_user": "Sonny_Caruso", "from_user_id": 52947280, "from_user_id_str": "52947280", "from_user_name": "Sonny Caruso", "geo": null, "id": 148831270795882500, "id_str": "148831270795882496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1641463219/twitfb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641463219/twitfb_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Best thing since angry birds http://t.co/QDBqsJz5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:14 +0000", "from_user": "seedpodpub", "from_user_id": 27533289, "from_user_id_str": "27533289", "from_user_name": "Seedpod Publishing", "geo": null, "id": 148831269940240400, "id_str": "148831269940240384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1113438101/seedpodtwitter_200x200_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1113438101/seedpodtwitter_200x200_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @motkedapp: The birds flitted & nibbled on seeds until A WEREWOLF ATE THEM. Afterwards, the werewolf watched a film about a ghost...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:11 +0000", "from_user": "garden_alley", "from_user_id": 233824600, "from_user_id_str": "233824600", "from_user_name": "Garden Alley", "geo": null, "id": 148831258921811970, "id_str": "148831258921811968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1206338810/garden_twitter_sml_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1206338810/garden_twitter_sml_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#uk-garden You could always move to the Mumbles :-)) BTW there's a shortage of birds here too. My Niger see http://t.co/IqCr4VkB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:09 +0000", "from_user": "AngieGeli22", "from_user_id": 175659821, "from_user_id_str": "175659821", "from_user_name": "AngelineyJellyBeanie", "geo": null, "id": 148831249019043840, "id_str": "148831249019043841", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687686404/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687686404/profile_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "It's cold and raining... Is it ominous that the only birds flying near my neighborhood are crows? ._.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:08 +0000", "from_user": "johntwitchen", "from_user_id": 82178376, "from_user_id_str": "82178376", "from_user_name": "John Twitchen", "geo": null, "id": 148831243771981820, "id_str": "148831243771981824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1427998439/042_one-handed_wheelie_after_70_miles_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1427998439/042_one-handed_wheelie_after_70_miles_normal.jpg", "source": "<a href="http://www.independent.co.uk/" rel="nofollow">The Independent</a>", "text": "The world's most threatened birds set up new nest in #Gloucestershire http://t.co/xOj6KkeO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:06 +0000", "from_user": "MudRat53", "from_user_id": 397967657, "from_user_id_str": "397967657", "from_user_name": "Mud Rat", "geo": null, "id": 148831237027532800, "id_str": "148831237027532801", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1605903530/P1080026_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1605903530/P1080026_normal.JPG", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "This is a #Photo of some #Birds searching the #Grass for #Food\\thttp://t.co/Bq1UoD8m", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:06 +0000", "from_user": "BenMurf901", "from_user_id": 205141492, "from_user_id_str": "205141492", "from_user_name": "Ben Murphy", "geo": null, "id": 148831236650057730, "id_str": "148831236650057728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1364976736/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1364976736/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Three birds just hit my car while I was....parked #dumbbirds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:04 +0000", "from_user": "MidnightDBA", "from_user_id": 55133764, "from_user_id_str": "55133764", "from_user_name": "Jen & Sean McCown", "geo": null, "id": 148831228391464960, "id_str": "148831228391464960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1105715146/SeanJen_crop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1105715146/SeanJen_crop_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @sqlpass: Early birds get the great rate at #SQLRally Dallas - register by Jan. 14 & submit sessions by Jan. 22 http://t.co/U11nqCLx #sqlpass", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:04 +0000", "from_user": "Justbirds1", "from_user_id": 291680688, "from_user_id_str": "291680688", "from_user_name": "Bev", "geo": null, "id": 148831227686821900, "id_str": "148831227686821888", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1335631073/5261855304_0f68f9ba91_m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335631073/5261855304_0f68f9ba91_m_normal.jpg", "source": "<a href="http://www.twaitter.com" rel="nofollow">Twaitter</a>", "text": "Baby Burrowing Owl http://t.co/rXROHY74 #birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:03 +0000", "from_user": "fahy99", "from_user_id": 351003929, "from_user_id_str": "351003929", "from_user_name": "Fahad Alobaid", "geo": null, "id": 148831223333138430, "id_str": "148831223333138432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1545463903/308643_2438489805093_1337212045_2892023_2133195404_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545463903/308643_2438489805093_1337212045_2892023_2133195404_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "today I've heard the best conversation between 2 nurses: blo bla ble blo (iphone) ble bla cla cle (angry birds) blo ble bla blo (touch).. :P", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:03 +0000", "from_user": "Bellafcq", "from_user_id": 431694875, "from_user_id_str": "431694875", "from_user_name": "Bella Wohlfahrt", "geo": null, "id": 148831222653665280, "id_str": "148831222653665280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681019441/ddkevw55uz_112990808-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681019441/ddkevw55uz_112990808-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Birds of East Asia: This is the first single volume guide ever devoted to the eastern Asianavifauna. The eastern... http://t.co/i5VWgo8A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:00 +0000", "from_user": "naty_csii", "from_user_id": 334144840, "from_user_id_str": "334144840", "from_user_name": "Nathalia Cristina ''", "geo": null, "id": 148831210678927360, "id_str": "148831210678927360", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702403087/Foto2771_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702403087/Foto2771_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "P\\u00F4neis Malditos? Por que n\\u00E3o Angry Birds Malditos? #MaisFollowers: http://t.co/WMs26fAe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:56 +0000", "from_user": "Chungodp", "from_user_id": 426261931, "from_user_id_str": "426261931", "from_user_name": "Chung Knee", "geo": null, "id": 148831195558461440, "id_str": "148831195558461441", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668796811/LLCM-5119_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668796811/LLCM-5119_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MYRONINGURL Hey, go get Pigeon Palooza (the next angry birds)- it is in Android Mktplce - will be in App Store next week.", "to_user": "MYRONINGURL", "to_user_id": 176901410, "to_user_id_str": "176901410", "to_user_name": "myra miera", "in_reply_to_status_id": 148821472113213440, "in_reply_to_status_id_str": "148821472113213442"}, +{"created_at": "Mon, 19 Dec 2011 18:24:56 +0000", "from_user": "Fidel7_", "from_user_id": 150363007, "from_user_id_str": "150363007", "from_user_name": "Koni $L400$", "geo": null, "id": 148831193620680700, "id_str": "148831193620680704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700405158/photo-4_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700405158/photo-4_normal.jpeg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "He wasn't talking bout coke and birds more like spoken words", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:56 +0000", "from_user": "iAMPoppaSmurf", "from_user_id": 20319049, "from_user_id_str": "20319049", "from_user_name": "Reese NO Chocolate", "geo": null, "id": 148831192374968320, "id_str": "148831192374968320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1595090599/73004_450576824927_507389927_5175245_4622794_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1595090599/73004_450576824927_507389927_5175245_4622794_n_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Angry birds is such a stress reliever lol feeling better already", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:55 +0000", "from_user": "steven_britt", "from_user_id": 103634774, "from_user_id_str": "103634774", "from_user_name": "Steven Britt", "geo": null, "id": 148831189791289340, "id_str": "148831189791289344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/826329805/Photo_on_2010-04-15_at_19.39_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/826329805/Photo_on_2010-04-15_at_19.39_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @BibleStudyGuide: God reveals which animals\\u2014including fish and birds\\u2014are suitable and unsuitable for human consumption in Leviticus 11 & Deuteronomy 14....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:54 +0000", "from_user": "TECNOCO", "from_user_id": 54761166, "from_user_id_str": "54761166", "from_user_name": "GrupoTECNOCO", "geo": null, "id": 148831187228569600, "id_str": "148831187228569600", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1455809214/profileimage_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1455809214/profileimage_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Los \"angry birds\" podr\\u00EDan sobrevolar el parqu\\u00E9 asi\\u00E1tico: Una tecnolandoacute;gica mandaacute;s que estandaacute;... http://t.co/xhhsgMza", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:53 +0000", "from_user": "NESSAP00H88", "from_user_id": 44658922, "from_user_id_str": "44658922", "from_user_name": "AntwansLOver ", "geo": null, "id": 148831183260749820, "id_str": "148831183260749825", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1649153360/7gzFDPxv_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649153360/7gzFDPxv_normal", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @Betty21Trim: Hey Ladies.. Put some Toothpaste on his Penis.. Kill 2 Birds with 1 Stone this morning!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:49 +0000", "from_user": "BananaSplit_08", "from_user_id": 224349955, "from_user_id_str": "224349955", "from_user_name": "Brianna E. Sanchez", "geo": null, "id": 148831163002265600, "id_str": "148831163002265601", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699076583/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699076583/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "If I'm addicting to loving you, and your addicted to my love to, we can be two birds of a feather, and just fly together :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:46 +0000", "from_user": "birdsunlimited", "from_user_id": 45355307, "from_user_id_str": "45355307", "from_user_name": "Wild Birds Unlimited", "geo": null, "id": 148831152797523970, "id_str": "148831152797523969", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1113305824/WildBirdsUnlimited_logo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1113305824/WildBirdsUnlimited_logo_normal.gif", "source": "<a href="http://www.ning.com" rel="nofollow">a Ning Network</a>", "text": "Fun Facts About Juncos http://t.co/rIGlg4TS \\u2744 Wild Birds Unlimited #Lansing #Michigan #birds #nature #loveLansing #pureMichigan", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:45 +0000", "from_user": "laurikiviniemi", "from_user_id": 12262492, "from_user_id_str": "12262492", "from_user_name": "Lauri Kiviniemi", "geo": null, "id": 148831149077176320, "id_str": "148831149077176320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1503788939/19082011122_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1503788939/19082011122_normal.jpg", "source": "<a href="http://paper.li" rel="nofollow">Paper.li</a>", "text": "Angry birds is out! http://t.co/gOk4UoRH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:45 +0000", "from_user": "julionettuno", "from_user_id": 46115803, "from_user_id_str": "46115803", "from_user_name": "julio nettuno", "geo": null, "id": 148831148754223100, "id_str": "148831148754223105", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/980469540/images_37__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/980469540/images_37__normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Que ortivas los del banco Itau,no me dejaron jugar al Angry Birds!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:44 +0000", "from_user": "jbrinkley32", "from_user_id": 403719622, "from_user_id_str": "403719622", "from_user_name": "Jantsen Brinkley", "geo": null, "id": 148831144425689100, "id_str": "148831144425689088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691694314/Aggxy2GCAAASNqs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691694314/Aggxy2GCAAASNqs_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "When I drive- if you beep your horn 1 second after the light changes green I will shut off my car, lay on the hood & feed birds for an hour.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:41 +0000", "from_user": "Kareendmmg", "from_user_id": 426262455, "from_user_id_str": "426262455", "from_user_name": "Kareen Sicari", "geo": null, "id": 148831132811657200, "id_str": "148831132811657216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668798646/LLCM-2128_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668798646/LLCM-2128_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MafiaWarsStrtgy Go try out Pigeon Palooza (the next angry birds)- it's live in Android Mktplce - will be in ITunes soon.", "to_user": "MafiaWarsStrtgy", "to_user_id": 78134924, "to_user_id_str": "78134924", "to_user_name": "Mafia Wars Strategy", "in_reply_to_status_id": 148830133569073150, "in_reply_to_status_id_str": "148830133569073153"}, +{"created_at": "Mon, 19 Dec 2011 18:24:41 +0000", "from_user": "DjMrIncredible", "from_user_id": 32066630, "from_user_id_str": "32066630", "from_user_name": "Samibaby Chomba", "geo": null, "id": 148831132413214720, "id_str": "148831132413214720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680726726/samie_smoke_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680726726/samie_smoke_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @CamillaMillz: Eh love birds!!! RT @MrsChomba: @DjMrIncredible i miss u more my king...so much! #addicted", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:40 +0000", "from_user": "whysouseless", "from_user_id": 65762345, "from_user_id_str": "65762345", "from_user_name": "brullshit", "geo": null, "id": 148831126507622400, "id_str": "148831126507622400", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691144045/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691144045/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "daora n\\u00E3o ter angry birds no itunes brasil", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:37 +0000", "from_user": "DigitalMktgGirl", "from_user_id": 207849105, "from_user_id_str": "207849105", "from_user_name": "Ashley Deas", "geo": null, "id": 148831116562939900, "id_str": "148831116562939904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1664603772/ash_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664603772/ash_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @SonyElectronics: #AngryBirds in holiday lights? See for yourself http://t.co/eqd6oXXf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:37 +0000", "from_user": "MJLaFlare_", "from_user_id": 239464323, "from_user_id_str": "239464323", "from_user_name": "Anayancy B. \\u2665 ", "geo": null, "id": 148831112918073340, "id_str": "148831112918073344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700953258/L5M4IFY4_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700953258/L5M4IFY4_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT\"@SOBER_FREE: No one understands how terrified I am of birds!!!\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:28 +0000", "from_user": "BigdaddyHoke", "from_user_id": 211267472, "from_user_id_str": "211267472", "from_user_name": "Dillion Hoke", "geo": null, "id": 148831077404901380, "id_str": "148831077404901378", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1613128774/33541_1401728083318_1235790265_30896312_4073764_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1613128774/33541_1401728083318_1235790265_30896312_4073764_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "buggin at all the kids wearing those angry birds hats. you all look stupid as fuck haha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:28 +0000", "from_user": "K_Cookie0611", "from_user_id": 358847484, "from_user_id_str": "358847484", "from_user_name": "Kyra Cook", "geo": null, "id": 148831076591222800, "id_str": "148831076591222784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1555519044/t8F1Ai8H_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555519044/t8F1Ai8H_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "How about them birds!? :D Im sorry I had to! @LoveU4Life", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:26 +0000", "from_user": "flyygirrl12", "from_user_id": 345677519, "from_user_id_str": "345677519", "from_user_name": "Put Your Name Here", "geo": null, "id": 148831067929985020, "id_str": "148831067929985024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696835205/kitty_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696835205/kitty_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Angry Birds for Xbox and Angry Birds for the Wii. I would get that", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:26 +0000", "from_user": "applecreate", "from_user_id": 414395329, "from_user_id_str": "414395329", "from_user_name": "applecreate", "geo": null, "id": 148831066562629630, "id_str": "148831066562629632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1642835223/applecreate_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642835223/applecreate_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Angry Birds Seasons Wreck the Halls 1 - 19 (3 Sterne): http://t.co/5wZxfiEs #apple #sougofollow", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:24 +0000", "from_user": "oasisillusion", "from_user_id": 28373240, "from_user_id_str": "28373240", "from_user_name": "Benny The Jet", "geo": null, "id": 148831059503620100, "id_str": "148831059503620096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697285501/Picture_004_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697285501/Picture_004_1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@BisonGuru my lil sis wants to know if @IPOLifestyle is gonna re up on the birds of a feather crews for females.. shes a Small", "to_user": "BisonGuru", "to_user_id": 29093251, "to_user_id_str": "29093251", "to_user_name": "J.Coles", "in_reply_to_status_id": 148825953609584640, "in_reply_to_status_id_str": "148825953609584640"}, +{"created_at": "Mon, 19 Dec 2011 18:24:22 +0000", "from_user": "blazingbuy", "from_user_id": 235303259, "from_user_id_str": "235303259", "from_user_name": "Blazing Buy", "geo": null, "id": 148831050288738300, "id_str": "148831050288738305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1209657189/1-1204463487cJKy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1209657189/1-1204463487cJKy_normal.jpg", "source": "<a href="http://www.froo.com" rel="nofollow">Froo! Smart Social</a>", "text": "Check out this great item: NEW Angry Birds Knock on Wood Game Mattel Hot Toy Christmas 2011 http://t.co/yqOztp72", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:18 +0000", "from_user": "Willeneua98", "from_user_id": 387913450, "from_user_id_str": "387913450", "from_user_name": "Willene Shorts", "geo": null, "id": 148831036527230980, "id_str": "148831036527230976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1580573910/PPK-3361_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580573910/PPK-3361_normal.jpg", "source": "<a href="http://bestdealsvn8.co.cc" rel="nofollow">bestdealsvn8.co.cc</a>", "text": "http://t.co/ZoJx5MHM Angry Birds game desk/wall Clock 12 colorful pictures Angry Birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:18 +0000", "from_user": "togrown4yuh", "from_user_id": 133071479, "from_user_id_str": "133071479", "from_user_name": "Tan Tan", "geo": null, "id": 148831035361214460, "id_str": "148831035361214464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686275911/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686275911/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Good Afternoon my tweety birds!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:17 +0000", "from_user": "SonicFields", "from_user_id": 165697968, "from_user_id_str": "165697968", "from_user_name": "Sonic Fields", "geo": null, "id": 148831030290296830, "id_str": "148831030290296833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1523594794/Waveform02_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1523594794/Waveform02_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Audio #fieldrecording Totoro Forest birds in heavy rain http://t.co/hlOqj8dL #album #track #newage - you'll need an umbrella for this one!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:12 +0000", "from_user": "LORDKAY2", "from_user_id": 282189544, "from_user_id_str": "282189544", "from_user_name": "chikelue-mbonu kosy", "geo": null, "id": 148831007636860930, "id_str": "148831007636860928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691609100/kay_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691609100/kay_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@AquaKeli u mean giving it2 d birds?", "to_user": "AquaKeli", "to_user_id": 262197577, "to_user_id_str": "262197577", "to_user_name": "Edi", "in_reply_to_status_id": 148830601603072000, "in_reply_to_status_id_str": "148830601603072000"}, +{"created_at": "Mon, 19 Dec 2011 18:24:10 +0000", "from_user": "HolUpBro_O", "from_user_id": 316634428, "from_user_id_str": "316634428", "from_user_name": "ITweetYouUnfollowO_o", "geo": null, "id": 148831001764827140, "id_str": "148831001764827136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1665155838/oCVCcx6D_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665155838/oCVCcx6D_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "#NP Birds part 2 - The Weeknd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:09 +0000", "from_user": "redsoles12", "from_user_id": 34979282, "from_user_id_str": "34979282", "from_user_name": "Rachel Adams", "geo": null, "id": 148830997541171200, "id_str": "148830997541171203", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1663075453/IMG-20111127-01608_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663075453/IMG-20111127-01608_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Even the birds are chained to the sky", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:08 +0000", "from_user": "Briie_Loves_Yuh", "from_user_id": 97695278, "from_user_id_str": "97695278", "from_user_name": "\\u2122 \\(\\u2022_\\u2022\\) Random", "geo": null, "id": 148830992461873150, "id_str": "148830992461873152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1690201481/jgmWG7GR_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690201481/jgmWG7GR_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "ii aint finna b out her long.....all dese Damn birds ^_^", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:04 +0000", "from_user": "MrFame23", "from_user_id": 318891887, "from_user_id_str": "318891887", "from_user_name": "David Datil Mercado ", "geo": null, "id": 148830975638507520, "id_str": "148830975638507520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681703524/KEGQ73FS_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681703524/KEGQ73FS_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "These birds in my house <<<", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:04 +0000", "from_user": "MAXIB0Y3", "from_user_id": 85754176, "from_user_id_str": "85754176", "from_user_name": "max quintus", "geo": null, "id": 148830974233411600, "id_str": "148830974233411584", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1373726891/Max_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1373726891/Max_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Andreas1332 die angry birds op de achtergrond zijn cool :p", "to_user": "Andreas1332", "to_user_id": 235519469, "to_user_id_str": "235519469", "to_user_name": "Andrew Madden", "in_reply_to_status_id": 148139478748364800, "in_reply_to_status_id_str": "148139478748364800"}, +{"created_at": "Mon, 19 Dec 2011 18:23:59 +0000", "from_user": "kay_thai", "from_user_id": 332626739, "from_user_id_str": "332626739", "from_user_name": "K'Ehleyr Thai", "geo": null, "id": 148830956856410100, "id_str": "148830956856410112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1633976558/111111-135854_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633976558/111111-135854_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @TeeRue6: Aw hearing the birds outside my window reminds me of summer #takemethere", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:59 +0000", "from_user": "Per__Ardua", "from_user_id": 384301089, "from_user_id_str": "384301089", "from_user_name": "Kirsten McIntyre", "geo": null, "id": 148830955690405900, "id_str": "148830955690405888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Become addicted to Angry Birds. RAGIN' BIRDS. There's a chance me and Adam could fall out over who is the bird master haha.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:59 +0000", "from_user": "itsJustme8701", "from_user_id": 240480851, "from_user_id_str": "240480851", "from_user_name": "Tyra Jae\\u2122", "geo": +{"coordinates": [32.7773,-97.0851], "type": "Point"}, "id": 148830955392610300, "id_str": "148830955392610304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701823664/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701823664/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "mom: A bird told me you are doing drugs... girl: You're talking with birds and I'm the one doing drugs?! o_O", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:55 +0000", "from_user": "mjvartorg", "from_user_id": 296908035, "from_user_id_str": "296908035", "from_user_name": "mjv-art.org", "geo": null, "id": 148830940288917500, "id_str": "148830940288917505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1366926902/MJV-ART.ORG_-_115442-1200x900-thigh_boots-curly_hair-girl-long_hair_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1366926902/MJV-ART.ORG_-_115442-1200x900-thigh_boots-curly_hair-girl-long_hair_normal.jpg", "source": "<a href="http://twitpic.com" rel="nofollow">Twitpic</a>", "text": "http://t.co/KpcWTBFq 1500x1000 bird (birds), eva 02, evangelion: 2.0 you can (not) advance, from behind, girl, gun http://t.co/Cjr1vQmR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:52 +0000", "from_user": "KEYLOofAC", "from_user_id": 30563353, "from_user_id_str": "30563353", "from_user_name": "KEYLO", "geo": null, "id": 148830927152357380, "id_str": "148830927152357376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700483669/Photo_on_12-17-11_at_10.02_PM__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700483669/Photo_on_12-17-11_at_10.02_PM__2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @_DomDiddy: @KEYLOofAC Real Talk I use to be Tight Tweety delisha Shameka Jazzy they use to be by my window Like early birds early birds lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:52 +0000", "from_user": "GabiScussiatto", "from_user_id": 218163996, "from_user_id_str": "218163996", "from_user_name": "Gabriela Scussiatto", "geo": null, "id": 148830926619680770, "id_str": "148830926619680768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1514917195/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1514917195/twitter_normal.jpg", "source": "<a href="http://www.tweekly.fm/" rel="nofollow">Tweekly.fm</a>", "text": "My Top 3 #lastfm Artists: Pearl Jam (29), Noel Gallagher's High Flying Birds (20) & Metallica (15) http://t.co/JeM2zVwC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:51 +0000", "from_user": "_Stephaniecarol", "from_user_id": 326414114, "from_user_id_str": "326414114", "from_user_name": "StephanieCaroline :3", "geo": null, "id": 148830922463133700, "id_str": "148830922463133696", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690990792/Foto-0117_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690990792/Foto-0117_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "#ocupada, jogando Angry Birds :b", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:47 +0000", "from_user": "MikeBianchi360", "from_user_id": 389066119, "from_user_id_str": "389066119", "from_user_name": "Michael Bianchi ", "geo": null, "id": 148830903613927420, "id_str": "148830903613927424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1656198061/60MBO8i5_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656198061/60MBO8i5_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Twitter twitter twitter let those birds tweet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:46 +0000", "from_user": "EatMyKushh", "from_user_id": 304159076, "from_user_id_str": "304159076", "from_user_name": "ColeWord", "geo": null, "id": 148830899260231680, "id_str": "148830899260231680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1634566111/tiff_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634566111/tiff_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "playing angry birds with my lil brother", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:45 +0000", "from_user": "SeifoneeeV", "from_user_id": 366774841, "from_user_id_str": "366774841", "from_user_name": "Seifone", "geo": null, "id": 148830895741222900, "id_str": "148830895741222912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1529469957/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1529469957/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Well goodmorning my tweety birds! Why is it so cold?!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:45 +0000", "from_user": "GittieBang", "from_user_id": 221502561, "from_user_id_str": "221502561", "from_user_name": "BriMcHam", "geo": +{"coordinates": [43.0597,-70.798], "type": "Point"}, "id": 148830894717804540, "id_str": "148830894717804544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685650707/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685650707/image_normal.jpg", "source": "<a href="http://www.handmark.com" rel="nofollow">TweetCaster for iOS</a>", "text": "Angry birds <<<<<", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:43 +0000", "from_user": "animalarkclinic", "from_user_id": 441041424, "from_user_id_str": "441041424", "from_user_name": "Animal Ark Vet Clini", "geo": null, "id": 148830889302966270, "id_str": "148830889302966272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702536271/animalark_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702536271/animalark_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Lots of loud birds here at Ark today", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:43 +0000", "from_user": "_forevertexas", "from_user_id": 51188887, "from_user_id_str": "51188887", "from_user_name": "Aimee Waters", "geo": null, "id": 148830886035599360, "id_str": "148830886035599360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1436905507/me_guitar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1436905507/me_guitar_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "My Cousin Daisy is absolute pro at Angry Birds. Love this kid.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:35 +0000", "from_user": "wildharry33", "from_user_id": 229421806, "from_user_id_str": "229421806", "from_user_name": "\\uE52D Jazzy Harry ", "geo": null, "id": 148830853378736130, "id_str": "148830853378736129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1674654118/loudmouth_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674654118/loudmouth_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Good Morning early birds \\uE055", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:33 +0000", "from_user": "MarcDreiNull", "from_user_id": 332883587, "from_user_id_str": "332883587", "from_user_name": "Marc.", "geo": null, "id": 148830846365872130, "id_str": "148830846365872129", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1679637963/MarcDreiNull_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679637963/MarcDreiNull_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @Husti: Meine Freundin gestern total theatralisch zu mir: \"Ich muss dich was fragen.\" Nach 5 Minuten rumgestammel sollte ich bei Angry Birds helfen.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:32 +0000", "from_user": "flintStoner_", "from_user_id": 240479178, "from_user_id_str": "240479178", "from_user_name": "\\u1DA0\\u1DB8\\u1D9C\\u1D4F\\u1D67\\u2092\\u1D64, Im Paris\\u2601", "geo": null, "id": 148830843085914100, "id_str": "148830843085914113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695179913/DOyJBCuz_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695179913/DOyJBCuz_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @HolUpBro_O: #NP Birds part 1 - The Weeknd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:31 +0000", "from_user": "Lorettekkq", "from_user_id": 426264025, "from_user_id_str": "426264025", "from_user_name": "Lorette Hanner", "geo": null, "id": 148830839239749630, "id_str": "148830839239749632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668804985/LLCM-5202_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668804985/LLCM-5202_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@C_Maynardx Go try out Pigeon Palooza (the next angry birds)- it is launched in Android Mktplce - will be in App Store next week.", "to_user": "C_Maynardx", "to_user_id": 417176941, "to_user_id_str": "417176941", "to_user_name": "Charlie Maynard", "in_reply_to_status_id": 148795628946866180, "in_reply_to_status_id_str": "148795628946866177"}, +{"created_at": "Mon, 19 Dec 2011 18:23:30 +0000", "from_user": "Chynaa_McLovenn", "from_user_id": 304798413, "from_user_id_str": "304798413", "from_user_name": "_LizzieSAIDFackkyou", "geo": null, "id": 148830834089144320, "id_str": "148830834089144321", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700332227/t5VsjN7Y_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700332227/t5VsjN7Y_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "_ S/o to them birds who find disrespect and ignorrant actions to be acceptable ... let's see how far you get?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:29 +0000", "from_user": "YmTrill_YungN", "from_user_id": 253372296, "from_user_id_str": "253372296", "from_user_name": "Slick Mula", "geo": null, "id": 148830830888878080, "id_str": "148830830888878080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700569259/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700569259/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Everything that I got I got from slagin birds !!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:27 +0000", "from_user": "NIQUE13BCHILLIN", "from_user_id": 33927923, "from_user_id_str": "33927923", "from_user_name": "Nique ..", "geo": null, "id": 148830821279744000, "id_str": "148830821279744001", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1592041356/IMAG0236-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592041356/IMAG0236-1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Lights blamed as thousands of migrating birds crash in Utah - http://t.co/WEPOTHZ1 - http://t.co/tMo5RSfu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:25 +0000", "from_user": "tudspac", "from_user_id": 234145231, "from_user_id_str": "234145231", "from_user_name": "tudor sopterian", "geo": null, "id": 148830812593324030, "id_str": "148830812593324032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1653504956/LOL_20_231_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653504956/LOL_20_231_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @Mobbie_OMG: Don't let the money deceive you... a rat is still a rat, and birds of a feather flock together. #RealTalk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:24 +0000", "from_user": "myrxins", "from_user_id": 384558579, "from_user_id_str": "384558579", "from_user_name": "No, it's mai-ra.", "geo": null, "id": 148830806633234430, "id_str": "148830806633234432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698119787/re3rf_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698119787/re3rf_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Satubudakk nope, not at all. but who cares. birds still flying what.", "to_user": "Satubudakk", "to_user_id": 256995490, "to_user_id_str": "256995490", "to_user_name": "Akid", "in_reply_to_status_id": 148830534062182400, "in_reply_to_status_id_str": "148830534062182400"}, +{"created_at": "Mon, 19 Dec 2011 18:23:22 +0000", "from_user": "katieratkiewicz", "from_user_id": 157009642, "from_user_id_str": "157009642", "from_user_name": "Katie Ratkiewicz", "geo": null, "id": 148830799251251200, "id_str": "148830799251251200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1002022539/linkedin_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1002022539/linkedin_pic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@mcrat - birds w/ friends? RT@businessinsider How Will Angry Birds Continue To Grow? http://t.co/or2zvngD", "to_user": "McRat", "to_user_id": 43016654, "to_user_id_str": "43016654", "to_user_name": "Robert Rattray"}, +{"created_at": "Mon, 19 Dec 2011 18:23:21 +0000", "from_user": "DaPussySlayerr", "from_user_id": 300550537, "from_user_id_str": "300550537", "from_user_name": "Justyna Bondaruk", "geo": null, "id": 148830794532667400, "id_str": "148830794532667392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700588637/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700588637/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I hate when these mother fuckin birds shit on my car #angrytweet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:20 +0000", "from_user": "tickled_pink08", "from_user_id": 263988665, "from_user_id_str": "263988665", "from_user_name": "Ayesha", "geo": null, "id": 148830789986029570, "id_str": "148830789986029568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1669170403/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669170403/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "This overtime stuff is for the birds\\uD83D\\uDC24", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:19 +0000", "from_user": "Lareesia_Kia", "from_user_id": 228545748, "from_user_id_str": "228545748", "from_user_name": " Kia Solomon", "geo": null, "id": 148830785615560700, "id_str": "148830785615560704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1647099502/5rlO530k_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647099502/5rlO530k_normal", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Angry birds.!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:16 +0000", "from_user": "truebluetrojan", "from_user_id": 78798475, "from_user_id_str": "78798475", "from_user_name": "S. Garcia", "geo": null, "id": 148830776228716540, "id_str": "148830776228716544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/446268253/Coliseum_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/446268253/Coliseum_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@ScottEnyeart 6 day schedule is for the birds... *shakes fist*", "to_user": "ScottEnyeart", "to_user_id": 18093476, "to_user_id_str": "18093476", "to_user_name": "Scott Enyeart", "in_reply_to_status_id": 148829488027942900, "in_reply_to_status_id_str": "148829488027942913"}, +{"created_at": "Mon, 19 Dec 2011 18:23:10 +0000", "from_user": "apistilli", "from_user_id": 14827230, "from_user_id_str": "14827230", "from_user_name": "Alessandro Pistilli", "geo": null, "id": 148830750882541570, "id_str": "148830750882541568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/774884798/apistilli_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/774884798/apistilli_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "When Santa meets Angry Birds :-) http://t.co/wvRNSxYu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:05 +0000", "from_user": "isaacabs", "from_user_id": 64077910, "from_user_id_str": "64077910", "from_user_name": "Isaac Oliveira", "geo": null, "id": 148830729495777280, "id_str": "148830729495777280", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1495634745/162898_155378274509324_100001114562461_246095_3874028_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1495634745/162898_155378274509324_100001114562461_246095_3874028_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "campe\\u00E3o nacional na categoria angry birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:05 +0000", "from_user": "Boltengzg", "from_user_id": 395398760, "from_user_id_str": "395398760", "from_user_name": "Melina Bolten", "geo": null, "id": 148830729470607360, "id_str": "148830729470607360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1599619822/MFC-0938_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599619822/MFC-0938_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "North American Birds: The worlds most definitive bird guide is now available on CD-ROM! You will fully explore t... http://t.co/6C1sJqQm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:04 +0000", "from_user": "s_saxon26", "from_user_id": 425604035, "from_user_id_str": "425604035", "from_user_name": "Shanard Saxon", "geo": null, "id": 148830726094204930, "id_str": "148830726094204929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669032231/IMG_20111130_143634_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669032231/IMG_20111130_143634_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "They call them things birds but idk y cuz u can take em out the cage and they still won't fly", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:04 +0000", "from_user": "Brownloather", "from_user_id": 27414505, "from_user_id_str": "27414505", "from_user_name": "Roger Ledger", "geo": null, "id": 148830725846741000, "id_str": "148830725846740992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1176694913/3fa3b3be-1992-42bc-92ee-c53f9b73ce67_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1176694913/3fa3b3be-1992-42bc-92ee-c53f9b73ce67_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @Shyman33: #OccupyLSX #Occupy They even mentioned Mary Poppins feeding the birds on St Pauls steps.But she only stayed until the wind changed. #BBCnews", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:04 +0000", "from_user": "TEFMO", "from_user_id": 437951396, "from_user_id_str": "437951396", "from_user_name": "Thomas Moore ", "geo": null, "id": 148830725804785660, "id_str": "148830725804785665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": null, "source": "<a href="http://angrybirdstweets.com" rel="nofollow">Angry Birds Tweets</a>", "text": "just unlocked the angry birds seasons twitter levels, http://t.co/3tzabS8U", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:04 +0000", "from_user": "KayleeFoxUP", "from_user_id": 298719086, "from_user_id_str": "298719086", "from_user_name": "Kaylee Fox", "geo": null, "id": 148830724622008320, "id_str": "148830724622008320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682433529/314730_10150396392262349_693352348_10533285_517477491_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682433529/314730_10150396392262349_693352348_10533285_517477491_n_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Photo: #kaz #wiccan #unrelentingpositivity #nature #birds (Taken with instagram) http://t.co/xcATL19o", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:02 +0000", "from_user": "SelfMade0_o", "from_user_id": 351958349, "from_user_id_str": "351958349", "from_user_name": "Tashanna Harris", "geo": null, "id": 148830715528757250, "id_str": "148830715528757248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1541748775/addias_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541748775/addias_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @JaszzRozay: Birds Donn Fly Without My Permission .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:02 +0000", "from_user": "KayleeFoxUP", "from_user_id": 298719086, "from_user_id_str": "298719086", "from_user_name": "Kaylee Fox", "geo": null, "id": 148830715092549630, "id_str": "148830715092549632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682433529/314730_10150396392262349_693352348_10533285_517477491_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682433529/314730_10150396392262349_693352348_10533285_517477491_n_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "#kaz #wiccan #unrelentingpositivity #nature #birds http://t.co/SSZ13jtz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:59 +0000", "from_user": "Airblazer", "from_user_id": 299689423, "from_user_id_str": "299689423", "from_user_name": "Airblazer", "geo": null, "id": 148830703449157630, "id_str": "148830703449157632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1406707148/AirB_v1_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1406707148/AirB_v1_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Video: The Interactive Angry Birds Christmas Lights Display: Eat your heart out, Clark Griswold. \\nThis fully int... http://t.co/gGpS90o0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:57 +0000", "from_user": "SPiTelecomsNews", "from_user_id": 330847694, "from_user_id_str": "330847694", "from_user_name": "SPiTelecomsNews", "geo": null, "id": 148830693240217600, "id_str": "148830693240217602", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1430345230/spi_logo_02_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1430345230/spi_logo_02_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IM+ Adds Own In-App Messenger \"Beep\", Angry Birds Theme: BOSTON and STUTTGART, Germany, Dec. 19, 2011 /PRNewswir... http://t.co/Zkyt67PV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:22:57 +0000", "from_user": "SPiTelecomsNews", "from_user_id": 330847694, "from_user_id_str": "330847694", "from_user_name": "SPiTelecomsNews", "geo": null, "id": 148830693240217600, "id_str": "148830693240217602", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1430345230/spi_logo_02_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1430345230/spi_logo_02_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IM+ Adds Own In-App Messenger \"Beep\", Angry Birds Theme: BOSTON and STUTTGART, Germany, Dec. 19, 2011 /PRNewswir... http://t.co/Zkyt67PV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:56 +0000", "from_user": "lexxdemedeiros", "from_user_id": 352480659, "from_user_id_str": "352480659", "from_user_name": "\\u0251lexis demedeiros", "geo": null, "id": 148830692187439100, "id_str": "148830692187439104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1684523033/FacebookHomescreenImage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684523033/FacebookHomescreenImage_normal.jpg", "source": "<a href="http://twuffer.com" rel="nofollow">Twuffer</a>", "text": "RT @SincerelyTumblr: I like birds, they can fly away when things get too crazy.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:56 +0000", "from_user": "alhasanadnan90", "from_user_id": 373526079, "from_user_id_str": "373526079", "from_user_name": "hasan", "geo": null, "id": 148830691377938430, "id_str": "148830691377938432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698265165/twitter_icon_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698265165/twitter_icon_1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@AngryBirds these birds best birds in the world ever", "to_user": "AngryBirds", "to_user_id": 17337554, "to_user_id_str": "17337554", "to_user_name": "Angry Birds"}, +{"created_at": "Mon, 19 Dec 2011 18:22:55 +0000", "from_user": "C__P__3", "from_user_id": 371625518, "from_user_id_str": "371625518", "from_user_name": "\\u00A9o\\u00AEy \\u2117o\\u2117e\\u00AE\\u2122", "geo": null, "id": 148830687833751550, "id_str": "148830687833751552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1688640519/alwaysgaming_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688640519/alwaysgaming_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@_MR_23 haha true shit. the weekend we get back will be wild card round of playoffs. Birds to the bowl! Ha", "to_user": "_MR_23", "to_user_id": 188122685, "to_user_id_str": "188122685", "to_user_name": "\\uE21D\\uE21ELekan Ajibade \\uE42B\\uE41D\\uE104", "in_reply_to_status_id": 148829968896491520, "in_reply_to_status_id_str": "148829968896491521"}, +{"created_at": "Mon, 19 Dec 2011 18:22:55 +0000", "from_user": "sant_sanu", "from_user_id": 332903734, "from_user_id_str": "332903734", "from_user_name": "Sohra", "geo": null, "id": 148830687204605950, "id_str": "148830687204605952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695088577/IMG_4332_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695088577/IMG_4332_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @csikyj: Birds eye blow job http://t.co/sqM8HXVN via @twitpic", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:54 +0000", "from_user": "Jannausld", "from_user_id": 426261581, "from_user_id_str": "426261581", "from_user_name": "Janna Cadorette", "geo": null, "id": 148830681504550900, "id_str": "148830681504550913", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668795630/LLCM-2162_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668795630/LLCM-2162_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@PaulOgata Dude, try Pigeon Palooza (the next angry birds)- it's avail in Android Mktplce - should be in App Store soon.", "to_user": "PaulOgata", "to_user_id": 19064485, "to_user_id_str": "19064485", "to_user_name": "Paul Ogata", "in_reply_to_status_id": 148826184715747330, "in_reply_to_status_id_str": "148826184715747328"}, +{"created_at": "Mon, 19 Dec 2011 18:22:53 +0000", "from_user": "roundderby", "from_user_id": 425791871, "from_user_id_str": "425791871", "from_user_name": "@round", "geo": null, "id": 148830677800988670, "id_str": "148830677800988672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1667756115/Picture_348_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667756115/Picture_348_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@KieranHarrod Birds destroys all it's rivals in every category! ...Pasties, bread, meat, cakes... You name it!!", "to_user": "KieranHarrod", "to_user_id": 312015303, "to_user_id_str": "312015303", "to_user_name": "Kieran Harrod", "in_reply_to_status_id": 148785113919008770, "in_reply_to_status_id_str": "148785113919008768"}, +{"created_at": "Mon, 19 Dec 2011 18:22:53 +0000", "from_user": "BrittSoOfficial", "from_user_id": 306931188, "from_user_id_str": "306931188", "from_user_name": "YOLO \\u2665", "geo": null, "id": 148830677171843070, "id_str": "148830677171843072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1601787093/Picture0005_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601787093/Picture0005_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "@_DaddyJay haha , that birds stupid ! >.<", "to_user": "_DaddyJay", "to_user_id": 233416443, "to_user_id_str": "233416443", "to_user_name": "Verified Account \\u2611"}, +{"created_at": "Mon, 19 Dec 2011 18:22:52 +0000", "from_user": "BeautyFr0mPain", "from_user_id": 296915854, "from_user_id_str": "296915854", "from_user_name": "Chlobear", "geo": null, "id": 148830672914612220, "id_str": "148830672914612224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698921582/111217-210520_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698921582/111217-210520_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "We have to be 'birds' and flap our arms like wings. He looks like a prick. I look like a prick. It's all good.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:48 +0000", "from_user": "SirKendallEvans", "from_user_id": 37172262, "from_user_id_str": "37172262", "from_user_name": "THE Swaverer.", "geo": null, "id": 148830659048255500, "id_str": "148830659048255488", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689713130/IMAG0047_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689713130/IMAG0047_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "birds!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:42 +0000", "from_user": "yoboseiyo", "from_user_id": 17174446, "from_user_id_str": "17174446", "from_user_name": "Miss B, apparantly.", "geo": null, "id": 148830630417932300, "id_str": "148830630417932288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1560296589/sunshine__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1560296589/sunshine__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@RightAsRain panic is for the birds.", "to_user": "RightAsRain", "to_user_id": 14099445, "to_user_id_str": "14099445", "to_user_name": "RightAsRainCreations", "in_reply_to_status_id": 148818331812638720, "in_reply_to_status_id_str": "148818331812638720"}, +{"created_at": "Mon, 19 Dec 2011 18:22:41 +0000", "from_user": "dorthaggeorges", "from_user_id": 305932002, "from_user_id_str": "305932002", "from_user_name": "dortha georges", "geo": null, "id": 148830627976851460, "id_str": "148830627976851457", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1682943346/Comforter_Ideas_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682943346/Comforter_Ideas_normal.jpg", "source": "<a href="http://comforterideas.com" rel="nofollow">Comforter Ideas</a>", "text": "q: Birds Butterflies and Flo http://t.co/4YDwrb6V", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:39 +0000", "from_user": "B_CANSIN", "from_user_id": 76279338, "from_user_id_str": "76279338", "from_user_name": "Cansin Ozer", "geo": null, "id": 148830619210743800, "id_str": "148830619210743808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1388832146/cp1_finalistHM_1280_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1388832146/cp1_finalistHM_1280_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I favorited a @YouTube video http://t.co/KTgLtw39 REAL LIFE PISSED-OFF ANGRY BIRDS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:37 +0000", "from_user": "TreyOnlyWife", "from_user_id": 371548701, "from_user_id_str": "371548701", "from_user_name": "Lucy", "geo": null, "id": 148830610968940540, "id_str": "148830610968940545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688054579/photo_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688054579/photo_normal", "source": "<a href="http://www.lg.com" rel="nofollow">LG Phone</a>", "text": "All Dat BullShit Was For The Birds, She Was Pigeon Toedd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:33 +0000", "from_user": "drewhizzy", "from_user_id": 245915284, "from_user_id_str": "245915284", "from_user_name": "Dre ", "geo": null, "id": 148830595299029000, "id_str": "148830595299028992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701698806/IMG-20111123-00351_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701698806/IMG-20111123-00351_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@dakoksnr attention, how many birds did u kill today?", "to_user": "dakoksnr", "to_user_id": 237169341, "to_user_id_str": "237169341", "to_user_name": "OluwaDakok Snr", "in_reply_to_status_id": 148829962286272500, "in_reply_to_status_id_str": "148829962286272513"}, +{"created_at": "Mon, 19 Dec 2011 18:22:32 +0000", "from_user": "EXNavyGirl", "from_user_id": 134047327, "from_user_id_str": "134047327", "from_user_name": "Sam Mia Fields", "geo": null, "id": 148830591733858300, "id_str": "148830591733858304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702196333/Sam_Mia_Arty_AV_5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702196333/Sam_Mia_Arty_AV_5_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@parttimesoldier Footie? Oh dear lol I am sure there is something better to do lol even if it's angry birds lol.", "to_user": "parttimesoldier", "to_user_id": 90375376, "to_user_id_str": "90375376", "to_user_name": "Will", "in_reply_to_status_id": 148830007186300930, "in_reply_to_status_id_str": "148830007186300929"}, +{"created_at": "Mon, 19 Dec 2011 18:22:32 +0000", "from_user": "Husti", "from_user_id": 35885519, "from_user_id_str": "35885519", "from_user_name": "Herzjunge ", "geo": null, "id": 148830590282629120, "id_str": "148830590282629120", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1669628650/weihnachten_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669628650/weihnachten_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "Meine Freundin gestern total theatralisch zu mir: \"Ich muss dich was fragen.\" Nach 5 Minuten rumgestammel sollte ich bei Angry Birds helfen.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:30 +0000", "from_user": "bobbinsleak", "from_user_id": 176048275, "from_user_id_str": "176048275", "from_user_name": "Bob Leak", "geo": null, "id": 148830582988746750, "id_str": "148830582988746752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1568382717/6fb94cde-8f66-472a-bd95-db2911db0f46_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1568382717/6fb94cde-8f66-472a-bd95-db2911db0f46_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @kaityxx: @bobbinsleak it'll be the gay pride cake to our gay pride birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:29 +0000", "from_user": "thestephyp", "from_user_id": 45079643, "from_user_id_str": "45079643", "from_user_name": "Stephanie", "geo": null, "id": 148830577439674370, "id_str": "148830577439674368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1623153164/317769_2259924629850_1600440067_32341880_128586384_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1623153164/317769_2259924629850_1600440067_32341880_128586384_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @someecards: Angry Birds now available on iPhone, Droid, and completely insane man's Christmas lights display. http://t.co/mrfMU8Hl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:28 +0000", "from_user": "Jmesworld", "from_user_id": 282141489, "from_user_id_str": "282141489", "from_user_name": "KUSHTIAN_SLATER", "geo": null, "id": 148830574155538430, "id_str": "148830574155538432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699637765/DSC_0315-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699637765/DSC_0315-1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Kaligigi: @Jmesworld I feel Pigeon Palooza is more fun than Angry Birds. Its a fun, new app in Google Mktplce. ITunes next week.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:27 +0000", "from_user": "analitica", "from_user_id": 40461089, "from_user_id_str": "40461089", "from_user_name": "Analitica.com", "geo": null, "id": 148830569294331900, "id_str": "148830569294331904", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/663371990/M_NIMO_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/663371990/M_NIMO_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Los \"angry birds\" podr\\u00EDan sobrevolar el parqu\\u00E9 asi\\u00E1tico http://t.co/TBBB9VwK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:25 +0000", "from_user": "elimparcialcom", "from_user_id": 37796310, "from_user_id_str": "37796310", "from_user_name": "EL IMPARCIAL", "geo": null, "id": 148830560926707700, "id_str": "148830560926707712", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/199434428/ph_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/199434428/ph_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Angry Birds quiere volar en Hong Kong http://t.co/pGoH63qV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:24 +0000", "from_user": "QtpieTay10", "from_user_id": 236693568, "from_user_id_str": "236693568", "from_user_name": "Octavia A.", "geo": null, "id": 148830557617389570, "id_str": "148830557617389568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1647940635/QtpieTay10_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647940635/QtpieTay10_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "That shit for the birds!! RT @beautynef: i dont feed n2 bs anymore!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:23 +0000", "from_user": "Shyman33", "from_user_id": 134543073, "from_user_id_str": "134543073", "from_user_name": "Jakey", "geo": null, "id": 148830552152215550, "id_str": "148830552152215553", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1665649329/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665649329/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#OccupyLSX #Occupy They even mentioned Mary Poppins feeding the birds on St Pauls steps.But she only stayed until the wind changed. #BBCnews", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:21 +0000", "from_user": "PACMAN_BAPPIN", "from_user_id": 178171514, "from_user_id_str": "178171514", "from_user_name": "Ryan", "geo": null, "id": 148830542413037570, "id_str": "148830542413037568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1630830644/IMG00425-20111109-1426_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630830644/IMG00425-20111109-1426_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MJay_Tea lol u jumping off shit trying save Christmas trees and birds coming out of them", "to_user": "MJay_Tea", "to_user_id": 60058464, "to_user_id_str": "60058464", "to_user_name": "\\u2665 EST. Jan. 5th \\u2665", "in_reply_to_status_id": 148830141278195700, "in_reply_to_status_id_str": "148830141278195713"}, +{"created_at": "Mon, 19 Dec 2011 18:22:20 +0000", "from_user": "Faeriegemini", "from_user_id": 214194342, "from_user_id_str": "214194342", "from_user_name": "Heather Anderson", "geo": null, "id": 148830540072615940, "id_str": "148830540072615936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1465343243/profile_image_1311834264521_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1465343243/profile_image_1311834264521_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "My cat chirps at birds like Predator!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:18 +0000", "from_user": "LoveOnACloud", "from_user_id": 231958616, "from_user_id_str": "231958616", "from_user_name": "Kirry :)", "geo": null, "id": 148830533399494660, "id_str": "148830533399494657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700969045/Meeee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700969045/Meeee_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @HolUpBro_O: #NP Birds part 1 - The Weeknd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:14 +0000", "from_user": "TechTSP", "from_user_id": 141156310, "from_user_id_str": "141156310", "from_user_name": "Tanmay Patange", "geo": null, "id": 148830514609004540, "id_str": "148830514609004545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698936536/chrome_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698936536/chrome_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#GoogleChrome #Tech Play Latest Updated Angry Birds On Google Chrome http://t.co/VZy7hqPZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:13 +0000", "from_user": "Chungodp", "from_user_id": 426261931, "from_user_id_str": "426261931", "from_user_name": "Chung Knee", "geo": null, "id": 148830509869445120, "id_str": "148830509869445120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668796811/LLCM-5119_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668796811/LLCM-5119_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Amie_Thompson Go try out Pigeon Palooza (the next angry birds)- it is in Android Mktplce - will be in App Store next week.", "to_user": "Amie_Thompson", "to_user_id": 164243419, "to_user_id_str": "164243419", "to_user_name": "Ann-marie Thompson", "in_reply_to_status_id": 148821507383115780, "in_reply_to_status_id_str": "148821507383115776"}, +{"created_at": "Mon, 19 Dec 2011 18:22:13 +0000", "from_user": "Mrcuntdeville", "from_user_id": 107370545, "from_user_id_str": "107370545", "from_user_name": "Mrcuntdeville", "geo": null, "id": 148830508745359360, "id_str": "148830508745359360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700630587/Mrcuntdeville_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700630587/Mrcuntdeville_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@chrisanna4real why? It's just my phone.. Thought you'd like to link up & play Angry Birds.", "to_user": "chrisanna4real", "to_user_id": 274724514, "to_user_id_str": "274724514", "to_user_name": "ChrisAnna4real", "in_reply_to_status_id": 148829845017722880, "in_reply_to_status_id_str": "148829845017722880"}, +{"created_at": "Mon, 19 Dec 2011 18:22:09 +0000", "from_user": "TwtrZen", "from_user_id": 42189574, "from_user_id_str": "42189574", "from_user_name": "Twtr Zen", "geo": null, "id": 148830495772385280, "id_str": "148830495772385280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/228011975/zen1_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/228011975/zen1_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Video: The Interactive Angry Birds Christmas Lights Display: Eat your heart out, Clark Griswold. \\nThis... http://t.co/PCrBHUlz RT Please", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:09 +0000", "from_user": "kaityxx", "from_user_id": 50994893, "from_user_id_str": "50994893", "from_user_name": "kaity", "geo": null, "id": 148830494572810240, "id_str": "148830494572810240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1610847363/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610847363/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@bobbinsleak it'll be the gay pride cake to our gay pride birds.", "to_user": "bobbinsleak", "to_user_id": 176048275, "to_user_id_str": "176048275", "to_user_name": "Bob Leak", "in_reply_to_status_id": 148830255791079420, "in_reply_to_status_id_str": "148830255791079425"}, +{"created_at": "Mon, 19 Dec 2011 18:22:06 +0000", "from_user": "there_are", "from_user_id": 82029177, "from_user_id_str": "82029177", "from_user_name": "There Are", "geo": null, "id": 148830480807116800, "id_str": "148830480807116800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/468006524/anarchy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/468006524/anarchy_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @morgaangraay: THERE ARE literally like thousands of birds in my front yard right now... #thereare http://t.co/19FzqHfU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:06 +0000", "from_user": "JaszzRozay", "from_user_id": 375758322, "from_user_id_str": "375758322", "from_user_name": "JaszR.", "geo": null, "id": 148830479406219260, "id_str": "148830479406219264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1666705642/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666705642/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Birds Donn Fly Without My Permission .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:04 +0000", "from_user": "Ben_Morgan_", "from_user_id": 44175137, "from_user_id_str": "44175137", "from_user_name": "Ben Morgan", "geo": null, "id": 148830472867282940, "id_str": "148830472867282944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1673031096/meee_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673031096/meee_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "DID YOU KNOW that if you combine two of the greatest things ever; Birds and Christmas, you get Hermione Manger.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:02 +0000", "from_user": "iAmbition_", "from_user_id": 87087382, "from_user_id_str": "87087382", "from_user_name": "melly mels", "geo": null, "id": 148830463748870140, "id_str": "148830463748870144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670339975/9pL153RV_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670339975/9pL153RV_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@WhoaThere_Ty lol yea ima b the girl at birds prom with the most swag hahaha n my date wearing his wit a white suit ;)", "to_user": "WhoaThere_Ty", "to_user_id": 326288694, "to_user_id_str": "326288694", "to_user_name": "Tahjeer Who ?", "in_reply_to_status_id": 148830150941884400, "in_reply_to_status_id_str": "148830150941884418"}, +{"created_at": "Mon, 19 Dec 2011 18:22:01 +0000", "from_user": "DEPTR", "from_user_id": 91753607, "from_user_id_str": "91753607", "from_user_name": "DEPTRxJETS:.", "geo": null, "id": 148830461861437440, "id_str": "148830461861437440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681079084/QLLycw38_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681079084/QLLycw38_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "My little brother is hooked on Angry Birds lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:01 +0000", "from_user": "Brittany_AMM", "from_user_id": 239552826, "from_user_id_str": "239552826", "from_user_name": "Brittany McNamara", "geo": null, "id": 148830460749942800, "id_str": "148830460749942785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1627437643/Picnick1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627437643/Picnick1_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Ohhh fuck, I'm turning into Shaun.. Playing angry birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:01 +0000", "from_user": "Aisne2011", "from_user_id": 15588400, "from_user_id_str": "15588400", "from_user_name": "Aisne", "geo": null, "id": 148830459726544900, "id_str": "148830459726544896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1383245768/blankpage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1383245768/blankpage_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Slimbridge's Spoonbilled sandpipers on the news. Gorgeous little birds; hope it's not too late for the species #wildlife", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:57 +0000", "from_user": "xoemilydeveau", "from_user_id": 295247866, "from_user_id_str": "295247866", "from_user_name": "Emily Deveau", "geo": null, "id": 148830443628806140, "id_str": "148830443628806145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1447986780/322173069_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1447986780/322173069_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "I'm so afraid of birds its not even funny", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:53 +0000", "from_user": "SunnyMitchell1", "from_user_id": 291953048, "from_user_id_str": "291953048", "from_user_name": "Sunny Mitchell", "geo": null, "id": 148830427401031680, "id_str": "148830427401031680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701605920/tumblr_lns8h3SKWL1qayqvfo1_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701605920/tumblr_lns8h3SKWL1qayqvfo1_400_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "RT @KernRiverPrsrv: This Red-shouldered Hawk was spotted on the Bakersfield Christmas Bird Count. These birds are riparian obligates... http://t.co/65oNMpMa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:53 +0000", "from_user": "larsvdl", "from_user_id": 292364053, "from_user_id_str": "292364053", "from_user_name": "Lars Van Der Laan", "geo": null, "id": 148830425589092350, "id_str": "148830425589092352", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1425231295/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1425231295/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@RaadDezeTweet: - - - - - ( \\u00F2 )> (^(00)^) ANGRY BIRDS! Retweet als je het ziet! #RDT\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:51 +0000", "from_user": "Photobug52", "from_user_id": 90379242, "from_user_id_str": "90379242", "from_user_name": "Alan S Hochman Photo", "geo": null, "id": 148830418630746100, "id_str": "148830418630746112", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/741189496/P1010013crop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/741189496/P1010013crop_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Blue Heron (Juvenile) at HoleyLand WMA http://t.co/HVv61UhG #bird #birding #birds #heron Visit http://t.co/VdlG7gZ2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:46 +0000", "from_user": "GuySmoothingtin", "from_user_id": 38537133, "from_user_id_str": "38537133", "from_user_name": "Justin Glass", "geo": null, "id": 148830397122355200, "id_str": "148830397122355200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690709571/dsaa_B_w_4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690709571/dsaa_B_w_4_normal.jpg", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "RT @PacinaSantana: Who else listens to 2 chainz slanging birds? Me", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:46 +0000", "from_user": "JosieMonteraJKS", "from_user_id": 428355695, "from_user_id_str": "428355695", "from_user_name": "Josie Montera", "geo": null, "id": 148830395692101630, "id_str": "148830395692101632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674178556/16114177451195463_meghan_laughing_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674178556/16114177451195463_meghan_laughing_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@JuniorMartins03 Ya must try out Pigeon Palooza (the next angry birds)- it's in Android Mktplce - will be in ITunes next week.", "to_user": "JuniorMartins03", "to_user_id": 69449296, "to_user_id_str": "69449296", "to_user_name": "JUNIOR MARTINS", "in_reply_to_status_id": 148818707785854980, "in_reply_to_status_id_str": "148818707785854976"}, +{"created_at": "Mon, 19 Dec 2011 18:21:44 +0000", "from_user": "muiss97", "from_user_id": 412357050, "from_user_id_str": "412357050", "from_user_name": "Marco Muis", "geo": null, "id": 148830390625382400, "id_str": "148830390625382400", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1638795071/__schatje_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638795071/__schatje_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "kut angry birds deuntje", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:44 +0000", "from_user": "Miss_Nicole84", "from_user_id": 72286518, "from_user_id_str": "72286518", "from_user_name": "Nicole G. ", "geo": null, "id": 148830389929115650, "id_str": "148830389929115649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1501007208/325212616_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1501007208/325212616_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "I have to find one of these angry birds shirts in Myah's size! She LOVES that game! And at 2 she can play it better than most adults!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:43 +0000", "from_user": "Madisaaaaan", "from_user_id": 276148434, "from_user_id_str": "276148434", "from_user_name": "Madison Leeper", "geo": null, "id": 148830383474085900, "id_str": "148830383474085890", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1660919151/casie_and_madison_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660919151/casie_and_madison_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Madison is super cool and likes fuzzy socks. (: she also enjoys dressing small birds in holiday sweaters.(:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:41 +0000", "from_user": "xnatashaperry", "from_user_id": 57490396, "from_user_id_str": "57490396", "from_user_name": "Natasha Perry", "geo": null, "id": 148830378143125500, "id_str": "148830378143125506", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698270945/Snapshot_20111203_675_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698270945/Snapshot_20111203_675_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Angry birds in english #notbad", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:37 +0000", "from_user": "erintheinvader", "from_user_id": 132051144, "from_user_id_str": "132051144", "from_user_name": "erin hawkins", "geo": null, "id": 148830361474957300, "id_str": "148830361474957312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1661948813/hurrrrrrrrrrrr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661948813/hurrrrrrrrrrrr_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "1 hour. Apparently that's all it takes for birds to cover my car with poop.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:37 +0000", "from_user": "PapuhBoss", "from_user_id": 28675614, "from_user_id_str": "28675614", "from_user_name": "Da Paper Boi", "geo": null, "id": 148830359063248900, "id_str": "148830359063248896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668613591/fib_pape_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668613591/fib_pape_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Juh got thu tLkn w/ my Daughter abt Life n da birds&Bees...sucha Dirty job as a Father but it HAd tu be Done :\\ ..... #ThankyouGod", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:37 +0000", "from_user": "volcheckt", "from_user_id": 22368996, "from_user_id_str": "22368996", "from_user_name": "TJ Volcheck", "geo": null, "id": 148830357737836540, "id_str": "148830357737836544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1202160547/IMG_0041_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1202160547/IMG_0041_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Angry Birds Seasons on the Mac? I think yes ;) #AngryBirds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:36 +0000", "from_user": "RandomDreamer_", "from_user_id": 385018093, "from_user_id_str": "385018093", "from_user_name": "Naranjito \\u03DF", "geo": null, "id": 148830355137372160, "id_str": "148830355137372160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687311739/FGASDGT_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687311739/FGASDGT_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Angry birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:35 +0000", "from_user": "BabyImDatB0Y", "from_user_id": 246075242, "from_user_id_str": "246075242", "from_user_name": "Beezie F. (iPh.D)", "geo": null, "id": 148830349772853250, "id_str": "148830349772853250", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1583482104/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583482104/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Damn..... Birds are fuckin flockin", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:34 +0000", "from_user": "bcastagna", "from_user_id": 15379758, "from_user_id_str": "15379758", "from_user_name": "Brandon Castagna", "geo": +{"coordinates": [35.3589,-80.9602], "type": "Point"}, "id": 148830347252084740, "id_str": "148830347252084738", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/57581573/brandon_castagna_20040806_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/57581573/brandon_castagna_20040806_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Wrapping presents is for the birds!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:33 +0000", "from_user": "candrison009", "from_user_id": 151406356, "from_user_id_str": "151406356", "from_user_name": "Cristina Andrison", "geo": null, "id": 148830344576110600, "id_str": "148830344576110592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/955843990/Christy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/955843990/Christy_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Tech News: Video: The Interactive Angry Birds Christmas Lights Display: Eat your heart out,... http://t.co/L2LsX159 http://t.co/r969U0Ds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:33 +0000", "from_user": "carolinEichhorn", "from_user_id": 386214754, "from_user_id_str": "386214754", "from_user_name": "Caroline Eichhorn", "geo": null, "id": 148830344261546000, "id_str": "148830344261545984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1654182920/30885_1488380730393_1260197918_1383566_1745772_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654182920/30885_1488380730393_1260197918_1383566_1745772_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @FactsOnGirlz: If couples who are in love are called \"love birds\", then couples who always argue should be called \"angry birds\"?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:33 +0000", "from_user": "Geralyndcf", "from_user_id": 426262070, "from_user_id_str": "426262070", "from_user_name": "Geralyn Aron", "geo": null, "id": 148830341619126270, "id_str": "148830341619126272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668797133/LLCM-1691_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668797133/LLCM-1691_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@HannahCyrusBR Hey, try out Pigeon Palooza (the next angry birds)- it's avail in Android Mktplce - should be in ITunes in a few days.", "to_user": "HannahCyrusBR", "to_user_id": 90031902, "to_user_id_str": "90031902", "to_user_name": "Smurfette da Colina", "in_reply_to_status_id": 148814988776177660, "in_reply_to_status_id_str": "148814988776177664"}, +{"created_at": "Mon, 19 Dec 2011 18:21:31 +0000", "from_user": "dylanoneill", "from_user_id": 269817400, "from_user_id_str": "269817400", "from_user_name": "Dylan O'Neill", "geo": null, "id": 148830334572707840, "id_str": "148830334572707840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1298102520/71656_481103660756_703605756_6859719_3286293_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1298102520/71656_481103660756_703605756_6859719_3286293_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "RT @simonjamesgreen: Directed by me! Come see it! \\u201C@digitalspyent: 'Birds of A Feather' reunion tour dates announced http://t.co/8tQY1n7s\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:28 +0000", "from_user": "kaah_harumi", "from_user_id": 334986880, "from_user_id_str": "334986880", "from_user_name": "tchutchukarina *-*", "geo": null, "id": 148830323495542800, "id_str": "148830323495542784", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697064280/IMG_0841_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697064280/IMG_0841_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "vou jogar Angry Birds HAUSHAUSHUASHUA ta m\\u00F3 t\\u00E9\\u00E9\\u00E9dio akii ))=", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:27 +0000", "from_user": "StePhyx0x", "from_user_id": 345526610, "from_user_id_str": "345526610", "from_user_name": "Stephanie Muir", "geo": null, "id": 148830316306513920, "id_str": "148830316306513921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701292970/382575_10151062874270263_642105262_22158894_1248385341_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701292970/382575_10151062874270263_642105262_22158894_1248385341_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@Mobbie_OMG Don't let the money deceive you...a rat is still a rat, and birds of a feather flock together.#RealTalk#mobwives @reneegraziano", "to_user": "Mobbie_OMG", "to_user_id": 101842491, "to_user_id_str": "101842491", "to_user_name": "Mobbie Moe"}, +{"created_at": "Mon, 19 Dec 2011 18:21:26 +0000", "from_user": "junksz", "from_user_id": 55425708, "from_user_id_str": "55425708", "from_user_name": "Meow. ", "geo": null, "id": 148830312179310600, "id_str": "148830312179310592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699327145/iU0405Y8_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699327145/iU0405Y8_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "all thats bullshxt for the birds, you aint nothing but a volcher.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:21 +0000", "from_user": "Mack11Maalik", "from_user_id": 206717542, "from_user_id_str": "206717542", "from_user_name": "Huey P", "geo": null, "id": 148830293032321020, "id_str": "148830293032321024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699083260/Mack11Maalik_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699083260/Mack11Maalik_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Huh?! RT @MissFawaz: I dont flock wit birds that cant fly", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:10 +0000", "from_user": "amersons", "from_user_id": 20184226, "from_user_id_str": "20184226", "from_user_name": "Amy Nantkes", "geo": null, "id": 148830246811086850, "id_str": "148830246811086848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1245531483/41620_1337259822_6726_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1245531483/41620_1337259822_6726_q_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "How did my toddler develop such a deep love for animals? Esp considering how I don't dig them. Fish/birds/cats/dogs are his jam.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:10 +0000", "from_user": "TaylerrIsKING", "from_user_id": 200778493, "from_user_id_str": "200778493", "from_user_name": "taylerr. & you?", "geo": null, "id": 148830244634234880, "id_str": "148830244634234880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1589879234/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1589879234/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "i've never played angry birds. seems boring.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:09 +0000", "from_user": "tarahdactil", "from_user_id": 171207510, "from_user_id_str": "171207510", "from_user_name": "Tarah Radke", "geo": null, "id": 148830242625167360, "id_str": "148830242625167360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1303680358/brew_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1303680358/brew_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@AjaBriley yep, still gay... RT: \"Enjoying the birds chirping and the sun shinning through the window.\"", "to_user": "AjaBriley", "to_user_id": 332406783, "to_user_id_str": "332406783", "to_user_name": "Aja Briley", "in_reply_to_status_id": 148805911073390600, "in_reply_to_status_id_str": "148805911073390593"}, +{"created_at": "Mon, 19 Dec 2011 18:21:09 +0000", "from_user": "chermst", "from_user_id": 48517417, "from_user_id_str": "48517417", "from_user_name": "Cheryl Chartier", "geo": null, "id": 148830241903755260, "id_str": "148830241903755264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/871522722/17049_222119454518_520424518_2976879_2561227_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/871522722/17049_222119454518_520424518_2976879_2561227_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @BlackFridaysav: Check out this Amazon deal: 'Angry Birds 16\" Plush Black Bird With Sound' by Commonwealth Toy http://t.co/TkStqUZw via @amazon", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:06 +0000", "from_user": "AldewereldJ", "from_user_id": 351481137, "from_user_id_str": "351481137", "from_user_name": "Justin", "geo": null, "id": 148830229966753800, "id_str": "148830229966753792", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1486048346/IMG00021-20110809-1152_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1486048346/IMG00021-20110809-1152_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Nu ff angry birds spelen op papa's samsung galaxy s 2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:03 +0000", "from_user": "CockY_but_CuTe", "from_user_id": 234936452, "from_user_id_str": "234936452", "from_user_name": "Rai Antedra", "geo": null, "id": 148830215873896450, "id_str": "148830215873896448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695760238/CockY_but_CuTe_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695760238/CockY_but_CuTe_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Good Afternoon Tweet Birds ..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:01 +0000", "from_user": "iAdoreThyself", "from_user_id": 236073725, "from_user_id_str": "236073725", "from_user_name": "Azzy-A", "geo": null, "id": 148830209922179070, "id_str": "148830209922179072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701041724/IMG_183467_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701041724/IMG_183467_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Lol at the birds squaking outside", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:59 +0000", "from_user": "SharqBaitHuHaHa", "from_user_id": 203373083, "from_user_id_str": "203373083", "from_user_name": "chelle ", "geo": null, "id": 148830198635298800, "id_str": "148830198635298816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682415172/pic1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682415172/pic1_normal.jpg", "source": "<a href="http://www.twitter.com" rel="nofollow">Twitter for Windows Phone</a>", "text": "This whole not feeling good thing is for the birds -_-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:58 +0000", "from_user": "ZomBrian86", "from_user_id": 58571626, "from_user_id_str": "58571626", "from_user_name": "Brian", "geo": null, "id": 148830195888046080, "id_str": "148830195888046081", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/323256929/briansaurus_rex_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/323256929/briansaurus_rex_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @StephenBloomIA: Front page of today's @presscitizen blares \"The Birds!!\" Goes against all I teach my journalism students: fueling Hitchcockian fear of birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:57 +0000", "from_user": "_Katt_Williams_", "from_user_id": 344352191, "from_user_id_str": "344352191", "from_user_name": "KattWilliams", "geo": null, "id": 148830192696172540, "id_str": "148830192696172544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1466566947/7790_katt_20williams_0_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1466566947/7790_katt_20williams_0_normal.gif", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "I wonder what would happen if angry birds was real life...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:55 +0000", "from_user": "MandresRod", "from_user_id": 171646517, "from_user_id_str": "171646517", "from_user_name": "Marlon Andr\\u00E9s Rod.", "geo": null, "id": 148830183892320260, "id_str": "148830183892320256", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1578650299/1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1578650299/1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Parodia de \"Angry Birds\" en \"Los Simpsons\": http://t.co/jtrnkpbM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:55 +0000", "from_user": "Alejandro17r", "from_user_id": 60126050, "from_user_id_str": "60126050", "from_user_name": "Alejandro Rodr\\u00EDguez", "geo": null, "id": 148830182839549950, "id_str": "148830182839549952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690328735/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690328735/image_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube video http://t.co/GAd8AEtE Angry Birds Wreck The Halls animation", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:54 +0000", "from_user": "mayorofauburn", "from_user_id": 199961237, "from_user_id_str": "199961237", "from_user_name": "Marquez Reed", "geo": null, "id": 148830178267770880, "id_str": "148830178267770880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1443485147/76107_1211059152657_1114080215_30800556_7486968_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1443485147/76107_1211059152657_1114080215_30800556_7486968_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Im all for animals rights but im about to kill these fucking birds in my house... they woke me up at the butt crack of noon #tooearly!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:54 +0000", "from_user": "gedankenfrei_", "from_user_id": 250537211, "from_user_id_str": "250537211", "from_user_name": "Annikaa", "geo": null, "id": 148830175642124300, "id_str": "148830175642124288", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1548724861/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1548724861/image_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Photos on iOS</a>", "text": "Angry Birds bei IM+! *-* http://t.co/yiA0gACf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:53 +0000", "from_user": "Petrileh", "from_user_id": 75234234, "from_user_id_str": "75234234", "from_user_name": "Petri Lehmuskoski", "geo": null, "id": 148830173544988670, "id_str": "148830173544988672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698410144/2010_05_16_5746_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698410144/2010_05_16_5746_normal.jpg", "source": "<a href="http://www.businessinsider.com" rel="nofollow">Business Insider</a>", "text": "RT @businessinsider: How Will Angry Birds Continue To Grow? http://t.co/iDwaKeh0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:52 +0000", "from_user": "JTLT_mommy28", "from_user_id": 323994315, "from_user_id_str": "323994315", "from_user_name": "suck me slow \\u261C ", "geo": null, "id": 148830170558640130, "id_str": "148830170558640128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697152007/PicsIn_1324072986789-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697152007/PicsIn_1324072986789-1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "All that shits for the birds and ya other bitches", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:45 +0000", "from_user": "IronHead201", "from_user_id": 23030572, "from_user_id_str": "23030572", "from_user_name": "iRonhe@d Kenny", "geo": null, "id": 148830142255472640, "id_str": "148830142255472641", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698391944/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698391944/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@govannito: RT @IronHead201: birds fly souf for the winter, not far east to europe!!! <~ only pigeons fly south!\\u201D Same shit!!! N*gga Please", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:44 +0000", "from_user": "LauShadowhunter", "from_user_id": 303676090, "from_user_id_str": "303676090", "from_user_name": "_\\u201CMus\\u201D de chocolate ", "geo": null, "id": 148830138337984500, "id_str": "148830138337984512", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696950412/pinkpinkpink_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696950412/pinkpinkpink_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Boats and Birds - Gregory and the Hawk. Si alguien la quiere escuchar, ale. Es preciosa. La letra me encanta.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:43 +0000", "from_user": "MafiaWarsStrtgy", "from_user_id": 78134924, "from_user_id_str": "78134924", "from_user_name": "Mafia Wars Strategy", "geo": null, "id": 148830133569073150, "id_str": "148830133569073153", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/441713569/images_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/441713569/images_normal.jpeg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @chikacikeeh GatauuuuRT @GueMauTanya: Pilih (angry birds/ayo dance/mafia wars/point blank)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:41 +0000", "from_user": "Chug51", "from_user_id": 279732893, "from_user_id_str": "279732893", "from_user_name": "C Rock Hard", "geo": null, "id": 148830123452416000, "id_str": "148830123452416000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702103835/TweetLandPhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702103835/TweetLandPhoto_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @Betty21Trim: Hey Ladies.. Put some Toothpaste on his Penis.. Kill 2 Birds with 1 Stone this morning!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:40 +0000", "from_user": "Kareendmmg", "from_user_id": 426262455, "from_user_id_str": "426262455", "from_user_name": "Kareen Sicari", "geo": null, "id": 148830122248650750, "id_str": "148830122248650753", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668798646/LLCM-2128_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668798646/LLCM-2128_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@giovanaticianel Ya must try out Pigeon Palooza (the next angry birds)- it is in Android Mktplce - will be in App Store next week.", "to_user": "giovanaticianel", "to_user_id": 159647484, "to_user_id_str": "159647484", "to_user_name": "Giovana Ticianel", "in_reply_to_status_id": 148799092867346430, "in_reply_to_status_id_str": "148799092867346432"}, +{"created_at": "Mon, 19 Dec 2011 18:20:38 +0000", "from_user": "Megan_Howell95", "from_user_id": 238438114, "from_user_id_str": "238438114", "from_user_name": "Megan Howell", "geo": null, "id": 148830112140378100, "id_str": "148830112140378112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1621898285/REAL_tiwtta_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621898285/REAL_tiwtta_pic_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@elliegoulding singing Sleepyhead sounds like a flock of birds chirpalirpin and I love it :)", "to_user": "elliegoulding", "to_user_id": 20565284, "to_user_id_str": "20565284", "to_user_name": "Elena Jane Goulding"}, +{"created_at": "Mon, 19 Dec 2011 18:20:36 +0000", "from_user": "KTBennett83", "from_user_id": 27510599, "from_user_id_str": "27510599", "from_user_name": "Katie Bennett", "geo": null, "id": 148830104167006200, "id_str": "148830104167006208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1200899121/49295_706513223_5907151_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1200899121/49295_706513223_5907151_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Phones4u: Angry Birds is taking over the world! Check out this interactive Angry Birds Christmas Lights Display! http://t.co/mM7yMYbI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:35 +0000", "from_user": "CURTWOOD_TV", "from_user_id": 245228090, "from_user_id_str": "245228090", "from_user_name": "Smash Adams", "geo": null, "id": 148830100622819330, "id_str": "148830100622819328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692096469/331467166_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692096469/331467166_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "\"Kick sweet pimpin to deez birds, n now they pecking me!\" #MARSmonday", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:34 +0000", "from_user": "WizKhalifaHiqh", "from_user_id": 40483824, "from_user_id_str": "40483824", "from_user_name": "Srumptiouz '*| ^.* ", "geo": null, "id": 148830094465572860, "id_str": "148830094465572864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698225500/004J054dgcc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698225500/004J054dgcc_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @RandyFloss: You still playing Angry Birds? #OHYOUFANCYHUH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:31 +0000", "from_user": "abreduardo", "from_user_id": 38194576, "from_user_id_str": "38194576", "from_user_name": "Eduardo Baca", "geo": null, "id": 148830081320632320, "id_str": "148830081320632320", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1526108449/foto1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1526108449/foto1_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Para navidad quiero una playera de angry birds!! Ahh y una tablet! Jeje #fb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:30 +0000", "from_user": "Clannibal", "from_user_id": 228130479, "from_user_id_str": "228130479", "from_user_name": "lostlittlemind", "geo": null, "id": 148830079718395900, "id_str": "148830079718395905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1663718790/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663718790/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "That is a lot of birds... ._.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:29 +0000", "from_user": "MissTyga_Breezy", "from_user_id": 110822719, "from_user_id_str": "110822719", "from_user_name": "GENESIS", "geo": null, "id": 148830076279078900, "id_str": "148830076279078912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702543702/1UM9G8XF_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702543702/1UM9G8XF_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MISSBR33ZY_19: 'All That Bullshit's For The Birds, You Aint Nothing But A Vulture' #TeamBreezy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:28 +0000", "from_user": "shakes_37", "from_user_id": 423180076, "from_user_id_str": "423180076", "from_user_name": "James", "geo": null, "id": 148830072059605000, "id_str": "148830072059604992", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1676041711/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676041711/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @langintin: I can start a pet store w deez birds..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:24 +0000", "from_user": "GodzillaGraff", "from_user_id": 33545590, "from_user_id_str": "33545590", "from_user_name": "Captain Zills.", "geo": null, "id": 148830053143289860, "id_str": "148830053143289856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1608435160/ECP_00073_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608435160/ECP_00073_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "This Man Ere Said He \"Shed A Tear When He Saw The Birds Hatch\".....What A Prick In Life.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:23 +0000", "from_user": "SOBER_FREE", "from_user_id": 259044943, "from_user_id_str": "259044943", "from_user_name": "Dasi bonds", "geo": null, "id": 148830047090905100, "id_str": "148830047090905088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692779458/Pec212Iv_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692779458/Pec212Iv_normal", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "No one understands how terrified I am of birds!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:18 +0000", "from_user": "rubencej", "from_user_id": 269837410, "from_user_id_str": "269837410", "from_user_name": "Rub\\u00E9n Ceja", "geo": null, "id": 148830028728250370, "id_str": "148830028728250368", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686523528/07082011486_-_copia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686523528/07082011486_-_copia_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@AlAtZu nooo en serio? Jajajaja eres una vaga pa esos jueguitos ya me di cuenta oye ya tengo todos los de angry birds te los mando vale!", "to_user": "AlAtZu", "to_user_id": 100112605, "to_user_id_str": "100112605", "to_user_name": "karina lira", "in_reply_to_status_id": 148829663790235650, "in_reply_to_status_id_str": "148829663790235649"}, +{"created_at": "Mon, 19 Dec 2011 18:20:17 +0000", "from_user": "joshua_ann", "from_user_id": 134677645, "from_user_id_str": "134677645", "from_user_name": "Josh K", "geo": null, "id": 148830023753809920, "id_str": "148830023753809921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1477286023/Photo_on_2011-03-09_at_20.40_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1477286023/Photo_on_2011-03-09_at_20.40_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "\"What is with all these mean birds?\" - Mom\\n#angrybirds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:11 +0000", "from_user": "mherrerooficial", "from_user_id": 282147923, "from_user_id_str": "282147923", "from_user_name": "Manuel Herrero", "geo": null, "id": 148830000781606900, "id_str": "148830000781606912", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687026555/Dibujo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687026555/Dibujo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "En dos dias, me he pasado el Angry Birds en el movil mientras deberia estar estudiando...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:11 +0000", "from_user": "LeuhhRae", "from_user_id": 23332029, "from_user_id_str": "23332029", "from_user_name": "LeahRaeODell", "geo": null, "id": 148830000727076860, "id_str": "148830000727076864", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1576929873/Snapshot_20111001_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576929873/Snapshot_20111001_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @dangerouslyem: @daniellejonas @kevinjonas Happy Anniversary you love birds! <3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:11 +0000", "from_user": "treysrealangel", "from_user_id": 77072501, "from_user_id_str": "77072501", "from_user_name": "Lexi 11201\\u2665", "geo": null, "id": 148830000257306620, "id_str": "148830000257306624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695352832/2011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695352832/2011_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Igetsoangry are not straight up with me... like be serious!! all that beating around the bush bull s for the birds!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:11 +0000", "from_user": "manthony11", "from_user_id": 89756380, "from_user_id_str": "89756380", "from_user_name": "martin anthony", "geo": null, "id": 148829996989956100, "id_str": "148829996989956097", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679963390/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679963390/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "its only monday and im dumb fired up for this weekend Birds vs bitches game..need a beat down in big d.. #hatethecowboyswithapassion", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:20:04 +0000", "from_user": "sqlpass", "from_user_id": 14639667, "from_user_id_str": "14639667", "from_user_name": "PASS", "geo": null, "id": 148829968602898430, "id_str": "148829968602898432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/234882971/pass_logo50_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/234882971/pass_logo50_normal.JPG", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "Early birds get the great rate at #SQLRally Dallas - register by Jan. 14 & submit sessions by Jan. 22 http://t.co/U11nqCLx #sqlpass", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:03 +0000", "from_user": "Kellehlmh", "from_user_id": 426260155, "from_user_id_str": "426260155", "from_user_name": "Kelle Rayas", "geo": null, "id": 148829967004860400, "id_str": "148829967004860416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668791732/LLCM-1074_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668791732/LLCM-1074_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@cymbreqlw Ya should check out Pigeon Palooza (the next angry birds)- it is launched in Android Mktplce - will be in App Store next week.", "to_user": "cymbreqlw", "to_user_id": 407304294, "to_user_id_str": "407304294", "to_user_name": "Cymbre Cooperman", "in_reply_to_status_id": 148821157100011520, "in_reply_to_status_id_str": "148821157100011521"}, +{"created_at": "Mon, 19 Dec 2011 18:20:03 +0000", "from_user": "RandyFloss", "from_user_id": 28252297, "from_user_id_str": "28252297", "from_user_name": "Mr Twitta", "geo": null, "id": 148829964781895680, "id_str": "148829964781895680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1492320486/new_twitpic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1492320486/new_twitpic_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "You still playing Angry Birds? #OHYOUFANCYHUH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:02 +0000", "from_user": "CozyCot", "from_user_id": 20518641, "from_user_id_str": "20518641", "from_user_name": "CozyCot.com", "geo": null, "id": 148829962844123140, "id_str": "148829962844123137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1430359895/cozycot_twitter_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1430359895/cozycot_twitter_normal.gif", "source": "<a href="http://www.cozycot.com" rel="nofollow">CozyCot WebFeed</a>", "text": "Johansson scared of birds http://t.co/2SMGgsuk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:51 +0000", "from_user": "Roxanefvj", "from_user_id": 426262051, "from_user_id_str": "426262051", "from_user_name": "Roxane Chafetz", "geo": null, "id": 148829916836802560, "id_str": "148829916836802561", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668798016/LLCM-4894_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668798016/LLCM-4894_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@sesharina Hey, go get Pigeon Palooza (the next angry birds)- it's in Android Mktplce - will be in App Store soon.", "to_user": "sesharina", "to_user_id": 46724527, "to_user_id_str": "46724527", "to_user_name": "sesarina puspita", "in_reply_to_status_id": 148824910511353860, "in_reply_to_status_id_str": "148824910511353856"}, +{"created_at": "Mon, 19 Dec 2011 18:19:47 +0000", "from_user": "Meat_AintSHIT", "from_user_id": 68465418, "from_user_id_str": "68465418", "from_user_name": "jametraaaa*", "geo": null, "id": 148829900067962880, "id_str": "148829900067962880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1621130809/IMAG5372_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621130809/IMAG5372_normal.jpg", "source": "<a href="http://www.nibirutech.com/" rel="nofollow">TwitBird iPad</a>", "text": "Infatuation with the birds, I watch Animal Planet.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:47 +0000", "from_user": "BlackFridaysav", "from_user_id": 384726972, "from_user_id_str": "384726972", "from_user_name": "Black Friday Save", "geo": null, "id": 148829896557342720, "id_str": "148829896557342720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1573098631/BlackFridayHotDealHeaderImage14_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1573098631/BlackFridayHotDealHeaderImage14_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Check out this Amazon deal: 'Angry Birds 16\" Plush Black Bird With Sound' by Commonwealth Toy http://t.co/TkStqUZw via @amazon", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:43 +0000", "from_user": "sheasy4", "from_user_id": 254982174, "from_user_id_str": "254982174", "from_user_name": "Ciaran Mc Parland", "geo": null, "id": 148829880279244800, "id_str": "148829880279244800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701768494/47090_1595238358844_1172500598_1692959_1661292_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701768494/47090_1595238358844_1172500598_1692959_1661292_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@PGILL89 get some birds around gill!", "to_user": "PGILL89", "to_user_id": 269495951, "to_user_id_str": "269495951", "to_user_name": "Paul Thomas Gill", "in_reply_to_status_id": 148825407888695300, "in_reply_to_status_id_str": "148825407888695296"}, +{"created_at": "Mon, 19 Dec 2011 18:19:38 +0000", "from_user": "Cwisssss", "from_user_id": 377467691, "from_user_id_str": "377467691", "from_user_name": "Chris le-thoong", "geo": null, "id": 148829859773292540, "id_str": "148829859773292544", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677955203/377917_248322498555614_100001335968877_696437_240334706_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677955203/377917_248322498555614_100001335968877_696437_240334706_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Igetsoangry over angry birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:35 +0000", "from_user": "ElmiSoSo", "from_user_id": 35330767, "from_user_id_str": "35330767", "from_user_name": "L-Me 'Hontas'", "geo": null, "id": 148829849178484740, "id_str": "148829849178484736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691672437/swag1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691672437/swag1_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "#NowPlaying The Weeknd - The Birds Part 1...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:34 +0000", "from_user": "meganfrommpls", "from_user_id": 15803515, "from_user_id_str": "15803515", "from_user_name": "Megan", "geo": null, "id": 148829843952381950, "id_str": "148829843952381952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/897718132/meganedicrop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/897718132/meganedicrop_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Since living in NYC, I have developed an irrational fear of birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:33 +0000", "from_user": "mlp_JayB", "from_user_id": 439706797, "from_user_id_str": "439706797", "from_user_name": "Jay Bass", "geo": null, "id": 148829840504664060, "id_str": "148829840504664064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699560157/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699560157/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "These twitter birds are a marvel aren't they miss @MLP_SweetKiss?", "to_user": "MLP_SweetKiss", "to_user_id": 382551196, "to_user_id_str": "382551196", "to_user_name": "MLP_SweetKiss", "in_reply_to_status_id": 148829517857832960, "in_reply_to_status_id_str": "148829517857832960"}, +{"created_at": "Mon, 19 Dec 2011 18:19:32 +0000", "from_user": "carlosnrv", "from_user_id": 85575709, "from_user_id_str": "85575709", "from_user_name": "Carlos Vel\\u00E1squez", "geo": null, "id": 148829834213203970, "id_str": "148829834213203968", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1576860720/123_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576860720/123_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@DanielZabaletaL callate viejo trabajando con todo, intensa jornada de Angry Birds y Youtube entre otros.... hahaha", "to_user": "DanielZabaletaL", "to_user_id": 92575770, "to_user_id_str": "92575770", "to_user_name": "Daniel Zabaleta", "in_reply_to_status_id": 148829417987248130, "in_reply_to_status_id_str": "148829417987248129"}, +{"created_at": "Mon, 19 Dec 2011 18:19:30 +0000", "from_user": "justindeteun", "from_user_id": 256621882, "from_user_id_str": "256621882", "from_user_name": "Justin teunissen ", "geo": null, "id": 148829826457927680, "id_str": "148829826457927680", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1384577201/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1384577201/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@nickAKAgibby angry birds rio , maar het geld is van me broertje dus ik mag niks kopen en we konde een tijdje niks kopen(geen internet)", "to_user": "nickAKAgibby", "to_user_id": 221421143, "to_user_id_str": "221421143", "to_user_name": "Nick v/d Klundert", "in_reply_to_status_id": 148487142631415800, "in_reply_to_status_id_str": "148487142631415808"}, +{"created_at": "Mon, 19 Dec 2011 18:19:28 +0000", "from_user": "MISSBR33ZY_19", "from_user_id": 394836599, "from_user_id_str": "394836599", "from_user_name": "Abida Uddin", "geo": null, "id": 148829816416776200, "id_str": "148829816416776192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1635233154/teambreezy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635233154/teambreezy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "'All That Bullshit's For The Birds, You Aint Nothing But A Vulture' #TeamBreezy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:27 +0000", "from_user": "Betty21Trim", "from_user_id": 41305578, "from_user_id_str": "41305578", "from_user_name": "B.Trimble", "geo": null, "id": 148829812352487420, "id_str": "148829812352487424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1678198214/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678198214/profile_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "Hey Ladies.. Put some Toothpaste on his Penis.. Kill 2 Birds with 1 Stone this morning!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:26 +0000", "from_user": "Doreen_Moran", "from_user_id": 6119852, "from_user_id_str": "6119852", "from_user_name": "Doreen Moran", "geo": null, "id": 148829808497917950, "id_str": "148829808497917953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/518481537/st_m_crop_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/518481537/st_m_crop_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "This Christmas light display based on Angry Birds is actually a playable game! http://t.co/Unx0wUL4 via @DigitalTrends", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:25 +0000", "from_user": "AJj3311", "from_user_id": 394721487, "from_user_id_str": "394721487", "from_user_name": "Jake", "geo": null, "id": 148829805591273470, "id_str": "148829805591273472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1597928971/25372_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1597928971/25372_normal.JPG", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "A #Photo of some #Pelicans-#Birds\\thttp://t.co/ArhS7WEW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:20 +0000", "from_user": "AnvyZhang", "from_user_id": 256228417, "from_user_id_str": "256228417", "from_user_name": "Anvy.Zhang", "geo": null, "id": 148829785919991800, "id_str": "148829785919991809", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1678203103/psu2342332534_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678203103/psu2342332534_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@movingbrands Yeah I love Angry Birds", "to_user": "movingbrands", "to_user_id": 10900412, "to_user_id_str": "10900412", "to_user_name": "movingbrands", "in_reply_to_status_id": 148815620262203400, "in_reply_to_status_id_str": "148815620262203392"}, +{"created_at": "Mon, 19 Dec 2011 18:19:19 +0000", "from_user": "kelhenrique05", "from_user_id": 423670802, "from_user_id_str": "423670802", "from_user_name": "Kelvin Henrique !", "geo": null, "id": 148829781432090620, "id_str": "148829781432090624", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664746529/of_021_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664746529/of_021_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "P\\u00F4neis Malditos? Por que n\\u00E3o Angry Birds Malditos? #BigFollow:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:18 +0000", "from_user": "_iQoyQoy", "from_user_id": 242596761, "from_user_id_str": "242596761", "from_user_name": "Downloading.........", "geo": null, "id": 148829777661399040, "id_str": "148829777661399040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1621177708/440983529_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621177708/440983529_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MJ__Fadeaway: @_iQoyQoy Lol , We Gone Be Some Working Asses 9am -5pm . Its Cool Kill Two Birds In One Stone", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:13 +0000", "from_user": "KaceO_DaMondaze", "from_user_id": 26938707, "from_user_id_str": "26938707", "from_user_name": "Nancy", "geo": null, "id": 148829753883889660, "id_str": "148829753883889664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1622776676/Capture_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622776676/Capture_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@CovinoandRich Make sure your potential woman doesn't have pet birds. ;)", "to_user": "CovinoandRich", "to_user_id": 17873794, "to_user_id_str": "17873794", "to_user_name": "Covino And Rich Show"}, +{"created_at": "Mon, 19 Dec 2011 18:19:12 +0000", "from_user": "CudiTaughtME", "from_user_id": 248896906, "from_user_id_str": "248896906", "from_user_name": "Isabella", "geo": null, "id": 148829751501525000, "id_str": "148829751501524992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698860778/CudiTaughtME_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698860778/CudiTaughtME_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "I can't get past this level on angry birds >_<", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:09 +0000", "from_user": "PacinaSantana", "from_user_id": 251672169, "from_user_id_str": "251672169", "from_user_name": "Magnum ", "geo": null, "id": 148829738708893700, "id_str": "148829738708893696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701695381/CQ54t2Us_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701695381/CQ54t2Us_normal", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Who else listens to 2 chainz slanging birds?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:08 +0000", "from_user": "ShoboatNYC", "from_user_id": 20952756, "from_user_id_str": "20952756", "from_user_name": "JVP Swiftly", "geo": +{"coordinates": [28.2571,-81.3192], "type": "Point"}, "id": 148829735617691650, "id_str": "148829735617691648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701435199/307066_10150333145169350_606844349_7779069_1110711595_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701435199/307066_10150333145169350_606844349_7779069_1110711595_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Lizzle428 come join me! Playing with exotic birds, cats and monkeys! Lol", "to_user": "Lizzle428", "to_user_id": 20076192, "to_user_id_str": "20076192", "to_user_name": "Elizabeth Castillo", "in_reply_to_status_id": 148791065921593340, "in_reply_to_status_id_str": "148791065921593344"}, +{"created_at": "Mon, 19 Dec 2011 18:19:07 +0000", "from_user": "Lixxiee", "from_user_id": 98254821, "from_user_id_str": "98254821", "from_user_name": "Lixx Alc\\u00E1ntara", "geo": null, "id": 148829730496450560, "id_str": "148829730496450561", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657133341/DSC_0037_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657133341/DSC_0037_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Oh yeah, I wanna say thank you to girl who gave me the Angry Birds Bin, Lanyard, and Silicone Case! Sweet of her to include 2 more gifts!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:07 +0000", "from_user": "chomin_boi", "from_user_id": 178101619, "from_user_id_str": "178101619", "from_user_name": "Chomin", "geo": null, "id": 148829730043465730, "id_str": "148829730043465728", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1653615448/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653615448/twitter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Ya me pas\\u00E9 el Angry Birds del chrome... Necesito m\\u00E1s retos :p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:05 +0000", "from_user": "kozeni_", "from_user_id": 24553265, "from_user_id_str": "24553265", "from_user_name": "Carlos", "geo": null, "id": 148829720455299070, "id_str": "148829720455299072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681078188/ran8_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681078188/ran8_normal.jpg", "source": "<a href="http://janetter.net/" rel="nofollow">Janetter</a>", "text": "@bapeonion Personally, I'm waiting for the sequel: Angsty Birds. That or the spin-off: Passive-Aggressive Birds.", "to_user": "bapeonion", "to_user_id": 14261797, "to_user_id_str": "14261797", "to_user_name": "heathcliff marmaduke", "in_reply_to_status_id": 148826210632343550, "in_reply_to_status_id_str": "148826210632343554"}, +{"created_at": "Mon, 19 Dec 2011 18:19:04 +0000", "from_user": "_JoeyOliver", "from_user_id": 439655231, "from_user_id_str": "439655231", "from_user_name": "Joey Oliver", "geo": null, "id": 148829718903394300, "id_str": "148829718903394305", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699270692/Joey_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699270692/Joey_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "P\\u00F4neis Malditos? Por que n\\u00E3o Angry Birds Malditos? #BigFollow: http://t.co/W8DzDqhg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:02 +0000", "from_user": "_JoeyOliver", "from_user_id": 439655231, "from_user_id_str": "439655231", "from_user_name": "Joey Oliver", "geo": null, "id": 148829709986304000, "id_str": "148829709986304000", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699270692/Joey_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699270692/Joey_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "P\\u00F4neis Malditos? Por que n\\u00E3o Angry Birds Malditos? #BigFollow: http://t.co/N7wlJLhq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:02 +0000", "from_user": "iJETSETonJACOB", "from_user_id": 258471721, "from_user_id_str": "258471721", "from_user_name": "MRS.Latimore/S.SMIFF", "geo": null, "id": 148829709596229630, "id_str": "148829709596229634", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681614244/389492_295392750491317_100000617823957_972972_424646285_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681614244/389492_295392750491317_100000617823957_972972_424646285_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "RT @DIGGYJUNIOR_HOE: Me and my girlfriend we go out err weekend we just 2 love birds thats why we always tweetin <33 http://t.co/gzgXvwMR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:01 +0000", "from_user": "LouettaTrichel", "from_user_id": 250097291, "from_user_id_str": "250097291", "from_user_name": "Louetta Trichel", "geo": null, "id": 148829704542097400, "id_str": "148829704542097409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1240278908/145568498145_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1240278908/145568498145_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Where do birds invest their money? In the stork market!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:00 +0000", "from_user": "brittnnneyannn", "from_user_id": 298172727, "from_user_id_str": "298172727", "from_user_name": "Brittney", "geo": null, "id": 148829701945823230, "id_str": "148829701945823232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698518302/brittnnneyannn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698518302/brittnnneyannn_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Maybe I'll take up playing angry birds again \\uD83D\\uDE0A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:57 +0000", "from_user": "HeFlyFirstClass", "from_user_id": 296703915, "from_user_id_str": "296703915", "from_user_name": "TreyVon Bernard", "geo": null, "id": 148829688326930430, "id_str": "148829688326930433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675180875/1320939662-picsay_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675180875/1320939662-picsay_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "S/O to the birds that shited on my car when I just got it washed...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:54 +0000", "from_user": "RichieRich_247", "from_user_id": 24997460, "from_user_id_str": "24997460", "from_user_name": "Richie Rich ", "geo": null, "id": 148829675727241200, "id_str": "148829675727241216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687546562/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687546562/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@_iDirectUFollow yea i smell you on that one that standin u pwhole shifts is for the birds im str8 on that lol", "to_user": "_iDirectUFollow", "to_user_id": 52835749, "to_user_id_str": "52835749", "to_user_name": "Sharron Airel", "in_reply_to_status_id": 148829202198700030, "in_reply_to_status_id_str": "148829202198700032"}, +{"created_at": "Mon, 19 Dec 2011 18:18:53 +0000", "from_user": "nerd_wars", "from_user_id": 250354454, "from_user_id_str": "250354454", "from_user_name": "Vinicius In\\u00E1cio", "geo": null, "id": 148829669628719100, "id_str": "148829669628719104", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1659274343/1212121_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659274343/1212121_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Ta explicado - angry birds!: \\nEssa eu tive que postar!\\nVia Me-Gustando\\n http://t.co/W5kzWYB6 via @agoraficouserio", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:49 +0000", "from_user": "thebrianmcc", "from_user_id": 85854538, "from_user_id_str": "85854538", "from_user_name": "Brian McCarty", "geo": null, "id": 148829654348873730, "id_str": "148829654348873728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/496854763/brian_fish.final_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/496854763/brian_fish.final_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "The Angry Birds game is being spun off into Angry Birds' Wives.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:49 +0000", "from_user": "AMusicalGenius_", "from_user_id": 27197394, "from_user_id_str": "27197394", "from_user_name": "Southern Ave Tay!", "geo": null, "id": 148829653933629440, "id_str": "148829653933629441", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690622324/23971_10150145693870527_604510526_11751979_102602_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690622324/23971_10150145693870527_604510526_11751979_102602_n_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "#Np The Birds Part 2 - The Weeknd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:47 +0000", "from_user": "FLGRooney", "from_user_id": 186608170, "from_user_id_str": "186608170", "from_user_name": "Josh Dickerson", "geo": null, "id": 148829648346812400, "id_str": "148829648346812416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1642356103/329899388_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642356103/329899388_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Its no wonder the south end of the MS flyway has hardly any birds, there is absolutely nothing frozen or snow covered up here", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:46 +0000", "from_user": "j0sethetruth", "from_user_id": 157399153, "from_user_id_str": "157399153", "from_user_name": "Omar Villafa\\u00F1e", "geo": null, "id": 148829640427962370, "id_str": "148829640427962369", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692330628/j0sethetruth_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692330628/j0sethetruth_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "The birds http://t.co/hjUHeM3D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:45 +0000", "from_user": "seabird_11", "from_user_id": 233240015, "from_user_id_str": "233240015", "from_user_name": "Christopher Williams", "geo": null, "id": 148829639475859460, "id_str": "148829639475859456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1498728562/215138_10150255667644722_829404721_7097127_1693071_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1498728562/215138_10150255667644722_829404721_7097127_1693071_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "one thing that coldplay has taught me: Birds do not fly faster than the speed of sound", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:45 +0000", "from_user": "Brownstonecow", "from_user_id": 251121520, "from_user_id_str": "251121520", "from_user_name": " Tony Brown", "geo": null, "id": 148829636179140600, "id_str": "148829636179140608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1242158259/Sherrif_Badge_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1242158259/Sherrif_Badge_normal.jpeg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@p4rus @paulhawky when I use to watch east tilbury a few of the sea birds especially the skuas would gain height & go inland", "to_user": "p4rus", "to_user_id": 168257511, "to_user_id_str": "168257511", "to_user_name": "James Astley", "in_reply_to_status_id": 148815087526871040, "in_reply_to_status_id_str": "148815087526871040"}, +{"created_at": "Mon, 19 Dec 2011 18:18:44 +0000", "from_user": "WildBirdsUnlmtd", "from_user_id": 30051181, "from_user_id_str": "30051181", "from_user_name": "Wild Birds Unlimited", "geo": null, "id": 148829632265859070, "id_str": "148829632265859072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1330753974/nclg_0411_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1330753974/nclg_0411_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Got a caption for Poor Mr. Snowman? enter our Caption Contest http://t.co/wwl6xgrm #birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:43 +0000", "from_user": "Lyd_Danielle", "from_user_id": 345162527, "from_user_id_str": "345162527", "from_user_name": "Lydia Rea", "geo": null, "id": 148829630567157760, "id_str": "148829630567157760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1530470850/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1530470850/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@jtketch88: @Lyd_Danielle I know!! I've also hit 3 birds and a dog. But the dog lived lol\\u201D \\uD83D\\uDE32that aweful haha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:39 +0000", "from_user": "TyriceDeShaun", "from_user_id": 416771629, "from_user_id_str": "416771629", "from_user_name": "Tyrice Wells", "geo": null, "id": 148829613173379070, "id_str": "148829613173379072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680217610/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680217610/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @Mic_Ah_Jwalk: When u finally beat that level on Angry Birds>>>>>>> #Winning", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:38 +0000", "from_user": "filmoreclark", "from_user_id": 106853971, "from_user_id_str": "106853971", "from_user_name": "Filmore Clark", "geo": null, "id": 148829607771119600, "id_str": "148829607771119617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1149566221/twitter_avatar_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1149566221/twitter_avatar_normal.JPG", "source": "<a href="http://pinterest.com" rel="nofollow">Pinterest</a>", "text": "Beautiful sculpted birds! Found thanks to @unclebeefy http://t.co/5gijKDba", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:37 +0000", "from_user": "Tosyne31", "from_user_id": 50971914, "from_user_id_str": "50971914", "from_user_name": "Tosyne", "geo": null, "id": 148829605569101820, "id_str": "148829605569101826", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694608854/photo54_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694608854/photo54_normal.JPG", "source": "<a href="http://getsocialscope.com" rel="nofollow">SocialScope</a>", "text": "Lol RT @HexyDre: No ordinary peacocks, those are \"birds for Christ\". RT @exschoolnerd: Cn peacocks fly dis high? Dey r ontop the bloody roof", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:33 +0000", "from_user": "1KewlSOB", "from_user_id": 232292707, "from_user_id_str": "232292707", "from_user_name": "SupaFly\\u2022HighGuy\\u2022O_o\\u2022", "geo": null, "id": 148829588401831940, "id_str": "148829588401831936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701527838/IMG_20111104_222557_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701527838/IMG_20111104_222557_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "No GM texts, tweets birds with a GM letter on its leg NOTHIN!<<<<<", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:31 +0000", "from_user": "MissFawaz", "from_user_id": 433366333, "from_user_id_str": "433366333", "from_user_name": "Miss Fawaz", "geo": null, "id": 148829580361351170, "id_str": "148829580361351168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685105018/319632_2080390445406_1114407051_31820396_78265194_n_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685105018/319632_2080390445406_1114407051_31820396_78265194_n_normal.jpeg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I dont flock wit birds that cant fly", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:31 +0000", "from_user": "Demi_SoRandom", "from_user_id": 28536138, "from_user_id_str": "28536138", "from_user_name": "Killl_Yurself \\u2665", "geo": null, "id": 148829580331982850, "id_str": "148829580331982848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699301588/0928111539_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699301588/0928111539_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @CheckMy_DOPEE: All the bullshit is for the birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:29 +0000", "from_user": "DacotahL", "from_user_id": 422194188, "from_user_id_str": "422194188", "from_user_name": "dacotah lowrance", "geo": null, "id": 148829572954193920, "id_str": "148829572954193920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668692117/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668692117/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@smoshanthony what is your favorite angry birds???", "to_user": "smoshanthony", "to_user_id": 19748674, "to_user_id_str": "19748674", "to_user_name": "Anthony Padilla", "in_reply_to_status_id": 148123724435030000, "in_reply_to_status_id_str": "148123724435030016"}, +{"created_at": "Mon, 19 Dec 2011 18:18:29 +0000", "from_user": "HolUpBro_O", "from_user_id": 316634428, "from_user_id_str": "316634428", "from_user_name": "ITweetYouUnfollowO_o", "geo": null, "id": 148829570466975740, "id_str": "148829570466975744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1665155838/oCVCcx6D_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665155838/oCVCcx6D_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "#NP Birds part 1 - The Weeknd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:27 +0000", "from_user": "johnmarkivey", "from_user_id": 17324951, "from_user_id_str": "17324951", "from_user_name": "John Mark Ivey", "geo": null, "id": 148829560950099970, "id_str": "148829560950099968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697911655/149192_1685592869608_1531240015_31673411_2076426_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697911655/149192_1685592869608_1531240015_31673411_2076426_n_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Angry Birds Short http://t.co/tLzOFOeZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:25 +0000", "from_user": "KbELL_bihhhh", "from_user_id": 74054693, "from_user_id_str": "74054693", "from_user_name": "[ No User Found ]", "geo": null, "id": 148829552246931460, "id_str": "148829552246931457", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695505356/twimg_AgrgDKACMAEkh6w.jpg_527_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695505356/twimg_AgrgDKACMAEkh6w.jpg_527_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Chris brown just said it \"Allat bulllshit is forr the birds\" fly awayyy!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:23 +0000", "from_user": "AlishaaAzhar", "from_user_id": 152642882, "from_user_id_str": "152642882", "from_user_name": "\\u25B2lishaaaa (: ", "geo": null, "id": 148829545347301380, "id_str": "148829545347301376", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690719268/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690719268/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Piu piu piu angry birds ~", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:22 +0000", "from_user": "DontLetMegDown", "from_user_id": 70972630, "from_user_id_str": "70972630", "from_user_name": "Megan Gayer", "geo": null, "id": 148829543342419970, "id_str": "148829543342419968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1679551162/Kurt_1_Brushing_Teeth_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679551162/Kurt_1_Brushing_Teeth_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "So let's do it, just get on a plane and just do it. Like the birds and the bees and get to it, just get out of town and forever be free.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:21 +0000", "from_user": "Pansyrap", "from_user_id": 426265387, "from_user_id_str": "426265387", "from_user_name": "Pansy Rickey", "geo": null, "id": 148829538124693500, "id_str": "148829538124693504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668806319/LLCM-4703_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668806319/LLCM-4703_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@oddfuckingshay Go go get Pigeon Palooza (the next angry birds)- it is live in Android Mktplce - will be in App Store next week.", "to_user": "oddfuckingshay", "to_user_id": 260364452, "to_user_id_str": "260364452", "to_user_name": "Deshaye Collins", "in_reply_to_status_id": 148828538345230340, "in_reply_to_status_id_str": "148828538345230336"}, +{"created_at": "Mon, 19 Dec 2011 18:18:20 +0000", "from_user": "Lady_HeartBr8k", "from_user_id": 103908792, "from_user_id_str": "103908792", "from_user_name": "Likah", "geo": null, "id": 148829533246722050, "id_str": "148829533246722049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1626214720/1320620535271_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626214720/1320620535271_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @iAm_Will4: Shits def for the birds. My answer is no from now on. And if you're persistent the answer becomes fuck no.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:15 +0000", "from_user": "amanda_ximena", "from_user_id": 29785346, "from_user_id_str": "29785346", "from_user_name": "Amanda Jimenez", "geo": null, "id": 148829511688003600, "id_str": "148829511688003584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/133030893/DSC00549_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/133030893/DSC00549_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SteveMartinToGo: Trying to get American Airlines to turn off the engine while I finish this game of Angry Birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:13 +0000", "from_user": "Geralyndcf", "from_user_id": 426262070, "from_user_id_str": "426262070", "from_user_name": "Geralyn Aron", "geo": null, "id": 148829505077780480, "id_str": "148829505077780481", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668797133/LLCM-1691_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668797133/LLCM-1691_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@hsoandso Have to try Pigeon Palooza (the next angry birds)- it's avail in Android Mktplce - will be in ITunes soon.", "to_user": "hsoandso", "to_user_id": 270859049, "to_user_id_str": "270859049", "to_user_name": "Henry S", "in_reply_to_status_id": 148815004437725200, "in_reply_to_status_id_str": "148815004437725185"}, +{"created_at": "Mon, 19 Dec 2011 18:18:11 +0000", "from_user": "xxxzoe96", "from_user_id": 270036582, "from_user_id_str": "270036582", "from_user_name": "zoe schnyder", "geo": null, "id": 148829493673467900, "id_str": "148829493673467905", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697123475/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697123475/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Ik snap echt niet waarom iedereen angry birds zo geweldig vindt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:10 +0000", "from_user": "acfilm", "from_user_id": 24086829, "from_user_id_str": "24086829", "from_user_name": "Amy Sandberg", "geo": null, "id": 148829492410990600, "id_str": "148829492410990593", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/385627471/n1296045062_76222_9329_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/385627471/n1296045062_76222_9329_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "I guess the wild creatures are hungry.. Refilled all the feaders this am.. Skye chased away the turkeys, 5 squirrels .. 7 birds now snacking", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:09 +0000", "from_user": "thanx4dpleasure", "from_user_id": 420896257, "from_user_id_str": "420896257", "from_user_name": "shakira", "geo": null, "id": 148829487147139070, "id_str": "148829487147139073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1656733201/kirajms_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656733201/kirajms_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "all dat BS is for the birds..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:09 +0000", "from_user": "Mic_Ah_Jwalk", "from_user_id": 325694950, "from_user_id_str": "325694950", "from_user_name": "Micah Walker", "geo": null, "id": 148829485708480500, "id_str": "148829485708480512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1654877352/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654877352/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "When u finally beat that level on Angry Birds>>>>>>> #Winning", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:05 +0000", "from_user": "Louracaux", "from_user_id": 426260722, "from_user_id_str": "426260722", "from_user_name": "Loura Emmert", "geo": null, "id": 148829470382493700, "id_str": "148829470382493696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668792937/LLCM-4006_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668792937/LLCM-4006_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ilpanda89 Ya should play Pigeon Palooza (the next angry birds)- it's for sale in Android Mktplce - will be in ITunes in a few days.", "to_user": "ilpanda89", "to_user_id": 398105142, "to_user_id_str": "398105142", "to_user_name": "panda89", "in_reply_to_status_id": 148810100734300160, "in_reply_to_status_id_str": "148810100734300160"}, +{"created_at": "Mon, 19 Dec 2011 18:18:05 +0000", "from_user": "CheckMy_DOPEE", "from_user_id": 401396670, "from_user_id_str": "401396670", "from_user_name": "Ambitious Beezay \\u2714", "geo": null, "id": 148829470030168060, "id_str": "148829470030168064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702578008/qrChl2v0_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702578008/qrChl2v0_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "All the bullshit is for the birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:03 +0000", "from_user": "JasonSKovacs", "from_user_id": 59654868, "from_user_id_str": "59654868", "from_user_name": "Jason Kovacs", "geo": null, "id": 148829460580405250, "id_str": "148829460580405249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1396649999/BM1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1396649999/BM1_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "Just had birds attack the chips and salsa on my plate #worstnightmaresrealized #again #leggomyfoodbitchesss", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:02 +0000", "from_user": "datboiheller", "from_user_id": 412698124, "from_user_id_str": "412698124", "from_user_name": "jake heller", "geo": null, "id": 148829458864939000, "id_str": "148829458864939009", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695719498/IMG02335-20111130-1803_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695719498/IMG02335-20111130-1803_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Angry birds. (Y)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:57 +0000", "from_user": "Justbirds1", "from_user_id": 291680688, "from_user_id_str": "291680688", "from_user_name": "Bev", "geo": null, "id": 148829435255210000, "id_str": "148829435255209985", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1335631073/5261855304_0f68f9ba91_m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335631073/5261855304_0f68f9ba91_m_normal.jpg", "source": "<a href="http://www.twaitter.com" rel="nofollow">Twaitter</a>", "text": "King Vulture - http://t.co/z8UWcWW4 #birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:56 +0000", "from_user": "jackmcmahon94", "from_user_id": 278649253, "from_user_id_str": "278649253", "from_user_name": "Jack McMahon", "geo": null, "id": 148829432575045630, "id_str": "148829432575045633", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1632271371/385841_10150381637707171_724142170_8269296_1972120528_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632271371/385841_10150381637707171_724142170_8269296_1972120528_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MikeRutterford in bed with 2 thai birds was like winning the lottery 6 balls matching , im here all week", "to_user": "MikeRutterford", "to_user_id": 127318531, "to_user_id_str": "127318531", "to_user_name": "mikeruttz"}, +{"created_at": "Mon, 19 Dec 2011 18:17:56 +0000", "from_user": "AleksaTartygina", "from_user_id": 397388276, "from_user_id_str": "397388276", "from_user_name": "Aleksandra Tartygina", "geo": null, "id": 148829431773937660, "id_str": "148829431773937665", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1604609211/IMG_7082_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1604609211/IMG_7082_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/NOlqRMjD \\u043D\\u0443 \\u044F \\u0434\\u0443\\u043C\\u0430\\u044E \\u0443 \\u043D\\u0438\\u0445 \\u0432\\u0441\\u0435 \\u043C\\u043E\\u0436\\u0435\\u0442 \\u043F\\u043E\\u043B\\u0443\\u0447\\u0438\\u0442\\u0441\\u044F :) \\u043A\\u0442\\u043E \\u043D\\u0435 \\u0438\\u0433\\u0440\\u0430\\u043B \\u0432 \\u044D\\u0442\\u0443 \\u0438\\u0433\\u0440\\u0443 \\u0438 \\u0443 \\u043A\\u043E\\u0433\\u043E \\u0435\\u0435 \\u043D\\u0435\\u0442 \\u043D\\u0430 \\u0442\\u0435\\u043B\\u0435\\u0444\\u043E\\u043D\\u0435? \\u043F\\u043E\\u043A\\u0430\\u0436\\u0438\\u0442\\u0435 \\u043C\\u043D\\u0435 \\u044D\\u0442\\u0438\\u0445 \\u043B\\u044E\\u0434\\u0435\\u0439)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:52 +0000", "from_user": "thebeadedpillow", "from_user_id": 36656159, "from_user_id_str": "36656159", "from_user_name": "Karen", "geo": null, "id": 148829416804462600, "id_str": "148829416804462593", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/550471777/Karens_birthday_2008_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/550471777/Karens_birthday_2008_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Awesome! @melodylealamb Remember the little birds this winter! Backyard Birds-The Artist's View http://t.co/CdZJv7Aa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:51 +0000", "from_user": "melihbayramdede", "from_user_id": 12280682, "from_user_id_str": "12280682", "from_user_name": "Melih Bayram Dede", "geo": null, "id": 148829411150536700, "id_str": "148829411150536704", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694403972/pfr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694403972/pfr_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Angry Birds oyuncaklar\\u0131 http://t.co/P7TbJZZS\\u2019da http://t.co/Hk89zzlz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:47 +0000", "from_user": "RawPureTalent", "from_user_id": 259966889, "from_user_id_str": "259966889", "from_user_name": "Raw ", "geo": null, "id": 148829394260070400, "id_str": "148829394260070400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701660541/H517P8Yy_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701660541/H517P8Yy_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Shoutout to da birds who \\uE231\\uE420 for \\uE13E", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:47 +0000", "from_user": "karinafacanha", "from_user_id": 20242783, "from_user_id_str": "20242783", "from_user_name": "Karina Fa\\u00E7anha", "geo": null, "id": 148829394058756100, "id_str": "148829394058756096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1586716210/karina_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586716210/karina_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Photo: letrollcollection: http://t.co/WnbS5k2Y", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:45 +0000", "from_user": "Kaligigi", "from_user_id": 426265713, "from_user_id_str": "426265713", "from_user_name": "Kali Talsma", "geo": null, "id": 148829385590448130, "id_str": "148829385590448128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668805839/LLCM-2689_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668805839/LLCM-2689_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Dvadillo91 Go get Pigeon Palooza (the next angry birds)- it's launched in Android Mktplce - should be in ITunes soon.", "to_user": "Dvadillo91", "to_user_id": 379230763, "to_user_id_str": "379230763", "to_user_name": "Daniel Vadillo", "in_reply_to_status_id": 148805937975668740, "in_reply_to_status_id_str": "148805937975668736"}, +{"created_at": "Mon, 19 Dec 2011 18:17:43 +0000", "from_user": "realYoungBeater", "from_user_id": 390656729, "from_user_id_str": "390656729", "from_user_name": "Young Beater", "geo": null, "id": 148829376006455300, "id_str": "148829376006455298", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1661247582/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661247582/image_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "RT @PrettyLadyTipp: Talking shit just to be sorry about it later < for the birds !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:37 +0000", "from_user": "sirogers", "from_user_id": 19164752, "from_user_id_str": "19164752", "from_user_name": "Sheenah Rogers", "geo": null, "id": 148829353239785470, "id_str": "148829353239785472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1623160190/SR_Good_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1623160190/SR_Good_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @welikewelove: I'm over at @CoreShopping (#YYC) this morning sharing a few last-minute gift ideas for those love-birds in your life: http://t.co/lovRpAja", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:36 +0000", "from_user": "EyeRuleTheFly", "from_user_id": 47837523, "from_user_id_str": "47837523", "from_user_name": " Sweet Baby Sam ", "geo": +{"coordinates": [40.7056,-73.8069], "type": "Point"}, "id": 148829348164681730, "id_str": "148829348164681728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1530606704/IMG00482-20110828-1540_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1530606704/IMG00482-20110828-1540_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Birds keep flying by my window man. Annoying. \\uD83D\\uDC26", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:34 +0000", "from_user": "Swizz2Funny", "from_user_id": 39164480, "from_user_id_str": "39164480", "from_user_name": "Blake Swain", "geo": null, "id": 148829340149358600, "id_str": "148829340149358593", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1641754184/Photo_on_2011-11-16_at_01.52_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641754184/Photo_on_2011-11-16_at_01.52_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "Never choose to b an #OPTION.. That shit is for the birds....#Period", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:33 +0000", "from_user": "Carl1toss", "from_user_id": 44079139, "from_user_id_str": "44079139", "from_user_name": "Carlitos\\u00A9", "geo": null, "id": 148829335107809280, "id_str": "148829335107809280", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698241209/331609115_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698241209/331609115_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Angry Birds en luces navide\\u00F1as http://t.co/xQwIwGZm #Nokia", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:30 +0000", "from_user": "AshleyNicholex7", "from_user_id": 247097576, "from_user_id_str": "247097576", "from_user_name": "Ashley Phillips", "geo": null, "id": 148829322919149570, "id_str": "148829322919149569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702551415/Photo_20Pro_1__normal.bmp", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702551415/Photo_20Pro_1__normal.bmp", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Playing angry birds on my nook color and relaxing,Can't wait til Sunday!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:29 +0000", "from_user": "jtketch88", "from_user_id": 260512188, "from_user_id_str": "260512188", "from_user_name": "JT Ketch", "geo": null, "id": 148829318791958530, "id_str": "148829318791958528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1561690701/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1561690701/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Lyd_Danielle I know!! I've also hit 3 birds and a dog. But the dog lived lol", "to_user": "Lyd_Danielle", "to_user_id": 345162527, "to_user_id_str": "345162527", "to_user_name": "Lydia Rea", "in_reply_to_status_id": 148828988054323200, "in_reply_to_status_id_str": "148828988054323202"}, +{"created_at": "Mon, 19 Dec 2011 18:17:28 +0000", "from_user": "BenjiDaCableGuy", "from_user_id": 30903382, "from_user_id_str": "30903382", "from_user_name": "David Ruffin", "geo": null, "id": 148829314710904830, "id_str": "148829314710904833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701230198/DSCN0603_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701230198/DSCN0603_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "iHad a redbone but she be trippin tho. all that bullshit for the birds. she was pigeon toed", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:28 +0000", "from_user": "aylinaksoy13", "from_user_id": 147533177, "from_user_id_str": "147533177", "from_user_name": "Aylin", "geo": null, "id": 148829313519714300, "id_str": "148829313519714304", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696997485/293914_2095388260561_1120963803_31749557_700613811_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696997485/293914_2095388260561_1120963803_31749557_700613811_n_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Hahaha \\u00E7ok iyi ya babam\\u0131 da art\\u0131k Angry Birds ba\\u011F\\u0131ml\\u0131s\\u0131 yapt\\u0131m bana kafa tutuyo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:27 +0000", "from_user": "QianaMonei", "from_user_id": 170508399, "from_user_id_str": "170508399", "from_user_name": "Qiana Monei ", "geo": null, "id": 148829312676667400, "id_str": "148829312676667392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1631357555/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631357555/image_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "I love how I'm playing line runner & my mother goes is that angry birds ... um do you see any fucking birds ?!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:25 +0000", "from_user": "MsCJFierce", "from_user_id": 270294324, "from_user_id_str": "270294324", "from_user_name": "C J", "geo": null, "id": 148829300802584580, "id_str": "148829300802584576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1621997377/DSCF0397_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621997377/DSCF0397_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@thatguylyon Ok you need to get sky sports, sky news/bbc news, waterslide, angry birds, connect 4, google, flixster, emoji free...", "to_user": "thatguylyon", "to_user_id": 266713835, "to_user_id_str": "266713835", "to_user_name": "Modern Daze\\u265B", "in_reply_to_status_id": 148826560449884160, "in_reply_to_status_id_str": "148826560449884161"}, +{"created_at": "Mon, 19 Dec 2011 18:17:24 +0000", "from_user": "Rosamondbnmq", "from_user_id": 426260430, "from_user_id_str": "426260430", "from_user_name": "Rosamond Wengel", "geo": null, "id": 148829296436330500, "id_str": "148829296436330499", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668792505/LLCM-4623_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668792505/LLCM-4623_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@jonathanmozes Dude, play Pigeon Palooza (the next angry birds)- it is for sale in Android Mktplce - should be in ITunes soon.", "to_user": "jonathanmozes", "to_user_id": 63625946, "to_user_id_str": "63625946", "to_user_name": "J. Mozes Mandagi", "in_reply_to_status_id": 148828416903364600, "in_reply_to_status_id_str": "148828416903364608"}, +{"created_at": "Mon, 19 Dec 2011 18:17:18 +0000", "from_user": "_JonnyJETSon", "from_user_id": 238347513, "from_user_id_str": "238347513", "from_user_name": "Jonathan", "geo": null, "id": 148829271257911300, "id_str": "148829271257911296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1685753347/1323449220-picsay_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685753347/1323449220-picsay_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Been in the cut playing Angry Birds for a half hour already...#timeismoney haha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:13 +0000", "from_user": "yntehekje", "from_user_id": 268935227, "from_user_id_str": "268935227", "from_user_name": "ynte", "geo": null, "id": 148829252421292030, "id_str": "148829252421292032", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1398733787/Picture0007_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1398733787/Picture0007_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Angry birds op broertje ipod #lief", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:11 +0000", "from_user": "dijama", "from_user_id": 47114730, "from_user_id_str": "47114730", "from_user_name": "Adam Majid", "geo": null, "id": 148829242619211780, "id_str": "148829242619211776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1063398536/somethingsneverchange_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1063398536/somethingsneverchange_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "you always go to the parties, to pluck the feathers off all the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:10 +0000", "from_user": "pauldupuy", "from_user_id": 38517116, "from_user_id_str": "38517116", "from_user_name": "Paul Dupuy", "geo": null, "id": 148829238378774530, "id_str": "148829238378774528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1396839819/n560485391_1528350_9922_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1396839819/n560485391_1528350_9922_normal.jpeg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Video: The Interactive Angry Birds Christmas Lights\\u00A0Display http://t.co/MMOxi46v via @techcrunch", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:05 +0000", "from_user": "LatrellMyke", "from_user_id": 341159504, "from_user_id_str": "341159504", "from_user_name": " Latrell", "geo": null, "id": 148829219818967040, "id_str": "148829219818967040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1602184204/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1602184204/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "All that b.s. Is for the birds\\n-Chris Brown\\n\\nChuck chuckin up the DEUCES! LOL haha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:04 +0000", "from_user": "Alidasao", "from_user_id": 426261441, "from_user_id_str": "426261441", "from_user_name": "Alida Hartfield", "geo": null, "id": 148829213200359420, "id_str": "148829213200359424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668795613/LLCM-0715_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668795613/LLCM-0715_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Take_Flight2 Dude, play Pigeon Palooza (the next angry birds)- it is for sale in Android Mktplce - should be in ITunes in a few days.", "to_user": "Take_Flight2", "to_user_id": 55267644, "to_user_id_str": "55267644", "to_user_name": "Dontra Matthews", "in_reply_to_status_id": 148812913862393860, "in_reply_to_status_id_str": "148812913862393856"}, +{"created_at": "Mon, 19 Dec 2011 18:17:01 +0000", "from_user": "AllEyesOnMarley", "from_user_id": 241277026, "from_user_id_str": "241277026", "from_user_name": "Who Am I?", "geo": null, "id": 148829202244833280, "id_str": "148829202244833280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1617676865/tickets._normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1617676865/tickets._normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "that jealous shit is for the birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:00 +0000", "from_user": "kristuh13", "from_user_id": 59265533, "from_user_id_str": "59265533", "from_user_name": "krista mcguire", "geo": null, "id": 148829199577260030, "id_str": "148829199577260032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1665393433/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665393433/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @DannyThompson23: How appropriate that three little birds came on right before my exam #dontworry", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:58 +0000", "from_user": "lesjenkins", "from_user_id": 20599794, "from_user_id_str": "20599794", "from_user_name": "Les Jenkins", "geo": null, "id": 148829188047110140, "id_str": "148829188047110144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696353019/SantaLes_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696353019/SantaLes_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube video http://t.co/zF3zz2HF Angry Birds Christmas Light Game", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:54 +0000", "from_user": "guesswhatsPINK", "from_user_id": 243877578, "from_user_id_str": "243877578", "from_user_name": "Error. .", "geo": null, "id": 148829171550924800, "id_str": "148829171550924800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702496849/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702496849/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "somebody called friends these birds flocking -_-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:53 +0000", "from_user": "0_oTeamBRiTTanY", "from_user_id": 55417988, "from_user_id_str": "55417988", "from_user_name": "Brittany Kimbrough", "geo": null, "id": 148829167495028740, "id_str": "148829167495028738", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1656556564/Snapshot_20111124_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656556564/Snapshot_20111124_1_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Why it aint that cold outside the shit cray and scary dont want no long winter that shit fa da birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:50 +0000", "from_user": "dmanero", "from_user_id": 15913331, "from_user_id_str": "15913331", "from_user_name": "dmanero", "geo": null, "id": 148829154794668030, "id_str": "148829154794668032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1652172923/w10_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652172923/w10_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Great twitter has gone to the birds now that saudi's own a large share. can nothing stay in american hands & out of thiers.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:16:54 +0000", "from_user": "guesswhatsPINK", "from_user_id": 243877578, "from_user_id_str": "243877578", "from_user_name": "Error. .", "geo": null, "id": 148829171550924800, "id_str": "148829171550924800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702496849/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702496849/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "somebody called friends these birds flocking -_-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:53 +0000", "from_user": "0_oTeamBRiTTanY", "from_user_id": 55417988, "from_user_id_str": "55417988", "from_user_name": "Brittany Kimbrough", "geo": null, "id": 148829167495028740, "id_str": "148829167495028738", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1656556564/Snapshot_20111124_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656556564/Snapshot_20111124_1_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Why it aint that cold outside the shit cray and scary dont want no long winter that shit fa da birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:50 +0000", "from_user": "dmanero", "from_user_id": 15913331, "from_user_id_str": "15913331", "from_user_name": "dmanero", "geo": null, "id": 148829154794668030, "id_str": "148829154794668032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1652172923/w10_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652172923/w10_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Great twitter has gone to the birds now that saudi's own a large share. can nothing stay in american hands & out of thiers.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:40 +0000", "from_user": "howtogeeknews", "from_user_id": 117004644, "from_user_id_str": "117004644", "from_user_name": "How-To Geek News", "geo": null, "id": 148829114059587600, "id_str": "148829114059587584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/715229294/geek-204x204_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/715229294/geek-204x204_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "DIY Angry Birds Christmas Display is an Interactive Game [Video] http://t.co/y9nuaJmM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:37 +0000", "from_user": "Gilipollas_", "from_user_id": 299108893, "from_user_id_str": "299108893", "from_user_name": "Pepe", "geo": null, "id": 148829100180639740, "id_str": "148829100180639744", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662164847/corte-de-mangas_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662164847/corte-de-mangas_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Bien, ya me ha llegado mi BlackBerry, !!\\u00BF\\u00BFpero ahora como co\\u00F1o me paso las puntuaciones del Angry Birds del viejo a la BlackBerry??!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:37 +0000", "from_user": "DayneJoe", "from_user_id": 70790016, "from_user_id_str": "70790016", "from_user_name": "D.B. DeGaud", "geo": null, "id": 148829099962548220, "id_str": "148829099962548225", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690250719/imagejpeg_2_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690250719/imagejpeg_2_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Man...this shits for the birds...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:36 +0000", "from_user": "lil_T83", "from_user_id": 94344832, "from_user_id_str": "94344832", "from_user_name": "Terry Welch", "geo": null, "id": 148829095403331600, "id_str": "148829095403331584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1632919792/22741_283290809260_501059260_3496117_7903577_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632919792/22741_283290809260_501059260_3496117_7903577_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I just taught a 4 year old how to play Angry Birds. There goes his future.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:33 +0000", "from_user": "MeganHanlin", "from_user_id": 105709776, "from_user_id_str": "105709776", "from_user_name": "Megan Hanlin", "geo": null, "id": 148829085026619400, "id_str": "148829085026619392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1473305672/akcuua_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1473305672/akcuua_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @FactsOnGirlz: If couples who are in love are called \"love birds\", then couples who always argue should be called \"angry birds\"?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:30 +0000", "from_user": "On_The_Sly", "from_user_id": 104892020, "from_user_id_str": "104892020", "from_user_name": "Kevin S. Sylvester", "geo": null, "id": 148829073840406530, "id_str": "148829073840406529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1178080913/40876_152698824772330_100000966416811_237674_1112406_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1178080913/40876_152698824772330_100000966416811_237674_1112406_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "When Life gives ME lemons, I make raspberry iced tea, and then I sit back and enjoy it while all you birds wonder how the fuck I did it.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:30 +0000", "from_user": "psazon", "from_user_id": 35016853, "from_user_id_str": "35016853", "from_user_name": "Paulo Guagliano", "geo": null, "id": 148829071885864960, "id_str": "148829071885864960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1666423033/313174_2407155303103_1377804631_2762462_1796879508_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666423033/313174_2407155303103_1377804631_2762462_1796879508_n_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube video http://t.co/Moxt3VdL Angry Birds Wreck The Halls animation", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:29 +0000", "from_user": "Keidis", "from_user_id": 35294344, "from_user_id_str": "35294344", "from_user_name": "misirlikedi", "geo": null, "id": 148829068429762560, "id_str": "148829068429762560", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1608756922/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608756922/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MuratAykul: D\\u00FCn gece, hi\\u00E7 tan\\u0131mad\\u0131\\u011F\\u0131m bir tavu\\u011Fu, s\\u0131rf Angry Birds'e benziyor diye, usulca sokulup havaya f\\u0131rlatt\\u0131m.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:27 +0000", "from_user": "kikkuin", "from_user_id": 206013148, "from_user_id_str": "206013148", "from_user_name": "krishnakumar", "geo": null, "id": 148829057675567100, "id_str": "148829057675567104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1230592820/01_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1230592820/01_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "DIY Angry Birds Christmas Display is an Interactive Game [Video]: From the same guy that brought you the playabl... http://t.co/jpxLNjEN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:26 +0000", "from_user": "sharespot", "from_user_id": 395858776, "from_user_id_str": "395858776", "from_user_name": "Share Spot", "geo": null, "id": 148829053242187780, "id_str": "148829053242187776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1606027618/pi_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606027618/pi_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "DIY Angry Birds Christmas Display is an Interactive Game [Video]: From the same guy that brought you the playabl... http://t.co/OgT56eER", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:22 +0000", "from_user": "TheAaronHogan", "from_user_id": 130909314, "from_user_id_str": "130909314", "from_user_name": "Aaron Hogan", "geo": null, "id": 148829038583103500, "id_str": "148829038583103488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1410566441/Photo_on_2011-06-07_at_19.15_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1410566441/Photo_on_2011-06-07_at_19.15_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "No Angry Birds were harmed in the making of this hat, but the pigs suffered more than you can imagine. http://t.co/CWZLMwsr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:21 +0000", "from_user": "myeasymoney", "from_user_id": 103518221, "from_user_id_str": "103518221", "from_user_name": "invest", "geo": null, "id": 148829032283254800, "id_str": "148829032283254784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "DIY Angry Birds Christmas Display is an Interactive Game [Video]: From the same guy that brought you the playable Guitar Hero Christm...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:21 +0000", "from_user": "yuvrajsinghcric", "from_user_id": 105443733, "from_user_id_str": "105443733", "from_user_name": "yuvraj", "geo": null, "id": 148829032094498800, "id_str": "148829032094498816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "DIY Angry Birds Christmas Display is an Interactive Game [Video]: From the same guy that brought you the playable Guitar Hero Christm...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:20 +0000", "from_user": "Msdhonicricket", "from_user_id": 105441907, "from_user_id_str": "105441907", "from_user_name": "Dhoni", "geo": null, "id": 148829031935115260, "id_str": "148829031935115265", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "DIY Angry Birds Christmas Display is an Interactive Game [Video]: From the same guy that brought you the playable Guitar Hero Christm...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:14 +0000", "from_user": "Mic_Ah_Jwalk", "from_user_id": 325694950, "from_user_id_str": "325694950", "from_user_name": "Micah Walker", "geo": null, "id": 148829004626014200, "id_str": "148829004626014210", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1654877352/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654877352/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "When u cant beat that level on Angry Birds <<<<<<<", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:09 +0000", "from_user": "DevonianGuy", "from_user_id": 81925699, "from_user_id_str": "81925699", "from_user_name": "John Temple", "geo": null, "id": 148828983784513540, "id_str": "148828983784513536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @BBCNature: Some of the world's rarest birds have been moved to a special aviary @WWTslimbridge watch a film about their journey: http://t.co/maWMaPp1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:06 +0000", "from_user": "ClaytonWaldie", "from_user_id": 424909675, "from_user_id_str": "424909675", "from_user_name": "Clayton Waldie", "geo": null, "id": 148828972694765570, "id_str": "148828972694765569", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1665732204/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665732204/image_normal.jpg", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "I'm at Wild Birds Unlimited (3849 S Campbell Ave, Springfield) http://t.co/ZxAbRY8E", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:59 +0000", "from_user": "MeeeeeeeeZy", "from_user_id": 24743775, "from_user_id_str": "24743775", "from_user_name": "$hawlot Mike ll", "geo": null, "id": 148828943452082180, "id_str": "148828943452082176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702486932/mduck-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702486932/mduck-1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@Mr_124 \\u201C@MeeeeeeeeZy: Angry Birds Kids Hoody I de$igned/Painted! http://t.co/LZbs8IEJ\\u201D\\u201D dope shit\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:51 +0000", "from_user": "Tea_El_Sea", "from_user_id": 25772836, "from_user_id_str": "25772836", "from_user_name": "Tanner Christopher", "geo": null, "id": 148828908186382340, "id_str": "148828908186382337", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1282178294/3YQQN9iG_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1282178294/3YQQN9iG_normal", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Some birds aren't meant to be caged, their feathers are just to bright. #shawshank", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:14 +0000", "from_user": "tjbraude", "from_user_id": 337761974, "from_user_id_str": "337761974", "from_user_name": "tjb", "geo": null, "id": 148828752896475140, "id_str": "148828752896475136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://www.socialflow.com" rel="nofollow">SocialFlow</a>", "text": "RT @TheEconomist: A new iPhone app makes ordering up a private plane anywhere in the world is as easy as playing a round of Angry Birds http://t.co/3zO2g1ka", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:06 +0000", "from_user": "Eros_Styx", "from_user_id": 211538583, "from_user_id_str": "211538583", "from_user_name": "Rali", "geo": null, "id": 148828721615339520, "id_str": "148828721615339521", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1635076703/water_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635076703/water_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", "text": "Hunting for a house is for the birds... #moving", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:05 +0000", "from_user": "cmmack526", "from_user_id": 32215646, "from_user_id_str": "32215646", "from_user_name": "Christie Mack", "geo": null, "id": 148828714191429630, "id_str": "148828714191429632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1662960354/Capture_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662960354/Capture_normal.PNG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Lissa_48 and kissing birds and releasing them. Omg I just remembered something about the game that I wanted to tell you about!", "to_user": "Lissa_48", "to_user_id": 50684553, "to_user_id_str": "50684553", "to_user_name": "Melissa Culbreth", "in_reply_to_status_id": 148828358724161540, "in_reply_to_status_id_str": "148828358724161536"}, +{"created_at": "Mon, 19 Dec 2011 18:14:55 +0000", "from_user": "Danielle_TBO", "from_user_id": 22836368, "from_user_id_str": "22836368", "from_user_name": "Danielle Massam", "geo": null, "id": 148828672957235200, "id_str": "148828672957235200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1568337259/Photo_on_2011-09-29_at_12_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1568337259/Photo_on_2011-09-29_at_12_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Why are birds so fucking hard to draw.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:52 +0000", "from_user": "Mak_pk", "from_user_id": 90333649, "from_user_id_str": "90333649", "from_user_name": "Akram Khan", "geo": null, "id": 148828662647635970, "id_str": "148828662647635968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1665453063/mak_-_pp_picture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665453063/mak_-_pp_picture_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "LOL RT @faisalqureshi: I do that every weeknight at 11 \\u201C@ZaynubMahmood: u need to get off Twitter and play angry birds\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:52 +0000", "from_user": "lukariosa", "from_user_id": 269632529, "from_user_id_str": "269632529", "from_user_name": "Karime Osorio ", "geo": null, "id": 148828661905244160, "id_str": "148828661905244162", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1651488569/330203063_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651488569/330203063_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "#YoQuieroUnPapaNoelSecreto pero para que me pague todo el sueldo de un a\\u00F1o y as\\u00ED yo me dedico a jugar Angry Birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:44 +0000", "from_user": "Squadcars42", "from_user_id": 20828438, "from_user_id_str": "20828438", "from_user_name": "Tommy Sokolis", "geo": null, "id": 148828628057210880, "id_str": "148828628057210881", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1646188379/new054_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646188379/new054_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@edanco55 Thanks pal. GO BIRDS!!", "to_user": "edanco55", "to_user_id": 53578177, "to_user_id_str": "53578177", "to_user_name": "Edward Colon", "in_reply_to_status_id": 148828234434347000, "in_reply_to_status_id_str": "148828234434347008"}, +{"created_at": "Mon, 19 Dec 2011 18:14:36 +0000", "from_user": "johny_epleseed", "from_user_id": 44079295, "from_user_id_str": "44079295", "from_user_name": "Michael Eplee", "geo": null, "id": 148828593735204860, "id_str": "148828593735204864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1635404062/208428_10150550005200696_505070695_18132465_7768482_n_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635404062/208428_10150550005200696_505070695_18132465_7768482_n_normal.jpeg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @someecards: Angry Birds now available on iPhone, Droid, and completely insane man's Christmas lights display. http://t.co/mrfMU8Hl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:34 +0000", "from_user": "JokezForDayz", "from_user_id": 421479081, "from_user_id_str": "421479081", "from_user_name": "Lucky Luke", "geo": null, "id": 148828583832453120, "id_str": "148828583832453120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1657997692/imagesCAK96OHU_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657997692/imagesCAK96OHU_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Any time a bird craps on my car, I eat an entire plate of scrambled eggs on my porch, just to show the birds what I'm capable of....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:32 +0000", "from_user": "Riley0123658958", "from_user_id": 440861389, "from_user_id_str": "440861389", "from_user_name": "Riley", "geo": null, "id": 148828577452924930, "id_str": "148828577452924928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702141572/beautiful-girls-picture__9__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702141572/beautiful-girls-picture__9__normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Southern African Birds: A Photographic Guide: The well-known guide to Southern African birds has been updated to... http://t.co/sW6Gdxnd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:31 +0000", "from_user": "DarkyZzzzz", "from_user_id": 421715427, "from_user_id_str": "421715427", "from_user_name": "\\u0421\\u0435\\u0440\\u0433\\u0435\\u0439 \\u0414\\u0440\\u0443\\u0433\\u043E\\u0432", "geo": null, "id": 148828574198145020, "id_str": "148828574198145024", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691160023/metrofoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691160023/metrofoto_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "7 \\u0447\\u0430\\u0441\\u0442\\u044C \\u043A\\u043E\\u043C\\u0438\\u043A\\u0441\\u043E\\u0432 \\u0441 \\u043F\\u0442\\u0438\\u0447\\u043A\\u0430\\u043C\\u0438!^^ http://t.co/MkObcUED \\u0441 \\u043F\\u043E\\u043C\\u043E\\u0449\\u044C\\u044E @AppleInsider_ru", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:31 +0000", "from_user": "sneaksvp24", "from_user_id": 91682008, "from_user_id_str": "91682008", "from_user_name": "Hilary Van Praag", "geo": null, "id": 148828571798994940, "id_str": "148828571798994945", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1655060719/IMG-20111105-00020_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655060719/IMG-20111105-00020_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Love birds http://t.co/MQAmcAVE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:27 +0000", "from_user": "margaretpirendo", "from_user_id": 305769241, "from_user_id_str": "305769241", "from_user_name": "margaret rendon", "geo": null, "id": 148828556028420100, "id_str": "148828556028420097", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1663933072/Storage_Bench_Designs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663933072/Storage_Bench_Designs_normal.jpg", "source": "<a href="http://storagebenchdesigns.com" rel="nofollow">Storage Bench Designs2</a>", "text": "> Three Birds Casual http://t.co/7lCOc89h", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:27 +0000", "from_user": "Listentohersing", "from_user_id": 63387416, "from_user_id_str": "63387416", "from_user_name": "Amanda Marquez", "geo": null, "id": 148828554354901000, "id_str": "148828554354900992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697848868/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697848868/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @DJFRANK_WHITE: LIFE IS LIKE AN IPHONE , ALL THESE ANGRY BIRDS .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:26 +0000", "from_user": "Shizueskep", "from_user_id": 426262224, "from_user_id_str": "426262224", "from_user_name": "Shizue Lautz", "geo": null, "id": 148828551385333760, "id_str": "148828551385333760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668797298/LLCM-4396_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668797298/LLCM-4396_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MunMun96 Hey, get Pigeon Palooza (the next angry birds)- it's for sale in Android Mktplce - should be in App Store next week.", "to_user": "MunMun96", "to_user_id": 326989258, "to_user_id_str": "326989258", "to_user_name": "Manal", "in_reply_to_status_id": 148792438897655800, "in_reply_to_status_id_str": "148792438897655808"}, +{"created_at": "Mon, 19 Dec 2011 18:14:26 +0000", "from_user": "Bnarsty", "from_user_id": 271796557, "from_user_id_str": "271796557", "from_user_name": "Becky Gonzalez", "geo": null, "id": 148828551070744580, "id_str": "148828551070744576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1306816794/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1306816794/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "That shit's for the birds... #thanksbutnothanks", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:20 +0000", "from_user": "kennalisbeth", "from_user_id": 399874142, "from_user_id_str": "399874142", "from_user_name": "kennalisbeth", "geo": null, "id": 148828527544897540, "id_str": "148828527544897536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1650794081/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650794081/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Lawl gina doesn't know what angry birds is", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:19 +0000", "from_user": "empresapedia", "from_user_id": 394544302, "from_user_id_str": "394544302", "from_user_name": "empresapedia", "geo": null, "id": 148828524432723970, "id_str": "148828524432723968", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668206090/logo-empresapedia-com-002_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668206090/logo-empresapedia-com-002_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "El creador de Angry Birds considera salir a Bolsa en Hong Kong http://t.co/o4sjNKfE #empresa #economia", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:13 +0000", "from_user": "sesharina", "from_user_id": 46724527, "from_user_id_str": "46724527", "from_user_name": "sesarina puspita", "geo": null, "id": 148828497056497660, "id_str": "148828497056497664", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696184644/4wl39xhn_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696184644/4wl39xhn_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": ":''''''') @arirusyadi: Ikutaaan RT @sesharina: Empuuukkk...:p @dinamazing: Hug sesha so tight \"@sesharina: we're no longer love birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:13 +0000", "from_user": "countachlpsx", "from_user_id": 108214636, "from_user_id_str": "108214636", "from_user_name": "BC", "geo": null, "id": 148828495487844350, "id_str": "148828495487844352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1405288590/5649_942117481930_7932454_54271678_3136470_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1405288590/5649_942117481930_7932454_54271678_3136470_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @someecards: Angry Birds now available on iPhone, Droid, and completely insane man's Christmas lights display. http://t.co/mrfMU8Hl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:05 +0000", "from_user": "dunhill_azrag", "from_user_id": 322763428, "from_user_id_str": "322763428", "from_user_name": "Flai7an L7babey", "geo": null, "id": 148828465498554370, "id_str": "148828465498554368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689369490/IMG_1906blikkkk_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689369490/IMG_1906blikkkk_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Thanks for twitter now birds always remind me of something :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:05 +0000", "from_user": "MiaMphotography", "from_user_id": 207043580, "from_user_id_str": "207043580", "from_user_name": "Mia McPherson", "geo": null, "id": 148828463611125760, "id_str": "148828463611125761", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1539067214/mia-profile-9517_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1539067214/mia-profile-9517_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Thank you for the RT @Birding_Is_Fun: RT - Ring-billed Gulls | on the wing photography - http://t.co/V6gK70HI #birds #birding", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:01 +0000", "from_user": "WoahhAlysha_B", "from_user_id": 370774270, "from_user_id_str": "370774270", "from_user_name": "\\u261E Alysha Brewer \\u261C ", "geo": null, "id": 148828447039422460, "id_str": "148828447039422464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1661363576/movies_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661363576/movies_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @FactsOnGirlz: If couples who are in love are called \"love birds\", then couples who always argue should be called \"angry birds\"?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:01 +0000", "from_user": "teesipes", "from_user_id": 53145139, "from_user_id_str": "53145139", "from_user_name": "taylor sipes.", "geo": null, "id": 148828444900339700, "id_str": "148828444900339713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670570729/Photo_on_2011-12-02_at_20.31_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670570729/Photo_on_2011-12-02_at_20.31_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @FactsOnGirlz: If couples who are in love are called \"love birds\", then couples who always argue should be called \"angry birds\"?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:54 +0000", "from_user": "jonathanmozes", "from_user_id": 63625946, "from_user_id_str": "63625946", "from_user_name": "J. Mozes Mandagi", "geo": null, "id": 148828416903364600, "id_str": "148828416903364608", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1204303933/236336292_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1204303933/236336292_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@farifarifari bikin suara jadi kyk angry birds sih mitosnya, tapi trbukti ampe skrg.", "to_user": "farifarifari", "to_user_id": 90343779, "to_user_id_str": "90343779", "to_user_name": "faridah zahra", "in_reply_to_status_id": 148825921695133700, "in_reply_to_status_id_str": "148825921695133697"}, +{"created_at": "Mon, 19 Dec 2011 18:13:48 +0000", "from_user": "Particiamso", "from_user_id": 426263721, "from_user_id_str": "426263721", "from_user_name": "Particia Brun", "geo": null, "id": 148828394291867650, "id_str": "148828394291867648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668801396/LLCM-4961_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668801396/LLCM-4961_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@veezieYDG Ya gotta go get Pigeon Palooza (the next angry birds)- it's launched in Android Mktplce - will be in App Store in a few days.", "to_user": "veezieYDG", "to_user_id": 101290964, "to_user_id_str": "101290964", "to_user_name": "Der Kommissar.", "in_reply_to_status_id": 148822275964157950, "in_reply_to_status_id_str": "148822275964157954"}, +{"created_at": "Mon, 19 Dec 2011 18:13:42 +0000", "from_user": "iRideCoupe", "from_user_id": 366755314, "from_user_id_str": "366755314", "from_user_name": "No s\\u00E8", "geo": +{"coordinates": [32.7407,-97.6453], "type": "Point"}, "id": 148828366387167230, "id_str": "148828366387167232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1594741086/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1594741086/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I whip tha stang like I whip tha birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:34 +0000", "from_user": "vicki1512", "from_user_id": 343727579, "from_user_id_str": "343727579", "from_user_name": "vicki pelan", "geo": null, "id": 148828332597841920, "id_str": "148828332597841920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1547352411/FacebookHomescreenImage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1547352411/FacebookHomescreenImage_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "If couples who are in love are called \"love birds\", then couples who always argue should be called \"Angry birds.\" :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:29 +0000", "from_user": "TrynaGetItRite", "from_user_id": 262965670, "from_user_id_str": "262965670", "from_user_name": "Ms. Hunt", "geo": null, "id": 148828312528105470, "id_str": "148828312528105472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701600590/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701600590/image_normal.jpg", "source": "<a href="http://www.handmark.com" rel="nofollow">TweetCaster for iOS</a>", "text": "My day has just been shot to hell. Hurry up workout time. Cause this shit is for the birds. #eating cookie #4 #allbad", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:28 +0000", "from_user": "MySweetzUrTooth", "from_user_id": 418130930, "from_user_id_str": "418130930", "from_user_name": "Miss Adams ", "geo": null, "id": 148828309097160700, "id_str": "148828309097160704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699367378/Photo_128_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699367378/Photo_128_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SopranoQueen93 from that there sky above ur head.. the whole \"FAKE THUG\" ish is for the birds... errbody wanna be a thug nd nobody wanna b", "to_user": "SopranoQueen93", "to_user_id": 164550231, "to_user_id_str": "164550231", "to_user_name": "Yasmin Bradshaw", "in_reply_to_status_id": 148827296889974800, "in_reply_to_status_id_str": "148827296889974785"}, +{"created_at": "Mon, 19 Dec 2011 18:13:28 +0000", "from_user": "gabifidelis2011", "from_user_id": 432515765, "from_user_id_str": "432515765", "from_user_name": "gaby fidelis", "geo": null, "id": 148828306702217200, "id_str": "148828306702217217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692614133/132_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692614133/132_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Play the new Angry Birds Advent Challenge! Visit http://t.co/NMP5dgYX!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:27 +0000", "from_user": "Phill022", "from_user_id": 299286193, "from_user_id_str": "299286193", "from_user_name": "Phill 02", "geo": null, "id": 148828304890273800, "id_str": "148828304890273792", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1423661716/Untitled_2_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1423661716/Untitled_2_normal.gif", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "Literate Birds \\thttp://t.co/GZQz8BiS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:21 +0000", "from_user": "MariangelDp", "from_user_id": 53777104, "from_user_id_str": "53777104", "from_user_name": "Mariangel", "geo": null, "id": 148828281087606800, "id_str": "148828281087606786", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1557120512/326967585_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1557120512/326967585_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Bueno, jugare angri birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:17 +0000", "from_user": "TechTSP", "from_user_id": 141156310, "from_user_id_str": "141156310", "from_user_name": "Tanmay Patange", "geo": null, "id": 148828263744151550, "id_str": "148828263744151552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698936536/chrome_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698936536/chrome_normal.jpg", "source": "<a href="http://manageflitter.com" rel="nofollow">ManageFlitter</a>", "text": "Chrome Inside: Play Latest Updated Angry Birds On Google Chrome https://t.co/GzJnysqu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:15 +0000", "from_user": "_morozoff", "from_user_id": 328127388, "from_user_id_str": "328127388", "from_user_name": "lexandr", "geo": null, "id": 148828255057739780, "id_str": "148828255057739776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702573170/angry-birds-picture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702573170/angry-birds-picture_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Angry Birds Online: Angry Birds Real Life Game http://t.co/rO6KgncN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:14 +0000", "from_user": "Nivelxnet", "from_user_id": 417359450, "from_user_id_str": "417359450", "from_user_name": "Nivel-x.net", "geo": null, "id": 148828249735176200, "id_str": "148828249735176192", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1649201018/nivelxlogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649201018/nivelxlogo_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Angry Birds Rio PC GAME 2011 http://t.co/WHgJa85C", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:09 +0000", "from_user": "Fakhre_Alam", "from_user_id": 69783606, "from_user_id_str": "69783606", "from_user_name": "Fakhr-E-Alam", "geo": null, "id": 148828228759470080, "id_str": "148828228759470080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1127349197/Alam_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1127349197/Alam_copy_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @Symbiantweet: #AngryBirds game ripped from #Nokia Asha ROM, Working fine on other #S40 Touch & Type phones - http://t.co/tIewiEQ0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:07 +0000", "from_user": "Cybermyk", "from_user_id": 313485390, "from_user_id_str": "313485390", "from_user_name": "Cybermyk", "geo": null, "id": 148828222262489100, "id_str": "148828222262489088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1399377818/eye_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1399377818/eye_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@Shazia_Donachie only the toughest birds get medals, I'm getting a cowardly one that found comfort in food :)", "to_user": "Shazia_Donachie", "to_user_id": 106779633, "to_user_id_str": "106779633", "to_user_name": "Shazia Donachie", "in_reply_to_status_id": 148821996476706800, "in_reply_to_status_id_str": "148821996476706816"}, +{"created_at": "Mon, 19 Dec 2011 18:13:05 +0000", "from_user": "Jaimeengql", "from_user_id": 426262582, "from_user_id_str": "426262582", "from_user_name": "Jaimee Goldman", "geo": null, "id": 148828213299257340, "id_str": "148828213299257344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668798708/LLCM-3633_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668798708/LLCM-3633_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@szCelebHotSpots Dude, play Pigeon Palooza (the next angry birds)- it is avail in Android Mktplce - will be in App Store in a few days.", "to_user": "szCelebHotSpots", "to_user_id": 15868607, "to_user_id_str": "15868607", "to_user_name": "Susan Zechter", "in_reply_to_status_id": 148808593649569800, "in_reply_to_status_id_str": "148808593649569792"}, +{"created_at": "Mon, 19 Dec 2011 18:13:05 +0000", "from_user": "LISN2DABEAT", "from_user_id": 91703887, "from_user_id_str": "91703887", "from_user_name": "Mario Rowland", "geo": null, "id": 148828211491516400, "id_str": "148828211491516416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1601855778/Me_4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601855778/Me_4_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Bitterness is for the birds, and I ain't no damn bird. :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:04 +0000", "from_user": "rcpphoto", "from_user_id": 47446539, "from_user_id_str": "47446539", "from_user_name": "Ramon Purcell", "geo": null, "id": 148828206491893760, "id_str": "148828206491893760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1426163145/RCP_LAubergeLodge_v3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1426163145/RCP_LAubergeLodge_v3_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Killing 2 birds with 1 stone, footage for an automotive video, on the drive to Sedona http://t.co/P4g8E2zQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:33 +0000", "from_user": "projectnoah", "from_user_id": 94202251, "from_user_id_str": "94202251", "from_user_name": "Project Noah", "geo": null, "id": 148828076376199170, "id_str": "148828076376199168", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1227788796/Noah-Icon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1227788796/Noah-Icon_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @12mm: Acabo de ganar el Mission Creator patch en @projectnoah, por haber creado la misi\\u00F3n de Birds of Colombia! - http://t.co/CXjRk8zm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:31 +0000", "from_user": "Julia__Madrid", "from_user_id": 60615912, "from_user_id_str": "60615912", "from_user_name": "Julia Madrid", "geo": null, "id": 148828071322066940, "id_str": "148828071322066945", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693225662/Img705C0604_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693225662/Img705C0604_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Tem angry birds pra Ipad?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:31 +0000", "from_user": "Indiraqsu", "from_user_id": 426263021, "from_user_id_str": "426263021", "from_user_name": "Indira Muldrow", "geo": null, "id": 148828069375901700, "id_str": "148828069375901696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668799239/LLCM-1135_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668799239/LLCM-1135_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@DistrictOfAris Ya have to try Pigeon Palooza (the next angry birds)- it is in Android Mktplce - will be in ITunes soon.", "to_user": "DistrictOfAris", "to_user_id": 15160233, "to_user_id_str": "15160233", "to_user_name": "Aris Kyriakopoulos", "in_reply_to_status_id": 148809556494004220, "in_reply_to_status_id_str": "148809556494004225"}, +{"created_at": "Mon, 19 Dec 2011 18:12:24 +0000", "from_user": "peterhorvath", "from_user_id": 9800962, "from_user_id_str": "9800962", "from_user_name": "Peter Horvath", "geo": null, "id": 148828040326164480, "id_str": "148828040326164480", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1541406164/Screen_Shot_2011-09-13_at_3.13.50_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541406164/Screen_Shot_2011-09-13_at_3.13.50_PM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @12mm: Acabo de ganar el Mission Creator patch en @projectnoah, por haber creado la misi\\u00F3n de Birds of Colombia! - http://t.co/CXjRk8zm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:23 +0000", "from_user": "Uncle_Dre", "from_user_id": 185327067, "from_user_id_str": "185327067", "from_user_name": "Se\\u00F1or Derecha", "geo": null, "id": 148828036668723200, "id_str": "148828036668723200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702532959/Uncle_Dre_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702532959/Uncle_Dre_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Temple Run has to be the best iPhone game since angry birds! Straight Up!\\u2122", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:16 +0000", "from_user": "marinae502", "from_user_id": 205940159, "from_user_id_str": "205940159", "from_user_name": "Marina Orellana", "geo": null, "id": 148828006901743600, "id_str": "148828006901743617", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694943790/IMG00672-20101224-0257_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694943790/IMG00672-20101224-0257_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Angry birds es lo maximo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:54 +0000", "from_user": "Justbirds1", "from_user_id": 291680688, "from_user_id_str": "291680688", "from_user_name": "Bev", "geo": null, "id": 148827914836783100, "id_str": "148827914836783105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1335631073/5261855304_0f68f9ba91_m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335631073/5261855304_0f68f9ba91_m_normal.jpg", "source": "<a href="http://www.twaitter.com" rel="nofollow">Twaitter</a>", "text": "Locked on Target http://t.co/2DDPafwr #birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:42 +0000", "from_user": "joriqtr", "from_user_id": 146273810, "from_user_id_str": "146273810", "from_user_name": "joriqtr.com", "geo": null, "id": 148827865167839230, "id_str": "148827865167839232", "iso_language_code": "ar", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1389586316/Rawan_-_pic__72__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1389586316/Rawan_-_pic__72__normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "▁▂▃▅▆▇\\u0623\\u0643\\u0648\\u0627\\u0628 \\u0648\\u0645\\u062C\\u0627\\u062A \\u0623\\u0646\\u062C\\u0631\\u064A \\u0628\\u064A\\u0631\\u062F\\u0632 Angry Birds \\u0644\\u0644\\u062A\\u0633\\u0644\\u064A\\u0645 \\u0627\\u0644\\u0641\\u0648\\u0631\\u064A\\u2026 http://t.co/DespynLb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:38 +0000", "from_user": "RedstoneLiquors", "from_user_id": 109292604, "from_user_id_str": "109292604", "from_user_name": "Redstone Liquors", "geo": null, "id": 148827846083756030, "id_str": "148827846083756033", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/783106591/twitterLogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/783106591/twitterLogo_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Gotta love the holidays. Jut got in a surprise case of @TheBruery 4 calling birds incase you missed out the first time around.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:17 +0000", "from_user": "jovempansjc", "from_user_id": 65361763, "from_user_id_str": "65361763", "from_user_name": "Jovem Pan SJC", "geo": null, "id": 148827758531850240, "id_str": "148827758531850240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1679567746/jp_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679567746/jp_logo_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "#Vish! Angry Birds vers\\u00E3o \\u00C1frica HUAHAUHUA http://t.co/tUyfAN0n", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:53 +0000", "from_user": "YZFRStew", "from_user_id": 122790154, "from_user_id_str": "122790154", "from_user_name": "Immigration", "geo": null, "id": 148827658300571650, "id_str": "148827658300571649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690216970/028_cropped_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690216970/028_cropped_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "All this sticking around stuff is for the birds. It's to much else out here to do than stay at Tuskegee", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:50 +0000", "from_user": "Mauradmv", "from_user_id": 426260348, "from_user_id_str": "426260348", "from_user_name": "Maura Loepp", "geo": null, "id": 148827646824939520, "id_str": "148827646824939520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668792271/LLCM-4565_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668792271/LLCM-4565_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@nicolefitton_X Ya gotta go get Pigeon Palooza (the next angry birds)- it is in Android Mktplce - should be in ITunes next week.", "to_user": "nicolefitton_X", "to_user_id": 40700963, "to_user_id_str": "40700963", "to_user_name": "nicole fitton", "in_reply_to_status_id": 148826872560631800, "in_reply_to_status_id_str": "148826872560631808"}, +{"created_at": "Mon, 19 Dec 2011 18:10:49 +0000", "from_user": "jvdbz", "from_user_id": 291933199, "from_user_id_str": "291933199", "from_user_name": "Valmir Neto", "geo": null, "id": 148827639765925900, "id_str": "148827639765925891", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1462038438/Valmir_002_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1462038438/Valmir_002_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "se vc ainda nao percebeu no angry birds eles falam \" \\u00E9 o bill!!!?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:37 +0000", "from_user": "BaharBuyukgunes", "from_user_id": 80067268, "from_user_id_str": "80067268", "from_user_name": "BaharBuyukgunes", "geo": null, "id": 148827591560798200, "id_str": "148827591560798210", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1338413233/218706_10150164832286731_517631730_7017249_4051289_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1338413233/218706_10150164832286731_517631730_7017249_4051289_o_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MuratAykul: D\\u00FCn gece, hi\\u00E7 tan\\u0131mad\\u0131\\u011F\\u0131m bir tavu\\u011Fu, s\\u0131rf Angry Birds'e benziyor diye, usulca sokulup havaya f\\u0131rlatt\\u0131m.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:31 +0000", "from_user": "Loppie123", "from_user_id": 407926607, "from_user_id_str": "407926607", "from_user_name": "Loppie123", "geo": null, "id": 148827566743109630, "id_str": "148827566743109632", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694987927/Afbeelding_313_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694987927/Afbeelding_313_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "aaaaah Angry birds spelen.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:22 +0000", "from_user": "Jannriw", "from_user_id": 431716389, "from_user_id_str": "431716389", "from_user_name": "Jann Kiper", "geo": null, "id": 148827529162141700, "id_str": "148827529162141696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681065345/3i2ten552a_130716684_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681065345/3i2ten552a_130716684_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Birds of Florida Field Guide and Audio CD Set: Everything you need to enjoy the birds in your state is right her... http://t.co/FpMBUicn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:21 +0000", "from_user": "TheoStander", "from_user_id": 242655378, "from_user_id_str": "242655378", "from_user_name": "The O", "geo": null, "id": 148827525139795970, "id_str": "148827525139795968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1649291221/IMG-20110611-00003_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649291221/IMG-20110611-00003_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @someecards: Angry Birds now available on iPhone, Droid, and completely insane man's Christmas lights display. http://t.co/mrfMU8Hl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:18 +0000", "from_user": "BrianaK_PERRY", "from_user_id": 93950407, "from_user_id_str": "93950407", "from_user_name": "Briana Norton", "geo": null, "id": 148827511449587700, "id_str": "148827511449587715", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675283105/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675283105/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @EllisBennetttt: @harry_dolan half polish , quarter Maltese , Im continental , birds love it", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:17 +0000", "from_user": "MoniGeo", "from_user_id": 26444662, "from_user_id_str": "26444662", "from_user_name": "Monica Manzanares", "geo": null, "id": 148827508022845440, "id_str": "148827508022845440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698621289/Photo_152_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698621289/Photo_152_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Apparently wearing a Angry Birds hat to work makes u the clown @ work. #callcenterlife", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:10 +0000", "from_user": "MikaylaHess17", "from_user_id": 289129553, "from_user_id_str": "289129553", "from_user_name": "Mikayla Hess", "geo": null, "id": 148827478125854720, "id_str": "148827478125854720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697297652/310701_1646950391665_1774088532_852937_1400861549_a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697297652/310701_1646950391665_1774088532_852937_1400861549_a_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "4 humming birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:03 +0000", "from_user": "USFWSRefuges", "from_user_id": 39633235, "from_user_id_str": "39633235", "from_user_name": "USFWS Refuge System", "geo": null, "id": 148827448371458050, "id_str": "148827448371458049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1039511846/twitterlogorefuges_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1039511846/twitterlogorefuges_normal.gif", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "CO\\u2014Thurs 12/22, Winter Raptors, 10am-noon, Rocky Mtn Arsenal Refuge. Learn to ID birds of prey http://t.co/dgQdOiE3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:02 +0000", "from_user": "BooshieBella", "from_user_id": 176173723, "from_user_id_str": "176173723", "from_user_name": "Dat_Yeyo_{B}ella", "geo": null, "id": 148827445024407550, "id_str": "148827445024407552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701500824/13242690343260_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701500824/13242690343260_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "I really do love fellow bad chicks, fly amazons, a Tru #6inchwalker, n stylish chica's,birds of a feather look damn good flocking together", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:52 +0000", "from_user": "DollaANDaDream9", "from_user_id": 117520550, "from_user_id_str": "117520550", "from_user_name": "Machine Gun Kelly", "geo": null, "id": 148827401504309250, "id_str": "148827401504309249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700707032/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700707032/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @keepitstr8up: Birds got em itchin every where call it chickenpox", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:44 +0000", "from_user": "Indiraqsu", "from_user_id": 426263021, "from_user_id_str": "426263021", "from_user_name": "Indira Muldrow", "geo": null, "id": 148827368197333000, "id_str": "148827368197332992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668799239/LLCM-1135_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668799239/LLCM-1135_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@chamitameza Have to play Pigeon Palooza (the next angry birds)- it is launched in Android Mktplce - will be in ITunes soon.", "to_user": "chamitameza", "to_user_id": 304777803, "to_user_id_str": "304777803", "to_user_name": "Chamita Meza \\u2122\\u00AE", "in_reply_to_status_id": 148809567051055100, "in_reply_to_status_id_str": "148809567051055104"}, +{"created_at": "Mon, 19 Dec 2011 18:09:43 +0000", "from_user": "JulianaPerez", "from_user_id": 30944557, "from_user_id_str": "30944557", "from_user_name": "Juliana Perez", "geo": null, "id": 148827363537461250, "id_str": "148827363537461248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1190732055/155100_10150096930698179_573268178_7373532_3360268_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1190732055/155100_10150096930698179_573268178_7373532_3360268_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@ShrinkingFoodie Hey the Angry Birds one says it's over already? Or is it? Inquiring minds would like to know. :p", "to_user": "ShrinkingFoodie", "to_user_id": 16529258, "to_user_id_str": "16529258", "to_user_name": "Jessica Elizarraras", "in_reply_to_status_id": 148823974980239360, "in_reply_to_status_id_str": "148823974980239360"}, +{"created_at": "Mon, 19 Dec 2011 18:09:32 +0000", "from_user": "alucardSystem", "from_user_id": 167092310, "from_user_id_str": "167092310", "from_user_name": "HugoQJ", "geo": null, "id": 148827319727960060, "id_str": "148827319727960064", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1634101195/I8wBpwBb_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634101195/I8wBpwBb_normal", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Angry Birds y las torres gemelas http://t.co/CkDYhyMU v\\u00EDa @cuantocabron jajajaja rifado!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:23 +0000", "from_user": "keepitstr8up", "from_user_id": 34814970, "from_user_id_str": "34814970", "from_user_name": "Knowledge \\u00AE", "geo": null, "id": 148827280297312260, "id_str": "148827280297312256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1670129144/northface_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670129144/northface_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Birds got em itchin every where call it chickenpox", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:14 +0000", "from_user": "geekprojectnews", "from_user_id": 38352453, "from_user_id_str": "38352453", "from_user_name": "Geek Project News", "geo": null, "id": 148827241130889200, "id_str": "148827241130889216", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Parque tem\\u00E1tico de Angry Birds. http://t.co/yOIuU27H Via @nerddisse", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:13 +0000", "from_user": "geek_project", "from_user_id": 228146262, "from_user_id_str": "228146262", "from_user_name": "Geek Project", "geo": null, "id": 148827240409477120, "id_str": "148827240409477122", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1202927391/favicon-geek-project_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1202927391/favicon-geek-project_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Parque tem\\u00E1tico de Angry Birds. http://t.co/XBaRE3jR Via @nerddisse", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:13 +0000", "from_user": "Rebaoe18", "from_user_id": 387914878, "from_user_id_str": "387914878", "from_user_name": "Reba Odore", "geo": null, "id": 148827239302180860, "id_str": "148827239302180865", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1580577001/PPK-4398_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580577001/PPK-4398_normal.jpg", "source": "<a href="http://bestsaleslw0.co.cc" rel="nofollow">bestsaleslw0.co.cc</a>", "text": "http://t.co/UanwvokA Angry Birds Wire-O Journal Red Angry Birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:13 +0000", "from_user": "Ambitious_ATH", "from_user_id": 415845116, "from_user_id_str": "415845116", "from_user_name": "Aneesha Howell", "geo": null, "id": 148827238559776770, "id_str": "148827238559776769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662847931/oooo_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662847931/oooo_normal", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "all the bullshxt is for the birds , he was pigeon toe'd ! #HowToHate", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:07 +0000", "from_user": "Matinez3636rumb", "from_user_id": 433015589, "from_user_id_str": "433015589", "from_user_name": "Maura Matinez", "geo": null, "id": 148827215818264580, "id_str": "148827215818264576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1684188187/9927166251268859_girl_on_orange_sofa_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684188187/9927166251268859_girl_on_orange_sofa_3_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Birds, Nests & Eggs (Take Along Guides) Reviews: Birds, Nests & Eggs (Take Along Guides)\\n\\nISBN13: 9781559716246C... http://t.co/BppxH37V", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:06 +0000", "from_user": "Jannausld", "from_user_id": 426261581, "from_user_id_str": "426261581", "from_user_name": "Janna Cadorette", "geo": null, "id": 148827210902548480, "id_str": "148827210902548480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668795630/LLCM-2162_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668795630/LLCM-2162_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@bapeonion Go go get Pigeon Palooza (the next angry birds)- it is avail in Android Mktplce - should be in ITunes soon.", "to_user": "bapeonion", "to_user_id": 14261797, "to_user_id_str": "14261797", "to_user_name": "heathcliff marmaduke", "in_reply_to_status_id": 148826210632343550, "in_reply_to_status_id_str": "148826210632343554"}, +{"created_at": "Mon, 19 Dec 2011 18:08:33 +0000", "from_user": "SAYyourmaJESty", "from_user_id": 197867319, "from_user_id_str": "197867319", "from_user_name": "Girl, Interrupted ", "geo": null, "id": 148827072641511420, "id_str": "148827072641511424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692417580/331476881_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692417580/331476881_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Ill be glad when christmas is Over. This ish is over rated and for the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:05:40 +0000", "from_user": "timbit777", "from_user_id": 49415744, "from_user_id_str": "49415744", "from_user_name": "Freedom First", "geo": null, "id": 148826346355830800, "id_str": "148826346355830784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1288995082/arizona-flag1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1288995082/arizona-flag1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@DailyRushbo Birds of a feather!!", "to_user": "DailyRushbo", "to_user_id": 168705627, "to_user_id_str": "168705627", "to_user_name": "Daily Rushbo", "in_reply_to_status_id": 148823373185687550, "in_reply_to_status_id_str": "148823373185687553"}, +{"created_at": "Mon, 19 Dec 2011 18:05:27 +0000", "from_user": "_ImSunnyAF", "from_user_id": 173588622, "from_user_id_str": "173588622", "from_user_name": "Navier Nicole \\u2764", "geo": null, "id": 148826291125239800, "id_str": "148826291125239808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1661003557/_ImSunnyAF_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661003557/_ImSunnyAF_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @____AMM: Temple Run , Angry Birds , and Twitter take up my whole life", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:05:22 +0000", "from_user": "L_i_am_Somers", "from_user_id": 320933440, "from_user_id_str": "320933440", "from_user_name": "LiamSomers", "geo": null, "id": 148826268123676670, "id_str": "148826268123676672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702467108/black___white_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702467108/black___white_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@BLowe_x higher than the birds, #richardbranson - quote from @Dappy_Official", "to_user": "BLowe_x", "to_user_id": 40695285, "to_user_id_str": "40695285", "to_user_name": "BethanyEmilyLowe", "in_reply_to_status_id": 148826058509131780, "in_reply_to_status_id_str": "148826058509131777"} + +, +{"created_at": "Mon, 19 Dec 2011 18:59:33 +0000", "from_user": "iruvsoshi", "from_user_id": 83800588, "from_user_id_str": "83800588", "from_user_name": "\\uFF4A \\uFF41 \\uFF52 \\uFF45 \\uFF44 \\u3002", "geo": null, "id": 148839904053428220, "id_str": "148839904053428224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694431266/crop2-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694431266/crop2-1_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@Saradolimz OMG I BOUGHT TOO ITS DAMN FUN!!! I LOVE THE FIRST ONE LOL ZOO TYCOON WITH DINOSAURS AND STUFF", "to_user": "Saradolimz", "to_user_id": 53036970, "to_user_id_str": "53036970", "to_user_name": "Sarah \\u30DB\\u30DD ", "in_reply_to_status_id": 148839679200985100, "in_reply_to_status_id_str": "148839679200985088"}, +{"created_at": "Mon, 19 Dec 2011 18:58:54 +0000", "from_user": "booberry_xXx", "from_user_id": 436046008, "from_user_id_str": "436046008", "from_user_name": "Lauren :)", "geo": null, "id": 148839742065213440, "id_str": "148839742065213440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691429197/MEEE_and_maceyy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691429197/MEEE_and_maceyy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#ThingsWeAllHate - When websites ask, \"Are you human?\" Well, no, we're obviously dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:40 +0000", "from_user": "mafergz96", "from_user_id": 64559285, "from_user_id_str": "64559285", "from_user_name": "maria fernanda garza", "geo": null, "id": 148839683558883330, "id_str": "148839683558883328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695618533/388894_337401609619391_100000486631578_1396084_464626709_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695618533/388894_337401609619391_100000486631578_1396084_464626709_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @bieberadris: Kiss me if im wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:37 +0000", "from_user": "OutlawPurdyGirl", "from_user_id": 268736462, "from_user_id_str": "268736462", "from_user_name": "Sexual Vampire ", "geo": null, "id": 148839670820782080, "id_str": "148839670820782080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681715762/Ashley_Purdy_High_Danger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681715762/Ashley_Purdy_High_Danger_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@JohnnyRickfield Nobody belongs on this earth. Dinosaurs belong here. :) <3 Feel better... don't know what's up but Dino's make it all good!", "to_user": "JohnnyRickfield", "to_user_id": 284299872, "to_user_id_str": "284299872", "to_user_name": "Abby-JohnnyRickfield", "in_reply_to_status_id": 148838921067966460, "in_reply_to_status_id_str": "148838921067966464"}, +{"created_at": "Mon, 19 Dec 2011 18:56:19 +0000", "from_user": "ssasquatch", "from_user_id": 35803698, "from_user_id_str": "35803698", "from_user_name": "Sophia Danger", "geo": null, "id": 148839092711456770, "id_str": "148839092711456768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1637172837/6999278_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637172837/6999278_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Humans are the next era's dinosaurs. #thinkaboutit", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:17 +0000", "from_user": "luvapman", "from_user_id": 135980533, "from_user_id_str": "135980533", "from_user_name": "Anna Cohen", "geo": null, "id": 148839083697897470, "id_str": "148839083697897472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687412732/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687412732/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Eleven-\\n\\nmy past stopped with dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:09 +0000", "from_user": "iTrine", "from_user_id": 28558909, "from_user_id_str": "28558909", "from_user_name": "Johnny Depp's wife", "geo": null, "id": 148839051431133200, "id_str": "148839051431133184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696323933/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696323933/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Dinosaurs go rawr, everybody knows that~", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:12 +0000", "from_user": "patriciaab98", "from_user_id": 344547924, "from_user_id_str": "344547924", "from_user_name": "p\\u00AAtriciaa\\u10E6", "geo": null, "id": 148838812758442000, "id_str": "148838812758441985", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686355463/248399_194700367247172_110972012286675_598227_3732272_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686355463/248399_194700367247172_110972012286675_598227_3732272_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @bieberadris: Kiss me if im wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:00 +0000", "from_user": "Ariath", "from_user_id": 50713477, "from_user_id_str": "50713477", "from_user_name": "Elizabeth Guerra", "geo": null, "id": 148838762384867330, "id_str": "148838762384867329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697979653/2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697979653/2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @photonstorm: \"Daddy, a fireball from space hit earth and killed all the dinosaurs. Do you remember that?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:50 +0000", "from_user": "photonstorm", "from_user_id": 21861033, "from_user_id_str": "21861033", "from_user_name": "Richard Davey", "geo": null, "id": 148838719686852600, "id_str": "148838719686852609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1276871116/twitter-icon-transparent_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1276871116/twitter-icon-transparent_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\"Daddy, a fireball from space hit earth and killed all the dinosaurs. Do you remember that?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:40 +0000", "from_user": "_MissBex_", "from_user_id": 260723242, "from_user_id_str": "260723242", "from_user_name": "bex. ", "geo": null, "id": 148838671855001600, "id_str": "148838671855001600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1679411576/IMG_2051_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679411576/IMG_2051_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Turkey dinosaurs for dinner, yummy! http://t.co/agusGkbF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:49 +0000", "from_user": "bieberadris", "from_user_id": 46254307, "from_user_id_str": "46254307", "from_user_name": "Adriana Maria\\u2665", "geo": null, "id": 148838461565186050, "id_str": "148838461565186048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1659444915/Copia_20de_20adriana_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659444915/Copia_20de_20adriana_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Kiss me if im wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:30 +0000", "from_user": "Mandyjfs", "from_user_id": 415408974, "from_user_id_str": "415408974", "from_user_name": "Glory Loach", "geo": null, "id": 148838381890179070, "id_str": "148838381890179073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692697004/d2fmjceb5d_132173893-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692697004/d2fmjceb5d_132173893-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Dinosaurs of Australia and New Zealand: And Other Animals of the Mesozoic: http://t.co/UarE2I8V", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:29 +0000", "from_user": "imfamousBree", "from_user_id": 158451935, "from_user_id_str": "158451935", "from_user_name": "Breanna Nashay \\u2661", "geo": null, "id": 148838380803866620, "id_str": "148838380803866624", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702230580/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702230580/profile_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "i dont hug dinosaurs :D LMFAOOOOO !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:25 +0000", "from_user": "_LaFawn_Duh", "from_user_id": 148229493, "from_user_id_str": "148229493", "from_user_name": "jade hinds", "geo": null, "id": 148838363925970940, "id_str": "148838363925970944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694182473/z8rvbRCcy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694182473/z8rvbRCcy_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Hahah wtf? I had a dream that I wore @Dillongrap baseball jersey to the fair, and got chased by the grinch, and dinosaurs? #imonsomething", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:16 +0000", "from_user": "NoahQ", "from_user_id": 40148586, "from_user_id_str": "40148586", "from_user_name": "Noah Quisenberry", "geo": null, "id": 148838323148959740, "id_str": "148838323148959744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1632523251/noahk_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632523251/noahk_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Grr kids these days don't know how lucky they have it. In the 90's I had to deal with purple flaming dinosaurs & equally flaming boy bands.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:00 +0000", "from_user": "shelby_lynn94", "from_user_id": 378290125, "from_user_id_str": "378290125", "from_user_name": "shelby evans", "geo": null, "id": 148838259382947840, "id_str": "148838259382947840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1555360783/215280_217117351638617_100000210606048_1051624_5864701_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555360783/215280_217117351638617_100000210606048_1051624_5864701_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @cadyeimer: Kiss me if im wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:08 +0000", "from_user": "haileighT", "from_user_id": 293289249, "from_user_id_str": "293289249", "from_user_name": "Haileigh Tomlinson", "geo": null, "id": 148838040104730620, "id_str": "148838040104730624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1672849186/kk_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672849186/kk_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Kiss me if I'm wrong, but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:52 +0000", "from_user": "Everyday_Info", "from_user_id": 283357364, "from_user_id_str": "283357364", "from_user_name": "Everyday Info", "geo": null, "id": 148837973419503600, "id_str": "148837973419503616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1314315267/info_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1314315267/info_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "Short guide to dinosaurs - http://t.co/ddSyLPOc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:36 +0000", "from_user": "_Thesius", "from_user_id": 117273171, "from_user_id_str": "117273171", "from_user_name": "Theseus*", "geo": null, "id": 148837904888766460, "id_str": "148837904888766465", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702535098/Snapshot_20111219_2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702535098/Snapshot_20111219_2_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "I wish some of you all will get eaten by the dinosaurs brought back to life because of akmun ra's special tablet in the museum.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:33 +0000", "from_user": "marklane74", "from_user_id": 213022898, "from_user_id_str": "213022898", "from_user_name": "Mark Lane", "geo": null, "id": 148837642585374720, "id_str": "148837642585374721", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675681194/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675681194/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@AndrewB2 Chiek Tiote had a barbecue. Then the dinosaurs were extinct\\n#tiotefacts", "to_user": "AndrewB2", "to_user_id": 20387791, "to_user_id_str": "20387791", "to_user_name": "Andrew Brownlee", "in_reply_to_status_id": 148832208096997380, "in_reply_to_status_id_str": "148832208096997377"}, +{"created_at": "Mon, 19 Dec 2011 18:50:22 +0000", "from_user": "ehkayfourseven", "from_user_id": 269913052, "from_user_id_str": "269913052", "from_user_name": "AK Fourtyseven", "geo": null, "id": 148837593130352640, "id_str": "148837593130352640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1529681232/207420_10150561470265304_628175303_18234995_2449365_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1529681232/207420_10150561470265304_628175303_18234995_2449365_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Kids coughing like they dinosaurs ot some shit cover your mouths. Bitch!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:27 +0000", "from_user": "imageswebsites", "from_user_id": 27708398, "from_user_id_str": "27708398", "from_user_name": "Images Websites", "geo": null, "id": 148837365727764480, "id_str": "148837365727764480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/128611599/Honey-Glazed-Donut_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/128611599/Honey-Glazed-Donut_normal.jpg", "source": "<a href="http://www.ajaymatharu.com/" rel="nofollow">Tweet Old Post</a>", "text": "Dinosaurs Unleashed http://t.co/vYswiZfl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:46 +0000", "from_user": "TRAJKOVICNEWS", "from_user_id": 363094283, "from_user_id_str": "363094283", "from_user_name": "TRAJKOVIC NEWS", "geo": null, "id": 148837191022411780, "id_str": "148837191022411776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1515881451/s1_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515881451/s1_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "First-ever evidence of giant plant-eating dinosaurs found in Antarctica - from a time when it would have been gr... http://t.co/LNgwkQNu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:46 +0000", "from_user": "IvanTrajkovicVr", "from_user_id": 335461141, "from_user_id_str": "335461141", "from_user_name": "Ivan Trajkovic", "geo": null, "id": 148837190766559230, "id_str": "148837190766559233", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1524849110/Avatar_normal_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1524849110/Avatar_normal_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "First-ever evidence of giant plant-eating dinosaurs found in Antarctica - from a time when it would have been gr... http://t.co/9S1InrKa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:45 +0000", "from_user": "DTNUK", "from_user_id": 219213094, "from_user_id_str": "219213094", "from_user_name": "DTN UK", "geo": null, "id": 148837189055287300, "id_str": "148837189055287298", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696304922/DTN_UK_DEC_16_2011_CORRECTED_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696304922/DTN_UK_DEC_16_2011_CORRECTED_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "DTN UK: First-ever evidence of giant plant-eating dinosaurs found in Antarctica - from a time when it would have... http://t.co/DfDoLmcz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:45 +0000", "from_user": "guideofscience", "from_user_id": 217583792, "from_user_id_str": "217583792", "from_user_name": "snape", "geo": null, "id": 148837186899410940, "id_str": "148837186899410944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1171081577/100px-PrirodneNauke.svg_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1171081577/100px-PrirodneNauke.svg_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "First-ever evidence of giant plant-eating dinosaurs found in Antarctica - from a time when it would have been gr... http://t.co/ieDddTH7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:45 +0000", "from_user": "shoeinabox", "from_user_id": 74186069, "from_user_id_str": "74186069", "from_user_name": "Mia Taylor", "geo": null, "id": 148837185863430140, "id_str": "148837185863430144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/427883340/1237973547_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/427883340/1237973547_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "First-ever evidence of giant plant-eating dinosaurs found in Antarctica - from a time when it would have been gr... http://t.co/O1Gs6UlK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:30 +0000", "from_user": "anjabelieber", "from_user_id": 258013638, "from_user_id_str": "258013638", "from_user_name": "anja", "geo": null, "id": 148837125419319300, "id_str": "148837125419319296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1465464656/4UpAvatar_reasonably_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1465464656/4UpAvatar_reasonably_small_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/nfVQVleK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:10 +0000", "from_user": "BlasianSpiffy", "from_user_id": 289174712, "from_user_id_str": "289174712", "from_user_name": "Oh Lawd !", "geo": null, "id": 148837042137210880, "id_str": "148837042137210880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1649779735/avatar_normal.JPEG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649779735/avatar_normal.JPEG", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "RT @TechieRuss: How the hell do we have mobile phones that can make calls, play movies, games; but our cars run by burning decomposed dinosaurs?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:33 +0000", "from_user": "cfl_baws", "from_user_id": 253664641, "from_user_id_str": "253664641", "from_user_name": "jordan hamilton", "geo": null, "id": 148836632328536060, "id_str": "148836632328536065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688221881/SHbG6f4E_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688221881/SHbG6f4E_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Aizenn95 i though dinosaurs were extinct!? Your fuking HUUUUGGGGGEEEE!", "to_user": "Aizenn95", "to_user_id": 424845089, "to_user_id_str": "424845089", "to_user_name": "Abdelrahman Fawzi"}, +{"created_at": "Mon, 19 Dec 2011 18:46:19 +0000", "from_user": "ChrisDolemeth", "from_user_id": 167225609, "from_user_id_str": "167225609", "from_user_name": "Brandon Noel", "geo": null, "id": 148836576590430200, "id_str": "148836576590430208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689789126/4Pcr1Ncq_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689789126/4Pcr1Ncq_normal", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "RT @TechieRuss: How the hell do we have mobile phones that can make calls, play movies, games; but our cars run by burning decomposed dinosaurs?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:34 +0000", "from_user": "awriterswindow", "from_user_id": 14458795, "from_user_id_str": "14458795", "from_user_name": "Ashley Nicole", "geo": null, "id": 148836386475221000, "id_str": "148836386475220993", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/133301056/232251619-M_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/133301056/232251619-M_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @mattf917: #TebowBookTitles Dinosaurs, a history of Mythology", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:47 +0000", "from_user": "SummerMuir", "from_user_id": 220628119, "from_user_id_str": "220628119", "from_user_name": "Summer Muir", "geo": null, "id": 148836187568750600, "id_str": "148836187568750592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1612927575/Image127_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612927575/Image127_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @meganrobles: Yes I'm 15 and I'm playing with toy dinosaurs with a 5 year old http://t.co/bTT8EJB9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:16 +0000", "from_user": "higoorsilva_", "from_user_id": 178904416, "from_user_id_str": "178904416", "from_user_name": ". higoor silvaa;*", "geo": null, "id": 148836060238053380, "id_str": "148836060238053377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699633255/rrr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699633255/rrr_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/H7JtIcre", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:06 +0000", "from_user": "vivalaphoebz", "from_user_id": 414188329, "from_user_id_str": "414188329", "from_user_name": "Phoebe Spooner", "geo": null, "id": 148836017976246270, "id_str": "148836017976246273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1643150413/381001_2205761111555_1473232631_32089499_1984951_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643150413/381001_2205761111555_1473232631_32089499_1984951_n_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Hollis Allen on evolution: Adam & Eve must have birthed baby dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:45 +0000", "from_user": "mattf917", "from_user_id": 385666046, "from_user_id_str": "385666046", "from_user_name": "The 420 Kid", "geo": null, "id": 148835929476448260, "id_str": "148835929476448256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1669559411/IMG01053-20111109-1509_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669559411/IMG01053-20111109-1509_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "#TebowBookTitles Dinosaurs, a history of Mythology", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:43 +0000", "from_user": "skyymemoiRS___", "from_user_id": 282687836, "from_user_id_str": "282687836", "from_user_name": "\\u043Ciss \\u043C\\u03B1r\\u03B3 ", "geo": null, "id": 148835922702647300, "id_str": "148835922702647296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689863191/PicsIn1323466794134-1-3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689863191/PicsIn1323466794134-1-3_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @xo_Nicoleeee_xo: RT @skyymemoiRS___: @xo_Nicoleeee_xo lmaoo ikr! extinct like the dinosaurs smhhh // haha could not agree more!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:33 +0000", "from_user": "vland", "from_user_id": 36703, "from_user_id_str": "36703", "from_user_name": "vland", "geo": null, "id": 148835879354511360, "id_str": "148835879354511360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/763990221/P1010411head_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/763990221/P1010411head_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/deu2UFtJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:46 +0000", "from_user": "BobbieMoorhouse", "from_user_id": 224589225, "from_user_id_str": "224589225", "from_user_name": "Bobbie Moorhouse", "geo": null, "id": 148835682431934460, "id_str": "148835682431934464", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1679750512/385146_2523668424232_1629001181_2336935_1510094884_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679750512/385146_2523668424232_1629001181_2336935_1510094884_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@hollierowe spirit??? Dinosaurs???", "to_user": "hollierowe", "to_user_id": 90674182, "to_user_id_str": "90674182", "to_user_name": "h o l l i e"}, +{"created_at": "Mon, 19 Dec 2011 18:42:35 +0000", "from_user": "wewill_laugh", "from_user_id": 29544142, "from_user_id_str": "29544142", "from_user_name": "Becky Peters", "geo": null, "id": 148835637540290560, "id_str": "148835637540290561", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1683906454/bwtwitpic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683906454/bwtwitpic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "watching jurassic park 2, and it's making me really sad :( i no like when they's hunting and catching the dinosaurs! poor bbs. :(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:33 +0000", "from_user": "Lavonneuba", "from_user_id": 440203340, "from_user_id_str": "440203340", "from_user_name": "Lavonne Gunder", "geo": null, "id": 148835629583704060, "id_str": "148835629583704064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700553944/large_Picture_004_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700553944/large_Picture_004_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Standard Deviants: Dinosaurs [VHS]: http://t.co/tdcuNtNn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:21 +0000", "from_user": "MomoD_19", "from_user_id": 50447571, "from_user_id_str": "50447571", "from_user_name": "Morgannnn", "geo": null, "id": 148835575863050240, "id_str": "148835575863050240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701127601/Photo_00001__9__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701127601/Photo_00001__9__normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "Dinosaurs chicken nuggets , French fries , & iced tea .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:08 +0000", "from_user": "didUknow_ID", "from_user_id": 413919101, "from_user_id_str": "413919101", "from_user_name": "Cakrawala Dunia", "geo": null, "id": 148835522998042620, "id_str": "148835522998042625", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682668142/Did_You_Know_Logo._normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682668142/Did_You_Know_Logo._normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#didUknow First-ever evidence of giant plant-eating dinosaurs found in Antarctica - from a time when... http://t.co/KQ0c8YkJ (DailyMail)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:07 +0000", "from_user": "GiantPandaDub", "from_user_id": 26154358, "from_user_id_str": "26154358", "from_user_name": "Giant Panda G.D.S.", "geo": null, "id": 148835519386755070, "id_str": "148835519386755073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1119150572/GPGDS-LiveUp2-Art_Front_200_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1119150572/GPGDS-LiveUp2-Art_Front_200_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @real_mike_hacku: I thought the best band name of all time was Giant Panda Guerilla Dub Squad until I found Totally Enormous Extinct Dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:50 +0000", "from_user": "Blankchan_", "from_user_id": 321023054, "from_user_id_str": "321023054", "from_user_name": "HiiEN", "geo": null, "id": 148835448666595330, "id_str": "148835448666595328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1670060876/k9ya_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670060876/k9ya_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @OkuuTheEngineer: @tenfootfangs @blankchan_ Listen to this guy. He can't live in the past anymore. Watching dinosaurs evolve was bad enough.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:48 +0000", "from_user": "meganrobles", "from_user_id": 144204100, "from_user_id_str": "144204100", "from_user_name": "2888CDD4", "geo": null, "id": 148835437748817920, "id_str": "148835437748817920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1666253685/10xyn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666253685/10xyn_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Yes I'm 15 and I'm playing with toy dinosaurs with a 5 year old http://t.co/bTT8EJB9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:37 +0000", "from_user": "Lakiaetl", "from_user_id": 431680304, "from_user_id_str": "431680304", "from_user_name": "Lakia Brickel", "geo": null, "id": 148835393482133500, "id_str": "148835393482133504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680985077/4mjksvvq5c_132561633-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680985077/4mjksvvq5c_132561633-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Discovering Dinosaurs in the Old West: The Field Journals of Arthur Lakes: Dominated by two talented and competi... http://t.co/769HV7SJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:22 +0000", "from_user": "xLydialovesJBx", "from_user_id": 105826736, "from_user_id_str": "105826736", "from_user_name": "LydiaMarie\\u2600", "geo": null, "id": 148835331414827000, "id_str": "148835331414827008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1637046477/xLydialovesJBx_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637046477/xLydialovesJBx_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@justinbieber kiss me if im wrong, dinosaurs still exsist right? ;) xx", "to_user": "justinbieber", "to_user_id": 27260086, "to_user_id_str": "27260086", "to_user_name": "Justin Bieber"}, +{"created_at": "Mon, 19 Dec 2011 18:41:16 +0000", "from_user": "OkuuTheEngineer", "from_user_id": 150757646, "from_user_id_str": "150757646", "from_user_name": "Okuu the Engineer", "geo": null, "id": 148835303522709500, "id_str": "148835303522709504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688414844/Licksuho_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688414844/Licksuho_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@tenfootfangs @blankchan_ Listen to this guy. He can't live in the past anymore. Watching dinosaurs evolve was bad enough.", "to_user": "tenfootfangs", "to_user_id": 22337789, "to_user_id_str": "22337789", "to_user_name": "\\u30B1\\u30FC\\u30CD", "in_reply_to_status_id": 148834833592881150, "in_reply_to_status_id_str": "148834833592881152"}, +{"created_at": "Mon, 19 Dec 2011 18:40:52 +0000", "from_user": "FUCKCRUZ", "from_user_id": 137079659, "from_user_id_str": "137079659", "from_user_name": "Maybach Landaulet", "geo": null, "id": 148835205472460800, "id_str": "148835205472460800", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682590079/Photo_on_11-17-11_at_11.02_AM__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682590079/Photo_on_11-17-11_at_11.02_AM__2_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:44 +0000", "from_user": "amandajean16760", "from_user_id": 252747036, "from_user_id_str": "252747036", "from_user_name": "Amanda Rust", "geo": null, "id": 148835172207431680, "id_str": "148835172207431680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1285519374/heart3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1285519374/heart3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:16 +0000", "from_user": "ChabotSpace", "from_user_id": 19928678, "from_user_id_str": "19928678", "from_user_name": "ChabotSpace (CSSC)", "geo": null, "id": 148835052346806270, "id_str": "148835052346806272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/747238644/Domes_at_Night_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/747238644/Domes_at_Night_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Science for Preschoolers @ChabotSpace Tue. 12/20 10a OR 12noon. What happened 65 mil year ago to the Dinosaurs? \\nhttp://t.co/w904L62R", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:07 +0000", "from_user": "RAAEEEEE", "from_user_id": 22844374, "from_user_id_str": "22844374", "from_user_name": "Rachel Dean", "geo": null, "id": 148835013151047680, "id_str": "148835013151047680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1670512028/lemon_head_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670512028/lemon_head_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I had turkey dinosaurs for dinner, you jealous?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:00 +0000", "from_user": "paulinewong", "from_user_id": 30703659, "from_user_id_str": "30703659", "from_user_name": "pauline wong", "geo": null, "id": 148834986185854980, "id_str": "148834986185854977", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1231500200/Copy_of_IMG_4525_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1231500200/Copy_of_IMG_4525_normal.JPG", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "I just noticed that b.j. and his sister are dinosaurs like barney.. I always thought they were something else. Hahaah", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:47 +0000", "from_user": "ZoeeAnn_X", "from_user_id": 103041461, "from_user_id_str": "103041461", "from_user_name": "Zoe Fitzgerald", "geo": null, "id": 148834931513098240, "id_str": "148834931513098240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702376356/DSC01352_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702376356/DSC01352_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "I like dinosaurs. I like Olly Murs. I like Jedward. I like chocolate. <- Just some of the things I like :3 completely random mood!:L", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:15 +0000", "from_user": "RC____", "from_user_id": 138735582, "from_user_id_str": "138735582", "from_user_name": "Raheen Chauhan\\u2122 \\u2714", "geo": null, "id": 148834547050618880, "id_str": "148834547050618880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668271071/HHHHH_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668271071/HHHHH_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @M4ria_khan: Awwiii :P RT @RC____ Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:12 +0000", "from_user": "Dominqueisj", "from_user_id": 440175013, "from_user_id_str": "440175013", "from_user_name": "Dominque Berthiaume", "geo": null, "id": 148834532936777730, "id_str": "148834532936777728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700486643/large_IMG_2204_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700486643/large_IMG_2204_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Handy Dinosaur Answer Book (Handy Answer Books): Featuring more than 600 questions about dinosaurs\\u2014such as W... http://t.co/kInQJTpK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:51 +0000", "from_user": "skyymemoiRS___", "from_user_id": 282687836, "from_user_id_str": "282687836", "from_user_name": "\\u043Ciss \\u043C\\u03B1r\\u03B3 ", "geo": null, "id": 148834442742480900, "id_str": "148834442742480896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689863191/PicsIn1323466794134-1-3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689863191/PicsIn1323466794134-1-3_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "@xo_Nicoleeee_xo lmaoo ikr! extinct like the dinosaurs smhhh", "to_user": "xo_Nicoleeee_xo", "to_user_id": 108269862, "to_user_id_str": "108269862", "to_user_name": "Nicole \\u2665", "in_reply_to_status_id": 148833959881605120, "in_reply_to_status_id_str": "148833959881605120"}, +{"created_at": "Mon, 19 Dec 2011 18:37:26 +0000", "from_user": "colonelbrandone", "from_user_id": 6814542, "from_user_id_str": "6814542", "from_user_name": "Brandon", "geo": null, "id": 148834341416476670, "id_str": "148834341416476672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1533702936/Profile_Pictwitter3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1533702936/Profile_Pictwitter3_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @JustSomeCoffee: Just brewed a fresh cup. It answers the age old question, \"How did dinosaurs enforce laws?\" www.justsomecoffee.com", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:04 +0000", "from_user": "OutrageousAutie", "from_user_id": 109432949, "from_user_id_str": "109432949", "from_user_name": "Autie ;)) (A.Wills) ", "geo": null, "id": 148834248030289920, "id_str": "148834248030289920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1673722133/2qB8n7OV_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673722133/2qB8n7OV_normal", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/gIy8G5aV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:58 +0000", "from_user": "yougotrossed", "from_user_id": 15207487, "from_user_id_str": "15207487", "from_user_name": "Sherri Ross", "geo": null, "id": 148834223745269760, "id_str": "148834223745269760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1618293648/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618293648/image_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/ooshLLsF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:48 +0000", "from_user": "UhhhSean", "from_user_id": 284186869, "from_user_id_str": "284186869", "from_user_name": "Sean Maillet", "geo": null, "id": 148834181399592960, "id_str": "148834181399592961", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1497279084/sean_keg_cottage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1497279084/sean_keg_cottage_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "If you are scared of dinosaurs don't read this book http://t.co/9URNvM4J", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:43 +0000", "from_user": "Heartbreak_Casi", "from_user_id": 380510307, "from_user_id_str": "380510307", "from_user_name": "Missy\\u266B\\u2665", "geo": null, "id": 148834161124311040, "id_str": "148834161124311040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701740272/8JO4MPaY_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701740272/8JO4MPaY_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:28 +0000", "from_user": "M4ria_khan", "from_user_id": 248764563, "from_user_id_str": "248764563", "from_user_name": " \\u2514\\u2661\\u0328\\u0310\\u221A\\u01BA, U\\u0305\\u0332\\u0336\\u0325\\u030A ", "geo": null, "id": 148834095873527800, "id_str": "148834095873527809", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702572169/images_36__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702572169/images_36__normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Awwiii :P RT @RC____ Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:12 +0000", "from_user": "thedailywitness", "from_user_id": 380510294, "from_user_id_str": "380510294", "from_user_name": "Jonas Kane", "geo": null, "id": 148834031050559500, "id_str": "148834031050559488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1564230685/burnsy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1564230685/burnsy_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Christianity is a social engineering tool that has no place in politics. If you believe dinosaurs walked the earth 2000 yrs ago, vote GOP.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:46 +0000", "from_user": "scrib", "from_user_id": 15416531, "from_user_id_str": "15416531", "from_user_name": "scrib", "geo": null, "id": 148833918441893900, "id_str": "148833918441893888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/797310949/peek_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/797310949/peek_normal.JPG", "source": "<a href="http://www.twittergadget.com" rel="nofollow">tGadget</a>", "text": "@neiltyson Alien: How do you power your planet? Man: First, get some dinosaurs and a big-assed asteroid... #fb", "to_user": "neiltyson", "to_user_id": 19725644, "to_user_id_str": "19725644", "to_user_name": "Neil deGrasse Tyson"}, +{"created_at": "Mon, 19 Dec 2011 18:34:47 +0000", "from_user": "RC____", "from_user_id": 138735582, "from_user_id_str": "138735582", "from_user_name": "Raheen Chauhan\\u2122 \\u2714", "geo": null, "id": 148833671523217400, "id_str": "148833671523217408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668271071/HHHHH_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668271071/HHHHH_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:38 +0000", "from_user": "Islingtonboys", "from_user_id": 21296508, "from_user_id_str": "21296508", "from_user_name": "Andy Lovelee", "geo": null, "id": 148833379515760640, "id_str": "148833379515760640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1610439703/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610439703/twitter_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Camera on iOS</a>", "text": "Chicken dinosaurs 1 pound http://t.co/qGskSkDN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:36 +0000", "from_user": "YoimDoobs", "from_user_id": 135552403, "from_user_id_str": "135552403", "from_user_name": "DOOBS", "geo": null, "id": 148833373631168500, "id_str": "148833373631168512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1679486695/331072733_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679486695/331072733_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/gH8WXyTn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:58 +0000", "from_user": "guillaumevende", "from_user_id": 15132395, "from_user_id_str": "15132395", "from_user_name": "Guillaume Vend\\u00E9", "geo": null, "id": 148832965693157380, "id_str": "148832965693157377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1556693607/avatar-normal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1556693607/avatar-normal_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/soundtracking/id414323798?mt=8&uo=4" rel="nofollow">SoundTracking on iOS</a>", "text": "Nokia Lumia 800 TV ads music!!! \\u266B \"Garden (Jesse Rose Remix)\" by Totally Enormous Extinct Dinosaurs (@ Le Carr\\u00E9) http://t.co/9glWBZPJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:58 +0000", "from_user": "Rock_City_Notts", "from_user_id": 22508884, "from_user_id_str": "22508884", "from_user_name": "Rock City", "geo": null, "id": 148832965617655800, "id_str": "148832965617655810", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/85978575/Rock_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/85978575/Rock_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@matthewtdrew Doors: 7pm\\nChad Valley: 7.30 \\u2013 8pm\\nTotally Enormous Extinct Dinosaurs: 8.15 \\u2013 8.45pm\\nFriendly Fires: 9.15pm", "to_user": "matthewtdrew", "to_user_id": 35863900, "to_user_id_str": "35863900", "to_user_name": "Matthew Drew", "in_reply_to_status_id": 148828127156641800, "in_reply_to_status_id_str": "148828127156641792"}, +{"created_at": "Mon, 19 Dec 2011 18:31:39 +0000", "from_user": "Rock_City_Notts", "from_user_id": 22508884, "from_user_id_str": "22508884", "from_user_name": "Rock City", "geo": null, "id": 148832884940226560, "id_str": "148832884940226560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/85978575/Rock_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/85978575/Rock_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@laurenvdp Doors: 7pm\\nChad Valley: 7.30 \\u2013 8pm\\nTotally Enormous Extinct Dinosaurs: 8.15 \\u2013 8.45pm\\nFriendly Fires: 9.15pm", "to_user": "laurenvdp", "to_user_id": 30009409, "to_user_id_str": "30009409", "to_user_name": "Lauren Vanderplank", "in_reply_to_status_id": 148819355105366000, "in_reply_to_status_id_str": "148819355105366016"}, +{"created_at": "Mon, 19 Dec 2011 18:31:32 +0000", "from_user": "Rock_City_Notts", "from_user_id": 22508884, "from_user_id_str": "22508884", "from_user_name": "Rock City", "geo": null, "id": 148832854879633400, "id_str": "148832854879633408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/85978575/Rock_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/85978575/Rock_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@phoenixdarkness Doors: 7pm\\nChad Valley: 7.30 \\u2013 8pm\\nTotally Enormous Extinct Dinosaurs: 8.15 \\u2013 8.45pm\\nFriendly Fires: 9.15pm", "to_user": "phoenixdarkness", "to_user_id": 83599590, "to_user_id_str": "83599590", "to_user_name": "Peter Moylan", "in_reply_to_status_id": 148801461457915900, "in_reply_to_status_id_str": "148801461457915904"}, +{"created_at": "Mon, 19 Dec 2011 18:31:24 +0000", "from_user": "Rock_City_Notts", "from_user_id": 22508884, "from_user_id_str": "22508884", "from_user_name": "Rock City", "geo": null, "id": 148832820444401660, "id_str": "148832820444401664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/85978575/Rock_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/85978575/Rock_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@BenJackson09 Doors: 7pm\\nChad Valley: 7.30 \\u2013 8pm\\nTotally Enormous Extinct Dinosaurs: 8.15 \\u2013 8.45pm\\nFriendly Fires: 9.15pm", "to_user": "BenJackson09", "to_user_id": 76384151, "to_user_id_str": "76384151", "to_user_name": "Ben Jackson", "in_reply_to_status_id": 148800988671774720, "in_reply_to_status_id_str": "148800988671774720"}, +{"created_at": "Mon, 19 Dec 2011 18:31:20 +0000", "from_user": "mylenabarth_p", "from_user_id": 218174341, "from_user_id_str": "218174341", "from_user_name": "Mylena Barth Putti", "geo": null, "id": 148832804199858180, "id_str": "148832804199858176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701218028/IMG0230A_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701218028/IMG0230A_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/SdgiewBr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:12 +0000", "from_user": "Rock_City_Notts", "from_user_id": 22508884, "from_user_id_str": "22508884", "from_user_name": "Rock City", "geo": null, "id": 148832769496199170, "id_str": "148832769496199169", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/85978575/Rock_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/85978575/Rock_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Badgemanbrown Doors: 7pm\\nChad Valley: 7.30 \\u2013 8pm\\nTotally Enormous Extinct Dinosaurs: 8.15 \\u2013 8.45pm\\nFriendly Fires: 9.15pm", "to_user": "Badgemanbrown", "to_user_id": 21238902, "to_user_id_str": "21238902", "to_user_name": "Neil Smith", "in_reply_to_status_id": 148792943363366900, "in_reply_to_status_id_str": "148792943363366912"}, +{"created_at": "Mon, 19 Dec 2011 18:31:07 +0000", "from_user": "creativemoore", "from_user_id": 20880122, "from_user_id_str": "20880122", "from_user_name": "Craig Thompson", "geo": null, "id": 148832749661323260, "id_str": "148832749661323265", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1634662405/200px_CROPPED_twitter_profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634662405/200px_CROPPED_twitter_profile_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Brilliant: light graffiti dinosaurs - http://t.co/2pPErsSi #photography", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:02 +0000", "from_user": "Ball_Fiend", "from_user_id": 68569063, "from_user_id_str": "68569063", "from_user_name": "Hannah Mark", "geo": null, "id": 148832728412979200, "id_str": "148832728412979200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1678386890/_40Ball_Fiend_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678386890/_40Ball_Fiend_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Kiss me if i'm wrong but dinosaurs still exist right ?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:53 +0000", "from_user": "hydo", "from_user_id": 2111931, "from_user_id_str": "2111931", "from_user_name": "Clint Moore", "geo": null, "id": 148832689603096580, "id_str": "148832689603096576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1215453467/584c6b62ddeefc7e61789ceb786c485f_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1215453467/584c6b62ddeefc7e61789ceb786c485f_normal.png", "source": "<a href="http://twmode.sf.net/" rel="nofollow">twmode</a>", "text": "@neiltyson A species that relies completely on refined liquified dinosaurs will be the clear choice for slave labor.", "to_user": "neiltyson", "to_user_id": 19725644, "to_user_id_str": "19725644", "to_user_name": "Neil deGrasse Tyson", "in_reply_to_status_id": 148827351818575870, "in_reply_to_status_id_str": "148827351818575873"}, +{"created_at": "Mon, 19 Dec 2011 18:30:02 +0000", "from_user": "SalsaChoicer", "from_user_id": 121968669, "from_user_id_str": "121968669", "from_user_name": "Salsa Choicer", "geo": null, "id": 148832476096249860, "id_str": "148832476096249856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://google.com" rel="nofollow">SalsaChoicer</a>", "text": "did you know? dinosaurs hug squirels in the morning", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:58 +0000", "from_user": "alegrande", "from_user_id": 26910587, "from_user_id_str": "26910587", "from_user_name": "Audrey LeGrande", "geo": null, "id": 148832459629412350, "id_str": "148832459629412352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1268996455/Audrey_Pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1268996455/Audrey_Pic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@briankornell Brianosaurus Rex? (the most badass of all the dinosaurs!)", "to_user": "briankornell", "to_user_id": 14229479, "to_user_id_str": "14229479", "to_user_name": "Brian Kornell", "in_reply_to_status_id": 148826715894980600, "in_reply_to_status_id_str": "148826715894980608"}, +{"created_at": "Mon, 19 Dec 2011 18:29:51 +0000", "from_user": "TanyaDashh", "from_user_id": 120842626, "from_user_id_str": "120842626", "from_user_name": "Tanya M", "geo": null, "id": 148832429803704320, "id_str": "148832429803704320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691367830/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691367830/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:42 +0000", "from_user": "dinosaurs", "from_user_id": 14277305, "from_user_id_str": "14277305", "from_user_name": "dinosaurs", "geo": null, "id": 148832394764484600, "id_str": "148832394764484608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1585179573/dflogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585179573/dflogo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@terrafossil Oh come on. What about the refrigerator one? If you have any better jokes let me know and I'll add them. :)", "to_user": "terrafossil", "to_user_id": 22167301, "to_user_id_str": "22167301", "to_user_name": "Terra Fossil Wine", "in_reply_to_status_id": 148810366594461700, "in_reply_to_status_id_str": "148810366594461697"}, +{"created_at": "Mon, 19 Dec 2011 18:29:32 +0000", "from_user": "_EviE1", "from_user_id": 53059640, "from_user_id_str": "53059640", "from_user_name": "EviE Dawson", "geo": null, "id": 148832353781952500, "id_str": "148832353781952512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1674591980/nsh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674591980/nsh_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "dinosaurs are cool af. wish i could've had one as a pet.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:54 +0000", "from_user": "DeeFock", "from_user_id": 335672037, "from_user_id_str": "335672037", "from_user_name": "danielle poopinson", "geo": null, "id": 148832193622458370, "id_str": "148832193622458368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1554065621/ELMMOOOO_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554065621/ELMMOOOO_normal.png", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Math without @doloreszboros is like the world without dinosaurs....#pointless", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:04 +0000", "from_user": "HannaRepasky1", "from_user_id": 439274892, "from_user_id_str": "439274892", "from_user_name": "Hanna Repasky", "geo": null, "id": 148831983198421000, "id_str": "148831983198420992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698411509/gfbf_normal.jpg", "profile_image_url_https": null, "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Fantastic Dinosaurs of the Movies: http://t.co/UdirkTu1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:50 +0000", "from_user": "imrel0ad", "from_user_id": 213762816, "from_user_id_str": "213762816", "from_user_name": "Phil", "geo": null, "id": 148831673314836480, "id_str": "148831673314836480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693931657/8C01D2BC-0C40-4E19-9454-764F17B18AFD_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693931657/8C01D2BC-0C40-4E19-9454-764F17B18AFD_normal", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "RT @TechieRuss: How the hell do we have mobile phones that can make calls, play movies, games; but our cars run by burning decomposed dinosaurs?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:45 +0000", "from_user": "djvanness", "from_user_id": 35789947, "from_user_id_str": "35789947", "from_user_name": "Dave Vanness", "geo": null, "id": 148831650057437200, "id_str": "148831650057437184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1595443751/DJV_headshot_20111012_twitter2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1595443751/DJV_headshot_20111012_twitter2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Especially if they look like dinosaurs. That would be really awkward. \"@neiltyson ...embarrassed to tell them we still dig fossil fuels...\"", "to_user": "neiltyson", "to_user_id": 19725644, "to_user_id_str": "19725644", "to_user_name": "Neil deGrasse Tyson", "in_reply_to_status_id": 148827351818575870, "in_reply_to_status_id_str": "148827351818575873"}, +{"created_at": "Mon, 19 Dec 2011 18:26:14 +0000", "from_user": "THE_ONLY_MRMURO", "from_user_id": 271693327, "from_user_id_str": "271693327", "from_user_name": "No No Noah", "geo": null, "id": 148831520956751870, "id_str": "148831520956751873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701413914/lTae9IS0_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701413914/lTae9IS0_normal", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @Geo_MacDaddy: I remember when I used to eat those little vitamins made out of dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:42 +0000", "from_user": "AV_Narros94", "from_user_id": 242469207, "from_user_id_str": "242469207", "from_user_name": "Alex Villa Narros", "geo": null, "id": 148831388018290700, "id_str": "148831388018290688", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675536371/f1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675536371/f1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Esta bien la cancion Garden del grupo Totally enourmous extinct dinosaurs. Es de un anuncio de Nokia", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:42 +0000", "from_user": "eghenry", "from_user_id": 22043042, "from_user_id_str": "22043042", "from_user_name": "Ethan Henry", "geo": null, "id": 148831387301052400, "id_str": "148831387301052416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/83611185/icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/83611185/icon_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@isaach fear FORTRAN? In the same way I fear DINOSAURS I suppose. Sadly, I did briefly learn FORTRAN in my teens.", "to_user": "isaach", "to_user_id": 7852612, "to_user_id_str": "7852612", "to_user_name": "Isaac Hepworth", "in_reply_to_status_id": 148829659725963260, "in_reply_to_status_id_str": "148829659725963264"}, +{"created_at": "Mon, 19 Dec 2011 18:25:27 +0000", "from_user": "TechieRuss", "from_user_id": 105058222, "from_user_id_str": "105058222", "from_user_name": "Russ Feferman", "geo": null, "id": 148831324642344960, "id_str": "148831324642344960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1587023355/me_as_a_simpson_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587023355/me_as_a_simpson_2_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "How the hell do we have mobile phones that can make calls, play movies, games; but our cars run by burning decomposed dinosaurs?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:27 +0000", "from_user": "Eduardutz", "from_user_id": 143104771, "from_user_id_str": "143104771", "from_user_name": "Eduardo Alonzo", "geo": null, "id": 148831323279204350, "id_str": "148831323279204352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1574307720/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1574307720/image_normal.jpg", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "I'm at World's Largest Dinosaurs Exhibit at the American Museum of Natural History (Central Park West, New York) http://t.co/gnsLaiii", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:21 +0000", "from_user": "bazingainc", "from_user_id": 210708762, "from_user_id_str": "210708762", "from_user_name": "Irene", "geo": null, "id": 148831297521983500, "id_str": "148831297521983488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1564859285/BUFFY_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1564859285/BUFFY_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@CraigyCricket Lol! So right! :) I've been told by faithful that dinosaurs' bones were spread on Earth by devil and his army of atheists.", "to_user": "CraigyCricket", "to_user_id": 145596498, "to_user_id_str": "145596498", "to_user_name": "pi = 3.1415926", "in_reply_to_status_id": 148830096705339400, "in_reply_to_status_id_str": "148830096705339393"}, +{"created_at": "Mon, 19 Dec 2011 18:25:14 +0000", "from_user": "CrystalTheGun", "from_user_id": 68468336, "from_user_id_str": "68468336", "from_user_name": "Crystal Gan", "geo": null, "id": 148831271542456320, "id_str": "148831271542456322", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1679301917/rsz_1dsc08777_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679301917/rsz_1dsc08777_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", "text": "@tipsychivas sorta. Except these dinosaurs are made of diamonds.", "to_user": "tipsychivas", "to_user_id": 73337101, "to_user_id_str": "73337101", "to_user_name": "Bryan Ong", "in_reply_to_status_id": 148831045259755520, "in_reply_to_status_id_str": "148831045259755521"}, +{"created_at": "Mon, 19 Dec 2011 18:24:49 +0000", "from_user": "DMAILscitech", "from_user_id": 111557141, "from_user_id_str": "111557141", "from_user_name": "Daily Mail Sci Tech", "geo": null, "id": 148831163023237120, "id_str": "148831163023237120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/744234716/science_icon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/744234716/science_icon_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "First-ever evidence of giant plant-eating dinosaurs found in Antarctica - from a time when it would have been gr... http://t.co/vGXYkIGM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:21 +0000", "from_user": "terrbear_legit", "from_user_id": 343082978, "from_user_id_str": "343082978", "from_user_name": "Terry Ward ", "geo": null, "id": 148831048493576200, "id_str": "148831048493576193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1621487886/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621487886/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\"see see. Hot girl, Volkswagen Jetta. It a law like... Water... Or dinosaurs.\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:20 +0000", "from_user": "tipsychivas", "from_user_id": 73337101, "from_user_id_str": "73337101", "from_user_name": "Bryan Ong", "geo": null, "id": 148831045259755520, "id_str": "148831045259755521", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1032118885/polaroid_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1032118885/polaroid_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@CrystalTheGun is it like a collection of extinct dinosaurs?", "to_user": "CrystalTheGun", "to_user_id": 68468336, "to_user_id_str": "68468336", "to_user_name": "Crystal Gan", "in_reply_to_status_id": 148830833720041470, "in_reply_to_status_id_str": "148830833720041472"}, +{"created_at": "Mon, 19 Dec 2011 18:24:08 +0000", "from_user": "TheManwife", "from_user_id": 16208245, "from_user_id_str": "16208245", "from_user_name": "David Kaa", "geo": null, "id": 148830994131206140, "id_str": "148830994131206144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1672424551/Profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672424551/Profile_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I played a game of fighting ninja dinosaurs with the girl. My High School guidance counselor warned me this would happen.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:24:03 +0000", "from_user": "G33KPRON", "from_user_id": 216765228, "from_user_id_str": "216765228", "from_user_name": "G33KPRON", "geo": null, "id": 148830971221913600, "id_str": "148830971221913600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1601326371/g33kpron_icon_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601326371/g33kpron_icon_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "#dinotweet RT @TdotComics If you dig #DinosaurComics check out our review: http://t.co/TSRmORh9", "to_user": "TdotComics", "to_user_id": 75476072, "to_user_id_str": "75476072", "to_user_name": "Alice Quinn", "in_reply_to_status_id": 148830026308124670, "in_reply_to_status_id_str": "148830026308124672"}, +{"created_at": "Mon, 19 Dec 2011 18:24:00 +0000", "from_user": "RossCargill4", "from_user_id": 236071135, "from_user_id_str": "236071135", "from_user_name": "Ross Cargill", "geo": null, "id": 148830958706110460, "id_str": "148830958706110465", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687797301/11122011223_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687797301/11122011223_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "eating yer turkey dinosaurs in the living room cos yer a big boy noo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:50 +0000", "from_user": "AnnaLangridge_", "from_user_id": 269573128, "from_user_id_str": "269573128", "from_user_name": "Anna Langridge", "geo": null, "id": 148830919220920320, "id_str": "148830919220920320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1622775125/PP_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622775125/PP_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@_SarahHastings im gonna attempt to cook christmas dinner, my mum will help so no chicken dinosaurs :P up for it?", "to_user": "_SarahHastings", "to_user_id": 293704091, "to_user_id_str": "293704091", "to_user_name": "Sarah Hastings", "in_reply_to_status_id": 148826005329551360, "in_reply_to_status_id_str": "148826005329551361"}, +{"created_at": "Mon, 19 Dec 2011 18:23:03 +0000", "from_user": "Tennieujp", "from_user_id": 440184023, "from_user_id_str": "440184023", "from_user_name": "Tennie Standafer", "geo": null, "id": 148830721451114500, "id_str": "148830721451114497", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700509324/large_DSC_0961_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700509324/large_DSC_0961_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Saber Rider:Oh Boy Dinosaurs [VHS]: http://t.co/mZvobiX2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:13 +0000", "from_user": "Rubyewkn", "from_user_id": 431725672, "from_user_id_str": "431725672", "from_user_name": "Rubye Cane", "geo": null, "id": 148830258727092220, "id_str": "148830258727092224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681084353/2ooc0xa452_128359117_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681084353/2ooc0xa452_128359117_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Konami Kids Playground: Dinosaurs, Shapes & Colors: Konami Kids Playground is an innovative new series of PlaySt... http://t.co/WMXVlOoL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:55 +0000", "from_user": "marklane74", "from_user_id": 213022898, "from_user_id_str": "213022898", "from_user_name": "Mark Lane", "geo": null, "id": 148830182181048320, "id_str": "148830182181048320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675681194/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675681194/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@AndrewB2 yeah! U didn't think I'd waste my time on bernard fucking Matthews' turkey dinosaurs did u?", "to_user": "AndrewB2", "to_user_id": 20387791, "to_user_id_str": "20387791", "to_user_name": "Andrew Brownlee", "in_reply_to_status_id": 148827060142489600, "in_reply_to_status_id_str": "148827060142489601"}, +{"created_at": "Mon, 19 Dec 2011 18:20:31 +0000", "from_user": "Krimstecher", "from_user_id": 350334913, "from_user_id_str": "350334913", "from_user_name": "Krimstecher", "geo": null, "id": 148830082029457400, "id_str": "148830082029457408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1482949770/Tim7406_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1482949770/Tim7406_normal.jpg", "source": "<a href="http://soundcloud.com" rel="nofollow">SoundCloud</a>", "text": "My new sounds: Krimson Tide - Cadillacs & Dinosaurs http://t.co/vulM87JI on #SoundCloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:18 +0000", "from_user": "TdotComics", "from_user_id": 75476072, "from_user_id_str": "75476072", "from_user_name": "Alice Quinn", "geo": null, "id": 148830026308124670, "id_str": "148830026308124672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1538459551/Alice_thumbnail_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538459551/Alice_thumbnail_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "If you dig #DinosaurComics check out our review: http://t.co/yTXYkE0E + the Dinosaur Comics & @TheBeguiling holiday party...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:04 +0000", "from_user": "bewhite93", "from_user_id": 339473492, "from_user_id_str": "339473492", "from_user_name": "Brittany White", "geo": null, "id": 148829968107962370, "id_str": "148829968107962368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696640346/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696640346/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Pretended to be dinosaurs. #IWasThatKid", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:00 +0000", "from_user": "amenavore", "from_user_id": 321055170, "from_user_id_str": "321055170", "from_user_name": "Amena Imran", "geo": null, "id": 148829951204917250, "id_str": "148829951204917248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682252098/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682252098/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:17 +0000", "from_user": "HeyItsChellzxx", "from_user_id": 38907071, "from_user_id_str": "38907071", "from_user_name": "MichelleRosinaaWoods", "geo": null, "id": 148829770317185020, "id_str": "148829770317185024", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700660490/Untitled_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700660490/Untitled_normal.png", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "Dinosaurs! :) http://t.co/NQvFz5V5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:19 +0000", "from_user": "itsBieberella", "from_user_id": 253266496, "from_user_id_str": "253266496", "from_user_name": "\\u2112\\u03B9\\u03BD\\u212F \\u2112\\u2134\\u03BD\\u212F \\u212C\\u212F\\u2113\\u03B9\\u212F\\u044A\\u2665", "geo": null, "id": 148829527215308800, "id_str": "148829527215308801", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700932558/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700932558/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\"Kiss me if I'm wrong but dinosaurs still exist right? ;) \"\\n- @LittlecBeadles \\n\\nYOU'RE WRONG BABE, COME TO MOMMAAA...!!\\n\\nHahah", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:10 +0000", "from_user": "Official1DSC", "from_user_id": 384638725, "from_user_id_str": "384638725", "from_user_name": "Bridget", "geo": null, "id": 148828989622988800, "id_str": "148828989622988801", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1671918230/1dscstate.5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671918230/1dscstate.5_normal.jpg", "source": "<a href="http://www.panoramicsoft.com/mobileapps/motweets/moTweets.php" rel="nofollow">Panoramic moTweets</a>", "text": "@Harry_Styles @savan_kotecha don't worry, i'll get you some dinosaurs.", "to_user": "Harry_Styles", "to_user_id": 181561712, "to_user_id_str": "181561712", "to_user_name": "Harry Styles", "in_reply_to_status_id": 148827215927316480, "in_reply_to_status_id_str": "148827215927316480"}, +{"created_at": "Mon, 19 Dec 2011 18:15:48 +0000", "from_user": "Chasing_Tasko", "from_user_id": 386037573, "from_user_id_str": "386037573", "from_user_name": "ChasingTasko", "geo": null, "id": 148828895192416260, "id_str": "148828895192416260", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1592625973/336907_221744671218572_207930112600028_605012_1527758387_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592625973/336907_221744671218572_207930112600028_605012_1527758387_o_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/tcwrPyeA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:21 +0000", "from_user": "Mylifeofart1", "from_user_id": 315315075, "from_user_id_str": "315315075", "from_user_name": "MyLifeofArt", "geo": null, "id": 148828780834721800, "id_str": "148828780834721793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1391507497/Blueprint_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1391507497/Blueprint_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "#Photo of some #Dinosaurs Fighting Over a Stuffed #Animal\\thttp://t.co/0tTZtLsS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:30 +0000", "from_user": "Chris_Randall", "from_user_id": 15650346, "from_user_id_str": "15650346", "from_user_name": "Chris_Randall", "geo": null, "id": 148828569848647680, "id_str": "148828569848647680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1201216747/ad_bot_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1201216747/ad_bot_2_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "@neiltyson It'd be way more embarrassing if the aliens were dinosaurs.", "to_user": "neiltyson", "to_user_id": 19725644, "to_user_id_str": "19725644", "to_user_name": "Neil deGrasse Tyson", "in_reply_to_status_id": 148827351818575870, "in_reply_to_status_id_str": "148827351818575873"}, +{"created_at": "Mon, 19 Dec 2011 18:14:25 +0000", "from_user": "Musscle", "from_user_id": 39523754, "from_user_id_str": "39523754", "from_user_name": "Catherine ", "geo": null, "id": 148828547090366460, "id_str": "148828547090366465", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/210399356/thumbnail2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/210399356/thumbnail2_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@Andriana1016 I went 10 years ago next week, so I don't remember the end. The dinosaurs were freakin' awesome.", "to_user": "Andriana1016", "to_user_id": 201380394, "to_user_id_str": "201380394", "to_user_name": "Andriana", "in_reply_to_status_id": 148826260162887680, "in_reply_to_status_id_str": "148826260162887680"}, +{"created_at": "Mon, 19 Dec 2011 18:13:44 +0000", "from_user": "Kelvin_TBB", "from_user_id": 242401203, "from_user_id_str": "242401203", "from_user_name": "Kelvin Vazquetelles", "geo": null, "id": 148828374582820860, "id_str": "148828374582820864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1224673322/me_and_carl2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1224673322/me_and_carl2_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I favorited a @YouTube video from @CanPOREOTICS http://t.co/K7ouTRWb Totally Enormous Extinct Dinosaurs - Dream", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:32 +0000", "from_user": "abigailcasson", "from_user_id": 343549716, "from_user_id_str": "343549716", "from_user_name": "abigail casson", "geo": null, "id": 148828323542335500, "id_str": "148828323542335488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668174411/asdfghjkrfsed_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668174411/asdfghjkrfsed_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Savan_Kotecha @Harry_Styles I am with Savan on this.. WE WANT DINOSAURS! ;L", "to_user": "Savan_Kotecha", "to_user_id": 102872654, "to_user_id_str": "102872654", "to_user_name": "Savan Kotecha", "in_reply_to_status_id": 148802222170456060, "in_reply_to_status_id_str": "148802222170456065"}, +{"created_at": "Mon, 19 Dec 2011 18:13:13 +0000", "from_user": "Kelvin_TBB", "from_user_id": 242401203, "from_user_id_str": "242401203", "from_user_name": "Kelvin Vazquetelles", "geo": null, "id": 148828245175959550, "id_str": "148828245175959552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1224673322/me_and_carl2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1224673322/me_and_carl2_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube video from @CanPOREOTICS http://t.co/K7ouTRWb Totally Enormous Extinct Dinosaurs - Dream On", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:01 +0000", "from_user": "handahbt64", "from_user_id": 245268131, "from_user_id_str": "245268131", "from_user_name": "Don Handah", "geo": null, "id": 148827942632439800, "id_str": "148827942632439808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1230657472/etro_shoe_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1230657472/etro_shoe_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Last Dinosaurs- Honolulu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:16 +0000", "from_user": "_theLegitMisfit", "from_user_id": 247093111, "from_user_id_str": "247093111", "from_user_name": "noodleBoodle\\u2665", "geo": null, "id": 148827753465135100, "id_str": "148827753465135104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687835769/ColorTouch-1323614142400-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687835769/ColorTouch-1323614142400-1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Indian grave , where the dinosaurs grazed.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:46 +0000", "from_user": "whyyradiotimes", "from_user_id": 100002112, "from_user_id_str": "100002112", "from_user_name": "Radio Times", "geo": null, "id": 148827627933810700, "id_str": "148827627933810689", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/597045921/radiotimes-button_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/597045921/radiotimes-button_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Did you miss Paleontologist Peter Dodson @pennvet & \"Dino Don\" Lessem on #Dinosaurs? Here's MP3: http://t.co/tmd61V0O", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:45 +0000", "from_user": "usearubber", "from_user_id": 98683355, "from_user_id_str": "98683355", "from_user_name": "James Ridgley", "geo": null, "id": 148827626142830600, "id_str": "148827626142830592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697825989/avatar_normal.JPEG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697825989/avatar_normal.JPEG", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "Making baby dinosaurs RT @BiGFiNEBitCH: \\u201C@usearubber: #DOH\\u201D but where is the qrex @KushAndCondoms", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:01 +0000", "from_user": "SalsaChoicer", "from_user_id": 121968669, "from_user_id_str": "121968669", "from_user_name": "Salsa Choicer", "geo": null, "id": 148827439676665860, "id_str": "148827439676665856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://google.com" rel="nofollow">SalsaChoicer</a>", "text": "did you know? dinosaurs kisse light sabers when happy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:52 +0000", "from_user": "katiebarnes92", "from_user_id": 427157876, "from_user_id_str": "427157876", "from_user_name": "Katie Barnes", "geo": null, "id": 148827401051308030, "id_str": "148827401051308033", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1676190236/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676190236/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@storma24 yessss they are so good! smiley faces and turkey dinosaurs is one of my favourite meals! :) #mmm", "to_user": "storma24", "to_user_id": 16966022, "to_user_id_str": "16966022", "to_user_name": "Prathiv Kholia", "in_reply_to_status_id": 148826068080525300, "in_reply_to_status_id_str": "148826068080525313"}, +{"created_at": "Mon, 19 Dec 2011 18:08:37 +0000", "from_user": "mabanham", "from_user_id": 61431097, "from_user_id_str": "61431097", "from_user_name": "Matthew Banham", "geo": null, "id": 148827087229288450, "id_str": "148827087229288448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693593488/Da_crew_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693593488/Da_crew_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Strudelburg_IV omg hiiiiiiii gahasoasdoas miss u guys and jack is the one who smells of dinosaurs", "to_user": "Strudelburg_IV", "to_user_id": 263775833, "to_user_id_str": "263775833", "to_user_name": "Jack Lewis", "in_reply_to_status_id": 148826561951440900, "in_reply_to_status_id_str": "148826561951440896"}, +{"created_at": "Mon, 19 Dec 2011 18:08:30 +0000", "from_user": "AndrewB2", "from_user_id": 20387791, "from_user_id_str": "20387791", "from_user_name": "Andrew Brownlee", "geo": null, "id": 148827060142489600, "id_str": "148827060142489601", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1599417018/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599417018/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@marklane74 real dinosaurs?", "to_user": "marklane74", "to_user_id": 213022898, "to_user_id_str": "213022898", "to_user_name": "Mark Lane", "in_reply_to_status_id": 148826042650468350, "in_reply_to_status_id_str": "148826042650468352"}, +{"created_at": "Mon, 19 Dec 2011 18:07:42 +0000", "from_user": "fractalica", "from_user_id": 124586780, "from_user_id_str": "124586780", "from_user_name": "Francisca Concha", "geo": null, "id": 148826859235311600, "id_str": "148826859235311616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1626019958/avatar2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626019958/avatar2_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Kiss me if I'm wrong, but dinosaurs still exist, right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:07:20 +0000", "from_user": "NacyLovesYou", "from_user_id": 320404832, "from_user_id_str": "320404832", "from_user_name": "Nacine Hamrick", "geo": null, "id": 148826766738329600, "id_str": "148826766738329600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692142482/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692142482/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Kiss me if I'm wrong, but dinosaurs still exist right? (;", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:27 +0000", "from_user": "JuliaWM", "from_user_id": 16801632, "from_user_id_str": "16801632", "from_user_name": "JuliaWM", "geo": null, "id": 148826542636670980, "id_str": "148826542636670976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1160635094/Photo_59_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1160635094/Photo_59_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "I've just learned that the actress who played Lucille Bluth also voiced the mom on Dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:04:28 +0000", "from_user": "marklane74", "from_user_id": 213022898, "from_user_id_str": "213022898", "from_user_name": "Mark Lane", "geo": null, "id": 148826042650468350, "id_str": "148826042650468352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675681194/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675681194/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Dinosaurs, chips and beans for tea! \\n#schooldinners\\nMight have jam roly poly for pud!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:03:56 +0000", "from_user": "Scarletstand", "from_user_id": 27274545, "from_user_id_str": "27274545", "from_user_name": "Emma Burnell", "geo": null, "id": 148825907929432060, "id_str": "148825907929432064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687945406/Emma_Burnell_Headshot_300dpi_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687945406/Emma_Burnell_Headshot_300dpi_normal.jpeg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Markfergusonuk @bengoldacre @sunny_hundal @misselliemae tbh the dinosaurs weren't very dino-like. Just a search & replace for burly bloke.", "to_user": "Markfergusonuk", "to_user_id": 28079313, "to_user_id_str": "28079313", "to_user_name": "Mark Ferguson", "in_reply_to_status_id": 148819295726608400, "in_reply_to_status_id_str": "148819295726608384"}, +{"created_at": "Mon, 19 Dec 2011 18:03:42 +0000", "from_user": "CaylaPridee", "from_user_id": 73735313, "from_user_id_str": "73735313", "from_user_name": "Cayla Pride", "geo": null, "id": 148825851436347400, "id_str": "148825851436347393", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1615764412/cp_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615764412/cp_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "I'm created by my love for dinosaurs and my overwhelming intentions of becoming a distinct animal , or a disease !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:03:37 +0000", "from_user": "MilesPEdgeworth", "from_user_id": 15348894, "from_user_id_str": "15348894", "from_user_name": "Eric Dziadzio", "geo": null, "id": 148825828753547260, "id_str": "148825828753547264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1424602703/snapshot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1424602703/snapshot_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\"What if Kim Jong-Il didn't die? What if he was sent to another dimension... where people evolved... from dinosaurs...\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:03:18 +0000", "from_user": "lisellebailey", "from_user_id": 18341751, "from_user_id_str": "18341751", "from_user_name": "Liselle Bailey", "geo": null, "id": 148825749049196540, "id_str": "148825749049196544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1253241059/liselle118e_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1253241059/liselle118e_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "Friendly Fires were the best band I've seen in ages.amazing show.support from CHAD VALLEY & Totally Enormous Extinct Dinosaurs were ace 2!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:03:10 +0000", "from_user": "AskingAlexs", "from_user_id": 417079943, "from_user_id_str": "417079943", "from_user_name": "LittleRedHidingHood\\u25B2", "geo": null, "id": 148825716040015870, "id_str": "148825716040015872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1648579329/asas_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648579329/asas_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@fir3works They are allright. Dinosaurs go rawr. ;D", "to_user": "fir3works", "to_user_id": 346665351, "to_user_id_str": "346665351", "to_user_name": "gemma redpath \\uFF61\\u25D5\\u203F\\u25D5\\uFF61", "in_reply_to_status_id": 148825314171158530, "in_reply_to_status_id_str": "148825314171158528"}, +{"created_at": "Mon, 19 Dec 2011 18:03:00 +0000", "from_user": "becki_says_rawr", "from_user_id": 45601482, "from_user_id_str": "45601482", "from_user_name": "Becki", "geo": null, "id": 148825675825025020, "id_str": "148825675825025024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1621083716/P4180098_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621083716/P4180098_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ShmittenKitten: \"Kiss me if I'm wrong, but dinosaurs still exist, right?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:02:12 +0000", "from_user": "jakekennedy54", "from_user_id": 248376173, "from_user_id_str": "248376173", "from_user_name": "Jake Kennedy", "geo": null, "id": 148825472111869950, "id_str": "148825472111869952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1292546466/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1292546466/me_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @tomtheminx: @Schwarzenegger the pavement was his enemy. What killed all the dinosaurs..the ice age. #onelinerlegend", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:46 +0000", "from_user": "vociferous_girl", "from_user_id": 49612263, "from_user_id_str": "49612263", "from_user_name": "Ana Sta Sia", "geo": null, "id": 148825364376989700, "id_str": "148825364376989700", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1316458430/LHCn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1316458430/LHCn_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "This might beat, \"Nice shoes, wanna...\" for best line ever. RT @ShmittenKitten \"Kiss me if I'm wrong, but dinosaurs still exist, right?\"", "to_user": "ShmittenKitten", "to_user_id": 15927393, "to_user_id_str": "15927393", "to_user_name": "Anna Goldfarb", "in_reply_to_status_id": 148822143096987650, "in_reply_to_status_id_str": "148822143096987648"}, +{"created_at": "Mon, 19 Dec 2011 18:01:22 +0000", "from_user": "BtwoEs1NanothaE", "from_user_id": 184601961, "from_user_id_str": "184601961", "from_user_name": " Randall KaShod ", "geo": null, "id": 148825262044352500, "id_str": "148825262044352512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686388206/BtwoEs1NanothaE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686388206/BtwoEs1NanothaE_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@Peyton_CHANNING I meant ta say best thing since dinosaurs", "to_user": "Peyton_CHANNING", "to_user_id": 229546825, "to_user_id_str": "229546825", "to_user_name": "Channing ", "in_reply_to_status_id": 148824904412831740, "in_reply_to_status_id_str": "148824904412831745"}, +{"created_at": "Mon, 19 Dec 2011 18:01:19 +0000", "from_user": "DINO_FUN", "from_user_id": 393354538, "from_user_id_str": "393354538", "from_user_name": "Dinner For Dinosaurs", "geo": null, "id": 148825248857460740, "id_str": "148825248857460737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1594391469/286433_274639612561722_274091102616573_1162428_7746211_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1594391469/286433_274639612561722_274091102616573_1162428_7746211_o_normal.jpg", "source": "<a href="http://www.paywithatweet.com" rel="nofollow">Pay with a Tweet</a>", "text": "Have you heard Dinner For Dinosaurs - Lets Get it on? CHECK IT OUT! http://t.co/yh3cYNtF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:00 +0000", "from_user": "SalsaChoicer", "from_user_id": 121968669, "from_user_id_str": "121968669", "from_user_name": "Salsa Choicer", "geo": null, "id": 148824921202622460, "id_str": "148824921202622465", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://google.com" rel="nofollow">SalsaChoicer</a>", "text": "did you know? dinosaurs love lazers randomly", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:56 +0000", "from_user": "Peyton_CHANNING", "from_user_id": 229546825, "from_user_id_str": "229546825", "from_user_name": "Channing ", "geo": null, "id": 148824904412831740, "id_str": "148824904412831745", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686366728/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686366728/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "\\u2026\\u2026. what that mean? \\u201C@BtwoEs1NanothaE: Twitter the best since dinosaurs\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:46 +0000", "from_user": "Wow_its_Stevie", "from_user_id": 376767443, "from_user_id_str": "376767443", "from_user_name": "Stevie Harrison", "geo": null, "id": 148824860167127040, "id_str": "148824860167127040", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691882705/386652_10150420726292120_701102119_8958609_7667849_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691882705/386652_10150420726292120_701102119_8958609_7667849_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Turkey dinosaurs for dinner. So much swag.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:35 +0000", "from_user": "sexypartyanimal", "from_user_id": 62326409, "from_user_id_str": "62326409", "from_user_name": "kristina birkhof", "geo": null, "id": 148824813018939400, "id_str": "148824813018939392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698608358/kristina_b_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698608358/kristina_b_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/0p9Es0x1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:17 +0000", "from_user": "BtwoEs1NanothaE", "from_user_id": 184601961, "from_user_id_str": "184601961", "from_user_name": " Randall KaShod ", "geo": null, "id": 148824739916427260, "id_str": "148824739916427264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686388206/BtwoEs1NanothaE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686388206/BtwoEs1NanothaE_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Twitter the best since dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:04 +0000", "from_user": "LuieFig", "from_user_id": 320396126, "from_user_id_str": "320396126", "from_user_name": "Luis G. Figueroa", "geo": null, "id": 148824683662417920, "id_str": "148824683662417923", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1491324616/SCAN0001-1_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1491324616/SCAN0001-1_normal.JPG", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "I'm at World's Largest Dinosaurs Exhibit at the American Museum of Natural History (Central Park West, New York) http://t.co/t7Wju5nh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:58 +0000", "from_user": "carisagar", "from_user_id": 210569234, "from_user_id_str": "210569234", "from_user_name": "Cari Sagar", "geo": null, "id": 148824657968115700, "id_str": "148824657968115713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1672109255/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672109255/image_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@JordanOster your perfect pick up line? \"@ShmittenKitten: \"Kiss me if I'm wrong, but dinosaurs still exist, right?\"\"", "to_user": "JordanOster", "to_user_id": 259917701, "to_user_id_str": "259917701", "to_user_name": "Jordan Oster"}, +{"created_at": "Mon, 19 Dec 2011 17:58:24 +0000", "from_user": "WestFour", "from_user_id": 14628702, "from_user_id_str": "14628702", "from_user_name": "Jonathan Simnett", "geo": null, "id": 148824518004195330, "id_str": "148824518004195329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1052460961/Team-RC_202009_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1052460961/Team-RC_202009_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @redluker: \\u201C@PerveenAkhtar: Anyone got any ideas on what to buy 4 yr old boy for Xmas?\\u201D Lego - everyone loves Lego < Dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:52 +0000", "from_user": "arc23", "from_user_id": 16668895, "from_user_id_str": "16668895", "from_user_name": "ADAM COHOON", "geo": null, "id": 148824383786450940, "id_str": "148824383786450946", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/61602572/arc23lgo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/61602572/arc23lgo_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/IuaYg2Rk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:20 +0000", "from_user": "AlexaMarisa", "from_user_id": 26908450, "from_user_id_str": "26908450", "from_user_name": "Alexa Marisa", "geo": null, "id": 148824248507580400, "id_str": "148824248507580416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1684594027/316843_187514047999973_100002241370641_396628_819286593_n-1_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684594027/316843_187514047999973_100002241370641_396628_819286593_n-1_normal.jpeg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#IWasThatKid who would be found playing with the boys in the dirt with hot wheels and dinosaurs than with the girls playing dress up.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:15 +0000", "from_user": "emelynshaharir", "from_user_id": 25780205, "from_user_id_str": "25780205", "from_user_name": "Green Pea \\u2605", "geo": null, "id": 148824227364089860, "id_str": "148824227364089856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702482930/DSC00681_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702482930/DSC00681_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@ainjasmani Barney is a dinosaur. Dinosaurs remind me of Jjong. Jjong reminds me of SHINee. SHINee reminds me of you. AND YOU! I miss you :(", "to_user": "ainjasmani", "to_user_id": 220550344, "to_user_id_str": "220550344", "to_user_name": "Ain Jasmani \\u265B", "in_reply_to_status_id": 148822846339158000, "in_reply_to_status_id_str": "148822846339158017"}, +{"created_at": "Mon, 19 Dec 2011 17:57:01 +0000", "from_user": "NGAThA_", "from_user_id": 63410317, "from_user_id_str": "63410317", "from_user_name": "Ngata Holele ", "geo": null, "id": 148824170631933950, "id_str": "148824170631933952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1690907847/331433744_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690907847/331433744_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Lol... RT @Fifi_McCaype: :') \\u2661 RT @LAMA_WOLF: Kiss Me If I'm wrong ,But Dinosaurs still exist right :')", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:43 +0000", "from_user": "MindlessJordan", "from_user_id": 317802749, "from_user_id_str": "317802749", "from_user_name": "\\uE420\\uE420PW GANG\\uE420\\uE420", "geo": null, "id": 148824092592717820, "id_str": "148824092592717824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697605330/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697605330/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@MindlessBhavior Kiss me if I'm wrong but, dinosaurs are still alive, right??", "to_user": "MindlessBhavior", "to_user_id": 116325068, "to_user_id_str": "116325068", "to_user_name": "Mindless Behavior"}, +{"created_at": "Mon, 19 Dec 2011 17:56:21 +0000", "from_user": "ToysDiscountPri", "from_user_id": 416180527, "from_user_id_str": "416180527", "from_user_name": "ToysDiscountPrices", "geo": null, "id": 148824002729742340, "id_str": "148824002729742336", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1646543511/41dhfd6AF0L._SL500_AA300__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646543511/41dhfd6AF0L._SL500_AA300__normal.jpg", "source": "<a href="http://toysdiscountprices.com/" rel="nofollow">ToysDiscountPrices</a>", "text": "http://t.co/G4dhVaas Discount dinosaurs toys toddlers - Dinosaur Toddler Costume", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:12 +0000", "from_user": "Tynaflasaurus", "from_user_id": 354612456, "from_user_id_str": "354612456", "from_user_name": "Nafla Poff", "geo": null, "id": 148823964230234100, "id_str": "148823964230234113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1494057730/Photo_11_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1494057730/Photo_11_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ShmittenKitten: \"Kiss me if I'm wrong, but dinosaurs still exist, right?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:10 +0000", "from_user": "briannaoneill", "from_user_id": 61496881, "from_user_id_str": "61496881", "from_user_name": "Brianna O'Neill", "geo": null, "id": 148823956579819520, "id_str": "148823956579819520", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1598164219/Photo_on_2011-10-19_at_15.19__3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598164219/Photo_on_2011-10-19_at_15.19__3_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Can't escape dinosaurs ever #ahhh http://t.co/diwYnqGX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:16 +0000", "from_user": "hometoolorg", "from_user_id": 370018427, "from_user_id_str": "370018427", "from_user_name": "HomeTool Reviews", "geo": null, "id": 148823728342564860, "id_str": "148823728342564864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1534179655/Bee-256_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534179655/Bee-256_normal.png", "source": "<a href="http://hometool.org" rel="nofollow">hommetool.org</a>", "text": "RoomMates RMK1043SCS Dinosaurs Peel & Stick Wall Deca http://t.co/ERN2eldn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:54:11 +0000", "from_user": "MaggieDraksler", "from_user_id": 411914490, "from_user_id_str": "411914490", "from_user_name": "Maggie Draksler", "geo": null, "id": 148823454022516740, "id_str": "148823454022516736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668781286/imm455uF_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668781286/imm455uF_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:53:46 +0000", "from_user": "TheCuriousCase", "from_user_id": 23875046, "from_user_id_str": "23875046", "from_user_name": "Katherine Ismyname", "geo": null, "id": 148823351387893760, "id_str": "148823351387893760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1098742387/twitpiccrazy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1098742387/twitpiccrazy_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @SethMacFarlane: There\\u2019s a decent chance our next president will believe that humans once kept dinosaurs as pets.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:57 +0000", "from_user": "TormentedToys", "from_user_id": 394055931, "from_user_id_str": "394055931", "from_user_name": "Tormented Toys", "geo": null, "id": 148823144277356540, "id_str": "148823144277356544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1596258069/chickensesame_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596258069/chickensesame_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @JeepersMedia: Look at this! I'm in a Walmart RIGHT NOW! Suck on the Dinosaurs Tail sippy bottle! Win or FAIL? http://t.co/1vqKGgBV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:51 +0000", "from_user": "kara4454", "from_user_id": 84149687, "from_user_id_str": "84149687", "from_user_name": "Karolajna A.", "geo": null, "id": 148823118889238530, "id_str": "148823118889238529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1587861451/blonde-gerard-way--large-msg-122886576591_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587861451/blonde-gerard-way--large-msg-122886576591_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#np Eris Is My Homegirl - Scarlett Goes To the Dinosaurs' Theme Park", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:30 +0000", "from_user": "ClindtEastwood", "from_user_id": 53109836, "from_user_id_str": "53109836", "from_user_name": "Cillin Mc Mahon", "geo": null, "id": 148823031941304320, "id_str": "148823031941304321", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1683791797/AgLm3IDCMAEhWQZ_normal.jpg-large", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683791797/AgLm3IDCMAEhWQZ_normal.jpg-large", "source": "<a href="http://twitter.com/">web</a>", "text": "Dream dictionaried dinosaurs. Not a very good thing to dream about, apparently.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:23 +0000", "from_user": "BrynerTan", "from_user_id": 21845855, "from_user_id_str": "21845855", "from_user_name": "Bryner", "geo": null, "id": 148823002400829440, "id_str": "148823002400829440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1664339112/384422_282787628429902_250748498300482_822200_867950188_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664339112/384422_282787628429902_250748498300482_822200_867950188_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ssempit jom! crew name is dinosaurs jaw", "to_user": "ssempit", "to_user_id": 40149684, "to_user_id_str": "40149684", "to_user_name": "saiful rosmadi\\uE30E\\uE30C\\uE113\\uE016\\uE13B", "in_reply_to_status_id": 148822587189891070, "in_reply_to_status_id_str": "148822587189891072"}, +{"created_at": "Mon, 19 Dec 2011 17:52:08 +0000", "from_user": "loveyouforewer", "from_user_id": 307268148, "from_user_id_str": "307268148", "from_user_name": ".", "geo": null, "id": 148822941348528130, "id_str": "148822941348528128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662418227/bff-cute-friends-girl-love-Favim.com-207901_large_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662418227/bff-cute-friends-girl-love-Favim.com-207901_large_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Kiss me if i'm wrong, but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:52 +0000", "from_user": "DerrRachel", "from_user_id": 186414762, "from_user_id_str": "186414762", "from_user_name": "Rachel Koh", "geo": null, "id": 148822874080296960, "id_str": "148822874080296960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1660270359/crap_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660270359/crap_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I wonder how dinosaurs extinct.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:15 +0000", "from_user": "Kid_Ramsey", "from_user_id": 298385848, "from_user_id_str": "298385848", "from_user_name": "Full Rebel K. Byrams", "geo": null, "id": 148822717834084350, "id_str": "148822717834084352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691728994/331457413_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691728994/331457413_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Fuck dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:10 +0000", "from_user": "1e11_DTB", "from_user_id": 291441454, "from_user_id_str": "291441454", "from_user_name": "Waliq Gonzalez ", "geo": null, "id": 148822696149532670, "id_str": "148822696149532672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670095708/n-hood_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670095708/n-hood_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Downtwn bitch im on my dwntwn shxtt lookin for a badd bitch igive her dinosaurs dicc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:04 +0000", "from_user": "DnMJsph", "from_user_id": 348040039, "from_user_id_str": "348040039", "from_user_name": "Dana J", "geo": null, "id": 148822672661422080, "id_str": "148822672661422080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1614617512/Photo_38_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1614617512/Photo_38_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ShmittenKitten: \"Kiss me if I'm wrong, but dinosaurs still exist, right?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:19 +0000", "from_user": "Stiviz", "from_user_id": 74437430, "from_user_id_str": "74437430", "from_user_name": "Kanuri", "geo": null, "id": 148822483464749060, "id_str": "148822483464749056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1669609484/l4Pu8x6B_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669609484/l4Pu8x6B_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Just like the dinosaurs, go out with a BANG!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:33 +0000", "from_user": "BenCarter96", "from_user_id": 298659367, "from_user_id_str": "298659367", "from_user_name": "Ben Carter ", "geo": null, "id": 148822289792778240, "id_str": "148822289792778240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1359917056/190079_10150116154848328_566543327_6160451_8176817_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1359917056/190079_10150116154848328_566543327_6160451_8176817_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Watching Crystal Maze from when to dinosaurs existed #old", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:30 +0000", "from_user": "DNSRMedia", "from_user_id": 436361902, "from_user_id_str": "436361902", "from_user_name": "James Nichols", "geo": null, "id": 148822275997712400, "id_str": "148822275997712385", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692276870/cover_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692276870/cover_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "For all those that think dinosaurs are extinct: http://t.co/mQBdgkxn you KNOW it's true because its from Berkeley! Or is it the other way??", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:05 +0000", "from_user": "katewong", "from_user_id": 17905977, "from_user_id_str": "17905977", "from_user_name": "Kate Wong", "geo": null, "id": 148822173715410940, "id_str": "148822173715410945", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/253947185/head_shot_lo_res_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/253947185/head_shot_lo_res_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@gracechua @sciam Yes. Dinosaurs were almond-flavored ;)", "to_user": "gracechua", "to_user_id": 18495936, "to_user_id_str": "18495936", "to_user_name": "gracechua", "in_reply_to_status_id": 148788022475890700, "in_reply_to_status_id_str": "148788022475890688"}, +{"created_at": "Mon, 19 Dec 2011 17:48:58 +0000", "from_user": "ShmittenKitten", "from_user_id": 15927393, "from_user_id_str": "15927393", "from_user_name": "Anna Goldfarb", "geo": null, "id": 148822143096987650, "id_str": "148822143096987648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1372051035/Photo_on_2011-05-04_at_14.42__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1372051035/Photo_on_2011-05-04_at_14.42__2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"Kiss me if I'm wrong, but dinosaurs still exist, right?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:56 +0000", "from_user": "MisterChase", "from_user_id": 279183553, "from_user_id_str": "279183553", "from_user_name": "Mister Chase", "geo": null, "id": 148822133571715070, "id_str": "148822133571715072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702575520/bubbletwit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702575520/bubbletwit_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "that's a very large poop. \\u201C@ErikNoren: @MisterChase Dinosaurs laid eggs. You've pooped before, haven't you? Same thing.\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:28 +0000", "from_user": "OfficialGraysan", "from_user_id": 440947838, "from_user_id_str": "440947838", "from_user_name": "Graysan", "geo": null, "id": 148822018291281920, "id_str": "148822018291281921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702508065/695517b6236311e1abb01231381b65e3_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702508065/695517b6236311e1abb01231381b65e3_7_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/oi9UIwNF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:01 +0000", "from_user": "ErikNoren", "from_user_id": 14905359, "from_user_id_str": "14905359", "from_user_name": "Erik Noren", "geo": null, "id": 148821903333785600, "id_str": "148821903333785603", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1618240127/P8030055_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618240127/P8030055_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MisterChase Dinosaurs laid eggs. You've pooped before, haven't you? Same thing.", "to_user": "MisterChase", "to_user_id": 279183553, "to_user_id_str": "279183553", "to_user_name": "Mister Chase", "in_reply_to_status_id": 148821477460938750, "in_reply_to_status_id_str": "148821477460938752"}, +{"created_at": "Mon, 19 Dec 2011 17:47:51 +0000", "from_user": "SachaMapletoft", "from_user_id": 382900060, "from_user_id_str": "382900060", "from_user_name": "Sach\\u2206", "geo": null, "id": 148821861638221820, "id_str": "148821861638221824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668588835/IMG_2484_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668588835/IMG_2484_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Mums only gone and bought some turkey dinosaurs,my childhood memories are running back to me", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:31 +0000", "from_user": "theda_barra", "from_user_id": 340383216, "from_user_id_str": "340383216", "from_user_name": "Ginny", "geo": null, "id": 148821779371147260, "id_str": "148821779371147264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1675638169/Paper-moon-014_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675638169/Paper-moon-014_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @markm1962: According to the GOPgelicals, cavemen & dinosaurs lived at the same time. And they're right. Look at their nominees. #p2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:30 +0000", "from_user": "nospacespleasev", "from_user_id": 316738733, "from_user_id_str": "316738733", "from_user_name": "Janeth ", "geo": null, "id": 148821774069534720, "id_str": "148821774069534720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1652826333/190764_175978205786083_100001217135035_467579_2519331_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652826333/190764_175978205786083_100001217135035_467579_2519331_n_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Hector is so funny, he's over here singing, \"All dinosaurs poop, all dinosaurs poop!\" lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:17 +0000", "from_user": "ClindtEastwood", "from_user_id": 53109836, "from_user_id_str": "53109836", "from_user_name": "Cillin Mc Mahon", "geo": null, "id": 148821719711350800, "id_str": "148821719711350785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1683791797/AgLm3IDCMAEhWQZ_normal.jpg-large", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683791797/AgLm3IDCMAEhWQZ_normal.jpg-large", "source": "<a href="http://twitter.com/">web</a>", "text": "Actually, I've been dreaming a lot about seeing dinosaurs. I wonder what that means.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:31 +0000", "from_user": "ClindtEastwood", "from_user_id": 53109836, "from_user_id_str": "53109836", "from_user_name": "Cillin Mc Mahon", "geo": null, "id": 148821527792594940, "id_str": "148821527792594944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1683791797/AgLm3IDCMAEhWQZ_normal.jpg-large", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683791797/AgLm3IDCMAEhWQZ_normal.jpg-large", "source": "<a href="http://twitter.com/">web</a>", "text": "@f0reskin I had a dream last night that I saw dinosaurs. I don't know how that's related, but piglets made me think of dinosaurs.", "to_user": "f0reskin", "to_user_id": 134837134, "to_user_id_str": "134837134", "to_user_name": "no", "in_reply_to_status_id": 148821225022554100, "in_reply_to_status_id_str": "148821225022554112"}, +{"created_at": "Mon, 19 Dec 2011 17:46:26 +0000", "from_user": "zaswadosaze", "from_user_id": 63202029, "from_user_id_str": "63202029", "from_user_name": "zoli osaze", "geo": null, "id": 148821507085303800, "id_str": "148821507085303808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1466524850/photo-47_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1466524850/photo-47_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @markm1962: Refusing to acknowledge climate change can be dangerous. Ask the dinosaurs. #p2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:08 +0000", "from_user": "markm1962", "from_user_id": 17171286, "from_user_id_str": "17171286", "from_user_name": "mm62", "geo": null, "id": 148821429859794940, "id_str": "148821429859794945", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1622695939/greenhornetkato_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622695939/greenhornetkato_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "According to the GOPgelicals, cavemen & dinosaurs lived at the same time. And they're right. Look at their nominees. #p2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:39 +0000", "from_user": "galiacardona", "from_user_id": 304107491, "from_user_id_str": "304107491", "from_user_name": "Galia Cardona", "geo": null, "id": 148821308522766340, "id_str": "148821308522766337", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1690298304/Snapshot_20111102_55_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690298304/Snapshot_20111102_55_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Kiss me if I'm wrong; but dinosaurs still exist right ?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:39 +0000", "from_user": "mzjeanmarie", "from_user_id": 20973843, "from_user_id_str": "20973843", "from_user_name": "Jean Marie Jingco", "geo": null, "id": 148821058512896000, "id_str": "148821058512896000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691936620/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691936620/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @LLoroncita: I found a picture of dinosaurs inside of a library book and it reminded me of @diplo http://t.co/buDimTCv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:17 +0000", "from_user": "_AlexisReneeee", "from_user_id": 262899720, "from_user_id_str": "262899720", "from_user_name": "10.30.11 ((: 33 ", "geo": null, "id": 148820965500002300, "id_str": "148820965500002304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1661749374/pretty_meee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661749374/pretty_meee_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @_ThatsSOJALYNN: Kiss me if i'm wrong but dinosaurs still exist right ?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:15 +0000", "from_user": "jefffffffle", "from_user_id": 14291771, "from_user_id_str": "14291771", "from_user_name": "Jeff Le", "geo": null, "id": 148820955261702140, "id_str": "148820955261702144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1271903268/Screen_shot_2011-03-14_at_1.17.29_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1271903268/Screen_shot_2011-03-14_at_1.17.29_AM_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "kids love dinosaurs, but not really", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:36 +0000", "from_user": "GayAss123", "from_user_id": 68989898, "from_user_id_str": "68989898", "from_user_name": "Rosie Scott", "geo": null, "id": 148820794242383870, "id_str": "148820794242383872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1659757307/L3ym7f36_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659757307/L3ym7f36_normal", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "RT @mikehollyman: @rickygervais I believe in dinosaurs.there's proof of there existence!! RT.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:29 +0000", "from_user": "_ThatsSOJALYNN", "from_user_id": 300472016, "from_user_id_str": "300472016", "from_user_name": "booo.yahhh", "geo": null, "id": 148820761115754500, "id_str": "148820761115754497", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1656418995/455385377_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656418995/455385377_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Kiss me if i'm wrong but dinosaurs still exist right ?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:46 +0000", "from_user": "peggiebennett", "from_user_id": 38529762, "from_user_id_str": "38529762", "from_user_name": "Peggie Bennett", "geo": null, "id": 148820330243301380, "id_str": "148820330243301376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1275454872/fd200c40-2141-48eb-98f2-05d3931ce1ed_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1275454872/fd200c40-2141-48eb-98f2-05d3931ce1ed_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@katewong @sciam That's why the dinosaurs went extinct, they looked too delicious!", "to_user": "sciam", "to_user_id": 14647570, "to_user_id_str": "14647570", "to_user_name": "Scientific American", "in_reply_to_status_id": 148783968215498750, "in_reply_to_status_id_str": "148783968215498752"}, +{"created_at": "Mon, 19 Dec 2011 17:41:37 +0000", "from_user": "Fifi_McCaype", "from_user_id": 228448245, "from_user_id_str": "228448245", "from_user_name": "iAmRandom", "geo": null, "id": 148820292565872640, "id_str": "148820292565872640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1639661297/Nnete__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639661297/Nnete__normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": ":') \\u2661 RT @LAMA_WOLF: Kiss Me If I'm wrong ,But Dinosaurs still exist right :')", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:09 +0000", "from_user": "GaryM", "from_user_id": 2224271, "from_user_id_str": "2224271", "from_user_name": "Gary McFarlane", "geo": null, "id": 148820176173928450, "id_str": "148820176173928448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1202138431/22673_391983215342_795875342_10317320_1620682_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1202138431/22673_391983215342_795875342_10317320_1620682_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Plant-eating dinosaur discovered in Antarctica: http://t.co/R89QmPL3 #scichat #evolution #dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:13 +0000", "from_user": "jefffffffle", "from_user_id": 14291771, "from_user_id_str": "14291771", "from_user_name": "Jeff Le", "geo": null, "id": 148819938818265100, "id_str": "148819938818265088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1271903268/Screen_shot_2011-03-14_at_1.17.29_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1271903268/Screen_shot_2011-03-14_at_1.17.29_AM_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "All these dinosaurs are artists #PBS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:10 +0000", "from_user": "LauraOBrien7", "from_user_id": 408347183, "from_user_id_str": "408347183", "from_user_name": "\\uE328 laur \\uE328", "geo": null, "id": 148819927581728770, "id_str": "148819927581728768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694991906/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694991906/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @joshualane92: I have sex with dinosaurs #RossGeller", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:39:37 +0000", "from_user": "xxnerminsalemxx", "from_user_id": 260353553, "from_user_id_str": "260353553", "from_user_name": "Nermiin Salem", "geo": null, "id": 148819790725779460, "id_str": "148819790725779457", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682744809/311280_136663213094122_100002513316167_211117_7027863_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682744809/311280_136663213094122_100002513316167_211117_7027863_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Kiss me if i'm wrong but dinosaurs still exist right? xP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:38:49 +0000", "from_user": "crazy_nasty", "from_user_id": 324540640, "from_user_id_str": "324540640", "from_user_name": "\\u041D\\u0430\\u0441\\u0442\\u044F \\u0412\\u043E\\u043B\\u043A\\u043E\\u0432\\u0430", "geo": null, "id": 148819587151052800, "id_str": "148819587151052800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1637252105/_51_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637252105/_51_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/enw9oIUN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:38:32 +0000", "from_user": "SmartyPots", "from_user_id": 216028344, "from_user_id_str": "216028344", "from_user_name": "SmartyPots", "geo": null, "id": 148819516061786100, "id_str": "148819516061786112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1500403801/Galileo_shot_Proffessor_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1500403801/Galileo_shot_Proffessor_3_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "I am always wondering this! What if dinosaurs were alive today? http://t.co/smQkhpvY (How Stuff Works) #scichat #science", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:41 +0000", "from_user": "itzelgallegos", "from_user_id": 28891167, "from_user_id_str": "28891167", "from_user_name": "Itzel Gallegos", "geo": null, "id": 148819302034833400, "id_str": "148819302034833409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1566069166/sec_662_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566069166/sec_662_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @Geo_MacDaddy: I remember when I used to eat those little vitamins made out of dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 17:38:32 +0000", "from_user": "SmartyPots", "from_user_id": 216028344, "from_user_id_str": "216028344", "from_user_name": "SmartyPots", "geo": null, "id": 148819516061786100, "id_str": "148819516061786112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1500403801/Galileo_shot_Proffessor_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1500403801/Galileo_shot_Proffessor_3_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "I am always wondering this! What if dinosaurs were alive today? http://t.co/smQkhpvY (How Stuff Works) #scichat #science", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:41 +0000", "from_user": "itzelgallegos", "from_user_id": 28891167, "from_user_id_str": "28891167", "from_user_name": "Itzel Gallegos", "geo": null, "id": 148819302034833400, "id_str": "148819302034833409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1566069166/sec_662_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566069166/sec_662_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @Geo_MacDaddy: I remember when I used to eat those little vitamins made out of dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:22 +0000", "from_user": "AshleyCarlson11", "from_user_id": 336186695, "from_user_id_str": "336186695", "from_user_name": "Ashley Carlson", "geo": null, "id": 148819223081263100, "id_str": "148819223081263105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701126779/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701126779/me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:11 +0000", "from_user": "GoodDealDivas", "from_user_id": 61517005, "from_user_id_str": "61517005", "from_user_name": "Nichole Smith", "geo": null, "id": 148819176620965900, "id_str": "148819176620965888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1425381402/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1425381402/profile_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Amazon: Megablocks Dinosaurs Only $12.99 Shipped (reg. $34.99)! http://t.co/cwlDRLvh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:36:56 +0000", "from_user": "joshualane92", "from_user_id": 399697934, "from_user_id_str": "399697934", "from_user_name": "Fuck The World Yo!", "geo": null, "id": 148819113249214460, "id_str": "148819113249214466", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1609802121/35142_406524780753_508110753_5075605_5804158_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609802121/35142_406524780753_508110753_5075605_5804158_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I have sex with dinosaurs #RossGeller", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:36:36 +0000", "from_user": "stevenrayflores", "from_user_id": 180153662, "from_user_id_str": "180153662", "from_user_name": "Steven flores", "geo": null, "id": 148819031250579460, "id_str": "148819031250579456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690616156/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690616156/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I wanna go to the ZOO!\\n#Dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:36:19 +0000", "from_user": "skyyylerr", "from_user_id": 359803266, "from_user_id_str": "359803266", "from_user_name": "Skyler Young", "geo": null, "id": 148818961302171650, "id_str": "148818961302171648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686398632/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686398632/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "kiss me if I'm wrong, but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:36:14 +0000", "from_user": "john_muddy", "from_user_id": 428021693, "from_user_id_str": "428021693", "from_user_name": "Giovanni Modugno", "geo": null, "id": 148818937759535100, "id_str": "148818937759535104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1676067916/DSC00557_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676067916/DSC00557_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Totally Enormous Extinct Dinosaurs - Garden http://t.co/1WWX62FM via @youtube", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:35:44 +0000", "from_user": "MotorCityRob", "from_user_id": 22359358, "from_user_id_str": "22359358", "from_user_name": "Robert Kitchen", "geo": null, "id": 148818814136623100, "id_str": "148818814136623104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/593309248/9535_1128565339604_1391335470_30365583_36309_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/593309248/9535_1128565339604_1391335470_30365583_36309_n_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube video http://t.co/bKmgMfMA Battlefield 3 Wake Island Easter Eggs - 5 Dinosaurs - Backgroun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:35:13 +0000", "from_user": "vabrix", "from_user_id": 363138790, "from_user_id_str": "363138790", "from_user_name": "Lat\\u00E9fa Al-Mejrad. \\u221E", "geo": null, "id": 148818682456449020, "id_str": "148818682456449024", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696302765/331564675_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696302765/331564675_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @Xyrenus__: nrou7 elmdrsa 3la T-rex's or hatchling dragons *.* RT @vabrix: T5ylo law ela el7een fee dinosaurs w kitha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:59 +0000", "from_user": "DinosaurGeorge", "from_user_id": 51272471, "from_user_id_str": "51272471", "from_user_name": "Dinosaur George", "geo": null, "id": 148818623572623360, "id_str": "148818623572623360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/284633710/G7_normal.bmp", "profile_image_url_https": "https://si0.twimg.com/profile_images/284633710/G7_normal.bmp", "source": "<a href="http://twitter.com/">web</a>", "text": "Budgets, projections and more paperwork. I HATE this part of my job. But then again, I'm budgeting for new dinosaurs so..... :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:57 +0000", "from_user": "LAMA_WOLF", "from_user_id": 144853960, "from_user_id_str": "144853960", "from_user_name": "Lulama Wolf", "geo": null, "id": 148818613871198200, "id_str": "148818613871198208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691185955/minahmlmabooi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691185955/minahmlmabooi_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Kiss Me If I'm wrong ,But Dinosaurs still exist right :')", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:32 +0000", "from_user": "Tardisphere", "from_user_id": 216374965, "from_user_id_str": "216374965", "from_user_name": "Alex Dunnaker", "geo": null, "id": 148818511769243650, "id_str": "148818511769243648", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1682656829/40366_479312633988_635173988_6871891_3233196_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682656829/40366_479312633988_635173988_6871891_3233196_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@LizzleFizzle92 Dinosaurs are badass", "to_user": "LizzleFizzle92", "to_user_id": 177266375, "to_user_id_str": "177266375", "to_user_name": "Elizabeth Farnell", "in_reply_to_status_id": 148817823102271500, "in_reply_to_status_id_str": "148817823102271489"}, +{"created_at": "Mon, 19 Dec 2011 17:34:06 +0000", "from_user": "Xyrenus__", "from_user_id": 283597701, "from_user_id_str": "283597701", "from_user_name": "\\u2654", "geo": null, "id": 148818403518455800, "id_str": "148818403518455811", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701450941/Photo_on_11-29-11_at_9.04_PM__5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701450941/Photo_on_11-29-11_at_9.04_PM__5_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "nrou7 elmdrsa 3la T-rex's or hatchling dragons *.* RT @vabrix: T5ylo law ela el7een fee dinosaurs w kitha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:33:37 +0000", "from_user": "Shaden__", "from_user_id": 236439804, "from_user_id_str": "236439804", "from_user_name": "Shaden alSul\\u0637an.", "geo": null, "id": 148818278263959550, "id_str": "148818278263959553", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702609125/331708177_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702609125/331708177_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Yd3sona mthl mand3s elnml=)) RT @Raininess: Wanasa! RT @vabrix: T5ylo law ela el7een fee dinosaurs w kitha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:33:35 +0000", "from_user": "MsAthenaRae", "from_user_id": 26953805, "from_user_id_str": "26953805", "from_user_name": "Ms Athena Rae", "geo": null, "id": 148818273369198600, "id_str": "148818273369198592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689700571/331381017_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689700571/331381017_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "The Dinosaurs lead to Gene Simmons, Gene lead to Kim and Kourt, and they lead to Anne Frank! @JuicieeFruit Really Kills Me!! #LMAO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:33:22 +0000", "from_user": "mafransoze", "from_user_id": 200170809, "from_user_id_str": "200170809", "from_user_name": "MAR", "geo": null, "id": 148818218008580100, "id_str": "148818218008580097", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687810460/203329_100002179097112_6869266_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687810460/203329_100002179097112_6869266_n_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/MmwEHDiQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:33:20 +0000", "from_user": "ShaurieeBabyy", "from_user_id": 175755769, "from_user_id_str": "175755769", "from_user_name": "Shauri Bieber \\u2665", "geo": null, "id": 148818209150214140, "id_str": "148818209150214144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689939754/annoyed_010_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689939754/annoyed_010_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @Geo_MacDaddy: I remember when I used to eat those little vitamins made out of dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:33:06 +0000", "from_user": "Geo_MacDaddy", "from_user_id": 216877263, "from_user_id_str": "216877263", "from_user_name": "Damien.", "geo": null, "id": 148818151138799600, "id_str": "148818151138799617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689749381/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689749381/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I remember when I used to eat those little vitamins made out of dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:05 +0000", "from_user": "HannahWilkins8", "from_user_id": 382604976, "from_user_id_str": "382604976", "from_user_name": "Hannah Wilkins", "geo": null, "id": 148817893570789380, "id_str": "148817893570789376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1631438654/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631438654/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @solisjesse: Dinosaurs and bosco sticks for lunch. WINNING", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:53 +0000", "from_user": "Raininess", "from_user_id": 251631787, "from_user_id_str": "251631787", "from_user_name": "ARE-AI-IN-AI :3 ", "geo": null, "id": 148817843465621500, "id_str": "148817843465621504", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695140617/rana234d567_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695140617/rana234d567_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Wanasa! RT @vabrix: T5ylo law ela el7een fee dinosaurs w kitha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:11 +0000", "from_user": "ShahmiCarlo", "from_user_id": 227354950, "from_user_id_str": "227354950", "from_user_name": "Amir Shahmi", "geo": null, "id": 148817666306613250, "id_str": "148817666306613248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1645407971/popo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645407971/popo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#SometimesIWonder how the world would be like if there were still dinosaurs around.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:44 +0000", "from_user": "PoloDaRonnie", "from_user_id": 19011714, "from_user_id_str": "19011714", "from_user_name": "Veronica Jones", "geo": null, "id": 148817554650054660, "id_str": "148817554650054657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1684936441/fUoYHhpd_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684936441/fUoYHhpd_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @charis_webb: Kiss me if im wrong, but dinosaurs still exist, right? #cheesypickuplines", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:42 +0000", "from_user": "elemarras28", "from_user_id": 359917497, "from_user_id_str": "359917497", "from_user_name": "Elena Marras \\u2714", "geo": null, "id": 148817547767185400, "id_str": "148817547767185409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695316814/p_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695316814/p_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/eEu21MXX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:39 +0000", "from_user": "oosanders", "from_user_id": 45522684, "from_user_id_str": "45522684", "from_user_name": "Lee Sanders", "geo": null, "id": 148817533594640400, "id_str": "148817533594640387", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691170328/DSC03670-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691170328/DSC03670-1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Totally Enormous Extinct Dinosaurs - Household goods #np", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:38 +0000", "from_user": "brewerjlz", "from_user_id": 272673325, "from_user_id_str": "272673325", "from_user_name": "Jason Brewer", "geo": null, "id": 148817277796622340, "id_str": "148817277796622336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1288374214/40750_1569081823782_1137553327_31676964_7652125_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1288374214/40750_1569081823782_1137553327_31676964_7652125_n_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/FrRZ1xaK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:19 +0000", "from_user": "davemoules", "from_user_id": 123005086, "from_user_id_str": "123005086", "from_user_name": "David Moules", "geo": null, "id": 148817196045451260, "id_str": "148817196045451264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686291525/davemoules_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686291525/davemoules_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@Natalie_Jade88 dinosaurs are real! Have you not scene Jurassic park? it's based on a true story ask @jasoncoward13", "to_user": "Natalie_Jade88", "to_user_id": 150327264, "to_user_id_str": "150327264", "to_user_name": "Natalie Jade", "in_reply_to_status_id": 148813127096598530, "in_reply_to_status_id_str": "148813127096598529"}, +{"created_at": "Mon, 19 Dec 2011 17:28:31 +0000", "from_user": "Nouiee", "from_user_id": 251581280, "from_user_id_str": "251581280", "from_user_name": "Nour Youssef", "geo": null, "id": 148816997919100930, "id_str": "148816997919100928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1631041636/318484_303203176374843_100000554905006_1161105_154363177_n1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631041636/318484_303203176374843_100000554905006_1161105_154363177_n1_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:28:23 +0000", "from_user": "vabrix", "from_user_id": 363138790, "from_user_id_str": "363138790", "from_user_name": "Lat\\u00E9fa Al-Mejrad. \\u221E", "geo": null, "id": 148816963676803070, "id_str": "148816963676803072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696302765/331564675_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696302765/331564675_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "T5ylo law ela el7een fee dinosaurs w kitha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:28:10 +0000", "from_user": "Kiaraohu", "from_user_id": 421457610, "from_user_id_str": "421457610", "from_user_name": "Yen Klis", "geo": null, "id": 148816909335404540, "id_str": "148816909335404545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691914716/1408130539profile70_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691914716/1408130539profile70_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I'm a funny girl! has u can see i can take a good laff! i love hugs!!! Also i play the guitar and dinosaurs rule the world!!!! RAWR ( ;", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:27:23 +0000", "from_user": "k0t0feyska", "from_user_id": 251178807, "from_user_id_str": "251178807", "from_user_name": "Evgeniya Luk'yanova", "geo": null, "id": 148816711192281100, "id_str": "148816711192281090", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1655655617/x_91a24b49_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655655617/x_91a24b49_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/clxmrtpJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:27:20 +0000", "from_user": "YouTAZ_WebRadio", "from_user_id": 204304568, "from_user_id_str": "204304568", "from_user_name": "YouTAZ", "geo": null, "id": 148816696726134800, "id_str": "148816696726134784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1147294040/7298617_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1147294040/7298617_normal.jpg", "source": "<a href="http://www.youtaz.net/" rel="nofollow">Youtaz_auto_submit</a>", "text": "You Listen: Totally Enormous Extinct Dinosaurs - Garden", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:27:10 +0000", "from_user": "RaghibD_", "from_user_id": 383710326, "from_user_id_str": "383710326", "from_user_name": "Raghib Darr", "geo": null, "id": 148816656771194880, "id_str": "148816656771194880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1569266293/barca11_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1569266293/barca11_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@EA_DICE : What is the reason behind the dinosaurs in BF3? They look like the one in Thunder Run...", "to_user": "EA_DICE", "to_user_id": 378186136, "to_user_id_str": "378186136", "to_user_name": "EA_DICE"}, +{"created_at": "Mon, 19 Dec 2011 17:27:03 +0000", "from_user": "WeKnowAwesome", "from_user_id": 115786779, "from_user_id_str": "115786779", "from_user_name": "We Know Awesome", "geo": null, "id": 148816625922097150, "id_str": "148816625922097152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1548572750/WKA-green-star-medium-blue_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1548572750/WKA-green-star-medium-blue_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Stupid dinosaurs missed the boat. \\n\\nvia Awesome friend, Allison Z http://t.co/MGAUQUmt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:25:50 +0000", "from_user": "bustermoody", "from_user_id": 24262090, "from_user_id_str": "24262090", "from_user_name": "M\\u00BA\\u00BAd33", "geo": null, "id": 148816319863734270, "id_str": "148816319863734272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1478051427/Picture_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1478051427/Picture_2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "peep out this dude dancing to this Totally Enormous Extinct Dinosaurs track: http://t.co/mzlhrMdA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:25:45 +0000", "from_user": "JSetts", "from_user_id": 420724841, "from_user_id_str": "420724841", "from_user_name": "Jamie Setts", "geo": null, "id": 148816300939026430, "id_str": "148816300939026433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1656289081/money_stack_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656289081/money_stack_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Dinosaurs: The Monsters Emerge [VHS]: Discover the startling facts and dramatic new theories currently revol... http://t.co/z3AgrLzi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:25:09 +0000", "from_user": "jAzZlaLli2013", "from_user_id": 129926553, "from_user_id_str": "129926553", "from_user_name": "Jazz Lalli", "geo": null, "id": 148816147322650620, "id_str": "148816147322650626", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1640982350/hjklhh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640982350/hjklhh_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @charis_webb: Kiss me if im wrong, but dinosaurs still exist, right? #cheesypickuplines", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:24:54 +0000", "from_user": "ugleenakedguy", "from_user_id": 170351586, "from_user_id_str": "170351586", "from_user_name": "Gerard Young", "geo": null, "id": 148816087708999680, "id_str": "148816087708999680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1171180140/100_0084__2___800x600__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1171180140/100_0084__2___800x600__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@CollegeHumor will the dinosaurs be having an office christmas partyyyyyy?", "to_user": "CollegeHumor", "to_user_id": 16825289, "to_user_id_str": "16825289", "to_user_name": "CollegeHumor"}, +{"created_at": "Mon, 19 Dec 2011 17:24:39 +0000", "from_user": "whatnopie", "from_user_id": 23509542, "from_user_id_str": "23509542", "from_user_name": "William Reid", "geo": null, "id": 148816021933920260, "id_str": "148816021933920256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668612931/Mii_Batman_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668612931/Mii_Batman_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "They really should've followed up on Sherlock Holmes meets dinosaurs, the Kraken, Iron Man and giant robot steampunk dragons", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:24:19 +0000", "from_user": "linn_ray", "from_user_id": 401202335, "from_user_id_str": "401202335", "from_user_name": "Lindsay Ray", "geo": null, "id": 148815939801063420, "id_str": "148815939801063424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1614780402/kissy_kiss_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1614780402/kissy_kiss_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "i dont care if you call me a child but i like my chicken tenders shaped as dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:24:13 +0000", "from_user": "charis_webb", "from_user_id": 354925475, "from_user_id_str": "354925475", "from_user_name": "Charis Webb", "geo": null, "id": 148815913246933000, "id_str": "148815913246932992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1663084084/2011-10-25_06-46-37_448_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663084084/2011-10-25_06-46-37_448_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Kiss me if im wrong, but dinosaurs still exist, right? #cheesypickuplines", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:23:42 +0000", "from_user": "guyyatheery", "from_user_id": 51700491, "from_user_id_str": "51700491", "from_user_name": "\\u262E", "geo": null, "id": 148815784217542660, "id_str": "148815784217542656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1663795433/309889_2740432437786_1466670541_32884930_924180248_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663795433/309889_2740432437786_1466670541_32884930_924180248_n_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @afflictedluv: My kids no shame. Asking presents from me. Lions, dragons, dinosaurs. Lego's fine for you guys? @guyyatheery @Nicfong_kimchi @FiqBEINGbatman", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:23:22 +0000", "from_user": "SPdaCoolKid", "from_user_id": 60152978, "from_user_id_str": "60152978", "from_user_name": "The Cool ", "geo": null, "id": 148815700520210430, "id_str": "148815700520210432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1692443693/IMAG0086_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692443693/IMAG0086_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "LMAO RT @MSBlueJay86 @SPdaCoolKid People say the same thing about dinosaurs though and im still scared lol", "to_user": "MSBlueJay86", "to_user_id": 27575782, "to_user_id_str": "27575782", "to_user_name": "Judy Jetson", "in_reply_to_status_id": 148815080774041600, "in_reply_to_status_id_str": "148815080774041600"}, +{"created_at": "Mon, 19 Dec 2011 17:23:08 +0000", "from_user": "swizzle_tooth", "from_user_id": 94309960, "from_user_id_str": "94309960", "from_user_name": "Dan", "geo": null, "id": 148815642777227260, "id_str": "148815642777227265", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702587622/dsdssdsds_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702587622/dsdssdsds_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@TylerScruggs Dawson's Creek with dinosaurs.", "to_user": "TylerScruggs", "to_user_id": 14313382, "to_user_id_str": "14313382", "to_user_name": "Tyler Scruggs", "in_reply_to_status_id": 148815362287349760, "in_reply_to_status_id_str": "148815362287349760"}, +{"created_at": "Mon, 19 Dec 2011 17:22:54 +0000", "from_user": "markm1962", "from_user_id": 17171286, "from_user_id_str": "17171286", "from_user_name": "mm62", "geo": null, "id": 148815581561360400, "id_str": "148815581561360385", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1622695939/greenhornetkato_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622695939/greenhornetkato_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Refusing to acknowledge climate change can be dangerous. Ask the dinosaurs. #p2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:21:30 +0000", "from_user": "ItsCarmenB", "from_user_id": 140225565, "from_user_id_str": "140225565", "from_user_name": "Carmen Borges\\u2665", "geo": null, "id": 148815232213581820, "id_str": "148815232213581824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1624101792/DSC015722_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624101792/DSC015722_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/mm846NuY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:21:29 +0000", "from_user": "saraornstrand", "from_user_id": 418768019, "from_user_id_str": "418768019", "from_user_name": "Sara \\u00D6rnstrand", "geo": null, "id": 148815227742453760, "id_str": "148815227742453761", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677714567/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677714567/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Baby we're just heter to play - DINNER FOR DINOSAURS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:20:54 +0000", "from_user": "MSBlueJay86", "from_user_id": 27575782, "from_user_id_str": "27575782", "from_user_name": "Judy Jetson", "geo": null, "id": 148815080774041600, "id_str": "148815080774041600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687827117/MSBlueJay86_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687827117/MSBlueJay86_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SPdaCoolKid People say the same thing about dinosaurs though and im still scared lol", "to_user": "SPdaCoolKid", "to_user_id": 60152978, "to_user_id_str": "60152978", "to_user_name": "The Cool ", "in_reply_to_status_id": 148814901996036100, "in_reply_to_status_id_str": "148814901996036096"}, +{"created_at": "Mon, 19 Dec 2011 17:20:45 +0000", "from_user": "1DsHarryStyles", "from_user_id": 173934633, "from_user_id_str": "173934633", "from_user_name": "\\u2654", "geo": null, "id": 148815043314716670, "id_str": "148815043314716672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1671169971/harryicon1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671169971/harryicon1_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/8fo5Dsyi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:20:39 +0000", "from_user": "katiespeake", "from_user_id": 249281157, "from_user_id_str": "249281157", "from_user_name": "Katie Speake", "geo": null, "id": 148815014797647870, "id_str": "148815014797647872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685550304/IMG-20110514-01368_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685550304/IMG-20110514-01368_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@mtspeake2310 hahaa im having turkey dinosaurs and chips xx", "to_user": "mtspeake2310", "to_user_id": 315278929, "to_user_id_str": "315278929", "to_user_name": "Martin Speake", "in_reply_to_status_id": 148813977462374400, "in_reply_to_status_id_str": "148813977462374400"}, +{"created_at": "Mon, 19 Dec 2011 17:20:24 +0000", "from_user": "carolineputman", "from_user_id": 159688532, "from_user_id_str": "159688532", "from_user_name": "Caroline Putman", "geo": null, "id": 148814953686638600, "id_str": "148814953686638594", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1602995134/84U0lioJ_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1602995134/84U0lioJ_normal", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @erb_13: Kiss me if I'm wrong, but dinosaurs still exist, right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:20:18 +0000", "from_user": "lgilchrist1", "from_user_id": 320170270, "from_user_id_str": "320170270", "from_user_name": "lachlan gilchrist", "geo": null, "id": 148814927879082000, "id_str": "148814927879081984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1402829184/249581_10150659022980157_550795156_19137863_5721384_n_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1402829184/249581_10150659022980157_550795156_19137863_5721384_n_1__normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Could have done without that bit with the dinosaurs though", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:19:42 +0000", "from_user": "Oh_ZNAP", "from_user_id": 367993539, "from_user_id_str": "367993539", "from_user_name": "Krump King", "geo": null, "id": 148814778394095600, "id_str": "148814778394095617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701076551/yfrog_mmex6fj_300_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701076551/yfrog_mmex6fj_300_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@HeyLuke dinosaurs still exist. We seen one on inkster!", "to_user": "HeyLuke", "to_user_id": 53620716, "to_user_id_str": "53620716", "to_user_name": "Luke Burnham", "in_reply_to_status_id": 148814573443620860, "in_reply_to_status_id_str": "148814573443620864"}, +{"created_at": "Mon, 19 Dec 2011 17:19:30 +0000", "from_user": "joeycomeau", "from_user_id": 8858632, "from_user_id_str": "8858632", "from_user_name": "Joey Comeau", "geo": null, "id": 148814727194230800, "id_str": "148814727194230784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/97366425/joeytwitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/97366425/joeytwitter_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "This is a great review of Dinosaur Comics by @TdotComics http://t.co/lkLmfVg7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:19:24 +0000", "from_user": "GetMeSumBieber", "from_user_id": 164126675, "from_user_id_str": "164126675", "from_user_name": "a\\u0274\\u0274i\\u03B5\\u00A0", "geo": null, "id": 148814701508309000, "id_str": "148814701508308993", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683596684/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683596684/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "\"kiss me if I'm wrong but... Dinosaurs still exist right?\" LOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:18:15 +0000", "from_user": "bananoorangeent", "from_user_id": 410675002, "from_user_id_str": "410675002", "from_user_name": "Nam YoHyun", "geo": null, "id": 148814412562698240, "id_str": "148814412562698240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675103467/wohyunniethepig_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675103467/wohyunniethepig_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@InfinSpirit Yea! Dinosaurs are!!! ^^ or gorilla i dunoo she makes alot of noise", "to_user": "InfinSpirit", "to_user_id": 416395371, "to_user_id_str": "416395371", "to_user_name": "Inspirits Lovable", "in_reply_to_status_id": 148813931077574660, "in_reply_to_status_id_str": "148813931077574657"}, +{"created_at": "Mon, 19 Dec 2011 17:17:40 +0000", "from_user": "LudvigMartenson", "from_user_id": 365690433, "from_user_id_str": "365690433", "from_user_name": "Ludvig M\\u00E5rtensson", "geo": null, "id": 148814265720119300, "id_str": "148814265720119296", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1542511010/tweet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542511010/tweet_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Taggar Totally Enormous Extinct Dinosaurs med Lillefot #emmabodadadada", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:17:22 +0000", "from_user": "Billionaird1", "from_user_id": 195259951, "from_user_id_str": "195259951", "from_user_name": "Steve Billionaird", "geo": null, "id": 148814192483373060, "id_str": "148814192483373056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1648212059/IMG00112-20110613-1823_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648212059/IMG00112-20110613-1823_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Wht has Playedout...Major Labels aka Dinosaurs. The Comeup is the Internet ur Own Label/Partner up not being Occupied by Labels ask Artists.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:17:08 +0000", "from_user": "SexmondDesmond", "from_user_id": 311136639, "from_user_id_str": "311136639", "from_user_name": "Donkey Kong ", "geo": null, "id": 148814131728875520, "id_str": "148814131728875520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693939064/KKmG439h_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693939064/KKmG439h_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Do dinosaurs have boobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:16:19 +0000", "from_user": "iLittleGirl_", "from_user_id": 258329747, "from_user_id_str": "258329747", "from_user_name": "' \\u2665 Michelle ", "geo": null, "id": 148813921908826100, "id_str": "148813921908826112", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698820506/1450493155_6_ykBR_BBB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698820506/1450493155_6_ykBR_BBB_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "dinosaurs :D hoop dat je het kan lezen allemaal xd http://t.co/GTlDHjKn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:15:55 +0000", "from_user": "LOV3LOV3_", "from_user_id": 324938006, "from_user_id_str": "324938006", "from_user_name": "Quantely \\u2661", "geo": null, "id": 148813827138531330, "id_str": "148813827138531329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702389190/SAM_0775_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702389190/SAM_0775_normal.JPG", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/2ZNjzG40", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:15:53 +0000", "from_user": "SeriousRabble", "from_user_id": 286274009, "from_user_id_str": "286274009", "from_user_name": "Matt Lipton-Schwartz", "geo": null, "id": 148813817336438800, "id_str": "148813817336438785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1379827597/Mattls_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1379827597/Mattls_normal.png", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/CUTekrgr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:15:41 +0000", "from_user": "Lorinekji", "from_user_id": 431686086, "from_user_id_str": "431686086", "from_user_name": "Lorine Crooks", "geo": null, "id": 148813768762200060, "id_str": "148813768762200064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681002318/sbtkhrrt12_128582992_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681002318/sbtkhrrt12_128582992_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dinosaur Coin Banks Ceramic Piggy Banks - Set of 2: Two different banks in the shape of dinosaurs http://t.co/Dzq4xNM4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:14:18 +0000", "from_user": "Lilliamsvg", "from_user_id": 431713277, "from_user_id_str": "431713277", "from_user_name": "Lilliam Hudek", "geo": null, "id": 148813417271136260, "id_str": "148813417271136256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681056863/large_BSSQGQRDNNBN_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681056863/large_BSSQGQRDNNBN_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hatley Boys 2-7 Dinosaurs Graphic Tee,Brown,7: http://t.co/JYVRqAUO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:12:53 +0000", "from_user": "crazycraven", "from_user_id": 20249420, "from_user_id_str": "20249420", "from_user_name": "Mark Craven", "geo": null, "id": 148813062214914050, "id_str": "148813062214914049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1234009880/photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1234009880/photo_normal.jpg", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "@weefz I feed dinosaurs to my car.", "to_user": "weefz", "to_user_id": 8358972, "to_user_id_str": "8358972", "to_user_name": "Debbie Timmins", "in_reply_to_status_id": 148809224271568900, "in_reply_to_status_id_str": "148809224271568896"}, +{"created_at": "Mon, 19 Dec 2011 17:12:45 +0000", "from_user": "JCundiff52", "from_user_id": 365160799, "from_user_id_str": "365160799", "from_user_name": "Jeremy Cundiff", "geo": null, "id": 148813029461606400, "id_str": "148813029461606400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1682329830/297659_294906313870518_100000534542080_1139707_330857356_a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682329830/297659_294906313870518_100000534542080_1139707_330857356_a_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Really wish this school had better computers, dinosaurs are extinct for a reason!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:11:31 +0000", "from_user": "BriBrown5", "from_user_id": 348652408, "from_user_id_str": "348652408", "from_user_name": "Bri Brown", "geo": null, "id": 148812718252638200, "id_str": "148812718252638208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639737066/111011-202715_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639737066/111011-202715_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @solisjesse: Dinosaurs and bosco sticks for lunch. WINNING", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:10:42 +0000", "from_user": "jamezky23", "from_user_id": 299561077, "from_user_id_str": "299561077", "from_user_name": "James Ludin Pueyo", "geo": null, "id": 148812511188238340, "id_str": "148812511188238336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1543041060/274808_1414638865_1305545935_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543041060/274808_1414638865_1305545935_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@allynthewicked it's Arrrrr! Rawr is for lions.... and dinosaurs.. (i think)", "to_user": "allynthewicked", "to_user_id": 16755210, "to_user_id_str": "16755210", "to_user_name": "allyn may canja", "in_reply_to_status_id": 148812144480235520, "in_reply_to_status_id_str": "148812144480235521"}, +{"created_at": "Mon, 19 Dec 2011 17:10:36 +0000", "from_user": "Lay_f", "from_user_id": 105597690, "from_user_id_str": "105597690", "from_user_name": "Lais.", "geo": null, "id": 148812488094400500, "id_str": "148812488094400514", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680129781/01-12-11_1505_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680129781/01-12-11_1505_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Bruuh_Breezy: Dinosaurs Go Rawr nao sai mais da minha cabe\\u00E7a, culpa de quem? @Lay_f", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:10:01 +0000", "from_user": "SalsaChoicer", "from_user_id": 121968669, "from_user_id_str": "121968669", "from_user_name": "Salsa Choicer", "geo": null, "id": 148812340404555780, "id_str": "148812340404555776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://google.com" rel="nofollow">SalsaChoicer</a>", "text": "did you know? dinosaurs eat lazers recursively", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:10:00 +0000", "from_user": "FancyScheibe", "from_user_id": 52898260, "from_user_id_str": "52898260", "from_user_name": "Fancy Noble", "geo": null, "id": 148812336206065660, "id_str": "148812336206065665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1576353817/HeyHaHeyHa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576353817/HeyHaHeyHa_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "When I was younger I thought there was body glue that held all our ligaments together...I also thought dinosaurs sharpend my pencils...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:09:37 +0000", "from_user": "GO_CHUBBYBOY305", "from_user_id": 424836900, "from_user_id_str": "424836900", "from_user_name": "Wilson", "geo": null, "id": 148812242002001920, "id_str": "148812242002001921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1665572286/wilson1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665572286/wilson1_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Son u look like DUCKIE OF LAND BEFORE TIME RT @dougie_frsh89: @GO_CHUBBYBOY305 aye u one of dem big ass dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:07:39 +0000", "from_user": "EnglishFolkfan", "from_user_id": 14797165, "from_user_id_str": "14797165", "from_user_name": "Lesley", "geo": null, "id": 148811745685803000, "id_str": "148811745685803008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/780918181/use_for_my_new_twit_pic_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/780918181/use_for_my_new_twit_pic_normal.JPG", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "US dinosaurs still roam the capitol @daringfireball Dear Congress, It\\u2019s No Longer OK to Not Know How the Internet Works http://t.co/ChgeZ4cU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:07:13 +0000", "from_user": "GalenSchultz", "from_user_id": 80529904, "from_user_id_str": "80529904", "from_user_name": "Galen Schultz", "geo": null, "id": 148811634150875140, "id_str": "148811634150875137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1361949463/CV_pic_4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1361949463/CV_pic_4_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "The world needs more chicks in bikinis riding dinosaurs ... (@YouTube http://t.co/WaT0ANM9)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:07:05 +0000", "from_user": "TdotComics", "from_user_id": 75476072, "from_user_id_str": "75476072", "from_user_name": "Alice Quinn", "geo": null, "id": 148811604677509120, "id_str": "148811604677509121", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1538459551/Alice_thumbnail_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538459551/Alice_thumbnail_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Thoughts, theories as told by Dinosaurs, a #DinosaurComics review by @ryanburgess29 on TdotComics http://t.co/X3Gaw5Pp @ryanqnorth", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:06:57 +0000", "from_user": "Vaydre", "from_user_id": 16013792, "from_user_id_str": "16013792", "from_user_name": "Vaydre", "geo": null, "id": 148811567922806800, "id_str": "148811567922806784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1494674783/IMG_0854_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1494674783/IMG_0854_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @sixthformpoet: I worry that my life's a Choose Your Own Adventure story, in which I make a series of wrong decisions and eventually get eaten by dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:05:17 +0000", "from_user": "Tardisphere", "from_user_id": 216374965, "from_user_id_str": "216374965", "from_user_name": "Alex Dunnaker", "geo": null, "id": 148811149830402050, "id_str": "148811149830402051", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1682656829/40366_479312633988_635173988_6871891_3233196_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682656829/40366_479312633988_635173988_6871891_3233196_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@LizzleFizzle92 great film (most films with dinosaurs are great)", "to_user": "LizzleFizzle92", "to_user_id": 177266375, "to_user_id_str": "177266375", "to_user_name": "Elizabeth Farnell", "in_reply_to_status_id": 148804344517632000, "in_reply_to_status_id_str": "148804344517632001"}, +{"created_at": "Mon, 19 Dec 2011 17:05:10 +0000", "from_user": "pearapple", "from_user_id": 15255806, "from_user_id_str": "15255806", "from_user_name": "pearapple", "geo": null, "id": 148811121976025100, "id_str": "148811121976025088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/455073357/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/455073357/twitterProfilePhoto_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "RT @JustinTEarle: What's the worst that could happen? Dinosaurs, that's what!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:05:08 +0000", "from_user": "Dessienpup", "from_user_id": 426264540, "from_user_id_str": "426264540", "from_user_name": "Dessie Eggimann", "geo": null, "id": 148811109904810000, "id_str": "148811109904809984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668803060/LLCM-5130_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668803060/LLCM-5130_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Sun Kidz Dinosaurs T-Shirt BLACK 5/6: http://t.co/cJi94uFx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:04:39 +0000", "from_user": "Bedrockness", "from_user_id": 22190606, "from_user_id_str": "22190606", "from_user_name": "John Lee", "geo": null, "id": 148810991067607040, "id_str": "148810991067607040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1619157504/196330_786357052162_16116713_41148031_2787631_a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619157504/196330_786357052162_16116713_41148031_2787631_a_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@TylerWasieleski Natural History. Who doesn't like dinosaurs?? Why are you in NYC??", "to_user": "TylerWasieleski", "to_user_id": 252750461, "to_user_id_str": "252750461", "to_user_name": "Tyler Wasieleski", "in_reply_to_status_id": 148049798015094800, "in_reply_to_status_id_str": "148049798015094784"}, +{"created_at": "Mon, 19 Dec 2011 17:03:17 +0000", "from_user": "biancascarpat", "from_user_id": 60616571, "from_user_id_str": "60616571", "from_user_name": "Bianca Scarpat", "geo": null, "id": 148810645586972670, "id_str": "148810645586972672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685756627/DSC06681_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685756627/DSC06681_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Photoset: dinosaurs-roaming-the-earth: http://t.co/8AeHwTym", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:03:03 +0000", "from_user": "LablanchFanny", "from_user_id": 321335111, "from_user_id_str": "321335111", "from_user_name": "Lablanche Fanny", "geo": null, "id": 148810588078870530, "id_str": "148810588078870528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1411130926/Photo_08_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1411130926/Photo_08_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @hmns: Parents! Does your child love dinosaurs? Mummies? Weird insects? Book their birthday party at HMNS: http://t.co/YduBiU0p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:02:40 +0000", "from_user": "Elwandangi", "from_user_id": 431684016, "from_user_id_str": "431684016", "from_user_name": "Elwanda Kolash", "geo": null, "id": 148810491341438980, "id_str": "148810491341438976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1680993096/large_100_2022_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680993096/large_100_2022_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dinosaurs: Science & Maths: Learn about the science and history of Dinosaurs with iMindsJNR learning series for ... http://t.co/Si2QZzbK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:02:37 +0000", "from_user": "lastgoodnerve", "from_user_id": 15884097, "from_user_id_str": "15884097", "from_user_name": "Moi", "geo": null, "id": 148810477902888960, "id_str": "148810477902888960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1448052849/2e403632-6239-4861-abe4-7a8b94f761d4_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1448052849/2e403632-6239-4861-abe4-7a8b94f761d4_normal.jpeg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@mrsF5 @ArtChicinTX Don't forget the dinosaurs! We had giant ones. K used to play dress up w/them. Must look fancy before crushing the town.", "to_user": "mrsF5", "to_user_id": 14444534, "to_user_id_str": "14444534", "to_user_name": "amy f5", "in_reply_to_status_id": 148792407989813250, "in_reply_to_status_id_str": "148792407989813249"}, +{"created_at": "Mon, 19 Dec 2011 17:02:36 +0000", "from_user": "fillysusanemma", "from_user_id": 116055028, "from_user_id_str": "116055028", "from_user_name": "Felicity Waller", "geo": null, "id": 148810475524722700, "id_str": "148810475524722688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1679743493/Snapshot_20111207_18_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679743493/Snapshot_20111207_18_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I had a dream I bought jeans with dinosaurs on them.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:02:26 +0000", "from_user": "iLittleGirl_", "from_user_id": 258329747, "from_user_id_str": "258329747", "from_user_name": "' \\u2665 Michelle ", "geo": null, "id": 148810431828467700, "id_str": "148810431828467712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698820506/1450493155_6_ykBR_BBB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698820506/1450493155_6_ykBR_BBB_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "OMG ahaha bij eentje schreef ik \"Then the question is, is this a dinosaur? no! dinosaurs do not have lips!\" x'D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:02:10 +0000", "from_user": "terrafossil", "from_user_id": 22167301, "from_user_id_str": "22167301", "from_user_name": "Terra Fossil Wine", "geo": null, "id": 148810366594461700, "id_str": "148810366594461697", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1124426780/BANNER_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1124426780/BANNER_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Dinosaur jokes so bad... they're good! http://t.co/DRymgqWy @dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:01:17 +0000", "from_user": "tkjblackt", "from_user_id": 382378779, "from_user_id_str": "382378779", "from_user_name": "Faustino Aragon", "geo": null, "id": 148810144728363000, "id_str": "148810144728363008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1565877601/299_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1565877601/299_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "My idea of a romantic dinner for two involves a surprising amount of papier-mache dinosaurs.How many more spills do you think parents in pap", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:01:09 +0000", "from_user": "sbamizerj", "from_user_id": 381098741, "from_user_id_str": "381098741", "from_user_name": "Alphonse Piper", "geo": null, "id": 148810110842581000, "id_str": "148810110842580993", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1562776805/278_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1562776805/278_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "\"Yeah let's clone some sheep cause dinosaurs would be too awesome.\" - Scientists.If a black dude tweets the N-word... Can I RT that? What th", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:00:48 +0000", "from_user": "NewsDetroit", "from_user_id": 104938477, "from_user_id_str": "104938477", "from_user_name": "Detroit News", "geo": null, "id": 148810021940109300, "id_str": "148810021940109313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/768830974/facbeook_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/768830974/facbeook_twitter_normal.png", "source": "<a href="http://fwix.com" rel="nofollow">Fwix</a>", "text": "'Lincoln,' robots, dinosaurs and more - http://t.co/44Zb0Yz1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:00:23 +0000", "from_user": "trkravtin", "from_user_id": 33185662, "from_user_id_str": "33185662", "from_user_name": "Teresa Rolfe Kravtin", "geo": null, "id": 148809915023114240, "id_str": "148809915023114240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1652447446/f179f1db-a7a0-41bd-a676-13c59e0b2f66_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652447446/f179f1db-a7a0-41bd-a676-13c59e0b2f66_normal.png", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": ".@MrSchuReads: #Bookaday Dinosaur Dig! by Penny Dale http://t.co/WzhcESnE . Perfect for kids who love dinosaurs, digging, and counting. :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:00:22 +0000", "from_user": "GigaTools", "from_user_id": 65345619, "from_user_id_str": "65345619", "from_user_name": "GigaTools", "geo": null, "id": 148809912552652800, "id_str": "148809912552652800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/746396343/GT_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/746396343/GT_normal.png", "source": "<a href="http://www.gigatools.com" rel="nofollow">GigaTools</a>", "text": "New Totally Enormous Extinct Dinosaurs Gigs Announced! http://t.co/RHVsYAKV #gigs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:59:32 +0000", "from_user": "elainewrightx", "from_user_id": 66155230, "from_user_id_str": "66155230", "from_user_name": "Elaine Wright", "geo": null, "id": 148809702543859700, "id_str": "148809702543859712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1644319113/IMG01199-20111116-1742_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644319113/IMG01199-20111116-1742_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@andrewcurren having chicken dinosaurs for dinner ;) don't hate me cause u aint me xox", "to_user": "andrewcurren", "to_user_id": 53453165, "to_user_id_str": "53453165", "to_user_name": "Andrew Curren"}, +{"created_at": "Mon, 19 Dec 2011 16:58:29 +0000", "from_user": "kthryndumas", "from_user_id": 35510896, "from_user_id_str": "35510896", "from_user_name": "Katie Dumas", "geo": null, "id": 148809437820358660, "id_str": "148809437820358656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1659429045/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659429045/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @OhhhBlakeee: Kiss me if I'm wrong, but dinosaurs still exist, right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:58:16 +0000", "from_user": "Lakeishagcm", "from_user_id": 440187715, "from_user_id_str": "440187715", "from_user_name": "Lakeisha Brumit", "geo": null, "id": 148809382786895870, "id_str": "148809382786895874", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700527443/large_aha_007_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700527443/large_aha_007_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Oshkosh B'gosh Boys 8-20 Dinosaur Briefs 3Pair Pack, Multi, 8: Oshkosh b'gosh boys 3 pair pack briefs are made f... http://t.co/FQ0cZjdg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:58:02 +0000", "from_user": "b_skinner12", "from_user_id": 306864997, "from_user_id_str": "306864997", "from_user_name": "Becca Skinner", "geo": null, "id": 148809324649656320, "id_str": "148809324649656320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1678387592/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678387592/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I don't like dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:57:38 +0000", "from_user": "weefz", "from_user_id": 8358972, "from_user_id_str": "8358972", "from_user_name": "Debbie Timmins", "geo": null, "id": 148809224271568900, "id_str": "148809224271568896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1676276317/Debbie_Avatar_Christmas_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676276317/Debbie_Avatar_Christmas_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "Humans fed on dinosaurs RT @c_kahler: Common Misconceptions in the US. http://t.co/LYzpuvi6 via @qriously", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:57:34 +0000", "from_user": "_RoxyJohnson", "from_user_id": 42413576, "from_user_id_str": "42413576", "from_user_name": "Rox", "geo": null, "id": 148809209436311550, "id_str": "148809209436311552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701859753/N493QGFt_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701859753/N493QGFt_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@LFCWAC :O there were real dinosaurs in jurassic park! :L", "to_user": "LFCWAC", "to_user_id": 142089971, "to_user_id_str": "142089971", "to_user_name": "William Crosby", "in_reply_to_status_id": 148808879613034500, "in_reply_to_status_id_str": "148808879613034496"}, +{"created_at": "Mon, 19 Dec 2011 16:57:13 +0000", "from_user": "sakyant", "from_user_id": 21071788, "from_user_id_str": "21071788", "from_user_name": "spencer littlewood", "geo": null, "id": 148809121087488000, "id_str": "148809121087488002", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/89397415/DSC02807_f-v_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/89397415/DSC02807_f-v_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "latest additions Clash of the Dinosaurs: This show is all about dinosaurs inside and out to\\u2026 http://t.co/tihhSxLK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:57:07 +0000", "from_user": "darealestballer", "from_user_id": 380915766, "from_user_id_str": "380915766", "from_user_name": "Damien Smith", "geo": null, "id": 148809095657439230, "id_str": "148809095657439232", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1647462905/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647462905/profile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "macasaurus piimpadactal those are ghetto dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 16:56:46 +0000", "from_user": "Erictga", "from_user_id": 431683572, "from_user_id_str": "431683572", "from_user_name": "Eric Beinlich", "geo": null, "id": 148809004229996540, "id_str": "148809004229996544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680993073/large_255_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680993073/large_255_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dinosaurs of All Sizes (World of Dinosaurs): Describes the various sizes of dinosaurs, including Tyrannosaurus R... http://t.co/GK0QqrEL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:56:41 +0000", "from_user": "xxmaiarockzxx", "from_user_id": 158107243, "from_user_id_str": "158107243", "from_user_name": "maiaa :)", "geo": null, "id": 148808986425167870, "id_str": "148808986425167874", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1228657624/newnew_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1228657624/newnew_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/dLVdT7Xf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:56:22 +0000", "from_user": "shandikchendric", "from_user_id": 305939050, "from_user_id_str": "305939050", "from_user_name": "Shandi Hendrickson", "geo": null, "id": 148808905672237060, "id_str": "148808905672237057", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685417946/eva-mendes-nude-jane-magazine-tm_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685417946/eva-mendes-nude-jane-magazine-tm_1__normal.jpg", "source": "<a href="http://dealsretailstore.info" rel="nofollow">dealsretailstoredotinfo</a>", "text": "BrewsterBrewster Nat Geo Kids NG94615 Pre-p..Only $ 45.08 http://t.co/Gd47Dl1U", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:56:16 +0000", "from_user": "LFCWAC", "from_user_id": 142089971, "from_user_id_str": "142089971", "from_user_name": "William Crosby", "geo": null, "id": 148808879613034500, "id_str": "148808879613034496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1183352949/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1183352949/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@_RoxyJohnson yeah :L Imagine the money they could have saved if they had hired you instead of real dinosaurs for Jurassic Park. :L", "to_user": "_RoxyJohnson", "to_user_id": 42413576, "to_user_id_str": "42413576", "to_user_name": "Rox", "in_reply_to_status_id": 148808298387353600, "in_reply_to_status_id_str": "148808298387353600"}, +{"created_at": "Mon, 19 Dec 2011 16:56:03 +0000", "from_user": "CookeriNDEED", "from_user_id": 290023949, "from_user_id_str": "290023949", "from_user_name": "Jonathan Cook(er)", "geo": null, "id": 148808826240516100, "id_str": "148808826240516097", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1654991370/Cooker__20Ernest_Andy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654991370/Cooker__20Ernest_Andy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@azizansari just listened \"Walking with Dinosaurs.\" Was that at the museum in Charleston? That exhibit scared the bejesus out of 5yo me.", "to_user": "azizansari", "to_user_id": 6480682, "to_user_id_str": "6480682", "to_user_name": "Aziz Ansari"}, +{"created_at": "Mon, 19 Dec 2011 16:56:02 +0000", "from_user": "faalyafa", "from_user_id": 286096947, "from_user_id_str": "286096947", "from_user_name": "Qayyum \\u2665", "geo": null, "id": 148808821777776640, "id_str": "148808821777776641", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697229926/379484_199499753466590_100002197008527_461861_1810643863_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697229926/379484_199499753466590_100002197008527_461861_1810643863_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "#IWasThatKid who had a tons of dinosaurs' collections :B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:55:41 +0000", "from_user": "youngleebj", "from_user_id": 57095106, "from_user_id_str": "57095106", "from_user_name": "Josh Lee", "geo": null, "id": 148808732283912200, "id_str": "148808732283912193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1236375070/IMG_0309_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1236375070/IMG_0309_normal.JPG", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "I'm at World's Largest Dinosaurs Exhibit at the American Museum of Natural History (Central Park West, New York) http://t.co/M4Eu45bK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:55:18 +0000", "from_user": "Margyfoo", "from_user_id": 431762201, "from_user_id_str": "431762201", "from_user_name": "Margy Timmins", "geo": null, "id": 148808637324861440, "id_str": "148808637324861440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681168519/2poqinzs54_129668058-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681168519/2poqinzs54_129668058-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "BIO-BYTES Game Base - T-Rex (Brown): Tyrannosaurus Rex (Tyrant Lizard King) are fearsome dinosaurs from earth's ... http://t.co/cXJslg0d", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:54:25 +0000", "from_user": "greatGABINO", "from_user_id": 208704666, "from_user_id_str": "208704666", "from_user_name": "Heavy Toker. \\u263A", "geo": null, "id": 148808414234021900, "id_str": "148808414234021888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1607199150/lunapic_131960359632341_33_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607199150/lunapic_131960359632341_33_normal.gif", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @taylor_renae_: @greatGABINO dinosaurs these days lmfao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:54:15 +0000", "from_user": "poynterbabe", "from_user_id": 372374710, "from_user_id_str": "372374710", "from_user_name": "Poynter.", "geo": null, "id": 148808374941794300, "id_str": "148808374941794304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702373315/ranitaaaa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702373315/ranitaaaa_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/eqAig1kh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:53:36 +0000", "from_user": "jane2485", "from_user_id": 420206810, "from_user_id_str": "420206810", "from_user_name": "jane", "geo": null, "id": 148808209812041730, "id_str": "148808209812041728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1655186844/01_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655186844/01_normal.jpeg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dinosaurs Prepasted Wall Border by Borde: Dinosaurs prepasted wall border. Measure http://t.co/Ur1W2BdG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:51:34 +0000", "from_user": "Infamist92", "from_user_id": 355665985, "from_user_id_str": "355665985", "from_user_name": "jo\\u0438\\u03B1\\u0442\\u043D\\u03B1\\u0438", "geo": null, "id": 148807697888849920, "id_str": "148807697888849920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1648409657/INFAMISTNOWWW_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648409657/INFAMISTNOWWW_normal.png", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Photo: \\u203A God Creates Dinosaurs. God Destroys Dinosaurs. God Creates Man. Man Destorys God. Man Creates... http://t.co/EU3cs7Kr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:51:03 +0000", "from_user": "cianopep", "from_user_id": 330320297, "from_user_id_str": "330320297", "from_user_name": "kojo peprah", "geo": null, "id": 148807568502964220, "id_str": "148807568502964224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1429201885/31049_1464558372366_1185690132_31343642_5876549_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1429201885/31049_1464558372366_1185690132_31343642_5876549_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @kofif13: Hahahahaha~RT @edemkeith: May god forgive u\"@_freakynerd_: Ewes are the reason why dinosaurs are extinct. That was ... http://t.co/uG7EaasB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:50:14 +0000", "from_user": "taylor_renae_", "from_user_id": 43984553, "from_user_id_str": "43984553", "from_user_name": "Taylor R.H", "geo": null, "id": 148807362948497400, "id_str": "148807362948497408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695666601/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695666601/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@greatGABINO dinosaurs these days lmfao", "to_user": "greatGABINO", "to_user_id": 208704666, "to_user_id_str": "208704666", "to_user_name": "Heavy Toker. \\u263A", "in_reply_to_status_id": 148807006189400060, "in_reply_to_status_id_str": "148807006189400065"}, +{"created_at": "Mon, 19 Dec 2011 16:50:09 +0000", "from_user": "sashaboersma", "from_user_id": 15325961, "from_user_id_str": "15325961", "from_user_name": "Sasha Boersma", "geo": null, "id": 148807342312538100, "id_str": "148807342312538113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1093024945/9764edae-5c53-4b09-abbd-efdf5ab423c4_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1093024945/9764edae-5c53-4b09-abbd-efdf5ab423c4_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Ha! IDM pros have been calling 'em that for years and told to cut it out!! RT @klashton27: @sashaboersma because they're dinosaurs!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:48:28 +0000", "from_user": "WolfgangBaldwin", "from_user_id": 245074875, "from_user_id_str": "245074875", "from_user_name": "Terrence Baldwin", "geo": null, "id": 148806916645195780, "id_str": "148806916645195776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1676080682/profile_image_1323125663138_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676080682/profile_image_1323125663138_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">TwidroydPRO</a>", "text": "Remember when the speaker phone was the bluetooth. We are dinosaurs. SMH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:48:26 +0000", "from_user": "ryanegeez", "from_user_id": 333536696, "from_user_id_str": "333536696", "from_user_name": "ryane", "geo": null, "id": 148806910412460030, "id_str": "148806910412460032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1624732454/geezyfg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624732454/geezyfg_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @Trustme_Imma_Dr: I havnt talked to @ryanegeez since dinosaurs roamed..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:48:15 +0000", "from_user": "9pymitsurv", "from_user_id": 368847874, "from_user_id_str": "368847874", "from_user_name": "Rickey Tackett", "geo": null, "id": 148806863776002050, "id_str": "148806863776002048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1531159472/923_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1531159472/923_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "My idea of a romantic dinner for two involves a surprising amount of papier-mache dinosaurs.If you want us to know how much you love biking,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:48:13 +0000", "from_user": "Trustme_Imma_Dr", "from_user_id": 158204905, "from_user_id_str": "158204905", "from_user_name": "Error Code: 69", "geo": null, "id": 148806855932653570, "id_str": "148806855932653569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1644457201/IMG00048-20111117-1655_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644457201/IMG00048-20111117-1655_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "I havnt talked to @ryanegeez since dinosaurs roamed..", "to_user": "ryanegeez", "to_user_id": 333536696, "to_user_id_str": "333536696", "to_user_name": "ryane", "in_reply_to_status_id": 148805804663910400, "in_reply_to_status_id_str": "148805804663910401"}, +{"created_at": "Mon, 19 Dec 2011 16:47:26 +0000", "from_user": "JohnRondina", "from_user_id": 214261959, "from_user_id_str": "214261959", "from_user_name": "John Rondina", "geo": null, "id": 148806659215589380, "id_str": "148806659215589376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1178635887/ed3b93b1ceaadf18d1d151ef0ac933c8_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1178635887/ed3b93b1ceaadf18d1d151ef0ac933c8_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "Touch screens may soon be dinosaurs #touchless #iPhone http://t.co/1fP5U41Y", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:47:10 +0000", "from_user": "lisa1281", "from_user_id": 46656189, "from_user_id_str": "46656189", "from_user_name": "Lisa", "geo": null, "id": 148806589841809400, "id_str": "148806589841809408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687938420/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687938420/image_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @hmns: Parents! Does your child love dinosaurs? Mummies? Weird insects? Book their birthday party at HMNS: http://t.co/YduBiU0p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:46:53 +0000", "from_user": "SeanCaron148", "from_user_id": 398488062, "from_user_id_str": "398488062", "from_user_name": "Sean Caron", "geo": null, "id": 148806519318777860, "id_str": "148806519318777856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1607166846/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607166846/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:46:31 +0000", "from_user": "skinflower14", "from_user_id": 275763921, "from_user_id_str": "275763921", "from_user_name": "Kneha Kc", "geo": null, "id": 148806428864413700, "id_str": "148806428864413698", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1300012011/fgt_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1300012011/fgt_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Herbivorous dinosaurs? Wow!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:46:22 +0000", "from_user": "David_Bressan", "from_user_id": 278168522, "from_user_id_str": "278168522", "from_user_name": "David Bressan", "geo": null, "id": 148806391149232130, "id_str": "148806391149232128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1302280430/BRESSAN_DAVID_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1302280430/BRESSAN_DAVID_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "If earth-history~1 year: There are now dinosaurs that we would call birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:46:09 +0000", "from_user": "EpicHumor95", "from_user_id": 342155455, "from_user_id_str": "342155455", "from_user_name": "Dust!n Sm!th", "geo": null, "id": 148806335763451900, "id_str": "148806335763451904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670780691/384309_329854023707145_100000476496276_1412252_418106293_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670780691/384309_329854023707145_100000476496276_1412252_418106293_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "You should never live in the past. Unless you\\u2019re a time traveler. Cause dinosaurs rule....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:45:48 +0000", "from_user": "hiennessy", "from_user_id": 44407624, "from_user_id_str": "44407624", "from_user_name": "Hien Tran", "geo": null, "id": 148806245745303550, "id_str": "148806245745303552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1564598680/254603_2375774720653_1439149979_2792369_6189122_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1564598680/254603_2375774720653_1439149979_2792369_6189122_n_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "http://t.co/LKqnTTWv TOTALLY ENORMOUS EXTINCT DINOSAURS, F YEAH!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:45:43 +0000", "from_user": "HotStockCafe", "from_user_id": 217580886, "from_user_id_str": "217580886", "from_user_name": "Penny HotStocks", "geo": null, "id": 148806224245309440, "id_str": "148806224245309440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1171074806/hsc_logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1171074806/hsc_logo_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "$NGMC \\u2013 Since the Dinosaurs are gone... Next Generation Energy Corp.\\u2019s asset life for producing natural gas wells may be decades long.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:45:42 +0000", "from_user": "DaddyHotStocks", "from_user_id": 217658468, "from_user_id_str": "217658468", "from_user_name": "Carl", "geo": null, "id": 148806222760517630, "id_str": "148806222760517632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1187987835/mcp_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1187987835/mcp_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "$NGMC \\u2013 Since the Dinosaurs are gone... Next Generation Energy Corp.\\u2019s asset life for producing natural gas wells may be decades long.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:45:42 +0000", "from_user": "JayBugster", "from_user_id": 170804666, "from_user_id_str": "170804666", "from_user_name": "Jay Bugster", "geo": null, "id": 148806221544161280, "id_str": "148806221544161281", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "$NGMC \\u2013 Since the Dinosaurs are gone... Next Generation Energy Corp.\\u2019s asset life for producing natural gas wells may be decades long.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:45:42 +0000", "from_user": "Penny_Hotstocks", "from_user_id": 196136720, "from_user_id_str": "196136720", "from_user_name": "Penny Hotstocks", "geo": null, "id": 148806220336209920, "id_str": "148806220336209920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1150088359/vmac2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1150088359/vmac2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "$NGMC \\u2013 Since the Dinosaurs are gone... Next Generation Energy Corp.\\u2019s asset life for producing natural gas wells may be decades long.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:45:41 +0000", "from_user": "StockShocks", "from_user_id": 373489572, "from_user_id_str": "373489572", "from_user_name": "Stock Shocks", "geo": null, "id": 148806219145035780, "id_str": "148806219145035777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1542815545/stock-shocks3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542815545/stock-shocks3_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "$NGMC \\u2013 Since the Dinosaurs are gone... Next Generation Energy Corp.\\u2019s asset life for producing natural gas wells may be decades long.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:45:41 +0000", "from_user": "stocktalk101", "from_user_id": 67735266, "from_user_id_str": "67735266", "from_user_name": "stock talk", "geo": null, "id": 148806217366634500, "id_str": "148806217366634498", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/506663184/LOGO_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/506663184/LOGO_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "$NGMC \\u2013 Since the Dinosaurs are gone... Next Generation Energy Corp.\\u2019s asset life for producing natural gas wells may be decades long.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:45:41 +0000", "from_user": "PennystockEmpor", "from_user_id": 334114733, "from_user_id_str": "334114733", "from_user_name": "PennystockEmporium", "geo": null, "id": 148806216141905920, "id_str": "148806216141905921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1438723359/favicon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1438723359/favicon_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "$NGMC \\u2013 Since the Dinosaurs are gone... Next Generation Energy Corp.\\u2019s asset life for producing natural gas wells may be decades long.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:45:40 +0000", "from_user": "StockUltraman", "from_user_id": 196026134, "from_user_id_str": "196026134", "from_user_name": "Stock Ultraman", "geo": null, "id": 148806214418042880, "id_str": "148806214418042880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1171058207/stock_ultraman_150_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1171058207/stock_ultraman_150_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "$NGMC \\u2013 Since the Dinosaurs are gone... Next Generation Energy Corp.\\u2019s asset life for producing natural gas wells may be decades long.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:45:40 +0000", "from_user": "Virmmac", "from_user_id": 122376894, "from_user_id_str": "122376894", "from_user_name": "D Graef", "geo": null, "id": 148806213218471940, "id_str": "148806213218471936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1132117148/V_new_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1132117148/V_new_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "$NGMC \\u2013 Since the Dinosaurs are gone... Next Generation Energy Corp.\\u2019s asset life for producing natural gas wells may be decades long.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:45:27 +0000", "from_user": "fuuck_yuu", "from_user_id": 195369323, "from_user_id_str": "195369323", "from_user_name": "\\uE32Dryryryryryry\\uE32D", "geo": null, "id": 148806157203537920, "id_str": "148806157203537921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668428610/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668428610/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#CoolStoryBro.. Just add some more dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:45:18 +0000", "from_user": "hmns", "from_user_id": 16013208, "from_user_id_str": "16013208", "from_user_name": "hmns", "geo": null, "id": 148806120281083900, "id_str": "148806120281083907", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/59059717/dino_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/59059717/dino_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Parents! Does your child love dinosaurs? Mummies? Weird insects? Book their birthday party at HMNS: http://t.co/YduBiU0p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:44:39 +0000", "from_user": "LJ_Putzier20", "from_user_id": 399591902, "from_user_id_str": "399591902", "from_user_name": "LJ Putzier", "geo": null, "id": 148805958179631100, "id_str": "148805958179631104", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1683837299/RpgcVmID_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683837299/RpgcVmID_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Birds are dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:43:59 +0000", "from_user": "20_liveitup_12", "from_user_id": 440116102, "from_user_id_str": "440116102", "from_user_name": "Beautifully me", "geo": null, "id": 148805787916050430, "id_str": "148805787916050432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700615418/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700615418/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:43:59 +0000", "from_user": "CEOJakeDillard", "from_user_id": 417454072, "from_user_id_str": "417454072", "from_user_name": "Jake Dillard", "geo": null, "id": 148805787844755460, "id_str": "148805787844755457", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1649407706/vodafone_mclaren_mercedes_mp4-24_-_side_view_-_a4__300dpi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649407706/vodafone_mclaren_mercedes_mp4-24_-_side_view_-_a4__300dpi_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "I like my women like I like my oatmeal. Quick, easy, and covered in facts about dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:41:56 +0000", "from_user": "nashasaurus", "from_user_id": 51570869, "from_user_id_str": "51570869", "from_user_name": "Jessie Nash", "geo": null, "id": 148805271379120130, "id_str": "148805271379120129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699416820/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699416820/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @OhhhBlakeee: Kiss me if I'm wrong, but dinosaurs still exist, right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:41:41 +0000", "from_user": "LandOfBricks", "from_user_id": 405208431, "from_user_id_str": "405208431", "from_user_name": "Land of Bricks", "geo": null, "id": 148805210196811780, "id_str": "148805210196811776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1622890624/images_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622890624/images_normal.jpeg", "source": "<a href="http://landofbricks.com" rel="nofollow">LandOfBricksAPP</a>", "text": "100% Lego Duplo Bricks Blocks Figures Dinosaurs Trains Huge Lot 550+ Pcs 16 Lbs http://t.co/WlzdkIxt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:41:38 +0000", "from_user": "BigUpsCammy", "from_user_id": 97247509, "from_user_id_str": "97247509", "from_user_name": "Cammy-G", "geo": null, "id": 148805198096240640, "id_str": "148805198096240640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1623137298/Snapshot_new_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1623137298/Snapshot_new_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@AJAndrew83 dude, when I come to Pittsburgh..we shall see dinosaurs together lol. Drinks on me aha", "to_user": "AJAndrew83", "to_user_id": 71626076, "to_user_id_str": "71626076", "to_user_name": "andrew schaffer", "in_reply_to_status_id": 148803065745645570, "in_reply_to_status_id_str": "148803065745645568"}, +{"created_at": "Mon, 19 Dec 2011 16:41:34 +0000", "from_user": "Orie0", "from_user_id": 291359756, "from_user_id_str": "291359756", "from_user_name": "Orie Davis", "geo": null, "id": 148805179695837200, "id_str": "148805179695837187", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657878627/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657878627/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @OhhhBlakeee: Kiss me if I'm wrong, but dinosaurs still exist, right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:41:21 +0000", "from_user": "MyPapaya_", "from_user_id": 316165007, "from_user_id_str": "316165007", "from_user_name": "maya hampton", "geo": null, "id": 148805125299912700, "id_str": "148805125299912706", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1678030485/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678030485/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Aaron D Lee & the D aint for Dinosaurs .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:40:52 +0000", "from_user": "TheOneFifteen", "from_user_id": 346977849, "from_user_id_str": "346977849", "from_user_name": "SamKilledKennedy", "geo": null, "id": 148805006366220300, "id_str": "148805006366220288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657849639/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657849639/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@_MeganStevenson Dinosaurs could take up to 3 days in the post, sorry :/x", "to_user": "_MeganStevenson", "to_user_id": 285910013, "to_user_id_str": "285910013", "to_user_name": "Harry Potter ", "in_reply_to_status_id": 148803493312995330, "in_reply_to_status_id_str": "148803493312995328"}, +{"created_at": "Mon, 19 Dec 2011 16:40:23 +0000", "from_user": "TomBendall", "from_user_id": 104275540, "from_user_id_str": "104275540", "from_user_name": "Tom Bendall", "geo": null, "id": 148804885226340350, "id_str": "148804885226340353", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1642061578/318364_2383151350862_1613092135_2322798_2100587467_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642061578/318364_2383151350862_1613092135_2322798_2100587467_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Middle Jurassic (169-156mya). Life diversifies and dinosaurs become more recognisable. Ichthyosaurs are particularly common #GeologyAdvent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:40:20 +0000", "from_user": "nem0zburd", "from_user_id": 344468189, "from_user_id_str": "344468189", "from_user_name": "Lawrin.", "geo": null, "id": 148804871552901120, "id_str": "148804871552901121", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680844808/Picture_0016_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680844808/Picture_0016_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I like dinosaurs http://t.co/xeaNeJHF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:40:05 +0000", "from_user": "jjjjhollie", "from_user_id": 75816363, "from_user_id_str": "75816363", "from_user_name": "Jess Smith", "geo": null, "id": 148804807518470140, "id_str": "148804807518470144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695163006/twitterpic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695163006/twitterpic_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "yes, got tickets for next years gazastock festival:') hoping to see the origami dinosaurs again (yn)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:40:01 +0000", "from_user": "SalsaChoicer", "from_user_id": 121968669, "from_user_id_str": "121968669", "from_user_name": "Salsa Choicer", "geo": null, "id": 148804790481203200, "id_str": "148804790481203200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://google.com" rel="nofollow">SalsaChoicer</a>", "text": "did you know? dinosaurs hate lazers in the morning", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:39:54 +0000", "from_user": "Dixieqfx", "from_user_id": 431766508, "from_user_id_str": "431766508", "from_user_name": "Dixie Haith", "geo": null, "id": 148804760865214460, "id_str": "148804760865214465", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681172193/eg1eji453q_131690635-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681172193/eg1eji453q_131690635-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dinosaurs! (Turtleback School & Library Binding Edition) (DK Reader - Level 4): FOR USE IN SCHOOLS AND LIBRARIES... http://t.co/ejO6PfAY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:39:44 +0000", "from_user": "staceharrowerx", "from_user_id": 357094583, "from_user_id_str": "357094583", "from_user_name": "Stacey harrower", "geo": null, "id": 148804721099014140, "id_str": "148804721099014145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1596209206/twitter_pictureeeeeeee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596209206/twitter_pictureeeeeeee_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Turkey dinosaurs are the shit", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:39:36 +0000", "from_user": "x667", "from_user_id": 254435005, "from_user_id_str": "254435005", "from_user_name": "Sam Sand", "geo": null, "id": 148804687485874180, "id_str": "148804687485874176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "ScDa: For the first time, the presence of large bodied herbivorous dinosaurs in Antarctica has been recorded. Until now, remains of s...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:39:17 +0000", "from_user": "StallingsM", "from_user_id": 101869258, "from_user_id_str": "101869258", "from_user_name": "MaryAnn Stallings", "geo": null, "id": 148804607475318800, "id_str": "148804607475318784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/610231152/Me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/610231152/Me_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @hdiblasi: Videos - Dinosaurs Through History and Walking With Dinosaurs http://t.co/0vNLiATz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:38:56 +0000", "from_user": "uCream_4Scoobii", "from_user_id": 178614097, "from_user_id_str": "178614097", "from_user_name": "\\u26A2Silent Movement\\u26A2", "geo": null, "id": 148804516807061500, "id_str": "148804516807061504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1654047424/uCream_4Scoobii_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654047424/uCream_4Scoobii_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Yoo ii need ta call sumbody && tell em bout my dream so it dont kum tru . even tho ion see dinosaurs cumn bak no tyme soon :) still ...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:38:54 +0000", "from_user": "Alicedeeney", "from_user_id": 165218618, "from_user_id_str": "165218618", "from_user_name": "alice deeney", "geo": null, "id": 148804510263939070, "id_str": "148804510263939072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679746902/Picture_570_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679746902/Picture_570_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Went to Narnia full of dinosaurs with George Bush in my dream, was about to get ate until @dougiemcfly rode on a unicorn to save us... lolol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:38:51 +0000", "from_user": "DJSoExquisite", "from_user_id": 23485801, "from_user_id_str": "23485801", "from_user_name": "Devoir Johnson", "geo": null, "id": 148804495474819070, "id_str": "148804495474819073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657506950/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657506950/image_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "@Shanieceprice lol Idk abt the dinosaurs", "to_user": "Shanieceprice", "to_user_id": 150209296, "to_user_id_str": "150209296", "to_user_name": "shaniece", "in_reply_to_status_id": 148744686536888320, "in_reply_to_status_id_str": "148744686536888320"}, +{"created_at": "Mon, 19 Dec 2011 16:38:14 +0000", "from_user": "waitatiri", "from_user_id": 71996755, "from_user_id_str": "71996755", "from_user_name": "\\u0434\\u0432\\u0430 \\u0442\\u0440\\u0438", "geo": null, "id": 148804342097510400, "id_str": "148804342097510400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702195233/webcam-toy-photo8_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702195233/webcam-toy-photo8_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@chrisvisconti which one do you prefer, gummy bears or dinosaurs?", "to_user": "chrisvisconti", "to_user_id": 22599099, "to_user_id_str": "22599099", "to_user_name": "Christopher Visconti", "in_reply_to_status_id": 148803116685475840, "in_reply_to_status_id_str": "148803116685475841"}, +{"created_at": "Mon, 19 Dec 2011 16:37:57 +0000", "from_user": "solisjesse", "from_user_id": 157792425, "from_user_id_str": "157792425", "from_user_name": "Jesse Solis", "geo": null, "id": 148804272274944000, "id_str": "148804272274944000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1499154230/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1499154230/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Dinosaurs and bosco sticks for lunch. WINNING", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:37:46 +0000", "from_user": "Sophie_Compres", "from_user_id": 281256566, "from_user_id_str": "281256566", "from_user_name": "Sophie C'\\u2661", "geo": null, "id": 148804226875789300, "id_str": "148804226875789313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702298325/379906_2657056218389_1015357104_32837743_631743411_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702298325/379906_2657056218389_1015357104_32837743_631743411_n_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/Ewi6B2F9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:36:29 +0000", "from_user": "BigBOOTYNeezie", "from_user_id": 165695299, "from_user_id_str": "165695299", "from_user_name": "XII.VIII. XI \\u10E6", "geo": null, "id": 148803901041287170, "id_str": "148803901041287168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693551796/webcam-toy-photo8_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693551796/webcam-toy-photo8_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Reading this dinosaurs book in Spanish lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:36:17 +0000", "from_user": "80Ian80", "from_user_id": 292178339, "from_user_id_str": "292178339", "from_user_name": "Ian D", "geo": null, "id": 148803852848730100, "id_str": "148803852848730112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1339283075/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1339283075/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@rickygervais if hell existed it would be brilliant, just a load of us atheists standing around chatting about dinosaurs.", "to_user": "rickygervais", "to_user_id": 20015311, "to_user_id_str": "20015311", "to_user_name": "Ricky Gervais"}, +{"created_at": "Mon, 19 Dec 2011 16:36:02 +0000", "from_user": "RebekahFawcett", "from_user_id": 292499282, "from_user_id_str": "292499282", "from_user_name": "Rebekah Fawcett", "geo": null, "id": 148803790299086850, "id_str": "148803790299086848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1337565178/FACE_CARD_PICS_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1337565178/FACE_CARD_PICS_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@kkdietitian - love it! We do this with our kids, although they usually choose dinosaurs or kitty cats for their pancake shapes.", "to_user": "kkdietitian", "to_user_id": 63162911, "to_user_id_str": "63162911", "to_user_name": "Kim Kirchherr", "in_reply_to_status_id": 148755385107484670, "in_reply_to_status_id_str": "148755385107484672"}, +{"created_at": "Mon, 19 Dec 2011 16:35:58 +0000", "from_user": "_jazzybooo", "from_user_id": 212805003, "from_user_id_str": "212805003", "from_user_name": "Jazmin Perez\\u270C\\u2122", "geo": null, "id": 148803772364238850, "id_str": "148803772364238849", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700728067/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700728067/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "That girl knows a lot about dinosaurs!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:35:47 +0000", "from_user": "lyndonroberts", "from_user_id": 31096873, "from_user_id_str": "31096873", "from_user_name": "Lyndon Roberts", "geo": null, "id": 148803727048970240, "id_str": "148803727048970241", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/658781936/untitled_normal.bmp", "profile_image_url_https": "https://si0.twimg.com/profile_images/658781936/untitled_normal.bmp", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@rickygervais There are no dinosaurs in the bible......", "to_user": "rickygervais", "to_user_id": 20015311, "to_user_id_str": "20015311", "to_user_name": "Ricky Gervais"}, +{"created_at": "Mon, 19 Dec 2011 16:35:34 +0000", "from_user": "_jazzybooo", "from_user_id": 212805003, "from_user_id_str": "212805003", "from_user_name": "Jazmin Perez\\u270C\\u2122", "geo": null, "id": 148803671013081100, "id_str": "148803671013081088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700728067/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700728067/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Haha, my niece was all telling Edgar about dinosaurs. :b", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:35:25 +0000", "from_user": "turnupthesound", "from_user_id": 27071535, "from_user_id_str": "27071535", "from_user_name": "Leah Lovecat", "geo": null, "id": 148803632509362180, "id_str": "148803632509362178", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1568474302/blonde_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1568474302/blonde_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @statesidemenace: @turnupthesound I have to play a show tonight...so are dinosaurs more suited to look after the park or play in my band?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:35:24 +0000", "from_user": "its_imogennn", "from_user_id": 434521437, "from_user_id_str": "434521437", "from_user_name": "imogen mansfield", "geo": null, "id": 148803629640462340, "id_str": "148803629640462336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1688654634/428637253_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688654634/428637253_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@TheOneFifteen followback? Don't know what you're on about with these dinosaurs ahaha!", "to_user": "TheOneFifteen", "to_user_id": 346977849, "to_user_id_str": "346977849", "to_user_name": "SamKilledKennedy", "in_reply_to_status_id": 148803163812667400, "in_reply_to_status_id_str": "148803163812667392"}, +{"created_at": "Mon, 19 Dec 2011 16:34:27 +0000", "from_user": "tennysonestead", "from_user_id": 22547660, "from_user_id_str": "22547660", "from_user_name": "Tennyson E. Stead", "geo": null, "id": 148803389495578620, "id_str": "148803389495578624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1497644212/Tenny_Hat_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1497644212/Tenny_Hat_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@DeneenMelody The project itself is about 10 year old space commandoes battling giant alien dinosaurs and robots and such. Keep you posted!", "to_user": "DeneenMelody", "to_user_id": 19327027, "to_user_id_str": "19327027", "to_user_name": "Deneen Melody", "in_reply_to_status_id": 148784592239861760, "in_reply_to_status_id_str": "148784592239861760"}, +{"created_at": "Mon, 19 Dec 2011 16:34:25 +0000", "from_user": "Tiff06king", "from_user_id": 348068888, "from_user_id_str": "348068888", "from_user_name": "Tiffany King", "geo": null, "id": 148803379764805630, "id_str": "148803379764805632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1513295104/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1513295104/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:34:22 +0000", "from_user": "statesidemenace", "from_user_id": 95150233, "from_user_id_str": "95150233", "from_user_name": "The Stateside Menace", "geo": null, "id": 148803367177687040, "id_str": "148803367177687040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/562827790/m_82ad0bc0c699a8b0387ab6f6e8f4b69f_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/562827790/m_82ad0bc0c699a8b0387ab6f6e8f4b69f_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@turnupthesound I have to play a show tonight...so are dinosaurs more suited to look after the park or play in my band?", "to_user": "turnupthesound", "to_user_id": 27071535, "to_user_id_str": "27071535", "to_user_name": "Leah Lovecat", "in_reply_to_status_id": 148800915456016400, "in_reply_to_status_id_str": "148800915456016384"}, +{"created_at": "Mon, 19 Dec 2011 16:33:10 +0000", "from_user": "AJAndrew83", "from_user_id": 71626076, "from_user_id_str": "71626076", "from_user_name": "andrew schaffer", "geo": null, "id": 148803065745645570, "id_str": "148803065745645568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1538023845/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538023845/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@BigUpsCammy wat up bro u still seeing #dinosaurs lmao!!", "to_user": "BigUpsCammy", "to_user_id": 97247509, "to_user_id_str": "97247509", "to_user_name": "Cammy-G"}, +{"created_at": "Mon, 19 Dec 2011 16:32:27 +0000", "from_user": "TheSundayIndo", "from_user_id": 33178673, "from_user_id_str": "33178673", "from_user_name": "Sunday Independent", "geo": null, "id": 148802886560792580, "id_str": "148802886560792578", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/146439345/ireland-flag.jpg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/146439345/ireland-flag.jpg_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Titanosaur bone found in Antartica: LONG before the arrival of penguins, giant plant-eating dinosaurs roamed Ant... http://t.co/OPsqp1yc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:32:11 +0000", "from_user": "RawrxxTori", "from_user_id": 144937431, "from_user_id_str": "144937431", "from_user_name": "Tori Cox", "geo": null, "id": 148802819372232700, "id_str": "148802819372232704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1205429743/Photo_on_2011-01-02_at_13.44__4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1205429743/Photo_on_2011-01-02_at_13.44__4_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "I GOT A B- IN DINOSAURS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:32:07 +0000", "from_user": "udokovaba", "from_user_id": 275149590, "from_user_id_str": "275149590", "from_user_name": "Igor", "geo": null, "id": 148802802771181570, "id_str": "148802802771181569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1357382784/310_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1357382784/310_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/QxyDHcOY Magic Tree House Boxed Set, 1-4 Dinosaurs Before Dark, The Knight at Dawn, Mummies in the Morni", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:31:26 +0000", "from_user": "sharonsandia", "from_user_id": 432720761, "from_user_id_str": "432720761", "from_user_name": "sharon", "geo": null, "id": 148802632000086000, "id_str": "148802632000086016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696470569/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696470569/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@xLiChi is because I love dinosaurs yay :D!!!, I like your pic", "to_user": "xLiChi", "to_user_id": 433222472, "to_user_id_str": "433222472", "to_user_name": ".\\u2022'\\u2022.\\u2606\\u266ALiNnEa\\u2606\\u266A.\\u2022'\\u2022.", "in_reply_to_status_id": 148798630722142200, "in_reply_to_status_id_str": "148798630722142208"}, +{"created_at": "Mon, 19 Dec 2011 16:30:33 +0000", "from_user": "jloro92", "from_user_id": 247543087, "from_user_id_str": "247543087", "from_user_name": "Jordyn Loro", "geo": null, "id": 148802407617409020, "id_str": "148802407617409026", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1585443928/298549_10150407668040491_516385490_10594395_1087193222_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585443928/298549_10150407668040491_516385490_10594395_1087193222_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"@melwestwood: I'm quoting mean girls for the rest of my life. #bestmovieever\" \"and on the third day god killed the dinosaurs...\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:29:25 +0000", "from_user": "_KodeineSweet", "from_user_id": 152828049, "from_user_id_str": "152828049", "from_user_name": "\\u311A\\u03B1\\u1E49\\u03B1\\u03B1 uu\\u028E\\u05DF \\u0438\\u0455\\u043D\\u03B9\\u0442 \\u2661", "geo": null, "id": 148802124212482050, "id_str": "148802124212482048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701053627/389431_214714121936514_100001937845413_483991_1028002348_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701053627/389431_214714121936514_100001937845413_483991_1028002348_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @TattedNdFooling: \"@_KodeineSweet: Those dinosaurs on jurassic park is mean /:\"Lol They Not Suppose To Be Nice", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:28:40 +0000", "from_user": "klashton27", "from_user_id": 14241069, "from_user_id_str": "14241069", "from_user_name": "Kelly Lynne Ashton", "geo": null, "id": 148801935590428670, "id_str": "148801935590428672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1262054012/KLA_by_KW_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1262054012/KLA_by_KW_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@sashaboersma because they're dinosaurs!!!!", "to_user": "sashaboersma", "to_user_id": 15325961, "to_user_id_str": "15325961", "to_user_name": "Sasha Boersma", "in_reply_to_status_id": 148799653683535870, "in_reply_to_status_id_str": "148799653683535872"}, +{"created_at": "Mon, 19 Dec 2011 16:27:03 +0000", "from_user": "captainzeo", "from_user_id": 69006523, "from_user_id_str": "69006523", "from_user_name": "captainzeo", "geo": null, "id": 148801528973635600, "id_str": "148801528973635587", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1611664492/Untitled-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611664492/Untitled-1_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/cb6oaBcH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:26:59 +0000", "from_user": "tFFMrPink", "from_user_id": 270175716, "from_user_id_str": "270175716", "from_user_name": "Stefan Hartwig", "geo": null, "id": 148801511776993280, "id_str": "148801511776993281", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1282295585/k_helge_schneider_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1282295585/k_helge_schneider_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube video http://t.co/cmJLaX44 Battlefield 3 Wake Island Easter Eggs - 5 Dinosaurs - Backgr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:26:51 +0000", "from_user": "jvillaroman", "from_user_id": 755484, "from_user_id_str": "755484", "from_user_name": "Jeremy Villaroman", "geo": null, "id": 148801477723439100, "id_str": "148801477723439104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1133801549/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1133801549/avatar_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Now that I know about the Spielberg Face, I can make blockbuster movies about Dinosaurs and Aliens. http://t.co/MWvUyJFr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:26:03 +0000", "from_user": "iGBeezy", "from_user_id": 290852212, "from_user_id_str": "290852212", "from_user_name": "\\u00A4 Gunnar Brown \\u00A4 ", "geo": null, "id": 148801274723311600, "id_str": "148801274723311617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685983082/MNPsq0a5_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685983082/MNPsq0a5_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @OhhhBlakeee: Kiss me if I'm wrong, but dinosaurs still exist, right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:25:37 +0000", "from_user": "hdiblasi", "from_user_id": 7700432, "from_user_id_str": "7700432", "from_user_name": "Howie DiBlasi", "geo": null, "id": 148801166908727300, "id_str": "148801166908727298", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1120366703/2_PR_Crop3_327_SQ_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1120366703/2_PR_Crop3_327_SQ_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Videos - Dinosaurs Through History and Walking With Dinosaurs http://t.co/0vNLiATz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:24:34 +0000", "from_user": "KevBaz11", "from_user_id": 413188131, "from_user_id_str": "413188131", "from_user_name": "Kev Bailey", "geo": null, "id": 148800904471126000, "id_str": "148800904471126016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1642652690/kevv_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642652690/kevv_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@JesusChristFTM Hahaha your blogs get funnier all the fuckin time lad! Mary's made me dinosaurs, smiley faces and waffles so, INABIT, haha!!", "to_user": "JesusChristFTM", "to_user_id": 338305554, "to_user_id_str": "338305554", "to_user_name": "JesusChristFTM"}, +{"created_at": "Mon, 19 Dec 2011 16:24:18 +0000", "from_user": "mikehollyman", "from_user_id": 175845940, "from_user_id_str": "175845940", "from_user_name": "michael hollyman", "geo": null, "id": 148800834854060030, "id_str": "148800834854060032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1210313902/23115_587905410_194_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1210313902/23115_587905410_194_n_normal.jpg", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "@rickygervais I believe in dinosaurs.there's proof of there existence!! RT.", "to_user": "rickygervais", "to_user_id": 20015311, "to_user_id_str": "20015311", "to_user_name": "Ricky Gervais", "in_reply_to_status_id": 148790516744585200, "in_reply_to_status_id_str": "148790516744585216"}, +{"created_at": "Mon, 19 Dec 2011 16:23:24 +0000", "from_user": "mszsheilabby", "from_user_id": 26929759, "from_user_id_str": "26929759", "from_user_name": "Thuy Trang Nguyen", "geo": null, "id": 148800607673782270, "id_str": "148800607673782273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688118271/IMG_7473_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688118271/IMG_7473_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "then one crazy drunk/high night we would try to hop over the fence and touch the dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:22:52 +0000", "from_user": "mszsheilabby", "from_user_id": 26929759, "from_user_id_str": "26929759", "from_user_name": "Thuy Trang Nguyen", "geo": null, "id": 148800476115238900, "id_str": "148800476115238913", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688118271/IMG_7473_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688118271/IMG_7473_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "what if the dinosaurs were still alive.. we would have to live in fenced areas and shit. lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:22:41 +0000", "from_user": "RobinRiviera", "from_user_id": 206736428, "from_user_id_str": "206736428", "from_user_name": "\\u2661D", "geo": null, "id": 148800430049206270, "id_str": "148800430049206272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1590239770/IMG-20111016-00106_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1590239770/IMG-20111016-00106_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Totally Enormous Extinct Dinosaurs - Graden #Np (nokia reclame soundtrack). \\u2665___\\u2665", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:22:32 +0000", "from_user": "NathanSamuel", "from_user_id": 18602828, "from_user_id_str": "18602828", "from_user_name": "NathanSamuel", "geo": null, "id": 148800392367575040, "id_str": "148800392367575042", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/611667399/Nathan_CV_Pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/611667399/Nathan_CV_Pic_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Finally a new talk radio in GP to challenge @702 and its aging expat dinosaurs- New radio stations in 3 metros http://t.co/lymvDPd1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:22:23 +0000", "from_user": "SuhManThuh45", "from_user_id": 258616495, "from_user_id_str": "258616495", "from_user_name": "Samantha :)", "geo": null, "id": 148800351368257540, "id_str": "148800351368257536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693412081/2wXNkvl9_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693412081/2wXNkvl9_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@kanebrantley And on the 3rd day, God created the Remington boltaction rifle, so that Man could fight the dinosaurs And the homosexuals Amen", "to_user": "kanebrantley", "to_user_id": 278380047, "to_user_id_str": "278380047", "to_user_name": "Kane Brantley"}, +{"created_at": "Mon, 19 Dec 2011 16:22:20 +0000", "from_user": "k1i2a3", "from_user_id": 112857749, "from_user_id_str": "112857749", "from_user_name": "kiandra rivera", "geo": null, "id": 148800340253356030, "id_str": "148800340253356034", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1505324894/DSC03167new_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505324894/DSC03167new_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/aQ0fGiZN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:22:15 +0000", "from_user": "GaBbYSwAnZy", "from_user_id": 166598282, "from_user_id_str": "166598282", "from_user_name": "PrOmOaLLdAy", "geo": null, "id": 148800321240567800, "id_str": "148800321240567808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693087097/252496_10150269699261189_529361188_9278245_2109449_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693087097/252496_10150269699261189_529361188_9278245_2109449_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Former MLB player Carl Everett doesn't believe dinosaurs ever existed! http://t.co/NaLsJyEQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:22:10 +0000", "from_user": "astronomycqp", "from_user_id": 331942773, "from_user_id_str": "331942773", "from_user_name": "Tara August", "geo": null, "id": 148800301003059200, "id_str": "148800301003059200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1433004646/1310169362_250px-astronomy_amateur_3_v2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1433004646/1310169362_250px-astronomy_amateur_3_v2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "The Second International Workshop on the Biology of Sauropod Dinosaurs (part I) - Scientific American (blog)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:21:59 +0000", "from_user": "AndreayValen", "from_user_id": 181407650, "from_user_id_str": "181407650", "from_user_name": "Andrea Platero", "geo": null, "id": 148800253716480000, "id_str": "148800253716480000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1648561451/munch_2011_11_20_085636_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648561451/munch_2011_11_20_085636_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:21:58 +0000", "from_user": "Mysticyogi67", "from_user_id": 24117397, "from_user_id_str": "24117397", "from_user_name": "Randy Dublo", "geo": null, "id": 148800250323283970, "id_str": "148800250323283968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1616909266/1320139247452_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616909266/1320139247452_normal.jpg", "source": "<a href="http://www.myyearbook.com/" rel="nofollow">myYearbook Share</a>", "text": "Q: How do you think the dinosaurs died?A: Every great age is accompanied by globa...: http://t.co/MVky4SCH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:21:37 +0000", "from_user": "bryanmero", "from_user_id": 30221654, "from_user_id_str": "30221654", "from_user_name": "Bryan Mero", "geo": null, "id": 148800158849695740, "id_str": "148800158849695747", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/131933863/bryan_skyranchreelfan_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/131933863/bryan_skyranchreelfan_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Looking forward to Terra Nova's finale tonight. Glad I stuck with it, I like the characters better than I do the dinosaurs. #terranova.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:21:16 +0000", "from_user": "lindseywiebe", "from_user_id": 10004672, "from_user_id_str": "10004672", "from_user_name": "Lindsey Wiebe", "geo": null, "id": 148800072468021250, "id_str": "148800072468021248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1179314840/7933_167192775015_638660015_4171368_1776929_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1179314840/7933_167192775015_638660015_4171368_1776929_n_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@ianmcc dinosaurs were actually a disappointment, I thought. Jurassic park's were more convincing, and how old is that movie by now?", "to_user": "ianmcc", "to_user_id": 6302912, "to_user_id_str": "6302912", "to_user_name": "Ian McCausland", "in_reply_to_status_id": 148644450246201340, "in_reply_to_status_id_str": "148644450246201344"}, +{"created_at": "Mon, 19 Dec 2011 16:20:52 +0000", "from_user": "MFrost3", "from_user_id": 404064505, "from_user_id_str": "404064505", "from_user_name": "MFrost", "geo": null, "id": 148799970668056580, "id_str": "148799970668056577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1620316286/P1090503_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620316286/P1090503_normal.JPG", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "A #Photo of some #Dinosaurs at a Gift Shop at the #Zoo\\thttp://t.co/9IdhpiVb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:20:45 +0000", "from_user": "AloiahAloha", "from_user_id": 18283235, "from_user_id_str": "18283235", "from_user_name": "Aliah", "geo": null, "id": 148799944118120450, "id_str": "148799944118120449", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1640286570/329834966_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640286570/329834966_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "And on the third day, God created the Remington-bull action rifle, so that man can fight the dinosaurs... And the homosexuals.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 16:20:20 +0000", "from_user": "bball7cat", "from_user_id": 236151671, "from_user_id_str": "236151671", "from_user_name": "Cat Lane", "geo": null, "id": 148799836815237120, "id_str": "148799836815237120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693181229/IMG00153-20110810-2018_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693181229/IMG00153-20110810-2018_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "The day the dinosaurs died #bestshow #discoverychannel #paleontologistinmyfuture ?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:20:15 +0000", "from_user": "TattedNdFooling", "from_user_id": 244770167, "from_user_id_str": "244770167", "from_user_name": "White Boy Mike", "geo": null, "id": 148799818066706430, "id_str": "148799818066706433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1689335671/IMG00040-20111212-1231_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689335671/IMG00040-20111212-1231_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"@_KodeineSweet: Those dinosaurs on jurassic park is mean /:\"Lol They Not Suppose To Be Nice", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:19:26 +0000", "from_user": "_KodeineSweet", "from_user_id": 152828049, "from_user_id_str": "152828049", "from_user_name": "\\u311A\\u03B1\\u1E49\\u03B1\\u03B1 uu\\u028E\\u05DF \\u0438\\u0455\\u043D\\u03B9\\u0442 \\u2661", "geo": null, "id": 148799611543367680, "id_str": "148799611543367680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701053627/389431_214714121936514_100001937845413_483991_1028002348_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701053627/389431_214714121936514_100001937845413_483991_1028002348_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Those dinosaurs on jurassic park is mean /:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:19:17 +0000", "from_user": "quingdom", "from_user_id": 15532425, "from_user_id_str": "15532425", "from_user_name": "Quing Obillos", "geo": null, "id": 148799572708294660, "id_str": "148799572708294656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1542838889/IMG_4550_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542838889/IMG_4550_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Scary! \"@_midnightshade: Comforting my bleeding heart with my love for dinosaurs and other dead things. :p\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:18:21 +0000", "from_user": "Albertyzp", "from_user_id": 440165913, "from_user_id_str": "440165913", "from_user_name": "Albert Zink", "geo": null, "id": 148799337902768130, "id_str": "148799337902768128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700464120/large_gffgfphoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700464120/large_gffgfphoto_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Wildlife of Gondwana: Dinosaurs and Other Vertebrates from the Ancient Supercontinent (Life of the Past): \"This ... http://t.co/beG5AIcI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:17:43 +0000", "from_user": "6Ted", "from_user_id": 105687150, "from_user_id_str": "105687150", "from_user_name": "Terry McDonald", "geo": null, "id": 148799178393387000, "id_str": "148799178393387008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698990420/285347_10150258078509635_542534634_7694256_1158580_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698990420/285347_10150258078509635_542534634_7694256_1158580_n_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "I find it staggering that birds are descended from dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:17:39 +0000", "from_user": "CaroLesmes2", "from_user_id": 287332296, "from_user_id_str": "287332296", "from_user_name": "Carolina Lesmes", "geo": null, "id": 148799161972695040, "id_str": "148799161972695040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1665053933/DSC03732edited_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665053933/DSC03732edited_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/qRmwlOGt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:17:36 +0000", "from_user": "supperbenjii", "from_user_id": 147726042, "from_user_id_str": "147726042", "from_user_name": "Benjamyn Lyall", "geo": null, "id": 148799148014043140, "id_str": "148799148014043136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686947781/IMG_3273_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686947781/IMG_3273_normal.JPG", "source": "<a href="http://www.thefancy.com" rel="nofollow"> Fancy</a>", "text": "Light Graffiti Dinosaurs http://t.co/QG5714tW via @thefancy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:17:35 +0000", "from_user": "_LovelyVee_", "from_user_id": 375454215, "from_user_id_str": "375454215", "from_user_name": "Luz Vee", "geo": null, "id": 148799145090625540, "id_str": "148799145090625536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689831922/66JXFwFg_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689831922/66JXFwFg_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:17:14 +0000", "from_user": "olwebster", "from_user_id": 190001837, "from_user_id_str": "190001837", "from_user_name": "Oliver Webster", "geo": null, "id": 148799056578228220, "id_str": "148799056578228224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699178680/Snapshot_20111218_14_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699178680/Snapshot_20111218_14_normal.jpg", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "RT @IdalinaMDOD: RT @Ellie_Boh i wish dinosaurs were still alive.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:16:45 +0000", "from_user": "BaileleMiCo", "from_user_id": 76052130, "from_user_id_str": "76052130", "from_user_name": "Josu\\u00E9", "geo": null, "id": 148798936595968000, "id_str": "148798936595968001", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702356178/Foto_del_d_a_03-12-11_a_la_s__19.57_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702356178/Foto_del_d_a_03-12-11_a_la_s__19.57_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/mkFsHSVg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:16:22 +0000", "from_user": "IdalinaMDOD", "from_user_id": 32369997, "from_user_id_str": "32369997", "from_user_name": "Idalina Domingos", "geo": null, "id": 148798837887217660, "id_str": "148798837887217665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662657598/IMAG0812-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662657598/IMAG0812-1_normal.jpg", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "RT @Ellie_Boh i wish dinosaurs were still alive.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:15:01 +0000", "from_user": "QuiqueLee", "from_user_id": 192334770, "from_user_id_str": "192334770", "from_user_name": "Quique Lee", "geo": null, "id": 148798498714828800, "id_str": "148798498714828801", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1532826244/Quique_ardilla_copia_baja_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1532826244/Quique_ardilla_copia_baja_normal.jpg", "source": "<a href="http://soundcloud.com" rel="nofollow">SoundCloud</a>", "text": "La #SantaArdillaAtropellada dice que escuchen Last Dinosaurs - Zoom by dewprocess http://t.co/YUNAYiwv on #SoundCloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:14:59 +0000", "from_user": "angiemanuelax", "from_user_id": 160678480, "from_user_id_str": "160678480", "from_user_name": "Angie Manuela", "geo": null, "id": 148798490384932860, "id_str": "148798490384932865", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702237500/Imagen_002_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702237500/Imagen_002_normal.jpg", "source": "<a href="http://www.piccsy.com" rel="nofollow">Piccsy</a>", "text": "I've just uploaded a new Picc at http://t.co/SA7zdpeE. Check it out at http://t.co/uGc3O9F3\\n!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:13:53 +0000", "from_user": "DocumentaryTube", "from_user_id": 364794173, "from_user_id_str": "364794173", "from_user_name": "Documentary Tube", "geo": null, "id": 148798215989379070, "id_str": "148798215989379073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1520393294/twitter-profile-photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1520393294/twitter-profile-photo_normal.jpg", "source": "<a href="http://www.documentarytube.com" rel="nofollow">Latest from DocumentaryTube.com</a>", "text": "Fresh on http://t.co/APxPPqM9 : Clash of the Dinosaurs - http://t.co/aB1i8Wo6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:13:50 +0000", "from_user": "Saoirse_TDCC", "from_user_id": 120805593, "from_user_id_str": "120805593", "from_user_name": "Finn the Human", "geo": null, "id": 148798199908413440, "id_str": "148798199908413441", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1678032461/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678032461/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Here lads,go follow @TheOneFifteen,he has dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:13:49 +0000", "from_user": "GeekSlant", "from_user_id": 410117577, "from_user_id_str": "410117577", "from_user_name": "GeekSlant", "geo": null, "id": 148798197656068100, "id_str": "148798197656068096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1633861223/expand_noplacelikehome_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633861223/expand_noplacelikehome_normal.gif", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Some pretty awesome posts are coming your way today from Geek Slant. Dinosaurs, custom shirts... and dancing stormtroopers.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:13:48 +0000", "from_user": "Uday360", "from_user_id": 380627880, "from_user_id_str": "380627880", "from_user_name": "Udaykumar", "geo": null, "id": 148798192383836160, "id_str": "148798192383836160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1612385427/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612385427/image_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Safari on iOS</a>", "text": "Dhjjh http://t.co/Mj2AnSfq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:13:09 +0000", "from_user": "NuggatronLy", "from_user_id": 116952016, "from_user_id_str": "116952016", "from_user_name": "L.N.Y.L", "geo": null, "id": 148798027929366530, "id_str": "148798027929366529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684277903/peuf_20111210_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684277903/peuf_20111210_7_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:12:52 +0000", "from_user": "zabou007", "from_user_id": 149945940, "from_user_id_str": "149945940", "from_user_name": "Isabelle W.", "geo": null, "id": 148797959146962940, "id_str": "148797959146962945", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693052275/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693052275/image_normal.jpg", "source": "Free App Magic - Christmas", "text": "Je viens de d\\u00E9couvrir Pocket Dinosaurs 2 avec Free App Magic sp\\u00E9cial No\\u00EBl sur mon iPhone http://t.co/7NNt4rEN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:12:49 +0000", "from_user": "xLeBloodiful", "from_user_id": 380918575, "from_user_id_str": "380918575", "from_user_name": "Carmen.\\u2122", "geo": null, "id": 148797945343508480, "id_str": "148797945343508480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699235067/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699235067/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:12:29 +0000", "from_user": "naveen_sharma", "from_user_id": 15147087, "from_user_id_str": "15147087", "from_user_name": "naveen sharma", "geo": null, "id": 148797864137592830, "id_str": "148797864137592833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1248818180/180847_10150113982466838_519796837_6438095_2708503_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1248818180/180847_10150113982466838_519796837_6438095_2708503_n_normal.jpg", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "The \\u201CDinosaurs\\u201D are dying, as big companies realize they need the cloud to survive. Going to be an exciting year for cloud computing", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:12:09 +0000", "from_user": "AhMaD_RuZa1n1", "from_user_id": 360579324, "from_user_id_str": "360579324", "from_user_name": "Ahmad Ruzaini", "geo": null, "id": 148797777751703550, "id_str": "148797777751703552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1572296279/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572296279/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@syzanazeirah a girl who likes dinosaurs,sum 41 and A7X......hot", "to_user": "syzanazeirah", "to_user_id": 98361000, "to_user_id_str": "98361000", "to_user_name": "Syaza Nazeirah \\u25B2", "in_reply_to_status_id": 148797267707559940, "in_reply_to_status_id_str": "148797267707559937"}, +{"created_at": "Mon, 19 Dec 2011 16:11:52 +0000", "from_user": "ZomBIIEUniCORnX", "from_user_id": 98210086, "from_user_id_str": "98210086", "from_user_name": "Sneaky Tampon", "geo": null, "id": 148797708084314100, "id_str": "148797708084314112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700646658/babez_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700646658/babez_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I love asking catholics \"if god created the earth and everything in it.. why were there dinosaurs millions of year before the human race!?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:11:47 +0000", "from_user": "WorldJustin_BR", "from_user_id": 389694391, "from_user_id_str": "389694391", "from_user_name": "Brasileiras do JB \\u2661", "geo": null, "id": 148797687205081100, "id_str": "148797687205081089", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1602436661/tumblr_lt0wey1YBc1qiklgbo1_250_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1602436661/tumblr_lt0wey1YBc1qiklgbo1_250_normal.gif", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/KUfTXnxp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:10:51 +0000", "from_user": "FALDIIY", "from_user_id": 427375181, "from_user_id_str": "427375181", "from_user_name": "@_faldi \\u263A", "geo": null, "id": 148797451434856450, "id_str": "148797451434856448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696016383/FALDIIY_2514304754495957004_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696016383/FALDIIY_2514304754495957004_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Titanosaur bone found in Antartica: LONG before the arrival of penguins, giant plant-eating dinosaurs roamed Ant... http://t.co/5NDnpZpz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:10:29 +0000", "from_user": "_MatthewTurner_", "from_user_id": 246276196, "from_user_id_str": "246276196", "from_user_name": "Matthew Turner", "geo": null, "id": 148797359361495040, "id_str": "148797359361495040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685481246/Kasabian_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685481246/Kasabian_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Totally Enormous Extinct Dinosaurs trust me rude boyyy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:09:56 +0000", "from_user": "theevildrsin", "from_user_id": 87836452, "from_user_id_str": "87836452", "from_user_name": "theevildrsin", "geo": null, "id": 148797221633130500, "id_str": "148797221633130496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1359626644/TADCAT__WinCE__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1359626644/TADCAT__WinCE__normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Sic semper tyrannosaurus. Thus always to dinosaurs. #kimjongil", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:09:09 +0000", "from_user": "itsemilywalker", "from_user_id": 20522902, "from_user_id_str": "20522902", "from_user_name": "EMILY :-)", "geo": null, "id": 148797022118486000, "id_str": "148797022118486016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687613766/185104_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687613766/185104_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "chips and turkey dinosaurs, life can't get better", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:09:08 +0000", "from_user": "jackie____chan", "from_user_id": 43550898, "from_user_id_str": "43550898", "from_user_name": "Jacqueline Hernandez", "geo": null, "id": 148797017915789300, "id_str": "148797017915789312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1347751536/IMG000505_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1347751536/IMG000505_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I don't believe in dinosaurs they were all giant dogs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:08:36 +0000", "from_user": "ege_ertem", "from_user_id": 348293446, "from_user_id_str": "348293446", "from_user_name": "Ege", "geo": null, "id": 148796883664502800, "id_str": "148796883664502785", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686035056/5088-ozerk-eg_article_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686035056/5088-ozerk-eg_article_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Sanal ger\\u00E7eklikle, leoparlar al\\u0131\\u015Fveri\\u015F merkezinde! http://t.co/H5qRQNms National Geographic'ten harika pazarlama kampanyas\\u0131.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:05:48 +0000", "from_user": "timef0rplanB_", "from_user_id": 228111347, "from_user_id_str": "228111347", "from_user_name": "Danny Worsnop \\u2020", "geo": null, "id": 148796181009534980, "id_str": "148796181009534977", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702335876/IMAG2033dsfjklllolol_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702335876/IMAG2033dsfjklllolol_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @_MatthewTurner_: Newcastle Other Rooms 7th of Feb, Totally Enormous Extinct Dinosaurs. I'm there.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:05:46 +0000", "from_user": "Tarshaoxt", "from_user_id": 431724585, "from_user_id_str": "431724585", "from_user_name": "Tarsha Dunfee", "geo": null, "id": 148796170897080320, "id_str": "148796170897080320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681085216/large_ASNZHROVLXQE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681085216/large_ASNZHROVLXQE_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Jurassic Park: Chaos Effect - Raptor Alpha: Colorful Chaos Effect Series Dinosaurs.\\nRaptor measures approx. 6.5\"... http://t.co/FWkT0qv5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:05:18 +0000", "from_user": "_becomeahippie", "from_user_id": 426586590, "from_user_id_str": "426586590", "from_user_name": "Individual rebel.", "geo": null, "id": 148796054433841150, "id_str": "148796054433841152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700289752/KDsI7jz4_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700289752/KDsI7jz4_normal", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @FuckinBOSSx: If I could I would live with the fucking dinosaurs .. People fucking annoy me!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:04:42 +0000", "from_user": "smizer53", "from_user_id": 286299011, "from_user_id_str": "286299011", "from_user_name": "Hunter Schmeisser", "geo": null, "id": 148795902289653760, "id_str": "148795902289653760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @corndog_11: \"And on the third day, God created the Remington bolt-action rifle, so that Man could fight the dinosaurs. And the homosexuals.\" #meangirls", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:04:33 +0000", "from_user": "the_left_overs", "from_user_id": 291848002, "from_user_id_str": "291848002", "from_user_name": "Batmatt", "geo": null, "id": 148795867346898940, "id_str": "148795867346898944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693943499/android1322946028785_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693943499/android1322946028785_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@bbertling99 sidenote: it also captures pictures of ghosts and dinosaurs your should let @Ereneda and Jason know", "to_user": "bbertling99", "to_user_id": 16915723, "to_user_id_str": "16915723", "to_user_name": "w. bradley", "in_reply_to_status_id": 148626452559036400, "in_reply_to_status_id_str": "148626452559036417"}, +{"created_at": "Mon, 19 Dec 2011 16:03:28 +0000", "from_user": "zombiezimos", "from_user_id": 185770692, "from_user_id_str": "185770692", "from_user_name": "Jwess Ailes", "geo": null, "id": 148795591206514700, "id_str": "148795591206514688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1598720506/110916-121619_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598720506/110916-121619_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/8gE0jVHZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:03:21 +0000", "from_user": "YourNewsChannel", "from_user_id": 425271701, "from_user_id_str": "425271701", "from_user_name": "Mister News", "geo": null, "id": 148795562316148740, "id_str": "148795562316148736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698835153/YOUR_NEWS_CHANNEL_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698835153/YOUR_NEWS_CHANNEL_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Titanosaur bone found in Antarctica: Long before the arrival of penguins, giant plant-eating dinosaurs roamed An... http://t.co/ckA0znzf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:02:37 +0000", "from_user": "LDoggyStyles", "from_user_id": 337382540, "from_user_id_str": "337382540", "from_user_name": "Lawrence Hopkins", "geo": null, "id": 148795378089738240, "id_str": "148795378089738240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1464730817/Untitled_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1464730817/Untitled_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "That mark is an 89% in Discovering Dinosaurs, FYI. #win", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:02:28 +0000", "from_user": "_MatthewTurner_", "from_user_id": 246276196, "from_user_id_str": "246276196", "from_user_name": "Matthew Turner", "geo": null, "id": 148795341779636220, "id_str": "148795341779636225", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685481246/Kasabian_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685481246/Kasabian_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Newcastle Other Rooms 7th of Feb, Totally Enormous Extinct Dinosaurs. I'm there.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:01:46 +0000", "from_user": "JulesBTV", "from_user_id": 38226327, "from_user_id_str": "38226327", "from_user_name": "Jules", "geo": null, "id": 148795164511576060, "id_str": "148795164511576064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680259983/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680259983/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I imagine that baby humans and dinosaurs sound alike.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:00:00 +0000", "from_user": "SalsaChoicer", "from_user_id": 121968669, "from_user_id_str": "121968669", "from_user_name": "Salsa Choicer", "geo": null, "id": 148794720745832450, "id_str": "148794720745832449", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://google.com" rel="nofollow">SalsaChoicer</a>", "text": "did you know? dinosaurs love beavers to de-stress", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:59:26 +0000", "from_user": "BoraZ", "from_user_id": 17567533, "from_user_id_str": "17567533", "from_user_name": "Bora Zivkovic", "geo": null, "id": 148794579573948400, "id_str": "148794579573948417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1210768773/BoraZ191124_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1210768773/BoraZ191124_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "The Second International Workshop on the Biology of Sauropod Dinosaurs (part I) http://t.co/jmSe6nBK by @TetZoo at #SciAmBlogs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:59:25 +0000", "from_user": "sciamblogs", "from_user_id": 200219772, "from_user_id_str": "200219772", "from_user_name": "SciAm Blogs", "geo": null, "id": 148794575358668800, "id_str": "148794575358668802", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1140189944/SAtwitterLogo_bigger_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1140189944/SAtwitterLogo_bigger_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "The Second International Workshop on the Biology of Sauropod Dinosaurs (part I) http://t.co/looNUIih by @TetZoo at #SciAmBlogs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:58:41 +0000", "from_user": "PostApocInfo", "from_user_id": 239254711, "from_user_id_str": "239254711", "from_user_name": "Megaton", "geo": null, "id": 148794387659374600, "id_str": "148794387659374592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1218655682/radiation_100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218655682/radiation_100_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Geek Art Gallery: Artist: Scott Listfield: His site, the Astronaut Dinosaur is devoted to paintings of dinosaurs and... http://t.co/M0A5RIR2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:58:19 +0000", "from_user": "_MatthewTurner_", "from_user_id": 246276196, "from_user_id_str": "246276196", "from_user_name": "Matthew Turner", "geo": null, "id": 148794298391990270, "id_str": "148794298391990272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685481246/Kasabian_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685481246/Kasabian_normal.gif", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "BBC - Music - Totally Enormous Extinct Dinosaurs http://t.co/I6taIBjL if you've not seen it go watch.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:58:00 +0000", "from_user": "chinks__", "from_user_id": 435250616, "from_user_id_str": "435250616", "from_user_name": "paul heaton", "geo": null, "id": 148794216062005250, "id_str": "148794216062005248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "RT @MaddieJarvis: Just found out about the ice rink at Natural History Museum\\u2026 Dinosaurs, mulled wine and skating! Bring on my little London holiday!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:56:41 +0000", "from_user": "Erictga", "from_user_id": 431683572, "from_user_id_str": "431683572", "from_user_name": "Eric Beinlich", "geo": null, "id": 148793884389023740, "id_str": "148793884389023744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680993073/large_255_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680993073/large_255_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "A World Of Imagination Rectangle 5'5'' X 7'8'': A World of Imagination - Pirates, Dinosaurs, Mermaids and More, ... http://t.co/dqBW450H", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:56:28 +0000", "from_user": "Sean_Hansen", "from_user_id": 236101918, "from_user_id_str": "236101918", "from_user_name": "Sean Hansen", "geo": null, "id": 148793831171686400, "id_str": "148793831171686400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1386139609/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1386139609/me_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@JesusChristFTM why block me lad? Go an eat ye dinosaurs and waffles mate ill leave ye alone now #zzzzzz #boringcunt #shitbanter", "to_user": "JesusChristFTM", "to_user_id": 338305554, "to_user_id_str": "338305554", "to_user_name": "JesusChristFTM"}, +{"created_at": "Mon, 19 Dec 2011 15:55:59 +0000", "from_user": "gillpea", "from_user_id": 20885084, "from_user_id_str": "20885084", "from_user_name": "Gillian Pearce", "geo": null, "id": 148793709146804220, "id_str": "148793709146804224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702011989/Puffer_Xmas_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702011989/Puffer_Xmas_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@wowser Interviewer eaten by dinosaurs?", "to_user": "wowser", "to_user_id": 10199112, "to_user_id_str": "10199112", "to_user_name": "Mr Wowser", "in_reply_to_status_id": 148792065382289400, "in_reply_to_status_id_str": "148792065382289408"}, +{"created_at": "Mon, 19 Dec 2011 15:55:49 +0000", "from_user": "jrogasm", "from_user_id": 140263851, "from_user_id_str": "140263851", "from_user_name": "Jeffrey Echeverri", "geo": null, "id": 148793669753913340, "id_str": "148793669753913345", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657365478/ProfilePhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657365478/ProfilePhoto_normal.png", "source": "<a href="http://favstar.fm" rel="nofollow">Favstar.FM</a>", "text": "RT @IamEnidColeslaw: Kirk Cameron just told me that dinosaurs became extinct because they were \"heathens and sodomites.\" (???)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:55:18 +0000", "from_user": "JeffKeuss", "from_user_id": 14538615, "from_user_id_str": "14538615", "from_user_name": "Jeff Keuss", "geo": null, "id": 148793537176154100, "id_str": "148793537176154113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/281245414/jeff_with_stoll_-_wedding_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/281245414/jeff_with_stoll_-_wedding_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "watched \"Tree of Life\" - Now whisper metaphysical aphorisms under my breath & point at pictures of sunflowers with dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:55:12 +0000", "from_user": "fluxfm_berlin", "from_user_id": 58404520, "from_user_id_str": "58404520", "from_user_name": "FluxFM Playlist", "geo": null, "id": 148793512115187700, "id_str": "148793512115187713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1510122863/fluxfm-quadrat_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1510122863/fluxfm-quadrat_normal.png", "source": "<a href="http://www.motor.de" rel="nofollow">motor.de</a>", "text": "19.12. 16:55 Uhr: Totally Enormous Extinct Dinosaurs \"Garden.\" http://t.co/tSCpy6Nd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:54:59 +0000", "from_user": "Reginezza", "from_user_id": 431684782, "from_user_id_str": "431684782", "from_user_name": "Regine Helman", "geo": null, "id": 148793457153024000, "id_str": "148793457153024002", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680997010/5m0sbj55vo_112919698_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680997010/5m0sbj55vo_112919698_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Dinosaur Heresies: New Theories Unlocking the Mystery of the Dinosaurs and Their Extinction: For over a cent... http://t.co/Xkf32LPr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:54:15 +0000", "from_user": "_nickqueiroz", "from_user_id": 203607830, "from_user_id_str": "203607830", "from_user_name": "Liar com Z", "geo": null, "id": 148793275355107330, "id_str": "148793275355107328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1657009026/DSC01509_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657009026/DSC01509_normal.JPG", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/wZ1fpHCj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:53:44 +0000", "from_user": "miadevic", "from_user_id": 212205514, "from_user_id_str": "212205514", "from_user_name": "Mia Devic", "geo": null, "id": 148793143159046140, "id_str": "148793143159046144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Second International Workshop on the Biology of Sauropod Dinosaurs (part I) http://t.co/992HbyRB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:53:43 +0000", "from_user": "BeccaLyte", "from_user_id": 312731481, "from_user_id_str": "312731481", "from_user_name": "Becca Lake", "geo": null, "id": 148793138381717500, "id_str": "148793138381717504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1675677837/nicky_and_me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675677837/nicky_and_me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@RachaelRose104 nice retweet...i realy needed to know about cat urine... interesteing ? like...dinosaurs and chickens that r green?", "to_user": "RachaelRose104", "to_user_id": 392952489, "to_user_id_str": "392952489", "to_user_name": "Rachael Wells", "in_reply_to_status_id": 148792544153714700, "in_reply_to_status_id_str": "148792544153714689"}, +{"created_at": "Mon, 19 Dec 2011 15:52:27 +0000", "from_user": "Power0fThatP", "from_user_id": 47725167, "from_user_id_str": "47725167", "from_user_name": "Paris Hilton", "geo": null, "id": 148792822093455360, "id_str": "148792822093455360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702406651/profile_image_1324312970024_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702406651/profile_image_1324312970024_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "And whose to say whatever they teach us in school actually happened? Ex: Dinosaurs, Indians, Christopher Columbus, God etc HOW Y'ALL KNOW!?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:52:01 +0000", "from_user": "_MatthewTurner_", "from_user_id": 246276196, "from_user_id_str": "246276196", "from_user_name": "Matthew Turner", "geo": null, "id": 148792711271563260, "id_str": "148792711271563264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685481246/Kasabian_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685481246/Kasabian_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "I can guarantee not many people will have heard of Totally Enormous Extinct Dinosaurs before the last 3 months or so. I have for ages now.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:49:18 +0000", "from_user": "Midna_", "from_user_id": 23752440, "from_user_id_str": "23752440", "from_user_name": "Tamika Glover", "geo": null, "id": 148792026459152400, "id_str": "148792026459152385", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1593094408/tumblr_lt0lj5zdVo1qgylxno1_500_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593094408/tumblr_lt0lj5zdVo1qgylxno1_500_normal.png", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Photo: Oh god, just the other day I found some toy dinosaurs at the shops, and did this. My friend looked at... http://t.co/panAhwgt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:48:57 +0000", "from_user": "ArchaeoNewsNet", "from_user_id": 99501583, "from_user_id_str": "99501583", "from_user_name": "ArchaeoNewsNet", "geo": null, "id": 148791941256056830, "id_str": "148791941256056832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/593360913/Gorgon_560_BC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/593360913/Gorgon_560_BC_normal.jpg", "source": "<a href="http://tweetmeme.com" rel="nofollow">TweetMeme</a>", "text": "The Archaeology News Network: Dinosaurs with killer claws yield new theory about flight http://t.co/XwbiwGXZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:48:52 +0000", "from_user": "Margcsd", "from_user_id": 431680455, "from_user_id_str": "431680455", "from_user_name": "Marg Boggiano", "geo": null, "id": 148791919546335230, "id_str": "148791919546335233", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680986812/large_156611_1717139893071_1375459296_1833687_77950_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680986812/large_156611_1717139893071_1375459296_1833687_77950_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dinosaurs (Easy to Read! Easy to Draw!): Now even the youngest readers can learn to draw like the big kids! Foll... http://t.co/ryeMFaIr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:48:48 +0000", "from_user": "CyberBlackDeals", "from_user_id": 403804182, "from_user_id_str": "403804182", "from_user_name": "Chris Sams", "geo": null, "id": 148791900021854200, "id_str": "148791900021854208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://www.bravenewcode.com/products/wordtwit" rel="nofollow">WordTwit Plugin</a>", "text": "Playground Ball - Dinosaurs - http://t.co/NiFSmphD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:45:03 +0000", "from_user": "whyyradiotimes", "from_user_id": 100002112, "from_user_id_str": "100002112", "from_user_name": "Radio Times", "geo": null, "id": 148790960116080640, "id_str": "148790960116080640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/597045921/radiotimes-button_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/597045921/radiotimes-button_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "11-12, It\\u2019s not only kids who are captivated by #Dinosaurs. Peter Dodson @pennvet & Don Lessem aka Dino Don join us. http://t.co/OH5FLXw1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:44:52 +0000", "from_user": "RememberToCher", "from_user_id": 292542230, "from_user_id_str": "292542230", "from_user_name": "Cheryl Lynn ", "geo": null, "id": 148790913223761920, "id_str": "148790913223761920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680064675/Photo_118_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680064675/Photo_118_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@DanaNickel come to the coffee. leave the dinosaurs behind they are extinct.", "to_user": "DanaNickel", "to_user_id": 283240744, "to_user_id_str": "283240744", "to_user_name": "Dana Nickel", "in_reply_to_status_id": 148785124211830800, "in_reply_to_status_id_str": "148785124211830784"}, +{"created_at": "Mon, 19 Dec 2011 15:44:39 +0000", "from_user": "Bcurl11", "from_user_id": 387182831, "from_user_id_str": "387182831", "from_user_name": "Brittany Curl", "geo": null, "id": 148790858190303230, "id_str": "148790858190303232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1606471591/momma_-_Copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606471591/momma_-_Copy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:44:34 +0000", "from_user": "MaddieJarvis", "from_user_id": 61179301, "from_user_id_str": "61179301", "from_user_name": "Madeleine Jarvis", "geo": null, "id": 148790837726298100, "id_str": "148790837726298112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1642527228/CSC_1068_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642527228/CSC_1068_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "Just found out about the ice rink at Natural History Museum\\u2026 Dinosaurs, mulled wine and skating! Bring on my little London holiday!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:44:07 +0000", "from_user": "AnnaBelleFavors", "from_user_id": 113809065, "from_user_id_str": "113809065", "from_user_name": "Hermoine", "geo": null, "id": 148790722680733700, "id_str": "148790722680733696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1680108169/IMAG0282-1-1-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680108169/IMAG0282-1-1-1_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "If I could go back to any time period it would be when all the dinosaurs were on earth .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:43:59 +0000", "from_user": "Bananennoob", "from_user_id": 218559165, "from_user_id_str": "218559165", "from_user_name": "Rianne van Vuuren", "geo": null, "id": 148790689038204930, "id_str": "148790689038204929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681159604/smile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681159604/smile_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @InsaneTweets_: Parent: \"Well when I was your age...\" Me: STFU WHEN YOU WERE MY AGE, YOU RODE DINOSAURS!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:42:32 +0000", "from_user": "_shelbyyeary", "from_user_id": 129571456, "from_user_id_str": "129571456", "from_user_name": "Shelby Yeary", "geo": null, "id": 148790325673078800, "id_str": "148790325673078786", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1659635413/Snapshot_20111125_4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659635413/Snapshot_20111125_4_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Men looked a little like awkwardly shaped dinosaurs when they walk around pants-less. Women just look cute. -shrug-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:42:06 +0000", "from_user": "NewZealandNewsV", "from_user_id": 350024921, "from_user_id_str": "350024921", "from_user_name": "NewZealandNewsV", "geo": null, "id": 148790214607900670, "id_str": "148790214607900673", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1526135593/icon025_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1526135593/icon025_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Titanosaur bone found in Antarctica (AAP): Scientists have found that giant plant-eating dinosaurs roamed Antarc... http://t.co/OglGaXza", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:41:42 +0000", "from_user": "kalimbacloud", "from_user_id": 31255192, "from_user_id_str": "31255192", "from_user_name": "Jason Haughn", "geo": null, "id": 148790114389200900, "id_str": "148790114389200896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/139085184/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/139085184/me_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Dinosaurs moving around or something", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:41:28 +0000", "from_user": "FuckinBOSSx", "from_user_id": 293760475, "from_user_id_str": "293760475", "from_user_name": "Precious Valerie \\u2764 ", "geo": null, "id": 148790054842662900, "id_str": "148790054842662912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1578372547/1315151290075_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1578372547/1315151290075_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "If I could I would live with the fucking dinosaurs .. People fucking annoy me!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:41:21 +0000", "from_user": "fluxfm_stuggi", "from_user_id": 58408700, "from_user_id_str": "58408700", "from_user_name": "FluxFM Playlist", "geo": null, "id": 148790025583198200, "id_str": "148790025583198208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1510125481/fluxfm-quadrat_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1510125481/fluxfm-quadrat_normal.png", "source": "<a href="http://www.motor.de" rel="nofollow">motor.de Playlist Stuggi</a>", "text": "19.12. 16:41 Uhr: Totally Enormous Extinct Dinosaurs \"Garden.\" http://t.co/gBfsngDr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:40:23 +0000", "from_user": "Telesaurtise", "from_user_id": 127428646, "from_user_id_str": "127428646", "from_user_name": "Nur amirah hamzah", "geo": null, "id": 148789782552653820, "id_str": "148789782552653824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1561106223/Telesaurtise_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1561106223/Telesaurtise_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Dinosaurs live exhibition good? @myvaledictions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:40:01 +0000", "from_user": "SalsaChoicer", "from_user_id": 121968669, "from_user_id_str": "121968669", "from_user_name": "Salsa Choicer", "geo": null, "id": 148789690928087040, "id_str": "148789690928087040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://google.com" rel="nofollow">SalsaChoicer</a>", "text": "did you know? dinosaurs play with beavers randomly", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:38:39 +0000", "from_user": "ayoHoldMYPoodle", "from_user_id": 206566998, "from_user_id_str": "206566998", "from_user_name": "skylar blair", "geo": null, "id": 148789348001775600, "id_str": "148789348001775617", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681910410/IMG00585-20111208-1850_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681910410/IMG00585-20111208-1850_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Omg baby dinosaurs! http://t.co/FXXuB7SW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:37:59 +0000", "from_user": "bizzy_brainz", "from_user_id": 274872967, "from_user_id_str": "274872967", "from_user_name": "Adeyera olajide", "geo": null, "id": 148789181735387140, "id_str": "148789181735387137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701003938/Image1037_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701003938/Image1037_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Who wrote the bible, who wrote the quran... And was it a lightening star dat gave birth 2 d den dinosaurs...#Questionsbegging4ans", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:37:47 +0000", "from_user": "bonatron9000", "from_user_id": 248440801, "from_user_id_str": "248440801", "from_user_name": "bonbon ", "geo": null, "id": 148789130610999300, "id_str": "148789130610999296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1236987442/bonnie2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1236987442/bonnie2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@molliejohanson I <3 the glittler dinosaurs...is that a t-rex or a velociraptor? :P", "to_user": "molliejohanson", "to_user_id": 309861066, "to_user_id_str": "309861066", "to_user_name": "wild olive", "in_reply_to_status_id": 148788502593683460, "in_reply_to_status_id_str": "148788502593683456"}, +{"created_at": "Mon, 19 Dec 2011 15:36:06 +0000", "from_user": "ivanovic", "from_user_id": 4031571, "from_user_id_str": "4031571", "from_user_name": "Iv\\u00E1n Arcos", "geo": null, "id": 148788705417629700, "id_str": "148788705417629697", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1620792719/Yo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620792719/Yo_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "#nowplaying Totally Enormous Extinct Dinosaurs - Trouble", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:35:25 +0000", "from_user": "aaronwhitbain", "from_user_id": 371546985, "from_user_id_str": "371546985", "from_user_name": "LOVE @ChrisGooch19", "geo": null, "id": 148788535749652480, "id_str": "148788535749652480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700731359/gb-en-ys_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700731359/gb-en-ys_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @JD_Strachan: Some people like the word bell end dont they, or as they spell it belend. Homophobic limited banter belongs with the dinosaurs. Yawn. Jog on", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:34:59 +0000", "from_user": "los1019", "from_user_id": 126439042, "from_user_id_str": "126439042", "from_user_name": "carlos saula", "geo": null, "id": 148788423405223940, "id_str": "148788423405223936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.myyearbook.com/" rel="nofollow">myYearbook Share</a>", "text": "Q: How do you think the dinosaurs died? A: Idk and idc: http://t.co/9Uo2ptbq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:34:41 +0000", "from_user": "YessicaTheGreat", "from_user_id": 97822637, "from_user_id_str": "97822637", "from_user_name": "Yessica Ramirez\\uE314", "geo": null, "id": 148788349270896640, "id_str": "148788349270896641", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1629623953/securedownload_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629623953/securedownload_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@marywraycyrus i like dinosaurs", "to_user": "marywraycyrus", "to_user_id": 289137690, "to_user_id_str": "289137690", "to_user_name": "Mary Wray "}, +{"created_at": "Mon, 19 Dec 2011 15:34:22 +0000", "from_user": "Shylapwk", "from_user_id": 430044059, "from_user_id_str": "430044059", "from_user_name": "Shyla Reams", "geo": null, "id": 148788270921289730, "id_str": "148788270921289728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1677514021/kz4eat453h_111545399_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677514021/kz4eat453h_111545399_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Turok, Son of Stone Archives Volume 6: Lost in a strange jungle world where dinosaurs and cavemen from earth's p... http://t.co/H6busRZw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:33:56 +0000", "from_user": "AikoCelestine", "from_user_id": 436360477, "from_user_id_str": "436360477", "from_user_name": "Aiko Celestine", "geo": null, "id": 148788162251067400, "id_str": "148788162251067392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692136855/fgjkjhygjk_normal.JPG", "profile_image_url_https": null, "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dinosaurs, Dinosaurs, Dinosaurs: An entertaining and fascinating journey into the world of dinosaurs! Is it poss... http://t.co/C1D6rZUB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:33:27 +0000", "from_user": "pmontero1", "from_user_id": 266694803, "from_user_id_str": "266694803", "from_user_name": "Paulette Montero", "geo": null, "id": 148788038686867460, "id_str": "148788038686867457", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1380217718/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1380217718/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Father_Flech Dinosaurs are making a comeback!! Better you than me!!", "to_user": "Father_Flech", "to_user_id": 177388971, "to_user_id_str": "177388971", "to_user_name": "Jay Flechas", "in_reply_to_status_id": 148787368961392640, "in_reply_to_status_id_str": "148787368961392640"}, +{"created_at": "Mon, 19 Dec 2011 15:32:44 +0000", "from_user": "Regina_Yo", "from_user_id": 128405777, "from_user_id_str": "128405777", "from_user_name": "Regina Yo!", "geo": null, "id": 148787857757179900, "id_str": "148787857757179904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1418303298/2011-06-24_17.07.40__2_edited_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1418303298/2011-06-24_17.07.40__2_edited_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:32:33 +0000", "from_user": "RichardKingg", "from_user_id": 20313727, "from_user_id_str": "20313727", "from_user_name": "Richard King", "geo": null, "id": 148787811955392500, "id_str": "148787811955392513", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1344544022/Screen_shot_2011-04-20_at_15.17.00_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1344544022/Screen_shot_2011-04-20_at_15.17.00_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@wall_of_arms \"Totally Enormous Extinct Dinosaurs, been looking for this song for ages, heard it \" sounds as if you're talking about a song.", "to_user": "wall_of_arms", "to_user_id": 102985297, "to_user_id_str": "102985297", "to_user_name": "ben.", "in_reply_to_status_id": 148787147099484160, "in_reply_to_status_id_str": "148787147099484160"}, +{"created_at": "Mon, 19 Dec 2011 15:31:53 +0000", "from_user": "tomtheminx", "from_user_id": 377039036, "from_user_id_str": "377039036", "from_user_name": "tom light", "geo": null, "id": 148787643747012600, "id_str": "148787643747012608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1552213971/223682_10150263666655785_557650784_7866754_1043800_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552213971/223682_10150263666655785_557650784_7866754_1043800_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@Schwarzenegger the pavement was his enemy. What killed all the dinosaurs..the ice age. #onelinerlegend", "to_user": "Schwarzenegger", "to_user_id": 12044602, "to_user_id_str": "12044602", "to_user_name": "Arnold"}, +{"created_at": "Mon, 19 Dec 2011 15:31:15 +0000", "from_user": "PDUDDYofficial", "from_user_id": 213357345, "from_user_id_str": "213357345", "from_user_name": "jung bourbon", "geo": null, "id": 148787486640975870, "id_str": "148787486640975872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1642318279/skull_lizard_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642318279/skull_lizard_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @LLoroncita: I found a picture of dinosaurs inside of a library book and it reminded me of @diplo http://t.co/buDimTCv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:30:39 +0000", "from_user": "iyptigeb", "from_user_id": 338527987, "from_user_id_str": "338527987", "from_user_name": "Atwater Patterson", "geo": null, "id": 148787332575793150, "id_str": "148787332575793152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1451203068/494_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1451203068/494_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "For my birthday I'm going somewhere with no internet access. Pretty sure this will involve time travel and possibly dinosaurs.Just thinking.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:30:14 +0000", "from_user": "Deedrapdr", "from_user_id": 430055328, "from_user_id_str": "430055328", "from_user_name": "Deedra Marolt", "geo": null, "id": 148787228867436540, "id_str": "148787228867436544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677537223/zc50bdyepy_121051728_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677537223/zc50bdyepy_121051728_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dinosaurs (First Drawings): http://t.co/6JQ41ymN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:29:55 +0000", "from_user": "Mayexiz", "from_user_id": 415409617, "from_user_id_str": "415409617", "from_user_name": "Madaline Tagg", "geo": null, "id": 148787151855829000, "id_str": "148787151855828992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1692696662/jloyie45ir_111979585-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692696662/jloyie45ir_111979585-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Giants & Dinosaurs [VHS]: http://t.co/SPTu8Xoq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:29:12 +0000", "from_user": "Jammmail", "from_user_id": 277590718, "from_user_id_str": "277590718", "from_user_name": "James Moore", "geo": null, "id": 148786968627642370, "id_str": "148786968627642368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1301049371/47080_462055476014_732666014_6575795_3139073_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1301049371/47080_462055476014_732666014_6575795_3139073_n_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @Luminouslondon: drawings + dinosaurs + cityscapes = some amazing illustrations http://t.co/AwGhLvww", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:29:06 +0000", "from_user": "wall_of_arms", "from_user_id": 102985297, "from_user_id_str": "102985297", "from_user_name": "ben.", "geo": null, "id": 148786945407979520, "id_str": "148786945407979520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681652787/Screen_Shot_2011-12-08_at_21.29.32_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681652787/Screen_Shot_2011-12-08_at_21.29.32_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@RichardKingg Totally Enormous Extinct Dinosaurs, been looking for this song for ages, heard it on tv, love it so mcuh", "to_user": "RichardKingg", "to_user_id": 20313727, "to_user_id_str": "20313727", "to_user_name": "Richard King", "in_reply_to_status_id": 148786797864951800, "in_reply_to_status_id_str": "148786797864951808"}, +{"created_at": "Mon, 19 Dec 2011 15:28:38 +0000", "from_user": "Rybel67", "from_user_id": 242478695, "from_user_id_str": "242478695", "from_user_name": "Beryl Sheppard", "geo": null, "id": 148786827116027900, "id_str": "148786827116027905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1528437037/Adonis_Baths_08_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1528437037/Adonis_Baths_08_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@fstead @Pete_Stead I still watch Terra Nova too mainly for the dinosaurs but the \"plot\" is full of holes", "to_user": "fstead", "to_user_id": 19713709, "to_user_id_str": "19713709", "to_user_name": "Frank Stead"}, +{"created_at": "Mon, 19 Dec 2011 15:28:37 +0000", "from_user": "Csoya", "from_user_id": 370797330, "from_user_id_str": "370797330", "from_user_name": "Christine Soya", "geo": null, "id": 148786822300975100, "id_str": "148786822300975104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1551781101/weekender_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1551781101/weekender_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Blackberrys are the dinosaurs of the tech world @AMP_Agency @ReutersMedia: Americans losing addiction to \"CrackBerrys\" http://t.co/zlPpzVg6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:28:32 +0000", "from_user": "ChrisBakerTown", "from_user_id": 350403062, "from_user_id_str": "350403062", "from_user_name": "Chris", "geo": null, "id": 148786801182646270, "id_str": "148786801182646272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691716930/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691716930/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@megnic_ but I like turkey dinosaurs?! X", "to_user": "megnic_", "to_user_id": 46473607, "to_user_id_str": "46473607", "to_user_name": "Megan Nicholson", "in_reply_to_status_id": 148783712451035140, "in_reply_to_status_id_str": "148783712451035137"}, +{"created_at": "Mon, 19 Dec 2011 15:28:28 +0000", "from_user": "JD_Strachan", "from_user_id": 339283792, "from_user_id_str": "339283792", "from_user_name": "Jamie Strachan", "geo": null, "id": 148786786758430720, "id_str": "148786786758430720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687161568/222086_8342703022_771378022_525710_3597_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687161568/222086_8342703022_771378022_525710_3597_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Some people like the word bell end dont they, or as they spell it belend. Homophobic limited banter belongs with the dinosaurs. Yawn. Jog on", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:27:31 +0000", "from_user": "roseofarcadia", "from_user_id": 141239584, "from_user_id_str": "141239584", "from_user_name": "Ashtin Rybat", "geo": null, "id": 148786547691503600, "id_str": "148786547691503618", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690987888/norman-judas_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690987888/norman-judas_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/JPGrI8DQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 15:26:38 +0000", "from_user": "Luminouslondon", "from_user_id": 281493697, "from_user_id_str": "281493697", "from_user_name": "Luminous ", "geo": null, "id": 148786322029547520, "id_str": "148786322029547520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1573813270/Hello3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1573813270/Hello3_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "drawings + dinosaurs + cityscapes = some amazing illustrations http://t.co/AwGhLvww", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:26:36 +0000", "from_user": "JamieEllen_UK", "from_user_id": 45818296, "from_user_id_str": "45818296", "from_user_name": "Jamie Goodman", "geo": null, "id": 148786313506721800, "id_str": "148786313506721792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1654474756/IMG00864-20111122-2046_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654474756/IMG00864-20111122-2046_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@x_Tarraa yes but my dinosaur can eat people we hate ;) aha but tbf we have got too many ducks ( duck race ;) )ahah lol! Not many dinosaurs!", "to_user": "x_Tarraa", "to_user_id": 258027975, "to_user_id_str": "258027975", "to_user_name": "Tara walker"}, +{"created_at": "Mon, 19 Dec 2011 15:26:16 +0000", "from_user": "_FeeSampaio", "from_user_id": 283821152, "from_user_id_str": "283821152", "from_user_name": "Para me ter, segue \\u2714", "geo": null, "id": 148786230904102900, "id_str": "148786230904102912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691376232/nbhj__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691376232/nbhj__normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/6gHO9Ebd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:26:12 +0000", "from_user": "bccahill82", "from_user_id": 218004016, "from_user_id_str": "218004016", "from_user_name": "Bailey Cahill", "geo": null, "id": 148786213023784960, "id_str": "148786213023784960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1637976537/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637976537/image_normal.jpg", "source": "<a href="http://www.twitter.com" rel="nofollow">Twitter for Windows Phone</a>", "text": "RT @kiley_kinnison: why are dinosaurs so attractive?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:25:46 +0000", "from_user": "VictoriaACS", "from_user_id": 130211345, "from_user_id_str": "130211345", "from_user_name": "Vict\\u00F3ria Cipriano ", "geo": null, "id": 148786104122867700, "id_str": "148786104122867714", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1670312104/IOASJ_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670312104/IOASJ_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "EU TINHA UMA ASK, AI EU FUI OLHAR: tumblrbot asked you:\\nROBOTS OR DINOSAURS?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:25:34 +0000", "from_user": "RichardKingg", "from_user_id": 20313727, "from_user_id_str": "20313727", "from_user_name": "Richard King", "geo": null, "id": 148786054525231100, "id_str": "148786054525231104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1344544022/Screen_shot_2011-04-20_at_15.17.00_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1344544022/Screen_shot_2011-04-20_at_15.17.00_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Everyone go listen to Totally Enormous Extinct Dinosaurs right now! SO GOOD.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:24:50 +0000", "from_user": "x_Tarraa", "from_user_id": 258027975, "from_user_id_str": "258027975", "from_user_name": "Tara walker", "geo": null, "id": 148785872416940030, "id_str": "148785872416940033", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682578344/296668_2047154867778_1511619704_31762921_1169642499_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682578344/296668_2047154867778_1511619704_31762921_1169642499_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@JamieEllen_UK. Aww then my duck will die :( ducks r cute than dinosaurs :L Xx", "to_user": "JamieEllen_UK", "to_user_id": 45818296, "to_user_id_str": "45818296", "to_user_name": "Jamie Goodman"}, +{"created_at": "Mon, 19 Dec 2011 15:24:49 +0000", "from_user": "SuperdupaET", "from_user_id": 194222708, "from_user_id_str": "194222708", "from_user_name": "Elisa Taylor", "geo": null, "id": 148785865173385200, "id_str": "148785865173385216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697618513/image4325_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697618513/image4325_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Watching over @NaomiScott & Shelley Conn interview #TerraNova ''Dinosaurs are divas'' Naomi is so naturally beautiful, no make up needed :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:23:29 +0000", "from_user": "FocusingOnKela", "from_user_id": 232123989, "from_user_id_str": "232123989", "from_user_name": "Kela Ocran OBAS ", "geo": null, "id": 148785530505666560, "id_str": "148785530505666560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1677709503/WkDbv9G5_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677709503/WkDbv9G5_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "flip fones are extinct... they're like dinosaurs... My great grand mother got a android nd she texts...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:22:58 +0000", "from_user": "ohdangshadia", "from_user_id": 276293102, "from_user_id_str": "276293102", "from_user_name": "Shadia Bowie", "geo": null, "id": 148785398963912700, "id_str": "148785398963912705", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1407181279/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1407181279/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:22:05 +0000", "from_user": "dorthaggeorges", "from_user_id": 305932002, "from_user_id_str": "305932002", "from_user_name": "dortha georges", "geo": null, "id": 148785180188999680, "id_str": "148785180188999681", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1682943346/Comforter_Ideas_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682943346/Comforter_Ideas_normal.jpg", "source": "<a href="http://comforterideas.com" rel="nofollow">Comforter Ideas</a>", "text": "q: Dinosaurs B http://t.co/wCah3QG3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:17:44 +0000", "from_user": "Little_Harry", "from_user_id": 257424090, "from_user_id_str": "257424090", "from_user_name": "Harry Steven Pond", "geo": null, "id": 148784082443182080, "id_str": "148784082443182080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698965461/iaza14638635227900_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698965461/iaza14638635227900_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", "text": "@LittleTimelord *grips him tightly as the dinosaurs head the other way*", "to_user": "LittleTimelord", "to_user_id": 158016689, "to_user_id_str": "158016689", "to_user_name": "Jackson Pond", "in_reply_to_status_id": 148778430572404740, "in_reply_to_status_id_str": "148778430572404736"}, +{"created_at": "Mon, 19 Dec 2011 15:16:40 +0000", "from_user": "laurenbeckwith", "from_user_id": 19728948, "from_user_id_str": "19728948", "from_user_name": "Lauren Beckwith", "geo": null, "id": 148783810174132220, "id_str": "148783810174132226", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1672742792/eightbit-97a96b66-1fcd-4958-bfa3-32b597ffb458_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672742792/eightbit-97a96b66-1fcd-4958-bfa3-32b597ffb458_normal.png", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "dinosaurs! on Gates! http://t.co/aNXzsh9I", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:16:33 +0000", "from_user": "Jitt_YouSleepxD", "from_user_id": 54692408, "from_user_id_str": "54692408", "from_user_name": "K . =)", "geo": null, "id": 148783785083797500, "id_str": "148783785083797504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691830150/7lQzzgk7_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691830150/7lQzzgk7_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:16:28 +0000", "from_user": "shanique_nino", "from_user_id": 212921938, "from_user_id_str": "212921938", "from_user_name": "shanique brophy", "geo": null, "id": 148783763395055600, "id_str": "148783763395055616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1666298297/Screen_20111123_152544_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666298297/Screen_20111123_152544_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "I miss those days when we all loved each other. Before Barney was accused of giving you HIV & we didn't kick purple dinosaurs in the balls..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:16:00 +0000", "from_user": "Muchandi", "from_user_id": 390590243, "from_user_id_str": "390590243", "from_user_name": "Athul johnson", "geo": null, "id": 148783646126522370, "id_str": "148783646126522368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1587614233/kWGH8sNf_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587614233/kWGH8sNf_normal", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @kiduva: According to Feminists , Men evolved from dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:15:32 +0000", "from_user": "merylecorbett", "from_user_id": 44068358, "from_user_id_str": "44068358", "from_user_name": "Meryle Corbett", "geo": null, "id": 148783530057543680, "id_str": "148783530057543681", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/322252581/meryle_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/322252581/meryle_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Blogging for Dinosaurs- the 1st 30 days - http://t.co/HKNjgp9N", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:15:08 +0000", "from_user": "Shirey7031secre", "from_user_id": 421676688, "from_user_id_str": "421676688", "from_user_name": "Jesica Shirey", "geo": null, "id": 148783427703939070, "id_str": "148783427703939072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1658395535/439960351208757_tree_shade_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658395535/439960351208757_tree_shade_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Ice Age: Dawn of the Dinosaurs: Ice Age: Dawn of the Dinosaurs\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nPrice: $ 2.99\\n http://t.co/9FMVNW1Z", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:15:07 +0000", "from_user": "Doughman6510sen", "from_user_id": 421017735, "from_user_id_str": "421017735", "from_user_name": "Ai Doughman", "geo": null, "id": 148783423182483460, "id_str": "148783423182483456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1656927941/9670560321171215_where_are_you_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656927941/9670560321171215_where_are_you_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Ice Age: Dawn of the Dinosaurs: Ice Age: Dawn of the Dinosaurs\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nPrice: $ 2.99\\n http://t.co/p7Ex9ll3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:14:59 +0000", "from_user": "tcande", "from_user_id": 28954032, "from_user_id_str": "28954032", "from_user_name": "Scout Finch ", "geo": null, "id": 148783392354340860, "id_str": "148783392354340865", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1616468131/Photo_on_2011-05-03_at_16.01__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616468131/Photo_on_2011-05-03_at_16.01__2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @___step: i just woke up from a nightmare.. about dinosaurs. i'm 5.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:14:39 +0000", "from_user": "JediJewlie", "from_user_id": 250003316, "from_user_id_str": "250003316", "from_user_name": "Julie Mandelbaumberg", "geo": null, "id": 148783307662966800, "id_str": "148783307662966784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1393825961/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1393825961/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@creationliberty @impressfx The #Bible does talk about #Dinosaurs. \\n\\nAhh that would be soo cool!!!!", "to_user": "creationliberty", "to_user_id": 302078063, "to_user_id_str": "302078063", "to_user_name": "Creation Liberty", "in_reply_to_status_id": 148761830804819970, "in_reply_to_status_id_str": "148761830804819968"}, +{"created_at": "Mon, 19 Dec 2011 15:14:35 +0000", "from_user": "darindadans", "from_user_id": 124886886, "from_user_id_str": "124886886", "from_user_name": "Darinda Dans", "geo": null, "id": 148783292408283140, "id_str": "148783292408283138", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1490708526/20101009_Jefferson07_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1490708526/20101009_Jefferson07_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "#Dinosaurs with killer claws yield new theory about flight: http://t.co/eEsotdCY #paleontology", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:13:34 +0000", "from_user": "Kareyhtz", "from_user_id": 431757216, "from_user_id_str": "431757216", "from_user_name": "Karey Yago", "geo": null, "id": 148783033208672260, "id_str": "148783033208672257", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681154158/large_41018_1377232112211_1274100057_30918221_69976_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681154158/large_41018_1377232112211_1274100057_30918221_69976_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Draw 50 Dinosaurs and Other Prehistoric Animals: http://t.co/pBHTeWXy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:10:56 +0000", "from_user": "Mykayak", "from_user_id": 112915074, "from_user_id_str": "112915074", "from_user_name": "Myke", "geo": null, "id": 148782371251032060, "id_str": "148782371251032064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/688746097/Still_1_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/688746097/Still_1_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "Just heard dinosaurs referred to as \"Jesus horses.\" What fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:10:38 +0000", "from_user": "BenAchtabowski", "from_user_id": 278613639, "from_user_id_str": "278613639", "from_user_name": "Ben Achtabowski", "geo": null, "id": 148782295275409400, "id_str": "148782295275409408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1494010948/175730_10101114713447134_2312444_74941472_5925956_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1494010948/175730_10101114713447134_2312444_74941472_5925956_o_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Watched 'Tree of Life' last night... was not expecting dinosaurs in that movie. But they were there.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:10:01 +0000", "from_user": "SalsaChoicer", "from_user_id": 121968669, "from_user_id_str": "121968669", "from_user_name": "Salsa Choicer", "geo": null, "id": 148782139947745280, "id_str": "148782139947745280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://google.com" rel="nofollow">SalsaChoicer</a>", "text": "did you know? dinosaurs kisse light sabers at night", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:09:57 +0000", "from_user": "amanav_com", "from_user_id": 161724315, "from_user_id_str": "161724315", "from_user_name": "amanav.com", "geo": null, "id": 148782125649367040, "id_str": "148782125649367040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1042598287/amanav_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1042598287/amanav_normal.jpg", "source": "<a href="http://www.amanav.com" rel="nofollow">amanav.com</a>", "text": "ProX Style 3D Glasses - Magenta / Green Plastic 3D Glasses The U... Price 0,26 USD #bargain #All #Categories http://t.co/oEQcakRw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:09:18 +0000", "from_user": "NoveltyAnPTI", "from_user_id": 399349723, "from_user_id_str": "399349723", "from_user_name": "NoveltyAnPTI", "geo": null, "id": 148781961647882240, "id_str": "148781961647882240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1610368113/1319755746_6-inch-squawkin-chicken-classic-novelty-gag-toy-gift-idea-sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610368113/1319755746_6-inch-squawkin-chicken-classic-novelty-gag-toy-gift-idea-sm_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "75% off: Ten Little Dinosaurs Picture Book (Wiggle Eyes) http://t.co/cosKOIdz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:09:08 +0000", "from_user": "MorningJoe", "from_user_id": 15436633, "from_user_id_str": "15436633", "from_user_name": "Morning Joe", "geo": null, "id": 148781919084085250, "id_str": "148781919084085253", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1246392245/Screen_shot_2011-02-16_at_11.07.33_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1246392245/Screen_shot_2011-02-16_at_11.07.33_AM_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Video: 'Terra Nova' star: Show is 'Swiss Family Robinson' with dinosaurs http://t.co/KQ75zpR3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:08:13 +0000", "from_user": "Z0mbieWaffle", "from_user_id": 141213416, "from_user_id_str": "141213416", "from_user_name": "alis\\u00F8nbuscus [\\u266B]", "geo": null, "id": 148781688447705100, "id_str": "148781688447705088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699245312/009small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699245312/009small_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @antikris77: @Z0mbieWaffle Dinosaurs don't eat humans. They eat huge meteorites.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:07:58 +0000", "from_user": "waitatiri", "from_user_id": 71996755, "from_user_id_str": "71996755", "from_user_name": "\\u0434\\u0432\\u0430 \\u0442\\u0440\\u0438", "geo": null, "id": 148781625071779840, "id_str": "148781625071779840", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702195233/webcam-toy-photo8_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702195233/webcam-toy-photo8_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@chrisvisconti i miss gummy dinosaurs :(", "to_user": "chrisvisconti", "to_user_id": 22599099, "to_user_id_str": "22599099", "to_user_name": "Christopher Visconti", "in_reply_to_status_id": 148779344058253300, "in_reply_to_status_id_str": "148779344058253313"}, +{"created_at": "Mon, 19 Dec 2011 15:07:20 +0000", "from_user": "vendeezy", "from_user_id": 25746920, "from_user_id_str": "25746920", "from_user_name": "Luke vendutty ", "geo": null, "id": 148781467919593470, "id_str": "148781467919593472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1615922477/381646_10150894451680300_593340299_21531824_327024527_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615922477/381646_10150894451680300_593340299_21531824_327024527_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Dizzy dinosaurs was not the best idea. #littleboys", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:07:19 +0000", "from_user": "chesterfieldpst", "from_user_id": 180471031, "from_user_id_str": "180471031", "from_user_name": "Chesterfield Post", "geo": null, "id": 148781464228610050, "id_str": "148781464228610048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1106669098/cp_twitter_avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1106669098/cp_twitter_avatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Long before the arrival of penguins, giant plant-eating dinosaurs roamed Antarctica. #worldnews #showbiz http://t.co/J0TgnyDp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:07:11 +0000", "from_user": "rushilawasthi24", "from_user_id": 63892074, "from_user_id_str": "63892074", "from_user_name": "rushil awasthi", "geo": null, "id": 148781428052733950, "id_str": "148781428052733953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1155054102/england-beckham_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1155054102/england-beckham_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @iYatinGupta: And women ? RT @kiduva: According to Feminists , Men evolved from dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:06:38 +0000", "from_user": "_iAFIQAAAH", "from_user_id": 123879379, "from_user_id_str": "123879379", "from_user_name": "AFIQAH/\\uC544\\uD53C\\uCE74 \\u2605", "geo": null, "id": 148781292312469500, "id_str": "148781292312469504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701524570/1317502761-picsay_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701524570/1317502761-picsay_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "why are we talking about dinosaurs exhibition at science centre... do you know how much i miss working there and the people...............", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:06:34 +0000", "from_user": "marcin4055", "from_user_id": 361328478, "from_user_id_str": "361328478", "from_user_name": "Ryszard Marciniak", "geo": null, "id": 148781273576521730, "id_str": "148781273576521729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1603656950/EmpireBackround_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1603656950/EmpireBackround_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "What if dinosaurs were alive today? http://t.co/K4rKDHNc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:06:33 +0000", "from_user": "ToysDiscountPri", "from_user_id": 416180527, "from_user_id_str": "416180527", "from_user_name": "ToysDiscountPrices", "geo": null, "id": 148781270866997250, "id_str": "148781270866997248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1646543511/41dhfd6AF0L._SL500_AA300__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646543511/41dhfd6AF0L._SL500_AA300__normal.jpg", "source": "<a href="http://toysdiscountprices.com/" rel="nofollow">ToysDiscountPrices</a>", "text": "http://t.co/jWhix4zb Discount fisher price dinosaur toys - Fisher-Price SMART CYCLE Software - Dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:06:08 +0000", "from_user": "cravenmavenblog", "from_user_id": 130616569, "from_user_id_str": "130616569", "from_user_name": "craven maven", "geo": null, "id": 148781166021980160, "id_str": "148781166021980162", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1271928218/CM_Logo_Morsel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1271928218/CM_Logo_Morsel_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @sixthformpoet: I worry that my life's a Choose Your Own Adventure story, in which I make a series of wrong decisions and eventually get eaten by dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:05:18 +0000", "from_user": "VaranusSalvator", "from_user_id": 12191962, "from_user_id_str": "12191962", "from_user_name": "Ivan Kwan", "geo": null, "id": 148780953899245570, "id_str": "148780953899245569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1554840373/TwitterAvatar__2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554840373/TwitterAvatar__2__normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "The Second International Workshop on the Biology of Sauropod Dinosaurs (part I) http://t.co/nbMEDPpb by @TetZoo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:05:07 +0000", "from_user": "_Squirtlee", "from_user_id": 220861966, "from_user_id_str": "220861966", "from_user_name": "St\\u00FCssy Janee", "geo": null, "id": 148780909351534600, "id_str": "148780909351534592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1675969605/378697_2818872713902_1321423529_33166026_1630056191_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675969605/378697_2818872713902_1321423529_33166026_1630056191_n_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "So did CaveMen nd Dinosaurs co-exist with one another ? #AskTwitter", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:04:46 +0000", "from_user": "kayyshane", "from_user_id": 42525666, "from_user_id_str": "42525666", "from_user_name": "Kayla Shane", "geo": null, "id": 148780820079980540, "id_str": "148780820079980544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1473482431/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1473482431/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT \\u201C@QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?\\u201D hahah someone please use this line.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:04:33 +0000", "from_user": "TristonGrove", "from_user_id": 402417195, "from_user_id_str": "402417195", "from_user_name": "Triston Grove", "geo": null, "id": 148780766577442800, "id_str": "148780766577442816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1656112515/qqqqqqqqqqq_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656112515/qqqqqqqqqqq_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "A dinosaur just ate another dinosaurs head off. Cool movie", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:04:18 +0000", "from_user": "musik_zeitung", "from_user_id": 440095486, "from_user_id_str": "440095486", "from_user_name": "musik magazin", "geo": null, "id": 148780702073237500, "id_str": "148780702073237504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": null, "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "19.12.2011 | Totally Enormous Extinct Dinosaurs, T.E.E.D bringen Nokia in Fahrt: Mit seinem Projekt Totally Enor... http://t.co/2zUG8qHs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:03:38 +0000", "from_user": "iwatch3d", "from_user_id": 83695497, "from_user_id_str": "83695497", "from_user_name": "iWATCH3D", "geo": null, "id": 148780534066196480, "id_str": "148780534066196481", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1490417177/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1490417177/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Visit this YT channel for BBC 3D productions like Strictly,Wimbledon 2011and Planet Dinosaurs, while it's there http://t.co/33EAPqCw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:03:31 +0000", "from_user": "BornThisHappy_", "from_user_id": 106080081, "from_user_id_str": "106080081", "from_user_name": "\\u03B1\\u0274\\u025B\\u2665", "geo": null, "id": 148780505633009660, "id_str": "148780505633009664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700507668/miamicon13_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700507668/miamicon13_normal.png", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/e1px60L5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:02:55 +0000", "from_user": "Bridgetsmiddy1", "from_user_id": 439771455, "from_user_id_str": "439771455", "from_user_name": "Bridget Smiddy", "geo": null, "id": 148780353451073540, "id_str": "148780353451073536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Brottary orrrrr I just wanted an excuse to hang 10 wif ya and watch dinosaurs tonight #raaaaaawr", "to_user": "Brottary", "to_user_id": 259981210, "to_user_id_str": "259981210", "to_user_name": "John Bottary"}, +{"created_at": "Mon, 19 Dec 2011 15:02:18 +0000", "from_user": "hebiflux", "from_user_id": 14704085, "from_user_id_str": "14704085", "from_user_name": "Galdric Pons", "geo": null, "id": 148780199880818700, "id_str": "148780199880818689", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1158279506/photo_122_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1158279506/photo_122_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Light painting, j veux bien mais \\u00E0 ce niveau l\\u00E0... wow : http://t.co/6FzvWvGj #photo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:02:17 +0000", "from_user": "buhrito", "from_user_id": 361821112, "from_user_id_str": "361821112", "from_user_name": "Brjen Rito", "geo": null, "id": 148780194818297860, "id_str": "148780194818297856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1671945351/Picture0004_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671945351/Picture0004_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Woke up too early. Can't sleep. Went on a random channel french channel and now watching French Kung Fu fighting Dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:02:10 +0000", "from_user": "LariiSpeaks", "from_user_id": 104063821, "from_user_id_str": "104063821", "from_user_name": "Larii Leonardo", "geo": null, "id": 148780164417994750, "id_str": "148780164417994754", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687789970/331309370_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687789970/331309370_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Hahahaha RT @smokeybones_: Dinosaurs used to eat weed plants so you know they got high", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:01:21 +0000", "from_user": "Emmygirlgotswag", "from_user_id": 357257392, "from_user_id_str": "357257392", "from_user_name": "Emily Paige", "geo": null, "id": 148779961388503040, "id_str": "148779961388503040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699444119/310987_2707105240823_1352577397_33006926_1541835419_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699444119/310987_2707105240823_1352577397_33006926_1541835419_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @Matt_Herrald: @Emmygirlgotswag #comet is named after something that killed the dinosaurs! #prancer is named after\\nprancing.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:01:05 +0000", "from_user": "Matt_Herrald", "from_user_id": 32707192, "from_user_id_str": "32707192", "from_user_name": "Matt Herrald", "geo": null, "id": 148779892459311100, "id_str": "148779892459311105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1549457612/229128_208123955877422_100000394571264_651263_7559315_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1549457612/229128_208123955877422_100000394571264_651263_7559315_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Emmygirlgotswag #comet is named after something that killed the dinosaurs! #prancer is named after\\nprancing.", "to_user": "Emmygirlgotswag", "to_user_id": 357257392, "to_user_id_str": "357257392", "to_user_name": "Emily Paige", "in_reply_to_status_id": 148779618189590530, "in_reply_to_status_id_str": "148779618189590528"}, +{"created_at": "Mon, 19 Dec 2011 15:00:49 +0000", "from_user": "BelTel_World", "from_user_id": 40487586, "from_user_id_str": "40487586", "from_user_name": "Belfast Telegraph", "geo": null, "id": 148779825111375870, "id_str": "148779825111375874", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/214649322/bt-clock_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/214649322/bt-clock_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Titanosaur bone found in Antarctica: Long before the arrival of penguins, giant plant-eating dinosaurs roamed An... http://t.co/xSynZ6ip", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:59:33 +0000", "from_user": "Maddieegy", "from_user_id": 431737617, "from_user_id_str": "431737617", "from_user_name": "Maddie Sprosty", "geo": null, "id": 148779507757752320, "id_str": "148779507757752321", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681109018/peamr33lyq_123087335_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681109018/peamr33lyq_123087335_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dinosaurs - 8 Inch Porcelain Plate: Dinosaurs Plate is new and handcrafted utilizing a unique process resulting ... http://t.co/pEErB1sH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:59:06 +0000", "from_user": "Stekachev_Oleg", "from_user_id": 400406118, "from_user_id_str": "400406118", "from_user_name": "Spectralman", "geo": null, "id": 148779395694342140, "id_str": "148779395694342144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1612151981/spectral_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612151981/spectral_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "You make me happy... \"Totally Enormous Extinct Dinosaurs - Trouble [Soundcloud edit]\" http://t.co/oFs0FW3G", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:58:54 +0000", "from_user": "chrisvisconti", "from_user_id": 22599099, "from_user_id_str": "22599099", "from_user_name": "Christopher Visconti", "geo": null, "id": 148779344058253300, "id_str": "148779344058253313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1661201103/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661201103/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Gummy dinosaurs and water = breakfast of champions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:58:21 +0000", "from_user": "hunterhalbrucke", "from_user_id": 340741060, "from_user_id_str": "340741060", "from_user_name": "Hunter Halbrucker", "geo": null, "id": 148779205302300670, "id_str": "148779205302300672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1461152354/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1461152354/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Will you alway make me laugh lmao! dinosaurs!!! Lmao! Bro!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:58:07 +0000", "from_user": "BriceVillalouos", "from_user_id": 400697832, "from_user_id_str": "400697832", "from_user_name": "Brice Villalouos", "geo": null, "id": 148779148171673600, "id_str": "148779148171673603", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dinosaurs!: http://t.co/FhZ7BG5H", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:56:55 +0000", "from_user": "TheSundayIndo", "from_user_id": 33178673, "from_user_id_str": "33178673", "from_user_name": "Sunday Independent", "geo": null, "id": 148778843380006900, "id_str": "148778843380006912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/146439345/ireland-flag.jpg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/146439345/ireland-flag.jpg_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Titanosaur bone found in Antarctica: Long before the arrival of penguins, giant plant-eating dinosaurs roamed An... http://t.co/eD19yE6s", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:56:40 +0000", "from_user": "bburnsbell", "from_user_id": 19505595, "from_user_id_str": "19505595", "from_user_name": "Brandon Bell", "geo": null, "id": 148778781312688130, "id_str": "148778781312688128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639785285/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639785285/image_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/4m3gM14V", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:56:11 +0000", "from_user": "ToysDiscountPri", "from_user_id": 416180527, "from_user_id_str": "416180527", "from_user_name": "ToysDiscountPrices", "geo": null, "id": 148778662131548160, "id_str": "148778662131548160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1646543511/41dhfd6AF0L._SL500_AA300__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646543511/41dhfd6AF0L._SL500_AA300__normal.jpg", "source": "<a href="http://toysdiscountprices.com/" rel="nofollow">ToysDiscountPrices</a>", "text": "http://t.co/eLavfSYE Discount large toy dinosaurs - Big Mouth Toys Inflatable Dino Head", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:55:08 +0000", "from_user": "kacidb615", "from_user_id": 207274534, "from_user_id_str": "207274534", "from_user_name": "Kaci Bartlett", "geo": null, "id": 148778394794999800, "id_str": "148778394794999808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1633131102/IMG_1716_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633131102/IMG_1716_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @austinpstewart: Seriously so glad that dinosaurs are extinct. We would be super screwed if they weren't.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:55:05 +0000", "from_user": "Creolaokd", "from_user_id": 431689006, "from_user_id_str": "431689006", "from_user_name": "Creola Oregel", "geo": null, "id": 148778383399071740, "id_str": "148778383399071745", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681009773/jsbc2t55tc_130916810-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681009773/jsbc2t55tc_130916810-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "THE MAGIC SCHOOL BUS ADVENTURE SERIES DELUXE EDITION VOLUME 2: SCHOLASTIC'S THE MAGIC SCHOOL BUS ADVENTURE SERIE... http://t.co/Z2ZPnAnG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:54:58 +0000", "from_user": "stevebrookstein", "from_user_id": 175153531, "from_user_id_str": "175153531", "from_user_name": "steve brookstein", "geo": null, "id": 148778353443340300, "id_str": "148778353443340288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1533335814/grumpy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1533335814/grumpy_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@devilfish10 he's 3.5 dinosaurs are fine but fisherman taking Nemo is too much.", "to_user": "devilfish10", "to_user_id": 201862839, "to_user_id_str": "201862839", "to_user_name": "Jenny Frankfurt", "in_reply_to_status_id": 148777368138420220, "in_reply_to_status_id_str": "148777368138420224"}, +{"created_at": "Mon, 19 Dec 2011 14:54:46 +0000", "from_user": "missmaunda", "from_user_id": 25812818, "from_user_id_str": "25812818", "from_user_name": "Maunda Pegahmagabow", "geo": null, "id": 148778305808633860, "id_str": "148778305808633856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693271389/Parry_20Sound-20111214-00272_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693271389/Parry_20Sound-20111214-00272_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "That's it!! No more \"last day of the dinosaurs\" before bed.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:54:02 +0000", "from_user": "berniefolan", "from_user_id": 16935394, "from_user_id_str": "16935394", "from_user_name": "berniefolan", "geo": null, "id": 148778120193912830, "id_str": "148778120193912833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1165462169/1ce489f9-5d0c-4ecc-93f3-7eb9cfdeaa75_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1165462169/1ce489f9-5d0c-4ecc-93f3-7eb9cfdeaa75_normal.png", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "Interesting incl comments. RT @LibGoddess: Fascinating: 'Why journals are the dinosaurs of academia' http://t.co/qveApovz via @thesiswhispe\\u2026", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:53:54 +0000", "from_user": "Suzannaqfe", "from_user_id": 431755791, "from_user_id_str": "431755791", "from_user_name": "Suzanna Pieffer", "geo": null, "id": 148778086442352640, "id_str": "148778086442352640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681147744/2i1jhoi3uz_134367539_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681147744/2i1jhoi3uz_134367539_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Tracking Those Incredible Dinosaurs-- And the People Who Knew Them: http://t.co/nMIMu0yt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:53:27 +0000", "from_user": "zakarina98", "from_user_id": 419544224, "from_user_id_str": "419544224", "from_user_name": "\\u0417\\u0430\\u043A\\u0430\\u0440\\u0438\\u043D\\u0430 \\u0420\\u0430\\u0439\\u0445\\u0430\\u043D", "geo": null, "id": 148777970838933500, "id_str": "148777970838933505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1676843524/24102011426_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676843524/24102011426_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/FHR7db4f", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:53:11 +0000", "from_user": "coolwhipyo", "from_user_id": 80123821, "from_user_id_str": "80123821", "from_user_name": "(mad-dee-son) \\uE314", "geo": null, "id": 148777907093909500, "id_str": "148777907093909504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701080164/profileImage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701080164/profileImage_normal.jpg", "source": "<a href="http://bit.ly/fVzRUd" rel="nofollow">TwitPal</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:52:55 +0000", "from_user": "smokeybones_", "from_user_id": 30666774, "from_user_id_str": "30666774", "from_user_name": "Chris\\uE105Medeiros", "geo": null, "id": 148777837845950460, "id_str": "148777837845950466", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687215236/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687215236/profile_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Dinosaurs used to eat weed plants so you know they got high", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:52:46 +0000", "from_user": "Little_Harry", "from_user_id": 257424090, "from_user_id_str": "257424090", "from_user_name": "Harry Steven Pond", "geo": null, "id": 148777800755724300, "id_str": "148777800755724290", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698965461/iaza14638635227900_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698965461/iaza14638635227900_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", "text": "@LittleTimelord *the anomaly appears practically 2 minutes away from them...But there's dinosaurs near it...And Harrys size of a 9 year old*", "to_user": "LittleTimelord", "to_user_id": 158016689, "to_user_id_str": "158016689", "to_user_name": "Jackson Pond", "in_reply_to_status_id": 148742187121786880, "in_reply_to_status_id_str": "148742187121786881"}, +{"created_at": "Mon, 19 Dec 2011 14:51:55 +0000", "from_user": "SheEatsGlitter", "from_user_id": 187540539, "from_user_id_str": "187540539", "from_user_name": "Dances With Wolves", "geo": null, "id": 148777584853909500, "id_str": "148777584853909504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1692928009/akE4d3Qr_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692928009/akE4d3Qr_normal", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "i wish dinosaurs were real :(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:51:20 +0000", "from_user": "antikris77", "from_user_id": 81806873, "from_user_id_str": "81806873", "from_user_name": "Kristiaan", "geo": null, "id": 148777440783773700, "id_str": "148777440783773696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1479002272/ship_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1479002272/ship_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@Z0mbieWaffle Dinosaurs don't eat humans. They eat huge meteorites.", "to_user": "Z0mbieWaffle", "to_user_id": 141213416, "to_user_id_str": "141213416", "to_user_name": "alis\\u00F8nbuscus [\\u266B]", "in_reply_to_status_id": 148773534494244860, "in_reply_to_status_id_str": "148773534494244865"}, +{"created_at": "Mon, 19 Dec 2011 14:51:03 +0000", "from_user": "devilfish10", "from_user_id": 201862839, "from_user_id_str": "201862839", "from_user_name": "Jenny Frankfurt", "geo": null, "id": 148777368138420220, "id_str": "148777368138420224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1354583358/IMG_2450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1354583358/IMG_2450_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@stevebrookstein How old is he now? My son had no fears at all about the dinosaurs when he was 3. Now at 4...it could be an issue.", "to_user": "stevebrookstein", "to_user_id": 175153531, "to_user_id_str": "175153531", "to_user_name": "steve brookstein", "in_reply_to_status_id": 148776389171085300, "in_reply_to_status_id_str": "148776389171085313"}, +{"created_at": "Mon, 19 Dec 2011 14:50:00 +0000", "from_user": "SalsaChoicer", "from_user_id": 121968669, "from_user_id_str": "121968669", "from_user_name": "Salsa Choicer", "geo": null, "id": 148777104857767940, "id_str": "148777104857767936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://google.com" rel="nofollow">SalsaChoicer</a>", "text": "did you know? dinosaurs hate lazers at night", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:49:40 +0000", "from_user": "HannahMiriam", "from_user_id": 238778875, "from_user_id_str": "238778875", "from_user_name": "HannahMiriam", "geo": null, "id": 148777020585807870, "id_str": "148777020585807872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698908569/IMG00645-20111217-1218_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698908569/IMG00645-20111217-1218_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Just saw the cutest thing in the world a baby dinosaur onesie. Cannot wait to start popping out babies so I can dress them like Dinosaurs!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:49:10 +0000", "from_user": "Special_Kaaayyy", "from_user_id": 265611648, "from_user_id_str": "265611648", "from_user_name": "K.Ridley", "geo": null, "id": 148776892969922560, "id_str": "148776892969922561", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677165666/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677165666/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "I think she dreaming bout dinosaurs, cause she jus woke up and asked me were they real? WTF o_O", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:47:32 +0000", "from_user": "_thainanlopes", "from_user_id": 428325243, "from_user_id_str": "428325243", "from_user_name": " tha :}", "geo": null, "id": 148776485656858620, "id_str": "148776485656858624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702306400/125_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702306400/125_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/UYZWcblB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:46:54 +0000", "from_user": "iYatinGupta", "from_user_id": 155140444, "from_user_id_str": "155140444", "from_user_name": "Thats My Name", "geo": null, "id": 148776324364898300, "id_str": "148776324364898304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702360599/war_on_christmas_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702360599/war_on_christmas_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "And women ? RT @kiduva: According to Feminists , Men evolved from dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:46:34 +0000", "from_user": "o_OBEYmeTho", "from_user_id": 301763896, "from_user_id_str": "301763896", "from_user_name": "*Determination\\u2665", "geo": null, "id": 148776239648342000, "id_str": "148776239648342016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1659703693/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659703693/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @spiffed_up: Kiss me if I'm wrong... But dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:46:31 +0000", "from_user": "kiduva", "from_user_id": 359215276, "from_user_id_str": "359215276", "from_user_name": "\\u044F\\u0454\\u0438\\u05E0\\u03B9\\u0442\\u043D \\u2714", "geo": null, "id": 148776228395028480, "id_str": "148776228395028480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1685315462/simpsons_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685315462/simpsons_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "According to Feminists , Men evolved from dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:46:31 +0000", "from_user": "harrioakland", "from_user_id": 364955269, "from_user_id_str": "364955269", "from_user_name": "Male HeartBeat!", "geo": null, "id": 148776227287736320, "id_str": "148776227287736320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662999198/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662999198/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@GeorgePig_Offic DO YOU LIKE DINOSAURS :)", "to_user": "GeorgePig_Offic", "to_user_id": 440379152, "to_user_id_str": "440379152", "to_user_name": "George Pig"}, +{"created_at": "Mon, 19 Dec 2011 14:46:11 +0000", "from_user": "Robarrbeverage", "from_user_id": 273503081, "from_user_id_str": "273503081", "from_user_name": "RoBarr ", "geo": null, "id": 148776142894145540, "id_str": "148776142894145538", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "MT Fact:\\tAt Egg Mountain near Choteau dinosaur eggs have been discovered supporting the theory some dinosaurs... http://t.co/RwwJIg9B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:45:47 +0000", "from_user": "eserei27", "from_user_id": 23307173, "from_user_id_str": "23307173", "from_user_name": "Sara ", "geo": null, "id": 148776041907884030, "id_str": "148776041907884032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690362676/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690362676/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@dref22 cos you're afraid of dinosaurs...", "to_user": "dref22", "to_user_id": 17604455, "to_user_id_str": "17604455", "to_user_name": "dref22", "in_reply_to_status_id": 148775862081302530, "in_reply_to_status_id_str": "148775862081302528"}, +{"created_at": "Mon, 19 Dec 2011 14:45:25 +0000", "from_user": "olyjyze", "from_user_id": 361843612, "from_user_id_str": "361843612", "from_user_name": "Adon Britt", "geo": null, "id": 148775951508058100, "id_str": "148775951508058112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Free online dating site: Ladies, 2 Rock'n'Roll Dinosaurs visiting your town, Hamgout tonight 15351 young girls... http://t.co/jefUbFso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:45:11 +0000", "from_user": "dinosaur_denier", "from_user_id": 270013555, "from_user_id_str": "270013555", "from_user_name": "dinosaur conspiracy", "geo": null, "id": 148775892146069500, "id_str": "148775892146069504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1342019011/1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1342019011/1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@jwildeboer @nfm dinosaurs never existed and sun revolves around the Earth!", "to_user": "jwildeboer", "to_user_id": 16185413, "to_user_id_str": "16185413", "to_user_name": "jwildeboer", "in_reply_to_status_id": 148761917010346000, "in_reply_to_status_id_str": "148761917010345984"}, +{"created_at": "Mon, 19 Dec 2011 14:44:52 +0000", "from_user": "ghosthugs", "from_user_id": 29343854, "from_user_id_str": "29343854", "from_user_name": "Alex", "geo": null, "id": 148775811237945340, "id_str": "148775811237945344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691009698/da2fba05-d835-48d8-8aa2-f665e7924833_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691009698/da2fba05-d835-48d8-8aa2-f665e7924833_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "I wouldn't kick her out of bed, if you know what I mean. Cause that would be rude. Especially if we were mid convo about dinosaurs and space", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:44:43 +0000", "from_user": "Jakkrith", "from_user_id": 16600625, "from_user_id_str": "16600625", "from_user_name": "Jakkrit H.", "geo": null, "id": 148775774009311230, "id_str": "148775774009311233", "iso_language_code": "th", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1630217501/aek-at-sea-1s_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630217501/aek-at-sea-1s_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u0E2D\\u0E22\\u0E32\\u0E01\\u0E14\\u0E39 \\u0E2A\\u0E32\\u0E23\\u0E04\\u0E14\\u0E35 BBC \\u0E0A\\u0E38\\u0E14 Life before Dinosaurs. Walking with Monsters. \\u0E1A\\u0E23\\u0E23\\u0E22\\u0E32\\u0E22\\u0E44\\u0E17\\u0E22 \\u0E42\\u0E14\\u0E22 \\u0E2A\\u0E31\\u0E0D\\u0E0D\\u0E32 \\u0E04\\u0E38\\u0E13\\u0E32\\u0E01\\u0E23", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:43:27 +0000", "from_user": "markm1962", "from_user_id": 17171286, "from_user_id_str": "17171286", "from_user_name": "mm62", "geo": null, "id": 148775454537560060, "id_str": "148775454537560064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1622695939/greenhornetkato_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622695939/greenhornetkato_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Ironic that conservatives don\\u2019t believe in dinosaurs since they\\u2019ll both meet the same fate. #p2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:43:06 +0000", "from_user": "MorningJoeVideo", "from_user_id": 82944239, "from_user_id_str": "82944239", "from_user_name": "Morning Joe", "geo": null, "id": 148775368722100220, "id_str": "148775368722100224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://msnbc.com/" rel="nofollow">msnbc.com feeds</a>", "text": "Video: 'Terra Nova' star: Show is 'Swiss Family Robinson' with dinosaurs http://t.co/dkjuswEt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:42:56 +0000", "from_user": "AnnyRoose", "from_user_id": 181149431, "from_user_id_str": "181149431", "from_user_name": "Carolina C.Gon\\u00E7alves", "geo": null, "id": 148775326820999170, "id_str": "148775326820999168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698965200/thumbail0_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698965200/thumbail0_normal.png", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/U6lTI4b7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:42:18 +0000", "from_user": "Fahalmudhaf", "from_user_id": 65290988, "from_user_id_str": "65290988", "from_user_name": "\\u0641\\u0647\\u062F \\u0639\\u0644\\u064A \\u0627\\u0644\\u0645\\u0636\\u0641", "geo": null, "id": 148775164610486270, "id_str": "148775164610486273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1659224690/Fahalmudhaf_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659224690/Fahalmudhaf_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "I heard @Skrillex was created when chuck norris roundhouse kicked the dinosaurs into extinction...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:40:54 +0000", "from_user": "Diacratical", "from_user_id": 399478492, "from_user_id_str": "399478492", "from_user_name": "Callum - Diacratical", "geo": null, "id": 148774816281935870, "id_str": "148774816281935872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682979834/eightbit-d9486275-918e-46f9-9ed0-cd560b390a26_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682979834/eightbit-d9486275-918e-46f9-9ed0-cd560b390a26_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@Battlefield DINOSAURS! ;)", "to_user": "Battlefield", "to_user_id": 27855118, "to_user_id_str": "27855118", "to_user_name": "Battlefield", "in_reply_to_status_id": 148774165317554180, "in_reply_to_status_id_str": "148774165317554176"}, +{"created_at": "Mon, 19 Dec 2011 14:40:00 +0000", "from_user": "SalsaChoicer", "from_user_id": 121968669, "from_user_id_str": "121968669", "from_user_name": "Salsa Choicer", "geo": null, "id": 148774589424607230, "id_str": "148774589424607232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://google.com" rel="nofollow">SalsaChoicer</a>", "text": "did you know? dinosaurs love light sabers when happy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:39:57 +0000", "from_user": "owykicyr", "from_user_id": 410875505, "from_user_id_str": "410875505", "from_user_name": "Krishnah Fichter", "geo": null, "id": 148774576447434750, "id_str": "148774576447434752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1636852420/102_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1636852420/102_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "How Do Dinosaurs Play with Their Friends? (Board book) http://t.co/fkSCzLZ2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:39:14 +0000", "from_user": "katelynMarie_33", "from_user_id": 353399911, "from_user_id_str": "353399911", "from_user_name": "katelyn caffarelli", "geo": null, "id": 148774394712424450, "id_str": "148774394712424449", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688330330/Jt4T1hRA_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688330330/Jt4T1hRA_normal", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @CassieLovesAhha: I'm not watching shitty ass dinosaurs that don't roam the earth anymore.....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:39:13 +0000", "from_user": "dograd", "from_user_id": 16907646, "from_user_id_str": "16907646", "from_user_name": "Cat Clark", "geo": null, "id": 148774384109236220, "id_str": "148774384109236224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695029900/Untitled-2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695029900/Untitled-2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "New ducky pyjamas. Needed something without arms that was easier to put on.. will be ordering dinosaurs after xmas http://t.co/jM5ZphEl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:38:17 +0000", "from_user": "Croxus", "from_user_id": 19152393, "from_user_id_str": "19152393", "from_user_name": "Ac klingenberg", "geo": null, "id": 148774157172215800, "id_str": "148774157172215809", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1593082834/hipster_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593082834/hipster_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "At the natural history museum, seen the giant squid. Now a rest, sandwhich and pot of tea before the dinosaurs http://t.co/01Qddg5s", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:38:10 +0000", "from_user": "brruunaaaa", "from_user_id": 440299436, "from_user_id_str": "440299436", "from_user_name": "bruna dasilva", "geo": null, "id": 148774124687331330, "id_str": "148774124687331328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700806089/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700806089/profile_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "\"@QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:38:01 +0000", "from_user": "WardanTurner", "from_user_id": 76899309, "from_user_id_str": "76899309", "from_user_name": "Wardan Adi Wibisono", "geo": null, "id": 148774090013024260, "id_str": "148774090013024256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693216758/ProfilePhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693216758/ProfilePhoto_normal.png", "source": "<a href="http://lastfmlovetweet.com/" rel="nofollow">LastfmLoveTweet</a>", "text": "♥ Oh, it is Love by Hellogoodbye #lastfm: http://t.co/Bi9sfK60 amazon: http://t.co/lV6RRCVx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:35:02 +0000", "from_user": "bostinoo", "from_user_id": 367224641, "from_user_id_str": "367224641", "from_user_name": "bostino", "geo": null, "id": 148773338829946880, "id_str": "148773338829946880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1526733701/P1050509_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1526733701/P1050509_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@BibsNBots I designed and made a fabric bag for my two year old daughter... With pink dinosaurs.. She loved it", "to_user": "BibsNBots", "to_user_id": 21285640, "to_user_id_str": "21285640", "to_user_name": "Carley Brierley", "in_reply_to_status_id": 148771099902087170, "in_reply_to_status_id_str": "148771099902087168"} +, +{"created_at": "Mon, 19 Dec 2011 14:35:02 +0000", "from_user": "bostinoo", "from_user_id": 367224641, "from_user_id_str": "367224641", "from_user_name": "bostino", "geo": null, "id": 148773338829946880, "id_str": "148773338829946880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1526733701/P1050509_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1526733701/P1050509_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@BibsNBots I designed and made a fabric bag for my two year old daughter... With pink dinosaurs.. She loved it", "to_user": "BibsNBots", "to_user_id": 21285640, "to_user_id_str": "21285640", "to_user_name": "Carley Brierley", "in_reply_to_status_id": 148771099902087170, "in_reply_to_status_id_str": "148771099902087168"}, +{"created_at": "Mon, 19 Dec 2011 14:33:29 +0000", "from_user": "xjusts0megirl", "from_user_id": 347087727, "from_user_id_str": "347087727", "from_user_name": "\\u0391 girl\\u2665 ", "geo": null, "id": 148772949674041340, "id_str": "148772949674041344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686907979/331283476_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686907979/331283476_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Kiss me if I'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:33:05 +0000", "from_user": "x_ClGlovesWbB_x", "from_user_id": 378373371, "from_user_id_str": "378373371", "from_user_name": "Casey Lea", "geo": null, "id": 148772845458161660, "id_str": "148772845458161664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691964459/308350_214644615268425_100001686655546_552699_736500768_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691964459/308350_214644615268425_100001686655546_552699_736500768_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Lookin at Dinosaurs with Haley & Danielle (:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:32:37 +0000", "from_user": "CassieLovesAhha", "from_user_id": 354057468, "from_user_id_str": "354057468", "from_user_name": "CassandraAshleyGreen", "geo": null, "id": 148772731318583300, "id_str": "148772731318583297", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1651330651/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651330651/image_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "I'm not watching shitty ass dinosaurs that don't roam the earth anymore.....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:32:19 +0000", "from_user": "CLJordan88", "from_user_id": 288533379, "from_user_id_str": "288533379", "from_user_name": "Crystal Jordan", "geo": null, "id": 148772655909183500, "id_str": "148772655909183488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1337993434/084_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1337993434/084_normal.JPG", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @SamCassese: \"When I was little, I thought AD was After Dinosaurs. I'm talking about up to my freshman year...at Zion.\" -Zach Wable", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:29:49 +0000", "from_user": "blewskie", "from_user_id": 62217809, "from_user_id_str": "62217809", "from_user_name": "Dong Vera Cruz", "geo": null, "id": 148772026201546750, "id_str": "148772026201546754", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662309964/217233_1342213890920_1698415060_588758_3951744_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662309964/217233_1342213890920_1698415060_588758_3951744_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Kiss me if I'm wrong. But dinosaurs do exist right? :DD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:29:42 +0000", "from_user": "queendryice", "from_user_id": 48140685, "from_user_id_str": "48140685", "from_user_name": "C\\u03B1mill\\u03B1 Nascimento", "geo": null, "id": 148771996279377920, "id_str": "148771996279377923", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1690175560/100E378444444444444444444444444_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690175560/100E378444444444444444444444444_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@hinanofromglory This pic reminded me the cover of the album My Dinosaur Life by Motion City Soundtrack. I have a passion for cute dinosaurs", "to_user": "hinanofromglory", "to_user_id": 147554268, "to_user_id_str": "147554268", "to_user_name": "hinano goes rawr", "in_reply_to_status_id": 148771249470976000, "in_reply_to_status_id_str": "148771249470976000"}, +{"created_at": "Mon, 19 Dec 2011 14:29:42 +0000", "from_user": "Tanatvi", "from_user_id": 431684090, "from_user_id_str": "431684090", "from_user_name": "Tana Corkran", "geo": null, "id": 148771994526167040, "id_str": "148771994526167040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680993211/large_100_0135_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680993211/large_100_0135_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Songs for My Dog and Other Wry Rhymes: Dinosaurs, nutty nursery rhymes, crafty creatures, merry mishaps, random ... http://t.co/gHO8zwaD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:28:15 +0000", "from_user": "TeenQuote4Girlz", "from_user_id": 410822885, "from_user_id_str": "410822885", "from_user_name": "TeenQuote4Girlz", "geo": null, "id": 148771629755924480, "id_str": "148771629755924481", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697416592/R8_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697416592/R8_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "So out of all the dinosaurs to go extinct, why the fuck did Barney have to survive?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:26:46 +0000", "from_user": "spacecatz", "from_user_id": 25605323, "from_user_id_str": "25605323", "from_user_name": "Soph", "geo": null, "id": 148771258237071360, "id_str": "148771258237071361", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1156914992/Photo_on_2010-09-27_at_04.11__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1156914992/Photo_on_2010-09-27_at_04.11__2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @DongBag_Darrell: Kim Jong Il was best know for playing the grandma dinosaur on Dinosaurs. RIP.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:25:58 +0000", "from_user": "tuazon_cj", "from_user_id": 141937391, "from_user_id_str": "141937391", "from_user_name": "christian tuazon", "geo": null, "id": 148771057631899650, "id_str": "148771057631899649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1678340939/dougie_dance_domo_normal.mp3", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678340939/dougie_dance_domo_normal.mp3", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube video http://t.co/1V8SkpNX Dinosaurs alive! : tarbosaurus", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:24:20 +0000", "from_user": "Aragosaurus", "from_user_id": 242258580, "from_user_id_str": "242258580", "from_user_name": "Aragosaurus", "geo": null, "id": 148770646753673200, "id_str": "148770646753673216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1270926971/equipo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1270926971/equipo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "The Second International Workshop on the Biology of Sauropod Dinosaurs (part I). http://t.co/4tDZYSpU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:23:38 +0000", "from_user": "Anarchisthosts", "from_user_id": 179972968, "from_user_id_str": "179972968", "from_user_name": "Anarchist Hosting", "geo": null, "id": 148770469997318140, "id_str": "148770469997318144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1121859514/logo_done_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1121859514/logo_done_normal.png", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Photo: dinosaurs-and-boobs: Sauron is one of my favorite villains, when he\\u2019s feeling\\u2026intelligent. http://t.co/ZTpAOSlu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:23:28 +0000", "from_user": "JonnyStarchild", "from_user_id": 21518217, "from_user_id_str": "21518217", "from_user_name": "Jonathan Broderick", "geo": null, "id": 148770427097980930, "id_str": "148770427097980928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1584650316/297620_291538547527167_100000130710329_1300359_978532999_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584650316/297620_291538547527167_100000130710329_1300359_978532999_n_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/geRIJjjC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:23:15 +0000", "from_user": "LiLiMagz", "from_user_id": 208453179, "from_user_id_str": "208453179", "from_user_name": "Lili McBride", "geo": null, "id": 148770373251506180, "id_str": "148770373251506176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687743548/331308031_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687743548/331308031_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @IamLethabo: Kiss me if I'm wrong but dinosaurs still exist right? ;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:22:33 +0000", "from_user": "afarooqy", "from_user_id": 309614076, "from_user_id_str": "309614076", "from_user_name": "farooqy", "geo": null, "id": 148770194674814980, "id_str": "148770194674814976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684943215/photo__6__normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684943215/photo__6__normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@ehsanashraf Awww yay science museum is just the best! Go to the Attenborough showings. Also don't forget the history museum! Dinosaurs rawr", "to_user": "ehsanashraf", "to_user_id": 84026729, "to_user_id_str": "84026729", "to_user_name": "Ehsan Ashraf", "in_reply_to_status_id": 148765138466504700, "in_reply_to_status_id_str": "148765138466504705"}, +{"created_at": "Mon, 19 Dec 2011 14:21:50 +0000", "from_user": "RT1138", "from_user_id": 287535483, "from_user_id_str": "287535483", "from_user_name": "Rolling Thunder", "geo": null, "id": 148770014583980030, "id_str": "148770014583980032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1324461464/Mon-Shon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1324461464/Mon-Shon_normal.jpg", "source": "<a href="http://www.twhirl.org" rel="nofollow">Seesmic twhirl</a>", "text": "RT @CBSNews: Almanac: We remember the 19th C. UK scientist who gave dinosaurs their name, and look back at what we've learned since http://t.co/0prHuKoX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:21:41 +0000", "from_user": "tuazon_cj", "from_user_id": 141937391, "from_user_id_str": "141937391", "from_user_name": "christian tuazon", "geo": null, "id": 148769979989360640, "id_str": "148769979989360640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1678340939/dougie_dance_domo_normal.mp3", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678340939/dougie_dance_domo_normal.mp3", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube video http://t.co/4uZafPtY March Of The Dinosaurs: Edmontosaurus Versus Albe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:21:38 +0000", "from_user": "Bruuh_Breezy", "from_user_id": 178553380, "from_user_id_str": "178553380", "from_user_name": "742671000027!", "geo": null, "id": 148769965095391230, "id_str": "148769965095391232", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691645117/SDC11389_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691645117/SDC11389_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Dinosaurs go rawr, dinosaurs go rawr ~vou matar a Lais~", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:21:25 +0000", "from_user": "IamLethabo", "from_user_id": 190957977, "from_user_id_str": "190957977", "from_user_name": "L. Mona\\u00E9", "geo": null, "id": 148769913035685900, "id_str": "148769913035685889", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689998737/331390895_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689998737/331390895_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Kiss me if I'm wrong but dinosaurs still exist right? ;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:21:18 +0000", "from_user": "JenJenM49037", "from_user_id": 364886320, "from_user_id_str": "364886320", "from_user_name": "Jennifer McLeod", "geo": null, "id": 148769882681507840, "id_str": "148769882681507840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1520626436/Jen_s_pics_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1520626436/Jen_s_pics_2_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "What Happened to the Dinosaurs? http://t.co/4rcvfsKC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:21:02 +0000", "from_user": "marilucolfer", "from_user_id": 124027816, "from_user_id_str": "124027816", "from_user_name": "Maril\\u00FA Maldonado", "geo": null, "id": 148769815056756740, "id_str": "148769815056756737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682429554/331146821_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682429554/331146821_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @AdmireMyQuote: RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:19:49 +0000", "from_user": "VahidinSwag", "from_user_id": 366958824, "from_user_id_str": "366958824", "from_user_name": "VahidinSwag\\u2122", "geo": null, "id": 148769507329064960, "id_str": "148769507329064961", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1570336400/406_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1570336400/406_normal.JPG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@YummyTacos lol. You guys should be doing this project not talking about dinosaurs", "to_user": "YummyTacos", "to_user_id": 271058255, "to_user_id_str": "271058255", "to_user_name": "Luis Castellanos", "in_reply_to_status_id": 148767297681637380, "in_reply_to_status_id_str": "148767297681637376"}, +{"created_at": "Mon, 19 Dec 2011 14:19:15 +0000", "from_user": "Goblinhaley", "from_user_id": 436641814, "from_user_id_str": "436641814", "from_user_name": "haadeeeeee", "geo": null, "id": 148769365356068860, "id_str": "148769365356068864", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702490666/ny6jP3nk_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702490666/ny6jP3nk_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "triceratops, dinosaurs dick", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:17:58 +0000", "from_user": "Adeliasqt", "from_user_id": 431695337, "from_user_id_str": "431695337", "from_user_name": "Adelia Macartney", "geo": null, "id": 148769043942350850, "id_str": "148769043942350848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681019813/mdkryfqqiy_135290208-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681019813/mdkryfqqiy_135290208-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "More about Dinosaurs - Pbk (Now I Know): Simple text and illustrations describe the environment and the characte... http://t.co/t0VMTxxe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:16:48 +0000", "from_user": "Vinay_fet", "from_user_id": 141296716, "from_user_id_str": "141296716", "from_user_name": "Vinay Pratap Singh", "geo": null, "id": 148768749615464450, "id_str": "148768749615464448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1522487796/twitter-followers_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1522487796/twitter-followers_normal.png", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/B2lVjoHl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:15:16 +0000", "from_user": "iamADATAN", "from_user_id": 301750540, "from_user_id_str": "301750540", "from_user_name": "ADATAN", "geo": null, "id": 148768362116288500, "id_str": "148768362116288514", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682716065/neos_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682716065/neos_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "I wonder how did dinosaurs get extinct uh...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:15:11 +0000", "from_user": "ToysDiscountPri", "from_user_id": 416180527, "from_user_id_str": "416180527", "from_user_name": "ToysDiscountPrices", "geo": null, "id": 148768341476130800, "id_str": "148768341476130816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1646543511/41dhfd6AF0L._SL500_AA300__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646543511/41dhfd6AF0L._SL500_AA300__normal.jpg", "source": "<a href="http://toysdiscountprices.com/" rel="nofollow">ToysDiscountPrices</a>", "text": "http://t.co/8GbisGpz Discount stuffed toy dinosaurs - Webkinz Stegosaurus", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:15:00 +0000", "from_user": "iamADATAN", "from_user_id": 301750540, "from_user_id_str": "301750540", "from_user_name": "ADATAN", "geo": null, "id": 148768294579609600, "id_str": "148768294579609600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682716065/neos_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682716065/neos_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Dinosaurs are scary::", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:14:52 +0000", "from_user": "LottieRose_xox", "from_user_id": 402110748, "from_user_id_str": "402110748", "from_user_name": "Lottie Rose Mann", "geo": null, "id": 148768261675298800, "id_str": "148768261675298816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1620903303/261552_201053926607912_132525636794075_520510_2498070_nA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620903303/261552_201053926607912_132525636794075_520510_2498070_nA_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "I like dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:14:34 +0000", "from_user": "MCgetting", "from_user_id": 273042317, "from_user_id_str": "273042317", "from_user_name": "Craig Getting", "geo": null, "id": 148768189147385860, "id_str": "148768189147385856", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1289285495/panda_with_a_ball_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1289285495/panda_with_a_ball_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Dinosaurs!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:14:31 +0000", "from_user": "djaycoholyc", "from_user_id": 34886146, "from_user_id_str": "34886146", "from_user_name": "Mas Djay\\u2122", "geo": null, "id": 148768173120962560, "id_str": "148768173120962562", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1643292877/djay2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643292877/djay2_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@ocheex earth in 2149, evolution started again with... Dinosaurs era and advance future :D. Spielberg's", "to_user": "ocheex", "to_user_id": 215466430, "to_user_id_str": "215466430", "to_user_name": "Ochik Danti", "in_reply_to_status_id": 148767782786449400, "in_reply_to_status_id_str": "148767782786449408"}, +{"created_at": "Mon, 19 Dec 2011 14:13:30 +0000", "from_user": "ISlappedUrBitch", "from_user_id": 170928308, "from_user_id_str": "170928308", "from_user_name": "Ryan Parasram", "geo": null, "id": 148767918325374980, "id_str": "148767918325374976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690192397/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690192397/image_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @itssamanduhh: RT @PrincessVane_: Kiss me if i'm wrong, but Dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:13:25 +0000", "from_user": "Kutuwangbowo", "from_user_id": 218091223, "from_user_id_str": "218091223", "from_user_name": "Mustafa Rahman", "geo": null, "id": 148767896309465100, "id_str": "148767896309465090", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1442691484/281750_10150241645463892_645578891_7437789_1970909_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1442691484/281750_10150241645463892_645578891_7437789_1970909_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Under the ominous green moonlight. The Vagiant lay, content. His belly full of the blood of dinosaurs and their dino-kids.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:13:07 +0000", "from_user": "babyandtoTK", "from_user_id": 399304744, "from_user_id_str": "399304744", "from_user_name": "babyandtoTK", "geo": null, "id": 148767824142274560, "id_str": "148767824142274560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1610359234/1319755024_top-baby-and-toddler-toys-for-christmas_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610359234/1319755024_top-baby-and-toddler-toys-for-christmas_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "75% off: Ten Little Dinosaurs Picture Book (Wiggle Eyes) http://t.co/iusWngdH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:12:23 +0000", "from_user": "Trinavkj", "from_user_id": 431776569, "from_user_id_str": "431776569", "from_user_name": "Trina Elting", "geo": null, "id": 148767638984724480, "id_str": "148767638984724480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681192481/large_100_1075_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681192481/large_100_1075_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "A-Z - Dinosaurs: An alphabetical survey of various dinosaurs and other prehistoric reptiles and amphibians, from... http://t.co/cDET1Dw1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:11:31 +0000", "from_user": "verbose485", "from_user_id": 180276463, "from_user_id_str": "180276463", "from_user_name": "tw conroy", "geo": null, "id": 148767420897697800, "id_str": "148767420897697792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "http://t.co/noqz5sJH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:11:02 +0000", "from_user": "YummyTacos", "from_user_id": 271058255, "from_user_id_str": "271058255", "from_user_name": "Luis Castellanos", "geo": null, "id": 148767297681637380, "id_str": "148767297681637376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1626389917/5lSm8gu1_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626389917/5lSm8gu1_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"There was no dinosaurs!\" (Edson)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:09:53 +0000", "from_user": "ScrapbookJournl", "from_user_id": 49543667, "from_user_id_str": "49543667", "from_user_name": "Scrapbook Journaling", "geo": null, "id": 148767008396283900, "id_str": "148767008396283904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/275911870/ist1_9300006-scrapbooker-retro-cartoon-smiling-woman-with-scissors-making-a-scrapbook_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/275911870/ist1_9300006-scrapbooker-retro-cartoon-smiling-woman-with-scissors-making-a-scrapbook_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @helloheliotrope I have the day off work tomorrow. I am spending it doing art things like painting dinosaurs and editing photos an...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:09:15 +0000", "from_user": "Larewyvn", "from_user_id": 395347759, "from_user_id_str": "395347759", "from_user_name": "Maxine Vance", "geo": null, "id": 148766848362610700, "id_str": "148766848362610688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1663307367/652194739profile64_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663307367/652194739profile64_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I'm a funny girl! has u can see i can take a good laff! i love hugs!!! Also i play the guitar and dinosaurs rule the world!!!! RAWR ( ;", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:08:48 +0000", "from_user": "MEF920", "from_user_id": 423122191, "from_user_id_str": "423122191", "from_user_name": "Meagan Fischer", "geo": null, "id": 148766735644889100, "id_str": "148766735644889088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1661817403/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661817403/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "just found out Evan LOVES dinosaurs!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:06:42 +0000", "from_user": "DetailMedic", "from_user_id": 70292431, "from_user_id_str": "70292431", "from_user_name": "Detail Medic", "geo": null, "id": 148766206122405900, "id_str": "148766206122405888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1243070161/memento_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1243070161/memento_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "So a guy I know was shot down by a girl because he \"may not believe in dinosaurs\". He's shocked. What do y'all think? Would you date him?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:05:58 +0000", "from_user": "rareresource", "from_user_id": 420883947, "from_user_id_str": "420883947", "from_user_name": "Shawn Mike", "geo": null, "id": 148766022399303680, "id_str": "148766022399303680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657006608/Dinosaur-profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657006608/Dinosaur-profile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Dinosaurs Around the World\\nhttp://t.co/vwwfC9cO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:05:47 +0000", "from_user": "rareresource", "from_user_id": 420883947, "from_user_id_str": "420883947", "from_user_name": "Shawn Mike", "geo": null, "id": 148765975876083700, "id_str": "148765975876083713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657006608/Dinosaur-profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657006608/Dinosaur-profile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Life Cycle of Dinosaurs \\nhttp://t.co/wbubiqo7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:04:24 +0000", "from_user": "Killspammer", "from_user_id": 195809979, "from_user_id_str": "195809979", "from_user_name": "Tom Richardson", "geo": null, "id": 148765629183307780, "id_str": "148765629183307776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@notch @Kappische @ShamsJorjani How bout' them dinosaurs back then?", "to_user": "notch", "to_user_id": 63485337, "to_user_id_str": "63485337", "to_user_name": "Markus Persson", "in_reply_to_status_id": 148765105759334400, "in_reply_to_status_id_str": "148765105759334400"}, +{"created_at": "Mon, 19 Dec 2011 14:02:44 +0000", "from_user": "vikazaika", "from_user_id": 106877559, "from_user_id_str": "106877559", "from_user_name": "Viktoriya Zaikina", "geo": null, "id": 148765208658186240, "id_str": "148765208658186241", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687610387/4213314554_8d706a2fb4_b_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687610387/4213314554_8d706a2fb4_b_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u0432\\u0441\\u043F\\u043E\\u043C\\u043D\\u0438\\u043B\\u0430 \\u043F\\u0440\\u043E Hellogoodbye, \\u0441\\u0438\\u0436\\u0443 \\u043D\\u043E\\u0441\\u0442\\u0430\\u043B\\u044C\\u0433\\u0438\\u0440\\u0443\\u044E \\u043F\\u043E \\u0430\\u043B\\u044C\\u0431\\u043E\\u043C \"Zombies! Aliens! Vampires! Dinosaurs!\". \\u0431\\u044B\\u043B\\u043E \\u0436\\u0435 \\u0432\\u0440\\u0435\\u043C\\u044F", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:02:17 +0000", "from_user": "paycovela1987", "from_user_id": 350423088, "from_user_id_str": "350423088", "from_user_name": "paycovela1987", "geo": null, "id": 148765098234757120, "id_str": "148765098234757122", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Dinosaurs and reading http://t.co/tquokxFD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:00:49 +0000", "from_user": "EmmieJBandie", "from_user_id": 53472018, "from_user_id_str": "53472018", "from_user_name": "Emilee Jones", "geo": null, "id": 148764727030448130, "id_str": "148764727030448128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1295217366/190665_10150130920063447_505398446_6496313_3980113_nedit2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1295217366/190665_10150130920063447_505398446_6496313_3980113_nedit2_normal.jpg", "source": "<a href="http://www.myyearbook.com/" rel="nofollow">myYearbook Share</a>", "text": "Q: How do you think the dinosaurs died? A: Idk. however they died?: http://t.co/xFtDpOSQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:00:39 +0000", "from_user": "PurpleParadox", "from_user_id": 135236930, "from_user_id_str": "135236930", "from_user_name": "O.o", "geo": null, "id": 148764683657154560, "id_str": "148764683657154560", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696166351/225026_10150582316265657_607195656_18455348_3349772_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696166351/225026_10150582316265657_607195656_18455348_3349772_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@lady_gabbar *tummy main dinosaurs hain! :p @Gauribee", "to_user": "lady_gabbar", "to_user_id": 144026920, "to_user_id_str": "144026920", "to_user_name": "Switty Switty Switty", "in_reply_to_status_id": 148764515528482800, "in_reply_to_status_id_str": "148764515528482818"}, +{"created_at": "Mon, 19 Dec 2011 13:59:48 +0000", "from_user": "maevely", "from_user_id": 171593903, "from_user_id_str": "171593903", "from_user_name": "Maeve Magill", "geo": null, "id": 148764472465563650, "id_str": "148764472465563650", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701890457/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701890457/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Cillian_Fitz never played dizzy dinosaurs #sqaurehead.", "to_user": "Cillian_Fitz", "to_user_id": 288659978, "to_user_id_str": "288659978", "to_user_name": "Cillian Fitzgerald"}, +{"created_at": "Mon, 19 Dec 2011 13:57:43 +0000", "from_user": "itv_digital", "from_user_id": 19924799, "from_user_id_str": "19924799", "from_user_name": "\\uAE30\\uC601", "geo": null, "id": 148763946881527800, "id_str": "148763946881527810", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1560841744/50x50_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1560841744/50x50_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "@youcantgoback It sells waffles, turey dinosaurs and memories of simpler times. #KKwik", "to_user": "youcantgoback", "to_user_id": 21567492, "to_user_id_str": "21567492", "to_user_name": "william sanderson", "in_reply_to_status_id": 148763205496344580, "in_reply_to_status_id_str": "148763205496344576"}, +{"created_at": "Mon, 19 Dec 2011 13:57:42 +0000", "from_user": "Ichnologist", "from_user_id": 226011566, "from_user_id_str": "226011566", "from_user_name": "Anthony (Tony)Martin", "geo": null, "id": 148763943026950140, "id_str": "148763943026950144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1189232502/DSCN6497_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1189232502/DSCN6497_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TetZoo: Pt I of thoughts on German #sauropod biology meeting: http://t.co/35uofNmt Nutrition, diet, fighting, locomotion #dinosaurs #SauroBonn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:57:15 +0000", "from_user": "fathinaeila", "from_user_id": 125003378, "from_user_id_str": "125003378", "from_user_name": "Fathin Naeila Sholeh", "geo": null, "id": 148763830376337400, "id_str": "148763830376337408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699742773/page_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699742773/page_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/ewH9zWq1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:56:55 +0000", "from_user": "carebear_rocks", "from_user_id": 402854986, "from_user_id_str": "402854986", "from_user_name": "carrie lanham", "geo": null, "id": 148763745324236800, "id_str": "148763745324236801", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1663743927/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663743927/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:56:50 +0000", "from_user": "Sofietje", "from_user_id": 14175602, "from_user_id_str": "14175602", "from_user_name": "Sofie Pelmelay", "geo": null, "id": 148763725262893060, "id_str": "148763725262893056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682606883/aad-2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682606883/aad-2_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Nokia Lumia 800 right? Totally Enormous Extinct Dinosaurs \\u2013 Garden http://t.co/INMBnTTl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:56:39 +0000", "from_user": "JonathanAxfeldt", "from_user_id": 64206553, "from_user_id_str": "64206553", "from_user_name": "Jonathan Axfeldt", "geo": null, "id": 148763680190890000, "id_str": "148763680190889984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1655158175/185507_10150254925669930_530039929_7573921_3872297_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655158175/185507_10150254925669930_530039929_7573921_3872297_n_normal.jpg", "source": "<a href="http://www.tweekly.fm/" rel="nofollow">Tweekly.fm</a>", "text": "My Top 3 #lastfm Artists: Totally Enormous Extinct Dinosaurs (28), Bj\\u00F6rk (1) & Planningtorock (1) http://t.co/15Zs48bi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:54:57 +0000", "from_user": "papaman357", "from_user_id": 323790664, "from_user_id_str": "323790664", "from_user_name": "Raymond Decker", "geo": null, "id": 148763247804301300, "id_str": "148763247804301313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1430825383/100_0198_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1430825383/100_0198_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Watch, in 2013 the same dinosaurs will b roaming d halls of Congress..U have 2 be hit in d head with a 2X4..Vote out. http://t.co/xko5cfPD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:53:48 +0000", "from_user": "ChloeLovesLou1D", "from_user_id": 136601549, "from_user_id_str": "136601549", "from_user_name": "Chloe H (Tomlinson)", "geo": null, "id": 148762960016326660, "id_str": "148762960016326656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691252610/299503_2017502284102_1440220592_31625001_1477106463_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691252610/299503_2017502284102_1440220592_31625001_1477106463_n_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/R299Awgz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:53:20 +0000", "from_user": "jam2885", "from_user_id": 17884385, "from_user_id_str": "17884385", "from_user_name": "A", "geo": null, "id": 148762845822197760, "id_str": "148762845822197760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1601308798/comicontwitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601308798/comicontwitter_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "@MissTweet25 @BdwayDiva1 @musicpoet1 @Iceni_Queen for reasons unknown they r treating Kelly like gaga #dinosaurs", "to_user": "MissTweet25", "to_user_id": 96431140, "to_user_id_str": "96431140", "to_user_name": "MissTweet", "in_reply_to_status_id": 148762379449147400, "in_reply_to_status_id_str": "148762379449147392"}, +{"created_at": "Mon, 19 Dec 2011 13:53:20 +0000", "from_user": "Texar1", "from_user_id": 364719131, "from_user_id_str": "364719131", "from_user_name": "Chris Black", "geo": null, "id": 148762844832346100, "id_str": "148762844832346113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1638214069/Texar_V3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638214069/Texar_V3_normal.png", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/UAt6Uhzh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:52:48 +0000", "from_user": "OusmaneDogo", "from_user_id": 383562556, "from_user_id_str": "383562556", "from_user_name": "playboy", "geo": null, "id": 148762708546826240, "id_str": "148762708546826241", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701453753/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701453753/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Who believe in dinosaurs???????", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:52:45 +0000", "from_user": "JohnRHutchinson", "from_user_id": 323754242, "from_user_id_str": "323754242", "from_user_name": "John R. Hutchinson", "geo": null, "id": 148762696530145280, "id_str": "148762696530145281", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1600664447/John-pic-elefoot-sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600664447/John-pic-elefoot-sm_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TetZoo: Pt I of thoughts on German #sauropod biology meeting: http://t.co/35uofNmt Nutrition, diet, fighting, locomotion #dinosaurs #SauroBonn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:52:37 +0000", "from_user": "l0stsoulforever", "from_user_id": 92809807, "from_user_id_str": "92809807", "from_user_name": "megan \\u2655", "geo": null, "id": 148762662501752830, "id_str": "148762662501752833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698369783/Photo0108_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698369783/Photo0108_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "And on the third day, God created the Remington bolt-action rifle, so that man could fight the dinosaurs. And the homoesexuals. Amen.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:52:00 +0000", "from_user": "DavidKerrThe3rd", "from_user_id": 152937814, "from_user_id_str": "152937814", "from_user_name": "David Kerr", "geo": null, "id": 148762507203461120, "id_str": "148762507203461120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1323300920/IMGP1196_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1323300920/IMGP1196_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@amybear85 Ever wondered what happened to the dinosaurs? They all dug their own graves when they heard he was coming...#CHUCKNORRIS", "to_user": "amybear85", "to_user_id": 97009077, "to_user_id_str": "97009077", "to_user_name": "amy darling"}, +{"created_at": "Mon, 19 Dec 2011 13:51:53 +0000", "from_user": "RealMattShaf", "from_user_id": 193578554, "from_user_id_str": "193578554", "from_user_name": "Matt", "geo": null, "id": 148762476928958460, "id_str": "148762476928958466", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1644773520/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644773520/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Do extinctions occur from anything other then humans? According to leftist nuts the answer is \"no.\" How bout the dinosaurs? #tcot #nuts", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:51:16 +0000", "from_user": "helloheliotrope", "from_user_id": 216316484, "from_user_id_str": "216316484", "from_user_name": "Santa Monica", "geo": null, "id": 148762325158076400, "id_str": "148762325158076416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1587820989/avsunflower_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587820989/avsunflower_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I have the day off work tomorrow. I am spending it doing art things like painting dinosaurs and editing photos and scrapbooking.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:51:04 +0000", "from_user": "BeforeDinosaurs", "from_user_id": 309255479, "from_user_id_str": "309255479", "from_user_name": "BeforeDinosaurs", "geo": null, "id": 148762274255998980, "id_str": "148762274255998976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1377904396/paleozoic-era-cambrian-pikia-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1377904396/paleozoic-era-cambrian-pikia-2_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Life Before the Dinosaurs blog: Titanichthys. http://t.co/lMKqfvut #latedevonian #placoderm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:50:55 +0000", "from_user": "RealBizMarkie", "from_user_id": 184457104, "from_user_id_str": "184457104", "from_user_name": "Markie", "geo": null, "id": 148762235160903680, "id_str": "148762235160903680", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692211586/mank_jimi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692211586/mank_jimi_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:50:17 +0000", "from_user": "HeyItsUniika", "from_user_id": 174217491, "from_user_id_str": "174217491", "from_user_name": "\\u0455\\u0454\\u2113\\u0454\\u0438\\u03B1 f\\u03B1\\u0438 Forever \\u2714", "geo": null, "id": 148762075232088060, "id_str": "148762075232088064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698266696/tonight_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698266696/tonight_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/dD0A4rKB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:50:15 +0000", "from_user": "creationliberty", "from_user_id": 302078063, "from_user_id_str": "302078063", "from_user_name": "Creation Liberty", "geo": null, "id": 148762066289827840, "id_str": "148762066289827840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1436354916/logo01_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1436354916/logo01_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@GLStreety The #Bible does talk about #Dinosaurs. http://t.co/AsluJx1R", "to_user": "GLStreety", "to_user_id": 88589393, "to_user_id_str": "88589393", "to_user_name": "Lola M Streety ", "in_reply_to_status_id": 147594981052387330, "in_reply_to_status_id_str": "147594981052387328"}, +{"created_at": "Mon, 19 Dec 2011 13:50:06 +0000", "from_user": "austinpstewart", "from_user_id": 273581204, "from_user_id_str": "273581204", "from_user_name": "Austin Stewart", "geo": null, "id": 148762031858782200, "id_str": "148762031858782210", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1620453789/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620453789/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Seriously so glad that dinosaurs are extinct. We would be super screwed if they weren't.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:49:59 +0000", "from_user": "hoola", "from_user_id": 14567006, "from_user_id_str": "14567006", "from_user_name": "laura heaps", "geo": null, "id": 148762000917409800, "id_str": "148762000917409792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1528990894/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1528990894/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "me, talking dinos @ Ted's nursery: 'I saw some people dressed as dinosaurs doing music and dancing' kid: 'yup. That was me.' @TEEDinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:49:39 +0000", "from_user": "jwildeboer", "from_user_id": 16185413, "from_user_id_str": "16185413", "from_user_name": "jwildeboer", "geo": null, "id": 148761917010346000, "id_str": "148761917010345984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1675001927/Jwildeboer-default_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675001927/Jwildeboer-default_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@nfm and the earth is flat, the sun is just a big lamp and dinosaurs never existed? </sarcasm>", "to_user": "nfm", "to_user_id": 14368903, "to_user_id_str": "14368903", "to_user_name": "Nancy Messieh", "in_reply_to_status_id": 148761178909315070, "in_reply_to_status_id_str": "148761178909315072"}, +{"created_at": "Mon, 19 Dec 2011 13:49:18 +0000", "from_user": "creationliberty", "from_user_id": 302078063, "from_user_id_str": "302078063", "from_user_name": "Creation Liberty", "geo": null, "id": 148761830804819970, "id_str": "148761830804819968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1436354916/logo01_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1436354916/logo01_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ImpressFX @MzKristiMiller @neilbris75 The #Bible does talk about #Dinosaurs. http://t.co/AsluJx1R", "to_user": "ImpressFX", "to_user_id": 53294088, "to_user_id_str": "53294088", "to_user_name": "ImpressFX", "in_reply_to_status_id": 148703622581059600, "in_reply_to_status_id_str": "148703622581059584"}, +{"created_at": "Mon, 19 Dec 2011 13:48:27 +0000", "from_user": "TweetNoEvo", "from_user_id": 20596168, "from_user_id_str": "20596168", "from_user_name": "Evo D. Clown", "geo": null, "id": 148761615490228220, "id_str": "148761615490228224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1643174232/profile_image_1321507212105_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643174232/profile_image_1321507212105_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "...that's when I'm not running away from dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:47:05 +0000", "from_user": "westwilli", "from_user_id": 314724892, "from_user_id_str": "314724892", "from_user_name": "Weston Willis", "geo": null, "id": 148761269686640640, "id_str": "148761269686640641", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1390233154/1307730123_genetics_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1390233154/1307730123_genetics_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "The Second International Workshop on the Biology of Sauropod Dinosaurs (part I) - Scientific American (blog)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:45:15 +0000", "from_user": "austinpstewart", "from_user_id": 273581204, "from_user_id_str": "273581204", "from_user_name": "Austin Stewart", "geo": null, "id": 148760810548768770, "id_str": "148760810548768768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1620453789/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620453789/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "SIKE! There's a show about dinosaurs on, my morning just got soooooo much better.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:44:46 +0000", "from_user": "12nosleNttaM", "from_user_id": 259475769, "from_user_id_str": "259475769", "from_user_name": "Matt Nelson", "geo": null, "id": 148760689048162300, "id_str": "148760689048162304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1647655484/pinhead_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647655484/pinhead_normal.png", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "\"Why did all the dinosaurs die out?\" \"Cuz you touch yourself at night.\" #FamilyGuy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:44:16 +0000", "from_user": "morgastevvega", "from_user_id": 338671274, "from_user_id_str": "338671274", "from_user_name": "Morgan Stevens", "geo": null, "id": 148760561289658370, "id_str": "148760561289658368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/MtyOOHTC The Creation and Dinosaurs | http://t.co/oLTEWaGt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:43:17 +0000", "from_user": "Shawnnawio", "from_user_id": 431765447, "from_user_id_str": "431765447", "from_user_name": "Shawnna Mannella", "geo": null, "id": 148760313016238080, "id_str": "148760313016238080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681171315/large_93_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681171315/large_93_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Boneyard Earth.(TIME TRAVELER: IN SEARCH OF DINOSAURS AND OTHER FOSSILS FROM MONTANA TO MONGOLIA ): An article f... http://t.co/tSDAQ0eG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:42:16 +0000", "from_user": "Erictga", "from_user_id": 431683572, "from_user_id_str": "431683572", "from_user_name": "Eric Beinlich", "geo": null, "id": 148760058065461250, "id_str": "148760058065461249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680993073/large_255_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680993073/large_255_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Digging For Dinosaurs [VHS]: Pick up your shovel, grab a brush and help put together a 65 million-year-old puzzl... http://t.co/KH3c8xAu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:41:54 +0000", "from_user": "rroora", "from_user_id": 155839788, "from_user_id_str": "155839788", "from_user_name": "\\u30ED\\u30AA\\u30E9 laura", "geo": null, "id": 148759966633820160, "id_str": "148759966633820161", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700124902/lol_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700124902/lol_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "oh my the Dream Eaters are so cute \\u2665 they're colorful animals; elephants, dinosaurs, cats...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:40:21 +0000", "from_user": "paxxman", "from_user_id": 23853647, "from_user_id_str": "23853647", "from_user_name": "Paul Martin", "geo": null, "id": 148759575204605950, "id_str": "148759575204605952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1292531638/img_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1292531638/img_normal.jpeg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/UT4vYo9Q", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:40:14 +0000", "from_user": "KylahhsAPirate", "from_user_id": 421329240, "from_user_id_str": "421329240", "from_user_name": "Kylah Stone", "geo": null, "id": 148759548822421500, "id_str": "148759548822421506", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701445094/VP73EmrL_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701445094/VP73EmrL_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:40:07 +0000", "from_user": "Elinaqqo", "from_user_id": 440199975, "from_user_id_str": "440199975", "from_user_name": "Elina Witters", "geo": null, "id": 148759516329148400, "id_str": "148759516329148417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700544811/rxpt5045su_120594672_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700544811/rxpt5045su_120594672_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Magnetic Dinosaurs: Move the graceful brontosaurus through the meadow, watch the duck-billed dino roam in the wa... http://t.co/Yad7nGdM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:39:53 +0000", "from_user": "Eunicenke", "from_user_id": 431695127, "from_user_id_str": "431695127", "from_user_name": "Eunice Jess", "geo": null, "id": 148759457680195600, "id_str": "148759457680195584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681020262/uxb1l055qn_123091553-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681020262/uxb1l055qn_123091553-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "El vuelo de la serpiente alada / Flight of the Winged Serpent (Bahia Dinosaurios / Dinosaurs Cove) (Spanish Edition): http://t.co/PVfOXV1M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:39:38 +0000", "from_user": "virgitapir", "from_user_id": 86701362, "from_user_id_str": "86701362", "from_user_name": "virgiawan aditya", "geo": null, "id": 148759397764567040, "id_str": "148759397764567040", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1660750531/virgitapir_1230727915510162100_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660750531/virgitapir_1230727915510162100_normal.jpg", "source": "<a href="http://m.dabr.co.uk" rel="nofollow">Dabr</a>", "text": "Jwawet jwawet jwawet RT @bayuratsetyo: #NowPlaying 16Bit - Dinosaurs. Jwawet Juwawet Juawet Cc: virgitapir", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:38:51 +0000", "from_user": "Typicalgurlshet", "from_user_id": 429071016, "from_user_id_str": "429071016", "from_user_name": "Girl", "geo": null, "id": 148759199373987840, "id_str": "148759199373987842", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677129772/Screen_20111022_224448_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677129772/Screen_20111022_224448_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@comedyortruth hmmm I'm pretty sure that dinosaurs became extinct milllions of years ago!", "to_user": "comedyortruth", "to_user_id": 93167589, "to_user_id_str": "93167589", "to_user_name": "comedyortruth\\u2122", "in_reply_to_status_id": 148742945045086200, "in_reply_to_status_id_str": "148742945045086208"}, +{"created_at": "Mon, 19 Dec 2011 13:38:42 +0000", "from_user": "Kirsten2035", "from_user_id": 101596807, "from_user_id_str": "101596807", "from_user_name": "Kirsten Robertson", "geo": null, "id": 148759163261034500, "id_str": "148759163261034496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683420307/390316_10150451945273630_838473629_8460649_561318014_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683420307/390316_10150451945273630_838473629_8460649_561318014_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "some stupid year 7s pretending to be dinosaurs #areyouserious", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:37:23 +0000", "from_user": "Ang42", "from_user_id": 17677236, "from_user_id_str": "17677236", "from_user_name": "Angela Broomberg", "geo": null, "id": 148758828815622140, "id_str": "148758828815622144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680335859/IMG00607-20110911-1807.jpg_normal.rem", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680335859/IMG00607-20110911-1807.jpg_normal.rem", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@danielcoleman75.My little cousins are here, and they acting like Dinosaurs.#ifonly they had you here to teach them how a REAL dinosaur acts", "to_user": "danielcoleman75", "to_user_id": 230269009, "to_user_id_str": "230269009", "to_user_name": "Daniel Coleman"}, +{"created_at": "Mon, 19 Dec 2011 13:36:34 +0000", "from_user": "BHallsaysBreal", "from_user_id": 30042956, "from_user_id_str": "30042956", "from_user_name": "B. Hall", "geo": null, "id": 148758625194745860, "id_str": "148758625194745857", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695962126/304_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695962126/304_1_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "I dreamt of dinosaurs and our city being demolished O_o", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:36:27 +0000", "from_user": "bayuratsetyo", "from_user_id": 36082840, "from_user_id_str": "36082840", "from_user_name": "Bayu Ratsetyo Putro", "geo": null, "id": 148758595008335870, "id_str": "148758595008335872", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691668145/Untitled-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691668145/Untitled-2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "#NowPlaying 16Bit - Dinosaurs. Jwawet Juwawet Juawet Cc: @virgitapir", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:36:15 +0000", "from_user": "_HelloKittayx3", "from_user_id": 40547376, "from_user_id_str": "40547376", "from_user_name": "`\\u2764", "geo": null, "id": 148758543141580800, "id_str": "148758543141580800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697750761/376021_307398272615905_100000372043283_1024730_1901787495_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697750761/376021_307398272615905_100000372043283_1024730_1901787495_n_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "This girl got her dinosaurs out, its too cold for all that. She need to hide them critters.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:35:00 +0000", "from_user": "itssamanduhh", "from_user_id": 188074790, "from_user_id_str": "188074790", "from_user_name": "Amanda Ryan", "geo": null, "id": 148758230150025200, "id_str": "148758230150025217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700698518/imagejpeg_2_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700698518/imagejpeg_2_1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @PrincessVane_: Kiss me if i'm wrong, but Dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:33:31 +0000", "from_user": "ter6an", "from_user_id": 324634342, "from_user_id_str": "324634342", "from_user_name": "Teran Barnitz", "geo": null, "id": 148757855258935300, "id_str": "148757855258935296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687136150/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687136150/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#IWasThatKid who was obsessed with dinosaurs and WWE wrestling. #crazylilkid", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:33:18 +0000", "from_user": "510bryan", "from_user_id": 244158483, "from_user_id_str": "244158483", "from_user_name": "Bryan Baer", "geo": null, "id": 148757801974505470, "id_str": "148757801974505472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1614510545/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1614510545/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I like to steal plastic baby Jesus's and replace them with small plastic dinosaurs to fuck with ppl that say evolution never happened", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:32:30 +0000", "from_user": "GypsyDesert", "from_user_id": 63366408, "from_user_id_str": "63366408", "from_user_name": "GypsyDesert", "geo": null, "id": 148757601864253440, "id_str": "148757601864253440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1673262467/ghashghai-qashqay-qashqai-tribe-weaving-5-250_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673262467/ghashghai-qashqay-qashqai-tribe-weaving-5-250_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@MotherJones:D time Gingrich debated a famed paleontologist on D feeding habits of DT-Rex, using puppets: http://t.co/5sC3oVAU #DailyNewt\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:31:47 +0000", "from_user": "AdenGardnShake", "from_user_id": 339079132, "from_user_id_str": "339079132", "from_user_name": "Aden Gardner", "geo": null, "id": 148757419835670530, "id_str": "148757419835670528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/1pFSFR98 The Second International Workshop on the Biology of Sauropod Dinosaurs (part I) - Scientific American (blog)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:31:29 +0000", "from_user": "TerenceBaddest", "from_user_id": 185459579, "from_user_id_str": "185459579", "from_user_name": "Terence Tiglao", "geo": null, "id": 148757343851659260, "id_str": "148757343851659265", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1671488543/Freeze_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671488543/Freeze_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@kaffykaffykaffy yeah I will but when dinosaurs live again", "to_user": "kaffykaffykaffy", "to_user_id": 251835421, "to_user_id_str": "251835421", "to_user_name": "Kathy D. Truong", "in_reply_to_status_id": 148754785259106300, "in_reply_to_status_id_str": "148754785259106304"}, +{"created_at": "Mon, 19 Dec 2011 13:30:47 +0000", "from_user": "HotStockCafe", "from_user_id": 217580886, "from_user_id_str": "217580886", "from_user_name": "Penny HotStocks", "geo": null, "id": 148757167141425150, "id_str": "148757167141425156", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1171074806/hsc_logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1171074806/hsc_logo_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "$NGMC \\u2013 Since the Dinosaurs are gone... Next Generation Energy Corp.\\u2019s asset life for producing natural gas wells may be decades long.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 13:30:46 +0000", "from_user": "JayBugster", "from_user_id": 170804666, "from_user_id_str": "170804666", "from_user_name": "Jay Bugster", "geo": null, "id": 148757165623087100, "id_str": "148757165623087104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "$NGMC \\u2013 Since the Dinosaurs are gone... Next Generation Energy Corp.\\u2019s asset life for producing natural gas wells may be decades long.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:30:46 +0000", "from_user": "PennystockEmpor", "from_user_id": 334114733, "from_user_id_str": "334114733", "from_user_name": "PennystockEmporium", "geo": null, "id": 148757163861487600, "id_str": "148757163861487618", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1438723359/favicon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1438723359/favicon_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "$NGMC \\u2013 Since the Dinosaurs are gone... Next Generation Energy Corp.\\u2019s asset life for producing natural gas wells may be decades long.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:30:45 +0000", "from_user": "Penny_Hotstocks", "from_user_id": 196136720, "from_user_id_str": "196136720", "from_user_name": "Penny Hotstocks", "geo": null, "id": 148757161688842240, "id_str": "148757161688842240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1150088359/vmac2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1150088359/vmac2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "$NGMC \\u2013 Since the Dinosaurs are gone... Next Generation Energy Corp.\\u2019s asset life for producing natural gas wells may be decades long.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:30:45 +0000", "from_user": "DaddyHotStocks", "from_user_id": 217658468, "from_user_id_str": "217658468", "from_user_name": "Carl", "geo": null, "id": 148757159751061500, "id_str": "148757159751061505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1187987835/mcp_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1187987835/mcp_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "$NGMC \\u2013 Since the Dinosaurs are gone... Next Generation Energy Corp.\\u2019s asset life for producing natural gas wells may be decades long.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:30:44 +0000", "from_user": "PlanetPennyS", "from_user_id": 358560851, "from_user_id_str": "358560851", "from_user_name": "PlanetPennyStocks", "geo": null, "id": 148757158106902530, "id_str": "148757158106902528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1504445847/Planet_Penny_Stocks_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1504445847/Planet_Penny_Stocks_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "$NGMC \\u2013 Since the Dinosaurs are gone... Next Generation Energy Corp.\\u2019s asset life for producing natural gas wells may be decades long.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:30:43 +0000", "from_user": "Virmmac", "from_user_id": 122376894, "from_user_id_str": "122376894", "from_user_name": "D Graef", "geo": null, "id": 148757151597334530, "id_str": "148757151597334528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1132117148/V_new_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1132117148/V_new_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "$NGMC \\u2013 Since the Dinosaurs are gone... Next Generation Energy Corp.\\u2019s asset life for producing natural gas wells may be decades long.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:30:35 +0000", "from_user": "rosesharman", "from_user_id": 67364066, "from_user_id_str": "67364066", "from_user_name": "RoseSharman_cb\\u2665", "geo": null, "id": 148757118915317760, "id_str": "148757118915317760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1582067921/Snapshot_20120326_235_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1582067921/Snapshot_20120326_235_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"So that man could fight the dinosaurs and the homosexuals\" #meangirls", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:30:31 +0000", "from_user": "LewisEbsworth", "from_user_id": 348800405, "from_user_id_str": "348800405", "from_user_name": "Lewis Ebsworth", "geo": null, "id": 148757099764125700, "id_str": "148757099764125697", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1509971837/7Month_Anniversary__8__normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509971837/7Month_Anniversary__8__normal.JPG", "source": "Pocket Dinosaurs 2", "text": "@kongiphone Pocket Dinosaurs 2 is Insanely Addictive! http://t.co/jo5wuMMy", "to_user": "kongiphone", "to_user_id": 142926929, "to_user_id_str": "142926929", "to_user_name": "KongZhong Corp"}, +{"created_at": "Mon, 19 Dec 2011 13:29:19 +0000", "from_user": "leecohnelly", "from_user_id": 322555676, "from_user_id_str": "322555676", "from_user_name": "lee Cohnelly", "geo": null, "id": 148756798684409860, "id_str": "148756798684409857", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1646589304/IMG03543-20111118-1308_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646589304/IMG03543-20111118-1308_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @Vuyo_Himself: Global Warming!! Who cares if my Grand kids won' t see a Polar bear??? I didn' t see Dinosaurs either !! Grow up", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:26:49 +0000", "from_user": "GkbrkB", "from_user_id": 305631468, "from_user_id_str": "305631468", "from_user_name": "g\\u00F6kberk bakkalo\\u011Flu", "geo": null, "id": 148756168737685500, "id_str": "148756168737685504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1369822249/228317_1781464448686_1001689671_31630036_896614_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1369822249/228317_1781464448686_1001689671_31630036_896614_n_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "\\u0130f the dinosaurs can all disappear,so can we :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:26:30 +0000", "from_user": "_onelastmoment", "from_user_id": 205704467, "from_user_id_str": "205704467", "from_user_name": "Nameera Ashley", "geo": null, "id": 148756091252125700, "id_str": "148756091252125696", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695270101/Stereo_hearts._normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695270101/Stereo_hearts._normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @AtiqahAdeenan: Are dinosaurs real?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:25:42 +0000", "from_user": "AkselNuredin", "from_user_id": 120513169, "from_user_id_str": "120513169", "from_user_name": "\\u0623\\u0643\\u0633\\u0644 \\u0627\\u0628\\u0646 \\u0627\\u0645\\u064A\\u0646", "geo": null, "id": 148755888876949500, "id_str": "148755888876949504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1311201762/aki_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1311201762/aki_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@huseinmusli @BBLiman Play Cadillacs and Dinosaurs online for Free - http://t.co/65Iyl0uI: http://t.co/FwJ4oSTf =)hatirlaysiniz?", "to_user": "huseinmusli", "to_user_id": 256082692, "to_user_id_str": "256082692", "to_user_name": "Hussein Musli"}, +{"created_at": "Mon, 19 Dec 2011 13:25:31 +0000", "from_user": "danikalhoye", "from_user_id": 218886475, "from_user_id_str": "218886475", "from_user_name": "Danika Hoye", "geo": null, "id": 148755842022375420, "id_str": "148755842022375424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1202036016/111_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1202036016/111_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "They Shoot Dinosaurs Don't They [VHS]: http://t.co/JF2yiBzl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:25:29 +0000", "from_user": "suzanneisimoll", "from_user_id": 218840938, "from_user_id_str": "218840938", "from_user_name": "Suzanne Moll", "geo": null, "id": 148755834472632320, "id_str": "148755834472632321", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1201510244/2e518146-7f00-0001-19c4-5413edb433f1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1201510244/2e518146-7f00-0001-19c4-5413edb433f1_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "They Shoot Dinosaurs Don't They [VHS]: http://t.co/QnkhMuPp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:24:56 +0000", "from_user": "AtiqahAdeenan", "from_user_id": 371062555, "from_user_id_str": "371062555", "from_user_name": "nuratiqah", "geo": null, "id": 148755695901229060, "id_str": "148755695901229056", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702110639/kp1z7IyV_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702110639/kp1z7IyV_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Are dinosaurs real?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:24:44 +0000", "from_user": "pavbariana", "from_user_id": 163574151, "from_user_id_str": "163574151", "from_user_name": "PKB", "geo": null, "id": 148755646517485570, "id_str": "148755646517485568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1631081845/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631081845/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Turkey dinosaurs oh yeahhhhh!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:24:03 +0000", "from_user": "kellygangstaaa", "from_user_id": 54260745, "from_user_id_str": "54260745", "from_user_name": "kelly strange", "geo": null, "id": 148755472764252160, "id_str": "148755472764252160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697038542/Snapshot_20111210_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697038542/Snapshot_20111210_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "we have no food in the house and the only food we had was turkey dinosaurs and they got burnt cos i was arguing with dad", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:23:15 +0000", "from_user": "Doretheacda", "from_user_id": 431678462, "from_user_id_str": "431678462", "from_user_name": "Shane Lapar", "geo": null, "id": 148755271248916480, "id_str": "148755271248916480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1680986451/dpw5zn55tn_107540912_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680986451/dpw5zn55tn_107540912_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Gnash, Gnaw, Dinosaur!: Future palaeontologists will love discovering the dinosaurs in this fun-filled picture b... http://t.co/Wne37u92", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:22:57 +0000", "from_user": "TicTicThailand", "from_user_id": 437003290, "from_user_id_str": "437003290", "from_user_name": "TicTicThailand", "geo": null, "id": 148755196078592000, "id_str": "148755196078592001", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694874765/067_normal.jpg", "profile_image_url_https": null, "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @CanPOREOTICS: I uploaded a @YouTube video http://t.co/qNhkJztX Totally Enormous Extinct Dinosaurs - Dream On", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:22:23 +0000", "from_user": "Mariasvo", "from_user_id": 426245085, "from_user_id_str": "426245085", "from_user_name": "Maria Megee", "geo": null, "id": 148755054868959230, "id_str": "148755054868959232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668756285/LLCM-3974_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668756285/LLCM-3974_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Weird Dinosaurs Deluxe Laminated Poster: Weird Dinosaurs\\n These are some really strange critters. Although wel... http://t.co/3fDljiHN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:21:03 +0000", "from_user": "dvivast", "from_user_id": 344058379, "from_user_id_str": "344058379", "from_user_name": "Daniela Vivas Toro", "geo": null, "id": 148754720582934530, "id_str": "148754720582934530", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1467510027/munch_2011_07_26_153751_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1467510027/munch_2011_07_26_153751_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:20:59 +0000", "from_user": "robolollycop", "from_user_id": 98627870, "from_user_id_str": "98627870", "from_user_name": "craig stone", "geo": null, "id": 148754702996213760, "id_str": "148754702996213760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1617057618/twitterpic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1617057618/twitterpic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Terrainysaurus Trex - if dinosaurs were public footpaths.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:19:59 +0000", "from_user": "stephennaron", "from_user_id": 143298503, "from_user_id_str": "143298503", "from_user_name": "Stephen Naron ", "geo": null, "id": 148754452415905800, "id_str": "148754452415905792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700084076/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700084076/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "@TXCleaver strangely enough you can't find them anymore. Like dinosaurs they've disappeared. #TitansFans", "to_user": "TXCleaver", "to_user_id": 23242733, "to_user_id_str": "23242733", "to_user_name": "TX Cleaver", "in_reply_to_status_id": 148754000068608000, "in_reply_to_status_id_str": "148754000068608001"}, +{"created_at": "Mon, 19 Dec 2011 13:19:24 +0000", "from_user": "jeope", "from_user_id": 112523436, "from_user_id_str": "112523436", "from_user_name": "Jeope Wolfe", "geo": null, "id": 148754302679269380, "id_str": "148754302679269377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1555533160/ookpik_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555533160/ookpik_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@ianmcc We saw it in the theatre. Made me wish I was a stoner. Liked the dinosaurs, though.", "to_user": "ianmcc", "to_user_id": 6302912, "to_user_id_str": "6302912", "to_user_name": "Ian McCausland", "in_reply_to_status_id": 148640480157110270, "in_reply_to_status_id_str": "148640480157110272"}, +{"created_at": "Mon, 19 Dec 2011 13:19:17 +0000", "from_user": "ChrisAllmey", "from_user_id": 332319927, "from_user_id_str": "332319927", "from_user_name": "Chris Allmey", "geo": +{"coordinates": [50.821,-0.1355], "type": "Point"}, "id": 148754274262847500, "id_str": "148754274262847488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693182277/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693182277/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@IamEnidColeslaw: Kirk Cameron just told me that dinosaurs became extinct because they were \"heathens and sodomites.\" (???)\\u201D > did he watch", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:18:30 +0000", "from_user": "ninoriano", "from_user_id": 40005447, "from_user_id_str": "40005447", "from_user_name": "Riano Nino", "geo": null, "id": 148754079743614980, "id_str": "148754079743614976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1550112817/68380_1423550516466_1463847781_30987999_119165_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1550112817/68380_1423550516466_1463847781_30987999_119165_n_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "he directed Gandhi, he cloned Dinosaurs on Jurassic Park, he played Santa Claus, he is Sir Richard Attenborough", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:17:35 +0000", "from_user": "Heartpixa", "from_user_id": 427861061, "from_user_id_str": "427861061", "from_user_name": "Heartpixa", "geo": null, "id": 148753845705646080, "id_str": "148753845705646081", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://ping.fm/" rel="nofollow">Ping.fm</a>", "text": "http://t.co/krU8vdeC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:16:38 +0000", "from_user": "Ayakoiov", "from_user_id": 431719405, "from_user_id_str": "431719405", "from_user_name": "Ayako Navia", "geo": null, "id": 148753609889284100, "id_str": "148753609889284096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681072134/aixzir451u_130497934-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681072134/aixzir451u_130497934-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Caveman Mask with Hair: From a time when dinosaurs roamed the earth! Caveman Mask With Hair includes latex cavem... http://t.co/3sgILjMg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:16:34 +0000", "from_user": "Alejandra95_", "from_user_id": 28470400, "from_user_id_str": "28470400", "from_user_name": "Alejandra", "geo": null, "id": 148753590087983100, "id_str": "148753590087983105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697292185/YgTAX4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697292185/YgTAX4_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:15:54 +0000", "from_user": "ReezyTuffGong", "from_user_id": 84914673, "from_user_id_str": "84914673", "from_user_name": "\\u05E8'\\u05D0\\u05E0\\u05D4", "geo": null, "id": 148753423943217150, "id_str": "148753423943217152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662782459/smoke_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662782459/smoke_normal.jpg", "source": "<a href="http://www.lg.com" rel="nofollow">LG Phone</a>", "text": "Feathers helped dinosaurs make it to the top of the food chain? .. whaaat.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:15:04 +0000", "from_user": "MeeuRotaru", "from_user_id": 30107910, "from_user_id_str": "30107910", "from_user_name": "Meeu Rotaru", "geo": null, "id": 148753215624724480, "id_str": "148753215624724481", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1606611618/Orosi_-_Wendy3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606611618/Orosi_-_Wendy3_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "Dinosaurs' claws lead to new theory on how some overcame prey\\u00A0http://t.co/etmTtNyq\\u00A0Via @EvolutionReview #paleontology\\u00A0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:14:40 +0000", "from_user": "animal", "from_user_id": 930881, "from_user_id_str": "930881", "from_user_name": "Recruiting Animal", "geo": null, "id": 148753111710842880, "id_str": "148753111710842880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/271025035/Animal_Avatar_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/271025035/Animal_Avatar_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Warnex is famous 4 getting DNA from dinosaurs and lost tribes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:14:28 +0000", "from_user": "ReezyTuffGong", "from_user_id": 84914673, "from_user_id_str": "84914673", "from_user_name": "\\u05E8'\\u05D0\\u05E0\\u05D4", "geo": null, "id": 148753063711219700, "id_str": "148753063711219712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662782459/smoke_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662782459/smoke_normal.jpg", "source": "<a href="http://www.lg.com" rel="nofollow">LG Phone</a>", "text": "I didn't know there were feathered dinosaurs..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:13:01 +0000", "from_user": "imagine_me15", "from_user_id": 277303693, "from_user_id_str": "277303693", "from_user_name": "D'Ambra Kruger", "geo": null, "id": 148752696235659260, "id_str": "148752696235659264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1665295674/oops_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665295674/oops_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:12:20 +0000", "from_user": "cantsiaweiner", "from_user_id": 430706095, "from_user_id_str": "430706095", "from_user_name": "Cantsia Weiner", "geo": null, "id": 148752527066796030, "id_str": "148752527066796032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691748167/sf-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691748167/sf-1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @griffinballs: \"Young Why did all the dinosaurs die out?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:12:12 +0000", "from_user": "alyssamaree92", "from_user_id": 137143923, "from_user_id_str": "137143923", "from_user_name": "Alyssa Maree", "geo": null, "id": 148752494036656130, "id_str": "148752494036656128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657879752/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657879752/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#randomthoughts imagine dinosaurs did exist.. Now imagine rocking up to formal in your ferrari-saurous-rex! Haha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:11:08 +0000", "from_user": "griffinballs", "from_user_id": 428527123, "from_user_id_str": "428527123", "from_user_name": "Peter Griffin", "geo": null, "id": 148752222862319600, "id_str": "148752222862319616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674032846/griffinchin_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674032846/griffinchin_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"Young Why did all the dinosaurs die out?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:09:04 +0000", "from_user": "Eusebiabox", "from_user_id": 431701373, "from_user_id_str": "431701373", "from_user_name": "Eusebia Hyche", "geo": null, "id": 148751704161136640, "id_str": "148751704161136641", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681032060/cyxaa4v1t3_131623720-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681032060/cyxaa4v1t3_131623720-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dinosaurs at the Ends of the Earth: A mystery, vistas, camels, a sandstorm, and dinosaurs...what more could a yo... http://t.co/bFFiItfQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:07:04 +0000", "from_user": "jimmyward_", "from_user_id": 21005057, "from_user_id_str": "21005057", "from_user_name": "Jimmy Ward", "geo": null, "id": 148751197636018180, "id_str": "148751197636018177", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1599406234/906c32cf-0cd0-477d-be01-cc8bc6abf763_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599406234/906c32cf-0cd0-477d-be01-cc8bc6abf763_normal.png", "source": "<a href="http://www.apple.com" rel="nofollow">Photos on iOS</a>", "text": "Anna's first trip to London. First stop - dinosaurs! Hamleys next... http://t.co/LoUmYnk0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:05:26 +0000", "from_user": "austinhenry17", "from_user_id": 305828630, "from_user_id_str": "305828630", "from_user_name": "Austin Ogden", "geo": null, "id": 148750787403722750, "id_str": "148750787403722752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1571242845/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1571242845/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Learning about Dinosaurs! #APbiotweet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:05:03 +0000", "from_user": "Edubeat", "from_user_id": 49025026, "from_user_id_str": "49025026", "from_user_name": "EDUBEAT", "geo": null, "id": 148750692763435000, "id_str": "148750692763435008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702346828/17a8f0e2a6b09d15ef80c4bcdf1c78341_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702346828/17a8f0e2a6b09d15ef80c4bcdf1c78341_normal.jpg", "source": "<a href="http://www.visibli.com" rel="nofollow">Visibli</a>", "text": "Videos - Dinosaurs Through History and Walking With Dinosaurs: This morning's CBS News Sunday Morning Almanac wa... http://t.co/0owoFGDV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:04:58 +0000", "from_user": "ValterGouveia", "from_user_id": 26487442, "from_user_id_str": "26487442", "from_user_name": "Valter Gouveia", "geo": null, "id": 148750673058611200, "id_str": "148750673058611201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1459304927/tw_10892243_1311562909_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1459304927/tw_10892243_1311562909_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#eLearning Videos - Dinosaurs Through History and Walking With Dinosaurs: This morning's CBS News Sunday Morning... http://t.co/ffgcfE36", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:04:58 +0000", "from_user": "dmoerland", "from_user_id": 79795057, "from_user_id_str": "79795057", "from_user_name": "Dr. Deborah Moerland", "geo": null, "id": 148750672064561150, "id_str": "148750672064561153", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1250662245/PuppiesnMe_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1250662245/PuppiesnMe_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Videos - Dinosaurs Through History and Walking With Dinosaurs: This morning's CBS News Sunday Morning Almanac wa... http://t.co/j8N1WJMf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:04:57 +0000", "from_user": "kevcreutz", "from_user_id": 52068247, "from_user_id_str": "52068247", "from_user_name": "Kevin Creutz", "geo": null, "id": 148750668390346750, "id_str": "148750668390346752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1495907714/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1495907714/image_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Videos - Dinosaurs Through History and Walking With Dinosaurs http://t.co/QxQwF6xl via @rmbyrne #edtech", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:04:57 +0000", "from_user": "fredsheadfeeds", "from_user_id": 96795017, "from_user_id_str": "96795017", "from_user_name": "Fred's Head Feeds", "geo": null, "id": 148750666494517250, "id_str": "148750666494517248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Tech for Teachers: Videos - Dinosaurs Through History and Walking With Dinosaurs: This morning's CBS News Sunday... http://t.co/s37M6pvM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:04:54 +0000", "from_user": "gwidianto", "from_user_id": 13630852, "from_user_id_str": "13630852", "from_user_name": "gwidianto", "geo": null, "id": 148750655425757200, "id_str": "148750655425757184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/59369729/GW_PasFoto_03_E_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/59369729/GW_PasFoto_03_E_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Videos - Dinosaurs Through History and Walking With Dinosaurs: This morning's CBS News Sunday Morning Almanac wa... http://t.co/ZoD5nqmX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:02:52 +0000", "from_user": "Littleauty86", "from_user_id": 28543397, "from_user_id_str": "28543397", "from_user_name": "Michelle Auty", "geo": null, "id": 148750142449782800, "id_str": "148750142449782785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/883529579/24690_1352228962077_1121975195_1083679_3045771_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/883529579/24690_1352228962077_1121975195_1083679_3045771_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "A bowl of turkey dinosaurs covered in ketchup. Bon appetite.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:02:19 +0000", "from_user": "ClayModen", "from_user_id": 59081465, "from_user_id_str": "59081465", "from_user_name": "Clay Moden", "geo": null, "id": 148750004381687800, "id_str": "148750004381687808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1678878706/cm1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678878706/cm1_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "We couldn't find a single listener to name 5 dinosaurs in 20 seconds!!!! Crazy right???", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:01:48 +0000", "from_user": "D_alelsheikh", "from_user_id": 322541272, "from_user_id_str": "322541272", "from_user_name": "\\u062F\\u0627\\u0646\\u064A\\u0627 \\u0622\\u0644 \\u0627\\u0644\\u0634\\u064A\\u062E", "geo": null, "id": 148749873456492540, "id_str": "148749873456492544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1683304642/331171345_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683304642/331171345_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:00:09 +0000", "from_user": "aboleyn", "from_user_id": 16074587, "from_user_id_str": "16074587", "from_user_name": "aboleyn", "geo": null, "id": 148749460137189380, "id_str": "148749460137189376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696392694/charlieBrownTree_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696392694/charlieBrownTree_1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "If on the finale of #TerraNove they harness and ride dinosaurs to attack those coming through the portal it will still suck.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:59:42 +0000", "from_user": "AssJustRight", "from_user_id": 220090704, "from_user_id_str": "220090704", "from_user_name": "Angaleen Rivera", "geo": null, "id": 148749347918594050, "id_str": "148749347918594048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1645158602/kApbl3KC_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645158602/kApbl3KC_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:59:28 +0000", "from_user": "wellbarreto10", "from_user_id": 285934244, "from_user_id_str": "285934244", "from_user_name": "Wellington Barreto", "geo": null, "id": 148749286740475900, "id_str": "148749286740475904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1520557003/DSC01320_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1520557003/DSC01320_normal.JPG", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/9piMLntT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:58:20 +0000", "from_user": "lenkvfbma5", "from_user_id": 389494039, "from_user_id_str": "389494039", "from_user_name": "Lenk Nixon", "geo": null, "id": 148749003494932480, "id_str": "148749003494932480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1584880512/imagesCAB6EUV0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584880512/imagesCAB6EUV0_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "jeremymacfadyen bigpapabdc Dinosaurs aren't on this map because humans arrived on east coast 1st thehrsb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:58:03 +0000", "from_user": "___step", "from_user_id": 204193450, "from_user_id_str": "204193450", "from_user_name": "Roseanna Ziggy Lane", "geo": null, "id": 148748933127094270, "id_str": "148748933127094272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1618456551/roseannasonny_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618456551/roseannasonny_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "i just woke up from a nightmare.. about dinosaurs. i'm 5.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:57:33 +0000", "from_user": "DNLee5", "from_user_id": 174847568, "from_user_id_str": "174847568", "from_user_name": "DNLee", "geo": null, "id": 148748804177403900, "id_str": "148748804177403904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1100792393/_MG_8174_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1100792393/_MG_8174_normal.jpg", "source": "<a href="http://www.networkedblogs.com/" rel="nofollow">NetworkedBlogs</a>", "text": "The Second International Workshop on the Biology of Sauropod Dinosaurs (part I) http://t.co/5XLJd7jH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:57:18 +0000", "from_user": "Garsha97", "from_user_id": 335766381, "from_user_id_str": "335766381", "from_user_name": "Lakeisha Kelkar", "geo": null, "id": 148748743070584830, "id_str": "148748743070584832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687030263/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687030263/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:56:52 +0000", "from_user": "monalisa_lgp", "from_user_id": 109057658, "from_user_id_str": "109057658", "from_user_name": "Diana", "geo": null, "id": 148748632290627600, "id_str": "148748632290627584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1600553301/a75f8812-b8d4-4784-af38-68d3409a8dfa_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600553301/a75f8812-b8d4-4784-af38-68d3409a8dfa_normal.png", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "What if dinosaurs were alive today? http://t.co/5dtTlMqH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:56:51 +0000", "from_user": "Pete_Stead", "from_user_id": 212743450, "from_user_id_str": "212743450", "from_user_name": "Pete", "geo": null, "id": 148748630881341440, "id_str": "148748630881341440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1170288192/DSCN1472_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1170288192/DSCN1472_normal.JPG", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "@fstead @Rybel67 its basically star trek with dinosaurs", "to_user": "fstead", "to_user_id": 19713709, "to_user_id_str": "19713709", "to_user_name": "Frank Stead", "in_reply_to_status_id": 148748389411065860, "in_reply_to_status_id_str": "148748389411065856"}, +{"created_at": "Mon, 19 Dec 2011 12:56:51 +0000", "from_user": "THEdavelentz", "from_user_id": 91146600, "from_user_id_str": "91146600", "from_user_name": "David Lentz", "geo": null, "id": 148748630776492030, "id_str": "148748630776492032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/534278127/dave_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/534278127/dave_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/tnitgl5o", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:56:39 +0000", "from_user": "GigaTools", "from_user_id": 65345619, "from_user_id_str": "65345619", "from_user_name": "GigaTools", "geo": null, "id": 148748577739509760, "id_str": "148748577739509760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/746396343/GT_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/746396343/GT_normal.png", "source": "<a href="http://www.gigatools.com" rel="nofollow">GigaTools</a>", "text": "Totally Enormous Extinct Dinosaurs is playing @ #Emmaboda Festival / #Rasslebygd Sweden, Thu 26 Jul 2012 http://t.co/nfz3YuSD #gigs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:53:33 +0000", "from_user": "JujuLoves1D", "from_user_id": 282310455, "from_user_id_str": "282310455", "from_user_name": "Juliette Styles", "geo": null, "id": 148747798681108480, "id_str": "148747798681108481", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1645074530/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645074530/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Natloves1Dxoxo <------ didn't know dinosaurs were real! she thought they were fake! and didn't know why they were in the musem!", "to_user": "Natloves1Dxoxo", "to_user_id": 289191145, "to_user_id_str": "289191145", "to_user_name": "Nat styles"}, +{"created_at": "Mon, 19 Dec 2011 12:51:49 +0000", "from_user": "bowleskjks", "from_user_id": 427118318, "from_user_id_str": "427118318", "from_user_name": "bowles.kjks", "geo": null, "id": 148747363270397950, "id_str": "148747363270397953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Dozen Jumbo Dinosaurs up to 6 inches long http://t.co/2dAjFTEp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:50:14 +0000", "from_user": "JamesOfSuburbia", "from_user_id": 42195756, "from_user_id_str": "42195756", "from_user_name": "East James Nowhere", "geo": null, "id": 148746964761194500, "id_str": "148746964761194496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1671160320/IMG00030_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671160320/IMG00030_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "I hope I don't get scared playing Dino Crisis later. It's not natural for me to be scared of dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:50:06 +0000", "from_user": "JakeNavon", "from_user_id": 182640470, "from_user_id_str": "182640470", "from_user_name": "Jake Navon", "geo": null, "id": 148746929013145600, "id_str": "148746929013145600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1679546181/FacebookHomescreenImage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679546181/FacebookHomescreenImage_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @PrincessVane_: Kiss me if i'm wrong, but Dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:46:00 +0000", "from_user": "ItsAnkolika", "from_user_id": 95182808, "from_user_id_str": "95182808", "from_user_name": "Ank\\u00F8lika\\u265B", "geo": null, "id": 148745896966893570, "id_str": "148745896966893568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702145588/156980_171153319584860_100000705789052_393542_2072268_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702145588/156980_171153319584860_100000705789052_393542_2072268_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @Oliverrr__: Kiss me if I'm wrong, but dinosaurs still exist, right..?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:45:37 +0000", "from_user": "LittleJimmmy", "from_user_id": 76002765, "from_user_id_str": "76002765", "from_user_name": "Rachel McDonnell", "geo": null, "id": 148745802838319100, "id_str": "148745802838319104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695589768/Screen_20111215_195727_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695589768/Screen_20111215_195727_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "I would have dreams about dinosaurs :$ I'm honestly in loooove", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:45:08 +0000", "from_user": "JBiebsLilRocker", "from_user_id": 241427443, "from_user_id_str": "241427443", "from_user_name": "Emma Nagelkerke", "geo": null, "id": 148745680620503040, "id_str": "148745680620503041", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695583225/cute-_reece-_flag_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695583225/cute-_reece-_flag_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @TheeSickestGirl: Parent: \"Well when I was your age...\" Me: STFU WHEN YOU WERE MY AGE, YOU RODE DINOSAURS!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:44:47 +0000", "from_user": "xBieberUK", "from_user_id": 122479581, "from_user_id_str": "122479581", "from_user_name": "bhumiiii (:", "geo": null, "id": 148745591067914240, "id_str": "148745591067914243", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695126562/tumblr_lve017MTKZ1qjbcfco2_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695126562/tumblr_lve017MTKZ1qjbcfco2_500_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @em_biebsy: @xBieberUK roar at eachother like dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:44:01 +0000", "from_user": "em_biebsy", "from_user_id": 280162139, "from_user_id_str": "280162139", "from_user_name": "bieber's elf", "geo": null, "id": 148745397819547650, "id_str": "148745397819547648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1647040342/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647040342/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@xBieberUK roar at eachother like dinosaurs.", "to_user": "xBieberUK", "to_user_id": 122479581, "to_user_id_str": "122479581", "to_user_name": "bhumiiii (:", "in_reply_to_status_id": 148745186002993150, "in_reply_to_status_id_str": "148745186002993152"}, +{"created_at": "Mon, 19 Dec 2011 12:43:19 +0000", "from_user": "vendelinrqiru2", "from_user_id": 366931522, "from_user_id_str": "366931522", "from_user_name": "Vendelin Reed", "geo": null, "id": 148745223130972160, "id_str": "148745223130972160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1525951236/imagesCA3X9Y71_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1525951236/imagesCA3X9Y71_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "jeremymacfadyen bigpapabdc Dinosaurs aren't on this map because humans arrived on east coast 1st theYkOt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:41:50 +0000", "from_user": "JieberFeverLove", "from_user_id": 142001998, "from_user_id_str": "142001998", "from_user_name": "Me", "geo": null, "id": 148744848797736960, "id_str": "148744848797736960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1474636692/a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1474636692/a_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:41:30 +0000", "from_user": "C0ME_AG41N", "from_user_id": 360069630, "from_user_id_str": "360069630", "from_user_name": "LillieeLaye;", "geo": null, "id": 148744768405508100, "id_str": "148744768405508099", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1689612047/_meeee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689612047/_meeee_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "if you dont like turkey dinosaurs we cannot be friends", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:41:14 +0000", "from_user": "ZozKpopCrazy", "from_user_id": 245527290, "from_user_id_str": "245527290", "from_user_name": "Zahra'a", "geo": null, "id": 148744699425980400, "id_str": "148744699425980416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700515034/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700515034/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "During trainee times, Leeteuk got scared of Yuri because she once imitated the sound of dinosaurs.\\nLMAO!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:41:06 +0000", "from_user": "stair71", "from_user_id": 20934315, "from_user_id_str": "20934315", "from_user_name": "Alastair Baker", "geo": null, "id": 148744666043518980, "id_str": "148744666043518976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1121466413/alprof_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1121466413/alprof_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ERN_Malleyscrub: The terror-didactical - a winged beast who lectured all the dinosaurs while flying. This is the real reason dinosaurs died out. #artwiculate", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:41:01 +0000", "from_user": "OhmyLaurd", "from_user_id": 337129711, "from_user_id_str": "337129711", "from_user_name": "Lauren Aguilar", "geo": null, "id": 148744646422577150, "id_str": "148744646422577152", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1458298216/Guitar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1458298216/Guitar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@RoanneAraneta Ga wonder gd ko bala nga-a wala nila gn domesticate ang dinosaurs sa Terra Nova", "to_user": "RoanneAraneta", "to_user_id": 60277863, "to_user_id_str": "60277863", "to_user_name": "Roanne"}, +{"created_at": "Mon, 19 Dec 2011 12:38:45 +0000", "from_user": "DToTheEZ", "from_user_id": 203042016, "from_user_id_str": "203042016", "from_user_name": "Dez", "geo": null, "id": 148744073635827700, "id_str": "148744073635827712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1530233523/ucla1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1530233523/ucla1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#MovieTagLinesYoullNeverSee Jurassic Park: Fucking Dinosaurs!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:38:14 +0000", "from_user": "Jordysmiith", "from_user_id": 256558414, "from_user_id_str": "256558414", "from_user_name": "Jordy Smith", "geo": null, "id": 148743943780184060, "id_str": "148743943780184064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1673465838/sdfsdf_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673465838/sdfsdf_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "documentary on dinosaurs? go on then.. #geekytimes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:38:04 +0000", "from_user": "Kierstenugp", "from_user_id": 430052056, "from_user_id_str": "430052056", "from_user_name": "Kiersten Visconti", "geo": null, "id": 148743901430292480, "id_str": "148743901430292480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677529797/p1mws345bf_109312977-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677529797/p1mws345bf_109312977-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dinosaur World: Mary and her father visit the \"one-of-a-kind\" theme park where dinosaurs rule. They meet a giant... http://t.co/P1I2NLuP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:36:45 +0000", "from_user": "TeensLikeYou_", "from_user_id": 159207822, "from_user_id_str": "159207822", "from_user_name": "Wanjiku(( ;", "geo": null, "id": 148743570340331520, "id_str": "148743570340331520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695380411/388402_255458167849382_100001556030908_758254_301265777_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695380411/388402_255458167849382_100001556030908_758254_301265777_n_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Dinosaurs are all like \"IMA EAT OUT YOUR FUCKING GUTS AND SHIT.\" Turtles are like \"cool story bro,\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:36:36 +0000", "from_user": "CeliaPedroso", "from_user_id": 20505532, "from_user_id_str": "20505532", "from_user_name": "C\\u00E9lia Pedroso", "geo": null, "id": 148743533170409470, "id_str": "148743533170409472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1677621457/ME_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677621457/ME_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "I'm really SAD. Another brilliant journo friend was made redundant. Are journalists the new dinosaurs?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:34:05 +0000", "from_user": "jazz_burns", "from_user_id": 169625042, "from_user_id_str": "169625042", "from_user_name": "Jasmine Burns", "geo": null, "id": 148742900031832060, "id_str": "148742900031832064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1675816307/P011211_17.03_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675816307/P011211_17.03_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:32:55 +0000", "from_user": "Mydinosaurnews", "from_user_id": 73539244, "from_user_id_str": "73539244", "from_user_name": "Dinosaur News", "geo": null, "id": 148742606413766660, "id_str": "148742606413766656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/410489903/logo3_th_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/410489903/logo3_th_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "DINOS-LIVE The Second International Workshop on the Biology of Sauropod Dinosaurs (part I): Diplodocid sauropods... http://t.co/0VPkTmh4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:32:45 +0000", "from_user": "MJSpice", "from_user_id": 19325917, "from_user_id_str": "19325917", "from_user_name": "MJSpice", "geo": null, "id": 148742563615080450, "id_str": "148742563615080449", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1628562750/credit_to_mymjjtribute_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628562750/credit_to_mymjjtribute_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@akai_ringo09 Even more awkward that after finding it, other dinosaurs find you unappetizing. XD #JurassicPark3", "to_user": "akai_ringo09", "to_user_id": 128856102, "to_user_id_str": "128856102", "to_user_name": "Heza", "in_reply_to_status_id": 148738450449903600, "in_reply_to_status_id_str": "148738450449903616"}, +{"created_at": "Mon, 19 Dec 2011 12:31:01 +0000", "from_user": "Bipolar_Issues", "from_user_id": 339369551, "from_user_id_str": "339369551", "from_user_name": "Danira :D", "geo": null, "id": 148742128795783170, "id_str": "148742128795783168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1685356640/Bipolar_Issues_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685356640/Bipolar_Issues_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:27:40 +0000", "from_user": "josephg5", "from_user_id": 147938510, "from_user_id_str": "147938510", "from_user_name": "Joseph George", "geo": null, "id": 148741284138455040, "id_str": "148741284138455040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1089602225/AIbEiAIAAABECPD7-u7in4-20QEiC3ZjYXJkX3Bob3RvKig2ZmQ5YmM4YjczNjdhNmI1MWE1MjhiMjljN2VjNmJkNzk3MjRjYmFmMAG41wWsbg7zXnMDajd2LouM4VzNSA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1089602225/AIbEiAIAAABECPD7-u7in4-20QEiC3ZjYXJkX3Bob3RvKig2ZmQ5YmM4YjczNjdhNmI1MWE1MjhiMjljN2VjNmJkNzk3MjRjYmFmMAG41wWsbg7zXnMDajd2LouM4VzNSA_normal.jpg", "source": "<a href="http://jacobo.tarrio.org/cheepcheep" rel="nofollow">CheepCheep</a>", "text": "We need smaller #gov not #SuperStates, smaller #banks not #TooBig2Fail #dinosaurs, productive & proactive #citizenry not ticking #timebombs!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:27:34 +0000", "from_user": "zilters", "from_user_id": 295713342, "from_user_id_str": "295713342", "from_user_name": "Zilters O'mniscient", "geo": null, "id": 148741259622752260, "id_str": "148741259622752256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1671749827/1298070941529_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671749827/1298070941529_normal.jpg", "source": "<a href="http://favstar.fm" rel="nofollow">Favstar.FM</a>", "text": "RT @IamEnidColeslaw: Kirk Cameron just told me that dinosaurs became extinct because they were \"heathens and sodomites.\" (???)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:27:27 +0000", "from_user": "shasachille", "from_user_id": 220663580, "from_user_id_str": "220663580", "from_user_name": "Shasa Pratiwie", "geo": null, "id": 148741231025991680, "id_str": "148741231025991680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699744738/CIMG1625_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699744738/CIMG1625_normal.JPG", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/083RFwGD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:26:39 +0000", "from_user": "rizardouz", "from_user_id": 118436987, "from_user_id_str": "118436987", "from_user_name": "j.richardvaldeavilla", "geo": null, "id": 148741027962953730, "id_str": "148741027962953728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1427609851/baby_jr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1427609851/baby_jr_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"Giant Humans and Dinosaurs\" http://t.co/uTdgSS3z", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:26:28 +0000", "from_user": "nessie_79", "from_user_id": 211217184, "from_user_id_str": "211217184", "from_user_name": "Vanessa Trickett", "geo": null, "id": 148740982475722750, "id_str": "148740982475722753", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1607636463/296550_278396008860210_100000694387140_878801_1097600980_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607636463/296550_278396008860210_100000694387140_878801_1097600980_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Totally Enormous Extinct Dinosaurs - Household Goods [OFFICIAL VIDEO] http://t.co/E8b2d5Us via @youtube", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:25:54 +0000", "from_user": "BonfireAgency", "from_user_id": 347971454, "from_user_id_str": "347971454", "from_user_name": "Bonfire Agency", "geo": null, "id": 148740841240920060, "id_str": "148740841240920064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1476364755/Picture_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1476364755/Picture_2_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "It's the Season Finale of Terra Nova? Can that be right? I keep meaning to watch that show. #Fox #TV #Dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:25:53 +0000", "from_user": "IQuoteDope_", "from_user_id": 438795933, "from_user_id_str": "438795933", "from_user_name": "LOADING...", "geo": null, "id": 148740836912398340, "id_str": "148740836912398337", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699065406/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699065406/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:24:59 +0000", "from_user": "kmathisss", "from_user_id": 335386356, "from_user_id_str": "335386356", "from_user_name": "kelsey dawn mathis", "geo": null, "id": 148740600986996740, "id_str": "148740600986996738", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1636968184/05DW6UbB_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1636968184/05DW6UbB_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I want one of these cute little dinosaurs as a pet (: http://t.co/Qp2mIafL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:24:54 +0000", "from_user": "Scottbamber", "from_user_id": 179161969, "from_user_id_str": "179161969", "from_user_name": "Scott Bamber", "geo": null, "id": 148740589368770560, "id_str": "148740589368770560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1637048021/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637048021/image_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "RT @blueroombpl: GOONIES NEVER SAY DIE | MAKERS OF VENICE | DINOSAURS ARE SHIT DRAGONS | ESCAPE ARTIST - Live at The Blue Room this Thursday. \\u00A31 8:30pm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:22:20 +0000", "from_user": "Ziltoidia", "from_user_id": 14422798, "from_user_id_str": "14422798", "from_user_name": "Eli [Eh-lee]", "geo": null, "id": 148739943404023800, "id_str": "148739943404023809", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1403238990/203206_869815354_4728421_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1403238990/203206_869815354_4728421_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dvntownsend Did you know that if you speed up 'Dinosaurs' just a little, it sounds like the nuttiest Aqua song ever?! :D Epic.", "to_user": "dvntownsend", "to_user_id": 32202200, "to_user_id_str": "32202200", "to_user_name": "Devin Townsend"}, +{"created_at": "Mon, 19 Dec 2011 12:22:19 +0000", "from_user": "procondog432", "from_user_id": 188594782, "from_user_id_str": "188594782", "from_user_name": "thomas conroy", "geo": null, "id": 148739937020289020, "id_str": "148739937020289024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "How to make paper craft dinosaurs http://t.co/psz4bjpI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:22:03 +0000", "from_user": "beardbot", "from_user_id": 166954536, "from_user_id_str": "166954536", "from_user_name": "Andy Beard", "geo": null, "id": 148739871362650100, "id_str": "148739871362650112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1078965537/beard_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1078965537/beard_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Woke up an hour ago, managed to shave my 2 week beard off but not wash my hair, now at a community meal with a million dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:19:04 +0000", "from_user": "GimmeThaTing", "from_user_id": 19814176, "from_user_id_str": "19814176", "from_user_name": "Gary Bourbage", "geo": null, "id": 148739119768535040, "id_str": "148739119768535041", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1537629458/Gart_20_nerd__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1537629458/Gart_20_nerd__normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Woke up an hour ago, managed to shave my 2 week beard off but not wash my hair, now at a community meal with a million dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:18:32 +0000", "from_user": "chungsham", "from_user_id": 26682918, "from_user_id_str": "26682918", "from_user_name": "Chung Sham", "geo": null, "id": 148738986221903870, "id_str": "148738986221903872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1202153247/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1202153247/me_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Inside the World of Dinosaurs\\u2122: A comprehensive interactive dinosaur encyclopedia with narration by Stephen Fry. http://t.co/Vxnho0f7 #ipad", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:17:41 +0000", "from_user": "ListyaLin", "from_user_id": 110437554, "from_user_id_str": "110437554", "from_user_name": "Listya Lin", "geo": null, "id": 148738774694772740, "id_str": "148738774694772738", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692121040/swath3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692121040/swath3_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I have a backbone like a dinosaurs.. Very ugly aaa.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:16:47 +0000", "from_user": "voicesinyahead", "from_user_id": 61649190, "from_user_id_str": "61649190", "from_user_name": "Voices In Your Head", "geo": null, "id": 148738544465227780, "id_str": "148738544465227776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/340423667/l_3b634827f54ec0650885c31357514f3a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/340423667/l_3b634827f54ec0650885c31357514f3a_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@meganphelps I see. But...dinosaurs are real...right?", "to_user": "meganphelps", "to_user_id": 15920243, "to_user_id_str": "15920243", "to_user_name": "Megan Phelps-Roper"} +, +{"created_at": "Mon, 19 Dec 2011 12:15:28 +0000", "from_user": "ChrissChung", "from_user_id": 398680719, "from_user_id_str": "398680719", "from_user_name": "Christian Chung", "geo": null, "id": 148738215354966000, "id_str": "148738215354966016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1609376900/twitter_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609376900/twitter_pic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#SometimesIWonder if dinosaurs were just a cover up for Pokemon :/ HAHA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:15:06 +0000", "from_user": "alexgc1980", "from_user_id": 422044253, "from_user_id_str": "422044253", "from_user_name": "alessio taranto @ *", "geo": null, "id": 148738123466154000, "id_str": "148738123466153985", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1660802118/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660802118/image_normal.jpg", "source": "<a href="http://www.freeappmagic.com/" rel="nofollow">Free App Magic *</a>", "text": "Ho proprio scoperto Pocket Dinosaurs 2 con Free App Magic nel mio iPhone http://t.co/dQG6M62V", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:14:34 +0000", "from_user": "MEGALOVEMUSIC", "from_user_id": 79030835, "from_user_id_str": "79030835", "from_user_name": "MEGALOVE", "geo": null, "id": 148737986664730620, "id_str": "148737986664730624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1588318657/Cover_Art_800_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1588318657/Cover_Art_800_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Here's some dinosaurs at the last Megalove gig! http://t.co/sHYpswMq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:13:19 +0000", "from_user": "RebeccaMuse20", "from_user_id": 381650026, "from_user_id_str": "381650026", "from_user_name": "Rebecca Yates", "geo": null, "id": 148737673471860740, "id_str": "148737673471860736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1567627372/Snapshot_20110527_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1567627372/Snapshot_20110527_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Photoset: dinosaurs-roaming-the-earth: http://t.co/ke1vE8x3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:10:48 +0000", "from_user": "crazygal_priya", "from_user_id": 200040101, "from_user_id_str": "200040101", "from_user_name": "priya jain", "geo": null, "id": 148737040090017800, "id_str": "148737040090017792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1597666243/273276_100000060648922_765577096_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1597666243/273276_100000060648922_765577096_q_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:10:09 +0000", "from_user": "Timothyxlp", "from_user_id": 359320950, "from_user_id_str": "359320950", "from_user_name": "Timothy Kraham", "geo": null, "id": 148736875073507330, "id_str": "148736875073507328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1506378120/CPLL-2587_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1506378120/CPLL-2587_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "ScooterBees Dinosaurs First Walker (Infant/Toddler), Sunshine (18-24 Months) 6.5 M US Toddler,18-24 Months (6.5 ... http://t.co/UmcvmZhC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:09:14 +0000", "from_user": "Tari_Soulchild", "from_user_id": 404302156, "from_user_id_str": "404302156", "from_user_name": "Tarryn Brony", "geo": null, "id": 148736644990775300, "id_str": "148736644990775296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1620834316/Hot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620834316/Hot_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:08:50 +0000", "from_user": "clockopera", "from_user_id": 22346644, "from_user_id_str": "22346644", "from_user_name": "Clock Opera", "geo": null, "id": 148736544713351170, "id_str": "148736544713351168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/852329339/APOS_250px_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/852329339/APOS_250px_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ESNSnl: Due to studio commitments Totally Enormous Extinct Dinosaurs cancelled their showcase at #ESNS12, but @ClockOpera is added to the bill!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:08:06 +0000", "from_user": "jagan520", "from_user_id": 96737209, "from_user_id_str": "96737209", "from_user_name": "jagannath", "geo": null, "id": 148736361283850240, "id_str": "148736361283850240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1144033300/jagan_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1144033300/jagan_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "JESUS TITTIE CHRIST! Finally, I'm watching MI:4. I'm bad at these dinosaurs' genus. Which one am I?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:06:14 +0000", "from_user": "Aubrey24243366", "from_user_id": 394794257, "from_user_id_str": "394794257", "from_user_name": "kfdssdkfa", "geo": null, "id": 148735893065306100, "id_str": "148735893065306112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1598108090/p2_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598108090/p2_normal.jpeg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "What Really Happened to the Dinosaurs? [VHS]: http://t.co/uZaWiKKB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:05:08 +0000", "from_user": "ixysuleku", "from_user_id": 316963932, "from_user_id_str": "316963932", "from_user_name": "Hiltan Birnbaum", "geo": null, "id": 148735616027340800, "id_str": "148735616027340800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1423379674/1727_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1423379674/1727_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Jumbo Inflatable Dinosaurs ( 6 count) (Toy) http://t.co/qE0C5LvO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:00:30 +0000", "from_user": "MauriceAlmighty", "from_user_id": 164121464, "from_user_id_str": "164121464", "from_user_name": "Big Mo Mo", "geo": null, "id": 148734447708151800, "id_str": "148734447708151808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668802289/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668802289/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @DustinEatsTacos: after today, I'm making myself throw up so I don't have to go to school until break. fuck dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:00:05 +0000", "from_user": "Imogenejdm", "from_user_id": 440177688, "from_user_id_str": "440177688", "from_user_name": "Imogene Boyarsky", "geo": null, "id": 148734343467114500, "id_str": "148734343467114496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700491626/large_EZBESSGLVXTM_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700491626/large_EZBESSGLVXTM_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "S&S Worldwide Dinosaurs Learning Wall\\u00AE: Detailed illustrations are easy to color with crayons, markers or paint.... http://t.co/lYxKNlp4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:59:18 +0000", "from_user": "DustinEatsTacos", "from_user_id": 327811344, "from_user_id_str": "327811344", "from_user_name": "Rodney Awesome", "geo": null, "id": 148734144640319500, "id_str": "148734144640319492", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664662636/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664662636/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "after today, I'm making myself throw up so I don't have to go to school until break. fuck dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:57:32 +0000", "from_user": "aymKatryn", "from_user_id": 410755642, "from_user_id_str": "410755642", "from_user_name": "katryn mondres", "geo": null, "id": 148733701814108160, "id_str": "148733701814108160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1667836067/pp_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667836067/pp_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Kiss me if I'm wrong. but dinosaurs do exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:53:10 +0000", "from_user": "ninovanherpen", "from_user_id": 104891064, "from_user_id_str": "104891064", "from_user_name": "Nino van Herpen", "geo": null, "id": 148732603783057400, "id_str": "148732603783057408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1557756456/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1557756456/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Garden - Totally Enormous Extinct Dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:50:49 +0000", "from_user": "Bebektf", "from_user_id": 431745050, "from_user_id_str": "431745050", "from_user_name": "Bebe Visco", "geo": null, "id": 148732010997882880, "id_str": "148732010997882880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681132295/large_207253_10150542170805648_731350647_18125278_6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681132295/large_207253_10150542170805648_731350647_18125278_6_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Biggies WS-ZAL-50 Wall Stickies-Dinosaurs-50: Delight children of all ages! Transform ordinary walls instantly w... http://t.co/SUpUkr6Y", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:50:18 +0000", "from_user": "VikramBhatnagar", "from_user_id": 30237001, "from_user_id_str": "30237001", "from_user_name": "Vikram Bhatnagar", "geo": null, "id": 148731881033170940, "id_str": "148731881033170944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/626360454/qq32jR8_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/626360454/qq32jR8_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Some people belive that dinosaurs were lies, fed to us only to cover up the existence of Pokemon.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:50:03 +0000", "from_user": "Visitkarte", "from_user_id": 84685398, "from_user_id_str": "84685398", "from_user_name": "Kathrina Maier", "geo": null, "id": 148731819678908400, "id_str": "148731819678908416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1670063534/Visitkarte_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670063534/Visitkarte_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @Stathies: @tracyhepburnfan I know!! Another missed opportunity. Instead we get two hours of dumb dinosaurs! Bah humbug :(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:49:49 +0000", "from_user": "NikitaJanieD", "from_user_id": 436868597, "from_user_id_str": "436868597", "from_user_name": "Nikita Janie Davis", "geo": null, "id": 148731760774086660, "id_str": "148731760774086657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693256973/382587_107511666034064_100003256929844_33126_129168960_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693256973/382587_107511666034064_100003256929844_33126_129168960_n_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/W2v32G6z", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:48:50 +0000", "from_user": "Stathies", "from_user_id": 191567917, "from_user_id_str": "191567917", "from_user_name": "DSM IV", "geo": null, "id": 148731513482133500, "id_str": "148731513482133504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1671264974/wilson_thinks_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671264974/wilson_thinks_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@tracyhepburnfan I know!! Another missed opportunity. Instead we get two hours of dumb dinosaurs! Bah humbug :(", "to_user": "tracyhepburnfan", "to_user_id": 82218170, "to_user_id_str": "82218170", "to_user_name": "filmlover", "in_reply_to_status_id": 148729846254673920, "in_reply_to_status_id_str": "148729846254673920"}, +{"created_at": "Mon, 19 Dec 2011 11:48:07 +0000", "from_user": "glenwith1n", "from_user_id": 37377130, "from_user_id_str": "37377130", "from_user_name": "Glen Mackay", "geo": null, "id": 148731332460167170, "id_str": "148731332460167168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/731110239/Photo_54_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/731110239/Photo_54_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Watching dinosaurs. \"not the mamma\" sooo funny", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:47:34 +0000", "from_user": "melodywesternfa", "from_user_id": 328940907, "from_user_id_str": "328940907", "from_user_name": "Melody Western", "geo": null, "id": 148731192802410500, "id_str": "148731192802410496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1425819383/1309771262_350px-haeckel_drawings_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1425819383/1309771262_350px-haeckel_drawings_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Dinosaurs with killer claws yield new theory about flight - Billings Gazette http://t.co/X96NEt73", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:46:31 +0000", "from_user": "floorcake", "from_user_id": 122395798, "from_user_id_str": "122395798", "from_user_name": "\\u314B\\u314B\\u314Bkhema", "geo": null, "id": 148730930184462340, "id_str": "148730930184462336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1628409931/happy_____applebloom_MLP_icon_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628409931/happy_____applebloom_MLP_icon_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "@inconversant @minakissykissy always more dinosaurs. And fairy lights.", "to_user": "inconversant", "to_user_id": 265325017, "to_user_id_str": "265325017", "to_user_name": "gelignite it", "in_reply_to_status_id": 148730038957781000, "in_reply_to_status_id_str": "148730038957780992"}, +{"created_at": "Mon, 19 Dec 2011 11:46:31 +0000", "from_user": "sabele26", "from_user_id": 14085864, "from_user_id_str": "14085864", "from_user_name": "sabele26", "geo": null, "id": 148730928540303360, "id_str": "148730928540303360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1149041918/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1149041918/image_normal.jpg", "source": "<a href="http://twipple.jp/" rel="nofollow">\\u3064\\u3044\\u3063\\u3077\\u308B for iPad</a>", "text": "@NadaYPuesNada Tree of Life? Didn't get it. I laughed out loud when the dinosaurs showed up!", "to_user": "NadaYPuesNada", "to_user_id": 384912821, "to_user_id_str": "384912821", "to_user_name": "C.", "in_reply_to_status_id": 148721324771123200, "in_reply_to_status_id_str": "148721324771123201"}, +{"created_at": "Mon, 19 Dec 2011 11:46:23 +0000", "from_user": "NewsDetroit", "from_user_id": 104938477, "from_user_id_str": "104938477", "from_user_name": "Detroit News", "geo": null, "id": 148730896646815740, "id_str": "148730896646815744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/768830974/facbeook_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/768830974/facbeook_twitter_normal.png", "source": "<a href="http://fwix.com" rel="nofollow">Fwix</a>", "text": "'Lincoln,' robots, dinosaurs and more - http://t.co/44Zb0Yz1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:45:46 +0000", "from_user": "dominicvatovec", "from_user_id": 324916747, "from_user_id_str": "324916747", "from_user_name": "Dominic Vatovec", "geo": null, "id": 148730741675659260, "id_str": "148730741675659265", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1415486900/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1415486900/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@Montberte ...I like the tweet on dinosaurs useful stuff", "to_user": "Montberte", "to_user_id": 193318094, "to_user_id_str": "193318094", "to_user_name": "Steve Cushing", "in_reply_to_status_id": 148682215558103040, "in_reply_to_status_id_str": "148682215558103040"}, +{"created_at": "Mon, 19 Dec 2011 11:45:11 +0000", "from_user": "fabfabfeb", "from_user_id": 25027040, "from_user_id_str": "25027040", "from_user_name": "Febrina Aryani Li", "geo": null, "id": 148730594812104700, "id_str": "148730594812104704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1666826855/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666826855/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Today raining cats and dogs and crocodiles and dinosaurs -_________-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:45:10 +0000", "from_user": "thezombeetle", "from_user_id": 96499324, "from_user_id_str": "96499324", "from_user_name": "zombeetle", "geo": null, "id": 148730588558405630, "id_str": "148730588558405634", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701852398/zombeetlesmall_copy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701852398/zombeetlesmall_copy_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @inconversant: @minakissykissy needs more dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:44:07 +0000", "from_user": "dothebadthing_", "from_user_id": 56466504, "from_user_id_str": "56466504", "from_user_name": "steph murtagh x", "geo": null, "id": 148730325072228350, "id_str": "148730325072228352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677112925/me_062_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677112925/me_062_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Sex on the beach. Oh wait Fuck its cold. Dinosaurs < lol ok Malcolm.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:43:27 +0000", "from_user": "catmaster436", "from_user_id": 14278899, "from_user_id_str": "14278899", "from_user_name": "catmaster436", "geo": null, "id": 148730158239592450, "id_str": "148730158239592449", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/375515442/62_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/375515442/62_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Photo: sciencecenter: http://t.co/FGH8xJYJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:43:27 +0000", "from_user": "blueroombpl", "from_user_id": 160566664, "from_user_id_str": "160566664", "from_user_name": "the blue room", "geo": null, "id": 148730157799194620, "id_str": "148730157799194625", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1032551359/blueroomwhite_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1032551359/blueroomwhite_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "GOONIES NEVER SAY DIE | MAKERS OF VENICE | DINOSAURS ARE SHIT DRAGONS | ESCAPE ARTIST - Live at The Blue Room this Thursday. \\u00A31 8:30pm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:43:12 +0000", "from_user": "Domiisugarx_D", "from_user_id": 220212424, "from_user_id_str": "220212424", "from_user_name": "Dominique Doughty", "geo": null, "id": 148730094075121660, "id_str": "148730094075121664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1539641091/IMG00315_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1539641091/IMG00315_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @AdmireMyQuote: RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:42:59 +0000", "from_user": "inconversant", "from_user_id": 265325017, "from_user_id_str": "265325017", "from_user_name": "gelignite it", "geo": null, "id": 148730038957781000, "id_str": "148730038957780992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701640225/twitticon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701640225/twitticon_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@minakissykissy needs more dinosaurs", "to_user": "minakissykissy", "to_user_id": 316487899, "to_user_id_str": "316487899", "to_user_name": "Mina Rosenrot", "in_reply_to_status_id": 148729867624661000, "in_reply_to_status_id_str": "148729867624660992"}, +{"created_at": "Mon, 19 Dec 2011 11:42:26 +0000", "from_user": "HollyMayesx", "from_user_id": 155831391, "from_user_id_str": "155831391", "from_user_name": "Holly Mayes", "geo": null, "id": 148729903578230800, "id_str": "148729903578230784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1666610104/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666610104/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@kerrieannewallx I fucking hate turkey dinosaurs !!!!!!!!!!!", "to_user": "kerrieannewallx", "to_user_id": 397163785, "to_user_id_str": "397163785", "to_user_name": "Kerrie Anne Wall"}, +{"created_at": "Mon, 19 Dec 2011 11:40:36 +0000", "from_user": "victoriablogger", "from_user_id": 238484165, "from_user_id_str": "238484165", "from_user_name": "Bill Stenson", "geo": null, "id": 148729442276089860, "id_str": "148729442276089856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1216170451/Bill_for_Bio_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1216170451/Bill_for_Bio_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Second International Workshop on the Biology of Sauropod Dinosaurs (part I) http://t.co/1paZhVyA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:40:00 +0000", "from_user": "Loverickykaka", "from_user_id": 165048369, "from_user_id_str": "165048369", "from_user_name": "\\u2714 Kakazete", "geo": null, "id": 148729289750224900, "id_str": "148729289750224896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1572836677/ajaxam2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572836677/ajaxam2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:39:25 +0000", "from_user": "kerrieannewallx", "from_user_id": 397163785, "from_user_id_str": "397163785", "from_user_name": "Kerrie Anne Wall", "geo": null, "id": 148729141737435140, "id_str": "148729141737435136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701965670/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701965670/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@HollyMayesx come round mine we can play out and drink tea I'll make us turkey dinosaurs xxxxxxxxx", "to_user": "HollyMayesx", "to_user_id": 155831391, "to_user_id_str": "155831391", "to_user_name": "Holly Mayes"}, +{"created_at": "Mon, 19 Dec 2011 11:39:01 +0000", "from_user": "OpalDyewgzvp797", "from_user_id": 410519473, "from_user_id_str": "410519473", "from_user_name": "Opal Dye", "geo": null, "id": 148729042294677500, "id_str": "148729042294677504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1669046452/818378867Ivana_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669046452/818378867Ivana_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I'm a funny girl! has u can see i can take a good laff! i love hugs!!! Also i play the guitar and dinosaurs rule the world!!!! RAWR ( ;", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:36:09 +0000", "from_user": "KylahONeal", "from_user_id": 41703104, "from_user_id_str": "41703104", "from_user_name": "Kylah O'Neal", "geo": null, "id": 148728320295575550, "id_str": "148728320295575552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1667246293/72J9SjwW_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667246293/72J9SjwW_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:35:30 +0000", "from_user": "diaaanaaasaur", "from_user_id": 273894209, "from_user_id_str": "273894209", "from_user_name": "Diana ", "geo": null, "id": 148728156138897400, "id_str": "148728156138897409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1632466761/11-11-fsdgf_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632466761/11-11-fsdgf_normal.gif", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@joiepoppy woots. inspired from my love of dinosaurs.", "to_user": "joiepoppy", "to_user_id": 288106093, "to_user_id_str": "288106093", "to_user_name": "WanLing Soh", "in_reply_to_status_id": 148677021864697860, "in_reply_to_status_id_str": "148677021864697856"}, +{"created_at": "Mon, 19 Dec 2011 11:33:19 +0000", "from_user": "Kiaraichu", "from_user_id": 290897725, "from_user_id_str": "290897725", "from_user_name": "~*~kawaii queen~*~", "geo": null, "id": 148727609361043460, "id_str": "148727609361043456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699837473/Photo_on_2011-12-15_at_15.48_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699837473/Photo_on_2011-12-15_at_15.48_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@JordanTheW0lf my favorite animals are dogs... Do dinosaurs count...?", "to_user": "JordanTheW0lf", "to_user_id": 345752449, "to_user_id_str": "345752449", "to_user_name": "Jordan", "in_reply_to_status_id": 148727138760138750, "in_reply_to_status_id_str": "148727138760138752"}, +{"created_at": "Mon, 19 Dec 2011 11:30:45 +0000", "from_user": "Berrii86", "from_user_id": 275025050, "from_user_id_str": "275025050", "from_user_name": "Abrar Al-D", "geo": null, "id": 148726961768898560, "id_str": "148726961768898561", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700813717/IMG-20111111-02863_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700813717/IMG-20111111-02863_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Fi 5aleeji ba3 '9aab 3ala amreeki eb 4 million dollars gayela hatha noo3 men anwa3 el dinosaurs eli nqarthaw =)) #9aydaa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:30:44 +0000", "from_user": "Madelioo", "from_user_id": 170899555, "from_user_id_str": "170899555", "from_user_name": "Cardel", "geo": null, "id": 148726959139065860, "id_str": "148726959139065856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1598615267/IMG_60099999953_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598615267/IMG_60099999953_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:27:36 +0000", "from_user": "jayk21", "from_user_id": 54913160, "from_user_id_str": "54913160", "from_user_name": "Jake Huneau", "geo": null, "id": 148726166897967100, "id_str": "148726166897967104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1320650134/16455_1071185718889_1803528090_148994_6208689_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1320650134/16455_1071185718889_1803528090_148994_6208689_n_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Dinosaurs scare the shit out of me #theyrarefuckinghuge. #humansallwoulddie", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:27:06 +0000", "from_user": "ScienceEnabled", "from_user_id": 387514741, "from_user_id_str": "387514741", "from_user_name": "Science Enabled", "geo": null, "id": 148726044130689020, "id_str": "148726044130689025", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1579522693/scienceenabled-star_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1579522693/scienceenabled-star_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "The Second International Workshop on the Biology of Sauropod Dinosaurs (part I) http://t.co/1LPNOmIN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:26:53 +0000", "from_user": "Echo_Issa", "from_user_id": 86917841, "from_user_id_str": "86917841", "from_user_name": "Melissa", "geo": null, "id": 148725989185294340, "id_str": "148725989185294336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1533398817/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1533398817/image_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "Wholly monocle! Sophisticated alco drinking dinosaurs in formal clothes flying fighter jets #DinoYatchClub @TotallySketch @SteveGreeneCOM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:26:00 +0000", "from_user": "yoahlee17", "from_user_id": 304199331, "from_user_id_str": "304199331", "from_user_name": "Yoaly ", "geo": null, "id": 148725766400647170, "id_str": "148725766400647168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1672628667/2011-09-23-69411_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672628667/2011-09-23-69411_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @CanPOREOTICS: I uploaded a @YouTube video http://t.co/qNhkJztX Totally Enormous Extinct Dinosaurs - Dream On", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:24:41 +0000", "from_user": "TOMBREAKS", "from_user_id": 17895114, "from_user_id_str": "17895114", "from_user_name": "Tom Kirkby", "geo": null, "id": 148725434325020670, "id_str": "148725434325020673", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1694770073/lacoste-3982_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694770073/lacoste-3982_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@harrybenson I love this shit, dinosaurs are amazing", "to_user": "harrybenson", "to_user_id": 19733201, "to_user_id_str": "19733201", "to_user_name": "Picture House", "in_reply_to_status_id": 148725269404979200, "in_reply_to_status_id_str": "148725269404979200"}, +{"created_at": "Mon, 19 Dec 2011 11:24:12 +0000", "from_user": "Gabriella012563", "from_user_id": 425050884, "from_user_id_str": "425050884", "from_user_name": "Gabriella", "geo": null, "id": 148725311289298940, "id_str": "148725311289298944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1665989013/p18_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665989013/p18_normal.jpeg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dinosaurs: The Encyclopedia (Dinosaurs the Encyclopedia): For the layperson and the paleontologist, this is the ... http://t.co/N8AgB10I", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:23:49 +0000", "from_user": "Tiffany_Kulp", "from_user_id": 234256058, "from_user_id_str": "234256058", "from_user_name": "Tiffany Kulp", "geo": null, "id": 148725215181017100, "id_str": "148725215181017089", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1211702442/tiffanykulpnewFACE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1211702442/tiffanykulpnewFACE_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Second International Workshop on the Biology of Sauropod Dinosaurs (part I): There are some other ideas that are not exactly univ...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:23:27 +0000", "from_user": "TOMBREAKS", "from_user_id": 17895114, "from_user_id_str": "17895114", "from_user_name": "Tom Kirkby", "geo": null, "id": 148725125607460860, "id_str": "148725125607460865", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1694770073/lacoste-3982_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694770073/lacoste-3982_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "Hanging out with some dinosaurs at the natural history museum @ Natural History Museum http://t.co/vp0HwK0e", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:22:44 +0000", "from_user": "BanTshirts", "from_user_id": 16946047, "from_user_id_str": "16946047", "from_user_name": "Ban T-shirts", "geo": null, "id": 148724944795217920, "id_str": "148724944795217920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1368294727/twitter-portrait_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1368294727/twitter-portrait_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "Anti-creationism T-shirt http://t.co/JI3jwUil", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:22:21 +0000", "from_user": "drgeorgemorley", "from_user_id": 216661315, "from_user_id_str": "216661315", "from_user_name": "George Morley", "geo": null, "id": 148724848359776260, "id_str": "148724848359776256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1509555719/IMG00072-20110720-1100_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509555719/IMG00072-20110720-1100_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @oschaplaincy: @SallyHitchiner i was thinking about this... dinosaurs and aliens in Nativity scenes speaks of incarnation reaching through time + space!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:21:44 +0000", "from_user": "Alexa2366", "from_user_id": 364357114, "from_user_id_str": "364357114", "from_user_name": "AlexandraGreen", "geo": null, "id": 148724692163887100, "id_str": "148724692163887104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664365786/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664365786/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "A LITTLE KNOWN FACT: @HarryMandichz CAUSED THE EXTINCTION OF DINOSAURS. ONE #MANLY SHOUT AND THE REST IS HISTORY.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:20:51 +0000", "from_user": "rozakthegoon", "from_user_id": 16145156, "from_user_id_str": "16145156", "from_user_name": "oliver armstrong", "geo": null, "id": 148724469215662080, "id_str": "148724469215662080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1363039761/pic_for_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1363039761/pic_for_twitter_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @oschaplaincy: @SallyHitchiner i was thinking about this... dinosaurs and aliens in Nativity scenes speaks of incarnation reaching through time + space!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:18:54 +0000", "from_user": "Aimi1997", "from_user_id": 115663828, "from_user_id_str": "115663828", "from_user_name": "Nur aimi", "geo": null, "id": 148723978029121540, "id_str": "148723978029121536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1689102310/bunny_wallpaper_1280x1024_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689102310/bunny_wallpaper_1280x1024_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @CanPOREOTICS: I uploaded a @YouTube video http://t.co/qNhkJztX Totally Enormous Extinct Dinosaurs - Dream On", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:18:28 +0000", "from_user": "poreochics", "from_user_id": 257743896, "from_user_id_str": "257743896", "from_user_name": "Leah Zhang", "geo": null, "id": 148723870604595200, "id_str": "148723870604595200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695414391/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695414391/image_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @CanPOREOTICS: I uploaded a @YouTube video http://t.co/qNhkJztX Totally Enormous Extinct Dinosaurs - Dream On", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:17:58 +0000", "from_user": "StephWooWoo", "from_user_id": 140428087, "from_user_id_str": "140428087", "from_user_name": "Mrs S WooWoo", "geo": null, "id": 148723743328444400, "id_str": "148723743328444417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1615255495/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615255495/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Arranging a day at natural history museum as Jude's obsession with dinosaurs is mad!! George from peppa pig! #dinosaur rrraah", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:17:53 +0000", "from_user": "Jenny_Dilts", "from_user_id": 235752318, "from_user_id_str": "235752318", "from_user_name": "Jenny Dilts", "geo": null, "id": 148723723799773200, "id_str": "148723723799773184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1210520514/amber_morrison_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1210520514/amber_morrison_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Second International Workshop on the Biology of Sauropod Dinosaurs (part I): There are some other ideas that are not exactly univ...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:17:36 +0000", "from_user": "joannemottram", "from_user_id": 44009699, "from_user_id_str": "44009699", "from_user_name": "Joanne Mottram \\u2654", "geo": null, "id": 148723652312047600, "id_str": "148723652312047616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1599507574/264656_10150299583746418_507196417_9416766_1070904_n_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599507574/264656_10150299583746418_507196417_9416766_1070904_n_1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"Anyway, Mary's made me dinosaurs, smiley faces and waffles so, INABIT\" haha love the new blog Jee #NiceSwan @JesusChristFTM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:17:26 +0000", "from_user": "SallyHitchiner", "from_user_id": 63672414, "from_user_id_str": "63672414", "from_user_name": "Sally Hitchiner", "geo": null, "id": 148723608833896450, "id_str": "148723608833896448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1279689389/c217b704487b427ab19ed1823201b959_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1279689389/c217b704487b427ab19ed1823201b959_7_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @oschaplaincy: @SallyHitchiner i was thinking about this... dinosaurs and aliens in Nativity scenes speaks of incarnation reaching through time + space!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:17:21 +0000", "from_user": "CDRead", "from_user_id": 87540877, "from_user_id_str": "87540877", "from_user_name": "Catherine Read", "geo": null, "id": 148723590748049400, "id_str": "148723590748049408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1222916225/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1222916225/me_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@jenny_meggs @gomez_josea probably because you were too concerned with the dinosaurs having hay fever Jen!", "to_user": "jenny_meggs", "to_user_id": 245141020, "to_user_id_str": "245141020", "to_user_name": "Jenny Megan Read", "in_reply_to_status_id": 148699830032674800, "in_reply_to_status_id_str": "148699830032674817"}, +{"created_at": "Mon, 19 Dec 2011 11:17:13 +0000", "from_user": "TicTicReunion", "from_user_id": 370144802, "from_user_id_str": "370144802", "from_user_name": "Mrs. Devera \\u2665", "geo": null, "id": 148723556337987600, "id_str": "148723556337987584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683036630/2011-09-17-194508_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683036630/2011-09-17-194508_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @CanPOREOTICS: I uploaded a @YouTube video http://t.co/qNhkJztX Totally Enormous Extinct Dinosaurs - Dream On", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:17:10 +0000", "from_user": "helvindot", "from_user_id": 352777586, "from_user_id_str": "352777586", "from_user_name": "Helvin Toy Reviews", "geo": null, "id": 148723544514240500, "id_str": "148723544514240512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1489180290/FireToy_128x128_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1489180290/FireToy_128x128_normal.png", "source": "<a href="http://www.helvin.net" rel="nofollow">Helvin.net</a>", "text": "Prehistoric Dinosaurs Postcard Invitations 8ct Reviews http://t.co/bJxg2Lvp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:16:57 +0000", "from_user": "CanPOREOTICS", "from_user_id": 159219605, "from_user_id_str": "159219605", "from_user_name": "Can Trong Nguyen", "geo": null, "id": 148723486918049800, "id_str": "148723486918049792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1453113433/Photo_on_2011-07-20_at_16.35_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1453113433/Photo_on_2011-07-20_at_16.35_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I uploaded a @YouTube video http://t.co/qNhkJztX Totally Enormous Extinct Dinosaurs - Dream On", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:15:46 +0000", "from_user": "lucyjanemoore", "from_user_id": 27542764, "from_user_id_str": "27542764", "from_user_name": "Lucy", "geo": null, "id": 148723188929540100, "id_str": "148723188929540096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1225328575/me_glasses_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225328575/me_glasses_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Anxious mother has just been on to say that she's forgotten to order a bird. Turkey dinosaurs for lunch then. #xmas", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:13:57 +0000", "from_user": "conneelysharon", "from_user_id": 220652950, "from_user_id_str": "220652950", "from_user_name": "sharon conneely", "geo": null, "id": 148722733289705470, "id_str": "148722733289705472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686089221/062_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686089221/062_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Watching Harry and his bucket full of dinosaurs.That, and Toy Story,are making me seriously suspicious about my toys.I May hide a camera. .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:13:31 +0000", "from_user": "anthonybrommhea", "from_user_id": 415098008, "from_user_id_str": "415098008", "from_user_name": "anthony brommhead", "geo": null, "id": 148722624460095500, "id_str": "148722624460095488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1665898631/Hydrangeas_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665898631/Hydrangeas_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:13:05 +0000", "from_user": "Phyllisydb", "from_user_id": 431755441, "from_user_id_str": "431755441", "from_user_name": "Phyllis Auge", "geo": null, "id": 148722515282374660, "id_str": "148722515282374656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681147996/hsff5345it_134150760-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681147996/hsff5345it_134150760-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Magic Grow Dinosaurs: Magic Grow Dinosaurs Grows 400% 1 each of Tyrannasaurus, Brontosaurus, Dimetrodon, Triceratops http://t.co/LBDocJkp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:12:41 +0000", "from_user": "TheOneZn", "from_user_id": 432749315, "from_user_id_str": "432749315", "from_user_name": "shaylen johnson ", "geo": null, "id": 148722415680229380, "id_str": "148722415680229376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702338768/m33_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702338768/m33_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Kiss me if I'm wrong but dinosaurs still exist right????#LOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:10:46 +0000", "from_user": "oschaplaincy", "from_user_id": 305079714, "from_user_id_str": "305079714", "from_user_name": "Jonathan Green", "geo": null, "id": 148721931326193660, "id_str": "148721931326193664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1376030496/bluefish_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1376030496/bluefish_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@SallyHitchiner i was thinking about this... dinosaurs and aliens in Nativity scenes speaks of incarnation reaching through time + space!", "to_user": "SallyHitchiner", "to_user_id": 63672414, "to_user_id_str": "63672414", "to_user_name": "Sally Hitchiner"}, +{"created_at": "Mon, 19 Dec 2011 11:10:05 +0000", "from_user": "WeARENYC", "from_user_id": 305041486, "from_user_id_str": "305041486", "from_user_name": "WE R NYC", "geo": null, "id": 148721759519117300, "id_str": "148721759519117312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1368521381/nyc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1368521381/nyc_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Hall of Ornithischian Dinosaurs The Hall of Ornithischian Dinosaurs examines the branches of dinosaurs that possess a backward pointing p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:10:00 +0000", "from_user": "SalsaChoicer", "from_user_id": 121968669, "from_user_id_str": "121968669", "from_user_name": "Salsa Choicer", "geo": null, "id": 148721739214487550, "id_str": "148721739214487552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://google.com" rel="nofollow">SalsaChoicer</a>", "text": "did you know? dinosaurs play with legos recursively", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:09:08 +0000", "from_user": "lainierenee_97", "from_user_id": 308685172, "from_user_id_str": "308685172", "from_user_name": "Lainie(:", "geo": null, "id": 148721522838736900, "id_str": "148721522838736896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694042058/i2F9vD5E_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694042058/i2F9vD5E_normal", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#iwasthatkid that never played with barbie dolls, i played with dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:08:56 +0000", "from_user": "EmileeAdubb", "from_user_id": 369185595, "from_user_id_str": "369185595", "from_user_name": "Just Emilee[:", "geo": null, "id": 148721472372867070, "id_str": "148721472372867072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696199593/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696199593/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@SrishAllStar terra nova is so AMAZAYN! And so was/is Jurassic park <3 even though I'm terrified of dinosaurs...", "to_user": "SrishAllStar", "to_user_id": 58160023, "to_user_id_str": "58160023", "to_user_name": "\\u0455\\u044F\\u03B9\\u0455\\u043D\\u0442\\u03B9 \\u043A\\u043D\\u03B9\\u03B7\\u2202\\u03B1\\u044F\\u03B9\\u03B1 =)", "in_reply_to_status_id": 148720511101313020, "in_reply_to_status_id_str": "148720511101313026"}, +{"created_at": "Mon, 19 Dec 2011 11:08:43 +0000", "from_user": "melomelz", "from_user_id": 49638993, "from_user_id_str": "49638993", "from_user_name": "Melodyyyyyyy", "geo": null, "id": 148721418564145150, "id_str": "148721418564145152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1667074058/Photo_on_2011-11-30_at_19.23__3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667074058/Photo_on_2011-11-30_at_19.23__3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "As Told by Ginger.Hercules.Dinosaurs.Recess.CatDog.All That.Hey Arnold.Amanda Show.Kenan and Kel.Rugrats.Rocket Power.Fresh Prince.#90sShows", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:08:21 +0000", "from_user": "killerartists", "from_user_id": 19109432, "from_user_id_str": "19109432", "from_user_name": "Killer", "geo": null, "id": 148721324062281730, "id_str": "148721324062281729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/71599678/killer_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/71599678/killer_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ESNSnl: Due to studio commitments Totally Enormous Extinct Dinosaurs cancelled their showcase at #ESNS12, but @ClockOpera is added to the bill!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:07:15 +0000", "from_user": "linesacrossmaps", "from_user_id": 150239972, "from_user_id_str": "150239972", "from_user_name": "lines across maps", "geo": null, "id": 148721048018358270, "id_str": "148721048018358272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1189682125/twitter_ipc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1189682125/twitter_ipc_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube video http://t.co/JPnXn5Oc Dinosaurs by Colour Drum Cover by Karinadrums", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:06:24 +0000", "from_user": "Genkizombie", "from_user_id": 158232676, "from_user_id_str": "158232676", "from_user_name": "Airabanana", "geo": null, "id": 148720834196934660, "id_str": "148720834196934656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1012952848/gg_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1012952848/gg_normal.png", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/33pNp9xF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:06:15 +0000", "from_user": "justbiglee", "from_user_id": 19438147, "from_user_id_str": "19438147", "from_user_name": "Lee Williams", "geo": null, "id": 148720795726782460, "id_str": "148720795726782464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1637042891/cpt-price_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637042891/cpt-price_normal", "source": "<a href="http://www.WindowsPhone.com/" rel="nofollow">WindowsLive</a>", "text": "@weefz its the promise of bad cgi dinosaurs that keep me going I think.", "to_user": "weefz", "to_user_id": 8358972, "to_user_id_str": "8358972", "to_user_name": "Debbie Timmins", "in_reply_to_status_id": 148547367296188400, "in_reply_to_status_id_str": "148547367296188416"}, +{"created_at": "Mon, 19 Dec 2011 11:05:34 +0000", "from_user": "_nymph0", "from_user_id": 35443169, "from_user_id_str": "35443169", "from_user_name": "Carlton Banks", "geo": null, "id": 148720625358344200, "id_str": "148720625358344193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1685278093/IMG-20111210-00728_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685278093/IMG-20111210-00728_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "the crazy squirrel thing in ice age 3 that lives with the dinosaurs aw crazy littler fuuuuucker", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:05:07 +0000", "from_user": "keitheadams", "from_user_id": 193252755, "from_user_id_str": "193252755", "from_user_name": "Keith Adams", "geo": null, "id": 148720511248117760, "id_str": "148720511248117761", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1632321467/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632321467/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Dinosaurs science or science fiction. There are some idiots out there. You couldn't make this up but they did! http://t.co/wXd8w1mN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:04:42 +0000", "from_user": "mr_clark", "from_user_id": 22554938, "from_user_id_str": "22554938", "from_user_name": "Matthew Clark", "geo": null, "id": 148720406679912450, "id_str": "148720406679912448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1242543554/6734_244857120493_731925493_8404315_7696615_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1242543554/6734_244857120493_731925493_8404315_7696615_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @BBCPolarBears: Of course, ironically, Dickie Attenborough's film \"The Jurassic Park\" featured footage of real dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:04:29 +0000", "from_user": "Strnks", "from_user_id": 81227663, "from_user_id_str": "81227663", "from_user_name": "Gareth Stranks", "geo": null, "id": 148720351843590140, "id_str": "148720351843590144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1586243900/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586243900/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @BBCPolarBears: Of course, ironically, Dickie Attenborough's film \"The Jurassic Park\" featured footage of real dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:03:53 +0000", "from_user": "Marawvo", "from_user_id": 431717088, "from_user_id_str": "431717088", "from_user_name": "Mara Whitesell", "geo": null, "id": 148720201452634100, "id_str": "148720201452634112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681065978/0kwccgyhfv_133481041-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681065978/0kwccgyhfv_133481041-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dinosaur Magic Capsules: Have some super size fun with magic caps and fun capsules! This pack of Dinosaurs Magic... http://t.co/IdMNng3I", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:03:15 +0000", "from_user": "mycatisahipster", "from_user_id": 173971562, "from_user_id_str": "173971562", "from_user_name": "\\u03AC\\u03C0\\u03B5\\u03B9\\u03C1\\u03BF\\u03BF\\u03BF", "geo": null, "id": 148720040735289340, "id_str": "148720040735289344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1352197805/IMGP0270_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1352197805/IMGP0270_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:02:50 +0000", "from_user": "prudiepie", "from_user_id": 100453553, "from_user_id_str": "100453553", "from_user_name": "Pru :)", "geo": null, "id": 148719936309706750, "id_str": "148719936309706752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1592426499/Screen_Shot_2011-10-17_at_7.54.35_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592426499/Screen_Shot_2011-10-17_at_7.54.35_PM_normal.png", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/irH7VKws", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:02:25 +0000", "from_user": "Leila_5_97", "from_user_id": 432614634, "from_user_id_str": "432614634", "from_user_name": "Leila Christensen", "geo": null, "id": 148719832311934980, "id_str": "148719832311934976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688383748/DSCF2177_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688383748/DSCF2177_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:02:10 +0000", "from_user": "nabellion_", "from_user_id": 129441109, "from_user_id_str": "129441109", "from_user_name": "Verified 2PMHOTTEST", "geo": null, "id": 148719767556075520, "id_str": "148719767556075520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689052412/nabellion__1975727114562838569_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689052412/nabellion__1975727114562838569_normal.jpg", "source": "<a href="http://www.writelonger.com" rel="nofollow">Write Longer</a>", "text": "RT @Blackalogy: Kiss me if I'm wrong... But dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:01:40 +0000", "from_user": "realrantercom", "from_user_id": 40745779, "from_user_id_str": "40745779", "from_user_name": "Realranter.com", "geo": null, "id": 148719642561626100, "id_str": "148719642561626112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/980873294/ranter_favicon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/980873294/ranter_favicon_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Union Dinosaurs Completely Out Of Touch - (Conservatives) - http://t.co/XMUgeazc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:00:16 +0000", "from_user": "Jess_R_Lee", "from_user_id": 324328476, "from_user_id_str": "324328476", "from_user_name": "I'm a little teapot ", "geo": null, "id": 148719289090834430, "id_str": "148719289090834432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699946964/4U9g56OT_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699946964/4U9g56OT_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:59:05 +0000", "from_user": "maniatoys", "from_user_id": 434918712, "from_user_id_str": "434918712", "from_user_name": "maniatoys", "geo": null, "id": 148718991978938370, "id_str": "148718991978938370", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688963697/maniatoys_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688963697/maniatoys_normal.png", "source": "<a href="http://maniatoys.com" rel="nofollow">maniatoys</a>", "text": "Melissa & Doug Dinosaurs Extra Large Floor Puzzle http://t.co/NOBoZs2b", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:54:00 +0000", "from_user": "srimonami", "from_user_id": 105395233, "from_user_id_str": "105395233", "from_user_name": "Srinivasan V", "geo": null, "id": 148717715035652100, "id_str": "148717715035652098", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1410961148/Srini_22June2011_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1410961148/Srini_22June2011_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "For the dinosaurs, it was meteorites; For us it would be Religion #Extinction", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:53:18 +0000", "from_user": "asian_angel", "from_user_id": 17359038, "from_user_id_str": "17359038", "from_user_name": "Asian Angel (Akemi)", "geo": null, "id": 148717537641766900, "id_str": "148717537641766912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1610349223/winking-anime-girl-at-the-beach-icon-_421__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610349223/winking-anime-girl-at-the-beach-icon-_421__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Doctor_P21 Hey, no need to insult dinosaurs themselves by associating them with IE6 ha ha. :P", "to_user": "Doctor_P21", "to_user_id": 271132955, "to_user_id_str": "271132955", "to_user_name": "Kevin P", "in_reply_to_status_id": 148698170094915600, "in_reply_to_status_id_str": "148698170094915585"}, +{"created_at": "Mon, 19 Dec 2011 10:51:33 +0000", "from_user": "Jegasaurus", "from_user_id": 282703861, "from_user_id_str": "282703861", "from_user_name": "Jess Gregory", "geo": null, "id": 148717097281794050, "id_str": "148717097281794049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1606506894/Cherwell-20110831-00104_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606506894/Cherwell-20110831-00104_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:50:59 +0000", "from_user": "Mr_Sambo", "from_user_id": 57389339, "from_user_id_str": "57389339", "from_user_name": "Nsovo Sambo", "geo": null, "id": 148716952356003840, "id_str": "148716952356003841", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1595994739/Image0394_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1595994739/Image0394_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "eh, Swlo yin kam @IAmMulo \"Fuck me if i'm wrong but dinosaurs still\\nexist right?\"", "to_user": "IAmMulo", "to_user_id": 38149585, "to_user_id_str": "38149585", "to_user_name": "Cliff NhlaMulo ", "in_reply_to_status_id": 148714878234931200, "in_reply_to_status_id_str": "148714878234931200"}, +{"created_at": "Mon, 19 Dec 2011 10:50:41 +0000", "from_user": "JabuNdaba", "from_user_id": 234794161, "from_user_id_str": "234794161", "from_user_name": "Jabu Ndaba\\u2122", "geo": null, "id": 148716880373358600, "id_str": "148716880373358592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692557914/331482118_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692557914/331482118_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "O_o RT @Barman2dj: No, bring a Condom and let me fuck you RT @IAmMulo: \"Fuck me if i'm wrong but dinosaurs still exist right?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:50:34 +0000", "from_user": "xtremestace", "from_user_id": 426114376, "from_user_id_str": "426114376", "from_user_name": "dubsteppah", "geo": null, "id": 148716847460659200, "id_str": "148716847460659201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694889487/twitter2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694889487/twitter2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @guywriter: #Trump debate won't happen. Also, the sun is hot, the ocean is wet and dinosaurs are extinct. #Thatsnotnews", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:50:13 +0000", "from_user": "DJ_Sabby", "from_user_id": 43297973, "from_user_id_str": "43297973", "from_user_name": "DJ Sabby", "geo": null, "id": 148716762781847550, "id_str": "148716762781847552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662055218/330546291_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662055218/330546291_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Okay...... TMI RT @Barman2dj: No, bring a Condom and let me fuck you RT @IAmMulo: \"Fuck me if i'm wrong but dinosaurs still exist right?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 10:50:41 +0000", "from_user": "JabuNdaba", "from_user_id": 234794161, "from_user_id_str": "234794161", "from_user_name": "Jabu Ndaba\\u2122", "geo": null, "id": 148716880373358600, "id_str": "148716880373358592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692557914/331482118_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692557914/331482118_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "O_o RT @Barman2dj: No, bring a Condom and let me fuck you RT @IAmMulo: \"Fuck me if i'm wrong but dinosaurs still exist right?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:50:34 +0000", "from_user": "xtremestace", "from_user_id": 426114376, "from_user_id_str": "426114376", "from_user_name": "dubsteppah", "geo": null, "id": 148716847460659200, "id_str": "148716847460659201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694889487/twitter2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694889487/twitter2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @guywriter: #Trump debate won't happen. Also, the sun is hot, the ocean is wet and dinosaurs are extinct. #Thatsnotnews", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:50:13 +0000", "from_user": "DJ_Sabby", "from_user_id": 43297973, "from_user_id_str": "43297973", "from_user_name": "DJ Sabby", "geo": null, "id": 148716762781847550, "id_str": "148716762781847552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662055218/330546291_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662055218/330546291_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Okay...... TMI RT @Barman2dj: No, bring a Condom and let me fuck you RT @IAmMulo: \"Fuck me if i'm wrong but dinosaurs still exist right?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:50:06 +0000", "from_user": "girLike_sophie", "from_user_id": 251606527, "from_user_id_str": "251606527", "from_user_name": "Rusher. :)", "geo": null, "id": 148716731379093500, "id_str": "148716731379093505", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675737108/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675737108/image_normal.jpg", "source": "<a href="http://www.freeappmagic.com/" rel="nofollow">Free App Magic *</a>", "text": "Ich habe gerade Pocket Dinosaurs 2 entdeckt mit Free App Magic auf meinem iPod touch http://t.co/BXgs62Fn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:49:30 +0000", "from_user": "Dani_Farenga", "from_user_id": 371884605, "from_user_id_str": "371884605", "from_user_name": "Daniele Farenga", "geo": +{"coordinates": [45.4481,9.1249], "type": "Point"}, "id": 148716578987458560, "id_str": "148716578987458560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1610404320/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610404320/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I hate when Jesus rides dinosaurs in my house!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:48:33 +0000", "from_user": "TheCityOfRome", "from_user_id": 18200691, "from_user_id_str": "18200691", "from_user_name": "Romeel ", "geo": null, "id": 148716340725825540, "id_str": "148716340725825537", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1651351863/hmmmm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651351863/hmmmm_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/zLqZwbDQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:47:56 +0000", "from_user": "Barman2dj", "from_user_id": 255129940, "from_user_id_str": "255129940", "from_user_name": "BarmaN", "geo": null, "id": 148716185540767740, "id_str": "148716185540767744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1688891458/Bar_2dj_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688891458/Bar_2dj_normal.jpg", "source": "<a href="http://www.writelonger.com" rel="nofollow">Write Longer</a>", "text": "No, bring a Condom and let me fuck you RT @IAmMulo: \"Fuck me if i'm wrong but dinosaurs still exist right?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:47:50 +0000", "from_user": "BananaWitch13", "from_user_id": 429231015, "from_user_id_str": "429231015", "from_user_name": "Elena Simpson", "geo": null, "id": 148716160878264320, "id_str": "148716160878264320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696215659/IMG00219-20111130-1922_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696215659/IMG00219-20111130-1922_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:47:24 +0000", "from_user": "ch_owais", "from_user_id": 207479265, "from_user_id_str": "207479265", "from_user_name": "ch owais", "geo": null, "id": 148716054103863300, "id_str": "148716054103863297", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1674820926/374864_327079640651108_100000472242118_1286516_678118859_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674820926/374864_327079640651108_100000472242118_1286516_678118859_n_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "http://t.co/2JBVgVR7 http://t.co/OjFWMOVx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:47:23 +0000", "from_user": "Bee_Utee", "from_user_id": 279671887, "from_user_id_str": "279671887", "from_user_name": "Bonolo So'Jane", "geo": null, "id": 148716049632735230, "id_str": "148716049632735233", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700552063/0Tweeta_205___normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700552063/0Tweeta_205___normal.jpg", "source": "<a href="http://m.dabr.co.uk" rel="nofollow">Dabr</a>", "text": "RT in the form of crocodiles, lizards, tortoises nd stuff @IAmMulo: \"Fuck me if i'm wrong but dinosaurs still exist right?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:47:20 +0000", "from_user": "maaaarz97", "from_user_id": 344121433, "from_user_id_str": "344121433", "from_user_name": "marrri", "geo": null, "id": 148716034831036400, "id_str": "148716034831036416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1650366031/twmVhJp3_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650366031/twmVhJp3_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:46:33 +0000", "from_user": "TiffyyyandCO", "from_user_id": 86989111, "from_user_id_str": "86989111", "from_user_name": "Tiffany Odom", "geo": null, "id": 148715836851490800, "id_str": "148715836851490816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680498279/391873_10150358118673199_564423198_8431764_648465528_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680498279/391873_10150358118673199_564423198_8431764_648465528_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:46:32 +0000", "from_user": "Jordibro", "from_user_id": 292278401, "from_user_id_str": "292278401", "from_user_name": "Mayhem\\u2605", "geo": null, "id": 148715835823886340, "id_str": "148715835823886336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685206019/x_401fc9f6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685206019/x_401fc9f6_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "i hate it when Jesus rides dinosaurs in my house", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:46:20 +0000", "from_user": "blufire23", "from_user_id": 273500546, "from_user_id_str": "273500546", "from_user_name": "Alice sharp", "geo": null, "id": 148715783512522750, "id_str": "148715783512522752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679485969/me_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679485969/me_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:45:50 +0000", "from_user": "EmmaLangman", "from_user_id": 40985817, "from_user_id_str": "40985817", "from_user_name": "Emma Langman", "geo": null, "id": 148715658253844480, "id_str": "148715658253844481", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1169940219/Face_shot_for_profiles_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1169940219/Face_shot_for_profiles_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@kit2kat Not all schools are failing. Reading has suddenly taken off. Penny dropped abt freedom & choice it gives (esp Ben10 & dinosaurs) :)", "to_user": "kit2kat", "to_user_id": 19181496, "to_user_id_str": "19181496", "to_user_name": "Kate (Baker) King", "in_reply_to_status_id": 148693446536863740, "in_reply_to_status_id_str": "148693446536863745"}, +{"created_at": "Mon, 19 Dec 2011 10:45:41 +0000", "from_user": "Cass_IOM", "from_user_id": 188701130, "from_user_id_str": "188701130", "from_user_name": "Catherine Cassidy", "geo": null, "id": 148715618059829250, "id_str": "148715618059829248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1563758912/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1563758912/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @napickles: New Scientist - male ostriches and other evolutionary ancient birds can only maintain an erection for a few seconds. Probably dinosaurs also", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:45:14 +0000", "from_user": "Arrsome", "from_user_id": 165021413, "from_user_id_str": "165021413", "from_user_name": "Arlette Who", "geo": null, "id": 148715506684280830, "id_str": "148715506684280832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1683512663/Picture_12_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683512663/Picture_12_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:44:52 +0000", "from_user": "ferwen", "from_user_id": 33123688, "from_user_id_str": "33123688", "from_user_name": "fernanda castano", "geo": null, "id": 148715413088378880, "id_str": "148715413088378880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676456807/228101_7991428167_601253167_314838_6559_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676456807/228101_7991428167_601253167_314838_6559_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "The Second International Workshop on the Biology of Sauropod Dinosaurs (part I) RT @SciAm http://t.co/GXDKsE8V", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:44:51 +0000", "from_user": "Lemonka", "from_user_id": 33466126, "from_user_id_str": "33466126", "from_user_name": "Nthibane", "geo": null, "id": 148715411532296200, "id_str": "148715411532296192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701590486/331685744_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701590486/331685744_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Yah just saw 1 right now RT @IAmMulo: \"Fuck me if i'm wrong but dinosaurs still exist right?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:43:49 +0000", "from_user": "AnUsH4C", "from_user_id": 400347474, "from_user_id_str": "400347474", "from_user_name": "Anushka Cloete", "geo": null, "id": 148715149149220860, "id_str": "148715149149220864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702156435/peuf_20111212_61.jpg_normal.rem", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702156435/peuf_20111212_61.jpg_normal.rem", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:43:03 +0000", "from_user": "hotdeals4all", "from_user_id": 77851578, "from_user_id_str": "77851578", "from_user_name": "Hotdeals4all", "geo": null, "id": 148714956374806530, "id_str": "148714956374806528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/454808915/GuaranteeSignRed_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/454808915/GuaranteeSignRed_normal.png", "source": "<a href="http://myarticlemall.com" rel="nofollow">MyArticleMall</a>", "text": "The Creation and Dinosaurs http://t.co/D9FVHvp2 #Science #articles", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:42:44 +0000", "from_user": "IAmMulo", "from_user_id": 38149585, "from_user_id_str": "38149585", "from_user_name": "Cliff NhlaMulo ", "geo": null, "id": 148714878234931200, "id_str": "148714878234931200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1338314733/291666317_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1338314733/291666317_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "\"Fuck me if i'm wrong but dinosaurs still exist right?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:42:31 +0000", "from_user": "i_am_bagel", "from_user_id": 198977953, "from_user_id_str": "198977953", "from_user_name": "Sophy Lena Bage", "geo": null, "id": 148714822685560830, "id_str": "148714822685560832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681558033/Durham-20111015-00240_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681558033/Durham-20111015-00240_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "I havn't had turkey dinosaurs in years :( something to do before new years :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:42:04 +0000", "from_user": "HerbTatts_420", "from_user_id": 430680796, "from_user_id_str": "430680796", "from_user_name": "Fiesty.Lil.Azn", "geo": null, "id": 148714709087043600, "id_str": "148714709087043584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692707653/b09br881_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692707653/b09br881_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:41:57 +0000", "from_user": "mrsbiebzcullen", "from_user_id": 129673742, "from_user_id_str": "129673742", "from_user_name": "Nicole Manzano", "geo": null, "id": 148714678791569400, "id_str": "148714678791569408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698249110/tumblr_lsgkryzfdv1qfr4exo1_500_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698249110/tumblr_lsgkryzfdv1qfr4exo1_500_normal.gif", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @briannalannan: #SometimesIWonder what it would be like to be alive with the dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:41:31 +0000", "from_user": "creamyteen1604", "from_user_id": 240775315, "from_user_id_str": "240775315", "from_user_name": "Idara Nta", "geo": null, "id": 148714571488702460, "id_str": "148714571488702464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684619355/girly_Wallpaper_cfdb1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684619355/girly_Wallpaper_cfdb1_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Kiss me if i'm wrong but dinosaurs still exist right? *wink*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:40:52 +0000", "from_user": "briannalannan", "from_user_id": 116890299, "from_user_id_str": "116890299", "from_user_name": "narnias biiitch", "geo": null, "id": 148714409978630140, "id_str": "148714409978630144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681574749/3dJMdnw9_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681574749/3dJMdnw9_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "#SometimesIWonder what it would be like to be alive with the dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:40:24 +0000", "from_user": "tangledfeet", "from_user_id": 38192801, "from_user_id_str": "38192801", "from_user_name": "Tangled Feet", "geo": null, "id": 148714291036565500, "id_str": "148714291036565504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1376543194/241006_10150182834883026_52084053025_6903504_5562216_o-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1376543194/241006_10150182834883026_52084053025_6903504_5562216_o-1_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "http://t.co/kXsOpmJy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:40:13 +0000", "from_user": "Missi_Ellie", "from_user_id": 415768793, "from_user_id_str": "415768793", "from_user_name": "Ellie Forrester", "geo": null, "id": 148714246459494400, "id_str": "148714246459494400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1645747965/file5686t4826372866628352_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645747965/file5686t4826372866628352_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:40:08 +0000", "from_user": "dinasaur93", "from_user_id": 406591351, "from_user_id_str": "406591351", "from_user_name": "Dina Gayanova", "geo": null, "id": 148714225345380350, "id_str": "148714225345380352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1626183754/profile_picture__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626183754/profile_picture__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:40:00 +0000", "from_user": "SalsaChoicer", "from_user_id": 121968669, "from_user_id_str": "121968669", "from_user_name": "Salsa Choicer", "geo": null, "id": 148714190608154620, "id_str": "148714190608154624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://google.com" rel="nofollow">SalsaChoicer</a>", "text": "did you know? dinosaurs play with squirels in the morning", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:39:02 +0000", "from_user": "yesteryearkidx", "from_user_id": 325879506, "from_user_id_str": "325879506", "from_user_name": "Hannah Ashlee Gill", "geo": null, "id": 148713948684877820, "id_str": "148713948684877824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1658468370/IMG_3572_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658468370/IMG_3572_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:38:42 +0000", "from_user": "_LovelyRocio", "from_user_id": 231237924, "from_user_id_str": "231237924", "from_user_name": "Rocio Hernandez", "geo": null, "id": 148713863485980670, "id_str": "148713863485980672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1659492406/319517_232738103444339_100001244547186_699370_1187628016_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659492406/319517_232738103444339_100001244547186_699370_1187628016_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:37:54 +0000", "from_user": "Tzar_Ivan", "from_user_id": 203952185, "from_user_id_str": "203952185", "from_user_name": "Ivan Limanjaya", "geo": null, "id": 148713659835744260, "id_str": "148713659835744257", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1572455305/IMG_0489_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572455305/IMG_0489_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @AdmireMyQuote: RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:37:48 +0000", "from_user": "TetZoo", "from_user_id": 303804147, "from_user_id_str": "303804147", "from_user_name": "Darren Naish", "geo": null, "id": 148713637706608640, "id_str": "148713637706608640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1365796113/Naish-quetz-humerus-150-px_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1365796113/Naish-quetz-humerus-150-px_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Pt I of thoughts on German #sauropod biology meeting: http://t.co/35uofNmt Nutrition, diet, fighting, locomotion #dinosaurs #SauroBonn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:37:39 +0000", "from_user": "AubreyNicoleXO", "from_user_id": 289782718, "from_user_id_str": "289782718", "from_user_name": "AubreyNicole Mariano", "geo": null, "id": 148713596799553540, "id_str": "148713596799553537", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688524426/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688524426/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:37:28 +0000", "from_user": "KarenRgz", "from_user_id": 129102546, "from_user_id_str": "129102546", "from_user_name": "Karen Rodriguez", "geo": null, "id": 148713551266189300, "id_str": "148713551266189313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682015112/aaa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682015112/aaa_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:36:31 +0000", "from_user": "sanster08", "from_user_id": 338916390, "from_user_id_str": "338916390", "from_user_name": "Sanisha Muniram\\u2606\\u5F61", "geo": null, "id": 148713311486230530, "id_str": "148713311486230528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1690539010/S5000899_-_Copy_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690539010/S5000899_-_Copy_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:36:28 +0000", "from_user": "dibyajyoti1588", "from_user_id": 121365764, "from_user_id_str": "121365764", "from_user_name": "dibyajyoti das", "geo": null, "id": 148713298890723330, "id_str": "148713298890723328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:36:17 +0000", "from_user": "ItsMeMarlyn_", "from_user_id": 246644757, "from_user_id_str": "246644757", "from_user_name": "marlyn \\u265A", "geo": null, "id": 148713252820488200, "id_str": "148713252820488192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701780203/me___ben_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701780203/me___ben_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "kiss me if im wrong but dinosaurs still exist right? LOL, jkjkjk.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:36:12 +0000", "from_user": "chamilomartt", "from_user_id": 255872778, "from_user_id_str": "255872778", "from_user_name": "Camilo M.", "geo": null, "id": 148713233300201470, "id_str": "148713233300201472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1553225413/FacebookHomescreenImage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553225413/FacebookHomescreenImage_normal.jpg", "source": "<a href="http://www.tweekly.fm/" rel="nofollow">Tweekly.fm</a>", "text": "My Top 3 #lastfm Artists: Amy Winehouse (9), She Wants Revenge (3) & Totally Enormous Extinct Dinosaurs (3) http://t.co/bHMHdgoM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:36:10 +0000", "from_user": "emileh_salt", "from_user_id": 288626400, "from_user_id_str": "288626400", "from_user_name": "Emily Salter", "geo": null, "id": 148713226929061900, "id_str": "148713226929061889", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1546737954/26258914_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546737954/26258914_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:34:39 +0000", "from_user": "hayleyboychuk", "from_user_id": 143690871, "from_user_id_str": "143690871", "from_user_name": "hayley boychuk \\u2714", "geo": null, "id": 148712841829031940, "id_str": "148712841829031936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696536873/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696536873/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:34:13 +0000", "from_user": "PrincesaMary276", "from_user_id": 202854191, "from_user_id_str": "202854191", "from_user_name": "Mairel E.", "geo": null, "id": 148712732701634560, "id_str": "148712732701634560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1153938408/PrincesaMary276_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1153938408/PrincesaMary276_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:33:58 +0000", "from_user": "mitchpne", "from_user_id": 69551359, "from_user_id_str": "69551359", "from_user_name": "Mitch Walmsley.", "geo": null, "id": 148712670252634100, "id_str": "148712670252634113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1614136545/206624_123927441015545_100001948686518_173206_3041143_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1614136545/206624_123927441015545_100001948686518_173206_3041143_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:33:49 +0000", "from_user": "Ayachanx", "from_user_id": 185161337, "from_user_id_str": "185161337", "from_user_name": "Fiona Adolphe", "geo": null, "id": 148712634508779520, "id_str": "148712634508779520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682868734/302321_2287098984278_1453028923_2513951_978781305_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682868734/302321_2287098984278_1453028923_2513951_978781305_n_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/wpSGDOmH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:33:29 +0000", "from_user": "Kisha_Luv", "from_user_id": 382500579, "from_user_id_str": "382500579", "from_user_name": "Jenny Luv", "geo": null, "id": 148712549469274100, "id_str": "148712549469274112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1650345855/Bildschirmfoto_2011-11-21_um_15.54.03_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650345855/Bildschirmfoto_2011-11-21_um_15.54.03_normal.png", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:33:23 +0000", "from_user": "DoctorWhoToyz", "from_user_id": 362657515, "from_user_id_str": "362657515", "from_user_name": "Doctor Who Collector", "geo": null, "id": 148712522797686800, "id_str": "148712522797686785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1514774915/twatter_2_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1514774915/twatter_2_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "DVD: UNIT Files. Contains episodes Invasion of the Dinosaurs and The Android Invasion. RRP: \\u00A3TBA. Released 2nd January 2012.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:32:55 +0000", "from_user": "givernygrace", "from_user_id": 258893193, "from_user_id_str": "258893193", "from_user_name": "GivernyD'Auriol", "geo": null, "id": 148712406179250180, "id_str": "148712406179250176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1622870701/IMG-20110803-00510_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622870701/IMG-20110803-00510_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Kiss me if i'm wrong, but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:32:40 +0000", "from_user": "SarahRyan_", "from_user_id": 47481152, "from_user_id_str": "47481152", "from_user_name": "Sarah Ryan", "geo": null, "id": 148712342295805950, "id_str": "148712342295805952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1612580350/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612580350/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@ollyofficial : Kiss me if i'm wrong but dinosaurs still exist right?\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:32:25 +0000", "from_user": "Aloysius_Ho", "from_user_id": 283497909, "from_user_id_str": "283497909", "from_user_name": "\\u13AF\\u03B9\\u0398\\u03D3\\u0218\\u03AF\\u01B2\\u0218 \\u0127\\u0398", "geo": null, "id": 148712282199818240, "id_str": "148712282199818240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1594210107/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1594210107/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:32:05 +0000", "from_user": "chrishtinehui", "from_user_id": 72204788, "from_user_id_str": "72204788", "from_user_name": "Christine Hui :D", "geo": null, "id": 148712195620999170, "id_str": "148712195620999168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657254018/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657254018/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:31:59 +0000", "from_user": "mariatherese15", "from_user_id": 221328462, "from_user_id_str": "221328462", "from_user_name": "therese montinola", "geo": null, "id": 148712172049022980, "id_str": "148712172049022976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1423119551/248803_1694399609972_1537284392_31296517_158273_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1423119551/248803_1694399609972_1537284392_31296517_158273_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:31:21 +0000", "from_user": "Moreforpets", "from_user_id": 237025113, "from_user_id_str": "237025113", "from_user_name": "More For Pets Ltd", "geo": null, "id": 148712010601865200, "id_str": "148712010601865218", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1638374923/More_For_Pets_Limited_Twitter_Cheap_Pet_Supplies_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638374923/More_For_Pets_Limited_Twitter_Cheap_Pet_Supplies_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Fun plush dinosaurs great detail, fun colours & squeaker you and your dogs will adore! http://t.co/WOq2fiJe just \\u00A34.25 http://t.co/bSJbLDWl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:30:49 +0000", "from_user": "AbithaAnandh", "from_user_id": 38144181, "from_user_id_str": "38144181", "from_user_name": "Abitha Anandh", "geo": null, "id": 148711879026544640, "id_str": "148711879026544640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1336868533/booo_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1336868533/booo_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "Son doesn't believe me when i say Dinosaurs evolved from human beings. Alas! no room for magic...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:30:49 +0000", "from_user": "Salah_MUFC", "from_user_id": 73718608, "from_user_id_str": "73718608", "from_user_name": "SaLah", "geo": null, "id": 148711878682615800, "id_str": "148711878682615808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692726037/IMG00174-20110812-2227_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692726037/IMG00174-20110812-2227_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:30:41 +0000", "from_user": "LannaLoveee", "from_user_id": 39011103, "from_user_id_str": "39011103", "from_user_name": "Alanna Rosee", "geo": null, "id": 148711844830392320, "id_str": "148711844830392320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1578055199/7LooK9mx_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1578055199/7LooK9mx_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:30:33 +0000", "from_user": "Oliverrr__", "from_user_id": 367231545, "from_user_id_str": "367231545", "from_user_name": "Bambi/Shady", "geo": null, "id": 148711809950552060, "id_str": "148711809950552065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1619017942/0_normal.GIF", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619017942/0_normal.GIF", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Kiss me if I'm wrong, but dinosaurs still exist, right..?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:30:32 +0000", "from_user": "yahhneli_mataah", "from_user_id": 419740724, "from_user_id_str": "419740724", "from_user_name": "Yelesey Burciaga", "geo": null, "id": 148711806532190200, "id_str": "148711806532190209", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1663650727/Capture_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663650727/Capture_normal.PNG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Kiss me if i'm wrong but dinosaurs still exist right? C:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:30:15 +0000", "from_user": "xsaaabine", "from_user_id": 44370806, "from_user_id_str": "44370806", "from_user_name": "Sabine ", "geo": null, "id": 148711736378273800, "id_str": "148711736378273793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1669907835/Snapshot_20110207_12_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669907835/Snapshot_20110207_12_normal.JPG", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @natalieabels: "@QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:30:03 +0000", "from_user": "Ftrrzkyml", "from_user_id": 440689887, "from_user_id_str": "440689887", "from_user_name": "Awesome Girl\\u2665", "geo": null, "id": 148711686222778370, "id_str": "148711686222778368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701823673/Ftrrzkyml_742832218844849000_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701823673/Ftrrzkyml_742832218844849000_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:29:55 +0000", "from_user": "ohits_salsa", "from_user_id": 123210457, "from_user_id_str": "123210457", "from_user_name": "Oh it's Salsa ", "geo": null, "id": 148711654329290750, "id_str": "148711654329290752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1646257135/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646257135/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:29:50 +0000", "from_user": "natalieabels", "from_user_id": 425011454, "from_user_id_str": "425011454", "from_user_name": "Natalie Abels", "geo": null, "id": 148711630853767170, "id_str": "148711630853767168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686724765/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686724765/image_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": ""@QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:29:48 +0000", "from_user": "Lady_TMorgan", "from_user_id": 379991448, "from_user_id_str": "379991448", "from_user_name": "Tammy Morgan", "geo": null, "id": 148711623719256060, "id_str": "148711623719256064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1647525282/Tam_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647525282/Tam_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:29:37 +0000", "from_user": "vuisMOi", "from_user_id": 23524452, "from_user_id_str": "23524452", "from_user_name": "Andrew Vuu", "geo": null, "id": 148711576751456260, "id_str": "148711576751456256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1619964008/twitpic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619964008/twitpic_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "The only #dinosaurs I know are the ones mentioned in #JurassicPark #childhoodmemories", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:29:31 +0000", "from_user": "MeidaSubiantoro", "from_user_id": 81556153, "from_user_id_str": "81556153", "from_user_name": "Meida Padma C. S. \\u2655", "geo": null, "id": 148711549870145540, "id_str": "148711549870145536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694403272/331524995_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694403272/331524995_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @AdmireMyQuote: RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:29:27 +0000", "from_user": "liliekeenx", "from_user_id": 187970510, "from_user_id_str": "187970510", "from_user_name": "lilieeee_xxx", "geo": null, "id": 148711533747257340, "id_str": "148711533747257344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693671185/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693671185/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:29:26 +0000", "from_user": "x_MadeForYOU", "from_user_id": 238766436, "from_user_id_str": "238766436", "from_user_name": ", Mookieeee (:", "geo": null, "id": 148711531578798080, "id_str": "148711531578798081", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1675126992/GosmsPhoto1323038095686_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675126992/GosmsPhoto1323038095686_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:28:45 +0000", "from_user": "Seasonowu", "from_user_id": 440188992, "from_user_id_str": "440188992", "from_user_name": "Season Ziska", "geo": null, "id": 148711358718947330, "id_str": "148711358718947328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700522150/rxpt5045su_120594672_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700522150/rxpt5045su_120594672_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Drawing Dinosaurs (Drawing Is Fun): http://t.co/LoGHecAE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:28:40 +0000", "from_user": "nathaniel880", "from_user_id": 31479976, "from_user_id_str": "31479976", "from_user_name": "Nathan Hayward", "geo": null, "id": 148711337235714050, "id_str": "148711337235714049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1658672992/FB_profile_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658672992/FB_profile_pic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:28:25 +0000", "from_user": "1D97luver", "from_user_id": 374178900, "from_user_id_str": "374178900", "from_user_name": "Orlagh Nolan", "geo": null, "id": 148711272748285950, "id_str": "148711272748285953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698013522/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698013522/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:28:24 +0000", "from_user": "SarahRyan_", "from_user_id": 47481152, "from_user_id_str": "47481152", "from_user_name": "Sarah Ryan", "geo": null, "id": 148711271846514700, "id_str": "148711271846514688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1612580350/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612580350/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@Harry_Styles : Kiss me if i'm wrong but dinosaurs still exist right?\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:27:51 +0000", "from_user": "ChinaaRodriguez", "from_user_id": 297967274, "from_user_id_str": "297967274", "from_user_name": "Tania Rodriguez \\u2606", "geo": null, "id": 148711130162933760, "id_str": "148711130162933760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1656640682/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656640682/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:27:48 +0000", "from_user": "ArwaaEmm", "from_user_id": 395466595, "from_user_id_str": "395466595", "from_user_name": "Arwa IsjustPurple", "geo": null, "id": 148711120285347840, "id_str": "148711120285347840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1599816316/Zaros_8D_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599816316/Zaros_8D_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:27:42 +0000", "from_user": "leslie_fey", "from_user_id": 74687711, "from_user_id_str": "74687711", "from_user_name": "kyle leslie celino", "geo": null, "id": 148711093114642430, "id_str": "148711093114642432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1688778242/X8tVCnuo_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688778242/X8tVCnuo_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:27:37 +0000", "from_user": "emilyjowsey8", "from_user_id": 399498471, "from_user_id_str": "399498471", "from_user_name": "Emily Jowsey", "geo": null, "id": 148711073091043330, "id_str": "148711073091043328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686703045/South_20Aurora-20111209-00081_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686703045/South_20Aurora-20111209-00081_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:27:27 +0000", "from_user": "Chiadaa", "from_user_id": 431714667, "from_user_id_str": "431714667", "from_user_name": "Chia Halloran", "geo": null, "id": 148711032364351500, "id_str": "148711032364351488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681061287/gmur3555b2_129653474_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681061287/gmur3555b2_129653474_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "American Museum of Natural History's Book of Dinosaurs and Other Ancient Creatures: A beautiful, informative vol... http://t.co/bkf5Angc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:27:08 +0000", "from_user": "Junkielovebirds", "from_user_id": 82133481, "from_user_id_str": "82133481", "from_user_name": "Slim Shady", "geo": null, "id": 148710950973882370, "id_str": "148710950973882368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687468520/Photo_on_2011-12-12_at_02.11__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687468520/Photo_on_2011-12-12_at_02.11__2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:26:58 +0000", "from_user": "DillysTwittys", "from_user_id": 172638967, "from_user_id_str": "172638967", "from_user_name": "Dyl\\u0394nDoucheB\\u0394g$W\\u2206GG\\u2122", "geo": null, "id": 148710910133932030, "id_str": "148710910133932032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701157848/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701157848/profile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:26:57 +0000", "from_user": "N3loow7", "from_user_id": 371424582, "from_user_id_str": "371424582", "from_user_name": "Arneles", "geo": null, "id": 148710907273424900, "id_str": "148710907273424896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1643047801/Neloooow02_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643047801/Neloooow02_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:26:56 +0000", "from_user": "MelC271989", "from_user_id": 78086717, "from_user_id_str": "78086717", "from_user_name": "Melissa Carrigan", "geo": null, "id": 148710901170704400, "id_str": "148710901170704384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689590865/PhotoChooser-b8614326-8533-4e18-a237-a70132b33e3d_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689590865/PhotoChooser-b8614326-8533-4e18-a237-a70132b33e3d_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:26:51 +0000", "from_user": "Sumerakhanxx", "from_user_id": 234542405, "from_user_id_str": "234542405", "from_user_name": "sumera*NAFEES*khan", "geo": null, "id": 148710880975126530, "id_str": "148710880975126529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699101832/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699101832/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:26:43 +0000", "from_user": "the_best_1rules", "from_user_id": 316748519, "from_user_id_str": "316748519", "from_user_name": "Jasmine *__* smile", "geo": null, "id": 148710846032388100, "id_str": "148710846032388096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685606164/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685606164/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:26:42 +0000", "from_user": "Joeylikewoah", "from_user_id": 170183144, "from_user_id_str": "170183144", "from_user_name": "JOEY CHIA \\u2655", "geo": null, "id": 148710842911834100, "id_str": "148710842911834112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687560444/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687560444/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:26:42 +0000", "from_user": "sabrinaaxbabyyx", "from_user_id": 67925316, "from_user_id_str": "67925316", "from_user_name": "sabrina bates", "geo": null, "id": 148710842152648700, "id_str": "148710842152648705", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1655772132/fhdbsh_001_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655772132/fhdbsh_001_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:26:40 +0000", "from_user": "janinerscn", "from_user_id": 287537953, "from_user_id_str": "287537953", "from_user_name": "Janine Roscano", "geo": null, "id": 148710832908406800, "id_str": "148710832908406784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686820542/IMG_1874_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686820542/IMG_1874_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:26:39 +0000", "from_user": "Finnevangeline", "from_user_id": 300739827, "from_user_id_str": "300739827", "from_user_name": "Finn Evangeline", "geo": null, "id": 148710829523603460, "id_str": "148710829523603456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695878993/Photo_on_2011-12-04_at_03.29__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695878993/Photo_on_2011-12-04_at_03.29__2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:26:33 +0000", "from_user": "KatieAnnaFree", "from_user_id": 289513331, "from_user_id_str": "289513331", "from_user_name": "'Katie-Anna", "geo": null, "id": 148710803506348030, "id_str": "148710803506348032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686775471/_gickr.com__4ce1b9ff-f65e-6594-7955-b4005b00012b_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686775471/_gickr.com__4ce1b9ff-f65e-6594-7955-b4005b00012b_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:26:31 +0000", "from_user": "143OfficialSay", "from_user_id": 354709839, "from_user_id_str": "354709839", "from_user_name": "! ", "geo": null, "id": 148710798175383550, "id_str": "148710798175383552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1667594275/tumblr_lq1dj9Zyla1qib0oxo1_500_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667594275/tumblr_lq1dj9Zyla1qib0oxo1_500_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:26:29 +0000", "from_user": "iLonKa0000", "from_user_id": 275228407, "from_user_id_str": "275228407", "from_user_name": "Ilona Marais", "geo": null, "id": 148710787106603000, "id_str": "148710787106603008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698610841/peuf_20111216_33_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698610841/peuf_20111216_33_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:26:22 +0000", "from_user": "JeyAh05", "from_user_id": 187064035, "from_user_id_str": "187064035", "from_user_name": "Jan Elise Antonio", "geo": null, "id": 148710758933467140, "id_str": "148710758933467137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699875987/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699875987/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:26:18 +0000", "from_user": "rgreyn98", "from_user_id": 289775192, "from_user_id_str": "289775192", "from_user_name": "Rojhel Mae Espeja", "geo": null, "id": 148710742856699900, "id_str": "148710742856699904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1669429836/313048_240429595993580_100000796253573_605046_6852343_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669429836/313048_240429595993580_100000796253573_605046_6852343_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:26:18 +0000", "from_user": "steph_aniieey", "from_user_id": 114853356, "from_user_id_str": "114853356", "from_user_name": "Stephanie Hyacinth \\u2665", "geo": null, "id": 148710740298186750, "id_str": "148710740298186753", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1516613969/IMG-20110807-01114_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1516613969/IMG-20110807-01114_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:26:15 +0000", "from_user": "TheLittleWombat", "from_user_id": 174234764, "from_user_id_str": "174234764", "from_user_name": "Samy.", "geo": null, "id": 148710730504470530, "id_str": "148710730504470528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701846564/LOVE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701846564/LOVE_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:26:09 +0000", "from_user": "alfais4real", "from_user_id": 109341753, "from_user_id_str": "109341753", "from_user_name": "Alfais", "geo": null, "id": 148710704910835700, "id_str": "148710704910835712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670995680/IMG-20111129-01666_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670995680/IMG-20111129-01666_1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:26:07 +0000", "from_user": "JianaJRusher", "from_user_id": 269851321, "from_user_id_str": "269851321", "from_user_name": "Jiana Reyes", "geo": null, "id": 148710696316715000, "id_str": "148710696316715008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1638563878/Best_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638563878/Best_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:26:03 +0000", "from_user": "ReeSykesRaval", "from_user_id": 229492386, "from_user_id_str": "229492386", "from_user_name": "Ree \\u2665", "geo": null, "id": 148710680458039300, "id_str": "148710680458039296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1666134855/Photo0004_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666134855/Photo0004_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:26:03 +0000", "from_user": "immktel", "from_user_id": 99916261, "from_user_id_str": "99916261", "from_user_name": "kristel quinto", "geo": null, "id": 148710680009256960, "id_str": "148710680009256960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662015639/profile_image_1322461311122_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662015639/profile_image_1322461311122_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:26:01 +0000", "from_user": "AishaAlDhaherii", "from_user_id": 358540466, "from_user_id_str": "358540466", "from_user_name": "Aisha Al Dhaheri\\u2661 ", "geo": null, "id": 148710670823718900, "id_str": "148710670823718912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702322997/Photo_on_2011-12-14_at_22.53__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702322997/Photo_on_2011-12-14_at_22.53__2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:25:53 +0000", "from_user": "caterpillarplz", "from_user_id": 402346806, "from_user_id_str": "402346806", "from_user_name": "chloe viiperi x", "geo": null, "id": 148710636455604220, "id_str": "148710636455604225", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702073597/tumblr_lv6h6zDH7V1qllzzco1_500_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702073597/tumblr_lv6h6zDH7V1qllzzco1_500_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 10:25:51 +0000", "from_user": "gurlsnote", "from_user_id": 435778497, "from_user_id_str": "435778497", "from_user_name": "isabella \\u221E", "geo": null, "id": 148710627379130370, "id_str": "148710627379130368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699313208/tumblr_lthugcmm8E1qbcq0uo1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699313208/tumblr_lthugcmm8E1qbcq0uo1_500_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:25:50 +0000", "from_user": "michannelle04", "from_user_id": 260716212, "from_user_id_str": "260716212", "from_user_name": "mich", "geo": null, "id": 148710624711553020, "id_str": "148710624711553024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699930365/untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699930365/untitled_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:25:49 +0000", "from_user": "JellyBeanJess14", "from_user_id": 382093172, "from_user_id_str": "382093172", "from_user_name": "Jessica Chappell", "geo": null, "id": 148710621729394700, "id_str": "148710621729394688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1565683397/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1565683397/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:25:49 +0000", "from_user": "AjeenAlex", "from_user_id": 241073093, "from_user_id_str": "241073093", "from_user_name": "Azreena A. (\\u25D5\\u203F\\u25D5\\u273F)", "geo": null, "id": 148710621301571600, "id_str": "148710621301571584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700537422/336795_321602764525038_100000259509860_1222002_1711650309_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700537422/336795_321602764525038_100000259509860_1222002_1711650309_o_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:25:48 +0000", "from_user": "Checkmatebitchs", "from_user_id": 341509043, "from_user_id_str": "341509043", "from_user_name": "SoraYa. SMOD ;)", "geo": null, "id": 148710614716530700, "id_str": "148710614716530688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1656649850/AfE01-0CQAAIv6g_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656649850/AfE01-0CQAAIv6g_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:25:42 +0000", "from_user": "prescyllakiok", "from_user_id": 412307587, "from_user_id_str": "412307587", "from_user_name": "Prescylla Kiok", "geo": null, "id": 148710593187164160, "id_str": "148710593187164161", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695964349/crop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695964349/crop_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:25:35 +0000", "from_user": "realsameerkhan", "from_user_id": 314707346, "from_user_id_str": "314707346", "from_user_name": "SAMEER KHAN\\u2714Verified", "geo": null, "id": 148710561541128200, "id_str": "148710561541128192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1545209749/299771_268235999866699_100000409048355_973539_1789183030_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545209749/299771_268235999866699_100000409048355_973539_1789183030_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:25:32 +0000", "from_user": "jsheeran_x", "from_user_id": 360632559, "from_user_id_str": "360632559", "from_user_name": "Joanna Sheeran+", "geo": null, "id": 148710549209882620, "id_str": "148710549209882624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689799609/373853_160082377426809_126963587405355_192117_435933381_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689799609/373853_160082377426809_126963587405355_192117_435933381_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:25:28 +0000", "from_user": "1clickten", "from_user_id": 413178444, "from_user_id_str": "413178444", "from_user_name": "1clickten", "geo": null, "id": 148710533892284400, "id_str": "148710533892284416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "eBook of Dinosaurs: Everything you could possibly want to know about dinosaurs are explained in this book in a f... http://t.co/cf6TMLym", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:22:55 +0000", "from_user": "HistoryMeister", "from_user_id": 20555580, "from_user_id_str": "20555580", "from_user_name": "Chris Lascelles", "geo": null, "id": 148709889924005900, "id_str": "148709889924005888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/77164823/Christopher_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/77164823/Christopher_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Dinosaurs around for c. 150 million years. Homo Sapiens c. 200,000 years and first civilisations only c. 6,000 yrs ago. Will we last?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:20:34 +0000", "from_user": "MFrost3", "from_user_id": 404064505, "from_user_id_str": "404064505", "from_user_name": "MFrost", "geo": null, "id": 148709297520517120, "id_str": "148709297520517120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1620316286/P1090503_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620316286/P1090503_normal.JPG", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "#Photo of some #Dinosaurs Fighting Over a Stuffed #Animal\\thttp://t.co/Kxs6YJ15", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:19:30 +0000", "from_user": "Dustpiggies", "from_user_id": 169233086, "from_user_id_str": "169233086", "from_user_name": "Mike Bromage", "geo": null, "id": 148709032276926460, "id_str": "148709032276926464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1083100680/dpavatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1083100680/dpavatar_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@schneberry I believe in dinosaurs too.", "to_user": "schneberry", "to_user_id": 289097558, "to_user_id_str": "289097558", "to_user_name": "Mike Schneberg"}, +{"created_at": "Mon, 19 Dec 2011 10:17:36 +0000", "from_user": "MuZiQmAnIaC", "from_user_id": 26915676, "from_user_id_str": "26915676", "from_user_name": "Alden Kirkland", "geo": null, "id": 148708551978790900, "id_str": "148708551978790912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1643243994/320574_2301573420629_1287990219_32028097_833670116_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643243994/320574_2301573420629_1287990219_32028097_833670116_n_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/a3V2i0BQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:17:31 +0000", "from_user": "chiarabantiling", "from_user_id": 153326820, "from_user_id_str": "153326820", "from_user_name": "chiara bantiling \\u2655", "geo": null, "id": 148708529795117060, "id_str": "148708529795117056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697882117/384740_343644165651329_100000172465653_1586731_1140198987_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697882117/384740_343644165651329_100000172465653_1586731_1140198987_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @Wynonalamata: RT \\u201C@jappyCuaycong35: I want to see real live dinosaurs before I die.\\u201D yesyes.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:17:03 +0000", "from_user": "Natashiarmp", "from_user_id": 431750407, "from_user_id_str": "431750407", "from_user_name": "Natashia Feller", "geo": null, "id": 148708414795685900, "id_str": "148708414795685888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681135718/v3vlto45mr_134237295_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681135718/v3vlto45mr_134237295_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Kid's Craze Dinosaurs: http://t.co/JvwQRGIT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:15:33 +0000", "from_user": "NatuARodriguez", "from_user_id": 150152183, "from_user_id_str": "150152183", "from_user_name": "SomeoneCalledNatalia", "geo": null, "id": 148708035647373300, "id_str": "148708035647373312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1669120527/dibujo_de_mi_bebito_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669120527/dibujo_de_mi_bebito_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/FnHOfysW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:13:27 +0000", "from_user": "ergungundogar", "from_user_id": 184452180, "from_user_id_str": "184452180", "from_user_name": "Erg\\u00FCn G\\u00FCndo\\u011Far", "geo": null, "id": 148707510134648830, "id_str": "148707510134648832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1113234970/Erg_nG_ndo_arYeni6_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1113234970/Erg_nG_ndo_arYeni6_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @gameinformer: Dinosaurs Invade Battlefield 3 DLC (Kind Of) http://t.co/13iAP0Cr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:11:24 +0000", "from_user": "Wynonalamata", "from_user_id": 387040360, "from_user_id_str": "387040360", "from_user_name": "Wynona Lamata", "geo": null, "id": 148706993887117300, "id_str": "148706993887117312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692882661/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692882661/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT \\u201C@jappyCuaycong35: I want to see real live dinosaurs before I die.\\u201D yesyes.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:10:25 +0000", "from_user": "shutupno1cares", "from_user_id": 125272413, "from_user_id_str": "125272413", "from_user_name": "get over yourself", "geo": null, "id": 148706744724500480, "id_str": "148706744724500480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1520383213/runawayhotdog_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1520383213/runawayhotdog_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "i heard dinosaurs were all the rage. final stage *is a t-rex and kills you* insert coins", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:09:01 +0000", "from_user": "ChanelleSanchez", "from_user_id": 314720328, "from_user_id_str": "314720328", "from_user_name": "Ryce Chanelle ", "geo": null, "id": 148706392570728450, "id_str": "148706392570728449", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676953161/392594_304506489580012_100000619890556_999355_1231013169_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676953161/392594_304506489580012_100000619890556_999355_1231013169_n_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/sZmeDb7D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:07:23 +0000", "from_user": "paulinecatalan", "from_user_id": 40200379, "from_user_id_str": "40200379", "from_user_name": "PJC \\u10E6", "geo": null, "id": 148705980128047100, "id_str": "148705980128047104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664054826/Snapshot_20111129_116_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664054826/Snapshot_20111129_116_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jappyCuaycong35: I want to see real live dinosaurs before I die.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:06:03 +0000", "from_user": "Imma_Swifties", "from_user_id": 346440256, "from_user_id_str": "346440256", "from_user_name": "YRahmadina", "geo": null, "id": 148705645338705920, "id_str": "148705645338705920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676931437/ts2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676931437/ts2_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @iSwizzling: Rawr means I love you in dinosaurs language. #realfact", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:05:21 +0000", "from_user": "jappyCuaycong35", "from_user_id": 235567110, "from_user_id_str": "235567110", "from_user_name": "Jappy Cuaycong", "geo": null, "id": 148705471212167170, "id_str": "148705471212167168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1618269099/poker_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618269099/poker_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I want to see real live dinosaurs before I die.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:04:40 +0000", "from_user": "Trulatya", "from_user_id": 431757289, "from_user_id_str": "431757289", "from_user_name": "Trula Pavel", "geo": null, "id": 148705296603291650, "id_str": "148705296603291648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681152741/large_AUERBZOVPMQG_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681152741/large_AUERBZOVPMQG_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Draw 50 Dinosaurs and Other Prehistoric Animals: Step-by-step instructions for drawing fifty different dinosaurs... http://t.co/8z5UvBHA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:04:09 +0000", "from_user": "jehanjehanjehan", "from_user_id": 88879767, "from_user_id_str": "88879767", "from_user_name": "Jehan Maglasang", "geo": null, "id": 148705166458232830, "id_str": "148705166458232832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1625657682/tumblr_lu8zioiywC1qier52o1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1625657682/tumblr_lu8zioiywC1qier52o1_500_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#SometimesIWonder about the things I never had the chance to see. Like dinosaurs and everything.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:04:01 +0000", "from_user": "Reitabnw", "from_user_id": 430067666, "from_user_id_str": "430067666", "from_user_name": "Reita Demetriou", "geo": null, "id": 148705133923012600, "id_str": "148705133923012608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677560532/bc5dmdvshl_129669710-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677560532/bc5dmdvshl_129669710-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Incrediline W-0011-2436 Mad Libs Dinosaurs Mural - Incrediwall - 24 Inches x 36 Inches: Combining the Incredilin... http://t.co/8NU2wqqL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:03:37 +0000", "from_user": "urmumlol", "from_user_id": 440288983, "from_user_id_str": "440288983", "from_user_name": "urmumlol", "geo": null, "id": 148705031829458940, "id_str": "148705031829458944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700771513/samp_yourmom_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700771513/samp_yourmom_normal.gif", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Ur mum is so old she is proof that dinosaurs existed lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:01:19 +0000", "from_user": "piratedemtl", "from_user_id": 13333842, "from_user_id_str": "13333842", "from_user_name": "unfuckwithable", "geo": null, "id": 148704453460103170, "id_str": "148704453460103168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699497833/twitter_icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699497833/twitter_icon_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Real Talk: The grandma from Family Matters or the baby from the show Dinosaurs? Discuss.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:00:25 +0000", "from_user": "gradiate", "from_user_id": 9779082, "from_user_id_str": "9779082", "from_user_name": "gradiate", "geo": null, "id": 148704228246962180, "id_str": "148704228246962178", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1629505160/Twit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629505160/Twit_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@bojkowski There's lot of dinosaurs in business that don't get the modern world.", "to_user": "bojkowski", "to_user_id": 798730, "to_user_id_str": "798730", "to_user_name": "Michael Bojkowski", "in_reply_to_status_id": 148703828676583420, "in_reply_to_status_id_str": "148703828676583424"}, +{"created_at": "Mon, 19 Dec 2011 09:59:32 +0000", "from_user": "StanBayBee", "from_user_id": 94277667, "from_user_id_str": "94277667", "from_user_name": "Stanley baby", "geo": null, "id": 148704007244890100, "id_str": "148704007244890112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1226438977/baobao07_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1226438977/baobao07_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @HelloJasons_: Wah rain until dinosaurs also come out ah! Zzz... Wet toms soon..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:57:52 +0000", "from_user": "CarolDicarlo", "from_user_id": 393962285, "from_user_id_str": "393962285", "from_user_name": "Carol Dicarlo", "geo": null, "id": 148703587281801200, "id_str": "148703587281801216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "In The Beginning There Were Dinosaurs: They're big, they're bad, they sing and dance, they're dinosaurs! Take a ... http://t.co/gT9F1jGc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:57:34 +0000", "from_user": "Angeleaeg", "from_user_id": 431710428, "from_user_id_str": "431710428", "from_user_name": "Angele Deed", "geo": null, "id": 148703511721410560, "id_str": "148703511721410561", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681051330/kz4eat453h_111545399_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681051330/kz4eat453h_111545399_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Ecology and Behaviour of Mesozoic Reptiles: This richly illustrated book clothes the skeletons of dinosaurs and ... http://t.co/R0KP8n7m", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:57:12 +0000", "from_user": "whvholst", "from_user_id": 20069736, "from_user_id_str": "20069736", "from_user_name": "Walter van Holst", "geo": null, "id": 148703416946925570, "id_str": "148703416946925569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/918123796/Nouvelle_vague_bw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/918123796/Nouvelle_vague_bw_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", "text": "@glynmoody I am in favour of dinosaurs going after individuals, let's see how much public support for 'IPR' there really is.", "to_user": "glynmoody", "to_user_id": 18525497, "to_user_id_str": "18525497", "to_user_name": "Glyn Moody", "in_reply_to_status_id": 148701849933975550, "in_reply_to_status_id_str": "148701849933975552"}, +{"created_at": "Mon, 19 Dec 2011 09:56:57 +0000", "from_user": "Hannah_McKenney", "from_user_id": 412488211, "from_user_id_str": "412488211", "from_user_name": "Hannah McKenney", "geo": null, "id": 148703354611171330, "id_str": "148703354611171328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701970639/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701970639/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:56:10 +0000", "from_user": "JacopsLadder", "from_user_id": 390962736, "from_user_id_str": "390962736", "from_user_name": "Jacop's Ladder", "geo": null, "id": 148703160016437250, "id_str": "148703160016437248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1588390213/324234324324698568__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1588390213/324234324324698568__1__normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "16bit - Dinosaurs (Official Video) http://t.co/WEslTUG4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:55:58 +0000", "from_user": "KendallMullins1", "from_user_id": 358650138, "from_user_id_str": "358650138", "from_user_name": "Kendall Mullins", "geo": null, "id": 148703106958495740, "id_str": "148703106958495744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1669119368/298698_10150343115910286_559480285_8645707_151023592_n_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669119368/298698_10150343115910286_559480285_8645707_151023592_n_1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:52:37 +0000", "from_user": "Joankarenina", "from_user_id": 81326586, "from_user_id_str": "81326586", "from_user_name": "Beliebers\\u2661", "geo": null, "id": 148702267091062800, "id_str": "148702267091062785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701904353/meandddddddd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701904353/meandddddddd_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @jessicaMrp: if 2 dinosaurs are in love, so how can they hug each other? :/", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:51:20 +0000", "from_user": "JoannHentonxphp", "from_user_id": 97401827, "from_user_id_str": "97401827", "from_user_name": "Gwyn Montesdeoca", "geo": null, "id": 148701942414184450, "id_str": "148701942414184449", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Scientists aren't sure what color dinosaurs were. Good to know :)#teamfollowback", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:51:18 +0000", "from_user": "iSwizzling", "from_user_id": 363427653, "from_user_id_str": "363427653", "from_user_name": "Miley's lil sister\\u262E", "geo": null, "id": 148701935304839170, "id_str": "148701935304839168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701595239/lmao132023_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701595239/lmao132023_normal.gif", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Rawr means I love you in dinosaurs language. #realfact", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:51:17 +0000", "from_user": "fatinecah", "from_user_id": 440039828, "from_user_id_str": "440039828", "from_user_name": "Fatinecah Alinskie", "geo": null, "id": 148701930770792450, "id_str": "148701930770792449", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701719126/Picture_028_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701719126/Picture_028_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/Dbd1sOk9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:51:12 +0000", "from_user": "_GoAwayJess", "from_user_id": 394204516, "from_user_id_str": "394204516", "from_user_name": "Jess Chetland", "geo": null, "id": 148701908616478720, "id_str": "148701908616478720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694820226/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694820226/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:51:06 +0000", "from_user": "ceicilliadita", "from_user_id": 88309867, "from_user_id_str": "88309867", "from_user_name": "Ceicilli\\u0251 Dit\\u0251\\u2654", "geo": null, "id": 148701883660382200, "id_str": "148701883660382208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698332763/DSC_0670tw_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698332763/DSC_0670tw_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @jessicaMrp: if 2 dinosaurs are in love, so how can they hug each other? :/", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:50:00 +0000", "from_user": "SalsaChoicer", "from_user_id": 121968669, "from_user_id_str": "121968669", "from_user_name": "Salsa Choicer", "geo": null, "id": 148701608157523970, "id_str": "148701608157523969", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://google.com" rel="nofollow">SalsaChoicer</a>", "text": "did you know? dinosaurs jungle with lazers in the morning", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:49:42 +0000", "from_user": "Miiilovesyou", "from_user_id": 146798412, "from_user_id_str": "146798412", "from_user_name": "Mara Gomez De guia", "geo": null, "id": 148701530739060740, "id_str": "148701530739060736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1660401819/Photo4146dsa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660401819/Photo4146dsa_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:47:38 +0000", "from_user": "_SincerelyDanny", "from_user_id": 116987447, "from_user_id_str": "116987447", "from_user_name": "Dannyyy", "geo": null, "id": 148701009751978000, "id_str": "148701009751977984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701948637/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701948637/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:41:47 +0000", "from_user": "hausofjakeh", "from_user_id": 254481576, "from_user_id_str": "254481576", "from_user_name": "jakeh driscoll \\u2020", "geo": null, "id": 148699539463880700, "id_str": "148699539463880704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701173774/386480_2320451815300_1369689744_32135802_1055882538_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701173774/386480_2320451815300_1369689744_32135802_1055882538_n_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/SDUhjcub", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:41:07 +0000", "from_user": "imageswebsites", "from_user_id": 27708398, "from_user_id_str": "27708398", "from_user_name": "Images Websites", "geo": null, "id": 148699371653963780, "id_str": "148699371653963777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/128611599/Honey-Glazed-Donut_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/128611599/Honey-Glazed-Donut_normal.jpg", "source": "<a href="http://www.ajaymatharu.com/" rel="nofollow">Tweet Old Post</a>", "text": "Calgary Zoo Dinosaurs http://t.co/4O1AwuoM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:40:00 +0000", "from_user": "SalsaChoicer", "from_user_id": 121968669, "from_user_id_str": "121968669", "from_user_name": "Salsa Choicer", "geo": null, "id": 148699089847070720, "id_str": "148699089847070720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://google.com" rel="nofollow">SalsaChoicer</a>", "text": "did you know? dinosaurs jungle with lazers recursively", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:38:44 +0000", "from_user": "Chinkerrific", "from_user_id": 160620347, "from_user_id_str": "160620347", "from_user_name": "C r y s t a l \\u2661", "geo": null, "id": 148698772250173440, "id_str": "148698772250173440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1570184096/let_s_flyyyyy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1570184096/let_s_flyyyyy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I love how @DinoKid_Yvette is just soo into drawing dinosaurs (:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:37:28 +0000", "from_user": "posy13", "from_user_id": 255738121, "from_user_id_str": "255738121", "from_user_name": "Carole Preston", "geo": null, "id": 148698454166736900, "id_str": "148698454166736896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1327963954/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1327963954/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "My mum is wondering if dinosaurs ever actually existed! Omg!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:35:39 +0000", "from_user": "mdandybk", "from_user_id": 103180296, "from_user_id_str": "103180296", "from_user_name": "Andy B K", "geo": null, "id": 148697995116941300, "id_str": "148697995116941312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1507552524/profile2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1507552524/profile2_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "I ate... #comics #webcomics #dinosaurs Photo: http://t.co/aljMpLMp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:35:12 +0000", "from_user": "natalee_love", "from_user_id": 230949875, "from_user_id_str": "230949875", "from_user_name": "cold'hearted", "geo": null, "id": 148697881988173820, "id_str": "148697881988173824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697747893/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697747893/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@OhhYeahJaniece I don't even mess with anybody ! ahaha . I haven't kissed or anything with anybody since dinosaurs were alive . ahaha", "to_user": "OhhYeahJaniece", "to_user_id": 152441686, "to_user_id_str": "152441686", "to_user_name": "janiece martin", "in_reply_to_status_id": 148697398779191300, "in_reply_to_status_id_str": "148697398779191296"}, +{"created_at": "Mon, 19 Dec 2011 09:35:10 +0000", "from_user": "worldisalive", "from_user_id": 406916112, "from_user_id_str": "406916112", "from_user_name": "World is Alive", "geo": null, "id": 148697873423417340, "id_str": "148697873423417344", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://worldisalive.com" rel="nofollow">World is Alive</a>", "text": "Glenn L. Wilson Explores Di http://t.co/fd6ANrVu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:35:08 +0000", "from_user": "Menageabro", "from_user_id": 383509112, "from_user_id_str": "383509112", "from_user_name": "Bff Forev", "geo": null, "id": 148697864510517250, "id_str": "148697864510517249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1672738922/Menage_a_claus_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672738922/Menage_a_claus_3_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\"remember when jurassic park came out and it looked so real? ...yeah, it's because they used real dinosaurs!\"\\n\\n-tucker", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:35:08 +0000", "from_user": "jessicaMrp", "from_user_id": 81071961, "from_user_id_str": "81071961", "from_user_name": "Jessica Marpaung", "geo": null, "id": 148697864342736900, "id_str": "148697864342736896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699323461/jessanne_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699323461/jessanne_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "if 2 dinosaurs are in love, so how can they hug each other? :/", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:34:44 +0000", "from_user": "Kayywinn", "from_user_id": 331655901, "from_user_id_str": "331655901", "from_user_name": "The Real Kevin \\u2714", "geo": null, "id": 148697766288293900, "id_str": "148697766288293888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1667760617/900455438_l2.png_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667760617/900455438_l2.png_normal.gif", "source": "<a href="http://stone.com/Twittelator" rel="nofollow">Twittelator</a>", "text": "@Liqintada island with dinosaurs... Lol is that very early part?", "to_user": "Liqintada", "to_user_id": 49610490, "to_user_id_str": "49610490", "to_user_name": "Liqin", "in_reply_to_status_id": 148695021183447040, "in_reply_to_status_id_str": "148695021183447040"}, +{"created_at": "Mon, 19 Dec 2011 09:33:59 +0000", "from_user": "hannahmayea", "from_user_id": 197673068, "from_user_id_str": "197673068", "from_user_name": "Hannah Abalayan", "geo": null, "id": 148697577628516350, "id_str": "148697577628516353", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1545459012/moi1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545459012/moi1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Last Dinosaurs. \\u2665 #nowplaying", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:33:11 +0000", "from_user": "FarheenZafar1", "from_user_id": 388859862, "from_user_id_str": "388859862", "from_user_name": "Farheen Zafar", "geo": null, "id": 148697375932817400, "id_str": "148697375932817408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700326949/77127_1625716917091_1061559261_1792681_4114001_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700326949/77127_1625716917091_1061559261_1792681_4114001_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "#SometimesIWonder if dinosaurs really existed", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:30:55 +0000", "from_user": "kunstgkpebu8", "from_user_id": 395530317, "from_user_id_str": "395530317", "from_user_name": "Kunst John", "geo": null, "id": 148696806270832640, "id_str": "148696806270832640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1599916495/imagesCALZU15C_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599916495/imagesCALZU15C_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "ethanpage89 what main event was that? the dinosaurs vs bumping match?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:30:53 +0000", "from_user": "kuhmeal", "from_user_id": 21426008, "from_user_id_str": "21426008", "from_user_name": "Kamille D.", "geo": null, "id": 148696794002501630, "id_str": "148696794002501632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688616661/kuhmeal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688616661/kuhmeal_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@TinaYuuup Lol! \"Food or dinosaurs? \\uD83D\\uDE14 \" \"I want both! I want girls on bread!\" \\uD83D\\uDE04\\uD83D\\uDE02 I love Friends!", "to_user": "TinaYuuup", "to_user_id": 121971408, "to_user_id_str": "121971408", "to_user_name": "Tina", "in_reply_to_status_id": 148692722369314800, "in_reply_to_status_id_str": "148692722369314816"}, +{"created_at": "Mon, 19 Dec 2011 09:30:34 +0000", "from_user": "katie_brennan", "from_user_id": 23660182, "from_user_id_str": "23660182", "from_user_name": "Katie Brennan", "geo": null, "id": 148696718366609400, "id_str": "148696718366609408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698296314/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698296314/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I have a date this morning with some ice skates and some dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:30:27 +0000", "from_user": "ABBarlow1", "from_user_id": 311509463, "from_user_id_str": "311509463", "from_user_name": "AB Barlow", "geo": null, "id": 148696687123247100, "id_str": "148696687123247104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1382930574/Drink_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1382930574/Drink_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "A #Photo of some #Dinosaurs at a Gift Shop at the #Zoo\\thttp://t.co/bdnbnODO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:29:31 +0000", "from_user": "DonaShynee", "from_user_id": 310191439, "from_user_id_str": "310191439", "from_user_name": "Dona Shyne Bautista", "geo": null, "id": 148696452623900670, "id_str": "148696452623900672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692588462/DSC05917_VintageColors_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692588462/DSC05917_VintageColors_1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:28:28 +0000", "from_user": "robbiemdya1", "from_user_id": 395524652, "from_user_id_str": "395524652", "from_user_name": "Robbie Norris", "geo": null, "id": 148696188487610370, "id_str": "148696188487610368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1599903010/imagesCAOETTG3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599903010/imagesCAOETTG3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "ethanpage89 what main event was that? the dinosaurs vs bumping match?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:28:06 +0000", "from_user": "mrsbracknell", "from_user_id": 58757062, "from_user_id_str": "58757062", "from_user_name": "Mrs Bracknell", "geo": null, "id": 148696094497456130, "id_str": "148696094497456128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1324383690/13022011068_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1324383690/13022011068_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ERN_Malleyscrub: The terror-didactical - a winged beast who lectured all the dinosaurs while flying. This is the real reason dinosaurs died out. #artwiculate", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:28:02 +0000", "from_user": "Krystinivo", "from_user_id": 431696325, "from_user_id_str": "431696325", "from_user_name": "Krystin Layer", "geo": null, "id": 148696079284699140, "id_str": "148696079284699137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681025084/501zybqwjx_121188472-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681025084/501zybqwjx_121188472-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "When Dinosaurs Ruled - 5 Tape Set [VHS]: http://t.co/Xisn8RNH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:26:50 +0000", "from_user": "Waitwhoschris", "from_user_id": 52336319, "from_user_id_str": "52336319", "from_user_name": "chris ibanez", "geo": null, "id": 148695777831690240, "id_str": "148695777831690240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697946185/4jE4mNwt_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697946185/4jE4mNwt_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Wouldnt you wanna go back to interact with dinosaurs and watch there ways of living? I would.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:24:34 +0000", "from_user": "eileenHarman977", "from_user_id": 411247648, "from_user_id_str": "411247648", "from_user_name": "eileen Harman", "geo": null, "id": 148695207158878200, "id_str": "148695207158878208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1636389266/14771610771195618_sunbath_jpg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1636389266/14771610771195618_sunbath_jpg_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@qerodikarop Panasonic has offered Coraline and Ice Age: Dawn of the Dinosaurs with the purchase of its 3D TVs http://t.co/GHsSBkB0", "to_user": "qerodikarop", "to_user_id": 391508565, "to_user_id_str": "391508565", "to_user_name": "Jennis Challes", "in_reply_to_status_id": 148692321871990800, "in_reply_to_status_id_str": "148692321871990784"}, +{"created_at": "Mon, 19 Dec 2011 09:24:08 +0000", "from_user": "CarmelaMcLean", "from_user_id": 169749667, "from_user_id_str": "169749667", "from_user_name": "Carmela", "geo": null, "id": 148695098308304900, "id_str": "148695098308304896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696228574/455445_089_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696228574/455445_089_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:23:35 +0000", "from_user": "Pope_Sativa", "from_user_id": 236606141, "from_user_id_str": "236606141", "from_user_name": "MR.420\\u00A9 ", "geo": null, "id": 148694958851899400, "id_str": "148694958851899392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693809315/SAM_4916_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693809315/SAM_4916_normal.JPG", "source": "<a href="http://aplus-app.com" rel="nofollow">A.plus for BlackBerry</a>", "text": "Sperm + egg #biology ... What you mean forget dinosaurs?? RT @BaybiiMommii: @Pope_Sativa Forget dinosaurs. Explain how u came to be.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:23:07 +0000", "from_user": "taylakidrauhl", "from_user_id": 374774618, "from_user_id_str": "374774618", "from_user_name": "Tayla Ellis", "geo": null, "id": 148694841474301950, "id_str": "148694841474301952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700904139/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700904139/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Kiss me if I'm wrong but dinosaurs still exist, right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:22:59 +0000", "from_user": "MorbidPlus", "from_user_id": 160787347, "from_user_id_str": "160787347", "from_user_name": "Andrew Wray", "geo": null, "id": 148694806623813630, "id_str": "148694806623813632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1675146824/294885_546990650594_140301648_30994778_857023078_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675146824/294885_546990650594_140301648_30994778_857023078_n_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "An orgy of dinosaurs. TriShareACock.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:22:50 +0000", "from_user": "AlleyLuppy", "from_user_id": 108346048, "from_user_id_str": "108346048", "from_user_name": "Alice Lupton", "geo": null, "id": 148694772226334720, "id_str": "148694772226334721", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1601057756/munch_2011_07_10_181206_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601057756/munch_2011_07_10_181206_normal.png", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Only @5taceySolomon would talk about turkey/ham dinosaurs on @BBCRadio1 :') #EssexFtw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:21:43 +0000", "from_user": "CHUBU_SLICE", "from_user_id": 26110354, "from_user_id_str": "26110354", "from_user_name": "Chubu Slice", "geo": null, "id": 148694488502632450, "id_str": "148694488502632449", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1654168468/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654168468/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "#SometimesIWonder Dinosaurs.. Really?? Gtfoh!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:21:35 +0000", "from_user": "SarahSkizzle", "from_user_id": 312805114, "from_user_id_str": "312805114", "from_user_name": "Sarah Kennedy", "geo": null, "id": 148694454964977660, "id_str": "148694454964977664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1630706331/316570_10150528747882942_713262941_11638936_385653706_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630706331/316570_10150528747882942_713262941_11638936_385653706_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @selomaba: Why your booty look like oatmeal with the dinosaurs in it?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:21:08 +0000", "from_user": "BaybiiMommii", "from_user_id": 291656923, "from_user_id_str": "291656923", "from_user_name": "Mosetsana Senne", "geo": null, "id": 148694344164057100, "id_str": "148694344164057088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698838267/331623014_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698838267/331623014_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@Pope_Sativa Forget dinosaurs. Explain how u came to be.", "to_user": "Pope_Sativa", "to_user_id": 236606141, "to_user_id_str": "236606141", "to_user_name": "MR.420\\u00A9 ", "in_reply_to_status_id": 148693034077392900, "in_reply_to_status_id_str": "148693034077392898"}, +{"created_at": "Mon, 19 Dec 2011 09:20:36 +0000", "from_user": "damonayoung", "from_user_id": 361182963, "from_user_id_str": "361182963", "from_user_name": "Damon Young", "geo": null, "id": 148694206515384320, "id_str": "148694206515384320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1539168195/blue_shirt_200_x_200_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1539168195/blue_shirt_200_x_200_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ERN_Malleyscrub: The terror-didactical - a winged beast who lectured all the dinosaurs while flying. This is the real reason dinosaurs died out. #artwiculate", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:20:01 +0000", "from_user": "wwwfmrinfo", "from_user_id": 222762849, "from_user_id_str": "222762849", "from_user_name": "FM-R Info", "geo": null, "id": 148694060205490180, "id_str": "148694060205490176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1182244881/fmr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1182244881/fmr_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ESNSnl: Due to studio commitments Totally Enormous Extinct Dinosaurs cancelled their showcase at #ESNS12, but @ClockOpera is added to the bill!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:19:20 +0000", "from_user": "ERN_Malleyscrub", "from_user_id": 22607317, "from_user_id_str": "22607317", "from_user_name": "David B Johnston", "geo": null, "id": 148693888763306000, "id_str": "148693888763305984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1552936262/ern_malley_iphone_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552936262/ern_malley_iphone_pic_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "The terror-didactical - a winged beast who lectured all the dinosaurs while flying. This is the real reason dinosaurs died out. #artwiculate", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:19:11 +0000", "from_user": "jquiabby_96", "from_user_id": 327043884, "from_user_id_str": "327043884", "from_user_name": "Jquia Watson", "geo": null, "id": 148693850247004160, "id_str": "148693850247004161", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1616495844/WS0w6H7v_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616495844/WS0w6H7v_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Rawr does not mean I love you in dinosaur .. Have u watched jurassic park? When the dinosaurs come and say rawr they not saying I love you", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:18:58 +0000", "from_user": "hana_nached", "from_user_id": 261760764, "from_user_id_str": "261760764", "from_user_name": "HanaNached ", "geo": null, "id": 148693797742718980, "id_str": "148693797742718976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699580610/613_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699580610/613_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:18:47 +0000", "from_user": "MateCapodeferro", "from_user_id": 59653559, "from_user_id_str": "59653559", "from_user_name": "Mateus Capodeferro", "geo": null, "id": 148693750175121400, "id_str": "148693750175121409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1622245866/215993_178384998878675_100001215273632_438540_3329159_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622245866/215993_178384998878675_100001215273632_438540_3329159_n_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/Qs9hFQPY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:18:34 +0000", "from_user": "productof1970", "from_user_id": 165855816, "from_user_id_str": "165855816", "from_user_name": "debz saunders", "geo": null, "id": 148693696240549900, "id_str": "148693696240549888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1572436481/P1000148_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572436481/P1000148_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Do not have fear of peoples ignorance. Our children with PDA are the future - the ignorant ones r the dinosaurs, we know wot happend 2 them", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:18:03 +0000", "from_user": "SirDewie", "from_user_id": 313850250, "from_user_id_str": "313850250", "from_user_name": "Lewis Mcquaid", "geo": null, "id": 148693566200356860, "id_str": "148693566200356866", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Demize99 more maps, dinosaurs, a capture the flag game mode, more co-op missions :)", "to_user": "Demize99", "to_user_id": 50000478, "to_user_id_str": "50000478", "to_user_name": "Alan Kertz", "in_reply_to_status_id": 148685595944824830, "in_reply_to_status_id_str": "148685595944824832"}, +{"created_at": "Mon, 19 Dec 2011 09:17:31 +0000", "from_user": "mediocrecity", "from_user_id": 426479977, "from_user_id_str": "426479977", "from_user_name": "Richard Helder", "geo": null, "id": 148693433857490940, "id_str": "148693433857490944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1684468758/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684468758/avatar_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "RT @thecairos: Last Dinosaurs video clip for \"Zoom\" is almost Channel V's ripe clip of the week!! Click on the link and like it... http://t.co/4j9EG8tU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:17:29 +0000", "from_user": "Catcch", "from_user_id": 19241776, "from_user_id_str": "19241776", "from_user_name": "Catcch", "geo": null, "id": 148693425812807680, "id_str": "148693425812807681", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1653171701/c4t_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653171701/c4t_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@basvanduren RT @ESNSnl Due to studio commitments Totally Enormous Extinct Dinosaurs cancelled their showcase at #ESNS12", "to_user": "basvanduren", "to_user_id": 15258856, "to_user_id_str": "15258856", "to_user_name": "Bas van Duren"}, +{"created_at": "Mon, 19 Dec 2011 09:16:34 +0000", "from_user": "napickles", "from_user_id": 254165541, "from_user_id_str": "254165541", "from_user_name": "Dr Neil Pickles", "geo": null, "id": 148693194400477200, "id_str": "148693194400477184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1469927585/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1469927585/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "New Scientist - male ostriches and other evolutionary ancient birds can only maintain an erection for a few seconds. Probably dinosaurs also", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:16:20 +0000", "from_user": "meowy24", "from_user_id": 50029869, "from_user_id_str": "50029869", "from_user_name": "Semper", "geo": null, "id": 148693133343981570, "id_str": "148693133343981568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1583296564/Raptor_Kitten_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583296564/Raptor_Kitten_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/fNkFQWae but i want Ben and Jerry's to have dinosaurs in again :(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:15:28 +0000", "from_user": "Discredia", "from_user_id": 401303616, "from_user_id_str": "401303616", "from_user_name": "Florian Varga", "geo": null, "id": 148692916389429250, "id_str": "148692916389429249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1614072443/Getting_my_hair_cut_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1614072443/Getting_my_hair_cut_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@CHRISDJMOYLES I cant believe you havent had smileys or dinosaurs! Listening to radio1. Love @5taceySolomon", "to_user": "CHRISDJMOYLES", "to_user_id": 19982092, "to_user_id_str": "19982092", "to_user_name": "Chris Moyles"}, +{"created_at": "Mon, 19 Dec 2011 09:14:23 +0000", "from_user": "ElectronicsFLNW", "from_user_id": 399875912, "from_user_id_str": "399875912", "from_user_name": "ElectronicsFLNW", "geo": null, "id": 148692643596087300, "id_str": "148692643596087296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1610397295/1319779743_1282113943_114358898_3-learn-science-while-u-have-fun-robotics-mechanics-and-electronics-for-kids-7-14yrs-delhi-1282113943_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610397295/1319779743_1282113943_114358898_3-learn-science-while-u-have-fun-robotics-mechanics-and-electronics-for-kids-7-14yrs-delhi-1282113943_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "75% off: Ten Little Dinosaurs Picture Book (Wiggle Eyes)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:13:30 +0000", "from_user": "NewtonRosie543", "from_user_id": 372424086, "from_user_id_str": "372424086", "from_user_name": "Rosie Newton", "geo": null, "id": 148692421071474700, "id_str": "148692421071474688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700514288/pizap.com13242285422871_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700514288/pizap.com13242285422871_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "todaya friend andihad a discussion about dinosaurs anddecided that t-Rex were only angry because there arms were too short to hug eachother", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:12:38 +0000", "from_user": "devinatriw", "from_user_id": 101149687, "from_user_id_str": "101149687", "from_user_name": "Devin\\u0251 Tri Wul\\u0251nd\\u0251ri", "geo": null, "id": 148692201789063170, "id_str": "148692201789063168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701847296/IMG_0891_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701847296/IMG_0891_normal.JPG", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/nz0l1UaR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:10:25 +0000", "from_user": "foresthorn", "from_user_id": 22530827, "from_user_id_str": "22530827", "from_user_name": "Forest Horn", "geo": +{"coordinates": [45.3237,-107.3541], "type": "Point"}, "id": 148691645662117900, "id_str": "148691645662117888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699166693/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699166693/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@TheKidJesus: Missing the days when buffalo roamed free\\u201D #missingthedays when dinosaurs roamed Pangea", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:09:51 +0000", "from_user": "mattthomsom", "from_user_id": 328022052, "from_user_id_str": "328022052", "from_user_name": "Matt Thomson", "geo": null, "id": 148691503202578430, "id_str": "148691503202578433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1587653554/XBEC8ohT_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587653554/XBEC8ohT_normal", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @courtypeach: So I just found vans... WITH DINOSAURS ON! http://t.co/mCo0pX7D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:07:27 +0000", "from_user": "Neno_Tha_Don", "from_user_id": 153128627, "from_user_id_str": "153128627", "from_user_name": "Neno Gambino", "geo": null, "id": 148690900623704060, "id_str": "148690900623704065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694058977/imagejpeg_2_4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694058977/imagejpeg_2_4_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "The myth of \"bigfoot\" .... Shit if there were dinosaurs, what u think", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:05:06 +0000", "from_user": "_yuriix3", "from_user_id": 261623347, "from_user_id_str": "261623347", "from_user_name": "CianaRuss\\u2661", "geo": null, "id": 148690307356168200, "id_str": "148690307356168192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697903278/390831_2285066296072_1531335661_31864202_2042965970_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697903278/390831_2285066296072_1531335661_31864202_2042965970_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:04:30 +0000", "from_user": "CharlieReeder", "from_user_id": 44681657, "from_user_id_str": "44681657", "from_user_name": "SydneyRoseDesigns", "geo": null, "id": 148690155715301380, "id_str": "148690155715301376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1559432028/Photo_on_2011-09-24_at_15.19_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1559432028/Photo_on_2011-09-24_at_15.19_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", "text": "And the ones is covered in dinosaurs!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:03:16 +0000", "from_user": "tiepmasheen", "from_user_id": 113099225, "from_user_id_str": "113099225", "from_user_name": "S. Hartlooper", "geo": null, "id": 148689848134402050, "id_str": "148689848134402048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700012100/Foto_op_30-11-2011_om_20.22_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700012100/Foto_op_30-11-2011_om_20.22_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ESNSnl: Due to studio commitments Totally Enormous Extinct Dinosaurs cancelled their showcase at #ESNS12, but @ClockOpera is added to the bill!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:02:38 +0000", "from_user": "zwar", "from_user_id": 18803207, "from_user_id_str": "18803207", "from_user_name": "Alex van der Hulst", "geo": null, "id": 148689688507592700, "id_str": "148689688507592704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1634973114/alex_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634973114/alex_bigger_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Totally Enormous Extinct Dinosaurs gecancelled op ESNS, maar Clock Opera is een sterke vervanger", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:00:05 +0000", "from_user": "_filemon_", "from_user_id": 171081694, "from_user_id_str": "171081694", "from_user_name": "Filemon Godam Lexa", "geo": null, "id": 148689044732264450, "id_str": "148689044732264450", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684760452/Capture16_51_51_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684760452/Capture16_51_51_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @time2skate: Deck on eBay PRO COMPLETE Skate Board Dinosaurs Stickers Maple Deck 7.75\": US $29.99 (0 Bid) End Date: Monday D... http://t.co/OTr9STlu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 08:59:12 +0000", "from_user": "iamkiahlahorra", "from_user_id": 413840633, "from_user_id_str": "413840633", "from_user_name": "kirstene lahorra", "geo": null, "id": 148688821020655600, "id_str": "148688821020655616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1641779208/309400_257976580911796_100000983689927_786289_1963780528_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641779208/309400_257976580911796_100000983689927_786289_1963780528_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Kiss me if I'm wrong. but dinosaurs do exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:58:07 +0000", "from_user": "radjazz_f77", "from_user_id": 37570127, "from_user_id_str": "37570127", "from_user_name": "Radiante Frank", "geo": null, "id": 148688549212983300, "id_str": "148688549212983296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1676042951/IMG00288-20111205-1749_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676042951/IMG00288-20111205-1749_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:57:03 +0000", "from_user": "M4dDud3", "from_user_id": 83850307, "from_user_id_str": "83850307", "from_user_name": "Mohannad Sweity", "geo": null, "id": 148688280471347200, "id_str": "148688280471347200", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1381510929/0c662f94-ee56-49a7-9002-d5dbdd2c91ef_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1381510929/0c662f94-ee56-49a7-9002-d5dbdd2c91ef_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@Demize99 Dinosaurs ?", "to_user": "Demize99", "to_user_id": 50000478, "to_user_id_str": "50000478", "to_user_name": "Alan Kertz", "in_reply_to_status_id": 148685595944824830, "in_reply_to_status_id_str": "148685595944824832"}, +{"created_at": "Mon, 19 Dec 2011 08:57:03 +0000", "from_user": "tmart856", "from_user_id": 24336941, "from_user_id_str": "24336941", "from_user_name": "Taylor Martin", "geo": null, "id": 148688279645065200, "id_str": "148688279645065216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693715098/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693715098/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@cwatt7 kiss me if I'm wrong, but dinosaurs still exist right? #badpickuplines", "to_user": "cwatt7", "to_user_id": 211566749, "to_user_id_str": "211566749", "to_user_name": "Chase Watterson", "in_reply_to_status_id": 148684107658965000, "in_reply_to_status_id_str": "148684107658964992"}, +{"created_at": "Mon, 19 Dec 2011 08:56:57 +0000", "from_user": "ToysDiscountPri", "from_user_id": 416180527, "from_user_id_str": "416180527", "from_user_name": "ToysDiscountPrices", "geo": null, "id": 148688254407942140, "id_str": "148688254407942144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1646543511/41dhfd6AF0L._SL500_AA300__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646543511/41dhfd6AF0L._SL500_AA300__normal.jpg", "source": "<a href="http://toysdiscountprices.com/" rel="nofollow">ToysDiscountPrices</a>", "text": "http://t.co/VYuihvrY Discount toy dinosaurs kids - Magnetic Dinosaur Bingo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:55:21 +0000", "from_user": "Seritartv", "from_user_id": 431702449, "from_user_id_str": "431702449", "from_user_name": "Serita Zoch", "geo": null, "id": 148687852681699330, "id_str": "148687852681699329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681034464/hssnkcjt25_134660913-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681034464/hssnkcjt25_134660913-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dinosaurs Next Exit - Prehistoric Parks [VHS]: http://t.co/UAUMwZmH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:54:34 +0000", "from_user": "FairSkined_Vick", "from_user_id": 156010916, "from_user_id_str": "156010916", "from_user_name": "Victor Russell", "geo": null, "id": 148687658040836100, "id_str": "148687658040836096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1673766359/2011-09-16_17.30.20_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673766359/2011-09-16_17.30.20_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@Quashei I ain't no dinosaurs got sick", "to_user": "Quashei", "to_user_id": 141758493, "to_user_id_str": "141758493", "to_user_name": "[Q] \\u2665 ", "in_reply_to_status_id": 148687272609460220, "in_reply_to_status_id_str": "148687272609460224"}, +{"created_at": "Mon, 19 Dec 2011 08:53:22 +0000", "from_user": "ironincdance", "from_user_id": 406427469, "from_user_id_str": "406427469", "from_user_name": "Jennifer", "geo": null, "id": 148687355912523780, "id_str": "148687355912523777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1625781784/Jen_headshot_b_w_by_Mark_Demeny_small_size_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1625781784/Jen_headshot_b_w_by_Mark_Demeny_small_size_normal.jpg", "source": "<a href="http://www.mailchimp.com" rel="nofollow">MailChimp</a>", "text": "Jennifer Irons Dance News - Best Choreography Award, Dinosaurs and ACE Funding - http://t.co/ZHHmRkZp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:53:06 +0000", "from_user": "ptoadstool", "from_user_id": 35147423, "from_user_id_str": "35147423", "from_user_name": "Andrew Stuiber", "geo": null, "id": 148687288820449280, "id_str": "148687288820449280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697183638/GentaPickerchu_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697183638/GentaPickerchu_normal.png", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "@GigaBeetle Movie is NOTHING like the TV Show. Like, not even remotely related apart from having dinosaurs as main characters.", "to_user": "GigaBeetle", "to_user_id": 26590084, "to_user_id_str": "26590084", "to_user_name": "\\u2714 Verified Wizard", "in_reply_to_status_id": 148686516594540540, "in_reply_to_status_id_str": "148686516594540544"}, +{"created_at": "Mon, 19 Dec 2011 08:52:42 +0000", "from_user": "bijzondereblik", "from_user_id": 299043965, "from_user_id_str": "299043965", "from_user_name": "judith de jonge", "geo": null, "id": 148687182868131840, "id_str": "148687182868131840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701759963/14082009451_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701759963/14082009451_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "They are like dinosaurs! http://t.co/zS7qp4wS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:49:03 +0000", "from_user": "ToysDiscountPri", "from_user_id": 416180527, "from_user_id_str": "416180527", "from_user_name": "ToysDiscountPrices", "geo": null, "id": 148686268107210750, "id_str": "148686268107210753", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1646543511/41dhfd6AF0L._SL500_AA300__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646543511/41dhfd6AF0L._SL500_AA300__normal.jpg", "source": "<a href="http://toysdiscountprices.com/" rel="nofollow">ToysDiscountPrices</a>", "text": "http://t.co/bCR7UAUr Discount dinosaur toys kids - Crocodile Creek 7 inch Playball - Dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:48:58 +0000", "from_user": "rickycatto", "from_user_id": 14112439, "from_user_id_str": "14112439", "from_user_name": "Ricky Catto", "geo": null, "id": 148686248138117120, "id_str": "148686248138117120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1599666548/ace_of_clubs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599666548/ace_of_clubs_normal.jpg", "source": "<a href="http://ping.fm/" rel="nofollow">Ping.fm</a>", "text": "Thesaurus - The most synonymous of all the dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:48:46 +0000", "from_user": "Louanneqnt", "from_user_id": 440226334, "from_user_id_str": "440226334", "from_user_name": "Louanne Scahill", "geo": null, "id": 148686196355239940, "id_str": "148686196355239936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700601706/large_00lK051xCFe_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700601706/large_00lK051xCFe_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "LEGO Dino Attack Iron Predator vs. T-Rex: Iron Predator takes on the T-Rex! The king of the mutant dinosaurs is ... http://t.co/D9pO5mLL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:48:32 +0000", "from_user": "Uncle_Nan", "from_user_id": 218270107, "from_user_id_str": "218270107", "from_user_name": "Josh Mullins", "geo": null, "id": 148686136670289920, "id_str": "148686136670289920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1597004383/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1597004383/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @Haylisandyshoes: Dinosaurs are cool", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:47:17 +0000", "from_user": "vintagebonfire", "from_user_id": 63859750, "from_user_id_str": "63859750", "from_user_name": "Mama Reefa ~", "geo": null, "id": 148685822244306940, "id_str": "148685822244306944", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701478298/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701478298/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "#TeamCalibrook, Unicorns & Dinosaurs Do it!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:46:32 +0000", "from_user": "emilyC3claire", "from_user_id": 399260959, "from_user_id_str": "399260959", "from_user_name": "Emily Blewett", "geo": null, "id": 148685633790021630, "id_str": "148685633790021632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693762815/IMG-20111211-00168_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693762815/IMG-20111211-00168_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @JanelleFeltz5: ''And on the 3rd day, god invented the remington full action rifle, so man could fight the dinosaurs... And the homosexuals.'' :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:46:27 +0000", "from_user": "rachett_89", "from_user_id": 355244979, "from_user_id_str": "355244979", "from_user_name": "Jessica mccabe", "geo": null, "id": 148685612579426300, "id_str": "148685612579426304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686676834/46078_1585640565006_1355545903_31577144_6205063_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686676834/46078_1585640565006_1355545903_31577144_6205063_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:45:33 +0000", "from_user": "poeticenigma", "from_user_id": 16335781, "from_user_id_str": "16335781", "from_user_name": "poeticenigma", "geo": null, "id": 148685386116366340, "id_str": "148685386116366336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/761552610/1203568_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/761552610/1203568_normal.jpg", "source": "<a href="http://www.DynamicTweets.com" rel="nofollow">Dynamic Tweets</a>", "text": "Dinasaurs in Space - http://t.co/01mKXtX6 #art #abstract #photoshop #graphic design #dinosaurs #RT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:44:15 +0000", "from_user": "Linocc", "from_user_id": 89995953, "from_user_id_str": "89995953", "from_user_name": "Lino C\\u00E1ceres", "geo": null, "id": 148685058709004300, "id_str": "148685058709004288", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690070742/388158_10150406682672032_537522031_8836537_1389343975_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690070742/388158_10150406682672032_537522031_8836537_1389343975_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "El set tiene desde Edith Piaff hasta Illya Kuryaki pasando por Totally Enormous Extinct Dinosaurs :) #Linohaceunset", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:43:42 +0000", "from_user": "Irregularcog", "from_user_id": 26572792, "from_user_id_str": "26572792", "from_user_name": "ScoL", "geo": null, "id": 148684923392360450, "id_str": "148684923392360448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1134051910/termekip_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1134051910/termekip_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@GigaBeetle freaky human faced expresive dinosaurs (I never actually saw it)", "to_user": "GigaBeetle", "to_user_id": 26590084, "to_user_id_str": "26590084", "to_user_name": "\\u2714 Verified Wizard", "in_reply_to_status_id": 148684212520751100, "in_reply_to_status_id_str": "148684212520751104"}, +{"created_at": "Mon, 19 Dec 2011 08:43:29 +0000", "from_user": "Xman_718", "from_user_id": 222648374, "from_user_id_str": "222648374", "from_user_name": "Xavier Blackman", "geo": null, "id": 148684866966401020, "id_str": "148684866966401024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1596471652/catch_GMU_Vs_VCU_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596471652/catch_GMU_Vs_VCU_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @debonair_pierre: LIES!!! I'm one of the surviving Boifrannasaurus Bests...#boo ha RT@toolegit2quitt I think good boyfriends went extinct with the dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:42:54 +0000", "from_user": "debonair_pierre", "from_user_id": 301260585, "from_user_id_str": "301260585", "from_user_name": "Pierre Durant", "geo": null, "id": 148684722585878530, "id_str": "148684722585878528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1667456656/DreamyDebonair_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667456656/DreamyDebonair_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "LIES!!! I'm one of the surviving Boifrannasaurus Bests...#boo ha RT@toolegit2quitt I think good boyfriends went extinct with the dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:41:56 +0000", "from_user": "ToysDiscountPri", "from_user_id": 416180527, "from_user_id_str": "416180527", "from_user_name": "ToysDiscountPrices", "geo": null, "id": 148684479387533300, "id_str": "148684479387533312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1646543511/41dhfd6AF0L._SL500_AA300__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646543511/41dhfd6AF0L._SL500_AA300__normal.jpg", "source": "<a href="http://toysdiscountprices.com/" rel="nofollow">ToysDiscountPrices</a>", "text": "http://t.co/X4jIyaVM Discount toddler bath toy - Edushape Magic Creations Bath Playset - Dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:40:21 +0000", "from_user": "preannounce", "from_user_id": 146114076, "from_user_id_str": "146114076", "from_user_name": "PreFeed | Unfiltered", "geo": null, "id": 148684078869254140, "id_str": "148684078869254144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/918994044/tech_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/918994044/tech_normal.jpg", "source": "<a href="http://null.edu/" rel="nofollow">PreFeed Updater</a>", "text": "[MVID] 16Bit-Dinosaurs-DDC-x264-2011-FRAY [36.4MB/1F][56s ago]", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:39:18 +0000", "from_user": "dino_claire", "from_user_id": 33480802, "from_user_id_str": "33480802", "from_user_name": "Claire Leong", "geo": null, "id": 148683813260771330, "id_str": "148683813260771329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683484140/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683484140/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@NicholasRedLam HAHAH a bit too late for that! I'm already obsessed with dinosaurs!!", "to_user": "NicholasRedLam", "to_user_id": 31424229, "to_user_id_str": "31424229", "to_user_name": "Nicholas 'Red' Lam", "in_reply_to_status_id": 148683652367253500, "in_reply_to_status_id_str": "148683652367253504"}, +{"created_at": "Mon, 19 Dec 2011 08:38:44 +0000", "from_user": "Niza_Club", "from_user_id": 20470260, "from_user_id_str": "20470260", "from_user_name": "Niza Club Radio", "geo": null, "id": 148683672290205700, "id_str": "148683672290205696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1529729228/logo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1529729228/logo_normal.gif", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Last Dinosaurs - Zoom http://t.co/s5tRCdkQ v\\u00EDa @youtube", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:38:39 +0000", "from_user": "NicholasRedLam", "from_user_id": 31424229, "from_user_id_str": "31424229", "from_user_name": "Nicholas 'Red' Lam", "geo": null, "id": 148683652367253500, "id_str": "148683652367253504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1665557999/317007_10150490430721393_719326392_10835953_1368621121_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665557999/317007_10150490430721393_719326392_10835953_1368621121_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@dino_claire DO IT. OR YOU WILL GROW UP OBSESSED WITH DINOSAURS BUT TOO AFRAID TO PURSUE YOUR LOVE FOR THEM.", "to_user": "dino_claire", "to_user_id": 33480802, "to_user_id_str": "33480802", "to_user_name": "Claire Leong", "in_reply_to_status_id": 148683086039748600, "in_reply_to_status_id_str": "148683086039748608"}, +{"created_at": "Mon, 19 Dec 2011 08:38:13 +0000", "from_user": "TurkiBdr", "from_user_id": 249228134, "from_user_id_str": "249228134", "from_user_name": "Turki Badr", "geo": null, "id": 148683542073835520, "id_str": "148683542073835520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1587432198/5e5bdad5-1dc3-4254-a915-53d6b7d2343b_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587432198/5e5bdad5-1dc3-4254-a915-53d6b7d2343b_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Montberte: Videos - Dinosaurs Through History and Walking With Dinosaurs http://t.co/qiBIhBoT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:36:47 +0000", "from_user": "ElijahGorham1", "from_user_id": 418505362, "from_user_id_str": "418505362", "from_user_name": "Elijah Gorham", "geo": null, "id": 148683181795721200, "id_str": "148683181795721216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699188773/310716_189132954503646_100002208284458_397600_1101965358_n__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699188773/310716_189132954503646_100002208284458_397600_1101965358_n__1__normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Watchin Walking with Dinosaurs wit my bros? This shows wack...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:36:40 +0000", "from_user": "irhamhadi", "from_user_id": 96298328, "from_user_id_str": "96298328", "from_user_name": "News Update", "geo": null, "id": 148683152683057150, "id_str": "148683152683057152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1174139252/danautoba_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1174139252/danautoba_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dinosaurs In The Bible: \\n\\n\\n\\nDonald asks\\u2026\\n\\n\\nDo you think men lived at the same time as dinosaurs?\\nPersonally I do... http://t.co/lDakVHlB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:35:33 +0000", "from_user": "Boo_No_Fugazi", "from_user_id": 378350334, "from_user_id_str": "378350334", "from_user_name": "\\u265BBoo Daniels\\u2122", "geo": null, "id": 148682869584314370, "id_str": "148682869584314368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684566799/468832343_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684566799/468832343_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @jfuckingweb: Watching Jurassic park cause dinosaurs are cool.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:35:01 +0000", "from_user": "jfuckingweb", "from_user_id": 314387288, "from_user_id_str": "314387288", "from_user_name": "Jason Webster", "geo": null, "id": 148682735941197820, "id_str": "148682735941197824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1678378350/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678378350/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Watching Jurassic park cause dinosaurs are cool.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:34:02 +0000", "from_user": "jurylady5", "from_user_id": 425580734, "from_user_id_str": "425580734", "from_user_name": "gail simmons", "geo": null, "id": 148682489613922300, "id_str": "148682489613922304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Montberte: Videos - Dinosaurs Through History and Walking With Dinosaurs http://t.co/qiBIhBoT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:32:57 +0000", "from_user": "Montberte", "from_user_id": 193318094, "from_user_id_str": "193318094", "from_user_name": "Steve Cushing", "geo": null, "id": 148682215558103040, "id_str": "148682215558103040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1491421052/steve_august_2011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1491421052/steve_august_2011_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Videos - Dinosaurs Through History and Walking With Dinosaurs http://t.co/qiBIhBoT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:32:10 +0000", "from_user": "T_Kai_10", "from_user_id": 315056944, "from_user_id_str": "315056944", "from_user_name": "Travis Korn", "geo": null, "id": 148682018157375500, "id_str": "148682018157375489", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670383071/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670383071/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @kandyyykoated: And on the 3rd day, God created the Remington bolt action rifle...to fight off the dinosaurs and the homosexuals", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:30:26 +0000", "from_user": "evansthan", "from_user_id": 205397950, "from_user_id_str": "205397950", "from_user_name": "Jonathan Evans", "geo": null, "id": 148681583392587780, "id_str": "148681583392587776", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698597464/bones_love_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698597464/bones_love_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Zombies aliens vampires dinosaurs \\u2665", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:29:37 +0000", "from_user": "rottenlilmonstr", "from_user_id": 393058868, "from_user_id_str": "393058868", "from_user_name": "Jasmine Hernandez", "geo": null, "id": 148681377846542340, "id_str": "148681377846542336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699619603/Jon99B2n_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699619603/Jon99B2n_normal", "source": "<a href="http://www.myyearbook.com/" rel="nofollow">myYearbook Share</a>", "text": "Q: How do you think the dinosaurs died?A: they didn't, they just transported to...: http://t.co/bZQCcFsr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:29:31 +0000", "from_user": "OohCrystal", "from_user_id": 45295127, "from_user_id_str": "45295127", "from_user_name": "miss g ", "geo": null, "id": 148681352747810800, "id_str": "148681352747810816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1670755583/OohCrystal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670755583/OohCrystal_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "an asteroid hit earth 165 million years ago causing dinosaurs to become extinct", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:28:33 +0000", "from_user": "maniatoys", "from_user_id": 434918712, "from_user_id_str": "434918712", "from_user_name": "maniatoys", "geo": null, "id": 148681109016809470, "id_str": "148681109016809473", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688963697/maniatoys_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688963697/maniatoys_normal.png", "source": "<a href="http://maniatoys.com" rel="nofollow">maniatoys</a>", "text": "Melissa & Doug Dinosaurs 48 pcs Floor Puzzle http://t.co/Q75t8oV3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:28:16 +0000", "from_user": "MattSchonert", "from_user_id": 14967279, "from_user_id_str": "14967279", "from_user_name": "Matt (Econ) Schonert", "geo": null, "id": 148681036119818240, "id_str": "148681036119818240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1644807776/desk_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644807776/desk_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Gingrich and Romney are \"Limo Liberals at best and in reality, Big Government Dinosaurs\" http://t.co/BoAQU4hf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:28:09 +0000", "from_user": "widardf", "from_user_id": 218069038, "from_user_id_str": "218069038", "from_user_name": "Wida Rosyidah", "geo": null, "id": 148681007829237760, "id_str": "148681007829237760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1592890473/s_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592890473/s_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Photo: dinosaurs-roaming-the-earth: http://t.co/Wq8ZpKc0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:25:38 +0000", "from_user": "Latashiacti", "from_user_id": 431718746, "from_user_id_str": "431718746", "from_user_name": "Latashia Kluver", "geo": null, "id": 148680374602567680, "id_str": "148680374602567681", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681070207/eoffkevsdx_122939152-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681070207/eoffkevsdx_122939152-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The king of the dinosaurs: This book is for children who love dinosaurs and my 5 years old son who drew the dino... http://t.co/m2VeIl55", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:25:06 +0000", "from_user": "WadeJess", "from_user_id": 339398403, "from_user_id_str": "339398403", "from_user_name": "Jessica Wade", "geo": null, "id": 148680243203424260, "id_str": "148680243203424256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1667551263/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667551263/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Friends, coworkers, and last day of the dinosaurs made my life a lot better today", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:24:53 +0000", "from_user": "fluxfm_stuggi", "from_user_id": 58408700, "from_user_id_str": "58408700", "from_user_name": "FluxFM Playlist", "geo": null, "id": 148680186647425020, "id_str": "148680186647425024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1510125481/fluxfm-quadrat_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1510125481/fluxfm-quadrat_normal.png", "source": "<a href="http://www.motor.de" rel="nofollow">motor.de Playlist Stuggi</a>", "text": "19.12. 09:24 Uhr: Totally Enormous Extinct Dinosaurs \"Garden.\" http://t.co/gBfsngDr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:24:13 +0000", "from_user": "dlreloader", "from_user_id": 176045704, "from_user_id_str": "176045704", "from_user_name": "Anna Orlossi", "geo": null, "id": 148680019865108480, "id_str": "148680019865108480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Ice Age 3 Dawn of the Dinosaurs Movie Wallpaper: Ice Age 3 Dawn of the Dinosaurs Movie\\u2026 http://t.co/vsGKOn2N", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:24:10 +0000", "from_user": "dlreloader", "from_user_id": 176045704, "from_user_id_str": "176045704", "from_user_name": "Anna Orlossi", "geo": null, "id": 148680007361904640, "id_str": "148680007361904640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Ice Age 3 Dawn of the Dinosaurs Movie Wallpaper: Ice Age 3 Dawn of the Dinosaurs Movie\\u2026 http://t.co/PbsG9OuZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:23:21 +0000", "from_user": "Minus777", "from_user_id": 139631790, "from_user_id_str": "139631790", "from_user_name": "Peter", "geo": null, "id": 148679802293981200, "id_str": "148679802293981184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1080959962/Minus777-Sign_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1080959962/Minus777-Sign_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Stevewillhite So, you expect me to believe everyone is a descendant of Adam & Eve? Even though dinosaurs existed first? That's nonsense.", "to_user": "Stevewillhite", "to_user_id": 91191989, "to_user_id_str": "91191989", "to_user_name": "Steve Willhite", "in_reply_to_status_id": 148678235125841920, "in_reply_to_status_id_str": "148678235125841920"}, +{"created_at": "Mon, 19 Dec 2011 08:23:10 +0000", "from_user": "fluxfm_berlin", "from_user_id": 58404520, "from_user_id_str": "58404520", "from_user_name": "FluxFM Playlist", "geo": null, "id": 148679755435229200, "id_str": "148679755435229184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1510122863/fluxfm-quadrat_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1510122863/fluxfm-quadrat_normal.png", "source": "<a href="http://www.motor.de" rel="nofollow">motor.de</a>", "text": "19.12. 09:23 Uhr: Totally Enormous Extinct Dinosaurs \"Garden.\" http://t.co/tSCpy6Nd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:23:00 +0000", "from_user": "Tawnyaaft", "from_user_id": 431774089, "from_user_id_str": "431774089", "from_user_name": "Tawnya Bella", "geo": null, "id": 148679712674299900, "id_str": "148679712674299904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681183832/fhmf4o45cs_133208500-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681183832/fhmf4o45cs_133208500-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Thing in the Tub and Other Poems: Monsters, dinosaurs, fairies and superheroes: find them all in THE THING I... http://t.co/NhBNo6EX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:20:46 +0000", "from_user": "HannahFrames", "from_user_id": 49872362, "from_user_id_str": "49872362", "from_user_name": "Hannah Frames", "geo": null, "id": 148679149282791420, "id_str": "148679149282791424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1689327570/orange_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689327570/orange_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "This 40 year old virgin on \"Bad Sex\" is talking to the stripper about dinosaurs while getting a lap dance. Baaaaah!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:19:39 +0000", "from_user": "LouieGolk1", "from_user_id": 436368042, "from_user_id_str": "436368042", "from_user_name": "Louie Golk", "geo": null, "id": 148678871267553280, "id_str": "148678871267553280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692153000/ghf_normal.jpg", "profile_image_url_https": null, "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Death of the Dinosaurs [Earth Story]: http://t.co/0coFNCPb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:18:19 +0000", "from_user": "__TwatchMeShine", "from_user_id": 298612513, "from_user_id_str": "298612513", "from_user_name": "\\u2714 Verified Account", "geo": null, "id": 148678533059854340, "id_str": "148678533059854336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1537210273/denard_nd_me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1537210273/denard_nd_me_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "#SometimesIWonder\\tWhat Life Would Be Like If Dinosaurs Still Existed.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:17:57 +0000", "from_user": "mariahh02", "from_user_id": 126545552, "from_user_id_str": "126545552", "from_user_name": "maria munoz", "geo": null, "id": 148678440659320830, "id_str": "148678440659320832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1643094366/1317778439050_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643094366/1317778439050_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:17:32 +0000", "from_user": "Inspire_A_Life", "from_user_id": 404280824, "from_user_id_str": "404280824", "from_user_name": "Demontae Thompson", "geo": null, "id": 148678339010371600, "id_str": "148678339010371584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1637829295/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637829295/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "What would happen if we lived with the dinosaurs!??? :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:16:39 +0000", "from_user": "Kimberlocks", "from_user_id": 42059229, "from_user_id_str": "42059229", "from_user_name": "Kim Cardoso \\u2651", "geo": null, "id": 148678113377779700, "id_str": "148678113377779712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670490931/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670490931/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I wonder what the next era in life will be. Dinosaurs, caveman, Romans and Greeks, royals, western , modern and technology. #mindblown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:16:26 +0000", "from_user": "CorsetsNlace", "from_user_id": 333370537, "from_user_id_str": "333370537", "from_user_name": "Sexy Bitch", "geo": null, "id": 148678059028004860, "id_str": "148678059028004864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701779775/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701779775/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:14:11 +0000", "from_user": "drewalonto", "from_user_id": 248935511, "from_user_id_str": "248935511", "from_user_name": "Andrew Alonto", "geo": null, "id": 148677495045111800, "id_str": "148677495045111808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1684761523/Superman-sad_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684761523/Superman-sad_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#IWasThatKid who was always borrowing books about dinosaurs and the solar system at the library.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:12:50 +0000", "from_user": "MsBrownMouse", "from_user_id": 11594092, "from_user_id_str": "11594092", "from_user_name": "Ms Brown-Mouse", "geo": null, "id": 148677154924789760, "id_str": "148677154924789760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691670898/mouse-ears_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691670898/mouse-ears_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "Still looking for a teach yourself to play chess AP without dinosaurs #helpmeTwitter", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:12:39 +0000", "from_user": "NichKeasey", "from_user_id": 384049869, "from_user_id_str": "384049869", "from_user_name": "Nich Keasey", "geo": null, "id": 148677107831152640, "id_str": "148677107831152640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dinosaurs And Wild Animals are every kid's favourite at Christmas: Wildcat & Dinohistoria, two different fun and... http://t.co/GFAKev1G", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:12:26 +0000", "from_user": "OohCrystal", "from_user_id": 45295127, "from_user_id_str": "45295127", "from_user_name": "miss g ", "geo": null, "id": 148677055184240640, "id_str": "148677055184240640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1670755583/OohCrystal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670755583/OohCrystal_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "but seriously.... dinosaurs once existed!!! thats crazy to me.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:11:47 +0000", "from_user": "Tamarvwi", "from_user_id": 440202384, "from_user_id_str": "440202384", "from_user_name": "Tamar Murawski", "geo": null, "id": 148676890729787400, "id_str": "148676890729787392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700548646/lu4swzzbdy_124769521_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700548646/lu4swzzbdy_124769521_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Man Dinosaurs and the Bible [VHS]: http://t.co/8KiNOFDF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:11:11 +0000", "from_user": "shayneylovesyou", "from_user_id": 270232448, "from_user_id_str": "270232448", "from_user_name": "shayne hunter", "geo": null, "id": 148676740061999100, "id_str": "148676740061999104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1286144746/DSC01441_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1286144746/DSC01441_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:10:08 +0000", "from_user": "frannfrannb", "from_user_id": 423753815, "from_user_id_str": "423753815", "from_user_name": "Francisco Torres", "geo": null, "id": 148676473618841600, "id_str": "148676473618841600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1663273150/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663273150/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "And on the third day god created the Remington bolt-action rifle so that men could fight the dinosaurs... And the #homosexual... #amen", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:10:05 +0000", "from_user": "saraaahxoo", "from_user_id": 265104977, "from_user_id_str": "265104977", "from_user_name": "sarah shepeski", "geo": null, "id": 148676464060018700, "id_str": "148676464060018688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1656136553/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656136553/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @idkmybffjaamie: kiss me if I'm wrong, but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:08:04 +0000", "from_user": "stoptia", "from_user_id": 99819121, "from_user_id_str": "99819121", "from_user_name": "Christina", "geo": null, "id": 148675952707244030, "id_str": "148675952707244033", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/595764790/nastolatki_24_20091031_1772729348_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/595764790/nastolatki_24_20091031_1772729348_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Newborn Boys' JUST ONE YOU Made by Carter s \\u00AE 3pc Brown/Green Dinosaurs Cardigan Set 3M: http://t.co/Te1hVqKC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:07:53 +0000", "from_user": "Kate_Elizabeth_", "from_user_id": 217918996, "from_user_id_str": "217918996", "from_user_name": "Kate E Campbell", "geo": null, "id": 148675910533529600, "id_str": "148675910533529600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683921414/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683921414/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:07:29 +0000", "from_user": "_NoSuitForNana_", "from_user_id": 358157753, "from_user_id_str": "358157753", "from_user_name": "Sid Baker", "geo": null, "id": 148675809807319040, "id_str": "148675809807319040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1592265208/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592265208/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@tenaiyastweets what do you call a blind dinosaurs dog? Doyouthinkhesawysrex", "to_user": "tenaiyastweets", "to_user_id": 173041505, "to_user_id_str": "173041505", "to_user_name": "Tenaiya", "in_reply_to_status_id": 148593277627678720, "in_reply_to_status_id_str": "148593277627678720"}, +{"created_at": "Mon, 19 Dec 2011 08:06:58 +0000", "from_user": "toolegit2quitt", "from_user_id": 293875463, "from_user_id_str": "293875463", "from_user_name": "Stephanie Vazquez", "geo": null, "id": 148675676071931900, "id_str": "148675676071931904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670197961/Snapshot_20110509_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670197961/Snapshot_20110509_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "I think good boyfriends went extinct with the dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:05:24 +0000", "from_user": "Kimberlocks", "from_user_id": 42059229, "from_user_id_str": "42059229", "from_user_name": "Kim Cardoso \\u2651", "geo": null, "id": 148675283745128450, "id_str": "148675283745128448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670490931/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670490931/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "God I've never felt so sad! I want to cry!! poor Dinosaurs. Last day of the dinosaur is amazing. The earth is FASCINATING #ScienceRules", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:04:44 +0000", "from_user": "moviedb", "from_user_id": 45759584, "from_user_id_str": "45759584", "from_user_name": "Best selling movies", "geo": null, "id": 148675114672730100, "id_str": "148675114672730112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/455709160/film-reel-32x32_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/455709160/film-reel-32x32_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "SAVE $11.09 - Ice Age: Dawn of the Dinosaurs [Blu-ray] $18.90 http://t.co/UuosiUGU #sale #animation", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:04:40 +0000", "from_user": "U_Clever", "from_user_id": 414523054, "from_user_id_str": "414523054", "from_user_name": "U-Clever", "geo": null, "id": 148675098201698300, "id_str": "148675098201698305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1646165577/aa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646165577/aa_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Strange of Animals Which Life Before Dinosaurs (Permian Period) http://t.co/0VhGEfuz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:04:00 +0000", "from_user": "xSutera", "from_user_id": 412132428, "from_user_id_str": "412132428", "from_user_name": "StellaBelle\\u2605\\uC18C\\uC544", "geo": null, "id": 148674930354032640, "id_str": "148674930354032640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697939394/1C4p49Lj_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697939394/1C4p49Lj_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @CutiePieAri: @xSutera ~hugs you back and says in a choked-up voice~ It's sad cuz it's true, all the dinosaurs really are dead!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:03:53 +0000", "from_user": "yensuin", "from_user_id": 103674340, "from_user_id_str": "103674340", "from_user_name": "Audrey Yen-Suin", "geo": null, "id": 148674902432559100, "id_str": "148674902432559104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676711847/bitty_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676711847/bitty_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "I feel so bad for the dinosaurs :( stupid asteroids", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:03:51 +0000", "from_user": "Lara_Disco", "from_user_id": 20915465, "from_user_id_str": "20915465", "from_user_name": "Lara Disco", "geo": null, "id": 148674894236880900, "id_str": "148674894236880897", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1537169248/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1537169248/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Probably the best weekend ever... Totley planks, dewaele drumsticks and huge dinosaurs... #winning", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:03:08 +0000", "from_user": "timbrandon94", "from_user_id": 122636539, "from_user_id_str": "122636539", "from_user_name": "Tim Brandon", "geo": null, "id": 148674712401227780, "id_str": "148674712401227777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1534168951/Tim_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534168951/Tim_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "welcome to Terranova RT @CharlesSetia I thought Terranova was 85% about dinosaurs but it is actually the other way round.", "to_user": "CharlesSetia", "to_user_id": 267723759, "to_user_id_str": "267723759", "to_user_name": "Charles Setia", "in_reply_to_status_id": 148672793523912700, "in_reply_to_status_id_str": "148672793523912704"}, +{"created_at": "Mon, 19 Dec 2011 08:02:15 +0000", "from_user": "CutiePieAri", "from_user_id": 416707529, "from_user_id_str": "416707529", "from_user_name": "Ariele Soo", "geo": null, "id": 148674490270892030, "id_str": "148674490270892032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1647816654/anime-child_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647816654/anime-child_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@xSutera ~hugs you back and says in a choked-up voice~ It's sad cuz it's true, all the dinosaurs really are dead!", "to_user": "xSutera", "to_user_id": 412132428, "to_user_id_str": "412132428", "to_user_name": "StellaBelle\\u2605\\uC18C\\uC544", "in_reply_to_status_id": 148674019590287360, "in_reply_to_status_id_str": "148674019590287360"}, +{"created_at": "Mon, 19 Dec 2011 08:01:41 +0000", "from_user": "krissyfied", "from_user_id": 16752063, "from_user_id_str": "16752063", "from_user_name": "Kristel Ann Cruz", "geo": null, "id": 148674349493260300, "id_str": "148674349493260288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1660373542/krissy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660373542/krissy_normal.jpg", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "Home! It's raining lobsters and dinosaurs x_x (@ The Familia) http://t.co/ulxsgpao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:01:05 +0000", "from_user": "readertotz", "from_user_id": 23627490, "from_user_id_str": "23627490", "from_user_name": "readertotz", "geo": null, "id": 148674198175363070, "id_str": "148674198175363072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/92046197/B-w_baby_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/92046197/B-w_baby_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "readertotz: How Do Dinosaurs Eat Cookies? Jane Yolen & Mark Teague http://t.co/sWCgTe4D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:01:01 +0000", "from_user": "sinecta", "from_user_id": 102498803, "from_user_id_str": "102498803", "from_user_name": "sinecta", "geo": null, "id": 148674180328587260, "id_str": "148674180328587264", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://sinecta.com" rel="nofollow">sinecta</a>", "text": "http://t.co/x3Jgn6zq: Almanac: Dinosaurs http://t.co/R1SCnNf6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:59:41 +0000", "from_user": "Ella36257415987", "from_user_id": 417913466, "from_user_id_str": "417913466", "from_user_name": "Ella", "geo": null, "id": 148673844629078000, "id_str": "148673844629078016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1650310240/p17_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650310240/p17_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The World of the Dinosaurs: Whether you've got a free afternoon, you're on a long trip or you're ill in bed, it ... http://t.co/kVFBOY7C", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:58:45 +0000", "from_user": "Kimberlocks", "from_user_id": 42059229, "from_user_id_str": "42059229", "from_user_name": "Kim Cardoso \\u2651", "geo": null, "id": 148673609727082500, "id_str": "148673609727082496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670490931/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670490931/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Tired but I won't go to sleep until I finish the Last Day of the Dinosaurs. I'm so sad. I can't fathom that taking place. I'm so humbled", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:58:04 +0000", "from_user": "TheMarphy", "from_user_id": 171454866, "from_user_id_str": "171454866", "from_user_name": "Paul Whelan", "geo": null, "id": 148673436225515520, "id_str": "148673436225515520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1090510805/q736408684_8046_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1090510805/q736408684_8046_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MKPS001 @abcnews Absplutely awesome posting Princess Mindy....Ponting is a Dinosaur...but being to kind to Dinosaurs....", "to_user": "MKPS001", "to_user_id": 254438271, "to_user_id_str": "254438271", "to_user_name": "Mindy Pawsey", "in_reply_to_status_id": 148673053465915400, "in_reply_to_status_id_str": "148673053465915392"}, +{"created_at": "Mon, 19 Dec 2011 07:57:29 +0000", "from_user": "Kayyy_Dee", "from_user_id": 54459671, "from_user_id_str": "54459671", "from_user_name": "'\\u0C8C DreammCatchersss.", "geo": null, "id": 148673291064848400, "id_str": "148673291064848384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1309800956/CLHFF-A1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1309800956/CLHFF-A1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:56:06 +0000", "from_user": "LEiiGHx3UH", "from_user_id": 27490038, "from_user_id_str": "27490038", "from_user_name": "Leah Crowell", "geo": null, "id": 148672943176695800, "id_str": "148672943176695809", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/344623896/Me1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/344623896/Me1_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @StormyyRoss: Kiss me if I'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:53:52 +0000", "from_user": "brandileii", "from_user_id": 124082979, "from_user_id_str": "124082979", "from_user_name": "Brandi-Lei Smith", "geo": null, "id": 148672381890740220, "id_str": "148672381890740224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1260368563/Photo_on_2010-12-24_at_14.44_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1260368563/Photo_on_2010-12-24_at_14.44_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:53:38 +0000", "from_user": "nima1203", "from_user_id": 415281884, "from_user_id_str": "415281884", "from_user_name": "nima", "geo": null, "id": 148672323078201340, "id_str": "148672323078201344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1647962515/FacebookHomescreenImage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647962515/FacebookHomescreenImage_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Am watching the discovery channel OMG how the dinosaurs died and there world was destroyed", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:53:31 +0000", "from_user": "filmy_seriale", "from_user_id": 197400664, "from_user_id_str": "197400664", "from_user_name": "Filmy i Seriale", "geo": null, "id": 148672293881647100, "id_str": "148672293881647104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1135067546/reklama_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1135067546/reklama_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Film, #Serial: Epoka lodowcowa 3: Era dinozaur\\u00F3w - Ice Age: Dawn of the Dinosaurs (2009) [Dubbing] http://t.co/UPeBaJIs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:53:12 +0000", "from_user": "elinehulspas", "from_user_id": 211790397, "from_user_id_str": "211790397", "from_user_name": "Eline Hulspas", "geo": null, "id": 148672215318147070, "id_str": "148672215318147072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697055540/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697055540/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:53:10 +0000", "from_user": "linusallen", "from_user_id": 343048543, "from_user_id_str": "343048543", "from_user_name": "Linus", "geo": null, "id": 148672206937923600, "id_str": "148672206937923584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1462699052/Photo_on_2010-10-16_at_23.03_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1462699052/Photo_on_2010-10-16_at_23.03_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "liquids gone and now dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:52:34 +0000", "from_user": "nadyasamantha", "from_user_id": 416236222, "from_user_id_str": "416236222", "from_user_name": "Samantha", "geo": null, "id": 148672054500130800, "id_str": "148672054500130816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701813128/tumblr_luwddbg61g1r6gejwo1_250_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701813128/tumblr_luwddbg61g1r6gejwo1_250_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Human really never knew what colours dinosaurs were.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:52:03 +0000", "from_user": "jithinjb", "from_user_id": 55528394, "from_user_id_str": "55528394", "from_user_name": "JB", "geo": null, "id": 148671925005189120, "id_str": "148671925005189120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/874980008/100_7554new_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/874980008/100_7554new_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#IWasThatKid who thought that Dinosaurs shown in the film #JurassicPark wr real!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:51:25 +0000", "from_user": "PDS22", "from_user_id": 30323482, "from_user_id_str": "30323482", "from_user_name": "Paula Scott", "geo": null, "id": 148671766502440960, "id_str": "148671766502440960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1585906842/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585906842/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Watching Last Day of Dinosaurs on Discovery. #yepimanerd #learningstuff", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:51:18 +0000", "from_user": "abbarroo", "from_user_id": 83910691, "from_user_id_str": "83910691", "from_user_name": "alaa abbar", "geo": +{"coordinates": [21.5902,39.1247], "type": "Point"}, "id": 148671735665917950, "id_str": "148671735665917952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/664044117/CIMG0331_2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/664044117/CIMG0331_2_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@NoufHakeem @yarajazzy only that she was one person who ruled 4 only 2 yeas.. Them #hay2a min fa9eelat al dinosaurs...", "to_user": "NoufHakeem", "to_user_id": 95694312, "to_user_id_str": "95694312", "to_user_name": "NHakeem", "in_reply_to_status_id": 148531425044463600, "in_reply_to_status_id_str": "148531425044463618"}, +{"created_at": "Mon, 19 Dec 2011 07:51:06 +0000", "from_user": "ARGENTIlNA", "from_user_id": 118522860, "from_user_id_str": "118522860", "from_user_name": "Argentina Martinez", "geo": null, "id": 148671685736935420, "id_str": "148671685736935425", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697199297/ywer_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697199297/ywer_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:50:40 +0000", "from_user": "LADYHIGHTOWER", "from_user_id": 18591374, "from_user_id_str": "18591374", "from_user_name": "Cathy Parker", "geo": null, "id": 148671573904207870, "id_str": "148671573904207872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/141092668/AB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/141092668/AB_normal.jpg", "source": "<a href="http://www.listia.com" rel="nofollow">Listia</a>", "text": "I'm giving away: Dinosaurs Before Dark~Magic Tree House Series~Book 1 Age 7+. Check it out - http://t.co/UC9HfVeo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:50:03 +0000", "from_user": "MeylSeesStars", "from_user_id": 83075163, "from_user_id_str": "83075163", "from_user_name": "Meylin Dwini", "geo": null, "id": 148671419922911230, "id_str": "148671419922911232", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696575098/kinda_20dramatic_20huh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696575098/kinda_20dramatic_20huh_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Oh iya (\\u2323\\u0301_\\u2323\\u0300). Tapi kan dinosaurs kereeen \\u2665 RT @lani_wulanjani: Ntar pepohonan abis dong? RT MeylSeesStars: Coba aja masih ada dinosaurs d", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:49:39 +0000", "from_user": "WadeJess", "from_user_id": 339398403, "from_user_id_str": "339398403", "from_user_name": "Jessica Wade", "geo": null, "id": 148671321843314700, "id_str": "148671321843314688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1667551263/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667551263/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Is pretty much obsessed with dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:48:42 +0000", "from_user": "BilllCosby", "from_user_id": 185442030, "from_user_id_str": "185442030", "from_user_name": "R.I.P D. Lewis.", "geo": null, "id": 148671082289836030, "id_str": "148671082289836032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697591875/x2_9dd670a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697591875/x2_9dd670a_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "FUCK DINOSAURS. EAT A DICK BITCHES.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:47:42 +0000", "from_user": "YourHeroPali", "from_user_id": 71531141, "from_user_id_str": "71531141", "from_user_name": "Aubrey Maloisane", "geo": null, "id": 148670827439730700, "id_str": "148670827439730689", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693219271/tumblr_lvp6y2fNVU1r2stjio1_500_large_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693219271/tumblr_lvp6y2fNVU1r2stjio1_500_large_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "'Kiss me if i'm wrong but dinosaurs still exist right?'", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:47:11 +0000", "from_user": "pimonb", "from_user_id": 149513801, "from_user_id_str": "149513801", "from_user_name": "pimonb", "geo": null, "id": 148670700088070140, "id_str": "148670700088070144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "8 Piece Discover Dinosaurs Rubbing Plates Set: http://t.co/aDzECmM0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 07:47:42 +0000", "from_user": "YourHeroPali", "from_user_id": 71531141, "from_user_id_str": "71531141", "from_user_name": "Aubrey Maloisane", "geo": null, "id": 148670827439730700, "id_str": "148670827439730689", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693219271/tumblr_lvp6y2fNVU1r2stjio1_500_large_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693219271/tumblr_lvp6y2fNVU1r2stjio1_500_large_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "'Kiss me if i'm wrong but dinosaurs still exist right?'", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:47:11 +0000", "from_user": "pimonb", "from_user_id": 149513801, "from_user_id_str": "149513801", "from_user_name": "pimonb", "geo": null, "id": 148670700088070140, "id_str": "148670700088070144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "8 Piece Discover Dinosaurs Rubbing Plates Set: http://t.co/aDzECmM0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:45:35 +0000", "from_user": "kiinkkykiillz", "from_user_id": 397569372, "from_user_id_str": "397569372", "from_user_name": "amy;; ", "geo": null, "id": 148670298240188400, "id_str": "148670298240188416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1685851018/D861HytC_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685851018/D861HytC_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:44:08 +0000", "from_user": "Veronarcz", "from_user_id": 431766567, "from_user_id_str": "431766567", "from_user_name": "Verona Rancatti", "geo": null, "id": 148669930638815230, "id_str": "148669930638815232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681169690/00b1mw3ze3_134225183-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681169690/00b1mw3ze3_134225183-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "I Can Draw Dinosaurs: Learn how to draw dinosaurs of all shapes and sizes with these easy-to-follow instructions... http://t.co/jIi7kzho", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:43:58 +0000", "from_user": "Erictga", "from_user_id": 431683572, "from_user_id_str": "431683572", "from_user_name": "Eric Beinlich", "geo": null, "id": 148669889580773380, "id_str": "148669889580773377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680993073/large_255_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680993073/large_255_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "THE SLANKET BLANKET KIDS SLANKESAURAS DINOSAURS (NEW FOR 2010/2011): The Slanket Blanket Slanketsauras Dinosaurs... http://t.co/5gEJvp4t", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:43:46 +0000", "from_user": "lotsofhugznkiss", "from_user_id": 203828037, "from_user_id_str": "203828037", "from_user_name": "Allison ", "geo": null, "id": 148669837479120900, "id_str": "148669837479120896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1522104373/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1522104373/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:43:23 +0000", "from_user": "GloshaBabko", "from_user_id": 311631764, "from_user_id_str": "311631764", "from_user_name": "Glosha Babko", "geo": null, "id": 148669741979017200, "id_str": "148669741979017216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1383234580/result_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1383234580/result_1__normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/zWwUGDb9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:43:00 +0000", "from_user": "MeylSeesStars", "from_user_id": 83075163, "from_user_id_str": "83075163", "from_user_name": "Meylin Dwini", "geo": null, "id": 148669644318846980, "id_str": "148669644318846976", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696575098/kinda_20dramatic_20huh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696575098/kinda_20dramatic_20huh_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Coba aja masih ada dinosaurs di dunia. Pasti keren lah. Tapi yang vegetarian. Waaaawww (*o*)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:42:13 +0000", "from_user": "MandiWoodruff", "from_user_id": 114908332, "from_user_id_str": "114908332", "from_user_name": "Mandisaurus", "geo": null, "id": 148669447819886600, "id_str": "148669447819886592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701774084/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701774084/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I hope there's dinosaurs in heaven.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:41:44 +0000", "from_user": "SmookeyChance", "from_user_id": 367550105, "from_user_id_str": "367550105", "from_user_name": "Grexy Spy", "geo": null, "id": 148669327434985470, "id_str": "148669327434985472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702213692/475291083_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702213692/475291083_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:40:50 +0000", "from_user": "HellaSickBro", "from_user_id": 440640923, "from_user_id_str": "440640923", "from_user_name": "Adam Whitney", "geo": null, "id": 148669101332635650, "id_str": "148669101332635648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701720286/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701720286/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Chicken nuggets taste better when they're shaped like dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:40:38 +0000", "from_user": "Moenisha", "from_user_id": 237434094, "from_user_id_str": "237434094", "from_user_name": "Mona Haq", "geo": null, "id": 148669050480898050, "id_str": "148669050480898048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700746684/Bild_96_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700746684/Bild_96_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ThatDudeMCFLY: Kiss me if I'm wrong but Dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:40:26 +0000", "from_user": "FranMorgan88", "from_user_id": 387161282, "from_user_id_str": "387161282", "from_user_name": "Fran Morgan", "geo": null, "id": 148668999482351600, "id_str": "148668999482351616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1578437661/a141jq0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1578437661/a141jq0_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Jungle Girl & Lost Island of Dinosaurs [VHS]: http://t.co/Jiseo5bJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:40:26 +0000", "from_user": "Shelbie_3", "from_user_id": 39663718, "from_user_id_str": "39663718", "from_user_name": "Shelbie Phelps", "geo": null, "id": 148668998404423680, "id_str": "148668998404423680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694431661/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694431661/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Z_Wooly #childhoodmemories running into you in McDonald's. \"can I play with you?\" \"Rawrrrrr I like dinosaurs!!\" #weirdkid", "to_user": "Z_Wooly", "to_user_id": 18122406, "to_user_id_str": "18122406", "to_user_name": "Zachary Wooldridge", "in_reply_to_status_id": 148662247646965760, "in_reply_to_status_id_str": "148662247646965760"}, +{"created_at": "Mon, 19 Dec 2011 07:38:42 +0000", "from_user": "MohammedAli__", "from_user_id": 230227937, "from_user_id_str": "230227937", "from_user_name": "Mohammed Ali", "geo": null, "id": 148668564260392960, "id_str": "148668564260392961", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699662464/vg54878_like_a_boss_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699662464/vg54878_like_a_boss_normal.png", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @i_am_AbbaTumsah: RT @M_Tumsah: RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:37:33 +0000", "from_user": "bobsagetgmh", "from_user_id": 219069939, "from_user_id_str": "219069939", "from_user_name": "Ross Geller", "geo": null, "id": 148668273951649800, "id_str": "148668273951649792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1676350025/photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676350025/photo_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Hello I am Dr. Ross Geller. I enjoy paleontology and I can't choose between sex and dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:37:32 +0000", "from_user": "i_am_AbbaTumsah", "from_user_id": 165892239, "from_user_id_str": "165892239", "from_user_name": "\\u2022Abba TumsiR\\u2022", "geo": null, "id": 148668272458477570, "id_str": "148668272458477568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699896969/Abuja-20111109-00393_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699896969/Abuja-20111109-00393_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @M_Tumsah: RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:37:00 +0000", "from_user": "S_ephen", "from_user_id": 43799189, "from_user_id_str": "43799189", "from_user_name": "Stephen Hines", "geo": null, "id": 148668138127499260, "id_str": "148668138127499264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1588993718/kkk293540_267937233238619_100000670337427_917634_1538627709_n-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1588993718/kkk293540_267937233238619_100000670337427_917634_1538627709_n-1_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/ivYxYFT4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:35:34 +0000", "from_user": "darrennnLiu", "from_user_id": 63240871, "from_user_id_str": "63240871", "from_user_name": "Darren L", "geo": null, "id": 148667775102107650, "id_str": "148667775102107649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1659626690/IMG_5050_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659626690/IMG_5050_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "#nw Last Day of Dinosaurs. So cool.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:35:29 +0000", "from_user": "xandria_jdw", "from_user_id": 27182009, "from_user_id_str": "27182009", "from_user_name": "Maria Van Tine", "geo": null, "id": 148667756550684670, "id_str": "148667756550684672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1684621751/IMG-20111103-00572_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684621751/IMG-20111103-00572_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:34:18 +0000", "from_user": "JasminGeeDGAF_", "from_user_id": 236092998, "from_user_id_str": "236092998", "from_user_name": "ThtChick Jasmin", "geo": null, "id": 148667457438097400, "id_str": "148667457438097408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670436652/snapshot-4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670436652/snapshot-4_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:33:56 +0000", "from_user": "Hamda_AlHashemi", "from_user_id": 131757852, "from_user_id_str": "131757852", "from_user_name": "\\u062D\\u0645\\u062F\\u0629 \\u0627\\u0644\\u0647\\u0627\\u0634\\u0645\\u064A \\u2655", "geo": null, "id": 148667364915941380, "id_str": "148667364915941376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689532651/7b79ef52-49c6-41d0-9e8e-ea8dd4646c58_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689532651/7b79ef52-49c6-41d0-9e8e-ea8dd4646c58_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Birds are considered to be dinosaurs.. #fact ._.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:33:24 +0000", "from_user": "IHeardISSUE", "from_user_id": 167303523, "from_user_id_str": "167303523", "from_user_name": "ISSUE", "geo": null, "id": 148667230861803520, "id_str": "148667230861803520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696031590/PIG_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696031590/PIG_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@praveenoar \"it's so amazing, I love dinosaurs.\"", "to_user": "praveenoar", "to_user_id": 26967895, "to_user_id_str": "26967895", "to_user_name": "Praveen Rao ", "in_reply_to_status_id": 148666298065358850, "in_reply_to_status_id_str": "148666298065358849"}, +{"created_at": "Mon, 19 Dec 2011 07:32:43 +0000", "from_user": "YingRuu_Weeeeet", "from_user_id": 349585408, "from_user_id_str": "349585408", "from_user_name": "\\u00A5\\u00A1NG\\u0413U\\u00A9", "geo": null, "id": 148667057062412300, "id_str": "148667057062412288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1672991570/MLM79BfK_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672991570/MLM79BfK_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:32:36 +0000", "from_user": "xtranoise", "from_user_id": 16989390, "from_user_id_str": "16989390", "from_user_name": "Sonia", "geo": null, "id": 148667030118207500, "id_str": "148667030118207488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1470062073/Imagen000-1__8__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1470062073/Imagen000-1__8__normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/Fih0U22D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:32:33 +0000", "from_user": "KevinLi89", "from_user_id": 15804997, "from_user_id_str": "15804997", "from_user_name": "KevinLi89", "geo": null, "id": 148667015333298180, "id_str": "148667015333298176", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688279282/bDRzoADO_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688279282/bDRzoADO_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@eequilibrium dinosaurs", "to_user": "eequilibrium", "to_user_id": 53286779, "to_user_id_str": "53286779", "to_user_name": "Irene M", "in_reply_to_status_id": 148657972514521100, "in_reply_to_status_id_str": "148657972514521088"}, +{"created_at": "Mon, 19 Dec 2011 07:31:50 +0000", "from_user": "krystinalau", "from_user_id": 26832369, "from_user_id_str": "26832369", "from_user_name": "Krystina Lau", "geo": null, "id": 148666835934527500, "id_str": "148666835934527488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701889800/JiffyScreenShotFree-04-15-2011_23-22-08_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701889800/JiffyScreenShotFree-04-15-2011_23-22-08_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@LJehman they have a super sweet airport though. Go look for the dinosaurs they always make me happy.", "to_user": "LJehman", "to_user_id": 38358564, "to_user_id_str": "38358564", "to_user_name": "Luke Ehman", "in_reply_to_status_id": 148664988591063040, "in_reply_to_status_id_str": "148664988591063040"}, +{"created_at": "Mon, 19 Dec 2011 07:30:46 +0000", "from_user": "Jana_Waly", "from_user_id": 225816805, "from_user_id_str": "225816805", "from_user_name": "Jana Waly", "geo": null, "id": 148666568774135800, "id_str": "148666568774135808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690602214/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690602214/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:30:07 +0000", "from_user": "wandaDMC", "from_user_id": 188075302, "from_user_id_str": "188075302", "from_user_name": "wanda", "geo": null, "id": 148666405011726340, "id_str": "148666405011726336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676079400/Afbeelding140_1w_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676079400/Afbeelding140_1w_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:29:38 +0000", "from_user": "Callie_Bells", "from_user_id": 174718748, "from_user_id_str": "174718748", "from_user_name": "Callie Shepherd", "geo": null, "id": 148666283792154620, "id_str": "148666283792154624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1660330734/peuf_20111126_123_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660330734/peuf_20111126_123_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:28:44 +0000", "from_user": "ImmaQlt", "from_user_id": 270010643, "from_user_id_str": "270010643", "from_user_name": "Renee", "geo": null, "id": 148666056293093380, "id_str": "148666056293093376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696136955/ImmaQlt_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696136955/ImmaQlt_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:27:52 +0000", "from_user": "Stallz_InyoJawz", "from_user_id": 235756135, "from_user_id_str": "235756135", "from_user_name": "CHICAGOxMade", "geo": null, "id": 148665838814236670, "id_str": "148665838814236672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1655711081/IMG_9732_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655711081/IMG_9732_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster</a>", "text": "I was so fucked up one time I thought errbody was dragons and dinosaurs n shit. I was sooo scared g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:27:35 +0000", "from_user": "Monica_y23", "from_user_id": 292932852, "from_user_id_str": "292932852", "from_user_name": "Monica Romero", "geo": null, "id": 148665767443963900, "id_str": "148665767443963904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684206954/2011-02-27_15.42.26_edit0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684206954/2011-02-27_15.42.26_edit0_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:27:02 +0000", "from_user": "pinoypj", "from_user_id": 337345630, "from_user_id_str": "337345630", "from_user_name": "PJ Quinto", "geo": null, "id": 148665628117577730, "id_str": "148665628117577728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1448697860/mee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1448697860/mee_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/aWzFDh6l", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:26:15 +0000", "from_user": "EstefiSoda96", "from_user_id": 329512666, "from_user_id_str": "329512666", "from_user_name": "Estefania Gonzalez", "geo": null, "id": 148665431010455550, "id_str": "148665431010455552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680610303/images3333_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680610303/images3333_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:26:10 +0000", "from_user": "Belle_Afrique", "from_user_id": 40819476, "from_user_id_str": "40819476", "from_user_name": "Nik\\u00E9, not the shoe", "geo": null, "id": 148665409103597570, "id_str": "148665409103597568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699896160/1hwf12_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699896160/1hwf12_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#IWasThatKid that screamed in excited for anything that had to do with dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:25:40 +0000", "from_user": "beLaniful", "from_user_id": 368506745, "from_user_id_str": "368506745", "from_user_name": "thulani ndzishe", "geo": null, "id": 148665282871824400, "id_str": "148665282871824384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695335039/IMG01778-20111215-1640_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695335039/IMG01778-20111215-1640_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:25:15 +0000", "from_user": "Dixieqfx", "from_user_id": 431766508, "from_user_id_str": "431766508", "from_user_name": "Dixie Haith", "geo": null, "id": 148665180090404860, "id_str": "148665180090404864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681172193/eg1eji453q_131690635-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681172193/eg1eji453q_131690635-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Lost Dinosaurs of Egypt / Documentary [VHS]: http://t.co/Auh0n38f", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:24:10 +0000", "from_user": "SoniaCabano2", "from_user_id": 348951998, "from_user_id_str": "348951998", "from_user_name": "Sonia Cabano", "geo": null, "id": 148664906999279600, "id_str": "148664906999279616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1661711103/IMG00451-20111117-1427_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661711103/IMG00451-20111117-1427_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "When I say 'Give me exciting dreams' I mean George Clooney, not dinosaurs in my kitchen", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:22:33 +0000", "from_user": "holidaytoysorg", "from_user_id": 437480450, "from_user_id_str": "437480450", "from_user_name": "Holiday Toys Reviews", "geo": null, "id": 148664501460402180, "id_str": "148664501460402176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694604988/1_normal.jpg", "profile_image_url_https": null, "source": "<a href="http://www.holidaytoys.org" rel="nofollow">Holiday Toy Lists & Reviews</a>", "text": "http://t.co/Wg6DPjO4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:21:14 +0000", "from_user": "limansk", "from_user_id": 188763893, "from_user_id_str": "188763893", "from_user_name": "\\u041C\\u0430\\u043A\\u0441\\u0438\\u043C \\u0420\\u0435\\u0441\\u043D\\u044F\\u043D\\u0441\\u043A\\u0438\\u0439", "geo": null, "id": 148664168961163260, "id_str": "148664168961163264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669704290/Admin_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669704290/Admin_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I favorited a @YouTube videofrom @ukf http://t.co/pCOd79kd 16bit - Dinosaurs (Official Video)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:21:04 +0000", "from_user": "ClaireRainbow", "from_user_id": 49412150, "from_user_id_str": "49412150", "from_user_name": "Claire Cottingham", "geo": null, "id": 148664127919890430, "id_str": "148664127919890433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700353975/ClaireRainbow_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700353975/ClaireRainbow_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @Maddie28: @ClaireRainbow '...god destroys dinosaurs, god creates man, man creates dinosaurs..' 'dinosaurs... eat man... woman inherits the earth!'", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:20:44 +0000", "from_user": "natalee_love", "from_user_id": 230949875, "from_user_id_str": "230949875", "from_user_name": "cold'hearted", "geo": null, "id": 148664043224317950, "id_str": "148664043224317952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697747893/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697747893/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@LazyPhotog ahahaha . nahhh really I haven't had sex since dinosaurs were alive . ahaha", "to_user": "LazyPhotog", "to_user_id": 215406701, "to_user_id_str": "215406701", "to_user_name": "Auto-Bot \\u00B0___\\u00B0 ", "in_reply_to_status_id": 148663659789422600, "in_reply_to_status_id_str": "148663659789422592"}, +{"created_at": "Mon, 19 Dec 2011 07:20:02 +0000", "from_user": "PearlDrumsEuro", "from_user_id": 312521062, "from_user_id_str": "312521062", "from_user_name": "Pearl Drums Europe", "geo": null, "id": 148663866971267070, "id_str": "148663866971267072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1385461627/Twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1385461627/Twitter_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Tonight: Pearl Artist Moritz M\\u00FCller with Aura Dione before the Dinosaurs in #Kopenhagen @auradione : http://t.co/lUGYY0nb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:19:10 +0000", "from_user": "turbohat", "from_user_id": 19993896, "from_user_id_str": "19993896", "from_user_name": "Darryl Ellson", "geo": null, "id": 148663648724848640, "id_str": "148663648724848641", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1576425257/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576425257/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "It's Ice Age 3 Dawn of the Dinosaurs........ Again.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:18:31 +0000", "from_user": "MookChamberlin", "from_user_id": 335349034, "from_user_id_str": "335349034", "from_user_name": "MOOK", "geo": null, "id": 148663484962451460, "id_str": "148663484962451456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702430053/IMAG0228-1-1-1-1-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702430053/IMAG0228-1-1-1-1-1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Lmao \\u00AB@TopFlyghtEnt_G Dis nigga @I_am_the_partee old ass dinosaurs\\u00BB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:18:20 +0000", "from_user": "Will_ACA", "from_user_id": 49693404, "from_user_id_str": "49693404", "from_user_name": "Will \\u2611", "geo": null, "id": 148663439210987520, "id_str": "148663439210987520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1669911581/Will_ACA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669911581/Will_ACA_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@TopFlyghtEnt_G Dis nigga @I_am_the_partee old ass dinosaurs\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:18:06 +0000", "from_user": "McShady41", "from_user_id": 246993362, "from_user_id_str": "246993362", "from_user_name": "Michael S. A Mbwambo", "geo": null, "id": 148663380394262530, "id_str": "148663380394262528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1685187890/h_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685187890/h_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "do u know that Tanzania have dinosaurs remains#costech", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:18:05 +0000", "from_user": "TopFlyghtEnt_G", "from_user_id": 227345710, "from_user_id_str": "227345710", "from_user_name": "TFE HOTSHIT", "geo": null, "id": 148663374044078080, "id_str": "148663374044078082", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1656551181/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656551181/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Dis nigga @I_am_the_partee old ass dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:18:04 +0000", "from_user": "schemingbites", "from_user_id": 89358821, "from_user_id_str": "89358821", "from_user_name": "Cherjaine Bites", "geo": null, "id": 148663370134986750, "id_str": "148663370134986752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1678484864/2011-12-06_12.59_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678484864/2011-12-06_12.59_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:17:01 +0000", "from_user": "Rachelisbosss", "from_user_id": 181703792, "from_user_id_str": "181703792", "from_user_name": "Rachel Deleon", "geo": null, "id": 148663107244408830, "id_str": "148663107244408832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691888743/8e8dd51f43b1__1319776553000_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691888743/8e8dd51f43b1__1319776553000_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:16:25 +0000", "from_user": "SoyLora", "from_user_id": 249799495, "from_user_id_str": "249799495", "from_user_name": "khalifa ", "geo": null, "id": 148662954538172400, "id_str": "148662954538172416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1666922190/IMG-20111201-00231_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666922190/IMG-20111201-00231_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:16:22 +0000", "from_user": "khurtubisee", "from_user_id": 346395734, "from_user_id_str": "346395734", "from_user_name": "Kiersten Hurtubise", "geo": null, "id": 148662944383766530, "id_str": "148662944383766528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698077950/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698077950/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:16:07 +0000", "from_user": "StoreDaily", "from_user_id": 334978587, "from_user_id_str": "334978587", "from_user_name": "StoreDaily", "geo": null, "id": 148662879703408640, "id_str": "148662879703408640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1441292205/1-3-54_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1441292205/1-3-54_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Best Magic Tree House Boxed Set, Books 1-4: Dinosaurs Before Dark, The Knight at Dawn, Mummies in the Morning, a... http://t.co/4IMrRRiF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:15:31 +0000", "from_user": "halshamaileh", "from_user_id": 26365674, "from_user_id_str": "26365674", "from_user_name": "hannah alshamaileh", "geo": null, "id": 148662729052401660, "id_str": "148662729052401665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1503012287/IMG_20110721_180051-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1503012287/IMG_20110721_180051-1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:14:49 +0000", "from_user": "Fukinn_Jennknee", "from_user_id": 256720595, "from_user_id_str": "256720595", "from_user_name": "hakuna matata \\u263C", "geo": null, "id": 148662552006631420, "id_str": "148662552006631425", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697217173/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697217173/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "from where ? D; RT @Fukinn_Pookyy: Dinosaurs are comingggg! @Fukinn_jennknee", "to_user": "Fukinn_Pookyy", "to_user_id": 306453310, "to_user_id_str": "306453310", "to_user_name": "WeMurderFloors' \\u2665", "in_reply_to_status_id": 148662333810556930, "in_reply_to_status_id_str": "148662333810556928"}, +{"created_at": "Mon, 19 Dec 2011 07:14:48 +0000", "from_user": "kezzy_wezzy29", "from_user_id": 324233549, "from_user_id_str": "324233549", "from_user_name": "Kasey Wester (:", "geo": null, "id": 148662548269514750, "id_str": "148662548269514752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1664603093/Snapshot_20111105_4_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664603093/Snapshot_20111105_4_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "i wish dinosaurs were still alive.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:14:22 +0000", "from_user": "LouiseLoserface", "from_user_id": 170040007, "from_user_id_str": "170040007", "from_user_name": "Louise Ye", "geo": null, "id": 148662440450736130, "id_str": "148662440450736130", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1609731015/Face150_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609731015/Face150_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Last Day of the Dinosaurs is on #DiscoveryChannel right now! #BestNightEver! Hahah.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:14:11 +0000", "from_user": "vannuhh217", "from_user_id": 327139058, "from_user_id_str": "327139058", "from_user_name": "Savannah Wagner", "geo": null, "id": 148662395353579520, "id_str": "148662395353579521", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693118587/v3gUB6HK_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693118587/v3gUB6HK_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:14:10 +0000", "from_user": "dejasdead", "from_user_id": 190417785, "from_user_id_str": "190417785", "from_user_name": "Daniel Ramirez", "geo": null, "id": 148662388193902600, "id_str": "148662388193902593", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699194440/bday_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699194440/bday_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "And all these dinosaurs is crashin' at my place tonight", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:13:57 +0000", "from_user": "Fukinn_Pookyy", "from_user_id": 306453310, "from_user_id_str": "306453310", "from_user_name": "WeMurderFloors' \\u2665", "geo": null, "id": 148662333810556930, "id_str": "148662333810556928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1591794141/construction_worker_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591794141/construction_worker_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Dinosaurs are comingggg! @Fukinn_jennknee", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:13:52 +0000", "from_user": "dejasdead", "from_user_id": 190417785, "from_user_id_str": "190417785", "from_user_name": "Daniel Ramirez", "geo": null, "id": 148662315833761800, "id_str": "148662315833761792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699194440/bday_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699194440/bday_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I smoke a spliff tonight\\nMe and these dinosaurs is gettin' freakin' ripped tonight\\nWe gettin' faced tonight", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:13:10 +0000", "from_user": "Kimberlocks", "from_user_id": 42059229, "from_user_id_str": "42059229", "from_user_name": "Kim Cardoso \\u2651", "geo": null, "id": 148662136657293300, "id_str": "148662136657293313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670490931/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670490931/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Watching the discovery channel Last day of the dinosaurs. So breathtaking and interesting but I'm sad about what happened to the #dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:12:25 +0000", "from_user": "astoldby_Bria", "from_user_id": 436098907, "from_user_id_str": "436098907", "from_user_name": "Alana Zilla Scrilla.", "geo": null, "id": 148661951394877440, "id_str": "148661951394877440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693987819/331515416_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693987819/331515416_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "I remember the heated debate me & @Trexxx1LOVETO had about dinosaurs one night lmao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:12:24 +0000", "from_user": "SwizzleBro", "from_user_id": 351932244, "from_user_id_str": "351932244", "from_user_name": "Collin Lightfoot", "geo": null, "id": 148661945740967940, "id_str": "148661945740967936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1605584175/7wedE6IJ_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1605584175/7wedE6IJ_normal", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#Oomf doesn't believe in dinosaurs-__- ThaFreak!? But it doesn't matter cause she's sexy.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:12:17 +0000", "from_user": "thedasophasath", "from_user_id": 49802869, "from_user_id_str": "49802869", "from_user_name": "Thida Sophasath", "geo": null, "id": 148661916011733000, "id_str": "148661916011732993", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688248478/thedasophasath_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688248478/thedasophasath_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/rmHL1rOn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:12:09 +0000", "from_user": "PaleontologIcoo", "from_user_id": 373095382, "from_user_id_str": "373095382", "from_user_name": "Casey Lee", "geo": null, "id": 148661883698814980, "id_str": "148661883698814977", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1541873404/1315964343_nautilus_home2_08_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541873404/1315964343_nautilus_home2_08_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/dP4u5luU Dec 19, 2011: Exhibit Case: Dinosaurs in Our Backyard at National ...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:11:33 +0000", "from_user": "Jay24yadigg", "from_user_id": 271089956, "from_user_id_str": "271089956", "from_user_name": "Jimberto Pulido \\uF8EB", "geo": null, "id": 148661731223281660, "id_str": "148661731223281664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700895949/IMG00026-20111218-1417_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700895949/IMG00026-20111218-1417_1_normal.jpg", "source": "<a href="http://newsforward.org" rel="nofollow">NewsForward for BlackBerry</a>", "text": "My little cousin is in 4th grade & is color blind yet he knows so much about dinosaurs & space things I would've never learned !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:11:22 +0000", "from_user": "OneShot_BANG", "from_user_id": 233122705, "from_user_id_str": "233122705", "from_user_name": "Jamal Zetino", "geo": null, "id": 148661684830085120, "id_str": "148661684830085120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679907150/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679907150/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "RT @DizzleKang: kiss me if i'm wrong, but dinosaurs exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:11:06 +0000", "from_user": "RAWRFAYCE", "from_user_id": 30809199, "from_user_id_str": "30809199", "from_user_name": "Squid", "geo": null, "id": 148661617868029950, "id_str": "148661617868029952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1641735482/hai_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641735482/hai_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Sitting here reading Zombies vs. Unicorns while watching a show on dinosaurs? Yeah, you know I'm cool :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:10:40 +0000", "from_user": "mojomonkey_12", "from_user_id": 29913693, "from_user_id_str": "29913693", "from_user_name": "Jeremy M. Brown", "geo": null, "id": 148661507855622140, "id_str": "148661507855622144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1672813552/2110_Santasized_jpg-300x0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672813552/2110_Santasized_jpg-300x0_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Kyledk05 well i don't think the dinosaurs were shooting, and it didn't review well, but it was made", "to_user": "Kyledk05", "to_user_id": 269309979, "to_user_id_str": "269309979", "to_user_name": "Kyle D.K. ", "in_reply_to_status_id": 148660449603362800, "in_reply_to_status_id_str": "148660449603362816"}, +{"created_at": "Mon, 19 Dec 2011 07:10:09 +0000", "from_user": "cyrusrogie", "from_user_id": 150572028, "from_user_id_str": "150572028", "from_user_name": "Cyrus Rogie Batayan", "geo": null, "id": 148661378301964300, "id_str": "148661378301964289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1631891164/photo1077_001_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631891164/photo1077_001_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Kiss me if I'm wrong. but dinosaurs do exist right? :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:10:06 +0000", "from_user": "lizlikeswaffles", "from_user_id": 305866414, "from_user_id_str": "305866414", "from_user_name": "Elizabeth", "geo": null, "id": 148661367132536830, "id_str": "148661367132536832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686143664/686317693_2454236446_0_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686143664/686317693_2454236446_0_normal.jpeg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/OTaTCHzQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:09:46 +0000", "from_user": "markyymarkkk", "from_user_id": 167626237, "from_user_id_str": "167626237", "from_user_name": "Mark Anthony Miranda", "geo": null, "id": 148661284156604400, "id_str": "148661284156604416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693915562/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693915562/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "RT @DizzleKang: kiss me if i'm wrong, but dinosaurs exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:09:24 +0000", "from_user": "Yasminx0x0x0", "from_user_id": 360845890, "from_user_id_str": "360845890", "from_user_name": "yasminnndawg", "geo": null, "id": 148661188643930100, "id_str": "148661188643930112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1510317261/295924_227765253935797_100001069732099_608833_6389619_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1510317261/295924_227765253935797_100001069732099_608833_6389619_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"@TheeSickestGirl: Parent: \"Well when I was your age...\" Me: STFU WHEN YOU WERE MY AGE, YOU RODE DINOSAURS!\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:08:57 +0000", "from_user": "Orelys_x", "from_user_id": 284681697, "from_user_id_str": "284681697", "from_user_name": "Orelys", "geo": null, "id": 148661079189360640, "id_str": "148661079189360640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697847344/Image749_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697847344/Image749_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:08:55 +0000", "from_user": "allie_camp", "from_user_id": 410345968, "from_user_id_str": "410345968", "from_user_name": "Allie Camp", "geo": null, "id": 148661067231404030, "id_str": "148661067231404033", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688404417/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688404417/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Hahah what two tweets in a row about dinosaurs :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:08:23 +0000", "from_user": "l0v3_notes", "from_user_id": 440110752, "from_user_id_str": "440110752", "from_user_name": "Love Notes", "geo": null, "id": 148660936578842620, "id_str": "148660936578842624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700337574/LOVE_PIC_25_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700337574/LOVE_PIC_25_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT if you used to think those construction cranes were metal dinosaurs :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:07:22 +0000", "from_user": "M_Tumsah", "from_user_id": 144366928, "from_user_id_str": "144366928", "from_user_name": "M\\u03C5\\u06AA\\u03B1 \\u2020\\u03C5\\u043C\\u06AA\\u03B1h", "geo": null, "id": 148660678998229000, "id_str": "148660678998228992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698531022/331615875_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698531022/331615875_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:06:46 +0000", "from_user": "Mountain_BikeUK", "from_user_id": 327869466, "from_user_id_str": "327869466", "from_user_name": "Mountain Bike UK", "geo": null, "id": 148660529462902800, "id_str": "148660529462902784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1423117344/Mountain-Bike_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1423117344/Mountain-Bike_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#10: Doctor Who - U.N.I.T Files (Invasion of the Dinosaurs and the Android Invasion) [DVD] http://t.co/vlJAbGwM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:06:44 +0000", "from_user": "TweetMichaelFan", "from_user_id": 53858501, "from_user_id_str": "53858501", "from_user_name": "TweetMichaelFan", "geo": null, "id": 148660519597916160, "id_str": "148660519597916160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/297970793/capture16_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/297970793/capture16_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "DVD : #10: Doctor Who - U.N.I.T Files (Invasion of the Dinosaurs and the Android Invasion) [DVD] http://t.co/EBwVmJ6z", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:06:42 +0000", "from_user": "GamesnGadgets09", "from_user_id": 88325238, "from_user_id_str": "88325238", "from_user_name": "GamesnGadgets", "geo": null, "id": 148660511028949000, "id_str": "148660511028948992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1434376858/capture5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1434376858/capture5_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "DVD : #10: Doctor Who - U.N.I.T Files (Invasion of the Dinosaurs and the Android Invasion) [DVD] http://t.co/CkY4bMq9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:06:41 +0000", "from_user": "SuperFastSixPac", "from_user_id": 54584816, "from_user_id_str": "54584816", "from_user_name": "SuperFastSixPac", "geo": null, "id": 148660507883221000, "id_str": "148660507883220992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/301883238/capture7__2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/301883238/capture7__2__normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "DVD : #10: Doctor Who - U.N.I.T Files (Invasion of the Dinosaurs and the Android Invasion) [DVD] http://t.co/MsJ4I2lD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:06:40 +0000", "from_user": "Amazon_Store_UK", "from_user_id": 327426419, "from_user_id_str": "327426419", "from_user_name": "AmazonStoreUK", "geo": null, "id": 148660504771051520, "id_str": "148660504771051520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1422036315/Amazon_Shop_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1422036315/Amazon_Shop_normal.gif", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "DVD : #10: Doctor Who - U.N.I.T Files (Invasion of the Dinosaurs and the Android Invasion) [DVD] http://t.co/gFUmwlNi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:06:40 +0000", "from_user": "TweetLottoWins", "from_user_id": 85085464, "from_user_id_str": "85085464", "from_user_name": "tweetlottowins", "geo": null, "id": 148660503760220160, "id_str": "148660503760220161", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/489361296/case_of_money_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/489361296/case_of_money_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "DVD : #10: Doctor Who - U.N.I.T Files (Invasion of the Dinosaurs and the Android Invasion) [DVD] http://t.co/LalQXvun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:06:37 +0000", "from_user": "AmazonDVDShop1", "from_user_id": 405402728, "from_user_id_str": "405402728", "from_user_name": "AmazonDVDShop", "geo": null, "id": 148660490413932540, "id_str": "148660490413932544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1623485222/Amazon_DVD_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1623485222/Amazon_DVD_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "DVD : #10: Doctor Who - U.N.I.T Files (Invasion of the Dinosaurs and the Android Invasion) [DVD] http://t.co/wQKMOdmc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:06:30 +0000", "from_user": "iam_Foolish", "from_user_id": 189328460, "from_user_id_str": "189328460", "from_user_name": "Richard Schwartz", "geo": null, "id": 148660458746937340, "id_str": "148660458746937344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693802329/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693802329/image_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @StillSweet_Doll: bwhaaa #poorLilTinkTink @iam_Foolish @StillSweet_Doll haha chill... People had gushers and pop tarts... I had dinosaurs and toast ems...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:06:18 +0000", "from_user": "thealannahshow", "from_user_id": 272264029, "from_user_id_str": "272264029", "from_user_name": "Alannah Jones", "geo": null, "id": 148660412508942340, "id_str": "148660412508942337", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695968653/230126_131275170280198_100001931474019_221462_7204594_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695968653/230126_131275170280198_100001931474019_221462_7204594_n_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/E2dorzsF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:06:12 +0000", "from_user": "RM_Ika", "from_user_id": 330126783, "from_user_id_str": "330126783", "from_user_name": "Garcia Merit", "geo": null, "id": 148660385224994800, "id_str": "148660385224994816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1428580378/Waterfall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1428580378/Waterfall_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:06:03 +0000", "from_user": "HelloKittyAnime", "from_user_id": 155396557, "from_user_id_str": "155396557", "from_user_name": "~", "geo": null, "id": 148660342594084860, "id_str": "148660342594084866", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687522119/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687522119/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Went back in time and met some dinosaurs. Rawrr! http://t.co/kWgOidSy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:04:31 +0000", "from_user": "deja_raconte", "from_user_id": 328647599, "from_user_id_str": "328647599", "from_user_name": "scherezadey", "geo": null, "id": 148659960870469630, "id_str": "148659960870469632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1640599459/kinking_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640599459/kinking_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "dinosaurs. wheeee --> http://t.co/wxOEYbqL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:03:46 +0000", "from_user": "L0Dick", "from_user_id": 323567028, "from_user_id_str": "323567028", "from_user_name": "Keisha Munoz", "geo": null, "id": 148659771799642100, "id_str": "148659771799642112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700775180/KEKE123_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700775180/KEKE123_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:03:35 +0000", "from_user": "daLUISTRO", "from_user_id": 100130355, "from_user_id_str": "100130355", "from_user_name": "dluistro", "geo": null, "id": 148659724995395600, "id_str": "148659724995395584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697763272/IMG00053-20111216-1914_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697763272/IMG00053-20111216-1914_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Would be live if dinosaurs still were alive todaay.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:03:05 +0000", "from_user": "Aidesce", "from_user_id": 430043935, "from_user_id_str": "430043935", "from_user_name": "Aide Foose", "geo": null, "id": 148659600512659460, "id_str": "148659600512659457", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1677513819/c4lg4v45m3_132459583_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677513819/c4lg4v45m3_132459583_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "View-Master 3D Reels Ice Age Dawn of the Dinosaurs: http://t.co/uyOmSXbe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:02:57 +0000", "from_user": "FlawlessCenzo", "from_user_id": 170924517, "from_user_id_str": "170924517", "from_user_name": "Scott McCall \\u2654", "geo": null, "id": 148659566056443900, "id_str": "148659566056443904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687783628/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687783628/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "last day of the dinosaurs is on and I'm so tempted to watch it. I'VE SEEN IT LIKE 25 TIMES AND I WANT TO GO TO BED BUT ITS SO GOOD.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:02:53 +0000", "from_user": "DizzleKang", "from_user_id": 21698373, "from_user_id_str": "21698373", "from_user_name": "Daisy Kang", "geo": null, "id": 148659549790945280, "id_str": "148659549790945280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685562537/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685562537/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "kiss me if i'm wrong, but dinosaurs exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:02:51 +0000", "from_user": "StillSweet_Doll", "from_user_id": 184673805, "from_user_id_str": "184673805", "from_user_name": "crystalDaDoll", "geo": null, "id": 148659544241868800, "id_str": "148659544241868800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686527542/2011-07-22_15.56.56-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686527542/2011-07-22_15.56.56-2_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "bwhaaa #poorLilTinkTink @iam_Foolish @StillSweet_Doll haha chill... People had gushers and pop tarts... I had dinosaurs and toast ems...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:02:45 +0000", "from_user": "tshipka", "from_user_id": 364673981, "from_user_id_str": "364673981", "from_user_name": "Teagan Shipka", "geo": null, "id": 148659517805170700, "id_str": "148659517805170688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688491264/26990_418184517024_650667024_5422159_659270_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688491264/26990_418184517024_650667024_5422159_659270_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Watching a documentary about dinosaurs in drumheller #suitable", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:02:14 +0000", "from_user": "lissybluebell", "from_user_id": 45690697, "from_user_id_str": "45690697", "from_user_name": "Elisabeth Blue", "geo": null, "id": 148659385533595650, "id_str": "148659385533595648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686575613/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686575613/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Oh! Last Day of the Dinosaurs is starting again!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:02:01 +0000", "from_user": "Jillloww", "from_user_id": 214145564, "from_user_id_str": "214145564", "from_user_name": "Jill H.", "geo": null, "id": 148659331385143300, "id_str": "148659331385143298", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1599083739/DNgzjpw3_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599083739/DNgzjpw3_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 07:01:53 +0000", "from_user": "MadiAguirre", "from_user_id": 375692819, "from_user_id_str": "375692819", "from_user_name": "Madison Aguirre", "geo": null, "id": 148659298573099000, "id_str": "148659298573099008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1663761644/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663761644/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "#IWasThatKid that played with dinosaurs&cars.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:01:23 +0000", "from_user": "Kyledk05", "from_user_id": 269309979, "from_user_id_str": "269309979", "from_user_name": "Kyle D.K. ", "geo": null, "id": 148659172643319800, "id_str": "148659172643319808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1670850916/Gir2Waffles_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670850916/Gir2Waffles_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "I still think an FPS with dragons would be awesome. Hell, why don't we throw in dinosaurs too? An FPS where you shoot dinosaurs and dragons.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:01:11 +0000", "from_user": "Arimy21", "from_user_id": 255317161, "from_user_id_str": "255317161", "from_user_name": "Dellie Ponce", "geo": null, "id": 148659121573478400, "id_str": "148659121573478400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1498738986/emo_love_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1498738986/emo_love_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:01:04 +0000", "from_user": "_Scorch_", "from_user_id": 89646548, "from_user_id_str": "89646548", "from_user_name": "The Human Scorch", "geo": null, "id": 148659095103225860, "id_str": "148659095103225856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700935012/human_torch_flame_on_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700935012/human_torch_flame_on_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@lissybluebell I never heard a satisfactory one. All I ever heard was \"dinosaurs aren't in the Bible.\" .....Ummmmmm..........", "to_user": "lissybluebell", "to_user_id": 45690697, "to_user_id_str": "45690697", "to_user_name": "Elisabeth Blue", "in_reply_to_status_id": 148658330242519040, "in_reply_to_status_id_str": "148658330242519041"}, +{"created_at": "Mon, 19 Dec 2011 07:00:51 +0000", "from_user": "iam_Foolish", "from_user_id": 189328460, "from_user_id_str": "189328460", "from_user_name": "Richard Schwartz", "geo": null, "id": 148659039516098560, "id_str": "148659039516098560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693802329/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693802329/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@StillSweet_Doll haha chill... People had gushers and pop tarts... I had dinosaurs and toast ems...", "to_user": "StillSweet_Doll", "to_user_id": 184673805, "to_user_id_str": "184673805", "to_user_name": "crystalDaDoll", "in_reply_to_status_id": 148658484605493250, "in_reply_to_status_id_str": "148658484605493248"}, +{"created_at": "Mon, 19 Dec 2011 07:00:14 +0000", "from_user": "kristenlayman", "from_user_id": 265878907, "from_user_id_str": "265878907", "from_user_name": "Kristen Blair Layman", "geo": null, "id": 148658883102130180, "id_str": "148658883102130176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1272035336/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1272035336/image_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @TheeSickestGirl: Parent: \"Well when I was your age...\" Me: STFU WHEN YOU WERE MY AGE, YOU RODE DINOSAURS!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:58:59 +0000", "from_user": "AlexTchernaya", "from_user_id": 221427274, "from_user_id_str": "221427274", "from_user_name": "AlexandraTchernaya", "geo": null, "id": 148658568852275200, "id_str": "148658568852275200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1182472617/profff_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1182472617/profff_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Everything is so magical,any second now they'll be unicorns cantering all over the place and dinosaurs giving out free pizza!I had no sleep", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:58:31 +0000", "from_user": "adrie_leroux", "from_user_id": 243774367, "from_user_id_str": "243774367", "from_user_name": "Adrie le Roux", "geo": null, "id": 148658452451954700, "id_str": "148658452451954688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1636561876/a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1636561876/a_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Dinosaurs also have high tea at the Mt Nelson :) http://t.co/fogGNhLK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:58:16 +0000", "from_user": "rakmovie", "from_user_id": 382954751, "from_user_id_str": "382954751", "from_user_name": "rakmovie", "geo": null, "id": 148658387310231550, "id_str": "148658387310231552", "iso_language_code": "th", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1567829636/2011-09-30_234028_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1567829636/2011-09-30_234028_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Ice Age Dawn of the Dinosaurs \\u0E40\\u0E08\\u0E32\\u0E30\\u0E22\\u0E38\\u0E04\\u0E19\\u0E49\\u0E33\\u0E41\\u0E02\\u0E47\\u0E07\\u0E21\\u0E2B\\u0E31\\u0E28\\u0E08\\u0E23\\u0E23\\u0E22\\u0E4C 3 http://t.co/Xd2BXoIL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:58:03 +0000", "from_user": "RoosNeumann", "from_user_id": 325174786, "from_user_id_str": "325174786", "from_user_name": "Roos Neumann", "geo": null, "id": 148658335036612600, "id_str": "148658335036612608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698100801/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698100801/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:58:02 +0000", "from_user": "jurovich", "from_user_id": 18159265, "from_user_id_str": "18159265", "from_user_name": "Vern Jurovich", "geo": null, "id": 148658330246725630, "id_str": "148658330246725632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/112688681/033_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/112688681/033_normal.JPG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @FoxMe: A sausagefest made out of old guys in glasses and hats and jeans and t-shirts.... dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:56:52 +0000", "from_user": "daltonhealey", "from_user_id": 247143494, "from_user_id_str": "247143494", "from_user_name": "Dalton Healey", "geo": null, "id": 148658036779659260, "id_str": "148658036779659264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1661502084/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661502084/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#IWasThatKid who was obsessed with dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:56:17 +0000", "from_user": "Rossanasmq", "from_user_id": 431693877, "from_user_id_str": "431693877", "from_user_name": "Rossana Waldie", "geo": null, "id": 148657891346362370, "id_str": "148657891346362368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681025531/large_100_1096_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681025531/large_100_1096_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dinosaurs! (Turtleback School & Library Binding Edition) (DK Reader - Level 4): FOR USE IN SCHOOLS AND LIBRARIES... http://t.co/ZEphrUYM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:54:30 +0000", "from_user": "Sabrinay9", "from_user_id": 400979747, "from_user_id_str": "400979747", "from_user_name": "Hylda Gilbertson", "geo": null, "id": 148657441641480200, "id_str": "148657441641480193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1663262865/1004170288Nisean_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663262865/1004170288Nisean_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I'm a funny girl! has u can see i can take a good laff! i love hugs!!! Also i play the guitar and dinosaurs rule the world!!!! RAWR ( ;", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:53:04 +0000", "from_user": "GracieRebecca97", "from_user_id": 338795745, "from_user_id_str": "338795745", "from_user_name": "gracie toledo", "geo": null, "id": 148657082265112580, "id_str": "148657082265112576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1685747289/andrew_066_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685747289/andrew_066_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:52:20 +0000", "from_user": "MWalker1992", "from_user_id": 407062935, "from_user_id_str": "407062935", "from_user_name": "Matthew Walker", "geo": null, "id": 148656894540660740, "id_str": "148656894540660737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694737643/3VnN8XdU_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694737643/3VnN8XdU_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Maybe my manager will let me take half day of i let him play with dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:52:05 +0000", "from_user": "mixchan26", "from_user_id": 229740430, "from_user_id_str": "229740430", "from_user_name": "angela lumyeb", "geo": null, "id": 148656834578882560, "id_str": "148656834578882562", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1287675952/190768_1598593725282_1249181607_31257290_7134707_n_-_Copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1287675952/190768_1598593725282_1249181607_31257290_7134707_n_-_Copy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:51:57 +0000", "from_user": "sillysampi", "from_user_id": 89709462, "from_user_id_str": "89709462", "from_user_name": "Paramita Mohamad", "geo": null, "id": 148656799627743230, "id_str": "148656799627743232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690657896/IMG00668-20111206-1531_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690657896/IMG00668-20111206-1531_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@GraceAstari I can smell the desperation oozing from some dinosaurs agencies, trying to keep up with technology.", "to_user": "GraceAstari", "to_user_id": 36608482, "to_user_id_str": "36608482", "to_user_name": "Grace Italiaander", "in_reply_to_status_id": 148656468776849400, "in_reply_to_status_id_str": "148656468776849409"}, +{"created_at": "Mon, 19 Dec 2011 06:51:17 +0000", "from_user": "NoBetterName96", "from_user_id": 388330117, "from_user_id_str": "388330117", "from_user_name": "Cheryl Ong", "geo": null, "id": 148656630110756860, "id_str": "148656630110756864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699747414/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699747414/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:50:49 +0000", "from_user": "itsellibabe", "from_user_id": 284327263, "from_user_id_str": "284327263", "from_user_name": "Elli", "geo": null, "id": 148656515241357300, "id_str": "148656515241357313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1686508680/61lBD3YH_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686508680/61lBD3YH_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:50:01 +0000", "from_user": "schmabster", "from_user_id": 63411640, "from_user_id_str": "63411640", "from_user_name": "Tabatha Beiser", "geo": null, "id": 148656314556485630, "id_str": "148656314556485632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1610015778/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610015778/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @SamCassese: \"When I was little, I thought AD was After Dinosaurs. I'm talking about up to my freshman year...at Zion.\" -Zach Wable", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:49:59 +0000", "from_user": "askingdave", "from_user_id": 308309997, "from_user_id_str": "308309997", "from_user_name": "David Chrem", "geo": null, "id": 148656304582434800, "id_str": "148656304582434816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1375777952/227879_10100216654549391_5014384_51561261_5357096_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1375777952/227879_10100216654549391_5014384_51561261_5357096_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@TheBethPhoenix no karma? That's sorta scary... So are you the kind of person who doesn't believe in dinosaurs cause its not in the bible?", "to_user": "TheBethPhoenix", "to_user_id": 97690357, "to_user_id_str": "97690357", "to_user_name": "Beth Phoenix", "in_reply_to_status_id": 148650687658602500, "in_reply_to_status_id_str": "148650687658602496"}, +{"created_at": "Mon, 19 Dec 2011 06:49:12 +0000", "from_user": "_BOSSvsMODEL", "from_user_id": 105288118, "from_user_id_str": "105288118", "from_user_name": "\\uE230yourTRENDINGtopic", "geo": null, "id": 148656109190787070, "id_str": "148656109190787072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1659794266/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659794266/image_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@QuotesForGirlz Kiss me if i'm wrong but dinosaurs still exist right?\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:48:44 +0000", "from_user": "cposey49", "from_user_id": 31054166, "from_user_id_str": "31054166", "from_user_name": "Call Posey", "geo": null, "id": 148655989871218700, "id_str": "148655989871218689", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1434648126/Photo_on_2011-06-13_at_00.15_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1434648126/Photo_on_2011-06-13_at_00.15_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Killed some dinosaurs, watched Land of the Lost, and Jackass 3 with @ThtCuntHolSteve", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:48:21 +0000", "from_user": "marizelizabeth", "from_user_id": 107582987, "from_user_id_str": "107582987", "from_user_name": "Mariz Taytay", "geo": null, "id": 148655894186573820, "id_str": "148655894186573824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699911694/Picture0771_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699911694/Picture0771_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:47:14 +0000", "from_user": "Larainewuf", "from_user_id": 431707099, "from_user_id_str": "431707099", "from_user_name": "Laraine Eisenbrandt", "geo": null, "id": 148655610865524740, "id_str": "148655610865524736", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681047599/large_1272562755_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681047599/large_1272562755_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Pachyrhinosaurus (Procon): CollectA / Procon Dinosaurs http://t.co/Bkj1QjkY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:46:40 +0000", "from_user": "fortimsakeBGRDY", "from_user_id": 361107285, "from_user_id_str": "361107285", "from_user_name": "Tim Chaos", "geo": null, "id": 148655470352154620, "id_str": "148655470352154624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692379327/p20111213-221557_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692379327/p20111213-221557_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "I have no idea where these dinosaurs came from. #lefthandwonders", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:45:18 +0000", "from_user": "MitchKWong", "from_user_id": 239124350, "from_user_id_str": "239124350", "from_user_name": "Mitchell Wong", "geo": null, "id": 148655125416775680, "id_str": "148655125416775680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1572047630/mitchell_coke_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572047630/mitchell_coke_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@thewillchow lol. nothing beats when nathan thinks people lived with the dinosaurs.", "to_user": "thewillchow", "to_user_id": 161779130, "to_user_id_str": "161779130", "to_user_name": "William Chow", "in_reply_to_status_id": 148653555321028600, "in_reply_to_status_id_str": "148653555321028612"}, +{"created_at": "Mon, 19 Dec 2011 06:43:40 +0000", "from_user": "ROCKA_FELLA_", "from_user_id": 268595527, "from_user_id_str": "268595527", "from_user_name": "REBEL ROUSER", "geo": null, "id": 148654714928640000, "id_str": "148654714928640001", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701634401/DOPE2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701634401/DOPE2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#IWasThatKid who loved dinosaurs over everything, #JURASSICPARK was my #SHIT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:42:07 +0000", "from_user": "SkylarJade94", "from_user_id": 391819577, "from_user_id_str": "391819577", "from_user_name": "Skylar Syrnyk", "geo": null, "id": 148654324069826560, "id_str": "148654324069826560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690324069/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690324069/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:42:00 +0000", "from_user": "_CutieePatootie", "from_user_id": 203394366, "from_user_id_str": "203394366", "from_user_name": "Robin Christian", "geo": null, "id": 148654295921864700, "id_str": "148654295921864704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674824801/rob_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674824801/rob_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Me & Ekco are having some real serious conversations about life right now. Dinosaurs and all lllls , drunknesss smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:41:57 +0000", "from_user": "smallinfinities", "from_user_id": 40413222, "from_user_id_str": "40413222", "from_user_name": "Amber", "geo": null, "id": 148654281610887170, "id_str": "148654281610887169", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/518538226/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/518538226/twitterProfilePhoto_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Megrrrs Yeah, gluten free sugar cookies. With nommy frosting. :D Some in the shape of Christmas dinosaurs. :)", "to_user": "Megrrrs", "to_user_id": 47526647, "to_user_id_str": "47526647", "to_user_name": "Meggars", "in_reply_to_status_id": 148650517822844930, "in_reply_to_status_id_str": "148650517822844928"}, +{"created_at": "Mon, 19 Dec 2011 06:40:37 +0000", "from_user": "JediMasterSam", "from_user_id": 299247665, "from_user_id_str": "299247665", "from_user_name": "White Lightnin'", "geo": null, "id": 148653947236790270, "id_str": "148653947236790272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1620093749/twitterpic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620093749/twitterpic_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "What if Dinosaurs were created by the CIA as a means of discouraging time travel? #ConspiracyTheorySam", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:39:54 +0000", "from_user": "NouraHun", "from_user_id": 247773067, "from_user_id_str": "247773067", "from_user_name": "Noura *\\u2323\\u030A\\u2508\\u0325-\\u0336\\u032F\\u0361.\\u0338* ", "geo": null, "id": 148653764998471680, "id_str": "148653764998471680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1671883211/6000873099_9541cfc2c5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671883211/6000873099_9541cfc2c5_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Hahahahaa =)) RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:39:35 +0000", "from_user": "GabiBaby010", "from_user_id": 124977054, "from_user_id_str": "124977054", "from_user_name": "Gabriella Gaxiola", "geo": null, "id": 148653687034748930, "id_str": "148653687034748928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1640421142/SpYUYkeU_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640421142/SpYUYkeU_normal", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @heytheremo: kiss me if i'm wrong, but dinosaurs still exist right? ;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:39:11 +0000", "from_user": "Ispeaknoengrish", "from_user_id": 409048427, "from_user_id_str": "409048427", "from_user_name": "Angel Ochoa", "geo": null, "id": 148653586182705150, "id_str": "148653586182705152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1647564611/Up0Fxn4E_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647564611/Up0Fxn4E_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "@kaeteevee How did that get there!? And how did that rail get in my dinosaurs mouth!?!?!", "to_user": "kaeteevee", "to_user_id": 164399986, "to_user_id_str": "164399986", "to_user_name": "Karen \\u2652", "in_reply_to_status_id": 148653026515763200, "in_reply_to_status_id_str": "148653026515763200"}, +{"created_at": "Mon, 19 Dec 2011 06:38:36 +0000", "from_user": "heytheremo", "from_user_id": 434381393, "from_user_id_str": "434381393", "from_user_name": "morgannnn\\uE528", "geo": null, "id": 148653438404792320, "id_str": "148653438404792321", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687562434/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687562434/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "kiss me if i'm wrong, but dinosaurs still exist right? ;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:38:35 +0000", "from_user": "GabbyBruce", "from_user_id": 353578636, "from_user_id_str": "353578636", "from_user_name": "Gabby Bruce", "geo": null, "id": 148653435884015600, "id_str": "148653435884015617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1571037699/320084_10150368011020804_722780803_10258468_1739902828_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1571037699/320084_10150368011020804_722780803_10258468_1739902828_n_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/BirVl8bL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:38:04 +0000", "from_user": "KingTutSwagg", "from_user_id": 311659953, "from_user_id_str": "311659953", "from_user_name": "MeRK", "geo": null, "id": 148653303478235140, "id_str": "148653303478235136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701640273/302469_272995562725302_100000445805797_1054832_803863131_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701640273/302469_272995562725302_100000445805797_1054832_803863131_n_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @KlockwithaK: @KingTutSwagg lmaoo dinosaurs, gotta cop that Lion-O Thundercats sword too", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:37:43 +0000", "from_user": "KlockwithaK", "from_user_id": 20295847, "from_user_id_str": "20295847", "from_user_name": "Klock", "geo": null, "id": 148653215460769800, "id_str": "148653215460769792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1451970204/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1451970204/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "@KingTutSwagg lmaoo dinosaurs, gotta cop that Lion-O Thundercats sword too", "to_user": "KingTutSwagg", "to_user_id": 311659953, "to_user_id_str": "311659953", "to_user_name": "MeRK", "in_reply_to_status_id": 148652730297237500, "in_reply_to_status_id_str": "148652730297237504"}, +{"created_at": "Mon, 19 Dec 2011 06:37:24 +0000", "from_user": "ill_pr0paganda", "from_user_id": 341319430, "from_user_id_str": "341319430", "from_user_name": "tone williams", "geo": null, "id": 148653139120238600, "id_str": "148653139120238592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688246571/JMWC9LVE_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688246571/JMWC9LVE_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "#iWasThatKid wen i always watched early tv show, Dinosaurs! just a good mins before a yellow bus comes..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:37:19 +0000", "from_user": "Gabrieleqpf", "from_user_id": 430062538, "from_user_id_str": "430062538", "from_user_name": "Gabriele Cluff", "geo": null, "id": 148653116399693820, "id_str": "148653116399693825", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1677551512/zculpy21ur_109638363-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677551512/zculpy21ur_109638363-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Ice Age Dawn of the Dinosaurs Napkins 16ct: Kids will love these beautiful Ice Age themed napkins at their next ... http://t.co/Qm4bUCVN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:36:58 +0000", "from_user": "Bug_Prince", "from_user_id": 15054149, "from_user_id_str": "15054149", "from_user_name": "Prince", "geo": null, "id": 148653029082660860, "id_str": "148653029082660864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1395284779/prince_charles_funny_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1395284779/prince_charles_funny_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @uncannybal: Dinosaurs were made up by the CIA to discourage time travel.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:36:39 +0000", "from_user": "TheWorldofWomen", "from_user_id": 439885399, "from_user_id_str": "439885399", "from_user_name": "Girls Girls Girls", "geo": null, "id": 148652946962386940, "id_str": "148652946962386945", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699880851/images_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699880851/images_normal.jpeg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/abPf5Y5b", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:35:38 +0000", "from_user": "inconversant", "from_user_id": 265325017, "from_user_id_str": "265325017", "from_user_name": "gelignite it", "geo": null, "id": 148652692951154700, "id_str": "148652692951154688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701640225/twitticon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701640225/twitticon_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@thezombeetle tho you're pretty passable at dinosaurs soooooo http://t.co/dRg4bGB2", "to_user": "thezombeetle", "to_user_id": 96499324, "to_user_id_str": "96499324", "to_user_name": "zombeetle", "in_reply_to_status_id": 148651948692881400, "in_reply_to_status_id_str": "148651948692881408"}, +{"created_at": "Mon, 19 Dec 2011 06:35:26 +0000", "from_user": "sterreceleste", "from_user_id": 208690891, "from_user_id_str": "208690891", "from_user_name": "Sterre van Wanrooij", "geo": null, "id": 148652643269615600, "id_str": "148652643269615617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685385862/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685385862/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:34:55 +0000", "from_user": "Dayana_Sabrina", "from_user_id": 50886844, "from_user_id_str": "50886844", "from_user_name": "dayana martinez", "geo": null, "id": 148652514449948670, "id_str": "148652514449948673", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1468092549/IMG002332_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1468092549/IMG002332_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "kiss me if im wrong , but dinosaurs still exist right ?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:34:52 +0000", "from_user": "dinolove_kenzie", "from_user_id": 312842638, "from_user_id_str": "312842638", "from_user_name": "McKenzie!(:", "geo": null, "id": 148652498092163070, "id_str": "148652498092163072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701668676/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701668676/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@SGLandrum hey... Dinosaurs are haute!(;", "to_user": "SGLandrum", "to_user_id": 383887944, "to_user_id_str": "383887944", "to_user_name": "Samantha Landrum", "in_reply_to_status_id": 148652283146670080, "in_reply_to_status_id_str": "148652283146670080"}, +{"created_at": "Mon, 19 Dec 2011 06:34:10 +0000", "from_user": "Rump_Shaker14", "from_user_id": 315780931, "from_user_id_str": "315780931", "from_user_name": "Sydney McCullough", "geo": null, "id": 148652322568941570, "id_str": "148652322568941568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697738043/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697738043/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MeanGirlQuotes: \"And on the third day, God created the Remington bolt-action rifle, so that Man could fight the dinosaurs. And the homosexuals. Amen.\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:33:13 +0000", "from_user": "TakaVodkaFlame", "from_user_id": 38849284, "from_user_id_str": "38849284", "from_user_name": "\\uE10ETaka\\uE10E", "geo": null, "id": 148652084030476300, "id_str": "148652084030476288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694292179/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694292179/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Do Virgins Exist Or Are They Playing The Ultimate Game Of Hide & Seek With The Dinosaurs???", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:32:35 +0000", "from_user": "MorganLeah_", "from_user_id": 280707904, "from_user_id_str": "280707904", "from_user_name": "morgan evans", "geo": null, "id": 148651924353331200, "id_str": "148651924353331201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701507947/290_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701507947/290_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Kiss me if i'm wrong but dinosaurs still exist right ... ?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:31:44 +0000", "from_user": "mahbelle06", "from_user_id": 109155754, "from_user_id_str": "109155754", "from_user_name": "Mabel Cortes", "geo": null, "id": 148651710984884220, "id_str": "148651710984884225", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1536133261/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1536133261/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:31:14 +0000", "from_user": "BrittanyMich1", "from_user_id": 340786198, "from_user_id_str": "340786198", "from_user_name": "Brittany Michelle", "geo": null, "id": 148651587659767800, "id_str": "148651587659767809", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693755671/IMG_1059_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693755671/IMG_1059_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:31:07 +0000", "from_user": "macoolbeans", "from_user_id": 331453381, "from_user_id_str": "331453381", "from_user_name": "Christine Makhoul", "geo": null, "id": 148651556542230530, "id_str": "148651556542230528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1591534531/IMG955763_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591534531/IMG955763_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:30:35 +0000", "from_user": "ChuLinForMayor", "from_user_id": 248609839, "from_user_id_str": "248609839", "from_user_name": "I ain't \\uE05A\\uE00E", "geo": null, "id": 148651422311911420, "id_str": "148651422311911424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1667371583/ChuLinForMayor_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667371583/ChuLinForMayor_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @MissViickyy: I can only imagine how some of these guys couches smell.. N their feet dangling off their twin bed wit dinosaurs on their bed sheets", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:29:23 +0000", "from_user": "Genovevawgv", "from_user_id": 431762809, "from_user_id_str": "431762809", "from_user_name": "Justa Lamfers", "geo": null, "id": 148651122201071600, "id_str": "148651122201071616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681162767/hhfwvb55a2_132258137_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681162767/hhfwvb55a2_132258137_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Wooden Dinosaur Magnets: Twenty magnetic dinosaurs eager to play in the twenty-first century! Bright colors add ... http://t.co/CvMs9U2g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:29:20 +0000", "from_user": "NinoGino", "from_user_id": 54183215, "from_user_id_str": "54183215", "from_user_name": "Hind Galadari", "geo": null, "id": 148651108485693440, "id_str": "148651108485693440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1468530897/7mada_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1468530897/7mada_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Photo: Best explanation to dinosaurs\\u2019 extinction yet! http://t.co/X6Xvcm0O", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:29:16 +0000", "from_user": "MissViickyy", "from_user_id": 378401291, "from_user_id_str": "378401291", "from_user_name": "Vicky ", "geo": null, "id": 148651091985301500, "id_str": "148651091985301504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1684606149/MissViickyy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684606149/MissViickyy_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "I can only imagine how some of these guys couches smell.. N their feet dangling off their twin bed wit dinosaurs on their bed sheets", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:29:13 +0000", "from_user": "mcrlove614", "from_user_id": 264901143, "from_user_id_str": "264901143", "from_user_name": "GabiCakes!", "geo": null, "id": 148651079297540100, "id_str": "148651079297540098", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1643548326/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643548326/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @SethMacFarlane: There\\u2019s a decent chance our next president will believe that humans once kept dinosaurs as pets.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:28:44 +0000", "from_user": "_Fashionisha", "from_user_id": 199303751, "from_user_id_str": "199303751", "from_user_name": "tanisha", "geo": null, "id": 148650955519442940, "id_str": "148650955519442945", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701644823/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701644823/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Lol look at the dinosaurs !! http://t.co/knutidIn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:28:40 +0000", "from_user": "Conchas_choncha", "from_user_id": 392873774, "from_user_id_str": "392873774", "from_user_name": "concha", "geo": null, "id": 148650939232956400, "id_str": "148650939232956416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670461816/og186tKr_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670461816/og186tKr_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@pacificoceanjoh 2,009?....what fuck u roaming with dinosaurs....u freaking look like a caveman, all hairy, smelly and ugly!!", "to_user": "pacificoceanjoh", "to_user_id": 339880454, "to_user_id_str": "339880454", "to_user_name": "john patrick rogers", "in_reply_to_status_id": 148648120702603260, "in_reply_to_status_id_str": "148648120702603264"}, +{"created_at": "Mon, 19 Dec 2011 06:28:00 +0000", "from_user": "thecairos", "from_user_id": 23168687, "from_user_id_str": "23168687", "from_user_name": "THE CAIROS", "geo": null, "id": 148650771322380300, "id_str": "148650771322380289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1494700447/167802_477270281665_59637491665_6256342_6002810_n-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1494700447/167802_477270281665_59637491665_6256342_6002810_n-1_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Last Dinosaurs video clip for \"Zoom\" is almost Channel V's ripe clip of the week!! Click on the link and like it... http://t.co/4j9EG8tU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:27:11 +0000", "from_user": "ExclusivelyME_", "from_user_id": 122963389, "from_user_id_str": "122963389", "from_user_name": ". . Neicy's Speaking", "geo": null, "id": 148650564417368060, "id_str": "148650564417368064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695249802/Twitcon2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695249802/Twitcon2_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "#IWasThatKid that saw pink dinosaurs in the trees.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:26:52 +0000", "from_user": "Megan_MACKemup", "from_user_id": 394860227, "from_user_id_str": "394860227", "from_user_name": "KushandSunshine", "geo": null, "id": 148650488102010880, "id_str": "148650488102010880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701505477/MNJJC-A1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701505477/MNJJC-A1_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Dinosaurs just robbed me :(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:26:28 +0000", "from_user": "kimorenoo", "from_user_id": 336197054, "from_user_id_str": "336197054", "from_user_name": "kimorenoo", "geo": null, "id": 148650387954610180, "id_str": "148650387954610176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699605893/IMG_2655_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699605893/IMG_2655_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:26:21 +0000", "from_user": "GangsterOfL0ve", "from_user_id": 325892873, "from_user_id_str": "325892873", "from_user_name": "Seanbob Squarepants", "geo": null, "id": 148650356350525440, "id_str": "148650356350525440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1622712595/4Q8Vpgv3_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622712595/4Q8Vpgv3_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @kreid_c: #IWasThatKid that would get those plastic pills from Walgreens that would melt when you put them in hot water and dinosaurs came out", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:25:59 +0000", "from_user": "Hannahrji", "from_user_id": 431764032, "from_user_id_str": "431764032", "from_user_name": "Hannah Govindeisami", "geo": null, "id": 148650263048232960, "id_str": "148650263048232961", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681168822/d1qq4h455h_129973180_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681168822/d1qq4h455h_129973180_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NOVA Dinosaurs of the Gobi: vhs - museum expedition http://t.co/dsg2wvb0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:25:56 +0000", "from_user": "_RememberEmber", "from_user_id": 273590667, "from_user_id_str": "273590667", "from_user_name": "danya ember \\u2665", "geo": null, "id": 148650252319199230, "id_str": "148650252319199232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686515903/IMG_2983kd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686515903/IMG_2983kd_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @InsaneTweets_: Parent: \"Well when I was your age...\" Me: STFU WHEN YOU WERE MY AGE, YOU RODE DINOSAURS!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:25:19 +0000", "from_user": "havoctrusse8199", "from_user_id": 435697096, "from_user_id_str": "435697096", "from_user_name": "gudrun Obrien", "geo": null, "id": 148650094718226430, "id_str": "148650094718226432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691142645/75453387photo__2511__normal.jpg", "profile_image_url_https": null, "source": "<a href="http://twitter.com/">web</a>", "text": "I bet the dinosaurs all died out in the velocirapture", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:25:15 +0000", "from_user": "DezDaGenius", "from_user_id": 254708316, "from_user_id_str": "254708316", "from_user_name": "Desz\\u00E9 Adams", "geo": null, "id": 148650081694920700, "id_str": "148650081694920705", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1649934189/376637_199378416807535_100002061348180_431899_850984331_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649934189/376637_199378416807535_100002061348180_431899_850984331_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@x__Cola_ her ass look like she rape dinosaurs", "to_user": "x__Cola_", "to_user_id": 87555353, "to_user_id_str": "87555353", "to_user_name": "Tiffany Randle", "in_reply_to_status_id": 148649315315875840, "in_reply_to_status_id_str": "148649315315875840"}, +{"created_at": "Mon, 19 Dec 2011 06:25:10 +0000", "from_user": "Norcottqm", "from_user_id": 395410961, "from_user_id_str": "395410961", "from_user_name": "Krissy Norcott", "geo": null, "id": 148650058240368640, "id_str": "148650058240368640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1599648054/MFC-2013_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599648054/MFC-2013_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hatley Boys 2-7 Dinosaurs Two Pairs Socks,Multi,L 4-7: http://t.co/NR6R2BAt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:25:09 +0000", "from_user": "Perelmanhb", "from_user_id": 395388504, "from_user_id_str": "395388504", "from_user_name": "Eddie Perelman", "geo": null, "id": 148650055459545100, "id_str": "148650055459545088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1599594693/MFC-4424_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599594693/MFC-4424_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hatley Boys 2-7 Dinosaurs Two Pairs Socks,Multi,L 4-7: http://t.co/UyxQsJJf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:24:59 +0000", "from_user": "newyorklove95", "from_user_id": 405101371, "from_user_id_str": "405101371", "from_user_name": "cassie malouta", "geo": null, "id": 148650011482259460, "id_str": "148650011482259458", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1622643966/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622643966/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:24:54 +0000", "from_user": "magoogle93", "from_user_id": 30189843, "from_user_id_str": "30189843", "from_user_name": "Magaly Ramirez", "geo": null, "id": 148649993048293380, "id_str": "148649993048293376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1616076834/678A0265_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616076834/678A0265_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:24:28 +0000", "from_user": "kstrosnider", "from_user_id": 171461316, "from_user_id_str": "171461316", "from_user_name": "Kelly Strosnider", "geo": null, "id": 148649883719573500, "id_str": "148649883719573505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1566984196/64902_863817984800_12932425_45594981_2297901_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566984196/64902_863817984800_12932425_45594981_2297901_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "the most peaceful and intellectual of all the dinosaurs was the thesaurus", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:24:01 +0000", "from_user": "EvelynArcasi", "from_user_id": 124602253, "from_user_id_str": "124602253", "from_user_name": "Elly Arcasi'", "geo": null, "id": 148649768443322370, "id_str": "148649768443322368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1591347832/ayyyyy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591347832/ayyyyy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:23:59 +0000", "from_user": "sarahromero2502", "from_user_id": 138160222, "from_user_id_str": "138160222", "from_user_name": "sarah romero", "geo": null, "id": 148649762709708800, "id_str": "148649762709708800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1460778600/2011-07-18_12-43-31.387_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1460778600/2011-07-18_12-43-31.387_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:23:26 +0000", "from_user": "kreid_c", "from_user_id": 178432523, "from_user_id_str": "178432523", "from_user_name": "Keith R-C", "geo": null, "id": 148649622842257400, "id_str": "148649622842257408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1663187656/Photo_on_2011-11-28_at_16.43__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663187656/Photo_on_2011-11-28_at_16.43__2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#IWasThatKid that would get those plastic pills from Walgreens that would melt when you put them in hot water and dinosaurs came out", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:21:56 +0000", "from_user": "KeshikaRocks", "from_user_id": 94307737, "from_user_id_str": "94307737", "from_user_name": "Keshika Gounden", "geo": null, "id": 148649245761744900, "id_str": "148649245761744896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700844559/155211_182421548441830_100000219596898_685171_4704840_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700844559/155211_182421548441830_100000219596898_685171_4704840_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:21:21 +0000", "from_user": "_LUCKY_YOU_", "from_user_id": 98173247, "from_user_id_str": "98173247", "from_user_name": "Sarah Wesler", "geo": null, "id": 148649098466164740, "id_str": "148649098466164737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695769282/2011-11-02_09-16-31_80-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695769282/2011-11-02_09-16-31_80-1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:21:08 +0000", "from_user": "Marylouisety91", "from_user_id": 388926642, "from_user_id_str": "388926642", "from_user_name": "Marylouise Grinnan", "geo": null, "id": 148649044854583300, "id_str": "148649044854583296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1583388128/GJHL-3749_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583388128/GJHL-3749_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dawn of the Dinosaurs Poster Laminated: Beautifully illustrated poster detailing the age of the dinosaurs. Inclu... http://t.co/UNgg9QEp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:20:05 +0000", "from_user": "Candiops", "from_user_id": 431695140, "from_user_id_str": "431695140", "from_user_name": "Candi Delgatto", "geo": null, "id": 148648778293977100, "id_str": "148648778293977089", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681019731/iglvx3yp1b_135506071-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681019731/iglvx3yp1b_135506071-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Mystery of the Missing Dinosaurs ((Real Kids, Real Places)): An ordinary trip to see the dinosaurs at Chicag... http://t.co/lG0KVIkU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:20:05 +0000", "from_user": "KeriKhaos", "from_user_id": 319312356, "from_user_id_str": "319312356", "from_user_name": "ImaNinja\\u2122", "geo": null, "id": 148648778054893570, "id_str": "148648778054893568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670088912/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670088912/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I wonder if dinosaurs were really green", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:20:04 +0000", "from_user": "Brophuss", "from_user_id": 58301213, "from_user_id_str": "58301213", "from_user_name": "Bonny", "geo": null, "id": 148648773814464500, "id_str": "148648773814464512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1644543224/Photo_on_11-14-11_at_9.19_PM_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644543224/Photo_on_11-14-11_at_9.19_PM_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @InsaneTweets_: Parent: \"Well when I was your age...\" Me: STFU WHEN YOU WERE MY AGE, YOU RODE DINOSAURS!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:19:57 +0000", "from_user": "shhannaan", "from_user_id": 78318624, "from_user_id_str": "78318624", "from_user_name": "SillyFaceSayHey", "geo": null, "id": 148648748220817400, "id_str": "148648748220817408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680519057/DSC00177_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680519057/DSC00177_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:19:55 +0000", "from_user": "Creestfu", "from_user_id": 235725894, "from_user_id_str": "235725894", "from_user_name": "BrendonUrie\\u25B2\\u25B2", "geo": null, "id": 148648737282080770, "id_str": "148648737282080768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701705785/creestfu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701705785/creestfu_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "\"...and on the third day, God created the remington bull action rifle, so that man could fight the dinosaurs\\u2026and the ho-mo-sex-uals. AMEN!\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:19:29 +0000", "from_user": "Bonita1TaYFoXx", "from_user_id": 346201643, "from_user_id_str": "346201643", "from_user_name": "rejuvenated.muy", "geo": null, "id": 148648628888678400, "id_str": "148648628888678400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692487324/aa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692487324/aa_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @akilzbennett: #IWasThatKid that liked Airplanes and Dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:19:11 +0000", "from_user": "cassandraKLMS", "from_user_id": 423494608, "from_user_id_str": "423494608", "from_user_name": "Cassandra Lim", "geo": null, "id": 148648551893839870, "id_str": "148648551893839872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695153546/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695153546/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:18:46 +0000", "from_user": "ATLAfanatic", "from_user_id": 162563875, "from_user_id_str": "162563875", "from_user_name": "ATLAfanatic", "geo": null, "id": 148648449234055170, "id_str": "148648449234055168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1259133884/imagesCACAPBWU_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1259133884/imagesCACAPBWU_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:18:32 +0000", "from_user": "HARVARD_B0UND", "from_user_id": 391501353, "from_user_id_str": "391501353", "from_user_name": "Corey Carter", "geo": null, "id": 148648387670065150, "id_str": "148648387670065152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697417162/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697417162/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "This girl saw my dick and thought dinosaurs came back to life", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:18:31 +0000", "from_user": "DJSUNKISS", "from_user_id": 35505280, "from_user_id_str": "35505280", "from_user_name": "kisstian brown", "geo": null, "id": 148648385673564160, "id_str": "148648385673564161", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1638040327/2__8_of_142__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638040327/2__8_of_142__normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Dats not niceeeee lol RT @MzNina216: So my Ex's Ex resembles baby sinclair from that old tv show Dinosaurs. O_o *sigh*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:18:20 +0000", "from_user": "Element_62", "from_user_id": 314862403, "from_user_id_str": "314862403", "from_user_name": "Tressa Martinez", "geo": null, "id": 148648341234909200, "id_str": "148648341234909184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1663390562/fairy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663390562/fairy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "whoever thought of chicken nuggets the shape of dinosaurs is a genius :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:18:08 +0000", "from_user": "ErikaTorales", "from_user_id": 415921262, "from_user_id_str": "415921262", "from_user_name": "Erika Torales", "geo": null, "id": 148648288982278140, "id_str": "148648288982278144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685544443/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685544443/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Dinosaurs aren't extinct, I've seen them -Preslie #NotLying", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:18:03 +0000", "from_user": "akilzbennett", "from_user_id": 230222881, "from_user_id_str": "230222881", "from_user_name": "Akil Bennett", "geo": null, "id": 148648269650731000, "id_str": "148648269650731008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668682133/111130-174545_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668682133/111130-174545_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#IWasThatKid that liked Airplanes and Dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:18:00 +0000", "from_user": "Linnab00", "from_user_id": 433686506, "from_user_id_str": "433686506", "from_user_name": "Lindsey Sexton", "geo": null, "id": 148648256866492400, "id_str": "148648256866492416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690210910/Photo_on_2011-09-18_at_13.34__7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690210910/Photo_on_2011-09-18_at_13.34__7_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:17:53 +0000", "from_user": "punkienugget", "from_user_id": 131940718, "from_user_id_str": "131940718", "from_user_name": "stephanie christine", "geo": null, "id": 148648228131323900, "id_str": "148648228131323904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701644040/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701644040/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:17:49 +0000", "from_user": "AudreyMChance", "from_user_id": 181356655, "from_user_id_str": "181356655", "from_user_name": "Audrey Drew Michael\\u2665", "geo": null, "id": 148648209667981300, "id_str": "148648209667981312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691193703/audreyjpg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691193703/audreyjpg_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:17:27 +0000", "from_user": "Sharilynqnok", "from_user_id": 426265044, "from_user_id_str": "426265044", "from_user_name": "Sharilyn Marnell", "geo": null, "id": 148648118651592700, "id_str": "148648118651592704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668804347/LLCM-2335_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668804347/LLCM-2335_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dinosaurs: Death of the Dinosaur [VHS]: Brand new factory sealed - In stock and ready to ship! http://t.co/32Z5w3sP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:17:27 +0000", "from_user": "Scalaluo", "from_user_id": 395427386, "from_user_id_str": "395427386", "from_user_name": "Sharyn Scala", "geo": null, "id": 148648116130820100, "id_str": "148648116130820096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1599684462/MFC-0605_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599684462/MFC-0605_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dinosaurs: Death of the Dinosaur [VHS]: Brand new factory sealed - In stock and ready to ship! http://t.co/g2wocBVM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:16:58 +0000", "from_user": "SaydeeB_00", "from_user_id": 380695575, "from_user_id_str": "380695575", "from_user_name": "Saydee Brighton", "geo": null, "id": 148647993346752500, "id_str": "148647993346752512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1672761593/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672761593/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 06:16:42 +0000", "from_user": "riley_bethh", "from_user_id": 25762904, "from_user_id_str": "25762904", "from_user_name": "Riley Couch", "geo": null, "id": 148647929501061120, "id_str": "148647929501061120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1564788088/tweetpic2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1564788088/tweetpic2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:16:38 +0000", "from_user": "kassijean_", "from_user_id": 334873008, "from_user_id_str": "334873008", "from_user_name": "Kassi Huotari", "geo": null, "id": 148647910651867140, "id_str": "148647910651867137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686313868/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686313868/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:16:35 +0000", "from_user": "asma_chiyochan", "from_user_id": 83334417, "from_user_id_str": "83334417", "from_user_name": "asma chan", "geo": null, "id": 148647897662111740, "id_str": "148647897662111745", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690433538/jio_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690433538/jio_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Bugginn: #iwasthatkid that played with dinosaurs and toy-cars instead of barbies", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:16:10 +0000", "from_user": "packersfan86", "from_user_id": 245059088, "from_user_id_str": "245059088", "from_user_name": "\\u2714n\\u0250\\u025F \\u0279\\u01DD\\u029E\\u0254\\u0250d d\\u01DD\\u0131\\u025F\\u0131\\u0279\\u01DD\\u028C", "geo": null, "id": 148647793584640000, "id_str": "148647793584640000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1633096964/daddyandbailee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633096964/daddyandbailee_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@Selene_333 My favorite show back in the day was Dinosaurs!", "to_user": "Selene_333", "to_user_id": 55461458, "to_user_id_str": "55461458", "to_user_name": "Selene Castillo", "in_reply_to_status_id": 148645239685513200, "in_reply_to_status_id_str": "148645239685513217"}, +{"created_at": "Mon, 19 Dec 2011 06:15:27 +0000", "from_user": "jo2mazaki", "from_user_id": 315435798, "from_user_id_str": "315435798", "from_user_name": "Heath Rocha", "geo": null, "id": 148647615049900030, "id_str": "148647615049900032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1391760090/803_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1391760090/803_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Encyclopedia of Dinosaurs 8211 Philip J. Currie Kevin Padian download, read, buy online http://t.co/Lit5B65N", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:15:27 +0000", "from_user": "CourtneyLabe", "from_user_id": 304715642, "from_user_id_str": "304715642", "from_user_name": "Courtney Labe", "geo": null, "id": 148647612868870140, "id_str": "148647612868870144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687820861/IMG002066_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687820861/IMG002066_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#IWasThatKid that played with dinosaurs while all the other girls had barbies & bratz.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:14:52 +0000", "from_user": "Fckkn_Eddie", "from_user_id": 267360947, "from_user_id_str": "267360947", "from_user_name": "\\u2190 yo its eddie! :D", "geo": null, "id": 148647466168893440, "id_str": "148647466168893440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1538059759/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538059759/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#IWasThatKid That loved dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:14:35 +0000", "from_user": "TheJayMovement", "from_user_id": 226626798, "from_user_id_str": "226626798", "from_user_name": "Jay De'Sean Cherry ", "geo": null, "id": 148647394983153660, "id_str": "148647394983153665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701523627/picsay-1324269001__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701523627/picsay-1324269001__1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#IWasThatKid that loved dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:14:33 +0000", "from_user": "Hot_Cald_oh", "from_user_id": 246521990, "from_user_id_str": "246521990", "from_user_name": "Aldo ", "geo": null, "id": 148647387563425800, "id_str": "148647387563425792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668808099/IMG_6432_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668808099/IMG_6432_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "How amazing this world would be if dinosaurs never went extinct, just imagine the insanity! :]", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:14:07 +0000", "from_user": "jakegw", "from_user_id": 47255341, "from_user_id_str": "47255341", "from_user_name": "Jake Warren", "geo": null, "id": 148647279153262600, "id_str": "148647279153262592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/263441016/n1293060453_30177991_4956_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/263441016/n1293060453_30177991_4956_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "There are about 7 things I hate more than runny noses, and one of them is that meteor that killed the dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:14:01 +0000", "from_user": "107caro", "from_user_id": 123030346, "from_user_id_str": "123030346", "from_user_name": "Carolina magdaleno", "geo": null, "id": 148647251059810300, "id_str": "148647251059810304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1549132301/profile_image_1316384383671_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1549132301/profile_image_1316384383671_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:13:47 +0000", "from_user": "_confringo", "from_user_id": 190052941, "from_user_id_str": "190052941", "from_user_name": "miss granger", "geo": null, "id": 148647194138902530, "id_str": "148647194138902529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697362971/em_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697362971/em_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:13:31 +0000", "from_user": "davidnicolopogi", "from_user_id": 277753464, "from_user_id_str": "277753464", "from_user_name": "Nico Dela Cruz", "geo": null, "id": 148647126468014080, "id_str": "148647126468014080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692599790/225388_10150199181987229_640782228_6749485_7858596_n_reasonably_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692599790/225388_10150199181987229_640782228_6749485_7858596_n_reasonably_small_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I'd rather expect a Suchomimus haha http://t.co/Xpl8LYHT RT @theairprince And what do you expect? Pterodactly?", "to_user": "theairprince", "to_user_id": 43861066, "to_user_id_str": "43861066", "to_user_name": "Toney", "in_reply_to_status_id": 148646212587880450, "in_reply_to_status_id_str": "148646212587880449"}, +{"created_at": "Mon, 19 Dec 2011 06:12:13 +0000", "from_user": "burgersforme", "from_user_id": 188232474, "from_user_id_str": "188232474", "from_user_name": "zQ_lOvEs_Eu\\u2122\\u2764", "geo": null, "id": 148646800188907520, "id_str": "148646800188907522", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697627597/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697627597/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:11:46 +0000", "from_user": "Bugginn", "from_user_id": 281127086, "from_user_id_str": "281127086", "from_user_name": "Carmen Sandiego ", "geo": null, "id": 148646685411782660, "id_str": "148646685411782656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1633199189/gabzbetch_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633199189/gabzbetch_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#iwasthatkid that played with dinosaurs and toy-cars instead of barbies", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:11:22 +0000", "from_user": "CatarinaDeMetal", "from_user_id": 93971447, "from_user_id_str": "93971447", "from_user_name": "SARA\\u00CD", "geo": null, "id": 148646588166832130, "id_str": "148646588166832128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1654963968/imagesCAZAY6OJ_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654963968/imagesCAZAY6OJ_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "For you, boy, I've reserved the worst... scourges and torments, dinosaurs and volcanoes!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:10:22 +0000", "from_user": "mackb123", "from_user_id": 196382762, "from_user_id_str": "196382762", "from_user_name": "Macky Brown", "geo": null, "id": 148646333031526400, "id_str": "148646333031526400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1548876671/00000297384_272779422747289_100000456997903_967575_968323909_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1548876671/00000297384_272779422747289_100000456997903_967575_968323909_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:09:47 +0000", "from_user": "pogsandjello", "from_user_id": 17825828, "from_user_id_str": "17825828", "from_user_name": "Christian Palmer", "geo": null, "id": 148646189015900160, "id_str": "148646189015900160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1651074684/pogsandjello_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651074684/pogsandjello_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @YWIR: Why don't we get those robot dinosaurs some museums have to fight our wars for us?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:09:19 +0000", "from_user": "Tamrandk", "from_user_id": 431706038, "from_user_id_str": "431706038", "from_user_name": "Tamra Styron", "geo": null, "id": 148646070761685000, "id_str": "148646070761684992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681042544/prynbcuied_128590165-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681042544/prynbcuied_128590165-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dinosaurs - Complete Seasons One Thru Four: All four seasons of Disneys tv show http://t.co/1Fui1aX6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:07:13 +0000", "from_user": "DONasaurous", "from_user_id": 283764016, "from_user_id_str": "283764016", "from_user_name": "Don Le", "geo": null, "id": 148645539674730500, "id_str": "148645539674730496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1656071131/289841_2719126257826_1247101835_33256720_338087360_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656071131/289841_2719126257826_1247101835_33256720_338087360_o_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#IWasThatKid who would draw dinosaurs all day with @dushaun7 haha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:06:24 +0000", "from_user": "KashNOChange", "from_user_id": 293086847, "from_user_id_str": "293086847", "from_user_name": "Moee \\u2665", "geo": null, "id": 148645337572192260, "id_str": "148645337572192257", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701618752/Photo_00009_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701618752/Photo_00009_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Ambrieee Doesnt Love Me Anymore. Like Where Have You Been? Playing With Dinosaurs nShit ?!", "to_user": "Ambrieee", "to_user_id": 203149193, "to_user_id_str": "203149193", "to_user_name": "Ambrie", "in_reply_to_status_id": 148645044453257200, "in_reply_to_status_id_str": "148645044453257216"}, +{"created_at": "Mon, 19 Dec 2011 06:05:56 +0000", "from_user": "jlrv94", "from_user_id": 35473687, "from_user_id_str": "35473687", "from_user_name": "Jorge Ram\\u00EDrez", "geo": null, "id": 148645218252627970, "id_str": "148645218252627969", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676430478/388139_2683143235132_1152883167_33025864_893174340_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676430478/388139_2683143235132_1152883167_33025864_893174340_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "#IWasThatKid who loved DINOSAURS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:05:07 +0000", "from_user": "abbigayle_leigh", "from_user_id": 233407873, "from_user_id_str": "233407873", "from_user_name": "Abbey Brennan ", "geo": null, "id": 148645014329757700, "id_str": "148645014329757697", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1678394832/shendz-photo-app-2011-10-05-15-25-0_1_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678394832/shendz-photo-app-2011-10-05-15-25-0_1_1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:03:28 +0000", "from_user": "DeenaStrunk", "from_user_id": 355285223, "from_user_id_str": "355285223", "from_user_name": "Deena Strunk", "geo": null, "id": 148644598460321800, "id_str": "148644598460321793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1625724421/389004_230192263710773_100001600024607_628302_177364414_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1625724421/389004_230192263710773_100001600024607_628302_177364414_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:03:22 +0000", "from_user": "DaisyLeonn", "from_user_id": 400547199, "from_user_id_str": "400547199", "from_user_name": "Daisy Leon", "geo": null, "id": 148644573713936400, "id_str": "148644573713936384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1665634210/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665634210/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:02:18 +0000", "from_user": "NaisLol", "from_user_id": 429159576, "from_user_id_str": "429159576", "from_user_name": "GiveNiallSomeFood", "geo": null, "id": 148644303722393600, "id_str": "148644303722393600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693464129/LOLL_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693464129/LOLL_normal.gif", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @CantForgetHarry: \"I've seen dinosaurs younger then Caroline.\" OMFG A+++++", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:02:17 +0000", "from_user": "_tayylorrr_", "from_user_id": 343026632, "from_user_id_str": "343026632", "from_user_name": "Taylorr(:", "geo": null, "id": 148644299540672500, "id_str": "148644299540672512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699355637/474938337_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699355637/474938337_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:01:56 +0000", "from_user": "_lizard12", "from_user_id": 161018520, "from_user_id_str": "161018520", "from_user_name": "elizabeth A. marez ", "geo": null, "id": 148644211250565120, "id_str": "148644211250565121", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701330234/Hp16Dnnn_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701330234/Hp16Dnnn_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:01:35 +0000", "from_user": "Leoniepxt", "from_user_id": 431726609, "from_user_id_str": "431726609", "from_user_name": "Leonie Macmaster", "geo": null, "id": 148644122729783300, "id_str": "148644122729783298", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681086237/hwk5r3fow1_128919525_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681086237/hwk5r3fow1_128919525_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dinosaurs of Australia and New Zealand and Other Animals of the Mesozoic Era: Beginning in the 1990s, fossils un... http://t.co/vqO9G7MM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:01:02 +0000", "from_user": "dinochecker", "from_user_id": 166994970, "from_user_id_str": "166994970", "from_user_name": "DailyDinosaur", "geo": null, "id": 148643985232101380, "id_str": "148643985232101376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1625760435/twitter-profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1625760435/twitter-profile_normal.png", "source": "<a href="http://www.dinochecker.com" rel="nofollow">DinoChecker.com</a>", "text": "Monday is our new favourite day for dinosaurs. We lurve GENYODECTES: http://t.co/6yox5rsw #fb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:59:33 +0000", "from_user": "ClaudiaKambo", "from_user_id": 100424363, "from_user_id_str": "100424363", "from_user_name": "Claudia K", "geo": null, "id": 148643611234414600, "id_str": "148643611234414592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1167316892/Photo_on_2009-10-29_at_18.05__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1167316892/Photo_on_2009-10-29_at_18.05__2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#IWasThatKid whose favorite outfit was a really cool red sweater with a huge picture of dinosaurs, and the matching red sweatpants.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:59:03 +0000", "from_user": "soyimpuntual", "from_user_id": 143612554, "from_user_id_str": "143612554", "from_user_name": "Elizabeth M\\u00E1rquez \\u2611", "geo": null, "id": 148643488127393800, "id_str": "148643488127393792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686170917/100_5461_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686170917/100_5461_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/fT4mXCqa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:58:42 +0000", "from_user": "rhiannajanine", "from_user_id": 362673021, "from_user_id_str": "362673021", "from_user_name": "\\u0930\\u093F\\u0939\\u093E\\u0928\\u093E", "geo": null, "id": 148643398939709440, "id_str": "148643398939709440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691697211/DSCN0838_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691697211/DSCN0838_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "#IWasTheKid that saw Jurassic Park and believed dinosaurs were real, nobody could tell me differently.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:58:42 +0000", "from_user": "Kathysshh", "from_user_id": 18740525, "from_user_id_str": "18740525", "from_user_name": "Kathy ", "geo": null, "id": 148643396372803600, "id_str": "148643396372803585", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1440087697/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1440087697/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Days like this when I question what planet I'm from and if I should return back there. And also dinosaurs. Why are their arms so tiny?!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:58:34 +0000", "from_user": "samidysam", "from_user_id": 196113355, "from_user_id_str": "196113355", "from_user_name": "sami", "geo": null, "id": 148643364911317000, "id_str": "148643364911316992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1639696928/better_20one_20cutay_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639696928/better_20one_20cutay_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:58:18 +0000", "from_user": "Jake_Buddyyy", "from_user_id": 279405375, "from_user_id_str": "279405375", "from_user_name": "Jake :)", "geo": null, "id": 148643296359612400, "id_str": "148643296359612416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1658238341/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658238341/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:57:04 +0000", "from_user": "brodestheeace", "from_user_id": 399680168, "from_user_id_str": "399680168", "from_user_name": "Brody Nelson", "geo": null, "id": 148642988787122180, "id_str": "148642988787122176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689265294/kjhluhfda_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689265294/kjhluhfda_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @nibslovescats: #IWasThatKid that was obsessed with dinosaurs, big foot, aliens and ghosts.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:56:27 +0000", "from_user": "strayney", "from_user_id": 29416777, "from_user_id_str": "29416777", "from_user_name": "David Michel Ney", "geo": null, "id": 148642831685271550, "id_str": "148642831685271553", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1242431309/twitpic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1242431309/twitpic_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@juliusseizure just know- cloning dinosaurs can lead to disastrous consequences. I think they made a movie about it or something...", "to_user": "juliusseizure", "to_user_id": 28944227, "to_user_id_str": "28944227", "to_user_name": "Nicky A", "in_reply_to_status_id": 148564184806866940, "in_reply_to_status_id_str": "148564184806866945"}, +{"created_at": "Mon, 19 Dec 2011 05:56:12 +0000", "from_user": "nibslovescats", "from_user_id": 396127475, "from_user_id_str": "396127475", "from_user_name": "Lydia Noble", "geo": +{"coordinates": [44.8716,-91.9274], "type": "Point"}, "id": 148642769190133760, "id_str": "148642769190133761", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1601475597/228202_1949460625446_1510527788_2067814_8196876_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601475597/228202_1949460625446_1510527788_2067814_8196876_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#IWasThatKid that was obsessed with dinosaurs, big foot, aliens and ghosts.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:54:07 +0000", "from_user": "nataaliemp", "from_user_id": 142045618, "from_user_id_str": "142045618", "from_user_name": "Natalie Moll", "geo": null, "id": 148642247007670270, "id_str": "148642247007670272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682513906/foto1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682513906/foto1_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:53:56 +0000", "from_user": "NickyWitsillini", "from_user_id": 245711524, "from_user_id_str": "245711524", "from_user_name": "Nicky Witsillini", "geo": null, "id": 148642199393927170, "id_str": "148642199393927168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1231579664/18083170761206156_the_beach_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1231579664/18083170761206156_the_beach_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "DSOGaming writes: \"Damn, it seems that every BF3 player has been looking for all those easter-egged dinosaurs th... http://t.co/e1rJlumF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:53:35 +0000", "from_user": "CarlyBrown14", "from_user_id": 383326886, "from_user_id_str": "383326886", "from_user_name": "Carly Brown", "geo": null, "id": 148642112676704260, "id_str": "148642112676704256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698707852/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698707852/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:53:27 +0000", "from_user": "TaylorMacRae08", "from_user_id": 228673074, "from_user_id_str": "228673074", "from_user_name": "Taylor MacRae", "geo": null, "id": 148642076182061060, "id_str": "148642076182061056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1672169504/kP3yQt1w_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672169504/kP3yQt1w_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:53:18 +0000", "from_user": "joeyuwj", "from_user_id": 156173576, "from_user_id_str": "156173576", "from_user_name": "Joey Jing", "geo": null, "id": 148642038198444030, "id_str": "148642038198444032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1568866511/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1568866511/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:52:42 +0000", "from_user": "brad_40", "from_user_id": 330766267, "from_user_id_str": "330766267", "from_user_name": "Bradee (:", "geo": null, "id": 148641888524709900, "id_str": "148641888524709888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701500921/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701500921/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @x0swagger: Kiss me, if I'm wrong, but dinosaurs still exist, right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:52:13 +0000", "from_user": "jeanpaulfung", "from_user_id": 49622357, "from_user_id_str": "49622357", "from_user_name": "Jean-Paul Fung", "geo": null, "id": 148641767166713860, "id_str": "148641767166713858", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1596816671/JPFung_Website_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596816671/JPFung_Website_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "'Like' this link on Facebook for Last Dinosaurs' - Zoom to be Channel V's Ripe Clip the week!!! https://t.co/BmNa6ZI2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:52:06 +0000", "from_user": "roachel915", "from_user_id": 52388871, "from_user_id_str": "52388871", "from_user_name": "rachel", "geo": null, "id": 148641739526246400, "id_str": "148641739526246401", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687779930/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687779930/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:51:41 +0000", "from_user": "JustinDrewFlu__", "from_user_id": 169615151, "from_user_id_str": "169615151", "from_user_name": "Olivia!! :D", "geo": null, "id": 148641631392907260, "id_str": "148641631392907264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682431182/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682431182/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:51:28 +0000", "from_user": "Kristinnuendo", "from_user_id": 17968946, "from_user_id_str": "17968946", "from_user_name": "The Baroness Lady K", "geo": null, "id": 148641576892117000, "id_str": "148641576892116992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681238437/df178e79783d336043e02b5123442d589abcdefg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681238437/df178e79783d336043e02b5123442d589abcdefg_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @YWIR: Why don't we get those robot dinosaurs some museums have to fight our wars for us?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:50:49 +0000", "from_user": "babykeb69", "from_user_id": 406041536, "from_user_id_str": "406041536", "from_user_name": "Kevin Conroy", "geo": null, "id": 148641415658881020, "id_str": "148641415658881025", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698296316/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698296316/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@ActuallyNPH maybe next time you go through a ride program you'll see dinosaurs #munchthosemushrooms #H&Kwashilarious", "to_user": "ActuallyNPH", "to_user_id": 90420314, "to_user_id_str": "90420314", "to_user_name": "Neil Patrick Harris", "in_reply_to_status_id": 148639859182022660, "in_reply_to_status_id_str": "148639859182022657"}, +{"created_at": "Mon, 19 Dec 2011 05:50:34 +0000", "from_user": "HiRa___", "from_user_id": 114104459, "from_user_id_str": "114104459", "from_user_name": "Hira", "geo": null, "id": 148641350538108930, "id_str": "148641350538108928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1626810061/IMG-2011029-00137_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626810061/IMG-2011029-00137_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Clash of the Dinosaurs : Videos : Discovery Channel http://t.co/ZB3g91iR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:50:15 +0000", "from_user": "k_mann7", "from_user_id": 414033699, "from_user_id_str": "414033699", "from_user_name": "Kelsey Mann", "geo": null, "id": 148641272838635520, "id_str": "148641272838635520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1642096744/385006_10150368721059398_657219397_8406023_1895804303_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642096744/385006_10150368721059398_657219397_8406023_1895804303_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:48:16 +0000", "from_user": "deyanira1209", "from_user_id": 111662047, "from_user_id_str": "111662047", "from_user_name": "Deyanira' Qui\\u00F1ones", "geo": null, "id": 148640771229224960, "id_str": "148640771229224960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1216676988/BBYO2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1216676988/BBYO2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:48:12 +0000", "from_user": "UnicornTrinidad", "from_user_id": 318034910, "from_user_id_str": "318034910", "from_user_name": "Lauren Trinidad", "geo": null, "id": 148640754288439300, "id_str": "148640754288439296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1684324206/anjfaghsdf_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684324206/anjfaghsdf_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "1932-Beavis:I wonder if we're going to see dinosaurs that would be cool Butthead:\"Dumbass dinosaurs werent invented yet\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:47:41 +0000", "from_user": "marriah1021", "from_user_id": 391234022, "from_user_id_str": "391234022", "from_user_name": "Marriah Alcantara", "geo": null, "id": 148640627029049340, "id_str": "148640627029049344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1615388530/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615388530/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:47:04 +0000", "from_user": "_Evahhh", "from_user_id": 337041681, "from_user_id_str": "337041681", "from_user_name": "Eva Villa", "geo": null, "id": 148640470115946500, "id_str": "148640470115946497", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699255696/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699255696/profile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:46:41 +0000", "from_user": "Salunltd", "from_user_id": 30783261, "from_user_id_str": "30783261", "from_user_name": "Salvador Rodriguez", "geo": null, "id": 148640374196412400, "id_str": "148640374196412417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1632971180/salunltdtwitter_copy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632971180/salunltdtwitter_copy_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@yaarilovee LOL smh, jk I like dinosaurs c: , anyways..I was thinking of just painting the superman logo c: but idk :x", "to_user": "yaarilovee", "to_user_id": 253826697, "to_user_id_str": "253826697", "to_user_name": "y a r i \\u2665", "in_reply_to_status_id": 148639978203774980, "in_reply_to_status_id_str": "148639978203774976"}, +{"created_at": "Mon, 19 Dec 2011 05:45:00 +0000", "from_user": "officialprodigy", "from_user_id": 218738561, "from_user_id_str": "218738561", "from_user_name": "Aliou D", "geo": null, "id": 148639949711867900, "id_str": "148639949711867904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1174358426/Photo_du_77425870-10-___21.30_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1174358426/Photo_du_77425870-10-___21.30_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/DaOf5XmQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:44:46 +0000", "from_user": "DhifaAzzahra", "from_user_id": 161685116, "from_user_id_str": "161685116", "from_user_name": "dhifa.", "geo": null, "id": 148639892241522700, "id_str": "148639892241522688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686941629/DHsXNXmy.jpg_effected_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686941629/DHsXNXmy.jpg_effected_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:43:45 +0000", "from_user": "UnknownKailey", "from_user_id": 255833846, "from_user_id_str": "255833846", "from_user_name": "Kailey DeLeon", "geo": null, "id": 148639637055864830, "id_str": "148639637055864833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1672729984/LGaw3aXs_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672729984/LGaw3aXs_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:43:03 +0000", "from_user": "floespinoza", "from_user_id": 295367535, "from_user_id_str": "295367535", "from_user_name": "Flora Espinoza", "geo": null, "id": 148639459343208450, "id_str": "148639459343208449", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1641504053/IMG_3928_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641504053/IMG_3928_1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:42:59 +0000", "from_user": "BabyLyss", "from_user_id": 308087209, "from_user_id_str": "308087209", "from_user_name": "Alyssa Bearce \\u2665", "geo": null, "id": 148639443564245000, "id_str": "148639443564244992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1689812179/gob_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689812179/gob_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:42:57 +0000", "from_user": "GriseldaBeth943", "from_user_id": 409007259, "from_user_id_str": "409007259", "from_user_name": "Griselda Bethel", "geo": null, "id": 148639435649593340, "id_str": "148639435649593344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1664987834/378508219Lona1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664987834/378508219Lona1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I'm a funny girl! has u can see i can take a good laff! i love hugs!!! Also i play the guitar and dinosaurs rule the world!!!! RAWR ( ;", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:42:45 +0000", "from_user": "jasongroh", "from_user_id": 38569090, "from_user_id_str": "38569090", "from_user_name": "Jason Groh", "geo": null, "id": 148639383497609200, "id_str": "148639383497609217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/624728734/meebo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/624728734/meebo_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/9f1uv7GZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:42:29 +0000", "from_user": "YWIR", "from_user_id": 100897614, "from_user_id_str": "100897614", "from_user_name": "Philip", "geo": null, "id": 148639316808175600, "id_str": "148639316808175616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670334189/YWIR_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670334189/YWIR_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Why don't we get those robot dinosaurs some museums have to fight our wars for us?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:42:18 +0000", "from_user": "victoriashley10", "from_user_id": 424650412, "from_user_id_str": "424650412", "from_user_name": "Ashley Victoria", "geo": null, "id": 148639269907468300, "id_str": "148639269907468288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685616771/propic_perhaps_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685616771/propic_perhaps_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "And on the third day, God created the Remington bolt-action rifle, so that Man could fight the dinosaurs. And the homosexuals.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:41:55 +0000", "from_user": "lydzzard", "from_user_id": 141041098, "from_user_id_str": "141041098", "from_user_name": "Lydia", "geo": null, "id": 148639176189943800, "id_str": "148639176189943808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1598907269/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598907269/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:41:33 +0000", "from_user": "AlexBinkley96", "from_user_id": 312169675, "from_user_id_str": "312169675", "from_user_name": "Alex Binkley", "geo": null, "id": 148639082505969660, "id_str": "148639082505969664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1596428915/318621_2506351902392_1360886075_32923634_155636666_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596428915/318621_2506351902392_1360886075_32923634_155636666_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:40:15 +0000", "from_user": "Emmayy10", "from_user_id": 275841011, "from_user_id_str": "275841011", "from_user_name": "Emily Martinez", "geo": null, "id": 148638756705021950, "id_str": "148638756705021952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1574341451/283586_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1574341451/283586_1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:40:11 +0000", "from_user": "SamSarmiento", "from_user_id": 98865331, "from_user_id_str": "98865331", "from_user_name": "Samantha Joyce", "geo": null, "id": 148638739047006200, "id_str": "148638739047006208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685174860/381081_2496942117407_1668500353_2257731_661702403_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685174860/381081_2496942117407_1668500353_2257731_661702403_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT \"@QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:39:42 +0000", "from_user": "IRachaelElliott", "from_user_id": 242420973, "from_user_id_str": "242420973", "from_user_name": "Rachael Elliott \\u2665", "geo": null, "id": 148638615981932540, "id_str": "148638615981932545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1666812080/McKellar-20111130-00756_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666812080/McKellar-20111130-00756_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:39:31 +0000", "from_user": "DinaHansen2", "from_user_id": 221569318, "from_user_id_str": "221569318", "from_user_name": "Dina Hansen", "geo": null, "id": 148638569731330050, "id_str": "148638569731330048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697560815/IMG-20111215-01664_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697560815/IMG-20111215-01664_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:38:07 +0000", "from_user": "tayx33baby", "from_user_id": 401785539, "from_user_id_str": "401785539", "from_user_name": "Taylor Ann", "geo": null, "id": 148638218668089340, "id_str": "148638218668089344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702310955/IMG-20111216-00423_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702310955/IMG-20111216-00423_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:37:16 +0000", "from_user": "nalagoesraawr", "from_user_id": 68086394, "from_user_id_str": "68086394", "from_user_name": "Nalalalala\\u2665", "geo": null, "id": 148638004112654340, "id_str": "148638004112654336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688476176/331327972_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688476176/331327972_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @yokatieispimpin: RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:36:40 +0000", "from_user": "mkk59", "from_user_id": 32120672, "from_user_id_str": "32120672", "from_user_name": "Melissa King", "geo": null, "id": 148637854405365760, "id_str": "148637854405365760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670046361/PmYkSr80_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670046361/PmYkSr80_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @vandercapellen: \"@QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?\" Hee hee", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:36:34 +0000", "from_user": "hy_lusilva", "from_user_id": 205399299, "from_user_id_str": "205399299", "from_user_name": "luciana silva * \\u2650", "geo": null, "id": 148637828287438850, "id_str": "148637828287438848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1676516479/PQAAABx9rTexNEmqag7_jTDTeCKEJ2bn4AcPcvTjUDfjXEZieVBJI3PA8qMVp2vMgCnhquR2Szxh-R-U4U7u5_uQzN8Am1T1UBemwDpgRJagv5snaA8AroXhObVb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676516479/PQAAABx9rTexNEmqag7_jTDTeCKEJ2bn4AcPcvTjUDfjXEZieVBJI3PA8qMVp2vMgCnhquR2Szxh-R-U4U7u5_uQzN8Am1T1UBemwDpgRJagv5snaA8AroXhObVb_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/LIR8hu6U", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:35:32 +0000", "from_user": "_Kayaax3", "from_user_id": 79842218, "from_user_id_str": "79842218", "from_user_name": "Kayaa Cullen", "geo": null, "id": 148637569582768130, "id_str": "148637569582768128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688361406/298641_2608825668273_1483893451_2921376_1888191893_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688361406/298641_2608825668273_1483893451_2921376_1888191893_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:34:21 +0000", "from_user": "_chanhuifen", "from_user_id": 294389505, "from_user_id_str": "294389505", "from_user_name": "SarahChan\\u2122", "geo": null, "id": 148637271237734400, "id_str": "148637271237734400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698064649/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698064649/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:34:19 +0000", "from_user": "farrahmohamed", "from_user_id": 174609892, "from_user_id_str": "174609892", "from_user_name": "farrah mohamed", "geo": null, "id": 148637262400339970, "id_str": "148637262400339968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696697795/Photo_on_12-16-11_at_6.20_PM_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696697795/Photo_on_12-16-11_at_6.20_PM_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?\\u201D @yomnamadkour", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:33:56 +0000", "from_user": "EmilayNicole", "from_user_id": 54651822, "from_user_id_str": "54651822", "from_user_name": "Emilie Holland", "geo": null, "id": 148637167684562940, "id_str": "148637167684562944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699491945/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699491945/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:33:33 +0000", "from_user": "jordanlehtola", "from_user_id": 235658292, "from_user_id_str": "235658292", "from_user_name": "Jordan Lehtola", "geo": null, "id": 148637069563011070, "id_str": "148637069563011073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1520102843/KeepTrolllin__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1520102843/KeepTrolllin__normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "When I make my money...I'm bringing dinosaurs back.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:33:27 +0000", "from_user": "KSkell11", "from_user_id": 334341625, "from_user_id_str": "334341625", "from_user_name": "Katie Skelly", "geo": null, "id": 148637045676458000, "id_str": "148637045676457985", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696796192/aaaaaaaaaaaaa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696796192/aaaaaaaaaaaaa_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:33:15 +0000", "from_user": "Swaggalicious_6", "from_user_id": 129978774, "from_user_id_str": "129978774", "from_user_name": "Hey it's Layla :D", "geo": null, "id": 148636992857571330, "id_str": "148636992857571328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1614271402/305846_293350367342496_100000026043666_1227689_223352564_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1614271402/305846_293350367342496_100000026043666_1227689_223352564_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:33:08 +0000", "from_user": "ShylaMoNsTeR", "from_user_id": 412695008, "from_user_id_str": "412695008", "from_user_name": "\\u0455\\u043D\\u0443\\u2113\\u03B1 \\u03B9\\u0455\\u0454\\u03B7\\u0432\\u03C5\\u044Fg", "geo": null, "id": 148636962985750530, "id_str": "148636962985750528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700885815/snapshot__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700885815/snapshot__1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:33:01 +0000", "from_user": "dream_create_", "from_user_id": 321575313, "from_user_id_str": "321575313", "from_user_name": "Ashley Wolf ", "geo": null, "id": 148636934217011200, "id_str": "148636934217011200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1580344669/80lpi0Ym_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580344669/80lpi0Ym_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:32:56 +0000", "from_user": "Audrieedl", "from_user_id": 430062789, "from_user_id_str": "430062789", "from_user_name": "Audrie Millette", "geo": null, "id": 148636913115471870, "id_str": "148636913115471872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1677551197/hsff5345it_134150760-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677551197/hsff5345it_134150760-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Magic Tree House #1: Dinosaurs Before Dark Teaching Unit CD: This a custom written CD-ROM containing the literat... http://t.co/PoYi3gjm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:32:41 +0000", "from_user": "keeeToYourHeart", "from_user_id": 135305258, "from_user_id_str": "135305258", "from_user_name": "la puchinetta.", "geo": null, "id": 148636852629422080, "id_str": "148636852629422080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1678064899/photo__haaaaa__normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678064899/photo__haaaaa__normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:32:28 +0000", "from_user": "evelynwxteo", "from_user_id": 51643638, "from_user_id_str": "51643638", "from_user_name": "Jasey Teo", "geo": null, "id": 148636797105209340, "id_str": "148636797105209344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696676382/evelynwxteo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696676382/evelynwxteo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:32:27 +0000", "from_user": "iSkelly87", "from_user_id": 171339632, "from_user_id_str": "171339632", "from_user_name": "Steven Kelly", "geo": null, "id": 148636791560343550, "id_str": "148636791560343552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1616121028/iSkelly87_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616121028/iSkelly87_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@SteveS13F dinosaurs.", "to_user": "SteveS13F", "to_user_id": 17797129, "to_user_id_str": "17797129", "to_user_name": "Steve", "in_reply_to_status_id": 148592836927946750, "in_reply_to_status_id_str": "148592836927946752"}, +{"created_at": "Mon, 19 Dec 2011 05:32:17 +0000", "from_user": "AriaMaee", "from_user_id": 339261848, "from_user_id_str": "339261848", "from_user_name": "Aria Bangkok-Sanders", "geo": null, "id": 148636748631638000, "id_str": "148636748631638017", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690900406/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690900406/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:31:54 +0000", "from_user": "HannahBiebsWood", "from_user_id": 239668962, "from_user_id_str": "239668962", "from_user_name": "Hannah Bieber \\u2020", "geo": null, "id": 148636652296871940, "id_str": "148636652296871938", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692485365/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692485365/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @katycat_gracee: That awkward moment when you and @HannahBiebsWood break a dinosaurs head off.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:31:39 +0000", "from_user": "B3TYBLAcK", "from_user_id": 127379284, "from_user_id_str": "127379284", "from_user_name": "Bety Cabrera ", "geo": null, "id": 148636592322510850, "id_str": "148636592322510848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1552482221/sonrie_y_deja_que..._normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552482221/sonrie_y_deja_que..._normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:31:12 +0000", "from_user": "NerdsofCody", "from_user_id": 401757618, "from_user_id_str": "401757618", "from_user_name": "Cody's Nerd ", "geo": null, "id": 148636476815573000, "id_str": "148636476815572992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1626851602/tumblr_ltdhtyjiD01r1daqso1_500_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626851602/tumblr_ltdhtyjiD01r1daqso1_500_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:31:01 +0000", "from_user": "skkelly13", "from_user_id": 320536184, "from_user_id_str": "320536184", "from_user_name": "Sabina Kelly", "geo": null, "id": 148636429889703940, "id_str": "148636429889703936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699530980/Photo_on_2011-11-22_at_19.22__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699530980/Photo_on_2011-11-22_at_19.22__2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:30:52 +0000", "from_user": "_ImAManiac", "from_user_id": 282778077, "from_user_id_str": "282778077", "from_user_name": "_Cristal\\u2665", "geo": null, "id": 148636395857121280, "id_str": "148636395857121280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691971357/IMG_0851_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691971357/IMG_0851_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:30:36 +0000", "from_user": "Darby_Adams", "from_user_id": 290644303, "from_user_id_str": "290644303", "from_user_name": "Darby Adams", "geo": null, "id": 148636324763680770, "id_str": "148636324763680769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699686048/Image1697_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699686048/Image1697_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:30:04 +0000", "from_user": "modelPINK_", "from_user_id": 250874974, "from_user_id_str": "250874974", "from_user_name": "Shanicee *", "geo": null, "id": 148636193825882100, "id_str": "148636193825882112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1654801155/330303013_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654801155/330303013_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:29:52 +0000", "from_user": "DobbinsDiemeary", "from_user_id": 420596107, "from_user_id_str": "420596107", "from_user_name": "Diemeary Dobbins", "geo": null, "id": 148636140801507330, "id_str": "148636140801507328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696453576/302384_105080689596417_100002834598070_23603_3022668_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696453576/302384_105080689596417_100002834598070_23603_3022668_n_normal.jpg", "source": "<a href="http://www.nibirutech.com" rel="nofollow">TwitBird</a>", "text": "RT @QuotesForGirlz Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:29:26 +0000", "from_user": "SusanaLoveee", "from_user_id": 410066399, "from_user_id_str": "410066399", "from_user_name": "Susana(:", "geo": null, "id": 148636031871229950, "id_str": "148636031871229953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1684387559/SusanaLoveee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684387559/SusanaLoveee_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:29:05 +0000", "from_user": "younmeh", "from_user_id": 107782522, "from_user_id_str": "107782522", "from_user_name": "stephanie leann obe", "geo": null, "id": 148635946336796670, "id_str": "148635946336796672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1665411646/LLMdVUil_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665411646/LLMdVUil_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} + +, +{"created_at": "Mon, 19 Dec 2011 18:59:53 +0000", "from_user": "xforeverchanged", "from_user_id": 382361792, "from_user_id_str": "382361792", "from_user_name": "David Marshall", "geo": null, "id": 148839988736438270, "id_str": "148839988736438272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1663609465/IMG_0497_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663609465/IMG_0497_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Have fun babysitting a fifteen year-old while you walk away from the most amazing girl you'll ever meet. #ararepassiveaggressivetweetappears", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:53 +0000", "from_user": "RebeccaE_x", "from_user_id": 89537395, "from_user_id_str": "89537395", "from_user_name": "Rebecca English", "geo": null, "id": 148839988254085120, "id_str": "148839988254085121", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676764218/eHkwybmQ_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676764218/eHkwybmQ_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "@stephbruce96 yeah only thing is its short and bouncy haha so dancing could be fun.....", "to_user": "stephbruce96", "to_user_id": 310860061, "to_user_id_str": "310860061", "to_user_name": "stephaniebruce", "in_reply_to_status_id": 148839664118267900, "in_reply_to_status_id_str": "148839664118267904"}, +{"created_at": "Mon, 19 Dec 2011 18:59:53 +0000", "from_user": "katiemitch94", "from_user_id": 144603510, "from_user_id_str": "144603510", "from_user_name": "katie mitchell", "geo": null, "id": 148839987834662900, "id_str": "148839987834662912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1569314732/IMG01381-20110707-0133_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1569314732/IMG01381-20110707-0133_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Ice skating was really fun today with everyone! @laurabardsley95 @The_Lewb @staffordS1994 kit, em & joe\\u2665 never laughed so much!\\u263A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:52 +0000", "from_user": "imKhandiiSweetz", "from_user_id": 406522049, "from_user_id_str": "406522049", "from_user_name": "Khandii Sweetz", "geo": null, "id": 148839987012571140, "id_str": "148839987012571136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697520005/7QQCTrA9_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697520005/7QQCTrA9_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iSexstrology: #Sagittarius controls the freedom and fun in a relationship. The opposite spells doom.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:52 +0000", "from_user": "Sarah_LAx", "from_user_id": 47382159, "from_user_id_str": "47382159", "from_user_name": "Sarah Allsop", "geo": null, "id": 148839986760912900, "id_str": "148839986760912896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1655431623/384335_10150384940156510_529766509_8761927_1759004922_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655431623/384335_10150384940156510_529766509_8761927_1759004922_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@Sophie_CW free santa hats, crackers and beers! Balls of bowling fun ;) #strike \\u2665", "to_user": "Sophie_CW", "to_user_id": 51005471, "to_user_id_str": "51005471", "to_user_name": "Sophie Weightman"}, +{"created_at": "Mon, 19 Dec 2011 18:59:52 +0000", "from_user": "gatorgrrl123", "from_user_id": 151238113, "from_user_id_str": "151238113", "from_user_name": "Heather", "geo": null, "id": 148839986207272960, "id_str": "148839986207272960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688268821/zeze_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688268821/zeze_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "waking up every hour with your sick child is not fun when you are also sick. Being a mom is not easy....at all.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:52 +0000", "from_user": "JayyMartina", "from_user_id": 357296762, "from_user_id_str": "357296762", "from_user_name": "Miss Clardy", "geo": null, "id": 148839985766875140, "id_str": "148839985766875136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691414031/P160911_09.58__01__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691414031/P160911_09.58__01__normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Deleting contacts. Fun fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:52 +0000", "from_user": "RandomOlLexiaaa", "from_user_id": 316309039, "from_user_id_str": "316309039", "from_user_name": "Lexia J.!", "geo": null, "id": 148839985091588100, "id_str": "148839985091588096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1638179237/317123_308689169143672_100000077754805_1269171_1459484352_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638179237/317123_308689169143672_100000077754805_1269171_1459484352_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @AyannaIman: @RandomOlLexiaaa @JayKayRenee lmao I love yall to death I SWEAR! But yeah we gon have some fun tonighhhht!!!(:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:51 +0000", "from_user": "phounmie", "from_user_id": 143921858, "from_user_id_str": "143921858", "from_user_name": "Maymounah", "geo": null, "id": 148839983007019000, "id_str": "148839983007019009", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701038500/331674543_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701038500/331674543_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "What part of the world are you?RT @LieselotteDatza: Have fun, it's Friday night!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:51 +0000", "from_user": "Joyuna", "from_user_id": 15209190, "from_user_id_str": "15209190", "from_user_name": "Joy Gerhardt", "geo": null, "id": 148839982746972160, "id_str": "148839982746972160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1586874899/Headshotsquare_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586874899/Headshotsquare_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "My student loan repayment schedule came today. Total payments are more than twice my rent. Fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:51 +0000", "from_user": "Malanga10", "from_user_id": 405489633, "from_user_id_str": "405489633", "from_user_name": "Malanga", "geo": null, "id": 148839981966835700, "id_str": "148839981966835712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698810240/images-2_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698810240/images-2_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MrsMotilo @bortelle Wow Mrs ! I guess Bordelle is for my xmas gifts! great fun all..... as usual!", "to_user": "MrsMotilo", "to_user_id": 21642006, "to_user_id_str": "21642006", "to_user_name": "Sofia Barattieri", "in_reply_to_status_id": 148505474180980740, "in_reply_to_status_id_str": "148505474180980736"}, +{"created_at": "Mon, 19 Dec 2011 18:59:51 +0000", "from_user": "Nunu_91", "from_user_id": 154902472, "from_user_id_str": "154902472", "from_user_name": "I'm An A**hole", "geo": null, "id": 148839981769703420, "id_str": "148839981769703424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1679860979/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679860979/profile_normal.png", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Last night was different but fun :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:51 +0000", "from_user": "brettpeppe3", "from_user_id": 257179205, "from_user_id_str": "257179205", "from_user_name": "Brett Peppe", "geo": null, "id": 148839981740339200, "id_str": "148839981740339200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1660010560/FacebookHomescreenImage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660010560/FacebookHomescreenImage_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@MOST_DoPeMikeyJ haha where were you todaya? Boces wasn't fun", "to_user": "MOST_DoPeMikeyJ", "to_user_id": 296495945, "to_user_id_str": "296495945", "to_user_name": "mike pires", "in_reply_to_status_id": 148813378335412220, "in_reply_to_status_id_str": "148813378335412224"}, +{"created_at": "Mon, 19 Dec 2011 18:59:51 +0000", "from_user": "magnum_pg", "from_user_id": 142180097, "from_user_id_str": "142180097", "from_user_name": "Paul G. II ", "geo": null, "id": 148839981660639230, "id_str": "148839981660639232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1650639880/magnum_pg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650639880/magnum_pg_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Sorry but I won't be waiting in line for no shoes I'm good on that y'all have fun though", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:51 +0000", "from_user": "johvniek", "from_user_id": 55546021, "from_user_id_str": "55546021", "from_user_name": "Johan", "geo": +{"coordinates": [-25.7568,28.2406], "type": "Point"}, "id": 148839981367050240, "id_str": "148839981367050240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680646232/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680646232/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@Jean05Jean: Gay\\u201D thats fun...! :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:51 +0000", "from_user": "xDopetressx", "from_user_id": 186876686, "from_user_id_str": "186876686", "from_user_name": "Esther ", "geo": null, "id": 148839981329289200, "id_str": "148839981329289216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695370195/Fuck_With_Me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695370195/Fuck_With_Me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#IWasThatKid that got made fun of a lot cause i was mad different.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:51 +0000", "from_user": "oh_you_qtt", "from_user_id": 251183322, "from_user_id_str": "251183322", "from_user_name": "urfaceizsnazzy", "geo": null, "id": 148839980859535360, "id_str": "148839980859535360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702410813/rlymhd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702410813/rlymhd_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "going round my dads is so boring, you'd of thought that because he lives on a farm and everything that'd it be fun:(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:50 +0000", "from_user": "femicruz", "from_user_id": 117250894, "from_user_id_str": "117250894", "from_user_name": "Femi Soprano", "geo": null, "id": 148839976501649400, "id_str": "148839976501649408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1553927986/femi__45__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553927986/femi__45__normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Twitter +bbm+sexting=madt fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:50 +0000", "from_user": "Lucy_Yaanez", "from_user_id": 406078557, "from_user_id_str": "406078557", "from_user_name": "lucy yanez", "geo": null, "id": 148839976367435780, "id_str": "148839976367435776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1654970874/7YhYshRC_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654970874/7YhYshRC_normal", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Photoshhooot tmmrw -.- not as fun anymore soon to quuuit this modelingg caareer ;O", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:49 +0000", "from_user": "HUDZZY", "from_user_id": 37912454, "from_user_id_str": "37912454", "from_user_name": "Huda Moh'd", "geo": null, "id": 148839974719070200, "id_str": "148839974719070210", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1640889243/hhh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640889243/hhh_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Had so much fun at the tweetup today .. Thank u guys .. @ehsankooheji @baderkamal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:49 +0000", "from_user": "EyesOnKStew", "from_user_id": 346041690, "from_user_id_str": "346041690", "from_user_name": "Olivia Chanel", "geo": null, "id": 148839974677118980, "id_str": "148839974677118976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1684657530/RPD1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684657530/RPD1_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Maybe they should add that in BD just for the fun of it hahah.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:49 +0000", "from_user": "Jennaskyyy", "from_user_id": 419044979, "from_user_id_str": "419044979", "from_user_name": "lol no", "geo": null, "id": 148839974043795460, "id_str": "148839974043795456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1672107748/6237364493_931b73ba3e_z_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672107748/6237364493_931b73ba3e_z_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iSexstrology: #Sagittarius controls the freedom and fun in a relationship. The opposite spells doom.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:49 +0000", "from_user": "Pakistantime", "from_user_id": 300755659, "from_user_id_str": "300755659", "from_user_name": "Pakistantime.net", "geo": null, "id": 148839973561446400, "id_str": "148839973561446400", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1359409202/222373_171356699588806_170900339634442_420060_1422688_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1359409202/222373_171356699588806_170900339634442_420060_1422688_n_normal.jpg", "source": "<a href="http://fun.ly" rel="nofollow">fun.ly</a>", "text": "Score-December 19, 2011 http://t.co/qpHY1kfW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:49 +0000", "from_user": "sweetflagtweet", "from_user_id": 316042091, "from_user_id_str": "316042091", "from_user_name": "sweetflag", "geo": null, "id": 148839973540474880, "id_str": "148839973540474880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1393157037/24_34_percent_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1393157037/24_34_percent_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "a fun way to use an old @grazedotcom box... http://t.co/fO18MYsg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:49 +0000", "from_user": "JuJubee_22", "from_user_id": 250224788, "from_user_id_str": "250224788", "from_user_name": "Jaleesa Harris", "geo": null, "id": 148839972378656770, "id_str": "148839972378656768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1414701169/fuck_u_Pinhole_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1414701169/fuck_u_Pinhole_1_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@OfficialQueenD how much longer u gonna be in Atlanta? Girl u should have fun a lil while u up there. Glad school ova so I can just relax", "to_user": "OfficialQueenD", "to_user_id": 146855013, "to_user_id_str": "146855013", "to_user_name": "Tashira Hampton"}, +{"created_at": "Mon, 19 Dec 2011 18:59:49 +0000", "from_user": "AlfieLau", "from_user_id": 28821307, "from_user_id_str": "28821307", "from_user_name": "Alfie Lau", "geo": null, "id": 148839971875328000, "id_str": "148839971875328000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/150872191/photoweb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/150872191/photoweb_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@newsleaderfotog - Yup, STREETERS are fun, aren't they - did my share last week so I'm in the clubhouse, done already!", "to_user": "newsleaderfotog", "to_user_id": 435323037, "to_user_id_str": "435323037", "to_user_name": "newsleaderfotog", "in_reply_to_status_id": 148833865685942270, "in_reply_to_status_id_str": "148833865685942273"}, +{"created_at": "Mon, 19 Dec 2011 18:59:49 +0000", "from_user": "SILURDS", "from_user_id": 196207559, "from_user_id_str": "196207559", "from_user_name": "ABIODUN B.OKOROAFOR", "geo": +{"coordinates": [9.1533,7.3206], "type": "Point"}, "id": 148839971359424500, "id_str": "148839971359424514", "iso_language_code": "el", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1534014860/326251094_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534014860/326251094_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @Wyna22: CALABAR STAND UP, TONIGHT IS GONNA BE FUN WITH @eLDeeTheDon. a\\u0305\\u0332\\u0336\\u0325\\u030Ar\\u03B5\\u0332\\u0323\\u0323\\u0323\\u0325 you cally?broda. http://t.co/ASWFLlH8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:49 +0000", "from_user": "DBrickerz", "from_user_id": 60314017, "from_user_id_str": "60314017", "from_user_name": "Brickerz", "geo": null, "id": 148839970856116220, "id_str": "148839970856116224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1486868200/JESUS_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1486868200/JESUS_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@skysports_bryan: @DBrickerz it's great fun.. #TransferDeadlineDay\\u201D and the 10 day wait is over #xmasspirit", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:48 +0000", "from_user": "GlobeChadFinn", "from_user_id": 19968995, "from_user_id_str": "19968995", "from_user_name": "Chad Finn", "geo": null, "id": 148839968880590850, "id_str": "148839968880590848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1571950356/5649_268682095397_689225397_8518838_3783276_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1571950356/5649_268682095397_689225397_8518838_3783276_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@drewmagary 's \"Fun with Peter King\" column today is an absolute tour de force. (I think that means \"interesting\" in French.)", "to_user": "drewmagary", "to_user_id": 16246688, "to_user_id_str": "16246688", "to_user_name": "Drew Magary"}, +{"created_at": "Mon, 19 Dec 2011 18:59:49 +0000", "from_user": "Gertie_Birdie", "from_user_id": 300457124, "from_user_id_str": "300457124", "from_user_name": "Kimberley :)", "geo": null, "id": 148839968545054720, "id_str": "148839968545054721", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1584816316/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584816316/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "BDay \"drink\" from ladies @work! #bday are fun! Flower #martinis at work #dirtymartini in #Vegas had by @KOLcharmer <3 http://t.co/KSp13hkE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:48 +0000", "from_user": "ElenaRevello", "from_user_id": 434849526, "from_user_id_str": "434849526", "from_user_name": "Elena Revello", "geo": null, "id": 148839968045940740, "id_str": "148839968045940736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688810555/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688810555/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @BloodyBeetroots: Never had so much fun in Italy! Thank you ciccios! Sir Bob http://t.co/IA4kLgpW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:47 +0000", "from_user": "thekerrminator", "from_user_id": 32097088, "from_user_id_str": "32097088", "from_user_name": "Justin Kerr", "geo": null, "id": 148839966053646340, "id_str": "148839966053646336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/367101557/ME______normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/367101557/ME______normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@BBWGigi Well I love being there, ur a lot of fun", "to_user": "BBWGigi", "to_user_id": 369171962, "to_user_id_str": "369171962", "to_user_name": "BBWGigi", "in_reply_to_status_id": 148839792950525950, "in_reply_to_status_id_str": "148839792950525952"}, +{"created_at": "Mon, 19 Dec 2011 18:59:47 +0000", "from_user": "morestreetz", "from_user_id": 69106482, "from_user_id_str": "69106482", "from_user_name": "Darryl ", "geo": null, "id": 148839964006809600, "id_str": "148839964006809601", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670831593/330808382_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670831593/330808382_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @PuffNotorious: #Lunchflo ...,kinda excited about the Billboard Mag Christmas party tonight!;) should be fun ...sounds like it will enjoy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:47 +0000", "from_user": "Datrigs", "from_user_id": 347455024, "from_user_id_str": "347455024", "from_user_name": "Lance tetzlaff", "geo": null, "id": 148839963809681400, "id_str": "148839963809681408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1485614772/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1485614772/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@LilBeccaLew it was fun hanging with u in Dallas?", "to_user": "LilBeccaLew", "to_user_id": 434832033, "to_user_id_str": "434832033", "to_user_name": "Rebecca Davis"}, +{"created_at": "Mon, 19 Dec 2011 18:59:47 +0000", "from_user": "johnMarshallS11", "from_user_id": 208041436, "from_user_id_str": "208041436", "from_user_name": "Marshall Sullivan", "geo": null, "id": 148839963251851260, "id_str": "148839963251851264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694342764/384550_2257002390133_1400552815_31930315_1001638229_n_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694342764/384550_2257002390133_1400552815_31930315_1001638229_n_normal.jpeg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@graceernst @cmann3597 hope y'all are having fun!!!", "to_user": "graceernst", "to_user_id": 359672003, "to_user_id_str": "359672003", "to_user_name": "Grace ernst", "in_reply_to_status_id": 148838969247940600, "in_reply_to_status_id_str": "148838969247940608"}, +{"created_at": "Mon, 19 Dec 2011 18:59:46 +0000", "from_user": "thefakestfake", "from_user_id": 280612570, "from_user_id_str": "280612570", "from_user_name": "Team Breezy.", "geo": null, "id": 148839961829978100, "id_str": "148839961829978112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689946189/tumblr_lw2uzobPvx1qbqi0eo1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689946189/tumblr_lw2uzobPvx1qbqi0eo1_500_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "It's so much fun being mean to Lisa.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:46 +0000", "from_user": "KadyDeliah", "from_user_id": 233775732, "from_user_id_str": "233775732", "from_user_name": "Kad\\u03B5nc\\u03B5 R\\u03B5ckl\\u03B5ss", "geo": null, "id": 148839961561534460, "id_str": "148839961561534465", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1667123818/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667123818/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@TheWantedWorld that sounds fun! I wish I could travel, but I rarely get the chance to leave home. I can't wait til I can travel on my own.", "to_user": "TheWantedWorld", "to_user_id": 177625495, "to_user_id_str": "177625495", "to_user_name": "Char!", "in_reply_to_status_id": 148839512070561800, "in_reply_to_status_id_str": "148839512070561792"}, +{"created_at": "Mon, 19 Dec 2011 18:59:46 +0000", "from_user": "xlindseeeey", "from_user_id": 337209549, "from_user_id_str": "337209549", "from_user_name": "Lindsey", "geo": null, "id": 148839960420683780, "id_str": "148839960420683777", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698466225/fbpic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698466225/fbpic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "savanne vind dit dus wel bij me passen.. http://t.co/7VWspbGL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:46 +0000", "from_user": "Sky_LaRay", "from_user_id": 315782351, "from_user_id_str": "315782351", "from_user_name": "Sammi !", "geo": null, "id": 148839959355342850, "id_str": "148839959355342850", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1673937168/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673937168/image_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @ashybone1: #coolkids love Jesus and aren't ashamed to tell Ppl even if they get made fun of", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:45 +0000", "from_user": "rizci_toasters", "from_user_id": 406720547, "from_user_id_str": "406720547", "from_user_name": "Rizci Akbar", "geo": null, "id": 148839958088658940, "id_str": "148839958088658944", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639671635/macco_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639671635/macco_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">twidroyd</a>", "text": "RT @my_supersoccer Yang udah maen, mana suaranya? Yang belum, sekali lagi, ini link-nya: http://t.co/5v0VhuvM #SuperSoccerFantasyFootball", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:45 +0000", "from_user": "Ms5letters", "from_user_id": 126851499, "from_user_id_str": "126851499", "from_user_name": "Angela gordon", "geo": null, "id": 148839957560176640, "id_str": "148839957560176641", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702561462/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702561462/image_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @ThisShytCray: RT @Ms5letters: i need more followers ! I wanna have some fun on here today", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:45 +0000", "from_user": "mimmix_", "from_user_id": 270418145, "from_user_id_str": "270418145", "from_user_name": "I'm a Jovatic", "geo": null, "id": 148839955513344000, "id_str": "148839955513344000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698894011/nickji_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698894011/nickji_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Yep I'm a beginner in trying to trend something but it's fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:45 +0000", "from_user": "CTyxxxx", "from_user_id": 214855266, "from_user_id_str": "214855266", "from_user_name": "Peter W", "geo": null, "id": 148839954355724300, "id_str": "148839954355724288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1165472983/staff_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1165472983/staff_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@FakeFifthDriver Sundays race was fun looking forward to next weekends. Not sure I'll remember to turn up as it's Christmas though", "to_user": "FakeFifthDriver", "to_user_id": 272477693, "to_user_id_str": "272477693", "to_user_name": "Fake McLaren", "in_reply_to_status_id": 148825046515855360, "in_reply_to_status_id_str": "148825046515855362"}, +{"created_at": "Mon, 19 Dec 2011 18:59:45 +0000", "from_user": "AdamHarrisbox", "from_user_id": 74837974, "from_user_id_str": "74837974", "from_user_name": "Adam Harris", "geo": null, "id": 148839954183761920, "id_str": "148839954183761921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1642665697/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642665697/image_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @TheBoweryTO: Our pride and joy!! RT @LauraFremont: Absolutely love the fun and whimsical neon sign @TheBoweryTO! http://t.co/S84RZzPL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:44 +0000", "from_user": "TMA7", "from_user_id": 95658219, "from_user_id_str": "95658219", "from_user_name": "Tom Marcinko", "geo": null, "id": 148839952891916300, "id_str": "148839952891916288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/568521012/eye_of_god_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/568521012/eye_of_god_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @MiltShook: Would a brokered GOP convention be fun or what? You know that's what Trump is waiting for. He thinks he'll sweep in, save day.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:44 +0000", "from_user": "beeautiful_soul", "from_user_id": 333726720, "from_user_id_str": "333726720", "from_user_name": "Maggie\\u2655", "geo": null, "id": 148839952602501120, "id_str": "148839952602501120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1680077733/Picture_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680077733/Picture_1_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @WizKhalllifa: #IWasThatKid that covered my hands in glue , let it dry , and then peeled it off for fun...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:44 +0000", "from_user": "PaigeSykes_TWx", "from_user_id": 295291389, "from_user_id_str": "295291389", "from_user_name": "Paige Sykes \\u2665 ", "geo": null, "id": 148839952476672000, "id_str": "148839952476672001", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698464691/IMG00666-20110918-1147_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698464691/IMG00666-20110918-1147_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@MarcuscollinsUK have fun babe :) any chance of a follow ? I was gutted when you didn't win :'( xx", "to_user": "MarcuscollinsUK", "to_user_id": 370448015, "to_user_id_str": "370448015", "to_user_name": "Marcus Collins", "in_reply_to_status_id": 148839438309527550, "in_reply_to_status_id_str": "148839438309527553"}, +{"created_at": "Mon, 19 Dec 2011 18:59:44 +0000", "from_user": "caitlin_lemaire", "from_user_id": 324166630, "from_user_id_str": "324166630", "from_user_name": "Caitlin Lemaire\\uE314", "geo": null, "id": 148839950484385800, "id_str": "148839950484385792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701721891/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701721891/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@Emily_Williams7: I want to meet some new, fun people(: #hmu #tiredofthesamestuffeveryday\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:43 +0000", "from_user": "tweepsocial", "from_user_id": 273361327, "from_user_id_str": "273361327", "from_user_name": "Tweet Social", "geo": null, "id": 148839948936675330, "id_str": "148839948936675328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1290062548/internet_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1290062548/internet_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "These Festive Angry Birds Decorations Are Really An Fun Interactive Game http://t.co/bnWHi2af", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:43 +0000", "from_user": "MotherfuckenTim", "from_user_id": 403098305, "from_user_id_str": "403098305", "from_user_name": "Tim Caballero", "geo": null, "id": 148839948026519550, "id_str": "148839948026519552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1678502911/378114_252739714785468_100001483254110_695539_1025304607_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678502911/378114_252739714785468_100001483254110_695539_1025304607_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@_dria__ a lot of things but I am going to do my work in school and have fun. Do you still think your better then me in black ops??", "to_user": "_dria__", "to_user_id": 436532281, "to_user_id_str": "436532281", "to_user_name": "alexandria", "in_reply_to_status_id": 148839315491917820, "in_reply_to_status_id_str": "148839315491917825"}, +{"created_at": "Mon, 19 Dec 2011 18:59:43 +0000", "from_user": "rizkirado", "from_user_id": 114418608, "from_user_id_str": "114418608", "from_user_name": "Rizki Rado Manita", "geo": null, "id": 148839947774853120, "id_str": "148839947774853120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686757878/Image_002__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686757878/Image_002__normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @girlsproverbs: People can always make fun of me and tell me \"You can't\". All I have to do is keep strong and show them I\\u2019m better than them.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:43 +0000", "from_user": "abbiewarrenxx", "from_user_id": 392846938, "from_user_id_str": "392846938", "from_user_name": "#devlinator", "geo": null, "id": 148839947036672000, "id_str": "148839947036672001", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698405033/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698405033/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @JanetJealousy: Dublin tonight :) busy busy. Havn't been in a while so it should be great fun apart from the early start tomorrow ;.;", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:42 +0000", "from_user": "hunterhender23", "from_user_id": 230039664, "from_user_id_str": "230039664", "from_user_name": "Hunter Henderson", "geo": null, "id": 148839943081439230, "id_str": "148839943081439232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1576045031/me_and_sammypoo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576045031/me_and_sammypoo_normal.jpg", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "I'm never growing up. Grown ups are no fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:42 +0000", "from_user": "welcome2allah", "from_user_id": 255801536, "from_user_id_str": "255801536", "from_user_name": "Jay Vanhoose", "geo": null, "id": 148839942867533820, "id_str": "148839942867533824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695145132/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695145132/profile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "SELLING DOPE IS NOT FOR FUN ITS TO SURVIVE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:42 +0000", "from_user": "shanicem0rgan", "from_user_id": 132684300, "from_user_id_str": "132684300", "from_user_name": "shanice morgan", "geo": +{"coordinates": [55.0508,-1.4563], "type": "Point"}, "id": 148839942733316100, "id_str": "148839942733316097", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702308260/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702308260/image_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Mad rush round town tomorrow to find mother gooses Christmas presents #fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:42 +0000", "from_user": "StevieSilver", "from_user_id": 316040401, "from_user_id_str": "316040401", "from_user_name": "Stevie Silver", "geo": null, "id": 148839942406160400, "id_str": "148839942406160385", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1605744961/328637072_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1605744961/328637072_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@TitsNsass Hahaha. Sounds like it would be fun working with you tho. BBM..? Pin: 28B0B81C if you wanna random chat.", "to_user": "TitsNsass", "to_user_id": 287017108, "to_user_id_str": "287017108", "to_user_name": "Valerie", "in_reply_to_status_id": 148839359804743680, "in_reply_to_status_id_str": "148839359804743681"}, +{"created_at": "Mon, 19 Dec 2011 18:59:42 +0000", "from_user": "mzrhondaline", "from_user_id": 24623707, "from_user_id_str": "24623707", "from_user_name": "MzRhondaline", "geo": null, "id": 148839941961555970, "id_str": "148839941961555969", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1642875936/FacebookHomescreenImage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642875936/FacebookHomescreenImage_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Money making is fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:41 +0000", "from_user": "Elsa_Shibley", "from_user_id": 368722883, "from_user_id_str": "368722883", "from_user_name": "Elsa _Shibley", "geo": null, "id": 148839940363534340, "id_str": "148839940363534336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1530891338/710433717a021c453-1d9e-11df-b70b-0902030bcd6a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1530891338/710433717a021c453-1d9e-11df-b70b-0902030bcd6a_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Crazy is just another name for someone who knows how to have fun. ;) #TeamFollowBack", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:41 +0000", "from_user": "meowitslucy", "from_user_id": 22045397, "from_user_id_str": "22045397", "from_user_name": "Lucy Evenden", "geo": null, "id": 148839939012964350, "id_str": "148839939012964352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1555084503/new1lol_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555084503/new1lol_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@joehinky I would, but for once I have a social life. Have fun! (:", "to_user": "joehinky", "to_user_id": 37734071, "to_user_id_str": "37734071", "to_user_name": "Joseph Hinckes", "in_reply_to_status_id": 148827028945252350, "in_reply_to_status_id_str": "148827028945252352"}, +{"created_at": "Mon, 19 Dec 2011 18:59:41 +0000", "from_user": "bbbrad", "from_user_id": 626673, "from_user_id_str": "626673", "from_user_name": "Brad Eshbach", "geo": null, "id": 148839938937466880, "id_str": "148839938937466881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1364690570/Photo_on_2011-04-17_at_12.08__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1364690570/Photo_on_2011-04-17_at_12.08__2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Animals would make fun of us so hard if they knew we take pills to grow better eyelashes. #ifanimalsweresmarttoo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:41 +0000", "from_user": "Steph_Lord12", "from_user_id": 347701224, "from_user_id_str": "347701224", "from_user_name": "Stephanie", "geo": null, "id": 148839938098602000, "id_str": "148839938098601984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1571946112/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1571946112/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "It's all fun & games watching the fights on twitter, until you get tagged in them!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:40 +0000", "from_user": "picturejunkee", "from_user_id": 105307055, "from_user_id_str": "105307055", "from_user_name": "Justin", "geo": null, "id": 148839937054220300, "id_str": "148839937054220289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700452429/me_borla_hat-0537_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700452429/me_borla_hat-0537_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Rotel_Tomatoes I do lots of photography but pets is pretty fun. similar to a baby without all the yelling and screaming. :D", "to_user": "Rotel_Tomatoes", "to_user_id": 192608936, "to_user_id_str": "192608936", "to_user_name": "Raquel Broussard", "in_reply_to_status_id": 148839081747562500, "in_reply_to_status_id_str": "148839081747562497"}, +{"created_at": "Mon, 19 Dec 2011 18:59:40 +0000", "from_user": "neetswriter", "from_user_id": 382816720, "from_user_id_str": "382816720", "from_user_name": "Anita Chapman", "geo": null, "id": 148839936521543680, "id_str": "148839936521543680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1572356311/Twitter_pic2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572356311/Twitter_pic2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@DeeBee47 how exciting! Blogging is great fun-started in Oct and am bit addicted, also with Twitter! Good luck.", "to_user": "DeeBee47", "to_user_id": 72067912, "to_user_id_str": "72067912", "to_user_name": "Denise White", "in_reply_to_status_id": 148833787592196100, "in_reply_to_status_id_str": "148833787592196096"}, +{"created_at": "Mon, 19 Dec 2011 18:59:40 +0000", "from_user": "M_MAGAZlNE", "from_user_id": 129154768, "from_user_id_str": "129154768", "from_user_name": "M Magazine", "geo": null, "id": 148839935842074620, "id_str": "148839935842074625", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701750274/M02cover_240px_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701750274/M02cover_240px_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "So great talking to @onedirection bright and early this morning! Such fun guys! Look for the exclusive interview deets in next issue of M!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:40 +0000", "from_user": "elluxion", "from_user_id": 120164928, "from_user_id_str": "120164928", "from_user_name": "Samantha Tung", "geo": null, "id": 148839935829479420, "id_str": "148839935829479424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668938645/jyj_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668938645/jyj_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@charrleneee did she say if turkey is fun?", "to_user": "charrleneee", "to_user_id": 108039015, "to_user_id_str": "108039015", "to_user_name": "Charlene Shannon", "in_reply_to_status_id": 148839352817041400, "in_reply_to_status_id_str": "148839352817041411"}, +{"created_at": "Mon, 19 Dec 2011 18:59:40 +0000", "from_user": "beezromone123", "from_user_id": 390832381, "from_user_id_str": "390832381", "from_user_name": "romone townsel", "geo": null, "id": 148839935259058180, "id_str": "148839935259058177", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1634062443/9R2eUAr3_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634062443/9R2eUAr3_normal", "source": "<a href="http://golauncher.goforandroid.com" rel="nofollow">GO Launcher EX</a>", "text": "art class is fun we you have free time", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:40 +0000", "from_user": "luciatherine", "from_user_id": 74234144, "from_user_id_str": "74234144", "from_user_name": "Lucia Purcell", "geo": null, "id": 148839934189510660, "id_str": "148839934189510656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1553915681/meeeee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553915681/meeeee_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Almost passing out in Environmental fun stuff", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:40 +0000", "from_user": "lizzum09", "from_user_id": 438934371, "from_user_id_str": "438934371", "from_user_name": "Elizabeth Snedeker", "geo": null, "id": 148839934004957200, "id_str": "148839934004957184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": null, "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@amiohe @fgorgis def do!! It's a great app, so much fun too!! But it does freeze, I actually had to restart my phone this morning.", "to_user": "amiohe", "to_user_id": 249333513, "to_user_id_str": "249333513", "to_user_name": "Ami Ohe", "in_reply_to_status_id": 148838829082681340, "in_reply_to_status_id_str": "148838829082681344"}, +{"created_at": "Mon, 19 Dec 2011 18:59:39 +0000", "from_user": "baileydonell", "from_user_id": 146591997, "from_user_id_str": "146591997", "from_user_name": "Bailey Donell", "geo": null, "id": 148839932956385280, "id_str": "148839932956385280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639271131/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639271131/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @pb_and_CELLY: I wanna say sorry to anyone I've hurt/made fun of/lied to/unintentionally or intentionlly pissed off & to people who hate me for no reason.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:39 +0000", "from_user": "ERAplaceable", "from_user_id": 123836957, "from_user_id_str": "123836957", "from_user_name": "Era Cruz ", "geo": null, "id": 148839932000083970, "id_str": "148839932000083970", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1514376479/cow_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1514376479/cow_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Baking Peppermint chocolate chip cookies! Having soooo much fun. Want some?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:39 +0000", "from_user": "De_yelle", "from_user_id": 158532069, "from_user_id_str": "158532069", "from_user_name": "Deann Rogers \\uE418", "geo": null, "id": 148839931589034000, "id_str": "148839931589033984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685149218/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685149218/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @IamRicoLove: Pretty girls have the most fun..... #TTLO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:39 +0000", "from_user": "AneliesseR", "from_user_id": 439404485, "from_user_id_str": "439404485", "from_user_name": "aneliesse rodriguez", "geo": null, "id": 148839931505147900, "id_str": "148839931505147906", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698709472/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698709472/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@FuckingArturo sounds fun(:", "to_user": "FuckingArturo", "to_user_id": 130956899, "to_user_id_str": "130956899", "to_user_name": "Arturo Rivera!"}, +{"created_at": "Mon, 19 Dec 2011 18:59:39 +0000", "from_user": "CollegeBoy365", "from_user_id": 120048410, "from_user_id_str": "120048410", "from_user_name": "Ish The CollegeBoy", "geo": null, "id": 148839931379326980, "id_str": "148839931379326976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1465088393/k6Ekkmum_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1465088393/k6Ekkmum_normal", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "PLAYHOUSE was so turnt up last night....... I haven't had that much fun @ a club in a while.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:39 +0000", "from_user": "nicole_cassano", "from_user_id": 398338157, "from_user_id_str": "398338157", "from_user_name": "Nicole Cassano", "geo": null, "id": 148839930758578180, "id_str": "148839930758578176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1606735871/260483_10150291577406934_675386933_9302192_842959_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606735871/260483_10150291577406934_675386933_9302192_842959_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@jessicacaviglia after everyone makes fun now they want one \\uD83D\\uDE20", "to_user": "jessicacaviglia", "to_user_id": 411121174, "to_user_id_str": "411121174", "to_user_name": "jessica caviglia", "in_reply_to_status_id": 148839354511536130, "in_reply_to_status_id_str": "148839354511536128"}, +{"created_at": "Mon, 19 Dec 2011 18:59:39 +0000", "from_user": "_NorthmanEric", "from_user_id": 420575553, "from_user_id_str": "420575553", "from_user_name": "Eric Northman", "geo": null, "id": 148839930146201600, "id_str": "148839930146201601", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698466634/5kpbkax2hhu0k5bh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698466634/5kpbkax2hhu0k5bh_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@Ms_Ravenscroft miss shoes *bows* naughty is a fun word and way to be", "to_user": "Ms_Ravenscroft", "to_user_id": 340303609, "to_user_id_str": "340303609", "to_user_name": "Pam Ravenscroft", "in_reply_to_status_id": 148838272674709500, "in_reply_to_status_id_str": "148838272674709504"}, +{"created_at": "Mon, 19 Dec 2011 18:59:39 +0000", "from_user": "yzzapamienta", "from_user_id": 249658622, "from_user_id_str": "249658622", "from_user_name": "alyzza pamienta", "geo": null, "id": 148839928942428160, "id_str": "148839928942428161", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1670989699/IMG_0516_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670989699/IMG_0516_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @DianeJamero: So tired! Anyway, had so much fun naman playing monopoly deal with @yzzapamienta @jeunkristin & master yuts.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:39 +0000", "from_user": "lostiegirl78", "from_user_id": 22976330, "from_user_id_str": "22976330", "from_user_name": "Amber Pruitt", "geo": null, "id": 148839928925650940, "id_str": "148839928925650944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687534554/kXqLqUNw_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687534554/kXqLqUNw_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "@John_AKA_Becker I went and picked up Bri for the afternoon so she is at work with me. She is having great fun with the copy stamp. :)", "to_user": "John_AKA_Becker", "to_user_id": 222021574, "to_user_id_str": "222021574", "to_user_name": "John Campbell", "in_reply_to_status_id": 148825857195118600, "in_reply_to_status_id_str": "148825857195118592"}, +{"created_at": "Mon, 19 Dec 2011 18:59:38 +0000", "from_user": "tollios29", "from_user_id": 321841485, "from_user_id_str": "321841485", "from_user_name": "Steven Tollios", "geo": null, "id": 148839928506236930, "id_str": "148839928506236928", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1646286875/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646286875/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "So lunch was fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:38 +0000", "from_user": "MariaOussi", "from_user_id": 342882298, "from_user_id_str": "342882298", "from_user_name": "Maria", "geo": null, "id": 148839927591870460, "id_str": "148839927591870464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1678009138/_lkjhjklkjhgf_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678009138/_lkjhjklkjhgf_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Been christmas shopping in the city today with @HannaRashiid !! FUN FUN FUN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:38 +0000", "from_user": "ZulmanMunoz", "from_user_id": 403877487, "from_user_id_str": "403877487", "from_user_name": "Zuzu Berry", "geo": null, "id": 148839927575093250, "id_str": "148839927575093248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1678272275/cedes_20and_20me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678272275/cedes_20and_20me_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @AriesDailyScope: #Aries don't deal with stupid people, unless we are in the mood for a little fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:37 +0000", "from_user": "kailee80emmure", "from_user_id": 439592959, "from_user_id_str": "439592959", "from_user_name": "kailee", "geo": null, "id": 148839924190281730, "id_str": "148839924190281729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702320363/6tVx2O08_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702320363/6tVx2O08_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Being sick is OFFICIALLY no fun. Can't wait for school tomorrow(:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:37 +0000", "from_user": "re3s3e_pi3ces", "from_user_id": 228966328, "from_user_id_str": "228966328", "from_user_name": "Sharisse Dreher", "geo": null, "id": 148839922999115780, "id_str": "148839922999115776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1325387535/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1325387535/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "super excited to see my babes tonight ! @brittnaynay856 @HollsKM @NotSoNiceNikki :)) gonna have too much fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:37 +0000", "from_user": "JodiR04", "from_user_id": 31085678, "from_user_id_str": "31085678", "from_user_name": "Jodi ", "geo": null, "id": 148839922491605000, "id_str": "148839922491604992", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1364701863/110522-171631_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1364701863/110522-171631_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@tashalouise6 fun fun fun!", "to_user": "tashalouise6", "to_user_id": 41167377, "to_user_id_str": "41167377", "to_user_name": "Natasha Louise Sporn", "in_reply_to_status_id": 148839324845211650, "in_reply_to_status_id_str": "148839324845211648"}, +{"created_at": "Mon, 19 Dec 2011 18:59:37 +0000", "from_user": "alexis32lislej", "from_user_id": 441068599, "from_user_id_str": "441068599", "from_user_name": "alexis", "geo": null, "id": 148839921292025860, "id_str": "148839921292025858", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702578398/Snapshot_20111219_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702578398/Snapshot_20111219_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "vous saviez que ce soir sur fun radio il y passe les plus grand dj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:36 +0000", "from_user": "ilovemustashes1", "from_user_id": 310783155, "from_user_id_str": "310783155", "from_user_name": "Ellaa :{) 16", "geo": null, "id": 148839919480090620, "id_str": "148839919480090626", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680533591/Victoriayaya_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680533591/Victoriayaya_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@beth_pineapple hehe have fun x", "to_user": "beth_pineapple", "to_user_id": 397127138, "to_user_id_str": "397127138", "to_user_name": "Beth Whitehead :P", "in_reply_to_status_id": 148827343979413500, "in_reply_to_status_id_str": "148827343979413504"}, +{"created_at": "Mon, 19 Dec 2011 18:59:36 +0000", "from_user": "SocialNetNanny", "from_user_id": 51418905, "from_user_id_str": "51418905", "from_user_name": "Lanae", "geo": null, "id": 148839918754467840, "id_str": "148839918754467840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/740724997/lenae_pink_avatar_crop_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/740724997/lenae_pink_avatar_crop_copy_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@jhiscock @ccstcloud Fun!", "to_user": "jhiscock", "to_user_id": 26158226, "to_user_id_str": "26158226", "to_user_name": "Jillian Hiscock", "in_reply_to_status_id": 148838698241368060, "in_reply_to_status_id_str": "148838698241368064"}, +{"created_at": "Mon, 19 Dec 2011 18:59:36 +0000", "from_user": "jordanjhamilton", "from_user_id": 228494431, "from_user_id_str": "228494431", "from_user_name": "Jordan Hamilton", "geo": null, "id": 148839917114503170, "id_str": "148839917114503168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1519276339/Screen_shot_2011-08-29_at_18.38.55_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1519276339/Screen_shot_2011-08-29_at_18.38.55_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "all the things you hate are fun fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:36 +0000", "from_user": "LisaMBregman", "from_user_id": 12793902, "from_user_id_str": "12793902", "from_user_name": "Lisa Bregman", "geo": null, "id": 148839916518916100, "id_str": "148839916518916096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1283657532/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1283657532/me_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Fun fact: apparently its statistically harder to get a job at an apple store than to get into Harvard. (didn't say #northwestern though!) :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:35 +0000", "from_user": "garabe", "from_user_id": 44605065, "from_user_id_str": "44605065", "from_user_name": "Garry", "geo": null, "id": 148839916162383870, "id_str": "148839916162383872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1522688469/AW5JS7mCQAI-NJM_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1522688469/AW5JS7mCQAI-NJM_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@bethanyrutter i make literally the worst choices when it comes to people i develop a crush for. perennially no chance. ITS ALL FUN.", "to_user": "bethanyrutter", "to_user_id": 83918119, "to_user_id_str": "83918119", "to_user_name": "Bets."}, +{"created_at": "Mon, 19 Dec 2011 18:59:35 +0000", "from_user": "ChrisHardCock", "from_user_id": 407244894, "from_user_id_str": "407244894", "from_user_name": "Christian Rovert", "geo": null, "id": 148839915696820220, "id_str": "148839915696820225", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681498983/2011-11-24_07.20.57_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681498983/2011-11-24_07.20.57_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@ShaiiJackson Haha ok, well have fun looking ;)", "to_user": "ShaiiJackson", "to_user_id": 25105621, "to_user_id_str": "25105621", "to_user_name": "\\u00BBJanet.Jackson.Fan\\u00AB", "in_reply_to_status_id": 148839689426714620, "in_reply_to_status_id_str": "148839689426714624"}, +{"created_at": "Mon, 19 Dec 2011 18:59:35 +0000", "from_user": "D1Tunechi", "from_user_id": 110716722, "from_user_id_str": "110716722", "from_user_name": "Toogie\\u2122", "geo": null, "id": 148839915571003400, "id_str": "148839915571003392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692059161/Tuenchi_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692059161/Tuenchi_normal", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @FollowVSG_: You say west bloomfield is boring but everyday you tweet about fun stuff that you do at school that is in WEST BLOOMFIELD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:35 +0000", "from_user": "barbchamberlain", "from_user_id": 14565808, "from_user_id_str": "14565808", "from_user_name": "Barb Chamberlain", "geo": null, "id": 148839913419313150, "id_str": "148839913419313152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1271948744/Barb_Oct2010_smallerfile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1271948744/Barb_Oct2010_smallerfile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Kudos to @CarlsonSchool at U Minn for beautiful/fun holiday card concept & execution. http://t.co/AYFdgchy #highered. Love the security guy.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:35 +0000", "from_user": "groundhogxp", "from_user_id": 77164199, "from_user_id_str": "77164199", "from_user_name": "Anderson Chen", "geo": null, "id": 148839912433651700, "id_str": "148839912433651712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1249556384/games_phoenixWright-chibiMaya_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1249556384/games_phoenixWright-chibiMaya_normal.gif", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@bobatea123 Have fun!", "to_user": "bobatea123", "to_user_id": 92556984, "to_user_id_str": "92556984", "to_user_name": "Cindy Mo", "in_reply_to_status_id": 148839845882634240, "in_reply_to_status_id_str": "148839845882634240"}, +{"created_at": "Mon, 19 Dec 2011 18:59:35 +0000", "from_user": "LatrellTellsIt", "from_user_id": 245875037, "from_user_id_str": "245875037", "from_user_name": "Coco Bean :)", "geo": null, "id": 148839912345579520, "id_str": "148839912345579520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1686540175/kenzie_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686540175/kenzie_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Frank_Ocean_: Playing with someone's feelings is all fun and games until karma sets in.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:35 +0000", "from_user": "Myatunbi", "from_user_id": 86018853, "from_user_id_str": "86018853", "from_user_name": "Moyo Fatunbi", "geo": null, "id": 148839912282669060, "id_str": "148839912282669056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680466676/IMG_1739_20-_20Copy_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680466676/IMG_1739_20-_20Copy_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Lolzz...hope uve eaten dinner tho\"@boy_wondar: :* RT@Myatunbi: Today was fun tho...thankx tew @boy_wondar. And @mishaq007\"\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:35 +0000", "from_user": "Trust_Issues93", "from_user_id": 258566130, "from_user_id_str": "258566130", "from_user_name": "\\u00DF\\u00AEiannaM.", "geo": null, "id": 148839912127463420, "id_str": "148839912127463424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699102520/n4xqcw8a_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699102520/n4xqcw8a_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "This Fun Aint It ( :", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:34 +0000", "from_user": "MINUS_Stl", "from_user_id": 40580577, "from_user_id_str": "40580577", "from_user_name": "Travis Balke", "geo": null, "id": 148839911645122560, "id_str": "148839911645122560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677755417/tumblr_l8lu6t2LJJ1qba9rro1_500_thumb_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677755417/tumblr_l8lu6t2LJJ1qba9rro1_500_thumb_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@JG_CHEFS Well, 4 days including today. :) I'm in the high 60's of my 1st prestige, but stopping at 80. Xmas noobs will be fun!", "to_user": "JG_CHEFS", "to_user_id": 19563357, "to_user_id_str": "19563357", "to_user_name": "Jeremy Greiner", "in_reply_to_status_id": 148838847894130700, "in_reply_to_status_id_str": "148838847894130688"}, +{"created_at": "Mon, 19 Dec 2011 18:59:34 +0000", "from_user": "NYCbeliebers", "from_user_id": 93331380, "from_user_id_str": "93331380", "from_user_name": "\\u2661\\u2661\\u2661\\u2665\\u2661\\u2661\\u2661", "geo": null, "id": 148839908864303100, "id_str": "148839908864303104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1591973889/Miley-Cyrus-Liam-Hemsworth_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591973889/Miley-Cyrus-Liam-Hemsworth_normal.jpg", "source": "<a href="http://www.nibirutech.com" rel="nofollow">TwitBird</a>", "text": "About to be stuck in a machine for a while! At least I can take a few breaks! Not gonna be fun!!!! :( going to a spa in 4 days:D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:34 +0000", "from_user": "CourtneyCashh_", "from_user_id": 376334456, "from_user_id_str": "376334456", "from_user_name": "CourtneyBrianna", "geo": null, "id": 148839908671365120, "id_str": "148839908671365121", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1659865935/IMG_20111126_201723_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659865935/IMG_20111126_201723_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "RT @TNealBALLisLIFE: 6/18/09\\n\"our graduation was yesterday it was cool we all had fun gone miss all you people(Courtney had tears)love u\" @CourtneyCashh_ lmao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:34 +0000", "from_user": "bigkelv", "from_user_id": 32673304, "from_user_id_str": "32673304", "from_user_name": "Sir McDouglas", "geo": null, "id": 148839908222574600, "id_str": "148839908222574592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702296300/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702296300/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "sat was fun as hell so u kno wat ... we doin the same thing again TONIGHT! lmao (k. hart v)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:59:33 +0000", "from_user": "Daaaaaanish_", "from_user_id": 263622587, "from_user_id_str": "263622587", "from_user_name": "\\u24D3\\u24D0\\u24DD\\u24D8\\u24E2\\u24D7\\u2762", "geo": null, "id": 148839906867818500, "id_str": "148839906867818496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701641362/Daaaaaanish__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701641362/Daaaaaanish__normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "yeap . Can't stop raping . \\u201C@syzxiwxni: Having fun. Still raping the keypad? \"@Daaaaaanish_: @syzxiwxni best ?\"\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:33 +0000", "from_user": "whitegyr", "from_user_id": 41840062, "from_user_id_str": "41840062", "from_user_name": "WhiteGyr Web Design", "geo": null, "id": 148839904913268740, "id_str": "148839904913268736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1167754716/WhiteGyrFace_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1167754716/WhiteGyrFace_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @mattcutts: In case you missed it: search on Google for \"let it snow\" to see a fun easter egg. :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:33 +0000", "from_user": "TwinkleDinosaur", "from_user_id": 92858098, "from_user_id_str": "92858098", "from_user_name": ".\\u2665'Maria Westergaard", "geo": null, "id": 148839904841961470, "id_str": "148839904841961472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1669286580/Snapshot_20111202_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669286580/Snapshot_20111202_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TheFireSigns: #Leo here to learn what they want, how to have fun and be happy. And how to make it all happen.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:33 +0000", "from_user": "AyokaBerry", "from_user_id": 195172847, "from_user_id_str": "195172847", "from_user_name": "Berry", "geo": null, "id": 148839904338653200, "id_str": "148839904338653184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702536958/Ibadan-20111219-00681_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702536958/Ibadan-20111219-00681_1_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Ma binu! \"@Beesberry: U no kuku dey ask for person,oga fun e o. RT\"@AyokaBerry: I v bn around \"@Beesberry: @AyokaBerry : sup wif u nau,where", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:33 +0000", "from_user": "MarryTheUnicorn", "from_user_id": 91581243, "from_user_id_str": "91581243", "from_user_name": "Not ur ordinary fag", "geo": null, "id": 148839904338640900, "id_str": "148839904338640896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688840698/tumblr_luoc0poevP1qza4gto1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688840698/tumblr_luoc0poevP1qza4gto1_500_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "OMG this is so fun, i'm actually losing sleep.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:33 +0000", "from_user": "AndyChalton", "from_user_id": 419122830, "from_user_id_str": "419122830", "from_user_name": "Andy Chalton", "geo": null, "id": 148839904225411070, "id_str": "148839904225411073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1652891481/twit_dpp_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652891481/twit_dpp_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Gym later with @jackooboulton this should be fun #beenawhile", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:33 +0000", "from_user": "iruvsoshi", "from_user_id": 83800588, "from_user_id_str": "83800588", "from_user_name": "\\uFF4A \\uFF41 \\uFF52 \\uFF45 \\uFF44 \\u3002", "geo": null, "id": 148839904053428220, "id_str": "148839904053428224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694431266/crop2-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694431266/crop2-1_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@Saradolimz OMG I BOUGHT TOO ITS DAMN FUN!!! I LOVE THE FIRST ONE LOL ZOO TYCOON WITH DINOSAURS AND STUFF", "to_user": "Saradolimz", "to_user_id": 53036970, "to_user_id_str": "53036970", "to_user_name": "Sarah \\u30DB\\u30DD ", "in_reply_to_status_id": 148839679200985100, "in_reply_to_status_id_str": "148839679200985088"}, +{"created_at": "Mon, 19 Dec 2011 18:59:33 +0000", "from_user": "rylandR5", "from_user_id": 154591004, "from_user_id_str": "154591004", "from_user_name": "Ryland Lynch", "geo": null, "id": 148839903927603200, "id_str": "148839903927603200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1206179834/LynchFam-95_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1206179834/LynchFam-95_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "Had so much Fun at disneyland with @Raini_Rodriguez @rossR5 @rockyR5 @rikerR5 @rydelR5 @CalumWorthy @StarringRico and Laura lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:32 +0000", "from_user": "SassyHotBabe", "from_user_id": 427713304, "from_user_id_str": "427713304", "from_user_name": "Sexy Babe", "geo": null, "id": 148839901004169200, "id_str": "148839901004169216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700296169/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700296169/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Horny_n_hung if u dm me we can have some fun :)) xx", "to_user": "Horny_n_hung", "to_user_id": 398235418, "to_user_id_str": "398235418", "to_user_name": "John smith", "in_reply_to_status_id": 148838959340994560, "in_reply_to_status_id_str": "148838959340994561"}, +{"created_at": "Mon, 19 Dec 2011 18:59:32 +0000", "from_user": "LadyB_2015", "from_user_id": 381821464, "from_user_id_str": "381821464", "from_user_name": "Brianna Moore", "geo": null, "id": 148839900794458100, "id_str": "148839900794458115", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700830667/its_me__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700830667/its_me__normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @ashybone1: #coolkids love Jesus and aren't ashamed to tell Ppl even if they get made fun of", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:31 +0000", "from_user": "01Bubbles01", "from_user_id": 302165537, "from_user_id_str": "302165537", "from_user_name": "davina coursey", "geo": null, "id": 148839899364196350, "id_str": "148839899364196353", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1665703646/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665703646/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "so it was deff poppin lastnite =) nvr wearin heels again but it was still fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:31 +0000", "from_user": "ItsMsCoCo2u", "from_user_id": 107352662, "from_user_id_str": "107352662", "from_user_name": "Lois Lane", "geo": null, "id": 148839898919612400, "id_str": "148839898919612417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699388768/ProfilePhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699388768/ProfilePhoto_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#storyofmylife \\u201C@EyePunchPuppies: my dms are never fun unless its night time\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:31 +0000", "from_user": "Alefiyahzxs", "from_user_id": 93847814, "from_user_id_str": "93847814", "from_user_name": "Alefiyah Joeb \\u2605 \\u262E", "geo": null, "id": 148839898533724160, "id_str": "148839898533724160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694652369/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694652369/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@DacieImapinkbee why sad face? Lol okay have fun!!!", "to_user": "DacieImapinkbee", "to_user_id": 293414586, "to_user_id_str": "293414586", "to_user_name": "DACIE_DOLPHIN !", "in_reply_to_status_id": 148815786574749700, "in_reply_to_status_id_str": "148815786574749696"}, +{"created_at": "Mon, 19 Dec 2011 18:59:31 +0000", "from_user": "Da_CoolKey", "from_user_id": 29518967, "from_user_id_str": "29518967", "from_user_name": "Kashaun", "geo": null, "id": 148839895580946430, "id_str": "148839895580946432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1582900432/profile_image_1318316341294_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1582900432/profile_image_1318316341294_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "@IndiaNaiJae it would be fun... cant judge tho haha", "to_user": "IndiaNaiJae", "to_user_id": 56634161, "to_user_id_str": "56634161", "to_user_name": "India Richardson"}, +{"created_at": "Mon, 19 Dec 2011 18:59:30 +0000", "from_user": "DC_Needs_1D", "from_user_id": 424510934, "from_user_id_str": "424510934", "from_user_name": "Paris", "geo": null, "id": 148839895211843600, "id_str": "148839895211843584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679953970/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679953970/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @m_magazine: So great talking to @onedirection bright and early this morning! Such fun guys! Look for the exclusive interview deets in next issue of M!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:30 +0000", "from_user": "maneee_EDDU", "from_user_id": 310470057, "from_user_id_str": "310470057", "from_user_name": "K E E D Y!", "geo": null, "id": 148839894171648000, "id_str": "148839894171648000", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677794047/.prettyME__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677794047/.prettyME__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": ".okae so skool was fun todae ig!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:30 +0000", "from_user": "kthechosenone", "from_user_id": 78089588, "from_user_id_str": "78089588", "from_user_name": "Kwaku S", "geo": null, "id": 148839893139861500, "id_str": "148839893139861504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681868971/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681868971/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@CruzOchocinco oh ok have fun getting pretty at the salon :)", "to_user": "CruzOchocinco", "to_user_id": 130378297, "to_user_id_str": "130378297", "to_user_name": "FUCK SCHOOL.", "in_reply_to_status_id": 148839010264039420, "in_reply_to_status_id_str": "148839010264039424"}, +{"created_at": "Mon, 19 Dec 2011 18:59:30 +0000", "from_user": "iPreciousLee", "from_user_id": 168531310, "from_user_id_str": "168531310", "from_user_name": "PreciousLee Mashiane", "geo": null, "id": 148839893131468800, "id_str": "148839893131468801", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701982650/331695153_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701982650/331695153_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Nkekolo braa RT @Palesa_Illbliss: What is it? Lol RT @iPreciousLee: Its all fun and games until you laugh at my second/pedi name!! Lmao hao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:30 +0000", "from_user": "_chinaCHINA", "from_user_id": 271154462, "from_user_id_str": "271154462", "from_user_name": "China ", "geo": null, "id": 148839892858843140, "id_str": "148839892858843136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689982801/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689982801/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@lovelyjordiee lol sure well just have fun w/o you !", "to_user": "lovelyjordiee", "to_user_id": 168892679, "to_user_id_str": "168892679", "to_user_name": "Jordyn Sam", "in_reply_to_status_id": 148839259997089800, "in_reply_to_status_id_str": "148839259997089793"}, +{"created_at": "Mon, 19 Dec 2011 18:59:30 +0000", "from_user": "Yummy_Redd", "from_user_id": 245560930, "from_user_id_str": "245560930", "from_user_name": "Yamz*\\uE418\\uE022\\uE31C", "geo": null, "id": 148839891214680060, "id_str": "148839891214680064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697984381/zE6ighK9_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697984381/zE6ighK9_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Ice skating tonight w/da gurlz this gon be soo fun & funny!*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:29 +0000", "from_user": "SoCo_0lShadesON", "from_user_id": 127856341, "from_user_id_str": "127856341", "from_user_name": "\\u2605__Britanie\\u2714", "geo": null, "id": 148839890031874050, "id_str": "148839890031874048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686894245/profile_image_1323608816331_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686894245/profile_image_1323608816331_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@iBeTweeTIN_ Will be w/ @Ms_Dakia on Thursday night bringing in her Bday! Shit is gonna be fun af!\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:29 +0000", "from_user": "HYFR_itsLeshan", "from_user_id": 66045454, "from_user_id_str": "66045454", "from_user_name": "Sierra Thompson", "geo": null, "id": 148839889847336960, "id_str": "148839889847336960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697857401/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697857401/profile_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "@makayyyykayyyy who had fun at winterball was me", "to_user": "makayyyykayyyy", "to_user_id": 374864186, "to_user_id_str": "374864186", "to_user_name": "KayyyyllllahhhhMae", "in_reply_to_status_id": 148839156473278460, "in_reply_to_status_id_str": "148839156473278464"}, +{"created_at": "Mon, 19 Dec 2011 18:59:29 +0000", "from_user": "_badaxxStallion", "from_user_id": 262901876, "from_user_id_str": "262901876", "from_user_name": "Leah's Mommy\\u2661", "geo": null, "id": 148839889255923700, "id_str": "148839889255923712", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1630620468/profile_image_1320856461598_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630620468/profile_image_1320856461598_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "\"@_imYummiie: I had fun lastnite mayne ..... #Motions ..\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:29 +0000", "from_user": "SenorMalcolm", "from_user_id": 88311544, "from_user_id_str": "88311544", "from_user_name": "\\u2714Verified Packer Fan", "geo": null, "id": 148839888891031550, "id_str": "148839888891031552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1657407823/456060096_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657407823/456060096_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@VolWench Wait, what's now fun?", "to_user": "VolWench", "to_user_id": 364476496, "to_user_id_str": "364476496", "to_user_name": "VolWench", "in_reply_to_status_id": 148838896069910530, "in_reply_to_status_id_str": "148838896069910529"}, +{"created_at": "Mon, 19 Dec 2011 18:59:29 +0000", "from_user": "Switzer67", "from_user_id": 440576682, "from_user_id_str": "440576682", "from_user_name": "Travis Switzer", "geo": null, "id": 148839888433844220, "id_str": "148839888433844224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702491762/313378_176081592469602_100002032886630_350709_1170308184_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702491762/313378_176081592469602_100002032886630_350709_1170308184_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Z_Tenuta13. It should have been! But you fags. Woulda made fun of me for callin myself my nickname haha so fuck off", "to_user": "Z_Tenuta13", "to_user_id": 132562879, "to_user_id_str": "132562879", "to_user_name": "Zach Tenuta", "in_reply_to_status_id": 148830092137730050, "in_reply_to_status_id_str": "148830092137730048"}, +{"created_at": "Mon, 19 Dec 2011 18:59:29 +0000", "from_user": "1Dsimpsonizers_", "from_user_id": 379881916, "from_user_id_str": "379881916", "from_user_name": "cody simpson", "geo": null, "id": 148839887452389380, "id_str": "148839887452389376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696591860/twitterrrrr_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696591860/twitterrrrr_normal", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @1DCarrotSwag: Still holding my hand. 'so, what's your name?' 'Faye' 'thats a pretty name. So faye, did you have fun on stage?' 'yes! It was amazing!' he", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:28 +0000", "from_user": "showm3", "from_user_id": 420230557, "from_user_id_str": "420230557", "from_user_name": "showme", "geo": null, "id": 148839884340203520, "id_str": "148839884340203520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1656020999/2H6KyvqT_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656020999/2H6KyvqT_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@hornySlut1 bathroom finger fun ;)", "to_user": "hornySlut1", "to_user_id": 437923958, "to_user_id_str": "437923958", "to_user_name": "dirty whore ;)", "in_reply_to_status_id": 148839436271095800, "in_reply_to_status_id_str": "148839436271095808"}, +{"created_at": "Mon, 19 Dec 2011 18:59:28 +0000", "from_user": "beadpucontgrad", "from_user_id": 322955860, "from_user_id_str": "322955860", "from_user_name": "\\u042D\\u0432\\u0435\\u043B\\u0438\\u043D\\u0430 \\u041B\\u0443\\u043A\\u043E\\u044F\\u043D\\u043E\\u0432\\u0430", "geo": null, "id": 148839883476185100, "id_str": "148839883476185088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1410346928/avatar1143_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1410346928/avatar1143_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "As you will see these two have a whole lot of fun together http://t.co/MBrzDLT2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:28 +0000", "from_user": "LegitJayJay", "from_user_id": 215028330, "from_user_id_str": "215028330", "from_user_name": "J\\u25B3YJ\\u25B3Y \\u2020", "geo": null, "id": 148839883417456640, "id_str": "148839883417456640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1673805672/twiter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673805672/twiter_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @pfftmartha: We miss you jayjay </3 RT@LegitJayJay: Hope you guys have fun at the tea party @mitzyfoo @pfftmartha @bekka_thug :b w/o me /: .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:28 +0000", "from_user": "JonathanEMartin", "from_user_id": 16396585, "from_user_id_str": "16396585", "from_user_name": "Jonathan Martin", "geo": null, "id": 148839883216125950, "id_str": "148839883216125952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1611239656/SSphoto__10.28_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611239656/SSphoto__10.28_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Fun, Supportive, Critical, Innovative, Humble, Present, Trustworthy: 7 Things My (Principal) Gets Right: @johntspencer http://t.co/riG3Hsuu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:28 +0000", "from_user": "NothingUsual_", "from_user_id": 134169918, "from_user_id_str": "134169918", "from_user_name": "Ashalee Ocean.", "geo": null, "id": 148839882993831940, "id_str": "148839882993831936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657757770/4-up_on_2011-10-03_at_18.25__10_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657757770/4-up_on_2011-10-03_at_18.25__10_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @MING_LeeXx: Love im not searching for it, iont expect to find it this young, im only 17 ima GIRL Ii Just Wanna have fun\\n:)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:27 +0000", "from_user": "Fabulous_Helen", "from_user_id": 434056577, "from_user_id_str": "434056577", "from_user_name": "Helen Stephens", "geo": null, "id": 148839882570215420, "id_str": "148839882570215424", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686764492/helen_wedding_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686764492/helen_wedding_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Had so much fun today :D xx <3 x", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:27 +0000", "from_user": "MomoDunGoofed", "from_user_id": 117588614, "from_user_id_str": "117588614", "from_user_name": "Mercedes Murderous~", "geo": null, "id": 148839882264027140, "id_str": "148839882264027138", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695498828/16KDpxSm_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695498828/16KDpxSm_normal", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "I forgot to tell Devyn to have fun in the shower. :o Damn.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:27 +0000", "from_user": "Sonic_Ambulance", "from_user_id": 198400956, "from_user_id_str": "198400956", "from_user_name": "Sonic Ambulance", "geo": null, "id": 148839881576161280, "id_str": "148839881576161281", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1137072933/sonicambulance_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1137072933/sonicambulance_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "this was soo much fun live (@YouTube http://t.co/mG32he1I)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:27 +0000", "from_user": "KB_Britta", "from_user_id": 124780633, "from_user_id_str": "124780633", "from_user_name": "B", "geo": null, "id": 148839879499972600, "id_str": "148839879499972608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687890188/Birthday_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687890188/Birthday_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Don't care how old you get, it's still always fun to blow bubbles in your chocolate milk.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:27 +0000", "from_user": "kaveerr", "from_user_id": 18709330, "from_user_id_str": "18709330", "from_user_name": "kaveer rai \\u2602", "geo": null, "id": 148839879369953280, "id_str": "148839879369953280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701700832/Santa-hitting-bag-graphic_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701700832/Santa-hitting-bag-graphic_normal.gif", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@krystynchong iam good. .His the christmas fun. ...how have u been?", "to_user": "krystynchong", "to_user_id": 17281885, "to_user_id_str": "17281885", "to_user_name": "Krys", "in_reply_to_status_id": 148836078621696000, "in_reply_to_status_id_str": "148836078621696000"}, +{"created_at": "Mon, 19 Dec 2011 18:59:26 +0000", "from_user": "Ev_Crump", "from_user_id": 381860041, "from_user_id_str": "381860041", "from_user_name": "Everette Crump", "geo": null, "id": 148839876962430980, "id_str": "148839876962430976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1564692210/Grh0bl0z_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1564692210/Grh0bl0z_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@anastasiadanawi well have fun in there with the frenchies. Peace", "to_user": "anastasiadanawi", "to_user_id": 381703509, "to_user_id_str": "381703509", "to_user_name": "Anastasia Danawi"}, +{"created_at": "Mon, 19 Dec 2011 18:59:26 +0000", "from_user": "GlayerJ", "from_user_id": 252049138, "from_user_id_str": "252049138", "from_user_name": "\\u2665Jessica Maulid\\u2665", "geo": null, "id": 148839876274552830, "id_str": "148839876274552832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1686749120/IMG00987-20111210-1747_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686749120/IMG00987-20111210-1747_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "__ I don't give my heart out easily, so until I know for sure you love me, I can't let the world know I'm yours. Finding out is the fun part", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:26 +0000", "from_user": "LeviTedd_TME", "from_user_id": 144785623, "from_user_id_str": "144785623", "from_user_name": "Take Money Tedd", "geo": null, "id": 148839874886238200, "id_str": "148839874886238208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696947796/profile_image_1324063749033_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696947796/profile_image_1324063749033_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Had fun was trippin wit da team lastnite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:25 +0000", "from_user": "crystullos", "from_user_id": 29130760, "from_user_id_str": "29130760", "from_user_name": "Crystal Tullos", "geo": null, "id": 148839873774764030, "id_str": "148839873774764032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1202697200/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1202697200/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Fun Family Tullos in NYC today...Dylan's candy bar, ice skating at Rockefeller, and FAO Swartz next...I love spoiling my boys!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:25 +0000", "from_user": "CantBeCuffed_x", "from_user_id": 406529908, "from_user_id_str": "406529908", "from_user_name": "\\u2605 Ms.Idgaf \\u30C5", "geo": null, "id": 148839873678278660, "id_str": "148839873678278657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1672249475/AfeD1VgCAAEl2nM_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672249475/AfeD1VgCAAEl2nM_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Hadd Fun lastnght", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:25 +0000", "from_user": "Just_DieBitch", "from_user_id": 290337870, "from_user_id_str": "290337870", "from_user_name": "Ronald Brothers", "geo": null, "id": 148839872575193100, "id_str": "148839872575193089", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686332259/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686332259/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Alright lol 3 ppl don't caught a rude tweet just for fun so im done lol!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:25 +0000", "from_user": "john_mcguirk", "from_user_id": 23949317, "from_user_id_str": "23949317", "from_user_name": "John McGuirk", "geo": null, "id": 148839872105418750, "id_str": "148839872105418752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700895844/me3_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700895844/me3_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @guypbenson: \"Women\" and \"men.\" RT @RasmussenPoll: 39% see holiday gift shopping as fun experience, 38% consider it an unpleasant chore...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:25 +0000", "from_user": "MFsethh", "from_user_id": 48727527, "from_user_id_str": "48727527", "from_user_name": "Seth Hall", "geo": null, "id": 148839871761498100, "id_str": "148839871761498112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698341223/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698341223/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@ehhitsjohn lol I suck but have fun! Get in the hole!! Haha", "to_user": "ehhitsjohn", "to_user_id": 57543190, "to_user_id_str": "57543190", "to_user_name": "John Kennedy", "in_reply_to_status_id": 148839488230146050, "in_reply_to_status_id_str": "148839488230146049"}, +{"created_at": "Mon, 19 Dec 2011 18:59:25 +0000", "from_user": "taylor_ainsley", "from_user_id": 24974345, "from_user_id_str": "24974345", "from_user_name": "Taylor Brooks", "geo": null, "id": 148839870524178430, "id_str": "148839870524178433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1399441342/img043_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1399441342/img043_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@TheDavidBlaise I got mine done a week ago today, thankfully I didn't swell but it was no fun.", "to_user": "TheDavidBlaise", "to_user_id": 18111446, "to_user_id_str": "18111446", "to_user_name": "David Blaise", "in_reply_to_status_id": 148838952055488500, "in_reply_to_status_id_str": "148838952055488512"}, +{"created_at": "Mon, 19 Dec 2011 18:59:25 +0000", "from_user": "khetz_m", "from_user_id": 38832036, "from_user_id_str": "38832036", "from_user_name": "Khetani Sexabella", "geo": null, "id": 148839870108942340, "id_str": "148839870108942337", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700927372/331672217_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700927372/331672217_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "This mosquito had fun wif me maobane. -__- sherbet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:25 +0000", "from_user": "Peace_Love_Liz", "from_user_id": 213781709, "from_user_id_str": "213781709", "from_user_name": "Lindzy Glen", "geo": null, "id": 148839870083760130, "id_str": "148839870083760128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1583509568/243348_10150616895410252_871345251_19102450_8209417_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583509568/243348_10150616895410252_871345251_19102450_8209417_o_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Photo: afternoonsnoozebutton: http://t.co/8y4tC0eF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:24 +0000", "from_user": "morganxmarie10", "from_user_id": 323893610, "from_user_id_str": "323893610", "from_user_name": "Morgan Myers", "geo": null, "id": 148839869274275840, "id_str": "148839869274275840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685301608/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685301608/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@Emily_Williams7: I want to meet some new, fun people(: #hmu #tiredofthesamestuffeveryday\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:24 +0000", "from_user": "missarahnicole", "from_user_id": 27049676, "from_user_id_str": "27049676", "from_user_name": "Miss Sarah", "geo": null, "id": 148839869106495500, "id_str": "148839869106495488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685344450/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685344450/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@kawaiimanko: @missarahnicole definitely! hope there's one tonight ^^ & thankyous~ you have fun today too~!\\u201D Kaw calls for TC tonight!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:24 +0000", "from_user": "SenidaTrucks022", "from_user_id": 437043883, "from_user_id_str": "437043883", "from_user_name": "Senida Trucks", "geo": null, "id": 148839867319722000, "id_str": "148839867319721984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": null, "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "http://t.co/gj08do8V Window Tiger Woods Nintendo Fishing Department Stores Silver Hawaii", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:24 +0000", "from_user": "MrB_24_Dexter", "from_user_id": 189244568, "from_user_id_str": "189244568", "from_user_name": "Mr. Matthew Brown", "geo": null, "id": 148839866547961860, "id_str": "148839866547961856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698266451/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698266451/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "The game is afoot!- Sherlock Holmes: A Game of Shadow. Long, but fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:24 +0000", "from_user": "Mollier12", "from_user_id": 60672988, "from_user_id_str": "60672988", "from_user_name": "Unique Redgrave ", "geo": null, "id": 148839866074021900, "id_str": "148839866074021888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1689607908/Photo_on_2011-12-08_at_19.07__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689607908/Photo_on_2011-12-08_at_19.07__2_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Not fun when you trip down the stairs of a bus", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:23 +0000", "from_user": "MisguidedDevil", "from_user_id": 415011002, "from_user_id_str": "415011002", "from_user_name": "Emiley Ellen", "geo": null, "id": 148839865541337100, "id_str": "148839865541337088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657369843/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657369843/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Have fun in ireland @GetOffOfMyTits .. And have a nice Christmas:Dx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:23 +0000", "from_user": "BellezaForAshes", "from_user_id": 233743915, "from_user_id_str": "233743915", "from_user_name": "di\\u02C8n\\u0113s \\u264F ", "geo": null, "id": 148839865461653500, "id_str": "148839865461653505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1632695597/149734HD.mp4_20111103184703_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632695597/149734HD.mp4_20111103184703_normal.jpeg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Wonder what ima do over break ? I hope whatever it is, that its FUN and makes my break nice (:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:23 +0000", "from_user": "prettieSTALLION", "from_user_id": 65482566, "from_user_id_str": "65482566", "from_user_name": "Kiara Diamante'", "geo": null, "id": 148839864832491520, "id_str": "148839864832491520", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688520764/6QLF1Vgf_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688520764/6QLF1Vgf_normal", "source": "<a href="http://phnxapp.com" rel="nofollow">phnx</a>", "text": "Had Fun Wit My #Guapo Niggas Yesterday.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:23 +0000", "from_user": "richardpeacock", "from_user_id": 17683480, "from_user_id_str": "17683480", "from_user_name": "Richard Peacock", "geo": null, "id": 148839864014606340, "id_str": "148839864014606336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694950229/RPXmas_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694950229/RPXmas_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "yay, after a day of 'forced-fun' Christmassybollocks I'm now at home catching up on all the work I would've got done during the day... pfff", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:23 +0000", "from_user": "ThaRealChels", "from_user_id": 182214456, "from_user_id_str": "182214456", "from_user_name": "chelsea ", "geo": null, "id": 148839863888789500, "id_str": "148839863888789504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696690288/DSC05567_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696690288/DSC05567_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ayyo_shebadd have fun with that. lmao .", "to_user": "ayyo_shebadd", "to_user_id": 314331256, "to_user_id_str": "314331256", "to_user_name": "shayana massey", "in_reply_to_status_id": 148837345674788860, "in_reply_to_status_id_str": "148837345674788864"}, +{"created_at": "Mon, 19 Dec 2011 18:59:23 +0000", "from_user": "CatCollins4", "from_user_id": 413457546, "from_user_id_str": "413457546", "from_user_name": "Cat Collins", "geo": null, "id": 148839862496280580, "id_str": "148839862496280576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680770590/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680770590/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@cNik9: @CatCollins4 ohh gosh.. That sounds HORRIBLE\\u201D--haha no,not horrible. Was with Mikey and @JE9485 ..it was fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:23 +0000", "from_user": "DVOXO_XII_XXVII", "from_user_id": 229983961, "from_user_id_str": "229983961", "from_user_name": "john", "geo": null, "id": 148839862106198000, "id_str": "148839862106198016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1584337726/Photo_on_9-7-11_at_2.12_AM_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584337726/Photo_on_9-7-11_at_2.12_AM_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "At the airport new York in my future...it was fun Atl. Oh and that lame nigga lucky he ain't get his ass beat selling weak buds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:23 +0000", "from_user": "Rapscallion__", "from_user_id": 763979, "from_user_id_str": "763979", "from_user_name": "John", "geo": null, "id": 148839862047473660, "id_str": "148839862047473664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696177837/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696177837/image_normal.jpg", "source": "<a href="http://www.twittergadget.com" rel="nofollow">tGadget</a>", "text": "@HauntedRockCake oh that train is always fun :( x", "to_user": "HauntedRockCake", "to_user_id": 43146008, "to_user_id_str": "43146008", "to_user_name": "Sandra Kelley", "in_reply_to_status_id": 148839521339973630, "in_reply_to_status_id_str": "148839521339973632"}, +{"created_at": "Mon, 19 Dec 2011 18:59:23 +0000", "from_user": "xPerfectMistake", "from_user_id": 199027714, "from_user_id_str": "199027714", "from_user_name": "Arminda Tario", "geo": null, "id": 148839861992964100, "id_str": "148839861992964096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1642733538/us6642KJ_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642733538/us6642KJ_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@_ValletThaBenz is jusf fun to be with be making me laugh!", "to_user": "_ValletThaBenz", "to_user_id": 244133648, "to_user_id_str": "244133648", "to_user_name": "Kerrigan Smith"}, +{"created_at": "Mon, 19 Dec 2011 18:59:23 +0000", "from_user": "Captinsavaheaux", "from_user_id": 270618486, "from_user_id_str": "270618486", "from_user_name": "DICK-FIL-A", "geo": null, "id": 148839861971980300, "id_str": "148839861971980289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698896735/oolala_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698896735/oolala_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "Having fun theses days...cuzz ill Neva getem back...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:22 +0000", "from_user": "WeLoveLoganBR", "from_user_id": 232630453, "from_user_id_str": "232630453", "from_user_name": "L3RM4N14C, B1TCH", "geo": null, "id": 148839861082796030, "id_str": "148839861082796032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699363710/63_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699363710/63_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @NiallOfficial: Legooo! Southend! Gona be fun, get involved!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:22 +0000", "from_user": "BABY_TONIQUE", "from_user_id": 339385519, "from_user_id_str": "339385519", "from_user_name": "DIANA TONIQUE EARLY", "geo": null, "id": 148839861074411520, "id_str": "148839861074411520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702612874/Picture0021_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702612874/Picture0021_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "i went to the movies saturday it was to FUN LOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:22 +0000", "from_user": "K1_Sauce", "from_user_id": 346783978, "from_user_id_str": "346783978", "from_user_name": "Eleanor Rigby", "geo": null, "id": 148839859975499780, "id_str": "148839859975499776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687214868/Snapshot_20111209_29_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687214868/Snapshot_20111209_29_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Horoscopes are really general and could apply to anybody regardless of when you were born. But still, it's fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:22 +0000", "from_user": "Mis_Swag", "from_user_id": 155809320, "from_user_id_str": "155809320", "from_user_name": "Liz Atong", "geo": null, "id": 148839859296022530, "id_str": "148839859296022528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1683981902/liz.a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683981902/liz.a_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iEnriqueSays: Living Single may seem fun while it lasts but at the end of the day everyone wants someone to love.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:22 +0000", "from_user": "DrDang", "from_user_id": 25814161, "from_user_id_str": "25814161", "from_user_name": "Muhammed Deshmukh", "geo": null, "id": 148839858918535170, "id_str": "148839858918535168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1608962393/150512_10150340433920454_717455453_15931143_f3293221_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608962393/150512_10150340433920454_717455453_15931143_f3293221_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@gyandeep4a @invokeanand don't think it's a contest... not sure we'll even be notified if we get in... but fun!", "to_user": "gyandeep4a", "to_user_id": 43440687, "to_user_id_str": "43440687", "to_user_name": "Gyandeep Pattnayak"}, +{"created_at": "Mon, 19 Dec 2011 18:59:21 +0000", "from_user": "lindsaycampagna", "from_user_id": 321837541, "from_user_id_str": "321837541", "from_user_name": "Lindsay Nicole", "geo": null, "id": 148839857077235700, "id_str": "148839857077235712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679386794/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679386794/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@tgriff209 did you have fun yesterday? I don't remember the game at all lol. I stayed awake this time though \\uD83D\\uDC4D", "to_user": "tgriff209", "to_user_id": 137928999, "to_user_id_str": "137928999", "to_user_name": "Tommy G."}, +{"created_at": "Mon, 19 Dec 2011 18:59:21 +0000", "from_user": "boutSickOf_kels", "from_user_id": 218355753, "from_user_id_str": "218355753", "from_user_name": "kels Rashad", "geo": null, "id": 148839856242569200, "id_str": "148839856242569216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700474331/ColorTouch-1324228704319_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700474331/ColorTouch-1324228704319_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @Yeah_imTHATgirl Drama is always fun to watch when it doesn have shit to do with me", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:21 +0000", "from_user": "g5theflyguy", "from_user_id": 325959424, "from_user_id_str": "325959424", "from_user_name": "Mr. Wrong", "geo": null, "id": 148839856049635330, "id_str": "148839856049635328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697937921/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697937921/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@BabyKillinIt: Fun-sized \\uD83D\\uDE1C\\u201D #datpart", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:21 +0000", "from_user": "Mwhit33", "from_user_id": 421462884, "from_user_id_str": "421462884", "from_user_name": "Michael Whitney", "geo": null, "id": 148839855701504000, "id_str": "148839855701504002", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1657877481/Mi_mama_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657877481/Mi_mama_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@C_Quinn3 haha nah were fun", "to_user": "C_Quinn3", "to_user_id": 135369215, "to_user_id_str": "135369215", "to_user_name": "Carly", "in_reply_to_status_id": 148721885830582270, "in_reply_to_status_id_str": "148721885830582274"}, +{"created_at": "Mon, 19 Dec 2011 18:59:21 +0000", "from_user": "CincoDe_Mayo", "from_user_id": 34566189, "from_user_id_str": "34566189", "from_user_name": "Esteban Raul Chavez", "geo": null, "id": 148839855542120450, "id_str": "148839855542120449", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1669769805/CincoDe_Mayo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669769805/CincoDe_Mayo_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Aint tht sweet lol RT @Ali_Naturally: Got our puppy yesterday now headed to the coast to find a place.. its been a long few days but fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:21 +0000", "from_user": "Natural2ArtiZte", "from_user_id": 100880100, "from_user_id_str": "100880100", "from_user_name": "Brandi Broughton", "geo": null, "id": 148839854476759040, "id_str": "148839854476759040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1679032221/IMG_8509crop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679032221/IMG_8509crop_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "This should be fun...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:20 +0000", "from_user": "REGGIEMINAJ", "from_user_id": 55981852, "from_user_id_str": "55981852", "from_user_name": "\\u2714 Verified Ken", "geo": null, "id": 148839853214269440, "id_str": "148839853214269443", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1674368643/IMAG1409-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674368643/IMAG1409-1_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "@PretttyBoyTroy hahaha, its fun tho. Just try it :)", "to_user": "PretttyBoyTroy", "to_user_id": 197449311, "to_user_id_str": "197449311", "to_user_name": "Troy Peron", "in_reply_to_status_id": 148839726625996800, "in_reply_to_status_id_str": "148839726625996800"}, +{"created_at": "Mon, 19 Dec 2011 18:59:20 +0000", "from_user": "TheSamSmithShow", "from_user_id": 195615694, "from_user_id_str": "195615694", "from_user_name": "Samantha", "geo": null, "id": 148839853180719100, "id_str": "148839853180719104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685470064/383039_2076820779203_1805493174_1446102_249505446_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685470064/383039_2076820779203_1805493174_1446102_249505446_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#whathappened2 the fun bubble", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:20 +0000", "from_user": "dorianrachel", "from_user_id": 36834817, "from_user_id_str": "36834817", "from_user_name": "Dorian Rachel", "geo": null, "id": 148839849720414200, "id_str": "148839849720414209", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702317486/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702317486/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I really wish that @__D_Squared was here to make fun of my brother for me. He's so annoying.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:20 +0000", "from_user": "TCKemp", "from_user_id": 92093128, "from_user_id_str": "92093128", "from_user_name": "Tom Kemp", "geo": null, "id": 148839849175171070, "id_str": "148839849175171073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1012019223/465e691e-c5cc-48d9-b24e-6668d515eaee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1012019223/465e691e-c5cc-48d9-b24e-6668d515eaee_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", "text": "@wossy You were fun with Maths on the Prof. Brian Cox prog. Great prog.", "to_user": "wossy", "to_user_id": 17753033, "to_user_id_str": "17753033", "to_user_name": "jonathan ross", "in_reply_to_status_id": 148827716857233400, "in_reply_to_status_id_str": "148827716857233408"}, +{"created_at": "Mon, 19 Dec 2011 18:59:19 +0000", "from_user": "O_OiNERD", "from_user_id": 43639990, "from_user_id_str": "43639990", "from_user_name": "iAndroid#143", "geo": null, "id": 148839849045147650, "id_str": "148839849045147649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697367762/2011-12-14_22-57-13_618_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697367762/2011-12-14_22-57-13_618_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "#workflow is goin very smooth & fun #AdPCallCenter", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:19 +0000", "from_user": "iSexstrology", "from_user_id": 252959698, "from_user_id_str": "252959698", "from_user_name": "iSexstrology", "geo": null, "id": 148839848629899260, "id_str": "148839848629899264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682055995/22ofrfw3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682055995/22ofrfw3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Sagittarius controls the freedom and fun in a relationship. The opposite spells doom.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:19 +0000", "from_user": "MickiMichelle3", "from_user_id": 25768473, "from_user_id_str": "25768473", "from_user_name": "Michelle Rahilly", "geo": null, "id": 148839847623278600, "id_str": "148839847623278592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1561324721/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1561324721/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "FUN!! -- \\u201C@mashable: TIP: Type \"Let it snow\" and \"Hanukkah\" into http://t.co/Wtmh1ssz for a special surprise - http://t.co/xCEoOoyv\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:19 +0000", "from_user": "xDERYA_", "from_user_id": 294096962, "from_user_id_str": "294096962", "from_user_name": "DERYA' ", "geo": null, "id": 148839846176243700, "id_str": "148839846176243712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1669898635/330782124_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669898635/330782124_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @RebeccaVlaming: Have fun schat @xDERYA_ \\u00BB thankyou babby .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:19 +0000", "from_user": "_StrangeDanger", "from_user_id": 284216236, "from_user_id_str": "284216236", "from_user_name": "vanitra braud (bro)", "geo": null, "id": 148839845802938370, "id_str": "148839845802938370", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1674207556/vinny_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674207556/vinny_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "i cnt wait to have fun with my Sugarettes tmrw!., :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:19 +0000", "from_user": "GoodMedEnt", "from_user_id": 409190923, "from_user_id_str": "409190923", "from_user_name": "Tirrell", "geo": +{"coordinates": [42.4821,-83.2462], "type": "Point"}, "id": 148839845752606720, "id_str": "148839845752606721", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1631904746/staff_color_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631904746/staff_color_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@JayLott3: @EricCTaylor @goodmedent Haaaa... Don't ruin my fun please! LOL\" Well Geek Squad, it just seemed that way. I've moved to Galaxy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:19 +0000", "from_user": "McGreenface", "from_user_id": 264958004, "from_user_id_str": "264958004", "from_user_name": "Chloe Green", "geo": null, "id": 148839845136048130, "id_str": "148839845136048128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1638937094/008_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638937094/008_normal.JPG", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @coollike: Radio 1 are currently interviewing @thatalexday in our office about Forever Yours. This is fun ^_^", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:18 +0000", "from_user": "IIASMAAII", "from_user_id": 174007861, "from_user_id_str": "174007861", "from_user_name": "Little Monster", "geo": null, "id": 148839843902926850, "id_str": "148839843902926848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1621979313/tumblr_llks94vKs21qcgl1no1_500_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621979313/tumblr_llks94vKs21qcgl1no1_500_normal.png", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @Lotta_Monster: Why is everybody tweeting about #GagasPassword ?? I mean HELLO! GAGA GOT HACKED AND YOU'RE MAKING FUN OF IT?! #StopHackingGaga", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:18 +0000", "from_user": "ThnkGOD4makn_ME", "from_user_id": 231181598, "from_user_id_str": "231181598", "from_user_name": "Kekyra Taylor", "geo": null, "id": 148839842715942900, "id_str": "148839842715942912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1630801282/329507302_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630801282/329507302_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Conhrats :-) \\u00AB@ALLinTheMIRROR_ my good boy is PLENTY of fun ... ha ! :)\\u00BB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:18 +0000", "from_user": "liestria", "from_user_id": 25801431, "from_user_id_str": "25801431", "from_user_name": "Lies Tria Permana", "geo": null, "id": 148839842430722050, "id_str": "148839842430722048", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1410352563/IMG_0539_599x600_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1410352563/IMG_0539_599x600_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @my_supersoccer: Yang udah maen, mana suaranya? Yang belum, sekali lagi, ini link-nya: http://t.co/EH2eaaHh #SuperSoccerFantasyFootball", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:18 +0000", "from_user": "sugahunneeicedt", "from_user_id": 159241116, "from_user_id_str": "159241116", "from_user_name": "Allyn Schulbaum", "geo": null, "id": 148839841935786000, "id_str": "148839841935785984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1645522412/2011-09-19_16-38-24.005_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645522412/2011-09-19_16-38-24.005_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "shit im not complainin though this is gonna be fun lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:18 +0000", "from_user": "J_LopSter", "from_user_id": 358340543, "from_user_id_str": "358340543", "from_user_name": "John Lopilato", "geo": null, "id": 148839841730277380, "id_str": "148839841730277376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1571245985/7d7RmpwU_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1571245985/7d7RmpwU_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Ready to get out of work and have some fun. Hmu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:18 +0000", "from_user": "NickyMauge", "from_user_id": 123364080, "from_user_id_str": "123364080", "from_user_name": "Mrs. Payne", "geo": null, "id": 148839841226965000, "id_str": "148839841226964992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676198321/one_direction_move_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676198321/one_direction_move_normal.gif", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @NiallOfficial: Legooo! Southend! Gona be fun, get involved!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:18 +0000", "from_user": "Aamal_E", "from_user_id": 94762293, "from_user_id_str": "94762293", "from_user_name": "ENTEKUME MICHAEL", "geo": null, "id": 148839840975302660, "id_str": "148839840975302656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687969374/3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687969374/3_normal.jpg", "source": "<a href="http://tuitwit.com" rel="nofollow">TuiTwit</a>", "text": "Ama stick 2 readin dem tweets! More fun dat way :))", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:18 +0000", "from_user": "pogigames", "from_user_id": 421835087, "from_user_id_str": "421835087", "from_user_name": "pogi games", "geo": null, "id": 148839840824303600, "id_str": "148839840824303616", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1658733495/rally-online-game1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658733495/rally-online-game1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "fun pc games - Fruttiland - http://t.co/kgeeH7Eo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:17 +0000", "from_user": "NowTwatchMeWurk", "from_user_id": 325553840, "from_user_id_str": "325553840", "from_user_name": "RainnyaForecast", "geo": null, "id": 148839839826059260, "id_str": "148839839826059264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1675355294/avatar_normal.JPEG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675355294/avatar_normal.JPEG", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "Damn I don't know his name he be in all the Tyler Perry plays but OMG he look so yummy DAMN we could have all kinds of fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:17 +0000", "from_user": "jen_ireland", "from_user_id": 82248533, "from_user_id_str": "82248533", "from_user_name": "Jennifer Ireland", "geo": null, "id": 148839838832005120, "id_str": "148839838832005120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1460466614/25329_1224505885392_1011330514_31155098_3331751_n-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1460466614/25329_1224505885392_1011330514_31155098_3331751_n-1_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Incredibly awesome Christmas lights interactive Angry Birds game http://t.co/gNcikqFZ #in", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:17 +0000", "from_user": "Wild_Mane", "from_user_id": 208935321, "from_user_id_str": "208935321", "from_user_name": "Jonthan Marks", "geo": null, "id": 148839838538399740, "id_str": "148839838538399744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1652629067/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652629067/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Da_Realist06 had 2 much fun year round", "to_user": "Da_Realist06", "to_user_id": 179568409, "to_user_id_str": "179568409", "to_user_name": "Deante' Thomas", "in_reply_to_status_id": 148831675873361920, "in_reply_to_status_id_str": "148831675873361922"}, +{"created_at": "Mon, 19 Dec 2011 18:59:17 +0000", "from_user": "effigyfarm", "from_user_id": 12584742, "from_user_id_str": "12584742", "from_user_name": "effigyfarm", "geo": null, "id": 148839838509051900, "id_str": "148839838509051904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1311512755/nicole_patrice_johnson_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1311512755/nicole_patrice_johnson_2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I am using @karmaScience (download the app) for the rest of my holiday shopping // a co-founder is from #Detroit this will be way more fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:17 +0000", "from_user": "Ayo_ItsAshleyy", "from_user_id": 86463349, "from_user_id_str": "86463349", "from_user_name": "Est. *Jan.11th*", "geo": null, "id": 148839837997338620, "id_str": "148839837997338624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700692706/Photo_on_2011-10-31_at_14.14__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700692706/Photo_on_2011-10-31_at_14.14__2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @_Preslynn_: @Ayo_ItsAshleyy bahaha, you made that class fun :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:17 +0000", "from_user": "rexxie13", "from_user_id": 37319948, "from_user_id_str": "37319948", "from_user_name": "sarah ", "geo": null, "id": 148839836713893900, "id_str": "148839836713893888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1113901162/18qq4zg4_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1113901162/18qq4zg4_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Yes yes back on this should be fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:17 +0000", "from_user": "Vandana_99", "from_user_id": 417761129, "from_user_id_str": "417761129", "from_user_name": "Vandana Patel", "geo": null, "id": 148839836709699600, "id_str": "148839836709699585", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@akshaykumar From South Africa-watched Desi Boyz yesterday-really enjoyed it! Great fun!! Well done guys:)", "to_user": "akshaykumar", "to_user_id": 31348594, "to_user_id_str": "31348594", "to_user_name": "Akshay Kumar", "in_reply_to_status_id": 148742477623472130, "in_reply_to_status_id_str": "148742477623472128"}, +{"created_at": "Mon, 19 Dec 2011 18:59:16 +0000", "from_user": "KeehLicioUs_eLL", "from_user_id": 171784739, "from_user_id_str": "171784739", "from_user_name": "Keeh Xychie Dy", "geo": null, "id": 148839835707248640, "id_str": "148839835707248640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685468085/331235526_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685468085/331235526_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Just had a fun talk with JAM SANCHOOOOOO! #BlueBoyBitesBack w/ @ZoFneSs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:59:19 +0000", "from_user": "McGreenface", "from_user_id": 264958004, "from_user_id_str": "264958004", "from_user_name": "Chloe Green", "geo": null, "id": 148839845136048130, "id_str": "148839845136048128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1638937094/008_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638937094/008_normal.JPG", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @coollike: Radio 1 are currently interviewing @thatalexday in our office about Forever Yours. This is fun ^_^", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:18 +0000", "from_user": "IIASMAAII", "from_user_id": 174007861, "from_user_id_str": "174007861", "from_user_name": "Little Monster", "geo": null, "id": 148839843902926850, "id_str": "148839843902926848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1621979313/tumblr_llks94vKs21qcgl1no1_500_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621979313/tumblr_llks94vKs21qcgl1no1_500_normal.png", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @Lotta_Monster: Why is everybody tweeting about #GagasPassword ?? I mean HELLO! GAGA GOT HACKED AND YOU'RE MAKING FUN OF IT?! #StopHackingGaga", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:18 +0000", "from_user": "ThnkGOD4makn_ME", "from_user_id": 231181598, "from_user_id_str": "231181598", "from_user_name": "Kekyra Taylor", "geo": null, "id": 148839842715942900, "id_str": "148839842715942912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1630801282/329507302_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630801282/329507302_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Conhrats :-) \\u00AB@ALLinTheMIRROR_ my good boy is PLENTY of fun ... ha ! :)\\u00BB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:18 +0000", "from_user": "liestria", "from_user_id": 25801431, "from_user_id_str": "25801431", "from_user_name": "Lies Tria Permana", "geo": null, "id": 148839842430722050, "id_str": "148839842430722048", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1410352563/IMG_0539_599x600_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1410352563/IMG_0539_599x600_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @my_supersoccer: Yang udah maen, mana suaranya? Yang belum, sekali lagi, ini link-nya: http://t.co/EH2eaaHh #SuperSoccerFantasyFootball", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:18 +0000", "from_user": "sugahunneeicedt", "from_user_id": 159241116, "from_user_id_str": "159241116", "from_user_name": "Allyn Schulbaum", "geo": null, "id": 148839841935786000, "id_str": "148839841935785984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1645522412/2011-09-19_16-38-24.005_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645522412/2011-09-19_16-38-24.005_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "shit im not complainin though this is gonna be fun lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:18 +0000", "from_user": "J_LopSter", "from_user_id": 358340543, "from_user_id_str": "358340543", "from_user_name": "John Lopilato", "geo": null, "id": 148839841730277380, "id_str": "148839841730277376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1571245985/7d7RmpwU_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1571245985/7d7RmpwU_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Ready to get out of work and have some fun. Hmu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:18 +0000", "from_user": "NickyMauge", "from_user_id": 123364080, "from_user_id_str": "123364080", "from_user_name": "Mrs. Payne", "geo": null, "id": 148839841226965000, "id_str": "148839841226964992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676198321/one_direction_move_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676198321/one_direction_move_normal.gif", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @NiallOfficial: Legooo! Southend! Gona be fun, get involved!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:18 +0000", "from_user": "Aamal_E", "from_user_id": 94762293, "from_user_id_str": "94762293", "from_user_name": "ENTEKUME MICHAEL", "geo": null, "id": 148839840975302660, "id_str": "148839840975302656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687969374/3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687969374/3_normal.jpg", "source": "<a href="http://tuitwit.com" rel="nofollow">TuiTwit</a>", "text": "Ama stick 2 readin dem tweets! More fun dat way :))", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:18 +0000", "from_user": "pogigames", "from_user_id": 421835087, "from_user_id_str": "421835087", "from_user_name": "pogi games", "geo": null, "id": 148839840824303600, "id_str": "148839840824303616", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1658733495/rally-online-game1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658733495/rally-online-game1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "fun pc games - Fruttiland - http://t.co/kgeeH7Eo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:17 +0000", "from_user": "NowTwatchMeWurk", "from_user_id": 325553840, "from_user_id_str": "325553840", "from_user_name": "RainnyaForecast", "geo": null, "id": 148839839826059260, "id_str": "148839839826059264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1675355294/avatar_normal.JPEG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675355294/avatar_normal.JPEG", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "Damn I don't know his name he be in all the Tyler Perry plays but OMG he look so yummy DAMN we could have all kinds of fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:17 +0000", "from_user": "jen_ireland", "from_user_id": 82248533, "from_user_id_str": "82248533", "from_user_name": "Jennifer Ireland", "geo": null, "id": 148839838832005120, "id_str": "148839838832005120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1460466614/25329_1224505885392_1011330514_31155098_3331751_n-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1460466614/25329_1224505885392_1011330514_31155098_3331751_n-1_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Incredibly awesome Christmas lights interactive Angry Birds game http://t.co/gNcikqFZ #in", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:17 +0000", "from_user": "Wild_Mane", "from_user_id": 208935321, "from_user_id_str": "208935321", "from_user_name": "Jonthan Marks", "geo": null, "id": 148839838538399740, "id_str": "148839838538399744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1652629067/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652629067/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Da_Realist06 had 2 much fun year round", "to_user": "Da_Realist06", "to_user_id": 179568409, "to_user_id_str": "179568409", "to_user_name": "Deante' Thomas", "in_reply_to_status_id": 148831675873361920, "in_reply_to_status_id_str": "148831675873361922"}, +{"created_at": "Mon, 19 Dec 2011 18:59:17 +0000", "from_user": "effigyfarm", "from_user_id": 12584742, "from_user_id_str": "12584742", "from_user_name": "effigyfarm", "geo": null, "id": 148839838509051900, "id_str": "148839838509051904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1311512755/nicole_patrice_johnson_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1311512755/nicole_patrice_johnson_2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I am using @karmaScience (download the app) for the rest of my holiday shopping // a co-founder is from #Detroit this will be way more fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:17 +0000", "from_user": "Ayo_ItsAshleyy", "from_user_id": 86463349, "from_user_id_str": "86463349", "from_user_name": "Est. *Jan.11th*", "geo": null, "id": 148839837997338620, "id_str": "148839837997338624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700692706/Photo_on_2011-10-31_at_14.14__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700692706/Photo_on_2011-10-31_at_14.14__2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @_Preslynn_: @Ayo_ItsAshleyy bahaha, you made that class fun :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:17 +0000", "from_user": "rexxie13", "from_user_id": 37319948, "from_user_id_str": "37319948", "from_user_name": "sarah ", "geo": null, "id": 148839836713893900, "id_str": "148839836713893888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1113901162/18qq4zg4_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1113901162/18qq4zg4_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Yes yes back on this should be fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:17 +0000", "from_user": "Vandana_99", "from_user_id": 417761129, "from_user_id_str": "417761129", "from_user_name": "Vandana Patel", "geo": null, "id": 148839836709699600, "id_str": "148839836709699585", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@akshaykumar From South Africa-watched Desi Boyz yesterday-really enjoyed it! Great fun!! Well done guys:)", "to_user": "akshaykumar", "to_user_id": 31348594, "to_user_id_str": "31348594", "to_user_name": "Akshay Kumar", "in_reply_to_status_id": 148742477623472130, "in_reply_to_status_id_str": "148742477623472128"}, +{"created_at": "Mon, 19 Dec 2011 18:59:16 +0000", "from_user": "KeehLicioUs_eLL", "from_user_id": 171784739, "from_user_id_str": "171784739", "from_user_name": "Keeh Xychie Dy", "geo": null, "id": 148839835707248640, "id_str": "148839835707248640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685468085/331235526_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685468085/331235526_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Just had a fun talk with JAM SANCHOOOOOO! #BlueBoyBitesBack w/ @ZoFneSs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:16 +0000", "from_user": "iconicgirl156", "from_user_id": 255737263, "from_user_id_str": "255737263", "from_user_name": "caitlin lacey!", "geo": null, "id": 148839835145224200, "id_str": "148839835145224192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1639076905/vinny__normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639076905/vinny__normal", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @ICONspikeymike: Shutout to my man @LaneNapper had a great class today, so much fun. Hope to see u again soon!! On my way to Long Island now :))Gonna be sick", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:16 +0000", "from_user": "ZachMorrell", "from_user_id": 31029264, "from_user_id_str": "31029264", "from_user_name": "Zachery Morrell", "geo": null, "id": 148839834436386800, "id_str": "148839834436386816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1554874768/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554874768/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @MODSUN: Dude, my life is so fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:16 +0000", "from_user": "dneijenhuis", "from_user_id": 275561596, "from_user_id_str": "275561596", "from_user_name": "Dani\\u00EBlle", "geo": null, "id": 148839833710772220, "id_str": "148839833710772224", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1574013301/CIMG0232_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1574013301/CIMG0232_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@xcharity dat zal best wel ja! Naar welke film ben je? Have fun!", "to_user": "xcharity", "to_user_id": 275565573, "to_user_id_str": "275565573", "to_user_name": "Charity Johannes", "in_reply_to_status_id": 148832949045956600, "in_reply_to_status_id_str": "148832949045956611"}, +{"created_at": "Mon, 19 Dec 2011 18:59:16 +0000", "from_user": "_UnderD0g", "from_user_id": 212719054, "from_user_id_str": "212719054", "from_user_name": "Ramona Flowers \\u262E", "geo": null, "id": 148839833677205500, "id_str": "148839833677205504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1628919944/jur6gjY9_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628919944/jur6gjY9_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "god last night was so.fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:16 +0000", "from_user": "xNext2You", "from_user_id": 107107107, "from_user_id_str": "107107107", "from_user_name": "Wendy,\\u262E", "geo": null, "id": 148839833480073200, "id_str": "148839833480073216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1684739405/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684739405/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@MarcuscollinsUK woo have fun Marcus, don't get too drunk!!!", "to_user": "MarcuscollinsUK", "to_user_id": 370448015, "to_user_id_str": "370448015", "to_user_name": "Marcus Collins", "in_reply_to_status_id": 148839438309527550, "in_reply_to_status_id_str": "148839438309527553"}, +{"created_at": "Mon, 19 Dec 2011 18:59:16 +0000", "from_user": "Rikk16", "from_user_id": 227818470, "from_user_id_str": "227818470", "from_user_name": "Rik", "geo": null, "id": 148839832993546240, "id_str": "148839832993546240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1600723916/328468419_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600723916/328468419_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@Jimpjuh @trangaboyfly go zipp and have fun", "to_user": "Jimpjuh", "to_user_id": 155332949, "to_user_id_str": "155332949", "to_user_name": "Jim", "in_reply_to_status_id": 148839514146750460, "in_reply_to_status_id_str": "148839514146750464"}, +{"created_at": "Mon, 19 Dec 2011 18:59:15 +0000", "from_user": "_BatmansRaccoon", "from_user_id": 232986892, "from_user_id_str": "232986892", "from_user_name": "Ohai Batman", "geo": null, "id": 148839829105418240, "id_str": "148839829105418240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679929083/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679929083/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Lunch will be fun -.e", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:14 +0000", "from_user": "tashasuri", "from_user_id": 144541740, "from_user_id_str": "144541740", "from_user_name": "Tasha Suri", "geo": null, "id": 148839824663658500, "id_str": "148839824663658496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1383255276/Photo_8_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1383255276/Photo_8_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Lizzie89x It's your hair! Besides, short could be a fun change - and you've got the face to pull it off", "to_user": "Lizzie89x", "to_user_id": 186909702, "to_user_id_str": "186909702", "to_user_name": "Lizzie"}, +{"created_at": "Mon, 19 Dec 2011 18:59:14 +0000", "from_user": "Trace_MyFace", "from_user_id": 322218633, "from_user_id_str": "322218633", "from_user_name": "D E C E M B E R 18 !", "geo": null, "id": 148839823975780350, "id_str": "148839823975780352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702461092/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702461092/image_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Photos on iOS</a>", "text": "I had fun on my birthday , yesterday :) http://t.co/UL8RoBmp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:13 +0000", "from_user": "DesmondTheDog", "from_user_id": 285061887, "from_user_id_str": "285061887", "from_user_name": "Lauren & Desmond", "geo": null, "id": 148839823862534140, "id_str": "148839823862534145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1318463430/IMG_4262_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1318463430/IMG_4262_normal.JPG", "source": "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", "text": "does your dog sleep in a funny position? mine does. http://t.co/GXpwT0dC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:13 +0000", "from_user": "vintageglamG", "from_user_id": 373731600, "from_user_id_str": "373731600", "from_user_name": "rachel brean maynard", "geo": null, "id": 148839822864293900, "id_str": "148839822864293888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1626251374/vintage-arch_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626251374/vintage-arch_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT@coolsara51: I love all u #Rushers we really r a family and I LOVE having ppl who don't make fun of me for fangirling and love BTR as ...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:13 +0000", "from_user": "H3lloH3ath3rXx", "from_user_id": 96037408, "from_user_id_str": "96037408", "from_user_name": "Heather Konvicka", "geo": null, "id": 148839822851715070, "id_str": "148839822851715073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689870295/rli8H5EH_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689870295/rli8H5EH_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@HelloOlive havent decided yet :) probably somewhere close. Tis gonna be fun", "to_user": "HelloOlive", "to_user_id": 169012286, "to_user_id_str": "169012286", "to_user_name": "Olivia Nicole", "in_reply_to_status_id": 148834470156451840, "in_reply_to_status_id_str": "148834470156451842"}, +{"created_at": "Mon, 19 Dec 2011 18:59:13 +0000", "from_user": "follypimpz", "from_user_id": 208703073, "from_user_id_str": "208703073", "from_user_name": "raphael ola", "geo": null, "id": 148839822478417920, "id_str": "148839822478417921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1686985768/IMG-20110819-00216_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686985768/IMG-20110819-00216_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Home,finally phewww. shoppin was quite fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:13 +0000", "from_user": "peachsouth09", "from_user_id": 68271562, "from_user_id_str": "68271562", "from_user_name": "Gayle ", "geo": null, "id": 148839821010419700, "id_str": "148839821010419712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1616006542/DSCN1291_-_Copy_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616006542/DSCN1291_-_Copy_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@nathinbutler Have fun!! Thanks for tweeting the pictures the other night!!", "to_user": "nathinbutler", "to_user_id": 319379850, "to_user_id_str": "319379850", "to_user_name": "Nathin Art Butler", "in_reply_to_status_id": 148834110041882620, "in_reply_to_status_id_str": "148834110041882624"}, +{"created_at": "Mon, 19 Dec 2011 18:59:12 +0000", "from_user": "young1_lj12", "from_user_id": 255364196, "from_user_id_str": "255364196", "from_user_name": "jessica mayo", "geo": null, "id": 148839819508850700, "id_str": "148839819508850688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "@SincerelyNell_ lol yeah u was n talkin bout driving i had fun though....", "to_user": "SincerelyNell_", "to_user_id": 90265801, "to_user_id_str": "90265801", "to_user_name": "Janelle Knights"}, +{"created_at": "Mon, 19 Dec 2011 18:59:12 +0000", "from_user": "Yomsdale", "from_user_id": 189515119, "from_user_id_str": "189515119", "from_user_name": "Osiyemi Oluwayomi", "geo": null, "id": 148839818720329730, "id_str": "148839818720329728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1572116611/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572116611/image_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "I want to leave benin but there is too much fun,no lekki traffic,no lekki to gate to pay...**im confused**but can I miss rhythm unplugged", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:12 +0000", "from_user": "badsparkplug1", "from_user_id": 386818502, "from_user_id_str": "386818502", "from_user_name": "palmateer", "geo": null, "id": 148839818305085440, "id_str": "148839818305085440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "In All Kinds of Weather, Kids Make Music Sunny, Stormy, and Always Fun Music Activities for\\u2026 http://t.co/NqoazD1i", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:12 +0000", "from_user": "820cham", "from_user_id": 169720359, "from_user_id_str": "169720359", "from_user_name": "820CHAM", "geo": null, "id": 148839817919205380, "id_str": "148839817919205376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1084004168/820chamlogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1084004168/820chamlogo_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Look at how much fun we are having with these Red Solo Cups in the office! :) http://t.co/JI0ydA8K", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:12 +0000", "from_user": "SoWhatIfWe", "from_user_id": 441068639, "from_user_id_str": "441068639", "from_user_name": "So What", "geo": null, "id": 148839817306837000, "id_str": "148839817306836993", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702570128/2454154428_So20What_answer_3_xlarge_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702570128/2454154428_So20What_answer_3_xlarge_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "So What If Someone is Slow, Don't Make Fun Of Them.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:12 +0000", "from_user": "lizDUHfriz", "from_user_id": 34823555, "from_user_id_str": "34823555", "from_user_name": "liz n", "geo": null, "id": 148839817126490100, "id_str": "148839817126490112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1592796549/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592796549/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@MrChrisRene love you Chris!!! Have fun at the press conference!!!!", "to_user": "MrChrisRene", "to_user_id": 389155479, "to_user_id_str": "389155479", "to_user_name": "Chris Rene", "in_reply_to_status_id": 148839332311072770, "in_reply_to_status_id_str": "148839332311072768"}, +{"created_at": "Mon, 19 Dec 2011 18:59:12 +0000", "from_user": "OoOLaLaAlynaaa", "from_user_id": 168041106, "from_user_id_str": "168041106", "from_user_name": "Alyna S.", "geo": null, "id": 148839816673501200, "id_str": "148839816673501187", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693792051/IBdom5Lm_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693792051/IBdom5Lm_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "@DOPEITSKAY ; Lol Shoot Id Be Excited Too, Have Fun!", "to_user": "DOPEITSKAY", "to_user_id": 77843042, "to_user_id_str": "77843042", "to_user_name": "Kaylin Christina E.", "in_reply_to_status_id": 148839434303963140, "in_reply_to_status_id_str": "148839434303963138"}, +{"created_at": "Mon, 19 Dec 2011 18:59:12 +0000", "from_user": "JoBrezzy", "from_user_id": 223637483, "from_user_id_str": "223637483", "from_user_name": "Jojo Ac", "geo": null, "id": 148839816518307840, "id_str": "148839816518307840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690335960/ECdoc7j6_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690335960/ECdoc7j6_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@BlowMyTweetss and you guys were making fun of me over the summer ;", "to_user": "BlowMyTweetss", "to_user_id": 347610723, "to_user_id_str": "347610723", "to_user_name": "Thug Life :#", "in_reply_to_status_id": 148836478569549820, "in_reply_to_status_id_str": "148836478569549824"}, +{"created_at": "Mon, 19 Dec 2011 18:59:11 +0000", "from_user": "_LifeOfAmbition", "from_user_id": 235848358, "from_user_id_str": "235848358", "from_user_name": "DAV0NTA PRICE", "geo": null, "id": 148839813221593100, "id_str": "148839813221593088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697520725/gw9Kp11O_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697520725/gw9Kp11O_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Me and dro walking with the college girls at the mall lol we havin fun yo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:11 +0000", "from_user": "luna26062000", "from_user_id": 440068009, "from_user_id_str": "440068009", "from_user_name": "luna26062000", "geo": null, "id": 148839813074784260, "id_str": "148839813074784256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702615302/herze_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702615302/herze_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Big Time Rush was full of fun today. : D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:11 +0000", "from_user": "KrissyLewie", "from_user_id": 440081777, "from_user_id_str": "440081777", "from_user_name": "Kristin Lewis", "geo": null, "id": 148839812839899140, "id_str": "148839812839899136", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700258595/5078453162_81f69cd2ae_normal.jpg", "profile_image_url_https": null, "source": "<a href="http://twitter.com/">web</a>", "text": "innuendos are fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:10 +0000", "from_user": "FuntasticChicka", "from_user_id": 439646746, "from_user_id_str": "439646746", "from_user_name": "Martine Guitard", "geo": null, "id": 148839811271241730, "id_str": "148839811271241730", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702479396/263090_10150284769161413_709356412_9596969_5922339_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702479396/263090_10150284769161413_709356412_9596969_5922339_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@goldstaarr oufff, god to complicated for me lol I just want to build or do something for fun.", "to_user": "goldstaarr", "to_user_id": 352409570, "to_user_id_str": "352409570", "to_user_name": "sammy", "in_reply_to_status_id": 148839224047714300, "in_reply_to_status_id_str": "148839224047714305"}, +{"created_at": "Mon, 19 Dec 2011 18:59:10 +0000", "from_user": "juelzx84", "from_user_id": 368459146, "from_user_id_str": "368459146", "from_user_name": "Juelz Xavi", "geo": null, "id": 148839811044749300, "id_str": "148839811044749314", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690851422/IMG00295-20110813-1753_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690851422/IMG00295-20110813-1753_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @realcormega: yo life is real somebody got robbed outside the grocery store for $150 worth of groceries everything aint popping bottles and fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:10 +0000", "from_user": "plocekpedlq2", "from_user_id": 377177265, "from_user_id_str": "377177265", "from_user_name": "Plocek Reed", "geo": null, "id": 148839811027963900, "id_str": "148839811027963905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1552621017/imagesCAJ4V6SJ_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552621017/imagesCAJ4V6SJ_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "fabledpantheon Haha! That sounds cute. As much fun that would be, I can't make any promises. No idea4RPmQt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:10 +0000", "from_user": "temibiggs", "from_user_id": 193628471, "from_user_id_str": "193628471", "from_user_name": "Temitope ", "geo": null, "id": 148839810491093000, "id_str": "148839810491092992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1665060809/330639488_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665060809/330639488_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "it was fun all d way RT @Joyellie: RT it was great, urs? @biggs: am over happy, ow was ur wkend RT @Joyellie: RT. Lool now I'm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:10 +0000", "from_user": "CliffsEsport", "from_user_id": 388088647, "from_user_id_str": "388088647", "from_user_name": "Cliff'sEsportCorner", "geo": null, "id": 148839809954230270, "id_str": "148839809954230272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1582149814/IMG-20111010-00185_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1582149814/IMG-20111010-00185_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @csn_johnclark: New School Mondays S2#1 StarCraft II Amateur Cup http://t.co/pwpBVaGc via @cybersportsnet - More $, Better Odds & more fun then other Dailys", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:10 +0000", "from_user": "brianrobles6", "from_user_id": 367600465, "from_user_id_str": "367600465", "from_user_name": "brian robles", "geo": null, "id": 148839809434136580, "id_str": "148839809434136576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1661869800/Picture0055_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661869800/Picture0055_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @weEKendproblms: I wonder #WhatHappened2 being young and having fun, not being young and having kids", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:10 +0000", "from_user": "SpaceCadetJay", "from_user_id": 133389396, "from_user_id_str": "133389396", "from_user_name": "J-Kidd \\u00D8\\u0192W6K\\u253C\\u25B2", "geo": null, "id": 148839809312493570, "id_str": "148839809312493571", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1648936448/spacecadetjay_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648936448/spacecadetjay_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @AriesDailyScope: #Aries don't deal with stupid people, unless we are in the mood for a little fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:10 +0000", "from_user": "The__Prototype", "from_user_id": 49787995, "from_user_id_str": "49787995", "from_user_name": "Tevin Byrd", "geo": null, "id": 148839807211151360, "id_str": "148839807211151360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680102596/Proto_in_Versailles_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680102596/Proto_in_Versailles_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "The kind of lives they live are not for me. They're miserable, shady, grimy, full of drama, and hateful. Have fun with that.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:09 +0000", "from_user": "CMB_Rohan", "from_user_id": 353835876, "from_user_id_str": "353835876", "from_user_name": "Luke Rohan", "geo": null, "id": 148839806804312060, "id_str": "148839806804312066", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1610085046/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610085046/image_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Nobody should take twitter that serious \\nIt's just a fun thing", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:09 +0000", "from_user": "MiraSovietha", "from_user_id": 436768721, "from_user_id_str": "436768721", "from_user_name": "Miranda Onix Sovieth", "geo": null, "id": 148839805873168400, "id_str": "148839805873168386", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692997148/BLUE_Is_My_Favorite_Color_by_elrothiel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692997148/BLUE_Is_My_Favorite_Color_by_elrothiel_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Bros: Make fun of him and he\\u2019ll punch you in the face - guidos bros douchebags fratboys - Bros: Make... http://t.co/Qdy9UC9C #TeamFollowBack", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:09 +0000", "from_user": "A_TrackFiend", "from_user_id": 372080321, "from_user_id_str": "372080321", "from_user_name": "Alfredo Chavez Jr", "geo": null, "id": 148839805483098100, "id_str": "148839805483098112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700787561/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700787561/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "On my way to practice this should be fun!! #dedication", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:09 +0000", "from_user": "mkmfum_", "from_user_id": 347104624, "from_user_id_str": "347104624", "from_user_name": "\\u221A Mich\\u00E5el Mfum", "geo": null, "id": 148839805055283200, "id_str": "148839805055283201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1561331991/Photo_on_26-09-2011_at_21.16_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1561331991/Photo_on_26-09-2011_at_21.16_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@jadevousaime lool.. i just know how 2. incase of emergency but i dont drive for fun and all.. they think its cool to drive . :)", "to_user": "jadevousaime", "to_user_id": 390151105, "to_user_id_str": "390151105", "to_user_name": "Jade Kankam", "in_reply_to_status_id": 148839315064098800, "in_reply_to_status_id_str": "148839315064098816"}, +{"created_at": "Mon, 19 Dec 2011 18:59:08 +0000", "from_user": "Luna_Cake", "from_user_id": 330580674, "from_user_id_str": "330580674", "from_user_name": "Deniza \\u03DF", "geo": null, "id": 148839802949734400, "id_str": "148839802949734400", "iso_language_code": "is", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682922209/IMG_7325_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682922209/IMG_7325_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "fun fun fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:08 +0000", "from_user": "SamOliver2904", "from_user_id": 25905841, "from_user_id_str": "25905841", "from_user_name": "Sam Oliver", "geo": null, "id": 148839802358337540, "id_str": "148839802358337536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1663163445/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663163445/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@WholeLottaUna @nvsofficial @thesaturdays have fun babygirl!!! Miss you! Xxx", "to_user": "WholeLottaUna", "to_user_id": 82679109, "to_user_id_str": "82679109", "to_user_name": "Nicci\\u2665", "in_reply_to_status_id": 148838465306505200, "in_reply_to_status_id_str": "148838465306505216"}, +{"created_at": "Mon, 19 Dec 2011 18:59:08 +0000", "from_user": "girloman13", "from_user_id": 278722972, "from_user_id_str": "278722972", "from_user_name": "zahraa sultan", "geo": null, "id": 148839802203148300, "id_str": "148839802203148288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1618679002/water_fountain_acrylic_painting_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618679002/water_fountain_acrylic_painting_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@innocentbullet oooh ok have fun downloading (lol)", "to_user": "innocentbullet", "to_user_id": 141262314, "to_user_id_str": "141262314", "to_user_name": "\\uBBF8\\uACBD \\u25AA \\uFF4D\\uFF49\\uFF4B\\uFF49", "in_reply_to_status_id": 148839375193653250, "in_reply_to_status_id_str": "148839375193653248"}, +{"created_at": "Mon, 19 Dec 2011 18:59:08 +0000", "from_user": "LorInBigD", "from_user_id": 20262504, "from_user_id_str": "20262504", "from_user_name": "Laura Schulte", "geo": null, "id": 148839801515282430, "id_str": "148839801515282432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1663068305/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663068305/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@stopthewave I hope so! Those are always fun!", "to_user": "stopthewave", "to_user_id": 38671135, "to_user_id_str": "38671135", "to_user_name": "Greg", "in_reply_to_status_id": 148833279812964350, "in_reply_to_status_id_str": "148833279812964354"}, +{"created_at": "Mon, 19 Dec 2011 18:59:07 +0000", "from_user": "LighterKick", "from_user_id": 302957810, "from_user_id_str": "302957810", "from_user_name": "Tyler Kicklighter", "geo": null, "id": 148839798147268600, "id_str": "148839798147268608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1420813285/Prairie_20Grove-20110625-00091_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1420813285/Prairie_20Grove-20110625-00091_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Don't make fun of a fat guy with a lisp, he's probably thick and tired of it. Hah.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:07 +0000", "from_user": "LauraBarajas1", "from_user_id": 288513217, "from_user_id_str": "288513217", "from_user_name": "Laura Barajas", "geo": null, "id": 148839797211922430, "id_str": "148839797211922432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1644862615/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644862615/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I actually ran yesterday , for fun :o", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:07 +0000", "from_user": "AmeliaBardot", "from_user_id": 358080978, "from_user_id_str": "358080978", "from_user_name": "Amelia Bardot", "geo": null, "id": 148839796419215360, "id_str": "148839796419215361", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1637065109/IMG00043-20110626-1603_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637065109/IMG00043-20110626-1603_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@KLM1 thank you(!!)to you and those other Sherbrooke road girls for the festive fun on Saturday eve. NOW! I am warmed up for Christmas!xx", "to_user": "KLM1", "to_user_id": 259424371, "to_user_id_str": "259424371", "to_user_name": "x k i r s t y x"}, +{"created_at": "Mon, 19 Dec 2011 18:59:07 +0000", "from_user": "MrsEmaBaby", "from_user_id": 435161429, "from_user_id_str": "435161429", "from_user_name": "Nyema Hameed", "geo": null, "id": 148839795949441020, "id_str": "148839795949441024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702606713/images-11_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702606713/images-11_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "Im in skool having fun in computers", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:07 +0000", "from_user": "KiviaFlorencio_", "from_user_id": 63859733, "from_user_id_str": "63859733", "from_user_name": "K\\u00EDvia Mendon\\u00E7a", "geo": null, "id": 148839795660038140, "id_str": "148839795660038144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676294979/tt_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676294979/tt_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Oh, girls just wanna have fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:07 +0000", "from_user": "HannahWalter79", "from_user_id": 348747154, "from_user_id_str": "348747154", "from_user_name": "Hannah Walter", "geo": null, "id": 148839795135754240, "id_str": "148839795135754240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700674123/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700674123/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@ConnorCallison that would be so fun! But I think it's full for 10th-12th graders :(", "to_user": "ConnorCallison", "to_user_id": 149959755, "to_user_id_str": "149959755", "to_user_name": "Connor Callison"}, +{"created_at": "Mon, 19 Dec 2011 18:59:07 +0000", "from_user": "IamLatoyaD", "from_user_id": 225865068, "from_user_id_str": "225865068", "from_user_name": "Toyaa! xx", "geo": null, "id": 148839795043471360, "id_str": "148839795043471361", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1663894192/447860416_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663894192/447860416_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@MarcuscollinsUK Have fun! :) xx", "to_user": "MarcuscollinsUK", "to_user_id": 370448015, "to_user_id_str": "370448015", "to_user_name": "Marcus Collins", "in_reply_to_status_id": 148839438309527550, "in_reply_to_status_id_str": "148839438309527553"}, +{"created_at": "Mon, 19 Dec 2011 18:59:07 +0000", "from_user": "stoutemeiden", "from_user_id": 396769140, "from_user_id_str": "396769140", "from_user_name": "Stoute Meiden", "geo": null, "id": 148839794762461200, "id_str": "148839794762461184", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1603085534/girls_kissing_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1603085534/girls_kissing_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#stout bamby (25) uit Laren - Lief, zacht, af en toe een beetje ondeugend, meelevend, sociaal, fun to be with. Dat... http://t.co/A7w4cT8p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:06 +0000", "from_user": "tin_ashley", "from_user_id": 310913586, "from_user_id_str": "310913586", "from_user_name": "tinashe mlambo", "geo": null, "id": 148839794254954500, "id_str": "148839794254954496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1666288410/DSC00043_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666288410/DSC00043_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@TeeEnWhy it aint fun wen every one of ur players are ike 85+ nd u still can't win...", "to_user": "TeeEnWhy", "to_user_id": 235681474, "to_user_id_str": "235681474", "to_user_name": "Tia TimCash Nyakabau", "in_reply_to_status_id": 148828332111310850, "in_reply_to_status_id_str": "148828332111310848"}, +{"created_at": "Mon, 19 Dec 2011 18:59:06 +0000", "from_user": "no0ony1325", "from_user_id": 241195615, "from_user_id_str": "241195615", "from_user_name": "noor ", "geo": null, "id": 148839793554505730, "id_str": "148839793554505729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1589609281/Maryam_20alansari-_20dp_3Bnoor_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1589609281/Maryam_20alansari-_20dp_3Bnoor_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Had fun with @Al_MaKnToShA. And @Shaikha_MRM. <3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:06 +0000", "from_user": "ImACES21", "from_user_id": 35375451, "from_user_id_str": "35375451", "from_user_name": "Aces", "geo": null, "id": 148839793290264580, "id_str": "148839793290264576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1637984734/ImACES21_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637984734/ImACES21_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@Miss_Steffy_Bby Vegas was fun, left a whole lot of money there but hey \"you only live once\". Any plans for today?", "to_user": "Miss_Steffy_Bby", "to_user_id": 198624240, "to_user_id_str": "198624240", "to_user_name": "...", "in_reply_to_status_id": 148836885014392830, "in_reply_to_status_id_str": "148836885014392832"}, +{"created_at": "Mon, 19 Dec 2011 18:59:06 +0000", "from_user": "covernewsinfo", "from_user_id": 20792440, "from_user_id_str": "20792440", "from_user_name": "CoverNews.info", "geo": null, "id": 148839792564637700, "id_str": "148839792564637696", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1616724484/logoconredes_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616724484/logoconredes_normal.jpg", "source": "<a href="http://fun.ly" rel="nofollow">fun.ly</a>", "text": "Aulas Abiertas Virtuales de Nueva Escuela de Dise\\u00F1o y Comunicaci\\u00F3n http://t.co/BTpnSf4U", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:06 +0000", "from_user": "MPWhaley", "from_user_id": 321665488, "from_user_id_str": "321665488", "from_user_name": "Michael Whaley", "geo": null, "id": 148839792514310140, "id_str": "148839792514310144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1534391811/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534391811/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Cold and rainy is my least favorite weather. On the #brightside it's fun to drive in. #fishtail @cjray2293 know what I'm talking about?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:06 +0000", "from_user": "TheStudioBPhoto", "from_user_id": 58306363, "from_user_id_str": "58306363", "from_user_name": "Rebecca Enslein", "geo": null, "id": 148839791293775870, "id_str": "148839791293775873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1312433263/DSC_0084_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312433263/DSC_0084_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Had a mailbox filled with only Christmas cards today! What fun!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:06 +0000", "from_user": "iLoveMissBri", "from_user_id": 378143779, "from_user_id_str": "378143779", "from_user_name": "\\u265BKing B\\u265B", "geo": null, "id": 148839791033724930, "id_str": "148839791033724930", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674203296/267260_10150257794900669_504585668_7608445_3103961_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674203296/267260_10150257794900669_504585668_7608445_3103961_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@FacetStudio lol we had fun...kinda scared to c what the videographer recorded on that lil camera he was runnin around with : /", "to_user": "FacetStudio", "to_user_id": 76266867, "to_user_id_str": "76266867", "to_user_name": "Suliman Facet Hasan", "in_reply_to_status_id": 148838493609668600, "in_reply_to_status_id_str": "148838493609668608"}, +{"created_at": "Mon, 19 Dec 2011 18:59:05 +0000", "from_user": "domemeuppp", "from_user_id": 223203939, "from_user_id_str": "223203939", "from_user_name": "dominique tinoco \\u0950 ", "geo": null, "id": 148839790266167300, "id_str": "148839790266167296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688132761/dominique_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688132761/dominique_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @desiraetinoco: Last night was fun with the homies @Ann_theReal @_YoungVeggies_ @domemeuppp @esMEECHO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:05 +0000", "from_user": "KarliGlitter", "from_user_id": 274201135, "from_user_id_str": "274201135", "from_user_name": "Karli Anne Sherman", "geo": null, "id": 148839789506998270, "id_str": "148839789506998273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1292019670/IMG_0255_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1292019670/IMG_0255_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@KatieLetcher: Getting my oil changed & there are some verrry cute country boys just walked in\\u201D Steal them! What a fun \"how we met\" story..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:05 +0000", "from_user": "kaylindal", "from_user_id": 19292556, "from_user_id_str": "19292556", "from_user_name": "Kaylin Dalrymple", "geo": null, "id": 148839788487778300, "id_str": "148839788487778304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1614790389/me2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1614790389/me2_normal.png", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @DisneyParks: Fun Fact: Walt Disney World is decorated with 1,314 wreaths this year! #DisneyHolidays", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:05 +0000", "from_user": "mumoffunkids", "from_user_id": 314398235, "from_user_id_str": "314398235", "from_user_name": "Katherine Aitken", "geo": null, "id": 148839788085129200, "id_str": "148839788085129216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Jelly Baby Giveaway @findmeagift fun stuff for little tums #competition #win http://t.co/JjyIiE5b", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:05 +0000", "from_user": "MADDLYinlove17", "from_user_id": 350608072, "from_user_id_str": "350608072", "from_user_name": "Maddy Mitchell", "geo": null, "id": 148839787716018180, "id_str": "148839787716018176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662490283/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662490283/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @WizKhalllifa: #IWasThatKid that covered my hands in glue , let it dry , and then peeled it off for fun...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:05 +0000", "from_user": "Laprimapagina", "from_user_id": 225872290, "from_user_id_str": "225872290", "from_user_name": "La Prima Pagina", "geo": null, "id": 148839786747133950, "id_str": "148839786747133953", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1612472331/laprimapagina_nuovo_logo_mini_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612472331/laprimapagina_nuovo_logo_mini_normal.jpg", "source": "<a href="http://fun.ly" rel="nofollow">fun.ly</a>", "text": "Sotto l'albero il primato sfida diretta tra Juve e Udinese http://t.co/ghdf6qBo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:05 +0000", "from_user": "Ashleighlench1", "from_user_id": 286939255, "from_user_id_str": "286939255", "from_user_name": "Ashleigh lench", "geo": null, "id": 148839786671644670, "id_str": "148839786671644672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1578064541/IMG00346-20111007-1427_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1578064541/IMG00346-20111007-1427_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@eloiseJLS_1D have fun tonight even though I'm hating on you right now! Haha x x", "to_user": "eloiseJLS_1D", "to_user_id": 184048981, "to_user_id_str": "184048981", "to_user_name": "eloise styles."}, +{"created_at": "Mon, 19 Dec 2011 18:59:04 +0000", "from_user": "LadyJanis", "from_user_id": 50688363, "from_user_id_str": "50688363", "from_user_name": "Lady Janis", "geo": null, "id": 148839785715347460, "id_str": "148839785715347456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/932309086/MDH-Bild_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/932309086/MDH-Bild_normal.jpg", "source": "<a href="http://fun.ly" rel="nofollow">fun.ly</a>", "text": "MAKE a WISH! http://t.co/INH4YmQz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:04 +0000", "from_user": "mattpoole5", "from_user_id": 287923742, "from_user_id_str": "287923742", "from_user_name": "Matt Poole", "geo": null, "id": 148839784297668600, "id_str": "148839784297668608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1580201533/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580201533/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I was heftily eating my way through a big bag of Haribo during my gym session, fun stuff but...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:04 +0000", "from_user": "ImGlenda", "from_user_id": 56293774, "from_user_id_str": "56293774", "from_user_name": "Glenda Micu ", "geo": null, "id": 148839783676903420, "id_str": "148839783676903425", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1620096610/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620096610/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Waiting isn't as fun as I thought... #tastingmyownmedicine =\\ @PGJReyes hurry upppp!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:03 +0000", "from_user": "Emb3rSil", "from_user_id": 18568639, "from_user_id_str": "18568639", "from_user_name": "DanteDouglas", "geo": null, "id": 148839779134484480, "id_str": "148839779134484480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1383562310/Mal_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1383562310/Mal_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Also, if you don't have it yet, Orcs Must Die is a very fun Tower Defense/Horde Mode type game, incredibly fun. Go buy it.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:02 +0000", "from_user": "ILikePieAndMcr", "from_user_id": 180898153, "from_user_id_str": "180898153", "from_user_name": "Geezy Way", "geo": null, "id": 148839777674866700, "id_str": "148839777674866690", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1602532104/Chlidiss_shorty_ey_frank__x_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1602532104/Chlidiss_shorty_ey_frank__x_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@WorldGayPride http://t.co/dw15MXe3 Please read this. This is a disgusting, about making fun f gays, and everything. :(", "to_user": "WorldGayPride", "to_user_id": 266655138, "to_user_id_str": "266655138", "to_user_name": "GayPrideQuotes"}, +{"created_at": "Mon, 19 Dec 2011 18:59:02 +0000", "from_user": "suzie_kennedy", "from_user_id": 28565249, "from_user_id_str": "28565249", "from_user_name": "Suzanne Kennedy", "geo": null, "id": 148839777335115780, "id_str": "148839777335115777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701305281/Photo_on_09-12-2011_at_19_Instant_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701305281/Photo_on_09-12-2011_at_19_Instant_1_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @MODSUN: Dude, my life is so fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:02 +0000", "from_user": "Butterfly_bi", "from_user_id": 411867707, "from_user_id_str": "411867707", "from_user_name": "foxy", "geo": null, "id": 148839775971971070, "id_str": "148839775971971072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1637743696/mariposaazul_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637743696/mariposaazul_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "42%OFF #deal $5.79 Think Fun Math Dice #toys #xmas http://t.co/tTCGTKvR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:02 +0000", "from_user": "NeuroticCare", "from_user_id": 392091480, "from_user_id_str": "392091480", "from_user_name": "Caroline Forbes", "geo": null, "id": 148839775888093200, "id_str": "148839775888093184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693999731/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693999731/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I'm gonna cry :( all those good times making fun of Damon..and a drop in the ocean playing nonstop.. :'( I'll miss you shorty :( a whole lot", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:02 +0000", "from_user": "reece_cookieee", "from_user_id": 308254247, "from_user_id_str": "308254247", "from_user_name": "Amber Reece", "geo": null, "id": 148839775237980160, "id_str": "148839775237980160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664117348/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664117348/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @ratedRSR: had a fun morning ..i have some great friends hehe ..jealous?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:02 +0000", "from_user": "Isaiahs_Bff", "from_user_id": 104890351, "from_user_id_str": "104890351", "from_user_name": "Reagan :)", "geo": null, "id": 148839774688509950, "id_str": "148839774688509953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1629417082/4lGBrpTm_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629417082/4lGBrpTm_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@HAYB3KiLLiN3M I wanna play with y'all...its fun playing with people that I can actually kill", "to_user": "HAYB3KiLLiN3M", "to_user_id": 319254980, "to_user_id_str": "319254980", "to_user_name": "Haley Elizabeth Rice", "in_reply_to_status_id": 148838786095263740, "in_reply_to_status_id_str": "148838786095263744"}, +{"created_at": "Mon, 19 Dec 2011 18:59:02 +0000", "from_user": "luvbabyb", "from_user_id": 22092979, "from_user_id_str": "22092979", "from_user_name": "Wan-nabe", "geo": null, "id": 148839774663360500, "id_str": "148839774663360513", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657269278/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657269278/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Tosatot haha! Well, your project was a lot more complicated than plain ol' cookies! I bet it was fun though :)", "to_user": "Tosatot", "to_user_id": 188370685, "to_user_id_str": "188370685", "to_user_name": "Tosatot", "in_reply_to_status_id": 148839488364363780, "in_reply_to_status_id_str": "148839488364363776"}, +{"created_at": "Mon, 19 Dec 2011 18:59:01 +0000", "from_user": "dirtyROSEWOOD", "from_user_id": 345089040, "from_user_id_str": "345089040", "from_user_name": "Mike BallGreezy", "geo": null, "id": 148839773413457920, "id_str": "148839773413457920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699791119/AZ5GCZVCMAEZOFo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699791119/AZ5GCZVCMAEZOFo_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "That Saturday night in BankHead >>>> Most fun ive ever had", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:01 +0000", "from_user": "LanceAPetersen", "from_user_id": 14233339, "from_user_id_str": "14233339", "from_user_name": "Lance A Petersen", "geo": null, "id": 148839773031768060, "id_str": "148839773031768064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1478208651/221771_1897091101865_1079236263_2160508_7101396_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1478208651/221771_1897091101865_1079236263_2160508_7101396_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Is still on air . Stream in and have some fun with ... www.viberadiosa.com", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:01 +0000", "from_user": "swirlymurphy", "from_user_id": 93636370, "from_user_id_str": "93636370", "from_user_name": "Amanda Perry", "geo": null, "id": 148839769651154940, "id_str": "148839769651154944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1604964441/zU4y92nb_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1604964441/zU4y92nb_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "Off to Sainsbury's this evening for The Big Food Shop....taking the teenagers to push trollies. Oh this will be such fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:00 +0000", "from_user": "BoppinTots", "from_user_id": 234446956, "from_user_id_str": "234446956", "from_user_name": "Siobhan Barr", "geo": null, "id": 148839768749383680, "id_str": "148839768749383681", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1208345440/Boppintotslogo_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1208345440/Boppintotslogo_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "@localbuilderuk Ha, no winding down for Xmas for you then Mr! Have fun, think of the joy you will bring them for Xmas day :-)", "to_user": "localbuilderuk", "to_user_id": 58433056, "to_user_id_str": "58433056", "to_user_name": "John Harrington", "in_reply_to_status_id": 148809338973200400, "in_reply_to_status_id_str": "148809338973200384"}, +{"created_at": "Mon, 19 Dec 2011 18:59:00 +0000", "from_user": "SDGemmill", "from_user_id": 136590052, "from_user_id_str": "136590052", "from_user_name": "Scott Gemmill", "geo": null, "id": 148839767889559550, "id_str": "148839767889559552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/903706513/s_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/903706513/s_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Started a fun project with the kids last night, writing a page on each day of our summer vacation. Encourages kids to do cool stuff...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:00 +0000", "from_user": "BasmaAlnamlah", "from_user_id": 252871445, "from_user_id_str": "252871445", "from_user_name": "Basma Alnamlah", "geo": null, "id": 148839767763722240, "id_str": "148839767763722240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702546889/BasmaAlnamlah_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702546889/BasmaAlnamlah_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@Ishaq_Ishaq for fun ? what fun exactly the only place I see Bahrainis are at Ikea .. Where's the fun in that ? :p", "to_user": "Ishaq_Ishaq", "to_user_id": 289575553, "to_user_id_str": "289575553", "to_user_name": "Ishaq Ishaq", "in_reply_to_status_id": 148839350472413200, "in_reply_to_status_id_str": "148839350472413184"}, +{"created_at": "Mon, 19 Dec 2011 18:58:59 +0000", "from_user": "adamwo96", "from_user_id": 51031261, "from_user_id_str": "51031261", "from_user_name": "Adam Wolstenholme", "geo": +{"coordinates": [53.7827,-3.0318], "type": "Point"}, "id": 148839764949340160, "id_str": "148839764949340160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1667967685/tumblr_lvj681CVMN1qh9km5o1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667967685/tumblr_lvj681CVMN1qh9km5o1_500_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@bomec_whatelse you never get a break?! Je mourais D: It would be fun to do modelling in Paris though! Tu doit \\u00EAtre pro \\u00E0 travailler l\\u00E0!", "to_user": "bomec_whatelse", "to_user_id": 399306250, "to_user_id_str": "399306250", "to_user_name": "Julien a le Swag \\u2665\\u2020", "in_reply_to_status_id": 148838813257572350, "in_reply_to_status_id_str": "148838813257572352"}, +{"created_at": "Mon, 19 Dec 2011 18:58:59 +0000", "from_user": "TayyyMeritheww", "from_user_id": 281932370, "from_user_id_str": "281932370", "from_user_name": "Taylor Merithew ", "geo": null, "id": 148839764131463170, "id_str": "148839764131463168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681535513/g0ixuvtG_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681535513/g0ixuvtG_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@A_Wagss i gotcha now haha well have fun be safe (: drink one for me!", "to_user": "A_Wagss", "to_user_id": 358849758, "to_user_id_str": "358849758", "to_user_name": "Alisha Wagner ", "in_reply_to_status_id": 148833300352483330, "in_reply_to_status_id_str": "148833300352483328"}, +{"created_at": "Mon, 19 Dec 2011 18:58:58 +0000", "from_user": "GetMoreAutos", "from_user_id": 280328916, "from_user_id_str": "280328916", "from_user_name": "Get More Autos", "geo": null, "id": 148839757437349900, "id_str": "148839757437349888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1553370016/1w_640_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553370016/1w_640_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "FUN FACT: \\nThe first automobile law was passed by the state of CT in 1901. The speed limit was set at 12 miles per hour", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:58:59 +0000", "from_user": "adamwo96", "from_user_id": 51031261, "from_user_id_str": "51031261", "from_user_name": "Adam Wolstenholme", "geo": +{"coordinates": [53.7827,-3.0318], "type": "Point"}, "id": 148839764949340160, "id_str": "148839764949340160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1667967685/tumblr_lvj681CVMN1qh9km5o1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667967685/tumblr_lvj681CVMN1qh9km5o1_500_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@bomec_whatelse you never get a break?! Je mourais D: It would be fun to do modelling in Paris though! Tu doit \\u00EAtre pro \\u00E0 travailler l\\u00E0!", "to_user": "bomec_whatelse", "to_user_id": 399306250, "to_user_id_str": "399306250", "to_user_name": "Julien a le Swag \\u2665\\u2020", "in_reply_to_status_id": 148838813257572350, "in_reply_to_status_id_str": "148838813257572352"}, +{"created_at": "Mon, 19 Dec 2011 18:58:59 +0000", "from_user": "TayyyMeritheww", "from_user_id": 281932370, "from_user_id_str": "281932370", "from_user_name": "Taylor Merithew ", "geo": null, "id": 148839764131463170, "id_str": "148839764131463168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681535513/g0ixuvtG_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681535513/g0ixuvtG_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@A_Wagss i gotcha now haha well have fun be safe (: drink one for me!", "to_user": "A_Wagss", "to_user_id": 358849758, "to_user_id_str": "358849758", "to_user_name": "Alisha Wagner ", "in_reply_to_status_id": 148833300352483330, "in_reply_to_status_id_str": "148833300352483328"}, +{"created_at": "Mon, 19 Dec 2011 18:58:58 +0000", "from_user": "GetMoreAutos", "from_user_id": 280328916, "from_user_id_str": "280328916", "from_user_name": "Get More Autos", "geo": null, "id": 148839757437349900, "id_str": "148839757437349888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1553370016/1w_640_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553370016/1w_640_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "FUN FACT: \\nThe first automobile law was passed by the state of CT in 1901. The speed limit was set at 12 miles per hour", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:57 +0000", "from_user": "JustinSteeele", "from_user_id": 343582072, "from_user_id_str": "343582072", "from_user_name": "Justin Steele", "geo": null, "id": 148839756640423940, "id_str": "148839756640423936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674496663/IMG_2364_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674496663/IMG_2364_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@LindsaySaker aww poo that sounds like so much fun!!!!", "to_user": "LindsaySaker", "to_user_id": 290111104, "to_user_id_str": "290111104", "to_user_name": "Lindsay Saker"}, +{"created_at": "Mon, 19 Dec 2011 18:58:57 +0000", "from_user": "DaeDaeC9M", "from_user_id": 52386447, "from_user_id_str": "52386447", "from_user_name": "BAIT \\uE522 BAIT \\uE019 BAIT \\uE054", "geo": null, "id": 148839756330057730, "id_str": "148839756330057728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699506208/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699506208/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @_AshinKusherrr: Im quite an ignorant (insert racial slur) in public too. Thats how I have fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:57 +0000", "from_user": "TushAgbero", "from_user_id": 101958367, "from_user_id_str": "101958367", "from_user_name": "\\u2022S\\u2022O\\u2022Y\\u2022E\\u2022M\\u2022M\\u2022\\u2122", "geo": null, "id": 148839755721871360, "id_str": "148839755721871360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702529760/oyedepo_slap_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702529760/oyedepo_slap_normal.jpg", "source": "<a href="http://www.twitter.com" rel="nofollow">\\u0422witter for i\\u03A1hone</a>", "text": "RT @Switestberry: LoOOOOL! U must be fun den! RT @TushAgbero: She mentions me ONLY wen shez bored.. I guess I'm JUST a cure for boredom", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:57 +0000", "from_user": "LucieDrabinova", "from_user_id": 62347876, "from_user_id_str": "62347876", "from_user_name": "Lucie Drabinova", "geo": null, "id": 148839755361157120, "id_str": "148839755361157123", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1587040552/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587040552/image_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Go to Google and type: let it snow :-) so much fun :-) #smallThings #happy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:57 +0000", "from_user": "GThreads", "from_user_id": 153794751, "from_user_id_str": "153794751", "from_user_name": "Golden Threads", "geo": null, "id": 148839754866237440, "id_str": "148839754866237440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687178968/GThreads_logoETSY_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687178968/GThreads_logoETSY_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @Best_Of_Etsy: RT @customknitting2 Still time to knit up some gifts... check our knitting patterns http://t.co/s2gu11TJ #handmadebot #etsy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:57 +0000", "from_user": "chrisvandergaag", "from_user_id": 15699279, "from_user_id_str": "15699279", "from_user_name": "Side Mission Chris", "geo": +{"coordinates": [49.0308,-123.0703], "type": "Point"}, "id": 148839754522308600, "id_str": "148839754522308608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1641584480/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641584480/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Fun fact: it's 'il', not 2. As in \"the illest muthafuckin' dictata in the Pacific Rim, yo.\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:57 +0000", "from_user": "Jeanette_Lo", "from_user_id": 126495293, "from_user_id_str": "126495293", "from_user_name": "Jeanette Lopez", "geo": null, "id": 148839754169987070, "id_str": "148839754169987073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1673933834/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673933834/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "How fun was it seeing my favorite red-headed bombshell this weekend @FakeItFlawless :) You are a riot love!", "to_user": "FakeItFlawless", "to_user_id": 223642730, "to_user_id_str": "223642730", "to_user_name": "Faking it Flawless ", "in_reply_to_status_id": 148838592230334460, "in_reply_to_status_id_str": "148838592230334464"}, +{"created_at": "Mon, 19 Dec 2011 18:58:56 +0000", "from_user": "bbbreanna", "from_user_id": 321811341, "from_user_id_str": "321811341", "from_user_name": "breanna lopez", "geo": null, "id": 148839751934410750, "id_str": "148839751934410753", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697195449/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697195449/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "This guys telling me stories about how English was fun last year. I've never seen this kid in my life?!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:56 +0000", "from_user": "Warsameee", "from_user_id": 205562953, "from_user_id_str": "205562953", "from_user_name": "Dougley The Dragon", "geo": null, "id": 148839751561117700, "id_str": "148839751561117697", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691597583/King-20110725-00117_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691597583/King-20110725-00117_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @kaylovee_xo: i wish it was socially acceptable to fart in public and not get made fun of lol.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:56 +0000", "from_user": "LostN_TheMoment", "from_user_id": 223677518, "from_user_id_str": "223677518", "from_user_name": "malik brown", "geo": null, "id": 148839751384961020, "id_str": "148839751384961024", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700219701/IMG00201-20111212-2151_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700219701/IMG00201-20111212-2151_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@_KidNextDoor yay fun", "to_user": "_KidNextDoor", "to_user_id": 305253725, "to_user_id_str": "305253725", "to_user_name": "Serena.", "in_reply_to_status_id": 148839104375832580, "in_reply_to_status_id_str": "148839104375832576"}, +{"created_at": "Mon, 19 Dec 2011 18:58:56 +0000", "from_user": "CandaceJee", "from_user_id": 27363865, "from_user_id_str": "27363865", "from_user_name": "Candace", "geo": null, "id": 148839751246553100, "id_str": "148839751246553088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1653995914/Snapshot_20111122_1_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653995914/Snapshot_20111122_1_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@craysfa lmaooo, I'm guessing the appt wasn't fun?", "to_user": "craysfa", "to_user_id": 324121073, "to_user_id_str": "324121073", "to_user_name": "Chelsea Raymond", "in_reply_to_status_id": 148837958206763000, "in_reply_to_status_id_str": "148837958206763008"}, +{"created_at": "Mon, 19 Dec 2011 18:58:56 +0000", "from_user": "MickieRabil9045", "from_user_id": 439451076, "from_user_id_str": "439451076", "from_user_name": "Mickie Rabil", "geo": null, "id": 148839751225589760, "id_str": "148839751225589760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@concertchk 104 degrees outside?!? This calls for a Starbucks doubleshot good thing I have a $500 gift card http://t.co/CBiQtHo4", "to_user": "concertchk", "to_user_id": 269518169, "to_user_id_str": "269518169", "to_user_name": "Marjeana ", "in_reply_to_status_id": 148838961933062140, "in_reply_to_status_id_str": "148838961933062144"}, +{"created_at": "Mon, 19 Dec 2011 18:58:56 +0000", "from_user": "_uhmitsme", "from_user_id": 307155751, "from_user_id_str": "307155751", "from_user_name": "Kayla", "geo": null, "id": 148839750671941630, "id_str": "148839750671941632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701035894/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701035894/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@AEsp69 sounds fun ^__^", "to_user": "AEsp69", "to_user_id": 347097129, "to_user_id_str": "347097129", "to_user_name": "Amber Espinoza\\u2122\\t", "in_reply_to_status_id": 148839551551537150, "in_reply_to_status_id_str": "148839551551537152"}, +{"created_at": "Mon, 19 Dec 2011 18:58:56 +0000", "from_user": "zadreeko510", "from_user_id": 408202348, "from_user_id_str": "408202348", "from_user_name": "Zadran Ahmadzai", "geo": null, "id": 148839749040349200, "id_str": "148839749040349185", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1638231330/zandar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638231330/zandar_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "@on_quack haha eww come on! There has to be one fun thing. I wanna do walnut creek but thats still too much driving for me lol", "to_user": "on_quack", "to_user_id": 29626211, "to_user_id_str": "29626211", "to_user_name": "Hilay "}, +{"created_at": "Mon, 19 Dec 2011 18:58:56 +0000", "from_user": "tkilbournn", "from_user_id": 355984458, "from_user_id_str": "355984458", "from_user_name": "Tori Kilbourn", "geo": null, "id": 148839748566392830, "id_str": "148839748566392833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1641182286/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641182286/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Shopping later with dad this should be fun ha!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:55 +0000", "from_user": "kevbattleblood", "from_user_id": 128927626, "from_user_id_str": "128927626", "from_user_name": "Kevin Battleblood", "geo": null, "id": 148839747941445630, "id_str": "148839747941445632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1655796429/887fc42f-7da7-4b04-a796-e2247cc20e20_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655796429/887fc42f-7da7-4b04-a796-e2247cc20e20_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@cardmonglobal Loving the Billboard's Rewards system, and that one instance with 102 mobs was so much fun to play solo, though exhausting!", "to_user": "cardmonglobal", "to_user_id": 202976040, "to_user_id_str": "202976040", "to_user_name": "CardMon Hero Global"}, +{"created_at": "Mon, 19 Dec 2011 18:58:55 +0000", "from_user": "SonyChai", "from_user_id": 257807512, "from_user_id_str": "257807512", "from_user_name": "Sony Chai", "geo": null, "id": 148839746569900030, "id_str": "148839746569900033", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1260842215/IMG00020-20110227-2242_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1260842215/IMG00020-20110227-2242_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @my_supersoccer: Yang udah maen, mana suaranya? Yang belum, sekali lagi, ini link-nya: http://t.co/EH2eaaHh #SuperSoccerFantasyFootball", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:55 +0000", "from_user": "PROV31DeAndrea", "from_user_id": 25495329, "from_user_id_str": "25495329", "from_user_name": "De'Andrea", "geo": null, "id": 148839746414723070, "id_str": "148839746414723072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682296665/bday2011_crop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682296665/bday2011_crop_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "@DallasInThaH I'm talking about your previous tweet. \"It was fun while it lasted.\"", "to_user": "DallasInThaH", "to_user_id": 170135740, "to_user_id_str": "170135740", "to_user_name": "jason", "in_reply_to_status_id": 148834811887357950, "in_reply_to_status_id_str": "148834811887357952"}, +{"created_at": "Mon, 19 Dec 2011 18:58:55 +0000", "from_user": "Brinn688", "from_user_id": 366693153, "from_user_id_str": "366693153", "from_user_name": "Brinneth ", "geo": null, "id": 148839745835905020, "id_str": "148839745835905026", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686984645/IMG-20111209-00084_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686984645/IMG-20111209-00084_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Thatswhathesaid I am just fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:55 +0000", "from_user": "majomerlano", "from_user_id": 184008506, "from_user_id_str": "184008506", "from_user_name": "M\\u03B1jo\\u2665 \\u32E1", "geo": null, "id": 148839745429057540, "id_str": "148839745429057537", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688252100/100_006u0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688252100/100_006u0_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @britneyspears: Still glowing! About to jump on a plane to Planet Hollywood in Vegas. Throwing a Bday Party for Jason at Chateau Night Club. So fun. Xxoo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:55 +0000", "from_user": "aaronmatcham_", "from_user_id": 293503882, "from_user_id_str": "293503882", "from_user_name": "Aaron James", "geo": +{"coordinates": [51.352,-0.1332], "type": "Point"}, "id": 148839745047367680, "id_str": "148839745047367680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702617875/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702617875/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Last day off before the FUN begins :-/ 5 days of work!!! Let's get ready to rumble...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:55 +0000", "from_user": "AD_NICOLE", "from_user_id": 376928366, "from_user_id_str": "376928366", "from_user_name": "AdNicole", "geo": null, "id": 148839744690855940, "id_str": "148839744690855937", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1625391407/k1ivcAjz_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1625391407/k1ivcAjz_normal", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @IamRicoLove: Pretty girls have the most fun..... #TTLO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:55 +0000", "from_user": "Smexy_Vampire_", "from_user_id": 364453337, "from_user_id_str": "364453337", "from_user_name": "FireBlaster Raoby`n", "geo": null, "id": 148839744414023680, "id_str": "148839744414023681", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691675256/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691675256/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@RedRobinWayne Belive what you wanna belive bird boy.-turns around- Even Batmans more nice and fun than you-flies up with a red light trail-", "to_user": "RedRobinWayne", "to_user_id": 363927992, "to_user_id_str": "363927992", "to_user_name": "Timothy Wayne", "in_reply_to_status_id": 148839348299767800, "in_reply_to_status_id_str": "148839348299767809"}, +{"created_at": "Mon, 19 Dec 2011 18:58:54 +0000", "from_user": "xHeyItsAlly", "from_user_id": 285817340, "from_user_id_str": "285817340", "from_user_name": "Ally Lucas", "geo": null, "id": 148839743281573900, "id_str": "148839743281573888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695473670/Ally__Maddy__Meagan_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695473670/Ally__Maddy__Meagan_pic_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Shopping groups! Fun! Not! :(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:54 +0000", "from_user": "IamTeslim", "from_user_id": 230844410, "from_user_id_str": "230844410", "from_user_name": "AminuTeslim *Sleem9*", "geo": null, "id": 148839742790840320, "id_str": "148839742790840321", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701597792/331685926_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701597792/331685926_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Bcuz e neva slap n kick yu inside guta b4 abi. Hez fun tho RT @michelleogo: Y'all shuld plz Ff @TWEETORACLE! ... http://t.co/1BMGmgfT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:54 +0000", "from_user": "Guccii_2", "from_user_id": 411772951, "from_user_id_str": "411772951", "from_user_name": "Lauren main", "geo": null, "id": 148839742723723260, "id_str": "148839742723723264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1642351438/310733_10150302602448240_658753239_8100141_1627402820_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642351438/310733_10150302602448240_658753239_8100141_1627402820_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@unofficialharpz might not be yet, then again its not a fun night if im not collapsed on the stairs wheeeeey!", "to_user": "unofficialharpz", "to_user_id": 107034156, "to_user_id_str": "107034156", "to_user_name": "James Harper \\u2603", "in_reply_to_status_id": 148839232801214460, "in_reply_to_status_id_str": "148839232801214464"}, +{"created_at": "Mon, 19 Dec 2011 18:58:54 +0000", "from_user": "amy_bolen", "from_user_id": 352414897, "from_user_id_str": "352414897", "from_user_name": "Amy Katelyn Bolen", "geo": null, "id": 148839741662564350, "id_str": "148839741662564352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682295094/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682295094/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Dude we're havin fun!! We're on an adventure!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:54 +0000", "from_user": "Vale8396", "from_user_id": 123905822, "from_user_id_str": "123905822", "from_user_name": "Vale*", "geo": null, "id": 148839741503184900, "id_str": "148839741503184897", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1637266143/vale_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637266143/vale_1_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "RT @onedirection: Include some fun messages to the boys (aswell as the # and seat info) they are looking at them!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:54 +0000", "from_user": "Cliffrost", "from_user_id": 250517677, "from_user_id_str": "250517677", "from_user_name": "Bad Azz Frost", "geo": null, "id": 148839741150871550, "id_str": "148839741150871552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697810163/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697810163/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@_JaRielise homework is fun. Just need help wit it", "to_user": "_JaRielise", "to_user_id": 373449198, "to_user_id_str": "373449198", "to_user_name": "JaRieliSeluvzTyShawn", "in_reply_to_status_id": 148839194834374660, "in_reply_to_status_id_str": "148839194834374656"}, +{"created_at": "Mon, 19 Dec 2011 18:58:54 +0000", "from_user": "vesde", "from_user_id": 94478533, "from_user_id_str": "94478533", "from_user_name": "Josh O'Brien", "geo": null, "id": 148839740811120640, "id_str": "148839740811120640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1616019258/pretty_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616019258/pretty_normal.PNG", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @MODSUN: Dude, my life is so fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:54 +0000", "from_user": "RasmussenPoll", "from_user_id": 19553409, "from_user_id_str": "19553409", "from_user_name": "Scott Rasmussen", "geo": null, "id": 148839740681097200, "id_str": "148839740681097217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/730492124/Scott_Twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/730492124/Scott_Twitter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "39% see holiday gift shopping as fun experience, 38% consider it an unpleasant chore... http://t.co/Xh8ESdmP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:54 +0000", "from_user": "BakedZAY_Tee", "from_user_id": 171634172, "from_user_id_str": "171634172", "from_user_name": "DOPE_deMeanor\\u2122", "geo": null, "id": 148839740186165250, "id_str": "148839740186165248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701304126/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701304126/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @Beautiful_JoJo1: Soo Wat We Get Drunk, Soo Wat We Smoke Weed, We're Just Havinq Fun, We Dnt Care Who Sees! -Young, Wild &'d Free!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:53 +0000", "from_user": "BwareofmyMeow", "from_user_id": 301630421, "from_user_id_str": "301630421", "from_user_name": "Olivia Amir~", "geo": null, "id": 148839738621693950, "id_str": "148839738621693953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702577059/BwareofmyMeow_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702577059/BwareofmyMeow_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@BirdyB1 lol right.. Have fun for us.! \\uD83D\\uDE1A", "to_user": "BirdyB1", "to_user_id": 123378348, "to_user_id_str": "123378348", "to_user_name": "Renita", "in_reply_to_status_id": 148839525458771970, "in_reply_to_status_id_str": "148839525458771968"}, +{"created_at": "Mon, 19 Dec 2011 18:58:53 +0000", "from_user": "baroo2_", "from_user_id": 391205298, "from_user_id_str": "391205298", "from_user_name": " \\u00DFara\\u00E2 \\u00DFint\\u00C2 \\u2665", "geo": null, "id": 148839736088346620, "id_str": "148839736088346624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698328117/IMG-20111217-WA019_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698328117/IMG-20111217-WA019_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Yestardy amazing day @Almseera I have to much fun there with my family \\u2665\\u2122", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:52 +0000", "from_user": "Romanuva", "from_user_id": 266332563, "from_user_id_str": "266332563", "from_user_name": "Ryan Watkins", "geo": null, "id": 148839735358529540, "id_str": "148839735358529536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://fun.ly" rel="nofollow">fun.ly</a>", "text": "Mitt Romney, establishment candidate http://t.co/9mHC7gjW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:52 +0000", "from_user": "_SwallowMyBirds", "from_user_id": 324663631, "from_user_id_str": "324663631", "from_user_name": "&u canEAT'myTWEET ", "geo": null, "id": 148839735102685200, "id_str": "148839735102685184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701281079/PhotoChooser-791e0970-caf5-4d74-a44a-e702015c5609_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701281079/PhotoChooser-791e0970-caf5-4d74-a44a-e702015c5609_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Can't for get g'killb- rip we use to have fun at Ryan house", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:52 +0000", "from_user": "StaggaSays", "from_user_id": 40018680, "from_user_id_str": "40018680", "from_user_name": "Ralph Williams III ", "geo": null, "id": 148839735069130750, "id_str": "148839735069130752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696357424/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696357424/profile_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "Its all fun games n laughter on the table til the bill comes n niggas act like someone just died.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:52 +0000", "from_user": "ShadBoi_1Da", "from_user_id": 368701289, "from_user_id_str": "368701289", "from_user_name": "Rashad Williams", "geo": null, "id": 148839733978607600, "id_str": "148839733978607617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1654864737/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654864737/image_normal.jpg", "source": "<a href="http://www.tweet-r.com" rel="nofollow">Tweetr</a>", "text": "RT @Thugniificent: If small girls are fun sized, are fat chicks king sized?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:52 +0000", "from_user": "GarrettKlingel", "from_user_id": 164729664, "from_user_id_str": "164729664", "from_user_name": "Garrett Klingel", "geo": null, "id": 148839733890523140, "id_str": "148839733890523138", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700377917/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700377917/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@RaQueLHelena86 hahahah just playin. Have fun today. Miss you.", "to_user": "RaQueLHelena86", "to_user_id": 197892768, "to_user_id_str": "197892768", "to_user_name": "ShELL\\u2764\\u2764", "in_reply_to_status_id": 148839170654212100, "in_reply_to_status_id_str": "148839170654212096"}, +{"created_at": "Mon, 19 Dec 2011 18:58:52 +0000", "from_user": "chaotic_ali", "from_user_id": 187696961, "from_user_id_str": "187696961", "from_user_name": "chaotic ali", "geo": null, "id": 148839733781471230, "id_str": "148839733781471232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698049035/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698049035/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I love how everyone is poking fun at @ladygaga these days!!!\\n#GagasPassword BritneySpearsIsTheQueenOfPop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:52 +0000", "from_user": "MarticaHolmes", "from_user_id": 331975246, "from_user_id_str": "331975246", "from_user_name": "Martha Holmes", "geo": null, "id": 148839733395599360, "id_str": "148839733395599360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1433098919/c1_year3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1433098919/c1_year3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "About to be a panelist #FocusST. Wow great fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:52 +0000", "from_user": "PiCassieO", "from_user_id": 21362577, "from_user_id_str": "21362577", "from_user_name": "Beth Stafford", "geo": null, "id": 148839732456062980, "id_str": "148839732456062976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/91321072/beth_stafford_001_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/91321072/beth_stafford_001_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Fun shoes! \"Line Dance\" Pro-Keds Royal Hi by PiCassieO Pro Keds Hi-top Sneaker from http://t.co/OPjXPDmW http://t.co/U0DaXOwj via @addthis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:52 +0000", "from_user": "OMGHeisperfect", "from_user_id": 172005029, "from_user_id_str": "172005029", "from_user_name": "BelieberL.Monster", "geo": null, "id": 148839732296691700, "id_str": "148839732296691712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677733013/386001_2274338537427_1217585362_31958135_498515950_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677733013/386001_2274338537427_1217585362_31958135_498515950_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @imSerayBelieber: If you cant laugh at yourself you cant have fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:52 +0000", "from_user": "B_Lasha90", "from_user_id": 247631200, "from_user_id_str": "247631200", "from_user_name": "Bernita Williams", "geo": null, "id": 148839732149878800, "id_str": "148839732149878785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1678346735/eLWnpfjA_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678346735/eLWnpfjA_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@daZZliNgIrL_09 Girl we be having fun together he always keeping me active.. we just ready for that baby to.come", "to_user": "daZZliNgIrL_09", "to_user_id": 162868720, "to_user_id_str": "162868720", "to_user_name": "Tyena Smith", "in_reply_to_status_id": 148835550814679040, "in_reply_to_status_id_str": "148835550814679041"}, +{"created_at": "Mon, 19 Dec 2011 18:58:51 +0000", "from_user": "sassy24", "from_user_id": 21176132, "from_user_id_str": "21176132", "from_user_name": "Thelma Azolukwam ", "geo": null, "id": 148839731206176770, "id_str": "148839731206176770", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/252152955/flow_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/252152955/flow_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@BrianBrock1 I'm sure we'll have fun stilll Looking forward to all of us hanging out over Christmas... :-) Will call u later x", "to_user": "BrianBrock1", "to_user_id": 33992058, "to_user_id_str": "33992058", "to_user_name": "Brian Brock"}, +{"created_at": "Mon, 19 Dec 2011 18:58:51 +0000", "from_user": "KimberlyCaseyy", "from_user_id": 157782730, "from_user_id_str": "157782730", "from_user_name": "Kimberly Pena", "geo": null, "id": 148839730098864130, "id_str": "148839730098864129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1674744049/21MiqQ7i_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674744049/21MiqQ7i_normal", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I only get on Facebook to like a few statuses, see what I've missed and that's about it. Facebook isn't fun at all.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:51 +0000", "from_user": "LaurenJLSOritse", "from_user_id": 177570682, "from_user_id_str": "177570682", "from_user_name": "Lauren Gardner", "geo": null, "id": 148839730006593540, "id_str": "148839730006593537", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1683612859/me_danielle_olly_murs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683612859/me_danielle_olly_murs_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@MarcuscollinsUK hope you have fun! Miss you! When will I see u again?! :( please follow me xxx", "to_user": "MarcuscollinsUK", "to_user_id": 370448015, "to_user_id_str": "370448015", "to_user_name": "Marcus Collins", "in_reply_to_status_id": 148839438309527550, "in_reply_to_status_id_str": "148839438309527553"}, +{"created_at": "Mon, 19 Dec 2011 18:58:51 +0000", "from_user": "jynacide", "from_user_id": 18444936, "from_user_id_str": "18444936", "from_user_name": "jyn radakovits", "geo": null, "id": 148839729272594430, "id_str": "148839729272594433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1173653376/c832fdb4-f899-4431-81ca-5d853dcab56c_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1173653376/c832fdb4-f899-4431-81ca-5d853dcab56c_normal.png", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@NinjaKnees22 omg.sooo under rated.I see em all the time in chicago.amazing music,amazing guys that are so fun to hang with.one of my favs", "to_user": "NinjaKnees22", "to_user_id": 27199288, "to_user_id_str": "27199288", "to_user_name": "Hannah Shobaky", "in_reply_to_status_id": 148836823177760770, "in_reply_to_status_id_str": "148836823177760768"}, +{"created_at": "Mon, 19 Dec 2011 18:58:50 +0000", "from_user": "Selenators2011", "from_user_id": 401989154, "from_user_id_str": "401989154", "from_user_name": "Selena Gomez Fan ", "geo": null, "id": 148839727213195260, "id_str": "148839727213195264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699629645/469437191_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699629645/469437191_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@Selenators2011 haha idk it's fun :P <3", "to_user": "Selenators2011", "to_user_id": 401989154, "to_user_id_str": "401989154", "to_user_name": "Selena Gomez Fan ", "in_reply_to_status_id": 148839593213562880, "in_reply_to_status_id_str": "148839593213562880"}, +{"created_at": "Mon, 19 Dec 2011 18:58:50 +0000", "from_user": "Savannah059844", "from_user_id": 441023001, "from_user_id_str": "441023001", "from_user_name": "Savannah", "geo": null, "id": 148839726818930700, "id_str": "148839726818930688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702471208/xJoJo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702471208/xJoJo_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Meanie Genie: Little Genie has made Ali the same size as she is! It\\u2019s so much fun . . . until Genie\\u2019s hourglass ... http://t.co/ZUR6DgC2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:50 +0000", "from_user": "RatedR_CEO", "from_user_id": 363600649, "from_user_id_str": "363600649", "from_user_name": "416Uzi", "geo": null, "id": 148839726378520580, "id_str": "148839726378520576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1554574901/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554574901/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @RosaAcosta: Had fun in Toronto like always! S/o to @creamworldmag and @harveystripes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:50 +0000", "from_user": "Im_ALL_You_CEE", "from_user_id": 318087390, "from_user_id_str": "318087390", "from_user_name": "Yours Truly. . . ", "geo": null, "id": 148839725199921150, "id_str": "148839725199921152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697054289/K1cnAIcm_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697054289/K1cnAIcm_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Allie_IsBetter: @Im_ALL_You_CEE its fun to be by yo self so yu can do wtf yu wanna=)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:50 +0000", "from_user": "sarah___baby", "from_user_id": 300684256, "from_user_id_str": "300684256", "from_user_name": "Sarah Stocker", "geo": null, "id": 148839724600147970, "id_str": "148839724600147968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1682419545/387646_10150416846316033_624526032_8644222_1868962494_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682419545/387646_10150416846316033_624526032_8644222_1868962494_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@DickemDownnn haha have fun playing it :)", "to_user": "DickemDownnn", "to_user_id": 52472337, "to_user_id_str": "52472337", "to_user_name": "Derek Brown", "in_reply_to_status_id": 148835866574471170, "in_reply_to_status_id_str": "148835866574471168"}, +{"created_at": "Mon, 19 Dec 2011 18:58:50 +0000", "from_user": "kc8hgg", "from_user_id": 56675565, "from_user_id_str": "56675565", "from_user_name": "Samuel Russell", "geo": null, "id": 148839724000354300, "id_str": "148839724000354304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1521629409/Russell_samuel_00406775_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1521629409/Russell_samuel_00406775_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Mid-December-Michigan golf! 9 holes of fun. Merry Christmas Michigan! #puremichigan", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:49 +0000", "from_user": "UaintFCKINw_ASH", "from_user_id": 231876067, "from_user_id_str": "231876067", "from_user_name": "Ashley GivesNOfcks", "geo": null, "id": 148839722024841200, "id_str": "148839722024841216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680027254/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680027254/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I need to be tryin to price my books for next semester. Spending money on books...YAY HOW FUN -_-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:49 +0000", "from_user": "JizzleMarley_wL", "from_user_id": 99025603, "from_user_id_str": "99025603", "from_user_name": "Jizzle Man Montana", "geo": null, "id": 148839722003861500, "id_str": "148839722003861504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699680541/N3kczaIP_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699680541/N3kczaIP_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@THEREALKINGG aight yall niggaz have fun and be safe", "to_user": "THEREALKINGG", "to_user_id": 47756325, "to_user_id_str": "47756325", "to_user_name": "KINGG ", "in_reply_to_status_id": 148839154053156860, "in_reply_to_status_id_str": "148839154053156865"}, +{"created_at": "Mon, 19 Dec 2011 18:58:49 +0000", "from_user": "GalPalStrong", "from_user_id": 54455933, "from_user_id_str": "54455933", "from_user_name": "Jaime Strong", "geo": null, "id": 148839721659940860, "id_str": "148839721659940864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304839721/Dock_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/304839721/Dock_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@RICKatFOX Costa Mesa FD is delivering gifts for Santa Letters on Friday Dec 23rd at 8am! Fly by to see the fun!", "to_user": "RICKatFOX", "to_user_id": 37226256, "to_user_id_str": "37226256", "to_user_name": "Rick Dickert"}, +{"created_at": "Mon, 19 Dec 2011 18:58:49 +0000", "from_user": "Ljay7M", "from_user_id": 25114118, "from_user_id_str": "25114118", "from_user_name": "El F*cking Capitan", "geo": null, "id": 148839721412460540, "id_str": "148839721412460544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689991549/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689991549/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@jasyno162 hahaha that Shit brings me back 2 when we used 2 do house parties. They were the most fun! fuck a club I wanna go 2 a #houseparty", "to_user": "jasyno162", "to_user_id": 369186510, "to_user_id_str": "369186510", "to_user_name": "jasyno", "in_reply_to_status_id": 148832448032149500, "in_reply_to_status_id_str": "148832448032149504"}, +{"created_at": "Mon, 19 Dec 2011 18:58:49 +0000", "from_user": "Cbannister32", "from_user_id": 247379145, "from_user_id_str": "247379145", "from_user_name": "chelsey bannister \\uF0FC", "geo": null, "id": 148839721198555140, "id_str": "148839721198555136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695971893/IMG950358_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695971893/IMG950358_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@SarahB_thePYT lol ok! This shall be fun", "to_user": "SarahB_thePYT", "to_user_id": 141770967, "to_user_id_str": "141770967", "to_user_name": "\\u265BBruno\\u265B", "in_reply_to_status_id": 148839625513893900, "in_reply_to_status_id_str": "148839625513893888"}, +{"created_at": "Mon, 19 Dec 2011 18:58:49 +0000", "from_user": "Cremzinc", "from_user_id": 20544061, "from_user_id_str": "20544061", "from_user_name": "EC", "geo": null, "id": 148839720288403460, "id_str": "148839720288403456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/268797470/cremzinc_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/268797470/cremzinc_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Gorgeous Babes Have Fun in the Snow: Stunning and busty UK girls play with snowballs and show boobs http://t.co/wH45A9XX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:49 +0000", "from_user": "maddieebabiee", "from_user_id": 319708082, "from_user_id_str": "319708082", "from_user_name": "maddiee turner", "geo": null, "id": 148839719919288320, "id_str": "148839719919288320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1667299803/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667299803/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "shopping was supposed to be fun.. not a \"I wanna kill everyone I see\" kinna thing.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:49 +0000", "from_user": "JimRoton", "from_user_id": 31475986, "from_user_id_str": "31475986", "from_user_name": "Jim Roton", "geo": null, "id": 148839719856377860, "id_str": "148839719856377856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627895362/windows.7.profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627895362/windows.7.profile_normal.jpg", "source": "<a href="http://www.metrotwit.com/" rel="nofollow">MetroTwit</a>", "text": "RT @BenThePCGuy: Check out the entire list of crazy awesome emoticons that are hiding on your #windowsphone : http://t.co/BbPRHEG0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:49 +0000", "from_user": "SuchAn_Oreo", "from_user_id": 93251049, "from_user_id_str": "93251049", "from_user_name": "\\uE414 -- so gonee \\uE04B", "geo": null, "id": 148839719399211000, "id_str": "148839719399211008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702168696/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702168696/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TheFireSigns: #Leo here to learn what they want, how to have fun and be happy. And how to make it all happen.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:48 +0000", "from_user": "lilytheKILL21", "from_user_id": 54314924, "from_user_id_str": "54314924", "from_user_name": "lily pichardo", "geo": null, "id": 148839718501629950, "id_str": "148839718501629953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1661677584/330534584_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661677584/330534584_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for iPhone</a>", "text": "Someone full of fun do me till I'm well done. Little bo peep coming' from my stun gun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:48 +0000", "from_user": "emhahne", "from_user_id": 365676743, "from_user_id_str": "365676743", "from_user_name": "emelie hahne", "geo": null, "id": 148839718208028670, "id_str": "148839718208028672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1622241825/20111102117__640x480__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622241825/20111102117__640x480__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "playing the vampire diaries game on facebook ,, hahah it really fun cant stop playing;))", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:48 +0000", "from_user": "AK47aaryn", "from_user_id": 58711429, "from_user_id_str": "58711429", "from_user_name": "Aaryn Christine \\uE12F", "geo": null, "id": 148839718174461950, "id_str": "148839718174461953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1666804610/AK47aaryn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666804610/AK47aaryn_normal.jpg", "source": "<a href="http://tweetlogix.com" rel="nofollow">Tweetlogix</a>", "text": "@TammyVogue it was fun, just really hot and ratchet.", "to_user": "TammyVogue", "to_user_id": 351186527, "to_user_id_str": "351186527", "to_user_name": "Tamura Davis", "in_reply_to_status_id": 148839490021097470, "in_reply_to_status_id_str": "148839490021097472"}, +{"created_at": "Mon, 19 Dec 2011 18:58:48 +0000", "from_user": "Rainabo7", "from_user_id": 392215494, "from_user_id_str": "392215494", "from_user_name": "Raina Neal", "geo": null, "id": 148839716169596930, "id_str": "148839716169596928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675167175/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675167175/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#thatsweetmoment when a guy texts you about his ex talking about how amazing she is and all the fun they had together", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:48 +0000", "from_user": "SheInked_TSOD", "from_user_id": 50107140, "from_user_id_str": "50107140", "from_user_name": "Shameka \\uE235\\uE235\\uE214", "geo": null, "id": 148839715896963070, "id_str": "148839715896963073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1663644331/slide_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663644331/slide_normal.jpg", "source": "<a href="http://www.handmark.com" rel="nofollow">TweetCaster for iOS</a>", "text": "\"@HighAssTee: High School Basketball was fun af\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:47 +0000", "from_user": "erreaku", "from_user_id": 254955929, "from_user_id_str": "254955929", "from_user_name": "Raquel Echeverr\\u00EDa", "geo": null, "id": 148839713267134460, "id_str": "148839713267134464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1250351832/Raquel_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1250351832/Raquel_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Saatchi Bangkok A space that inspires, is fun to come to everyday, and that doesn't take itself too seriously http://t.co/eDFSJR4l", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:47 +0000", "from_user": "TiniLae", "from_user_id": 131296606, "from_user_id_str": "131296606", "from_user_name": "LiL EL", "geo": null, "id": 148839712143052800, "id_str": "148839712143052802", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691988675/DMPBmgpP_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691988675/DMPBmgpP_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "It isn't as much fun watching Phineas and Ferb without my dad. Its one of his favorite shows.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:47 +0000", "from_user": "KaYBello_11", "from_user_id": 90048726, "from_user_id_str": "90048726", "from_user_name": "KeHanna Thompson", "geo": null, "id": 148839711513907200, "id_str": "148839711513907200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1555524581/matthew_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555524581/matthew_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "ok ,, another person added to the fun !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:47 +0000", "from_user": "__jkatrina", "from_user_id": 331098731, "from_user_id_str": "331098731", "from_user_name": "jg", "geo": null, "id": 148839711216111600, "id_str": "148839711216111616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1648801265/Screen_20111119_114720_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648801265/Screen_20111119_114720_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "THE MALLS SMELL. HAVE FUN SHOPPING", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:47 +0000", "from_user": "Luvly_Gemini", "from_user_id": 63858245, "from_user_id_str": "63858245", "from_user_name": "\\uE32DShay\\uE32D", "geo": null, "id": 148839710914117630, "id_str": "148839710914117632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1657733241/Luvly_Gemini_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657733241/Luvly_Gemini_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @Love_dreads: So lastnight was fun as shit aint been out n long time and we was all on a level!!!! @Luvly_Gemini @lil_miss_ann", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:46 +0000", "from_user": "Troy_sARGEanT", "from_user_id": 343549511, "from_user_id_str": "343549511", "from_user_name": "Troy Sargeant", "geo": null, "id": 148839709991370750, "id_str": "148839709991370752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674418797/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674418797/image_normal.jpg", "source": "<a href="http://www.gourmetpixel.co.uk" rel="nofollow">Christmas!! iPhone App</a>", "text": "6 days till Christmas!!! Sent from my free Christmas app - http://t.co/5XMAzBb0 #ChristmasApp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:46 +0000", "from_user": "pampam0710", "from_user_id": 286112742, "from_user_id_str": "286112742", "from_user_name": "wendy P", "geo": null, "id": 148839709794246660, "id_str": "148839709794246658", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1652079115/IMG_2742_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652079115/IMG_2742_normal.JPG", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@scarlettgrace99 @n1na__p @giryak nah,we don't have fun without ya A :)", "to_user": "scarlettgrace99", "to_user_id": 239912642, "to_user_id_str": "239912642", "to_user_name": "a", "in_reply_to_status_id": 148838719976259600, "in_reply_to_status_id_str": "148838719976259585"}, +{"created_at": "Mon, 19 Dec 2011 18:58:46 +0000", "from_user": "THEREALTASTY", "from_user_id": 72941045, "from_user_id_str": "72941045", "from_user_name": "ASK ME", "geo": null, "id": 148839708821176320, "id_str": "148839708821176320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695291887/THEREALTASTY_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695291887/THEREALTASTY_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "So i know u be bored BB!!RT @BB_FIERCE: RT @IamRicoLove: Pretty girls have the most fun..... #TTLO!!!!!!!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:46 +0000", "from_user": "jess_whelan", "from_user_id": 190323503, "from_user_id_str": "190323503", "from_user_name": "\\u2661 Jessica Whelan \\u2661", "geo": null, "id": 148839706749186050, "id_str": "148839706749186048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1657685835/302129_255363974509928_100001089810583_688515_1033219962_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657685835/302129_255363974509928_100001089810583_688515_1033219962_n_normal.jpg", "source": "<a href="http://twuffer.com" rel="nofollow">Twuffer</a>", "text": "RT @girlposts: Life is too precious to worry about stupid things. Have fun and fall in love. Regret nothing and don\\u2019t let people bring you down.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:45 +0000", "from_user": "1DCarrotSwag", "from_user_id": 417921395, "from_user_id_str": "417921395", "from_user_name": "Bebs and Carrot ", "geo": null, "id": 148839706153594880, "id_str": "148839706153594880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1671957166/AfejUjUCAAE6z05_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671957166/AfejUjUCAAE6z05_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Still holding my hand. 'so, what's your name?' 'Faye' 'thats a pretty name. So faye, did you have fun on stage?' 'yes! It was amazing!' he", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:45 +0000", "from_user": "SteAdragna", "from_user_id": 378230885, "from_user_id_str": "378230885", "from_user_name": "Stefano", "geo": null, "id": 148839705528635400, "id_str": "148839705528635392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1666950081/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666950081/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Gorgeous_Barb your mom is pretty cool to hang out with. Don't worry next will have more fun.", "to_user": "Gorgeous_Barb", "to_user_id": 68858843, "to_user_id_str": "68858843", "to_user_name": "NAOMI", "in_reply_to_status_id": 148837925919010800, "in_reply_to_status_id_str": "148837925919010816"}, +{"created_at": "Mon, 19 Dec 2011 18:58:45 +0000", "from_user": "RickNwanso", "from_user_id": 333688223, "from_user_id_str": "333688223", "from_user_name": "Rick Nwanso", "geo": null, "id": 148839705339887600, "id_str": "148839705339887616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1690583461/331416396_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690583461/331416396_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @AllyRiri: LoL.. Thanks muchhh for 2day.. Had awesome fun..muah your welcome :)RT @RickNwanso: Yaaay!!! I'm ... http://t.co/qh1f4pr5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:45 +0000", "from_user": "aly72894", "from_user_id": 73401107, "from_user_id_str": "73401107", "from_user_name": "aly", "geo": null, "id": 148839704534585340, "id_str": "148839704534585346", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1677146231/ring_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677146231/ring_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @La_Wlooo: Teacher: \"Where's your book?!\" Student: \"At home.\" Teacher: \"What's it doing there?! Student: \"Having more fun than me.\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:45 +0000", "from_user": "This_ThatChick", "from_user_id": 250265064, "from_user_id_str": "250265064", "from_user_name": "Anjhane Aminah", "geo": null, "id": 148839704522010620, "id_str": "148839704522010626", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1644226741/new_avi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644226741/new_avi_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@_LilMissDejah For The Fun", "to_user": "_LilMissDejah", "to_user_id": 259416507, "to_user_id_str": "259416507", "to_user_name": "Light Bright Dejah", "in_reply_to_status_id": 148839408802594800, "in_reply_to_status_id_str": "148839408802594818"}, +{"created_at": "Mon, 19 Dec 2011 18:58:45 +0000", "from_user": "saslagle", "from_user_id": 23360446, "from_user_id_str": "23360446", "from_user_name": "Sarah Elaine", "geo": null, "id": 148839703574085630, "id_str": "148839703574085633", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/434530524/sarah3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/434530524/sarah3_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @mindykaling: For fun, and to remind ourselves that romance is alive, let's name great couples. I'll start: Amy Poehler and Will Arnett.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:44 +0000", "from_user": "FunOneStation", "from_user_id": 96987735, "from_user_id_str": "96987735", "from_user_name": "FunOneStation", "geo": null, "id": 148839702206758900, "id_str": "148839702206758912", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1393300986/tw_8937280_1307921756_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1393300986/tw_8937280_1307921756_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "M\\u00E1te r\\u00E1di devades\\u00E1tky? Tak se d\\u00EDvejte, tak jako ka\\u017Ed\\u00E9 pond\\u011Bl\\u00ED, i dnes na FUN 1 po 20:00 na \"Funny 90's\" :) http://t.co/mLX3f7jg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:44 +0000", "from_user": "valerieelston", "from_user_id": 16809329, "from_user_id_str": "16809329", "from_user_name": "Valerie Elston", "geo": null, "id": 148839701246263300, "id_str": "148839701246263296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1100619497/IMG_1613_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1100619497/IMG_1613_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @easyeatsmag: More great Gift GIveaway fun with @SoyJoyUS - enter today for your chance to win. http://t.co/LVUBSiqA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:44 +0000", "from_user": "brocklove", "from_user_id": 77910354, "from_user_id_str": "77910354", "from_user_name": "Brandon Lovelace", "geo": null, "id": 148839699698565120, "id_str": "148839699698565120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1126021451/45107_418393822123_611862123_4841439_660078_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1126021451/45107_418393822123_611862123_4841439_660078_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@NickMajors I was wearing those Toms today that you gave me... and Kem made fun of me.", "to_user": "NickMajors", "to_user_id": 205835075, "to_user_id_str": "205835075", "to_user_name": "Nick Majors"}, +{"created_at": "Mon, 19 Dec 2011 18:58:44 +0000", "from_user": "Miss_Montano", "from_user_id": 403595654, "from_user_id_str": "403595654", "from_user_name": "Raquel Montano", "geo": null, "id": 148839699664994300, "id_str": "148839699664994304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701694544/25XdJ65p_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701694544/25XdJ65p_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@maddymcgann @Aliyahh_Amiraa Its not fun. I'm hungry and there is nothing to eat in this house.", "to_user": "maddymcgann", "to_user_id": 344526357, "to_user_id_str": "344526357", "to_user_name": "Maddy McGann", "in_reply_to_status_id": 148838149156634620, "in_reply_to_status_id_str": "148838149156634624"}, +{"created_at": "Mon, 19 Dec 2011 18:58:44 +0000", "from_user": "Et_Ella", "from_user_id": 50754179, "from_user_id_str": "50754179", "from_user_name": "Ella H", "geo": null, "id": 148839698855497730, "id_str": "148839698855497729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1608952506/IMG_2725_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608952506/IMG_2725_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Merry Christmas everybody's having fun, look to the future now it's only just began...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:43 +0000", "from_user": "Britt_Brat41", "from_user_id": 256533372, "from_user_id_str": "256533372", "from_user_name": "*Brittany\\u2022Johnson\\u2122", "geo": null, "id": 148839698029219840, "id_str": "148839698029219840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1619847217/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619847217/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Jo_Summie: Had so much fun snorkling today with the team @MSmith_14 @Britt_Brat41 @KLong_10 @lanaabanaa @Sade_Means24 @GrannyPanther", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:43 +0000", "from_user": "Candi_Yamm", "from_user_id": 91650759, "from_user_id_str": "91650759", "from_user_name": "Tessica J .", "geo": null, "id": 148839697781760000, "id_str": "148839697781760000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690035343/331392392_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690035343/331392392_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Days like this I wish the mTA still made 1day metrocard fun passes ! ;(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:43 +0000", "from_user": "kathy_vang", "from_user_id": 94924068, "from_user_id_str": "94924068", "from_user_name": "kathyvang", "geo": null, "id": 148839697362333700, "id_str": "148839697362333696", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702095235/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702095235/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "being sick is not fun... :(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:43 +0000", "from_user": "Jsill92", "from_user_id": 428809044, "from_user_id_str": "428809044", "from_user_name": "Joshua Ryan Sill I", "geo": null, "id": 148839696674467840, "id_str": "148839696674467840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1675498679/K84jb642_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675498679/K84jb642_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@lailaannk hell yeah gonna be fun haha", "to_user": "lailaannk", "to_user_id": 245640418, "to_user_id_str": "245640418", "to_user_name": "Laila Keliani", "in_reply_to_status_id": 148837659266125820, "in_reply_to_status_id_str": "148837659266125825"}, +{"created_at": "Mon, 19 Dec 2011 18:58:43 +0000", "from_user": "daisyharriet91", "from_user_id": 337869902, "from_user_id_str": "337869902", "from_user_name": "oh hiyuh, i'm dais.", "geo": null, "id": 148839695915298800, "id_str": "148839695915298816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693387808/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693387808/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@edgejames it was fun :3", "to_user": "edgejames", "to_user_id": 24579797, "to_user_id_str": "24579797", "to_user_name": "James Edge", "in_reply_to_status_id": 148838941905256450, "in_reply_to_status_id_str": "148838941905256448"}, +{"created_at": "Mon, 19 Dec 2011 18:58:43 +0000", "from_user": "funnyman310", "from_user_id": 407229941, "from_user_id_str": "407229941", "from_user_name": "Damian Bowers", "geo": null, "id": 148839695781068800, "id_str": "148839695781068800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1627712725/hollywood_undead_band_new_masks_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627712725/hollywood_undead_band_new_masks_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "im really borde right now in mr thomas class o so fun lol right", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:43 +0000", "from_user": "timrosario", "from_user_id": 39727006, "from_user_id_str": "39727006", "from_user_name": "Timothy Rosario", "geo": null, "id": 148839695554584580, "id_str": "148839695554584576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1671845768/darkness_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671845768/darkness_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Gears with @CJ_WORLD_PEACE was fun... Just like old days... He still better than me. @Eddie_Tayag too.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:43 +0000", "from_user": "wineyczo", "from_user_id": 419766363, "from_user_id_str": "419766363", "from_user_name": "Laura Ann", "geo": null, "id": 148839695126761470, "id_str": "148839695126761473", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1654851075/308822_10101002459115710_1913689_67594408_403346403_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654851075/308822_10101002459115710_1913689_67594408_403346403_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Have fun with those teeth @KaitlynFish #goodluck", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:43 +0000", "from_user": "Bigfish821", "from_user_id": 234858768, "from_user_id_str": "234858768", "from_user_name": "hayden florez ", "geo": null, "id": 148839694552137730, "id_str": "148839694552137728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1465061341/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1465061341/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster</a>", "text": "Have fun in the big city let's kick it when you get back :)@CackAttack_2", "to_user": "CackAttack_2", "to_user_id": 272837045, "to_user_id_str": "272837045", "to_user_name": "Charlie Caccamo", "in_reply_to_status_id": 148838761504063500, "in_reply_to_status_id_str": "148838761504063489"} +, +{"created_at": "Mon, 19 Dec 2011 18:58:43 +0000", "from_user": "Jsill92", "from_user_id": 428809044, "from_user_id_str": "428809044", "from_user_name": "Joshua Ryan Sill I", "geo": null, "id": 148839696674467840, "id_str": "148839696674467840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1675498679/K84jb642_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675498679/K84jb642_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@lailaannk hell yeah gonna be fun haha", "to_user": "lailaannk", "to_user_id": 245640418, "to_user_id_str": "245640418", "to_user_name": "Laila Keliani", "in_reply_to_status_id": 148837659266125820, "in_reply_to_status_id_str": "148837659266125825"}, +{"created_at": "Mon, 19 Dec 2011 18:58:43 +0000", "from_user": "daisyharriet91", "from_user_id": 337869902, "from_user_id_str": "337869902", "from_user_name": "oh hiyuh, i'm dais.", "geo": null, "id": 148839695915298800, "id_str": "148839695915298816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693387808/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693387808/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@edgejames it was fun :3", "to_user": "edgejames", "to_user_id": 24579797, "to_user_id_str": "24579797", "to_user_name": "James Edge", "in_reply_to_status_id": 148838941905256450, "in_reply_to_status_id_str": "148838941905256448"}, +{"created_at": "Mon, 19 Dec 2011 18:58:43 +0000", "from_user": "funnyman310", "from_user_id": 407229941, "from_user_id_str": "407229941", "from_user_name": "Damian Bowers", "geo": null, "id": 148839695781068800, "id_str": "148839695781068800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1627712725/hollywood_undead_band_new_masks_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627712725/hollywood_undead_band_new_masks_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "im really borde right now in mr thomas class o so fun lol right", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:43 +0000", "from_user": "timrosario", "from_user_id": 39727006, "from_user_id_str": "39727006", "from_user_name": "Timothy Rosario", "geo": null, "id": 148839695554584580, "id_str": "148839695554584576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1671845768/darkness_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671845768/darkness_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Gears with @CJ_WORLD_PEACE was fun... Just like old days... He still better than me. @Eddie_Tayag too.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:43 +0000", "from_user": "wineyczo", "from_user_id": 419766363, "from_user_id_str": "419766363", "from_user_name": "Laura Ann", "geo": null, "id": 148839695126761470, "id_str": "148839695126761473", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1654851075/308822_10101002459115710_1913689_67594408_403346403_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654851075/308822_10101002459115710_1913689_67594408_403346403_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Have fun with those teeth @KaitlynFish #goodluck", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:43 +0000", "from_user": "Bigfish821", "from_user_id": 234858768, "from_user_id_str": "234858768", "from_user_name": "hayden florez ", "geo": null, "id": 148839694552137730, "id_str": "148839694552137728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1465061341/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1465061341/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster</a>", "text": "Have fun in the big city let's kick it when you get back :)@CackAttack_2", "to_user": "CackAttack_2", "to_user_id": 272837045, "to_user_id_str": "272837045", "to_user_name": "Charlie Caccamo", "in_reply_to_status_id": 148838761504063500, "in_reply_to_status_id_str": "148838761504063489"}, +{"created_at": "Mon, 19 Dec 2011 18:58:43 +0000", "from_user": "osaxy", "from_user_id": 355082098, "from_user_id_str": "355082098", "from_user_name": "Sheri Duff", "geo": null, "id": 148839694241771520, "id_str": "148839694241771520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1618291492/146dbe91-43d2-4d8a-8aff-88f1dca3974d_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618291492/146dbe91-43d2-4d8a-8aff-88f1dca3974d_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@BanterAndQuotes Glad u had fun and get some good rest!!! ((Hugs))", "to_user": "BanterAndQuotes", "to_user_id": 327492925, "to_user_id_str": "327492925", "to_user_name": "Shanaz Arshed", "in_reply_to_status_id": 148758032292122620, "in_reply_to_status_id_str": "148758032292122624"}, +{"created_at": "Mon, 19 Dec 2011 18:58:42 +0000", "from_user": "KimberleyKnox", "from_user_id": 46885402, "from_user_id_str": "46885402", "from_user_name": "Kimberley Knox", "geo": null, "id": 148839692870225920, "id_str": "148839692870225920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1684131305/IMG_2802_copy_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684131305/IMG_2802_copy_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Hey @WSRS961, how about playing some @SNCmusic christmas songs. Could use some #StraightNoChaser to fun up my week. :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:42 +0000", "from_user": "Chappystax", "from_user_id": 201988176, "from_user_id_str": "201988176", "from_user_name": "Christian", "geo": null, "id": 148839692849250300, "id_str": "148839692849250304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1612567377/profile_image_1319911314164_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612567377/profile_image_1319911314164_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "25miles from state line fun day at work but had enough #luvmyjob", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:42 +0000", "from_user": "DreamzTink", "from_user_id": 216577079, "from_user_id_str": "216577079", "from_user_name": "Krystina King", "geo": null, "id": 148839692635353100, "id_str": "148839692635353088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1670400847/Picture1939_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670400847/Picture1939_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Ah snap, it feels good out here!\\n\\nIt might be the 17 layers of fun I have on.\\n\\n\\nWork out and then strip for the neighbors....I THINK SO! LOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:42 +0000", "from_user": "misssetty2k", "from_user_id": 331124579, "from_user_id_str": "331124579", "from_user_name": "MissSetty ♥", "geo": null, "id": 148839691918118900, "id_str": "148839691918118913", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679920408/take_care_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679920408/take_care_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@MzNyJaB he didnt & now he's makin fun of me -__- ..", "to_user": "MzNyJaB", "to_user_id": 143489255, "to_user_id_str": "143489255", "to_user_name": "Ny-Ja Herod", "in_reply_to_status_id": 148836875178754050, "in_reply_to_status_id_str": "148836875178754049"}, +{"created_at": "Mon, 19 Dec 2011 18:58:42 +0000", "from_user": "RefrshDonovan", "from_user_id": 193849723, "from_user_id_str": "193849723", "from_user_name": "Mr. Green ", "geo": null, "id": 148839691683233800, "id_str": "148839691683233792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699568656/RefrshDonovan_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699568656/RefrshDonovan_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "had to make sure all my brother did well this semester we all did work and had fun a the same time!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:42 +0000", "from_user": "history11maker", "from_user_id": 286956200, "from_user_id_str": "286956200", "from_user_name": "d.g", "geo": null, "id": 148839691192500220, "id_str": "148839691192500224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1680083131/wlXgBvV3_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680083131/wlXgBvV3_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Hr of fun. Back to work. BBL:-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:42 +0000", "from_user": "iAMRAYTYLER", "from_user_id": 100395712, "from_user_id_str": "100395712", "from_user_name": "\\u221A Verified RayTyler\\u2122", "geo": null, "id": 148839690290728960, "id_str": "148839690290728960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1661936315/Ray3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661936315/Ray3_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT \"@MzJada_Flyhi: I live my life and I have fun doin it!!\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:42 +0000", "from_user": "LizzLoves1D", "from_user_id": 239587308, "from_user_id_str": "239587308", "from_user_name": "OneDirection\\u2665\\u27A1", "geo": null, "id": 148839689971970050, "id_str": "148839689971970049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693199747/a17fcc7a-ffc3-4fe0-a974-6defaa3000d9_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693199747/a17fcc7a-ffc3-4fe0-a974-6defaa3000d9_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @JanetJealousy: Dublin tonight :) busy busy. Havn't been in a while so it should be great fun apart from the early start tomorrow ;.;", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:41 +0000", "from_user": "murilo212", "from_user_id": 38074271, "from_user_id_str": "38074271", "from_user_name": "Murilo Campos", "geo": null, "id": 148839689053413380, "id_str": "148839689053413376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1481342959/6010973995_fd121f27ab_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1481342959/6010973995_fd121f27ab_o_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "so what we get drunk, so what we smoke weed, we're just having fun... aushaushauhsahsa #np", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:41 +0000", "from_user": "lactualaloupe", "from_user_id": 90369334, "from_user_id_str": "90369334", "from_user_name": "diane saint-r\\u00E9quier", "geo": null, "id": 148839688516542460, "id_str": "148839688516542464", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702615848/P10009572_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702615848/P10009572_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@blackhells1 j'ai choisi le Yooo, un coup de coeur depuis qu'on me l'a pr\\u00E9sent\\u00E9 : http://t.co/wi3MFQm1", "to_user": "blackhells1", "to_user_id": 378096970, "to_user_id_str": "378096970", "to_user_name": "Sebastien", "in_reply_to_status_id": 148838239581646850, "in_reply_to_status_id_str": "148838239581646848"}, +{"created_at": "Mon, 19 Dec 2011 18:58:41 +0000", "from_user": "Allwhite_rob", "from_user_id": 216194380, "from_user_id_str": "216194380", "from_user_name": "Robert lodge", "geo": null, "id": 148839687933526000, "id_str": "148839687933526016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694971461/Allwhite_rob_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694971461/Allwhite_rob_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Tryna do something fun this weekend", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:41 +0000", "from_user": "Banks224", "from_user_id": 365207887, "from_user_id_str": "365207887", "from_user_name": "Jeremy Banks", "geo": null, "id": 148839687711240200, "id_str": "148839687711240193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677433089/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677433089/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "The only reason I still follow you is cause I have something to laugh at an make fun of.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:41 +0000", "from_user": "KidConrad", "from_user_id": 108218953, "from_user_id_str": "108218953", "from_user_name": "Sean Baker", "geo": null, "id": 148839687698649100, "id_str": "148839687698649089", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1572189565/thumbs_dreads3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572189565/thumbs_dreads3_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@Dj_IceBreak of course my man, its gonna be a fun night!", "to_user": "Dj_IceBreak", "to_user_id": 72717729, "to_user_id_str": "72717729", "to_user_name": "Curtis B. Brass", "in_reply_to_status_id": 148839277017567230, "in_reply_to_status_id_str": "148839277017567233"}, +{"created_at": "Mon, 19 Dec 2011 18:58:41 +0000", "from_user": "brookekelley14", "from_user_id": 109954825, "from_user_id_str": "109954825", "from_user_name": "Brooke Werskey", "geo": null, "id": 148839687623155700, "id_str": "148839687623155712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695839395/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695839395/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "When people make fun of God<<<", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:41 +0000", "from_user": "RspctNoRspct", "from_user_id": 81245926, "from_user_id_str": "81245926", "from_user_name": "Respect~No~Respect", "geo": null, "id": 148839687367299070, "id_str": "148839687367299072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1625714826/document-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1625714826/document-2_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@MushiPanda no.... :( tequila just makes me fun :( :( ..... Vodka makes me crazzzzzzzzzzy .... Nothing makes me ruthless! NOTHING!", "to_user": "MushiPanda", "to_user_id": 46901900, "to_user_id_str": "46901900", "to_user_name": "Mushi Panda", "in_reply_to_status_id": 148838238537261060, "in_reply_to_status_id_str": "148838238537261056"}, +{"created_at": "Mon, 19 Dec 2011 18:58:41 +0000", "from_user": "syzxiwxni", "from_user_id": 384225377, "from_user_id_str": "384225377", "from_user_name": "Syaza iwani", "geo": null, "id": 148839687170170880, "id_str": "148839687170170881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696118561/M3j6xe3w_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696118561/M3j6xe3w_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Having fun. Still raping the keypad? \"@Daaaaaanish_: @syzxiwxni best ?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:41 +0000", "from_user": "rossyr0zay", "from_user_id": 82280837, "from_user_id_str": "82280837", "from_user_name": "Rosalyn", "geo": null, "id": 148839686113214460, "id_str": "148839686113214464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1690505441/2011-12-07_16-30-33_504_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690505441/2011-12-07_16-30-33_504_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "I've been sober& dd this past weekend. Very proud of myself :) don't gotta get drunk to enjoy yourself cuhs I still had fun w/my girls!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:41 +0000", "from_user": "qasim_ashraf", "from_user_id": 278286036, "from_user_id_str": "278286036", "from_user_name": "Qasim", "geo": null, "id": 148839685983182850, "id_str": "148839685983182849", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1676526071/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676526071/image_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@Priiyaaaa there better be:p anyways did ya have fun?", "to_user": "Priiyaaaa", "to_user_id": 123610489, "to_user_id_str": "123610489", "to_user_name": "Priya Kaur", "in_reply_to_status_id": 148831786082897920, "in_reply_to_status_id_str": "148831786082897920"}, +{"created_at": "Mon, 19 Dec 2011 18:58:41 +0000", "from_user": "JuliaHelenaa_", "from_user_id": 228767990, "from_user_id_str": "228767990", "from_user_name": "Julia Helena", "geo": null, "id": 148839685899288580, "id_str": "148839685899288577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1683308354/Making_of__40__normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683308354/Making_of__40__normal.JPG", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @katyperry: We had so much fun on this 1! Craziness did ensue! RT @PerezHilton: UK Tweethearts! Watch @KatyPerry w/me on #PerezSuperfan NOW on @ITV2!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:40 +0000", "from_user": "JDawnOfficial", "from_user_id": 65748080, "from_user_id_str": "65748080", "from_user_name": "Sonrisa Bonita", "geo": null, "id": 148839683168813060, "id_str": "148839683168813056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1666217275/JD_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666217275/JD_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "Fun weekend at 778 & Bentleys. Met a lot of my facebook friends at 778..Lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:40 +0000", "from_user": "Scottyy_P", "from_user_id": 97774896, "from_user_id_str": "97774896", "from_user_name": "Scott Penland", "geo": null, "id": 148839682812280830, "id_str": "148839682812280832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699551693/30114_396407580527_692185527_4654008_325349_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699551693/30114_396407580527_692185527_4654008_325349_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Going to work later after I stop by the school then going to chill with my crew have a little fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:40 +0000", "from_user": "__TiffanyChanel", "from_user_id": 219556819, "from_user_id_str": "219556819", "from_user_name": "Holly is Awsome! Duh", "geo": null, "id": 148839682506096640, "id_str": "148839682506096640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698960038/Snapshot_20111214_5_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698960038/Snapshot_20111214_5_normal.JPG", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Awh he said im Fun Sized! :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:39 +0000", "from_user": "WithPalestineFE", "from_user_id": 250893932, "from_user_id_str": "250893932", "from_user_name": "SolidaritePalestine", "geo": null, "id": 148839681340096500, "id_str": "148839681340096512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1241699965/174654_128748730495663_4262257_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1241699965/174654_128748730495663_4262257_n_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Just fot Fun !!!!! hahahahaha http://t.co/niJCXeDC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:39 +0000", "from_user": "Belieber3113", "from_user_id": 287353333, "from_user_id_str": "287353333", "from_user_name": "Belieber4ever", "geo": null, "id": 148839680895496200, "id_str": "148839680895496192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1613969971/320771_267826706587677_156590811044601_717315_1481157837_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1613969971/320771_267826706587677_156590811044601_717315_1481157837_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @justinbieber: Feeling good. Just had some fun at rehearsals and now we r ready. Time to sing for the President. #canadianrepresenter", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:39 +0000", "from_user": "lynnsherwood", "from_user_id": 16454610, "from_user_id_str": "16454610", "from_user_name": "Lynn Sherwood", "geo": null, "id": 148839680459284480, "id_str": "148839680459284480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1296506720/me.venice_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1296506720/me.venice_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@awanderingwino Now that sounds like a better deal! Have fun :", "to_user": "awanderingwino", "to_user_id": 228663242, "to_user_id_str": "228663242", "to_user_name": "Shawn Burgert", "in_reply_to_status_id": 148828280840142850, "in_reply_to_status_id_str": "148828280840142849"}, +{"created_at": "Mon, 19 Dec 2011 18:58:39 +0000", "from_user": "tbear_shabx", "from_user_id": 269030689, "from_user_id_str": "269030689", "from_user_name": "Aly Shahbaz", "geo": null, "id": 148839680228593660, "id_str": "148839680228593664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1690898647/Aly_tonight__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690898647/Aly_tonight__1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SyedAliRazaShah Umm nothing - I just wanna have fun on New Year's night. lol", "to_user": "SyedAliRazaShah", "to_user_id": 136185214, "to_user_id_str": "136185214", "to_user_name": "Syed Ali Raza", "in_reply_to_status_id": 148839202547695600, "in_reply_to_status_id_str": "148839202547695616"}, +{"created_at": "Mon, 19 Dec 2011 18:58:39 +0000", "from_user": "kens_maliceAQW", "from_user_id": 206277554, "from_user_id_str": "206277554", "from_user_name": "ken", "geo": null, "id": 148839680186662900, "id_str": "148839680186662912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1649233613/katanas_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649233613/katanas_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@Emo_AE @CameronTheWise yo guys lets make a private server for the fun of it", "to_user": "Emo_AE", "to_user_id": 332577370, "to_user_id_str": "332577370", "to_user_name": "Mr.Emo", "in_reply_to_status_id": 148838563226714100, "in_reply_to_status_id_str": "148838563226714114"}, +{"created_at": "Mon, 19 Dec 2011 18:58:39 +0000", "from_user": "Exuberant_One", "from_user_id": 237134647, "from_user_id_str": "237134647", "from_user_name": "Relax_yaself\\u00AB", "geo": null, "id": 148839679683342340, "id_str": "148839679683342337", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695422905/XH5Li9lt_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695422905/XH5Li9lt_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Had fun Lastnight chillin @NaudiaTimeless ...bout time she linked uo with me again, I missed her <3", "to_user": "NaudiaTimeless", "to_user_id": 98013194, "to_user_id_str": "98013194", "to_user_name": "LOOK@HER!\\u2122\\u221A", "in_reply_to_status_id": 148837099834056700, "in_reply_to_status_id_str": "148837099834056704"}, +{"created_at": "Mon, 19 Dec 2011 18:58:39 +0000", "from_user": "sunshineangiee", "from_user_id": 315567467, "from_user_id_str": "315567467", "from_user_name": "Angela Colon", "geo": null, "id": 148839678961913860, "id_str": "148839678961913856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688509687/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688509687/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@MikeSurpriseYou You lucky butt! Lol have fun tho(:", "to_user": "MikeSurpriseYou", "to_user_id": 244274806, "to_user_id_str": "244274806", "to_user_name": "Michael Guerra", "in_reply_to_status_id": 148839384265932800, "in_reply_to_status_id_str": "148839384265932800"}, +{"created_at": "Mon, 19 Dec 2011 18:58:39 +0000", "from_user": "Jack_Mullis", "from_user_id": 183343528, "from_user_id_str": "183343528", "from_user_name": "jack mullis", "geo": null, "id": 148839678953525250, "id_str": "148839678953525248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1446026142/129144614332424537_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1446026142/129144614332424537_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube video from @PheonixMMO http://t.co/r8ssHLxh IVIystical vs B0aty - Bringing 'Fun' into 'Runesc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:39 +0000", "from_user": "CJsMaui", "from_user_id": 109085110, "from_user_id_str": "109085110", "from_user_name": "Chef CJ", "geo": null, "id": 148839677582000130, "id_str": "148839677582000130", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/802508326/Maui-Chef-Christian-Jorgensen-150x150_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/802508326/Maui-Chef-Christian-Jorgensen-150x150_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Looking for tickets to the 2012 Hyundai Tournament of Champions? Later today, we'll announce details of our fun... http://t.co/771pCAVW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:39 +0000", "from_user": "CuteDutchess1", "from_user_id": 178102451, "from_user_id_str": "178102451", "from_user_name": "Adeloye Oyindamola", "geo": null, "id": 148839677368086530, "id_str": "148839677368086529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699009378/DSCN1605_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699009378/DSCN1605_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@Ausedah sorry.. Cudnt cme.. Unda haus arrest!!!... :(.. Hpe u had fun!!", "to_user": "Ausedah", "to_user_id": 279144130, "to_user_id_str": "279144130", "to_user_name": "ADESUA", "in_reply_to_status_id": 148839257497288700, "in_reply_to_status_id_str": "148839257497288704"}, +{"created_at": "Mon, 19 Dec 2011 18:58:38 +0000", "from_user": "HHHWendyHarris", "from_user_id": 419338450, "from_user_id_str": "419338450", "from_user_name": "Wendy Harris", "geo": null, "id": 148839676944457730, "id_str": "148839676944457728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694311038/hat_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694311038/hat_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@CheeringMegan (DM) Are you at least having some fun? (?-?) @BatmanRocks01 (IA) Hopefully her night gets better.", "to_user": "CheeringMegan", "to_user_id": 419795317, "to_user_id_str": "419795317", "to_user_name": "Megan Morse", "in_reply_to_status_id": 148814873986469900, "in_reply_to_status_id_str": "148814873986469888"}, +{"created_at": "Mon, 19 Dec 2011 18:58:38 +0000", "from_user": "_SunnysBaby", "from_user_id": 237748146, "from_user_id_str": "237748146", "from_user_name": "Lily Mae Moye \\u2665 \\u263A", "geo": null, "id": 148839676592132100, "id_str": "148839676592132096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701431001/IMG00323-20111215-1615_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701431001/IMG00323-20111215-1615_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @IAMJRoddyRod: I cant click up wit no stuck up bitch .. I like them pretty kinda goofy girls who love to have fun and got a sense of humor", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:38 +0000", "from_user": "frontierruckus", "from_user_id": 20338485, "from_user_id_str": "20338485", "from_user_name": "frontier ruckus", "geo": null, "id": 148839675140898800, "id_str": "148839675140898816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/348613541/n2310947_43314966_4614_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/348613541/n2310947_43314966_4614_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "fun game: random line, cummings or Seuss? also, listening exclusively to popcountry on morning drives to studio\\u2014should help shift some units", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:38 +0000", "from_user": "BryceParkers_", "from_user_id": 440618511, "from_user_id_str": "440618511", "from_user_name": "Bryce Parkers", "geo": null, "id": 148839674734059520, "id_str": "148839674734059520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701669041/tweet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701669041/tweet_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@kelseywilcox_ I wish you'd cheer up, that would make me happier. You didn't think that lunch was fun?", "to_user": "kelseywilcox_", "to_user_id": 433873438, "to_user_id_str": "433873438", "to_user_name": "Kelsey Wilcox", "in_reply_to_status_id": 148839113951416320, "in_reply_to_status_id_str": "148839113951416320"}, +{"created_at": "Mon, 19 Dec 2011 18:58:38 +0000", "from_user": "CorNEILiuZ", "from_user_id": 17371961, "from_user_id_str": "17371961", "from_user_name": "Neil Langley", "geo": null, "id": 148839674226552830, "id_str": "148839674226552832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1574974932/photo__1__normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1574974932/photo__1__normal.JPG", "source": "<a href="http://www.apple.com" rel="nofollow">iOS</a>", "text": "If climber brothers is still free in ios app store definitely pick it up. Fun little game.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:37 +0000", "from_user": "kristina_spin", "from_user_id": 249739262, "from_user_id_str": "249739262", "from_user_name": "Kristina Spinelli", "geo": null, "id": 148839672280391680, "id_str": "148839672280391680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1591857771/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591857771/me_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @officialjaden: Waking Up Is Not Fun http://t.co/E5cy8dZX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:37 +0000", "from_user": "MichelleHughes_", "from_user_id": 76866234, "from_user_id_str": "76866234", "from_user_name": "Michelle Hughes", "geo": null, "id": 148839671806443520, "id_str": "148839671806443520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1554668599/backgroundANTOC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554668599/backgroundANTOC_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "*smoochie* I am having tooooo much fun with this RT list *giggling* @scoutfinch75", "to_user": "ScoutFinch75", "to_user_id": 248295434, "to_user_id_str": "248295434", "to_user_name": "Anna", "in_reply_to_status_id": 148838718101401600, "in_reply_to_status_id_str": "148838718101401600"}, +{"created_at": "Mon, 19 Dec 2011 18:58:37 +0000", "from_user": "FollowVSG_", "from_user_id": 157724032, "from_user_id_str": "157724032", "from_user_name": "#TeamSingle", "geo": null, "id": 148839670967570430, "id_str": "148839670967570432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700278427/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700278427/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "You say west bloomfield is boring but everyday you tweet about fun stuff that you do at school that is in WEST BLOOMFIELD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:37 +0000", "from_user": "tomtom2194", "from_user_id": 25733255, "from_user_id_str": "25733255", "from_user_name": "Tom Waterland", "geo": null, "id": 148839669570863100, "id_str": "148839669570863104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1170024292/e044b350-7f5a-451e-a99f-b80464260aa2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1170024292/e044b350-7f5a-451e-a99f-b80464260aa2_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Watching The Killers bacause it's the only film in the house I havnt seen. Fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:36 +0000", "from_user": "pEpSz_AMG", "from_user_id": 372572963, "from_user_id_str": "372572963", "from_user_name": "Fuck you ", "geo": null, "id": 148839668685873150, "id_str": "148839668685873152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701507006/IMG00066-20111218-0037_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701507006/IMG00066-20111218-0037_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@chrismula1991 werd u out to DR my son..you already kno have fun and be safe", "to_user": "chrismula1991", "to_user_id": 110596243, "to_user_id_str": "110596243", "to_user_name": "$CAMPEE$", "in_reply_to_status_id": 148839060746682370, "in_reply_to_status_id_str": "148839060746682368"}, +{"created_at": "Mon, 19 Dec 2011 18:58:36 +0000", "from_user": "iamnotJUKE", "from_user_id": 59866419, "from_user_id_str": "59866419", "from_user_name": "Mr. Tolu Savage", "geo": null, "id": 148839667435966460, "id_str": "148839667435966465", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694346819/IMG-20111214-00909_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694346819/IMG-20111214-00909_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"Ah u...its not good o..wt u did to me...u just left me alone. \"@Dorchess: RT datteboy: Ah u...ko da o..nko ti o shey fun mi..o kan fimi le", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:36 +0000", "from_user": "lizzybethyx", "from_user_id": 149252537, "from_user_id_str": "149252537", "from_user_name": "Liz Goaley", "geo": null, "id": 148839666089603070, "id_str": "148839666089603074", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691304542/IMG02100-20111213-1728_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691304542/IMG02100-20111213-1728_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "double your pleasure, double your fun ..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:36 +0000", "from_user": "MadHatter180", "from_user_id": 152576959, "from_user_id_str": "152576959", "from_user_name": "Michael Smith", "geo": null, "id": 148839665363976200, "id_str": "148839665363976193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@TheLameGear Hell yes, my brother! Shadow sent me a message that damage is worth the pain, though. Fun, fun, fun tonight!", "to_user": "TheLameGear", "to_user_id": 413554752, "to_user_id_str": "413554752", "to_user_name": "Adam Bennett", "in_reply_to_status_id": 148829153658015740, "in_reply_to_status_id_str": "148829153658015744"}, +{"created_at": "Mon, 19 Dec 2011 18:58:35 +0000", "from_user": "pittfan58", "from_user_id": 263445060, "from_user_id_str": "263445060", "from_user_name": "LatinoPapi", "geo": null, "id": 148839664290242560, "id_str": "148839664290242560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1395007814/y5xOwAD8_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1395007814/y5xOwAD8_normal", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @TweetKissKara: Having a little reindeer fun with @KatieBanksDD \\uD83D\\uDC8B\\uD83C\\uDF84\\uD83C\\uDF85 http://t.co/Ae0VXZZk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:35 +0000", "from_user": "LookitsKeith", "from_user_id": 15910794, "from_user_id_str": "15910794", "from_user_name": "LookitsKeith", "geo": null, "id": 148839664084713470, "id_str": "148839664084713474", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1655942722/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655942722/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Just Tokyo drifted through an S bend in a small town.. I guess blizzards can be deadly AND fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:35 +0000", "from_user": "ErikaaDSmith", "from_user_id": 383224790, "from_user_id_str": "383224790", "from_user_name": "Erikaa D' Smith", "geo": null, "id": 148839663975677950, "id_str": "148839663975677952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1603525167/Mil_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1603525167/Mil_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @officialjaden: Waking Up Is Not Fun http://t.co/E5cy8dZX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:35 +0000", "from_user": "gricima", "from_user_id": 87395027, "from_user_id_str": "87395027", "from_user_name": "gricima anggarahani", "geo": null, "id": 148839663694651400, "id_str": "148839663694651392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1672309223/330855546_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672309223/330855546_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Couple who have gud music taste RT @ielegabr: indeed, they r fun :D \"gricima: Not yet ser, I'm too excited to watch endah N resha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:35 +0000", "from_user": "YewandeFashola", "from_user_id": 132972964, "from_user_id_str": "132972964", "from_user_name": " Wendy \\u2020", "geo": null, "id": 148839662721572860, "id_str": "148839662721572864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677767850/331023300_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677767850/331023300_normal.jpg", "source": "Tweet for iPhone and iPad", "text": "@shikemie Awww thanks for coming dearie,had fun :*", "to_user": "shikemie", "to_user_id": 132971543, "to_user_id_str": "132971543", "to_user_name": "Sikemi Ifederu "}, +{"created_at": "Mon, 19 Dec 2011 18:58:35 +0000", "from_user": "XLil_CurlettX", "from_user_id": 45488190, "from_user_id_str": "45488190", "from_user_name": "Ray MoNoRe", "geo": null, "id": 148839662339895300, "id_str": "148839662339895296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701211415/IMG_20111218_140122_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701211415/IMG_20111218_140122_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Was wit my boo thang til 5:30 this morning we had fun laughing at each other", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:35 +0000", "from_user": "MashriqR", "from_user_id": 358748393, "from_user_id_str": "358748393", "from_user_name": "abdullah S", "geo": null, "id": 148839662105010180, "id_str": "148839662105010176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670803059/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670803059/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@SanaTheBawsss I am sad for you just go out and get fun", "to_user": "SanaTheBawsss", "to_user_id": 378610578, "to_user_id_str": "378610578", "to_user_name": "Sana Tayyib", "in_reply_to_status_id": 148839247875543040, "in_reply_to_status_id_str": "148839247875543041"}, +{"created_at": "Mon, 19 Dec 2011 18:58:35 +0000", "from_user": "Haute_Luxuries_", "from_user_id": 327730993, "from_user_id_str": "327730993", "from_user_name": " Tee ", "geo": null, "id": 148839661819793400, "id_str": "148839661819793408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1647899468/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647899468/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @Lab3LM3FLY: Had fun wit my Bitch @Haute_Luxuries_ :-) we need to do it again girlie / Repeat w/ dinner?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:35 +0000", "from_user": "iamJammyTiczon", "from_user_id": 383745127, "from_user_id_str": "383745127", "from_user_name": "Jammy Ticzon", "geo": +{"coordinates": [14.726,121.0668], "type": "Point"}, "id": 148839661580714000, "id_str": "148839661580713984", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1678981656/WUosuwkr_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678981656/WUosuwkr_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@iamstanshady it was fun-filled. Sakit ng mga paa ko at malat ako. Hahaha =)", "to_user": "iamstanshady", "to_user_id": 61134444, "to_user_id_str": "61134444", "to_user_name": "Stan Shady", "in_reply_to_status_id": 148836819730055170, "in_reply_to_status_id_str": "148836819730055169"}, +{"created_at": "Mon, 19 Dec 2011 18:58:35 +0000", "from_user": "AiichaLew", "from_user_id": 34244691, "from_user_id_str": "34244691", "from_user_name": "Fergalicious Aiicha", "geo": null, "id": 148839660993515520, "id_str": "148839660993515520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676185685/TdjwX2vS_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676185685/TdjwX2vS_normal", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "My TL is dry! Where are my fun people?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:35 +0000", "from_user": "hansonquotes", "from_user_id": 174520729, "from_user_id_str": "174520729", "from_user_name": "Hanson Quotes", "geo": null, "id": 148839660444061700, "id_str": "148839660444061696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1653602928/1321997763164_132515_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653602928/1321997763164_132515_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "\"Life isn't about just forgetting serious stuff & having fun. U've just got to do it all & make it happen while u're there.\" - Taylor Hanson", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:34 +0000", "from_user": "LouFuszToyota", "from_user_id": 288873433, "from_user_id_str": "288873433", "from_user_name": "Lou Fusz Toyota", "geo": null, "id": 148839660267913200, "id_str": "148839660267913216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1508616433/IMG_8910_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1508616433/IMG_8910_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@mofkntep Mine was pretty fun. Although not quite \"whirlwind\" worthy! Think I'm overdue for another road trip.Haven't been to Nashville yet!", "to_user": "mofkntep", "to_user_id": 20684656, "to_user_id_str": "20684656", "to_user_name": "tep", "in_reply_to_status_id": 148824562501550080, "in_reply_to_status_id_str": "148824562501550080"}, +{"created_at": "Mon, 19 Dec 2011 18:58:34 +0000", "from_user": "JoleneScreams", "from_user_id": 429316511, "from_user_id_str": "429316511", "from_user_name": "Jolene Silva", "geo": null, "id": 148839659932360700, "id_str": "148839659932360704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1684270822/Jolene_Red_Shirt_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684270822/Jolene_Red_Shirt_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "i feel so much better today last night wasnt fun:/", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:34 +0000", "from_user": "Reaper_ZA", "from_user_id": 47710996, "from_user_id_str": "47710996", "from_user_name": "Hilton", "geo": null, "id": 148839659684904960, "id_str": "148839659684904960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/716374747/Reaper_ZA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/716374747/Reaper_ZA_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Ruby_Knox @futanaria hope u have fun and \"take it to the base\" \\uD83D\\uDE01", "to_user": "Ruby_Knox", "to_user_id": 34159256, "to_user_id_str": "34159256", "to_user_name": "\\u2605 Ruby Knox \\u2605", "in_reply_to_status_id": 148837165051285500, "in_reply_to_status_id_str": "148837165051285504"}, +{"created_at": "Mon, 19 Dec 2011 18:58:34 +0000", "from_user": "x_PussInBOOTS", "from_user_id": 44448917, "from_user_id_str": "44448917", "from_user_name": "C.Shontae", "geo": null, "id": 148839658720215040, "id_str": "148839658720215041", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691294464/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691294464/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@eff_yuu i have , its soooo FUN\\n!", "to_user": "eff_yuu", "to_user_id": 78040139, "to_user_id_str": "78040139", "to_user_name": "Tae.", "in_reply_to_status_id": 148838982548066300, "in_reply_to_status_id_str": "148838982548066304"}, +{"created_at": "Mon, 19 Dec 2011 18:58:34 +0000", "from_user": "_iLove_Candy", "from_user_id": 312729181, "from_user_id_str": "312729181", "from_user_name": "Guetty", "geo": null, "id": 148839657814237200, "id_str": "148839657814237184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1689766495/0629_BOB_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689766495/0629_BOB_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "Flirting with people is fun :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:34 +0000", "from_user": "MissesTomlinson", "from_user_id": 97490937, "from_user_id_str": "97490937", "from_user_name": "\\u0432\\u03B1\\u2202\\u0454 \\u0442\\u03C3\\u043C\\u2113\\u03B9\\u03B7\\u0455\\u03C3\\u03B7. \\u03B5\\u0457\\u0437", "geo": null, "id": 148839656673394700, "id_str": "148839656673394688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700807542/lthot_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700807542/lthot_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Who thinks im funny enough??You should see me in the class, aha! I always ask silly questions or make fun of teachers. shhh... EVERY1 LAUGH!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:34 +0000", "from_user": "Bambangpoerbo", "from_user_id": 35029825, "from_user_id_str": "35029825", "from_user_name": "Bambang Tutuko", "geo": null, "id": 148839656614662140, "id_str": "148839656614662144", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1430385472/batuk11_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1430385472/batuk11_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Jadi tidak bisa tidur. Untung tulisan sudah rampung. THX a lot. Have fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:33 +0000", "from_user": "ingridkimura1", "from_user_id": 429613633, "from_user_id_str": "429613633", "from_user_name": "ingrid kimura", "geo": null, "id": 148839655410901000, "id_str": "148839655410900992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1676631787/274805_1482174867_1164012600_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676631787/274805_1482174867_1164012600_n_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "@structx yeah fun ah starbucks http://t.co/PjUHPx4M", "to_user": "structx", "to_user_id": 272890761, "to_user_id_str": "272890761", "to_user_name": "Fee"}, +{"created_at": "Mon, 19 Dec 2011 18:58:33 +0000", "from_user": "allie_eastburn", "from_user_id": 359760204, "from_user_id_str": "359760204", "from_user_name": "Alexandra Eastburn", "geo": null, "id": 148839655146663940, "id_str": "148839655146663937", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1659770509/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659770509/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@CKinnan6 maybe haha just Maybe ! Well have fun and dont kill yourself !", "to_user": "CKinnan6", "to_user_id": 68042311, "to_user_id_str": "68042311", "to_user_name": "Cory Kinnan", "in_reply_to_status_id": 148837651573772300, "in_reply_to_status_id_str": "148837651573772289"}, +{"created_at": "Mon, 19 Dec 2011 18:58:33 +0000", "from_user": "destinyzac", "from_user_id": 438569925, "from_user_id_str": "438569925", "from_user_name": "destiny robinson", "geo": null, "id": 148839653972254720, "id_str": "148839653972254720", "iso_language_code": "is", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "im having fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:33 +0000", "from_user": "jcummens925", "from_user_id": 388009769, "from_user_id_str": "388009769", "from_user_name": "Jessica Cummens", "geo": null, "id": 148839653296971780, "id_str": "148839653296971778", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1595002923/profpic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1595002923/profpic_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @jilllalumiere: @JillGrzesiuk have fun at the house alone tonight!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:33 +0000", "from_user": "Life_In_Black", "from_user_id": 113754862, "from_user_id_str": "113754862", "from_user_name": "Carson Butz", "geo": null, "id": 148839653288579070, "id_str": "148839653288579073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1265421667/P1000097_CUTOUT_TWITTER_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1265421667/P1000097_CUTOUT_TWITTER_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Sitting here listening to Siberia, and remembering all the fun I had at the awesome Vancouver concert. :) @lights", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:33 +0000", "from_user": "iainhayton", "from_user_id": 285771259, "from_user_id_str": "285771259", "from_user_name": "iain hayton", "geo": null, "id": 148839652319707140, "id_str": "148839652319707136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1428119597/FacebookHomescreenImage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1428119597/FacebookHomescreenImage_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Masebomb @kevj91 @chrisjparkinson hmmmmm it could be fun!!!!", "to_user": "Masebomb", "to_user_id": 197505816, "to_user_id_str": "197505816", "to_user_name": "Chris Mason", "in_reply_to_status_id": 148838896447397900, "in_reply_to_status_id_str": "148838896447397888"}, +{"created_at": "Mon, 19 Dec 2011 18:58:32 +0000", "from_user": "jimmydan29", "from_user_id": 25466305, "from_user_id_str": "25466305", "from_user_name": "James Kitchen", "geo": null, "id": 148839651208200200, "id_str": "148839651208200192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1592048129/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592048129/avatar_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@JohnFryett cool! Have fun!!!!", "to_user": "JohnFryett", "to_user_id": 408634883, "to_user_id_str": "408634883", "to_user_name": "John Fryett", "in_reply_to_status_id": 148839593867870200, "in_reply_to_status_id_str": "148839593867870208"}, +{"created_at": "Mon, 19 Dec 2011 18:58:32 +0000", "from_user": "JustifiedJoker", "from_user_id": 168847778, "from_user_id_str": "168847778", "from_user_name": "Marissa Myers", "geo": null, "id": 148839649387884540, "id_str": "148839649387884544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696463870/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696463870/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "How fun. I would mention him but then his phone would go off..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:32 +0000", "from_user": "oneclassicgent", "from_user_id": 28820146, "from_user_id_str": "28820146", "from_user_name": "Philippe E. C. Andal", "geo": null, "id": 148839648628703230, "id_str": "148839648628703232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1673603523/2cc8lLLP_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673603523/2cc8lLLP_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "Well that Living Social place wasn't that bad. It was actually kind of fun,esp when that white woman started talking about Jefferson St. LOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:32 +0000", "from_user": "cassiema93", "from_user_id": 64485512, "from_user_id_str": "64485512", "from_user_name": "\\u2605\\u2606Cassie\\u2606\\u2605", "geo": null, "id": 148839648326725630, "id_str": "148839648326725633", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1523325397/GWyht0gL_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1523325397/GWyht0gL_normal", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Girls just wanna have fun! \\uD83D\\uDC8B\\uD83D\\uDC6F\\uD83D\\uDC59\\uD83C\\uDF80\\uD83D\\uDC51\\uD83D\\uDC8E\\uD83D\\uDC8D\\uD83D\\uDC84\\uD83D\\uDC60\\uD83C\\uDF89\\uD83D\\uDEBA\\uD83D\\uDC83", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:31 +0000", "from_user": "Arc_1o1", "from_user_id": 93289768, "from_user_id_str": "93289768", "from_user_name": "kevin ferris", "geo": null, "id": 148839647185866750, "id_str": "148839647185866752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1593545034/5628635058824783410_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593545034/5628635058824783410_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "my brother hid my walking stick, when he was here the other day. Was great fun trying to find it when i needed to go out \\u00AC\\u00AC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:31 +0000", "from_user": "emmma_reneee", "from_user_id": 247447930, "from_user_id_str": "247447930", "from_user_name": "emma cram", "geo": null, "id": 148839646258933760, "id_str": "148839646258933760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697260688/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697260688/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "A bunch of people kept making fun of how short my arms are today it hurt my feelings \\uD83D\\uDE14", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:31 +0000", "from_user": "SetangonaJonas", "from_user_id": 76933208, "from_user_id_str": "76933208", "from_user_name": "His Slayer", "geo": null, "id": 148839645604618240, "id_str": "148839645604618241", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1615966427/rtzerz_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615966427/rtzerz_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@SwagxLandx so not fair >.< sounds....chilling trololol enjoy & have fun ;D I'm going to visit my fam with my mom in India, so excited!", "to_user": "SwagxLandx", "to_user_id": 257643692, "to_user_id_str": "257643692", "to_user_name": "Mariannah. ~", "in_reply_to_status_id": 148838494255583230, "in_reply_to_status_id_str": "148838494255583232"}, +{"created_at": "Mon, 19 Dec 2011 18:58:31 +0000", "from_user": "ozelyxe", "from_user_id": 282530989, "from_user_id_str": "282530989", "from_user_name": "Taras", "geo": null, "id": 148839643725565950, "id_str": "148839643725565952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1356482358/487_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1356482358/487_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/grYFMvtg Have Fun Playing the Market (9780805936216) Rex Miller", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:30 +0000", "from_user": "Neion79", "from_user_id": 180364006, "from_user_id_str": "180364006", "from_user_name": "Neion Aleister", "geo": null, "id": 148839642328862720, "id_str": "148839642328862722", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662378726/cheshire_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662378726/cheshire_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@AI_DEATHGAZE me too! in my country~ it's fun~", "to_user": "AI_DEATHGAZE", "to_user_id": 412561646, "to_user_id_str": "412561646", "to_user_name": "\\u85CD", "in_reply_to_status_id": 148839148151779330, "in_reply_to_status_id_str": "148839148151779329"}, +{"created_at": "Mon, 19 Dec 2011 18:58:30 +0000", "from_user": "Griselnat", "from_user_id": 431745240, "from_user_id_str": "431745240", "from_user_name": "Grisel Lian", "geo": null, "id": 148839641380950000, "id_str": "148839641380950016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681125704/kc1iisiuis_133244000-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681125704/kc1iisiuis_133244000-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Bits and Pieces Hot Dog Vendor Bank: This nostalgic cast iron bank makes it fun to save some cash. Just turn the... http://t.co/NvHQP2Cm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:30 +0000", "from_user": "Britt_Brat41", "from_user_id": 256533372, "from_user_id_str": "256533372", "from_user_name": "*Brittany\\u2022Johnson\\u2122", "geo": null, "id": 148839640445624320, "id_str": "148839640445624320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1619847217/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619847217/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@MarqieMarq loving it marq, we went snorkeling yesterday and that was too much fun... It threw me off when I first looked down tho...", "to_user": "MarqieMarq", "to_user_id": 141337362, "to_user_id_str": "141337362", "to_user_name": "Marques Johnson", "in_reply_to_status_id": 148513768463269900, "in_reply_to_status_id_str": "148513768463269890"}, +{"created_at": "Mon, 19 Dec 2011 18:58:29 +0000", "from_user": "_thesim", "from_user_id": 317345360, "from_user_id_str": "317345360", "from_user_name": "Simran Sagoo", "geo": null, "id": 148839636939194370, "id_str": "148839636939194368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697117184/Picture_529hh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697117184/Picture_529hh_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @HumzaProduction: Just head butted the wall... Was a shit idea... Wasnt fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:29 +0000", "from_user": "ItzJelllyyBean", "from_user_id": 241348944, "from_user_id_str": "241348944", "from_user_name": "Sammi Moore", "geo": null, "id": 148839635295014900, "id_str": "148839635295014912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701578289/profile_image_1324272450974_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701578289/profile_image_1324272450974_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "Had tons of fun in The D but im ready to be home! Lil dribblers Bball draft today! Aayyee!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:28 +0000", "from_user": "__Bessie", "from_user_id": 195556700, "from_user_id_str": "195556700", "from_user_name": "K\\u00E9lan . ", "geo": null, "id": 148839634548428800, "id_str": "148839634548428800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1690706057/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690706057/profile_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "I guess I look for fun first , and let love just .. happen .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:28 +0000", "from_user": "texassunny2009", "from_user_id": 66463313, "from_user_id_str": "66463313", "from_user_name": "Kelly ", "geo": null, "id": 148839633638264830, "id_str": "148839633638264832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1390492942/kelly_ass__part_2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1390492942/kelly_ass__part_2_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Want me to make your Monday better??? lol...I'm here early this afternoon, let's have some fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:28 +0000", "from_user": "Samjam_Cbreezy", "from_user_id": 323488607, "from_user_id_str": "323488607", "from_user_name": "Samjam,\\u2661", "geo": null, "id": 148839632178659330, "id_str": "148839632178659328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691644977/DSC00997_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691644977/DSC00997_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "wow im fucking weird! Im excited to be revising tomorow; ..:| someone needs to smack some fun into me! :-(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:28 +0000", "from_user": "YoGirlsFavKappa", "from_user_id": 166724970, "from_user_id_str": "166724970", "from_user_name": "Antonio Guevara", "geo": null, "id": 148839631222358000, "id_str": "148839631222358016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1534597726/334278_1948222741084_1108036448_31720231_1416687_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534597726/334278_1948222741084_1108036448_31720231_1416687_o_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Happy birthday @kay_loray !!! You and @NUPEologist have fun on yalls one year celebration lol...two.little love birds lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:28 +0000", "from_user": "TweetN_ass_Tate", "from_user_id": 292738824, "from_user_id_str": "292738824", "from_user_name": "Doug sso Funny ", "geo": null, "id": 148839631163621380, "id_str": "148839631163621376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1391730074/083tV_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1391730074/083tV_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@ThatsSoMendes Good to see you following your dreams @TweetN_ass_Tate ! Have fun, be safe, & (cont) http://t.co/IDMSWjI0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:27 +0000", "from_user": "fauxbehati", "from_user_id": 275135616, "from_user_id_str": "275135616", "from_user_name": "Behati Prinsloo.", "geo": null, "id": 148839630974885900, "id_str": "148839630974885888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702387005/tumblr_lvsdayOav91qm8f4m_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702387005/tumblr_lvsdayOav91qm8f4m_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@fakestyles Because I'm 100% right, of course you have nothing else to say haha. Looks like you're having fun with other girls as it is so", "to_user": "fakestyles", "to_user_id": 374683143, "to_user_id_str": "374683143", "to_user_name": "Harry.", "in_reply_to_status_id": 148838589147516930, "in_reply_to_status_id_str": "148838589147516928"}, +{"created_at": "Mon, 19 Dec 2011 18:58:27 +0000", "from_user": "Allie_IsBetter", "from_user_id": 231653845, "from_user_id_str": "231653845", "from_user_name": "Tish Allie", "geo": null, "id": 148839629016141820, "id_str": "148839629016141824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701681419/11_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701681419/11_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Im_ALL_You_CEE its fun to be by yo self so yu can do wtf yu wanna=)", "to_user": "Im_ALL_You_CEE", "to_user_id": 318087390, "to_user_id_str": "318087390", "to_user_name": "Yours Truly. . . ", "in_reply_to_status_id": 148839397771591680, "in_reply_to_status_id_str": "148839397771591680"}, +{"created_at": "Mon, 19 Dec 2011 18:58:27 +0000", "from_user": "JB_Nicholson", "from_user_id": 189871951, "from_user_id_str": "189871951", "from_user_name": "Juliana Nicholson", "geo": null, "id": 148839628336676860, "id_str": "148839628336676864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1583773338/COM_and_Me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583773338/COM_and_Me_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @HubSpot: Not as fun as tweeting, but important: 5 Noteworthy Examples of Corporate Social Media Policies - http://t.co/bsI8n0ac", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:26 +0000", "from_user": "Hussam_farrash", "from_user_id": 327055890, "from_user_id_str": "327055890", "from_user_name": "Mr.brightside ", "geo": null, "id": 148839626486984700, "id_str": "148839626486984706", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676845742/hus___malek_scrubs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676845742/hus___malek_scrubs_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SaraAlAqeel hhhhhhhhhhhhh wallah last year kaanat mo3aana nafseyyah bas i had fun :D , enty masaar 9e77y ?", "to_user": "SaraAlAqeel", "to_user_id": 134886681, "to_user_id_str": "134886681", "to_user_name": "Saoirse", "in_reply_to_status_id": 148839396924334080, "in_reply_to_status_id_str": "148839396924334080"}, +{"created_at": "Mon, 19 Dec 2011 18:58:26 +0000", "from_user": "ExcelWords", "from_user_id": 438370981, "from_user_id_str": "438370981", "from_user_name": "Natalie Faiman", "geo": null, "id": 148839625119637500, "id_str": "148839625119637504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699331601/excel_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699331601/excel_logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @WeAreTeachers: Creative Ways Teachers Use Games to Make Learning Fun http://t.co/7DiSnf0c", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:26 +0000", "from_user": "rectenwaldyajf9", "from_user_id": 390314297, "from_user_id_str": "390314297", "from_user_name": "Rectenwald Reeves", "geo": null, "id": 148839624616321020, "id_str": "148839624616321024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@j_bloodworth http://t.co/Q2EdTGCZ", "to_user": "j_bloodworth", "to_user_id": 316664748, "to_user_id_str": "316664748", "to_user_name": "John Bloodworth", "in_reply_to_status_id": 148698349216858100, "in_reply_to_status_id_str": "148698349216858112"} +, +{"created_at": "Mon, 19 Dec 2011 18:58:28 +0000", "from_user": "Samjam_Cbreezy", "from_user_id": 323488607, "from_user_id_str": "323488607", "from_user_name": "Samjam,\\u2661", "geo": null, "id": 148839632178659330, "id_str": "148839632178659328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691644977/DSC00997_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691644977/DSC00997_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "wow im fucking weird! Im excited to be revising tomorow; ..:| someone needs to smack some fun into me! :-(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:28 +0000", "from_user": "YoGirlsFavKappa", "from_user_id": 166724970, "from_user_id_str": "166724970", "from_user_name": "Antonio Guevara", "geo": null, "id": 148839631222358000, "id_str": "148839631222358016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1534597726/334278_1948222741084_1108036448_31720231_1416687_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534597726/334278_1948222741084_1108036448_31720231_1416687_o_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Happy birthday @kay_loray !!! You and @NUPEologist have fun on yalls one year celebration lol...two.little love birds lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:28 +0000", "from_user": "TweetN_ass_Tate", "from_user_id": 292738824, "from_user_id_str": "292738824", "from_user_name": "Doug sso Funny ", "geo": null, "id": 148839631163621380, "id_str": "148839631163621376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1391730074/083tV_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1391730074/083tV_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@ThatsSoMendes Good to see you following your dreams @TweetN_ass_Tate ! Have fun, be safe, & (cont) http://t.co/IDMSWjI0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:27 +0000", "from_user": "fauxbehati", "from_user_id": 275135616, "from_user_id_str": "275135616", "from_user_name": "Behati Prinsloo.", "geo": null, "id": 148839630974885900, "id_str": "148839630974885888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702387005/tumblr_lvsdayOav91qm8f4m_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702387005/tumblr_lvsdayOav91qm8f4m_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@fakestyles Because I'm 100% right, of course you have nothing else to say haha. Looks like you're having fun with other girls as it is so", "to_user": "fakestyles", "to_user_id": 374683143, "to_user_id_str": "374683143", "to_user_name": "Harry.", "in_reply_to_status_id": 148838589147516930, "in_reply_to_status_id_str": "148838589147516928"}, +{"created_at": "Mon, 19 Dec 2011 18:58:27 +0000", "from_user": "Allie_IsBetter", "from_user_id": 231653845, "from_user_id_str": "231653845", "from_user_name": "Tish Allie", "geo": null, "id": 148839629016141820, "id_str": "148839629016141824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701681419/11_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701681419/11_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Im_ALL_You_CEE its fun to be by yo self so yu can do wtf yu wanna=)", "to_user": "Im_ALL_You_CEE", "to_user_id": 318087390, "to_user_id_str": "318087390", "to_user_name": "Yours Truly. . . ", "in_reply_to_status_id": 148839397771591680, "in_reply_to_status_id_str": "148839397771591680"}, +{"created_at": "Mon, 19 Dec 2011 18:58:27 +0000", "from_user": "JB_Nicholson", "from_user_id": 189871951, "from_user_id_str": "189871951", "from_user_name": "Juliana Nicholson", "geo": null, "id": 148839628336676860, "id_str": "148839628336676864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1583773338/COM_and_Me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583773338/COM_and_Me_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @HubSpot: Not as fun as tweeting, but important: 5 Noteworthy Examples of Corporate Social Media Policies - http://t.co/bsI8n0ac", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:26 +0000", "from_user": "Hussam_farrash", "from_user_id": 327055890, "from_user_id_str": "327055890", "from_user_name": "Mr.brightside ", "geo": null, "id": 148839626486984700, "id_str": "148839626486984706", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676845742/hus___malek_scrubs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676845742/hus___malek_scrubs_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SaraAlAqeel hhhhhhhhhhhhh wallah last year kaanat mo3aana nafseyyah bas i had fun :D , enty masaar 9e77y ?", "to_user": "SaraAlAqeel", "to_user_id": 134886681, "to_user_id_str": "134886681", "to_user_name": "Saoirse", "in_reply_to_status_id": 148839396924334080, "in_reply_to_status_id_str": "148839396924334080"}, +{"created_at": "Mon, 19 Dec 2011 18:58:26 +0000", "from_user": "ExcelWords", "from_user_id": 438370981, "from_user_id_str": "438370981", "from_user_name": "Natalie Faiman", "geo": null, "id": 148839625119637500, "id_str": "148839625119637504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699331601/excel_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699331601/excel_logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @WeAreTeachers: Creative Ways Teachers Use Games to Make Learning Fun http://t.co/7DiSnf0c", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:26 +0000", "from_user": "rectenwaldyajf9", "from_user_id": 390314297, "from_user_id_str": "390314297", "from_user_name": "Rectenwald Reeves", "geo": null, "id": 148839624616321020, "id_str": "148839624616321024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@j_bloodworth http://t.co/Q2EdTGCZ", "to_user": "j_bloodworth", "to_user_id": 316664748, "to_user_id_str": "316664748", "to_user_name": "John Bloodworth", "in_reply_to_status_id": 148698349216858100, "in_reply_to_status_id_str": "148698349216858112"}, +{"created_at": "Mon, 19 Dec 2011 18:58:26 +0000", "from_user": "VNESSAx", "from_user_id": 228346270, "from_user_id_str": "228346270", "from_user_name": "Vanessa -", "geo": null, "id": 148839624029110270, "id_str": "148839624029110272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1530167478/dddddddgsgsgs_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1530167478/dddddddgsgsgs_normal.PNG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @JASMINEVILLEGAS: @JASMINEVILLEGAS haha this is fun jasmine", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:26 +0000", "from_user": "Yeah_imTHATgirl", "from_user_id": 203654610, "from_user_id_str": "203654610", "from_user_name": "You're Ugly t(\\u2022_\\u2022t)", "geo": null, "id": 148839623890698240, "id_str": "148839623890698240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700371506/4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700371506/4_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Drama is always fun to watch when it doesn have shit to do with me", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:26 +0000", "from_user": "gabiisilvaaa", "from_user_id": 373168650, "from_user_id_str": "373168650", "from_user_name": "Gabriella Silva", "geo": null, "id": 148839623349649400, "id_str": "148839623349649409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1574401786/38291_145837315430614_100000130388078_438226_318244_n__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1574401786/38291_145837315430614_100000130388078_438226_318244_n__1__normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@kevzuniga @tayross_xoxo @klysmann01 @KalebSilvax not gunna be the same without youu !! Have fun and lovee you \\u2665", "to_user": "kevzuniga", "to_user_id": 298679030, "to_user_id_str": "298679030", "to_user_name": "Kevin Zuniga", "in_reply_to_status_id": 148813069672398850, "in_reply_to_status_id_str": "148813069672398848"}, +{"created_at": "Mon, 19 Dec 2011 18:58:26 +0000", "from_user": "TalithaSpinn907", "from_user_id": 439420448, "from_user_id_str": "439420448", "from_user_name": "Talitha Spinn", "geo": null, "id": 148839622816972800, "id_str": "148839622816972800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@emmmilyyy_ Don't you wish you had this $500 starbucks card http://t.co/GTLCTgwm", "to_user": "emmmilyyy_", "to_user_id": 21294218, "to_user_id_str": "21294218", "to_user_name": "Emily Elizabeth", "in_reply_to_status_id": 148838199182106620, "in_reply_to_status_id_str": "148838199182106627"}, +{"created_at": "Mon, 19 Dec 2011 18:58:25 +0000", "from_user": "KTMarie027", "from_user_id": 181065671, "from_user_id_str": "181065671", "from_user_name": "Katie Marie", "geo": +{"coordinates": [42.2356,-87.9843], "type": "Point"}, "id": 148839622103928830, "id_str": "148839622103928832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1560127057/myface_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1560127057/myface_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "my mother is yelling at construction workers for fun...#soembarrased", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:25 +0000", "from_user": "sorndum", "from_user_id": 122463230, "from_user_id_str": "122463230", "from_user_name": "\\u2665 Looksorn (*-oo-*)", "geo": null, "id": 148839621814517760, "id_str": "148839621814517761", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1594655813/3444_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1594655813/3444_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "I am fat >< \\n Have fun eating ^___^\\n (-00-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:25 +0000", "from_user": "Scar_Ohara", "from_user_id": 49022356, "from_user_id_str": "49022356", "from_user_name": "Sheri Nicole", "geo": null, "id": 148839619918700540, "id_str": "148839619918700544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699631574/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699631574/profile_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "This is gonna be fun!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:25 +0000", "from_user": "GretchenGary", "from_user_id": 97797901, "from_user_id_str": "97797901", "from_user_name": "Gretchen Gary", "geo": null, "id": 148839619163725820, "id_str": "148839619163725824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/582764853/GretchenGary_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/582764853/GretchenGary_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Starbucks Holiday Cups Come to Life With Augmented Reality App http://t.co/tWGx90CY [just tried this - a little slow to load, but fun]", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:25 +0000", "from_user": "_Britt_Renee_", "from_user_id": 411799813, "from_user_id_str": "411799813", "from_user_name": "Brittney Foster", "geo": null, "id": 148839619096616960, "id_str": "148839619096616960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1638691261/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638691261/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TheFireSigns: #Leo here to learn what they want, how to have fun and be happy. And how to make it all happen.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:25 +0000", "from_user": "MiSs_LaDyGreeNe", "from_user_id": 405625254, "from_user_id_str": "405625254", "from_user_name": "courtney greene", "geo": null, "id": 148839618891104260, "id_str": "148839618891104256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676254898/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676254898/profile_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "@reddrosie LMFAO!!! I'll pass!!! I want the full effect! Memories of mkn a baby! Lol... Thts the fun part!", "to_user": "reddrosie", "to_user_id": 27731107, "to_user_id_str": "27731107", "to_user_name": "Red Rose.", "in_reply_to_status_id": 148839036742668300, "in_reply_to_status_id_str": "148839036742668289"}, +{"created_at": "Mon, 19 Dec 2011 18:58:24 +0000", "from_user": "aimeecrackhouse", "from_user_id": 273479200, "from_user_id_str": "273479200", "from_user_name": "Aimee Victoria", "geo": null, "id": 148839617506979840, "id_str": "148839617506979840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687768062/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687768062/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@TFLN: (586): It was fun until the stripper told me it was her first day and started crying.\\u201D lmfao @__jackieq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:24 +0000", "from_user": "Malousak", "from_user_id": 48035190, "from_user_id_str": "48035190", "from_user_name": "Malousak Salvatore \\u2665", "geo": null, "id": 148839616663928830, "id_str": "148839616663928832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700018152/delena_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700018152/delena_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@JovannaCarolyn OOOOO I can see where this conversation is leading, lol! :)) Well at least #Nian are having fun every night :))", "to_user": "JovannaCarolyn", "to_user_id": 376432078, "to_user_id_str": "376432078", "to_user_name": "Jovanna Carolyn", "in_reply_to_status_id": 148837427010748400, "in_reply_to_status_id_str": "148837427010748416"}, +{"created_at": "Mon, 19 Dec 2011 18:58:24 +0000", "from_user": "aidahsulaiman", "from_user_id": 432685957, "from_user_id_str": "432685957", "from_user_name": "Aid\\u039Eng \\u2655", "geo": null, "id": 148839616462594050, "id_str": "148839616462594049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700863729/295473_1896088367722_1406996640_31661238_1321185_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700863729/295473_1896088367722_1406996640_31661238_1321185_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Islam Gives 5 Solutions 2 Bring Unity\\n1 Avoid Useless Talk\\n2 Avoid Pet Names\\n3 Avoid Making Fun Of Others\\n4 Avoid Anger\\n5 Speak Truth.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:24 +0000", "from_user": "SimoRoth", "from_user_id": 141209614, "from_user_id_str": "141209614", "from_user_name": "Simon Roth", "geo": null, "id": 148839616097693700, "id_str": "148839616097693697", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1637572094/SimonRoth_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637572094/SimonRoth_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ek6891 Doooo ittt. The bullet time mechanic is fun enough to make it through 1 and then 2 will be a great crescendo!", "to_user": "ek6891", "to_user_id": 19341973, "to_user_id_str": "19341973", "to_user_name": "Emily King", "in_reply_to_status_id": 148838143804719100, "in_reply_to_status_id_str": "148838143804719105"}, +{"created_at": "Mon, 19 Dec 2011 18:58:24 +0000", "from_user": "RunninBY_FAITH", "from_user_id": 236458019, "from_user_id_str": "236458019", "from_user_name": "Ashton kush", "geo": null, "id": 148839615636320260, "id_str": "148839615636320257", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695564340/RunninBY_FAITH_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695564340/RunninBY_FAITH_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @ambyytoopoppin: had so much fun with my Cus @RunninBY_FAITH & sisters last nite , had a slumber now on the way to the mall , love them \\uD83D\\uDC93", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:24 +0000", "from_user": "betwonder99", "from_user_id": 275533309, "from_user_id_str": "275533309", "from_user_name": "bethan mcr wonderley", "geo": null, "id": 148839615443374080, "id_str": "148839615443374081", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1650474850/xsvds_059_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650474850/xsvds_059_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MarcuscollinsUK have fun marcus<3", "to_user": "MarcuscollinsUK", "to_user_id": 370448015, "to_user_id_str": "370448015", "to_user_name": "Marcus Collins", "in_reply_to_status_id": 148839438309527550, "in_reply_to_status_id_str": "148839438309527553"}, +{"created_at": "Mon, 19 Dec 2011 18:58:24 +0000", "from_user": "Ricardaore", "from_user_id": 386034026, "from_user_id_str": "386034026", "from_user_name": "Ricarda Bartimus", "geo": null, "id": 148839615367888900, "id_str": "148839615367888896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1575438083/5tq1tjm55h_122437433_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575438083/5tq1tjm55h_122437433_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Merry frigging Mithras) has probably walked into a toy store, looked at the pink section full of \\u0093_girl_ stuff\\u0094 and... http://t.co/Hlm29l2e", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:24 +0000", "from_user": "Sue_Nahmi", "from_user_id": 381293869, "from_user_id_str": "381293869", "from_user_name": "Chick Jagger", "geo": null, "id": 148839614524817400, "id_str": "148839614524817408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680409484/PicsIn_1323326544874_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680409484/PicsIn_1323326544874_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "@SiMpliCity_S that's great. I'm glad you had fun. Idk, I'm gonna gonna celebrate karina bday, u going?", "to_user": "SiMpliCity_S", "to_user_id": 217180200, "to_user_id_str": "217180200", "to_user_name": "Sheena Da Diamond", "in_reply_to_status_id": 148837318848032770, "in_reply_to_status_id_str": "148837318848032768"}, +{"created_at": "Mon, 19 Dec 2011 18:58:24 +0000", "from_user": "xPerfectMistake", "from_user_id": 199027714, "from_user_id_str": "199027714", "from_user_name": "Arminda Tario", "geo": null, "id": 148839614319304700, "id_str": "148839614319304704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1642733538/us6642KJ_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642733538/us6642KJ_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "So if @_ValletThaBenz @Skate_nBake come through it will be the most fun (:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:24 +0000", "from_user": "HijackHibaq", "from_user_id": 324322794, "from_user_id_str": "324322794", "from_user_name": "Hibaq Osman", "geo": null, "id": 148839614273175550, "id_str": "148839614273175553", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1650776727/shorter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650776727/shorter_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "i go through company like it's nothing. no bitterness. i just move on. meeting people is so fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:23 +0000", "from_user": "arabswag33", "from_user_id": 340669205, "from_user_id_str": "340669205", "from_user_name": "Fahad Yousif", "geo": null, "id": 148839612930994180, "id_str": "148839612930994176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688191510/229243_1990891768414_1126968466_32329007_7941970_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688191510/229243_1990891768414_1126968466_32329007_7941970_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @AlexChopjian: @arabswag33 thanks, have fun in the swag capital of the world!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:23 +0000", "from_user": "Rungo2200", "from_user_id": 30195469, "from_user_id_str": "30195469", "from_user_name": "Necro Phoenix ", "geo": null, "id": 148839612687728640, "id_str": "148839612687728640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1132733435/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1132733435/profile_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Alyssa_Milano Happy Birthday lady! Hope its fun and full blessings!", "to_user": "Alyssa_Milano", "to_user_id": 26642006, "to_user_id_str": "26642006", "to_user_name": "Alyssa Milano", "in_reply_to_status_id": 148836474232651780, "in_reply_to_status_id_str": "148836474232651776"}, +{"created_at": "Mon, 19 Dec 2011 18:58:23 +0000", "from_user": "IM_Kinqq_Nee", "from_user_id": 247577028, "from_user_id_str": "247577028", "from_user_name": "Kinqq Nee Irdaf!!!", "geo": null, "id": 148839610364067840, "id_str": "148839610364067841", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702594464/meeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702594464/meeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@iceses_ayanna oh.! you suckd we had fun.! wyd.?!", "to_user": "iceses_ayanna", "to_user_id": 299444610, "to_user_id_str": "299444610", "to_user_name": "Dance is my life :)", "in_reply_to_status_id": 148839362707197950, "in_reply_to_status_id_str": "148839362707197952"}, +{"created_at": "Mon, 19 Dec 2011 18:58:23 +0000", "from_user": "OJ_1207", "from_user_id": 369084751, "from_user_id_str": "369084751", "from_user_name": "Miss J", "geo": null, "id": 148839610078871550, "id_str": "148839610078871552", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680643504/IMG00265-20110623-0749_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680643504/IMG00265-20110623-0749_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@Alyssa_Milano Happy Birthday :) glad u enjoying it! #fun #party #joy", "to_user": "Alyssa_Milano", "to_user_id": 26642006, "to_user_id_str": "26642006", "to_user_name": "Alyssa Milano", "in_reply_to_status_id": 148836474232651780, "in_reply_to_status_id_str": "148836474232651776"}, +{"created_at": "Mon, 19 Dec 2011 18:58:22 +0000", "from_user": "ZoneBritneyS", "from_user_id": 378555068, "from_user_id_str": "378555068", "from_user_name": "Fashion Victim.", "geo": null, "id": 148839609839779840, "id_str": "148839609839779842", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688910673/374853_276305005746192_182324651810895_772879_677508060_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688910673/374853_276305005746192_182324651810895_772879_677508060_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @britneyspears: Still glowing! About to jump on a plane to Planet Hollywood in Vegas. Throwing a Bday Party for Jason at Chateau Night Club. So fun. Xxoo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:22 +0000", "from_user": "Cherrimocha", "from_user_id": 44673667, "from_user_id_str": "44673667", "from_user_name": "Cherri \\u2661", "geo": null, "id": 148839609818808320, "id_str": "148839609818808320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1684923144/331218484_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684923144/331218484_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@TeaAndRedVelvet yh boo,thai silks fun!always have a good night there!\\u263A", "to_user": "TeaAndRedVelvet", "to_user_id": 422469709, "to_user_id_str": "422469709", "to_user_name": "ChorleySocialite", "in_reply_to_status_id": 148838455940624400, "in_reply_to_status_id_str": "148838455940624384"}, +{"created_at": "Mon, 19 Dec 2011 18:58:22 +0000", "from_user": "MarvinAvacado", "from_user_id": 312377866, "from_user_id_str": "312377866", "from_user_name": "Marvin Alvarado.", "geo": null, "id": 148839609000919040, "id_str": "148839609000919040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694073256/Photo0012_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694073256/Photo0012_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "#IWasThatKid that made fun of others because I was hurting.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:22 +0000", "from_user": "EileneMac", "from_user_id": 274740477, "from_user_id_str": "274740477", "from_user_name": "Eilene Maclaskeyyy", "geo": null, "id": 148839608115929100, "id_str": "148839608115929088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701029180/IMG_9742_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701029180/IMG_9742_normal.JPG", "source": "<a href="http://www.htc.com" rel="nofollow">HTC Peep</a>", "text": "Ew. Finals. This is gonna be fun. :(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:21 +0000", "from_user": "veijeish", "from_user_id": 340802351, "from_user_id_str": "340802351", "from_user_name": "jasinth veijeish", "geo": null, "id": 148839602927583230, "id_str": "148839602927583232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1532650513/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1532650513/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I wish to celebrate lik I did it in ma childhood! Wif momma & dadda! Crackers! Fun!!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:21 +0000", "from_user": "JanetArmyUK", "from_user_id": 381618574, "from_user_id_str": "381618574", "from_user_name": "the name's annieee \\u2729", "geo": null, "id": 148839602009026560, "id_str": "148839602009026563", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698741012/469474605_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698741012/469474605_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @JanetJealousy: Dublin tonight :) busy busy. Havn't been in a while so it should be great fun apart from the early start tomorrow ;.;", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:20 +0000", "from_user": "Rachsilverstein", "from_user_id": 107091958, "from_user_id_str": "107091958", "from_user_name": "Rachel Silverstein", "geo": null, "id": 148839601258242050, "id_str": "148839601258242049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695098926/313694_10150302992492117_615432116_8538045_1295546739_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695098926/313694_10150302992492117_615432116_8538045_1295546739_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "My shoulders are so boney. So fun to tap them. My entertainment for the night", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:20 +0000", "from_user": "komigolmi", "from_user_id": 189225839, "from_user_id_str": "189225839", "from_user_name": "martin komarek", "geo": null, "id": 148839601224683520, "id_str": "148839601224683520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1164770346/prof_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1164770346/prof_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube video http://t.co/QPg93TVQ Okresn\\u00ED p\\u0159ebor - Fun Din Dung", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:20 +0000", "from_user": "toyotta_KAMRI", "from_user_id": 39149742, "from_user_id_str": "39149742", "from_user_name": "Kamri ; toyottaCamry", "geo": null, "id": 148839600729767940, "id_str": "148839600729767936", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1672434885/ka_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672434885/ka_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "dev today <<<he's no fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:20 +0000", "from_user": "ThongBoyyy", "from_user_id": 439749231, "from_user_id_str": "439749231", "from_user_name": "REAL MEN WEAR THONGS", "geo": null, "id": 148839600541024260, "id_str": "148839600541024256", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699546148/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699546148/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Kayla_MaeBiotch haha sounds fun", "to_user": "Kayla_MaeBiotch", "to_user_id": 230902023, "to_user_id_str": "230902023", "to_user_name": "Kayla J", "in_reply_to_status_id": 148838810833264640, "in_reply_to_status_id_str": "148838810833264641"}, +{"created_at": "Mon, 19 Dec 2011 18:58:20 +0000", "from_user": "thicketysplit", "from_user_id": 29561946, "from_user_id_str": "29561946", "from_user_name": "p00kie", "geo": null, "id": 148839600134160400, "id_str": "148839600134160384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1671941534/halloweeeeeeen_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671941534/halloweeeeeeen_2_normal.jpg", "source": "<a href="http://www.osfoora.com" rel="nofollow">Osfoora for iPhone</a>", "text": "@TheLookoutDiary lol I was being sarcastic and making fun of the fake deaf dude iRespectFemales", "to_user": "TheLookoutDiary", "to_user_id": 37553086, "to_user_id_str": "37553086", "to_user_name": "Derrick ", "in_reply_to_status_id": 148839072696238080, "in_reply_to_status_id_str": "148839072696238081"}, +{"created_at": "Mon, 19 Dec 2011 18:58:20 +0000", "from_user": "SlobOnMyHobbs", "from_user_id": 313753037, "from_user_id_str": "313753037", "from_user_name": "Big Blue", "geo": null, "id": 148839599123337200, "id_str": "148839599123337217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1523207140/haha_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1523207140/haha_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Driving forklifts is fun as shit man", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:20 +0000", "from_user": "JACattaaackkk", "from_user_id": 330794511, "from_user_id_str": "330794511", "from_user_name": "Jaclyn Rentschler", "geo": null, "id": 148839598922010620, "id_str": "148839598922010624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1600500704/5aklr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600500704/5aklr_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Macauley culkin makes staying home alone look a lot more fun than it really is.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:20 +0000", "from_user": "LotteVmusic", "from_user_id": 141550965, "from_user_id_str": "141550965", "from_user_name": "Dirty Minded Fangirl", "geo": null, "id": 148839598804574200, "id_str": "148839598804574208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1655613492/pixel_hanami_v2_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655613492/pixel_hanami_v2_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "It started of as a crack RP for fun, just to laugh our asses off to, and now...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:20 +0000", "from_user": "petescottoline", "from_user_id": 52452253, "from_user_id_str": "52452253", "from_user_name": "Pete Scottoline", "geo": null, "id": 148839597722447870, "id_str": "148839597722447873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680440542/379748_2534228307778_1015661800_2936135_1331923214_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680440542/379748_2534228307778_1015661800_2936135_1331923214_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Don't you wish time didn't fly when you were having fun?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:20 +0000", "from_user": "SexyBiebzSwag", "from_user_id": 165201635, "from_user_id_str": "165201635", "from_user_name": "Sarah Wax", "geo": null, "id": 148839597533708300, "id_str": "148839597533708288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1626158458/hotblackandwhitejustin_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626158458/hotblackandwhitejustin_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@iJever #iLoveBeliebersBecause no matter what, they got your back when a bitch hater makes fun of you. We're a family thats united by 1 boy.", "to_user": "iJever", "to_user_id": 59365623, "to_user_id_str": "59365623", "to_user_name": "JamieSquareLaouPants", "in_reply_to_status_id": 148839292561666050, "in_reply_to_status_id_str": "148839292561666048"}, +{"created_at": "Mon, 19 Dec 2011 18:58:19 +0000", "from_user": "sydneykbittle", "from_user_id": 66729687, "from_user_id_str": "66729687", "from_user_name": "Sydney Kellams", "geo": null, "id": 148839596510285820, "id_str": "148839596510285824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1606617620/05b8773fe1cec9aaebb350202591f6f4ca20292d_wmeg_00001_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606617620/05b8773fe1cec9aaebb350202591f6f4ca20292d_wmeg_00001_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Lunch with @EmSCreech @TheJoeRoy and @sarahkurtz was fun ((: now to babysitt!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:19 +0000", "from_user": "FAHNATIC", "from_user_id": 104062838, "from_user_id_str": "104062838", "from_user_name": "L I L B O J A C K", "geo": null, "id": 148839596103450620, "id_str": "148839596103450625", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1464535469/NickMcCoy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1464535469/NickMcCoy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Had Fun Yesterdai", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:19 +0000", "from_user": "Beautiful_JoJo1", "from_user_id": 53087361, "from_user_id_str": "53087361", "from_user_name": "-J o r d a n \\u30C4 ", "geo": null, "id": 148839596090859520, "id_str": "148839596090859521", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1655056611/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655056611/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Soo Wat We Get Drunk, Soo Wat We Smoke Weed, We're Just Havinq Fun, We Dnt Care Who Sees! -Young, Wild &'d Free!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:19 +0000", "from_user": "simba31", "from_user_id": 20665601, "from_user_id_str": "20665601", "from_user_name": "J@$pEr RiNK\\u2122", "geo": null, "id": 148839595423969280, "id_str": "148839595423969283", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/363728013/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/363728013/twitterProfilePhoto_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@IxAMdaReaLCD10R haha. Have fun my boi", "to_user": "IxAMdaReaLCD10R", "to_user_id": 181460303, "to_user_id_str": "181460303", "to_user_name": "DIOR", "in_reply_to_status_id": 148802913509195780, "in_reply_to_status_id_str": "148802913509195776"}, +{"created_at": "Mon, 19 Dec 2011 18:58:19 +0000", "from_user": "jamesTC23", "from_user_id": 441090178, "from_user_id_str": "441090178", "from_user_name": "James", "geo": null, "id": 148839594870325250, "id_str": "148839594870325248", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702605445/248688_1595091136347_1808032630_981302_1072359_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702605445/248688_1595091136347_1808032630_981302_1072359_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Drivings mad fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:19 +0000", "from_user": "KaraBercovitch", "from_user_id": 209865492, "from_user_id_str": "209865492", "from_user_name": "Kara Bercovitch", "geo": null, "id": 148839594652205060, "id_str": "148839594652205057", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1621216859/kim-kardashian-ronaldo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621216859/kim-kardashian-ronaldo_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Omg best friend is leaving I'm gonna miSs the bitch that makes fun of my tweets :(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:19 +0000", "from_user": "PastorTreCool", "from_user_id": 368048044, "from_user_id_str": "368048044", "from_user_name": "Pastor Tr\\u00E9", "geo": null, "id": 148839594618667000, "id_str": "148839594618667009", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684023323/HAPPYBIRTHDAYTRECOOL_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684023323/HAPPYBIRTHDAYTRECOOL_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "OLHA ISSO: (msn do meu amg) diz:\\n nem aquele site mais tem gra\\u00E7a\\nLivia diz:\\n ah\\n ai vc ta no Longview\\n \"when masturbation lost his fun...\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:19 +0000", "from_user": "BestUpNet", "from_user_id": 439108696, "from_user_id_str": "439108696", "from_user_name": "Best Up", "geo": null, "id": 148839593649766400, "id_str": "148839593649766400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698071124/logo_normal.png", "profile_image_url_https": null, "source": "<a href="http://fun.ly" rel="nofollow">fun.ly</a>", "text": "Operation Flashpoint : Red River http://t.co/Oqf6VV7F", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:19 +0000", "from_user": "Rufuscatpiss", "from_user_id": 213332842, "from_user_id_str": "213332842", "from_user_name": "Gordon Robertson", "geo": null, "id": 148839593423274000, "id_str": "148839593423273985", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1519620934/Toshiba_pics_1_349_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1519620934/Toshiba_pics_1_349_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "I've just been to a charity fun run for the 'Brittle Bone association'... It was a cracking day out.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:18 +0000", "from_user": "OhHeyyyyKrystal", "from_user_id": 296573268, "from_user_id_str": "296573268", "from_user_name": "Krystal Ramos", "geo": null, "id": 148839592789942270, "id_str": "148839592789942272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701552687/r0QmXxJb_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701552687/r0QmXxJb_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Watching true life: I'm addicted to video games.. Wow these people r too much! V.games arent even that fun SMH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:18 +0000", "from_user": "HHarppp", "from_user_id": 351441885, "from_user_id_str": "351441885", "from_user_name": "Hannah Harp", "geo": null, "id": 148839590290141200, "id_str": "148839590290141184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695481768/318433_2395952624065_1408447681_2946744_549324147_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695481768/318433_2395952624065_1408447681_2946744_549324147_n_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "had fun w/ one of my favorite people, now nap time :) #happy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:18 +0000", "from_user": "_prettigirl_rea", "from_user_id": 300457761, "from_user_id_str": "300457761", "from_user_name": "sirea gordon", "geo": null, "id": 148839589845532670, "id_str": "148839589845532674", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699639915/3BsR4h7n_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699639915/3BsR4h7n_normal", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @its_brittneyyyy: Happy birthday girly! Hope u have fun :) @_prettigirl_rea", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:18 +0000", "from_user": "goontings", "from_user_id": 335019921, "from_user_id_str": "335019921", "from_user_name": "Turba Mandem ", "geo": null, "id": 148839589459656700, "id_str": "148839589459656704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675892380/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675892380/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\" it's high school, just have fun \" I will but I won't disappoint you!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:18 +0000", "from_user": "Izzatilurun", "from_user_id": 371712721, "from_user_id_str": "371712721", "from_user_name": "Izzati Omar", "geo": null, "id": 148839589392551940, "id_str": "148839589392551936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1584798971/photo_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584798971/photo_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "@HANMINGSHAN how fun!!!!! with hue??", "to_user": "HANMINGSHAN", "to_user_id": 22129633, "to_user_id_str": "22129633", "to_user_name": "Mingshan Han", "in_reply_to_status_id": 148839443376250880, "in_reply_to_status_id_str": "148839443376250880"}, +{"created_at": "Mon, 19 Dec 2011 18:58:17 +0000", "from_user": "angelaperry", "from_user_id": 16523356, "from_user_id_str": "16523356", "from_user_name": "Angela Perry", "geo": null, "id": 148839588625006600, "id_str": "148839588625006592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1157455624/me_cropped_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1157455624/me_cropped_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Geeky Christmas fun: go type \"let it snow\" (without the quotes) into Google and hit enter.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:17 +0000", "from_user": "Ms_Ruthless", "from_user_id": 45167118, "from_user_id_str": "45167118", "from_user_name": "Sydney Raven Morris ", "geo": null, "id": 148839588033605630, "id_str": "148839588033605632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1509227222/325455516_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509227222/325455516_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@Jay_adore aww! Well have fun!", "to_user": "Jay_adore", "to_user_id": 154421382, "to_user_id_str": "154421382", "to_user_name": "Jade Michel", "in_reply_to_status_id": 148835875671904260, "in_reply_to_status_id_str": "148835875671904257"}, +{"created_at": "Mon, 19 Dec 2011 18:58:17 +0000", "from_user": "KatyCharlton98", "from_user_id": 214984842, "from_user_id_str": "214984842", "from_user_name": "Katy.", "geo": null, "id": 148839587949715460, "id_str": "148839587949715456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687857980/381361_2440233798454_1030059184_2791260_526400598_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687857980/381361_2440233798454_1030059184_2791260_526400598_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "i eat for fun/when i'm bored..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:18 +0000", "from_user": "ABundage19", "from_user_id": 37666451, "from_user_id_str": "37666451", "from_user_name": "Mr Aric B II", "geo": null, "id": 148839587853246460, "id_str": "148839587853246464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697596837/2011-10-31_11.43.48-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697596837/2011-10-31_11.43.48-1_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @shyralocc: Did everyone have fun last night at the Kappa Party ?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:17 +0000", "from_user": "garyhendry2107", "from_user_id": 83816771, "from_user_id_str": "83816771", "from_user_name": "gary hendry", "geo": null, "id": 148839587609972740, "id_str": "148839587609972736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1606639702/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606639702/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Naughty_Twinkle @lovelyfilth r u 2 naughties wanting any Male company involved in this sordid but fun twittering ;-) xx", "to_user": "Naughty_Twinkle", "to_user_id": 407989926, "to_user_id_str": "407989926", "to_user_name": "Twinkle", "in_reply_to_status_id": 148835044599930880, "in_reply_to_status_id_str": "148835044599930880"}, +{"created_at": "Mon, 19 Dec 2011 18:58:17 +0000", "from_user": "foxchelsey", "from_user_id": 439769001, "from_user_id_str": "439769001", "from_user_name": "chelseyfox", "geo": null, "id": 148839587391877120, "id_str": "148839587391877120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699562703/image_normal.jpg", "profile_image_url_https": null, "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@kaylaturner03 heck yeah ! We had so much fun !", "to_user": "kaylaturner03", "to_user_id": 345145747, "to_user_id_str": "345145747", "to_user_name": "Kayla Turner"}, +{"created_at": "Mon, 19 Dec 2011 18:58:17 +0000", "from_user": "JackGoodwin17", "from_user_id": 279246932, "from_user_id_str": "279246932", "from_user_name": "Jack Goodwin \\uE011", "geo": null, "id": 148839586913722370, "id_str": "148839586913722368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1634191042/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634191042/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Northerners arguing on PS3 is always fun. Apparently this one kid raped the others boy whole family cause he stole his care package #SICK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:17 +0000", "from_user": "BridalMusings", "from_user_id": 209903151, "from_user_id_str": "209903151", "from_user_name": "Elizabeth ", "geo": null, "id": 148839586347483140, "id_str": "148839586347483136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1463326400/headshot_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1463326400/headshot_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@TheVintageVeil ooooh Christmukkah! How fun!!! What are your plans? My knowledge of Hanukkah is pretty limited. xx", "to_user": "TheVintageVeil", "to_user_id": 317861977, "to_user_id_str": "317861977", "to_user_name": "Sara", "in_reply_to_status_id": 148838901719633920, "in_reply_to_status_id_str": "148838901719633920"}, +{"created_at": "Mon, 19 Dec 2011 18:58:17 +0000", "from_user": "Amarido7", "from_user_id": 107711523, "from_user_id_str": "107711523", "from_user_name": "Senti ", "geo": null, "id": 148839585944842240, "id_str": "148839585944842241", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1640203067/kamasutra_mehndi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640203067/kamasutra_mehndi_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "need to watch 300 this holiday it shall be fun and weird knowing Gerald went and starred in the ugly truth.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:17 +0000", "from_user": "Smartieddy7", "from_user_id": 363646643, "from_user_id_str": "363646643", "from_user_name": "Edna Assiradoo :D", "geo": null, "id": 148839585881931780, "id_str": "148839585881931776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1650664672/WWG1oocc_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650664672/WWG1oocc_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@yau_andrew Lol i was watching the news but stopped its boring for me come on watch something fun :D", "to_user": "yau_andrew", "to_user_id": 399681720, "to_user_id_str": "399681720", "to_user_name": "Andrew Yau ", "in_reply_to_status_id": 148839117302673400, "in_reply_to_status_id_str": "148839117302673408"}, +{"created_at": "Mon, 19 Dec 2011 18:58:17 +0000", "from_user": "FALHULI", "from_user_id": 84573326, "from_user_id_str": "84573326", "from_user_name": "FHH \\u2661", "geo": null, "id": 148839585877737470, "id_str": "148839585877737472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1658676108/330435540_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658676108/330435540_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Much more 7yate ;** RT @SSAlMukhaizeem: Had so much fun today thank u @FALHULI @Lalyaqout I love u both;***", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:17 +0000", "from_user": "silk2stone", "from_user_id": 147369757, "from_user_id_str": "147369757", "from_user_name": "Shannon Stone", "geo": null, "id": 148839585575731200, "id_str": "148839585575731202", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699332851/IMG276_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699332851/IMG276_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@ManOfYr I hope my next gf like to jus suck me off for fun lol\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:17 +0000", "from_user": "darrinhutson", "from_user_id": 34737096, "from_user_id_str": "34737096", "from_user_name": "darrin hutson", "geo": null, "id": 148839585487654900, "id_str": "148839585487654912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1652205327/l__2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652205327/l__2__normal.jpg", "source": "<a href="http://www.myspace.com/sync" rel="nofollow">MySpace</a>", "text": "I am looking for someone to help coordinate a singles night in Arlington. It will be a lot of fun and you can make s\\u2026 http://t.co/eMycyiHf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:17 +0000", "from_user": "ALLinTheMIRROR_", "from_user_id": 96278038, "from_user_id_str": "96278038", "from_user_name": "\\uE230 Desz-Ooh-Rae", "geo": null, "id": 148839585244397570, "id_str": "148839585244397568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695920156/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695920156/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "my good boy is PLENTY of fun ... ha ! :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:16 +0000", "from_user": "darrinhutson", "from_user_id": 34737096, "from_user_id_str": "34737096", "from_user_name": "darrin hutson", "geo": null, "id": 148839584854323200, "id_str": "148839584854323200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1652205327/l__2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652205327/l__2__normal.jpg", "source": "<a href="http://www.tagged.com" rel="nofollow">Tagged.com</a>", "text": "I am looking for someone to help coordinate a singles night in Arlington. It will be a lot of fun and you can make s\\u2026 http://t.co/JSrgLoAx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:16 +0000", "from_user": "kenziealexand14", "from_user_id": 305621768, "from_user_id_str": "305621768", "from_user_name": "kenziealexander", "geo": null, "id": 148839584292286460, "id_str": "148839584292286465", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701965579/IMG00368-20110212-1755_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701965579/IMG00368-20110212-1755_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@l_rhodes11 but you'll have fun", "to_user": "l_rhodes11", "to_user_id": 235800824, "to_user_id_str": "235800824", "to_user_name": "Lindsey Rhodes", "in_reply_to_status_id": 148838686736388100, "in_reply_to_status_id_str": "148838686736388096"}, +{"created_at": "Mon, 19 Dec 2011 18:58:16 +0000", "from_user": "MexicanPlug", "from_user_id": 98259413, "from_user_id_str": "98259413", "from_user_name": "Julian Demetri", "geo": null, "id": 148839583239507970, "id_str": "148839583239507968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702614053/IMG-20111211-00028_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702614053/IMG-20111211-00028_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @__Shelbz__: Yo, #VICETEAMPARTY is 12 days away DEC31ST from 8-1am, in dearborn @ the maltese club, $5 before 9. SO BE THERE GET/GIVE DANCES AND HAVE FUN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:16 +0000", "from_user": "Kheeoma", "from_user_id": 225155163, "from_user_id_str": "225155163", "from_user_name": "Chioma Udora", "geo": null, "id": 148839582719410180, "id_str": "148839582719410176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1257073582/164086_180385428658123_100000600024809_542347_1047622_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1257073582/164086_180385428658123_100000600024809_542347_1047622_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "I miss the times when life was so simple, so free, so fun and so kind.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:16 +0000", "from_user": "jenjentrixie", "from_user_id": 42738935, "from_user_id_str": "42738935", "from_user_name": "jennifer hadfield", "geo": null, "id": 148839581876371460, "id_str": "148839581876371457", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1249457118/jennifer_i_heart_faces_profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1249457118/jennifer_i_heart_faces_profile_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Check out these free printable tags that Amy at Living Locurto made for The Pioneer Woman Cooks. So fun! http://t.co/0epnkyQl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:16 +0000", "from_user": "O__ItsMISSYxX", "from_user_id": 220770688, "from_user_id_str": "220770688", "from_user_name": "I'm MISSY ;D", "geo": null, "id": 148839581289168900, "id_str": "148839581289168896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1672788509/classy2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672788509/classy2_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Bad boys ain't no good! Good boys ain't no fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:16 +0000", "from_user": "Khairisubhan", "from_user_id": 62896863, "from_user_id_str": "62896863", "from_user_name": "rizki khairisubhan", "geo": null, "id": 148839581087842300, "id_str": "148839581087842304", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1401743215/308827929_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1401743215/308827929_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @my_supersoccer: Yang udah maen, mana suaranya? Yang belum, sekali lagi, ini link-nya: http://t.co/ECftqIC6 #SuperSoccerFantasyFootball", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:16 +0000", "from_user": "matteusebio", "from_user_id": 72440484, "from_user_id_str": "72440484", "from_user_name": "Matthew Eusebio", "geo": null, "id": 148839580861349900, "id_str": "148839580861349889", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1684533439/Photo_on_2011-12-06_at_21.13_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684533439/Photo_on_2011-12-06_at_21.13_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @AyoIceMonkey: @matteusebio having fun with your oil change", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:15 +0000", "from_user": "emmadonnellyxo", "from_user_id": 383483505, "from_user_id_str": "383483505", "from_user_name": "Emma Donnelly", "geo": null, "id": 148839580139925500, "id_str": "148839580139925504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687543840/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687543840/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Wah my mom just said I can't have my phone until Christmas so giving it to me is \"more fun\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:15 +0000", "from_user": "renee_iidance", "from_user_id": 176927309, "from_user_id_str": "176927309", "from_user_name": "Evelyn Renee", "geo": null, "id": 148839579410108400, "id_str": "148839579410108416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1456233608/Picture_5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1456233608/Picture_5_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Ahh have fun!!! And take lots of pictures(: RT @Im_Soo_Blessed My first UNC game today...", "to_user": "Im_Soo_Blessed", "to_user_id": 81478111, "to_user_id_str": "81478111", "to_user_name": "Olivia Anita", "in_reply_to_status_id": 148834660988882940, "in_reply_to_status_id_str": "148834660988882945"}, +{"created_at": "Mon, 19 Dec 2011 18:58:15 +0000", "from_user": "RaeannLyke3192", "from_user_id": 439433262, "from_user_id_str": "439433262", "from_user_name": "Raeann Lyke", "geo": null, "id": 148839579305259000, "id_str": "148839579305259009", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@JaclynSiemons Please RT this FREE $500 STARBUCKS card http://t.co/hnrqBbQK", "to_user": "JaclynSiemons", "to_user_id": 24868325, "to_user_id_str": "24868325", "to_user_name": "Jaclyn Siemons", "in_reply_to_status_id": 148839072880803840, "in_reply_to_status_id_str": "148839072880803840"}, +{"created_at": "Mon, 19 Dec 2011 18:58:15 +0000", "from_user": "its_MRashed", "from_user_id": 358377508, "from_user_id_str": "358377508", "from_user_name": "M\\u0251ith\\u0251\\u2661`\\u0328", "geo": null, "id": 148839577824669700, "id_str": "148839577824669696", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700067952/_CB_87_C4_B1_5B_20_D1_8F_CC_80_CF_91e_CC_A8_D0_BC_CE_B7_CC_B5_CC_8C_D0_BF_CC_9B_D1_9F_20_E2_9C_BD_CC_B6_C2_B8_7E_20_AE__20_D1_87o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700067952/_CB_87_C4_B1_5B_20_D1_8F_CC_80_CF_91e_CC_A8_D0_BC_CE_B7_CC_B5_CC_8C_D0_BF_CC_9B_D1_9F_20_E2_9C_BD_CC_B6_C2_B8_7E_20_AE__20_D1_87o_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Had fun @Latameeh \\u2665", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:14 +0000", "from_user": "monkeygroove", "from_user_id": 15797687, "from_user_id_str": "15797687", "from_user_name": "Gary Oswald", "geo": null, "id": 148839575421337600, "id_str": "148839575421337600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1511869048/Picture0001_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1511869048/Picture0001_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Brad_Joyc3: Pls follow @WeighedDown It's my new comic (starts Jan 2nd) in which I poke fun of being middle aged and having to lose weight.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:14 +0000", "from_user": "Ac_chelsea", "from_user_id": 339681677, "from_user_id_str": "339681677", "from_user_name": "Amanda Chelsea", "geo": null, "id": 148839574775398400, "id_str": "148839574775398400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675671785/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675671785/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @hipsterproblems: Fun: Talk about a fake band and watch your friends pretend they know them. #hipsterproblems", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:14 +0000", "from_user": "gossyxx", "from_user_id": 22517614, "from_user_id_str": "22517614", "from_user_name": "ronnie radke's eyes", "geo": null, "id": 148839574146252800, "id_str": "148839574146252800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1557647140/we_are_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1557647140/we_are_1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@EchelonFamily18 woo ! ikr it's so fun ^^() whatcha want for it?", "to_user": "EchelonFamily18", "to_user_id": 38488790, "to_user_id_str": "38488790", "to_user_name": "EchelonFamily FTW \\u265B ", "in_reply_to_status_id": 148838074904875000, "in_reply_to_status_id_str": "148838074904875008"}, +{"created_at": "Mon, 19 Dec 2011 18:58:14 +0000", "from_user": "KTBaller567", "from_user_id": 186235745, "from_user_id_str": "186235745", "from_user_name": "Kenny Tollett", "geo": null, "id": 148839574066577400, "id_str": "148839574066577408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691789942/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691789942/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Girls are like airplanes. They are fun to be in, but can ruin your life in a second.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:14 +0000", "from_user": "oceandeepsoul", "from_user_id": 33866719, "from_user_id_str": "33866719", "from_user_name": "sara lewis", "geo": null, "id": 148839574041407500, "id_str": "148839574041407488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695483499/249600_1689272525523_1649034357_1370347_3919776_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695483499/249600_1689272525523_1649034357_1370347_3919776_n_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@MarcBoland pizza was fun good day with sian and my best mate adam", "to_user": "MarcBoland", "to_user_id": 31908062, "to_user_id_str": "31908062", "to_user_name": "Marc Boland \\u2122", "in_reply_to_status_id": 148838923597123600, "in_reply_to_status_id_str": "148838923597123584"}, +{"created_at": "Mon, 19 Dec 2011 18:58:14 +0000", "from_user": "annyogurt", "from_user_id": 176050010, "from_user_id_str": "176050010", "from_user_name": "Ana P\\u00E9rez Fern\\u00E1ndez\\u2714", "geo": null, "id": 148839573017985020, "id_str": "148839573017985027", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1573943164/cuadra_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1573943164/cuadra_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@clauyogurt woooo :) fun fun fun :) pues la sem siguiente hemos de quedar para chapar y vernos por navidad :) jajajaja", "to_user": "clauyogurt", "to_user_id": 119789812, "to_user_id_str": "119789812", "to_user_name": "Claudia", "in_reply_to_status_id": 148838847319519230, "in_reply_to_status_id_str": "148838847319519233"}, +{"created_at": "Mon, 19 Dec 2011 18:58:13 +0000", "from_user": "verdanacassidy", "from_user_id": 122018652, "from_user_id_str": "122018652", "from_user_name": "Fool for Christ :)", "geo": null, "id": 148839572208500740, "id_str": "148839572208500736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1550057447/z_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1550057447/z_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @nashia_m: Party's over... Had fun though", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:13 +0000", "from_user": "MicaCarballeira", "from_user_id": 142081878, "from_user_id_str": "142081878", "from_user_name": "micaela carballeira", "geo": null, "id": 148839571675807740, "id_str": "148839571675807744", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697077553/8_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697077553/8_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "La evangelizaci\\u00F3n de los abor\\u00EDgenes #FUN !!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:13 +0000", "from_user": "NouraTash", "from_user_id": 88551712, "from_user_id_str": "88551712", "from_user_name": "Noura Tashkandi", "geo": null, "id": 148839571197665280, "id_str": "148839571197665280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1486109477/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1486109477/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Watching \"Kourtney and Kim take NY\" with @Anoud6 and dissing the shit out of them. \\n\\nThis is fun! Should be an everyday activity.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:13 +0000", "from_user": "12Blondig12", "from_user_id": 174610612, "from_user_id_str": "174610612", "from_user_name": "Alexandra Hayes", "geo": null, "id": 148839570438504450, "id_str": "148839570438504450", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1514613488/269978_10150310889421271_531316270_9634696_2226779_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1514613488/269978_10150310889421271_531316270_9634696_2226779_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I'm at a weird chiropractic meeting with my mother. This should be fun. I wonder if they'll teach me how to heal with the mind or whatever.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:13 +0000", "from_user": "BrittneyNewsom", "from_user_id": 403010806, "from_user_id_str": "403010806", "from_user_name": "sMiLeS", "geo": null, "id": 148839570128117760, "id_str": "148839570128117761", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694757393/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694757393/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Sick nd tired of people makin fun of my dislexia :(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:58:15 +0000", "from_user": "renee_iidance", "from_user_id": 176927309, "from_user_id_str": "176927309", "from_user_name": "Evelyn Renee", "geo": null, "id": 148839579410108400, "id_str": "148839579410108416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1456233608/Picture_5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1456233608/Picture_5_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Ahh have fun!!! And take lots of pictures(: RT @Im_Soo_Blessed My first UNC game today...", "to_user": "Im_Soo_Blessed", "to_user_id": 81478111, "to_user_id_str": "81478111", "to_user_name": "Olivia Anita", "in_reply_to_status_id": 148834660988882940, "in_reply_to_status_id_str": "148834660988882945"}, +{"created_at": "Mon, 19 Dec 2011 18:58:15 +0000", "from_user": "RaeannLyke3192", "from_user_id": 439433262, "from_user_id_str": "439433262", "from_user_name": "Raeann Lyke", "geo": null, "id": 148839579305259000, "id_str": "148839579305259009", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@JaclynSiemons Please RT this FREE $500 STARBUCKS card http://t.co/hnrqBbQK", "to_user": "JaclynSiemons", "to_user_id": 24868325, "to_user_id_str": "24868325", "to_user_name": "Jaclyn Siemons", "in_reply_to_status_id": 148839072880803840, "in_reply_to_status_id_str": "148839072880803840"}, +{"created_at": "Mon, 19 Dec 2011 18:58:15 +0000", "from_user": "its_MRashed", "from_user_id": 358377508, "from_user_id_str": "358377508", "from_user_name": "M\\u0251ith\\u0251\\u2661`\\u0328", "geo": null, "id": 148839577824669700, "id_str": "148839577824669696", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700067952/_CB_87_C4_B1_5B_20_D1_8F_CC_80_CF_91e_CC_A8_D0_BC_CE_B7_CC_B5_CC_8C_D0_BF_CC_9B_D1_9F_20_E2_9C_BD_CC_B6_C2_B8_7E_20_AE__20_D1_87o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700067952/_CB_87_C4_B1_5B_20_D1_8F_CC_80_CF_91e_CC_A8_D0_BC_CE_B7_CC_B5_CC_8C_D0_BF_CC_9B_D1_9F_20_E2_9C_BD_CC_B6_C2_B8_7E_20_AE__20_D1_87o_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Had fun @Latameeh \\u2665", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:14 +0000", "from_user": "monkeygroove", "from_user_id": 15797687, "from_user_id_str": "15797687", "from_user_name": "Gary Oswald", "geo": null, "id": 148839575421337600, "id_str": "148839575421337600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1511869048/Picture0001_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1511869048/Picture0001_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Brad_Joyc3: Pls follow @WeighedDown It's my new comic (starts Jan 2nd) in which I poke fun of being middle aged and having to lose weight.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:14 +0000", "from_user": "Ac_chelsea", "from_user_id": 339681677, "from_user_id_str": "339681677", "from_user_name": "Amanda Chelsea", "geo": null, "id": 148839574775398400, "id_str": "148839574775398400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675671785/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675671785/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @hipsterproblems: Fun: Talk about a fake band and watch your friends pretend they know them. #hipsterproblems", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:14 +0000", "from_user": "gossyxx", "from_user_id": 22517614, "from_user_id_str": "22517614", "from_user_name": "ronnie radke's eyes", "geo": null, "id": 148839574146252800, "id_str": "148839574146252800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1557647140/we_are_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1557647140/we_are_1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@EchelonFamily18 woo ! ikr it's so fun ^^() whatcha want for it?", "to_user": "EchelonFamily18", "to_user_id": 38488790, "to_user_id_str": "38488790", "to_user_name": "EchelonFamily FTW \\u265B ", "in_reply_to_status_id": 148838074904875000, "in_reply_to_status_id_str": "148838074904875008"}, +{"created_at": "Mon, 19 Dec 2011 18:58:14 +0000", "from_user": "KTBaller567", "from_user_id": 186235745, "from_user_id_str": "186235745", "from_user_name": "Kenny Tollett", "geo": null, "id": 148839574066577400, "id_str": "148839574066577408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691789942/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691789942/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Girls are like airplanes. They are fun to be in, but can ruin your life in a second.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:14 +0000", "from_user": "oceandeepsoul", "from_user_id": 33866719, "from_user_id_str": "33866719", "from_user_name": "sara lewis", "geo": null, "id": 148839574041407500, "id_str": "148839574041407488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695483499/249600_1689272525523_1649034357_1370347_3919776_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695483499/249600_1689272525523_1649034357_1370347_3919776_n_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@MarcBoland pizza was fun good day with sian and my best mate adam", "to_user": "MarcBoland", "to_user_id": 31908062, "to_user_id_str": "31908062", "to_user_name": "Marc Boland \\u2122", "in_reply_to_status_id": 148838923597123600, "in_reply_to_status_id_str": "148838923597123584"}, +{"created_at": "Mon, 19 Dec 2011 18:58:14 +0000", "from_user": "annyogurt", "from_user_id": 176050010, "from_user_id_str": "176050010", "from_user_name": "Ana P\\u00E9rez Fern\\u00E1ndez\\u2714", "geo": null, "id": 148839573017985020, "id_str": "148839573017985027", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1573943164/cuadra_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1573943164/cuadra_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@clauyogurt woooo :) fun fun fun :) pues la sem siguiente hemos de quedar para chapar y vernos por navidad :) jajajaja", "to_user": "clauyogurt", "to_user_id": 119789812, "to_user_id_str": "119789812", "to_user_name": "Claudia", "in_reply_to_status_id": 148838847319519230, "in_reply_to_status_id_str": "148838847319519233"}, +{"created_at": "Mon, 19 Dec 2011 18:58:13 +0000", "from_user": "verdanacassidy", "from_user_id": 122018652, "from_user_id_str": "122018652", "from_user_name": "Fool for Christ :)", "geo": null, "id": 148839572208500740, "id_str": "148839572208500736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1550057447/z_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1550057447/z_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @nashia_m: Party's over... Had fun though", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:13 +0000", "from_user": "MicaCarballeira", "from_user_id": 142081878, "from_user_id_str": "142081878", "from_user_name": "micaela carballeira", "geo": null, "id": 148839571675807740, "id_str": "148839571675807744", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697077553/8_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697077553/8_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "La evangelizaci\\u00F3n de los abor\\u00EDgenes #FUN !!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:13 +0000", "from_user": "NouraTash", "from_user_id": 88551712, "from_user_id_str": "88551712", "from_user_name": "Noura Tashkandi", "geo": null, "id": 148839571197665280, "id_str": "148839571197665280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1486109477/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1486109477/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Watching \"Kourtney and Kim take NY\" with @Anoud6 and dissing the shit out of them. \\n\\nThis is fun! Should be an everyday activity.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:13 +0000", "from_user": "12Blondig12", "from_user_id": 174610612, "from_user_id_str": "174610612", "from_user_name": "Alexandra Hayes", "geo": null, "id": 148839570438504450, "id_str": "148839570438504450", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1514613488/269978_10150310889421271_531316270_9634696_2226779_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1514613488/269978_10150310889421271_531316270_9634696_2226779_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I'm at a weird chiropractic meeting with my mother. This should be fun. I wonder if they'll teach me how to heal with the mind or whatever.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:13 +0000", "from_user": "BrittneyNewsom", "from_user_id": 403010806, "from_user_id_str": "403010806", "from_user_name": "sMiLeS", "geo": null, "id": 148839570128117760, "id_str": "148839570128117761", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694757393/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694757393/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Sick nd tired of people makin fun of my dislexia :(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:13 +0000", "from_user": "cantufeelicks", "from_user_id": 30976991, "from_user_id_str": "30976991", "from_user_name": "Ana C. Cantu Felix", "geo": null, "id": 148839568236490750, "id_str": "148839568236490752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1662043507/ACSIT_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662043507/ACSIT_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "So fun!Get me into shows!Where are you summer training?RT @SawyerMadHatter: wish we can do some shows together soon! Last year was a blast.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:13 +0000", "from_user": "Breelyy", "from_user_id": 28490545, "from_user_id_str": "28490545", "from_user_name": "Breanne Batson", "geo": null, "id": 148839568202924030, "id_str": "148839568202924032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1657667924/4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657667924/4_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "When people make fun of you, right in front of your face and you're just like ajxjxjsjjs what the heck.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:12 +0000", "from_user": "Angel_Whorezz", "from_user_id": 362291524, "from_user_id_str": "362291524", "from_user_name": "Angel Juarez", "geo": null, "id": 148839568039346180, "id_str": "148839568039346176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1640847483/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640847483/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Well it was fun while it lasted I guess..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:12 +0000", "from_user": "XelaFierce", "from_user_id": 29983533, "from_user_id_str": "29983533", "from_user_name": "Alexandria Danielle", "geo": null, "id": 148839567087239170, "id_str": "148839567087239168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1639948807/suubtw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639948807/suubtw_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@CottonCandii_ haha, well its fun. as long as you're having fun.", "to_user": "CottonCandii_", "to_user_id": 33265455, "to_user_id_str": "33265455", "to_user_name": "Cici Watson", "in_reply_to_status_id": 148839390695792640, "in_reply_to_status_id_str": "148839390695792640"}, +{"created_at": "Mon, 19 Dec 2011 18:58:12 +0000", "from_user": "_iAM_Unwritten", "from_user_id": 248084226, "from_user_id_str": "248084226", "from_user_name": "Britt-Brat \\u30C4", "geo": null, "id": 148839567007547400, "id_str": "148839567007547392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693396897/Snapshot_20111214_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693396897/Snapshot_20111214_3_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "i'd rather look for fun first, then just let love happen.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:12 +0000", "from_user": "killa_key08", "from_user_id": 292719267, "from_user_id_str": "292719267", "from_user_name": "akilah mason", "geo": null, "id": 148839566600708100, "id_str": "148839566600708096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693480878/profile_image_1323896037851_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693480878/profile_image_1323896037851_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "@TheQueenBee0324 have fun! neisha live put in the boonies", "to_user": "TheQueenBee0324", "to_user_id": 41744353, "to_user_id_str": "41744353", "to_user_name": "lykia Boatman", "in_reply_to_status_id": 148839069726670850, "in_reply_to_status_id_str": "148839069726670848"}, +{"created_at": "Mon, 19 Dec 2011 18:58:12 +0000", "from_user": "chelswilson55", "from_user_id": 306120091, "from_user_id_str": "306120091", "from_user_name": "chelsey lynn wilson", "geo": null, "id": 148839566151925760, "id_str": "148839566151925760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693049190/babyyy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693049190/babyyy_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@gingyging it will be fun (: and that's coming from someone who hates shopping...but I love you (: and ur tweet pic!", "to_user": "gingyging", "to_user_id": 304543837, "to_user_id_str": "304543837", "to_user_name": "Alicia Scott", "in_reply_to_status_id": 148800819456782340, "in_reply_to_status_id_str": "148800819456782336"}, +{"created_at": "Mon, 19 Dec 2011 18:58:12 +0000", "from_user": "EdMorrissey", "from_user_id": 16787084, "from_user_id_str": "16787084", "from_user_name": "EdMorrissey", "geo": null, "id": 148839565266923520, "id_str": "148839565266923520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1642559420/ed-cigar-hs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642559420/ed-cigar-hs_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @guypbenson: \"Women\" and \"men.\" RT @RasmussenPoll: 39% see holiday gift shopping as fun experience, 38% consider it an unpleasant chore...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:12 +0000", "from_user": "jmgospel", "from_user_id": 145347933, "from_user_id_str": "145347933", "from_user_name": "Jornal Mundo Gospel", "geo": null, "id": 148839565136896000, "id_str": "148839565136896002", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1119106111/LOGO_MUNDO_GOSPEL_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1119106111/LOGO_MUNDO_GOSPEL_normal.jpg", "source": "<a href="http://fun.ly" rel="nofollow">fun.ly</a>", "text": "Maioria dos brasileiros n\\u00E3o sabe o significado do Natal http://t.co/XtUE1L8G", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:11 +0000", "from_user": "bayhosh", "from_user_id": 11609762, "from_user_id_str": "11609762", "from_user_name": "Shoaib A. Farooqui", "geo": null, "id": 148839561403961340, "id_str": "148839561403961344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1448216390/269670_2155072592569_1119088187_32485311_2796569_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1448216390/269670_2155072592569_1119088187_32485311_2796569_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Peshawar\\u2019s open secret: Hardcore fun for a hard-line city http://t.co/GipLSjS0 via @etribune", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:11 +0000", "from_user": "its_SPD", "from_user_id": 118576647, "from_user_id_str": "118576647", "from_user_name": "Sarah P Davis", "geo": null, "id": 148839560950972400, "id_str": "148839560950972416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1603715599/sd2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1603715599/sd2_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "This should be fun... Shopping with @nbair21 and #nontwitterryan", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:11 +0000", "from_user": "cocostjohn", "from_user_id": 215735138, "from_user_id_str": "215735138", "from_user_name": "Colette St. John", "geo": null, "id": 148839560552529920, "id_str": "148839560552529923", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698547105/331616302_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698547105/331616302_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Caroling at auborn manor was so fun:) #oldpeoplerock", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:11 +0000", "from_user": "timcanoot", "from_user_id": 264450937, "from_user_id_str": "264450937", "from_user_name": "Tim Canoot", "geo": null, "id": 148839560321843200, "id_str": "148839560321843200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1283157822/Untitled_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1283157822/Untitled_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @mattcutts: In case you missed it: search on Google for \"let it snow\" to see a fun easter egg. :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:10 +0000", "from_user": "lucyhubbard_", "from_user_id": 260737895, "from_user_id_str": "260737895", "from_user_name": "lucyhubbard", "geo": null, "id": 148839559369728000, "id_str": "148839559369728000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1677974402/385421_10151003892700542_702790541_21870042_1954116431_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677974402/385421_10151003892700542_702790541_21870042_1954116431_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "If it rains tomorrow evening I will not be happy, source queue's not fun at the best of times.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:10 +0000", "from_user": "belletjeXD", "from_user_id": 429891250, "from_user_id_str": "429891250", "from_user_name": "Isabelle Courtial", "geo": null, "id": 148839556916060160, "id_str": "148839556916060161", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1677518722/973941297_5_XUNl_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677518722/973941297_5_XUNl_1__normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Broertje en ik deden net heel raar en fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:09 +0000", "from_user": "giocanato", "from_user_id": 48103770, "from_user_id_str": "48103770", "from_user_name": "Giovanna C. ", "geo": null, "id": 148839555200589820, "id_str": "148839555200589824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699011529/o-matic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699011529/o-matic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Never take it seriously, cause if you never take it seriously, you never get hurt, and if you never get hurt, you always have fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:10 +0000", "from_user": "nabounassar", "from_user_id": 395952956, "from_user_id_str": "395952956", "from_user_name": "nedine a", "geo": null, "id": 148839553959084030, "id_str": "148839553959084034", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677131326/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677131326/image_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Camera on iOS</a>", "text": "\"Peacock\" nail stickers can be kinda fun http://t.co/LdPph7xf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:09 +0000", "from_user": "NewLawyersPost", "from_user_id": 357609873, "from_user_id_str": "357609873", "from_user_name": "ALPS Corp", "geo": null, "id": 148839553329934340, "id_str": "148839553329934336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1519546903/ALPSNewLawyersLogoBadgeLrg_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1519546903/ALPSNewLawyersLogoBadgeLrg_normal.gif", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "Just for holiday fun - A Second-By-Second Breakdown of the Worst Christmas Music Video Ever Made http://t.co/QwuTFVMG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:09 +0000", "from_user": "iJaszy_Fresh", "from_user_id": 325700077, "from_user_id_str": "325700077", "from_user_name": "Eff Bwords", "geo": null, "id": 148839553040523260, "id_str": "148839553040523264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701097048/7dr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701097048/7dr_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@BRIxKAYY lol why? I think it would be fun", "to_user": "BRIxKAYY", "to_user_id": 69151528, "to_user_id_str": "69151528", "to_user_name": "Brianna King", "in_reply_to_status_id": 148839171925090300, "in_reply_to_status_id_str": "148839171925090304"}, +{"created_at": "Mon, 19 Dec 2011 18:58:09 +0000", "from_user": "middlesexlounge", "from_user_id": 87357028, "from_user_id_str": "87357028", "from_user_name": "middlesex lounge", "geo": null, "id": 148839552600125440, "id_str": "148839552600125440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/508279830/MSEXiconSQ_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/508279830/MSEXiconSQ_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MrWright0523 SO FUN", "to_user": "MrWright0523", "to_user_id": 316560315, "to_user_id_str": "316560315", "to_user_name": "Marvin Wright", "in_reply_to_status_id": 148751689783066620, "in_reply_to_status_id_str": "148751689783066624"}, +{"created_at": "Mon, 19 Dec 2011 18:58:08 +0000", "from_user": "MUSE_REBEL", "from_user_id": 23837570, "from_user_id_str": "23837570", "from_user_name": "D'Angelo Ferguson", "geo": null, "id": 148839551073386500, "id_str": "148839551073386496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1590270198/Photo00016_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1590270198/Photo00016_normal.jpg", "source": "<a href="http://www.handmark.com" rel="nofollow">TweetCaster for iOS</a>", "text": "So youre a rapist??? RT @Si3RRA3LAiNE: Rapin mi gma gift :) she gonna have so much fun unrapin it", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:08 +0000", "from_user": "Notably_Divine", "from_user_id": 137207682, "from_user_id_str": "137207682", "from_user_name": "Beauty is a Virtue", "geo": null, "id": 148839550133862400, "id_str": "148839550133862400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694341354/Notably_Divine_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694341354/Notably_Divine_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @CashNCodes: Bad guys ain't no good, good guys ain't no fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:08 +0000", "from_user": "chacha2b96", "from_user_id": 273518453, "from_user_id_str": "273518453", "from_user_name": "Chacha Mingalon", "geo": null, "id": 148839548682633200, "id_str": "148839548682633216", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1630853013/303751_155941024495994_100002402922460_283263_1294885472_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630853013/303751_155941024495994_100002402922460_283263_1294885472_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"Et tout de suite sur Autoroute FM, \"A la queuleuleu\", c'est parti !\" C plut\\u00F4t fun lorsque tu es dans un embouteillage", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:08 +0000", "from_user": "BB_FIERCE", "from_user_id": 78798995, "from_user_id_str": "78798995", "from_user_name": "BIANCA", "geo": null, "id": 148839548032524300, "id_str": "148839548032524288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699382347/BB_FIERCE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699382347/BB_FIERCE_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @IamRicoLove: Pretty girls have the most fun..... #TTLO!!!!!!!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:08 +0000", "from_user": "Lui_T_Newton", "from_user_id": 255786725, "from_user_id_str": "255786725", "from_user_name": "@\\u262E x YG&B x OPMG", "geo": null, "id": 148839548019945470, "id_str": "148839548019945472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674048658/197627_187240497984100_100000944527810_412155_2315440_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674048658/197627_187240497984100_100000944527810_412155_2315440_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MIDI_Fingers 4 awhile i think co. Gonna be a fun ass summer.", "to_user": "MIDI_Fingers", "to_user_id": 95590698, "to_user_id_str": "95590698", "to_user_name": "Cal", "in_reply_to_status_id": 148838166164549630, "in_reply_to_status_id_str": "148838166164549632"}, +{"created_at": "Mon, 19 Dec 2011 18:58:07 +0000", "from_user": "NadNutsNajiha", "from_user_id": 424786302, "from_user_id_str": "424786302", "from_user_name": "Nadiah Najihah", "geo": null, "id": 148839546363187200, "id_str": "148839546363187200", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668057062/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668057062/me_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Makan maggi tgahtgah malam is fun. With twi anak dare yg tk pass pun msak maggi. Hadoii :/", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:07 +0000", "from_user": "_Plain_Jane_", "from_user_id": 38578064, "from_user_id_str": "38578064", "from_user_name": "\\uE10E A. Simms", "geo": null, "id": 148839545943769100, "id_str": "148839545943769089", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1592147171/_Plain_Jane__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592147171/_Plain_Jane__normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@QuanieGoodGood lol yes but more fun for us next semester... We have to get closer", "to_user": "QuanieGoodGood", "to_user_id": 67009835, "to_user_id_str": "67009835", "to_user_name": "mrs. right \\u2665", "in_reply_to_status_id": 148838932489060350, "in_reply_to_status_id_str": "148838932489060352"}, +{"created_at": "Mon, 19 Dec 2011 18:58:07 +0000", "from_user": "ClareColeman92", "from_user_id": 337354485, "from_user_id_str": "337354485", "from_user_name": "Clare Coleman", "geo": null, "id": 148839544970686460, "id_str": "148839544970686465", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695952671/i_love_my_momma__-_Version_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695952671/i_love_my_momma__-_Version_2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "This is no fun #ihateallthingsmedical", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:06 +0000", "from_user": "diary_tweeting", "from_user_id": 196565481, "from_user_id_str": "196565481", "from_user_name": "Diary Pribadi Rizal", "geo": null, "id": 148839542210838530, "id_str": "148839542210838529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1599237092/veve_copy_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599237092/veve_copy_2_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@liuveinaa Liuveinalism live on YouTube. Please rate & comment! :) (just for fun, nothing's personal) diintip ya buu :P http://t.co/a4GYWIwv", "to_user": "liuveinaa", "to_user_id": 77739572, "to_user_id_str": "77739572", "to_user_name": "Liuveina Adhella"}, +{"created_at": "Mon, 19 Dec 2011 18:58:06 +0000", "from_user": "riekecntl", "from_user_id": 56622869, "from_user_id_str": "56622869", "from_user_name": "Rieke Pasela", "geo": null, "id": 148839540117876740, "id_str": "148839540117876736", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1630470670/329496292_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630470670/329496292_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Happy birthday dedek kecil @liandrayuwenka :* have fun in bali! \\u263A\\u2665 GBU!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:06 +0000", "from_user": "bmcguire33", "from_user_id": 39923040, "from_user_id_str": "39923040", "from_user_name": "Brian M", "geo": null, "id": 148839539438387200, "id_str": "148839539438387200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693324039/ronda_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693324039/ronda_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ESPN_Colin: Tebow time was a lot more fun against Caleb Hanie.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:04 +0000", "from_user": "Enje_AL", "from_user_id": 311886670, "from_user_id_str": "311886670", "from_user_name": "Didi\\u2122 \\u2665", "geo": null, "id": 148839533612503040, "id_str": "148839533612503040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702609596/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702609596/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "There is no pleasure in having nothing to do; the fun is in having lots to do and not doing it. :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:04 +0000", "from_user": "Shannonpratt8", "from_user_id": 394775524, "from_user_id_str": "394775524", "from_user_name": "shannon pratt", "geo": null, "id": 148839532408746000, "id_str": "148839532408745985", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1598065918/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598065918/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@abbiejessup yeahh, that would be fun!!", "to_user": "abbiejessup", "to_user_id": 61289163, "to_user_id_str": "61289163", "to_user_name": "Abigail Jessup", "in_reply_to_status_id": 148806809157771260, "in_reply_to_status_id_str": "148806809157771264"}, +{"created_at": "Mon, 19 Dec 2011 18:58:04 +0000", "from_user": "First5Sac", "from_user_id": 106201241, "from_user_id_str": "106201241", "from_user_name": "First 5 Sacramento", "geo": null, "id": 148839532320665600, "id_str": "148839532320665601", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/655382866/First_5_Twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/655382866/First_5_Twitter_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Looking for some FREE Christmas Eve fun??? The Sacramento Zoo AND Fairytale Town are offering FREE admission on... http://t.co/FguQGsUq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:04 +0000", "from_user": "ThatOneTay_Me", "from_user_id": 374872179, "from_user_id_str": "374872179", "from_user_name": "Talaya ", "geo": null, "id": 148839532186443780, "id_str": "148839532186443777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701142683/p_nk_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701142683/p_nk_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "practice was actually fun 2day :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:04 +0000", "from_user": "alittleumbrella", "from_user_id": 38357234, "from_user_id_str": "38357234", "from_user_name": "Lesli", "geo": null, "id": 148839531972526080, "id_str": "148839531972526081", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1368720399/leslogo-for-social-media_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1368720399/leslogo-for-social-media_normal.gif", "source": "<a href="http://triberr.com" rel="nofollow">Triberr</a>", "text": "10 Cute Snowman Sweet Treat Ideas For Christmas or Winter Holiday Fun! http://t.co/VUCthMFD via @Linetteg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:04 +0000", "from_user": "Wave_TheSwallow", "from_user_id": 215291335, "from_user_id_str": "215291335", "from_user_name": "Wave The Swallow", "geo": null, "id": 148839531934789630, "id_str": "148839531934789632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1375036372/Waveavvie_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1375036372/Waveavvie_normal.JPG", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": ">It wouldn't be fun if I did, Jet...<", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:04 +0000", "from_user": "kuffyschoolteam", "from_user_id": 114265580, "from_user_id_str": "114265580", "from_user_name": "kuforiji .. K.O.P", "geo": null, "id": 148839531616022530, "id_str": "148839531616022528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689498210/331375380_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689498210/331375380_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "0_oRT @IfyKush: Girls jus wann' have fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:04 +0000", "from_user": "mkosoff", "from_user_id": 81965252, "from_user_id_str": "81965252", "from_user_name": "maya", "geo": null, "id": 148839531196592130, "id_str": "148839531196592129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1643281111/Photo_on_2011-09-23_at_08.41_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643281111/Photo_on_2011-09-23_at_08.41_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@toricote YES! So fun to listen to! I always sleep on the best bands for so long!", "to_user": "toricote", "to_user_id": 72192408, "to_user_id_str": "72192408", "to_user_name": "Tori Cote", "in_reply_to_status_id": 148839064022417400, "in_reply_to_status_id_str": "148839064022417408"}, +{"created_at": "Mon, 19 Dec 2011 18:58:04 +0000", "from_user": "ZionTheChamp", "from_user_id": 372123223, "from_user_id_str": "372123223", "from_user_name": "Zion Harvey", "geo": null, "id": 148839530907185150, "id_str": "148839530907185153", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1540807264/9D1jxH7f_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1540807264/9D1jxH7f_normal", "source": "<a href="http://www.tweet-r.com" rel="nofollow">Tweetr</a>", "text": "RT @Thugniificent: If small girls are fun sized, are fat chicks king sized?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:03 +0000", "from_user": "RomeroPinedaGF", "from_user_id": 312515199, "from_user_id_str": "312515199", "from_user_name": "fernando romero", "geo": null, "id": 148839529455960060, "id_str": "148839529455960064", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689975309/in_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689975309/in_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@LaryReyes jajjajaja nombe!! is too much damn fun!!! capaz y me kiere verguear si le digo q lo estan viviendo!", "to_user": "LaryReyes", "to_user_id": 170139395, "to_user_id_str": "170139395", "to_user_name": "Gina Larissa Reyes", "in_reply_to_status_id": 148839311297609730, "in_reply_to_status_id_str": "148839311297609728"}, +{"created_at": "Mon, 19 Dec 2011 18:58:03 +0000", "from_user": "babyitsliz_", "from_user_id": 256856448, "from_user_id_str": "256856448", "from_user_name": "elizabethh\\u2665[;", "geo": null, "id": 148839527891472400, "id_str": "148839527891472384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1645966407/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645966407/profile_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "people always make fun of the way i say rude and seriously >.<", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:03 +0000", "from_user": "iDoItBiGsTeVe", "from_user_id": 429394435, "from_user_id_str": "429394435", "from_user_name": "Swag King", "geo": null, "id": 148839527606255600, "id_str": "148839527606255616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1676712254/lookin_fly_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676712254/lookin_fly_normal.jpg", "source": "<a href="http://www.samsungmobile.com" rel="nofollow">Samsung Mobile</a>", "text": "@Nikaaa_Please i had a lot of fun! It was like 7 girls and one other guy in our booth! I brought everyone drinks so it was fun!", "to_user": "Nikaaa_Please", "to_user_id": 402858075, "to_user_id_str": "402858075", "to_user_name": "Nicole Marie Roland"}, +{"created_at": "Mon, 19 Dec 2011 18:58:03 +0000", "from_user": "_AngieKnowsBest", "from_user_id": 89227090, "from_user_id_str": "89227090", "from_user_name": "AngelaJanaee ;)", "geo": null, "id": 148839526641565700, "id_str": "148839526641565696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662276818/Snapshot_20111128_7_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662276818/Snapshot_20111128_7_normal.JPG", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@unBRE_lievable have fun mija", "to_user": "unBRE_lievable", "to_user_id": 178671779, "to_user_id_str": "178671779", "to_user_name": "Susie Carmicheal", "in_reply_to_status_id": 148839429321146370, "in_reply_to_status_id_str": "148839429321146369"}, +{"created_at": "Mon, 19 Dec 2011 18:58:02 +0000", "from_user": "gogocomm", "from_user_id": 14164216, "from_user_id_str": "14164216", "from_user_name": "Erin Lumley", "geo": null, "id": 148839525651718140, "id_str": "148839525651718144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1550729345/Erin_Lumley_3096_Edit_Edit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1550729345/Erin_Lumley_3096_Edit_Edit_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@billbarhydt @mvia_Mobile @PETER_KELLY had so much fun at the m-Via holiday party- 2012 is going to be a great year for you guys!", "to_user": "billbarhydt", "to_user_id": 896141, "to_user_id_str": "896141", "to_user_name": "Bill Barhydt"}, +{"created_at": "Mon, 19 Dec 2011 18:58:02 +0000", "from_user": "NIK00_jadee", "from_user_id": 328020702, "from_user_id_str": "328020702", "from_user_name": "(J)ust (B)elieve", "geo": null, "id": 148839524330504200, "id_str": "148839524330504192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700587676/XogUlXxB_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700587676/XogUlXxB_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Awww, Wakey Wakey Jaden(: RT \"@officialjaden: Waking Up Is Not Fun http://t.co/ZQsHoMzG\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:02 +0000", "from_user": "KCnelly", "from_user_id": 194470455, "from_user_id_str": "194470455", "from_user_name": "Kevin Cornell", "geo": null, "id": 148839522401136640, "id_str": "148839522401136641", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1516397183/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1516397183/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@erynnnnxox ahh bein sick is no fun I dnt have time to be sick lol", "to_user": "erynnnnxox", "to_user_id": 413478281, "to_user_id_str": "413478281", "to_user_name": "erynn suzanne", "in_reply_to_status_id": 148817297337892860, "in_reply_to_status_id_str": "148817297337892864"}, +{"created_at": "Mon, 19 Dec 2011 18:58:01 +0000", "from_user": "VroomSkurr", "from_user_id": 433902658, "from_user_id_str": "433902658", "from_user_name": "$", "geo": null, "id": 148839521918783500, "id_str": "148839521918783490", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691494457/vstv_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691494457/vstv_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@LaToyaMaureen: MAKING LOVE vs. GREAT SEX? What do you prefer and WHY? #LMquestion #RTthis\\u201D great sex it's jus more fun to me", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:01 +0000", "from_user": "MonikaAllstar", "from_user_id": 84454561, "from_user_id_str": "84454561", "from_user_name": "Monica (:", "geo": null, "id": 148839521470001150, "id_str": "148839521470001153", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686141191/IMG_0270_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686141191/IMG_0270_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@ZachAllStar Hahahahaha have fun (:", "to_user": "ZachAllStar", "to_user_id": 41272427, "to_user_id_str": "41272427", "to_user_name": "Zach Porter"}, +{"created_at": "Mon, 19 Dec 2011 18:58:01 +0000", "from_user": "HauntedRockCake", "from_user_id": 43146008, "from_user_id_str": "43146008", "from_user_name": "Sandra Kelley", "geo": null, "id": 148839521339973630, "id_str": "148839521339973632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696841936/09122011527_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696841936/09122011527_2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@Rapscallion__ Sounds like fun :)", "to_user": "Rapscallion__", "to_user_id": 763979, "to_user_id_str": "763979", "to_user_name": "John", "in_reply_to_status_id": 148839424912916480, "in_reply_to_status_id_str": "148839424912916480"}, +{"created_at": "Mon, 19 Dec 2011 18:58:01 +0000", "from_user": "shontuck", "from_user_id": 282170056, "from_user_id_str": "282170056", "from_user_name": "Swag'dUpMoney", "geo": null, "id": 148839521226719230, "id_str": "148839521226719232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698855452/skeMDd02_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698855452/skeMDd02_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "It was Fun while it Lasted :Youve been Exposed #TebowBookTitles", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:01 +0000", "from_user": "Kelz_da_Best", "from_user_id": 375077819, "from_user_id_str": "375077819", "from_user_name": "Kelz ", "geo": null, "id": 148839520551448580, "id_str": "148839520551448577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1656312178/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656312178/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Strip by @chrisbrown is crazy he look like he having mad fun which is what i love about him he wildnfree n always living life to the fullest", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:01 +0000", "from_user": "rip_dq01", "from_user_id": 314085701, "from_user_id_str": "314085701", "from_user_name": "Andrew Henderson", "geo": null, "id": 148839520312373250, "id_str": "148839520312373248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689368669/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689368669/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "If I was home alone like he was I would had too much fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:01 +0000", "from_user": "sarUHruska", "from_user_id": 373460819, "from_user_id_str": "373460819", "from_user_name": "sarah hruska", "geo": null, "id": 148839519121178620, "id_str": "148839519121178624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681868723/4ifO61vN_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681868723/4ifO61vN_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "hahaha we should not be having this much fun @cassidi_dye & @BrandyFamuliner", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:01 +0000", "from_user": "dommyavalanche", "from_user_id": 29369423, "from_user_id_str": "29369423", "from_user_name": "Dominick Russo", "geo": null, "id": 148839518043250700, "id_str": "148839518043250688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702487691/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702487691/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@_lisaerin being a bar slave is fun though.", "to_user": "_lisaerin", "to_user_id": 21450823, "to_user_id_str": "21450823", "to_user_name": "lisa erin", "in_reply_to_status_id": 148839143823249400, "in_reply_to_status_id_str": "148839143823249408"}, +{"created_at": "Mon, 19 Dec 2011 18:58:01 +0000", "from_user": "Salsaking3", "from_user_id": 328533838, "from_user_id_str": "328533838", "from_user_name": "Craig ", "geo": null, "id": 148839517812559870, "id_str": "148839517812559872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1425585473/Salsaking_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1425585473/Salsaking_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ThePumpMassage @metalmatt79 Layla's pix look great. She is a real bundle of fun. Think I know who I will be seeing tomorrow lol xx", "to_user": "ThePumpMassage", "to_user_id": 196536812, "to_user_id_str": "196536812", "to_user_name": "ThePump", "in_reply_to_status_id": 148808592798134270, "in_reply_to_status_id_str": "148808592798134272"}, +{"created_at": "Mon, 19 Dec 2011 18:58:00 +0000", "from_user": "erominzy", "from_user_id": 67652957, "from_user_id_str": "67652957", "from_user_name": "virginekljfdksmfkdel", "geo": null, "id": 148839515144994800, "id_str": "148839515144994816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695282638/tumblr_lvkx5uf91r1r2m0tjfesfe_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695282638/tumblr_lvkx5uf91r1r2m0tjfesfe_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @DANJAER: @erominzy I WAS THE FIRST ONE TO WISH YOU?!?!?! I FEEL SO NOSS RN YYYYAAY I HOPE YOU HAVE FUN TAKE LOADS OF QT PICS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:00 +0000", "from_user": "AmoOwNii", "from_user_id": 327592066, "from_user_id_str": "327592066", "from_user_name": "\\u2654 \\u00C0l \\u00C1mn\\u00E0 \\u2654", "geo": null, "id": 148839513932828670, "id_str": "148839513932828673", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1676878252/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676878252/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "To girls, shopping isn't fun. It's a mission", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:59 +0000", "from_user": "onemanvariety", "from_user_id": 40818059, "from_user_id_str": "40818059", "from_user_name": "Chris Ruggiero", "geo": null, "id": 148839512477413380, "id_str": "148839512477413377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1531564631/chris_for_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1531564631/chris_for_twitter_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Thanks for a fun weekend! #GKholiday", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:59 +0000", "from_user": "GFVeganGrandma", "from_user_id": 22562338, "from_user_id_str": "22562338", "from_user_name": "Michelle Lippe", "geo": null, "id": 148839511852453900, "id_str": "148839511852453888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1633278895/100x100_Fifi_and_Michelle_June_2011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633278895/100x100_Fifi_and_Michelle_June_2011_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Common herbs and spices that can heal you! Won't it be fun trying to incorporate them all everyday for better health? http://t.co/RBcH8DcO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:59 +0000", "from_user": "YouHoesAintSafe", "from_user_id": 85739924, "from_user_id_str": "85739924", "from_user_name": "Incredible Hulk", "geo": null, "id": 148839511802126340, "id_str": "148839511802126336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701191902/avatar_normal.JPEG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701191902/avatar_normal.JPEG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @SirJuiceALot: As I thought they would..They slandered Tebow on SNL cause of his faith..Media always twistin & makin fun of religion..smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:01 +0000", "from_user": "kendraslove", "from_user_id": 53261910, "from_user_id_str": "53261910", "from_user_name": "Kendra Johnson \\n", "geo": null, "id": 148839511529496580, "id_str": "148839511529496576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1677449069/EGf853kD_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677449069/EGf853kD_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I had so much fun http://t.co/SvR12Djh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:59 +0000", "from_user": "MrsLilyPotter", "from_user_id": 330523876, "from_user_id_str": "330523876", "from_user_name": "Jily Limes Evotter", "geo": null, "id": 148839511525310460, "id_str": "148839511525310465", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697960555/James__Harry_and_Lily007_Christmas_4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697960555/James__Harry_and_Lily007_Christmas_4_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Carowling GOOD FOR YOU. HAVE FUN SMILING AND LAUGHING. No, really, Imma go off and make myself a new Twitter background xD laters", "to_user": "Carowling", "to_user_id": 71887240, "to_user_id_str": "71887240", "to_user_name": "Carofly", "in_reply_to_status_id": 148839287335567360, "in_reply_to_status_id_str": "148839287335567360"}, +{"created_at": "Mon, 19 Dec 2011 18:57:59 +0000", "from_user": "idaluv", "from_user_id": 48621123, "from_user_id_str": "48621123", "from_user_name": "ida munoz", "geo": null, "id": 148839509633675260, "id_str": "148839509633675264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1692071453/Miami_20Beach-20111213-00473_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692071453/Miami_20Beach-20111213-00473_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @IamRicoLove: Pretty girls have the most fun..... #TTLO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:58 +0000", "from_user": "Lizzie222", "from_user_id": 20805710, "from_user_id_str": "20805710", "from_user_name": "Lizzie Wiles", "geo": null, "id": 148839508580904960, "id_str": "148839508580904960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1422375479/Picture2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1422375479/Picture2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "Had a go on my nana's stair lift! Was fun! \\uD83D\\uDCBA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:58 +0000", "from_user": "lyncake", "from_user_id": 246026298, "from_user_id_str": "246026298", "from_user_name": "\\u2113yn\\u2661", "geo": null, "id": 148839507742031870, "id_str": "148839507742031872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1684165243/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684165243/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@chloebooxoxo have fun at Disneyland lovely! c:", "to_user": "chloebooxoxo", "to_user_id": 417559340, "to_user_id_str": "417559340", "to_user_name": "Chloe", "in_reply_to_status_id": 148838379235188740, "in_reply_to_status_id_str": "148838379235188736"}, +{"created_at": "Mon, 19 Dec 2011 18:57:58 +0000", "from_user": "angianowvpu3", "from_user_id": 384099608, "from_user_id_str": "384099608", "from_user_name": "Angiano Slater", "geo": null, "id": 148839507351961600, "id_str": "148839507351961600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1570353595/f_30_w_0016_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1570353595/f_30_w_0016_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SourCherry_Dark http://t.co/9AxyqSMv", "to_user": "SourCherry_Dark", "to_user_id": 191610169, "to_user_id_str": "191610169", "to_user_name": "Mady ou Vick ", "in_reply_to_status_id": 148737673245372400, "in_reply_to_status_id_str": "148737673245372417"}, +{"created_at": "Mon, 19 Dec 2011 18:57:58 +0000", "from_user": "tllinley", "from_user_id": 353940493, "from_user_id_str": "353940493", "from_user_name": "Timothy Linley II", "geo": null, "id": 148839506760572930, "id_str": "148839506760572928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700895720/393254_2874640468062_1321441377_3165562_1142640686_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700895720/393254_2874640468062_1321441377_3165562_1142640686_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I want to have some fun today. Bored!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:58 +0000", "from_user": "JackMizanin", "from_user_id": 160314696, "from_user_id_str": "160314696", "from_user_name": "Jack", "geo": null, "id": 148839506462781440, "id_str": "148839506462781440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702586718/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702586718/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@CMPunkDODfan moaning is fun whore -_-", "to_user": "CMPunkDODfan", "to_user_id": 117133860, "to_user_id_str": "117133860", "to_user_name": "Stephen. ", "in_reply_to_status_id": 148839126848897020, "in_reply_to_status_id_str": "148839126848897025"}, +{"created_at": "Mon, 19 Dec 2011 18:57:58 +0000", "from_user": "jo1foster", "from_user_id": 22113670, "from_user_id_str": "22113670", "from_user_name": "Jo Foster", "geo": null, "id": 148839505573576700, "id_str": "148839505573576704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1672708409/jo1foster_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672708409/jo1foster_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@carolduncan sooo cool! I'm jealous. And how fun for your boys too! (am off to listen to the i/v now...)", "to_user": "carolduncan", "to_user_id": 20032587, "to_user_id_str": "20032587", "to_user_name": "Carol Duncan", "in_reply_to_status_id": 148721282450591740, "in_reply_to_status_id_str": "148721282450591745"}, +{"created_at": "Mon, 19 Dec 2011 18:57:57 +0000", "from_user": "Official_HollyA", "from_user_id": 310511243, "from_user_id_str": "310511243", "from_user_name": "Holly Ashby", "geo": null, "id": 148839504445308930, "id_str": "148839504445308928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1569822219/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1569822219/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "You know why I know your sick and all. And your pissed off that you can't do all the fun stuff I do, BUT DON'T. DO NOT TAKE IT OUT ON ME", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:57 +0000", "from_user": "Innate_Beauty_", "from_user_id": 382166086, "from_user_id_str": "382166086", "from_user_name": "Monty Monroe", "geo": null, "id": 148839504415965200, "id_str": "148839504415965184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674841213/k9HN1aMa_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674841213/k9HN1aMa_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "That was... Fun lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:57 +0000", "from_user": "shyralocc", "from_user_id": 83988587, "from_user_id_str": "83988587", "from_user_name": "shyra", "geo": null, "id": 148839503690342400, "id_str": "148839503690342400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699755381/331645756_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699755381/331645756_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Did everyone have fun last night at the Kappa Party ?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:57 +0000", "from_user": "sydnee_xo", "from_user_id": 282397913, "from_user_id_str": "282397913", "from_user_name": "Sydnee", "geo": null, "id": 148839503619035140, "id_str": "148839503619035136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1671003839/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671003839/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "lots of fun things to do :) what to do first?!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:57 +0000", "from_user": "MsAshliKiaraPLZ", "from_user_id": 127040414, "from_user_id_str": "127040414", "from_user_name": "Southern \\u03B2ellaMafia", "geo": null, "id": 148839502616600580, "id_str": "148839502616600576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1679215143/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679215143/profile_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@JuicyBlackBerry i mean REALLLLLLL fun lol dm !", "to_user": "JuicyBlackBerry", "to_user_id": 151540217, "to_user_id_str": "151540217", "to_user_name": "JAZZY LATOYE", "in_reply_to_status_id": 148839200643493900, "in_reply_to_status_id_str": "148839200643493888"}, +{"created_at": "Mon, 19 Dec 2011 18:57:57 +0000", "from_user": "Merthh", "from_user_id": 23543766, "from_user_id_str": "23543766", "from_user_name": "Matthew Robitaille", "geo": null, "id": 148839502507552770, "id_str": "148839502507552768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1398110046/twitpic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1398110046/twitpic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "oh my. FL studio, my new love. I'm going to have some FUN with this.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:57 +0000", "from_user": "Bailey_Wilkins_", "from_user_id": 384354343, "from_user_id_str": "384354343", "from_user_name": "Bailey Wilkins", "geo": null, "id": 148839501463162880, "id_str": "148839501463162880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687555798/VkbPNqA1_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687555798/VkbPNqA1_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Today has been a very boring but fun day. #happpyyyy :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:57 +0000", "from_user": "laureldenise", "from_user_id": 19831681, "from_user_id_str": "19831681", "from_user_name": "laurel denise smith", "geo": null, "id": 148839501186342900, "id_str": "148839501186342912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1324714924/facebook_apr2011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1324714924/facebook_apr2011_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@lucyOphoto don't have one. cut felt in circle shapes and pin them in styrofoam cones. so easy peasy and fun!", "to_user": "lucyOphoto", "to_user_id": 110230043, "to_user_id_str": "110230043", "to_user_name": "Lucy Taylor", "in_reply_to_status_id": 148595135465267200, "in_reply_to_status_id_str": "148595135465267200"}, +{"created_at": "Mon, 19 Dec 2011 18:57:56 +0000", "from_user": "DhaWAY_iiMTHUGn", "from_user_id": 385719131, "from_user_id_str": "385719131", "from_user_name": "bitch\\CHECK MaTE\\u221A", "geo": null, "id": 148839500653666300, "id_str": "148839500653666304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690457265/Ky94XwOW_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690457265/Ky94XwOW_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@AqiaBestfrenn: School was fun because for the first time to me!\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:56 +0000", "from_user": "vallpreciado", "from_user_id": 233439459, "from_user_id_str": "233439459", "from_user_name": "Valerie Preciado", "geo": null, "id": 148839500494274560, "id_str": "148839500494274560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1362735832/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1362735832/image_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for iPhone</a>", "text": "Hung over Blllla can I just lay in bed all day -______- but last night was too much fun !!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:56 +0000", "from_user": "FeliciRose", "from_user_id": 15723433, "from_user_id_str": "15723433", "from_user_name": "Fe :)) ", "geo": null, "id": 148839499902885900, "id_str": "148839499902885888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688019727/FU_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688019727/FU_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@WeirdSid So do I. It's so much fun to raise them. I'm going to order some runner ducks this spring. I can't wait.", "to_user": "WeirdSid", "to_user_id": 42195950, "to_user_id_str": "42195950", "to_user_name": "Liza Radley", "in_reply_to_status_id": 148839148936118270, "in_reply_to_status_id_str": "148839148936118272"}, +{"created_at": "Mon, 19 Dec 2011 18:57:56 +0000", "from_user": "leesutton", "from_user_id": 5512872, "from_user_id_str": "5512872", "from_user_name": "Lee Sutton", "geo": null, "id": 148839499609276400, "id_str": "148839499609276416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1346904708/40322_457546810309_584160309_6703348_8303014_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1346904708/40322_457546810309_584160309_6703348_8303014_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Finished the kids #xmas shopping at @RobotShop. Some great fun and educational (but who really cares about that) gifts for the kids!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:56 +0000", "from_user": "HRHmojie", "from_user_id": 349619541, "from_user_id_str": "349619541", "from_user_name": "moji", "geo": null, "id": 148839499475066880, "id_str": "148839499475066881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1611870853/328842507_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611870853/328842507_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Again!lola retweets.yaay!RT @ajewealth: :D RT @Loladipo: RTIt was fun hanging out with @bhabolu, @Loladipo nd @tola_moyo.. love u babes :*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:56 +0000", "from_user": "Seun_J_Ayeni", "from_user_id": 302282854, "from_user_id_str": "302282854", "from_user_name": "\\u00A4Seun\\u00A4 Ayeni\\u263A\\u2665", "geo": null, "id": 148839498443268100, "id_str": "148839498443268096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698648874/africa_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698648874/africa_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Fun Day with Feyikemi today :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:55 +0000", "from_user": "ReporterLois", "from_user_id": 429554664, "from_user_id_str": "429554664", "from_user_name": "Lois Lane", "geo": null, "id": 148839496744583170, "id_str": "148839496744583168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701276898/happy_lolo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701276898/happy_lolo_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "@Gotham_Catwoman Haha! I don't why I suddenly decided to fly around Metropolis! It was fun.", "to_user": "Gotham_Catwoman", "to_user_id": 382325981, "to_user_id_str": "382325981", "to_user_name": "Selina Kyle"}, +{"created_at": "Mon, 19 Dec 2011 18:57:55 +0000", "from_user": "guypbenson", "from_user_id": 16193222, "from_user_id_str": "16193222", "from_user_name": "Guy Benson", "geo": null, "id": 148839496018960400, "id_str": "148839496018960384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1531997685/GBheadshotmed1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1531997685/GBheadshotmed1_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\"Women\" and \"men.\" RT @RasmussenPoll: 39% see holiday gift shopping as fun experience, 38% consider it an unpleasant chore...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:57:58 +0000", "from_user": "tllinley", "from_user_id": 353940493, "from_user_id_str": "353940493", "from_user_name": "Timothy Linley II", "geo": null, "id": 148839506760572930, "id_str": "148839506760572928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700895720/393254_2874640468062_1321441377_3165562_1142640686_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700895720/393254_2874640468062_1321441377_3165562_1142640686_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I want to have some fun today. Bored!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:58 +0000", "from_user": "JackMizanin", "from_user_id": 160314696, "from_user_id_str": "160314696", "from_user_name": "Jack", "geo": null, "id": 148839506462781440, "id_str": "148839506462781440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702586718/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702586718/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@CMPunkDODfan moaning is fun whore -_-", "to_user": "CMPunkDODfan", "to_user_id": 117133860, "to_user_id_str": "117133860", "to_user_name": "Stephen. ", "in_reply_to_status_id": 148839126848897020, "in_reply_to_status_id_str": "148839126848897025"}, +{"created_at": "Mon, 19 Dec 2011 18:57:58 +0000", "from_user": "jo1foster", "from_user_id": 22113670, "from_user_id_str": "22113670", "from_user_name": "Jo Foster", "geo": null, "id": 148839505573576700, "id_str": "148839505573576704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1672708409/jo1foster_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672708409/jo1foster_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@carolduncan sooo cool! I'm jealous. And how fun for your boys too! (am off to listen to the i/v now...)", "to_user": "carolduncan", "to_user_id": 20032587, "to_user_id_str": "20032587", "to_user_name": "Carol Duncan", "in_reply_to_status_id": 148721282450591740, "in_reply_to_status_id_str": "148721282450591745"}, +{"created_at": "Mon, 19 Dec 2011 18:57:57 +0000", "from_user": "Official_HollyA", "from_user_id": 310511243, "from_user_id_str": "310511243", "from_user_name": "Holly Ashby", "geo": null, "id": 148839504445308930, "id_str": "148839504445308928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1569822219/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1569822219/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "You know why I know your sick and all. And your pissed off that you can't do all the fun stuff I do, BUT DON'T. DO NOT TAKE IT OUT ON ME", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:57 +0000", "from_user": "Innate_Beauty_", "from_user_id": 382166086, "from_user_id_str": "382166086", "from_user_name": "Monty Monroe", "geo": null, "id": 148839504415965200, "id_str": "148839504415965184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674841213/k9HN1aMa_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674841213/k9HN1aMa_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "That was... Fun lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:57 +0000", "from_user": "shyralocc", "from_user_id": 83988587, "from_user_id_str": "83988587", "from_user_name": "shyra", "geo": null, "id": 148839503690342400, "id_str": "148839503690342400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699755381/331645756_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699755381/331645756_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Did everyone have fun last night at the Kappa Party ?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:57 +0000", "from_user": "sydnee_xo", "from_user_id": 282397913, "from_user_id_str": "282397913", "from_user_name": "Sydnee", "geo": null, "id": 148839503619035140, "id_str": "148839503619035136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1671003839/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671003839/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "lots of fun things to do :) what to do first?!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:57 +0000", "from_user": "MsAshliKiaraPLZ", "from_user_id": 127040414, "from_user_id_str": "127040414", "from_user_name": "Southern \\u03B2ellaMafia", "geo": null, "id": 148839502616600580, "id_str": "148839502616600576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1679215143/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679215143/profile_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@JuicyBlackBerry i mean REALLLLLLL fun lol dm !", "to_user": "JuicyBlackBerry", "to_user_id": 151540217, "to_user_id_str": "151540217", "to_user_name": "JAZZY LATOYE", "in_reply_to_status_id": 148839200643493900, "in_reply_to_status_id_str": "148839200643493888"}, +{"created_at": "Mon, 19 Dec 2011 18:57:57 +0000", "from_user": "Merthh", "from_user_id": 23543766, "from_user_id_str": "23543766", "from_user_name": "Matthew Robitaille", "geo": null, "id": 148839502507552770, "id_str": "148839502507552768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1398110046/twitpic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1398110046/twitpic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "oh my. FL studio, my new love. I'm going to have some FUN with this.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:57 +0000", "from_user": "Bailey_Wilkins_", "from_user_id": 384354343, "from_user_id_str": "384354343", "from_user_name": "Bailey Wilkins", "geo": null, "id": 148839501463162880, "id_str": "148839501463162880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687555798/VkbPNqA1_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687555798/VkbPNqA1_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Today has been a very boring but fun day. #happpyyyy :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:57 +0000", "from_user": "laureldenise", "from_user_id": 19831681, "from_user_id_str": "19831681", "from_user_name": "laurel denise smith", "geo": null, "id": 148839501186342900, "id_str": "148839501186342912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1324714924/facebook_apr2011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1324714924/facebook_apr2011_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@lucyOphoto don't have one. cut felt in circle shapes and pin them in styrofoam cones. so easy peasy and fun!", "to_user": "lucyOphoto", "to_user_id": 110230043, "to_user_id_str": "110230043", "to_user_name": "Lucy Taylor", "in_reply_to_status_id": 148595135465267200, "in_reply_to_status_id_str": "148595135465267200"}, +{"created_at": "Mon, 19 Dec 2011 18:57:56 +0000", "from_user": "DhaWAY_iiMTHUGn", "from_user_id": 385719131, "from_user_id_str": "385719131", "from_user_name": "bitch\\CHECK MaTE\\u221A", "geo": null, "id": 148839500653666300, "id_str": "148839500653666304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690457265/Ky94XwOW_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690457265/Ky94XwOW_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@AqiaBestfrenn: School was fun because for the first time to me!\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:56 +0000", "from_user": "vallpreciado", "from_user_id": 233439459, "from_user_id_str": "233439459", "from_user_name": "Valerie Preciado", "geo": null, "id": 148839500494274560, "id_str": "148839500494274560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1362735832/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1362735832/image_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for iPhone</a>", "text": "Hung over Blllla can I just lay in bed all day -______- but last night was too much fun !!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:56 +0000", "from_user": "FeliciRose", "from_user_id": 15723433, "from_user_id_str": "15723433", "from_user_name": "Fe :)) ", "geo": null, "id": 148839499902885900, "id_str": "148839499902885888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688019727/FU_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688019727/FU_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@WeirdSid So do I. It's so much fun to raise them. I'm going to order some runner ducks this spring. I can't wait.", "to_user": "WeirdSid", "to_user_id": 42195950, "to_user_id_str": "42195950", "to_user_name": "Liza Radley", "in_reply_to_status_id": 148839148936118270, "in_reply_to_status_id_str": "148839148936118272"}, +{"created_at": "Mon, 19 Dec 2011 18:57:56 +0000", "from_user": "leesutton", "from_user_id": 5512872, "from_user_id_str": "5512872", "from_user_name": "Lee Sutton", "geo": null, "id": 148839499609276400, "id_str": "148839499609276416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1346904708/40322_457546810309_584160309_6703348_8303014_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1346904708/40322_457546810309_584160309_6703348_8303014_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Finished the kids #xmas shopping at @RobotShop. Some great fun and educational (but who really cares about that) gifts for the kids!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:56 +0000", "from_user": "HRHmojie", "from_user_id": 349619541, "from_user_id_str": "349619541", "from_user_name": "moji", "geo": null, "id": 148839499475066880, "id_str": "148839499475066881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1611870853/328842507_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611870853/328842507_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Again!lola retweets.yaay!RT @ajewealth: :D RT @Loladipo: RTIt was fun hanging out with @bhabolu, @Loladipo nd @tola_moyo.. love u babes :*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:56 +0000", "from_user": "Seun_J_Ayeni", "from_user_id": 302282854, "from_user_id_str": "302282854", "from_user_name": "\\u00A4Seun\\u00A4 Ayeni\\u263A\\u2665", "geo": null, "id": 148839498443268100, "id_str": "148839498443268096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698648874/africa_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698648874/africa_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Fun Day with Feyikemi today :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:55 +0000", "from_user": "ReporterLois", "from_user_id": 429554664, "from_user_id_str": "429554664", "from_user_name": "Lois Lane", "geo": null, "id": 148839496744583170, "id_str": "148839496744583168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701276898/happy_lolo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701276898/happy_lolo_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "@Gotham_Catwoman Haha! I don't why I suddenly decided to fly around Metropolis! It was fun.", "to_user": "Gotham_Catwoman", "to_user_id": 382325981, "to_user_id_str": "382325981", "to_user_name": "Selina Kyle"}, +{"created_at": "Mon, 19 Dec 2011 18:57:55 +0000", "from_user": "guypbenson", "from_user_id": 16193222, "from_user_id_str": "16193222", "from_user_name": "Guy Benson", "geo": null, "id": 148839496018960400, "id_str": "148839496018960384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1531997685/GBheadshotmed1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1531997685/GBheadshotmed1_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\"Women\" and \"men.\" RT @RasmussenPoll: 39% see holiday gift shopping as fun experience, 38% consider it an unpleasant chore...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:55 +0000", "from_user": "SpaceCakeGurl", "from_user_id": 267670654, "from_user_id_str": "267670654", "from_user_name": "Inja", "geo": null, "id": 148839495947657200, "id_str": "148839495947657216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1671994733/P0S55iQy_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671994733/P0S55iQy_normal", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @hansonquotes: "Life is not about just forgetting serious stuff and having fun." - Taylor Hanson", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:55 +0000", "from_user": "babyluvv94", "from_user_id": 30300857, "from_user_id_str": "30300857", "from_user_name": "Amani :)", "geo": null, "id": 148839495662444540, "id_str": "148839495662444544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701634880/hmm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701634880/hmm_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @_MICROSNREEBOKS If you broke...Atlanta isn't any fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:55 +0000", "from_user": "CinhaBreezy", "from_user_id": 236492195, "from_user_id_str": "236492195", "from_user_name": "@ChrisBrown \\u2665", "geo": null, "id": 148839494592892930, "id_str": "148839494592892928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702489085/Eu_MeuChris___normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702489085/Eu_MeuChris___normal.JPG", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @Wale: #slightwork video .. Directed by @chrisbrown.... Had a lot of fun there! Video comin soon http://t.co/oWseZBSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:55 +0000", "from_user": "R_Yucha", "from_user_id": 307110754, "from_user_id_str": "307110754", "from_user_name": "Ryan Yucha", "geo": null, "id": 148839494341242880, "id_str": "148839494341242881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1372973068/246786_10150267776167433_774862432_8861576_742397_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1372973068/246786_10150267776167433_774862432_8861576_742397_n_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Working allll day. #fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:55 +0000", "from_user": "BaboGum", "from_user_id": 153459937, "from_user_id_str": "153459937", "from_user_name": "Samuel Lim Wei Siang", "geo": null, "id": 148839494064406530, "id_str": "148839494064406529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662660601/w459_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662660601/w459_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Jojofonggg Very!! HAHA. Very fun to see first timer play code red", "to_user": "Jojofonggg", "to_user_id": 63139785, "to_user_id_str": "63139785", "to_user_name": "Joreen Emelda (:", "in_reply_to_status_id": 148839002433265660, "in_reply_to_status_id_str": "148839002433265664"}, +{"created_at": "Mon, 19 Dec 2011 18:57:54 +0000", "from_user": "_nouraaly", "from_user_id": 422308326, "from_user_id_str": "422308326", "from_user_name": "Maricella Dominguez", "geo": null, "id": 148839492487348220, "id_str": "148839492487348224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700819858/Snapshot_20111217_52_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700819858/Snapshot_20111217_52_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "FUN FACT OF THE DAY: CPW was established due to a distribution based strategic alliance between Nestle and General Mills in 1991 !!! -____-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:54 +0000", "from_user": "denisseacr", "from_user_id": 271977038, "from_user_id_str": "271977038", "from_user_name": "denisse ", "geo": null, "id": 148839491816259600, "id_str": "148839491816259584", "iso_language_code": "is", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1675843369/DSC00758_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675843369/DSC00758_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Not fun. http://t.co/21AP9aZ1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:54 +0000", "from_user": "LittleCamomille", "from_user_id": 241285568, "from_user_id_str": "241285568", "from_user_name": "Camille Duquesne", "geo": null, "id": 148839490864168960, "id_str": "148839490864168961", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1616319338/Kevin_and_Danielle_Bass_ball_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616319338/Kevin_and_Danielle_Bass_ball_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @sugarscape: New Pics! One Direction photoshoot for Nintendo: It's One Direction having fun in their role as ambassadors for ... http://t.co/zmQgFJWU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:54 +0000", "from_user": "hazeleyze16", "from_user_id": 40931271, "from_user_id_str": "40931271", "from_user_name": "Hazeleyze", "geo": null, "id": 148839490310504450, "id_str": "148839490310504448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1609969968/Mypictures128-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609969968/Mypictures128-1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Good, MorTink TweetHearts!! Today is a good day! Enjoy & Have fun~Stay outta Trouble~Trouble~Trouble (Bernie Mac Voice) LOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:54 +0000", "from_user": "leggomybego", "from_user_id": 298261475, "from_user_id_str": "298261475", "from_user_name": "Grace Begovich", "geo": null, "id": 148839488787988480, "id_str": "148839488787988480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1661853566/flowererer_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661853566/flowererer_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@NoAverageMonday you do for fun, then you need to find a new hobby.it's not cool or entertaining. You're pathetic.", "to_user": "NoAverageMonday", "to_user_id": 326447391, "to_user_id_str": "326447391", "to_user_name": "Austin Monday", "in_reply_to_status_id": 148811641880973300, "in_reply_to_status_id_str": "148811641880973313"}, +{"created_at": "Mon, 19 Dec 2011 18:57:53 +0000", "from_user": "marrettvxkbs2", "from_user_id": 395831971, "from_user_id_str": "395831971", "from_user_name": "Marrett Sherman", "geo": null, "id": 148839488074956800, "id_str": "148839488074956800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1600732771/imagesCAI68RH7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600732771/imagesCAI68RH7_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"PRICEJAYY: Finnally have a job! dollar\" have fun dressing up as an elf in webbs! ;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:53 +0000", "from_user": "K_Scizzzy", "from_user_id": 321567636, "from_user_id_str": "321567636", "from_user_name": "Kelsey Scott :)", "geo": null, "id": 148839488062369800, "id_str": "148839488062369793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1619106273/111007_200513_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619106273/111007_200513_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "So glad you're having fun with her.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:53 +0000", "from_user": "1DGuatemalaOff", "from_user_id": 437548226, "from_user_id_str": "437548226", "from_user_name": "1D Guatemala", "geo": null, "id": 148839487777153020, "id_str": "148839487777153024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694755351/310670_241598082566872_210180192375328_704868_2071179998_n_normal.jpg", "profile_image_url_https": null, "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "I'm working with my dad :( its not fun. My dad doesn't let me get on twitter. NOOOOTTT! I want one direction always and no :(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:53 +0000", "from_user": "Es_Vanee", "from_user_id": 373160185, "from_user_id_str": "373160185", "from_user_name": "Vanessa Reyes", "geo": null, "id": 148839487261261820, "id_str": "148839487261261825", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675835419/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675835419/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I had a fun night :p .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:53 +0000", "from_user": "TomlinsonsSwag", "from_user_id": 136497872, "from_user_id_str": "136497872", "from_user_name": "\\u221A \\u03DC\\u01A6\\u03B1\\u03B7o", "geo": null, "id": 148839486145576960, "id_str": "148839486145576962", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700279957/tumblr_lwcqb311Ep1r785rdo1_500_large_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700279957/tumblr_lwcqb311Ep1r785rdo1_500_large_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @NiallOfficial: Legooo! Southend! Gona be fun, get involved!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:53 +0000", "from_user": "CassieBoo", "from_user_id": 36519465, "from_user_id_str": "36519465", "from_user_name": "CeeThizzle (:", "geo": null, "id": 148839485839392770, "id_str": "148839485839392768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692189700/315937_151329588293923_100002506490023_253793_3335045_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692189700/315937_151329588293923_100002506490023_253793_3335045_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Tonights bout to be fun :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:53 +0000", "from_user": "IAmReynolds", "from_user_id": 299670468, "from_user_id_str": "299670468", "from_user_name": "Steve Reynolds", "geo": null, "id": 148839485357035520, "id_str": "148839485357035521", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1599166266/7BB40DF9-DB85-45D4-B26B-9445ECBADBCF_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599166266/7BB40DF9-DB85-45D4-B26B-9445ECBADBCF_normal", "source": "<a href="http://itunes.apple.com/us/app/chirpie-2.0/id488586627?mt=8&uo=4" rel="nofollow">Chirpie 2.0 on iOS</a>", "text": "I might be the new King of Succailure\\u2122 taken the crown from @millsustwo after this little fun ditty http://t.co/ZbsZoCBm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:53 +0000", "from_user": "adrianjejeps", "from_user_id": 143304358, "from_user_id_str": "143304358", "from_user_name": "Adrian Ram\\u00EDrez", "geo": null, "id": 148839484681760770, "id_str": "148839484681760768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686540252/211280_525956184_5463757_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686540252/211280_525956184_5463757_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Te los vai a hacer? :o RT @ilancaballero: Ready for dreadlocks! haha, this is gonna b fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:53 +0000", "from_user": "PRceo", "from_user_id": 19559747, "from_user_id_str": "19559747", "from_user_name": "Matt Russell", "geo": null, "id": 148839484669177860, "id_str": "148839484669177856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/148528119/headshots_005_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/148528119/headshots_005_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "This was a fun one! MT @RussellPublic A 10th anvrsry reflection, from '07! What did we do w/Carl's Jr & the Today Show? http://t.co/woMUJR3c", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:52 +0000", "from_user": "Bitch_ImAmber", "from_user_id": 168311260, "from_user_id_str": "168311260", "from_user_name": "Amber Lives Life", "geo": null, "id": 148839483725455360, "id_str": "148839483725455360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680347268/me__jania__and_ki_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680347268/me__jania__and_ki_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SchoolOfRocky: Had soooo much fun with @MAJORpayne_ @Merry_KRYSmass @BottlesOf_Hen @Caleeb523 @Rapidity856 @SirAlimo_III @Bitch_ImAmber love those guys!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:52 +0000", "from_user": "imSerayBelieber", "from_user_id": 274158416, "from_user_id_str": "274158416", "from_user_name": "Seray Oztek", "geo": null, "id": 148839482664300540, "id_str": "148839482664300544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1671867854/c442d3ce163511e1abb01231381b65e3_7-tile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671867854/c442d3ce163511e1abb01231381b65e3_7-tile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "If you cant laugh at yourself you cant have fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:52 +0000", "from_user": "AlexChopjian", "from_user_id": 36764415, "from_user_id_str": "36764415", "from_user_name": "Chop", "geo": null, "id": 148839481766723600, "id_str": "148839481766723585", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701238266/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701238266/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@arabswag33 thanks, have fun in the swag capital of the world!", "to_user": "arabswag33", "to_user_id": 340669205, "to_user_id_str": "340669205", "to_user_name": "Fahad Yousif", "in_reply_to_status_id": 148839122205818880, "in_reply_to_status_id_str": "148839122205818880"}, +{"created_at": "Mon, 19 Dec 2011 18:57:52 +0000", "from_user": "Lex_Forever", "from_user_id": 419043592, "from_user_id_str": "419043592", "from_user_name": "Alexis \\u2665", "geo": null, "id": 148839480655216640, "id_str": "148839480655216640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702441382/twit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702441382/twit_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @WizKhalllifa: #IWasThatKid that covered my hands in glue , let it dry , and then peeled it off for fun...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:52 +0000", "from_user": "mackenziemunoz3", "from_user_id": 240072141, "from_user_id_str": "240072141", "from_user_name": "mackenzie munoz", "geo": null, "id": 148839480231596030, "id_str": "148839480231596033", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1506704791/dddd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1506704791/dddd_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MorganKegley really... :( and its fun!", "to_user": "MorganKegley", "to_user_id": 358379469, "to_user_id_str": "358379469", "to_user_name": "Morgan18", "in_reply_to_status_id": 148797474444820480, "in_reply_to_status_id_str": "148797474444820480"}, +{"created_at": "Mon, 19 Dec 2011 18:57:51 +0000", "from_user": "taywas", "from_user_id": 222335804, "from_user_id_str": "222335804", "from_user_name": "Taylor Wasylk", "geo": null, "id": 148839478843289600, "id_str": "148839478843289600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1306929850/232323232_fp733_2_nu_3344_-52___9_WSNRCG_3638943735337nu0mrj_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1306929850/232323232_fp733_2_nu_3344_-52___9_WSNRCG_3638943735337nu0mrj_normal.jpeg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "forgot how much fun it is to bench with @jonesygirl13 . this should be fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:51 +0000", "from_user": "Broskiona_OP", "from_user_id": 123097806, "from_user_id_str": "123097806", "from_user_name": "Brandie.Ward", "geo": null, "id": 148839478650351600, "id_str": "148839478650351617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1679769197/P1080474_pi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679769197/P1080474_pi_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Nicole_zamora Had a crap load of fun at the party and wish you could of came to the movies.", "to_user": "Nicole_zamora", "to_user_id": 165479543, "to_user_id_str": "165479543", "to_user_name": "karen Nicole zamora ", "in_reply_to_status_id": 148200373176381440, "in_reply_to_status_id_str": "148200373176381440"}, +{"created_at": "Mon, 19 Dec 2011 18:57:51 +0000", "from_user": "JamesCulvinator", "from_user_id": 303973925, "from_user_id_str": "303973925", "from_user_name": "James Culverhouse", "geo": null, "id": 148839477886976000, "id_str": "148839477886976000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1688814770/newf_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688814770/newf_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@megcakes Just hold on to tomorrow night, there'll be tons of random, drama filled fun :D", "to_user": "megcakes", "to_user_id": 23428860, "to_user_id_str": "23428860", "to_user_name": "Megan Vaughan-Ellis", "in_reply_to_status_id": 148831943662899200, "in_reply_to_status_id_str": "148831943662899201"}, +{"created_at": "Mon, 19 Dec 2011 18:57:51 +0000", "from_user": "LoveThisDayEvnt", "from_user_id": 385718364, "from_user_id_str": "385718364", "from_user_name": "Kara Delay", "geo": null, "id": 148839477786312700, "id_str": "148839477786312704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1574622597/IMG_1936-1_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1574622597/IMG_1936-1_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Mad libs wedding fun! http://t.co/aTitLKtW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:51 +0000", "from_user": "C_lairen", "from_user_id": 25084734, "from_user_id_str": "25084734", "from_user_name": "Claire", "geo": null, "id": 148839477496909820, "id_str": "148839477496909825", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1549745253/84471337d3a040149e940789b3d44089_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1549745253/84471337d3a040149e940789b3d44089_7_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "@josnowflake @babykatesss Have fun!", "to_user": "josnowflake", "to_user_id": 55224353, "to_user_id_str": "55224353", "to_user_name": "Jo Winter"}, +{"created_at": "Mon, 19 Dec 2011 18:57:51 +0000", "from_user": "emmyrogo", "from_user_id": 44837632, "from_user_id_str": "44837632", "from_user_name": "Emilee Rose Gore", "geo": null, "id": 148839476679016450, "id_str": "148839476679016448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696144654/331560488_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696144654/331560488_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @ZodiacZone: #Sagittarius live life by their own rules. Full of fun, laughs and lots of good sex.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:51 +0000", "from_user": "Manon_deVinck", "from_user_id": 261179949, "from_user_id_str": "261179949", "from_user_name": "Manon de Vinck \\u2654", "geo": null, "id": 148839476553203700, "id_str": "148839476553203712", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697050863/Photo_du_74469796-12-___20.41_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697050863/Photo_du_74469796-12-___20.41_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MllxWendy Il faut s'habituer.. Sinon il est fun :)", "to_user": "MllxWendy", "to_user_id": 67640707, "to_user_id_str": "67640707", "to_user_name": "Wendy R \\u2714", "in_reply_to_status_id": 148839209216647170, "in_reply_to_status_id_str": "148839209216647168"}, +{"created_at": "Mon, 19 Dec 2011 18:57:51 +0000", "from_user": "JJeevz", "from_user_id": 94087545, "from_user_id_str": "94087545", "from_user_name": "Jeffrey Jeevz ", "geo": null, "id": 148839476154728450, "id_str": "148839476154728448", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662543877/IMG_1332_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662543877/IMG_1332_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Demo_LBM: Ik kijk nu pas Dizaster vs DNA// have fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:50 +0000", "from_user": "FreeFunInAustin", "from_user_id": 21874395, "from_user_id_str": "21874395", "from_user_name": "Heidi ", "geo": null, "id": 148839475743694850, "id_str": "148839475743694849", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1467630433/Picture_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1467630433/Picture_1_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Fun With Shipping Paper and Gift Wrap Tubes http://t.co/PzXtQOdJ #Austin", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:50 +0000", "from_user": "BMWLand", "from_user_id": 28082751, "from_user_id_str": "28082751", "from_user_name": "BMWLand", "geo": null, "id": 148839473558462460, "id_str": "148839473558462465", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/133464249/bmwland_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/133464249/bmwland_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#bmwland Re: POP QUIZ! go on have a go! it's a bit of fun for BMWLand: Shadow of the Hierophant. Steve Hackett... http://t.co/qrMgK6Hn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:50 +0000", "from_user": "AdoraLavidoca", "from_user_id": 174166544, "from_user_id_str": "174166544", "from_user_name": "Husna Anith", "geo": null, "id": 148839473436831740, "id_str": "148839473436831744", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701673277/DSC8910_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701673277/DSC8910_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "Everytime saya beli Pringles, saya akan masukkan dua pringles dlm mulut saya and pretend i'm a duck. IT'S FUN! :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:50 +0000", "from_user": "SheriSaskatoon", "from_user_id": 25334163, "from_user_id_str": "25334163", "from_user_name": "Sheri Saskatoon", "geo": null, "id": 148839473155805200, "id_str": "148839473155805184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1692876005/888_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692876005/888_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@DincTeam We're visiting in at the end of Jan! Any Scottsdale-area tips on fun stuff to do?", "to_user": "DincTeam", "to_user_id": 299879810, "to_user_id_str": "299879810", "to_user_name": "Dinc"}, +{"created_at": "Mon, 19 Dec 2011 18:57:50 +0000", "from_user": "XxSLWxX", "from_user_id": 182833698, "from_user_id_str": "182833698", "from_user_name": "Sarah Whistler ", "geo": null, "id": 148839472556015600, "id_str": "148839472556015616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1643397534/329930746_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643397534/329930746_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Princess all tucked up in bed now! She's had a very busy fun day! :D hope she has a good nits sleep #FingersCrossed :) \\u2665", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:49 +0000", "from_user": "NateBerkusShow", "from_user_id": 106585620, "from_user_id_str": "106585620", "from_user_name": "TheNateShow.com", "geo": null, "id": 148839470748270600, "id_str": "148839470748270595", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1367387800/_DC_6357_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1367387800/_DC_6357_copy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @InsideMizrahi: Don't forget - Isaac is on the @NateBerkusShow w/ fun & fresh holiday party outfit ideas! 2pm in NYC, check local listings for time & chanl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:49 +0000", "from_user": "itsMadisonM", "from_user_id": 32733714, "from_user_id_str": "32733714", "from_user_name": "Madison McFarland", "geo": null, "id": 148839469431259140, "id_str": "148839469431259136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697658619/Photo_on_2011-12-16_at_19.23__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697658619/Photo_on_2011-12-16_at_19.23__2_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@lynzeekeith awe it does look cool!! Have fun on vacation!! :)", "to_user": "lynzeekeith", "to_user_id": 168403167, "to_user_id_str": "168403167", "to_user_name": "Lynzee Keith", "in_reply_to_status_id": 148775533805707260, "in_reply_to_status_id_str": "148775533805707264"}, +{"created_at": "Mon, 19 Dec 2011 18:57:49 +0000", "from_user": "NEAL_DownToMe", "from_user_id": 374506907, "from_user_id_str": "374506907", "from_user_name": "Spooch O'Neal \\u2714", "geo": null, "id": 148839467908730880, "id_str": "148839467908730881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1654686187/spooch_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654686187/spooch_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "so what we get drunk ? so what we smoke weed ? were juaa havin fun . we dnt care who sees .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:49 +0000", "from_user": "court_nelson23", "from_user_id": 392359621, "from_user_id_str": "392359621", "from_user_name": "courtney nelson", "geo": null, "id": 148839467879378940, "id_str": "148839467879378944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1667153033/555_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667153033/555_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @sfalkowskii: @court_nelson23 mMmMm, I found these black sparkley mini dresses #owow (; it's going to be toOo fun(;", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:48 +0000", "from_user": "MRS_GORGEOUS1", "from_user_id": 205556483, "from_user_id_str": "205556483", "from_user_name": "Nikki B Me", "geo": null, "id": 148839467417993200, "id_str": "148839467417993218", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683906902/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683906902/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@RichbergENT LOL I do it for fun I dnt ever chase anything wht God has for me it is for me! I'm not tryin to be an artist tho. ;)", "to_user": "RichbergENT", "to_user_id": 27102351, "to_user_id_str": "27102351", "to_user_name": "RichbergEnt", "in_reply_to_status_id": 148838466426376200, "in_reply_to_status_id_str": "148838466426376192"}, +{"created_at": "Mon, 19 Dec 2011 18:57:48 +0000", "from_user": "ShydJustGotReal", "from_user_id": 111470720, "from_user_id_str": "111470720", "from_user_name": "iSayRudeThings&Shitt", "geo": null, "id": 148839465601867780, "id_str": "148839465601867776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700782965/179808_1867597648350_1193310274_32297829_2834356_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700782965/179808_1867597648350_1193310274_32297829_2834356_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@PLAING0RGE0US i mad it fun ... it was #lowkey Weak", "to_user": "PLAING0RGE0US", "to_user_id": 86630930, "to_user_id_str": "86630930", "to_user_name": "Gorgeous :))", "in_reply_to_status_id": 148839344680079360, "in_reply_to_status_id_str": "148839344680079360"}, +{"created_at": "Mon, 19 Dec 2011 18:57:48 +0000", "from_user": "Evenn_Steven", "from_user_id": 357269902, "from_user_id_str": "357269902", "from_user_name": "Stevie Burja", "geo": null, "id": 148839465316655100, "id_str": "148839465316655104", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675879448/image201108180007_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675879448/image201108180007_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @askalllski: Dentist isn't fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:48 +0000", "from_user": "ThatBradleyR", "from_user_id": 134201583, "from_user_id_str": "134201583", "from_user_name": "Bradley Robinson", "geo": null, "id": 148839465039839230, "id_str": "148839465039839234", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1608496483/scene_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608496483/scene_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@claremurrayxx it was fun, im at home so no, i will not paint anymore, no school is better than school, regardless", "to_user": "claremurrayxx", "to_user_id": 420584239, "to_user_id_str": "420584239", "to_user_name": "claremurray", "in_reply_to_status_id": 148839145194786800, "in_reply_to_status_id_str": "148839145194786817"}, +{"created_at": "Mon, 19 Dec 2011 18:57:48 +0000", "from_user": "devilishbeautii", "from_user_id": 227466099, "from_user_id_str": "227466099", "from_user_name": "raven swinger", "geo": null, "id": 148839464939171840, "id_str": "148839464939171840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1389449564/145-001__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1389449564/145-001__1__normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@Blakk_Beautyy: @devilishbeautii yess mam?\" What you doing I got some pictures to make fun of", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:48 +0000", "from_user": "chinoyv", "from_user_id": 47222578, "from_user_id_str": "47222578", "from_user_name": "Yvette Chino", "geo": null, "id": 148839464779792400, "id_str": "148839464779792384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1615725938/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615725938/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I had fun too!!! Eliza dragged me all the way to the top!! and Eric was everywhere! Lol \\n@mely_hurtado", "to_user": "mely_hurtado", "to_user_id": 80885190, "to_user_id_str": "80885190", "to_user_name": "Mely Hurtado ", "in_reply_to_status_id": 148837735183040500, "in_reply_to_status_id_str": "148837735183040512"}, +{"created_at": "Mon, 19 Dec 2011 18:57:48 +0000", "from_user": "AMotherhoodBlog", "from_user_id": 25093130, "from_user_id_str": "25093130", "from_user_name": "Alyssa", "geo": null, "id": 148839464444243970, "id_str": "148839464444243968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1657270174/07aad7d7-c83d-42fe-b2db-f3cbcc8b787d_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657270174/07aad7d7-c83d-42fe-b2db-f3cbcc8b787d_normal.png", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@LookWhosGrowing Good! Back home now...I was 1 of 3 parents who showed up :-S It was fun tho :)", "to_user": "LookWhosGrowing", "to_user_id": 143205071, "to_user_id_str": "143205071", "to_user_name": "Teresa Reid", "in_reply_to_status_id": 148836613307375600, "in_reply_to_status_id_str": "148836613307375616"}, +{"created_at": "Mon, 19 Dec 2011 18:57:48 +0000", "from_user": "sonarsquirrel", "from_user_id": 335897828, "from_user_id_str": "335897828", "from_user_name": "FUCK YEAHHH", "geo": null, "id": 148839464301629440, "id_str": "148839464301629440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700641015/__________2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700641015/__________2_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I uploaded a @YouTube video http://t.co/T1TkR1qC Sonar fun home trening", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:47 +0000", "from_user": "garyjudy1965", "from_user_id": 262310902, "from_user_id_str": "262310902", "from_user_name": "Beth Bue", "geo": null, "id": 148839461642444800, "id_str": "148839461642444801", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Dress warm on Wednesday night as we are adding Caroling to our fun evening!!! See note below about a game we will... http://t.co/6L5R6eIv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:47 +0000", "from_user": "kawaiimanko", "from_user_id": 53302911, "from_user_id_str": "53302911", "from_user_name": "fucking Niki", "geo": null, "id": 148839461227212800, "id_str": "148839461227212800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1678356173/lunapic_132323063294115_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678356173/lunapic_132323063294115_2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@missarahnicole definitely! hope there's one tonight ^^ & thankyous~ you have fun today too~!", "to_user": "missarahnicole", "to_user_id": 27049676, "to_user_id_str": "27049676", "to_user_name": "Miss Sarah", "in_reply_to_status_id": 148839039083089920, "in_reply_to_status_id_str": "148839039083089920"}, +{"created_at": "Mon, 19 Dec 2011 18:57:47 +0000", "from_user": "MichelleHughes_", "from_user_id": 76866234, "from_user_id_str": "76866234", "from_user_name": "Michelle Hughes", "geo": null, "id": 148839460426104830, "id_str": "148839460426104833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1554668599/backgroundANTOC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554668599/backgroundANTOC_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "WOOT I love some #Christmas fun @aaronmarcusson", "to_user": "aaronmarcusson", "to_user_id": 49799851, "to_user_id_str": "49799851", "to_user_name": "Aaron Marcusson", "in_reply_to_status_id": 148837469784252400, "in_reply_to_status_id_str": "148837469784252416"}, +{"created_at": "Mon, 19 Dec 2011 18:57:46 +0000", "from_user": "xoxo_LoveStar", "from_user_id": 165833049, "from_user_id_str": "165833049", "from_user_name": "Aaliyah (: $$$", "geo": null, "id": 148839458844844030, "id_str": "148839458844844033", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702248703/387457_262997303753874_100001308182336_658062_463652368_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702248703/387457_262997303753874_100001308182336_658062_463652368_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@NotUrAvgJyne_ awww, thank you kuda :) i miss you! we had fun togetha tha times we hung out lol", "to_user": "NotUrAvgJyne_", "to_user_id": 270672382, "to_user_id_str": "270672382", "to_user_name": "NotYourAveragedJayne", "in_reply_to_status_id": 148839278699491330, "in_reply_to_status_id_str": "148839278699491328"}, +{"created_at": "Mon, 19 Dec 2011 18:57:46 +0000", "from_user": "AccioJoeJonas", "from_user_id": 160642248, "from_user_id_str": "160642248", "from_user_name": "Andrea JonasWeasley\\u2665", "geo": null, "id": 148839458387673100, "id_str": "148839458387673088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692450070/tumblr_lw659a7N8u1r08r0to5_250_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692450070/tumblr_lw659a7N8u1r08r0to5_250_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @NiallOfficial: Legooo! Southend! Gona be fun, get involved!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:46 +0000", "from_user": "EdisLoud", "from_user_id": 364191559, "from_user_id_str": "364191559", "from_user_name": "Edward Chhun", "geo": null, "id": 148839457892745200, "id_str": "148839457892745216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1667269995/307276_10150400077646318_504286317_9740987_881707434_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667269995/307276_10150400077646318_504286317_9740987_881707434_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@AMDeeva hahah agreed! hope you're havin fun in Vegas!", "to_user": "AMDeeva", "to_user_id": 393481227, "to_user_id_str": "393481227", "to_user_name": "Amanda DeAngelo", "in_reply_to_status_id": 148839193374765060, "in_reply_to_status_id_str": "148839193374765056"}, +{"created_at": "Mon, 19 Dec 2011 18:57:46 +0000", "from_user": "__LeaveItToMe", "from_user_id": 430362256, "from_user_id_str": "430362256", "from_user_name": "January22th_MyDay!!", "geo": null, "id": 148839455757828100, "id_str": "148839455757828096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695300891/385929_2899703853925_1300262870_33208590_61992694_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695300891/385929_2899703853925_1300262870_33208590_61992694_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@__LeaveItToMe Okay...have fun", "to_user": "__LeaveItToMe", "to_user_id": 430362256, "to_user_id_str": "430362256", "to_user_name": "January22th_MyDay!!", "in_reply_to_status_id": 148838666427564030, "in_reply_to_status_id_str": "148838666427564032"}, +{"created_at": "Mon, 19 Dec 2011 18:57:45 +0000", "from_user": "tyde_xo", "from_user_id": 266930590, "from_user_id_str": "266930590", "from_user_name": "Tyde", "geo": null, "id": 148839454814117900, "id_str": "148839454814117891", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699106232/share_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699106232/share_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "lol, that was fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:45 +0000", "from_user": "Buttermore", "from_user_id": 19476511, "from_user_id_str": "19476511", "from_user_name": "Robert J. Buttermore", "geo": null, "id": 148839454294016000, "id_str": "148839454294016001", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1671537097/228680_10100696552599925_12406872_63694501_556564_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671537097/228680_10100696552599925_12406872_63694501_556564_n_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "@Twalkz would be fun to run together. 17:40 is the goal!", "to_user": "Twalkz", "to_user_id": 284744598, "to_user_id_str": "284744598", "to_user_name": "Tyler walker"}, +{"created_at": "Mon, 19 Dec 2011 18:57:45 +0000", "from_user": "Feek_YimZayne", "from_user_id": 144911646, "from_user_id_str": "144911646", "from_user_name": "#YimZayne", "geo": null, "id": 148839453992030200, "id_str": "148839453992030208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698918053/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698918053/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @BrittneyPatrese: \"@Feek_YimZayne: Damn Y'all...Da Big Boss/Wife @MrsFeek_Yim Told Me Chill Smh Lol\" *fun ends*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:45 +0000", "from_user": "aarif234", "from_user_id": 98825591, "from_user_id_str": "98825591", "from_user_name": "M Aarif Khan", "geo": null, "id": 148839453660676100, "id_str": "148839453660676097", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1135848811/Snapshot_20100227_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1135848811/Snapshot_20100227_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@InheritanceCP Ok. Type Google gravity and hit 'I'm feeling lucky'. Now watch the fun. Also now do a search, it'll keep amazing you.", "to_user": "InheritanceCP", "to_user_id": 404283614, "to_user_id_str": "404283614", "to_user_name": "Christopher Paolini", "in_reply_to_status_id": 148838705673674750, "in_reply_to_status_id_str": "148838705673674756"}, +{"created_at": "Mon, 19 Dec 2011 18:57:45 +0000", "from_user": "5berto", "from_user_id": 85306942, "from_user_id_str": "85306942", "from_user_name": "HumberCarvajalChitty", "geo": null, "id": 148839451584499700, "id_str": "148839451584499713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/704138364/hicc2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/704138364/hicc2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Alyssa_Milano Happy Happy life anniversary, have fun share your joy and happiness with other is the best way to celebrate, Cheers", "to_user": "Alyssa_Milano", "to_user_id": 26642006, "to_user_id_str": "26642006", "to_user_name": "Alyssa Milano", "in_reply_to_status_id": 148836474232651780, "in_reply_to_status_id_str": "148836474232651776"}, +{"created_at": "Mon, 19 Dec 2011 18:57:44 +0000", "from_user": "budgetbabe", "from_user_id": 14513082, "from_user_id_str": "14513082", "from_user_name": "The Budget Babe", "geo": null, "id": 148839449848061950, "id_str": "148839449848061952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1640706670/twitter-newbride_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640706670/twitter-newbride_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Thanks! Its been fun so far RT @JaneWatch2: @budgetbabe Good luck on your Jane by Design challenges!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:44 +0000", "from_user": "MrsParker___", "from_user_id": 103389988, "from_user_id_str": "103389988", "from_user_name": "Whit\\uE418\\uE31C\\uE314\\uE13E\\uE113", "geo": null, "id": 148839449286029300, "id_str": "148839449286029312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1672741390/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672741390/image_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @__Shelbz__: Yo, #VICETEAMPARTY is 12 days away DEC31ST from 8-1am, in dearborn @ the maltese club, $5 before 9. SO BE THERE GET/GIVE DANCES AND HAVE FUN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:44 +0000", "from_user": "robertballew", "from_user_id": 23795800, "from_user_id_str": "23795800", "from_user_name": "Robert Ballew", "geo": null, "id": 148839449126641660, "id_str": "148839449126641664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1158269351/Super_Hero_02_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1158269351/Super_Hero_02_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Old Navy's don't seem to be as FUN as when I was manager. What happened to smiling employees & happy customers? :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:44 +0000", "from_user": "bkaTinaBina", "from_user_id": 41243490, "from_user_id_str": "41243490", "from_user_name": "AKT", "geo": null, "id": 148839449034362880, "id_str": "148839449034362880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699330778/cropped_307152_275692589120731_100000399753708_934834_1962054507_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699330778/cropped_307152_275692589120731_100000399753708_934834_1962054507_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "@JuiceDatThangJG welp glad you had fun.", "to_user": "JuiceDatThangJG", "to_user_id": 88772247, "to_user_id_str": "88772247", "to_user_name": "Cashmere Gordon", "in_reply_to_status_id": 148839001229508600, "in_reply_to_status_id_str": "148839001229508609"}, +{"created_at": "Mon, 19 Dec 2011 18:57:44 +0000", "from_user": "EliotGates", "from_user_id": 238546075, "from_user_id_str": "238546075", "from_user_name": "Eliot John Gates", "geo": null, "id": 148839448145170430, "id_str": "148839448145170433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1612379110/Oct_2011_005_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612379110/Oct_2011_005_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@AdamJBaker97 What can i say? It's proven that bad guys have all the fun. >:)", "to_user": "AdamJBaker97", "to_user_id": 244877239, "to_user_id_str": "244877239", "to_user_name": "Adam Joseph Baker", "in_reply_to_status_id": 148836820866695170, "in_reply_to_status_id_str": "148836820866695168"}, +{"created_at": "Mon, 19 Dec 2011 18:57:44 +0000", "from_user": "CEOLaCoty", "from_user_id": 35295507, "from_user_id_str": "35295507", "from_user_name": "AAHH IMMA CRAZY HOE", "geo": null, "id": 148839447356653570, "id_str": "148839447356653568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1672307388/coty_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672307388/coty_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @Skinnyboi_ROC: @CEOLaCoty we had fun lastnight", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:44 +0000", "from_user": "ahh_shad", "from_user_id": 265442368, "from_user_id_str": "265442368", "from_user_name": "Mohammed Arshad", "geo": null, "id": 148839447251787780, "id_str": "148839447251787776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1621050280/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621050280/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@structx yeah fun ah starbucks \\uD83D\\uDE03", "to_user": "structx", "to_user_id": 272890761, "to_user_id_str": "272890761", "to_user_name": "Fee", "in_reply_to_status_id": 148801179013480450, "in_reply_to_status_id_str": "148801179013480448"}, +{"created_at": "Mon, 19 Dec 2011 18:57:43 +0000", "from_user": "rustilyn", "from_user_id": 16428001, "from_user_id_str": "16428001", "from_user_name": "rusti", "geo": null, "id": 148839445775396860, "id_str": "148839445775396864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1670611335/edited_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670611335/edited_pic_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@PrettyAllTrue have fun and good luck!! :) @BrandonPDuncan", "to_user": "PrettyAllTrue", "to_user_id": 117567840, "to_user_id_str": "117567840", "to_user_name": "Kris", "in_reply_to_status_id": 148839236467048450, "in_reply_to_status_id_str": "148839236467048450"}, +{"created_at": "Mon, 19 Dec 2011 18:57:43 +0000", "from_user": "NeAsHa_DGAF", "from_user_id": 188448256, "from_user_id_str": "188448256", "from_user_name": "Roneasha Douglas", "geo": null, "id": 148839445238517760, "id_str": "148839445238517761", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701669621/PicsArt1324187087159_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701669621/PicsArt1324187087159_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "bt im still goin 2 hve fun becuz i hve someone 2 entertain me dhA WHOLE TIME teehee.*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:43 +0000", "from_user": "rawr2ari", "from_user_id": 298764457, "from_user_id_str": "298764457", "from_user_name": "Ari Dean", "geo": null, "id": 148839444781342720, "id_str": "148839444781342722", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685370027/rawr2ari8_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685370027/rawr2ari8_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @WizKhalllifa: #IWasThatKid that covered my hands in glue , let it dry , and then peeled it off for fun...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:43 +0000", "from_user": "ImBeverlyBTW", "from_user_id": 204004844, "from_user_id_str": "204004844", "from_user_name": "Beverly Rogers", "geo": null, "id": 148839444328349700, "id_str": "148839444328349696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700637661/beverlysenior_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700637661/beverlysenior_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Markeya said I'm no fun to be around .... true.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:43 +0000", "from_user": "GotMUNCHHH", "from_user_id": 221885271, "from_user_id_str": "221885271", "from_user_name": "nojaR.srM", "geo": null, "id": 148839444231888900, "id_str": "148839444231888897", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1683491329/120911124506_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683491329/120911124506_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@Tasha_Miller Lmfaoooooo! ! Done with u , have fun", "to_user": "Tasha_Miller", "to_user_id": 86545670, "to_user_id_str": "86545670", "to_user_name": "Natasha Miller", "in_reply_to_status_id": 148838811298832400, "in_reply_to_status_id_str": "148838811298832384"}, +{"created_at": "Mon, 19 Dec 2011 18:57:43 +0000", "from_user": "emmalivpowell", "from_user_id": 51699702, "from_user_id_str": "51699702", "from_user_name": "Emma Powell", "geo": null, "id": 148839443703402500, "id_str": "148839443703402496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1577008085/fdfdfdfd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1577008085/fdfdfdfd_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I need sun, cocktails, pool, party, fun all day, all night. I need tenerife now! 7 weeks.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:43 +0000", "from_user": "MissSliim", "from_user_id": 334466218, "from_user_id_str": "334466218", "from_user_name": "tish", "geo": null, "id": 148839442642251780, "id_str": "148839442642251776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1640906653/MissSliim_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640906653/MissSliim_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@_BlkDahlia lol that's no fun....don't forget about my trick I told u about....it's gon b so tight", "to_user": "_BlkDahlia", "to_user_id": 111051026, "to_user_id_str": "111051026", "to_user_name": "Cora Graves", "in_reply_to_status_id": 148838811810541570, "in_reply_to_status_id_str": "148838811810541568"}, +{"created_at": "Mon, 19 Dec 2011 18:57:43 +0000", "from_user": "Honey_Bunny_", "from_user_id": 58098796, "from_user_id_str": "58098796", "from_user_name": " Honey Bunny", "geo": null, "id": 148839442579341300, "id_str": "148839442579341313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/320794241/picture1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/320794241/picture1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@JensonButton ...You practise the fun looks that are good in fun advertising(like the teamradio ad style) =0P", "to_user": "JensonButton", "to_user_id": 23440052, "to_user_id_str": "23440052", "to_user_name": "Jenson Button"}, +{"created_at": "Mon, 19 Dec 2011 18:57:43 +0000", "from_user": "TimDoyle19", "from_user_id": 58992245, "from_user_id_str": "58992245", "from_user_name": "Tim Doyle", "geo": null, "id": 148839442306707460, "id_str": "148839442306707456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1609938891/369969_780225569_355664012_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609938891/369969_780225569_355664012_n_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "RT @WyattGooden: Interview tonight with the guys at Race Talk Radio, gonna be fun! Show starts at 8pmEST, I'll be on at around... http://t.co/QgqdYify", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:42 +0000", "from_user": "Valerie_J_GG", "from_user_id": 190069997, "from_user_id_str": "190069997", "from_user_name": "Valerie ", "geo": null, "id": 148839441824354300, "id_str": "148839441824354304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695943159/Auburn_Hair_Fall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695943159/Auburn_Hair_Fall_normal.jpg", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "Did I mention I love December in FL? Gorgeous weather & scenery for sun, fun, & run. (@ Hollis Gardens) [pic]: http://t.co/Vu6r5liJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:42 +0000", "from_user": "liobrien", "from_user_id": 46666884, "from_user_id_str": "46666884", "from_user_name": "Lisa O Brien", "geo": null, "id": 148839440637362180, "id_str": "148839440637362177", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1235927418/Cedars072_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1235927418/Cedars072_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "These Festive Angry Birds Decorations Are Really An Fun Interactive Game http://t.co/5pZ32Gk9 via @simplyzesty", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:42 +0000", "from_user": "smaknificent", "from_user_id": 102116847, "from_user_id_str": "102116847", "from_user_name": "Smaknificent ", "geo": null, "id": 148839440075333630, "id_str": "148839440075333632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1649925110/Smak_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649925110/Smak_normal.jpeg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "Man facebook aint fun at all. everyone takes the shit too fuckin serious.they seem all extra boring.Lighten UP will ya! #DRINK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:42 +0000", "from_user": "JoshDua", "from_user_id": 132016760, "from_user_id_str": "132016760", "from_user_name": "Josh Dua", "geo": null, "id": 148839440066945020, "id_str": "148839440066945024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1320199045/188598_101628719921966_100002245146677_10960_5704278_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1320199045/188598_101628719921966_100002245146677_10960_5704278_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@FOREALPro have fun with the fam!", "to_user": "FOREALPro", "to_user_id": 20177656, "to_user_id_str": "20177656", "to_user_name": "Steen Hunter", "in_reply_to_status_id": 148838899588923400, "in_reply_to_status_id_str": "148838899588923392"} +, +{"created_at": "Mon, 19 Dec 2011 18:57:42 +0000", "from_user": "haleysheram", "from_user_id": 35589080, "from_user_id_str": "35589080", "from_user_name": "Haley Sheram", "geo": null, "id": 148839438989013000, "id_str": "148839438989012993", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1659601841/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659601841/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@kristenbooty have fun at the doctor ;)", "to_user": "kristenbooty", "to_user_id": 370206301, "to_user_id_str": "370206301", "to_user_name": "Kristen Bailey"}, +{"created_at": "Mon, 19 Dec 2011 18:57:42 +0000", "from_user": "Awesome_bby", "from_user_id": 161446281, "from_user_id_str": "161446281", "from_user_name": "CassieLove\\u2665", "geo": null, "id": 148839438133362700, "id_str": "148839438133362688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1606754610/Photo41j_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606754610/Photo41j_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Your gonna be the one, while im out having fun .. Your gonna be the one thats broken ;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:41 +0000", "from_user": "brunggg", "from_user_id": 88975903, "from_user_id_str": "88975903", "from_user_name": "Brittany Rung", "geo": null, "id": 148839437978185730, "id_str": "148839437978185728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697718171/twit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697718171/twit_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "today was so fun until about 4 minutes ago -__-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:41 +0000", "from_user": "tlrpm", "from_user_id": 12254302, "from_user_id_str": "12254302", "from_user_name": "Beau Dean", "geo": null, "id": 148839437940441100, "id_str": "148839437940441088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1545629765/avatar_normal.JPEG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545629765/avatar_normal.JPEG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@ThePluckyCharms Does the mispelling take you anywhere fun?", "to_user": "ThePluckyCharms", "to_user_id": 35202959, "to_user_id_str": "35202959", "to_user_name": "Plucky Charms", "in_reply_to_status_id": 148836907986599940, "in_reply_to_status_id_str": "148836907986599936"}, +{"created_at": "Mon, 19 Dec 2011 18:57:41 +0000", "from_user": "Josh_Davis_37", "from_user_id": 333097160, "from_user_id_str": "333097160", "from_user_name": "Josh Davis", "geo": null, "id": 148839436984135680, "id_str": "148839436984135680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1591807895/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591807895/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@_HauptToooIt_ coming from a future hillbilly, have fun trying to get service up here lol", "to_user": "_HauptToooIt_", "to_user_id": 346005099, "to_user_id_str": "346005099", "to_user_name": "Caroline Haupt", "in_reply_to_status_id": 148829180992303100, "in_reply_to_status_id_str": "148829180992303107"}, +{"created_at": "Mon, 19 Dec 2011 18:57:41 +0000", "from_user": "Redd_Swishaa", "from_user_id": 412688575, "from_user_id_str": "412688575", "from_user_name": "Black Diva", "geo": null, "id": 148839434006167550, "id_str": "148839434006167553", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694851174/2011-12-14_21.32.24_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694851174/2011-12-14_21.32.24_normal.png", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@LV_4rm_Da_WV It ain't no fun unless we all get some\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:40 +0000", "from_user": "Shadowcms", "from_user_id": 167565648, "from_user_id_str": "167565648", "from_user_name": "obrien scott", "geo": null, "id": 148839431917416450, "id_str": "148839431917416448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1214145294/19972-bigthumbnail_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1214145294/19972-bigthumbnail_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@CallofDuty I survived 40 rounds with just me and friend on Kino Der Toten. It was fun but we were both tired so we could have gone further.", "to_user": "CallofDuty", "to_user_id": 290097288, "to_user_id_str": "290097288", "to_user_name": "Call of Duty", "in_reply_to_status_id": 148521748307001340, "in_reply_to_status_id_str": "148521748307001345"}, +{"created_at": "Mon, 19 Dec 2011 18:57:40 +0000", "from_user": "College_boy17", "from_user_id": 35270105, "from_user_id_str": "35270105", "from_user_name": "Anderson Youte", "geo": null, "id": 148839431758037000, "id_str": "148839431758036992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689948249/657_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689948249/657_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "I went to the liquor store just for fun and ask the guy to be a ciroc and he asked if I am 21. I said I am 18.he said you have to be 21.wtf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:40 +0000", "from_user": "Elinaqqo", "from_user_id": 440199975, "from_user_id_str": "440199975", "from_user_name": "Elina Witters", "geo": null, "id": 148839430965297150, "id_str": "148839430965297153", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700544811/rxpt5045su_120594672_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700544811/rxpt5045su_120594672_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Stephen Joseph Beach Totes With Sand Toy Play Set Turtle: Get ready to take in some sand and surf with this fun ... http://t.co/RlgoqQPi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:40 +0000", "from_user": "MAEshizzle", "from_user_id": 33559780, "from_user_id_str": "33559780", "from_user_name": "Beautiful Savage", "geo": null, "id": 148839430931759100, "id_str": "148839430931759104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699699812/mm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699699812/mm_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Stop right there thank you very much.I need somebody w/ a human touch.Hey you, always on the run gotta slow it down baby gotta hav some fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:40 +0000", "from_user": "ThnkGOD4makn_ME", "from_user_id": 231181598, "from_user_id_str": "231181598", "from_user_name": "Kekyra Taylor", "geo": null, "id": 148839430910775300, "id_str": "148839430910775296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1630801282/329507302_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630801282/329507302_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Mary J didnt say nun wrong when she said \"bad boys aint no good... Good boys aint no fun\" well wit exception to da grammar part.. of cou ...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:40 +0000", "from_user": "tamarita27", "from_user_id": 30348363, "from_user_id_str": "30348363", "from_user_name": "Tamara Hilmes", "geo": null, "id": 148839430122242050, "id_str": "148839430122242050", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1258777086/pic_for_twitter_new_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1258777086/pic_for_twitter_new_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "if ever you are offered a kumquat, just say no. or throw it across the room. that would be fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:39 +0000", "from_user": "biebersona", "from_user_id": 119896537, "from_user_id_str": "119896537", "from_user_name": "Kidrauhl ;]", "geo": null, "id": 148839427563733000, "id_str": "148839427563732994", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1575499927/Abuja-20111006-00325_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575499927/Abuja-20111006-00325_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @ItsOhMonna: single bells,\\nsingle bells,\\nsingle all the way..\\noh how fun it is to watch cute couples every day -.-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:39 +0000", "from_user": "MuSiC_MaNiAc_19", "from_user_id": 69422394, "from_user_id_str": "69422394", "from_user_name": "Jeremy Coleman", "geo": null, "id": 148839426590638080, "id_str": "148839426590638080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1628049945/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628049945/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I had fun ringing the bell this morning. :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:39 +0000", "from_user": "andikeptwalking", "from_user_id": 117686766, "from_user_id_str": "117686766", "from_user_name": "Sahil M. Bansal", "geo": null, "id": 148839426573873150, "id_str": "148839426573873152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1599091275/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599091275/Untitled_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "And then people wonder why does the rest of the world make fun of Americans for being ignorant. (re: last tweet) #KimJong not #LilKim", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:39 +0000", "from_user": "First48_208", "from_user_id": 287406156, "from_user_id_str": "287406156", "from_user_name": "SYN_WORLD Eno ", "geo": null, "id": 148839426242527230, "id_str": "148839426242527232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702554539/FUdbO0c1_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702554539/FUdbO0c1_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Im going to Vegas in May that shit gone B fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:38 +0000", "from_user": "Rani_AF", "from_user_id": 23833658, "from_user_id_str": "23833658", "from_user_name": "Rani Vampyress", "geo": null, "id": 148839425487552500, "id_str": "148839425487552512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1487402478/273058_10150238019201570_580391569_8018992_6045624_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1487402478/273058_10150238019201570_580391569_8018992_6045624_o_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Sounds fun! @XoxoxKee RT @KarenWalkerBot: Let's take pictures of us eating all this food and then show it to some homeless person", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:38 +0000", "from_user": "SWMplsPatch", "from_user_id": 209641840, "from_user_id_str": "209641840", "from_user_name": "SW Minneapolis Patch", "geo": null, "id": 148839425131020300, "id_str": "148839425131020288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1545607948/Photo_on_2011-08-14_at_14.03_face0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545607948/Photo_on_2011-08-14_at_14.03_face0_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @wagsbrew: I wonder if Krampus is at Macy's? Seems more fun & appropriate for my style...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:38 +0000", "from_user": "CallMeEmilyB", "from_user_id": 271656071, "from_user_id_str": "271656071", "from_user_name": "EmilyB; duhh.", "geo": null, "id": 148839424640294900, "id_str": "148839424640294912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1655311067/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655311067/image_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"@chrisB_swag: I'm going to France tomorrow!! :)\"- I live in england, right next to it:). Have fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:38 +0000", "from_user": "Beesberry", "from_user_id": 222661157, "from_user_id_str": "222661157", "from_user_name": "Beesoyeh Ologbenla", "geo": null, "id": 148839423885328400, "id_str": "148839423885328386", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1688791671/IMG-20111126-01064_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688791671/IMG-20111126-01064_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "U no kuku dey ask for person,oga fun e o. RT\"@AyokaBerry: I v bn around \"@Beesberry: @AyokaBerry : sup wif u nau,where have u been?\"\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:38 +0000", "from_user": "K_KBONEZY", "from_user_id": 372804314, "from_user_id_str": "372804314", "from_user_name": "Omokehinde", "geo": null, "id": 148839423520423940, "id_str": "148839423520423937", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698404714/331612851_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698404714/331612851_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Mad fun tonight!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:38 +0000", "from_user": "AqiaBestfrenn", "from_user_id": 289642881, "from_user_id_str": "289642881", "from_user_name": "Rastafarian\\u2122", "geo": null, "id": 148839423344254980, "id_str": "148839423344254976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699165268/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699165268/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "School was fun because for the first time to me!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:38 +0000", "from_user": "_kimmiej", "from_user_id": 237891718, "from_user_id_str": "237891718", "from_user_name": "kimberly", "geo": null, "id": 148839421813329920, "id_str": "148839421813329920", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1669926356/1269663315_4_Xn9I_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669926356/1269663315_4_Xn9I_1_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @justabudding: Mannen doen vies voor fun\"/ deepthroat(a) #bof", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:38 +0000", "from_user": "TaraW88", "from_user_id": 40064778, "from_user_id_str": "40064778", "from_user_name": "Tara Wheeler", "geo": null, "id": 148839421704290300, "id_str": "148839421704290305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688634954/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688634954/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@AIAseanjacoby @dennisrodman have fun!!!! Hopefully see ya soon.", "to_user": "AIAseanjacoby", "to_user_id": 75944628, "to_user_id_str": "75944628", "to_user_name": "Sean Jacoby", "in_reply_to_status_id": 148837573219983360, "in_reply_to_status_id_str": "148837573219983360"}, +{"created_at": "Mon, 19 Dec 2011 18:57:37 +0000", "from_user": "DefineMe_Crazy", "from_user_id": 96024565, "from_user_id_str": "96024565", "from_user_name": "-Riddick", "geo": null, "id": 148839420609572860, "id_str": "148839420609572865", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687815349/DA5Qq0Q6_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687815349/DA5Qq0Q6_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@rickyrozay92 suckerr have fun last night??", "to_user": "rickyrozay92", "to_user_id": 320442610, "to_user_id_str": "320442610", "to_user_name": "Ricky McCloud"}, +{"created_at": "Mon, 19 Dec 2011 18:57:37 +0000", "from_user": "fhinrymughni", "from_user_id": 325000504, "from_user_id_str": "325000504", "from_user_name": "Fin\\u263A\\u2665", "geo": null, "id": 148839420576014340, "id_str": "148839420576014336", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1646223454/330025364_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646223454/330025364_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Yak #Madam \\u2611 #OrangBijak \\u2611 #Singer \\u2611 HAHA sorry just for fun ;;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:37 +0000", "from_user": "fuzztester", "from_user_id": 172725404, "from_user_id_str": "172725404", "from_user_name": "Dan King", "geo": null, "id": 148839417535139840, "id_str": "148839417535139840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1107239655/Warm-Fuzzy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1107239655/Warm-Fuzzy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dlitchfield I was thinking it looks more like Swordfish. Either way, looks like a fun time :)", "to_user": "dlitchfield", "to_user_id": 117931480, "to_user_id_str": "117931480", "to_user_name": "David Litchfield", "in_reply_to_status_id": 148811961998643200, "in_reply_to_status_id_str": "148811961998643201"}, +{"created_at": "Mon, 19 Dec 2011 18:57:36 +0000", "from_user": "chelbell24", "from_user_id": 50545356, "from_user_id_str": "50545356", "from_user_name": "Chelsea", "geo": null, "id": 148839416809537540, "id_str": "148839416809537537", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1516692755/Photo_174_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1516692755/Photo_174_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@21Kmarsh tooooo much fun!!!!", "to_user": "21Kmarsh", "to_user_id": 177118126, "to_user_id_str": "177118126", "to_user_name": "Kyle Marshall", "in_reply_to_status_id": 148726092214173700, "in_reply_to_status_id_str": "148726092214173696"}, +{"created_at": "Mon, 19 Dec 2011 18:57:36 +0000", "from_user": "Briiiinana", "from_user_id": 246356938, "from_user_id_str": "246356938", "from_user_name": "Briana Williams", "geo": null, "id": 148839416151023600, "id_str": "148839416151023616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1626495475/NEWNEWNEW_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626495475/NEWNEWNEW_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I can't wait for the rest of my family to get here; these next two weeks are gonna be soooo much fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:36 +0000", "from_user": "DanReynishCBC", "from_user_id": 371213827, "from_user_id_str": "371213827", "from_user_name": "Dan Reynish", "geo": null, "id": 148839416041963520, "id_str": "148839416041963522", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690148608/Danny_Mom_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690148608/Danny_Mom_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "Have some fun, type LET IT SNOW into the Google search engine...do we still call them search engines?!?!...and enjoy!! http://t.co/wQKkTj8h", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:36 +0000", "from_user": "Ladee_Z", "from_user_id": 35661108, "from_user_id_str": "35661108", "from_user_name": "Emma Yuzuki ", "geo": null, "id": 148839415966474240, "id_str": "148839415966474241", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699593338/Ladee_Z_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699593338/Ladee_Z_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@chriscanfly I bet it'd be the most fun job ever", "to_user": "chriscanfly", "to_user_id": 23028876, "to_user_id_str": "23028876", "to_user_name": "Christian Rodriguez", "in_reply_to_status_id": 148834985934200830, "in_reply_to_status_id_str": "148834985934200832"}, +{"created_at": "Mon, 19 Dec 2011 18:57:36 +0000", "from_user": "RobesInAction", "from_user_id": 40399006, "from_user_id_str": "40399006", "from_user_name": "Robespierre ", "geo": null, "id": 148839415454777340, "id_str": "148839415454777344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1499068345/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1499068345/image_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "Woooooo this game is mad fun! #JetPackJoyRide http://t.co/QRnWzWzf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:36 +0000", "from_user": "katymmac", "from_user_id": 265572539, "from_user_id_str": "265572539", "from_user_name": "Katy McDaniel", "geo": null, "id": 148839414594940930, "id_str": "148839414594940929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1584470462/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584470462/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Have fun in London @caitlincor and @annmarcor!! #bringmebackabrit", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:36 +0000", "from_user": "kinikia007", "from_user_id": 9078212, "from_user_id_str": "9078212", "from_user_name": "kinikia007", "geo": null, "id": 148839414167109630, "id_str": "148839414167109633", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/95752032/CieCie_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/95752032/CieCie_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@taniz Have way too much fun! After all, it is your birthday so you call the rules.", "to_user": "taniz", "to_user_id": 802898, "to_user_id_str": "802898", "to_user_name": "Pete Norton", "in_reply_to_status_id": 148826901765566460, "in_reply_to_status_id_str": "148826901765566465"}, +{"created_at": "Mon, 19 Dec 2011 18:57:35 +0000", "from_user": "meghanoharaxx", "from_user_id": 107704132, "from_user_id_str": "107704132", "from_user_name": "meghan.", "geo": null, "id": 148839412824936450, "id_str": "148839412824936448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687358605/tumblr_lw1w4so44C1r1mrcso1_500_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687358605/tumblr_lw1w4so44C1r1mrcso1_500_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "i love to do acting i think it would be so fun :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:35 +0000", "from_user": "Simply_Merica", "from_user_id": 34233391, "from_user_id_str": "34233391", "from_user_name": "\\u2600Merica Monamodi\\u2600", "geo": null, "id": 148839412028026880, "id_str": "148839412028026880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695218619/Sebokeng-20111215-01473_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695218619/Sebokeng-20111215-01473_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Do yol understand that I was in Mpumalanga..and I didn't even know Hahahaha yho I was living, stranded there! Toooo much fun thou \\u263A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:35 +0000", "from_user": "Switestberry", "from_user_id": 199630070, "from_user_id_str": "199630070", "from_user_name": "1stLady!!!", "geo": null, "id": 148839411893796860, "id_str": "148839411893796864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699801241/Switestberry_1359429260075320581_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699801241/Switestberry_1359429260075320581_normal.jpg", "source": "<a href="http://www.twitter.com" rel="nofollow">\\u0422witter for i\\u03A1hone</a>", "text": "LoOOOOL! U must be fun den! RT @TushAgbero: She mentions me ONLY wen shez bored.. I guess I'm JUST a cure for boredom", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:35 +0000", "from_user": "DanielFlynn5", "from_user_id": 391040553, "from_user_id_str": "391040553", "from_user_name": "Daniel Flynn", "geo": null, "id": 148839411843473400, "id_str": "148839411843473409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1673804466/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673804466/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@issycorby get your ass to Bristol this week please. Fun starts from tomorrow!", "to_user": "issycorby", "to_user_id": 19133828, "to_user_id_str": "19133828", "to_user_name": "Issy Corby"}, +{"created_at": "Mon, 19 Dec 2011 18:57:35 +0000", "from_user": "Jake_R_G", "from_user_id": 53778749, "from_user_id_str": "53778749", "from_user_name": "Robin van der Ploeg", "geo": null, "id": 148839410908147700, "id_str": "148839410908147712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/298068977/Yellow_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/298068977/Yellow_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "BEST #STEAM DEAL EVER http://t.co/9DEFitdi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:35 +0000", "from_user": "FrigginLexie", "from_user_id": 261945091, "from_user_id_str": "261945091", "from_user_name": "Lexie Williams", "geo": null, "id": 148839410815860740, "id_str": "148839410815860737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699707137/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699707137/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "yea, so I just think that it'd be sweet if @justinbieber sang his Christmas song \"All I Want Is You\" to me(: that'd be fun:D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:35 +0000", "from_user": "wegianshooter", "from_user_id": 409571920, "from_user_id_str": "409571920", "from_user_name": "Mark Erickson", "geo": null, "id": 148839410715209730, "id_str": "148839410715209729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1633710694/gravatar_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633710694/gravatar_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@davidsirota: A must-watch video: http://t.co/Jf8Rce0n\\u201D about electoral college and voting! Fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:35 +0000", "from_user": "megan_lucy", "from_user_id": 155952005, "from_user_id_str": "155952005", "from_user_name": "Meg Jones", "geo": null, "id": 148839410446762000, "id_str": "148839410446761985", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1678984295/305156_2194126446020_1032949396_32376509_1749325138_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678984295/305156_2194126446020_1032949396_32376509_1749325138_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "sade; (throwing a egg) its so fun I like the danger init", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:35 +0000", "from_user": "drawyourdestiny", "from_user_id": 409416041, "from_user_id_str": "409416041", "from_user_name": "Mrs. Forever Alone\\u03DF.", "geo": null, "id": 148839410123808770, "id_str": "148839410123808768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702596181/476188171_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702596181/476188171_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @NiallOfficial: Legooo! Southend! Gona be fun, get involved!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:35 +0000", "from_user": "lorennaa88", "from_user_id": 198891281, "from_user_id_str": "198891281", "from_user_name": "Loren Gomez", "geo": null, "id": 148839409951834100, "id_str": "148839409951834112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1660124365/1pwWEpkU_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660124365/1pwWEpkU_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "We're just having fun, we don't care who sees. #youngwildandfreeeeee", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:34 +0000", "from_user": "AfricanboySwagg", "from_user_id": 349467189, "from_user_id_str": "349467189", "from_user_name": "Emmanuel Freeman ", "geo": null, "id": 148839408446087170, "id_str": "148839408446087170", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1482027698/IMAG0460_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1482027698/IMAG0460_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@whoUfinnatryyyy ight cool its gon be so fun", "to_user": "whoUfinnatryyyy", "to_user_id": 246589736, "to_user_id_str": "246589736", "to_user_name": "Tikytikywandah Smith", "in_reply_to_status_id": 148839240757809150, "in_reply_to_status_id_str": "148839240757809152"}, +{"created_at": "Mon, 19 Dec 2011 18:57:34 +0000", "from_user": "chynnatamarah", "from_user_id": 314982436, "from_user_id_str": "314982436", "from_user_name": "Chynna Danne", "geo": null, "id": 148839408311865340, "id_str": "148839408311865345", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1628112570/Snapshot_20110604_15_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628112570/Snapshot_20110604_15_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I had fun at practice", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:34 +0000", "from_user": "ittibittinz", "from_user_id": 65800260, "from_user_id_str": "65800260", "from_user_name": "itti bitti NZ", "geo": null, "id": 148839407607226370, "id_str": "148839407607226368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/870881615/ib150x1503_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/870881615/ib150x1503_normal.gif", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Yawn! - last night was so much fun I am still smiling this morning :0). I hope your babies slept well for you!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:34 +0000", "from_user": "CSouquette80", "from_user_id": 428852330, "from_user_id_str": "428852330", "from_user_name": "Cathy Souquette", "geo": null, "id": 148839407280070660, "id_str": "148839407280070656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681941218/098_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681941218/098_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Had way too much fun last night.. #hungover", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:34 +0000", "from_user": "covernewsinfo", "from_user_id": 20792440, "from_user_id_str": "20792440", "from_user_name": "CoverNews.info", "geo": null, "id": 148839406546071550, "id_str": "148839406546071552", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1616724484/logoconredes_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616724484/logoconredes_normal.jpg", "source": "<a href="http://fun.ly" rel="nofollow">fun.ly</a>", "text": "Claro presente un a\\u00F1o m\\u00E1s en Mar del Plata http://t.co/sXPAianc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:34 +0000", "from_user": "OliviaLloyd_x", "from_user_id": 290550514, "from_user_id_str": "290550514", "from_user_name": "ll0yd \\u2020", "geo": null, "id": 148839405870776320, "id_str": "148839405870776323", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1684884061/P1013207_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684884061/P1013207_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@Hazel_Crawford that's good hazzio, yes it was thanks, was it fun in biology with the creature from jurassic park?xx", "to_user": "Hazel_Crawford", "to_user_id": 415760794, "to_user_id_str": "415760794", "to_user_name": "Hazel Crawford", "in_reply_to_status_id": 148839053989658620, "in_reply_to_status_id_str": "148839053989658624"}, +{"created_at": "Mon, 19 Dec 2011 18:57:34 +0000", "from_user": "Remmsss", "from_user_id": 396633610, "from_user_id_str": "396633610", "from_user_name": "Remi Aridegbe", "geo": null, "id": 148839405807869950, "id_str": "148839405807869953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694371180/remi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694371180/remi_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@YooItsSeyilogzz I actually had fun today.", "to_user": "YooItsSeyilogzz", "to_user_id": 167382211, "to_user_id_str": "167382211", "to_user_name": "Seyilogo #LOUD"}, +{"created_at": "Mon, 19 Dec 2011 18:57:34 +0000", "from_user": "BrandonPDuncan", "from_user_id": 128833363, "from_user_id_str": "128833363", "from_user_name": "Brandon P. Duncan", "geo": null, "id": 148839404557975550, "id_str": "148839404557975552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1204106667/melexcrop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1204106667/melexcrop_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@PrettyAllTrue @rustilyn Have fun with that.", "to_user": "PrettyAllTrue", "to_user_id": 117567840, "to_user_id_str": "117567840", "to_user_name": "Kris", "in_reply_to_status_id": 148839236467048450, "in_reply_to_status_id_str": "148839236467048450"}, +{"created_at": "Mon, 19 Dec 2011 18:57:33 +0000", "from_user": "cbarty13", "from_user_id": 389797290, "from_user_id_str": "389797290", "from_user_name": "Chelsea Bartholomew", "geo": null, "id": 148839403391950850, "id_str": "148839403391950848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692081232/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692081232/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "leave me for some ugly ass girl. hahahah have fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:33 +0000", "from_user": "aniskurnia", "from_user_id": 118654621, "from_user_id_str": "118654621", "from_user_name": "Anis Anindya Kurnia ", "geo": null, "id": 148839401986850800, "id_str": "148839401986850816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686361549/anisssssss_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686361549/anisssssss_normal.jpg", "source": "<a href="http://www.snaptu.com" rel="nofollow">Snaptu</a>", "text": "RT @justinbieber: In vegas feeling good. Time to make some fun happen.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:33 +0000", "from_user": "FabricsUK", "from_user_id": 433281596, "from_user_id_str": "433281596", "from_user_name": "fabricsuk", "geo": null, "id": 148839401559040000, "id_str": "148839401559040001", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1684827372/flowerfabric_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684827372/flowerfabric_normal.jpg", "source": "<a href="http://www.fabricbuy.co.uk/" rel="nofollow">Fabric Shop UK</a>", "text": "Anna Maria Horner LouLouthi Laminated Cotton Curated Bloom Fun Blue http://t.co/sgx0OuX8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:33 +0000", "from_user": "FFTunes", "from_user_id": 206412650, "from_user_id_str": "206412650", "from_user_name": "FFTunes", "geo": null, "id": 148839400971829250, "id_str": "148839400971829248", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1157311489/72213_158172590886480_158165247553881_269698_7614577_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1157311489/72213_158172590886480_158165247553881_269698_7614577_n_normal.jpg", "source": "<a href="http://www.fftunes.com" rel="nofollow">FFTunes</a>", "text": "@sercanvirlan sent gift for @AnasonKokarken Anason http://t.co/IcLvnAMR have fun!", "to_user": "sercanvirlan", "to_user_id": 18251149, "to_user_id_str": "18251149", "to_user_name": "Sercan Virlan", "in_reply_to_status_id": 148839385696178180, "in_reply_to_status_id_str": "148839385696178177"}, +{"created_at": "Mon, 19 Dec 2011 18:57:32 +0000", "from_user": "The_JennyLee", "from_user_id": 439257585, "from_user_id_str": "439257585", "from_user_name": "Jenn", "geo": null, "id": 148839399340245000, "id_str": "148839399340244992", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698377631/209051236_af7bd19c61_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698377631/209051236_af7bd19c61_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "innuendos are fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:32 +0000", "from_user": "CheyMH", "from_user_id": 130342866, "from_user_id_str": "130342866", "from_user_name": "Cheyenne ", "geo": null, "id": 148839399038267400, "id_str": "148839399038267392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1675855918/330968203_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675855918/330968203_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@methodtomymalja damnnn that sound rachet...but fun as hell", "to_user": "methodtomymalja", "to_user_id": 20609879, "to_user_id_str": "20609879", "to_user_name": "MOWL-JUH", "in_reply_to_status_id": 148838841715929100, "in_reply_to_status_id_str": "148838841715929088"}, +{"created_at": "Mon, 19 Dec 2011 18:57:32 +0000", "from_user": "rinarox3", "from_user_id": 44473151, "from_user_id_str": "44473151", "from_user_name": "*rina star*", "geo": null, "id": 148839398593667070, "id_str": "148839398593667072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1552464372/beWhzD08_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552464372/beWhzD08_normal", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@AdryNevaeh7 awe how fun!!!! Thx Girly!", "to_user": "AdryNevaeh7", "to_user_id": 204424946, "to_user_id_str": "204424946", "to_user_name": "Adriana A", "in_reply_to_status_id": 148831634328789000, "in_reply_to_status_id_str": "148831634328788992"}, +{"created_at": "Mon, 19 Dec 2011 18:57:32 +0000", "from_user": "IlluminShell", "from_user_id": 273698515, "from_user_id_str": "273698515", "from_user_name": "\\u8C9D\\u6BBB\\u3059\\u3089\\u3044\\u3080k", "geo": null, "id": 148839398270701570, "id_str": "148839398270701568", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1290889254/indexk231_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1290889254/indexk231_normal.jpg", "source": "<a href="http://illuminbot.appspot.com/" rel="nofollow">illuminBot</a>", "text": "\\u904A\\u3073\\u5FC3\\u3092\\u5FD8\\u308C\\u305A\\u306B\\u3002/Sense of fun makes your life happy!\\u3000 #kokoro 2011/12/20, 3:57:31", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:32 +0000", "from_user": "caseyhewlett", "from_user_id": 227839938, "from_user_id_str": "227839938", "from_user_name": "Casey Hewlett", "geo": null, "id": 148839397775781900, "id_str": "148839397775781888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1337038268/2011-04-20_08-58-20_401_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1337038268/2011-04-20_08-58-20_401_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Writing the #TermsofService for the #WebVellumNetwork. Not very fun at all.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:32 +0000", "from_user": "ACILnacamara", "from_user_id": 197109323, "from_user_id_str": "197109323", "from_user_name": "Acil Londrina", "geo": null, "id": 148839397150834700, "id_str": "148839397150834689", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1134666908/logo_fundos_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1134666908/logo_fundos_normal.jpg", "source": "<a href="http://fun.ly" rel="nofollow">fun.ly</a>", "text": "Novo sal\\u00E1rio dos vereadores pode superar R$ 15 mil http://t.co/XwvGYWz8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:31 +0000", "from_user": "NotDesmondsBoat", "from_user_id": 260877564, "from_user_id_str": "260877564", "from_user_name": "Natasha.", "geo": null, "id": 148839396014170100, "id_str": "148839396014170112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687990670/webcam1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687990670/webcam1_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "@electriccandles Have fun!", "to_user": "electriccandles", "to_user_id": 16729840, "to_user_id_str": "16729840", "to_user_name": "\\u03DF Emma \\u03DF"}, +{"created_at": "Mon, 19 Dec 2011 18:57:31 +0000", "from_user": "Olgayhq", "from_user_id": 440153948, "from_user_id_str": "440153948", "from_user_name": "Olga Michelin", "geo": null, "id": 148839395586351100, "id_str": "148839395586351104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700433849/large_EZBESSGUUXNU_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700433849/large_EZBESSGUUXNU_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Tinkerbelly: Who knew taking some time off to sit around and catch up on soaps could be so devastating! Amuse a... http://t.co/AUyChb9D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:31 +0000", "from_user": "BrentR7", "from_user_id": 21351422, "from_user_id_str": "21351422", "from_user_name": "Brent Reser", "geo": null, "id": 148839394659405820, "id_str": "148839394659405824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/247377499/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/247377499/me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "It was fun! RT @NickBatista82 Cannot believe how many people @BrentR7 made Tebow while in vegas! #newtrend #winning\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:31 +0000", "from_user": "takymomo", "from_user_id": 400213100, "from_user_id_str": "400213100", "from_user_name": "bouzourene", "geo": null, "id": 148839393879269380, "id_str": "148839393879269378", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1649060694/Image_008_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649060694/Image_008_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "How to Ruin a Grilled Cheese | More Family Fun - Yahoo! Shine http://t.co/ZdvzVsg9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:31 +0000", "from_user": "TAF_Forum", "from_user_id": 228586987, "from_user_id_str": "228586987", "from_user_name": "TAF", "geo": null, "id": 148839393858289660, "id_str": "148839393858289665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1194606910/Untitled_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1194606910/Untitled_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Forum | Ask a Theist \\u2022 Christ mass trees: Found some more fun today that I thought was lulzy.http://gma... http://t.co/Ewd0xKRN #atheist", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:31 +0000", "from_user": "kelmccrack054", "from_user_id": 318831952, "from_user_id_str": "318831952", "from_user_name": "Kelly McCracken", "geo": null, "id": 148839393623420930, "id_str": "148839393623420928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1661387489/twitpic3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661387489/twitpic3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Have fun trying to get a job w/ all of those drunken pics/tweets! #theycheckforthatshit #yourescrewed", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:31 +0000", "from_user": "Mahomie4life4", "from_user_id": 321608233, "from_user_id_str": "321608233", "from_user_name": "Kayla Mahone", "geo": null, "id": 148839393325625340, "id_str": "148839393325625344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701331762/334092_331503976866490_100000206715981_1569966_914195206_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701331762/334092_331503976866490_100000206715981_1569966_914195206_o_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@DaRbYfRoSt7 Have Fun @AustinMahone 's Concert.(:", "to_user": "DaRbYfRoSt7", "to_user_id": 336071747, "to_user_id_str": "336071747", "to_user_name": "Darby\\u2665"}, +{"created_at": "Mon, 19 Dec 2011 18:57:31 +0000", "from_user": "lotannaokafor", "from_user_id": 150239828, "from_user_id_str": "150239828", "from_user_name": "lotanna okafor", "geo": null, "id": 148839392662913020, "id_str": "148839392662913024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693218787/IMG00074-20110823-2047_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693218787/IMG00074-20110823-2047_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Good Basketball day! Had fun with @mocha_dleverage @chinonso_NWA @Samuelnwawolo Good day in General! (Y)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:30 +0000", "from_user": "Emily___x3", "from_user_id": 165503480, "from_user_id_str": "165503480", "from_user_name": "Emily.", "geo": null, "id": 148839391547228160, "id_str": "148839391547228160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1565320140/Snapshot_20110929_3_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1565320140/Snapshot_20110929_3_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@stewartm99 indeed I did! :D it wasn't fun but yes it is all done so that's a good thing :P xxx", "to_user": "stewartm99", "to_user_id": 227767421, "to_user_id_str": "227767421", "to_user_name": "Mark Stewart", "in_reply_to_status_id": 148838260725125120, "in_reply_to_status_id_str": "148838260725125120"}, +{"created_at": "Mon, 19 Dec 2011 18:57:30 +0000", "from_user": "SLYMCNUTT", "from_user_id": 204033503, "from_user_id_str": "204033503", "from_user_name": "Sly", "geo": null, "id": 148839391345901570, "id_str": "148839391345901570", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697911194/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697911194/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@Azn_Mami23: @SLYMCNUTT Lmao did yall have fun?\\u201D(no call/no show)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:30 +0000", "from_user": "CHLOE_MARTINN", "from_user_id": 291786497, "from_user_id_str": "291786497", "from_user_name": "Chloe Martin\\u2665", "geo": null, "id": 148839388254699520, "id_str": "148839388254699521", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685881970/MONKEEEEY_20JUMPA_20BITCHEZ_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685881970/MONKEEEEY_20JUMPA_20BITCHEZ_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Iphone 4's are fucking fun as!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:30 +0000", "from_user": "LuvleeLyons", "from_user_id": 74845075, "from_user_id_str": "74845075", "from_user_name": "Marqui L. ", "geo": null, "id": 148839388053381120, "id_str": "148839388053381120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699416913/LuvleeLyons_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699416913/LuvleeLyons_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@V_Nasty22 so jealous! Have fun!", "to_user": "V_Nasty22", "to_user_id": 289670022, "to_user_id_str": "289670022", "to_user_name": "Vanessa Rivera", "in_reply_to_status_id": 148838338013569020, "in_reply_to_status_id_str": "148838338013569024"}, +{"created_at": "Mon, 19 Dec 2011 18:57:29 +0000", "from_user": "kendalljacmason", "from_user_id": 154438216, "from_user_id_str": "154438216", "from_user_name": "Kendall Mason ", "geo": null, "id": 148839385377423360, "id_str": "148839385377423361", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686074389/1323567276-picsay_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686074389/1323567276-picsay_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "RT @Im__RickJames: Voxer is fun lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:29 +0000", "from_user": "chlo1238", "from_user_id": 54694323, "from_user_id_str": "54694323", "from_user_name": "Chloe Townsend", "geo": null, "id": 148839384433692670, "id_str": "148839384433692673", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702196635/284369_10150754099885019_796800018_20382502_6159243_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702196635/284369_10150754099885019_796800018_20382502_6159243_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @FunkyTeeMaestro: Being broke ain't fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:29 +0000", "from_user": "RasenMail", "from_user_id": 380971190, "from_user_id_str": "380971190", "from_user_name": "Market Rasen Mail", "geo": null, "id": 148839383796154370, "id_str": "148839383796154369", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1641931633/market-rasen-mail-twitter-icon_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641931633/market-rasen-mail-twitter-icon_normal.gif", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Technicolor fun in church http://t.co/iEv18Iw6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:29 +0000", "from_user": "25F874A3", "from_user_id": 345641153, "from_user_id_str": "345641153", "from_user_name": "\\u2022 R.aaachell", "geo": null, "id": 148839383729049600, "id_str": "148839383729049600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1690890142/1433901319_6_uuDX_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690890142/1433901319_6_uuDX_1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "roll one , smoke one and we all just having fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:28 +0000", "from_user": "PretendKing", "from_user_id": 397668008, "from_user_id_str": "397668008", "from_user_name": "Jessica King", "geo": null, "id": 148839383297048580, "id_str": "148839383297048576", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1605290328/FLOWER_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1605290328/FLOWER_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@malloriehart Have fun!", "to_user": "malloriehart", "to_user_id": 111124619, "to_user_id_str": "111124619", "to_user_name": "Mallorie Hart", "in_reply_to_status_id": 148837488226603000, "in_reply_to_status_id_str": "148837488226603008"}, +{"created_at": "Mon, 19 Dec 2011 18:57:28 +0000", "from_user": "Brain_of_Blonde", "from_user_id": 322825270, "from_user_id_str": "322825270", "from_user_name": "L", "geo": null, "id": 148839383187992580, "id_str": "148839383187992576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698073374/331605106_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698073374/331605106_normal.jpg", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "@heres_johnnie Sounds like lots of fun actually. Could iron amusing shapes into your shirts.", "to_user": "heres_johnnie", "to_user_id": 46230271, "to_user_id_str": "46230271", "to_user_name": "Johnnie Walker", "in_reply_to_status_id": 148837892045815800, "in_reply_to_status_id_str": "148837892045815808"}, +{"created_at": "Mon, 19 Dec 2011 18:57:28 +0000", "from_user": "skysports_bryan", "from_user_id": 150677438, "from_user_id_str": "150677438", "from_user_name": "Bryan Swanson", "geo": null, "id": 148839383036985340, "id_str": "148839383036985345", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1550301899/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1550301899/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@DBrickerz it's great fun.. #TransferDeadlineDay", "to_user": "DBrickerz", "to_user_id": 60314017, "to_user_id_str": "60314017", "to_user_name": "Brickerz"}, +{"created_at": "Mon, 19 Dec 2011 18:57:28 +0000", "from_user": "liesavmusic", "from_user_id": 63724284, "from_user_id_str": "63724284", "from_user_name": "Liesa Marie \\u221A", "geo": null, "id": 148839382768562180, "id_str": "148839382768562177", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1661034011/concert_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661034011/concert_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@OmnomnomLouisT yeah :) whoever it's going to be, she's one lucky girl :) hope you'll have fun at the concert :) xo", "to_user": "OmnomnomLouisT", "to_user_id": 245066383, "to_user_id_str": "245066383", "to_user_name": "CourtneyLouise", "in_reply_to_status_id": 148838663499952130, "in_reply_to_status_id_str": "148838663499952129"}, +{"created_at": "Mon, 19 Dec 2011 18:57:28 +0000", "from_user": "bdcooper77", "from_user_id": 225615284, "from_user_id_str": "225615284", "from_user_name": "Brian", "geo": null, "id": 148839381090832400, "id_str": "148839381090832387", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1216052852/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1216052852/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@undeux those bastards! Those fun, partying bastards! Lol", "to_user": "undeux", "to_user_id": 32498911, "to_user_id_str": "32498911", "to_user_name": "April O'Neil", "in_reply_to_status_id": 148838760195432450, "in_reply_to_status_id_str": "148838760195432448"}, +{"created_at": "Mon, 19 Dec 2011 18:57:28 +0000", "from_user": "shtoopidTHICK", "from_user_id": 76828768, "from_user_id_str": "76828768", "from_user_name": "COCKadile Dundee", "geo": null, "id": 148839380633661440, "id_str": "148839380633661440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1390916473/Photo_on_2011-01-18_at_00.08_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1390916473/Photo_on_2011-01-18_at_00.08_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "@BALLZbitch @TheShadaeShow that WOULD be fun if you lived close lol", "to_user": "BALLZbitch", "to_user_id": 81280340, "to_user_id_str": "81280340", "to_user_name": "Czech KKK", "in_reply_to_status_id": 148834744711389200, "in_reply_to_status_id_str": "148834744711389184"}, +{"created_at": "Mon, 19 Dec 2011 18:57:28 +0000", "from_user": "MewMew34", "from_user_id": 36800916, "from_user_id_str": "36800916", "from_user_name": "Mew Mew", "geo": null, "id": 148839380084211700, "id_str": "148839380084211712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/193568353/mewicon1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/193568353/mewicon1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#ThisChristmas is going to be the first one ever that I don't go to my Grandparents' house in the morning. Will be a strange day, but fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:27 +0000", "from_user": "MartyBMckeever", "from_user_id": 304614407, "from_user_id_str": "304614407", "from_user_name": "Marty B. Mckeever", "geo": null, "id": 148839378188382200, "id_str": "148839378188382208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1367555420/large_IMG000009_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1367555420/large_IMG000009_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "@/fetterolfklcz2 Making my own music is so fun.I make my beats with this machine.Check out http://t.co/BkvZgJfo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:27 +0000", "from_user": "X_Dha_X", "from_user_id": 295962791, "from_user_id_str": "295962791", "from_user_name": "Darwin L Merino", "geo": null, "id": 148839376976228350, "id_str": "148839376976228352", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1346159801/391994592_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1346159801/391994592_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @anjabayari: \\u201C@X_Dha_X: watching http://t.co/SRyBIHuW - @anjabayari.\\u201D Great video ! Fun times!\\uD83D\\uDE0A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:27 +0000", "from_user": "Feministe", "from_user_id": 16378267, "from_user_id_str": "16378267", "from_user_name": "Feministe", "geo": null, "id": 148839376372248580, "id_str": "148839376372248576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/60400110/feministe_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/60400110/feministe_2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "It\\u2019s fun for a girl or a boy: Conspicuous consumption edition: Anyone engaged in consumerist big-box shopping th... http://t.co/xdKHJrk8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:27 +0000", "from_user": "MartyBMckeever", "from_user_id": 304614407, "from_user_id_str": "304614407", "from_user_name": "Marty B. Mckeever", "geo": null, "id": 148839376133169150, "id_str": "148839376133169152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1367555420/large_IMG000009_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1367555420/large_IMG000009_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "@/jessicaFYOG Making my own music is so fun.I make my beats with this machine.Check out http://t.co/BkvZgJfo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:27 +0000", "from_user": "NaturesWells", "from_user_id": 159000886, "from_user_id_str": "159000886", "from_user_name": "Levi Burrow", "geo": null, "id": 148839375432720400, "id_str": "148839375432720384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1313139454/DSCN1747_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1313139454/DSCN1747_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Check Your DM Box....I may have sent you an e-card! p.s. It's ok to open it. Have Fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:26 +0000", "from_user": "MartyBMckeever", "from_user_id": 304614407, "from_user_id_str": "304614407", "from_user_name": "Marty B. Mckeever", "geo": null, "id": 148839374438662140, "id_str": "148839374438662145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1367555420/large_IMG000009_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1367555420/large_IMG000009_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "@/illl_material Making my own music is so fun.I make my beats with this machine.Check out http://t.co/BkvZgJfo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:26 +0000", "from_user": "deejay_eeyan", "from_user_id": 236364550, "from_user_id_str": "236364550", "from_user_name": "ian", "geo": null, "id": 148839374358974460, "id_str": "148839374358974465", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1563969875/deejay_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1563969875/deejay_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@crisfranciajr @mistahLu @haringpula that was fun! char! we miss you @fartydoodle and @pat ... see you sa xmas party! hahaha", "to_user": "crisfranciajr", "to_user_id": 52319767, "to_user_id_str": "52319767", "to_user_name": "Cris Francia Jr.", "in_reply_to_status_id": 148836514120482800, "in_reply_to_status_id_str": "148836514120482817"}, +{"created_at": "Mon, 19 Dec 2011 18:57:26 +0000", "from_user": "MartyBMckeever", "from_user_id": 304614407, "from_user_id_str": "304614407", "from_user_name": "Marty B. Mckeever", "geo": null, "id": 148839372878385150, "id_str": "148839372878385152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1367555420/large_IMG000009_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1367555420/large_IMG000009_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "@/PurpleClouds_02 Making my own music is so fun.I make my beats with this machine.Check out http://t.co/BkvZgJfo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:26 +0000", "from_user": "Ciara2cute2care", "from_user_id": 117630478, "from_user_id_str": "117630478", "from_user_name": "Ciara Carr", "geo": null, "id": 148839372870000640, "id_str": "148839372870000640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1633033057/imagejpeg_2_4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633033057/imagejpeg_2_4_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@CertifiedMvp_RL Yoo stop DMing Me I not gone exposed ur ass its just a lil fun to see yall (cont) http://t.co/EaKTabDT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:26 +0000", "from_user": "COVERGIRL_NELLZ", "from_user_id": 127892039, "from_user_id_str": "127892039", "from_user_name": "CHANEL\\u02DA5\\u2661 ", "geo": null, "id": 148839372689641470, "id_str": "148839372689641473", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685929485/2011-12-10_02-37-07.712_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685929485/2011-12-10_02-37-07.712_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @REALSHEEKLOUCH: RT @MsBossLadyPink: @REALSHEEKLOUCH killed that shit last night in PETERBOROUGH, ON. never had so much fun in a ... http://t.co/iXfH7C9x", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:26 +0000", "from_user": "MarcellusCain", "from_user_id": 84472641, "from_user_id_str": "84472641", "from_user_name": "Cellmo's World", "geo": null, "id": 148839371154534400, "id_str": "148839371154534400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695090213/331540950_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695090213/331540950_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@iamgodiva on this road I meet women who complain about the dick the funds and the fun. yet I'm single lol", "to_user": "iamgodiva", "to_user_id": 100382689, "to_user_id_str": "100382689", "to_user_name": "Charlie G.", "in_reply_to_status_id": 148838915527278600, "in_reply_to_status_id_str": "148838915527278593"}, +{"created_at": "Mon, 19 Dec 2011 18:57:25 +0000", "from_user": "Bubu_Dotcom", "from_user_id": 316340670, "from_user_id_str": "316340670", "from_user_name": "BUBU.COM", "geo": null, "id": 148839370659594240, "id_str": "148839370659594242", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1436648010/BUBU-Twitter-Pic__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1436648010/BUBU-Twitter-Pic__1__normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "RT @lurino: the most enjoyable experience of 2011 is working with the #woofers at @Bubu_Dotcom. lots of new stuff to learn. fun indeed.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:25 +0000", "from_user": "SimbaReturns", "from_user_id": 49026927, "from_user_id_str": "49026927", "from_user_name": "Lorenzo McNeil", "geo": null, "id": 148839369430663170, "id_str": "148839369430663168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701440185/331682498_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701440185/331682498_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Today should be fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:25 +0000", "from_user": "ThatsSoMendes", "from_user_id": 425430264, "from_user_id_str": "425430264", "from_user_name": "Jasmine Mendes", "geo": null, "id": 148839368616976400, "id_str": "148839368616976385", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702587168/happy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702587168/happy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Good to see you following your dreams @TweetN_ass_Tate ! Have fun, be safe, & dont forget about me :) Lol Stay blessed, & keep in touch !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:25 +0000", "from_user": "itsmealreadyBry", "from_user_id": 24339627, "from_user_id_str": "24339627", "from_user_name": "Bryan Tayko", "geo": null, "id": 148839368453394430, "id_str": "148839368453394432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1650039170/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650039170/image_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">YouTube on iOS</a>", "text": "Cool! The 2 top artists of 2011 having fun :) http://t.co/EufGnTM3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:57:26 +0000", "from_user": "COVERGIRL_NELLZ", "from_user_id": 127892039, "from_user_id_str": "127892039", "from_user_name": "CHANEL\\u02DA5\\u2661 ", "geo": null, "id": 148839372689641470, "id_str": "148839372689641473", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685929485/2011-12-10_02-37-07.712_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685929485/2011-12-10_02-37-07.712_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @REALSHEEKLOUCH: RT @MsBossLadyPink: @REALSHEEKLOUCH killed that shit last night in PETERBOROUGH, ON. never had so much fun in a ... http://t.co/iXfH7C9x", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:26 +0000", "from_user": "MarcellusCain", "from_user_id": 84472641, "from_user_id_str": "84472641", "from_user_name": "Cellmo's World", "geo": null, "id": 148839371154534400, "id_str": "148839371154534400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695090213/331540950_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695090213/331540950_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@iamgodiva on this road I meet women who complain about the dick the funds and the fun. yet I'm single lol", "to_user": "iamgodiva", "to_user_id": 100382689, "to_user_id_str": "100382689", "to_user_name": "Charlie G.", "in_reply_to_status_id": 148838915527278600, "in_reply_to_status_id_str": "148838915527278593"}, +{"created_at": "Mon, 19 Dec 2011 18:57:25 +0000", "from_user": "Bubu_Dotcom", "from_user_id": 316340670, "from_user_id_str": "316340670", "from_user_name": "BUBU.COM", "geo": null, "id": 148839370659594240, "id_str": "148839370659594242", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1436648010/BUBU-Twitter-Pic__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1436648010/BUBU-Twitter-Pic__1__normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "RT @lurino: the most enjoyable experience of 2011 is working with the #woofers at @Bubu_Dotcom. lots of new stuff to learn. fun indeed.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:25 +0000", "from_user": "SimbaReturns", "from_user_id": 49026927, "from_user_id_str": "49026927", "from_user_name": "Lorenzo McNeil", "geo": null, "id": 148839369430663170, "id_str": "148839369430663168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701440185/331682498_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701440185/331682498_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Today should be fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:25 +0000", "from_user": "ThatsSoMendes", "from_user_id": 425430264, "from_user_id_str": "425430264", "from_user_name": "Jasmine Mendes", "geo": null, "id": 148839368616976400, "id_str": "148839368616976385", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702587168/happy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702587168/happy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Good to see you following your dreams @TweetN_ass_Tate ! Have fun, be safe, & dont forget about me :) Lol Stay blessed, & keep in touch !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:25 +0000", "from_user": "itsmealreadyBry", "from_user_id": 24339627, "from_user_id_str": "24339627", "from_user_name": "Bryan Tayko", "geo": null, "id": 148839368453394430, "id_str": "148839368453394432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1650039170/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650039170/image_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">YouTube on iOS</a>", "text": "Cool! The 2 top artists of 2011 having fun :) http://t.co/EufGnTM3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:25 +0000", "from_user": "xunbrokenbieber", "from_user_id": 382006065, "from_user_id_str": "382006065", "from_user_name": "\\u2654\\u2202\\u0454\\u044F\\u0454\\u043As \\u03C3\\u2113\\u2113vi\\u044Fgi\\u0438\\u2654", "geo": null, "id": 148839368302395400, "id_str": "148839368302395393", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698322158/1324107459414_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698322158/1324107459414_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@BelieveItShawty yeah but its fun sometimes :P :D", "to_user": "BelieveItShawty", "to_user_id": 405362283, "to_user_id_str": "405362283", "to_user_name": "Arianator/Belieber \\u2665", "in_reply_to_status_id": 148839196742791170, "in_reply_to_status_id_str": "148839196742791169"}, +{"created_at": "Mon, 19 Dec 2011 18:57:24 +0000", "from_user": "BigRigTees", "from_user_id": 377957460, "from_user_id_str": "377957460", "from_user_name": "BigRigTees.com", "geo": null, "id": 148839364401709060, "id_str": "148839364401709056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1554560525/triplex_680web_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554560525/triplex_680web_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Evil Kenevil just having too much fun in Temecula, CA today!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:24 +0000", "from_user": "heyitsLISAhere", "from_user_id": 29678171, "from_user_id_str": "29678171", "from_user_name": "\\u029F\\u026A\\u0282\\u03B1 \\u30C4", "geo": null, "id": 148839364338794500, "id_str": "148839364338794496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686980835/tumblr_luvg74gmDp1r1v49to1_500_large_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686980835/tumblr_luvg74gmDp1r1v49to1_500_large_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SanneBiebz oh woww! why nervous? are u guys like having a competition? lol xD or just for fun? xDD", "to_user": "SanneBiebz", "to_user_id": 116745829, "to_user_id_str": "116745829", "to_user_name": "Awesomeness. ", "in_reply_to_status_id": 148839063879823360, "in_reply_to_status_id_str": "148839063879823360"}, +{"created_at": "Mon, 19 Dec 2011 18:57:24 +0000", "from_user": "savvylea711", "from_user_id": 252347637, "from_user_id_str": "252347637", "from_user_name": "Savannah Fletcher", "geo": null, "id": 148839364129075200, "id_str": "148839364129075200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699260245/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699260245/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "bad boys ain't no good, good boys ain't no fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:24 +0000", "from_user": "TheArtsyMe", "from_user_id": 253537978, "from_user_id_str": "253537978", "from_user_name": "MT", "geo": null, "id": 148839363437010940, "id_str": "148839363437010944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697231306/tagc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697231306/tagc_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @mykoupie: Reindeer fun includes free Reindeer poop ideas and free printable http://t.co/QjLXv7m2 @addthis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:24 +0000", "from_user": "davidsowers", "from_user_id": 16064273, "from_user_id_str": "16064273", "from_user_name": "DASO Photo", "geo": null, "id": 148839363428618240, "id_str": "148839363428618242", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670463160/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670463160/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Can't wait for my friends @JRiveiro @hannahriveiro to arrive on Friday. It's gonna be fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:24 +0000", "from_user": "Lon_Day", "from_user_id": 169361776, "from_user_id_str": "169361776", "from_user_name": "Alonda Daniels", "geo": null, "id": 148839363420241920, "id_str": "148839363420241920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1678241245/Alexia_and_I_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678241245/Alexia_and_I_normal.jpeg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Once it pops the fun don't stop #cherry lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:24 +0000", "from_user": "SimplyHawaiian", "from_user_id": 267679590, "from_user_id_str": "267679590", "from_user_name": "PA'A KANAKA", "geo": null, "id": 148839362824646660, "id_str": "148839362824646656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1370780859/Simply_Hawaiian_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1370780859/Simply_Hawaiian_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Take yor 25 Free Bids! Win cool stuff, an iPod! Get a DEAL & have fun too! See Video http://t.co/Vshs5LCz Please RT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:23 +0000", "from_user": "hello_sabrinaa", "from_user_id": 237128947, "from_user_id_str": "237128947", "from_user_name": "Sabrina", "geo": null, "id": 148839361981587460, "id_str": "148839361981587456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1490313312/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1490313312/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Sitting and waiting #how fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:23 +0000", "from_user": "AliahKamaruddin", "from_user_id": 33449739, "from_user_id_str": "33449739", "from_user_name": "Aliah Kamaruddin", "geo": null, "id": 148839361323085820, "id_str": "148839361323085825", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1176745132/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1176745132/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "This thursday, i'll be away from malaysia..it's gonna be so much fun :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:23 +0000", "from_user": "Williegomez32", "from_user_id": 334341519, "from_user_id_str": "334341519", "from_user_name": "William Gomez", "geo": null, "id": 148839360752656400, "id_str": "148839360752656384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1553970445/P44MPzVl_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553970445/P44MPzVl_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @realcormega: yo life is real somebody got robbed outside the grocery store for $150 worth of groceries everything aint popping bottles and fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:23 +0000", "from_user": "StephanieGrant8", "from_user_id": 384437967, "from_user_id_str": "384437967", "from_user_name": "Stephanie Grant", "geo": null, "id": 148839360601665540, "id_str": "148839360601665536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1583642579/Photo_on_2010-10-29_at_14.58__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583642579/Photo_on_2010-10-29_at_14.58__2_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Going to the library for fun. It is a nice change from going there to study!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:23 +0000", "from_user": "SoulG_", "from_user_id": 50993902, "from_user_id_str": "50993902", "from_user_name": "***", "geo": null, "id": 148839360110931970, "id_str": "148839360110931968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689424203/331373153_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689424203/331373153_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @VannesaAmusan: so what we get drunk, so what we smoke weed, were just having fun. We don't care who see's", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:23 +0000", "from_user": "casey_stoker", "from_user_id": 334207141, "from_user_id_str": "334207141", "from_user_name": "Casey Stoker \\u2764", "geo": null, "id": 148839360098353150, "id_str": "148839360098353153", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685890302/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685890302/image_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @fullerfuck: @casey_stoker hahahaha exactly!!! I always get made fun of :/ lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:23 +0000", "from_user": "JaredCurrier", "from_user_id": 143574921, "from_user_id_str": "143574921", "from_user_name": "Jared Currier", "geo": null, "id": 148839359758602240, "id_str": "148839359758602240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1030473822/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1030473822/Untitled_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Well there you go: RT @MatthewKnell: Re: Roosevelt Island, fun fact about how people got there pre-tram: http://t.co/271ebFMH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:23 +0000", "from_user": "AMiRO_", "from_user_id": 99590792, "from_user_id_str": "99590792", "from_user_name": "Amiro.", "geo": null, "id": 148839359548887040, "id_str": "148839359548887040", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698740978/331620835_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698740978/331620835_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @DG96_: RT @AMiRO_: RT @DG96_: Wat doen jullie ? < Straks fifa? - Ben maccie, we playen vanavond < Cool have fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:23 +0000", "from_user": "Vally_Girrl", "from_user_id": 431043716, "from_user_id_str": "431043716", "from_user_name": "Valeriaa\\u2665", "geo": null, "id": 148839359439843330, "id_str": "148839359439843328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680226064/cUdN5H_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680226064/cUdN5H_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@nofkn_clue hahaha yay! :DD This shall be fun!! :))", "to_user": "nofkn_clue", "to_user_id": 407132588, "to_user_id_str": "407132588", "to_user_name": "Cindy Marie", "in_reply_to_status_id": 148838185437380600, "in_reply_to_status_id_str": "148838185437380608"}, +{"created_at": "Mon, 19 Dec 2011 18:57:23 +0000", "from_user": "kEEp_itOn_dlO", "from_user_id": 40792364, "from_user_id_str": "40792364", "from_user_name": "\\u2764DSTructive 1913\\u2764", "geo": null, "id": 148839358970069000, "id_str": "148839358970068992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1661493518/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661493518/image_normal.jpg", "source": "<a href="http://www.handmark.com" rel="nofollow">TweetCaster for iOS</a>", "text": "I had fun though ...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:22 +0000", "from_user": "Badreyh", "from_user_id": 274302483, "from_user_id_str": "274302483", "from_user_name": "Badrayh AL Sheikh", "geo": null, "id": 148839357409796100, "id_str": "148839357409796096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1650666128/__reasonably_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650666128/__reasonably_small_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@siwon407 goodnight dream sweet and day new tomorrow full by happy and fun take care yourself good saranghae ^-^", "to_user": "siwon407", "to_user_id": 125603760, "to_user_id_str": "125603760", "to_user_name": "SiwonChoi", "in_reply_to_status_id": 148819682156220400, "in_reply_to_status_id_str": "148819682156220417"}, +{"created_at": "Mon, 19 Dec 2011 18:57:22 +0000", "from_user": "ServantLeader12", "from_user_id": 142374929, "from_user_id_str": "142374929", "from_user_name": "Carlos L. Martinez", "geo": null, "id": 148839356889702400, "id_str": "148839356889702400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/896058368/P90X_20BUISNESS_20CARD_20006_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/896058368/P90X_20BUISNESS_20CARD_20006_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @HubSpot: Not as fun as tweeting, but important: 5 Noteworthy Examples of Corporate Social Media Policies - http://t.co/bsI8n0ac", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:22 +0000", "from_user": "jillolivarria", "from_user_id": 351084689, "from_user_id_str": "351084689", "from_user_name": "Jilliinn", "geo": null, "id": 148839355430092800, "id_str": "148839355430092800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693683559/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693683559/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "3 more days and my winter break fun will be at a whole nother level \\u2764\\uD83D\\uDE03", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:22 +0000", "from_user": "ormainy", "from_user_id": 147521416, "from_user_id_str": "147521416", "from_user_name": "Omawumi O", "geo": null, "id": 148839354930966530, "id_str": "148839354930966528", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1684713239/IMG-20111209-02711_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684713239/IMG-20111209-02711_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Dynamic duo... @Wajemusik & @Omawumi looking good n having fun! \\u2665 http://t.co/sqBiVwIH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:21 +0000", "from_user": "THE_REALmrsBANK", "from_user_id": 269578688, "from_user_id_str": "269578688", "from_user_name": "JAKYE'S MOMMY", "geo": null, "id": 148839350896033800, "id_str": "148839350896033792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1621291867/iTgDgimG_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621291867/iTgDgimG_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Lol I gave em a lap dance to that song my love is the shh we have fun together I miss his life", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:21 +0000", "from_user": "jensinkoe", "from_user_id": 184605842, "from_user_id_str": "184605842", "from_user_name": "Jenny Sinkoe", "geo": null, "id": 148839350736662530, "id_str": "148839350736662528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1616596531/twitter_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616596531/twitter_normal.PNG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I had so much fun @studiodionne this weekend. I'm going to miss my girls over break! #soadorable http://t.co/LPi5LbX9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:21 +0000", "from_user": "QuarlesSt_BLAK", "from_user_id": 331247856, "from_user_id_str": "331247856", "from_user_name": "QuarlesSt_BLAK", "geo": null, "id": 148839350514364400, "id_str": "148839350514364416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685407482/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685407482/image_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "@Pink_PumpsNKush naw yu aint in da mood yu no fun", "to_user": "Pink_PumpsNKush", "to_user_id": 227561042, "to_user_id_str": "227561042", "to_user_name": "DaQueen_November2", "in_reply_to_status_id": 148838456364240900, "in_reply_to_status_id_str": "148838456364240897"}, +{"created_at": "Mon, 19 Dec 2011 18:57:21 +0000", "from_user": "Ishaq_Ishaq", "from_user_id": 289575553, "from_user_id_str": "289575553", "from_user_name": "Ishaq Ishaq", "geo": null, "id": 148839350472413200, "id_str": "148839350472413184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699700541/pompey_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699700541/pompey_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@BasmaAlnamlah laaa shd3waa don't say that! Hahaha el deera deertkom! A7na b3d enyeey 3ndkom for fun :p", "to_user": "BasmaAlnamlah", "to_user_id": 252871445, "to_user_id_str": "252871445", "to_user_name": "Basma Alnamlah", "in_reply_to_status_id": 148837528227676160, "in_reply_to_status_id_str": "148837528227676160"}, +{"created_at": "Mon, 19 Dec 2011 18:57:21 +0000", "from_user": "Shanaemadison", "from_user_id": 187820065, "from_user_id_str": "187820065", "from_user_name": "Shanae Scott", "geo": null, "id": 148839350019424260, "id_str": "148839350019424256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1663732950/Photo_on_2011-11-23_at_16.59__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663732950/Photo_on_2011-11-23_at_16.59__2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@KeyTo_My_Heart yup yup ! This goin be fun", "to_user": "KeyTo_My_Heart", "to_user_id": 260054244, "to_user_id_str": "260054244", "to_user_name": "LaTwanya Johnson", "in_reply_to_status_id": 148839126014246900, "in_reply_to_status_id_str": "148839126014246912"}, +{"created_at": "Mon, 19 Dec 2011 18:57:22 +0000", "from_user": "pascalhopman", "from_user_id": 92353278, "from_user_id_str": "92353278", "from_user_name": "Pascal Hopman", "geo": null, "id": 148839349088292860, "id_str": "148839349088292864", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1498161094/DSC01720_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1498161094/DSC01720_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Vandaag veel Driving Fun beleefd met deze #MINI John Cooper Works!\\n211 zeer welwillende paardenkrachten. Nice! http://t.co/5ET3ryHl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:20 +0000", "from_user": "iTweetHoesTwerk", "from_user_id": 196845279, "from_user_id_str": "196845279", "from_user_name": "Jordan HendriX", "geo": null, "id": 148839348584972300, "id_str": "148839348584972288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1684169384/iTweetHoesTwerk_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684169384/iTweetHoesTwerk_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Temple run RT @dedrain_roars: What fun apps can I download ?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:20 +0000", "from_user": "Emily_Williams7", "from_user_id": 98076970, "from_user_id_str": "98076970", "from_user_name": "Emily Williams", "geo": null, "id": 148839347578355700, "id_str": "148839347578355712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682285941/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682285941/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I want to meet some new, fun people(: #hmu #tiredofthesamestuffeveryday", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:22 +0000", "from_user": "Edudemic", "from_user_id": 131035262, "from_user_id_str": "131035262", "from_user_name": "Edudemic", "geo": null, "id": 148839347528007680, "id_str": "148839347528007680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1091648898/jeff_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1091648898/jeff_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Nice! Path 2 has arrived. Fun app for micro-social networks. Email from Path: http://t.co/Bqbph777", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:20 +0000", "from_user": "rheedrizzy", "from_user_id": 317268415, "from_user_id_str": "317268415", "from_user_name": "\\u2661 Ambitious Girl \\u30C4", "geo": null, "id": 148839346957582340, "id_str": "148839346957582336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1685330166/rhee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685330166/rhee_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ceemonroee Hell Yeahhhh EVERY Weekend ; then we use to have fun going home at 5 o'clock in the morning lol", "to_user": "ceemonroee", "to_user_id": 219776367, "to_user_id_str": "219776367", "to_user_name": "\\u2022 iSQUIRTonDICKs \\u2022", "in_reply_to_status_id": 148838618922889200, "in_reply_to_status_id_str": "148838618922889216"}, +{"created_at": "Mon, 19 Dec 2011 18:57:20 +0000", "from_user": "Mewi__", "from_user_id": 237803420, "from_user_id_str": "237803420", "from_user_name": "Princess-E\\u0645\\u0652\\u2661-", "geo": null, "id": 148839346756263940, "id_str": "148839346756263936", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688878050/IMG_1220_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688878050/IMG_1220_normal.PNG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Had fun *o*!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:19 +0000", "from_user": "GranDemiSmiles", "from_user_id": 328100861, "from_user_id_str": "328100861", "from_user_name": "\\u2763 Nastya \\u2763", "geo": null, "id": 148839345447645200, "id_str": "148839345447645184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685246374/o-matic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685246374/o-matic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@BTRMonster HI:] So Love your username! so fun:] Follow back sweetie?", "to_user": "BTRMonster", "to_user_id": 363213745, "to_user_id_str": "363213745", "to_user_name": "Lady Gaga | BTR"}, +{"created_at": "Mon, 19 Dec 2011 18:57:19 +0000", "from_user": "MiSz_HighClass", "from_user_id": 330484194, "from_user_id_str": "330484194", "from_user_name": "Kierra", "geo": null, "id": 148839345112100860, "id_str": "148839345112100864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1661947069/MsHighClass_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661947069/MsHighClass_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Lastnight= TOO MUCH FUN!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:19 +0000", "from_user": "_SoloOutcast", "from_user_id": 233788653, "from_user_id_str": "233788653", "from_user_name": "Wheres My Liver ", "geo": null, "id": 148839345032396800, "id_str": "148839345032396800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696659641/ice_bath_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696659641/ice_bath_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@DaPhenomDae RT @JasMean_xoxo: It ain't no fun, if my homies can't have none.\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:19 +0000", "from_user": "PLAING0RGE0US", "from_user_id": 86630930, "from_user_id_str": "86630930", "from_user_name": "Gorgeous :))", "geo": null, "id": 148839344680079360, "id_str": "148839344680079360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1676430144/Snapshot_20111204_11_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676430144/Snapshot_20111204_11_normal.JPG", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@ShydJustGotReal had fun", "to_user": "ShydJustGotReal", "to_user_id": 111470720, "to_user_id_str": "111470720", "to_user_name": "iSayRudeThings&Shitt", "in_reply_to_status_id": 148838417118150660, "in_reply_to_status_id_str": "148838417118150656"}, +{"created_at": "Mon, 19 Dec 2011 18:57:19 +0000", "from_user": "__LipGloss__", "from_user_id": 139428536, "from_user_id_str": "139428536", "from_user_name": "\\u02A4\\u0268\\u0256\\u0281\\u01DF", "geo": null, "id": 148839343677644800, "id_str": "148839343677644800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700144786/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700144786/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Had a ice cream party in Choir class todaaaay. Fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:19 +0000", "from_user": "_AshinKusherrr", "from_user_id": 221966026, "from_user_id_str": "221966026", "from_user_name": "Justice B.", "geo": null, "id": 148839343509876740, "id_str": "148839343509876736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668388669/HaJ4eGgC_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668388669/HaJ4eGgC_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Im quite an ignorant (insert racial slur) in public too. Thats how I have fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:19 +0000", "from_user": "StillUnfinished", "from_user_id": 267882387, "from_user_id_str": "267882387", "from_user_name": "Notorious ;)", "geo": null, "id": 148839342998163460, "id_str": "148839342998163458", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702612364/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702612364/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@sheeCOLE girl I been having fun lol \" when u gonna take your finals from Friday", "to_user": "sheeCOLE", "to_user_id": 162556863, "to_user_id_str": "162556863", "to_user_name": "C E E D Y B \\u2122", "in_reply_to_status_id": 148839142539804670, "in_reply_to_status_id_str": "148839142539804674"}, +{"created_at": "Mon, 19 Dec 2011 18:57:19 +0000", "from_user": "MerriLege7959", "from_user_id": 437567980, "from_user_id_str": "437567980", "from_user_name": "Merri Lege", "geo": null, "id": 148839342457106430, "id_str": "148839342457106433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701205518/15331662720632_104826426203742_100000291564251_121863_3932299_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701205518/15331662720632_104826426203742_100000291564251_121863_3932299_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "having too much fun drinkin with these clownz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:19 +0000", "from_user": "AGHAZSMS", "from_user_id": 400308072, "from_user_id_str": "400308072", "from_user_name": "AGHAZ SMS", "geo": null, "id": 148839341790212100, "id_str": "148839341790212097", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696512792/372907_329288220419875_989305596_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696512792/372907_329288220419875_989305596_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "zillat me dafan kardia murda Yazeed (l.a) ka\\nphele na is jahan me taa'fun paleed ka...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:19 +0000", "from_user": "maaudjj", "from_user_id": 228354902, "from_user_id_str": "228354902", "from_user_name": "maud", "geo": null, "id": 148839341752451070, "id_str": "148839341752451073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1671249711/Nijmegen-20111201-00064_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671249711/Nijmegen-20111201-00064_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "So what we get drunk, so what we smoke weed, were just having fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:18 +0000", "from_user": "JMMZHerrera", "from_user_id": 380975829, "from_user_id_str": "380975829", "from_user_name": "Juan Miguel Herrera", "geo": null, "id": 148839338799673340, "id_str": "148839338799673345", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1562491975/s640x480_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1562491975/s640x480_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Christmas doesn't end for us until Jan 6. That's kind of fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:18 +0000", "from_user": "MilersIsBeast", "from_user_id": 168895492, "from_user_id_str": "168895492", "from_user_name": "Emily Trevizo", "geo": null, "id": 148839337956618240, "id_str": "148839337956618240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1651692257/milerse.e.ee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651692257/milerse.e.ee_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "IM HAVING SO MUCH FUN WITH THE CURSOR ON MY TUMBLR..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:17 +0000", "from_user": "abbbbbbey", "from_user_id": 375301253, "from_user_id_str": "375301253", "from_user_name": "Abbey Stewart ", "geo": null, "id": 148839337046454270, "id_str": "148839337046454272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1558051188/1bP8LD0u_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1558051188/1bP8LD0u_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ThatDudeMCFLY: It's all fun and games until someone steals a tweet lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:17 +0000", "from_user": "politicalline", "from_user_id": 402911205, "from_user_id_str": "402911205", "from_user_name": "Donny S", "geo": null, "id": 148839337029668860, "id_str": "148839337029668865", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1617635293/obama-toys-e1310607155530_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1617635293/obama-toys-e1310607155530_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Match-o-Matic pretty fun give it a try! - ABC News http://t.co/evrkgfek via @abc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:17 +0000", "from_user": "SirJuiceALot", "from_user_id": 155102930, "from_user_id_str": "155102930", "from_user_name": "Raps Skip Bayless", "geo": null, "id": 148839335893024770, "id_str": "148839335893024768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686024567/SNAPBACKP251_60_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686024567/SNAPBACKP251_60_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "As I thought they would..They slandered Tebow on SNL cause of his faith..Media always twistin & makin fun of religion..smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:17 +0000", "from_user": "danny4tis", "from_user_id": 274490697, "from_user_id_str": "274490697", "from_user_name": "Danny Fortis", "geo": +{"coordinates": [53.803,-1.5762], "type": "Point"}, "id": 148839334710226940, "id_str": "148839334710226945", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692580205/63492112057555375_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692580205/63492112057555375_normal.jpg", "source": "<a href="http://mobileways.de/gravity" rel="nofollow">Gravity!</a>", "text": "@SciFiNow OMAC has been my favourite, the Kirby-esque art and fun simple story make it a real fun read", "to_user": "SciFiNow", "to_user_id": 28321749, "to_user_id_str": "28321749", "to_user_name": "SciFiNow", "in_reply_to_status_id": 148828593844264960, "in_reply_to_status_id_str": "148828593844264961"}, +{"created_at": "Mon, 19 Dec 2011 18:57:16 +0000", "from_user": "gcpettit", "from_user_id": 316594505, "from_user_id_str": "316594505", "from_user_name": "GCPettit", "geo": null, "id": 148839331493199870, "id_str": "148839331493199873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1413294350/10529_1104905676501_1642549953_30306581_8338654_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1413294350/10529_1104905676501_1642549953_30306581_8338654_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Being a Sith Warrior is more fun than being a computer technician. Is it 5:00 yet? @bioware @SWTOR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:16 +0000", "from_user": "SenselessDope_", "from_user_id": 309857713, "from_user_id_str": "309857713", "from_user_name": "Ask. ", "geo": null, "id": 148839330578829300, "id_str": "148839330578829312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695160349/IMAG1549-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695160349/IMAG1549-1_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "@__SallyMckeever ; Ion even remember , lol . It was just fun , we were getting at each other the whole night", "to_user": "__SallyMckeever", "to_user_id": 321700510, "to_user_id_str": "321700510", "to_user_name": "Abomination.", "in_reply_to_status_id": 148839024197513200, "in_reply_to_status_id_str": "148839024197513216"}, +{"created_at": "Mon, 19 Dec 2011 18:57:16 +0000", "from_user": "britney8622", "from_user_id": 87632374, "from_user_id_str": "87632374", "from_user_name": "Britney Jarae Holt", "geo": null, "id": 148839330025189380, "id_str": "148839330025189376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1499525002/RyqbPtBs_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1499525002/RyqbPtBs_normal", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "S/O to Jersey! I know she having fun @ home!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:16 +0000", "from_user": "kdanahenry", "from_user_id": 345488739, "from_user_id_str": "345488739", "from_user_name": "Dana Henry", "geo": null, "id": 148839329446375420, "id_str": "148839329446375424", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1608608113/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608608113/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Y'all have fun @MeganHenry10211 @SavannaKlocke @laurenpodraza #takepics!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:15 +0000", "from_user": "Kelseys_Gay", "from_user_id": 395008216, "from_user_id_str": "395008216", "from_user_name": "Kelsey Current", "geo": null, "id": 148839328544587780, "id_str": "148839328544587776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1648701476/4HX7SG4K_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648701476/4HX7SG4K_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ChaseDeezNuts: @AlexisYeahCantu im not making fun of him... i just think he looks like the joker", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:15 +0000", "from_user": "carleysokie", "from_user_id": 349271588, "from_user_id_str": "349271588", "from_user_name": "Carley Sokol", "geo": null, "id": 148839326808162300, "id_str": "148839326808162304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1479660809/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1479660809/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@PaigeHeagle24 just look mine up www.calibounddd.tumblr.com you post photography pics and you follow people and people follow you! It's fun", "to_user": "PaigeHeagle24", "to_user_id": 339514062, "to_user_id_str": "339514062", "to_user_name": "Paige Heagle"}, +{"created_at": "Mon, 19 Dec 2011 18:57:15 +0000", "from_user": "icelemongirl", "from_user_id": 116821810, "from_user_id_str": "116821810", "from_user_name": "\\uE030\\uE204\\uBC15\\uD790\\uD790\\uE204\\uE32E", "geo": null, "id": 148839325675696130, "id_str": "148839325675696128", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689251667/ProfilePhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689251667/ProfilePhoto_normal.png", "source": "<a href="http://www.osfoora.com" rel="nofollow">Osfoora for iPhone</a>", "text": "@Heedictator goodnight and have fun with your chocoball \\uBFCC\\uC789\\uBFCC\\uC591\\uE409", "to_user": "Heedictator", "to_user_id": 135600392, "to_user_id_str": "135600392", "to_user_name": "\\uD76C\\uB2D8"}, +{"created_at": "Mon, 19 Dec 2011 18:57:15 +0000", "from_user": "triciamjohnson", "from_user_id": 172229709, "from_user_id_str": "172229709", "from_user_name": "Tricia Marie Johnson", "geo": null, "id": 148839325428232200, "id_str": "148839325428232192", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1663565611/trishi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663565611/trishi_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@alischippel @KileyCunn have fun Ali :)", "to_user": "alischippel", "to_user_id": 286735603, "to_user_id_str": "286735603", "to_user_name": "Ali Schippel", "in_reply_to_status_id": 148834963532419070, "in_reply_to_status_id_str": "148834963532419073"}, +{"created_at": "Mon, 19 Dec 2011 18:57:15 +0000", "from_user": "Hailey585698745", "from_user_id": 434929910, "from_user_id_str": "434929910", "from_user_name": "Hailey", "geo": null, "id": 148839325201739780, "id_str": "148839325201739777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688980054/Full200811031550464915123_kamasutraFull.jpgx_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688980054/Full200811031550464915123_kamasutraFull.jpgx_normal.jpeg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Kathe Kruse Ikibab Miau - Soft Kitty Toy: This Ikibab Miau is a bright, fun kitty that is sure to be a hit with ... http://t.co/DeCQ6Stm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:14 +0000", "from_user": "Shantayywb", "from_user_id": 431771780, "from_user_id_str": "431771780", "from_user_name": "Shantay Gartrell", "geo": null, "id": 148839324824248320, "id_str": "148839324824248320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681180104/large_1272562767_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681180104/large_1272562767_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Soda Slip On Flats Black Sz 7.5: Zipper-trimmed bow offer a fun update to a classic flat. Cushioned footbed with... http://t.co/y7xMXZnF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:14 +0000", "from_user": "britshcouncilmx", "from_user_id": 44284199, "from_user_id_str": "44284199", "from_user_name": "BritishCouncilMexico", "geo": null, "id": 148839324006359040, "id_str": "148839324006359040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/481838291/logobc-small_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/481838291/logobc-small_normal.gif", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "There are lots of fun Christmas activities on LearnEnglish Kids for your children to do over the holidays.... http://t.co/sKCmAPbE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:14 +0000", "from_user": "Christarius", "from_user_id": 84707246, "from_user_id_str": "84707246", "from_user_name": "Christian Magno", "geo": null, "id": 148839322894860300, "id_str": "148839322894860288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/602066854/spam-special_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/602066854/spam-special_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Who knew phone unboxing vids could be this much fun! Ninja's Unboxing 3 - 8bit epicness! http://t.co/5ETJZ9nE via @youtube", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:14 +0000", "from_user": "Koko_FitClub", "from_user_id": 74911869, "from_user_id_str": "74911869", "from_user_name": "Koko FitClub", "geo": null, "id": 148839321976311800, "id_str": "148839321976311808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/419634902/kfc_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/419634902/kfc_twitter_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Who is going to be the 1,500th person to like us? How can we have fun marking the occasion? Hmmm...turn them into... http://t.co/4ieulgYO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:13 +0000", "from_user": "Cindymealer", "from_user_id": 85453034, "from_user_id_str": "85453034", "from_user_name": "Cindy Mealer", "geo": null, "id": 148839319933689860, "id_str": "148839319933689856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1170989838/189758774_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1170989838/189758774_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Hehe. Cool, huh? ;D \\u201C@snthomson: Just had so much fun typing Let it Snow into http://t.co/ReUrua0G #yay\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:13 +0000", "from_user": "LV_4rm_Da_WV", "from_user_id": 201488728, "from_user_id_str": "201488728", "from_user_name": "LV Alix", "geo": null, "id": 148839319866589200, "id_str": "148839319866589184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697508705/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697508705/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "It ain't no fun unless we all get some", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:14 +0000", "from_user": "cc_lesperance", "from_user_id": 440464352, "from_user_id_str": "440464352", "from_user_name": "Clarissa L'Esperance", "geo": null, "id": 148839318830579700, "id_str": "148839318830579712", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701252769/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701252769/image_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Camera on iOS</a>", "text": "Eating fun nuggets :)\\nDino style http://t.co/o6qKq9gL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:13 +0000", "from_user": "DownForTheRide", "from_user_id": 242459801, "from_user_id_str": "242459801", "from_user_name": "Joyce Cuaycong", "geo": null, "id": 148839316737630200, "id_str": "148839316737630209", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1690263705/IMG_20111202_155420_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690263705/IMG_20111202_155420_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Lighters are actually fun to play with!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:12 +0000", "from_user": "fuck_nikki", "from_user_id": 409829303, "from_user_id_str": "409829303", "from_user_name": "Nicole Indell", "geo": null, "id": 148839315991040000, "id_str": "148839315991040000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695472247/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695472247/me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Paint balling is surprisingly fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:12 +0000", "from_user": "PsimonSez", "from_user_id": 141380425, "from_user_id_str": "141380425", "from_user_name": "Patrick Coffey", "geo": null, "id": 148839315491917820, "id_str": "148839315491917824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1607275631/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607275631/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@JonahHill Seen Liley's latest, Angry Boys? SHH<Angry Boys yet fun. The Sims twins from We Can Be Heroes are back. You killed in Moneyball!", "to_user": "JonahHill", "to_user_id": 256573865, "to_user_id_str": "256573865", "to_user_name": "Jonah Hill", "in_reply_to_status_id": 145754644856053760, "in_reply_to_status_id_str": "145754644856053761"}, +{"created_at": "Mon, 19 Dec 2011 18:57:12 +0000", "from_user": "Astra_Denny", "from_user_id": 29684168, "from_user_id_str": "29684168", "from_user_name": "Astra Denny", "geo": null, "id": 148839314141360130, "id_str": "148839314141360128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1584671948/af_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584671948/af_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@emilyjane333 Sounds great! Have fun tomorrow!! :) Imogen seems like such a nice person, I take it she's a real good cook? xx", "to_user": "emilyjane333", "to_user_id": 179132947, "to_user_id_str": "179132947", "to_user_name": "Emily Jane \\u262E", "in_reply_to_status_id": 148837590387273730, "in_reply_to_status_id_str": "148837590387273728"}, +{"created_at": "Mon, 19 Dec 2011 18:57:12 +0000", "from_user": "Angel14meg", "from_user_id": 193124546, "from_user_id_str": "193124546", "from_user_name": "Meg Thedford", "geo": null, "id": 148839314036502530, "id_str": "148839314036502528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1607772048/meghan1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607772048/meghan1_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Mother and daughter outing. Enjoying some time with my mom! So much fun! :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:12 +0000", "from_user": "gracehidog", "from_user_id": 52313742, "from_user_id_str": "52313742", "from_user_name": "Grace Heidig", "geo": null, "id": 148839313067606000, "id_str": "148839313067606016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1669604423/furry_hat_friends-23_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669604423/furry_hat_friends-23_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Everything's all fun and games until you realize you're wearing denim on denim", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:12 +0000", "from_user": "BlackAnnaNicole", "from_user_id": 64913844, "from_user_id_str": "64913844", "from_user_name": "CaT StizzY (-_~.)\\n", "geo": null, "id": 148839312463642620, "id_str": "148839312463642624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685266237/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685266237/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Yayyy Stormi works today!! I swear she brings out the fun in me loll", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:11 +0000", "from_user": "HollyBellMummy", "from_user_id": 31507501, "from_user_id_str": "31507501", "from_user_name": "Holly Bell", "geo": null, "id": 148839311440220160, "id_str": "148839311440220162", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1537383743/34114_holly_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1537383743/34114_holly_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@Tarb2010 It was such fun. x", "to_user": "Tarb2010", "to_user_id": 283653899, "to_user_id_str": "283653899", "to_user_name": "Paul J White", "in_reply_to_status_id": 148838874100138000, "in_reply_to_status_id_str": "148838874100137985"}, +{"created_at": "Mon, 19 Dec 2011 18:57:11 +0000", "from_user": "DarkSpider999", "from_user_id": 352150505, "from_user_id_str": "352150505", "from_user_name": "Kenneth Seares", "geo": null, "id": 148839311226318850, "id_str": "148839311226318848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697649733/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697649733/image_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", "text": "Playing The Sims FreePlay on iPhone. Get it for free and have a LOT of fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:11 +0000", "from_user": "ddeeaarr_nutti", "from_user_id": 107871160, "from_user_id_str": "107871160", "from_user_name": "ddeeaarr.", "geo": null, "id": 148839310995619840, "id_str": "148839310995619840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1594005175/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1594005175/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Mission impossible w/friends were fun!! <3. Dec19th,2011", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:11 +0000", "from_user": "TheZRoberts", "from_user_id": 222685832, "from_user_id_str": "222685832", "from_user_name": "Zachariah Roberts", "geo": null, "id": 148839309791866880, "id_str": "148839309791866880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1663526379/holiday_pistol_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663526379/holiday_pistol_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "That would be fun. RT @outsidethenba: I would like the Clippers to sign Peja Stojakovic.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:11 +0000", "from_user": "_CokesCityLAZER", "from_user_id": 362633889, "from_user_id_str": "362633889", "from_user_name": "Sequoia Smith \\u2665", "geo": null, "id": 148839309628289020, "id_str": "148839309628289024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700897767/swcsz_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700897767/swcsz_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "This week SHOULD be fun .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:10 +0000", "from_user": "taylornicole12c", "from_user_id": 183738378, "from_user_id_str": "183738378", "from_user_name": "taylor collins", "geo": null, "id": 148839307862487040, "id_str": "148839307862487040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1607902510/321680_1987238375420_1677142043_1484822_782368190_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607902510/321680_1987238375420_1677142043_1484822_782368190_n_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "I know what you mean its no fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:10 +0000", "from_user": "dreamzsou", "from_user_id": 64149151, "from_user_id_str": "64149151", "from_user_name": "soumya kurup", "geo": null, "id": 148839306818101250, "id_str": "148839306818101248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1676715235/IMG_2336_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676715235/IMG_2336_normal.JPG", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Looked smashing,danced uninhibitedly,ate to heart's content.....what a fun fun evening.:-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:10 +0000", "from_user": "TweetMe_Kayla", "from_user_id": 320507931, "from_user_id_str": "320507931", "from_user_name": "\\uE246\\uE30A\\uE32DKayla\\uE42A\\uE418\\uE409", "geo": null, "id": 148839306696470530, "id_str": "148839306696470528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702404184/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702404184/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@SunnySiide_Up Lmaoooo I Can't Wait Until Friday When We Go Bowling We All Have So Much Fun I Love The Girls Bballl Group We Fam Ahah", "to_user": "SunnySiide_Up", "to_user_id": 393794794, "to_user_id_str": "393794794", "to_user_name": "Tati Sanchez", "in_reply_to_status_id": 148838858224713730, "in_reply_to_status_id_str": "148838858224713728"}, +{"created_at": "Mon, 19 Dec 2011 18:57:10 +0000", "from_user": "jpar0", "from_user_id": 8650422, "from_user_id_str": "8650422", "from_user_name": "Justin Parlette", "geo": null, "id": 148839306457395200, "id_str": "148839306457395200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700789446/jpar0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700789446/jpar0_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Fun list, and some stuff that was new to me. Scope it, Tweeps. RT @SamsMyth: My 8 favorite Christmas records. http://t.co/RP4EVwD6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:10 +0000", "from_user": "ayboodayyy", "from_user_id": 372494004, "from_user_id_str": "372494004", "from_user_name": "Elizabeth ", "geo": null, "id": 148839305694027780, "id_str": "148839305694027777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1552122974/319603_2189813417272_1005184947_31985988_1427450121_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552122974/319603_2189813417272_1005184947_31985988_1427450121_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "S/O to @R_Amato215 hope your having a fun time in NYC! #jealous! Can't wait till you get back", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:10 +0000", "from_user": "dwilhite23", "from_user_id": 41583519, "from_user_id_str": "41583519", "from_user_name": "Derrick Wilhite", "geo": null, "id": 148839305014554620, "id_str": "148839305014554624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702387365/Di5H88LO_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702387365/Di5H88LO_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@creoleReDDbone lol. You should be having fun in cali..", "to_user": "creoleReDDbone", "to_user_id": 70879066, "to_user_id_str": "70879066", "to_user_name": "Dar'Shay Bieber ", "in_reply_to_status_id": 148838767707426800, "in_reply_to_status_id_str": "148838767707426816"}, +{"created_at": "Mon, 19 Dec 2011 18:57:10 +0000", "from_user": "LCampbellGDZ", "from_user_id": 423737875, "from_user_id_str": "423737875", "from_user_name": "Lewis Campbell", "geo": null, "id": 148839304813219840, "id_str": "148839304813219840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1663114741/tumblr_luy2meG4Ku1qf0j3io1_1280_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663114741/tumblr_luy2meG4Ku1qf0j3io1_1280_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "New blog: Dating on a budget: \\When you\\u2019re searching for a partner online, whether it\\u2019s for some fun ... http://t.co/BpJB6RKe Please RT!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:10 +0000", "from_user": "IselaScullark10", "from_user_id": 438871376, "from_user_id_str": "438871376", "from_user_name": "Isela Scullark", "geo": null, "id": 148839304670617600, "id_str": "148839304670617600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": null, "source": "<a href="http://twitter.com/">web</a>", "text": "@Semraaa_ \"Wow! I just won this for free, Free STARBUCKS drink gift card. Any drink any size http://t.co/JDI3A018 \"", "to_user": "Semraaa_", "to_user_id": 104888813, "to_user_id_str": "104888813", "to_user_name": "Semra", "in_reply_to_status_id": 148838782605594620, "in_reply_to_status_id_str": "148838782605594624"}, +{"created_at": "Mon, 19 Dec 2011 18:57:10 +0000", "from_user": "XoJackieSpice", "from_user_id": 165508262, "from_user_id_str": "165508262", "from_user_name": "\\u0BB0\\u0BBE\\u0B95\\u0BCD\\u0B95\\u0BC1\\u0BB5\\u0BC6\\u0BB2\\u0BCD", "geo": null, "id": 148839304603516930, "id_str": "148839304603516928", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695735314/260439_10150699868920074_523995073_19831408_949742_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695735314/260439_10150699868920074_523995073_19831408_949742_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MsSantanarose :), it's fun !", "to_user": "MsSantanarose", "to_user_id": 234380532, "to_user_id_str": "234380532", "to_user_name": "Rose Santana", "in_reply_to_status_id": 148838288382373900, "in_reply_to_status_id_str": "148838288382373888"}, +{"created_at": "Mon, 19 Dec 2011 18:57:10 +0000", "from_user": "6_lovebritneyyy", "from_user_id": 199330683, "from_user_id_str": "199330683", "from_user_name": "no, this is patrick", "geo": null, "id": 148839304142131200, "id_str": "148839304142131201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701687369/AgAksRfCAAEK9v8_normal.jpg-large", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701687369/AgAksRfCAAEK9v8_normal.jpg-large", "source": "<a href="http://twitter.com/">web</a>", "text": "driving around on a Saturday night , you made fun of me for singing my song .. </3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:09 +0000", "from_user": "evanpatten", "from_user_id": 197619741, "from_user_id_str": "197619741", "from_user_name": "Evan patten", "geo": null, "id": 148839302804152320, "id_str": "148839302804152320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1135452085/portmouthcrit2010041-EP_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1135452085/portmouthcrit2010041-EP_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Fun day @sundayriver with glen and marc http://t.co/hy3P0mxp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:09 +0000", "from_user": "KillaFromTha3", "from_user_id": 254104500, "from_user_id_str": "254104500", "from_user_name": "insert name ", "geo": null, "id": 148839302552502270, "id_str": "148839302552502273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696901171/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696901171/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "you have a twin? double the fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:09 +0000", "from_user": "fullerfuck", "from_user_id": 271137351, "from_user_id_str": "271137351", "from_user_name": "ambuhh", "geo": null, "id": 148839301164179460, "id_str": "148839301164179456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1598668365/lol2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598668365/lol2_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@casey_stoker hahahaha exactly!!! I always get made fun of :/ lol", "to_user": "casey_stoker", "to_user_id": 334207141, "to_user_id_str": "334207141", "to_user_name": "Casey Stoker \\u2764", "in_reply_to_status_id": 148839156070621200, "in_reply_to_status_id_str": "148839156070621184"}, +{"created_at": "Mon, 19 Dec 2011 18:57:09 +0000", "from_user": "lovelyone501", "from_user_id": 124204758, "from_user_id_str": "124204758", "from_user_name": "mona", "geo": null, "id": 148839300077858800, "id_str": "148839300077858816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697327947/W7n8uvs4_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697327947/W7n8uvs4_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@MomokoNingyou oh i hope your life will be fun and good ^^.btw hows the weather in japan ?", "to_user": "MomokoNingyou", "to_user_id": 438180087, "to_user_id_str": "438180087", "to_user_name": "Momoko Chan", "in_reply_to_status_id": 148818961130205200, "in_reply_to_status_id_str": "148818961130205184"}, +{"created_at": "Mon, 19 Dec 2011 18:57:09 +0000", "from_user": "TShirts_eCrater", "from_user_id": 101516217, "from_user_id_str": "101516217", "from_user_name": "Miss Anne", "geo": null, "id": 148839299712946180, "id_str": "148839299712946176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/607693940/Prince2004TShirtFront1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/607693940/Prince2004TShirtFront1_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Quick Gift Pick of the Day! NEW! Spaced Out Smurf T-Shirt Size XXL Just one of 100s of Tees! Follow for FUN! http://t.co/cy1bYaeq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:08 +0000", "from_user": "1stlove143", "from_user_id": 310067296, "from_user_id_str": "310067296", "from_user_name": "1stlove143", "geo": null, "id": 148839299494850560, "id_str": "148839299494850560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1379736581/jamyrah_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1379736581/jamyrah_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@YoFaceAhh_15 @MyUnique_Tweets and William and Donnie......we had fun lastnite lol...the facial expressions were the funniest", "to_user": "YoFaceAhh_15", "to_user_id": 368101793, "to_user_id_str": "368101793", "to_user_name": "JaMarcus Sanders"}, +{"created_at": "Mon, 19 Dec 2011 18:57:08 +0000", "from_user": "DeJanee_Fennell", "from_user_id": 33500561, "from_user_id_str": "33500561", "from_user_name": "DeJanee Fennell ", "geo": null, "id": 148839299280928770, "id_str": "148839299280928769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670909031/384920_2275074396034_1223910395_31795789_1606929241_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670909031/384920_2275074396034_1223910395_31795789_1606929241_n_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "Coco had fun on her walk! \\uD83D\\uDE0A http://t.co/BeRcqz5W", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:57:09 +0000", "from_user": "fullerfuck", "from_user_id": 271137351, "from_user_id_str": "271137351", "from_user_name": "ambuhh", "geo": null, "id": 148839301164179460, "id_str": "148839301164179456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1598668365/lol2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598668365/lol2_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@casey_stoker hahahaha exactly!!! I always get made fun of :/ lol", "to_user": "casey_stoker", "to_user_id": 334207141, "to_user_id_str": "334207141", "to_user_name": "Casey Stoker \\u2764", "in_reply_to_status_id": 148839156070621200, "in_reply_to_status_id_str": "148839156070621184"}, +{"created_at": "Mon, 19 Dec 2011 18:57:09 +0000", "from_user": "lovelyone501", "from_user_id": 124204758, "from_user_id_str": "124204758", "from_user_name": "mona", "geo": null, "id": 148839300077858800, "id_str": "148839300077858816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697327947/W7n8uvs4_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697327947/W7n8uvs4_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@MomokoNingyou oh i hope your life will be fun and good ^^.btw hows the weather in japan ?", "to_user": "MomokoNingyou", "to_user_id": 438180087, "to_user_id_str": "438180087", "to_user_name": "Momoko Chan", "in_reply_to_status_id": 148818961130205200, "in_reply_to_status_id_str": "148818961130205184"}, +{"created_at": "Mon, 19 Dec 2011 18:57:09 +0000", "from_user": "TShirts_eCrater", "from_user_id": 101516217, "from_user_id_str": "101516217", "from_user_name": "Miss Anne", "geo": null, "id": 148839299712946180, "id_str": "148839299712946176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/607693940/Prince2004TShirtFront1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/607693940/Prince2004TShirtFront1_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Quick Gift Pick of the Day! NEW! Spaced Out Smurf T-Shirt Size XXL Just one of 100s of Tees! Follow for FUN! http://t.co/cy1bYaeq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:08 +0000", "from_user": "1stlove143", "from_user_id": 310067296, "from_user_id_str": "310067296", "from_user_name": "1stlove143", "geo": null, "id": 148839299494850560, "id_str": "148839299494850560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1379736581/jamyrah_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1379736581/jamyrah_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@YoFaceAhh_15 @MyUnique_Tweets and William and Donnie......we had fun lastnite lol...the facial expressions were the funniest", "to_user": "YoFaceAhh_15", "to_user_id": 368101793, "to_user_id_str": "368101793", "to_user_name": "JaMarcus Sanders"}, +{"created_at": "Mon, 19 Dec 2011 18:57:08 +0000", "from_user": "DeJanee_Fennell", "from_user_id": 33500561, "from_user_id_str": "33500561", "from_user_name": "DeJanee Fennell ", "geo": null, "id": 148839299280928770, "id_str": "148839299280928769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670909031/384920_2275074396034_1223910395_31795789_1606929241_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670909031/384920_2275074396034_1223910395_31795789_1606929241_n_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "Coco had fun on her walk! \\uD83D\\uDE0A http://t.co/BeRcqz5W", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:08 +0000", "from_user": "kiittn", "from_user_id": 48387894, "from_user_id_str": "48387894", "from_user_name": "\\u2605Kiittn", "geo": null, "id": 148839298983145470, "id_str": "148839298983145472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1635278639/photo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635278639/photo_normal.JPG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Nahnewkuh lol that sounds awesome! It's been YEARS since i've had that much fun. I'm happy for you and wish I could've had fun with ya! :)", "to_user": "Nahnewkuh", "to_user_id": 95922303, "to_user_id_str": "95922303", "to_user_name": "Nanuka Takashi", "in_reply_to_status_id": 148838550106947600, "in_reply_to_status_id_str": "148838550106947584"}, +{"created_at": "Mon, 19 Dec 2011 18:57:08 +0000", "from_user": "SaiPhifer", "from_user_id": 22706803, "from_user_id_str": "22706803", "from_user_name": "Sai Phif\\u00E9r", "geo": null, "id": 148839298941194240, "id_str": "148839298941194240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1667331090/330702369_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667331090/330702369_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Sanaa Lathan Slams Kobe Bryant Rumors: \\u201CI\\u2019m Not His Type\\u201D - \"Can A Girl Have Some Fun At A Jay Z, Kanye Concert...?\" - http://t.co/J0phv9B9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:08 +0000", "from_user": "SashaBaxy", "from_user_id": 26836335, "from_user_id_str": "26836335", "from_user_name": "\\u266BSashaBaxy\\u266B", "geo": null, "id": 148839298572103680, "id_str": "148839298572103680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690540417/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690540417/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@EzekielUglyboy lol have fun with that!! I'm slothing tonight", "to_user": "EzekielUglyboy", "to_user_id": 147364699, "to_user_id_str": "147364699", "to_user_name": "Ezekiel Uglyboy", "in_reply_to_status_id": 148839089804820480, "in_reply_to_status_id_str": "148839089804820480"}, +{"created_at": "Mon, 19 Dec 2011 18:57:08 +0000", "from_user": "IsthatSamBone", "from_user_id": 24553156, "from_user_id_str": "24553156", "from_user_name": "Sam Bone", "geo": null, "id": 148839297716465660, "id_str": "148839297716465664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1632414235/me2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632414235/me2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @FATTREL: \\u201C@smoothpercrushn: @FATTREL last nite was fun fool ... Good Shit\\u201D--LLS DA CROWD WENT WILD!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:08 +0000", "from_user": "SwiftySparkles", "from_user_id": 218668015, "from_user_id_str": "218668015", "from_user_name": "Savannah Swift ", "geo": null, "id": 148839296172949500, "id_str": "148839296172949504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681912262/savannahalice_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681912262/savannahalice_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Charlie_Rowe Have fun, & i love you too! \\u2665 :)", "to_user": "Charlie_Rowe", "to_user_id": 172055186, "to_user_id_str": "172055186", "to_user_name": "Charlie Rowe"}, +{"created_at": "Mon, 19 Dec 2011 18:57:06 +0000", "from_user": "SaviorLexi", "from_user_id": 400443245, "from_user_id_str": "400443245", "from_user_name": "Alexia Branson", "geo": null, "id": 148839291143983100, "id_str": "148839291143983106", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1661516354/770412600_1377337_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661516354/770412600_1377337_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "@Poisens_Promise Don't you do anything else for fun? Other than killing pretty things and sex?", "to_user": "Poisens_Promise", "to_user_id": 295070602, "to_user_id_str": "295070602", "to_user_name": "Damon Salvatore", "in_reply_to_status_id": 148838156526039040, "in_reply_to_status_id_str": "148838156526039040"}, +{"created_at": "Mon, 19 Dec 2011 18:57:06 +0000", "from_user": "itweetsoSWAG", "from_user_id": 165851586, "from_user_id_str": "165851586", "from_user_name": "forever alone \\u2654", "geo": null, "id": 148839289105547260, "id_str": "148839289105547264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698988605/15953255_large_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698988605/15953255_large_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Keep making me laugh,\\nLet's go get high\\nThe road is long, we carry on\\nTry to have fun in the meantime", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:06 +0000", "from_user": "pixiangel101", "from_user_id": 335637047, "from_user_id_str": "335637047", "from_user_name": "Angel", "geo": null, "id": 148839288006656000, "id_str": "148839288006656000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1556382791/165759_10150091873213679_822513678_6065783_2665300_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1556382791/165759_10150091873213679_822513678_6065783_2665300_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@ellie_luisa yeah was fun although jackson looked a little like wow when him & ben walked in lol but was still fun had a good talk", "to_user": "ellie_luisa", "to_user_id": 22859757, "to_user_id_str": "22859757", "to_user_name": "Quasimodo", "in_reply_to_status_id": 148838066159763460, "in_reply_to_status_id_str": "148838066159763458"}, +{"created_at": "Mon, 19 Dec 2011 18:57:06 +0000", "from_user": "catconnor", "from_user_id": 16060628, "from_user_id_str": "16060628", "from_user_name": "Cat Connor", "geo": null, "id": 148839287599792130, "id_str": "148839287599792128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687372744/Snapshot_20111009_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687372744/Snapshot_20111009_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@LornaSuzuki Oh I shall! Love my editor - she makes this so much fun!", "to_user": "LornaSuzuki", "to_user_id": 46544514, "to_user_id_str": "46544514", "to_user_name": "Lorna Suzuki", "in_reply_to_status_id": 148838990269792260, "in_reply_to_status_id_str": "148838990269792256"}, +{"created_at": "Mon, 19 Dec 2011 18:57:06 +0000", "from_user": "sardonicvixxen", "from_user_id": 354214721, "from_user_id_str": "354214721", "from_user_name": "Charlotte :) x", "geo": +{"coordinates": [53.345,-1.4236], "type": "Point"}, "id": 148839287142617100, "id_str": "148839287142617090", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1673073837/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673073837/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@LordJasonAlex lol sounds fun :) xx", "to_user": "LordJasonAlex", "to_user_id": 124779847, "to_user_id_str": "124779847", "to_user_name": "Jason Alexander\\u2122", "in_reply_to_status_id": 148839099187470340, "in_reply_to_status_id_str": "148839099187470336"}, +{"created_at": "Mon, 19 Dec 2011 18:57:05 +0000", "from_user": "AngelaGiaramita", "from_user_id": 376220419, "from_user_id_str": "376220419", "from_user_name": "angela_giaramita ", "geo": null, "id": 148839285280354300, "id_str": "148839285280354305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695061487/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695061487/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Chriineeex3 I have too much fun with you lmao.. hit me up biotch", "to_user": "Chriineeex3", "to_user_id": 435355013, "to_user_id_str": "435355013", "to_user_name": "Chrine\\u2606", "in_reply_to_status_id": 148620444424085500, "in_reply_to_status_id_str": "148620444424085504"}, +{"created_at": "Mon, 19 Dec 2011 18:57:05 +0000", "from_user": "shazzziiieee", "from_user_id": 112203792, "from_user_id_str": "112203792", "from_user_name": "Shannon Crossland :)", "geo": null, "id": 148839285230026750, "id_str": "148839285230026752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698964089/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698964089/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@texfisher do you wanna fuck off and stop making fun of my teacher!:@", "to_user": "texfisher", "to_user_id": 234488960, "to_user_id_str": "234488960", "to_user_name": "tex fisher", "in_reply_to_status_id": 148838864885260300, "in_reply_to_status_id_str": "148838864885260288"}, +{"created_at": "Mon, 19 Dec 2011 18:57:05 +0000", "from_user": "astrong1", "from_user_id": 16870884, "from_user_id_str": "16870884", "from_user_name": "astrong1", "geo": null, "id": 148839285125160960, "id_str": "148839285125160961", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1585170612/234086_1314139711_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585170612/234086_1314139711_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Errin_Nelson TONIGHT @ 8pm out to Off The Hook Bar & Grill on 11201 E. 7 Mile 48205 friends, food, fun!!! E-NEAL I need u there!!!", "to_user": "Errin_Nelson", "to_user_id": 151276879, "to_user_id_str": "151276879", "to_user_name": "Errin Nelson"}, +{"created_at": "Mon, 19 Dec 2011 18:57:05 +0000", "from_user": "Trend_bot", "from_user_id": 359753420, "from_user_id_str": "359753420", "from_user_name": "Trendbot", "geo": null, "id": 148839283128676350, "id_str": "148839283128676352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1507601566/1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1507601566/1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iEnriqueSays: Living Single may seem fun while it lasts but at the end of the day everyone wants someone to love.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:05 +0000", "from_user": "Scotty_Doeeee", "from_user_id": 375777025, "from_user_id_str": "375777025", "from_user_name": "Chloe Scott", "geo": null, "id": 148839283120283650, "id_str": "148839283120283648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695674964/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695674964/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Who knew that baking Christmas cookies w/your gma could be so fun :) . \\n\\n#GottaLoveThemHolidays", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:04 +0000", "from_user": "Jeckamore", "from_user_id": 101740643, "from_user_id_str": "101740643", "from_user_name": "Jessica Stout", "geo": null, "id": 148839282260455420, "id_str": "148839282260455424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534610909/IMG_6780_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534610909/IMG_6780_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@ymasophieX no -_- it was... A fun journey...", "to_user": "ymasophieX", "to_user_id": 139425415, "to_user_id_str": "139425415", "to_user_name": "crash bandicoot", "in_reply_to_status_id": 148836319496372220, "in_reply_to_status_id_str": "148836319496372224"}, +{"created_at": "Mon, 19 Dec 2011 18:57:04 +0000", "from_user": "dickmakeucum", "from_user_id": 434366917, "from_user_id_str": "434366917", "from_user_name": "bigdickmike", "geo": null, "id": 148839281132183550, "id_str": "148839281132183552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687524115/470307798_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687524115/470307798_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Ms5letters im following. Can we have fun?", "to_user": "Ms5letters", "to_user_id": 126851499, "to_user_id_str": "126851499", "to_user_name": "Angela gordon", "in_reply_to_status_id": 148838894601895940, "in_reply_to_status_id_str": "148838894601895936"}, +{"created_at": "Mon, 19 Dec 2011 18:57:04 +0000", "from_user": "online_gsmegypt", "from_user_id": 330648835, "from_user_id_str": "330648835", "from_user_name": "online", "geo": null, "id": 148839280196845570, "id_str": "148839280196845570", "iso_language_code": "ar", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1429793359/254851_213650801999458_183109598386912_706633_4184070_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1429793359/254851_213650801999458_183109598386912_706633_4184070_n_normal.jpg", "source": "<a href="http://fun.ly" rel="nofollow">fun.ly</a>", "text": "\\u0645\\u0646\\u0638\\u0631 \\u0645\\u0647\\u064A\\u0628 \\u062C\\u062F\\u0627 \\u0644\\u062A\\u0634\\u064A\\u064A\\u0639 \\u0627\\u0644\\u0634\\u0647\\u064A\\u062F \\u0631\\u0645\\u0632\\u064A \\u062C\\u0631\\u064A \\u0641\\u064A \\u0627\\u062F\\u0644\\u0628 \\u0638\\u0647\\u0631 \\u0627\\u0644\\u064A\\u0648\\u0645 http://t.co/y6kPomLN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:04 +0000", "from_user": "brenda_judy2010", "from_user_id": 333826290, "from_user_id_str": "333826290", "from_user_name": "Brenda (:", "geo": null, "id": 148839280188461060, "id_str": "148839280188461057", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1658290108/P06GJ6Ex_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658290108/P06GJ6Ex_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Rubyyluu it was so much fun booby I recorded a lot so I'll show you(: just sucked I didn't get to see u at the bbyshower!", "to_user": "Rubyyluu", "to_user_id": 424785544, "to_user_id_str": "424785544", "to_user_name": "Rubyy Munoz", "in_reply_to_status_id": 148835457499807740, "in_reply_to_status_id_str": "148835457499807744"}, +{"created_at": "Mon, 19 Dec 2011 18:57:04 +0000", "from_user": "ItsMeStewe", "from_user_id": 31152465, "from_user_id_str": "31152465", "from_user_name": "Stewe ", "geo": null, "id": 148839279374778370, "id_str": "148839279374778368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1676676684/stewe_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676676684/stewe_twitter_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @__Shelbz__: Yo, #VICETEAMPARTY is 12 days away DEC31ST from 8-1am, in dearborn @ the maltese club, $5 before 9. SO BE THERE GET/GIVE DANCES AND HAVE FUN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:03 +0000", "from_user": "angelwings202", "from_user_id": 172880938, "from_user_id_str": "172880938", "from_user_name": "Angela", "geo": null, "id": 148839278154219520, "id_str": "148839278154219521", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1623126782/IMG_20110718_101045_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1623126782/IMG_20110718_101045_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@RenaeHallinan exciting have fun :)", "to_user": "RenaeHallinan", "to_user_id": 98392080, "to_user_id_str": "98392080", "to_user_name": "Renae Hallinan", "in_reply_to_status_id": 148736721553596400, "in_reply_to_status_id_str": "148736721553596416"}, +{"created_at": "Mon, 19 Dec 2011 18:57:03 +0000", "from_user": "brippy20", "from_user_id": 388636058, "from_user_id_str": "388636058", "from_user_name": "Brittany Rippy", "geo": null, "id": 148839277659303940, "id_str": "148839277659303936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701575878/preds_20game_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701575878/preds_20game_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @WizKhalllifa: #IWasThatKid that covered my hands in glue , let it dry , and then peeled it off for fun...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:03 +0000", "from_user": "wiriamu", "from_user_id": 15461751, "from_user_id_str": "15461751", "from_user_name": "wiriamu", "geo": null, "id": 148839276954660860, "id_str": "148839276954660864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/84904144/IMG00144_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/84904144/IMG00144_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "@tazigo yeah, I recall. Those were fun weeks...", "to_user": "tazigo", "to_user_id": 17774584, "to_user_id_str": "17774584", "to_user_name": "tazigo"}, +{"created_at": "Mon, 19 Dec 2011 18:57:03 +0000", "from_user": "evesoulreal_", "from_user_id": 209431976, "from_user_id_str": "209431976", "from_user_name": "eve", "geo": null, "id": 148839276514258940, "id_str": "148839276514258944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1675489866/eve_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675489866/eve_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@piscesbabyy oh yea !!! ahh have fun ! sounds so fun !", "to_user": "piscesbabyy", "to_user_id": 128924858, "to_user_id_str": "128924858", "to_user_name": "Lene", "in_reply_to_status_id": 148838878625796100, "in_reply_to_status_id_str": "148838878625796097"}, +{"created_at": "Mon, 19 Dec 2011 18:57:03 +0000", "from_user": "SanyHerrera", "from_user_id": 308729760, "from_user_id_str": "308729760", "from_user_name": "Sandra Herrera", "geo": null, "id": 148839276363264000, "id_str": "148839276363264000", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697667388/respeeto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697667388/respeeto_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Jugando con mis hermanitas y @ValeriaOlalde #Fun =D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:03 +0000", "from_user": "rushmz96", "from_user_id": 386256777, "from_user_id_str": "386256777", "from_user_name": "Rashad Zain", "geo": null, "id": 148839275675398140, "id_str": "148839275675398145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1612278584/309609_10150498189303943_734758942_11308376_445148229_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612278584/309609_10150498189303943_734758942_11308376_445148229_n_normal.jpg", "source": "<a href="http://rockmelt.com" rel="nofollow">RockMelt</a>", "text": "@Aventador99 yoooooo, have fun in india =) oh and merry christmas and a happy new year =D", "to_user": "Aventador99", "to_user_id": 289435739, "to_user_id_str": "289435739", "to_user_name": "Craig Gonsalves"}, +{"created_at": "Mon, 19 Dec 2011 18:57:03 +0000", "from_user": "MemOwliie", "from_user_id": 243520685, "from_user_id_str": "243520685", "from_user_name": "Maryaam\\u2665xo", "geo": null, "id": 148839275323080700, "id_str": "148839275323080704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1648531291/tumblr_lscbgfSsqr1qfvouao1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648531291/tumblr_lscbgfSsqr1qfvouao1_500_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I HAD SO MUCH FUN ;$! (L)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:03 +0000", "from_user": "Konscious_Mind", "from_user_id": 38899452, "from_user_id_str": "38899452", "from_user_name": "Saul Hicks", "geo": null, "id": 148839274500984830, "id_str": "148839274500984833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1647853959/Photo_on_2011-11-19_at_22.55_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647853959/Photo_on_2011-11-19_at_22.55_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Omg I like that keep on we gone have lots of fun I can see that already", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:02 +0000", "from_user": "rasga", "from_user_id": 14731797, "from_user_id_str": "14731797", "from_user_name": "Neil", "geo": null, "id": 148839274148671500, "id_str": "148839274148671488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1530433132/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1530433132/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "Gym time! Then maybe Duck Soup time, or some other fun restaurant.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:02 +0000", "from_user": "LoveWokeMeUp", "from_user_id": 17792824, "from_user_id_str": "17792824", "from_user_name": "Emmy", "geo": null, "id": 148839273884434430, "id_str": "148839273884434432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1679136340/59da3d6ad3a5__1309274447000_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679136340/59da3d6ad3a5__1309274447000_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@grrrzevske isn't that always fun and exciting? I love it! :)", "to_user": "grrrzevske", "to_user_id": 243966358, "to_user_id_str": "243966358", "to_user_name": "Brianne E. Gerzevske", "in_reply_to_status_id": 148838254853111800, "in_reply_to_status_id_str": "148838254853111808"}, +{"created_at": "Mon, 19 Dec 2011 18:57:02 +0000", "from_user": "daqitaha", "from_user_id": 365275742, "from_user_id_str": "365275742", "from_user_name": "Thedric Glatt", "geo": null, "id": 148839273808932860, "id_str": "148839273808932864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Adult forum: Wed me today!. seeking an individual fun., late/early ski. then lying in the actual forest, Interac... http://t.co/H0Y1dBsP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:02 +0000", "from_user": "RuddsRecords", "from_user_id": 69371673, "from_user_id_str": "69371673", "from_user_name": "Stevie McCoy", "geo": null, "id": 148839272978464770, "id_str": "148839272978464768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/572773143/Leroy_Van_Coy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/572773143/Leroy_Van_Coy_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "What an amazing weekend :-) two fantastic gigs on Friday then fun times at Quest on Saturday all toped of with an... http://t.co/ddBgbTxM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:02 +0000", "from_user": "DaLifeofKatrina", "from_user_id": 165152221, "from_user_id_str": "165152221", "from_user_name": "Katrina Kropp", "geo": null, "id": 148839272403845120, "id_str": "148839272403845120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699619770/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699619770/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Had a lot of fun in gym...we went in the weightroom and we threw those workout balls at eachother", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:02 +0000", "from_user": "EktaRawal", "from_user_id": 74950218, "from_user_id_str": "74950218", "from_user_name": "EktaRawal", "geo": null, "id": 148839270986158080, "id_str": "148839270986158080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1261805950/IMG0019B_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1261805950/IMG0019B_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Travelling is sooooooo much fun in winter..I just love it!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:02 +0000", "from_user": "jazzsatchwell", "from_user_id": 282596879, "from_user_id_str": "282596879", "from_user_name": "Jazz Satchwell", "geo": null, "id": 148839270742888450, "id_str": "148839270742888449", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1596946391/182852_1730326351354_1634341937_1616039_2109303_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596946391/182852_1730326351354_1634341937_1616039_2109303_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Just watched #CriminalMinds with mother, and now I'm educating her in season 6 of #Supernatural . Shes squeamish so this is fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:01 +0000", "from_user": "Pr7Kris", "from_user_id": 408618419, "from_user_id_str": "408618419", "from_user_name": "kris", "geo": null, "id": 148839270172475400, "id_str": "148839270172475393", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1630721927/tatuaje_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630721927/tatuaje_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @chrissyboy27: Girls wanna ave fun #twitterafterdark http://t.co/THqy9ceT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:01 +0000", "from_user": "camdenhoover", "from_user_id": 349538153, "from_user_id_str": "349538153", "from_user_name": "Camden Hoover", "geo": null, "id": 148839269975334900, "id_str": "148839269975334913", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1666060603/Photo_on_2011-09-28_at_08.52__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666060603/Photo_on_2011-09-28_at_08.52__2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "we're just havin fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:01 +0000", "from_user": "SexynEducated3", "from_user_id": 38664328, "from_user_id_str": "38664328", "from_user_name": "Colombian Princess", "geo": null, "id": 148839269463621630, "id_str": "148839269463621632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695978514/312547_2292077538969_1159922409_32209001_477800311_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695978514/312547_2292077538969_1159922409_32209001_477800311_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@Ms5letters: i need more followers ! I wanna have some fun on here today\" me too!!! #TeamFollowBack", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:01 +0000", "from_user": "Rotaract2420", "from_user_id": 26568030, "from_user_id_str": "26568030", "from_user_name": "Rotaract 2420. B\\u00F6lge", "geo": null, "id": 148839266905112580, "id_str": "148839266905112576", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1424660453/1112_tr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1424660453/1112_tr_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Trinidad'dan E\\u011Flenceli bir UHK Proje Fikri!\\n\\n\"Fun Language Music Video Exchange Project\"\\n\\nProje dahilinde anadili... http://t.co/ELxVOUfj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:01 +0000", "from_user": "yellowmoonderry", "from_user_id": 217569884, "from_user_id_str": "217569884", "from_user_name": "yellowmoonderry", "geo": null, "id": 148839266385014800, "id_str": "148839266385014784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1369910442/26356_100432033329211_100000872434381_11219_5960298_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1369910442/26356_100432033329211_100000872434381_11219_5960298_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "PAVON cool, funky with a fresh unique New York touch...its colourful and its fun, collection instore at YELLOWMOON, check our facebook", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:00 +0000", "from_user": "fresh_my_dougi", "from_user_id": 376543451, "from_user_id_str": "376543451", "from_user_name": "leelee mari", "geo": null, "id": 148839266070446080, "id_str": "148839266070446080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700418101/382919_311520035535552_100000326741302_1058211_1635352691_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700418101/382919_311520035535552_100000326741302_1058211_1635352691_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "wuts a fuckin life with no fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:00 +0000", "from_user": "Ms_Miesha35", "from_user_id": 387382603, "from_user_id_str": "387382603", "from_user_name": "Miesha", "geo": null, "id": 148839265965580300, "id_str": "148839265965580288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1653124444/YhoPvGpP_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653124444/YhoPvGpP_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Company Christmas party tonight with my babies!!! Great food and fun I can't wait!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:00 +0000", "from_user": "MamiPrettyEyez", "from_user_id": 31623632, "from_user_id_str": "31623632", "from_user_name": "La Bori::)", "geo": null, "id": 148839265709731840, "id_str": "148839265709731840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702470736/PhotoChooser-9734fac6-45a9-40bd-aec0-0ec091da6154_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702470736/PhotoChooser-9734fac6-45a9-40bd-aec0-0ec091da6154_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@Professor_ACE ** fun.. There's eye candy everywhere", "to_user": "Professor_ACE", "to_user_id": 231539558, "to_user_id_str": "231539558", "to_user_name": "Ace Martin", "in_reply_to_status_id": 148835586717909000, "in_reply_to_status_id_str": "148835586717908992"}, +{"created_at": "Mon, 19 Dec 2011 18:57:00 +0000", "from_user": "poniess", "from_user_id": 400704627, "from_user_id_str": "400704627", "from_user_name": "Teri. ", "geo": null, "id": 148839265453875200, "id_str": "148839265453875200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696895651/poniess_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696895651/poniess_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@sophiehoo I know right!!!!! It's so fun here :-) people are so friendly", "to_user": "sophiehoo", "to_user_id": 182379121, "to_user_id_str": "182379121", "to_user_name": "Sophie Hoo", "in_reply_to_status_id": 148724755825041400, "in_reply_to_status_id_str": "148724755825041408"}, +{"created_at": "Mon, 19 Dec 2011 18:57:00 +0000", "from_user": "Youknowyouasian", "from_user_id": 359667671, "from_user_id_str": "359667671", "from_user_name": "Melina Dhaliwally(:", "geo": null, "id": 148839265147682800, "id_str": "148839265147682817", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1593373414/Love_Music_Hate_Racism-1-250-250-85-nocrop_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593373414/Love_Music_Hate_Racism-1-250-250-85-nocrop_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @m_magazine: So great talking to @onedirection bright and early this morning! Such fun guys! Look for the exclusive interview deets in next issue of M!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:59 +0000", "from_user": "Knightrider593", "from_user_id": 335558127, "from_user_id_str": "335558127", "from_user_name": "Najee Gabay-knight", "geo": null, "id": 148839260768829440, "id_str": "148839260768829440", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700309636/NPQBodBz_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700309636/NPQBodBz_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@NicoleMystica12 it's fun :)", "to_user": "NicoleMystica12", "to_user_id": 407118463, "to_user_id_str": "407118463", "to_user_name": "Nicole Errico", "in_reply_to_status_id": 148838492238131200, "in_reply_to_status_id_str": "148838492238131200"}, +{"created_at": "Mon, 19 Dec 2011 18:56:59 +0000", "from_user": "frelted", "from_user_id": 223164734, "from_user_id_str": "223164734", "from_user_name": "Natalie Allen", "geo": null, "id": 148839260601065470, "id_str": "148839260601065472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1500642418/Photo_on_2011-08-17_at_12.30_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1500642418/Photo_on_2011-08-17_at_12.30_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "@Sierra_Boggess I'm in Vegas for the week. What's some fun stuff to do here?", "to_user": "sierra_boggess", "to_user_id": 213599299, "to_user_id_str": "213599299", "to_user_name": "Sierra Boggess"}, +{"created_at": "Mon, 19 Dec 2011 18:56:59 +0000", "from_user": "uncishott", "from_user_id": 32154754, "from_user_id_str": "32154754", "from_user_name": "Brianna Shea Geeslin", "geo": null, "id": 148839260122918900, "id_str": "148839260122918912", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/875662469/4352733960_264129d486_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/875662469/4352733960_264129d486_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@zestesdemode the most fun ;)", "to_user": "zestesdemode", "to_user_id": 259573778, "to_user_id_str": "259573778", "to_user_name": "Melissa Burriss", "in_reply_to_status_id": 148436407604621300, "in_reply_to_status_id_str": "148436407604621312"}, +{"created_at": "Mon, 19 Dec 2011 18:56:59 +0000", "from_user": "Vale8396", "from_user_id": 123905822, "from_user_id_str": "123905822", "from_user_name": "Vale*", "geo": null, "id": 148839258008993800, "id_str": "148839258008993793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1637266143/vale_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637266143/vale_1_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @NiallOfficial: Legooo! Southend! Gona be fun, get involved!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:59 +0000", "from_user": "fayBEEian", "from_user_id": 311941323, "from_user_id_str": "311941323", "from_user_name": "fuckfabian", "geo": +{"coordinates": [34.1142,-117.5576], "type": "Point"}, "id": 148839257878958080, "id_str": "148839257878958080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1614246079/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1614246079/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#ThisChristmas is going to be pretty fun. #EXCITED", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:58 +0000", "from_user": "Sprynt_Matthews", "from_user_id": 41046618, "from_user_id_str": "41046618", "from_user_name": "Key to Everything", "geo": null, "id": 148839254955536400, "id_str": "148839254955536385", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696259874/profile_image_1324032610410_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696259874/profile_image_1324032610410_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">TwidroydPRO</a>", "text": "Painting this apartment is fun lol now I'm just waiting for this shit to dry so I can get out lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:58 +0000", "from_user": "dj_alphi", "from_user_id": 433639581, "from_user_id_str": "433639581", "from_user_name": "DJ Alphi", "geo": null, "id": 148839254481575940, "id_str": "148839254481575936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://carbonwebos.com" rel="nofollow">Carbon for WebOS</a>", "text": "Cya DC, it was fun...back to v beach for the week. Small show this thursday then home for the holidays.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:58 +0000", "from_user": "hoffwell", "from_user_id": 16699776, "from_user_id_str": "16699776", "from_user_name": "hoffwell", "geo": null, "id": 148839253588193280, "id_str": "148839253588193281", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @saltneytoffee: Those making fun of Ed Balls' stilted speech should instead concentrate on the fact that he's a moron. #edballs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:57 +0000", "from_user": "ndzengeleski", "from_user_id": 356845682, "from_user_id_str": "356845682", "from_user_name": "Nicole Dzengeleski", "geo": null, "id": 148839251994349570, "id_str": "148839251994349568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687913906/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687913906/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@RealDanJohnson just wanted to day sorry for making fun of your cough.. i had a cough attack last period #karma", "to_user": "RealDanJohnson", "to_user_id": 131655692, "to_user_id_str": "131655692", "to_user_name": "Dan Johnson"}, +{"created_at": "Mon, 19 Dec 2011 18:56:57 +0000", "from_user": "WebCamAddict", "from_user_id": 381985340, "from_user_id_str": "381985340", "from_user_name": "Kristen Carlton", "geo": null, "id": 148839251784646660, "id_str": "148839251784646657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1565019857/BUH8BEBPWRTF_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1565019857/BUH8BEBPWRTF_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "I wish I lived when there was no cell phones, facebook, twitter. Everything seemed so much more fun, relaxed, and waayyy less drama.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:57 +0000", "from_user": "__mariaignacia", "from_user_id": 268521041, "from_user_id_str": "268521041", "from_user_name": "maria ignacia \\u264C", "geo": null, "id": 148839250266292220, "id_str": "148839250266292224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700769859/tumblr_ltu8zfpIX51r0v7z5o1_500_large_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700769859/tumblr_ltu8zfpIX51r0v7z5o1_500_large_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @NiallOfficial: Legooo! Southend! Gona be fun, get involved!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:57 +0000", "from_user": "merhanelmassry", "from_user_id": 83178905, "from_user_id_str": "83178905", "from_user_name": "Merhan El Massry", "geo": null, "id": 148839249901400060, "id_str": "148839249901400064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1648159323/Merio_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648159323/Merio_normal.JPG", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "RT @AltamashUrooj: DJ Sabrina Terence - portraits are fun again ! http://t.co/t8rGk17d", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:57 +0000", "from_user": "breelee_1117", "from_user_id": 362011191, "from_user_id_str": "362011191", "from_user_name": "brianna lukhard", "geo": null, "id": 148839249788149760, "id_str": "148839249788149760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1632592923/Snapshot_20111107_18_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632592923/Snapshot_20111107_18_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "we're to young to know what love is. I mean this is when we can make mistakes and have fun in life, not worry about our relationships..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:56 +0000", "from_user": "PuchtaOla", "from_user_id": 54654305, "from_user_id_str": "54654305", "from_user_name": "Aleksandra Puchta", "geo": null, "id": 148839247187689470, "id_str": "148839247187689473", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1500668662/ola1grono_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1500668662/ola1grono_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@rockyoo about startups: finally have fun & enjoy - great presention #openreaktor", "to_user": "rockyoo", "to_user_id": 13360052, "to_user_id_str": "13360052", "to_user_name": "Barbara Nowacka"}, +{"created_at": "Mon, 19 Dec 2011 18:56:56 +0000", "from_user": "cyndigreat", "from_user_id": 135570687, "from_user_id_str": "135570687", "from_user_name": "Cyndi Buhr", "geo": null, "id": 148839246793416700, "id_str": "148839246793416705", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1106669097/blue-poison-dart-frog-two_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1106669097/blue-poison-dart-frog-two_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SwagBucks ME! Makes the day fun. Love them bucks!", "to_user": "SwagBucks", "to_user_id": 18747993, "to_user_id_str": "18747993", "to_user_name": "SwagBucks.com", "in_reply_to_status_id": 148838242614116350, "in_reply_to_status_id_str": "148838242614116352"}, +{"created_at": "Mon, 19 Dec 2011 18:56:56 +0000", "from_user": "tipsychivas", "from_user_id": 73337101, "from_user_id_str": "73337101", "from_user_name": "Bryan Ong", "geo": null, "id": 148839246248157200, "id_str": "148839246248157184", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1032118885/polaroid_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1032118885/polaroid_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Night is no fun imma sleep", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:56 +0000", "from_user": "CMPrettyOdd", "from_user_id": 430173156, "from_user_id_str": "430173156", "from_user_name": "claudiaa! martin", "geo": null, "id": 148839245740654600, "id_str": "148839245740654592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677855256/056_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677855256/056_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@ladylydbug wow that's seems weird its nearly 7 o clock here and I'm having my tea :p are you having fun at school? :)", "to_user": "ladylydbug", "to_user_id": 293195488, "to_user_id_str": "293195488", "to_user_name": "Lydia Bangura", "in_reply_to_status_id": 148838621024235520, "in_reply_to_status_id_str": "148838621024235520"}, +{"created_at": "Mon, 19 Dec 2011 18:56:56 +0000", "from_user": "itsyaboyaron", "from_user_id": 62224592, "from_user_id_str": "62224592", "from_user_name": "Aaron Robert Floyd", "geo": null, "id": 148839245312827400, "id_str": "148839245312827393", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1126884856/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1126884856/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Well last night was fun with all of our good friends. Drinking beer and playing games it was fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:55 +0000", "from_user": "biteMEbxtch11", "from_user_id": 176659126, "from_user_id_str": "176659126", "from_user_name": "princess v o n i ", "geo": null, "id": 148839244847251460, "id_str": "148839244847251456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1631636323/biteMEbxtch11_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631636323/biteMEbxtch11_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @WonderTrendy: I like weed...Sex with beautiful woman...and Having dangerous fun..Im a fucking rebel.. Sue Me", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:55 +0000", "from_user": "sukeyeo", "from_user_id": 202169735, "from_user_id_str": "202169735", "from_user_name": "Jide Sokeye", "geo": null, "id": 148839244612374530, "id_str": "148839244612374529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1505611956/Brain_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505611956/Brain_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Traffic is kinda fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:55 +0000", "from_user": "ScottW_51", "from_user_id": 177161474, "from_user_id_str": "177161474", "from_user_name": "Scotttt.", "geo": null, "id": 148839243739971600, "id_str": "148839243739971584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696831113/Photo_on_2011-12-15_at_18.58__3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696831113/Photo_on_2011-12-15_at_18.58__3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@LEGOHOUSE__ I know ew, it's pretty fun celebrating infront of them all, the last derby when Temps scored I got abused because of it!", "to_user": "LEGOHOUSE__", "to_user_id": 51789805, "to_user_id_str": "51789805", "to_user_name": "Sophie Balsillie", "in_reply_to_status_id": 148838827631456260, "in_reply_to_status_id_str": "148838827631456256"}, +{"created_at": "Mon, 19 Dec 2011 18:56:55 +0000", "from_user": "Isaa_Bellz", "from_user_id": 278722823, "from_user_id_str": "278722823", "from_user_name": "Isabella Jordan", "geo": null, "id": 148839243026931700, "id_str": "148839243026931712", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687548259/_EE_9A_81_20_EE_9D_88_EE_99_BAO_CE_B7ik_CE_B1_20_EE_9A_81_20_EE_9D_88_EE_99_BA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687548259/_EE_9A_81_20_EE_9D_88_EE_99_BAO_CE_B7ik_CE_B1_20_EE_9A_81_20_EE_9D_88_EE_99_BA_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "2dae was so fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:55 +0000", "from_user": "STSRAMOS", "from_user_id": 81624303, "from_user_id_str": "81624303", "from_user_name": "Steven Ramos", "geo": null, "id": 148839242452303870, "id_str": "148839242452303873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697873950/STSRAMOS_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697873950/STSRAMOS_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I had to teach some sluts how to play beer pong last night , it was fun meeting new people and destroying their moral", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:55 +0000", "from_user": "Feek_YimZayne", "from_user_id": 144911646, "from_user_id_str": "144911646", "from_user_name": "#YimZayne", "geo": null, "id": 148839241126903800, "id_str": "148839241126903808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698918053/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698918053/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@BrittneyPatrese: \"@Feek_YimZayne: Damn Y'all...Da Big Boss/Wife @MrsFeek_Yim Told Me Chill Smh Lol\" *fun ends*\"<<Haha Right!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:55 +0000", "from_user": "Taailorrr", "from_user_id": 325860898, "from_user_id_str": "325860898", "from_user_name": "December 19th !", "geo": null, "id": 148839241072386050, "id_str": "148839241072386049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693943966/Taailorrr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693943966/Taailorrr_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @bonitaSTEPHANIE: happy birthday to my cousin @Taailorrr I Loveeee and miss you \\uD83C\\uDF89\\uD83C\\uDF89hope you have fun \\uD83D\\uDC9D- aww thank you I love you too :*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:54 +0000", "from_user": "travelmiamitour", "from_user_id": 362073105, "from_user_id_str": "362073105", "from_user_name": "michael brown", "geo": null, "id": 148839238434177020, "id_str": "148839238434177024", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://ping.fm/" rel="nofollow">Ping.fm</a>", "text": "fun activities http://t.co/eK8jNugT in Miami", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:54 +0000", "from_user": "Evopete123", "from_user_id": 57522744, "from_user_id_str": "57522744", "from_user_name": "Peter villamil", "geo": null, "id": 148839238241226750, "id_str": "148839238241226752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1544625879/Photo_on_2011-09-10_at_13.36__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544625879/Photo_on_2011-09-10_at_13.36__2_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Breaks been fun drinken and chillen with some homies coffebshops and sutch but im going to big bear snowboarding count me in ill be back oc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:54 +0000", "from_user": "Ferris__Bueller", "from_user_id": 59306055, "from_user_id_str": "59306055", "from_user_name": "\\u2654Stefvonn Robinson\\u2654", "geo": null, "id": 148839236781608960, "id_str": "148839236781608960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701594904/GosmsPhoto1324217055693_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701594904/GosmsPhoto1324217055693_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Havin fun on the mic", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:52 +0000", "from_user": "djmarkryman", "from_user_id": 385769098, "from_user_id_str": "385769098", "from_user_name": "Mark Ryman", "geo": null, "id": 148839231995904000, "id_str": "148839231995904000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693181002/Joe_King_CD_139_crop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693181002/Joe_King_CD_139_crop_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Just one location for me this week for Christmas fun, at The Wellington in Knightsbridge London on Friday. NEW YEARS EVE I'm at Morton's", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:52 +0000", "from_user": "kimmy_rockwell", "from_user_id": 233282862, "from_user_id_str": "233282862", "from_user_name": "KimmyRockwell", "geo": null, "id": 148839231052202000, "id_str": "148839231052201985", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1633013177/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633013177/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@Yenii_29 have fun!!!", "to_user": "Yenii_29", "to_user_id": 36585496, "to_user_id_str": "36585496", "to_user_name": "J\\u03B5\\u03B7\\u03B7\\u00EFf\\u03B5\\u044F \\u044F\\u03C3\\u03F3\\u03B1sz!;*\\u265A\\u2693", "in_reply_to_status_id": 148837802228989950, "in_reply_to_status_id_str": "148837802228989952"}, +{"created_at": "Mon, 19 Dec 2011 18:56:52 +0000", "from_user": "KimberHadeen19", "from_user_id": 440461081, "from_user_id_str": "440461081", "from_user_name": "Kimber Hadeen", "geo": null, "id": 148839230095884300, "id_str": "148839230095884288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@BlondeSkillz Misss youuu!! Hope you have fun at home! #loveyou", "to_user": "BlondeSkillz", "to_user_id": 326935147, "to_user_id_str": "326935147", "to_user_name": "Shanice Malone"}, +{"created_at": "Mon, 19 Dec 2011 18:56:51 +0000", "from_user": "glenndiddy", "from_user_id": 373198958, "from_user_id_str": "373198958", "from_user_name": "Glendy...", "geo": null, "id": 148839228338470900, "id_str": "148839228338470913", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691693056/381961_311920288835837_100000536045010_1214623_387457952_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691693056/381961_311920288835837_100000536045010_1214623_387457952_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@Dearcariina yeah I'm GABBING fun. Did you notice @Power106LA gave you a birthday S/O. Now say thank you. Lol", "to_user": "Dearcariina", "to_user_id": 93329467, "to_user_id_str": "93329467", "to_user_name": "Carina", "in_reply_to_status_id": 148838768873455600, "in_reply_to_status_id_str": "148838768873455616"}, +{"created_at": "Mon, 19 Dec 2011 18:56:51 +0000", "from_user": "Dynamyte617", "from_user_id": 21305704, "from_user_id_str": "21305704", "from_user_name": "Chrystyan Dynamyte", "geo": null, "id": 148839226241335300, "id_str": "148839226241335296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691409908/199434_152512748145564_100001605181144_328037_5864531_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691409908/199434_152512748145564_100001605181144_328037_5864531_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Vegas has been fun. But if there's ANYONE countin down the hours to get outta here its me. Good morning! (West coast time!)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:50 +0000", "from_user": "unknowingyou", "from_user_id": 122482894, "from_user_id_str": "122482894", "from_user_name": "Rebecca Bruce", "geo": null, "id": 148839223296925700, "id_str": "148839223296925696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1577093464/Profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1577093464/Profile_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "I'm just on another useless information kick today. Fun times had by all. #jokes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:49 +0000", "from_user": "WhteWaterWomen", "from_user_id": 240641260, "from_user_id_str": "240641260", "from_user_name": "WhiteWaterWomen", "geo": null, "id": 148839219601747970, "id_str": "148839219601747968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1220806589/WWW_LOGO_RGB_72dpi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1220806589/WWW_LOGO_RGB_72dpi_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "19th December: Have fun\\n\\nMany people seem to have cut back on spending money on cards preferring to give the... http://t.co/eMtUVe8h", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:49 +0000", "from_user": "MoreeKushhin", "from_user_id": 23673226, "from_user_id_str": "23673226", "from_user_name": "indyaaaa [:", "geo": null, "id": 148839219471712260, "id_str": "148839219471712256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688323236/4OjHlaK1_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688323236/4OjHlaK1_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ODGAF: So what if we drink? So what if we smoke weed? We just having fun...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:49 +0000", "from_user": "TomasWoppenkamp", "from_user_id": 163223249, "from_user_id_str": "163223249", "from_user_name": "Tomas Woppenkamp", "geo": null, "id": 148839218708353020, "id_str": "148839218708353024", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1629498810/STH74354_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629498810/STH74354_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Kellypalmaa Dat is wel weer het voordeel dat ik ze nu niet meer hoef te kijken met der! haha kidding. Have fun. =)", "to_user": "Kellypalmaa", "to_user_id": 291249593, "to_user_id_str": "291249593", "to_user_name": "Kelly Palma", "in_reply_to_status_id": 148838912515776500, "in_reply_to_status_id_str": "148838912515776512"}, +{"created_at": "Mon, 19 Dec 2011 18:56:49 +0000", "from_user": "gwalsh94", "from_user_id": 280201358, "from_user_id_str": "280201358", "from_user_name": "Gerard Walsh", "geo": null, "id": 148839218616078340, "id_str": "148839218616078336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1569575036/IMG00057-20110927-2146_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1569575036/IMG00057-20110927-2146_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Yakubu_24: We've all heard the jokes that us Nigerians don't know our ages. Its all fun and games unless your the U21's manager. Then its a nightmare.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:49 +0000", "from_user": "AriAddictedx3", "from_user_id": 337860747, "from_user_id_str": "337860747", "from_user_name": "AriAddicted\\u2665", "geo": null, "id": 148839218033070080, "id_str": "148839218033070080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694862563/425485763_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694862563/425485763_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Doophnee Haha yeah the breaks ^^ being with your friends is fun \\u2665", "to_user": "Doophnee", "to_user_id": 426238918, "to_user_id_str": "426238918", "to_user_name": "@xodaphyduckxo", "in_reply_to_status_id": 148838806366330880, "in_reply_to_status_id_str": "148838806366330880"}, +{"created_at": "Mon, 19 Dec 2011 18:56:49 +0000", "from_user": "duhon_aint_shit", "from_user_id": 224315993, "from_user_id_str": "224315993", "from_user_name": "Jake. from StateFarm", "geo": null, "id": 148839217567510530, "id_str": "148839217567510528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687730519/imagejpeg_2_38-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687730519/imagejpeg_2_38-1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @cotton_candy89 Rubber duckie...you're the one! You make bath time lots of fun! ~ this one? http://t.co/dhE4hJa7", "to_user": "cotton_candy89", "to_user_id": 76252666, "to_user_id_str": "76252666", "to_user_name": "T i F F A N Y", "in_reply_to_status_id": 148837656854396930, "in_reply_to_status_id_str": "148837656854396928"}, +{"created_at": "Mon, 19 Dec 2011 18:56:49 +0000", "from_user": "the_vogster", "from_user_id": 69565186, "from_user_id_str": "69565186", "from_user_name": "Steve Donaldson", "geo": null, "id": 148839217433296900, "id_str": "148839217433296896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1586376167/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586376167/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Plan for the week. Birmingham,home,Uni work,Xmas,Awkward family gatherings. Fun fun fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:48 +0000", "from_user": "MartaJurkowska", "from_user_id": 26533737, "from_user_id_str": "26533737", "from_user_name": "Marta Jurkowska", "geo": null, "id": 148839214853791740, "id_str": "148839214853791744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1549006003/IMG01244-20110812-2339_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1549006003/IMG01244-20110812-2339_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @TBDofficial: Here's another fun holiday hair tutorial. Part bun, part braid! Check it out\\u2026 and Happy Monday!! http://t.co/jpJU0Puj XO!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:48 +0000", "from_user": "radromity", "from_user_id": 51293015, "from_user_id_str": "51293015", "from_user_name": "cal siz", "geo": null, "id": 148839214245617660, "id_str": "148839214245617664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Game development is one of the most fun, and time expensive things I have found so far.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:48 +0000", "from_user": "spcb", "from_user_id": 19185415, "from_user_id_str": "19185415", "from_user_name": "Simon Baldwin", "geo": null, "id": 148839213087993860, "id_str": "148839213087993856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1666741717/Screen_shot_2011-11-30_at_22.34.17_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666741717/Screen_shot_2011-11-30_at_22.34.17_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "\"@BAIRDSTRAVEL: What is #Scotlandhour? http://t.co/KpDuKT0i\" its the night to get involved & chat about Scotland! < and it is great fun too!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:48 +0000", "from_user": "KingSethos", "from_user_id": 171901481, "from_user_id_str": "171901481", "from_user_name": "The King", "geo": null, "id": 148839212358180860, "id_str": "148839212358180864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1677994062/Cheers_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677994062/Cheers_normal.jpg", "source": "<a href="http://getsocialscope.com" rel="nofollow">SocialScope</a>", "text": "@samiamadison @MissHustleRose @A_3000 I'm glad we could share this moment of reflection on the classic \"Aint no fun\"... Makes me smile", "to_user": "samiamadison", "to_user_id": 22703207, "to_user_id_str": "22703207", "to_user_name": "Samia Ayoubi"}, +{"created_at": "Mon, 19 Dec 2011 18:56:47 +0000", "from_user": "iAMBASED_ROD", "from_user_id": 418883966, "from_user_id_str": "418883966", "from_user_name": "Rod C \\u00A9", "geo": null, "id": 148839210902749200, "id_str": "148839210902749184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1652851920/IMG_0091_1__normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652851920/IMG_0091_1__normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Yesterday died, put the past in a casket. Having fun w| the present while my bitch Life in labor w| my future", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:47 +0000", "from_user": "MAEGANBELLE", "from_user_id": 69992539, "from_user_id_str": "69992539", "from_user_name": "MAEGAN BELLE LLC. \\u2714", "geo": null, "id": 148839209724162050, "id_str": "148839209724162048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700868878/900_MG_3914_tu_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700868878/900_MG_3914_tu_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "heading to le city. shout out to @drdre keeping my subway ride fun with these detox <3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:47 +0000", "from_user": "ThisShytCray", "from_user_id": 382922954, "from_user_id_str": "382922954", "from_user_name": "Da Man Right Chea ", "geo": null, "id": 148839209346662400, "id_str": "148839209346662401", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1567258399/profile_image_1317429337548_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1567258399/profile_image_1317429337548_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @Ms5letters: i need more followers ! I wanna have some fun on here today", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:47 +0000", "from_user": "MahoneSwagYee", "from_user_id": 295829029, "from_user_id_str": "295829029", "from_user_name": "\\u2764\\u03B1\\u2113\\u03B1\\u0438\\u03B1 \\u043C\\u03B1hon\\u03B5.\\u2764", "geo": null, "id": 148839208155480060, "id_str": "148839208155480064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1625564955/efh_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1625564955/efh_normal.PNG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @heyitsmadison: @MahoneSwagYee have fun today(;", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:47 +0000", "from_user": "margiepanda", "from_user_id": 17613653, "from_user_id_str": "17613653", "from_user_name": "margarita pando.", "geo": null, "id": 148839207811555330, "id_str": "148839207811555329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1474755327/mpaxdance_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1474755327/mpaxdance_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@thesuperM lol. Look up foodinspace, that's always fun...it's two cool things in one food and space :D", "to_user": "thesuperM", "to_user_id": 19215208, "to_user_id_str": "19215208", "to_user_name": "Monica Jerez", "in_reply_to_status_id": 148835108776984580, "in_reply_to_status_id_str": "148835108776984577"} +, +{"created_at": "Mon, 19 Dec 2011 18:56:48 +0000", "from_user": "KingSethos", "from_user_id": 171901481, "from_user_id_str": "171901481", "from_user_name": "The King", "geo": null, "id": 148839212358180860, "id_str": "148839212358180864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1677994062/Cheers_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677994062/Cheers_normal.jpg", "source": "<a href="http://getsocialscope.com" rel="nofollow">SocialScope</a>", "text": "@samiamadison @MissHustleRose @A_3000 I'm glad we could share this moment of reflection on the classic \"Aint no fun\"... Makes me smile", "to_user": "samiamadison", "to_user_id": 22703207, "to_user_id_str": "22703207", "to_user_name": "Samia Ayoubi"}, +{"created_at": "Mon, 19 Dec 2011 18:56:47 +0000", "from_user": "iAMBASED_ROD", "from_user_id": 418883966, "from_user_id_str": "418883966", "from_user_name": "Rod C \\u00A9", "geo": null, "id": 148839210902749200, "id_str": "148839210902749184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1652851920/IMG_0091_1__normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652851920/IMG_0091_1__normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Yesterday died, put the past in a casket. Having fun w| the present while my bitch Life in labor w| my future", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:47 +0000", "from_user": "MAEGANBELLE", "from_user_id": 69992539, "from_user_id_str": "69992539", "from_user_name": "MAEGAN BELLE LLC. \\u2714", "geo": null, "id": 148839209724162050, "id_str": "148839209724162048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700868878/900_MG_3914_tu_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700868878/900_MG_3914_tu_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "heading to le city. shout out to @drdre keeping my subway ride fun with these detox <3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:47 +0000", "from_user": "ThisShytCray", "from_user_id": 382922954, "from_user_id_str": "382922954", "from_user_name": "Da Man Right Chea ", "geo": null, "id": 148839209346662400, "id_str": "148839209346662401", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1567258399/profile_image_1317429337548_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1567258399/profile_image_1317429337548_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @Ms5letters: i need more followers ! I wanna have some fun on here today", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:47 +0000", "from_user": "MahoneSwagYee", "from_user_id": 295829029, "from_user_id_str": "295829029", "from_user_name": "\\u2764\\u03B1\\u2113\\u03B1\\u0438\\u03B1 \\u043C\\u03B1hon\\u03B5.\\u2764", "geo": null, "id": 148839208155480060, "id_str": "148839208155480064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1625564955/efh_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1625564955/efh_normal.PNG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @heyitsmadison: @MahoneSwagYee have fun today(;", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:47 +0000", "from_user": "margiepanda", "from_user_id": 17613653, "from_user_id_str": "17613653", "from_user_name": "margarita pando.", "geo": null, "id": 148839207811555330, "id_str": "148839207811555329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1474755327/mpaxdance_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1474755327/mpaxdance_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@thesuperM lol. Look up foodinspace, that's always fun...it's two cool things in one food and space :D", "to_user": "thesuperM", "to_user_id": 19215208, "to_user_id_str": "19215208", "to_user_name": "Monica Jerez", "in_reply_to_status_id": 148835108776984580, "in_reply_to_status_id_str": "148835108776984577"}, +{"created_at": "Mon, 19 Dec 2011 18:56:46 +0000", "from_user": "mcolympiababa", "from_user_id": 368808311, "from_user_id_str": "368808311", "from_user_name": "mc olympia baba", "geo": null, "id": 148839206884610050, "id_str": "148839206884610048", "iso_language_code": "is", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693623961/3_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693623961/3_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Fun ra ee ni brain", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:46 +0000", "from_user": "ProjectSHAREpa", "from_user_id": 240744768, "from_user_id_str": "240744768", "from_user_name": "Project SHARE", "geo": null, "id": 148839206075121660, "id_str": "148839206075121664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312609257/Project-Share-Logo-2011_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312609257/Project-Share-Logo-2011_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "http://t.co/77T2yXGT Join us tonight for the Fiddler's Festive Family Fun 1 Mile Walk/Run in Mayapple. Enjoy... http://t.co/YgPz7seu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:46 +0000", "from_user": "DawnWarbler", "from_user_id": 184221143, "from_user_id_str": "184221143", "from_user_name": "Dawn Coco", "geo": null, "id": 148839205081055230, "id_str": "148839205081055232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702599593/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702599593/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@IssyPortmann okay!! Have fun!", "to_user": "IssyPortmann", "to_user_id": 406115916, "to_user_id_str": "406115916", "to_user_name": "miss\\u2022chris\\u2022colfer", "in_reply_to_status_id": 148839021374746620, "in_reply_to_status_id_str": "148839021374746626"}, +{"created_at": "Mon, 19 Dec 2011 18:56:46 +0000", "from_user": "Tatibabe7", "from_user_id": 316552938, "from_user_id_str": "316552938", "from_user_name": "Tati realcute", "geo": null, "id": 148839204980408320, "id_str": "148839204980408322", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685545812/IMG_20111204_180020-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685545812/IMG_20111204_180020-1_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @WizKhalllifa: #IWasThatKid that covered my hands in glue , let it dry , and then peeled it off for fun...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:46 +0000", "from_user": "LuuuGetsWavy", "from_user_id": 277294383, "from_user_id_str": "277294383", "from_user_name": "Living life !", "geo": null, "id": 148839203483029500, "id_str": "148839203483029506", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693990837/166903_247059275361103_100001710966155_616337_1837119516_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693990837/166903_247059275361103_100001710966155_616337_1837119516_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @Ishawalters: Had so much fun partying sat with my boo @LunaIrv & my marvel beauties! Have to do it again on new yrs!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:45 +0000", "from_user": "daldino", "from_user_id": 136079224, "from_user_id_str": "136079224", "from_user_name": "Activist Btgrw", "geo": null, "id": 148839199120957440, "id_str": "148839199120957441", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700661012/Thany_20Al_20Qahera_20Al_20Gadida-20111214-00447_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700661012/Thany_20Al_20Qahera_20Al_20Gadida-20111214-00447_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"@Fa_DiL: Soccer was Fun #M.A.P\" sure say na ball u go play?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:44 +0000", "from_user": "AJPaterson1987", "from_user_id": 61168102, "from_user_id_str": "61168102", "from_user_name": "Amy ", "geo": null, "id": 148839198277894140, "id_str": "148839198277894144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1572982221/252720_114816135272926_100002336217684_142190_4394007_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572982221/252720_114816135272926_100002336217684_142190_4394007_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@TwiztedSVUsista Should so let us add words to the dictionary, not fun when ya can't play an SVU reference!", "to_user": "TwiztedSVUsista", "to_user_id": 79810374, "to_user_id_str": "79810374", "to_user_name": "Ally A.k.A Twizted", "in_reply_to_status_id": 148838985442144260, "in_reply_to_status_id_str": "148838985442144256"}, +{"created_at": "Mon, 19 Dec 2011 18:56:44 +0000", "from_user": "Will_Sportto", "from_user_id": 306398327, "from_user_id_str": "306398327", "from_user_name": "Will Ramirez", "geo": null, "id": 148839197128667140, "id_str": "148839197128667136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1371405137/IMG_1264_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1371405137/IMG_1264_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @SporttoNet: @bilalv87 wants you stop making fun of his @CMPunk pajamas. #WWE http://t.co/5SpsPH4q", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:44 +0000", "from_user": "SB_Nicholas", "from_user_id": 361208003, "from_user_id_str": "361208003", "from_user_name": "Samuel Nicholas ", "geo": null, "id": 148839196767944700, "id_str": "148839196767944704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697362510/331587528_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697362510/331587528_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @ClaraLoso: RT @Myself_Lexx: I will never send a naked pic to whoever I'm dating. Sorry babes. << Why? Its fun! :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:44 +0000", "from_user": "Oyinda_", "from_user_id": 320721663, "from_user_id_str": "320721663", "from_user_name": "oyinda ogunleye\\u2122", "geo": null, "id": 148839196218503170, "id_str": "148839196218503168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698374705/Oyinda__1069209962630384386_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698374705/Oyinda__1069209962630384386_normal.JPG", "source": "<a href="http://tuitwit.com" rel="nofollow">TuiTwit</a>", "text": "Yh,ryt!u shud try it sumtym..u noe,jst 4 ''fun''?? RT @dayoslides: Lazy bones....RT Oyinda_: The idea of making pounded yam", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:44 +0000", "from_user": "Septwocainta", "from_user_id": 421788757, "from_user_id_str": "421788757", "from_user_name": "September Cainta", "geo": null, "id": 148839195727757300, "id_str": "148839195727757314", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1658628438/50_off_circle_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658628438/50_off_circle_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "A business has to be involving, it has to be fun, and it has to exercise your creative instincts.-Richard Branson", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:44 +0000", "from_user": "_JaRielise", "from_user_id": 373449198, "from_user_id_str": "373449198", "from_user_name": "JaRieliSeluvzTyShawn", "geo": null, "id": 148839194834374660, "id_str": "148839194834374656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1662507620/ertyuio6yui_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662507620/ertyuio6yui_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Cliffrost do my work & do laundry nuttin fun", "to_user": "Cliffrost", "to_user_id": 250517677, "to_user_id_str": "250517677", "to_user_name": "Bad Azz Frost", "in_reply_to_status_id": 148838738280194050, "in_reply_to_status_id_str": "148838738280194048"}, +{"created_at": "Mon, 19 Dec 2011 18:56:43 +0000", "from_user": "CashNCodes", "from_user_id": 64785336, "from_user_id_str": "64785336", "from_user_name": "Dayna Henderson", "geo": null, "id": 148839193940983800, "id_str": "148839193940983809", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1639161612/imagejpeg_9_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639161612/imagejpeg_9_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Bad guys ain't no good, good guys ain't no fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:43 +0000", "from_user": "AMDeeva", "from_user_id": 393481227, "from_user_id_str": "393481227", "from_user_name": "Amanda DeAngelo", "geo": null, "id": 148839193374765060, "id_str": "148839193374765056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1594713645/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1594713645/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@EdisLoud lol well at least I'm fun and not boring! :)", "to_user": "EdisLoud", "to_user_id": 364191559, "to_user_id_str": "364191559", "to_user_name": "Edward Chhun", "in_reply_to_status_id": 148837360036093950, "in_reply_to_status_id_str": "148837360036093952"}, +{"created_at": "Mon, 19 Dec 2011 18:56:43 +0000", "from_user": "TheRealTed", "from_user_id": 27092500, "from_user_id_str": "27092500", "from_user_name": "Ted", "geo": null, "id": 148839193076965380, "id_str": "148839193076965376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "[Ted's Take] Dagger: A fun read here. Thank you Steve. The voice of the Washington Wizards. http://t.co/GPSSfL7p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:43 +0000", "from_user": "singingfolife", "from_user_id": 59867210, "from_user_id_str": "59867210", "from_user_name": "Mike Canty", "geo": null, "id": 148839192984682500, "id_str": "148839192984682496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1180336184/e2e7eb0f-74ee-4ace-900a-3d10e1d41b63_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1180336184/e2e7eb0f-74ee-4ace-900a-3d10e1d41b63_normal.png", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@PhyllisStickney follow me back on this id& @MoviesMusicTV_ & @TodayOnThisDay for fun, entertainment updates & spiritual wisdom", "to_user": "PhyllisStickney", "to_user_id": 403525454, "to_user_id_str": "403525454", "to_user_name": "Phyllis Stickney"}, +{"created_at": "Mon, 19 Dec 2011 18:56:43 +0000", "from_user": "CharisJoy777", "from_user_id": 396273264, "from_user_id_str": "396273264", "from_user_name": "Charis Joy", "geo": null, "id": 148839192858853380, "id_str": "148839192858853376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1601847949/254393_10150620164625527_519205526_18930570_2100549_n__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601847949/254393_10150620164625527_519205526_18930570_2100549_n__1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "mmmm wraps are delicious and so easy to make...more fun then my daily sandwich", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:43 +0000", "from_user": "YoungDunnyz", "from_user_id": 188930171, "from_user_id_str": "188930171", "from_user_name": "Young Dunnyz", "geo": null, "id": 148839192779173900, "id_str": "148839192779173890", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1437624566/YoungDunnyz_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1437624566/YoungDunnyz_normal.jpg", "source": "<a href="http://www.lg.com" rel="nofollow">LG Phone</a>", "text": "RT @CDubbGeneral_yD: @DnG_ATNT IM PRETTY SURE THE KIDS WERE HAPPY N HAD FUN TO MEET YOU N THE @youngdunnyz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:43 +0000", "from_user": "Agentmg17", "from_user_id": 151556996, "from_user_id_str": "151556996", "from_user_name": "Agentmg17", "geo": null, "id": 148839191839645700, "id_str": "148839191839645696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/957060286/mom_2kids_lg_normal.GIF", "profile_image_url_https": "https://si0.twimg.com/profile_images/957060286/mom_2kids_lg_normal.GIF", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @PurpleGimp: I'm gimp limping out the door! Tune in @ 11 on http://t.co/7ikv01PA for #OPDX Fun at St. Francis 11-1 w/ @Kat_ryn & I! #OccupyPortland MWAH!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:43 +0000", "from_user": "_hollister_swaq", "from_user_id": 380035891, "from_user_id_str": "380035891", "from_user_name": "tyrik holiday", "geo": null, "id": 148839190883352580, "id_str": "148839190883352576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1635817388/299821_299241016759246_100000200517395_1443669_935898091_n_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635817388/299821_299241016759246_100000200517395_1443669_935898091_n_1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "today was fun with no tention in the room", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:42 +0000", "from_user": "Emmmaa003", "from_user_id": 23010775, "from_user_id_str": "23010775", "from_user_name": "Emma Gomez", "geo": null, "id": 148839190493278200, "id_str": "148839190493278209", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695893356/Photo_on_2011-09-04_at_18.07__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695893356/Photo_on_2011-09-04_at_18.07__2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@AlexJoseWiggins @colbyasmithwick sounds fun!! I'll come", "to_user": "AlexJoseWiggins", "to_user_id": 213277666, "to_user_id_str": "213277666", "to_user_name": "Alex Wiggins", "in_reply_to_status_id": 148837689825837060, "in_reply_to_status_id_str": "148837689825837056"}, +{"created_at": "Mon, 19 Dec 2011 18:56:42 +0000", "from_user": "Nigella_Lawson", "from_user_id": 173195708, "from_user_id_str": "173195708", "from_user_name": "Nigella Lawson", "geo": null, "id": 148839189943812100, "id_str": "148839189943812096", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1640630951/JP-Nigella-with-dingles_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640630951/JP-Nigella-with-dingles_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Eating4England: @LATimesfood Christmas Chocolate Biscuits (cookies!) a la @Nigella_Lawson. Festive, chocolate-y. Fun! http://t.co/53tfgeqI #weekendeats", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:42 +0000", "from_user": "Maze_City_Chulo", "from_user_id": 211152149, "from_user_id_str": "211152149", "from_user_name": "Clayton Bigsby", "geo": null, "id": 148839188144467970, "id_str": "148839188144467968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1620137114/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620137114/profile_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "This is gonna be fun lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:42 +0000", "from_user": "momonsteriawck", "from_user_id": 181384707, "from_user_id_str": "181384707", "from_user_name": "tomo hartoyo", "geo": null, "id": 148839188081549300, "id_str": "148839188081549313", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1676982652/CaptureIt-24-09-2011-01-03-23_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676982652/CaptureIt-24-09-2011-01-03-23_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @my_supersoccer: Yang udah maen, mana suaranya? Yang belum, sekali lagi, ini link-nya: http://t.co/EH2eaaHh #SuperSoccerFantasyFootball", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:42 +0000", "from_user": "itCandi", "from_user_id": 430979966, "from_user_id_str": "430979966", "from_user_name": "It! Candi", "geo": null, "id": 148839187209142270, "id_str": "148839187209142272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701733762/peppermint-candy-clip-art_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701733762/peppermint-candy-clip-art_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Is Auburn ready for the sweet, fun, and juicy talk that IT!Candi is sending your way next month?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:42 +0000", "from_user": "MissElviraPink", "from_user_id": 275680193, "from_user_id_str": "275680193", "from_user_name": "Elvira", "geo": null, "id": 148839186575786000, "id_str": "148839186575785984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1417816291/twot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1417816291/twot_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "London was way too much fun. I'm going to have to leave it another three years before I go back.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:41 +0000", "from_user": "online_gsmegypt", "from_user_id": 330648835, "from_user_id_str": "330648835", "from_user_name": "online", "geo": null, "id": 148839184432500740, "id_str": "148839184432500736", "iso_language_code": "ar", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1429793359/254851_213650801999458_183109598386912_706633_4184070_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1429793359/254851_213650801999458_183109598386912_706633_4184070_n_normal.jpg", "source": "<a href="http://fun.ly" rel="nofollow">fun.ly</a>", "text": "\\u0647\\u0627\\u0645: \\u0645\\u0646\\u0634\\u0648\\u0631 \\u0627\\u0644\\u0645\\u0631\\u062D\\u0644\\u0629 \\u0627\\u0644\\u062B\\u0627\\u0644\\u062B\\u0629 \\u0645\\u0646 \\u0627\\u0636\\u0631\\u0627\\u0628 \\u0627\\u0644\\u0643\\u0631\\u0627\\u0645\\u0629.. \\n\\u064A\\u0631\\u062C\\u0649 \\u0646\\u0634\\u0631\\u0647 \\u0648\\u062A\\u0648\\u0632\\u064A\\u0639\\u0647 \\u0641...http://fun.ly/198au", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:41 +0000", "from_user": "RhianneMclinden", "from_user_id": 40529821, "from_user_id_str": "40529821", "from_user_name": "IHATEMYNAME", "geo": +{"coordinates": [56.0633,-3.4086], "type": "Point"}, "id": 148839183354560500, "id_str": "148839183354560512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702415555/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702415555/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Cookie dough fight would be so much fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:41 +0000", "from_user": "itsmichael_meow", "from_user_id": 54328300, "from_user_id_str": "54328300", "from_user_name": "Michael \\u25D5\\u203F\\u25D5", "geo": null, "id": 148839182918357000, "id_str": "148839182918356993", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1183672254/Photo_on_2010-10-11_at_19.58_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1183672254/Photo_on_2010-10-11_at_19.58_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@penis_monster herp derp maybe :3 that sounds fun!", "to_user": "penis_monster", "to_user_id": 187747516, "to_user_id_str": "187747516", "to_user_name": "Jessica", "in_reply_to_status_id": 148838771016728580, "in_reply_to_status_id_str": "148838771016728576"}, +{"created_at": "Mon, 19 Dec 2011 18:56:40 +0000", "from_user": "Palesa_Illbliss", "from_user_id": 200431745, "from_user_id_str": "200431745", "from_user_name": "Palesa Mosia", "geo": null, "id": 148839182092075000, "id_str": "148839182092075008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702035702/Q8C7nYlO_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702035702/Q8C7nYlO_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "What is it? Lol RT @iPreciousLee: Its all fun and games until you laugh at my second/pedi name!! Lmao hao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:40 +0000", "from_user": "tomblox_9", "from_user_id": 118293850, "from_user_id_str": "118293850", "from_user_name": "TomyRibutArummawardi", "geo": null, "id": 148839179323838460, "id_str": "148839179323838464", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1542084946/tomz_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542084946/tomz_1_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @my_supersoccer: Yang udah maen, mana suaranya? Yang belum, sekali lagi, ini link-nya: http://t.co/EH2eaaHh #SuperSoccerFantasyFootball", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:40 +0000", "from_user": "graaaceanne", "from_user_id": 233026429, "from_user_id_str": "233026429", "from_user_name": "GraceAnne\\u2665", "geo": null, "id": 148839178724065280, "id_str": "148839178724065280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1614245704/338181_274452629242164_100000322861902_911853_1550972018_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1614245704/338181_274452629242164_100000322861902_911853_1550972018_o_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "\"@micaylayoder: people who judge you for having fun <<<\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:40 +0000", "from_user": "sassy24", "from_user_id": 21176132, "from_user_id_str": "21176132", "from_user_name": "Thelma Azolukwam ", "geo": null, "id": 148839178216546300, "id_str": "148839178216546304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/252152955/flow_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/252152955/flow_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT Sort this!! @BrianBrock1bad news - no internet for you over xmas. You'll b needing Ellie's password lol. Long story...have fun though ;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:39 +0000", "from_user": "stevebeal", "from_user_id": 26140050, "from_user_id_str": "26140050", "from_user_name": "Steve Beal", "geo": null, "id": 148839177860034560, "id_str": "148839177860034561", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1495482286/20110610-IMG_2453-Edit_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1495482286/20110610-IMG_2453-Edit_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Having Fun In Ten Stops | Scott Wyden Imagery http://t.co/hhm25K4Y via @scottwyden - ND for life! Love it man!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:39 +0000", "from_user": "paTelthemitsNP", "from_user_id": 303009455, "from_user_id_str": "303009455", "from_user_name": "Nicole Patel", "geo": null, "id": 148839176828227600, "id_str": "148839176828227584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700719343/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700719343/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@kennedygrant25 Lmao sure was.. You are CRAZY. Hope you're having fun on your date. :)", "to_user": "kennedygrant25", "to_user_id": 164005258, "to_user_id_str": "164005258", "to_user_name": "kennedy grant", "in_reply_to_status_id": 148786326584557570, "in_reply_to_status_id_str": "148786326584557569"}, +{"created_at": "Mon, 19 Dec 2011 18:56:39 +0000", "from_user": "SBRNZYM", "from_user_id": 145655021, "from_user_id_str": "145655021", "from_user_name": "Sabrina1D", "geo": null, "id": 148839176253603840, "id_str": "148839176253603840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1677364606/Picture_096_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677364606/Picture_096_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Okay gonna sleep now have fun boys @onedirection @zaynmalik @niallofficial @louis_tomlinson @harry_styles n @real_liam_payne love you guys!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:39 +0000", "from_user": "SylviaDeMarco", "from_user_id": 23499368, "from_user_id_str": "23499368", "from_user_name": "Sylvia", "geo": null, "id": 148839176115195900, "id_str": "148839176115195905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1273072501/DSC_0205_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273072501/DSC_0205_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Celebrated Christmas a week early! Beautiful & fun time. Now looking fwd to the encore Dec 24th & 25th!! Lucky me ;) <3 Friends & Fam", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:39 +0000", "from_user": "IHUMAN24", "from_user_id": 279045224, "from_user_id_str": "279045224", "from_user_name": "IHUMAN24", "geo": null, "id": 148839176031322100, "id_str": "148839176031322112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1647078870/HD_WALLPAPERS__76__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647078870/HD_WALLPAPERS__76__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "But at the same time,it's also healing to make movies that are entertaining,that are a lot of fun,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:39 +0000", "from_user": "KorVeldman", "from_user_id": 177301436, "from_user_id_str": "177301436", "from_user_name": "\\uF8FF Kor Veldman", "geo": null, "id": 148839175704150000, "id_str": "148839175704150016", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681017424/icon_KorVeldman_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681017424/icon_KorVeldman_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@MTPMarieke @martijnvrij have fun!", "to_user": "MTPMarieke", "to_user_id": 114463257, "to_user_id_str": "114463257", "to_user_name": "MTPMarieke", "in_reply_to_status_id": 148837523882393600, "in_reply_to_status_id_str": "148837523882393602"}, +{"created_at": "Mon, 19 Dec 2011 18:56:38 +0000", "from_user": "baileymcarroll", "from_user_id": 213914498, "from_user_id_str": "213914498", "from_user_name": "Bailey Carroll", "geo": null, "id": 148839171845402620, "id_str": "148839171845402624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1626065619/composite_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626065619/composite_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "Integrate shopping for Women's shelter in your holiday parties! I did this weekend and it was so fun to give back with friends! #BraveWoman", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:38 +0000", "from_user": "Emmaloumarie", "from_user_id": 254591839, "from_user_id_str": "254591839", "from_user_name": "Emma Pickess", "geo": null, "id": 148839171417571330, "id_str": "148839171417571329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677752972/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677752972/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@VickiHellett92 @LouiseTT_THS_FH hehe it is fun god we have a laugh hehe xxx", "to_user": "VickiHellett92", "to_user_id": 59565955, "to_user_id_str": "59565955", "to_user_name": "Vicki Hellett", "in_reply_to_status_id": 148838631287693300, "in_reply_to_status_id_str": "148838631287693313"}, +{"created_at": "Mon, 19 Dec 2011 18:56:38 +0000", "from_user": "iadoreSARA", "from_user_id": 251124655, "from_user_id_str": "251124655", "from_user_name": "\\u200E\\u200B\\u200B \\u200E\\u200B\\u200B", "geo": null, "id": 148839169811161100, "id_str": "148839169811161088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689356819/331370900_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689356819/331370900_normal.jpg", "source": "<a href="http://aplus-app.com" rel="nofollow">A.plus for BlackBerry</a>", "text": "RT @YungGioSays_: RT @DiEGEKKEBOY: Young, wild & free, so shut the fuck up and have some fun !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:37 +0000", "from_user": "Ishtiakalvi1", "from_user_id": 423372050, "from_user_id_str": "423372050", "from_user_name": "Ishtiak alvi", "geo": null, "id": 148839169022623740, "id_str": "148839169022623744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@ShawnMichaels_ big fan of urs , wrestling is no fun without the showstoper.", "to_user": "ShawnMichaels_", "to_user_id": 139848744, "to_user_id_str": "139848744", "to_user_name": "Shawn Michaels"}, +{"created_at": "Mon, 19 Dec 2011 18:56:37 +0000", "from_user": "deirdremolloy", "from_user_id": 47474829, "from_user_id_str": "47474829", "from_user_name": "Deirdre Molloy", "geo": null, "id": 148839168666112000, "id_str": "148839168666112002", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1410102810/151011_1734562524886_1263250732_1931314_2090493_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1410102810/151011_1734562524886_1263250732_1931314_2090493_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @fucktyler: Everyone, Go Outside. Sitting in The House High As Fuck On Tumblr Reblogging Shit All Day Seems Boring. Unless You Fap Alot, Thats FUN!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:37 +0000", "from_user": "ebszmonique", "from_user_id": 33065846, "from_user_id_str": "33065846", "from_user_name": "si vive una volta so", "geo": null, "id": 148839168011804670, "id_str": "148839168011804672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702453272/ebss_duhh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702453272/ebss_duhh_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Mrwavyswag lol its pretty fun and easy .", "to_user": "Mrwavyswag", "to_user_id": 59967060, "to_user_id_str": "59967060", "to_user_name": "Mark B.", "in_reply_to_status_id": 148838777937342460, "in_reply_to_status_id_str": "148838777937342465"}, +{"created_at": "Mon, 19 Dec 2011 18:56:37 +0000", "from_user": "DeeMofoBby", "from_user_id": 338029770, "from_user_id_str": "338029770", "from_user_name": "Ly'Deara Frazier", "geo": null, "id": 148839167072280580, "id_str": "148839167072280577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1582197669/Snapshot_20111010_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1582197669/Snapshot_20111010_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Ima have hella fun #ThisChristmas though.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:37 +0000", "from_user": "MichellesCharmW", "from_user_id": 16875225, "from_user_id_str": "16875225", "from_user_name": "MichellesCharmW", "geo": null, "id": 148839166849986560, "id_str": "148839166849986562", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1019210476/chj_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1019210476/chj_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Today we learned the art of folding notes in fun ways! http://t.co/TZD7puPS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:37 +0000", "from_user": "Nkululeko22", "from_user_id": 292822508, "from_user_id_str": "292822508", "from_user_name": "Nkululeko moloi", "geo": null, "id": 148839166128554000, "id_str": "148839166128553984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1675742845/Nicki-minaj-roman-in-moscow-cover_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675742845/Nicki-minaj-roman-in-moscow-cover_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "i'm really #sick from all the fun i've been having,my coming out party was of the chain #wow i love my friends #damn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:36 +0000", "from_user": "dedrain_roars", "from_user_id": 150089305, "from_user_id_str": "150089305", "from_user_name": "the lion king ", "geo": +{"coordinates": [44.9524,-93.1407], "type": "Point"}, "id": 148839165285507070, "id_str": "148839165285507073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694105726/IMG_7525_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694105726/IMG_7525_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "What fun apps can I download ?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:36 +0000", "from_user": "AnikaSchostak", "from_user_id": 319708202, "from_user_id_str": "319708202", "from_user_name": "Anika Schostak", "geo": null, "id": 148839163238694900, "id_str": "148839163238694912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1401819049/Foto2460_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1401819049/Foto2460_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Now I must tweet more. I have fun in writting tweets :)\\nLast school day today. :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:36 +0000", "from_user": "_moniquebrandao", "from_user_id": 112203921, "from_user_id_str": "112203921", "from_user_name": "Monique Brand\\u00E3o", "geo": null, "id": 148839162651484160, "id_str": "148839162651484160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682154593/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682154593/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\"You never know if you don't go!! dont make sense not to live for fun!\" smash mounth", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:36 +0000", "from_user": "TyJordanHart", "from_user_id": 275023007, "from_user_id_str": "275023007", "from_user_name": "Tyler Hartrick", "geo": null, "id": 148839162496303100, "id_str": "148839162496303104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692163986/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692163986/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Fun nights tough mornings", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:35 +0000", "from_user": "bear_stories", "from_user_id": 239899814, "from_user_id_str": "239899814", "from_user_name": "Julia Bass", "geo": null, "id": 148839161107984400, "id_str": "148839161107984384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1246708018/IMG_3169-pola_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1246708018/IMG_3169-pola_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Feeling left out of all the #ForeverYours fun just coz itunes is an hates south africans", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:35 +0000", "from_user": "DevonDuhDudee", "from_user_id": 322948153, "from_user_id_str": "322948153", "from_user_name": "McLovin\\u2122", "geo": null, "id": 148839161011507200, "id_str": "148839161011507200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681001260/dxGl28O5_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681001260/dxGl28O5_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Thinking about being a dick for the rest of the day for fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:35 +0000", "from_user": "e_kLeCTic", "from_user_id": 263483325, "from_user_id_str": "263483325", "from_user_name": "Eden Boyd", "geo": null, "id": 148839160550133760, "id_str": "148839160550133762", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686035085/e_kLeCTic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686035085/e_kLeCTic_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@creshiaboo what u been up to u having fun", "to_user": "creshiaboo", "to_user_id": 369744984, "to_user_id_str": "369744984", "to_user_name": "Creshia", "in_reply_to_status_id": 148836280241881100, "in_reply_to_status_id_str": "148836280241881089"}, +{"created_at": "Mon, 19 Dec 2011 18:56:35 +0000", "from_user": "HHHWendyHarris", "from_user_id": 419338450, "from_user_id_str": "419338450", "from_user_name": "Wendy Harris", "geo": null, "id": 148839159128260600, "id_str": "148839159128260608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694311038/hat_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694311038/hat_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@BatmanRocks01 (IA) ~smiles~ ~cellphone beeps~ Sorry.~sheepishly checks phone~ Hmm looks like Megan's not having much fun in Gotham.", "to_user": "BatmanRocks01", "to_user_id": 422357194, "to_user_id_str": "422357194", "to_user_name": "Marvin White", "in_reply_to_status_id": 148803775333802000, "in_reply_to_status_id_str": "148803775333801984"}, +{"created_at": "Mon, 19 Dec 2011 18:56:35 +0000", "from_user": "LoisLaneee_", "from_user_id": 192711378, "from_user_id_str": "192711378", "from_user_name": "Call Me Rox! =)", "geo": null, "id": 148839158419427330, "id_str": "148839158419427328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693415098/1BVdC4O5_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693415098/1BVdC4O5_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @theeLOVEJunkie: Tomorrow should be fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:34 +0000", "from_user": "vickii_NoSecret", "from_user_id": 189001333, "from_user_id_str": "189001333", "from_user_name": "12.29", "geo": null, "id": 148839155626020860, "id_str": "148839155626020864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1632084822/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632084822/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@FantaNot_Sprite going to the ultra bar. I hear it's really fun.", "to_user": "FantaNot_Sprite", "to_user_id": 211721732, "to_user_id_str": "211721732", "to_user_name": "f a n t a \\u30C4", "in_reply_to_status_id": 148838890650873860, "in_reply_to_status_id_str": "148838890650873857"}, +{"created_at": "Mon, 19 Dec 2011 18:56:34 +0000", "from_user": "MartineHaugen", "from_user_id": 401021536, "from_user_id_str": "401021536", "from_user_name": "Martine", "geo": null, "id": 148839153528872960, "id_str": "148839153528872960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1652618085/1d_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652618085/1d_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@kirstylowless amazing! I really want to meet you, had been insanely fun! You seem like a very nice girl<3\"VIP ticket here I come\" haha:):)", "to_user": "kirstylowless", "to_user_id": 235269446, "to_user_id_str": "235269446", "to_user_name": "kirsty lowless", "in_reply_to_status_id": 148837509223297020, "in_reply_to_status_id_str": "148837509223297024"}, +{"created_at": "Mon, 19 Dec 2011 18:56:34 +0000", "from_user": "Beaconfire", "from_user_id": 153086057, "from_user_id_str": "153086057", "from_user_name": " Beaconfire", "geo": null, "id": 148839153453379600, "id_str": "148839153453379585", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1265907071/new-twitter-av_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1265907071/new-twitter-av_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @scottlenger: RT @mattcutts: In case you missed it: search on Google for \"let it snow\" to see a fun easter egg. :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:33 +0000", "from_user": "LetitiaMonreal", "from_user_id": 67430636, "from_user_id_str": "67430636", "from_user_name": "Letitia Monreal", "geo": null, "id": 148839152228630530, "id_str": "148839152228630528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669124776/330756135_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669124776/330756135_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @Jhanee_nay: Last night was fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:33 +0000", "from_user": "shawnshannon11", "from_user_id": 143235074, "from_user_id_str": "143235074", "from_user_name": "Shawn Shannon", "geo": null, "id": 148839151108767740, "id_str": "148839151108767744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681098384/IMG00512-20110910-2017_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681098384/IMG00512-20110910-2017_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Well that was fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:33 +0000", "from_user": "jesswills013", "from_user_id": 437770265, "from_user_id_str": "437770265", "from_user_name": "Jessica Williams", "geo": null, "id": 148839150697721860, "id_str": "148839150697721856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695209901/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695209901/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@NoneLikeDemMays yaaaay :) tonight should be fun does court close or does she work till ten?", "to_user": "NoneLikeDemMays", "to_user_id": 243982864, "to_user_id_str": "243982864", "to_user_name": "jasmine mays", "in_reply_to_status_id": 148835651901595650, "in_reply_to_status_id_str": "148835651901595648"}, +{"created_at": "Mon, 19 Dec 2011 18:56:32 +0000", "from_user": "SelinaAng", "from_user_id": 18274915, "from_user_id_str": "18274915", "from_user_name": "Selina Ang", "geo": null, "id": 148839147723960320, "id_str": "148839147723960320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1136711751/SelinaAng_2667619_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1136711751/SelinaAng_2667619_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @CornellCALS: How many grapes are in a bottle of wine? Fun analysis by viticulture expert in new issue of Appellation Cornell http://t.co/y5ct8ILl #wine", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:32 +0000", "from_user": "holneversleeps", "from_user_id": 185569370, "from_user_id_str": "185569370", "from_user_name": "potato dawson", "geo": null, "id": 148839146511802370, "id_str": "148839146511802368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687250643/Na3W3EAX_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687250643/Na3W3EAX_normal", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @wedoexist: @holneversleeps haha. Yes, you really do. People see alcohol as something fun when in reality it's dangerous and tears lives apart.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:32 +0000", "from_user": "sucsoubonbon", "from_user_id": 34791326, "from_user_id_str": "34791326", "from_user_name": "Judith Julien", "geo": null, "id": 148839146230784000, "id_str": "148839146230784000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1684174078/FacebookHomescreenImage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684174078/FacebookHomescreenImage_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Christmas is not going to be so fun for me this year, I just need it to be over with.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:32 +0000", "from_user": "jygisyjys", "from_user_id": 409065483, "from_user_id_str": "409065483", "from_user_name": "Kashi Maryin", "geo": null, "id": 148839146037850100, "id_str": "148839146037850112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1631704109/1805_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631704109/1805_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @dowofuzodoj: free online casino slots for fun http://t.co/o0O74YGs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:32 +0000", "from_user": "staywithmeforev", "from_user_id": 371405291, "from_user_id_str": "371405291", "from_user_name": "B\\u00E1rbara \\u262E", "geo": null, "id": 148839144653729800, "id_str": "148839144653729792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699417503/jessie_j_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699417503/jessie_j_2_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @NiallOfficial: Legooo! Southend! Gona be fun, get involved!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:31 +0000", "from_user": "maddieisawk", "from_user_id": 379998203, "from_user_id_str": "379998203", "from_user_name": "Maddie Pospisil", "geo": null, "id": 148839143441575940, "id_str": "148839143441575937", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1614262736/Photo_on_2011-10-09_at_21.55__3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1614262736/Photo_on_2011-10-09_at_21.55__3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"don't come here just to have fun and be friends, take this seriously\" ...it is CHRISTMAS BREAK no one here is having fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:31 +0000", "from_user": "daviesda", "from_user_id": 3803951, "from_user_id_str": "3803951", "from_user_name": "David Davies", "geo": null, "id": 148839141503807500, "id_str": "148839141503807490", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/20560592/daviddavies_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/20560592/daviddavies_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Perhaps to soften the public image of the new N Korean leadership, Kim Jong-un should change his name to Kim Jong-fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:31 +0000", "from_user": "jeighlyntillman", "from_user_id": 377549528, "from_user_id_str": "377549528", "from_user_name": "DizNutz\\u2022Com :)", "geo": null, "id": 148839141348618240, "id_str": "148839141348618240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1617896310/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1617896310/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "@followthisthug oh Sounds fun", "to_user": "FollowThisThug", "to_user_id": 103427474, "to_user_id_str": "103427474", "to_user_name": "Chelsea Williams "}, +{"created_at": "Mon, 19 Dec 2011 18:56:31 +0000", "from_user": "ambyytoopoppin", "from_user_id": 335614157, "from_user_id_str": "335614157", "from_user_name": "amber marie", "geo": null, "id": 148839141323456500, "id_str": "148839141323456512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694172921/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694172921/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "had so much fun with my Cus @RunninBY_FAITH & sisters last nite , had a slumber now on the way to the mall , love them \\uD83D\\uDC93", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:31 +0000", "from_user": "CarlosPenaGurl", "from_user_id": 227139989, "from_user_id_str": "227139989", "from_user_name": "Raevin Cruz", "geo": null, "id": 148839140425863170, "id_str": "148839140425863170", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692203580/alwaysblameniallhoransirharrystylesI_could_stare_at_this_all_day_They_all_look_like_their_wearing_red_eyeshadow_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692203580/alwaysblameniallhoransirharrystylesI_could_stare_at_this_all_day_They_all_look_like_their_wearing_red_eyeshadow_normal.gif", "source": "<a href="http://www.osfoora.com" rel="nofollow">Osfoora for iPhone</a>", "text": "RT @jamesmaslow: @taylorswift13 Sorry for almost lighting you on fire with the firework show...though you have to admit it was a lot of fun! haha ;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:30 +0000", "from_user": "Espiinozaaa", "from_user_id": 68066146, "from_user_id_str": "68066146", "from_user_name": "Stephanie Espinoza", "geo": null, "id": 148839138802663420, "id_str": "148839138802663424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676174780/Snapshot_20111205_19_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676174780/Snapshot_20111205_19_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@_KirkWest okieeees! :D Have fun there thenn! Say hi to Erika for meeee! :D", "to_user": "_KirkWest", "to_user_id": 147032985, "to_user_id_str": "147032985", "to_user_name": "Caillou .", "in_reply_to_status_id": 148838847453732860, "in_reply_to_status_id_str": "148838847453732864"}, +{"created_at": "Mon, 19 Dec 2011 18:56:30 +0000", "from_user": "BobbyDoherty4", "from_user_id": 127397103, "from_user_id_str": "127397103", "from_user_name": "bobby doherty", "geo": null, "id": 148839136860712960, "id_str": "148839136860712960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1254510314/mee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1254510314/mee_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Krissyhunt hey me too, its not very fun", "to_user": "Krissyhunt", "to_user_id": 30586069, "to_user_id_str": "30586069", "to_user_name": "Krissyhunt", "in_reply_to_status_id": 148827777905332220, "in_reply_to_status_id_str": "148827777905332224"}, +{"created_at": "Mon, 19 Dec 2011 18:56:29 +0000", "from_user": "NiallIgnoresMe", "from_user_id": 103348526, "from_user_id_str": "103348526", "from_user_name": "vas happenin", "geo": null, "id": 148839135619198980, "id_str": "148839135619198976", "iso_language_code": "bo", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1658871785/tumblr_lv4dthTSx91r4hc7vo1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658871785/tumblr_lv4dthTSx91r4hc7vo1_500_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Ortal_x @e_poller have fun \\u0F3D\\u0F3C \\u0F15\\u0F28\\u0F27\\u0F29\\u0F20\\u0F26\\u0F24\\u0F22\\u0F22", "to_user": "Ortal_x", "to_user_id": 127183599, "to_user_id_str": "127183599", "to_user_name": "Orti :)", "in_reply_to_status_id": 148838857226461200, "in_reply_to_status_id_str": "148838857226461184"}, +{"created_at": "Mon, 19 Dec 2011 18:56:29 +0000", "from_user": "PINKkP___", "from_user_id": 170863249, "from_user_id_str": "170863249", "from_user_name": "MyNameeTay: )", "geo": null, "id": 148839134646112260, "id_str": "148839134646112256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699261455/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699261455/profile_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @Ambitious_Kickz: Lokk At Dese Fools Trent&Ausar Doin Push Up In DC History Js Fr Fun Deyy #Lame x2 :) Lls http://t.co/Ie2LZnVB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:29 +0000", "from_user": "ayeitsmara", "from_user_id": 113742692, "from_user_id_str": "113742692", "from_user_name": "_beautifulsoul", "geo": null, "id": 148839134184751100, "id_str": "148839134184751105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1683608510/a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683608510/a_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @presstigious: Bad boys aint no good ' good boys aint no fun -MARY'J <33", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:29 +0000", "from_user": "leeshawilliams", "from_user_id": 56927055, "from_user_id_str": "56927055", "from_user_name": "Aleshia Williams", "geo": null, "id": 148839132859342850, "id_str": "148839132859342848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1497161345/Aleshia-Williams_Head_Shot2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1497161345/Aleshia-Williams_Head_Shot2_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @Cre8tiveKingdom: weekend of performances, photoshoots, \\tXmas parties, secret Santas & fun! Holidays are here but the snow isn't. let's cross our fingers.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:28 +0000", "from_user": "LTreu", "from_user_id": 55061547, "from_user_id_str": "55061547", "from_user_name": "Lukas Treu", "geo": null, "id": 148839130875445250, "id_str": "148839130875445249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1557805719/tw_12669776_1316881597_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1557805719/tw_12669776_1316881597_normal.jpg", "source": "<a href="http://tweetmeme.com" rel="nofollow">TweetMeme</a>", "text": "Wonder if his son will be so easy to make fun of? 5 bizarre tales about Kim Jong-Il http://t.co/PiFYvBcS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:28 +0000", "from_user": "CMB_Wasted", "from_user_id": 119708096, "from_user_id_str": "119708096", "from_user_name": "TaniaChunny", "geo": null, "id": 148839130678300670, "id_str": "148839130678300672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699098236/3l76pe3x_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699098236/3l76pe3x_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Double your pleasure, double your fun and dance forever-ever-ever\\nForever-ever-ever", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:28 +0000", "from_user": "DB_Financial", "from_user_id": 90480584, "from_user_id_str": "90480584", "from_user_name": "Doug Bennett", "geo": null, "id": 148839128853778430, "id_str": "148839128853778432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1187761284/Doug_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1187761284/Doug_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I have finally succumbed, my IPAD 2 is being delivered tomorrow. A good friend of mine said it is good fun, how can I use it as a work tool?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:28 +0000", "from_user": "FoolieTootedHer", "from_user_id": 111821183, "from_user_id_str": "111821183", "from_user_name": "Foolie CFi REPPiN'", "geo": null, "id": 148839128832815100, "id_str": "148839128832815104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1643258405/369893_100001315596638_1115265109_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643258405/369893_100001315596638_1115265109_n_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Bein Single Is Fun , But Not All The Tyme .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:28 +0000", "from_user": "xMarloeslove", "from_user_id": 233127482, "from_user_id_str": "233127482", "from_user_name": "Marloes(ll).", "geo": null, "id": 148839128392417280, "id_str": "148839128392417280", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1523345830/IMG-20110813-00389_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1523345830/IMG-20110813-00389_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@hermijntje94 oooh dat is leuk alles verlicht enzo!! Nu wil ik ook weer ahhah have fun nog!\\u2665", "to_user": "hermijntje94", "to_user_id": 322570434, "to_user_id_str": "322570434", "to_user_name": "Hermijntje"}, +{"created_at": "Mon, 19 Dec 2011 18:56:28 +0000", "from_user": "CherrylBehne", "from_user_id": 436666692, "from_user_id_str": "436666692", "from_user_name": "Cherryl Behne", "geo": null, "id": 148839128023318530, "id_str": "148839128023318528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692738685/hgjmhgm_normal.jpg", "profile_image_url_https": null, "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Brown Sheep Burly Spun Yarn - BS320 Sandy Dune: Burly Spun is thick, bulky yarn that looks kind of like fun colo... http://t.co/fwqIyYbU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:28 +0000", "from_user": "sharedpaper", "from_user_id": 242663208, "from_user_id_str": "242663208", "from_user_name": "Shared Paper", "geo": null, "id": 148839127943626750, "id_str": "148839127943626752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1491376575/iTunesArtWork-Rounded_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1491376575/iTunesArtWork-Rounded_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@iPadHandbook free Xmas app for new iPad - fun and useful: Shared Paper Lite, sketch/draw on vast scrollable whiteboard http://t.co/4wDpOyu9", "to_user": "iPadHandbook", "to_user_id": 163841733, "to_user_id_str": "163841733", "to_user_name": "iPad Handbook"}, +{"created_at": "Mon, 19 Dec 2011 18:56:27 +0000", "from_user": "J_Christie", "from_user_id": 25827351, "from_user_id_str": "25827351", "from_user_name": "Jennifer Hewitt", "geo": null, "id": 148839127570333700, "id_str": "148839127570333697", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1618729907/BeachyMe_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618729907/BeachyMe_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@RichHallsworth Check out my last retweet..You should go along after work! Same street as Cargo bar, not far from you. Looks like fun x x", "to_user": "RichHallsworth", "to_user_id": 19446016, "to_user_id_str": "19446016", "to_user_name": "Rich Hallsworth"}, +{"created_at": "Mon, 19 Dec 2011 18:56:27 +0000", "from_user": "Stevoste", "from_user_id": 216335728, "from_user_id_str": "216335728", "from_user_name": "Stephen kariuki", "geo": null, "id": 148839126706294800, "id_str": "148839126706294786", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1633827089/r3n6YGwq_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633827089/r3n6YGwq_normal", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@HarajukuBerbie a've bin relaxing enjoying ma holiday upto Jan.I cn say nimekuwa busy tis tym around on the fun side nt the stressing one", "to_user": "HarajukuBerbie", "to_user_id": 234343645, "to_user_id_str": "234343645", "to_user_name": "Harajuku Maraj", "in_reply_to_status_id": 148830844595879940, "in_reply_to_status_id_str": "148830844595879936"}, +{"created_at": "Mon, 19 Dec 2011 18:56:27 +0000", "from_user": "IsThatMyGirlO_o", "from_user_id": 175820030, "from_user_id_str": "175820030", "from_user_name": "The Runner Up\\u00AE", "geo": null, "id": 148839126463025150, "id_str": "148839126463025152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702608985/v6mtGQY0_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702608985/v6mtGQY0_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "now following @yoTONGUE_NtMiNE @LaLANGUE_Unique @sounique711 yall follow back last night was fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:27 +0000", "from_user": "Oh_oK_OC", "from_user_id": 189048749, "from_user_id_str": "189048749", "from_user_name": "Ossie LeJeune", "geo": null, "id": 148839126442057730, "id_str": "148839126442057728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1666826825/Oh_oK_OC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666826825/Oh_oK_OC_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Had a fun night wit da brusly ppl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:27 +0000", "from_user": "Glitter_Chel", "from_user_id": 306402086, "from_user_id_str": "306402086", "from_user_name": "Chel", "geo": null, "id": 148839126194593800, "id_str": "148839126194593792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693410814/tumblr_lia29bQ0941qh262so1_1280_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693410814/tumblr_lia29bQ0941qh262so1_1280_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@Kat__DelVec @ItsJakeTheBeast looking for the fun kind of trouble *peers around*", "to_user": "Kat__DelVec", "to_user_id": 313011744, "to_user_id_str": "313011744", "to_user_name": "Kat Black", "in_reply_to_status_id": 148836091699535870, "in_reply_to_status_id_str": "148836091699535872"}, +{"created_at": "Mon, 19 Dec 2011 18:56:27 +0000", "from_user": "little_theatre", "from_user_id": 386645886, "from_user_id_str": "386645886", "from_user_name": "Little Theatre", "geo": null, "id": 148839126010044400, "id_str": "148839126010044417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1580319115/DLT_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580319115/DLT_logo_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Get your panto tickets now, only a few left, great fun for all the family! Aladdin runs till 30th December. http://t.co/21OJCieU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:27 +0000", "from_user": "27311siaan", "from_user_id": 405026685, "from_user_id_str": "405026685", "from_user_name": "SiaaanLewwseey", "geo": null, "id": 148839125712252930, "id_str": "148839125712252928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670221439/Peter_Andre_png_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670221439/Peter_Andre_png_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@meganholmesx awww! Sooo cuteee, same as bruces, daughters, name:)! Aww, hope you have fun together, have you fed her yet?! Xxxx", "to_user": "meganholmesx", "to_user_id": 258017626, "to_user_id_str": "258017626", "to_user_name": "cher'lloyd idol", "in_reply_to_status_id": 148838473099517950, "in_reply_to_status_id_str": "148838473099517952"}, +{"created_at": "Mon, 19 Dec 2011 18:56:27 +0000", "from_user": "sophshappers", "from_user_id": 58453654, "from_user_id_str": "58453654", "from_user_name": "Sophie Shapcott", "geo": null, "id": 148839124009369600, "id_str": "148839124009369600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691547574/Yeeee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691547574/Yeeee_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "already bored but hope everyone is having lots of fun in the cold, will be on later have fun don't unfollow love love xxxx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:56:28 +0000", "from_user": "xMarloeslove", "from_user_id": 233127482, "from_user_id_str": "233127482", "from_user_name": "Marloes(ll).", "geo": null, "id": 148839128392417280, "id_str": "148839128392417280", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1523345830/IMG-20110813-00389_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1523345830/IMG-20110813-00389_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@hermijntje94 oooh dat is leuk alles verlicht enzo!! Nu wil ik ook weer ahhah have fun nog!\\u2665", "to_user": "hermijntje94", "to_user_id": 322570434, "to_user_id_str": "322570434", "to_user_name": "Hermijntje"}, +{"created_at": "Mon, 19 Dec 2011 18:56:28 +0000", "from_user": "CherrylBehne", "from_user_id": 436666692, "from_user_id_str": "436666692", "from_user_name": "Cherryl Behne", "geo": null, "id": 148839128023318530, "id_str": "148839128023318528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692738685/hgjmhgm_normal.jpg", "profile_image_url_https": null, "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Brown Sheep Burly Spun Yarn - BS320 Sandy Dune: Burly Spun is thick, bulky yarn that looks kind of like fun colo... http://t.co/fwqIyYbU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:28 +0000", "from_user": "sharedpaper", "from_user_id": 242663208, "from_user_id_str": "242663208", "from_user_name": "Shared Paper", "geo": null, "id": 148839127943626750, "id_str": "148839127943626752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1491376575/iTunesArtWork-Rounded_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1491376575/iTunesArtWork-Rounded_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@iPadHandbook free Xmas app for new iPad - fun and useful: Shared Paper Lite, sketch/draw on vast scrollable whiteboard http://t.co/4wDpOyu9", "to_user": "iPadHandbook", "to_user_id": 163841733, "to_user_id_str": "163841733", "to_user_name": "iPad Handbook"}, +{"created_at": "Mon, 19 Dec 2011 18:56:27 +0000", "from_user": "J_Christie", "from_user_id": 25827351, "from_user_id_str": "25827351", "from_user_name": "Jennifer Hewitt", "geo": null, "id": 148839127570333700, "id_str": "148839127570333697", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1618729907/BeachyMe_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618729907/BeachyMe_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@RichHallsworth Check out my last retweet..You should go along after work! Same street as Cargo bar, not far from you. Looks like fun x x", "to_user": "RichHallsworth", "to_user_id": 19446016, "to_user_id_str": "19446016", "to_user_name": "Rich Hallsworth"}, +{"created_at": "Mon, 19 Dec 2011 18:56:27 +0000", "from_user": "Stevoste", "from_user_id": 216335728, "from_user_id_str": "216335728", "from_user_name": "Stephen kariuki", "geo": null, "id": 148839126706294800, "id_str": "148839126706294786", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1633827089/r3n6YGwq_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633827089/r3n6YGwq_normal", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@HarajukuBerbie a've bin relaxing enjoying ma holiday upto Jan.I cn say nimekuwa busy tis tym around on the fun side nt the stressing one", "to_user": "HarajukuBerbie", "to_user_id": 234343645, "to_user_id_str": "234343645", "to_user_name": "Harajuku Maraj", "in_reply_to_status_id": 148830844595879940, "in_reply_to_status_id_str": "148830844595879936"}, +{"created_at": "Mon, 19 Dec 2011 18:56:27 +0000", "from_user": "IsThatMyGirlO_o", "from_user_id": 175820030, "from_user_id_str": "175820030", "from_user_name": "The Runner Up\\u00AE", "geo": null, "id": 148839126463025150, "id_str": "148839126463025152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702608985/v6mtGQY0_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702608985/v6mtGQY0_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "now following @yoTONGUE_NtMiNE @LaLANGUE_Unique @sounique711 yall follow back last night was fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:27 +0000", "from_user": "Oh_oK_OC", "from_user_id": 189048749, "from_user_id_str": "189048749", "from_user_name": "Ossie LeJeune", "geo": null, "id": 148839126442057730, "id_str": "148839126442057728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1666826825/Oh_oK_OC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666826825/Oh_oK_OC_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Had a fun night wit da brusly ppl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:27 +0000", "from_user": "Glitter_Chel", "from_user_id": 306402086, "from_user_id_str": "306402086", "from_user_name": "Chel", "geo": null, "id": 148839126194593800, "id_str": "148839126194593792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693410814/tumblr_lia29bQ0941qh262so1_1280_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693410814/tumblr_lia29bQ0941qh262so1_1280_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@Kat__DelVec @ItsJakeTheBeast looking for the fun kind of trouble *peers around*", "to_user": "Kat__DelVec", "to_user_id": 313011744, "to_user_id_str": "313011744", "to_user_name": "Kat Black", "in_reply_to_status_id": 148836091699535870, "in_reply_to_status_id_str": "148836091699535872"}, +{"created_at": "Mon, 19 Dec 2011 18:56:27 +0000", "from_user": "little_theatre", "from_user_id": 386645886, "from_user_id_str": "386645886", "from_user_name": "Little Theatre", "geo": null, "id": 148839126010044400, "id_str": "148839126010044417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1580319115/DLT_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580319115/DLT_logo_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Get your panto tickets now, only a few left, great fun for all the family! Aladdin runs till 30th December. http://t.co/21OJCieU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:27 +0000", "from_user": "27311siaan", "from_user_id": 405026685, "from_user_id_str": "405026685", "from_user_name": "SiaaanLewwseey", "geo": null, "id": 148839125712252930, "id_str": "148839125712252928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670221439/Peter_Andre_png_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670221439/Peter_Andre_png_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@meganholmesx awww! Sooo cuteee, same as bruces, daughters, name:)! Aww, hope you have fun together, have you fed her yet?! Xxxx", "to_user": "meganholmesx", "to_user_id": 258017626, "to_user_id_str": "258017626", "to_user_name": "cher'lloyd idol", "in_reply_to_status_id": 148838473099517950, "in_reply_to_status_id_str": "148838473099517952"}, +{"created_at": "Mon, 19 Dec 2011 18:56:27 +0000", "from_user": "sophshappers", "from_user_id": 58453654, "from_user_id_str": "58453654", "from_user_name": "Sophie Shapcott", "geo": null, "id": 148839124009369600, "id_str": "148839124009369600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691547574/Yeeee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691547574/Yeeee_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "already bored but hope everyone is having lots of fun in the cold, will be on later have fun don't unfollow love love xxxx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:27 +0000", "from_user": "JSlugg", "from_user_id": 42309012, "from_user_id_str": "42309012", "from_user_name": "Jason Clericuzio\\u2122", "geo": null, "id": 148839123568959500, "id_str": "148839123568959489", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699128116/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699128116/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @realcormega: yo life is real somebody got robbed outside the grocery store for $150 worth of groceries everything aint popping bottles and fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:26 +0000", "from_user": "TheRealTyera", "from_user_id": 299977835, "from_user_id_str": "299977835", "from_user_name": "Tyera Breeze ", "geo": null, "id": 148839123078230000, "id_str": "148839123078230016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1686028990/n5T5o1rS_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686028990/n5T5o1rS_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@lOVEKatieG_ thats how it is smh younger siblings kill the fun", "to_user": "lOVEKatieG_", "to_user_id": 339808883, "to_user_id_str": "339808883", "to_user_name": "Katie !", "in_reply_to_status_id": 148838946250559500, "in_reply_to_status_id_str": "148838946250559488"}, +{"created_at": "Mon, 19 Dec 2011 18:56:26 +0000", "from_user": "_JordanQueen_", "from_user_id": 52220416, "from_user_id_str": "52220416", "from_user_name": "Helica . \\uF8FF", "geo": null, "id": 148839122323247100, "id_str": "148839122323247104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677383119/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677383119/image_normal.jpg", "source": "<a href="http://tweetlogix.com" rel="nofollow">Tweetlogix</a>", "text": "Why fit it in when it's more fun to stand out !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:26 +0000", "from_user": "PhlyAhhSlim", "from_user_id": 216321774, "from_user_id_str": "216321774", "from_user_name": "\\u2708Slimm Phlyte\\u2708", "geo": null, "id": 148839121610223600, "id_str": "148839121610223616", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699252610/L4q58e0T_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699252610/L4q58e0T_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Ghetto_Barbie You had fun last night love ?", "to_user": "Ghetto_Barbie", "to_user_id": 24998445, "to_user_id_str": "24998445", "to_user_name": "THICKY ROZAI\\u2122 ", "in_reply_to_status_id": 148838122963206140, "in_reply_to_status_id_str": "148838122963206144"}, +{"created_at": "Mon, 19 Dec 2011 18:56:26 +0000", "from_user": "PofParsimony", "from_user_id": 33298883, "from_user_id_str": "33298883", "from_user_name": "Marisa Monier", "geo": null, "id": 148839121475993600, "id_str": "148839121475993600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676351113/Picture_11_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676351113/Picture_11_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Sometimes love is enough and the road gets tough...idk why. The roads long we carry on, try to have fun in the meantime.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:26 +0000", "from_user": "scrappylilmama", "from_user_id": 217614674, "from_user_id_str": "217614674", "from_user_name": "Scrappy Mama", "geo": null, "id": 148839119416594430, "id_str": "148839119416594432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1192366600/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1192366600/image_normal.jpg", "source": "<a href="http://www.samsungmobile.com" rel="nofollow">Samsung Mobile</a>", "text": "Mississippi is fun to say fast. Its a different story to type it.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:25 +0000", "from_user": "Dutchy_Mcchilly", "from_user_id": 126829380, "from_user_id_str": "126829380", "from_user_name": "Von Doe\\u2122", "geo": null, "id": 148839119064272900, "id_str": "148839119064272896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694070884/Dutchy_Mcchilly_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694070884/Dutchy_Mcchilly_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "RT @PrimaDonna_1908: I love this man @Dutchy_Mcchilly http://t.co/tvrBQ72r had fun at the grad party!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:25 +0000", "from_user": "bella_lauraxxxx", "from_user_id": 25125310, "from_user_id_str": "25125310", "from_user_name": "laura harrison", "geo": null, "id": 148839118997168130, "id_str": "148839118997168128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1661245308/photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661245308/photo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@angellicabell have fun xxxx", "to_user": "angellicabell", "to_user_id": 44239911, "to_user_id_str": "44239911", "to_user_name": "Angellica Bell", "in_reply_to_status_id": 148838950478422000, "in_reply_to_status_id_str": "148838950478422016"}, +{"created_at": "Mon, 19 Dec 2011 18:56:25 +0000", "from_user": "Steve_Clements", "from_user_id": 17067299, "from_user_id_str": "17067299", "from_user_name": "Steve Clements", "geo": null, "id": 148839118808432640, "id_str": "148839118808432640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/434794570/Screen_shot_2009-09-24_at_10.05.15_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/434794570/Screen_shot_2009-09-24_at_10.05.15_PM_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I love doing spontaneous/fun things with the kids. I love seeing their excitement! #ParentingIsFun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:25 +0000", "from_user": "Kush_Ken", "from_user_id": 25533930, "from_user_id_str": "25533930", "from_user_name": "Ken Jones", "geo": null, "id": 148839118326071300, "id_str": "148839118326071297", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698157536/profile_image_1324125451396_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698157536/profile_image_1324125451396_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "But u had fun all weekend without me", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:25 +0000", "from_user": "RugbyPippen_", "from_user_id": 104676387, "from_user_id_str": "104676387", "from_user_name": "Oh, I'm Just Aubrey", "geo": null, "id": 148839117768237060, "id_str": "148839117768237056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695235608/ColorTouch-1323981977202_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695235608/ColorTouch-1323981977202_normal.jpeg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Girls Just wanna have fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:25 +0000", "from_user": "DarthVadon", "from_user_id": 88756274, "from_user_id_str": "88756274", "from_user_name": "Nat.", "geo": null, "id": 148839117667581950, "id_str": "148839117667581953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701273431/gf0L86h5_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701273431/gf0L86h5_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "It just hit me I haven't talked to him in ages. I've been too busy having fun. Guess I'll keep it that way too", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:25 +0000", "from_user": "welsh_ci", "from_user_id": 34536928, "from_user_id_str": "34536928", "from_user_name": "Welsh da God", "geo": null, "id": 148839117134901250, "id_str": "148839117134901248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691663227/331455805_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691663227/331455805_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @ayo0keishhh: Young && dumb was fun..but niggas gotta grow up one day", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:25 +0000", "from_user": "Heyiamvalentina", "from_user_id": 157730058, "from_user_id_str": "157730058", "from_user_name": "\\u221A A L E N T I N A \\u266C", "geo": null, "id": 148839115150995460, "id_str": "148839115150995457", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1658802258/IMSEXYANDKNOWIT__21__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658802258/IMSEXYANDKNOWIT__21__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @JASMINEVILLEGAS: @JASMINEVILLEGAS haha this is fun jasmine", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:24 +0000", "from_user": "futuristic225", "from_user_id": 249479037, "from_user_id_str": "249479037", "from_user_name": "D JAY_live!", "geo": +{"coordinates": [35.1168,-89.908], "type": "Point"}, "id": 148839115041947650, "id_str": "148839115041947649", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693836673/cp4CzX2G_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693836673/cp4CzX2G_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@MissLil_Booty yall had fun.last nite", "to_user": "MissLil_Booty", "to_user_id": 311685085, "to_user_id_str": "311685085", "to_user_name": "MissBreon(:", "in_reply_to_status_id": 148838905943306240, "in_reply_to_status_id_str": "148838905943306240"}, +{"created_at": "Mon, 19 Dec 2011 18:56:24 +0000", "from_user": "_iAmShelly", "from_user_id": 286387597, "from_user_id_str": "286387597", "from_user_name": "Shelly Btc", "geo": null, "id": 148839114605740030, "id_str": "148839114605740033", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1585809050/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585809050/profile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @_TinyCOLD: I love @_iAmShelly so much :) I miss her too we better have fun this weekend :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:24 +0000", "from_user": "kelseywilcox_", "from_user_id": 433873438, "from_user_id_str": "433873438", "from_user_name": "Kelsey Wilcox", "geo": null, "id": 148839113951416320, "id_str": "148839113951416320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701174441/b116273cca58b95a1f6280a91e2b94fa_large_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701174441/b116273cca58b95a1f6280a91e2b94fa_large_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@BryceParkers_ it left me this morning. trust me, life isn't always as fun as it seems.", "to_user": "BryceParkers_", "to_user_id": 440618511, "to_user_id_str": "440618511", "to_user_name": "Bryce Parkers", "in_reply_to_status_id": 148838842701590530, "in_reply_to_status_id_str": "148838842701590528"}, +{"created_at": "Mon, 19 Dec 2011 18:56:24 +0000", "from_user": "theovandaele", "from_user_id": 286635161, "from_user_id_str": "286635161", "from_user_name": "Theo van Daele", "geo": null, "id": 148839113909469200, "id_str": "148839113909469184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1455023814/wide001_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1455023814/wide001_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@nilerodgers Cleveland!!! Just kidding. What a month it was eh. I know, fun, but also, hard work.", "to_user": "nilerodgers", "to_user_id": 19997751, "to_user_id_str": "19997751", "to_user_name": "Nile Rodgers", "in_reply_to_status_id": 148831795872411650, "in_reply_to_status_id_str": "148831795872411648"}, +{"created_at": "Mon, 19 Dec 2011 18:56:24 +0000", "from_user": "Ess_screwdriver", "from_user_id": 227551985, "from_user_id_str": "227551985", "from_user_name": "Sergio sanchez", "geo": null, "id": 148839113125150720, "id_str": "148839113125150720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1288516548/photo108_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1288516548/photo108_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@awsomeaddy lmao ok if you fall I'll fall with you. And vice versa! It looks like fun haha yeah I'm down to go!", "to_user": "awsomeaddy", "to_user_id": 81210284, "to_user_id_str": "81210284", "to_user_name": "Addy Rose .", "in_reply_to_status_id": 148838805112225800, "in_reply_to_status_id_str": "148838805112225792"}, +{"created_at": "Mon, 19 Dec 2011 18:56:24 +0000", "from_user": "online_gsmegypt", "from_user_id": 330648835, "from_user_id_str": "330648835", "from_user_name": "online", "geo": null, "id": 148839112789590000, "id_str": "148839112789590016", "iso_language_code": "ar", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1429793359/254851_213650801999458_183109598386912_706633_4184070_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1429793359/254851_213650801999458_183109598386912_706633_4184070_n_normal.jpg", "source": "<a href="http://fun.ly" rel="nofollow">fun.ly</a>", "text": "\\u0639\\u0646\\u062F\\u0645\\u0627 \\u0646\\u062A\\u062D\\u062F\\u062B \\u0639\\u0646 \\u062D\\u0645\\u0635 \\u064A\\u0639\\u062C\\u0632 \\u0627\\u0644\\u0644\\u0633\\u0627\\u0646 \\u0639\\u0646 \\u0648\\u0635\\u0641 \\u0627\\u0644\\u062A\\u0636\\u062D\\u064A\\u0627\\u062A \\n\\u0643\\u0645\\u0627 \\u0627\\u0644\\u062D\\u0627\\u0644 \\u0641\\u064A \\u0643\\u0644 \\u0633\\u0648...http://fun.ly/198at", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:23 +0000", "from_user": "tylerrGANG", "from_user_id": 232363841, "from_user_id_str": "232363841", "from_user_name": "yall know my name.", "geo": null, "id": 148839110688251900, "id_str": "148839110688251904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687934655/profileImage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687934655/profileImage_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @ceeSPEAKS_stfu: .bad boys aint no good & good boys are no fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:23 +0000", "from_user": "Talk_HowMi_FeeL", "from_user_id": 53304730, "from_user_id_str": "53304730", "from_user_name": "MISTADON_FSS718", "geo": null, "id": 148839110113640450, "id_str": "148839110113640448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700700749/african-lions-nuzzling_10887_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700700749/african-lions-nuzzling_10887_600x450_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "U TOO HUN HV FUN IN BELIZE RT @sexicoolie Happy Holidays to mi lion dem @Talk_HowMi_FeeL and @tracey_xquizit c yall for new yrs *bbm hugs*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:23 +0000", "from_user": "onlinebiztools", "from_user_id": 440293535, "from_user_id_str": "440293535", "from_user_name": "Online Biz Tools", "geo": null, "id": 148839109895524350, "id_str": "148839109895524354", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700763044/images_normal.jpg", "profile_image_url_https": null, "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @HubSpot: Not as fun as tweeting, but important: 5 Noteworthy Examples of Corporate Social Media Policies - h... http://t.co/su2cjmzU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:23 +0000", "from_user": "theotherTAC", "from_user_id": 104029776, "from_user_id_str": "104029776", "from_user_name": "T", "geo": null, "id": 148839109782290430, "id_str": "148839109782290432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702154323/DSCF0417_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702154323/DSCF0417_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @Yokickz88: Who am I kidding I NEVER CARED! it was a fun #game lmfao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:23 +0000", "from_user": "kanleighmirz", "from_user_id": 144946587, "from_user_id_str": "144946587", "from_user_name": "KMirz", "geo": +{"coordinates": [29.9785,-95.5095], "type": "Point"}, "id": 148839109308325900, "id_str": "148839109308325888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694585765/IMG_03066_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694585765/IMG_03066_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Taking a shower while starving is not fun..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:23 +0000", "from_user": "MandiLorissa", "from_user_id": 347502409, "from_user_id_str": "347502409", "from_user_name": "Mandi Jaime", "geo": null, "id": 148839108515610620, "id_str": "148839108515610624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1682325215/hyk6A7Qx_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682325215/hyk6A7Qx_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@AmiCherii lol I know! I love it! They look like they are having fun lol", "to_user": "AmiCherii", "to_user_id": 220928436, "to_user_id_str": "220928436", "to_user_name": "Ami Morris", "in_reply_to_status_id": 148838491961298940, "in_reply_to_status_id_str": "148838491961298944"}, +{"created_at": "Mon, 19 Dec 2011 18:56:23 +0000", "from_user": "Ane1k", "from_user_id": 219007454, "from_user_id_str": "219007454", "from_user_name": "Ane\\u25CF", "geo": null, "id": 148839107206975500, "id_str": "148839107206975488", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700560884/Snapshot_20111215_12_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700560884/Snapshot_20111215_12_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@boramkis_ aha!~tumblr .. is it fun?", "to_user": "boramkis_", "to_user_id": 65323125, "to_user_id_str": "65323125", "to_user_name": "; Orison", "in_reply_to_status_id": 148837203416588300, "in_reply_to_status_id_str": "148837203416588289"}, +{"created_at": "Mon, 19 Dec 2011 18:56:22 +0000", "from_user": "AWElearning", "from_user_id": 140427141, "from_user_id_str": "140427141", "from_user_name": "AWE", "geo": null, "id": 148839106292617200, "id_str": "148839106292617217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1476543100/AWE-Library_3-26-2011_60_4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1476543100/AWE-Library_3-26-2011_60_4_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "\"Personal finance experts always say #earlyed is crucial for money management success later in life...\" http://t.co/kFe6Lvuc via @TheStreet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:22 +0000", "from_user": "sonyamoonz", "from_user_id": 231854214, "from_user_id_str": "231854214", "from_user_name": "Sonya E-licious", "geo": null, "id": 148839105571209200, "id_str": "148839105571209217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1671739053/846EA8D0-8FB3-49CC-9367-370D4B98917F_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671739053/846EA8D0-8FB3-49CC-9367-370D4B98917F_normal", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @ImHopel3ss: I just blocked 1 of my real life friends on here and reported them for spam, that was fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:22 +0000", "from_user": "xiroxoneradio2", "from_user_id": 328429092, "from_user_id_str": "328429092", "from_user_name": "USA, Formula1 & Fun ", "geo": null, "id": 148839105487314940, "id_str": "148839105487314944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1429986037/flag_USA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1429986037/flag_USA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Panel discussion on Changes, Challenges, and the Sustainability of Formula One Racing. Friendly, fun, informative. To join us reply or DM.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:22 +0000", "from_user": "SFCHarris_1", "from_user_id": 239456649, "from_user_id_str": "239456649", "from_user_name": "James Harris", "geo": null, "id": 148839104963031040, "id_str": "148839104963031040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1496692807/268408_2118791017048_1463943720_2319082_5868413_n_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1496692807/268408_2118791017048_1463943720_2319082_5868413_n_1__normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "He found a six -shooter gun in his dad's closet in the box of fun things, I don't even know what. but he's coming for you (8)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:22 +0000", "from_user": "CalluMacgregor", "from_user_id": 101858543, "from_user_id_str": "101858543", "from_user_name": "Callum Macgregor", "geo": null, "id": 148839104388399100, "id_str": "148839104388399104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1511839462/Photo_on_2011-04-20_at_14.50_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1511839462/Photo_on_2011-04-20_at_14.50_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@HeyItsRowan Oh fun times...", "to_user": "HeyItsRowan", "to_user_id": 308060448, "to_user_id_str": "308060448", "to_user_name": "Rowan Phelps", "in_reply_to_status_id": 148838594788868100, "in_reply_to_status_id_str": "148838594788868097"}, +{"created_at": "Mon, 19 Dec 2011 18:56:22 +0000", "from_user": "Carl_808", "from_user_id": 303892751, "from_user_id_str": "303892751", "from_user_name": "Carl Tu'itavuki", "geo": null, "id": 148839104208056320, "id_str": "148839104208056323", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1676493459/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676493459/image_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "7117837 is my friends lunch number. Everyone have fun and go get sum food :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:22 +0000", "from_user": "DeemaJSaidi", "from_user_id": 23218251, "from_user_id_str": "23218251", "from_user_name": "Deema J. Al Saidi", "geo": +{"coordinates": [33.8953,35.4835], "type": "Point"}, "id": 148839102756818940, "id_str": "148839102756818944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702476445/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702476445/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I love mysel fcause I swear their life ain't as much as fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:22 +0000", "from_user": "nongling", "from_user_id": 23278552, "from_user_id_str": "23278552", "from_user_name": "Nong Sakura Watanabe", "geo": null, "id": 148839102538723330, "id_str": "148839102538723328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690550173/n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690550173/n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@iarumis You are such a clever chap! cc:@simurai p.s.I've been having too much fun with Kinect. hahahahahaha! BoomBoomPow ;D", "to_user": "iarumis", "to_user_id": 369466737, "to_user_id_str": "369466737", "to_user_name": "iarumis", "in_reply_to_status_id": 148797147268124670, "in_reply_to_status_id_str": "148797147268124672"}, +{"created_at": "Mon, 19 Dec 2011 18:56:21 +0000", "from_user": "sly_killz", "from_user_id": 124926338, "from_user_id_str": "124926338", "from_user_name": "odu sylvester", "geo": null, "id": 148839101028761600, "id_str": "148839101028761601", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1677712994/IMG00298-20111206-1000_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677712994/IMG00298-20111206-1000_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @seunwills: So wt if we smoke weed,we jst having fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:21 +0000", "from_user": "AWetTurtleHead", "from_user_id": 20089576, "from_user_id_str": "20089576", "from_user_name": "AWetTurtleHead", "geo": null, "id": 148839100982632450, "id_str": "148839100982632448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1616151846/avatarpic-l_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616151846/avatarpic-l_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Glad i made the decision to buy Joe danger after being a bit hesitant about it, great fun :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:21 +0000", "from_user": "_dearMakia", "from_user_id": 221203117, "from_user_id_str": "221203117", "from_user_name": "Makia Mone't", "geo": null, "id": 148839100726775800, "id_str": "148839100726775809", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689525536/Snapshot_20111107_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689525536/Snapshot_20111107_3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @AsToldByDesmoe: I had fun yesterday with @SINcerelyKeo_ @_dearMakia @KeepingUpWithLB and @1800_Tellit2Tia. :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:21 +0000", "from_user": "AyeLovely_Ash21", "from_user_id": 63911410, "from_user_id_str": "63911410", "from_user_name": "Ash_\\u266A \\u266B \\u2669 \\u266CFYM..duh", "geo": null, "id": 148839099845967870, "id_str": "148839099845967873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700638782/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700638782/profile_normal.jpg", "source": "<a href="http://www.handmark.com" rel="nofollow">TweetCaster for WP7</a>", "text": "@aye_SCARJAY lmfaooo.. My hoeeee !!! We was on all of that!! We've been knowing each other for 2yrs.. That's ish crayyyy ! Lololol fun times", "to_user": "aye_SCARJAY", "to_user_id": 125842315, "to_user_id_str": "125842315", "to_user_name": "Boss Scarlett Jean.", "in_reply_to_status_id": 148838149722877950, "in_reply_to_status_id_str": "148838149722877952"}, +{"created_at": "Mon, 19 Dec 2011 18:56:20 +0000", "from_user": "ShaQuitaJana", "from_user_id": 93772531, "from_user_id_str": "93772531", "from_user_name": "ShaQuita", "geo": null, "id": 148839097945956350, "id_str": "148839097945956352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1677502555/avatar_normal.JPEG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677502555/avatar_normal.JPEG", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Hmmm...Wednesday is gonna be fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:19 +0000", "from_user": "chris_arian13", "from_user_id": 381877606, "from_user_id_str": "381877606", "from_user_name": "Chris Arian", "geo": null, "id": 148839093575483400, "id_str": "148839093575483392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1564740172/chris_swag_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1564740172/chris_swag_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Steven_Amoroso7 have fun in health buddy", "to_user": "Steven_Amoroso7", "to_user_id": 292676189, "to_user_id_str": "292676189", "to_user_name": "Steven Amoroso", "in_reply_to_status_id": 148832884449476600, "in_reply_to_status_id_str": "148832884449476609"}, +{"created_at": "Mon, 19 Dec 2011 18:56:19 +0000", "from_user": "GoDJBishopp", "from_user_id": 131052874, "from_user_id_str": "131052874", "from_user_name": "G\\u0398 DJ \\u03B2ISH\\u0398PP", "geo": null, "id": 148839093378363400, "id_str": "148839093378363392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680478805/330198572_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680478805/330198572_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SerafiaRae: BLAH #MansionParty on 4404 Allison Road Dec23 <-- go! 2 Live DJs Safe and will be FUN AF AGAIN!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:19 +0000", "from_user": "FUKCYOFEELINGS", "from_user_id": 382224241, "from_user_id_str": "382224241", "from_user_name": "ShaynaMarie", "geo": null, "id": 148839090261991420, "id_str": "148839090261991424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1676476477/330983363_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676476477/330983363_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @HighAssTee: High School Basketball was fun af", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:18 +0000", "from_user": "GroteKarst", "from_user_id": 378809624, "from_user_id_str": "378809624", "from_user_name": "Carlo Hankel", "geo": null, "id": 148839089934831600, "id_str": "148839089934831616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1557435763/DSC_8135__Kopie_2__1024x768__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1557435763/DSC_8135__Kopie_2__1024x768__normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "@hilliekrist leuke film, have fun! #hortonhearsawho", "to_user": "hilliekrist", "to_user_id": 132997002, "to_user_id_str": "132997002", "to_user_name": "Hillie Krist", "in_reply_to_status_id": 148837951281963000, "in_reply_to_status_id_str": "148837951281963008"}, +{"created_at": "Mon, 19 Dec 2011 18:56:18 +0000", "from_user": "MchelleMc", "from_user_id": 87396035, "from_user_id_str": "87396035", "from_user_name": "Michelle Lim \\u2665", "geo": null, "id": 148839089737703420, "id_str": "148839089737703424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1646104006/IMG05628-20111113-1228_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646104006/IMG05628-20111113-1228_normal.jpg", "source": "<a href="http://twuffer.com" rel="nofollow">Twuffer</a>", "text": "RT @EpicTweets_: Wishing your pets could talk is fun until you remember everything you've ever done in front of your pets.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:18 +0000", "from_user": "wjb13", "from_user_id": 23883459, "from_user_id_str": "23883459", "from_user_name": "Jonathan Belcher", "geo": null, "id": 148839089347629060, "id_str": "148839089347629057", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1605424145/6278134510_fefa202fa1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1605424145/6278134510_fefa202fa1_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Sean_Braisted: Its so sad that Gingrich is cratering in Iowa, stuff like this would've been so much fun in the general. http://t.co/z96D288X #WarOnJudges", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:18 +0000", "from_user": "_BeLlaDoNna__", "from_user_id": 300388527, "from_user_id_str": "300388527", "from_user_name": "Emere Aisha Hill", "geo": null, "id": 148839087640547330, "id_str": "148839087640547328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677991722/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677991722/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "My weekend involved alot of fun with @Kall_ME_IVY @Yolanda_Norman and others..... Besides the bacteria that invaded my eyes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:18 +0000", "from_user": "Ms_Imani", "from_user_id": 39034699, "from_user_id_str": "39034699", "from_user_name": "\\uE32EImani Keyann\\uE32E", "geo": null, "id": 148839087476969470, "id_str": "148839087476969472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688061336/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688061336/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Heading to the city. This should be fun -_-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:18 +0000", "from_user": "TreonTHEBEAST", "from_user_id": 52856397, "from_user_id_str": "52856397", "from_user_name": "te'no mas :* ", "geo": null, "id": 148839087313391600, "id_str": "148839087313391616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699574238/2010-04-07_20-35-46.168_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699574238/2010-04-07_20-35-46.168_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "my oldtimes was fun but now I'm good", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:18 +0000", "from_user": "TwEATmy_Tweets", "from_user_id": 339022188, "from_user_id_str": "339022188", "from_user_name": "Kira 'Shari", "geo": null, "id": 148839087007203330, "id_str": "148839087007203328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691447218/PhotoChooser-5c5d349f-bc71-428a-b134-c4a95a035509_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691447218/PhotoChooser-5c5d349f-bc71-428a-b134-c4a95a035509_normal.jpg", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "Whats A Life With No Fun ?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:18 +0000", "from_user": "SS_Dal", "from_user_id": 228432756, "from_user_id_str": "228432756", "from_user_name": "SS Dal", "geo": null, "id": 148839086466150400, "id_str": "148839086466150401", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1620589072/rohan_arora_boots_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620589072/rohan_arora_boots_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@DrPaulNassif Fun prize giveaway. Retweet & Follow me for a chance to a win a Fenix Skincare Gift Pack! Winner chosen when I get to 50k!", "to_user": "DrPaulNassif", "to_user_id": 46875439, "to_user_id_str": "46875439", "to_user_name": "Paul Nassif, MD"}, +{"created_at": "Mon, 19 Dec 2011 18:56:17 +0000", "from_user": "TheArctic_Mel", "from_user_id": 231615399, "from_user_id_str": "231615399", "from_user_name": "Freddy Krueger", "geo": null, "id": 148839084687769600, "id_str": "148839084687769600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1678343157/mel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678343157/mel_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "My sister made fun of my dimple....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:17 +0000", "from_user": "AllyRiri", "from_user_id": 113137560, "from_user_id_str": "113137560", "from_user_name": "Alero Arafiena ", "geo": null, "id": 148839083467214850, "id_str": "148839083467214848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700928794/Ikeja-20111218-02062_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700928794/Ikeja-20111218-02062_normal.jpg", "source": "<a href="http://www.towerheist.net/" rel="nofollow">Tower Heist Takeover, BlackBerry</a>", "text": "LoL.. Thanks muchhh for 2day.. Had awesome fun..muah your welcome :)RT @RickNwanso: Yaaay!!! I'm feeling like ... http://t.co/ROqyymVP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:17 +0000", "from_user": "JayMeelz", "from_user_id": 42532421, "from_user_id_str": "42532421", "from_user_name": "DADDY", "geo": null, "id": 148839082909368320, "id_str": "148839082909368320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695405536/383143_2204848211115_1544674793_31626318_1765293992_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695405536/383143_2204848211115_1544674793_31626318_1765293992_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@COCAINEJAYNE I had fun too", "to_user": "COCAINEJAYNE", "to_user_id": 30280577, "to_user_id_str": "30280577", "to_user_name": "Amanda Jayne Jackson", "in_reply_to_status_id": 148838009041719300, "in_reply_to_status_id_str": "148838009041719296"}, +{"created_at": "Mon, 19 Dec 2011 18:56:17 +0000", "from_user": "kim_bah_lee14", "from_user_id": 211393252, "from_user_id_str": "211393252", "from_user_name": "KimberlyAnn Cantu", "geo": null, "id": 148839082791931900, "id_str": "148839082791931905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1561994543/Photo_on_9-20-11_at_4.30_PM__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1561994543/Photo_on_9-20-11_at_4.30_PM__2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@HomeroSolis10 hahah naw. you won't. everyones really friendly and welcoming :D you'll have fun. i'm glad you're going.(:", "to_user": "HomeroSolis10", "to_user_id": 307684086, "to_user_id_str": "307684086", "to_user_name": "homer.homer.homer", "in_reply_to_status_id": 148838793280102400, "in_reply_to_status_id_str": "148838793280102401"}, +{"created_at": "Mon, 19 Dec 2011 18:56:17 +0000", "from_user": "CaliSwaggGurl", "from_user_id": 33927610, "from_user_id_str": "33927610", "from_user_name": "Khadijah", "geo": null, "id": 148839082125041660, "id_str": "148839082125041665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1663780947/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663780947/image_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@TheChristelle_S Fashooo sis!and have fun ice skating today!(:", "to_user": "TheChristelle_S", "to_user_id": 354938143, "to_user_id_str": "354938143", "to_user_name": "Christelle Sylvain \\u2713", "in_reply_to_status_id": 148828463921512450, "in_reply_to_status_id_str": "148828463921512448"}, +{"created_at": "Mon, 19 Dec 2011 18:56:16 +0000", "from_user": "Lifewidd_Redd", "from_user_id": 367805481, "from_user_id_str": "367805481", "from_user_name": "Jan 3, -\\u2665!", "geo": null, "id": 148839081344897020, "id_str": "148839081344897024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696308851/SchoolGirl___normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696308851/SchoolGirl___normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "It Be Fun , Over Theaa Widd Poke Nem , Urghh . She blew me man .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:16 +0000", "from_user": "kevinwayneyoung", "from_user_id": 438489230, "from_user_id_str": "438489230", "from_user_name": "Kevin W Young", "geo": null, "id": 148839080967409660, "id_str": "148839080967409664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": null, "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "I think \"Holy Snazzberries\" would be a fun catchphrase.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:16 +0000", "from_user": "iLoVeMeSoMeMoNi", "from_user_id": 111986427, "from_user_id_str": "111986427", "from_user_name": "Monica Rowland", "geo": null, "id": 148839080602505200, "id_str": "148839080602505218", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1477220941/monicaaa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1477220941/monicaaa_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @WizKhalllifa: #IWasThatKid that covered my hands in glue , let it dry , and then peeled it off for fun...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:16 +0000", "from_user": "AmBITCHion", "from_user_id": 347425847, "from_user_id_str": "347425847", "from_user_name": ".FearLESS.", "geo": null, "id": 148839078446641150, "id_str": "148839078446641153", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702537436/I_Am_FearLESS_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702537436/I_Am_FearLESS_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Had fun with daddy... And now Im bored all over again.. My phone dead as hell... #TeamNoLove", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:16 +0000", "from_user": "BAILEYepperson", "from_user_id": 294747951, "from_user_id_str": "294747951", "from_user_name": "bailey \\u262E", "geo": null, "id": 148839078383726600, "id_str": "148839078383726592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1684958778/DSCI0050__478x640__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684958778/DSCI0050__478x640__normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @MODSUN: Dude, my life is so fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:15 +0000", "from_user": "1337Pikachu", "from_user_id": 279888029, "from_user_id_str": "279888029", "from_user_name": "stephen", "geo": null, "id": 148839077351931900, "id_str": "148839077351931906", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1306467384/ap1Prh56_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1306467384/ap1Prh56_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@PonyPMS :) its gravy I had fun u cant get better by playing people less skilled u get better by playing more skilled people", "to_user": "PonyPMS", "to_user_id": 269814612, "to_user_id_str": "269814612", "to_user_name": "Heather", "in_reply_to_status_id": 148837189520855040, "in_reply_to_status_id_str": "148837189520855042"}, +{"created_at": "Mon, 19 Dec 2011 18:56:15 +0000", "from_user": "loveexSlim", "from_user_id": 380011807, "from_user_id_str": "380011807", "from_user_name": "Shanice Witts", "geo": null, "id": 148839077221896200, "id_str": "148839077221896192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695909434/331554546_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695909434/331554546_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Uh yes she is! You don't run nothing around here! We gone have fun! RT @RealSoreLoser: @loveexSlim Ki ain't going", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:15 +0000", "from_user": "Gemma007xx", "from_user_id": 89480333, "from_user_id_str": "89480333", "from_user_name": "Gemma ", "geo": null, "id": 148839075602903040, "id_str": "148839075602903041", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1213034892/me_L_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1213034892/me_L_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "@WeRTheBrits i went there in year 9 it was beautiful :) aha okay,speak to soon have fun :) xx", "to_user": "WeRTheBrits", "to_user_id": 344101889, "to_user_id_str": "344101889", "to_user_name": "We Are The Brits"}, +{"created_at": "Mon, 19 Dec 2011 18:56:15 +0000", "from_user": "TaylorAHumphrey", "from_user_id": 425471565, "from_user_id_str": "425471565", "from_user_name": "Taylor A. Humphrey ", "geo": null, "id": 148839073249898500, "id_str": "148839073249898497", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1667037403/9035_1205195763848_1047240178_30899226_2155878_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667037403/9035_1205195763848_1047240178_30899226_2155878_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"The road is long, we carry on...Try to have fun in the meantime\" #borntodie @LanaDelReyDaily", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:14 +0000", "from_user": "WinObs", "from_user_id": 15434432, "from_user_id_str": "15434432", "from_user_name": "Richard Hay", "geo": null, "id": 148839072771739650, "id_str": "148839072771739650", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1628961587/Three_Months_After_Retirement_-_Twitter_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628961587/Three_Months_After_Retirement_-_Twitter_normal.JPG", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Buzzwords bringing word-finding fun and lots of honey to Windows Phone http://t.co/CK2tSu9H", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:14 +0000", "from_user": "josephakol", "from_user_id": 73845815, "from_user_id_str": "73845815", "from_user_name": "Jigs Akol", "geo": null, "id": 148839072713027600, "id_str": "148839072713027584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694263065/josephakol_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694263065/josephakol_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Thank you for the night teammates! Hopefully not my last Christmas party with the team! Fun @_lancelim @iamnikko09 @timouy @MigiArce", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:14 +0000", "from_user": "BeverlyKlein", "from_user_id": 105347758, "from_user_id_str": "105347758", "from_user_name": "Bev ", "geo": null, "id": 148839072339734530, "id_str": "148839072339734528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1631555768/BeverlyKlein_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631555768/BeverlyKlein_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@kelsea_beth so jealous! have fun!", "to_user": "kelsea_beth", "to_user_id": 271543280, "to_user_id_str": "271543280", "to_user_name": "Kelsea", "in_reply_to_status_id": 148834770367942660, "in_reply_to_status_id_str": "148834770367942656"}, +{"created_at": "Mon, 19 Dec 2011 18:56:14 +0000", "from_user": "DorindaTS", "from_user_id": 298625059, "from_user_id_str": "298625059", "from_user_name": "Dorinda T. Stallings", "geo": null, "id": 148839072276819970, "id_str": "148839072276819969", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1353422479/295707483_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1353422479/295707483_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@Meika78 @ArdentBee honey we had too much fun that night.", "to_user": "Meika78", "to_user_id": 30450323, "to_user_id_str": "30450323", "to_user_name": "The Chosen One", "in_reply_to_status_id": 148834504344211460, "in_reply_to_status_id_str": "148834504344211456"}, +{"created_at": "Mon, 19 Dec 2011 18:56:14 +0000", "from_user": "THEREAL_Kris", "from_user_id": 426261544, "from_user_id_str": "426261544", "from_user_name": "Kristen Mays", "geo": null, "id": 148839072205508600, "id_str": "148839072205508608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688382458/3dPM6jku_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688382458/3dPM6jku_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@BeautyNBlonde_: Subtweet shxt, mention me!\"..STFU and text them tenders lol did u have fun the other day??", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:14 +0000", "from_user": "dhxoxo", "from_user_id": 254468276, "from_user_id_str": "254468276", "from_user_name": "\\u2764delllllllll dukuu.", "geo": null, "id": 148839072046137340, "id_str": "148839072046137344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691209759/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691209759/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MelisaDuku: Starbucks time. Have fun all of you at Dappys London show", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:14 +0000", "from_user": "Tana_ThaCreator", "from_user_id": 196749070, "from_user_id_str": "196749070", "from_user_name": "(\\u22A5)ana(M)an(O)r(D)ie", "geo": null, "id": 148839071786082300, "id_str": "148839071786082305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1657965414/taanaman_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657965414/taanaman_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @Kaay_ThaCreator: @Tana_ThaCreator ion give ah fxck im having fun with my 28 followers nd rachelle ca eat my jumbo sausage", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:14 +0000", "from_user": "Yakubu_24", "from_user_id": 427695041, "from_user_id_str": "427695041", "from_user_name": "Yakubu Aiyegbeni", "geo": null, "id": 148839070796218370, "id_str": "148839070796218368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1672055156/yakk_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672055156/yakk_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "We've all heard the jokes that us Nigerians don't know our ages. Its all fun and games unless your the U21's manager. Then its a nightmare.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:14 +0000", "from_user": "IAm_Me253", "from_user_id": 74201328, "from_user_id_str": "74201328", "from_user_name": "Sydnee ", "geo": null, "id": 148839069785403400, "id_str": "148839069785403392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693908207/T06exPfM_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693908207/T06exPfM_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Had fun last night! Haven't had fun like that in a long time!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:13 +0000", "from_user": "DoraDaExploraa_", "from_user_id": 246292153, "from_user_id_str": "246292153", "from_user_name": "Andreaa(:", "geo": null, "id": 148839068514517000, "id_str": "148839068514516992", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698944598/CHr847hR_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698944598/CHr847hR_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "christmas eve is gonna be soo fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:13 +0000", "from_user": "Peytonk18", "from_user_id": 333932998, "from_user_id_str": "333932998", "from_user_name": "Peyton Kelley", "geo": null, "id": 148839068321579000, "id_str": "148839068321579008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1446326405/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1446326405/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@crystalhndz hell yeah that sounds fun!!:D Let me know when it is and how much.", "to_user": "crystalhndz", "to_user_id": 343199906, "to_user_id_str": "343199906", "to_user_name": "Crystal Hernandez", "in_reply_to_status_id": 148640184857149440, "in_reply_to_status_id_str": "148640184857149440"}, +{"created_at": "Mon, 19 Dec 2011 18:56:13 +0000", "from_user": "HeelsOnHigh", "from_user_id": 92110556, "from_user_id_str": "92110556", "from_user_name": "Simply Tyra....", "geo": null, "id": 148839065297502200, "id_str": "148839065297502208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697782576/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697782576/image_normal.jpg", "source": "<a href="http://www.tweetings.net/" rel="nofollow">Tweetings for iPhone</a>", "text": "@MzSassy_J Lmao! That takes the fun out of it! **Hmph**", "to_user": "MzSassy_J", "to_user_id": 20827693, "to_user_id_str": "20827693", "to_user_name": "Lovely Lady", "in_reply_to_status_id": 148838348256055300, "in_reply_to_status_id_str": "148838348256055297"}, +{"created_at": "Mon, 19 Dec 2011 18:56:13 +0000", "from_user": "amanda_nash25", "from_user_id": 263901788, "from_user_id_str": "263901788", "from_user_name": "Amanda Nash", "geo": null, "id": 148839065268142080, "id_str": "148839065268142080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1666976238/FqGbb23Q_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666976238/FqGbb23Q_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "It would be kinda fun to work at a pawn shop #pawnstars", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:12 +0000", "from_user": "ys_boardgames", "from_user_id": 179252666, "from_user_id_str": "179252666", "from_user_name": "Yardsellr Board Game", "geo": null, "id": 148839064165023740, "id_str": "148839064165023744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1104489828/logo-304x304_bigger_bigger_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1104489828/logo-304x304_bigger_bigger_normal.png", "source": "<a href="http://yardsellr.com" rel="nofollow">Yardsellr</a>", "text": "DORA CANDYLAND BOARD GAME.GREAT FUN PLAY EITHER DORA DIEGO BACKPACK AND BOOTS http://t.co/WNFrHo3N", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:12 +0000", "from_user": "LexsSee", "from_user_id": 311283661, "from_user_id_str": "311283661", "from_user_name": "Lexie Stimmell", "geo": null, "id": 148839062063681540, "id_str": "148839062063681537", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698610173/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698610173/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Let go,Have fun,Give in to Curiosity", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:12 +0000", "from_user": "eCatalin", "from_user_id": 27740026, "from_user_id_str": "27740026", "from_user_name": "d.c", "geo": null, "id": 148839061975605250, "id_str": "148839061975605248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1288302990/The_Best_-_Copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1288302990/The_Best_-_Copy_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Photo: eCatalin.ro - fun. just fun. http://t.co/yMgoDzma", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:11 +0000", "from_user": "1DOffice", "from_user_id": 368991397, "from_user_id_str": "368991397", "from_user_name": "\\u2654", "geo": null, "id": 148839060478234620, "id_str": "148839060478234624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1637100336/doffice_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637100336/doffice_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@HuggingLouis it wasn't as fun or interesting this year :( x", "to_user": "HuggingLouis", "to_user_id": 399672193, "to_user_id_str": "399672193", "to_user_name": "Bitches be crazy. ", "in_reply_to_status_id": 148838175203266560, "in_reply_to_status_id_str": "148838175203266562"}, +{"created_at": "Mon, 19 Dec 2011 18:56:11 +0000", "from_user": "iDream__Big", "from_user_id": 62935282, "from_user_id_str": "62935282", "from_user_name": "James Ramseur", "geo": null, "id": 148839059895238660, "id_str": "148839059895238656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702078937/d_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702078937/d_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MissAdeeBaby: While on this Christmas Break I would love for all my classmates to get together and do something fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:11 +0000", "from_user": "xkellykins", "from_user_id": 72155541, "from_user_id_str": "72155541", "from_user_name": "Kelly Nguyen.\\u2122", "geo": null, "id": 148839059660357630, "id_str": "148839059660357635", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701697828/__20_20_20_20Kellynguyen_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701697828/__20_20_20_20Kellynguyen_3_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @Klopez_28: @xkellykins she havin fun though!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:11 +0000", "from_user": "FadyShounia", "from_user_id": 291914208, "from_user_id_str": "291914208", "from_user_name": "Fady Shounia", "geo": null, "id": 148839057458343940, "id_str": "148839057458343936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1619452723/wolverine1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619452723/wolverine1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@RonzaDawood you are fun to mess with thats all :)", "to_user": "RonzaDawood", "to_user_id": 177007098, "to_user_id_str": "177007098", "to_user_name": "RonzaDawood", "in_reply_to_status_id": 148838633762328580, "in_reply_to_status_id_str": "148838633762328577"}, +{"created_at": "Mon, 19 Dec 2011 18:56:11 +0000", "from_user": "C0ryRyan", "from_user_id": 340113860, "from_user_id_str": "340113860", "from_user_name": "Cory Ryan", "geo": null, "id": 148839056950837250, "id_str": "148839056950837248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1482809027/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1482809027/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@jweikel29 @mylohimself. @Adam_paul_goff. What a fun game u all have been playing lmao", "to_user": "jweikel29", "to_user_id": 180256530, "to_user_id_str": "180256530", "to_user_name": "Josh Weikel"}, +{"created_at": "Mon, 19 Dec 2011 18:56:11 +0000", "from_user": "DaveThePedo", "from_user_id": 235413843, "from_user_id_str": "235413843", "from_user_name": "David Cronin", "geo": null, "id": 148839056392990720, "id_str": "148839056392990720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682057643/tweak_d_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682057643/tweak_d_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "You call this shit rape but I think rapes fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:10 +0000", "from_user": "Cherellewvl", "from_user_id": 440151989, "from_user_id_str": "440151989", "from_user_name": "Cherelle Volpicelli", "geo": null, "id": 148839056309096450, "id_str": "148839056309096448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700430626/large_DSC_0955_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700430626/large_DSC_0955_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Brown Tropical Floral Patterned Fun Looking Fedora: The tropics can't be far away when wearing this fun looking ... http://t.co/G2t1pP0L", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:10 +0000", "from_user": "MissChanelSweet", "from_user_id": 420842968, "from_user_id_str": "420842968", "from_user_name": "Chanel sweets ", "geo": null, "id": 148839054845284350, "id_str": "148839054845284352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694014773/img_1212bw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694014773/img_1212bw_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @hipsterproblems: Fun: Talk about a fake band and watch your friends pretend they know them. #hipsterproblems", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:56:11 +0000", "from_user": "1DOffice", "from_user_id": 368991397, "from_user_id_str": "368991397", "from_user_name": "\\u2654", "geo": null, "id": 148839060478234620, "id_str": "148839060478234624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1637100336/doffice_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637100336/doffice_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@HuggingLouis it wasn't as fun or interesting this year :( x", "to_user": "HuggingLouis", "to_user_id": 399672193, "to_user_id_str": "399672193", "to_user_name": "Bitches be crazy. ", "in_reply_to_status_id": 148838175203266560, "in_reply_to_status_id_str": "148838175203266562"}, +{"created_at": "Mon, 19 Dec 2011 18:56:11 +0000", "from_user": "iDream__Big", "from_user_id": 62935282, "from_user_id_str": "62935282", "from_user_name": "James Ramseur", "geo": null, "id": 148839059895238660, "id_str": "148839059895238656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702078937/d_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702078937/d_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MissAdeeBaby: While on this Christmas Break I would love for all my classmates to get together and do something fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:11 +0000", "from_user": "xkellykins", "from_user_id": 72155541, "from_user_id_str": "72155541", "from_user_name": "Kelly Nguyen.\\u2122", "geo": null, "id": 148839059660357630, "id_str": "148839059660357635", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701697828/__20_20_20_20Kellynguyen_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701697828/__20_20_20_20Kellynguyen_3_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @Klopez_28: @xkellykins she havin fun though!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:11 +0000", "from_user": "FadyShounia", "from_user_id": 291914208, "from_user_id_str": "291914208", "from_user_name": "Fady Shounia", "geo": null, "id": 148839057458343940, "id_str": "148839057458343936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1619452723/wolverine1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619452723/wolverine1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@RonzaDawood you are fun to mess with thats all :)", "to_user": "RonzaDawood", "to_user_id": 177007098, "to_user_id_str": "177007098", "to_user_name": "RonzaDawood", "in_reply_to_status_id": 148838633762328580, "in_reply_to_status_id_str": "148838633762328577"}, +{"created_at": "Mon, 19 Dec 2011 18:56:11 +0000", "from_user": "C0ryRyan", "from_user_id": 340113860, "from_user_id_str": "340113860", "from_user_name": "Cory Ryan", "geo": null, "id": 148839056950837250, "id_str": "148839056950837248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1482809027/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1482809027/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@jweikel29 @mylohimself. @Adam_paul_goff. What a fun game u all have been playing lmao", "to_user": "jweikel29", "to_user_id": 180256530, "to_user_id_str": "180256530", "to_user_name": "Josh Weikel"}, +{"created_at": "Mon, 19 Dec 2011 18:56:11 +0000", "from_user": "DaveThePedo", "from_user_id": 235413843, "from_user_id_str": "235413843", "from_user_name": "David Cronin", "geo": null, "id": 148839056392990720, "id_str": "148839056392990720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682057643/tweak_d_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682057643/tweak_d_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "You call this shit rape but I think rapes fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:10 +0000", "from_user": "Cherellewvl", "from_user_id": 440151989, "from_user_id_str": "440151989", "from_user_name": "Cherelle Volpicelli", "geo": null, "id": 148839056309096450, "id_str": "148839056309096448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700430626/large_DSC_0955_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700430626/large_DSC_0955_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Brown Tropical Floral Patterned Fun Looking Fedora: The tropics can't be far away when wearing this fun looking ... http://t.co/G2t1pP0L", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:10 +0000", "from_user": "MissChanelSweet", "from_user_id": 420842968, "from_user_id_str": "420842968", "from_user_name": "Chanel sweets ", "geo": null, "id": 148839054845284350, "id_str": "148839054845284352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694014773/img_1212bw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694014773/img_1212bw_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @hipsterproblems: Fun: Talk about a fake band and watch your friends pretend they know them. #hipsterproblems", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:10 +0000", "from_user": "alexhandley12", "from_user_id": 264031660, "from_user_id_str": "264031660", "from_user_name": "Alex Handley", "geo": null, "id": 148839054790758400, "id_str": "148839054790758400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1625898861/aagJ1sQR_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1625898861/aagJ1sQR_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Last night was fun but dang I'm tired! @_blackbearrr @CatherineJPenn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:10 +0000", "from_user": "_CrimsonRegret_", "from_user_id": 31359710, "from_user_id_str": "31359710", "from_user_name": "Crimson Regret", "geo": null, "id": 148839053196922880, "id_str": "148839053196922880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1608750617/white3-6-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608750617/white3-6-2_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "@casness fun times!", "to_user": "casness", "to_user_id": 256636558, "to_user_id_str": "256636558", "to_user_name": "yaro", "in_reply_to_status_id": 148836630894092300, "in_reply_to_status_id_str": "148836630894092289"}, +{"created_at": "Mon, 19 Dec 2011 18:56:09 +0000", "from_user": "___DeeNicole", "from_user_id": 22114937, "from_user_id_str": "22114937", "from_user_name": "DeniseNicole", "geo": null, "id": 148839050940399600, "id_str": "148839050940399616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697375353/photo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697375353/photo_normal.JPG", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@808snShxt put the fun in fundraising", "to_user": "808snShxt", "to_user_id": 237441989, "to_user_id_str": "237441989", "to_user_name": "Parker", "in_reply_to_status_id": 148838463540695040, "in_reply_to_status_id_str": "148838463540695042"}, +{"created_at": "Mon, 19 Dec 2011 18:56:09 +0000", "from_user": "MissPryor", "from_user_id": 39421796, "from_user_id_str": "39421796", "from_user_name": "Charlotte Pryor", "geo": null, "id": 148839050743259140, "id_str": "148839050743259137", "iso_language_code": "is", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/287298910/blackberry_029_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/287298910/blackberry_029_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Fun,Fun,Fun....... http://t.co/VEBD9R0A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:09 +0000", "from_user": "kickboxfitness", "from_user_id": 18579679, "from_user_id_str": "18579679", "from_user_name": "kickboxfitness", "geo": null, "id": 148839050646790140, "id_str": "148839050646790144", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/217344353/KBF_Icon_mit_Logo_ohne_Rahmen_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/217344353/KBF_Icon_mit_Logo_ohne_Rahmen_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Wulin Wushu - Family Fitness Fun, Kung Fu, Self Defense Kickboxing, & TaiChi relaxation! http://t.co/8M5vS65n - ... http://t.co/5wRFDZG9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:09 +0000", "from_user": "T3LLY_MONSTER", "from_user_id": 100269604, "from_user_id_str": "100269604", "from_user_name": "\\u2654Limited Edition\\u2654", "geo": null, "id": 148839049786966000, "id_str": "148839049786966017", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1570196403/day_ooff_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1570196403/day_ooff_2_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Bad boys ain't no good.. Good boys ain't no fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:09 +0000", "from_user": "youngkass1", "from_user_id": 93078006, "from_user_id_str": "93078006", "from_user_name": "Kassim Jenom", "geo": null, "id": 148839048876802050, "id_str": "148839048876802048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1474527049/324451410_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1474527049/324451410_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "How fun will it be if there was a show bout Koko mansion girls vs playboy mansion girls", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:09 +0000", "from_user": "cyncyNAYA", "from_user_id": 46221355, "from_user_id_str": "46221355", "from_user_name": "Cynthia Rivera \\u2665", "geo": null, "id": 148839048386068480, "id_str": "148839048386068480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693927968/tumblr_lskeeye7Ji1qjob6co1_500_large_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693927968/tumblr_lskeeye7Ji1qjob6co1_500_large_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@rikerR5 oof, have fun. meanwhile i will head off to my dress rehearsal hoping no one loses their voices! #fingerscrossed feel better soon!", "to_user": "rikerR5", "to_user_id": 17951326, "to_user_id_str": "17951326", "to_user_name": "riker lynch", "in_reply_to_status_id": 148837039343812600, "in_reply_to_status_id_str": "148837039343812608"}, +{"created_at": "Mon, 19 Dec 2011 18:56:09 +0000", "from_user": "jessyrocks", "from_user_id": 37020659, "from_user_id_str": "37020659", "from_user_name": "Jessyca Alencar", "geo": null, "id": 148839048134393860, "id_str": "148839048134393856", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1356898732/P160511_00.08_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1356898732/P160511_00.08_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Alyssa_Milano Happy Bday Alyssa!!!! Have fun today!!!!! Luv ya.", "to_user": "Alyssa_Milano", "to_user_id": 26642006, "to_user_id_str": "26642006", "to_user_name": "Alyssa Milano"}, +{"created_at": "Mon, 19 Dec 2011 18:56:08 +0000", "from_user": "AlwaysStayReal", "from_user_id": 212472072, "from_user_id_str": "212472072", "from_user_name": "\\u2206ce ||\\u272F", "geo": null, "id": 148839047735947260, "id_str": "148839047735947264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700906736/tweet_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700906736/tweet_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "It's not as fun as it looks", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:08 +0000", "from_user": "EhtsmeBEASTy", "from_user_id": 131369665, "from_user_id_str": "131369665", "from_user_name": "hi daddy\\u2665", "geo": null, "id": 148839047526223870, "id_str": "148839047526223872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688382382/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688382382/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "@TheyLoveIndy girl same here. I aint been too a party in 30 years! Maaan it was hella hella hot bt yeee i had fun.", "to_user": "TheyLoveIndy", "to_user_id": 157223114, "to_user_id_str": "157223114", "to_user_name": "INDIA =)", "in_reply_to_status_id": 148838274201432060, "in_reply_to_status_id_str": "148838274201432064"}, +{"created_at": "Mon, 19 Dec 2011 18:56:08 +0000", "from_user": "revive85KC", "from_user_id": 243968947, "from_user_id_str": "243968947", "from_user_name": "Michael James Foos", "geo": null, "id": 148839047354257400, "id_str": "148839047354257408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1653226277/securedownload_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653226277/securedownload_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "TebowCenter is offended because Saturday Night Live made fun of their goldenchild over the weekend.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:08 +0000", "from_user": "AlKayeAlKaye", "from_user_id": 369977168, "from_user_id_str": "369977168", "from_user_name": "Alex Kanefsky", "geo": null, "id": 148839047110991870, "id_str": "148839047110991872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1534285237/alkayealkaye_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534285237/alkayealkaye_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@RickBeenham @hansguntersson @nikleson well have fun, I look forward to seeing some wrongness...", "to_user": "RickBeenham", "to_user_id": 44376580, "to_user_id_str": "44376580", "to_user_name": "Richard Beenham", "in_reply_to_status_id": 148825233862832130, "in_reply_to_status_id_str": "148825233862832129"}, +{"created_at": "Mon, 19 Dec 2011 18:56:08 +0000", "from_user": "jmpatsou", "from_user_id": 86991345, "from_user_id_str": "86991345", "from_user_name": "Jim", "geo": null, "id": 148839046184058880, "id_str": "148839046184058880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687148733/377567_2862574529404_1410939421_33165375_740431376_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687148733/377567_2862574529404_1410939421_33165375_740431376_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Being mean is fun #true_story", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:08 +0000", "from_user": "aeon_jeni", "from_user_id": 244081372, "from_user_id_str": "244081372", "from_user_name": "Jenn Belieber ", "geo": null, "id": 148839045785591800, "id_str": "148839045785591808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695804462/IMG00542-20111209-1808_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695804462/IMG00542-20111209-1808_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @justinbieber: In vegas feeling good. Time to make some fun happen.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:08 +0000", "from_user": "ChevieA2014", "from_user_id": 247933391, "from_user_id_str": "247933391", "from_user_name": "Chevonne Abrams", "geo": null, "id": 148839044988669950, "id_str": "148839044988669952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1650851144/new_pic1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650851144/new_pic1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@J_Pickman awe thats cool. im sorry i didn't reply back to your text message the last time. but yea just hit me up. have fun at your job", "to_user": "J_Pickman", "to_user_id": 160338770, "to_user_id_str": "160338770", "to_user_name": "Jenna", "in_reply_to_status_id": 148838710119637000, "in_reply_to_status_id_str": "148838710119636993"}, +{"created_at": "Mon, 19 Dec 2011 18:56:07 +0000", "from_user": "SeriousJest", "from_user_id": 26754657, "from_user_id_str": "26754657", "from_user_name": "Serious Jest", "geo": null, "id": 148839043751346180, "id_str": "148839043751346176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1163529224/Julio_in_Field_Expedient_Surgical_Unit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1163529224/Julio_in_Field_Expedient_Surgical_Unit_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Agree 200%! RT @MsNiikkiiB Waiting game is no fun!", "to_user": "MsNiikkiiB", "to_user_id": 35301364, "to_user_id_str": "35301364", "to_user_name": "Nikki.Beeee", "in_reply_to_status_id": 148837687758028800, "in_reply_to_status_id_str": "148837687758028800"}, +{"created_at": "Mon, 19 Dec 2011 18:56:07 +0000", "from_user": "bobolaoyeleke", "from_user_id": 54501249, "from_user_id_str": "54501249", "from_user_name": "B.O.B.O", "geo": null, "id": 148839043533250560, "id_str": "148839043533250560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1387703387/Lagos-20110608-00453_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1387703387/Lagos-20110608-00453_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "This christmas was already planned!!!!!!!!!.......watevr happnd to \"us\"....I'l just have fun my way then....and alone too!!!!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:07 +0000", "from_user": "_KiaBoo", "from_user_id": 197707323, "from_user_id_str": "197707323", "from_user_name": "Kia:)", "geo": null, "id": 148839041499009020, "id_str": "148839041499009024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674547923/7G6Gg987_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674547923/7G6Gg987_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "So I Watched @_90sKid Drink HALF HER WEIGHT In Sprite.! And The Other Half In Macaroni.! hahaha Skyped Her Ass Last Night:) It Was Fun.!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:07 +0000", "from_user": "QuirkyBean", "from_user_id": 56167650, "from_user_id_str": "56167650", "from_user_name": "Hazel", "geo": null, "id": 148839040114896900, "id_str": "148839040114896896", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1619146883/HazelFletcher_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619146883/HazelFletcher_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@andypiper Have fun :)", "to_user": "andypiper", "to_user_id": 786491, "to_user_id_str": "786491", "to_user_name": "Andy Piper", "in_reply_to_status_id": 148838837819416580, "in_reply_to_status_id_str": "148838837819416576"}, +{"created_at": "Mon, 19 Dec 2011 18:56:07 +0000", "from_user": "KeyloveSG", "from_user_id": 295175823, "from_user_id_str": "295175823", "from_user_name": "Kim Kibum (\\uAE40\\uAE30\\uBC94)", "geo": null, "id": 148839040089726980, "id_str": "148839040089726977", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1623265457/keylovesg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1623265457/keylovesg_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@enogercha @minholovesg alrights ^~^ have fun !", "to_user": "enogercha", "to_user_id": 80528399, "to_user_id_str": "80528399", "to_user_name": "RETNO WULANNINGSIH D", "in_reply_to_status_id": 148838097541541900, "in_reply_to_status_id_str": "148838097541541888"}, +{"created_at": "Mon, 19 Dec 2011 18:56:06 +0000", "from_user": "emzyxx__", "from_user_id": 243765780, "from_user_id_str": "243765780", "from_user_name": "Emma Clinton", "geo": null, "id": 148839039192145920, "id_str": "148839039192145920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1660395180/312590_2162548939772_1128041795_31945737_1935148389_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660395180/312590_2162548939772_1128041795_31945737_1935148389_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @tiahcollison: when a girl says \"have fun\", she really means \"have a horrible time without me\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:06 +0000", "from_user": "__BrownSuga", "from_user_id": 34079639, "from_user_id_str": "34079639", "from_user_name": "K-RAWWW ^_^", "geo": null, "id": 148839038789492740, "id_str": "148839038789492736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697133662/2011-12-16_11.14.56-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697133662/2011-12-16_11.14.56-1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@__PinkLIPSTICK HAPPY BIRTHDAY BRI! AYEEEEE TWERK SOMETHING ITS YOUR BIRTHDAY WHOOT WHOOT ! :) LOVE YA HAVE FUN. \\uE056\\uE056", "to_user": "__PinkLIPSTICK", "to_user_id": 215714537, "to_user_id_str": "215714537", "to_user_name": "December19", "in_reply_to_status_id": 148836071545896960, "in_reply_to_status_id_str": "148836071545896960"}, +{"created_at": "Mon, 19 Dec 2011 18:56:06 +0000", "from_user": "WonderTrendy", "from_user_id": 47129512, "from_user_id_str": "47129512", "from_user_name": "WonDer ThE RaSTA", "geo": null, "id": 148839038336507900, "id_str": "148839038336507905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691518079/NYC_trendy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691518079/NYC_trendy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I like weed...Sex with beautiful woman...and Having dangerous fun..Im a fucking rebel.. Sue Me", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:06 +0000", "from_user": "AlexWakeen", "from_user_id": 224521681, "from_user_id_str": "224521681", "from_user_name": "alex chumley", "geo": null, "id": 148839038223261700, "id_str": "148839038223261698", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1647111341/crespi_football_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647111341/crespi_football_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @BianchiMarino: Everyone's talking about how fun your night was. Shut up, It probably sucked.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:06 +0000", "from_user": "Shanti_Babi", "from_user_id": 120333909, "from_user_id_str": "120333909", "from_user_name": "Mermaid Chic", "geo": null, "id": 148839038160347140, "id_str": "148839038160347136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1672563518/Snapshot_20111126_15_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672563518/Snapshot_20111126_15_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "I bored now, working never fun jred", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:06 +0000", "from_user": "welsh_ci", "from_user_id": 34536928, "from_user_id_str": "34536928", "from_user_name": "Welsh da God", "geo": null, "id": 148839038114213900, "id_str": "148839038114213888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691663227/331455805_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691663227/331455805_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @Quada_NLovE: Girls just wanna have FUN \\u2665", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:06 +0000", "from_user": "scottt96", "from_user_id": 256827279, "from_user_id_str": "256827279", "from_user_name": "Joshua Martiez", "geo": null, "id": 148839038013542400, "id_str": "148839038013542400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1253976587/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1253976587/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@YourrJessica have Fun at your new school ;)", "to_user": "YourrJessica", "to_user_id": 207727361, "to_user_id_str": "207727361", "to_user_name": "Jessica Graciano", "in_reply_to_status_id": 148838674027655170, "in_reply_to_status_id_str": "148838674027655168"}, +{"created_at": "Mon, 19 Dec 2011 18:56:05 +0000", "from_user": "Professor__J", "from_user_id": 123957499, "from_user_id_str": "123957499", "from_user_name": "SmoKA\\uF8FF", "geo": null, "id": 148839035123662850, "id_str": "148839035123662848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682266043/310298_10150861255005858_617220857_21356410_1992112800_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682266043/310298_10150861255005858_617220857_21356410_1992112800_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@mclyte just joined the site !! Approve me so I can get in on the fun !! lol", "to_user": "mclyte", "to_user_id": 15122826, "to_user_id_str": "15122826", "to_user_name": "MC Lyte", "in_reply_to_status_id": 148837576466378750, "in_reply_to_status_id_str": "148837576466378752"}, +{"created_at": "Mon, 19 Dec 2011 18:56:05 +0000", "from_user": "FLGemini67", "from_user_id": 246004350, "from_user_id_str": "246004350", "from_user_name": "Tom Allen", "geo": null, "id": 148839034553241600, "id_str": "148839034553241602", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1654428188/IMGP2733_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654428188/IMGP2733_normal.JPG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@TheLisaSparks looks like fun!", "to_user": "TheLisaSparks", "to_user_id": 23172950, "to_user_id_str": "23172950", "to_user_name": "Lisa Sparks", "in_reply_to_status_id": 148837065121992700, "in_reply_to_status_id_str": "148837065121992704"}, +{"created_at": "Mon, 19 Dec 2011 18:56:05 +0000", "from_user": "MeliB78", "from_user_id": 440928674, "from_user_id_str": "440928674", "from_user_name": "Melissa Bull", "geo": null, "id": 148839033160740860, "id_str": "148839033160740866", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@mccordalex that's never fun! i have been needing to do that an more but not alot of energy to do it!", "to_user": "mccordalex", "to_user_id": 43627602, "to_user_id_str": "43627602", "to_user_name": "Alex McCord", "in_reply_to_status_id": 148838180467118080, "in_reply_to_status_id_str": "148838180467118081"}, +{"created_at": "Mon, 19 Dec 2011 18:56:05 +0000", "from_user": "Follow_Dimpz", "from_user_id": 151304351, "from_user_id_str": "151304351", "from_user_name": "Pablito Jimenez", "geo": null, "id": 148839032258957300, "id_str": "148839032258957312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1628428473/009_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628428473/009_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I'm sorry too all the people I made fun of for being sick -.- fuck man Karmas a B I T C H :// now I'm sick grrr ...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:04 +0000", "from_user": "priest_morgan", "from_user_id": 435361012, "from_user_id_str": "435361012", "from_user_name": "Morgan Priest", "geo": null, "id": 148839030325395460, "id_str": "148839030325395456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694012426/WkQC37mI_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694012426/WkQC37mI_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I think I have to much fun home alone .....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:04 +0000", "from_user": "cathymcfly", "from_user_id": 27951352, "from_user_id_str": "27951352", "from_user_name": "Winkie The House Elf", "geo": null, "id": 148839030052753400, "id_str": "148839030052753409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702444774/6U5V9zxr_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702444774/6U5V9zxr_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "English test tomorrow. Should be fun! (not really :/..)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:04 +0000", "from_user": "theTaanZie", "from_user_id": 158388079, "from_user_id_str": "158388079", "from_user_name": "Bitch I'm TAYLOR'D", "geo": null, "id": 148839029524271100, "id_str": "148839029524271105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1683531201/IMG00608-20110907-1606_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683531201/IMG00608-20110907-1606_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Rampz LOL nooo. Search fun*dmental - playground on YouTube.", "to_user": "Rampz", "to_user_id": 25394959, "to_user_id_str": "25394959", "to_user_name": "Carl \\uE326", "in_reply_to_status_id": 148837843790340100, "in_reply_to_status_id_str": "148837843790340096"}, +{"created_at": "Mon, 19 Dec 2011 18:56:04 +0000", "from_user": "_davlian", "from_user_id": 139408581, "from_user_id_str": "139408581", "from_user_name": "DAVid yuLIAN", "geo": null, "id": 148839028995784700, "id_str": "148839028995784705", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1562728668/David_and_..._normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1562728668/David_and_..._normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "I know what i should do with my story. It will be fun. :)))", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:03 +0000", "from_user": "queenbreanna9", "from_user_id": 226670926, "from_user_id_str": "226670926", "from_user_name": "breanna sturdivant", "geo": null, "id": 148839026802163700, "id_str": "148839026802163713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691445805/1L7KY8JY_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691445805/1L7KY8JY_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@shove09: I think I had too much fun @ #STATIK last night back hurting and all\" we all did :))", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:03 +0000", "from_user": "MeghanDubuc", "from_user_id": 301045630, "from_user_id_str": "301045630", "from_user_name": "Meghan Dubuc", "geo": null, "id": 148839026764427260, "id_str": "148839026764427264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680793865/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680793865/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Joanna_banana95 @aLAXis05 love you girls:) had fun today!!!", "to_user": "Joanna_banana95", "to_user_id": 369601147, "to_user_id_str": "369601147", "to_user_name": "Joanna Nylander"}, +{"created_at": "Mon, 19 Dec 2011 18:56:03 +0000", "from_user": "hutripamungkas", "from_user_id": 107396685, "from_user_id_str": "107396685", "from_user_name": "Happy Hutri P.\\n", "geo": null, "id": 148839026210770940, "id_str": "148839026210770945", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1600456833/328457281_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600456833/328457281_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @my_supersoccer: Yang udah maen, mana suaranya? Yang belum, sekali lagi, ini link-nya: http://t.co/X3Ar4UyV #SuperSoccerFantasyFootball", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:03 +0000", "from_user": "AndyMizerowski", "from_user_id": 305702244, "from_user_id_str": "305702244", "from_user_name": "Andy Mizerowski", "geo": null, "id": 148839025543876600, "id_str": "148839025543876610", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695250659/FtC8Gu9p_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695250659/FtC8Gu9p_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "#fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:03 +0000", "from_user": "soozeypooze152", "from_user_id": 262967017, "from_user_id_str": "262967017", "from_user_name": "Susan So", "geo": null, "id": 148839023757107200, "id_str": "148839023757107200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1266393975/coo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266393975/coo_normal.jpg", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "@tstambaugh24 bc you do something fun and relaxing all the time and I read these tweets while at work wanting to die. Sigh, switch me", "to_user": "tstambaugh24", "to_user_id": 315198646, "to_user_id_str": "315198646", "to_user_name": "Tiff Stambaugh", "in_reply_to_status_id": 148836324227547140, "in_reply_to_status_id_str": "148836324227547136"}, +{"created_at": "Mon, 19 Dec 2011 18:56:02 +0000", "from_user": "K_JuneBug", "from_user_id": 247443075, "from_user_id_str": "247443075", "from_user_name": "Katelyn June Hailey", "geo": null, "id": 148839021865476100, "id_str": "148839021865476096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1611054684/khailey_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611054684/khailey_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "MT @ThePacificOcean Check out these fun, hands-on ocean-themed events coming up at @Birch_Aquarium : http://t.co/E2krPhVL #ocean", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:02 +0000", "from_user": "suzirooo", "from_user_id": 101024191, "from_user_id_str": "101024191", "from_user_name": "Suzi Roocroft", "geo": null, "id": 148839021529939970, "id_str": "148839021529939968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1383322662/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1383322662/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ProfBrianCox sometimes think the schedulers underestimate our thirst 4 knowledge ..you did #wonders with the subject and made it fun!", "to_user": "ProfBrianCox", "to_user_id": 17939037, "to_user_id_str": "17939037", "to_user_name": "Brian Cox", "in_reply_to_status_id": 148531254772514800, "in_reply_to_status_id_str": "148531254772514816"}, +{"created_at": "Mon, 19 Dec 2011 18:56:02 +0000", "from_user": "chanchanDIOR", "from_user_id": 83667310, "from_user_id_str": "83667310", "from_user_name": "Chanel Dior", "geo": null, "id": 148839021446037500, "id_str": "148839021446037505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701239556/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701239556/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@_Riiches: Don't worry yur invited!! We need a drinking night!! RT @chanchanDIOR: @_Riiches sounds like fun : )\\u201D. Yippie!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:02 +0000", "from_user": "Bitch_itsAngie", "from_user_id": 350008406, "from_user_id_str": "350008406", "from_user_name": "Angie Berrelleza ", "geo": null, "id": 148839020808507400, "id_str": "148839020808507392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1638188383/IMG00396-20111111-1912_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638188383/IMG00396-20111111-1912_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Yesterday was fun :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:02 +0000", "from_user": "Nafizaa", "from_user_id": 62152289, "from_user_id_str": "62152289", "from_user_name": "Nafiza Azad", "geo": null, "id": 148839020762374140, "id_str": "148839020762374144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1443391524/vh_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1443391524/vh_copy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@being_rida @Eden_PtC @bee_muses @aleezarauf I would take umbrage at the label but I'm feeling nice today. Besides, getting older is fun.", "to_user": "being_rida", "to_user_id": 257691725, "to_user_id_str": "257691725", "to_user_name": "Rida", "in_reply_to_status_id": 148838386164183040, "in_reply_to_status_id_str": "148838386164183040"}, +{"created_at": "Mon, 19 Dec 2011 18:56:02 +0000", "from_user": "ItsOhMonna", "from_user_id": 213004527, "from_user_id_str": "213004527", "from_user_name": "Monaaa Artner", "geo": null, "id": 148839020070314000, "id_str": "148839020070313984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699019651/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699019651/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "single bells,\\nsingle bells,\\nsingle all the way..\\noh how fun it is to watch cute couples every day -.-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:01 +0000", "from_user": "Shaikha_MRM", "from_user_id": 215894702, "from_user_id_str": "215894702", "from_user_name": "Shaikha Al Maktoum", "geo": null, "id": 148839017356591100, "id_str": "148839017356591104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1420844810/shaikha_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1420844810/shaikha_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Had fun with @Al_MaKnToShA and @no0ony1325 <3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:01 +0000", "from_user": "Lou4fun", "from_user_id": 32614065, "from_user_id_str": "32614065", "from_user_name": "Lou4Fun \\u2714", "geo": null, "id": 148839016823918600, "id_str": "148839016823918592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694633206/Lou4fun_Logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694633206/Lou4fun_Logo_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Never spend too long in front of a mirror it can only hold disappointment. It is my belief my mirror may of been purchased from a fun fair", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:00 +0000", "from_user": "abweato", "from_user_id": 351050953, "from_user_id_str": "351050953", "from_user_name": "ab ", "geo": null, "id": 148839014336700400, "id_str": "148839014336700417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1665942140/me_rhiannaaaa_156_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665942140/me_rhiannaaaa_156_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@lyamwilliams97 aw:-(( they look quite fun doe", "to_user": "lyamwilliams97", "to_user_id": 439177866, "to_user_id_str": "439177866", "to_user_name": "Lyam Williams", "in_reply_to_status_id": 148838294636081150, "in_reply_to_status_id_str": "148838294636081152"}, +{"created_at": "Mon, 19 Dec 2011 18:56:00 +0000", "from_user": "BeesKneesSweets", "from_user_id": 140097891, "from_user_id_str": "140097891", "from_user_name": "Bee's Knees Sweets", "geo": null, "id": 148839013317492740, "id_str": "148839013317492736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1457357706/BK_logo_bright_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1457357706/BK_logo_bright_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "We had so much fun yesterday that we decided to return to Stardust Video & Coffee from 6-10pm for the lovely... http://t.co/v15UB601", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:00 +0000", "from_user": "Aleksanderpherp", "from_user_id": 260826135, "from_user_id_str": "260826135", "from_user_name": "\\u00AF\\_(\\u30C4)_/\\u00AF", "geo": null, "id": 148839013225201660, "id_str": "148839013225201665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702421212/cropped_snapshot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702421212/cropped_snapshot_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@itsmeghyo x'D Some of it is actually fun though, like mechanics", "to_user": "itsmeghyo", "to_user_id": 279663469, "to_user_id_str": "279663469", "to_user_name": "Dumbledork.", "in_reply_to_status_id": 148838490682040320, "in_reply_to_status_id_str": "148838490682040320"}, +{"created_at": "Mon, 19 Dec 2011 18:56:00 +0000", "from_user": "Aakash_2108", "from_user_id": 347774908, "from_user_id_str": "347774908", "from_user_name": "Aakash Sarraf ", "geo": null, "id": 148839011102883840, "id_str": "148839011102883840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1532691563/IMG-20110907-00626_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1532691563/IMG-20110907-00626_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@Sakshikumar Ua Too too funny..as I hav been watching 4 so many days..keep it up n hav gr8 fun..hope u njoying weather out dere in #Delhi", "to_user": "Sakshikumar", "to_user_id": 39961479, "to_user_id_str": "39961479", "to_user_name": "Sakshi Kumar", "in_reply_to_status_id": 148838613218635780, "in_reply_to_status_id_str": "148838613218635776"}, +{"created_at": "Mon, 19 Dec 2011 18:55:59 +0000", "from_user": "MissKhalila", "from_user_id": 138203932, "from_user_id_str": "138203932", "from_user_name": "Khalila", "geo": null, "id": 148839009953652740, "id_str": "148839009953652736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687234701/MissKhalila_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687234701/MissKhalila_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "RT @RosaB213: Eaves dropping on people speaking other languages is always fun for me. #multilingual", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:59 +0000", "from_user": "ultra_violet7", "from_user_id": 264329498, "from_user_id_str": "264329498", "from_user_name": "Mubanga mweemba", "geo": null, "id": 148839009072840700, "id_str": "148839009072840704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1679260543/377781_157592681007190_100002693781370_176129_1223684341_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679260543/377781_157592681007190_100002693781370_176129_1223684341_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@roro_rosiie saturday was so much fun still doing signals and pocket full of sunshine is stuck in my head :')", "to_user": "roro_rosiie", "to_user_id": 411721484, "to_user_id_str": "411721484", "to_user_name": "Roisin Donnelly"}, +{"created_at": "Mon, 19 Dec 2011 18:55:59 +0000", "from_user": "rev313", "from_user_id": 158779335, "from_user_id_str": "158779335", "from_user_name": "Aidden Keli", "geo": null, "id": 148839008099774460, "id_str": "148839008099774464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1428048829/twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1428048829/twitter_normal.png", "source": "<a href="http://fun.ly" rel="nofollow">fun.ly</a>", "text": "Fresh From http://t.co/ycaphLqM today http://t.co/26blXpHf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:59 +0000", "from_user": "pmr_name", "from_user_id": 241871853, "from_user_id_str": "241871853", "from_user_name": "Satis Sirius", "geo": null, "id": 148839007126700030, "id_str": "148839007126700034", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1571555653/Transnistria2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1571555653/Transnistria2_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "For All - Fun & Free ; Photo - \\u041F\\u0440\\u043E\\u0441\\u0442\\u043E \\u0437\\u0430\\u043C\\u0435\\u0442\\u043A\\u0438: \\u041B\\u044E\\u0431\\u043B\\u044E \\u0444\\u043E\\u0442\\u043E - love http://t.co/CUmTnaNO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:58 +0000", "from_user": "Jojofonggg", "from_user_id": 63139785, "from_user_id_str": "63139785", "from_user_name": "Joreen Emelda (:", "geo": null, "id": 148839002433265660, "id_str": "148839002433265664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702604186/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702604186/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@BaboGum aiya I never jailbreak. I know the code red one fun right :(", "to_user": "BaboGum", "to_user_id": 153459937, "to_user_id_str": "153459937", "to_user_name": "Samuel Lim Wei Siang", "in_reply_to_status_id": 148838741883109380, "in_reply_to_status_id_str": "148838741883109377"}, +{"created_at": "Mon, 19 Dec 2011 18:55:57 +0000", "from_user": "kallel_3Fs", "from_user_id": 241819758, "from_user_id_str": "241819758", "from_user_name": "lucas kallel", "geo": null, "id": 148839001791545340, "id_str": "148839001791545344", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691990571/IMG10092_-_C_pia__2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691990571/IMG10092_-_C_pia__2__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "O corinthians n\\u00E3o ganhou um mundial, ganhou um torneio de ver\\u00E3o...Quase uma \"SEMANA FUN\" by: Joedis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:57 +0000", "from_user": "JuiceDatThangJG", "from_user_id": 88772247, "from_user_id_str": "88772247", "from_user_name": "Cashmere Gordon", "geo": null, "id": 148839001229508600, "id_str": "148839001229508609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687683112/jggg_foolin_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687683112/jggg_foolin_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "ummmmmm no @bkaTinaBina i had fun tho..", "to_user": "bkaTinaBina", "to_user_id": 41243490, "to_user_id_str": "41243490", "to_user_name": "AKT", "in_reply_to_status_id": 148837273964781570, "in_reply_to_status_id_str": "148837273964781569"}, +{"created_at": "Mon, 19 Dec 2011 18:55:57 +0000", "from_user": "riRinVil", "from_user_id": 127667700, "from_user_id_str": "127667700", "from_user_name": "RinRin ViLoL", "geo": null, "id": 148838999740518400, "id_str": "148838999740518400", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1648789714/316172_2129325994299_1280444365_2829895_1296529887_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648789714/316172_2129325994299_1280444365_2829895_1296529887_n_normal.jpg", "source": "<a href="http://tuitwit.com" rel="nofollow">TuiTwit</a>", "text": "nah 30% na Lg bru deh tmn cwe.. itu pun msh bs k itung brp yg bs gw ajak sharing,, curhat n have fun..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:57 +0000", "from_user": "pretty_girl_cae", "from_user_id": 281774930, "from_user_id_str": "281774930", "from_user_name": "luneira jackson", "geo": null, "id": 148838999673405440, "id_str": "148838999673405440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1659613225/Snapshot_20111126_10_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659613225/Snapshot_20111126_10_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iEnriqueSays: Living Single may seem fun while it lasts but at the end of the day everyone wants someone to love.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:57 +0000", "from_user": "Sarimqe", "from_user_id": 430056373, "from_user_id_str": "430056373", "from_user_name": "Sari Graf", "geo": null, "id": 148838999476285440, "id_str": "148838999476285441", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1677539834/qul54p554t_130872286-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677539834/qul54p554t_130872286-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Fun Flamingo Boppers: Fun Flamingo Boppers. Fun tropical pink flamingo headband boppers. Wear them with our Flam... http://t.co/Jxrwmzdd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:57 +0000", "from_user": "FishyCrackerzzz", "from_user_id": 316685791, "from_user_id_str": "316685791", "from_user_name": "BREElicious", "geo": null, "id": 148838999065235460, "id_str": "148838999065235456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698712391/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698712391/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@MsClaudiaCG lmaooo it was fun,I have a screenshot from it http://t.co/vDJh1aoP", "to_user": "MsClaudiaCG", "to_user_id": 350608821, "to_user_id_str": "350608821", "to_user_name": "Cl\\u00E1udia Yaw Hecox :)", "in_reply_to_status_id": 148838818676617200, "in_reply_to_status_id_str": "148838818676617216"}, +{"created_at": "Mon, 19 Dec 2011 18:55:56 +0000", "from_user": "DJfizzlemix", "from_user_id": 284566865, "from_user_id_str": "284566865", "from_user_name": "iria osagie", "geo": null, "id": 148838997475598340, "id_str": "148838997475598336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1548211365/wanna_20shoot_20masef2go_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1548211365/wanna_20shoot_20masef2go_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @tegaking: Had madt fun @ my place today..tnks to @DJfizzlemix @kingkolombo hadiza issac.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:56 +0000", "from_user": "Ariannahnf", "from_user_id": 440161454, "from_user_id_str": "440161454", "from_user_name": "Arianna Quattrocchi", "geo": null, "id": 148838997412679680, "id_str": "148838997412679682", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700452703/large_KMKZRQRLLCBLE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700452703/large_KMKZRQRLLCBLE_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Networking Success: How to Turn Business & Financial Relationships into Fun & Profit: Networking is the key to o... http://t.co/KHubosCN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:56 +0000", "from_user": "Delilaheqt", "from_user_id": 431771204, "from_user_id_str": "431771204", "from_user_name": "Delilah Ryerson", "geo": null, "id": 148838997291057150, "id_str": "148838997291057153", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681178560/eq5duz55si_103673847_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681178560/eq5duz55si_103673847_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "CLINTON SCALE TABLES Zoo bus scale table Item# 7822: Clinton Industries Fun Series Pediatric Scale Tables featur... http://t.co/hBGHOPle", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:56 +0000", "from_user": "Ernie4Pres", "from_user_id": 143695147, "from_user_id_str": "143695147", "from_user_name": "Ernie Child", "geo": null, "id": 148838996691271680, "id_str": "148838996691271681", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1302705913/IMG_0316_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1302705913/IMG_0316_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "it's all fun and games till someone gets pregnant...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:56 +0000", "from_user": "xAmberLeighx", "from_user_id": 27489828, "from_user_id_str": "27489828", "from_user_name": "Amber-Leigh Jones", "geo": null, "id": 148838996041150460, "id_str": "148838996041150464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1578874658/MEEE_red_lippy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1578874658/MEEE_red_lippy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "i miss bein young n having fun, lifes so borin these days!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:56 +0000", "from_user": "_jamieshepherd_", "from_user_id": 282722958, "from_user_id_str": "282722958", "from_user_name": "Jamie Shepherd", "geo": null, "id": 148838993700720640, "id_str": "148838993700720640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1528711356/sja_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1528711356/sja_normal.jpg", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "RT @MarahCAR: I wish I lived when there was no cell phones, facebook, twitter. Everything seemed so much more fun, relaxed, and waayyy less drama.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:55 +0000", "from_user": "BLuE_EsPaDA", "from_user_id": 376279076, "from_user_id_str": "376279076", "from_user_name": "ESPADA", "geo": null, "id": 148838993205796860, "id_str": "148838993205796864", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701699735/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701699735/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@itsmeezayed same here had fun w/ U =D !!!", "to_user": "itsmeezayed", "to_user_id": 317229364, "to_user_id_str": "317229364", "to_user_name": "zayed bin desmal", "in_reply_to_status_id": 148836053682360320, "in_reply_to_status_id_str": "148836053682360320"}, +{"created_at": "Mon, 19 Dec 2011 18:55:55 +0000", "from_user": "AyyYo_itsbreezy", "from_user_id": 190424000, "from_user_id_str": "190424000", "from_user_name": "sabrina perez", "geo": null, "id": 148838992962535420, "id_str": "148838992962535424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697573886/brinabobinabitch_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697573886/brinabobinabitch_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@ENCsunshine @MichaelJIsaac yessss that would be so much fun(:", "to_user": "ENCsunshine", "to_user_id": 128937859, "to_user_id_str": "128937859", "to_user_name": "Emerald Contreras", "in_reply_to_status_id": 148830453531541500, "in_reply_to_status_id_str": "148830453531541504"}, +{"created_at": "Mon, 19 Dec 2011 18:55:55 +0000", "from_user": "graizie69", "from_user_id": 361849385, "from_user_id_str": "361849385", "from_user_name": "Agono Grace", "geo": null, "id": 148838992832495600, "id_str": "148838992832495616", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1534409322/244160_220651897962748_100000538192882_851520_6375541_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534409322/244160_220651897962748_100000538192882_851520_6375541_o_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@Rockshield99 kk....av fun", "to_user": "Rockshield99", "to_user_id": 237724460, "to_user_id_str": "237724460", "to_user_name": "Rockshield Kurtzman", "in_reply_to_status_id": 148837667822518270, "in_reply_to_status_id_str": "148837667822518273"}, +{"created_at": "Mon, 19 Dec 2011 18:55:55 +0000", "from_user": "Penny_Charlie", "from_user_id": 224898252, "from_user_id_str": "224898252", "from_user_name": "Lindsey", "geo": null, "id": 148838992731844600, "id_str": "148838992731844608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1338109861/Twitter1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1338109861/Twitter1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Wrapped up some work, now on to the fun stuff! Gathering up ingredients for cookies and cinnamon rolls! :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:55 +0000", "from_user": "mamoma2", "from_user_id": 431832226, "from_user_id_str": "431832226", "from_user_name": "Maryam al-Qaffas", "geo": null, "id": 148838992513740800, "id_str": "148838992513740800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702061432/CaptureNux_202011-12-19_2015_3B43_3B43_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702061432/CaptureNux_202011-12-19_2015_3B43_3B43_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Had Fun with\\u2665@D_ashkanani @Fatma_Dashtii @HayaAlsheikh. Love u Girls and thnxxx ;***", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:55 +0000", "from_user": "KANG_Moe", "from_user_id": 353447718, "from_user_id_str": "353447718", "from_user_name": "Moe", "geo": null, "id": 148838992442433540, "id_str": "148838992442433536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1509235356/me_in_shades_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509235356/me_in_shades_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@KtotheG21 well let's bring back the summer time fun and hit sac together", "to_user": "KtotheG21", "to_user_id": 299310809, "to_user_id_str": "299310809", "to_user_name": "Kevin Grant", "in_reply_to_status_id": 148830338737635330, "in_reply_to_status_id_str": "148830338737635328"}, +{"created_at": "Mon, 19 Dec 2011 18:55:55 +0000", "from_user": "_ConcreteRose1", "from_user_id": 304834408, "from_user_id_str": "304834408", "from_user_name": "BeautyNSneakers", "geo": null, "id": 148838991381274620, "id_str": "148838991381274624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701108183/399819_10150466991542731_180830147730_8562355_1560027901_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701108183/399819_10150466991542731_180830147730_8562355_1560027901_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "HAPPY 21st @PWILDDD HOPE YOU HAVE FUN!!!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:55 +0000", "from_user": "LornaSuzuki", "from_user_id": 46544514, "from_user_id_str": "46544514", "from_user_name": "Lorna Suzuki", "geo": null, "id": 148838990269792260, "id_str": "148838990269792256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/259416885/Lorna_Suzuki_COLOUR_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/259416885/Lorna_Suzuki_COLOUR_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@catconnor Enjoy this 1/2 hour & have fun tackling the edits!", "to_user": "catconnor", "to_user_id": 16060628, "to_user_id_str": "16060628", "to_user_name": "Cat Connor"}, +{"created_at": "Mon, 19 Dec 2011 18:55:55 +0000", "from_user": "Ciara13x", "from_user_id": 25585204, "from_user_id_str": "25585204", "from_user_name": "Ciara ", "geo": null, "id": 148838989800017920, "id_str": "148838989800017922", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1659585891/Ciara13x_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659585891/Ciara13x_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "had fun ice skating with the school:)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:54 +0000", "from_user": "discocarol", "from_user_id": 21820721, "from_user_id_str": "21820721", "from_user_name": "Carol McLovin", "geo": null, "id": 148838988613038080, "id_str": "148838988613038080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1319060640/v3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1319060640/v3_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@IamRicoLove: Pretty girls have the most fun..... #TTLO\\u201D <--- Truth :))", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:54 +0000", "from_user": "EmilyNave12", "from_user_id": 14836138, "from_user_id_str": "14836138", "from_user_name": "Emily Nave", "geo": null, "id": 148838987593814000, "id_str": "148838987593814016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1447599853/emily_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1447599853/emily_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "End of the year lists are always fun to read -> 10 buzzwords that need to vanish in 2012 \\n http://t.co/X8KzVxj5 #resolution", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:54 +0000", "from_user": "thebradking", "from_user_id": 1176551, "from_user_id_str": "1176551", "from_user_name": "Brad King", "geo": null, "id": 148838987052748800, "id_str": "148838987052748800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1607759930/Brad_web_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607759930/Brad_web_normal.JPG", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Having arguments abt ideas I didn't write is always fun: \"yes, I agree if someone wrote that they would be wrong. Where did you read that?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:54 +0000", "from_user": "bellemakinano", "from_user_id": 360454276, "from_user_id_str": "360454276", "from_user_name": "Belle Tambis. \\u2665", "geo": null, "id": 148838985970614270, "id_str": "148838985970614272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689108849/7b2a3c7f58b3c410af88ad66fb98ff9217a64421_wmeg_00001_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689108849/7b2a3c7f58b3c410af88ad66fb98ff9217a64421_wmeg_00001_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @HeyItsMeGelli_A: Had fun today with @bellemakinano @mary_joy18 and @Atun_Ky ! Too bad wala si Kaye.. Super fun... :))", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:53 +0000", "from_user": "bleexox", "from_user_id": 206424404, "from_user_id_str": "206424404", "from_user_name": "Brittney Vaughan", "geo": null, "id": 148838984573915140, "id_str": "148838984573915136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1311443100/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1311443100/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Real couples can make fun of eachother like @EvelynLozada & @ochocinco & still be completely in love. They crack me up!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:53 +0000", "from_user": "ebb_and_flo", "from_user_id": 279401453, "from_user_id_str": "279401453", "from_user_name": "ebony...the tall one", "geo": null, "id": 148838983248523260, "id_str": "148838983248523264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1657426178/picnik_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657426178/picnik_3_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "so you think im crazy? oh ok. thts fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:53 +0000", "from_user": "SeibertRealEst", "from_user_id": 223127420, "from_user_id_str": "223127420", "from_user_name": "Dagmar Seibert", "geo": null, "id": 148838983160430600, "id_str": "148838983160430592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1496257134/hseibert_01_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1496257134/hseibert_01_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Overwhelming Villa! Quail West Grotto Estate w/ private fun-time backyard. Reduced by $301,000 - http://t.co/MRi0BKVg Call: (239)-265-5755", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:53 +0000", "from_user": "michikohoriuchi", "from_user_id": 388129159, "from_user_id_str": "388129159", "from_user_name": "Inna Horiuchi", "geo": null, "id": 148838981340110850, "id_str": "148838981340110848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693076283/michikohoriuchi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693076283/michikohoriuchi_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Had fun with @antonettedngca and @DorothyBelamide! \\u2665", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:53 +0000", "from_user": "_MyNameIsKARMA_", "from_user_id": 133979252, "from_user_id_str": "133979252", "from_user_name": "\\u2661 OVOXO \\u2661", "geo": null, "id": 148838981008760830, "id_str": "148838981008760832", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1686504708/profile_image_1323586635176_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686504708/profile_image_1323586635176_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @eatMyLays_: we Had Fun @imHER_GIRL @SmokeME_Rite @dropTOP_lexus @KanubyIsKixxx_ @_MyNameIsKARMA_ @troy_bestfriend @simplyXmunchie_ @EriniqueMia_!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:52 +0000", "from_user": "Down4Whatevr", "from_user_id": 28426526, "from_user_id_str": "28426526", "from_user_name": "LJ ", "geo": null, "id": 148838978840305660, "id_str": "148838978840305665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1665413417/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665413417/profile_normal.png", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @ImHopel3ss: I just blocked 1 of my real life friends on here and reported them for spam, that was fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:52 +0000", "from_user": "D0MINIQU3MARI3", "from_user_id": 128623118, "from_user_id_str": "128623118", "from_user_name": "Dominique Gonzalez", "geo": null, "id": 148838978395717630, "id_str": "148838978395717632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1676207997/D0MINIQU3MARI3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676207997/D0MINIQU3MARI3_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@WhitneyFranze how dare you make fun of him, then quote him", "to_user": "WhitneyFranze", "to_user_id": 316763955, "to_user_id_str": "316763955", "to_user_name": "Whitney Franze", "in_reply_to_status_id": 148838260758683650, "in_reply_to_status_id_str": "148838260758683648"}, +{"created_at": "Mon, 19 Dec 2011 18:55:52 +0000", "from_user": "Twex_him_good", "from_user_id": 378200054, "from_user_id_str": "378200054", "from_user_name": "chelley", "geo": null, "id": 148838977913368580, "id_str": "148838977913368576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679424992/TInEzs63_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679424992/TInEzs63_normal", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @TRINArockstarr: Bad boys ain't no good.. Good boys ain't no fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:51 +0000", "from_user": "Mari_belle91", "from_user_id": 374309084, "from_user_id_str": "374309084", "from_user_name": "Mariama Barry", "geo": null, "id": 148838972938911740, "id_str": "148838972938911744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1544894861/photo_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544894861/photo_normal", "source": "<a href="http://www.lg.com" rel="nofollow">LG Phone</a>", "text": "All I can do is to laugh at your ass cause its really fun that u talking shit n the people u tell dnt give a fuck wat u say so pathetic ....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:55:50 +0000", "from_user": "leggomybego", "from_user_id": 298261475, "from_user_id_str": "298261475", "from_user_name": "Grace Begovich", "geo": null, "id": 148838970392969200, "id_str": "148838970392969216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1661853566/flowererer_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661853566/flowererer_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@NoAverageMonday he's a really nice kid. You on the other hand... wow. If finding pictures of people to make fun if on the internet is what", "to_user": "NoAverageMonday", "to_user_id": 326447391, "to_user_id_str": "326447391", "to_user_name": "Austin Monday", "in_reply_to_status_id": 148811641880973300, "in_reply_to_status_id_str": "148811641880973313"}, +{"created_at": "Mon, 19 Dec 2011 18:55:50 +0000", "from_user": "nokemono42", "from_user_id": 15887391, "from_user_id_str": "15887391", "from_user_name": "Joey", "geo": null, "id": 148838968664928260, "id_str": "148838968664928256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1343393143/IMG_0125_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1343393143/IMG_0125_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "People who text fast is fun to watch, but after playing with the Japanese kana input on my keyboard I am blow way by its genius.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:48 +0000", "from_user": "Loui_BABY", "from_user_id": 183864942, "from_user_id_str": "183864942", "from_user_name": "Lou\\u270C", "geo": null, "id": 148838963661115400, "id_str": "148838963661115392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1672472185/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672472185/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @CanibusBeauty: @Loui_BABY @hbic45th Lol ok :-) Yay!!! This is going to be fuN!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:48 +0000", "from_user": "TasteMiThoughtx", "from_user_id": 250451681, "from_user_id_str": "250451681", "from_user_name": "Fanay Tyler", "geo": null, "id": 148838962818060300, "id_str": "148838962818060289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699127108/1324166932073_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699127108/1324166932073_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u00AB@GrevyGrey Things are more fun to do when your not supposed to be doing it!\\u00BB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:48 +0000", "from_user": "CarleenBohnsack", "from_user_id": 389434702, "from_user_id_str": "389434702", "from_user_name": "Carleen Bohnsack", "geo": null, "id": 148838961207451650, "id_str": "148838961207451648", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699444752/13_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699444752/13_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "- #porn #porno #sex #video #videos #pussy #tits #milf #teen - Retro Lesbian Girls Fun Ek8VBBAR http://t.co/xBfeRchm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:48 +0000", "from_user": "BombGirl", "from_user_id": 23476388, "from_user_id_str": "23476388", "from_user_name": "BombGirl", "geo": null, "id": 148838960418930700, "id_str": "148838960418930689", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1126191392/bomb100av_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1126191392/bomb100av_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "that was a long track name ^^ it's a great fun track", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:48 +0000", "from_user": "Radiochum", "from_user_id": 433821639, "from_user_id_str": "433821639", "from_user_name": "Radio Chum", "geo": null, "id": 148838960225976320, "id_str": "148838960225976320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1686901085/radio-sup-chum_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686901085/radio-sup-chum_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "It's more fun to SHARE Chum with your friends...one more makes 100 CHUM FRIENDS!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:47 +0000", "from_user": "cakeforbrkfst", "from_user_id": 116026486, "from_user_id_str": "116026486", "from_user_name": "vonlajuan.", "geo": null, "id": 148838959710089200, "id_str": "148838959710089216", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701246146/456394243_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701246146/456394243_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Niisa_bitchhh have fun (:", "to_user": "Niisa_bitchhh", "to_user_id": 145816788, "to_user_id_str": "145816788", "to_user_name": "Neezy.", "in_reply_to_status_id": 148838341595512830, "in_reply_to_status_id_str": "148838341595512832"}, +{"created_at": "Mon, 19 Dec 2011 18:55:47 +0000", "from_user": "EscapeSurfSkool", "from_user_id": 135904348, "from_user_id_str": "135904348", "from_user_name": "Will Hinton", "geo": null, "id": 148838958707654660, "id_str": "148838958707654657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/842995817/IMG_2310_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/842995817/IMG_2310_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Just launched our new blog, cheers to Matt Rodwell for setting it all up. The waves have been super fun and it's mild down here !!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:47 +0000", "from_user": "Thani_AlSuwaidi", "from_user_id": 285219689, "from_user_id_str": "285219689", "from_user_name": "Thani Al Suwaidi", "geo": null, "id": 148838957638090750, "id_str": "148838957638090753", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700972984/Dubai-20111021-00723_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700972984/Dubai-20111021-00723_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Had Fun . . Salamaaat @3lawy100 !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:47 +0000", "from_user": "TheWinterWitch", "from_user_id": 301140689, "from_user_id_str": "301140689", "from_user_name": "Lauren Lanni", "geo": null, "id": 148838956451119100, "id_str": "148838956451119106", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1370070467/Lauren_Photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1370070467/Lauren_Photo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ABLiterary @notnotdave You should! We had so much fun and it's only 45 miles from our house. So it was a really quick trip.", "to_user": "ABLiterary", "to_user_id": 351861227, "to_user_id_str": "351861227", "to_user_name": "Annie Bomke", "in_reply_to_status_id": 148838390643687420, "in_reply_to_status_id_str": "148838390643687425"}, +{"created_at": "Mon, 19 Dec 2011 18:55:46 +0000", "from_user": "alyssa_alz", "from_user_id": 183845684, "from_user_id_str": "183845684", "from_user_name": "Alyssa Alzate", "geo": null, "id": 148838954844700670, "id_str": "148838954844700672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691457697/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691457697/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@EliseDhamodhara have fun in indiaaaaa <333333 bring me back a souvenier ;)", "to_user": "EliseDhamodhara", "to_user_id": 381279810, "to_user_id_str": "381279810", "to_user_name": "Elise Dhamodharan", "in_reply_to_status_id": 148838632659222530, "in_reply_to_status_id_str": "148838632659222529"}, +{"created_at": "Mon, 19 Dec 2011 18:55:46 +0000", "from_user": "pOoLiLtInKtInK", "from_user_id": 172606279, "from_user_id_str": "172606279", "from_user_name": "Avery", "geo": null, "id": 148838953846444030, "id_str": "148838953846444032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698143980/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698143980/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Nina_MadeULook true true but a break and some fun is good for you", "to_user": "Nina_MadeULook", "to_user_id": 250962463, "to_user_id_str": "250962463", "to_user_name": "{ Juss\\u2022 Teen\\u2022 Nahh }", "in_reply_to_status_id": 148837511546941440, "in_reply_to_status_id_str": "148837511546941441"}, +{"created_at": "Mon, 19 Dec 2011 18:55:46 +0000", "from_user": "grampacrafty", "from_user_id": 32691103, "from_user_id_str": "32691103", "from_user_name": "Grampa Crafty", "geo": null, "id": 148838953041137660, "id_str": "148838953041137665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/143704191/AdamAvatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/143704191/AdamAvatar_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Family Fun Craft Night - Williams-Grand Canyon Chamber of ... http://t.co/2VFFmMmQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:45 +0000", "from_user": "AalayANiggaOut_", "from_user_id": 314003821, "from_user_id_str": "314003821", "from_user_name": "aalayih adams", "geo": null, "id": 148838950667161600, "id_str": "148838950667161600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1566008566/c3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566008566/c3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "good boys aint no fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:44 +0000", "from_user": "EloContreras", "from_user_id": 318224595, "from_user_id_str": "318224595", "from_user_name": "Elo Contreras", "geo": null, "id": 148838945470418940, "id_str": "148838945470418945", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1661674056/DSC03027_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661674056/DSC03027_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "have fun with your life every day!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:44 +0000", "from_user": "emtpueblo", "from_user_id": 14634519, "from_user_id_str": "14634519", "from_user_name": "emtpueblo", "geo": null, "id": 148838944946139140, "id_str": "148838944946139137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1320663882/akit11_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1320663882/akit11_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@HSO83 @w00dsfire wow I'm missing out on all the fun.", "to_user": "HSO83", "to_user_id": 157397847, "to_user_id_str": "157397847", "to_user_name": "Joshua Johnson", "in_reply_to_status_id": 148833901970862080, "in_reply_to_status_id_str": "148833901970862080"}, +{"created_at": "Mon, 19 Dec 2011 18:55:44 +0000", "from_user": "NYCmaeven", "from_user_id": 17314820, "from_user_id_str": "17314820", "from_user_name": "NYCmaeven", "geo": null, "id": 148838944472182800, "id_str": "148838944472182784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/64520981/Maeve_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/64520981/Maeve_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@NewBrunsNJ heard good things about Elficon in Hoboken this Friday! So sorry to be missing. Have fun!", "to_user": "NewBrunsNJ", "to_user_id": 38473327, "to_user_id_str": "38473327", "to_user_name": "New Brunswick, NJ"}, +{"created_at": "Mon, 19 Dec 2011 18:55:43 +0000", "from_user": "DeGee23", "from_user_id": 164535185, "from_user_id_str": "164535185", "from_user_name": "~Delaney Here!~", "geo": null, "id": 148838940881854460, "id_str": "148838940881854464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700986424/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700986424/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": ":) last night was amazing minus the drama! Fun dance #mylife", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:42 +0000", "from_user": "kittykatcath", "from_user_id": 256096175, "from_user_id_str": "256096175", "from_user_name": "Cat", "geo": null, "id": 148838938851811330, "id_str": "148838938851811328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1652790696/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652790696/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@mrsphantos.... Ya know I luv ur babies!!! Lol.... Have fun... X x", "to_user": "mrsphantos", "to_user_id": 242883051, "to_user_id_str": "242883051", "to_user_name": "Shazza", "in_reply_to_status_id": 148819871520653300, "in_reply_to_status_id_str": "148819871520653312"}, +{"created_at": "Mon, 19 Dec 2011 18:55:42 +0000", "from_user": "retraite", "from_user_id": 17488777, "from_user_id_str": "17488777", "from_user_name": "retraite", "geo": null, "id": 148838938302349300, "id_str": "148838938302349313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/65846987/Picture_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/65846987/Picture_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Of you can have as much fun with this as you want! here: par elibigninly (Publi\\u00E9 Lun, 19 D\\u00E9c 2011 14:49:40 GMT)T... http://t.co/zHRrLbce", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:42 +0000", "from_user": "Shadowchoul", "from_user_id": 431833727, "from_user_id_str": "431833727", "from_user_name": "Stijn Van der Laan", "geo": null, "id": 148838938012958720, "id_str": "148838938012958720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693250812/1388195935_4_UId3_1_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693250812/1388195935_4_UId3_1_normal.jpeg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@marshmallowAO hey marshmallow i dont want to disturb your fun but it was the real Midget apple ehh i mean Litlle apple.", "to_user": "marshmallowAO", "to_user_id": 206401971, "to_user_id_str": "206401971", "to_user_name": "Marshmallow"}, +{"created_at": "Mon, 19 Dec 2011 18:55:42 +0000", "from_user": "SporttoNet", "from_user_id": 304180780, "from_user_id_str": "304180780", "from_user_name": "SporttoNet", "geo": null, "id": 148838937853575170, "id_str": "148838937853575168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1519303426/sportto_branding_twit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1519303426/sportto_branding_twit_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "@bilalv87 wants you stop making fun of his @CMPunk pajamas. #WWE http://t.co/NMYtRZM6", "to_user": "bilalv87", "to_user_id": 227793700, "to_user_id_str": "227793700", "to_user_name": "Bilal Vakani"}, +{"created_at": "Mon, 19 Dec 2011 18:55:42 +0000", "from_user": "Lrbcn", "from_user_id": 47921167, "from_user_id_str": "47921167", "from_user_name": "Laura", "geo": null, "id": 148838937186668540, "id_str": "148838937186668544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1662764114/beckett_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662764114/beckett_normal.png", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "@cpt__hook I feel this stupid impulse sometimes to just shake my head... it's ridiculously fun", "to_user": "cpt__hook", "to_user_id": 244657391, "to_user_id_str": "244657391", "to_user_name": "rachel", "in_reply_to_status_id": 148838638711615500, "in_reply_to_status_id_str": "148838638711615488"}, +{"created_at": "Mon, 19 Dec 2011 18:55:42 +0000", "from_user": "SlimAssParis_", "from_user_id": 131386789, "from_user_id_str": "131386789", "from_user_name": "Paris )", "geo": null, "id": 148838936922435600, "id_str": "148838936922435584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697696426/ColorTouch-1323800818727_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697696426/ColorTouch-1323800818727_normal.jpeg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Them Was Deadass The Fun Days", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:41 +0000", "from_user": "SerafiaRae", "from_user_id": 35509241, "from_user_id_str": "35509241", "from_user_name": "oh you knoww", "geo": null, "id": 148838933013331970, "id_str": "148838933013331968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692095882/467895047_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692095882/467895047_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "BLAH #MansionParty on 4404 Allison Road Dec23 <-- go! 2 Live DJs Safe and will be FUN AF AGAIN!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:41 +0000", "from_user": "localsportscom", "from_user_id": 271713766, "from_user_id_str": "271713766", "from_user_name": "localsports.com", "geo": null, "id": 148838932497440770, "id_str": "148838932497440769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1303597942/localsports.com_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1303597942/localsports.com_twitter_normal.jpg", "source": "<a href="http://fun.ly" rel="nofollow">fun.ly</a>", "text": "Sunday best for Kev http://t.co/raQ0Qi32", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:41 +0000", "from_user": "MisssRileyJ", "from_user_id": 216785991, "from_user_id_str": "216785991", "from_user_name": "'AlexRiley-J", "geo": null, "id": 148838932380008450, "id_str": "148838932380008448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686867256/moi_et_ursi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686867256/moi_et_ursi_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@shaniAhector aww awesome! Well hope your having fun! And oooo :') I'm sure it is!", "to_user": "shaniAhector", "to_user_id": 351169477, "to_user_id_str": "351169477", "to_user_name": "Shani Anita Hector", "in_reply_to_status_id": 148836778130948100, "in_reply_to_status_id_str": "148836778130948097"}, +{"created_at": "Mon, 19 Dec 2011 18:55:41 +0000", "from_user": "namyeoja", "from_user_id": 61409705, "from_user_id_str": "61409705", "from_user_name": "\\uC9F1 B", "geo": null, "id": 148838931323031550, "id_str": "148838931323031552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693331526/BVa5p6j4_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693331526/BVa5p6j4_normal", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "(-_-)(_ _)(-_-)(_ _) RT @Blood_types: Blood type B won't let anything ruin their fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:41 +0000", "from_user": "_ConceitedMUCH", "from_user_id": 47433126, "from_user_id_str": "47433126", "from_user_name": "Chanel Ar'Manda", "geo": null, "id": 148838930781978620, "id_str": "148838930781978624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697306148/mUDER_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697306148/mUDER_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "we see what them li fuckers in china do for fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:40 +0000", "from_user": "ShareBestClub", "from_user_id": 298062738, "from_user_id_str": "298062738", "from_user_name": "Share The Best Club", "geo": null, "id": 148838930110873600, "id_str": "148838930110873600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1352102401/71135_140848289302967_4045897_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1352102401/71135_140848289302967_4045897_n_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Snyder's of Hanover Pretzel Snaps are a great way to add a fun and festive treat to your holiday goodie... http://t.co/BZiBUR8w", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:40 +0000", "from_user": "MistaKunan", "from_user_id": 77971231, "from_user_id_str": "77971231", "from_user_name": "Kunan", "geo": null, "id": 148838928789680130, "id_str": "148838928789680128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/837536107/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/837536107/me_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@VJohl have fun boss?? Its 3am now..must make sure this go inside my performance appraisal.hehehhehehehhe", "to_user": "VJohl", "to_user_id": 322411027, "to_user_id_str": "322411027", "to_user_name": "Venu Johl", "in_reply_to_status_id": 148835219401744400, "in_reply_to_status_id_str": "148835219401744384"}, +{"created_at": "Mon, 19 Dec 2011 18:55:40 +0000", "from_user": "vowelsehjik3", "from_user_id": 373163030, "from_user_id_str": "373163030", "from_user_name": "Vowels Henry", "geo": null, "id": 148838928328302600, "id_str": "148838928328302592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1541981602/f_36_w_0005_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541981602/f_36_w_0005_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "At the mall spending money, having fun payDay", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:40 +0000", "from_user": "PurpPandaNinja", "from_user_id": 400228918, "from_user_id_str": "400228918", "from_user_name": "Alex Juan", "geo": null, "id": 148838927627857920, "id_str": "148838927627857921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1614704691/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1614704691/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I get yelled at for making fun of people's voices, but then get made fun of about everything I does!! -_- ;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:40 +0000", "from_user": "SaleemOfficial", "from_user_id": 440917823, "from_user_id_str": "440917823", "from_user_name": "Saleem Ahmed", "geo": null, "id": 148838927552360450, "id_str": "148838927552360448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702270408/374713_333067916720470_100000517926147_1404053_218779549_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702270408/374713_333067916720470_100000517926147_1404053_218779549_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@chovenJJ LOL makin me feel Embarrased On Here :P :/ U Goo Have Fun Ill Speak 2 You Later xx", "to_user": "chovenJJ", "to_user_id": 439624960, "to_user_id_str": "439624960", "to_user_name": "choven JJ", "in_reply_to_status_id": 148836235383799800, "in_reply_to_status_id_str": "148836235383799811"}, +{"created_at": "Mon, 19 Dec 2011 18:55:40 +0000", "from_user": "AlexandraSvardh", "from_user_id": 393338060, "from_user_id_str": "393338060", "from_user_name": "Alexandra Sv\\u00E4rdh \\u2661", "geo": null, "id": 148838926839316480, "id_str": "148838926839316480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681184467/Photo_on_2011-10-09_at_11.28_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681184467/Photo_on_2011-10-09_at_11.28_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Living Single may seem fun while it lasts but at the end of the day everyone wants someone to love.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:39 +0000", "from_user": "Bambi_Baby18", "from_user_id": 331348179, "from_user_id_str": "331348179", "from_user_name": "Brandie Mae(:", "geo": null, "id": 148838924201111550, "id_str": "148838924201111552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1654306668/M2Sy609n_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654306668/M2Sy609n_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @elegant_allure: Bad boys aint no good, good boys aint no fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:39 +0000", "from_user": "FreshPrinceFel", "from_user_id": 46432207, "from_user_id_str": "46432207", "from_user_name": "Felix Emmanuel", "geo": null, "id": 148838923190280200, "id_str": "148838923190280192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689269131/383728_2392019154239_1063706181_32360015_685902872_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689269131/383728_2392019154239_1063706181_32360015_685902872_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Last night was horrible apart form da fun i had", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:38 +0000", "from_user": "M7mdanyMJ", "from_user_id": 405498013, "from_user_id_str": "405498013", "from_user_name": "Moochilico", "geo": null, "id": 148838920724033540, "id_str": "148838920724033536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702310088/hyrefksdsjbhsbsbx_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702310088/hyrefksdsjbhsbsbx_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "here to learn what they want, how to have fun and be happy. And how to make it all happen.\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:38 +0000", "from_user": "lrxmonroe", "from_user_id": 344196618, "from_user_id_str": "344196618", "from_user_name": "LearningRx of Monroe", "geo": null, "id": 148838920287817730, "id_str": "148838920287817729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1466257854/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1466257854/image_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Fun Fact: In 1936, England became the first country in the world to provide regular public broadcasting on television.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:38 +0000", "from_user": "CremeDeLaKim", "from_user_id": 98259846, "from_user_id_str": "98259846", "from_user_name": "Kimberly", "geo": null, "id": 148838918203248640, "id_str": "148838918203248640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1600331231/Snapshot_20111021_17_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600331231/Snapshot_20111021_17_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "What's the fun without a little teasing?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:37 +0000", "from_user": "rev313", "from_user_id": 158779335, "from_user_id_str": "158779335", "from_user_name": "Aidden Keli", "geo": null, "id": 148838914617131000, "id_str": "148838914617131008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1428048829/twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1428048829/twitter_normal.png", "source": "<a href="http://fun.ly" rel="nofollow">fun.ly</a>", "text": "Fresh From http://t.co/O3llhfsG today http://t.co/bUXmP5Ra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:35 +0000", "from_user": "JAE_ontheTRACK", "from_user_id": 116899533, "from_user_id_str": "116899533", "from_user_name": "JAdElyn Dyson:)", "geo": null, "id": 148838909483302900, "id_str": "148838909483302912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681595917/JAE_ontheTRACK_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681595917/JAE_ontheTRACK_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@Chad2thebone_: Living Single might seem fun while it lasts but at the end of the day everyone wants someone ..\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:35 +0000", "from_user": "kelseymrice17", "from_user_id": 360799311, "from_user_id_str": "360799311", "from_user_name": "Kelsey Rice", "geo": null, "id": 148838906027196400, "id_str": "148838906027196416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699631948/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699631948/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@HMcF I'm in the office now, poor thing. I deal with asthma when I'm sick and exercising, it's no fun", "to_user": "HMcF", "to_user_id": 30956174, "to_user_id_str": "30956174", "to_user_name": "Heather McFetters", "in_reply_to_status_id": 148838291091898370, "in_reply_to_status_id_str": "148838291091898369"}, +{"created_at": "Mon, 19 Dec 2011 18:55:34 +0000", "from_user": "IfyKush", "from_user_id": 409390132, "from_user_id_str": "409390132", "from_user_name": "Ify Okonma", "geo": null, "id": 148838904945049600, "id_str": "148838904945049600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1665066038/077_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665066038/077_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Girls jus wann' have fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:32 +0000", "from_user": "BillyeCanario90", "from_user_id": 438889773, "from_user_id_str": "438889773", "from_user_name": "Billye Canario", "geo": null, "id": 148838896359309300, "id_str": "148838896359309312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": null, "source": "<a href="http://twitter.com/">web</a>", "text": "@GretchenWhitee Don't you wish you had this $500 starbucks card http://t.co/0q1GwvAs", "to_user": "GretchenWhitee", "to_user_id": 311718826, "to_user_id_str": "311718826", "to_user_name": "Gretchen\\u2600\\u264C", "in_reply_to_status_id": 148838089752707070, "in_reply_to_status_id_str": "148838089752707072"}, +{"created_at": "Mon, 19 Dec 2011 18:55:32 +0000", "from_user": "spoiledLO", "from_user_id": 429135384, "from_user_id_str": "429135384", "from_user_name": "lodecia ", "geo": null, "id": 148838893259722750, "id_str": "148838893259722752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690465416/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690465416/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I'm at work now. Fun ends...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:31 +0000", "from_user": "sfalkowskii", "from_user_id": 398192198, "from_user_id_str": "398192198", "from_user_name": "Sarah Falkowski", "geo": null, "id": 148838890818633730, "id_str": "148838890818633728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1650778776/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650778776/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@court_nelson23 mMmMm, I found these black sparkley mini dresses #owow (; it's going to be toOo fun(;", "to_user": "court_nelson23", "to_user_id": 392359621, "to_user_id_str": "392359621", "to_user_name": "courtney nelson"}, +{"created_at": "Mon, 19 Dec 2011 18:55:31 +0000", "from_user": "wongwongwongys", "from_user_id": 327567195, "from_user_id_str": "327567195", "from_user_name": "Wong Yu Shan", "geo": null, "id": 148838889170280450, "id_str": "148838889170280450", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1510061128/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1510061128/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@tan_wei_rong @mathiwaldorf @lihui94 hey!!! How's everything! Are you having fun?! Are you thinking of us who're stuck in singapore?!", "to_user": "tan_wei_rong", "to_user_id": 53905057, "to_user_id_str": "53905057", "to_user_name": "Tan Wei Rong", "in_reply_to_status_id": 148818805823516670, "in_reply_to_status_id_str": "148818805823516672"}, +{"created_at": "Mon, 19 Dec 2011 18:55:30 +0000", "from_user": "ZulemaZavala", "from_user_id": 405001835, "from_user_id_str": "405001835", "from_user_name": "Zulema Zavala", "geo": null, "id": 148838884799811600, "id_str": "148838884799811584", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701736953/snap_16_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701736953/snap_16_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@AmandaSharonXu oh fun! :D", "to_user": "AmandaSharonXu", "to_user_id": 430284264, "to_user_id_str": "430284264", "to_user_name": "Amanda Xu", "in_reply_to_status_id": 148838328907726850, "in_reply_to_status_id_str": "148838328907726851"}, +{"created_at": "Mon, 19 Dec 2011 18:55:28 +0000", "from_user": "nFaithPhoto", "from_user_id": 216419396, "from_user_id_str": "216419396", "from_user_name": "N Faith Productions", "geo": null, "id": 148838879775039500, "id_str": "148838879775039488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1168662284/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1168662284/twitter_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Just wanted to share a wonderful session...I loved all the colors and textures, plus a fun family that was up for... http://t.co/AxmEsTz2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:28 +0000", "from_user": "YoGabbaGabba_x0", "from_user_id": 316825271, "from_user_id_str": "316825271", "from_user_name": "Gabrielle Dugan =)", "geo": null, "id": 148838877069713400, "id_str": "148838877069713408", "iso_language_code": "is", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692186632/35195_145242008821024_100000056770050_428475_6312470_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692186632/35195_145242008821024_100000056770050_428475_6312470_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@chloooxoxo lmfao aaah , itl b fun :D", "to_user": "chloooxoxo", "to_user_id": 347492065, "to_user_id_str": "347492065", "to_user_name": "chloe honaker", "in_reply_to_status_id": 148837082570297340, "in_reply_to_status_id_str": "148837082570297344"}, +{"created_at": "Mon, 19 Dec 2011 18:55:27 +0000", "from_user": "Lourieevm", "from_user_id": 386035447, "from_user_id_str": "386035447", "from_user_name": "Lourie Appelman", "geo": null, "id": 148838875807219700, "id_str": "148838875807219713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1575437011/zifso0551t_131062600_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575437011/zifso0551t_131062600_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Homemade playdough makes a wonderful gift, and the girls and I had fun making _candy_ cane playdough for their... http://t.co/akWrhxTw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:26 +0000", "from_user": "YeahImChill", "from_user_id": 348173082, "from_user_id_str": "348173082", "from_user_name": "Derrick Terrell ", "geo": null, "id": 148838869251526660, "id_str": "148838869251526656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694594120/LEEYURRRR_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694594120/LEEYURRRR_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @CHRISSY_Ayo: Lmaoo, tubing is fun affff! We should all go!\\n*thinks about my summers in the countries*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:26 +0000", "from_user": "RaeannLyke3192", "from_user_id": 439433262, "from_user_id_str": "439433262", "from_user_name": "Raeann Lyke", "geo": null, "id": 148838868462997500, "id_str": "148838868462997506", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@jamiexskoops Please retweet this you followers will love it http://t.co/egV6K3IW", "to_user": "jamiexskoops", "to_user_id": 22493373, "to_user_id_str": "22493373", "to_user_name": "Jamie Skupien", "in_reply_to_status_id": 148838123911127040, "in_reply_to_status_id_str": "148838123911127040"}, +{"created_at": "Mon, 19 Dec 2011 18:55:25 +0000", "from_user": "ChemicallySweet", "from_user_id": 86412156, "from_user_id_str": "86412156", "from_user_name": "Safia", "geo": null, "id": 148838867397644300, "id_str": "148838867397644288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1672402741/P1030402_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672402741/P1030402_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @cuteypie5412: @ChemicallySweet ad i had soooo much fun :D needs to happen again", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:25 +0000", "from_user": "andou0007", "from_user_id": 431419258, "from_user_id_str": "431419258", "from_user_name": "andou0007", "geo": null, "id": 148838863874433020, "id_str": "148838863874433024", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "rast67 decap @le mcoins fun fmat taktil nenrw...ha3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:24 +0000", "from_user": "its_10iola", "from_user_id": 173406867, "from_user_id_str": "173406867", "from_user_name": "Sir jonz alot", "geo": null, "id": 148838862188326900, "id_str": "148838862188326913", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702032272/mi_20nd_20mima_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702032272/mi_20nd_20mima_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Chronic 2mao its gonna be mad fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:23 +0000", "from_user": "YUUUPitsKatie", "from_user_id": 176592909, "from_user_id_str": "176592909", "from_user_name": "Katie :)", "geo": null, "id": 148838859122282500, "id_str": "148838859122282496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698694921/yuuup_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698694921/yuuup_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Currently giving my dog a bath in the bathtub........let's just say I'm soaking wet and there are bubbles everywhere. SO fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:23 +0000", "from_user": "MakeupDolls", "from_user_id": 198658333, "from_user_id_str": "198658333", "from_user_name": "The Makeup Dolls", "geo": null, "id": 148838856463101950, "id_str": "148838856463101952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1552072092/420_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552072092/420_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TBDofficial: Here's another fun holiday hair tutorial. Part bun, part braid! Check it out\\u2026 and Happy Monday!! http://t.co/Tmj6mrZj XO!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:22 +0000", "from_user": "Indyman70", "from_user_id": 34843238, "from_user_id_str": "34843238", "from_user_name": "Bill Bowsman", "geo": null, "id": 148838852046503940, "id_str": "148838852046503936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691677733/93b24776-ab2c-4bc9-b350-194c526ed8f7_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691677733/93b24776-ab2c-4bc9-b350-194c526ed8f7_normal.png", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Time to fight the fun Louisville traffic", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:22 +0000", "from_user": "AriGrandesXoxos", "from_user_id": 272453654, "from_user_id_str": "272453654", "from_user_name": "Sarah Grande \\u2661", "geo": null, "id": 148838851564158980, "id_str": "148838851564158976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699797114/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699797114/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ArianaGrande I have to do homework ... But if I listen to your cover \"last dance\" it's much more fun then before. \\u2665 xoxo #cyberhug", "to_user": "ArianaGrande", "to_user_id": 34507480, "to_user_id_str": "34507480", "to_user_name": "Ariana Grande"}, +{"created_at": "Mon, 19 Dec 2011 18:55:20 +0000", "from_user": "jeenny_jimenez", "from_user_id": 243015491, "from_user_id_str": "243015491", "from_user_name": "Jeeny' Jim\\u00E9nez", "geo": null, "id": 148838844492554240, "id_str": "148838844492554242", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689856669/womaninvintagesunglasses_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689856669/womaninvintagesunglasses_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @m_magazine: So great talking to @onedirection bright and early this morning! Such fun guys! Look for the exclusive interview deets in next issue of M!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:20 +0000", "from_user": "gigs4NYC", "from_user_id": 432221780, "from_user_id_str": "432221780", "from_user_name": "New York City gigs", "geo": null, "id": 148838843016163330, "id_str": "148838843016163329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1682411666/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682411666/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#gigs4u #gigs Pantyhose-Nylon-Stockings fun gig with open minded gal today (New York) http://t.co/aihFhdGj #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:17 +0000", "from_user": "jhaydelprado", "from_user_id": 41085017, "from_user_id_str": "41085017", "from_user_name": "J. A. del Prado", "geo": null, "id": 148838833822248960, "id_str": "148838833822248960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1460135813/3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1460135813/3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @myckearcano: @LeicaG6 @TrishYap @rhodelsazon @jhaydelprado @itssoMELicious @KnicoleLovesYou SUPER FUN EVE MAH BABIES! THANK YOUU!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:17 +0000", "from_user": "jbstoryteller", "from_user_id": 122129067, "from_user_id_str": "122129067", "from_user_name": "Joanna Ballard ", "geo": null, "id": 148838831209193470, "id_str": "148838831209193472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/746716072/MeBySM_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/746716072/MeBySM_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"Creativity is inventing, experimenting, growing, taking risks, breaking rules, making mistakes, and having fun.\" ~ Mary Lou Cook", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:15 +0000", "from_user": "CynthiaChebultz", "from_user_id": 25297244, "from_user_id_str": "25297244", "from_user_name": "Cynthia Chebultz", "geo": null, "id": 148838825366519800, "id_str": "148838825366519808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/103129678/DSC_0527bw_sq_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/103129678/DSC_0527bw_sq_sm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Bros: Make fun of him and he\\u2019ll punch you in the face: guidos bros douchebags fratboys - Bros: Make fun of him a... http://t.co/6JhFxFXf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:14 +0000", "from_user": "Wubu_Bubu", "from_user_id": 36025384, "from_user_id_str": "36025384", "from_user_name": "Clifford War", "geo": null, "id": 148838820404662270, "id_str": "148838820404662272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1638554100/IMG00341-20111104-2038_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638554100/IMG00341-20111104-2038_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "#Journal tweeting about @Whoopyboogly is fun. Meanwhile, hi @BenKipgen @Leshre @swatidraik @cynthiafeegrade @AslLikeIt :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:13 +0000", "from_user": "LKNlove", "from_user_id": 30711971, "from_user_id_str": "30711971", "from_user_name": "LKN", "geo": null, "id": 148838813895114750, "id_str": "148838813895114754", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1614178918/HCBBM__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1614178918/HCBBM__1__normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "The picture I sent @AdeSnooki of @TraceThisOne was too fun-nay. I was too sick for that, but who cares! #Boom", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:12 +0000", "from_user": "omowunzy", "from_user_id": 250095341, "from_user_id_str": "250095341", "from_user_name": "Adewunmi Dominic", "geo": null, "id": 148838813018505200, "id_str": "148838813018505216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702048615/IMG02011-20111204-1034_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702048615/IMG02011-20111204-1034_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @IAM_PURPLE: If ya havin fun goin out Dis Festive season make sure dont drink much!saw 3 car accidents at 3rd mainland yesterday!but sha I tipsy!Lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:12 +0000", "from_user": "SweetAsPie21", "from_user_id": 414561212, "from_user_id_str": "414561212", "from_user_name": "jazmin nichols", "geo": null, "id": 148838809293950980, "id_str": "148838809293950976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1675810130/jasmine2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675810130/jasmine2_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Rain rain come my way, i just wanna have some fun today!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:11 +0000", "from_user": "PrincessIveyy", "from_user_id": 209872940, "from_user_id_str": "209872940", "from_user_name": "Princess Iveyy", "geo": null, "id": 148838808182464500, "id_str": "148838808182464512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686096738/mail_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686096738/mail_normal.jpg", "source": "<a href="http://www.handmark.com" rel="nofollow">TweetCaster for iOS</a>", "text": "RT RT @REGGIEMINAJ: Everyone download Voxer from your market. Fun app :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:11 +0000", "from_user": "Paul_PJPhoto", "from_user_id": 65762750, "from_user_id_str": "65762750", "from_user_name": "Paul Clapperton", "geo": null, "id": 148838805502304260, "id_str": "148838805502304256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1312954211/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312954211/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@ferjuaristi lenses are backward compatible then? Was thinking canon A1 or maybe a holga. It's just for fun really", "to_user": "ferjuaristi", "to_user_id": 14861508, "to_user_id_str": "14861508", "to_user_name": "ferjuaristi", "in_reply_to_status_id": 148836031091847170, "in_reply_to_status_id_str": "148836031091847170"}, +{"created_at": "Mon, 19 Dec 2011 18:55:09 +0000", "from_user": "akareilly", "from_user_id": 18023171, "from_user_id_str": "18023171", "from_user_name": "akareilly", "geo": null, "id": 148838799995174900, "id_str": "148838799995174913", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1184186432/akareilly_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1184186432/akareilly_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @RepZoeLofgren: AMA over. That was fun. #SOPA http://t.co/Ra7Aulu1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:08 +0000", "from_user": "DNBFirst", "from_user_id": 154598856, "from_user_id_str": "154598856", "from_user_name": "DNB First", "geo": null, "id": 148838794412572670, "id_str": "148838794412572673", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/980792343/MH_logo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/980792343/MH_logo_normal.gif", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Looking for something fun and festive to do this week? How about a carriage ride in Media this Wednesday http://t.co/Ln0yffEj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:07 +0000", "from_user": "OnSomeNUish", "from_user_id": 235042935, "from_user_id_str": "235042935", "from_user_name": "\\u2640Jana\\u00E9\\u2122", "geo": null, "id": 148838790633488400, "id_str": "148838790633488384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697723971/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697723971/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I think I'm going to drink today and finally bake that fun fetti cake...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:07 +0000", "from_user": "croncemuhueo9", "from_user_id": 397950076, "from_user_id_str": "397950076", "from_user_name": "Cronce Madrox", "geo": null, "id": 148838788880273400, "id_str": "148838788880273408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1605865420/imagesCA7GNJHX_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1605865420/imagesCA7GNJHX_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "1st hour was so fun today i love dance class", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:06 +0000", "from_user": "SwaddleDesigns", "from_user_id": 29858496, "from_user_id_str": "29858496", "from_user_name": "SwaddleDesigns", "geo": null, "id": 148838784308494340, "id_str": "148838784308494336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1172051238/Lynette_with_Swaddle_Kaia_-_Compressed_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1172051238/Lynette_with_Swaddle_Kaia_-_Compressed_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @helloterumi: @SeattleMonorail @seattlecenter and there's also #seesanta at @tcmseattle this morning! So many fun things to do #Winterfest", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:05 +0000", "from_user": "SarahMartinByrd", "from_user_id": 166239938, "from_user_id_str": "166239938", "from_user_name": "Sarah Martin Byrd", "geo": null, "id": 148838781393436670, "id_str": "148838781393436672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1078027554/guardian-spirit-night-GIF_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1078027554/guardian-spirit-night-GIF_normal.gif", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Have some fun with this weeks blog post, \"Old Sayings.\"\\nhttp://t.co/sQa9GO6D http://t.co/q2D4d27Q", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:05 +0000", "from_user": "sarasteward", "from_user_id": 160351449, "from_user_id_str": "160351449", "from_user_name": "Sara Steward", "geo": null, "id": 148838780936257540, "id_str": "148838780936257536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@SwagBucks Kinda too much thinking, it starts to lose the \"fun\" when I'm on vacation working my brain! lol", "to_user": "SwagBucks", "to_user_id": 18747993, "to_user_id_str": "18747993", "to_user_name": "SwagBucks.com", "in_reply_to_status_id": 148838242614116350, "in_reply_to_status_id_str": "148838242614116352"}, +{"created_at": "Mon, 19 Dec 2011 18:55:04 +0000", "from_user": "MsTeeTee82", "from_user_id": 163608566, "from_user_id_str": "163608566", "from_user_name": "Tonya", "geo": null, "id": 148838776230248450, "id_str": "148838776230248448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1510619208/te_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1510619208/te_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@abe_mr1night oh yea? I went there yesterday..have fun..lol", "to_user": "abe_mr1night", "to_user_id": 149293545, "to_user_id_str": "149293545", "to_user_name": "Mr1night", "in_reply_to_status_id": 148838423678042100, "in_reply_to_status_id_str": "148838423678042114"}, +{"created_at": "Mon, 19 Dec 2011 18:55:04 +0000", "from_user": "TVDFamilyFrench", "from_user_id": 50990213, "from_user_id_str": "50990213", "from_user_name": "Madi*Esme*Nat", "geo": null, "id": 148838775966023680, "id_str": "148838775966023681", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685307061/377802_315934365103317_191178384245583_1205548_1620825586_n__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685307061/377802_315934365103317_191178384245583_1205548_1620825586_n__1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@KatiedelaiDE bof de toute fa\\u00E7on c'est juste pour le fun \\u00E7a dura pas!", "to_user": "KatiedelaiDE", "to_user_id": 268244206, "to_user_id_str": "268244206", "to_user_name": "Ian Somerhalder \\u2665", "in_reply_to_status_id": 148837434719870980, "in_reply_to_status_id_str": "148837434719870976"}, +{"created_at": "Mon, 19 Dec 2011 18:55:02 +0000", "from_user": "RuntWolfJunior", "from_user_id": 270327914, "from_user_id_str": "270327914", "from_user_name": "lauren vellucci", "geo": null, "id": 148838768995082240, "id_str": "148838768995082241", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1550952594/317601_259514184073699_100000453578672_923110_7458693_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1550952594/317601_259514184073699_100000453578672_923110_7458693_n_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@rararach okayyy have fun! Ill get a hold of you tommorrow pretty women (:", "to_user": "rararach", "to_user_id": 137142071, "to_user_id_str": "137142071", "to_user_name": "rachel"}, +{"created_at": "Mon, 19 Dec 2011 18:55:00 +0000", "from_user": "Adore_Brittany", "from_user_id": 232738959, "from_user_id_str": "232738959", "from_user_name": "\\u2654 Britt Bratt \\u2654", "geo": null, "id": 148838759188791300, "id_str": "148838759188791296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685811462/_adore_brittany_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685811462/_adore_brittany_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Your welcome lol I had fun even tho my drunk ass screamed in drakes face lmao RT @AngelicaGuzma19: @Adore_Brittany Thankss :) \\nIt was nice s", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:58 +0000", "from_user": "TooThickTooQuit", "from_user_id": 348694630, "from_user_id_str": "348694630", "from_user_name": "TeamEthiopiaBadBitch", "geo": null, "id": 148838752628912130, "id_str": "148838752628912128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676280835/IwTVm1Qb_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676280835/IwTVm1Qb_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iEnriqueSays: Living Single may seem fun while it lasts but at the end of the day everyone wants someone to love.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:56 +0000", "from_user": "geegettnmny", "from_user_id": 103751368, "from_user_id_str": "103751368", "from_user_name": "gee", "geo": null, "id": 148838744957534200, "id_str": "148838744957534208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1442951752/Picture0454_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1442951752/Picture0454_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@Thugniificent If small girls are fun sized, are fat chicks king sized?\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:53 +0000", "from_user": "Marcooo732", "from_user_id": 221583836, "from_user_id_str": "221583836", "from_user_name": "Marcus Cummings", "geo": null, "id": 148838732039069700, "id_str": "148838732039069696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1648765150/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648765150/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@RealGreggBarber snowboard, it's mad fun dude.", "to_user": "RealGreggBarber", "to_user_id": 230078007, "to_user_id_str": "230078007", "to_user_name": "G", "in_reply_to_status_id": 148785276335034370, "in_reply_to_status_id_str": "148785276335034368"}, +{"created_at": "Mon, 19 Dec 2011 18:54:52 +0000", "from_user": "jjozzahSBH", "from_user_id": 227278723, "from_user_id_str": "227278723", "from_user_name": "Josefine Evans", "geo": null, "id": 148838728096419840, "id_str": "148838728096419840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1647249048/Picture_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647249048/Picture_7_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Isn't it fun that I actually gets surprised if someone talks to me in school?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:50 +0000", "from_user": "KINGDINGALING_1", "from_user_id": 28588178, "from_user_id_str": "28588178", "from_user_name": "KINGDINGALING", "geo": null, "id": 148838720177569800, "id_str": "148838720177569793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1652912196/eatinit_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652912196/eatinit_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@mathechr that Lego game is the best one they created...shit is fun..enjoy...", "to_user": "mathechr", "to_user_id": 58474685, "to_user_id_str": "58474685", "to_user_name": "mathechr", "in_reply_to_status_id": 148838556822028300, "in_reply_to_status_id_str": "148838556822028288"}, +{"created_at": "Mon, 19 Dec 2011 18:54:50 +0000", "from_user": "2flamey", "from_user_id": 283152699, "from_user_id_str": "283152699", "from_user_name": "Sarah ", "geo": null, "id": 148838716847292400, "id_str": "148838716847292417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668463641/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668463641/me_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@kim_copeland I am now jealous. Have fun :)", "to_user": "kim_copeland", "to_user_id": 233288030, "to_user_id_str": "233288030", "to_user_name": "kim copeland", "in_reply_to_status_id": 148837583596687360, "in_reply_to_status_id_str": "148837583596687360"}, +{"created_at": "Mon, 19 Dec 2011 18:54:48 +0000", "from_user": "Mildavu99", "from_user_id": 388846968, "from_user_id_str": "388846968", "from_user_name": "Milda Garnica", "geo": null, "id": 148838708689383420, "id_str": "148838708689383424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1583189099/GJHL-1452_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583189099/GJHL-1452_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Eye-D Picture Challenge Grades 3 & 4 edition: 125 Pictures & 625 Challenging Questions: The fun way to learn by ... http://t.co/jEJUF5al", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:46 +0000", "from_user": "Mones14", "from_user_id": 222287510, "from_user_id_str": "222287510", "from_user_name": "Ramon Macias", "geo": null, "id": 148838703450689540, "id_str": "148838703450689537", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684655872/G31xDuoe_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684655872/G31xDuoe_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Chrisesco14 @Seize14 what a beach. We should drink cheladas later...and not invite him. And record how much fun we have without him.", "to_user": "Chrisesco14", "to_user_id": 429651522, "to_user_id_str": "429651522", "to_user_name": "Chris Escobedo", "in_reply_to_status_id": 148837962040348670, "in_reply_to_status_id_str": "148837962040348673"}, +{"created_at": "Mon, 19 Dec 2011 18:54:45 +0000", "from_user": "DaBieberMoney", "from_user_id": 120564022, "from_user_id_str": "120564022", "from_user_name": "amber", "geo": null, "id": 148838698174267400, "id_str": "148838698174267392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698938461/385145_248238745236414_100001508726363_694547_2068218434_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698938461/385145_248238745236414_100001508726363_694547_2068218434_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @NiallOfficial: Legooo! Southend! Gona be fun, get involved!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:41 +0000", "from_user": "bbbsnwwa", "from_user_id": 48508793, "from_user_id_str": "48508793", "from_user_name": "BBBS NW WA", "geo": null, "id": 148838682764390400, "id_str": "148838682764390400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/843980024/Purple_Figure_Logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/843980024/Purple_Figure_Logo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Happy Monday everyone! What fun things are going on in Bellingham this week?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} + +, +{"created_at": "Mon, 19 Dec 2011 18:40:10 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": +{"coordinates": [41.443,-8.2933], "type": "Point"}, "id": 148835026933526530, "id_str": "148835026933526528", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Geofweet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:20 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 148829028416098300, "id_str": "148829028416098304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "current status: downloading twitter, moar data", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:37:02 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 148804040023736320, "id_str": "148804040023736320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@kstirman i meant :)", "to_user": "kstirman", "to_user_id": 8723762, "to_user_id_str": "8723762", "to_user_name": "Kelly Stirman"}, +{"created_at": "Mon, 19 Dec 2011 16:36:56 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 148804015558377470, "id_str": "148804015558377472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "fun to watch http://t.co/3B5rWoUy /thanks #kstirman", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:22:38 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 148785316419997700, "id_str": "148785316419997696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@kstirman xml with xquery. much easier. escaping in json is pain", "to_user": "kstirman", "to_user_id": 8723762, "to_user_id_str": "8723762", "to_user_name": "Kelly Stirman", "in_reply_to_status_id": 148785142872289280, "in_reply_to_status_id_str": "148785142872289280"}, +{"created_at": "Mon, 19 Dec 2011 15:21:57 +0000", "from_user": "kstirman", "from_user_id": 8723762, "from_user_id_str": "8723762", "from_user_name": "Kelly Stirman", "geo": null, "id": 148785142872289280, "id_str": "148785142872289280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/210467530/244.mr.t.092806_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/210467530/244.mr.t.092806_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dscape Is it easier to create JSON with javascript or XML with XQuery?", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 148723956344561660, "in_reply_to_status_id_str": "148723956344561664"}, +{"created_at": "Mon, 19 Dec 2011 11:34:09 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 148727818627457020, "id_str": "148727818627457024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@vmische thanks :)", "to_user": "vmische", "to_user_id": 140552229, "to_user_id_str": "140552229", "to_user_name": "Volker Mische", "in_reply_to_status_id": 148727641497808900, "in_reply_to_status_id_str": "148727641497808896"}, +{"created_at": "Mon, 19 Dec 2011 11:33:27 +0000", "from_user": "vmische", "from_user_id": 140552229, "from_user_id_str": "140552229", "from_user_name": "Volker Mische", "geo": null, "id": 148727641497808900, "id_str": "148727641497808896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/886369436/favicon007_73x73_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/886369436/favicon007_73x73_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@dscape For huge shp files, try e.g. netherlands.shp.zip from http://t.co/ZCWq6MmJ", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job"}, +{"created_at": "Mon, 19 Dec 2011 11:28:49 +0000", "from_user": "vmische", "from_user_id": 140552229, "from_user_id_str": "140552229", "from_user_name": "Volker Mische", "geo": null, "id": 148726473585471500, "id_str": "148726473585471488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/886369436/favicon007_73x73_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/886369436/favicon007_73x73_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@dscape Either use https://t.co/CZrGyYkd and the OSM planet file. Or any SHP file and convert it with ogr2ogr.", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 148723956344561660, "in_reply_to_status_id_str": "148723956344561664"}, +{"created_at": "Mon, 19 Dec 2011 11:23:28 +0000", "from_user": "luismreis", "from_user_id": 16416919, "from_user_id_str": "16416919", "from_user_name": "luismreis", "geo": null, "id": 148725127566209020, "id_str": "148725127566209024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/539006194/IMG_0670twitter_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/539006194/IMG_0670twitter_normal.JPG", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@dscape Not really, just use a XSLT. #trollollollol", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 148724787571732480, "in_reply_to_status_id_str": "148724787571732481"}, +{"created_at": "Mon, 19 Dec 2011 11:22:07 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 148724787571732480, "id_str": "148724787571732481", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@luismreis if you can convert a file easily from xml to json then i probably think the file is too small :)", "to_user": "luismreis", "to_user_id": 16416919, "to_user_id_str": "16416919", "to_user_name": "luismreis", "in_reply_to_status_id": 148724597011918850, "in_reply_to_status_id_str": "148724597011918848"}, +{"created_at": "Mon, 19 Dec 2011 11:21:21 +0000", "from_user": "luismreis", "from_user_id": 16416919, "from_user_id_str": "16416919", "from_user_name": "luismreis", "geo": null, "id": 148724597011918850, "id_str": "148724597011918848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/539006194/IMG_0670twitter_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/539006194/IMG_0670twitter_normal.JPG", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@dscape That's easy: just find a XML to JSON converter and search for maven .pom files", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 148723956344561660, "in_reply_to_status_id_str": "148723956344561664"}, +{"created_at": "Mon, 19 Dec 2011 11:18:49 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 148723956344561660, "id_str": "148723956344561664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "dear #lazyweb where can i find the largest json files in the world? :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:32:02 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 148681986112888830, "id_str": "148681986112888832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @substack: I like turtles: http://t.co/uoswx4E5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:45:21 +0000", "from_user": "PatrickHeneise", "from_user_id": 18073349, "from_user_id_str": "18073349", "from_user_name": "Patrick Heneise", "geo": null, "id": 148504145047978000, "id_str": "148504145047977985", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1462247153/CIMG2411_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1462247153/CIMG2411_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@dscape I've got a cool json file. ;) DM me.", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job"}, +{"created_at": "Sun, 18 Dec 2011 17:54:15 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 148461085236805630, "id_str": "148461085236805633", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@3rdEden check dscape/clarinet", "to_user": "3rdEden", "to_user_id": 14350255, "to_user_id_str": "14350255", "to_user_name": "Arnout Kazemier", "in_reply_to_status_id": 148460764053774340, "in_reply_to_status_id_str": "148460764053774336"}, +{"created_at": "Sun, 18 Dec 2011 17:54:04 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 148461039938310140, "id_str": "148461039938310145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@3rdEden yup, check. including docs and all.", "to_user": "3rdEden", "to_user_id": 14350255, "to_user_id_str": "14350255", "to_user_name": "Arnout Kazemier", "in_reply_to_status_id": 148460764053774340, "in_reply_to_status_id_str": "148460764053774336"}, +{"created_at": "Sun, 18 Dec 2011 17:52:59 +0000", "from_user": "3rdEden", "from_user_id": 14350255, "from_user_id_str": "14350255", "from_user_name": "Arnout Kazemier", "geo": null, "id": 148460764053774340, "id_str": "148460764053774336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@dscape try parsing out the NPM registry ?", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 148458745419149300, "in_reply_to_status_id_str": "148458745419149312"}, +{"created_at": "Sun, 18 Dec 2011 17:44:57 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 148458745419149300, "id_str": "148458745419149312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "anyone got cool json files that are hard to parse? send them my way", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:30:12 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 148394632328392700, "id_str": "148394632328392704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@creationix s/docs/code/", "to_user": "creationix", "to_user_id": 70596949, "to_user_id_str": "70596949", "to_user_name": "Tim Caswell", "in_reply_to_status_id": 148393889156431870, "in_reply_to_status_id_str": "148393889156431873"}, +{"created_at": "Sun, 18 Dec 2011 13:29:56 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 148394567421538300, "id_str": "148394567421538304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@creationix would rather have worked on yours if i knew - some docs would have helped finding what scanning the docs didn't :)", "to_user": "creationix", "to_user_id": 70596949, "to_user_id_str": "70596949", "to_user_name": "Tim Caswell", "in_reply_to_status_id": 148393889156431870, "in_reply_to_status_id_str": "148393889156431873"}, +{"created_at": "Sun, 18 Dec 2011 13:28:13 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 148394134988783600, "id_str": "148394134988783616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@creationix i was under the impression that yours was not streaming? that's why I'm doing it :)", "to_user": "creationix", "to_user_id": 70596949, "to_user_id_str": "70596949", "to_user_name": "Tim Caswell", "in_reply_to_status_id": 148393889156431870, "in_reply_to_status_id_str": "148393889156431873"}, +{"created_at": "Sun, 18 Dec 2011 13:27:14 +0000", "from_user": "creationix", "from_user_id": 70596949, "from_user_id_str": "70596949", "from_user_name": "Tim Caswell", "geo": null, "id": 148393889156431870, "id_str": "148393889156431873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/774817444/c953ddd239707998340e1a6fbb3eeb46_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/774817444/c953ddd239707998340e1a6fbb3eeb46_normal.jpeg", "source": "<a href="http://swipe.nokia.com/" rel="nofollow">Tweet from Nokia N9</a>", "text": "@dscape if your's ends up faster or better than mine, let me know. Good luck.", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 148392305622126600, "in_reply_to_status_id_str": "148392305622126592"}, +{"created_at": "Sun, 18 Dec 2011 13:20:57 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 148392305622126600, "id_str": "148392305622126592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@creationix now doing unicode :) working on a sax like parser for json. looked at your code for tests :)", "to_user": "creationix", "to_user_id": 70596949, "to_user_id_str": "70596949", "to_user_name": "Tim Caswell", "in_reply_to_status_id": 148388780531920900, "in_reply_to_status_id_str": "148388780531920896"}, +{"created_at": "Sun, 18 Dec 2011 13:06:56 +0000", "from_user": "creationix", "from_user_id": 70596949, "from_user_id_str": "70596949", "from_user_name": "Tim Caswell", "geo": null, "id": 148388780531920900, "id_str": "148388780531920896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/774817444/c953ddd239707998340e1a6fbb3eeb46_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/774817444/c953ddd239707998340e1a6fbb3eeb46_normal.jpeg", "source": "<a href="http://swipe.nokia.com/" rel="nofollow">Tweet from Nokia N9</a>", "text": "@dscape not any worse than Unicode, but yeah, it's a pain.", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 148372763080523780, "in_reply_to_status_id_str": "148372763080523776"}, +{"created_at": "Sun, 18 Dec 2011 12:22:24 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 148377572315643900, "id_str": "148377572315643904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@NuckChorris mongo is ok if you are chuck norris. after all anything will bend to your will. than there's us mere mortals", "to_user": "NuckChorris", "to_user_id": 18070528, "to_user_id_str": "18070528", "to_user_name": "Peter Lejeck", "in_reply_to_status_id": 148377328681103360, "in_reply_to_status_id_str": "148377328681103360"}, +{"created_at": "Sun, 18 Dec 2011 12:21:26 +0000", "from_user": "NuckChorris", "from_user_id": 18070528, "from_user_id_str": "18070528", "from_user_name": "Peter Lejeck", "geo": null, "id": 148377328681103360, "id_str": "148377328681103360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1621810033/nuckchorris0_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621810033/nuckchorris0_normal.png", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@dscape if couch is the future, I'll keep the present. #mongo 4 lyfe", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 148376118569873400, "in_reply_to_status_id_str": "148376118569873409"}, +{"created_at": "Sun, 18 Dec 2011 12:16:38 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 148376118569873400, "id_str": "148376118569873409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "couchdb is a database from the future. why the community stalled innovating taking advantage of this is something I'm yet to understand", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:03:18 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 148372763080523780, "id_str": "148372763080523776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "adding numbers to json was a terrible decision. nightmare to parse /cc @creationix", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:10:22 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 148117851050479600, "id_str": "148117851050479616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "really love @izs fast-list. `array = FastList || Array` allows to code without adding fast list to source but still allow people to use it", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:21:54 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 148015057882710000, "id_str": "148015057882710016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@jnelas it's not mine per se, all resumes suck by definition", "to_user": "jnelas", "to_user_id": 13775652, "to_user_id_str": "13775652", "to_user_name": "Jo\\u00E3o Nelas", "in_reply_to_status_id": 147772114085228540, "in_reply_to_status_id_str": "147772114085228544"}, +{"created_at": "Fri, 16 Dec 2011 20:16:32 +0000", "from_user": "jnelas", "from_user_id": 13775652, "from_user_id_str": "13775652", "from_user_name": "Jo\\u00E3o Nelas", "geo": null, "id": 147772114085228540, "id_str": "147772114085228544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/103220999/EU_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/103220999/EU_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@dscape Your resume can't be that bad! :)", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147645647477145600, "in_reply_to_status_id_str": "147645647477145600"}, +{"created_at": "Fri, 16 Dec 2011 19:56:54 +0000", "from_user": "ramitos", "from_user_id": 15085633, "from_user_id_str": "15085633", "from_user_name": "S\\u00E9rgio Ramos", "geo": null, "id": 147767173283184640, "id_str": "147767173283184642", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1369166593/hd2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1369166593/hd2_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@dscape the all OST is great. But Yann Tiersen is incredibly awesome outside the OST. I saw one live show and it was epic.", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147765202107117570, "in_reply_to_status_id_str": "147765202107117568"}, +{"created_at": "Fri, 16 Dec 2011 19:56:33 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147767084745633800, "id_str": "147767084745633792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "judy wrote the saddest song :) /cc @janl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:55:04 +0000", "from_user": "gnat", "from_user_id": 898691, "from_user_id_str": "898691", "from_user_name": "Nat Torkington", "geo": null, "id": 147766711817478140, "id_str": "147766711817478145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668363440/right_looking_evil_grin_for_Twitter_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668363440/right_looking_evil_grin_for_Twitter_normal.gif", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@dscape aw shucks, thanks!", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147639567091105800, "in_reply_to_status_id_str": "147639567091105792"}, +{"created_at": "Fri, 16 Dec 2011 19:49:04 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147765202107117570, "id_str": "147765202107117568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "La Valse de Am\\u00E9lie is such an amazing song. The cats love it too :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:43:38 +0000", "from_user": "trodrigues", "from_user_id": 6477652, "from_user_id_str": "6477652", "from_user_name": "Tiago Rodrigues", "geo": null, "id": 147763836177485820, "id_str": "147763836177485824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1180079115/Tiago_Rodrigues_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1180079115/Tiago_Rodrigues_normal.jpeg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@dscape not sure about the second part :p", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147754858240413700, "in_reply_to_status_id_str": "147754858240413696"}, +{"created_at": "Fri, 16 Dec 2011 19:07:58 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147754858240413700, "id_str": "147754858240413696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "if you are a technical javascript guy with a head for business from london reply to this tweet so i remember you :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:43:52 +0000", "from_user": "rolandbouman", "from_user_id": 51754021, "from_user_id_str": "51754021", "from_user_name": "Roland Bouman", "geo": null, "id": 147718598012571650, "id_str": "147718598012571648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/287001025/roland_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/287001025/roland_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@mjasay Open source is turning out as an advantage in this space, esp. multi-node apps. Like I said to @dscape earlier today:", "to_user": "mjasay", "to_user_id": 7617702, "to_user_id_str": "7617702", "to_user_name": "Matt Asay", "in_reply_to_status_id": 147717576791830530, "in_reply_to_status_id_str": "147717576791830528"}, +{"created_at": "Fri, 16 Dec 2011 15:00:14 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147692515506651140, "id_str": "147692515506651136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@trodrigues they give a whole new meaning to the word clueless", "to_user": "trodrigues", "to_user_id": 6477652, "to_user_id_str": "6477652", "to_user_name": "Tiago Rodrigues", "in_reply_to_status_id": 147692408816156670, "in_reply_to_status_id_str": "147692408816156676"}, +{"created_at": "Fri, 16 Dec 2011 14:59:48 +0000", "from_user": "trodrigues", "from_user_id": 6477652, "from_user_id_str": "6477652", "from_user_name": "Tiago Rodrigues", "geo": null, "id": 147692408816156670, "id_str": "147692408816156676", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1180079115/Tiago_Rodrigues_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1180079115/Tiago_Rodrigues_normal.jpeg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@dscape ah yes, that interesting and annoying species", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147692170109911040, "in_reply_to_status_id_str": "147692170109911040"}, +{"created_at": "Fri, 16 Dec 2011 14:58:22 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147692045866250240, "id_str": "147692045866250241", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@trodrigues yeah right :P", "to_user": "trodrigues", "to_user_id": 6477652, "to_user_id_str": "6477652", "to_user_name": "Tiago Rodrigues", "in_reply_to_status_id": 147691853377048580, "in_reply_to_status_id_str": "147691853377048579"}, +{"created_at": "Fri, 16 Dec 2011 14:57:36 +0000", "from_user": "trodrigues", "from_user_id": 6477652, "from_user_id_str": "6477652", "from_user_name": "Tiago Rodrigues", "geo": null, "id": 147691853377048580, "id_str": "147691853377048579", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1180079115/Tiago_Rodrigues_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1180079115/Tiago_Rodrigues_normal.jpeg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@dscape just to clarify, it was suspended because it was unusual to make US payments with this card", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147688489096445950, "in_reply_to_status_id_str": "147688489096445955"}, +{"created_at": "Fri, 16 Dec 2011 14:57:19 +0000", "from_user": "trodrigues", "from_user_id": 6477652, "from_user_id_str": "6477652", "from_user_name": "Tiago Rodrigues", "geo": null, "id": 147691781901918200, "id_str": "147691781901918209", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1180079115/Tiago_Rodrigues_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1180079115/Tiago_Rodrigues_normal.jpeg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@dscape my credit card was suspended when i made a payment to github. girl from the bank \"there's a payment to G I T hub?\"", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147688489096445950, "in_reply_to_status_id_str": "147688489096445955"}, +{"created_at": "Fri, 16 Dec 2011 14:45:23 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147688780189536260, "id_str": "147688780189536256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@jvduf Like A Boss http://t.co/9m3vD2Xq", "to_user": "jvduf", "to_user_id": 41679937, "to_user_id_str": "41679937", "to_user_name": "Jeroen van Duffelen", "in_reply_to_status_id": 147688520788615170, "in_reply_to_status_id_str": "147688520788615170"}, +{"created_at": "Fri, 16 Dec 2011 14:44:21 +0000", "from_user": "jvduf", "from_user_id": 41679937, "from_user_id_str": "41679937", "from_user_name": "Jeroen van Duffelen", "geo": null, "id": 147688520788615170, "id_str": "147688520788615170", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1251159750/Jeroen_van_Duffelen_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1251159750/Jeroen_van_Duffelen_normal.jpeg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@dscape yea lol, just playing with his camera while doing some hefty roll overs.", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147687460908974080, "in_reply_to_status_id_str": "147687460908974080"}, +{"created_at": "Fri, 16 Dec 2011 14:40:09 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147687460908974080, "id_str": "147687460908974080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@jvduf love it how anyone in that situation would be like throwing up with the high Gs and the guy is like \"whatever\" :)", "to_user": "jvduf", "to_user_id": 41679937, "to_user_id_str": "41679937", "to_user_name": "Jeroen van Duffelen", "in_reply_to_status_id": 147662873064255500, "in_reply_to_status_id_str": "147662873064255488"}, +{"created_at": "Fri, 16 Dec 2011 14:34:54 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147686139493486600, "id_str": "147686139493486592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @kstirman: @dscape #msft is all-in on javascript in win8 and going forward.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:31:48 +0000", "from_user": "kstirman", "from_user_id": 8723762, "from_user_id_str": "8723762", "from_user_name": "Kelly Stirman", "geo": null, "id": 147670262979117060, "id_str": "147670262979117057", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/210467530/244.mr.t.092806_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/210467530/244.mr.t.092806_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dscape #msft is all-in on javascript in win8 and going forward.", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147602150057451520, "in_reply_to_status_id_str": "147602150057451520"}, +{"created_at": "Fri, 16 Dec 2011 11:54:00 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147645647477145600, "id_str": "147645647477145600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "finished updating resume. feel like killing myself", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:36:48 +0000", "from_user": "raki", "from_user_id": 3918531, "from_user_id_str": "3918531", "from_user_name": "\\u3089\\u304D", "geo": null, "id": 147641318565347330, "id_str": "147641318565347329", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/192510397/196520_825773351_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/192510397/196520_825773351_normal.jpg", "source": "<a href="http://paper.li" rel="nofollow">Paper.li</a>", "text": "\\u3089\\u304D\\u306E\\u95A2\\u5FC3\\u4E8B \\u7D19\\u304C\\u66F4\\u65B0\\u3055\\u308C\\u307E\\u3057\\u305F\\uFF01 http://t.co/o5IZk1Sv \\u25B8 \\u672C\\u65E5\\u30C8\\u30C3\\u30D7\\u30CB\\u30E5\\u30FC\\u30B9\\u3092\\u63D0\\u4F9B\\u3057\\u3066\\u304F\\u308C\\u305F\\u307F\\u306A\\u3055\\u3093\\uFF1A @dscape @johnmaxnl @yoursbangaru @estrellaodosmel @pride_of_dream", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:29:50 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147639567091105800, "id_str": "147639567091105792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "Also How To go Mo http://t.co/AHu8fOXj /also via @gnat - awesome links today", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:24:24 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147638199555067900, "id_str": "147638199555067904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "Subway Map Visualization jQuery Plugin /at http://t.co/P2MKXkv1 /via @gnat", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:37:21 +0000", "from_user": "d3x7r0", "from_user_id": 8941692, "from_user_id_str": "8941692", "from_user_name": "Lu\\u00EDs Nabais", "geo": null, "id": 147626360377049100, "id_str": "147626360377049088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1638347843/me_avatar-strokes-flipped_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638347843/me_avatar-strokes-flipped_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@trodrigues @dscape you moving?", "to_user": "trodrigues", "to_user_id": 6477652, "to_user_id_str": "6477652", "to_user_name": "Tiago Rodrigues"}, +{"created_at": "Fri, 16 Dec 2011 10:35:22 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147625859698798600, "id_str": "147625859698798592", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@trodrigues good luck :)", "to_user": "trodrigues", "to_user_id": 6477652, "to_user_id_str": "6477652", "to_user_name": "Tiago Rodrigues", "in_reply_to_status_id": 147623354784944130, "in_reply_to_status_id_str": "147623354784944130"}, +{"created_at": "Fri, 16 Dec 2011 10:35:16 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147625836021948400, "id_str": "147625836021948416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "RT @trodrigues: Last day (@ Playfish HQ) http://t.co/HyMupOq3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:37:52 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147611391757533200, "id_str": "147611391757533184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "If anyone had any doubt @LeaVerou is a css wizard with amazing powers check out http://t.co/lFjtUh21 #win", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:21:57 +0000", "from_user": "rolandbouman", "from_user_id": 51754021, "from_user_id_str": "51754021", "from_user_name": "Roland Bouman", "geo": null, "id": 147607385928765440, "id_str": "147607385928765440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/287001025/roland_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/287001025/roland_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dscape I was sloppily throwing that all in one word. I haven't considered that distinction much.", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147607085440450560, "in_reply_to_status_id_str": "147607085440450560"}, +{"created_at": "Fri, 16 Dec 2011 09:21:51 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147607360423211000, "id_str": "147607360423211008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@rolandbouman depending on AWS is not always a good deal. e.g. heroku and their huge monthly bills. ask their investors about it :)", "to_user": "rolandbouman", "to_user_id": 51754021, "to_user_id_str": "51754021", "to_user_name": "Roland Bouman", "in_reply_to_status_id": 147607194177781760, "in_reply_to_status_id_str": "147607194177781760"}, +{"created_at": "Fri, 16 Dec 2011 09:21:12 +0000", "from_user": "rolandbouman", "from_user_id": 51754021, "from_user_id_str": "51754021", "from_user_name": "Roland Bouman", "geo": null, "id": 147607194177781760, "id_str": "147607194177781760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/287001025/roland_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/287001025/roland_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dscape Well it's not all bad for customers either. If they can for example offer better stability, uptime and ease of use than AWS.", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147606739062243330, "in_reply_to_status_id_str": "147606739062243328"}, +{"created_at": "Fri, 16 Dec 2011 09:20:46 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147607085440450560, "id_str": "147607085440450560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@rolandbouman there's the selling the platform vs. selling the infrastructure. they seem to be on different s-curves #paas #saas #iaas", "to_user": "rolandbouman", "to_user_id": 51754021, "to_user_id_str": "51754021", "to_user_name": "Roland Bouman", "in_reply_to_status_id": 147606856611794940, "in_reply_to_status_id_str": "147606856611794945"}, +{"created_at": "Fri, 16 Dec 2011 09:19:51 +0000", "from_user": "rolandbouman", "from_user_id": 51754021, "from_user_id_str": "51754021", "from_user_name": "Roland Bouman", "geo": null, "id": 147606856611794940, "id_str": "147606856611794945", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/287001025/roland_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/287001025/roland_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dscape Yeah. I just meant that MS finally found a way to make money on open source software: selling the platform on which it runs.", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147606293983662080, "in_reply_to_status_id_str": "147606293983662081"}, +{"created_at": "Fri, 16 Dec 2011 09:19:23 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147606739062243330, "id_str": "147606739062243328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@rolandbouman solid point. then again that is catastrophic to software quality. one should go for cheap and quality in software.or you loose", "to_user": "rolandbouman", "to_user_id": 51754021, "to_user_id_str": "51754021", "to_user_name": "Roland Bouman", "in_reply_to_status_id": 147606292364660740, "in_reply_to_status_id_str": "147606292364660736"}, +{"created_at": "Fri, 16 Dec 2011 09:17:51 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147606351848284160, "id_str": "147606351848284160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rolandbouman: @dscape If you're in the cloud business, making it as easy as possible for people to burn more CPU, disk and bandwidth is an excellent idea", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:17:37 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147606293983662080, "id_str": "147606293983662081", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@rolandbouman well there's a lot of space for things that aren't hadoop but can do large scale like @hadapt. but thats a whole new topic :)", "to_user": "rolandbouman", "to_user_id": 51754021, "to_user_id_str": "51754021", "to_user_name": "Roland Bouman", "in_reply_to_status_id": 147605887140380670, "in_reply_to_status_id_str": "147605887140380672"}, +{"created_at": "Fri, 16 Dec 2011 09:17:37 +0000", "from_user": "rolandbouman", "from_user_id": 51754021, "from_user_id_str": "51754021", "from_user_name": "Roland Bouman", "geo": null, "id": 147606292364660740, "id_str": "147606292364660736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/287001025/roland_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/287001025/roland_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dscape If you're in the cloud business, making it as easy as possible for people to burn more CPU, disk and bandwidth is an excellent idea", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147604614257188860, "in_reply_to_status_id_str": "147604614257188864"}, +{"created_at": "Fri, 16 Dec 2011 09:16:48 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147606088794120200, "id_str": "147606088794120193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "phone calls from bank of america. call them back they ask for my phone number. once entered they say I'm now on the \"do not call list\" #fail", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:16:00 +0000", "from_user": "rolandbouman", "from_user_id": 51754021, "from_user_id_str": "51754021", "from_user_name": "Roland Bouman", "geo": null, "id": 147605887140380670, "id_str": "147605887140380672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/287001025/roland_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/287001025/roland_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dscape ...more nodes. Preferably, on Azure. And where do most people stuff the data coming out of hadoop? Right, in a RDBMS data mart.", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147604614257188860, "in_reply_to_status_id_str": "147604614257188864"}, +{"created_at": "Fri, 16 Dec 2011 09:15:18 +0000", "from_user": "rolandbouman", "from_user_id": 51754021, "from_user_id_str": "51754021", "from_user_name": "Roland Bouman", "geo": null, "id": 147605709431914500, "id_str": "147605709431914496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/287001025/roland_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/287001025/roland_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dscape Well, the surprising thing to me is MS finally got it right :) To them, Hadoop is just a vector that makes people want to run...", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147604614257188860, "in_reply_to_status_id_str": "147604614257188864"}, +{"created_at": "Fri, 16 Dec 2011 09:10:57 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147604614257188860, "id_str": "147604614257188864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@rolandbouman the integration with hadoop is surprising though. at least in my experience working in db companies", "to_user": "rolandbouman", "to_user_id": 51754021, "to_user_id_str": "51754021", "to_user_name": "Roland Bouman", "in_reply_to_status_id": 147604017206403070, "in_reply_to_status_id_str": "147604017206403072"}, +{"created_at": "Fri, 16 Dec 2011 09:08:39 +0000", "from_user": "dampeebe", "from_user_id": 47422110, "from_user_id_str": "47422110", "from_user_name": "Damiaan Peeters", "geo": null, "id": 147604038068875260, "id_str": "147604038068875264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1325422170/42c8f255-7d06-4665-af5d-60eba23a538c_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1325422170/42c8f255-7d06-4665-af5d-60eba23a538c_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@dscape I don't know anything on NodeJS... Not yet that is :-)", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147603629514309630, "in_reply_to_status_id_str": "147603629514309632"}, +{"created_at": "Fri, 16 Dec 2011 09:08:34 +0000", "from_user": "rolandbouman", "from_user_id": 51754021, "from_user_id_str": "51754021", "from_user_name": "Roland Bouman", "geo": null, "id": 147604017206403070, "id_str": "147604017206403072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/287001025/roland_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/287001025/roland_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dscape Yes. MS is fighting hard to get developers back on their patch so the can sell more Azure. (which will strengthen Windows)", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147602150057451520, "in_reply_to_status_id_str": "147602150057451520"}, +{"created_at": "Fri, 16 Dec 2011 09:07:02 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147603629514309630, "id_str": "147603629514309632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dampeebe oh, super cool. im following you for the latest updates on node and windows then :)", "to_user": "dampeebe", "to_user_id": 47422110, "to_user_id_str": "47422110", "to_user_name": "Damiaan Peeters", "in_reply_to_status_id": 147603474199220220, "in_reply_to_status_id_str": "147603474199220224"}, +{"created_at": "Fri, 16 Dec 2011 09:06:25 +0000", "from_user": "dampeebe", "from_user_id": 47422110, "from_user_id_str": "47422110", "from_user_name": "Damiaan Peeters", "geo": null, "id": 147603474199220220, "id_str": "147603474199220224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1325422170/42c8f255-7d06-4665-af5d-60eba23a538c_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1325422170/42c8f255-7d06-4665-af5d-60eba23a538c_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@dscape Ah ok. Windows 8 will be launced (probably) next year, there is a new interface. It's called metro. http://t.co/BDhsDozB", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147602502680973300, "in_reply_to_status_id_str": "147602502680973312"}, +{"created_at": "Fri, 16 Dec 2011 09:02:37 +0000", "from_user": "ajlopez", "from_user_id": 14567622, "from_user_id_str": "14567622", "from_user_name": "ajlopez", "geo": null, "id": 147602519856644100, "id_str": "147602519856644096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/53769404/spiral_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/53769404/spiral_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @dscape: i ... don't give a shit about #microsoft but they seem pretty serious on javascript http://t.co/9ElGMYhv #nodejs #hadoop #azure", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:02:33 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147602502680973300, "id_str": "147602502680973312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@dampeebe what does this mean? sorry i don't use windows since I'm 18 years old :)", "to_user": "dampeebe", "to_user_id": 47422110, "to_user_id_str": "47422110", "to_user_name": "Damiaan Peeters", "in_reply_to_status_id": 147602356312354800, "in_reply_to_status_id_str": "147602356312354816"}, +{"created_at": "Fri, 16 Dec 2011 09:01:58 +0000", "from_user": "dampeebe", "from_user_id": 47422110, "from_user_id_str": "47422110", "from_user_name": "Damiaan Peeters", "geo": null, "id": 147602356312354800, "id_str": "147602356312354816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1325422170/42c8f255-7d06-4665-af5d-60eba23a538c_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1325422170/42c8f255-7d06-4665-af5d-60eba23a538c_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@dscape You can develop metro apps for windows 8 using Html & Javascript", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147602150057451520, "in_reply_to_status_id_str": "147602150057451520"}, +{"created_at": "Fri, 16 Dec 2011 09:01:09 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147602150057451520, "id_str": "147602150057451520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "i normally don't give a shit about #microsoft but they seem pretty serious on javascript http://t.co/zypyHHMb #nodejs #hadoop #azure", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:04:40 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147587935754125300, "id_str": "147587935754125312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @LeaVerou: Introducing dabblet: An interactive CSS playground (a.k.a. what I've been working on for the past 3 weeks) http://t.co/QOEAcWHk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 20:02:11 +0000", "from_user": "saadiq", "from_user_id": 5240, "from_user_id_str": "5240", "from_user_name": "Saadiq Rodgers-King", "geo": null, "id": 147406117650173950, "id_str": "147406117650173952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1593056981/IMG_0291_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593056981/IMG_0291_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@dscape For a while I didn't even have it installed on safari and would switch to chrome if I needed it. Got annoying. Annoying either way.", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147403304765370370, "in_reply_to_status_id_str": "147403304765370368"}, +{"created_at": "Thu, 15 Dec 2011 19:51:01 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147403304765370370, "id_str": "147403304765370368", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@saadiq flashblock :)", "to_user": "saadiq", "to_user_id": 5240, "to_user_id_str": "5240", "to_user_name": "Saadiq Rodgers-King", "in_reply_to_status_id": 147400025859821570, "in_reply_to_status_id_str": "147400025859821568"}, +{"created_at": "Thu, 15 Dec 2011 19:36:53 +0000", "from_user": "ramitos", "from_user_id": 15085633, "from_user_id_str": "15085633", "from_user_name": "S\\u00E9rgio Ramos", "geo": null, "id": 147399747630669820, "id_str": "147399747630669824", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1369166593/hd2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1369166593/hd2_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@dscape apanham-se muitas tradu\\u00E7\\u00F5es assim na tv. \\u00C9 triste...", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147395522855059460, "in_reply_to_status_id_str": "147395522855059456"}, +{"created_at": "Thu, 15 Dec 2011 19:26:33 +0000", "from_user": "pedrogte", "from_user_id": 16401507, "from_user_id_str": "16401507", "from_user_name": "Pedro Teixeira", "geo": null, "id": 147397148017836030, "id_str": "147397148017836032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1591778458/DSC02359-2_copy_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591778458/DSC02359-2_copy_normal.JPG", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@dscape portuguese subtitle translators never translate slang properly, they're just erm... bananas. /cc @mikeal", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147395522855059460, "in_reply_to_status_id_str": "147395522855059456"}, +{"created_at": "Thu, 15 Dec 2011 19:20:05 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147395522855059460, "id_str": "147395522855059456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "portuguese tv just translated douchebag for banana. this. is. epic. @mikeal @pedrogte", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:46:37 +0000", "from_user": "joelklabo", "from_user_id": 16474253, "from_user_id_str": "16474253", "from_user_name": "Joel Klabo", "geo": +{"coordinates": [37.7585,-122.4136], "type": "Point"}, "id": 147387101141405700, "id_str": "147387101141405696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1483338025/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1483338025/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@dscape yeah Verizon is better. Congrats on the job!", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147386562211094530, "in_reply_to_status_id_str": "147386562211094528"}, +{"created_at": "Thu, 15 Dec 2011 18:44:29 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147386562211094530, "id_str": "147386562211094528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@joelklabo wishing there was a SIM card alternative though", "to_user": "joelklabo", "to_user_id": 16474253, "to_user_id_str": "16474253", "to_user_name": "Joel Klabo", "in_reply_to_status_id": 147384881930969100, "in_reply_to_status_id_str": "147384881930969088"}, +{"created_at": "Thu, 15 Dec 2011 18:44:16 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147386509652279300, "id_str": "147386509652279296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @joelklabo: AT&T, we're over.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 14:24:59 +0000", "from_user": "ramitos", "from_user_id": 15085633, "from_user_id_str": "15085633", "from_user_name": "S\\u00E9rgio Ramos", "geo": null, "id": 147321256482574340, "id_str": "147321256482574336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1369166593/hd2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1369166593/hd2_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@dscape @pedrogte I think thins are changing. Apple's posture over the last 5 years: it changed too", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147320906585354240, "in_reply_to_status_id_str": "147320906585354240"}, +{"created_at": "Thu, 15 Dec 2011 14:23:35 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147320906585354240, "id_str": "147320906585354240", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@pedrogte no", "to_user": "pedrogte", "to_user_id": 16401507, "to_user_id_str": "16401507", "to_user_name": "Pedro Teixeira", "in_reply_to_status_id": 147317664329629700, "in_reply_to_status_id_str": "147317664329629697"}, +{"created_at": "Thu, 15 Dec 2011 13:03:45 +0000", "from_user": "zelandscape", "from_user_id": 84779359, "from_user_id_str": "84779359", "from_user_name": "Zelan Noviandi", "geo": null, "id": 147300814120173570, "id_str": "147300814120173569", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1098891019/andi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1098891019/andi_normal.jpg", "source": "<a href="http://m.tweete.net" rel="nofollow">m.tweete.net</a>", "text": "tanda2 apa ray? RT @rayagungsp: Tanda 2 tu kom! @zelandscape dscape lah ini kok kekirim ke email gw sendiri", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 12:56:35 +0000", "from_user": "rayagungsp", "from_user_id": 148736939, "from_user_id_str": "148736939", "from_user_name": "Ray Agung", "geo": null, "id": 147299009155960830, "id_str": "147299009155960832", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1653795345/b_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653795345/b_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Tanda 2 tu kom! @zelandscape dscape lah ini kok kekirim ke email gw sendiri", "to_user": "zelandscape", "to_user_id": 84779359, "to_user_id_str": "84779359", "to_user_name": "Zelan Noviandi", "in_reply_to_status_id": 147298215962738700, "in_reply_to_status_id_str": "147298215962738689"}, +{"created_at": "Thu, 15 Dec 2011 12:05:27 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147286144659374080, "id_str": "147286144659374080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@pedrogte Is \"Im on a bus\" the new \"I'm on a boat\" ? :)", "to_user": "pedrogte", "to_user_id": 16401507, "to_user_id_str": "16401507", "to_user_name": "Pedro Teixeira", "in_reply_to_status_id": 147283150433820670, "in_reply_to_status_id_str": "147283150433820672"}, +{"created_at": "Thu, 15 Dec 2011 12:04:05 +0000", "from_user": "DomKepska", "from_user_id": 418755278, "from_user_id_str": "418755278", "from_user_name": "Dominika", "geo": null, "id": 147285798071447550, "id_str": "147285798071447554", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694526887/Screen_shot_2011-11-25_at_2.52.09_PM_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694526887/Screen_shot_2011-11-25_at_2.52.09_PM_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@dscape i agree, although found a great and reliable tool, have you tried clickmeeting.com?", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147260068415545340, "in_reply_to_status_id_str": "147260068415545344"}, +{"created_at": "Thu, 15 Dec 2011 11:16:51 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147273911120310270, "id_str": "147273911120310272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @antirez: max limit of 10k clients in Redis removed: http://t.co/BFe3pDcs (this feature will get into 2.6)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 11:16:45 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147273886004813820, "id_str": "147273886004813824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @einaros: With the NodeSummit agenda up, and another colleague tricked into coming along, the end of January is starting to look very good! #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 10:27:12 +0000", "from_user": "dshaw", "from_user_id": 806757, "from_user_id_str": "806757", "from_user_name": "Daniel Shaw", "geo": null, "id": 147261416771026940, "id_str": "147261416771026944", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1552591406/angry_unicorn_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552591406/angry_unicorn_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@dscape Interesting.", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147259769126785020, "in_reply_to_status_id_str": "147259769126785024"}, +{"created_at": "Thu, 15 Dec 2011 10:21:50 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147260068415545340, "id_str": "147260068415545344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "google is going strong with hangouts to replace webex!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 10:20:39 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147259769126785020, "id_str": "147259769126785024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@dshaw you were right yesterday!! http://t.co/LX0ieOeA", "to_user": "dshaw", "to_user_id": 806757, "to_user_id_str": "806757", "to_user_name": "Daniel Shaw"}, +{"created_at": "Thu, 15 Dec 2011 10:18:30 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147259229546364930, "id_str": "147259229546364928", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@pedrogte yuppy :)", "to_user": "pedrogte", "to_user_id": 16401507, "to_user_id_str": "16401507", "to_user_name": "Pedro Teixeira", "in_reply_to_status_id": 147258623666556930, "in_reply_to_status_id_str": "147258623666556928"}, +{"created_at": "Thu, 15 Dec 2011 10:15:47 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147258543819595780, "id_str": "147258543819595776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@grtjn @joemfb thank you :)", "to_user": "grtjn", "to_user_id": 197173319, "to_user_id_str": "197173319", "to_user_name": "Geert", "in_reply_to_status_id": 147212450327048200, "in_reply_to_status_id_str": "147212450327048193"} +, +{"created_at": "Thu, 15 Dec 2011 10:15:38 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147258508121882620, "id_str": "147258508121882624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@anthonyallen left like two months ago :) Will be in new york soon :)", "to_user": "anthonyallen", "to_user_id": 18137639, "to_user_id_str": "18137639", "to_user_name": "anthonyallen", "in_reply_to_status_id": 147118777232924670, "in_reply_to_status_id_str": "147118777232924672"}, +{"created_at": "Thu, 15 Dec 2011 10:15:22 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147258439633084400, "id_str": "147258439633084417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@joelklabo not for now, Something Like Portugal -> London -> Maybe NY", "to_user": "joelklabo", "to_user_id": 16474253, "to_user_id_str": "16474253", "to_user_name": "Joel Klabo", "in_reply_to_status_id": 147094544956129280, "in_reply_to_status_id_str": "147094544956129280"}, +{"created_at": "Thu, 15 Dec 2011 08:02:13 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147224931665575940, "id_str": "147224931665575936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@pedrogte RT @al3xandru \\u267B Redis Bitmaps for Real-Time Metrics at Spool http://t.co/ldS2A47N #Redis #PoweredbyNoSQL #Spool", "to_user": "pedrogte", "to_user_id": 16401507, "to_user_id_str": "16401507", "to_user_name": "Pedro Teixeira"}, +{"created_at": "Thu, 15 Dec 2011 07:12:37 +0000", "from_user": "grtjn", "from_user_id": 197173319, "from_user_id_str": "197173319", "from_user_name": "Geert", "geo": null, "id": 147212450327048200, "id_str": "147212450327048193", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1478737900/IMG_7433___-_Copy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1478737900/IMG_7433___-_Copy_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@dscape congrats.. ;)", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job"}, +{"created_at": "Thu, 15 Dec 2011 07:11:07 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147212071254237200, "id_str": "147212071254237184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "RT @trodrigues: this probably means i am finally brain dead. i always said i wouldn't make it to 30.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 06:32:47 +0000", "from_user": "indutny", "from_user_id": 92915570, "from_user_id_str": "92915570", "from_user_name": "Fedor Indutny", "geo": null, "id": 147202425240035330, "id_str": "147202425240035329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1342629236/e474c72a97af94dd27feb53be98ceab9_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1342629236/e474c72a97af94dd27feb53be98ceab9_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: A big welcome to @dscape, the latest addition to Team Nodejitsu! #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 01:43:38 +0000", "from_user": "joemfb", "from_user_id": 352494697, "from_user_id_str": "352494697", "from_user_name": "Joseph Bryan", "geo": null, "id": 147129657077153800, "id_str": "147129657077153793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1652610111/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652610111/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@dscape Congrats on the new gig!", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job"}, +{"created_at": "Thu, 15 Dec 2011 01:00:24 +0000", "from_user": "anthonyallen", "from_user_id": 18137639, "from_user_id_str": "18137639", "from_user_name": "anthonyallen", "geo": null, "id": 147118777232924670, "id_str": "147118777232924672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1466748993/anthony-allen_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1466748993/anthony-allen_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dscape are you no longer at ML?", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job"}, +{"created_at": "Thu, 15 Dec 2011 00:36:00 +0000", "from_user": "nunoveloso", "from_user_id": 19092476, "from_user_id_str": "19092476", "from_user_name": "Nuno Veloso", "geo": null, "id": 147112638038548480, "id_str": "147112638038548480", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1144969164/06824303-001b-4657-9184-2886f9efc3d9_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1144969164/06824303-001b-4657-9184-2886f9efc3d9_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@dscape n\\u00E3o tenho tido vida nestes \\u00FAltimos tempos, estou atolado de projectos! Vida de freelancer, I suppose :-)", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147011058064818180, "in_reply_to_status_id_str": "147011058064818176"}, +{"created_at": "Wed, 14 Dec 2011 23:36:37 +0000", "from_user": "jvduf", "from_user_id": 41679937, "from_user_id_str": "41679937", "from_user_name": "Jeroen van Duffelen", "geo": null, "id": 147097691099373570, "id_str": "147097691099373568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1251159750/Jeroen_van_Duffelen_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1251159750/Jeroen_van_Duffelen_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: A big welcome to @dscape, the latest addition to Team Nodejitsu! #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 23:24:07 +0000", "from_user": "joelklabo", "from_user_id": 16474253, "from_user_id_str": "16474253", "from_user_name": "Joel Klabo", "geo": null, "id": 147094544956129280, "id_str": "147094544956129280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1483338025/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1483338025/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dscape you moving to NYC?", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147070132664008700, "in_reply_to_status_id_str": "147070132664008705"}, +{"created_at": "Wed, 14 Dec 2011 21:49:29 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147070732046831600, "id_str": "147070732046831617", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@_alejandromg ty :)", "to_user": "_alejandromg", "to_user_id": 53717698, "to_user_id_str": "53717698", "to_user_name": "Alejandro Morales", "in_reply_to_status_id": 147070661137940480, "in_reply_to_status_id_str": "147070661137940480"}, +{"created_at": "Wed, 14 Dec 2011 21:49:12 +0000", "from_user": "_alejandromg", "from_user_id": 53717698, "from_user_id_str": "53717698", "from_user_name": "Alejandro Morales", "geo": null, "id": 147070661137940480, "id_str": "147070661137940480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1473584095/2011-07-27-214648m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1473584095/2011-07-27-214648m_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dscape Awesome news for nodejitsu! ;) Congrats.", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147070132664008700, "in_reply_to_status_id_str": "147070132664008705"}, +{"created_at": "Wed, 14 Dec 2011 21:45:49 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147069809220272130, "id_str": "147069809220272128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: A big welcome to @dscape, the latest addition to Team Nodejitsu! #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:37:59 +0000", "from_user": "ddtrejo", "from_user_id": 58248334, "from_user_id_str": "58248334", "from_user_name": "David Trejo", "geo": null, "id": 147067837222105100, "id_str": "147067837222105088", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/343749589/davidsculpture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/343749589/davidsculpture_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@nodejitsu @dscape congrats dscape!", "to_user": "nodejitsu", "to_user_id": 157442008, "to_user_id_str": "157442008", "to_user_name": "Nodejitsu", "in_reply_to_status_id": 147060300984758270, "in_reply_to_status_id_str": "147060300984758272"}, +{"created_at": "Wed, 14 Dec 2011 21:33:39 +0000", "from_user": "NeCkEr", "from_user_id": 14176673, "from_user_id_str": "14176673", "from_user_name": "NeCkEr", "geo": null, "id": 147066746371702800, "id_str": "147066746371702784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1656954487/imgSnow_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656954487/imgSnow_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "congratz RT @nodejitsu A big welcome to @dscape, the latest addition to Team Nodejitsu! #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:25:58 +0000", "from_user": "indexzero", "from_user_id": 13696102, "from_user_id_str": "13696102", "from_user_name": "Charlie Robbins", "geo": null, "id": 147064812956950530, "id_str": "147064812956950529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1179850399/P1000093bw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1179850399/P1000093bw_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: A big welcome to @dscape, the latest addition to Team Nodejitsu! #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:22:42 +0000", "from_user": "ramitos", "from_user_id": 15085633, "from_user_id_str": "15085633", "from_user_name": "S\\u00E9rgio Ramos", "geo": null, "id": 147063989426331650, "id_str": "147063989426331648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1369166593/hd2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1369166593/hd2_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@dscape congratulations :)", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job"}, +{"created_at": "Wed, 14 Dec 2011 21:15:14 +0000", "from_user": "cronopio2", "from_user_id": 14474239, "from_user_id_str": "14474239", "from_user_name": "D\\u24B6niel \\u24B6ristizabal \\u2622", "geo": null, "id": 147062110952755200, "id_str": "147062110952755200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1587000370/DennisRitchie_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587000370/DennisRitchie_normal.gif", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "GREAT!! More hands for awesome tools!! RT @nodejitsu: A big welcome to @dscape, the latest addition to Team Nodejitsu! #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:14:38 +0000", "from_user": "_alejandromg", "from_user_id": 53717698, "from_user_id_str": "53717698", "from_user_name": "Alejandro Morales", "geo": null, "id": 147061960943472640, "id_str": "147061960943472640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1473584095/2011-07-27-214648m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1473584095/2011-07-27-214648m_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: A big welcome to @dscape, the latest addition to Team Nodejitsu! #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:12:32 +0000", "from_user": "3rdEden", "from_user_id": 14350255, "from_user_id_str": "14350255", "from_user_name": "Arnout Kazemier", "geo": null, "id": 147061431228039170, "id_str": "147061431228039168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Congratulations @dscape! RT \\u201C@nodejitsu: A big welcome to @dscape, the latest addition to Team Nodejitsu! #nodejs\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:12:25 +0000", "from_user": "TheDeveloper", "from_user_id": 18001569, "from_user_id_str": "18001569", "from_user_name": "Geoff Wagstaff", "geo": null, "id": 147061404787150850, "id_str": "147061404787150848", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1413195938/the_developer_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1413195938/the_developer_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@nodejitsu @dscape congrats!", "to_user": "nodejitsu", "to_user_id": 157442008, "to_user_id_str": "157442008", "to_user_name": "Nodejitsu", "in_reply_to_status_id": 147060300984758270, "in_reply_to_status_id_str": "147060300984758272"}, +{"created_at": "Wed, 14 Dec 2011 21:09:07 +0000", "from_user": "mikeal", "from_user_id": 668423, "from_user_id_str": "668423", "from_user_name": "Mikeal", "geo": null, "id": 147060574549835780, "id_str": "147060574549835777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1554648053/avatar-bw_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554648053/avatar-bw_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: A big welcome to @dscape, the latest addition to Team Nodejitsu! #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:08:42 +0000", "from_user": "marak", "from_user_id": 110465841, "from_user_id_str": "110465841", "from_user_name": "marak squires", "geo": null, "id": 147060467318259700, "id_str": "147060467318259713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1387685536/maraknormal_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1387685536/maraknormal_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: A big welcome to @dscape, the latest addition to Team Nodejitsu! #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:08:02 +0000", "from_user": "nodejitsu", "from_user_id": 157442008, "from_user_id_str": "157442008", "from_user_name": "Nodejitsu", "geo": null, "id": 147060300984758270, "id_str": "147060300984758272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "A big welcome to @dscape, the latest addition to Team Nodejitsu! #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 20:53:11 +0000", "from_user": "dshaw", "from_user_id": 806757, "from_user_id_str": "806757", "from_user_name": "Daniel Shaw", "geo": null, "id": 147056563662749700, "id_str": "147056563662749696", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1552591406/angry_unicorn_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552591406/angry_unicorn_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@dscape Congrats!", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147009691636088830, "in_reply_to_status_id_str": "147009691636088833"}, +{"created_at": "Wed, 14 Dec 2011 19:38:20 +0000", "from_user": "Zamith", "from_user_id": 24297915, "from_user_id_str": "24297915", "from_user_name": "Lu\\u00EDs Ferreira", "geo": null, "id": 147037726217211900, "id_str": "147037726217211904", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676984519/foto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676984519/foto_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@dscape Ai est\\u00E1 o novo trabalho. Parab\\u00E9ns! ;)", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147010294290464770, "in_reply_to_status_id_str": "147010294290464768"}, +{"created_at": "Wed, 14 Dec 2011 18:58:59 +0000", "from_user": "pedrogte", "from_user_id": 16401507, "from_user_id_str": "16401507", "from_user_name": "Pedro Teixeira", "geo": null, "id": 147027825399037950, "id_str": "147027825399037952", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1591778458/DSC02359-2_copy_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591778458/DSC02359-2_copy_normal.JPG", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@dscape congrats dood! =D", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147009691636088830, "in_reply_to_status_id_str": "147009691636088833"}, +{"created_at": "Wed, 14 Dec 2011 18:46:07 +0000", "from_user": "NodeKohai", "from_user_id": 299396879, "from_user_id_str": "299396879", "from_user_name": "Ko Hai", "geo": null, "id": 147024586989502460, "id_str": "147024586989502464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1357415286/saupload_happy_robot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1357415286/saupload_happy_robot_normal.jpg", "source": "<a href="http://github.com/nodejitsu/kohai" rel="nofollow">NodeKohai</a>", "text": ".@dscape Welcome!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 18:45:43 +0000", "from_user": "booyaa", "from_user_id": 719673, "from_user_id_str": "719673", "from_user_name": "booyaa", "geo": null, "id": 147024486489788400, "id_str": "147024486489788417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/640332281/boo-sm-avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/640332281/boo-sm-avatar_normal.png", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": ".@dscape you just joined the @nodejitsu team?!?", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147009691636088830, "in_reply_to_status_id_str": "147009691636088833"}, +{"created_at": "Wed, 14 Dec 2011 18:00:05 +0000", "from_user": "grechaw", "from_user_id": 15186837, "from_user_id_str": "15186837", "from_user_name": "Charles Greer", "geo": null, "id": 147013002850349060, "id_str": "147013002850349056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1643886259/edgehead_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643886259/edgehead_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@dscape Yes, absolutely.", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147012367627190270, "in_reply_to_status_id_str": "147012367627190272"}, +{"created_at": "Wed, 14 Dec 2011 17:57:34 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147012367627190270, "id_str": "147012367627190272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@grechaw ahaha :D btw ill be in sfo in the end of jan. :) drinks?", "to_user": "grechaw", "to_user_id": 15186837, "to_user_id_str": "15186837", "to_user_name": "Charles Greer", "in_reply_to_status_id": 147011597288751100, "in_reply_to_status_id_str": "147011597288751105"}, +{"created_at": "Wed, 14 Dec 2011 17:54:30 +0000", "from_user": "grechaw", "from_user_id": 15186837, "from_user_id_str": "15186837", "from_user_name": "Charles Greer", "geo": null, "id": 147011597288751100, "id_str": "147011597288751105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1643886259/edgehead_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643886259/edgehead_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@dscape \"New Job for Nuno Job\" does have a lot of possibilities. I'll see what I can do.", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job"}, +{"created_at": "Wed, 14 Dec 2011 17:52:22 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147011058064818180, "id_str": "147011058064818176", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@nunoveloso ja tweetavas mais. tnho visto pouco de ti :)", "to_user": "nunoveloso", "to_user_id": 19092476, "to_user_id_str": "19092476", "to_user_name": "Nuno Veloso", "in_reply_to_status_id": 147010790627622900, "in_reply_to_status_id_str": "147010790627622913"}, +{"created_at": "Wed, 14 Dec 2011 17:51:18 +0000", "from_user": "nunoveloso", "from_user_id": 19092476, "from_user_id_str": "19092476", "from_user_name": "Nuno Veloso", "geo": null, "id": 147010790627622900, "id_str": "147010790627622913", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1144969164/06824303-001b-4657-9184-2886f9efc3d9_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1144969164/06824303-001b-4657-9184-2886f9efc3d9_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@dscape Parab\\u00E9ns, senhor! :-)", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147009691636088830, "in_reply_to_status_id_str": "147009691636088833"}, +{"created_at": "Wed, 14 Dec 2011 17:50:50 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147010673476509700, "id_str": "147010673476509696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@grechaw I want a rap song for it :P", "to_user": "grechaw", "to_user_id": 15186837, "to_user_id_str": "15186837", "to_user_name": "Charles Greer", "in_reply_to_status_id": 147010577640861700, "in_reply_to_status_id_str": "147010577640861697"}, +{"created_at": "Wed, 14 Dec 2011 17:50:27 +0000", "from_user": "grechaw", "from_user_id": 15186837, "from_user_id_str": "15186837", "from_user_name": "Charles Greer", "geo": null, "id": 147010577640861700, "id_str": "147010577640861697", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1643886259/edgehead_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643886259/edgehead_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@dscape Congratulations!", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147009691636088830, "in_reply_to_status_id_str": "147009691636088833"}, +{"created_at": "Wed, 14 Dec 2011 17:49:20 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147010294290464770, "id_str": "147010294290464768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "cheap air travel, no longer jobless. overall good day", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 17:46:56 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147009691636088830, "id_str": "147009691636088833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "WOOP! \"Nuno, looks like you're all good. Welcome to Nodejitsu.\" @saadiq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 16:29:15 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 146990144145207300, "id_str": "146990144145207296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "booked some travel for #nodesummit :) see you there? friends interested in attending feel free to ping me for possible discount codes :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 16:27:00 +0000", "from_user": "saadiq", "from_user_id": 5240, "from_user_id_str": "5240", "from_user_name": "Saadiq Rodgers-King", "geo": null, "id": 146989574021849100, "id_str": "146989574021849088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1593056981/IMG_0291_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593056981/IMG_0291_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@dscape @louisck I've been looking for an excuse to use @stripe on something. http://t.co/18CZp4eh", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 146974688046886900, "in_reply_to_status_id_str": "146974688046886912"}, +{"created_at": "Wed, 14 Dec 2011 16:23:36 +0000", "from_user": "saadiq", "from_user_id": 5240, "from_user_id_str": "5240", "from_user_name": "Saadiq Rodgers-King", "geo": null, "id": 146988722167095300, "id_str": "146988722167095296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1593056981/IMG_0291_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593056981/IMG_0291_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@dscape @louisck I thought the exact same thing. But for such a wonderful endeavor, I was willing to overlook it.", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 146974688046886900, "in_reply_to_status_id_str": "146974688046886912"}, +{"created_at": "Wed, 14 Dec 2011 15:32:54 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 146975959696932860, "id_str": "146975959696932864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@louisck check http://t.co/BbL9ql3Y for the reasons why no one wants to give a single cent to paypal. ever. it was hard for me to press buy", "to_user": "louisck", "to_user_id": 22027186, "to_user_id_str": "22027186", "to_user_name": "Louis C.K."}, +{"created_at": "Wed, 14 Dec 2011 15:31:03 +0000", "from_user": "nebiros", "from_user_id": 36046575, "from_user_id_str": "36046575", "from_user_name": "Juan Felipe Alvarez", "geo": null, "id": 146975494846423040, "id_str": "146975494846423040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1639261759/e8a237c9c023bbf01735d0d333ec8ef8_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639261759/e8a237c9c023bbf01735d0d333ec8ef8_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "\\u201C@dscape: Current Status: An @npm xmas http://t.co/tOavYGgJ\\u201D <= awesome! =^.^=~~~", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 15:30:07 +0000", "from_user": "landeiro", "from_user_id": 14819457, "from_user_id_str": "14819457", "from_user_name": "Pedro Landeiro", "geo": null, "id": 146975262704287740, "id_str": "146975262704287744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/106454968/00042_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/106454968/00042_1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dscape Louis Rocks! :)", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 146974688046886900, "in_reply_to_status_id_str": "146974688046886912"}, +{"created_at": "Wed, 14 Dec 2011 15:16:38 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 146971865510981630, "id_str": "146971865510981632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "reading http://t.co/0vvkpYC8 /cc @hij1nx @jvduf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 13:33:34 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 146945929549844480, "id_str": "146945929549844480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "so people seemed to have liked the `npm xmas` easter egg /cc @izs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 12:03:12 +0000", "from_user": "grtjn", "from_user_id": 197173319, "from_user_id_str": "197173319", "from_user_name": "Geert", "geo": null, "id": 146923187341500400, "id_str": "146923187341500417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1478737900/IMG_7433___-_Copy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1478737900/IMG_7433___-_Copy_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@dscape :) Pity you can't run that code.. ;-)", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 146922820558000130, "in_reply_to_status_id_str": "146922820558000129"}, +{"created_at": "Wed, 14 Dec 2011 12:01:44 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 146922820558000130, "id_str": "146922820558000129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "Current Status: An @npm xmas http://t.co/UspbWM6o", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 08:54:27 +0000", "from_user": "kriesse", "from_user_id": 11531602, "from_user_id_str": "11531602", "from_user_name": "kriesse", "geo": +{"coordinates": [37.7525,-122.4081], "type": "Point"}, "id": 146875688715173900, "id_str": "146875688715173888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/613818147/triangle_kriesse_01_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/613818147/triangle_kriesse_01_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@dscape Ha, that's awesome news! I'll be just back from my Berlin visit then!", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 146870621807185920, "in_reply_to_status_id_str": "146870621807185920"}, +{"created_at": "Wed, 14 Dec 2011 08:34:19 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 146870621807185920, "id_str": "146870621807185920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@kriesse its been two months already? Wow. Will be visiting on the last week of January. I \\nSee you 2012! :)", "to_user": "kriesse", "to_user_id": 11531602, "to_user_id_str": "11531602", "to_user_name": "kriesse", "in_reply_to_status_id": 146855087371857920, "in_reply_to_status_id_str": "146855087371857920"}, +{"created_at": "Tue, 13 Dec 2011 15:48:05 +0000", "from_user": "davefinton", "from_user_id": 257070163, "from_user_id_str": "257070163", "from_user_name": "Dave Finton", "geo": null, "id": 146617393072963600, "id_str": "146617393072963584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1513632812/Photo_on_2011-08-25_at_20.28__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1513632812/Photo_on_2011-08-25_at_20.28__2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dscape @adamretter A cat that licks the air like that usually means it was weened too early as a kitten. Otherwise, the cat is fine. :^D", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 146544021769158660, "in_reply_to_status_id_str": "146544021769158656"}, +{"created_at": "Tue, 13 Dec 2011 15:12:17 +0000", "from_user": "plnkeholdemot", "from_user_id": 267775856, "from_user_id_str": "267775856", "from_user_name": "sjtnev", "geo": null, "id": 146608384928522240, "id_str": "146608384928522241", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1604121040/bang_copy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1604121040/bang_copy_normal.png", "source": "<a href="http://kitahei.cocolog-nifty.com/youyou/2007/04/foo_custominfo__6ab8.html" rel="nofollow">foo_twit_post</a>", "text": "#nowplaying On DScape Mix - Aphex Twin - [On No.01] http://t.co/WIFJ9Jmi #Electronic http://t.co/T9QgeNO1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 10:56:32 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 146544021769158660, "id_str": "146544021769158656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "cat starts licking my air. turns out i had cat food in my air.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 19:11:05 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 146306092119494660, "id_str": "146306092119494657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: I got a new grown-up style website!\\nhttp://t.co/3HN8iCl3\\nThanks to @glass and @mle_tanaka and all others who were involved.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 12:51:11 +0000", "from_user": "DesignScapeArch", "from_user_id": 169002472, "from_user_id_str": "169002472", "from_user_name": "Design Scape", "geo": null, "id": 146210490031423500, "id_str": "146210490031423488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1160069451/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1160069451/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Check out our website and Facebook page for project updates, Turfhall Stadium, http://t.co/D8MGhr9i, http://t.co/DqJfXSl5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 10:33:04 +0000", "from_user": "mathias", "from_user_id": 532923, "from_user_id_str": "532923", "from_user_name": "Mathias Bynens \\uE00D", "geo": null, "id": 146175730726862850, "id_str": "146175730726862848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1255767431/kung-fu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1255767431/kung-fu_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@dscape To be honest, these days @jdalton does all the work ;) +@3rdeden", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 146141874145607680, "in_reply_to_status_id_str": "146141874145607680"}, +{"created_at": "Mon, 12 Dec 2011 08:19:38 +0000", "from_user": "3rdEden", "from_user_id": 14350255, "from_user_id_str": "14350255", "from_user_name": "Arnout Kazemier", "geo": null, "id": 146142150827048960, "id_str": "146142150827048960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@dscape it's that module :p, see the first link in the tweet ;) @mathias", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 146141874145607680, "in_reply_to_status_id_str": "146141874145607680"}, +{"created_at": "Mon, 12 Dec 2011 08:18:32 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 146141874145607680, "id_str": "146141874145607680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@3rdEden why not http://t.co/UkCwnwy9 by @mathias?", "to_user": "3rdEden", "to_user_id": 14350255, "to_user_id_str": "14350255", "to_user_name": "Arnout Kazemier", "in_reply_to_status_id": 146141673745944580, "in_reply_to_status_id_str": "146141673745944576"}, +{"created_at": "Mon, 12 Dec 2011 08:17:44 +0000", "from_user": "3rdEden", "from_user_id": 14350255, "from_user_id_str": "14350255", "from_user_name": "Arnout Kazemier", "geo": null, "id": 146141673745944580, "id_str": "146141673745944576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@dscape For socket.io we started using http://t.co/iqkJgkSw and our own benchmark `driver`: http://t.co/A8QY68Me", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 146132665605689340, "in_reply_to_status_id_str": "146132665605689345"}, +{"created_at": "Mon, 12 Dec 2011 07:41:57 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 146132665605689340, "id_str": "146132665605689345", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "dear #lazyweb who got tips on performance testing node.js modules?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} + +, +{"created_at": "Mon, 19 Dec 2011 19:00:11 +0000", "from_user": "cheer420", "from_user_id": 367192211, "from_user_id_str": "367192211", "from_user_name": "Francheska Burneo", "geo": null, "id": 148840065517355000, "id_str": "148840065517355010", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702450364/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702450364/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@goldennVixen_ @iam_majestee NO THAT BABY WAS A CLOWN WITH THAT BAD BAD HAIR !!", "to_user": "goldennVixen_", "to_user_id": 200873305, "to_user_id_str": "200873305", "to_user_name": "Heavyn Arianna .", "in_reply_to_status_id": 148839936894832640, "in_reply_to_status_id_str": "148839936894832640"}, +{"created_at": "Mon, 19 Dec 2011 19:00:06 +0000", "from_user": "moliidolli", "from_user_id": 301137206, "from_user_id_str": "301137206", "from_user_name": "DS...", "geo": null, "id": 148840042155081730, "id_str": "148840042155081729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1690725147/261206_10150689911340487_524100486_19362969_760242_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690725147/261206_10150689911340487_524100486_19362969_760242_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "#iwasthatkid who was the class clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:03 +0000", "from_user": "faatiihaa", "from_user_id": 290426785, "from_user_id_str": "290426785", "from_user_name": "Fa", "geo": null, "id": 148840032789209100, "id_str": "148840032789209088", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Je bent de zekere weg in mijn labyrint. Je bent de clown die steeds mijn glimlach vindt..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:58 +0000", "from_user": "LaurenAkainyah", "from_user_id": 96433836, "from_user_id_str": "96433836", "from_user_name": "Laur\\u00E8n Akainyah ", "geo": null, "id": 148840008864903170, "id_str": "148840008864903168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1632983418/375980_10101083873056569_6854173_69927073_2076810231_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632983418/375980_10101083873056569_6854173_69927073_2076810231_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@RealColdMusic lmao. you are a clown!!!", "to_user": "RealColdMusic", "to_user_id": 84937845, "to_user_id_str": "84937845", "to_user_name": "Travis Bruce", "in_reply_to_status_id": 148837072625598460, "in_reply_to_status_id_str": "148837072625598464"}, +{"created_at": "Mon, 19 Dec 2011 18:59:52 +0000", "from_user": "prettylittletay", "from_user_id": 281784310, "from_user_id_str": "281784310", "from_user_name": "tayler kratsas \\u2655", "geo": null, "id": 148839985120944130, "id_str": "148839985120944128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701558474/J7PFUp04_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701558474/J7PFUp04_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I wish I NEVER met that fucking clown.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:52 +0000", "from_user": "cheer420", "from_user_id": 367192211, "from_user_id_str": "367192211", "from_user_name": "Francheska Burneo", "geo": null, "id": 148839985083187200, "id_str": "148839985083187200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702450364/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702450364/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @goldennVixen_: @cheer420 @iAm_Majestee ; ahahaha , Francheska youre a clown . THAT BAD BAD .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:51 +0000", "from_user": "FckAhTwittaNAME", "from_user_id": 229286728, "from_user_id_str": "229286728", "from_user_name": "Berke Side ", "geo": null, "id": 148839981975216130, "id_str": "148839981975216130", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700695627/profile_image_1324237173771_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700695627/profile_image_1324237173771_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "IF Yu Gotta Nigga,.Why Yu Geekin For Me To Call Yu? .Dis Da Time Yu Suppose To Be Talkin To Him.#Clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:49 +0000", "from_user": "sa2ny2004", "from_user_id": 18785182, "from_user_id_str": "18785182", "from_user_name": "sa2ny2004", "geo": null, "id": 148839973142011900, "id_str": "148839973142011905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/418838882/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/418838882/twitterProfilePhoto_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Ex #Spurs forward Dennis Rodman is a clown on the court, literally: http://t.co/yJZqghY3 via @projectspurs @kyleboenitz #gospursgo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:40 +0000", "from_user": "goldennVixen_", "from_user_id": 200873305, "from_user_id_str": "200873305", "from_user_name": "Heavyn Arianna .", "geo": null, "id": 148839936894832640, "id_str": "148839936894832640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691759725/RJQoP081_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691759725/RJQoP081_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@cheer420 @iAm_Majestee ; ahahaha , Francheska youre a clown . THAT BAD BAD .", "to_user": "cheer420", "to_user_id": 367192211, "to_user_id_str": "367192211", "to_user_name": "Francheska Burneo", "in_reply_to_status_id": 148839682455773200, "in_reply_to_status_id_str": "148839682455773184"}, +{"created_at": "Mon, 19 Dec 2011 18:59:36 +0000", "from_user": "Hes_DatGuy", "from_user_id": 262191218, "from_user_id_str": "262191218", "from_user_name": "Jarrelle Dixon", "geo": null, "id": 148839919744331780, "id_str": "148839919744331776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1670659626/Snapshot_20111116_10_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670659626/Snapshot_20111116_10_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@Mulatto_Chick_: @Hes_DatGuy Lmao your a clown\" ^_^", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:32 +0000", "from_user": "fuckfollowingme", "from_user_id": 99126536, "from_user_id_str": "99126536", "from_user_name": "Stacia Rtm", "geo": null, "id": 148839900211449860, "id_str": "148839900211449857", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689287373/DSC00612_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689287373/DSC00612_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "LOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOL WARREN YOU CLOWN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:17 +0000", "from_user": "mari_escobar12", "from_user_id": 235977475, "from_user_id_str": "235977475", "from_user_name": "Mari Escobar \\uE056\\uE328\\uE314\\uE018\\uE035", "geo": null, "id": 148839838802640900, "id_str": "148839838802640896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700980644/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700980644/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @navayekita: You wear more makeup than a clown.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:17 +0000", "from_user": "Rave2Crave", "from_user_id": 80165577, "from_user_id_str": "80165577", "from_user_name": "Raven Ingram", "geo": null, "id": 148839837338837000, "id_str": "148839837338836992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692799447/XIf9JBT2_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692799447/XIf9JBT2_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@arieparker09: \"@Rave2Crave: My circle small..&& lil Raven like it like that\" ARE YOU PREGNANT? ?? >>> NOOO U CLOWN...LOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:03 +0000", "from_user": "YOitsharaexoxo", "from_user_id": 174107618, "from_user_id_str": "174107618", "from_user_name": "sha-rae ", "geo": null, "id": 148839778564050940, "id_str": "148839778564050944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696039472/331557725_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696039472/331557725_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_shesBRI_lliant: I'm never mad , I'm just laughing at a clown.. who else wanna join the circus wave ?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:48 +0000", "from_user": "GrittyGentleman", "from_user_id": 330407206, "from_user_id_str": "330407206", "from_user_name": "The Gritty Gentleman", "geo": null, "id": 148839717004247040, "id_str": "148839717004247040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1429307183/264289_10150301169456357_694371356_9661943_7622606_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1429307183/264289_10150301169456357_694371356_9661943_7622606_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Kim Jong Il: North Korea Dictator/Clown Dies of "Fatigue Caused By Train Ride" - @Gizmodo http://t.co/GT0zzd4E", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:46 +0000", "from_user": "Troyvul", "from_user_id": 126450180, "from_user_id_str": "126450180", "from_user_name": "Troybert ", "geo": null, "id": 148839708716314620, "id_str": "148839708716314624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690183597/Middle_Finger_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690183597/Middle_Finger_2_normal.jpg", "source": "<a href="http://getsocialscope.com" rel="nofollow">SocialScope</a>", "text": "@ZipSquad_JihaD @Remixznflow82 you better clown a lot more teams before you get to my bills", "to_user": "ZipSquad_JihaD", "to_user_id": 263474444, "to_user_id_str": "263474444", "to_user_name": "Notorious B.I.Gamist", "in_reply_to_status_id": 148837735313051650, "in_reply_to_status_id_str": "148837735313051648"}, +{"created_at": "Mon, 19 Dec 2011 18:58:45 +0000", "from_user": "xxxj_leexxx", "from_user_id": 111043497, "from_user_id_str": "111043497", "from_user_name": "Jamie~Lee Cunningham", "geo": null, "id": 148839703360180220, "id_str": "148839703360180224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1609455599/mobile_pix_336_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609455599/mobile_pix_336_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @RichardOBarry: Dolphins are free-ranging, intelligent, & complex wild animals, and they belong in the oceans, not playing the clown in our human schemes.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:42 +0000", "from_user": "BadAsz_Ke", "from_user_id": 57461567, "from_user_id_str": "57461567", "from_user_name": "Ke Bitch", "geo": null, "id": 148839690307518460, "id_str": "148839690307518465", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695802670/ke_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695802670/ke_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Lol diss hoe is soooo illiterate but she tryna clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:40 +0000", "from_user": "cheer420", "from_user_id": 367192211, "from_user_id_str": "367192211", "from_user_name": "Francheska Burneo", "geo": null, "id": 148839682455773200, "id_str": "148839682455773184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702450364/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702450364/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@iAm_Majestee @goldennvixen_ no bittie HEAVYN IS THE ONLY CLOWN HERE !", "to_user": "iAm_Majestee", "to_user_id": 323558564, "to_user_id_str": "323558564", "to_user_name": "Majestee_Payton \\u2661 ", "in_reply_to_status_id": 148839494580310000, "in_reply_to_status_id_str": "148839494580310016"}, +{"created_at": "Mon, 19 Dec 2011 18:58:37 +0000", "from_user": "PrettyGurls_Roc", "from_user_id": 261438784, "from_user_id_str": "261438784", "from_user_name": "Brittany Levi", "geo": null, "id": 148839665766641660, "id_str": "148839665766641664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700279349/P17MW7oM_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700279349/P17MW7oM_normal", "source": "<a href="http://www.apple.com" rel="nofollow">Camera on iOS</a>", "text": "He a whole clown that nappy head boy next to the girl that's doing here hair in the red @Allabtmonet yea that's youlol http://t.co/MCPHYHag", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:20 +0000", "from_user": "Mr_Kohen", "from_user_id": 256156272, "from_user_id_str": "256156272", "from_user_name": "Donald Lee Moore Jr", "geo": null, "id": 148839598578085900, "id_str": "148839598578085888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1633333610/155750_154370291275382_100001072369226_260448_2468998_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633333610/155750_154370291275382_100001072369226_260448_2468998_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Nothing but a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:53 +0000", "from_user": "PatdaRock5", "from_user_id": 396224629, "from_user_id_str": "396224629", "from_user_name": "Pat White", "geo": null, "id": 148839484232962050, "id_str": "148839484232962048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1679456026/PatdaRock5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679456026/PatdaRock5_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Oh_Bitchie_One Lol I bet Wayne wasn't a clown when he said it", "to_user": "Oh_Bitchie_One", "to_user_id": 24136473, "to_user_id_str": "24136473", "to_user_name": "Ms. Jackson", "in_reply_to_status_id": 148839003104358400, "in_reply_to_status_id_str": "148839003104358400"}, +{"created_at": "Mon, 19 Dec 2011 18:57:47 +0000", "from_user": "_partyworld", "from_user_id": 151372636, "from_user_id_str": "151372636", "from_user_name": "\\u3010\\u30D1\\u30FC\\u30C6\\u30A3\\u30EF\\u30FC\\u30EB\\u30C9\\u3011\\u30D1\\u30FC\\u30C6\\u30A3\\u30FC\\u30B0\\u30C3\\u30BA\\u901A\\u8CA9", "geo": null, "id": 148839462879772670, "id_str": "148839462879772672", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546408457/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546408457/image_normal.jpg", "source": "<a href="http://www.party-world.jp/" rel="nofollow">UNI-SUPPLY</a>", "text": "Adult Clown Shoes 802386 \\u901A\\u8CA9 http://t.co/BI2JB2lm | \\u30D4\\u30A8\\u30ED\\u30B9\\u30FC\\u30C4\\u30FB\\u30A4\\u30D9\\u30F3\\u30C8\\u8863\\u88C5 | \\u30A4\\u30D9\\u30F3\\u30C8\\u30B0\\u30C3\\u30BA | \\u30D1\\u30FC\\u30C6\\u30A3\\u30FC\\u30B0\\u30C3\\u30BA | \\u30D1\\u30FC\\u30C6\\u30A3\\u30EF\\u30FC\\u30EB\\u30C9 | \\u30E6\\u30CB\\u30B5\\u30D7\\u30E9\\u30A4\\u30BA\\u306E\\u30AA\\u30F3\\u30E9\\u30A4\\u30F3\\u30B7\\u30E7\\u30C3\\u30D7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:40 +0000", "from_user": "_June30th", "from_user_id": 110093903, "from_user_id_str": "110093903", "from_user_name": "Shayy Carter", "geo": null, "id": 148839433582542850, "id_str": "148839433582542848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689198470/384396_270683146315256_100001207179195_850737_356641092_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689198470/384396_270683146315256_100001207179195_850737_356641092_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Boobs_n_Vodka LMao Nope I Havent Talked Too Your BestFriend. Yall Mine As Well Get Over It Sooo We Clown Fr New Years As The #TRIO", "to_user": "Boobs_n_Vodka", "to_user_id": 32554308, "to_user_id_str": "32554308", "to_user_name": "London Dior \\u2653", "in_reply_to_status_id": 148838592528125950, "in_reply_to_status_id_str": "148838592528125952"}, +{"created_at": "Mon, 19 Dec 2011 18:57:36 +0000", "from_user": "WaynieFukinPooh", "from_user_id": 294356806, "from_user_id_str": "294356806", "from_user_name": "Wayne", "geo": null, "id": 148839416255889400, "id_str": "148839416255889408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1682371447/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682371447/me_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Disrespect me and I clown I'm the type of bitch to throw down", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:35 +0000", "from_user": "larmanius", "from_user_id": 14271513, "from_user_id_str": "14271513", "from_user_name": "larmanius", "geo": null, "id": 148839410673258500, "id_str": "148839410673258497", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/52298886/dr_manhattan_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/52298886/dr_manhattan_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iowahawkblog: First Al Davis, then Kim Jong-Il; bad year for insane clown-haired dictators in novelty Elvis sunglasses", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:34 +0000", "from_user": "hattiepearson", "from_user_id": 148128032, "from_user_id_str": "148128032", "from_user_name": "Hattie Pearson", "geo": null, "id": 148839408332840960, "id_str": "148839408332840960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1552763055/226198_10150304244963868_505338867_9627751_555882_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552763055/226198_10150304244963868_505338867_9627751_555882_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@EdwardUsher it's Barrington right? Met a clown called that the other week. Yeah sure - would be a pleasure :) x", "to_user": "EdwardUsher", "to_user_id": 90703872, "to_user_id_str": "90703872", "to_user_name": "Edward Usher", "in_reply_to_status_id": 148838471220461570, "in_reply_to_status_id_str": "148838471220461569"}, +{"created_at": "Mon, 19 Dec 2011 18:57:31 +0000", "from_user": "RAkO2One", "from_user_id": 375108507, "from_user_id_str": "375108507", "from_user_name": "Raquel Chavez", "geo": null, "id": 148839393908637700, "id_str": "148839393908637696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1685395112/Bqnd4dWC_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685395112/Bqnd4dWC_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "you got me sheddin tears of a clown .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:29 +0000", "from_user": "KIDDD_SWAGG", "from_user_id": 271435333, "from_user_id_str": "271435333", "from_user_name": "Markus Macklin", "geo": null, "id": 148839386430189570, "id_str": "148839386430189568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695326115/SWAGG_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695326115/SWAGG_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "shxt chillen waitin for dem to get out of scool and den iama clown wit clown wit da nikkas", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:18 +0000", "from_user": "_shesBRI_lliant", "from_user_id": 277187099, "from_user_id_str": "277187099", "from_user_name": "\\u2661 B r i a n n a \\u2661", "geo": null, "id": 148839340838101000, "id_str": "148839340838100993", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691874561/_shesBRI_lliant_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691874561/_shesBRI_lliant_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "I'm never mad , I'm just laughing at a clown.. who else wanna join the circus wave ?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:11 +0000", "from_user": "heathshing", "from_user_id": 322781009, "from_user_id_str": "322781009", "from_user_name": "Heather Shingleton", "geo": null, "id": 148839311360532480, "id_str": "148839311360532481", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697083705/jlk_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697083705/jlk_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "congrats to @rensant19 for getting accepted to clown collegeee(; #loveyouuuuuuu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:08 +0000", "from_user": "willwork4_SHOES", "from_user_id": 74232890, "from_user_id_str": "74232890", "from_user_name": "Young, Fly & Fla$hy", "geo": null, "id": 148839296537866240, "id_str": "148839296537866240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700162034/IMG_20111217_232243-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700162034/IMG_20111217_232243-1_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "That awkward moment when u talk to a dude & his man try go at you...that's clown shit where's the loyalty? smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:59 +0000", "from_user": "MusicLovingKita", "from_user_id": 387676947, "from_user_id_str": "387676947", "from_user_name": "Markita Wilkins ", "geo": null, "id": 148839261708365820, "id_str": "148839261708365824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691797571/scarf_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691797571/scarf_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Thurt530 clown follow back!", "to_user": "Thurt530", "to_user_id": 361270008, "to_user_id_str": "361270008", "to_user_name": "Uuuuu Knoooo"}, +{"created_at": "Mon, 19 Dec 2011 18:56:57 +0000", "from_user": "Cnote_8", "from_user_id": 41796786, "from_user_id_str": "41796786", "from_user_name": "Cnote", "geo": null, "id": 148839252392820740, "id_str": "148839252392820736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1657184563/0Y2H6t7Q_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657184563/0Y2H6t7Q_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@MnyGrpFkd @mzphilly215 @mimladen29 @KingDAVIDda4th Smfh clown shit Cdfu", "to_user": "MnyGrpFkd", "to_user_id": 99964426, "to_user_id_str": "99964426", "to_user_name": "Mike Brown", "in_reply_to_status_id": 148839064664145920, "in_reply_to_status_id_str": "148839064664145920"}, +{"created_at": "Mon, 19 Dec 2011 18:56:47 +0000", "from_user": "MrsMoon2B2012", "from_user_id": 231957426, "from_user_id_str": "231957426", "from_user_name": "Marquita Anderson", "geo": null, "id": 148839207811551230, "id_str": "148839207811551232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696528486/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696528486/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "<<<Currently in the lab making a BUG SPRAY TO KEEP CLOWN ASS NIGGAS AWAY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:46 +0000", "from_user": "ThugOf_DaYear", "from_user_id": 262920335, "from_user_id_str": "262920335", "from_user_name": "Daren Coleman", "geo": null, "id": 148839203906662400, "id_str": "148839203906662400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1678317920/ThugOf_DaYear_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678317920/ThugOf_DaYear_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Ole clown ass nigga", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:40 +0000", "from_user": "TheRealSkeet", "from_user_id": 31576801, "from_user_id_str": "31576801", "from_user_name": "Skeety Pablo", "geo": null, "id": 148839179592286200, "id_str": "148839179592286208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1659057325/TheRealSkeet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659057325/TheRealSkeet_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "this nigga E a fuccin clown lmao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:36 +0000", "from_user": "JoStallion", "from_user_id": 213931550, "from_user_id_str": "213931550", "from_user_name": "Josef Tolliver", "geo": null, "id": 148839163242885120, "id_str": "148839163242885121", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1673908766/a84pK3sA_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673908766/a84pK3sA_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "5 mo days til I touchdown me and my crew know we gone clown!!!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:33 +0000", "from_user": "KennyBdHURDLER", "from_user_id": 278865136, "from_user_id_str": "278865136", "from_user_name": "KennyB", "geo": +{"coordinates": [32.766,-97.3499], "type": "Point"}, "id": 148839150064377860, "id_str": "148839150064377856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688742857/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688742857/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Lmao HATER RT @ExcellenceJr: RT @KennyBdHURDLER: I am tired of been Fort Worth fast I wanna be COLLEGE fast.---- hahahaha clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:27 +0000", "from_user": "yaboyCP23", "from_user_id": 64335994, "from_user_id_str": "64335994", "from_user_name": "Christian Parlato", "geo": null, "id": 148839125372502000, "id_str": "148839125372502018", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1265995198/6534_119828636482_532661482_2508474_224129_s_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1265995198/6534_119828636482_532661482_2508474_224129_s_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@msoevyn9 he's such a clown haha", "to_user": "msoevyn9", "to_user_id": 170109778, "to_user_id_str": "170109778", "to_user_name": "Marc Soevyn"}, +{"created_at": "Mon, 19 Dec 2011 18:56:26 +0000", "from_user": "RazB32", "from_user_id": 88661589, "from_user_id_str": "88661589", "from_user_name": "\\u042F\\u2654\\u212C", "geo": null, "id": 148839121769611260, "id_str": "148839121769611264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1435961917/BBBBBBBBBB_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1435961917/BBBBBBBBBB_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@MandaFierce hahaha i was thinking \"hmm i better say on youtube\" LOL clown :D x", "to_user": "MandaFierce", "to_user_id": 32370524, "to_user_id_str": "32370524", "to_user_name": "Amanda Jellyman", "in_reply_to_status_id": 148839007688728580, "in_reply_to_status_id_str": "148839007688728576"}, +{"created_at": "Mon, 19 Dec 2011 18:56:24 +0000", "from_user": "EducatedAfrican", "from_user_id": 24629490, "from_user_id_str": "24629490", "from_user_name": "Terrence Taylor", "geo": null, "id": 148839110935724030, "id_str": "148839110935724033", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1669383136/34772_1433875700566_1643139839_1059608_520921_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669383136/34772_1433875700566_1643139839_1059608_520921_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@CoachRoni @JRACK89 @kthehitman @moneysteph Soccer sounds like the move.. lets meet up somewhere so I can clown on yall niggas", "to_user": "CoachRoni", "to_user_id": 338041488, "to_user_id_str": "338041488", "to_user_name": "Coach Roni", "in_reply_to_status_id": 148838864449044480, "in_reply_to_status_id_str": "148838864449044480"}, +{"created_at": "Mon, 19 Dec 2011 18:56:21 +0000", "from_user": "JeremiahTweet", "from_user_id": 380511689, "from_user_id_str": "380511689", "from_user_name": "Eric Enfield Gerarde", "geo": null, "id": 148839101230100480, "id_str": "148839101230100481", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1561264595/320976_2207188054267_1084381477_33781900_4466797_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1561264595/320976_2207188054267_1084381477_33781900_4466797_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@_WebMeister you're gonna die clown! #I'mcomingforyou", "to_user": "_WebMeister", "to_user_id": 218664255, "to_user_id_str": "218664255", "to_user_name": "Jimmy Webster", "in_reply_to_status_id": 148625835975381000, "in_reply_to_status_id_str": "148625835975380992"}, +{"created_at": "Mon, 19 Dec 2011 18:56:17 +0000", "from_user": "_partyworld", "from_user_id": 151372636, "from_user_id_str": "151372636", "from_user_name": "\\u3010\\u30D1\\u30FC\\u30C6\\u30A3\\u30EF\\u30FC\\u30EB\\u30C9\\u3011\\u30D1\\u30FC\\u30C6\\u30A3\\u30FC\\u30B0\\u30C3\\u30BA\\u901A\\u8CA9", "geo": null, "id": 148839082871627780, "id_str": "148839082871627777", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546408457/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546408457/image_normal.jpg", "source": "<a href="http://www.party-world.jp/" rel="nofollow">UNI-SUPPLY</a>", "text": "\\u301025%OFF\\u301115346 Snazzy Clown \\u901A\\u8CA9 http://t.co/lbKbKrt3 | \\u30D4\\u30A8\\u30ED\\u30B9\\u30FC\\u30C4\\u30FB\\u30A4\\u30D9\\u30F3\\u30C8\\u8863\\u88C5 | \\u30A4\\u30D9\\u30F3\\u30C8\\u30B0\\u30C3\\u30BA | \\u30D1\\u30FC\\u30C6\\u30A3\\u30FC\\u30B0\\u30C3\\u30BA | \\u30D1\\u30FC\\u30C6\\u30A3\\u30EF\\u30FC\\u30EB\\u30C9 | \\u30E6\\u30CB\\u30B5\\u30D7\\u30E9\\u30A4\\u30BA\\u306E\\u30AA\\u30F3\\u30E9\\u30A4\\u30F3\\u30B7\\u30E7\\u30C3\\u30D7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:13 +0000", "from_user": "GiorgiaWoods", "from_user_id": 30645690, "from_user_id_str": "30645690", "from_user_name": "giorgia woods ", "geo": null, "id": 148839067503706100, "id_str": "148839067503706112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1689637563/ScreenShot_2011-12-12_20-52-01_by_s4bb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689637563/ScreenShot_2011-12-12_20-52-01_by_s4bb_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Its nice that in the 'Mistletoe' video Bieber sign's his 'girlfriends' card with his full name. As if she didn't know who he is. #clown.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:10 +0000", "from_user": "will_WILDfire", "from_user_id": 265761468, "from_user_id_str": "265761468", "from_user_name": "Will Hoggard", "geo": null, "id": 148839053356314620, "id_str": "148839053356314624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701274566/Picture_of_me_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701274566/Picture_of_me_2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@EimanHenson haha, thank you! you really don't know how much that means, seeing as you guys just clown the hell outta me all the time. *tear", "to_user": "EimanHenson", "to_user_id": 71075577, "to_user_id_str": "71075577", "to_user_name": "Eiman Henson", "in_reply_to_status_id": 148838285358268400, "in_reply_to_status_id_str": "148838285358268417"}, +{"created_at": "Mon, 19 Dec 2011 18:56:07 +0000", "from_user": "RishiRamdien", "from_user_id": 255708974, "from_user_id_str": "255708974", "from_user_name": "RishiRamdienn'", "geo": null, "id": 148839039984877570, "id_str": "148839039984877569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1663973737/22_203_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663973737/22_203_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"@thijskoerntjes: @RishiRamdien nee clown. ook jij hebt pw.\" // oh, thanks mann", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:05 +0000", "from_user": "TamzDoll", "from_user_id": 205846969, "from_user_id_str": "205846969", "from_user_name": "Lucy Lupac \\uD0C0\\uBBF8 \\uB9AC ", "geo": null, "id": 148839033877962750, "id_str": "148839033877962752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697909728/TamzDoll_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697909728/TamzDoll_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "lmaoooo now my mom AND @KiKivonSeoul mom just gon clown my nose!!", "to_user": "KiKivonSeoul", "to_user_id": 276971171, "to_user_id_str": "276971171", "to_user_name": "\\uC81C\\uB2C8 J.Gotti", "in_reply_to_status_id": 148837530429685760, "in_reply_to_status_id_str": "148837530429685760"}, +{"created_at": "Mon, 19 Dec 2011 18:56:05 +0000", "from_user": "Itz_ALLGuuD", "from_user_id": 374018116, "from_user_id_str": "374018116", "from_user_name": "That 80's Babe", "geo": null, "id": 148839031311052800, "id_str": "148839031311052800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683135968/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683135968/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@CandyLadii_13 sup clown", "to_user": "CandyLadii_13", "to_user_id": 335461130, "to_user_id_str": "335461130", "to_user_name": "Kaniesha Greer"}, +{"created_at": "Mon, 19 Dec 2011 18:56:02 +0000", "from_user": "Msindepedent22", "from_user_id": 301160812, "from_user_id_str": "301160812", "from_user_name": "nephtali", "geo": null, "id": 148839020846260220, "id_str": "148839020846260224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1644264966/Photo_on_2011-11-17_at_17.31__3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644264966/Photo_on_2011-11-17_at_17.31__3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @YasmineAkib: Ochocino is oneee clown assss nigggaaaa BAHAHAHAHAAA!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:58 +0000", "from_user": "Oh_Bitchie_One", "from_user_id": 24136473, "from_user_id_str": "24136473", "from_user_name": "Ms. Jackson", "geo": null, "id": 148839003104358400, "id_str": "148839003104358400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1659123495/photo-1_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659123495/photo-1_normal.JPG", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Clown. RT @PatdaRock5: Sit your Five Dollar ass down before I make Change", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:55 +0000", "from_user": "Bri_MostWanted", "from_user_id": 155925547, "from_user_id_str": "155925547", "from_user_name": "Bri_DafuckinREALEST", "geo": null, "id": 148838992924786700, "id_str": "148838992924786688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627313937/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627313937/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@DaFashionMONSTA: @Bri_MostWanted MEET ME N DA MALL ITS GOING DWNNNNN! LOL!\\u201D/slick pulla off probation bout to clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:53 +0000", "from_user": "MrsMoon2B2012", "from_user_id": 231957426, "from_user_id_str": "231957426", "from_user_name": "Marquita Anderson", "geo": null, "id": 148838984385175550, "id_str": "148838984385175552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696528486/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696528486/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "# # #THEY SHOULD HAVE BUG SPRAY FOR CLOWN ASS NIGGAS!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:49 +0000", "from_user": "D_Beal", "from_user_id": 32119865, "from_user_id_str": "32119865", "from_user_name": "Sega", "geo": null, "id": 148838965271732220, "id_str": "148838965271732224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682693960/2011-12-06_14.52.50-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682693960/2011-12-06_14.52.50-1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "but the one i had earlier included gay black clown kids on crack hiding out in a purple cab", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:41 +0000", "from_user": "Snezzy_N", "from_user_id": 360283556, "from_user_id_str": "360283556", "from_user_name": "\\u273DLil Miss Sunshine\\u273D", "geo": null, "id": 148838933554409470, "id_str": "148838933554409472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697815831/peuf_20111217_237_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697815831/peuf_20111217_237_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Your boss? RT @FUNDI_PMB: So this clown replaced me lol fast kanje?! Owkay :-) hahaha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:36 +0000", "from_user": "xAirForce_GIRLx", "from_user_id": 398746092, "from_user_id_str": "398746092", "from_user_name": "Nisha'RaShawn", "geo": null, "id": 148838913392381950, "id_str": "148838913392381952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702281015/nisha8_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702281015/nisha8_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@_xAn0ther_R0und haha love you to shanikerrrrrrrr #InMYCountryVoice and u being a clown for tomah?", "to_user": "_xAn0ther_R0und", "to_user_id": 50162259, "to_user_id_str": "50162259", "to_user_name": "Shanika'", "in_reply_to_status_id": 148838679085977600, "in_reply_to_status_id_str": "148838679085977601"}, +{"created_at": "Mon, 19 Dec 2011 18:55:36 +0000", "from_user": "oonanana", "from_user_id": 224062542, "from_user_id_str": "224062542", "from_user_name": "Nubian Gem", "geo": null, "id": 148838912473829380, "id_str": "148838912473829376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688754933/2011-11-10_14-18-58_347_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688754933/2011-11-10_14-18-58_347_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@_EricReynolds @dat_negro_chico pullllllease eric..ur the only clown so shut that shit up -_- .", "to_user": "_EricReynolds", "to_user_id": 428703645, "to_user_id_str": "428703645", "to_user_name": "Eric Reynolds", "in_reply_to_status_id": 148810323036606460, "in_reply_to_status_id_str": "148810323036606464"}, +{"created_at": "Mon, 19 Dec 2011 18:55:33 +0000", "from_user": "ExcellenceJr", "from_user_id": 243053982, "from_user_id_str": "243053982", "from_user_name": "Ej", "geo": null, "id": 148838899328876540, "id_str": "148838899328876544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1572698529/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572698529/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @KennyBdHURDLER: I am tired of been Fort Worth fast I wanna be COLLEGE fast.---- hahahaha clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:31 +0000", "from_user": "WoodsLounge", "from_user_id": 330397275, "from_user_id_str": "330397275", "from_user_name": "The Wood", "geo": null, "id": 148838889996558340, "id_str": "148838889996558337", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1634363288/yeahhh_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634363288/yeahhh_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MATHHOFFA: @CHARLIECLIPS whatever \"rapper\" .... i know it wont be the same talk in person so ima end the show... dont say my name no more. ur a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:28 +0000", "from_user": "goldennVixen_", "from_user_id": 200873305, "from_user_id_str": "200873305", "from_user_name": "Heavyn Arianna .", "geo": null, "id": 148838879716311040, "id_str": "148838879716311040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691759725/RJQoP081_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691759725/RJQoP081_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@cheer420 @iAm_Majestee ; how am i a clown , lmfaoo ,", "to_user": "cheer420", "to_user_id": 367192211, "to_user_id_str": "367192211", "to_user_name": "Francheska Burneo", "in_reply_to_status_id": 148838625126264830, "in_reply_to_status_id_str": "148838625126264832"}, +{"created_at": "Mon, 19 Dec 2011 18:55:28 +0000", "from_user": "iAmChellyJames", "from_user_id": 237051235, "from_user_id_str": "237051235", "from_user_name": "chelly", "geo": null, "id": 148838877027762180, "id_str": "148838877027762177", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1603137855/Photo_00031_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1603137855/Photo_00031_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@shesFLAWLESSS i guess its on that Chris Paul shit to then , CLOWN .", "to_user": "shesFLAWLESSS", "to_user_id": 199165878, "to_user_id_str": "199165878", "to_user_name": "Shan\\u2665", "in_reply_to_status_id": 148838132241018880, "in_reply_to_status_id_str": "148838132241018880"}, +{"created_at": "Mon, 19 Dec 2011 18:55:19 +0000", "from_user": "BarryMurphy89", "from_user_id": 311711125, "from_user_id_str": "311711125", "from_user_name": "Barry 'Brick' Murphy", "geo": null, "id": 148838841401360400, "id_str": "148838841401360386", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1585346159/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585346159/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@UnitedLoyalists you're a sad sectarian clown", "to_user": "UnitedLoyalists", "to_user_id": 398831975, "to_user_id_str": "398831975", "to_user_name": "Mainland Loyalists ", "in_reply_to_status_id": 145875157678956540, "in_reply_to_status_id_str": "145875157678956544"}, +{"created_at": "Mon, 19 Dec 2011 18:55:13 +0000", "from_user": "moneypowerink", "from_user_id": 287693563, "from_user_id_str": "287693563", "from_user_name": "\\u272AGabriel\\u272A", "geo": null, "id": 148838814499082240, "id_str": "148838814499082242", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1690956415/sam_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690956415/sam_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "i wana command a whole army of demons and set them on some angels i wana swing it out with jesus one bang drop that clown wna splash him out", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:04 +0000", "from_user": "PrettiNik23", "from_user_id": 35425638, "from_user_id_str": "35425638", "from_user_name": "Simply Nicole", "geo": null, "id": 148838775756308480, "id_str": "148838775756308480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1657805102/nik24_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657805102/nik24_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "This clown said camp out for them concords so i'll know its real...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:00 +0000", "from_user": "KawaiiLovesLife", "from_user_id": 377162552, "from_user_id_str": "377162552", "from_user_name": "Kawaii Love\\uE324\\uE313", "geo": null, "id": 148838762309353470, "id_str": "148838762309353472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700694057/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700694057/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "So This Guy Rashad Just Called Me CLOWN!!*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:54 +0000", "from_user": "TeeBake23", "from_user_id": 113850673, "from_user_id_str": "113850673", "from_user_name": "Dawg , I'm Tiara \\uE42A", "geo": null, "id": 148838735641972740, "id_str": "148838735641972736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686680224/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686680224/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@_AdotB lmfao . you tryna clown on twitter ! you aint gone stall me out ?", "to_user": "_AdotB", "to_user_id": 231132850, "to_user_id_str": "231132850", "to_user_name": "Aaron Baysdon", "in_reply_to_status_id": 148838394779287550, "in_reply_to_status_id_str": "148838394779287552"}, +{"created_at": "Mon, 19 Dec 2011 18:54:47 +0000", "from_user": "thijskoerntjes", "from_user_id": 101534024, "from_user_id_str": "101534024", "from_user_name": "Thijs", "geo": null, "id": 148838707959578620, "id_str": "148838707959578624", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1310562006/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1310562006/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@RishiRamdien nee clown. ook jij hebt pw.", "to_user": "RishiRamdien", "to_user_id": 255708974, "to_user_id_str": "255708974", "to_user_name": "RishiRamdienn'", "in_reply_to_status_id": 148838511863271420, "in_reply_to_status_id_str": "148838511863271424"}, +{"created_at": "Mon, 19 Dec 2011 18:54:43 +0000", "from_user": "_partyworld", "from_user_id": 151372636, "from_user_id_str": "151372636", "from_user_name": "\\u3010\\u30D1\\u30FC\\u30C6\\u30A3\\u30EF\\u30FC\\u30EB\\u30C9\\u3011\\u30D1\\u30FC\\u30C6\\u30A3\\u30FC\\u30B0\\u30C3\\u30BA\\u901A\\u8CA9", "geo": null, "id": 148838690343489540, "id_str": "148838690343489536", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546408457/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546408457/image_normal.jpg", "source": "<a href="http://www.party-world.jp/" rel="nofollow">UNI-SUPPLY</a>", "text": "55023 Clown \\u901A\\u8CA9 http://t.co/CowiNjIQ | \\u30D4\\u30A8\\u30ED\\u30B9\\u30FC\\u30C4\\u30FB\\u30A4\\u30D9\\u30F3\\u30C8\\u8863\\u88C5 | \\u30A4\\u30D9\\u30F3\\u30C8\\u30B0\\u30C3\\u30BA | \\u30D1\\u30FC\\u30C6\\u30A3\\u30FC\\u30B0\\u30C3\\u30BA | \\u30D1\\u30FC\\u30C6\\u30A3\\u30EF\\u30FC\\u30EB\\u30C9 | \\u30E6\\u30CB\\u30B5\\u30D7\\u30E9\\u30A4\\u30BA\\u306E\\u30AA\\u30F3\\u30E9\\u30A4\\u30F3\\u30B7\\u30E7\\u30C3\\u30D7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:39 +0000", "from_user": "RedPlanetWoman", "from_user_id": 143150768, "from_user_id_str": "143150768", "from_user_name": "Elizabeth (not Liz!)", "geo": null, "id": 148838670974201860, "id_str": "148838670974201857", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701579522/npDnA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701579522/npDnA_normal.jpg", "source": "<a href="http://stone.com/Twittelator" rel="nofollow">Twittelator</a>", "text": "He's our silly little clown:) RT @ShannonLetoArmy @RedPlanetWoman Bwahahahah xD I love this song really XD Perfect for Shan xD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:38 +0000", "from_user": "PNPinkNastyPN", "from_user_id": 274200594, "from_user_id_str": "274200594", "from_user_name": "Pink Nasty", "geo": null, "id": 148838669170638850, "id_str": "148838669170638849", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1291976434/20054646-3737006_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1291976434/20054646-3737006_normal.jpg", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "Something about Kansas brings out your inner fan-boy status for Insane Clown Posse. #DrivingAroundKsAmongstMethHeads", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:32 +0000", "from_user": "DivaDria", "from_user_id": 60569760, "from_user_id_str": "60569760", "from_user_name": "Dria aka The Boobs", "geo": null, "id": 148838642855583740, "id_str": "148838642855583745", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693053622/DivaDria_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693053622/DivaDria_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "This convo is done. Lol clown \\u201C@blessthefall101 @DivaDria that argument does not apply to what I said #uhavefailed\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:27 +0000", "from_user": "temptingtrouble", "from_user_id": 34946543, "from_user_id_str": "34946543", "from_user_name": "Priceless Trouble ", "geo": null, "id": 148838622974578700, "id_str": "148838622974578688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693070767/red7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693070767/red7_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Some gyal clown a pour out liquor for a next man what left as the man get invited to cum watch the gal clown poppi show. Some man shameless.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:17 +0000", "from_user": "TheRealist_434", "from_user_id": 34824049, "from_user_id_str": "34824049", "from_user_name": "Tan Norwood", "geo": null, "id": 148838578330415100, "id_str": "148838578330415104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691296871/Asap_DontTrap_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691296871/Asap_DontTrap_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "What goes on in our house should stay in our house but no it's been carried across the street #clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:16 +0000", "from_user": "ChrisAziz21", "from_user_id": 207190462, "from_user_id_str": "207190462", "from_user_name": "Chris Aziz", "geo": null, "id": 148838575893516300, "id_str": "148838575893516288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1661284624/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661284624/image_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">YouTube on iOS</a>", "text": "Haha they clown Tim Tebow @mossisontop http://t.co/TD6r3AaF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:15 +0000", "from_user": "xAirForce_GIRLx", "from_user_id": 398746092, "from_user_id_str": "398746092", "from_user_name": "Nisha'RaShawn", "geo": null, "id": 148838571745349630, "id_str": "148838571745349633", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702281015/nisha8_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702281015/nisha8_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@TeamCrankOnYou o and u being a clown and i got the new black and white one its pretty", "to_user": "TeamCrankOnYou", "to_user_id": 60322405, "to_user_id_str": "60322405", "to_user_name": "Tia Dozier", "in_reply_to_status_id": 148837429485375500, "in_reply_to_status_id_str": "148837429485375488"}, +{"created_at": "Mon, 19 Dec 2011 18:54:10 +0000", "from_user": "ShaQuira_Monroe", "from_user_id": 338404049, "from_user_id_str": "338404049", "from_user_name": "Charleste ShaQuira(:", "geo": null, "id": 148838551717548030, "id_str": "148838551717548034", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702389002/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702389002/image_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@kaeDope_ llf it was too boring...,you know im a clown! And that #rollingCHAIR", "to_user": "kaeDope_", "to_user_id": 100057667, "to_user_id_str": "100057667", "to_user_name": "Kaee Folarin", "in_reply_to_status_id": 148837595957305340, "in_reply_to_status_id_str": "148837595957305346"}, +{"created_at": "Mon, 19 Dec 2011 18:54:10 +0000", "from_user": "TheRealMrsEKP", "from_user_id": 355083910, "from_user_id_str": "355083910", "from_user_name": "Jane Doe", "geo": null, "id": 148838549616205820, "id_str": "148838549616205825", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1638555233/kMu3PkX1_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638555233/kMu3PkX1_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@tonedog89 lls u a clown", "to_user": "tonedog89", "to_user_id": 240361219, "to_user_id_str": "240361219", "to_user_name": "Tony Foster", "in_reply_to_status_id": 148838192223752200, "in_reply_to_status_id_str": "148838192223752192"}, +{"created_at": "Mon, 19 Dec 2011 18:54:07 +0000", "from_user": "Ayzee_92", "from_user_id": 350177728, "from_user_id_str": "350177728", "from_user_name": "Ayanda Mthimkhulu", "geo": null, "id": 148838537624686600, "id_str": "148838537624686592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699684936/IMG-20111117-00848_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699684936/IMG-20111117-00848_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Who's this clown on fb who thinks he has the right to message me & say I have a \"reverse yom hlaba\" no guy ! Where's my pink boxing glove ?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:01 +0000", "from_user": "40VirginSteve", "from_user_id": 280811319, "from_user_id_str": "280811319", "from_user_name": "Steve Carell", "geo": null, "id": 148838512442085380, "id_str": "148838512442085376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1308527366/40VirginSteve_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1308527366/40VirginSteve_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @4RocsB4theBeat: _Steve_ _Carell_ is a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:48 +0000", "from_user": "tdrucker32", "from_user_id": 233427049, "from_user_id_str": "233427049", "from_user_name": "Taylor Rucker", "geo": null, "id": 148838457593180160, "id_str": "148838457593180161", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681931903/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681931903/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@_OhSoCozayyy LMAO clown", "to_user": "_OhSoCozayyy", "to_user_id": 169143587, "to_user_id_str": "169143587", "to_user_name": "Miranda Marie \\u270C", "in_reply_to_status_id": 148836388652056580, "in_reply_to_status_id_str": "148836388652056577"}, +{"created_at": "Mon, 19 Dec 2011 18:53:42 +0000", "from_user": "KASHOUTorSTFU", "from_user_id": 106515928, "from_user_id_str": "106515928", "from_user_name": "Lanay", "geo": +{"coordinates": [41.7006,-87.6498], "type": "Point"}, "id": 148838435615023100, "id_str": "148838435615023104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702610293/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702610293/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@MyHeadGameSick hes a fucking clown now he about to be a broke clown.. Haha", "to_user": "MyHeadGameSick", "to_user_id": 364460197, "to_user_id_str": "364460197", "to_user_name": "Jordan Haynes", "in_reply_to_status_id": 148837578286706700, "in_reply_to_status_id_str": "148837578286706688"}, +{"created_at": "Mon, 19 Dec 2011 18:53:42 +0000", "from_user": "flappie2602", "from_user_id": 275481729, "from_user_id_str": "275481729", "from_user_name": "Johan Kuiper", "geo": null, "id": 148838432838389760, "id_str": "148838432838389760", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1636502776/5mQE8x58_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1636502776/5mQE8x58_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Hicham023 @OficialDickHead ja man maar nu met die clown derbij", "to_user": "Hicham023", "to_user_id": 246957518, "to_user_id_str": "246957518", "to_user_name": "HiCH\\u25B3M", "in_reply_to_status_id": 148836765397041150, "in_reply_to_status_id_str": "148836765397041152"}, +{"created_at": "Mon, 19 Dec 2011 18:53:41 +0000", "from_user": "MsVanityQT", "from_user_id": 171538434, "from_user_id_str": "171538434", "from_user_name": "Ena Marie Solice", "geo": null, "id": 148838427289325570, "id_str": "148838427289325568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1656402223/MsEna_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656402223/MsEna_normal.JPG", "source": "<a href="http://stone.com/Twittelator" rel="nofollow">Twittelator</a>", "text": "I don't touch the makeup cause I'll turn myself into a clown lol so I just wear lip gloss n keep it pushin", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:29 +0000", "from_user": "K_B7", "from_user_id": 271233306, "from_user_id_str": "271233306", "from_user_name": "Kurt Bonet", "geo": null, "id": 148838378232741900, "id_str": "148838378232741888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1395909527/malcolm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1395909527/malcolm_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@HarveyLevinTMZ Curse them. The snitch (kbryant) tried to throw Shaq under the bus to the cops yrs ago in vail colorado. Clown", "to_user": "HarveyLevinTMZ", "to_user_id": 36098990, "to_user_id_str": "36098990", "to_user_name": "Harvey Levin ", "in_reply_to_status_id": 148837708175917060, "in_reply_to_status_id_str": "148837708175917056"}, +{"created_at": "Mon, 19 Dec 2011 18:53:28 +0000", "from_user": "chloeann12", "from_user_id": 109640718, "from_user_id_str": "109640718", "from_user_name": "Chloe Proctor\\u2665", "geo": null, "id": 148838376672464900, "id_str": "148838376672464896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1602502689/227603_198051663572122_193044964072792_494720_2500553_s_mee_xx_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1602502689/227603_198051663572122_193044964072792_494720_2500553_s_mee_xx_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Nadiia_1D: Whenever I see a clown fish I immediately think, \"OMG IT'S NEMO!\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:14 +0000", "from_user": "myTweets_KILL", "from_user_id": 38910099, "from_user_id_str": "38910099", "from_user_name": "hawaia lacinett", "geo": null, "id": 148838316933005300, "id_str": "148838316933005312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692068355/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692068355/profile_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @Smooth_Operatr: Back in the cut..Ppl Use To Clown My Lips..But Now They Be Loving Them Lips.. << trust the plus! Lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:07 +0000", "from_user": "_MrsJanuary", "from_user_id": 41871664, "from_user_id_str": "41871664", "from_user_name": "erica queen", "geo": null, "id": 148838285295362050, "id_str": "148838285295362049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1636241863/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1636241863/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@lifeofmackbell fool? never that but iight i gotchu clown", "to_user": "lifeofmackbell", "to_user_id": 279583885, "to_user_id_str": "279583885", "to_user_name": "Janar Bell", "in_reply_to_status_id": 148837723480920060, "in_reply_to_status_id_str": "148837723480920064"}, +{"created_at": "Mon, 19 Dec 2011 18:52:58 +0000", "from_user": "iamj_rockafella", "from_user_id": 92350009, "from_user_id_str": "92350009", "from_user_name": "Johnny F Rockafella", "geo": null, "id": 148838247714394100, "id_str": "148838247714394112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686173477/Photo_11_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686173477/Photo_11_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#dead at me signing into atrl & seeing this clown tryna pass off this song as \"va va voom\" #sit", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:56 +0000", "from_user": "Charzard_8", "from_user_id": 384544234, "from_user_id_str": "384544234", "from_user_name": "Charlie Ronan", "geo": null, "id": 148838238759555070, "id_str": "148838238759555072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697158594/Photoon2011-12-16at14573-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697158594/Photoon2011-12-16at14573-1_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I'm down like a fucking clown.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:50 +0000", "from_user": "VA_Is_4_Lovers", "from_user_id": 42478050, "from_user_id_str": "42478050", "from_user_name": "Rog Stanton", "geo": null, "id": 148838216408117250, "id_str": "148838216408117248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696916243/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696916243/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Knee_Moh LMAO that can't be ur real number n social u a clown :)", "to_user": "Knee_Moh", "to_user_id": 61406107, "to_user_id_str": "61406107", "to_user_name": "Nemo Elkhebri", "in_reply_to_status_id": 148837188916871170, "in_reply_to_status_id_str": "148837188916871168"}, +{"created_at": "Mon, 19 Dec 2011 18:52:48 +0000", "from_user": "myTweets_KILL", "from_user_id": 38910099, "from_user_id_str": "38910099", "from_user_name": "hawaia lacinett", "geo": null, "id": 148838207721701380, "id_str": "148838207721701376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692068355/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692068355/profile_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @Smooth_Operatr: Back in the cut..Ppl Use To Clown My Lips..But Now They Be Loving Them Lips..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:44 +0000", "from_user": "PamWells3", "from_user_id": 405552961, "from_user_id_str": "405552961", "from_user_name": "Pam", "geo": null, "id": 148838191649132540, "id_str": "148838191649132544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696165080/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696165080/me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@RealKevinNash haha TRIPLE H FCKED YOU UP!!!! SERVES YA RIGHT YA ASS-CLOWN =)\\nooppss!!", "to_user": "RealKevinNash", "to_user_id": 23494080, "to_user_id_str": "23494080", "to_user_name": "Kevin Nash"}, +{"created_at": "Mon, 19 Dec 2011 18:52:42 +0000", "from_user": "So_exquisiteBAM", "from_user_id": 266190745, "from_user_id_str": "266190745", "from_user_name": "Kiana Smalls", "geo": null, "id": 148838181893181440, "id_str": "148838181893181442", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1674416999/0000000_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674416999/0000000_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "too bad Omf Pregnant ass cant clown with me!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:34 +0000", "from_user": "_Hbanana", "from_user_id": 58844829, "from_user_id_str": "58844829", "from_user_name": "Hannah Hastings", "geo": null, "id": 148838148502327300, "id_str": "148838148502327297", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1602451737/IMG00011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1602451737/IMG00011_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Clown by KoRn is on TV! #FUCKYES", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:31 +0000", "from_user": "GwhopBoys", "from_user_id": 242569849, "from_user_id_str": "242569849", "from_user_name": "Trell", "geo": null, "id": 148838134120062980, "id_str": "148838134120062977", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1664578549/profile_image_1322593500076_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664578549/profile_image_1322593500076_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "RT @_GOLDBERG13 lol.. that one go hurt ? lol u a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:27 +0000", "from_user": "El_Presidente85", "from_user_id": 81702188, "from_user_id_str": "81702188", "from_user_name": "O_o A.Hall", "geo": null, "id": 148838119892987900, "id_str": "148838119892987904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700402554/z6TRXva7_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700402554/z6TRXva7_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@DashDollFace: 2chaaaaaaainz.\" Oh god... not you too with that clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:26 +0000", "from_user": "Luv_Me_07", "from_user_id": 401143086, "from_user_id_str": "401143086", "from_user_name": "Rashanda", "geo": null, "id": 148838113962229760, "id_str": "148838113962229760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1647693244/0u6jmRCF_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647693244/0u6jmRCF_normal", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "U really r a clown I changed my mind", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:25 +0000", "from_user": "GoodTimeGibby33", "from_user_id": 259115990, "from_user_id_str": "259115990", "from_user_name": "Zack Gibson", "geo": null, "id": 148838110392877060, "id_str": "148838110392877056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676594790/392000_307003449321386_100000351990084_1032525_782934073_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676594790/392000_307003449321386_100000351990084_1032525_782934073_n_normal.jpg", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "RT @hunter_cooke: No highschooler should stress over finals. That's like a clown taking his job seriously.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:08 +0000", "from_user": "2FingersUpBruh", "from_user_id": 382452789, "from_user_id_str": "382452789", "from_user_name": "Fre$hDaddyNch.", "geo": null, "id": 148838040008278000, "id_str": "148838040008278016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695971905/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695971905/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@lorenag11 uh, I'm not a clown sweetie. Let's do something today!", "to_user": "lorenag11", "to_user_id": 333896773, "to_user_id_str": "333896773", "to_user_name": "Lorena Garcia", "in_reply_to_status_id": 148837838459383800, "in_reply_to_status_id_str": "148837838459383808"}, +{"created_at": "Mon, 19 Dec 2011 18:52:03 +0000", "from_user": "vanilla_kath", "from_user_id": 51058338, "from_user_id_str": "51058338", "from_user_name": "KathyAnn Dillane", "geo": null, "id": 148838016654381060, "id_str": "148838016654381058", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1684971327/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684971327/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Ok I've decided that my favourite Simpsons episode is the one where Homer becomes a clown!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:52:02 +0000", "from_user": "kaceeyferguson", "from_user_id": 254178765, "from_user_id_str": "254178765", "from_user_name": "Kacey Ferguson", "geo": null, "id": 148838015941349380, "id_str": "148838015941349378", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699197507/Photo_on_2011-10-15_at_22.32__4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699197507/Photo_on_2011-10-15_at_22.32__4_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Im on a miini school bus :$ feel like im in a clown car", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:02 +0000", "from_user": "LKNlove", "from_user_id": 30711971, "from_user_id_str": "30711971", "from_user_name": "LKN", "geo": null, "id": 148838015576449020, "id_str": "148838015576449024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1614178918/HCBBM__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1614178918/HCBBM__1__normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "I'm driving home and I see a smart car with the licenses plates \"Smrt4Fn\". People are so obnoxious. Driving clown cars!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:02 +0000", "from_user": "Joey0492", "from_user_id": 176551238, "from_user_id_str": "176551238", "from_user_name": "Joey", "geo": null, "id": 148838013743530000, "id_str": "148838013743529984", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1608243660/328717288_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608243660/328717288_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @xLaraaaa: Jongens, jullie maken een grapje dat het morgen gaat sneeuwen toch?! \\u00AB Ben toch zeker clown Bassie niet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:59 +0000", "from_user": "KEIlotte26", "from_user_id": 240231985, "from_user_id_str": "240231985", "from_user_name": "\\u3051\\uFF5E\\u3059\\u3051", "geo": null, "id": 148838002892869630, "id_str": "148838002892869634", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1625490609/Adj7sopCMAMYV5g_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1625490609/Adj7sopCMAMYV5g_normal.jpg", "source": "<a href="http://twittbot.net/" rel="nofollow">twittbot.net</a>", "text": "\\u3010\\u5BA3\\u4F1D\\u3011Clown's Pavilion2\\u3092\\u5B9F\\u6CC1\\u3057\\u307E\\u3057\\u305F(\\uFF4B\\uFF40\\uFF45\\u03C9\\uFF45\\u00B4\\uFF49)\\u30CE\\n\\u3088\\u304B\\u3063\\u305F\\u3089\\u6687\\u3064\\u3076\\u3057\\u306B\\u3069\\u3046\\u305E\\uFF5E\\n\\u21D2http://t.co/dxPczvMD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:57 +0000", "from_user": "BossyJohnson", "from_user_id": 325090972, "from_user_id_str": "325090972", "from_user_name": "CROUCHY T", "geo": null, "id": 148837994500075520, "id_str": "148837994500075521", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1683694549/DKgUoUhN_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683694549/DKgUoUhN_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@_BigPimpin1500 lol you a clown", "to_user": "_BigPimpin1500", "to_user_id": 314808696, "to_user_id_str": "314808696", "to_user_name": "rome smith", "in_reply_to_status_id": 148837733446594560, "in_reply_to_status_id_str": "148837733446594560"}, +{"created_at": "Mon, 19 Dec 2011 18:51:55 +0000", "from_user": "CIROCNROLL", "from_user_id": 154228691, "from_user_id_str": "154228691", "from_user_name": "Frank Simmons", "geo": null, "id": 148837984672821250, "id_str": "148837984672821248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1683789034/christmas_party_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683789034/christmas_party_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u00AB@RawGutsNoCondom #NW American Gun. soon as I starting rolling in more money, my collection will be killing @CIROCNROLL collection. clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:53 +0000", "from_user": "_BobbyMarie", "from_user_id": 166601258, "from_user_id_str": "166601258", "from_user_name": "Brooke Ponstein", "geo": null, "id": 148837977131458560, "id_str": "148837977131458560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1642189215/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642189215/image_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @RichardOBarry: Dolphins are free-ranging, intelligent, & complex wild animals, and they belong in the oceans, not playing the clown in our human schemes.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:53 +0000", "from_user": "HarryantoBuasan", "from_user_id": 177650181, "from_user_id_str": "177650181", "from_user_name": "Harryanto Buasan", "geo": null, "id": 148837976854630400, "id_str": "148837976854630400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680416710/331096669_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680416710/331096669_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Love you too baby :) RT @eugeniabellfb: hey, my clown \\u01AA(\\u02C7\\u25BD\\u02C7)-c<^\\u2323^) I love you! ♥ RT ... http://t.co/1qAqOEC3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:50 +0000", "from_user": "AvonleaAmelia", "from_user_id": 147640729, "from_user_id_str": "147640729", "from_user_name": "Avonlea Pye", "geo": null, "id": 148837965353857020, "id_str": "148837965353857024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1608024275/Photo_on_10-26-11_at_2.46_PM_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608024275/Photo_on_10-26-11_at_2.46_PM_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Why is there a clown in Goodwill? #scary", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:48 +0000", "from_user": "Matt2Niskanen", "from_user_id": 389710721, "from_user_id_str": "389710721", "from_user_name": "NotMatt Niskanen", "geo": null, "id": 148837954977136640, "id_str": "148837954977136640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1645738172/nisky_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645738172/nisky_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Eenie meeny miny moe, catch a tiger by the toe... Ahhhh fuck it. I'm gonna pick on you. Yah you. @Jaromir_Jagr you clown. Fuckin guy.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:41 +0000", "from_user": "Thabiso_R", "from_user_id": 111315788, "from_user_id_str": "111315788", "from_user_name": "Thabiso Ramolefe", "geo": null, "id": 148837925973528580, "id_str": "148837925973528576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686850327/Me_20and_20Mami_201_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686850327/Me_20and_20Mami_201_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Maybe its just a stunt. After all, he's a clown right? Lol. RT @FUNDI_PMB: So this clown replaced me lol fast kanje?! Owkay :-) hahaha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:41 +0000", "from_user": "kentrod", "from_user_id": 18015940, "from_user_id_str": "18015940", "from_user_name": "kentrod", "geo": null, "id": 148837925218549760, "id_str": "148837925218549760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1585966278/ProfilePhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585966278/ProfilePhoto_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iowahawkblog: First Al Davis, then Kim Jong-Il; bad year for insane clown-haired dictators in novelty Elvis sunglasses", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:32 +0000", "from_user": "NubianBookstore", "from_user_id": 47782381, "from_user_id_str": "47782381", "from_user_name": "marcus williams", "geo": null, "id": 148837888170266620, "id_str": "148837888170266624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1677793754/2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677793754/2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MATHHOFFA: @CHARLIECLIPS whatever \"rapper\" .... i know it wont be the same talk in person so ima end the show... dont say my name no more. ur a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:30 +0000", "from_user": "TomDowty", "from_user_id": 47146097, "from_user_id_str": "47146097", "from_user_name": "Tom Dowty", "geo": null, "id": 148837877902610430, "id_str": "148837877902610432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662713888/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662713888/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@lewis_sexton18 2 hours until the clown has no penis", "to_user": "lewis_sexton18", "to_user_id": 381481415, "to_user_id_str": "381481415", "to_user_name": "Lewis Sexton", "in_reply_to_status_id": 148837529213345800, "in_reply_to_status_id_str": "148837529213345793"}, +{"created_at": "Mon, 19 Dec 2011 18:51:26 +0000", "from_user": "Cameron_Cole18", "from_user_id": 338178354, "from_user_id_str": "338178354", "from_user_name": "Cameron Rogers", "geo": null, "id": 148837864287895550, "id_str": "148837864287895552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1597078603/me_me_me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1597078603/me_me_me_normal.jpg", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "RT @hunter_cooke: No highschooler should stress over finals. That's like a clown taking his job seriously.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:23 +0000", "from_user": "LykeReally09", "from_user_id": 171448976, "from_user_id_str": "171448976", "from_user_name": "katrice", "geo": null, "id": 148837851759521800, "id_str": "148837851759521792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1672594543/profile_image_1322970845893_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672594543/profile_image_1322970845893_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "Clown !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:16 +0000", "from_user": "freddyjani", "from_user_id": 304841034, "from_user_id_str": "304841034", "from_user_name": "Freddy", "geo": null, "id": 148837820692299780, "id_str": "148837820692299778", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694325710/154213_1719592516121_1427522255_31759609_301751_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694325710/154213_1719592516121_1427522255_31759609_301751_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@pleasemebitch_ suruh drg jadi clown suda", "to_user": "pleasemebitch_", "to_user_id": 203447822, "to_user_id_str": "203447822", "to_user_name": "Ashrah Kit Richie", "in_reply_to_status_id": 148837594313142270, "in_reply_to_status_id_str": "148837594313142272"}, +{"created_at": "Mon, 19 Dec 2011 18:51:13 +0000", "from_user": "JayDeLise", "from_user_id": 383056015, "from_user_id_str": "383056015", "from_user_name": "Jayyyy \\uE333\\uE332\\uE333\\uE332\\uE011", "geo": null, "id": 148837808323309570, "id_str": "148837808323309568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701108337/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701108337/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Your a fuckin clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:12 +0000", "from_user": "gocookmefood", "from_user_id": 224823794, "from_user_id_str": "224823794", "from_user_name": "Enmanuel ", "geo": null, "id": 148837805760577540, "id_str": "148837805760577538", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1556065146/330141_10150267131126994_580361993_8209998_4090089_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1556065146/330141_10150267131126994_580361993_8209998_4090089_o_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "BORIS JOHNSON LOOKS LIKE A CLOWN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:08 +0000", "from_user": "Pete302Suth", "from_user_id": 160420966, "from_user_id_str": "160420966", "from_user_name": "Pete Sutherland", "geo": null, "id": 148837787792183300, "id_str": "148837787792183296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1651019834/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651019834/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Immebitch_heny clown lol", "to_user": "Immebitch_heny", "to_user_id": 397633356, "to_user_id_str": "397633356", "to_user_name": "heny hendricks"}, +{"created_at": "Mon, 19 Dec 2011 18:51:07 +0000", "from_user": "navayekita", "from_user_id": 27113704, "from_user_id_str": "27113704", "from_user_name": "LoveisLouder.\\u2665", "geo": null, "id": 148837781920170000, "id_str": "148837781920169984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687290012/001_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687290012/001_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "You wear more makeup than a clown.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:00 +0000", "from_user": "Br00keBerry", "from_user_id": 415026858, "from_user_id_str": "415026858", "from_user_name": "Brooke Bradbury", "geo": null, "id": 148837756062273540, "id_str": "148837756062273537", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1644099560/009_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644099560/009_normal.PNG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "So tired of having a tiny clown car \\uD83D\\uDD2B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:00 +0000", "from_user": "taaaaylur", "from_user_id": 35029676, "from_user_id_str": "35029676", "from_user_name": "TaylorMay", "geo": null, "id": 148837754158055420, "id_str": "148837754158055424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687621930/IMG_0062_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687621930/IMG_0062_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@goldenstofmind hahaha you clown", "to_user": "goldenstofmind", "to_user_id": 23561749, "to_user_id_str": "23561749", "to_user_name": "Shelby", "in_reply_to_status_id": 148837062412480500, "in_reply_to_status_id_str": "148837062412480512"}, +{"created_at": "Mon, 19 Dec 2011 18:50:59 +0000", "from_user": "Emer89wl", "from_user_id": 175142604, "from_user_id_str": "175142604", "from_user_name": "Emer", "geo": null, "id": 148837748692881400, "id_str": "148837748692881409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685681072/Emer89wl_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685681072/Emer89wl_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@aay_esha fiiiiiit! Might get em in Londontown. I still can't find any work shoes that fit my clown feet :(", "to_user": "aay_esha", "to_user_id": 22246503, "to_user_id_str": "22246503", "to_user_name": "Aayesha Mohammed ", "in_reply_to_status_id": 148768211658219520, "in_reply_to_status_id_str": "148768211658219522"}, +{"created_at": "Mon, 19 Dec 2011 18:50:56 +0000", "from_user": "ZipSquad_JihaD", "from_user_id": 263474444, "from_user_id_str": "263474444", "from_user_name": "Notorious B.I.Gamist", "geo": null, "id": 148837735313051650, "id_str": "148837735313051648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1678759924/phpcjPFUNAM_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678759924/phpcjPFUNAM_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "He canadian. Nuff said. JihaD RT@Remixznflow82 i dont know whether to clown this nigga @Troyvul and his bills... or offer my condolences...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:48 +0000", "from_user": "iLoveeee_Pink", "from_user_id": 242824083, "from_user_id_str": "242824083", "from_user_name": "Tiffany ", "geo": null, "id": 148837701947375600, "id_str": "148837701947375616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699272804/IMAG0839_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699272804/IMAG0839_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Lil sis tryna clown me!! lmao She got dwn with that", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:42 +0000", "from_user": "Kareyhtz", "from_user_id": 431757216, "from_user_id_str": "431757216", "from_user_name": "Karey Yago", "geo": null, "id": 148837676718637060, "id_str": "148837676718637056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681154158/large_41018_1377232112211_1274100057_30918221_69976_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681154158/large_41018_1377232112211_1274100057_30918221_69976_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "HD91 Insane Clown Posse ICP Wraith Glow In The Dark Zip Up Hoodie Select Shirt Size: Small: Insane Clown Posse I... http://t.co/6j2PWMG9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:38 +0000", "from_user": "Baddasx3", "from_user_id": 397855241, "from_user_id_str": "397855241", "from_user_name": "AintYahhNmeRedd?\\uE32A", "geo": null, "id": 148837660801237000, "id_str": "148837660801236992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701104204/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701104204/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Savage_4_Pres Lmao clown Asx gtf !", "to_user": "Savage_4_Pres", "to_user_id": 243859481, "to_user_id_str": "243859481", "to_user_name": "\\u2718..YUNG-SAVAGE..\\u2714", "in_reply_to_status_id": 148837463559901200, "in_reply_to_status_id_str": "148837463559901184"}, +{"created_at": "Mon, 19 Dec 2011 18:50:36 +0000", "from_user": "SayThaDon", "from_user_id": 326536067, "from_user_id_str": "326536067", "from_user_name": "Say", "geo": null, "id": 148837653763203070, "id_str": "148837653763203073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1660263193/H2tyRiG4_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660263193/H2tyRiG4_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Lol my step sister is a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:36 +0000", "from_user": "elsupanova", "from_user_id": 130139644, "from_user_id_str": "130139644", "from_user_name": "ELL.", "geo": null, "id": 148837651334696960, "id_str": "148837651334696961", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680536144/1602199bjjkjn0e32425_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680536144/1602199bjjkjn0e32425_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Chances are some clown at production wrote it for her but she read it out anyway since she can\\u2019t reason! Ain\\u2019t surprised tho, it\\u2019s Btv!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:30 +0000", "from_user": "ojay2121", "from_user_id": 248434187, "from_user_id_str": "248434187", "from_user_name": "Olivia Julian", "geo": null, "id": 148837627309735940, "id_str": "148837627309735936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1610017269/Snapshot_of_me_9_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610017269/Snapshot_of_me_9_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@Madeline_Lovee tell him I say hi!! Gotta love that #twitterless graham such a clown:p", "to_user": "Madeline_Lovee", "to_user_id": 48228876, "to_user_id_str": "48228876", "to_user_name": "Maddie Williams", "in_reply_to_status_id": 148837192960196600, "in_reply_to_status_id_str": "148837192960196608"}, +{"created_at": "Mon, 19 Dec 2011 18:50:27 +0000", "from_user": "bellamiamour", "from_user_id": 348898285, "from_user_id_str": "348898285", "from_user_name": "AtirolMarieee :-*", "geo": null, "id": 148837617033691140, "id_str": "148837617033691137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701610940/IMAG0488-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701610940/IMAG0488-1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Clown ass hoes ain't nothing but jokes !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:26 +0000", "from_user": "msicandy14", "from_user_id": 30588809, "from_user_id_str": "30588809", "from_user_name": "Taste My Candy", "geo": null, "id": 148837610398294000, "id_str": "148837610398294016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1683651374/376449_10150422534507713_514692712_8462336_1539795812_n_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683651374/376449_10150422534507713_514692712_8462336_1539795812_n_normal.jpeg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@MissingCHUCHI Cnt believe the nerve of this CLOWN\\u201D...who", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:25 +0000", "from_user": "JustWacine", "from_user_id": 37526975, "from_user_id_str": "37526975", "from_user_name": "Wacine", "geo": null, "id": 148837608083038200, "id_str": "148837608083038208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691434782/331450172_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691434782/331450172_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Never get somebody a christmas gift just cause u want something in return. That aint genuine at all. Bout to clown somebody", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:24 +0000", "from_user": "XOsmoochesOX", "from_user_id": 47840590, "from_user_id_str": "47840590", "from_user_name": "\\uE314Jemyra Calais\\uE314", "geo": null, "id": 148837602060021760, "id_str": "148837602060021760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1632058648/XOsmoochesOX_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632058648/XOsmoochesOX_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Lol my daddy really in here singin to me.. Clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:24 +0000", "from_user": "TheProphet_KG", "from_user_id": 282134739, "from_user_id_str": "282134739", "from_user_name": "\\uE517Josh\\uE517", "geo": null, "id": 148837601464426500, "id_str": "148837601464426496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696532059/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696532059/profile_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "Straight dog a bitch out like Mike Vick..... lmao Dorrough is a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:16 +0000", "from_user": "iChefChalee", "from_user_id": 59360127, "from_user_id_str": "59360127", "from_user_name": "Sour Patch Kid", "geo": null, "id": 148837569256357900, "id_str": "148837569256357889", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1631318335/295955_2304331326730_1202647748_32237641_2081146510_n__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631318335/295955_2304331326730_1202647748_32237641_2081146510_n__1__normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "beat your feet like a bicycle clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:14 +0000", "from_user": "Mr_TParks", "from_user_id": 215740708, "from_user_id_str": "215740708", "from_user_name": "Tony Parks", "geo": null, "id": 148837561253642240, "id_str": "148837561253642240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1677584294/snapshot__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677584294/snapshot__1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Nigga a clown cuh...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:08 +0000", "from_user": "eugeniabellfb", "from_user_id": 53351059, "from_user_id_str": "53351059", "from_user_name": "Eugenia Fernanda B.", "geo": null, "id": 148837537165750270, "id_str": "148837537165750273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700157749/331655770_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700157749/331655770_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "hey, my clown \\u01AA(\\u02C7\\u25BD\\u02C7)-c<^\\u2323^) I love you! \\u2665 RT @HarryantoBuasan: Hey @eugeniabellfb don't be sad. I am your Clown and we are happy family :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:00 +0000", "from_user": "hunter_cooke", "from_user_id": 252361319, "from_user_id_str": "252361319", "from_user_name": "Hunter Cooke ", "geo": null, "id": 148837504487931900, "id_str": "148837504487931906", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1560157440/profile_image_1317001586131_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1560157440/profile_image_1317001586131_normal.jpg", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "No highschooler should stress over finals. That's like a clown taking his job seriously.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:00 +0000", "from_user": "SexySykes_TW_", "from_user_id": 373568791, "from_user_id_str": "373568791", "from_user_name": "Lauren\\u2665", "geo": null, "id": 148837501170225150, "id_str": "148837501170225152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695469758/37285907_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695469758/37285907_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Nadiia_1D: Whenever I see a clown fish I immediately think, \"OMG IT'S NEMO!\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:57 +0000", "from_user": "WriteWithDee", "from_user_id": 117850354, "from_user_id_str": "117850354", "from_user_name": "David Wurie", "geo": null, "id": 148837488767676400, "id_str": "148837488767676416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662550652/384802_10150995482435553_771320552_21887870_736312735_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662550652/384802_10150995482435553_771320552_21887870_736312735_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Round the town..Funky clown...LOOOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:57 +0000", "from_user": "MorganeCintrat", "from_user_id": 103261263, "from_user_id_str": "103261263", "from_user_name": "Morgane C.", "geo": null, "id": 148837488461496320, "id_str": "148837488461496320", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1330074632/37705_1532481589312_1152951155_31581160_7354963_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1330074632/37705_1532481589312_1152951155_31581160_7354963_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"Et n'oubliez pas de skier petit, parce que skier petit est mignon !\" Oh oh mais, dis moi, t'as mang\\u00E9 un clown Monsieur m\\u00E9t\\u00E9o?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:49 +0000", "from_user": "blatta_in_al", "from_user_id": 16350070, "from_user_id_str": "16350070", "from_user_name": "BLatta", "geo": null, "id": 148837454940614660, "id_str": "148837454940614657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1633020195/IMG_0811_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633020195/IMG_0811_normal.JPG", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", "text": "FTW!! RT @iowahawkblog First Al Davis, then Kim Jong-Il; bad year for insane clown-haired dictators in novelty Elvis sunglasses", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:46 +0000", "from_user": "Robbynvro", "from_user_id": 431770408, "from_user_id_str": "431770408", "from_user_name": "Robbyn Tom", "geo": null, "id": 148837445268553730, "id_str": "148837445268553728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681177851/1eqg5045rk_130632415-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681177851/1eqg5045rk_130632415-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Halloween Horror Scary Table Tot Clown Animatronic Prop: http://t.co/pdfZsk30", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:38 +0000", "from_user": "juddydaBOSS__", "from_user_id": 310720547, "from_user_id_str": "310720547", "from_user_name": "lightdaDRO", "geo": null, "id": 148837411609251840, "id_str": "148837411609251842", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700654465/3T4yLJI3_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700654465/3T4yLJI3_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "i said \" seth chill out , uu clown too much ! \"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:30 +0000", "from_user": "klew24", "from_user_id": 25860633, "from_user_id_str": "25860633", "from_user_name": "Kev ", "geo": null, "id": 148837374539989000, "id_str": "148837374539988993", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696161876/klewwwwwwwwwwwwwwwwwwwwwwww_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696161876/klewwwwwwwwwwwwwwwwwwwwwwww_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "@LBoogieFab5 baron Davis isn't any good though. Its understandable why niggas would clown sir", "to_user": "LBoogieFab5", "to_user_id": 21643095, "to_user_id_str": "21643095", "to_user_name": "Master Swami Tsu Suh", "in_reply_to_status_id": 148837021702561800, "in_reply_to_status_id_str": "148837021702561792"}, +{"created_at": "Mon, 19 Dec 2011 18:49:28 +0000", "from_user": "Bankrollchan11", "from_user_id": 278824717, "from_user_id_str": "278824717", "from_user_name": "Chandler Echols", "geo": null, "id": 148837368701530100, "id_str": "148837368701530112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674604144/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674604144/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "If a nigga play wit that cash Ima act a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:22 +0000", "from_user": "Jeneephaa", "from_user_id": 166630062, "from_user_id_str": "166630062", "from_user_name": "jennifer bih", "geo": null, "id": 148837344332611600, "id_str": "148837344332611586", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693313438/318590_10150336727330636_554985635_8634419_320592366_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693313438/318590_10150336727330636_554985635_8634419_320592366_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Western_Wizzy dts gud tho cause i love the way he dances & think he is a gud clown :P buh he's new tracks are in the simplest terms \"silly\"", "to_user": "Western_Wizzy", "to_user_id": 143873832, "to_user_id_str": "143873832", "to_user_name": "Adetola Adewale ", "in_reply_to_status_id": 148836646224281600, "in_reply_to_status_id_str": "148836646224281600"}, +{"created_at": "Mon, 19 Dec 2011 18:49:21 +0000", "from_user": "HannahRie7", "from_user_id": 307674503, "from_user_id_str": "307674503", "from_user_name": "Hannah Huffman", "geo": null, "id": 148837338322178050, "id_str": "148837338322178049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697723594/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697723594/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Ayoooo_RED what a clown.", "to_user": "Ayoooo_RED", "to_user_id": 366727511, "to_user_id_str": "366727511", "to_user_name": "Chasity Richardson", "in_reply_to_status_id": 148836247744417800, "in_reply_to_status_id_str": "148836247744417793"}, +{"created_at": "Mon, 19 Dec 2011 18:49:14 +0000", "from_user": "GottaLoveBrian_", "from_user_id": 70049945, "from_user_id_str": "70049945", "from_user_name": "Briannn P ^_^", "geo": null, "id": 148837308500672500, "id_str": "148837308500672512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1678443116/SWAG_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678443116/SWAG_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Taa Aubs be clown these bitches", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:06 +0000", "from_user": "BruniinhooSP", "from_user_id": 437018181, "from_user_id_str": "437018181", "from_user_name": "Bruninho sp", "geo": null, "id": 148837277206986750, "id_str": "148837277206986752", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": null, "source": "<a href="http://twitter.com/">web</a>", "text": "@Clown_Luizinho SAFADINHO Clown_Luizinho 'Cl\\u03C3w\\u0438 [ L\\u03C5izi\\u0438\\u043D\\u03C3 ]\\u2655 \\nE n\\u00E3o \\u00E9 que deu certo? #BigFollow: http://t.co/mgvjPILs RS*", "to_user": "Clown_Luizinho", "to_user_id": 185241399, "to_user_id_str": "185241399", "to_user_name": "'Cl\\u03C3w\\u0438 [ L\\u03C5izi\\u0438\\u043D\\u03C3 ]\\u2655"}, +{"created_at": "Mon, 19 Dec 2011 18:49:04 +0000", "from_user": "newnewsh_t1", "from_user_id": 380703308, "from_user_id_str": "380703308", "from_user_name": "Sweet Miek", "geo": null, "id": 148837269606907900, "id_str": "148837269606907904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701740589/newnewsh_t1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701740589/newnewsh_t1_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Lol clown RT @FOX_Le_ROC: Lmao boogie wooogie woogie RT @newnewsh_t1 Electric slide?? RT @FOX_Le_ROC: Ooooooo they playing my shyt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:04 +0000", "from_user": "breakingmorgan", "from_user_id": 46710414, "from_user_id_str": "46710414", "from_user_name": "Morgan Swan.", "geo": null, "id": 148837269187477500, "id_str": "148837269187477504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1626240793/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626240793/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@youaremydreamx aw i can't wait to see yours! ahhhh, excitement! just finished my trial run for my hair, i look like a clown ahah :')<3", "to_user": "youaremydreamx", "to_user_id": 216023491, "to_user_id_str": "216023491", "to_user_name": "Lauren Inglis\\u2665", "in_reply_to_status_id": 148837015566295040, "in_reply_to_status_id_str": "148837015566295040"}, +{"created_at": "Mon, 19 Dec 2011 18:48:59 +0000", "from_user": "iGot_AsS_4DaYs", "from_user_id": 386271553, "from_user_id_str": "386271553", "from_user_name": "-- Mari :)) --", "geo": null, "id": 148837245607084030, "id_str": "148837245607084032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702583237/376974_2001069644960_1790157357_1297664_16201902_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702583237/376974_2001069644960_1790157357_1297664_16201902_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @HotSexNCldWine: @iGot_AsS_4DaYs NIGGA I LIVE W/U!& going 2 fa the next 2 years!! WE ALWAYS CLOWN WAT DO U MEAN?! Lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:51 +0000", "from_user": "MsTiffRenee", "from_user_id": 174703660, "from_user_id_str": "174703660", "from_user_name": "Tiffany Renee'", "geo": null, "id": 148837214871232500, "id_str": "148837214871232512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1392296752/Picture_12_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1392296752/Picture_12_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Stop drawing your eyebrows on, it looks awful lol something like a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:46 +0000", "from_user": "j34nk0h", "from_user_id": 303329480, "from_user_id_str": "303329480", "from_user_name": "Jean Franco G.", "geo": null, "id": 148837193828401150, "id_str": "148837193828401152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1670774073/tumblr_lu9ipyZ6eC1qhlet0o1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670774073/tumblr_lu9ipyZ6eC1qhlet0o1_500_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#GagasPassword: I WAS BORN TO BE A CLOWN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:46 +0000", "from_user": "Ajsoti", "from_user_id": 169211465, "from_user_id_str": "169211465", "from_user_name": "Alex Soti", "geo": null, "id": 148837191718670340, "id_str": "148837191718670336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668456748/alex_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668456748/alex_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@santonio10 Clown & Out", "to_user": "santonio10", "to_user_id": 62373285, "to_user_id_str": "62373285", "to_user_name": "Santonio Holmes"}, +{"created_at": "Mon, 19 Dec 2011 18:48:44 +0000", "from_user": "KevonTweets", "from_user_id": 340113947, "from_user_id_str": "340113947", "from_user_name": "Primetime", "geo": null, "id": 148837184152154100, "id_str": "148837184152154112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696665019/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696665019/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@Escalade15: @KevonTweets u a clown yo lmao\\u201D Real shit tho lmao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:42 +0000", "from_user": "yasminaaax", "from_user_id": 124737432, "from_user_id_str": "124737432", "from_user_name": "Yasmin\\u00E0\\u00E0\\u00E0 !", "geo": null, "id": 148837173146288130, "id_str": "148837173146288128", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695253656/webcam-toy-photo11_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695253656/webcam-toy-photo11_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @DaphneJ_: RT @DaphneJ_: Ik heb ze trouwens al gevonden hoor=$ - clown / ik vind jou ook lief hoor Rayna/limonade - ik ben yas schat", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:33 +0000", "from_user": "rontrae17", "from_user_id": 437065610, "from_user_id_str": "437065610", "from_user_name": "DevontayWilliams", "geo": null, "id": 148837139419893760, "id_str": "148837139419893760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696929516/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696929516/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Ima mothafuckin made nicca how u love dat clown.,$$$", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:30 +0000", "from_user": "FanaThePurp", "from_user_id": 61425517, "from_user_id_str": "61425517", "from_user_name": "Shitshembiso Mabasa ", "geo": null, "id": 148837124853071870, "id_str": "148837124853071873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1666035311/d06f9f2ae05759c3f1892d60f1d795965abcdefg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666035311/d06f9f2ae05759c3f1892d60f1d795965abcdefg_normal.jpg", "source": "<a href="http://getsocialscope.com" rel="nofollow">SocialScope</a>", "text": "Listening to Beyonce thinking u irreplaceable RT @FUNDI_PMB: So this clown replaced me lol fast kanje?! Owkay :-) hahaha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:30 +0000", "from_user": "Makayla01236588", "from_user_id": 440990691, "from_user_id_str": "440990691", "from_user_name": "Makayla", "geo": null, "id": 148837123791917060, "id_str": "148837123791917056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702402358/beauti-girl_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702402358/beauti-girl_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Music Skins MS-CHET20004 iPod Touch- 2nd-3rd Gen- Chet Zar- Clown of Doom Skin: MusicSkins LLC is the industry l... http://t.co/fnbKXsMP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:28 +0000", "from_user": "PamWells3", "from_user_id": 405552961, "from_user_id_str": "405552961", "from_user_name": "Pam", "geo": null, "id": 148837115487199230, "id_str": "148837115487199233", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696165080/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696165080/me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@RealKevinNash haha TRIPLE H FCKED UP!!!! SERVES YA RIGHT YA ASS-CLOWN =)", "to_user": "RealKevinNash", "to_user_id": 23494080, "to_user_id_str": "23494080", "to_user_name": "Kevin Nash"}, +{"created_at": "Mon, 19 Dec 2011 18:48:24 +0000", "from_user": "MS_JACKSON_BADD", "from_user_id": 114682594, "from_user_id_str": "114682594", "from_user_name": "AINT NOBODY BETTA!", "geo": null, "id": 148837098655453200, "id_str": "148837098655453185", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693258861/profile_image_1323886584912_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693258861/profile_image_1323886584912_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "Muthafuckas get on Twitter nd clown for the people....stop wit that nonsense nd get ya paper!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:13 +0000", "from_user": "nopennopadflow", "from_user_id": 262903647, "from_user_id_str": "262903647", "from_user_name": "Muthafucka Jones", "geo": null, "id": 148837053436661760, "id_str": "148837053436661760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688939688/parental_advisory_explicit_content_lge_logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688939688/parental_advisory_explicit_content_lge_logo_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@DaFakeSamHart. Fix ya fly dog u r presentin front of a class u clown #zipit", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:11 +0000", "from_user": "iMKELTAiNM", "from_user_id": 134219208, "from_user_id_str": "134219208", "from_user_name": "THOMAs . JETsON", "geo": null, "id": 148837044259528700, "id_str": "148837044259528704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699917612/iMKELTAiNM_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699917612/iMKELTAiNM_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @basicallyBAY: Lmaoo at the last tweet keltain wrote , boy is a #Clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:55 +0000", "from_user": "Escalade15", "from_user_id": 66345660, "from_user_id_str": "66345660", "from_user_name": "Phil ", "geo": null, "id": 148836978027282430, "id_str": "148836978027282432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702506272/ps_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702506272/ps_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@KevonTweets u a clown yo lmao", "to_user": "KevonTweets", "to_user_id": 340113947, "to_user_id_str": "340113947", "to_user_name": "Primetime", "in_reply_to_status_id": 148836456209715200, "in_reply_to_status_id_str": "148836456209715200"}, +{"created_at": "Mon, 19 Dec 2011 18:47:54 +0000", "from_user": "TTashaaaaa_", "from_user_id": 26112970, "from_user_id_str": "26112970", "from_user_name": "TTasha", "geo": null, "id": 148836975468744700, "id_str": "148836975468744705", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699140135/IMAG2176...2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699140135/IMAG2176...2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "!!! RT @BONITAJASS i hate clown's -.-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:49 +0000", "from_user": "TheReaLMissBeBe", "from_user_id": 123012375, "from_user_id_str": "123012375", "from_user_name": "\\u2650MissBeBe", "geo": null, "id": 148836952311988220, "id_str": "148836952311988224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701163095/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701163095/image_normal.jpg", "source": "<a href="http://tweetlogix.com" rel="nofollow">Tweetlogix</a>", "text": "Yas clown ass hatin on my boots", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:47 +0000", "from_user": "AzhariAzmir", "from_user_id": 424096419, "from_user_id_str": "424096419", "from_user_name": "Muhammad Azhari", "geo": null, "id": 148836942975467520, "id_str": "148836942975467520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689318363/302992_2034881164893_1630122465_1797584_565502752_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689318363/302992_2034881164893_1630122465_1797584_565502752_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Syaf_D i hate clowns too. Especially ronald the mcdonald. Lol. Aiyo syaf nanti ade clown diri pat pintu holding a knife.", "to_user": "Syaf_D", "to_user_id": 114474893, "to_user_id_str": "114474893", "to_user_name": "Cristie Montero.", "in_reply_to_status_id": 148836643988713470, "in_reply_to_status_id_str": "148836643988713472"}, +{"created_at": "Mon, 19 Dec 2011 18:47:39 +0000", "from_user": "ChichanQu", "from_user_id": 52965542, "from_user_id_str": "52965542", "from_user_name": "Janelle Andrea", "geo": null, "id": 148836910402514940, "id_str": "148836910402514945", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1493243363/user_icon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1493243363/user_icon_normal.png", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "I have the Clown Lady as a supply! #WTF!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:36 +0000", "from_user": "So_xXxquisite", "from_user_id": 317501482, "from_user_id_str": "317501482", "from_user_name": "Darius Coleman", "geo": null, "id": 148836897727328260, "id_str": "148836897727328257", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1647654297/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647654297/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Nate I could see your midget ass in a big ass jersey. Clown ass got a small shirt with a 4XL jersey. Big ass shoulders lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:33 +0000", "from_user": "MissingCHUCHI", "from_user_id": 112783301, "from_user_id_str": "112783301", "from_user_name": "\\uE023", "geo": null, "id": 148836886914412540, "id_str": "148836886914412544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700682223/MissingCHUCHI_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700682223/MissingCHUCHI_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Cnt believe the nerve of this CLOWN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:32 +0000", "from_user": "SophiaLaBelle", "from_user_id": 57273415, "from_user_id_str": "57273415", "from_user_name": "Sophia", "geo": null, "id": 148836881738629120, "id_str": "148836881738629121", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691331180/SophiaLaBelle_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691331180/SophiaLaBelle_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@KevinMBarlow holy shit Im lmfao with my friend right now over that one. Your such a clown Kevin, your timeline keeps me laughing!", "to_user": "KevinMBarlow", "to_user_id": 66616763, "to_user_id_str": "66616763", "to_user_name": "Kevin (Opium Group)", "in_reply_to_status_id": 148834504314851330, "in_reply_to_status_id_str": "148834504314851328"}, +{"created_at": "Mon, 19 Dec 2011 18:47:32 +0000", "from_user": "Super_Lamps", "from_user_id": 205684985, "from_user_id_str": "205684985", "from_user_name": "Prince Ademuyiwa ", "geo": null, "id": 148836881365348350, "id_str": "148836881365348353", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696924623/331578568_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696924623/331578568_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "E don tay naw! Mr Ibu & dat oda clown... RT @Ms_Lumcy: So there is a Nigerian movie called 'Chelsea and liverpool'. this life!\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:29 +0000", "from_user": "jeanwyse", "from_user_id": 20142138, "from_user_id_str": "20142138", "from_user_name": "jean wyse", "geo": null, "id": 148836868342026240, "id_str": "148836868342026240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/240582578/t_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/240582578/t_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", "text": "This day was already going bad before I dropped me iPhone in the toilet. #clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:25 +0000", "from_user": "_LRStar", "from_user_id": 42873972, "from_user_id_str": "42873972", "from_user_name": "Rodney H.", "geo": null, "id": 148836850394611700, "id_str": "148836850394611712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670701168/1ba282d4059411e1abb01231381b65e3_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670701168/1ba282d4059411e1abb01231381b65e3_7_normal.jpg", "source": "<a href="http://tweetli.st/" rel="nofollow">TweetList!</a>", "text": "Lmaooo why would you put that you #clown RT @Ming_Wagstaff: @_LRStar lol fuck,u... sooo did @B_aMUSEd & @SwisherMeech really break up lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:24 +0000", "from_user": "4RYALTY_JC_GBII", "from_user_id": 343111699, "from_user_id_str": "343111699", "from_user_name": "KYMMYE CARTER", "geo": null, "id": 148836847479558140, "id_str": "148836847479558144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1609958048/6AnF7WC7_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609958048/6AnF7WC7_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "This damn Myrre a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:23 +0000", "from_user": "BruniinhooSP", "from_user_id": 437018181, "from_user_id_str": "437018181", "from_user_name": "Bruninho sp", "geo": null, "id": 148836844396744700, "id_str": "148836844396744704", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": null, "source": "<a href="http://twitter.com/">web</a>", "text": "Clown_Luizinho 'Cl\\u03C3w\\u0438 [ L\\u03C5izi\\u0438\\u043D\\u03C3 ]\\u2655 \\nE n\\u00E3o \\u00E9 que deu certo? #BigFollow: http://t.co/mgvjPILs uiaa peguei no flagra HAHAHAH SEU HACKER (HHH*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:16 +0000", "from_user": "BuxomBeauty90", "from_user_id": 227421274, "from_user_id_str": "227421274", "from_user_name": "Richie Wimbo", "geo": null, "id": 148836814524919800, "id_str": "148836814524919808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1393467988/coronation_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1393467988/coronation_normal.jpg", "source": "<a href="http://www.twitter.com" rel="nofollow">Twitter for Windows Phone</a>", "text": "@Destined_Dr right cause id clown if they sold me a fake", "to_user": "Destined_Dr", "to_user_id": 66251273, "to_user_id_str": "66251273", "to_user_name": "Danyle Awesome", "in_reply_to_status_id": 148836562946375680, "in_reply_to_status_id_str": "148836562946375680"}, +{"created_at": "Mon, 19 Dec 2011 18:47:13 +0000", "from_user": "carralesgeoomz7", "from_user_id": 391354195, "from_user_id_str": "391354195", "from_user_name": "Carrales Samson", "geo": null, "id": 148836803292573700, "id_str": "148836803292573696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "If you download clubusic to your iPod....your a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:10 +0000", "from_user": "SickNiggaSay", "from_user_id": 237028088, "from_user_id_str": "237028088", "from_user_name": "Say", "geo": null, "id": 148836790583828480, "id_str": "148836790583828482", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692408694/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692408694/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I dont ever cath feelins . Cuz its always some clown shit goin on .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:54 +0000", "from_user": "EmmettKellyJr_F", "from_user_id": 409675702, "from_user_id_str": "409675702", "from_user_name": "Emmett Kelly Jr Gift", "geo": null, "id": 148836721851772930, "id_str": "148836721851772929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1674139183/EKJ1101_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674139183/EKJ1101_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "☁ Emmett Kelly Jr Clown Framed Again Figurine Made in the USA Buy at http://t.co/vElCyHMJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:51 +0000", "from_user": "basicallyBAY", "from_user_id": 123016389, "from_user_id_str": "123016389", "from_user_name": "BrittanyANAY ", "geo": null, "id": 148836711135330300, "id_str": "148836711135330304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699496749/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699496749/profile_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "Lmaoo at the last tweet keltain wrote , boy is a #Clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:51 +0000", "from_user": "xheyikbenIRIS", "from_user_id": 228137741, "from_user_id_str": "228137741", "from_user_name": "Iris de Waard", "geo": null, "id": 148836709973495800, "id_str": "148836709973495808", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702128860/__--_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702128860/__--_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @JongerenSwag_: Ik:\"Ik word de nieuwe hitler, ik vermoord alle joden en 1 clown\" \"Waarom een clown\"\"Niemand geeft om die joden eh?!\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:50 +0000", "from_user": "cebondulini", "from_user_id": 181122807, "from_user_id_str": "181122807", "from_user_name": "Cebo Ndulini", "geo": null, "id": 148836705368150000, "id_str": "148836705368150016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1690508308/331411902_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690508308/331411902_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "<\\u2639> RT @FUNDI_PMB: So this clown replaced me lol fast kanje?! Owkay :-) hahaha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:50 +0000", "from_user": "itsm0m0", "from_user_id": 240414985, "from_user_id_str": "240414985", "from_user_name": "M0 Lizbeth", "geo": null, "id": 148836704269242370, "id_str": "148836704269242368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693224774/xcN6nt06_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693224774/xcN6nt06_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "*clown walk*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:43 +0000", "from_user": "Araba_Money", "from_user_id": 30071970, "from_user_id_str": "30071970", "from_user_name": "Adede, Triple A", "geo": null, "id": 148836677857718270, "id_str": "148836677857718272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695893087/love_me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695893087/love_me_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "My brother is such a clown he said I have too many shoes and when I go to sleep they are going to eat me.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:40 +0000", "from_user": "CqClown", "from_user_id": 277291881, "from_user_id_str": "277291881", "from_user_name": "Consequences Clown", "geo": null, "id": 148836661910974460, "id_str": "148836661910974465", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1309267731/aah_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1309267731/aah_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@xoxo_catherinee what do you work as? and not much is up with the ol clown.. im just clowning around!! you truly are blessed.. you met miz!!", "to_user": "xoxo_catherinee", "to_user_id": 39184639, "to_user_id_str": "39184639", "to_user_name": "Catherine Andrade", "in_reply_to_status_id": 148819876876795900, "in_reply_to_status_id_str": "148819876876795904"}, +{"created_at": "Mon, 19 Dec 2011 18:46:32 +0000", "from_user": "inlovew__LAUREN", "from_user_id": 292102843, "from_user_id_str": "292102843", "from_user_name": "Noah Turley", "geo": null, "id": 148836629103124480, "id_str": "148836629103124480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697484293/Ag0i-jOCIAA2ZRs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697484293/Ag0i-jOCIAA2ZRs_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@shakeyourtitts you the clown :P", "to_user": "shakeyourtitts", "to_user_id": 346159919, "to_user_id_str": "346159919", "to_user_name": "I XII XCV \\u2665", "in_reply_to_status_id": 148822778546626560, "in_reply_to_status_id_str": "148822778546626560"}, +{"created_at": "Mon, 19 Dec 2011 18:46:28 +0000", "from_user": "anothaLEVEL_810", "from_user_id": 97580147, "from_user_id_str": "97580147", "from_user_name": "Mz Jasmine", "geo": null, "id": 148836611625451520, "id_str": "148836611625451521", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1515119412/profile_image_1314406192335_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515119412/profile_image_1314406192335_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Smh its always a clown in dere", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:21 +0000", "from_user": "Jeens_YourBoss", "from_user_id": 46802782, "from_user_id_str": "46802782", "from_user_name": "Jeen The Dream\\u21D2\\u265A\\u21D0", "geo": null, "id": 148836585071321100, "id_str": "148836585071321089", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690136050/IMG_20111212_210228-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690136050/IMG_20111212_210228-1_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @440BoyRiqBubz: Fuckin All These CLOWN Niggaz , Now u Known as WHACK Pussy !!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:17 +0000", "from_user": "DHPLover", "from_user_id": 65052733, "from_user_id_str": "65052733", "from_user_name": "Kelly", "geo": null, "id": 148836566767370240, "id_str": "148836566767370240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1638380751/60501_658443866664_61306670_40470069_747995_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638380751/60501_658443866664_61306670_40470069_747995_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "Carson couldn't go to a fayre after a nasty experience with a clown and a rather large watermelon #DowntonAbbey 1.4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:12 +0000", "from_user": "TheRollmaster", "from_user_id": 173249200, "from_user_id_str": "173249200", "from_user_name": "Thinkin Thowed", "geo": null, "id": 148836547574239230, "id_str": "148836547574239232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677210333/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677210333/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Hahaha that last tweet was a clown! Gtfoh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:12 +0000", "from_user": "JBAR469", "from_user_id": 41922954, "from_user_id_str": "41922954", "from_user_name": "Justin Barnes", "geo": null, "id": 148836544013283330, "id_str": "148836544013283329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1493878292/226213_2070734805546_1160143321_32491943_5432057_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1493878292/226213_2070734805546_1160143321_32491943_5432057_n_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "You can never make a clown out of yourself for being faithful, unless you're being faithful to a hoe.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:11 +0000", "from_user": "itsAshleytho", "from_user_id": 83152843, "from_user_id_str": "83152843", "from_user_name": "The REAL her ", "geo": null, "id": 148836540271951870, "id_str": "148836540271951872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702583594/itsAshleytho_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702583594/itsAshleytho_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "lol you a clown \\uD83D\\uDE1DRT @maribabiii: @itsAshleytho \\uD83D\\uDE02bahahahaha \\uD83D\\uDE1C", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:00 +0000", "from_user": "la3pna", "from_user_id": 75143005, "from_user_id_str": "75143005", "from_user_name": "Thomas S Knutsen", "geo": null, "id": 148836495443247100, "id_str": "148836495443247104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iowahawkblog: First Al Davis, then Kim Jong-Il; bad year for insane clown-haired dictators in novelty Elvis sunglasses", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:54 +0000", "from_user": "Remixznflow82", "from_user_id": 69318201, "from_user_id_str": "69318201", "from_user_name": "Remixznflow", "geo": null, "id": 148836469287559170, "id_str": "148836469287559168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1630670451/310443_295205780498331_265400186812224_1223484_1032348054_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630670451/310443_295205780498331_265400186812224_1223484_1032348054_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "i dont know whether to clown this nigga @Troyvul and his bills... or offer my condolences...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:52 +0000", "from_user": "Vonte10_03Kalii", "from_user_id": 392776901, "from_user_id_str": "392776901", "from_user_name": "#TEAM 10/03", "geo": null, "id": 148836461913964540, "id_str": "148836461913964544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697019557/1320787126750_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697019557/1320787126750_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "READY 4 DIS BREAK BOUT 2 CLOWN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:45:50 +0000", "from_user": "PicturesqueTiff", "from_user_id": 230581346, "from_user_id_str": "230581346", "from_user_name": "\\u315C\\u00EFff\\u03B1\\u0E17\\u03B3 \\u2113\\u03B1\\u044F\\u03B1\\u00EF ", "geo": null, "id": 148836454192263170, "id_str": "148836454192263169", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698707898/IMAG0302_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698707898/IMAG0302_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "@xoxo_lingling I ain't say nothin but yu and I both kno . She need some philly Dick and she will leave that clown alone . I promise yu that", "to_user": "xoxo_lingling", "to_user_id": 45049130, "to_user_id_str": "45049130", "to_user_name": "LingLing\\u2661"}, +{"created_at": "Mon, 19 Dec 2011 18:45:49 +0000", "from_user": "demiralpinar", "from_user_id": 330661523, "from_user_id_str": "330661523", "from_user_name": "P\\u0131nar Demiral", "geo": null, "id": 148836450509651970, "id_str": "148836450509651968", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695476452/318580_10150348500262866_519672865_8098610_1473114128_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695476452/318580_10150348500262866_519672865_8098610_1473114128_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Hakan Yava\\u015F ile Clown Sanat\\u0131 Program\\u0131 : 24 Aral\\u0131k Cumartesi Dancentrum' da ba\\u015Fl\\u0131yor!!!!!!!! http://t.co/n3y2D7uw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:46 +0000", "from_user": "JagSingh96", "from_user_id": 243832762, "from_user_id_str": "243832762", "from_user_name": "Jag Singh", "geo": null, "id": 148836435737317380, "id_str": "148836435737317378", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1629015786/391401_2555884103586_1448468488_32912686_157903989_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629015786/391401_2555884103586_1448468488_32912686_157903989_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MaccaLaywood no it dont you clown! bro watch your mouth otherwise your getting frimpong'd!", "to_user": "MaccaLaywood", "to_user_id": 241267896, "to_user_id_str": "241267896", "to_user_name": "Macauley Laywood", "in_reply_to_status_id": 148835630657454080, "in_reply_to_status_id_str": "148835630657454080"}, +{"created_at": "Mon, 19 Dec 2011 18:45:45 +0000", "from_user": "LadySevene", "from_user_id": 161957394, "from_user_id_str": "161957394", "from_user_name": "Tiffany W.", "geo": null, "id": 148836433036193800, "id_str": "148836433036193792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691332658/j6Pi44X9_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691332658/j6Pi44X9_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@SociallyAware91 Lmaoo!!! Damn clown", "to_user": "SociallyAware91", "to_user_id": 84216299, "to_user_id_str": "84216299", "to_user_name": "Annesha Carter", "in_reply_to_status_id": 148835345516081150, "in_reply_to_status_id_str": "148835345516081153"}, +{"created_at": "Mon, 19 Dec 2011 18:45:36 +0000", "from_user": "_Jip_", "from_user_id": 220112904, "from_user_id_str": "220112904", "from_user_name": "Jipp", "geo": null, "id": 148836396080168960, "id_str": "148836396080168960", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1304605267/Foto0083_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1304605267/Foto0083_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@SilHerwijnen kempi - Bob du clown die is veel leuker", "to_user": "SilHerwijnen", "to_user_id": 223901667, "to_user_id_str": "223901667", "to_user_name": "Sil van Herwijnen", "in_reply_to_status_id": 148836121319714800, "in_reply_to_status_id_str": "148836121319714816"}, +{"created_at": "Mon, 19 Dec 2011 18:45:36 +0000", "from_user": "alexholat", "from_user_id": 51128793, "from_user_id_str": "51128793", "from_user_name": "Alex Holat", "geo": null, "id": 148836393085452300, "id_str": "148836393085452290", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1102841045/0b314807-d25b-4fa3-a2ae-9492414a9ebc_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1102841045/0b314807-d25b-4fa3-a2ae-9492414a9ebc_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@tbauschek haha you're a clown. Is Shannon home this week?", "to_user": "tbauschek", "to_user_id": 53421932, "to_user_id_str": "53421932", "to_user_name": "Ty Bauschek", "in_reply_to_status_id": 148835059279990800, "in_reply_to_status_id_str": "148835059279990786"}, +{"created_at": "Mon, 19 Dec 2011 18:45:31 +0000", "from_user": "KinGJuDADDY", "from_user_id": 107265436, "from_user_id_str": "107265436", "from_user_name": "Julian Diaz", "geo": null, "id": 148836372080377860, "id_str": "148836372080377857", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1566058920/KinGJuDADDY_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566058920/KinGJuDADDY_normal.jpg", "source": "<a href="http://tweetlogix.com" rel="nofollow">Tweetlogix</a>", "text": "@OGMaJik @Settintrends @JustSmp7 @NESS_IZZIE @itsCaro_o lmao I'm in class and I see \"we met on MySpace\" lmao you a clown", "to_user": "OGMaJik", "to_user_id": 50571075, "to_user_id_str": "50571075", "to_user_name": "Docta Greyhairs", "in_reply_to_status_id": 148822860742393860, "in_reply_to_status_id_str": "148822860742393856"}, +{"created_at": "Mon, 19 Dec 2011 18:45:26 +0000", "from_user": "MeLighty", "from_user_id": 95387562, "from_user_id_str": "95387562", "from_user_name": "Lighty Makhaye", "geo": null, "id": 148836354145525760, "id_str": "148836354145525761", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700320130/331659416_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700320130/331659416_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Aw! Sorry RT @FUNDI_PMB: So this clown replaced me lol fast kanje?! Owkay :-) hahaha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:25 +0000", "from_user": "Musa_Souled", "from_user_id": 33513526, "from_user_id_str": "33513526", "from_user_name": "Musa MrSouled Ndlovu", "geo": null, "id": 148836347036188670, "id_str": "148836347036188673", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701770210/Musa_Souled_1966012881148485428_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701770210/Musa_Souled_1966012881148485428_normal.jpg", "source": "<a href="http://www.writelonger.com" rel="nofollow">Write Longer</a>", "text": ":\"D RT @FUNDI_PMB: So this clown replaced me lol fast kanje?! Owkay :-) hahaha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:17 +0000", "from_user": "BluDissertation", "from_user_id": 22816158, "from_user_id_str": "22816158", "from_user_name": "Koury", "geo": null, "id": 148836317483106300, "id_str": "148836317483106305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1617191368/Halloween_1small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1617191368/Halloween_1small_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "@slimcreed51 HEY. I'm not here for you to clown my eating habits thankyouverymuch. ;-P", "to_user": "slimcreed51", "to_user_id": 101088174, "to_user_id_str": "101088174", "to_user_name": "s.ellis", "in_reply_to_status_id": 148826800351490050, "in_reply_to_status_id_str": "148826800351490048"}, +{"created_at": "Mon, 19 Dec 2011 18:45:11 +0000", "from_user": "KaiInThisBitch", "from_user_id": 319957366, "from_user_id_str": "319957366", "from_user_name": "Shakai McCarthan\\u00A9\\u2122", "geo": +{"coordinates": [32.4094,-80.6121], "type": "Point"}, "id": 148836289691652100, "id_str": "148836289691652096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679620399/5pCnauhb_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679620399/5pCnauhb_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@its_keeraa hah yu Ay clown", "to_user": "its_keeraa", "to_user_id": 131929689, "to_user_id_str": "131929689", "to_user_name": "` My funny ass.", "in_reply_to_status_id": 148836122540249100, "in_reply_to_status_id_str": "148836122540249089"}, +{"created_at": "Mon, 19 Dec 2011 18:45:09 +0000", "from_user": "Kivore", "from_user_id": 101098611, "from_user_id_str": "101098611", "from_user_name": "\\u2190 Call Her Love 22", "geo": null, "id": 148836279956684800, "id_str": "148836279956684800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698060028/profile_image_1324120007820_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698060028/profile_image_1324120007820_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @Mon_Solo_: Damn, I remember having class with Kevin he was always the class clown. R.I.P man.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:04 +0000", "from_user": "DearKylah", "from_user_id": 219132595, "from_user_id_str": "219132595", "from_user_name": "Dom", "geo": null, "id": 148836262189608960, "id_str": "148836262189608960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1662099296/avatar_normal.JPEG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662099296/avatar_normal.JPEG", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Oomf just tweeted some real shit but I cnt RT it cause im a clown ctfu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:01 +0000", "from_user": "DCPlod", "from_user_id": 28654635, "from_user_id_str": "28654635", "from_user_name": "Danielle Blake", "geo": null, "id": 148836246800699400, "id_str": "148836246800699392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1634069679/eyeshootfireballs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634069679/eyeshootfireballs_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "It's official: I could be a journalist. Because I'm infinitely more informed than that clown in the Guardian.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:59 +0000", "from_user": "UWish_IGAF", "from_user_id": 371357158, "from_user_id_str": "371357158", "from_user_name": "Josh Wright", "geo": null, "id": 148836239582314500, "id_str": "148836239582314496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1679472068/Kg08cRM7_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679472068/Kg08cRM7_normal", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @Tsu_Surf: I clearly can't clown u niggas and teach u .... So with that being said.. Don't ask me NOOOO FUCCIN QUESTIONS... Dead ass", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:57 +0000", "from_user": "Mommy0fa_Prince", "from_user_id": 336774804, "from_user_id_str": "336774804", "from_user_name": "Chase's Mommy", "geo": null, "id": 148836233362157570, "id_str": "148836233362157568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1678130283/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678130283/image_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "ive decided not to clown the fat bitch crew anymore.. them hoes jealous &mad kus they all broke, ugly & lives fucked up, so yea im DONE!! :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:51 +0000", "from_user": "cashclown", "from_user_id": 28302335, "from_user_id_str": "28302335", "from_user_name": "Cash Clown", "geo": null, "id": 148836207575564300, "id_str": "148836207575564288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1676613942/Yp55Q6KD_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676613942/Yp55Q6KD_normal", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Check out \"MILK & COOKIES\" by CASH CLOWN - http://t.co/j7Bwsoao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:40 +0000", "from_user": "QuintusJansen", "from_user_id": 21421756, "from_user_id_str": "21421756", "from_user_name": "Quintus Jansen", "geo": null, "id": 148836162067374080, "id_str": "148836162067374081", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1575512005/327614916_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575512005/327614916_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Do you mind that your face make-up doesn't match your neck? When I squint, you look like a circus clown. #Community", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:40 +0000", "from_user": "Nx_Her", "from_user_id": 91365666, "from_user_id_str": "91365666", "from_user_name": "Nuzhah Naashidh", "geo": null, "id": 148836160888774660, "id_str": "148836160888774657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1651762318/DSC016715_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651762318/DSC016715_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @RichardOBarry: Dolphins are free-ranging, intelligent, & complex wild animals, and they belong in the oceans, not playing the clown in our human schemes.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:38 +0000", "from_user": "ZaBeast409", "from_user_id": 374697133, "from_user_id_str": "374697133", "from_user_name": "Zach Villemez", "geo": null, "id": 148836151015374850, "id_str": "148836151015374848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1568225714/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1568225714/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "\"You're gonna die, clown!\" #HappyGilmore #classic", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:25 +0000", "from_user": "iBoneThugs_xoxo", "from_user_id": 105696023, "from_user_id_str": "105696023", "from_user_name": " BluntlySpeakin ", "geo": null, "id": 148836096900468740, "id_str": "148836096900468737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693950047/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693950047/image_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @440BoyRiqBubz: Fuckin All These CLOWN Niggaz , Now u Known as WHACK Pussy !!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:20 +0000", "from_user": "FUNDI_PMB", "from_user_id": 148753146, "from_user_id_str": "148753146", "from_user_name": "FUNDI MCHUNU", "geo": null, "id": 148836078265184260, "id_str": "148836078265184258", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1590034926/328121430_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1590034926/328121430_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "So this clown replaced me lol fast kanje?! Owkay :-) hahaha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:17 +0000", "from_user": "TheReaLMissBeBe", "from_user_id": 123012375, "from_user_id_str": "123012375", "from_user_name": "\\u2650MissBeBe", "geo": null, "id": 148836061940940800, "id_str": "148836061940940800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701163095/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701163095/image_normal.jpg", "source": "<a href="http://tweetlogix.com" rel="nofollow">Tweetlogix</a>", "text": "Clown RT @MooLo_Lo: @TheReaLMissBeBe I kno lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:16 +0000", "from_user": "shemypic", "from_user_id": 318162987, "from_user_id_str": "318162987", "from_user_name": "maysha blackwell", "geo": null, "id": 148836059676024830, "id_str": "148836059676024832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1419884498/PRETTYME_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1419884498/PRETTYME_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "SHE A CLOWN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:16 +0000", "from_user": "JadoreNiquee", "from_user_id": 229266179, "from_user_id_str": "229266179", "from_user_name": "AmorVincitOmnia ( :", "geo": null, "id": 148836058036051970, "id_str": "148836058036051969", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685036565/390920_322126304466680_100000079392813_1291219_1936876939_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685036565/390920_322126304466680_100000079392813_1291219_1936876939_n_normal.jpg", "source": "<a href="http://bbnation.com/182399.207145" rel="nofollow">Tweeker</a>", "text": "Clown Tendenciessss ,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:16 +0000", "from_user": "xAirForce_GIRLx", "from_user_id": 398746092, "from_user_id_str": "398746092", "from_user_name": "Nisha'RaShawn", "geo": null, "id": 148836057910231040, "id_str": "148836057910231040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702281015/nisha8_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702281015/nisha8_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Glad sneak and colonel Found my black nose imma be thE prettiest clown haha imma have my prison black and white on ;)) #Jrotc #TEAMCLOWN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:15 +0000", "from_user": "ShakeTheVixen", "from_user_id": 58160918, "from_user_id_str": "58160918", "from_user_name": "QUEEN OF VIXENS ", "geo": null, "id": 148836056857456640, "id_str": "148836056857456640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695596752/o0o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695596752/o0o_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "What u gotta say clown what u gotta say now", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:08 +0000", "from_user": "_partyworld", "from_user_id": 151372636, "from_user_id_str": "151372636", "from_user_name": "\\u3010\\u30D1\\u30FC\\u30C6\\u30A3\\u30EF\\u30FC\\u30EB\\u30C9\\u3011\\u30D1\\u30FC\\u30C6\\u30A3\\u30FC\\u30B0\\u30C3\\u30BA\\u901A\\u8CA9", "geo": null, "id": 148836025697976320, "id_str": "148836025697976320", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546408457/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546408457/image_normal.jpg", "source": "<a href="http://www.party-world.jp/" rel="nofollow">UNI-SUPPLY</a>", "text": "15521 JINGLES THE SUPER CLOWN \\u901A\\u8CA9 http://t.co/sDVBgHED | \\u30D4\\u30A8\\u30ED\\u30B9\\u30FC\\u30C4\\u30FB\\u30A4\\u30D9\\u30F3\\u30C8\\u8863\\u88C5 | \\u30A4\\u30D9\\u30F3\\u30C8\\u30B0\\u30C3\\u30BA | \\u30D1\\u30FC\\u30C6\\u30A3\\u30FC\\u30B0\\u30C3\\u30BA | \\u30D1\\u30FC\\u30C6\\u30A3\\u30EF\\u30FC\\u30EB\\u30C9 | \\u30E6\\u30CB\\u30B5\\u30D7\\u30E9\\u30A4\\u30BA\\u306E\\u30AA\\u30F3\\u30E9\\u30A4\\u30F3\\u30B7\\u30E7\\u30C3\\u30D7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:08 +0000", "from_user": "BONITAJASS", "from_user_id": 166039426, "from_user_id_str": "166039426", "from_user_name": "SUCK MY DICK BITCH !", "geo": null, "id": 148836024171237380, "id_str": "148836024171237376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691647862/snapshot__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691647862/snapshot__1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "i hate clown's -.-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:07 +0000", "from_user": "m17blp", "from_user_id": 57410656, "from_user_id_str": "57410656", "from_user_name": "Mike Lord", "geo": null, "id": 148836022812282880, "id_str": "148836022812282881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1600235771/284388_10150744592695514_577640513_20344092_2855781_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600235771/284388_10150744592695514_577640513_20344092_2855781_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "5 grand for a clown. THE BIG VERDICT: was it worth it? @Tom_gosling02 @Rushie1986 @smudger268 @nickbaxter @ako_7 @mattwood00 @Hedgo85", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:04 +0000", "from_user": "DJCOOP410", "from_user_id": 362241430, "from_user_id_str": "362241430", "from_user_name": "Eric Cooper", "geo": null, "id": 148836007914123260, "id_str": "148836007914123265", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688655288/2011-03-25_01-47-11_808_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688655288/2011-03-25_01-47-11_808_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "I cnt say im from the #dmv n person it dnt sound rite cause my city clown on both the #v an #d #baltimore is the only good from it", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:03 +0000", "from_user": "JDotSmiles", "from_user_id": 47675910, "from_user_id_str": "47675910", "from_user_name": "I Warned Y'all About", "geo": null, "id": 148836006794235900, "id_str": "148836006794235904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687477041/photo6-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687477041/photo6-1_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @itsDevRun: Niggas that suppose to have a Samsung 300 or some shit got iPhones now, wit a big clown ass case smh - lmaoooo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:55 +0000", "from_user": "SoFla_Wolverine", "from_user_id": 292980235, "from_user_id_str": "292980235", "from_user_name": "G", "geo": null, "id": 148835971176206340, "id_str": "148835971176206336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695662688/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695662688/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Hail2MI clown!!", "to_user": "Hail2MI", "to_user_id": 314770528, "to_user_id_str": "314770528", "to_user_name": "Nathanial Hornblower", "in_reply_to_status_id": 148832700671864830, "in_reply_to_status_id_str": "148832700671864832"}, +{"created_at": "Mon, 19 Dec 2011 18:43:54 +0000", "from_user": "GiannaGraham", "from_user_id": 247371905, "from_user_id_str": "247371905", "from_user_name": "GeeAwnUhh GrayUhm\\u2661", "geo": null, "id": 148835968265355260, "id_str": "148835968265355264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695975400/IMAG0293_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695975400/IMAG0293_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u00AB@mb_staybased RT @xgreenawaltx: @cthug69 is a clown.\\u00BB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:53 +0000", "from_user": "DaphneJ_", "from_user_id": 167139229, "from_user_id_str": "167139229", "from_user_name": "Daphne Jordan", "geo": null, "id": 148835961764200450, "id_str": "148835961764200449", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1450417356/322606802_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1450417356/322606802_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @yasminaaax: RT @DaphneJ_: Ik heb ze trouwens al gevonden hoor=$ - clown / ik vind jou ook lief hoor Rayna/limonade", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:51 +0000", "from_user": "NajMorn2", "from_user_id": 213826859, "from_user_id_str": "213826859", "from_user_name": "Najee Morning", "geo": null, "id": 148835954352848900, "id_str": "148835954352848896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701742059/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701742059/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "you a copycat homes you a clown a #synonom", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:49 +0000", "from_user": "Brucee_Jones", "from_user_id": 436282984, "from_user_id_str": "436282984", "from_user_name": "Bruce Jones", "geo": null, "id": 148835946916356100, "id_str": "148835946916356097", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691950723/DSC04397_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691950723/DSC04397_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "How many times is @SheSoClassic gonna clown on me!? #trick", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:44 +0000", "from_user": "PJ_JBF", "from_user_id": 328389457, "from_user_id_str": "328389457", "from_user_name": "aaliyah winfield", "geo": null, "id": 148835924535554050, "id_str": "148835924535554048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1647209196/webcam-toy-photo10_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647209196/webcam-toy-photo10_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@TatyanaLiShae05 clown i was WE as in US used to get in troublee.", "to_user": "TatyanaLiShae05", "to_user_id": 431941525, "to_user_id_str": "431941525", "to_user_name": "Tatyana Jackson", "in_reply_to_status_id": 148835445839638530, "in_reply_to_status_id_str": "148835445839638528"}, +{"created_at": "Mon, 19 Dec 2011 18:43:44 +0000", "from_user": "440BoyRiqBubz", "from_user_id": 274014051, "from_user_id_str": "274014051", "from_user_name": "Ink Me AnyWhere\\u2122", "geo": null, "id": 148835924288090100, "id_str": "148835924288090113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702459963/IMAG0003_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702459963/IMAG0003_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Fuckin All These CLOWN Niggaz , Now u Known as WHACK Pussy !!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:37 +0000", "from_user": "SqueezYOnipples", "from_user_id": 231260195, "from_user_id_str": "231260195", "from_user_name": "Yasming Bullock", "geo": null, "id": 148835896786038800, "id_str": "148835896786038784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693699073/314650_280422745323111_100000661635349_939212_208009364_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693699073/314650_280422745323111_100000661635349_939212_208009364_n_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @_longJONsilvers: \\u00AB@SqueezYOnipples @_longJONsilvers @billy_baddaz lmao dey wacc Cus dey aint ME....aint i Cant be dat much of \\u00E0 clown u still around...#foh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:36 +0000", "from_user": "marleenhuisman", "from_user_id": 187916786, "from_user_id_str": "187916786", "from_user_name": "Marleen Huisman", "geo": null, "id": 148835891060817920, "id_str": "148835891060817920", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691415933/316782056_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691415933/316782056_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@Robiinnxxx ja die kan ik ook niet. ik heb alleen dead girl en evil clown", "to_user": "Robiinnxxx", "to_user_id": 308453316, "to_user_id_str": "308453316", "to_user_name": "Robin.", "in_reply_to_status_id": 148835518430445570, "in_reply_to_status_id_str": "148835518430445569"}, +{"created_at": "Mon, 19 Dec 2011 18:43:34 +0000", "from_user": "PrettyBrwnNay", "from_user_id": 56540234, "from_user_id_str": "56540234", "from_user_name": "Santi M. Zenon", "geo": null, "id": 148835881925611520, "id_str": "148835881925611520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1661401873/PrettyBrwnNay_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661401873/PrettyBrwnNay_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@WhoDisNiggaBAve lmmfao!!! Right.. We use to clown!!!! You gettin them 11's ??", "to_user": "WhoDisNiggaBAve", "to_user_id": 123334973, "to_user_id_str": "123334973", "to_user_name": "B-Ave", "in_reply_to_status_id": 148835320211832830, "in_reply_to_status_id_str": "148835320211832834"}, +{"created_at": "Mon, 19 Dec 2011 18:43:28 +0000", "from_user": "Adamtheboss", "from_user_id": 312201261, "from_user_id_str": "312201261", "from_user_name": "Adam Yepez", "geo": null, "id": 148835860194930700, "id_str": "148835860194930688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690384361/YE7jh7Lx_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690384361/YE7jh7Lx_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@yummyvale yup she's a clown lol", "to_user": "yummyvale", "to_user_id": 331194436, "to_user_id_str": "331194436", "to_user_name": "Valeria Miranda", "in_reply_to_status_id": 148831062741614600, "in_reply_to_status_id_str": "148831062741614593"}, +{"created_at": "Mon, 19 Dec 2011 18:43:22 +0000", "from_user": "KreedleA", "from_user_id": 135321382, "from_user_id_str": "135321382", "from_user_name": "\\uF8FF Kristoffer \\uF8FF ", "geo": null, "id": 148835832172781570, "id_str": "148835832172781569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702058280/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702058280/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@iTz_Renato: http://t.co/WWeoaOty - He's so stupid that shoud've be 2012 Champions, as 2011 Barcelona won it\\u201D biggest clown ever \\uD83D\\uDE04 #fag", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:14 +0000", "from_user": "Tsu_Surf", "from_user_id": 89787221, "from_user_id_str": "89787221", "from_user_name": "Tsunami Surf", "geo": null, "id": 148835800027643900, "id_str": "148835800027643905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702471226/Tsu_Surf_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702471226/Tsu_Surf_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "I clearly can't clown u niggas and teach u .... So with that being said.. Don't ask me NOOOO FUCCIN QUESTIONS... Dead ass", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:12 +0000", "from_user": "KDubb2014", "from_user_id": 166360638, "from_user_id_str": "166360638", "from_user_name": "Brittney Kimble", "geo": null, "id": 148835790020018180, "id_str": "148835790020018176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1582829926/Beautiful_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1582829926/Beautiful_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "I love Tia! She a clown..lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:10 +0000", "from_user": "AyyoItsSmoove_", "from_user_id": 319695766, "from_user_id_str": "319695766", "from_user_name": "Mr.Kodak\\u2122", "geo": null, "id": 148835780775780350, "id_str": "148835780775780352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1673262397/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673262397/profile_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "Ima fuckin clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:08 +0000", "from_user": "i_seebeauty", "from_user_id": 255732121, "from_user_id_str": "255732121", "from_user_name": "Lucia ", "geo": null, "id": 148835775054741500, "id_str": "148835775054741504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700816678/IMAG0904_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700816678/IMAG0904_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Who_datWILL lmfaooooooo hahahahahaha clown", "to_user": "Who_datWILL", "to_user_id": 355768778, "to_user_id_str": "355768778", "to_user_name": "williams thomas", "in_reply_to_status_id": 148835294001635330, "in_reply_to_status_id_str": "148835294001635328"}, +{"created_at": "Mon, 19 Dec 2011 18:43:03 +0000", "from_user": "Daisybelll", "from_user_id": 43061572, "from_user_id_str": "43061572", "from_user_name": "Daisybell", "geo": null, "id": 148835753881911300, "id_str": "148835753881911296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1519677212/earth_heart_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1519677212/earth_heart_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @RichardOBarry: Dolphins are free-ranging, intelligent, & complex wild animals, and they belong in the oceans, not playing the clown in our human schemes.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:02 +0000", "from_user": "dreammya", "from_user_id": 173549811, "from_user_id_str": "173549811", "from_user_name": "'myamya", "geo": null, "id": 148835750027341820, "id_str": "148835750027341824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1635066270/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635066270/profile_normal.jpg", "source": "<a href="http://bit.ly/fVzRUd" rel="nofollow">TwitPal</a>", "text": "I can clown niggahs my ass fat and yo bitch I can take that", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:02 +0000", "from_user": "theraveneffect", "from_user_id": 23890115, "from_user_id_str": "23890115", "from_user_name": "Raven", "geo": null, "id": 148835749683396600, "id_str": "148835749683396608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697115808/Image_9_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697115808/Image_9_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @justjohn2x: @theraveneffect why is insane clown posse neither insane nor a posse?/\\n\\nActually they r both. Tardtard", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:58 +0000", "from_user": "DJGhostDogg", "from_user_id": 313008688, "from_user_id_str": "313008688", "from_user_name": "Turntable Samurai", "geo": null, "id": 148835731656282100, "id_str": "148835731656282112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1386469083/220364_166130216779848_100001486112045_388684_260204_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1386469083/220364_166130216779848_100001486112045_388684_260204_o_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "If @ActionBronson don't get in the XXL freshman class 2011 over sum skinny jean wearn clown,I'm going 2 be pissed #he got lyrics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:49 +0000", "from_user": "VRavencroft", "from_user_id": 109348521, "from_user_id_str": "109348521", "from_user_name": "Vanessa Ravencroft", "geo": null, "id": 148835694427643900, "id_str": "148835694427643904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/661424167/vr1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/661424167/vr1_normal.jpg", "source": "<a href="http://www.yahoo.com" rel="nofollow">Yahoo!</a>", "text": "gave a thumbs up to Clown's comment: I am not sure what is more disturbing, the fact that he believes this, or ... http://t.co/VrV1bdhZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:46 +0000", "from_user": "G_Allen10", "from_user_id": 43780277, "from_user_id_str": "43780277", "from_user_name": "Garey Allen", "geo": null, "id": 148835684055126000, "id_str": "148835684055126016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687409682/284011_2306997954642_1240081898_3772194_7370000_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687409682/284011_2306997954642_1240081898_3772194_7370000_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@JeromeHarris_23: I hate fat girls with skinny chick mentalities.\\u201Dlmaoo u a clown my niqqa lmaoo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:46 +0000", "from_user": "2nd2nunn_", "from_user_id": 360970857, "from_user_id_str": "360970857", "from_user_name": "Dylan Jerome Nunn", "geo": null, "id": 148835683035922430, "id_str": "148835683035922432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1510657043/dylan_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1510657043/dylan_normal.jpg", "source": "<a href="http://www.motorola.com" rel="nofollow">DROID</a>", "text": "@tobieblake18 that awkward moment when u try to hug that hot person and u run into the mirror haha to clown nigga", "to_user": "TobieBlake18", "to_user_id": 411988850, "to_user_id_str": "411988850", "to_user_name": "Tobie Blake Wilkins"}, +{"created_at": "Mon, 19 Dec 2011 18:42:37 +0000", "from_user": "_partyworld", "from_user_id": 151372636, "from_user_id_str": "151372636", "from_user_name": "\\u3010\\u30D1\\u30FC\\u30C6\\u30A3\\u30EF\\u30FC\\u30EB\\u30C9\\u3011\\u30D1\\u30FC\\u30C6\\u30A3\\u30FC\\u30B0\\u30C3\\u30BA\\u901A\\u8CA9", "geo": null, "id": 148835645673062400, "id_str": "148835645673062400", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546408457/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546408457/image_normal.jpg", "source": "<a href="http://www.party-world.jp/" rel="nofollow">UNI-SUPPLY</a>", "text": "16983STD BUBBLES THE CLOWN \\u901A\\u8CA9 http://t.co/u2rInEoV | \\u30D4\\u30A8\\u30ED\\u30B9\\u30FC\\u30C4\\u30FB\\u30A4\\u30D9\\u30F3\\u30C8\\u8863\\u88C5 | \\u30A4\\u30D9\\u30F3\\u30C8\\u30B0\\u30C3\\u30BA | \\u30D1\\u30FC\\u30C6\\u30A3\\u30FC\\u30B0\\u30C3\\u30BA | \\u30D1\\u30FC\\u30C6\\u30A3\\u30EF\\u30FC\\u30EB\\u30C9 | \\u30E6\\u30CB\\u30B5\\u30D7\\u30E9\\u30A4\\u30BA\\u306E\\u30AA\\u30F3\\u30E9\\u30A4\\u30F3\\u30B7\\u30E7\\u30C3\\u30D7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:34 +0000", "from_user": "mws4ua", "from_user_id": 156693481, "from_user_id_str": "156693481", "from_user_name": "Matt S.", "geo": null, "id": 148835632389697540, "id_str": "148835632389697536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1526530758/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1526530758/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@ClayTravisBGID What's a 'nationa title'? Ass clown.", "to_user": "ClayTravisBGID", "to_user_id": 50772918, "to_user_id_str": "50772918", "to_user_name": "Clay Travis"}, +{"created_at": "Mon, 19 Dec 2011 18:42:24 +0000", "from_user": "Myfemisn2012", "from_user_id": 56129112, "from_user_id_str": "56129112", "from_user_name": "919Twizzy336", "geo": null, "id": 148835591830773760, "id_str": "148835591830773761", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702031394/YYaKNroO_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702031394/YYaKNroO_normal.jpeg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@Misz_BHaving @Myfemisn2012 me clown.\\u201Doohh yea, jus checkn didnt knw homie...i slept great too!!!!!!! #win", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:21 +0000", "from_user": "FreddyFUCKHoes", "from_user_id": 431990094, "from_user_id_str": "431990094", "from_user_name": "L'Freddy Gambler ", "geo": null, "id": 148835577981181950, "id_str": "148835577981181952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681822555/fred_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681822555/fred_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Time to head out n clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:18 +0000", "from_user": "JuanitaOviedo", "from_user_id": 216093371, "from_user_id_str": "216093371", "from_user_name": "Juanita Oviedo", "geo": null, "id": 148835565863829500, "id_str": "148835565863829505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1643683314/035_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643683314/035_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "And when I'm sad you're a clown and if I get scared you're always around and then they say your hair's too long but I don't care with you\\u2665 8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:13 +0000", "from_user": "SouthSMASH", "from_user_id": 175961334, "from_user_id_str": "175961334", "from_user_name": "Sean South", "geo": null, "id": 148835542795157500, "id_str": "148835542795157504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1339023707/seansounth23041b_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1339023707/seansounth23041b_copy_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @stephenpocock: That's it! I'm going to clown college", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:11 +0000", "from_user": "LYNNEE_20", "from_user_id": 355647284, "from_user_id_str": "355647284", "from_user_name": "ERICA LYNN ", "geo": null, "id": 148835534142308350, "id_str": "148835534142308353", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1629869465/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629869465/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Yea bestie @fuckyeahIMJAZ ..young definitely not on my time... True Clown !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:01 +0000", "from_user": "DizzyDGAF_", "from_user_id": 25268995, "from_user_id_str": "25268995", "from_user_name": "Mrs. Hernandez", "geo": null, "id": 148835493805699070, "id_str": "148835493805699072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701496640/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701496640/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "This is dr hot nuts from drippy medical center. Cthu shizz a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:59 +0000", "from_user": "_dIVineFORTE_", "from_user_id": 94840815, "from_user_id_str": "94840815", "from_user_name": "Sevyn ", "geo": null, "id": 148835484708245500, "id_str": "148835484708245504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1686401161/imagejpeg_2_3-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686401161/imagejpeg_2_3-1_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "RT @Eye_Master This clown slipped on butter! #Dead! Someone always does something stupid in this house haha | lmaooo!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:57 +0000", "from_user": "mb_staybased", "from_user_id": 199697422, "from_user_id_str": "199697422", "from_user_name": "Beuoy Mark", "geo": null, "id": 148835474914545660, "id_str": "148835474914545664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1598518528/big_boo15_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598518528/big_boo15_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @xgreenawaltx: @cthug69 is a clown.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:48 +0000", "from_user": "Myoungfan3200", "from_user_id": 252992244, "from_user_id_str": "252992244", "from_user_name": "sarah", "geo": null, "id": 148835438881288200, "id_str": "148835438881288192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1323715958/AlexHeartman08_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1323715958/AlexHeartman08_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@BrendanKJMeyer @JBfan3200 are you a serious person or more a clown ?? i guess i am on the clown side but serious is not fun", "to_user": "BrendanKJMeyer", "to_user_id": 205909523, "to_user_id_str": "205909523", "to_user_name": "Brendan Meyer", "in_reply_to_status_id": 148829377952624640, "in_reply_to_status_id_str": "148829377952624642"}, +{"created_at": "Mon, 19 Dec 2011 18:41:48 +0000", "from_user": "smoerschell", "from_user_id": 155917839, "from_user_id_str": "155917839", "from_user_name": "Shelly Thomas", "geo": null, "id": 148835437291634700, "id_str": "148835437291634688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1588322028/IMG_1016_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1588322028/IMG_1016_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @RichardOBarry: Dolphins are free-ranging, intelligent, & complex wild animals, and they belong in the oceans, not playing the clown in our human schemes.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:47 +0000", "from_user": "MANOSCLOWN", "from_user_id": 286277822, "from_user_id_str": "286277822", "from_user_name": "M MANOS CLOWN", "geo": null, "id": 148835432682106880, "id_str": "148835432682106880", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1348183937/fotis_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1348183937/fotis_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube video http://t.co/4LCIUYhL ministerio manos clown la importancia de el perd\\u00F3n", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:44 +0000", "from_user": "PRETTiMentality", "from_user_id": 314214555, "from_user_id_str": "314214555", "from_user_name": "Deanna ", "geo": null, "id": 148835421579784200, "id_str": "148835421579784193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1686271269/166914_315948258429196_100000420745796_1116519_1582690769_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686271269/166914_315948258429196_100000420745796_1116519_1582690769_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Mr.Gladston is a clown lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:44 +0000", "from_user": "dreammya", "from_user_id": 173549811, "from_user_id_str": "173549811", "from_user_name": "'myamya", "geo": null, "id": 148835420787056640, "id_str": "148835420787056640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1635066270/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635066270/profile_normal.jpg", "source": "<a href="http://bit.ly/fVzRUd" rel="nofollow">TwitPal</a>", "text": "You need to get a grip and hop off your a clown ass niggah never been down ass niggah I spent more money then you been a round ass niggah", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:43 +0000", "from_user": "_Str8Texas", "from_user_id": 124372079, "from_user_id_str": "124372079", "from_user_name": "Maine S.", "geo": null, "id": 148835417976868860, "id_str": "148835417976868864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1640747921/maine10_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640747921/maine10_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "Before i met you you was just a musty hoe fuckin with them clown niggas like crusty doe.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:41 +0000", "from_user": "MsKayla05", "from_user_id": 145856837, "from_user_id_str": "145856837", "from_user_name": "Kayla Wilkerson", "geo": null, "id": 148835409957359600, "id_str": "148835409957359616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1656254712/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656254712/profile_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @TAkeme2CHINA: I got ish to lose I don't wana clown!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:41 +0000", "from_user": "MrsClassy_Ass", "from_user_id": 358313136, "from_user_id_str": "358313136", "from_user_name": "$d.town$", "geo": null, "id": 148835408074121200, "id_str": "148835408074121216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1656697048/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656697048/profile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "MADE chick. how u love dat clown? check my background.!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:40 +0000", "from_user": "itsDevRun", "from_user_id": 47687025, "from_user_id_str": "47687025", "from_user_name": "money hungry", "geo": null, "id": 148835406346059780, "id_str": "148835406346059777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1656557284/securedownload_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656557284/securedownload_normal.jpeg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Niggas that suppose to have a Samsung 300 or some shit got iPhones now, wit a big clown ass case smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:36 +0000", "from_user": "roosadmiraal17", "from_user_id": 231865885, "from_user_id_str": "231865885", "from_user_name": "Roos Admiraal", "geo": null, "id": 148835387857575940, "id_str": "148835387857575937", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1673399599/JvxDKa6y_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673399599/JvxDKa6y_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@maxje12 clown", "to_user": "maxje12", "to_user_id": 78323560, "to_user_id_str": "78323560", "to_user_name": "Max Admiraal"}, +{"created_at": "Mon, 19 Dec 2011 18:41:32 +0000", "from_user": "gerrinDtrier", "from_user_id": 341808447, "from_user_id_str": "341808447", "from_user_name": "terrindgrier \\uE330\\uE00F\\uE049 \\u272A", "geo": null, "id": 148835373194297340, "id_str": "148835373194297345", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679568517/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679568517/image_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @McPherson__: Kool-aid no sugar, toast no jelly, chips no dip, xbox no controller, guys no girls, love no hate, calvin no chipmunks, clown no smile", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:25 +0000", "from_user": "_longJONsilvers", "from_user_id": 292928030, "from_user_id_str": "292928030", "from_user_name": "jontaz$$$moore", "geo": null, "id": 148835341149806600, "id_str": "148835341149806596", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1586442056/taz2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586442056/taz2_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u00AB@SqueezYOnipples @_longJONsilvers @billy_baddaz lmao dey wacc Cus dey aint ME....aint i Cant be dat much of \\u00E0 clown u still around...#foh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:23 +0000", "from_user": "brickked2", "from_user_id": 294952779, "from_user_id_str": "294952779", "from_user_name": "#TheSportsGuyNHarlem", "geo": +{"coordinates": [40.7567,-73.9714], "type": "Point"}, "id": 148835333025435650, "id_str": "148835333025435648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697069980/IMG00082-20110615-1320_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697069980/IMG00082-20110615-1320_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"@Steve_Morin: Why did Santonio Holmes wear a Superman shirt to his post-game conference? HE BLEW THE GAME!!\"#Because he's a CLOWN. Overated", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:10 +0000", "from_user": "Misz_BHaving", "from_user_id": 233761863, "from_user_id_str": "233761863", "from_user_name": "BeRrIUnique.", "geo": null, "id": 148835277346045950, "id_str": "148835277346045952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1656520975/Strawberri336_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656520975/Strawberri336_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "@Myfemisn2012 me clown.", "to_user": "Myfemisn2012", "to_user_id": 56129112, "to_user_id_str": "56129112", "to_user_name": "919Twizzy336", "in_reply_to_status_id": 148835154662670340, "in_reply_to_status_id_str": "148835154662670336"}, +{"created_at": "Mon, 19 Dec 2011 18:41:06 +0000", "from_user": "nickfan1", "from_user_id": 18978753, "from_user_id_str": "18978753", "from_user_name": "Gemma Cripps", "geo": null, "id": 148835261730664450, "id_str": "148835261730664448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1474278443/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1474278443/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Fd4x4 ha that's how every pic turns out in my house...basically Lincoln the attention seeking clown haha", "to_user": "Fd4x4", "to_user_id": 61169570, "to_user_id_str": "61169570", "to_user_name": "Dave Harley", "in_reply_to_status_id": 148834617523322880, "in_reply_to_status_id_str": "148834617523322881"}, +{"created_at": "Mon, 19 Dec 2011 18:41:04 +0000", "from_user": "TAkeme2CHINA", "from_user_id": 70310678, "from_user_id_str": "70310678", "from_user_name": "Miss Frazier", "geo": null, "id": 148835256080932860, "id_str": "148835256080932865", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1649671507/tmp_image_file_profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649671507/tmp_image_file_profile_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I got ish to lose I don't wana clown!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:03 +0000", "from_user": "DOING_ME2010", "from_user_id": 370804968, "from_user_id_str": "370804968", "from_user_name": "taylor washington", "geo": null, "id": 148835251186188300, "id_str": "148835251186188288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1587675976/111014-003457_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587675976/111014-003457_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "I was about to clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:56 +0000", "from_user": "rannylovesmac09", "from_user_id": 379466964, "from_user_id_str": "379466964", "from_user_name": "Miranda Rohleder", "geo": null, "id": 148835220903301120, "id_str": "148835220903301120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699660458/8pagHO30_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699660458/8pagHO30_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "#SometimesIWonder why the hell you aren't a circus clown with all that makeup on ?! #unnecessary", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:51 +0000", "from_user": "earthisland", "from_user_id": 22984215, "from_user_id_str": "22984215", "from_user_name": "EarthIslandInstitute", "geo": null, "id": 148835197863993340, "id_str": "148835197863993344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/125805235/EIILogoBlack2x2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/125805235/EIILogoBlack2x2_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @RichardOBarry: Dolphins are free-ranging, intelligent, & complex wild animals, and they belong in the oceans, not playing the clown in our human schemes.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:32 +0000", "from_user": "superstar2five", "from_user_id": 277215468, "from_user_id_str": "277215468", "from_user_name": "Kerry Hoskins", "geo": null, "id": 148835121527652350, "id_str": "148835121527652352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1300147936/DSXv7a29_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1300147936/DSXv7a29_normal", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "shawty got on to much make up this bih look like a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:32 +0000", "from_user": "haworthtweets", "from_user_id": 366659490, "from_user_id_str": "366659490", "from_user_name": "Samuel Sam", "geo": null, "id": 148835117987667970, "id_str": "148835117987667968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1615017480/IMG00004-20110407-1339_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615017480/IMG00004-20110407-1339_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@zulfikaralikhan You are either high or a clown if u believe Zardari is your saviour (BB may be but AAZ never).Your hero is a mad criminal.", "to_user": "zulfikaralikhan", "to_user_id": 91730696, "to_user_id_str": "91730696", "to_user_name": "zulfiqar khan", "in_reply_to_status_id": 148832502721691650, "in_reply_to_status_id_str": "148832502721691648"}, +{"created_at": "Mon, 19 Dec 2011 18:40:31 +0000", "from_user": "V_Meech", "from_user_id": 62953660, "from_user_id_str": "62953660", "from_user_name": "Vanessa (Folarin) W.", "geo": null, "id": 148835117715034100, "id_str": "148835117715034113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1676434393/black_dress_new_avi_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676434393/black_dress_new_avi_normal.gif", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @HynesHummer2015 I love @V_Meech we just clown about relationships for no reason lmao --- <3333333", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:31 +0000", "from_user": "OpenKitchen1", "from_user_id": 333535020, "from_user_id_str": "333535020", "from_user_name": "Open Kitchen ", "geo": null, "id": 148835117102661630, "id_str": "148835117102661633", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1580146117/Senza_titolo-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580146117/Senza_titolo-1_normal.jpg", "source": "<a href="http://www.networkedblogs.com/" rel="nofollow">NetworkedBlogs</a>", "text": "Un clown di verdure per i bimbi http://t.co/r4meTfyS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:31 +0000", "from_user": "S0fiaElizabeth", "from_user_id": 30555058, "from_user_id_str": "30555058", "from_user_name": "sofie yohannes", "geo": null, "id": 148835116255428600, "id_str": "148835116255428608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688318437/sofa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688318437/sofa_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@SteamyStevey you are a damn clown hermanO you are ethnic too homie don't forget", "to_user": "SteamyStevey", "to_user_id": 319272205, "to_user_id_str": "319272205", "to_user_name": "Steven Beran", "in_reply_to_status_id": 148832808385781760, "in_reply_to_status_id_str": "148832808385781760"}, +{"created_at": "Mon, 19 Dec 2011 18:40:27 +0000", "from_user": "E_Beesy4", "from_user_id": 397716686, "from_user_id_str": "397716686", "from_user_name": "Ebony Burnside", "geo": null, "id": 148835097842429950, "id_str": "148835097842429952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691227513/v2G5WhE2_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691227513/v2G5WhE2_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "U ever watch a hood moneky try n dress up....its like a clown in heels #notattractive", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:24 +0000", "from_user": "DNA2K10", "from_user_id": 76479319, "from_user_id_str": "76479319", "from_user_name": "D.N.A", "geo": null, "id": 148835085603454980, "id_str": "148835085603454976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1661056521/DNA2K10_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661056521/DNA2K10_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@BrooklynBeazyy so stop mentioning my name u clown", "to_user": "BrooklynBeazyy", "to_user_id": 64618842, "to_user_id_str": "64618842", "to_user_name": "Bryann", "in_reply_to_status_id": 148834346634194940, "in_reply_to_status_id_str": "148834346634194944"}, +{"created_at": "Mon, 19 Dec 2011 18:40:18 +0000", "from_user": "Hollielavender", "from_user_id": 42120213, "from_user_id_str": "42120213", "from_user_name": "hollie lavender", "geo": null, "id": 148835063008722940, "id_str": "148835063008722944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1523306137/IMG-20110812-00821_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1523306137/IMG-20110812-00821_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Kids bathed iorning done gonna put the clothes away then sit down and eat spag bowl mmm clown town 2morow hope it ant a let down!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:13 +0000", "from_user": "foreverpink08", "from_user_id": 437090440, "from_user_id_str": "437090440", "from_user_name": "dinangely", "geo": null, "id": 148835041621979140, "id_str": "148835041621979138", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696035898/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696035898/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@wiseguyruben @3leggedkelz lmaoooo clown", "to_user": "wiseguyruben", "to_user_id": 367436123, "to_user_id_str": "367436123", "to_user_name": "Ruben Espinal", "in_reply_to_status_id": 148833829782695940, "in_reply_to_status_id_str": "148833829782695936"}, +{"created_at": "Mon, 19 Dec 2011 18:40:10 +0000", "from_user": "YOUNG_MONEY5", "from_user_id": 88536206, "from_user_id_str": "88536206", "from_user_name": "HURRIxANE MON ", "geo": null, "id": 148835027906600960, "id_str": "148835027906600962", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1611828810/328840676_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611828810/328840676_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "I kno this clown aint say imma text yu cuz her boo thang came over", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:08 +0000", "from_user": "hirshi", "from_user_id": 23308566, "from_user_id_str": "23308566", "from_user_name": "dan", "geo": null, "id": 148835019052417020, "id_str": "148835019052417024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1617493722/photo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1617493722/photo_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "ride that ___ like a rodeo clown @doctajeep", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:05 +0000", "from_user": "RUNWAY_GODDESS", "from_user_id": 239561898, "from_user_id_str": "239561898", "from_user_name": "BOMBCHICK", "geo": null, "id": 148835006398218240, "id_str": "148835006398218240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693154478/10msrql6_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693154478/10msrql6_normal", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "THIS GIRL JUST SAID SHE WANNA BE MUSLIM CUZ SHE WANNA WEAR ALL THE BEST KHIMARS(SP) SMH CLOWN MOVE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:00 +0000", "from_user": "old_darthsheelf", "from_user_id": 251783005, "from_user_id_str": "251783005", "from_user_name": "hannaH Rowton", "geo": null, "id": 148834987205079040, "id_str": "148834987205079041", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677903474/santa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677903474/santa_normal.jpg", "source": "<a href="http://batcomputer.heroku.com" rel="nofollow">Batcomputer</a>", "text": "RT @God_Damn_Batman: Anyone know how to get blood and white clown makeup stains out of tri-weave titanium-dipped Kevlar?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:51 +0000", "from_user": "ChiTownGuevara", "from_user_id": 206855235, "from_user_id_str": "206855235", "from_user_name": "S. Ali", "geo": null, "id": 148834949674434560, "id_str": "148834949674434561", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693320784/IMG-20111213-00140_ImitateHDR_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693320784/IMG-20111213-00140_ImitateHDR_1_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@mechacontext @Saadath @rizwan_k @Imad_Shamsuddin down like a clown with an upside down frown", "to_user": "mechacontext", "to_user_id": 245679184, "to_user_id_str": "245679184", "to_user_name": "Faraaz Saiduzzaman", "in_reply_to_status_id": 148833819686998000, "in_reply_to_status_id_str": "148833819686998017"}, +{"created_at": "Mon, 19 Dec 2011 18:39:47 +0000", "from_user": "Seeyalatta", "from_user_id": 228563311, "from_user_id_str": "228563311", "from_user_name": "Jalila ", "geo": null, "id": 148834930997211140, "id_str": "148834930997211138", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1690102282/1323553184135_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690102282/1323553184135_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Finally watched 'Laugh At My Pain\" Kevin Hart is a clown !!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:42 +0000", "from_user": "atomicrocket", "from_user_id": 156154995, "from_user_id_str": "156154995", "from_user_name": "Jim Milligan", "geo": null, "id": 148834908515737600, "id_str": "148834908515737600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/994663631/fop1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/994663631/fop1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@AgentFoo It's like someone took a clown car, filled it up with cute, and then blew it up all over my heart.", "to_user": "AgentFoo", "to_user_id": 14530209, "to_user_id_str": "14530209", "to_user_name": "Foo", "in_reply_to_status_id": 148833969813729280, "in_reply_to_status_id_str": "148833969813729282"} +, +{"created_at": "Mon, 19 Dec 2011 18:39:51 +0000", "from_user": "ChiTownGuevara", "from_user_id": 206855235, "from_user_id_str": "206855235", "from_user_name": "S. Ali", "geo": null, "id": 148834949674434560, "id_str": "148834949674434561", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693320784/IMG-20111213-00140_ImitateHDR_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693320784/IMG-20111213-00140_ImitateHDR_1_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@mechacontext @Saadath @rizwan_k @Imad_Shamsuddin down like a clown with an upside down frown", "to_user": "mechacontext", "to_user_id": 245679184, "to_user_id_str": "245679184", "to_user_name": "Faraaz Saiduzzaman", "in_reply_to_status_id": 148833819686998000, "in_reply_to_status_id_str": "148833819686998017"}, +{"created_at": "Mon, 19 Dec 2011 18:39:47 +0000", "from_user": "Seeyalatta", "from_user_id": 228563311, "from_user_id_str": "228563311", "from_user_name": "Jalila ", "geo": null, "id": 148834930997211140, "id_str": "148834930997211138", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1690102282/1323553184135_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690102282/1323553184135_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Finally watched 'Laugh At My Pain\" Kevin Hart is a clown !!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:42 +0000", "from_user": "atomicrocket", "from_user_id": 156154995, "from_user_id_str": "156154995", "from_user_name": "Jim Milligan", "geo": null, "id": 148834908515737600, "id_str": "148834908515737600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/994663631/fop1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/994663631/fop1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@AgentFoo It's like someone took a clown car, filled it up with cute, and then blew it up all over my heart.", "to_user": "AgentFoo", "to_user_id": 14530209, "to_user_id_str": "14530209", "to_user_name": "Foo", "in_reply_to_status_id": 148833969813729280, "in_reply_to_status_id_str": "148833969813729282"}, +{"created_at": "Mon, 19 Dec 2011 18:39:35 +0000", "from_user": "C_Harris82", "from_user_id": 43046446, "from_user_id_str": "43046446", "from_user_name": "Carl Harris", "geo": null, "id": 148834882003546100, "id_str": "148834882003546112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1644928367/rozel_photo_shoot_2012_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644928367/rozel_photo_shoot_2012_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@540Boss lmao u a clown!.....ima be dyin when we get back", "to_user": "540Boss", "to_user_id": 170098452, "to_user_id_str": "170098452", "to_user_name": "Davie Crockett \\u2714", "in_reply_to_status_id": 148834187124809730, "in_reply_to_status_id_str": "148834187124809729"}, +{"created_at": "Mon, 19 Dec 2011 18:39:35 +0000", "from_user": "Kristanjqr", "from_user_id": 431735186, "from_user_id_str": "431735186", "from_user_name": "Kristan Bate", "geo": null, "id": 148834880812367870, "id_str": "148834880812367872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681103169/jugpckq3po_128720590_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681103169/jugpckq3po_128720590_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Insane Clown Posse: Juggalo Championshit Wrestling, Vol. 1: JCW VOLUME 1 - DVD Movie http://t.co/Lb7LUgJn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:34 +0000", "from_user": "stephenpocock", "from_user_id": 272460067, "from_user_id_str": "272460067", "from_user_name": "Stephen Pocock", "geo": null, "id": 148834874957119500, "id_str": "148834874957119490", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1530375189/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1530375189/twitter_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "That's it! I'm going to clown college", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:27 +0000", "from_user": "BWinning1", "from_user_id": 400465023, "from_user_id_str": "400465023", "from_user_name": "The Alpha...", "geo": null, "id": 148834846762999800, "id_str": "148834846762999808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689858011/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689858011/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@dirtyjeeper 20 bud lights and I found myself waking up on my porch wearing only clown shoes and a jock strap made out of a tube sock.", "to_user": "dirtyjeeper", "to_user_id": 150503949, "to_user_id_str": "150503949", "to_user_name": "zevon wornski", "in_reply_to_status_id": 148833664917176320, "in_reply_to_status_id_str": "148833664917176320"}, +{"created_at": "Mon, 19 Dec 2011 18:39:25 +0000", "from_user": "XsemMylife", "from_user_id": 317353095, "from_user_id_str": "317353095", "from_user_name": "Semmy van den Bergh", "geo": null, "id": 148834839792058370, "id_str": "148834839792058368", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685883159/IMG01567-20111210-2348_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685883159/IMG01567-20111210-2348_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@koenbigmeloen OMFGGGG AAAH EEN CLOWN IK SCHOK ME DOOOOD ;O #BANGVOORCLOWNS #LIJKTTOCHNIETOPTHAMAR:$?", "to_user": "koenbigmeloen", "to_user_id": 323883877, "to_user_id_str": "323883877", "to_user_name": "koenbigmeloen", "in_reply_to_status_id": 148833796786094080, "in_reply_to_status_id_str": "148833796786094080"}, +{"created_at": "Mon, 19 Dec 2011 18:39:25 +0000", "from_user": "imTHEish21", "from_user_id": 377141662, "from_user_id_str": "377141662", "from_user_name": "Ishhh \\u270C", "geo": null, "id": 148834837409697800, "id_str": "148834837409697792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1671051040/imTHEish21_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671051040/imTHEish21_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:17 +0000", "from_user": "liyahngoma", "from_user_id": 241678549, "from_user_id_str": "241678549", "from_user_name": "Liyah N'goma", "geo": null, "id": 148834805809819650, "id_str": "148834805809819650", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1658602231/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658602231/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "je suis triste comme le clown Zavatta #Docgyneco", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:16 +0000", "from_user": "Martayq", "from_user_id": 395410417, "from_user_id_str": "395410417", "from_user_name": "Sheridan Marta", "geo": null, "id": 148834801489686530, "id_str": "148834801489686528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1599646006/MFC-2529_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599646006/MFC-2529_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Insane Clown Posse - Bmr Characters Adult T-Shirt In Black, Size: Large, Color: Black: Insane Clown Posse - Bmr ... http://t.co/Mp37xmft", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:13 +0000", "from_user": "yasminaaax", "from_user_id": 124737432, "from_user_id_str": "124737432", "from_user_name": "Yasmin\\u00E0\\u00E0\\u00E0 !", "geo": null, "id": 148834787480707070, "id_str": "148834787480707073", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695253656/webcam-toy-photo11_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695253656/webcam-toy-photo11_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @DaphneJ_: Ik heb ze trouwens al gevonden hoor=$ - clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:10 +0000", "from_user": "marasdesserts", "from_user_id": 30338827, "from_user_id_str": "30338827", "from_user_name": "Mara's Cafe", "geo": null, "id": 148834776906858500, "id_str": "148834776906858498", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/326234978/logo_200_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/326234978/logo_200_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Tweedles the Clown entertains at Mara's every Monday night. Join us from 6-8 pm for balloon art fun and... http://t.co/JMkMG9Q4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:05 +0000", "from_user": "SqueezYOnipples", "from_user_id": 231260195, "from_user_id_str": "231260195", "from_user_name": "Yasming Bullock", "geo": null, "id": 148834755171987460, "id_str": "148834755171987456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693699073/314650_280422745323111_100000661635349_939212_208009364_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693699073/314650_280422745323111_100000661635349_939212_208009364_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@_longJONsilvers @billy_baddaz shut yo ass up ... so they wack how ? I never associated myself with a clown ass nigga until you came. thanks", "to_user": "_longJONsilvers", "to_user_id": 292928030, "to_user_id_str": "292928030", "to_user_name": "jontaz$$$moore", "in_reply_to_status_id": 148834421309575170, "in_reply_to_status_id_str": "148834421309575168"}, +{"created_at": "Mon, 19 Dec 2011 18:39:02 +0000", "from_user": "AlexTheKiddd", "from_user_id": 38238552, "from_user_id_str": "38238552", "from_user_name": "Alex Dixon", "geo": null, "id": 148834742744264700, "id_str": "148834742744264705", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1538795497/mePNG_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538795497/mePNG_normal.PNG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@chrislen123 @robmorris85 he might try it now uve said that u clown!!!lol U joker #NotBotheredStar #ScrapingTheBarrell", "to_user": "chrislen123", "to_user_id": 196117583, "to_user_id_str": "196117583", "to_user_name": "Chris Lenehan", "in_reply_to_status_id": 148833023658438660, "in_reply_to_status_id_str": "148833023658438656"}, +{"created_at": "Mon, 19 Dec 2011 18:38:55 +0000", "from_user": "Insanely_yours", "from_user_id": 373522952, "from_user_id_str": "373522952", "from_user_name": "Lisa j.", "geo": null, "id": 148834712750796800, "id_str": "148834712750796800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701312093/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701312093/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@MEG_nificenttt yea same here :(.. He's a clown do you want him lol .. He's currently spinning around talking about I'm dizzy lol", "to_user": "MEG_nificenttt", "to_user_id": 117238713, "to_user_id_str": "117238713", "to_user_name": "megan", "in_reply_to_status_id": 148834307421634560, "in_reply_to_status_id_str": "148834307421634560"}, +{"created_at": "Mon, 19 Dec 2011 18:38:43 +0000", "from_user": "HarryantoBuasan", "from_user_id": 177650181, "from_user_id_str": "177650181", "from_user_name": "Harryanto Buasan", "geo": null, "id": 148834663547408400, "id_str": "148834663547408384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680416710/331096669_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680416710/331096669_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Hey @eugeniabellfb don't be sad. I am your Clown and we are happy family :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:41 +0000", "from_user": "lirch44", "from_user_id": 407487984, "from_user_id_str": "407487984", "from_user_name": "James Roberts", "geo": null, "id": 148834653862756350, "id_str": "148834653862756354", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702557717/shanna_097_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702557717/shanna_097_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Check this video out -- Insane Clown Posse - Piggy Pie (UnCensored) http://t.co/il5AFBSi via @youtube", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:40 +0000", "from_user": "Mr_Basajj", "from_user_id": 266431829, "from_user_id_str": "266431829", "from_user_name": "allan basa", "geo": null, "id": 148834648800231420, "id_str": "148834648800231425", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670237911/2011-11-14_20-_20End_20of_20Term_20Adventures-17_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670237911/2011-11-14_20-_20End_20of_20Term_20Adventures-17_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@remythequill: says the clown looking like a hobo washed up from the grimy streets of rwanda...", "to_user": "remythequill", "to_user_id": 67092269, "to_user_id_str": "67092269", "to_user_name": "R\\u00E9my, The Quill ", "in_reply_to_status_id": 148834276035674100, "in_reply_to_status_id_str": "148834276035674112"}, +{"created_at": "Mon, 19 Dec 2011 18:38:38 +0000", "from_user": "LiaSkevofilax", "from_user_id": 33043613, "from_user_id_str": "33043613", "from_user_name": "Lia Skevofilax", "geo": null, "id": 148834641225326600, "id_str": "148834641225326593", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692399326/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692399326/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#PetPeeve when guys clown on other guys and focus on nothing but their clothes. Get new material, bro.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:25 +0000", "from_user": "SqueezYOnipples", "from_user_id": 231260195, "from_user_id_str": "231260195", "from_user_name": "Yasming Bullock", "geo": null, "id": 148834587110424580, "id_str": "148834587110424577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693699073/314650_280422745323111_100000661635349_939212_208009364_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693699073/314650_280422745323111_100000661635349_939212_208009364_n_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @_longJONsilvers: \\u00AB@SqueezYOnipples @billy_baddaz & tellem bout all dem clown ass fake ass soft ass wacc ass niggas u talk to up hea,on da phone,Facebook etc.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:22 +0000", "from_user": "Lyl_BootySussie", "from_user_id": 270567598, "from_user_id_str": "270567598", "from_user_name": "AziaDoesIt\\uE314\\uE035\\uE113", "geo": null, "id": 148834575026630660, "id_str": "148834575026630656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1639265458/Lyl_BootySussie_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639265458/Lyl_BootySussie_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "I wanna clown wit Jabian right now but he at work! Blahhh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:22 +0000", "from_user": "ComebacksFTW", "from_user_id": 437257363, "from_user_id_str": "437257363", "from_user_name": "Dr.Dbag", "geo": null, "id": 148834572963029000, "id_str": "148834572963028992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": null, "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:14 +0000", "from_user": "Scream_Dro", "from_user_id": 323286687, "from_user_id_str": "323286687", "from_user_name": "p e y t o n. \\u30C4", "geo": null, "id": 148834542092959740, "id_str": "148834542092959744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700800838/401149_10150417333291053_715066052_8862572_7179937_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700800838/401149_10150417333291053_715066052_8862572_7179937_n_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@FuckYoSIDELINES you got ISS for two days for tweeting?! Clown ass!", "to_user": "FuckYoSIDELINES", "to_user_id": 315538773, "to_user_id_str": "315538773", "to_user_name": "#BitchImPRETTY.", "in_reply_to_status_id": 148834029385433100, "in_reply_to_status_id_str": "148834029385433089"}, +{"created_at": "Mon, 19 Dec 2011 18:38:13 +0000", "from_user": "SauceDaddy31", "from_user_id": 216880472, "from_user_id_str": "216880472", "from_user_name": "Dan Sherman", "geo": null, "id": 148834538926260220, "id_str": "148834538926260225", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1616692060/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616692060/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@CammyWammy35 I can't wait to clown you today!!!", "to_user": "CammyWammy35", "to_user_id": 384996839, "to_user_id_str": "384996839", "to_user_name": "nicholas cameron", "in_reply_to_status_id": 148832893563699200, "in_reply_to_status_id_str": "148832893563699200"}, +{"created_at": "Mon, 19 Dec 2011 18:38:10 +0000", "from_user": "shaddnastyy", "from_user_id": 169972877, "from_user_id_str": "169972877", "from_user_name": "\\u0279\\u01DD\\u026F\\u026F\\u0131\\u028DS u\\u01DDpp\\u0250\\u0265S", "geo": null, "id": 148834525152157700, "id_str": "148834525152157697", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681746473/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681746473/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:10 +0000", "from_user": "Imdat__FOOL", "from_user_id": 249964239, "from_user_id_str": "249964239", "from_user_name": "Mo'_Money!!!", "geo": null, "id": 148834522799153150, "id_str": "148834522799153152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1678836924/my_broo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678836924/my_broo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "swear i ilmost followed dis clown dat supposed to be a yunger verson of my manz...lls", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:09 +0000", "from_user": "ComedyByTuRae", "from_user_id": 134420428, "from_user_id_str": "134420428", "from_user_name": "Tu Rae", "geo": null, "id": 148834518827147260, "id_str": "148834518827147264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1612538464/TuRaePromo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612538464/TuRaePromo_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Money, that's the loser's bracket!!lmao!->RT @ClintColey: @ComedyByTuRae I'm in the playoffs and I just offed this clown----->@Evan Polk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:08 +0000", "from_user": "WillardDinero", "from_user_id": 281059053, "from_user_id_str": "281059053", "from_user_name": "Dat Nigga Will.....", "geo": null, "id": 148834517740822530, "id_str": "148834517740822530", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1665909090/253575_10150287951644913_506094912_8818696_3895506_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665909090/253575_10150287951644913_506094912_8818696_3895506_n_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @_TheOtherKevin \"Silly Ass Clown\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:05 +0000", "from_user": "ayyeelizabetha", "from_user_id": 375244767, "from_user_id_str": "375244767", "from_user_name": "Elizabeth Aranda\\u2654", "geo": null, "id": 148834505489264640, "id_str": "148834505489264640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1638227790/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638227790/me_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "My mom told me i looked like a clown cos of my eyeliner... oh ok. -______-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:04 +0000", "from_user": "_MarcoZooAnimal", "from_user_id": 39106856, "from_user_id_str": "39106856", "from_user_name": "Marco got em biteing", "geo": null, "id": 148834497729798140, "id_str": "148834497729798144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1666699310/Kye0QILu_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666699310/Kye0QILu_normal", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @DewwBaby_Mook: @_MarcoZooAnimal I'm Hippryy Ii Tld Yhu Lil Brah Its Gettin Cold Ndd Doin Da Summer Wen Yhu Be Att My Joint Pick Yhu Set Ndd No Clown Niggas", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:59 +0000", "from_user": "NeiceyRene", "from_user_id": 29270481, "from_user_id_str": "29270481", "from_user_name": "NeiceyRene\\uE329\\uE41C\\uE31C\\uE31D", "geo": null, "id": 148834479031582720, "id_str": "148834479031582722", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695562618/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695562618/image_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @24stSlickTalker: Sum clown jus ask me how many calories was in the salad dressing. I jus pointed to the sign ... http://t.co/BCKZFqv6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:57 +0000", "from_user": "GrapeFKNJelly", "from_user_id": 143740188, "from_user_id_str": "143740188", "from_user_name": "Chocolate!!!", "geo": null, "id": 148834469133037570, "id_str": "148834469133037569", "iso_language_code": "vi", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701769739/photo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701769739/photo_normal.JPG", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@JuanHusane look at chu phone clown", "to_user": "JuanHusane", "to_user_id": 139584322, "to_user_id_str": "139584322", "to_user_name": "Mr.Deez", "in_reply_to_status_id": 148832352494293000, "in_reply_to_status_id_str": "148832352494292992"}, +{"created_at": "Mon, 19 Dec 2011 18:37:45 +0000", "from_user": "_longJONsilvers", "from_user_id": 292928030, "from_user_id_str": "292928030", "from_user_name": "jontaz$$$moore", "geo": null, "id": 148834421309575170, "id_str": "148834421309575168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1586442056/taz2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586442056/taz2_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u00AB@SqueezYOnipples @billy_baddaz & tellem bout all dem clown ass fake ass soft ass wacc ass niggas u talk to up hea,on da phone,Facebook etc.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:38 +0000", "from_user": "miss_AmazinAsh", "from_user_id": 420844860, "from_user_id_str": "420844860", "from_user_name": "Ashley", "geo": null, "id": 148834389923594240, "id_str": "148834389923594240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701844308/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701844308/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Two clown ass niggas got using all these bad words diz morning an I dnt do dat", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:36 +0000", "from_user": "BrookBakMountin", "from_user_id": 224152327, "from_user_id_str": "224152327", "from_user_name": "Brooke knows best.", "geo": null, "id": 148834383888003070, "id_str": "148834383888003072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1669082741/securedownload_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669082741/securedownload_normal.jpeg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "lmaoo :pRT @OhQueenMonroe: brooke is a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:36 +0000", "from_user": "CraziSexiCool17", "from_user_id": 382516066, "from_user_id_str": "382516066", "from_user_name": "\\u0118\\u0157\\u012F\\u014B \\u0136\\u0119\\u014Bd\\u0105\\u026D\\u026D", "geo": null, "id": 148834380457050100, "id_str": "148834380457050112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685250271/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685250271/image_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", "text": "Negro please aint nobody on u clown lmaoooo RT @ThaRealVonte Man GTF off me Ahaha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:35 +0000", "from_user": "YoungVanTunechi", "from_user_id": 113469340, "from_user_id_str": "113469340", "from_user_name": "Je'vante McIntosh", "geo": null, "id": 148834379102298100, "id_str": "148834379102298112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1631188445/IMG00162-20111107-2222_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631188445/IMG00162-20111107-2222_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@nEikO11 dwl she a clown man", "to_user": "nEikO11", "to_user_id": 151742538, "to_user_id_str": "151742538", "to_user_name": "Neiko Ozzii Dennis", "in_reply_to_status_id": 148833963153162240, "in_reply_to_status_id_str": "148833963153162240"}, +{"created_at": "Mon, 19 Dec 2011 18:37:34 +0000", "from_user": "AlexAngbo", "from_user_id": 91622801, "from_user_id_str": "91622801", "from_user_name": "AlexAlexander", "geo": null, "id": 148834371456086000, "id_str": "148834371456086018", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697688715/jj_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697688715/jj_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@NoraOliix meuuuh noon sa me plait je dis. tai pa mon clown tai tantie 12 enfants :D", "to_user": "NoraOliix", "to_user_id": 330053344, "to_user_id_str": "330053344", "to_user_name": "N'ora Roxanne", "in_reply_to_status_id": 148833917095510000, "in_reply_to_status_id_str": "148833917095510016"}, +{"created_at": "Mon, 19 Dec 2011 18:37:33 +0000", "from_user": "MA_Albloushi", "from_user_id": 256851165, "from_user_id_str": "256851165", "from_user_name": "Mohamed Albloushi", "geo": null, "id": 148834370134872060, "id_str": "148834370134872064", "iso_language_code": "ar", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696564191/166736a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696564191/166736a_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Poormanfree: \\u0627\\u0644\\u0634\\u0627\\u062A\\u0645 \\u0645\\u062B\\u0644 \\u0627\\u0644\\u062F\\u062E\\u0627\\u0646 \\u0627\\u0644\\u0633\\u064A\\u0626 \\u0644\\u062E\\u0634\\u0628 \\u0627\\u0644\\u0623\\u0634\\u062E\\u0631(\\u0627\\u0644\\u0639\\u0634\\u0631)\\u0641\\u0647\\u0648 \\u064A\\u062D\\u062A\\u0631\\u0642 \\u0623\\u0648\\u0644\\u0627 \\u0628\\u063A\\u064A\\u0638\\u0647 \\u062B\\u0645 \\u064A\\u0646\\u0641\\u062B \\u062F\\u062E\\u0627\\u0646\\u0647 \\u0628\\u0627\\u0644\\u0633\\u0628\\u0627\\u0628\\u060C\\u0641\\u062F\\u0639\\u0629 \\u064A\\u062D\\u062A\\u0631\\u0642 \\u0648\\u0644\\u0627\\u062A\\u0643\\u062A\\u0631\\u062B\\n#UAE #CLOWN #polite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:15 +0000", "from_user": "ross_pearle", "from_user_id": 23127145, "from_user_id_str": "23127145", "from_user_name": "Ross Pearle", "geo": null, "id": 148834290774454270, "id_str": "148834290774454272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1654450272/Charlie_George_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654450272/Charlie_George_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Is this bant? Please tell me people don't associate this clown with football and buy the DVD? #mug #bargainbucket http://t.co/Mfytn8qP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:13 +0000", "from_user": "_ShAwdYSh00teR", "from_user_id": 253668593, "from_user_id_str": "253668593", "from_user_name": "Just Call me BOO!!!!", "geo": null, "id": 148834283438616580, "id_str": "148834283438616576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1663052577/ErOBQnIm_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663052577/ErOBQnIm_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "This nigha gone say \"das my homegurl, she don't even like dark skinned nighas\" bitch neither did i ... SHUTUP! LMAO CLOWN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:10 +0000", "from_user": "LevyDhinze", "from_user_id": 406679804, "from_user_id_str": "406679804", "from_user_name": "Levi Hinze", "geo": null, "id": 148834272244023300, "id_str": "148834272244023296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1667451072/gIH9rG01_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667451072/gIH9rG01_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "well come now people lets clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:01 +0000", "from_user": "PeacePineapple", "from_user_id": 388775050, "from_user_id_str": "388775050", "from_user_name": "Georgina ", "geo": null, "id": 148834234260394000, "id_str": "148834234260393984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1583341720/Joe_Cool_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583341720/Joe_Cool_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Krusty the Clown \"My house is dirty: buy me a clean one\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:57 +0000", "from_user": "Flips_Hair", "from_user_id": 228164354, "from_user_id_str": "228164354", "from_user_name": "\\u2665 Shanise \\u2665", "geo": null, "id": 148834220268191740, "id_str": "148834220268191745", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1647345020/re_re_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647345020/re_re_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Bxtch Arguin' On Twitter Dnt Make It No Better Lmfao.! #Clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:55 +0000", "from_user": "Barelist", "from_user_id": 54576377, "from_user_id_str": "54576377", "from_user_name": "Barelist", "geo": null, "id": 148834211468546050, "id_str": "148834211468546049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/578169466/KaydenBL_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/578169466/KaydenBL_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SlyinSC man I hope not... him and the eel were hanging out last night... think the clown feels the tank is his lol", "to_user": "SlyinSC", "to_user_id": 397023397, "to_user_id_str": "397023397", "to_user_name": "Sly in SC", "in_reply_to_status_id": 148831795738189820, "in_reply_to_status_id_str": "148831795738189824"}, +{"created_at": "Mon, 19 Dec 2011 18:36:48 +0000", "from_user": "A_MrBoombastic", "from_user_id": 29627355, "from_user_id_str": "29627355", "from_user_name": "Juan Pablo ", "geo": null, "id": 148834182137774080, "id_str": "148834182137774080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691325323/331447298_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691325323/331447298_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Naomi.sub RT @dotNaomi: Every now and then you have to tell someone - if your argument was actually relevant it would still be weak, clown!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:33 +0000", "from_user": "757nickwangVA", "from_user_id": 238733755, "from_user_id_str": "238733755", "from_user_name": "nick wengler", "geo": null, "id": 148834115544821760, "id_str": "148834115544821762", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1591923982/Snapshot_20110710_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591923982/Snapshot_20110710_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "i was the class clown that always had you laughing", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:20 +0000", "from_user": "husshyourlipss", "from_user_id": 218118108, "from_user_id_str": "218118108", "from_user_name": "AL\\u2206NIS ", "geo": null, "id": 148834064500129800, "id_str": "148834064500129792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1685048696/kristen_stewart_vampire_by_xxcrisiscorefreakxx-d349q0j_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685048696/kristen_stewart_vampire_by_xxcrisiscorefreakxx-d349q0j_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "\"We want heavy, we wanted sick, and we wanted a disease-ridden thought process.\" - CLOWN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:18 +0000", "from_user": "fancyballa3", "from_user_id": 343850079, "from_user_id_str": "343850079", "from_user_name": "dominique", "geo": null, "id": 148834056631623680, "id_str": "148834056631623682", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1689421107/d_001_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689421107/d_001_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@JewlzBG lmao ur a clown", "to_user": "JewlzBG", "to_user_id": 157307255, "to_user_id_str": "157307255", "to_user_name": "PacK Man K.O.D", "in_reply_to_status_id": 148833533958430720, "in_reply_to_status_id_str": "148833533958430720"}, +{"created_at": "Mon, 19 Dec 2011 18:36:04 +0000", "from_user": "re_glz22", "from_user_id": 306247924, "from_user_id_str": "306247924", "from_user_name": "Re Gonzalez", "geo": null, "id": 148833993901604860, "id_str": "148833993901604865", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1415959227/yop_servicios_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1415959227/yop_servicios_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@andy_farah happy beer day!!! disfruta tu dia como clown!!! :o) te quierooo!!!", "to_user": "andy_farah", "to_user_id": 101157174, "to_user_id_str": "101157174", "to_user_name": "Andy Farah"}, +{"created_at": "Mon, 19 Dec 2011 18:36:02 +0000", "from_user": "MeessMann", "from_user_id": 159091688, "from_user_id_str": "159091688", "from_user_name": "Mees Lebbink", "geo": null, "id": 148833989203988480, "id_str": "148833989203988480", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698445226/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698445226/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Soms ben je lelijk, soms knap, maar zonder die make up en kleren ben je een clown die vergeet te acteren", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:00 +0000", "from_user": "___Boyd", "from_user_id": 236656000, "from_user_id_str": "236656000", "from_user_name": "OutHere_Solo", "geo": null, "id": 148833978055524350, "id_str": "148833978055524352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680240796/IMG0741_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680240796/IMG0741_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "Clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:58 +0000", "from_user": "ShortieDo0wOp", "from_user_id": 32163324, "from_user_id_str": "32163324", "from_user_name": "Shortie McBoobs", "geo": null, "id": 148833972376453120, "id_str": "148833972376453121", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692290188/471539482_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692290188/471539482_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "I think if I didn't give head . My boyfriend would break up with me & clown me >.<", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:57 +0000", "from_user": "Lundy1970", "from_user_id": 89218989, "from_user_id_str": "89218989", "from_user_name": "Tom Lundberg", "geo": null, "id": 148833965996904450, "id_str": "148833965996904448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1332111954/Tom___Norm_2008_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1332111954/Tom___Norm_2008_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iowahawkblog: First Al Davis, then Kim Jong-Il; bad year for insane clown-haired dictators in novelty Elvis sunglasses", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:50 +0000", "from_user": "CrackLand_Dot", "from_user_id": 289623373, "from_user_id_str": "289623373", "from_user_name": "Gramz F.H.G CEO ", "geo": null, "id": 148833938780078080, "id_str": "148833938780078080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1598125821/profile_image_1319130352793_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598125821/profile_image_1319130352793_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "Boa u a swagga jacka... I really think u wana b me clown... And I aint got shit... (insider)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:46 +0000", "from_user": "Lilkim_Navy", "from_user_id": 270147709, "from_user_id_str": "270147709", "from_user_name": "IRS FAMILY ", "geo": null, "id": 148833920333512700, "id_str": "148833920333512704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693718126/rihanna-hard2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693718126/rihanna-hard2_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@ihate2minaj @guillotineMERCE meeka y rihanna got this Ronald isley clone clown pressed", "to_user": "ihate2minaj", "to_user_id": 70015649, "to_user_id_str": "70015649", "to_user_name": "Mz. Meeka\\u2122 ", "in_reply_to_status_id": 148832060264558600, "in_reply_to_status_id_str": "148832060264558593"}, +{"created_at": "Mon, 19 Dec 2011 18:35:45 +0000", "from_user": "NoraOliix", "from_user_id": 330053344, "from_user_id_str": "330053344", "from_user_name": "N'ora Roxanne", "geo": null, "id": 148833917095510000, "id_str": "148833917095510016", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701070568/IMG-20111218-00447_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701070568/IMG-20111218-00447_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@AlexAngbo C'est moi ton clown non ?", "to_user": "AlexAngbo", "to_user_id": 91622801, "to_user_id_str": "91622801", "to_user_name": "AlexAlexander", "in_reply_to_status_id": 148833683133038600, "in_reply_to_status_id_str": "148833683133038592"}, +{"created_at": "Mon, 19 Dec 2011 18:35:33 +0000", "from_user": "arlistotle", "from_user_id": 81689989, "from_user_id_str": "81689989", "from_user_name": "Arlingthon Sillie", "geo": null, "id": 148833867481096200, "id_str": "148833867481096192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1543294508/IMG00669-20110829-1541_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543294508/IMG00669-20110829-1541_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"@BUbul4sh1: I don't wanna be the clown tho\"< but you areeeee..... Bo mes ta buska swa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:24 +0000", "from_user": "VickneshRai", "from_user_id": 96722814, "from_user_id_str": "96722814", "from_user_name": "Priyanka Chopra Fan\\u2611", "geo": null, "id": 148833830265032700, "id_str": "148833830265032704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696782582/Photo_on_2011-12-17_at_01.09_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696782582/Photo_on_2011-12-17_at_01.09_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@nammyluvzranbir ROFL XD you clown. Oh well, just tell him love from singapore & how he feels about singapore :)", "to_user": "nammyluvzranbir", "to_user_id": 159237191, "to_user_id_str": "159237191", "to_user_name": "Namrita \\u2605", "in_reply_to_status_id": 148833580276121600, "in_reply_to_status_id_str": "148833580276121600"}, +{"created_at": "Mon, 19 Dec 2011 18:35:23 +0000", "from_user": "RollSUNNYUp", "from_user_id": 137847953, "from_user_id_str": "137847953", "from_user_name": "SOULJA SUNNY", "geo": null, "id": 148833825059913730, "id_str": "148833825059913728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696965160/RollSUNNYUp_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696965160/RollSUNNYUp_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @Dylan_sheCOLE: @RollSUNNYUp jtfo lmfao you a clown man but thankss , *rolls up blunt put it ina air rise it to the SUN-NY*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:22 +0000", "from_user": "dotNaomi", "from_user_id": 19739290, "from_user_id_str": "19739290", "from_user_name": "Naomi", "geo": null, "id": 148833817707282430, "id_str": "148833817707282433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685786896/IMG_20111203_024851_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685786896/IMG_20111203_024851_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Every now and then you have to tell someone - if your argument was actually relevant it would still be weak, clown!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:21 +0000", "from_user": "chann_", "from_user_id": 26253490, "from_user_id_str": "26253490", "from_user_name": "Chann S", "geo": +{"coordinates": [39.2879,-76.731], "type": "Point"}, "id": 148833815069065200, "id_str": "148833815069065218", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668645867/2OdgIf8p_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668645867/2OdgIf8p_normal", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "This dude is really a fuckin clown!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:16 +0000", "from_user": "diekinab", "from_user_id": 230124611, "from_user_id_str": "230124611", "from_user_name": "dieter kind", "geo": null, "id": 148833795552976900, "id_str": "148833795552976897", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Clown Topa,Kinderschminken,Spa\\u00DF und Zauberei: Berlin | Schenken sie sich und ihre(n) Kind(ern) einen sch\\u00F6nen Tag... http://t.co/O4P2ZrhP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:14 +0000", "from_user": "LovelyLourdes22", "from_user_id": 173691157, "from_user_id_str": "173691157", "from_user_name": "Pascale Lourdes Anty", "geo": null, "id": 148833785612480500, "id_str": "148833785612480512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695350237/Snapshot_20111215_21_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695350237/Snapshot_20111215_21_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "omg lol this man is a clown!!! smh Haitians lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:10 +0000", "from_user": "MotherFuckinJay", "from_user_id": 400240155, "from_user_id_str": "400240155", "from_user_name": "MotherFuckinJason", "geo": null, "id": 148833770995326980, "id_str": "148833770995326976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692193980/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692193980/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "RT @Juggalo001: Insane Clown Posse - Its All Over http://t.co/A9C0tIrt via @youtube\\u201D Here you go you fuckin haters. This is tha shit! #fuckoff", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:09 +0000", "from_user": "UHOH_GORGEOUS", "from_user_id": 302764184, "from_user_id_str": "302764184", "from_user_name": "Your Main Attraction", "geo": null, "id": 148833764183785470, "id_str": "148833764183785472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699762195/ColorTouch-1324180384631_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699762195/ColorTouch-1324180384631_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "lmaoooo your a clown \\u00AB@AOLiss_01 Dip & dots almost caused an earthquake.\\u00BB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:08 +0000", "from_user": "ClintColey", "from_user_id": 28473477, "from_user_id_str": "28473477", "from_user_name": "Clint Coley", "geo": null, "id": 148833759398076400, "id_str": "148833759398076417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698636157/ClintColey_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698636157/ClintColey_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@ComedyByTuRae I'm in the playoffs and I just offed this clown----->@EvanPolk", "to_user": "ComedyByTuRae", "to_user_id": 134420428, "to_user_id_str": "134420428", "to_user_name": "Tu Rae", "in_reply_to_status_id": 148833388881657860, "in_reply_to_status_id_str": "148833388881657857"}, +{"created_at": "Mon, 19 Dec 2011 18:35:05 +0000", "from_user": "russell_ganesh", "from_user_id": 94078531, "from_user_id_str": "94078531", "from_user_name": "Russell", "geo": null, "id": 148833747805016060, "id_str": "148833747805016064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699389224/384944_200762160011763_100002339418162_432156_813883729_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699389224/384944_200762160011763_100002339418162_432156_813883729_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@itskristal if I wanted to date a clown or my aunt,I would. :p", "to_user": "itskristal", "to_user_id": 20859557, "to_user_id_str": "20859557", "to_user_name": "Kristal Ho", "in_reply_to_status_id": 148832504235819000, "in_reply_to_status_id_str": "148832504235819008"}, +{"created_at": "Mon, 19 Dec 2011 18:35:02 +0000", "from_user": "MichaelMy666rs", "from_user_id": 319227551, "from_user_id_str": "319227551", "from_user_name": "Michael My666rs", "geo": null, "id": 148833735486341120, "id_str": "148833735486341121", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1651160773/babessgif_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651160773/babessgif_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "*mikey throws down juice box and steps on it...picks up machete...pulls the clown mask down...*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:58 +0000", "from_user": "MANOSCLOWN", "from_user_id": 286277822, "from_user_id_str": "286277822", "from_user_name": "M MANOS CLOWN", "geo": null, "id": 148833720571396100, "id_str": "148833720571396096", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1348183937/fotis_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1348183937/fotis_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I uploaded a @YouTube video http://t.co/4LCIUYhL ministerio manos clown la importancia de el perd\\u00F3n", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:49 +0000", "from_user": "rob_kadlec", "from_user_id": 20522203, "from_user_id_str": "20522203", "from_user_name": "Rob Kadlec", "geo": null, "id": 148833681895735300, "id_str": "148833681895735296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/366409317/3rd_place_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/366409317/3rd_place_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iowahawkblog: First Al Davis, then Kim Jong-Il; bad year for insane clown-haired dictators in novelty Elvis sunglasses", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:47 +0000", "from_user": "_SpanishRice", "from_user_id": 54734621, "from_user_id_str": "54734621", "from_user_name": "Jalieee \\u2665", "geo": null, "id": 148833673255469060, "id_str": "148833673255469056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1674380632/004-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674380632/004-1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SirMagic22 @kman_swagg_ Serg, i made the Ron Stoppable comment clown :P", "to_user": "SirMagic22", "to_user_id": 20999626, "to_user_id_str": "20999626", "to_user_name": "Sergio Leeper", "in_reply_to_status_id": 148833396498509820, "in_reply_to_status_id_str": "148833396498509825"}, +{"created_at": "Mon, 19 Dec 2011 18:34:46 +0000", "from_user": "xgreenawaltx", "from_user_id": 348259722, "from_user_id_str": "348259722", "from_user_name": "Hannah Greenawalt", "geo": null, "id": 148833670424313860, "id_str": "148833670424313856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1684622451/Photo_on_2011-12-09_at_19.25__3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684622451/Photo_on_2011-12-09_at_19.25__3_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "@cthug69 is a clown.", "to_user": "CThug69", "to_user_id": 226787508, "to_user_id_str": "226787508", "to_user_name": "corbin da bitch"}, +{"created_at": "Mon, 19 Dec 2011 18:34:43 +0000", "from_user": "BitchsNOPanties", "from_user_id": 189737582, "from_user_id_str": "189737582", "from_user_name": "Shelby FMOT", "geo": null, "id": 148833657258393600, "id_str": "148833657258393600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693871780/shelby_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693871780/shelby_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @SayThaDon: @BitchsNOPanties clown lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:43 +0000", "from_user": "Tyb_AndYoHoe_", "from_user_id": 227726370, "from_user_id_str": "227726370", "from_user_name": "Smack_Daddy_Mezia", "geo": null, "id": 148833657245802500, "id_str": "148833657245802496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702251490/FAHSHO_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702251490/FAHSHO_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @KOedbyLove: i clown too much in public...no shame.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:39 +0000", "from_user": "Astrologyzodiac", "from_user_id": 440694705, "from_user_id_str": "440694705", "from_user_name": "Astrology", "geo": null, "id": 148833639277404160, "id_str": "148833639277404160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702024654/astro_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702024654/astro_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "a SAGITTARIUS child is a little clown,loves greeting people,usually adores animals, asks endless questions, rarely sits still,enjoys company", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:37 +0000", "from_user": "Boopa10_16Bean", "from_user_id": 35249631, "from_user_id_str": "35249631", "from_user_name": "\\u2661 me some BEAN", "geo": null, "id": 148833629227843600, "id_str": "148833629227843584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702215102/2011-12-16_22.51.30-1-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702215102/2011-12-16_22.51.30-1-1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "LMMFAOO. Fucking clown \\u201C@SHH_IMlowKEY Idk if this lady had get pants pulled up to her titties or her titties pulled down to her pants\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:36 +0000", "from_user": "eLWeaverdinchi", "from_user_id": 322365452, "from_user_id_str": "322365452", "from_user_name": "Matthew Weaver", "geo": null, "id": 148833625876602880, "id_str": "148833625876602880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1408837838/Picture_16_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1408837838/Picture_16_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ChuuweeTUS damn that some fucked up shit my dude i remember u talkin bout it a few months back, fuck that clown ass over biter", "to_user": "ChuuweeTUS", "to_user_id": 29798142, "to_user_id_str": "29798142", "to_user_name": "Chez Charlie SHREEM"}, +{"created_at": "Mon, 19 Dec 2011 18:34:34 +0000", "from_user": "ELTigre04", "from_user_id": 35498998, "from_user_id_str": "35498998", "from_user_name": "Tony Nguyen", "geo": null, "id": 148833620327542800, "id_str": "148833620327542784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1601587116/Tony_senior_yr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601587116/Tony_senior_yr_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I Love this bracelet ... Best gift ever so far ??? I think so ... only cause its from this clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:22 +0000", "from_user": "sweetestgirl217", "from_user_id": 229672551, "from_user_id_str": "229672551", "from_user_name": "KeIra Kidd Layton", "geo": null, "id": 148833569047982080, "id_str": "148833569047982080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701572778/HttL81M9_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701572778/HttL81M9_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @monty_luv06: \"@sweetestgirl217: Hit me from the back but don't put your finger in my booty hole....lmao\" Do u have 2 clown on these people site. Lmao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:22 +0000", "from_user": "LibTooTrill", "from_user_id": 265252206, "from_user_id_str": "265252206", "from_user_name": "Liberty Willis", "geo": null, "id": 148833566099390460, "id_str": "148833566099390464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699738614/tumblr_lwbgymgqlt1qdryvy_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699738614/tumblr_lwbgymgqlt1qdryvy_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "@:0) thats my clown face!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:12 +0000", "from_user": "KOedbyLove", "from_user_id": 216531883, "from_user_id_str": "216531883", "from_user_name": "\\u2113auren the \\u2113o rocker", "geo": null, "id": 148833527750864900, "id_str": "148833527750864897", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702486137/meatxmas2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702486137/meatxmas2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "i clown too much in public...no shame.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:12 +0000", "from_user": "RugbyALG", "from_user_id": 417893215, "from_user_id_str": "417893215", "from_user_name": "Flock Gang", "geo": null, "id": 148833526903611400, "id_str": "148833526903611392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699254068/npdpg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699254068/npdpg_normal.jpg", "source": "<a href="http://stone.com/Twittelator" rel="nofollow">Twittelator</a>", "text": "@SmooveALG stay out my mentions rolling up pinner blunts clown shoes", "to_user": "SmooveALG", "to_user_id": 35828840, "to_user_id_str": "35828840", "to_user_name": "G-Wellington", "in_reply_to_status_id": 148832769672347650, "in_reply_to_status_id_str": "148832769672347649"}, +{"created_at": "Mon, 19 Dec 2011 18:34:07 +0000", "from_user": "creativityxplrd", "from_user_id": 59629328, "from_user_id_str": "59629328", "from_user_name": "Creativity Explored", "geo": null, "id": 148833506561241100, "id_str": "148833506561241089", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1467015023/fb_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1467015023/fb_logo_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Remembering Gordon Shepard, CE Studio Artist and beloved clown... http://t.co/spDXfcEh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:58 +0000", "from_user": "BeRanDone", "from_user_id": 120954924, "from_user_id_str": "120954924", "from_user_name": "B. Gillespie", "geo": null, "id": 148833467415789570, "id_str": "148833467415789568", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1242227266/wedding_photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1242227266/wedding_photo_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@bnoonies Lol Bennett is a clown", "to_user": "bnoonies", "to_user_id": 137388511, "to_user_id_str": "137388511", "to_user_name": "BNoone"}, +{"created_at": "Mon, 19 Dec 2011 18:33:57 +0000", "from_user": "miss_AmazinAsh", "from_user_id": 420844860, "from_user_id_str": "420844860", "from_user_name": "Ashley", "geo": null, "id": 148833464240713730, "id_str": "148833464240713728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701844308/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701844308/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Wild_magnolia2 u a clown wen I cum down next week ima have to whoop yo ass again", "to_user": "Wild_magnolia2", "to_user_id": 373204004, "to_user_id_str": "373204004", "to_user_name": "Young & Wild", "in_reply_to_status_id": 148832823044882430, "in_reply_to_status_id_str": "148832823044882434"}, +{"created_at": "Mon, 19 Dec 2011 18:33:54 +0000", "from_user": "kissJUICYprints", "from_user_id": 313414779, "from_user_id_str": "313414779", "from_user_name": "prettyBADDass", "geo": null, "id": 148833449850060800, "id_str": "148833449850060800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698730155/Img_002731_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698730155/Img_002731_normal.JPG", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "yu knew ma tweets was about yu thass y yu clickd UNFOLLOW ctfu clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:51 +0000", "from_user": "COGIC_KEY15", "from_user_id": 370884983, "from_user_id_str": "370884983", "from_user_name": "Keydareon Graham ", "geo": null, "id": 148833438248611840, "id_str": "148833438248611840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1575876875/me_442_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575876875/me_442_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "I think I'M about to go get me some Chinese food while I'M waiting ON this CLOWN to come ON...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:50 +0000", "from_user": "HynesHummer2015", "from_user_id": 161349132, "from_user_id_str": "161349132", "from_user_name": "Mcgyver Williams III", "geo": null, "id": 148833433324490750, "id_str": "148833433324490752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701375970/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701375970/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "I love @V_Meech we just clown about relationships for no reason lmao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:48 +0000", "from_user": "iMA__BAWSE", "from_user_id": 36569387, "from_user_id_str": "36569387", "from_user_name": "Antisocial", "geo": null, "id": 148833425707634700, "id_str": "148833425707634688", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693874377/photo-2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693874377/photo-2_normal.JPG", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@KoolAzzRayBans Ya ya ya im a clown i see ta", "to_user": "KoolAzzRayBans", "to_user_id": 334026152, "to_user_id_str": "334026152", "to_user_name": "Ray Tucker", "in_reply_to_status_id": 148830229559910400, "in_reply_to_status_id_str": "148830229559910400"}, +{"created_at": "Mon, 19 Dec 2011 18:33:47 +0000", "from_user": "atribecallscoob", "from_user_id": 317461263, "from_user_id_str": "317461263", "from_user_name": "They Know", "geo": null, "id": 148833421924376580, "id_str": "148833421924376576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668050819/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668050819/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "dam #TM103 drop tomorrow what ever happened to this clown droppin God forgives he dont i thought MMG dont push dates back ijs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:46 +0000", "from_user": "projectzeroent", "from_user_id": 26175739, "from_user_id_str": "26175739", "from_user_name": "Candy CandyGirl", "geo": null, "id": 148833416773767170, "id_str": "148833416773767168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1567422341/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1567422341/image_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @MS_NAQUAY: @projectzeroent ur sister is cracking me up!!! Lol (she's a bigger clown than ME", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:46 +0000", "from_user": "xMisteRViciouSx", "from_user_id": 155354384, "from_user_id_str": "155354384", "from_user_name": "Mr. Blanchard", "geo": null, "id": 148833416039768060, "id_str": "148833416039768065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680293575/xMisteRViciouSx_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680293575/xMisteRViciouSx_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "So here I am. Do I go backwards or forwards. Lol. I want to clown so bad but I'm better than that", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:31 +0000", "from_user": "Jade_Goodie", "from_user_id": 327558435, "from_user_id_str": "327558435", "from_user_name": "FuckYouPayMe", "geo": null, "id": 148833352290533380, "id_str": "148833352290533376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1650931687/IMG01137-20111121-0832_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650931687/IMG01137-20111121-0832_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "listen you little Jade clone clown all this baffonary shit stops now.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:29 +0000", "from_user": "IgboSocratesMD", "from_user_id": 246361365, "from_user_id_str": "246361365", "from_user_name": "Ekene D'Lion", "geo": null, "id": 148833345843900400, "id_str": "148833345843900416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702588784/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702588784/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@HOLLYandherEGO Lmbo. You clown", "to_user": "HOLLYandherEGO", "to_user_id": 19956027, "to_user_id_str": "19956027", "to_user_name": "Holly We$T ", "in_reply_to_status_id": 148832559936176130, "in_reply_to_status_id_str": "148832559936176128"}, +{"created_at": "Mon, 19 Dec 2011 18:33:20 +0000", "from_user": "JasperDrijfhout", "from_user_id": 241062377, "from_user_id_str": "241062377", "from_user_name": "Jasper Drijfhout", "geo": null, "id": 148833307977719800, "id_str": "148833307977719808", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1496111618/IMG_0411_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1496111618/IMG_0411_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@fredjeRitzema pipo de clown?", "to_user": "fredjeRitzema", "to_user_id": 120420821, "to_user_id_str": "120420821", "to_user_name": "wilfred", "in_reply_to_status_id": 148830974095007740, "in_reply_to_status_id_str": "148830974095007744"}, +{"created_at": "Mon, 19 Dec 2011 18:33:16 +0000", "from_user": "claudmrcvas8", "from_user_id": 368042598, "from_user_id_str": "368042598", "from_user_name": "Claud Tilly", "geo": null, "id": 148833291640905730, "id_str": "148833291640905729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "DeiionJ_18 omg u a clown. Who I got in mind??hahac7w", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:13 +0000", "from_user": "iHateCockatiels", "from_user_id": 19005209, "from_user_id_str": "19005209", "from_user_name": "Surly E", "geo": null, "id": 148833280236584960, "id_str": "148833280236584961", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/71199644/Icon02_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/71199644/Icon02_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "6 Ripoff Dead GiveAways: Don\\u2019t let that Marketer Make a Clown outof You http://t.co/QqnJxCSk via @oz2designs #SEO #SEM #SocialMedia #Content", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:03 +0000", "from_user": "CiciRoscoe", "from_user_id": 339161954, "from_user_id_str": "339161954", "from_user_name": "My Stylez Seattle ", "geo": null, "id": 148833237958000640, "id_str": "148833237958000640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1565764669/IMAG0050_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1565764669/IMAG0050_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Class Clown... Always cracking jokes on everybody yet the nicest girl if you got to know me #IWasThatKid", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:32:53 +0000", "from_user": "littlemsboss", "from_user_id": 241408781, "from_user_id_str": "241408781", "from_user_name": "Dee", "geo": null, "id": 148833195234836480, "id_str": "148833195234836480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639333559/180896_10150134892272990_547627989_8025612_1775945_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639333559/180896_10150134892272990_547627989_8025612_1775945_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@CanibusBeauty lmao clown", "to_user": "CanibusBeauty", "to_user_id": 267907610, "to_user_id_str": "267907610", "to_user_name": "Tellz", "in_reply_to_status_id": 148832925327171600, "in_reply_to_status_id_str": "148832925327171584"}, +{"created_at": "Mon, 19 Dec 2011 18:32:53 +0000", "from_user": "nuttytart83", "from_user_id": 104571289, "from_user_id_str": "104571289", "from_user_name": "Zania ", "geo": null, "id": 148833194827976700, "id_str": "148833194827976704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1648406314/chris_at_RAH_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648406314/chris_at_RAH_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Bisley28: @JustCira I'd prefer to have it chopped off by Adrian Scarborough in a botched operation and then become a bitter and angry clown.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:52 +0000", "from_user": "monty_luv06", "from_user_id": 194612101, "from_user_id_str": "194612101", "from_user_name": "ClassyChick", "geo": null, "id": 148833192013594620, "id_str": "148833192013594624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687527587/975sOw8K_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687527587/975sOw8K_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@sweetestgirl217: Hit me from the back but don't put your finger in my booty hole....lmao\" Do u have 2 clown on these people site. Lmao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:51 +0000", "from_user": "OnHerkNEes", "from_user_id": 155301681, "from_user_id_str": "155301681", "from_user_name": "OveLay, ateHay. \\uE057\\uE40A\\uE32F", "geo": null, "id": 148833185101381630, "id_str": "148833185101381632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699146401/peuf_20111214_416_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699146401/peuf_20111214_416_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@lessTlkMoreQuia: @OnHerkNEes lmmfaooo \"lap stop\" DFL;!\\u201D clown!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:46 +0000", "from_user": "MetriWadi", "from_user_id": 40586670, "from_user_id_str": "40586670", "from_user_name": "Demetrius Cox", "geo": null, "id": 148833163760771070, "id_str": "148833163760771072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1571842479/CIMG0132_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1571842479/CIMG0132_normal.jpg", "source": "<a href="http://getspaz.com" rel="nofollow">Spaz</a>", "text": "Lames crying over hoes, that's tears of a clown.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:44 +0000", "from_user": "Alassja", "from_user_id": 365029278, "from_user_id_str": "365029278", "from_user_name": "Larissa Schwarz", "geo": null, "id": 148833155124695040, "id_str": "148833155124695041", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1678671449/Larissa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678671449/Larissa_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@lynncurtis1 @SQ1982 @DavidCaruso_ have you eaten a clown?", "to_user": "lynncurtis1", "to_user_id": 336768178, "to_user_id_str": "336768178", "to_user_name": "lynn curtis", "in_reply_to_status_id": 148829347216764930, "in_reply_to_status_id_str": "148829347216764930"}, +{"created_at": "Mon, 19 Dec 2011 18:32:43 +0000", "from_user": "Retweet_BreSHIT", "from_user_id": 319778676, "from_user_id_str": "319778676", "from_user_name": "QueenBee`Bre ", "geo": null, "id": 148833151685378050, "id_str": "148833151685378048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1655911041/MyBoo_Loves_ME_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655911041/MyBoo_Loves_ME_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @UrNiggaPayRENT: oh no, bre got that clown a present but not me -___- Lls", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:41 +0000", "from_user": "feel_the_byrnee", "from_user_id": 432046819, "from_user_id_str": "432046819", "from_user_name": "Meg Byrne", "geo": null, "id": 148833142646644740, "id_str": "148833142646644737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695735970/IMG950499_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695735970/IMG950499_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "insane clown posse is so freakkyy. #strangeshit", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:39 +0000", "from_user": "Don_Perione", "from_user_id": 143323204, "from_user_id_str": "143323204", "from_user_name": "@SCSU_CAB President", "geo": null, "id": 148833136434888700, "id_str": "148833136434888704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692492696/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692492696/me_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@mizz_tav sup clown", "to_user": "mizz_tav", "to_user_id": 239907836, "to_user_id_str": "239907836", "to_user_name": "Jetavia Walker"}, +{"created_at": "Mon, 19 Dec 2011 18:32:23 +0000", "from_user": "eusk_l", "from_user_id": 61920002, "from_user_id_str": "61920002", "from_user_name": "Euskal Herrera Ayala", "geo": null, "id": 148833067459543040, "id_str": "148833067459543040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696950067/asdfghjk_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696950067/asdfghjk_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Just laughing and gay like a clown.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:08 +0000", "from_user": "_ViolateYaBitch", "from_user_id": 300133849, "from_user_id_str": "300133849", "from_user_name": "Dashawn .. To Yall \\uE427", "geo": null, "id": 148833005648089100, "id_str": "148833005648089088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1610347984/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610347984/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@BossnBeauty_ i know thats why you hopped on my dick though . clown", "to_user": "BossnBeauty_", "to_user_id": 283617990, "to_user_id_str": "283617990", "to_user_name": "- Mrs. Hopkins", "in_reply_to_status_id": 148832842745528320, "in_reply_to_status_id_str": "148832842745528321"}, +{"created_at": "Mon, 19 Dec 2011 18:32:08 +0000", "from_user": "JoshRobbo11", "from_user_id": 211482165, "from_user_id_str": "211482165", "from_user_name": "Josh Robinson", "geo": null, "id": 148833004238807040, "id_str": "148833004238807041", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1323291310/IMG-20110422-00614_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1323291310/IMG-20110422-00614_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Bolton r a tasty 11/4 to win Away at Blackburn 2moro night!!! Heap more misery on that Clown of a boss Steve Kean. Tempting", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:07 +0000", "from_user": "G_STONE13", "from_user_id": 281301481, "from_user_id_str": "281301481", "from_user_name": "andrew garman", "geo": null, "id": 148833000677851140, "id_str": "148833000677851136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686017193/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686017193/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@acv1213 lol your a clown. We for real playing tho?", "to_user": "acv1213", "to_user_id": 142134403, "to_user_id_str": "142134403", "to_user_name": "Aaron Valentine", "in_reply_to_status_id": 148829374676873200, "in_reply_to_status_id_str": "148829374676873216"}, +{"created_at": "Mon, 19 Dec 2011 18:32:05 +0000", "from_user": "PussyAssWorld", "from_user_id": 184812804, "from_user_id_str": "184812804", "from_user_name": "Pussy Ass World", "geo": null, "id": 148832993249726460, "id_str": "148832993249726464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "The Monday Stumble: X-Men Hangover, Clown Bukkake, Hipster Dog [PHOTOS] http://t.co/rEQa4GCz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:01 +0000", "from_user": "dudedaw1", "from_user_id": 266925235, "from_user_id_str": "266925235", "from_user_name": "Jennifer Eliyas", "geo": null, "id": 148832977080688640, "id_str": "148832977080688640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697354972/Photo_on_2011-12-15_at_13.16__6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697354972/Photo_on_2011-12-15_at_13.16__6_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "A girl with too much make up is like a clown :/", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:46 +0000", "from_user": "spinal_tapp", "from_user_id": 119640814, "from_user_id_str": "119640814", "from_user_name": "Pump Jack", "geo": null, "id": 148832913583116300, "id_str": "148832913583116288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1310409186/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1310409186/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Misery really does breed company. I told this clown I was in a good mood... Of course, there had to be something that I wasn't doing right.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:46 +0000", "from_user": "marquinhos_tsbr", "from_user_id": 201452555, "from_user_id_str": "201452555", "from_user_name": "Marcos Brito", "geo": null, "id": 148832912173838340, "id_str": "148832912173838336", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1628794586/Imagem_196_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628794586/Imagem_196_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @camilandreussi: ah descobri um maquiador de clown, n\\u00E9 @marquinhos_tsbr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:41 +0000", "from_user": "ToddRichardson2", "from_user_id": 307709487, "from_user_id_str": "307709487", "from_user_name": "Todd Richardson", "geo": null, "id": 148832894092189700, "id_str": "148832894092189696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1375272581/Todd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1375272581/Todd_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iowahawkblog: First Al Davis, then Kim Jong-Il; bad year for insane clown-haired dictators in novelty Elvis sunglasses", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:41 +0000", "from_user": "CammyWammy35", "from_user_id": 384996839, "from_user_id_str": "384996839", "from_user_name": "nicholas cameron", "geo": null, "id": 148832893563699200, "id_str": "148832893563699200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1638046231/x4mfCqPl_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638046231/x4mfCqPl_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@SauceDaddy31 and making you look like a clown", "to_user": "SauceDaddy31", "to_user_id": 216880472, "to_user_id_str": "216880472", "to_user_name": "Dan Sherman", "in_reply_to_status_id": 148817592826593280, "in_reply_to_status_id_str": "148817592826593280"}, +{"created_at": "Mon, 19 Dec 2011 18:31:39 +0000", "from_user": "MissBrownskin87", "from_user_id": 326871598, "from_user_id_str": "326871598", "from_user_name": "Kim Walker", "geo": null, "id": 148832882717237250, "id_str": "148832882717237248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1684468052/MissBrownskin87_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684468052/MissBrownskin87_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@_RiSSAPOOOHh_ My TL not too much booming no more @Sir_PoloRL12 @TE_2turnt_UP @Cum_B_aMAYSed me & Kim need y'all to clown with again\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:38 +0000", "from_user": "JoeWinfield91", "from_user_id": 18559436, "from_user_id_str": "18559436", "from_user_name": "Joe Winfield", "geo": null, "id": 148832878631981060, "id_str": "148832878631981056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639499317/Joe1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639499317/Joe1_normal.png", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "Now. Rte2. Simpsons. Homer goes to clown college. Nuf said.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:35 +0000", "from_user": "Mila_Smilez", "from_user_id": 292484271, "from_user_id_str": "292484271", "from_user_name": "Miss Little Bits", "geo": null, "id": 148832867756163070, "id_str": "148832867756163072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702395154/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702395154/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Your really a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:33 +0000", "from_user": "OnSum_NewIsh", "from_user_id": 49738698, "from_user_id_str": "49738698", "from_user_name": "Aint goin Nowhere ", "geo": null, "id": 148832859413688320, "id_str": "148832859413688320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1620787448/373981_2540102139029_1147944115_33047542_1810148407_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620787448/373981_2540102139029_1147944115_33047542_1810148407_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "i wonder if these ppl u run talkn shit too, the same mf u talk shit bou bahahaha clown bitch there...now we all sitn talkn bou ur dumb ass", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:26 +0000", "from_user": "ClaudeBanks32", "from_user_id": 51925208, "from_user_id_str": "51925208", "from_user_name": "STAY HOLDIN!!", "geo": null, "id": 148832828396797950, "id_str": "148832828396797954", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688325747/ClaudeBanks32_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688325747/ClaudeBanks32_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "My lil nephews is some bad lil clown I swear dey got lik at least 8 whoopin this mornin lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:24 +0000", "from_user": "Wild_magnolia2", "from_user_id": 373204004, "from_user_id_str": "373204004", "from_user_name": "Young & Wild", "geo": null, "id": 148832823044882430, "id_str": "148832823044882434", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1669871284/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669871284/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@miss_AmazinAsh bill Cosby ass nigga you a clown", "to_user": "miss_AmazinAsh", "to_user_id": 420844860, "to_user_id_str": "420844860", "to_user_name": "Ashley", "in_reply_to_status_id": 148832700323737600, "in_reply_to_status_id_str": "148832700323737600"}, +{"created_at": "Mon, 19 Dec 2011 18:31:20 +0000", "from_user": "True_Beauty_89", "from_user_id": 146097895, "from_user_id_str": "146097895", "from_user_name": "\\uE328tyquana morris\\uE32B", "geo": null, "id": 148832806003408900, "id_str": "148832806003408896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1641677070/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641677070/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@risa2real4ya well I can clown", "to_user": "risa2real4ya", "to_user_id": 126129228, "to_user_id_str": "126129228", "to_user_name": "Marisa Swinton", "in_reply_to_status_id": 148823801088589820, "in_reply_to_status_id_str": "148823801088589824"}, +{"created_at": "Mon, 19 Dec 2011 18:31:20 +0000", "from_user": "DourJones", "from_user_id": 344487043, "from_user_id_str": "344487043", "from_user_name": "Jersey breed", "geo": null, "id": 148832803184836600, "id_str": "148832803184836609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1466969810/15715_115467855147789_100000537250985_188989_1470248_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1466969810/15715_115467855147789_100000537250985_188989_1470248_n_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@flockave tight as pants lil as shirt big as feet. Lol looking like a clown skinny jeans don't me ya as shoot it mean ya booty clap haha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:17 +0000", "from_user": "UrNiggaPayRENT", "from_user_id": 64945477, "from_user_id_str": "64945477", "from_user_name": "\\u2655 January19th__", "geo": null, "id": 148832794158706700, "id_str": "148832794158706688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701257090/1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701257090/1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "oh no, bre got that clown a present but not me -___- Lls", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:17 +0000", "from_user": "TonyBlack85", "from_user_id": 272064267, "from_user_id_str": "272064267", "from_user_name": "Tony Black", "geo": null, "id": 148832793852510200, "id_str": "148832793852510208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690307420/IMG-20111212-00738_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690307420/IMG-20111212-00738_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Brick_James: Clown niggas willing to trick off for box are so common, chicks begin to expect this desperation from real niggas too. Nah.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:16 +0000", "from_user": "_CoolStoryDee", "from_user_id": 46148882, "from_user_id_str": "46148882", "from_user_name": "Roll That BOMB Shit;", "geo": null, "id": 148832788848717820, "id_str": "148832788848717825", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692231259/SANY0171__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692231259/SANY0171__1__normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @Aye_Daddyy: @_CoolStoryDee ctfu yous a clown , ,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:13 +0000", "from_user": "YoUnGQweezy803", "from_user_id": 268994083, "from_user_id_str": "268994083", "from_user_name": "Senquan Alls", "geo": null, "id": 148832776702001150, "id_str": "148832776702001152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674791176/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674791176/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:05 +0000", "from_user": "Immebitch_heny", "from_user_id": 397633356, "from_user_id_str": "397633356", "from_user_name": "heny hendricks", "geo": null, "id": 148832743365681150, "id_str": "148832743365681152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1640985706/Desert_Landscape_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640985706/Desert_Landscape_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@mfreccia i was tryna go clown", "to_user": "mfreccia", "to_user_id": 262776409, "to_user_id_str": "262776409", "to_user_name": "Mike Freccia", "in_reply_to_status_id": 148832117768458240, "in_reply_to_status_id_str": "148832117768458240"}, +{"created_at": "Mon, 19 Dec 2011 18:30:45 +0000", "from_user": "IB_TheKid", "from_user_id": 159196780, "from_user_id_str": "159196780", "from_user_name": "I say uhhh", "geo": null, "id": 148832659005648900, "id_str": "148832659005648896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700549635/IB_TheKid_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700549635/IB_TheKid_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ShawtyEllo: U a pretty girl w a clown suit on so really u ugly dirt bag", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:45 +0000", "from_user": "ross_dullaghan", "from_user_id": 343821939, "from_user_id_str": "343821939", "from_user_name": "ross dullaghan", "geo": null, "id": 148832657323737100, "id_str": "148832657323737088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668112326/junior_b_cup_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668112326/junior_b_cup_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@G_Malone @Finneganegan wat game you on about you clown", "to_user": "G_Malone", "to_user_id": 192659134, "to_user_id_str": "192659134", "to_user_name": "Gerry Malone", "in_reply_to_status_id": 148822607536455680, "in_reply_to_status_id_str": "148822607536455680"}, +{"created_at": "Mon, 19 Dec 2011 18:30:44 +0000", "from_user": "owenbrfc", "from_user_id": 409392075, "from_user_id_str": "409392075", "from_user_name": "owen weatherhead", "geo": null, "id": 148832655100755970, "id_str": "148832655100755968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@itsRENTON hope your coming 2 rugby on boxing day pal its at berwick this year bring that clown @gazzamaclfc1892 with you", "to_user": "itsRENTON", "to_user_id": 267409339, "to_user_id_str": "267409339", "to_user_name": "RENTON", "in_reply_to_status_id": 148823955925508100, "in_reply_to_status_id_str": "148823955925508096"}, +{"created_at": "Mon, 19 Dec 2011 18:30:44 +0000", "from_user": "kominekwzjch3", "from_user_id": 373587487, "from_user_id_str": "373587487", "from_user_name": "Kominek Barrymore", "geo": null, "id": 148832653964099600, "id_str": "148832653964099584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1543040708/imagesCA2KQMB0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543040708/imagesCA2KQMB0_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "My mama up at her job clown'n she finna beat some woman ass...LOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:41 +0000", "from_user": "JulieGriffet", "from_user_id": 148512871, "from_user_id_str": "148512871", "from_user_name": "Julie", "geo": null, "id": 148832643054710800, "id_str": "148832643054710784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1045482377/00drcgfq_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1045482377/00drcgfq_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Monday Stumble: X-Men Hangover, Clown Bukkake, Hipster Dog [PHOTOS]: No matter how positive you are, Mondays... http://t.co/CWwLIk2V", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:41 +0000", "from_user": "ManAfterDark", "from_user_id": 69907178, "from_user_id_str": "69907178", "from_user_name": "Man After Dark", "geo": null, "id": 148832641393770500, "id_str": "148832641393770496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/388037602/stripper-pole_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/388037602/stripper-pole_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Monday Stumble: X-Men Hangover, Clown Bukkake, Hipster Dog [PHOTOS] http://t.co/GONezmVs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:41 +0000", "from_user": "joellakris", "from_user_id": 83403377, "from_user_id_str": "83403377", "from_user_name": "Joella Kris", "geo": null, "id": 148832640961753100, "id_str": "148832640961753089", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/479516279/joella_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/479516279/joella_normal.PNG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Monday Stumble: X-Men Hangover, Clown Bukkake, Hipster Dog [PHOTOS]: No matter how positive you are, Mondays... http://t.co/zZJDp98k", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:35 +0000", "from_user": "ssfashion", "from_user_id": 112905618, "from_user_id_str": "112905618", "from_user_name": "StyleSalt NewsFeed", "geo": null, "id": 148832614692827140, "id_str": "148832614692827136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/775389459/stylesaltlogopng_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/775389459/stylesaltlogopng_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Monday Stumble: X-Men Hangover, Clown Bukkake, Hipster Dog [PHOTOS]: No matter how positive you are, Mondays... http://t.co/6fzozQcn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:27 +0000", "from_user": "SayThaDon", "from_user_id": 326536067, "from_user_id_str": "326536067", "from_user_name": "Say", "geo": null, "id": 148832581104828400, "id_str": "148832581104828416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1660263193/H2tyRiG4_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660263193/H2tyRiG4_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@BitchsNOPanties clown lol", "to_user": "BitchsNOPanties", "to_user_id": 189737582, "to_user_id_str": "189737582", "to_user_name": "Shelby FMOT", "in_reply_to_status_id": 148827214413185020, "in_reply_to_status_id_str": "148827214413185027"}, +{"created_at": "Mon, 19 Dec 2011 18:30:24 +0000", "from_user": "Scream_Dro", "from_user_id": 323286687, "from_user_id_str": "323286687", "from_user_name": "p e y t o n. \\u30C4", "geo": null, "id": 148832571210481660, "id_str": "148832571210481664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700800838/401149_10150417333291053_715066052_8862572_7179937_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700800838/401149_10150417333291053_715066052_8862572_7179937_n_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Everybody is a clown ass. It's not one individual. Stop acting salty when I'm not talking about you. Clown ass.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:23 +0000", "from_user": "CornerStoreCapo", "from_user_id": 280272740, "from_user_id_str": "280272740", "from_user_name": "Bodega The God", "geo": null, "id": 148832563698475000, "id_str": "148832563698475008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1640330284/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640330284/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @SNORKINGTON: @CornerStoreCapo word! I love picking up unknown calls, alwayssssssss some clown on the other side lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:17 +0000", "from_user": "Dr_WudiWoo", "from_user_id": 329349460, "from_user_id_str": "329349460", "from_user_name": "Latia A.", "geo": null, "id": 148832541460279300, "id_str": "148832541460279296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1656473764/Dr_WudiWoo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656473764/Dr_WudiWoo_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Co-Dependent shit show... This boy is a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:15 +0000", "from_user": "Jordan_e_b", "from_user_id": 397192142, "from_user_id_str": "397192142", "from_user_name": "Jordan(Mr.E)Bennett", "geo": null, "id": 148832531230367740, "id_str": "148832531230367744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694848227/Big_20Three_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694848227/Big_20Three_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@StefanMarkovic4. He's a fkn clown a god dkm", "to_user": "StefanMarkovic4", "to_user_id": 399818608, "to_user_id_str": "399818608", "to_user_name": "Stefan Markovic"}, +{"created_at": "Mon, 19 Dec 2011 18:30:14 +0000", "from_user": "LookABlackMan", "from_user_id": 33337638, "from_user_id_str": "33337638", "from_user_name": "Buffering.....still", "geo": null, "id": 148832529674276860, "id_str": "148832529674276864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699288915/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699288915/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:14 +0000", "from_user": "caraballoINC", "from_user_id": 58864575, "from_user_id_str": "58864575", "from_user_name": "mariah caraballo", "geo": null, "id": 148832526268502000, "id_str": "148832526268502016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687624819/3HqGqol4_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687624819/3HqGqol4_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "#Igetsoangry when people try to clown me", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:12 +0000", "from_user": "Opeyone2000", "from_user_id": 33536895, "from_user_id_str": "33536895", "from_user_name": "Michael Oosterhouse", "geo": null, "id": 148832518370623500, "id_str": "148832518370623489", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1661660730/Opeyone2000_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661660730/Opeyone2000_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Duh RT @SpikeEskin: Michael Beasley seems like he's a real clown.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:07 +0000", "from_user": "GiveThatAssUp", "from_user_id": 229726485, "from_user_id_str": "229726485", "from_user_name": "Brit Reed", "geo": null, "id": 148832499815026700, "id_str": "148832499815026688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1649987201/ColorTouch-1321805642059-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649987201/ColorTouch-1321805642059-2_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "It's 1:30 haven't spoke too this clown yet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:06 +0000", "from_user": "BxtchIm_Shae", "from_user_id": 366786854, "from_user_id_str": "366786854", "from_user_name": "Lashae Argullard", "geo": null, "id": 148832496371515400, "id_str": "148832496371515392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695872892/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695872892/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Doppie317_los Kmsl yu gone clown all Yur life.,! Yu Better chill Los yu Goin get Yur dude in trouble", "to_user": "Doppie317_los", "to_user_id": 301840401, "to_user_id_str": "301840401", "to_user_name": "Keep_It\\uE023317", "in_reply_to_status_id": 148832100576006140, "in_reply_to_status_id_str": "148832100576006144"}, +{"created_at": "Mon, 19 Dec 2011 18:30:04 +0000", "from_user": "KERRYbaby412", "from_user_id": 49421233, "from_user_id_str": "49421233", "from_user_name": "___#10\\uE42A\\uE204", "geo": null, "id": 148832485315325950, "id_str": "148832485315325952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697217132/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697217132/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Garbage_PailKid lmfaooo you're a clown....but thanks big guy, appreciate that!", "to_user": "Garbage_PailKid", "to_user_id": 180086024, "to_user_id_str": "180086024", "to_user_name": "J. Moore", "in_reply_to_status_id": 148822544827428860, "in_reply_to_status_id_str": "148822544827428864"}, +{"created_at": "Mon, 19 Dec 2011 18:29:52 +0000", "from_user": "eliburriss", "from_user_id": 336790110, "from_user_id_str": "336790110", "from_user_name": "Elizabeth Burriss", "geo": null, "id": 148832433662459900, "id_str": "148832433662459904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1601609863/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601609863/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MrWordsWorth: If you build a snowman and can only imagine him as a parson or circus clown, you have a very sad imagination.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:51 +0000", "from_user": "sanay908", "from_user_id": 97021376, "from_user_id_str": "97021376", "from_user_name": "blah_blah", "geo": null, "id": 148832430592241660, "id_str": "148832430592241664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1349601624/sanay1234_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1349601624/sanay1234_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "@briah_shtlegit lmfaooooooooooooo delete that clown !", "to_user": "briah_shtlegit", "to_user_id": 231620944, "to_user_id_str": "231620944", "to_user_name": ", why bother ? ", "in_reply_to_status_id": 148832211808948220, "in_reply_to_status_id_str": "148832211808948226"}, +{"created_at": "Mon, 19 Dec 2011 18:29:41 +0000", "from_user": "templetoesss", "from_user_id": 307169184, "from_user_id_str": "307169184", "from_user_name": "Payton Templeton", "geo": null, "id": 148832389509025800, "id_str": "148832389509025792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685547740/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685547740/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\"You know who could be a clown?\" \"Shnauzy over there\" @BitchyBails #lmfao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:38 +0000", "from_user": "JulianHuijbers", "from_user_id": 436772450, "from_user_id_str": "436772450", "from_user_name": "Julian Huijbers", "geo": null, "id": 148832378679341060, "id_str": "148832378679341057", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692994533/image_normal.jpg", "profile_image_url_https": null, "source": "<a href="http://twitter.com/">web</a>", "text": "RT @JongerenSwag_: Ik: \"Ik word de nieuwe hitler, ik vermoord alle joden en 1 clown\"\\nHij: \"waarom een clown\"\\nIk: \"Zie je, niemand geeft om die joden!\" #JSW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:38 +0000", "from_user": "FlawlessB_iisMe", "from_user_id": 260182261, "from_user_id_str": "260182261", "from_user_name": "imari parker ", "geo": null, "id": 148832377412657150, "id_str": "148832377412657153", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693444578/rra1603u_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693444578/rra1603u_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I still can't believe my mama dropped it ike its hott and picked it back up on Tommy the clown lmaoooo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:38 +0000", "from_user": "WarEagle1994", "from_user_id": 368158699, "from_user_id_str": "368158699", "from_user_name": "Exgar Casarrubias", "geo": null, "id": 148832377345540100, "id_str": "148832377345540097", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1667211202/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667211202/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:36 +0000", "from_user": "Aye_Daddyy", "from_user_id": 237548985, "from_user_id_str": "237548985", "from_user_name": "Aisha", "geo": null, "id": 148832367287611400, "id_str": "148832367287611392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1637320364/rtert_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637320364/rtert_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@_CoolStoryDee ctfu yous a clown , ,", "to_user": "_CoolStoryDee", "to_user_id": 46148882, "to_user_id_str": "46148882", "to_user_name": "Roll That BOMB Shit;", "in_reply_to_status_id": 148832065612300300, "in_reply_to_status_id_str": "148832065612300291"}, +{"created_at": "Mon, 19 Dec 2011 18:29:35 +0000", "from_user": "vibe215", "from_user_id": 23202279, "from_user_id_str": "23202279", "from_user_name": "Kim Jong Ill Clinton", "geo": null, "id": 148832365924454400, "id_str": "148832365924454401", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701387826/y00VNj6m_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701387826/y00VNj6m_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@terry_ruggles your mother looks like crusty the clown.", "to_user": "terry_ruggles", "to_user_id": 262324288, "to_user_id_str": "262324288", "to_user_name": "T", "in_reply_to_status_id": 148830206252171260, "in_reply_to_status_id_str": "148830206252171264"}, +{"created_at": "Mon, 19 Dec 2011 18:29:33 +0000", "from_user": "Superpaid_J", "from_user_id": 291974892, "from_user_id_str": "291974892", "from_user_name": "Justin Sweeting", "geo": null, "id": 148832354419474430, "id_str": "148832354419474432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1580103518/swagg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580103518/swagg_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "what I need a next girl for , if all you gettin is action on skype chat and i getitn the real thing ? FUCKIN CLOWN !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:26 +0000", "from_user": "Gary_TV", "from_user_id": 401656200, "from_user_id_str": "401656200", "from_user_name": "Gary Toliver", "geo": null, "id": 148832328066678800, "id_str": "148832328066678784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702543113/gary_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702543113/gary_1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Starting the week of right!!! MUBU MONDAYS...so u know whats going down...but if u dont then uz a clown!!! #PaperChasing", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:24 +0000", "from_user": "lennertuqmznt9", "from_user_id": 374336178, "from_user_id_str": "374336178", "from_user_name": "Lennert Wentworth", "geo": null, "id": 148832317065015300, "id_str": "148832317065015296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1544965252/imagesCAPIRVA7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544965252/imagesCAPIRVA7_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "DeiionJ_18 omg u a clown. Who I got in mind??haha3Txsnh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:19 +0000", "from_user": "lirch44", "from_user_id": 407487984, "from_user_id_str": "407487984", "from_user_name": "James Roberts", "geo": null, "id": 148832295514673150, "id_str": "148832295514673152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702557717/shanna_097_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702557717/shanna_097_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Check this video out -- Insane Clown Posse - In Yo Face (Juggalo Edition) http://t.co/JqGg1Pkc via @youtube", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:18 +0000", "from_user": "supreme170", "from_user_id": 30177264, "from_user_id_str": "30177264", "from_user_name": "KEVIN", "geo": null, "id": 148832294050869250, "id_str": "148832294050869248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699130333/IMAG1092-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699130333/IMAG1092-1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "You a clown Lmao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:08 +0000", "from_user": "OluDeinde", "from_user_id": 436694386, "from_user_id_str": "436694386", "from_user_name": "Denzel W.", "geo": null, "id": 148832252720189440, "id_str": "148832252720189441", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692802444/_EE_9A_84usssystrydurrr_20_EE_9A_84_normal.jpg", "profile_image_url_https": null, "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Marriage at age 25 z a very smart idea @KushSwaq dat'll be in 9 yrz tym u fuckin clown READ UR BOOKS!! If u brought dem home 4 hollz :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:04 +0000", "from_user": "MissInThis", "from_user_id": 394096921, "from_user_id_str": "394096921", "from_user_name": "NO Thanks", "geo": null, "id": 148832233334112260, "id_str": "148832233334112257", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1599441907/tw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599441907/tw_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ochocinco tell him/her to find a hobby PATHETIC lil varmint -hacking is for losers with NO life who need to live thru others 2b happy CLOWN", "to_user": "ochocinco", "to_user_id": 40519997, "to_user_id_str": "40519997", "to_user_name": "Chad Ochocinco", "in_reply_to_status_id": 148831794257596400, "in_reply_to_status_id_str": "148831794257596416"}, +{"created_at": "Mon, 19 Dec 2011 18:28:51 +0000", "from_user": "penisqueefer", "from_user_id": 19295343, "from_user_id_str": "19295343", "from_user_name": "Chandler Bing", "geo": null, "id": 148832180154540030, "id_str": "148832180154540032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1670172052/Snapshot_20111201_2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670172052/Snapshot_20111201_2_normal.JPG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @aidsisbad: Watched a weird ass movie with @penisqueefer last night that had midget clown demons and some hot bitch killed people with an axe. #fuckedup", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:48 +0000", "from_user": "tierep", "from_user_id": 216305997, "from_user_id_str": "216305997", "from_user_name": "tie rep", "geo": null, "id": 148832169278709760, "id_str": "148832169278709762", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Ghost, Pinstripe, Vanilla, Lemonblast, Clown Python regius NZ 2011: Walld\\u00FCrn | Ghost, Pinstripe, Vanilla, Lemonb... http://t.co/fp6I0Ku0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:32 +0000", "from_user": "n4taSliaH", "from_user_id": 93906658, "from_user_id_str": "93906658", "from_user_name": "Hope Simpson", "geo": null, "id": 148832102123712500, "id_str": "148832102123712513", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700705201/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700705201/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Down wit duh clown till I'm dead in duh ground whoopwhoop! @ginjabeardfox", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:27 +0000", "from_user": "GiveEmSprite_TG", "from_user_id": 35596969, "from_user_id_str": "35596969", "from_user_name": "Mister Clutch\\u2122", "geo": null, "id": 148832079851954180, "id_str": "148832079851954176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701407596/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701407596/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@T3_9 @supa_ugly91 mane get y'all clown axx on", "to_user": "T3_9", "to_user_id": 85688844, "to_user_id_str": "85688844", "to_user_name": "CrazyLegs Talton ", "in_reply_to_status_id": 148828930403614720, "in_reply_to_status_id_str": "148828930403614720"}, +{"created_at": "Mon, 19 Dec 2011 18:28:27 +0000", "from_user": "LeighBryan", "from_user_id": 27933597, "from_user_id_str": "27933597", "from_user_name": "Leigh V-B", "geo": null, "id": 148832078656581630, "id_str": "148832078656581632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1670199247/330790158_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670199247/330790158_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@markk91 @LloydDanielsUK that wasn't Lloyd you clown!", "to_user": "markk91", "to_user_id": 29533751, "to_user_id_str": "29533751", "to_user_name": "Mark J McGuire", "in_reply_to_status_id": 148830747556458500, "in_reply_to_status_id_str": "148830747556458497"}, +{"created_at": "Mon, 19 Dec 2011 18:28:17 +0000", "from_user": "EastsideDc12", "from_user_id": 430034978, "from_user_id_str": "430034978", "from_user_name": "Darrell Jaqua Carter", "geo": null, "id": 148832038382866430, "id_str": "148832038382866433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696055335/ink_kid_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696055335/ink_kid_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Hw u luv dat clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:07 +0000", "from_user": "chrisponteri", "from_user_id": 110115781, "from_user_id_str": "110115781", "from_user_name": "Chris Ponteri", "geo": null, "id": 148831995525476350, "id_str": "148831995525476353", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1302998776/adventure_juggling_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1302998776/adventure_juggling_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iowahawkblog: First Al Davis, then Kim Jong-Il; bad year for insane clown-haired dictators in novelty Elvis sunglasses", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:03 +0000", "from_user": "lirch44", "from_user_id": 407487984, "from_user_id_str": "407487984", "from_user_name": "James Roberts", "geo": null, "id": 148831979629056000, "id_str": "148831979629056000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702557717/shanna_097_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702557717/shanna_097_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Check this video out -- Insane Clown Posse - Its All Over http://t.co/A9v5k3RN via @youtube", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:00 +0000", "from_user": "sophiegeldard", "from_user_id": 83347194, "from_user_id_str": "83347194", "from_user_name": "Sophie Geldard", "geo": null, "id": 148831965779468300, "id_str": "148831965779468289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1243018647/Photo_on_2011-02-01_at_12.23_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1243018647/Photo_on_2011-02-01_at_12.23_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@rosierothwell LOLLLLLL he looks like a fucking ginger clown!! what a waste.", "to_user": "rosierothwell", "to_user_id": 39072208, "to_user_id_str": "39072208", "to_user_name": "Rosie Rothwell", "in_reply_to_status_id": 148831458549694460, "in_reply_to_status_id_str": "148831458549694464"}, +{"created_at": "Mon, 19 Dec 2011 18:27:59 +0000", "from_user": "GirlyGirl_ki", "from_user_id": 372335402, "from_user_id_str": "372335402", "from_user_name": "kiara", "geo": null, "id": 148831961304154100, "id_str": "148831961304154112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1667351399/33JIfjT1_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667351399/33JIfjT1_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@HB357: @GirlyGirl_ki hey kierston lol\">>>U a clown...shut up!! Lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:56 +0000", "from_user": "ShawtyEllo", "from_user_id": 217279123, "from_user_id_str": "217279123", "from_user_name": "Ello", "geo": null, "id": 148831950881304580, "id_str": "148831950881304576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1667122827/photo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667122827/photo_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "You a ugly girl w a clown suit on............. #bye", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:53 +0000", "from_user": "Amir_TheBaddGuy", "from_user_id": 196299242, "from_user_id_str": "196299242", "from_user_name": "The Badd Guy", "geo": null, "id": 148831937706987520, "id_str": "148831937706987520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1641071602/weedy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641071602/weedy_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@ShortyDip wyd clown?", "to_user": "ShortyDip", "to_user_id": 23723384, "to_user_id_str": "23723384", "to_user_name": "\\uE337SHORTY\\uE337", "in_reply_to_status_id": 148831452686069760, "in_reply_to_status_id_str": "148831452686069761"}, +{"created_at": "Mon, 19 Dec 2011 18:27:46 +0000", "from_user": "ZEEKFROMWEST", "from_user_id": 181755753, "from_user_id_str": "181755753", "from_user_name": "AMERICAN ASSHOLE ", "geo": null, "id": 148831908221030400, "id_str": "148831908221030400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701262168/ZEEKFROMWEST_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701262168/ZEEKFROMWEST_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@thunderthighz87 Them 49th st ole heads b on sum clown shit! The only one who stay the same is @ZEEKFROMWEST\\u201D awww thinks dreamgirl !!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:38 +0000", "from_user": "beOVERshxtiHOOP", "from_user_id": 184148947, "from_user_id_str": "184148947", "from_user_name": "Phiiilllyyyy duh#24", "geo": null, "id": 148831873416704000, "id_str": "148831873416704001", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1663818253/330600224_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663818253/330600224_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "BH chilllout!!!!!it was a joke..don't mean she is...clown#LMAO #SUBTWEET!!!!!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:26 +0000", "from_user": "7clowncircus", "from_user_id": 16154173, "from_user_id_str": "16154173", "from_user_name": "Angie Lee", "geo": null, "id": 148831822283943940, "id_str": "148831822283943937", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/481994256/November_22nd__2008_648bw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/481994256/November_22nd__2008_648bw_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "If my kids could make New Years Resolutions for me, they'd look something like this: http://t.co/zZZJYv3o", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:25 +0000", "from_user": "Note_to_CMO", "from_user_id": 16563452, "from_user_id_str": "16563452", "from_user_name": "StephenDenny", "geo": null, "id": 148831820585246720, "id_str": "148831820585246720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1468257288/bnet_interview_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1468257288/bnet_interview_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iowahawkblog: First Al Davis, then Kim Jong-Il; bad year for insane clown-haired dictators in novelty Elvis sunglasses", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:20 +0000", "from_user": "Always4everpll", "from_user_id": 387139654, "from_user_id_str": "387139654", "from_user_name": "Pretty Little Liars", "geo": null, "id": 148831799328514050, "id_str": "148831799328514048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691518386/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691518386/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @BieberMarmalade: & Whenever i see a clown fish, I automatically think \"OMG, it's Nemo.\" \\u2665", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:20 +0000", "from_user": "arlasko", "from_user_id": 134547925, "from_user_id_str": "134547925", "from_user_name": "Allen Lasko", "geo": null, "id": 148831797218775040, "id_str": "148831797218775043", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687945253/9d00812a-a0ae-40fe-9b8a-80370bafc564_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687945253/9d00812a-a0ae-40fe-9b8a-80370bafc564_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iowahawkblog: First Al Davis, then Kim Jong-Il; bad year for insane clown-haired dictators in novelty Elvis sunglasses", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:16 +0000", "from_user": "bigE_walam", "from_user_id": 248766538, "from_user_id_str": "248766538", "from_user_name": "EazyE", "geo": null, "id": 148831779820814340, "id_str": "148831779820814338", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1557818010/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1557818010/me_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@SameOle_Yah: \\u201C@bigE_walam @SameOle_Yah clown, sup\\u201D wyaa ?\" School, imu young", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:15 +0000", "from_user": "teewiize", "from_user_id": 43264319, "from_user_id_str": "43264319", "from_user_name": "teewiize", "geo": null, "id": 148831777488773120, "id_str": "148831777488773120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1671717429/IMAG0635_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671717429/IMAG0635_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Tha clown uses the money his momma gives him to take care of this old ass women", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:14 +0000", "from_user": "PlayBoyBarbiee", "from_user_id": 271720174, "from_user_id_str": "271720174", "from_user_name": "Olympia ", "geo": null, "id": 148831773642596350, "id_str": "148831773642596352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698790296/btlr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698790296/btlr_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#oomf didnt answer my call lastnight cause she got her girlfriend back LMAO #clown , you know you talk to me when she not there .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:14 +0000", "from_user": "iBeEnStAtUs", "from_user_id": 80124484, "from_user_id_str": "80124484", "from_user_name": "iBeEnStAtUs", "geo": null, "id": 148831772602404860, "id_str": "148831772602404865", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696763596/36_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696763596/36_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@IrisDerion @iBeEnStAtUs Yea whatevA like ii said nigga (in my G voice)\\u201D #CLOWN LOL U SO CONFUSED HUH?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:06 +0000", "from_user": "CoCoCherrelle", "from_user_id": 33742294, "from_user_id_str": "33742294", "from_user_name": "E&J", "geo": null, "id": 148831738775355400, "id_str": "148831738775355392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1673716090/CoCoCherrelle_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673716090/CoCoCherrelle_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Folks sending these forwarded messages talking about I just wanted to say hey... Clown please you text 40 other bishes the same thing!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:02 +0000", "from_user": "TheReal_SEY", "from_user_id": 286990057, "from_user_id_str": "286990057", "from_user_name": "Sey", "geo": null, "id": 148831722526605300, "id_str": "148831722526605314", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698914362/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698914362/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@TJTibbs lol charlie murphy hahaha u a clown", "to_user": "TJTibbs", "to_user_id": 147124361, "to_user_id_str": "147124361", "to_user_name": "T.J. Tibbs", "in_reply_to_status_id": 148831397283495940, "in_reply_to_status_id_str": "148831397283495936"}, +{"created_at": "Mon, 19 Dec 2011 18:27:02 +0000", "from_user": "onlyLESwood", "from_user_id": 193443021, "from_user_id_str": "193443021", "from_user_name": "MonsterLES", "geo": null, "id": 148831721297690620, "id_str": "148831721297690624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701608349/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701608349/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@POPgoesTT clown \\uE415\\uE412", "to_user": "POPgoesTT", "to_user_id": 265275719, "to_user_id_str": "265275719", "to_user_name": "aiTaL ", "in_reply_to_status_id": 148831563994509300, "in_reply_to_status_id_str": "148831563994509312"}, +{"created_at": "Mon, 19 Dec 2011 18:26:59 +0000", "from_user": "Brooke_Monet", "from_user_id": 189594846, "from_user_id_str": "189594846", "from_user_name": "Brooke ", "geo": null, "id": 148831709729792000, "id_str": "148831709729792000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1674043654/AfzeVSECQAIkpYz_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674043654/AfzeVSECQAIkpYz_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "Why must the people always clown with us in the drive thru tho!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:56 +0000", "from_user": "sanay908", "from_user_id": 97021376, "from_user_id_str": "97021376", "from_user_name": "blah_blah", "geo": null, "id": 148831697725702140, "id_str": "148831697725702144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1349601624/sanay1234_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1349601624/sanay1234_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "@briah_shtlegit lmfaoooooooooooooooooooooooooooo you a clown", "to_user": "briah_shtlegit", "to_user_id": 231620944, "to_user_id_str": "231620944", "to_user_name": ", why bother ? ", "in_reply_to_status_id": 148831304820076540, "in_reply_to_status_id_str": "148831304820076544"}, +{"created_at": "Mon, 19 Dec 2011 18:26:55 +0000", "from_user": "chrisbagby", "from_user_id": 169787153, "from_user_id_str": "169787153", "from_user_name": "christopher bagby", "geo": null, "id": 148831694944874500, "id_str": "148831694944874497", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1084134293/37628_1528441059221_1480541644_31343393_5775006_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1084134293/37628_1528441059221_1480541644_31343393_5775006_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iowahawkblog: First Al Davis, then Kim Jong-Il; bad year for insane clown-haired dictators in novelty Elvis sunglasses", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:55 +0000", "from_user": "BCS__", "from_user_id": 30965161, "from_user_id_str": "30965161", "from_user_name": "Britt. =]", "geo": null, "id": 148831693820805120, "id_str": "148831693820805121", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702383167/2011-12-19_11.08.51_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702383167/2011-12-19_11.08.51_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u00AB@TonTon___ \\u201C@BCS__ Lmaooo Me and Anton clown in here.\\u201Dman yes lol\\u00BB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:52 +0000", "from_user": "VicGrandeQueen", "from_user_id": 97439515, "from_user_id_str": "97439515", "from_user_name": "Shelly, Cat Vega \\u2654", "geo": null, "id": 148831681745391600, "id_str": "148831681745391617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699935751/tumblr_lvoqagmhar1r61ts6o1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699935751/tumblr_lvoqagmhar1r61ts6o1_500_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @BieberMarmalade: & Whenever i see a clown fish, I automatically think \"OMG, it's Nemo.\" \\u2665", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:47 +0000", "from_user": "TrueBlueLiberal", "from_user_id": 100987374, "from_user_id_str": "100987374", "from_user_name": "TrueBlue Liberal", "geo": null, "id": 148831660765495300, "id_str": "148831660765495296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/645215421/twittermap_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/645215421/twittermap_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "True Blue Liberal: Christmas Week in the GOP Clown Circus ---> http://t.co/mJyTFxGi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:46 +0000", "from_user": "Beg_4_BRI", "from_user_id": 237939560, "from_user_id_str": "237939560", "from_user_name": "BeatITbitch!", "geo": null, "id": 148831657531670530, "id_str": "148831657531670528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681271164/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681271164/me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "but i @'d him no response.. clown told yu yung bull i kno da game,, nd i play it well!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:43 +0000", "from_user": "stephanyedenise", "from_user_id": 110519985, "from_user_id_str": "110519985", "from_user_name": "STEPHANIE DENISE", "geo": null, "id": 148831644722266100, "id_str": "148831644722266112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682055581/74654_489322829536_506574536_6016695_3143503_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682055581/74654_489322829536_506574536_6016695_3143503_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "I just spoke to my ex *smh* what a clown!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:42 +0000", "from_user": "ManIsNotReady", "from_user_id": 374432463, "from_user_id_str": "374432463", "from_user_name": "Mani Babii", "geo": null, "id": 148831640712519680, "id_str": "148831640712519680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700207530/a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700207530/a_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I should put #oomf clown ass on blast, but Imma be a lady on my birthday... Tomorrow I'm ratchet! And he gon catch a swift one #KnowThat", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:26:43 +0000", "from_user": "stephanyedenise", "from_user_id": 110519985, "from_user_id_str": "110519985", "from_user_name": "STEPHANIE DENISE", "geo": null, "id": 148831644722266100, "id_str": "148831644722266112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682055581/74654_489322829536_506574536_6016695_3143503_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682055581/74654_489322829536_506574536_6016695_3143503_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "I just spoke to my ex *smh* what a clown!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:42 +0000", "from_user": "ManIsNotReady", "from_user_id": 374432463, "from_user_id_str": "374432463", "from_user_name": "Mani Babii", "geo": null, "id": 148831640712519680, "id_str": "148831640712519680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700207530/a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700207530/a_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I should put #oomf clown ass on blast, but Imma be a lady on my birthday... Tomorrow I'm ratchet! And he gon catch a swift one #KnowThat", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:38 +0000", "from_user": "MacKenkie14", "from_user_id": 353512664, "from_user_id_str": "353512664", "from_user_name": "MacKenzie Clayton", "geo": null, "id": 148831620680527870, "id_str": "148831620680527873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674031232/1323034779624_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674031232/1323034779624_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "mr. pearson is subbing for mr. murray today aka no work, all jokes #clown #loudandproud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:36 +0000", "from_user": "jaune_loves_u", "from_user_id": 281820972, "from_user_id_str": "281820972", "from_user_name": "jaune", "geo": null, "id": 148831614686867460, "id_str": "148831614686867456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697579379/1324092738238_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697579379/1324092738238_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster</a>", "text": "I miss him callin me a clown! Awww good times", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:32 +0000", "from_user": "secondazampa", "from_user_id": 90904978, "from_user_id_str": "90904978", "from_user_name": "secondazampa", "geo": null, "id": 148831595929931780, "id_str": "148831595929931776", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/532696592/canetto_sedutolow_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/532696592/canetto_sedutolow_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "GLI ANIMALI AL CIRCO NON SI DIVERTONO...PROPRIO NO! NON SONO MICA I NOSTRI CLOWN!!\\nECCO PERCHE' IL 26 DICEMBRE CI... http://t.co/jxTPhY35", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:31 +0000", "from_user": "BieberMarmalade", "from_user_id": 186861792, "from_user_id_str": "186861792", "from_user_name": "Cupcake princess. \\u2654", "geo": null, "id": 148831593308487680, "id_str": "148831593308487680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691405130/3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691405130/3_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "& Whenever i see a clown fish, I automatically think \"OMG, it's Nemo.\" \\u2665", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:27 +0000", "from_user": "LADYJOE210", "from_user_id": 194786705, "from_user_id_str": "194786705", "from_user_name": "MRS. BROWN", "geo": null, "id": 148831574404763650, "id_str": "148831574404763648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696247886/profile_image_1324031857687_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696247886/profile_image_1324031857687_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "I WONDER IF ALL THESE CLOWN NIGGAS IS ON SUM 1 PAYROLL.....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:25 +0000", "from_user": "Bisley28", "from_user_id": 15058721, "from_user_id_str": "15058721", "from_user_name": "Sarah May", "geo": null, "id": 148831567291224060, "id_str": "148831567291224064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685417612/photo_1_0d7b54153e21a8d05c3354eb5e938e5f_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685417612/photo_1_0d7b54153e21a8d05c3354eb5e938e5f_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@JustCira I'd prefer to have it chopped off by Adrian Scarborough in a botched operation and then become a bitter and angry clown.", "to_user": "JustCira", "to_user_id": 51402030, "to_user_id_str": "51402030", "to_user_name": "Cira", "in_reply_to_status_id": 148831247295197200, "in_reply_to_status_id_str": "148831247295197184"}, +{"created_at": "Mon, 19 Dec 2011 18:26:21 +0000", "from_user": "kaitlinjulia", "from_user_id": 88764190, "from_user_id_str": "88764190", "from_user_name": "Kaitlin Hann", "geo": null, "id": 148831551860383740, "id_str": "148831551860383744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1651197068/388768_10150375465682312_563252311_8921516_909641963_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651197068/388768_10150375465682312_563252311_8921516_909641963_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @CanadianProbz: the clown from Toy Castle that gave you nightmares #canadianprobz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:12 +0000", "from_user": "HeavenSENTasha", "from_user_id": 25588960, "from_user_id_str": "25588960", "from_user_name": "Natasha", "geo": null, "id": 148831511238553600, "id_str": "148831511238553600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687852313/profile_image_1323644663214_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687852313/profile_image_1323644663214_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "he doesnt want mi around..... hes got something to hide........ i think he wants a clown someone to take for a ride", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:08 +0000", "from_user": "_RiSSAPOOOHh_", "from_user_id": 146229675, "from_user_id_str": "146229675", "from_user_name": "\\u2606\\u2605C L A R I S S A\\u2606\\u2605", "geo": null, "id": 148831494545219600, "id_str": "148831494545219585", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677780954/_RiSSAPOOOHh__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677780954/_RiSSAPOOOHh__normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "My TL not too much booming no more @Sir_PoloRL12 @TE_2turnt_UP @Cum_B_aMAYSed me & Kim need y'all to clown with again", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:06 +0000", "from_user": "_OneColdBITCH", "from_user_id": 235812288, "from_user_id_str": "235812288", "from_user_name": "Ashlee", "geo": null, "id": 148831485691047940, "id_str": "148831485691047936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701389163/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701389163/profile_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "I cant wait for these concords to come out , & the clown feet females to be walkin around in them. #PureComedy lmao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:02 +0000", "from_user": "Denis_Bossman5", "from_user_id": 311725623, "from_user_id_str": "311725623", "from_user_name": "Denis Zimero", "geo": null, "id": 148831470167924740, "id_str": "148831470167924736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699686842/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699686842/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "I'll paint your face you a clown homie", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:00 +0000", "from_user": "Beg_4_BRI", "from_user_id": 237939560, "from_user_id_str": "237939560", "from_user_name": "BeatITbitch!", "geo": null, "id": 148831460734926850, "id_str": "148831460734926848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681271164/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681271164/me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "so bull had on a armani jacket nd was hype as shit killin dem maxes,, lol #clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:59 +0000", "from_user": "Chas_lovesMONEY", "from_user_id": 289670335, "from_user_id_str": "289670335", "from_user_name": "Chasity Banks", "geo": null, "id": 148831459162062850, "id_str": "148831459162062849", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700275926/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700275926/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "A true clown(:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:56 +0000", "from_user": "_LarryHoover", "from_user_id": 135541468, "from_user_id_str": "135541468", "from_user_name": "BE STUPID!'", "geo": null, "id": 148831444796571650, "id_str": "148831444796571648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1641360354/_LarryHoover_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641360354/_LarryHoover_normal.jpg", "source": "<a href="http://www.nibirutech.com" rel="nofollow">TwitBird</a>", "text": "RT @TwoMuch_TwoSee: Why\\uD83D\\uDE33RT @_LarryHoover @TwoMuch_TwoSee I can't wait to see you ima clown on yo ass\\uD83D\\uDE20", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:50 +0000", "from_user": "Jdore_CLorrix3", "from_user_id": 236272981, "from_user_id_str": "236272981", "from_user_name": "Chelse with an A\\u2122", "geo": null, "id": 148831421539168260, "id_str": "148831421539168257", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696007639/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696007639/image_normal.jpg", "source": "<a href="http://tweetlogix.com" rel="nofollow">Tweetlogix</a>", "text": "K.I.D.S. >> Best day ever >> Prelude to class clown << I love life, thank you >> blue slide park.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:47 +0000", "from_user": "NT7S", "from_user_id": 16308483, "from_user_id_str": "16308483", "from_user_name": "Jason Milldrum", "geo": null, "id": 148831406108311550, "id_str": "148831406108311553", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1651665890/Image-1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651665890/Image-1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iowahawkblog: First Al Davis, then Kim Jong-Il; bad year for insane clown-haired dictators in novelty Elvis sunglasses", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:46 +0000", "from_user": "Yella_Hawtie", "from_user_id": 265190171, "from_user_id_str": "265190171", "from_user_name": "J a i' m e", "geo": null, "id": 148831402346033150, "id_str": "148831402346033153", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679877959/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679877959/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "lol twitter world I would love for you to met @MrTurner_licks he is a true clown.. \\uD83D\\uDE0A", "to_user": "MrTurner_licks", "to_user_id": 196475302, "to_user_id_str": "196475302", "to_user_name": "Jonathan Turner", "in_reply_to_status_id": 148831060812234750, "in_reply_to_status_id_str": "148831060812234754"}, +{"created_at": "Mon, 19 Dec 2011 18:25:45 +0000", "from_user": "tricochee", "from_user_id": 162506855, "from_user_id_str": "162506855", "from_user_name": "Michael Tricochee", "geo": null, "id": 148831398436937730, "id_str": "148831398436937729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1550757972/250731_2078851257878_1442929052_2411327_1704185_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1550757972/250731_2078851257878_1442929052_2411327_1704185_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Lmfao i love wen my dad tells my brother he found rolling papers in my bag @John_0fficial lmfaoo clown #Gotchya", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:38 +0000", "from_user": "TonTon___", "from_user_id": 438121064, "from_user_id_str": "438121064", "from_user_name": "Anton", "geo": null, "id": 148831371320758270, "id_str": "148831371320758273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696028368/2011-11-29_09-42-42_416-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696028368/2011-11-29_09-42-42_416-1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@BCS__ Lmaooo Me and Anton clown in here.\\u201Dman yes lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:32 +0000", "from_user": "USTPoliSciProf", "from_user_id": 171601052, "from_user_id_str": "171601052", "from_user_name": "Jon Taylor, PhD", "geo": null, "id": 148831346788278270, "id_str": "148831346788278272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1498182945/In_front_of_Tiananmen_Gate________Beijing__PR_China._normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1498182945/In_front_of_Tiananmen_Gate________Beijing__PR_China._normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iowahawkblog: First Al Davis, then Kim Jong-Il; bad year for insane clown-haired dictators in novelty Elvis sunglasses", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:28 +0000", "from_user": "2Sexi4MyClothes", "from_user_id": 146135590, "from_user_id_str": "146135590", "from_user_name": "Bre'Shea Gibson", "geo": null, "id": 148831330287882240, "id_str": "148831330287882240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695779141/woah____normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695779141/woah____normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@_PrettyBLOWED @_MyFabLife @RatedM_Bxtch @Ladii_CB Cant wait til you get here. you know we about to clown", "to_user": "_PrettyBLOWED", "to_user_id": 144733766, "to_user_id_str": "144733766", "to_user_name": "ThisBITCH\\u2665", "in_reply_to_status_id": 148734598543704060, "in_reply_to_status_id_str": "148734598543704066"}, +{"created_at": "Mon, 19 Dec 2011 18:25:25 +0000", "from_user": "Romello_", "from_user_id": 157712335, "from_user_id_str": "157712335", "from_user_name": "QMoney ", "geo": null, "id": 148831315607826430, "id_str": "148831315607826432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702543064/Romello__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702543064/Romello__normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Haha RT @ShawtyEllo: U a pretty girl w a clown suit on so really u ugly dirt bag", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:14 +0000", "from_user": "_BoogieDown_", "from_user_id": 176701201, "from_user_id_str": "176701201", "from_user_name": "Boogie Humes \\uF8FF", "geo": null, "id": 148831270896545800, "id_str": "148831270896545793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677515448/658_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677515448/658_normal.JPG", "source": "<a href="http://stone.com/Twittelator" rel="nofollow">Twittelator</a>", "text": "Clown niggas RT @GottaLuvLexci_ Niggas eating ass is the new trend now?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:13 +0000", "from_user": "BCS__", "from_user_id": 30965161, "from_user_id_str": "30965161", "from_user_name": "Britt. =]", "geo": null, "id": 148831266731593730, "id_str": "148831266731593728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702383167/2011-12-19_11.08.51_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702383167/2011-12-19_11.08.51_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Lmaooo Me and Anton clown in here.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:12 +0000", "from_user": "5StarHB", "from_user_id": 208131302, "from_user_id_str": "208131302", "from_user_name": "Millz", "geo": null, "id": 148831261178331140, "id_str": "148831261178331136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1663975266/082211083517-1-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663975266/082211083517-1-1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "me n my ol girl b trippin on facebook .. i c whea i get my sense of humor frm da woman a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:10 +0000", "from_user": "goodingtontweet", "from_user_id": 374107082, "from_user_id_str": "374107082", "from_user_name": "What's Goodington", "geo": null, "id": 148831254970765300, "id_str": "148831254970765312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1625686677/original_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1625686677/original_normal.jpeg", "source": "<a href="http://www.linksalpha.com/" rel="nofollow">LinksAlpha</a>", "text": "Thom Brennaman calls Jerome Boyd a clown after a bad hit to the helmet http://t.co/wXA3rK5p #whatsgoodington", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:09 +0000", "from_user": "Koolin_OG", "from_user_id": 359727117, "from_user_id_str": "359727117", "from_user_name": "GP", "geo": null, "id": 148831250302513150, "id_str": "148831250302513152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1638050269/329760854_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638050269/329760854_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@NeshaJashawn u the clown lls fuck wrong wit u", "to_user": "NeshaJashawn", "to_user_id": 438114831, "to_user_id_str": "438114831", "to_user_name": "Nesha JaShawn", "in_reply_to_status_id": 148825801377329150, "in_reply_to_status_id_str": "148825801377329152"}, +{"created_at": "Mon, 19 Dec 2011 18:25:04 +0000", "from_user": "christosAL", "from_user_id": 425511775, "from_user_id_str": "425511775", "from_user_name": "christos liapopoulos", "geo": null, "id": 148831228336939000, "id_str": "148831228336939008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675586933/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675586933/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Mr lopes is a fucking clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:03 +0000", "from_user": "beckiscott", "from_user_id": 20051479, "from_user_id_str": "20051479", "from_user_name": "Becki Scott", "geo": null, "id": 148831224775979000, "id_str": "148831224775979009", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/614172663/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/614172663/twitterProfilePhoto_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@jennybull yeah I can! Hidden talents eh?! 3 balls is my max but can do a few different techniques #clown", "to_user": "jennybull", "to_user_id": 18609520, "to_user_id_str": "18609520", "to_user_name": "Jenny B", "in_reply_to_status_id": 148830676030988300, "in_reply_to_status_id_str": "148830676030988290"}, +{"created_at": "Mon, 19 Dec 2011 18:25:03 +0000", "from_user": "GetemBee", "from_user_id": 46734589, "from_user_id_str": "46734589", "from_user_name": "Bianca Toby", "geo": null, "id": 148831223014363140, "id_str": "148831223014363137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1688869357/grooves_9_20111211_1740125040_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688869357/grooves_9_20111211_1740125040_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Str8 up RT @Planet_REN: My feeling numb so you can't hurt me all you gone do is make yaself look like a clown clown.....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:58 +0000", "from_user": "tweeta_bear", "from_user_id": 348685451, "from_user_id_str": "348685451", "from_user_name": "me", "geo": null, "id": 148831202458087420, "id_str": "148831202458087424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700270471/tweeta_bear_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700270471/tweeta_bear_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "whoop whoop! RT @wickidlette87: its my hubbys @KillerBudz89 bday today show him some clown love!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:57 +0000", "from_user": "amberrlannce", "from_user_id": 328890713, "from_user_id_str": "328890713", "from_user_name": "\\u062A Eniats Amber \\u062A", "geo": null, "id": 148831199383650300, "id_str": "148831199383650304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702601093/amberrlannce_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702601093/amberrlannce_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @lawwrencee: @amberrlannce lmao clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:45 +0000", "from_user": "brendiiiiinha", "from_user_id": 80858535, "from_user_id_str": "80858535", "from_user_name": "brendoca", "geo": null, "id": 148831146988412930, "id_str": "148831146988412929", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684012573/todebrincs_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684012573/todebrincs_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "voc\\u00EA \\u00E9 uma clown !!!!!!!! kkkkkkkkk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:41 +0000", "from_user": "JayGray73", "from_user_id": 145308243, "from_user_id_str": "145308243", "from_user_name": "Jason Gray", "geo": null, "id": 148831132497092600, "id_str": "148831132497092608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1598692981/artless_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598692981/artless_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iowahawkblog: First Al Davis, then Kim Jong-Il; bad year for insane clown-haired dictators in novelty Elvis sunglasses", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:35 +0000", "from_user": "Maskinntape", "from_user_id": 35608886, "from_user_id_str": "35608886", "from_user_name": "Rachel Maskin", "geo": null, "id": 148831104592388100, "id_str": "148831104592388096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701492461/tkU1zvTo_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701492461/tkU1zvTo_normal", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @BitchyBrunette: What is that you're wearing? Calvin Clown? #BitchyBrunette", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:30 +0000", "from_user": "iB_daGreat", "from_user_id": 310109260, "from_user_id_str": "310109260", "from_user_name": "I Am Legend.", "geo": null, "id": 148831083524395000, "id_str": "148831083524395008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689971659/og0cm8qb_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689971659/og0cm8qb_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "My guy said we got horses on our shirts and horseshoes on our pants LMAO #Clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:29 +0000", "from_user": "Strong__WILLed", "from_user_id": 195172343, "from_user_id_str": "195172343", "from_user_name": "Smith, Will ", "geo": null, "id": 148831080848429060, "id_str": "148831080848429056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701072403/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701072403/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "class clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:28 +0000", "from_user": "504Smoke1", "from_user_id": 312174162, "from_user_id_str": "312174162", "from_user_name": "Yung504Smoke", "geo": null, "id": 148831076117262340, "id_str": "148831076117262336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694160153/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694160153/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "@Immature_Adult <====clown (bozo)", "to_user": "Immature_Adult", "to_user_id": 247544361, "to_user_id_str": "247544361", "to_user_name": "Lisa Turtle", "in_reply_to_status_id": 148829177653641200, "in_reply_to_status_id_str": "148829177653641216"}, +{"created_at": "Mon, 19 Dec 2011 18:24:27 +0000", "from_user": "JazDiva2010", "from_user_id": 145513102, "from_user_id_str": "145513102", "from_user_name": "Jasmine Dakers", "geo": null, "id": 148831072019419140, "id_str": "148831072019419137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686428767/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686428767/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "U a Clown u only wanna b wit him bcuz of wat he cn do 4 u, NewsFlash Stupid: Karma is a Mf!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:25 +0000", "from_user": "AuntieCrystal_", "from_user_id": 116042642, "from_user_id_str": "116042642", "from_user_name": "Crystaaalllll \\uE022", "geo": null, "id": 148831065765720060, "id_str": "148831065765720064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1610212586/AuntieCrystal__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610212586/AuntieCrystal__normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "My grandma told me to get a job! Lmfao clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:22 +0000", "from_user": "ShawtyEllo", "from_user_id": 217279123, "from_user_id_str": "217279123", "from_user_name": "Ello", "geo": null, "id": 148831052729815040, "id_str": "148831052729815041", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1667122827/photo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667122827/photo_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "U a pretty girl w a clown suit on so really u ugly dirt bag", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:17 +0000", "from_user": "semperdirkes", "from_user_id": 120282211, "from_user_id_str": "120282211", "from_user_name": "Andrew Dirkes", "geo": null, "id": 148831030244163600, "id_str": "148831030244163584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1606748697/fd9ed341-8a55-4470-a4c4-3b78c3da1264_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606748697/fd9ed341-8a55-4470-a4c4-3b78c3da1264_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iowahawkblog: First Al Davis, then Kim Jong-Il; bad year for insane clown-haired dictators in novelty Elvis sunglasses", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:16 +0000", "from_user": "KeshiaTaylor", "from_user_id": 45183680, "from_user_id_str": "45183680", "from_user_name": "Keshia Taylor", "geo": null, "id": 148831027329110000, "id_str": "148831027329110017", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693656831/Photo_on_2011-06-05_at_11.58_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693656831/Photo_on_2011-06-05_at_11.58_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "OMG, just found out how to send a twitpic.. being the backwards clown i am.. lets get these pictures rolling baby! #ohdear", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:13 +0000", "from_user": "CertifiedLeland", "from_user_id": 174951367, "from_user_id_str": "174951367", "from_user_name": "Jeremy Gray", "geo": null, "id": 148831015031406600, "id_str": "148831015031406592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1629359036/263872_220969421256709_100000309579825_758646_2253161_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629359036/263872_220969421256709_100000309579825_758646_2253161_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SmoothDudeQ oh where that clown sequel @??? Shi just Dm yo # bro", "to_user": "SmoothDudeQ", "to_user_id": 120856810, "to_user_id_str": "120856810", "to_user_name": "Est. 1991", "in_reply_to_status_id": 148830882336210940, "in_reply_to_status_id_str": "148830882336210946"}, +{"created_at": "Mon, 19 Dec 2011 18:24:02 +0000", "from_user": "Ethelssoninlaw", "from_user_id": 337466567, "from_user_id_str": "337466567", "from_user_name": "Jeff Schwartzman", "geo": null, "id": 148830968466243600, "id_str": "148830968466243587", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iowahawkblog: First Al Davis, then Kim Jong-Il; bad year for insane clown-haired dictators in novelty Elvis sunglasses", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:01 +0000", "from_user": "LeonsBored", "from_user_id": 266821106, "from_user_id_str": "266821106", "from_user_name": "Leon", "geo": null, "id": 148830962527125500, "id_str": "148830962527125505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1600004221/sdfs_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600004221/sdfs_normal.png", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Strumph is such a clown, sleepin with an asscheek out lmao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:59 +0000", "from_user": "bigdave0908", "from_user_id": 18235245, "from_user_id_str": "18235245", "from_user_name": "Dave Williams", "geo": null, "id": 148830957066137600, "id_str": "148830957066137600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693791721/dave_in_hat_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693791721/dave_in_hat_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Well-played. RT @iowahawkblog: First Al Davis, then Kim Jong-Il; bad year for insane clown-haired dictators in novelty Elvis sunglasses", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:47 +0000", "from_user": "DREfamous", "from_user_id": 47121034, "from_user_id_str": "47121034", "from_user_name": "sno\\u026F\\u0250\\u025F \\u01DD\\u0279p \\u265B.", "geo": null, "id": 148830906004672500, "id_str": "148830906004672513", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700754998/swaggy_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700754998/swaggy_normal.JPG", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "RT @SatinScarlett: RT @_Krissy_Beauty: RT @DREfamous lmaoooo jiggz is a clown b.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:47 +0000", "from_user": "LordSiriusLight", "from_user_id": 346241438, "from_user_id_str": "346241438", "from_user_name": "Jack Light", "geo": null, "id": 148830905224531970, "id_str": "148830905224531968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695416352/Arikado_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695416352/Arikado_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "*runs around, punching a zombified clown troupe* NYAHAAAHHHHHHHHH! *keeps running*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:47 +0000", "from_user": "shesthatgirl02", "from_user_id": 91436171, "from_user_id_str": "91436171", "from_user_name": "P G", "geo": null, "id": 148830904675090430, "id_str": "148830904675090432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699568262/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699568262/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "So @_trinabean just called me a bitch lol..ins nice way lol...shes a big clown with n big ass red nose lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:38 +0000", "from_user": "Glam_Diva_101", "from_user_id": 353876167, "from_user_id_str": "353876167", "from_user_name": "Asiaboo", "geo": null, "id": 148830868448874500, "id_str": "148830868448874496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1672819493/RzhSNaaj_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672819493/RzhSNaaj_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@ADickeyy yu know mommy will clown da shit out of us if we ever told her to check sumbody our age will hear her mouth she'll tell everybody", "to_user": "ADickeyy", "to_user_id": 194446772, "to_user_id_str": "194446772", "to_user_name": "\\uE335Eliza Marie100\\uE335", "in_reply_to_status_id": 148828499812159500, "in_reply_to_status_id_str": "148828499812159488"}, +{"created_at": "Mon, 19 Dec 2011 18:23:38 +0000", "from_user": "ConnieHair", "from_user_id": 16890518, "from_user_id_str": "16890518", "from_user_name": "Connie Hair", "geo": null, "id": 148830867870072830, "id_str": "148830867870072832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/803430844/Connie_Christmas_2010_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/803430844/Connie_Christmas_2010_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iowahawkblog: First Al Davis, then Kim Jong-Il; bad year for insane clown-haired dictators in novelty Elvis sunglasses", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:36 +0000", "from_user": "cynaleo", "from_user_id": 36526225, "from_user_id_str": "36526225", "from_user_name": "Cyndi Leo", "geo": null, "id": 148830860169318400, "id_str": "148830860169318400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1462587751/goofy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1462587751/goofy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MrWordsWorth: If you build a snowman and can only imagine him as a parson or circus clown, you have a very sad imagination.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:36 +0000", "from_user": "TipOvHis_Tongue", "from_user_id": 339458689, "from_user_id_str": "339458689", "from_user_name": "Diamond Kardashian", "geo": null, "id": 148830857287835650, "id_str": "148830857287835649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1463303661/1yOsIfav_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1463303661/1yOsIfav_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "All iWant Fa Christmas iZ Fa Mi Homie B4 2WAKE ME UP &SAY MERRY CHRISTMAS CLOWN..! #MissinqHim lyke School Daiz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:31 +0000", "from_user": "_loneybaby", "from_user_id": 234870549, "from_user_id_str": "234870549", "from_user_name": "Alondrea ♥", "geo": null, "id": 148830836945457150, "id_str": "148830836945457152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1656466401/loney_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656466401/loney_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Lol CLOWN !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:30 +0000", "from_user": "FnCheese", "from_user_id": 302676301, "from_user_id_str": "302676301", "from_user_name": "MIGUEL REYES ", "geo": null, "id": 148830832935714800, "id_str": "148830832935714816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702198005/profile_image_1324305324473_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702198005/profile_image_1324305324473_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "Lol never entertain...I'm Real Tho..RT @o_Witness No, I was too busy trying to be a clown and (cont) http://t.co/yoe77PJO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:26 +0000", "from_user": "TurismoST", "from_user_id": 138492740, "from_user_id_str": "138492740", "from_user_name": "Turismo Santa Tecla", "geo": null, "id": 148830817945260030, "id_str": "148830817945260032", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/860577874/daniel-hernandez-low_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/860577874/daniel-hernandez-low_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @alejoclown: @TurismoST este dia se presenta Lagrimas de risa en el paseo el carmen con un super show clown con nuevos malares y un show de fuego RT :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:25 +0000", "from_user": "FiercelyLuvnTee", "from_user_id": 214340365, "from_user_id_str": "214340365", "from_user_name": "Tiffany Diamond", "geo": null, "id": 148830813667065860, "id_str": "148830813667065857", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1642346424/Tiff_part_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642346424/Tiff_part_1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "LMAO hmph toleme `_` RT @intheKEyoflyfe: @FiercelyLuvnTee byee you ALWAYS a clown", "to_user": "intheKEyoflyfe", "to_user_id": 242597496, "to_user_id_str": "242597496", "to_user_name": "Ke.", "in_reply_to_status_id": 148830186895450100, "in_reply_to_status_id_str": "148830186895450112"}, +{"created_at": "Mon, 19 Dec 2011 18:23:20 +0000", "from_user": "24stSlickTalker", "from_user_id": 171312124, "from_user_id_str": "171312124", "from_user_name": "nunu's dad", "geo": null, "id": 148830790267060220, "id_str": "148830790267060224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689667332/profile_image_1323724298956_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689667332/profile_image_1323724298956_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Sum clown jus ask me how many calories was in the salad dressing. I jus pointed to the sign that clearly list the calories! Smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:18 +0000", "from_user": "_ClaireSmith", "from_user_id": 275552564, "from_user_id_str": "275552564", "from_user_name": "Claire Smith", "geo": null, "id": 148830784273399800, "id_str": "148830784273399808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1595531346/299174_10150323670195940_508335939_8460317_1492622042_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1595531346/299174_10150323670195940_508335939_8460317_1492622042_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@mikkaayyla saw your tweets...homeboys just upset bc he realized he never had a chance haha! @lebs16 will take care of the clown.", "to_user": "mikkaayyla", "to_user_id": 408141014, "to_user_id_str": "408141014", "to_user_name": "Mikayla Henry"}, +{"created_at": "Mon, 19 Dec 2011 18:23:16 +0000", "from_user": "skippyg0tswag", "from_user_id": 155284068, "from_user_id_str": "155284068", "from_user_name": "Krysten Fletcher", "geo": null, "id": 148830774429356030, "id_str": "148830774429356033", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702608227/tumblr_lvc8gnLxSO1r5k5ryo1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702608227/tumblr_lvc8gnLxSO1r5k5ryo1_500_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @AndreaCardentey: #IWasThatKid that was the class clown lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:16 +0000", "from_user": "SHiTTY407", "from_user_id": 355800344, "from_user_id_str": "355800344", "from_user_name": "Shitted'ON'em", "geo": null, "id": 148830774299344900, "id_str": "148830774299344896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1651647931/shendz-photo-app-2011-10-22-02-46-0_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651647931/shendz-photo-app-2011-10-22-02-46-0_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Yea I must clown I'm from Uptown! Where we flash money.. Take ur bitch an ask WHAT NOW!?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:07 +0000", "from_user": "_ilovechanel", "from_user_id": 211594938, "from_user_id_str": "211594938", "from_user_name": "Chanel Nicole", "geo": null, "id": 148830737037131780, "id_str": "148830737037131776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700717222/_ilovechanel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700717222/_ilovechanel_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@Crazy4CiCi Lmfao yur a clown like really hahaha I'm putting Sasha back in but I'm gluing her in", "to_user": "Crazy4CiCi", "to_user_id": 266070066, "to_user_id_str": "266070066", "to_user_name": "Cierra Dior", "in_reply_to_status_id": 148826930005815300, "in_reply_to_status_id_str": "148826930005815296"}, +{"created_at": "Mon, 19 Dec 2011 18:23:04 +0000", "from_user": "lawwrencee", "from_user_id": 330795202, "from_user_id_str": "330795202", "from_user_name": "lawrence ", "geo": null, "id": 148830725678960640, "id_str": "148830725678960640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1626685127/Aqua_8s_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626685127/Aqua_8s_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@amberrlannce lmao clown", "to_user": "amberrlannce", "to_user_id": 328890713, "to_user_id_str": "328890713", "to_user_name": "\\u062A Eniats Amber \\u062A", "in_reply_to_status_id": 148829917654679550, "in_reply_to_status_id_str": "148829917654679552"}, +{"created_at": "Mon, 19 Dec 2011 18:23:03 +0000", "from_user": "ItsCopeeBxtch", "from_user_id": 148627046, "from_user_id_str": "148627046", "from_user_name": "Forevaa ` Grateful", "geo": null, "id": 148830720897462270, "id_str": "148830720897462272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698548656/593E2eYl_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698548656/593E2eYl_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "she's a freakin clown ...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:59 +0000", "from_user": "megkell10", "from_user_id": 339296772, "from_user_id_str": "339296772", "from_user_name": "Meaghan", "geo": null, "id": 148830705047187460, "id_str": "148830705047187456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688440131/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688440131/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@dmart94 your an absolute #clown. Your not a true \"temple runner\"", "to_user": "dmart94", "to_user_id": 41494733, "to_user_id_str": "41494733", "to_user_name": "Dimitri Martinos"}, +{"created_at": "Mon, 19 Dec 2011 18:22:59 +0000", "from_user": "_SimplyMe89", "from_user_id": 80363885, "from_user_id_str": "80363885", "from_user_name": "Loading...", "geo": null, "id": 148830702119559170, "id_str": "148830702119559168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1652970811/hk1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652970811/hk1_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@OhDatsDaBol_MIR lol fine Jamir is a clown.. Lol \\uD83D\\uDE1D", "to_user": "OhDatsDaBol_MIR", "to_user_id": 103235902, "to_user_id_str": "103235902", "to_user_name": "Just Mir ", "in_reply_to_status_id": 148830282122919940, "in_reply_to_status_id_str": "148830282122919936"}, +{"created_at": "Mon, 19 Dec 2011 18:22:58 +0000", "from_user": "SatinScarlett", "from_user_id": 47393977, "from_user_id_str": "47393977", "from_user_name": "Satin I. Scarlett ", "geo": null, "id": 148830698856394750, "id_str": "148830698856394752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698843350/collage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698843350/collage_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Krissy_Beauty: RT @DREfamous lmaoooo jiggz is a clown b.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:56 +0000", "from_user": "aminmiamibxtch", "from_user_id": 315905699, "from_user_id_str": "315905699", "from_user_name": "amxn", "geo": null, "id": 148830691122102270, "id_str": "148830691122102273", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1596221061/305285_106466342790718_100002820590968_34340_2842584_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596221061/305285_106466342790718_100002820590968_34340_2842584_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@Heeriana aku clown ke....:')\\nsayang yang sudah tu shudah HAHAHA hantar ah pringles delivery di doorstep saya", "to_user": "Heeriana", "to_user_id": 115820283, "to_user_id_str": "115820283", "to_user_name": "Nur Khiriana", "in_reply_to_status_id": 148829817427607550, "in_reply_to_status_id_str": "148829817427607553"}, +{"created_at": "Mon, 19 Dec 2011 18:22:51 +0000", "from_user": "fuckitsVicky", "from_user_id": 86527102, "from_user_id_str": "86527102", "from_user_name": "Vicky Cruz \\u2605", "geo": null, "id": 148830671266250750, "id_str": "148830671266250752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1626083882/310341_283225738367779_100000410660844_1061379_1098063080_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626083882/310341_283225738367779_100000410660844_1061379_1098063080_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @AndreaCardentey: #IWasThatKid that was the class clown lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:48 +0000", "from_user": "LovinMunnyCat_", "from_user_id": 62659300, "from_user_id_str": "62659300", "from_user_name": "\\u25CF\\u273FMissinSemaja\\u2606\\u2122\\u2733 \\u2665", "geo": null, "id": 148830655499874300, "id_str": "148830655499874304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688193496/imagejpeg_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688193496/imagejpeg_2_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "RT @_CoutureLevel: RT @SecretsOfaBOSS Niggas Be Trippin Like Clown Shoes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:40 +0000", "from_user": "nadgregoire", "from_user_id": 17666978, "from_user_id_str": "17666978", "from_user_name": "Howlin' Nad Gregoire", "geo": null, "id": 148830621899309060, "id_str": "148830621899309056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1679971311/9_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679971311/9_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Today's self-depricating descriptor is \"Ass-Clown\".", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:38 +0000", "from_user": "_ForeverSydney_", "from_user_id": 287719176, "from_user_id_str": "287719176", "from_user_name": "Porcha Sanderfield", "geo": null, "id": 148830615301656580, "id_str": "148830615301656576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698473520/porcha_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698473520/porcha_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Nd the other half black #clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:37 +0000", "from_user": "Miss_Gushers", "from_user_id": 128581828, "from_user_id_str": "128581828", "from_user_name": "Tasha Mack \\u2122", "geo": null, "id": 148830612151730180, "id_str": "148830612151730177", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698864114/121711101935-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698864114/121711101935-1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Lmatfo at stepping out looking like a clown ...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:35 +0000", "from_user": "shesDeja_", "from_user_id": 233081913, "from_user_id_str": "233081913", "from_user_name": "deja C. ", "geo": null, "id": 148830602160898050, "id_str": "148830602160898049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701524409/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701524409/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@JustA_QUICKie shut clown ass up", "to_user": "JustA_QUICKie", "to_user_id": 263215785, "to_user_id_str": "263215785", "to_user_name": "Jordan Quick", "in_reply_to_status_id": 148830470061309950, "in_reply_to_status_id_str": "148830470061309952"}, +{"created_at": "Mon, 19 Dec 2011 18:22:31 +0000", "from_user": "Kveeeezy", "from_user_id": 366421729, "from_user_id_str": "366421729", "from_user_name": "KV", "geo": null, "id": 148830588034486270, "id_str": "148830588034486272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699185745/Photo_on_2011-09-15_at_18.30_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699185745/Photo_on_2011-09-15_at_18.30_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Sage_Egyptian I was just about to say she remind me of your clown ass when she was fighting the robber", "to_user": "Sage_Egyptian", "to_user_id": 262487258, "to_user_id_str": "262487258", "to_user_name": "Mamacitaaa6:)", "in_reply_to_status_id": 148828312721039360, "in_reply_to_status_id_str": "148828312721039360"}, +{"created_at": "Mon, 19 Dec 2011 18:22:31 +0000", "from_user": "Gillybag", "from_user_id": 21740502, "from_user_id_str": "21740502", "from_user_name": "Gillian", "geo": null, "id": 148830586532929540, "id_str": "148830586532929537", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693497943/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693497943/profile_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@justafriend1 clown pants! There will be present exchanging too. Possibly best nandos experience ever!", "to_user": "justafriend1", "to_user_id": 26826828, "to_user_id_str": "26826828", "to_user_name": "stephanie scott", "in_reply_to_status_id": 148829097106223100, "in_reply_to_status_id_str": "148829097106223106"}, +{"created_at": "Mon, 19 Dec 2011 18:22:25 +0000", "from_user": "ScottyO_10", "from_user_id": 318194705, "from_user_id_str": "318194705", "from_user_name": "Scott Ogden", "geo": null, "id": 148830559177674750, "id_str": "148830559177674752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1678079982/161202_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678079982/161202_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@h_schaeefff haha what the fuckk. I'm about to buy a sick ass clown hat and get \"does it pop??\" stitched on it.", "to_user": "h_schaeefff", "to_user_id": 412605220, "to_user_id_str": "412605220", "to_user_name": "hannah schaeffer", "in_reply_to_status_id": 148828235696844800, "in_reply_to_status_id_str": "148828235696844800"}, +{"created_at": "Mon, 19 Dec 2011 18:22:22 +0000", "from_user": "oithassy", "from_user_id": 180474147, "from_user_id_str": "180474147", "from_user_name": "\\u2661", "geo": null, "id": 148830549753073660, "id_str": "148830549753073665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668494539/DSC01802_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668494539/DSC01802_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "I hear \"The Tears of a Clown\", I hate that song, I always feel like they talking to me when it comes on \\u2192 verdade, puta m\\u00FAsica linda...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:20 +0000", "from_user": "thoolou", "from_user_id": 176931855, "from_user_id_str": "176931855", "from_user_name": "Rik Marlowe", "geo": null, "id": 148830540571746300, "id_str": "148830540571746304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1479209628/Salvador-Dali_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1479209628/Salvador-Dali_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iowahawkblog: First Al Davis, then Kim Jong-Il; bad year for insane clown-haired dictators in novelty Elvis sunglasses", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:11 +0000", "from_user": "kb_kinx", "from_user_id": 87761363, "from_user_id_str": "87761363", "from_user_name": "askaboutkinx \\uF8EB ", "geo": null, "id": 148830500604223500, "id_str": "148830500604223488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1576537275/twitpic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576537275/twitpic_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Hahaaha Just remembered Antoine Dodson! Where's dat clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:08 +0000", "from_user": "HotSexNCldWine", "from_user_id": 45005660, "from_user_id_str": "45005660", "from_user_name": "HoneyLashay", "geo": null, "id": 148830487903870980, "id_str": "148830487903870976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696064046/c9K83nPk_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696064046/c9K83nPk_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@iGot_AsS_4DaYs NIGGA I LIVE W/U!& going 2 fa the next 2 years!! WE ALWAYS CLOWN WAT DO U MEAN?! Lol", "to_user": "iGot_AsS_4DaYs", "to_user_id": 386271553, "to_user_id_str": "386271553", "to_user_name": "-- Mari :)) --", "in_reply_to_status_id": 148830116577943550, "in_reply_to_status_id_str": "148830116577943552"}, +{"created_at": "Mon, 19 Dec 2011 18:22:06 +0000", "from_user": "DaddyGriffis", "from_user_id": 14603277, "from_user_id_str": "14603277", "from_user_name": "Griffis", "geo": null, "id": 148830482828763140, "id_str": "148830482828763136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/501346154/IMG_1062_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/501346154/IMG_1062_normal.JPG", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "Thinking about buying a new vehicle soon? Don't be a clown, be like Charlie Brown and come see me at All Star Toy http://t.co/fDpFfLcW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:06 +0000", "from_user": "o_Witness", "from_user_id": 68827090, "from_user_id_str": "68827090", "from_user_name": "ACE jR", "geo": null, "id": 148830481192980480, "id_str": "148830481192980480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1644756101/LiftedAce_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644756101/LiftedAce_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "No, I was too busy trying to be a clown and entertain ppl just like you. RT @FnCheese: @o_Witness Wasn't You Just ... http://t.co/PddmFJmT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:03 +0000", "from_user": "Elenoraigv", "from_user_id": 431747645, "from_user_id_str": "431747645", "from_user_name": "Elenora Beightol", "geo": null, "id": 148830468182253570, "id_str": "148830468182253568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681130286/large_brendah_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681130286/large_brendah_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Insane Clown Posse Ringmaster Chain Wallet: Insane Clown Posse Ringmaster Chain Wallet. This Insane Clown Posse ... http://t.co/iFFOqcxI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:02 +0000", "from_user": "iowahawkblog", "from_user_id": 149913262, "from_user_id_str": "149913262", "from_user_name": "David Burge", "geo": null, "id": 148830464818421760, "id_str": "148830464818421760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1168478910/ih081112_big_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1168478910/ih081112_big_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "First Al Davis, then Kim Jong-Il; bad year for insane clown-haired dictators in novelty Elvis sunglasses", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:01 +0000", "from_user": "JayShowtimeF1st", "from_user_id": 413172231, "from_user_id_str": "413172231", "from_user_name": "Wake Shxxt Toota", "geo": null, "id": 148830460334718980, "id_str": "148830460334718976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702259453/bJ5575V7_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702259453/bJ5575V7_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Woww ii juss bust ma ass infront of da whole class, ii feel like a fuckn #CLOWN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:58 +0000", "from_user": "_Krissy_Beauty", "from_user_id": 73920179, "from_user_id_str": "73920179", "from_user_name": "Krissy Carter :) ", "geo": null, "id": 148830448708104200, "id_str": "148830448708104192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702378431/profile_image_1324311912992_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702378431/profile_image_1324311912992_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "RT @DREfamous lmaoooo jiggz is a clown b.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:58 +0000", "from_user": "vdejoseph25", "from_user_id": 235347405, "from_user_id_str": "235347405", "from_user_name": "Vince DeJoseph", "geo": null, "id": 148830448699719680, "id_str": "148830448699719680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1213426433/67115_1507717658365_1397028307_31167658_1822799_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1213426433/67115_1507717658365_1397028307_31167658_1822799_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@MikeMac61 you're gonna die clown!", "to_user": "MikeMac61", "to_user_id": 234439495, "to_user_id_str": "234439495", "to_user_name": "Michael McIntosh", "in_reply_to_status_id": 148828592049102850, "in_reply_to_status_id_str": "148828592049102848"}, +{"created_at": "Mon, 19 Dec 2011 18:21:51 +0000", "from_user": "mkhaidet", "from_user_id": 14329461, "from_user_id_str": "14329461", "from_user_name": "Michelle Haidet", "geo": null, "id": 148830420128112640, "id_str": "148830420128112641", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1109609836/2b2351db-e3c0-4fd0-a06e-55965a76d432_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1109609836/2b2351db-e3c0-4fd0-a06e-55965a76d432_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "still uncomfortable from it #CLOWN RT @WhitneyM_King Just got second hand embarrassment watching an awkward proposal video with @mkhaidet.", "to_user": "WhitneyM_King", "to_user_id": 11059022, "to_user_id_str": "11059022", "to_user_name": "Whitney M King", "in_reply_to_status_id": 148829663135932400, "in_reply_to_status_id_str": "148829663135932416"}, +{"created_at": "Mon, 19 Dec 2011 18:21:41 +0000", "from_user": "thedailywitness", "from_user_id": 380510294, "from_user_id_str": "380510294", "from_user_name": "Jonas Kane", "geo": null, "id": 148830376985501700, "id_str": "148830376985501696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1564230685/burnsy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1564230685/burnsy_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "The TeaParty infested, 9%approved, HouseOfReps clown-show has a boot on the throat of the American People. #PayrollTaxCut #WeAreThe91percent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:42 +0000", "from_user": "G5_86", "from_user_id": 346165054, "from_user_id_str": "346165054", "from_user_name": "Greg Franklin Jr.", "geo": null, "id": 148830376608006140, "id_str": "148830376608006144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700970036/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700970036/image_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Camera on iOS</a>", "text": "And the clown prince of course http://t.co/rXbCKBly", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:36 +0000", "from_user": "YoungCrim", "from_user_id": 155089847, "from_user_id_str": "155089847", "from_user_name": "Crim Della Creme", "geo": null, "id": 148830356542455800, "id_str": "148830356542455808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1664676648/Young_crim_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664676648/Young_crim_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@StahlettTweets man I'm not even gonna clown you lol", "to_user": "StahlettTweets", "to_user_id": 175758252, "to_user_id_str": "175758252", "to_user_name": "Hoyada \\u0394\\u03A9\\u03A8", "in_reply_to_status_id": 148790450311008260, "in_reply_to_status_id_str": "148790450311008256"}, +{"created_at": "Mon, 19 Dec 2011 18:21:30 +0000", "from_user": "RancidGooner", "from_user_id": 212245278, "from_user_id_str": "212245278", "from_user_name": "RancidGooner", "geo": null, "id": 148830330671992830, "id_str": "148830330671992833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681236294/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681236294/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @ChefNero: @RancidGooner in Tenerife? Such a clown! Yet you could not come\\nTo mine. Cunt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:28 +0000", "from_user": "xx_elinexx", "from_user_id": 203975084, "from_user_id_str": "203975084", "from_user_name": "eline", "geo": null, "id": 148830320068796400, "id_str": "148830320068796417", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686930093/331284204_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686930093/331284204_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @XemmaX2: @xx_elinexx heb een hele fantasie over mij en een clown :S - hahaha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:24 +0000", "from_user": "BunnehRen", "from_user_id": 281021088, "from_user_id_str": "281021088", "from_user_name": "A Fluffy Bunny", "geo": null, "id": 148830305413890050, "id_str": "148830305413890048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1645641183/lolcher_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645641183/lolcher_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Fate/Extra: now with creepy cannibalistic loli clown who want's to take a bite of ya ass... literaly.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:23 +0000", "from_user": "Scream_Dro", "from_user_id": 323286687, "from_user_id_str": "323286687", "from_user_name": "p e y t o n. \\u30C4", "geo": null, "id": 148830302876352500, "id_str": "148830302876352512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700800838/401149_10150417333291053_715066052_8862572_7179937_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700800838/401149_10150417333291053_715066052_8862572_7179937_n_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Clown ass.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:24 +0000", "from_user": "imya_GRANDPA", "from_user_id": 279725063, "from_user_id_str": "279725063", "from_user_name": "January8 :)", "geo": null, "id": 148830300762411000, "id_str": "148830300762411009", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700582241/g6538Q6F_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700582241/g6538Q6F_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Imma clown :) http://t.co/qDw5ZYlt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:21:22 +0000", "from_user": "StephStaccs", "from_user_id": 102820234, "from_user_id_str": "102820234", "from_user_name": "Staccs", "geo": null, "id": 148830298002563070, "id_str": "148830298002563074", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698856404/331623450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698856404/331623450_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "It may seem like I have girl problem but I dnt iim juss irritated by these gyal clown and these bitches aint shit like 4real", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:21 +0000", "from_user": "h8allie", "from_user_id": 137923479, "from_user_id_str": "137923479", "from_user_name": "Allie B", "geo": null, "id": 148830294315761660, "id_str": "148830294315761664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1661265878/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661265878/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Call me a clown but a week from now you're goin' to hear this and begin to ride on my dick.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:19 +0000", "from_user": "_CoutureLevel", "from_user_id": 150516885, "from_user_id_str": "150516885", "from_user_name": "QueenCoffee", "geo": null, "id": 148830285142835200, "id_str": "148830285142835200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685347740/profile_image_1323537288139_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685347740/profile_image_1323537288139_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "RT @SecretsOfaBOSS Niggas Be Trippin Like Clown Shoes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:19 +0000", "from_user": "BETcha1realize", "from_user_id": 231096282, "from_user_id_str": "231096282", "from_user_name": "Bethany Ferguson", "geo": null, "id": 148830282613665800, "id_str": "148830282613665792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668228538/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668228538/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": ":(\\u00AB-- kmsl y clown my art work though. #imsaddnow", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:19 +0000", "from_user": "OhDatsDaBol_MIR", "from_user_id": 103235902, "from_user_id_str": "103235902", "from_user_name": "Just Mir ", "geo": null, "id": 148830282122919940, "id_str": "148830282122919936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1667286459/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667286459/image_normal.jpg", "source": "<a href="http://bit.ly/fVzRUd" rel="nofollow">TwitPal</a>", "text": "@ me tho RT @_SimplyMe89: Cthu Jamir is a clown!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:13 +0000", "from_user": "ChefNero", "from_user_id": 291346163, "from_user_id_str": "291346163", "from_user_name": "Le Chef Nero", "geo": null, "id": 148830259331076100, "id_str": "148830259331076096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693311363/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693311363/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@RancidGooner in Tenerife? Such a clown! Yet you could not come\\nTo mine. Cunt", "to_user": "RancidGooner", "to_user_id": 212245278, "to_user_id_str": "212245278", "to_user_name": "RancidGooner", "in_reply_to_status_id": 148829001199267840, "in_reply_to_status_id_str": "148829001199267840"}, +{"created_at": "Mon, 19 Dec 2011 18:21:11 +0000", "from_user": "concobe", "from_user_id": 334549458, "from_user_id_str": "334549458", "from_user_name": "Peekay", "geo": null, "id": 148830249197637630, "id_str": "148830249197637632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1678864380/331054706_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678864380/331054706_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "This guy Jabulani is complete clown..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:03 +0000", "from_user": "divastatusstar", "from_user_id": 136369694, "from_user_id_str": "136369694", "from_user_name": "Star ", "geo": null, "id": 148830216289124350, "id_str": "148830216289124352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1646094780/divastatusstar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646094780/divastatusstar_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@maCO_13 I know cuz especially knowing the bd will clown", "to_user": "maCO_13", "to_user_id": 240078579, "to_user_id_str": "240078579", "to_user_name": "$ CO DENIRO $", "in_reply_to_status_id": 148827322261311500, "in_reply_to_status_id_str": "148827322261311488"}, +{"created_at": "Mon, 19 Dec 2011 18:20:56 +0000", "from_user": "intheKEyoflyfe", "from_user_id": 242597496, "from_user_id_str": "242597496", "from_user_name": "Ke.", "geo": null, "id": 148830186895450100, "id_str": "148830186895450112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1665040114/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665040114/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@FiercelyLuvnTee byee you ALWAYS a clown", "to_user": "FiercelyLuvnTee", "to_user_id": 214340365, "to_user_id_str": "214340365", "to_user_name": "Tiffany Diamond", "in_reply_to_status_id": 148829952383528960, "in_reply_to_status_id_str": "148829952383528960"}, +{"created_at": "Mon, 19 Dec 2011 18:20:53 +0000", "from_user": "_jeroeentje_", "from_user_id": 309033413, "from_user_id_str": "309033413", "from_user_name": "Jeroen ", "geo": null, "id": 148830176795566080, "id_str": "148830176795566081", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1648829156/vlieland_2_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648829156/vlieland_2_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @JongerenSwag_: Ik: \"Ik word de nieuwe hitler, ik vermoord alle joden en 1 clown\"\\nHij: \"waarom een clown\"\\nIk: \"Zie je, niemand geeft om die joden!\" #JSW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:51 +0000", "from_user": "big_dawg_tweets", "from_user_id": 107161767, "from_user_id_str": "107161767", "from_user_name": "^WHY DEY ON MY D**K^", "geo": null, "id": 148830167308050430, "id_str": "148830167308050432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1667512270/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667512270/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "& hang up on me like imma clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:50 +0000", "from_user": "hartjelanaa", "from_user_id": 277565342, "from_user_id_str": "277565342", "from_user_name": "Lana ", "geo": null, "id": 148830161733824500, "id_str": "148830161733824512", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698270760/Weesp-20111217-00705_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698270760/Weesp-20111217-00705_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @JongerenSwag_: Ik: \"Ik word de nieuwe hitler, ik vermoord alle joden en 1 clown\"\\nHij: \"waarom een clown\"\\nIk: \"Zie je, niemand geeft om die joden!\" #JSW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:43 +0000", "from_user": "_laurenmaya", "from_user_id": 224046281, "from_user_id_str": "224046281", "from_user_name": "Maya Williams", "geo": null, "id": 148830132063322100, "id_str": "148830132063322112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691225190/BUCLASSIC-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691225190/BUCLASSIC-1_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "\\u201C@jay_enne_see: @_laurenmaya puttin in work! haha\\u201Di told shorts i was twerking he said : \"sit yo clown ass down \" -___-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:40 +0000", "from_user": "amveats", "from_user_id": 72624303, "from_user_id_str": "72624303", "from_user_name": "Andrew Veety", "geo": null, "id": 148830120763850750, "id_str": "148830120763850752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1400443736/SMALL20101218_AVeety_005_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1400443736/SMALL20101218_AVeety_005_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Your bumper sticker may say ninja but you drive like a clown.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:40 +0000", "from_user": "WritingsofwoRm", "from_user_id": 248079314, "from_user_id_str": "248079314", "from_user_name": " Biko ", "geo": null, "id": 148830119870472200, "id_str": "148830119870472193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1603524804/wosk_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1603524804/wosk_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "My kids clowning today. \"Mr. Caruthers do you shop at Baby Gap?\" I wear my clothes fitted... It's cool I clown back. \\uD83D\\uDE02", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:37 +0000", "from_user": "Mayrlc", "from_user_id": 431694106, "from_user_id_str": "431694106", "from_user_name": "May Warriner", "geo": null, "id": 148830108864614400, "id_str": "148830108864614401", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681018791/ti4gr145am_128705230-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681018791/ti4gr145am_128705230-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Baby Spring Float with Sun Canopy Swim Ways Blue with Starfish and Clown Fish: Supports young children as they a... http://t.co/BbL0erJo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:34 +0000", "from_user": "Casa_Deliscioso", "from_user_id": 352520017, "from_user_id_str": "352520017", "from_user_name": "Casa Deliscioso", "geo": null, "id": 148830097217036300, "id_str": "148830097217036288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1488610783/bird_logo_tw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1488610783/bird_logo_tw_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@IntoNoRes then you should rent and watch the first 5 minutes of \"shakes the clown\"... uncanny! good movie too, but dark humor permeates", "to_user": "IntoNoRes", "to_user_id": 213670984, "to_user_id_str": "213670984", "to_user_name": "Helen Cho", "in_reply_to_status_id": 148787460606922750, "in_reply_to_status_id_str": "148787460606922752"}, +{"created_at": "Mon, 19 Dec 2011 18:20:31 +0000", "from_user": "toy_toy11", "from_user_id": 229013978, "from_user_id_str": "229013978", "from_user_name": "Toya Nelson", "geo": null, "id": 148830081912012800, "id_str": "148830081912012800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1634701595/310717_1979033438067_1310070172_31819144_7746182_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634701595/310717_1979033438067_1310070172_31819144_7746182_n_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "I paint yo face you a clown homie", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:30 +0000", "from_user": "PrinCessUniiQue", "from_user_id": 28482931, "from_user_id_str": "28482931", "from_user_name": "Royal Princess*", "geo": null, "id": 148830079710011400, "id_str": "148830079710011392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682134114/4064dc6421de11e1a87612313804ec91_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682134114/4064dc6421de11e1a87612313804ec91_7_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Ju_RLMG lmao I mean first thing on my mind clown", "to_user": "Ju_RLMG", "to_user_id": 430933514, "to_user_id_str": "430933514", "to_user_name": "JuJu DiBiase ", "in_reply_to_status_id": 148829641690447870, "in_reply_to_status_id_str": "148829641690447872"}, +{"created_at": "Mon, 19 Dec 2011 18:20:30 +0000", "from_user": "YasmineAkib", "from_user_id": 335087344, "from_user_id_str": "335087344", "from_user_name": "\\u2714Verified Account", "geo": null, "id": 148830079240249340, "id_str": "148830079240249344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699273543/Photo_on_12-17-11_at_8.53_PM_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699273543/Photo_on_12-17-11_at_8.53_PM_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Ochocino is oneee clown assss nigggaaaa BAHAHAHAHAAA!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:27 +0000", "from_user": "akloveless", "from_user_id": 342553706, "from_user_id_str": "342553706", "from_user_name": "\\u00B0Lashes&lips\\u00B0", "geo": null, "id": 148830066065940480, "id_str": "148830066065940480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699271474/77N2h6oO_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699271474/77N2h6oO_normal", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:23 +0000", "from_user": "WaxindatJaylove", "from_user_id": 265730630, "from_user_id_str": "265730630", "from_user_name": "J'ay Cubbie ", "geo": null, "id": 148830050161139700, "id_str": "148830050161139712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695187518/37136_168099959870313_100000109297361_591489_2520035_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695187518/37136_168099959870313_100000109297361_591489_2520035_n_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "That txt ...lmao he a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:22 +0000", "from_user": "HuitziTaughtMe", "from_user_id": 61053475, "from_user_id_str": "61053475", "from_user_name": "Scott S", "geo": null, "id": 148830046558240770, "id_str": "148830046558240769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1598684184/302456_10150296416667887_540862886_8036069_1687540287_n__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598684184/302456_10150296416667887_540862886_8036069_1687540287_n__1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "or maybe Dayton to clown with chupa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:21 +0000", "from_user": "AureoladelSol", "from_user_id": 105248192, "from_user_id_str": "105248192", "from_user_name": "Aureola del Sol ", "geo": null, "id": 148830039528583170, "id_str": "148830039528583168", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1651460320/IMG-20111116-00008_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651460320/IMG-20111116-00008_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Las actividades del #FICH2011 comienzan desde las 17:00 horas con la actuaci\\u00F3n del espect\\u00E1culo Clown \"Desconcierto navide\\u00F1o\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:20 +0000", "from_user": "Leonbc11", "from_user_id": 428058412, "from_user_id_str": "428058412", "from_user_name": "Leon Boyd-Cleaver", "geo": null, "id": 148830035497848830, "id_str": "148830035497848832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1672953930/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672953930/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Your gonna die clown!! #funnyshit", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:18 +0000", "from_user": "Twin_Shayy", "from_user_id": 239607650, "from_user_id_str": "239607650", "from_user_name": "Shay Whithaker", "geo": null, "id": 148830029499990000, "id_str": "148830029499990016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1692898827/390634_2924962486794_1342851946_33316162_1257376483_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692898827/390634_2924962486794_1342851946_33316162_1257376483_n_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "This Boy Just Called Me A Clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:18 +0000", "from_user": "lisianahoi", "from_user_id": 409332901, "from_user_id_str": "409332901", "from_user_name": "lisiana gerritsen", "geo": null, "id": 148830027759353860, "id_str": "148830027759353856", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1632382290/1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632382290/1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @JongerenSwag_: Ik: \"Ik word de nieuwe hitler, ik vermoord alle joden en 1 clown\"\\nHij: \"waarom een clown\"\\nIk: \"Zie je, niemand geeft om die joden!\" #JSW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:16 +0000", "from_user": "_PRETTYfaced", "from_user_id": 358859101, "from_user_id_str": "358859101", "from_user_name": "December 21st . . .", "geo": null, "id": 148830021140758530, "id_str": "148830021140758528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702552838/8uQ1PM0W_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702552838/8uQ1PM0W_normal", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "ok fareal fareal whn i gt bck frm gttin my shorty ima clown on twitter lhfh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:11 +0000", "from_user": "SHES_4REAL", "from_user_id": 226098763, "from_user_id_str": "226098763", "from_user_name": "Jasmin Lopez", "geo": null, "id": 148830000802562050, "id_str": "148830000802562048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699755301/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699755301/image_normal.jpg", "source": "<a href="http://tweetlogix.com" rel="nofollow">Tweetlogix</a>", "text": "My nurse is a clown lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:11 +0000", "from_user": "AshIsAmazin", "from_user_id": 31473438, "from_user_id_str": "31473438", "from_user_name": "Ashley ", "geo": null, "id": 148829998541832200, "id_str": "148829998541832192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1664402757/AshIsAmazin_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664402757/AshIsAmazin_normal.jpg", "source": "<a href="http://tweetlogix.com" rel="nofollow">Tweetlogix</a>", "text": "Nah you still look like a clown ctfuuu RT @Escalade15: @AshIsAmazin @ me tho", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:06 +0000", "from_user": "jessicamor8697", "from_user_id": 236948872, "from_user_id_str": "236948872", "from_user_name": "Jessica ", "geo": null, "id": 148829976978915330, "id_str": "148829976978915328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1213065157/173511_100001970823370_1343897_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1213065157/173511_100001970823370_1343897_q_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Christmas Stories (Morris' Disappearing Bag/The Clown of God/The Little Drummer Boy/The Twelve Days of Christmas... http://t.co/6N6nVyX5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:05 +0000", "from_user": "LoveQuietly", "from_user_id": 378893038, "from_user_id_str": "378893038", "from_user_name": "Teenagers. \\u2714", "geo": null, "id": 148829975506718720, "id_str": "148829975506718721", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702508531/tumblr_lvsorawBdq1qgaex6o1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702508531/tumblr_lvsorawBdq1qgaex6o1_500_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Now I'm that bitch, and you're just a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:01 +0000", "from_user": "katieehalliday", "from_user_id": 361853783, "from_user_id_str": "361853783", "from_user_name": "Katie Halliday", "geo": null, "id": 148829958561742850, "id_str": "148829958561742848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702564519/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702564519/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "your sitting criticising people yet you look like a clown #shutthefuckup", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:01 +0000", "from_user": "Esh_SexyAsEver", "from_user_id": 247788214, "from_user_id_str": "247788214", "from_user_name": "Esh \\uE418", "geo": null, "id": 148829956200337400, "id_str": "148829956200337408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664164165/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664164165/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @bEAUTiFULGENUiS: Monkey see Monkey Do.. smh #CLOWN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:00 +0000", "from_user": "FiercelyLuvnTee", "from_user_id": 214340365, "from_user_id_str": "214340365", "from_user_name": "Tiffany Diamond", "geo": null, "id": 148829952383528960, "id_str": "148829952383528960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1642346424/Tiff_part_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642346424/Tiff_part_1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "LMAO why am I such a clown so early in the morning?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:56 +0000", "from_user": "AyoolaTj", "from_user_id": 53127318, "from_user_id_str": "53127318", "from_user_name": "Tunji", "geo": null, "id": 148829936688443400, "id_str": "148829936688443392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702564831/giveafuck_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702564831/giveafuck_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @Lucien911: This Clown Says It All. I'm 'bout Whatever!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:53 +0000", "from_user": "xkusvanRenee", "from_user_id": 286836373, "from_user_id_str": "286836373", "from_user_name": "Ren\\u00E9e van Lankveld", "geo": null, "id": 148829922138394620, "id_str": "148829922138394624", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1660360127/ikhouvanjou_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660360127/ikhouvanjou_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @JongerenSwag_: Ik: \"Ik word de nieuwe hitler, ik vermoord alle joden en 1 clown\"\\nHij: \"waarom een clown\"\\nIk: \"Zie je, niemand geeft om die joden!\" #JSW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:46 +0000", "from_user": "HeartbreakSpook", "from_user_id": 320332314, "from_user_id_str": "320332314", "from_user_name": "T. Burg", "geo": null, "id": 148829892388192260, "id_str": "148829892388192256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688316000/HeartbreakSpook_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688316000/HeartbreakSpook_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "I get that a lot. No face paint, just straight clown shit!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:43 +0000", "from_user": "1stLady_Ki", "from_user_id": 240987706, "from_user_id_str": "240987706", "from_user_name": "Kiki ", "geo": null, "id": 148829879293587460, "id_str": "148829879293587456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1690396476/455081971_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690396476/455081971_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Man, Jonathan be makin my day LOL!!! He stay makin me laugh... #Clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:37 +0000", "from_user": "kkkleinkauf", "from_user_id": 53495554, "from_user_id_str": "53495554", "from_user_name": "karen kleinkauf", "geo": null, "id": 148829857009238000, "id_str": "148829857009238018", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701091827/Foto0256_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701091827/Foto0256_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I look like a clown?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:36 +0000", "from_user": "VivalaCasado", "from_user_id": 433823597, "from_user_id_str": "433823597", "from_user_name": "martaja jackson", "geo": null, "id": 148829852710080500, "id_str": "148829852710080512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1686157509/2011-06-05_19.21.10_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686157509/2011-06-05_19.21.10_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Quanys a CLOWN lol off my tl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:35 +0000", "from_user": "kusmarlies_", "from_user_id": 142666217, "from_user_id_str": "142666217", "from_user_name": "'marliess.", "geo": null, "id": 148829848016650240, "id_str": "148829848016650240", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694800641/Schermafbeelding_2011-12-15_om_16.33.45_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694800641/Schermafbeelding_2011-12-15_om_16.33.45_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @JongerenSwag_: Ik: \"Ik word de nieuwe hitler, ik vermoord alle joden en 1 clown\"\\nHij: \"waarom een clown\"\\nIk: \"Zie je, niemand geeft om die joden!\" #JSW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:35 +0000", "from_user": "SB_9AllDay", "from_user_id": 79047828, "from_user_id_str": "79047828", "from_user_name": "Sebastian Bonilla\\u00AE", "geo": null, "id": 148829845902737400, "id_str": "148829845902737408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700493095/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700493095/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT\\u201C@whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:34 +0000", "from_user": "ola_frost", "from_user_id": 215974612, "from_user_id_str": "215974612", "from_user_name": "frost", "geo": null, "id": 148829842383699970, "id_str": "148829842383699968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1522369103/208334_1947935304989_1440757370_2204671_5142902_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1522369103/208334_1947935304989_1440757370_2204671_5142902_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@swagymolly ok u dnt clown or play games so can we get down to business", "to_user": "swagymolly", "to_user_id": 157749487, "to_user_id_str": "157749487", "to_user_name": "Omolara Adeosun"}, +{"created_at": "Mon, 19 Dec 2011 18:19:32 +0000", "from_user": "Ms_Fancy_Hunn", "from_user_id": 348653499, "from_user_id_str": "348653499", "from_user_name": "Angie Ang", "geo": null, "id": 148829833433059330, "id_str": "148829833433059328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700412271/IMAG0499_14_2011-12-14_21-27-21_711_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700412271/IMAG0499_14_2011-12-14_21-27-21_711_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Clown ass people...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:31 +0000", "from_user": "Chou22", "from_user_id": 148448864, "from_user_id_str": "148448864", "from_user_name": "ChouWiz69", "geo": null, "id": 148829831289778180, "id_str": "148829831289778176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1577267333/mia5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1577267333/mia5_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@MR_CHEACHEAA: I'm only happy with myself when I belong to alot of women...or when dey all belong to me #IMA #MALE #WHORE\"lol u a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:30 +0000", "from_user": "MikeOMG360", "from_user_id": 217982502, "from_user_id_str": "217982502", "from_user_name": "Michael Beckford", "geo": null, "id": 148829828668334080, "id_str": "148829828668334081", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680053395/165626_483933327969_781992969_5715194_6948797_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680053395/165626_483933327969_781992969_5715194_6948797_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@rashida876 naaa u can't clown me even if u worked at the carnival", "to_user": "rashida876", "to_user_id": 340390563, "to_user_id_str": "340390563", "to_user_name": "Rashida Mitchell", "in_reply_to_status_id": 148829381966577660, "in_reply_to_status_id_str": "148829381966577665"}, +{"created_at": "Mon, 19 Dec 2011 18:19:18 +0000", "from_user": "Gazaauta", "from_user_id": 193867392, "from_user_id_str": "193867392", "from_user_name": "Gaza Auta", "geo": null, "id": 148829775388090370, "id_str": "148829775388090368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1649781671/proud_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649781671/proud_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @ekekeee: RT @22afro: An endorsement from a free market robot like Christine Lagarde now makes on a genius. Our president is a clown made of candy.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:09 +0000", "from_user": "jessfoster10", "from_user_id": 241977790, "from_user_id_str": "241977790", "from_user_name": "Jessica Foster", "geo": null, "id": 148829738893459460, "id_str": "148829738893459457", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1625528234/Photo_00005_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1625528234/Photo_00005_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@BrennaGardner omg on my stroll to the library today I saw Sheridan with her face painted like a clown and a wig. I was shocked.", "to_user": "BrennaGardner", "to_user_id": 182887967, "to_user_id_str": "182887967", "to_user_name": "Brenna Gardner"}, +{"created_at": "Mon, 19 Dec 2011 18:19:06 +0000", "from_user": "_xRuuby", "from_user_id": 321960407, "from_user_id_str": "321960407", "from_user_name": "Ruby", "geo": null, "id": 148829727392669700, "id_str": "148829727392669696", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691076943/hoi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691076943/hoi_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @JongerenSwag_: Ik: \"Ik word de nieuwe hitler, ik vermoord alle joden en 1 clown\"\\nHij: \"waarom een clown\"\\nIk: \"Zie je, niemand geeft om die joden!\" #JSW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:58 +0000", "from_user": "purpleperry", "from_user_id": 142611931, "from_user_id_str": "142611931", "from_user_name": " Princess Adebukola", "geo": null, "id": 148829694589022200, "id_str": "148829694589022208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690204343/331398964_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690204343/331398964_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Lil bro is jst a clown...Lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:58 +0000", "from_user": "BrainSucksx", "from_user_id": 236072037, "from_user_id_str": "236072037", "from_user_name": "They Call Me Eva.\\u2665", "geo": null, "id": 148829693603364860, "id_str": "148829693603364865", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670029571/1305968339_5_zGSy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670029571/1305968339_5_zGSy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @JongerenSwag_: Ik: \"Ik word de nieuwe hitler, ik vermoord alle joden en 1 clown\"\\nHij: \"waarom een clown\"\\nIk: \"Zie je, niemand geeft om die joden!\" #JSW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:56 +0000", "from_user": "yasmine_surovec", "from_user_id": 158074932, "from_user_id_str": "158074932", "from_user_name": "Cat Vs Human", "geo": null, "id": 148829682907873280, "id_str": "148829682907873280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1448912482/n757730388_1462007_2562_09-56-27_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1448912482/n757730388_1462007_2562_09-56-27_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Come to \"Cat vs Human Event: Literary Clown Foolery 2012 @ Booksmith, in SF\" Friday, January 13, 2012 from 8:00 pm... http://t.co/EsT0dC9I", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:55 +0000", "from_user": "jordan_halpern", "from_user_id": 18739057, "from_user_id_str": "18739057", "from_user_name": "Jordan Halpern ", "geo": null, "id": 148829681318248450, "id_str": "148829681318248450", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1538151300/326394520_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538151300/326394520_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TimbzNHoodCheck: #WHATHAPPENED2 keeping your mouth shut? Why you telling these clown niggas and cops peoples names?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:54 +0000", "from_user": "Lucien911", "from_user_id": 71608025, "from_user_id_str": "71608025", "from_user_name": "Ifon Francis", "geo": null, "id": 148829674754150400, "id_str": "148829674754150400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693426128/IDC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693426128/IDC_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "This Clown Says It All. I'm 'bout Whatever!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:46 +0000", "from_user": "iMA__BAWSE", "from_user_id": 36569387, "from_user_id_str": "36569387", "from_user_name": "Antisocial", "geo": null, "id": 148829644148322300, "id_str": "148829644148322306", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693874377/photo-2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693874377/photo-2_normal.JPG", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Damn @KoolAzzRayBans goin in on females & make up...i think im a clown according to these tweets", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:45 +0000", "from_user": "sin2LookDisGood", "from_user_id": 189983669, "from_user_id_str": "189983669", "from_user_name": "Jerricka ", "geo": null, "id": 148829636795703300, "id_str": "148829636795703297", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690358908/m1P4WC9i_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690358908/m1P4WC9i_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Now that girl knew them kids wasn't his lmbo #Clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:44 +0000", "from_user": "SecretsOfaBOSS", "from_user_id": 127628764, "from_user_id_str": "127628764", "from_user_name": "Tone Boneee.", "geo": null, "id": 148829634522394620, "id_str": "148829634522394625", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701630520/111113-233547_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701630520/111113-233547_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Niggas Be Trippin Like Clown Shoes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:41 +0000", "from_user": "IAmNiaCherel", "from_user_id": 343627036, "from_user_id_str": "343627036", "from_user_name": "Jonia Rolle", "geo": null, "id": 148829621578764300, "id_str": "148829621578764289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1653242528/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653242528/image_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "I was too artsy known to be a clown - @KidCudi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:41 +0000", "from_user": "Radwanjqg", "from_user_id": 395403180, "from_user_id_str": "395403180", "from_user_name": "Tracey Radwan", "geo": null, "id": 148829621226446850, "id_str": "148829621226446848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1599630027/MFC-1069_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599630027/MFC-1069_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "JACK IN THE BOX #3 CLOWN-AIRBRUSH STENCIL-TEMPLATE-ART: These convenient and easy to use layered stencils will h... http://t.co/5y33YNlj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:36 +0000", "from_user": "CapricornPretty", "from_user_id": 37378740, "from_user_id_str": "37378740", "from_user_name": "PrettyGirl", "geo": null, "id": 148829600712110080, "id_str": "148829600712110082", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689395074/CapricornPretty_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689395074/CapricornPretty_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@KissesFrmYan he a clown yo smh like wtf for and i hope so too", "to_user": "KissesFrmYan", "to_user_id": 156748654, "to_user_id_str": "156748654", "to_user_name": "Y. Buise", "in_reply_to_status_id": 148829364467937280, "in_reply_to_status_id_str": "148829364467937280"}, +{"created_at": "Mon, 19 Dec 2011 18:18:31 +0000", "from_user": "mamafulton", "from_user_id": 13669882, "from_user_id_str": "13669882", "from_user_name": "mamafulton", "geo": null, "id": 148829580403286000, "id_str": "148829580403286016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693514119/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693514119/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@MrWordsWorth: If you build a snowman and can only imagine him as a parson or circus clown, you have a very sad imagination.\\u201D \\n\\nFF this man", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:29 +0000", "from_user": "KatyTheHamster", "from_user_id": 51118237, "from_user_id_str": "51118237", "from_user_name": "Aslan. ", "geo": null, "id": 148829570064326660, "id_str": "148829570064326657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1665715941/SAM_2278_picnik_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665715941/SAM_2278_picnik_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "The pepsi max advert scares me cause of the clown..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:20 +0000", "from_user": "SMD_CDB", "from_user_id": 120949497, "from_user_id_str": "120949497", "from_user_name": "sean dallas", "geo": null, "id": 148829533221560320, "id_str": "148829533221560320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1678307444/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678307444/image_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "@_IsItInYet Smh clown", "to_user": "_IsItInYet", "to_user_id": 226428487, "to_user_id_str": "226428487", "to_user_name": "Jarrett Hardy", "in_reply_to_status_id": 148828741479563260, "in_reply_to_status_id_str": "148828741479563264"}, +{"created_at": "Mon, 19 Dec 2011 18:18:17 +0000", "from_user": "wesaythetruth", "from_user_id": 390632378, "from_user_id_str": "390632378", "from_user_name": "We say the truth ", "geo": null, "id": 148829522345721860, "id_str": "148829522345721857", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1587686337/tumblr_lpivviam9T1qjj20po1_500_large_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587686337/tumblr_lpivviam9T1qjj20po1_500_large_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @JongerenSwag_: Ik: \"Ik word de nieuwe hitler, ik vermoord alle joden en 1 clown\"\\nHij: \"waarom een clown\"\\nIk: \"Zie je, niemand geeft om die joden!\" #JSW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:14 +0000", "from_user": "P4ulWatt", "from_user_id": 288216275, "from_user_id_str": "288216275", "from_user_name": "Paul Watt", "geo": null, "id": 148829508269637630, "id_str": "148829508269637632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1602931431/297784_10150417946284434_630124433_10070315_598996455_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1602931431/297784_10150417946284434_630124433_10070315_598996455_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Lol at my dog trying to get the flat ice out of mcdonalds into her mouth.. Sliding it around the kitchen floor like an absolute clown.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:45 +0000", "from_user": "MoeTown_", "from_user_id": 153989759, "from_user_id_str": "153989759", "from_user_name": "Naughty By Nature\\u2728", "geo": null, "id": 148829387146534900, "id_str": "148829387146534913", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1652967481/IMG_1066_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652967481/IMG_1066_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Listening to 2 chainz clown ass.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:44 +0000", "from_user": "FATabulouzmissy", "from_user_id": 46764985, "from_user_id_str": "46764985", "from_user_name": "Missy C. Brown", "geo": null, "id": 148829380204965900, "id_str": "148829380204965890", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1437504046/misy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1437504046/misy_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I just love this clown..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:43 +0000", "from_user": "CallMeBadaxx", "from_user_id": 87813237, "from_user_id_str": "87813237", "from_user_name": "SaluteMeBitches(:", "geo": null, "id": 148829378023919600, "id_str": "148829378023919616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675138545/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675138545/image_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "muthafuckas tried to clown me on facebook yesterday lol thats really funny . hoe doe ? yall bitchesjust wanna be me wtf i do is my business", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:38 +0000", "from_user": "_twiggahontas", "from_user_id": 172617109, "from_user_id_str": "172617109", "from_user_name": "\\uE32ELauren C\\uE32E", "geo": null, "id": 148829355873804300, "id_str": "148829355873804289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668632073/_twiggahontas_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668632073/_twiggahontas_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "i swear mark &+ crack clown they ass off ; im toooo weak", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:37 +0000", "from_user": "dev_dev24", "from_user_id": 176713155, "from_user_id_str": "176713155", "from_user_name": "Devin Sosa", "geo": null, "id": 148829353835372540, "id_str": "148829353835372544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1675017741/Dev_dev_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675017741/Dev_dev_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Lol I aint kno ppl still pulled pranks lol this bitch pulled 1 lastnite lol fuckn clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:30 +0000", "from_user": "Little_Lollypop", "from_user_id": 242824595, "from_user_id_str": "242824595", "from_user_name": "weil.wege.Liebe", "geo": null, "id": 148829324223578100, "id_str": "148829324223578112", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696352468/colorful-balloons_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696352468/colorful-balloons_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"So ist das Leben\" , sagte der Clown und malte sich mit Tr\\u00E4nen in den Augen, ein strahlendes L\\u00E4cheln ins Gesicht.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:28 +0000", "from_user": "the_2_is_Silent", "from_user_id": 24682504, "from_user_id_str": "24682504", "from_user_name": "Maurice A. James II", "geo": null, "id": 148829315197452300, "id_str": "148829315197452290", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699156753/8ACE294B-7429-4A73-9A51-D893783F64D1_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699156753/8ACE294B-7429-4A73-9A51-D893783F64D1_normal", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:24 +0000", "from_user": "stains", "from_user_id": 14211420, "from_user_id_str": "14211420", "from_user_name": "STAIN", "geo": null, "id": 148829296482467840, "id_str": "148829296482467840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/787112036/img2010-2-30-19-18-29-35_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/787112036/img2010-2-30-19-18-29-35_normal.png", "source": "<a href="http://pages.ebay.com/mobile/iphone.html" rel="nofollow">eBay Mobile for iPhone</a>", "text": "Banks. These clowns will help our neighbors!\\nhttp://t.co/7mStACnC #ebaymobile", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:22 +0000", "from_user": "0hMy_Riahh", "from_user_id": 286446140, "from_user_id_str": "286446140", "from_user_name": "MariahMckelvey\\u2661\\uE326\\uE303\\uE127\\uE011", "geo": null, "id": 148829290341998600, "id_str": "148829290341998592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1649101011/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649101011/image_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"@whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:12 +0000", "from_user": "shortyrocx3", "from_user_id": 368000054, "from_user_id_str": "368000054", "from_user_name": "samantha", "geo": null, "id": 148829247052587000, "id_str": "148829247052587008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701583165/samiam_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701583165/samiam_normal.jpg", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "http://t.co/oXbOmgw2 here's my explanation to why I am a clown :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:10 +0000", "from_user": "Koopplein013", "from_user_id": 292974168, "from_user_id_str": "292974168", "from_user_name": "Koopplein Tilburg", "geo": null, "id": 148829237758005250, "id_str": "148829237758005248", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1605979191/2043e7cf86edbfbb487f24d3755bb4b0_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1605979191/2043e7cf86edbfbb487f24d3755bb4b0_normal.jpeg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Muziekdoos Clown http://t.co/v5VG8E6N", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:02 +0000", "from_user": "MrWordsWorth", "from_user_id": 16313480, "from_user_id_str": "16313480", "from_user_name": "Mark Campbell", "geo": null, "id": 148829207542235140, "id_str": "148829207542235136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1659597546/hohoho_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659597546/hohoho_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "If you build a snowman and can only imagine him as a parson or circus clown, you have a very sad imagination.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:56 +0000", "from_user": "RyanWhin", "from_user_id": 253285978, "from_user_id_str": "253285978", "from_user_name": "Ryan Whinery", "geo": null, "id": 148829180119879680, "id_str": "148829180119879681", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546157757/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546157757/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:53 +0000", "from_user": "CallMeUnclDaddy", "from_user_id": 320556311, "from_user_id_str": "320556311", "from_user_name": "Cal Trappin", "geo": null, "id": 148829169357299700, "id_str": "148829169357299713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695819822/CallMeUnclDaddy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695819822/CallMeUnclDaddy_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "icnt do factory imma big boi..n idwanna be in a low car I'm 6'1 step out lookin like a clown #NoSir", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:42 +0000", "from_user": "houseofwong", "from_user_id": 78151676, "from_user_id_str": "78151676", "from_user_name": "k@t Meister", "geo": null, "id": 148829122792136700, "id_str": "148829122792136704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1519257302/oakland_street_sign_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1519257302/oakland_street_sign_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@FrankieQuinones i got \"class clown\" in 9th grade =|", "to_user": "FrankieQuinones", "to_user_id": 69383889, "to_user_id_str": "69383889", "to_user_name": "Frankie Quinones", "in_reply_to_status_id": 148619052301041660, "in_reply_to_status_id_str": "148619052301041664"}, +{"created_at": "Mon, 19 Dec 2011 18:16:37 +0000", "from_user": "KidConfidence1", "from_user_id": 171726692, "from_user_id_str": "171726692", "from_user_name": "Josh Simmons", "geo": null, "id": 148829101954842620, "id_str": "148829101954842624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1651651853/Photo_on_11-20-11_at_9.41_PM__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651651853/Photo_on_11-20-11_at_9.41_PM__2_normal.jpg", "source": "<a href="http://www.handmark.com" rel="nofollow">TweetCaster for iOS</a>", "text": "Texting my Bestfriend and she is a straight up clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:29 +0000", "from_user": "ToneVeezy", "from_user_id": 147345692, "from_user_id_str": "147345692", "from_user_name": "Tony Valdez ", "geo": null, "id": 148829067565731840, "id_str": "148829067565731841", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693570162/FTkvTVOR_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693570162/FTkvTVOR_normal", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:28 +0000", "from_user": "TRebel0", "from_user_id": 314113533, "from_user_id_str": "314113533", "from_user_name": "Tiago Rebelo", "geo": null, "id": 148829062335447040, "id_str": "148829062335447040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1600007440/kw74Vgen_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600007440/kw74Vgen_normal", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:22 +0000", "from_user": "CaptivatingNews", "from_user_id": 292374563, "from_user_id_str": "292374563", "from_user_name": "Rich Gowran", "geo": null, "id": 148829039262564350, "id_str": "148829039262564352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695773456/CaptivatingNewsDetroit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695773456/CaptivatingNewsDetroit_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@mamaofthreebrat The only 2 GOP candidates that don't seem as clown-like are Paul & Huntsman. The 2 that will never make it. Thank goodness!", "to_user": "mamaofthreebrat", "to_user_id": 329066686, "to_user_id_str": "329066686", "to_user_name": "fae", "in_reply_to_status_id": 148827961188040700, "in_reply_to_status_id_str": "148827961188040704"}, +{"created_at": "Mon, 19 Dec 2011 18:16:16 +0000", "from_user": "lenaatruong", "from_user_id": 135029695, "from_user_id_str": "135029695", "from_user_name": "\\u2113\\u1D49\\u1DB0\\u1D43 tr\\u1D58\\u1D52\\u1DB0\\u1D4D ", "geo": null, "id": 148829013262090240, "id_str": "148829013262090241", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1676642491/peu_20111205_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676642491/peu_20111205_3_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@JizzL_ LOOOL oh you clown #ilaughed :$", "to_user": "JizzL_", "to_user_id": 274699772, "to_user_id_str": "274699772", "to_user_name": "Giselle Scott", "in_reply_to_status_id": 148822649022332930, "in_reply_to_status_id_str": "148822649022332928"}, +{"created_at": "Mon, 19 Dec 2011 18:16:15 +0000", "from_user": "LONGER_LIST", "from_user_id": 158232916, "from_user_id_str": "158232916", "from_user_name": "GAGGGonmee! : )", "geo": null, "id": 148829009344602100, "id_str": "148829009344602112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1437462971/da_wiz_stage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1437462971/da_wiz_stage_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "some of these girls be puttin on make up and start looking like a clown .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:14 +0000", "from_user": "erikarodriguezz", "from_user_id": 192977471, "from_user_id_str": "192977471", "from_user_name": "Erika Rodriguez", "geo": null, "id": 148829005989154800, "id_str": "148829005989154816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1127709395/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1127709395/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "So @deez_nuts03 and I went to the store with Hope. She would not take off that stupid clown wig.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:10 +0000", "from_user": "PurpMonroe", "from_user_id": 192435528, "from_user_id_str": "192435528", "from_user_name": "Purp Monroe aka Cece", "geo": null, "id": 148828987332886530, "id_str": "148828987332886528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690528608/PurpMonroe_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690528608/PurpMonroe_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Who tf sed dat fuckery nd dnt say stupidy u call evey1 dat RT @iTsMissBritney: Umm who is this n this fuckin clown says \"ur husband\" gtfoh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:09 +0000", "from_user": "xChinky_", "from_user_id": 30870296, "from_user_id_str": "30870296", "from_user_name": "Yvonne Harris ", "geo": null, "id": 148828985156050940, "id_str": "148828985156050945", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1674782126/Snapshot_20111003_26_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674782126/Snapshot_20111003_26_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @_TheOtherKevin: \"Silly Ass Clown\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:06 +0000", "from_user": "buddaniels", "from_user_id": 378621150, "from_user_id_str": "378621150", "from_user_name": "GodBlessTheChild", "geo": null, "id": 148828972266958850, "id_str": "148828972266958848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692066324/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692066324/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@DolyLoly lmaooo you clown \\uD83C\\uDF85", "to_user": "DolyLoly", "to_user_id": 158941945, "to_user_id_str": "158941945", "to_user_name": "Loreal Pirela", "in_reply_to_status_id": 148828629541986300, "in_reply_to_status_id_str": "148828629541986304"}, +{"created_at": "Mon, 19 Dec 2011 18:16:05 +0000", "from_user": "SNORKINGTON", "from_user_id": 353856995, "from_user_id_str": "353856995", "from_user_name": "Natasha Payano", "geo": null, "id": 148828968018133000, "id_str": "148828968018132992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1635377775/329665293_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635377775/329665293_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@CornerStoreCapo word! I love picking up unknown calls, alwayssssssss some clown on the other side lol", "to_user": "CornerStoreCapo", "to_user_id": 280272740, "to_user_id_str": "280272740", "to_user_name": "Bodega The God", "in_reply_to_status_id": 148826698534764540, "in_reply_to_status_id_str": "148826698534764545"}, +{"created_at": "Mon, 19 Dec 2011 18:15:58 +0000", "from_user": "Meg_Nifi_cent", "from_user_id": 71413377, "from_user_id_str": "71413377", "from_user_name": "Poison ", "geo": null, "id": 148828936837677060, "id_str": "148828936837677057", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701247425/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701247425/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Cammy_4CHAINZZZ lol u a clown !!! @ em tho !", "to_user": "Cammy_4CHAINZZZ", "to_user_id": 144484137, "to_user_id_str": "144484137", "to_user_name": "Young Thug Nigga", "in_reply_to_status_id": 148828660571447300, "in_reply_to_status_id_str": "148828660571447297"}, +{"created_at": "Mon, 19 Dec 2011 18:15:56 +0000", "from_user": "SmoothDudeLew", "from_user_id": 221946667, "from_user_id_str": "221946667", "from_user_name": "Lewis F. Finney", "geo": null, "id": 148828927555665920, "id_str": "148828927555665920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691891872/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691891872/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@DearestJasmin you a clown.", "to_user": "DearestJasmin", "to_user_id": 352736011, "to_user_id_str": "352736011", "to_user_name": "Jasmin Thompson", "in_reply_to_status_id": 148828590702739460, "in_reply_to_status_id_str": "148828590702739456"}, +{"created_at": "Mon, 19 Dec 2011 18:15:53 +0000", "from_user": "mydarkfantasy_", "from_user_id": 236105228, "from_user_id_str": "236105228", "from_user_name": "Tori Baby", "geo": null, "id": 148828916734361600, "id_str": "148828916734361600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699230334/111215-213620_-_Copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699230334/111215-213620_-_Copy_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "Some of y'all are some clown ass niggas .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:53 +0000", "from_user": "McPherson__", "from_user_id": 359786823, "from_user_id_str": "359786823", "from_user_name": "David McPherson", "geo": null, "id": 148828915228614660, "id_str": "148828915228614658", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1649247669/308134_2150343400244_1296144772_31819802_2093923055_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649247669/308134_2150343400244_1296144772_31819802_2093923055_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Kool-aid no sugar, toast no jelly, chips no dip, xbox no controller, guys no girls, love no hate, calvin no chipmunks, clown no smile", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:51 +0000", "from_user": "henry_gilbert", "from_user_id": 149028448, "from_user_id_str": "149028448", "from_user_name": "Henry Gilbert", "geo": null, "id": 148828908479987700, "id_str": "148828908479987712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1624204156/cat4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624204156/cat4_normal.jpg", "source": "<a href="http://favstar.fm" rel="nofollow">Favstar.FM</a>", "text": "RT @claytonhaynes: I'd like to kick the ass of that rude clown from Night At The Apolo.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:49 +0000", "from_user": "AndreaCardentey", "from_user_id": 266925283, "from_user_id_str": "266925283", "from_user_name": "Andrea Cardentey", "geo": null, "id": 148828899965542400, "id_str": "148828899965542401", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664867043/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664867043/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#IWasThatKid that was the class clown lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:46 +0000", "from_user": "Svinto89", "from_user_id": 173577192, "from_user_id_str": "173577192", "from_user_name": "Philip Andersson", "geo": null, "id": 148828885633605630, "id_str": "148828885633605632", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1399065842/4-bildsserie_2011-05-25_kl._03.21__3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1399065842/4-bildsserie_2011-05-25_kl._03.21__3_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@filipborgman Jadu, det \\u00E5terst\\u00E5r att se! Madrassen agerar s\\u00E4kerligen clown.", "to_user": "filipborgman", "to_user_id": 278092103, "to_user_id_str": "278092103", "to_user_name": "Filip Borgman", "in_reply_to_status_id": 148826454132658180, "in_reply_to_status_id_str": "148826454132658176"}, +{"created_at": "Mon, 19 Dec 2011 18:15:45 +0000", "from_user": "ceriequeenb", "from_user_id": 242545540, "from_user_id_str": "242545540", "from_user_name": "toobadforu hanson", "geo": null, "id": 148828881544151040, "id_str": "148828881544151040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1689209016/IMG00645-20111203-1300_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689209016/IMG00645-20111203-1300_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Like wth am not obligated to this clown yet he always ave probs with ma stuff...like get ova urself....jump off ur high horse...its reality", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:15:45 +0000", "from_user": "ceriequeenb", "from_user_id": 242545540, "from_user_id_str": "242545540", "from_user_name": "toobadforu hanson", "geo": null, "id": 148828881544151040, "id_str": "148828881544151040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1689209016/IMG00645-20111203-1300_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689209016/IMG00645-20111203-1300_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Like wth am not obligated to this clown yet he always ave probs with ma stuff...like get ova urself....jump off ur high horse...its reality", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:43 +0000", "from_user": "DaKidAProblem", "from_user_id": 394165169, "from_user_id_str": "394165169", "from_user_name": "I_Keep_It_100%", "geo": null, "id": 148828874355122180, "id_str": "148828874355122176", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702487808/OpTx1HI2_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702487808/OpTx1HI2_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@NiKKiG_Da_OhGee clown", "to_user": "NiKKiG_Da_OhGee", "to_user_id": 26778414, "to_user_id_str": "26778414", "to_user_name": "Kiah May", "in_reply_to_status_id": 148827767180501000, "in_reply_to_status_id_str": "148827767180500992"}, +{"created_at": "Mon, 19 Dec 2011 18:15:32 +0000", "from_user": "Gelycosta", "from_user_id": 244597295, "from_user_id_str": "244597295", "from_user_name": "Gely", "geo": null, "id": 148828828368773120, "id_str": "148828828368773120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685089792/1441313410_6_wv0G_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685089792/1441313410_6_wv0G_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "See this heart Wont settle down Like a child running scared from a clown.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:29 +0000", "from_user": "BainnUpdates", "from_user_id": 91415682, "from_user_id_str": "91415682", "from_user_name": "Bainn", "geo": null, "id": 148828814800191500, "id_str": "148828814800191488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1098328710/21555_334010828624_702823624_4872349_6852206_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1098328710/21555_334010828624_702823624_4872349_6852206_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@JenSchwalbach On Plus one you had more control over the cuddly clown prince of comedy, well, marginally more....", "to_user": "JenSchwalbach", "to_user_id": 72457270, "to_user_id_str": "72457270", "to_user_name": "Jennifer Schwalbach"}, +{"created_at": "Mon, 19 Dec 2011 18:15:28 +0000", "from_user": "HeavenSent13", "from_user_id": 248960187, "from_user_id_str": "248960187", "from_user_name": "LaMiyah D. Cromartie", "geo": null, "id": 148828811981623300, "id_str": "148828811981623298", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695699532/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695699532/profile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @bEAUTiFULGENUiS: Monkey see Monkey Do.. smh #CLOWN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:28 +0000", "from_user": "YesusBIC", "from_user_id": 32598066, "from_user_id_str": "32598066", "from_user_name": "BIC ALL DAY. ", "geo": null, "id": 148828810236805120, "id_str": "148828810236805121", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1667924769/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667924769/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Frank_Ocean_: You can never make a clown out of yourself for being faithful, unless you're being faithful to a hoe.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:20 +0000", "from_user": "ItsLeahTGC", "from_user_id": 219153865, "from_user_id_str": "219153865", "from_user_name": "Tunechi .", "geo": null, "id": 148828777261170700, "id_str": "148828777261170688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1661216421/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661216421/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @tiiiipppp: the real housewives is a clown ass show . but I watch it . lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:14 +0000", "from_user": "SayBLACK3x_", "from_user_id": 258188567, "from_user_id_str": "258188567", "from_user_name": "Josh Nxgga.", "geo": null, "id": 148828753328472060, "id_str": "148828753328472064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1626669858/287670824_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626669858/287670824_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @SignedWhitLove: -____- RT @SayBLACK3x_: I am not a class clown!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:03 +0000", "from_user": "ForevaEarlGirl", "from_user_id": 217092617, "from_user_id_str": "217092617", "from_user_name": "Chameka Moody", "geo": null, "id": 148828705878323200, "id_str": "148828705878323201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698510584/fbQt724A_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698510584/fbQt724A_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Rey text Earl clown ass", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:03 +0000", "from_user": "KCole1214", "from_user_id": 429420562, "from_user_id_str": "429420562", "from_user_name": "Keith Colquitt", "geo": null, "id": 148828705521811460, "id_str": "148828705521811456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676160038/2-80837825-21038-800_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676160038/2-80837825-21038-800_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @whiteboytatted Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:54 +0000", "from_user": "GoYoungOnEm", "from_user_id": 205801849, "from_user_id_str": "205801849", "from_user_name": "D. Young", "geo": null, "id": 148828668830031870, "id_str": "148828668830031873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662390095/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662390095/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "@lil_moma3 Aahhhh...lol...you a clown.", "to_user": "lil_moma3", "to_user_id": 282181408, "to_user_id_str": "282181408", "to_user_name": "Rox\\uE418", "in_reply_to_status_id": 148828404760850430, "in_reply_to_status_id_str": "148828404760850432"}, +{"created_at": "Mon, 19 Dec 2011 18:14:52 +0000", "from_user": "itsme_EP", "from_user_id": 193521989, "from_user_id_str": "193521989", "from_user_name": "Erica", "geo": null, "id": 148828660017807360, "id_str": "148828660017807360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679295852/yeahh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679295852/yeahh_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "Get off your highhorse clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:46 +0000", "from_user": "tripl3staxx08", "from_user_id": 40802844, "from_user_id_str": "40802844", "from_user_name": "Almost famous", "geo": null, "id": 148828633887285250, "id_str": "148828633887285248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695422321/tripl3staxx08_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695422321/tripl3staxx08_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @PRETTYINGA: + 1 RT @tripl3staxx08 I swear I have the most clown ass niggas be salty in my mentions kuz I curved them FOH ain't nobody got time", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:43 +0000", "from_user": "Shakez843", "from_user_id": 25432720, "from_user_id_str": "25432720", "from_user_name": "Reggie", "geo": null, "id": 148828623758032900, "id_str": "148828623758032896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698662421/1318520304461_125762_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698662421/1318520304461_125762_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "somebody get this young man off my TL ~~~> RT @1badvirgo @Shakez843 @Jessika_STAR stop it clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:37 +0000", "from_user": "_withtheselips", "from_user_id": 96797932, "from_user_id_str": "96797932", "from_user_name": "Stullisha", "geo": null, "id": 148828599984721920, "id_str": "148828599984721920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696855750/picplz_2011-12-16_01_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696855750/picplz_2011-12-16_01_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "@JediMasterE at least I don't look like a clown.", "to_user": "JediMasterE", "to_user_id": 93257139, "to_user_id_str": "93257139", "to_user_name": "\\uE32E\\uE11DAgent J \\uE11D\\uE32E", "in_reply_to_status_id": 148828473262227460, "in_reply_to_status_id_str": "148828473262227456"}, +{"created_at": "Mon, 19 Dec 2011 18:14:34 +0000", "from_user": "CoNcEiTeD05", "from_user_id": 224786650, "from_user_id_str": "224786650", "from_user_name": ".:Chas:.", "geo": null, "id": 148828586747494400, "id_str": "148828586747494400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695001233/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695001233/image_normal.jpg", "source": "<a href="http://tweetlogix.com" rel="nofollow">Tweetlogix</a>", "text": "107& park failed contestants wanna clown... Oh ok", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:33 +0000", "from_user": "Jon_Dwyer", "from_user_id": 222845042, "from_user_id_str": "222845042", "from_user_name": "Jon Dwyer", "geo": null, "id": 148828580825141250, "id_str": "148828580825141249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1411981462/IMG_1851-2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1411981462/IMG_1851-2_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@themarknews Raffi should leave hockey to the hockey community; the man is a clown...literally", "to_user": "themarknews", "to_user_id": 20481123, "to_user_id_str": "20481123", "to_user_name": "The Mark News", "in_reply_to_status_id": 148825263575269380, "in_reply_to_status_id_str": "148825263575269376"}, +{"created_at": "Mon, 19 Dec 2011 18:14:32 +0000", "from_user": "SeduceeLeeLeeB", "from_user_id": 267455516, "from_user_id_str": "267455516", "from_user_name": "ShawnLee Lacyy B.", "geo": null, "id": 148828575712284670, "id_str": "148828575712284672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701010234/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701010234/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Fukc that clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:29 +0000", "from_user": "honeyhade", "from_user_id": 347463922, "from_user_id_str": "347463922", "from_user_name": "honey mohamed", "geo": null, "id": 148828565658546180, "id_str": "148828565658546176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695930080/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695930080/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@fadumoppl wallah your a clown", "to_user": "fadumoppl", "to_user_id": 415904695, "to_user_id_str": "415904695", "to_user_name": "fadumoppl", "in_reply_to_status_id": 148689612284506100, "in_reply_to_status_id_str": "148689612284506113"}, +{"created_at": "Mon, 19 Dec 2011 18:14:28 +0000", "from_user": "ShezOVOXO", "from_user_id": 30349028, "from_user_id_str": "30349028", "from_user_name": "\\u2665NENA \\u30C3", "geo": null, "id": 148828559576797200, "id_str": "148828559576797184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699582356/1324154019-picsay_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699582356/1324154019-picsay_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@_TheRealKalEl I heard. lol u a clown... anyway we still got a few days with jay so u good.", "to_user": "_TheRealKalEl", "to_user_id": 369282091, "to_user_id_str": "369282091", "to_user_name": "Carlos Recinos", "in_reply_to_status_id": 148819291259670530, "in_reply_to_status_id_str": "148819291259670529"}, +{"created_at": "Mon, 19 Dec 2011 18:14:18 +0000", "from_user": "PRETTYINGA", "from_user_id": 28444997, "from_user_id_str": "28444997", "from_user_name": "INGS THE MERCILESS", "geo": null, "id": 148828516597764100, "id_str": "148828516597764096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697760030/IMAG0807-1-2-1-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697760030/IMAG0807-1-2-1-1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "+ 1 RT @tripl3staxx08 I swear I have the most clown ass niggas be salty in my mentions kuz I curved them FOH ain't nobody got time", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:15 +0000", "from_user": "Imbadasiwannabe", "from_user_id": 45003921, "from_user_id_str": "45003921", "from_user_name": "ComplextionHENNYSTR8", "geo": null, "id": 148828507278020600, "id_str": "148828507278020609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700229970/409177_311372008884780_100000359497965_1030816_369430871_n__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700229970/409177_311372008884780_100000359497965_1030816_369430871_n__1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Courtier_trev He's trash & he knows it . I really dont even see how he get views because he's not a rapper he's a clown", "to_user": "Courtier_trev", "to_user_id": 83460859, "to_user_id_str": "83460859", "to_user_name": "Julio Camillo", "in_reply_to_status_id": 148828088418054140, "in_reply_to_status_id_str": "148828088418054144"}, +{"created_at": "Mon, 19 Dec 2011 18:14:15 +0000", "from_user": "Bransonsaks", "from_user_id": 180609856, "from_user_id_str": "180609856", "from_user_name": "Larry Kush aka (L3K)", "geo": null, "id": 148828503960326140, "id_str": "148828503960326145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693756219/4erWtTj6_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693756219/4erWtTj6_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "This ninja over here is trying to clown. Oh wow he went there....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:09 +0000", "from_user": "packman_jones96", "from_user_id": 364724384, "from_user_id_str": "364724384", "from_user_name": "davey wonder", "geo": null, "id": 148828480300257280, "id_str": "148828480300257280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1571953254/p9b46fg1_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1571953254/p9b46fg1_normal", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "That's what you call a #clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:06 +0000", "from_user": "sweetQMPea", "from_user_id": 106003901, "from_user_id_str": "106003901", "from_user_name": "*QuInCeLlAs*", "geo": null, "id": 148828467625082880, "id_str": "148828467625082880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702017470/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702017470/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@_WatchMyDONKK cuz if we did then there wouldn't b room to clown and entertain", "to_user": "_WatchMyDONKK", "to_user_id": 55137097, "to_user_id_str": "55137097", "to_user_name": "La Pania\\u2122", "in_reply_to_status_id": 148828295205617660, "in_reply_to_status_id_str": "148828295205617666"}, +{"created_at": "Mon, 19 Dec 2011 18:14:04 +0000", "from_user": "mparsram", "from_user_id": 71611681, "from_user_id_str": "71611681", "from_user_name": "Mike Parsram", "geo": null, "id": 148828457604878340, "id_str": "148828457604878337", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1639064559/imagejpegd_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639064559/imagejpegd_2_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@xkrisxchaputx helping to keep population control up, one clown at a time.", "to_user": "xkrisxchaputx", "to_user_id": 94383406, "to_user_id_str": "94383406", "to_user_name": "Kris Chaput", "in_reply_to_status_id": 148816306551013380, "in_reply_to_status_id_str": "148816306551013376"}, +{"created_at": "Mon, 19 Dec 2011 18:13:57 +0000", "from_user": "TiffanysLand", "from_user_id": 245669557, "from_user_id_str": "245669557", "from_user_name": "Tiffany Browner", "geo": null, "id": 148828431445008400, "id_str": "148828431445008384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1634342074/TiffanysLand_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634342074/TiffanysLand_normal.jpg", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "RT @sheKiNGjazz: Doing the most... When I know ur a joke #clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:46 +0000", "from_user": "Simplii_Chanel", "from_user_id": 281162656, "from_user_id_str": "281162656", "from_user_name": "Chanel", "geo": null, "id": 148828383470567420, "id_str": "148828383470567424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677534708/profile_image_1323195668289_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677534708/profile_image_1323195668289_normal.jpg", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "RT @sheKiNGjazz: Doing the most... When I know ur a joke #clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:38 +0000", "from_user": "1badvirgo", "from_user_id": 324714329, "from_user_id_str": "324714329", "from_user_name": "who but me", "geo": null, "id": 148828348427149300, "id_str": "148828348427149312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699309681/profile_image_1324175150701_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699309681/profile_image_1324175150701_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "@Shakez843 @Jessika_STAR stop it clown", "to_user": "Shakez843", "to_user_id": 25432720, "to_user_id_str": "25432720", "to_user_name": "Reggie", "in_reply_to_status_id": 148826969889456130, "in_reply_to_status_id_str": "148826969889456128"}, +{"created_at": "Mon, 19 Dec 2011 18:13:36 +0000", "from_user": "TH_Holmes_III", "from_user_id": 27931861, "from_user_id_str": "27931861", "from_user_name": "LL Cool H \\uE10F\\uE03D\\uE324", "geo": null, "id": 148828341733048320, "id_str": "148828341733048320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1634270875/TH_Holmes_III_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634270875/TH_Holmes_III_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@Simply_Beyond show me what word you typed in front of my name then, clown. I'll wait......", "to_user": "Simply_Beyond", "to_user_id": 30959607, "to_user_id_str": "30959607", "to_user_name": "Stacy Bazile \\uE106", "in_reply_to_status_id": 148827817918992400, "in_reply_to_status_id_str": "148827817918992385"}, +{"created_at": "Mon, 19 Dec 2011 18:13:34 +0000", "from_user": "ItsJustMera", "from_user_id": 298191279, "from_user_id_str": "298191279", "from_user_name": "Pocahontas :)", "geo": null, "id": 148828333063409660, "id_str": "148828333063409664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691705021/390850_191366794286820_100002405024381_385310_406350190_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691705021/390850_191366794286820_100002405024381_385310_406350190_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @tiiiipppp: the real housewives is a clown ass show . but I watch it . lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:32 +0000", "from_user": "GIJS0546", "from_user_id": 218799868, "from_user_id_str": "218799868", "from_user_name": "\\u2605 GIJSWIGGER' \\u2605", "geo": null, "id": 148828323391348740, "id_str": "148828323391348736", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1679353648/besadsfadsf_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679353648/besadsfadsf_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@daankeupink0203 Hahaha oke:P mn broer heeft mongol schoenen aan:P zeg maar dat hij clown schoenen aan heeft goed voor zn zelfvertrouwen:P", "to_user": "daankeupink0203", "to_user_id": 159622104, "to_user_id_str": "159622104", "to_user_name": "Daan", "in_reply_to_status_id": 148826955440062460, "in_reply_to_status_id_str": "148826955440062464"}, +{"created_at": "Mon, 19 Dec 2011 18:13:30 +0000", "from_user": "Chardonnaymarz", "from_user_id": 49800156, "from_user_id_str": "49800156", "from_user_name": "michael marcellin", "geo": null, "id": 148828316915339260, "id_str": "148828316915339264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1532206475/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1532206475/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@DanishaAugSept y u tryin to clown me like how u make double cheese n ham sandwiches on a small pieces of bread like some1 asked for dat", "to_user": "DanishaAugSept", "to_user_id": 261476665, "to_user_id_str": "261476665", "to_user_name": "Danisha", "in_reply_to_status_id": 148625110314663940, "in_reply_to_status_id_str": "148625110314663936"}, +{"created_at": "Mon, 19 Dec 2011 18:13:26 +0000", "from_user": "heartbeatdrug", "from_user_id": 144806190, "from_user_id_str": "144806190", "from_user_name": "Ruben", "geo": null, "id": 148828298661724160, "id_str": "148828298661724160", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1160911438/1140084672_5_ktIM_1_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1160911438/1140084672_5_ktIM_1_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Jipvanlith hahah whajoo je lijkt net op bassie van adriaan was ook zo'n clown maar moest er never om lachen ;) stil maar en reageer nietmee", "to_user": "Jipvanlith", "to_user_id": 317262262, "to_user_id_str": "317262262", "to_user_name": "medal zero 1", "in_reply_to_status_id": 148828032482803700, "in_reply_to_status_id_str": "148828032482803713"}, +{"created_at": "Mon, 19 Dec 2011 18:13:25 +0000", "from_user": "TweetnAzzFlucka", "from_user_id": 193158410, "from_user_id_str": "193158410", "from_user_name": "FLUCKA BANKS", "geo": null, "id": 148828297734787070, "id_str": "148828297734787072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693023238/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693023238/me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @bEAUTiFULGENUiS: Monkey see Monkey Do.. smh #CLOWN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:25 +0000", "from_user": "dontkallmerexk", "from_user_id": 312764948, "from_user_id_str": "312764948", "from_user_name": "shawny", "geo": null, "id": 148828297235660800, "id_str": "148828297235660800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701530457/YKn2PWqg_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701530457/YKn2PWqg_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@OGMaJik ohh....lollz you a clown", "to_user": "OGMaJik", "to_user_id": 50571075, "to_user_id_str": "50571075", "to_user_name": "Docta Greyhairs", "in_reply_to_status_id": 148827630093864960, "in_reply_to_status_id_str": "148827630093864960"}, +{"created_at": "Mon, 19 Dec 2011 18:13:23 +0000", "from_user": "IMjusBNreal32", "from_user_id": 44435803, "from_user_id_str": "44435803", "from_user_name": "$howtime", "geo": null, "id": 148828288595406850, "id_str": "148828288595406848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688447927/red_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688447927/red_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "S/O to them lames who ain't doing shit wit they life tryna clown a nigga who on his shit! #GrindTime Niggas be frontin' on twitter!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:21 +0000", "from_user": "kaceykaso", "from_user_id": 6277712, "from_user_id_str": "6277712", "from_user_name": "Kacey Coughlin", "geo": null, "id": 148828280873689100, "id_str": "148828280873689089", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1310961853/eightbit-68fc8022-d8cb-4d65-9775-2334ad75b3b9_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1310961853/eightbit-68fc8022-d8cb-4d65-9775-2334ad75b3b9_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Nothing says \"Supreme Leader\" like...\\n\\u201C@Gizmodo: North Korea dictator/clown dies of \"fatigue caused by train ride\"? Really?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:21 +0000", "from_user": "kerm_town", "from_user_id": 386188817, "from_user_id_str": "386188817", "from_user_name": "karon bryant", "geo": null, "id": 148828279913193470, "id_str": "148828279913193473", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1694090721/1XXIqlUq_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694090721/1XXIqlUq_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@YahPop_DiggzMe clown", "to_user": "YahPop_DiggzMe", "to_user_id": 64626741, "to_user_id_str": "64626741", "to_user_name": "Lizz_GotDemOilz", "in_reply_to_status_id": 148826462085058560, "in_reply_to_status_id_str": "148826462085058561"}, +{"created_at": "Mon, 19 Dec 2011 18:13:20 +0000", "from_user": "Retro_Kid_93", "from_user_id": 333726226, "from_user_id_str": "333726226", "from_user_name": "Ikenna Ikpeama", "geo": null, "id": 148828273349103600, "id_str": "148828273349103616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700973342/gFHd69kI_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700973342/gFHd69kI_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Love_Taharah youre such a clown lol you always got jokes lol", "to_user": "Love_Taharah", "to_user_id": 394436607, "to_user_id_str": "394436607", "to_user_name": "Aaisha", "in_reply_to_status_id": 148827831575646200, "in_reply_to_status_id_str": "148827831575646209"}, +{"created_at": "Mon, 19 Dec 2011 18:13:20 +0000", "from_user": "JoshLloyd231", "from_user_id": 151558358, "from_user_id_str": "151558358", "from_user_name": "Josh Lloyd", "geo": null, "id": 148828273038737400, "id_str": "148828273038737410", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1488931539/folder_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1488931539/folder_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube videofrom @ghostrobo http://t.co/SozJhZ3V RAGE Walkthrough Part 2 HD - GIVEAWAY!! - Clown Hal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:18 +0000", "from_user": "veebanga", "from_user_id": 166043355, "from_user_id_str": "166043355", "from_user_name": "iah", "geo": null, "id": 148828266172657660, "id_str": "148828266172657665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689320226/Photo_661_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689320226/Photo_661_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Mickeelodeon Haha clown", "to_user": "Mickeelodeon", "to_user_id": 144702530, "to_user_id_str": "144702530", "to_user_name": "QUEEN Mmm", "in_reply_to_status_id": 148827050088726530, "in_reply_to_status_id_str": "148827050088726528"}, +{"created_at": "Mon, 19 Dec 2011 18:13:16 +0000", "from_user": "MaZaRati_bOi60", "from_user_id": 428377360, "from_user_id_str": "428377360", "from_user_name": "\\u00A5eLLObOi\\u00A4bLaNCO\\u00A4\\u2122", "geo": null, "id": 148828256433483780, "id_str": "148828256433483776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1694192492/j391P6gA_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694192492/j391P6gA_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@SHEz_A_BaD_1: @MaZaRati_bOi60 hit me clown!!!\"hmu yo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:15 +0000", "from_user": "tripl3staxx08", "from_user_id": 40802844, "from_user_id_str": "40802844", "from_user_name": "Almost famous", "geo": null, "id": 148828255338774530, "id_str": "148828255338774528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695422321/tripl3staxx08_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695422321/tripl3staxx08_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "I swear I have the most clown ass niggas be salty in my mentions kuz I curved them FOH ain't nobody got time", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:13 +0000", "from_user": "JovannaBlanca", "from_user_id": 180203243, "from_user_id_str": "180203243", "from_user_name": "Jovanna Romo", "geo": null, "id": 148828247122133000, "id_str": "148828247122132992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696006880/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696006880/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:11 +0000", "from_user": "sheKiNGjazz", "from_user_id": 323956296, "from_user_id_str": "323956296", "from_user_name": "JazzBeauty C.", "geo": null, "id": 148828237949190140, "id_str": "148828237949190144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1665272642/avatar_normal.JPEG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665272642/avatar_normal.JPEG", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "Doing the most... When I know ur a joke #clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:11 +0000", "from_user": "inclined2design", "from_user_id": 49250066, "from_user_id_str": "49250066", "from_user_name": "Jessenia", "geo": null, "id": 148828237533937660, "id_str": "148828237533937664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1658109339/IMAG0353_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658109339/IMAG0353_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Ness is a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:58 +0000", "from_user": "mashburncwtobn3", "from_user_id": 393374757, "from_user_id_str": "393374757", "from_user_name": "Mashburn St. Croix", "geo": null, "id": 148828184178200580, "id_str": "148828184178200577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1594436515/imagesCAK81KZ2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1594436515/imagesCAK81KZ2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "My mama up at her job clown'n she finna beat some woman ass...LOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:47 +0000", "from_user": "TwoMuch_TwoSee", "from_user_id": 285507665, "from_user_id_str": "285507665", "from_user_name": "Denisha Ni'Cole", "geo": null, "id": 148828138284122100, "id_str": "148828138284122115", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682458329/TwoMuch_TwoSee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682458329/TwoMuch_TwoSee_normal.jpg", "source": "<a href="http://www.nibirutech.com" rel="nofollow">TwitBird</a>", "text": "Why\\uD83D\\uDE33RT @_LarryHoover @TwoMuch_TwoSee I can't wait to see you ima clown on yo ass\\uD83D\\uDE20", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:43 +0000", "from_user": "RachelGetsItAll", "from_user_id": 205501900, "from_user_id_str": "205501900", "from_user_name": "rachel w/ Love \\u2665", "geo": null, "id": 148828118763839500, "id_str": "148828118763839488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700684410/2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700684410/2_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "ahaaa ,clown ! RT\"@itsTaliya_MF: @RachelGetsItAll I know right! there is a defrost button to! #splashhh aha\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:36 +0000", "from_user": "MarkMthw", "from_user_id": 143734591, "from_user_id_str": "143734591", "from_user_name": "Mark Mathew", "geo": null, "id": 148828090154483700, "id_str": "148828090154483713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1678578446/IMG-20111026-00010_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678578446/IMG-20111026-00010_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TW33TMachine: They say your penis is related to shoe size. Well, that makes the fear of being raped by a clown much scarier.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:34 +0000", "from_user": "jean_helmuth", "from_user_id": 320875075, "from_user_id_str": "320875075", "from_user_name": "Jean Helmuth", "geo": null, "id": 148828080968966140, "id_str": "148828080968966144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1665304559/7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665304559/7_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "My t-shirt Kruty clown destroyed http://t.co/TITGntyA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:23 +0000", "from_user": "UHateMsRoyalty", "from_user_id": 25137122, "from_user_id_str": "25137122", "from_user_name": "Ms Carinne Royalty", "geo": null, "id": 148828037419507700, "id_str": "148828037419507712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701434360/331682392_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701434360/331682392_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @D_Bodyguard: @UHateMsRoyalty and ya I read his lil bullshit comments. CLOWN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:21 +0000", "from_user": "LeFrenchTaunter", "from_user_id": 424397642, "from_user_id_str": "424397642", "from_user_name": "French Taunter", "geo": null, "id": 148828027353182200, "id_str": "148828027353182208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664790803/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664790803/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@DixonoDockGreen @sirianblair @office_ninja_ \\nZis clown again? I throw ze v\\u00E2che at you...!", "to_user": "DixonoDockGreen", "to_user_id": 418255107, "to_user_id_str": "418255107", "to_user_name": "George Dixon", "in_reply_to_status_id": 148827209837195260, "in_reply_to_status_id_str": "148827209837195265"}, +{"created_at": "Mon, 19 Dec 2011 18:12:17 +0000", "from_user": "ImeanIts_Meliss", "from_user_id": 389744333, "from_user_id_str": "389744333", "from_user_name": "Melissa Cedano", "geo": null, "id": 148828009934233600, "id_str": "148828009934233600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1656389306/330358595_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656389306/330358595_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@tyrecp Clown! lmao .. But get likee some nice heels I swear shell love em", "to_user": "tyrecp", "to_user_id": 422122814, "to_user_id_str": "422122814", "to_user_name": "tyrec phillips", "in_reply_to_status_id": 148827307803549700, "in_reply_to_status_id_str": "148827307803549696"}, +{"created_at": "Mon, 19 Dec 2011 18:12:16 +0000", "from_user": "KFlickJackson", "from_user_id": 207255821, "from_user_id_str": "207255821", "from_user_name": "Kalomo F-Jackson", "geo": null, "id": 148828004569726980, "id_str": "148828004569726976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1659830734/Kc1MNS0M_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659830734/Kc1MNS0M_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@AYOO_itsReece it sound like a clown car horn !", "to_user": "AYOO_itsReece", "to_user_id": 32475208, "to_user_id_str": "32475208", "to_user_name": "soo exquisite ( :", "in_reply_to_status_id": 148827582505299970, "in_reply_to_status_id_str": "148827582505299968"}, +{"created_at": "Mon, 19 Dec 2011 18:12:13 +0000", "from_user": "andrearuy", "from_user_id": 17138108, "from_user_id_str": "17138108", "from_user_name": "andrearuy", "geo": null, "id": 148827995153502200, "id_str": "148827995153502208", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1510453095/yo-fuerte_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1510453095/yo-fuerte_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Muy bonita entrevista @sapotincolorado :-) \\u00A1Un beso grande de final de a\\u00F1o! http://t.co/EHKUsbdB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:13 +0000", "from_user": "BethanyyyAnne", "from_user_id": 100866961, "from_user_id_str": "100866961", "from_user_name": "Bethany Anne", "geo": null, "id": 148827992712425470, "id_str": "148827992712425472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/605439637/DSCN2067_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/605439637/DSCN2067_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @MalloryGriffith: Just experienced a real clown sighting!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:10 +0000", "from_user": "iTsMissBritney", "from_user_id": 229848202, "from_user_id_str": "229848202", "from_user_name": "B.Fletch", "geo": null, "id": 148827982960672770, "id_str": "148827982960672768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692225032/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692225032/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Umm who is this n this fuckin clown says \"ur husband\" gtfoh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:08 +0000", "from_user": "majorieqpxboisv", "from_user_id": 305794927, "from_user_id_str": "305794927", "from_user_name": "Majorie Boisvert", "geo": null, "id": 148827971732520960, "id_str": "148827971732520960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1683570056/imagesCAJM0VOU_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683570056/imagesCAJM0VOU_normal", "source": "<a href="http://biggesttoystore.info" rel="nofollow">biggesttoystoredotinfo</a>", "text": "Reduced Christmas Toy Toddler-Orig Inflatable Punching Toy 46\" Large Size Buy Now http://t.co/oxYrA5Ko", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:05 +0000", "from_user": "corumghae4", "from_user_id": 391163548, "from_user_id_str": "391163548", "from_user_name": "Corum Dudley", "geo": null, "id": 148827958872772600, "id_str": "148827958872772609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1588915672/imagesCA8FDVWC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1588915672/imagesCA8FDVWC_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Smooth_Keyz duh. i know im not 21. its a song clown -__-1k6n", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:55 +0000", "from_user": "Caylaigs", "from_user_id": 440152143, "from_user_id_str": "440152143", "from_user_name": "Cayla Jacobo", "geo": null, "id": 148827917143642100, "id_str": "148827917143642112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700435056/large_tumblr_li6lwsL4Ut1qzupe5o1_500_thumb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700435056/large_tumblr_li6lwsL4Ut1qzupe5o1_500_thumb_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Insane Clown Posse - Tie Dyed T-shirts X-Large: http://t.co/TE2to4cv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:52 +0000", "from_user": "_SimplyMe89", "from_user_id": 80363885, "from_user_id_str": "80363885", "from_user_name": "Loading...", "geo": null, "id": 148827907903590400, "id_str": "148827907903590400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1652970811/hk1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652970811/hk1_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Cthu Jamir is a clown!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:45 +0000", "from_user": "naeeapplepiie", "from_user_id": 262372336, "from_user_id_str": "262372336", "from_user_name": "nae abbott.", "geo": null, "id": 148827877264203780, "id_str": "148827877264203776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1656417405/455469207_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656417405/455469207_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@jessicaaniicole hhahahaha! text me. I'm ready to clown!", "to_user": "jessicaaniicole", "to_user_id": 263990115, "to_user_id_str": "263990115", "to_user_name": "mccusker.", "in_reply_to_status_id": 148826936884477950, "in_reply_to_status_id_str": "148826936884477952"}, +{"created_at": "Mon, 19 Dec 2011 18:11:39 +0000", "from_user": "slim_goodie99", "from_user_id": 369054744, "from_user_id_str": "369054744", "from_user_name": "Dareesa Kimbrough", "geo": null, "id": 148827849476939780, "id_str": "148827849476939777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1667044740/DAR_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667044740/DAR_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Had to clown this bitch at work trying to talk slick to me #dntnome", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:36 +0000", "from_user": "RockyBalbs", "from_user_id": 163981391, "from_user_id_str": "163981391", "from_user_name": "David Rock", "geo": null, "id": 148827839666470900, "id_str": "148827839666470913", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681365994/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681365994/image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Simmons is a clown. Reminder: Bill Simmons KNOWS Gambling http://t.co/Cc2RjciW via @kissmesuzy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:34 +0000", "from_user": "215Springz", "from_user_id": 34220071, "from_user_id_str": "34220071", "from_user_name": "SaySomethingSpringz", "geo": null, "id": 148827830585786370, "id_str": "148827830585786368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668381620/388564_10150463323560850_513625849_10558198_300487110_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668381620/388564_10150463323560850_513625849_10558198_300487110_n_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Informing ladies its the holiday season there will be alot of clown and thirsty Niggas trying to sex u drink wit who u trust rape drug real", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:34 +0000", "from_user": "flygirl_D", "from_user_id": 280599821, "from_user_id_str": "280599821", "from_user_name": "Desiree B.", "geo": null, "id": 148827829948256260, "id_str": "148827829948256256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700733602/picplz_2011-12-18_14.53.36-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700733602/picplz_2011-12-18_14.53.36-1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@Official_G5 nuttin clown u at wrk!?", "to_user": "Official_G5", "to_user_id": 37537839, "to_user_id_str": "37537839", "to_user_name": "Same Ol' G", "in_reply_to_status_id": 148801847531024400, "in_reply_to_status_id_str": "148801847531024384"}, +{"created_at": "Mon, 19 Dec 2011 18:11:31 +0000", "from_user": "ItsLexiNOTLexy", "from_user_id": 305801698, "from_user_id_str": "305801698", "from_user_name": "Lexi Anderson", "geo": null, "id": 148827816333557760, "id_str": "148827816333557760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1625882311/profile_image_1320590809205_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1625882311/profile_image_1320590809205_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "Should I clown now or later???!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:29 +0000", "from_user": "Miguel_Gnz", "from_user_id": 295402297, "from_user_id_str": "295402297", "from_user_name": "Positive vibration.", "geo": null, "id": 148827808116908030, "id_str": "148827808116908033", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692227532/Snaptw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692227532/Snaptw_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I'll be always laughing like a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:26 +0000", "from_user": "_IChasePaper", "from_user_id": 214788386, "from_user_id_str": "214788386", "from_user_name": "Chris Lee", "geo": null, "id": 148827797677281280, "id_str": "148827797677281281", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675906938/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675906938/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@TONEitdownalil lol my people's did clown", "to_user": "TONEitdownalil", "to_user_id": 218305826, "to_user_id_str": "218305826", "to_user_name": "Tone Wright"}, +{"created_at": "Mon, 19 Dec 2011 18:11:19 +0000", "from_user": "C_Ross88", "from_user_id": 31433446, "from_user_id_str": "31433446", "from_user_name": "Christian Ross", "geo": null, "id": 148827766257745920, "id_str": "148827766257745921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1642193443/Photo_on_2011-06-16_at_16.29_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642193443/Photo_on_2011-06-16_at_16.29_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "I hate visiting this clown at work. Her patients creep me out.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:14 +0000", "from_user": "TopeTops", "from_user_id": 23922673, "from_user_id_str": "23922673", "from_user_name": "Call Me Temi...", "geo": null, "id": 148827747966402560, "id_str": "148827747966402560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1636015312/TopeTops_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1636015312/TopeTops_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@JoshOlawale u this clown. Where is my birthday present?", "to_user": "JoshOlawale", "to_user_id": 30198391, "to_user_id_str": "30198391", "to_user_name": "Motivation = Winning", "in_reply_to_status_id": 148826989602680830, "in_reply_to_status_id_str": "148826989602680832"}, +{"created_at": "Mon, 19 Dec 2011 18:11:10 +0000", "from_user": "Slicc_247", "from_user_id": 306330579, "from_user_id_str": "306330579", "from_user_name": "Dmequise Britt \\u2122", "geo": null, "id": 148827730870419460, "id_str": "148827730870419456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1649770914/3g10JsNH_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649770914/3g10JsNH_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @xOxo_ShawtieGal: Dmequise A Clown! Lol I Swear That Nigga Will Have You Laughing For Days!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:56 +0000", "from_user": "msthickums707", "from_user_id": 175586928, "from_user_id_str": "175586928", "from_user_name": "Sheena-Sherie", "geo": null, "id": 148827673018372100, "id_str": "148827673018372096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701572817/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701572817/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I'm comin RT \\u201C@DrinkThisJuic3: My daddy really made chicken and pasta and have peach cobbler in the oven...he a clown but I'm bout to eat\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:45 +0000", "from_user": "DjSmalls", "from_user_id": 21125999, "from_user_id_str": "21125999", "from_user_name": "DjSmalls", "geo": null, "id": 148827624532217860, "id_str": "148827624532217856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1620579010/Dewar_s_DJ_Masterblender_Logo1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620579010/Dewar_s_DJ_Masterblender_Logo1_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", "text": "Lol clown RT @KINGIVN New followers if u want me to follow just ask don't worry I won't bite......hard ;-) lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:34 +0000", "from_user": "Killakelzx2", "from_user_id": 296028447, "from_user_id_str": "296028447", "from_user_name": "Kellie ", "geo": null, "id": 148827579162443780, "id_str": "148827579162443776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662062576/profile_image_1322464149566_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662062576/profile_image_1322464149566_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "Lol this clown finna go to jail", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:33 +0000", "from_user": "BlowMyFro_", "from_user_id": 324653568, "from_user_id_str": "324653568", "from_user_name": "Kyree Burton", "geo": null, "id": 148827572887765000, "id_str": "148827572887764992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1570248086/FlMhDMzd_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1570248086/FlMhDMzd_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Najee a clown haha .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:30 +0000", "from_user": "MsColeman518", "from_user_id": 134635551, "from_user_id_str": "134635551", "from_user_name": "Simply....", "geo": null, "id": 148827561848356860, "id_str": "148827561848356864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1616184958/profile_image_1320096869197_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616184958/profile_image_1320096869197_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Jenelle is a clown lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:28 +0000", "from_user": "iSaluteCannabis", "from_user_id": 289737637, "from_user_id_str": "289737637", "from_user_name": "Ant Oliver Hoe!!!", "geo": null, "id": 148827552780267520, "id_str": "148827552780267520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1683525491/182424_188723524492413_100000642996265_517809_309462_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683525491/182424_188723524492413_100000642996265_517809_309462_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "dont be smilin in my face like you my round then turn around nd lok at like ah clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:26 +0000", "from_user": "WCCUZZO", "from_user_id": 299857800, "from_user_id_str": "299857800", "from_user_name": "Somerset Ooday ", "geo": null, "id": 148827544622346240, "id_str": "148827544622346240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700605006/cuzzo_normal.jpg-large", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700605006/cuzzo_normal.jpg-large", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@Chuck_StDreams: She can be my back bone every nigga need a spine\"stfu clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:20 +0000", "from_user": "brucee1920", "from_user_id": 132992821, "from_user_id_str": "132992821", "from_user_name": "Bru(cee)", "geo": null, "id": 148827521608192000, "id_str": "148827521608192001", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701321189/brucee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701321189/brucee_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "@will32426 lol clown", "to_user": "will32426", "to_user_id": 59259514, "to_user_id_str": "59259514", "to_user_name": "Reggie", "in_reply_to_status_id": 148814787604787200, "in_reply_to_status_id_str": "148814787604787201"}, +{"created_at": "Mon, 19 Dec 2011 18:10:17 +0000", "from_user": "MoniGeo", "from_user_id": 26444662, "from_user_id_str": "26444662", "from_user_name": "Monica Manzanares", "geo": null, "id": 148827508022845440, "id_str": "148827508022845440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698621289/Photo_152_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698621289/Photo_152_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Apparently wearing a Angry Birds hat to work makes u the clown @ work. #callcenterlife", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:17 +0000", "from_user": "Bebaaa_", "from_user_id": 181393130, "from_user_id_str": "181393130", "from_user_name": "MurdaBella", "geo": null, "id": 148827507590823940, "id_str": "148827507590823936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699591753/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699591753/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @Dae_Diamond: Oomf is a fuckin clown! Omg! He think he sayin some \"slick\" shit but he really be corny as a bitch. Boy, stfu! Thirsty ass...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:15 +0000", "from_user": "_TheOtherKevin", "from_user_id": 369769003, "from_user_id_str": "369769003", "from_user_name": "Pablo E.E. Gaviria ", "geo": null, "id": 148827500905119740, "id_str": "148827500905119744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1660842927/100MEDIA95IMAG0709_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660842927/100MEDIA95IMAG0709_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\"Silly Ass Clown\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:15 +0000", "from_user": "_J_Sin", "from_user_id": 359751196, "from_user_id_str": "359751196", "from_user_name": "Jazzy", "geo": null, "id": 148827499906863100, "id_str": "148827499906863104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698415990/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698415990/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Holy moly! She looks like a clown with that orange hair 0_0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:15 +0000", "from_user": "Lucas_Hare", "from_user_id": 115973844, "from_user_id_str": "115973844", "from_user_name": "Lucas Hare", "geo": null, "id": 148827498925395970, "id_str": "148827498925395969", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1511909591/6395321_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1511909591/6395321_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @SirTerence: @Lucas_Hare I'm guessing some clown at the ad agency advised that an apostrophe would look 'clunky' amidst the snow backdrop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:15 +0000", "from_user": "yomz_TMK", "from_user_id": 274817443, "from_user_id_str": "274817443", "from_user_name": "Yomi Oredein \\u266A", "geo": null, "id": 148827498241736700, "id_str": "148827498241736705", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696829046/IMG00132-20111205-2208_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696829046/IMG00132-20111205-2208_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@zhaneebaybee LOL clown ..press F1 that's all the help you need :p", "to_user": "zhaneebaybee", "to_user_id": 63351796, "to_user_id_str": "63351796", "to_user_name": "Zhan\\u00E9 Padmore", "in_reply_to_status_id": 148827175552950270, "in_reply_to_status_id_str": "148827175552950273"}, +{"created_at": "Mon, 19 Dec 2011 18:10:14 +0000", "from_user": "AvaLos78", "from_user_id": 238680454, "from_user_id_str": "238680454", "from_user_name": "Kris Avalos", "geo": null, "id": 148827495490273280, "id_str": "148827495490273280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1611302941/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611302941/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "@RoXy0724 Yup she had FOREVER!! And my friends clown me", "to_user": "RoXy0724", "to_user_id": 253594077, "to_user_id_str": "253594077", "to_user_name": "\\uE304\\uE022Roxy S\\uE327\\uE306", "in_reply_to_status_id": 148827160835145730, "in_reply_to_status_id_str": "148827160835145729"}, +{"created_at": "Mon, 19 Dec 2011 18:10:05 +0000", "from_user": "FuckYoSIDELINES", "from_user_id": 315538773, "from_user_id_str": "315538773", "from_user_name": "#BitchImPRETTY.", "geo": null, "id": 148827458165162000, "id_str": "148827458165161984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1688032365/9QbWLsXe_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688032365/9QbWLsXe_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@UhBeautiF_LMind ill be waiting . . Does this gotta do w/ \" clown \" ?", "to_user": "UhBeautiF_LMind", "to_user_id": 344530338, "to_user_id_str": "344530338", "to_user_name": "Cierria", "in_reply_to_status_id": 148827222336221200, "in_reply_to_status_id_str": "148827222336221184"}, +{"created_at": "Mon, 19 Dec 2011 18:10:01 +0000", "from_user": "DECEMBERR_13th", "from_user_id": 270092268, "from_user_id_str": "270092268", "from_user_name": "Janeka Booker", "geo": null, "id": 148827438372237300, "id_str": "148827438372237313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1584010152/NE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584010152/NE_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Jtfo @oomf this boy a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:59 +0000", "from_user": "Mndspeak88", "from_user_id": 118256817, "from_user_id_str": "118256817", "from_user_name": "Eric Markese", "geo": null, "id": 148827429933297660, "id_str": "148827429933297664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692312729/csMBu6LN_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692312729/csMBu6LN_normal", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @DenimAndChard: And a show only with @TamarBraxtonHer doesn't appeal to this African American. I'm not a clown, nor do I like to see them! @WEtv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:57 +0000", "from_user": "foleevee", "from_user_id": 219877806, "from_user_id_str": "219877806", "from_user_name": "Folivi Ola Henry", "geo": null, "id": 148827423474065400, "id_str": "148827423474065409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1688740419/IMG-20110915-00240_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688740419/IMG-20110915-00240_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@whose dis clown @olabode01", "to_user": "whose", "to_user_id": 21958016, "to_user_id_str": "21958016", "to_user_name": "JONNY WHO"}, +{"created_at": "Mon, 19 Dec 2011 18:09:54 +0000", "from_user": "BigD_Be_Flexin", "from_user_id": 239056567, "from_user_id_str": "239056567", "from_user_name": "DeAndre Herron", "geo": null, "id": 148827411746783230, "id_str": "148827411746783232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1661845701/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661845701/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Dis negro @DezMayberry23 tryna clown me imma ball u up on da court today #TeamDHoward", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:46 +0000", "from_user": "SharpyLcfc1994", "from_user_id": 185210044, "from_user_id_str": "185210044", "from_user_name": "Bradley Sharp", "geo": null, "id": 148827379136086000, "id_str": "148827379136086017", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1213124758/41540_1309126092_2855194_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1213124758/41540_1309126092_2855194_q_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@XxRosieAxX clown ;) you didnt reply to my DM :O x", "to_user": "XxRosieAxX", "to_user_id": 43941607, "to_user_id_str": "43941607", "to_user_name": "Rosie Atkinson", "in_reply_to_status_id": 148826814410784770, "in_reply_to_status_id_str": "148826814410784770"}, +{"created_at": "Mon, 19 Dec 2011 18:09:35 +0000", "from_user": "LilPookie1980", "from_user_id": 269517995, "from_user_id_str": "269517995", "from_user_name": "Shiv Schiwitz", "geo": null, "id": 148827330062725120, "id_str": "148827330062725120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688075002/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688075002/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @thorlock: Clown Island. From the producers of Sleepaway Camp. Based on the novel by Bret Easton Ellis. Starring Mario Lopez and Jennifer...Lopez.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:35 +0000", "from_user": "jdeeski42", "from_user_id": 145104352, "from_user_id_str": "145104352", "from_user_name": "JD", "geo": null, "id": 148827329202884600, "id_str": "148827329202884608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702523691/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702523691/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @Teflon_don323: \"@323_mac: told my lil brotha , you can be betta den me if you wanna be\" lmao aww shit he's past you already clown!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:32 +0000", "from_user": "Im_ThePrize", "from_user_id": 127562214, "from_user_id_str": "127562214", "from_user_name": "Not Perfect ", "geo": null, "id": 148827320155766800, "id_str": "148827320155766784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696542804/Im_ThePrize_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696542804/Im_ThePrize_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Tim is a clown lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:31 +0000", "from_user": "Imperfect_KK", "from_user_id": 263984182, "from_user_id_str": "263984182", "from_user_name": "KrissyDeShawn", "geo": null, "id": 148827315495903230, "id_str": "148827315495903232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1666582696/lo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666582696/lo_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "This clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:31 +0000", "from_user": "USDACERTIFIED17", "from_user_id": 303259275, "from_user_id_str": "303259275", "from_user_name": "Polo The Don ", "geo": null, "id": 148827313658798080, "id_str": "148827313658798080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1633175612/SjhPp53I_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633175612/SjhPp53I_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@ProfessionalMee @ochocinco i wasn't I drafted him in Fantasy they clown me lol", "to_user": "ProfessionalMee", "to_user_id": 282103947, "to_user_id_str": "282103947", "to_user_name": "~BeautifulDisaster~", "in_reply_to_status_id": 148827058255044600, "in_reply_to_status_id_str": "148827058255044608"} +, +{"created_at": "Mon, 19 Dec 2011 18:09:31 +0000", "from_user": "Imperfect_KK", "from_user_id": 263984182, "from_user_id_str": "263984182", "from_user_name": "KrissyDeShawn", "geo": null, "id": 148827315495903230, "id_str": "148827315495903232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1666582696/lo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666582696/lo_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "This clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:31 +0000", "from_user": "USDACERTIFIED17", "from_user_id": 303259275, "from_user_id_str": "303259275", "from_user_name": "Polo The Don ", "geo": null, "id": 148827313658798080, "id_str": "148827313658798080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1633175612/SjhPp53I_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633175612/SjhPp53I_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@ProfessionalMee @ochocinco i wasn't I drafted him in Fantasy they clown me lol", "to_user": "ProfessionalMee", "to_user_id": 282103947, "to_user_id_str": "282103947", "to_user_name": "~BeautifulDisaster~", "in_reply_to_status_id": 148827058255044600, "in_reply_to_status_id_str": "148827058255044608"}, +{"created_at": "Mon, 19 Dec 2011 18:09:30 +0000", "from_user": "Gandhi_Aime", "from_user_id": 37242629, "from_user_id_str": "37242629", "from_user_name": "BUFFERING...... \\uE517", "geo": null, "id": 148827311251267600, "id_str": "148827311251267584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701547003/Gandhi_Aime_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701547003/Gandhi_Aime_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Na seriously cause not all cannons and nikons record RT @FourPlayK: \\u201C@Gandhi_Aime: @FourPlayK it records???\\u201D nah it's disposable lol #clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:22 +0000", "from_user": "STARRxxStruckk", "from_user_id": 278300188, "from_user_id_str": "278300188", "from_user_name": "\\u2605Amber\\u2606\\u2606McTerry\\u2605", "geo": null, "id": 148827277893967870, "id_str": "148827277893967872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700928091/PSs0YgBW_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700928091/PSs0YgBW_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @BoyWonderBreezy: #NF @STARRxxStruckk #FMW Her clown ass lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:22 +0000", "from_user": "BUbul4sh1", "from_user_id": 168594991, "from_user_id_str": "168594991", "from_user_name": "Jonathan Jurrig ", "geo": null, "id": 148827275025055740, "id_str": "148827275025055744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1679146710/jjad_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679146710/jjad_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "I don't wanna be the clown tho", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:21 +0000", "from_user": "Dae_Diamond", "from_user_id": 150468176, "from_user_id_str": "150468176", "from_user_name": "PinkLipz_ThickAzz\\u2649", "geo": null, "id": 148827274307833860, "id_str": "148827274307833856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692144147/Dae_Diamond_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692144147/Dae_Diamond_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Oomf is a fuckin clown! Omg! He think he sayin some \"slick\" shit but he really be corny as a bitch. Boy, stfu! Thirsty ass...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:16 +0000", "from_user": "JrNick15", "from_user_id": 136484408, "from_user_id_str": "136484408", "from_user_name": "Dominique Bethell", "geo": null, "id": 148827249892794370, "id_str": "148827249892794368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1541608972/lakers_snap_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541608972/lakers_snap_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Superpaid_J: @ItsUltra_Violet ; lol buiiiii , youse make em , cause youse a fuckin clown !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:13 +0000", "from_user": "HSfF_Murray", "from_user_id": 284323468, "from_user_id_str": "284323468", "from_user_name": "V.Murray", "geo": null, "id": 148827240929566720, "id_str": "148827240929566720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691127821/V.Murray_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691127821/V.Murray_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@_JeSuisJolie I'll have something new to clown him about loL. Thanks for the info. hAa", "to_user": "_JeSuisJolie", "to_user_id": 57438986, "to_user_id_str": "57438986", "to_user_name": "H\\u00F6lly Ra\\u00EA ", "in_reply_to_status_id": 148826988088524800, "in_reply_to_status_id_str": "148826988088524801"}, +{"created_at": "Mon, 19 Dec 2011 18:09:00 +0000", "from_user": "LivinLavishLos", "from_user_id": 44765959, "from_user_id_str": "44765959", "from_user_name": "Slime Rothstein", "geo": null, "id": 148827186336501760, "id_str": "148827186336501760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701181752/IMG01052-20111218-1945_1__normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701181752/IMG01052-20111218-1945_1__normal", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@Mrs_Glock40 y is u sayin my name on dis twitter shit moe tf u a clown joe.", "to_user": "Mrs_Glock40", "to_user_id": 96646616, "to_user_id_str": "96646616", "to_user_name": "Crown me queen.", "in_reply_to_status_id": 148824432687845380, "in_reply_to_status_id_str": "148824432687845377"}, +{"created_at": "Mon, 19 Dec 2011 18:08:50 +0000", "from_user": "_The1YhuNevaHav", "from_user_id": 359140517, "from_user_id_str": "359140517", "from_user_name": "Kortni Tates", "geo": null, "id": 148827142979977200, "id_str": "148827142979977216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685308154/111210-114958_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685308154/111210-114958_normal.jpg", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "Jared is a clown tho..... he be disturbin mhi learnin enviroment....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:08:49 +0000", "from_user": "FootyJerseys", "from_user_id": 167757559, "from_user_id_str": "167757559", "from_user_name": "footballjerseymuseum", "geo": null, "id": 148827138370441200, "id_str": "148827138370441216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1080381090/blank_number2_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1080381090/blank_number2_normal.gif", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@MarkFoley99 I'll take you down like a clown in chinatown. I'd play the rock and kinky up front and bench your spotty arse.#teambazualdo", "to_user": "MarkFoley99", "to_user_id": 37291498, "to_user_id_str": "37291498", "to_user_name": "Mark Foley", "in_reply_to_status_id": 148826443915337730, "in_reply_to_status_id_str": "148826443915337728"}, +{"created_at": "Mon, 19 Dec 2011 18:08:49 +0000", "from_user": "Superpaid_J", "from_user_id": 291974892, "from_user_id_str": "291974892", "from_user_name": "Justin Sweeting", "geo": null, "id": 148827138131361800, "id_str": "148827138131361792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1580103518/swagg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580103518/swagg_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ItsUltra_Violet ; lol buiiiii , youse make em , cause youse a fuckin clown !", "to_user": "ItsUltra_Violet", "to_user_id": 348767822, "to_user_id_str": "348767822", "to_user_name": "Raymond Dean", "in_reply_to_status_id": 148826772165754880, "in_reply_to_status_id_str": "148826772165754880"}, +{"created_at": "Mon, 19 Dec 2011 18:08:40 +0000", "from_user": "MsUberSocial", "from_user_id": 237431025, "from_user_id_str": "237431025", "from_user_name": "Brit Brat", "geo": null, "id": 148827102500753400, "id_str": "148827102500753408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1658049950/330413094_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658049950/330413094_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Omg yo avi scaring me u got the doodoo face mixed wit a scary ass clown eww.. An yes u ugly", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:08:40 +0000", "from_user": "Catherinezvs", "from_user_id": 430043994, "from_user_id_str": "430043994", "from_user_name": "Catherine Tutterrow", "geo": null, "id": 148827100554608640, "id_str": "148827100554608640", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1677514101/ffsnqfnsjb_130523423-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677514101/ffsnqfnsjb_130523423-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Insane Clown Posse: Juggalo Championshit Wrestling, Vol. 2: JCW VOLUME 2 - DVD Movie http://t.co/XrSZ0fkl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:08:33 +0000", "from_user": "msbeauty14", "from_user_id": 135686086, "from_user_id_str": "135686086", "from_user_name": "\\u2764crystal\\u2764", "geo": null, "id": 148827066207440900, "id_str": "148827066207440898", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688130144/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688130144/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "She a clown \\u2764\\u2764\\u2764 http://t.co/3VUc47rL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:08:31 +0000", "from_user": "stet_daddy", "from_user_id": 202004659, "from_user_id_str": "202004659", "from_user_name": "Drew Stetler", "geo": null, "id": 148827064861073400, "id_str": "148827064861073410", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690563254/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690563254/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@corthilt Ur a clown!", "to_user": "corthilt", "to_user_id": 398731134, "to_user_id_str": "398731134", "to_user_name": "Cortney Hilton", "in_reply_to_status_id": 148823426365272060, "in_reply_to_status_id_str": "148823426365272066"}, +{"created_at": "Mon, 19 Dec 2011 18:08:27 +0000", "from_user": "BishopSteel", "from_user_id": 340488645, "from_user_id_str": "340488645", "from_user_name": "BishopSteel", "geo": null, "id": 148827047467286530, "id_str": "148827047467286529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702416915/394694_337356949623296_100000469803123_1360509_1780983551_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702416915/394694_337356949623296_100000469803123_1360509_1780983551_n_normal.jpg", "source": "<a href="http://www.handmark.com" rel="nofollow">TweetCaster for iOS</a>", "text": "@Tikdoe You A Clown Lls Get A New Controller First !", "to_user": "Tikdoe", "to_user_id": 396132360, "to_user_id_str": "396132360", "to_user_name": "Tikdoe", "in_reply_to_status_id": 148824894614929400, "in_reply_to_status_id_str": "148824894614929408"}, +{"created_at": "Mon, 19 Dec 2011 18:08:23 +0000", "from_user": "KCoolBurns", "from_user_id": 440586322, "from_user_id_str": "440586322", "from_user_name": "kahdejah burns", "geo": null, "id": 148827030442610700, "id_str": "148827030442610688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701582002/kamiya2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701582002/kamiya2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@LanaiDeja YHu A Clown LOl", "to_user": "LanaiDeja", "to_user_id": 440587003, "to_user_id_str": "440587003", "to_user_name": "Deja Lanai Patterson"}, +{"created_at": "Mon, 19 Dec 2011 18:08:22 +0000", "from_user": "ScreaamMariaa", "from_user_id": 228443254, "from_user_id_str": "228443254", "from_user_name": "\\u2192M a r i a (:", "geo": null, "id": 148827023798829060, "id_str": "148827023798829056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1652802898/O9wFqMKq_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652802898/O9wFqMKq_normal", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "#Np Insane Clown Posse - Crystal Ball", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:08:21 +0000", "from_user": "FourPlayK", "from_user_id": 91285264, "from_user_id_str": "91285264", "from_user_name": "Jerry Maguire ", "geo": null, "id": 148827021152227330, "id_str": "148827021152227328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1650348895/Photo_on_2011-11-21_at_09.56__3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650348895/Photo_on_2011-11-21_at_09.56__3_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@Gandhi_Aime: @FourPlayK it records???\\u201D nah it's disposable lol #clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:08:19 +0000", "from_user": "icelemongirl", "from_user_id": 116821810, "from_user_id_str": "116821810", "from_user_name": "\\uE030\\uE204\\uBC15\\uD790\\uD790\\uE204\\uE32E", "geo": null, "id": 148827014084825100, "id_str": "148827014084825088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689251667/ProfilePhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689251667/ProfilePhoto_normal.png", "source": "<a href="http://www.osfoora.com" rel="nofollow">Osfoora for iPhone</a>", "text": "@sching108 Yala..change all la..no more pro sir..>_< but I think series 4 d story will begin from the clown", "to_user": "sching108", "to_user_id": 101766116, "to_user_id_str": "101766116", "to_user_name": "SCHING", "in_reply_to_status_id": 148825980285354000, "in_reply_to_status_id_str": "148825980285353985"}, +{"created_at": "Mon, 19 Dec 2011 18:08:18 +0000", "from_user": "SlyNativeCrook", "from_user_id": 245833653, "from_user_id_str": "245833653", "from_user_name": "Bill Withers", "geo": null, "id": 148827006690263040, "id_str": "148827006690263040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1667241923/Currensy_normal.htm", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667241923/Currensy_normal.htm", "source": "<a href="http://twitter.com/">web</a>", "text": "@iLOVEmyCarter yo still on dat lmao you a clown", "to_user": "iLOVEmyCarter", "to_user_id": 234124950, "to_user_id_str": "234124950", "to_user_name": "ashley gomez ", "in_reply_to_status_id": 148826675138928640, "in_reply_to_status_id_str": "148826675138928640"}, +{"created_at": "Mon, 19 Dec 2011 18:08:17 +0000", "from_user": "qtsammie", "from_user_id": 47199777, "from_user_id_str": "47199777", "from_user_name": "Samantha Nguyen", "geo": null, "id": 148827005633314800, "id_str": "148827005633314816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1672646857/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672646857/image_normal.jpg", "source": "<a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow">Twitter for iPhone</a>", "text": "RT @shitmyguysays: Me: look at that cute clown making balloon animals for kids! Him: you see a clown.. I see a sex offender.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:08:17 +0000", "from_user": "iLove_dANi", "from_user_id": 64214961, "from_user_id_str": "64214961", "from_user_name": "\\uE314\\uE035 Ms.October \\uE035\\uE314", "geo": null, "id": 148827002470809600, "id_str": "148827002470809600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701803934/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701803934/image_normal.jpg", "source": "<a href="http://www.handmark.com" rel="nofollow">TweetCaster for iOS</a>", "text": "RT @Polo_Pompey: @iLove_dANi HAHAHAHA THEY GON HEM U UP AT THE DMV. // don't say that clown !! Lol but I'm at my mama shit !!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:08:14 +0000", "from_user": "WLiLeow", "from_user_id": 127807211, "from_user_id_str": "127807211", "from_user_name": "WLi Leow", "geo": null, "id": 148826990995185660, "id_str": "148826990995185664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692948055/Photo_on_12-9-11_at_10.32_PM__3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692948055/Photo_on_12-9-11_at_10.32_PM__3_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @RemyJemy: Her boobs way too big n heavy thats why she short cldnt grow RT @gabwal: Sometimes I find that nickie minaj look like a clown, in a good way", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:08:01 +0000", "from_user": "sebastiaan8989", "from_user_id": 79821810, "from_user_id_str": "79821810", "from_user_name": "Sebastiaan Vonk", "geo": null, "id": 148826938448941060, "id_str": "148826938448941056", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1524141157/IMG_1306_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1524141157/IMG_1306_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Heb ik wat gemist dat die Clown Roemer tot politicus van het jaar wordt benoemd?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:07:56 +0000", "from_user": "macky_CAsports", "from_user_id": 50669386, "from_user_id_str": "50669386", "from_user_name": "The Real Is Mack", "geo": null, "id": 148826916290441200, "id_str": "148826916290441216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1642703996/165158_1639719765373_1608162551_1432970_6989851_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642703996/165158_1639719765373_1608162551_1432970_6989851_n_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "LolRT @_MARAvinsRoom: @macky_CAsports lmfao you a clown yo.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:07:51 +0000", "from_user": "NoudSteffens", "from_user_id": 18338644, "from_user_id_str": "18338644", "from_user_name": "Noud Steffens", "geo": null, "id": 148826895394422800, "id_str": "148826895394422784", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1168662258/phpgWOzEZAM_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1168662258/phpgWOzEZAM_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@egrootendorst een paar goede assists gegeven idd... Het blijft een clown!", "to_user": "egrootendorst", "to_user_id": 50553186, "to_user_id_str": "50553186", "to_user_name": "Edwin Grootendorst", "in_reply_to_status_id": 148797798408654850, "in_reply_to_status_id_str": "148797798408654851"}, +{"created_at": "Mon, 19 Dec 2011 18:07:50 +0000", "from_user": "ChadCEnglish", "from_user_id": 226301710, "from_user_id_str": "226301710", "from_user_name": "Chad English", "geo": null, "id": 148826891485331460, "id_str": "148826891485331456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683686565/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683686565/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@MexiMike12 Mendenhall clown!", "to_user": "MexiMike12", "to_user_id": 356259248, "to_user_id_str": "356259248", "to_user_name": "Mike Hernandez", "in_reply_to_status_id": 148822435767136260, "in_reply_to_status_id_str": "148822435767136256"}, +{"created_at": "Mon, 19 Dec 2011 18:07:49 +0000", "from_user": "Super_human_92", "from_user_id": 227372689, "from_user_id_str": "227372689", "from_user_name": "T.jordan.Omogbehin \\u2714", "geo": null, "id": 148826886250835970, "id_str": "148826886250835968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1608240889/328717217_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608240889/328717217_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_ilovebrandi: Getting yur dimples pierced is stupid... yu look like a damn clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:07:45 +0000", "from_user": "xOxo_ShawtieGal", "from_user_id": 72137814, "from_user_id_str": "72137814", "from_user_name": "NaeBae BadAss", "geo": null, "id": 148826868706054140, "id_str": "148826868706054145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701387300/ezuG68f4_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701387300/ezuG68f4_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Dmequise A Clown! Lol I Swear That Nigga Will Have You Laughing For Days!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:07:43 +0000", "from_user": "eelcozwaggy", "from_user_id": 233136026, "from_user_id_str": "233136026", "from_user_name": "eelco veenstra", "geo": null, "id": 148826860476825600, "id_str": "148826860476825600", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1204702768/898327673_3_EZmS_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1204702768/898327673_3_EZmS_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@sebasmun1: kijk nu het weer er is eindelijk sneeuw op komst vanacht ik hoop het\" mar kalm misselijjke clown :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:07:40 +0000", "from_user": "JASii_JAY", "from_user_id": 428779345, "from_user_id_str": "428779345", "from_user_name": "JASMINE D. DUNBAR", "geo": null, "id": 148826847763894270, "id_str": "148826847763894272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686546125/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686546125/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@JohansPeace @crown_me_queen & I'ma clown again if they fitting like sweats!!! Smh", "to_user": "JohansPeace", "to_user_id": 28599963, "to_user_id_str": "28599963", "to_user_name": "Johan Johnson", "in_reply_to_status_id": 148804813407264770, "in_reply_to_status_id_str": "148804813407264768"}, +{"created_at": "Mon, 19 Dec 2011 18:07:37 +0000", "from_user": "stevecwd", "from_user_id": 66735043, "from_user_id_str": "66735043", "from_user_name": "Steve Braund", "geo": null, "id": 148826837773074430, "id_str": "148826837773074432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1666851976/stevecwd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666851976/stevecwd_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Darren Bent. What a clown.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:07:32 +0000", "from_user": "JuicyyCouture__", "from_user_id": 388219409, "from_user_id_str": "388219409", "from_user_name": "Doneisha Bishop", "geo": null, "id": 148826813446111230, "id_str": "148826813446111233", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1583493913/__iHeart_Scotty_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583493913/__iHeart_Scotty_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "..silly ass clown!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:07:30 +0000", "from_user": "Prince_Mark3", "from_user_id": 234948111, "from_user_id_str": "234948111", "from_user_name": "markia jackson", "geo": null, "id": 148826805812465660, "id_str": "148826805812465666", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685882667/2011-12-08_15-45-31_577_KPT_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685882667/2011-12-08_15-45-31_577_KPT_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@PRiNCESSJASMiN_ lmao clown", "to_user": "PRiNCESSJASMiN_", "to_user_id": 215477090, "to_user_id_str": "215477090", "to_user_name": "Jasmine Woodyard", "in_reply_to_status_id": 148826158572634100, "in_reply_to_status_id_str": "148826158572634112"}, +{"created_at": "Mon, 19 Dec 2011 18:07:18 +0000", "from_user": "enricopetti", "from_user_id": 211467336, "from_user_id_str": "211467336", "from_user_name": "enrico pettinato", "geo": null, "id": 148826754755215360, "id_str": "148826754755215360", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1202661748/161824_1195938662_7627549_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1202661748/161824_1195938662_7627549_q_normal.jpg", "source": "<a href="http://beta.twitlonger.com" rel="nofollow">TwitLonger Beta</a>", "text": "quante risate con i clown verdi #leghisti \\nprima introducono la tassa dell'Imu e votando tutte le leggi ad (cont) http://t.co/5w3ErrN8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:07:16 +0000", "from_user": "johnny_t_t", "from_user_id": 20468074, "from_user_id_str": "20468074", "from_user_name": "Johnny T T", "geo": null, "id": 148826748027535360, "id_str": "148826748027535360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1676282263/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676282263/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Remember that total bullshit VH1 show \"The Pickup Artist\"? Where it told you to get dates you have to dress like a circus clown on meth?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:07:09 +0000", "from_user": "Peanut_Murks", "from_user_id": 161055108, "from_user_id_str": "161055108", "from_user_name": "RaeRae", "geo": null, "id": 148826717987946500, "id_str": "148826717987946496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1544305328/110915-132103_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544305328/110915-132103_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "- Most Fellas That Clown Their Boys About Cakin Usually Wish They Had A Relationship Like That, Been Hurt Before, Or Scared Of Commitment.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:07:08 +0000", "from_user": "B1g_Br0", "from_user_id": 329768753, "from_user_id_str": "329768753", "from_user_name": "Jerard D. Campbell", "geo": null, "id": 148826715081293820, "id_str": "148826715081293824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684307943/lakerhead_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684307943/lakerhead_normal.JPG", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Oomf was tryna go in on the bump on my nose she better chill she don't wanna clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:07:03 +0000", "from_user": "Glynniss", "from_user_id": 22408971, "from_user_id_str": "22408971", "from_user_name": "Glynnis", "geo": null, "id": 148826693040226300, "id_str": "148826693040226304", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685623440/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685623440/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Bah, heeft die clown Roemer gewonnen. _0-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:55 +0000", "from_user": "DenimAndChard", "from_user_id": 64622856, "from_user_id_str": "64622856", "from_user_name": "Stoned Stiletto", "geo": null, "id": 148826661004128260, "id_str": "148826661004128256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1675663171/100_0009_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675663171/100_0009_normal.JPG", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "And a show only with @TamarBraxtonHer doesn't appeal to this African American. I'm not a clown, nor do I like to see them! @WEtv", "to_user": "WEtv", "to_user_id": 16113773, "to_user_id_str": "16113773", "to_user_name": "WE tv", "in_reply_to_status_id": 148794785124196350, "in_reply_to_status_id_str": "148794785124196352"}, +{"created_at": "Mon, 19 Dec 2011 18:06:55 +0000", "from_user": "SirTerence", "from_user_id": 19483365, "from_user_id_str": "19483365", "from_user_name": "Terence Dackombe", "geo": null, "id": 148826660505010180, "id_str": "148826660505010176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1539909968/TD_DBC_2011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1539909968/TD_DBC_2011_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@Lucas_Hare I'm guessing some clown at the ad agency advised that an apostrophe would look 'clunky' amidst the snow backdrop", "to_user": "Lucas_Hare", "to_user_id": 115973844, "to_user_id_str": "115973844", "to_user_name": "Lucas Hare", "in_reply_to_status_id": 148824163723915260, "in_reply_to_status_id_str": "148824163723915265"}, +{"created_at": "Mon, 19 Dec 2011 18:06:53 +0000", "from_user": "ItsJohnnyyboi", "from_user_id": 362760795, "from_user_id_str": "362760795", "from_user_name": "Jon Jon ! ", "geo": null, "id": 148826650988130300, "id_str": "148826650988130304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1674775683/95D7EDB5-63B6-4F3B-8D13-1B34FB3822BA_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674775683/95D7EDB5-63B6-4F3B-8D13-1B34FB3822BA_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Dang drama class is crazy gulliermo and I are in a clown session", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:50 +0000", "from_user": "_MidgetMacDea", "from_user_id": 235850510, "from_user_id_str": "235850510", "from_user_name": "de'aundria", "geo": null, "id": 148826638577172480, "id_str": "148826638577172482", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1688507775/_MidgetMacDea_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688507775/_MidgetMacDea_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@KiD_JWaLLe @_MidgetMacDea lol that nigga dumb...how yu gone be short with clown feet that shit ugly.\\u201D", "to_user": "KiD_JWaLLe", "to_user_id": 238435433, "to_user_id_str": "238435433", "to_user_name": "JUICEEEE\\uE00E", "in_reply_to_status_id": 148825987566682100, "in_reply_to_status_id_str": "148825987566682113"}, +{"created_at": "Mon, 19 Dec 2011 18:06:49 +0000", "from_user": "Savage_Bell", "from_user_id": 272160334, "from_user_id_str": "272160334", "from_user_name": "Where's Bell ..!", "geo": null, "id": 148826635242704900, "id_str": "148826635242704897", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697532794/387556_337354489624936_100000511647270_1421905_1408276246_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697532794/387556_337354489624936_100000511647270_1421905_1408276246_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "in spanish clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:48 +0000", "from_user": "BoyWonderBreezy", "from_user_id": 142458297, "from_user_id_str": "142458297", "from_user_name": "Big Smooth\\u2122", "geo": null, "id": 148826631857909760, "id_str": "148826631857909760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1425216176/180884_1839781072769_1187803806_2188069_8054803_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1425216176/180884_1839781072769_1187803806_2188069_8054803_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#NF @STARRxxStruckk #FMW Her clown ass lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:41 +0000", "from_user": "_MARAvinsRoom", "from_user_id": 231995856, "from_user_id_str": "231995856", "from_user_name": "Ferrari BOY #3", "geo": null, "id": 148826602854301700, "id_str": "148826602854301696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698349922/U438RyT3_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698349922/U438RyT3_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@macky_CAsports lmfao you a clown yo.", "to_user": "macky_CAsports", "to_user_id": 50669386, "to_user_id_str": "50669386", "to_user_name": "The Real Is Mack", "in_reply_to_status_id": 148823934211596300, "in_reply_to_status_id_str": "148823934211596288"}, +{"created_at": "Mon, 19 Dec 2011 18:06:39 +0000", "from_user": "MattyMozay", "from_user_id": 86171959, "from_user_id_str": "86171959", "from_user_name": "Matthew Jimenez", "geo": null, "id": 148826592339169280, "id_str": "148826592339169280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1391631785/cab_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1391631785/cab_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Yeah I must clown, I'm from Harlem, Uptown\\nWhere we flash money, take your bitch and ask you, what now?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:38 +0000", "from_user": "Teflon_don323", "from_user_id": 372575125, "from_user_id_str": "372575125", "from_user_name": "Woo", "geo": null, "id": 148826588962766850, "id_str": "148826588962766848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1640661753/wooo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640661753/wooo_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@323_mac: told my lil brotha , you can be betta den me if you wanna be\" lmao aww shit he's past you already clown!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:36 +0000", "from_user": "curlyDeLaBeu", "from_user_id": 116325090, "from_user_id_str": "116325090", "from_user_name": "Jet Jet Jet", "geo": null, "id": 148826582167986180, "id_str": "148826582167986176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1626329678/Snapshot_20110809_8_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626329678/Snapshot_20110809_8_normal.jpg", "source": "<a href="http://phnxapp.com" rel="nofollow">phnx</a>", "text": "Niggas crying over hoes... That's tears of a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:32 +0000", "from_user": "Tobiah88", "from_user_id": 72703236, "from_user_id_str": "72703236", "from_user_name": "Josiah Bremer", "geo": null, "id": 148826563641753600, "id_str": "148826563641753601", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/587272329/n704642492_758651_3953_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/587272329/n704642492_758651_3953_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\"when life gives you lemons, go murder a clown\" -festus krex", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:30 +0000", "from_user": "BanitaGayle", "from_user_id": 136033778, "from_user_id_str": "136033778", "from_user_name": "GRiSELDA BLANC0", "geo": null, "id": 148826554552696830, "id_str": "148826554552696832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1636511340/banita_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1636511340/banita_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "These clown hoes boost the shit outta the most uncool guys!!! BUT WHY D0E?!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:28 +0000", "from_user": "ekstromahvob0", "from_user_id": 388377275, "from_user_id_str": "388377275", "from_user_name": "Ekstrom Summers", "geo": null, "id": 148826545442656260, "id_str": "148826545442656256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1581859743/f_30_w_0081_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1581859743/f_30_w_0081_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "And que clown music lifeasaredskinfansMYEp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:26 +0000", "from_user": "RayCharles601", "from_user_id": 85186193, "from_user_id_str": "85186193", "from_user_name": "Ray Jost", "geo": null, "id": 148826537477677060, "id_str": "148826537477677056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1673928291/warming_up_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673928291/warming_up_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:17 +0000", "from_user": "REAL_IS_BETTER", "from_user_id": 312401976, "from_user_id_str": "312401976", "from_user_name": "Mook Sizzle", "geo": null, "id": 148826502639783940, "id_str": "148826502639783936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1593393278/300041_247080008675576_100001207362006_733375_100972067_n-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593393278/300041_247080008675576_100001207362006_733375_100972067_n-1_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "& you was the class clown that ALWAYS kept me laughing we would NEVER meant to b baby we just happened.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:13 +0000", "from_user": "TW33TMachine", "from_user_id": 338876229, "from_user_id_str": "338876229", "from_user_name": "iAwesome \\u2714", "geo": null, "id": 148826485623488500, "id_str": "148826485623488514", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1604765754/wolverine_avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1604765754/wolverine_avatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "They say your penis is related to shoe size. Well, that makes the fear of being raped by a clown much scarier.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:05 +0000", "from_user": "Mr_WhatzitToya", "from_user_id": 57715739, "from_user_id_str": "57715739", "from_user_name": "Rashad Bullard", "geo": null, "id": 148826449292427260, "id_str": "148826449292427265", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700986773/IMG_0284_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700986773/IMG_0284_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Superpaid_J: @ItsUltra_Violet ; youse a clown bui I fuckin gone ta break you up to the pool and you fuckin let melissa and TAVIA hodl you back df ?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:01 +0000", "from_user": "KingEric14", "from_user_id": 235781094, "from_user_id_str": "235781094", "from_user_name": "\\u265BEric Lane\\u265B ", "geo": null, "id": 148826434377494530, "id_str": "148826434377494529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687915988/Picture_100_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687915988/Picture_100_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SacaFlocka lmfao Saca ur a clown!", "to_user": "SacaFlocka", "to_user_id": 57439313, "to_user_id_str": "57439313", "to_user_name": "Zachary James Saca", "in_reply_to_status_id": 148824850767679500, "in_reply_to_status_id_str": "148824850767679489"}, +{"created_at": "Mon, 19 Dec 2011 18:06:00 +0000", "from_user": "Jay_Pachec0", "from_user_id": 269352647, "from_user_id_str": "269352647", "from_user_name": "Jason ", "geo": null, "id": 148826431487610880, "id_str": "148826431487610880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681066898/lol_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681066898/lol_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:05:51 +0000", "from_user": "heyBRITTANYxo", "from_user_id": 161151778, "from_user_id_str": "161151778", "from_user_name": "Ms.FxckOVERyu", "geo": null, "id": 148826390987411460, "id_str": "148826390987411456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1597126144/a0V0fLSx_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1597126144/a0V0fLSx_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "lol u is a whole CLOWN!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:05:47 +0000", "from_user": "CupcakenTeeze", "from_user_id": 96708745, "from_user_id_str": "96708745", "from_user_name": "ChAnTeL V", "geo": null, "id": 148826375862751230, "id_str": "148826375862751232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689599199/331378225_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689599199/331378225_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@AlannaFierce gon' ask if I put juices 'n berries in my hair last night-clown lmbo", "to_user": "AlannaFierce", "to_user_id": 68265156, "to_user_id_str": "68265156", "to_user_name": "Alanna Singleton"}, +{"created_at": "Mon, 19 Dec 2011 18:05:47 +0000", "from_user": "iMayuz", "from_user_id": 61694146, "from_user_id_str": "61694146", "from_user_name": "\\uE20EMayowa Odubiyi\\u2122\\uE20E", "geo": null, "id": 148826373014831100, "id_str": "148826373014831105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698796897/IMG00250-20111126-1518_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698796897/IMG00250-20111126-1518_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "To make everyone happy, i would need a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:05:46 +0000", "from_user": "Mericalll", "from_user_id": 309490351, "from_user_id_str": "309490351", "from_user_name": "merical spears", "geo": null, "id": 148826368858275840, "id_str": "148826368858275840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697172126/h0aLi6A5_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697172126/h0aLi6A5_normal", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "lol #JerrySpringer is funny he always tries to clown his guests and make em look stupid on the cool", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:05:41 +0000", "from_user": "hootie_91", "from_user_id": 242881896, "from_user_id_str": "242881896", "from_user_name": "Haley Craig ", "geo": null, "id": 148826350059393020, "id_str": "148826350059393024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1635755509/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635755509/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:05:40 +0000", "from_user": "xMARKs_My_Spot", "from_user_id": 229944233, "from_user_id_str": "229944233", "from_user_name": "Menajahtwa \\u273F", "geo": null, "id": 148826344577433600, "id_str": "148826344577433600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696858632/004_editededited_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696858632/004_editededited_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "#IWasThatKid who was the class clown , making everybody laugh .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:05:38 +0000", "from_user": "_ilovebrandi", "from_user_id": 127002708, "from_user_id_str": "127002708", "from_user_name": "Brandi Catrice", "geo": null, "id": 148826337015111680, "id_str": "148826337015111681", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689760107/2011-12-12_16-59-50_335-picsay_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689760107/2011-12-12_16-59-50_335-picsay_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Getting yur dimples pierced is stupid... yu look like a damn clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:05:24 +0000", "from_user": "_AmoszGivens", "from_user_id": 284226858, "from_user_id_str": "284226858", "from_user_name": "\\uE00AHomer Simpson ", "geo": null, "id": 148826278047399940, "id_str": "148826278047399936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1621424600/_AmoszGivens_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621424600/_AmoszGivens_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@iEVOLyu_ lol she a clown", "to_user": "iEVOLyu_", "to_user_id": 330600859, "to_user_id_str": "330600859", "to_user_name": "driaa..whitney))", "in_reply_to_status_id": 148826056214843400, "in_reply_to_status_id_str": "148826056214843393"}, +{"created_at": "Mon, 19 Dec 2011 18:05:23 +0000", "from_user": "Jas_thebaddest1", "from_user_id": 418500261, "from_user_id_str": "418500261", "from_user_name": "Jasmine", "geo": null, "id": 148826273274265600, "id_str": "148826273274265600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662028673/155076_181718215176185_100000140228271_693137_5420866_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662028673/155076_181718215176185_100000140228271_693137_5420866_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "He a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:05:21 +0000", "from_user": "joristank", "from_user_id": 440211159, "from_user_id_str": "440211159", "from_user_name": "joris,dat ben ik!", "geo": null, "id": 148826265225404400, "id_str": "148826265225404416", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702559069/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702559069/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@xxxyassiexxx zeg nou iets clown!", "to_user": "xxxyassiexxx", "to_user_id": 395257147, "to_user_id_str": "395257147", "to_user_name": "Yasmin Jager", "in_reply_to_status_id": 148821706264428540, "in_reply_to_status_id_str": "148821706264428544"}, +{"created_at": "Mon, 19 Dec 2011 18:05:14 +0000", "from_user": "_zeeeee", "from_user_id": 176917573, "from_user_id_str": "176917573", "from_user_name": "heyyy i'm zeee. \\u262E\\u2665(:", "geo": null, "id": 148826237895319550, "id_str": "148826237895319552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1445760315/167056_187566387924094_100000122036710_743951_3202294_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1445760315/167056_187566387924094_100000122036710_743951_3202294_n_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:05:12 +0000", "from_user": "_theAmex_", "from_user_id": 322674078, "from_user_id_str": "322674078", "from_user_name": "theAmex\\u00A9 Hewitt, Inc", "geo": null, "id": 148826228344889340, "id_str": "148826228344889345", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700028478/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700028478/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@BussyJuice_ you can't help me wit shit over Twitter clown but tweet sum dumb ass shit trying to prove a point. #FOH", "to_user": "BussyJuice_", "to_user_id": 24396765, "to_user_id_str": "24396765", "to_user_name": "\\u2202\\u03B5\\u03B5 \\u05E0\\u03B1\\u00FF", "in_reply_to_status_id": 148825845308456960, "in_reply_to_status_id_str": "148825845308456960"}, +{"created_at": "Mon, 19 Dec 2011 18:05:12 +0000", "from_user": "millerja9", "from_user_id": 324410072, "from_user_id_str": "324410072", "from_user_name": "Joshua Andrew Miller", "geo": null, "id": 148826226340003840, "id_str": "148826226340003840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1610615635/299962_10150872937170691_777570690_21462255_287167545_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610615635/299962_10150872937170691_777570690_21462255_287167545_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ojml Believe me mate there's worse to come until that clown is sacked! #KeanOut", "to_user": "ojml", "to_user_id": 23821607, "to_user_id_str": "23821607", "to_user_name": "Oli Lacey", "in_reply_to_status_id": 148825758712868860, "in_reply_to_status_id_str": "148825758712868864"}, +{"created_at": "Mon, 19 Dec 2011 18:05:11 +0000", "from_user": "MarisaCJ", "from_user_id": 131819208, "from_user_id_str": "131819208", "from_user_name": "Marisa Contreras", "geo": null, "id": 148826221386547200, "id_str": "148826221386547200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700468583/DSC_0348_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700468583/DSC_0348_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ValmeDRG @alejandina Feel like a clown: http://t.co/0T4QKtwn", "to_user": "ValmeDRG", "to_user_id": 39348202, "to_user_id_str": "39348202", "to_user_name": "Valme"}, +{"created_at": "Mon, 19 Dec 2011 18:05:08 +0000", "from_user": "_xTOOTmyShxT", "from_user_id": 269469090, "from_user_id_str": "269469090", "from_user_name": "\\u03BA\\u03B1\\u03B5 \\u03B2\\u03B1\\u03B5uti\\u03B5\\u03B5\\u03B5\\u2764", "geo": null, "id": 148826213211836400, "id_str": "148826213211836417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1633651503/Lovee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633651503/Lovee_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Lil Kim Clown Clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:05:07 +0000", "from_user": "Adriannegor", "from_user_id": 386036760, "from_user_id_str": "386036760", "from_user_name": "Adrianne Fazzino", "geo": null, "id": 148826206270259200, "id_str": "148826206270259201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1575440212/n4nffo45oh_123167615_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575440212/n4nffo45oh_123167615_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "The Gingrich Monkey Climb. Gingrich is a goldmine for people like me. There is nothing like a bloviating clown in a... http://t.co/bvOeMXcC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:05:05 +0000", "from_user": "MissMonalisa", "from_user_id": 259990472, "from_user_id_str": "259990472", "from_user_name": "Laura Seabrook", "geo": null, "id": 148826198473052160, "id_str": "148826198473052160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1614777738/293899_10150366807533409_671893408_8488182_413034138_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1614777738/293899_10150366807533409_671893408_8488182_413034138_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@lxTooNxl you followed me just to clown me about my ravens :( lol", "to_user": "lxTooNxl", "to_user_id": 215302814, "to_user_id_str": "215302814", "to_user_name": "iTweeTePiX\\u2122", "in_reply_to_status_id": 148826061348667400, "in_reply_to_status_id_str": "148826061348667393"}, +{"created_at": "Mon, 19 Dec 2011 18:05:02 +0000", "from_user": "KiraVixxonn", "from_user_id": 153937472, "from_user_id_str": "153937472", "from_user_name": "Shakira Dixon", "geo": null, "id": 148826185177108480, "id_str": "148826185177108480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680367412/profile_image_1323324438435_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680367412/profile_image_1323324438435_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">twidroyd</a>", "text": "Corny + a clown = Pathetic ! Get it together ..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:04:59 +0000", "from_user": "_ChiChaChong_", "from_user_id": 399389449, "from_user_id_str": "399389449", "from_user_name": "chanel", "geo": null, "id": 148826174204821500, "id_str": "148826174204821504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1677097294/imagejpeg_3_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677097294/imagejpeg_3_2_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@RenitaLD21 @_fatfat_ lol that shit was cute don't clown Detroit like that lol", "to_user": "RenitaLD21", "to_user_id": 139193260, "to_user_id_str": "139193260", "to_user_name": "Renita La'Toya Dicks", "in_reply_to_status_id": 148824376224120830, "in_reply_to_status_id_str": "148824376224120833"}, +{"created_at": "Mon, 19 Dec 2011 18:04:58 +0000", "from_user": "VUHawkTalk", "from_user_id": 274188104, "from_user_id_str": "274188104", "from_user_name": "VU baseball tweeting", "geo": null, "id": 148826169381359600, "id_str": "148826169381359617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1291972962/Hawkins-field-night_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1291972962/Hawkins-field-night_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@agiobbi5 Perhaps the clown was talking about @ESPN_Colin getting a second serving of dessert?", "to_user": "agiobbi5", "to_user_id": 316723847, "to_user_id_str": "316723847", "to_user_name": "Andrew Giobbi", "in_reply_to_status_id": 148825592693932030, "in_reply_to_status_id_str": "148825592693932032"}, +{"created_at": "Mon, 19 Dec 2011 18:04:56 +0000", "from_user": "MikeHurst_1word", "from_user_id": 207272991, "from_user_id_str": "207272991", "from_user_name": "Michael K. Hurst II", "geo": null, "id": 148826161810653200, "id_str": "148826161810653184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1692412605/168484_1679379382410_1175280474_31672138_4267623_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692412605/168484_1679379382410_1175280474_31672138_4267623_n_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@_iBeBlazed lol oh ya such a good friend i have n u.. even though i should put that pic up since u wanted to clown me at Qs lol", "to_user": "_iBeBlazed", "to_user_id": 158271602, "to_user_id_str": "158271602", "to_user_name": "Taylor Harrell", "in_reply_to_status_id": 148826052960071680, "in_reply_to_status_id_str": "148826052960071680"}, +{"created_at": "Mon, 19 Dec 2011 18:04:55 +0000", "from_user": "jennibunnii", "from_user_id": 309164866, "from_user_id_str": "309164866", "from_user_name": "j\\u03B5\\u03B7\\u03B7 g\\u03B1\\u03C4\\u03B5s\\u2122\\u2648\\u0337\\u0334\\u0329", "geo": null, "id": 148826157628915700, "id_str": "148826157628915712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1663917170/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663917170/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:04:49 +0000", "from_user": "2_much103", "from_user_id": 46434478, "from_user_id_str": "46434478", "from_user_name": "2much", "geo": null, "id": 148826129715830800, "id_str": "148826129715830785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691789976/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691789976/image_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@rosenburgRaww that's some fag shit, no homo kid... And cuz yu a clown thinkin yu nice, nigga yu ain't shit!! Yu like it delete me pussy", "to_user": "rosenburgRaww", "to_user_id": 256772011, "to_user_id_str": "256772011", "to_user_name": "rosenburg raw"}, +{"created_at": "Mon, 19 Dec 2011 18:04:47 +0000", "from_user": "ItsBananasBITCH", "from_user_id": 374840861, "from_user_id_str": "374840861", "from_user_name": "Nya Bby", "geo": null, "id": 148826121683742720, "id_str": "148826121683742720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702214754/Img_00455_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702214754/Img_00455_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "im nt ur bby nd wats makes u think u cn just message me like u kno me CLOWN ? ?... u really just hoed urself BYE\\nChat Conversation End", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:04:46 +0000", "from_user": "BGIFF22", "from_user_id": 316029801, "from_user_id_str": "316029801", "from_user_name": "Ben Gifford", "geo": null, "id": 148826117871108100, "id_str": "148826117871108097", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1563199950/166920_1996733163623_1402316115_31791784_1879183750_a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1563199950/166920_1996733163623_1402316115_31791784_1879183750_a_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@tdeck10 your a clown", "to_user": "tdeck10", "to_user_id": 246458790, "to_user_id_str": "246458790", "to_user_name": "Tyler Deck", "in_reply_to_status_id": 148809615516254200, "in_reply_to_status_id_str": "148809615516254208"}, +{"created_at": "Mon, 19 Dec 2011 18:04:42 +0000", "from_user": "Yea_Im_Roxie", "from_user_id": 399555061, "from_user_id_str": "399555061", "from_user_name": "Booooom!", "geo": null, "id": 148826101173600260, "id_str": "148826101173600257", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702524717/picnick_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702524717/picnick_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@__OddDanny Follow Back Clown!", "to_user": "__OddDanny", "to_user_id": 273634020, "to_user_id_str": "273634020", "to_user_name": "OddFlo"}, +{"created_at": "Mon, 19 Dec 2011 18:04:38 +0000", "from_user": "Ohh_ItsLivvs", "from_user_id": 275244179, "from_user_id_str": "275244179", "from_user_name": "Olivia Walker", "geo": null, "id": 148826083834331140, "id_str": "148826083834331137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1298822137/18969_1317270935007_1327740938_911409_5694334_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1298822137/18969_1317270935007_1327740938_911409_5694334_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @ImeanIts_Meliss: This chinese boy in my class is a clown lmaoo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:04:30 +0000", "from_user": "SwagischMama", "from_user_id": 118076890, "from_user_id_str": "118076890", "from_user_name": "\\u10E6Derek's Wife.\\u10E6", "geo": null, "id": 148826050640613380, "id_str": "148826050640613376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698735327/oM8Vy7xR_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698735327/oM8Vy7xR_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I putted some red lipstick on my lips....( well duhh -.- ) but i kinda look like a clown.....so #RANDOM !!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:04:24 +0000", "from_user": "Mini_Boult", "from_user_id": 440039837, "from_user_id_str": "440039837", "from_user_name": "Mini Boult", "geo": null, "id": 148826026632421380, "id_str": "148826026632421376", "iso_language_code": "fi", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700167805/305314_213210728735307_100001391434320_630718_31676_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700167805/305314_213210728735307_100001391434320_630718_31676_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@jenniferoneilll OI OI VULIJ TOI YA CLOWN!", "to_user": "jenniferoneilll", "to_user_id": 419008460, "to_user_id_str": "419008460", "to_user_name": "Jennifer", "in_reply_to_status_id": 148824541391634430, "in_reply_to_status_id_str": "148824541391634433"}, +{"created_at": "Mon, 19 Dec 2011 18:04:23 +0000", "from_user": "83Staxx_Dro5", "from_user_id": 398506574, "from_user_id_str": "398506574", "from_user_name": "Leo Basegod", "geo": null, "id": 148826022974988300, "id_str": "148826022974988288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1619684511/de0334e53352__1320281394000_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619684511/de0334e53352__1320281394000_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Ya mean, watch out fa this clown w/ a red nose snatching purses and wallets, lol #nf meh B.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:04:19 +0000", "from_user": "_Moirai_", "from_user_id": 308158846, "from_user_id_str": "308158846", "from_user_name": "Terrie Keri Perry", "geo": null, "id": 148826004150943740, "id_str": "148826004150943744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700961729/331672947_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700961729/331672947_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@RUBIX_3_1906 I'm in Cola clown lol", "to_user": "RUBIX_3_1906", "to_user_id": 125861486, "to_user_id_str": "125861486", "to_user_name": "aka 3 TRAINZ!!!", "in_reply_to_status_id": 148825052748595200, "in_reply_to_status_id_str": "148825052748595200"}, +{"created_at": "Mon, 19 Dec 2011 18:04:17 +0000", "from_user": "D_Bodyguard", "from_user_id": 195185543, "from_user_id_str": "195185543", "from_user_name": "Biggs aKa DBodyguard", "geo": null, "id": 148825998224400400, "id_str": "148825998224400384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691911765/IMG00293-20101023-1122_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691911765/IMG00293-20101023-1122_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@UHateMsRoyalty and ya I read his lil bullshit comments. CLOWN", "to_user": "UHateMsRoyalty", "to_user_id": 25137122, "to_user_id_str": "25137122", "to_user_name": "Ms Carinne Royalty", "in_reply_to_status_id": 148819794395791360, "in_reply_to_status_id_str": "148819794395791360"}, +{"created_at": "Mon, 19 Dec 2011 18:04:17 +0000", "from_user": "JackMixFM", "from_user_id": 17001240, "from_user_id_str": "17001240", "from_user_name": "JackMix", "geo": null, "id": 148825996039159800, "id_str": "148825996039159808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1240443082/jackmix250_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1240443082/jackmix250_normal.png", "source": "<a href="http://getmarci.com" rel="nofollow">Marci</a>", "text": "Now playing Smokey Robinson & The Miracles - The Tears of a Clown on JackMix FM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:04:15 +0000", "from_user": "KiD_JWaLLe", "from_user_id": 238435433, "from_user_id_str": "238435433", "from_user_name": "JUICEEEE\\uE00E", "geo": null, "id": 148825987566682100, "id_str": "148825987566682113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691830718/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691830718/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@_MidgetMacDea lol that nigga dumb...how yu gone be short with clown feet that shit ugly.", "to_user": "_MidgetMacDea", "to_user_id": 235850510, "to_user_id_str": "235850510", "to_user_name": "de'aundria", "in_reply_to_status_id": 148825383280705540, "in_reply_to_status_id_str": "148825383280705537"}, +{"created_at": "Mon, 19 Dec 2011 18:04:11 +0000", "from_user": "ps_imabitcxh", "from_user_id": 54124128, "from_user_id_str": "54124128", "from_user_name": "joe trudyyy (:", "geo": null, "id": 148825974228787200, "id_str": "148825974228787200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693016568/IMAG0335_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693016568/IMAG0335_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "my BD is a true clown on god ; i want somebody to beat his assx .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:04:03 +0000", "from_user": "Superpaid_J", "from_user_id": 291974892, "from_user_id_str": "291974892", "from_user_name": "Justin Sweeting", "geo": null, "id": 148825939869040640, "id_str": "148825939869040640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1580103518/swagg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580103518/swagg_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ItsUltra_Violet ; youse a clown bui I fuckin gone ta break you up to the pool and you fuckin let melissa and TAVIA hodl you back df ?", "to_user": "ItsUltra_Violet", "to_user_id": 348767822, "to_user_id_str": "348767822", "to_user_name": "Raymond Dean"}, +{"created_at": "Mon, 19 Dec 2011 18:04:01 +0000", "from_user": "Cindy701", "from_user_id": 297494435, "from_user_id_str": "297494435", "from_user_name": "Cindy", "geo": null, "id": 148825929865633800, "id_str": "148825929865633792", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685226213/femkeee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685226213/femkeee_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "hahaha, iemand van Sangas is een CLOWN ahhah xd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:03:48 +0000", "from_user": "SpikeEskin", "from_user_id": 16203515, "from_user_id_str": "16203515", "from_user_name": "Spike Eskin", "geo": null, "id": 148825876258242560, "id_str": "148825876258242561", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1662746724/Mo_Speights_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662746724/Mo_Speights_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Michael Beasley seems like he's a real clown.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:03:48 +0000", "from_user": "fuckbo1", "from_user_id": 248071866, "from_user_id_str": "248071866", "from_user_name": "juan carlos mejia", "geo": null, "id": 148825874110746620, "id_str": "148825874110746624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1604633492/tV3M0Fr7_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1604633492/tV3M0Fr7_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I was Tha class clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:03:43 +0000", "from_user": "bardgirl", "from_user_id": 23489357, "from_user_id_str": "23489357", "from_user_name": "Barbara Desmond", "geo": null, "id": 148825854775001100, "id_str": "148825854775001088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1493805348/250px-Friendshipismagicpart1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1493805348/250px-Friendshipismagicpart1_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "I took \"What's Your Clown Name?\" and got \"Your Clown Name is Yobo Kornflake the Clown\" http://t.co/CBhEPrkh via @blogthings", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:03:40 +0000", "from_user": "Thatso_Asia", "from_user_id": 207656318, "from_user_id_str": "207656318", "from_user_name": "Asia Eddins", "geo": null, "id": 148825842590547970, "id_str": "148825842590547969", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698948574/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698948574/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "@warrendontcare lol clown", "to_user": "warrendontcare", "to_user_id": 151296939, "to_user_id_str": "151296939", "to_user_name": "Warren Womack", "in_reply_to_status_id": 148820700252213250, "in_reply_to_status_id_str": "148820700252213248"}, +{"created_at": "Mon, 19 Dec 2011 18:03:40 +0000", "from_user": "IAintFriendly7", "from_user_id": 243491202, "from_user_id_str": "243491202", "from_user_name": "Frank White", "geo": null, "id": 148825842364067840, "id_str": "148825842364067840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1576355072/253608_2132378307639_1191452914_2605321_7061942_n-1-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576355072/253608_2132378307639_1191452914_2605321_7061942_n-1-1_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Now I ain't gon' put you down but I ain't gon' put you on either\\nCause I should look like a clown if I should pick the wrong diva", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:03:28 +0000", "from_user": "AshSooAmazin", "from_user_id": 30368434, "from_user_id_str": "30368434", "from_user_name": " Ashley Graham ", "geo": null, "id": 148825790816063500, "id_str": "148825790816063490", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683873693/IMAG1065-2-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683873693/IMAG1065-2-1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@WhoCheckn_Coop All these clone niggas trying to be real. #clown\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:03:23 +0000", "from_user": "danhins02", "from_user_id": 351003855, "from_user_id_str": "351003855", "from_user_name": "Daniel Hinson", "geo": null, "id": 148825772130439170, "id_str": "148825772130439168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1589089722/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1589089722/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\"damn diarrhea clown, go!\" @s_hinson", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:03:16 +0000", "from_user": "TCPB_Finnigan", "from_user_id": 101383336, "from_user_id_str": "101383336", "from_user_name": "Finnigan Andretti", "geo": null, "id": 148825742271189000, "id_str": "148825742271188992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692550926/chilling_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692550926/chilling_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@TheManFeaz @Zo_HU2014 hahah ight bro we are not gonna clown you n your lateness anymore", "to_user": "TheManFeaz", "to_user_id": 261899338, "to_user_id_str": "261899338", "to_user_name": "Featherstone", "in_reply_to_status_id": 148825588398952450, "in_reply_to_status_id_str": "148825588398952450"}, +{"created_at": "Mon, 19 Dec 2011 18:03:08 +0000", "from_user": "KwekuM", "from_user_id": 51022650, "from_user_id_str": "51022650", "from_user_name": " Fela Bolade Mills", "geo": null, "id": 148825709387853820, "id_str": "148825709387853825", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675621973/pab_n_drey_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675621973/pab_n_drey_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@Ampy_boo all u need ryt nw is a painted face, big ass shoe n a big round red nose n tadaaa ur a complete clown cc @RoNkE22 @Cutbabe67", "to_user": "Ampy_boo", "to_user_id": 194067768, "to_user_id_str": "194067768", "to_user_name": "Afrakomah Frimpong"}, +{"created_at": "Mon, 19 Dec 2011 18:03:08 +0000", "from_user": "MalloryGriffith", "from_user_id": 440661814, "from_user_id_str": "440661814", "from_user_name": "Mallory Griffith", "geo": null, "id": 148825709136199680, "id_str": "148825709136199680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701779898/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701779898/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Just experienced a real clown sighting!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:03:07 +0000", "from_user": "RichardGaskins", "from_user_id": 165429850, "from_user_id_str": "165429850", "from_user_name": "Richard Gaskins", "geo": null, "id": 148825704161755140, "id_str": "148825704161755136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1371093992/MyPicture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1371093992/MyPicture_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Slow Defense #warrensapp #smart dummy #clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:02:59 +0000", "from_user": "Dylan_sheCOLE", "from_user_id": 163765700, "from_user_id_str": "163765700", "from_user_name": "Dylan McCoy :)", "geo": null, "id": 148825669449687040, "id_str": "148825669449687040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1678802787/Dylan_sheCOLE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678802787/Dylan_sheCOLE_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "@RollSUNNYUp jtfo lmfao you a clown man but thankss , *rolls up blunt put it ina air rise it to the SUN-NY*", "to_user": "RollSUNNYUp", "to_user_id": 137847953, "to_user_id_str": "137847953", "to_user_name": "SOULJA SUNNY"}, +{"created_at": "Mon, 19 Dec 2011 18:02:54 +0000", "from_user": "bardgirl", "from_user_id": 23489357, "from_user_id_str": "23489357", "from_user_name": "Barbara Desmond", "geo": null, "id": 148825647584788480, "id_str": "148825647584788481", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1493805348/250px-Friendshipismagicpart1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1493805348/250px-Friendshipismagicpart1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "I'm not sure if I want to find out my clown name.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:02:52 +0000", "from_user": "KayWho_KAYLAHx_", "from_user_id": 157810382, "from_user_id_str": "157810382", "from_user_name": "Kaylah Chalise", "geo": null, "id": 148825639997288450, "id_str": "148825639997288448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701465674/KayWho_KAYLAHx__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701465674/KayWho_KAYLAHx__normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@Brianna_World let me know when you are then clown !!", "to_user": "Brianna_World", "to_user_id": 401821728, "to_user_id_str": "401821728", "to_user_name": "\\u2718\\u2665O Brianna Here :)", "in_reply_to_status_id": 148823391925837820, "in_reply_to_status_id_str": "148823391925837824"}, +{"created_at": "Mon, 19 Dec 2011 18:02:41 +0000", "from_user": "ItsMeBonjabi", "from_user_id": 397260144, "from_user_id_str": "397260144", "from_user_name": "Benjamin", "geo": null, "id": 148825596615602180, "id_str": "148825596615602176", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693228411/Scary_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693228411/Scary_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ism4elp da ene lied met lil flamming faggots ken je wel tog? dat ie insane clown possy dissed xD hun ginge hem slim anus noeme xD", "to_user": "ism4elp", "to_user_id": 268918330, "to_user_id_str": "268918330", "to_user_name": "Ismaelp"}, +{"created_at": "Mon, 19 Dec 2011 18:02:41 +0000", "from_user": "agiobbi5", "from_user_id": 316723847, "from_user_id_str": "316723847", "from_user_name": "Andrew Giobbi", "geo": null, "id": 148825592693932030, "id_str": "148825592693932032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1396098557/Mavs_Catcher_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1396098557/Mavs_Catcher_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "some clown just called @ESPN_Colin \"retarted\" anybody else see the irony in that?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:02:37 +0000", "from_user": "gav_mind", "from_user_id": 266852778, "from_user_id_str": "266852778", "from_user_name": "Bob TheGorilla", "geo": null, "id": 148825579024683000, "id_str": "148825579024683008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696914872/sk8_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696914872/sk8_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@trudavy @VALvetcake lmfaooooooooo you a clown son haha", "to_user": "trudavy", "to_user_id": 14527145, "to_user_id_str": "14527145", "to_user_name": "Big Kahuna", "in_reply_to_status_id": 148825361596166140, "in_reply_to_status_id_str": "148825361596166144"}, +{"created_at": "Mon, 19 Dec 2011 18:02:37 +0000", "from_user": "ImeanIts_Meliss", "from_user_id": 389744333, "from_user_id_str": "389744333", "from_user_name": "Melissa Cedano", "geo": null, "id": 148825577439236100, "id_str": "148825577439236096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1656389306/330358595_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656389306/330358595_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "This chinese boy in my class is a clown lmaoo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:02:28 +0000", "from_user": "iSTART_Riots", "from_user_id": 110274272, "from_user_id_str": "110274272", "from_user_name": "Otis Alexander", "geo": null, "id": 148825539141054460, "id_str": "148825539141054464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1667128553/peuf_20111130_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667128553/peuf_20111130_3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @DontTellMe_Shit: Amber Rose getting famous off of these clown ass niggas!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:02:17 +0000", "from_user": "ImSo_Trill", "from_user_id": 301505583, "from_user_id_str": "301505583", "from_user_name": "Jay Roc ", "geo": null, "id": 148825495734206460, "id_str": "148825495734206464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1684662918/331208766_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684662918/331208766_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @WhoCheckn_Coop: All these clone niggas trying to be real. #clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:53 +0000", "from_user": "_yourboyfriends", "from_user_id": 130958927, "from_user_id_str": "130958927", "from_user_name": "est '93 \\u2665", "geo": null, "id": 148825391702884350, "id_str": "148825391702884352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700328362/IMG00935-20111217-2212_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700328362/IMG00935-20111217-2212_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@MrMichaelPalmer LOOOOL, shut up clown.", "to_user": "MrMichaelPalmer", "to_user_id": 176949236, "to_user_id_str": "176949236", "to_user_name": "Michael Armani P", "in_reply_to_status_id": 148824546382839800, "in_reply_to_status_id_str": "148824546382839809"}, +{"created_at": "Mon, 19 Dec 2011 18:01:52 +0000", "from_user": "yuckotheclown", "from_user_id": 30264815, "from_user_id_str": "30264815", "from_user_name": "Yucko The Clown", "geo": null, "id": 148825390650105860, "id_str": "148825390650105856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/132112923/Yuckofullbackrndsmller_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/132112923/Yuckofullbackrndsmller_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @1lakers24: @yuckotheclown its my b-day RT ME U STINKING CLOWN :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:46 +0000", "from_user": "MissUndersto_Od", "from_user_id": 226779088, "from_user_id_str": "226779088", "from_user_name": "Mrs Officer", "geo": null, "id": 148825365937270800, "id_str": "148825365937270784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693840002/IMAG1059-1-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693840002/IMAG1059-1-1_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "ha!!! RT \"@BakeGriffin: You'll never know how much of a clown you are until you look at ya old myspace pics...\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:40 +0000", "from_user": "RALPHLAUREN111", "from_user_id": 342206795, "from_user_id_str": "342206795", "from_user_name": "YUNG FUNERALL", "geo": null, "id": 148825338544271360, "id_str": "148825338544271361", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699518202/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699518202/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "TWEETING CUZZ YOUR MAD SUCH A CLOWN BE HAPPY PLEASE CAUSE I SHOULD BE MAD LMAO !!!fuck wrong wit biz ness minders lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:28 +0000", "from_user": "LiteskinFLYY", "from_user_id": 106598164, "from_user_id_str": "106598164", "from_user_name": "DonVanilla` ", "geo": null, "id": 148825287759642620, "id_str": "148825287759642624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695955736/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695955736/image_normal.jpg", "source": "<a href="http://www.handmark.com" rel="nofollow">TweetCaster for iOS</a>", "text": "\\uD83D\\uDE2D\\uD83D\\uDE02\\uD83D\\uDE31\\uD83D\\uDE2D\\uD83D\\uDE2D\\uD83D\\uDE2D\\uD83D\\uDE02\\uD83D\\uDE02\\uD83D\\uDE02\\uD83D\\uDE02\\uD83D\\uDE01you a clown son RT @MissyMula: I was so faded lastnight I fell off the chair LMFAOO !! \\uD83D\\uDE23", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:23 +0000", "from_user": "TracyLynnXoXo", "from_user_id": 340935167, "from_user_id_str": "340935167", "from_user_name": "Tracy Lynn", "geo": null, "id": 148825267446620160, "id_str": "148825267446620160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695849363/1324008213262_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695849363/1324008213262_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:11 +0000", "from_user": "bruddyan", "from_user_id": 237435788, "from_user_id_str": "237435788", "from_user_name": "Bryan Rudd", "geo": null, "id": 148825216028647420, "id_str": "148825216028647424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1644293193/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644293193/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Askew91 What do you expect from a clown like @midha_amit?", "to_user": "Askew91", "to_user_id": 417415379, "to_user_id_str": "417415379", "to_user_name": "James Askew", "in_reply_to_status_id": 148824608076857340, "in_reply_to_status_id_str": "148824608076857344"}, +{"created_at": "Mon, 19 Dec 2011 18:01:09 +0000", "from_user": "thecraven", "from_user_id": 75590818, "from_user_id_str": "75590818", "from_user_name": "Jeremy Craven", "geo": null, "id": 148825208676024320, "id_str": "148825208676024320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1263171447/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263171447/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@alexanderRAW how would you feel if I told you I'm under your bed in a clown suit. And I will fucking rape you. Like your dad did.", "to_user": "alexanderRAW", "to_user_id": 247895636, "to_user_id_str": "247895636", "to_user_name": "Alexander Raw", "in_reply_to_status_id": 148707793480855550, "in_reply_to_status_id_str": "148707793480855552"}, +{"created_at": "Mon, 19 Dec 2011 18:01:02 +0000", "from_user": "PolemicLicense", "from_user_id": 259536794, "from_user_id_str": "259536794", "from_user_name": "Michael Traeger", "geo": null, "id": 148825178992939000, "id_str": "148825178992939009", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1319458919/0513101240_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1319458919/0513101240_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#ThisChristmas, I promise to not put red clown noses on all the deer corpses on the side of the road, regardless of how funny it is.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:01 +0000", "from_user": "ImTWENTYBitchh_", "from_user_id": 262148918, "from_user_id_str": "262148918", "from_user_name": "Ray", "geo": null, "id": 148825176732217340, "id_str": "148825176732217344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695617685/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695617685/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "and i'll diss any clown that's clockin' my round ass !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:00 +0000", "from_user": "MiiSzCh3vali3r", "from_user_id": 37018767, "from_user_id_str": "37018767", "from_user_name": "MiiSzChEvaliEr", "geo": null, "id": 148825170050686980, "id_str": "148825170050686976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695493216/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695493216/image_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Xmas day I'll be looking like a model ((winter white knitted dress wiit beige gaiter pumps)) ya tu sabes #lmh I'm a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:59 +0000", "from_user": "maaikekorbee", "from_user_id": 229227453, "from_user_id_str": "229227453", "from_user_name": "\\u1D0D\\u1D00\\u1D00\\u026A\\u1D0B\\u1D07 \\u2654", "geo": null, "id": 148825168402325500, "id_str": "148825168402325505", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668098631/330728537_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668098631/330728537_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @markvdplas: @maaikekorbee jij bent zeker een clown bij de bztshow ?:$ //HA-HA niet grappig mark :( maar danny gaat n kerstwens inspreken", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:56 +0000", "from_user": "SongWallgren189", "from_user_id": 343896385, "from_user_id_str": "343896385", "from_user_name": "Song Wallgren", "geo": null, "id": 148825155458707460, "id_str": "148825155458707456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702432396/121957165113945_1133378066961_1602577984_30311432_6875447_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702432396/121957165113945_1133378066961_1602577984_30311432_6875447_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Knock Knock. Who's there? Clown! Clown who? Clown for the count!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:56 +0000", "from_user": "CFAWillowLawn", "from_user_id": 104254929, "from_user_id_str": "104254929", "from_user_name": "CFA Willow Lawn", "geo": null, "id": 148825153147637760, "id_str": "148825153147637761", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/634095332/pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/634095332/pic_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Tomorrow Miss Sheri the Clown will be here for family night. Join us and enter to win a 2012 Cow Calendar. 5-8pm.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:40 +0000", "from_user": "AudryBabyy", "from_user_id": 203154662, "from_user_id_str": "203154662", "from_user_name": "A U D R Y ", "geo": null, "id": 148825088295313400, "id_str": "148825088295313408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1660869861/pink_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660869861/pink_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "He called me a clown lmaoo -.-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:38 +0000", "from_user": "WTFCharlieSay", "from_user_id": 225464657, "from_user_id_str": "225464657", "from_user_name": "Charlie Odell", "geo": null, "id": 148825076890996740, "id_str": "148825076890996736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690297797/393416_285760058133116_100000973710661_792446_810177474_a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690297797/393416_285760058133116_100000973710661_792446_810177474_a_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Lmfao , CLOWN !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:37 +0000", "from_user": "MEaGleeK", "from_user_id": 222884955, "from_user_id_str": "222884955", "from_user_name": "Aruna Ravi", "geo": null, "id": 148825074798051330, "id_str": "148825074798051332", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696941986/tumblr_lwb0oclWit1r61anuo1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696941986/tumblr_lwb0oclWit1r61anuo1_500_normal.jpg", "source": "<a href="http://twuffer.com" rel="nofollow">Twuffer</a>", "text": "RT @WeThinkEpic: Whenever i see a clown fish I immediately think: \"DAMN, NEMO IS HERE. HE'S HERE!\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:35 +0000", "from_user": "_rubyrozayy", "from_user_id": 111917503, "from_user_id_str": "111917503", "from_user_name": " MISS\\u2764LOVE ", "geo": null, "id": 148825066023563260, "id_str": "148825066023563264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701275742/_rubyrozayy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701275742/_rubyrozayy_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "hahaha RT @ProperPeter: Ur a dam clown son lol RT @_rubyrozayy: the only thing going in unprotected is these tweets! lls", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:31 +0000", "from_user": "_NotAFuckGiven", "from_user_id": 314942893, "from_user_id_str": "314942893", "from_user_name": "The Grim Reaper \\uE11C", "geo": null, "id": 148825051221864450, "id_str": "148825051221864448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691604244/twit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691604244/twit_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @based_spacely: @_NotAFuckGiven u a clown son", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:31 +0000", "from_user": "Nina_Beezyy", "from_user_id": 391660116, "from_user_id_str": "391660116", "from_user_name": "Ninaaa", "geo": null, "id": 148825050039062530, "id_str": "148825050039062528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701109090/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701109090/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Sitting in Del Taco & they're playing clown musicO.o\\n#Scary", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:29 +0000", "from_user": "bangmitchgang", "from_user_id": 321690961, "from_user_id_str": "321690961", "from_user_name": "Bang'Em Mitch", "geo": null, "id": 148825042401239040, "id_str": "148825042401239041", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697329287/TPhoto_00036_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697329287/TPhoto_00036_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Ctfu !! Clown !!! Oomf is a full time auntie !!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:27 +0000", "from_user": "fuckikz", "from_user_id": 84688633, "from_user_id_str": "84688633", "from_user_name": "none of yo business.", "geo": null, "id": 148825034775998460, "id_str": "148825034775998466", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702410577/331704188_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702410577/331704188_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @RussNOUVEAU: Looking through my tweets! The amount of times I've been hacked by this clown @fuckikz \\u00AB love you too", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:26 +0000", "from_user": "OshaaVIIXXVIII_", "from_user_id": 244328620, "from_user_id_str": "244328620", "from_user_name": "Oshaaaaaaaaaaaaaa !", "geo": null, "id": 148825028073500670, "id_str": "148825028073500672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701711427/webcam-toy-photo18_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701711427/webcam-toy-photo18_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "she look like a fuckn clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:17 +0000", "from_user": "SlimJim_Keish", "from_user_id": 62971855, "from_user_id_str": "62971855", "from_user_name": "Keisha Renae", "geo": null, "id": 148824990316376060, "id_str": "148824990316376065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694029517/imagejpeg_2_8_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694029517/imagejpeg_2_8_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @Quan_iBall_Jr: Lol & u know this .... Maaan! RT @SlimJim_Keish: Went to bed happy cus of @Quan_iBall_Jr , that nigga a clown forreal lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:08 +0000", "from_user": "_T_R_I_S_H_", "from_user_id": 234584618, "from_user_id_str": "234584618", "from_user_name": "Trisha", "geo": null, "id": 148824954052411400, "id_str": "148824954052411392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699396096/2011-11-30_18.32.19_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699396096/2011-11-30_18.32.19_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@MoGotti__ I can't Stand clown ass niggas\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:02 +0000", "from_user": "KoolAzzRayBans", "from_user_id": 334026152, "from_user_id_str": "334026152", "from_user_name": "Ray Tucker", "geo": null, "id": 148824929612206080, "id_str": "148824929612206080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1638355102/Fresh_Blue_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638355102/Fresh_Blue_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Some Females dont know if they Wanna Be Pretty or a Clown with all that Make Up On SMH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:02 +0000", "from_user": "blogthings", "from_user_id": 1063851, "from_user_id_str": "1063851", "from_user_name": "Blogthings", "geo": null, "id": 148824928978862080, "id_str": "148824928978862080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/661340523/twitter-sm_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/661340523/twitter-sm_normal.gif", "source": "<a href="http://www.blogthings.com" rel="nofollow">Blogthings</a>", "text": "What's Your Clown Name? - http://t.co/8D8hWE6K - The internet is hard, let's take quizzes!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:02 +0000", "from_user": "christophe229", "from_user_id": 273121978, "from_user_id_str": "273121978", "from_user_name": "Christophe Dedoncker", "geo": null, "id": 148824928920141820, "id_str": "148824928920141826", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1389179514/6735_1244117221892_1198214680_722020_853567_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1389179514/6735_1244117221892_1198214680_722020_853567_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@StenDD clown", "to_user": "StenDD", "to_user_id": 186774297, "to_user_id_str": "186774297", "to_user_name": "Sten De Doncker", "in_reply_to_status_id": 148813911901216770, "in_reply_to_status_id_str": "148813911901216768"}, +{"created_at": "Mon, 19 Dec 2011 18:00:01 +0000", "from_user": "VaginaVillian", "from_user_id": 188314419, "from_user_id_str": "188314419", "from_user_name": "Pussy Monster", "geo": null, "id": 148824922410586100, "id_str": "148824922410586112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1654608574/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654608574/profile_normal.png", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "My Older Brother is A Clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:45 +0000", "from_user": "DontTellMe_Shit", "from_user_id": 317573990, "from_user_id_str": "317573990", "from_user_name": "Vonte Folarin", "geo": null, "id": 148824854882295800, "id_str": "148824854882295808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1678185404/111206-205322_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678185404/111206-205322_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Amber Rose getting famous off of these clown ass niggas!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:40 +0000", "from_user": "Str8_Gosa", "from_user_id": 336851250, "from_user_id_str": "336851250", "from_user_name": "Ruben G", "geo": null, "id": 148824834661560320, "id_str": "148824834661560321", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699094677/KiwanGn5_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699094677/KiwanGn5_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Clown do kinda look scary ...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:39 +0000", "from_user": "allyK4T83", "from_user_id": 190649143, "from_user_id_str": "190649143", "from_user_name": "Ally Ross", "geo": null, "id": 148824832660869120, "id_str": "148824832660869120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1551893033/28787_411726318600_508563600_4423475_677288_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1551893033/28787_411726318600_508563600_4423475_677288_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@JackWilshere another brilliant tweet there jack. #clown", "to_user": "JackWilshere", "to_user_id": 183206939, "to_user_id_str": "183206939", "to_user_name": "Jack Wilshere", "in_reply_to_status_id": 148822930552393730, "in_reply_to_status_id_str": "148822930552393728"}, +{"created_at": "Mon, 19 Dec 2011 17:59:35 +0000", "from_user": "Docholiday86", "from_user_id": 23137320, "from_user_id_str": "23137320", "from_user_name": "Doc-Holiday", "geo": null, "id": 148824815233544200, "id_str": "148824815233544192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700942842/avatar_normal.JPEG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700942842/avatar_normal.JPEG", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "I got your clown fool .. that's why your baby be punking you", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:29 +0000", "from_user": "PublicFrenemies", "from_user_id": 230971759, "from_user_id_str": "230971759", "from_user_name": "Bri Al-Amin\\uE105", "geo": null, "id": 148824790902382600, "id_str": "148824790902382593", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695983196/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695983196/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @_ImmaTweetItUp: @PublicFrenemies (: all we do is clown naa . & tell stories bout school & olee times .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:26 +0000", "from_user": "ChiinkyXXXi", "from_user_id": 64547669, "from_user_id_str": "64547669", "from_user_name": "Desiree Latrease", "geo": null, "id": 148824776604008450, "id_str": "148824776604008448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1672021668/cropped_mangos_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672021668/cropped_mangos_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Like yur not being funny yur a clown lmfaooooo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:25 +0000", "from_user": "aztec_izzybae", "from_user_id": 300028588, "from_user_id_str": "300028588", "from_user_name": "izzybizzy", "geo": null, "id": 148824773005291520, "id_str": "148824773005291520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688869190/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688869190/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:22 +0000", "from_user": "EddGalvao", "from_user_id": 340451350, "from_user_id_str": "340451350", "from_user_name": "Threadless", "geo": null, "id": 148824761626144770, "id_str": "148824761626144770", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1556916616/OgAAAIoekfoh6soYpugScGhxBQRP_vIlLn7uCrs3CEFxh5rbsUGXLk256G4AN1IzTM0QUu16IlciLp4QCqCh7cSqji4Am1T1UKegF6swCl2VhBzimjJB-fIWw844_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1556916616/OgAAAIoekfoh6soYpugScGhxBQRP_vIlLn7uCrs3CEFxh5rbsUGXLk256G4AN1IzTM0QUu16IlciLp4QCqCh7cSqji4Am1T1UKegF6swCl2VhBzimjJB-fIWw844_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Amanha logo mais vo pratica um street clown ! hehehe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:20 +0000", "from_user": "Ashinnn_kusher", "from_user_id": 334803657, "from_user_id_str": "334803657", "from_user_name": "Walt B", "geo": null, "id": 148824750297317380, "id_str": "148824750297317376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696984401/facetime2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696984401/facetime2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @WhoCheckn_Coop: All these clone niggas trying to be real. #clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:19 +0000", "from_user": "NVBdaMVP", "from_user_id": 159017546, "from_user_id_str": "159017546", "from_user_name": "Daddy's Girl", "geo": null, "id": 148824748200181760, "id_str": "148824748200181760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1416662463/IMG00320-20110615-1616_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1416662463/IMG00320-20110615-1616_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Got women have surgery to remove essential organs because they are afraid one day you will clown their picture", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:09 +0000", "from_user": "WhoCheckn_Coop", "from_user_id": 246959435, "from_user_id_str": "246959435", "from_user_name": "Tev Coop", "geo": null, "id": 148824705791565820, "id_str": "148824705791565824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702534210/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702534210/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "All these clone niggas trying to be real. #clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:01 +0000", "from_user": "_ImmaTweetItUp", "from_user_id": 297795224, "from_user_id_str": "297795224", "from_user_name": "\\u2661 \\u24DA\\u24D8\\u24E3\\u24E3\\u24E8 \\u24E6\\u24D7\\u24D8\\u24E3\\u24D4 \\u2661", "geo": null, "id": 148824674028101630, "id_str": "148824674028101632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1665604945/T7HXTzl2_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665604945/T7HXTzl2_normal", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "@PublicFrenemies (: all we do is clown naa . & tell stories bout school & olee times .", "to_user": "PublicFrenemies", "to_user_id": 230971759, "to_user_id_str": "230971759", "to_user_name": "Bri Al-Amin\\uE105"}, +{"created_at": "Mon, 19 Dec 2011 17:59:01 +0000", "from_user": "HeyImNiesha", "from_user_id": 56296455, "from_user_id_str": "56296455", "from_user_name": "Niesha Lake", "geo": null, "id": 148824670366478340, "id_str": "148824670366478337", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1652559958/rANcqLEp_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652559958/rANcqLEp_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "i wonder how many of my followers be clown'n at church \\uE037 ! ? , shout'n dance'n etc. \\u2026 i \\uE022 it ! \\uE427\\uE41D\\uE00F\\uE41F !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:57 +0000", "from_user": "Bright_eyez122", "from_user_id": 72702269, "from_user_id_str": "72702269", "from_user_name": "Bright_eyez122", "geo": null, "id": 148824654839156740, "id_str": "148824654839156736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689623038/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689623038/profile_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "RT @BakeGriffin: You'll never know how much of a clown you are until you look at ya old myspace pics...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:55 +0000", "from_user": "olliejenks85", "from_user_id": 437459987, "from_user_id_str": "437459987", "from_user_name": "Oliver Jenkins", "geo": null, "id": 148824647461384200, "id_str": "148824647461384192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Oo look... I gotta Porsche, but I won't do more than 38 in a 60 tho!! Clown!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:49 +0000", "from_user": "dopee_boi", "from_user_id": 430921180, "from_user_id_str": "430921180", "from_user_name": "danny ribeiro", "geo": null, "id": 148824620768825340, "id_str": "148824620768825344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691880273/c8f9oYTM_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691880273/c8f9oYTM_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@softcheekz fck uppp clown", "to_user": "softcheekz", "to_user_id": 423989565, "to_user_id_str": "423989565", "to_user_name": "kristaaaaay.\\u2122", "in_reply_to_status_id": 148802134882783230, "in_reply_to_status_id_str": "148802134882783233"}, +{"created_at": "Mon, 19 Dec 2011 17:58:45 +0000", "from_user": "Real_turtle", "from_user_id": 365416059, "from_user_id_str": "365416059", "from_user_name": "free my bruthas", "geo": null, "id": 148824606780833800, "id_str": "148824606780833792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1522216677/1y8yzqV9_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1522216677/1y8yzqV9_normal", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:31 +0000", "from_user": "Mrs_TooHottie", "from_user_id": 239644300, "from_user_id_str": "239644300", "from_user_name": "Ge'Kirra Dickson", "geo": null, "id": 148824547259465730, "id_str": "148824547259465728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677409341/imagejpeg_2_4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677409341/imagejpeg_2_4_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "Pot a clown!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:24 +0000", "from_user": "Skygrade", "from_user_id": 22882763, "from_user_id_str": "22882763", "from_user_name": "MaryJane", "geo": null, "id": 148824516833976320, "id_str": "148824516833976320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689378753/331371678_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689378753/331371678_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "No they bro's clown ... They be frontin for da homies ... RT @Frassout_Tip: 95% of niggas uptown is gyal clowns", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:19 +0000", "from_user": "BakeGriffin", "from_user_id": 339164974, "from_user_id_str": "339164974", "from_user_name": "Chubbz ", "geo": null, "id": 148824497389182980, "id_str": "148824497389182976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689393902/profile_image_1323713470162_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689393902/profile_image_1323713470162_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "You'll never know how much of a clown you are until you look at ya old myspace pics...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:17 +0000", "from_user": "PeuBallerine", "from_user_id": 172464471, "from_user_id_str": "172464471", "from_user_name": "Paris Morton", "geo": null, "id": 148824488455311360, "id_str": "148824488455311360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1684385643/Snapshot_20111209_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684385643/Snapshot_20111209_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Why this clown tryna make convo ''iSaw you one day''", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:16 +0000", "from_user": "markvdplas", "from_user_id": 261620769, "from_user_id_str": "261620769", "from_user_name": "Mark van der plas.", "geo": null, "id": 148824481476001800, "id_str": "148824481476001794", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1669521773/1416812986_5_CmK__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669521773/1416812986_5_CmK__normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@maaikekorbee jij bent zeker een clown bij de bztshow ?:$", "to_user": "maaikekorbee", "to_user_id": 229227453, "to_user_id_str": "229227453", "to_user_name": "\\u1D0D\\u1D00\\u1D00\\u026A\\u1D0B\\u1D07 \\u2654"}, +{"created_at": "Mon, 19 Dec 2011 17:58:14 +0000", "from_user": "ShizzyMac_", "from_user_id": 39112477, "from_user_id_str": "39112477", "from_user_name": "Shawna Murphy", "geo": null, "id": 148824473787838460, "id_str": "148824473787838464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1674861298/GosmsPhoto1322852503107_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674861298/GosmsPhoto1322852503107_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Btw For All You Misrable Pple Me & My Girl Is Cooling Im Just Pissed/Irked With Her , Stop Wishing For Us To Fail Yall Fucking Clown Cunts *", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:11 +0000", "from_user": "RussNOUVEAU", "from_user_id": 266492492, "from_user_id_str": "266492492", "from_user_name": "Russell Blayne Ford", "geo": null, "id": 148824460252815360, "id_str": "148824460252815360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702517134/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702517134/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Looking through my tweets! The amount of times I've been hacked by this clown @fuckikz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:07 +0000", "from_user": "4RocsB4theBeat", "from_user_id": 203559040, "from_user_id_str": "203559040", "from_user_name": "H.Roc", "geo": null, "id": 148824447292407800, "id_str": "148824447292407808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1658778242/untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658778242/untitled_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Steve Carell is a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:07 +0000", "from_user": "88_JaneDoe", "from_user_id": 102286132, "from_user_id_str": "102286132", "from_user_name": "Is It Ledie ", "geo": null, "id": 148824443970519040, "id_str": "148824443970519041", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682202283/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682202283/profile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "lls im texting and im looking up words to write lls #clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:06 +0000", "from_user": "OhGee_Status", "from_user_id": 226290020, "from_user_id_str": "226290020", "from_user_name": "Albert Johnson", "geo": null, "id": 148824441248419840, "id_str": "148824441248419840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692931293/Snapshot_20110923_1_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692931293/Snapshot_20110923_1_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "I'm amazed you clown niccas are still around!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:52 +0000", "from_user": "CraziSexiCool17", "from_user_id": 382516066, "from_user_id_str": "382516066", "from_user_name": "\\u0118\\u0157\\u012F\\u014B \\u0136\\u0119\\u014Bd\\u0105\\u026D\\u026D", "geo": null, "id": 148824381878054900, "id_str": "148824381878054912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685250271/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685250271/image_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", "text": "Whatever clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:47 +0000", "from_user": "co_2sweet", "from_user_id": 275135003, "from_user_id_str": "275135003", "from_user_name": "MotherOfAmari&Caleb ", "geo": null, "id": 148824363750268930, "id_str": "148824363750268929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1645926835/cocoa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645926835/cocoa_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Stop trying to clown me that was suppose to be see RT @Red_ops: \\u201C@co_2sweet: Shitt fool long time (cont) http://t.co/c0HmAWSc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:37 +0000", "from_user": "RoYal_BaDDBarB", "from_user_id": 227414155, "from_user_id_str": "227414155", "from_user_name": "D.Netta BaDDAzz", "geo": null, "id": 148824318527275000, "id_str": "148824318527275009", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693656641/381908_340262119321573_100000133622401_1566922_855709810_n-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693656641/381908_340262119321573_100000133622401_1566922_855709810_n-1_normal.jpg", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "I Just Laugh At Him #Clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:31 +0000", "from_user": "SkinTanHairLonq", "from_user_id": 189030336, "from_user_id_str": "189030336", "from_user_name": "FASHION\\uE13EBoss\\uE139Mel\\uE31C", "geo": null, "id": 148824294053515260, "id_str": "148824294053515264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692262571/YXtVf3bO_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692262571/YXtVf3bO_normal", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "\"@Grlwitdatattoo_: @SkinTanHairLonq lol my Clown ass went & got fitted 4 them and all lol\" lol it's cool, I kudnt see you wearing them now", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:21 +0000", "from_user": "StayRealBitch", "from_user_id": 368375242, "from_user_id_str": "368375242", "from_user_name": "S", "geo": null, "id": 148824250550206460, "id_str": "148824250550206464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702047659/YUSRA_EE_9A_84__D9_8A_D8_B3_D8_B1.jpg_normal.rem", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702047659/YUSRA_EE_9A_84__D9_8A_D8_B3_D8_B1.jpg_normal.rem", "source": "<a href="http://twitter.com/">web</a>", "text": "Can't be bothered to walk this clown to the bus stop LOL ..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:14 +0000", "from_user": "BHUNT_3", "from_user_id": 271834514, "from_user_id_str": "271834514", "from_user_name": "Brandon Hunter", "geo": null, "id": 148824221160706050, "id_str": "148824221160706048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1624877326/IMG_0336_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624877326/IMG_0336_normal.JPG", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@outcheavilleUSA lmao you a clown bro I swear lol", "to_user": "outcheavilleUSA", "to_user_id": 34562968, "to_user_id_str": "34562968", "to_user_name": "Butch McRae", "in_reply_to_status_id": 148823136509509630, "in_reply_to_status_id_str": "148823136509509632"}, +{"created_at": "Mon, 19 Dec 2011 17:57:11 +0000", "from_user": "FantasyGirl_S2", "from_user_id": 232916709, "from_user_id_str": "232916709", "from_user_name": "Flor Chavez", "geo": null, "id": 148824210670764030, "id_str": "148824210670764032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687926079/379044_324287177597298_100000480559575_1319051_157140427_a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687926079/379044_324287177597298_100000480559575_1319051_157140427_a_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:09 +0000", "from_user": "MoGotti__", "from_user_id": 242403507, "from_user_id_str": "242403507", "from_user_name": "Mo Got EM!", "geo": null, "id": 148824202500251650, "id_str": "148824202500251648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1615282402/yagirl_Mogotti_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615282402/yagirl_Mogotti_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "I can't Stand clown ass niggas", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:06 +0000", "from_user": "Cruddycj15", "from_user_id": 397001923, "from_user_id_str": "397001923", "from_user_name": "Ihoopcj#15", "geo": null, "id": 148824188780679170, "id_str": "148824188780679168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1604099838/c1w7l4MT_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1604099838/c1w7l4MT_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Clown ass gurls in my 5th period class", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:59 +0000", "from_user": "jOiNdAWAVE69", "from_user_id": 333381303, "from_user_id_str": "333381303", "from_user_name": "Head Honcho\\u270C", "geo": null, "id": 148824161677090800, "id_str": "148824161677090816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689575794/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689575794/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "ctfu this bitch on my TL a clown and the nigga she talking bout is too", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:56 +0000", "from_user": "RidinGTI239", "from_user_id": 55010593, "from_user_id_str": "55010593", "from_user_name": "Nils Oland", "geo": null, "id": 148824148188213250, "id_str": "148824148188213250", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1423394127/nil_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1423394127/nil_1_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:55 +0000", "from_user": "Dooreannuh", "from_user_id": 323427501, "from_user_id_str": "323427501", "from_user_name": "LaDori. ", "geo": null, "id": 148824141720588300, "id_str": "148824141720588288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702459556/m5c44MlP_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702459556/m5c44MlP_normal", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @MeLuvULongTime_: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boi i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:43 +0000", "from_user": "MidSmokinMoney", "from_user_id": 398186908, "from_user_id_str": "398186908", "from_user_name": "Racks Charles", "geo": null, "id": 148824091569299460, "id_str": "148824091569299456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1658782721/390223_144032149035910_100002873780974_162565_975875932_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658782721/390223_144032149035910_100002873780974_162565_975875932_n_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "A clown got a fake face stuntin we get muney!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:35 +0000", "from_user": "samanthahalpa", "from_user_id": 346938202, "from_user_id_str": "346938202", "from_user_name": "samantha halpa", "geo": null, "id": 148824059117969400, "id_str": "148824059117969408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701346703/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701346703/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:33 +0000", "from_user": "Grlwitdatattoo_", "from_user_id": 112766866, "from_user_id_str": "112766866", "from_user_name": "\\u211Ciley! ", "geo": null, "id": 148824053057196030, "id_str": "148824053057196032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702150370/Grlwitdatattoo__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702150370/Grlwitdatattoo__normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@SkinTanHairLonq lol my Clown ass went & got fitted 4 them and all lol", "to_user": "SkinTanHairLonq", "to_user_id": 189030336, "to_user_id_str": "189030336", "to_user_name": "FASHION\\uE13EBoss\\uE139Mel\\uE31C", "in_reply_to_status_id": 148823732197146620, "in_reply_to_status_id_str": "148823732197146625"}, +{"created_at": "Mon, 19 Dec 2011 17:56:31 +0000", "from_user": "Erickafik", "from_user_id": 440172775, "from_user_id_str": "440172775", "from_user_name": "Ericka Rower", "geo": null, "id": 148824042718240770, "id_str": "148824042718240769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700481111/large_Me_in_New_Jersey_008_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700481111/large_Me_in_New_Jersey_008_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Flint Rasmussen - PBR Clown 32\" x 74\" Print Stand Up: Flint Rasmussen - PBR Clown 32\" x 74\" Print Stand Up print... http://t.co/23EH8vgh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:26 +0000", "from_user": "LetsTalkDinero", "from_user_id": 260741100, "from_user_id_str": "260741100", "from_user_name": "DINERO DUARTE", "geo": null, "id": 148824023156015100, "id_str": "148824023156015104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698566775/331616748_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698566775/331616748_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@KassieSays_ lol clown", "to_user": "KassieSays_", "to_user_id": 231328198, "to_user_id_str": "231328198", "to_user_name": "Kassandra B.", "in_reply_to_status_id": 148823899688275970, "in_reply_to_status_id_str": "148823899688275969"}, +{"created_at": "Mon, 19 Dec 2011 17:56:22 +0000", "from_user": "sching108", "from_user_id": 101766116, "from_user_id_str": "101766116", "from_user_name": "SCHING", "geo": null, "id": 148824005611225100, "id_str": "148824005611225088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702306306/393415_10150450556948682_612598681_8888232_1954445718_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702306306/393415_10150450556948682_612598681_8888232_1954445718_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@icelemongirl the clown die thn they go thn no more *.*", "to_user": "icelemongirl", "to_user_id": 116821810, "to_user_id_str": "116821810", "to_user_name": "\\uE030\\uE204\\uBC15\\uD790\\uD790\\uE204\\uE32E", "in_reply_to_status_id": 148823173079629820, "in_reply_to_status_id_str": "148823173079629824"}, +{"created_at": "Mon, 19 Dec 2011 17:56:22 +0000", "from_user": "Phiko_nC88", "from_user_id": 282545278, "from_user_id_str": "282545278", "from_user_name": "Phikolomzi Ncayiyana", "geo": null, "id": 148824005321818100, "id_str": "148824005321818113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1643970696/329951110_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643970696/329951110_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "'Uyimalini owafifteen'.. Hahahahaha.. Luthando ds clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:21 +0000", "from_user": "Just_Jazzie", "from_user_id": 29775904, "from_user_id_str": "29775904", "from_user_name": "Jazmen", "geo": null, "id": 148823999563042800, "id_str": "148823999563042817", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1658333781/me_PnA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658333781/me_PnA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "She doesn't even have her license fuckin clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:20 +0000", "from_user": "_ImDarkNLovelY", "from_user_id": 265786053, "from_user_id_str": "265786053", "from_user_name": "Monique Davaul\\u2661", "geo": null, "id": 148823997407182850, "id_str": "148823997407182849", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1609629055/cool_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609629055/cool_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @ballislyfe_1: Clown ass niggas lls", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:14 +0000", "from_user": "Yepp_shawtyBAD", "from_user_id": 368373260, "from_user_id_str": "368373260", "from_user_name": "Lah'Ray:)", "geo": null, "id": 148823973461893120, "id_str": "148823973461893120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1634595090/qioS9hNQ_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634595090/qioS9hNQ_normal", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @SignedWhitLove: -____- RT @SayBLACK3x_: I am not a class clown!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:06 +0000", "from_user": "MAXfuckingCOHEN", "from_user_id": 29286410, "from_user_id_str": "29286410", "from_user_name": "Max Cohen", "geo": null, "id": 148823937827086340, "id_str": "148823937827086336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697338216/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697338216/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:02 +0000", "from_user": "lovingme_09", "from_user_id": 55287428, "from_user_id_str": "55287428", "from_user_name": "Tawiah Trent", "geo": null, "id": 148823921611915260, "id_str": "148823921611915266", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1544475817/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544475817/me_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Ppl b thinking they too much bt in reality they r not all that! Smh take a seat! #clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:46 +0000", "from_user": "Ricciboy", "from_user_id": 73260948, "from_user_id_str": "73260948", "from_user_name": "Jonathan Ricci", "geo": null, "id": 148823856042352640, "id_str": "148823856042352640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1678203801/63436_477484567877_631717877_5569427_2295107_n_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678203801/63436_477484567877_631717877_5569427_2295107_n_normal.jpeg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Finished Freud presentation #thankgod didn't help when someone showed a picture of a clown when I'm trying to talk about Freud. #Enjoy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:46 +0000", "from_user": "shant1378", "from_user_id": 223964763, "from_user_id_str": "223964763", "from_user_name": "lashanti", "geo": null, "id": 148823852972130300, "id_str": "148823852972130304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692243178/profile_image_1323836672354_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692243178/profile_image_1323836672354_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "S/o to @JetLife_weez clown ass liein ass nigga!!!!! \\uE418", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:38 +0000", "from_user": "wordtwista445", "from_user_id": 403855995, "from_user_id_str": "403855995", "from_user_name": "michael hernandez", "geo": null, "id": 148823822160773120, "id_str": "148823822160773120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1619965417/301520_234966263229123_100001472542240_655485_1477546366_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619965417/301520_234966263229123_100001472542240_655485_1477546366_n_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 17:55:46 +0000", "from_user": "shant1378", "from_user_id": 223964763, "from_user_id_str": "223964763", "from_user_name": "lashanti", "geo": null, "id": 148823852972130300, "id_str": "148823852972130304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692243178/profile_image_1323836672354_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692243178/profile_image_1323836672354_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "S/o to @JetLife_weez clown ass liein ass nigga!!!!! \\uE418", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:38 +0000", "from_user": "wordtwista445", "from_user_id": 403855995, "from_user_id_str": "403855995", "from_user_name": "michael hernandez", "geo": null, "id": 148823822160773120, "id_str": "148823822160773120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1619965417/301520_234966263229123_100001472542240_655485_1477546366_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619965417/301520_234966263229123_100001472542240_655485_1477546366_n_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:34 +0000", "from_user": "TyDi_shirts", "from_user_id": 249911658, "from_user_id_str": "249911658", "from_user_name": "rough rider.", "geo": null, "id": 148823802506252300, "id_str": "148823802506252289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686594427/wow_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686594427/wow_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SayBLACK3x_: I am not a class clown!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:33 +0000", "from_user": "CatheyHaese3964", "from_user_id": 343902011, "from_user_id_str": "343902011", "from_user_name": "Cathey Haese", "geo": null, "id": 148823798320349200, "id_str": "148823798320349184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702445597/5913801804942970583a11147370220l_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702445597/5913801804942970583a11147370220l_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I remain just one thing, and one thing only -- and that is a clown. It places me on a far higher plane than any politician.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:26 +0000", "from_user": "RoThePooleBoy", "from_user_id": 54699962, "from_user_id_str": "54699962", "from_user_name": "Robert Edward Poole", "geo": null, "id": 148823770445004800, "id_str": "148823770445004800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1678200400/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678200400/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:25 +0000", "from_user": "Nick_Luger", "from_user_id": 354761445, "from_user_id_str": "354761445", "from_user_name": "Nick L. Herring ", "geo": null, "id": 148823764531036160, "id_str": "148823764531036160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1600248738/225670_10150178926567808_661857807_6673165_4631575_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600248738/225670_10150178926567808_661857807_6673165_4631575_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "How u gonna clown me and you look like a devilish mouse??", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:20 +0000", "from_user": "ScottyO_10", "from_user_id": 318194705, "from_user_id_str": "318194705", "from_user_name": "Scott Ogden", "geo": null, "id": 148823746747170800, "id_str": "148823746747170816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1678079982/161202_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678079982/161202_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@h_schaeefff duhh, they'd pop out of the womb rocking those fresh ass clown hats. for christmas every year they would get a new clown hat ;)", "to_user": "h_schaeefff", "to_user_id": 412605220, "to_user_id_str": "412605220", "to_user_name": "hannah schaeffer", "in_reply_to_status_id": 148823125495255040, "in_reply_to_status_id_str": "148823125495255040"}, +{"created_at": "Mon, 19 Dec 2011 17:55:19 +0000", "from_user": "1geliboo", "from_user_id": 245881331, "from_user_id_str": "245881331", "from_user_name": "A.N.W.2320", "geo": null, "id": 148823741223272450, "id_str": "148823741223272448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1655875834/IMG01200-20111015-2224_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655875834/IMG01200-20111015-2224_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@misstiff822 shut yo ass up clown ass! U the nasty one!!!OKAY lol", "to_user": "misstiff822", "to_user_id": 332332122, "to_user_id_str": "332332122", "to_user_name": "misstiff822*2320", "in_reply_to_status_id": 148822239930880000, "in_reply_to_status_id_str": "148822239930880001"}, +{"created_at": "Mon, 19 Dec 2011 17:55:18 +0000", "from_user": "aknoxrr", "from_user_id": 369929013, "from_user_id_str": "369929013", "from_user_name": "Alex Knox", "geo": null, "id": 148823735720353800, "id_str": "148823735720353792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1683985319/li3pFszU_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683985319/li3pFszU_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@cjamesr damnn id be down 2 clown if joel is but I know its prolly not goina happen", "to_user": "cjamesr", "to_user_id": 296928049, "to_user_id_str": "296928049", "to_user_name": "Charles Ryan"}, +{"created_at": "Mon, 19 Dec 2011 17:55:17 +0000", "from_user": "StraightBossin_", "from_user_id": 295469761, "from_user_id_str": "295469761", "from_user_name": "Wencys Gil", "geo": null, "id": 148823730989170700, "id_str": "148823730989170689", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1605416171/Mid_DSC_3722_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1605416171/Mid_DSC_3722_normal.JPG", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": ""@DervisService: Rochie is a clown" He singing ? Lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:14 +0000", "from_user": "SEAHAWK_SWAG", "from_user_id": 35385373, "from_user_id_str": "35385373", "from_user_name": "GABRIEL ", "geo": null, "id": 148823720549548030, "id_str": "148823720549548032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701299521/vUMRL4sI_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701299521/vUMRL4sI_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@AdamSchein thanks for showing love to my Seahawks.But can u play the clown music still?", "to_user": "AdamSchein", "to_user_id": 37824341, "to_user_id_str": "37824341", "to_user_name": "Adam Schein"}, +{"created_at": "Mon, 19 Dec 2011 17:55:09 +0000", "from_user": "livingassisted", "from_user_id": 159614386, "from_user_id_str": "159614386", "from_user_name": "AssistedLivingSource", "geo": null, "id": 148823700131692540, "id_str": "148823700131692544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1134662911/2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1134662911/2_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Grandma The Clown Is Leaving The Tent http://t.co/rA05YvvU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:05 +0000", "from_user": "Authentic_5950", "from_user_id": 354644427, "from_user_id_str": "354644427", "from_user_name": "freeJRAYndLILQUA!!\\u2122", "geo": null, "id": 148823682037465100, "id_str": "148823682037465088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689568597/Rflq6qDj_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689568597/Rflq6qDj_normal", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "We school yu nigcas no class clown!\\n[$$$]", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:03 +0000", "from_user": "SayBLACK3x_", "from_user_id": 258188567, "from_user_id_str": "258188567", "from_user_name": "Josh Nxgga.", "geo": null, "id": 148823675360133120, "id_str": "148823675360133122", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1626669858/287670824_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626669858/287670824_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I am not a class clown!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:03 +0000", "from_user": "elijah_joshua", "from_user_id": 406049301, "from_user_id_str": "406049301", "from_user_name": "Joshua Elijah", "geo": null, "id": 148823674550620160, "id_str": "148823674550620160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1630787049/sitdown_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630787049/sitdown_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Kelava_Boz a dead baby in a clown costume.", "to_user": "Kelava_Boz", "to_user_id": 247302692, "to_user_id_str": "247302692", "to_user_name": "Marko Kelava", "in_reply_to_status_id": 148823394379513860, "in_reply_to_status_id_str": "148823394379513857"}, +{"created_at": "Mon, 19 Dec 2011 17:54:59 +0000", "from_user": "InkredibleDolly", "from_user_id": 116753023, "from_user_id_str": "116753023", "from_user_name": "Miss Johnson \\u2603", "geo": null, "id": 148823659094609920, "id_str": "148823659094609920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701994693/IMGP2731_1_dd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701994693/IMGP2731_1_dd_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@RolayRouge its a woman, but half her face is a clown, gonna go below my other thigh tat :)", "to_user": "RolayRouge", "to_user_id": 90247567, "to_user_id_str": "90247567", "to_user_name": "-", "in_reply_to_status_id": 148822778907332600, "in_reply_to_status_id_str": "148822778907332609"}, +{"created_at": "Mon, 19 Dec 2011 17:54:53 +0000", "from_user": "Sunnylove0001", "from_user_id": 375120775, "from_user_id_str": "375120775", "from_user_name": "shaymyname:D ", "geo": null, "id": 148823629885472770, "id_str": "148823629885472768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700043152/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700043152/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I hate when Erin act like a clown.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:54:44 +0000", "from_user": "Ayeejennyx3", "from_user_id": 390372943, "from_user_id_str": "390372943", "from_user_name": "Harry Potter", "geo": null, "id": 148823593726394370, "id_str": "148823593726394368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702369969/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702369969/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Ladies don't do that to yourself, you look like a clown with all that clay on your face.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:54:40 +0000", "from_user": "stevemarais", "from_user_id": 26002363, "from_user_id_str": "26002363", "from_user_name": "Steve Marais", "geo": null, "id": 148823576903041020, "id_str": "148823576903041025", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692463045/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692463045/image_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "If I don't put my foot down Colin would leave the house looking like George Micheal the clown every day... #flamingoearrings!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:54:38 +0000", "from_user": "TheWize_Stoner", "from_user_id": 106564286, "from_user_id_str": "106564286", "from_user_name": "iSpeak$$$$", "geo": null, "id": 148823569504288770, "id_str": "148823569504288768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700862867/4cDX0d8z_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700862867/4cDX0d8z_normal", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @dopeAMANTE: RT @twEAT_Mee RT @whiteboytatted Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:54:33 +0000", "from_user": "LotusFemme", "from_user_id": 96255494, "from_user_id_str": "96255494", "from_user_name": "Giften Garcia", "geo": null, "id": 148823549463887870, "id_str": "148823549463887872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688553599/PrimeFemme_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688553599/PrimeFemme_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "If Robbie doesn't text me back it's going down clown!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:54:32 +0000", "from_user": "SayBLACK3x_", "from_user_id": 258188567, "from_user_id_str": "258188567", "from_user_name": "Josh Nxgga.", "geo": null, "id": 148823542161604600, "id_str": "148823542161604608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1626669858/287670824_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626669858/287670824_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @SignedWhitLove: Class clown: Black Josh!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:54:28 +0000", "from_user": "JaveyCakes", "from_user_id": 277782802, "from_user_id_str": "277782802", "from_user_name": "Javier Morales", "geo": null, "id": 148823526323912700, "id_str": "148823526323912704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1641345612/2011-10-24_20.47.21_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641345612/2011-10-24_20.47.21_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @DervisService: Rochie is a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:54:21 +0000", "from_user": "Yay_or_Nae", "from_user_id": 336346201, "from_user_id_str": "336346201", "from_user_name": "Lanee' Washington", "geo": null, "id": 148823498427600900, "id_str": "148823498427600896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1673746765/tweety_gotback_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673746765/tweety_gotback_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "She think im bout to sit in here and clown with her all day! Hell nooo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:54:20 +0000", "from_user": "J_Mtz93", "from_user_id": 21806699, "from_user_id_str": "21806699", "from_user_name": "Jose Angel Martinez", "geo": null, "id": 148823491653812220, "id_str": "148823491653812224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1595713262/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1595713262/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:54:11 +0000", "from_user": "Quan_iBall_Jr", "from_user_id": 336169516, "from_user_id_str": "336169516", "from_user_name": "Laquan Stephens", "geo": null, "id": 148823457520562180, "id_str": "148823457520562177", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702520307/Quan_iBall_Jr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702520307/Quan_iBall_Jr_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Lol & u know this .... Maaan! RT @SlimJim_Keish: Went to bed happy cus of @Quan_iBall_Jr , that nigga a clown forreal lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:54:07 +0000", "from_user": "QueenofTartsLLC", "from_user_id": 257798496, "from_user_id_str": "257798496", "from_user_name": "Chef B. Finley", "geo": null, "id": 148823440550412300, "id_str": "148823440550412289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682400524/KYA25gML_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682400524/KYA25gML_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Rayblinkie1906 no I'll clown a man doing the first f and I don't consider a future mate w/o the latter", "to_user": "Rayblinkie1906", "to_user_id": 126520122, "to_user_id_str": "126520122", "to_user_name": "Raymond Webber ", "in_reply_to_status_id": 148802733372223500, "in_reply_to_status_id_str": "148802733372223488"}, +{"created_at": "Mon, 19 Dec 2011 17:54:07 +0000", "from_user": "abhimanyumanna", "from_user_id": 73806597, "from_user_id_str": "73806597", "from_user_name": "Abhimanyu Manna", "geo": null, "id": 148823439799631870, "id_str": "148823439799631872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1173634714/DSC03092_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1173634714/DSC03092_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "I look like a clown today...really.. :(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:54:07 +0000", "from_user": "DervisService", "from_user_id": 423101270, "from_user_id_str": "423101270", "from_user_name": "Patron Lover ", "geo": null, "id": 148823437501153280, "id_str": "148823437501153280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701132633/DQH2kW98_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701132633/DQH2kW98_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Rochie is a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:54:07 +0000", "from_user": "MeLuvULongTime_", "from_user_id": 261413800, "from_user_id_str": "261413800", "from_user_name": "DaboreyFcknBurrell", "geo": null, "id": 148823437463388160, "id_str": "148823437463388162", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1679597423/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679597423/profile_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boi i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:54:06 +0000", "from_user": "justmeles", "from_user_id": 30972700, "from_user_id_str": "30972700", "from_user_name": "LESLIE SUPERNOR", "geo": null, "id": 148823432635744260, "id_str": "148823432635744256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1671966253/IMG00350-20110731-1813_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671966253/IMG00350-20110731-1813_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@AverageBlackMan too true I will never grow up, clown till the day I die", "to_user": "AverageBlackMan", "to_user_id": 76976987, "to_user_id_str": "76976987", "to_user_name": "Simmons", "in_reply_to_status_id": 148822305835974660, "in_reply_to_status_id_str": "148822305835974656"}, +{"created_at": "Mon, 19 Dec 2011 17:54:03 +0000", "from_user": "StephNoumeh", "from_user_id": 216883909, "from_user_id_str": "216883909", "from_user_name": "Stephanie Noumeh", "geo": null, "id": 148823422900781060, "id_str": "148823422900781056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1642978771/-4567543545_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642978771/-4567543545_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@MichaelLHadid: Bedtime with the biggest clown I know @StephNoumeh.\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:54:00 +0000", "from_user": "A_STATE_NIGGA", "from_user_id": 64969226, "from_user_id_str": "64969226", "from_user_name": "Tristian Childs", "geo": null, "id": 148823408816304130, "id_str": "148823408816304128", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1675140437/1323087471462_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675140437/1323087471462_normal.jpg", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "Ole bitch Ass nigga pussy Ass nigga fake Ass nigga clown Ass nigga *Webbie voice*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:53:59 +0000", "from_user": "ZackJBrown", "from_user_id": 177070006, "from_user_id_str": "177070006", "from_user_name": "Zack Brown", "geo": null, "id": 148823403695046660, "id_str": "148823403695046657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1100533454/Us_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1100533454/Us_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "This isnt my first rodeo as a clown.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:53:56 +0000", "from_user": "Wiggytree", "from_user_id": 116307426, "from_user_id_str": "116307426", "from_user_name": "Hello", "geo": null, "id": 148823393175744500, "id_str": "148823393175744513", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1409963780/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1409963780/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ddthekid: If you're in the open about who you are, the world will respect you more...how can someone clown you on something you brag about", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:53:48 +0000", "from_user": "QuickandSisi", "from_user_id": 110212169, "from_user_id_str": "110212169", "from_user_name": "Sisi Santa Ana", "geo": null, "id": 148823358425931780, "id_str": "148823358425931776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693316553/8J2rzx9X_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693316553/8J2rzx9X_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @bfrave: Santa is just a clown with a more specific task.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:53:45 +0000", "from_user": "SayBLACK3x_", "from_user_id": 258188567, "from_user_id_str": "258188567", "from_user_name": "Josh Nxgga.", "geo": null, "id": 148823345729769470, "id_str": "148823345729769472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1626669858/287670824_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626669858/287670824_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @LilBitty_Bre: \\u201C@KEKE_whereyaaAT \\u201C@SignedWhitLove Class clown: Black Josh!\\u201D\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:53:44 +0000", "from_user": "Quan_iBall_Jr", "from_user_id": 336169516, "from_user_id_str": "336169516", "from_user_name": "Laquan Stephens", "geo": null, "id": 148823343632629760, "id_str": "148823343632629761", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702520307/Quan_iBall_Jr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702520307/Quan_iBall_Jr_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @SlimJim_Keish: Went to bed happy cus of @Quan_iBall_Jr , that nigga a clown forreal lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:53:35 +0000", "from_user": "JenaviveS", "from_user_id": 346724836, "from_user_id_str": "346724836", "from_user_name": "Jenavive \\u2653", "geo": null, "id": 148823306349445120, "id_str": "148823306349445120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1663385070/r8exmevz_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663385070/r8exmevz_normal", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @palomaR25: I love the way @jenavives does makeup she dont be lookin like a clown like other people lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:53:27 +0000", "from_user": "KaitiMc", "from_user_id": 210038954, "from_user_id_str": "210038954", "from_user_name": "\\u03BA\\u03B1\\u03B9\\u2020\\u00ED \\u0271cL\\u03B1\\u0274\\u018E\\u262E", "geo": null, "id": 148823269057888260, "id_str": "148823269057888256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699194767/2011-09-189518.08.53_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699194767/2011-09-189518.08.53_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:53:23 +0000", "from_user": "Caaboldrin", "from_user_id": 190844240, "from_user_id_str": "190844240", "from_user_name": "camila :3", "geo": null, "id": 148823252146466800, "id_str": "148823252146466816", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1576125805/PQAAAHhvs6oE89jDtsZq1OfZgusuhDu9SoUUmloVuV8k3m_oBM2GaFKN3msg_P1hSwX050JvS_XOuwWPfRp7uzvovcoAm1T1ULvVXSm1Sdf8AJL3FGD4wkZ4wWwz_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576125805/PQAAAHhvs6oE89jDtsZq1OfZgusuhDu9SoUUmloVuV8k3m_oBM2GaFKN3msg_P1hSwX050JvS_XOuwWPfRp7uzvovcoAm1T1ULvVXSm1Sdf8AJL3FGD4wkZ4wWwz_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Clown sempre com ideias...resolveu pedir para Paul tirar uma foto dele cheio de sangue...ficou muito realista ((: http://t.co/ZSRfY63H", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:53:20 +0000", "from_user": "1lakers24", "from_user_id": 250911980, "from_user_id_str": "250911980", "from_user_name": "1lakers24", "geo": null, "id": 148823243493605380, "id_str": "148823243493605377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1241749124/M4DYMypo_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1241749124/M4DYMypo_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@yuckotheclown its my b-day RT ME U STINKING CLOWN :-)", "to_user": "yuckotheclown", "to_user_id": 30264815, "to_user_id_str": "30264815", "to_user_name": "Yucko The Clown", "in_reply_to_status_id": 148810384818700300, "in_reply_to_status_id_str": "148810384818700288"}, +{"created_at": "Mon, 19 Dec 2011 17:53:16 +0000", "from_user": "FogzSwag", "from_user_id": 26954311, "from_user_id_str": "26954311", "from_user_name": "Rocky Tee", "geo": null, "id": 148823226917724160, "id_str": "148823226917724160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1570380761/kylechad_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1570380761/kylechad_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@samanthageexo it'll be hard to find a small finned clown fish :(", "to_user": "samanthageexo", "to_user_id": 269335231, "to_user_id_str": "269335231", "to_user_name": "samantha gaines", "in_reply_to_status_id": 148822871773425660, "in_reply_to_status_id_str": "148822871773425664"}, +{"created_at": "Mon, 19 Dec 2011 17:53:16 +0000", "from_user": "LilBitty_Bre", "from_user_id": 293842256, "from_user_id_str": "293842256", "from_user_name": "January 20.", "geo": null, "id": 148823223549689860, "id_str": "148823223549689856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701031994/ful._normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701031994/ful._normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@KEKE_whereyaaAT \\u201C@SignedWhitLove Class clown: Black Josh!\\u201D\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:53:14 +0000", "from_user": "birdgang_reggie", "from_user_id": 342916851, "from_user_id_str": "342916851", "from_user_name": "Big B's BITCH ", "geo": null, "id": 148823215173681150, "id_str": "148823215173681153", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694184577/G88yXle9_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694184577/G88yXle9_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "& the flag RED like clown lips", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:53:06 +0000", "from_user": "Mizz_McNair", "from_user_id": 386252351, "from_user_id_str": "386252351", "from_user_name": "Tiffany McNair", "geo": null, "id": 148823185033404400, "id_str": "148823185033404416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575976494/tipp_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575976494/tipp_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I had to hang up on @iamTipG smdh...she really is a clown lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:55 +0000", "from_user": "RealJuanky", "from_user_id": 285670949, "from_user_id_str": "285670949", "from_user_name": "NoService ", "geo": null, "id": 148823136048128000, "id_str": "148823136048128000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701079444/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701079444/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:51 +0000", "from_user": "88_flow", "from_user_id": 301951246, "from_user_id_str": "301951246", "from_user_name": "marcus matthews", "geo": null, "id": 148823119832940540, "id_str": "148823119832940544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677438500/up3cIWP1_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677438500/up3cIWP1_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@herSWAGGinPOLO yea yea, wateva clown", "to_user": "herSWAGGinPOLO", "to_user_id": 303525848, "to_user_id_str": "303525848", "to_user_name": "Rachel Matthews", "in_reply_to_status_id": 148821465528156160, "in_reply_to_status_id_str": "148821465528156160"}, +{"created_at": "Mon, 19 Dec 2011 17:52:37 +0000", "from_user": "RealDMcCarthy", "from_user_id": 266351654, "from_user_id_str": "266351654", "from_user_name": "Dylan McCarthy", "geo": null, "id": 148823061876056060, "id_str": "148823061876056065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1273028715/easter_sunday_2011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273028715/easter_sunday_2011_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "If @jharrison9292 hit Tom Brady the way Dumervil did, he'd be fined and suspended. Roger Goodell is a hypocritical ASS-CLOWN!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:37 +0000", "from_user": "DomDom_94", "from_user_id": 238281271, "from_user_id_str": "238281271", "from_user_name": "Dom Mace", "geo": null, "id": 148823060995260400, "id_str": "148823060995260416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683921987/74272_1520130117340_1057161770_31180095_8336976_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683921987/74272_1520130117340_1057161770_31180095_8336976_n_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube video http://t.co/8pErtcYC E-Dubble - Class Clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:29 +0000", "from_user": "ZebraPrint_", "from_user_id": 42457210, "from_user_id_str": "42457210", "from_user_name": "Kay-Kay ", "geo": null, "id": 148823026367070200, "id_str": "148823026367070208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682031222/302516_325014700845491_100000108911209_1477203_633306393_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682031222/302516_325014700845491_100000108911209_1477203_633306393_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I Wish I Was A Class Clown . Teacher ' s Would HATE ME .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:15 +0000", "from_user": "Rated____Z", "from_user_id": 245625293, "from_user_id_str": "245625293", "from_user_name": "Zanay Duppins", "geo": null, "id": 148822968305319940, "id_str": "148822968305319937", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701287169/snapshot__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701287169/snapshot__1__normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u00AB@_DynamicDiam @Rated____Z *diess* i knew you was !\\u00BB you a clown, I was going anyway !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:14 +0000", "from_user": "ThtBitchJazzy", "from_user_id": 131293491, "from_user_id_str": "131293491", "from_user_name": "--Is tht Jaz? Yuhp!", "geo": null, "id": 148822966799577100, "id_str": "148822966799577088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639557056/resize_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639557056/resize_2_normal.jpg", "source": "<a href="http://tweetlogix.com" rel="nofollow">Tweetlogix</a>", "text": "@VanitySlutXXI let's not clown no I haven't", "to_user": "VanitySlutXXI", "to_user_id": 163763660, "to_user_id_str": "163763660", "to_user_name": "davidd marshall", "in_reply_to_status_id": 148821784223940600, "in_reply_to_status_id_str": "148821784223940608"}, +{"created_at": "Mon, 19 Dec 2011 17:52:14 +0000", "from_user": "_OBEYjordan", "from_user_id": 289058686, "from_user_id_str": "289058686", "from_user_name": "UrbanAmbition", "geo": null, "id": 148822964324937730, "id_str": "148822964324937728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702509998/KseIv3XG_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702509998/KseIv3XG_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Turned Round & My Nigga @Star2starmj Was Straight FLEXXIN On This Clown . #FWU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:14 +0000", "from_user": "austynleeMTV", "from_user_id": 24607550, "from_user_id_str": "24607550", "from_user_name": "Austyn Woodruff", "geo": null, "id": 148822963423154180, "id_str": "148822963423154176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702556524/59485_429759340722_660375722_5602386_3320135_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702556524/59485_429759340722_660375722_5602386_3320135_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @morganmeinecke: My mom is a clown.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:06 +0000", "from_user": "_micaMontana", "from_user_id": 253772344, "from_user_id_str": "253772344", "from_user_name": "\\uE10EDamica Myers \\uE42A", "geo": null, "id": 148822930070048770, "id_str": "148822930070048769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686706894/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686706894/profile_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @MagicCity112: \\u201C@whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:01 +0000", "from_user": "His_heartX", "from_user_id": 429403776, "from_user_id_str": "429403776", "from_user_name": "The Baddest :)", "geo": null, "id": 148822910700757000, "id_str": "148822910700756992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697504990/IMG_20111107_151200_wonder_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697504990/IMG_20111107_151200_wonder_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@eatMY_TUCHIE @meGOTgameADAMS he dnt NEVER have to ask a BUM bxtch for money to buy me shxt . Better sit her clown ass down :)", "to_user": "eatMY_TUCHIE", "to_user_id": 356662261, "to_user_id_str": "356662261", "to_user_name": "DariusMainGirl", "in_reply_to_status_id": 148724596475047940, "in_reply_to_status_id_str": "148724596475047936"}, +{"created_at": "Mon, 19 Dec 2011 17:51:52 +0000", "from_user": "TheKochtopus", "from_user_id": 194720625, "from_user_id_str": "194720625", "from_user_name": "The Koch Brothers", "geo": null, "id": 148822873862180860, "id_str": "148822873862180864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1130698151/seafood-local-specialty__u14895640_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1130698151/seafood-local-specialty__u14895640_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Who's callin' our minions clowns??? \"The #TeaParty Clown Show\": http://t.co/B1mEOR6X #OccupyTheClownCar #gopfail #tlot #p2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:50 +0000", "from_user": "SgtFrosty", "from_user_id": 21721002, "from_user_id_str": "21721002", "from_user_name": "Greg", "geo": null, "id": 148822862826979330, "id_str": "148822862826979329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683038140/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683038140/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:47 +0000", "from_user": "datboyreggie", "from_user_id": 365816632, "from_user_id_str": "365816632", "from_user_name": "ReggieSings", "geo": null, "id": 148822852911644670, "id_str": "148822852911644673", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1671116618/052_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671116618/052_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @xoXo_dcb23: You got like 5lbs of make-up caked on that face honey! oh wait, i know You must be a #Clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:41 +0000", "from_user": "Kayron_Brialle", "from_user_id": 188958656, "from_user_id_str": "188958656", "from_user_name": " Rest for me Ked", "geo": null, "id": 148822826894376960, "id_str": "148822826894376960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701502507/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701502507/image_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Camera on iOS</a>", "text": "RT @ReallyRELLE: a clown early n da a.m. http://t.co/f6DNNb69", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:31 +0000", "from_user": "DylanTGLane", "from_user_id": 15016834, "from_user_id_str": "15016834", "from_user_name": "Dylan Lane", "geo": null, "id": 148822783680458750, "id_str": "148822783680458752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/58224758/DSC_0009_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/58224758/DSC_0009_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@jymian A clown story titled \"Dread\"? My spidey-sense is tingling. This isn't a heartwarming tale, is it", "to_user": "jymian", "to_user_id": 65596558, "to_user_id_str": "65596558", "to_user_name": "Mike McHugh", "in_reply_to_status_id": 148550903056695300, "in_reply_to_status_id_str": "148550903056695296"}, +{"created_at": "Mon, 19 Dec 2011 17:51:30 +0000", "from_user": "shakeyourtitts", "from_user_id": 346159919, "from_user_id_str": "346159919", "from_user_name": "I XII XCV \\u2665", "geo": null, "id": 148822778546626560, "id_str": "148822778546626560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696784643/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696784643/image_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@inlovew__LAUREN is a clown !", "to_user": "inlovew__LAUREN", "to_user_id": 292102843, "to_user_id_str": "292102843", "to_user_name": "Noah Turley"}, +{"created_at": "Mon, 19 Dec 2011 17:51:28 +0000", "from_user": "Neeks63o", "from_user_id": 396897098, "from_user_id_str": "396897098", "from_user_name": "Nicholas", "geo": null, "id": 148822771424690180, "id_str": "148822771424690177", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698164458/Neeks63o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698164458/Neeks63o_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:24 +0000", "from_user": "dopeAMANTE", "from_user_id": 264422849, "from_user_id_str": "264422849", "from_user_name": "\\u2122 niQii hendrixx", "geo": null, "id": 148822756346175500, "id_str": "148822756346175489", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693392789/132389224034214_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693392789/132389224034214_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @twEAT_Mee RT @whiteboytatted Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:18 +0000", "from_user": "based_spacely", "from_user_id": 273481656, "from_user_id_str": "273481656", "from_user_name": "Find out ^__^", "geo": null, "id": 148822731872419840, "id_str": "148822731872419840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1291947753/279756807_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1291947753/279756807_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@_NotAFuckGiven u a clown son", "to_user": "_NotAFuckGiven", "to_user_id": 314942893, "to_user_id_str": "314942893", "to_user_name": "The Grim Reaper \\uE11C", "in_reply_to_status_id": 148820686738178050, "in_reply_to_status_id_str": "148820686738178048"}, +{"created_at": "Mon, 19 Dec 2011 17:51:18 +0000", "from_user": "MelissaSWEETS", "from_user_id": 28639904, "from_user_id_str": "28639904", "from_user_name": "Melissa Chaile", "geo": null, "id": 148822730664452100, "id_str": "148822730664452099", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1619352633/320229_283032875051835_155762514445539_962251_999989710_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619352633/320229_283032875051835_155762514445539_962251_999989710_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Jajaja! *laughs in Spanish* ~RT @HECtacular_: LMFAOOOOO this girl is the BIGGEST clown I have seen in yrs LOL ~~> @MelissaSWEETS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:14 +0000", "from_user": "morganmeinecke", "from_user_id": 174934199, "from_user_id_str": "174934199", "from_user_name": "Morgan Meinecke", "geo": null, "id": 148822715086798850, "id_str": "148822715086798848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697838118/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697838118/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "My mom is a clown.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:14 +0000", "from_user": "hotgirljas", "from_user_id": 248944004, "from_user_id_str": "248944004", "from_user_name": "Jasmine Cole.", "geo": null, "id": 148822712968683520, "id_str": "148822712968683521", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701128066/k_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701128066/k_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "Lmfaoo, my lil niece a fucking clown.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:11 +0000", "from_user": "Jerusha31", "from_user_id": 133727312, "from_user_id_str": "133727312", "from_user_name": "Jerusha Singh", "geo": null, "id": 148822701413376000, "id_str": "148822701413376002", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1191270421/Untitled-8_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1191270421/Untitled-8_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @RichardOBarry: Dolphins are free-ranging, intelligent, & complex wild animals, and they belong in the oceans, not playing the clown in our human schemes.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:10 +0000", "from_user": "The_BritPulliam", "from_user_id": 24915431, "from_user_id_str": "24915431", "from_user_name": "Brittany Shaynae =)", "geo": null, "id": 148822695977549820, "id_str": "148822695977549824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689077253/The_BritPulliam_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689077253/The_BritPulliam_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "LOL! dont do me like that! lmao RT @realchillwill: @The_BritPulliam its ok. I wont clown u..... Til tomorrow. Lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:10 +0000", "from_user": "JComm_BlogFeeds", "from_user_id": 111128893, "from_user_id_str": "111128893", "from_user_name": "J-Comm", "geo": null, "id": 148822695461666800, "id_str": "148822695461666817", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/688658566/j-commlogoneu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/688658566/j-commlogoneu_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Ron Paul Takes the Lead in Iowa: In the ever-changing GOP clown car of far right candidates, the lead... http://t.co/CWdRp4nm LiGrFballs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:04 +0000", "from_user": "SirThomas112", "from_user_id": 327136886, "from_user_id_str": "327136886", "from_user_name": "Marcus T", "geo": null, "id": 148822672887922700, "id_str": "148822672887922688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1570200389/N0a59Ptk_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1570200389/N0a59Ptk_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Im offically a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:04 +0000", "from_user": "_KLAWZ", "from_user_id": 262389926, "from_user_id_str": "262389926", "from_user_name": "LI C RODG", "geo": null, "id": 148822671071789060, "id_str": "148822671071789056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700491439/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700491439/profile_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Don't fall off by tryna keep up with the Jones's! #clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:57 +0000", "from_user": "kyle_p96", "from_user_id": 425388836, "from_user_id_str": "425388836", "from_user_name": "Kyle parks", "geo": null, "id": 148822643519393800, "id_str": "148822643519393793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700951740/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700951740/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@kerrie_GRIMES your a crazy clown kid ;) x", "to_user": "kerrie_GRIMES", "to_user_id": 332374081, "to_user_id_str": "332374081", "to_user_name": "kerrie ", "in_reply_to_status_id": 148822297988431870, "in_reply_to_status_id_str": "148822297988431872"}, +{"created_at": "Mon, 19 Dec 2011 17:50:50 +0000", "from_user": "twEAT_Mee", "from_user_id": 239123167, "from_user_id_str": "239123167", "from_user_name": "P A I G E !", "geo": null, "id": 148822614213804030, "id_str": "148822614213804032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1628441604/smile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628441604/smile_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:45 +0000", "from_user": "stayBr00t4l", "from_user_id": 160027877, "from_user_id_str": "160027877", "from_user_name": "paul watkins", "geo": null, "id": 148822591577141250, "id_str": "148822591577141250", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697437022/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697437022/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:41 +0000", "from_user": "KDior_xo", "from_user_id": 284155984, "from_user_id_str": "284155984", "from_user_name": "#1 Stunna", "geo": null, "id": 148822576146292740, "id_str": "148822576146292736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1661110813/um2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661110813/um2_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@_imaBOSSxo Lmao! Lawd *wipes forhead* you a fuckin' CLOWN! Ahaa, well what tf u finna do today big dawggg?!..", "to_user": "_imaBOSSxo", "to_user_id": 361013074, "to_user_id_str": "361013074", "to_user_name": "Love Of Ur Life :D ", "in_reply_to_status_id": 148822141784170500, "in_reply_to_status_id_str": "148822141784170497"}, +{"created_at": "Mon, 19 Dec 2011 17:50:37 +0000", "from_user": "KEKE_whereyaaAT", "from_user_id": 105290560, "from_user_id_str": "105290560", "from_user_name": "Kiara! :D", "geo": null, "id": 148822557255151600, "id_str": "148822557255151616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1649592364/kbs_normal.jpg-large", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649592364/kbs_normal.jpg-large", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @SignedWhitLove: Class clown: Black Josh!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:33 +0000", "from_user": "BABYCORNKENW36D", "from_user_id": 208916672, "from_user_id_str": "208916672", "from_user_name": "STR8 DROP SHAWTY", "geo": null, "id": 148822540813467650, "id_str": "148822540813467649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1604799691/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1604799691/image_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@ShawnOTAT_SQUAD it ain't like that I'm tired of hearing boosie dre and mark like we didn't use to clown", "to_user": "ShawnOTAT_SQUAD", "to_user_id": 158238279, "to_user_id_str": "158238279", "to_user_name": "Shawn-O", "in_reply_to_status_id": 148821833267937280, "in_reply_to_status_id_str": "148821833267937281"}, +{"created_at": "Mon, 19 Dec 2011 17:50:30 +0000", "from_user": "Sharon3sa", "from_user_id": 87241118, "from_user_id_str": "87241118", "from_user_name": "Sharon Sandoval", "geo": null, "id": 148822530445160450, "id_str": "148822530445160449", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1682778662/Photo_on_2011-12-08_at_23.46_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682778662/Photo_on_2011-12-08_at_23.46_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Omg! My last class with my clown crush HAHAHA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:27 +0000", "from_user": "ballislyfe_1", "from_user_id": 396741102, "from_user_id_str": "396741102", "from_user_name": "Daddy", "geo": null, "id": 148822517493153800, "id_str": "148822517493153794", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693663407/imagejpeg_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693663407/imagejpeg_2_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Clown ass niggas lls", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:27 +0000", "from_user": "NeilCusack", "from_user_id": 26819025, "from_user_id_str": "26819025", "from_user_name": "Neil Cusack", "geo": +{"coordinates": [52.0219,-0.5819], "type": "Point"}, "id": 148822514485833730, "id_str": "148822514485833728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1282926968/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1282926968/image_normal.jpg", "source": "<a href="http://www.twitter.com" rel="nofollow">Twitter for Windows Phone</a>", "text": "This clown really is a joker! :-).. You want 2 weeks off at Christmas when you only work 2 days a week #whatajester", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:26 +0000", "from_user": "BBurton_1", "from_user_id": 102599805, "from_user_id_str": "102599805", "from_user_name": "Branden Burton", "geo": null, "id": 148822513546297340, "id_str": "148822513546297344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670575099/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670575099/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Novocane_808 u a clown but yea I b bak", "to_user": "Novocane_808", "to_user_id": 364029841, "to_user_id_str": "364029841", "to_user_name": "Crystal Alita", "in_reply_to_status_id": 148822357648220160, "in_reply_to_status_id_str": "148822357648220160"}, +{"created_at": "Mon, 19 Dec 2011 17:50:26 +0000", "from_user": "EmmettKellyJr_F", "from_user_id": 409675702, "from_user_id_str": "409675702", "from_user_name": "Emmett Kelly Jr Gift", "geo": null, "id": 148822511478505470, "id_str": "148822511478505472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1674139183/EKJ1101_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674139183/EKJ1101_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "❦ EKJ Clown Emmett Holding Teddy Bear Figurine Made in the USA Get from http://t.co/vElCyHMJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:19 +0000", "from_user": "nsanemujer", "from_user_id": 76850383, "from_user_id_str": "76850383", "from_user_name": "F.", "geo": null, "id": 148822483200507900, "id_str": "148822483200507904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1270602548/pica2565941_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1270602548/pica2565941_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@AB_PoeT lol u a clown", "to_user": "AB_PoeT", "to_user_id": 258965340, "to_user_id_str": "258965340", "to_user_name": "A B", "in_reply_to_status_id": 148822378112225280, "in_reply_to_status_id_str": "148822378112225280"}, +{"created_at": "Mon, 19 Dec 2011 17:50:18 +0000", "from_user": "Kapt_DILLIGAF", "from_user_id": 342282130, "from_user_id_str": "342282130", "from_user_name": "Buzz LightyeAr \\u00A47666", "geo": null, "id": 148822480168042500, "id_str": "148822480168042496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694885484/110603-031243_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694885484/110603-031243_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Contradicting everything you say?? Aaaand you want me & other to trust you?? FOH that's that clown shit", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:14 +0000", "from_user": "rooDOTcom", "from_user_id": 38314939, "from_user_id_str": "38314939", "from_user_name": "True Roo\\u2728", "geo": null, "id": 148822460584820740, "id_str": "148822460584820737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693678595/rooDOTcom_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693678595/rooDOTcom_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "I wasnt RT @Pusha_D: I wonder if Tyler is aware that they actually sell clown fish at most pet stores..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:11 +0000", "from_user": "HECtacular_", "from_user_id": 244208851, "from_user_id_str": "244208851", "from_user_name": "What The *HEC* ", "geo": null, "id": 148822447909638140, "id_str": "148822447909638145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702115680/profile_image_1324302018811_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702115680/profile_image_1324302018811_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster</a>", "text": "LMFAOOOOO this girl is the BIGGEST clown I have seen in yrs LOL ~~> @MelissaSWEETS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:10 +0000", "from_user": "Mazzino_Z", "from_user_id": 415120651, "from_user_id_str": "415120651", "from_user_name": "Mazino Ziregbe", "geo": null, "id": 148822446030598140, "id_str": "148822446030598146", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1644301698/297369_2268634924509_1507658159_32512519_5813760_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644301698/297369_2268634924509_1507658159_32512519_5813760_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@_OJUola_ see this clown :p", "to_user": "_OJUola_", "to_user_id": 210083443, "to_user_id_str": "210083443", "to_user_name": "Ojuola ", "in_reply_to_status_id": 148820966351437820, "in_reply_to_status_id_str": "148820966351437824"}, +{"created_at": "Mon, 19 Dec 2011 17:50:00 +0000", "from_user": "itsCristina_2u", "from_user_id": 245123226, "from_user_id_str": "245123226", "from_user_name": "nina aaliyah", "geo": null, "id": 148822401109594100, "id_str": "148822401109594113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1663273692/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663273692/profile_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Peanut is a CLOWN and a LIAR smh.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:58 +0000", "from_user": "MissNFo", "from_user_id": 67842326, "from_user_id_str": "67842326", "from_user_name": "Nicole Marie", "geo": null, "id": 148822394058969100, "id_str": "148822394058969088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662917682/MissNFo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662917682/MissNFo_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@WildCardWorld: Watch yal mouth when referring to my jesus. Tebow jokes is all cool but don't clown him for having faith in jesus #COSIGN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:56 +0000", "from_user": "exZACly_", "from_user_id": 62258442, "from_user_id_str": "62258442", "from_user_name": "Young, Wild, Free", "geo": null, "id": 148822387822047230, "id_str": "148822387822047232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1675200537/Z_Gooo__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675200537/Z_Gooo__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@TaylorMadexoxo Lonely? Lmaooooo @GoEasyOnEm_JU you hear this clown right now?", "to_user": "TaylorMadexoxo", "to_user_id": 217688864, "to_user_id_str": "217688864", "to_user_name": "Derian Taylor", "in_reply_to_status_id": 148821584524754940, "in_reply_to_status_id_str": "148821584524754944"}, +{"created_at": "Mon, 19 Dec 2011 17:49:50 +0000", "from_user": "ilyRaeBerg", "from_user_id": 299316186, "from_user_id_str": "299316186", "from_user_name": "Alexis Rae Colunga", "geo": null, "id": 148822361716699140, "id_str": "148822361716699136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697813206/XxV6oO5V_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697813206/XxV6oO5V_normal", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:48 +0000", "from_user": "Rica336", "from_user_id": 40564462, "from_user_id_str": "40564462", "from_user_name": "Ricky Herbin", "geo": null, "id": 148822351461625860, "id_str": "148822351461625856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1446504420/030301_1138_00__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1446504420/030301_1138_00__normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Talking to #oomf about last ur graduation she tryin to clown cause I cried lmao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:43 +0000", "from_user": "Snoopish", "from_user_id": 33515545, "from_user_id_str": "33515545", "from_user_name": "Neiloe Whitehead", "geo": null, "id": 148822332163629060, "id_str": "148822332163629057", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697127250/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697127250/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@mrmashokwe whatever clown! Yours sucks too", "to_user": "mrmashokwe", "to_user_id": 119310725, "to_user_id_str": "119310725", "to_user_name": "Tumelo Mashokwe", "in_reply_to_status_id": 148822093025390600, "in_reply_to_status_id_str": "148822093025390593"}, +{"created_at": "Mon, 19 Dec 2011 17:49:40 +0000", "from_user": "me0wing_", "from_user_id": 62328442, "from_user_id_str": "62328442", "from_user_name": "Peter File", "geo": null, "id": 148822320327307260, "id_str": "148822320327307264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693634708/CnLR3rYf_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693634708/CnLR3rYf_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "some fucking freaky clown laugh is coming from outside my window omfg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:39 +0000", "from_user": "litagentmiller", "from_user_id": 417301408, "from_user_id_str": "417301408", "from_user_name": "Scott Miller", "geo": null, "id": 148822312915976200, "id_str": "148822312915976192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683748311/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683748311/image_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @MarcusSakey: The LA episode of #HiddenCity is all goodness: pornography, murder, a riot, a clown... @travelchannel, Tuesday 10 ET", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:36 +0000", "from_user": "BigJ809s", "from_user_id": 348706440, "from_user_id_str": "348706440", "from_user_name": "Jay Rodriguez", "geo": null, "id": 148822303583637500, "id_str": "148822303583637504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698691613/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698691613/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:35 +0000", "from_user": "MartianWorldNC", "from_user_id": 188428269, "from_user_id_str": "188428269", "from_user_name": "Hermes Trismegistus ", "geo": null, "id": 148822296411389950, "id_str": "148822296411389953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1652516299/330236613_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652516299/330236613_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@SexCeeSTYLIST @PRETTYINGA I was wondering if that was a joke. Lmao. Clown.", "to_user": "SexCeeSTYLIST", "to_user_id": 46689036, "to_user_id_str": "46689036", "to_user_name": "CeeCee ", "in_reply_to_status_id": 148821946967146500, "in_reply_to_status_id_str": "148821946967146497"} +, +{"created_at": "Mon, 19 Dec 2011 17:49:23 +0000", "from_user": "lukeavfc", "from_user_id": 21539674, "from_user_id_str": "21539674", "from_user_name": "Luke Ramplin", "geo": null, "id": 148822247065387000, "id_str": "148822247065387008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1618042178/38448_10150240996440704_657955703_13882602_3660_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618042178/38448_10150240996440704_657955703_13882602_3660_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @marion_anthrax: @AVFCBlog paul faulkner is a clown tho. he's the only consistency thru this entire debacle", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:18 +0000", "from_user": "ChanDADDYSlim", "from_user_id": 33361797, "from_user_id_str": "33361797", "from_user_name": "C. Murder", "geo": null, "id": 148822227771605000, "id_str": "148822227771604992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676220195/ChanDADDYSlim_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676220195/ChanDADDYSlim_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @SignedWhitLove: Class clown: Black Josh!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:18 +0000", "from_user": "iBigMarc", "from_user_id": 90584643, "from_user_id_str": "90584643", "from_user_name": "Mr.Marc", "geo": null, "id": 148822225854799870, "id_str": "148822225854799873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1619888538/profile_image_1320290883108_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619888538/profile_image_1320290883108_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "RT @whiteboytatted Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:18 +0000", "from_user": "NewYorkPuck", "from_user_id": 45193878, "from_user_id_str": "45193878", "from_user_name": "Derek Felix", "geo": null, "id": 148822224793636860, "id_str": "148822224793636864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1437795784/flex_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1437795784/flex_2_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@AshlyStar sarcasm 101 is coming to universities. Clown Mgt is one of the requirements.", "to_user": "AshlyStar", "to_user_id": 14270367, "to_user_id_str": "14270367", "to_user_name": "Ashly Star", "in_reply_to_status_id": 148821478878625800, "in_reply_to_status_id_str": "148821478878625792"}, +{"created_at": "Mon, 19 Dec 2011 17:49:17 +0000", "from_user": "NeilCusack", "from_user_id": 26819025, "from_user_id_str": "26819025", "from_user_name": "Neil Cusack", "geo": +{"coordinates": [52.0219,-0.5819], "type": "Point"}, "id": 148822224147718140, "id_str": "148822224147718144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1282926968/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1282926968/image_normal.jpg", "source": "<a href="http://www.twitter.com" rel="nofollow">Twitter for Windows Phone</a>", "text": "Plus said clown was asked what days they really wanted off - clown replied with New Years day so clown is off New Years day!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:08 +0000", "from_user": "CorksQuips", "from_user_id": 286191664, "from_user_id_str": "286191664", "from_user_name": "Cork", "geo": null, "id": 148822184104689660, "id_str": "148822184104689666", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1321132779/RoadSignCORKTHU_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1321132779/RoadSignCORKTHU_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I stuck a red clown nose to the boss' door, called him Rudolph, and told everyone he's not invited to any reindeer games. #nftc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:57 +0000", "from_user": "TimbzNHoodCheck", "from_user_id": 53785954, "from_user_id_str": "53785954", "from_user_name": "Neighbahood D", "geo": null, "id": 148822139456323600, "id_str": "148822139456323585", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702506852/393568_613169413370_194903053_32495801_5291457_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702506852/393568_613169413370_194903053_32495801_5291457_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#WHATHAPPENED2 keeping your mouth shut? Why you telling these clown niggas and cops peoples names?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:37 +0000", "from_user": "oohLemmeKissit", "from_user_id": 36060271, "from_user_id_str": "36060271", "from_user_name": "Ms Mc Nasty ", "geo": null, "id": 148822053330489340, "id_str": "148822053330489344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698927145/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698927145/image_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @oohLemmeTASTEit: #oomf is a freakin clown .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:34 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148822043314495500, "id_str": "148822043314495488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://bestdealoncybermonday.info" rel="nofollow">bestdealoncybermondaydotinfo</a>", "text": "Buying Halloween Clown Figure-WWF Hasbro Doink the Clown Wrestling Action Figur http://t.co/PrkAdGxH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:23 +0000", "from_user": "NeilCusack", "from_user_id": 26819025, "from_user_id_str": "26819025", "from_user_name": "Neil Cusack", "geo": +{"coordinates": [52.0219,-0.5819], "type": "Point"}, "id": 148821994970951680, "id_str": "148821994970951680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1282926968/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1282926968/image_normal.jpg", "source": "<a href="http://www.twitter.com" rel="nofollow">Twitter for Windows Phone</a>", "text": "Lol someone who works all of 2 days a week getting pissy because they've been put down to work Xmas Eve and Boxing Day - shut up clown!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:23 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148821994031415300, "id_str": "148821994031415298", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://bestdealoncybermonday.info" rel="nofollow">bestdealoncybermondaydotinfo</a>", "text": "For Sale Halloween Clown Figure-Hollywood Hulk Hogan NWO Wrestling Action Figur http://t.co/DuVjVziR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:18 +0000", "from_user": "IamNumberz", "from_user_id": 419162820, "from_user_id_str": "419162820", "from_user_name": "Ayinde Numberz", "geo": null, "id": 148821975744262140, "id_str": "148821975744262144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1652973523/ayinde_hdr2_1296611405_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652973523/ayinde_hdr2_1296611405_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:18 +0000", "from_user": "ThunderX_KaT", "from_user_id": 296041412, "from_user_id_str": "296041412", "from_user_name": "X-X Rashad the Poet", "geo": null, "id": 148821975710707700, "id_str": "148821975710707713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702221751/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702221751/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @Betsyjaimez: @TheGreatLezlie I'm down like a clown all the way to the ground. Lmao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:17 +0000", "from_user": "CraZy_JamSter", "from_user_id": 249381167, "from_user_id_str": "249381167", "from_user_name": "1/15 hppybdaytoME", "geo": null, "id": 148821971285717000, "id_str": "148821971285716992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1644060396/2011-07-16_16.44.38_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644060396/2011-07-16_16.44.38_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I hate clown ass peoplee # allsexes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:17 +0000", "from_user": "TheHomieDEE", "from_user_id": 403165653, "from_user_id_str": "403165653", "from_user_name": "L E G i T D E E \\u25BC", "geo": null, "id": 148821970987917300, "id_str": "148821970987917312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701479352/Snapshot_20111218_2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701479352/Snapshot_20111218_2_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "#np Madvillian -Fancy Clown <3333333333333333333333333333333", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:15 +0000", "from_user": "_Sherice", "from_user_id": 31508419, "from_user_id_str": "31508419", "from_user_name": "Sherice Fleming", "geo": null, "id": 148821961810776060, "id_str": "148821961810776064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701598762/PicsIn1322193304713_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701598762/PicsIn1322193304713_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u00AB@Ju220 @_Sherice oh lol\\u00BB You a clown!", "to_user": "Ju220", "to_user_id": 26997549, "to_user_id_str": "26997549", "to_user_name": "Diego Sanchez", "in_reply_to_status_id": 148820728496652300, "in_reply_to_status_id_str": "148820728496652288"}, +{"created_at": "Mon, 19 Dec 2011 17:48:14 +0000", "from_user": "Salah_largo", "from_user_id": 239706367, "from_user_id_str": "239706367", "from_user_name": "xSalah", "geo": null, "id": 148821959575216130, "id_str": "148821959575216128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1661222288/1421979797_4_AmXX_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661222288/1421979797_4_AmXX_1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "hahaha enge clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:07 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148821927052578800, "id_str": "148821927052578817", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://bestdealoncybermonday.info" rel="nofollow">bestdealoncybermondaydotinfo</a>", "text": "Price Comparisons For Halloween Clown Figure-Halloween Horror Scary Table Tot C http://t.co/NYrajhEd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:04 +0000", "from_user": "ColeDrinksOnMe", "from_user_id": 153563004, "from_user_id_str": "153563004", "from_user_name": "Morgiie Dahh`ling (:", "geo": null, "id": 148821916793319420, "id_str": "148821916793319425", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1684859679/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684859679/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:02 +0000", "from_user": "midgt211", "from_user_id": 34707154, "from_user_id_str": "34707154", "from_user_name": "bill mono", "geo": null, "id": 148821909692354560, "id_str": "148821909692354561", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1632682224/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632682224/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:51 +0000", "from_user": "musicalgenius12", "from_user_id": 280673941, "from_user_id_str": "280673941", "from_user_name": "just call me DEE", "geo": null, "id": 148821863697621000, "id_str": "148821863697620992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670119715/IMG00352-20111120-2040_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670119715/IMG00352-20111120-2040_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "My sister is a clown. lol. I love her to death though.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:47 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148821846173827070, "id_str": "148821846173827072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://bestdealoncybermonday.info" rel="nofollow">bestdealoncybermondaydotinfo</a>", "text": "Price Comparisons Of Halloween Clown Figure-Rocket USA The Original Bozo Bucket http://t.co/WPQ48OSn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:45 +0000", "from_user": "KPreShaboutique", "from_user_id": 208358864, "from_user_id_str": "208358864", "from_user_name": "K'PreSha Boutique", "geo": null, "id": 148821838036865020, "id_str": "148821838036865024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1540275102/charles_david_tory_platform_boot_womens_color_cognac_p1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1540275102/charles_david_tory_platform_boot_womens_color_cognac_p1__normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @ILuvGlam101: There is a thin line between a Doll Face & a Clown Face #Glam101 #MakeupMonday", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:45 +0000", "from_user": "jusbchillen", "from_user_id": 325655974, "from_user_id_str": "325655974", "from_user_name": "Rashad Pelage", "geo": null, "id": 148821837084770300, "id_str": "148821837084770304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1667112953/Image08072010151805_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667112953/Image08072010151805_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @LiCK_ME_DRY_: @jusbchillen @Im_A_Geek_ DATS WHA WE DO WE CLOWN ON EACH OTHA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:44 +0000", "from_user": "Betsyjaimez", "from_user_id": 167237283, "from_user_id_str": "167237283", "from_user_name": "BetsyJayy\\uE314", "geo": null, "id": 148821831577649150, "id_str": "148821831577649152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1611749948/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611749948/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@TheGreatLezlie I'm down like a clown all the way to the ground. Lmao", "to_user": "TheGreatLezlie", "to_user_id": 299870037, "to_user_id_str": "299870037", "to_user_name": "MyWorld\\u2122", "in_reply_to_status_id": 148819020336996350, "in_reply_to_status_id_str": "148819020336996352"}, +{"created_at": "Mon, 19 Dec 2011 17:47:43 +0000", "from_user": "_OBEYjordan", "from_user_id": 289058686, "from_user_id_str": "289058686", "from_user_name": "UrbanAmbition", "geo": null, "id": 148821828150902800, "id_str": "148821828150902784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702509998/KseIv3XG_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702509998/KseIv3XG_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@PRETTY_PINK95 Bout To Straight MURK THIS Clown #NOGAMES", "to_user": "PRETTY_PINK95", "to_user_id": 319636360, "to_user_id_str": "319636360", "to_user_name": "niya marshall", "in_reply_to_status_id": 148821339543842800, "in_reply_to_status_id_str": "148821339543842816"}, +{"created_at": "Mon, 19 Dec 2011 17:47:42 +0000", "from_user": "adambiles", "from_user_id": 258273513, "from_user_id_str": "258273513", "from_user_name": "Adam Biles", "geo": null, "id": 148821822568275970, "id_str": "148821822568275968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700840977/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700840977/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@LightMeetsNight Crazy Clown Time by @DAVID_LYNCH", "to_user": "LightMeetsNight", "to_user_id": 194899381, "to_user_id_str": "194899381", "to_user_name": "Light Meets Night", "in_reply_to_status_id": 148821506422607870, "in_reply_to_status_id_str": "148821506422607872"}, +{"created_at": "Mon, 19 Dec 2011 17:47:32 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148821780520370180, "id_str": "148821780520370176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://bestdealoncybermonday.info" rel="nofollow">bestdealoncybermondaydotinfo</a>", "text": "Low Price Halloween Clown Figure-Sota Toys Now Playing Series 2 Action Figure K http://t.co/3Wqxlfm5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:29 +0000", "from_user": "D_2cool4skool", "from_user_id": 139965346, "from_user_id_str": "139965346", "from_user_name": "DeUndre", "geo": null, "id": 148821767761309700, "id_str": "148821767761309696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691297882/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691297882/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "@tha_exquisite1 u already kno \\u201C get off my floor wit them boots on clown and u cnt forget the imfamous icecream line over the intercom\\u201C", "to_user": "tha_exquisite1", "to_user_id": 108141929, "to_user_id_str": "108141929", "to_user_name": "Esquire", "in_reply_to_status_id": 148817428892225540, "in_reply_to_status_id_str": "148817428892225536"}, +{"created_at": "Mon, 19 Dec 2011 17:47:26 +0000", "from_user": "Beal_voice", "from_user_id": 295176307, "from_user_id_str": "295176307", "from_user_name": "Adam", "geo": null, "id": 148821757040660480, "id_str": "148821757040660481", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698296862/profile_image_1324131946897_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698296862/profile_image_1324131946897_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "We gotta clown RT @I94_Ty Looking up these Lions tickets my nigga @Beal_voice dwn who else rolling ??", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:23 +0000", "from_user": "JamareeB", "from_user_id": 364685108, "from_user_id_str": "364685108", "from_user_name": "IloveMichaelJordan", "geo": null, "id": 148821743224619000, "id_str": "148821743224619008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1655979611/jjjjj_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655979611/jjjjj_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@FoIIowMeBitch your a clown and rashad is bookem", "to_user": "FoIIowMeBitch", "to_user_id": 323594849, "to_user_id_str": "323594849", "to_user_name": "Black Steve-O", "in_reply_to_status_id": 148821327858499600, "in_reply_to_status_id_str": "148821327858499585"}, +{"created_at": "Mon, 19 Dec 2011 17:47:21 +0000", "from_user": "thunderthighz87", "from_user_id": 337495840, "from_user_id_str": "337495840", "from_user_name": "Zena Beana", "geo": null, "id": 148821735649718270, "id_str": "148821735649718272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702061896/thunderthighz87_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702061896/thunderthighz87_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Them 49th st ole heads b on sum clown shit! The only one who stay the same is @ZEEKFROMWEST", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:21 +0000", "from_user": "HighNights_", "from_user_id": 218775939, "from_user_id_str": "218775939", "from_user_name": "Higher Thinking", "geo": null, "id": 148821734651465730, "id_str": "148821734651465728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1670168559/Snapshot_20111202_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670168559/Snapshot_20111202_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "clown ass mf'ers early this a.m doe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:17 +0000", "from_user": "CoCo_BiTS", "from_user_id": 262824343, "from_user_id_str": "262824343", "from_user_name": "J'adore Corvette\\u2653", "geo": null, "id": 148821720436965380, "id_str": "148821720436965378", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691974870/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691974870/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@Hustlin_Beauty: \\uD83D\\uDE02 RT @CoCo_BiTS: Dior big 5 year old ass tryin to put on a 3-6 month old onesie <\\u201D-- SMDH!...THIS CLOWN I HAVE FOR A KID!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:16 +0000", "from_user": "realchillwill", "from_user_id": 341312134, "from_user_id_str": "341312134", "from_user_name": "Antonio L Williams", "geo": null, "id": 148821714304892930, "id_str": "148821714304892930", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1529864700/2xgF4Y41_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1529864700/2xgF4Y41_normal", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@The_BritPulliam its ok. I wont clown u..... Til tomorrow. Lol", "to_user": "The_BritPulliam", "to_user_id": 24915431, "to_user_id_str": "24915431", "to_user_name": "Brittany Shaynae =)", "in_reply_to_status_id": 148821556955578370, "in_reply_to_status_id_str": "148821556955578368"}, +{"created_at": "Mon, 19 Dec 2011 17:47:16 +0000", "from_user": "HollyWoodHETZ", "from_user_id": 224439235, "from_user_id_str": "224439235", "from_user_name": "Josh Hetz \\u00AE", "geo": null, "id": 148821713587675140, "id_str": "148821713587675136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1617617953/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1617617953/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@marissajoy3 so not everyday this weak then....clown", "to_user": "marissajoy3", "to_user_id": 227344255, "to_user_id_str": "227344255", "to_user_name": "Marissa Kohan ", "in_reply_to_status_id": 148821334070276100, "in_reply_to_status_id_str": "148821334070276096"}, +{"created_at": "Mon, 19 Dec 2011 17:47:15 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148821710014124030, "id_str": "148821710014124032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://bestdealoncybermonday.info" rel="nofollow">bestdealoncybermondaydotinfo</a>", "text": "Discount Halloween Clown Figure-5 Foot Tall Animated Gliding Clown w/Moving http://t.co/XHDIN8ZN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:13 +0000", "from_user": "MikeyReal", "from_user_id": 43567768, "from_user_id_str": "43567768", "from_user_name": "Mike Trend", "geo": null, "id": 148821702799917060, "id_str": "148821702799917056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1532418955/306411_195178890548054_100001678332657_476123_6996479_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1532418955/306411_195178890548054_100001678332657_476123_6996479_n_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:13 +0000", "from_user": "EdSuave", "from_user_id": 29720167, "from_user_id_str": "29720167", "from_user_name": "Eddie Suave", "geo": null, "id": 148821702351126530, "id_str": "148821702351126528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1492868944/profile_image_1313223884253_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1492868944/profile_image_1313223884253_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Lmao clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:10 +0000", "from_user": "AllieKelly_boss", "from_user_id": 257188020, "from_user_id_str": "257188020", "from_user_name": "allie kelly", "geo": null, "id": 148821691349475330, "id_str": "148821691349475329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1581737375/297469_2342422954125_1056504445_32717812_355714659_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1581737375/297469_2342422954125_1056504445_32717812_355714659_n_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @nenapen15: I wish my high school life was like that's so raven's and a skydiving clown would just burst through the classroom window.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:09 +0000", "from_user": "xoXo_dcb23", "from_user_id": 49162455, "from_user_id_str": "49162455", "from_user_name": "donna baca\\uE003\\uE418", "geo": null, "id": 148821687608152060, "id_str": "148821687608152064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674607354/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674607354/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "You got like 5lbs of make-up caked on that face honey! oh wait, i know You must be a #Clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:09 +0000", "from_user": "YoungMoney_FH", "from_user_id": 412437855, "from_user_id_str": "412437855", "from_user_name": "DaTroubleMaker", "geo": null, "id": 148821684806365200, "id_str": "148821684806365185", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682696928/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682696928/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@U_Cant_FuCk_wMe: @YoungMoney_FH lml yu a fuckin clown she really did tho\\u201DI just wanted to kno if it was only me I wasn't tryin to b mean", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:05 +0000", "from_user": "hauskittenkiia", "from_user_id": 265112379, "from_user_id_str": "265112379", "from_user_name": "Kia", "geo": null, "id": 148821668998029300, "id_str": "148821668998029313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698709151/x2_8acd170_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698709151/x2_8acd170_normal.jpeg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@sakinahsanders @VaughnyMcFly Lmfaoo I swear I can't with this man son!! It a clown!!", "to_user": "sakinahsanders", "to_user_id": 20713459, "to_user_id_str": "20713459", "to_user_name": "S. S.", "in_reply_to_status_id": 148799659987570700, "in_reply_to_status_id_str": "148799659987570689"}, +{"created_at": "Mon, 19 Dec 2011 17:47:01 +0000", "from_user": "nemerem", "from_user_id": 117794485, "from_user_id_str": "117794485", "from_user_name": "Chinemerem Alisiobi", "geo": null, "id": 148821653529444350, "id_str": "148821653529444353", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1566216290/IMG-20110918-01004_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566216290/IMG-20110918-01004_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Shattap der! RT @MrRiddiekulus: Dis Nicca seriously feeling fly dressed like a clown... He's definitely igbo #NoOffense...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:55 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148821627575087100, "id_str": "148821627575087104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://bestdealoncybermonday.info" rel="nofollow">bestdealoncybermondaydotinfo</a>", "text": "Sales-priced Halloween Clown Figure-SPAWN series 20 XX VIOLATOR III GORY Variant http://t.co/DXy1Wdk3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:43 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148821576844980220, "id_str": "148821576844980224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://bestdealoncybermonday.info" rel="nofollow">bestdealoncybermondaydotinfo</a>", "text": "Price Comparisons For Halloween Clown Figure-Jack the Jolly Clown Men's Cos http://t.co/buYeh9iB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:42 +0000", "from_user": "Rie_Rackz", "from_user_id": 339910249, "from_user_id_str": "339910249", "from_user_name": "Marie", "geo": null, "id": 148821572168335360, "id_str": "148821572168335360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702501863/D8oEOkLw_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702501863/D8oEOkLw_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Bout to clown for my sis & my big bro birthday yeah we at club RAIN tomorrow fooling", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:34 +0000", "from_user": "afortes41710", "from_user_id": 378616994, "from_user_id_str": "378616994", "from_user_name": "Allen Fortes", "geo": null, "id": 148821540291608580, "id_str": "148821540291608577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:31 +0000", "from_user": "devohijo", "from_user_id": 34087611, "from_user_id_str": "34087611", "from_user_name": "\\u24D3\\u24D4\\u24E5\\u24DE\\u24DD", "geo": null, "id": 148821526140035070, "id_str": "148821526140035073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692055595/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692055595/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @SWAG_KatieJones: Lmfao stfu your a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:26 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148821503864086530, "id_str": "148821503864086528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://bestdealoncybermonday.info" rel="nofollow">bestdealoncybermondaydotinfo</a>", "text": "Get Cheap Halloween Clown Figure-Cult Classics Halloween Evolution of Evil 2-Pac http://t.co/rajk6cRK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:18 +0000", "from_user": "MrStevenYoung", "from_user_id": 67470665, "from_user_id_str": "67470665", "from_user_name": "Steve Muzzleflash", "geo": null, "id": 148821472729763840, "id_str": "148821472729763840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1574493936/steve638s_edit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1574493936/steve638s_edit_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "just saw a guy with droopy baggy pants get out of a car and fall to the ground. Pull up your pants you clown. #ThanksForTheShow LOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:16 +0000", "from_user": "U_Cant_FuCk_wMe", "from_user_id": 242145107, "from_user_id_str": "242145107", "from_user_name": "SimplyyMehh\\u2122", "geo": null, "id": 148821462499852300, "id_str": "148821462499852288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698676401/U_Cant_FuCk_wMe_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698676401/U_Cant_FuCk_wMe_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@YoungMoney_FH lml yu a fuckin clown she really did tho", "to_user": "YoungMoney_FH", "to_user_id": 412437855, "to_user_id_str": "412437855", "to_user_name": "DaTroubleMaker", "in_reply_to_status_id": 148821033636474880, "in_reply_to_status_id_str": "148821033636474880"}, +{"created_at": "Mon, 19 Dec 2011 17:46:13 +0000", "from_user": "LiCK_ME_DRY_", "from_user_id": 413253208, "from_user_id_str": "413253208", "from_user_name": "Sakethia Johnson", "geo": null, "id": 148821450776772600, "id_str": "148821450776772609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680961637/35854_409669454209_693244209_4212950_5898801_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680961637/35854_409669454209_693244209_4212950_5898801_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@jusbchillen @Im_A_Geek_ DATS WHA WE DO WE CLOWN ON EACH OTHA", "to_user": "jusbchillen", "to_user_id": 325655974, "to_user_id_str": "325655974", "to_user_name": "Rashad Pelage", "in_reply_to_status_id": 148820818871336960, "in_reply_to_status_id_str": "148820818871336960"}, +{"created_at": "Mon, 19 Dec 2011 17:46:07 +0000", "from_user": "iHeartRihBrit", "from_user_id": 402246257, "from_user_id_str": "402246257", "from_user_name": "Nancy (RihDaOne)", "geo": null, "id": 148821427208982530, "id_str": "148821427208982528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698919146/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698919146/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "A clown getting arrested -.-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:04 +0000", "from_user": "poorconservativ", "from_user_id": 266488425, "from_user_id_str": "266488425", "from_user_name": "Poor Conservative", "geo": null, "id": 148821414730928130, "id_str": "148821414730928128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1273358204/Tessa___Daddy_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273358204/Tessa___Daddy_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "#Romney The Clown Calls #Gingrich Zany http://t.co/kAPsaqIQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:03 +0000", "from_user": "Bury_Me_Smilin", "from_user_id": 381206429, "from_user_id_str": "381206429", "from_user_name": "M. Rich", "geo": null, "id": 148821407739019260, "id_str": "148821407739019265", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1587262810/7zlC3PcR_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587262810/7zlC3PcR_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@earthtologan why are you worried about another mans twitter? Go somewhere an kill yourself clown! Quit @'n me", "to_user": "earthtologan", "to_user_id": 283330321, "to_user_id_str": "283330321", "to_user_name": "Logan Allred", "in_reply_to_status_id": 148820530605203460, "in_reply_to_status_id_str": "148820530605203456"}, +{"created_at": "Mon, 19 Dec 2011 17:45:58 +0000", "from_user": "MatyLoops", "from_user_id": 283623512, "from_user_id_str": "283623512", "from_user_name": "Mat McWhorter", "geo": null, "id": 148821388633980930, "id_str": "148821388633980930", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1606920705/TWITPIC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606920705/TWITPIC_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@HerdOnESPNRadio also, stop complaining about all the tebow talk when you mention the guys name every two sentences dude. Your clown shoes", "to_user": "HerdOnESPNRadio", "to_user_id": 25432501, "to_user_id_str": "25432501", "to_user_name": "Colin Cowherd"}, +{"created_at": "Mon, 19 Dec 2011 17:45:58 +0000", "from_user": "Rahsaan_MH", "from_user_id": 289758934, "from_user_id_str": "289758934", "from_user_name": "Rahsaan Jackson ", "geo": null, "id": 148821385811210240, "id_str": "148821385811210240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1694300501/331522392_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694300501/331522392_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:54 +0000", "from_user": "DetroitRex", "from_user_id": 137977167, "from_user_id_str": "137977167", "from_user_name": "T-Rell Brooks", "geo": null, "id": 148821372133572600, "id_str": "148821372133572608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1525987417/iD00JN0l_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1525987417/iD00JN0l_normal", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:52 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148821362285359100, "id_str": "148821362285359104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://bestdealoncybermonday.info" rel="nofollow">bestdealoncybermondaydotinfo</a>", "text": "Shopping Cheap Halloween Clown Figure-Halloween Scary Creepy Clown 5' Anima http://t.co/upi6gFmk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:46 +0000", "from_user": "Tdot_Bagley", "from_user_id": 213727290, "from_user_id_str": "213727290", "from_user_name": "Terrell Bagley", "geo": null, "id": 148821337157275650, "id_str": "148821337157275650", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1657450607/330396000_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657450607/330396000_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @FeIstyBRI: this Nasty nigga @Tdot_Bagley burped in my ear!!! \\uD83D\\uDE16 lol clown !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:40 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148821312347975680, "id_str": "148821312347975680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://bestdealoncybermonday.info" rel="nofollow">bestdealoncybermondaydotinfo</a>", "text": "Inexpensive Halloween Clown Figure-Lego Minifigures (Series 1) Cheap http://t.co/Z0WC3PbX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:37 +0000", "from_user": "double0_4life", "from_user_id": 27310833, "from_user_id_str": "27310833", "from_user_name": "Anita Harding", "geo": null, "id": 148821298347380740, "id_str": "148821298347380737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685565088/double0_4life_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685565088/double0_4life_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Waiting! Waiting... F'ing clown!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:33 +0000", "from_user": "_RoxBox", "from_user_id": 47634755, "from_user_id_str": "47634755", "from_user_name": "Roxie S.", "geo": null, "id": 148821282677473280, "id_str": "148821282677473280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1644476253/jkg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644476253/jkg_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "#oomf just called me an ass clown? What's that. Lmao :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:29 +0000", "from_user": "PoohBear_Est92", "from_user_id": 175749612, "from_user_id_str": "175749612", "from_user_name": "Shante'a Foster", "geo": null, "id": 148821266315481100, "id_str": "148821266315481088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1640954935/E2xe1w4m_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640954935/E2xe1w4m_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Lil_Redd_ lol we both gone clown her haha", "to_user": "Lil_Redd_", "to_user_id": 319176226, "to_user_id_str": "319176226", "to_user_name": "Tam Tam", "in_reply_to_status_id": 148820506466983940, "in_reply_to_status_id_str": "148820506466983936"}, +{"created_at": "Mon, 19 Dec 2011 17:45:28 +0000", "from_user": "Mr_THJC", "from_user_id": 91425397, "from_user_id_str": "91425397", "from_user_name": "Tommy 'THJC' Curry", "geo": null, "id": 148821260527345660, "id_str": "148821260527345664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1622721120/LTGLogoNew_png_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622721120/LTGLogoNew_png_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@fourzerotwo yo stealth clown, you and your bum buddies seemed to have fucked up yet another cod game, please talk to @ThunderS7ruck NOW FFS", "to_user": "fourzerotwo", "to_user_id": 3359851, "to_user_id_str": "3359851", "to_user_name": "Robert Bowling"}, +{"created_at": "Mon, 19 Dec 2011 17:45:23 +0000", "from_user": "Octaviakbm", "from_user_id": 440219894, "from_user_id_str": "440219894", "from_user_name": "Octavia Bauerle", "geo": null, "id": 148821240046551040, "id_str": "148821240046551040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700589186/large_0429111309_3__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700589186/large_0429111309_3__normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Clown Costume Child Size T Toddler 3T-4T: http://t.co/Y7vdo8wH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:13 +0000", "from_user": "DREAMYBROWN", "from_user_id": 26530810, "from_user_id_str": "26530810", "from_user_name": "Ms.Toi", "geo": null, "id": 148821198854299650, "id_str": "148821198854299648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1471689552/324370282_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1471689552/324370282_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@MzT63: @DREAMYBROWN Whhhyyy that nigga from FB hit me up today asking if I could hook him up with you.. Smh.. Lmao..\\u201D-WOW! He a CLown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:06 +0000", "from_user": "UponBrokenGlass", "from_user_id": 284296963, "from_user_id_str": "284296963", "from_user_name": " ~\\u2665Tehrica -Taj ~\\u2665", "geo": null, "id": 148821168927948800, "id_str": "148821168927948800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680953729/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680953729/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SmileeAlii: See this heart won't settle down. Like a child running scared from a clown. (8)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:03 +0000", "from_user": "SatchelCharge", "from_user_id": 66148951, "from_user_id_str": "66148951", "from_user_name": "Danny", "geo": null, "id": 148821156131110900, "id_str": "148821156131110912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@senseiwalingh ur a clown son drizzy will murk common just watch", "to_user": "senseiwalingh", "to_user_id": 191419970, "to_user_id_str": "191419970", "to_user_name": "Walingh Akkerman", "in_reply_to_status_id": 148747621677269000, "in_reply_to_status_id_str": "148747621677268992"}, +{"created_at": "Mon, 19 Dec 2011 17:45:00 +0000", "from_user": "mzthicknezz88", "from_user_id": 437250087, "from_user_id_str": "437250087", "from_user_name": "Chella -n- Shae", "geo": null, "id": 148821145947340800, "id_str": "148821145947340801", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694175226/OJSseG1s_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694175226/OJSseG1s_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@BentheReal: @mzthicknezz88 yelp yelp lol!\"lol yhu so silly clown thats y i <3 yhu so much (n mi monica voice)lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:00 +0000", "from_user": "TearDropRed", "from_user_id": 158603684, "from_user_id_str": "158603684", "from_user_name": "LB Butler\\uE023\\uE51E\\uE113", "geo": null, "id": 148821143422369800, "id_str": "148821143422369793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701418626/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701418626/image_normal.jpg", "source": "<a href="http://www.handmark.com" rel="nofollow">TweetCaster for iOS</a>", "text": "RT @AHustlersHeart: #clown lol RT @TearDropRed: Why tf nick cannon got a mixtape out? HA!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:51 +0000", "from_user": "SmileeAlii", "from_user_id": 81723194, "from_user_id_str": "81723194", "from_user_name": "\\u0E04l\\u05D0\\u0E23\\u0E23\\u0E04 \\u05E7\\u0452\\u0E40l\\u0E40\\u05E7", "geo": null, "id": 148821106764152830, "id_str": "148821106764152832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686207066/twitcon1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686207066/twitcon1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "See this heart won't settle down. Like a child running scared from a clown. (8)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:51 +0000", "from_user": "Andersonkid531", "from_user_id": 360375871, "from_user_id_str": "360375871", "from_user_name": "Haters gone hate", "geo": null, "id": 148821104872534000, "id_str": "148821104872534016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679094410/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679094410/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:47 +0000", "from_user": "DopeAzs_Asia", "from_user_id": 430228983, "from_user_id_str": "430228983", "from_user_name": "asia petty", "geo": null, "id": 148821088363741200, "id_str": "148821088363741185", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692536332/3_striks_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692536332/3_striks_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "lmao she a clown.......", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:46 +0000", "from_user": "prettyqirLree", "from_user_id": 208641944, "from_user_id_str": "208641944", "from_user_name": "kaaarimaah GOODMAN ", "geo": null, "id": 148821085373202430, "id_str": "148821085373202432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1655942760/bad_ass_momm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655942760/bad_ass_momm_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Yu fuckin clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:37 +0000", "from_user": "youknowmeyo", "from_user_id": 135640548, "from_user_id_str": "135640548", "from_user_name": "hamvilly ", "geo": null, "id": 148821046655590400, "id_str": "148821046655590400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1666238642/granville_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666238642/granville_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:31 +0000", "from_user": "SittanaRoxx", "from_user_id": 342889498, "from_user_id_str": "342889498", "from_user_name": "sittana roxx", "geo": null, "id": 148821022886461440, "id_str": "148821022886461440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "The Clown (Le Queloune) - YouTube - The Clown (Le Queloune)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:26 +0000", "from_user": "VinnyOlenick", "from_user_id": 281827764, "from_user_id_str": "281827764", "from_user_name": "Vinny Olenick", "geo": null, "id": 148821001420029950, "id_str": "148821001420029952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701543776/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701543776/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:22 +0000", "from_user": "tbuucckk", "from_user_id": 149589052, "from_user_id_str": "149589052", "from_user_name": "Taylor Buckley", "geo": null, "id": 148820984311463940, "id_str": "148820984311463936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697633070/AN9dNrWJ_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697633070/AN9dNrWJ_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I'm sick of people at work tryna clown about me having \"rich\" parents.. stfu if yall would do something with yourself you'd be on that level", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:19 +0000", "from_user": "lickmyKIT_KAT", "from_user_id": 308743324, "from_user_id_str": "308743324", "from_user_name": "IMTHEREALGIRLFRIEND ", "geo": null, "id": 148820973087494140, "id_str": "148820973087494146", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702616665/memee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702616665/memee_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "this boy , tryna fuss with me then he dnt knw how to spell lmao\\nhe a whole clown he needa have a _/ \\nbitchass .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:18 +0000", "from_user": "Connell_vs_life", "from_user_id": 130720426, "from_user_id_str": "130720426", "from_user_name": "Jason Connell", "geo": null, "id": 148820969786585100, "id_str": "148820969786585088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1627125192/Jason-Jump_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627125192/Jason-Jump_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Photo: My friend Tim drives a clown car. http://t.co/gVNgg4Tp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:16 +0000", "from_user": "AHustlersHeart", "from_user_id": 159699606, "from_user_id_str": "159699606", "from_user_name": "Nicole Daley ", "geo": null, "id": 148820958688460800, "id_str": "148820958688460801", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689908378/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689908378/image_normal.jpg", "source": "<a href="http://www.handmark.com" rel="nofollow">TweetCaster for iOS</a>", "text": "#clown lol RT @TearDropRed: Why tf nick cannon got a mixtape out? HA!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:02 +0000", "from_user": "Datboinell", "from_user_id": 185688425, "from_user_id_str": "185688425", "from_user_name": "Nelson tyler ", "geo": null, "id": 148820900345679870, "id_str": "148820900345679872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1232320829/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1232320829/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @barackobussa: #bitchuhit if u a female and u look like homie the clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:55 +0000", "from_user": "project_patFS", "from_user_id": 270466038, "from_user_id_str": "270466038", "from_user_name": "Pat Seymour", "geo": null, "id": 148820872864604160, "id_str": "148820872864604160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1666519382/Photo_on_2011-11-30_at_00.57_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666519382/Photo_on_2011-11-30_at_00.57_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "stop being such a CLOWN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:51 +0000", "from_user": "CaRaMelSeXiBrWn", "from_user_id": 372983388, "from_user_id_str": "372983388", "from_user_name": "BroWnSuGa", "geo": null, "id": 148820855978340350, "id_str": "148820855978340352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679039235/fl2tEz29_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679039235/fl2tEz29_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "All this fuckn make up on.... Lookn like ah straight clown... #Toomuch", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:47 +0000", "from_user": "desichanel", "from_user_id": 28653881, "from_user_id_str": "28653881", "from_user_name": "Desiree[;", "geo": null, "id": 148820840199372800, "id_str": "148820840199372800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1648830447/307192_2171150081761_1337010272_32248584_848376133_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648830447/307192_2171150081761_1337010272_32248584_848376133_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Tweet_Babbii lmfao #clown", "to_user": "Tweet_Babbii", "to_user_id": 28900426, "to_user_id_str": "28900426", "to_user_name": "Tweet Tweet", "in_reply_to_status_id": 148820607121883140, "in_reply_to_status_id_str": "148820607121883137"}, +{"created_at": "Mon, 19 Dec 2011 17:43:44 +0000", "from_user": "J_Gooo", "from_user_id": 190061201, "from_user_id_str": "190061201", "from_user_name": "Josh Gore \\uE010", "geo": null, "id": 148820827691958270, "id_str": "148820827691958272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1655772757/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655772757/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:43 +0000", "from_user": "FATMAN105", "from_user_id": 327795815, "from_user_id_str": "327795815", "from_user_name": "FATMAN", "geo": null, "id": 148820820905558000, "id_str": "148820820905558016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1544933142/IMG_9184_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544933142/IMG_9184_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:37 +0000", "from_user": "msneloms", "from_user_id": 194456774, "from_user_id_str": "194456774", "from_user_name": "willesia shebaneloms", "geo": null, "id": 148820798214373380, "id_str": "148820798214373377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1584341740/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584341740/me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "HYFR...rockin out before i go to work since dex and deon wont be there for me to clown with :(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:36 +0000", "from_user": "maxzuliani23", "from_user_id": 377428362, "from_user_id_str": "377428362", "from_user_name": "Max Zuliani", "geo": null, "id": 148820793072173060, "id_str": "148820793072173056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1672280743/sky_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672280743/sky_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:30 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148820767495299070, "id_str": "148820767495299072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://cybermondaysells.info" rel="nofollow">cybermondaysellsdotinfo</a>", "text": "Price Comparisons Discount Clown Costum-Blue Clown Derby Hat Adult Onsale http://t.co/qjIOB7IT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:30 +0000", "from_user": "uche_mina", "from_user_id": 73383736, "from_user_id_str": "73383736", "from_user_name": "uche onugha", "geo": null, "id": 148820766228615170, "id_str": "148820766228615169", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693199504/DSC00818_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693199504/DSC00818_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "My father is a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:29 +0000", "from_user": "OMCKIE", "from_user_id": 61782520, "from_user_id_str": "61782520", "from_user_name": "Omar", "geo": null, "id": 148820761304502270, "id_str": "148820761304502273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1578753112/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1578753112/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Come on homeboi, you not about that street shit, so stop talkin it... Go join the circus, clown!!! LOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:21 +0000", "from_user": "TraffordEco", "from_user_id": 60615841, "from_user_id_str": "60615841", "from_user_name": "Andrew Leask", "geo": null, "id": 148820729956286460, "id_str": "148820729956286465", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1525559104/Andrew-FinReview_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1525559104/Andrew-FinReview_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@Peston: Chancellor just refused to support EU-only IMF resources increase - so will be no agreement to \\u20AC200bn boost for eurozone\" Clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:20 +0000", "from_user": "_AmorMe", "from_user_id": 221556014, "from_user_id_str": "221556014", "from_user_name": "- monee . \\u2764 ` \\u2764", "geo": null, "id": 148820724830830600, "id_str": "148820724830830592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700750413/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700750413/profile_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@XIIX_MMX lol... I see you clown. Go add me on voxer real quick... sontaa219@yahoo.com", "to_user": "XIIX_MMX", "to_user_id": 283220388, "to_user_id_str": "283220388", "to_user_name": "RichYoung Marc", "in_reply_to_status_id": 148820381879382000, "in_reply_to_status_id_str": "148820381879382019"}, +{"created_at": "Mon, 19 Dec 2011 17:43:20 +0000", "from_user": "mike4626", "from_user_id": 332829420, "from_user_id_str": "332829420", "from_user_name": "Mike", "geo": null, "id": 148820724361076740, "id_str": "148820724361076737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702275587/IMG00071-20110719-1459_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702275587/IMG00071-20110719-1459_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:16 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148820707655155700, "id_str": "148820707655155712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://cybermondaysells.info" rel="nofollow">cybermondaysellsdotinfo</a>", "text": "Compare Discount Clown Costume -Yellow Clown Derby Hat Adult At Usa Store http://t.co/LZk7FV5d", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:16 +0000", "from_user": "engagementbands", "from_user_id": 320338788, "from_user_id_str": "320338788", "from_user_name": "engagementbands", "geo": null, "id": 148820706891796480, "id_str": "148820706891796481", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.wpsyndicator.com" rel="nofollow">WPSyndicator</a>", "text": "http://t.co/nOLCR3r5 Charms - Enamel Clown with Lobster Clasp Sterling Silver Charm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:15 +0000", "from_user": "Who_Corey", "from_user_id": 269477088, "from_user_id_str": "269477088", "from_user_name": "Corey Younker", "geo": null, "id": 148820704593330180, "id_str": "148820704593330176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1493847457/whocorey_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1493847457/whocorey_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 17:43:12 +0000", "from_user": "ILuvGlam101", "from_user_id": 325554900, "from_user_id_str": "325554900", "from_user_name": "EricaTheGlamatician", "geo": null, "id": 148820689997139970, "id_str": "148820689997139968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695763872/idofaces-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695763872/idofaces-1_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "There is a thin line between a Doll Face & a Clown Face #Glam101 #MakeupMonday", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:10 +0000", "from_user": "BaabyItsREAl_xo", "from_user_id": 324652944, "from_user_id_str": "324652944", "from_user_name": "Thick & Light :)", "geo": null, "id": 148820684787822600, "id_str": "148820684787822592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697540942/3N9qquNi_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697540942/3N9qquNi_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "he told tae lmao raymear is really a clown :) #Eataa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:06 +0000", "from_user": "juliacnat", "from_user_id": 307104632, "from_user_id_str": "307104632", "from_user_name": "Julia Natalie", "geo": null, "id": 148820665435291650, "id_str": "148820665435291648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696921055/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696921055/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @CanadianProbz: the clown from Toy Castle that gave you nightmares #canadianprobz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:04 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148820657067655170, "id_str": "148820657067655168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://cybermondaysells.info" rel="nofollow">cybermondaysellsdotinfo</a>", "text": "Explain Discount Clown -Large Clown Face Painting Makeup Set Store Online http://t.co/5UfTVA5d", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:01 +0000", "from_user": "nelinhell", "from_user_id": 20050372, "from_user_id_str": "20050372", "from_user_name": "chanel gandy", "geo": null, "id": 148820645608820740, "id_str": "148820645608820736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1624135065/l_678848e609884da6b82df423f1022ed3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624135065/l_678848e609884da6b82df423f1022ed3_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube videofrom @psychopathic http://t.co/uPDndLj8 Insane Clown Posse - In Yo Face (Juggalo Edition", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:00 +0000", "from_user": "TAYZA8", "from_user_id": 269431920, "from_user_id_str": "269431920", "from_user_name": "Adam Taylor", "geo": null, "id": 148820640571465730, "id_str": "148820640571465728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1538898567/228789_10150170441602795_679882794_6768498_2290750_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538898567/228789_10150170441602795_679882794_6768498_2290750_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@JodieWollacott good, me too :) ....clown <3", "to_user": "JodieWollacott", "to_user_id": 186309282, "to_user_id_str": "186309282", "to_user_name": "Jodie", "in_reply_to_status_id": 148819594025508860, "in_reply_to_status_id_str": "148819594025508864"}, +{"created_at": "Mon, 19 Dec 2011 17:42:59 +0000", "from_user": "Maragotdatloko", "from_user_id": 375910665, "from_user_id_str": "375910665", "from_user_name": "K!77@ CUNT", "geo": null, "id": 148820638814052350, "id_str": "148820638814052353", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692354049/Maragotdatloko_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692354049/Maragotdatloko_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "#LT TRY DAT SHIT NOW CTFU I WILL CLOWN UR THIRSTY ASS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:54 +0000", "from_user": "FemstarYeup", "from_user_id": 162081673, "from_user_id_str": "162081673", "from_user_name": "femi pacman\\u2122", "geo": null, "id": 148820617540534270, "id_str": "148820617540534272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681855774/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681855774/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Miss_Zena loool I don't know the other dude but vic o a stand up guy, the other dude must be some clown tryna make a name for himself. Lol", "to_user": "Miss_Zena", "to_user_id": 187924565, "to_user_id_str": "187924565", "to_user_name": "Zena A", "in_reply_to_status_id": 148810604331810800, "in_reply_to_status_id_str": "148810604331810817"}, +{"created_at": "Mon, 19 Dec 2011 17:42:51 +0000", "from_user": "ErBodyLuvzChris", "from_user_id": 202647258, "from_user_id_str": "202647258", "from_user_name": "\\uE13DCH\\u042FIS\\uE13D", "geo": null, "id": 148820603233767420, "id_str": "148820603233767424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683818368/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683818368/avatar_normal.jpg", "source": "<a href="http://www.tweetings.net/" rel="nofollow">Tweetings for iPhone</a>", "text": "ima clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:51 +0000", "from_user": "MrChanberlain", "from_user_id": 248977953, "from_user_id_str": "248977953", "from_user_name": "Tevin Speed", "geo": null, "id": 148820602164215800, "id_str": "148820602164215808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700610705/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700610705/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:49 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148820596023758850, "id_str": "148820596023758848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://cybermondaysells.info" rel="nofollow">cybermondaysellsdotinfo</a>", "text": "Who Sells The Cheapest Disco-Black Clown Wig Adult Costume Accessory Sale http://t.co/SBlB2KHC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:48 +0000", "from_user": "YouBeChippin", "from_user_id": 226394646, "from_user_id_str": "226394646", "from_user_name": "Allison Chippendale", "geo": null, "id": 148820592991277060, "id_str": "148820592991277056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699393883/webcam-toy-photo48_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699393883/webcam-toy-photo48_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "I always used to cry when I laughed, then I got raped by a clown #ironic", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:43 +0000", "from_user": "DAREALDJQ2WM", "from_user_id": 157456052, "from_user_id_str": "157456052", "from_user_name": "Quentin DJ Q", "geo": null, "id": 148820569385742340, "id_str": "148820569385742336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680516167/IMG_20111208_024210_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680516167/IMG_20111208_024210_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "@Ingenious_HILL hell yea they call it Sherm where im from lol I done scene how them niggas clown when they be on it too.", "to_user": "Ingenious_HILL", "to_user_id": 113137533, "to_user_id_str": "113137533", "to_user_name": "Smokey", "in_reply_to_status_id": 148819868962136060, "in_reply_to_status_id_str": "148819868962136064"}, +{"created_at": "Mon, 19 Dec 2011 17:42:42 +0000", "from_user": "_SimplyKris", "from_user_id": 136843458, "from_user_id_str": "136843458", "from_user_name": "Lovely Lady", "geo": null, "id": 148820564482596860, "id_str": "148820564482596864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702361828/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702361828/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@J_Naturale your a clown why!?? Lol", "to_user": "J_Naturale", "to_user_id": 308225099, "to_user_id_str": "308225099", "to_user_name": "Jessica Alexandre", "in_reply_to_status_id": 148818316365013000, "in_reply_to_status_id_str": "148818316365012992"}, +{"created_at": "Mon, 19 Dec 2011 17:42:39 +0000", "from_user": "x_DarlinJass", "from_user_id": 39362592, "from_user_id_str": "39362592", "from_user_name": "Jasmine", "geo": null, "id": 148820552172318720, "id_str": "148820552172318721", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687781610/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687781610/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@JoeBat92: @x_DarlinJass so look how you wanna clown !?\\u201D Lol don't take it personal. Call it um.........help ;D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:36 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148820540495364100, "id_str": "148820540495364096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://cybermondaysells.info" rel="nofollow">cybermondaysellsdotinfo</a>", "text": "Who Sells The Cheapest Discount Clown Costume Accessories-Clssory Buy Now http://t.co/G9F2jekX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:30 +0000", "from_user": "NUT_23", "from_user_id": 343115648, "from_user_id_str": "343115648", "from_user_name": "Jose Martinez", "geo": null, "id": 148820515883204600, "id_str": "148820515883204608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1462950102/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1462950102/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:30 +0000", "from_user": "itsDroll", "from_user_id": 220918188, "from_user_id_str": "220918188", "from_user_name": "DYL\\u0394N", "geo": null, "id": 148820513446301700, "id_str": "148820513446301698", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1676673230/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676673230/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:25 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148820495352070140, "id_str": "148820495352070144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://cybermondaysells.info" rel="nofollow">cybermondaysellsdotinfo</a>", "text": "Review Discount Clown Costu-Dots the Clown Adult Costume At Lowest Prices http://t.co/TzzK4CxE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:20 +0000", "from_user": "WishUponnA_STAR", "from_user_id": 260473356, "from_user_id_str": "260473356", "from_user_name": "Dec.30 is Star day(:", "geo": null, "id": 148820472392454140, "id_str": "148820472392454144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687458327/100MEDIA_IMAG0216_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687458327/100MEDIA_IMAG0216_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Girl, dee really is a clown, lmaoo.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:13 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148820443661475840, "id_str": "148820443661475841", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://cybermondaysells.info" rel="nofollow">cybermondaysellsdotinfo</a>", "text": "Price Comparisons For Discount Clown -Cutie Pie Clown Adult Wig Comparison http://t.co/zsp8IXqZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:07 +0000", "from_user": "merk__22", "from_user_id": 363367721, "from_user_id_str": "363367721", "from_user_name": "Merrick Ardoin", "geo": null, "id": 148820419883962370, "id_str": "148820419883962369", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1618003349/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618003349/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Actin the clown at work with @JBRodrigue_42 #dickinthebootyrootypootyasstree", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:03 +0000", "from_user": "janel_monae", "from_user_id": 215995827, "from_user_id_str": "215995827", "from_user_name": "Janel Calame", "geo": null, "id": 148820401793933300, "id_str": "148820401793933313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699477234/1n0N2F1F_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699477234/1n0N2F1F_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I swear this place unda clown management.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:03 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148820401340940300, "id_str": "148820401340940291", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://cybermondaysells.info" rel="nofollow">cybermondaysellsdotinfo</a>", "text": "Frugal Discount Clown Costume Accessories-Costume Accessory Compare Prices http://t.co/3C1snzrK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:57 +0000", "from_user": "nenapen15", "from_user_id": 256124293, "from_user_id_str": "256124293", "from_user_name": "Nena Pen", "geo": null, "id": 148820377898979330, "id_str": "148820377898979329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1664996550/peuf_20111129_5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664996550/peuf_20111129_5_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "I wish my high school life was like that's so raven's and a skydiving clown would just burst through the classroom window.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:54 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148820366352056320, "id_str": "148820366352056321", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://cybermondaysells.info" rel="nofollow">cybermondaysellsdotinfo</a>", "text": "Who Sells Discount Clown Costume Accessories-Jumbo Clown Scissors On Line http://t.co/wb6T4BV1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:51 +0000", "from_user": "PoisonPenBK", "from_user_id": 25033489, "from_user_id_str": "25033489", "from_user_name": "Poison Pen", "geo": null, "id": 148820353664299000, "id_str": "148820353664299009", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/108255789/PoisenPen_032209_134lr_alt_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/108255789/PoisenPen_032209_134lr_alt_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MATHHOFFA: #Suckas see u n say 1 thing... then jump infront a camera n say another... thats why i cant fuck wit these clown ass battle niggas...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:48 +0000", "from_user": "TheGorester", "from_user_id": 23859015, "from_user_id_str": "23859015", "from_user_name": "Kyle Gorry", "geo": null, "id": 148820338426392580, "id_str": "148820338426392577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1284092681/Photo_on_2011-03-23_at_14.12_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1284092681/Photo_on_2011-03-23_at_14.12_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Insane Clown Posse. No Hits. Deep tracks only. None of that \"Miracles\" crap.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:41 +0000", "from_user": "Rawr_KenRose", "from_user_id": 310625291, "from_user_id_str": "310625291", "from_user_name": "KennedyRose \\u2020", "geo": null, "id": 148820308034453500, "id_str": "148820308034453504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697931587/photo__9__normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697931587/photo__9__normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Malik is forever a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:40 +0000", "from_user": "KrYz_SToNE", "from_user_id": 64033130, "from_user_id_str": "64033130", "from_user_name": "KrYz", "geo": null, "id": 148820305924730880, "id_str": "148820305924730882", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1674490608/330925380_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674490608/330925380_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Coworker has me crying she is a clown...what would my day be like wit out Her!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:39 +0000", "from_user": "Capenbt", "from_user_id": 395401285, "from_user_id_str": "395401285", "from_user_name": "Man Capen", "geo": null, "id": 148820301927559170, "id_str": "148820301927559168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1599625644/MFC-3716_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599625644/MFC-3716_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Christmas Stories: Morris's Disappearing Bag/The Clown of God/Max's Christmas/The Little Drummer Boy: http://t.co/ENSH7zku", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:39 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148820301793341440, "id_str": "148820301793341440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://cybermondaysells.info" rel="nofollow">cybermondaysellsdotinfo</a>", "text": "Reasonable Priced Discount Clown Co-Red Clown Derby Hat Adult Online Store http://t.co/xwu2rDU7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:39 +0000", "from_user": "JoeBat92", "from_user_id": 317983472, "from_user_id_str": "317983472", "from_user_name": "Joseph Batiste", "geo": null, "id": 148820301201932300, "id_str": "148820301201932288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1652891107/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652891107/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@x_DarlinJass so look how you wanna clown !?", "to_user": "x_DarlinJass", "to_user_id": 39362592, "to_user_id_str": "39362592", "to_user_name": "Jasmine", "in_reply_to_status_id": 148820179575521280, "in_reply_to_status_id_str": "148820179575521282"}, +{"created_at": "Mon, 19 Dec 2011 17:41:39 +0000", "from_user": "Mackmaynee", "from_user_id": 265550126, "from_user_id_str": "265550126", "from_user_name": "Mack Levi", "geo": null, "id": 148820300065292300, "id_str": "148820300065292288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1674570374/Mackmaynee1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674570374/Mackmaynee1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@_PrettyWomann Lmaooo ! Lemme Find Out. You Be On That Shit. Ima CLOWN Yo Ass Next Time I See You! Lol", "to_user": "_PrettyWomann", "to_user_id": 244695577, "to_user_id_str": "244695577", "to_user_name": "Aja' ", "in_reply_to_status_id": 148819899471503360, "in_reply_to_status_id_str": "148819899471503360"}, +{"created_at": "Mon, 19 Dec 2011 17:41:38 +0000", "from_user": "AdamPastie", "from_user_id": 142630325, "from_user_id_str": "142630325", "from_user_name": "Adam James Davies", "geo": null, "id": 148820295896137730, "id_str": "148820295896137728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690998401/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690998401/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@zakmain get involved with us you clown! Train up get it proper going! Then have a gander round head back then sankeys, haven't got 1 yet, u", "to_user": "zakmain", "to_user_id": 246542808, "to_user_id_str": "246542808", "to_user_name": "zak main", "in_reply_to_status_id": 148819619220701200, "in_reply_to_status_id_str": "148819619220701186"}, +{"created_at": "Mon, 19 Dec 2011 17:41:37 +0000", "from_user": "Irresistble_Tee", "from_user_id": 250352627, "from_user_id_str": "250352627", "from_user_name": "Na'Tonia Sijuwade", "geo": null, "id": 148820291727003650, "id_str": "148820291727003649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701216588/THAT_BiSHHGSGASS_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701216588/THAT_BiSHHGSGASS_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "* iHate A Clown Ass Nicca", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:29 +0000", "from_user": "MylesRiveraa", "from_user_id": 350118827, "from_user_id_str": "350118827", "from_user_name": "Myles Rivera", "geo": null, "id": 148820258151608320, "id_str": "148820258151608320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686320100/2oMtjq86_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686320100/2oMtjq86_normal", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": ".......... RT @MarMannnnn ........ RT @whiteboytatted Yall clown ass dudes with these mohawks and (cont) http://t.co/dEqkNddb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:28 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148820254078939140, "id_str": "148820254078939136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://cybermondaysells.info" rel="nofollow">cybermondaysellsdotinfo</a>", "text": "Best Buy Cheap Discount Clown Costume Accessories-Red Yellow Clown Shoes A http://t.co/8B7lzQpd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:16 +0000", "from_user": "sarahfergusonX", "from_user_id": 180833674, "from_user_id_str": "180833674", "from_user_name": "Sarah Ferguson", "geo": null, "id": 148820206221926400, "id_str": "148820206221926400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1625185419/sarahfergusonX_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1625185419/sarahfergusonX_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Chandler- I may be able to get on board with the big boobs but the giant ass and the big clown feet!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:13 +0000", "from_user": "xxJanette", "from_user_id": 251664189, "from_user_id_str": "251664189", "from_user_name": "Janette \\u2665", "geo": null, "id": 148820192393310200, "id_str": "148820192393310208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1678875649/Menno_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678875649/Menno_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Ik word later clown xdddddd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:08 +0000", "from_user": "_rachelleeeee", "from_user_id": 283219204, "from_user_id_str": "283219204", "from_user_name": "FreeCharles&Tory", "geo": null, "id": 148820171702804480, "id_str": "148820171702804480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1676507230/HOiJdJ6W_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676507230/HOiJdJ6W_normal", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Santana A Whole Clown .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:05 +0000", "from_user": "RealPrettySelf", "from_user_id": 309149239, "from_user_id_str": "309149239", "from_user_name": "Blessed Shaquan", "geo": null, "id": 148820157245046800, "id_str": "148820157245046784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699474006/2011-12-17_13.40.19_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699474006/2011-12-17_13.40.19_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:51 +0000", "from_user": "MagicCity112", "from_user_id": 291288129, "from_user_id_str": "291288129", "from_user_name": "Tim Simmons", "geo": null, "id": 148820100781314050, "id_str": "148820100781314048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1616298567/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616298567/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:30 +0000", "from_user": "ClaraBoulette", "from_user_id": 334037072, "from_user_id_str": "334037072", "from_user_name": "Navarro Clara", "geo": null, "id": 148820013837586430, "id_str": "148820013837586432", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1597882228/19833_258203846352_671236352_3806091_6410951_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1597882228/19833_258203846352_671236352_3806091_6410951_n_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "Un clown !! @ Chez Flo & Clara http://t.co/MdO1stLj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:29 +0000", "from_user": "PrettyBella17", "from_user_id": 201907607, "from_user_id_str": "201907607", "from_user_name": "Dimpless_18", "geo": null, "id": 148820006879236100, "id_str": "148820006879236096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700657091/iPDoSkft_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700657091/iPDoSkft_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "my mother a CLOWN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:28 +0000", "from_user": "MR_SCOTT22", "from_user_id": 225908795, "from_user_id_str": "225908795", "from_user_name": "Rashadd Scott", "geo": null, "id": 148820003678978050, "id_str": "148820003678978048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675979661/grooves_59_20111121_1596739679_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675979661/grooves_59_20111121_1596739679_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Lame Clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:18 +0000", "from_user": "SlickVick91", "from_user_id": 360865605, "from_user_id_str": "360865605", "from_user_name": "Victor Paredes", "geo": null, "id": 148819959752032260, "id_str": "148819959752032257", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1573082713/Photo139_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1573082713/Photo139_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:10 +0000", "from_user": "Kwaterbakk", "from_user_id": 223611167, "from_user_id_str": "223611167", "from_user_name": "Vincent Coley", "geo": null, "id": 148819928064073730, "id_str": "148819928064073729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679199972/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679199972/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Mr_McNeal lol u kn I see everybody in I.T. Trin to clown lol", "to_user": "Mr_McNeal", "to_user_id": 295317975, "to_user_id_str": "295317975", "to_user_name": "johnny mcneal", "in_reply_to_status_id": 148819481555251200, "in_reply_to_status_id_str": "148819481555251200"}, +{"created_at": "Mon, 19 Dec 2011 17:39:56 +0000", "from_user": "Hola_Doylito", "from_user_id": 29992533, "from_user_id_str": "29992533", "from_user_name": "Your Grandmas BD", "geo": null, "id": 148819870618886140, "id_str": "148819870618886144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1599753870/profile_image_1319219710914_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599753870/profile_image_1319219710914_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:39:54 +0000", "from_user": "BigNoonie21_", "from_user_id": 168345375, "from_user_id_str": "168345375", "from_user_name": "Alton Gobert Jr.", "geo": null, "id": 148819861592739840, "id_str": "148819861592739840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687959639/BigNoonie21__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687959639/BigNoonie21__normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Fuckin right RT @Mocha_DaGoddess: @BigNoonie21_ Lmfao . Noonie , ya ah CLOWN! Gettin money huh cuz ?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:39:50 +0000", "from_user": "cutestplussize", "from_user_id": 214584699, "from_user_id_str": "214584699", "from_user_name": "Nera K.", "geo": null, "id": 148819846073810940, "id_str": "148819846073810944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699487439/20po4V98_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699487439/20po4V98_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "See me i ain't never scared #CLOWN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:39:49 +0000", "from_user": "SignedSANTANA", "from_user_id": 238210670, "from_user_id_str": "238210670", "from_user_name": "Kam \\u01B1 Santana", "geo": null, "id": 148819839568445440, "id_str": "148819839568445440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1635120612/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635120612/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:39:42 +0000", "from_user": "HeDreamOfDena", "from_user_id": 60414556, "from_user_id_str": "60414556", "from_user_name": "Ms. Robinson \\u2122", "geo": null, "id": 148819811328196600, "id_str": "148819811328196608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1640973108/100_1016_crop_crop2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640973108/100_1016_crop_crop2_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Wtf is this clown talkin bout..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:39:34 +0000", "from_user": "billvonachen", "from_user_id": 121660554, "from_user_id_str": "121660554", "from_user_name": "Bill von Achen", "geo": null, "id": 148819778251923460, "id_str": "148819778251923458", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1221376590/avatar_head_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1221376590/avatar_head_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "You know that guttural groan that Krusty the Clown makes whenever something bad happens? I've been doing that a lot today.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:39:31 +0000", "from_user": "thtguy_jonathan", "from_user_id": 147383559, "from_user_id_str": "147383559", "from_user_name": "Jonathan Torres", "geo": null, "id": 148819763924172800, "id_str": "148819763924172800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701120472/OAy1s20d_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701120472/OAy1s20d_normal", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:39:09 +0000", "from_user": "Souljah_Bless", "from_user_id": 160931070, "from_user_id_str": "160931070", "from_user_name": "HotSkull RuffRyder", "geo": null, "id": 148819671829839870, "id_str": "148819671829839873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1630004586/Photo_00044_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630004586/Photo_00044_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Yousayyouwantme but its a clown you want,she nuh have nothin' pon me as a thug star,no gal nuh lucky suh not even if she win the lotto draw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:39:09 +0000", "from_user": "CaLL_Me_SLICKP", "from_user_id": 301128079, "from_user_id_str": "301128079", "from_user_name": "BLOCK\\u2122", "geo": null, "id": 148819671607549950, "id_str": "148819671607549952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1645793656/illphil_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645793656/illphil_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "These clown ass niggas ain't real.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:39:01 +0000", "from_user": "SheikRobinson", "from_user_id": 200773515, "from_user_id_str": "200773515", "from_user_name": "Sheik Robinson", "geo": null, "id": 148819637667242000, "id_str": "148819637667241984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1665041419/Phillies_Celebration__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665041419/Phillies_Celebration__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Stinners Clown just tell me. I'm not working today. Lewis is.", "to_user": "Stinners", "to_user_id": 173212183, "to_user_id_str": "173212183", "to_user_name": "Justin Knosp", "in_reply_to_status_id": 148784337050017800, "in_reply_to_status_id_str": "148784337050017793"}, +{"created_at": "Mon, 19 Dec 2011 17:38:59 +0000", "from_user": "FeIstyBRI", "from_user_id": 167929182, "from_user_id_str": "167929182", "from_user_name": "Briana Elizabeth", "geo": null, "id": 148819628909531140, "id_str": "148819628909531137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695396725/FeIstyBRI_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695396725/FeIstyBRI_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "this Nasty nigga @Tdot_Bagley burped in my ear!!! \\uD83D\\uDE16 lol clown !", "to_user": "Tdot_Bagley", "to_user_id": 213727290, "to_user_id_str": "213727290", "to_user_name": "Terrell Bagley", "in_reply_to_status_id": 148819360465682430, "in_reply_to_status_id_str": "148819360465682432"}, +{"created_at": "Mon, 19 Dec 2011 17:38:57 +0000", "from_user": "NyneDiantre", "from_user_id": 104310695, "from_user_id_str": "104310695", "from_user_name": "Nyne Diantre \\u00A9", "geo": null, "id": 148819620369932300, "id_str": "148819620369932289", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1683682238/256597_196986907018672_100001220922178_588679_5372039_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683682238/256597_196986907018672_100001220922178_588679_5372039_o_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @MELKBebey: @NyneDiantre @Mekkia_diantre @SpawnDiantre mdrrrr je vois...dailleurs @Mekkia_diantre plus jms tu remet la foto du clown elle fait peur.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:38:47 +0000", "from_user": "Nvincible0_o", "from_user_id": 295367290, "from_user_id_str": "295367290", "from_user_name": "Roc Nash", "geo": null, "id": 148819580209467400, "id_str": "148819580209467392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700753317/lCA2E73AD_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700753317/lCA2E73AD_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "dis niggah here a clown @Mr_Takeyobitch_", "to_user": "Mr_Takeyobitch_", "to_user_id": 277212567, "to_user_id_str": "277212567", "to_user_name": "gucci to u bitch", "in_reply_to_status_id": 148818981384503300, "in_reply_to_status_id_str": "148818981384503296"}, +{"created_at": "Mon, 19 Dec 2011 17:38:45 +0000", "from_user": "itsbebeBxTCH", "from_user_id": 55438194, "from_user_id_str": "55438194", "from_user_name": "The Goddess of War \\u2764", "geo": null, "id": 148819573750243330, "id_str": "148819573750243329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1678170667/bianca2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678170667/bianca2_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:38:45 +0000", "from_user": "Angie_Red01", "from_user_id": 254324310, "from_user_id_str": "254324310", "from_user_name": "Angela", "geo": null, "id": 148819572135440400, "id_str": "148819572135440386", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701723656/Angie_Red01_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701723656/Angie_Red01_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@Britstarrx0 Lmao at you #Clown", "to_user": "Britstarrx0", "to_user_id": 65390191, "to_user_id_str": "65390191", "to_user_name": "Brittany Brittany ", "in_reply_to_status_id": 148816723754237950, "in_reply_to_status_id_str": "148816723754237953"}, +{"created_at": "Mon, 19 Dec 2011 17:38:22 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148819473233747970, "id_str": "148819473233747968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://blackfridaycybersales.info" rel="nofollow">blackfridaycybersalesdotinfo</a>", "text": "RG CostumesAdult Clown WigOnly http://t.co/gAvKsQf9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:38:20 +0000", "from_user": "fawlynanjel", "from_user_id": 382915520, "from_user_id_str": "382915520", "from_user_name": "Bridget Herald", "geo": null, "id": 148819464929026050, "id_str": "148819464929026048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1567179778/193655_1677194442414_1014069891_31449299_5270900_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1567179778/193655_1677194442414_1014069891_31449299_5270900_o_normal.jpg", "source": "<a href="http://facebook.fanrank.me" rel="nofollow">Fanrank.me</a>", "text": "Insane Clown Posse been throwing it down for two decades https://t.co/LnGtUtGg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:38:19 +0000", "from_user": "SUPERCEL42", "from_user_id": 196908108, "from_user_id_str": "196908108", "from_user_name": "Marcel Smith", "geo": null, "id": 148819463138066430, "id_str": "148819463138066432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1424057487/champcasa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1424057487/champcasa_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:38:17 +0000", "from_user": "MelodicMelloD", "from_user_id": 48151993, "from_user_id_str": "48151993", "from_user_name": "Justin Ford", "geo": null, "id": 148819454258708480, "id_str": "148819454258708480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1174871663/Justin2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1174871663/Justin2_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@marybehr106 don't clown APS like that! Cool, just hit me. I'm off on Thursday tho", "to_user": "marybehr106", "to_user_id": 149683616, "to_user_id_str": "149683616", "to_user_name": "Padme Amidala", "in_reply_to_status_id": 148817398441582600, "in_reply_to_status_id_str": "148817398441582593"}, +{"created_at": "Mon, 19 Dec 2011 17:38:16 +0000", "from_user": "damooooe", "from_user_id": 33832865, "from_user_id_str": "33832865", "from_user_name": "(day-moe)", "geo": null, "id": 148819449540128770, "id_str": "148819449540128768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700918029/damooooe_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700918029/damooooe_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:38:15 +0000", "from_user": "OhhhSooLovely", "from_user_id": 43589762, "from_user_id_str": "43589762", "from_user_name": "Hannah Montgomery ", "geo": null, "id": 148819447531048960, "id_str": "148819447531048960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1678697272/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678697272/profile_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@ayRow he a clown yo !", "to_user": "ayRow", "to_user_id": 296184191, "to_user_id_str": "296184191", "to_user_name": "Angelica Pickles ", "in_reply_to_status_id": 148819190604775420, "in_reply_to_status_id_str": "148819190604775424"}, +{"created_at": "Mon, 19 Dec 2011 17:38:10 +0000", "from_user": "mdoman31", "from_user_id": 240473106, "from_user_id_str": "240473106", "from_user_name": "Matt Doman", "geo": null, "id": 148819425838108670, "id_str": "148819425838108672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1451755173/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1451755173/image_normal.jpg", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "@jruski23 u almost home u clown", "to_user": "jruski23", "to_user_id": 348777869, "to_user_id_str": "348777869", "to_user_name": "Josh Russo"}, +{"created_at": "Mon, 19 Dec 2011 17:38:06 +0000", "from_user": "Themspriss79", "from_user_id": 109414327, "from_user_id_str": "109414327", "from_user_name": "\\u00AEImmaBoss", "geo": null, "id": 148819406577877000, "id_str": "148819406577876994", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683661473/XeaKFXPC_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683661473/XeaKFXPC_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "You know im's a clown! Had his face in tha place singing Happy Birthday to you!!! Lmao! @KGenean: @Themspriss79 fkxgjsohsibv @ that pic sis\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:38:05 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148819404870787070, "id_str": "148819404870787072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://blackfridaycybersales.info" rel="nofollow">blackfridaycybersalesdotinfo</a>", "text": "RG CostumesChild's Rainbow Clown Wig Costume A..Only $ 12.95 http://t.co/2UnGO0cZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:38:03 +0000", "from_user": "sanndywilsonn", "from_user_id": 291809023, "from_user_id_str": "291809023", "from_user_name": "Sandy Wilson", "geo": null, "id": 148819394452135940, "id_str": "148819394452135937", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1472776383/202877_1162421755_2117336_n__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1472776383/202877_1162421755_2117336_n__1__normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@AidanTGOD hahaa he is a clown.", "to_user": "AidanTGOD", "to_user_id": 188460955, "to_user_id_str": "188460955", "to_user_name": "Aidan Laird"}, +{"created_at": "Mon, 19 Dec 2011 17:38:02 +0000", "from_user": "OllyVickers", "from_user_id": 370604496, "from_user_id_str": "370604496", "from_user_name": "Oliver Twist", "geo": null, "id": 148819393030275070, "id_str": "148819393030275072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701150577/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701150577/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@StuartHolligan haha, when I first heard it I thought he was some clown with his accent. Then heard that. Had to pull it up about 9 times", "to_user": "StuartHolligan", "to_user_id": 350436508, "to_user_id_str": "350436508", "to_user_name": "Stuart Holligan", "in_reply_to_status_id": 148818970143756300, "in_reply_to_status_id_str": "148818970143756288"}, +{"created_at": "Mon, 19 Dec 2011 17:37:55 +0000", "from_user": "Rip_ChuckyDAWG", "from_user_id": 346675184, "from_user_id_str": "346675184", "from_user_name": "\\u24B9\\u262E\\u203D.\\u20AC '", "geo": null, "id": 148819361862393860, "id_str": "148819361862393856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698727301/AgWyAXYCAAAcRr0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698727301/AgWyAXYCAAAcRr0_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @QueThaTruth: I Hate When Niggas Say \"Ion Like Rap Niggas\". Bitch You Rap Just Like Everybody Else Do. Sit Yo Clown Ass Down.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:55 +0000", "from_user": "skinnyjns", "from_user_id": 86468979, "from_user_id_str": "86468979", "from_user_name": "Skinny Jeans", "geo": null, "id": 148819360155312130, "id_str": "148819360155312129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/500354527/skinny-jeans_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/500354527/skinny-jeans_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @Eat_MyKids2011Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:52 +0000", "from_user": "OrdinarySHXT_", "from_user_id": 390767592, "from_user_id_str": "390767592", "from_user_name": "Miyona Andrews .", "geo": null, "id": 148819351334686720, "id_str": "148819351334686720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687021343/PF_01122011210602405_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687021343/PF_01122011210602405_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "had fun with him . he is a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:50 +0000", "from_user": "deadprettypeedi", "from_user_id": 39401102, "from_user_id_str": "39401102", "from_user_name": "Ms Rudy w/ da Booty ", "geo": null, "id": 148819341389991940, "id_str": "148819341389991936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1586935964/Picture_86_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586935964/Picture_86_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Ahaha she is a clown ! \\u00AB@__reddPYT http://t.co/x4swQ2Mc lmfaooo look at what Jamaira has on OMG\\u00BB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:50 +0000", "from_user": "GunZ_NO_RoseZ", "from_user_id": 135310693, "from_user_id_str": "135310693", "from_user_name": "\\u2665Beautiful\\u2665", "geo": null, "id": 148819339108290560, "id_str": "148819339108290561", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695920623/profileImage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695920623/profileImage_normal.jpg", "source": "<a href="http://bit.ly/fVzRUd" rel="nofollow">TwitPal</a>", "text": "I'm untexting u now RT @_CajunBeauty_: @GunZ_NO_RoseZ well yu knew when yu textd me I was gone clown !!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:45 +0000", "from_user": "MoneyYoung", "from_user_id": 27034576, "from_user_id_str": "27034576", "from_user_name": "Dinero Joven\\u2122", "geo": null, "id": 148819319130828800, "id_str": "148819319130828801", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1671343122/330827316_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671343122/330827316_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@JBRobesCeo at all. And use 2 clown like fuck lol", "to_user": "JBRobesCeo", "to_user_id": 48847008, "to_user_id_str": "48847008", "to_user_name": "Bungee", "in_reply_to_status_id": 148819081401864200, "in_reply_to_status_id_str": "148819081401864193"}, +{"created_at": "Mon, 19 Dec 2011 17:37:36 +0000", "from_user": "GOTT_milkk", "from_user_id": 325955661, "from_user_id_str": "325955661", "from_user_name": "\\u2714 Kayla Gott", "geo": null, "id": 148819284221628400, "id_str": "148819284221628416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693807486/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693807486/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:28 +0000", "from_user": "BBAKER1STNLN", "from_user_id": 59946768, "from_user_id_str": "59946768", "from_user_name": "\\u2665\\u2661BBAKER\\u2665\\u2661", "geo": null, "id": 148819246783266800, "id_str": "148819246783266817", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1634842987/206800_10150145997817800_533097799_6792637_5338884_n_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634842987/206800_10150145997817800_533097799_6792637_5338884_n_normal.jpeg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Lmao this clown say anything", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:25 +0000", "from_user": "MyLifeAsLuz_", "from_user_id": 202951107, "from_user_id_str": "202951107", "from_user_name": "Luz Gee (;", "geo": null, "id": 148819236272357380, "id_str": "148819236272357377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1417724701/0628111253_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1417724701/0628111253_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "#Andy lol RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:24 +0000", "from_user": "scott_norman24", "from_user_id": 239780086, "from_user_id_str": "239780086", "from_user_name": "scott norman", "geo": null, "id": 148819232040304640, "id_str": "148819232040304642", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700868386/IMG00846-20111218-2050_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700868386/IMG00846-20111218-2050_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Will some tell this CLOWN @leepaynee that there's 31 days in December #ediottttt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:22 +0000", "from_user": "ibeJusDeejay", "from_user_id": 35406136, "from_user_id_str": "35406136", "from_user_name": "Joe Blowit so HIGH", "geo": null, "id": 148819224129843200, "id_str": "148819224129843200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1661308602/no_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661308602/no_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @QueThaTruth: I Hate When Niggas Say \"Ion Like Rap Niggas\". Bitch You Rap Just Like Everybody Else Do. Sit Yo Clown Ass Down.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:21 +0000", "from_user": "Macquarrieysq", "from_user_id": 395410947, "from_user_id_str": "395410947", "from_user_name": "Eufemia Macquarrie", "geo": null, "id": 148819217397985280, "id_str": "148819217397985281", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1599647907/MFC-1129_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599647907/MFC-1129_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Insane Clown Posse - T-shirts - Band XX-Large: http://t.co/r9xyiasQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:20 +0000", "from_user": "Lachatrnq", "from_user_id": 395388304, "from_user_id_str": "395388304", "from_user_name": "Myrta Lachat", "geo": null, "id": 148819214113849340, "id_str": "148819214113849344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1599594128/MFC-1260_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599594128/MFC-1260_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Insane Clown Posse - T-shirts - Band XX-Large: http://t.co/Luce7MBx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:19 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148819212855541760, "id_str": "148819212855541760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://blackfridaycybersales.info" rel="nofollow">blackfridaycybersalesdotinfo</a>", "text": "Library ImagesClaude Renoir in a clown costume, 1..Only $ 196.93 http://t.co/vT5QUSF7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:08 +0000", "from_user": "LMONEYYYY", "from_user_id": 380450249, "from_user_id_str": "380450249", "from_user_name": "x_x", "geo": null, "id": 148819164331651070, "id_str": "148819164331651072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1683457923/ll_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683457923/ll_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:07 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148819160095404030, "id_str": "148819160095404033", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://blackfridaycybersales.info" rel="nofollow">blackfridaycybersalesdotinfo</a>", "text": "Library ImagesClaude Renoir in a clown costume, 1..Only $ 150.70 http://t.co/oBASz9ej", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:36:57 +0000", "from_user": "buck_killertant", "from_user_id": 435088285, "from_user_id_str": "435088285", "from_user_name": "Rick Tant", "geo": null, "id": 148819120836710400, "id_str": "148819120836710400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1689321571/DU_14_1024x768_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689321571/DU_14_1024x768_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:36:50 +0000", "from_user": "Eat_MyKids", "from_user_id": 232607189, "from_user_id_str": "232607189", "from_user_name": "M\\u25B2tthew $\\u25B2nt\\u25B2n\\u25B2", "geo": null, "id": 148819091090714620, "id_str": "148819091090714624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1692098244/1O96eopX_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692098244/1O96eopX_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:36:50 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148819088817405950, "id_str": "148819088817405952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://blackfridaycybersales.info" rel="nofollow">blackfridaycybersalesdotinfo</a>", "text": "RG CostumesToddler Baby Clown Costume Size (2-..Only $ 19.95 http://t.co/CJ9QDjZ4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:36:43 +0000", "from_user": "Jea_made", "from_user_id": 414896022, "from_user_id_str": "414896022", "from_user_name": "Taylor made", "geo": null, "id": 148819060661039100, "id_str": "148819060661039104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690492318/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690492318/image_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">twidroyd</a>", "text": "RT @porshay901 \\u201C@Jea_made: So stand dwn looking like a made up clown\\u201D<~ she mus talking shit << wys", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:36:37 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148819033356120060, "id_str": "148819033356120065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://blackfridaycybersales.info" rel="nofollow">blackfridaycybersalesdotinfo</a>", "text": "RG CostumesInfant Baby Clown Costume Size Infa..Only $ 19.95 http://t.co/IaOWT6Cp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:36:33 +0000", "from_user": "RHIneeVeluable", "from_user_id": 177677035, "from_user_id_str": "177677035", "from_user_name": "Rhi'Nee \\uE32D\\uE011& \\uE057", "geo": null, "id": 148819017451307000, "id_str": "148819017451307009", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1654678817/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654678817/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@XOXO_JUICYfruit: @MARK_Excellence @rhineeveluable well twitter, I got \\uE313 like I was \\uE10C last\\uE04C... W/ a LONGGGGGG \\uE34A HA\\uE337\\u201D\\uE412\\uE412\\uE412\\uE412\\uE412 you a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:36:33 +0000", "from_user": "ThickAssCandie", "from_user_id": 275064668, "from_user_id_str": "275064668", "from_user_name": "CodeName: Boo\\u2122 ", "geo": null, "id": 148819017426149380, "id_str": "148819017426149376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693876992/Snapshot_20111214_8_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693876992/Snapshot_20111214_8_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "S/O to the fat bitch that just called ME fat! Lmfao CLOWN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:36:29 +0000", "from_user": "_CajunBeauty_", "from_user_id": 130660328, "from_user_id_str": "130660328", "from_user_name": "theREAL HER\\u262E", "geo": null, "id": 148819000242094080, "id_str": "148819000242094080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696541642/profileImage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696541642/profileImage_normal.jpg", "source": "<a href="http://bit.ly/fVzRUd" rel="nofollow">TwitPal</a>", "text": "@GunZ_NO_RoseZ well yu knew when yu textd me I was gone clown !!", "to_user": "GunZ_NO_RoseZ", "to_user_id": 135310693, "to_user_id_str": "135310693", "to_user_name": "\\u2665Beautiful\\u2665", "in_reply_to_status_id": 148818704841445380, "in_reply_to_status_id_str": "148818704841445376"}, +{"created_at": "Mon, 19 Dec 2011 17:36:27 +0000", "from_user": "Trei_8thegreat", "from_user_id": 126478496, "from_user_id_str": "126478496", "from_user_name": "Trei Kelley", "geo": null, "id": 148818994860802050, "id_str": "148818994860802048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1656568936/football_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656568936/football_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:36:17 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148818949096747000, "id_str": "148818949096747008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://blackfridaycybersales.info" rel="nofollow">blackfridaycybersalesdotinfo</a>", "text": "DisneyClown Costume - Disney JoJo's Circu..Only $ 22.88 http://t.co/2z8Vl9yG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 17:36:00 +0000", "from_user": "DRU_D33ZY", "from_user_id": 397125841, "from_user_id_str": "397125841", "from_user_name": "Drew ", "geo": null, "id": 148818880062697470, "id_str": "148818880062697473", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702051638/qFgnnmgP_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702051638/qFgnnmgP_normal", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:35:51 +0000", "from_user": "Najee113_116th", "from_user_id": 163306938, "from_user_id_str": "163306938", "from_user_name": "LODNS", "geo": null, "id": 148818840040640500, "id_str": "148818840040640514", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1663844511/187681_100001502487911_3691310_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663844511/187681_100001502487911_3691310_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Niggas Is So Fucking Funny with There Imagination Its Something New Everyday I tell You Man. I cant Help BVut Laugh At Clown Ass People Man", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:35:44 +0000", "from_user": "B_Harttt", "from_user_id": 299430868, "from_user_id_str": "299430868", "from_user_name": "Bret Hart", "geo": null, "id": 148818814589607940, "id_str": "148818814589607938", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691913869/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691913869/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Woop woop the sound of the clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:35:42 +0000", "from_user": "LuckyLeftyCT", "from_user_id": 184905602, "from_user_id_str": "184905602", "from_user_name": "Lefty", "geo": null, "id": 148818804460359680, "id_str": "148818804460359680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1648616202/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648616202/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "rappers guilty\\u201C@whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:35:40 +0000", "from_user": "Tracyx2", "from_user_id": 24909922, "from_user_id_str": "24909922", "from_user_name": "T-Mac ", "geo": null, "id": 148818796185002000, "id_str": "148818796185001984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1659180329/Tracyx2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659180329/Tracyx2_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "A man that really has it doesn't feel need to tell you about it in hopes you'll like him more. #Clown \\uD83D\\uDD28\\uD83D\\uDD28\\uD83D\\uDD28 @ItsButtaBabie", "to_user": "ItsButtaBabie", "to_user_id": 61315597, "to_user_id_str": "61315597", "to_user_name": "Chantal ", "in_reply_to_status_id": 148816126422429700, "in_reply_to_status_id_str": "148816126422429696"}, +{"created_at": "Mon, 19 Dec 2011 17:35:28 +0000", "from_user": "KishKish09", "from_user_id": 27077888, "from_user_id_str": "27077888", "from_user_name": "KishKish", "geo": null, "id": 148818744767021060, "id_str": "148818744767021056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1666906109/330690707_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666906109/330690707_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "'U look like some1 I know'. SYAD Clown. Delete delete delete", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:35:27 +0000", "from_user": "annabellagrant", "from_user_id": 42501366, "from_user_id_str": "42501366", "from_user_name": "AnnaBella Grant", "geo": null, "id": 148818740195246080, "id_str": "148818740195246082", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1623754476/Anna_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1623754476/Anna_2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @BitchyBrunette: What is that you're wearing? Calvin Clown? #BitchyBrunette", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:35:19 +0000", "from_user": "porshay901", "from_user_id": 339467816, "from_user_id_str": "339467816", "from_user_name": "shay jones", "geo": null, "id": 148818705659342850, "id_str": "148818705659342848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701853401/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701853401/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@Jea_made: So stand dwn looking like a made up clown\\u201D<~ she mus talking shit", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:35:08 +0000", "from_user": "JAYs310", "from_user_id": 56278270, "from_user_id_str": "56278270", "from_user_name": "Jeffrey Jordan", "geo": null, "id": 148818663439474700, "id_str": "148818663439474688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688475430/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688475430/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@JimLeeCals: Lmao clown ass dude on my TL Aww man\\u201D @ him", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:35:07 +0000", "from_user": "LebronTAY_James", "from_user_id": 194397674, "from_user_id_str": "194397674", "from_user_name": "Antasia Howard", "geo": null, "id": 148818655545798660, "id_str": "148818655545798656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702613551/LebronTAY_James_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702613551/LebronTAY_James_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Everybody keeps saying clown fish are suppose to be funny lmaooooooooo , NO they are NOT !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:35:02 +0000", "from_user": "Gallery4N5", "from_user_id": 277674273, "from_user_id_str": "277674273", "from_user_name": "Gallery 4N5", "geo": null, "id": 148818637552230400, "id_str": "148818637552230400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1563992071/Screen_shot_2011-09-28_at_8.41.04_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1563992071/Screen_shot_2011-09-28_at_8.41.04_AM_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Gallery 4N5 Artist of the Day: Tiziano Tornatore. Titled: The Emotionless Clown, mixed media.... http://t.co/EcvzdWkS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:57 +0000", "from_user": "k_k_k_k_kevin", "from_user_id": 74779561, "from_user_id_str": "74779561", "from_user_name": "Kevin Liang", "geo": null, "id": 148818613686644740, "id_str": "148818613686644736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696853410/329761_10150416649541651_667141650_8793635_1559665848_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696853410/329761_10150416649541651_667141650_8793635_1559665848_o_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@icecreamTERESA i'm a clown", "to_user": "icecreamTERESA", "to_user_id": 265043716, "to_user_id_str": "265043716", "to_user_name": "Teresa \\u2665", "in_reply_to_status_id": 148817933500559360, "in_reply_to_status_id_str": "148817933500559362"}, +{"created_at": "Mon, 19 Dec 2011 17:34:52 +0000", "from_user": "kAPtAin_KrAve20", "from_user_id": 150055985, "from_user_id_str": "150055985", "from_user_name": "KPM", "geo": null, "id": 148818595781152770, "id_str": "148818595781152768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689660087/me_2___normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689660087/me_2___normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@YearoftheDay I thought u were slick trying to clown me like, \"tf are u tlkn about krave? let me go back to sleep on tht one\" lol!", "to_user": "YearoftheDay", "to_user_id": 49036219, "to_user_id_str": "49036219", "to_user_name": "Day-Kno", "in_reply_to_status_id": 148676126288519170, "in_reply_to_status_id_str": "148676126288519169"}, +{"created_at": "Mon, 19 Dec 2011 17:34:44 +0000", "from_user": "Cherriexzx", "from_user_id": 431725159, "from_user_id_str": "431725159", "from_user_name": "Cherrie Torp", "geo": null, "id": 148818561870209020, "id_str": "148818561870209024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681082629/uzewqr3xuu_135627912_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681082629/uzewqr3xuu_135627912_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Giggles The Clown Creature Reacher Costume - Adult Standard: http://t.co/lYY7RS1I", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:42 +0000", "from_user": "mad_focused88", "from_user_id": 264006180, "from_user_id_str": "264006180", "from_user_name": "Ty Eaddy", "geo": null, "id": 148818552307187700, "id_str": "148818552307187712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1582287062/Image15_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1582287062/Image15_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Maaan my Aunt Bae Bae is a clown.. Got me dying ova here...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:36 +0000", "from_user": "TheRyanReeves", "from_user_id": 66169589, "from_user_id_str": "66169589", "from_user_name": "Ryan Reeves\\u2122", "geo": null, "id": 148818528563245060, "id_str": "148818528563245056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687119546/TheRyanReeves_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687119546/TheRyanReeves_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:36 +0000", "from_user": "BHUNT_3", "from_user_id": 271834514, "from_user_id_str": "271834514", "from_user_name": "Brandon Hunter", "geo": null, "id": 148818526826807300, "id_str": "148818526826807296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1624877326/IMG_0336_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624877326/IMG_0336_normal.JPG", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@outcheavilleUSA haha I was like this damn clown..yu did that to a couple ppl I've seen lmfao", "to_user": "outcheavilleUSA", "to_user_id": 34562968, "to_user_id_str": "34562968", "to_user_name": "Butch McRae", "in_reply_to_status_id": 148817615933022200, "in_reply_to_status_id_str": "148817615933022208"}, +{"created_at": "Mon, 19 Dec 2011 17:34:34 +0000", "from_user": "Lil_Redd_", "from_user_id": 319176226, "from_user_id_str": "319176226", "from_user_name": "Tam Tam", "geo": null, "id": 148818518169755650, "id_str": "148818518169755648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1669118854/IMG_0220_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669118854/IMG_0220_normal.JPG", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@PoohBear_Est92 did you get a picture kuz I want to clown ha wen I come down there lol", "to_user": "PoohBear_Est92", "to_user_id": 175749612, "to_user_id_str": "175749612", "to_user_name": "Shante'a Foster", "in_reply_to_status_id": 148817931969630200, "in_reply_to_status_id_str": "148817931969630208"}, +{"created_at": "Mon, 19 Dec 2011 17:34:32 +0000", "from_user": "rachhelcourtney", "from_user_id": 133507552, "from_user_id_str": "133507552", "from_user_name": "Rachel Courtney \\u2665", "geo": null, "id": 148818511307866100, "id_str": "148818511307866112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700687899/snapshot_3__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700687899/snapshot_3__normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Lonnie is such a clown , lmaoo ;D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:30 +0000", "from_user": "ThatShitCLAY_", "from_user_id": 74051026, "from_user_id_str": "74051026", "from_user_name": "Jesse Clay Jr", "geo": null, "id": 148818504164970500, "id_str": "148818504164970496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686052559/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686052559/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@bigdaddybrit_ no you're a clown lol", "to_user": "bigdaddybrit_", "to_user_id": 338199598, "to_user_id_str": "338199598", "to_user_name": "DADDY taught you .", "in_reply_to_status_id": 148818223079501820, "in_reply_to_status_id_str": "148818223079501825"}, +{"created_at": "Mon, 19 Dec 2011 17:34:24 +0000", "from_user": "Kay_Stroke", "from_user_id": 143539178, "from_user_id_str": "143539178", "from_user_name": "Moe Bitches", "geo": null, "id": 148818477665361920, "id_str": "148818477665361921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1634706715/Snapshot_20111107_15_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634706715/Snapshot_20111107_15_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Photo: Class Clown http://t.co/kvHhDQoI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:16 +0000", "from_user": "EthanStevie", "from_user_id": 45106548, "from_user_id_str": "45106548", "from_user_name": "Stevie Ethan", "geo": null, "id": 148818444584886270, "id_str": "148818444584886272", "iso_language_code": "el", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1671972381/DSC_0044yeah_babesmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671972381/DSC_0044yeah_babesmall_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Santa Clown is gonna cum and make you mine.... \\u03C7\\u03B1\\u03C7\\u03B1\\u03C7\\u03B1\\u03C7\\u03B1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:06 +0000", "from_user": "zack_says", "from_user_id": 104966660, "from_user_id_str": "104966660", "from_user_name": "Dr. GreenThumb ", "geo": null, "id": 148818400850874370, "id_str": "148818400850874368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1569779338/twit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1569779338/twit_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:05 +0000", "from_user": "Kathi_x3", "from_user_id": 255064653, "from_user_id_str": "255064653", "from_user_name": "KATHI :*", "geo": null, "id": 148818396740460540, "id_str": "148818396740460544", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689580445/2Ay34P6wa6VT_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689580445/2Ay34P6wa6VT_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u00BBso ist das leben\\u00AB sagte der clown.....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:05 +0000", "from_user": "igallupd", "from_user_id": 19132700, "from_user_id_str": "19132700", "from_user_name": "Ignacio Gallup-Diaz", "geo": null, "id": 148818396534943740, "id_str": "148818396534943745", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/71703897/iguardo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/71703897/iguardo_normal.jpg", "source": "<a href="http://netnewswireapp.com/iphone/" rel="nofollow">NetNewsWire for iPhone</a>", "text": "North Korea Dictator/Clown Dies of \"Fatigue Caused By Train Ride\" [Kim Jong Il] http://t.co/zTEwZCcO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:03 +0000", "from_user": "WinklrSprinklr", "from_user_id": 278104398, "from_user_id_str": "278104398", "from_user_name": "Eric Winkler", "geo": null, "id": 148818390671302660, "id_str": "148818390671302659", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1303456230/0323111558_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1303456230/0323111558_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:00 +0000", "from_user": "DeshawnJr_", "from_user_id": 164372522, "from_user_id_str": "164372522", "from_user_name": "DJ Roberts", "geo": null, "id": 148818376272248830, "id_str": "148818376272248833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689619941/Photo_on_2011-12-12_at_11.02__3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689619941/Photo_on_2011-12-12_at_11.02__3_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@YungSurff lmao your a clown cuh", "to_user": "YungSurff", "to_user_id": 213846093, "to_user_id_str": "213846093", "to_user_name": "Atraeu Brundage ", "in_reply_to_status_id": 148818070209691650, "in_reply_to_status_id_str": "148818070209691648"}, +{"created_at": "Mon, 19 Dec 2011 17:33:57 +0000", "from_user": "JustVeryBlunt", "from_user_id": 156461465, "from_user_id_str": "156461465", "from_user_name": "Ciara R Chapman", "geo": null, "id": 148818361726410750, "id_str": "148818361726410753", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693208343/dorothy-dandridge-e1323627913198_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693208343/dorothy-dandridge-e1323627913198_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "I hear loud stomping and turn around this little girl got on my shoe lol. She is such a clown.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:33:56 +0000", "from_user": "TerraceVerde", "from_user_id": 403038901, "from_user_id_str": "403038901", "from_user_name": "Marsellus Wallace", "geo": null, "id": 148818360543621120, "id_str": "148818360543621120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1692565148/TerraceVerde_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692565148/TerraceVerde_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:33:56 +0000", "from_user": "Wild_butCLASSY", "from_user_id": 156123835, "from_user_id_str": "156123835", "from_user_name": "(; Bee'sTheBOMB :) ", "geo": null, "id": 148818357670510600, "id_str": "148818357670510592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1679900581/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679900581/profile_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Fina star wearing mascara, & eye shadow. Trust, I won't be looking like a clown w/ mines on thoe ..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:33:35 +0000", "from_user": "Luvly_Musiq", "from_user_id": 240426760, "from_user_id_str": "240426760", "from_user_name": "Cedrica Cannon", "geo": null, "id": 148818273381781500, "id_str": "148818273381781504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1662724604/Luvly_Musiq_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662724604/Luvly_Musiq_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Naw I wit tht thts my fav lol \\u201C@JuDeeezz Cee cee n reggie not gonna clown me about me wanting a lunchable\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:33:20 +0000", "from_user": "iGOOGLE_Dassh", "from_user_id": 314328162, "from_user_id_str": "314328162", "from_user_name": "TaJanee Dassh", "geo": null, "id": 148818209523507200, "id_str": "148818209523507200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1672504896/dasshinn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672504896/dasshinn_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "lmao about hi, trying to clown ...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:33:18 +0000", "from_user": "edwardviljoen", "from_user_id": 36567522, "from_user_id_str": "36567522", "from_user_name": "Edward Viljoen", "geo": null, "id": 148818201231376400, "id_str": "148818201231376384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1240607391/49223_533464736_321_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1240607391/49223_533464736_321_q_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "Two cannibals are eating a clown. One says to the other: \"Does this taste funny to you?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:33:16 +0000", "from_user": "WorldChampionZ", "from_user_id": 417574620, "from_user_id_str": "417574620", "from_user_name": "Charlie Zelenoff", "geo": null, "id": 148818192318476300, "id_str": "148818192318476288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694042046/Charlie_Z_The_Goat_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694042046/Charlie_Z_The_Goat_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "vitali klitschko has about the ugliest boxing style ive ever seen its effective against bums. give me a break id kill this clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:33:13 +0000", "from_user": "Lexx_Pexx", "from_user_id": 309245238, "from_user_id_str": "309245238", "from_user_name": "Elexus Hutt", "geo": null, "id": 148818179962056700, "id_str": "148818179962056704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1549417441/039_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1549417441/039_normal.PNG", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "#clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:33:08 +0000", "from_user": "SWAG_KatieJones", "from_user_id": 364065705, "from_user_id_str": "364065705", "from_user_name": "Katie Jones", "geo": null, "id": 148818160311742460, "id_str": "148818160311742466", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702209637/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702209637/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Lmfao stfu your a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:33:02 +0000", "from_user": "AYO_WALLYGzz", "from_user_id": 32307764, "from_user_id_str": "32307764", "from_user_name": "JUUHURR !$!", "geo": null, "id": 148818134713892860, "id_str": "148818134713892865", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695659890/rugby_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695659890/rugby_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "IF U EAT A CLOWN WOULD IT TASTE FUNNY ? LOL #FOODFORTHOUGHT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:50 +0000", "from_user": "deivig12", "from_user_id": 178940590, "from_user_id_str": "178940590", "from_user_name": "Deivi", "geo": null, "id": 148818082809380860, "id_str": "148818082809380864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670303891/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670303891/image_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"@whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:50 +0000", "from_user": "Rye_life", "from_user_id": 210625214, "from_user_id_str": "210625214", "from_user_name": "Rye James SuLlivan ", "geo": null, "id": 148818081353957380, "id_str": "148818081353957376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1629978813/VT819QD2_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629978813/VT819QD2_normal", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:46 +0000", "from_user": "JKingRF", "from_user_id": 28432382, "from_user_id_str": "28432382", "from_user_name": "J-King", "geo": null, "id": 148818067609235460, "id_str": "148818067609235456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1299638723/JKingRF_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1299638723/JKingRF_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "Why these clown ass niggas see me with my iPad 2 n start talking to each other about some Strong Arm Shit #Iwishaniggawould", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:46 +0000", "from_user": "msloorett", "from_user_id": 89600185, "from_user_id_str": "89600185", "from_user_name": "Loretta", "geo": null, "id": 148818064614494200, "id_str": "148818064614494209", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1300380810/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1300380810/profile_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @lookatnitanow: @msloorett y so? [Now u know darn well the clown u dealing w, dnt ask \"y so\"]", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:40 +0000", "from_user": "Doctor_Rx", "from_user_id": 217489561, "from_user_id_str": "217489561", "from_user_name": "Alex Romero", "geo": null, "id": 148818042703446000, "id_str": "148818042703446016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1690739252/ratpacker_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690739252/ratpacker_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "My kids just got kicked out of the Discount Community Clown College. They don't seem to take their discount education seriously. >:(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:36 +0000", "from_user": "MelssPerfeicao", "from_user_id": 358404777, "from_user_id_str": "358404777", "from_user_name": "Melissa Garcia", "geo": null, "id": 148818023963308030, "id_str": "148818023963308033", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685883290/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685883290/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:35 +0000", "from_user": "UHateMsRoyalty", "from_user_id": 25137122, "from_user_id_str": "25137122", "from_user_name": "Ms Carinne Royalty", "geo": null, "id": 148818019412492300, "id_str": "148818019412492289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701434360/331682392_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701434360/331682392_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Lol RT @D_Bodyguard: @UHateMsRoyalty don't worry bout dat clown. U kno if niggas fuckin wit u, yur cuz b down there in a fuckin heart beat.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:33 +0000", "from_user": "kwamDADon", "from_user_id": 60996477, "from_user_id_str": "60996477", "from_user_name": "Kwam THE DON", "geo": null, "id": 148818010700906500, "id_str": "148818010700906496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1661974387/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661974387/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@LoveMe_BEllAD lol clown", "to_user": "LoveMe_BEllAD", "to_user_id": 259471985, "to_user_id_str": "259471985", "to_user_name": "Bella Donna", "in_reply_to_status_id": 148813634636754940, "in_reply_to_status_id_str": "148813634636754944"}, +{"created_at": "Mon, 19 Dec 2011 17:32:31 +0000", "from_user": "BodogUK", "from_user_id": 54927452, "from_user_id_str": "54927452", "from_user_name": "Bodog UK", "geo": null, "id": 148818003935498240, "id_str": "148818003935498244", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1318530844/180x180-logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1318530844/180x180-logo_normal.jpg", "source": "<a href="http://app.net/mypad" rel="nofollow">MyPad for iOS (iPad)</a>", "text": "RT @theboychalloner: @BodogUK that clown could be anyone in the wolves Side !!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:27 +0000", "from_user": "IAmLucyRay", "from_user_id": 162080993, "from_user_id_str": "162080993", "from_user_name": "ERROR LOADING FILE", "geo": null, "id": 148817987586101250, "id_str": "148817987586101248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702219269/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702219269/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:27 +0000", "from_user": "Rozay_SoG", "from_user_id": 59575455, "from_user_id_str": "59575455", "from_user_name": "Gerry Cooper \\u270C", "geo": null, "id": 148817984440385540, "id_str": "148817984440385536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1677518159/2HxN6S3O_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677518159/2HxN6S3O_normal", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:27 +0000", "from_user": "XL_Magnum", "from_user_id": 235616298, "from_user_id_str": "235616298", "from_user_name": "----Magno", "geo": null, "id": 148817984255836160, "id_str": "148817984255836160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1676056258/IMAG0095-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676056258/IMAG0095-1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@whiteboytatted Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:23 +0000", "from_user": "__marrrley", "from_user_id": 286771577, "from_user_id_str": "286771577", "from_user_name": "darynn ..\\u2665", "geo": null, "id": 148817969496080400, "id_str": "148817969496080384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700627868/379428_289997247703979_100000811170723_742143_450542808_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700627868/379428_289997247703979_100000811170723_742143_450542808_n_normal.jpg", "source": "<a href="http://www.htc.com" rel="nofollow">HTC Peep</a>", "text": "Mel is a clown loll .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:17 +0000", "from_user": "Daylinn_Shonuff", "from_user_id": 378386674, "from_user_id_str": "378386674", "from_user_name": "kaya raquel . ", "geo": null, "id": 148817943902425100, "id_str": "148817943902425091", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699574644/registration_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699574644/registration_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@on_MARz_CUS your a clown . Lol", "to_user": "on_MARz_CUS", "to_user_id": 244767098, "to_user_id_str": "244767098", "to_user_name": "Marcus L. Smith", "in_reply_to_status_id": 148816497987436540, "in_reply_to_status_id_str": "148816497987436544"}, +{"created_at": "Mon, 19 Dec 2011 17:32:16 +0000", "from_user": "Hailee_miguel", "from_user_id": 138941328, "from_user_id_str": "138941328", "from_user_name": "Hailee Miguel", "geo": null, "id": 148817939838156800, "id_str": "148817939838156800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691272980/Hailee_miguel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691272980/Hailee_miguel_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "I hate when ppl try and talk dwn to me about football just cuz their a 'guy' My sports knowledge is way better than urs and ill clown u!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:14 +0000", "from_user": "theilladelphian", "from_user_id": 270455992, "from_user_id_str": "270455992", "from_user_name": "Willie Dynamite", "geo": null, "id": 148817932695257100, "id_str": "148817932695257089", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1689211085/5zabPqA3_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689211085/5zabPqA3_normal", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:12 +0000", "from_user": "torii_lovee", "from_user_id": 224024316, "from_user_id_str": "224024316", "from_user_name": "Victoria", "geo": null, "id": 148817925351018500, "id_str": "148817925351018496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1639363182/IMG_4557_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639363182/IMG_4557_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:06 +0000", "from_user": "TrueChamp5", "from_user_id": 281308219, "from_user_id_str": "281308219", "from_user_name": "Stephen Simmons", "geo": null, "id": 148817900013232130, "id_str": "148817900013232128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1432647255/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1432647255/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@fizapirani hahahahaha you're such a #Clown", "to_user": "fizapirani", "to_user_id": 79111942, "to_user_id_str": "79111942", "to_user_name": "Fiza Pirani", "in_reply_to_status_id": 148817194980085760, "in_reply_to_status_id_str": "148817194980085761"}, +{"created_at": "Mon, 19 Dec 2011 17:32:03 +0000", "from_user": "_MayaMariNoodle", "from_user_id": 235338009, "from_user_id_str": "235338009", "from_user_name": "Maya Lewis", "geo": null, "id": 148817885677105150, "id_str": "148817885677105152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691285421/331446106_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691285421/331446106_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "I would sew my vagina up before I ever have sexual intercourse with this clown. Please leave sir.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:00 +0000", "from_user": "CodyGarrett_1", "from_user_id": 386254906, "from_user_id_str": "386254906", "from_user_name": "Cody garrett", "geo": null, "id": 148817874599944200, "id_str": "148817874599944194", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699491685/Picture0098_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699491685/Picture0098_normal.JPG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "This @0samaBinSwaggin is a clown", "to_user": "0samaBinSwaggin", "to_user_id": 347541539, "to_user_id_str": "347541539", "to_user_name": "Kory Diddy", "in_reply_to_status_id": 148817599818506240, "in_reply_to_status_id_str": "148817599818506240"}, +{"created_at": "Mon, 19 Dec 2011 17:31:59 +0000", "from_user": "Dummy2Insane", "from_user_id": 192892045, "from_user_id_str": "192892045", "from_user_name": "DummyDoTatt2s", "geo": null, "id": 148817868375588860, "id_str": "148817868375588864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1678922513/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678922513/profile_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:53 +0000", "from_user": "MikeyBullock", "from_user_id": 90986226, "from_user_id_str": "90986226", "from_user_name": "Michael Bullock", "geo": null, "id": 148817844820377600, "id_str": "148817844820377600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697437257/MikeyBullock_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697437257/MikeyBullock_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:45 +0000", "from_user": "RaysFH", "from_user_id": 37424734, "from_user_id_str": "37424734", "from_user_name": "Ray Beckerman", "geo": null, "id": 148817810825543680, "id_str": "148817810825543680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1122499755/ray_portrait_in_library.jpg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1122499755/ray_portrait_in_library.jpg_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "On the News With Thom Hartmann: The Tea Party Clown Show ~ @truthout http://t.co/TCHqCT0n", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:42 +0000", "from_user": "Tay_Super13ased", "from_user_id": 153645472, "from_user_id_str": "153645472", "from_user_name": "Taylor Young", "geo": null, "id": 148817798796283900, "id_str": "148817798796283905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690352892/IMG_20111210_204316_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690352892/IMG_20111210_204316_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:35 +0000", "from_user": "Cmp_Gunz729", "from_user_id": 336418506, "from_user_id_str": "336418506", "from_user_name": "Corey Perez", "geo": null, "id": 148817769989799940, "id_str": "148817769989799937", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1663338605/PhotoChooser-e40c5892-e8d5-4339-a7f9-2b1128b70b24_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663338605/PhotoChooser-e40c5892-e8d5-4339-a7f9-2b1128b70b24_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:30 +0000", "from_user": "MonstaSimms", "from_user_id": 162897596, "from_user_id_str": "162897596", "from_user_name": "@NateTheGreat", "geo": null, "id": 148817747512533000, "id_str": "148817747512532993", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1512756522/180096_10150390611470613_526815612_17083056_6861318_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1512756522/180096_10150390611470613_526815612_17083056_6861318_n_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:29 +0000", "from_user": "writeinthedark", "from_user_id": 189394392, "from_user_id_str": "189394392", "from_user_name": "LinUnicorn", "geo": null, "id": 148817742189969400, "id_str": "148817742189969408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702348367/331702923_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702348367/331702923_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Ugh fuck you nose ! I look like a clown red nose red cheeks runny nose fak yu T.T", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:27 +0000", "from_user": "Prolem_childd", "from_user_id": 47884391, "from_user_id_str": "47884391", "from_user_name": "Trillahh_ThanABitch!", "geo": null, "id": 148817736687042560, "id_str": "148817736687042560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688778902/trill3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688778902/trill3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "i wannt a a girl , that come just kick it wit a nigga all day , aint gotta fck or nothin , just lay back watch tv and clown..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:27 +0000", "from_user": "Steeven_23", "from_user_id": 299892340, "from_user_id_str": "299892340", "from_user_name": "S T E V E N ! ;D", "geo": null, "id": 148817734078177280, "id_str": "148817734078177281", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680153651/007_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680153651/007_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @WTFitsRONALD: #IWasThatKid that would always be the class clown in elementary .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:26 +0000", "from_user": "trueloveo_O", "from_user_id": 440544116, "from_user_id_str": "440544116", "from_user_name": "Daylanice Smyre", "geo": null, "id": 148817731976826880, "id_str": "148817731976826880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701476849/9194t46s_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701476849/9194t46s_normal", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@whiteboytatted Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:21 +0000", "from_user": "Jeezeeh95", "from_user_id": 267969072, "from_user_id_str": "267969072", "from_user_name": "\\uE12F\\uE335Jeezeeh Milazzo\\uE335\\uE12F", "geo": null, "id": 148817710187413500, "id_str": "148817710187413505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1508030043/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1508030043/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:18 +0000", "from_user": "BITEmyTWEETS___", "from_user_id": 385660244, "from_user_id_str": "385660244", "from_user_name": "\\u2661 T A T Y A N A", "geo": null, "id": 148817697155710980, "id_str": "148817697155710976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691816694/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691816694/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:15 +0000", "from_user": "TyWinfrey", "from_user_id": 146892382, "from_user_id_str": "146892382", "from_user_name": "Ty winfrey", "geo": null, "id": 148817684040134660, "id_str": "148817684040134656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700513175/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700513175/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:02 +0000", "from_user": "Queen_Viv", "from_user_id": 243493308, "from_user_id_str": "243493308", "from_user_name": "Vivian Williams", "geo": null, "id": 148817630227218430, "id_str": "148817630227218433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1649779037/hey_there_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649779037/hey_there_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@_DuRantandRave_ lol ur a clown", "to_user": "_DuRantandRave_", "to_user_id": 70694649, "to_user_id_str": "70694649", "to_user_name": "Mr. Yeah", "in_reply_to_status_id": 148813593113137150, "in_reply_to_status_id_str": "148813593113137152"}, +{"created_at": "Mon, 19 Dec 2011 17:31:02 +0000", "from_user": "_BlaqueDiva", "from_user_id": 222656984, "from_user_id_str": "222656984", "from_user_name": "Ebo", "geo": null, "id": 148817630097178620, "id_str": "148817630097178625", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1645743222/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645743222/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "This broad look like a clown wit this christmas tree hat on", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:00 +0000", "from_user": "_abcderin", "from_user_id": 101246616, "from_user_id_str": "101246616", "from_user_name": "Erin Kimber", "geo": null, "id": 148817622077685760, "id_str": "148817622077685760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694920383/newtwitterthingy_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694920383/newtwitterthingy_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "that clown in fluorescent adolescent scares the shit out of me.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:59 +0000", "from_user": "Kjborntoball", "from_user_id": 391035928, "from_user_id_str": "391035928", "from_user_name": "Kj Justin", "geo": null, "id": 148817615169662980, "id_str": "148817615169662976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1646145491/386648_2045575065558_1429840871_1650277_189615124_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646145491/386648_2045575065558_1429840871_1650277_189615124_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@E92Forever ur a clown", "to_user": "E92Forever", "to_user_id": 294192266, "to_user_id_str": "294192266", "to_user_name": "Jade-Roy Huntington", "in_reply_to_status_id": 148817078084837380, "in_reply_to_status_id_str": "148817078084837376"}, +{"created_at": "Mon, 19 Dec 2011 17:30:51 +0000", "from_user": "STREET_MGB", "from_user_id": 24789034, "from_user_id_str": "24789034", "from_user_name": " $$Midtown- Money $$", "geo": null, "id": 148817584349909000, "id_str": "148817584349908993", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698503257/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698503257/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "if u have on a triple fat goose jacket in 2011 you're a clown!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:38 +0000", "from_user": "VictorLaPara_", "from_user_id": 213980479, "from_user_id_str": "213980479", "from_user_name": "Toxic Crow", "geo": null, "id": 148817527659692030, "id_str": "148817527659692032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698817638/IMG_20111217_141932_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698817638/IMG_20111217_141932_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@DamierGenesis is A Clown For His AVI lol", "to_user": "DamierGenesis", "to_user_id": 128665538, "to_user_id_str": "128665538", "to_user_name": "Domo Fucking Genesis", "in_reply_to_status_id": 148814223424753660, "in_reply_to_status_id_str": "148814223424753665"}, +{"created_at": "Mon, 19 Dec 2011 17:30:33 +0000", "from_user": "SteveJ_Q_", "from_user_id": 433850933, "from_user_id_str": "433850933", "from_user_name": "Stephen Quinn", "geo": null, "id": 148817508437200900, "id_str": "148817508437200896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689806481/gE71lsNO_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689806481/gE71lsNO_normal", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:32 +0000", "from_user": "1COOLFOOL", "from_user_id": 226144059, "from_user_id_str": "226144059", "from_user_name": "\\u00A9D.J.\\u2122", "geo": null, "id": 148817503370485760, "id_str": "148817503370485761", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686193257/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686193257/image_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh \\u00AB--Dick Riders", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:28 +0000", "from_user": "Samy_Tone", "from_user_id": 256179831, "from_user_id_str": "256179831", "from_user_name": "Samy Khattab", "geo": null, "id": 148817485628579840, "id_str": "148817485628579840", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693411359/Samy_Tone_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693411359/Samy_Tone_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@NesrineMcDellal t'es avec un clown???", "to_user": "NesrineMcDellal", "to_user_id": 180040255, "to_user_id_str": "180040255", "to_user_name": "Jacques Nesrine", "in_reply_to_status_id": 148813286362722300, "in_reply_to_status_id_str": "148813286362722304"}, +{"created_at": "Mon, 19 Dec 2011 17:30:26 +0000", "from_user": "WTFitsJanna_", "from_user_id": 178520984, "from_user_id_str": "178520984", "from_user_name": "Janna Parker", "geo": null, "id": 148817480696086530, "id_str": "148817480696086528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702499024/photo_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702499024/photo_normal", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @WTFitsRONALD: #IWasThatKid that would always be the class clown in elementary .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:26 +0000", "from_user": "KouldntCareLess", "from_user_id": 304093555, "from_user_id_str": "304093555", "from_user_name": "Im ME", "geo": null, "id": 148817479760752640, "id_str": "148817479760752640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700826857/390017_234684946594384_100001586410948_652005_306726187_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700826857/390017_234684946594384_100001586410948_652005_306726187_n_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Lmbo &das y u lookin assed out now cuz u a sucka!\\n#clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:24 +0000", "from_user": "Chris_Viking", "from_user_id": 55080057, "from_user_id_str": "55080057", "from_user_name": "Chris Williams", "geo": null, "id": 148817472215203840, "id_str": "148817472215203840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1494052268/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1494052268/image_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Aspinwall... What a clown. How many chances has he had now? #rugbyleague", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:22 +0000", "from_user": "DwezOnTheTrack", "from_user_id": 24343314, "from_user_id_str": "24343314", "from_user_name": "Sean Khin", "geo": null, "id": 148817460655697920, "id_str": "148817460655697920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1626003442/sesa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626003442/sesa_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:18 +0000", "from_user": "therealcpee", "from_user_id": 255660297, "from_user_id_str": "255660297", "from_user_name": "Cp", "geo": null, "id": 148817446176948220, "id_str": "148817446176948224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702437436/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702437436/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:14 +0000", "from_user": "tha_exquisite1", "from_user_id": 108141929, "from_user_id_str": "108141929", "from_user_name": "Esquire", "geo": null, "id": 148817428892225540, "id_str": "148817428892225536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701497822/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701497822/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@D_2cool4skool: I just look like this u clown\\u201D --- Bake ain it? Lol [Baker voice] \"Aye clown, I'm documenting\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:11 +0000", "from_user": "Deejay_ion", "from_user_id": 134994579, "from_user_id_str": "134994579", "from_user_name": "Jimmy Mosqueda", "geo": null, "id": 148817416921690100, "id_str": "148817416921690112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1549321353/facebook_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1549321353/facebook_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:10 +0000", "from_user": "Scandyyy25", "from_user_id": 253225212, "from_user_id_str": "253225212", "from_user_name": "Anthony Scandy \\u2714", "geo": null, "id": 148817412974845950, "id_str": "148817412974845953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692280361/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692280361/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:05 +0000", "from_user": "waoh123", "from_user_id": 100342492, "from_user_id_str": "100342492", "from_user_name": "Johnathan Ramos", "geo": null, "id": 148817392682795000, "id_str": "148817392682795008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1605147688/4nEF24gd_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1605147688/4nEF24gd_normal", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:02 +0000", "from_user": "BallerJC34", "from_user_id": 231142702, "from_user_id_str": "231142702", "from_user_name": "James Jr", "geo": null, "id": 148817378770305020, "id_str": "148817378770305024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1660869612/BallerJC34_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660869612/BallerJC34_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:01 +0000", "from_user": "AC_onMAX", "from_user_id": 51998976, "from_user_id_str": "51998976", "from_user_name": "WILLIE_EARL", "geo": null, "id": 148817373095403520, "id_str": "148817373095403520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702453665/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702453665/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:00 +0000", "from_user": "uLoveMila", "from_user_id": 27260000, "from_user_id_str": "27260000", "from_user_name": "DAMILA", "geo": null, "id": 148817371816140800, "id_str": "148817371816140800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1671744647/uLoveMila_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671744647/uLoveMila_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "\\uD83D\\uDE47\\uD83D\\uDD2B\\uD83D\\uDE02RT @MakeUp_N_MayHeM: But who plays \"act like that\" on somebody voicemail? Tyrese tho? C'mon clown shoes try again", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:00 +0000", "from_user": "alak43", "from_user_id": 71310969, "from_user_id_str": "71310969", "from_user_name": "...", "geo": null, "id": 148817370574630900, "id_str": "148817370574630912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1625825978/327084_10150359287801099_501311098_8413266_389089267_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1625825978/327084_10150359287801099_501311098_8413266_389089267_o_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:00 +0000", "from_user": "BETTY_MARLEY", "from_user_id": 26125015, "from_user_id_str": "26125015", "from_user_name": "BETTY MARLEY-MIYAGI", "geo": null, "id": 148817370218115070, "id_str": "148817370218115072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695911548/BETTY_MARLEY_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695911548/BETTY_MARLEY_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:58 +0000", "from_user": "MissGavanne", "from_user_id": 171956368, "from_user_id_str": "171956368", "from_user_name": "\\uE303Gavanne Davis", "geo": null, "id": 148817361342955520, "id_str": "148817361342955520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700734575/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700734575/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@iGOHAM_Burga: @MissGavanne @KRIS10_Bee yea clown\\u201D yeaa! I'm down!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:56 +0000", "from_user": "TooTrill316", "from_user_id": 197649383, "from_user_id_str": "197649383", "from_user_name": "D-Will", "geo": null, "id": 148817352853692400, "id_str": "148817352853692416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1634173779/PIC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634173779/PIC_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:52 +0000", "from_user": "irdemetri", "from_user_id": 40336935, "from_user_id_str": "40336935", "from_user_name": "James", "geo": null, "id": 148817336277811200, "id_str": "148817336277811200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1631290200/ewugly_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631290200/ewugly_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:49 +0000", "from_user": "MATHHOFFA", "from_user_id": 23317405, "from_user_id_str": "23317405", "from_user_name": "Math Hoffa", "geo": null, "id": 148817325552975870, "id_str": "148817325552975872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1502170953/photo_5_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1502170953/photo_5_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "#Suckas see u n say 1 thing... then jump infront a camera n say another... thats why i cant fuck wit these clown ass battle niggas...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:47 +0000", "from_user": "U532N4M3", "from_user_id": 433921169, "from_user_id_str": "433921169", "from_user_name": "Chris Ferrell", "geo": null, "id": 148817314459025400, "id_str": "148817314459025408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1688270046/hjhjhjhj_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688270046/hjhjhjhj_normal.PNG", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:43 +0000", "from_user": "natdukes", "from_user_id": 48376646, "from_user_id_str": "48376646", "from_user_name": "\\u2661", "geo": null, "id": 148817298541654000, "id_str": "148817298541654016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680698190/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680698190/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:37 +0000", "from_user": "TylerThaCre8tor", "from_user_id": 370277753, "from_user_id_str": "370277753", "from_user_name": "Tyler Spencer", "geo": null, "id": 148817274839646200, "id_str": "148817274839646208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1553151325/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553151325/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 17:29:37 +0000", "from_user": "TylerThaCre8tor", "from_user_id": 370277753, "from_user_id_str": "370277753", "from_user_name": "Tyler Spencer", "geo": null, "id": 148817274839646200, "id_str": "148817274839646208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1553151325/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553151325/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:36 +0000", "from_user": "EnigmaJohnDoe", "from_user_id": 427601192, "from_user_id_str": "427601192", "from_user_name": "Hey Arnold", "geo": null, "id": 148817270125244400, "id_str": "148817270125244418", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701111306/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111306/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:35 +0000", "from_user": "VictoriaPDunn", "from_user_id": 26258460, "from_user_id_str": "26258460", "from_user_name": "Victoria Dunn", "geo": null, "id": 148817263691178000, "id_str": "148817263691177984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1133088543/VictoriaPDunn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1133088543/VictoriaPDunn_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@TheBodii done! We're gonna clown tomorrow morning! :-)", "to_user": "TheBodii", "to_user_id": 54016106, "to_user_id_str": "54016106", "to_user_name": "That Tree Over There", "in_reply_to_status_id": 148804749372833800, "in_reply_to_status_id_str": "148804749372833792"}, +{"created_at": "Mon, 19 Dec 2011 17:29:34 +0000", "from_user": "GotBleezyDreezy", "from_user_id": 246590835, "from_user_id_str": "246590835", "from_user_name": "Andrew Garcia", "geo": null, "id": 148817261308817400, "id_str": "148817261308817409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702496460/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702496460/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:33 +0000", "from_user": "KJSAYZ", "from_user_id": 28004730, "from_user_id_str": "28004730", "from_user_name": "Time Machine Tommy", "geo": null, "id": 148817257538125820, "id_str": "148817257538125824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1684369964/kay_ha_ballin_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684369964/kay_ha_ballin_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:31 +0000", "from_user": "ItsEll__", "from_user_id": 240066161, "from_user_id_str": "240066161", "from_user_name": "LaLa Evans ", "geo": null, "id": 148817249568952320, "id_str": "148817249568952320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693698594/2B2DLE2c_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693698594/2B2DLE2c_normal", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:30 +0000", "from_user": "pkiszkiel", "from_user_id": 331292901, "from_user_id_str": "331292901", "from_user_name": "pkiszkiel", "geo": null, "id": 148817243948597250, "id_str": "148817243948597248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1434249298/200685_1910344326167_1468631011_32113774_7805417_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1434249298/200685_1910344326167_1468631011_32113774_7805417_n_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:29 +0000", "from_user": "ru_DRUNKritenow", "from_user_id": 154415844, "from_user_id_str": "154415844", "from_user_name": "April Smallz", "geo": null, "id": 148817239674597380, "id_str": "148817239674597376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702340698/profile_image_1324310535580_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702340698/profile_image_1324310535580_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@whiteboytatted Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:29 +0000", "from_user": "MrNiceguy_rudy", "from_user_id": 401787521, "from_user_id_str": "401787521", "from_user_name": "Rudy skryzmoski", "geo": null, "id": 148817239494242300, "id_str": "148817239494242306", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1673607476/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673607476/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:27 +0000", "from_user": "thatJOINTjackie", "from_user_id": 29146576, "from_user_id_str": "29146576", "from_user_name": "Jacqueline", "geo": null, "id": 148817230728138750, "id_str": "148817230728138752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670800910/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670800910/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:27 +0000", "from_user": "GucciDamous", "from_user_id": 378107665, "from_user_id_str": "378107665", "from_user_name": "Albert Seda", "geo": null, "id": 148817229910253570, "id_str": "148817229910253568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1576752295/NOSO________447545_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576752295/NOSO________447545_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:25 +0000", "from_user": "Ohh_Sam", "from_user_id": 102153844, "from_user_id_str": "102153844", "from_user_name": "Samantha Ellisa", "geo": null, "id": 148817222809296900, "id_str": "148817222809296896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1651532012/twit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651532012/twit_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:22 +0000", "from_user": "CAUTION_itsRoYY", "from_user_id": 44785854, "from_user_id_str": "44785854", "from_user_name": "ROOOYYYYY!!!! ", "geo": null, "id": 148817208817106940, "id_str": "148817208817106944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1624176224/2011-11-05_15.31.17-1-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624176224/2011-11-05_15.31.17-1-1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Lucky_Juju LOL What time will that be clown? & what text???", "to_user": "Lucky_Juju", "to_user_id": 188503233, "to_user_id_str": "188503233", "to_user_name": "Only One", "in_reply_to_status_id": 148816873365057540, "in_reply_to_status_id_str": "148816873365057536"}, +{"created_at": "Mon, 19 Dec 2011 17:29:17 +0000", "from_user": "YoungBridge", "from_user_id": 48334816, "from_user_id_str": "48334816", "from_user_name": "Cameron Bridgewater", "geo": null, "id": 148817189644926980, "id_str": "148817189644926976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1569680719/296620_10150305857071503_522546502_8205269_1307178555_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1569680719/296620_10150305857071503_522546502_8205269_1307178555_n_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:15 +0000", "from_user": "Born2b_aLegend", "from_user_id": 304632094, "from_user_id_str": "304632094", "from_user_name": "Darius Douglas", "geo": null, "id": 148817181495406600, "id_str": "148817181495406592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700645739/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700645739/profile_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:14 +0000", "from_user": "GeneralYosh", "from_user_id": 184750301, "from_user_id_str": "184750301", "from_user_name": "Coonin\\u00D8'Brien _,,,/", "geo": null, "id": 148817178739752960, "id_str": "148817178739752961", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687625990/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687625990/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT\\u201C@whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh\\u201D chuuch.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:14 +0000", "from_user": "MiddleFingaToBS", "from_user_id": 46443516, "from_user_id_str": "46443516", "from_user_name": " Fck YOU!", "geo": null, "id": 148817178408386560, "id_str": "148817178408386560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696233245/bignehsa__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696233245/bignehsa__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:12 +0000", "from_user": "Jenny_x0x", "from_user_id": 355851853, "from_user_id_str": "355851853", "from_user_name": "Jennifer Bozsar", "geo": null, "id": 148817170091094000, "id_str": "148817170091094017", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693723473/wmi9tdwv_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693723473/wmi9tdwv_normal", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:12 +0000", "from_user": "JuDeeezz", "from_user_id": 172983044, "from_user_id_str": "172983044", "from_user_name": "Jocelyn Mallory", "geo": null, "id": 148817166882439170, "id_str": "148817166882439168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701279581/avatar_normal.JPEG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701279581/avatar_normal.JPEG", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "Cee cee n reggie not gonna clown me about me wanting a lunchable", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:12 +0000", "from_user": "Salute_D_Roc", "from_user_id": 217937002, "from_user_id_str": "217937002", "from_user_name": "Wavy Manolo", "geo": null, "id": 148817166823727100, "id_str": "148817166823727105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699140355/PicsArt_1324167459968_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699140355/PicsArt_1324167459968_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:11 +0000", "from_user": "BossLadySheila", "from_user_id": 88497220, "from_user_id_str": "88497220", "from_user_name": "\\u2665\\u2661Sheila Monroe\\u2661\\u2665", "geo": null, "id": 148817165133430800, "id_str": "148817165133430784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700944601/SDC115186_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700944601/SDC115186_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Jimmy_GMT i know so clown *cool face*", "to_user": "Jimmy_GMT", "to_user_id": 393549397, "to_user_id_str": "393549397", "to_user_name": "@Kevin_GMT", "in_reply_to_status_id": 148812367264874500, "in_reply_to_status_id_str": "148812367264874497"}, +{"created_at": "Mon, 19 Dec 2011 17:29:09 +0000", "from_user": "summeriman_", "from_user_id": 178777880, "from_user_id_str": "178777880", "from_user_name": "Summer \\u25B2", "geo": null, "id": 148817155306172400, "id_str": "148817155306172418", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700863040/x2_9e5d52a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700863040/x2_9e5d52a_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:07 +0000", "from_user": "Zola_Diorx3", "from_user_id": 400727811, "from_user_id_str": "400727811", "from_user_name": "Jalia.Foster.\\u10E6", "geo": null, "id": 148817146745589760, "id_str": "148817146745589761", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702439917/001_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702439917/001_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@harlemjaylin3 Shut up Clown , No you don't .", "to_user": "harlemjaylin3", "to_user_id": 239914524, "to_user_id_str": "239914524", "to_user_name": "Loyalty Is Everythan", "in_reply_to_status_id": 148816532569468930, "in_reply_to_status_id_str": "148816532569468928"}, +{"created_at": "Mon, 19 Dec 2011 17:29:04 +0000", "from_user": "MJDHaro", "from_user_id": 212295949, "from_user_id_str": "212295949", "from_user_name": "Mario Javier D. Haro", "geo": null, "id": 148817135022522370, "id_str": "148817135022522368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670758616/repot_this_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670758616/repot_this_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "lol, you're hilarious. have you spoken to your grandmother? because she is turning over in her grave knowing her grandson is a moronic clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:00 +0000", "from_user": "kori_gunz_", "from_user_id": 241752914, "from_user_id_str": "241752914", "from_user_name": "Gimme Amber Cole", "geo": null, "id": 148817118551482370, "id_str": "148817118551482368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700819881/Photo0047_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700819881/Photo0047_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@PickMy_Naps you a clown bruh", "to_user": "PickMy_Naps", "to_user_id": 312536557, "to_user_id_str": "312536557", "to_user_name": "Ickybod Clay", "in_reply_to_status_id": 148816935549808640, "in_reply_to_status_id_str": "148816935549808640"}, +{"created_at": "Mon, 19 Dec 2011 17:29:00 +0000", "from_user": "wejesowood", "from_user_id": 336615790, "from_user_id_str": "336615790", "from_user_name": "Weje ceno", "geo": null, "id": 148817118450810880, "id_str": "148817118450810880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691302203/VcHB7hW8_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691302203/VcHB7hW8_normal", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:28:59 +0000", "from_user": "iGOHAM_Burga", "from_user_id": 219138341, "from_user_id_str": "219138341", "from_user_name": "IXXMCMLXXXIX", "geo": null, "id": 148817113149218800, "id_str": "148817113149218816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1618466269/304063_2114379858362_1211640031_31794618_738352099_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618466269/304063_2114379858362_1211640031_31794618_738352099_n_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@MissGavanne @KRIS10_Bee yea clown", "to_user": "MissGavanne", "to_user_id": 171956368, "to_user_id_str": "171956368", "to_user_name": "\\uE303Gavanne Davis", "in_reply_to_status_id": 148817052608634880, "in_reply_to_status_id_str": "148817052608634880"}, +{"created_at": "Mon, 19 Dec 2011 17:28:51 +0000", "from_user": "Rpiedro", "from_user_id": 418431947, "from_user_id_str": "418431947", "from_user_name": "PrincessRosalind", "geo": null, "id": 148817080328790000, "id_str": "148817080328790017", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688345196/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688345196/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Bottles blunts & bitchs is all I want 4 x-mas lmao my cousin is a clown ass nigga", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:28:47 +0000", "from_user": "space_JAMMing", "from_user_id": 142122213, "from_user_id_str": "142122213", "from_user_name": "Stoningggg !", "geo": null, "id": 148817065359327230, "id_str": "148817065359327232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689950577/nikeeee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689950577/nikeeee_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Po .. lo ! \\u201C@CuteForSALE Hahahaha this nigga a clown !!!! @BSandlin34 @space_JAMMing http://t.co/dn99l6s0\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:28:45 +0000", "from_user": "blueroxie", "from_user_id": 63671841, "from_user_id_str": "63671841", "from_user_name": "SarahBear", "geo": null, "id": 148817053787238400, "id_str": "148817053787238400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1623086896/hott_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1623086896/hott_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:28:44 +0000", "from_user": "joshb_fool23", "from_user_id": 241647654, "from_user_id_str": "241647654", "from_user_name": "Josh B", "geo": null, "id": 148817052864491520, "id_str": "148817052864491520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1678401351/joshb_fool23_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678401351/joshb_fool23_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:28:44 +0000", "from_user": "Pooda575", "from_user_id": 269100677, "from_user_id_str": "269100677", "from_user_name": "peter long", "geo": null, "id": 148817050570199040, "id_str": "148817050570199040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1279893237/snowboarding_pete_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1279893237/snowboarding_pete_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:28:41 +0000", "from_user": "MathYouBoobstos", "from_user_id": 281359286, "from_user_id_str": "281359286", "from_user_name": "Matthew Bustos", "geo": null, "id": 148817038486405120, "id_str": "148817038486405120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1621186955/curlyfries_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621186955/curlyfries_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:28:37 +0000", "from_user": "BushyBrowsGreg", "from_user_id": 21463821, "from_user_id_str": "21463821", "from_user_name": "GR3G M.", "geo": null, "id": 148817020497039360, "id_str": "148817020497039360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1661151151/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661151151/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:28:26 +0000", "from_user": "DoraBby_", "from_user_id": 313616934, "from_user_id_str": "313616934", "from_user_name": "Doraa' Rosee Diamond", "geo": null, "id": 148816976624615420, "id_str": "148816976624615424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701416309/Ag-dihxCQAAYkC7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701416309/Ag-dihxCQAAYkC7_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "lol clown \\u201C@Lovee_Liyah: @DoraBby_ Ard shawty\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:28:26 +0000", "from_user": "TheMegaMan247", "from_user_id": 374592699, "from_user_id_str": "374592699", "from_user_name": "Arnell Omega Milton", "geo": null, "id": 148816975773179900, "id_str": "148816975773179904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1553053631/Omega_at_EBC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553053631/Omega_at_EBC_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@SdotOdotSdot they got Melo and B Diddy. What hurts even more is I can't clown knick fans anymore lol", "to_user": "SdotOdotSdot", "to_user_id": 234904857, "to_user_id_str": "234904857", "to_user_name": "L Raysor", "in_reply_to_status_id": 148815563949482000, "in_reply_to_status_id_str": "148815563949481984"}, +{"created_at": "Mon, 19 Dec 2011 17:28:26 +0000", "from_user": "59st_shane", "from_user_id": 409544129, "from_user_id_str": "409544129", "from_user_name": "Tocali", "geo": null, "id": 148816974942711800, "id_str": "148816974942711808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685313301/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685313301/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@Just_Monae: stop fucking playing with me punkass!!!! U fuckin clown!!!@59st_shane\\u201Dctfu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:28:25 +0000", "from_user": "qdaruler", "from_user_id": 230490438, "from_user_id_str": "230490438", "from_user_name": "StabMasterArson", "geo": null, "id": 148816973227229200, "id_str": "148816973227229184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1390034636/profile_image_1307719760410_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1390034636/profile_image_1307719760410_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:28:25 +0000", "from_user": "HoesCallMeDuqqi", "from_user_id": 84877897, "from_user_id_str": "84877897", "from_user_name": "Guess What . . .", "geo": null, "id": 148816971633393660, "id_str": "148816971633393665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689561690/Picture0014_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689561690/Picture0014_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:28:24 +0000", "from_user": "JETPACK_JAY", "from_user_id": 192625870, "from_user_id_str": "192625870", "from_user_name": "Jay Law", "geo": null, "id": 148816968026304500, "id_str": "148816968026304512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1655661574/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655661574/profile_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:28:10 +0000", "from_user": "rutt3r", "from_user_id": 284085340, "from_user_id_str": "284085340", "from_user_name": "lee rutter", "geo": null, "id": 148816909150859260, "id_str": "148816909150859264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1658442564/385345_10150907601145587_549735586_21605734_531859922_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658442564/385345_10150907601145587_549735586_21605734_531859922_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Tanyaaa15 pffft ur a clown #crusty", "to_user": "Tanyaaa15", "to_user_id": 361895125, "to_user_id_str": "361895125", "to_user_name": "Tanya Stacey", "in_reply_to_status_id": 148815569636966400, "in_reply_to_status_id_str": "148815569636966400"}, +{"created_at": "Mon, 19 Dec 2011 17:28:02 +0000", "from_user": "chunkypnutbutta", "from_user_id": 24743128, "from_user_id_str": "24743128", "from_user_name": "chunkypnutbutta", "geo": null, "id": 148816874208108540, "id_str": "148816874208108545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1653202606/Ullanda1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653202606/Ullanda1_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "Yeah, I saw the VOYR. You're busted, you clown.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:27:49 +0000", "from_user": "iNeedaRefill", "from_user_id": 312064612, "from_user_id_str": "312064612", "from_user_name": "Jalen Joseph\\u2122", "geo": null, "id": 148816821871587330, "id_str": "148816821871587328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695383340/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695383340/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "That man a clown baw lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:27:45 +0000", "from_user": "zeicher47", "from_user_id": 51873874, "from_user_id_str": "51873874", "from_user_name": "Zak Eicher", "geo": null, "id": 148816801583742980, "id_str": "148816801583742979", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1609587928/Photo_on_8-29-11_at_10.29_PM_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609587928/Photo_on_8-29-11_at_10.29_PM_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "We clown so hard when we chill lmao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:27:31 +0000", "from_user": "simonmcc", "from_user_id": 6776922, "from_user_id_str": "6776922", "from_user_name": "Simon McCartney", "geo": +{"coordinates": [54.4864,-6.2114], "type": "Point"}, "id": 148816743559725060, "id_str": "148816743559725056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1124265006/SimonMcCartney-2010-med_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1124265006/SimonMcCartney-2010-med_normal.jpg", "source": "<a href="http://tweetli.st/" rel="nofollow">TweetList Pro</a>", "text": "YEZ 4880 you clown, driving the length of the M1 at dusk with no lights on is insane", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:27:28 +0000", "from_user": "Just_Monae", "from_user_id": 250012833, "from_user_id_str": "250012833", "from_user_name": "M&M!", "geo": null, "id": 148816734202232830, "id_str": "148816734202232832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1676533772/dlWFWXND_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676533772/dlWFWXND_normal", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "stop fucking playing with me punkass!!!! U fuckin clown!!!@59st_shane", "to_user": "59st_shane", "to_user_id": 409544129, "to_user_id_str": "409544129", "to_user_name": "Tocali", "in_reply_to_status_id": 148816216985837570, "in_reply_to_status_id_str": "148816216985837568"}, +{"created_at": "Mon, 19 Dec 2011 17:27:24 +0000", "from_user": "Kelanei_Monroe", "from_user_id": 271485571, "from_user_id_str": "271485571", "from_user_name": "1:55 , ahhhaaa", "geo": null, "id": 148816713750810620, "id_str": "148816713750810626", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701224847/1324258108115_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701224847/1324258108115_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Dis @tiffanii_laanae Hackin Da Sis Page!!! Luv Yhu Clown'", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:27:24 +0000", "from_user": "OfficialAng", "from_user_id": 112000100, "from_user_id_str": "112000100", "from_user_name": "ANGELA", "geo": null, "id": 148816713608212480, "id_str": "148816713608212480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680091749/a14_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680091749/a14_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "Disrespect and I clown, tha type of bitch to throw down..throw up tha block cause nothin stops my chips$ a bawse player with tits...;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:27:21 +0000", "from_user": "ChynnSavannah", "from_user_id": 62097208, "from_user_id_str": "62097208", "from_user_name": "Nique", "geo": null, "id": 148816702254227460, "id_str": "148816702254227457", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686359624/Image208_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686359624/Image208_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@Slim_ID lmao how u know she did a clown him?", "to_user": "Slim_ID", "to_user_id": 33792948, "to_user_id_str": "33792948", "to_user_name": "Salute \\u2714 ", "in_reply_to_status_id": 148816486100774900, "in_reply_to_status_id_str": "148816486100774912"}, +{"created_at": "Mon, 19 Dec 2011 17:27:13 +0000", "from_user": "dannyblommie", "from_user_id": 237473987, "from_user_id_str": "237473987", "from_user_name": "danny", "geo": null, "id": 148816670469799940, "id_str": "148816670469799936", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1231130024/807744889_5_72iC_1_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1231130024/807744889_5_72iC_1_normal.jpeg", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "Gelukkig doe ik niet zo veel in me leven..training geven,coach,goochelen,uitgaan,clown zijn,vrienden chille,sporten 21 uur in de week", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:27:05 +0000", "from_user": "Mocha_DaGoddess", "from_user_id": 222668298, "from_user_id_str": "222668298", "from_user_name": "Every Man's WISH ", "geo": null, "id": 148816637133463550, "id_str": "148816637133463552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1686459688/alexis_the_goddess_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686459688/alexis_the_goddess_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Ima start 'SLAPPIN' these clown ass females !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:27:02 +0000", "from_user": "IceCream182", "from_user_id": 101153569, "from_user_id_str": "101153569", "from_user_name": "Yellow Berry", "geo": null, "id": 148816622772166660, "id_str": "148816622772166656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679310735/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679310735/image_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "U r a clown,u belong in a circus", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:26:50 +0000", "from_user": "Nitastph8n", "from_user_id": 30521878, "from_user_id_str": "30521878", "from_user_name": "Bossman", "geo": null, "id": 148816573208084480, "id_str": "148816573208084480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/629076763/Cy1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/629076763/Cy1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "North Korea's solution to everything is test fire a missile (WTF Clowns)! Whom ever said Iran has a right to Nuclear weapons is a \"Clown.\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:26:42 +0000", "from_user": "BaddBody_Uri", "from_user_id": 167422203, "from_user_id_str": "167422203", "from_user_name": "\\uE314\\uE32EEver, Greatest \\uE32E\\uE314", "geo": null, "id": 148816541121642500, "id_str": "148816541121642496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700517658/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700517658/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @AlleanVogue: Ugh Get That Clown Off My TL, Lost All Respect For Him", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:26:13 +0000", "from_user": "Sidthegent", "from_user_id": 237508767, "from_user_id_str": "237508767", "from_user_name": "Sidney B. ", "geo": null, "id": 148816415921676300, "id_str": "148816415921676288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1609569493/IMG00298-20110917-2311_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609569493/IMG00298-20110917-2311_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "When ladies wear clown makeup >>> haha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:26:11 +0000", "from_user": "_Happy_Gilmore", "from_user_id": 299800115, "from_user_id_str": "299800115", "from_user_name": "Happy Gilmore", "geo": null, "id": 148816410213232640, "id_str": "148816410213232641", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1677891295/happy-gilmore_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677891295/happy-gilmore_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@JoshScobee10 Josh, why aren't you following Happy anymore? Are you still mad I destroyed that clown statue at your house?", "to_user": "JoshScobee10", "to_user_id": 39999748, "to_user_id_str": "39999748", "to_user_name": "Josh Scobee"}, +{"created_at": "Mon, 19 Dec 2011 17:26:08 +0000", "from_user": "alexhall94", "from_user_id": 63992433, "from_user_id_str": "63992433", "from_user_name": "Alex Hall", "geo": null, "id": 148816395885477900, "id_str": "148816395885477888", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1620902083/hello_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620902083/hello_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@frazerrobinson http://t.co/ALnzwuV4", "to_user": "frazerrobinson", "to_user_id": 163861977, "to_user_id_str": "163861977", "to_user_name": "Frazer Robinson ", "in_reply_to_status_id": 148815665241915400, "in_reply_to_status_id_str": "148815665241915392"}, +{"created_at": "Mon, 19 Dec 2011 17:26:06 +0000", "from_user": "umbertodf", "from_user_id": 56822616, "from_user_id_str": "56822616", "from_user_name": "umberto de felice", "geo": null, "id": 148816386909671420, "id_str": "148816386909671424", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1123810814/IMG_0135_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1123810814/IMG_0135_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "RT @David_IsayBlog: Un prete, un clown e Elisabetta Canalis entrano dentro un bar. Succede che SE VUOI SAPERE COME CONTINUA RETWITTA!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:25:59 +0000", "from_user": "1600Trey", "from_user_id": 296012606, "from_user_id_str": "296012606", "from_user_name": "EstBaby", "geo": null, "id": 148816357167857660, "id_str": "148816357167857664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1673872700/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673872700/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "My teacher said imma CLASS CLOWN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:25:57 +0000", "from_user": "KoolKorruption", "from_user_id": 330360595, "from_user_id_str": "330360595", "from_user_name": "Jason Johnson", "geo": null, "id": 148816351652356100, "id_str": "148816351652356096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1553316129/jason_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553316129/jason_pic_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @VaN_Nish: @KoolKorruption don't be ignoring my gchats cuz u having good long conversations tho lol<- I hit u bk clown lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:25:51 +0000", "from_user": "BackwoodBryant", "from_user_id": 335029391, "from_user_id_str": "335029391", "from_user_name": "Andre Williams", "geo": null, "id": 148816326390054900, "id_str": "148816326390054912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696941826/31258_395168275871_727100871_4660870_3602237_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696941826/31258_395168275871_727100871_4660870_3602237_n_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "Nigga yu been a clown.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:25:51 +0000", "from_user": "GEORGEXTORTION", "from_user_id": 84658103, "from_user_id_str": "84658103", "from_user_name": "BigGeorge Or Georgie", "geo": null, "id": 148816324267749380, "id_str": "148816324267749376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701059054/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701059054/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @_MissSades: @GEORGEXTORTION bofl Your a clown man. <> Lol Naw Im Serious Doe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:25:48 +0000", "from_user": "ShortyxSmntha", "from_user_id": 209096402, "from_user_id_str": "209096402", "from_user_name": "Smntha \\u2665 Jack", "geo": null, "id": 148816310715957250, "id_str": "148816310715957248", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698215533/_20knuffelbeertje_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698215533/_20knuffelbeertje_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Altijd als ik ergens een clownvis zie moet ik aan nemo en @Gabykempers denke omdat k altijd aan et lachen ben door haar ze is gwn een clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:25:34 +0000", "from_user": "_dweebin", "from_user_id": 178177145, "from_user_id_str": "178177145", "from_user_name": "DJ Krissy Kriss \\uE13D\\uE13D ", "geo": null, "id": 148816254730379260, "id_str": "148816254730379264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700408402/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700408402/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Lmao Kelly is a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:25:07 +0000", "from_user": "sabrinagoyer07", "from_user_id": 208136981, "from_user_id_str": "208136981", "from_user_name": "Sabrina Goyer", "geo": null, "id": 148816141719044100, "id_str": "148816141719044096", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679242593/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679242593/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@KatherineL26: Avoir l'air d'un clown avec le restant de rouge \\u00E0 l\\u00E8vres -.-\\u201Dhaha moi aussi j'avais l'air ce sa ce matin ;) haha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:25:05 +0000", "from_user": "OmniaVeteraNova", "from_user_id": 416848039, "from_user_id_str": "416848039", "from_user_name": "Omnia Vetera Nova", "geo": null, "id": 148816133682765820, "id_str": "148816133682765824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676520752/ovnfblogo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676520752/ovnfblogo_normal.png", "source": "<a href="http://www.omniaveteranova.com" rel="nofollow">Omnia Vetera Nova</a>", "text": "All future republican debates will force candidates to carpool in the same clown car until one of them proves they are an adult.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:25:04 +0000", "from_user": "NaomiJoella", "from_user_id": 319331539, "from_user_id_str": "319331539", "from_user_name": "YAAWWW. ", "geo": null, "id": 148816130029535230, "id_str": "148816130029535232", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687130083/331290823_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687130083/331290823_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @kingson015: RT @NaomiJoella: T was niet grappig ofzo, maar laat m maar clown spelen. / grapje tog...\\u00AB Not funny monkey.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:24:54 +0000", "from_user": "xoxoDEMiiiiii_", "from_user_id": 355285092, "from_user_id_str": "355285092", "from_user_name": "Macs", "geo": null, "id": 148816086517825540, "id_str": "148816086517825536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690332617/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690332617/image_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @noYAMShere_: Keep my circle small, I don't fuck with these clown niggas.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:24:33 +0000", "from_user": "ivondellscott25", "from_user_id": 435461264, "from_user_id_str": "435461264", "from_user_name": "Pooh_Duh", "geo": null, "id": 148815998349348860, "id_str": "148815998349348864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690403082/O0LdP3X8_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690403082/O0LdP3X8_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@SwisherrSweetz: WHAT TIME WE LEAVE THIS FUCKING SCHOOL ?!!! answer me lol\"<<<11:20 clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:24:22 +0000", "from_user": "ShaeG_", "from_user_id": 67307991, "from_user_id_str": "67307991", "from_user_name": "Gotti \\uE31C\\uE31D\\uE314", "geo": null, "id": 148815953596125200, "id_str": "148815953596125184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695327666/imagejpeg_2_37_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695327666/imagejpeg_2_37_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Oh you is a fucking clown , lls \\u00AB@IXIV_LoveSheira Lmaooo ! http://t.co/AyKYdHOc\\u00BB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:24:15 +0000", "from_user": "KellyTheWeasley", "from_user_id": 175901639, "from_user_id_str": "175901639", "from_user_name": "KellyMarieeee.", "geo": null, "id": 148815921509699600, "id_str": "148815921509699585", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701241406/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701241406/image_normal.jpg", "source": "<a href="http://dailybooth.com/" rel="nofollow">DailyBooth</a>", "text": "my cheek looks like the painting that billy the clown from saw has on his cheek :L but its just m... http://t.co/JqLPfzpO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:24:11 +0000", "from_user": "NaomiJoella", "from_user_id": 319331539, "from_user_id_str": "319331539", "from_user_name": "YAAWWW. ", "geo": null, "id": 148815905835581440, "id_str": "148815905835581441", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687130083/331290823_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687130083/331290823_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "T was niet grappig ofzo, maar laat m maar clown spelen.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:23:47 +0000", "from_user": "flows_gorgeous", "from_user_id": 230852182, "from_user_id_str": "230852182", "from_user_name": "tu me detestes? O. ", "geo": null, "id": 148815804803198980, "id_str": "148815804803198977", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1651332231/Picture_56_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651332231/Picture_56_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "marvin is a clown. . .lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:23:42 +0000", "from_user": "jcisthename153", "from_user_id": 233632253, "from_user_id_str": "233632253", "from_user_name": "JeanCarlos ", "geo": null, "id": 148815785102540800, "id_str": "148815785102540800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697771076/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697771076/image_normal.jpg", "source": "<a href="http://www.handmark.com" rel="nofollow">TweetCaster for iOS</a>", "text": "@onedee53 is a clown smfh", "to_user": "onedee53", "to_user_id": 108123518, "to_user_id_str": "108123518", "to_user_name": "Onedee"}, +{"created_at": "Mon, 19 Dec 2011 17:23:27 +0000", "from_user": "marcusprice1227", "from_user_id": 436240525, "from_user_id_str": "436240525", "from_user_name": "Marcus Latham-Price", "geo": null, "id": 148815722489987070, "id_str": "148815722489987072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691835629/ndP6qDa3_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691835629/ndP6qDa3_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Assistant principal that think he's the shit #clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:23:01 +0000", "from_user": "MizzPurpleHeart", "from_user_id": 351566818, "from_user_id_str": "351566818", "from_user_name": "chartese brent", "geo": null, "id": 148815613182222340, "id_str": "148815613182222338", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699026331/SjC3nj5t_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699026331/SjC3nj5t_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "So I'm at training for my new job. Wtf is there this 30yr old man trying to be the class clown. -__- nigga grow up! Ugh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:22:50 +0000", "from_user": "alexhall94", "from_user_id": 63992433, "from_user_id_str": "63992433", "from_user_name": "Alex Hall", "geo": null, "id": 148815567221039100, "id_str": "148815567221039104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1620902083/hello_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620902083/hello_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@frazerrobinson i can imagine a german clown being very frightening", "to_user": "frazerrobinson", "to_user_id": 163861977, "to_user_id_str": "163861977", "to_user_name": "Frazer Robinson ", "in_reply_to_status_id": 148814914180489200, "in_reply_to_status_id_str": "148814914180489216"}, +{"created_at": "Mon, 19 Dec 2011 17:22:28 +0000", "from_user": "iSeeWackBxtches", "from_user_id": 394989588, "from_user_id_str": "394989588", "from_user_name": "Singin For My Life", "geo": null, "id": 148815474124263420, "id_str": "148815474124263425", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699171815/1031111554_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699171815/1031111554_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "They playin the Cha Cha Slide over the intercom. They already kno we gon clown!! Lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:22:01 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148815360777388030, "id_str": "148815360777388032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://blackfridayonlinestores.info" rel="nofollow">blackfridayonlinestoresdotinfo</a>", "text": "Get The Best Price For Clown Costume Template-McCall's 4944 Vintage Sewi http://t.co/naa7ZWqm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:21:25 +0000", "from_user": "joshiocolezio", "from_user_id": 90412016, "from_user_id_str": "90412016", "from_user_name": "Josh Coles", "geo": null, "id": 148815208939405300, "id_str": "148815208939405312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695635785/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695635785/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@LukeAllensfc11 Haha plum? Shut up you fucking clown. I'm well scared of you and your one direction hair cut. You're so hard.", "to_user": "LukeAllensfc11", "to_user_id": 347898532, "to_user_id_str": "347898532", "to_user_name": "Luke Allen", "in_reply_to_status_id": 148814615428599800, "in_reply_to_status_id_str": "148814615428599809"}, +{"created_at": "Mon, 19 Dec 2011 17:21:16 +0000", "from_user": "Jrigs239", "from_user_id": 245262803, "from_user_id_str": "245262803", "from_user_name": "Jay R/Rigidy", "geo": null, "id": 148815171597508600, "id_str": "148815171597508608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1672494339/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672494339/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@MP3FAMOUS lmfao u already know imma clown", "to_user": "MP3FAMOUS", "to_user_id": 348763503, "to_user_id_str": "348763503", "to_user_name": "PurpFlowers", "in_reply_to_status_id": 148813579611668480, "in_reply_to_status_id_str": "148813579611668480"}, +{"created_at": "Mon, 19 Dec 2011 17:21:08 +0000", "from_user": "sidd_lovesyou", "from_user_id": 85028603, "from_user_id_str": "85028603", "from_user_name": "Roxeylee", "geo": null, "id": 148815136373739520, "id_str": "148815136373739520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701432753/newwwmee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701432753/newwwmee_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"@ColorMeLex__: I want to spend Christmas eve w. my friends. Exchange gifts, clown, drink & just have a good ass time. \\uD83C\\uDF81\\uD83D\\uDE03\\uD83C\\uDF78\\uD83C\\uDF84\\uD83C\\uDF85\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:21:01 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148815106950701060, "id_str": "148815106950701056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://blackfridayonlinestores.info" rel="nofollow">blackfridayonlinestoresdotinfo</a>", "text": "Bestselling Clown Costume Template-Simplicity Sewing Pattern 2571 Toddler Cost http://t.co/CRt70Y4k", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:20:53 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148815076109979650, "id_str": "148815076109979649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://blackfridayonlinestores.info" rel="nofollow">blackfridayonlinestoresdotinfo</a>", "text": "Where Can I Buy Clown Costume Template-Simplicity Sewing Pattern 2849 Adult Co http://t.co/A8bm4sZI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:20:46 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148815046972145660, "id_str": "148815046972145664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://blackfridayonlinestores.info" rel="nofollow">blackfridayonlinestoresdotinfo</a>", "text": "Resonable Priced Clown Costume Template-Clown Costumes McCall's Sewing Pa http://t.co/d7ZTJWfu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:20:24 +0000", "from_user": "sparklecups", "from_user_id": 40553608, "from_user_id_str": "40553608", "from_user_name": "Emma", "geo": null, "id": 148814952491266050, "id_str": "148814952491266048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1665867661/28692_1479594231764_1291045255_1296965_856398_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665867661/28692_1479594231764_1291045255_1296965_856398_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Cooledairspares clown! hahaha.....", "to_user": "Cooledairspares", "to_user_id": 263576348, "to_user_id_str": "263576348", "to_user_name": "Northern Stu", "in_reply_to_status_id": 148812266370908160, "in_reply_to_status_id_str": "148812266370908160"}, +{"created_at": "Mon, 19 Dec 2011 17:19:56 +0000", "from_user": "t_cas23", "from_user_id": 316879426, "from_user_id_str": "316879426", "from_user_name": "Troy Caswell", "geo": null, "id": 148814835218526200, "id_str": "148814835218526208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682197546/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682197546/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@CurtisDurr 1 clown", "to_user": "CurtisDurr", "to_user_id": 423755846, "to_user_id_str": "423755846", "to_user_name": "Curtis Durr", "in_reply_to_status_id": 148814505856606200, "in_reply_to_status_id_str": "148814505856606208"}, +{"created_at": "Mon, 19 Dec 2011 17:19:29 +0000", "from_user": "Eerron", "from_user_id": 39298343, "from_user_id_str": "39298343", "from_user_name": "E. Beals", "geo": null, "id": 148814722861514750, "id_str": "148814722861514752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/987122238/100_2747cropped2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/987122238/100_2747cropped2_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@jenn_seeley Are you getting married?? Starting clown school? Starting a solitary trip around the world in a small boat?? Gimme details!!", "to_user": "jenn_seeley", "to_user_id": 15181202, "to_user_id_str": "15181202", "to_user_name": "jenn seeley", "in_reply_to_status_id": 148809594792198140, "in_reply_to_status_id_str": "148809594792198146"}, +{"created_at": "Mon, 19 Dec 2011 17:18:11 +0000", "from_user": "xxloveyouu", "from_user_id": 226290782, "from_user_id_str": "226290782", "from_user_name": "kimm \\u2665", "geo": null, "id": 148814396460773380, "id_str": "148814396460773377", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1670365562/IMG00540-20111129-1730_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670365562/IMG00540-20111129-1730_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Haha mislukte clown QQ #wiskunde http://t.co/wAtmSuhZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:16:35 +0000", "from_user": "Infamous_Blanco", "from_user_id": 350048982, "from_user_id_str": "350048982", "from_user_name": "Presley Blanco", "geo": null, "id": 148813994143137800, "id_str": "148813994143137793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1568468992/308296_298700076811460_100000144091721_1434062_140620468_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1568468992/308296_298700076811460_100000144091721_1434062_140620468_n_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Nate is a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:15:30 +0000", "from_user": "EvilBlueFlame", "from_user_id": 52322329, "from_user_id_str": "52322329", "from_user_name": "Mikey Lewis", "geo": null, "id": 148813719273619460, "id_str": "148813719273619456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687323556/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687323556/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I Thought I Left People Like #ThatOneCoworker In High School..That Class Clown Shit Is SOO Played Out .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:12:49 +0000", "from_user": "purebreid", "from_user_id": 168289596, "from_user_id_str": "168289596", "from_user_name": "corey reid", "geo": null, "id": 148813044456239100, "id_str": "148813044456239104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1656160356/me2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656160356/me2_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@_zenya_ yeah I'm a clown at times also serious lol", "to_user": "_zenya_", "to_user_id": 346132277, "to_user_id_str": "346132277", "to_user_name": "Zenya", "in_reply_to_status_id": 148811720532561920, "in_reply_to_status_id_str": "148811720532561922"}, +{"created_at": "Mon, 19 Dec 2011 17:12:47 +0000", "from_user": "LoveLiveKickz", "from_user_id": 57442084, "from_user_id_str": "57442084", "from_user_name": "Al Springer", "geo": null, "id": 148813037300748300, "id_str": "148813037300748289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700739428/Ag-OfWPCEAAdGkK_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700739428/Ag-OfWPCEAAdGkK_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Hahah i was at ricks doing the \"John Wall\" wildin out with @rudyrich0322 we some characters I seen @iamDJKY in there somewhere. #clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:12:24 +0000", "from_user": "Tootie_Montana", "from_user_id": 310599809, "from_user_id_str": "310599809", "from_user_name": "V L N ", "geo": null, "id": 148812941712556030, "id_str": "148812941712556032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1682496249/cRg3m9iu_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682496249/cRg3m9iu_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Why you let Sparkie try to clown you like that lastnight lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:10:55 +0000", "from_user": "ShangTongue", "from_user_id": 47040756, "from_user_id_str": "47040756", "from_user_name": "APimpNamedBluemagicc", "geo": null, "id": 148812565248610300, "id_str": "148812565248610305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1670559481/6TXn4CM3_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670559481/6TXn4CM3_normal", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @SEAN_Returns: RT @Brick_James: Clown niggas willing to trick off for box are so common, chicks begin to expect this desperation from real niggas too. Nah", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:10:46 +0000", "from_user": "Laila_aLEE", "from_user_id": 263525961, "from_user_id_str": "263525961", "from_user_name": "samira leee", "geo": null, "id": 148812527885758460, "id_str": "148812527885758466", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1663712227/Snapshot_20111125_2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663712227/Snapshot_20111125_2_normal.JPG", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@_BeautifulTaee with Corn clown ass , about to go BCK to the doctors office o.O", "to_user": "_BeautifulTaee", "to_user_id": 392492194, "to_user_id_str": "392492194", "to_user_name": "ishakiah shante'", "in_reply_to_status_id": 148812324940156930, "in_reply_to_status_id_str": "148812324940156929"}, +{"created_at": "Mon, 19 Dec 2011 17:10:42 +0000", "from_user": "Kyylaa04", "from_user_id": 185657921, "from_user_id_str": "185657921", "from_user_name": "Kyla DeWeese", "geo": null, "id": 148812513742569470, "id_str": "148812513742569472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680284332/ColorTouch-1323306252679-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680284332/ColorTouch-1323306252679-1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "I reallly love @Gorg_ESS . We clown everytime were together lmao", "to_user": "Gorg_ESS", "to_user_id": 271538723, "to_user_id_str": "271538723", "to_user_name": "Essense Toney", "in_reply_to_status_id": 148812164910694400, "in_reply_to_status_id_str": "148812164910694400"}, +{"created_at": "Mon, 19 Dec 2011 17:09:34 +0000", "from_user": "turkish721", "from_user_id": 359144730, "from_user_id_str": "359144730", "from_user_name": "Turkish", "geo": null, "id": 148812227149959170, "id_str": "148812227149959169", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1611520713/turkish_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611520713/turkish_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Who is this guy with the Krusty the Clown haircut and why is he on everyday? Might as well just pull some jagoff off of the street.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:08:29 +0000", "from_user": "LinkzBoogi3", "from_user_id": 97957732, "from_user_id_str": "97957732", "from_user_name": "Mikey", "geo": null, "id": 148811954901876740, "id_str": "148811954901876736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1620435429/IMG_0618_1__normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620435429/IMG_0618_1__normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "THESE CLOWN ASS POLITICIANS ARE TAKIN AWAY OUR RIGHTS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:08:07 +0000", "from_user": "r_tavares0615", "from_user_id": 417447986, "from_user_id_str": "417447986", "from_user_name": "Ryan Tavares", "geo": null, "id": 148811861868027900, "id_str": "148811861868027904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1649382327/7Xd3928h_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649382327/7Xd3928h_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@kaylahowland12 Nooo I didn't clown! Madd of my contacts got lost ;P", "to_user": "kaylahowland12", "to_user_id": 98221359, "to_user_id_str": "98221359", "to_user_name": "kayla howland", "in_reply_to_status_id": 148811548947779600, "in_reply_to_status_id_str": "148811548947779584"} + +, +{"created_at": "Mon, 19 Dec 2011 19:00:17 +0000", "from_user": "vicapow", "from_user_id": 19411223, "from_user_id_str": "19411223", "from_user_name": "Victor Powell", "geo": null, "id": 148840091555606530, "id_str": "148840091555606528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/802979181/vicapow_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/802979181/vicapow_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @twericb: amazing work @dapsays and @joyent: http://t.co/dAzYXTp3. unparalleled advantages to running high-level lang (#JavaScript) apps on #smartos.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:15 +0000", "from_user": "JMDugan", "from_user_id": 14747526, "from_user_id_str": "14747526", "from_user_name": "Jonathan Dugan", "geo": null, "id": 148838572449988600, "id_str": "148838572449988609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1281815679/Jonathan_Hiking_446x446_FeaturedEffects_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1281815679/Jonathan_Hiking_446x446_FeaturedEffects_3_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rainmakerfiles: @joyent makes long term go-to-market bet http://t.co/XRMLTPQY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:42 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 148836421401186300, "id_str": "148836421401186304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rainmakerfiles: @joyent makes long term go-to-market bet http://t.co/XRMLTPQY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:43 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 148836171487784960, "id_str": "148836171487784961", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @twericb: amazing work @dapsays and @joyent: http://t.co/dAzYXTp3. unparalleled advantages to running high-level lang (#JavaScript) apps on #smartos.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:48 +0000", "from_user": "pofeng", "from_user_id": 10130392, "from_user_id_str": "10130392", "from_user_name": "pofeng", "geo": null, "id": 148822102575820800, "id_str": "148822102575820800", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/59196088/baby_normal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/59196088/baby_normal_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u4E0D\\u597D\\u610F\\u601D\\uFF0C\\u518D\\u5EE3\\u544A\\u4E00\\u4E0B\\uFF0C\\u661F\\u671F\\u4E09\\u6B61\\u8FCE\\u5927\\u5BB6\\u4F86\\u804A MongoDB \\u548C \\u795E\\u901A\\u96FB\\u8166\\u7684 MiCloud ( \\u57FA\\u65BC Joyent \\u7684 SmartOS ) http://t.co/lugCjR27", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:02 +0000", "from_user": "olympum", "from_user_id": 67708760, "from_user_id_str": "67708760", "from_user_name": "Bruno Fernandez-Ruiz", "geo": null, "id": 148821154306588670, "id_str": "148821154306588672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1569983925/large_152524_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1569983925/large_152524_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @twericb: amazing work @dapsays and @joyent: http://t.co/dAzYXTp3. unparalleled advantages to running high-level lang (#JavaScript) apps on #smartos.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:16 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 148820707135078400, "id_str": "148820707135078400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @twericb: amazing work @dapsays and @joyent: http://t.co/dAzYXTp3. unparalleled advantages to running high-level lang (#JavaScript) apps on #smartos.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:38:32 +0000", "from_user": "twericb", "from_user_id": 260001315, "from_user_id_str": "260001315", "from_user_name": "eric b", "geo": null, "id": 148819516019838980, "id_str": "148819516019838976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1367358173/charicjpeg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1367358173/charicjpeg_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "amazing work @dapsays and @joyent: http://t.co/dAzYXTp3. unparalleled advantages to running high-level lang (#JavaScript) apps on #smartos.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:53 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 148817593208274940, "id_str": "148817593208274944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @srsmoot: @joyent New SmartOS release. Burn it. Swap CDs. Boot it. Done.\\n\\nEasiest OS upgrade I've ever experienced by a mile! Awesome work!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:52:17 +0000", "from_user": "JimBorowicz", "from_user_id": 370347719, "from_user_id_str": "370347719", "from_user_name": "Jim Borowicz", "geo": null, "id": 148792777629646850, "id_str": "148792777629646848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1652063701/fCby079Q_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652063701/fCby079Q_normal", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @jasonh: Yes ==> RT @jbueza: wow.. Joyent has their own dhcp, ldap servers written in #NodeJS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:15:09 +0000", "from_user": "IanMmmm", "from_user_id": 131420585, "from_user_id_str": "131420585", "from_user_name": "Ian Massingham", "geo": null, "id": 148783431755636740, "id_str": "148783431755636736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1300068195/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1300068195/image_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "Joyent Announces Academic Program for Educators, Researchers and Students | Joyent http://t.co/3QlkCbR5 < Sun were very successful with this", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:09:09 +0000", "from_user": "ryancnelson", "from_user_id": 772763, "from_user_id_str": "772763", "from_user_name": "ryan nelson", "geo": null, "id": 148781924637360130, "id_str": "148781924637360129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/753422343/new_ryan_icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/753422343/new_ryan_icon_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rainmakerfiles: @joyent makes long term go-to-market bet http://t.co/XRMLTPQY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:05:00 +0000", "from_user": "moellenbeck", "from_user_id": 1936981, "from_user_id_str": "1936981", "from_user_name": "Martin M\\u00F6llenbeck", "geo": null, "id": 148765778605383680, "id_str": "148765778605383680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/30569592/FlickrIcon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/30569592/FlickrIcon_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @jasonh: Yes ==> RT @jbueza: wow.. Joyent has their own dhcp, ldap servers written in #NodeJS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:57:34 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 148763909929701380, "id_str": "148763909929701376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "coolest mapping apps...Recorded Future & Joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:18:42 +0000", "from_user": "_alram", "from_user_id": 18634105, "from_user_id_str": "18634105", "from_user_name": "Alexandre Marangone", "geo": null, "id": 148754129634861060, "id_str": "148754129634861058", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1546556519/0d99c42c890689da73983ffcd7b6fa69_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546556519/0d99c42c890689da73983ffcd7b6fa69_normal.jpeg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @progmag: Joyent propose un Programme Acad\\u00E9mique destin\\u00E9 aux Educateurs, Chercheurs et Etudiants http://t.co/TrnDvmOm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:17:02 +0000", "from_user": "aredridel", "from_user_id": 17950990, "from_user_id_str": "17950990", "from_user_name": "Aria Stewart", "geo": null, "id": 148753707075502080, "id_str": "148753707075502080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/66907688/Ari-100x100_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/66907688/Ari-100x100_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @jasonh: Yes ==> RT @jbueza: wow.. Joyent has their own dhcp, ldap servers written in #NodeJS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:03:53 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 148750397912268800, "id_str": "148750397912268800", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejschina: Joyent's Ryan Dahl\\nhttp://t.co/vKPMBsHd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:58:53 +0000", "from_user": "NickGuide", "from_user_id": 376621830, "from_user_id_str": "376621830", "from_user_name": "nick steve", "geo": null, "id": 148749142418669570, "id_str": "148749142418669569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1652216417/the_cool_look_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652216417/the_cool_look_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/OovhISUx\\nhttp://t.co/IAd4LUhU\\nhttp://t.co/adfCBivt\\nhttp://t.co/qUK72am8\\nhttp://t.co/JG0izMyp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:46:09 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148745935348961280, "id_str": "148745935348961281", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "new joyent academic program: funding research, enabling research. #instrumentation #nodejs #client http://t.co/za5u1ZJx http://t.co/JuIlkxaG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:43:30 +0000", "from_user": "monkchips", "from_user_id": 61233, "from_user_id_str": "61233", "from_user_name": "James Governor", "geo": null, "id": 148745270572744700, "id_str": "148745270572744705", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627071088/hairstyle_oval_face_women-275x300_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627071088/hairstyle_oval_face_women-275x300_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "new joyent academic program: funding research, enabling research. #instrumentation #nodejs #client http://t.co/nlxmwrzg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:40:19 +0000", "from_user": "tilfin", "from_user_id": 12424612, "from_user_id_str": "12424612", "from_user_name": "Toshimitsu Takahashi", "geo": null, "id": 148744470647668740, "id_str": "148744470647668737", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1225352782/Toshimitsu_Takahashi_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225352782/Toshimitsu_Takahashi_normal.png", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "Node Modules \\u4E00\\u89A7 / \\u201Cmodules\\u201D http://t.co/QNK1B5od", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:40:06 +0000", "from_user": "suitsmen", "from_user_id": 126344236, "from_user_id_str": "126344236", "from_user_name": "suitsmen", "geo": null, "id": 148744412074213380, "id_str": "148744412074213376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Mystery Men Forge Servers For Giants of Internet: Hyve says it can work with a company like Joyent to design a s... http://t.co/hk5bXa3n", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:28:52 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 148741588007399420, "id_str": "148741588007399424", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @progmag: Joyent propose un Programme Acad\\u00E9mique destin\\u00E9 aux Educateurs, Chercheurs et Etudiants http://t.co/TrnDvmOm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:07:22 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 148736175715254270, "id_str": "148736175715254274", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rainmakerfiles: @joyent makes long term go-to-market bet http://t.co/XRMLTPQY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:06:04 +0000", "from_user": "krigibb", "from_user_id": 343481368, "from_user_id_str": "343481368", "from_user_name": "Kristina Gibbs", "geo": null, "id": 148735850195324930, "id_str": "148735850195324928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1464456919/1311797642_hydrologic_cycle_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1464456919/1311797642_hydrologic_cycle_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Joyent\\u00BB Exactly what is a Environmentally friendly Career?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:02:43 +0000", "from_user": "progmag", "from_user_id": 193234862, "from_user_id_str": "193234862", "from_user_name": "Magazine Programmez!", "geo": null, "id": 148735006355898370, "id_str": "148735006355898368", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1128325444/logo-prog-twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1128325444/logo-prog-twitter_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Joyent propose un Programme Acad\\u00E9mique destin\\u00E9 aux Educateurs, Chercheurs et Etudiants http://t.co/TrnDvmOm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:02:25 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 148734930803892220, "id_str": "148734930803892224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Klarna AB, Game Salad, Joyent, & Playnomics become global brands in 2012", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:00:06 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 148734346038226940, "id_str": "148734346038226944", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Joyent's Ryan Dahl\\nhttp://t.co/vKPMBsHd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:34:38 +0000", "from_user": "Publikeo", "from_user_id": 368799026, "from_user_id_str": "368799026", "from_user_name": "Publikeo", "geo": null, "id": 148727940149022720, "id_str": "148727940149022720", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534505764/PUBLIKEO72x72_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534505764/PUBLIKEO72x72_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Joyent propose un Programme Acad\\u00E9mique destin\\u00E9 aux Educateurs, Chercheurs et Etudiants: Joyent, fournisseur de s... http://t.co/1PngI6Oj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:34:38 +0000", "from_user": "rodolphejb", "from_user_id": 22965673, "from_user_id_str": "22965673", "from_user_name": "Rodolphe J-B", "geo": null, "id": 148727938702000130, "id_str": "148727938702000128", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Joyent propose un Programme Acad\\u00E9mique destin\\u00E9 aux Educateurs, Chercheurs et Etudiants: Joyent, fournisseur de s... http://t.co/NdqA6rk2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:17:41 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 148723674931937280, "id_str": "148723674931937280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Yes ==> RT @jbueza: wow.. Joyent has their own dhcp, ldap servers written in #NodeJS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:17:21 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 148723591050043400, "id_str": "148723591050043393", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rainmakerfiles: @joyent makes long term go-to-market bet http://t.co/XRMLTPQY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:51:17 +0000", "from_user": "justinjasica", "from_user_id": 437463949, "from_user_id_str": "437463949", "from_user_name": "jason", "geo": null, "id": 148717030621712400, "id_str": "148717030621712384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": null, "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/aqFSVuPF\\nhttp://t.co/Sur690jW\\nhttp://t.co/3VdgMIKv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:16:24 +0000", "from_user": "otfrom", "from_user_id": 15682551, "from_user_id_str": "15682551", "from_user_name": "Bruce Durling", "geo": null, "id": 148708251532406800, "id_str": "148708251532406785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1675765726/crystal-palace_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675765726/crystal-palace_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@KushalP Joyent's pricing is quite a bit different from mongohq. I'll look at it later.", "to_user": "KushalP", "to_user_id": 13321042, "to_user_id_str": "13321042", "to_user_name": "Kushal Pisavadia", "in_reply_to_status_id": 148544195508969470, "in_reply_to_status_id_str": "148544195508969473"}, +{"created_at": "Mon, 19 Dec 2011 09:53:27 +0000", "from_user": "koichik", "from_user_id": 14453603, "from_user_id_str": "14453603", "from_user_name": "koichik", "geo": null, "id": 148702473421467650, "id_str": "148702473421467648", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1399991501/hs-2010-26-a-small_web_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1399991501/hs-2010-26-a-small_web_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "@sugyan @atsuya Node \\u672C\\u4F53\\u3068\\u306E\\u517C\\u306D\\u5408\\u3044\\u3067\\u56F0\\u3063\\u3066\\u308B\\u306E\\u304B\\u3082\\u3002 https://t.co/poIAi3tb", "to_user": "sugyan", "to_user_id": 15081480, "to_user_id_str": "15081480", "to_user_name": "\\u3059\\u304E\\u3083\\u30FC\\u3093", "in_reply_to_status_id": 148700911424905200, "in_reply_to_status_id_str": "148700911424905216"}, +{"created_at": "Mon, 19 Dec 2011 09:48:03 +0000", "from_user": "peteryorke", "from_user_id": 14136726, "from_user_id_str": "14136726", "from_user_name": "Peter Yorke", "geo": null, "id": 148701117264572400, "id_str": "148701117264572416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/51727717/peter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/51727717/peter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rainmakerfiles: @joyent makes long term go-to-market bet http://t.co/XRMLTPQY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:47:05 +0000", "from_user": "dannybisby", "from_user_id": 210016488, "from_user_id_str": "210016488", "from_user_name": "Danny Bisby", "geo": null, "id": 148700871314767870, "id_str": "148700871314767872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1192263343/65828_1729620521880_1279486773_1913319_691416_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1192263343/65828_1729620521880_1279486773_1913319_691416_n_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Safari on iOS</a>", "text": "@mattysouthall https://t.co/R28HAXce", "to_user": "mattysouthall", "to_user_id": 72399629, "to_user_id_str": "72399629", "to_user_name": "Matty Southall"}, +{"created_at": "Mon, 19 Dec 2011 09:28:04 +0000", "from_user": "rainmakerfiles", "from_user_id": 225145772, "from_user_id_str": "225145772", "from_user_name": "Rainmaker Files", "geo": null, "id": 148696089258762240, "id_str": "148696089258762242", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1453572941/raindance_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1453572941/raindance_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@joyent makes long term go-to-market bet http://t.co/XRMLTPQY", "to_user": "joyent", "to_user_id": 666523, "to_user_id_str": "666523", "to_user_name": "Joyent"}, +{"created_at": "Mon, 19 Dec 2011 09:25:40 +0000", "from_user": "ajlopez", "from_user_id": 14567622, "from_user_id_str": "14567622", "from_user_name": "ajlopez", "geo": null, "id": 148695484851159040, "id_str": "148695484851159040", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/53769404/spiral_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/53769404/spiral_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Node.js Modules http://t.co/jCNOFZa7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:23:49 +0000", "from_user": "jbueza", "from_user_id": 141423083, "from_user_id_str": "141423083", "from_user_name": "Jaime Bueza", "geo": null, "id": 148695019782545400, "id_str": "148695019782545408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "wow.. Joyent has their own dhcp, ldap servers written in #NodeJS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:09:48 +0000", "from_user": "ajlopez", "from_user_id": 14567622, "from_user_id_str": "14567622", "from_user_name": "ajlopez", "geo": null, "id": 148691488199544830, "id_str": "148691488199544832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/53769404/spiral_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/53769404/spiral_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Node.js Testing / Spec Frameworks http://t.co/lV73831T", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:30:41 +0000", "from_user": "monteslu", "from_user_id": 19749845, "from_user_id_str": "19749845", "from_user_name": "Luis Montes", "geo": null, "id": 148651448526311420, "id_str": "148651448526311424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/207105524/luiscartoon3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/207105524/luiscartoon3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@zef @Nodester @Cloud9IDE Joyent and Heroku are currently the only ones on the list to deploy to from the IDE", "to_user": "zef", "to_user_id": 1444261, "to_user_id_str": "1444261", "to_user_name": "Zef Hemel", "in_reply_to_status_id": 148648303058362370, "in_reply_to_status_id_str": "148648303058362368"}, +{"created_at": "Mon, 19 Dec 2011 03:46:48 +0000", "from_user": "yotzak", "from_user_id": 4266851, "from_user_id_str": "4266851", "from_user_name": "yotzak", "geo": null, "id": 148610204781649920, "id_str": "148610204781649922", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/15950322/seihou_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/15950322/seihou_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Joyent\\u3081\\u3063\\u3061\\u3083\\u524D\\u306B\\u51FA\\u3066\\u304D\\u3066\\u3093\\u3060\\u306A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:30:17 +0000", "from_user": "webOSdealer", "from_user_id": 165631348, "from_user_id_str": "165631348", "from_user_name": "webOSdealer", "geo": null, "id": 148606046703857660, "id_str": "148606046703857664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1076178830/twitterLogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1076178830/twitterLogo_normal.jpg", "source": "<a href="http://carbonwebos.com" rel="nofollow">Carbon for WebOS</a>", "text": "Congrats! RT @avi4now: Sweet, my tiny patch to make Date output more consistent landed in Node: https://t.co/WoZ5LUzu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:54:55 +0000", "from_user": "TuPresentacion", "from_user_id": 409360147, "from_user_id_str": "409360147", "from_user_name": "TuPresentacion", "geo": null, "id": 148566947167080450, "id_str": "148566947167080448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1632279607/logoround_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632279607/logoround_normal.gif", "source": "<a href="http://www.tupresentacion.net" rel="nofollow">TuPresentacion</a>", "text": "#Hackmtl. A MontrealTechWatch and Wavo.me co-production\\n\\nMain Sponsors:\\n- Joyent\\n- RadialPoint\\n- Cloudops\\n- Wavome\\n\\nAl. http://t.co/NFsKsv1Z", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:55:08 +0000", "from_user": "ahr19", "from_user_id": 15033958, "from_user_id_str": "15033958", "from_user_name": "Amani Roberts", "geo": null, "id": 148551905449218050, "id_str": "148551905449218051", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/432458866/Amani_pic__2_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/432458866/Amani_pic__2_bigger_normal.jpg", "source": "<a href="http://summify.com" rel="nofollow">Summify</a>", "text": "Just got my summary with top news from @luisvaldes, @joyent & @KRAPPS http://t.co/HWA5MBNo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:24:30 +0000", "from_user": "KushalP", "from_user_id": 13321042, "from_user_id_str": "13321042", "from_user_name": "Kushal Pisavadia", "geo": null, "id": 148544195508969470, "id_str": "148544195508969473", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/115315481/Zoo_279_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/115315481/Zoo_279_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@otfrom Joyent are handling that at the moment: http://t.co/2SvOxiMt but it's not too difficult to roll your own if you have 4+ machines!", "to_user": "otfrom", "to_user_id": 15682551, "to_user_id_str": "15682551", "to_user_name": "Bruce Durling", "in_reply_to_status_id": 148536167791460350, "in_reply_to_status_id_str": "148536167791460353"}, +{"created_at": "Sun, 18 Dec 2011 22:20:07 +0000", "from_user": "FGRibreau", "from_user_id": 5719692, "from_user_id_str": "5719692", "from_user_name": "Fran\\u00E7ois-G. Ribreau", "geo": null, "id": 148527991515910140, "id_str": "148527991515910145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1117780106/2009_shooting_medium_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1117780106/2009_shooting_medium_normal.png", "source": "<a href="http://fgribreau.com" rel="nofollow">FG</a>", "text": "node-panic - Postmortem debugging facility for Node.js // WiP but still useful http://t.co/PrvzZA9a", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:16:11 +0000", "from_user": "ximplosionx", "from_user_id": 18454468, "from_user_id_str": "18454468", "from_user_name": "Patrick Godwin", "geo": null, "id": 148527000657723400, "id_str": "148527000657723394", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1547507342/166839_487574946138_571461138_6100203_3376723_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1547507342/166839_487574946138_571461138_6100203_3376723_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Would love @Nodester to give me a coupon. Been using Joyent's No.de, and want to see how Nodester stacks up.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:14:29 +0000", "from_user": "avi4now", "from_user_id": 11044, "from_user_id_str": "11044", "from_user_name": "Avi Flax", "geo": null, "id": 148526572981329920, "id_str": "148526572981329920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/14462642/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/14462642/avatar_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "Sweet, my tiny patch to make Date output more consistent landed in Node: https://t.co/vrWV7koM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:43:25 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 148488557638582270, "id_str": "148488557638582272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "The Internet Gets Physical: @NYT on the Internet of Things (and M2M) http://t.co/3cURd2AS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:17:33 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 148482046153605120, "id_str": "148482046153605120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @joshuabixby: New blog post: The 20 best web performance links of Q4 http://t.co/BdjSBQAy #webperf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:09:11 +0000", "from_user": "TooTallNate", "from_user_id": 277724842, "from_user_id_str": "277724842", "from_user_name": "Nathan Rajlich", "geo": null, "id": 148479943171514370, "id_str": "148479943171514369", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1410702232/5dc62d823e229c44665830bbe429c338_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1410702232/5dc62d823e229c44665830bbe429c338_normal.jpeg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@innoying #nodejs v0.6.6 for iOS source is up: https://t.co/z7g6Qfep", "to_user": "innoying", "to_user_id": 144001499, "to_user_id_str": "144001499", "to_user_name": "Luke Young"}, +{"created_at": "Sun, 18 Dec 2011 17:54:32 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 148461154463776770, "id_str": "148461154463776768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @newrelic: Announcing Contextual Help \\u2013 let us help you more http://t.co/zxOb3Ywi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:54:25 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 148461124541628400, "id_str": "148461124541628416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @mongodb: #MongoSV recap in @gigaom featuring MongoDB users Wordnik, foursquare, and Disney http://t.co/IqgVTeHR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:06:28 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 148449057554178050, "id_str": "148449057554178048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Amazon = Amateur Hour\\nIf your research matters,data is invaluable & your infrastructure + uptime are mission critical..\\nhttp://t.co/3vr3wwzO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:40:37 +0000", "from_user": "TheGuitarGuyMe", "from_user_id": 150697363, "from_user_id_str": "150697363", "from_user_name": "Parvez Rahman", "geo": null, "id": 148442555477016580, "id_str": "148442555477016576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1180948208/n1034810248_8259_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1180948208/n1034810248_8259_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@jasonh Sorry to say but joyent support is a bit rough man. Can you tell me when will the no.de service will be available?", "to_user": "jasonh", "to_user_id": 10638, "to_user_id_str": "10638", "to_user_name": "Jason Hoffman"}, +{"created_at": "Sun, 18 Dec 2011 14:00:48 +0000", "from_user": "basaldizain", "from_user_id": 319615595, "from_user_id_str": "319615595", "from_user_name": "Vinicius Braga", "geo": null, "id": 148402334114914300, "id_str": "148402334114914305", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1404276816/basaldizain_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1404276816/basaldizain_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@argentinomota A \\u00FAnica coisa boa do nodejs, \\u00E9 a p\\u00E1gina do site da Joyent. Muita boa: http://t.co/54K55xCW #design", "to_user": "argentinomota", "to_user_id": 127994929, "to_user_id_str": "127994929", "to_user_name": "Vanderson Mota", "in_reply_to_status_id": 148398077290614800, "in_reply_to_status_id_str": "148398077290614784"}, +{"created_at": "Sun, 18 Dec 2011 13:51:52 +0000", "from_user": "CloudStrategie", "from_user_id": 345251171, "from_user_id_str": "345251171", "from_user_name": "Pierre ALLYNDREE", "geo": null, "id": 148400088203538430, "id_str": "148400088203538432", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "[FR] Du c\\u00F4t\\u00E9 des fournisseurs - Zoom Offre - Le Programme Acad\\u00E9mique de Joyent.: http://t.co/dJ7icdpr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:51:05 +0000", "from_user": "yssk22", "from_user_id": 15690947, "from_user_id_str": "15690947", "from_user_name": "Yohei Sasaki", "geo": null, "id": 148354589912080400, "id_str": "148354589912080386", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1166169462/elly_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1166169462/elly_normal.png", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "[root@smartos-test ~]# uname -a\\nSunOS smartos-test.local 5.11 joyent_20111206T013343Z i86pc i386 i86pc Solaris", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:40:40 +0000", "from_user": "yssk22", "from_user_id": 15690947, "from_user_id_str": "15690947", "from_user_name": "Yohei Sasaki", "geo": null, "id": 148351968698568700, "id_str": "148351968698568704", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1166169462/elly_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1166169462/elly_normal.png", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "joyent \\u76F4\\u63A5\\u4F7F\\u304A\\u3046\\u3002JCB\\u3060\\u3081\\u3063\\u307D\\u3044\\u3051\\u3069\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:20:24 +0000", "from_user": "mkopala", "from_user_id": 18088431, "from_user_id_str": "18088431", "from_user_name": "Matt Kopala", "geo": null, "id": 148316669788434430, "id_str": "148316669788434432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1136086466/me5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1136086466/me5_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "My head hurts after looking at all the different stuff available with #nodejs. Just this page by itself is crazy: https://t.co/w57Pi1Uh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:49:07 +0000", "from_user": "zaynhamdan", "from_user_id": 157632949, "from_user_id_str": "157632949", "from_user_name": "zayn hamdan", "geo": null, "id": 148308797490860030, "id_str": "148308797490860033", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1052227543/IMG00002-20091124-1209_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1052227543/IMG00002-20091124-1209_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "git push joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:31:52 +0000", "from_user": "ykronos", "from_user_id": 17352834, "from_user_id_str": "17352834", "from_user_name": "+#ykronos\\u2122\\u00B3", "geo": null, "id": 148289355478339600, "id_str": "148289355478339584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1217441261/167869_1803493090220_1326643336_32079790_744783_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1217441261/167869_1803493090220_1326643336_32079790_744783_n_normal.jpg", "source": "<a href="http://friendfeed.com" rel="nofollow">FriendFeed</a>", "text": "\\u00B3 Daily is out! http://t.co/sgxdiKDw \\u25B8 Top stories today via @emmyarthur @joyent ... http://t.co/8MdLV1Zb http://t.co/6ZzwP3m0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:30:14 +0000", "from_user": "ykronos", "from_user_id": 17352834, "from_user_id_str": "17352834", "from_user_name": "+#ykronos\\u2122\\u00B3", "geo": null, "id": 148288947519373300, "id_str": "148288947519373313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1217441261/167869_1803493090220_1326643336_32079790_744783_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1217441261/167869_1803493090220_1326643336_32079790_744783_n_normal.jpg", "source": "<a href="http://friendfeed.com" rel="nofollow">FriendFeed</a>", "text": "\\u00B3 Daily is out! http://t.co/sgxdiKDw \\u25B8 Top stories today via @emmyarthur @joyent ...... http://t.co/N5GbpKYn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:30:07 +0000", "from_user": "JitcloudCCLQ", "from_user_id": 88033192, "from_user_id_str": "88033192", "from_user_name": "+#Jitcloudcclq\\u2122^\\u00B3", "geo": null, "id": 148288914963169280, "id_str": "148288914963169280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1631264329/Jitcloud-logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631264329/Jitcloud-logo_normal.png", "source": "<a href="http://ping.fm/" rel="nofollow">Ping.fm</a>", "text": "\\u00B3 Daily is out! http://t.co/8Wh7be7d \\u25B8 Top stories today via @emmyarthur @joyent ... http://t.co/295zGd3H", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:29:56 +0000", "from_user": "JitcloudCCLQ", "from_user_id": 88033192, "from_user_id_str": "88033192", "from_user_name": "+#Jitcloudcclq\\u2122^\\u00B3", "geo": null, "id": 148288871996719100, "id_str": "148288871996719106", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1631264329/Jitcloud-logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631264329/Jitcloud-logo_normal.png", "source": "<a href="http://ping.fm/" rel="nofollow">Ping.fm</a>", "text": "\\u00B3 Daily is out! http://t.co/h9zIQw2O \\u25B8 Top stories today via @emmyarthur @joyent ... http://t.co/FBoynTXh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:58:20 +0000", "from_user": "gocho", "from_user_id": 14523807, "from_user_id_str": "14523807", "from_user_name": "gocho", "geo": null, "id": 148280919978024960, "id_str": "148280919978024960", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/943882585/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/943882585/twitter_normal.jpg", "source": "<a href="http://www.yoono.com" rel="nofollow">yoono</a>", "text": "windows,mac,un*x\\u3059\\u3079\\u3066\\u3067\\u975E\\u540C\\u671F\\u901A\\u4FE1\\u30921\\u3064\\u306E\\u30E9\\u30A4\\u30D6\\u30E9\\u30EA\\u3067\\u3053\\u306A\\u3059libuv! #nodejs https://t.co/48a6xC2K", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:28:43 +0000", "from_user": "JitcloudCCLQ", "from_user_id": 88033192, "from_user_id_str": "88033192", "from_user_name": "+#Jitcloudcclq\\u2122^\\u00B3", "geo": null, "id": 148273466926305280, "id_str": "148273466926305280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1631264329/Jitcloud-logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631264329/Jitcloud-logo_normal.png", "source": "<a href="http://paper.li" rel="nofollow">Paper.li</a>", "text": "The *+#Jitcloudcclq\\u2122^\\u00B3 Daily is out! http://t.co/h9zIQw2O \\u25B8 Top stories today via @emmyarthur @joyent @techiealizay", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:03:54 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 148267221536346100, "id_str": "148267221536346113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Virtualization and Cloud Computing is Changing the Network to East-West\\u00A0Routing http://t.co/8vEAQPIo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:01:26 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 148266600615776260, "id_str": "148266600615776258", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@linuxprofessor Tell us how you like it!", "to_user": "linuxprofessor", "to_user_id": 24857069, "to_user_id_str": "24857069", "to_user_name": "Marcus Wilhelmsson", "in_reply_to_status_id": 147968533173776400, "in_reply_to_status_id_str": "147968533173776384"}, +{"created_at": "Sun, 18 Dec 2011 03:04:25 +0000", "from_user": "aac", "from_user_id": 50099694, "from_user_id_str": "50099694", "from_user_name": "Andrew Cove", "geo": null, "id": 148237148972261380, "id_str": "148237148972261376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1190870736/Photo_on_2010-11-12_at_14.49_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1190870736/Photo_on_2010-11-12_at_14.49_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I love @pkrumins' \"node.js modules you should know about\" series, because this page scares the hell out of me: https://t.co/qB81uog9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:55:04 +0000", "from_user": "jedisct1", "from_user_id": 17396038, "from_user_id_str": "17396038", "from_user_name": "Frank Denis", "geo": null, "id": 148174400196325380, "id_str": "148174400196325376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/64543895/cv_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/64543895/cv_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @dapsays: The first version of the Node.js DTrace ustack helper just landed in node for the next 0.6 release. https://t.co/ddHvS6bK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:52:02 +0000", "from_user": "opensolaris", "from_user_id": 8804942, "from_user_id_str": "8804942", "from_user_name": "OpenSolaris", "geo": null, "id": 148173635352408060, "id_str": "148173635352408064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/25316162/enthus_os_blk_125_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/25316162/enthus_os_blk_125_normal.gif", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @jimpick: Looking at the smartos commits on github. Amazing stuff from @joyent! http://t.co/8uHArh7f", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:48:02 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 148157530802110460, "id_str": "148157530802110464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @sallamar: On the ql.io blog - Setting up ql.io apps on Joyent's no.de - http://t.co/qSbkr2bG - light and simple.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:24:47 +0000", "from_user": "PursueMobile", "from_user_id": 369193926, "from_user_id_str": "369193926", "from_user_name": "Pursue Mobile", "geo": null, "id": 148151678414225400, "id_str": "148151678414225408", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1532057433/PMSquareV2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1532057433/PMSquareV2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Running ql.io on Joyent's no.de http://t.co/hu6F7zJj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:13:56 +0000", "from_user": "zef", "from_user_id": 1444261, "from_user_id_str": "1444261", "from_user_name": "Zef Hemel", "geo": null, "id": 148148946919890940, "id_str": "148148946919890944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1387569845/DSCN1187_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1387569845/DSCN1187_normal.JPG", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@_spyder right. Well you can push to any git repo to deploy, doesn't have to be joyent or heroku.", "to_user": "_spyder", "to_user_id": 54030150, "to_user_id_str": "54030150", "to_user_name": "Andrew Herron", "in_reply_to_status_id": 148148386061750270, "in_reply_to_status_id_str": "148148386061750272"}, +{"created_at": "Sat, 17 Dec 2011 21:05:06 +0000", "from_user": "hnfirehose", "from_user_id": 213117318, "from_user_id_str": "213117318", "from_user_name": "HN Firehose", "geo": null, "id": 148146726988029950, "id_str": "148146726988029953", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Running ql.io on Joyent's no.de: http://t.co/jdjKF7JO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:04:23 +0000", "from_user": "Newsery5", "from_user_id": 245368398, "from_user_id_str": "245368398", "from_user_name": "Newsery5", "geo": null, "id": 148146544296734720, "id_str": "148146544296734720", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.twitter.com" rel="nofollow">RSSToHere</a>", "text": "Running ql.io on Joyent's no.de - http://t.co/lOyb7ysh - [Hacker News FH]", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:53:40 +0000", "from_user": "TopCloudHosting", "from_user_id": 170814667, "from_user_id_str": "170814667", "from_user_name": "CloudComputing", "geo": null, "id": 148143849435430900, "id_str": "148143849435430912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1090310223/cloud_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1090310223/cloud_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @TechnoMile Affordable #business #Internet service, #business VoIP, #Joyent #cloud computing & more! We make it easy to comp... h...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:42:40 +0000", "from_user": "TechnoMile", "from_user_id": 89779407, "from_user_id_str": "89779407", "from_user_name": "TechnoMile LLC", "geo": null, "id": 148141079936499700, "id_str": "148141079936499712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1187113101/techomile_normal_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1187113101/techomile_normal_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Affordable #business #Internet service, #business VoIP, #Joyent #cloud computing & more! We make it easy to comp... http://t.co/3MQaMK5D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:41:38 +0000", "from_user": "rbergman", "from_user_id": 14172332, "from_user_id_str": "14172332", "from_user_name": "rbergman", "geo": null, "id": 148140819528957950, "id_str": "148140819528957952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1179525078/bob_mug_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1179525078/bob_mug_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @sallamar: On the ql.io blog - Setting up ql.io apps on Joyent's no.de - http://t.co/qSbkr2bG - light and simple.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:41:30 +0000", "from_user": "uniserveTelecom", "from_user_id": 426153054, "from_user_id_str": "426153054", "from_user_name": "Uniserve", "geo": null, "id": 148140787664826370, "id_str": "148140787664826368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668689685/uniserve_icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668689685/uniserve_icon_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Affordable #business #Internet service, #business VoIP, #Joyent #cloud computing & more! We make it easy to compete. http://t.co/FLLhSK0r", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:19:05 +0000", "from_user": "sallamar", "from_user_id": 14075246, "from_user_id_str": "14075246", "from_user_name": "Subbu Allamaraju", "geo": null, "id": 148135144413347840, "id_str": "148135144413347841", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1226428183/subbu_pixel_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1226428183/subbu_pixel_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "On the ql.io blog - Setting up ql.io apps on Joyent's no.de - http://t.co/qSbkr2bG - light and simple.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:17:53 +0000", "from_user": "DeirdreS", "from_user_id": 625093, "from_user_id_str": "625093", "from_user_name": "Deirdr\\u00E9 Straughan", "geo": null, "id": 148134841240649730, "id_str": "148134841240649729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1273049375/dpink_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273049375/dpink_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @linuxprofessor: it's snowing and I'm trying SmartOS from @joyent in VMware. a good day indeed!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:58:17 +0000", "from_user": "FabienNiget", "from_user_id": 439404043, "from_user_id_str": "439404043", "from_user_name": "Fabien Niget", "geo": null, "id": 148114812948332540, "id_str": "148114812948332544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": null, "source": "<a href="http://twitter.com/">web</a>", "text": "The new Joyent Academic Program http://t.co/NAkfwpIH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:43:13 +0000", "from_user": "AntonyPavlenko", "from_user_id": 245227705, "from_user_id_str": "245227705", "from_user_name": "Antony Pavlenko", "geo": null, "id": 148080818999398400, "id_str": "148080818999398400", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1442757884/me_8_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1442757884/me_8_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@ssilaev mediatemple \\u043D\\u0435 \\u0432\\u0438\\u0434\\u0435\\u043B. Rackspace \\u0445\\u043E\\u0440\\u043E\\u0448. \\u0415\\u0441\\u043B\\u0438 \\u043F\\u043B\\u0430\\u043D\\u0438\\u0440\\u0443\\u0435\\u0448\\u044C \\u043F\\u0438\\u0441\\u0430\\u0442\\u044C \\u043F\\u0440\\u0438\\u043B\\u043E\\u0436\\u0435\\u043D\\u0438\\u0435 \\u0432 \\u043E\\u0431\\u043B\\u0430\\u043A\\u0435 \\u0442\\u043E \\u043F\\u043E\\u0441\\u043C\\u043E\\u0442\\u0440\\u0438 \\u043D\\u0430 joyent. \\u041D\\u0430 Node.js \\u043D\\u0430\\u043F\\u0440\\u0438\\u043C\\u0435\\u0440", "to_user": "ssilaev", "to_user_id": 154818824, "to_user_id_str": "154818824", "to_user_name": "Sergey M Silaev", "in_reply_to_status_id": 148012467769966600, "in_reply_to_status_id_str": "148012467769966593"}, +{"created_at": "Sat, 17 Dec 2011 16:41:04 +0000", "from_user": "stackfeed", "from_user_id": 237310237, "from_user_id_str": "237310237", "from_user_name": "StackOverflow", "geo": null, "id": 148080277590261760, "id_str": "148080277590261760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "how c++ nest namespace works?: Arugments is define in v8::internal namespace\\n\\nhttps://t.co/y4g0HOYH... http://t.co/uLk0jAdn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:40:10 +0000", "from_user": "NickGuide", "from_user_id": 376621830, "from_user_id_str": "376621830", "from_user_name": "nick steve", "geo": null, "id": 148019654508556300, "id_str": "148019654508556289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1652216417/the_cool_look_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652216417/the_cool_look_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/mdUm4keI\\nhttp://t.co/ygqxkqMh\\nhttp://t.co/88rBu7ip\\nhttp://t.co/EOlFTjIv\\nhttp://t.co/xiPObSZd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:36:54 +0000", "from_user": "turtle2005", "from_user_id": 54184073, "from_user_id_str": "54184073", "from_user_name": "Hitoshi Kamezaki", "geo": null, "id": 148018833259626500, "id_str": "148018833259626496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/351040572/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/351040572/twitterProfilePhoto_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I favorited a @YouTube video http://t.co/PZoTQJAP StackMob on Joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:16:26 +0000", "from_user": "udomsak", "from_user_id": 21276967, "from_user_id_str": "21276967", "from_user_name": "udomsak chundang", "geo": null, "id": 147983484420501500, "id_str": "147983484420501506", "iso_language_code": "hu", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/965336883/cfbbf8d5-9e74-432e-95bc-3ae4dbba8802_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/965336883/cfbbf8d5-9e74-432e-95bc-3ae4dbba8802_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Amazon EC2 vs IBM vs Microsoft Windows Azure vs HP vs Joyent... http://t.co/Ov1j3uqZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:27:05 +0000", "from_user": "TheCloudNetwork", "from_user_id": 24609329, "from_user_id_str": "24609329", "from_user_name": "The Cloud Network ", "geo": null, "id": 147971065921015800, "id_str": "147971065921015808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1576230067/97143_matter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576230067/97143_matter_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Cloud #Security Joyent Announces Academic Program for Educators, Researchers and Students - PR-US... http://t.co/eKFRNjvQ #TCN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:17:02 +0000", "from_user": "linuxprofessor", "from_user_id": 24857069, "from_user_id_str": "24857069", "from_user_name": "Marcus Wilhelmsson", "geo": null, "id": 147968533173776400, "id_str": "147968533173776384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1650005726/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650005726/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "it's snowing and I'm trying SmartOS from @joyent in VMware. a good day indeed!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:02:37 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147934706799886340, "id_str": "147934706799886336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@GoldFireStudios I'll give you a call about your experience. We'd love to hear about it.", "to_user": "GoldFireStudios", "to_user_id": 19056517, "to_user_id_str": "19056517", "to_user_name": "James Simpson", "in_reply_to_status_id": 147816775793381380, "in_reply_to_status_id_str": "147816775793381376"}, +{"created_at": "Sat, 17 Dec 2011 07:01:20 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147934382890561540, "id_str": "147934382890561536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @JeromeParadis: @jamesaduncan one of @joyent's 2 CTOs talking at the Nodejs/mongodb/redis Hackathon. http://t.co/as9hQrX2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:46:00 +0000", "from_user": "valb00", "from_user_id": 15373404, "from_user_id_str": "15373404", "from_user_name": "valb00", "geo": null, "id": 147900325838331900, "id_str": "147900325838331904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1162802602/screen-capture-4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1162802602/screen-capture-4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @peteryorke: Node.js in #Windows #Azure, To the Cloud and Beyond! http://t.co/ansvPxiT @joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:45:35 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 147900222968832000, "id_str": "147900222968832000", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @peteryorke: @Joyent partner @StackMob\\u2019s Mobile App Platform Is Now Publicly Available http://t.co/9UJCwxyT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:35:19 +0000", "from_user": "peteryorke", "from_user_id": 14136726, "from_user_id_str": "14136726", "from_user_name": "Peter Yorke", "geo": null, "id": 147897638816186370, "id_str": "147897638816186368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/51727717/peter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/51727717/peter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Node.js in #Windows #Azure, To the Cloud and Beyond! http://t.co/ansvPxiT @joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:12:52 +0000", "from_user": "peteryorke", "from_user_id": 14136726, "from_user_id_str": "14136726", "from_user_name": "Peter Yorke", "geo": null, "id": 147891987842994180, "id_str": "147891987842994177", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/51727717/peter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/51727717/peter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Joyent partner @StackMob\\u2019s Mobile App Platform Is Now Publicly Available http://t.co/9UJCwxyT", "to_user": "joyent", "to_user_id": 666523, "to_user_id_str": "666523", "to_user_name": "Joyent"}, +{"created_at": "Sat, 17 Dec 2011 01:21:01 +0000", "from_user": "DeirdreS", "from_user_id": 625093, "from_user_id_str": "625093", "from_user_name": "Deirdr\\u00E9 Straughan", "geo": null, "id": 147848742974930940, "id_str": "147848742974930944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1273049375/dpink_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273049375/dpink_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @aliasaria: SmartOS is happening at Well.ca. Thanks @joyent - You're wolcome!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Sat, 17 Dec 2011 00:33:45 +0000", "from_user": "aliasaria", "from_user_id": 11439872, "from_user_id_str": "11439872", "from_user_name": "ali asaria", "geo": null, "id": 147836847341568000, "id_str": "147836847341568000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/448585602/face_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/448585602/face_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "SmartOS is happening at Well.ca. Thanks @joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:25:16 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 147834711908159500, "id_str": "147834711908159489", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @jimpick: Looking at the smartos commits on github. Amazing stuff from @joyent! http://t.co/8uHArh7f", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:56:22 +0000", "from_user": "trufae", "from_user_id": 15364094, "from_user_id_str": "15364094", "from_user_name": "pancake", "geo": null, "id": 147827437714153470, "id_str": "147827437714153474", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1291415517/abdadcat_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1291415517/abdadcat_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @dapsays: The first version of the Node.js DTrace ustack helper just landed in node for the next 0.6 release. https://t.co/czOyNgQM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:48:23 +0000", "from_user": "mikeal", "from_user_id": 668423, "from_user_id_str": "668423", "from_user_name": "Mikeal", "geo": null, "id": 147825428114059260, "id_str": "147825428114059265", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1554648053/avatar-bw_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554648053/avatar-bw_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@polotek @tjholowaychuk @izs https://t.co/P1DnWHmX", "to_user": "polotek", "to_user_id": 20079975, "to_user_id_str": "20079975", "to_user_name": "Marco Rogers", "in_reply_to_status_id": 147823080838926340, "in_reply_to_status_id_str": "147823080838926336"}, +{"created_at": "Fri, 16 Dec 2011 23:25:44 +0000", "from_user": "JeromeParadis", "from_user_id": 7025052, "from_user_id_str": "7025052", "from_user_name": "Jerome Paradis", "geo": null, "id": 147819724519112700, "id_str": "147819724519112705", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/565533545/0375_c_50pct_Square_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/565533545/0375_c_50pct_Square_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@jamesaduncan one of @joyent's 2 CTOs talking at the Nodejs/mongodb/redis Hackathon. http://t.co/as9hQrX2", "to_user": "jamesaduncan", "to_user_id": 1720581, "to_user_id_str": "1720581", "to_user_name": "James Duncan"}, +{"created_at": "Fri, 16 Dec 2011 23:24:51 +0000", "from_user": "DeirdreS", "from_user_id": 625093, "from_user_id_str": "625093", "from_user_name": "Deirdr\\u00E9 Straughan", "geo": null, "id": 147819509120638980, "id_str": "147819509120638977", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1273049375/dpink_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273049375/dpink_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @dapsays: The first version of the Node.js DTrace ustack helper just landed in node for the next 0.6 release. https://t.co/czOyNgQM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:18:43 +0000", "from_user": "peteryorke", "from_user_id": 14136726, "from_user_id_str": "14136726", "from_user_name": "Peter Yorke", "geo": null, "id": 147817961724448770, "id_str": "147817961724448768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/51727717/peter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/51727717/peter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@hyungjoo_ no.de service should be fixed, send in a ticket to support@joyent.com if you continue to have a problem @joyent", "to_user": "hyungjoo_", "to_user_id": 52583469, "to_user_id_str": "52583469", "to_user_name": "\\uC1A1\\uD615\\uC8FC(Hyungjoo Song)", "in_reply_to_status_id": 147756469188694000, "in_reply_to_status_id_str": "147756469188694016"}, +{"created_at": "Fri, 16 Dec 2011 23:14:30 +0000", "from_user": "DeirdreS", "from_user_id": 625093, "from_user_id_str": "625093", "from_user_name": "Deirdr\\u00E9 Straughan", "geo": null, "id": 147816904407519230, "id_str": "147816904407519232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1273049375/dpink_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273049375/dpink_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @diorahman: what makes http://t.co/9CL6RoCr better? @joyent ? - I'd suggest starting here: http://t.co/TS0TJ0Tr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:05:45 +0000", "from_user": "d24m", "from_user_id": 78574363, "from_user_id_str": "78574363", "from_user_name": "Oliver Heller", "geo": null, "id": 147814699491274750, "id_str": "147814699491274752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/617828898/star_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/617828898/star_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Fork Yeah! The Rise & Development of illumos http://t.co/4DJ7Nz5m #lisa11 #illumos #joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:44:28 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147809345000841200, "id_str": "147809345000841217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@GoldFireStudios Did you get up and running on SmartOS SmartMachines? Or decide to do KVM Linux?", "to_user": "GoldFireStudios", "to_user_id": 19056517, "to_user_id_str": "19056517", "to_user_name": "James Simpson", "in_reply_to_status_id": 147741893646762000, "in_reply_to_status_id_str": "147741893646761984"}, +{"created_at": "Fri, 16 Dec 2011 22:23:24 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 147804042532356100, "id_str": "147804042532356096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @dapsays: The first version of the Node.js DTrace ustack helper just landed in node for the next 0.6 release. https://t.co/czOyNgQM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:23:01 +0000", "from_user": "ryah", "from_user_id": 18975861, "from_user_id_str": "18975861", "from_user_name": "Ryan Dahl", "geo": null, "id": 147803946042404860, "id_str": "147803946042404864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1634041610/name_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634041610/name_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @dapsays: The first version of the Node.js DTrace ustack helper just landed in node for the next 0.6 release. https://t.co/czOyNgQM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:16:09 +0000", "from_user": "BonzoESC", "from_user_id": 7865582, "from_user_id_str": "7865582", "from_user_name": "Bryce Kerley", "geo": null, "id": 147802219767529470, "id_str": "147802219767529472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1084524181/bryce_smiling_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1084524181/bryce_smiling_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@capotej it was pretty rad working with SMF on @joyent for a year; got my rakefiles spitting out the right XML", "to_user": "capotej", "to_user_id": 8898642, "to_user_id_str": "8898642", "to_user_name": "Julio Capote", "in_reply_to_status_id": 147800834036604930, "in_reply_to_status_id_str": "147800834036604928"}, +{"created_at": "Fri, 16 Dec 2011 22:12:13 +0000", "from_user": "brendangregg", "from_user_id": 208212889, "from_user_id_str": "208212889", "from_user_name": "Brendan Gregg", "geo": null, "id": 147801229664325630, "id_str": "147801229664325633", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1441835128/bicon3t_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1441835128/bicon3t_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @dapsays: The first version of the Node.js DTrace ustack helper just landed in node for the next 0.6 release. https://t.co/czOyNgQM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:02:24 +0000", "from_user": "dapsays", "from_user_id": 247636179, "from_user_id_str": "247636179", "from_user_name": "Dave Pacheco", "geo": null, "id": 147798757109542900, "id_str": "147798757109542912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1235295953/DSC_4227_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1235295953/DSC_4227_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "The first version of the Node.js DTrace ustack helper just landed in node for the next 0.6 release. https://t.co/czOyNgQM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:47:03 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 147794894335901700, "id_str": "147794894335901696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "RT @alexr: @mmalex Cloud perf analysis stuff that Joyent is doing with Node and DTrace makes \"full JS\" very appealing despite the Tropic Thunder ref.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:58:48 +0000", "from_user": "alexr", "from_user_id": 473583, "from_user_id_str": "473583", "from_user_name": "Alex Rosenberg", "geo": null, "id": 147782750580125700, "id_str": "147782750580125696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/17909762/alexr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/17909762/alexr_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "@mmalex Cloud perf analysis stuff that Joyent is doing with Node and DTrace makes \"full JS\" very appealing despite the Tropic Thunder ref.", "to_user": "mmalex", "to_user_id": 14197132, "to_user_id_str": "14197132", "to_user_name": "mmalex", "in_reply_to_status_id": 147756999524880400, "in_reply_to_status_id_str": "147756999524880384"}, +{"created_at": "Fri, 16 Dec 2011 19:14:22 +0000", "from_user": "hyungjoo_", "from_user_id": 52583469, "from_user_id_str": "52583469", "from_user_name": "\\uC1A1\\uD615\\uC8FC(Hyungjoo Song)", "geo": null, "id": 147756469188694000, "id_str": "147756469188694016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1219388658/___normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1219388658/___normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@joyent currently, i can't access my no.de machine with the error \"ssh: connect to host http://t.co/dFDEh7Gi port 36782: Connection refused\"", "to_user": "joyent", "to_user_id": 666523, "to_user_id_str": "666523", "to_user_name": "Joyent"}, +{"created_at": "Fri, 16 Dec 2011 18:20:35 +0000", "from_user": "scottherson", "from_user_id": 89247454, "from_user_id_str": "89247454", "from_user_name": "scott herson", "geo": null, "id": 147742937172807680, "id_str": "147742937172807680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1281899263/fiji_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1281899263/fiji_normal", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "@Joyent partner @StackMob\\u2019s Mobile App Platform Is Now Publicly\\u00A0Available http://t.co/w2BnGNfO via @techcrunch", "to_user": "joyent", "to_user_id": 666523, "to_user_id_str": "666523", "to_user_name": "Joyent"}, +{"created_at": "Fri, 16 Dec 2011 17:53:28 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147736113174413300, "id_str": "147736113174413313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "RT @mthiele10: RT @VentureBeat: Google gets patent for its driverless cars - http://t.co/zhk4pV7x by @JolieODell", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:40:04 +0000", "from_user": "davidpaulyoung", "from_user_id": 10637, "from_user_id_str": "10637", "from_user_name": "David Young", "geo": null, "id": 147732737829253120, "id_str": "147732737829253121", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/14395312/icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/14395312/icon_normal.jpg", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "I'm at Joyent (345 California St, #2000, San Francisco) http://t.co/oZqlK1hM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:35:04 +0000", "from_user": "2drunk_", "from_user_id": 47107970, "from_user_id_str": "47107970", "from_user_name": "Gabi do M\\u00FCller", "geo": null, "id": 147731481949782000, "id_str": "147731481949782016", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1679533425/aaaa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679533425/aaaa_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@__CherryBomb_ http://t.co/eJVYlolr faz seu login e entra no msn pra eu te explicar os bangs huahua", "to_user": "__CherryBomb_", "to_user_id": 224526530, "to_user_id_str": "224526530", "to_user_name": "Felipe Alves", "in_reply_to_status_id": 147731036468543500, "in_reply_to_status_id_str": "147731036468543488"}, +{"created_at": "Fri, 16 Dec 2011 17:24:17 +0000", "from_user": "lgpiper", "from_user_id": 10230312, "from_user_id_str": "10230312", "from_user_name": "Larry Piper", "geo": null, "id": 147728767563997200, "id_str": "147728767563997186", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1540427281/sloth_m_300_tr_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1540427281/sloth_m_300_tr_normal.png", "source": "<a href="http://seesmic.com/seesmic_desktop/sd2" rel="nofollow">Seesmic Desktop</a>", "text": "@lderezinski @chorrell Pretty sure this whole thread is spam (link in first post), but I'm asking you to decide : http://t.co/fbaae9Kz", "to_user": "lderezinski", "to_user_id": 6166672, "to_user_id_str": "6166672", "to_user_name": "Linda Derezinski"}, +{"created_at": "Fri, 16 Dec 2011 17:21:50 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147728150120505340, "id_str": "147728150120505344", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@gamesalad Very nice redesign! Much cleaner.", "to_user": "gamesalad", "to_user_id": 16869298, "to_user_id_str": "16869298", "to_user_name": "GameSalad", "in_reply_to_status_id": 147372290789736450, "in_reply_to_status_id_str": "147372290789736448"}, +{"created_at": "Fri, 16 Dec 2011 17:21:26 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147728051403374600, "id_str": "147728051403374592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @newrelic: Case Study See how eCommerce leader Mercado Libre ensures superior performance across thousands of servers in the cloud http://t.co/yhAr72jw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:21:13 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147727995258417150, "id_str": "147727995258417152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @basho: Announcing Riaknostic, your Riak Doctor. http://t.co/Adx1ljOw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:21:05 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147727962106626050, "id_str": "147727962106626049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Growing Up http://t.co/PD4JktSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:20:48 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147727892183384060, "id_str": "147727892183384065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://www.mysqlperformanceblog.com" rel="nofollow">MySQL Performance Blog</a>", "text": "RT @Percona: Jay Janssen blogs on Setting up XFS on Hardware RAID -- the simple edition http://t.co/DTNq3kki #Performance #raid #Storage_Engine", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:20:29 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147727812365778940, "id_str": "147727812365778945", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@Laticiaybaf :)", "to_user": "Laticiaybaf", "to_user_id": 426278322, "to_user_id_str": "426278322", "to_user_name": "Laticia Pennant", "in_reply_to_status_id": 147589059018113020, "in_reply_to_status_id_str": "147589059018113024"}, +{"created_at": "Fri, 16 Dec 2011 17:07:00 +0000", "from_user": "SFDevJobs", "from_user_id": 411245524, "from_user_id_str": "411245524", "from_user_name": "San Fran Dev Jobs", "geo": null, "id": 147724417605185540, "id_str": "147724417605185536", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1652355565/devjobs-logo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652355565/devjobs-logo_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#sf Web Developer \\u2013 Joyent Public Cloud http://t.co/zS4lD2nN #devjob #jobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:18:47 +0000", "from_user": "kjjaeger", "from_user_id": 16145300, "from_user_id_str": "16145300", "from_user_name": "Kenneth J. Jaeger", "geo": null, "id": 147712285413093380, "id_str": "147712285413093376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1176176390/a1e40791-709e-43ee-91d9-ef666c36d521_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1176176390/a1e40791-709e-43ee-91d9-ef666c36d521_normal.png", "source": "<a href="http://tweetli.st/" rel="nofollow">TweetList Pro</a>", "text": "RT @simonmcc: Brian Cantrill Joyent on Sun acquisition; \"I went to Oracle with an open mind. It was an incredible waste of openmindedness.\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:05:52 +0000", "from_user": "freshports_org", "from_user_id": 22240332, "from_user_id_str": "22240332", "from_user_name": "freshports.org", "geo": null, "id": 147678835578646530, "id_str": "147678835578646529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/84433341/freshports_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/84433341/freshports_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "www/node - 0.6.6: - Update to 0.6.6\\n\\nChanges: http://t.co/PznaqraD\\nPR: ... http://t.co/Xnhj50tG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:25:18 +0000", "from_user": "ivanhoe011", "from_user_id": 66363468, "from_user_id_str": "66363468", "from_user_name": "Ivan Dilber", "geo": null, "id": 147668626944692220, "id_str": "147668626944692228", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1192123302/smajli_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1192123302/smajli_normal.jpeg", "source": "<a href="http://proxlet.com" rel="nofollow">Proxlet</a>", "text": "Joyent ima moto \"smart computing\" ali servis http://t.co/MzdnUAyh im je bolno glupav, moram da nadjem neki bolji nacin za cuvanje snippeta", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:02:06 +0000", "from_user": "DegreePrograOMK", "from_user_id": 386471764, "from_user_id_str": "386471764", "from_user_name": "Lucia Charter", "geo": null, "id": 147662788960063500, "id_str": "147662788960063488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1609654729/1319743086_online-degree-program_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609654729/1319743086_online-degree-program_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Joyent Announces Academic Program for Educators, Researchers and Students", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:48:04 +0000", "from_user": "federicocarrara", "from_user_id": 111273752, "from_user_id_str": "111273752", "from_user_name": "federico carrara", "geo": null, "id": 147629058300194800, "id_str": "147629058300194816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689982772/federico-carrara_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689982772/federico-carrara_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @charlesbeeler: Seems like @twitter is having a lot of perf issues in the past few days. Ought to run it on the @Joyent Public Cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:46:54 +0000", "from_user": "hirojin", "from_user_id": 39625343, "from_user_id_str": "39625343", "from_user_name": "Igor Gali\\u0107", "geo": null, "id": 147628760886284300, "id_str": "147628760886284288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/411312644/twitter_first_try_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/411312644/twitter_first_try_normal.jpg", "source": "<a href="http://twirssi.com" rel="nofollow">Twirssi</a>", "text": "@kvegh There's a dude called John Sonnenschein working for Joyent? whoa.", "to_user": "kvegh", "to_user_id": 50073503, "to_user_id_str": "50073503", "to_user_name": "Karoly Vegh", "in_reply_to_status_id": 147626941258792960, "in_reply_to_status_id_str": "147626941258792960"}, +{"created_at": "Fri, 16 Dec 2011 10:10:36 +0000", "from_user": "diorahman", "from_user_id": 17058778, "from_user_id_str": "17058778", "from_user_name": "Dhi Aurrahman", "geo": null, "id": 147619627088875520, "id_str": "147619627088875520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1580655908/dio_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580655908/dio_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "what makes http://t.co/VBBXMglU better? @joyent ?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:48:10 +0000", "from_user": "forgetcomputers", "from_user_id": 15758840, "from_user_id_str": "15758840", "from_user_name": "Forget Computers", "geo": null, "id": 147613983359238140, "id_str": "147613983359238144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/316992618/newicon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/316992618/newicon_normal.png", "source": "<a href="http://paper.li" rel="nofollow">Paper.li</a>", "text": "Forget Computers Mac & iOS News is out! http://t.co/jF5cvcPx \\u25B8 Top stories today via @zendesk @joyent @canadait @creativebitsorg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:42:37 +0000", "from_user": "miumiento", "from_user_id": 63054849, "from_user_id_str": "63054849", "from_user_name": "Mariano Iumiento", "geo": null, "id": 147612586618261500, "id_str": "147612586618261504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/390812352/n1337751248_30237737_23_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/390812352/n1337751248_30237737_23_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @srsmoot: @joyent New SmartOS release. Burn it. Swap CDs. Boot it. Done.\\n\\nEasiest OS upgrade I've ever experienced by a mile! Awesome work!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:02:32 +0000", "from_user": "mongodb_news", "from_user_id": 218710958, "from_user_id_str": "218710958", "from_user_name": "MongoDb", "geo": null, "id": 147602499463954430, "id_str": "147602499463954432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1173473945/imgres-1_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1173473945/imgres-1_normal.jpeg", "source": "<a href="http://skeedy.com" rel="nofollow">RuntimeSkeedy</a>", "text": "Joyent Announces SmartMachine Appliance for MongoDB Joyent Announces SmartMachine Appliance for MongoDB http://t.co/qaziW270", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:27:27 +0000", "from_user": "jedschmidt", "from_user_id": 815114, "from_user_id_str": "815114", "from_user_name": "Jed Schmidt", "geo": null, "id": 147593666960171000, "id_str": "147593666960171009", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1164735503/Jed_Schmidt_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1164735503/Jed_Schmidt_normal.jpeg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@mikeal heh, then ask @ryah why he added it to node: http://t.co/Jo88TfOp", "to_user": "mikeal", "to_user_id": 668423, "to_user_id_str": "668423", "to_user_name": "Mikeal", "in_reply_to_status_id": 147571564676792320, "in_reply_to_status_id_str": "147571564676792320"}, +{"created_at": "Fri, 16 Dec 2011 08:06:31 +0000", "from_user": "danvatca", "from_user_id": 13383732, "from_user_id_str": "13383732", "from_user_name": "Dan Vatca", "geo": null, "id": 147588402324320260, "id_str": "147588402324320256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1412100158/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1412100158/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @peteryorke: video from @bcantrill's #LISA11 talk - Fork Yeah! The Rise and Development of illumos \\u2013 http://t.co/NwPomIby http://t.co/SWx2mVeu @joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:04:01 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147587773203873800, "id_str": "147587773203873792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Excellent Xmas Party at Joyent HQ in SF. Veuve+ Angry Birds + Good Convos = holiday cheer. Thanks @davidpaulyoung and team.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:52:59 +0000", "from_user": "jonzobrist", "from_user_id": 169299463, "from_user_id_str": "169299463", "from_user_name": "Jon Zobrist", "geo": null, "id": 147584994867560450, "id_str": "147584994867560448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1279516177/jon_n_les_2009_canada_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1279516177/jon_n_les_2009_canada_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @srsmoot: @joyent New SmartOS release. Burn it. Swap CDs. Boot it. Done.\\n\\nEasiest OS upgrade I've ever experienced by a mile! Awesome work!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:52:56 +0000", "from_user": "jonzobrist", "from_user_id": 169299463, "from_user_id_str": "169299463", "from_user_name": "Jon Zobrist", "geo": null, "id": 147584983903633400, "id_str": "147584983903633408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1279516177/jon_n_les_2009_canada_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1279516177/jon_n_les_2009_canada_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @jimpick: Looking at the smartos commits on github. Amazing stuff from @joyent! http://t.co/8uHArh7f", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:50:58 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147584488963190800, "id_str": "147584488963190784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @srsmoot: @joyent New SmartOS release. Burn it. Swap CDs. Boot it. Done.\\n\\nEasiest OS upgrade I've ever experienced by a mile! Awesome work!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:50:40 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147584413994205200, "id_str": "147584413994205185", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @jimpick: Looking at the smartos commits on github. Amazing stuff from @joyent! http://t.co/8uHArh7f", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:50:18 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147584318879961100, "id_str": "147584318879961088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@polotek @jasonh Would love detailed feedback. Want to DM me your email so we can connect? Tnx!", "to_user": "polotek", "to_user_id": 20079975, "to_user_id_str": "20079975", "to_user_name": "Marco Rogers", "in_reply_to_status_id": 147583744574881800, "in_reply_to_status_id_str": "147583744574881792"}, +{"created_at": "Fri, 16 Dec 2011 07:48:01 +0000", "from_user": "polotek", "from_user_id": 20079975, "from_user_id_str": "20079975", "from_user_name": "Marco Rogers", "geo": null, "id": 147583744574881800, "id_str": "147583744574881792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/422439290/n739064999_192287_1980_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/422439290/n739064999_192287_1980_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@jasonh @joyent smartdc api. I can't manage to access anything. Think my ssh key isn't working.", "to_user": "jasonh", "to_user_id": 10638, "to_user_id_str": "10638", "to_user_name": "Jason Hoffman", "in_reply_to_status_id": 147583081908412400, "in_reply_to_status_id_str": "147583081908412417"}, +{"created_at": "Fri, 16 Dec 2011 07:47:07 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 147583519521116160, "id_str": "147583519521116160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @srsmoot: @joyent New SmartOS release. Burn it. Swap CDs. Boot it. Done.\\n\\nEasiest OS upgrade I've ever experienced by a mile! Awesome work!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:45:23 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 147583081908412400, "id_str": "147583081908412417", "iso_language_code": "hu", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@polotek docs for what? /cc @joyent", "to_user": "polotek", "to_user_id": 20079975, "to_user_id_str": "20079975", "to_user_name": "Marco Rogers", "in_reply_to_status_id": 147571095208333300, "in_reply_to_status_id_str": "147571095208333312"}, +{"created_at": "Fri, 16 Dec 2011 07:09:06 +0000", "from_user": "harutama", "from_user_id": 61853153, "from_user_id_str": "61853153", "from_user_name": "sunao tomita", "geo": null, "id": 147573951722303500, "id_str": "147573951722303488", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/341641786/20090719003335_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/341641786/20090719003335_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\\u3055\\u3044\\u304D\\u3093Joyent\\u306E\\u30D0\\u30CA\\u30FC\\u5E83\\u544A\\u304C\\u591A\\u3044\\u306D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:02:45 +0000", "from_user": "fatshotty", "from_user_id": 95258760, "from_user_id_str": "95258760", "from_user_name": "Fabio", "geo": null, "id": 147572354111897600, "id_str": "147572354111897600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1342686720/fatshotty_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1342686720/fatshotty_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Using Eclipse as Node Applications Debugger - GitHub http://t.co/e4c7oezT #eclips #node #nodejs #javascript http://t.co/wUdw4le3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 06:57:45 +0000", "from_user": "polotek", "from_user_id": 20079975, "from_user_id_str": "20079975", "from_user_name": "Marco Rogers", "geo": null, "id": 147571095208333300, "id_str": "147571095208333312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/422439290/n739064999_192287_1980_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/422439290/n739064999_192287_1980_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@joyent I'm having a hard time with your docs. They start good but then I find key information is missing or unclear.", "to_user": "joyent", "to_user_id": 666523, "to_user_id_str": "666523", "to_user_name": "Joyent"}, +{"created_at": "Fri, 16 Dec 2011 06:33:41 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 147565038650142720, "id_str": "147565038650142720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @knsk66: Using Eclipse as Node Applications Debugger - GitHub http://t.co/sL2z2qiy #eclips #node #nodejs #javascript", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 06:16:25 +0000", "from_user": "favstar_tech", "from_user_id": 135117300, "from_user_id_str": "135117300", "from_user_name": "Top Tech Tweets", "geo": null, "id": 147560692231319550, "id_str": "147560692231319552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1202096248/twitterAvatarTech2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1202096248/twitterAvatarTech2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @joyent: \"Joyent Announces Academic Program for Educators, Researchers and Students\" - SDC in the .EDU. http://t.co/7MciyRNo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 06:16:22 +0000", "from_user": "lderezinski", "from_user_id": 6166672, "from_user_id_str": "6166672", "from_user_name": "Linda Derezinski", "geo": null, "id": 147560679572906000, "id_str": "147560679572905984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1575099705/lderezinski_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575099705/lderezinski_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @joyent: \"Joyent Announces Academic Program for Educators, Researchers and Students\" - SDC in the .EDU. http://t.co/7MciyRNo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 06:13:54 +0000", "from_user": "lderezinski", "from_user_id": 6166672, "from_user_id_str": "6166672", "from_user_name": "Linda Derezinski", "geo": null, "id": 147560059721879550, "id_str": "147560059721879552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1575099705/lderezinski_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575099705/lderezinski_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @jasonh: Joyent's Academic program: grants + free and commercially unrestricted software smartdatacenter, smartOS, node.js http://t.co/zPHg1bU7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 06:10:25 +0000", "from_user": "jamus_se", "from_user_id": 112896032, "from_user_id_str": "112896032", "from_user_name": "jamus", "geo": null, "id": 147559183208820740, "id_str": "147559183208820736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1564910465/twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1564910465/twitter_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @knsk66: Using Eclipse as Node Applications Debugger - GitHub http://t.co/emFnzONc #eclips #node #nodejs #javascript", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 06:09:28 +0000", "from_user": "bestClearMax", "from_user_id": 270379910, "from_user_id_str": "270379910", "from_user_name": "bestclearmax", "geo": null, "id": 147558944028635140, "id_str": "147558944028635137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1282974191/Houston_Texans_logo3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1282974191/Houston_Texans_logo3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/RJ7Tkp3j Joyent Announces Academic Program for Educators, Researchers and Students - MarketWatch (press release)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 06:08:53 +0000", "from_user": "knsk66", "from_user_id": 11945522, "from_user_id_str": "11945522", "from_user_name": "knsk66", "geo": null, "id": 147558796380737540, "id_str": "147558796380737536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1169361433/for_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1169361433/for_twitter_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Using Eclipse as Node Applications Debugger - GitHub http://t.co/sL2z2qiy #eclips #node #nodejs #javascript", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 06:08:52 +0000", "from_user": "fbshareschecker", "from_user_id": 282151707, "from_user_id_str": "282151707", "from_user_name": "Kensuke Kamachi", "geo": null, "id": 147558794442977280, "id_str": "147558794442977281", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1311539889/Other-Japanese-Post-icon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1311539889/Other-Japanese-Post-icon_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Using Eclipse as Node Applications Debugger - GitHub http://t.co/xq1nqVsg #eclips #node #nodejs #javascript", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 05:29:13 +0000", "from_user": "MJ", "from_user_id": 11422, "from_user_id_str": "11422", "from_user_name": "MJ", "geo": +{"coordinates": [37.7929,-122.4003], "type": "Point"}, "id": 147548814201466880, "id_str": "147548814201466880", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1578950798/Screen_shot_2011-08-23_at_11.13.02_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1578950798/Screen_shot_2011-08-23_at_11.13.02_PM_normal.png", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "CaviAr and smashed potatos @ Joyent http://t.co/L3WgKFiC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 05:16:53 +0000", "from_user": "dexterous", "from_user_id": 188215254, "from_user_id_str": "188215254", "from_user_name": "Saager Mhatre", "geo": null, "id": 147545710944981000, "id_str": "147545710944980992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1367401855/IMG_3076_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1367401855/IMG_3076_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @joyent: \"Joyent Announces Academic Program for Educators, Researchers and Students\" - SDC in the .EDU. http://t.co/7MciyRNo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 05:13:28 +0000", "from_user": "bestClearMax", "from_user_id": 270379910, "from_user_id_str": "270379910", "from_user_name": "bestclearmax", "geo": null, "id": 147544849636270080, "id_str": "147544849636270080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1282974191/Houston_Texans_logo3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1282974191/Houston_Texans_logo3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Joyent Announces Academic Program for Educators, Researchers and Students - MarketWatch (press release) http://t.co/RJ7Tkp3j", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 04:07:34 +0000", "from_user": "johnnysunshine", "from_user_id": 10172262, "from_user_id_str": "10172262", "from_user_name": "johnnysunshine", "geo": null, "id": 147528265362456580, "id_str": "147528265362456576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1639927688/icon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639927688/icon_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@bdha @srsmoot @DeirdreS it's current as of whatever is current in Joyent's gate a day or three ago", "to_user": "bdha", "to_user_id": 21226447, "to_user_id_str": "21226447", "to_user_name": "Bryan HorstmannAllen", "in_reply_to_status_id": 147483965853405200, "in_reply_to_status_id_str": "147483965853405185"}, +{"created_at": "Fri, 16 Dec 2011 04:06:50 +0000", "from_user": "mikeal", "from_user_id": 668423, "from_user_id_str": "668423", "from_user_name": "Mikeal", "geo": null, "id": 147528081643544580, "id_str": "147528081643544576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1554648053/avatar-bw_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554648053/avatar-bw_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@jacobian many parsers don't support arbitrary verbs (see http://t.co/cn2F1Ab4), adding them can impact routers, load balancers and caches", "to_user": "jacobian", "to_user_id": 18824526, "to_user_id_str": "18824526", "to_user_name": "jacobian", "in_reply_to_status_id": 147527433917169660, "in_reply_to_status_id_str": "147527433917169664"}, +{"created_at": "Fri, 16 Dec 2011 03:58:41 +0000", "from_user": "HowieDragon", "from_user_id": 184442035, "from_user_id_str": "184442035", "from_user_name": "Howie", "geo": null, "id": 147526030003937280, "id_str": "147526030003937280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1412192196/IMG_2380_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1412192196/IMG_2380_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@DeirdreS not true, the joyent Vancouver Christmas party I recall @trevoro and @trentmick were in full suits, can ask @bcantrill as witness", "to_user": "DeirdreS", "to_user_id": 625093, "to_user_id_str": "625093", "to_user_name": "Deirdr\\u00E9 Straughan", "in_reply_to_status_id": 147498407123091460, "in_reply_to_status_id_str": "147498407123091456"}, +{"created_at": "Fri, 16 Dec 2011 03:43:28 +0000", "from_user": "HowieDragon", "from_user_id": 184442035, "from_user_id_str": "184442035", "from_user_name": "Howie", "geo": null, "id": 147522200528891900, "id_str": "147522200528891906", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1412192196/IMG_2380_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1412192196/IMG_2380_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Node.js released v0.6.6 is out \\u25B8 http://t.co/5OVN6I25 #nodejs \\u263A http://t.co/RkQTktPm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 03:37:22 +0000", "from_user": "jimpick", "from_user_id": 15839929, "from_user_id_str": "15839929", "from_user_name": "Jim Pick", "geo": null, "id": 147520668571934720, "id_str": "147520668571934721", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/680570347/jpick-240x240_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/680570347/jpick-240x240_normal.jpg", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "RT @MJ: Joyent holiday party with a shark in a hat. Awesome (@ Joyent) [pic]: http://t.co/j9q0S0FM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 03:34:36 +0000", "from_user": "MJ", "from_user_id": 11422, "from_user_id_str": "11422", "from_user_name": "MJ", "geo": +{"coordinates": [37.7929,-122.4003], "type": "Point"}, "id": 147519970341949440, "id_str": "147519970341949440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1578950798/Screen_shot_2011-08-23_at_11.13.02_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1578950798/Screen_shot_2011-08-23_at_11.13.02_PM_normal.png", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "Joyent holiday party with a shark in a hat. Awesome (@ Joyent) [pic]: http://t.co/j9q0S0FM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 03:27:36 +0000", "from_user": "jon_spinks", "from_user_id": 179003920, "from_user_id_str": "179003920", "from_user_name": "Jon Spinks", "geo": null, "id": 147518209669595140, "id_str": "147518209669595136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1452667426/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1452667426/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @srsmoot: @joyent New SmartOS release. Burn it. Swap CDs. Boot it. Done.\\n\\nEasiest OS upgrade I've ever experienced by a mile! Awesome work!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 02:45:46 +0000", "from_user": "edsai", "from_user_id": 5739392, "from_user_id_str": "5739392", "from_user_name": "Ed Saipetch", "geo": null, "id": 147507681865908220, "id_str": "147507681865908224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1151558798/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1151558798/image_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@DeirdreS @badnima @jhk24 tell everyone at Joyent I said happy holidays. missing out on the parties is part of being field-based", "to_user": "DeirdreS", "to_user_id": 625093, "to_user_id_str": "625093", "to_user_name": "Deirdr\\u00E9 Straughan"}, +{"created_at": "Fri, 16 Dec 2011 02:43:27 +0000", "from_user": "sealockuqvf5", "from_user_id": 374428510, "from_user_id_str": "374428510", "from_user_name": "Sealock Benson", "geo": null, "id": 147507097708404740, "id_str": "147507097708404736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1545182451/f_35_w_0076_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545182451/f_35_w_0076_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@another143 http://t.co/NVwwCO55", "to_user": "another143", "to_user_id": 437739495, "to_user_id_str": "437739495", "to_user_name": "Paulina", "in_reply_to_status_id": 147410638816296960, "in_reply_to_status_id_str": "147410638816296960"}, +{"created_at": "Fri, 16 Dec 2011 02:38:28 +0000", "from_user": "jimpick", "from_user_id": 15839929, "from_user_id_str": "15839929", "from_user_name": "Jim Pick", "geo": null, "id": 147505846149062660, "id_str": "147505846149062656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/680570347/jpick-240x240_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/680570347/jpick-240x240_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Looking at the smartos commits on github. Amazing stuff from @joyent! http://t.co/8uHArh7f", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 02:37:44 +0000", "from_user": "badnima", "from_user_id": 14694282, "from_user_id_str": "14694282", "from_user_name": "badnima", "geo": null, "id": 147505659645132800, "id_str": "147505659645132800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/56876991/commit_no_nuisance_4jpg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/56876991/commit_no_nuisance_4jpg_normal.jpg", "source": "<a href="http://www.typepad.com/" rel="nofollow">TypePad</a>", "text": "Joyent holiday party gifts! http://t.co/hSUXcIoz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 02:34:59 +0000", "from_user": "sealockuqvf5", "from_user_id": 374428510, "from_user_id_str": "374428510", "from_user_name": "Sealock Benson", "geo": null, "id": 147504966423154700, "id_str": "147504966423154688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1545182451/f_35_w_0076_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545182451/f_35_w_0076_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Rosalieykw http://t.co/NVwwCO55", "to_user": "Rosalieykw", "to_user_id": 426215272, "to_user_id_str": "426215272", "to_user_name": "Ran Schoenfelt", "in_reply_to_status_id": 147356851208597500, "in_reply_to_status_id_str": "147356851208597504"}, +{"created_at": "Fri, 16 Dec 2011 02:27:22 +0000", "from_user": "sealockuqvf5", "from_user_id": 374428510, "from_user_id_str": "374428510", "from_user_name": "Sealock Benson", "geo": null, "id": 147503050192465920, "id_str": "147503050192465921", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1545182451/f_35_w_0076_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545182451/f_35_w_0076_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@klutz101oops http://t.co/NVwwCO55", "to_user": "klutz101oops", "to_user_id": 22456945, "to_user_id_str": "22456945", "to_user_name": "Amber Rose Jones", "in_reply_to_status_id": 147356909895299070, "in_reply_to_status_id_str": "147356909895299072"}, +{"created_at": "Fri, 16 Dec 2011 02:22:46 +0000", "from_user": "GeekDani", "from_user_id": 65526437, "from_user_id_str": "65526437", "from_user_name": "Dani Kim", "geo": null, "id": 147501894544261120, "id_str": "147501894544261120", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662698421/DSC04650_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662698421/DSC04650_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "current status : \\uC7AC\\uBBF8\\uC0BC\\uC544 joyent\\uC758 libuv \\uC911 event \\uCC98\\uB9AC\\uB97C \\uBCF4\\uACE0 \\uC788\\uC74C.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 02:19:15 +0000", "from_user": "pborenstein", "from_user_id": 3675931, "from_user_id_str": "3675931", "from_user_name": "Philip Borenstein", "geo": null, "id": 147501007444783100, "id_str": "147501007444783104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/71234052/IMG_0453_2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/71234052/IMG_0453_2_normal.JPG", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@DeirdreS I think I just had the @Joyent New England holiday party with @Wendy_DarlingNH", "to_user": "DeirdreS", "to_user_id": 625093, "to_user_id_str": "625093", "to_user_name": "Deirdr\\u00E9 Straughan", "in_reply_to_status_id": 147498407123091460, "in_reply_to_status_id_str": "147498407123091456"}, +{"created_at": "Fri, 16 Dec 2011 02:16:15 +0000", "from_user": "sealockuqvf5", "from_user_id": 374428510, "from_user_id_str": "374428510", "from_user_name": "Sealock Benson", "geo": null, "id": 147500252381974530, "id_str": "147500252381974528", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1545182451/f_35_w_0076_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545182451/f_35_w_0076_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Ivelissehwd http://t.co/NVwwCO55", "to_user": "Ivelissehwd", "to_user_id": 433539358, "to_user_id_str": "433539358", "to_user_name": "Dg Jade", "in_reply_to_status_id": 147356942875111420, "in_reply_to_status_id_str": "147356942875111424"}, +{"created_at": "Fri, 16 Dec 2011 02:11:47 +0000", "from_user": "sealockuqvf5", "from_user_id": 374428510, "from_user_id_str": "374428510", "from_user_name": "Sealock Benson", "geo": null, "id": 147499130099466240, "id_str": "147499130099466241", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1545182451/f_35_w_0076_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545182451/f_35_w_0076_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@RegularAndreas http://t.co/NVwwCO55", "to_user": "RegularAndreas", "to_user_id": 295360622, "to_user_id_str": "295360622", "to_user_name": "Andreas Pettersson", "in_reply_to_status_id": 147356969710264320, "in_reply_to_status_id_str": "147356969710264320"}, +{"created_at": "Fri, 16 Dec 2011 02:04:19 +0000", "from_user": "sealockuqvf5", "from_user_id": 374428510, "from_user_id_str": "374428510", "from_user_name": "Sealock Benson", "geo": null, "id": 147497252322148350, "id_str": "147497252322148353", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1545182451/f_35_w_0076_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545182451/f_35_w_0076_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@carnegielearn http://t.co/NVwwCO55", "to_user": "carnegielearn", "to_user_id": 19929235, "to_user_id_str": "19929235", "to_user_name": "Carnegie Learning", "in_reply_to_status_id": 147356965566283780, "in_reply_to_status_id_str": "147356965566283776"}, +{"created_at": "Fri, 16 Dec 2011 02:01:17 +0000", "from_user": "sealockuqvf5", "from_user_id": 374428510, "from_user_id_str": "374428510", "from_user_name": "Sealock Benson", "geo": null, "id": 147496486161227780, "id_str": "147496486161227777", "iso_language_code": "vi", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1545182451/f_35_w_0076_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545182451/f_35_w_0076_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@r_c http://t.co/NVwwCO55", "to_user": "r_c", "to_user_id": 216323, "to_user_id_str": "216323", "to_user_name": "Ged Carroll | \\u30AD\\u30E3\\u30ED\\u30EB \\u30B8", "in_reply_to_status_id": 147356618722512900, "in_reply_to_status_id_str": "147356618722512897"}, +{"created_at": "Fri, 16 Dec 2011 01:56:57 +0000", "from_user": "sealockuqvf5", "from_user_id": 374428510, "from_user_id_str": "374428510", "from_user_name": "Sealock Benson", "geo": null, "id": 147495396455882750, "id_str": "147495396455882752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1545182451/f_35_w_0076_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545182451/f_35_w_0076_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MCFOfficial http://t.co/NVwwCO55", "to_user": "MCFOfficial", "to_user_id": 149083464, "to_user_id_str": "149083464", "to_user_name": "Filippo Giustolisi", "in_reply_to_status_id": 147356805868175360, "in_reply_to_status_id_str": "147356805868175360"}, +{"created_at": "Fri, 16 Dec 2011 01:52:50 +0000", "from_user": "sealockuqvf5", "from_user_id": 374428510, "from_user_id_str": "374428510", "from_user_name": "Sealock Benson", "geo": null, "id": 147494361976946700, "id_str": "147494361976946689", "iso_language_code": "eo", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1545182451/f_35_w_0076_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545182451/f_35_w_0076_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@TimezLock http://t.co/NVwwCO55", "to_user": "TimezLock", "to_user_id": 392046621, "to_user_id_str": "392046621", "to_user_name": "Manyie Shing", "in_reply_to_status_id": 147356863606947840, "in_reply_to_status_id_str": "147356863606947840"}, +{"created_at": "Fri, 16 Dec 2011 01:43:48 +0000", "from_user": "davidpaulyoung", "from_user_id": 10637, "from_user_id_str": "10637", "from_user_name": "David Young", "geo": null, "id": 147492086474747900, "id_str": "147492086474747904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/14395312/icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/14395312/icon_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @srsmoot: @joyent New SmartOS release. Burn it. Swap CDs. Boot it. Done.\\n\\nEasiest OS upgrade I've ever experienced by a mile! Awesome work!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:41:33 +0000", "from_user": "sealockuqvf5", "from_user_id": 374428510, "from_user_id_str": "374428510", "from_user_name": "Sealock Benson", "geo": null, "id": 147491519350312960, "id_str": "147491519350312960", "iso_language_code": "vi", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1545182451/f_35_w_0076_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545182451/f_35_w_0076_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@mjay1324 http://t.co/NVwwCO55", "to_user": "mjay1324", "to_user_id": 300604372, "to_user_id_str": "300604372", "to_user_name": "Michael-John Ferraro", "in_reply_to_status_id": 147357069903794180, "in_reply_to_status_id_str": "147357069903794178"}, +{"created_at": "Fri, 16 Dec 2011 01:39:57 +0000", "from_user": "inbgche", "from_user_id": 98225985, "from_user_id_str": "98225985", "from_user_name": "Jinbom Heo", "geo": null, "id": 147491117749907460, "id_str": "147491117749907456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1214365642/jbheo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1214365642/jbheo_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Node.js released v0.6.6 is out \\u25B8 http://t.co/5OVN6I25 #nodejs \\u263A http://t.co/RkQTktPm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:39:49 +0000", "from_user": "DeirdreS", "from_user_id": 625093, "from_user_id_str": "625093", "from_user_name": "Deirdr\\u00E9 Straughan", "geo": null, "id": 147491086481362940, "id_str": "147491086481362945", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1273049375/dpink_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273049375/dpink_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@bdha wait'll you see the new one! IIRC, this is the view from the lunchroom: http://t.co/TLvSUYUJ", "to_user": "bdha", "to_user_id": 21226447, "to_user_id_str": "21226447", "to_user_name": "Bryan HorstmannAllen", "in_reply_to_status_id": 147490432941694980, "in_reply_to_status_id_str": "147490432941694976"}, +{"created_at": "Fri, 16 Dec 2011 01:36:59 +0000", "from_user": "pborenstein", "from_user_id": 3675931, "from_user_id_str": "3675931", "from_user_name": "Philip Borenstein", "geo": null, "id": 147490371868434430, "id_str": "147490371868434433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/71234052/IMG_0453_2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/71234052/IMG_0453_2_normal.JPG", "source": "<a href="http://tweetli.st/" rel="nofollow">TweetList Pro</a>", "text": "@peteryorke @DeirdreS Wait. I was at the @joyent office last week, and no one showed me the pinball machine? No! Fair!", "to_user": "peteryorke", "to_user_id": 14136726, "to_user_id_str": "14136726", "to_user_name": "Peter Yorke", "in_reply_to_status_id": 147487141365157900, "in_reply_to_status_id_str": "147487141365157888"}, +{"created_at": "Fri, 16 Dec 2011 01:34:07 +0000", "from_user": "SMLfordotme", "from_user_id": 105245249, "from_user_id_str": "105245249", "from_user_name": "SMLfor.me", "geo": null, "id": 147489652012613630, "id_str": "147489652012613632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1334833960/Tshirt_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1334833960/Tshirt_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "News Update Joyent Announces Academic Program for Educators, Researchers and Students - MarketWatch (press release) http://t.co/i9UvWL3e", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:28:55 +0000", "from_user": "bcantrill", "from_user_id": 173630577, "from_user_id_str": "173630577", "from_user_name": "Bryan Cantrill", "geo": null, "id": 147488339908509700, "id_str": "147488339908509696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1093371262/homewood-cropped_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1093371262/homewood-cropped_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @srsmoot: @joyent New SmartOS release. Burn it. Swap CDs. Boot it. Done.\\n\\nEasiest OS upgrade I've ever experienced by a mile! Awesome work!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:24:55 +0000", "from_user": "johnnysunshine", "from_user_id": 10172262, "from_user_id_str": "10172262", "from_user_name": "johnnysunshine", "geo": null, "id": 147487334928093200, "id_str": "147487334928093184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1639927688/icon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639927688/icon_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @srsmoot: @joyent New SmartOS release. Burn it. Swap CDs. Boot it. Done.\\n\\nEasiest OS upgrade I've ever experienced by a mile! Awesome work!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:22:44 +0000", "from_user": "sealockuqvf5", "from_user_id": 374428510, "from_user_id_str": "374428510", "from_user_name": "Sealock Benson", "geo": null, "id": 147486786938077200, "id_str": "147486786938077185", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1545182451/f_35_w_0076_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545182451/f_35_w_0076_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@heath3278 http://t.co/NVwwCO55", "to_user": "heath3278", "to_user_id": 168912281, "to_user_id_str": "168912281", "to_user_name": "heath ", "in_reply_to_status_id": 147357045702672400, "in_reply_to_status_id_str": "147357045702672384"}, +{"created_at": "Fri, 16 Dec 2011 01:16:17 +0000", "from_user": "DeirdreS", "from_user_id": 625093, "from_user_id_str": "625093", "from_user_name": "Deirdr\\u00E9 Straughan", "geo": null, "id": 147485162169581570, "id_str": "147485162169581568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1273049375/dpink_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273049375/dpink_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @srsmoot: @joyent New SmartOS release. Burn it. Swap CDs. Boot it. Done.\\n\\nEasiest OS upgrade I've ever experienced by a mile! Awesome work!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:16:04 +0000", "from_user": "DeirdreS", "from_user_id": 625093, "from_user_id_str": "625093", "from_user_name": "Deirdr\\u00E9 Straughan", "geo": null, "id": 147485109497499650, "id_str": "147485109497499650", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1273049375/dpink_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273049375/dpink_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Wow, big day in Joyent news. Educational program, Bryan's talk, new SmartOS release... am I missing anything?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:04:50 +0000", "from_user": "srsmoot", "from_user_id": 228811555, "from_user_id_str": "228811555", "from_user_name": "Sam", "geo": null, "id": 147482282045882370, "id_str": "147482282045882368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1323854939/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1323854939/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@joyent New SmartOS release. Burn it. Swap CDs. Boot it. Done.\\n\\nEasiest OS upgrade I've ever experienced by a mile! Awesome work!", "to_user": "joyent", "to_user_id": 666523, "to_user_id_str": "666523", "to_user_name": "Joyent"}, +{"created_at": "Fri, 16 Dec 2011 01:02:34 +0000", "from_user": "srsmoot", "from_user_id": 228811555, "from_user_id_str": "228811555", "from_user_name": "Sam", "geo": null, "id": 147481710064443400, "id_str": "147481710064443393", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1323854939/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1323854939/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@bdha @joyent @DeirdreS So now that there's a 20111215 release, I can remove my zfs_arc_max? (Release notes really only show vmadm updates.)", "to_user": "bdha", "to_user_id": 21226447, "to_user_id_str": "21226447", "to_user_name": "Bryan HorstmannAllen", "in_reply_to_status_id": 146652524009631740, "in_reply_to_status_id_str": "146652524009631744"}, +{"created_at": "Fri, 16 Dec 2011 01:00:42 +0000", "from_user": "vscarpenter", "from_user_id": 59223, "from_user_id_str": "59223", "from_user_name": "Vinny Carpenter", "geo": null, "id": 147481240130424830, "id_str": "147481240130424832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/48540942/vinny-thumbnail-rounded_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/48540942/vinny-thumbnail-rounded_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "Joyent Announces SmartMachine Appliance for MongoDB - MarketWatch http://t.co/DzJJcDDA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Fri, 16 Dec 2011 00:44:08 +0000", "from_user": "peteryorke", "from_user_id": 14136726, "from_user_id_str": "14136726", "from_user_name": "Peter Yorke", "geo": null, "id": 147477073227825150, "id_str": "147477073227825153", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/51727717/peter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/51727717/peter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Node.js released v0.6.6 is out \\u25B8 http://t.co/HmomSSrF #nodejs http://t.co/ZqntSiHs @NodeJsCommunity", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:43:36 +0000", "from_user": "srsmoot", "from_user_id": 228811555, "from_user_id_str": "228811555", "from_user_name": "Sam", "geo": null, "id": 147476935910502400, "id_str": "147476935910502400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1323854939/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1323854939/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @peteryorke: NEW release of SmartOS with a new feature: vmadm to manage both KVM and SmartOS http://t.co/42cAItjT http://t.co/QkXE3Jha @joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:43:33 +0000", "from_user": "dreamerslab", "from_user_id": 16701148, "from_user_id_str": "16701148", "from_user_name": "ben", "geo": null, "id": 147476926225858560, "id_str": "147476926225858560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/61746772/P1050298_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/61746772/P1050298_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @joyent: \"Joyent Announces Academic Program for Educators, Researchers and Students\" - SDC in the .EDU. http://t.co/7MciyRNo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:35:02 +0000", "from_user": "storagebits", "from_user_id": 434008946, "from_user_id_str": "434008946", "from_user_name": "Francois Lesage", "geo": null, "id": 147474781397205000, "id_str": "147474781397204992", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686864445/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686864445/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejschina: Sun 2.0 = Joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:32:17 +0000", "from_user": "ALittleOfJoe", "from_user_id": 73030632, "from_user_id_str": "73030632", "from_user_name": "Joe Little", "geo": null, "id": 147474088464625660, "id_str": "147474088464625665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/409528163/jlittle-aim_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/409528163/jlittle-aim_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @joyent: \"Joyent Announces Academic Program for Educators, Researchers and Students\" - SDC in the .EDU. http://t.co/7MciyRNo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:06:08 +0000", "from_user": "AlyseoDotCom", "from_user_id": 88886863, "from_user_id_str": "88886863", "from_user_name": "Yacine Kheddache", "geo": null, "id": 147467510038540300, "id_str": "147467510038540288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/549355931/twitter-73_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/549355931/twitter-73_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @peteryorke video from @bcantrill's #LISA11. The Rise & Dev of illumos SmartOS.org http://t.co/MbeNLL6g @joyent @alyseodotcom say: COOL!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:04:08 +0000", "from_user": "voxteneo", "from_user_id": 147348568, "from_user_id_str": "147348568", "from_user_name": "Vox Teneo", "geo": null, "id": 147467003089780740, "id_str": "147467003089780736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1144038076/67231_109024145826597_100001570359773_71619_2033721_n_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1144038076/67231_109024145826597_100001570359773_71619_2033721_n_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Node.js released v0.6.6 is out \\u25B8 http://t.co/5OVN6I25 #nodejs \\u263A http://t.co/RkQTktPm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:03:59 +0000", "from_user": "vRobM", "from_user_id": 38737968, "from_user_id_str": "38737968", "from_user_name": "Rob Markovi\\u0107 (Robi)", "geo": null, "id": 147466966381248500, "id_str": "147466966381248512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/350626160/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/350626160/twitterProfilePhoto_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Node.js released v0.6.6 is out \\u25B8 http://t.co/5OVN6I25 #nodejs \\u263A http://t.co/RkQTktPm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:03:50 +0000", "from_user": "drnugent", "from_user_id": 20087429, "from_user_id_str": "20087429", "from_user_name": "Dave Nugent", "geo": null, "id": 147466931568508930, "id_str": "147466931568508928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1371537535/dave-parisoma2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1371537535/dave-parisoma2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Node.js released v0.6.6 is out \\u25B8 http://t.co/5OVN6I25 #nodejs \\u263A http://t.co/RkQTktPm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:00:34 +0000", "from_user": "kdwalker", "from_user_id": 16369797, "from_user_id_str": "16369797", "from_user_name": "Kumi D. Walker", "geo": null, "id": 147466109132615680, "id_str": "147466109132615680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1076792317/ls_4312_ls_9561_ls_9269_Wedding___Honeymoon_Photos_254_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1076792317/ls_4312_ls_9561_ls_9269_Wedding___Honeymoon_Photos_254_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Thanks @nodejschina & @sdtuck Really enjoy working with you guys cc/ @tyamell @StackMob @joyent", "to_user": "nodejschina", "to_user_id": 55953023, "to_user_id_str": "55953023", "to_user_name": "James F Blom", "in_reply_to_status_id": 147461812948967420, "in_reply_to_status_id_str": "147461812948967424"}, +{"created_at": "Thu, 15 Dec 2011 23:59:23 +0000", "from_user": "GaruHenr", "from_user_id": 112743376, "from_user_id_str": "112743376", "from_user_name": "Bruno Henrique(Garu)", "geo": null, "id": 147465809873219600, "id_str": "147465809873219584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1551147469/225472_1760698895957_1193588234_31583357_7276793_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1551147469/225472_1760698895957_1193588234_31583357_7276793_n_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Node.js released v0.6.6 is out \\u25B8 http://t.co/5OVN6I25 #nodejs \\u263A http://t.co/RkQTktPm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:58:12 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 147465513499508740, "id_str": "147465513499508736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @peteryorke: NEW release of SmartOS with a new feature: vmadm to manage both KVM and SmartOS http://t.co/42cAItjT http://t.co/QkXE3Jha @joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:58:08 +0000", "from_user": "vRobM", "from_user_id": 38737968, "from_user_id_str": "38737968", "from_user_name": "Rob Markovi\\u0107 (Robi)", "geo": null, "id": 147465493534605300, "id_str": "147465493534605312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/350626160/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/350626160/twitterProfilePhoto_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@peteryorke: NEW release of SmartOS with a new feature: vmadm to manage both KVM and SmartOS http://t.co/kBNctZio @joyent\\u201D < cool", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:58:07 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 147465489134788600, "id_str": "147465489134788608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @aegiap: http://t.co/piBIPeiK History of Solaris up to Illumos by Bryan Cantrill, Joyent. #cool #OS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:57:51 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 147465423099674620, "id_str": "147465423099674625", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Node.js released v0.6.6 is out \\u25B8 http://t.co/5OVN6I25 #nodejs \\u263A http://t.co/RkQTktPm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:57:41 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 147465383673212930, "id_str": "147465383673212929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@LisaSpangenberg thank you Lisa /cc @joyent", "to_user": "LisaSpangenberg", "to_user_id": 29770848, "to_user_id_str": "29770848", "to_user_name": "Lisa Spangenberg", "in_reply_to_status_id": 147399917063766000, "in_reply_to_status_id_str": "147399917063766016"}, +{"created_at": "Thu, 15 Dec 2011 23:56:55 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 147465188445138940, "id_str": "147465188445138944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @joyent: \"Joyent Announces Academic Program for Educators, Researchers and Students\" - SDC in the .EDU. http://t.co/7MciyRNo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:55:47 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147464903928717300, "id_str": "147464903928717312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @charlesbeeler: Seems like @twitter is having a lot of perf issues in the past few days. Ought to run it on the @Joyent Public Cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:55:11 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147464754762489860, "id_str": "147464754762489856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@LisaSpangenberg It's an incredibly valuable nexus of innovation and we want to help out every way we can.", "to_user": "LisaSpangenberg", "to_user_id": 29770848, "to_user_id_str": "29770848", "to_user_name": "Lisa Spangenberg", "in_reply_to_status_id": 147399917063766000, "in_reply_to_status_id_str": "147399917063766016"}, +{"created_at": "Thu, 15 Dec 2011 23:54:43 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147464635744923650, "id_str": "147464635744923648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @peteryorke: NEW release of SmartOS with a new feature: vmadm to manage both KVM and SmartOS http://t.co/42cAItjT http://t.co/QkXE3Jha @joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:52:12 +0000", "from_user": "peteryorke", "from_user_id": 14136726, "from_user_id_str": "14136726", "from_user_name": "Peter Yorke", "geo": null, "id": 147464003852042240, "id_str": "147464003852042240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/51727717/peter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/51727717/peter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NEW release of SmartOS with a new feature: vmadm to manage both KVM and SmartOS http://t.co/42cAItjT http://t.co/QkXE3Jha @joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:29:35 +0000", "from_user": "k1occhi", "from_user_id": 119777037, "from_user_id_str": "119777037", "from_user_name": "Keiichi Ochiai", "geo": null, "id": 147458312311537660, "id_str": "147458312311537664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1148808627/nice_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1148808627/nice_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @joyent: \"Joyent Announces Academic Program for Educators, Researchers and Students\" - SDC in the .EDU. http://t.co/7MciyRNo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:22:25 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 147456506755944450, "id_str": "147456506755944450", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Spotting Latency...Improving Performance\\n\\nhttp://t.co/TunT7iqC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:58:29 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 147450483995455500, "id_str": "147450483995455489", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Joyent's Smart Data Center as Middleware", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:55:15 +0000", "from_user": "aegiap", "from_user_id": 16086829, "from_user_id_str": "16086829", "from_user_name": "aegiap", "geo": null, "id": 147449669767794700, "id_str": "147449669767794688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/59255865/avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/59255865/avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/piBIPeiK History of Solaris up to Illumos by Bryan Cantrill, Joyent. #cool #OS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:45:40 +0000", "from_user": "atl", "from_user_id": 693463, "from_user_id_str": "693463", "from_user_name": "Adam Lindsay", "geo": null, "id": 147447259854946300, "id_str": "147447259854946304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1566083932/322559_10150284531150964_604360963_8026168_243591854_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566083932/322559_10150284531150964_604360963_8026168_243591854_o_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @jasonh: Joyent's Academic program: grants + free and commercially unrestricted software smartdatacenter, smartOS, node.js http://t.co/zPHg1bU7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:29:22 +0000", "from_user": "caroline_leigh", "from_user_id": 25520105, "from_user_id_str": "25520105", "from_user_name": "Carly Guarcello", "geo": null, "id": 147443155388731400, "id_str": "147443155388731392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1337766477/IMG_0750_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1337766477/IMG_0750_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @joyent: \"Joyent Announces Academic Program for Educators, Researchers and Students\" - SDC in the .EDU. http://t.co/7MciyRNo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:14:22 +0000", "from_user": "scottherson", "from_user_id": 89247454, "from_user_id_str": "89247454", "from_user_name": "scott herson", "geo": null, "id": 147439382100586500, "id_str": "147439382100586496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1281899263/fiji_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1281899263/fiji_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "A great way to spread the Joy'ent http://t.co/eu43e3Z5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:03:57 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 147436760308252670, "id_str": "147436760308252672", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Sun 2.0 = Joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 21:38:18 +0000", "from_user": "gerbosan", "from_user_id": 171592004, "from_user_id_str": "171592004", "from_user_name": "Carlos A.", "geo": null, "id": 147430305660280830, "id_str": "147430305660280834", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1650325426/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650325426/logo_normal.png", "source": "<a href="http://connect.mediastre.am/" rel="nofollow">En Vivo Mediastream</a>", "text": "como se instala #node.js en #linux http://t.co/bqc7izbE #mejorandola", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 21:37:06 +0000", "from_user": "sowconsulting", "from_user_id": 90001774, "from_user_id_str": "90001774", "from_user_name": "Juan Hern\\u00E1ndez", "geo": null, "id": 147430002982535170, "id_str": "147430002982535168", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1403007076/7066570-software-palabra-collage-sobre-fondo-blanco_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1403007076/7066570-software-palabra-collage-sobre-fondo-blanco_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "aqui como se instala #node.js http://t.co/X6WMeEF8 como se manejar\\u00E1 en #linux =S #mejorandola via @gerbosan", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 21:36:20 +0000", "from_user": "sowconsulting", "from_user_id": 90001774, "from_user_id_str": "90001774", "from_user_name": "Juan Hern\\u00E1ndez", "geo": null, "id": 147429810036154370, "id_str": "147429810036154368", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1403007076/7066570-software-palabra-collage-sobre-fondo-blanco_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1403007076/7066570-software-palabra-collage-sobre-fondo-blanco_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "aqui como se instala #node.js http://t.co/X6WMeEF8 como se manejar\\u00E1 en #linux =S #mejorandola via @gerbosan:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 21:33:15 +0000", "from_user": "gerbosan", "from_user_id": 171592004, "from_user_id_str": "171592004", "from_user_name": "Carlos A.", "geo": null, "id": 147429034442244100, "id_str": "147429034442244096", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1650325426/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650325426/logo_normal.png", "source": "<a href="http://choqok.gnufolks.org/" rel="nofollow">Choqok</a>", "text": "aqui como se instala #node.js http://t.co/TyVHYtA6 como se manejar\\u00E1 en #linux =S #mejorandola", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 21:05:23 +0000", "from_user": "campedersen", "from_user_id": 166318219, "from_user_id_str": "166318219", "from_user_name": "Cam Pedersen", "geo": null, "id": 147422020370579460, "id_str": "147422020370579456", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1593193637/Photo_Nov_27__2_20_47_AM_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593193637/Photo_Nov_27__2_20_47_AM_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "My favorite http://t.co/K2REgS5G", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 20:53:21 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 147418994742267900, "id_str": "147418994742267904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Academic Program for Research\\nhttp://t.co/3vr3wwzO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 20:12:39 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 147408748930015230, "id_str": "147408748930015232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @csanz: @charlesbeeler @twitter @joyent that's where I'm moving! +1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 20:12:00 +0000", "from_user": "DeirdreS", "from_user_id": 625093, "from_user_id_str": "625093", "from_user_name": "Deirdr\\u00E9 Straughan", "geo": null, "id": 147408587600298000, "id_str": "147408587600297984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1273049375/dpink_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273049375/dpink_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @csanz: @charlesbeeler @twitter @joyent that's where I'm moving! +1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 20:11:35 +0000", "from_user": "bashersoybh9", "from_user_id": 389774793, "from_user_id_str": "389774793", "from_user_name": "Basher Troublefield", "geo": null, "id": 147408483116003330, "id_str": "147408483116003329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1585576655/f_27_w_0012_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585576655/f_27_w_0012_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "joyent bug in the no.de ssh settings area - I added a key where the name field contains a ' - This t9jA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 20:06:36 +0000", "from_user": "DeirdreS", "from_user_id": 625093, "from_user_id_str": "625093", "from_user_name": "Deirdr\\u00E9 Straughan", "geo": null, "id": 147407228935213060, "id_str": "147407228935213057", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1273049375/dpink_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273049375/dpink_normal.jpg", "source": "<a href="https://wiki.ubuntu.com/Gwibber" rel="nofollow">Ubuntu</a>", "text": "RT @Stevie_Holdway: It also seems the word 'Joyent' has started to crop up everywhere innovation and bleeding edge is to be found. They're going to be huge.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:47:01 +0000", "from_user": "FredericMoal", "from_user_id": 84316873, "from_user_id_str": "84316873", "from_user_name": "Fr\\u00E9d\\u00E9ric MOAL", "geo": null, "id": 147402298287595520, "id_str": "147402298287595520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/557527820/chercheur_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/557527820/chercheur_normal.jpg", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "RT @HPCintheCloud This Just In: Joyent Announces Academic Program for Educators, Researchers and Students http://t.co/3WANF1pn #cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:40:36 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 147400684319408130, "id_str": "147400684319408128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://termtter.org/" rel="nofollow">Termtter</a>", "text": "RT @itwars: Node.js released v0.6.6 is out \\u25B8 http://t.co/uvYgUDzP #nodejs \\u263A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:40:34 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147400677558202370, "id_str": "147400677558202368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Node.js released v0.6.6 is out \\u25B8 http://t.co/5OVN6I25 #nodejs \\u263A http://t.co/RkQTktPm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:40:33 +0000", "from_user": "flaper87", "from_user_id": 16058166, "from_user_id_str": "16058166", "from_user_name": "FlaPer87", "geo": null, "id": 147400671036055550, "id_str": "147400671036055553", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/489467125/flaper-gotchi_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/489467125/flaper-gotchi_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @mitchitized: Cool! @joyent Announces SmartMachine Appliance for @MongoDB: http://t.co/8qdNZuI9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:38:22 +0000", "from_user": "itwars", "from_user_id": 67265165, "from_user_id_str": "67265165", "from_user_name": "Vincent RABAH", "geo": null, "id": 147400122794385400, "id_str": "147400122794385410", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1135858686/cb-vincent_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1135858686/cb-vincent_normal.png", "source": "<a href="http://termtter.org/" rel="nofollow">Termtter</a>", "text": "Node.js released v0.6.6 is out \\u25B8 http://t.co/uvYgUDzP #nodejs \\u263A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:37:33 +0000", "from_user": "LisaSpangenberg", "from_user_id": 29770848, "from_user_id_str": "29770848", "from_user_name": "Lisa Spangenberg", "geo": null, "id": 147399917063766000, "id_str": "147399917063766016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/954889685/girl_with_pearl_earbuds_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/954889685/girl_with_pearl_earbuds_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@joyent Hey, the Academic Program is very cool; thanks for thinking about education/educators/students.", "to_user": "joyent", "to_user_id": 666523, "to_user_id_str": "666523", "to_user_name": "Joyent", "in_reply_to_status_id": 147380344377712640, "in_reply_to_status_id_str": "147380344377712641"}, +{"created_at": "Thu, 15 Dec 2011 19:37:06 +0000", "from_user": "LisaSpangenberg", "from_user_id": 29770848, "from_user_id_str": "29770848", "from_user_name": "Lisa Spangenberg", "geo": null, "id": 147399802437636100, "id_str": "147399802437636097", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/954889685/girl_with_pearl_earbuds_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/954889685/girl_with_pearl_earbuds_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @joyent: \"Joyent Announces Academic Program for Educators, Researchers and Students\" - SDC in the .EDU. http://t.co/7MciyRNo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:37:04 +0000", "from_user": "mitchitized", "from_user_id": 14181144, "from_user_id_str": "14181144", "from_user_name": "Mitch Pirtle", "geo": null, "id": 147399797521907700, "id_str": "147399797521907712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1640527902/space-monkey8_cropped_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640527902/space-monkey8_cropped_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Cool! @joyent Announces SmartMachine Appliance for @MongoDB: http://t.co/8qdNZuI9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:28:40 +0000", "from_user": "Stevie_Holdway", "from_user_id": 78094624, "from_user_id_str": "78094624", "from_user_name": "Stevie Holdway", "geo": null, "id": 147397682565103600, "id_str": "147397682565103618", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1276047845/191101_1919569233997_1385012453_2188086_469541_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1276047845/191101_1919569233997_1385012453_2188086_469541_o_normal.jpg", "source": "<a href="https://wiki.ubuntu.com/Gwibber" rel="nofollow">Ubuntu</a>", "text": "It also seems the word 'Joyent' has started to crop up everywhere innovation and bleeding edge is to be found. They're going to be huge.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:28:32 +0000", "from_user": "chorrell", "from_user_id": 82683, "from_user_id_str": "82683", "from_user_name": "Christopher Horrell", "geo": null, "id": 147397649899847680, "id_str": "147397649899847680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1156208661/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1156208661/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @joyent: \"Joyent Announces Academic Program for Educators, Researchers and Students\" - SDC in the .EDU. http://t.co/7MciyRNo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:08:18 +0000", "from_user": "tsubame959", "from_user_id": 32947843, "from_user_id_str": "32947843", "from_user_name": "Hokuto", "geo": null, "id": 147392554424479740, "id_str": "147392554424479744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @joyent: \"Joyent Announces Academic Program for Educators, Researchers and Students\" - SDC in the .EDU. http://t.co/7MciyRNo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:53:53 +0000", "from_user": "ruiquelhas", "from_user_id": 21006544, "from_user_id_str": "21006544", "from_user_name": "Rui Quelhas", "geo": null, "id": 147388926649303040, "id_str": "147388926649303041", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1264920283/deepness2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1264920283/deepness2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @joyent: \"Joyent Announces Academic Program for Educators, Researchers and Students\" - SDC in the .EDU. http://t.co/7MciyRNo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:46:11 +0000", "from_user": "peakscale", "from_user_id": 20656014, "from_user_id_str": "20656014", "from_user_name": "Tim Freeman", "geo": null, "id": 147386989363200000, "id_str": "147386989363200001", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/77520980/timf_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/77520980/timf_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @joyent: \"Joyent Announces Academic Program for Educators, Researchers and Students\" - SDC in the .EDU. http://t.co/7MciyRNo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:44:22 +0000", "from_user": "charlesbeeler", "from_user_id": 50510925, "from_user_id_str": "50510925", "from_user_name": "Charles Beeler", "geo": null, "id": 147386532758683650, "id_str": "147386532758683649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1102378532/1e5694f_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1102378532/1e5694f_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @csanz: @charlesbeeler @twitter @joyent that's where I'm moving! +1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:42:57 +0000", "from_user": "InstantOnWorld", "from_user_id": 298547006, "from_user_id_str": "298547006", "from_user_name": "Cloud Computing", "geo": null, "id": 147386178302259200, "id_str": "147386178302259201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1353157070/stars_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1353157070/stars_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Joyent Announces Academic Program for Educators, Researchers and Students: SAN FRANCISCO, CA, Dec 15, 2011 (MARK... http://t.co/KSWRKHAQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:42:44 +0000", "from_user": "syoyo", "from_user_id": 15808736, "from_user_id_str": "15808736", "from_user_name": "syoyo", "geo": null, "id": 147386123814047740, "id_str": "147386123814047744", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1233719952/syoyo_face_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1233719952/syoyo_face_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u6700\\u8FD1\\u306E Joyent \\u30B9\\u30B2\\u3047\\u306A...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:42:06 +0000", "from_user": "jhillacre", "from_user_id": 25359046, "from_user_id_str": "25359046", "from_user_name": "Joel Hillacre", "geo": null, "id": 147385961540632580, "id_str": "147385961540632576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1280719639/sun_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1280719639/sun_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @peteryorke: video from @bcantrill's #LISA11 talk - Fork Yeah! The Rise and Development of illumos \\u2013 http://t.co/NwPomIby http://t.co/SWx2mVeu @joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:41:10 +0000", "from_user": "syoyo", "from_user_id": 15808736, "from_user_id_str": "15808736", "from_user_name": "syoyo", "geo": null, "id": 147385727829807100, "id_str": "147385727829807105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1233719952/syoyo_face_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1233719952/syoyo_face_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @joyent: \"Joyent Announces Academic Program for Educators, Researchers and Students\" - SDC in the .EDU. http://t.co/7MciyRNo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:40:31 +0000", "from_user": "rodrigo_aro", "from_user_id": 42944442, "from_user_id_str": "42944442", "from_user_name": "Rodrigo Aro ", "geo": null, "id": 147385563308245000, "id_str": "147385563308244993", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1196583762/DSC06099_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1196583762/DSC06099_normal.JPG", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @mejorandola: Nos han preguntado mucho sobre Node.js en Windows. Googleen como instalarlo. http://t.co/ZJalat5i #mejorandola /via @cvander", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:30:41 +0000", "from_user": "computer29", "from_user_id": 304242458, "from_user_id_str": "304242458", "from_user_name": "computer", "geo": null, "id": 147383091470671870, "id_str": "147383091470671872", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Joyent Announces Academic Program for Educators, Researchers and Students: About Joyent Joyent is a global cloud... http://t.co/VFKoIQNm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:30:17 +0000", "from_user": "drmarkrbaker", "from_user_id": 59523403, "from_user_id_str": "59523403", "from_user_name": "Dr Mark R Baker", "geo": null, "id": 147382987380637700, "id_str": "147382987380637696", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/977187030/genius_at_work_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/977187030/genius_at_work_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Joyent Announces Academic Program for Educators, Researchers and Students: SAN FRANCISCO, CA, Dec 15, 201... http://t.co/ej57LLd1 #cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:28:46 +0000", "from_user": "psema4", "from_user_id": 26052727, "from_user_id_str": "26052727", "from_user_name": "Scott Elcomb", "geo": null, "id": 147382609268314100, "id_str": "147382609268314112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/577809126/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/577809126/twitterProfilePhoto_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @HPCintheCloud: This Just In: Joyent Announces Academic Program for Educators, Researchers and Students http://t.co/7v1NErrH #cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:27:11 +0000", "from_user": "jasonmulligan", "from_user_id": 25133724, "from_user_id_str": "25133724", "from_user_name": "Jason Mulligan", "geo": null, "id": 147382210360647680, "id_str": "147382210360647680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1114085524/ridehard_msn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1114085524/ridehard_msn_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "shit, joyent is rocking this year", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:27:11 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147382207936348160, "id_str": "147382207936348160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @peteryorke: video from @bcantrill's #LISA11 talk - Fork Yeah! The Rise and Development of illumos \\u2013 http://t.co/NwPomIby http://t.co/SWx2mVeu @joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:26:39 +0000", "from_user": "MaximumBit", "from_user_id": 100304269, "from_user_id_str": "100304269", "from_user_name": "Darshan Arya (CEO)", "geo": null, "id": 147382073164972030, "id_str": "147382073164972032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/627516066/MB_logo_M_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/627516066/MB_logo_M_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Joyent Announces Academic Program for Educators, Researchers and Students http://t.co/vv7gOK0K", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:26:14 +0000", "from_user": "csanz", "from_user_id": 8187772, "from_user_id_str": "8187772", "from_user_name": "Christian Sanz", "geo": null, "id": 147381969792139260, "id_str": "147381969792139264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1645650920/281699_10150253991022411_626637410_7803630_8323075_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645650920/281699_10150253991022411_626637410_7803630_8323075_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @joyent: \"Joyent Announces Academic Program for Educators, Researchers and Students\" - SDC in the .EDU. http://t.co/7MciyRNo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:25:21 +0000", "from_user": "csanz", "from_user_id": 8187772, "from_user_id_str": "8187772", "from_user_name": "Christian Sanz", "geo": +{"coordinates": [37.8024,-122.4248], "type": "Point"}, "id": 147381749528281100, "id_str": "147381749528281088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1645650920/281699_10150253991022411_626637410_7803630_8323075_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645650920/281699_10150253991022411_626637410_7803630_8323075_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@charlesbeeler @twitter @joyent that's where I'm moving! +1", "to_user": "charlesbeeler", "to_user_id": 50510925, "to_user_id_str": "50510925", "to_user_name": "Charles Beeler", "in_reply_to_status_id": 147380993500790800, "in_reply_to_status_id_str": "147380993500790785"}, +{"created_at": "Thu, 15 Dec 2011 18:22:21 +0000", "from_user": "charlesbeeler", "from_user_id": 50510925, "from_user_id_str": "50510925", "from_user_name": "Charles Beeler", "geo": null, "id": 147380993500790800, "id_str": "147380993500790785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1102378532/1e5694f_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1102378532/1e5694f_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Seems like @twitter is having a lot of perf issues in the past few days. Ought to run it on the @Joyent Public Cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:21:55 +0000", "from_user": "HowieDragon", "from_user_id": 184442035, "from_user_id_str": "184442035", "from_user_name": "Howie", "geo": null, "id": 147380881596760060, "id_str": "147380881596760065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1412192196/IMG_2380_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1412192196/IMG_2380_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @joyent: \"Joyent Announces Academic Program for Educators, Researchers and Students\" - SDC in the .EDU. http://t.co/7MciyRNo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:21:46 +0000", "from_user": "BillStarnaud", "from_user_id": 19071434, "from_user_id_str": "19071434", "from_user_name": "Bill St. Arnaud", "geo": null, "id": 147380846851145730, "id_str": "147380846851145728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1291784216/Bill_web_image_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1291784216/Bill_web_image_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @HPCintheCloud: This Just In: Joyent Announces Academic Program for Educators, Researchers and Students http://t.co/7v1NErrH #cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:21:34 +0000", "from_user": "davidpaulyoung", "from_user_id": 10637, "from_user_id_str": "10637", "from_user_name": "David Young", "geo": null, "id": 147380795785490430, "id_str": "147380795785490433", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/14395312/icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/14395312/icon_normal.jpg", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "I'm at Joyent (345 California St, #2000, San Francisco) http://t.co/7Yge8nVd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:19:46 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147380344377712640, "id_str": "147380344377712641", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "\"Joyent Announces Academic Program for Educators, Researchers and Students\" - SDC in the .EDU. http://t.co/7MciyRNo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:13:46 +0000", "from_user": "peteryorke", "from_user_id": 14136726, "from_user_id_str": "14136726", "from_user_name": "Peter Yorke", "geo": null, "id": 147378833685889020, "id_str": "147378833685889024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/51727717/peter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/51727717/peter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "video from @bcantrill's #LISA11 talk - Fork Yeah! The Rise and Development of illumos \\u2013 http://t.co/NwPomIby http://t.co/SWx2mVeu @joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:59:13 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147375172549214200, "id_str": "147375172549214208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @newrelic: New Enhancement - Email alerts for Server Monitoring on @newrelic http://t.co/KLvyEoKZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:59:10 +0000", "from_user": "777final777feed", "from_user_id": 81675924, "from_user_id_str": "81675924", "from_user_name": "777final777feed", "geo": null, "id": 147375156921253900, "id_str": "147375156921253889", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Joyent Announces Academic Program for Educators, Researchers and Students: SAN FRANCISCO, CA, Dec 15, 2011 (MARK... http://t.co/KgPul4SG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:58:55 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147375094975565820, "id_str": "147375094975565824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @stackmob - StackMob is now publicly available! http://t.co/uydlhmRH #StackMoblaunch Rockin'! #loveourcustomers", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:57:17 +0000", "from_user": "akruti_shah", "from_user_id": 189745265, "from_user_id_str": "189745265", "from_user_name": "akrutishah", "geo": null, "id": 147374683900215300, "id_str": "147374683900215296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1122028815/t14_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1122028815/t14_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Joyent Announces Academic Program for Educators, Researchers and Students http://t.co/N10AahCr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:55:26 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147374218936459260, "id_str": "147374218936459264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Percona: Last day for #perconalive DC earlybird registration! Don't miss your chance!!! #MySQL http://t.co/SovFLFlI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:55:11 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147374157691228160, "id_str": "147374157691228160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @CompTechReview: @Joyent debuts #academic program for educators, researchers and students #virtualization #cloud http://t.co/beRnsxvo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:53:54 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147373831386963970, "id_str": "147373831386963968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", "text": "RT @alexr: Had a great time last night at the @voxer party chatting DTrace with the @joyent crew.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:53:36 +0000", "from_user": "charlesbeeler", "from_user_id": 50510925, "from_user_id_str": "50510925", "from_user_name": "Charles Beeler", "geo": null, "id": 147373756602531840, "id_str": "147373756602531841", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1102378532/1e5694f_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1102378532/1e5694f_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Twitter is having loads of issues the past few days. They ought to be running on the @Joyent Public Cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:51:46 +0000", "from_user": "Karishma_tondon", "from_user_id": 189749179, "from_user_id_str": "189749179", "from_user_name": "Karishma Tondon", "geo": null, "id": 147373294167932930, "id_str": "147373294167932928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1122038005/saree_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1122038005/saree_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Joyent Announces Academic Program for Educators, Researchers and Students http://t.co/UDR0tXzW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:49:49 +0000", "from_user": "wesleylong", "from_user_id": 21544956, "from_user_id_str": "21544956", "from_user_name": "Wesley Long", "geo": null, "id": 147372806131298300, "id_str": "147372806131298305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/81265024/Wesley2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/81265024/Wesley2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Joyent Announces Academic Program for Educators, Researchers and Students http://t.co/tIq3RVAP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:38:48 +0000", "from_user": "anushka_sen", "from_user_id": 233139644, "from_user_id_str": "233139644", "from_user_name": "Anushka Sen", "geo": null, "id": 147370032257708030, "id_str": "147370032257708032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1599064047/kajal10_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599064047/kajal10_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Joyent Announces Academic Program for Educators, Researchers and Students http://t.co/1ZbYuqqV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:36:05 +0000", "from_user": "burnside_", "from_user_id": 435089792, "from_user_id_str": "435089792", "from_user_name": " Michael Burnside", "geo": null, "id": 147369350293225470, "id_str": "147369350293225472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1689330013/11_12_12_MichaelBurnside_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689330013/11_12_12_MichaelBurnside_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Joyent Announces Academic Program for Educators, Researchers and Students - MarketWatch (press release) http://t.co/bRsYXsMi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:35:41 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 147369249114042370, "id_str": "147369249114042368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "Monitoring Firm Circonus Joins Joyent Cloud Ecoystem http://t.co/qxKMf17U", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:33:27 +0000", "from_user": "ritacoburn", "from_user_id": 309941508, "from_user_id_str": "309941508", "from_user_name": "rita coburn", "geo": null, "id": 147368687328956400, "id_str": "147368687328956416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1380927615/coburn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1380927615/coburn_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Joyent Announces Academic Program for Educators, Researchers and Students: Grants and funding are available in t... http://t.co/Nh6SaR0h", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:32:00 +0000", "from_user": "CompTechReview", "from_user_id": 126449296, "from_user_id_str": "126449296", "from_user_name": "CompTechReview", "geo": null, "id": 147368320218308600, "id_str": "147368320218308608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1477273423/WestWorldLogoBug-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1477273423/WestWorldLogoBug-1_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "@Joyent debuts #academic program for educators, researchers and students #virtualization #cloud http://t.co/beRnsxvo", "to_user": "joyent", "to_user_id": 666523, "to_user_id_str": "666523", "to_user_name": "Joyent"}, +{"created_at": "Thu, 15 Dec 2011 17:15:15 +0000", "from_user": "peteryorke", "from_user_id": 14136726, "from_user_id_str": "14136726", "from_user_name": "Peter Yorke", "geo": null, "id": 147364108373725200, "id_str": "147364108373725185", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/51727717/peter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/51727717/peter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jasonh: Joyent's Academic Program also includes wholesale and reseller access to the Joyent Public Cloud http://t.co/zPHg1bU7 & http://t.co/CG8iPkza", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:11:19 +0000", "from_user": "workinthecloud", "from_user_id": 38276261, "from_user_id_str": "38276261", "from_user_name": "WorkInTheCloud", "geo": null, "id": 147363117712678900, "id_str": "147363117712678912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/203756131/clouds-28_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/203756131/clouds-28_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Cloud Joyent Announces Academic Program for Educators, Researchers and Students - MarketWatch (press release): ... http://t.co/B0jchJ1S", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:08:27 +0000", "from_user": "alexr", "from_user_id": 473583, "from_user_id_str": "473583", "from_user_name": "Alex Rosenberg", "geo": null, "id": 147362397059944450, "id_str": "147362397059944449", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/17909762/alexr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/17909762/alexr_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", "text": "Had a great time last night at the @voxer party chatting DTrace with the @joyent crew.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:07:23 +0000", "from_user": "sdtuck", "from_user_id": 52105158, "from_user_id_str": "52105158", "from_user_name": "Steven Tuck", "geo": null, "id": 147362124723798000, "id_str": "147362124723798016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1197460791/steve_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1197460791/steve_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jasonh: Joyent's Academic Program also includes wholesale and reseller access to the Joyent Public Cloud http://t.co/zPHg1bU7 & http://t.co/CG8iPkza", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:06:11 +0000", "from_user": "Gemmbu", "from_user_id": 88842850, "from_user_id_str": "88842850", "from_user_name": "KAMEDAkyosuke", "geo": null, "id": 147361824088653820, "id_str": "147361824088653824", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/530397827/twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/530397827/twitter_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\\u3053\\u306E http \\u30D1\\u30FC\\u30B5\\u30FC\\u4F7F\\u3044\\u3084\\u3059\\u3044\\u3002\\n\\u3053\\u308C\\u3082 node \\u95A2\\u9023\\u304B\\u306A\\uFF1F\\nhttp://t.co/kArq2u38", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:05:59 +0000", "from_user": "lyas777", "from_user_id": 68572924, "from_user_id_str": "68572924", "from_user_name": "LYAS ", "geo": null, "id": 147361775191470080, "id_str": "147361775191470081", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1536824842/lyas_xD_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1536824842/lyas_xD_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @mejorandola: Nos han preguntado mucho sobre Node.js en Windows. Googleen como instalarlo. http://t.co/ZJalat5i #mejorandola /via @cvander", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 16:44:54 +0000", "from_user": "lsinger", "from_user_id": 1320161, "from_user_id_str": "1320161", "from_user_name": "Leif Singer", "geo": null, "id": 147356468297990140, "id_str": "147356468297990144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1638614427/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638614427/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Wonderful! @C9Support: @lsinger You can already deploy to Heroku and Joyent straight from Cloud9.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 16:43:17 +0000", "from_user": "hfcci", "from_user_id": 88012852, "from_user_id_str": "88012852", "from_user_name": "HFCC Institute", "geo": null, "id": 147356062599745540, "id_str": "147356062599745536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/520051496/HFCCI_LOGO1_small_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/520051496/HFCCI_LOGO1_small_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Joyent Announces Academic Program for Educators, Researchers and Students - MarketWatch (press release) http://t.co/eOYYgjy8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 16:36:28 +0000", "from_user": "lsrmarketing", "from_user_id": 266751256, "from_user_id_str": "266751256", "from_user_name": "LSR MarketingService", "geo": null, "id": 147354346093420540, "id_str": "147354346093420545", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1326627551/logoTruePeque_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1326627551/logoTruePeque_normal.png", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "RT @cvander: Nos han preguntado mucho sobre Node.js en Windows. Googleen como instalarlo. http://t.co/sjDQcfqJ #mejorandola", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 16:36:09 +0000", "from_user": "Cloud_Geek", "from_user_id": 198159985, "from_user_id_str": "198159985", "from_user_name": "CloudGeek", "geo": null, "id": 147354264879120400, "id_str": "147354264879120384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1335104403/Picture_001-a4t-_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335104403/Picture_001-a4t-_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Joyent Announces Academic Program for Educators, Researchers and Students - MarketWatch (press release) http://t.co/oefyTG59", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 16:32:17 +0000", "from_user": "CloudNotes", "from_user_id": 14186870, "from_user_id_str": "14186870", "from_user_name": "Scott Cameron", "geo": null, "id": 147353291746066430, "id_str": "147353291746066432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1387207941/CloudIcon_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1387207941/CloudIcon_normal.PNG", "source": "<a href="http://pluggio.com" rel="nofollow">Pluggio</a>", "text": "Joyent Announces Academic Program for Educators, Researchers and Students - MarketWatch (press release) http://t.co/tf9se6vk | (News)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 16:21:51 +0000", "from_user": "HowieDragon", "from_user_id": 184442035, "from_user_id_str": "184442035", "from_user_name": "Howie", "geo": null, "id": 147350667143557120, "id_str": "147350667143557120", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1412192196/IMG_2380_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1412192196/IMG_2380_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejschina: Wordpress & Joyent,\\nhttp://t.co/xakPMGB7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 16:09:43 +0000", "from_user": "mja", "from_user_id": 777121, "from_user_id_str": "777121", "from_user_name": "Mark James Adams", "geo": null, "id": 147347613430198270, "id_str": "147347613430198272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1523270187/portrait_by_dorita_widescreen_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1523270187/portrait_by_dorita_widescreen_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @jasonh: Joyent's Academic program: grants + free and commercially unrestricted software smartdatacenter, smartOS, node.js http://t.co/zPHg1bU7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Thu, 15 Dec 2011 15:57:12 +0000", "from_user": "AnnaRibeiro9", "from_user_id": 148702523, "from_user_id_str": "148702523", "from_user_name": "Anna Ribeiro", "geo": null, "id": 147344465256923140, "id_str": "147344465256923136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@Joyent debuts #academic program for educators, researchers and students #virtualization #cloud http://t.co/JPE67G2t", "to_user": "joyent", "to_user_id": 666523, "to_user_id_str": "666523", "to_user_name": "Joyent"}, +{"created_at": "Thu, 15 Dec 2011 15:56:49 +0000", "from_user": "C9Support", "from_user_id": 243576882, "from_user_id_str": "243576882", "from_user_name": "Cloud9 IDE Support", "geo": null, "id": 147344369937158140, "id_str": "147344369937158145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1553034167/support-avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553034167/support-avatar_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@lsinger You can already deploy to Heroku and Joyent straight from Cloud9.", "to_user": "lsinger", "to_user_id": 1320161, "to_user_id_str": "1320161", "to_user_name": "Leif Singer", "in_reply_to_status_id": 147343836681736200, "in_reply_to_status_id_str": "147343836681736194"}, +{"created_at": "Thu, 15 Dec 2011 15:38:21 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 147339721138380800, "id_str": "147339721138380800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "Joyent Announces Academic Program for Educators, Researchers and Students - MarketWatch (press release) http://t.co/Y6hixhAm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:36:18 +0000", "from_user": "_CaseyJones_", "from_user_id": 143989907, "from_user_id_str": "143989907", "from_user_name": "Casey Jones", "geo": null, "id": 147339204802785280, "id_str": "147339204802785281", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681053021/newfacepicsmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681053021/newfacepicsmall_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@floridastate RT @jasonh: Joyent's Academic program: grants + free and commercially unrestricted software.. http://t.co/9doxtBCJ", "to_user": "floridastate", "to_user_id": 154533838, "to_user_id_str": "154533838", "to_user_name": "Florida State"}, +{"created_at": "Thu, 15 Dec 2011 15:34:43 +0000", "from_user": "cwebber", "from_user_id": 14268006, "from_user_id_str": "14268006", "from_user_name": "Christopher Webber", "geo": null, "id": 147338804250939400, "id_str": "147338804250939392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1358012829/cwebber_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1358012829/cwebber_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "@solarce I thought I clicked the follow button the last time he and I talked. But yeah @jasonh and @joyent are rocking things.", "to_user": "solarce", "to_user_id": 822284, "to_user_id_str": "822284", "to_user_name": "Brandon Burton", "in_reply_to_status_id": 147337992573423600, "in_reply_to_status_id_str": "147337992573423617"}, +{"created_at": "Thu, 15 Dec 2011 15:34:40 +0000", "from_user": "garcosc", "from_user_id": 41400912, "from_user_id_str": "41400912", "from_user_name": "Andres Arcos", "geo": null, "id": 147338793861644300, "id_str": "147338793861644288", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1674365785/andres09_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674365785/andres09_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @saidGeeK: Para los que quieren seguir el tutorial de hoy de nodejs en #mejorandola y tienen windows asi se instala http://t.co/WGGmqNFh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:34:22 +0000", "from_user": "HowieDragon", "from_user_id": 184442035, "from_user_id_str": "184442035", "from_user_name": "Howie", "geo": null, "id": 147338717525319680, "id_str": "147338717525319680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1412192196/IMG_2380_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1412192196/IMG_2380_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jasonh: Joyent's Academic Program also includes wholesale and reseller access to the Joyent Public Cloud http://t.co/zPHg1bU7 & http://t.co/CG8iPkza", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:30:58 +0000", "from_user": "solarce", "from_user_id": 822284, "from_user_id_str": "822284", "from_user_name": "Brandon Burton", "geo": null, "id": 147337862977830900, "id_str": "147337862977830912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1634787783/4BC300D9-46BC-4D1C-8584-9015DB5BC145_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634787783/4BC300D9-46BC-4D1C-8584-9015DB5BC145_normal", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @jasonh: Joyent's Academic program: grants + free and commercially unrestricted software smartdatacenter, smartOS, node.js http://t.co/zPHg1bU7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:30:09 +0000", "from_user": "DavinaTran", "from_user_id": 415115645, "from_user_id_str": "415115645", "from_user_name": "Davina Tran", "geo": null, "id": 147337658065109000, "id_str": "147337658065108992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1644307712/11_11_17_Davina_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644307712/11_11_17_Davina_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Joyent Announces Academic Program for Educators, Researchers and Students - MarketWatch (press release) http://t.co/bPWzNAFw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:27:47 +0000", "from_user": "davidpaulyoung", "from_user_id": 10637, "from_user_id_str": "10637", "from_user_name": "David Young", "geo": null, "id": 147337060066394100, "id_str": "147337060066394112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/14395312/icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/14395312/icon_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @jasonh: Joyent's Academic program: grants + free and commercially unrestricted software smartdatacenter, smartOS, node.js http://t.co/zPHg1bU7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:27:21 +0000", "from_user": "davidpaulyoung", "from_user_id": 10637, "from_user_id_str": "10637", "from_user_name": "David Young", "geo": null, "id": 147336950557327360, "id_str": "147336950557327360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/14395312/icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/14395312/icon_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jasonh: Joyent's Academic Program also includes wholesale and reseller access to the Joyent Public Cloud http://t.co/zPHg1bU7 & http://t.co/CG8iPkza", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:27:19 +0000", "from_user": "jbueza", "from_user_id": 141423083, "from_user_id_str": "141423083", "from_user_name": "Jaime Bueza", "geo": null, "id": 147336943934504960, "id_str": "147336943934504961", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @jasonh: Joyent's Academic program: grants + free and commercially unrestricted software smartdatacenter, smartOS, node.js http://t.co/zPHg1bU7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:25:32 +0000", "from_user": "dps231", "from_user_id": 181139583, "from_user_id_str": "181139583", "from_user_name": "David Poza", "geo": null, "id": 147336496972693500, "id_str": "147336496972693507", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1228230905/33888312621641852473123_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1228230905/33888312621641852473123_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Es bueno tener a mano estos dos post:\\nhttp://t.co/kFNpl54N y \\nhttp://t.co/8RsxnRjY cuando el utf8 da por culo xD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:24:53 +0000", "from_user": "saidGeeK", "from_user_id": 87434630, "from_user_id_str": "87434630", "from_user_name": "Andr\\u00E9s Espinace", "geo": null, "id": 147336330303647740, "id_str": "147336330303647745", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693139168/WP_000131_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693139168/WP_000131_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Para los que quieren seguir el tutorial de hoy de nodejs en #mejorandola y tienen windows asi se instala http://t.co/WGGmqNFh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:24:17 +0000", "from_user": "id_elias", "from_user_id": 316643252, "from_user_id_str": "316643252", "from_user_name": "Elias", "geo": null, "id": 147336180701216770, "id_str": "147336180701216768", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1611298141/one_lib_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611298141/one_lib_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @mejorandola: Nos han preguntado mucho sobre Node.js en Windows. Googleen como instalarlo. http://t.co/ZJalat5i #mejorandola /via @cvander", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:23:51 +0000", "from_user": "jagalzap", "from_user_id": 404873131, "from_user_id_str": "404873131", "from_user_name": "julio gallego", "geo": null, "id": 147336072261677060, "id_str": "147336072261677056", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1624632731/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624632731/image_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "RT @cvander: Nos han preguntado mucho sobre Node.js en Windows. Googleen como instalarlo. http://t.co/sjDQcfqJ #mejorandola", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:23:23 +0000", "from_user": "hermanjunge", "from_user_id": 270723897, "from_user_id_str": "270723897", "from_user_name": "Herman A. Junge", "geo": null, "id": 147335954263314430, "id_str": "147335954263314433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680398755/20111208.Auto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680398755/20111208.Auto_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@jasonh Bring us the joy of #joyent clouds to Latam! (Local clouds to avoid international connections)", "to_user": "jasonh", "to_user_id": 10638, "to_user_id_str": "10638", "to_user_name": "Jason Hoffman"}, +{"created_at": "Thu, 15 Dec 2011 15:22:53 +0000", "from_user": "Aether7", "from_user_id": 101473312, "from_user_id_str": "101473312", "from_user_name": "Sebastian Real", "geo": null, "id": 147335826899079170, "id_str": "147335826899079170", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/607423661/xss_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/607423661/xss_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @mejorandola: Nos han preguntado mucho sobre Node.js en Windows. Googleen como instalarlo. http://t.co/ZJalat5i #mejorandola /via @cvander", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:22:26 +0000", "from_user": "saidGeeK", "from_user_id": 87434630, "from_user_id_str": "87434630", "from_user_name": "Andr\\u00E9s Espinace", "geo": null, "id": 147335714856636400, "id_str": "147335714856636416", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693139168/WP_000131_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693139168/WP_000131_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @mejorandola: Nos han preguntado mucho sobre Node.js en Windows. Googleen como instalarlo. http://t.co/ZJalat5i #mejorandola /via @cvander", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:21:37 +0000", "from_user": "edsai", "from_user_id": 5739392, "from_user_id_str": "5739392", "from_user_name": "Ed Saipetch", "geo": null, "id": 147335511084777470, "id_str": "147335511084777474", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1151558798/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1151558798/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jasonh: Joyent's Academic Program also includes wholesale and reseller access to the Joyent Public Cloud http://t.co/zPHg1bU7 & http://t.co/CG8iPkza", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:21:32 +0000", "from_user": "jrubinovitz", "from_user_id": 332196424, "from_user_id_str": "332196424", "from_user_name": "Jennifer Rubinovitz", "geo": null, "id": 147335489547022340, "id_str": "147335489547022336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1433700326/linkedin_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1433700326/linkedin_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jasonh: Joyent's Academic Program also includes wholesale and reseller access to the Joyent Public Cloud http://t.co/zPHg1bU7 & http://t.co/CG8iPkza", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:20:52 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 147335321930051600, "id_str": "147335321930051584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Joyent's Academic Program also includes wholesale and reseller access to the Joyent Public Cloud http://t.co/zPHg1bU7 & http://t.co/CG8iPkza", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:20:01 +0000", "from_user": "adrahon", "from_user_id": 42009958, "from_user_id_str": "42009958", "from_user_name": "Alex Drahon", "geo": null, "id": 147335108280590340, "id_str": "147335108280590336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1667481062/ada_mont_febe_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667481062/ada_mont_febe_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @jasonh: Joyent's Academic program: grants + free and commercially unrestricted software smartdatacenter, smartOS, node.js http://t.co/zPHg1bU7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:19:45 +0000", "from_user": "mejorandola", "from_user_id": 64863875, "from_user_id_str": "64863875", "from_user_name": "Mejorando la web", "geo": null, "id": 147335041188511740, "id_str": "147335041188511744", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1452359411/mlw.io-isotipo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1452359411/mlw.io-isotipo_normal.png", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "Nos han preguntado mucho sobre Node.js en Windows. Googleen como instalarlo. http://t.co/ZJalat5i #mejorandola /via @cvander", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:15:53 +0000", "from_user": "mthiele10", "from_user_id": 29532294, "from_user_id_str": "29532294", "from_user_name": "Mark Thiele", "geo": null, "id": 147334065303982080, "id_str": "147334065303982080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1624127759/Scribe-Photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624127759/Scribe-Photo_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @jasonh: Joyent's Academic program: grants + free and commercially unrestricted software smartdatacenter, smartOS, node.js http://t.co/zPHg1bU7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:15:07 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 147333875662729200, "id_str": "147333875662729216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Joyent's Academic program: grants + free and commercially unrestricted software smartdatacenter, smartOS, node.js http://t.co/zPHg1bU7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:13:45 +0000", "from_user": "mejorandola", "from_user_id": 64863875, "from_user_id_str": "64863875", "from_user_name": "Mejorando la web", "geo": null, "id": 147333529867530240, "id_str": "147333529867530240", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1452359411/mlw.io-isotipo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1452359411/mlw.io-isotipo_normal.png", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "RT @cvander: Nos han preguntado mucho sobre Node.js en Windows. Googleen como instalarlo. http://t.co/sjDQcfqJ #mejorandola", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:13:31 +0000", "from_user": "andik4education", "from_user_id": 409280300, "from_user_id_str": "409280300", "from_user_name": "ANDIK HADI MUSTIKA", "geo": null, "id": 147333472816607230, "id_str": "147333472816607232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1632266520/andik_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632266520/andik_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Joyent Announces Academic Program for Educators, Researchers and Students: SAN FRANCISCO, CA-- - Joyent, the glo... http://t.co/HygFa4XG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:11:59 +0000", "from_user": "andik4education", "from_user_id": 409280300, "from_user_id_str": "409280300", "from_user_name": "ANDIK HADI MUSTIKA", "geo": null, "id": 147333086819000320, "id_str": "147333086819000320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1632266520/andik_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632266520/andik_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Joyent Announces Academic Program for Educators, Researchers and Students - http://t.co/nKLdao2S: Joyent, the glo... http://t.co/lhxnDBcI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:11:05 +0000", "from_user": "cvander", "from_user_id": 817789, "from_user_id_str": "817789", "from_user_name": "Christian Van Der H", "geo": null, "id": 147332860381118460, "id_str": "147332860381118464", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1559412162/cevy_lengua_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1559412162/cevy_lengua_normal.png", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "Nos han preguntado mucho sobre Node.js en Windows. Googleen como instalarlo. http://t.co/sjDQcfqJ #mejorandola", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:05:06 +0000", "from_user": "EDL_Host", "from_user_id": 55804415, "from_user_id_str": "55804415", "from_user_name": "Steve", "geo": null, "id": 147331352969228300, "id_str": "147331352969228289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/687699400/EDL_Logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/687699400/EDL_Logo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Joyent Announces Academic Program for Educators, Researchers and Students: SAN FRANCISCO, CA-- - Joyent, the glo... http://t.co/7TB7Y6Xu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:01:36 +0000", "from_user": "BigDataClouds", "from_user_id": 401391920, "from_user_id_str": "401391920", "from_user_name": "Big Data Clouds", "geo": null, "id": 147330472295407600, "id_str": "147330472295407616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1613841395/CloudBigData-300x239-resized-600_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1613841395/CloudBigData-300x239-resized-600_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Joyent Announces Academic Program for Educators, Researchers and Students - http://t.co/VQyNtp4l:... http://t.co/c7qTtRAc #bigdata #cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 14:13:18 +0000", "from_user": "hermanjunge", "from_user_id": 270723897, "from_user_id_str": "270723897", "from_user_name": "Herman A. Junge", "geo": null, "id": 147318315155603460, "id_str": "147318315155603456", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680398755/20111208.Auto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680398755/20111208.Auto_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@ismael_diaz Tai metido con heroku? Buena. Has trabajado con joyent cloud por casua?", "to_user": "ismael_diaz", "to_user_id": 101507558, "to_user_id_str": "101507558", "to_user_name": "Ismael Diaz", "in_reply_to_status_id": 147304720971735040, "in_reply_to_status_id_str": "147304720971735040"}, +{"created_at": "Thu, 15 Dec 2011 13:47:54 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 147311924865007600, "id_str": "147311924865007616", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Wordpress & Joyent,\\nhttp://t.co/xakPMGB7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 11:11:23 +0000", "from_user": "zbb_42", "from_user_id": 191261596, "from_user_id_str": "191261596", "from_user_name": "zbb/42", "geo": null, "id": 147272534981746700, "id_str": "147272534981746688", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694718839/avatar5_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694718839/avatar5_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "@weijianwen \\u770B\\u4E86\\u4F60\\u7684ppt\\u3002FYI\\uFF0C\\u8BB0\\u5F97Joyent\\u7684\\u535A\\u5BA2\\u63D0\\u5230\\u4ED6\\u4EEC\\u7684SmartMachine\\u4E5F\\u652F\\u6301MongoDB\\uFF0C\\u4E0D\\u8FC7\\u4ED6\\u4EEC\\u7684Iaas\\u5E73\\u53F0\\u4E0D\\u662F\\u5F00\\u6E90\\u7684\\u3002 http://t.co/Z5u2vEff", "to_user": "weijianwen", "to_user_id": 50351950, "to_user_id_str": "50351950", "to_user_name": "\\u5EFA\\u6587", "in_reply_to_status_id": 147212252523671550, "in_reply_to_status_id_str": "147212252523671552"}, +{"created_at": "Thu, 15 Dec 2011 10:30:45 +0000", "from_user": "greycroft_jobs", "from_user_id": 36902115, "from_user_id_str": "36902115", "from_user_name": "Greycroft Jobs", "geo": null, "id": 147262309369266180, "id_str": "147262309369266176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://www.ventureloop.com/" rel="nofollow">ventureloop</a>", "text": "ISV EcoSystem Manager ( Joyent ) San Francisco ,CA ,US http://t.co/k9EPdTpl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 10:29:59 +0000", "from_user": "greycroft_jobs", "from_user_id": 36902115, "from_user_id_str": "36902115", "from_user_name": "Greycroft Jobs", "geo": null, "id": 147262119002378240, "id_str": "147262119002378240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://www.ventureloop.com/" rel="nofollow">ventureloop</a>", "text": "Product Marketing Manager \\u2013 Open Source Initiatives ( Joyent ) San Francisco ,CA ,US http://t.co/TVSJ9WxW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 08:11:53 +0000", "from_user": "tobias", "from_user_id": 5730, "from_user_id_str": "5730", "from_user_name": "Tobias Nygren", "geo": null, "id": 147227365200773120, "id_str": "147227365200773120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/100398183/tobias_avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/100398183/tobias_avatar_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Hyperdb ftw. RT @peteryorke: Scaling WordPress in the Joyent Cloud Part 3 - http://t.co/gHvmDTB8 @joyent @wordpress", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 07:35:01 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 147218085298962430, "id_str": "147218085298962432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @sdtuck: Scaling WordPress on Joyent Cloud: Part Three http://t.co/9KzlZ8hl via @wordpressdotcom", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 07:24:40 +0000", "from_user": "sdtuck", "from_user_id": 52105158, "from_user_id_str": "52105158", "from_user_name": "Steven Tuck", "geo": null, "id": 147215483026948100, "id_str": "147215483026948097", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1197460791/steve_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1197460791/steve_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Scaling WordPress on Joyent Cloud: Part Three http://t.co/9KzlZ8hl via @wordpressdotcom", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 06:41:59 +0000", "from_user": "mgobi_php", "from_user_id": 73093978, "from_user_id_str": "73093978", "from_user_name": "Gobinath.M", "geo": null, "id": 147204739082354700, "id_str": "147204739082354688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1208160321/eyes_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1208160321/eyes_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: MongoDB: With Adoption Comes... More Adoption http://t.co/vPSJfjAD #MongoDB #OpenShift #RedHat #Joyent #Jaspersoft", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 06:21:30 +0000", "from_user": "Narkir", "from_user_id": 62498975, "from_user_id_str": "62498975", "from_user_name": "Narkir", "geo": null, "id": 147199585176141820, "id_str": "147199585176141824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1114596331/27438_825242341_5105_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1114596331/27438_825242341_5105_q_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @kraih: Interesting that #nodejs will never support fork. http://t.co/m59QSEi5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 06:02:07 +0000", "from_user": "karanbansalkr", "from_user_id": 436614382, "from_user_id_str": "436614382", "from_user_name": "karan bansal", "geo": null, "id": 147194705535442940, "id_str": "147194705535442945", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": null, "source": "<a href="http://twitter.com/">web</a>", "text": "discuss.joyent\\nhttp://t.co/NrY2cXeR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 04:38:11 +0000", "from_user": "am0c", "from_user_id": 45750158, "from_user_id_str": "45750158", "from_user_name": "Hojung Youn", "geo": null, "id": 147173584664662000, "id_str": "147173584664662016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1247064585/am0c_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1247064585/am0c_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @kraih: Interesting that #nodejs will never support fork. http://t.co/m59QSEi5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 04:29:37 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147171426946920450, "id_str": "147171426946920448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @NodeSummit: Agenda for Node Summit is up at http://t.co/Tg3Cyc8f", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 03:54:30 +0000", "from_user": "pierriko", "from_user_id": 179879742, "from_user_id_str": "179879742", "from_user_name": "Pierrick", "geo": null, "id": 147162590039126000, "id_str": "147162590039126017", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1381144434/dec09bw_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1381144434/dec09bw_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Tests running on @travisci http://t.co/sUwjYETR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 03:46:15 +0000", "from_user": "jasonmcleod", "from_user_id": 12221692, "from_user_id_str": "12221692", "from_user_name": "Jason McLeod", "geo": null, "id": 147160515246948350, "id_str": "147160515246948353", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1266928039/eightbit-6b87a3a4-c2bf-4803-9ec5-ce9cd5314996_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266928039/eightbit-6b87a3a4-c2bf-4803-9ec5-ce9cd5314996_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@flukeout @joyent gave it another shot, failed, and put it down. app still needs work locally. I'll end up trying again soon. keep u updated", "to_user": "flukeout", "to_user_id": 19351055, "to_user_id_str": "19351055", "to_user_name": "Luke Pacholski", "in_reply_to_status_id": 146707269785092100, "in_reply_to_status_id_str": "146707269785092096"}, +{"created_at": "Thu, 15 Dec 2011 03:46:04 +0000", "from_user": "jmarjie", "from_user_id": 269636175, "from_user_id_str": "269636175", "from_user_name": "James Marjie ", "geo": null, "id": 147160470426619900, "id_str": "147160470426619905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1539385827/Me_suit_cropped_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1539385827/Me_suit_cropped_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @kraih: Interesting that #nodejs will never support fork. http://t.co/m59QSEi5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 03:40:27 +0000", "from_user": "kraih", "from_user_id": 17099459, "from_user_id_str": "17099459", "from_user_name": "Sebastian Riedel", "geo": null, "id": 147159054895165440, "id_str": "147159054895165441", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1202926094/ef95f126468b7fb56be70b801c87ea7d_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1202926094/ef95f126468b7fb56be70b801c87ea7d_normal.jpeg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Interesting that #nodejs will never support fork. http://t.co/m59QSEi5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 03:39:21 +0000", "from_user": "myalltop_paul", "from_user_id": 216075147, "from_user_id_str": "216075147", "from_user_name": "MyAllTop - Cloud", "geo": null, "id": 147158777651662850, "id_str": "147158777651662849", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Scaling WordPress on Joyent Cloud: Part Three http://t.co/sKiPQlA8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 03:13:15 +0000", "from_user": "kame355", "from_user_id": 14720834, "from_user_id_str": "14720834", "from_user_name": "[KaME]", "geo": null, "id": 147152211158380540, "id_str": "147152211158380544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/329886591/SP090606_R0010045_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/329886591/SP090606_R0010045_normal.jpg", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "Scaling WordPress on Joyent Cloud: Part Three http://t.co/HS3YJfMY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 02:26:09 +0000", "from_user": "desmax74", "from_user_id": 27959029, "from_user_id_str": "27959029", "from_user_name": "Massimiliano Dess\\u00EC", "geo": null, "id": 147140355370917900, "id_str": "147140355370917888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1258402323/27d5e57f-3f85-4dce-bfcb-91b6b36765b4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1258402323/27d5e57f-3f85-4dce-bfcb-91b6b36765b4_normal.png", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: \\u267B MongoDB: With Adoption Comes... More Adoption http://t.co/vPSJfjAD #MongoDB #OpenShift #RedHat #Joyent #Jaspersoft", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 02:09:26 +0000", "from_user": "cwestin63", "from_user_id": 162173507, "from_user_id_str": "162173507", "from_user_name": "Chris Westin", "geo": null, "id": 147136149427720200, "id_str": "147136149427720192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1125328797/headshot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1125328797/headshot_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: \\u267B MongoDB: With Adoption Comes... More Adoption http://t.co/vPSJfjAD #MongoDB #OpenShift #RedHat #Joyent #Jaspersoft", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 01:46:12 +0000", "from_user": "peteryorke", "from_user_id": 14136726, "from_user_id_str": "14136726", "from_user_name": "Peter Yorke", "geo": null, "id": 147130302668611600, "id_str": "147130302668611584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/51727717/peter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/51727717/peter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Agenda for Node Summit is up at http://t.co/xJHZXPUR @NodeSummit @joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 01:34:29 +0000", "from_user": "kfalter", "from_user_id": 253578873, "from_user_id_str": "253578873", "from_user_name": "Kelsey Falter", "geo": null, "id": 147127354190348300, "id_str": "147127354190348288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690576937/photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690576937/photo_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: \\u267B MongoDB: With Adoption Comes... More Adoption http://t.co/vPSJfjAD #MongoDB #OpenShift #RedHat #Joyent #Jaspersoft", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 01:25:41 +0000", "from_user": "forjared", "from_user_id": 14320109, "from_user_id_str": "14320109", "from_user_name": "Jared Rosoff", "geo": null, "id": 147125139669123070, "id_str": "147125139669123072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1038523858/jsr150x150_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1038523858/jsr150x150_normal.png", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: \\u267B MongoDB: With Adoption Comes... More Adoption http://t.co/vPSJfjAD #MongoDB #OpenShift #RedHat #Joyent #Jaspersoft", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 01:24:32 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 147124849880473600, "id_str": "147124849880473602", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: \\u267B MongoDB: With Adoption Comes... More Adoption http://t.co/vPSJfjAD #MongoDB #OpenShift #RedHat #Joyent #Jaspersoft", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 01:21:27 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 147124074588540930, "id_str": "147124074588540928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "\\u267B MongoDB: With Adoption Comes... More Adoption http://t.co/vPSJfjAD #MongoDB #OpenShift #RedHat #Joyent #Jaspersoft", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 01:15:05 +0000", "from_user": "denizrende", "from_user_id": 160784347, "from_user_id_str": "160784347", "from_user_name": "Deniz Rende", "geo": null, "id": 147122473622712320, "id_str": "147122473622712320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1372625701/76488_461965532076_552392076_6250115_4305252_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1372625701/76488_461965532076_552392076_6250115_4305252_n_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @bahudinp: Joyent SDC 6.5.2 has been live in Jakarta Indonesia !! thank you", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 00:42:19 +0000", "from_user": "frintujwo2", "from_user_id": 389506603, "from_user_id_str": "389506603", "from_user_name": "Frint Bailey", "geo": null, "id": 147114226975129600, "id_str": "147114226975129601", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1584913276/imagesCAJMAJIG_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584913276/imagesCAJMAJIG_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "mistersugar joyent You can just email us at support [at] joyent [dot] com tooiULCy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 23:45:36 +0000", "from_user": "donwb", "from_user_id": 21307435, "from_user_id_str": "21307435", "from_user_name": "Don Browning", "geo": null, "id": 147099951439167500, "id_str": "147099951439167488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1180549025/Profile_Pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1180549025/Profile_Pic_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @indexzero: Do you use forever? Do you want to see if work as expected in node@0.6.x? +1 this #nodejs issue http://t.co/YOlTo947", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 23:18:44 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147093193530417150, "id_str": "147093193530417152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@joyent @sbose78 Hell yeah!!", "to_user": "joyent", "to_user_id": 666523, "to_user_id_str": "666523", "to_user_name": "Joyent", "in_reply_to_status_id": 147092299816513540, "in_reply_to_status_id_str": "147092299816513536"}, +{"created_at": "Wed, 14 Dec 2011 23:18:23 +0000", "from_user": "CloudBlogs", "from_user_id": 86763679, "from_user_id_str": "86763679", "from_user_name": "Cloud Blogs", "geo": null, "id": 147093105869455360, "id_str": "147093105869455362", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/527208480/Cloud_Blogs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/527208480/Cloud_Blogs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloud Computing Software Development: Joyent Announces SmartMachine Appliance for MongoDB: SAN FRA... http://t.co/AyHSzGZ0 #cloud #blogs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 23:16:44 +0000", "from_user": "edsai", "from_user_id": 5739392, "from_user_id_str": "5739392", "from_user_name": "Ed Saipetch", "geo": null, "id": 147092689677074430, "id_str": "147092689677074433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1151558798/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1151558798/image_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @peteryorke: Scaling WordPress in the Joyent Cloud Part 3 - http://t.co/xmySQcOx @joyent @wordpress <- nice series.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 23:15:11 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147092299816513540, "id_str": "147092299816513536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@sbose78 @NodeJsCommunity because it was easy to remember? :)", "to_user": "sbose78", "to_user_id": 190726716, "to_user_id_str": "190726716", "to_user_name": "Shoubhik Bose", "in_reply_to_status_id": 146850084708032500, "in_reply_to_status_id_str": "146850084708032512"}, +{"created_at": "Wed, 14 Dec 2011 23:14:50 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147092211014701060, "id_str": "147092211014701056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@GoldFireStudios @nodejs Thanks, James. You coming out to SF any time soon?", "to_user": "GoldFireStudios", "to_user_id": 19056517, "to_user_id_str": "19056517", "to_user_name": "James Simpson", "in_reply_to_status_id": 147045165469671420, "in_reply_to_status_id_str": "147045165469671425"}, +{"created_at": "Wed, 14 Dec 2011 23:14:25 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147092105372778500, "id_str": "147092105372778498", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @peteryorke: Scaling WordPress in the Joyent Cloud Part 3 - http://t.co/yQiBDrN9 @joyent @wordpress", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 23:10:59 +0000", "from_user": "benkross", "from_user_id": 16913955, "from_user_id_str": "16913955", "from_user_name": "Ben Ross", "geo": null, "id": 147091242604441600, "id_str": "147091242604441600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1120515336/Ben_Ad_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1120515336/Ben_Ad_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @indexzero: Do you use forever? Do you want to see if work as expected in node@0.6.x? +1 this #nodejs issue http://t.co/YOlTo947", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 22:42:00 +0000", "from_user": "indexzero", "from_user_id": 13696102, "from_user_id_str": "13696102", "from_user_name": "Charlie Robbins", "geo": null, "id": 147083948219047940, "id_str": "147083948219047936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1179850399/P1000093bw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1179850399/P1000093bw_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@ryah @izs Spoke with @indutny about this issue :: http://t.co/YOlTo947 ... any thoughts on a fix? Lots of +1 :)", "to_user": "ryah", "to_user_id": 18975861, "to_user_id_str": "18975861", "to_user_name": "Ryan Dahl"}, +{"created_at": "Wed, 14 Dec 2011 22:09:24 +0000", "from_user": "pedrogte", "from_user_id": 16401507, "from_user_id_str": "16401507", "from_user_name": "Pedro Teixeira", "geo": null, "id": 147075745359986700, "id_str": "147075745359986688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1591778458/DSC02359-2_copy_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591778458/DSC02359-2_copy_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @indexzero: Do you use forever? Do you want to see if work as expected in node@0.6.x? +1 this #nodejs issue http://t.co/YOlTo947", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 22:05:53 +0000", "from_user": "indexzero", "from_user_id": 13696102, "from_user_id_str": "13696102", "from_user_name": "Charlie Robbins", "geo": null, "id": 147074859304882180, "id_str": "147074859304882176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1179850399/P1000093bw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1179850399/P1000093bw_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Do you use forever? Do you want to see if work as expected in node@0.6.x? +1 this #nodejs issue http://t.co/YOlTo947", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:51:07 +0000", "from_user": "peteryorke", "from_user_id": 14136726, "from_user_id_str": "14136726", "from_user_name": "Peter Yorke", "geo": null, "id": 147071143176712200, "id_str": "147071143176712194", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/51727717/peter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/51727717/peter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Scaling WordPress in the Joyent Cloud Part 3 - http://t.co/yQiBDrN9 @joyent @wordpress", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:38:56 +0000", "from_user": "FuzzYspo0N", "from_user_id": 55639889, "from_user_id_str": "55639889", "from_user_name": "FuzzYspo0N", "geo": null, "id": 147068078264557570, "id_str": "147068078264557568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1224678045/labico_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1224678045/labico_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Thanks Pat. This looks like what I am after. \"@pat_wilson: @FuzzYspo0N Use this: http://t.co/W0n3rXCN + a socket\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:36:34 +0000", "from_user": "pat_wilson", "from_user_id": 30519621, "from_user_id_str": "30519621", "from_user_name": "Pat Wilson", "geo": null, "id": 147067481452847100, "id_str": "147067481452847104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/133793321/pat_icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/133793321/pat_icon_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@FuzzYspo0N Use this: http://t.co/zNjB8uML + a socket", "to_user": "FuzzYspo0N", "to_user_id": 55639889, "to_user_id_str": "55639889", "to_user_name": "FuzzYspo0N", "in_reply_to_status_id": 147066997929279500, "in_reply_to_status_id_str": "147066997929279488"}, +{"created_at": "Wed, 14 Dec 2011 21:19:26 +0000", "from_user": "davidpaulyoung", "from_user_id": 10637, "from_user_id_str": "10637", "from_user_name": "David Young", "geo": null, "id": 147063169750274050, "id_str": "147063169750274048", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/14395312/icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/14395312/icon_normal.jpg", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "I'm at Joyent (345 California St, #2000, San Francisco) http://t.co/IQ0LU7pD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:15:20 +0000", "from_user": "meeech", "from_user_id": 14403212, "from_user_id_str": "14403212", "from_user_name": "meeech", "geo": null, "id": 147062135481045000, "id_str": "147062135481044992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1262448627/first_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1262448627/first_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Doooov: #Google #NodeJS documentation, and you get a link to the v0.4.5 documents. You should be getting this http://t.co/WzeiQ3r4 #PSA /cc @Joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:13:26 +0000", "from_user": "Doooov", "from_user_id": 245190830, "from_user_id_str": "245190830", "from_user_name": "Dov Amihod", "geo": null, "id": 147061658995523600, "id_str": "147061658995523584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1591804482/powder_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591804482/powder_small_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Google #NodeJS documentation, and you get a link to the v0.4.5 documents. You should be getting this http://t.co/WzeiQ3r4 #PSA /cc @Joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:03:25 +0000", "from_user": "sbose78", "from_user_id": 190726716, "from_user_id_str": "190726716", "from_user_name": "Shoubhik Bose", "geo": null, "id": 147059137048608770, "id_str": "147059137048608768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1555136629/313678_10150287343724509_710069508_7509696_1574204_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555136629/313678_10150287343724509_710069508_7509696_1574204_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Configured #joyent and deloyed sample app , Failed to connect to cloud database , tried out @dojo , got stuck at the Editor. Phew ! Long day", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 18:57:52 +0000", "from_user": "DeirdreS", "from_user_id": 625093, "from_user_id_str": "625093", "from_user_name": "Deirdr\\u00E9 Straughan", "geo": null, "id": 147027540802940930, "id_str": "147027540802940928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1273049375/dpink_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273049375/dpink_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @bahudinp: Joyent SDC 6.5.2 has been live in Jakarta Indonesia !! thank you", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 18:02:34 +0000", "from_user": "DeveloperCloud", "from_user_id": 246185105, "from_user_id_str": "246185105", "from_user_name": "CloudComputing Dev", "geo": null, "id": 147013625792565250, "id_str": "147013625792565251", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://www.cloudcomputingdevelopment.net" rel="nofollow">Cloud Computing Software</a>", "text": "#cloud: Joyent Announces SmartMachine Appliance for MongoDB http://t.co/X6hsKpau", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 17:52:06 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147010991996157950, "id_str": "147010991996157952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @jacksonwest: Awarded a new tri bike by @Joyent Endurance Team! Thanks! Can't wait to achieve higher performance through efficient hardware utilization.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 15:43:51 +0000", "from_user": "bahudinp", "from_user_id": 181033153, "from_user_id_str": "181033153", "from_user_name": "Bahudin Panggo", "geo": null, "id": 146978718336811000, "id_str": "146978718336811008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1202329373/231220101113_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1202329373/231220101113_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "Joyent SDC 6.5.2 has been live in Jakarta Indonesia !! thank you", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 15:43:39 +0000", "from_user": "Mondsichter", "from_user_id": 28121179, "from_user_id_str": "28121179", "from_user_name": "Kadir Y\\u00FCcel", "geo": null, "id": 146978665392111600, "id_str": "146978665392111616", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/300042515/karikatur_kadir_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/300042515/karikatur_kadir_normal.gif", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Important #git scenarios http://t.co/iLnNXcZk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 15:42:34 +0000", "from_user": "bahudinp", "from_user_id": 181033153, "from_user_id_str": "181033153", "from_user_name": "Bahudin Panggo", "geo": null, "id": 146978392749785100, "id_str": "146978392749785088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1202329373/231220101113_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1202329373/231220101113_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "Joyent SDC jakarta indonesia has been upgrade to 6.5.2 !! thank you for wiki document", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 15:19:51 +0000", "from_user": "RossC0", "from_user_id": 5549702, "from_user_id_str": "5549702", "from_user_name": "Ross Lawley", "geo": null, "id": 146972676660011000, "id_str": "146972676660011008", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/819741961/Photo2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/819741961/Photo2_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @francescaPasha: MongoDB integration on Joyent, OpenShift and Jaspersoft http://t.co/tfT3n5T2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 15:13:39 +0000", "from_user": "Reenaxlync", "from_user_id": 296669323, "from_user_id_str": "296669323", "from_user_name": "Reena Polcyn", "geo": null, "id": 146971117704331260, "id_str": "146971117704331264", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1349269936/large_012_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1349269936/large_012_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#cloud Monitoring Firm Circonus Joins Joyent Cloud Ecoystem http://t.co/9YFHgbAp ?!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 14:51:08 +0000", "from_user": "francescaPasha", "from_user_id": 207559129, "from_user_id_str": "207559129", "from_user_name": "Francesca Krihely", "geo": null, "id": 146965449672884220, "id_str": "146965449672884224", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1619685254/Screen_shot_2011-11-02_at_8.56.52_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619685254/Screen_shot_2011-11-02_at_8.56.52_PM_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "MongoDB integration on Joyent, OpenShift and Jaspersoft http://t.co/tfT3n5T2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 14:30:51 +0000", "from_user": "openshift", "from_user_id": 17620820, "from_user_id_str": "17620820", "from_user_name": "Red Hat OpenShift", "geo": null, "id": 146960346698100740, "id_str": "146960346698100736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1611111118/RH_Openshift_avatargraphic_option4_8162567_1011_dm_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611111118/RH_Openshift_avatargraphic_option4_8162567_1011_dm_normal.png", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: MongoDB: With Adoption Comes... More Adoption http://t.co/vPSJfjAD #MongoDB #OpenShift #RedHat #Joyent #Jaspersoft", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 14:18:24 +0000", "from_user": "Fabryz", "from_user_id": 1459301, "from_user_id_str": "1459301", "from_user_name": "Fabrizio Codello", "geo": null, "id": 146957212617674750, "id_str": "146957212617674752", "iso_language_code": "eo", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/59421466/meilinga_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/59421466/meilinga_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Joyent: node.js and MongoDB host via MongoLab | MongoLab - MongoDB Hosting http://t.co/IjwbDn2b via @mongolab", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 13:45:10 +0000", "from_user": "dgmike", "from_user_id": 8217242, "from_user_id_str": "8217242", "from_user_name": "Michael Granados", "geo": null, "id": 146948849938862080, "id_str": "146948849938862081", "iso_language_code": "eo", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1490046875/rock-baby.regular_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1490046875/rock-baby.regular_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Joyent: node.js and MongoDB host via MongoLab | MongoLab - MongoDB Hosting http://t.co/wZMJGc1R", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 13:43:01 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 146948307661496320, "id_str": "146948307661496320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @joyent: RT @peteryorke: @joyent named \"innovator\" for 2011! @gartner Introduces: New Magic Quadrant for Public Cloud IaaS...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 13:28:12 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 146944578174464000, "id_str": "146944578174464000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "RT @notmatt: Summary of Joyent Vancouver xmas party: beer beer wine soup wine steak wine wine dessert coffee whisky sleep. Chat throughout. Awesome.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 13:00:58 +0000", "from_user": "zegenvs", "from_user_id": 386573, "from_user_id_str": "386573", "from_user_name": "Fumikazu Fujiwara", "geo": null, "id": 146937726086815740, "id_str": "146937726086815744", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1241948499/ffujiwara_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1241948499/ffujiwara_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "http://t.co/flZsvSvE loop->counters.req_init++; \\u3053\\u3046\\u3044\\u3046\\u306E\\u304C\\u3000process.uvCounters\\u3067\\u898B\\u308C\\u308B\\u306E\\u304B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 12:37:21 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 146931784158941200, "id_str": "146931784158941184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "MongoDB: With Adoption Comes... More Adoption http://t.co/vPSJfjAD #MongoDB #OpenShift #RedHat #Joyent #Jaspersoft", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 09:48:30 +0000", "from_user": "forgetcomputers", "from_user_id": 15758840, "from_user_id_str": "15758840", "from_user_name": "Forget Computers", "geo": null, "id": 146889291266670600, "id_str": "146889291266670592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/316992618/newicon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/316992618/newicon_normal.png", "source": "<a href="http://paper.li" rel="nofollow">Paper.li</a>", "text": "Forget Computers Mac & iOS News is out! http://t.co/jF5cvcPx \\u25B8 Top stories today via @itenquirer @gbeachcio @joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 09:40:41 +0000", "from_user": "notmatt", "from_user_id": 17985156, "from_user_id_str": "17985156", "from_user_name": "Matthew Smillie", "geo": null, "id": 146887323857076220, "id_str": "146887323857076224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1423962855/Photo_11-06-24_14_01_13_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1423962855/Photo_11-06-24_14_01_13_normal.jpeg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "Summary of Joyent Vancouver xmas party: beer beer wine soup wine steak wine wine dessert coffee whisky sleep. Chat throughout. Awesome.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 08:33:25 +0000", "from_user": "Jxck_", "from_user_id": 51442629, "from_user_id_str": "51442629", "from_user_name": "Jxck", "geo": null, "id": 146870395226693630, "id_str": "146870395226693632", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/490975026/Jack_normal.GIF", "profile_image_url_https": "https://si0.twimg.com/profile_images/490975026/Jack_normal.GIF", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "joyent tom jsconf2011 multi tire Node Architecture #nodejs_jp / \\u201CMulti-tiered Node Architectures - JSConf 2011\\u201D http://t.co/qcZudLcT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 07:36:45 +0000", "from_user": "jalbertopaz", "from_user_id": 43298490, "from_user_id_str": "43298490", "from_user_name": "Alberto Paz Jimenez", "geo": null, "id": 146856136061104130, "id_str": "146856136061104128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/340171708/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/340171708/twitterProfilePhoto_normal.jpg", "source": "<a href="http://karmacracy.com" rel="nofollow">Karmacracy</a>", "text": "Projects, Applications, and Companies Using node.js - http://t.co/KXYmweBi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 07:12:43 +0000", "from_user": "sbose78", "from_user_id": 190726716, "from_user_id_str": "190726716", "from_user_name": "Shoubhik Bose", "geo": null, "id": 146850084708032500, "id_str": "146850084708032512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1555136629/313678_10150287343724509_710069508_7509696_1574204_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555136629/313678_10150287343724509_710069508_7509696_1574204_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Deployed \"hello world\" @NodeJsCommunity #nodejs app \\nhttp://t.co/oHhQszSD Nice work @joyent ! why did you choose \" \"no.de\" btw?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 06:04:24 +0000", "from_user": "jacksonwest", "from_user_id": 3615, "from_user_id_str": "3615", "from_user_name": "Jackson West", "geo": null, "id": 146832892633423870, "id_str": "146832892633423872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1479257964/yournewprofilepicturesrsly_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1479257964/yournewprofilepicturesrsly_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Awarded a new tri bike by @Joyent Endurance Team! Thanks! Can't wait to achieve higher performance through efficient hardware utilization.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Wed, 14 Dec 2011 05:04:59 +0000", "from_user": "evettqexf3", "from_user_id": 388361975, "from_user_id_str": "388361975", "from_user_name": "Evett Jackman", "geo": null, "id": 146817939004342270, "id_str": "146817939004342272", "iso_language_code": "hu", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1581819426/f_42_w_0005_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1581819426/f_42_w_0005_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@xbabyelvisx http://t.co/Ufw3jqrd", "to_user": "xbabyelvisx", "to_user_id": 220156843, "to_user_id_str": "220156843", "to_user_name": "Emma Clark", "in_reply_to_status_id": 146711217354981380, "in_reply_to_status_id_str": "146711217354981377"}, +{"created_at": "Wed, 14 Dec 2011 04:47:08 +0000", "from_user": "kimdogfoot", "from_user_id": 21736041, "from_user_id_str": "21736041", "from_user_name": "\\uAE40\\uAC1C\\uBC1C", "geo": null, "id": 146813448053985280, "id_str": "146813448053985280", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1645518311/profle00_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645518311/profle00_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "\\uAC80\\uC0C9\\uC5D0 \\uC900\\uD55C \\uACB0\\uACFC\\uBB3C\\uC778\\uAC00. \\uC560\\uB4DC\\uC13C\\uC2A4 \\uAD11\\uACE0\\uC5D0 \\uC5BC\\uB9C8\\uC804 \\uBD80\\uD130 Joyent \\uAC00 \\uC5C4\\uCCAD\\uB098\\uAC8C \\uB178\\uCD9C\\uB418\\uB294\\uAD6C\\uB098.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 04:45:51 +0000", "from_user": "evettqexf3", "from_user_id": 388361975, "from_user_id_str": "388361975", "from_user_name": "Evett Jackman", "geo": null, "id": 146813125663006720, "id_str": "146813125663006720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1581819426/f_42_w_0005_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1581819426/f_42_w_0005_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Icecube870 http://t.co/Ufw3jqrd", "to_user": "Icecube870", "to_user_id": 383040857, "to_user_id_str": "383040857", "to_user_name": "Charles Ullrey ", "in_reply_to_status_id": 146711326234914800, "in_reply_to_status_id_str": "146711326234914817"}, +{"created_at": "Wed, 14 Dec 2011 04:37:24 +0000", "from_user": "evettqexf3", "from_user_id": 388361975, "from_user_id_str": "388361975", "from_user_name": "Evett Jackman", "geo": null, "id": 146811001050906620, "id_str": "146811001050906625", "iso_language_code": "is", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1581819426/f_42_w_0005_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1581819426/f_42_w_0005_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@hausofggaga http://t.co/Ufw3jqrd", "to_user": "hausofggaga", "to_user_id": 177963354, "to_user_id_str": "177963354", "to_user_name": "Angelina Joanne", "in_reply_to_status_id": 146711338243211260, "in_reply_to_status_id_str": "146711338243211264"}, +{"created_at": "Wed, 14 Dec 2011 04:29:00 +0000", "from_user": "evettqexf3", "from_user_id": 388361975, "from_user_id_str": "388361975", "from_user_name": "Evett Jackman", "geo": null, "id": 146808884294721540, "id_str": "146808884294721537", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1581819426/f_42_w_0005_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1581819426/f_42_w_0005_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@beelbash http://t.co/Ufw3jqrd", "to_user": "beelbash", "to_user_id": 341338677, "to_user_id_str": "341338677", "to_user_name": "Bilkisu Bashir", "in_reply_to_status_id": 146711151533752320, "in_reply_to_status_id_str": "146711151533752320"}, +{"created_at": "Wed, 14 Dec 2011 04:20:57 +0000", "from_user": "evettqexf3", "from_user_id": 388361975, "from_user_id_str": "388361975", "from_user_name": "Evett Jackman", "geo": null, "id": 146806858936623100, "id_str": "146806858936623104", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1581819426/f_42_w_0005_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1581819426/f_42_w_0005_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@leesm712 http://t.co/Ufw3jqrd", "to_user": "leesm712", "to_user_id": 153070961, "to_user_id_str": "153070961", "to_user_name": "Seung Min Lee", "in_reply_to_status_id": 146660927897468930, "in_reply_to_status_id_str": "146660927897468929"}, +{"created_at": "Wed, 14 Dec 2011 03:57:28 +0000", "from_user": "ichii386", "from_user_id": 10564102, "from_user_id_str": "10564102", "from_user_name": "ICHII Takashi", "geo": null, "id": 146800950718382080, "id_str": "146800950718382080", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/37796142/saru_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/37796142/saru_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@syoyo \\u76F4\\u63A5 @joyent \\u3092\\u3064\\u3064\\u3044\\u3066 IB \\u74B0\\u5883\\u306E\\u6574\\u5099\\u3092\\u307E\\u308F\\u308A\\u304B\\u3089\\u56FA\\u3081\\u308B\\u3068\\u304B", "to_user": "syoyo", "to_user_id": 15808736, "to_user_id_str": "15808736", "to_user_name": "syoyo", "in_reply_to_status_id": 146794725393956860, "in_reply_to_status_id_str": "146794725393956864"}, +{"created_at": "Wed, 14 Dec 2011 03:32:44 +0000", "from_user": "syoyo", "from_user_id": 15808736, "from_user_id_str": "15808736", "from_user_name": "syoyo", "geo": null, "id": 146794725393956860, "id_str": "146794725393956864", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1233719952/syoyo_face_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1233719952/syoyo_face_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "node.js \\u3067 RDMA \\u306E\\u51FA\\u756A\\u3067\\u3059\\u306D, \\u5206\\u304B\\u308A\\u307E\\u3059 > Joyent\\u306F\\u30D5\\u30ED\\u30F3\\u30C8\\u3067Node.js\\u3092\\u52D5\\u4F5C\\u3055\\u305B\\u308B\\u30CE\\u30F3\\u30D6\\u30ED\\u30C3\\u30AD\\u30F3\\u30B0I/O\\u306B\\u6700\\u9069\\u5316\\u3055\\u308C\\u305F\\u30A4\\u30F3\\u30D5\\u30E9\\u3092\\u63D0\\u4F9B. http://t.co/23dKVLQV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 00:58:39 +0000", "from_user": "paulbotang", "from_user_id": 227846517, "from_user_id_str": "227846517", "from_user_name": "Paul Botang", "geo": null, "id": 146755950785724400, "id_str": "146755950785724416", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @arrowp: le cukino angleteros http://t.co/KBKtFPQB RT @paulbotang: @arrowp @joyent fux", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 00:56:20 +0000", "from_user": "vvakame", "from_user_id": 93872255, "from_user_id_str": "93872255", "from_user_name": "\\u308F\\u304B\\u3081", "geo": null, "id": 146755367911690240, "id_str": "146755367911690240", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668074095/vvakame_santa_face_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668074095/vvakame_santa_face_normal.png", "source": "<a href="https://mozillalabs.com/ubiquity/" rel="nofollow">Ubiquity</a>", "text": "RT @gocho: node.js \\u306E\\u30E2\\u30B8\\u30E5\\u30FC\\u30EB\\u307E\\u3068\\u3081\\u30DA\\u30FC\\u30B8\\u307F\\u305F\\u3044\\u306B\\u306A\\u3063\\u3066\\u308B... JSAN\\u30A7 http://t.co/6tSUxVnD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 00:54:32 +0000", "from_user": "gocho", "from_user_id": 14523807, "from_user_id_str": "14523807", "from_user_name": "gocho", "geo": null, "id": 146754914134147070, "id_str": "146754914134147073", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/943882585/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/943882585/twitter_normal.jpg", "source": "<a href="https://mozillalabs.com/ubiquity/" rel="nofollow">Ubiquity</a>", "text": "node.js \\u306E\\u30E2\\u30B8\\u30E5\\u30FC\\u30EB\\u307E\\u3068\\u3081\\u30DA\\u30FC\\u30B8\\u307F\\u305F\\u3044\\u306B\\u306A\\u3063\\u3066\\u308B... JSAN\\u30A7 http://t.co/6tSUxVnD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 00:51:29 +0000", "from_user": "paulbotang", "from_user_id": 227846517, "from_user_id_str": "227846517", "from_user_name": "Paul Botang", "geo": null, "id": 146754144668094460, "id_str": "146754144668094464", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@arrowp @joyent EPTO SLOP", "to_user": "arrowp", "to_user_id": 41588986, "to_user_id_str": "41588986", "to_user_name": "Arrow P", "in_reply_to_status_id": 137665996042407940, "in_reply_to_status_id_str": "137665996042407936"}, +{"created_at": "Wed, 14 Dec 2011 00:16:51 +0000", "from_user": "mschneider718", "from_user_id": 15346683, "from_user_id_str": "15346683", "from_user_name": "Martin Schneider", "geo": null, "id": 146745431194480640, "id_str": "146745431194480640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1340389293/25263_498826855095_697700095_11542034_5066996_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1340389293/25263_498826855095_697700095_11542034_5066996_n_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @joyent: RT @mongodb: MMS: a SaaS based tool that monitors your MongoDB cluster http://t.co/V4EyUAXr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 23:57:15 +0000", "from_user": "peteryorke", "from_user_id": 14136726, "from_user_id_str": "14136726", "from_user_name": "Peter Yorke", "geo": null, "id": 146740495236861950, "id_str": "146740495236861952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/51727717/peter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/51727717/peter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@0hi @shamoons @joyent Turn in a ticket to support@joyent.com", "to_user": "0hi", "to_user_id": 120966622, "to_user_id_str": "120966622", "to_user_name": "b", "in_reply_to_status_id": 146732288716189700, "in_reply_to_status_id_str": "146732288716189697"}, +{"created_at": "Tue, 13 Dec 2011 23:51:43 +0000", "from_user": "lucks17", "from_user_id": 19469810, "from_user_id_str": "19469810", "from_user_name": "Luis de Jesus", "geo": null, "id": 146739103268999170, "id_str": "146739103268999168", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702320348/zelda_skyward_sword_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702320348/zelda_skyward_sword_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Que seria la vida sin Snippets? at\\u00E1squense -> http://t.co/0AAHxMer", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 23:37:04 +0000", "from_user": "0hi", "from_user_id": 120966622, "from_user_id_str": "120966622", "from_user_name": "b", "geo": null, "id": 146735416589033470, "id_str": "146735416589033473", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/739841012/oscar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/739841012/oscar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@shamoons @joyent http://t.co/hbuFhvQN", "to_user": "shamoons", "to_user_id": 20744357, "to_user_id_str": "20744357", "to_user_name": "Shamoon Siddiqui", "in_reply_to_status_id": 146627677766426620, "in_reply_to_status_id_str": "146627677766426624"}, +{"created_at": "Tue, 13 Dec 2011 23:24:38 +0000", "from_user": "0hi", "from_user_id": 120966622, "from_user_id_str": "120966622", "from_user_name": "b", "geo": null, "id": 146732288716189700, "id_str": "146732288716189697", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/739841012/oscar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/739841012/oscar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@shamoons @joyent Me, too. Can't connect with ssh", "to_user": "shamoons", "to_user_id": 20744357, "to_user_id_str": "20744357", "to_user_name": "Shamoon Siddiqui", "in_reply_to_status_id": 146627677766426620, "in_reply_to_status_id_str": "146627677766426624"}, +{"created_at": "Tue, 13 Dec 2011 22:20:57 +0000", "from_user": "uniserveTelecom", "from_user_id": 426153054, "from_user_id_str": "426153054", "from_user_name": "Uniserve", "geo": null, "id": 146716263694073860, "id_str": "146716263694073857", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668689685/uniserve_icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668689685/uniserve_icon_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Affordable #business Internet service, #business VoIP, #Joyent #cloud computing & more! We make it easy to compete. http://t.co/FLLhSK0r", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 21:45:13 +0000", "from_user": "flukeout", "from_user_id": 19351055, "from_user_id_str": "19351055", "from_user_name": "Luke Pacholski", "geo": null, "id": 146707269785092100, "id_str": "146707269785092096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/82989013/__twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/82989013/__twitter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@jasonmcleod @joyent Did you figure this out? I'm getting the same problem deploying a hello world app.", "to_user": "jasonmcleod", "to_user_id": 12221692, "to_user_id_str": "12221692", "to_user_name": "Jason McLeod", "in_reply_to_status_id": 128196440597078020, "in_reply_to_status_id_str": "128196440597078016"}, +{"created_at": "Tue, 13 Dec 2011 21:43:44 +0000", "from_user": "xavijam", "from_user_id": 26775253, "from_user_id_str": "26775253", "from_user_name": "Javier \\u00C1lvarez", "geo": null, "id": 146706897796481020, "id_str": "146706897796481024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1202362793/gentoo_avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1202362793/gentoo_avatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @peteryorke: Check out the new site for #node.js - please see the updated http://t.co/RhbMwNBP @joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 21:33:11 +0000", "from_user": "lderezinski", "from_user_id": 6166672, "from_user_id_str": "6166672", "from_user_name": "Linda Derezinski", "geo": null, "id": 146704240285450240, "id_str": "146704240285450240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1575099705/lderezinski_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575099705/lderezinski_normal.png", "source": "<a href="http://www.nambu.com/" rel="nofollow">Nambu</a>", "text": "@pborenstein seems that most of joyent is a walking germ factory ...", "to_user": "pborenstein", "to_user_id": 3675931, "to_user_id_str": "3675931", "to_user_name": "Philip Borenstein", "in_reply_to_status_id": 146649805282738180, "in_reply_to_status_id_str": "146649805282738176"}, +{"created_at": "Tue, 13 Dec 2011 20:35:15 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 146689664139530240, "id_str": "146689664139530241", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @basho: Still some room left for BashoChats tomorrow night in San Fran. http://t.co/wrqZgSRA\\u2026 Erlang, DTrace, Clojure,...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 20:23:18 +0000", "from_user": "bdha", "from_user_id": 21226447, "from_user_id_str": "21226447", "from_user_name": "Bryan HorstmannAllen", "geo": null, "id": 146686656626434050, "id_str": "146686656626434048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1290302189/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1290302189/image_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@srsmoot @joyent @DeirdreS Yup. It'll import your zones pool and bring everything up.", "to_user": "srsmoot", "to_user_id": 228811555, "to_user_id_str": "228811555", "to_user_name": "Sam", "in_reply_to_status_id": 146673498465644540, "in_reply_to_status_id_str": "146673498465644544"}, +{"created_at": "Tue, 13 Dec 2011 20:09:10 +0000", "from_user": "miumiento", "from_user_id": 63054849, "from_user_id_str": "63054849", "from_user_name": "Mariano Iumiento", "geo": null, "id": 146683098267009020, "id_str": "146683098267009025", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/390812352/n1337751248_30237737_23_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/390812352/n1337751248_30237737_23_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @joyent: RT @peteryorke: @joyent named \"innovator\" for 2011! @gartner Introduces: New Magic Quadrant for Public Cloud IaaS...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 20:06:26 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 146682409860075520, "id_str": "146682409860075520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@jasonh video @ #mongosv @10gen last wk. \"The Importance of Accessibility and Open Source in Developer Adoption\" http://t.co/lagh9CaF", "to_user": "jasonh", "to_user_id": 10638, "to_user_id_str": "10638", "to_user_name": "Jason Hoffman"}, +{"created_at": "Tue, 13 Dec 2011 19:50:03 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 146678287563890700, "id_str": "146678287563890688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @peteryorke: @joyent named \"innovator\" for 2011! @gartner Introduces: New Magic Quadrant for Public Cloud IaaS...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 19:45:02 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 146677025535574000, "id_str": "146677025535574016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT Circonus 4 Best Practices to Monitor Vitals During the Holidays via @RISNewsInsights http://t.co/2LXp3ETt #monitoring", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 19:41:51 +0000", "from_user": "justinfreitag", "from_user_id": 14059639, "from_user_id_str": "14059639", "from_user_name": "Justin Freitag", "geo": null, "id": 146676224851329020, "id_str": "146676224851329024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1426918085/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1426918085/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @peteryorke: Check out the new site for #node.js - please see the updated http://t.co/RhbMwNBP @joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 19:31:01 +0000", "from_user": "srsmoot", "from_user_id": 228811555, "from_user_id_str": "228811555", "from_user_name": "Sam", "geo": null, "id": 146673498465644540, "id_str": "146673498465644544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1323854939/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1323854939/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@bdha @joyent @DeirdreS Great. I assume once I remove my /etc/system tweak, I'll be able to just burn a new ISO, reboot and profit?", "to_user": "bdha", "to_user_id": 21226447, "to_user_id_str": "21226447", "to_user_name": "Bryan HorstmannAllen", "in_reply_to_status_id": 146652524009631740, "in_reply_to_status_id_str": "146652524009631744"}, +{"created_at": "Tue, 13 Dec 2011 19:16:56 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 146669954241007600, "id_str": "146669954241007618", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @jdonley83 peteryorke: Check out the new site for #node.js - please see the updated http://t.co/jT8sjMnY @joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 19:14:29 +0000", "from_user": "jdonley83", "from_user_id": 21068888, "from_user_id_str": "21068888", "from_user_name": "Joseph Donley", "geo": null, "id": 146669335988027400, "id_str": "146669335988027392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1618837233/Optimized-jdonley83logoNoTexture_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618837233/Optimized-jdonley83logoNoTexture_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @peteryorke: Check out the new site for #node.js - please see the updated http://t.co/RhbMwNBP @joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 19:11:28 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 146668577804660740, "id_str": "146668577804660736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @sh1mmer: Vote on which potential logo you like the best for my new company: http://t.co/eDwpSShd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 19:11:10 +0000", "from_user": "mrryanjohnston", "from_user_id": 297437879, "from_user_id_str": "297437879", "from_user_name": "Ryan Johnston", "geo": null, "id": 146668500361019400, "id_str": "146668500361019393", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1370834234/0f437ad_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1370834234/0f437ad_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @peteryorke: Check out the new site for #node.js - please see the updated http://t.co/RhbMwNBP @joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 19:10:09 +0000", "from_user": "3rdEden", "from_user_id": 14350255, "from_user_id_str": "14350255", "from_user_name": "Arnout Kazemier", "geo": null, "id": 146668246077161470, "id_str": "146668246077161472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @scottherson: @joyent named \"innovator\" for 2011! @Gartner Introduces: New Magic Quadrant for Public Cloud IaaS http://t.co/Ry6uBMCP via @cloudtweaks", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 19:09:53 +0000", "from_user": "tdegrunt", "from_user_id": 8596262, "from_user_id_str": "8596262", "from_user_name": "Tom", "geo": null, "id": 146668177886158850, "id_str": "146668177886158848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1427942092/tdegrunt_96_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1427942092/tdegrunt_96_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @peteryorke: Check out the new site for #node.js - please see the updated http://t.co/RhbMwNBP @joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 19:09:50 +0000", "from_user": "aaronfay", "from_user_id": 58887756, "from_user_id_str": "58887756", "from_user_name": "Aaron Fay", "geo": null, "id": 146668166188245000, "id_str": "146668166188244992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/431947379/af-avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/431947379/af-avatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @peteryorke: Check out the new site for #node.js - please see the updated http://t.co/RhbMwNBP @joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 19:08:48 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 146667905373835260, "id_str": "146667905373835264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @peteryorke: Check out the new site for #node.js - please see the updated http://t.co/RhbMwNBP @joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 18:57:54 +0000", "from_user": "peteryorke", "from_user_id": 14136726, "from_user_id_str": "14136726", "from_user_name": "Peter Yorke", "geo": null, "id": 146665162479370240, "id_str": "146665162479370240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/51727717/peter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/51727717/peter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Check out the new site for #node.js - please see the updated http://t.co/RhbMwNBP @joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 18:54:06 +0000", "from_user": "lc0d3r", "from_user_id": 66489856, "from_user_id_str": "66489856", "from_user_name": "Sergii", "geo": null, "id": 146664206807203840, "id_str": "146664206807203840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1364989382/twi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1364989382/twi_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Got invitation to Node Summit from @joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 18:52:51 +0000", "from_user": "scottherson", "from_user_id": 89247454, "from_user_id_str": "89247454", "from_user_name": "scott herson", "geo": null, "id": 146663890569273340, "id_str": "146663890569273344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1281899263/fiji_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1281899263/fiji_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "#node.js and @joyent fans - please see the updated http://t.co/KaYpEl2d", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 18:50:23 +0000", "from_user": "peteryorke", "from_user_id": 14136726, "from_user_id_str": "14136726", "from_user_name": "Peter Yorke", "geo": null, "id": 146663270638551040, "id_str": "146663270638551041", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/51727717/peter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/51727717/peter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@joyent named \"innovator\" for 2011! @Gartner Introduces: New Magic Quadrant for Public Cloud IaaS http://t.co/ufgcv1Pi via @cloudtweaks", "to_user": "joyent", "to_user_id": 666523, "to_user_id_str": "666523", "to_user_name": "Joyent"}, +{"created_at": "Tue, 13 Dec 2011 18:46:44 +0000", "from_user": "scottherson", "from_user_id": 89247454, "from_user_id_str": "89247454", "from_user_name": "scott herson", "geo": null, "id": 146662353784672260, "id_str": "146662353784672257", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1281899263/fiji_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1281899263/fiji_normal", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "@joyent named \"innovator\" for 2011! @Gartner Introduces: New Magic Quadrant for Public Cloud IaaS http://t.co/Ry6uBMCP via @cloudtweaks", "to_user": "joyent", "to_user_id": 666523, "to_user_id_str": "666523", "to_user_name": "Joyent"}, +{"created_at": "Tue, 13 Dec 2011 18:30:53 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 146658362866679800, "id_str": "146658362866679808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @Percona: Percona XtraBackup 1.6 for Windows \\u201Ctry me\\u201D edition http://t.co/tE2bilIM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 18:30:40 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 146658311712948220, "id_str": "146658311712948225", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DynInc: Our @jadelisle on #email #deliverability use cases and how Dyn has helped in various verticals: http://t.co/lL7CgYSv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 18:16:27 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 146654732944023550, "id_str": "146654732944023554", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Nice article about customer @UtinniGames in @insidenetwork on #BeingHuman FB game. http://t.co/Eu0RlxwF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 18:07:59 +0000", "from_user": "bdha", "from_user_id": 21226447, "from_user_id_str": "21226447", "from_user_name": "Bryan HorstmannAllen", "geo": null, "id": 146652602376003600, "id_str": "146652602376003584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1290302189/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1290302189/image_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@srsmoot @joyent @DeirdreS (small arc generally means crap perf)", "to_user": "srsmoot", "to_user_id": 228811555, "to_user_id_str": "228811555", "to_user_name": "Sam", "in_reply_to_status_id": 146651301781057540, "in_reply_to_status_id_str": "146651301781057536"}, +{"created_at": "Tue, 13 Dec 2011 18:07:41 +0000", "from_user": "bdha", "from_user_id": 21226447, "from_user_id_str": "21226447", "from_user_name": "Bryan HorstmannAllen", "geo": null, "id": 146652524009631740, "id_str": "146652524009631744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1290302189/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1290302189/image_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@srsmoot @joyent @DeirdreS I think John is spinning a new release so you'll be able to remove the arc limiter once you boot that.", "to_user": "srsmoot", "to_user_id": 228811555, "to_user_id_str": "228811555", "to_user_name": "Sam", "in_reply_to_status_id": 146651301781057540, "in_reply_to_status_id_str": "146651301781057536"}, +{"created_at": "Tue, 13 Dec 2011 18:02:49 +0000", "from_user": "srsmoot", "from_user_id": 228811555, "from_user_id_str": "228811555", "from_user_name": "Sam", "geo": null, "id": 146651301781057540, "id_str": "146651301781057536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1323854939/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1323854939/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@bdha @joyent @deirdres Creating a 48GB swap and set zfs:zfs_arc_max = 0x100000000 did the trick. Thanks!", "to_user": "bdha", "to_user_id": 21226447, "to_user_id_str": "21226447", "to_user_name": "Bryan HorstmannAllen"}, +{"created_at": "Tue, 13 Dec 2011 17:56:52 +0000", "from_user": "pborenstein", "from_user_id": 3675931, "from_user_id_str": "3675931", "from_user_name": "Philip Borenstein", "geo": null, "id": 146649805282738180, "id_str": "146649805282738176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/71234052/IMG_0453_2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/71234052/IMG_0453_2_normal.JPG", "source": "<a href="http://tweetli.st/" rel="nofollow">TweetList Pro</a>", "text": "Somewhere on my trip to @joyent I picked up a cold. I blame @united.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:55:44 +0000", "from_user": "davidpaulyoung", "from_user_id": 10637, "from_user_id_str": "10637", "from_user_name": "David Young", "geo": null, "id": 146649516869820400, "id_str": "146649516869820416", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/14395312/icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/14395312/icon_normal.jpg", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "I'm at Joyent (345 California St, #2000, San Francisco) http://t.co/613Xq5dk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:36:59 +0000", "from_user": "rob_ellis", "from_user_id": 9924652, "from_user_id_str": "9924652", "from_user_name": "Rob Ellis", "geo": null, "id": 146644801989771260, "id_str": "146644801989771264", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/701781087/Photo_on_2010-01-05_at_14.37_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/701781087/Photo_on_2010-01-05_at_14.37_normal.jpg", "source": "<a href="http://twitter.com" rel="nofollow">Tweetie for Mac</a>", "text": "Oh ya, http://t.co/fjXAJA3j got an overhaul yesterday - very sweet! #node #joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:29:49 +0000", "from_user": "DeirdreS", "from_user_id": 625093, "from_user_id_str": "625093", "from_user_name": "Deirdr\\u00E9 Straughan", "geo": null, "id": 146642998204174340, "id_str": "146642998204174336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1273049375/dpink_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273049375/dpink_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @MogdenPong: With mixed feelings I nominate Joyent Cloud Analytics for Best Tech Achievement 2011 Crunchie! http://t.co/hoTmKfaW #crunchies", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 16:34:37 +0000", "from_user": "srsmoot", "from_user_id": 228811555, "from_user_id_str": "228811555", "from_user_name": "Sam", "geo": null, "id": 146629103452307460, "id_str": "146629103452307456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1323854939/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1323854939/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@bdha @joyent @deirdres Any advice on how much to reserve for the global zone? Is there a general formula or would a standard 4GB cut it?", "to_user": "bdha", "to_user_id": 21226447, "to_user_id_str": "21226447", "to_user_name": "Bryan HorstmannAllen"}, +{"created_at": "Tue, 13 Dec 2011 16:28:57 +0000", "from_user": "shamoons", "from_user_id": 20744357, "from_user_id_str": "20744357", "from_user_name": "Shamoon Siddiqui", "geo": null, "id": 146627677766426620, "id_str": "146627677766426624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1568292716/shamoon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1568292716/shamoon_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@joyent when doing a push to my no.de, I get \"60239: Connection refused\\nfatal: The remote end hung up unexpectedly\" #pleasehelp", "to_user": "joyent", "to_user_id": 666523, "to_user_id_str": "666523", "to_user_name": "Joyent"}, +{"created_at": "Tue, 13 Dec 2011 16:28:15 +0000", "from_user": "KapilChatani", "from_user_id": 415342024, "from_user_id_str": "415342024", "from_user_name": "kapil chatani", "geo": null, "id": 146627503908327420, "id_str": "146627503908327426", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1672768864/370677_100003028345104_1800252874_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672768864/370677_100003028345104_1800252874_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@joyent LOVE", "to_user": "joyent", "to_user_id": 666523, "to_user_id_str": "666523", "to_user_name": "Joyent"}, +{"created_at": "Tue, 13 Dec 2011 16:27:17 +0000", "from_user": "KapilChatani", "from_user_id": 415342024, "from_user_id_str": "415342024", "from_user_name": "kapil chatani", "geo": null, "id": 146627258658988030, "id_str": "146627258658988033", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1672768864/370677_100003028345104_1800252874_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672768864/370677_100003028345104_1800252874_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@joyent HI", "to_user": "joyent", "to_user_id": 666523, "to_user_id_str": "666523", "to_user_name": "Joyent"}, +{"created_at": "Tue, 13 Dec 2011 15:31:30 +0000", "from_user": "srsmoot", "from_user_id": 228811555, "from_user_id_str": "228811555", "from_user_name": "Sam", "geo": null, "id": 146613222944948220, "id_str": "146613222944948224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1323854939/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1323854939/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@bdha @joyent @deirdres thanks much. I'll give it a shot later this morning. Sounds right. I've got 48GB. A 500GB zones pool and 4GB guests.", "to_user": "bdha", "to_user_id": 21226447, "to_user_id_str": "21226447", "to_user_name": "Bryan HorstmannAllen", "in_reply_to_status_id": 146468796901756930, "in_reply_to_status_id_str": "146468796901756929"}, +{"created_at": "Tue, 13 Dec 2011 15:29:18 +0000", "from_user": "muddydixon", "from_user_id": 5484602, "from_user_id_str": "5484602", "from_user_name": "Muddy Dixon", "geo": null, "id": 146612666234978300, "id_str": "146612666234978305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1140591072/27366_619217309_3444_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1140591072/27366_619217309_3444_q_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @nodejschina: First Server & Joyent Announce SmartDataCenter-powered cloud in Japan. Node Ninja, a N\\u2026 http://t.co/Ecz6niSv via @wordpressdotcom", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 15:20:08 +0000", "from_user": "vanx2", "from_user_id": 14329352, "from_user_id_str": "14329352", "from_user_name": "shigeto yatani", "geo": null, "id": 146610360173084670, "id_str": "146610360173084672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1181234676/profile_img.png.128.1236657125_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1181234676/profile_img.png.128.1236657125_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @nodejschina: First Server & Joyent Announce SmartDataCenter-powered cloud in Japan. Node Ninja, a N\\u2026 http://t.co/Ecz6niSv via @wordpressdotcom", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 11:42:19 +0000", "from_user": "MogdenPong", "from_user_id": 221851124, "from_user_id_str": "221851124", "from_user_name": "Dominic Kay", "geo": null, "id": 146555546923843600, "id_str": "146555546923843584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1409483344/new-7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1409483344/new-7_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "With mixed feelings I nominate Joyent Cloud Analytics for Best Tech Achievement 2011 Crunchie! http://t.co/hoTmKfaW #crunchies", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 11:10:02 +0000", "from_user": "lderezinski", "from_user_id": 6166672, "from_user_id_str": "6166672", "from_user_name": "Linda Derezinski", "geo": null, "id": 146547419356737540, "id_str": "146547419356737539", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1575099705/lderezinski_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575099705/lderezinski_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Join me and nominate Joyent Cloud Analytics for the Best Technology Achievement 2011 Crunchie! http://t.co/mnS7AQsU #crunchies", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 10:18:30 +0000", "from_user": "micloudservice", "from_user_id": 372609363, "from_user_id_str": "372609363", "from_user_name": "micloud", "geo": null, "id": 146534453949366270, "id_str": "146534453949366272", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "MiCloud\\u7684\\u6280\\u8853\\u5408\\u4F5C\\u5925\\u4F34\\uFF0CJoyent\\u5927\\u4E2D\\u83EF\\u7E3D\\u88C1Howard Wu\\u5C08\\u8A2A\\u3002\\n\\nhttp://t.co/xaw8GOuz http://t.co/3vhkLpz3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 09:25:56 +0000", "from_user": "morteza_milani", "from_user_id": 166104316, "from_user_id_str": "166104316", "from_user_name": "Morteza Milani", "geo": null, "id": 146521224560902140, "id_str": "146521224560902144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681214380/me2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681214380/me2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "new http://t.co/ckKBwPZp page is awesome! thank you @joyent! #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 09:08:41 +0000", "from_user": "ninja_krh", "from_user_id": 270966105, "from_user_id_str": "270966105", "from_user_name": "Kimberlee Hoffman", "geo": null, "id": 146516882986512400, "id_str": "146516882986512384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1418025474/5770_1195959817718_1190144125_30579552_4515047_n_2__normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1418025474/5770_1195959817718_1190144125_30579552_4515047_n_2__normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Join me and nominate Joyent Cloud Analytics for the Best Technology Achievement 2011 Crunchie! http://t.co/UN4quCZQ #crunchies", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 09:04:25 +0000", "from_user": "xlntjoy", "from_user_id": 11205792, "from_user_id_str": "11205792", "from_user_name": "Joyce Woolhether", "geo": null, "id": 146515807562768400, "id_str": "146515807562768384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1549645773/ipod_2011_SF_and_Pueb___craigs_017_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1549645773/ipod_2011_SF_and_Pueb___craigs_017_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Join me and nominate Joyent Cloud Analytics for the Best Technology Achievement 2011 Crunchie! http://t.co/ZIUGszuw #crunchies", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 09:03:48 +0000", "from_user": "xlntjoy", "from_user_id": 11205792, "from_user_id_str": "11205792", "from_user_name": "Joyce Woolhether", "geo": null, "id": 146515653128486900, "id_str": "146515653128486912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1549645773/ipod_2011_SF_and_Pueb___craigs_017_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1549645773/ipod_2011_SF_and_Pueb___craigs_017_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @HowieDragon: Join me and nominate Joyent Cloud Analytics for the Best Technology Achievement 2011 Crunchie! http://t.co/7G8LpidV #crunchies", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 08:29:04 +0000", "from_user": "davybrion", "from_user_id": 167135950, "from_user_id_str": "167135950", "from_user_name": "Davy Brion", "geo": null, "id": 146506913889263600, "id_str": "146506913889263616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1648946210/pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648946210/pic_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@YvesGoeleven nodejitsu sounds great, then joyent's solution, then heroku", "to_user": "YvesGoeleven", "to_user_id": 24497096, "to_user_id_str": "24497096", "to_user_name": "Yves Goeleven", "in_reply_to_status_id": 146506401353699330, "in_reply_to_status_id_str": "146506401353699328"}, +{"created_at": "Tue, 13 Dec 2011 08:28:18 +0000", "from_user": "YvesGoeleven", "from_user_id": 24497096, "from_user_id_str": "24497096", "from_user_name": "Yves Goeleven", "geo": null, "id": 146506719361646600, "id_str": "146506719361646592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1309953519/5d224483-9acc-43b6-90e6-670649372087_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1309953519/5d224483-9acc-43b6-90e6-670649372087_normal.png", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "@davybrion such as? Btw it's joyent who does the node support on azure...", "to_user": "davybrion", "to_user_id": 167135950, "to_user_id_str": "167135950", "to_user_name": "Davy Brion", "in_reply_to_status_id": 146506472468127740, "in_reply_to_status_id_str": "146506472468127744"}, +{"created_at": "Tue, 13 Dec 2011 06:38:59 +0000", "from_user": "molpusunka0", "from_user_id": 369508934, "from_user_id_str": "369508934", "from_user_name": "Molpus Backer", "geo": null, "id": 146479207634059260, "id_str": "146479207634059264", "iso_language_code": "fi", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1532876554/imagesCAZCFE35_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1532876554/imagesCAZCFE35_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Ashleyy1233 http://t.co/HAKWNZQQ", "to_user": "Ashleyy1233", "to_user_id": 309278293, "to_user_id_str": "309278293", "to_user_name": "Ashle\\u00A5 Godbe\\u00A5 {: ", "in_reply_to_status_id": 146411644661137400, "in_reply_to_status_id_str": "146411644661137408"}, +{"created_at": "Tue, 13 Dec 2011 06:35:22 +0000", "from_user": "molpusunka0", "from_user_id": 369508934, "from_user_id_str": "369508934", "from_user_name": "Molpus Backer", "geo": null, "id": 146478299823083520, "id_str": "146478299823083520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1532876554/imagesCAZCFE35_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1532876554/imagesCAZCFE35_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Eastsidewilly5 http://t.co/HAKWNZQQ", "to_user": "Eastsidewilly5", "to_user_id": 182246507, "to_user_id_str": "182246507", "to_user_name": "V.S.", "in_reply_to_status_id": 146411548011798530, "in_reply_to_status_id_str": "146411548011798528"}, +{"created_at": "Tue, 13 Dec 2011 06:32:14 +0000", "from_user": "molpusunka0", "from_user_id": 369508934, "from_user_id_str": "369508934", "from_user_name": "Molpus Backer", "geo": null, "id": 146477508647338000, "id_str": "146477508647337984", "iso_language_code": "eo", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1532876554/imagesCAZCFE35_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1532876554/imagesCAZCFE35_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@StandingParadox http://t.co/HAKWNZQQ", "to_user": "StandingParadox", "to_user_id": 83964930, "to_user_id_str": "83964930", "to_user_name": "xoxo, Arleny.", "in_reply_to_status_id": 146411644602417150, "in_reply_to_status_id_str": "146411644602417152"}, +{"created_at": "Tue, 13 Dec 2011 06:31:45 +0000", "from_user": "denizrende", "from_user_id": 160784347, "from_user_id_str": "160784347", "from_user_name": "Deniz Rende", "geo": null, "id": 146477390145650700, "id_str": "146477390145650688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1372625701/76488_461965532076_552392076_6250115_4305252_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1372625701/76488_461965532076_552392076_6250115_4305252_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @benr: I just nominated Joyent Cloud Analytics for the Best Technology Achievement 2011 Crunchie! Nominate here: http://t.co/5XBUIvsN #crunchies", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 06:24:53 +0000", "from_user": "molpusunka0", "from_user_id": 369508934, "from_user_id_str": "369508934", "from_user_name": "Molpus Backer", "geo": null, "id": 146475659953315840, "id_str": "146475659953315840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1532876554/imagesCAZCFE35_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1532876554/imagesCAZCFE35_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@WE_ONLY_HUMAN http://t.co/HAKWNZQQ", "to_user": "WE_ONLY_HUMAN", "to_user_id": 201451728, "to_user_id_str": "201451728", "to_user_name": "Free Fallin'", "in_reply_to_status_id": 146411841491443700, "in_reply_to_status_id_str": "146411841491443714"}, +{"created_at": "Tue, 13 Dec 2011 05:57:37 +0000", "from_user": "bdha", "from_user_id": 21226447, "from_user_id_str": "21226447", "from_user_name": "Bryan HorstmannAllen", "geo": null, "id": 146468796901756930, "id_str": "146468796901756929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1290302189/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1290302189/image_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@srsmoot @joyent @DeirdreS Interim solution is to limit ARC via /etc/system (not sure if you can pass it as a boot arg).", "to_user": "srsmoot", "to_user_id": 228811555, "to_user_id_str": "228811555", "to_user_name": "Sam", "in_reply_to_status_id": 146462352991203330, "in_reply_to_status_id_str": "146462352991203328"}, +{"created_at": "Tue, 13 Dec 2011 05:55:08 +0000", "from_user": "bdha", "from_user_id": 21226447, "from_user_id_str": "21226447", "from_user_name": "Bryan HorstmannAllen", "geo": null, "id": 146468173334589440, "id_str": "146468173334589440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1290302189/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1290302189/image_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@srsmoot @joyent @DeirdreS And there is a patch from @bcantrill for qemu/ARC but @johnnysunshine hasn't rolled a release with it afaik.", "to_user": "srsmoot", "to_user_id": 228811555, "to_user_id_str": "228811555", "to_user_name": "Sam", "in_reply_to_status_id": 146462352991203330, "in_reply_to_status_id_str": "146462352991203328"}, +{"created_at": "Tue, 13 Dec 2011 05:53:27 +0000", "from_user": "bdha", "from_user_id": 21226447, "from_user_id_str": "21226447", "from_user_name": "Bryan HorstmannAllen", "geo": null, "id": 146467748875210750, "id_str": "146467748875210753", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1290302189/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1290302189/image_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@srsmoot @joyent @DeirdreS KVM? You are either out of swap, or the ARC has alloc'd all memory and qemu doesn't know how to make it back off.", "to_user": "srsmoot", "to_user_id": 228811555, "to_user_id_str": "228811555", "to_user_name": "Sam", "in_reply_to_status_id": 146462352991203330, "in_reply_to_status_id_str": "146462352991203328"}, +{"created_at": "Tue, 13 Dec 2011 05:38:09 +0000", "from_user": "DeirdreS", "from_user_id": 625093, "from_user_id_str": "625093", "from_user_name": "Deirdr\\u00E9 Straughan", "geo": null, "id": 146463898286039040, "id_str": "146463898286039040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1273049375/dpink_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273049375/dpink_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "RT @srsmoot: @joyent hitting a wall trying to boot a fifth Guest in SmartOS. /var/adm/messages not helping. Any troubleshooting advice?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 05:32:00 +0000", "from_user": "srsmoot", "from_user_id": 228811555, "from_user_id_str": "228811555", "from_user_name": "Sam", "geo": null, "id": 146462352991203330, "id_str": "146462352991203328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1323854939/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1323854939/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@joyent hitting a wall trying to boot a fifth Guest in SmartOS. /var/adm/messages not helping. Any troubleshooting advice?", "to_user": "joyent", "to_user_id": 666523, "to_user_id_str": "666523", "to_user_name": "Joyent"}, +{"created_at": "Tue, 13 Dec 2011 05:22:13 +0000", "from_user": "JReuben1", "from_user_id": 18364654, "from_user_id_str": "18364654", "from_user_name": "JReuben1", "geo": null, "id": 146459888443326460, "id_str": "146459888443326464", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1222470114/bioPic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1222470114/bioPic_normal.jpg", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "http://t.co/uRdUUGic (Microsoft, Joyent deliver 'first stable build' of Node.js on Windows | ZDNet)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 05:17:00 +0000", "from_user": "powerdtrace", "from_user_id": 40241796, "from_user_id_str": "40241796", "from_user_name": "Sam Wan", "geo": null, "id": 146458578893549570, "id_str": "146458578893549568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1416681166/sunset3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1416681166/sunset3_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Join me and nominate Joyent Cloud Analytics for the Best Technology Achievement 2011 Crunchie! http://t.co/PIpHf4U5 #crunchies", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 05:11:25 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 146457173701050370, "id_str": "146457173701050368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @HowieDragon: Join me and nominate Joyent Cloud Analytics for the Best Technology Achievement 2011 Crunchie! http://t.co/7G8LpidV #crunchies", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 05:11:22 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 146457160375730180, "id_str": "146457160375730176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @benr: I just nominated Joyent Cloud Analytics for the Best Technology Achievement 2011 Crunchie! Nominate here: http://t.co/5XBUIvsN #crunchies", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 05:09:39 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 146456726839898100, "id_str": "146456726839898112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @benr: I just nominated Joyent Cloud Analytics for the Best Technology Achievement 2011 Crunchie! Nominate here: http://t.co/5XBUIvsN #crunchies", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 05:02:52 +0000", "from_user": "HowieDragon", "from_user_id": 184442035, "from_user_id_str": "184442035", "from_user_name": "Howie", "geo": null, "id": 146455021578493950, "id_str": "146455021578493952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1412192196/IMG_2380_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1412192196/IMG_2380_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Join me and nominate Joyent Cloud Analytics for the Best Technology Achievement 2011 Crunchie! http://t.co/7G8LpidV #crunchies", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 05:01:06 +0000", "from_user": "benr", "from_user_id": 697453, "from_user_id_str": "697453", "from_user_name": "Ben Rockwood", "geo": null, "id": 146454576042745860, "id_str": "146454576042745857", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/20853822/Photo_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/20853822/Photo_7_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "I just nominated Joyent Cloud Analytics for the Best Technology Achievement 2011 Crunchie! Nominate here: http://t.co/5XBUIvsN #crunchies", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 04:31:50 +0000", "from_user": "SonTranNguyen", "from_user_id": 388687530, "from_user_id_str": "388687530", "from_user_name": "Son Tran-Nguyen", "geo": null, "id": 146447212212264960, "id_str": "146447212212264960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1582835530/11562330_7344587_gzDyvvH_715x476_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1582835530/11562330_7344587_gzDyvvH_715x476_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @joyent: Join me and nominate Joyent Cloud for the Best Cloud Service 2011 Crunchie! http://t.co/5Rpd3wPS #crunchies", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 04:31:10 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 146447043655766000, "id_str": "146447043655766016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@briankb Not sure on the answer to that one. Need to check with Ryan and our team on the rationale.", "to_user": "briankb", "to_user_id": 15032505, "to_user_id_str": "15032505", "to_user_name": "brian boatright", "in_reply_to_status_id": 146444926022979600, "in_reply_to_status_id_str": "146444926022979584"}, +{"created_at": "Tue, 13 Dec 2011 04:29:42 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 146446671579066370, "id_str": "146446671579066368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Join me and nominate Joyent Cloud for the Best Cloud Service 2011 Crunchie! http://t.co/5Rpd3wPS #crunchies", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 04:22:45 +0000", "from_user": "briankb", "from_user_id": 15032505, "from_user_id_str": "15032505", "from_user_name": "brian boatright", "geo": null, "id": 146444926022979600, "id_str": "146444926022979584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1606369217/5809_1187721257062_1349240973_527178_610606_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606369217/5809_1187721257062_1349240973_527178_610606_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@joyent i'm new to node.js and I noticed on the new site that Joyent owns the node.js trademark. shouldn't Ryan Dahl or a non-profit own it?", "to_user": "joyent", "to_user_id": 666523, "to_user_id_str": "666523", "to_user_name": "Joyent"}, +{"created_at": "Tue, 13 Dec 2011 04:16:56 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 146443458767360000, "id_str": "146443458767360000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "First Server & Joyent Announce SmartDataCenter-powered cloud in Japan. Node Ninja, a N\\u2026 http://t.co/Ecz6niSv via @wordpressdotcom", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 04:07:11 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 146441008157163520, "id_str": "146441008157163520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Join me and nominate joyent for the Best Technology Achievement 2011 Crunchie! http://t.co/ThsJJMzY #crunchies", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 02:26:11 +0000", "from_user": "mashihua", "from_user_id": 42030689, "from_user_id_str": "42030689", "from_user_name": "\\u9A6C\\u58EB\\u534E \\uF8FF \\u2764 \\u273F", "geo": null, "id": 146415591530565630, "id_str": "146415591530565633", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1597332036/20110903_113959_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1597332036/20110903_113959_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "\\u81EA\\u4ECEJoyent\\u88ABMS\\u6536\\u4E70\\u4E86\\u4E4B\\u540E\\uFF0C\\u6211\\u5C31\\u77E5\\u9053MS\\u4E5F\\u6765\\u51D1Node.js\\u4E91\\u5E73\\u53F0\\u7684\\u70ED\\u95F9\\u3002Windows Azure\\u4E91\\u4E0A\\u65B0\\u6765\\u4E86Node.js\\u3002 http://t.co/PKQ2NVfa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 23:51:08 +0000", "from_user": "evripidis", "from_user_id": 14938895, "from_user_id_str": "14938895", "from_user_name": "evripidis \\uF8FF", "geo": null, "id": 146376568472743940, "id_str": "146376568472743936", "iso_language_code": "el", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1576783443/avatar2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576783443/avatar2_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@soiramk \\u03B1\\u03BB\\u03BB\\u03B1 \\u03BC\\u03C0\\u03BF\\u03C1\\u03B5\\u03AF\\u03C2 \\u03BD\\u03B1 \\u03C0\\u03B1\\u03AF\\u03BE\\u03B5\\u03B9\\u03C2 \\u03BA\\u03AC\\u03C0\\u03C9\\u03C2 \\u03AD\\u03C4\\u03C3\\u03B9 \\u03B1\\u03BB\\u03BB\\u03B1 \\u03A0\\u03B1\\u03AF\\u03BE\\u03B5 \\u03BA\\u03AC\\u03C0\\u03C9\\u03C2 \\u03AD\\u03C4\\u03C3\\u03B9 http://t.co/KpOMBZQn", "to_user": "soiramk", "to_user_id": 25165720, "to_user_id_str": "25165720", "to_user_name": "cmdRvlt (\\u2318+\\u2606)", "in_reply_to_status_id": 146370080450691070, "in_reply_to_status_id_str": "146370080450691072"}, +{"created_at": "Mon, 12 Dec 2011 22:24:34 +0000", "from_user": "elijahwright", "from_user_id": 1920191, "from_user_id_str": "1920191", "from_user_name": "elijah wright", "geo": null, "id": 146354785686257660, "id_str": "146354785686257665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/30535632/ellwrigh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/30535632/ellwrigh_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@bdcravens Just remember how many refugees from the Sun->Oracle transition are at Joyent. And then, hopefully, feel at peace.", "to_user": "bdcravens", "to_user_id": 19546993, "to_user_id_str": "19546993", "to_user_name": "Billy Cravens", "in_reply_to_status_id": 146318272625778700, "in_reply_to_status_id_str": "146318272625778690"}, +{"created_at": "Mon, 12 Dec 2011 22:15:19 +0000", "from_user": "bradleyboy", "from_user_id": 13491682, "from_user_id_str": "13491682", "from_user_name": "Brad Daily", "geo": null, "id": 146352454987038720, "id_str": "146352454987038720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/620787885/CRW_4286_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/620787885/CRW_4286_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@joyent @joyentsupport All clear on my earlier question, things seem back to normal now.", "to_user": "joyent", "to_user_id": 666523, "to_user_id_str": "666523", "to_user_name": "Joyent"}, +{"created_at": "Mon, 12 Dec 2011 21:53:47 +0000", "from_user": "bradleyboy", "from_user_id": 13491682, "from_user_id_str": "13491682", "from_user_name": "Brad Daily", "geo": null, "id": 146347035921104900, "id_str": "146347035921104897", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/620787885/CRW_4286_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/620787885/CRW_4286_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@Joyent @JoyentSupport Are there issues with the Cloud API at the moment? Getting timeouts via CLI and my.joyentcloud.com.", "to_user": "joyent", "to_user_id": 666523, "to_user_id_str": "666523", "to_user_name": "Joyent"}, +{"created_at": "Mon, 12 Dec 2011 21:25:33 +0000", "from_user": "DeirdreS", "from_user_id": 625093, "from_user_id_str": "625093", "from_user_name": "Deirdr\\u00E9 Straughan", "geo": null, "id": 146339931944517630, "id_str": "146339931944517632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1273049375/dpink_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273049375/dpink_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": ".@gbonazzoli A good place to find current SmartOS users in realtime is #joyent or #illumos on irc.freenode.net", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 21:24:58 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 146339785106141200, "id_str": "146339785106141184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "\"DevOps set to change development/operations equation: Outlook 2012\" - SearchSOA http://t.co/WAtYGXeI Includes @benr mention.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 21:24:30 +0000", "from_user": "JUNOSRob", "from_user_id": 16388463, "from_user_id_str": "16388463", "from_user_name": "Rob Cameron", "geo": null, "id": 146339666516381700, "id_str": "146339666516381696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1593311313/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593311313/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@joyent @nodejs love the new web page!", "to_user": "joyent", "to_user_id": 666523, "to_user_id_str": "666523", "to_user_name": "Joyent"}, +{"created_at": "Mon, 12 Dec 2011 21:19:17 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 146338355695722500, "id_str": "146338355695722496", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Circonus....\\nhttp://t.co/SqBTyR0l", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 12 Dec 2011 21:06:05 +0000", "from_user": "peteryorke", "from_user_id": 14136726, "from_user_id_str": "14136726", "from_user_name": "Peter Yorke", "geo": null, "id": 146335033563676670, "id_str": "146335033563676672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/51727717/peter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/51727717/peter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ahrgomez @joyent Turn in a ticket to support@joyent.com with your server name and IP", "to_user": "ahrgomez", "to_user_id": 376221938, "to_user_id_str": "376221938", "to_user_name": "Alejandro Hern\\u00E1ndez", "in_reply_to_status_id": 146298919889014800, "in_reply_to_status_id_str": "146298919889014784"}, +{"created_at": "Mon, 12 Dec 2011 20:33:24 +0000", "from_user": "mikehenke", "from_user_id": 17878766, "from_user_id_str": "17878766", "from_user_name": "mikehenke", "geo": null, "id": 146326810295148540, "id_str": "146326810295148544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1603204237/grav_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1603204237/grav_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @bdcravens: #nodejs as first class citizen on Azure is cool, but based on typical IT industry patterns, nervous about Joyent acquisition by Microsoft", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 20:32:18 +0000", "from_user": "DeirdreS", "from_user_id": 625093, "from_user_id_str": "625093", "from_user_name": "Deirdr\\u00E9 Straughan", "geo": null, "id": 146326530820292600, "id_str": "146326530820292608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1273049375/dpink_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273049375/dpink_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "what are people looking at from Joyent? Since Friday: Ben's video has had 447 views, Bryan's slides 2399, Brendan's blog 17,000 !!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 20:17:02 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 146322689055928320, "id_str": "146322689055928322", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lloydhilaiel: deeply impressed by @joyent's analytics for hosted node instances.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 19:59:29 +0000", "from_user": "bdcravens", "from_user_id": 19546993, "from_user_id_str": "19546993", "from_user_name": "Billy Cravens", "geo": null, "id": 146318272625778700, "id_str": "146318272625778690", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/550414769/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/550414769/twitterProfilePhoto_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "#nodejs as first class citizen on Azure is cool, but based on typical IT industry patterns, nervous about Joyent acquisition by Microsoft", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 19:28:28 +0000", "from_user": "ryah", "from_user_id": 18975861, "from_user_id_str": "18975861", "from_user_name": "Ryan Dahl", "geo": null, "id": 146310469513261060, "id_str": "146310469513261056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1634041610/name_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634041610/name_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lloydhilaiel: deeply impressed by @joyent's analytics for hosted node instances.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 19:28:08 +0000", "from_user": "dapsays", "from_user_id": 247636179, "from_user_id_str": "247636179", "from_user_name": "Dave Pacheco", "geo": null, "id": 146310383299330050, "id_str": "146310383299330049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1235295953/DSC_4227_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1235295953/DSC_4227_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lloydhilaiel: deeply impressed by @joyent's analytics for hosted node instances.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 19:19:59 +0000", "from_user": "bici", "from_user_id": 5901232, "from_user_id_str": "5901232", "from_user_name": "vanni di ponzano", "geo": null, "id": 146308334688018430, "id_str": "146308334688018432", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1581834969/bicilogic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1581834969/bicilogic_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "joyent spencer writes: http://t.co/rGml6zKY #joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 19:08:52 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 146305533375283200, "id_str": "146305533375283201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @gigaom: It\\u2019s official: Windows Azure supports Node.js http://t.co/2pjQLQ9F", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 19:06:48 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 146305015085146100, "id_str": "146305015085146112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lloydhilaiel: deeply impressed by @joyent's analytics for hosted node instances.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 19:05:15 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 146304625673379840, "id_str": "146304625673379841", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lloydhilaiel: deeply impressed by @joyent's analytics for hosted node instances.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 18:54:04 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 146301810804670460, "id_str": "146301810804670465", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @myalltop_paul: Circonus: Copper Plan Free for 90 Days to Joyent Cloud Clients and the Rise of DevOps http://t.co/W2Oo8fNm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 18:42:35 +0000", "from_user": "ahrgomez", "from_user_id": 376221938, "from_user_id_str": "376221938", "from_user_name": "Alejandro Hern\\u00E1ndez", "geo": null, "id": 146298919889014800, "id_str": "146298919889014784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1550108044/264109_2196375351557_1312433871_2736085_1313380_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1550108044/264109_2196375351557_1312433871_2736085_1313380_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@joyent help me please, i dont know how to access my smartmachine with ssh, permission denied?", "to_user": "joyent", "to_user_id": 666523, "to_user_id_str": "666523", "to_user_name": "Joyent"}, +{"created_at": "Mon, 12 Dec 2011 18:30:23 +0000", "from_user": "OliverJAsh", "from_user_id": 21567037, "from_user_id_str": "21567037", "from_user_name": "Oliver Joseph Ash", "geo": null, "id": 146295851210383360, "id_str": "146295851210383360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1363848597/180109_1761992417185_1460332472_31803328_5842999_n.jpg_copy-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1363848597/180109_1761992417185_1460332472_31803328_5842999_n.jpg_copy-2_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "There are seriously this many modules for Node.js? How am I supposed to choooooose?! http://t.co/OHDFF0Mq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 18:30:08 +0000", "from_user": "scottherson", "from_user_id": 89247454, "from_user_id_str": "89247454", "from_user_name": "scott herson", "geo": null, "id": 146295786555187200, "id_str": "146295786555187201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1281899263/fiji_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1281899263/fiji_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @avkashchauhan: A big win for cloud service users to have fast running MongoDB on Joyent SmartMachine Appliance - http://t.co/VoqvRp2f", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 18:20:42 +0000", "from_user": "portertech", "from_user_id": 18593319, "from_user_id_str": "18593319", "from_user_name": "Sean Porter", "geo": null, "id": 146293415376715780, "id_str": "146293415376715778", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1408341185/CIMG2316_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1408341185/CIMG2316_normal.JPG", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@joyent Are you supporting the addition of your CloudAPI to @fog?", "to_user": "joyent", "to_user_id": 666523, "to_user_id_str": "666523", "to_user_name": "Joyent"}, +{"created_at": "Mon, 12 Dec 2011 18:19:09 +0000", "from_user": "lderezinski", "from_user_id": 6166672, "from_user_id_str": "6166672", "from_user_name": "Linda Derezinski", "geo": null, "id": 146293023347707900, "id_str": "146293023347707904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1575099705/lderezinski_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575099705/lderezinski_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @joyent: Congrats to @joyent customer @AKQA for \"Agency of the Year\" Award although we know you're a tech shop, too! http://t.co/cQ2hn6a7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 18:07:29 +0000", "from_user": "peteryorke", "from_user_id": 14136726, "from_user_id_str": "14136726", "from_user_name": "Peter Yorke", "geo": null, "id": 146290087372664830, "id_str": "146290087372664833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/51727717/peter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/51727717/peter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @joyent: Congrats to @joyent customer @AKQA for \"Agency of the Year\" Award although we know you're a tech shop, too! http://t.co/cQ2hn6a7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 17:05:05 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 146274384116580350, "id_str": "146274384116580353", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Congrats to @joyent customer @AKQA for \"Agency of the Year\" Award although we know you're a tech shop, too! http://t.co/cQ2hn6a7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 16:57:03 +0000", "from_user": "ozten", "from_user_id": 1127361, "from_user_id_str": "1127361", "from_user_name": "Austin King", "geo": null, "id": 146272362847944700, "id_str": "146272362847944704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1185824314/852abe2b-8b1a-4eef-b2a4-4a02919de305_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1185824314/852abe2b-8b1a-4eef-b2a4-4a02919de305_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lloydhilaiel: deeply impressed by @joyent's analytics for hosted node instances.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 16:50:58 +0000", "from_user": "lloydhilaiel", "from_user_id": 14103559, "from_user_id_str": "14103559", "from_user_name": "lloydhilaiel", "geo": null, "id": 146270831364931600, "id_str": "146270831364931584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1330527210/lloyd_maybe_thinking_zoom_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1330527210/lloyd_maybe_thinking_zoom_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@sh1mmer can i use node 0.6 on a joyent smartmachine? recommended approach?", "to_user": "sh1mmer", "to_user_id": 63803, "to_user_id_str": "63803", "to_user_name": "Tom Hughes-Croucher"}, +{"created_at": "Mon, 12 Dec 2011 16:47:55 +0000", "from_user": "lloydhilaiel", "from_user_id": 14103559, "from_user_id_str": "14103559", "from_user_name": "lloydhilaiel", "geo": null, "id": 146270065141100540, "id_str": "146270065141100545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1330527210/lloyd_maybe_thinking_zoom_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1330527210/lloyd_maybe_thinking_zoom_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "deeply impressed by @joyent's analytics for hosted node instances.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 16:41:42 +0000", "from_user": "davidpaulyoung", "from_user_id": 10637, "from_user_id_str": "10637", "from_user_name": "David Young", "geo": null, "id": 146268501491982340, "id_str": "146268501491982337", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/14395312/icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/14395312/icon_normal.jpg", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "I'm at Joyent (345 California St, #2000, San Francisco) http://t.co/6qTwICYz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 16:35:43 +0000", "from_user": "tanepiper", "from_user_id": 20693, "from_user_id_str": "20693", "from_user_name": "Tane Piper", "geo": null, "id": 146266991970365440, "id_str": "146266991970365441", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1654339360/dizzy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654339360/dizzy_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @cramforce: Node.js sucks (Disclaimer: This statement is a violation of Node.js Project Trademark policy http://t.co/F80s1P7 DO NOT DISTRIBUTE) :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 15:57:25 +0000", "from_user": "johnashenfelter", "from_user_id": 3456501, "from_user_id_str": "3456501", "from_user_name": "John Ashenfelter", "geo": null, "id": 146257353560440830, "id_str": "146257353560440834", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/804816402/IMG_1583_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/804816402/IMG_1583_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "AppSumo lifetime giveaways rock. http://t.co/lsVem9CU via @appsumo. I have 3x lifetimes to Joyent products which is awesome", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 15:12:06 +0000", "from_user": "Ajido", "from_user_id": 19598915, "from_user_id_str": "19598915", "from_user_name": "Ajido", "geo": null, "id": 146245949600174080, "id_str": "146245949600174081", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/679286203/19526_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/679286203/19526_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NodeJS : OSX \\u3067 process.title \\u4F7F\\u3046\\u3068\\u30A8\\u30E9\\u30FC\\u3002ObjC\\u3067\\u5BFE\\u51E6\\u3059\\u308B\\u65B9\\u6CD5\\u3057\\u304B\\u306A\\u304F\\u3066\\u4ECA\\u306E\\u3068\\u3053\\u308D\\u56DE\\u907F\\u7B56\\u306A\\u3057 http://t.co/8MyegD6U", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 14:54:07 +0000", "from_user": "juandopazo", "from_user_id": 18214427, "from_user_id_str": "18214427", "from_user_name": "Juan Ignacio Dopazo", "geo": null, "id": 146241426974449660, "id_str": "146241426974449664", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1355503135/wizard2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1355503135/wizard2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Aijoona esta Joyent, pero no da dominio gratis", "to_user": "Aijoona", "to_user_id": 249623997, "to_user_id_str": "249623997", "to_user_name": "Valentin Starck", "in_reply_to_status_id": 146240327336988670, "in_reply_to_status_id_str": "146240327336988673"}, +{"created_at": "Mon, 12 Dec 2011 12:14:38 +0000", "from_user": "softdevtools", "from_user_id": 47565897, "from_user_id_str": "47565897", "from_user_name": "Software Tools", "geo": null, "id": 146201291125829630, "id_str": "146201291125829633", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#programming Joyent Announces SmartMachine Appliance for MongoDB http://t.co/gdkEOjS2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 11:50:44 +0000", "from_user": "benbowhasayh8", "from_user_id": 390415053, "from_user_id_str": "390415053", "from_user_name": "Benbow Lawless", "geo": null, "id": 146195276909117440, "id_str": "146195276909117440", "iso_language_code": "is", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1587109853/imagesCAGUPKDS_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587109853/imagesCAGUPKDS_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Ma_Dann http://t.co/AwPepJ5c", "to_user": "Ma_Dann", "to_user_id": 308117340, "to_user_id_str": "308117340", "to_user_name": "Daniela Macias Salto", "in_reply_to_status_id": 146062701754458100, "in_reply_to_status_id_str": "146062701754458112"}, +{"created_at": "Mon, 12 Dec 2011 11:46:51 +0000", "from_user": "benbowhasayh8", "from_user_id": 390415053, "from_user_id_str": "390415053", "from_user_name": "Benbow Lawless", "geo": null, "id": 146194297761435650, "id_str": "146194297761435649", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1587109853/imagesCAGUPKDS_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587109853/imagesCAGUPKDS_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SyddRayy5 http://t.co/AwPepJ5c", "to_user": "SyddRayy5", "to_user_id": 433540513, "to_user_id_str": "433540513", "to_user_name": "Sydney(:", "in_reply_to_status_id": 146062727775916030, "in_reply_to_status_id_str": "146062727775916032"}, +{"created_at": "Mon, 12 Dec 2011 11:01:21 +0000", "from_user": "micloudservice", "from_user_id": 372609363, "from_user_id_str": "372609363", "from_user_name": "micloud", "geo": null, "id": 146182849073119230, "id_str": "146182849073119233", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Financial Times\\u5C08\\u8A2A\\u3002 http://t.co/o5ibNudA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 10:59:58 +0000", "from_user": "micloudservice", "from_user_id": 372609363, "from_user_id_str": "372609363", "from_user_name": "micloud", "geo": null, "id": 146182499125571600, "id_str": "146182499125571584", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Financial Times\\u5C08\\u8A2A\\u3002 http://t.co/i3Smc4Ik", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 09:46:44 +0000", "from_user": "forgetcomputers", "from_user_id": 15758840, "from_user_id_str": "15758840", "from_user_name": "Forget Computers", "geo": null, "id": 146164071698411520, "id_str": "146164071698411520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/316992618/newicon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/316992618/newicon_normal.png", "source": "<a href="http://paper.li" rel="nofollow">Paper.li</a>", "text": "Forget Computers Mac & iOS News is out! http://t.co/jF5cvcPx \\u25B8 Top stories today via @joyent @tidbits @theloop1 @bentofilemaker", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 08:54:18 +0000", "from_user": "BlaastDevID", "from_user_id": 315021844, "from_user_id_str": "315021844", "from_user_name": "Blaast Dev ID", "geo": null, "id": 146150873322627070, "id_str": "146150873322627072", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1390876217/logo2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1390876217/logo2_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Jasoet: @blaastdevid Menginstall Blaast SDK di Ubuntu 11.10. problemnya http://t.co/LrMtXScF solusinya patch 2 file http://t.co/LaXZBw6B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 05:25:03 +0000", "from_user": "laabroo", "from_user_id": 103222901, "from_user_id_str": "103222901", "from_user_name": "Ikhsyan Hasan \\u0639 \\u0631\\u064A\\u062D\\u0627", "geo": null, "id": 146098213374541820, "id_str": "146098213374541824", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1675362262/ninjas_thumb_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675362262/ninjas_thumb_normal.png", "source": "<a href="http://publicize.wp.com/" rel="nofollow">WordPress.com</a>", "text": "https github com joyent node wiki modules https... http://t.co/q6EpoYwY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 04:15:06 +0000", "from_user": "ldlittlesix7", "from_user_id": 29847835, "from_user_id_str": "29847835", "from_user_name": "LD+Little", "geo": +{"coordinates": [47.5845,-122.3894], "type": "Point"}, "id": 146080610681761800, "id_str": "146080610681761792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1634394290/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634394290/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@joyent: At the library in SF saw 3 teens studying today using our customer @quizlet! - online flash cards....\" I'm a big @quizlet fan too!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} + +, +{"created_at": "Mon, 19 Dec 2011 19:00:37 +0000", "from_user": "ejweeks", "from_user_id": 26070781, "from_user_id_str": "26070781", "from_user_name": "Emily Weeks", "geo": null, "id": 148840173306789900, "id_str": "148840173306789888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1380497632/IMG_1353_2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1380497632/IMG_1353_2_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Beautiful cold clear day in NYC. Gonna go play a little football... Wait, what? #roadto14 #professional", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:37 +0000", "from_user": "spadia_stage", "from_user_id": 344001830, "from_user_id_str": "344001830", "from_user_name": "Spadia One", "geo": null, "id": 148840172199485440, "id_str": "148840172199485440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://stable.spadia.com" rel="nofollow">Spadia - Stable</a>", "text": "TEST TO: StephanieMller FROM: Spadia_nyc MESSAGE: @StephanieMller Another test from", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:36 +0000", "from_user": "theurbandiaries", "from_user_id": 321732910, "from_user_id_str": "321732910", "from_user_name": "cindy b.", "geo": null, "id": 148840171821989900, "id_str": "148840171821989888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687414735/Default_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687414735/Default_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "LCD Soundsystem covers Franz Ferdinand's \"Live Alone\"; The video features a fab #NYC cityscape montage, check it out - http://t.co/vaI0L6DW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:33 +0000", "from_user": "PMAnswerBook", "from_user_id": 210611183, "from_user_id_str": "210611183", "from_user_name": "Jeff Furman", "geo": null, "id": 148840158345691140, "id_str": "148840158345691136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1263887645/_Headshot.JeffFurmanwatermark_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263887645/_Headshot.JeffFurmanwatermark_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Thx @PMCampus for sharing my post: \"Upcoming AGILE events in NYC\" http://t.co/Ax5XFMHW TOP STORY in PM Campus Daily #agile #agilepm #pmp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:32 +0000", "from_user": "EsteffyDurand", "from_user_id": 102900559, "from_user_id_str": "102900559", "from_user_name": "Es\\u0442eff\\u0447 Du\\u044Fa\\u014Bd", "geo": null, "id": 148840154738606080, "id_str": "148840154738606080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1677828892/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677828892/me_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "RT @IanKeaggy: NYC subway system > ian.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:30 +0000", "from_user": "AROD5005", "from_user_id": 23924152, "from_user_id_str": "23924152", "from_user_name": "ALBERTO RODRIGUEZ", "geo": null, "id": 148840145624375300, "id_str": "148840145624375296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1241177766/AROD5005_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1241177766/AROD5005_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Dlauraposada Thats gr8 familia..because \"No Hay Nieve\" en NYC ..!", "to_user": "Dlauraposada", "to_user_id": 183245447, "to_user_id_str": "183245447", "to_user_name": "Laura Posada", "in_reply_to_status_id": 148836058912661500, "in_reply_to_status_id_str": "148836058912661505"}, +{"created_at": "Mon, 19 Dec 2011 19:00:29 +0000", "from_user": "spadia_stage", "from_user_id": 344001830, "from_user_id_str": "344001830", "from_user_name": "Spadia One", "geo": null, "id": 148840142629650430, "id_str": "148840142629650432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://stable.spadia.com" rel="nofollow">Spadia - Stable</a>", "text": "TEST TO: TomsTravelTweet FROM: Spadia_nyc MESSAGE: @TomsTravelTweet Another test from", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:29 +0000", "from_user": "urbaninterns", "from_user_id": 19374993, "from_user_id_str": "19374993", "from_user_name": "Urban Interns", "geo": null, "id": 148840141610422270, "id_str": "148840141610422273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1192890069/Screen_shot_2010-12-17_at_2.44.00_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1192890069/Screen_shot_2010-12-17_at_2.44.00_PM_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Public Relations position at Mix Brands LLC (NYC) http://t.co/VSaRpAdi #NYCJobs #Intern #Internships #PartTimeJobs #PR #JobSearch #JobHunt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:29 +0000", "from_user": "t_odom", "from_user_id": 410246341, "from_user_id_str": "410246341", "from_user_name": "\\u0442\\u03B1ylor \\u043Ed\\u043E\\u043C", "geo": null, "id": 148840138598912000, "id_str": "148840138598912000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700848693/IMG_7951_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700848693/IMG_7951_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @Roscoedash: Got my Famous pjs on in LAX bouta b NYC bound!!! till then zzzzzzzzz yea all in the sky wit it!!!! #ImJustSWAGGING", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:28 +0000", "from_user": "dewsterTW", "from_user_id": 181214382, "from_user_id_str": "181214382", "from_user_name": "Dewi Kartini Remblee", "geo": null, "id": 148840136103297020, "id_str": "148840136103297024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1528497284/307250_269686396393041_100000550479885_1039703_5137155_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1528497284/307250_269686396393041_100000550479885_1039703_5137155_n_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "RT @IanKeaggy: NYC subway system > ian.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:28 +0000", "from_user": "FUCK_JOJO_32", "from_user_id": 409557891, "from_user_id_str": "409557891", "from_user_name": "MR. VoyR", "geo": null, "id": 148840135293808640, "id_str": "148840135293808640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701333454/3673058387_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701333454/3673058387_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@potionnumbr9 i live in philly i just be in NYC almost everyday for fashion show ...hbu?", "to_user": "potionnumbr9", "to_user_id": 238844962, "to_user_id_str": "238844962", "to_user_name": " F.L.Y ", "in_reply_to_status_id": 148839570987954180, "in_reply_to_status_id_str": "148839570987954177"}, +{"created_at": "Mon, 19 Dec 2011 19:00:26 +0000", "from_user": "justdeezB", "from_user_id": 41010054, "from_user_id_str": "41010054", "from_user_name": "Kwaku B. Siaw", "geo": null, "id": 148840128993959940, "id_str": "148840128993959936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680585929/DSC00788_B_w_4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680585929/DSC00788_B_w_4_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "So he got waived? RT @GiantsCRDept: @Giants Deon Grant helps pack shelf stable meals for elderly in need at #CityMeals warehouse in NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:25 +0000", "from_user": "InHandGuides", "from_user_id": 237269069, "from_user_id_str": "237269069", "from_user_name": "InHandGuides", "geo": null, "id": 148840125663686660, "id_str": "148840125663686656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1213679213/IHG_Twitter_Picture_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1213679213/IHG_Twitter_Picture_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @NewYorkHabitat: That is pretty rad RT @anastasiakry: Best window display, Sephora #nyc http://t.co/8PxAe67a", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:25 +0000", "from_user": "KrisKilcullen", "from_user_id": 353296697, "from_user_id_str": "353296697", "from_user_name": "Boo, You Whore.", "geo": null, "id": 148840125646901250, "id_str": "148840125646901248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1660951166/kkkk_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660951166/kkkk_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @HotChelleRae: Don\\u2019t forget! We are playing a private show today at 5PM EST at the @iHeartRadio Theater in NYC. Enter for tix here: http://t.co/AzJSN2zV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:25 +0000", "from_user": "SuPerlative73", "from_user_id": 18657945, "from_user_id_str": "18657945", "from_user_name": "SoleBrothaMakesBeats", "geo": null, "id": 148840125474938880, "id_str": "148840125474938880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682772178/331157764_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682772178/331157764_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@Baron_Davis a Knick... I'm impressed... Knicks might have saved face by signing u up! Good luck in NYC bro!", "to_user": "Baron_Davis", "to_user_id": 21056862, "to_user_id_str": "21056862", "to_user_name": "Baron Davis"}, +{"created_at": "Mon, 19 Dec 2011 19:00:25 +0000", "from_user": "HartlysHome", "from_user_id": 26966675, "from_user_id_str": "26966675", "from_user_name": "Hartly", "geo": null, "id": 148840122161446900, "id_str": "148840122161446912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680225155/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680225155/image_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @EYEGEEOHDEE: #t9e #nowplaying Hartly - Bitter x Party 'Until We Die: \\n2 new tracks from upcoming NYC emcee Hartly. His debut... http://t.co/c7eIVHW7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:24 +0000", "from_user": "Loadingstore", "from_user_id": 85160535, "from_user_id_str": "85160535", "from_user_name": "Loading Store", "geo": null, "id": 148840121196740600, "id_str": "148840121196740611", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1254323479/Loadinglogoblog_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1254323479/Loadinglogoblog_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "UPDATED BLOG: Saw some old interview by Hypebeast on Mighty Heathy NYC. Check it out and learn more about them.... http://t.co/H5deZpHc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:23 +0000", "from_user": "ricktha_rula", "from_user_id": 236300283, "from_user_id_str": "236300283", "from_user_name": "Ricardo Sandoval ", "geo": null, "id": 148840116599783420, "id_str": "148840116599783425", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1530188962/Photo_on_2011-07-28_at_20.48__3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1530188962/Photo_on_2011-07-28_at_20.48__3_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@skhoobbagha really tho! its moving waaaay to fast. saw your fb post about NYC for new years that's gonna be a great experience!", "to_user": "skhoobbagha", "to_user_id": 262388364, "to_user_id_str": "262388364", "to_user_name": "Shereen", "in_reply_to_status_id": 148832509310926850, "in_reply_to_status_id_str": "148832509310926848"}, +{"created_at": "Mon, 19 Dec 2011 19:00:21 +0000", "from_user": "talhaa23", "from_user_id": 433291870, "from_user_id_str": "433291870", "from_user_name": "ImNew Here", "geo": null, "id": 148840105904316400, "id_str": "148840105904316418", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700394617/7930_638670906349_12817900_36656136_1601222_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700394617/7930_638670906349_12817900_36656136_1601222_n_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @democracynow: Occupy Wall Street NYC marks 3-month anniversary with re-occupation attempt, dozens arrested. http://t.co/jK0sLcnw #ows", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:21 +0000", "from_user": "StangParts4Sale", "from_user_id": 431925396, "from_user_id_str": "431925396", "from_user_name": "MustangPartsForSale", "geo": null, "id": 148840105493278720, "id_str": "148840105493278720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688090476/hot_mustang_chick_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688090476/hot_mustang_chick_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#Mustang #CA Newest 2012 Mustang Auctions for sale in New Jersey: Grab these Ford Mustang Parts &... http://t.co/qFODObEt #Ford #NYC #NJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:20 +0000", "from_user": "spadia_stage", "from_user_id": 344001830, "from_user_id_str": "344001830", "from_user_name": "Spadia One", "geo": null, "id": 148840104390168580, "id_str": "148840104390168576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://stable.spadia.com" rel="nofollow">Spadia - Stable</a>", "text": "TEST TO: Sanjuanitadl25 FROM: Spadia_nyc MESSAGE: @Sanjuanitadl25 Another test from", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:20 +0000", "from_user": "mattbrant1981", "from_user_id": 147927884, "from_user_id_str": "147927884", "from_user_name": "Matt Brantingham", "geo": null, "id": 148840102829883400, "id_str": "148840102829883392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/930462425/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/930462425/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@cultofmac: New post: NYC Cops Bust 141 Members Of Stolen iPhone Crime Ring http://t.co/X1omqQDB\\u201D #ilovecultofmac", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:20 +0000", "from_user": "Blissful_Hello", "from_user_id": 242327976, "from_user_id_str": "242327976", "from_user_name": "Dee", "geo": null, "id": 148840100845977600, "id_str": "148840100845977600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702451448/Blissful_Hello_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702451448/Blissful_Hello_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@Hov0608 @ZashB25 u need to hop on board !! RT @Blissful_Hello: Room booked NYC for my 25th bday it's a party http://t.co/cGVOC0d2", "to_user": "Hov0608", "to_user_id": 97608839, "to_user_id_str": "97608839", "to_user_name": "Jose Ortega"}, +{"created_at": "Mon, 19 Dec 2011 19:00:19 +0000", "from_user": "AraceliPotter1", "from_user_id": 358076880, "from_user_id_str": "358076880", "from_user_name": "AraceliPotter", "geo": null, "id": 148840099856125950, "id_str": "148840099856125953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1503224051/famke_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1503224051/famke_normal.jpg", "source": "<a href="http://www.instacheckin.com" rel="nofollow">Instacheckin</a>", "text": "Man suspected of torching 73-year-old woman in NYC elevator charged with ... - Washington Post http://t.co/ItkDLZSK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:19 +0000", "from_user": "TheOnlyMikeQ", "from_user_id": 29821220, "from_user_id_str": "29821220", "from_user_name": "MikeQ", "geo": null, "id": 148840097662517250, "id_str": "148840097662517248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1620874029/fade002-mikeq-let-it-all_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620874029/fade002-mikeq-let-it-all_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @LegendaryLuna: #VOGUEKNIGHTS 12/20 FQ REALNESS $50, BQ SEX SIREN $50, OTA PERFORMANCE $100 - $6 ALL NIGHT BEATS BY DJ MIKEQ 301 WEST 39TH ST, NYC 11pm-4am", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:19 +0000", "from_user": "iAmRozayMylan", "from_user_id": 394079360, "from_user_id_str": "394079360", "from_user_name": "Rozay Mylan ", "geo": null, "id": 148840097289216000, "id_str": "148840097289216000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695640552/iAmRozayMylan_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695640552/iAmRozayMylan_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Yes i was RT @lkl71111: @iAmRozayMylan ahhhhh i didnt know u were in nyc? where u there last weekend when i was? booooooo. im in miami now.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:19 +0000", "from_user": "fabulousNandda", "from_user_id": 79564184, "from_user_id_str": "79564184", "from_user_name": "Fernanda Pacheco", "geo": null, "id": 148840096928509950, "id_str": "148840096928509953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695909750/IMG_6433_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695909750/IMG_6433_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@WeezyFBaaaby yea I'm feeling lightweight better(: & tell me why ihella knew you were in NYC? Idk why isaid italy. You're in LA now?", "to_user": "WeezyFBaaaby", "to_user_id": 258082819, "to_user_id_str": "258082819", "to_user_name": "Frankie Lugo Jr.", "in_reply_to_status_id": 148823914435448830, "in_reply_to_status_id_str": "148823914435448833"}, +{"created_at": "Mon, 19 Dec 2011 19:00:17 +0000", "from_user": "fabibfuenmayor", "from_user_id": 62378361, "from_user_id_str": "62378361", "from_user_name": "Fabiola Fuenmayor", "geo": null, "id": 148840090528006140, "id_str": "148840090528006144", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1674259734/330919277_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674259734/330919277_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Que te vaya bien bitchitaaRT @msdanielaacuna: Ahora si, adios suckas, me voy a NYC BITCHES", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:17 +0000", "from_user": "thejohnbrian", "from_user_id": 42944839, "from_user_id_str": "42944839", "from_user_name": "J. Brian Hennessy", "geo": null, "id": 148840089865297920, "id_str": "148840089865297920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1193557876/Brian_BW_filter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1193557876/Brian_BW_filter_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "\"#Cornell University gets $350M gift for proposed sciences campus in NYC...\" Pivot Point for NYC as potential Tech Lea\\u2026http://t.co/JhsgK6Q9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:17 +0000", "from_user": "valdisrigdon", "from_user_id": 138481282, "from_user_id_str": "138481282", "from_user_name": "Valdis Rigdon", "geo": null, "id": 148840088623788030, "id_str": "148840088623788032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1213700292/valdis_rigdon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1213700292/valdis_rigdon_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Cornell Said Chosen for NYC Engineering Campus http://t.co/xPAOvzlu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:16 +0000", "from_user": "Pughhhhhhhh", "from_user_id": 339086632, "from_user_id_str": "339086632", "from_user_name": "zachary pugh", "geo": null, "id": 148840085121531900, "id_str": "148840085121531904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1453930138/227025_2082687671658_1379085551_2464430_5615456_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1453930138/227025_2082687671658_1379085551_2464430_5615456_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @AuburnJokes: More info has surfaced on the Mike Dyer situation at Auburn. He was upset he wasn't invited to the big awards ceremony in NYC.\\n\\nThe Highsman", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:15 +0000", "from_user": "StepInto_MyMind", "from_user_id": 348739547, "from_user_id_str": "348739547", "from_user_name": "Troy Daniels", "geo": null, "id": 148840080759472130, "id_str": "148840080759472128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695491103/bdbd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695491103/bdbd_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "I def want to go to nyc for new years", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:14 +0000", "from_user": "wispy28", "from_user_id": 257835555, "from_user_id_str": "257835555", "from_user_name": "Ade wispy whizzie", "geo": null, "id": 148840079627010050, "id_str": "148840079627010049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700499715/IMG00012-20110823-0918_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700499715/IMG00012-20110823-0918_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Nyc one\"@WomenOfHistory: Every evening I turn my worries over to God. He's going to be up all night anyway. -Mary C. Crowley\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:13 +0000", "from_user": "CASamps", "from_user_id": 132282230, "from_user_id_str": "132282230", "from_user_name": "Chris Sampogna", "geo": null, "id": 148840071737520130, "id_str": "148840071737520129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1643774003/fronhome_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643774003/fronhome_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@somethingsavage better. I just used samples from Avatar studios NYC cut with some of my studios samples. Go on my site and listen", "to_user": "somethingsavage", "to_user_id": 24134771, "to_user_id_str": "24134771", "to_user_name": "daniel savage", "in_reply_to_status_id": 148839768988454900, "in_reply_to_status_id_str": "148839768988454912"}, +{"created_at": "Mon, 19 Dec 2011 19:00:12 +0000", "from_user": "b_eternal757", "from_user_id": 192901546, "from_user_id_str": "192901546", "from_user_name": "B.Williams ", "geo": null, "id": 148840070525354000, "id_str": "148840070525353984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1656778992/profile_image_1322211056275_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656778992/profile_image_1322211056275_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @TalibKweli: RT @DJBOBBYTRENDS: NEW MUSIC: @TalibKweli - \"Distractions\" http://t.co/2sxPsKjc (NYC needs this on the radio Bobby holla!)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:12 +0000", "from_user": "Bones0311", "from_user_id": 47461281, "from_user_id_str": "47461281", "from_user_name": "Chris Bodiford", "geo": null, "id": 148840070034624500, "id_str": "148840070034624513", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1498505478/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1498505478/image_normal.jpg", "source": "<a href="http://www.myyearbook.com/" rel="nofollow">myYearbook Share</a>", "text": "It seems like every time a big monster comes to the USA they go straight to NYC: http://t.co/d3JzQYOt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:12 +0000", "from_user": "_OliviaJ", "from_user_id": 157040563, "from_user_id_str": "157040563", "from_user_name": "Olivia Jane Ford", "geo": null, "id": 148840068432412670, "id_str": "148840068432412672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1592989464/270756_2239300827984_1411939621_32617157_2674237_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592989464/270756_2239300827984_1411939621_32617157_2674237_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @vmagazine: Stream \"Liquorice\" \\u266C the new track from NYC rapper @AZEALIABANKS http://t.co/RYjCwZgK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:10 +0000", "from_user": "annehelen", "from_user_id": 16714443, "from_user_id_str": "16714443", "from_user_name": "Anne Helen Petersen ", "geo": null, "id": 148840061536960500, "id_str": "148840061536960512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1205160380/Rita_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1205160380/Rita_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Christmas Wishes across NYC: http://t.co/xvOIxHwX (via @thehairpin; surprisingly poignant )", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:09 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148840057854365700, "id_str": "148840057854365696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @sales4NYC: #sales4u #sales Salomon F20 David Benedeck Model Snowboard Boots (LIC) $105 http://t.co/EHkhxQCG #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:10 +0000", "from_user": "servingface", "from_user_id": 38123485, "from_user_id_str": "38123485", "from_user_name": "Jaeden Gibbs.", "geo": null, "id": 148840056730304500, "id_str": "148840056730304514", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1015303040/080_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1015303040/080_normal.JPG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Marsha...Ledisi and sharon jones at VH1 divas celebration in NYC. http://t.co/cJmiYAlz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:09 +0000", "from_user": "VisitWilmington", "from_user_id": 97481307, "from_user_id_str": "97481307", "from_user_name": "Visit Wilmington DE", "geo": null, "id": 148840056717705200, "id_str": "148840056717705216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1179324581/NEWTWITTER2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1179324581/NEWTWITTER2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "1 hr remains for you to like our FB post to earn a chance to win 4 passes to @winterthurmuse! #museums #wilmde #philadelphia #NYC #MD #NJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:08 +0000", "from_user": "NewYorkHabitat", "from_user_id": 20182700, "from_user_id_str": "20182700", "from_user_name": "New York Habitat", "geo": null, "id": 148840053408407550, "id_str": "148840053408407552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1488175236/logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1488175236/logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Fantastic! RT @shoestrngtrvls: Guest post from @nodnsmileNYC - NYC Holiday Attractions for Kids of All Ages! - http://t.co/LzDckSu1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:08 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148840053261602800, "id_str": "148840053261602816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @sales4NYC: #sales4u #sales !!AFFORDABLE WICKED TICKETS!! (GERSHWIN THEATRE) http://t.co/wxUYf4dm #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:08 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148840051680354300, "id_str": "148840051680354304", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @sales4NYC: #sales4u #sales Classic Timberland Khaki/Suede String Bag - Vintage (Riverdale) $20 http://t.co/IqP1qg5z #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:07 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148840049482530800, "id_str": "148840049482530816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @sales4NYC: #sales4u #sales 2 tickets to PHISH! 12/28 $110 http://t.co/m8IkA8qr #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:06 +0000", "from_user": "JoeyNYC03", "from_user_id": 214325879, "from_user_id_str": "214325879", "from_user_name": "Carlos Diplan", "geo": null, "id": 148840045225316350, "id_str": "148840045225316353", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1164849026/IMG00090-20100727-1751_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1164849026/IMG00090-20100727-1751_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", "text": "Just a few hour from going back to #NYC back to the cold weather!!!! \\uD83D\\uDE2D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:06 +0000", "from_user": "sales4peeps", "from_user_id": 429668878, "from_user_id_str": "429668878", "from_user_name": "Craigslist sales4USA", "geo": null, "id": 148840044378071040, "id_str": "148840044378071041", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676756739/trade_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676756739/trade_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @sales4NYC: #sales4u #sales Salomon F20 David Benedeck Model Snowboard Boots (LIC) $105 http://t.co/EHkhxQCG #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:06 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148840043526631420, "id_str": "148840043526631428", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @sales4NYC: #sales4u #sales *****CHEAP WICKED TICKETS***** (GERSHWIN THEATRE) http://t.co/GDtTU7EG #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:06 +0000", "from_user": "sales4peeps", "from_user_id": 429668878, "from_user_id_str": "429668878", "from_user_name": "Craigslist sales4USA", "geo": null, "id": 148840042943619070, "id_str": "148840042943619072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676756739/trade_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676756739/trade_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @sales4NYC: #sales4u #sales !!AFFORDABLE WICKED TICKETS!! (GERSHWIN THEATRE) http://t.co/wxUYf4dm #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:05 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148840040238293000, "id_str": "148840040238292994", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @gigs4NYC: #gigs4u #gigs Thin, Bright,Enthusiastic Gal? (NYC) http://t.co/WhVJYSF2 #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:05 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148840038367641600, "id_str": "148840038367641600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @gigs4NYC: #gigs4u #gigs Pantyhose-Nylon-Stockings fun gig with open minded gal today (New York) http://t.co/aihFhdGj #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:04 +0000", "from_user": "TimeInNYC", "from_user_id": 253915109, "from_user_id_str": "253915109", "from_user_name": "Time In New York", "geo": null, "id": 148840037558132740, "id_str": "148840037558132737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1497851931/time_in_newyork_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1497851931/time_in_newyork_normal.png", "source": "<a href="http://google.com" rel="nofollow">Time In New York</a>", "text": "#NYC The current time in New York City is 2:00 PM on Monday, 19 December 2011", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:04 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148840036761206800, "id_str": "148840036761206784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @gigs4NYC: #gigs4u #gigs DIRECTOR CASTING NEW YORK VIDEO SHOOT (Midtown) http://t.co/OEkPyqMZ #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:04 +0000", "from_user": "sales4peeps", "from_user_id": 429668878, "from_user_id_str": "429668878", "from_user_name": "Craigslist sales4USA", "geo": null, "id": 148840036408893440, "id_str": "148840036408893441", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676756739/trade_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676756739/trade_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @sales4NYC: #sales4u #sales Classic Timberland Khaki/Suede String Bag - Vintage (Riverdale) $20 http://t.co/IqP1qg5z #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:04 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148840034802483200, "id_str": "148840034802483200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @gigs4NYC: #gigs4u #gigs workout accountability http://t.co/mFqmPsjF #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:04 +0000", "from_user": "sales4peeps", "from_user_id": 429668878, "from_user_id_str": "429668878", "from_user_name": "Craigslist sales4USA", "geo": null, "id": 148840033879728130, "id_str": "148840033879728130", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676756739/trade_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676756739/trade_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @sales4NYC: #sales4u #sales 2 tickets to PHISH! 12/28 $110 http://t.co/m8IkA8qr #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:03 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148840032667566080, "id_str": "148840032667566080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @gigs4NYC: #gigs4u #gigs looking for Inshape Male (queens) http://t.co/MR2mhwvE #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:03 +0000", "from_user": "OccupyWeather", "from_user_id": 400559295, "from_user_id_str": "400559295", "from_user_name": "Occupy Weather", "geo": null, "id": 148840032596267000, "id_str": "148840032596267008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1612658667/ows_retreats_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612658667/ows_retreats_normal.jpg", "source": "<a href="http://24Ahead.com/" rel="nofollow">OccupyWeather</a>", "text": "Forecast for NYC Thursday night: Mostly clear. Low temp: 42F. #OWS #tcot #p2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:03 +0000", "from_user": "sales4peeps", "from_user_id": 429668878, "from_user_id_str": "429668878", "from_user_name": "Craigslist sales4USA", "geo": null, "id": 148840031753224200, "id_str": "148840031753224195", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676756739/trade_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676756739/trade_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @sales4NYC: #sales4u #sales *****CHEAP WICKED TICKETS***** (GERSHWIN THEATRE) http://t.co/GDtTU7EG #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:03 +0000", "from_user": "Erica11M", "from_user_id": 343573194, "from_user_id_str": "343573194", "from_user_name": "Erica Mora", "geo": null, "id": 148840031635771400, "id_str": "148840031635771392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1632695826/2499a3f4-61a1-4083-b7b2-c7a755fc5b2b_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632695826/2499a3f4-61a1-4083-b7b2-c7a755fc5b2b_normal.png", "source": "<a href="http://twitpic.com" rel="nofollow">Twitpic</a>", "text": "Clear blue skies and the Empire State Building #NYC http://t.co/BSNgzOm7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:03 +0000", "from_user": "kittylight", "from_user_id": 78063171, "from_user_id_str": "78063171", "from_user_name": "KAlien Black", "geo": null, "id": 148840031547699200, "id_str": "148840031547699200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1588098944/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1588098944/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Timcast: This is a message to the trolls. I have spent 0$ in donations and I am homeless in NYC. I will keep streaming! :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:03 +0000", "from_user": "ExpedLearning", "from_user_id": 113924568, "from_user_id_str": "113924568", "from_user_name": "Expeditionary Learni", "geo": null, "id": 148840031392505860, "id_str": "148840031392505856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1099030752/el-twitter-01_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1099030752/el-twitter-01_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @paolavita: @NYCOutwardBound Watch NYC Outward Bound's Washington Heights Expeditionary Learning School on NY1 http://t.co/N0xz3ih8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:02 +0000", "from_user": "OccupyWeather", "from_user_id": 400559295, "from_user_id_str": "400559295", "from_user_name": "Occupy Weather", "geo": null, "id": 148840026871042050, "id_str": "148840026871042048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1612658667/ows_retreats_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612658667/ows_retreats_normal.jpg", "source": "<a href="http://24Ahead.com/" rel="nofollow">OccupyWeather</a>", "text": "Forecast for NYC THANKSGIVING DAY: Sunny. High temp: 52F. #OWS #GlennBeck #teaparty", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:00 +0000", "from_user": "robbywest16", "from_user_id": 431183867, "from_user_id_str": "431183867", "from_user_name": "Robby West", "geo": null, "id": 148840019400990720, "id_str": "148840019400990720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690362223/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690362223/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "At the nike store in nyc best thing ever", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:59 +0000", "from_user": "aethan", "from_user_id": 18247140, "from_user_id_str": "18247140", "from_user_name": "WE ACT Aethalometer", "geo": null, "id": 148840015026323460, "id_str": "148840015026323456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/67993655/aethan_73x73_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/67993655/aethan_73x73_normal.gif", "source": "<a href="http://twittercounter.com" rel="nofollow">The Visitor Widget</a>", "text": "In NYC today, Monday, Dec(12) 19, 2011, the Sun sets at 4:30 PM (rose at 7:16 AM) after a 9-hour 15-minute long day...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:58 +0000", "from_user": "honeycareless", "from_user_id": 175785523, "from_user_id_str": "175785523", "from_user_name": "Asli...\\u2665\\u266B\\u266A \\u1D30\\u1D3F\\u1D31\\u1D2C\\u1D39 \\u1D2E\\u1D35\\u1D33", "geo": null, "id": 148840009896697860, "id_str": "148840009896697857", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1666769623/330687308_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666769623/330687308_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SelenaStayer: If Selena could go anywhere it would be Greece, or Fiji and her ideal places to live would be NYC, London or back home in Texas. #GomezFact.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:57 +0000", "from_user": "MitziMichaels", "from_user_id": 68225317, "from_user_id_str": "68225317", "from_user_name": "Mitzi Michaels", "geo": null, "id": 148840004364406800, "id_str": "148840004364406784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1283284961/IMG00142-20100304-2053_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1283284961/IMG00142-20100304-2053_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@ellynmarsh don't be jelly. I would totes cast u in Fiddler! Xo ps coming to NYC next month. See u soon", "to_user": "ellynmarsh", "to_user_id": 35658125, "to_user_id_str": "35658125", "to_user_name": "ellyn marsh", "in_reply_to_status_id": 148839541946581000, "in_reply_to_status_id_str": "148839541946580993"}, +{"created_at": "Mon, 19 Dec 2011 18:59:56 +0000", "from_user": "PhilFuaVie", "from_user_id": 360295405, "from_user_id_str": "360295405", "from_user_name": "Philip Fua", "geo": null, "id": 148840002619584500, "id_str": "148840002619584512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1509072638/1314062643_fence-materials_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509072638/1314062643_fence-materials_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/LSHKsbSr NYC protesters scale fence at vacant lot - The Associated Press", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:53 +0000", "from_user": "djenuff", "from_user_id": 16621413, "from_user_id_str": "16621413", "from_user_name": "DJ Enuff", "geo": null, "id": 148839988254085120, "id_str": "148839988254085120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1443584260/367b97695e449ea152b9e4b5aaa73b7b_view_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1443584260/367b97695e449ea152b9e4b5aaa73b7b_view_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @JO_VANGUARD: NEW YEARS EVE NYC AT THE PARLOUR! 247 W 30TH ST! @djenuff @THEDJCLO! ADV TIXX $40! HIT ME! HAPPY B-DAY @IamPLaVie! http://t.co/w4wr1iJC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:53 +0000", "from_user": "subtopes", "from_user_id": 21942676, "from_user_id_str": "21942676", "from_user_name": "subtopes", "geo": null, "id": 148839988237303800, "id_str": "148839988237303808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/83223177/414023552_c5b6ef81d2_o-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/83223177/414023552_c5b6ef81d2_o-1_normal.jpg", "source": "<a href="http://www.twhirl.org" rel="nofollow">Seesmic twhirl</a>", "text": "RT @StudioXNYC: Nice @atlanticCities post on well-designed perimeter security, plus slideshow of NYC's barrier beautification project | http://t.co/FUKJjAT7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:53 +0000", "from_user": "ShesSher", "from_user_id": 29781694, "from_user_id_str": "29781694", "from_user_name": "Sheri", "geo": null, "id": 148839987528466430, "id_str": "148839987528466434", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693287276/3340292609_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693287276/3340292609_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @nycnewsnow: No Bail for Man Accused of Burning Woman Alive http://t.co/4cf5EwI9 #newyork #nyc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:52 +0000", "from_user": "jadeleonard_x", "from_user_id": 150748568, "from_user_id_str": "150748568", "from_user_name": "Jade Leonard", "geo": null, "id": 148839984764420100, "id_str": "148839984764420096", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1646787181/jade_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646787181/jade_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@iparker11 Yeaah nyc! haha.", "to_user": "iparker11", "to_user_id": 189852972, "to_user_id_str": "189852972", "to_user_name": "Parker Ames"}, +{"created_at": "Mon, 19 Dec 2011 18:59:51 +0000", "from_user": "BuddhaHeadP", "from_user_id": 143593126, "from_user_id_str": "143593126", "from_user_name": "Dash Gautama", "geo": null, "id": 148839980146495500, "id_str": "148839980146495488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675964112/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675964112/image_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @EYEGEEOHDEE: #t9e #nowplaying Hartly - Bitter x Party 'Until We Die: \\n2 new tracks from upcoming NYC emcee Hartly. His debut... http://t.co/c7eIVHW7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:50 +0000", "from_user": "Silver_Suites", "from_user_id": 322162089, "from_user_id_str": "322162089", "from_user_name": "SuitesAtSilverTowers", "geo": null, "id": 148839978477174800, "id_str": "148839978477174784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1479310550/square-logo-suites-silver-towers_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1479310550/square-logo-suites-silver-towers_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "---> @NSAYMidtown Things to Do in #Midtown & #Hell's Kitchen: Dec. 19-23. New Intrepid Museum exhibit, CSI Experience http://t.co/FLce83jh", "to_user": "NSAYMidtown", "to_user_id": 191212164, "to_user_id_str": "191212164", "to_user_name": "Midtown ", "in_reply_to_status_id": 148833740343345150, "in_reply_to_status_id_str": "148833740343345152"}, +{"created_at": "Mon, 19 Dec 2011 18:59:50 +0000", "from_user": "Beana27", "from_user_id": 30300867, "from_user_id_str": "30300867", "from_user_name": "Amanda Montuori", "geo": null, "id": 148839975616647170, "id_str": "148839975616647169", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1583699006/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583699006/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@IanKeaggy see you soon in Nyc today! so stoked! <3 really hope i get to meet you", "to_user": "IanKeaggy", "to_user_id": 55699429, "to_user_id_str": "55699429", "to_user_name": "Ian Keaggy"}, +{"created_at": "Mon, 19 Dec 2011 18:59:46 +0000", "from_user": "AuburnJokes", "from_user_id": 407799590, "from_user_id_str": "407799590", "from_user_name": "Auburn Jokes", "geo": null, "id": 148839959007215600, "id_str": "148839959007215617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1647126788/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647126788/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "More info has surfaced on the Mike Dyer situation at Auburn. He was upset he wasn't invited to the big awards ceremony in NYC.\\n\\nThe Highsman", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:45 +0000", "from_user": "urbanchords", "from_user_id": 247038131, "from_user_id_str": "247038131", "from_user_name": "D.Deering", "geo": null, "id": 148839957912490000, "id_str": "148839957912489984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1345911244/profile_pict_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1345911244/profile_pict_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Yeah! Urban Houses! DIY: How to Make a Gingerbread Brooklyn Brownstone http://t.co/HNlxWBjz via @ThinkDevGrow", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:42 +0000", "from_user": "RussRealDiehl", "from_user_id": 272771172, "from_user_id_str": "272771172", "from_user_name": "Russell P. Diehl", "geo": null, "id": 148839945316999170, "id_str": "148839945316999168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1396647783/another_boo_boo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1396647783/another_boo_boo_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "AWESOME #JAM #SALE W/ #DEALS IN #NYC TONIGHT!! COME #PARTY HARDY W/ US!! YES!:)RT @NinaSky For more details on tonight- http://t.co/wqakdppl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:40 +0000", "from_user": "iambee39", "from_user_id": 138754838, "from_user_id_str": "138754838", "from_user_name": "double-b \\u2661", "geo": null, "id": 148839935661715460, "id_str": "148839935661715456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693289674/14122011237_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693289674/14122011237_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "RT @IanKeaggy: NYC subway system > ian.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:35 +0000", "from_user": "starjordan10", "from_user_id": 402444465, "from_user_id_str": "402444465", "from_user_name": "Jordan Segal", "geo": null, "id": 148839915218681860, "id_str": "148839915218681856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1678900900/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678900900/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @smhelloladies: In NYC. Did @OpieRadio show earlier and who should appear but @simonpegg. We traded some droll bon mots, natch. What a lovely man.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:35 +0000", "from_user": "asilahizhar", "from_user_id": 72031246, "from_user_id_str": "72031246", "from_user_name": "u mad? \\u0CA0_\\u0CA0", "geo": null, "id": 148839914417557500, "id_str": "148839914417557505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700032452/385062_309096472447068_100000401529626_1003738_439417333_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700032452/385062_309096472447068_100000401529626_1003738_439417333_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @HotChelleRae: Don\\u2019t forget! We are playing a private show today at 5PM EST at the @iHeartRadio Theater in NYC. Enter for tix here: http://t.co/AzJSN2zV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:33 +0000", "from_user": "SelenaMahone_", "from_user_id": 129608422, "from_user_id_str": "129608422", "from_user_name": "Sofia \\u2665", "geo": null, "id": 148839905013923840, "id_str": "148839905013923840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687723349/tumblr_lvu3po8JT91r1bznpo1_400_1__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687723349/tumblr_lvu3po8JT91r1bznpo1_400_1__normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SelenaStayer: If Selena could go anywhere it would be Greece, or Fiji and her ideal places to live would be NYC, London or back home in Texas. #GomezFact.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:33 +0000", "from_user": "most_popul_m8y", "from_user_id": 387096557, "from_user_id_str": "387096557", "from_user_name": "Most Popular News", "geo": null, "id": 148839904422535170, "id_str": "148839904422535168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1626739475/most_popul_m8y_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626739475/most_popul_m8y_normal.png", "source": "<a href="http://atm8y.com" rel="nofollow">@m8y</a>", "text": "The Lord Gave To NYC Tech Start-Ups And Universities, And The Lord Hath Taken Away #most-popular http://t.co/s5rbSdJR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:32 +0000", "from_user": "KadiBasdeo", "from_user_id": 22133158, "from_user_id_str": "22133158", "from_user_name": "kade", "geo": null, "id": 148839902170198000, "id_str": "148839902170198016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662314114/bryant_park2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662314114/bryant_park2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@KateJNicholson dear kt woo, NYC is just wonderful, my skin misses the tropical warmt ;) but i love that im having a COLD Christmas! miss U!", "to_user": "KateJNicholson", "to_user_id": 22891604, "to_user_id_str": "22891604", "to_user_name": "Kate Nicholson"}, +{"created_at": "Mon, 19 Dec 2011 18:59:31 +0000", "from_user": "altheajanesays", "from_user_id": 243007279, "from_user_id_str": "243007279", "from_user_name": "Althea Jane", "geo": null, "id": 148839898139475970, "id_str": "148839898139475968", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1330408596/IMG_0951_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1330408596/IMG_0951_2_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "A six-legged life, NYC-style: http://t.co/e2Duh7D3 http://t.co/4CE1DU9i", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:31 +0000", "from_user": "ohdinaaa", "from_user_id": 54128018, "from_user_id_str": "54128018", "from_user_name": "Medina-Danielle (:", "geo": null, "id": 148839897044746240, "id_str": "148839897044746241", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1672183891/1322952467-picsay_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672183891/1322952467-picsay_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "yay!! RT @realkingb catch me and @dgeladio in NYC Dec.26 thru 2012", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:30 +0000", "from_user": "AriGOnline", "from_user_id": 310943031, "from_user_id_str": "310943031", "from_user_name": "AriGOnline. \\u2665", "geo": null, "id": 148839893886443520, "id_str": "148839893886443520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701924198/Ag_3cMuCMAA1RyX_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701924198/Ag_3cMuCMAA1RyX_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ArianaGrande: If you're coming to my show on December 28 at @IrvingPlaza in NYC and want to come meet me after, here's how: http://t.co/1w7eeLFq! xoxo RT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:30 +0000", "from_user": "_Gemma325", "from_user_id": 52025991, "from_user_id_str": "52025991", "from_user_name": "Gemma", "geo": null, "id": 148839893777387520, "id_str": "148839893777387522", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1607464845/P1030046_-_Copy_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607464845/P1030046_-_Copy_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @smhelloladies: In NYC. Did @OpieRadio show earlier and who should appear but @simonpegg. We traded some droll bon mots, natch. What a lovely man.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:30 +0000", "from_user": "ShannonLetoRUS", "from_user_id": 351858750, "from_user_id_str": "351858750", "from_user_name": "Shannon Leto Russia", "geo": null, "id": 148839893756424200, "id_str": "148839893756424193", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1566224607/twittershanrusav_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566224607/twittershanrusav_normal.jpg", "source": "<a href="http://vk.com" rel="nofollow">vk.com pages</a>", "text": "07.12.2011 / \\u041E\\u0441\\u0442\\u0430\\u043B\\u044C\\u043D\\u044B\\u0435 \\u0444\\u043E\\u0442\\u043E\\u0433\\u0440\\u0430\\u0444\\u0438\\u0438 \\u0432 \\u0430\\u043B\\u044C\\u0431\\u043E\\u043C\\u0435 \"2011.12.07 NYC MARS300\". http://t.co/PrheYicP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:28 +0000", "from_user": "Locos_BabyMama", "from_user_id": 38967818, "from_user_id_str": "38967818", "from_user_name": "- ` d e s h a \\u2665 :)", "geo": null, "id": 148839886068260860, "id_str": "148839886068260866", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1674060723/376165_246727458710322_100001192080978_619621_905872248_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674060723/376165_246727458710322_100001192080978_619621_905872248_n_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @Roscoedash: Got my Famous pjs on in LAX bouta b NYC bound!!! till then zzzzzzzzz yea all in the sky wit it!!!! #ImJustSWAGGING", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:26 +0000", "from_user": "Jtaxgetdollaz", "from_user_id": 365953488, "from_user_id_str": "365953488", "from_user_name": "j tax", "geo": null, "id": 148839874496167940, "id_str": "148839874496167936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1609809643/JTAX_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609809643/JTAX_normal.jpg", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "Dec 28th @ The Secret Lounge 525 w 29th st. Nyc performance wit Juelz Santana .Admission is $20 .18 to party 21 to drink.#bagitup", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:25 +0000", "from_user": "crystullos", "from_user_id": 29130760, "from_user_id_str": "29130760", "from_user_name": "Crystal Tullos", "geo": null, "id": 148839873774764030, "id_str": "148839873774764032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1202697200/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1202697200/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Fun Family Tullos in NYC today...Dylan's candy bar, ice skating at Rockefeller, and FAO Swartz next...I love spoiling my boys!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:24 +0000", "from_user": "BenHagueComedy", "from_user_id": 193704159, "from_user_id_str": "193704159", "from_user_name": "Ben Hague", "geo": null, "id": 148839867747549200, "id_str": "148839867747549185", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1676285007/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676285007/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Hey followers. FOLLOW my buddy @MarkSajdak. He's my future writing partner in NYC. If u dont like him UNFOLLOW him. #GetEmWhereItHurts", "to_user": "MarkSajdak", "to_user_id": 273112122, "to_user_id_str": "273112122", "to_user_name": "Mark Sajdak", "in_reply_to_status_id": 148585208617250800, "in_reply_to_status_id_str": "148585208617250818"}, +{"created_at": "Mon, 19 Dec 2011 18:59:24 +0000", "from_user": "RonLikeHell", "from_user_id": 104954276, "from_user_id_str": "104954276", "from_user_name": "Ron Like Hell", "geo": null, "id": 148839866606682100, "id_str": "148839866606682112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1640818445/Ron_Like_Hell_WRECKED_11-12-11_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640818445/Ron_Like_Hell_WRECKED_11-12-11_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "send off party ABQ > NYC Spring 1998. thank you Eldon! http://t.co/YkaIWuWs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:24 +0000", "from_user": "tomazeli", "from_user_id": 18024173, "from_user_id_str": "18024173", "from_user_name": "tomazeli", "geo": null, "id": 148839866287919100, "id_str": "148839866287919104", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/66998457/eu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/66998457/eu_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@thiagoarantes: @tomazeli se prepare para muitas emo\\u00E7\\u00F5es com Robo Rally em NYC!\\u201D @ltomazeli", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:19 +0000", "from_user": "inhabitat", "from_user_id": 14150661, "from_user_id_str": "14150661", "from_user_name": "inhabitat", "geo": null, "id": 148839847094792200, "id_str": "148839847094792192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/51865670/OwliMcOwl_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/51865670/OwliMcOwl_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @InhabitatNYC: Cornell wins bid to build New York City's Applied Science Campus on Roosevelt Island: http://t.co/kw9ntcJy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:18 +0000", "from_user": "MattyBee628", "from_user_id": 116752966, "from_user_id_str": "116752966", "from_user_name": "MattyBee", "geo": null, "id": 148839844150382600, "id_str": "148839844150382592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1684486152/wR5IBmeT_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684486152/wR5IBmeT_normal", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @TalibKweli: RT @DJBOBBYTRENDS: NEW MUSIC: @TalibKweli - \"Distractions\" http://t.co/2sxPsKjc (NYC needs this on the radio Bobby holla!)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:17 +0000", "from_user": "nashoverstreet", "from_user_id": 28076725, "from_user_id_str": "28076725", "from_user_name": "Nash Overstreet", "geo": null, "id": 148839838857166850, "id_str": "148839838857166849", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639038646/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639038646/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @HotChelleRae: Don\\u2019t forget! We are playing a private show today at 5PM EST at the @iHeartRadio Theater in NYC. Enter for tix here: http://t.co/AzJSN2zV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:17 +0000", "from_user": "Concorde_Limo", "from_user_id": 69188107, "from_user_id_str": "69188107", "from_user_name": "Concorde Worldwide", "geo": null, "id": 148839838827819000, "id_str": "148839838827819008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/383770530/logo_icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/383770530/logo_icon_normal.jpg", "source": "<a href="http://publicize.wp.com/" rel="nofollow">WordPress.com</a>", "text": "A Magical Time in NYC with Chauffeured Transportation http://t.co/eoKCOt86", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:16 +0000", "from_user": "DinaMann", "from_user_id": 82366566, "from_user_id_str": "82366566", "from_user_name": "Dina Mann", "geo": null, "id": 148839832574099460, "id_str": "148839832574099456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/472626547/s8813816_34935986_1380_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/472626547/s8813816_34935986_1380_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @MyUpperWest: #UWS Coffee Bean & Tea Leaf At Amsterdam & 86th Officially Open (Finally): http://t.co/aX26uyqu #UpperWestSide #NYC @CoffeeBeanNY #caffeine", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:59:17 +0000", "from_user": "nashoverstreet", "from_user_id": 28076725, "from_user_id_str": "28076725", "from_user_name": "Nash Overstreet", "geo": null, "id": 148839838857166850, "id_str": "148839838857166849", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639038646/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639038646/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @HotChelleRae: Don\\u2019t forget! We are playing a private show today at 5PM EST at the @iHeartRadio Theater in NYC. Enter for tix here: http://t.co/AzJSN2zV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:17 +0000", "from_user": "Concorde_Limo", "from_user_id": 69188107, "from_user_id_str": "69188107", "from_user_name": "Concorde Worldwide", "geo": null, "id": 148839838827819000, "id_str": "148839838827819008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/383770530/logo_icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/383770530/logo_icon_normal.jpg", "source": "<a href="http://publicize.wp.com/" rel="nofollow">WordPress.com</a>", "text": "A Magical Time in NYC with Chauffeured Transportation http://t.co/eoKCOt86", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:16 +0000", "from_user": "DinaMann", "from_user_id": 82366566, "from_user_id_str": "82366566", "from_user_name": "Dina Mann", "geo": null, "id": 148839832574099460, "id_str": "148839832574099456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/472626547/s8813816_34935986_1380_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/472626547/s8813816_34935986_1380_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @MyUpperWest: #UWS Coffee Bean & Tea Leaf At Amsterdam & 86th Officially Open (Finally): http://t.co/aX26uyqu #UpperWestSide #NYC @CoffeeBeanNY #caffeine", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:15 +0000", "from_user": "SpiritForceMag", "from_user_id": 406640867, "from_user_id_str": "406640867", "from_user_name": "Jayne Mortimore", "geo": null, "id": 148839832167260160, "id_str": "148839832167260160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1626331589/Snapshot_201108261_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626331589/Snapshot_201108261_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MostHaunted2012: New Most Haunted Christmas Spirits DVD now out!!!! http://t.co/8rbInVxA RT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:14 +0000", "from_user": "rac2007", "from_user_id": 8716202, "from_user_id_str": "8716202", "from_user_name": "Aaron ", "geo": null, "id": 148839826488176640, "id_str": "148839826488176640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1487464382/n649151452_718510_5754_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1487464382/n649151452_718510_5754_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @luisakroll: 22-year-old daughter of billionaire pays $88 million for NYC apartment http://t.co/K22OnjV5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:14 +0000", "from_user": "LegendaryLuna", "from_user_id": 232375375, "from_user_id_str": "232375375", "from_user_name": "Luna Luis", "geo": null, "id": 148839824596533250, "id_str": "148839824596533248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1202895346/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1202895346/me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#VOGUEKNIGHTS 12/20 FQ REALNESS $50, BQ SEX SIREN $50, OTA PERFORMANCE $100 - $6 ALL NIGHT BEATS BY DJ MIKEQ 301 WEST 39TH ST, NYC 11pm-4am", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:13 +0000", "from_user": "InhabitatNYC", "from_user_id": 106450876, "from_user_id_str": "106450876", "from_user_name": "InhabitatNYC", "geo": null, "id": 148839822977531900, "id_str": "148839822977531904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/641907421/Picture_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/641907421/Picture_2_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Cornell wins bid to build New York City's Applied Science Campus on Roosevelt Island: http://t.co/4gcMPbmR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:13 +0000", "from_user": "alison47", "from_user_id": 5415382, "from_user_id_str": "5415382", "from_user_name": "alison Hellman", "geo": null, "id": 148839821798944770, "id_str": "148839821798944768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1659657189/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659657189/image_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @MyUpperWest: #UWS Coffee Bean & Tea Leaf At Amsterdam & 86th Officially Open (Finally): http://t.co/aX26uyqu #UpperWestSide #NYC @CoffeeBeanNY #caffeine", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:12 +0000", "from_user": "SubatomicSound", "from_user_id": 19664819, "from_user_id_str": "19664819", "from_user_name": "SubatomicSoundSystem", "geo": null, "id": 148839819726954500, "id_str": "148839819726954496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/768839063/SoundSystemSpkrWall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/768839063/SoundSystemSpkrWall_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "On flight NYC to Seattle for Jam Jam party at Chop Suey tonight!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:12 +0000", "from_user": "SiLLyMoniLy8752", "from_user_id": 68185088, "from_user_id_str": "68185088", "from_user_name": "Moni \\u2661", "geo": null, "id": 148839819211051000, "id_str": "148839819211051008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1673469062/fAr3w7cU_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673469062/fAr3w7cU_normal", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@diana_anayah Anyone down for a roadtrip to NYC..my car but you drive?? :)\\u201D lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:12 +0000", "from_user": "osnapitzdannii", "from_user_id": 270060184, "from_user_id_str": "270060184", "from_user_name": "danielle. \\u10E6", "geo": null, "id": 148839817168437250, "id_str": "148839817168437248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701588047/472212501_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701588047/472212501_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "i'll be sooo upset if my mom says i cant go see ariana in nyc.. it'll just be soooo sad", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:10 +0000", "from_user": "BaylorGomezRox", "from_user_id": 158469551, "from_user_id_str": "158469551", "from_user_name": "Selena Gomez Fan! ", "geo": null, "id": 148839809824210940, "id_str": "148839809824210944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700460661/Selena-Gomez-And-Her-Mom_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700460661/Selena-Gomez-And-Her-Mom_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SelenaStayer: If Selena could go anywhere it would be Greece, or Fiji and her ideal places to live would be NYC, London or back home in Texas. #GomezFact.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:10 +0000", "from_user": "SER1897", "from_user_id": 334178844, "from_user_id_str": "334178844", "from_user_name": "Stephen Robinson", "geo": null, "id": 148839809241190400, "id_str": "148839809241190400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1591721156/37fe33e_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591721156/37fe33e_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@janasanchez Also, train from Brussels to Amsterdam is faster/more pleasant than taking A train to JFK in NYC.", "to_user": "janasanchez", "to_user_id": 14425872, "to_user_id_str": "14425872", "to_user_name": "Jana Sanchez", "in_reply_to_status_id": 148813280096436220, "in_reply_to_status_id_str": "148813280096436225"}, +{"created_at": "Mon, 19 Dec 2011 18:59:09 +0000", "from_user": "heismuchbetter", "from_user_id": 30741938, "from_user_id_str": "30741938", "from_user_name": "Sam", "geo": null, "id": 148839806774951940, "id_str": "148839806774951937", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1637587278/391628_2652082183911_1311462622_33142073_1042729698_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637587278/391628_2652082183911_1311462622_33142073_1042729698_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @DeniseJonas: Merry NYC Christmas! http://t.co/ruYcKRGt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:09 +0000", "from_user": "metalhank", "from_user_id": 52084030, "from_user_id_str": "52084030", "from_user_name": "dragonhank", "geo": null, "id": 148839805055279100, "id_str": "148839805055279105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1495627294/Dad_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1495627294/Dad_normal.jpg", "source": "<a href="http://www.yahoo.com" rel="nofollow">Yahoo!</a>", "text": "commented: There are plenty more like him and if you notice their not going away either. And also so many out t... http://t.co/wgnmek2K", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:05 +0000", "from_user": "coopersthename", "from_user_id": 433022856, "from_user_id_str": "433022856", "from_user_name": "cooper diamond ", "geo": null, "id": 148839787233677300, "id_str": "148839787233677312", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1684386432/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684386432/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Kim and kourtny take NYC aha :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:02 +0000", "from_user": "hello_mcee", "from_user_id": 15809540, "from_user_id_str": "15809540", "from_user_name": "mcee", "geo": null, "id": 148839775930036220, "id_str": "148839775930036224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1639173054/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639173054/me_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "ORCHESTRA OMFG. RT @onelittleupset: figuring out plans for nyc, whoooooo. looks like we can see the show on Thursday night, sweet. EXCITE.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:00 +0000", "from_user": "Roscoedash", "from_user_id": 105029433, "from_user_id_str": "105029433", "from_user_name": "SCOE!! aka #TheJuice", "geo": null, "id": 148839768413835260, "id_str": "148839768413835264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1605621583/skully_gang_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1605621583/skully_gang_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Got my Famous pjs on in LAX bouta b NYC bound!!! till then zzzzzzzzz yea all in the sky wit it!!!! #ImJustSWAGGING", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:00 +0000", "from_user": "AubrieF", "from_user_id": 44695532, "from_user_id_str": "44695532", "from_user_name": "Aubrie Fennecken", "geo": null, "id": 148839767105216500, "id_str": "148839767105216512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1405229946/tw_9108263_1308606440_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1405229946/tw_9108263_1308606440_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @SELFmagazine: Callin' all NYC foodies - love healthy (and free) food? Be an @SELFmagazine Healthy Food Awards tester at http://t.co/PbyorXJI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:58 +0000", "from_user": "Silver_Suites", "from_user_id": 322162089, "from_user_id_str": "322162089", "from_user_name": "SuitesAtSilverTowers", "geo": null, "id": 148839759769378800, "id_str": "148839759769378816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1479310550/square-logo-suites-silver-towers_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1479310550/square-logo-suites-silver-towers_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @NSAYMidtown: Things to Do in #Midtown & #Hell's Kitchen: Dec. 19-23. New Intrepid Museum exhibit, CSI Experience and more! http://t.co/IQXGCTkD #nyc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:53 +0000", "from_user": "CrashSwagdicoot", "from_user_id": 399760294, "from_user_id_str": "399760294", "from_user_name": "Swagga F. Smoove", "geo": null, "id": 148839737820577800, "id_str": "148839737820577793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1652051741/tommy_h_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652051741/tommy_h_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Guys From NYC Go Upstate For 3 Things School, Pussy, And Jail Bids Unfortunately Its Not In That Particular Order We Gotta Get it Together", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:52 +0000", "from_user": "rebeccajacobowi", "from_user_id": 276179326, "from_user_id_str": "276179326", "from_user_name": "Rebecca J", "geo": null, "id": 148839732447674370, "id_str": "148839732447674368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1297615863/Untitled2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1297615863/Untitled2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "is it 2:30 yet? waiting for my #CU takes over #NYC press conference excuse for a study break", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:51 +0000", "from_user": "pianinio", "from_user_id": 189811319, "from_user_id_str": "189811319", "from_user_name": "Tom Skearts", "geo": null, "id": 148839730539274240, "id_str": "148839730539274242", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1122164375/piano_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1122164375/piano_normal.jpeg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Glee's Darren Criss Singing Teenage Dream on Piano at Joe's Pub NYC 12/1811 http://t.co/J2NDIVn3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:51 +0000", "from_user": "KimberlyMarie_", "from_user_id": 21606054, "from_user_id_str": "21606054", "from_user_name": "Kimberly ", "geo": null, "id": 148839730421837820, "id_str": "148839730421837824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1623216701/smaller-instagrame_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1623216701/smaller-instagrame_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @MyUpperWest: #UWS Coffee Bean & Tea Leaf At Amsterdam & 86th Officially Open (Finally): http://t.co/aX26uyqu #UpperWestSide #NYC @CoffeeBeanNY #caffeine", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:51 +0000", "from_user": "bestfitness411", "from_user_id": 222523617, "from_user_id_str": "222523617", "from_user_name": "bestFitness411", "geo": null, "id": 148839729297768450, "id_str": "148839729297768448", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1181718040/ecofriendly_fitness_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1181718040/ecofriendly_fitness_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Harley Davidson motorcycle jacob javitz center nyc: Some cool harley davidson images: Harley Davidson motorcycle... http://t.co/mhVqcAYp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:51 +0000", "from_user": "robcarlos13", "from_user_id": 275498813, "from_user_id_str": "275498813", "from_user_name": "Robert C. Villanueva", "geo": null, "id": 148839728815419400, "id_str": "148839728815419392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701305717/rcvdress_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701305717/rcvdress_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "So I'll be in Michigan for Christmas and not NYC due to the Pistons first game of the season #december26atpacers", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:51 +0000", "from_user": "MusicProMag", "from_user_id": 20335865, "from_user_id_str": "20335865", "from_user_name": "MusicPro Magazine", "geo": null, "id": 148839728563748860, "id_str": "148839728563748864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/76345978/desktop-thumb-300x187_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/76345978/desktop-thumb-300x187_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Glee's Darren Criss Singing Teenage Dream on Piano at Joe's Pub NYC 12/1811: Glee's Darren Criss Singing Teenage... http://t.co/noh4rfMH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:48 +0000", "from_user": "PhoebeFossil", "from_user_id": 195500610, "from_user_id_str": "195500610", "from_user_name": "Phoebe Cohen", "geo": null, "id": 148839718342230000, "id_str": "148839718342230016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1131908200/Phoebe_Cohen_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1131908200/Phoebe_Cohen_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "GO BIG RED! this is exciting. RT @arbesman: Very excited for Cornell winning the NYC science school campus competition! http://t.co/F4ktAA97", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:47 +0000", "from_user": "livefashionABLE", "from_user_id": 182034775, "from_user_id_str": "182034775", "from_user_name": "fashionABLE", "geo": null, "id": 148839713321656320, "id_str": "148839713321656320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1128389277/bluesquare_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1128389277/bluesquare_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "we spy a fashionABLE scarf! // RT @jillianharris: Highlights from my NYC trip + what I wore! :) http://t.co/iHePOXFt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:47 +0000", "from_user": "ARTISTSPAGE", "from_user_id": 35197261, "from_user_id_str": "35197261", "from_user_name": "Roel Candaele", "geo": null, "id": 148839713057419260, "id_str": "148839713057419264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1156370587/29446_1244414122381_1590215609_30504560_4366363_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1156370587/29446_1244414122381_1590215609_30504560_4366363_n_normal.jpg", "source": "<a href="http://www.socialflow.com" rel="nofollow">SocialFlow</a>", "text": "RT @Myspace: You Need To Hear: Alabama Shakes - Check them out: http://t.co/OTEcIV3i @Alabama_Shakes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:46 +0000", "from_user": "itsgeorgiexoxo", "from_user_id": 23673618, "from_user_id_str": "23673618", "from_user_name": "GeorgieChristopher \\u2665", "geo": null, "id": 148839707156025340, "id_str": "148839707156025344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701934118/meeee_in_pariss_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701934118/meeee_in_pariss_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SelenaStayer: If Selena could go anywhere it would be Greece, or Fiji and her ideal places to live would be NYC, London or back home in Texas. #GomezFact.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:44 +0000", "from_user": "thinathi", "from_user_id": 131487842, "from_user_id_str": "131487842", "from_user_name": "Thandeka Ndlovu", "geo": null, "id": 148839702173196300, "id_str": "148839702173196288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1653620268/330268340_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653620268/330268340_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "#nf---\\u00BB@Sab3lo @mnceDCboss @Thintatouch!! Nyc chilling wit u guys #keepingupwitdaNgcobos cc@Ubuhle_N;@m4mbalz", "to_user": "m4mbalz", "to_user_id": 156262764, "to_user_id_str": "156262764", "to_user_name": "Mbalenhle Ngcobo", "in_reply_to_status_id": 148188903722061820, "in_reply_to_status_id_str": "148188903722061825"}, +{"created_at": "Mon, 19 Dec 2011 18:58:42 +0000", "from_user": "ellapalooza", "from_user_id": 250743497, "from_user_id_str": "250743497", "from_user_name": "ella.", "geo": null, "id": 148839692522102800, "id_str": "148839692522102786", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1674523255/-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674523255/-1_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@lagatamontesa mariachis bombarded me on the subway today. Thought of you & what you'd think of NYC trying to ease me back into LA.", "to_user": "lagatamontesa", "to_user_id": 14552036, "to_user_id_str": "14552036", "to_user_name": "Katherine Karmen ", "in_reply_to_status_id": 148839170574516220, "in_reply_to_status_id_str": "148839170574516224"}, +{"created_at": "Mon, 19 Dec 2011 18:58:42 +0000", "from_user": "LeftyLucyNY", "from_user_id": 108045076, "from_user_id_str": "108045076", "from_user_name": "Lefty Lucy", "geo": null, "id": 148839691054096400, "id_str": "148839691054096384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1596353752/316170_2011326535389_1610546039_31702493_2125520358_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596353752/316170_2011326535389_1610546039_31702493_2125520358_n_normal.jpg", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "I'm gunna miss this when I'm on the road! (@ Core Pilates NYC) http://t.co/83LgjkTE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:42 +0000", "from_user": "EvilPRGuy", "from_user_id": 14185680, "from_user_id_str": "14185680", "from_user_name": "Michael Dolan", "geo": null, "id": 148839690089410560, "id_str": "148839690089410560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1180329037/MD_atJM_Compound_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1180329037/MD_atJM_Compound_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Russian fertilizer kingpin (and accused murderer) buys most expensive #NYC apartment, ever. http://t.co/8MMl9e4p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:41 +0000", "from_user": "MySkinConcierge", "from_user_id": 90203791, "from_user_id_str": "90203791", "from_user_name": "Ava Roxanne", "geo": null, "id": 148839685941248000, "id_str": "148839685941248000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1071592396/avaprofile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1071592396/avaprofile_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @laprairie_usa: We hope you enjoyed #spa @RitzCarlton #CentralPark @MySkinConcierge: - apologies we didn't get a change to meet while you were in #NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:34 +0000", "from_user": "DGEladio", "from_user_id": 173310891, "from_user_id_str": "173310891", "from_user_name": "Carlos Hines", "geo": null, "id": 148839658468544500, "id_str": "148839658468544513", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1221880907/NV176Sz4_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1221880907/NV176Sz4_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @realkingb: catch me and @dgeladio in NYC Dec.26 thru 2012", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:34 +0000", "from_user": "rubendiazjr", "from_user_id": 43763852, "from_user_id_str": "43763852", "from_user_name": "Ruben Diaz Jr.", "geo": null, "id": 148839656815988740, "id_str": "148839656815988737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1675501982/rubendiazjr-twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675501982/rubendiazjr-twitter_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "Statement from Borough President Diaz RE: Public Advocate de Blasio\\u2019s Support for the \\u2018Fair Wages for New Yorkers\\u2019 Act http://t.co/ma6klazh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:32 +0000", "from_user": "TheYoungSheeion", "from_user_id": 90642517, "from_user_id_str": "90642517", "from_user_name": "Steven J. Brice", "geo": null, "id": 148839649291411460, "id_str": "148839649291411456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1642188749/263234_10150746709720457_673625456_19988266_1685119_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642188749/263234_10150746709720457_673625456_19988266_1685119_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "That's what up.. I'm good.. Enjoying NYC!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:30 +0000", "from_user": "cantfixaheart", "from_user_id": 49678313, "from_user_id_str": "49678313", "from_user_name": "Marts \\u266A ", "geo": null, "id": 148839643067056130, "id_str": "148839643067056128", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702454883/tumblr_lw09hnaAYs1qe1x1eo4_250_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702454883/tumblr_lw09hnaAYs1qe1x1eo4_250_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@wearemilesapart beh ovvio! *-* ma tipo che lea ha scritto \"just landed in NYC\" e lui \"hi NYC\" ? ahahaha antisgamo proprio :P", "to_user": "wearemilesapart", "to_user_id": 104932141, "to_user_id_str": "104932141", "to_user_name": "a loser.", "in_reply_to_status_id": 148838229917966340, "in_reply_to_status_id_str": "148838229917966336"}, +{"created_at": "Mon, 19 Dec 2011 18:58:29 +0000", "from_user": "1DWeasley", "from_user_id": 220664665, "from_user_id_str": "220664665", "from_user_name": "Simpsonizin' Carrot", "geo": null, "id": 148839638797266940, "id_str": "148839638797266944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695340004/Lou_Icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695340004/Lou_Icon_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SelenaStayer: If Selena could go anywhere it would be Greece, or Fiji and her ideal places to live would be NYC, London or back home in Texas. #GomezFact.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:28 +0000", "from_user": "mot_ddot", "from_user_id": 389791061, "from_user_id_str": "389791061", "from_user_name": "Tom Todd", "geo": null, "id": 148839632937816060, "id_str": "148839632937816064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1585635153/255101_10150276313041113_733941112_9389703_4036320_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585635153/255101_10150276313041113_733941112_9389703_4036320_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Departing from nyc is a little depressing", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:27 +0000", "from_user": "TheKingslayer", "from_user_id": 16574839, "from_user_id_str": "16574839", "from_user_name": "TheKingslayer", "geo": null, "id": 148839629527842800, "id_str": "148839629527842816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1617012807/starmikenthekingslayer_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1617012807/starmikenthekingslayer_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Let's face it. The NY Knicks have not been the NBA franchise NYC needs for a long while.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:26 +0000", "from_user": "jamesmaherphoto", "from_user_id": 121136445, "from_user_id_str": "121136445", "from_user_name": "James Maher", "geo": null, "id": 148839625186754560, "id_str": "148839625186754560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1058946348/twitter_image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1058946348/twitter_image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "New Street Photo: http://t.co/h2Xm0oSP #streetphotography #nyc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:23 +0000", "from_user": "HellOnHeels_xox", "from_user_id": 373682495, "from_user_id_str": "373682495", "from_user_name": "ariel", "geo": null, "id": 148839610934493200, "id_str": "148839610934493184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1543328278/321278_274633542552382_100000172167427_1373544_3233747_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543328278/321278_274633542552382_100000172167427_1373544_3233747_n_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Bc of this inevitable deployment my NYC Trip has to be postponed. this sucks -_-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:22 +0000", "from_user": "RealYungwhezee", "from_user_id": 397221155, "from_user_id_str": "397221155", "from_user_name": "Fweshkid", "geo": null, "id": 148839606538866700, "id_str": "148839606538866690", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694621446/Pic_2010167_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694621446/Pic_2010167_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @TalibKweli: RT @DJBOBBYTRENDS: NEW MUSIC: @TalibKweli - \"Distractions\" http://t.co/2sxPsKjc (NYC needs this on the radio Bobby holla!)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:21 +0000", "from_user": "greyestates", "from_user_id": 119313872, "from_user_id_str": "119313872", "from_user_name": "shak.", "geo": null, "id": 148839605158944770, "id_str": "148839605158944770", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1588155201/11_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1588155201/11_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @Sanniel: ! RT @vmagazine: Stream \"Liquorice\" \\u266C the new track from NYC rapper @AZEALIABANKS http://t.co/veSqE0Yo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:18 +0000", "from_user": "Bouba_SV", "from_user_id": 85446248, "from_user_id_str": "85446248", "from_user_name": "BOUBACAR", "geo": null, "id": 148839592391475200, "id_str": "148839592391475200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1647364553/330067348_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647364553/330067348_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "If you're in NYC then you know La Pomme is the only spot to be at 2nite! the Breakfast Club concert afterparty with #Power105 RSVP!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:18 +0000", "from_user": "StephScagnelli", "from_user_id": 217568179, "from_user_id_str": "217568179", "from_user_name": "Stephanie Follese.", "geo": null, "id": 148839591405821950, "id_str": "148839591405821952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1591927065/asdfgh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591927065/asdfgh_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "RT @IanKeaggy: NYC subway system > ian.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:16 +0000", "from_user": "MalcolmBlogger", "from_user_id": 115068099, "from_user_id_str": "115068099", "from_user_name": "Malcolm Carter", "geo": null, "id": 148839584434892800, "id_str": "148839584434892802", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/748452789/logo_new_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/748452789/logo_new_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @jonathanmiller: Rethinking that saying about money buying happiness RT Billionaire's Daughter Pays Record Sum For NYC Pad @Forbes http://t.co/sRjZiwzJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:16 +0000", "from_user": "SelenaStayer", "from_user_id": 226952150, "from_user_id_str": "226952150", "from_user_name": "Smiler & Swifty \\u262E ", "geo": null, "id": 148839582711021570, "id_str": "148839582711021568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699491017/perfectgomez_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699491017/perfectgomez_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "If Selena could go anywhere it would be Greece, or Fiji and her ideal places to live would be NYC, London or back home in Texas. #GomezFact.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:16 +0000", "from_user": "Kait_DREAM", "from_user_id": 36543404, "from_user_id_str": "36543404", "from_user_name": "Kait_DREAM", "geo": null, "id": 148839581142360060, "id_str": "148839581142360064", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1617196865/yah3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1617196865/yah3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "i wanna go to NYC!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:16 +0000", "from_user": "callmedisKO", "from_user_id": 63949793, "from_user_id_str": "63949793", "from_user_name": "Kelly Owens", "geo": null, "id": 148839581029113860, "id_str": "148839581029113856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/352907941/twitterpic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/352907941/twitterpic_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @SELFmagazine: Callin' all NYC foodies - love healthy (and free) food? Be an @SELFmagazine Healthy Food Awards tester at http://t.co/PbyorXJI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:15 +0000", "from_user": "BTRfanKATIE", "from_user_id": 122224084, "from_user_id_str": "122224084", "from_user_name": "katie", "geo": null, "id": 148839579015847940, "id_str": "148839579015847936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687558303/Photo_434_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687558303/Photo_434_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "RT @IanKeaggy: NYC subway system > ian.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:15 +0000", "from_user": "NicoleGrotto", "from_user_id": 92113610, "from_user_id_str": "92113610", "from_user_name": "Nicole Grotto", "geo": null, "id": 148839576537014270, "id_str": "148839576537014272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1649623687/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649623687/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@AustinMahone you were amazing in NYC!! #greatconcert!! <3", "to_user": "AustinMahone", "to_user_id": 196795202, "to_user_id_str": "196795202", "to_user_name": "Austin Mahone"}, +{"created_at": "Mon, 19 Dec 2011 18:58:14 +0000", "from_user": "FlyGrlLafleur", "from_user_id": 378671223, "from_user_id_str": "378671223", "from_user_name": "Lindsay ", "geo": null, "id": 148839575823974400, "id_str": "148839575823974402", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682005168/Reno_20Southeast-20111208-00047_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682005168/Reno_20Southeast-20111208-00047_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Oh wait sorry, she lives in Ohio! Um if I wanted to visit Ohio, I would go, but I want to visit NYC. #frustratedtweet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:14 +0000", "from_user": "Fermrosas", "from_user_id": 338819451, "from_user_id_str": "338819451", "from_user_name": "Fernanda Miranda", "geo": null, "id": 148839574880256000, "id_str": "148839574880256001", "iso_language_code": "vi", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702596213/mateo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702596213/mateo_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @CoryMonteith: Hi NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:13 +0000", "from_user": "potionnumbr9", "from_user_id": 238844962, "from_user_id_str": "238844962", "from_user_name": " F.L.Y ", "geo": null, "id": 148839570987954180, "id_str": "148839570987954177", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701466338/390585_283286631714750_100001002466518_820567_352342264_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701466338/390585_283286631714750_100001002466518_820567_352342264_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@FUCK_JOJO_32 I might wanna model for them umm u live in nyc?", "to_user": "FUCK_JOJO_32", "to_user_id": 409557891, "to_user_id_str": "409557891", "to_user_name": "MR. VoyR", "in_reply_to_status_id": 148839167961477120, "in_reply_to_status_id_str": "148839167961477121"}, +{"created_at": "Mon, 19 Dec 2011 18:58:13 +0000", "from_user": "discounttravelz", "from_user_id": 137061514, "from_user_id_str": "137061514", "from_user_name": "Dakota Skyhawk", "geo": null, "id": 148839569792569340, "id_str": "148839569792569344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/852737741/SeniorCoupleOnBeachcrop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/852737741/SeniorCoupleOnBeachcrop_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "American Eagle's NYC deals US Airways Tel Aviv price breaks ...: As American Eagle launches flight deals to New ... http://t.co/80AGf1FR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:10 +0000", "from_user": "DisneyGeofeed", "from_user_id": 14435186, "from_user_id_str": "14435186", "from_user_name": "Disney Geofeed", "geo": null, "id": 148839558287605760, "id_str": "148839558287605760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1213387804/wdw_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1213387804/wdw_normal.png", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "photo by littleladylaura: Girls love cupcakes! (cc: @magnoliabakery) #nyc http://t.co/Htu1I297", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:07 +0000", "from_user": "gaywomenevents", "from_user_id": 109587572, "from_user_id_str": "109587572", "from_user_name": "NYC Lavender Lounge", "geo": null, "id": 148839544861626370, "id_str": "148839544861626368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Best Single Lesbian Events Coming Again 2012 NYC - New Friends, New Romance.\\nhttp://t.co/b3EKiWIW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:05 +0000", "from_user": "leah_nwtn", "from_user_id": 105551295, "from_user_id_str": "105551295", "from_user_name": "Leah Newton", "geo": null, "id": 148839537420943360, "id_str": "148839537420943360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1609578606/th_VULCANPEACE1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609578606/th_VULCANPEACE1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@team_butorac Can we got to NYC soon with bech and @Lee_702?", "to_user": "team_butorac", "to_user_id": 402746151, "to_user_id_str": "402746151", "to_user_name": "Lindsey Maria"}, +{"created_at": "Mon, 19 Dec 2011 18:58:05 +0000", "from_user": "kiplingofficial", "from_user_id": 66308687, "from_user_id_str": "66308687", "from_user_name": "Kipling", "geo": null, "id": 148839537353822200, "id_str": "148839537353822209", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1503360707/Profile_pic_2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1503360707/Profile_pic_2_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@AbsolutelyMrsK lucky you! :)))) that sounds like an amazing plan. Enjoy! And wish u tons & tons of shopping in NYC ;)", "to_user": "AbsolutelyMrsK", "to_user_id": 250636167, "to_user_id_str": "250636167", "to_user_name": "Absolutely Mrs. K", "in_reply_to_status_id": 148839149263274000, "in_reply_to_status_id_str": "148839149263273985"}, +{"created_at": "Mon, 19 Dec 2011 18:58:03 +0000", "from_user": "mellenriquez", "from_user_id": 23830953, "from_user_id_str": "23830953", "from_user_name": "melissa enriquez", "geo": null, "id": 148839529485320200, "id_str": "148839529485320194", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691822898/cheeesin_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691822898/cheeesin_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I really wish I could go see @avicii in NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:02 +0000", "from_user": "Glee_Maniac", "from_user_id": 102285396, "from_user_id_str": "102285396", "from_user_name": "kirsty godfrey(15yr)", "geo": null, "id": 148839524234039300, "id_str": "148839524234039297", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1210722916/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1210722916/image_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "Lea in NYC #2 #smiling #smile #2011 #season2 #laughing #singing #laugh #glee #rachelberry #rachel #berry #lea #mi http://t.co/nBH0WOeJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:01 +0000", "from_user": "__Barbs", "from_user_id": 268517384, "from_user_id_str": "268517384", "from_user_name": "__Barbs", "geo": null, "id": 148839521755201540, "id_str": "148839521755201536", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1278557198/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1278557198/images_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@MayBeMay_ attenzione se vai a NYC rischi di non voler pi\\u00F9 tornare :-)", "to_user": "MayBeMay_", "to_user_id": 249090011, "to_user_id_str": "249090011", "to_user_name": "Claire"}, +{"created_at": "Mon, 19 Dec 2011 18:58:00 +0000", "from_user": "archdukedom", "from_user_id": 90531408, "from_user_id_str": "90531408", "from_user_name": "domoe t.", "geo": null, "id": 148839517548318720, "id_str": "148839517548318720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1473252500/Photo_on_2011-03-14_at_11.00__3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1473252500/Photo_on_2011-03-14_at_11.00__3_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "http://t.co/8pqZCeA7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:59 +0000", "from_user": "sommaieatworld", "from_user_id": 140285592, "from_user_id_str": "140285592", "from_user_name": "Sommai", "geo": null, "id": 148839512208982000, "id_str": "148839512208982017", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1550427076/Photo_on_2011-08-22_at_13.47_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1550427076/Photo_on_2011-08-22_at_13.47_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "This week will consist of waiting for #NYC to reply about a second interview. #keepingthosefingerscrossed #gulp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:59 +0000", "from_user": "Jojofonggg", "from_user_id": 63139785, "from_user_id_str": "63139785", "from_user_name": "Joreen Emelda (:", "geo": null, "id": 148839509478473730, "id_str": "148839509478473728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702604186/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702604186/image_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "RT @IanKeaggy: NYC subway system > ian.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:58 +0000", "from_user": "_XxhottmamiixX", "from_user_id": 370153271, "from_user_id_str": "370153271", "from_user_name": "erica", "geo": null, "id": 148839506160795650, "id_str": "148839506160795648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668197060/work_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668197060/work_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Excuse me, what ??? RT @SissyGolden Excited for new years ! \\u2764 NYC with her \\uD83D\\uDE18", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:57 +0000", "from_user": "etherealprey", "from_user_id": 784871, "from_user_id_str": "784871", "from_user_name": "Jenn", "geo": null, "id": 148839502125858800, "id_str": "148839502125858816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1301433229/186585_34604116_4885829_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1301433229/186585_34604116_4885829_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Lol. There is a gig for me to dress up like a banana and dance. Lol. Gotta love nyc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:57 +0000", "from_user": "JustZhawne", "from_user_id": 60827115, "from_user_id_str": "60827115", "from_user_name": "Zhawne\\u2122", "geo": null, "id": 148839501408641020, "id_str": "148839501408641025", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689012164/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689012164/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Nah f'real, why are so many NYC brands following me on most of my networks? I'm west coast, east Las Vegas boy.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:54 +0000", "from_user": "thiagoarantes", "from_user_id": 5994552, "from_user_id_str": "5994552", "from_user_name": "Thiago Arantes", "geo": null, "id": 148839492164395000, "id_str": "148839492164395009", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1001548586/fotoMSN29_bigger_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1001548586/fotoMSN29_bigger_1__normal.jpg", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "@tomazeli se prepare para muitas emo\\u00E7\\u00F5es com Robo Rally em NYC!", "to_user": "tomazeli", "to_user_id": 18024173, "to_user_id_str": "18024173", "to_user_name": "tomazeli"}, +{"created_at": "Mon, 19 Dec 2011 18:57:54 +0000", "from_user": "saveyrdaughters", "from_user_id": 83464450, "from_user_id_str": "83464450", "from_user_name": "ivan l", "geo": null, "id": 148839491694641150, "id_str": "148839491694641152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/505894041/deputy-badge_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/505894041/deputy-badge_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Suspect in NYC torching charged with murder \\n (AP): AP - The man suspected of dousing a 73-year-old woman wit... http://t.co/sIgZKzOy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:54 +0000", "from_user": "CatchNgo", "from_user_id": 126123584, "from_user_id_str": "126123584", "from_user_name": "NGO TV", "geo": null, "id": 148839491010969600, "id_str": "148839491010969600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1178995556/NEW_CALENDAR_COVER_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1178995556/NEW_CALENDAR_COVER_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Check out my new blog from NYC\\n http://t.co/GVjj1zr3 http://t.co/1CUT0rQd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:54 +0000", "from_user": "ArtistsOnly", "from_user_id": 49491093, "from_user_id_str": "49491093", "from_user_name": "Artists Only Records", "geo": null, "id": 148839490994188300, "id_str": "148839490994188289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/362849750/296159784_m_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/362849750/296159784_m_normal.gif", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "RT @24k: After 10 years, I've made it back to 5th Avenue #NYC, excited about being here again, goosebumps! cc @jennydeluxe #travel", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:54 +0000", "from_user": "Tony_G1989", "from_user_id": 370759922, "from_user_id_str": "370759922", "from_user_name": "Anthony Navaroli", "geo": null, "id": 148839490880942080, "id_str": "148839490880942080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1536071135/291861_2053198685243_1102800185_31912253_4237897_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1536071135/291861_2053198685243_1102800185_31912253_4237897_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "http://t.co/XhkGibec Skantown on the stool", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:53 +0000", "from_user": "deann_native", "from_user_id": 333956398, "from_user_id_str": "333956398", "from_user_name": "De Ann Townes Jr.", "geo": null, "id": 148839487202541570, "id_str": "148839487202541568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1438298743/author_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1438298743/author_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @HUEMANBOOKS: Vendor day was great...if you did not stop by...vendor products are still available ..cards, meditation, teas, books etc. Stop in today #NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:52 +0000", "from_user": "LocalNdex", "from_user_id": 89277725, "from_user_id_str": "89277725", "from_user_name": "LocalNdex", "geo": null, "id": 148839483947757570, "id_str": "148839483947757568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/522773735/localndex_logoguy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/522773735/localndex_logoguy_normal.jpg", "source": "<a href="http://www.localndex.com" rel="nofollow">LocalNdexFeeds</a>", "text": "New York NYC Royal Limo just updated its Business Profile. http://t.co/4rMPiiTD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:50 +0000", "from_user": "VanGubble", "from_user_id": 103143089, "from_user_id_str": "103143089", "from_user_name": "Rego Van Gubble", "geo": null, "id": 148839472799289340, "id_str": "148839472799289344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1342374009/Yoda_-_Large_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1342374009/Yoda_-_Large_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Cornell Wins Contest for NYC Tech Campus http://t.co/bYX4ypdr via @WSJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:49 +0000", "from_user": "NateBerkusShow", "from_user_id": 106585620, "from_user_id_str": "106585620", "from_user_name": "TheNateShow.com", "geo": null, "id": 148839470748270600, "id_str": "148839470748270595", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1367387800/_DC_6357_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1367387800/_DC_6357_copy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @InsideMizrahi: Don't forget - Isaac is on the @NateBerkusShow w/ fun & fresh holiday party outfit ideas! 2pm in NYC, check local listings for time & chanl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:46 +0000", "from_user": "TheDekadentDiva", "from_user_id": 203226819, "from_user_id_str": "203226819", "from_user_name": "Nikki Kaapke", "geo": null, "id": 148839457536217100, "id_str": "148839457536217088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679961966/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679961966/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "LOVE!!! tres chic & still very Jilly. \\u201C@jillianharris: Highlights from my NYC trip + what I wore! :) http://t.co/Mli2BYpY\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:46 +0000", "from_user": "alimandri", "from_user_id": 18540252, "from_user_id_str": "18540252", "from_user_name": "Alex LiMandri", "geo": null, "id": 148839456315670530, "id_str": "148839456315670528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1629128730/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629128730/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Last day in #NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:46 +0000", "from_user": "Shirinxx", "from_user_id": 210194772, "from_user_id_str": "210194772", "from_user_name": "Shirin T", "geo": null, "id": 148839455443263500, "id_str": "148839455443263490", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697949185/331601748_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697949185/331601748_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I need to go to NYC sometime sooon... Miss my second favourite cityyy.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:43 +0000", "from_user": "BrianFrumberg", "from_user_id": 159950334, "from_user_id_str": "159950334", "from_user_name": "Brian Frumberg", "geo": null, "id": 148839446324846600, "id_str": "148839446324846594", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1460920621/225249_607843355039_15802274_33912209_2598868_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1460920621/225249_607843355039_15802274_33912209_2598868_n_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#Bloomberg picks #Cornell for the new engineering campus in NYC: http://t.co/OYybCjxs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:43 +0000", "from_user": "Dachosen_1one", "from_user_id": 373084763, "from_user_id_str": "373084763", "from_user_name": "Chuckie", "geo": null, "id": 148839442453499900, "id_str": "148839442453499904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699047881/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699047881/image_normal.jpg", "source": "<a href="http://tweetli.st/" rel="nofollow">TweetList Pro</a>", "text": "U bet ur sweet ass it's cold here. Lol RT @modelQ: It's way too cold to Christmas shop in NYC. I'm doing my shopping online!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:41 +0000", "from_user": "Miss_Gosik", "from_user_id": 237400525, "from_user_id_str": "237400525", "from_user_name": "Kathryn Gosik", "geo": null, "id": 148839436459835400, "id_str": "148839436459835392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1400530055/254366_1832552301177_1461480209_31793339_3778212_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1400530055/254366_1832552301177_1461480209_31793339_3778212_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Hmmm...what to do for NYE? Possibly Deadmau5? hmmmm hmmm...Who is going to be in NYC?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:41 +0000", "from_user": "Kjen21", "from_user_id": 28667242, "from_user_id_str": "28667242", "from_user_name": "JLo", "geo": null, "id": 148839436438880260, "id_str": "148839436438880256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1626224063/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626224063/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@FlyGrlLafleur You can't drive to NYC from il to just spend a day!! Lol", "to_user": "FlyGrlLafleur", "to_user_id": 378671223, "to_user_id_str": "378671223", "to_user_name": "Lindsay ", "in_reply_to_status_id": 148839079000277000, "in_reply_to_status_id_str": "148839079000276992"}, +{"created_at": "Mon, 19 Dec 2011 18:57:40 +0000", "from_user": "MisConnections", "from_user_id": 427208592, "from_user_id_str": "427208592", "from_user_name": "Missed Connections", "geo": null, "id": 148839431665754100, "id_str": "148839431665754114", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670999023/MissedConnections_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670999023/MissedConnections_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#MissedConnections x older/mature couples - m4mw (Midtown) 32yr http://t.co/yua8imZw #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:39 +0000", "from_user": "Disney_Dreaming", "from_user_id": 21209758, "from_user_id_str": "21209758", "from_user_name": "Disney Dreaming", "geo": null, "id": 148839427937009660, "id_str": "148839427937009664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/421097380/bg-dd_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/421097380/bg-dd_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "More pics of Bella Thorne and Zendaya Coleman in NYC http://t.co/Q0mYuFtu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:38 +0000", "from_user": "rcrc2012", "from_user_id": 410565575, "from_user_id_str": "410565575", "from_user_name": "Raka Choudhury", "geo": null, "id": 148839422891274240, "id_str": "148839422891274240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1660807650/Photo_on_2011-11-02_at_21.09_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660807650/Photo_on_2011-11-02_at_21.09_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Streetfilms: #1! Top 5 Streetfilms 2011: #1 NYC's Complete Streets our 2011 most viewed! http://t.co/ofJhzbKf Making it safer for peds, bikes & drivers!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:38 +0000", "from_user": "Evank37", "from_user_id": 70412282, "from_user_id_str": "70412282", "from_user_name": "Evan Kay", "geo": null, "id": 148839421440045060, "id_str": "148839421440045056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/568824081/lxm9_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/568824081/lxm9_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Yezzirr..Sneakerhead for good price...RT @TizzleSTX: @Evank37 the patent leather ones @KyleHarrison18 got in NYC?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:38 +0000", "from_user": "WrestRoundtable", "from_user_id": 64303548, "from_user_id_str": "64303548", "from_user_name": "Wrestling Roundtable", "geo": null, "id": 148839421372928000, "id_str": "148839421372928000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1601221187/WR_URL_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601221187/WR_URL_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @fightnowtv: Great meeting for channel in NYC today big news coming 2012 thanks for support everyone let your TV provider know u want to get it on!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:37 +0000", "from_user": "piercingmetal", "from_user_id": 27065731, "from_user_id_str": "27065731", "from_user_name": "Ken Pierce", "geo": null, "id": 148839420148195330, "id_str": "148839420148195328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/579873816/PMcom-Logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/579873816/PMcom-Logo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@madinalake Hey guys I need the set rundown from NYC. Can you shoot me an email please. KP", "to_user": "madinalake", "to_user_id": 18086117, "to_user_id_str": "18086117", "to_user_name": "madinalake"}, +{"created_at": "Mon, 19 Dec 2011 18:57:35 +0000", "from_user": "meggallagherNYC", "from_user_id": 26670153, "from_user_id_str": "26670153", "from_user_name": "Meg Gallagher", "geo": null, "id": 148839411717644300, "id_str": "148839411717644290", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1167506688/web_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1167506688/web_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Squeezing in clients (styling and shopping) before I leave for NYC.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:33 +0000", "from_user": "RachelDwyer", "from_user_id": 33456993, "from_user_id_str": "33456993", "from_user_name": "Rachel Dwyer", "geo": null, "id": 148839404255981570, "id_str": "148839404255981569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1629968358/IMG_3045_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629968358/IMG_3045_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@AnnaMariaPdT yayy finally! Celebrate it up! & then again when I come to NYC haha", "to_user": "AnnaMariaPdT", "to_user_id": 35541249, "to_user_id_str": "35541249", "to_user_name": "Anna Perez de Tagle", "in_reply_to_status_id": 148829696728109060, "in_reply_to_status_id_str": "148829696728109058"}, +{"created_at": "Mon, 19 Dec 2011 18:57:33 +0000", "from_user": "IanKeaggy", "from_user_id": 55699429, "from_user_id_str": "55699429", "from_user_name": "Ian Keaggy", "geo": null, "id": 148839400703410180, "id_str": "148839400703410176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682525307/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682525307/image_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "NYC subway system > ian.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:32 +0000", "from_user": "unbrokenbeauty", "from_user_id": 277231388, "from_user_id_str": "277231388", "from_user_name": "DANCEUNTILTOMORROW\\u10E6 ", "geo": null, "id": 148839398182633470, "id_str": "148839398182633472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702218175/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702218175/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Jasmine_x3 i don't even live in NYC so idk how i would have been in 911 . they did it as an anon", "to_user": "Jasmine_x3", "to_user_id": 27852874, "to_user_id_str": "27852874", "to_user_name": "Jasmine \\u271D", "in_reply_to_status_id": 148838808757080060, "in_reply_to_status_id_str": "148838808757080064"}, +{"created_at": "Mon, 19 Dec 2011 18:57:32 +0000", "from_user": "audra_a", "from_user_id": 21778651, "from_user_id_str": "21778651", "from_user_name": "audra", "geo": null, "id": 148839396672671740, "id_str": "148839396672671744", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1673385445/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673385445/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @arielleraye20: @Johnrzeznik1 in Hard Rock NYC :D http://t.co/uJgxIhiu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:32 +0000", "from_user": "kurtpellegrino", "from_user_id": 86729029, "from_user_id_str": "86729029", "from_user_name": "kurt pellegrino", "geo": null, "id": 148839394244182000, "id_str": "148839394244182016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1579860734/2011PellegrinoFamily0930-9731_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1579860734/2011PellegrinoFamily0930-9731_copy_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Camera on iOS</a>", "text": "Priscilla made friends in NYC http://t.co/llRvi0BM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:57:30 +0000", "from_user": "LillieLRH", "from_user_id": 124316813, "from_user_id_str": "124316813", "from_user_name": "\\u24C1\\u24D8\\u24DB\\u24DB\\u24D8\\u24D4 \\u2661", "geo": null, "id": 148839389970169860, "id_str": "148839389970169858", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1601812984/11714539439_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601812984/11714539439_normal.jpeg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@agt143 :O whhhhaaaaattttt! Who cares if you going to nyc the next day! That shouldn't stop you. Its not like you gonna get back late..", "to_user": "agt143", "to_user_id": 223291792, "to_user_id_str": "223291792", "to_user_name": "Graciee(:", "in_reply_to_status_id": 148838989414150140, "in_reply_to_status_id_str": "148838989414150144"}, +{"created_at": "Mon, 19 Dec 2011 18:57:29 +0000", "from_user": "AubSerpz", "from_user_id": 51510030, "from_user_id_str": "51510030", "from_user_name": "Aubrielle Marie", "geo": null, "id": 148839386950283260, "id_str": "148839386950283264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1466753127/tumblr_lgottip6pb1qhnuupo1_500_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1466753127/tumblr_lgottip6pb1qhnuupo1_500_normal.gif", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Seeking Fulltime #GraphicDesign job in the NJ, NYC area. Also willing to relocate anywhere.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:27 +0000", "from_user": "jsench", "from_user_id": 103899997, "from_user_id_str": "103899997", "from_user_name": "@jsench", "geo": null, "id": 148839377202720770, "id_str": "148839377202720768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/624751020/0671_09_080_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/624751020/0671_09_080_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I've been a supporter of #Cornell's plans for NYC tech campus, but would really like to see humanists invited to the table.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:27 +0000", "from_user": "Not_Basic", "from_user_id": 80426903, "from_user_id_str": "80426903", "from_user_name": "Christian vonGizycki", "geo": null, "id": 148839377110450180, "id_str": "148839377110450176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699371295/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699371295/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Dying inside due to the closure of Grimaldi's in Brooklyn. #NYC #brooklyn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:27 +0000", "from_user": "rcrc2012", "from_user_id": 410565575, "from_user_id_str": "410565575", "from_user_name": "Raka Choudhury", "geo": null, "id": 148839376217059330, "id_str": "148839376217059328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1660807650/Photo_on_2011-11-02_at_21.09_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660807650/Photo_on_2011-11-02_at_21.09_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Streetfilms: Top 5 Streetfilms 2011: #3 Moving Beyond the Automobile Bicycling http://t.co/yfgjSySl Biking rules in SF, NYC, PDX, and more!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:26 +0000", "from_user": "24k", "from_user_id": 17145442, "from_user_id_str": "17145442", "from_user_name": "Chris Rauschnot", "geo": null, "id": 148839372001779700, "id_str": "148839372001779712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1193040615/24k_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1193040615/24k_normal.jpg", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "After 10 years, I've made it back to 5th Avenue #NYC, excited about being here again, goosebumps! cc @jennydeluxe #travel", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:22 +0000", "from_user": "AaronJElmore", "from_user_id": 100597569, "from_user_id_str": "100597569", "from_user_name": "Aaron J Elmore", "geo": null, "id": 148839356327673860, "id_str": "148839356327673857", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/601102638/4878_213989820446_529310446_7280192_163738_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/601102638/4878_213989820446_529310446_7280192_163738_n_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @arnabdotorg: Cornell NYC is a go! Congratulations, Big Red!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:21 +0000", "from_user": "whatupkeer", "from_user_id": 111982511, "from_user_id_str": "111982511", "from_user_name": "Molly Keereweer", "geo": null, "id": 148839353966268400, "id_str": "148839353966268416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1546190760/TPhoto_00008_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546190760/TPhoto_00008_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Spontaneous trip to Hoboken/ nyc with @LouisRubino", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:21 +0000", "from_user": "Belieber3113", "from_user_id": 287353333, "from_user_id_str": "287353333", "from_user_name": "Belieber4ever", "geo": null, "id": 148839353832058880, "id_str": "148839353832058880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1613969971/320771_267826706587677_156590811044601_717315_1481157837_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1613969971/320771_267826706587677_156590811044601_717315_1481157837_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @justinbieber: got word that there is 16 more days to find the PLATINUM tickets in the #UnderTheMistletoe Albms to come meet me in NYC on NYE! #FINDTHEM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:21 +0000", "from_user": "shauneynoel", "from_user_id": 213975822, "from_user_id_str": "213975822", "from_user_name": "Shauney Cycenas", "geo": null, "id": 148839353173549060, "id_str": "148839353173549056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690549955/Photo_on_2011-12-13_at_00.29__6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690549955/Photo_on_2011-12-13_at_00.29__6_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @CJCycenas: If I'm able to go to NYC tomorrow, I might become the happiest person alive.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:20 +0000", "from_user": "francisbaconegg", "from_user_id": 57474968, "from_user_id_str": "57474968", "from_user_name": "barbara sicuranza", "geo": null, "id": 148839347486076930, "id_str": "148839347486076928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1413116665/MV5BMjk1MjMxOTA4NF5BMl5BanBnXkFtZTcwNDkwODQ1Mw__._V1._SX500_SY333__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1413116665/MV5BMjk1MjMxOTA4NF5BMl5BanBnXkFtZTcwNDkwODQ1Mw__._V1._SX500_SY333__normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\"Let's not meet their institutional violence with anything but love and a commitment to justice.\" http://t.co/TVDBStZ1 #Love #D17 #ows #nyc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:18 +0000", "from_user": "rac2007", "from_user_id": 8716202, "from_user_id_str": "8716202", "from_user_name": "Aaron ", "geo": null, "id": 148839340825509900, "id_str": "148839340825509888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1487464382/n649151452_718510_5754_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1487464382/n649151452_718510_5754_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @Clare_OC: (I've been inside of this bldg, and to quote Jay-Z, that sh*t cray) Billionaire's Daughter Pays Record Sum For NYC Pad http://t.co/TJpag4qA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:18 +0000", "from_user": "Najeejo", "from_user_id": 327736079, "from_user_id_str": "327736079", "from_user_name": "Najee Jones", "geo": null, "id": 148839339978268670, "id_str": "148839339978268672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1627708200/I-love-house-music-thumb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627708200/I-love-house-music-thumb_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I have lost faith in humanity. This is awful http://t.co/2UVvkIAQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:15 +0000", "from_user": "_sparkinthedark", "from_user_id": 293229075, "from_user_id_str": "293229075", "from_user_name": "Miya Dick/The Grinch", "geo": null, "id": 148839328469090300, "id_str": "148839328469090304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687727703/yoo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687727703/yoo_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "NYC on the 14th !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:15 +0000", "from_user": "Sanniel", "from_user_id": 22257949, "from_user_id_str": "22257949", "from_user_name": "Sanniel Sanabia", "geo": null, "id": 148839328234221570, "id_str": "148839328234221568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1665441001/5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665441001/5_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "! RT @vmagazine: Stream \"Liquorice\" \\u266C the new track from NYC rapper @AZEALIABANKS http://t.co/veSqE0Yo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:15 +0000", "from_user": "BODYAMR", "from_user_id": 20588754, "from_user_id_str": "20588754", "from_user_name": "B O D Y A M R", "geo": null, "id": 148839325021384700, "id_str": "148839325021384705", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1116694091/bodyamr_helmut_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1116694091/bodyamr_helmut_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT Stream \"Liquorice\" \\u266C the new track from NYC rapper @AZEALIABANKS http://t.co/zgEA9p9n SWEEEEEEEEEEEEEEEET!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:13 +0000", "from_user": "DJASTYLESZ", "from_user_id": 19758436, "from_user_id_str": "19758436", "from_user_name": "DEEJAY ASTYLESZ \\u2122", "geo": null, "id": 148839318742499330, "id_str": "148839318742499328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1620077434/306855_265766570120364_100000610687420_841199_743126321_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620077434/306855_265766570120364_100000610687420_841199_743126321_n_normal.jpg", "source": "<a href="http://tweetlogix.com" rel="nofollow">Tweetlogix</a>", "text": "Metro pcs 9$ phones lol RT @DjanarkiBx: Lol boost mobile RT @DjManiatiko: Anyone know where I can buy a Simple Mobile phone in nyc???", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:13 +0000", "from_user": "abcamuez", "from_user_id": 324207292, "from_user_id_str": "324207292", "from_user_name": "Ashley Bedoya Camuez", "geo": null, "id": 148839317291286530, "id_str": "148839317291286528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1665440805/092911200407_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665440805/092911200407_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "For Christmas ima invite a few heads to my crib, Drink & leave to NYC at 12 ^_^", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:12 +0000", "from_user": "EmilioTheBroker", "from_user_id": 310543765, "from_user_id_str": "310543765", "from_user_name": "Emilio Martinez", "geo": null, "id": 148839313377988600, "id_str": "148839313377988609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1535977966/276368_100001029807858_1122122428_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1535977966/276368_100001029807858_1122122428_n_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "On the Market: Former M.T.A. chief Jay Walder, who... http://t.co/9UI9C54D #RealEstate #NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:10 +0000", "from_user": "ayboodayyy", "from_user_id": 372494004, "from_user_id_str": "372494004", "from_user_name": "Elizabeth ", "geo": null, "id": 148839305694027780, "id_str": "148839305694027777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1552122974/319603_2189813417272_1005184947_31985988_1427450121_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552122974/319603_2189813417272_1005184947_31985988_1427450121_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "S/O to @R_Amato215 hope your having a fun time in NYC! #jealous! Can't wait till you get back", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:08 +0000", "from_user": "xoxoZaara", "from_user_id": 219218133, "from_user_id_str": "219218133", "from_user_name": "Z\\u03B1\\u03B1\\u01A6\\u03B1", "geo": null, "id": 148839298861510660, "id_str": "148839298861510657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1598890661/small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598890661/small_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Home Sweet Home!! Had an amazingly awesome time in NYC! Loved walking through the streets of #upper east side. All in all greatt timee! :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:08 +0000", "from_user": "babar2", "from_user_id": 17378927, "from_user_id_str": "17378927", "from_user_name": "rosemary rannes", "geo": null, "id": 148839295652855800, "id_str": "148839295652855809", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691425593/9687258_Kizzy_Christmas_2010_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691425593/9687258_Kizzy_Christmas_2010_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Cat Shelters Get Stylish Spin in NYC Zootoo Pet News http://t.co/WF9rv275 via @zootoo Winter means homeless need shelters too-abandoned cats", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:07 +0000", "from_user": "RantersRavers", "from_user_id": 330817421, "from_user_id_str": "330817421", "from_user_name": "Ranters N' Ravers CL", "geo": null, "id": 148839294465867780, "id_str": "148839294465867776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1430277765/rant-rave_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1430277765/rant-rave_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "republican congress (Financial District) http://t.co/WRlAyVCv #NYC #RnR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:58 +0000", "from_user": "bhasday", "from_user_id": 42785930, "from_user_id_str": "42785930", "from_user_name": "Brian Hasday", "geo": +{"coordinates": [38.7696,-9.1317], "type": "Point"}, "id": 148839256394170370, "id_str": "148839256394170368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1079450129/Me_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1079450129/Me_normal.png", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "Next stop: 35 hours in BCN before I leave for NYC! (@ Aeroporto de Lisboa (LIS)) http://t.co/3muVSUnj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:58 +0000", "from_user": "SzantosP", "from_user_id": 50058928, "from_user_id_str": "50058928", "from_user_name": "Szantos Palacios", "geo": null, "id": 148839255408508930, "id_str": "148839255408508928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689113593/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689113593/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @HotChelleRae: Don\\u2019t forget! We are playing a private show today at 5PM EST at the @iHeartRadio Theater in NYC. Enter for tix here: http://t.co/AzJSN2zV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:58 +0000", "from_user": "davidbowieUB40", "from_user_id": 49480380, "from_user_id_str": "49480380", "from_user_name": "Kelly Leece", "geo": null, "id": 148839253818880000, "id_str": "148839253818880000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1296775657/17054_105126616179758_100000472613423_136158_4547718_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1296775657/17054_105126616179758_100000472613423_136158_4547718_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Look at this guy tweeting! #Harpuglia #partyrape \"@PhilSuglia: Looking forward to NYE in NYC #phish #ragewallstreet\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:57 +0000", "from_user": "nymjobs", "from_user_id": 165985790, "from_user_id_str": "165985790", "from_user_name": "NY Marketingjobs", "geo": null, "id": 148839251654623230, "id_str": "148839251654623232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1077644968/nymj_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1077644968/nymj_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Junior Social Media Coordinator http://t.co/qnsD5Ecw #nyc #marketingjobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:57 +0000", "from_user": "OnBoardTours", "from_user_id": 310693718, "from_user_id_str": "310693718", "from_user_name": "OnBoard Tours", "geo": null, "id": 148839250878660600, "id_str": "148839250878660608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1411809804/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1411809804/images_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dhmuns We agree! Testing issues seem to apparent in a lot of places. However, at least NYC is seeing an increase in student performance. :)", "to_user": "dhmuns", "to_user_id": 112571905, "to_user_id_str": "112571905", "to_user_name": "Darren Munson", "in_reply_to_status_id": 148837092011687940, "in_reply_to_status_id_str": "148837092011687937"}, +{"created_at": "Mon, 19 Dec 2011 18:56:56 +0000", "from_user": "nymjobs", "from_user_id": 165985790, "from_user_id_str": "165985790", "from_user_name": "NY Marketingjobs", "geo": null, "id": 148839249171595260, "id_str": "148839249171595264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1077644968/nymj_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1077644968/nymj_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Sales Support http://t.co/hBDa2bGH #nyc #marketingjobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:56 +0000", "from_user": "808_Dave", "from_user_id": 24257377, "from_user_id_str": "24257377", "from_user_name": "David Leibner", "geo": null, "id": 148839248756359170, "id_str": "148839248756359169", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/622694282/DPL_IMG_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/622694282/DPL_IMG_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "Incredibly gorgeous day #nyc #soho http://t.co/LrdNvPu1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:56 +0000", "from_user": "nymjobs", "from_user_id": 165985790, "from_user_id_str": "165985790", "from_user_name": "NY Marketingjobs", "geo": null, "id": 148839247661645820, "id_str": "148839247661645824", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1077644968/nymj_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1077644968/nymj_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Analyst, Derivative Svcs http://t.co/QtFm4PFK #nyc #marketingjobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:55 +0000", "from_user": "KellllyMuldoon", "from_user_id": 206463704, "from_user_id_str": "206463704", "from_user_name": "Kelly Muldoon", "geo": null, "id": 148839244012584960, "id_str": "148839244012584960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1650691540/Photo_on_2011-11-19_at_23.32__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650691540/Photo_on_2011-11-19_at_23.32__2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Just got violated by Iron Man #toysrus #NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:50 +0000", "from_user": "Tommy_Parker", "from_user_id": 18177077, "from_user_id_str": "18177077", "from_user_name": "CVXSVR", "geo": null, "id": 148839223972212740, "id_str": "148839223972212736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627837608/283844_10150333482376289_607681288_9493701_1058283_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627837608/283844_10150333482376289_607681288_9493701_1058283_n_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "....im ready to go back to NYC. Lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:49 +0000", "from_user": "stunnybunny", "from_user_id": 38132673, "from_user_id_str": "38132673", "from_user_name": "Stun Gun", "geo": null, "id": 148839219744346100, "id_str": "148839219744346112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1616298930/lockhaven_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616298930/lockhaven_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Officially the BEST christmas ever! RT @Jack_P_Burgh: @stunnybunny so many things. puerto rico day parade in NYC this summer FER SURE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:47 +0000", "from_user": "ashleedemartino", "from_user_id": 176003363, "from_user_id_str": "176003363", "from_user_name": "Ashlee DeMartino", "geo": null, "id": 148839208109355000, "id_str": "148839208109355008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1263103797/photo8_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263103797/photo8_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "In honor of @OldHomesteadLV's opening at @CaesarsPalace, the NYC landmark\\u2019s iconic #AnnabelleMooves to #Vegas.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:46 +0000", "from_user": "MartinaRenea", "from_user_id": 170927738, "from_user_id_str": "170927738", "from_user_name": "Martina Jones", "geo": null, "id": 148839204795846660, "id_str": "148839204795846656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1087451152/Headshot-Pearls_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1087451152/Headshot-Pearls_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@tiaratoya26 You should start it by celebrating NYE in NYC:-)", "to_user": "tiaratoya26", "to_user_id": 361311689, "to_user_id_str": "361311689", "to_user_name": "*CrazySexyCool*", "in_reply_to_status_id": 148776449950744580, "in_reply_to_status_id_str": "148776449950744578"}, +{"created_at": "Mon, 19 Dec 2011 18:56:44 +0000", "from_user": "Luiz_Simpson", "from_user_id": 127273608, "from_user_id_str": "127273608", "from_user_name": "luiz Henrique Soares", "geo": null, "id": 148839195832619000, "id_str": "148839195832619008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668811966/Luiz_Henrique_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668811966/Luiz_Henrique_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @billboard: #Glee star @DarrenCriss played a few shows in #NYC over the weekend while in town for \"How to Succeed...\" on #Broadway http://t.co/O74cYdkY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:44 +0000", "from_user": "thematthinrichs", "from_user_id": 72737873, "from_user_id_str": "72737873", "from_user_name": "Matt Hinrichs", "geo": null, "id": 148839195773894660, "id_str": "148839195773894656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1683743770/383820_10150593974568662_678303661_11715093_1031372343_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683743770/383820_10150593974568662_678303661_11715093_1031372343_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Well this explains a lot http://t.co/v9JvUsYc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:43 +0000", "from_user": "Fab_Belleza", "from_user_id": 77209997, "from_user_id_str": "77209997", "from_user_name": "Portia", "geo": null, "id": 148839193076973570, "id_str": "148839193076973568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685336241/PKBl6UeI_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685336241/PKBl6UeI_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@sademddn NYC in a couple of months bby", "to_user": "sademddn", "to_user_id": 288960022, "to_user_id_str": "288960022", "to_user_name": "sade madden"}, +{"created_at": "Mon, 19 Dec 2011 18:56:39 +0000", "from_user": "JoshuATuna", "from_user_id": 208295917, "from_user_id_str": "208295917", "from_user_name": "Joshu@unis", "geo": null, "id": 148839176463327230, "id_str": "148839176463327232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1608735252/ActyzmFCQAAXicN_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608735252/ActyzmFCQAAXicN_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "wow anyone who cops beware of loud.. a ghanian driver in nyc told me he whiffed my piff and then i paid with a dime instead of a 12$ fair", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:39 +0000", "from_user": "kaylaglasgow", "from_user_id": 38948442, "from_user_id_str": "38948442", "from_user_name": "Kayla Glasgow", "geo": null, "id": 148839174672363520, "id_str": "148839174672363520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/966802788/kayla_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/966802788/kayla_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "NYC squirrels have been taking lessons from the honey badger", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:38 +0000", "from_user": "simon3677", "from_user_id": 276957820, "from_user_id_str": "276957820", "from_user_name": "simon renwick", "geo": null, "id": 148839170687774720, "id_str": "148839170687774720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1580399346/IMG00493-20110807-1549_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580399346/IMG00493-20110807-1549_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@stephenfry in NYC with my family when we saw Sherlock 2 in an RPX cinema which according to my son made your \"wobbly\" bits too much to see!", "to_user": "stephenfry", "to_user_id": 15439395, "to_user_id_str": "15439395", "to_user_name": "Stephen Fry", "in_reply_to_status_id": 148832444236300300, "in_reply_to_status_id_str": "148832444236300288"}, +{"created_at": "Mon, 19 Dec 2011 18:56:37 +0000", "from_user": "BTB_JADE", "from_user_id": 41468715, "from_user_id_str": "41468715", "from_user_name": "Jade The ILLest", "geo": null, "id": 148839168515112960, "id_str": "148839168515112960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701675172/331687752_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701675172/331687752_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @ciphasounds: NYC support @KelSpencer's Live Charity Show #JingleBellRocks 2MORO Dec 20th\\u00BB http://t.co/2vZhSghq & http://t.co/Y4k9b8no", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:36 +0000", "from_user": "cryptic_IB", "from_user_id": 216085609, "from_user_id_str": "216085609", "from_user_name": "Iberedem Usoro", "geo": null, "id": 148839165042245630, "id_str": "148839165042245633", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702420367/Double_ponder_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702420367/Double_ponder_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TomCruise: Tom answers your questions at the NYC M:I-@GhostProtocol Premiere 2night! Submit your questions w/ #MissionNYC http://t.co/8FwxLVGC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:33 +0000", "from_user": "AbsolutelyMrsK", "from_user_id": 250636167, "from_user_id_str": "250636167", "from_user_name": "Absolutely Mrs. K", "geo": null, "id": 148839149263274000, "id_str": "148839149263273985", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1249557868/7_-_kopie_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1249557868/7_-_kopie_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@kiplingofficial work, relax, pampering, NYC!!!!!!!!", "to_user": "kiplingofficial", "to_user_id": 66308687, "to_user_id_str": "66308687", "to_user_name": "Kipling", "in_reply_to_status_id": 148838631832944640, "in_reply_to_status_id_str": "148838631832944640"}, +{"created_at": "Mon, 19 Dec 2011 18:56:30 +0000", "from_user": "giantswfan", "from_user_id": 62511529, "from_user_id_str": "62511529", "from_user_name": "GiantsWFAN", "geo": null, "id": 148839139419238400, "id_str": "148839139419238400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/419042238/dottino_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/419042238/dottino_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @GiantsCRDept: @Giants Deon Grant helps pack shelf stable meals for elderly in need at #CityMeals warehouse in NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:30 +0000", "from_user": "Glee_Maniac", "from_user_id": 102285396, "from_user_id_str": "102285396", "from_user_name": "kirsty godfrey(15yr)", "geo": null, "id": 148839139230498800, "id_str": "148839139230498816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1210722916/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1210722916/image_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "Good morning everyone ! Hope everyone is having a good day ! Starting mine off with this cute pic of lea in NYC ! http://t.co/Oh92B1o3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:30 +0000", "from_user": "jillian_jane", "from_user_id": 49244070, "from_user_id_str": "49244070", "from_user_name": "jillian", "geo": null, "id": 148839138194493440, "id_str": "148839138194493440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697546804/16145_1167825079608_1347360073_30417927_6206447_n_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697546804/16145_1167825079608_1347360073_30417927_6206447_n_normal.jpeg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "nyc ballet's nutcracker is goooorgeous, but i'm glad i didn't pay $100+ to see it from the fourth balcony. thanks, pbs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:28 +0000", "from_user": "DannyWesterZTZ", "from_user_id": 388647926, "from_user_id_str": "388647926", "from_user_name": "Danny Western", "geo": null, "id": 148839130397282300, "id_str": "148839130397282304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1610536711/avatar-cartoon-25-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610536711/avatar-cartoon-25-1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Man suspected of torching 73-year-old woman in NYC elevator charged with ... - Washington Post", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:28 +0000", "from_user": "QuinceyTrigillo", "from_user_id": 205126200, "from_user_id_str": "205126200", "from_user_name": "Quincey Trigillo", "geo": null, "id": 148839129868795900, "id_str": "148839129868795904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1436238254/BDAY_with_Walter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1436238254/BDAY_with_Walter_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Being an NYC tourist. #rockcenter #thisnevergetsold", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:27 +0000", "from_user": "AmiieMarie", "from_user_id": 171912375, "from_user_id_str": "171912375", "from_user_name": "Amy Marie", "geo": null, "id": 148839124722384900, "id_str": "148839124722384896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1385107357/107_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1385107357/107_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "China town... Is another story #Nyc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:25 +0000", "from_user": "Vicenzo_", "from_user_id": 53760874, "from_user_id_str": "53760874", "from_user_name": "Vicenzo Esmanhotto", "geo": null, "id": 148839117101338620, "id_str": "148839117101338624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1613462248/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1613462248/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "at least im going to nyc in a few days...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:24 +0000", "from_user": "MoMo_BEAUTYSTAR", "from_user_id": 143574332, "from_user_id_str": "143574332", "from_user_name": "SAVAGE BEAUTY.. Mo", "geo": null, "id": 148839112399532030, "id_str": "148839112399532032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691407692/Ms._20BeautyStarr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691407692/Ms._20BeautyStarr_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Laundry... Shopping... & Packing Today.. NYC Tomorrow!! \\u263A\\u2665", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:23 +0000", "from_user": "MrStarvinMarvin", "from_user_id": 213734094, "from_user_id_str": "213734094", "from_user_name": "Mr.Marvin", "geo": null, "id": 148839110726008830, "id_str": "148839110726008833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701571488/The_Broken_Silence_Front_Cover_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701571488/The_Broken_Silence_Front_Cover_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I need internship in NYC, I am an Recording/Mixing engineer,A&R,Pr @iamdiddy @harrellrecords @Eminem @kanyewest @Interscope @DefJamRecords", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:23 +0000", "from_user": "BiancaDafu", "from_user_id": 217092078, "from_user_id_str": "217092078", "from_user_name": "Bianca Dafuente", "geo": null, "id": 148839109773889540, "id_str": "148839109773889536", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1170110101/74470_102465939827021_100001908458629_16447_7160588_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1170110101/74470_102465939827021_100001908458629_16447_7160588_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @MichaelFranjul: NYC I fucking miss u", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:23 +0000", "from_user": "Tremythedon31", "from_user_id": 323665755, "from_user_id_str": "323665755", "from_user_name": "Tremayne Panton", "geo": null, "id": 148839107752239100, "id_str": "148839107752239105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1568883716/IMG-20111001-00007_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1568883716/IMG-20111001-00007_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Heres my predictions for Xmas day. Miami 86vs Dallas 79, Orlando 82vs Okc 97, Celtics 85 vs NYC 84, Bulls 99 vs LA 101 #nba what yall think?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:22 +0000", "from_user": "GlamorousRock", "from_user_id": 136757328, "from_user_id_str": "136757328", "from_user_name": "Jackie LeClair ", "geo": null, "id": 148839102601629700, "id_str": "148839102601629696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1129637820/62708_156480164371672_100000290693177_394264_7367857_n_me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1129637820/62708_156480164371672_100000290693177_394264_7367857_n_me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Good too know I'm the one changing travel arraignments today 4Thursday trip to NYC & not the Arctic Cats. My meeting is @ 1pm. #worldpeace", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:21 +0000", "from_user": "netsbuzztap", "from_user_id": 21842239, "from_user_id_str": "21842239", "from_user_name": "New Jersey Nets Buzz", "geo": null, "id": 148839102308032500, "id_str": "148839102308032512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/494066304/nets_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/494066304/nets_normal.gif", "source": "<a href="http://buzztap.com" rel="nofollow">buzztap</a>", "text": "NY Daily News >> Actor Dan Frazer, who played Capt. McNeil on \\u2018Kojak\\u2019\\u00A0dies in NYC\\u00A0 http://t.co/V7XlCOja", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:21 +0000", "from_user": "bjnichole", "from_user_id": 156436017, "from_user_id_str": "156436017", "from_user_name": "Brittany Johnson", "geo": null, "id": 148839099346849800, "id_str": "148839099346849793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1627768454/Photo_on_10-14-11_at_6.35_PM_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627768454/Photo_on_10-14-11_at_6.35_PM_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Madame Tussaud's NYC with @taytothejay", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:19 +0000", "from_user": "Kliffnotez", "from_user_id": 287547005, "from_user_id_str": "287547005", "from_user_name": "Kliffnotes", "geo": null, "id": 148839093789401100, "id_str": "148839093789401088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1385748310/IMG7085-Ti_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1385748310/IMG7085-Ti_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @SmokeStackLLC: #NYC #MOVIEMAKIN @PaceMediaLLC http://t.co/yUKU7dLl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:19 +0000", "from_user": "elliottholt", "from_user_id": 22279580, "from_user_id_str": "22279580", "from_user_name": "Elliott Holt", "geo": null, "id": 148839090383622140, "id_str": "148839090383622146", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1439257200/elliott_in_red_chair_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1439257200/elliott_in_red_chair_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Things I won't miss about #NYC: Park Slope; trying to get a cab.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:18 +0000", "from_user": "wang0x", "from_user_id": 440488210, "from_user_id_str": "440488210", "from_user_name": "Ernie Williams", "geo": null, "id": 148839088554901500, "id_str": "148839088554901504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701298263/IMG_4414aaa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701298263/IMG_4414aaa_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Last period :D #teamhomo #follow me :c #nyc #teamnewyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:18 +0000", "from_user": "MichaelWeschler", "from_user_id": 90935739, "from_user_id_str": "90935739", "from_user_name": "Michael Weschler", "geo": null, "id": 148839087640543230, "id_str": "148839087640543233", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1310719448/MWeschlerNewHatNYC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1310719448/MWeschlerNewHatNYC_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "The Lion Tamer @adcglobal Creative Carnival, NYC #photog @theworkbook https://t.co/DuAcaCAF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:17 +0000", "from_user": "AZEALIABANKS", "from_user_id": 145353566, "from_user_id_str": "145353566", "from_user_name": "\\u2665 AH-ZEE-LEE-YAH \\u2665", "geo": null, "id": 148839083391713280, "id_str": "148839083391713280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1655420220/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655420220/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @vmagazine: Stream \"Liquorice\" \\u266C the new track from NYC rapper @AZEALIABANKS http://t.co/RYjCwZgK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:16 +0000", "from_user": "lukelassiter1", "from_user_id": 31682992, "from_user_id_str": "31682992", "from_user_name": "Money Making LL", "geo": null, "id": 148839081168736260, "id_str": "148839081168736257", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686096148/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686096148/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@SayWTF_iWant: Niggas in NYC \\uD83D\\uDDFD\\uD83D\\uDDFD\\uD83D\\uDDFD\\u201Dwat u shopping", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:16 +0000", "from_user": "FlyGrlLafleur", "from_user_id": 378671223, "from_user_id_str": "378671223", "from_user_name": "Lindsay ", "geo": null, "id": 148839079000277000, "id_str": "148839079000276992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682005168/Reno_20Southeast-20111208-00047_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682005168/Reno_20Southeast-20111208-00047_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Ok my friend that is going w/me to NYC just suggested we stay w/one of her friends in Illinois & drive to NYC for the day! Really?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:16 +0000", "from_user": "MitchMammini", "from_user_id": 393844292, "from_user_id_str": "393844292", "from_user_name": "Not Here For You", "geo": null, "id": 148839078245302270, "id_str": "148839078245302273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701579352/bild2.php_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701579352/bild2.php_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "She pose for FHM, She like my Black LV\\nWe spinnin\\u2019 LPR, up on my APC\\nI\\u2019m in my PRPS and my Nike SB\\u2019s\\nRavin\\u2019 with SHM, London to NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:15 +0000", "from_user": "jrosh", "from_user_id": 26421731, "from_user_id_str": "26421731", "from_user_name": "Josh Reisner", "geo": null, "id": 148839074403319800, "id_str": "148839074403319808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1427101134/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1427101134/image_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Camera on iOS</a>", "text": "Pinkberry #nyc http://t.co/nM5w0VAZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:15 +0000", "from_user": "HV_sings", "from_user_id": 28442504, "from_user_id_str": "28442504", "from_user_name": "HeatherVictoria.", "geo": null, "id": 148839074189414400, "id_str": "148839074189414400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695889741/HV_sings_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695889741/HV_sings_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "follow the NYC fam @thekiddaytona -- sick, unique flow....pick up his BRAND NEW tape #Interlude2 here: http://t.co/8clPbrxK *yeahhhhhh*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:12 +0000", "from_user": "jackyjessicah", "from_user_id": 357390723, "from_user_id_str": "357390723", "from_user_name": "jessicajaque", "geo": null, "id": 148839062072066050, "id_str": "148839062072066049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1600749449/jessica_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600749449/jessica_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@Ongashmania thnx urs nyc too", "to_user": "Ongashmania", "to_user_id": 159034032, "to_user_id_str": "159034032", "to_user_name": "Felix ong'are", "in_reply_to_status_id": 128805388752650240, "in_reply_to_status_id_str": "128805388752650240"}, +{"created_at": "Mon, 19 Dec 2011 18:56:08 +0000", "from_user": "RSlesinski88", "from_user_id": 287888136, "from_user_id_str": "287888136", "from_user_name": "Robert Slesinski", "geo": null, "id": 148839047786270720, "id_str": "148839047786270721", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1357029028/227026_10150179276021701_708386700_7207477_762360_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1357029028/227026_10150179276021701_708386700_7207477_762360_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @autumnn_marie: I want to go to NYC for new years!!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:06 +0000", "from_user": "HUEMANBOOKS", "from_user_id": 44131286, "from_user_id_str": "44131286", "from_user_name": "HUE-MAN BOOKSTORE", "geo": null, "id": 148839036700737540, "id_str": "148839036700737536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/636134909/logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/636134909/logo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Vendor day was great...if you did not stop by...vendor products are still available ..cards, meditation, teas, books etc. Stop in today #NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:06 +0000", "from_user": "_alleyesonE", "from_user_id": 82966610, "from_user_id_str": "82966610", "from_user_name": "polly pocket ", "geo": null, "id": 148839036298072060, "id_str": "148839036298072064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1571426095/Photo_on_2011-09-27_at_17.28_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1571426095/Photo_on_2011-09-27_at_17.28_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "my mom is always in NYC ...it makes me so damn jealous ... NYC trip ? @freshasfukk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:05 +0000", "from_user": "isolatedwithin", "from_user_id": 31249215, "from_user_id_str": "31249215", "from_user_name": "lydia", "geo": null, "id": 148839032770662400, "id_str": "148839032770662400", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1494666621/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1494666621/image_normal.jpg", "source": "<a href="http://www.eyeem.com" rel="nofollow">EyeEm</a>", "text": "Photo: Driving at NYC http://t.co/QiJCOlZh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:05 +0000", "from_user": "AcuArkaid", "from_user_id": 30306511, "from_user_id_str": "30306511", "from_user_name": "Alston Fishburne", "geo": null, "id": 148839032653234180, "id_str": "148839032653234177", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1664229786/309539_701810020154_22301533_34928569_1976675354_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664229786/309539_701810020154_22301533_34928569_1976675354_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Sweet @iLoveMiCurls is coming home to NYC tomorrow $1 beers on Wednesday?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:05 +0000", "from_user": "brennabeannnn", "from_user_id": 41926675, "from_user_id_str": "41926675", "from_user_name": "Brenna Priest", "geo": null, "id": 148839031889862660, "id_str": "148839031889862657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1495672944/Photo_on_2011-08-11_at_13.02__3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1495672944/Photo_on_2011-08-11_at_13.02__3_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "First time driving in NYC is a major success \\uD83D\\uDE03\\uD83D\\uDC4D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:04 +0000", "from_user": "FilmFatale_NYC", "from_user_id": 37340424, "from_user_id_str": "37340424", "from_user_name": "Film Fatale NYC", "geo": null, "id": 148839029733986300, "id_str": "148839029733986304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1662464956/becca_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662464956/becca_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "@skrap_zemrag it damn sure isn't NYC. Just had a fatal shooting on a city bus around me 2 wks ago", "to_user": "Skrap_Zemrag", "to_user_id": 103864992, "to_user_id_str": "103864992", "to_user_name": "Skrap", "in_reply_to_status_id": 148838687663341570, "in_reply_to_status_id_str": "148838687663341569"}, +{"created_at": "Mon, 19 Dec 2011 18:56:03 +0000", "from_user": "fharnerSNY", "from_user_id": 23119242, "from_user_id_str": "23119242", "from_user_name": "Fred Harner", "geo": null, "id": 148839026978336770, "id_str": "148839026978336768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1170139135/fh-twt_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1170139135/fh-twt_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Yes! RT @myupperwest: #UWS Coffee Bean & Tea Leaf At Amsterdam & 86th Officially Open (Finally): http://t.co/CCfSxXLN #UpperWestSide #NYC...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:03 +0000", "from_user": "AndreaFaz", "from_user_id": 38748431, "from_user_id_str": "38748431", "from_user_name": "Andrea Faz", "geo": null, "id": 148839024847618050, "id_str": "148839024847618048", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668708335/164875_10150131793344529_741229528_7851772_2764124_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668708335/164875_10150131793344529_741229528_7851772_2764124_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "NYC \\u27A1 SF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:02 +0000", "from_user": "bzean_cutie", "from_user_id": 114601676, "from_user_id_str": "114601676", "from_user_name": "Reese Hulett", "geo": null, "id": 148839020993052670, "id_str": "148839020993052672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675726702/Photo_on_2011-12-02_at_21.43__6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675726702/Photo_on_2011-12-02_at_21.43__6_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@D_NIZLE I left Bze on Saturday I'm in NYC ryte now.. Freezing", "to_user": "D_NIZLE", "to_user_id": 76199268, "to_user_id_str": "76199268", "to_user_name": "D-NICE", "in_reply_to_status_id": 148838293335838720, "in_reply_to_status_id_str": "148838293335838720"}, +{"created_at": "Mon, 19 Dec 2011 18:56:02 +0000", "from_user": "lukelassiter1", "from_user_id": 31682992, "from_user_id_str": "31682992", "from_user_name": "Money Making LL", "geo": null, "id": 148839020829487100, "id_str": "148839020829487104", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686096148/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686096148/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @SayWTF_iWant: Niggas in NYC \\uD83D\\uDDFD\\uD83D\\uDDFD\\uD83D\\uDDFD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:59 +0000", "from_user": "adorabletunie", "from_user_id": 323783098, "from_user_id_str": "323783098", "from_user_name": "Tunrayo ", "geo": null, "id": 148839008863125500, "id_str": "148839008863125506", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702579093/DSC_6235_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702579093/DSC_6235_normal.JPG", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "I'm bored.....*cryin*RT @Adorable_Tee: Ryt here dear.... Sup? Nyc avi...RT @adorabletunie: Where is @Adorable_Tee@vahldesiah???", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:58 +0000", "from_user": "ptsimy", "from_user_id": 312532572, "from_user_id_str": "312532572", "from_user_name": "Paul Simpson", "geo": null, "id": 148839005172142080, "id_str": "148839005172142080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1671923550/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671923550/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Feel abit sorry for #rufc fans,big day for club after a bad few years &the board call it that so everyone takin piss #NYC #shitfansnoground", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:58 +0000", "from_user": "iAttract_Haters", "from_user_id": 181450496, "from_user_id_str": "181450496", "from_user_name": "EverybodyLuvsTaye\\u2661\\u2714.", "geo": null, "id": 148839003225980930, "id_str": "148839003225980928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1670644131/C360_2011-10-1118-14-22_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670644131/C360_2011-10-1118-14-22_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@justJarrett eff you, & i sent you some pix of nyc", "to_user": "justJarrett", "to_user_id": 165305860, "to_user_id_str": "165305860", "to_user_name": "JARR\\u20ACTT ", "in_reply_to_status_id": 148838827849555970, "in_reply_to_status_id_str": "148838827849555970"}, +{"created_at": "Mon, 19 Dec 2011 18:55:55 +0000", "from_user": "modelQ", "from_user_id": 35676441, "from_user_id_str": "35676441", "from_user_name": "Que", "geo": null, "id": 148838993042210800, "id_str": "148838993042210816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1663455267/Colormebad_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663455267/Colormebad_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "It's way too cold to Christmas shop in NYC. I'm doing my shopping online!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:55 +0000", "from_user": "CharleyBruns", "from_user_id": 47800868, "from_user_id_str": "47800868", "from_user_name": "Charles Bruns", "geo": null, "id": 148838991507107840, "id_str": "148838991507107840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1497636060/CBruns8-11T_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1497636060/CBruns8-11T_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Why did someone strike young guy early SundayAM & leave him outside #Saloon by 83rd&York 4 EMT 2 hospitalize? #nyc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:55 +0000", "from_user": "agt143", "from_user_id": 223291792, "from_user_id_str": "223291792", "from_user_name": "Graciee(:", "geo": null, "id": 148838989414150140, "id_str": "148838989414150144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1397778017/003_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1397778017/003_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@lillieLRH first he's probs not comming to NC and 2nd hes gonna be in boston on my birthday, but i cant go cause im goin to nyc the next day", "to_user": "LillieLRH", "to_user_id": 124316813, "to_user_id_str": "124316813", "to_user_name": "\\u24C1\\u24D8\\u24DB\\u24DB\\u24D8\\u24D4 \\u2661"}, +{"created_at": "Mon, 19 Dec 2011 18:55:51 +0000", "from_user": "KelSpencer", "from_user_id": 17512390, "from_user_id_str": "17512390", "from_user_name": "K\\u03BEL SP\\u03BENC\\u03BER", "geo": null, "id": 148838974436290560, "id_str": "148838974436290560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690344059/331404218_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690344059/331404218_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @ciphasounds: NYC support @KelSpencer's Live Charity Show #JingleBellRocks 2MORO Dec 20th\\u00BB http://t.co/SCGnDi6J & http://t.co/UW5SnCo3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:51 +0000", "from_user": "xxxtiffanyfox", "from_user_id": 413887459, "from_user_id_str": "413887459", "from_user_name": "Tiffany Fox", "geo": null, "id": 148838974151069700, "id_str": "148838974151069697", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1656740750/tiffanydgore_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656740750/tiffanydgore_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@YungLost_Rebel maybe next time or if you happen to see me around. I actually want to go to NYC again I love shopping out there", "to_user": "YungLost_Rebel", "to_user_id": 76770147, "to_user_id_str": "76770147", "to_user_name": "Mar ", "in_reply_to_status_id": 148838569287499780, "in_reply_to_status_id_str": "148838569287499776"}, +{"created_at": "Mon, 19 Dec 2011 18:55:48 +0000", "from_user": "juliexanna", "from_user_id": 257294428, "from_user_id_str": "257294428", "from_user_name": "JULiANNA", "geo": null, "id": 148838960943214600, "id_str": "148838960943214592", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692416000/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692416000/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @juanieboy22 @juliexanna La chica de mis sue\\u00F1os. \\u00BFC\\u00F3mo etas? <<check you outttt :P you are the biggest slacker! come to NYC with @tikamo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:48 +0000", "from_user": "TizzleSTX", "from_user_id": 78043547, "from_user_id_str": "78043547", "from_user_name": "STX Lacrosse", "geo": null, "id": 148838960406335500, "id_str": "148838960406335488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1376430156/STXredboxTwitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1376430156/STXredboxTwitter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Evank37 the patent leather ones @KyleHarrison18 got in NYC?", "to_user": "Evank37", "to_user_id": 70412282, "to_user_id_str": "70412282", "to_user_name": "Evan Kay", "in_reply_to_status_id": 148827719860359170, "in_reply_to_status_id_str": "148827719860359168"}, +{"created_at": "Mon, 19 Dec 2011 18:55:41 +0000", "from_user": "HOMMEEY", "from_user_id": 199506716, "from_user_id_str": "199506716", "from_user_name": "Henry", "geo": null, "id": 148838934653308930, "id_str": "148838934653308928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701526332/SHIT_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701526332/SHIT_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @vmagazine: Stream \"Liquorice\" \\u266C the new track from NYC rapper @AZEALIABANKS http://t.co/RYjCwZgK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:41 +0000", "from_user": "toniasTAN", "from_user_id": 356607089, "from_user_id_str": "356607089", "from_user_name": "tonia krusch", "geo": null, "id": 148838933151748100, "id_str": "148838933151748096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627211891/beach_novemeber_5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627211891/beach_novemeber_5_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Zbabez34 I'm in NYC #thinkingofyou", "to_user": "Zbabez34", "to_user_id": 131023486, "to_user_id_str": "131023486", "to_user_name": "Miss Zamora \\u270C"}, +{"created_at": "Mon, 19 Dec 2011 18:55:41 +0000", "from_user": "JoseakaHova", "from_user_id": 29736617, "from_user_id_str": "29736617", "from_user_name": "Hova The God", "geo": null, "id": 148838931125903360, "id_str": "148838931125903360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682783005/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682783005/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Just touched down. NYC what's good??", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:39 +0000", "from_user": "DjanarkiBx", "from_user_id": 352468801, "from_user_id_str": "352468801", "from_user_name": "DJ_ANARKI", "geo": null, "id": 148838924767346700, "id_str": "148838924767346688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1647690938/ProfilePhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647690938/ProfilePhoto_normal.png", "source": "<a href="http://www.osfoora.com" rel="nofollow">Osfoora for iPhone</a>", "text": "Lol boost mobile RT @DjManiatiko: Anyone know where I can buy a Simple Mobile phone in nyc???", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:38 +0000", "from_user": "lpolicaro", "from_user_id": 28113118, "from_user_id_str": "28113118", "from_user_name": "Lina Policaro", "geo": null, "id": 148838920019382270, "id_str": "148838920019382272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1353667009/LPcrop_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1353667009/LPcrop_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "One week till #NYC. @MatBunny & #VR, if you think I am not going ape-shit in Kiki de Montparnasse, you got another thing coming!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:35 +0000", "from_user": "angelwings202", "from_user_id": 172880938, "from_user_id_str": "172880938", "from_user_name": "Angela", "geo": null, "id": 148838909562990600, "id_str": "148838909562990592", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1623126782/IMG_20110718_101045_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1623126782/IMG_20110718_101045_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Goodbye NYC hello Orlando", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:34 +0000", "from_user": "Koreanaa_Beauty", "from_user_id": 411869676, "from_user_id_str": "411869676", "from_user_name": "rebecca lee", "geo": null, "id": 148838902520746000, "id_str": "148838902520745985", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700575855/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700575855/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Maybe I'll see yu around lol :) RT \\u201C@FLOWP2ENT: @Koreanaa_Beauty yup, uptown nyc =)\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:32 +0000", "from_user": "mjetienne", "from_user_id": 30540758, "from_user_id_str": "30540758", "from_user_name": "Marie", "geo": null, "id": 148838893251346430, "id_str": "148838893251346432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1574005585/just_20me_204_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1574005585/just_20me_204_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#apartment #nyc Magazine Living: In Good Company... - The all-American characters of Gary and Elaine have wormed the... http://t.co/tPbZovRK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:31 +0000", "from_user": "PinkberryMiley", "from_user_id": 204920819, "from_user_id_str": "204920819", "from_user_name": "hardcore smi\\u2113er. \\u2654", "geo": null, "id": 148838890147549200, "id_str": "148838890147549184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701972845/475527642_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701972845/475527642_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ArianaGrande: If you're coming to my show on December 28 at @IrvingPlaza in NYC and want to come meet me after, here's how: http://t.co/1w7eeLFq! xoxo RT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:55:32 +0000", "from_user": "mjetienne", "from_user_id": 30540758, "from_user_id_str": "30540758", "from_user_name": "Marie", "geo": null, "id": 148838893251346430, "id_str": "148838893251346432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1574005585/just_20me_204_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1574005585/just_20me_204_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#apartment #nyc Magazine Living: In Good Company... - The all-American characters of Gary and Elaine have wormed the... http://t.co/tPbZovRK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:31 +0000", "from_user": "PinkberryMiley", "from_user_id": 204920819, "from_user_id_str": "204920819", "from_user_name": "hardcore smi\\u2113er. \\u2654", "geo": null, "id": 148838890147549200, "id_str": "148838890147549184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701972845/475527642_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701972845/475527642_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ArianaGrande: If you're coming to my show on December 28 at @IrvingPlaza in NYC and want to come meet me after, here's how: http://t.co/1w7eeLFq! xoxo RT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:30 +0000", "from_user": "jessiannjackson", "from_user_id": 230255078, "from_user_id_str": "230255078", "from_user_name": "Jessica Jackson", "geo": null, "id": 148838888184614900, "id_str": "148838888184614912", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1654071865/w66TX81k_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654071865/w66TX81k_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@alex_mcneil are you in NYC modeling?", "to_user": "alex_mcneil", "to_user_id": 172102823, "to_user_id_str": "172102823", "to_user_name": "Alex McNeil", "in_reply_to_status_id": 148838541332455420, "in_reply_to_status_id_str": "148838541332455424"}, +{"created_at": "Mon, 19 Dec 2011 18:55:29 +0000", "from_user": "SELFDietTapper", "from_user_id": 355602294, "from_user_id_str": "355602294", "from_user_name": "SELFDietTapper", "geo": null, "id": 148838881691844600, "id_str": "148838881691844608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1496771037/tapper_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1496771037/tapper_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @SELFmagazine: Callin' all NYC foodies - love healthy (and free) food? Be an @SELFmagazine Healthy Food Awards tester at http://t.co/PbyorXJI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:29 +0000", "from_user": "LIKKZ1", "from_user_id": 379666601, "from_user_id_str": "379666601", "from_user_name": "LIKKZ", "geo": null, "id": 148838880257380350, "id_str": "148838880257380352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1558990513/CRIPS_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1558990513/CRIPS_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "NYC IS BUSY ALL DA TIME MAAN. THE CITY THAT NEVER SLEEPS.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:28 +0000", "from_user": "VinNice1", "from_user_id": 74707033, "from_user_id_str": "74707033", "from_user_name": "Vinny", "geo": null, "id": 148838879540154370, "id_str": "148838879540154369", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1684653080/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684653080/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@potionnumbr9 omw to NYC wat time u get out?", "to_user": "potionnumbr9", "to_user_id": 238844962, "to_user_id_str": "238844962", "to_user_name": " F.L.Y ", "in_reply_to_status_id": 148835572381786100, "in_reply_to_status_id_str": "148835572381786112"}, +{"created_at": "Mon, 19 Dec 2011 18:55:28 +0000", "from_user": "RuderFinn", "from_user_id": 138128358, "from_user_id_str": "138128358", "from_user_name": "Ruder Finn ", "geo": null, "id": 148838876125995000, "id_str": "148838876125995011", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1384483228/ruder_logo_color_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1384483228/ruder_logo_color_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "We\\u2019re donating care products to Midnight Run, a great organization that supports NYC's homeless population. http://t.co/RPHFqL0f #RFCares", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:25 +0000", "from_user": "AlexMenDiesel", "from_user_id": 102726818, "from_user_id_str": "102726818", "from_user_name": "Alex Mendez", "geo": null, "id": 148838864503582720, "id_str": "148838864503582720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1659225712/199665_10150420251985024_700565023_17439259_8269876_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659225712/199665_10150420251985024_700565023_17439259_8269876_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Newport to springfield to boston to providence .. NYC next ?? #WhyNot", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:24 +0000", "from_user": "TomsTravelTweet", "from_user_id": 403636401, "from_user_id_str": "403636401", "from_user_name": "Tom Faries", "geo": null, "id": 148838863308210180, "id_str": "148838863308210176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1619280658/tumblr_lt9yhfkfva1qfze4lo1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619280658/tumblr_lt9yhfkfva1qfze4lo1_500_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "can't wait for my own upcoming travel. San Francisco>Palm Beach, FL, St. Pete, FL>NYC>SF with stays at the Ritz and Morgan's Royalton", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:23 +0000", "from_user": "StylinBiebs2013", "from_user_id": 164458657, "from_user_id_str": "164458657", "from_user_name": "\\u2133\\u212F\\u03B1\\u210A\\u03B1\\u03B7 ", "geo": null, "id": 148838858413445120, "id_str": "148838858413445120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695180116/381136_2040492030210_1781601862_1337339_2009830987_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695180116/381136_2040492030210_1781601862_1337339_2009830987_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NYC has all this hope that they are going to win the event from 1D. lol girls keep dreaming.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:20 +0000", "from_user": "gigs4NYC", "from_user_id": 432221780, "from_user_id_str": "432221780", "from_user_name": "New York City gigs", "geo": null, "id": 148838846308691970, "id_str": "148838846308691968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1682411666/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682411666/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#gigs4u #gigs looking for Inshape Male (queens) http://t.co/MR2mhwvE #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:20 +0000", "from_user": "gigs4NYC", "from_user_id": 432221780, "from_user_id_str": "432221780", "from_user_name": "New York City gigs", "geo": null, "id": 148838845281075200, "id_str": "148838845281075200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1682411666/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682411666/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#gigs4u #gigs workout accountability http://t.co/mFqmPsjF #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:20 +0000", "from_user": "gigs4NYC", "from_user_id": 432221780, "from_user_id_str": "432221780", "from_user_name": "New York City gigs", "geo": null, "id": 148838844261863420, "id_str": "148838844261863424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1682411666/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682411666/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#gigs4u #gigs DIRECTOR CASTING NEW YORK VIDEO SHOOT (Midtown) http://t.co/OEkPyqMZ #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:20 +0000", "from_user": "gigs4NYC", "from_user_id": 432221780, "from_user_id_str": "432221780", "from_user_name": "New York City gigs", "geo": null, "id": 148838843016163330, "id_str": "148838843016163329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1682411666/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682411666/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#gigs4u #gigs Pantyhose-Nylon-Stockings fun gig with open minded gal today (New York) http://t.co/aihFhdGj #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:19 +0000", "from_user": "gigs4NYC", "from_user_id": 432221780, "from_user_id_str": "432221780", "from_user_name": "New York City gigs", "geo": null, "id": 148838842105999360, "id_str": "148838842105999360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1682411666/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682411666/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#gigs4u #gigs Thin, Bright,Enthusiastic Gal? (NYC) http://t.co/WhVJYSF2 #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:19 +0000", "from_user": "louisbrice", "from_user_id": 16610140, "from_user_id_str": "16610140", "from_user_name": "Louis Middleton", "geo": null, "id": 148838841367793660, "id_str": "148838841367793664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1579341629/IMAG0793_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1579341629/IMAG0793_normal.jpg", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "RT @VisionSisters Hey friends! Check out this video from @Zanderbleck show last night in NYC! INCREDIBLE! :) http://t.co/4Y8CwSrG Thanks!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:18 +0000", "from_user": "GreenEyedLilo", "from_user_id": 119758837, "from_user_id_str": "119758837", "from_user_name": "Jayelle ", "geo": null, "id": 148838836762460160, "id_str": "148838836762460161", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1213351691/a6e00d30-383d-40a1-917a-35ef57632c7a_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1213351691/a6e00d30-383d-40a1-917a-35ef57632c7a_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @TalibKweli: RT @DJBOBBYTRENDS: NEW MUSIC: @TalibKweli - \"Distractions\" http://t.co/2sxPsKjc (NYC needs this on the radio Bobby holla!)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:18 +0000", "from_user": "hughwarmisham", "from_user_id": 41667480, "from_user_id_str": "41667480", "from_user_name": "Hugh Warmisham", "geo": null, "id": 148838834203930620, "id_str": "148838834203930624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1510259497/Hugh2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1510259497/Hugh2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "Baron Davis and now rumours of Gilbert Arenas?! How many PG do the #knicks need? #NYC #NBA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:16 +0000", "from_user": "airlineflight", "from_user_id": 169563061, "from_user_id_str": "169563061", "from_user_name": "Besty Flight", "geo": null, "id": 148838826943586300, "id_str": "148838826943586304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1089980851/airplane_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1089980851/airplane_normal.jpg", "source": "<a href="http://www.visibli.com" rel="nofollow">Visibli</a>", "text": "Business class airline Odyssey plans London-NYC route: Bankers may be languishing in popularity polls but a new ... http://t.co/S1bkyOsZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:15 +0000", "from_user": "SanctuaryHotel_", "from_user_id": 227470413, "from_user_id_str": "227470413", "from_user_name": "Sanctuary Hotel NYC", "geo": null, "id": 148838822250168320, "id_str": "148838822250168320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1394522399/Sanctuary_Logo_brown_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1394522399/Sanctuary_Logo_brown_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Only a few days left for this Christmas Sale on Room Rates! Book Now! http://t.co/27tJSyWv \\n\\nSAVE BIG before the Holidays! #NYC #TRAVEL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:14 +0000", "from_user": "jennnpappas", "from_user_id": 216889295, "from_user_id_str": "216889295", "from_user_name": "Jennifer Pappas", "geo": null, "id": 148838821298053120, "id_str": "148838821298053120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1649662856/386066_2320315011330_1353180096_32402908_1573265025_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649662856/386066_2320315011330_1353180096_32402908_1573265025_n_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "RT @BarstoolNewYork: > \\u00BB Upstate High School Cancels Dance Because They Can\\u2019t Stop Grinding http://t.co/7Z8pcfuf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:13 +0000", "from_user": "invictus_99", "from_user_id": 275901193, "from_user_id_str": "275901193", "from_user_name": "Tami", "geo": null, "id": 148838816239730700, "id_str": "148838816239730688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677862149/invictus99media2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677862149/invictus99media2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@Cross_X_Bones @OccupyLA I'm reading them now. It's mind blowing. Link here if anyone wants to read: http://t.co/7NAzvh99 #ows", "to_user": "Cross_X_Bones", "to_user_id": 399245268, "to_user_id_str": "399245268", "to_user_name": "Sky Adams", "in_reply_to_status_id": 148838577474773000, "in_reply_to_status_id_str": "148838577474772993"}, +{"created_at": "Mon, 19 Dec 2011 18:55:13 +0000", "from_user": "DTLAL", "from_user_id": 41507212, "from_user_id_str": "41507212", "from_user_name": "DTLAL MAGAZINE ", "geo": null, "id": 148838815405056000, "id_str": "148838815405056000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/223870296/BUL3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/223870296/BUL3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "FAIZA KHAN Artist. http://t.co/SIp5rM5U Always Something Different! #dtla #art #culture #sf #oc #irvine #sac #nyc #brooklyn #detroit #dallas", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:12 +0000", "from_user": "BrooklynNearSay", "from_user_id": 312303637, "from_user_id_str": "312303637", "from_user_name": "Brooklyn NearSay", "geo": null, "id": 148838811173007360, "id_str": "148838811173007360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1384898420/NEARSAY_logo-redblack_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1384898420/NEARSAY_logo-redblack_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Best #XmasEve Dinner Specials in #Brooklyn : #CobbleHill & #CarrollGardens http://t.co/FxFbBHSG #nyc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:12 +0000", "from_user": "ibby2015", "from_user_id": 247210411, "from_user_id_str": "247210411", "from_user_name": "Ibrahim Darwish", "geo": null, "id": 148838810803900400, "id_str": "148838810803900417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1628181749/IMG_0617_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628181749/IMG_0617_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Chillin in NYC!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:11 +0000", "from_user": "KaioLeonardo", "from_user_id": 25905386, "from_user_id_str": "25905386", "from_user_name": "Kaio Leonardo \\uF8FF", "geo": null, "id": 148838806743810050, "id_str": "148838806743810048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1638429200/IMG_0884_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638429200/IMG_0884_copy_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "Rockefeller Center, NYC #ChristmasTree http://t.co/OjV36vFC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:10 +0000", "from_user": "BrooklynNearSay", "from_user_id": 312303637, "from_user_id_str": "312303637", "from_user_name": "Brooklyn NearSay", "geo": null, "id": 148838800964071420, "id_str": "148838800964071427", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1384898420/NEARSAY_logo-redblack_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1384898420/NEARSAY_logo-redblack_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Best #ChristmasEve Dinner Specials in #Brooklyn : #CobbleHill & #CarrollGardens http://t.co/3He4rfWp #nyc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:09 +0000", "from_user": "BreaKBeatJunkEE", "from_user_id": 157793503, "from_user_id_str": "157793503", "from_user_name": "Bobby Anonolulz", "geo": null, "id": 148838796773953540, "id_str": "148838796773953538", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1638335954/318561_2598109795103_1325507200_2916335_753611155_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638335954/318561_2598109795103_1325507200_2916335_753611155_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Timcast: This is a message to the trolls. I have spent 0$ in donations and I am homeless in NYC. I will keep streaming! :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:06 +0000", "from_user": "Natalie_Cake", "from_user_id": 205288366, "from_user_id_str": "205288366", "from_user_name": "Natalie Cake", "geo": null, "id": 148838780315516930, "id_str": "148838780315516928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1148775968/NCP-STARtextured_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1148775968/NCP-STARtextured_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Camera on iOS</a>", "text": "#NYC. Walking to B&H shooting with the #bestcamera http://t.co/2W87F2UM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:02 +0000", "from_user": "cbcny", "from_user_id": 270495679, "from_user_id_str": "270495679", "from_user_name": "Citizens Budget Comm", "geo": null, "id": 148838771142565900, "id_str": "148838771142565888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1296079410/CBC_ColorLogo1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1296079410/CBC_ColorLogo1_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Only .7% of people in #NYC metro report \"engineer\" as their occupation. San Jose metro: 3.1% http://t.co/siOqmiTc #appscinyc #cornell", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:01 +0000", "from_user": "daRealRoberto", "from_user_id": 87794845, "from_user_id_str": "87794845", "from_user_name": "ROBERTO", "geo": null, "id": 148838764305854460, "id_str": "148838764305854465", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1611242662/daRealRoberto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611242662/daRealRoberto_normal.jpg", "source": "<a href="http://getsocialscope.com" rel="nofollow">SocialScope</a>", "text": "I knw you don't do events but I got some great venues in nyc for new years eve waddup? @emdot_p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:59 +0000", "from_user": "dgskincare", "from_user_id": 44931033, "from_user_id_str": "44931033", "from_user_name": "Dr. Dennis Gross ", "geo": null, "id": 148838756454109200, "id_str": "148838756454109184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1190495945/dg_logo_og_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1190495945/dg_logo_og_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Its cold in NYC today!! must moisturize even more this time of year", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:59 +0000", "from_user": "KailynHype", "from_user_id": 152426883, "from_user_id_str": "152426883", "from_user_name": "Kailyn Brown", "geo": null, "id": 148838756433141760, "id_str": "148838756433141760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662822629/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662822629/image_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @AndreasHale: Going to a hip hop show in NYC vs going to one in Vegas are totally different experiences. Vegas is too cool to learn about dope music.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:58 +0000", "from_user": "howesaaron", "from_user_id": 315351426, "from_user_id_str": "315351426", "from_user_name": "Aaron Howes", "geo": null, "id": 148838754092728320, "id_str": "148838754092728322", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1391611611/DSC_0202_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1391611611/DSC_0202_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @democracynow: Occupy Wall Street NYC marks 3-month anniversary with re-occupation attempt, dozens arrested. http://t.co/jK0sLcnw #ows", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:58 +0000", "from_user": "jill_grubz", "from_user_id": 27788103, "from_user_id_str": "27788103", "from_user_name": "Jillian Gruber", "geo": null, "id": 148838751202844670, "id_str": "148838751202844672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1336070020/IMG_5927_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1336070020/IMG_5927_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "who's in NYC????????", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:58 +0000", "from_user": "stupidDOPE", "from_user_id": 16607099, "from_user_id_str": "16607099", "from_user_name": "stupidDOPE.com", "geo": null, "id": 148838751165095940, "id_str": "148838751165095936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1343364819/stupiddopered_nublock2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1343364819/stupiddopered_nublock2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Collection @ 20 Pine Residences \\u2013 NYC, New York http://t.co/MM4mQSZs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:58 +0000", "from_user": "briahh_", "from_user_id": 385102819, "from_user_id_str": "385102819", "from_user_name": "Beauty.", "geo": null, "id": 148838751039266800, "id_str": "148838751039266816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694732414/briahh__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694732414/briahh__normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "And you better come visit me while youre here! \\u263ART @SissyGolden: Excited for new years ! \\u2764 NYC with her \\uD83D\\uDE18", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:57 +0000", "from_user": "DORETEL", "from_user_id": 24842037, "from_user_id_str": "24842037", "from_user_name": "DORETEL.com", "geo": null, "id": 148838749726449660, "id_str": "148838749726449665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/141401459/DORETEL_Logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/141401459/DORETEL_Logo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Collection @ 20 Pine Residences \\u2013 NYC, New York http://t.co/PzJTWume via @stupidDOPE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:57 +0000", "from_user": "soulMETHOD", "from_user_id": 22668187, "from_user_id_str": "22668187", "from_user_name": "soulMETHOD", "geo": null, "id": 148838748824674300, "id_str": "148838748824674305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/743207988/Medicom_Matt_Black_Diamond_stupid_DOPE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/743207988/Medicom_Matt_Black_Diamond_stupid_DOPE_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Collection @ 20 Pine Residences \\u2013 NYC, New York http://t.co/ovqmGo8K via @stupidDOPE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:57 +0000", "from_user": "ShaneBreen", "from_user_id": 24314103, "from_user_id_str": "24314103", "from_user_name": "Shane Breen", "geo": null, "id": 148838747276967940, "id_str": "148838747276967937", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/550392022/n1238769707_7811_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/550392022/n1238769707_7811_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Collection @ 20 Pine Residences \\u2013 NYC, New York http://t.co/TOucJ1JE via @stupidDOPE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:57 +0000", "from_user": "selectohits", "from_user_id": 30264170, "from_user_id_str": "30264170", "from_user_name": "Select-O-Hits ", "geo": null, "id": 148838746811408400, "id_str": "148838746811408384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1325025470/OldSOH_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1325025470/OldSOH_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @esnavi: Check this video out -- ESNAVI 'UNEXPECTED LOVE' LIVE @ REBEL NYC http://t.co/jMBwAoFq via @youtube", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:56 +0000", "from_user": "tabloidguru", "from_user_id": 48933019, "from_user_id_str": "48933019", "from_user_name": "Tirrell Hill ", "geo": null, "id": 148838741832769540, "id_str": "148838741832769537", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1638896324/DSCN1596_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638896324/DSCN1596_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Collection @ 20 Pine Residences \\u2013 NYC, New York http://t.co/ONClm9W9 @stupidDOPE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:55 +0000", "from_user": "CaitPlusAte", "from_user_id": 377384787, "from_user_id_str": "377384787", "from_user_name": "Caitlin Croswell", "geo": null, "id": 148838741677588480, "id_str": "148838741677588480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1601863512/headshot_-_caitlin_croswell_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601863512/headshot_-_caitlin_croswell_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @SELFmagazine: Callin' all NYC foodies - love healthy (and free) food? Be an @SELFmagazine Healthy Food Awards tester at http://t.co/PbyorXJI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:55 +0000", "from_user": "hitomiwa1", "from_user_id": 175942535, "from_user_id_str": "175942535", "from_user_name": "pori tsubasa", "geo": null, "id": 148838740394115070, "id_str": "148838740394115072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1370211074/06-hikaru_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1370211074/06-hikaru_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NYC new song remind of songs we used to listen in out childhood .i love it http://t.co/buXdRBNx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:54 +0000", "from_user": "BunkeyTheTim", "from_user_id": 54274022, "from_user_id_str": "54274022", "from_user_name": "Tim Weidemann", "geo": null, "id": 148838735935586300, "id_str": "148838735935586304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/305867505/Ralphie_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/305867505/Ralphie_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Secretary of State Perales Announces Recipients of Workforce Development Grants in 10 Communities in NYC Area: S... http://t.co/cKbyRnEq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:51 +0000", "from_user": "VinNice1", "from_user_id": 74707033, "from_user_id_str": "74707033", "from_user_name": "Vinny", "geo": null, "id": 148838723956650000, "id_str": "148838723956649984", "iso_language_code": "fi", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1684653080/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684653080/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@potionnumbr9 omw to NYC", "to_user": "potionnumbr9", "to_user_id": 238844962, "to_user_id_str": "238844962", "to_user_name": " F.L.Y ", "in_reply_to_status_id": 148835572381786100, "in_reply_to_status_id_str": "148835572381786112"}, +{"created_at": "Mon, 19 Dec 2011 18:54:49 +0000", "from_user": "MrSwaggLady", "from_user_id": 317207574, "from_user_id_str": "317207574", "from_user_name": "Oarabile Tackel", "geo": null, "id": 148838714808872960, "id_str": "148838714808872960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701638018/peuf_20110926_15_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701638018/peuf_20110926_15_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @HipHopPantsula: \\u201C@BotsheloHuma: Finally today ke jele sphatlho after years \\u263A\\u201D Hadiyo diphatlho ko NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:48 +0000", "from_user": "madiiis0nn", "from_user_id": 260898706, "from_user_id_str": "260898706", "from_user_name": "Madison Keck", "geo": +{"coordinates": [40.7542,-73.9768], "type": "Point"}, "id": 148838711814135800, "id_str": "148838711814135808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1262111763/100_0854-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1262111763/100_0854-1_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Leaving NYC #sosad.. I could seriously live here", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:45 +0000", "from_user": "_Victorrrr", "from_user_id": 34770852, "from_user_id_str": "34770852", "from_user_name": "Victor c", "geo": null, "id": 148838697578668030, "id_str": "148838697578668032", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1654944732/330307538_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654944732/330307538_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Camera on iOS</a>", "text": "RT @bryanboy: Ciao nyc http://t.co/giInNWb9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:45 +0000", "from_user": "COOLPHICOOL", "from_user_id": 51839690, "from_user_id_str": "51839690", "from_user_name": "KWAME STARKS ", "geo": null, "id": 148838697444454400, "id_str": "148838697444454400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680080759/tumblr_lvtvzcUSnh1qbwinqo1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680080759/tumblr_lvtvzcUSnh1qbwinqo1_500_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for iPhone</a>", "text": "NYE in NYC #CONFIRMED .....fvck it let's get it then.......", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:44 +0000", "from_user": "anthousaa", "from_user_id": 314255198, "from_user_id_str": "314255198", "from_user_name": "Anthie Oberle", "geo": null, "id": 148838692348375040, "id_str": "148838692348375040", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1642797872/Photo_63_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642797872/Photo_63_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "NYC haanginn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:43 +0000", "from_user": "alantduong", "from_user_id": 390489653, "from_user_id_str": "390489653", "from_user_name": "Alan Duong", "geo": null, "id": 148838691358507000, "id_str": "148838691358507008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657409601/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657409601/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I love NYC but its no sv RT\\u201C@mercnews: O'Brien: New York wants to steal Silicon Valley's innovation crown? Puh-leez. http://t.co/FG4MYnBw\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:42 +0000", "from_user": "Amnesia_nyc", "from_user_id": 88972853, "from_user_id_str": "88972853", "from_user_name": "Amnesia NYC", "geo": null, "id": 148838684047835140, "id_str": "148838684047835136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1607989930/WTlogoNYC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607989930/WTlogoNYC_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @DJFIRSTCHOICE: Sat, 12/31 New Years Eve the #1 Party in NYC will be @ @Amnesia_nyc Click on link for tiks http://t.co/hdhPKBId http://t.co/YaCJhROT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:41 +0000", "from_user": "Xfilespoker", "from_user_id": 15038133, "from_user_id_str": "15038133", "from_user_name": "Tom Dwyer ", "geo": null, "id": 148838681527058430, "id_str": "148838681527058432", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1598839132/218129_206450186045036_100000401691907_630491_4776751_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598839132/218129_206450186045036_100000401691907_630491_4776751_n_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "http://t.co/6bWtVfiv #Art #ModernArt #Occupy #OO #OccupyWallStreetNYC #Occupywallstreet MoMa, in New York City. Protesters march.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:39 +0000", "from_user": "NYCCLUBKING", "from_user_id": 302967450, "from_user_id_str": "302967450", "from_user_name": "Nicholas Anthony", "geo": null, "id": 148838673973116930, "id_str": "148838673973116929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1535318750/NEWTWIP_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1535318750/NEWTWIP_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Checkout all the nyc pArty pix http://t.co/2JRgDOAT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:38 +0000", "from_user": "MattyEvs10", "from_user_id": 97489631, "from_user_id_str": "97489631", "from_user_name": "Matthew Evans", "geo": null, "id": 148838670235992060, "id_str": "148838670235992066", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1549065311/afc_nard_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1549065311/afc_nard_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@kayl_munro was insane.... Was gonna go to nyc but im soo tired lol.. How work.. Im back fri... So shattered tho", "to_user": "kayl_munro", "to_user_id": 197527260, "to_user_id_str": "197527260", "to_user_name": "kayleigh munro", "in_reply_to_status_id": 148837826178453500, "in_reply_to_status_id_str": "148837826178453504"}, +{"created_at": "Mon, 19 Dec 2011 18:54:38 +0000", "from_user": "melodygross", "from_user_id": 19870273, "from_user_id_str": "19870273", "from_user_name": "Melody Gross", "geo": null, "id": 148838668877053950, "id_str": "148838668877053952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1562124949/IMG00314-20110209-0056_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1562124949/IMG00314-20110209-0056_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @nickyyates: looking for a videographer for this wednesday. whacha got nyc?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:37 +0000", "from_user": "HealthyDiva31", "from_user_id": 117567043, "from_user_id_str": "117567043", "from_user_name": "Katie Gagliano", "geo": null, "id": 148838665592905730, "id_str": "148838665592905729", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1568286119/a7ac4fac05c642bcb6b9cf814d4f5130_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1568286119/a7ac4fac05c642bcb6b9cf814d4f5130_7_normal.jpg", "source": "<a href="http://www.networkedblogs.com/" rel="nofollow">NetworkedBlogs</a>", "text": "Just { NYC } Random pics http://t.co/6qmtk3aK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:35 +0000", "from_user": "MichaelFranjul", "from_user_id": 117583511, "from_user_id_str": "117583511", "from_user_name": "Michael Franjul", "geo": null, "id": 148838655421722620, "id_str": "148838655421722624", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1388881376/247458_10150634374170402_519545401_19173383_1127855_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1388881376/247458_10150634374170402_519545401_19173383_1127855_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "NYC I fucking miss u", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:33 +0000", "from_user": "GershGroup", "from_user_id": 82765117, "from_user_id_str": "82765117", "from_user_name": "Gershon Adjaye", "geo": null, "id": 148838648035557380, "id_str": "148838648035557376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1393212062/trump_office_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1393212062/trump_office_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "Buy a property for $500k or more & we will throw in an American Visa...from NYC Developers. http://t.co/jDG0RzA8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:32 +0000", "from_user": "NURFCdina", "from_user_id": 331786203, "from_user_id_str": "331786203", "from_user_name": "Dina Bailey", "geo": null, "id": 148838641345626100, "id_str": "148838641345626113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1432633483/DinaBailey_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1432633483/DinaBailey_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "I really like #Bread&Butter market in #NYC. Two thumbs up", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:31 +0000", "from_user": "arod07", "from_user_id": 19769138, "from_user_id_str": "19769138", "from_user_name": "Alex", "geo": null, "id": 148838640146071550, "id_str": "148838640146071552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1654185965/230727_1421570614312_1084080500_31454182_7622761_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654185965/230727_1421570614312_1084080500_31454182_7622761_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@anwoodby I'm sure we will see each other somewhere in nyc lol", "to_user": "anwoodby", "to_user_id": 200763215, "to_user_id_str": "200763215", "to_user_name": "Amber Woodby", "in_reply_to_status_id": 148838421387943940, "in_reply_to_status_id_str": "148838421387943937"}, +{"created_at": "Mon, 19 Dec 2011 18:54:31 +0000", "from_user": "slysmallin", "from_user_id": 245535177, "from_user_id_str": "245535177", "from_user_name": "\\u00A7\\u043C\\u0332\\u0323\\u0323\\u00AA||\\u026A\\u0307\\u0323\\u031D\\u0438\\u0305\\u0332\\u032E\\u0323\\u0325\\u030A ", "geo": null, "id": 148838638237650940, "id_str": "148838638237650944", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702119095/J3_20clothing_20fucks_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702119095/J3_20clothing_20fucks_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Nyc movie @........................................figurine", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:31 +0000", "from_user": "canadalawyers", "from_user_id": 33803047, "from_user_id_str": "33803047", "from_user_name": "Dwayne Dustin", "geo": null, "id": 148838637449134080, "id_str": "148838637449134080", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/180730726/canada_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/180730726/canada_logo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Operative gets prison for bilking NYC mayor \\n (AP) http://t.co/JORTTEa2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:30 +0000", "from_user": "lawyersincanada", "from_user_id": 33802207, "from_user_id_str": "33802207", "from_user_name": "John Larose", "geo": null, "id": 148838636740288500, "id_str": "148838636740288512", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/180327510/canadalaw_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/180327510/canadalaw_normal.jpeg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Operative gets prison for bilking NYC mayor \\n (AP) http://t.co/a1nPi3Zj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:29 +0000", "from_user": "americanlawyers", "from_user_id": 33808949, "from_user_id_str": "33808949", "from_user_name": "Harry Stan", "geo": null, "id": 148838632298520580, "id_str": "148838632298520576", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/295206085/american-eagle-and-flag-ii_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/295206085/american-eagle-and-flag-ii_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Operative gets prison for bilking NYC mayor \\n (AP) http://t.co/FDKKVLxb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:29 +0000", "from_user": "IamSheree", "from_user_id": 47010589, "from_user_id_str": "47010589", "from_user_name": "Shere\\u00E8 Whitfield", "geo": null, "id": 148838631027642370, "id_str": "148838631027642370", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/624717839/sheree_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/624717839/sheree_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @peakpublicity: Followers in nyc make sure you listen in to @WLBS with @egpytsaidso @iamSheree", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:25 +0000", "from_user": "vmagazine", "from_user_id": 25326324, "from_user_id_str": "25326324", "from_user_name": "V Magazine", "geo": null, "id": 148838612862115840, "id_str": "148838612862115841", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/115187244/vlogosquare_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/115187244/vlogosquare_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Stream \"Liquorice\" \\u266C the new track from NYC rapper @AZEALIABANKS http://t.co/RYjCwZgK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:23 +0000", "from_user": "niquab", "from_user_id": 33158773, "from_user_id_str": "33158773", "from_user_name": "niqua b", "geo": null, "id": 148838607560507400, "id_str": "148838607560507392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1508850563/profile_image_1314053152673_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1508850563/profile_image_1314053152673_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "OMW TO JERSEY THEN TO NYC THEN BACK TO BMORE....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:21 +0000", "from_user": "SELFmagazine", "from_user_id": 23798922, "from_user_id_str": "23798922", "from_user_name": "SELF Magazine", "geo": null, "id": 148838596831494140, "id_str": "148838596831494144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1184834370/twitterpink_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1184834370/twitterpink_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Callin' all NYC foodies - love healthy (and free) food? Be an @SELFmagazine Healthy Food Awards tester at http://t.co/PbyorXJI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:19 +0000", "from_user": "FlyboySapp", "from_user_id": 297091912, "from_user_id_str": "297091912", "from_user_name": "Ryan Sapp", "geo": null, "id": 148838589235601400, "id_str": "148838589235601409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695655828/nFSLfDCg_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695655828/nFSLfDCg_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@MsDenverBRONC0S: Just saw this girl with long chin hairs....I'm scared.\" I saw a women in nyc this weekend with a lined up stash.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:19 +0000", "from_user": "shliles", "from_user_id": 19172701, "from_user_id_str": "19172701", "from_user_name": "Sarah Liles", "geo": null, "id": 148838583585869820, "id_str": "148838583585869824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/132758937/P1010286_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/132758937/P1010286_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Photos on iOS</a>", "text": "Under NYC subway! What fun! http://t.co/5reN1yzp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:17 +0000", "from_user": "DavidYYoung", "from_user_id": 34712548, "from_user_id_str": "34712548", "from_user_name": "David", "geo": null, "id": 148838581564211200, "id_str": "148838581564211201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/179782127/GrandBohem_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/179782127/GrandBohem_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Excited about getting out of the city for a bit. NYC>TPA>ORL>F.Myers>TPA>ORL>TPA. All in 7 days.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:16 +0000", "from_user": "LifeNews", "from_user_id": 40037062, "from_user_id_str": "40037062", "from_user_name": "Life News", "geo": null, "id": 148838578112299000, "id_str": "148838578112299009", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/212093548/twitter-icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/212093548/twitter-icon_normal.jpg", "source": "<a href="http://www.socialflow.com" rel="nofollow">SocialFlow</a>", "text": "Veteran character actor Dan Frazer, best known as Capt. McNeil in 'Kojak,' dies in NYC ... http://t.co/KixPGcwM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:15 +0000", "from_user": "renelopez20", "from_user_id": 147306594, "from_user_id_str": "147306594", "from_user_name": "Rene Lopez", "geo": null, "id": 148838573590847500, "id_str": "148838573590847488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1616745280/renelopez20_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616745280/renelopez20_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Why didn't i go to this event @swedishousemfia in NYC. Shit looked so epic #fuck lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:15 +0000", "from_user": "DJFIRSTCHOICE", "from_user_id": 24989329, "from_user_id_str": "24989329", "from_user_name": "DJ FirstChoice", "geo": null, "id": 148838569966968830, "id_str": "148838569966968832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676230390/2__9_of_244__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676230390/2__9_of_244__normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Sat, 12/31 New Years Eve the #1 Party in NYC will be @ @Amnesia_nyc Click on link for tiks http://t.co/hdhPKBId http://t.co/YaCJhROT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:12 +0000", "from_user": "jphmathieu", "from_user_id": 28148474, "from_user_id_str": "28148474", "from_user_name": "J-Philippe MATHIEU", "geo": null, "id": 148838558210338800, "id_str": "148838558210338816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1240303255/jp_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1240303255/jp_normal.jpg", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "New York City #pictures \\u2022 http://t.co/RJQVSBVa #NYC #Photography", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:10 +0000", "from_user": "KAZHARGAN", "from_user_id": 61176793, "from_user_id_str": "61176793", "from_user_name": "KAZHARGAN JAZZ", "geo": null, "id": 148838550052421630, "id_str": "148838550052421634", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1663888952/kjc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663888952/kjc_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\\u041D\\u0435 \\u043F\\u0440\\u043E\\u043F\\u0443\\u0441\\u0442\\u0438\\u0442\\u0435 \\u044D\\u0442\\u043E \\u0432\\u0438\\u0434\\u0435\\u043E -- Gerry Gibbs THRASHER REUNION BAND LIVE AT Zinc Bar NYC DEC 8, 2011.. http://t.co/rninSIfq \\u0441 \\u043F\\u043E\\u043C\\u043E\\u0449\\u044C\\u044E @youtube", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:08 +0000", "from_user": "Jessica_Dennise", "from_user_id": 145867709, "from_user_id_str": "145867709", "from_user_name": "Jessica Barragan", "geo": null, "id": 148838540929794050, "id_str": "148838540929794048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1560153464/Twitcon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1560153464/Twitcon_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "At the Weill Medical College and Graduate School of Medical Sciences of Cornell University for the NYC Tech Campus Announcement!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:07 +0000", "from_user": "sarawinsor", "from_user_id": 75077770, "from_user_id_str": "75077770", "from_user_name": "Sara ", "geo": null, "id": 148838540422287360, "id_str": "148838540422287360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1406787763/pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1406787763/pic_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Absolutely cannot wait for @Kashboom triumphant return to nyc workout scene @soulcycle @dannykopel #christmasevemiracle", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:07 +0000", "from_user": "NewsInSanDiego", "from_user_id": 348989992, "from_user_id_str": "348989992", "from_user_name": "San Diego News", "geo": null, "id": 148838539432435700, "id_str": "148838539432435713", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1478950321/news_logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1478950321/news_logo_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Cornell wins NYC science-campus competition (Sign On) http://t.co/QP7usNxJ #News #SanDiego", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:05 +0000", "from_user": "WeekTips", "from_user_id": 386245868, "from_user_id_str": "386245868", "from_user_name": "WeekTips", "geo": null, "id": 148838531366793200, "id_str": "148838531366793216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1581690512/Weektips-Icon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1581690512/Weektips-Icon_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Recomendo: The Wandering Aramean - JetBlue, Singapore Airlines announce NYC interline deal http://t.co/eSGdx8Gq #Dicas @weektips", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:03 +0000", "from_user": "OccupyWeather", "from_user_id": 400559295, "from_user_id_str": "400559295", "from_user_name": "Occupy Weather", "geo": null, "id": 148838521791201280, "id_str": "148838521791201280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1612658667/ows_retreats_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612658667/ows_retreats_normal.jpg", "source": "<a href="http://24Ahead.com/" rel="nofollow">OccupyWeather</a>", "text": "Forecast for NYC Wednesday night: Rain. Low temp: 40F. #OccupyWallSt #teaparty #tlot", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:02 +0000", "from_user": "MooveeHouse", "from_user_id": 436953783, "from_user_id_str": "436953783", "from_user_name": "Moovee House", "geo": null, "id": 148838517953396740, "id_str": "148838517953396736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693399791/CowFace_normal.jpg", "profile_image_url_https": null, "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @TomCruise: Tom answers your questions at the NYC M:I-@GhostProtocol Premiere 2night! Submit (cont) http://t.co/STUSM2fF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:02 +0000", "from_user": "SherriPizza", "from_user_id": 92867252, "from_user_id_str": "92867252", "from_user_name": "Sherri", "geo": null, "id": 148838515768172540, "id_str": "148838515768172545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1574607998/4672136950_2c56b1091b_s_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1574607998/4672136950_2c56b1091b_s_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Yep, saw that today. RT @MyUpperWest Coffee Bean & Tea Leaf At Amsterdam & 86th Officially Open: http://t.co/lCjRYZSu #UpperWestSide #NYC", "to_user": "MyUpperWest", "to_user_id": 47091038, "to_user_id_str": "47091038", "to_user_name": "MyUpperWest", "in_reply_to_status_id": 148838220032000000, "in_reply_to_status_id_str": "148838220032000001"}, +{"created_at": "Mon, 19 Dec 2011 18:54:01 +0000", "from_user": "OccupyWeather", "from_user_id": 400559295, "from_user_id_str": "400559295", "from_user_name": "Occupy Weather", "geo": null, "id": 148838514929315840, "id_str": "148838514929315840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1612658667/ows_retreats_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612658667/ows_retreats_normal.jpg", "source": "<a href="http://24Ahead.com/" rel="nofollow">OccupyWeather</a>", "text": "Forecast for NYC Wednesday: Thunderstorms. High temp: 62F. #OccupyWallStreet #p2 #sgp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:01 +0000", "from_user": "SissyGolden", "from_user_id": 369089811, "from_user_id_str": "369089811", "from_user_name": "GoldenChild \\u2728", "geo": null, "id": 148838513796841470, "id_str": "148838513796841474", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1621530720/Geneva_20City-20111028-00362_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621530720/Geneva_20City-20111028-00362_normal.jpg", "source": "<a href="http://www.handmark.com" rel="nofollow">TweetCaster for iOS</a>", "text": "Excited for new years ! \\u2764 NYC with her \\uD83D\\uDE18", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:01 +0000", "from_user": "ActressKMurphy", "from_user_id": 336357703, "from_user_id_str": "336357703", "from_user_name": "Katie Murphy", "geo": null, "id": 148838511271886850, "id_str": "148838511271886850", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1446119699/a36501085_31901543_642_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1446119699/a36501085_31901543_642_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@ErinCronican I'm going home to MD to see family & friends! Excited for a little NYC break. We missed you at our party the other night! :)", "to_user": "ErinCronican", "to_user_id": 60396985, "to_user_id_str": "60396985", "to_user_name": "Erin Cronican", "in_reply_to_status_id": 148785733799387140, "in_reply_to_status_id_str": "148785733799387137"}, +{"created_at": "Mon, 19 Dec 2011 18:54:00 +0000", "from_user": "dreatraxx", "from_user_id": 18949707, "from_user_id_str": "18949707", "from_user_name": "DREATRAXX ", "geo": null, "id": 148838509199892480, "id_str": "148838509199892480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1359893212/queen_dreski_1288762325_1288762337__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1359893212/queen_dreski_1288762325_1288762337__1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "WELCOME TO NYC @BARONDAVIS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:57 +0000", "from_user": "missarahnicole", "from_user_id": 27049676, "from_user_id_str": "27049676", "from_user_name": "Miss Sarah", "geo": null, "id": 148838497145462800, "id_str": "148838497145462784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685344450/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685344450/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@Timcast: This is a message to the trolls. I have spent 0$ in donations and I am homeless in NYC. I will keep streaming! :)\\u201D love this man!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:57 +0000", "from_user": "maricfly", "from_user_id": 58924604, "from_user_id_str": "58924604", "from_user_name": "Marina Cardoso", "geo": null, "id": 148838495585181700, "id_str": "148838495585181697", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699016598/385052_181696781926074_100002572590597_323263_1870336822_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699016598/385052_181696781926074_100002572590597_323263_1870336822_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@parachute = NYC haha", "to_user": "parachute", "to_user_id": 19348566, "to_user_id_str": "19348566", "to_user_name": "Parachute"}, +{"created_at": "Mon, 19 Dec 2011 18:53:55 +0000", "from_user": "Adorable_Tee", "from_user_id": 179413575, "from_user_id_str": "179413575", "from_user_name": "Simply Tammy", "geo": null, "id": 148838487154630660, "id_str": "148838487154630657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693369845/331502929_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693369845/331502929_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Ryt here dear.... Sup? Nyc avi...RT @adorabletunie: Where is @Adorable_Tee@vahldesiah???", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:54 +0000", "from_user": "achangnyc", "from_user_id": 2609231, "from_user_id_str": "2609231", "from_user_name": "Art Chang", "geo": null, "id": 148838482838683650, "id_str": "148838482838683648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/116653930/Artcrayon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/116653930/Artcrayon_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "What really happened to Stanford? Cornell will partner with NYC to build out the technology campus. http://t.co/U11lK60i", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:50 +0000", "from_user": "noahweiland", "from_user_id": 344436391, "from_user_id_str": "344436391", "from_user_name": "Noah Weiland", "geo": null, "id": 148838466095026180, "id_str": "148838466095026176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1664952969/382751_1444833121465_1252230918_31018915_2024804929_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664952969/382751_1444833121465_1252230918_31018915_2024804929_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @theGregJohnson: Thanks to everyone who came to the show Saturday night in NYC. Such a great crowd! You are all so chill. Get after it.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:49 +0000", "from_user": "KarmaLoopRepNYC", "from_user_id": 386173822, "from_user_id_str": "386173822", "from_user_name": "REPCODE: runnyc33", "geo": null, "id": 148838461334499330, "id_str": "148838461334499328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575776605/karma_loop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575776605/karma_loop_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Xmas eve at #LAVO with @dashberlin doors at 11, 21+ say kiren at the door, definitely hottest place to be Christmas eve!!! #NYC #KARMAFAM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:48 +0000", "from_user": "N_YPress", "from_user_id": 20923839, "from_user_id_str": "20923839", "from_user_name": "New York Press", "geo": null, "id": 148838456863367170, "id_str": "148838456863367168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/78541886/nypress_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/78541886/nypress_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @NoahWunsch: @Ambassadorsnyc best band in NYC right now? @N_YPress thinks so. catch them @PianosNYC this #THURSDAY http://t.co/uUdryNXP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:47 +0000", "from_user": "BeerHere2010", "from_user_id": 119502126, "from_user_id_str": "119502126", "from_user_name": "BeerHere2010 - #ADK", "geo": null, "id": 148838455592484860, "id_str": "148838455592484866", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/963230599/Pilsner_Lager_Mug_Blk_BkGnd_-_BLUEGOLD_PNT_pythagorus_smaller_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/963230599/Pilsner_Lager_Mug_Blk_BkGnd_-_BLUEGOLD_PNT_pythagorus_smaller_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @SenGillibrand: Congratulations to @Cornell_Univ for winning the competition to build an applied science campus in #NYC! http://t.co/hlGIKmrW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:46 +0000", "from_user": "arianailoveyou1", "from_user_id": 431931006, "from_user_id_str": "431931006", "from_user_name": "Ashley,Ariana e Demi", "geo": null, "id": 148838452031520770, "id_str": "148838452031520769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681635155/avatar_1d91fad47bc9_64_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681635155/avatar_1d91fad47bc9_64_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @ashleytisdale: don't worry I'll be there ;) \\u201C@juliannehough: I agree :) RT @therealHAUS: @ashleytisdale NYC for new years- make it happen girl!\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:46 +0000", "from_user": "CheapFind_NYC", "from_user_id": 281195041, "from_user_id_str": "281195041", "from_user_name": "CheapFind_NYC", "geo": null, "id": 148838451981201400, "id_str": "148838451981201408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1315464216/cheapfind-50x50_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1315464216/cheapfind-50x50_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "$10 for $20 Dog Walk Anywhere in NYC at Swifto-Dog Walking http://t.co/kAlzKleu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:46 +0000", "from_user": "ArcadiaBoutique", "from_user_id": 28156114, "from_user_id_str": "28156114", "from_user_name": "Arcadia Boutique", "geo": null, "id": 148838449942765570, "id_str": "148838449942765568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1333546879/arcadialogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1333546879/arcadialogo_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "Visit to NYC, artwork in the apartment http://t.co/5XhYfuBJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:53:43 +0000", "from_user": "ajetee", "from_user_id": 300970096, "from_user_id_str": "300970096", "from_user_name": "Aje Takon", "geo": null, "id": 148838438798491650, "id_str": "148838438798491648", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1361869504/154230_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1361869504/154230_normal.JPG", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@LostWords_ nyc 1", "to_user": "LostWords_", "to_user_id": 131962317, "to_user_id_str": "131962317", "to_user_name": "Lostone ", "in_reply_to_status_id": 148837505825914880, "in_reply_to_status_id_str": "148837505825914880"}, +{"created_at": "Mon, 19 Dec 2011 18:53:42 +0000", "from_user": "kelseyclough", "from_user_id": 100833100, "from_user_id_str": "100833100", "from_user_name": "Kelsey Clough", "geo": null, "id": 148838434130243600, "id_str": "148838434130243584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1596733642/Photo_on_2011-09-30_at_00.31_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596733642/Photo_on_2011-09-30_at_00.31_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @CornellUpdate: Cornell Wins NYC Campus Bid, Apple Execs In TV Talks, Twitter Gets $300 ... - Fast Company http://t.co/jfoZW1M1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:41 +0000", "from_user": "CheapFind_NYC", "from_user_id": 281195041, "from_user_id_str": "281195041", "from_user_name": "CheapFind_NYC", "geo": null, "id": 148838430816731140, "id_str": "148838430816731136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1315464216/cheapfind-50x50_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1315464216/cheapfind-50x50_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Greenery NYC - Orchid Terrarium http://t.co/6Dd9wLD5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:41 +0000", "from_user": "diana_anayah", "from_user_id": 262295744, "from_user_id_str": "262295744", "from_user_name": "Diana", "geo": null, "id": 148838428170125300, "id_str": "148838428170125313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1634590488/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634590488/image_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Anyone down for a roadtrip to NYC..my car but you drive?? :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:40 +0000", "from_user": "nickname_lee", "from_user_id": 54125900, "from_user_id_str": "54125900", "from_user_name": "Lee", "geo": null, "id": 148838426916028400, "id_str": "148838426916028416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696038947/rsz_dscf0806_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696038947/rsz_dscf0806_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@NicoleCiara nyc with ur crazy sister", "to_user": "NicoleCiara", "to_user_id": 144614055, "to_user_id_str": "144614055", "to_user_name": "Nicole Ciara ", "in_reply_to_status_id": 148837484074246140, "in_reply_to_status_id_str": "148837484074246144"}, +{"created_at": "Mon, 19 Dec 2011 18:53:39 +0000", "from_user": "DEADHEAD1776", "from_user_id": 278936650, "from_user_id_str": "278936650", "from_user_name": "Ryan ", "geo": null, "id": 148838421480214530, "id_str": "148838421480214529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691247409/stop_sopa_450_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691247409/stop_sopa_450_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Timcast: This is a message to the trolls. I have spent 0$ in donations and I am homeless in NYC. I will keep streaming! :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:38 +0000", "from_user": "Djkodeblue", "from_user_id": 43212506, "from_user_id_str": "43212506", "from_user_name": "kenny lucas", "geo": null, "id": 148838415297810430, "id_str": "148838415297810432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1553000740/FacebookHomescreenImage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553000740/FacebookHomescreenImage_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @VicTeam1: @Djkodeblue Dec28th it Goes Down Corduroy Jones Performing His Street Anthem \"Sicker than Your Average\" @ThePyramidClub NYC @REALLIVEENT #RT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:37 +0000", "from_user": "CheapFind_NYC", "from_user_id": 281195041, "from_user_id_str": "281195041", "from_user_name": "CheapFind_NYC", "geo": null, "id": 148838414635106300, "id_str": "148838414635106304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1315464216/cheapfind-50x50_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1315464216/cheapfind-50x50_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Greenery NYC - $75 for $125 Credit http://t.co/xEB9a0Wm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:37 +0000", "from_user": "belmonte_", "from_user_id": 22237661, "from_user_id_str": "22237661", "from_user_name": "megan bee", "geo": null, "id": 148838411879456770, "id_str": "148838411879456768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1386913013/Photo_43_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1386913013/Photo_43_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @_KristenLee: All I want is a one way ticket to NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:36 +0000", "from_user": "tnordmark", "from_user_id": 64768688, "from_user_id_str": "64768688", "from_user_name": "Taylor Nordmark, S.J", "geo": null, "id": 148838410403069950, "id_str": "148838410403069952", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1312054235/22786637_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312054235/22786637_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@mmastriano423 @SirChance http://t.co/2N2Y2bRG", "to_user": "mmastriano423", "to_user_id": 98002412, "to_user_id_str": "98002412", "to_user_name": "Matthew Mastriano"}, +{"created_at": "Mon, 19 Dec 2011 18:53:33 +0000", "from_user": "PrettyBrwnGal", "from_user_id": 335565936, "from_user_id_str": "335565936", "from_user_name": "Keri Bush", "geo": null, "id": 148838395538456580, "id_str": "148838395538456576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702605918/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702605918/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#NYC for New Years:-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:32 +0000", "from_user": "ImLuckyLefty", "from_user_id": 127086350, "from_user_id_str": "127086350", "from_user_name": " LuckyLefty, da don ", "geo": null, "id": 148838391016996860, "id_str": "148838391016996864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1651144791/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651144791/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Jumpoffs get trips to Atlanta, wifey goes to NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:31 +0000", "from_user": "LowerEastScribe", "from_user_id": 69478891, "from_user_id_str": "69478891", "from_user_name": "Lower East Scribe", "geo": null, "id": 148838386201927680, "id_str": "148838386201927680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/553896677/Me_LESHoodie_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/553896677/Me_LESHoodie_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @gamesevenmktg: #NYC - What have been some of the most EPIC Individual Player Performances in Summer Hoops History?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:30 +0000", "from_user": "HelgeGjerstad", "from_user_id": 30442831, "from_user_id_str": "30442831", "from_user_name": "Helge Gjerstad", "geo": null, "id": 148838383618228220, "id_str": "148838383618228224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1639446201/HELGE_GJERSTAD_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639446201/HELGE_GJERSTAD_1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Last day in NYC! Now: Laundry, cleaning and packing..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:27 +0000", "from_user": "ndeyelaSOUL", "from_user_id": 51827579, "from_user_id_str": "51827579", "from_user_name": "Princess Ndeye \\uE10E", "geo": null, "id": 148838372113264640, "id_str": "148838372113264640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676514762/ndeyelaSOUL_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676514762/ndeyelaSOUL_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Umm this nyc traffic can suck my \\uD83C\\uDF46 @ChinnyVidiVici", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:26 +0000", "from_user": "mcannon21", "from_user_id": 28305397, "from_user_id_str": "28305397", "from_user_name": "Monica", "geo": null, "id": 148838364483829760, "id_str": "148838364483829760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/118516145/015_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/118516145/015_normal.JPG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@OMGlee_: Spin-Off ? big wold tour? #gleennouncment\" Im hoping for a NYC spinoff with the two of them :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:24 +0000", "from_user": "Dani1020", "from_user_id": 62858328, "from_user_id_str": "62858328", "from_user_name": "Danielle Lenardo", "geo": null, "id": 148838358146224130, "id_str": "148838358146224128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689159132/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689159132/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Watching #BODYCOMBAT42 ....epic Muay Thai track! Gonna bring some of that 2nite to NYC!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:24 +0000", "from_user": "T33Trini3", "from_user_id": 238245391, "from_user_id_str": "238245391", "from_user_name": "MS.\\u2600Shine", "geo": null, "id": 148838356992786430, "id_str": "148838356992786434", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695066031/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695066031/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@DASTARV8 NYC & you?", "to_user": "DASTARV8", "to_user_id": 277835925, "to_user_id_str": "277835925", "to_user_name": "V8-ShoNuff-Smith"}, +{"created_at": "Mon, 19 Dec 2011 18:53:23 +0000", "from_user": "patricec", "from_user_id": 15424589, "from_user_id_str": "15424589", "from_user_name": "Patrice Callender", "geo": null, "id": 148838355419922430, "id_str": "148838355419922432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1214464622/estmoi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1214464622/estmoi_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @nickyyates: looking for a videographer for this wednesday. whacha got nyc?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:21 +0000", "from_user": "DanSWright", "from_user_id": 147092180, "from_user_id_str": "147092180", "from_user_name": "Daniel Wright", "geo": null, "id": 148838347119411200, "id_str": "148838347119411200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688559042/6490367215_ed29700dc6_z_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688559042/6490367215_ed29700dc6_z_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Timcast: This is a message to the trolls. I have spent 0$ in donations and I am homeless in NYC. I will keep streaming! :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:20 +0000", "from_user": "dashstorefans", "from_user_id": 440197700, "from_user_id_str": "440197700", "from_user_name": "DASH Store Fan Club", "geo": null, "id": 148838340509179900, "id_str": "148838340509179904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700547180/dash_store_sign__flickr_faye_mous__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700547180/dash_store_sign__flickr_faye_mous__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ashleexxkate glad you checked out DASH NYC! What was the store like?", "to_user": "ashleexxkate", "to_user_id": 29502515, "to_user_id_str": "29502515", "to_user_name": "Ashley Lisberger", "in_reply_to_status_id": 148831623683653630, "in_reply_to_status_id_str": "148831623683653632"}, +{"created_at": "Mon, 19 Dec 2011 18:53:20 +0000", "from_user": "JaydenOrr", "from_user_id": 331591130, "from_user_id_str": "331591130", "from_user_name": "Jayden Orr", "geo": null, "id": 148838340429488130, "id_str": "148838340429488129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1432172361/PAUL_WEASLY_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1432172361/PAUL_WEASLY_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Man suspected of torching 73-year-old woman in NYC elevator charged with ... - Washington Post: ABC NewsMan susp... http://t.co/gFLxttNZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:19 +0000", "from_user": "mcclallenbtcph8", "from_user_id": 389584644, "from_user_id_str": "389584644", "from_user_name": "Mcclallen Rogers", "geo": null, "id": 148838336096780300, "id_str": "148838336096780289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1585111771/imagesCAXUO3TN_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585111771/imagesCAXUO3TN_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "20FactsAboutMe 13. I was raised in the Bronx, NY. I genuinely appreciate being from NYC. It took me GGxJLK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:19 +0000", "from_user": "ThatNigga_Chino", "from_user_id": 396651382, "from_user_id_str": "396651382", "from_user_name": "elwin chavez", "geo": null, "id": 148838335501176830, "id_str": "148838335501176833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1672842012/8CBB98A7-6D3C-4B31-8884-79F16F6F1637_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672842012/8CBB98A7-6D3C-4B31-8884-79F16F6F1637_normal", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "So quess my mom wants us to go to NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:18 +0000", "from_user": "EVEN_UNDERS", "from_user_id": 321649643, "from_user_id_str": "321649643", "from_user_name": "Jared D. Law", "geo": null, "id": 148838333823455230, "id_str": "148838333823455232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1640564930/TICKET_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640564930/TICKET_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Town Hall in NYC! Can't wait! The man is responsible for creating one of my top comedic characters from a TV series: http://t.co/yFQs0rmL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:12 +0000", "from_user": "TruBlu", "from_user_id": 14555072, "from_user_id_str": "14555072", "from_user_name": "Tru ", "geo": null, "id": 148838306459824130, "id_str": "148838306459824129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1166058661/images_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1166058661/images_normal.jpeg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@TheSportBird this won't end well. Davis & the NYC press = ticking time bomb.", "to_user": "TheSportBird", "to_user_id": 53533572, "to_user_id_str": "53533572", "to_user_name": "Rachel Bird"}, +{"created_at": "Mon, 19 Dec 2011 18:53:10 +0000", "from_user": "ArdorRealEstate", "from_user_id": 424438326, "from_user_id_str": "424438326", "from_user_name": "Ardor Real Estate", "geo": null, "id": 148838299048484860, "id_str": "148838299048484864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1664616854/ardor_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664616854/ardor_logo_normal.jpg", "source": "<a href="http://www.ardorny.com" rel="nofollow">ArdorRealEstate</a>", "text": "#NYC New York, Real Estate #apartment #rentals #Lower East Side 2-BR Doorman $6,325 http://t.co/9tlrEss6 NY Apartments for Rent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:10 +0000", "from_user": "LiveWellNY", "from_user_id": 342920335, "from_user_id_str": "342920335", "from_user_name": "Live Well New York", "geo": null, "id": 148838298473873400, "id_str": "148838298473873408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1463572613/chp_fortwitter_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1463572613/chp_fortwitter_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nycfood: Let's keep the anti-obesity momentum going. More resources for helping kids eat healthy. http://t.co/Y5XWkEdH @nycHealthy @NYCSchools", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:08 +0000", "from_user": "ResTauRantDS", "from_user_id": 287797271, "from_user_id_str": "287797271", "from_user_name": "Jerry Kaye", "geo": null, "id": 148838289279946750, "id_str": "148838289279946752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1334801812/jerryphoto_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1334801812/jerryphoto_copy_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "Refuel With Savory Treats Before Or After Shopping At NYC's Top Restaurants - http://t.co/RMAqZpIM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:08 +0000", "from_user": "krrimberly", "from_user_id": 36065064, "from_user_id_str": "36065064", "from_user_name": "Kimberly Augustin", "geo": +{"coordinates": [42.0821,-87.7989], "type": "Point"}, "id": 148838289137348600, "id_str": "148838289137348608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1501697856/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1501697856/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@jeslarsen Chicago is nicer than NYC. Or so I've heard ;)", "to_user": "jeslarsen", "to_user_id": 16250117, "to_user_id_str": "16250117", "to_user_name": "jes", "in_reply_to_status_id": 148802367641497600, "in_reply_to_status_id_str": "148802367641497602"}, +{"created_at": "Mon, 19 Dec 2011 18:53:05 +0000", "from_user": "DTLAL", "from_user_id": 41507212, "from_user_id_str": "41507212", "from_user_name": "DTLAL MAGAZINE ", "geo": null, "id": 148838280123785200, "id_str": "148838280123785217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/223870296/BUL3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/223870296/BUL3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Speaker John Boehner trashing yet again the American Worker. NO unemployment extension! Traitor! #congress @dc #va #gop #nyc Chicago #denver", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:05 +0000", "from_user": "KlausClodpate", "from_user_id": 144478059, "from_user_id_str": "144478059", "from_user_name": "Klaus Clodpate", "geo": null, "id": 148838279914065920, "id_str": "148838279914065920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/904980670/klaus-clodpate-avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/904980670/klaus-clodpate-avatar_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NYC police: Suspect says woman set afire over debt \\u00AB Artesia News http://t.co/jnpJw9j2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:05 +0000", "from_user": "DavyStClair", "from_user_id": 137674042, "from_user_id_str": "137674042", "from_user_name": "Dave St Clair", "geo": null, "id": 148838278995525630, "id_str": "148838278995525633", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/855479020/dave-st-clair_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/855479020/dave-st-clair_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NYC police: Suspect says woman set afire over debt \\u00AB Artesia News http://t.co/VVTUhEi5 #surveillance", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:05 +0000", "from_user": "ArchibaldBates", "from_user_id": 136272396, "from_user_id_str": "136272396", "from_user_name": "Archibald Bates", "geo": null, "id": 148838277925978100, "id_str": "148838277925978112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/845450039/archiebates300px_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/845450039/archiebates300px_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NYC police: Suspect says woman set afire over debt \\u00AB Artesia News http://t.co/sdYvaebZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:05 +0000", "from_user": "CurlySnide", "from_user_id": 133723172, "from_user_id_str": "133723172", "from_user_name": "Curly Snide Jr", "geo": null, "id": 148838277418467330, "id_str": "148838277418467328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/827774527/CurlySnideJr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/827774527/CurlySnideJr_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NYC police: Suspect says woman set afire over debt \\u00AB Artesia News http://t.co/5Jl3HFub", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:05 +0000", "from_user": "startsnitching", "from_user_id": 332057551, "from_user_id_str": "332057551", "from_user_name": "Start Snitching", "geo": null, "id": 148838277309407230, "id_str": "148838277309407232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1602347282/SS_pic_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1602347282/SS_pic_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Suspect in NYC Torching Charged With Murder - ABC News http://t.co/Fsy8XbNu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:04 +0000", "from_user": "HarrisVonBaron", "from_user_id": 131500382, "from_user_id_str": "131500382", "from_user_name": "Whaley Harris", "geo": null, "id": 148838275740737540, "id_str": "148838275740737536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/811956238/whaleyharris_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/811956238/whaleyharris_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NYC police: Suspect says woman set afire over debt \\u00AB Artesia News http://t.co/bpvnSnzH #ulf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:03 +0000", "from_user": "CrazyINVASION", "from_user_id": 265725170, "from_user_id_str": "265725170", "from_user_name": "Mr.Crazy", "geo": null, "id": 148838270640463870, "id_str": "148838270640463872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695006409/5Vg3M8oY_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695006409/5Vg3M8oY_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Is it spring or winter in nyc o__0?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:03 +0000", "from_user": "milana_num", "from_user_id": 346378559, "from_user_id_str": "346378559", "from_user_name": "Milana L", "geo": null, "id": 148838270132949000, "id_str": "148838270132948992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699356644/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699356644/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @TalibKweli: RT @DJBOBBYTRENDS: NEW MUSIC: @TalibKweli - \"Distractions\" http://t.co/2sxPsKjc (NYC needs this on the radio Bobby holla!)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:02 +0000", "from_user": "NYNP_News", "from_user_id": 36872868, "from_user_id_str": "36872868", "from_user_name": "NYNP", "geo": null, "id": 148838266894954500, "id_str": "148838266894954496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/192679938/NYNPLogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/192679938/NYNPLogo_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Build NYC Accepting Applications for Tax-Eempt Financing http://t.co/pSGewu3R", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:00 +0000", "from_user": "The99Percenters", "from_user_id": 16988154, "from_user_id_str": "16988154", "from_user_name": "99-percenters", "geo": null, "id": 148838256920887300, "id_str": "148838256920887297", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701744515/i-kanz-haz-caek-small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701744515/i-kanz-haz-caek-small_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Timcast: This is a message to the trolls. I have spent 0$ in donations and I am homeless in NYC. I will keep streaming! :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:55 +0000", "from_user": "_DemiIsUnbroken", "from_user_id": 268574390, "from_user_id_str": "268574390", "from_user_name": "DanceUntilTomorrow\\u2665 ", "geo": null, "id": 148838237870374900, "id_str": "148838237870374912", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698680839/tumblr_ltjl6s1ZUh1qapw3zo1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698680839/tumblr_ltjl6s1ZUh1qapw3zo1_500_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @DeniseJonas: Merry NYC Christmas! http://t.co/ruYcKRGt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:51 +0000", "from_user": "MyUpperWest", "from_user_id": 47091038, "from_user_id_str": "47091038", "from_user_name": "MyUpperWest", "geo": null, "id": 148838220032000000, "id_str": "148838220032000001", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/265637984/UWS_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/265637984/UWS_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#UWS Coffee Bean & Tea Leaf At Amsterdam & 86th Officially Open (Finally): http://t.co/aX26uyqu #UpperWestSide #NYC @CoffeeBeanNY #caffeine", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:50 +0000", "from_user": "BabylonVPatch", "from_user_id": 158910877, "from_user_id_str": "158910877", "from_user_name": "Judy Mottl", "geo": null, "id": 148838217095987200, "id_str": "148838217095987200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1158929821/judy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1158929821/judy_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "NYC mayor's eulogy for slain police officer Peter Figoski, a West Babylon father of four: http://t.co/HmfzLhIc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:50 +0000", "from_user": "Eric_Fleet", "from_user_id": 277525632, "from_user_id_str": "277525632", "from_user_name": "Eric Fleet", "geo": null, "id": 148838214113837060, "id_str": "148838214113837056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1553776461/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553776461/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Insane final runs on Ajax this morning - heading to airport soon back to NYC - too #beautiful to leave here....air is sooo fresh.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:47 +0000", "from_user": "collectinghobby", "from_user_id": 252886221, "from_user_id_str": "252886221", "from_user_name": "Hobby collector", "geo": null, "id": 148838201585438720, "id_str": "148838201585438720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1466135899/2000px-Retro-flower-ornaments.svg_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1466135899/2000px-Retro-flower-ornaments.svg_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Sandhogs http://t.co/TP4xndxO Subway slide show - New Second Avenue #Subway tunnels #NYC \\u2664 http://t.co/7tEd74rH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:43 +0000", "from_user": "LocalGuysMover", "from_user_id": 101902292, "from_user_id_str": "101902292", "from_user_name": "Bruce Hensley MOVER", "geo": null, "id": 148838185823244300, "id_str": "148838185823244288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1647019656/318646_274821735873987_100000384872621_932606_1762691306_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647019656/318646_274821735873987_100000384872621_932606_1762691306_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#WNC ASHEVILLE HENDERSONVILLE #FOLLOW Cam Crockford\\n@CamCrockford NYC. Newport\\ndon't sacrifice your dreams to the man", "to_user": "CamCrockford", "to_user_id": 369668215, "to_user_id_str": "369668215", "to_user_name": "Cam Crockford"}, +{"created_at": "Mon, 19 Dec 2011 18:52:42 +0000", "from_user": "Backflittchen", "from_user_id": 356137284, "from_user_id_str": "356137284", "from_user_name": "Backflittchen", "geo": null, "id": 148838183075987460, "id_str": "148838183075987456", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1526119422/Logo_Lila_ohne_Rahmen_Transparenz_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1526119422/Logo_Lila_ohne_Rahmen_Transparenz_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@FederPinsel Ahhhhh - hab ich da was verpasst??? Du in NYC??? Wie cool *neid* *neid* *neid* Wink mal rueber nach <3 Jersey City <3 #Home", "to_user": "FederPinsel", "to_user_id": 269863974, "to_user_id_str": "269863974", "to_user_name": "Feder Pinselschwung"}, +{"created_at": "Mon, 19 Dec 2011 18:52:42 +0000", "from_user": "vinylhoursradio", "from_user_id": 76833785, "from_user_id_str": "76833785", "from_user_name": "vinylhoursradio.com", "geo": null, "id": 148838182434258940, "id_str": "148838182434258946", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687808822/tbntr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687808822/tbntr_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @TalibKweli: RT @DJBOBBYTRENDS: NEW MUSIC: @TalibKweli - \"Distractions\" http://t.co/2sxPsKjc (NYC needs this on the radio Bobby holla!)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:42 +0000", "from_user": "ospinadigital", "from_user_id": 22936939, "from_user_id_str": "22936939", "from_user_name": "Davidson Ospina", "geo": null, "id": 148838180802674700, "id_str": "148838180802674688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1462904168/243489_10150631719820191_735435190_19053177_7769694_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1462904168/243489_10150631719820191_735435190_19053177_7769694_o_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "SUPER BUSY WEEK! Excited :-) Wed. in Philly @ RED SKY / Fri. Dec. 23rd - BOUNCE NYC'S HOLIDAY PARTY @ (Le) Poisson Rouge", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:41 +0000", "from_user": "burtyful", "from_user_id": 156149929, "from_user_id_str": "156149929", "from_user_name": "Burt", "geo": null, "id": 148838175983411200, "id_str": "148838175983411201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1663776028/302930_10100309274383684_23316715_49595466_881875065_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663776028/302930_10100309274383684_23316715_49595466_881875065_n_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@ScorpsU1 have fun in ohio! And nyc! I don't plan on speaking with @VickyCees for the next 3wks...which is normal at this point", "to_user": "ScorpsU1", "to_user_id": 122876758, "to_user_id_str": "122876758", "to_user_name": "Maxx-Scorpio Uzuh"}, +{"created_at": "Mon, 19 Dec 2011 18:52:39 +0000", "from_user": "A2BMILLS", "from_user_id": 29854898, "from_user_id_str": "29854898", "from_user_name": "REAL DEAL MILLS ", "geo": null, "id": 148838168735658000, "id_str": "148838168735657984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1675102465/330945157_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675102465/330945157_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "#Support RT @iAmRozayMylan: My last nite in town NYC ..... Come see me at @clubPERFECTION tonite !!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:36 +0000", "from_user": "get_MORgan", "from_user_id": 258071000, "from_user_id_str": "258071000", "from_user_name": "Morgan Tully", "geo": null, "id": 148838156496666620, "id_str": "148838156496666625", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1663348728/Photo_on_2011-11-28_at_19.27__6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663348728/Photo_on_2011-11-28_at_19.27__6_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "NYC going to dash! Ahhhhh #cannotwait @KhloeKardashian @KimKardashian @KourtneyKardash @KrisJenner", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:34 +0000", "from_user": "ltomana", "from_user_id": 17329552, "from_user_id_str": "17329552", "from_user_name": "Laura Tomana", "geo": null, "id": 148838149735448580, "id_str": "148838149735448576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1679654186/Untitllled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679654186/Untitllled_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "i feel like such a nerd every time i log into my @pghpenguins nyc meetup group website. #foleyspub", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:33 +0000", "from_user": "AskLaLa", "from_user_id": 5997072, "from_user_id_str": "5997072", "from_user_name": "AskLaLa", "geo": null, "id": 148838143951515650, "id_str": "148838143951515648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1337100426/bellapippa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1337100426/bellapippa_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "nyc New York real estate upstarts make \"Top 30 Under 30\" list: From left: Oren Alexander, Eric Trump... http://t.co/D8b9Mvc5 real estate", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:30 +0000", "from_user": "pippopelo4", "from_user_id": 390605089, "from_user_id_str": "390605089", "from_user_name": "pippo pelo", "geo": null, "id": 148838130655567870, "id_str": "148838130655567873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690619359/bear_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690619359/bear_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @democracynow: Occupy Wall Street NYC marks 3-month anniversary with re-occupation attempt, dozens arrested. http://t.co/jK0sLcnw #ows", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:29 +0000", "from_user": "rosieschaap", "from_user_id": 101508803, "from_user_id_str": "101508803", "from_user_name": "Rosie Schaap", "geo": null, "id": 148838125299441660, "id_str": "148838125299441665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1268425445/IMG_1501_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1268425445/IMG_1501_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Holy protein overdose. I feel like I should go chop some wood. Where does one do that in NYC? Also, do you have an axe?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:27 +0000", "from_user": "KatyBiff", "from_user_id": 33094836, "from_user_id_str": "33094836", "from_user_name": "Katy Biffle", "geo": null, "id": 148838119733604350, "id_str": "148838119733604352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1418213404/253955_10150651672270647_556790646_19652907_4086174_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1418213404/253955_10150651672270647_556790646_19652907_4086174_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@ElizandJames just finished Tom Wolfe's \"Bonfire of the Vanities\" so great!! And about NYC!!", "to_user": "ElizandJames", "to_user_id": 34211097, "to_user_id_str": "34211097", "to_user_name": "Elizabeth and James", "in_reply_to_status_id": 148830112475918340, "in_reply_to_status_id_str": "148830112475918336"}, +{"created_at": "Mon, 19 Dec 2011 18:52:26 +0000", "from_user": "Barrington_S", "from_user_id": 197593704, "from_user_id_str": "197593704", "from_user_name": "Barrington Smith", "geo": null, "id": 148838115631579140, "id_str": "148838115631579137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676540962/Photo_on_2011-12-05_at_21.10_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676540962/Photo_on_2011-12-05_at_21.10_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @therealmikedean: #WTT U.S. TOUR IS A WRAP. PJ TO NYC TO START NEXT PHASE.. NEVER STOPS DOES IT?? WHAT'S BETTER THAN THAT?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:25 +0000", "from_user": "awake_iam", "from_user_id": 406088294, "from_user_id_str": "406088294", "from_user_name": "Awake&Free", "geo": null, "id": 148838110422253570, "id_str": "148838110422253568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702584030/Death_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702584030/Death_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "#occupydenver -- #D17 Occupation 2.0: Protesters Take NYC Streets, NYPD Arrests http://t.co/mPeoaNum via @youtube", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:25 +0000", "from_user": "HipHopPantsula", "from_user_id": 84038392, "from_user_id_str": "84038392", "from_user_name": "Hip Hop Pantsula", "geo": null, "id": 148838109239455740, "id_str": "148838109239455744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686439856/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686439856/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@BotsheloHuma: Finally today ke jele sphatlho after years \\u263A\\u201D Hadiyo diphatlho ko NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:21 +0000", "from_user": "Eleanor_West", "from_user_id": 335540934, "from_user_id_str": "335540934", "from_user_name": "Eleanor West", "geo": null, "id": 148838092877463550, "id_str": "148838092877463553", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1457422742/photo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1457422742/photo_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Best dogs for NYC apartments: http://t.co/60RmNA2S @enehsy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:20 +0000", "from_user": "RussRealDiehl", "from_user_id": 272771172, "from_user_id_str": "272771172", "from_user_name": "Russell P. Diehl", "geo": null, "id": 148838089727541250, "id_str": "148838089727541249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1396647783/another_boo_boo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1396647783/another_boo_boo_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "!!RT @NinaSky NYC-Tonight@RBAR (218 Bowery) http://t.co/DK9GbDF0 Complimentary @AlizeMixItUp cocktails+lots of awesome deals!Tell a Friend!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:19 +0000", "from_user": "NatashaOnonogbo", "from_user_id": 131170033, "from_user_id_str": "131170033", "from_user_name": "Natasha Ononogbo", "geo": null, "id": 148838085835239420, "id_str": "148838085835239424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1231222666/CDNYC-_01_-__Webshare_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1231222666/CDNYC-_01_-__Webshare_1_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @dwbjr69: NYC WEATHER \\rMon 45/38 PartlyCloudy\\nTue 45/36 PartlyCloudy\\nWed 52/45 Rain\\nThu 52/36 PartlyCloudy\\nFri 43/36 ChanceRain\\n@natashaononogbo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:18 +0000", "from_user": "likemybassdwnLo", "from_user_id": 244817188, "from_user_id_str": "244817188", "from_user_name": "Logan", "geo": null, "id": 148838079480860670, "id_str": "148838079480860672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1694059137/390061_2893191928651_1225880420_3318815_824463918_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694059137/390061_2893191928651_1225880420_3318815_824463918_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Accepted to LIM College ! <3 Class of 2016 . NYC, here I come !!!!!!!! #FashionStudent #tearsofjoyyy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:15 +0000", "from_user": "JeremyCasts", "from_user_id": 30180038, "from_user_id_str": "30180038", "from_user_name": "Jeremy Gordon", "geo": +{"coordinates": [40.7615,-73.9856], "type": "Point"}, "id": 148838068873465860, "id_str": "148838068873465856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1307208474/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1307208474/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "AT&T service is even worse in NYC than it is in LA. I didn't think that possible. #hatredforat&t", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:13 +0000", "from_user": "ndabuildn", "from_user_id": 282364554, "from_user_id_str": "282364554", "from_user_name": "Nene Richmond", "geo": null, "id": 148838060757499900, "id_str": "148838060757499904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1619070504/imagejpeg_2_14-1-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619070504/imagejpeg_2_14-1-1_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster</a>", "text": "RT @VinNice1: On the road.. Headed to NYC Yhea me 2. Wit no gas u n Neef ain't shit wait til yall get back. Yall get me errtime", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:13 +0000", "from_user": "DaRbYfRoSt7", "from_user_id": 336071747, "from_user_id_str": "336071747", "from_user_name": "Darby\\u2665", "geo": null, "id": 148838058417066000, "id_str": "148838058417065984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680242149/8X5ajKHU_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680242149/8X5ajKHU_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@AlexConstancio7 im in NYC now ;D #Yee cant wait till 5 !", "to_user": "AlexConstancio7", "to_user_id": 191224982, "to_user_id_str": "191224982", "to_user_name": "Alex Constancio"}, +{"created_at": "Mon, 19 Dec 2011 18:52:10 +0000", "from_user": "Silver_Suites", "from_user_id": 322162089, "from_user_id_str": "322162089", "from_user_name": "SuitesAtSilverTowers", "geo": null, "id": 148838049395122180, "id_str": "148838049395122176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1479310550/square-logo-suites-silver-towers_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1479310550/square-logo-suites-silver-towers_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Staying in #NYC on Christmas Day? See what delights #Manhattan has to offer: http://t.co/JCfgPIpd (via @EaterNY)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:10 +0000", "from_user": "servingface", "from_user_id": 38123485, "from_user_id_str": "38123485", "from_user_name": "Jaeden Gibbs.", "geo": null, "id": 148838043212709900, "id_str": "148838043212709889", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1015303040/080_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1015303040/080_normal.JPG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Marsha Ambrosius looking fab at the VH1 Divas celebration in NYC.. http://t.co/i9jRv4bW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:08 +0000", "from_user": "javiermilian", "from_user_id": 29913606, "from_user_id_str": "29913606", "from_user_name": "Borii\\u2122", "geo": null, "id": 148838040679354370, "id_str": "148838040679354369", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702541752/x5VPosdw_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702541752/x5VPosdw_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@LuiisArmand0o olaaa priietoo! Espero que te la pases bien por boston y nyc!", "to_user": "LuiisArmand0o", "to_user_id": 71392069, "to_user_id_str": "71392069", "to_user_name": "Armando Robles"}, +{"created_at": "Mon, 19 Dec 2011 18:52:06 +0000", "from_user": "LouisvilleUSA", "from_user_id": 176234009, "from_user_id_str": "176234009", "from_user_name": "Louisville KY", "geo": null, "id": 148838029337968640, "id_str": "148838029337968640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1325566882/twitter1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1325566882/twitter1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Suspect in NYC torching charged with murder http://t.co/aHhokbix", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:05 +0000", "from_user": "ope_bukola", "from_user_id": 21882137, "from_user_id_str": "21882137", "from_user_name": "Ope Bukola", "geo": null, "id": 148838027433746430, "id_str": "148838027433746432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1177862812/Ope_Bukola_SheReads_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1177862812/Ope_Bukola_SheReads_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Sad that I cannot attend but @startlteam is hosting another Digital Learning Series in nyc with @p2pu @codecademy and more!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:05 +0000", "from_user": "WillisRaburu", "from_user_id": 67047017, "from_user_id_str": "67047017", "from_user_name": "Willis Raburu", "geo": null, "id": 148838026980753400, "id_str": "148838026980753409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1315704631/raburu_pap_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1315704631/raburu_pap_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "@tadoh: @willisraburu nyc work! @citizentvkenya++thank you bro..na umepotea", "to_user": "tadoh", "to_user_id": 54128752, "to_user_id_str": "54128752", "to_user_name": "Victor Oluoch"}, +{"created_at": "Mon, 19 Dec 2011 18:52:04 +0000", "from_user": "Jasmine_KHALIFA", "from_user_id": 149684748, "from_user_id_str": "149684748", "from_user_name": "BossJazzy,G.", "geo": null, "id": 148838020559274000, "id_str": "148838020559273984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701745667/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701745667/profile_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@_adoreKayla yes it is nice but I wanna come to NYC tho", "to_user": "_adoreKayla", "to_user_id": 178885172, "to_user_id_str": "178885172", "to_user_name": "MissKaylaDeanna ", "in_reply_to_status_id": 148738284619706370, "in_reply_to_status_id_str": "148738284619706368"}, +{"created_at": "Mon, 19 Dec 2011 18:52:03 +0000", "from_user": "domdiag", "from_user_id": 284685641, "from_user_id_str": "284685641", "from_user_name": "Dominion Diagnostics", "geo": null, "id": 148838020005625860, "id_str": "148838020005625856", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317581499/twitter_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317581499/twitter_logo_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Prescription Drug Abuse Climbs in NYC http://t.co/AtIkt8Ry", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:03 +0000", "from_user": "StoveOnMyWaist", "from_user_id": 98948271, "from_user_id_str": "98948271", "from_user_name": "Dre3k", "geo": null, "id": 148838018457931780, "id_str": "148838018457931776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1679679145/fuego2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679679145/fuego2_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @Ryan_Alexaitis: Off to NYC jammer at my house on wednesday when I get back @TylerAltieri @StoveOnMyWaist @BROTsk @m3ar2k", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:03 +0000", "from_user": "joedorish", "from_user_id": 30442135, "from_user_id_str": "30442135", "from_user_name": "Joe Dorish", "geo": null, "id": 148838017774272500, "id_str": "148838017774272512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/848063889/800px-McWay_Falls_04-17-2009_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/848063889/800px-McWay_Falls_04-17-2009_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Best places in NYC to see Christmas lights - Yahoo! News http://t.co/TG2iqmjQ via @YahooNews", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:02 +0000", "from_user": "Leanne_Marie_14", "from_user_id": 55863541, "from_user_id_str": "55863541", "from_user_name": "Live, Love, Leanne", "geo": null, "id": 148838014859214850, "id_str": "148838014859214850", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682842942/Photo_on_2011-08-09_at_15.15_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682842942/Photo_on_2011-08-09_at_15.15_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@ladyantebellum playlist \\u2665can't wait for May to get here so I can see them in NYC", "to_user": "ladyantebellum", "to_user_id": 15651878, "to_user_id_str": "15651878", "to_user_name": "ladyantebellum"}, +{"created_at": "Mon, 19 Dec 2011 18:52:02 +0000", "from_user": "peakpublicity", "from_user_id": 39658995, "from_user_id_str": "39658995", "from_user_name": "PeakPublicity LLC.", "geo": null, "id": 148838014704033800, "id_str": "148838014704033794", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1637669102/310532_10150444699052193_505862192_10280468_463636513_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637669102/310532_10150444699052193_505862192_10280468_463636513_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Followers in nyc make sure you listen in to @WLBS with @egpytsaidso @iamSheree", "to_user": "IamSheree", "to_user_id": 47010589, "to_user_id_str": "47010589", "to_user_name": "Shere\\u00E8 Whitfield", "in_reply_to_status_id": 148835561329799170, "in_reply_to_status_id_str": "148835561329799168"}, +{"created_at": "Mon, 19 Dec 2011 18:52:01 +0000", "from_user": "tls2424", "from_user_id": 52932307, "from_user_id_str": "52932307", "from_user_name": "Teri", "geo": null, "id": 148838010555858940, "id_str": "148838010555858944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1396118930/Picture_045_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1396118930/Picture_045_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Top of the Rock! #nyc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:00 +0000", "from_user": "collectinghobby", "from_user_id": 252886221, "from_user_id_str": "252886221", "from_user_name": "Hobby collector", "geo": null, "id": 148838007254945800, "id_str": "148838007254945792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1466135899/2000px-Retro-flower-ornaments.svg_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1466135899/2000px-Retro-flower-ornaments.svg_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "http://t.co/dfOZOpcH Sandhogs: workers who dig out the the tunnels for subways and aquaducts http://t.co/S9WuqgR4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:00 +0000", "from_user": "hangtime4days", "from_user_id": 44247492, "from_user_id_str": "44247492", "from_user_name": "Paper Planez", "geo": null, "id": 148838006822932480, "id_str": "148838006822932481", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699335257/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699335257/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "My cuzin in dallas need to answer his phone if he comin to nyc nxt wk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:59 +0000", "from_user": "micaelashanley", "from_user_id": 94707240, "from_user_id_str": "94707240", "from_user_name": "Micaela Shanley", "geo": null, "id": 148838002204999680, "id_str": "148838002204999681", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695201459/Snapshot_20111212_8_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695201459/Snapshot_20111212_8_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Going to nyc :) http://t.co/X9yfHIvY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:56 +0000", "from_user": "kunene001", "from_user_id": 300194547, "from_user_id_str": "300194547", "from_user_name": "Philani kunene", "geo": null, "id": 148837989466910720, "id_str": "148837989466910720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699366937/4rm_20a_20lover_202_20another_20xoxo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699366937/4rm_20a_20lover_202_20another_20xoxo_normal.gif", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Never again looks nyc bt tastes lyke shit http://t.co/R8lIBq8X", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:55 +0000", "from_user": "Rositapoox3", "from_user_id": 328865721, "from_user_id_str": "328865721", "from_user_name": "Rosa Colon", "geo": null, "id": 148837984677003260, "id_str": "148837984677003264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697654275/IMAG0280-12_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697654275/IMAG0280-12_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Dont want to go back to work...so anxious to move to nyc!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:52 +0000", "from_user": "NuGalorePR", "from_user_id": 397358056, "from_user_id_str": "397358056", "from_user_name": "N\\u00FCGalore PR Firm", "geo": null, "id": 148837970844205060, "id_str": "148837970844205058", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1604557069/328602893_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1604557069/328602893_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Remember: @JeurySan will be performing on LIVE television tonight @ 11pm in NYC - channel 56 on Time Warner Cable or 34 for Verizon users!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:50 +0000", "from_user": "RangeelGomez", "from_user_id": 128954884, "from_user_id_str": "128954884", "from_user_name": "Rangel Gomez \\u2207", "geo": null, "id": 148837965878136830, "id_str": "148837965878136832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1573057790/Sem_T_tulo-2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1573057790/Sem_T_tulo-2_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "RT @selenagomez: Last week to enter for a chance to join me in New York for MTV NYE.\\n\\nhttp://t.co/52CXAHfb http://t.co/cuickqhZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:50 +0000", "from_user": "sales4NYC", "from_user_id": 429664133, "from_user_id_str": "429664133", "from_user_name": "New York City sales", "geo": null, "id": 148837964460462080, "id_str": "148837964460462080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680196076/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680196076/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#sales4u #sales *****CHEAP WICKED TICKETS***** (GERSHWIN THEATRE) http://t.co/GDtTU7EG #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:50 +0000", "from_user": "lvdeleo", "from_user_id": 181022752, "from_user_id_str": "181022752", "from_user_name": "Lauren DeLeo", "geo": null, "id": 148837963281870850, "id_str": "148837963281870848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1109438488/IMG_1676_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1109438488/IMG_1676_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NYC twice within a month?! so jealous of @snappy1191! #iheartny", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:49 +0000", "from_user": "sales4NYC", "from_user_id": 429664133, "from_user_id_str": "429664133", "from_user_name": "New York City sales", "geo": null, "id": 148837961637691400, "id_str": "148837961637691392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680196076/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680196076/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#sales4u #sales 2 tickets to PHISH! 12/28 $110 http://t.co/m8IkA8qr #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:49 +0000", "from_user": "sales4NYC", "from_user_id": 429664133, "from_user_id_str": "429664133", "from_user_name": "New York City sales", "geo": null, "id": 148837960417153020, "id_str": "148837960417153024", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680196076/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680196076/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#sales4u #sales Classic Timberland Khaki/Suede String Bag - Vintage (Riverdale) $20 http://t.co/IqP1qg5z #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:48 +0000", "from_user": "sales4NYC", "from_user_id": 429664133, "from_user_id_str": "429664133", "from_user_name": "New York City sales", "geo": null, "id": 148837956839407600, "id_str": "148837956839407616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680196076/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680196076/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#sales4u #sales !!AFFORDABLE WICKED TICKETS!! (GERSHWIN THEATRE) http://t.co/wxUYf4dm #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:48 +0000", "from_user": "sales4NYC", "from_user_id": 429664133, "from_user_id_str": "429664133", "from_user_name": "New York City sales", "geo": null, "id": 148837955627257860, "id_str": "148837955627257856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680196076/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680196076/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#sales4u #sales Salomon F20 David Benedeck Model Snowboard Boots (LIC) $105 http://t.co/EHkhxQCG #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:47 +0000", "from_user": "mrgcornelius", "from_user_id": 18026864, "from_user_id_str": "18026864", "from_user_name": "GCH", "geo": null, "id": 148837953161007100, "id_str": "148837953161007105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1591260718/328170228_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591260718/328170228_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "NYE in NYC...Might be the move.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:46 +0000", "from_user": "TamiaGrande", "from_user_id": 433608839, "from_user_id_str": "433608839", "from_user_name": "Arianator forever", "geo": null, "id": 148837946521427970, "id_str": "148837946521427969", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1685605674/imagesCA3RK7J5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685605674/imagesCA3RK7J5_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ArianaGrande I send you the best xmas wishes and im sorry i can't go to ur NYC show anymore im sick but a follow can make me better :DDD", "to_user": "ArianaGrande", "to_user_id": 34507480, "to_user_id_str": "34507480", "to_user_name": "Ariana Grande"}, +{"created_at": "Mon, 19 Dec 2011 18:51:45 +0000", "from_user": "shelley486", "from_user_id": 22282222, "from_user_id_str": "22282222", "from_user_name": "Shelley Carter", "geo": +{"coordinates": [33.6409,-84.4464], "type": "Point"}, "id": 148837942650085380, "id_str": "148837942650085377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1600300099/truffaut_photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600300099/truffaut_photo_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@cindymariej hey!! I arrive the night of Dec 26 and fly back to NYC on Jan 2. Would LOVE to see you! I'll also be back in the Bay in June!", "to_user": "cindymariej", "to_user_id": 17577383, "to_user_id_str": "17577383", "to_user_name": "Cindy Marie Jenkins", "in_reply_to_status_id": 148836621368836100, "in_reply_to_status_id_str": "148836621368836096"}, +{"created_at": "Mon, 19 Dec 2011 18:51:45 +0000", "from_user": "candyogbebor", "from_user_id": 45522349, "from_user_id_str": "45522349", "from_user_name": "candy ogbebor", "geo": null, "id": 148837942142566400, "id_str": "148837942142566401", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698392649/331612573_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698392649/331612573_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@K4Kendra nyc avatar *plentyHomo* lol..\\u263A", "to_user": "K4Kendra", "to_user_id": 35485752, "to_user_id_str": "35485752", "to_user_name": "Kendra Divine "}, +{"created_at": "Mon, 19 Dec 2011 18:51:43 +0000", "from_user": "ericaashlee", "from_user_id": 129660588, "from_user_id_str": "129660588", "from_user_name": "Erica Yard", "geo": null, "id": 148837936270540800, "id_str": "148837936270540800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699156424/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699156424/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Had such a good semester, but excited to be in NYC tm with my loves", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:43 +0000", "from_user": "itsmeAdelinaK", "from_user_id": 256297383, "from_user_id_str": "256297383", "from_user_name": "AdelinaK \\u272D", "geo": null, "id": 148837934034976770, "id_str": "148837934034976769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675532149/111_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675532149/111_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "its definetly OK that my nails are painted #EssieLilacism in this NYC weather.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:51:43 +0000", "from_user": "ericaashlee", "from_user_id": 129660588, "from_user_id_str": "129660588", "from_user_name": "Erica Yard", "geo": null, "id": 148837936270540800, "id_str": "148837936270540800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699156424/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699156424/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Had such a good semester, but excited to be in NYC tm with my loves", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:43 +0000", "from_user": "itsmeAdelinaK", "from_user_id": 256297383, "from_user_id_str": "256297383", "from_user_name": "AdelinaK \\u272D", "geo": null, "id": 148837934034976770, "id_str": "148837934034976769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675532149/111_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675532149/111_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "its definetly OK that my nails are painted #EssieLilacism in this NYC weather.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:40 +0000", "from_user": "NiinoDotCom", "from_user_id": 114406429, "from_user_id_str": "114406429", "from_user_name": "JBC", "geo": null, "id": 148837921267523600, "id_str": "148837921267523584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1640642757/312128_2169099195284_1480839524_31827299_1972415232_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640642757/312128_2169099195284_1480839524_31827299_1972415232_n_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @TalibKweli: RT @DJBOBBYTRENDS: NEW MUSIC: @TalibKweli - \"Distractions\" http://t.co/2sxPsKjc (NYC needs this on the radio Bobby holla!)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:38 +0000", "from_user": "carriewildes", "from_user_id": 16932897, "from_user_id_str": "16932897", "from_user_name": "carriewildesphoto", "geo": null, "id": 148837912333660160, "id_str": "148837912333660160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1548802977/IMG_9963_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1548802977/IMG_9963_normal.jpg", "source": "<a href="http://pinterest.com" rel="nofollow">Pinterest</a>", "text": "Jersey City wedding with views of #NYC http://t.co/nVcrU4mh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:38 +0000", "from_user": "SusanRPM4", "from_user_id": 85341198, "from_user_id_str": "85341198", "from_user_name": "Susan Alexander", "geo": null, "id": 148837912249761800, "id_str": "148837912249761793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/774255859/SusanGravatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/774255859/SusanGravatar_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@coachginny ... Funny, you know? They're one of many things in NYC that you can order and have delivered :-)", "to_user": "coachginny", "to_user_id": 24260060, "to_user_id_str": "24260060", "to_user_name": "Ginny Williams", "in_reply_to_status_id": 148792628299829250, "in_reply_to_status_id_str": "148792628299829248"}, +{"created_at": "Mon, 19 Dec 2011 18:51:36 +0000", "from_user": "Mangsters", "from_user_id": 281259577, "from_user_id_str": "281259577", "from_user_name": "Magnus Stervik", "geo": null, "id": 148837905333362700, "id_str": "148837905333362688", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700654145/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700654145/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Ska k\\u00F6pa tusen Red Bull. Bli speedad, ta bilen och k\\u00F6ra till NYC. Sen bli k\\u00E4nd och ha det lite gott s\\u00E5.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:34 +0000", "from_user": "JLisaCameron", "from_user_id": 26772243, "from_user_id_str": "26772243", "from_user_name": "Cam Er On", "geo": null, "id": 148837898471481340, "id_str": "148837898471481345", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694366641/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694366641/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Riff Raffs or Butter tonight ????? Let's discuss #NYC .....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:33 +0000", "from_user": "rach_sears", "from_user_id": 353892180, "from_user_id_str": "353892180", "from_user_name": "rachel sears ", "geo": null, "id": 148837894554009600, "id_str": "148837894554009602", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1492079911/185231_10150252897022404_588272403_7529585_1736928_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1492079911/185231_10150252897022404_588272403_7529585_1736928_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Wish i was goin to this audi show in NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:33 +0000", "from_user": "iamcodymonta", "from_user_id": 28165213, "from_user_id_str": "28165213", "from_user_name": "iamcodymonta'", "geo": null, "id": 148837891257278460, "id_str": "148837891257278464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1650448013/FULL_RESOLUTION_CROP_COLOR_1_TWITTER_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650448013/FULL_RESOLUTION_CROP_COLOR_1_TWITTER_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@AmourGabrielle Swear I thought I saw you in NYC yesterday. Bruh you gotta twin out there somewhere.", "to_user": "AmourGabrielle", "to_user_id": 37358445, "to_user_id_str": "37358445", "to_user_name": "Gabby\\uE31C"}, +{"created_at": "Mon, 19 Dec 2011 18:51:32 +0000", "from_user": "TwaneJ", "from_user_id": 141076148, "from_user_id_str": "141076148", "from_user_name": "Twane", "geo": null, "id": 148837887482413060, "id_str": "148837887482413056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674339131/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674339131/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I think I might actually go to NYC with @youngie623 I hope everything works out!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:31 +0000", "from_user": "StasiaHibbetsjh", "from_user_id": 296172881, "from_user_id_str": "296172881", "from_user_name": "Stasia Hibbets", "geo": null, "id": 148837883820781570, "id_str": "148837883820781568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Suspect in NYC torching charged with murder - The Associated Press http://t.co/dbEeRh8s", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:31 +0000", "from_user": "rahulgchaudhary", "from_user_id": 93134027, "from_user_id_str": "93134027", "from_user_name": "Rahul Chaudhary", "geo": null, "id": 148837883371995140, "id_str": "148837883371995137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1148856768/rahulchaudhary_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1148856768/rahulchaudhary_normal.jpg", "source": "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", "text": "RT @kidsvite: Kidsvite, New York Edition - December 19, 2011 http://t.co/lvmK4zN2 #kids #event #classes #parents #newyork #nyc #toddler #baby #moms", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:31 +0000", "from_user": "TyraGorczycajh5", "from_user_id": 296161276, "from_user_id_str": "296161276", "from_user_name": "Tyra Gorczyca", "geo": null, "id": 148837883191640060, "id_str": "148837883191640065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Suspect in NYC torching charged with murder - The Associated Press: The Associated PressSuspect in NYC torching ... http://t.co/5cOQUPss", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:31 +0000", "from_user": "SerGiuS_1", "from_user_id": 105237880, "from_user_id_str": "105237880", "from_user_name": "Sergio Perez", "geo": null, "id": 148837882898022400, "id_str": "148837882898022401", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1635466597/329668489_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635466597/329668489_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Dr_OneMike i'm heading to nyc at the end of this week :D", "to_user": "Dr_OneMike", "to_user_id": 109635336, "to_user_id_str": "109635336", "to_user_name": "Michael P. Auguste", "in_reply_to_status_id": 148836966497124350, "in_reply_to_status_id_str": "148836966497124352"}, +{"created_at": "Mon, 19 Dec 2011 18:51:31 +0000", "from_user": "SusieDuitscherj", "from_user_id": 295495545, "from_user_id_str": "295495545", "from_user_name": "Susie Duitscher", "geo": null, "id": 148837882835124220, "id_str": "148837882835124224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1344956107/947463338165_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1344956107/947463338165_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Suspect in NYC torching charged with murder - The Associated Press: The Associated PressSuspect in NYC torching charged with murderTh...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:30 +0000", "from_user": "Born_A_GENT", "from_user_id": 84874120, "from_user_id_str": "84874120", "from_user_name": "Anthony Casellas\\u2714", "geo": null, "id": 148837881887195140, "id_str": "148837881887195138", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700736466/Born_A_GENT_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700736466/Born_A_GENT_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Back in NYC!!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:26 +0000", "from_user": "meganortega", "from_user_id": 24422905, "from_user_id_str": "24422905", "from_user_name": "megan ortega", "geo": null, "id": 148837862782140400, "id_str": "148837862782140416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1674102219/320538_2392788386537_1455730023_2642053_493069917_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674102219/320538_2392788386537_1455730023_2642053_493069917_n_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Just sang empire state of mind on the red steps in NYC!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:25 +0000", "from_user": "AskLaLa", "from_user_id": 5997072, "from_user_id_str": "5997072", "from_user_name": "AskLaLa", "geo": null, "id": 148837860223619070, "id_str": "148837860223619072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1337100426/bellapippa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1337100426/bellapippa_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "nyc Brooklyn Shake Shack Opening Tomorrow\\u2014But Will It Really Transform Downtown?: Shack stacks! (Goth... http://t.co/HzMDw0vO apartments", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:25 +0000", "from_user": "SiVesAlgoDiAlgo", "from_user_id": 44165262, "from_user_id_str": "44165262", "from_user_name": "Watcher", "geo": null, "id": 148837859514781700, "id_str": "148837859514781696", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/247362059/sivesalgobio_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/247362059/sivesalgobio_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @ladybird_09 #subway #mta #NYC #astoria http://t.co/6HkCwPSB: #subway #mta #NYC #astoria htt... http://t.co/iIe2e2Mg #SiVesAlgoDiAlgo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:25 +0000", "from_user": "AskLaLa", "from_user_id": 5997072, "from_user_id_str": "5997072", "from_user_name": "AskLaLa", "geo": null, "id": 148837858478792700, "id_str": "148837858478792704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1337100426/bellapippa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1337100426/bellapippa_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "nyc Brant Publications, Owner of Art in America, Moving Downtown Headquarters: Peter Brant's Brant Pu... http://t.co/XX8WdAS6 apartments", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:25 +0000", "from_user": "carmen_alyse", "from_user_id": 435433277, "from_user_id_str": "435433277", "from_user_name": "carmen alyse", "geo": null, "id": 148837857547653120, "id_str": "148837857547653122", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696486285/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696486285/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@TylerDavidEstes interning with Patricia Field in NYC! My friends are growing up. Congrats brotha.", "to_user": "TylerDavidEstes", "to_user_id": 438952474, "to_user_id_str": "438952474", "to_user_name": "Tyler Estes"}, +{"created_at": "Mon, 19 Dec 2011 18:51:23 +0000", "from_user": "420Dionysus", "from_user_id": 220862858, "from_user_id_str": "220862858", "from_user_name": "uglyboyswag", "geo": null, "id": 148837850857742340, "id_str": "148837850857742338", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701501879/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701501879/profile_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @TalibKweli: RT @DJBOBBYTRENDS: NEW MUSIC: @TalibKweli - \"Distractions\" http://t.co/2sxPsKjc (NYC needs this on the radio Bobby holla!)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:23 +0000", "from_user": "NoahWunsch", "from_user_id": 189572494, "from_user_id_str": "189572494", "from_user_name": "Noah Wunsch", "geo": null, "id": 148837848760590340, "id_str": "148837848760590337", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1121965827/17379_1240720143037_1380300298_30786129_3300452_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1121965827/17379_1240720143037_1380300298_30786129_3300452_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Ambassadorsnyc best band in NYC right now? @N_YPress thinks so. catch them @PianosNYC this #THURSDAY http://t.co/uUdryNXP", "to_user": "Ambassadorsnyc", "to_user_id": 67434744, "to_user_id_str": "67434744", "to_user_name": "Ambassadors"}, +{"created_at": "Mon, 19 Dec 2011 18:51:22 +0000", "from_user": "an_mahoney", "from_user_id": 30995875, "from_user_id_str": "30995875", "from_user_name": "alyssa mahoney", "geo": null, "id": 148837844482408450, "id_str": "148837844482408448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695622963/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695622963/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@ericavozzella that's so far away hahah but I'll bee in NYC", "to_user": "ericavozzella", "to_user_id": 223307581, "to_user_id_str": "223307581", "to_user_name": "Erica Vozzella", "in_reply_to_status_id": 148837438809309200, "in_reply_to_status_id_str": "148837438809309184"}, +{"created_at": "Mon, 19 Dec 2011 18:51:18 +0000", "from_user": "kwijybo16", "from_user_id": 15953520, "from_user_id_str": "15953520", "from_user_name": "Eric Kollig", "geo": null, "id": 148837828460163070, "id_str": "148837828460163072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1477617257/31360_761014099485_411418_42671852_1644793_n2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1477617257/31360_761014099485_411418_42671852_1644793_n2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @SenGillibrand: Congratulations to @Cornell_Univ for winning competition to build an applied science campus in #NYC! http://t.co/GIRECcCa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:17 +0000", "from_user": "oktweeterp8ed", "from_user_id": 28943324, "from_user_id_str": "28943324", "from_user_name": "KC", "geo": null, "id": 148837826727911420, "id_str": "148837826727911424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1298523229/saf_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1298523229/saf_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @democracynow: Occupy Wall Street NYC marks 3-month anniversary with re-occupation attempt, dozens arrested. http://t.co/jK0sLcnw #ows", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:15 +0000", "from_user": "cherylduckworth", "from_user_id": 225175037, "from_user_id_str": "225175037", "from_user_name": "Cheryl Duckworth", "geo": null, "id": 148837816850325500, "id_str": "148837816850325504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1530466868/headshot_tiny_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1530466868/headshot_tiny_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @democracynow: Occupy Wall Street NYC marks 3-month anniversary with re-occupation attempt, dozens arrested. http://t.co/jK0sLcnw #ows", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:14 +0000", "from_user": "jerry53635", "from_user_id": 41480264, "from_user_id_str": "41480264", "from_user_name": "Jerry McGaughey", "geo": null, "id": 148837813360672770, "id_str": "148837813360672768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/244498525/Me_at_Mrdi_Gras_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/244498525/Me_at_Mrdi_Gras_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I favorited a @YouTube video http://t.co/zpqZKrEp The Blues MaGoos-We Ain't Got Nothin' Yet (1966 NYC With Ly", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:14 +0000", "from_user": "jerry53635", "from_user_id": 41480264, "from_user_id_str": "41480264", "from_user_name": "Jerry McGaughey", "geo": null, "id": 148837811632603140, "id_str": "148837811632603136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/244498525/Me_at_Mrdi_Gras_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/244498525/Me_at_Mrdi_Gras_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube video http://t.co/zpqZKrEp The Blues MaGoos-We Ain't Got Nothin' Yet (1966 NYC With Lyrics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:13 +0000", "from_user": "aleeyoumousa", "from_user_id": 321029535, "from_user_id_str": "321029535", "from_user_name": "\\u2665Aleeyou Mousa Alee\\u2665", "geo": null, "id": 148837809850040320, "id_str": "148837809850040320", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687817505/IMG00825-20111026-1755_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687817505/IMG00825-20111026-1755_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@BabyGrlDMarie Nyc 1", "to_user": "BabyGrlDMarie", "to_user_id": 180043737, "to_user_id_str": "180043737", "to_user_name": "BabyGirlDMarie\\u2665LLOVE", "in_reply_to_status_id": 148822035190132740, "in_reply_to_status_id_str": "148822035190132736"}, +{"created_at": "Mon, 19 Dec 2011 18:51:09 +0000", "from_user": "Smithies_zz", "from_user_id": 181128817, "from_user_id_str": "181128817", "from_user_name": "Joseph Kabon", "geo": null, "id": 148837793299300350, "id_str": "148837793299300352", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1492176317/P5100999_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1492176317/P5100999_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@Iwalaiye nyc, wish i cud meet old frends 2", "to_user": "Iwalaiye", "to_user_id": 220935175, "to_user_id_str": "220935175", "to_user_name": "Ms_Tomiey", "in_reply_to_status_id": 148837402130120700, "in_reply_to_status_id_str": "148837402130120705"}, +{"created_at": "Mon, 19 Dec 2011 18:51:08 +0000", "from_user": "natalierobinLD", "from_user_id": 175223398, "from_user_id_str": "175223398", "from_user_name": "Natalie Robin", "geo": null, "id": 148837787204988930, "id_str": "148837787204988928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1363811126/Apollo_270crop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1363811126/Apollo_270crop_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @SenGillibrand: Congratulations to @Cornell_Univ for winning the competition to build an applied science campus in #NYC! http://t.co/hlGIKmrW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:04 +0000", "from_user": "Marysellar", "from_user_id": 242878674, "from_user_id_str": "242878674", "from_user_name": "Mary Sellar\\u00E9s", "geo": null, "id": 148837771367288830, "id_str": "148837771367288832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1644465474/P3240056_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644465474/P3240056_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TomCruise: Tom answers your questions at the NYC M:I-@GhostProtocol Premiere 2night! Submit your questions w/ #MissionNYC http://t.co/8FwxLVGC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:02 +0000", "from_user": "DaRbYfRoSt7", "from_user_id": 336071747, "from_user_id_str": "336071747", "from_user_name": "Darby\\u2665", "geo": null, "id": 148837762584412160, "id_str": "148837762584412160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680242149/8X5ajKHU_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680242149/8X5ajKHU_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@AustinMahone im in NYC now;) i cant wait till 5 ;D #Yee", "to_user": "AustinMahone", "to_user_id": 196795202, "to_user_id_str": "196795202", "to_user_name": "Austin Mahone"}, +{"created_at": "Mon, 19 Dec 2011 18:51:02 +0000", "from_user": "kbthree", "from_user_id": 29448789, "from_user_id_str": "29448789", "from_user_name": "Ken Brannigan", "geo": null, "id": 148837762387279870, "id_str": "148837762387279872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1480148609/young_ken_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1480148609/young_ken_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@lostheather: Holy christ http://t.co/7Zs9Khmg\\u201D @IHi5Now @EmmaLou2484", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:02 +0000", "from_user": "paulshore01", "from_user_id": 14243986, "from_user_id_str": "14243986", "from_user_name": "paul shore", "geo": null, "id": 148837762001412100, "id_str": "148837762001412096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/274861667/cap02_medium_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/274861667/cap02_medium_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "If you could harness the power of NYC cab drivers slamming their horns you could power the frickin sun. POW... Energy solved. Next problem.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:01 +0000", "from_user": "Diane_Dyson", "from_user_id": 23226236, "from_user_id_str": "23226236", "from_user_name": "Diane Dyson", "geo": null, "id": 148837758763405300, "id_str": "148837758763405313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1383647235/Jane_s_Walk_2011_-_Looks_good_for_once_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1383647235/Jane_s_Walk_2011_-_Looks_good_for_once_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @AccidentalCity: Interesting thoughts from @JohnToryShow on why Toronto is more diverse than NYC (via @CivicActionGTA) http://t.co/120JTGYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:58 +0000", "from_user": "SenGillibrand", "from_user_id": 72198806, "from_user_id_str": "72198806", "from_user_name": "Kirsten Gillibrand", "geo": null, "id": 148837745635229700, "id_str": "148837745635229696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1539812868/KEGheadshottwitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1539812868/KEGheadshottwitter_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Congratulations to @Cornell_Univ for winning the competition to build an applied science campus in #NYC! http://t.co/hlGIKmrW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:56 +0000", "from_user": "TalibKweli", "from_user_id": 18511475, "from_user_id_str": "18511475", "from_user_name": "Talib Kweli Greene", "geo": null, "id": 148837736604897280, "id_str": "148837736604897280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700332206/TalibKweli_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700332206/TalibKweli_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @DJBOBBYTRENDS: NEW MUSIC: @TalibKweli - \"Distractions\" http://t.co/2sxPsKjc (NYC needs this on the radio Bobby holla!)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:54 +0000", "from_user": "SBrown_", "from_user_id": 21614943, "from_user_id_str": "21614943", "from_user_name": "S.", "geo": null, "id": 148837727419371520, "id_str": "148837727419371520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1654032292/65223_847187582273_14209140_45683871_3421290_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654032292/65223_847187582273_14209140_45683871_3421290_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "NYC is a wild ass place.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:51 +0000", "from_user": "capn_Bud", "from_user_id": 347375612, "from_user_id_str": "347375612", "from_user_name": "Capn Bud", "geo": null, "id": 148837718179323900, "id_str": "148837718179323904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://www.yahoo.com" rel="nofollow">Yahoo!</a>", "text": "commented: If he had been White and she black,Al Sharpton,Rev.Jesse,Eric Holder would be screaming HATE CRIME! http://t.co/kD4OejRL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:48 +0000", "from_user": "drjiho714", "from_user_id": 43686883, "from_user_id_str": "43686883", "from_user_name": "Jiho Jung", "geo": null, "id": 148837704220676100, "id_str": "148837704220676096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1478677779/254610_1955399920816_1117254231_31735247_7801075_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1478677779/254610_1955399920816_1117254231_31735247_7801075_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I dislike nyc weather as much as I love this place.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:47 +0000", "from_user": "jennart23", "from_user_id": 254314597, "from_user_id_str": "254314597", "from_user_name": "Jennifer", "geo": null, "id": 148837699640508400, "id_str": "148837699640508416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1540230209/me_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1540230209/me_1_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Nyc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:46 +0000", "from_user": "delex_lincs", "from_user_id": 271454046, "from_user_id_str": "271454046", "from_user_name": "Mr_Adebayo", "geo": null, "id": 148837694577971200, "id_str": "148837694577971200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689208908/IMG00054-20111212-1546_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689208908/IMG00054-20111212-1546_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Nyc chat tho", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:43 +0000", "from_user": "JamaitianShawty", "from_user_id": 336306121, "from_user_id_str": "336306121", "from_user_name": "Mandiee Lee", "geo": null, "id": 148837681688883200, "id_str": "148837681688883201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1633326610/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633326610/image_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "The Life Of NYC : Bicycles & Taxis .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:41 +0000", "from_user": "hehehehao", "from_user_id": 60439933, "from_user_id_str": "60439933", "from_user_name": "iChlo\\u00EB", "geo": null, "id": 148837674256568320, "id_str": "148837674256568322", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1114166276/8eac241ce78b408ba686690e_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1114166276/8eac241ce78b408ba686690e_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@ChloeGMoretz will u appear on a new TV. We haven't a little long time to see ya. Happy days in NYC!!:)", "to_user": "ChloeGMoretz", "to_user_id": 90021519, "to_user_id_str": "90021519", "to_user_name": "Chlo\\u00EB Grace Moretz"}, +{"created_at": "Mon, 19 Dec 2011 18:50:40 +0000", "from_user": "sitosplit", "from_user_id": 410746995, "from_user_id_str": "410746995", "from_user_name": "sitosplit", "geo": null, "id": 148837668137074700, "id_str": "148837668137074689", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @thinkprogress: Owners of Zuccotti Park owe NYC 139K in back taxes http://t.co/4lkz6VhT #ows #taxdodgers", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:39 +0000", "from_user": "saradohi", "from_user_id": 433759600, "from_user_id_str": "433759600", "from_user_name": "Chrysandra Macclure", "geo": null, "id": 148837668053188600, "id_str": "148837668053188608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687540778/224_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687540778/224_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "auto insurance companies nyc http://t.co/jD4etx1Y", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:39 +0000", "from_user": "TVutomi", "from_user_id": 349744685, "from_user_id_str": "349744685", "from_user_name": "Vutomi tsongayinwe", "geo": null, "id": 148837665368842240, "id_str": "148837665368842240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1673452406/FacebookHomescreenImage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673452406/FacebookHomescreenImage_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@Mu_Sla_Lee lollesy ithnk it looks nyc....", "to_user": "Mu_Sla_Lee", "to_user_id": 348914758, "to_user_id_str": "348914758", "to_user_name": " Lalee Sadiki", "in_reply_to_status_id": 148835114292490240, "in_reply_to_status_id_str": "148835114292490240"}, +{"created_at": "Mon, 19 Dec 2011 18:50:38 +0000", "from_user": "kiaraceh", "from_user_id": 364241003, "from_user_id_str": "364241003", "from_user_name": "Kiara Herrera", "geo": null, "id": 148837661698834430, "id_str": "148837661698834433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1543100233/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543100233/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "NYC in less than a month! @AustenPxB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:35 +0000", "from_user": "Binkey_Babie", "from_user_id": 365612835, "from_user_id_str": "365612835", "from_user_name": "Bianca ", "geo": null, "id": 148837650239991800, "id_str": "148837650239991808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698880068/fX0L9CjJ_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698880068/fX0L9CjJ_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I told my dad I got accepted to St Rose&he goes thats nice now we can\\n wait for St Johns to accept you so you can stay in NYC#NoSupport.Lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:34 +0000", "from_user": "AtticusBooks", "from_user_id": 118406405, "from_user_id_str": "118406405", "from_user_name": "Atticus Books", "geo": null, "id": 148837646209265660, "id_str": "148837646209265664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/723674385/Atticus_Books_Logo_Very_Small_RGB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/723674385/Atticus_Books_Logo_Very_Small_RGB_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Three NYC bookstores share their favorites from 2011: http://t.co/b5QUHJaU #amreading #nolistfatiguehere", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:33 +0000", "from_user": "BeckCuthbertX", "from_user_id": 46976727, "from_user_id_str": "46976727", "from_user_name": "Rebecca\\u2661", "geo": null, "id": 148837642128211970, "id_str": "148837642128211969", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691244923/318787_10150274387722647_601447646_7798210_5733529_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691244923/318787_10150274387722647_601447646_7798210_5733529_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @smhelloladies: In NYC. Did @OpieRadio show earlier and who should appear but @simonpegg. We traded some droll bon mots, natch. What a lovely man.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:33 +0000", "from_user": "mykal792", "from_user_id": 103684383, "from_user_id_str": "103684383", "from_user_name": "Michael Schilling", "geo": null, "id": 148837639867469820, "id_str": "148837639867469824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/685687530/mike_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/685687530/mike_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#SOTD The Orion Experience \"NYC Girl\" http://t.co/Y6xqzDC5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:32 +0000", "from_user": "thaitvnews", "from_user_id": 110596487, "from_user_id_str": "110596487", "from_user_name": "thaitvnews", "geo": null, "id": 148837638546264060, "id_str": "148837638546264064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1669224662/sensoredearth_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669224662/sensoredearth_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Suspect in NYC torching charged with murder - The Associated Press: The Associated PressSuspect in NYC torching ... http://t.co/Wr7enj7M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:31 +0000", "from_user": "AspiringMedia", "from_user_id": 16821275, "from_user_id_str": "16821275", "from_user_name": "AspiringMedia", "geo": null, "id": 148837629687889920, "id_str": "148837629687889920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683579620/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683579620/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "maybe @studiomuseum will one day hang this in the gallery #harlem #photography #NYC http://t.co/wmViafzl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:28 +0000", "from_user": "gypsybiancat", "from_user_id": 378953948, "from_user_id_str": "378953948", "from_user_name": "Gypsy funhouse", "geo": null, "id": 148837618480717820, "id_str": "148837618480717824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1684269334/neNB5xbx_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684269334/neNB5xbx_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@RussianBoy4life nyc and boston I'm in boston now", "to_user": "RussianBoy4life", "to_user_id": 403178519, "to_user_id_str": "403178519", "to_user_name": "Pauly d ", "in_reply_to_status_id": 148836940697976830, "in_reply_to_status_id_str": "148836940697976832"}, +{"created_at": "Mon, 19 Dec 2011 18:50:27 +0000", "from_user": "Funky_Fresh_Kid", "from_user_id": 305759692, "from_user_id_str": "305759692", "from_user_name": "Ayopelumi Soetan", "geo": null, "id": 148837614101872640, "id_str": "148837614101872640", "iso_language_code": "fi", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702206544/Funky_Fresh_Kid_2424677480186137632_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702206544/Funky_Fresh_Kid_2424677480186137632_normal.jpg", "source": "<a href="http://www.writelonger.com" rel="nofollow">Write Longer</a>", "text": "@purpleberiie nyc avii!", "to_user": "purpleberiie", "to_user_id": 428905275, "to_user_id_str": "428905275", "to_user_name": " Jemiemah Douglas"}, +{"created_at": "Mon, 19 Dec 2011 18:50:26 +0000", "from_user": "chaunabryant", "from_user_id": 192106882, "from_user_id_str": "192106882", "from_user_name": "chauna bryant", "geo": null, "id": 148837610364731400, "id_str": "148837610364731393", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1326659089/hip_circles_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1326659089/hip_circles_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "\\u201C@bklynbadass: 6:30pm Boot Camp Is SOLD OUT From January-April!\\u201D congrats! will have to add one of the other times to my NYC workout list", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:25 +0000", "from_user": "AVaccariello", "from_user_id": 290347050, "from_user_id_str": "290347050", "from_user_name": "Alyssa Vaccariello", "geo": null, "id": 148837608141758460, "id_str": "148837608141758464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1532126852/AVACCATTACK_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1532126852/AVACCATTACK_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "NYC in about 16 hours :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:21 +0000", "from_user": "wild_banshee", "from_user_id": 399115725, "from_user_id_str": "399115725", "from_user_name": "Wild Banshee", "geo": null, "id": 148837588889894900, "id_str": "148837588889894912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1621923150/Ghost_for_Twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621923150/Ghost_for_Twitter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Misses the BS Report. I need @sportsguy33 to tell me what to think of the CP3 deal and Baron Davis and his beard going to NYC,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:20 +0000", "from_user": "JessieFarnan", "from_user_id": 340566003, "from_user_id_str": "340566003", "from_user_name": "Jessica Farnan", "geo": null, "id": 148837586549489660, "id_str": "148837586549489664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1605374970/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1605374970/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "About to go into Dash in NYC!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:20 +0000", "from_user": "ItsSuperKei12", "from_user_id": 28713895, "from_user_id_str": "28713895", "from_user_name": "Shakei Haynes ", "geo": null, "id": 148837584741732350, "id_str": "148837584741732354", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701593452/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701593452/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I really dont know but I will be there after the 1st. spending some time in NYC RT @ms__marshall @ItsSuperKei12 when are you coming home?", "to_user": "ms__marshall", "to_user_id": 92455207, "to_user_id_str": "92455207", "to_user_name": "Dom.", "in_reply_to_status_id": 148794164878901250, "in_reply_to_status_id_str": "148794164878901248"}, +{"created_at": "Mon, 19 Dec 2011 18:50:19 +0000", "from_user": "Mills_sbelegant", "from_user_id": 229309219, "from_user_id_str": "229309219", "from_user_name": "Mills SoWavy", "geo": null, "id": 148837581033967600, "id_str": "148837581033967617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1637890194/340500_2165692196201_1663543705_2030739_961597443_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637890194/340500_2165692196201_1663543705_2030739_961597443_o_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Safe holiday travels to you all!! HeLLO NYC!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:17 +0000", "from_user": "HadyDabelba14", "from_user_id": 84627382, "from_user_id_str": "84627382", "from_user_name": "HadyGarciaGoris", "geo": null, "id": 148837573442289660, "id_str": "148837573442289668", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1690158527/331397091_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690158527/331397091_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": ":'( :'( :'( y aqu\\u00ED noos dejasSs a las doss :( @beatrizfrp hahaha'. Buen viaje primoo RT @AlberthMoscoso: NYC all\\u00E1 voy #FelizNavidad RD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:14 +0000", "from_user": "EileenLehpamer", "from_user_id": 44489279, "from_user_id_str": "44489279", "from_user_name": "Eileen Lehpamer", "geo": null, "id": 148837559395553280, "id_str": "148837559395553282", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/253629367/eileen4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/253629367/eileen4_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "FROM: Notify NYC\\nToday 8AM-4PM, ConEd conducting inspections of NYC power lines via blue and white helicopter w/... http://t.co/nxvQLIbT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:13 +0000", "from_user": "joingrouper", "from_user_id": 314874205, "from_user_id_str": "314874205", "from_user_name": "Grouper", "geo": null, "id": 148837557738811400, "id_str": "148837557738811392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1399636312/logo2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1399636312/logo2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Get caught up on your #nyc #nightlife with @guestofaguest http://t.co/nZobimBC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:13 +0000", "from_user": "carleej", "from_user_id": 25872693, "from_user_id_str": "25872693", "from_user_name": "Carlee Jo Kremer", "geo": null, "id": 148837556220461060, "id_str": "148837556220461056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1490832306/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1490832306/image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "This is terrible!!! NYC police: Suspect says woman set afire over debt - Yahoo! News http://t.co/x7HdPWg4 via @YahooNews", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:13 +0000", "from_user": "KariGay1", "from_user_id": 341953853, "from_user_id_str": "341953853", "from_user_name": "Kari Gay", "geo": null, "id": 148837555075424260, "id_str": "148837555075424258", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1459586979/very_cute_girl_05_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1459586979/very_cute_girl_05_normal.jpg", "source": "<a href="http://www.instacheckin.com" rel="nofollow">Instacheckin</a>", "text": "Suspect in NYC torching charged with murder - The Associated Press http://t.co/mNhHdK83", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:12 +0000", "from_user": "StarSightings", "from_user_id": 25478138, "from_user_id_str": "25478138", "from_user_name": "StarSightings", "geo": null, "id": 148837554060406800, "id_str": "148837554060406784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1197413796/ss_iphone_app_icon_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1197413796/ss_iphone_app_icon_normal.PNG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Katie's 33! No party dress for her tho, Katie Holmes and Tom Cruise out for bday dinner in #NYC. @iamkatieholmes http://t.co/1jcanrAA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:11 +0000", "from_user": "plainjane71923", "from_user_id": 229364103, "from_user_id_str": "229364103", "from_user_name": "Susie B.", "geo": null, "id": 148837550210027520, "id_str": "148837550210027520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693981674/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693981674/image_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @ChrisKattan: Tina, Tracey, Horatio, Amy, Rachel, Jimmy, Seth, Wiig, Lorne and the rest of the brilliant gang, thanks for a VERY MERRY XMAS in NYC at SNL!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:10 +0000", "from_user": "MichaelSkolnik", "from_user_id": 24165761, "from_user_id_str": "24165761", "from_user_name": "Michael Skolnik", "geo": null, "id": 148837543704674300, "id_str": "148837543704674305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1104977134/Headshot_from_Berlin_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1104977134/Headshot_from_Berlin_2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@iamBenLyons my man BD is coming to NYC. couldn't be happier.", "to_user": "iamBenLyons", "to_user_id": 22048072, "to_user_id_str": "22048072", "to_user_name": "Ben Lyons", "in_reply_to_status_id": 148837301542326270, "in_reply_to_status_id_str": "148837301542326272"}, +{"created_at": "Mon, 19 Dec 2011 18:50:08 +0000", "from_user": "mycutebee2", "from_user_id": 345257531, "from_user_id_str": "345257531", "from_user_name": "Bolanle Agbabiaka", "geo": null, "id": 148837537908133900, "id_str": "148837537908133889", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1664391020/Photo-0619_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664391020/Photo-0619_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Dnt try 2 b nyc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:08 +0000", "from_user": "RebeccaSaveKids", "from_user_id": 68745052, "from_user_id_str": "68745052", "from_user_name": " Rebecca W Robinson", "geo": null, "id": 148837536326889470, "id_str": "148837536326889472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/646309602/IMG_5319f-med_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/646309602/IMG_5319f-med_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "N.Y.C. triathlon adds swim requirement after deaths http://t.co/HxgSHYdG #OWswim #swimming", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:07 +0000", "from_user": "QuentinGGQZ", "from_user_id": 383037161, "from_user_id_str": "383037161", "from_user_name": "Quentin Gonzales", "geo": null, "id": 148837533495722000, "id_str": "148837533495721984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1598515509/avatar-christmas-103-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598515509/avatar-christmas-103-1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Suspect in NYC torching charged with murder - The Associated Press", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:06 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148837528122822660, "id_str": "148837528122822656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @free4NYC: #free #freestuff WOOD PALLETS FOR FREE!! HURRY WHILE PALLETS ARE AVAILABLE!! (c-line marble, new h... http://t.co/SVngEUlP #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:05 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148837522787663870, "id_str": "148837522787663872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @free4NYC: #free #freestuff Baptism Debate (Flushing) http://t.co/IscAEt0m #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:04 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148837520933797900, "id_str": "148837520933797889", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @free4NYC: #free #freestuff Rev'n Chef: Herb Processor (Greenwood Heights) http://t.co/lkuOwUI5 #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:04 +0000", "from_user": "poca_hanaah", "from_user_id": 278870776, "from_user_id_str": "278870776", "from_user_name": "Hanaah Frechette", "geo": null, "id": 148837520459825150, "id_str": "148837520459825152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1304037603/20564_1226116897974_1380570183_30572168_267606_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1304037603/20564_1226116897974_1380570183_30572168_267606_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Super excited for @lalaalaenaa and the rest of the Frechette clan to arrive in NYC :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:04 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148837519167983600, "id_str": "148837519167983616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @free4NYC: #free #freestuff Benjamin Moore Interior Paint - Free (Tuckahoe NY) http://t.co/Kqf8YibQ #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:03 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148837516483629060, "id_str": "148837516483629056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @free4NYC: #free #freestuff Free 12-drawer dresser hardwood (Bethel, CT 06801) http://t.co/t2x6FDen #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:01 +0000", "from_user": "nandita", "from_user_id": 6575732, "from_user_id_str": "6575732", "from_user_name": "Alejandra Ramos", "geo": null, "id": 148837506006269950, "id_str": "148837506006269952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1319428590/twitterprofilenew_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1319428590/twitterprofilenew_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Got NYC-area friends or family who LOVE food? Get them a cooking class gift certificate! Easy gift they'll LOVE:... http://t.co/cm9saz7c", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:00 +0000", "from_user": "MarijoZlatic", "from_user_id": 90897580, "from_user_id_str": "90897580", "from_user_name": "Marijo Zlatic", "geo": null, "id": 148837503443546100, "id_str": "148837503443546112", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1016720268/67151b63-2415-445e-9810-d06359a9dd3e_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1016720268/67151b63-2415-445e-9810-d06359a9dd3e_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@BokiNachbar kjes ti? :) Te bomo vidl na preseason tekmi NYC:NJN? Lahk pa prides v Pig 'n Whistle na pivo :)", "to_user": "BokiNachbar", "to_user_id": 45169955, "to_user_id_str": "45169955", "to_user_name": "Bostjan Nachbar"}, +{"created_at": "Mon, 19 Dec 2011 18:50:00 +0000", "from_user": "SweetHeartSwan", "from_user_id": 59983716, "from_user_id_str": "59983716", "from_user_name": "Arella Swan", "geo": null, "id": 148837502130716670, "id_str": "148837502130716672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1400827358/220335_1758911489465_1139340108_31557591_7769446_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1400827358/220335_1758911489465_1139340108_31557591_7769446_o_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @issarae: Bravo is looking for NYC based affluent AfAm couples getting married by 2/14/12 for new series on Bravo. Contact: @vpetalent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:59 +0000", "from_user": "lukenbxin8", "from_user_id": 369924880, "from_user_id_str": "369924880", "from_user_name": "Luken Bond", "geo": null, "id": 148837499731578880, "id_str": "148837499731578880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1533973655/imagesCAPAY5I0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1533973655/imagesCAPAY5I0_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "CarolanChris cool how many are there in NYC?KSdtx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:58 +0000", "from_user": "pinkdogsunite", "from_user_id": 397591659, "from_user_id_str": "397591659", "from_user_name": "Pier 6 Dogs", "geo": null, "id": 148837493435924480, "id_str": "148837493435924480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1605114855/profilepic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1605114855/profilepic_normal.jpg", "source": "<a href="http://www.handmark.com" rel="nofollow">TweetCaster for iOS</a>", "text": "Here we go! Race you! #dogs #brooklyn #NYC http://t.co/uVZhncxt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:54 +0000", "from_user": "D2BAwesome", "from_user_id": 254713316, "from_user_id_str": "254713316", "from_user_name": "Doomed to Be Awesome", "geo": null, "id": 148837479057858560, "id_str": "148837479057858561", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1249755881/170708_10150384338540246_806845245_17145839_1287236_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1249755881/170708_10150384338540246_806845245_17145839_1287236_o_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Alex Winter\\u2019s \\u201CFREAKED\\u201D and John Sayles genre flicks in NYC http://t.co/IijMZp14", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:54 +0000", "from_user": "koolkil27", "from_user_id": 49048056, "from_user_id_str": "49048056", "from_user_name": "Glen Campbell Jr.", "geo": null, "id": 148837476277026800, "id_str": "148837476277026816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1244562247/glenn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1244562247/glenn_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@Baron_Davis yes!! Bring me a ring.. No stephen marbury nonsense lol. Feel like knicks are putting together a video game lineup nyc", "to_user": "Baron_Davis", "to_user_id": 21056862, "to_user_id_str": "21056862", "to_user_name": "Baron Davis", "in_reply_to_status_id": 148764624899145730, "in_reply_to_status_id_str": "148764624899145728"}, +{"created_at": "Mon, 19 Dec 2011 18:49:53 +0000", "from_user": "ashleyimani_", "from_user_id": 98208913, "from_user_id_str": "98208913", "from_user_name": "ashley brown : )", "geo": null, "id": 148837472187580400, "id_str": "148837472187580416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699982119/20111216_230543_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699982119/20111216_230543_normal.jpeg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @Ty_gibson21 NYC is that motha fu**ing city", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:50 +0000", "from_user": "BuildUpPromo3", "from_user_id": 327090899, "from_user_id_str": "327090899", "from_user_name": "Build Up Promo", "geo": null, "id": 148837458782593020, "id_str": "148837458782593024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1421100492/graphic_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1421100492/graphic_3_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "Vote @bkCASHMERE For The 'EXPLOSIVE GRIND AWARD' AT THE 2011 @ELEGANTHOODNESS AWARDS! 1.18 @CLUB PYRAMID NYC http://t.co/XOeaRr3I", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:49 +0000", "from_user": "BuildUpPromo", "from_user_id": 310799639, "from_user_id_str": "310799639", "from_user_name": "Build Up Promo", "geo": null, "id": 148837456115007500, "id_str": "148837456115007488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1381342710/graphic_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1381342710/graphic_1_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "Vote @bkCASHMERE For The 'EXPLOSIVE GRIND AWARD' AT THE 2011 @ELEGANTHOODNESS AWARDS! 1.18 @CLUB PYRAMID NYC http://t.co/KPLddtXR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:48 +0000", "from_user": "MsDukes10", "from_user_id": 142847834, "from_user_id_str": "142847834", "from_user_name": "tui brown", "geo": null, "id": 148837453422272500, "id_str": "148837453422272512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1381512824/2447657_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1381512824/2447657_normal.png", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "Vote @bkCASHMERE For The 'EXPLOSIVE GRIND AWARD' AT THE 2011 @ELEGANTHOODNESS AWARDS! 1.18 @CLUB PYRAMID NYC http://t.co/YJSQdo6g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:48 +0000", "from_user": "DiMeHEaRt", "from_user_id": 307727496, "from_user_id_str": "307727496", "from_user_name": "DORA", "geo": null, "id": 148837450905698300, "id_str": "148837450905698304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1374447674/phone_card_012_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1374447674/phone_card_012_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "Vote @bkCASHMERE For The 'EXPLOSIVE GRIND AWARD' AT THE 2011 @ELEGANTHOODNESS AWARDS! 1.18 @CLUB PYRAMID NYC http://t.co/cNghzuus", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:47 +0000", "from_user": "Ladi_Lurv", "from_user_id": 198354117, "from_user_id_str": "198354117", "from_user_name": "Pheladi Ledwaba", "geo": null, "id": 148837449039224830, "id_str": "148837449039224832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1619592777/329120686_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619592777/329120686_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Spent d day wit my nephew Lesego n his mom. It was 2 nyc, he's soooo adorables*smilin*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:47 +0000", "from_user": "OTESK", "from_user_id": 44700179, "from_user_id_str": "44700179", "from_user_name": "Adam Tom", "geo": null, "id": 148837447978057730, "id_str": "148837447978057728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1321748279/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1321748279/image_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "Vote @bkCASHMERE For The 'EXPLOSIVE GRIND AWARD' AT THE 2011 @ELEGANTHOODNESS AWARDS! 1.18 @CLUB PYRAMID NYC http://t.co/7BAubC5y", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:47 +0000", "from_user": "BolingonK", "from_user_id": 378794364, "from_user_id_str": "378794364", "from_user_name": "Boling K", "geo": null, "id": 148837447562838000, "id_str": "148837447562838016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Len Levitt: Kelly and the Bureau: Inconvenient Truths: Because Kelly commands the police department of 9/11-scarred NYC, the country'...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:46 +0000", "from_user": "aliciahsthename", "from_user_id": 340415677, "from_user_id_str": "340415677", "from_user_name": "Tamikah campbell", "geo": null, "id": 148837445658619900, "id_str": "148837445658619904", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701180175/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701180175/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "NYC baby!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:46 +0000", "from_user": "Kazi_Brasil", "from_user_id": 401142340, "from_user_id_str": "401142340", "from_user_name": "Kazi Grupo M\\u00EDdia\\u2122", "geo": null, "id": 148837445063016450, "id_str": "148837445063016448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1613272009/kazi_brasil_wp_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1613272009/kazi_brasil_wp_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\u2605 @TomCruise | Tom answers your questions at the NYC M:I-@GhostProtocol Premiere 2night! Submit...: Tom answers ... http://t.co/tJ7TXwNM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:46 +0000", "from_user": "TEAMYOUNGHYI", "from_user_id": 180832917, "from_user_id_str": "180832917", "from_user_name": "teamyounghyi", "geo": null, "id": 148837442592579600, "id_str": "148837442592579585", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1107183221/45531_140349002669728_100000838874588_180987_2464181_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1107183221/45531_140349002669728_100000838874588_180987_2464181_n_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "Vote @bkCASHMERE For The 'EXPLOSIVE GRIND AWARD' AT THE 2011 @ELEGANTHOODNESS AWARDS! 1.18 @CLUB PYRAMID NYC http://t.co/jDEy2vQ7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:46 +0000", "from_user": "Kazi_Celebrity", "from_user_id": 400820369, "from_user_id_str": "400820369", "from_user_name": "Kazi Celebrity News\\u2122", "geo": null, "id": 148837442215092220, "id_str": "148837442215092224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1612511547/kazi_celebrity_favicon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612511547/kazi_celebrity_favicon_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\u2605 @TomCruise | Tom answers your questions at the NYC M:I-@GhostProtocol Premiere 2night! Submit...: Tom answers ... http://t.co/hLnjiCNF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:49:46 +0000", "from_user": "Kazi_Celebrity", "from_user_id": 400820369, "from_user_id_str": "400820369", "from_user_name": "Kazi Celebrity News\\u2122", "geo": null, "id": 148837442215092220, "id_str": "148837442215092224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1612511547/kazi_celebrity_favicon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612511547/kazi_celebrity_favicon_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\u2605 @TomCruise | Tom answers your questions at the NYC M:I-@GhostProtocol Premiere 2night! Submit...: Tom answers ... http://t.co/hLnjiCNF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:46 +0000", "from_user": "Kazi_Germany", "from_user_id": 402657125, "from_user_id_str": "402657125", "from_user_name": "Kazi Germany News\\u2122", "geo": null, "id": 148837442068295680, "id_str": "148837442068295680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1634196736/germany_favicon_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634196736/germany_favicon_twitter_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\u2605 @TomCruise | Tom answers your questions at the NYC M:I-@GhostProtocol Premiere 2night! Submit...: Tom answers ... http://t.co/OuWcm2BQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:45 +0000", "from_user": "Kazi_Brasil", "from_user_id": 401142340, "from_user_id_str": "401142340", "from_user_name": "Kazi Grupo M\\u00EDdia\\u2122", "geo": null, "id": 148837441439154180, "id_str": "148837441439154176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1613272009/kazi_brasil_wp_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1613272009/kazi_brasil_wp_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\u2605 @TomCruise | Tom answers your questions at the NYC M:I-@GhostProtocol Premiere 2night! Submit...: Tom answers ... http://t.co/GSGlUzOM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:45 +0000", "from_user": "Kazi_Celebrity", "from_user_id": 400820369, "from_user_id_str": "400820369", "from_user_name": "Kazi Celebrity News\\u2122", "geo": null, "id": 148837441183297540, "id_str": "148837441183297536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1612511547/kazi_celebrity_favicon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612511547/kazi_celebrity_favicon_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\u2605 @TomCruise | Tom answers your questions at the NYC M:I-@GhostProtocol Premiere 2night! Submit...: Tom answers ... http://t.co/GTN3ZzAC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:44 +0000", "from_user": "switz_d_witz", "from_user_id": 354346655, "from_user_id_str": "354346655", "from_user_name": "Bolous Sobanks", "geo": null, "id": 148837435403546620, "id_str": "148837435403546625", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700554819/edited_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700554819/edited_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Nyc 1 bro.....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:44 +0000", "from_user": "BKCASHMERE", "from_user_id": 18999531, "from_user_id_str": "18999531", "from_user_name": "CASHMERE", "geo": null, "id": 148837434371739650, "id_str": "148837434371739648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1188316210/SALUTE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1188316210/SALUTE_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "Vote @bkCASHMERE For The 'EXPLOSIVE GRIND AWARD' AT THE 2011 @ELEGANTHOODNESS AWARDS! 1.18 @CLUB PYRAMID NYC http://t.co/EPNXtMxj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:43 +0000", "from_user": "tweetsfrom_ang", "from_user_id": 59572545, "from_user_id_str": "59572545", "from_user_name": "Angela Ocasio", "geo": null, "id": 148837430252937200, "id_str": "148837430252937216", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693063683/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693063683/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@JU_lOVEMEE: @tweetsfrom_ang nyc?!!\\u201D I'm broke :(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:42 +0000", "from_user": "M4RKM", "from_user_id": 18561913, "from_user_id_str": "18561913", "from_user_name": "Mark M", "geo": null, "id": 148837425932795900, "id_str": "148837425932795904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1602462731/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1602462731/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@paul_a_smith nice one! When you heading to NYC?", "to_user": "paul_a_smith", "to_user_id": 9568572, "to_user_id_str": "9568572", "to_user_name": "Paul Smith", "in_reply_to_status_id": 148835026845446140, "in_reply_to_status_id_str": "148835026845446144"}, +{"created_at": "Mon, 19 Dec 2011 18:49:41 +0000", "from_user": "DawudWalid", "from_user_id": 30050923, "from_user_id_str": "30050923", "from_user_name": "Dawud Walid", "geo": null, "id": 148837422858375170, "id_str": "148837422858375168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701262314/lowes-protesters1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701262314/lowes-protesters1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "AUDIO of me on Charlie Langton Show this morning discussing @lowes #allamericanmuslim http://t.co/jFpdEotN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:37 +0000", "from_user": "geniseize", "from_user_id": 278693873, "from_user_id_str": "278693873", "from_user_name": "Geni Seize", "geo": null, "id": 148837407519801340, "id_str": "148837407519801344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1303544063/images-3_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1303544063/images-3_normal.jpeg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Suspect in NYC torching charged with murder - The Associated Press: The Associated PressSuspect in NYC torching ... http://t.co/0NFULt30", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:35 +0000", "from_user": "Paul_Lisicky", "from_user_id": 15590584, "from_user_id_str": "15590584", "from_user_name": "Paul Lisicky", "geo": null, "id": 148837398892122100, "id_str": "148837398892122112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1443800907/LevitatingNed_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1443800907/LevitatingNed_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I'm reading with the great Lynne Tillman tonight at NYC's Dixon Place at 7:30 PM. It would be great to see you.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:35 +0000", "from_user": "clayton_rosa", "from_user_id": 98393225, "from_user_id_str": "98393225", "from_user_name": "Clayton Rosa", "geo": null, "id": 148837396656558080, "id_str": "148837396656558080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1575509373/226765_557076407781_53001697_31928338_6778669_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575509373/226765_557076407781_53001697_31928338_6778669_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "I had a dream that I was wandering the streets of NYC. Maybe it's a sign that I have to make a trip to NYC soon...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:34 +0000", "from_user": "KarmaLoopRepNYC", "from_user_id": 386173822, "from_user_id_str": "386173822", "from_user_name": "REPCODE: runnyc33", "geo": null, "id": 148837392961388540, "id_str": "148837392961388544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575776605/karma_loop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575776605/karma_loop_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@MacMiller @TreeJTV @SweetJamesMD point breeze born and raised, trying to do my thing at st. Johns in NYC, show NYC some love!!! #412 #212", "to_user": "MacMiller", "to_user_id": 23065354, "to_user_id_str": "23065354", "to_user_name": "Mac Miller"}, +{"created_at": "Mon, 19 Dec 2011 18:49:33 +0000", "from_user": "CUSSWSUEB", "from_user_id": 213323632, "from_user_id_str": "213323632", "from_user_name": "CusswSUEB", "geo": null, "id": 148837389643694080, "id_str": "148837389643694081", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1162605908/cussw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1162605908/cussw_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "CUSSWers in the NYC area: Looking for a way to celebrate the end of the semester? Check out this Ugly Sweater Jam... http://t.co/srLo6CTn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:32 +0000", "from_user": "mikestylesagent", "from_user_id": 62448504, "from_user_id_str": "62448504", "from_user_name": "Mike Styles", "geo": null, "id": 148837384795062270, "id_str": "148837384795062272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1641195047/17355_299132640674_672565674_3356207_7558231_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641195047/17355_299132640674_672565674_3356207_7558231_n_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Back on it this Monday. Long weekend in NYC on 50 Cent Video production set. All 12 of our... http://t.co/gwGOybSy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:31 +0000", "from_user": "GrouponMatthew", "from_user_id": 106181714, "from_user_id_str": "106181714", "from_user_name": "Matthew Holihan", "geo": null, "id": 148837379459907600, "id_str": "148837379459907585", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1653199925/m1-2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653199925/m1-2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@CSkdr I've been a bad friend. I miss you. Let's catch up soon, I wanna see how NYC is going. #Turtz", "to_user": "CSkdr", "to_user_id": 174650498, "to_user_id_str": "174650498", "to_user_name": "Cari Sekendur"}, +{"created_at": "Mon, 19 Dec 2011 18:49:27 +0000", "from_user": "digital_naive", "from_user_id": 93655071, "from_user_id_str": "93655071", "from_user_name": "Franziska Puls", "geo": null, "id": 148837363928403970, "id_str": "148837363928403968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/837866457/ViewFotoCommunity-1384243_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/837866457/ViewFotoCommunity-1384243_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "InStyle is taking a fashion magazine, combining it with a digital experience, and taking it to the streets of NYC http://t.co/ovjV2ONt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:27 +0000", "from_user": "NewYorkCityFor", "from_user_id": 433104407, "from_user_id_str": "433104407", "from_user_name": "NewYorkCityForDotMe", "geo": null, "id": 148837362338770940, "id_str": "148837362338770946", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684431871/Location4_12nyc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684431871/Location4_12nyc_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "NewYorkCityFor.me Suspect in NYC woman's burning appears in court http://t.co/rmjp0uEP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:27 +0000", "from_user": "NewYorkCityFor", "from_user_id": 433104407, "from_user_id_str": "433104407", "from_user_name": "NewYorkCityForDotMe", "geo": null, "id": 148837362204540930, "id_str": "148837362204540928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684431871/Location4_12nyc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684431871/Location4_12nyc_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "NewYorkCityFor.me Suspect in NYC torching charged with murder http://t.co/MEzcVygX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:26 +0000", "from_user": "NewYorkCityFor", "from_user_id": 433104407, "from_user_id_str": "433104407", "from_user_name": "NewYorkCityForDotMe", "geo": null, "id": 148837361831260160, "id_str": "148837361831260161", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684431871/Location4_12nyc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684431871/Location4_12nyc_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "NewYorkCityFor.me Cornell wins NYC science-campus competition http://t.co/htIPnS5A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:26 +0000", "from_user": "NewYorkCityFor", "from_user_id": 433104407, "from_user_id_str": "433104407", "from_user_name": "NewYorkCityForDotMe", "geo": null, "id": 148837361323745280, "id_str": "148837361323745282", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684431871/Location4_12nyc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684431871/Location4_12nyc_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "NewYorkCityFor.me Suspect in NYC woman's burning due in court http://t.co/ILwAXVxm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:26 +0000", "from_user": "NewYorkCityFor", "from_user_id": 433104407, "from_user_id_str": "433104407", "from_user_name": "NewYorkCityForDotMe", "geo": null, "id": 148837361298575360, "id_str": "148837361298575360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684431871/Location4_12nyc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684431871/Location4_12nyc_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "NewYorkCityFor.me Suspect in NYC elevator torching due in court http://t.co/IBRfkjPd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:26 +0000", "from_user": "sheaintsalem", "from_user_id": 56728849, "from_user_id_str": "56728849", "from_user_name": "salem worku", "geo": null, "id": 148837358521942000, "id_str": "148837358521942016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695074188/74_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695074188/74_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT: @Deedl23 Nyc we need to reunite...i really miss you", "to_user": "Deedl23", "to_user_id": 121771695, "to_user_id_str": "121771695", "to_user_name": "Adel \\uE00E", "in_reply_to_status_id": 148836555262402560, "in_reply_to_status_id_str": "148836555262402560"}, +{"created_at": "Mon, 19 Dec 2011 18:49:25 +0000", "from_user": "gantzlersdfuk6", "from_user_id": 393383728, "from_user_id_str": "393383728", "from_user_name": "Gantzler South", "geo": null, "id": 148837356110229500, "id_str": "148837356110229505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1594459476/imagesCA85W91S_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1594459476/imagesCA85W91S_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I was on WABC-TV Eyewitness News 5:30pm w/ few words about rash of iPhone thefts in NYC - \"I have B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:20 +0000", "from_user": "rj_dudley", "from_user_id": 78484365, "from_user_id_str": "78484365", "from_user_name": "Richard Dudley", "geo": null, "id": 148837335537164300, "id_str": "148837335537164288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1111475037/twitter_megaphone_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1111475037/twitter_megaphone_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "For the Monday crowd: a 32 image panorama of #NYC I shot with a #WP7 from 86th floor of Empire St Bldg. http://t.co/K4nMJ7Me", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:20 +0000", "from_user": "ROwazany", "from_user_id": 348471687, "from_user_id_str": "348471687", "from_user_name": "Renee Owazany", "geo": null, "id": 148837333607776260, "id_str": "148837333607776256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1517472427/DSC_1499_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517472427/DSC_1499_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@astrologyzone You are a wonderful person! NYC in two days!!! XOXO", "to_user": "astrologyzone", "to_user_id": 43254421, "to_user_id_str": "43254421", "to_user_name": "Astrology Zone", "in_reply_to_status_id": 148744105348964350, "in_reply_to_status_id_str": "148744105348964352"}, +{"created_at": "Mon, 19 Dec 2011 18:49:20 +0000", "from_user": "mrmess", "from_user_id": 18378526, "from_user_id_str": "18378526", "from_user_name": "Jay", "geo": null, "id": 148837332718583800, "id_str": "148837332718583808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1603841998/vacayjay1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1603841998/vacayjay1_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Word! RT @chef2thestars: wishing i was in NYC for christmas...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:18 +0000", "from_user": "TrinalanaC_Rob", "from_user_id": 145079394, "from_user_id_str": "145079394", "from_user_name": "TRINALANA C-ROB", "geo": null, "id": 148837327370858500, "id_str": "148837327370858496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702617801/vantage_vision_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702617801/vantage_vision_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Hamza_Lu aye fuck boy you need to be gettin in touch wit me the NYC phoot shoot is at 7 am so do you know what time you gotta leave Buffalo", "to_user": "Hamza_Lu", "to_user_id": 137527326, "to_user_id_str": "137527326", "to_user_name": "Hitch Burney"}, +{"created_at": "Mon, 19 Dec 2011 18:49:14 +0000", "from_user": "alli_merino", "from_user_id": 233005491, "from_user_id_str": "233005491", "from_user_name": "Allison Merino", "geo": null, "id": 148837310862082050, "id_str": "148837310862082048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693670845/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693670845/image_normal.jpg", "source": "<a href="http://tweetlogix.com" rel="nofollow">Tweetlogix</a>", "text": "@_Avant_ here in NYC with fam and friends \\uD83D\\uDE0A. You?!", "to_user": "_Avant_", "to_user_id": 23579924, "to_user_id_str": "23579924", "to_user_name": "AV", "in_reply_to_status_id": 148836966178369540, "in_reply_to_status_id_str": "148836966178369536"}, +{"created_at": "Mon, 19 Dec 2011 18:49:12 +0000", "from_user": "LaneAuguZWB", "from_user_id": 383662839, "from_user_id_str": "383662839", "from_user_name": "Lane August", "geo": null, "id": 148837302670606340, "id_str": "148837302670606336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1611251774/avatar-christmas-63-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611251774/avatar-christmas-63-1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Suspect in NYC torching charged with murder - The Associated Press", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:10 +0000", "from_user": "kyoorochi", "from_user_id": 274721217, "from_user_id_str": "274721217", "from_user_name": "HHH", "geo": null, "id": 148837293212434430, "id_str": "148837293212434432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1293279899/006_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1293279899/006_normal.jpg", "source": "<a href="http://kyoorochi.com" rel="nofollow">orochi1487</a>", "text": "SGM Seeks LTR In NYC: Web-Slingin' With Spider-M http://t.co/s3xZPPsj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:09 +0000", "from_user": "deenay10", "from_user_id": 149683615, "from_user_id_str": "149683615", "from_user_name": "yvonne barry", "geo": null, "id": 148837287826956300, "id_str": "148837287826956288", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1040359847/Untitled_-_1.jpgMR_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1040359847/Untitled_-_1.jpgMR_normal.jpg", "source": "<a href="http://www.news-republic.com" rel="nofollow">News Republic</a>", "text": "Cornell wins NYC science-campus competition http://t.co/7rMvxBOi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:08 +0000", "from_user": "KingPromo757", "from_user_id": 137394276, "from_user_id_str": "137394276", "from_user_name": "Dreamcatcher", "geo": null, "id": 148837283481665540, "id_str": "148837283481665536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699329854/74233_576770879994_62305773_32054996_2661663_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699329854/74233_576770879994_62305773_32054996_2661663_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @newfaceCEO: #DMV everyone is invading DC for #THEEALLBLACK on 1.15.12 <NYC PA NJ 804 757> EVERYONE AND THEY MOMMA GONNA BE THERE !!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:06 +0000", "from_user": "Bigee79", "from_user_id": 105301503, "from_user_id_str": "105301503", "from_user_name": "Elvis P.", "geo": null, "id": 148837277475414000, "id_str": "148837277475414018", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1178210581/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1178210581/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @alanhahn: Davis pointed out how he always came to NYC to play at Rucker and always wanted to call the Garden home.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:05 +0000", "from_user": "burginre", "from_user_id": 35860714, "from_user_id_str": "35860714", "from_user_name": "Robert Burgin", "geo": null, "id": 148837272152846340, "id_str": "148837272152846336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/211633221/topcat_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/211633221/topcat_normal.jpg", "source": "<a href="http://www.nambu.com/" rel="nofollow">Nambu</a>", "text": "Best meals in NYC last week = Picholine (http://t.co/fZzfULJU), Robert (http://t.co/MqfXwpHJ), One if by Land (http://t.co/FFvAOdgc)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:05 +0000", "from_user": "scavix", "from_user_id": 18332524, "from_user_id_str": "18332524", "from_user_name": "scavix", "geo": null, "id": 148837270194110460, "id_str": "148837270194110464", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1548702937/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1548702937/avatar_normal.jpg", "source": "<a href="http://stampz.evolix.net/" rel="nofollow">Stampzz</a>", "text": "NYC building #NYCUSA http://t.co/4ahf6DQf via @Stampzz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:03 +0000", "from_user": "chef2thestars", "from_user_id": 22932219, "from_user_id_str": "22932219", "from_user_name": "Chef Tiffani Janelle", "geo": null, "id": 148837261545447420, "id_str": "148837261545447424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1654433705/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654433705/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "wishing i was in NYC for christmas...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:01 +0000", "from_user": "ReddingNews", "from_user_id": 19961203, "from_user_id_str": "19961203", "from_user_name": "Redding News", "geo": null, "id": 148837255291736060, "id_str": "148837255291736065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/75004099/sundialbridge_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/75004099/sundialbridge_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "ReddingNewsBlog Suspect in NYC torching charged with murder - The Associated Press: The Associated PressSuspect ... http://t.co/IEPm9Pmn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:59 +0000", "from_user": "nickshum", "from_user_id": 154407959, "from_user_id_str": "154407959", "from_user_name": "Nick Shum", "geo": null, "id": 148837247087689730, "id_str": "148837247087689728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1690150454/nickshum-new3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690150454/nickshum-new3_normal.png", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "Swedish House Mafia at Madison Square Garden: the biggest night of dance music in NYC \\u2014 ever http://t.co/MLAU2n2S", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:59 +0000", "from_user": "MegaJohn_", "from_user_id": 270139665, "from_user_id_str": "270139665", "from_user_name": "John Ciotola", "geo": null, "id": 148837245250572300, "id_str": "148837245250572288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1453525753/37616_412816484961_759719961_4797539_3568575_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1453525753/37616_412816484961_759719961_4797539_3568575_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Crime is supposedly down in NYC but cops are getting shot in the face and grandmas are being lit on fire. #GetTheseDirtBagsOffTheStreets", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:58 +0000", "from_user": "ArtSceneandSeen", "from_user_id": 257546103, "from_user_id_str": "257546103", "from_user_name": "ArtScene&Seen", "geo": null, "id": 148837240842358800, "id_str": "148837240842358784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1254991652/download_art_scene__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1254991652/download_art_scene__normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @OHWOWGallery: NYC - This Tuesday from 6-8pm we launch Leo Fitzpatrick's book titled Not Garbage at the OHWOW Book Club. 227 Waverly Place.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:56 +0000", "from_user": "titlecharacter", "from_user_id": 8537112, "from_user_id_str": "8537112", "from_user_name": "Ben", "geo": null, "id": 148837233720430600, "id_str": "148837233720430592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1107140447/IMG_0984-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1107140447/IMG_0984-2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@brimil @PeterStrugala @worldfederation @vespejom Shouldn't the Jersey part be as easy as \"Philly vs NYC?\"", "to_user": "brimil", "to_user_id": 15208526, "to_user_id_str": "15208526", "to_user_name": "Britt Miller", "in_reply_to_status_id": 148834622816530430, "in_reply_to_status_id_str": "148834622816530432"}, +{"created_at": "Mon, 19 Dec 2011 18:48:55 +0000", "from_user": "OnBoardTours", "from_user_id": 310693718, "from_user_id_str": "310693718", "from_user_name": "OnBoard Tours", "geo": null, "id": 148837231145136130, "id_str": "148837231145136129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1411809804/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1411809804/images_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "New Campus in NYC according to @RelocationAlly: What Cornell's New Tech Campus Means for New York's Roosevelt Island http://t.co/4YcxuZJf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:55 +0000", "from_user": "LisaRachel8", "from_user_id": 58573973, "from_user_id_str": "58573973", "from_user_name": "Lisa Rachel", "geo": null, "id": 148837230889283600, "id_str": "148837230889283584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1584236482/RACHEL_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584236482/RACHEL_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @HotChelleRae: Don\\u2019t forget! We are playing a private show today at 5PM EST at the @iHeartRadio Theater in NYC. Enter for tix here: http://t.co/AzJSN2zV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:53 +0000", "from_user": "EvrydayTutorial", "from_user_id": 384536450, "from_user_id_str": "384536450", "from_user_name": "Everyday Tutorial", "geo": null, "id": 148837222274170880, "id_str": "148837222274170880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1657732195/2010-04-21-twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657732195/2010-04-21-twitter_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Japanese shimmer stick everyday makeup tutorial http://t.co/XDwOglEz #fashion #style #nyc #LA #makeup", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:53 +0000", "from_user": "BRym00", "from_user_id": 278773501, "from_user_id_str": "278773501", "from_user_name": "Brooke Rymer", "geo": null, "id": 148837220067975170, "id_str": "148837220067975168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1308424382/pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1308424382/pic_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "In heaven. In New York. Miss u @jrrymer ! #nyc http://t.co/Vl4BvbQs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:52 +0000", "from_user": "lindsayadler", "from_user_id": 20963273, "from_user_id_str": "20963273", "from_user_name": "Lindsay Adler", "geo": null, "id": 148837217853382660, "id_str": "148837217853382656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/669892027/17270_745225794426_5502739_42407856_5074335_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/669892027/17270_745225794426_5502739_42407856_5074335_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Last night was a very 'NYC. Went out with 2 girlfriends, had dinner with an amazing french DJ, at a french restaurant, then wine & chill", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:50 +0000", "from_user": "dougseamansCPT", "from_user_id": 102692112, "from_user_id_str": "102692112", "from_user_name": "Doug Seamans", "geo": null, "id": 148837209372495870, "id_str": "148837209372495873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1682973365/tw_12463997_1323438165_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682973365/tw_12463997_1323438165_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@LarysaFit thanks for following! Say hello to NYC for me! Miss the big apple! Have a great week!", "to_user": "LarysaFit", "to_user_id": 101032922, "to_user_id_str": "101032922", "to_user_name": "Larysa DiDio"}, +{"created_at": "Mon, 19 Dec 2011 18:48:50 +0000", "from_user": "JasonPuckettKJR", "from_user_id": 26707595, "from_user_id_str": "26707595", "from_user_name": "Jason Puckett", "geo": null, "id": 148837208051298300, "id_str": "148837208051298304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1673697123/Leach_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673697123/Leach_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Are the Stanford #Cardinal the best team in the #Pac12 ? Lone loss was to the #1 team in country by 6 in NYC.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:50 +0000", "from_user": "FaisalNayani", "from_user_id": 30811030, "from_user_id_str": "30811030", "from_user_name": "Faisal Nayani", "geo": null, "id": 148837207191466000, "id_str": "148837207191465984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1178795505/47359_464238797153_507362153_6449910_8073683_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1178795505/47359_464238797153_507362153_6449910_8073683_n_normal.jpg", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "Effing fabulous to be on Eastcoast standard time! Next flight at 3:10pm to LaGuardia airport in NYC http://t.co/kcp0yVvf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:49 +0000", "from_user": "BusinessWeeObri", "from_user_id": 372916499, "from_user_id_str": "372916499", "from_user_name": "Nickolas Topete", "geo": null, "id": 148837203441758200, "id_str": "148837203441758208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1541373520/1315939510_0633covdc_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541373520/1315939510_0633covdc_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/89PCbhfm Business class airline Odyssey plans London-NYC route - Chicago Tribune", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:47 +0000", "from_user": "Terrrrrrence93", "from_user_id": 195454640, "from_user_id_str": "195454640", "from_user_name": "Harreh Fashions", "geo": null, "id": 148837194327523330, "id_str": "148837194327523328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1671820709/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671820709/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@OneDirectionNY: NYC, WE HAVE TO WIN THIS NEXT CHALLENGE AND BUMP DALLAS DOWN TO THIRD.\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:45 +0000", "from_user": "RealSimpleJack", "from_user_id": 370767304, "from_user_id_str": "370767304", "from_user_name": "Simple Jack Matthews", "geo": null, "id": 148837189546033150, "id_str": "148837189546033152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1541264112/jack_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541264112/jack_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@WGWatson what do you think about a road trip to NYC?!", "to_user": "WGWatson", "to_user_id": 254158298, "to_user_id_str": "254158298", "to_user_name": "Goontronics C.E.O.", "in_reply_to_status_id": 148836370603970560, "in_reply_to_status_id_str": "148836370603970560"}, +{"created_at": "Mon, 19 Dec 2011 18:48:45 +0000", "from_user": "MikeTSherratt", "from_user_id": 380951341, "from_user_id_str": "380951341", "from_user_name": "Michael T Sherratt", "geo": null, "id": 148837185938931700, "id_str": "148837185938931713", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1597752728/322853_225723584154670_116954415031588_618415_1610039166_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1597752728/322853_225723584154670_116954415031588_618415_1610039166_o_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@DeepakChopra: Manhattan-20111219-00589.jpg Good Morning from NYC http://t.co/eSq6SUf0\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:44 +0000", "from_user": "classifications", "from_user_id": 153653509, "from_user_id_str": "153653509", "from_user_name": "Stephanie ", "geo": null, "id": 148837183321669630, "id_str": "148837183321669632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1637484124/Picture_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637484124/Picture_1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SarahMShaker: Don't miss @edward_burns #NewlywedsMovie with your best girlfriends: http://t.co/H2Mn1aZS #NYC #film", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:41 +0000", "from_user": "raahmoreira", "from_user_id": 78390008, "from_user_id_str": "78390008", "from_user_name": "Raissa Moraes", "geo": null, "id": 148837170931707900, "id_str": "148837170931707905", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693844154/472628861-0785d30b5aedd3d8dd2532544f904d24.4ee94d98-scaled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693844154/472628861-0785d30b5aedd3d8dd2532544f904d24.4ee94d98-scaled_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Por que os outlets de NYC s\\u00E3o isolados na cidade, hein? VSF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:41 +0000", "from_user": "D_Morris804", "from_user_id": 31038773, "from_user_id_str": "31038773", "from_user_name": "Dee", "geo": null, "id": 148837170625523700, "id_str": "148837170625523712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694081643/381781_10100247961954207_15604004_45853198_1593665708_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694081643/381781_10100247961954207_15604004_45853198_1593665708_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Trying to book this NYC to see the fam after Christmas & all my cousins are either working or out of town", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:39 +0000", "from_user": "MigVicious", "from_user_id": 370823470, "from_user_id_str": "370823470", "from_user_name": "Miguel Vicioso", "geo": null, "id": 148837162467606530, "id_str": "148837162467606529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1629367803/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629367803/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @alanhahn: Davis pointed out how he always came to NYC to play at Rucker and always wanted to call the Garden home.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:39 +0000", "from_user": "switz_d_witz", "from_user_id": 354346655, "from_user_id_str": "354346655", "from_user_name": "Bolous Sobanks", "geo": null, "id": 148837161188339700, "id_str": "148837161188339712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700554819/edited_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700554819/edited_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "U don't av tym 4 d ish I was bringin up? :)......nyc 1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:38 +0000", "from_user": "AllAboutMarlene", "from_user_id": 340462633, "from_user_id_str": "340462633", "from_user_name": "Marlene Nguepnang", "geo": null, "id": 148837156985647100, "id_str": "148837156985647104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1672035164/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672035164/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#NYC here i come! #lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:36 +0000", "from_user": "MissVInc", "from_user_id": 328803541, "from_user_id_str": "328803541", "from_user_name": "MiSS V INC.", "geo": null, "id": 148837150367031300, "id_str": "148837150367031296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1636434928/6336027154_ee4a612293_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1636434928/6336027154_ee4a612293_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Back on it this Monday. Long weekend in NYC on 50 Cent Video production set. All 12 of our... http://t.co/h23xaY7S", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:35 +0000", "from_user": "JanetLFalk", "from_user_id": 28583359, "from_user_id_str": "28583359", "from_user_name": "Janet L. Falk", "geo": null, "id": 148837144952188930, "id_str": "148837144952188928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/137518079/Janet_Falk_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/137518079/Janet_Falk_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@NYCMayorsOffice SOURCE #Roosevelt Island has a history of scientific innovation & research http://t.co/283eSHoj #nyc", "to_user": "NYCMayorsOffice", "to_user_id": 55338739, "to_user_id_str": "55338739", "to_user_name": "NYC Mayor's Office", "in_reply_to_status_id": 148802401959292930, "in_reply_to_status_id_str": "148802401959292928"}, +{"created_at": "Mon, 19 Dec 2011 18:48:34 +0000", "from_user": "beccaaawest", "from_user_id": 310319523, "from_user_id_str": "310319523", "from_user_name": "Rebecca West", "geo": null, "id": 148837141575766000, "id_str": "148837141575766016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668384899/Picture0019_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668384899/Picture0019_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@Aamnichole @JelLaFurno @daicydisaster Just remember that I'm a total FOB when it comes to NYC - HAHAHA.", "to_user": "Aamnichole", "to_user_id": 236226195, "to_user_id_str": "236226195", "to_user_name": "Nichola Nichols", "in_reply_to_status_id": 148836797986775040, "in_reply_to_status_id_str": "148836797986775040"}, +{"created_at": "Mon, 19 Dec 2011 18:48:33 +0000", "from_user": "jasonlankow", "from_user_id": 12483772, "from_user_id_str": "12483772", "from_user_name": "Jason Lankow", "geo": null, "id": 148837139520569340, "id_str": "148837139520569345", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/559643851/photo1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/559643851/photo1_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "The Lord Gave To NYC Tech Start-Ups And Universities, And The Lord Hath Taken Away (@Forbes) http://t.co/T5WQJ19k", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:30 +0000", "from_user": "LizDiaz227", "from_user_id": 243840565, "from_user_id_str": "243840565", "from_user_name": "Elizabeth Diaz", "geo": null, "id": 148837125524176900, "id_str": "148837125524176896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1316676132/DSC02903_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1316676132/DSC02903_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@MicheleBell21 Loved the Vlog, we love going into NYC and never knew about the ferry! I agree, that does not look like your future hubby! ;", "to_user": "MicheleBell21", "to_user_id": 18042169, "to_user_id_str": "18042169", "to_user_name": "Michele"}, +{"created_at": "Mon, 19 Dec 2011 18:48:30 +0000", "from_user": "WeARENYC", "from_user_id": 305041486, "from_user_id_str": "305041486", "from_user_name": "WE R NYC", "geo": null, "id": 148837124072935420, "id_str": "148837124072935424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1368521381/nyc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1368521381/nyc_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @YelpNYC: Very cool! RT @sethbannon: The @Yelp best NYC grilled cheese tour continues. (@ The Smith Restaurant w/ 4 others) http://t.co/oIKG1Rvn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:28 +0000", "from_user": "emilymonroe13", "from_user_id": 50615949, "from_user_id_str": "50615949", "from_user_name": "Emily Simpson", "geo": null, "id": 148837115822735360, "id_str": "148837115822735360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681832255/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681832255/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @FANGORIA: Alex Winter's FREAKED and John Sayles genre flicks to screen in NYC http://t.co/BQeCpCZH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:25 +0000", "from_user": "JustJon", "from_user_id": 14165753, "from_user_id_str": "14165753", "from_user_name": "Jon", "geo": null, "id": 148837101876674560, "id_str": "148837101876674560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/919883216/Jon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/919883216/Jon_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @nickyyates: looking for a videographer for this wednesday. whacha got nyc?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:23 +0000", "from_user": "ArianaxAngel", "from_user_id": 348707023, "from_user_id_str": "348707023", "from_user_name": "Melike Grande .\\u2665", "geo": null, "id": 148837097573322750, "id_str": "148837097573322752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693249086/rna_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693249086/rna_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ArianaGrande: If you're coming to my show on December 28 at @IrvingPlaza in NYC and want to come meet me after, here's how: http://t.co/1w7eeLFq! xoxo RT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:23 +0000", "from_user": "paynic", "from_user_id": 221841834, "from_user_id_str": "221841834", "from_user_name": "Nicholas Payton", "geo": null, "id": 148837096902242300, "id_str": "148837096902242304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1605090227/Getty_Crop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1605090227/Getty_Crop_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @LaurietheDancer: @paynic The Black Nanny. This is something that @alternate_takes & I talk abt all the time in NYC. Black hands pushing white strollers...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:22 +0000", "from_user": "dhmuns", "from_user_id": 112571905, "from_user_id_str": "112571905", "from_user_name": "Darren Munson", "geo": null, "id": 148837092011687940, "id_str": "148837092011687937", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/705931090/Wheel__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/705931090/Wheel__1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "It seems narrow to think NYC is the only place with testing issues. http://t.co/0zrdV9vq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:20 +0000", "from_user": "joshingstern", "from_user_id": 33495086, "from_user_id_str": "33495086", "from_user_name": "Josh Stern", "geo": null, "id": 148837084055085060, "id_str": "148837084055085056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1606605134/Profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606605134/Profile_normal.jpg", "source": "<a href="http://favstar.fm" rel="nofollow">Favstar.FM</a>", "text": "My favorite NYC Subway game: looking at the train floor and trying to guess whose Loogie is tubercular", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:19 +0000", "from_user": "ValeeTomlinson", "from_user_id": 264940726, "from_user_id_str": "264940726", "from_user_name": "V\\u03B1l\\u0454\\u044F\\u03B9\\u03B1 E\\u0455p\\u03B9\\u0438oz\\u03B1 \\u2665", "geo": null, "id": 148837079340695550, "id_str": "148837079340695552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688043318/screen_shot_2011-09-22_at_11_53_21_pm_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688043318/screen_shot_2011-09-22_at_11_53_21_pm_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @Jackson_Harris: I'm kinda sad it hasn't snowed here in NYC. Was hoping for a fun white Christmas full of sledding and snowball fights!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:19 +0000", "from_user": "SilliG25", "from_user_id": 126355959, "from_user_id_str": "126355959", "from_user_name": "Chris Gillis", "geo": null, "id": 148837077474230270, "id_str": "148837077474230272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668247783/DSC_1638-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668247783/DSC_1638-1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "NYC ur one packed bitch ... O hate you", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:16 +0000", "from_user": "newfaceCEO", "from_user_id": 28429066, "from_user_id_str": "28429066", "from_user_name": "J. Yancy", "geo": null, "id": 148837066145415170, "id_str": "148837066145415168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695407442/back_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695407442/back_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "#dmv everyone is invading DC for #theeallblack on 1.15.12 NYC PA NJ DA 804 757 EVERYONE AND THEY MOMMA GONNA BE THERE !!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:11 +0000", "from_user": "URUMAMURU", "from_user_id": 250275455, "from_user_id_str": "250275455", "from_user_name": "DJ URUMA", "geo": null, "id": 148837047120044030, "id_str": "148837047120044032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1631908019/URUMAMURU_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631908019/URUMAMURU_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @TeddyKing: Just landed in NYC, thank you JAPAN for being one of the best trips of my life! The best place to play music is with you guys! Peace & Love", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:10 +0000", "from_user": "PageantNation", "from_user_id": 14255485, "from_user_id_str": "14255485", "from_user_name": "PageantNation", "geo": null, "id": 148837042825084930, "id_str": "148837042825084928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/52226761/Pageant_Planner_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/52226761/Pageant_Planner_normal.gif", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "If you live in the NYC area and are serious about exploring your craft then this Industry Deal is for you...and... http://t.co/KHgPA1MH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:10 +0000", "from_user": "crystalpadley", "from_user_id": 312148391, "from_user_id_str": "312148391", "from_user_name": "Crystal Padley", "geo": null, "id": 148837042158190600, "id_str": "148837042158190593", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1384558805/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1384558805/image_normal.jpg", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "RT @SPINmagazine The @YYYs are back! They performed this wknd in NYC at a benefit for DJ Jonathan Toubin.//yesss!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:09 +0000", "from_user": "Dutchdaisy777", "from_user_id": 249366570, "from_user_id_str": "249366570", "from_user_name": "David Quinn", "geo": null, "id": 148837035736702980, "id_str": "148837035736702976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1264746647/Dutch_flowers__2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1264746647/Dutch_flowers__2__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@foodcyclist nice going, I think by now you see you can't live in NYC anymore, you've been to the Golden State, find your spot,,Peace", "to_user": "foodcyclist", "to_user_id": 144872991, "to_user_id_str": "144872991", "to_user_name": "John Suscovich", "in_reply_to_status_id": 148818921636634620, "in_reply_to_status_id_str": "148818921636634624"}, +{"created_at": "Mon, 19 Dec 2011 18:48:08 +0000", "from_user": "ArianatorDutch", "from_user_id": 370296413, "from_user_id_str": "370296413", "from_user_name": "Anne Grande. \\u2665", "geo": null, "id": 148837034113499140, "id_str": "148837034113499136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696849077/472375163_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696849077/472375163_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ArianaGrande: If you're coming to my show on December 28 at @IrvingPlaza in NYC and want to come meet me after, here's how: http://t.co/1w7eeLFq! xoxo RT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:07 +0000", "from_user": "Mathfi_Jobs", "from_user_id": 59126679, "from_user_id_str": "59126679", "from_user_name": "Mathfi", "geo": null, "id": 148837026672807940, "id_str": "148837026672807936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/326427455/tweet-mathfi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/326427455/tweet-mathfi_normal.jpg", "source": "<a href="http://www.maths-fi.com/" rel="nofollow">MathsFi Twitt</a>", "text": "Job Top US Bank (New York-USA): Senior Counterparty Risk Manager.+ MSc/P... http://t.co/cHqz57YY Quant IB Finance jobs 90", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:06 +0000", "from_user": "jostarworld", "from_user_id": 48506875, "from_user_id_str": "48506875", "from_user_name": "jovon bryan", "geo": null, "id": 148837025682952200, "id_str": "148837025682952192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699499177/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699499177/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@LoveDrunkie: I wish I was in NYC right now.\\u201Dcome Join me", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:06 +0000", "from_user": "jeremiahdobruck", "from_user_id": 151295556, "from_user_id_str": "151295556", "from_user_name": "Jeremiah Dobruck", "geo": null, "id": 148837024105906180, "id_str": "148837024105906176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1321949474/jdobruckcrop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1321949474/jdobruckcrop_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "NYC's system for getting money from your council person is ridiculously complicated.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:03 +0000", "from_user": "OccupyWeather", "from_user_id": 400559295, "from_user_id_str": "400559295", "from_user_name": "Occupy Weather", "geo": null, "id": 148837012810629120, "id_str": "148837012810629121", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1612658667/ows_retreats_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612658667/ows_retreats_normal.jpg", "source": "<a href="http://24Ahead.com/" rel="nofollow">OccupyWeather</a>", "text": "Forecast for NYC Tuesday night: Rain. Low temp: 50F. #OWS #tlot #ocra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:02 +0000", "from_user": "OccupyWeather", "from_user_id": 400559295, "from_user_id_str": "400559295", "from_user_name": "Occupy Weather", "geo": null, "id": 148837006930231300, "id_str": "148837006930231296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1612658667/ows_retreats_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612658667/ows_retreats_normal.jpg", "source": "<a href="http://24Ahead.com/" rel="nofollow">OccupyWeather</a>", "text": "Forecast for NYC Tuesday: Rain. High temp: 52F. #OccupyWallSt #tcot #tpp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:00 +0000", "from_user": "Chi_baby05", "from_user_id": 82514392, "from_user_id_str": "82514392", "from_user_name": "Chioma Okoli", "geo": null, "id": 148836999539867650, "id_str": "148836999539867648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1663032197/330578332_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663032197/330578332_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Welp getting ready to leave NYC. Manhattan/Brooklyn you were GREAT to me! Much needed! Not ready to go back to Atlanta :'(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:00 +0000", "from_user": "LucyMathes", "from_user_id": 251350008, "from_user_id_str": "251350008", "from_user_name": "Lucy Mathes", "geo": null, "id": 148836998520639500, "id_str": "148836998520639488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697888958/388818_2751234983204_1327522276_3002019_1517446725_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697888958/388818_2751234983204_1327522276_3002019_1517446725_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Wish I could go to NYC over Christmas break like I did a couple years ago #somuchfun @brittanybeisner #twitterlessJulia", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:59 +0000", "from_user": "PerformerWebnr", "from_user_id": 61354258, "from_user_id_str": "61354258", "from_user_name": "PerformerWebinar", "geo": null, "id": 148836995995672580, "id_str": "148836995995672578", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/338703479/WebinarsNing_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/338703479/WebinarsNing_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "If you live in the NYC area and are serious about exploring your craft then this Industry Deal is for you...and... http://t.co/BVbpv94z", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:54 +0000", "from_user": "AllAboutMarlene", "from_user_id": 340462633, "from_user_id_str": "340462633", "from_user_name": "Marlene Nguepnang", "geo": null, "id": 148836974957047800, "id_str": "148836974957047809", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1672035164/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672035164/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "OMG! i want friday to be here already! going to #NYC for the #winter can't wait to see teh ball drop! #EXCITED", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:54 +0000", "from_user": "babyimfromny", "from_user_id": 311089466, "from_user_id_str": "311089466", "from_user_name": "mfk", "geo": null, "id": 148836972847308800, "id_str": "148836972847308802", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702139378/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702139378/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "So much warmer in dc than in back in NYC. Yayyy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:50 +0000", "from_user": "natalee11", "from_user_id": 40899032, "from_user_id_str": "40899032", "from_user_name": "natalee anderson", "geo": null, "id": 148836956170747900, "id_str": "148836956170747904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1665999184/twitter_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665999184/twitter_pic_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@DeltaAssist on 7p flight from JFK to atl tomorrow...what are odds I could get on a 4 or 5 flight out of NYC??", "to_user": "DeltaAssist", "to_user_id": 137460929, "to_user_id_str": "137460929", "to_user_name": "Delta Assist"}, +{"created_at": "Mon, 19 Dec 2011 18:47:49 +0000", "from_user": "HawthorneCEO", "from_user_id": 29453306, "from_user_id_str": "29453306", "from_user_name": "RoderickHawthorne II", "geo": null, "id": 148836953247318000, "id_str": "148836953247318016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1677794063/imagejpeg_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677794063/imagejpeg_2_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@PatWilliams_ Lmao hell yea NYC Best Seller Get Zane to publish it lol", "to_user": "PatWilliams_", "to_user_id": 43077094, "to_user_id_str": "43077094", "to_user_name": "Pat Williams ", "in_reply_to_status_id": 148836461737807870, "in_reply_to_status_id_str": "148836461737807872"}, +{"created_at": "Mon, 19 Dec 2011 18:47:49 +0000", "from_user": "thethirdday", "from_user_id": 19672529, "from_user_id_str": "19672529", "from_user_name": "Doug Yorke", "geo": null, "id": 148836953037602800, "id_str": "148836953037602816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1232125603/Noname_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1232125603/Noname_normal.jpg", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "Back in nyc. (@ EWR Terminal C w/ 9 others) http://t.co/f44QpVsD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:45 +0000", "from_user": "MyMansBelly", "from_user_id": 42077334, "from_user_id_str": "42077334", "from_user_name": "Pamela", "geo": null, "id": 148836934519762940, "id_str": "148836934519762945", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1661018300/Pam_Chocolate_Lip-Holiday_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661018300/Pam_Chocolate_Lip-Holiday_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@IanMakay You are too kind sir. xoxo Now I MUST get back to NYC.", "to_user": "IanMakay", "to_user_id": 231488894, "to_user_id_str": "231488894", "to_user_name": "Ian Makay", "in_reply_to_status_id": 148833331763613700, "in_reply_to_status_id_str": "148833331763613696"}, +{"created_at": "Mon, 19 Dec 2011 18:47:44 +0000", "from_user": "PRoducerlisaz", "from_user_id": 29601703, "from_user_id_str": "29601703", "from_user_name": "Elizabeth Zazueta", "geo": null, "id": 148836932825264130, "id_str": "148836932825264128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1486920865/Sam_and_Lisa-4817_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1486920865/Sam_and_Lisa-4817_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @jprpublicity: A #NYE soiree in #NYC, simultaneously swanky & a bit bawdy @BrooklynWinery! Secure a golden ticket now! http://t.co/cESWZui7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:41 +0000", "from_user": "BirdJob", "from_user_id": 335393409, "from_user_id_str": "335393409", "from_user_name": "Bird Job", "geo": null, "id": 148836917616709630, "id_str": "148836917616709632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1442418464/Twitter-for-job-Seekers_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1442418464/Twitter-for-job-Seekers_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#NY Sr. PM Needed! - CRM and Sales Analytics - NYC: New York City, My client, a top tier investmen... http://t.co/Ni5ogoPt #Project #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:39 +0000", "from_user": "temporalcube", "from_user_id": 97602509, "from_user_id_str": "97602509", "from_user_name": "Matt", "geo": null, "id": 148836909379100670, "id_str": "148836909379100672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1417713069/twitteravatar2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1417713069/twitteravatar2_normal.png", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "Oh, to continue: the drive from Vegas to NYC totaled a bit over 2550 miles and went through every time zone in the continental US.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:38 +0000", "from_user": "VilouxChicago", "from_user_id": 110879494, "from_user_id_str": "110879494", "from_user_name": "VILOUX\\u2122 :: Chicago", "geo": null, "id": 148836908888371200, "id_str": "148836908888371200", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/825457580/viloux-models-austin-tx-pics-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/825457580/viloux-models-austin-tx-pics-2_normal.jpg", "source": "<a href="http://www.viloux.com/" rel="nofollow">VILOUX</a>", "text": "Blank NYC Cargo Skinny http://t.co/qXEjsIIu (via @VILOUX)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:38 +0000", "from_user": "VERYGLOSSY", "from_user_id": 123940183, "from_user_id_str": "123940183", "from_user_name": "VERY GLOSSY", "geo": null, "id": 148836905977516030, "id_str": "148836905977516032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1021597157/VG_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1021597157/VG_normal.gif", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "IT'S HAPPENING: Like Cashmere? Like (the thought of) The Hamptons? Well, it's sample sale time, if you're in NYC! http://t.co/l2fDnBvz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:35 +0000", "from_user": "shaaaaron_", "from_user_id": 229936655, "from_user_id_str": "229936655", "from_user_name": "Aubrey's Queen", "geo": null, "id": 148836896099938300, "id_str": "148836896099938306", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701498997/shaaaaron__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701498997/shaaaaron__normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RTRTRT @LoveDrunkie: I wish I was in NYC right now.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:47:40 +0000", "from_user": "HUEMANBOOKS", "from_user_id": 44131286, "from_user_id_str": "44131286", "from_user_name": "HUE-MAN BOOKSTORE", "geo": null, "id": 148836915955773440, "id_str": "148836915955773440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/636134909/logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/636134909/logo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Dec 21 6-8pm You're Invited to Hue-Man Holidays Celebration w/Broadway Actress Saycon Sengbloh #NYC http://t.co/XPdgvl3m\\n(come & sing-along)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:39 +0000", "from_user": "temporalcube", "from_user_id": 97602509, "from_user_id_str": "97602509", "from_user_name": "Matt", "geo": null, "id": 148836909379100670, "id_str": "148836909379100672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1417713069/twitteravatar2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1417713069/twitteravatar2_normal.png", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "Oh, to continue: the drive from Vegas to NYC totaled a bit over 2550 miles and went through every time zone in the continental US.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:38 +0000", "from_user": "VilouxChicago", "from_user_id": 110879494, "from_user_id_str": "110879494", "from_user_name": "VILOUX\\u2122 :: Chicago", "geo": null, "id": 148836908888371200, "id_str": "148836908888371200", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/825457580/viloux-models-austin-tx-pics-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/825457580/viloux-models-austin-tx-pics-2_normal.jpg", "source": "<a href="http://www.viloux.com/" rel="nofollow">VILOUX</a>", "text": "Blank NYC Cargo Skinny http://t.co/qXEjsIIu (via @VILOUX)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:38 +0000", "from_user": "VERYGLOSSY", "from_user_id": 123940183, "from_user_id_str": "123940183", "from_user_name": "VERY GLOSSY", "geo": null, "id": 148836905977516030, "id_str": "148836905977516032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1021597157/VG_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1021597157/VG_normal.gif", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "IT'S HAPPENING: Like Cashmere? Like (the thought of) The Hamptons? Well, it's sample sale time, if you're in NYC! http://t.co/l2fDnBvz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:35 +0000", "from_user": "shaaaaron_", "from_user_id": 229936655, "from_user_id_str": "229936655", "from_user_name": "Aubrey's Queen", "geo": null, "id": 148836896099938300, "id_str": "148836896099938306", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701498997/shaaaaron__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701498997/shaaaaron__normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RTRTRT @LoveDrunkie: I wish I was in NYC right now.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:34 +0000", "from_user": "joseph_mayo", "from_user_id": 74653815, "from_user_id_str": "74653815", "from_user_name": "Joseph Mayo", "geo": +{"coordinates": [40.7703,-73.8641], "type": "Point"}, "id": 148836888181088260, "id_str": "148836888181088256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/713025030/ME_normal.bmp", "profile_image_url_https": "https://si0.twimg.com/profile_images/713025030/ME_normal.bmp", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Made it to LGA. Headed to taxis and on to NYC.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:29 +0000", "from_user": "redostoneage", "from_user_id": 28156710, "from_user_id_str": "28156710", "from_user_name": "Truth Tweeter", "geo": null, "id": 148836868165861380, "id_str": "148836868165861376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/661208289/get_fileCA9BVO04_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/661208289/get_fileCA9BVO04_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Gallup: Under Obama, Growing % See Big Government as 'Biggest Threat' http://t.co/Rvx44Jov #p2 #topprog #maddow #msnbc #cnn #npr #nyc #pbs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:29 +0000", "from_user": "waydonsexy", "from_user_id": 51600208, "from_user_id_str": "51600208", "from_user_name": "Waydon Destin", "geo": null, "id": 148836867767406600, "id_str": "148836867767406592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1128945011/26596_1434046974880_1344090040_2804602_1239461_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1128945011/26596_1434046974880_1344090040_2804602_1239461_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "finna make this move to NYC tonight... I hear my man @kendricklamar is playin a free show.. AYEEEE!!!!! #HiiiPower", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:29 +0000", "from_user": "nycfood", "from_user_id": 390396137, "from_user_id_str": "390396137", "from_user_name": "NYC Food", "geo": null, "id": 148836867490590720, "id_str": "148836867490590722", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1593358926/NYC_Food_Logo-Twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593358926/NYC_Food_Logo-Twitter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Let's keep the anti-obesity momentum going. More resources for helping kids eat healthy. http://t.co/Y5XWkEdH @nycHealthy @NYCSchools", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:29 +0000", "from_user": "masakit0421", "from_user_id": 190952564, "from_user_id_str": "190952564", "from_user_name": "Masa", "geo": null, "id": 148836867066970100, "id_str": "148836867066970113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1273531206/cat_heart_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273531206/cat_heart_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube video http://t.co/rAnR95hI Naked Music NYC - Live Today", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:28 +0000", "from_user": "cassykoh", "from_user_id": 79664267, "from_user_id_str": "79664267", "from_user_name": "Cassandra Koh", "geo": null, "id": 148836864177082370, "id_str": "148836864177082368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1165386341/gfh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1165386341/gfh_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TomCruise: Tom answers your questions at the NYC M:I-@GhostProtocol Premiere 2night! Submit your questions w/ #MissionNYC http://t.co/8FwxLVGC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:28 +0000", "from_user": "See_Mariee", "from_user_id": 384091664, "from_user_id_str": "384091664", "from_user_name": "Christina Marie", "geo": null, "id": 148836864118366200, "id_str": "148836864118366209", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1570332722/69486_1547761848139_1057839004_31572033_4597645_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1570332722/69486_1547761848139_1057839004_31572033_4597645_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#TwitterLies we know its NYC RT @CLG_Writes: Ive been all over the world and boston is deff one of the prettiest cities ive ever been in :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:27 +0000", "from_user": "lookupfolks", "from_user_id": 246380932, "from_user_id_str": "246380932", "from_user_name": "LookUpFolks", "geo": null, "id": 148836860301541380, "id_str": "148836860301541377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1452191546/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1452191546/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @redostoneage: Obama Victory! #Occupydenver trashes downtown civic center http://t.co/BBSiCW7i #ows #p2 #topprog #maddow #msnbc #cnn #nyc #npr #pbs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:26 +0000", "from_user": "__RickThaRuler", "from_user_id": 204010098, "from_user_id_str": "204010098", "from_user_name": "Scarface Montana ", "geo": null, "id": 148836855612309500, "id_str": "148836855612309504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697460783/CbVNMkIL_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697460783/CbVNMkIL_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@Wale @MeekMill show tonight!!!!!! Nyc best buy theater.", "to_user": "Wale", "to_user_id": 17929027, "to_user_id_str": "17929027", "to_user_name": "Wale Folarin "}, +{"created_at": "Mon, 19 Dec 2011 18:47:21 +0000", "from_user": "fashionideaz", "from_user_id": 243791334, "from_user_id_str": "243791334", "from_user_name": "Marko Azzioni", "geo": null, "id": 148836835722919940, "id_str": "148836835722919936", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1581514474/MW_cover_june_man_by_hollowone_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1581514474/MW_cover_june_man_by_hollowone_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "#FashionNews @orla_kiely opens #NYC flagship store http://t.co/xdlXr2wl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:20 +0000", "from_user": "LoveDrunkie", "from_user_id": 33662801, "from_user_id_str": "33662801", "from_user_name": "Nina Marie\\uE10E", "geo": null, "id": 148836831104991230, "id_str": "148836831104991232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693811068/471111101_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693811068/471111101_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I wish I was in NYC right now.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:19 +0000", "from_user": "rooftotable", "from_user_id": 345310816, "from_user_id_str": "345310816", "from_user_name": "Rob Stephenson", "geo": null, "id": 148836825895669760, "id_str": "148836825895669760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1469122037/11pu_phoenixgarden_529x350_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1469122037/11pu_phoenixgarden_529x350_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Great talk with Eli Zabar, @HeyAnnieNovak and Joe Nasur, carrot city co author, on the state of agriculture in NYC on @wnyc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:18 +0000", "from_user": "JU_lOVEMEE", "from_user_id": 426830215, "from_user_id_str": "426830215", "from_user_name": "Julie Malone", "geo": null, "id": 148836823429431300, "id_str": "148836823429431296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670094875/K6z9FLM1_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670094875/K6z9FLM1_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@tweetsfrom_ang nyc?!!", "to_user": "tweetsfrom_ang", "to_user_id": 59572545, "to_user_id_str": "59572545", "to_user_name": "Angela Ocasio", "in_reply_to_status_id": 148836644617850880, "in_reply_to_status_id_str": "148836644617850880"}, +{"created_at": "Mon, 19 Dec 2011 18:47:18 +0000", "from_user": "TheRealG5Gi", "from_user_id": 390868177, "from_user_id_str": "390868177", "from_user_name": "Sean Corey", "geo": null, "id": 148836822158557200, "id_str": "148836822158557184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700715599/030_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700715599/030_copy_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @caliFAWNia: Lol lemme c what I can do! \"@TheRealG5Gi: now only if @caliFAWNia can put a nYc nigga down on getting a @DJmustard beat!!\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:17 +0000", "from_user": "CandyBear1196", "from_user_id": 405915192, "from_user_id_str": "405915192", "from_user_name": "Candy A. ", "geo": null, "id": 148836819004424200, "id_str": "148836819004424192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1624539413/Mostly_me_051__3__normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624539413/Mostly_me_051__3__normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@_1DirectionUSA because there's more people in places like Dallas, NYC, and LA.", "to_user": "_1DirectionUSA", "to_user_id": 261747904, "to_user_id_str": "261747904", "to_user_name": "Lejla", "in_reply_to_status_id": 148835535228641280, "in_reply_to_status_id_str": "148835535228641281"}, +{"created_at": "Mon, 19 Dec 2011 18:47:16 +0000", "from_user": "tiffanywc", "from_user_id": 44802616, "from_user_id_str": "44802616", "from_user_name": "Tiffany", "geo": null, "id": 148836814277451780, "id_str": "148836814277451776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693833572/IMG_0547_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693833572/IMG_0547_normal.JPG", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "Hungry. #nyc #squirrel #park @ Madison Square Park http://t.co/ZIGr1pa5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:16 +0000", "from_user": "NikasTweets", "from_user_id": 24474625, "from_user_id_str": "24474625", "from_user_name": "Nika Rastakhiz", "geo": null, "id": 148836813186936830, "id_str": "148836813186936832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1562403444/boat_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1562403444/boat_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@irma_penunuri I live in nyc now! How are you? Any GPs as of late?", "to_user": "irma_penunuri", "to_user_id": 26456024, "to_user_id_str": "26456024", "to_user_name": "Irma Miriam Pe\\u00F1u\\u00F1uri", "in_reply_to_status_id": 148833906932715520, "in_reply_to_status_id_str": "148833906932715521"}, +{"created_at": "Mon, 19 Dec 2011 18:47:15 +0000", "from_user": "_ARos_", "from_user_id": 221426783, "from_user_id_str": "221426783", "from_user_name": "Ros", "geo": null, "id": 148836811010093060, "id_str": "148836811010093058", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1609575086/Bandana_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609575086/Bandana_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@luvmyass77 Will do. I'll be there in NYC in January.", "to_user": "luvmyass77", "to_user_id": 426196788, "to_user_id_str": "426196788", "to_user_name": "Sarah ", "in_reply_to_status_id": 148836597096382460, "in_reply_to_status_id_str": "148836597096382464"}, +{"created_at": "Mon, 19 Dec 2011 18:47:14 +0000", "from_user": "TomSchryver", "from_user_id": 20740042, "from_user_id_str": "20740042", "from_user_name": "Tom Schryver", "geo": null, "id": 148836807591735300, "id_str": "148836807591735296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/461357210/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/461357210/avatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Congrats to Cornell for winning the NYC tech campus over the Leland Stanford \"you can't fire us because we quit\" Junior University!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:14 +0000", "from_user": "David_Architect", "from_user_id": 45948763, "from_user_id_str": "45948763", "from_user_name": "David Hansen", "geo": null, "id": 148836804550869000, "id_str": "148836804550868992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1180378561/Dave-profile1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1180378561/Dave-profile1_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "Making the Most of Smaller Spaces http://t.co/gh3ocleu #greenbuilding #modern #design #nyc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:13 +0000", "from_user": "Len_smoothtalka", "from_user_id": 346447798, "from_user_id_str": "346447798", "from_user_name": "leonard mangani zulu", "geo": null, "id": 148836801728086000, "id_str": "148836801728086016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670121644/lenn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670121644/lenn_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SoLavvs_Rihanna sup,nyc pic..r they real? lol!", "to_user": "SoLavvs_Rihanna", "to_user_id": 253332117, "to_user_id_str": "253332117", "to_user_name": "Catherine Fenty"}, +{"created_at": "Mon, 19 Dec 2011 18:47:13 +0000", "from_user": "bull1tz", "from_user_id": 154604447, "from_user_id_str": "154604447", "from_user_name": "Mitchell", "geo": null, "id": 148836800125866000, "id_str": "148836800125865984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1506771008/BUSINESSS_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1506771008/BUSINESSS_normal.jpg", "source": "<a href="http://tweetmeme.com" rel="nofollow">TweetMeme</a>", "text": "Cops: Woman burned in NYC elevator over $2K Link Chronicle http://t.co/JLIKZtWM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:10 +0000", "from_user": "TMStreetAnalyst", "from_user_id": 282100036, "from_user_id_str": "282100036", "from_user_name": "Main Street Analyst", "geo": null, "id": 148836789052907520, "id_str": "148836789052907520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1347643962/TheMainStreetAnalystMaxus1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1347643962/TheMainStreetAnalystMaxus1_normal.png", "source": "<a href="http://www.visibli.com" rel="nofollow">Visibli</a>", "text": "R&L IT & Telecom Consultants, NYC Video Conferencing. Desktop Equipment Relocation, Voice and Data http://t.co/1yNfSnPg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:10 +0000", "from_user": "CTphats", "from_user_id": 46116313, "from_user_id_str": "46116313", "from_user_name": "chris travers", "geo": null, "id": 148836788352458750, "id_str": "148836788352458752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680241037/331091409_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680241037/331091409_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "It's a lock...NYC is the NYE move", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:10 +0000", "from_user": "SUPERSTARMIX", "from_user_id": 94373057, "from_user_id_str": "94373057", "from_user_name": "Marco Santaniello", "geo": null, "id": 148836786636996600, "id_str": "148836786636996610", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662019978/ME-NEW-SITO_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662019978/ME-NEW-SITO_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Hi @MilkStudios :D #NYC #manhattan http://t.co/e4Zyldug", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:08 +0000", "from_user": "samanthagross", "from_user_id": 18149894, "from_user_id_str": "18149894", "from_user_name": "Samantha Gross", "geo": null, "id": 148836780278427650, "id_str": "148836780278427648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1296267355/profilepic_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1296267355/profilepic_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Ex-operative Haggerty to return $750k to Mayor @MikeBloomberg and spend up to 4 yrs in prison, via @jennpeltz @AP http://t.co/Q5UWUD1M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:06 +0000", "from_user": "Ty_gibson21", "from_user_id": 411815714, "from_user_id_str": "411815714", "from_user_name": "Ty Gibson", "geo": null, "id": 148836772820942850, "id_str": "148836772820942848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700651347/314041_208427139220033_100001582464864_583435_7691870_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700651347/314041_208427139220033_100001582464864_583435_7691870_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "NYC is that motha fu**ing city", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:02 +0000", "from_user": "alexdao", "from_user_id": 14620139, "from_user_id_str": "14620139", "from_user_name": "Alexandra Dao", "geo": null, "id": 148836757306216450, "id_str": "148836757306216448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1517854769/alex_black_and_white_prints_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517854769/alex_black_and_white_prints_normal", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@safesolvent Would love to! Lemme know when you're in NYC again. :)", "to_user": "safesolvent", "to_user_id": 14634291, "to_user_id_str": "14634291", "to_user_name": "Martin Reisch", "in_reply_to_status_id": 148835528106709000, "in_reply_to_status_id_str": "148835528106708992"}, +{"created_at": "Mon, 19 Dec 2011 18:47:02 +0000", "from_user": "jimarmstrong_", "from_user_id": 32546306, "from_user_id_str": "32546306", "from_user_name": "Jim Armstrong", "geo": null, "id": 148836754936442880, "id_str": "148836754936442881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1397203445/Fish_Picture_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1397203445/Fish_Picture_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@meritayl - buffalo was amazing, you truly missed out - people are nicer than nyc folk & niagara falls trumps the east river any day", "to_user": "meritayl", "to_user_id": 22996779, "to_user_id_str": "22996779", "to_user_name": "Meri T."}, +{"created_at": "Mon, 19 Dec 2011 18:47:00 +0000", "from_user": "ShellsN2sprts", "from_user_id": 258588444, "from_user_id_str": "258588444", "from_user_name": "Ashelle B", "geo": null, "id": 148836749295099900, "id_str": "148836749295099904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1694036912/Events14_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694036912/Events14_normal.JPG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@SuchALibra what is this about NYC? What is boy genius doing in NYC? You know Jordan is my dude", "to_user": "SuchALibra", "to_user_id": 174492144, "to_user_id_str": "174492144", "to_user_name": "Ms. King", "in_reply_to_status_id": 148827998479589380, "in_reply_to_status_id_str": "148827998479589378"}, +{"created_at": "Mon, 19 Dec 2011 18:47:00 +0000", "from_user": "jsuchoff", "from_user_id": 183002366, "from_user_id_str": "183002366", "from_user_name": "Jordan Suchoff", "geo": null, "id": 148836748456243200, "id_str": "148836748456243202", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1304545540/IMG00088-20110324-2306_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1304545540/IMG00088-20110324-2306_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Not many views better than coming over the GW bridge and seeing the NYC skyline. #tec", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:00 +0000", "from_user": "BiGMERF", "from_user_id": 16753365, "from_user_id_str": "16753365", "from_user_name": "Android Junky ", "geo": null, "id": 148836745650241540, "id_str": "148836745650241536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1671356296/e8dc8f1a-b51f-4c9e-9c1b-2ca3b64be895_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671356296/e8dc8f1a-b51f-4c9e-9c1b-2ca3b64be895_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@wimbet many on xda reporting shipping emails since st night. Also reporting NYC stores got them toy #transformerprime", "to_user": "wimbet", "to_user_id": 14318328, "to_user_id_str": "14318328", "to_user_name": "Taylor Wimberly"}, +{"created_at": "Mon, 19 Dec 2011 18:46:57 +0000", "from_user": "rahmaidaqilah", "from_user_id": 296597407, "from_user_id_str": "296597407", "from_user_name": "aqilah rahmaida", "geo": null, "id": 148836736238239740, "id_str": "148836736238239747", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1692458116/P06-01-11_13.57_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692458116/P06-01-11_13.57_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "RT @DanKimRedMango: It's a beautiful day in New York City. #instagram #nyc http://t.co/p20wOVu6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:56 +0000", "from_user": "rschulteison7", "from_user_id": 18678121, "from_user_id_str": "18678121", "from_user_name": "Ryan Schulteis", "geo": null, "id": 148836729309245440, "id_str": "148836729309245441", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1556543119/twiittter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1556543119/twiittter_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Awesome view of NYC! http://t.co/atOpXuEW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:49 +0000", "from_user": "iSlapFATHoes__", "from_user_id": 386012342, "from_user_id_str": "386012342", "from_user_name": "Alicia Jarriah \\u2661", "geo": null, "id": 148836703275204600, "id_str": "148836703275204608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700292413/zkN7D30j_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700292413/zkN7D30j_normal", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "= . = feel like driving to NYC real soon. It'd be cool if I had someone to vibe with.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:49 +0000", "from_user": "karenjeynes", "from_user_id": 23357829, "from_user_id_str": "23357829", "from_user_name": "Karen Jeynes", "geo": null, "id": 148836702566359040, "id_str": "148836702566359040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675680634/christmaspiglet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675680634/christmaspiglet_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@simonwillo @magicmike1313 @TheOfficialJMG gentlefolk, were I to find myself in NYC in May, might any of you have a spare couch?", "to_user": "simonwillo", "to_user_id": 19868489, "to_user_id_str": "19868489", "to_user_name": "Simon Williamson"}, +{"created_at": "Mon, 19 Dec 2011 18:46:46 +0000", "from_user": "LaurietheDancer", "from_user_id": 129020981, "from_user_id_str": "129020981", "from_user_name": "Laurie M. Taylor", "geo": null, "id": 148836686934183940, "id_str": "148836686934183937", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1475941491/laurie_038-smaller_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1475941491/laurie_038-smaller_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@paynic The Black Nanny. This is something that @alternate_takes & I talk abt all the time in NYC. Black hands pushing white strollers...", "to_user": "paynic", "to_user_id": 221841834, "to_user_id_str": "221841834", "to_user_name": "Nicholas Payton"}, +{"created_at": "Mon, 19 Dec 2011 18:46:45 +0000", "from_user": "WhatHappensInZ", "from_user_id": 87029077, "from_user_id_str": "87029077", "from_user_name": "WhatHappensInZrce", "geo": null, "id": 148836684136583170, "id_str": "148836684136583168", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1125301496/59035_1541789699126_1066469099_1499713_5438565_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1125301496/59035_1541789699126_1066469099_1499713_5438565_n_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Avicii - Levels (Cazzette NYC Mode Bootleg Radio Edit) [HD] http://t.co/uWGNbdX4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:43 +0000", "from_user": "couchsessions", "from_user_id": 17630644, "from_user_id_str": "17630644", "from_user_name": "The Couch Sessions", "geo": null, "id": 148836675949314050, "id_str": "148836675949314048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683023085/gravitystone_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683023085/gravitystone_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "READ THIS! READER BEST OF 2011: @JoseRMejia - \\u00A0 Name: Jose Location: NYC Website: Largetail Follow on Twitter Kanye ... http://t.co/141LTGmY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:42 +0000", "from_user": "JanetLFalk", "from_user_id": 28583359, "from_user_id_str": "28583359", "from_user_name": "Janet L. Falk", "geo": null, "id": 148836673462083600, "id_str": "148836673462083584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/137518079/Janet_Falk_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/137518079/Janet_Falk_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@juliewood SOURCE #Roosevelt Island has a history of scientific innovation & research http://t.co/283eSHoj #nyc", "to_user": "juliewood", "to_user_id": 15949714, "to_user_id_str": "15949714", "to_user_name": "Julie Wood"}, +{"created_at": "Mon, 19 Dec 2011 18:46:42 +0000", "from_user": "NYSportzNut", "from_user_id": 91021043, "from_user_id_str": "91021043", "from_user_name": "Lou Bolkovic", "geo": null, "id": 148836672849707000, "id_str": "148836672849707008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1116387987/IMG00001-20100806-1534_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1116387987/IMG00001-20100806-1534_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@matthewcerrone I took my 9 month old to Macys in NYC", "to_user": "matthewcerrone", "to_user_id": 15025802, "to_user_id_str": "15025802", "to_user_name": "Matthew Cerrone", "in_reply_to_status_id": 148836324428873730, "in_reply_to_status_id_str": "148836324428873728"}, +{"created_at": "Mon, 19 Dec 2011 18:46:41 +0000", "from_user": "craigfleishman", "from_user_id": 26006157, "from_user_id_str": "26006157", "from_user_name": "Craig Fleishman", "geo": null, "id": 148836669326499840, "id_str": "148836669326499840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1472688851/twitter4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1472688851/twitter4_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @cornellsun: 2:30 today: Bloomberg will announce Cornell won the NYC tech campus competition. Check @cornellsun for live tweets of the event.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:39 +0000", "from_user": "veronica_ladiva", "from_user_id": 41898423, "from_user_id_str": "41898423", "from_user_name": "Veronica Paredes", "geo": null, "id": 148836658517782530, "id_str": "148836658517782528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1680394385/image201112050001_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680394385/image201112050001_normal.jpg", "source": "<a href="http://www.likemytweets.com/" rel="nofollow">Like My Tweets</a>", "text": "Just saw some awesome artifacts at the nyc public library [Like it? http://t.co/etG2Brjl ]", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:38 +0000", "from_user": "RudePacMan", "from_user_id": 110285629, "from_user_id_str": "110285629", "from_user_name": "\\u2714 Verified Stoner", "geo": null, "id": 148836656403853300, "id_str": "148836656403853314", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1494092421/social_elite_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1494092421/social_elite_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "#Shoutout to my tattoo artist Shante from NYC. She in GA now bout to ink me some more", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:38 +0000", "from_user": "marcirenee23", "from_user_id": 391109125, "from_user_id_str": "391109125", "from_user_name": "marci g", "geo": null, "id": 148836654810005500, "id_str": "148836654810005504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1661170112/aFiMDn14_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661170112/aFiMDn14_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "NYC bound", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:38 +0000", "from_user": "UnicornMeatNYC", "from_user_id": 325962987, "from_user_id_str": "325962987", "from_user_name": "Unicorn Meat", "geo": null, "id": 148836653522366460, "id_str": "148836653522366464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1418322333/bubble-kingdom_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1418322333/bubble-kingdom_normal.jpg", "source": "<a href="http://www.mailchimp.com" rel="nofollow">MailChimp</a>", "text": "Largest Warehouse Party in NYC for New Years Eve - http://t.co/dI0bNfwG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:37 +0000", "from_user": "VilliersIV", "from_user_id": 280634596, "from_user_id_str": "280634596", "from_user_name": "Ordell Robbie", "geo": null, "id": 148836649768452100, "id_str": "148836649768452096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1688324250/7319490e22df11e1a87612313804ec91_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688324250/7319490e22df11e1a87612313804ec91_7_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Goodbye NYC, be back for new years http://t.co/fWufzLvr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:37 +0000", "from_user": "lkl71111", "from_user_id": 26371685, "from_user_id_str": "26371685", "from_user_name": "Noel Noel", "geo": null, "id": 148836649676189700, "id_str": "148836649676189696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1408960549/130880036055988_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1408960549/130880036055988_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@iAmRozayMylan ahhhhh i didnt know u were in nyc? where u there last weekend when i was? booooooo. im in miami now.", "to_user": "iAmRozayMylan", "to_user_id": 394079360, "to_user_id_str": "394079360", "to_user_name": "Rozay Mylan ", "in_reply_to_status_id": 148834307941740540, "in_reply_to_status_id_str": "148834307941740544"}, +{"created_at": "Mon, 19 Dec 2011 18:46:36 +0000", "from_user": "OhMyDarling118", "from_user_id": 230894910, "from_user_id_str": "230894910", "from_user_name": "Maria Darling", "geo": null, "id": 148836646685655040, "id_str": "148836646685655040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1655599116/111123-205634_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655599116/111123-205634_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "just bumped into a lady with a cane.. lmao #oops #nyc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:35 +0000", "from_user": "iphoneapps4", "from_user_id": 235133728, "from_user_id_str": "235133728", "from_user_name": "Mary Bowling", "geo": null, "id": 148836643552505860, "id_str": "148836643552505857", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1209184602/iphone-girl_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1209184602/iphone-girl_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Best NYC iPhone Apps - CheapOair (blog) http://t.co/GRw7qZpG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:35 +0000", "from_user": "rapenays", "from_user_id": 138601047, "from_user_id_str": "138601047", "from_user_name": "Ramon Antonio Pe\\u00F1a", "geo": null, "id": 148836641304350720, "id_str": "148836641304350720", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1683290966/IMG01677-20111126-1915_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683290966/IMG01677-20111126-1915_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "yo los conosco es que cantan bien men..@Raemcito Cooomo Pero La Masa Tipica, unos muchachos de aqui de #SPM0.23 estan picando bien en NYC!", "to_user": "Raemcito", "to_user_id": 48536068, "to_user_id_str": "48536068", "to_user_name": "Raem Cambero", "in_reply_to_status_id": 148836215674781700, "in_reply_to_status_id_str": "148836215674781696"}, +{"created_at": "Mon, 19 Dec 2011 18:46:34 +0000", "from_user": "carolrubiao", "from_user_id": 78496462, "from_user_id_str": "78496462", "from_user_name": "Carolina Rubiao", "geo": null, "id": 148836640025083900, "id_str": "148836640025083905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692075494/303812_2547500764026_1149006853_33080088_1548039195_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692075494/303812_2547500764026_1149006853_33080088_1548039195_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@alinagow94 NYC. :') send pictures!", "to_user": "alinagow94", "to_user_id": 30479389, "to_user_id_str": "30479389", "to_user_name": "Alina Myer", "in_reply_to_status_id": 148826828168114180, "in_reply_to_status_id_str": "148826828168114177"}, +{"created_at": "Mon, 19 Dec 2011 18:46:31 +0000", "from_user": "ChrissPerezz", "from_user_id": 283848981, "from_user_id_str": "283848981", "from_user_name": "Chris Perez", "geo": null, "id": 148836626091606000, "id_str": "148836626091606016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1629497023/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629497023/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@LouisArtisan once you said you were falling about nyc not nys I was like, lol idc, cus I havent been there n dont care if I do.DoesLookNice", "to_user": "LouisArtisan", "to_user_id": 58723308, "to_user_id_str": "58723308", "to_user_name": "L.A.", "in_reply_to_status_id": 148836182908874750, "in_reply_to_status_id_str": "148836182908874752"}, +{"created_at": "Mon, 19 Dec 2011 18:46:21 +0000", "from_user": "theMichaelShane", "from_user_id": 18650289, "from_user_id_str": "18650289", "from_user_name": "Michael Shane", "geo": null, "id": 148836585197142000, "id_str": "148836585197142016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/791572226/mechillin_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/791572226/mechillin_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@droobloo ha in NYC mine change by the minute", "to_user": "droobloo", "to_user_id": 90983898, "to_user_id_str": "90983898", "to_user_name": "Alain Metz", "in_reply_to_status_id": 148836368192249860, "in_reply_to_status_id_str": "148836368192249856"}, +{"created_at": "Mon, 19 Dec 2011 18:46:20 +0000", "from_user": "KellySchwark", "from_user_id": 16831745, "from_user_id_str": "16831745", "from_user_name": "KellySchwark", "geo": null, "id": 148836581359353860, "id_str": "148836581359353857", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1640933164/NASAtweetup.005_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640933164/NASAtweetup.005_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @bethbeck: Job announcement: Chief Educator for Intrepid Air & Space Museum in NYC http://t.co/mKqf4Qww", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:20 +0000", "from_user": "mycityway", "from_user_id": 124645060, "from_user_id_str": "124645060", "from_user_name": "MyCityWay", "geo": null, "id": 148836577588678660, "id_str": "148836577588678656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1574338619/twitterProfile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1574338619/twitterProfile_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Shop 'Til You Drop in #NYC: 18 Tips That Will Help You Save Big This Holiday Season http://t.co/RAGrMjr7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:19 +0000", "from_user": "ModelWorldBlog", "from_user_id": 327378411, "from_user_id_str": "327378411", "from_user_name": "Beauty Is Fashion", "geo": null, "id": 148836575386681340, "id_str": "148836575386681344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699766547/New_ModelWorld_Logo_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699766547/New_ModelWorld_Logo_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "BGLH Forum Meetup in NYC: The BGLH Forum\\u2018s New York City Naturals group met up two weekends ago ... http://t.co/YSLgHrKX #ModelWorld2011", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:17 +0000", "from_user": "saschasokolovic", "from_user_id": 324173247, "from_user_id_str": "324173247", "from_user_name": "sarah sokolovic", "geo": null, "id": 148836565945298940, "id_str": "148836565945298945", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1430954213/sarah1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1430954213/sarah1_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @jjkeyes: NYC Glitterati Celebrate Ziggy Stardust At Bowieball / Queerty http://t.co/RS1xdj8Q via @queerty #bowieball @derycktodd @ladyrizo #GlamRock", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:17 +0000", "from_user": "antupaul", "from_user_id": 436913650, "from_user_id_str": "436913650", "from_user_name": "Antu Paul (Bablu)", "geo": null, "id": 148836565878190080, "id_str": "148836565878190080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699677440/por._normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699677440/por._normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@SrishtiM very nyc :)", "to_user": "SrishtiM", "to_user_id": 131416289, "to_user_id_str": "131416289", "to_user_name": "Srishti Mathur", "in_reply_to_status_id": 148835853765050370, "in_reply_to_status_id_str": "148835853765050369"}, +{"created_at": "Mon, 19 Dec 2011 18:46:16 +0000", "from_user": "IsoscelesDream", "from_user_id": 193142803, "from_user_id_str": "193142803", "from_user_name": "Isosceles", "geo": null, "id": 148836562594054140, "id_str": "148836562594054144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1127957897/tiny_pink_purple_bouquet_Background_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1127957897/tiny_pink_purple_bouquet_Background_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "Imagine New York City! http://t.co/cYjFD3DK #NYC #Imagine", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:15 +0000", "from_user": "trishaclarkin", "from_user_id": 32855469, "from_user_id_str": "32855469", "from_user_name": "Trisha Clarkin", "geo": null, "id": 148836559557369860, "id_str": "148836559557369857", "iso_language_code": "hu", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1415398337/trisha_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1415398337/trisha_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "RT @PatoPaez: Kenny's #streetart #nyc http://t.co/7jVV4Lpa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:15 +0000", "from_user": "_Gemma325", "from_user_id": 52025991, "from_user_id_str": "52025991", "from_user_name": "Gemma", "geo": null, "id": 148836558991147000, "id_str": "148836558991147008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1607464845/P1030046_-_Copy_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607464845/P1030046_-_Copy_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TomCruise: Tom answers your questions at the NYC M:I-@GhostProtocol Premiere 2night! Submit your questions w/ #MissionNYC http://t.co/8FwxLVGC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:14 +0000", "from_user": "AjStrick301", "from_user_id": 22565087, "from_user_id_str": "22565087", "from_user_name": "ANTHONY STRICKLAND", "geo": null, "id": 148836556105465860, "id_str": "148836556105465856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693928707/331514253-500x500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693928707/331514253-500x500_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for iPhone</a>", "text": "@DonnieBoi09 that don't mean a thing I ain't ballin... U the ballet goin up NYC and all", "to_user": "DonnieBoi09", "to_user_id": 36437677, "to_user_id_str": "36437677", "to_user_name": "donte walker", "in_reply_to_status_id": 148552109502115840, "in_reply_to_status_id_str": "148552109502115840"}, +{"created_at": "Mon, 19 Dec 2011 18:46:14 +0000", "from_user": "topresources", "from_user_id": 435398496, "from_user_id_str": "435398496", "from_user_name": "AUSTIN JOHN", "geo": null, "id": 148836555803467780, "id_str": "148836555803467776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1690031333/1640-New-3C_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690031333/1640-New-3C_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Billboard News: Ever since Darren Criss surged into public consciousness last year on \"Glee\\u2026 http://t.co/c5dT1GAP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:14 +0000", "from_user": "IndiirAlba", "from_user_id": 111800048, "from_user_id_str": "111800048", "from_user_name": "IndiirAlba", "geo": null, "id": 148836555535024130, "id_str": "148836555535024130", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693792630/DSC_1864_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693792630/DSC_1864_normal.JPG", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Buen viaje! Me trae chocolat RT @AlberthMoscoso: NYC all\\u00E1 voy #FelizNavidad RD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:14 +0000", "from_user": "jizufipu", "from_user_id": 408892476, "from_user_id_str": "408892476", "from_user_name": "Jumana Gwatkins", "geo": null, "id": 148836554243186700, "id_str": "148836554243186689", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1631278774/1008_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631278774/1008_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "aqueduct racetrack casino nyc http://t.co/Pj4HUXqP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:13 +0000", "from_user": "VST69tomyclik", "from_user_id": 125688175, "from_user_id_str": "125688175", "from_user_name": "TOM VST\\u266B ", "geo": null, "id": 148836548966752260, "id_str": "148836548966752257", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1185521772/oneHalfREB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1185521772/oneHalfREB_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @I_LOVE_NY: Great list ! RT @newyorkology Added @HughOnBroadway & @MammaMiaMusical to the list of What's open December 25th in NYC http://t.co/67t7r7wN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:13 +0000", "from_user": "SayWTF_iWant", "from_user_id": 27364418, "from_user_id_str": "27364418", "from_user_name": "Welcome 2 The Jungle", "geo": null, "id": 148836548668952580, "id_str": "148836548668952576", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1658924795/SayWTF_iWant_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658924795/SayWTF_iWant_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Niggas in NYC \\uD83D\\uDDFD\\uD83D\\uDDFD\\uD83D\\uDDFD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:11 +0000", "from_user": "Edubb3010", "from_user_id": 339977666, "from_user_id_str": "339977666", "from_user_name": "Eric Henderson", "geo": null, "id": 148836543698714620, "id_str": "148836543698714625", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1454522965/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1454522965/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I love Vegas.. but paying $250 to stand in one spot and not move on New years.... naw.. i' pass....NYC is more like it", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:11 +0000", "from_user": "BestMompreneur", "from_user_id": 146882679, "from_user_id_str": "146882679", "from_user_name": "Nancy Zazzaro", "geo": null, "id": 148836541857402880, "id_str": "148836541857402881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695271909/DSC00013_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695271909/DSC00013_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Midtown Hotel NYC 50% Savings http://t.co/1J5QfL3Z via @LivingSocial", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:09 +0000", "from_user": "kevinplusw", "from_user_id": 158877938, "from_user_id_str": "158877938", "from_user_name": "Kevin Wong", "geo": null, "id": 148836535574339600, "id_str": "148836535574339584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1324157753/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1324157753/Untitled_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @AccidentalCity: Interesting thoughts from @JohnToryShow on why Toronto is more diverse than NYC (via @CivicActionGTA) http://t.co/120JTGYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:09 +0000", "from_user": "Vita_Perfume", "from_user_id": 41026506, "from_user_id_str": "41026506", "from_user_name": "Vita ", "geo": null, "id": 148836532441190400, "id_str": "148836532441190401", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681845715/Vita_Perfume_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681845715/Vita_Perfume_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Trip to NYC Weds...I can't wait!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:08 +0000", "from_user": "Ms_Chinazor", "from_user_id": 21345016, "from_user_id_str": "21345016", "from_user_name": "Stephanie A.", "geo": null, "id": 148836528746012670, "id_str": "148836528746012672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699243551/331632266_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699243551/331632266_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Lol, e nwero nsogbu RT @ChikaBakasi: Nne bring me back some gala RT @Ms_Chinazor: Enroute NYC!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:07 +0000", "from_user": "Nuryhun", "from_user_id": 440339962, "from_user_id_str": "440339962", "from_user_name": "Nurcelle Seya", "geo": null, "id": 148836525956796400, "id_str": "148836525956796416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701693268/_E2_9C_BD_CC_88_CC_A4_CC_8A_CC_A5_E2_80_8E_E2_8C_A3_CC_8A_E2_94_88_CC_A5-_CC_B6_CC_AF_CD_A1_C2_BB_CC_B6_CC_A5_C2_BB_C2_B7_CC_B5_CC_8CM_Zz_20NuR_C2_A5_E2_9C_BD_CC_88_CC_A4_CC_8A_CC_A5_E2_80_8E_E2_8C_A3_CC_8A_E2_94_88_CC_A5-_CC_B6_CC_AF_CD_A1_C2_BB_CC_B6_CC_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701693268/_E2_9C_BD_CC_88_CC_A4_CC_8A_CC_A5_E2_80_8E_E2_8C_A3_CC_8A_E2_94_88_CC_A5-_CC_B6_CC_AF_CD_A1_C2_BB_CC_B6_CC_A5_C2_BB_C2_B7_CC_B5_CC_8CM_Zz_20NuR_C2_A5_E2_9C_BD_CC_88_CC_A4_CC_8A_CC_A5_E2_80_8E_E2_8C_A3_CC_8A_E2_94_88_CC_A5-_CC_B6_CC_AF_CD_A1_C2_BB_CC_B6_CC_normal", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@DaRealRaissa u s0 mad,,,muh lips jst l0oks uhmmmm well uhmmm nyc...*Smilz*", "to_user": "DaRealRaissa", "to_user_id": 384814084, "to_user_id_str": "384814084", "to_user_name": "Raissa elongo", "in_reply_to_status_id": 148835882588319740, "in_reply_to_status_id_str": "148835882588319744"}, +{"created_at": "Mon, 19 Dec 2011 18:46:07 +0000", "from_user": "G33KPRON", "from_user_id": 216765228, "from_user_id_str": "216765228", "from_user_name": "G33KPRON", "geo": null, "id": 148836523507318800, "id_str": "148836523507318784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1601326371/g33kpron_icon_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601326371/g33kpron_icon_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "Anyone we know going to this? RT @villagevoice 100 Boomboxes Will Rove the Streets of NYC in January http://t.co/tkEwt7wI", "to_user": "villagevoice", "to_user_id": 22059385, "to_user_id_str": "22059385", "to_user_name": "Village Voice", "in_reply_to_status_id": 148816161562300400, "in_reply_to_status_id_str": "148816161562300416"}, +{"created_at": "Mon, 19 Dec 2011 18:46:05 +0000", "from_user": "jennyxgreco", "from_user_id": 269849483, "from_user_id_str": "269849483", "from_user_name": "Jennifer Greco", "geo": null, "id": 148836518448992260, "id_str": "148836518448992256", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1678372218/Photo_on_2011-11-10_at_22.28__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678372218/Photo_on_2011-11-10_at_22.28__2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Jenny and Magalie take on NYC #ohok", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:05 +0000", "from_user": "Mathfi_Jobs", "from_user_id": 59126679, "from_user_id_str": "59126679", "from_user_name": "Mathfi", "geo": null, "id": 148836514997075970, "id_str": "148836514997075968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/326427455/tweet-mathfi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/326427455/tweet-mathfi_normal.jpg", "source": "<a href="http://www.maths-fi.com/" rel="nofollow">MathsFi Twitt</a>", "text": "Job Top US Bank (New York-USA): Senior Counterparty Risk Manager.+ MSc/... http://t.co/Bd0VuPwQ Quant IB Finance jobs 123", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:04 +0000", "from_user": "clinnver", "from_user_id": 248899581, "from_user_id_str": "248899581", "from_user_name": "ezequiel ", "geo": null, "id": 148836513088679940, "id_str": "148836513088679936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1637977220/41606_282977372560_7420938_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637977220/41606_282977372560_7420938_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Suspect in NYC woman's burning appears in court", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:01 +0000", "from_user": "encarniths", "from_user_id": 72904803, "from_user_id_str": "72904803", "from_user_name": "en carnaval", "geo": null, "id": 148836501432713200, "id_str": "148836501432713216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700766832/171125_1888181443768_1218401380_32283754_2113569_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700766832/171125_1888181443768_1218401380_32283754_2113569_o_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @hellogiggles: Galleries: Check Out These NYC Christmas Windows! by Morgan Nelson on @hellogiggles http://t.co/a6eNo8gZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:59 +0000", "from_user": "TextConxTweets", "from_user_id": 61849473, "from_user_id_str": "61849473", "from_user_name": "Jim Brotherton", "geo": null, "id": 148836490426855420, "id_str": "148836490426855424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/341636434/jimB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/341636434/jimB_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Bridal Salons NYC-Excellent Selections http://t.co/sT726r0S", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:58 +0000", "from_user": "piercingmetal", "from_user_id": 27065731, "from_user_id_str": "27065731", "from_user_name": "Ken Pierce", "geo": null, "id": 148836487532781570, "id_str": "148836487532781568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/579873816/PMcom-Logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/579873816/PMcom-Logo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@UlianaMTP @metalkprettynyc @madinalake Really enjoyed your show in NYC; The Santa hat wearing Metal journalist :)", "to_user": "UlianaMTP", "to_user_id": 395094230, "to_user_id_str": "395094230", "to_user_name": "Uliana"}, +{"created_at": "Mon, 19 Dec 2011 18:45:52 +0000", "from_user": "abbykohn", "from_user_id": 123661553, "from_user_id_str": "123661553", "from_user_name": "Abby Kohn", "geo": null, "id": 148836463138713600, "id_str": "148836463138713600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1614845581/twit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1614845581/twit_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@ktgarbs in NYC!!!! @panini_press #whyarentyouhere #cpplaydates", "to_user": "ktgarbs", "to_user_id": 409437642, "to_user_id_str": "409437642", "to_user_name": "Katie Garbis"}, +{"created_at": "Mon, 19 Dec 2011 18:45:52 +0000", "from_user": "E_W_Enterprise", "from_user_id": 136290471, "from_user_id_str": "136290471", "from_user_name": "E. W. E.", "geo": null, "id": 148836462035607550, "id_str": "148836462035607552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1644021565/ginaandelizabeth_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644021565/ginaandelizabeth_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Love this \"Daylit Artist Loft/ Holiday Sublet in Brooklyn\" vacation rental on @airbnb #NYC #TravelTuesday http://t.co/ovGNGK7u", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:52 +0000", "from_user": "nickyyates", "from_user_id": 19545593, "from_user_id_str": "19545593", "from_user_name": "Nicky Yates", "geo": null, "id": 148836460781502460, "id_str": "148836460781502464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/553827708/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/553827708/twitterProfilePhoto_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "looking for a videographer for this wednesday. whacha got nyc?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:51 +0000", "from_user": "ariasahar", "from_user_id": 139703588, "from_user_id_str": "139703588", "from_user_name": "Ariana Watson", "geo": null, "id": 148836456637542400, "id_str": "148836456637542400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1240476419/Violin_at_Elisha_s_Wedding_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1240476419/Violin_at_Elisha_s_Wedding_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rachelbnolan: Op-ed by young black man on arbitrary search and frisk in NYC: \"We know the rules: don\\u2019t run and don\\u2019t try to explain.\" http://t.co/OIxDlrKQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:50 +0000", "from_user": "YouTern", "from_user_id": 84693957, "from_user_id_str": "84693957", "from_user_name": "YouTern", "geo": null, "id": 148836453449871360, "id_str": "148836453449871361", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1168190676/YouTern_Twitter_Logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1168190676/YouTern_Twitter_Logo_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "Follow me... to Social Mediaaaa! Lead a startup's social media and site content in #NYC http://t.co/wKChOi6l #socialmedia #internship", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:50 +0000", "from_user": "_dominyqueee", "from_user_id": 30573855, "from_user_id_str": "30573855", "from_user_name": "its DOM bitch !!!!", "geo": null, "id": 148836452187389950, "id_str": "148836452187389952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700905052/Snapshot_20111217_19_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700905052/Snapshot_20111217_19_normal.JPG", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Have fun! RT @QueenNara531 Just arriving in NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:49 +0000", "from_user": "RoyalRespectCO", "from_user_id": 431104603, "from_user_id_str": "431104603", "from_user_name": "Royal \\u042FR Respect", "geo": null, "id": 148836449851158530, "id_str": "148836449851158528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697423170/kyle_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697423170/kyle_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Jaytee3876 We're based out of the tri-state NYC, NJ, CT area as of now but we are looking to expand worldwide, What's up?", "to_user": "Jaytee3876", "to_user_id": 275083746, "to_user_id_str": "275083746", "to_user_name": "JayTee", "in_reply_to_status_id": 148836212600340480, "in_reply_to_status_id_str": "148836212600340480"}, +{"created_at": "Mon, 19 Dec 2011 18:45:48 +0000", "from_user": "joeyavino", "from_user_id": 245098261, "from_user_id_str": "245098261", "from_user_name": "Joey Avino", "geo": null, "id": 148836446835458050, "id_str": "148836446835458049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1603872973/joey-avino-1-cropped_2_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1603872973/joey-avino-1-cropped_2_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "I NYC I hear almost every song from @Drake Take Care on the radio. Album is far from mainstream--refreshing that the public demands it.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:45 +0000", "from_user": "rocio6411", "from_user_id": 279212571, "from_user_id_str": "279212571", "from_user_name": "CodySmileMe :)", "geo": null, "id": 148836434462253060, "id_str": "148836434462253056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700114306/tumblr_lwdffzoZZx1r85tx8o1_500_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700114306/tumblr_lwdffzoZZx1r85tx8o1_500_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TomCruise: Tom answers your questions at the NYC M:I-@GhostProtocol Premiere 2night! Submit your questions w/ #MissionNYC http://t.co/8FwxLVGC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:45 +0000", "from_user": "bmf403", "from_user_id": 76713813, "from_user_id_str": "76713813", "from_user_name": "Cory G.", "geo": null, "id": 148836434214789120, "id_str": "148836434214789120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1509603181/bmf403_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509603181/bmf403_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NYC police: Suspect says woman set afire over debt - Yahoo! News http://t.co/PmM0N941 via @YahooNews <== over $2,000?!?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:45 +0000", "from_user": "kdengs", "from_user_id": 15426993, "from_user_id_str": "15426993", "from_user_name": "Kellen Dengler", "geo": null, "id": 148836433224933380, "id_str": "148836433224933376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1139024608/Kellen_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1139024608/Kellen_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@ucwhateyec Damn. Poor timing. I'll prob see you at airport then haha. I'm in NYC now but will be snowboarding Summit County Wed to Sun", "to_user": "ucwhateyec", "to_user_id": 23075152, "to_user_id_str": "23075152", "to_user_name": "John Walder", "in_reply_to_status_id": 148835176485617660, "in_reply_to_status_id_str": "148835176485617667"}, +{"created_at": "Mon, 19 Dec 2011 18:45:44 +0000", "from_user": "FUTURAMACAL", "from_user_id": 124046319, "from_user_id_str": "124046319", "from_user_name": "FOREIGN", "geo": null, "id": 148836430246981630, "id_str": "148836430246981632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687584684/ltss_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687584684/ltss_normal.jpg", "source": "<a href="http://www.twitmusic.com" rel="nofollow">TwitMusic.com</a>", "text": "RT @FUTURAMACAL RT #NEWMUSIC \"DROP IT LOW\" #NEWSONGS #UNSIGNED #NEWARTIST OUT NYC #BRONX #DJS #CLUBS #RADIO http://t.co/pDIH4QkT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:44 +0000", "from_user": "TCarolino", "from_user_id": 414296098, "from_user_id_str": "414296098", "from_user_name": "Theresa Carolino", "geo": null, "id": 148836428200153100, "id_str": "148836428200153088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "soo tired today my body feels like I'm 80 walked around NYC for 12 hours.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:44 +0000", "from_user": "ohjustintweets", "from_user_id": 95026574, "from_user_id_str": "95026574", "from_user_name": "\\u03B9'\\u043C \\u05E0\\u03C5\\u0455\\u0442 \\u03B1 g\\u03B9\\u044F\\u2113 \\u2665 ", "geo": null, "id": 148836427415818240, "id_str": "148836427415818240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702261468/arianayouareamazingzzz_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702261468/arianayouareamazingzzz_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ArianaGrande: If you're coming to my show on December 28 at @IrvingPlaza in NYC and want to come meet me after, here's how: http://t.co/1w7eeLFq! xoxo RT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:45:41 +0000", "from_user": "GigiHabibi", "from_user_id": 117157665, "from_user_id_str": "117157665", "from_user_name": "K y o k o \\u4EAC\\u5B50", "geo": null, "id": 148836416573554700, "id_str": "148836416573554688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1644385839/G99C_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644385839/G99C_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@ShermanZeGerman hey where can I find the cheap NYC flights please?", "to_user": "ShermanZeGerman", "to_user_id": 31738568, "to_user_id_str": "31738568", "to_user_name": "Ze German", "in_reply_to_status_id": 148705377217814530, "in_reply_to_status_id_str": "148705377217814528"}, +{"created_at": "Mon, 19 Dec 2011 18:45:41 +0000", "from_user": "TaapItApp", "from_user_id": 290134235, "from_user_id_str": "290134235", "from_user_name": "Taap.it Live Local", "geo": null, "id": 148836416149925900, "id_str": "148836416149925888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1674931796/123_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674931796/123_normal.png", "source": "<a href="http://twuffer.com" rel="nofollow">Twuffer</a>", "text": "The safest cars on the road: Is yours on the list? : http://t.co/QYLXI2g0 via @CBSNews @MoneyWatchcars #IIHS #safedriving #nyc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:40 +0000", "from_user": "Chazedwardz", "from_user_id": 38631383, "from_user_id_str": "38631383", "from_user_name": "Chaz Edward Buzan", "geo": null, "id": 148836413813686270, "id_str": "148836413813686273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1597077059/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1597077059/image_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "Sending love to all from NYC ;) http://t.co/vOhZsHKU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:35 +0000", "from_user": "TiffyCBaybe", "from_user_id": 248087606, "from_user_id_str": "248087606", "from_user_name": "Red Bottom Boss", "geo": null, "id": 148836391508381700, "id_str": "148836391508381696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700833658/TiffyCBaybe_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700833658/TiffyCBaybe_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "You got my ticket? RT @WhenThugsDie: @TiffyCBaybe come to NYC for #nye", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:34 +0000", "from_user": "DRYLnz", "from_user_id": 274018212, "from_user_id_str": "274018212", "from_user_name": "DRYLanzarote", "geo": null, "id": 148836386852704260, "id_str": "148836386852704257", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695186525/1320012385_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695186525/1320012385_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @democracynow: Occupy Wall Street NYC marks 3-month anniversary with re-occupation attempt, dozens arrested. http://t.co/jK0sLcnw #ows", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:34 +0000", "from_user": "ElwoodBluez", "from_user_id": 90413778, "from_user_id_str": "90413778", "from_user_name": "Rob Fish", "geo": null, "id": 148836386286485500, "id_str": "148836386286485504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/602467452/elwood_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/602467452/elwood_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @fireengineering: Video of NYC #firefighters escaping burning Brooklyn brownstone: http://t.co/abKqqjIf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:32 +0000", "from_user": "JimmyLaSalvia", "from_user_id": 18660521, "from_user_id_str": "18660521", "from_user_name": "JimmyLaSalvia", "geo": null, "id": 148836378308907000, "id_str": "148836378308907010", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1659339309/Jimmy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659339309/Jimmy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "He is! - RT @MargaretHoover #SOOOEmbarrassed; My hubby @JohnAvlon makes \"NYC Natives\" top 10 sexiest of '11. http://t.co/hujymF7s", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:31 +0000", "from_user": "SkySlope", "from_user_id": 158580977, "from_user_id_str": "158580977", "from_user_name": "SkySlope\\u2122", "geo": null, "id": 148836374299160580, "id_str": "148836374299160578", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1015668623/alone_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1015668623/alone_logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Check this out, \"House of the Day\" by @InmanNews...\"SoHo townhouse featured in Beyonce video fetches $3.3k per year.\" http://t.co/ewymaUA0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:30 +0000", "from_user": "soyjoseito_", "from_user_id": 412681479, "from_user_id_str": "412681479", "from_user_name": "Jose Martinez", "geo": null, "id": 148836371350568960, "id_str": "148836371350568961", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1665451576/187193_100001523167841_8183179_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665451576/187193_100001523167841_8183179_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "This is messed up_NYC police: Suspect says woman set afire over debt - Yahoo! News http://t.co/5DSqNpX0 via @YahooNews", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:30 +0000", "from_user": "jjkeyes", "from_user_id": 19713189, "from_user_id_str": "19713189", "from_user_name": "Jeffrey James Keyes", "geo": null, "id": 148836368192253950, "id_str": "148836368192253952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1581059170/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1581059170/image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NYC Glitterati Celebrate Ziggy Stardust At Bowieball / Queerty http://t.co/RS1xdj8Q via @queerty #bowieball @derycktodd @ladyrizo #GlamRock", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:29 +0000", "from_user": "mrlarrygreen", "from_user_id": 11450112, "from_user_id_str": "11450112", "from_user_name": "Seattle REALTOR\\u00AE", "geo": null, "id": 148836367454060540, "id_str": "148836367454060544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/79168401/n715256163_497742_8651_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/79168401/n715256163_497742_8651_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Is reading, REIT Buys Large Stake in NYC Office Property http://t.co/B4qf8YT6 #USAMortgageNews", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:29 +0000", "from_user": "nikkipep", "from_user_id": 20642076, "from_user_id_str": "20642076", "from_user_name": "nikki pepper", "geo": null, "id": 148836364501262340, "id_str": "148836364501262337", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1551027799/299475_10150286519892690_611707689_8028645_6266747_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1551027799/299475_10150286519892690_611707689_8028645_6266747_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "option 1 would be killing yourself. option 2 would be winter in nyc. #itsthatcold", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:29 +0000", "from_user": "TheQueensWay", "from_user_id": 426876371, "from_user_id_str": "426876371", "from_user_name": "The Queens Way", "geo": null, "id": 148836364165713920, "id_str": "148836364165713920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670201711/sqgreenway1_520_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670201711/sqgreenway1_520_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "@amandadick Have you seen the ideas for #TheQueensWay? Please support our efforts to create a greenway in #Queens: http://t.co/zuPkQQyT", "to_user": "amandadick", "to_user_id": 20946839, "to_user_id_str": "20946839", "to_user_name": "Amanda Dick", "in_reply_to_status_id": 148491424873193470, "in_reply_to_status_id_str": "148491424873193472"}, +{"created_at": "Mon, 19 Dec 2011 18:45:28 +0000", "from_user": "MTGBenchmark", "from_user_id": 17885361, "from_user_id_str": "17885361", "from_user_name": "MTGBenchmark", "geo": null, "id": 148836361498148860, "id_str": "148836361498148864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/66397974/Matt_Kruse_Exec_Portrait_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/66397974/Matt_Kruse_Exec_Portrait_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "MTG News: REIT Buys Large Stake in NYC Office Property: Commercial REIT Vornado Realty Trust has acquired a 49.5... http://t.co/GjuN1k2i", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:26 +0000", "from_user": "_sttefani", "from_user_id": 319860840, "from_user_id_str": "319860840", "from_user_name": "St\\u00E9fani Martins ", "geo": null, "id": 148836354632065020, "id_str": "148836354632065024", "iso_language_code": "hu", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686127696/Imagem_013_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686127696/Imagem_013_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @DeniseJonas: John's Pizza NYC!! http://t.co/lMqV6aPF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:25 +0000", "from_user": "IAMYOUstudio", "from_user_id": 34041404, "from_user_id_str": "34041404", "from_user_name": "I.AM.YOU. ", "geo": null, "id": 148836349242380300, "id_str": "148836349242380288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692161800/jan_laughing_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692161800/jan_laughing_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "swept up into a pack of young collegites debating philosophy & political theory w youth and grandeur. Nyc #geek moment.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:25 +0000", "from_user": "drjiho714", "from_user_id": 43686883, "from_user_id_str": "43686883", "from_user_name": "Jiho Jung", "geo": null, "id": 148836348793602050, "id_str": "148836348793602049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1478677779/254610_1955399920816_1117254231_31735247_7801075_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1478677779/254610_1955399920816_1117254231_31735247_7801075_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Damn too many sexy ass girls in nyc. Unlimited", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:24 +0000", "from_user": "rashoaib", "from_user_id": 66769127, "from_user_id_str": "66769127", "from_user_name": "Shoaib Ibn Abdullah", "geo": null, "id": 148836344481853440, "id_str": "148836344481853440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/776726121/Image0186_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/776726121/Image0186_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Suspect in NYC torching charged with murder - The Associated Press http://t.co/P1RBXkCY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:23 +0000", "from_user": "AmeeraSurname", "from_user_id": 315871486, "from_user_id_str": "315871486", "from_user_name": "Ameera (A-mir-a) ", "geo": null, "id": 148836341445177340, "id_str": "148836341445177344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695113062/kjn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695113062/kjn_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@LaneNapper You know how you said NYC is cold, is it all christmas-sy with lights & trees up? I've never been to the USA hehe :D Enjoy<3", "to_user": "LaneNapper", "to_user_id": 304108372, "to_user_id_str": "304108372", "to_user_name": "Lane Napper"}, +{"created_at": "Mon, 19 Dec 2011 18:45:23 +0000", "from_user": "EDBRD1", "from_user_id": 382872232, "from_user_id_str": "382872232", "from_user_name": "EDBRD", "geo": null, "id": 148836338890846200, "id_str": "148836338890846209", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1678015611/218101_198509133519492_198509066852832_479011_5159207_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678015611/218101_198509133519492_198509066852832_479011_5159207_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @UnaVainaLoca1: Descarga http://t.co/hAuvHxIX #RD #DMV #Miami #NYC #Colombia #VNZL #Chile #Ecuador #Espa\\u00F1a #Nicaragua #ElSalvador #Guatemala #Peru #LATINOS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:21 +0000", "from_user": "richdenton", "from_user_id": 46594688, "from_user_id_str": "46594688", "from_user_name": "Rich Denton", "geo": null, "id": 148836334084173820, "id_str": "148836334084173824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1387886952/Me1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1387886952/Me1_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Said to be a real sign in the window of a Chinese restaurant in NYC - hilarious! #jewish #christmas #food http://t.co/OAhJf5QX via @twitpic", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:21 +0000", "from_user": "ArcosAlfonso", "from_user_id": 406693966, "from_user_id_str": "406693966", "from_user_name": "Jntkdvr", "geo": null, "id": 148836332251262980, "id_str": "148836332251262976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695436655/yo_chica_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695436655/yo_chica_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Streetfilms Top 5 Streetfilms 2011: Mas all\\u00E1 del autom\\u00F3vil, bicicletas http://t.co/ruD6d8PB Biking rules in SF, NYC, PDX, and more! vale", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:18 +0000", "from_user": "Kept2Soar", "from_user_id": 334899019, "from_user_id_str": "334899019", "from_user_name": "Shalyn", "geo": null, "id": 148836319685120000, "id_str": "148836319685120000", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688435821/2011-11-26_11.46.13-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688435821/2011-11-26_11.46.13-1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@SportsDiva627 Lol o ok cute! Not a bad idea @ all Dallas? LA? MIA? NYC? RT @kristyface: (cont) http://t.co/YBfF2LdN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:18 +0000", "from_user": "Kenzie_Myers", "from_user_id": 421585158, "from_user_id_str": "421585158", "from_user_name": "Kenzie Myers", "geo": null, "id": 148836317562802180, "id_str": "148836317562802176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1659101606/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659101606/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "All I want for Christmas is to see @jimmyfallon in NYC!!!!!! Or in Indy during the super bowl!!!! Thats it :))", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:17 +0000", "from_user": "a_harris20", "from_user_id": 381614435, "from_user_id_str": "381614435", "from_user_name": "Austin Harris", "geo": null, "id": 148836313481740300, "id_str": "148836313481740288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1690313394/RNgQG5FR_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690313394/RNgQG5FR_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Just got accepted to the University of South Carolina and St. Johns University in NYC #HappyTweet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:16 +0000", "from_user": "bousquetg", "from_user_id": 269430085, "from_user_id_str": "269430085", "from_user_name": "Guillaume Bousquet", "geo": null, "id": 148836310147276800, "id_str": "148836310147276800", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1280668614/IMG_0367_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1280668614/IMG_0367_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "roh il y a aussi un prince \\u00E0 NYC!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:14 +0000", "from_user": "NSAYUpperEast", "from_user_id": 191213777, "from_user_id_str": "191213777", "from_user_name": "Upper East Side", "geo": null, "id": 148836304136839170, "id_str": "148836304136839170", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1260272705/Upper-East-Side_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1260272705/Upper-East-Side_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Things to Do on the Upper East Side Dec. 19-23. Last chance to see rare exhibits at the Met & @Guggenheim http://t.co/EmLnOdNc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:14 +0000", "from_user": "I_LOVE_NY", "from_user_id": 46164502, "from_user_id_str": "46164502", "from_user_name": "I LOVE NEW YORK", "geo": null, "id": 148836304011010050, "id_str": "148836304011010048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1076397039/ILNY_Flicker2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1076397039/ILNY_Flicker2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Great list ! RT @newyorkology Added @HughOnBroadway & @MammaMiaMusical to the list of What's open December 25th in NYC http://t.co/67t7r7wN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:14 +0000", "from_user": "DeeJay_Kobe", "from_user_id": 340838696, "from_user_id_str": "340838696", "from_user_name": "Frederick Ankomah", "geo": null, "id": 148836301486047230, "id_str": "148836301486047233", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1692979367/DeeJay_Kobe_2793690658387443106_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692979367/DeeJay_Kobe_2793690658387443106_normal.jpg", "source": "<a href="http://www.writelonger.com" rel="nofollow">Write Longer</a>", "text": "#BMF dis christmas. 4rm t-pain 2 gh rocks 2 everi nyc show", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:12 +0000", "from_user": "FredOshean", "from_user_id": 288963669, "from_user_id_str": "288963669", "from_user_name": "Fred O'shean", "geo": +{"coordinates": [48.9551,2.2989], "type": "Point"}, "id": 148836295890829300, "id_str": "148836295890829314", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701981380/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701981380/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Le poto de NYC va se mettre bien en Slovaquie heinnnnn!!! Ahahhahah", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:11 +0000", "from_user": "OLUWASANDRA", "from_user_id": 53671773, "from_user_id_str": "53671773", "from_user_name": "April summers", "geo": null, "id": 148836288856989700, "id_str": "148836288856989697", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698074562/331605128_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698074562/331605128_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Lol! RT @Sibabe23: Yayy we shud lol RT @OLUWASANDRA: Yaaay let's b bffs! RT @Sibabe23: My name is Amazing!! Nyc ... http://t.co/v40Rz2tS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:09 +0000", "from_user": "Michael_220", "from_user_id": 259384704, "from_user_id_str": "259384704", "from_user_name": "Michael Sanders", "geo": null, "id": 148836280246091780, "id_str": "148836280246091777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1519928439/IMG_0092_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1519928439/IMG_0092_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "NYC its been real, but there's no place like home!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:05 +0000", "from_user": "dockbxr", "from_user_id": 343847283, "from_user_id_str": "343847283", "from_user_name": "Shelley Misner", "geo": null, "id": 148836266295824400, "id_str": "148836266295824384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @democracynow: Occupy Wall Street NYC marks 3-month anniversary with re-occupation attempt, dozens arrested. http://t.co/jK0sLcnw #ows", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:05 +0000", "from_user": "MrsGraySkies", "from_user_id": 263921351, "from_user_id_str": "263921351", "from_user_name": "Amber Whitlock", "geo": null, "id": 148836265880592400, "id_str": "148836265880592385", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702599921/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702599921/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "So I'm totally taking a roadtrip to either Florida or Carolina to see @Drake since he's not coming to NYC, that's my bday present to myself", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:03 +0000", "from_user": "TimeInNYC", "from_user_id": 253915109, "from_user_id_str": "253915109", "from_user_name": "Time In New York", "geo": null, "id": 148836257953349630, "id_str": "148836257953349634", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1497851931/time_in_newyork_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1497851931/time_in_newyork_normal.png", "source": "<a href="http://google.com" rel="nofollow">Time In New York</a>", "text": "#NYC The current time in New York City is 1:45 PM on Monday, 19 December 2011", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:03 +0000", "from_user": "perfectquarters", "from_user_id": 18728945, "from_user_id_str": "18728945", "from_user_name": "Jacqueline", "geo": null, "id": 148836257181601800, "id_str": "148836257181601792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/613077223/Jaqueline.Edwards-06_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/613077223/Jaqueline.Edwards-06_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "NYC Condo for Your Viewing Pleasure http://t.co/G00mBNBZ #realestate #real_estate #renter #nyc #ny", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:03 +0000", "from_user": "aqetyqy", "from_user_id": 361532775, "from_user_id_str": "361532775", "from_user_name": "Issy Clippard", "geo": null, "id": 148836255843614720, "id_str": "148836255843614721", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "gay dating service nyc: http://t.co/uaYt3fCA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:03 +0000", "from_user": "ShaunPynne", "from_user_id": 21698653, "from_user_id_str": "21698653", "from_user_name": "Shaun Pynne", "geo": null, "id": 148836255709401100, "id_str": "148836255709401090", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676584029/SOTD_Cover_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676584029/SOTD_Cover_1_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Who knows a great, cost effective printer in NYC?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:02 +0000", "from_user": "tfcornerstone", "from_user_id": 89296082, "from_user_id_str": "89296082", "from_user_name": "TF Cornerstone", "geo": null, "id": 148836254593716220, "id_str": "148836254593716225", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/553237395/logo_icon_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/553237395/logo_icon_normal.gif", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "NYC street food has certainly come a long way: http://t.co/4Hs9YJJd Do you agree with the war on NYC food trucks? #HudsonYards", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:02 +0000", "from_user": "LikeWezhWTF", "from_user_id": 194191071, "from_user_id_str": "194191071", "from_user_name": "Weshley Germanotta", "geo": null, "id": 148836252412686340, "id_str": "148836252412686336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1635888460/Picture0199_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635888460/Picture0199_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @ladygaga: Woohooo!! Turn on 100.3 in NYC!! Marry The Night is on!! I love my hometown!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:02 +0000", "from_user": "NewYorkHabitat", "from_user_id": 20182700, "from_user_id_str": "20182700", "from_user_name": "New York Habitat", "geo": null, "id": 148836252328787970, "id_str": "148836252328787969", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1488175236/logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1488175236/logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "That is pretty rad RT @anastasiakry: Best window display, Sephora #nyc http://t.co/8PxAe67a", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:01 +0000", "from_user": "_cycleangelo", "from_user_id": 205539738, "from_user_id_str": "205539738", "from_user_name": "CYCLEANGELO", "geo": null, "id": 148836247757004800, "id_str": "148836247757004800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1251065938/CAVATAR_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1251065938/CAVATAR_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "Smoke Break @ Meat Packing District (NYC) http://t.co/T8Z003rg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:00 +0000", "from_user": "WickedEnano", "from_user_id": 229979772, "from_user_id_str": "229979772", "from_user_name": "Jesus-MexicanRoyalty", "geo": null, "id": 148836245991194620, "id_str": "148836245991194624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701563659/IMG-20111218-00385_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701563659/IMG-20111218-00385_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@TheRealErickMo idk. I think so. I live in NYC", "to_user": "TheRealErickMo", "to_user_id": 432365323, "to_user_id_str": "432365323", "to_user_name": "Erick J Moncheknikov", "in_reply_to_status_id": 148836093914128400, "in_reply_to_status_id_str": "148836093914128384"}, +{"created_at": "Mon, 19 Dec 2011 18:45:00 +0000", "from_user": "swaGG_wAvy", "from_user_id": 253152037, "from_user_id_str": "253152037", "from_user_name": "Wayne\\u2601", "geo": null, "id": 148836243780804600, "id_str": "148836243780804609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692492354/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692492354/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "NYC\\uD83D\\uDDFD\\uD83D\\uDE1C", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:00 +0000", "from_user": "SuaveofNitelife", "from_user_id": 47379117, "from_user_id_str": "47379117", "from_user_name": "Suave Solo", "geo": null, "id": 148836242979692540, "id_str": "148836242979692544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1472855045/RedCafePoolParty0530__173__normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1472855045/RedCafePoolParty0530__173__normal.JPG", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @MorillaSD: RT @midnitespot: NYC: Sun Dec 25 WinterFresh: B&W Affair @AMNESIA BDAY BASH @SUAVEOFNITELIFE @MRMALIKSTAGENT ... http://t.co/zxushZ0S", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:59 +0000", "from_user": "kakaliscious", "from_user_id": 204429597, "from_user_id_str": "204429597", "from_user_name": "Kakaliscious ", "geo": null, "id": 148836240697995260, "id_str": "148836240697995264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1620259893/309415_2346126414055_1276865574_2918600_8279185_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620259893/309415_2346126414055_1276865574_2918600_8279185_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @goldeyounce: @kakaliscious Awwww twas nyc working wit u tew hun u was amazing nd dnt forget i stil got ma eyes on the brown dress *wink * xx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:59 +0000", "from_user": "trOOmOOv", "from_user_id": 24221642, "from_user_id_str": "24221642", "from_user_name": "Eddie Lee Flandez", "geo": null, "id": 148836238571474940, "id_str": "148836238571474945", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1340106303/OneBKRoof_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1340106303/OneBKRoof_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "DO NOT SLEEP, NYC, this party is FRESH. http://t.co/ma0cu285 @GiantStep @mashibeats @DromNYC", "to_user": "GiantStep", "to_user_id": 17449400, "to_user_id_str": "17449400", "to_user_name": "Giant Step", "in_reply_to_status_id": 148827592848441340, "in_reply_to_status_id_str": "148827592848441344"}, +{"created_at": "Mon, 19 Dec 2011 18:44:58 +0000", "from_user": "Mathfi_Jobs", "from_user_id": 59126679, "from_user_id_str": "59126679", "from_user_name": "Mathfi", "geo": null, "id": 148836237158002700, "id_str": "148836237158002688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/326427455/tweet-mathfi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/326427455/tweet-mathfi_normal.jpg", "source": "<a href="http://www.maths-fi.com/" rel="nofollow">MathsFi Twitt</a>", "text": "Job Top IB (New York City, USA): Senior Quantitative Equity Researcher-Jr Di... http://t.co/IAgDP5nJ Quant IB Finance jobs 18", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:56 +0000", "from_user": "free4NYC", "from_user_id": 431470401, "from_user_id_str": "431470401", "from_user_name": "FREE STUFF New York", "geo": null, "id": 148836228698083330, "id_str": "148836228698083328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680559902/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680559902/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#free #freestuff Free 12-drawer dresser hardwood (Bethel, CT 06801) http://t.co/t2x6FDen #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:56 +0000", "from_user": "free4NYC", "from_user_id": 431470401, "from_user_id_str": "431470401", "from_user_name": "FREE STUFF New York", "geo": null, "id": 148836227578212350, "id_str": "148836227578212352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680559902/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680559902/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#free #freestuff Benjamin Moore Interior Paint - Free (Tuckahoe NY) http://t.co/Kqf8YibQ #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:56 +0000", "from_user": "free4NYC", "from_user_id": 431470401, "from_user_id_str": "431470401", "from_user_name": "FREE STUFF New York", "geo": null, "id": 148836225971798000, "id_str": "148836225971798016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680559902/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680559902/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#free #freestuff Rev'n Chef: Herb Processor (Greenwood Heights) http://t.co/lkuOwUI5 #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:56 +0000", "from_user": "LSFrembes", "from_user_id": 295750052, "from_user_id_str": "295750052", "from_user_name": "Linda Seid Frembes", "geo": null, "id": 148836225925652480, "id_str": "148836225925652480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1570978581/Linda_InfoComm2010-IMG_1276-sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1570978581/Linda_InfoComm2010-IMG_1276-sm_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@SciaccaTweets Six. Six arms. Did I mention it was in a drug store window? Makes me love NYC even more.", "to_user": "SciaccaTweets", "to_user_id": 346128582, "to_user_id_str": "346128582", "to_user_name": "John Sciacca", "in_reply_to_status_id": 148835853635039230, "in_reply_to_status_id_str": "148835853635039233"}, +{"created_at": "Mon, 19 Dec 2011 18:44:55 +0000", "from_user": "free4NYC", "from_user_id": 431470401, "from_user_id_str": "431470401", "from_user_name": "FREE STUFF New York", "geo": null, "id": 148836223023194100, "id_str": "148836223023194112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680559902/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680559902/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#free #freestuff Baptism Debate (Flushing) http://t.co/IscAEt0m #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:55 +0000", "from_user": "osnapitzdannii", "from_user_id": 270060184, "from_user_id_str": "270060184", "from_user_name": "danielle. \\u10E6", "geo": null, "id": 148836222431797250, "id_str": "148836222431797249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701588047/472212501_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701588047/472212501_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ArianaGrande: If you're coming to my show on December 28 at @IrvingPlaza in NYC and want to come meet me after, here's how: http://t.co/1w7eeLFq! xoxo RT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:55 +0000", "from_user": "free4NYC", "from_user_id": 431470401, "from_user_id_str": "431470401", "from_user_name": "FREE STUFF New York", "geo": null, "id": 148836221743931400, "id_str": "148836221743931394", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680559902/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680559902/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#free #freestuff WOOD PALLETS FOR FREE!! HURRY WHILE PALLETS ARE AVAILABLE!! (c-line marble, new h... http://t.co/SVngEUlP #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:55 +0000", "from_user": "MikeyD97", "from_user_id": 21623191, "from_user_id_str": "21623191", "from_user_name": "Mikey D.", "geo": null, "id": 148836221274177540, "id_str": "148836221274177536", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1291694906/0311111656a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1291694906/0311111656a_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@VillansNeverDie freezin in NYC right now.. :-/", "to_user": "VillansNeverDie", "to_user_id": 415344152, "to_user_id_str": "415344152", "to_user_name": "A L E X A N D R A .", "in_reply_to_status_id": 148835519651000320, "in_reply_to_status_id_str": "148835519651000320"}, +{"created_at": "Mon, 19 Dec 2011 18:44:53 +0000", "from_user": "sergalboy", "from_user_id": 84999404, "from_user_id_str": "84999404", "from_user_name": "Glaice", "geo": null, "id": 148836215687348220, "id_str": "148836215687348224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1556355205/glaice_shades_150x150_deal_with_it_notext_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1556355205/glaice_shades_150x150_deal_with_it_notext_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "http://t.co/5yHNFW7G Anyone see how similar her name is to Dhalia Gillespie from Silent Hill?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:53 +0000", "from_user": "Raemcito", "from_user_id": 48536068, "from_user_id_str": "48536068", "from_user_name": "Raem Cambero", "geo": null, "id": 148836215674781700, "id_str": "148836215674781696", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1669606593/330772769_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669606593/330772769_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Cooomo Pero La Masa Tipica, unos muchachos de aqui de #SPM0.23 estan picando bien en NYC! Varias fiestas ya he visto anunciando con ellos", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:52 +0000", "from_user": "SOULAMBITIOUS", "from_user_id": 89241947, "from_user_id_str": "89241947", "from_user_name": "SOUL AMBITIOUS", "geo": null, "id": 148836208653500400, "id_str": "148836208653500416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1692627227/316059_2245248925997_1091340702_32014485_3802309_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692627227/316059_2245248925997_1091340702_32014485_3802309_n_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "On Stars Network 1st LIVESTREAM SHOW WILL AIR TONIGHT!!!! \\n\\nI HAVE SURLY CAME A LONG WAY!!! GOD IS GOOD \\n\\nO.K NYC... http://t.co/laTxSIUP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:46 +0000", "from_user": "abrnrd56", "from_user_id": 60203245, "from_user_id_str": "60203245", "from_user_name": "Alec Bernard", "geo": null, "id": 148836186167853060, "id_str": "148836186167853058", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1303971015/sDsLhYF7_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1303971015/sDsLhYF7_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Looking good Freedom Tower #NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:44 +0000", "from_user": "LittleLadyLaura", "from_user_id": 43595144, "from_user_id_str": "43595144", "from_user_name": "Laura Fry", "geo": null, "id": 148836178412572670, "id_str": "148836178412572672", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1561622874/downtown_2_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1561622874/downtown_2_2_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "Girls love cupcakes! (cc: @magnoliabakery) #nyc http://t.co/2LGfdFC6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:44 +0000", "from_user": "SoftLipsRae", "from_user_id": 127418754, "from_user_id_str": "127418754", "from_user_name": "1 John 3:24", "geo": null, "id": 148836175082299400, "id_str": "148836175082299392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694189174/gixxer_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694189174/gixxer_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "So hope I go to NYC in couple weeks", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:43 +0000", "from_user": "switchwind", "from_user_id": 23118294, "from_user_id_str": "23118294", "from_user_name": "Switch Wind", "geo": null, "id": 148836172527976450, "id_str": "148836172527976448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/89391218/Pot-o-Gold2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/89391218/Pot-o-Gold2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dec 19 - Times Up! Women and Trans Bicycle Repair Night: Sustainable Flatbush curated Green NYC C... http://t.co/hrLmSzAm #Energy #Event", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:38 +0000", "from_user": "banniNation", "from_user_id": 174557599, "from_user_id_str": "174557599", "from_user_name": "banniNation.com", "geo": null, "id": 148836153783619600, "id_str": "148836153783619584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1126742553/twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1126742553/twitter_normal.png", "source": "<a href="http://www.bannination.com" rel="nofollow">banniNation Server</a>", "text": "NYC woman, not allowed to protect herself with a gun, burned to death by horrific ex-employee in elevator. http://t.co/JIptvLCs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:36 +0000", "from_user": "HiltonNewYork", "from_user_id": 48389816, "from_user_id_str": "48389816", "from_user_name": "Hilton New York", "geo": null, "id": 148836143939592200, "id_str": "148836143939592192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/305767920/Hilton-Twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/305767920/Hilton-Twitter_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "@golfingronin Great choice! Hopefully you can make a spring trip to NYC. The weather is so ideal & we'd love to host you!", "to_user": "GolfingRonin", "to_user_id": 194877237, "to_user_id_str": "194877237", "to_user_name": "Maurice Poe", "in_reply_to_status_id": 148809148442742800, "in_reply_to_status_id_str": "148809148442742784"}, +{"created_at": "Mon, 19 Dec 2011 18:44:35 +0000", "from_user": "sMDnSTFU", "from_user_id": 233823422, "from_user_id_str": "233823422", "from_user_name": "\\uF8FFSway", "geo": null, "id": 148836138453442560, "id_str": "148836138453442560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702566100/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702566100/image_normal.jpg", "source": "<a href="http://tweetlogix.com" rel="nofollow">Tweetlogix</a>", "text": "@_LuxuryChes I wouldn't know iv never been to nyc", "to_user": "_LuxuryChes", "to_user_id": 311716170, "to_user_id_str": "311716170", "to_user_name": "Franchesca !", "in_reply_to_status_id": 148835553087987700, "in_reply_to_status_id_str": "148835553087987712"}, +{"created_at": "Mon, 19 Dec 2011 18:44:34 +0000", "from_user": "JoeyMintz_NJ", "from_user_id": 27457623, "from_user_id_str": "27457623", "from_user_name": "Mintz", "geo": null, "id": 148836135441928200, "id_str": "148836135441928192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1631117971/Photo_on_2011-11-09_at_18.06__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631117971/Photo_on_2011-11-09_at_18.06__2_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for iPhone</a>", "text": "@alanhahn what a change a few years make. Now they wanna come to NYC. Thanks Donnie Walsh! Laid the foundation", "to_user": "alanhahn", "to_user_id": 31782245, "to_user_id_str": "31782245", "to_user_name": "Alan Hahn", "in_reply_to_status_id": 148835253228797950, "in_reply_to_status_id_str": "148835253228797953"}, +{"created_at": "Mon, 19 Dec 2011 18:44:33 +0000", "from_user": "CusMaven", "from_user_id": 107497172, "from_user_id_str": "107497172", "from_user_name": "Swanky Music Group", "geo": null, "id": 148836132854038530, "id_str": "148836132854038529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1658872601/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658872601/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "All these artists.... as they come they go. Its real out here tho. #NYC #Global", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:33 +0000", "from_user": "FunmiSexy", "from_user_id": 155663816, "from_user_id_str": "155663816", "from_user_name": "Funmi Ogunleye", "geo": null, "id": 148836132820500480, "id_str": "148836132820500480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1656564235/330364766_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656564235/330364766_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Dat was a nyc muvee....\\u263A\\u263A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:32 +0000", "from_user": "MaryUshay", "from_user_id": 362136373, "from_user_id_str": "362136373", "from_user_name": "Mary Ushay", "geo": null, "id": 148836126126383100, "id_str": "148836126126383104", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1513482975/229682_10150337665294042_746649041_9509366_4408896_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1513482975/229682_10150337665294042_746649041_9509366_4408896_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Heading home! Smell ya later NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:31 +0000", "from_user": "WhenThugsDie", "from_user_id": 72105704, "from_user_id_str": "72105704", "from_user_name": "Ron ", "geo": null, "id": 148836121940471800, "id_str": "148836121940471808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699056560/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699056560/profile_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "@TiffyCBaybe come to NYC for #nye", "to_user": "TiffyCBaybe", "to_user_id": 248087606, "to_user_id_str": "248087606", "to_user_name": "Red Bottom Boss"}, +{"created_at": "Mon, 19 Dec 2011 18:44:31 +0000", "from_user": "bgoodin10", "from_user_id": 234483882, "from_user_id_str": "234483882", "from_user_name": "Betsy Goodin", "geo": null, "id": 148836120917049340, "id_str": "148836120917049344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1449520798/me_at_downs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1449520798/me_at_downs_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I really hope that bird shitting on me in NYC brings me good luck in the interview #nervous ahhhh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:27 +0000", "from_user": "NewYorkPicks", "from_user_id": 40001164, "from_user_id_str": "40001164", "from_user_name": "New York Picks", "geo": null, "id": 148836104597020670, "id_str": "148836104597020672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1169942825/picks-logo-newyork_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1169942825/picks-logo-newyork_normal.png", "source": "<a href="http://schmap.it" rel="nofollow">schmap.it</a>", "text": "More buzz for Magnolia Bakery: http://t.co/se8OyWn6 - RT @traveladdictgrl Just in time for the holidays! Magnolia Bakery NYC: Best Cupca...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:26 +0000", "from_user": "jonathandeclais", "from_user_id": 21013825, "from_user_id_str": "21013825", "from_user_name": "Jonathan Declais", "geo": null, "id": 148836100738269200, "id_str": "148836100738269185", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1447419532/IMG_64022_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1447419532/IMG_64022_normal.png", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "Peace from NYC! http://t.co/Kwi240zT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:24 +0000", "from_user": "525Active", "from_user_id": 430197799, "from_user_id_str": "430197799", "from_user_name": "act525", "geo": null, "id": 148836093859602430, "id_str": "148836093859602432", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1677833709/tumblr_lkmux3aLTB1qfttcu_large_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677833709/tumblr_lkmux3aLTB1qfttcu_large_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @zionylennoxpr: @SykO_ElTerrOr cdo vienes a nyc? En enero?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:24 +0000", "from_user": "LegalNewsAdvice", "from_user_id": 419484587, "from_user_id_str": "419484587", "from_user_name": "Legal News & Advice", "geo": null, "id": 148836092202844160, "id_str": "148836092202844161", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "CAN ANYONE RECOMEND A GREAT IMMIGRATION LAWYER IN NYC TO HELP ME WITH A K-1 VISA CASE? http://immigration-lawyer... http://t.co/ChuhDJWD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:22 +0000", "from_user": "MrBiffe", "from_user_id": 84478805, "from_user_id_str": "84478805", "from_user_name": "\\u00A0", "geo": null, "id": 148836086242750460, "id_str": "148836086242750465", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1543179963/2011-05-19_19-43-11_362_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543179963/2011-05-19_19-43-11_362_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Pra comprar um #iPhone4sdaTIM , prefiro ficar 4 dias em NYC e comprar um na loja da apple de l\\u00E1,que sai at\\u00E9 mais barato(incluindo a viagem)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:20 +0000", "from_user": "About_Attorneys", "from_user_id": 418466223, "from_user_id_str": "418466223", "from_user_name": "About Attorneys", "geo": null, "id": 148836075861848060, "id_str": "148836075861848064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1651584480/AA_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651584480/AA_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "CAN ANYONE RECOMEND A GREAT IMMIGRATION LAWYER IN NYC TO HELP ME WITH A K-1 VISA CASE? http://immigration-lawyer... http://t.co/9H1oCX1F", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:19 +0000", "from_user": "ricochetcattle", "from_user_id": 216433380, "from_user_id_str": "216433380", "from_user_name": "Rick", "geo": null, "id": 148836071264894980, "id_str": "148836071264894976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702074274/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702074274/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@Forbes got to be a big city thing,like NYC I'll bet there are hundreds in the rest of the country as good or better ! ...restaurateur", "to_user": "Forbes", "to_user_id": 91478624, "to_user_id_str": "91478624", "to_user_name": "Forbes", "in_reply_to_status_id": 148824080664113150, "in_reply_to_status_id_str": "148824080664113153"}, +{"created_at": "Mon, 19 Dec 2011 18:44:16 +0000", "from_user": "jensdish", "from_user_id": 20190075, "from_user_id_str": "20190075", "from_user_name": "Jen Huntley-Corbin", "geo": null, "id": 148836060493918200, "id_str": "148836060493918208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1624555263/photo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624555263/photo_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jennampelletier: Spotted: @richeeses excellent ricotta among hundreds of imported cheeses at NYC food emporium @Eataly http://t.co/DtqerN6X", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:15 +0000", "from_user": "x_ESMERALDA_", "from_user_id": 441071621, "from_user_id_str": "441071621", "from_user_name": "Esss.", "geo": null, "id": 148836056232493060, "id_str": "148836056232493056", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702578450/tumblr_lwg0xaQFfM1qj0ixoo1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702578450/tumblr_lwg0xaQFfM1qj0ixoo1_500_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NYC !!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:14 +0000", "from_user": "AlberthMoscoso", "from_user_id": 187397885, "from_user_id_str": "187397885", "from_user_name": "Alberth Moscoso", "geo": null, "id": 148836049567748100, "id_str": "148836049567748096", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1661830056/IMG00004-20110901-1228_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661830056/IMG00004-20110901-1228_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "NYC all\\u00E1 voy #FelizNavidad RD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:13 +0000", "from_user": "spazfox", "from_user_id": 43734850, "from_user_id_str": "43734850", "from_user_name": "Spazfox", "geo": null, "id": 148836047311220740, "id_str": "148836047311220736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1576156171/spocky-gun_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576156171/spocky-gun_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @democracynow: Occupy Wall Street NYC marks 3-month anniversary with re-occupation attempt, dozens arrested. http://t.co/jK0sLcnw #ows", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:13 +0000", "from_user": "raptros_", "from_user_id": 11460012, "from_user_id_str": "11460012", "from_user_name": "aidan coyne", "geo": null, "id": 148836046040350720, "id_str": "148836046040350720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1471813551/sparring_detail_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1471813551/sparring_detail_normal.jpeg", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "Back in NYC for a few days starting tomorrow. Schedule somewhat open.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:12 +0000", "from_user": "madrid_city_fan", "from_user_id": 426683922, "from_user_id_str": "426683922", "from_user_name": "madrid city fan", "geo": null, "id": 148836043393744900, "id_str": "148836043393744897", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690149053/442063000_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690149053/442063000_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NYC police: Suspect says woman set afire over debt - Yahoo! News http://t.co/MR6HRtLR via @YahooNews", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:11 +0000", "from_user": "_OnlineStylist", "from_user_id": 15408608, "from_user_id_str": "15408608", "from_user_name": "The Online Stylist", "geo": null, "id": 148836037148409860, "id_str": "148836037148409856", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1669449902/AW11_Head_Shot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669449902/AW11_Head_Shot_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "SJP layers up in NYC http://t.co/vpJFCTpY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:08 +0000", "from_user": "DanceNYC", "from_user_id": 16940209, "from_user_id_str": "16940209", "from_user_name": "DanceNYC", "geo": null, "id": 148836026700406800, "id_str": "148836026700406784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1104460047/Tweet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1104460047/Tweet_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Dance/NYC Celebrates Moments from 2011:\\n\\n1- State of NYC Dance Report Launched:... http://t.co/pmQXMJdo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:07 +0000", "from_user": "jadorebmore", "from_user_id": 361342387, "from_user_id_str": "361342387", "from_user_name": "Bawlmorean", "geo": null, "id": 148836019976941570, "id_str": "148836019976941569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1546298145/jadorebmore_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546298145/jadorebmore_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "We'll be in NYC tom a.m. and i'll make sure to stop by at Mr. Chocolate in Dumbo. @jacquestorres", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:05 +0000", "from_user": "dashstorefans", "from_user_id": 440197700, "from_user_id_str": "440197700", "from_user_name": "DASH Store Fan Club", "geo": null, "id": 148836011353440260, "id_str": "148836011353440257", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700547180/dash_store_sign__flickr_faye_mous__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700547180/dash_store_sign__flickr_faye_mous__normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @NatalieVallina: #DASH NYC http://t.co/RKJxEvQs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:03 +0000", "from_user": "TheJonRios", "from_user_id": 170821268, "from_user_id_str": "170821268", "from_user_name": "Jonathan Rios", "geo": null, "id": 148836004386705400, "id_str": "148836004386705410", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1092538673/34979_440435522921_570757921_5906683_2973561_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1092538673/34979_440435522921_570757921_5906683_2973561_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Headin to nyc to do some holiday #shopping then back to CT!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:02 +0000", "from_user": "SeaDeb", "from_user_id": 31453850, "from_user_id_str": "31453850", "from_user_name": "Debbie Hellman", "geo": null, "id": 148836000699924480, "id_str": "148836000699924480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1565587093/n573087084_443421_7353_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1565587093/n573087084_443421_7353_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Am so excited to be heading to #NYC for #NYE!! Will certainly have a date with the 3B's @BarneysNY @Bergdorfs @BendelGirls !!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:00 +0000", "from_user": "brad", "from_user_id": 5871202, "from_user_id_str": "5871202", "from_user_name": "Brad Smith", "geo": null, "id": 148835991266926600, "id_str": "148835991266926593", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1635811513/bradphoot03-sq_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635811513/bradphoot03-sq_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@pauloctavious Invent teleportation. Avoid all planes, trains and automobiles into NYC \\u2014 at all cost.", "to_user": "pauloctavious", "to_user_id": 15098044, "to_user_id_str": "15098044", "to_user_name": "Paul Octavious", "in_reply_to_status_id": 148834602331549700, "in_reply_to_status_id_str": "148834602331549696"}, +{"created_at": "Mon, 19 Dec 2011 18:43:58 +0000", "from_user": "LeadersLearners", "from_user_id": 401549029, "from_user_id_str": "401549029", "from_user_name": "Leaders and Learners", "geo": null, "id": 148835983218057200, "id_str": "148835983218057217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1614254112/L_L_twitter_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1614254112/L_L_twitter_pic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Daniel Pink's sad account of NYC #testing and craziness in ed #data. http://t.co/pddlPcXo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:54 +0000", "from_user": "Eline_K", "from_user_id": 64457758, "from_user_id_str": "64457758", "from_user_name": "Eline Kerpels", "geo": null, "id": 148835966134661120, "id_str": "148835966134661120", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700797748/1324241147394677_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700797748/1324241147394677_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@LieveCaar Will do! En even opscheppen over jouw succesvolle semester abroad en onze trip naar NYC natuurlijk! ;-)", "to_user": "LieveCaar", "to_user_id": 110759452, "to_user_id_str": "110759452", "to_user_name": "Caroline Mathijssen", "in_reply_to_status_id": 148834246008647680, "in_reply_to_status_id_str": "148834246008647680"}, +{"created_at": "Mon, 19 Dec 2011 18:43:51 +0000", "from_user": "christophercarb", "from_user_id": 176165009, "from_user_id_str": "176165009", "from_user_name": "Christopher Carbone", "geo": null, "id": 148835956177379330, "id_str": "148835956177379328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687605960/ProfilePic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687605960/ProfilePic_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@toddwhitley will do. home is north jersey. plus seeing friends in nyc.", "to_user": "toddwhitley", "to_user_id": 85309536, "to_user_id_str": "85309536", "to_user_name": "tdub", "in_reply_to_status_id": 148834213880270850, "in_reply_to_status_id_str": "148834213880270848"}, +{"created_at": "Mon, 19 Dec 2011 18:43:51 +0000", "from_user": "paul_a_smith", "from_user_id": 9568572, "from_user_id_str": "9568572", "from_user_name": "Paul Smith", "geo": null, "id": 148835955476938750, "id_str": "148835955476938752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/492429787/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/492429787/twitterProfilePhoto_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@gcmorley w00t! When are you in NYC?", "to_user": "gcmorley", "to_user_id": 11978972, "to_user_id_str": "11978972", "to_user_name": "Graham Morley", "in_reply_to_status_id": 148835387580747780, "in_reply_to_status_id_str": "148835387580747776"}, +{"created_at": "Mon, 19 Dec 2011 18:43:50 +0000", "from_user": "EditorAtLarge", "from_user_id": 25084073, "from_user_id_str": "25084073", "from_user_name": "The Editor at Large", "geo": null, "id": 148835949621690370, "id_str": "148835949621690368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/396801440/low-res_logo_700k_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/396801440/low-res_logo_700k_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Rockefellers to chair 58th Winter Antiques Show in NYC: The Winter Antiques Show celebrates its 58th year by fea... http://t.co/DhlVPwj1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:49 +0000", "from_user": "jennifer_dubow", "from_user_id": 17251562, "from_user_id_str": "17251562", "from_user_name": "Jennifer D. Dubow", "geo": null, "id": 148835946505310200, "id_str": "148835946505310208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/323074821/IMG_0309_1_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/323074821/IMG_0309_1_1_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Rock on! #Cornell Picked to Build #NYC Science Campus http://t.co/J939kwBN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:49 +0000", "from_user": "Johnny_Iuzzini", "from_user_id": 147668753, "from_user_id_str": "147668753", "from_user_name": "Johnny Iuzzini", "geo": null, "id": 148835944953417730, "id_str": "148835944953417728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1659796829/4932108448_4ec5fb4781_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659796829/4932108448_4ec5fb4781_normal.jpg", "source": "<a href="http://www.whosay.com" rel="nofollow">WhoSay</a>", "text": "Holiday dinner last week with Jean Georges and all the chefs from his other NYC restaurants at Bar Masa. Great food... http://t.co/6tRSbqKE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:49 +0000", "from_user": "ChikaBakasi", "from_user_id": 16955603, "from_user_id_str": "16955603", "from_user_name": "Quenette O.", "geo": null, "id": 148835944722731000, "id_str": "148835944722731008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698252311/Photo_on_12-13-11_at_4.42_PM__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698252311/Photo_on_12-13-11_at_4.42_PM__2_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Nne bring me back some gala RT @Ms_Chinazor: Enroute NYC!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:43:32 +0000", "from_user": "rbeccazhou", "from_user_id": 105552664, "from_user_id_str": "105552664", "from_user_name": "rebecca zhou", "geo": null, "id": 148835876607242240, "id_str": "148835876607242240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1544749296/307488_2069547258948_1252830061_32201189_1526569_n__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544749296/307488_2069547258948_1252830061_32201189_1526569_n__1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @garysguide: The Mayor joins Cornell & Technion for game-changing announcement for NYC\\u2019s economic future. Live at 2:30 http://t.co/31ECNXDu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:26 +0000", "from_user": "Damon_James", "from_user_id": 169219354, "from_user_id_str": "169219354", "from_user_name": "Damon James", "geo": null, "id": 148835847763001340, "id_str": "148835847763001344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1608610102/185430_10150403878133852_582933851_10533730_564621_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608610102/185430_10150403878133852_582933851_10533730_564621_n_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@laurendevito fuck it do it. Change of scenery. If you don't like it go back to NYC", "to_user": "laurendevito", "to_user_id": 190927318, "to_user_id_str": "190927318", "to_user_name": "Evol", "in_reply_to_status_id": 148835231204507650, "in_reply_to_status_id_str": "148835231204507648"}, +{"created_at": "Mon, 19 Dec 2011 18:43:24 +0000", "from_user": "burberrydebbie", "from_user_id": 28991784, "from_user_id_str": "28991784", "from_user_name": "deBee", "geo": null, "id": 148835841022758900, "id_str": "148835841022758912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/122728273/20081001W048_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/122728273/20081001W048_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "At #americangirl #NYC.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:23 +0000", "from_user": "micaelashanley", "from_user_id": 94707240, "from_user_id_str": "94707240", "from_user_name": "Micaela Shanley", "geo": null, "id": 148835837327585280, "id_str": "148835837327585280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695201459/Snapshot_20111212_8_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695201459/Snapshot_20111212_8_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "NYC with @marisashanley @lukeholden93 :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:22 +0000", "from_user": "abcddesigns", "from_user_id": 15755923, "from_user_id_str": "15755923", "from_user_name": "ABC Dragoo", "geo": null, "id": 148835835058458620, "id_str": "148835835058458626", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1676156428/Screen_Shot_2011-12-05_at_6.43.05_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676156428/Screen_Shot_2011-12-05_at_6.43.05_PM_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@CrystalG so far, so good - threw a fun party this weekend. 1st one at the house: http://t.co/GaCOpIba Let me know when you're in NYC!", "to_user": "CrystalG", "to_user_id": 18350448, "to_user_id_str": "18350448", "to_user_name": "Crystal Gentilello", "in_reply_to_status_id": 148830126153539600, "in_reply_to_status_id_str": "148830126153539584"}, +{"created_at": "Mon, 19 Dec 2011 18:43:22 +0000", "from_user": "mmly", "from_user_id": 17015269, "from_user_id_str": "17015269", "from_user_name": "emily munroe", "geo": null, "id": 148835832743202800, "id_str": "148835832743202816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697127180/blooooood_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697127180/blooooood_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "NYC here I comeeeeee", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:21 +0000", "from_user": "Blissful_Hello", "from_user_id": 242327976, "from_user_id_str": "242327976", "from_user_name": "Dee", "geo": null, "id": 148835829324845060, "id_str": "148835829324845056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702451448/Blissful_Hello_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702451448/Blissful_Hello_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Room booked NYC for my 25th bday \\uD83C\\uDF82\\uD83C\\uDF78\\uD83D\\uDC51\\uD83C\\uDF89\\uD83C\\uDF88\\uD83C\\uDF81 it's a party it's party !! http://t.co/cGVOC0d2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:20 +0000", "from_user": "MustSee_Videos", "from_user_id": 434546737, "from_user_id_str": "434546737", "from_user_name": "MustSee_Videos", "geo": null, "id": 148835826250432500, "id_str": "148835826250432512", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688015097/Horse_mustsee_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688015097/Horse_mustsee_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Rolling Stones - Happy - Live '03 NYC http://t.co/YtlD7Q49", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:20 +0000", "from_user": "lovieawards", "from_user_id": 242827797, "from_user_id_str": "242827797", "from_user_name": "The Lovie Awards", "geo": null, "id": 148835825717743600, "id_str": "148835825717743616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1238473078/lovie_twitter__pink__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1238473078/lovie_twitter__pink__normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "We're in NYC visiting our sister @thewebbyawards & planning for 2012! Sign up to our newsletter for all the info: http://t.co/ailDhovl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:20 +0000", "from_user": "Findgirlsusa", "from_user_id": 410540996, "from_user_id_str": "410540996", "from_user_name": "Findgirlsusa", "geo": null, "id": 148835823599624200, "id_str": "148835823599624192", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1634812065/bikinigirls14_thumb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634812065/bikinigirls14_thumb_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Rolling Stones - Happy - Live '03 NYC http://t.co/vS2THWbL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:20 +0000", "from_user": "GracieFknCakess", "from_user_id": 314753239, "from_user_id_str": "314753239", "from_user_name": "Papi Chulo", "geo": null, "id": 148835823578652670, "id_str": "148835823578652674", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1541325239/1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541325239/1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/KUYsmQnO That's that New York shit @PreciousMonet_ smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:18 +0000", "from_user": "funnyduckfuck", "from_user_id": 61261569, "from_user_id_str": "61261569", "from_user_name": "Matt ", "geo": null, "id": 148835818256080900, "id_str": "148835818256080897", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1642421154/Foto0091_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642421154/Foto0091_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @HotChelleRae: Don\\u2019t forget! We are playing a private show today at 5PM EST at the @iHeartRadio Theater in NYC. Enter for tix here: http://t.co/AzJSN2zV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:17 +0000", "from_user": "am1310thelight", "from_user_id": 163608446, "from_user_id_str": "163608446", "from_user_name": "Praise Indy", "geo": null, "id": 148835810806992900, "id_str": "148835810806992896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1479475566/AM-Logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1479475566/AM-Logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "NYC Man Set Woman On Fire In Elevator Over Repair Debts - The NYC man charged with burning a woman to death Saturday... http://t.co/AI9Re1DF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:17 +0000", "from_user": "itsmarcroberts", "from_user_id": 82578053, "from_user_id_str": "82578053", "from_user_name": "Marc Roberts (ish)", "geo": null, "id": 148835810056208400, "id_str": "148835810056208384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1411349969/263905_10150291753715712_681245711_9229521_7319004_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1411349969/263905_10150291753715712_681245711_9229521_7319004_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@nickhook my sis is in NYC this week. Should i send her your way? ;-)))", "to_user": "nickhook", "to_user_id": 15624101, "to_user_id_str": "15624101", "to_user_name": "nick hook"}, +{"created_at": "Mon, 19 Dec 2011 18:43:15 +0000", "from_user": "NYVerve", "from_user_id": 148877438, "from_user_id_str": "148877438", "from_user_name": "NYVerve", "geo": null, "id": 148835802636488700, "id_str": "148835802636488704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/936236170/NY_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/936236170/NY_normal.jpg", "source": "<a href="http://webpartner.com" rel="nofollow">WebPartner</a>", "text": "Wired: Psytrance and Trance IN NYC http://t.co/P3qJHWpS Full http://t.co/hU1xiKxG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:14 +0000", "from_user": "luiggi0124", "from_user_id": 54600472, "from_user_id_str": "54600472", "from_user_name": "Guillermo Ochoa", "geo": null, "id": 148835800770035700, "id_str": "148835800770035712", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1644015727/1P10Ahk4_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644015727/1P10Ahk4_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@javidavilam\\nSaludos contrapunto deportivo, la prudencia es la madre de la conciencia, muy bien dicho gordo davila. Desde la refria nyc.", "to_user": "javidavilam", "to_user_id": 200295600, "to_user_id_str": "200295600", "to_user_name": "Javier D\\u00E1vila"}, +{"created_at": "Mon, 19 Dec 2011 18:43:12 +0000", "from_user": "Opopam", "from_user_id": 124525072, "from_user_id_str": "124525072", "from_user_name": "OpoPam", "geo": null, "id": 148835793153175550, "id_str": "148835793153175552", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#5: Osiris Men's NYC 83 Mid Skate Shoe: http://t.co/T0vDjDwe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:12 +0000", "from_user": "taingubtana", "from_user_id": 56284494, "from_user_id_str": "56284494", "from_user_name": "taingubtana", "geo": null, "id": 148835792188473340, "id_str": "148835792188473344", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/448234824/PeoGeo650_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/448234824/PeoGeo650_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#5: Osiris Men's NYC 83 Mid Skate Shoe: http://t.co/YMnHorKy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:12 +0000", "from_user": "JonasC14", "from_user_id": 143470736, "from_user_id_str": "143470736", "from_user_name": "Jonas Carro", "geo": null, "id": 148835790309441540, "id_str": "148835790309441536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691732555/Trooper_Santa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691732555/Trooper_Santa_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube video http://t.co/OE5sIAAk BATMAN The Dark Knight Rises EXCLUSIVE!!! NYC BEHIND THE SCENES", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:08 +0000", "from_user": "tlpjr", "from_user_id": 31459312, "from_user_id_str": "31459312", "from_user_name": "TOM PAVLOT Jr.", "geo": null, "id": 148835776044613630, "id_str": "148835776044613633", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1077640490/tn64_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1077640490/tn64_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@fireengineering: Video of NYC #firefighters escaping burning Brooklyn brownstone: http://t.co/fgv6ujDT\\u201D another reason for NY 800.7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:06 +0000", "from_user": "mylifeasLIV_", "from_user_id": 232274173, "from_user_id_str": "232274173", "from_user_name": "Olivia Nicolazzo", "geo": +{"coordinates": [40.7499,-73.9877], "type": "Point"}, "id": 148835764594151420, "id_str": "148835764594151424", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701288063/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701288063/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "H&M in NYC >", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:05 +0000", "from_user": "xxTPRxx", "from_user_id": 402761367, "from_user_id_str": "402761367", "from_user_name": "zombie da tay", "geo": null, "id": 148835762740273150, "id_str": "148835762740273152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685258953/tumblr_l7ydjn4kR51qamd31o1_500_large_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685258953/tumblr_l7ydjn4kR51qamd31o1_500_large_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @taylormomsen: Christmas shopping in NYC, its been a few years since I've been at Rockefeller center...#thatsabigfuckingtree", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:05 +0000", "from_user": "AngelDFlores", "from_user_id": 16458034, "from_user_id_str": "16458034", "from_user_name": "Angel Flores", "geo": null, "id": 148835760995434500, "id_str": "148835760995434496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1588908806/AngelDFlores_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1588908806/AngelDFlores_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Photos on iOS</a>", "text": "Eating lunch at a macaroni and cheese bar. Only in NYC I guess. Neat place but tiny. @macbar http://t.co/DdI9TJTS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:03 +0000", "from_user": "agbons654", "from_user_id": 335268013, "from_user_id_str": "335268013", "from_user_name": "agbonghale l caleb", "geo": null, "id": 148835753219198980, "id_str": "148835753219198978", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675607788/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675607788/image_normal.jpg", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "(Man suspected of\\ntorching 73-year-old\\nwoman in NYC elevator\\ncharged with murder,\\narson)http://t.co/nkriot7R", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:02 +0000", "from_user": "UtterDiplomacy", "from_user_id": 73428619, "from_user_id_str": "73428619", "from_user_name": "Nichole", "geo": null, "id": 148835751273037820, "id_str": "148835751273037824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1194184132/SML_Profile_Pic_CROP_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1194184132/SML_Profile_Pic_CROP_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @SyracuseU: SU alum living in NYC? Get discounted tix to see B'way show Lysistrata Jones! Find details on @LubinHouseSU's FB wall http://t.co/0dhjueJh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:02 +0000", "from_user": "redostoneage", "from_user_id": 28156710, "from_user_id_str": "28156710", "from_user_name": "Truth Tweeter", "geo": null, "id": 148835751260463100, "id_str": "148835751260463104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/661208289/get_fileCA9BVO04_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/661208289/get_fileCA9BVO04_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Copenhagen: Religion of Peace attacks Hare Krishna Temple http://t.co/3fjTAJJH #bbc #uk #london #eu #europe #cnn #nyc #news #cbs #abc #pbs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:02 +0000", "from_user": "Me_shyfairy", "from_user_id": 407129589, "from_user_id_str": "407129589", "from_user_name": "\\u0402\\u03AClli\\u0639\\u03B3\\u0332\\u0323\\u0323\\u0325 ", "geo": null, "id": 148835749284954100, "id_str": "148835749284954112", "iso_language_code": "el", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700662611/fb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700662611/fb_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@OptaDoyen yh...she wz a vry nyc frwd. So dcyded \\u03C4\\u0305\\u0332\\u263A use dt as M\\u0305\\u0332\\u0336\\u0194\\u200E\\u200B\\u200E\\u200B \\u03C4\\u0305\\u0332.handle..#frwdz4eva", "to_user": "OptaDoyen", "to_user_id": 115969538, "to_user_id_str": "115969538", "to_user_name": "Doyin", "in_reply_to_status_id": 148833338046693380, "in_reply_to_status_id_str": "148833338046693376"}, +{"created_at": "Mon, 19 Dec 2011 18:42:51 +0000", "from_user": "damidiniho", "from_user_id": 235866789, "from_user_id_str": "235866789", "from_user_name": "adebayo akindeinde", "geo": null, "id": 148835702329704450, "id_str": "148835702329704448", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1672109467/Debayo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672109467/Debayo_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Had a nyc dae afta all!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:51 +0000", "from_user": "RapGenius", "from_user_id": 72073289, "from_user_id_str": "72073289", "from_user_name": "Rap Genius", "geo": null, "id": 148835701658619900, "id_str": "148835701658619904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1396884033/family_tree_three_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1396884033/family_tree_three_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@TPrince8307 LOL - but when their beef started Pac was in nyc", "to_user": "TPrince8307", "to_user_id": 178019319, "to_user_id_str": "178019319", "to_user_name": "T-Prince", "in_reply_to_status_id": 148811679923306500, "in_reply_to_status_id_str": "148811679923306498"}, +{"created_at": "Mon, 19 Dec 2011 18:42:48 +0000", "from_user": "redostoneage", "from_user_id": 28156710, "from_user_id_str": "28156710", "from_user_name": "Truth Tweeter", "geo": null, "id": 148835690480795650, "id_str": "148835690480795649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/661208289/get_fileCA9BVO04_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/661208289/get_fileCA9BVO04_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Copenhagen: Religion of Peace attacks Hare Krishna Temple http://t.co/3fjTAJJH #bbc #uk #london #eu #europe #cnn #nyc #news #cbs #abc #npr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:45 +0000", "from_user": "MilesNielsen", "from_user_id": 123630313, "from_user_id_str": "123630313", "from_user_name": "Miles Nielsen", "geo": null, "id": 148835679445581820, "id_str": "148835679445581824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1115528580/Me_NP_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1115528580/Me_NP_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@jimmyfallon Happy Monday, I hope the SNL saturday felt great.. Looks like we will be in NYC in the Spring. I would love to stop by and play", "to_user": "jimmyfallon", "to_user_id": 15485441, "to_user_id_str": "15485441", "to_user_name": "jimmy fallon"}, +{"created_at": "Mon, 19 Dec 2011 18:42:45 +0000", "from_user": "darealmaozedong", "from_user_id": 395911020, "from_user_id_str": "395911020", "from_user_name": "mao zedong", "geo": null, "id": 148835677470068740, "id_str": "148835677470068736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1600926992/Book_Cover_The_life_of_Mao_Zedong_in_Wood_Block_Printing_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600926992/Book_Cover_The_life_of_Mao_Zedong_in_Wood_Block_Printing_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @democracynow: Occupy Wall Street NYC marks 3-month anniversary with re-occupation attempt, dozens arrested. http://t.co/jK0sLcnw #ows", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:44 +0000", "from_user": "kirsten_matson", "from_user_id": 253263036, "from_user_id_str": "253263036", "from_user_name": "Kirsten Matson", "geo": null, "id": 148835672072007680, "id_str": "148835672072007680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1626453682/DSC00049_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626453682/DSC00049_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@MelissaKuhlthau i hope you're having fun in NYC :)", "to_user": "MelissaKuhlthau", "to_user_id": 436274750, "to_user_id_str": "436274750", "to_user_name": "Melissa Kuhlthau"}, +{"created_at": "Mon, 19 Dec 2011 18:42:42 +0000", "from_user": "MosthatedJones", "from_user_id": 278348148, "from_user_id_str": "278348148", "from_user_name": "Tyshell Jones", "geo": null, "id": 148835666959155200, "id_str": "148835666959155200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1465664984/photo_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1465664984/photo_normal", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@Baron_Davis<<<<< WELCOME TO NYC BABY YOU READY FOR WHATEVA ;)", "to_user": "Baron_Davis", "to_user_id": 21056862, "to_user_id_str": "21056862", "to_user_name": "Baron Davis"}, +{"created_at": "Mon, 19 Dec 2011 18:42:38 +0000", "from_user": "TaraCucciaPhoto", "from_user_id": 62323991, "from_user_id_str": "62323991", "from_user_name": "Tara Cuccia Photo", "geo": null, "id": 148835650601353200, "id_str": "148835650601353216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1441615552/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1441615552/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Christmas in front of the @Yodle office in #NYC! http://t.co/BUF0ZKSs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:38 +0000", "from_user": "Sing2meFancy", "from_user_id": 163999172, "from_user_id_str": "163999172", "from_user_name": "F\\u0105ncy\\u00DCWh\\u00F8?", "geo": null, "id": 148835649062047740, "id_str": "148835649062047745", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1688515196/2W6wE62l_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688515196/2W6wE62l_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Your AVi looks Gorgeous Hun! How's NYC treating u??? @FatimaPaigeMUA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:37 +0000", "from_user": "florenceflakir", "from_user_id": 429470261, "from_user_id_str": "429470261", "from_user_name": "florence flakir", "geo": null, "id": 148835645329113100, "id_str": "148835645329113088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1676258535/4477057_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676258535/4477057_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Suspect in NYC torching charged with murder - The Associated Press http://t.co/xgrRPDOO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:36 +0000", "from_user": "Kaymee", "from_user_id": 16493164, "from_user_id_str": "16493164", "from_user_name": "Kaymee", "geo": null, "id": 148835639679389700, "id_str": "148835639679389696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1594015392/YellowEye_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1594015392/YellowEye_normal.jpg", "source": "<a href="http://beta.twitlonger.com" rel="nofollow">TwitLonger Beta</a>", "text": "Great article. RT @Fara1 I saw a Bradley Manning tribute teepee at #OccupyWallStreet... http://t.co/soMarCcI #OWS #OccupyBoston #D17 #D18", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:34 +0000", "from_user": "Consuelorlm", "from_user_id": 440225479, "from_user_id_str": "440225479", "from_user_name": "Consuelo Ohan", "geo": null, "id": 148835631269814270, "id_str": "148835631269814273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700599801/large_EZBESSGUUXNU_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700599801/large_EZBESSGUUXNU_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "O Williams 72' Heavyweight Combine/Diner, NYC (2): Here is a Williams 43308 New York Central 72' Heavyweight Pas... http://t.co/lW2sGtB8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:34 +0000", "from_user": "SavyFashionista", "from_user_id": 271636248, "from_user_id_str": "271636248", "from_user_name": "Helen Tejeda-Ramos", "geo": null, "id": 148835629839564800, "id_str": "148835629839564800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1564324901/IMG00066-20100918-1959_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1564324901/IMG00066-20100918-1959_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@RueLaLa husband and I volunteered for Saturday school at a NYC Charter School and hope in the New Year to continue volunteering 2X a month", "to_user": "RueLaLa", "to_user_id": 21501453, "to_user_id_str": "21501453", "to_user_name": "Rue La La", "in_reply_to_status_id": 148834454008381440, "in_reply_to_status_id_str": "148834454008381440"}, +{"created_at": "Mon, 19 Dec 2011 18:42:32 +0000", "from_user": "darioszafir10", "from_user_id": 113133514, "from_user_id_str": "113133514", "from_user_name": "\\u262ED\\u00E5\\u044Fi\\u2134 LiLMons\\u2020er", "geo": null, "id": 148835621853601800, "id_str": "148835621853601792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1654865528/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654865528/image_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @bordode: http://t.co/fWePAxbW Suspect in NYC woman's burning appears in court - The Associated Press\\u2026 http://t.co/i9We3XlC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:30 +0000", "from_user": "aint_yo_momma68", "from_user_id": 390669541, "from_user_id_str": "390669541", "from_user_name": "Nicky Finn", "geo": null, "id": 148835615092375550, "id_str": "148835615092375552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1593118284/A4sq9yi4_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593118284/A4sq9yi4_normal", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @purplepeace79: Talking about sistas with weaves but your woman got more tracks than the NYC subway system. FOH.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:30 +0000", "from_user": "g_love36330", "from_user_id": 228381131, "from_user_id_str": "228381131", "from_user_name": "Gabriel Love", "geo": null, "id": 148835614601646080, "id_str": "148835614601646081", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693713771/no6yI_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693713771/no6yI_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "I wonder what it would be like casting ppl for a music video in NYC or CA? Hmm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:30 +0000", "from_user": "jennampelletier", "from_user_id": 151953112, "from_user_id_str": "151953112", "from_user_name": "Jenna Pelletier", "geo": null, "id": 148835611229429760, "id_str": "148835611229429760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1479628229/jsaurus_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1479628229/jsaurus_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Spotted: @richeeses excellent ricotta among hundreds of imported cheeses at NYC food emporium @Eataly http://t.co/DtqerN6X", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:29 +0000", "from_user": "JohnTiessen", "from_user_id": 38677599, "from_user_id_str": "38677599", "from_user_name": "\\u262E \\u2665 u\\u01DDss\\u01DD\\u0131\\u0287 u\\u0265o\\u0638 \\u2665 \\u262E", "geo": null, "id": 148835610222805000, "id_str": "148835610222804993", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700875578/snowman_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700875578/snowman_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Last day! Help the children victims of #ChildAbuse Please Vote 4 @Childhelp > http://t.co/nYdYmv9I #nyc #LA #umc #Navy #Army #usmc #Activist", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:28 +0000", "from_user": "Akchheta1", "from_user_id": 421954641, "from_user_id_str": "421954641", "from_user_name": "Akchheta", "geo": null, "id": 148835608310198270, "id_str": "148835608310198272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@PragyanTG exams were okay!thats great news! NYC is not very far from here. we can meet over breaks and stuff! YAY.im really happy for you:)", "to_user": "PragyanTG", "to_user_id": 33139366, "to_user_id_str": "33139366", "to_user_name": "Pragyan T. Ghimire", "in_reply_to_status_id": 148797319364608000, "in_reply_to_status_id_str": "148797319364608000"}, +{"created_at": "Mon, 19 Dec 2011 18:42:28 +0000", "from_user": "DjMic_L", "from_user_id": 22568853, "from_user_id_str": "22568853", "from_user_name": "DJ Mic_L", "geo": null, "id": 148835607584587780, "id_str": "148835607584587777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1366645629/218816_1999077424682_1475912851_32240247_553247_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1366645629/218816_1999077424682_1475912851_32240247_553247_o_normal.jpg", "source": "<a href="http://83degrees.com/to/powertwitter" rel="nofollow">Power Twitter</a>", "text": "@misscolbycheese Should have been my wife a long time ago..#justsaying plus i was in NYC this past weekend too #fail", "to_user": "misscolbycheese", "to_user_id": 111520168, "to_user_id_str": "111520168", "to_user_name": "Colby ", "in_reply_to_status_id": 148835124853743600, "in_reply_to_status_id_str": "148835124853743616"}, +{"created_at": "Mon, 19 Dec 2011 18:42:27 +0000", "from_user": "Pav89c", "from_user_id": 92830288, "from_user_id_str": "92830288", "from_user_name": "Facundo Pavcovich", "geo": null, "id": 148835603423825920, "id_str": "148835603423825920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639074490/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639074490/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@MitchWestphal @DrMatiasM first thing tomorrow I'm getting it. Can't believe I didn't know bout the fan expo this weekend in NYC!", "to_user": "MitchWestphal", "to_user_id": 246157714, "to_user_id_str": "246157714", "to_user_name": "Mitch Westphal"}, +{"created_at": "Mon, 19 Dec 2011 18:42:25 +0000", "from_user": "DealforkNYC", "from_user_id": 246406831, "from_user_id_str": "246406831", "from_user_name": "NYC Restaurant Deals", "geo": null, "id": 148835595538538500, "id_str": "148835595538538496", "iso_language_code": "fi", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1232886246/TwitterLogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1232886246/TwitterLogo_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "@Jontasman Enjoy Katz's! Quite the NYC staple!", "to_user": "Jontasman", "to_user_id": 15548291, "to_user_id_str": "15548291", "to_user_name": "Jonathan Tasman"}, +{"created_at": "Mon, 19 Dec 2011 18:42:23 +0000", "from_user": "QueenNara531", "from_user_id": 44305602, "from_user_id_str": "44305602", "from_user_name": "shannara washington", "geo": null, "id": 148835587334479870, "id_str": "148835587334479872", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1661843684/CmFR6iU7_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661843684/CmFR6iU7_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Just arriving in NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:23 +0000", "from_user": "DanKimRedMango", "from_user_id": 18052866, "from_user_id_str": "18052866", "from_user_name": "Dan Kim", "geo": null, "id": 148835584771760130, "id_str": "148835584771760128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1660364637/dan385059_2047434039763_1661814326_1623409_1511415794_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660364637/dan385059_2047434039763_1661814326_1623409_1511415794_n_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "It's a beautiful day in New York City. #instagram #nyc http://t.co/p20wOVu6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:23 +0000", "from_user": "louisesdavis", "from_user_id": 378196641, "from_user_id_str": "378196641", "from_user_name": "Louise Smith Davis", "geo": +{"coordinates": [40.7846,-73.6319], "type": "Point"}, "id": 148835584419430400, "id_str": "148835584419430400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1555130280/web_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555130280/web_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Happy to be in NYC! RT @george2rescue The southern belle @louisesdavis is lending her expertise on OUR turf this round. http://t.co/ITQ7tGbC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:21 +0000", "from_user": "luisakroll", "from_user_id": 70375093, "from_user_id_str": "70375093", "from_user_name": "Luisa Kroll", "geo": null, "id": 148835579289796600, "id_str": "148835579289796608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/807608607/_GD16067_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/807608607/_GD16067_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "22-year-old daughter of billionaire pays $88 million for NYC apartment http://t.co/K22OnjV5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:21 +0000", "from_user": "NotherBrother", "from_user_id": 275146822, "from_user_id_str": "275146822", "from_user_name": "Nother Brother Ent.", "geo": null, "id": 148835576387350530, "id_str": "148835576387350528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702101931/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702101931/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TomCruise: TONIGHT! LIVE #MISSIONIMPOSSIBLE @GHOSTPROTOCOL #NYC #MOVIE \\u2605PREMIERE\\u2605 #BLOG COVERAGE! Join us on the red carpet! http://t.co/8FwxLVGC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:20 +0000", "from_user": "LauryJonas", "from_user_id": 67844553, "from_user_id_str": "67844553", "from_user_name": "Laura Jonas", "geo": null, "id": 148835572675387400, "id_str": "148835572675387393", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701897299/25951_104556272907269_100000586893084_114430_6860085_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701897299/25951_104556272907269_100000586893084_114430_6860085_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @HotChelleRae: Don\\u2019t forget! We are playing a private show today at 5PM EST at the @iHeartRadio Theater in NYC. Enter for tix here: http://t.co/AzJSN2zV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:20 +0000", "from_user": "HeidiTranQTY", "from_user_id": 387188064, "from_user_id_str": "387188064", "from_user_name": "Heidi Tran", "geo": null, "id": 148835572255957000, "id_str": "148835572255956992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1598643690/avatar-cartoon-64-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598643690/avatar-cartoon-64-1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Suspect in NYC torching charged with murder - The Associated Press", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:17 +0000", "from_user": "EricDundon", "from_user_id": 102554483, "from_user_id_str": "102554483", "from_user_name": "Eric Dundon", "geo": null, "id": 148835560272838660, "id_str": "148835560272838656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1370529076/7534_1166490604847_1305360433_30968250_6639235_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1370529076/7534_1166490604847_1305360433_30968250_6639235_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Who even has time to set an old woman on fire? What a sad story... http://t.co/zWdchPLF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:15 +0000", "from_user": "igotasmartphone", "from_user_id": 277087478, "from_user_id_str": "277087478", "from_user_name": "Juan Pepe", "geo": null, "id": 148835553574518800, "id_str": "148835553574518785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689485856/200607_712988478455_24401284_37940981_3606257_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689485856/200607_712988478455_24401284_37940981_3606257_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Muahahahahaha ignorance is bliss! RT @FreekeyZeakey This---->RT @BBizDAish: Uhmm RT @_cudderz Why do people say NYE?? Isn't it NYC??? Idk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:12 +0000", "from_user": "zionylennoxpr", "from_user_id": 40307393, "from_user_id_str": "40307393", "from_user_name": "zion y lennox ", "geo": null, "id": 148835537476796400, "id_str": "148835537476796416", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1499704271/losverdaderoszl_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1499704271/losverdaderoszl_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@SykO_ElTerrOr cdo vienes a nyc? En enero?", "to_user": "SykO_ElTerrOr", "to_user_id": 73885427, "to_user_id_str": "73885427", "to_user_name": "Syko El Terror", "in_reply_to_status_id": 148832220252082180, "in_reply_to_status_id_str": "148832220252082176"}, +{"created_at": "Mon, 19 Dec 2011 18:42:09 +0000", "from_user": "safesolvent", "from_user_id": 14634291, "from_user_id_str": "14634291", "from_user_name": "Martin Reisch", "geo": null, "id": 148835528106709000, "id_str": "148835528106708992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1500499005/_MG_2849_-_Version_4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1500499005/_MG_2849_-_Version_4_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@alexdao you have an incredible opportunity what with living in #NYC. if ever you wanna team up to shoot in YOUR city i'm a tweet away", "to_user": "alexdao", "to_user_id": 14620139, "to_user_id_str": "14620139", "to_user_name": "Alexandra Dao", "in_reply_to_status_id": 148835090695331840, "in_reply_to_status_id_str": "148835090695331840"}, +{"created_at": "Mon, 19 Dec 2011 18:42:07 +0000", "from_user": "Dbarone", "from_user_id": 143226329, "from_user_id_str": "143226329", "from_user_name": "Daniella Barone", "geo": null, "id": 148835517914546180, "id_str": "148835517914546176", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697059893/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697059893/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "So happy for @emilymusson! \\uD83D\\uDE0ACongrats!!! Love ya doll #LIM #NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:06 +0000", "from_user": "tennillehinzman", "from_user_id": 429511046, "from_user_id_str": "429511046", "from_user_name": "tennille hinzman", "geo": null, "id": 148835515662204930, "id_str": "148835515662204929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676366753/52436_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676366753/52436_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Suspect in NYC torching charged with murder - The Associated Press http://t.co/Z06t6m5Y", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:06 +0000", "from_user": "Vitadod", "from_user_id": 430044705, "from_user_id_str": "430044705", "from_user_name": "Vita Petrson", "geo": null, "id": 148835514722684930, "id_str": "148835514722684929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677516418/u5qqra45vu_134489302-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516418/u5qqra45vu_134489302-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "MusicSkins John Lennon - NYC - MP3 Player Skins,Accessories for Unisex, Zune 30 GB,Black: MusicSkins John Lennon... http://t.co/eTsZtBl9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:06 +0000", "from_user": "Gisselatinoco", "from_user_id": 296454713, "from_user_id_str": "296454713", "from_user_name": "\\u2665Gisselatinoco\\u2665", "geo": +{"coordinates": [40.6796,-73.8619], "type": "Point"}, "id": 148835513502142460, "id_str": "148835513502142464", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702563821/476185560_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702563821/476185560_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Tu si sabes complacer a tus Fans aki esta la prueba \\u263A en #ClubPure NYC! http://t.co/Q2visPPu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:05 +0000", "from_user": "NewsAddicts1", "from_user_id": 420892156, "from_user_id_str": "420892156", "from_user_name": "News Addicts", "geo": null, "id": 148835508380901380, "id_str": "148835508380901376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1656785194/bald-eagle3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656785194/bald-eagle3_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Suspect in NYC torching charged with murder: The man suspected of dousing a 73-year-old woman with gasoline and ... http://t.co/8oYzv550", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:04 +0000", "from_user": "ConfusedInsan", "from_user_id": 369176796, "from_user_id_str": "369176796", "from_user_name": "Moh Sin", "geo": null, "id": 148835506086613000, "id_str": "148835506086612993", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1683515466/225334_2081728282099_1211844416_32579987_3532453_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683515466/225334_2081728282099_1211844416_32579987_3532453_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "En route to NYC with @aceofhearts91 #LETSDOTHIS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:03 +0000", "from_user": "OccupyWeather", "from_user_id": 400559295, "from_user_id_str": "400559295", "from_user_name": "Occupy Weather", "geo": null, "id": 148835501649047550, "id_str": "148835501649047552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1612658667/ows_retreats_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612658667/ows_retreats_normal.jpg", "source": "<a href="http://24Ahead.com/" rel="nofollow">OccupyWeather</a>", "text": "Forecast for NYC tonight: Overcast. Low temp: 42F. #OWS #TopProg #tcot", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:02 +0000", "from_user": "ybolotyw", "from_user_id": 361101097, "from_user_id_str": "361101097", "from_user_name": "Beverley Daum", "geo": null, "id": 148835497811251200, "id_str": "148835497811251202", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1511935925/1716_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1511935925/1716_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "gay speed dating nyc: http://t.co/OZaTU1dy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:01 +0000", "from_user": "OccupyWeather", "from_user_id": 400559295, "from_user_id_str": "400559295", "from_user_name": "Occupy Weather", "geo": null, "id": 148835494329987070, "id_str": "148835494329987072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1612658667/ows_retreats_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612658667/ows_retreats_normal.jpg", "source": "<a href="http://24Ahead.com/" rel="nofollow">OccupyWeather</a>", "text": "Forecast for NYC this afternoon: Rain. High temp: 55F. #OccupyWallSt #tlot #ocra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:01 +0000", "from_user": "HeatherMHiggins", "from_user_id": 36834135, "from_user_id_str": "36834135", "from_user_name": "Heather M. Higgins", "geo": null, "id": 148835493969272830, "id_str": "148835493969272832", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/367392566/hh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/367392566/hh_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Clare_OC $88 million for a pied-\\u00E0-terre. Nice. http://t.co/eQmeo2mz", "to_user": "Clare_OC", "to_user_id": 72406810, "to_user_id_str": "72406810", "to_user_name": "Clare O'Connor", "in_reply_to_status_id": 148832392126267400, "in_reply_to_status_id_str": "148832392126267392"}, +{"created_at": "Mon, 19 Dec 2011 18:42:01 +0000", "from_user": "ArcosAlfonso", "from_user_id": 406693966, "from_user_id_str": "406693966", "from_user_name": "Jntkdvr", "geo": null, "id": 148835492220239870, "id_str": "148835492220239872", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695436655/yo_chica_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695436655/yo_chica_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Streetfilms ! Top 5 2011, NYC's Calles Completas, vale la pena http://t.co/HDFs1nhT mas seguro xa peatones bicicletas y automoviles", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:59 +0000", "from_user": "markmurray98119", "from_user_id": 18715546, "from_user_id_str": "18715546", "from_user_name": "Mark Murray", "geo": null, "id": 148835485052178430, "id_str": "148835485052178434", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1184023850/_MG_6780_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1184023850/_MG_6780_1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@NelWang I thought you nailed it with characters to spare. Great play, hope I can get to NYC to see it again.", "to_user": "NelWang", "to_user_id": 15356617, "to_user_id_str": "15356617", "to_user_name": "Nelson Wang", "in_reply_to_status_id": 148831753241497600, "in_reply_to_status_id_str": "148831753241497602"}, +{"created_at": "Mon, 19 Dec 2011 18:41:59 +0000", "from_user": "TeamUntrust", "from_user_id": 131915211, "from_user_id_str": "131915211", "from_user_name": "G $", "geo": null, "id": 148835484288811000, "id_str": "148835484288811008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/815002591/m_f6dda66c6aae22ff0631abf29377136b_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/815002591/m_f6dda66c6aae22ff0631abf29377136b_normal.jpg", "source": "<a href="http://www.nibirutech.com" rel="nofollow">TwitBird</a>", "text": "@FlyMikeMarshall What you think of this track \"Rap Horror / Keep it Hood\" from @BMONEYBK & Q http://t.co/HvcHpr1G ?\\n\\nPlease RT\\n\\n#rap\\n#NYC", "to_user": "FlyMikeMarshall", "to_user_id": 82016803, "to_user_id_str": "82016803", "to_user_name": "Mike Marshall", "in_reply_to_status_id": 148833714686787600, "in_reply_to_status_id_str": "148833714686787584"}, +{"created_at": "Mon, 19 Dec 2011 18:41:58 +0000", "from_user": "Xfilespoker", "from_user_id": 15038133, "from_user_id_str": "15038133", "from_user_name": "Tom Dwyer ", "geo": null, "id": 148835481134702600, "id_str": "148835481134702592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1598839132/218129_206450186045036_100000401691907_630491_4776751_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598839132/218129_206450186045036_100000401691907_630491_4776751_n_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "http://t.co/AZFjt0E4 #n17 #occupy Bat Man Signal NYC (Video) #OO #OccupyHarrisburg #OWS RT if you want to.. ;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:57 +0000", "from_user": "elprez95", "from_user_id": 120965070, "from_user_id_str": "120965070", "from_user_name": "SHAWN BARTCZAK", "geo": null, "id": 148835474876801020, "id_str": "148835474876801024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1577662823/TWD-S2-Icons-Rick_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1577662823/TWD-S2-Icons-Rick_normal.gif", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "@RuiterWrongFAN: Baron Davis Headed To Big Apple, Signs W/ Knicks ? CBS Cleveland: http://t.co/XXCfpNlX <Best wishes2 BaronDavis in the NYC>", "to_user": "RuiterWrongFAN", "to_user_id": 29753270, "to_user_id_str": "29753270", "to_user_name": "Daryl Ruiter"}, +{"created_at": "Mon, 19 Dec 2011 18:41:55 +0000", "from_user": "Faith_FTH", "from_user_id": 363276031, "from_user_id_str": "363276031", "from_user_name": "Faith", "geo": null, "id": 148835468241416200, "id_str": "148835468241416192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1516416584/faith_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1516416584/faith_normal.jpeg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@alagracie vacay in nyc! What are your cant-miss restaurants?", "to_user": "alagracie", "to_user_id": 90003168, "to_user_id_str": "90003168", "to_user_name": "Gracie"}, +{"created_at": "Mon, 19 Dec 2011 18:41:55 +0000", "from_user": "Horup1", "from_user_id": 171970194, "from_user_id_str": "171970194", "from_user_name": "MR K", "geo": null, "id": 148835466806956030, "id_str": "148835466806956032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1090648187/4838980726_b0a00f2b23_b_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1090648187/4838980726_b0a00f2b23_b_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @therealmikedean: #WTT U.S. TOUR IS A WRAP. PJ TO NYC TO START NEXT PHASE.. NEVER STOPS DOES IT?? WHAT'S BETTER THAN THAT?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:54 +0000", "from_user": "YemenNewsDesk", "from_user_id": 381616651, "from_user_id_str": "381616651", "from_user_name": "Yemen News Desk", "geo": null, "id": 148835465359921150, "id_str": "148835465359921153", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1564070571/logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1564070571/logo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NYC man arrested in woman\\u2019s elevator burning death: NEW YORK: A man who reeked of gasoline when he entered a pol... http://t.co/sjrf7Hjj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:52 +0000", "from_user": "billboard", "from_user_id": 9695312, "from_user_id_str": "9695312", "from_user_name": "Billboard ", "geo": null, "id": 148835455167774720, "id_str": "148835455167774720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1173827542/bb_twitter_icon._jpg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1173827542/bb_twitter_icon._jpg_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @HotChelleRae: Don\\u2019t forget! We are playing a private show today at 5PM EST at the @iHeartRadio Theater in NYC. Enter for tix here: http://t.co/AzJSN2zV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:51 +0000", "from_user": "pluslily", "from_user_id": 115247248, "from_user_id_str": "115247248", "from_user_name": "Maria", "geo": null, "id": 148835451954925570, "id_str": "148835451954925568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1598273756/Photo_139_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598273756/Photo_139_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "@marcuscooks how can i pick one... creole grits!! and catfish.. i love it!!! #food #NYC and u even make dirty rice and it's the right kind!!", "to_user": "MarcusCooks", "to_user_id": 65733755, "to_user_id_str": "65733755", "to_user_name": "Marcus Samuelsson", "in_reply_to_status_id": 148834374333374460, "in_reply_to_status_id_str": "148834374333374464"}, +{"created_at": "Mon, 19 Dec 2011 18:41:49 +0000", "from_user": "J0se_phine", "from_user_id": 19510455, "from_user_id_str": "19510455", "from_user_name": "Josephine", "geo": null, "id": 148835441087483900, "id_str": "148835441087483905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/614603823/wallowpea_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/614603823/wallowpea_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Definitely going to book a break to NYC next year whether I have to go there myself or not :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:47 +0000", "from_user": "guestofaguest", "from_user_id": 14415108, "from_user_id_str": "14415108", "from_user_name": "Stanley Stuyvesant", "geo": null, "id": 148835432807927800, "id_str": "148835432807927808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1155265052/twitter_8_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1155265052/twitter_8_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @NYNightlife: Marcus Bifaro talks about the newly opened @iMOKBar http://t.co/uJAzZMat", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:46 +0000", "from_user": "Bee1ne", "from_user_id": 128035489, "from_user_id_str": "128035489", "from_user_name": " Bee1ne ", "geo": null, "id": 148835430685605900, "id_str": "148835430685605889", "iso_language_code": "hu", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1589810390/tumblr_lranvkvbCl1qmhzdpo1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1589810390/tumblr_lranvkvbCl1qmhzdpo1_500_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "#dope RT @PatoPaez: Kenny's #streetart #nyc http://t.co/bjTz2HAT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:43 +0000", "from_user": "kellylyman", "from_user_id": 113190597, "from_user_id_str": "113190597", "from_user_name": "Kelly Lyman", "geo": null, "id": 148835418765393920, "id_str": "148835418765393921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1395770225/IMG_6064_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1395770225/IMG_6064_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@KMWalton1 I'm loving these posts about your experience in NYC!!!", "to_user": "KMWalton1", "to_user_id": 89972696, "to_user_id_str": "89972696", "to_user_name": "K.M. Walton", "in_reply_to_status_id": 148803277688012800, "in_reply_to_status_id_str": "148803277688012802"}, +{"created_at": "Mon, 19 Dec 2011 18:41:42 +0000", "from_user": "CataOhSy", "from_user_id": 217196011, "from_user_id_str": "217196011", "from_user_name": "catalina guerra", "geo": null, "id": 148835412864012300, "id_str": "148835412864012288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1180175272/lady_gaga_2-1600x1200_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1180175272/lady_gaga_2-1600x1200_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @ladygaga: Woohooo!! Turn on 100.3 in NYC!! Marry The Night is on!! I love my hometown!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:40 +0000", "from_user": "SeriouslySophia", "from_user_id": 264285100, "from_user_id_str": "264285100", "from_user_name": "Sophia Sieu", "geo": null, "id": 148835405045837820, "id_str": "148835405045837825", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1269200773/1255399456_l_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1269200773/1255399456_l_2_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "TGiM? F*ck Mondays... Last day in NYC... Saddest one so far... </3 #heartbroken", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:38 +0000", "from_user": "eastcoastmed", "from_user_id": 17458824, "from_user_id_str": "17458824", "from_user_name": "eastcoastmed", "geo": null, "id": 148835396116152320, "id_str": "148835396116152320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/64783995/ecm-logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/64783995/ecm-logo_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Marcia G. Yerman: How Film and Philanthropy Work Together - The DOC NYC Festival featured a panel examining the inte... http://t.co/dWAA0Fvg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:37 +0000", "from_user": "iceberggrimm", "from_user_id": 23451393, "from_user_id_str": "23451393", "from_user_name": "Iceberg Grimm", "geo": null, "id": 148835393607974900, "id_str": "148835393607974914", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/872612721/Saint_Anger_300x300_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/872612721/Saint_Anger_300x300_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "#NYC => http://t.co/EIJjKVFq <= Saint Anger's \"Fly Out Fresh\" #VIDEO HOT! #TX #MIAMI #OK #GERMANY #UK #T1000ADAY #FOLLOBACK #RT8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:37 +0000", "from_user": "eastcoastmed", "from_user_id": 17458824, "from_user_id_str": "17458824", "from_user_name": "eastcoastmed", "geo": null, "id": 148835390780997630, "id_str": "148835390780997632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/64783995/ecm-logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/64783995/ecm-logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Marcia G. Yerman: How Film and Philanthropy Work Together - The DOC NYC Festival featured a panel examining the inte... http://t.co/pBzhzwgk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:36 +0000", "from_user": "Zollm", "from_user_id": 78430911, "from_user_id_str": "78430911", "from_user_name": "Zoll M", "geo": null, "id": 148835390357381120, "id_str": "148835390357381120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/445002019/ecm-logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/445002019/ecm-logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Marcia G. Yerman: How Film and Philanthropy Work Together - The DOC NYC Festival featured a panel examining the inte... http://t.co/f3sRDrep", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:36 +0000", "from_user": "lifepak500", "from_user_id": 78431760, "from_user_id_str": "78431760", "from_user_name": "Lifepak 500", "geo": null, "id": 148835389979889660, "id_str": "148835389979889664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/444988238/ecm-logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/444988238/ecm-logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Marcia G. Yerman: How Film and Philanthropy Work Together - The DOC NYC Festival featured a panel examining the inte... http://t.co/BFbAOJ0t", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:36 +0000", "from_user": "Lifepak12", "from_user_id": 78430263, "from_user_id_str": "78430263", "from_user_name": "Lifepak 12", "geo": null, "id": 148835389719842800, "id_str": "148835389719842816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/444996086/ecm-logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/444996086/ecm-logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Marcia G. Yerman: How Film and Philanthropy Work Together - The DOC NYC Festival featured a panel examining the inte... http://t.co/QHXqzpWK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:36 +0000", "from_user": "Lailabird12", "from_user_id": 118735820, "from_user_id_str": "118735820", "from_user_name": "Mary Benbouguettaya", "geo": null, "id": 148835388969058300, "id_str": "148835388969058305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1566692058/1uC1oFLz8AAEBHEK2SCdzpmAB.128_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566692058/1uC1oFLz8AAEBHEK2SCdzpmAB.128_normal.png", "source": "<a href="http://www.yahoo.com" rel="nofollow">Yahoo!</a>", "text": "commented: Like everyone else said, Where's the picture? http://t.co/amFyifJm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:36 +0000", "from_user": "JAIM3_ANDR3S", "from_user_id": 366703535, "from_user_id_str": "366703535", "from_user_name": "J.Andr\\u00E9s", "geo": null, "id": 148835388709019650, "id_str": "148835388709019648", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1592261925/Imagen-063_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592261925/Imagen-063_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Sab\\u00EDaUsted qe comprar una licencia de taxi en Nueva York #NYC costaba US$10 en 1937, y hoy vale un mill\\u00F3n de d\\u00F3lares. #NuevaYork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:34 +0000", "from_user": "SUPERSTARMIX", "from_user_id": 94373057, "from_user_id_str": "94373057", "from_user_name": "Marco Santaniello", "geo": null, "id": 148835378076454900, "id_str": "148835378076454912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662019978/ME-NEW-SITO_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662019978/ME-NEW-SITO_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@SUPERSTARMIX #style #NYC #manhattan around #chelsea #skirt and #tshirt by @SUPERSTARMIX :P #followme :P", "to_user": "SUPERSTARMIX", "to_user_id": 94373057, "to_user_id_str": "94373057", "to_user_name": "Marco Santaniello"}, +{"created_at": "Mon, 19 Dec 2011 18:41:33 +0000", "from_user": "Clarafulgue", "from_user_id": 171663393, "from_user_id_str": "171663393", "from_user_name": "Clara Fulgueiras", "geo": null, "id": 148835376813981700, "id_str": "148835376813981696", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1633770594/image__8__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633770594/image__8__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/hxqfNpRd a ver si os gusta el dibujo que he hecho con la tablet de mi hermana en NY :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:31 +0000", "from_user": "iknowyoo", "from_user_id": 21649540, "from_user_id_str": "21649540", "from_user_name": "iknowyoo", "geo": null, "id": 148835367880110080, "id_str": "148835367880110080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/401451843/avatarpic-l_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/401451843/avatarpic-l_normal.png", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "I just became the mayor of U2i NYC Office on @foursquare! http://t.co/3ZIW0MoP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:30 +0000", "from_user": "clemmethvarence", "from_user_id": 146107450, "from_user_id_str": "146107450", "from_user_name": "Clem Varence", "geo": null, "id": 148835364457545730, "id_str": "148835364457545728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688362716/IMG-20111209-00235_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688362716/IMG-20111209-00235_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "#ThisChristmas imma watch the ball drop in NYC again.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:29 +0000", "from_user": "Sibabe23", "from_user_id": 140031957, "from_user_id_str": "140031957", "from_user_name": "Siboo", "geo": null, "id": 148835360930136060, "id_str": "148835360930136066", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670406817/330795396_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670406817/330795396_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Yayy we shud lol RT @OLUWASANDRA: Yaaay let's b bffs! RT @Sibabe23: My name is Amazing!! Nyc to meet u.. RT ... http://t.co/A2rkYK0m", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:28 +0000", "from_user": "MrArielBurke", "from_user_id": 115499301, "from_user_id_str": "115499301", "from_user_name": "Ariel Burke", "geo": +{"coordinates": [40.7716,-73.8727], "type": "Point"}, "id": 148835355150389250, "id_str": "148835355150389248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1694249779/ya_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694249779/ya_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I hope NYC is ready for us... @BakeUpJowman @aroxxxx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:41:36 +0000", "from_user": "Lailabird12", "from_user_id": 118735820, "from_user_id_str": "118735820", "from_user_name": "Mary Benbouguettaya", "geo": null, "id": 148835388969058300, "id_str": "148835388969058305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1566692058/1uC1oFLz8AAEBHEK2SCdzpmAB.128_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566692058/1uC1oFLz8AAEBHEK2SCdzpmAB.128_normal.png", "source": "<a href="http://www.yahoo.com" rel="nofollow">Yahoo!</a>", "text": "commented: Like everyone else said, Where's the picture? http://t.co/amFyifJm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:36 +0000", "from_user": "JAIM3_ANDR3S", "from_user_id": 366703535, "from_user_id_str": "366703535", "from_user_name": "J.Andr\\u00E9s", "geo": null, "id": 148835388709019650, "id_str": "148835388709019648", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1592261925/Imagen-063_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592261925/Imagen-063_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Sab\\u00EDaUsted qe comprar una licencia de taxi en Nueva York #NYC costaba US$10 en 1937, y hoy vale un mill\\u00F3n de d\\u00F3lares. #NuevaYork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:34 +0000", "from_user": "SUPERSTARMIX", "from_user_id": 94373057, "from_user_id_str": "94373057", "from_user_name": "Marco Santaniello", "geo": null, "id": 148835378076454900, "id_str": "148835378076454912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662019978/ME-NEW-SITO_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662019978/ME-NEW-SITO_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@SUPERSTARMIX #style #NYC #manhattan around #chelsea #skirt and #tshirt by @SUPERSTARMIX :P #followme :P", "to_user": "SUPERSTARMIX", "to_user_id": 94373057, "to_user_id_str": "94373057", "to_user_name": "Marco Santaniello"}, +{"created_at": "Mon, 19 Dec 2011 18:41:33 +0000", "from_user": "Clarafulgue", "from_user_id": 171663393, "from_user_id_str": "171663393", "from_user_name": "Clara Fulgueiras", "geo": null, "id": 148835376813981700, "id_str": "148835376813981696", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1633770594/image__8__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633770594/image__8__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/hxqfNpRd a ver si os gusta el dibujo que he hecho con la tablet de mi hermana en NY :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:31 +0000", "from_user": "iknowyoo", "from_user_id": 21649540, "from_user_id_str": "21649540", "from_user_name": "iknowyoo", "geo": null, "id": 148835367880110080, "id_str": "148835367880110080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/401451843/avatarpic-l_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/401451843/avatarpic-l_normal.png", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "I just became the mayor of U2i NYC Office on @foursquare! http://t.co/3ZIW0MoP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:30 +0000", "from_user": "clemmethvarence", "from_user_id": 146107450, "from_user_id_str": "146107450", "from_user_name": "Clem Varence", "geo": null, "id": 148835364457545730, "id_str": "148835364457545728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688362716/IMG-20111209-00235_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688362716/IMG-20111209-00235_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "#ThisChristmas imma watch the ball drop in NYC again.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:29 +0000", "from_user": "Sibabe23", "from_user_id": 140031957, "from_user_id_str": "140031957", "from_user_name": "Siboo", "geo": null, "id": 148835360930136060, "id_str": "148835360930136066", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670406817/330795396_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670406817/330795396_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Yayy we shud lol RT @OLUWASANDRA: Yaaay let's b bffs! RT @Sibabe23: My name is Amazing!! Nyc to meet u.. RT ... http://t.co/A2rkYK0m", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:28 +0000", "from_user": "MrArielBurke", "from_user_id": 115499301, "from_user_id_str": "115499301", "from_user_name": "Ariel Burke", "geo": +{"coordinates": [40.7716,-73.8727], "type": "Point"}, "id": 148835355150389250, "id_str": "148835355150389248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1694249779/ya_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694249779/ya_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I hope NYC is ready for us... @BakeUpJowman @aroxxxx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:27 +0000", "from_user": "IrishTMc14", "from_user_id": 199472246, "from_user_id_str": "199472246", "from_user_name": "Tom McDonough", "geo": null, "id": 148835351958528000, "id_str": "148835351958528000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1637916775/layup_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637916775/layup_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Baron_Davis welcome to NYC, the new greatest show on hardwood", "to_user": "Baron_Davis", "to_user_id": 21056862, "to_user_id_str": "21056862", "to_user_name": "Baron Davis"}, +{"created_at": "Mon, 19 Dec 2011 18:41:27 +0000", "from_user": "mcfadyenumjqwy8", "from_user_id": 390297298, "from_user_id_str": "390297298", "from_user_name": "Mcfadyen Oxford", "geo": null, "id": 148835350322753540, "id_str": "148835350322753537", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1586831007/f_51_w_0005_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586831007/f_51_w_0005_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Stop by toppscards :) \"Jonnybones: Heading to NYC with my bro/ road trainer Six_Guns_Gibson to do a uKde", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:25 +0000", "from_user": "IamCrystal_Meth", "from_user_id": 202873670, "from_user_id_str": "202873670", "from_user_name": "The Greatest High ", "geo": null, "id": 148835342953357300, "id_str": "148835342953357312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684823855/SAM_0442__2___709x1280__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684823855/SAM_0442__2___709x1280__normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for iPhone</a>", "text": "So is Columbus 72 the only thing shaking on Christmas day in NYC? That's all I've heard about", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:24 +0000", "from_user": "n_elliott", "from_user_id": 328577112, "from_user_id_str": "328577112", "from_user_name": "nick elliott", "geo": null, "id": 148835337731448830, "id_str": "148835337731448832", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1658483014/IMG_0081_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658483014/IMG_0081_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@RudeBoiWest25_ Chicago or NYC over break?", "to_user": "RudeBoiWest25_", "to_user_id": 203408239, "to_user_id_str": "203408239", "to_user_name": "Josh West"}, +{"created_at": "Mon, 19 Dec 2011 18:41:23 +0000", "from_user": "LovelyAnnElater", "from_user_id": 376204497, "from_user_id_str": "376204497", "from_user_name": "Lovely Ann Elater", "geo": null, "id": 148835333356797950, "id_str": "148835333356797954", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1550162723/lovelyann_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1550162723/lovelyann_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Business class airline Odyssey plans London-NYC route: Bankers may be languishing in popularity polls but a new ... http://t.co/4TBtNU7g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:21 +0000", "from_user": "QueensJobs", "from_user_id": 345561361, "from_user_id_str": "345561361", "from_user_name": "Queens Jobs", "geo": null, "id": 148835325664432130, "id_str": "148835325664432129", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1469723316/1DollarA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1469723316/1DollarA_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Queens / NYC Jobs; Application Specialist - Open Systems at Fiserv Card Services (Morris Plains, NJ) http://t.co/aG2VWTDt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:21 +0000", "from_user": "QueensJobs", "from_user_id": 345561361, "from_user_id_str": "345561361", "from_user_name": "Queens Jobs", "geo": null, "id": 148835324011888640, "id_str": "148835324011888640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1469723316/1DollarA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1469723316/1DollarA_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Queens / NYC Jobs; SharePoint Solution Architect at Grg Consulting (New York, NY) http://t.co/aG2VWTDt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:20 +0000", "from_user": "QueensJobs", "from_user_id": 345561361, "from_user_id_str": "345561361", "from_user_name": "Queens Jobs", "geo": null, "id": 148835322275446800, "id_str": "148835322275446785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1469723316/1DollarA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1469723316/1DollarA_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Queens / NYC Jobs; Junior Information Architect at Rokkan (New York, NY) http://t.co/aG2VWTDt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:20 +0000", "from_user": "QueensJobs", "from_user_id": 345561361, "from_user_id_str": "345561361", "from_user_name": "Queens Jobs", "geo": null, "id": 148835320459309060, "id_str": "148835320459309056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1469723316/1DollarA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1469723316/1DollarA_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Queens / NYC Jobs; Loan Officer at Vantage Recruiting (Philadelphia, PA) http://t.co/aG2VWTDt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:19 +0000", "from_user": "QueensJobs", "from_user_id": 345561361, "from_user_id_str": "345561361", "from_user_name": "Queens Jobs", "geo": null, "id": 148835316566994940, "id_str": "148835316566994945", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1469723316/1DollarA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1469723316/1DollarA_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Queens / NYC Jobs; VP Engineering at Storydesk (New York, NY) http://t.co/aG2VWTDt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:14 +0000", "from_user": "Ed_Shea", "from_user_id": 54757273, "from_user_id_str": "54757273", "from_user_name": "Edward Shea Jr", "geo": null, "id": 148835297562595330, "id_str": "148835297562595328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/302726441/0819061508_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/302726441/0819061508_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "On my way to NYC to see the tree and the holiday windows don't tell work :-/", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:14 +0000", "from_user": "beyond_elegant", "from_user_id": 323054261, "from_user_id_str": "323054261", "from_user_name": "kaylah_simone", "geo": null, "id": 148835296199446530, "id_str": "148835296199446528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1679922211/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679922211/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Hitting up these thrift stores tomorrow while im in nyc . #i can dig that", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:13 +0000", "from_user": "WallStreetJob", "from_user_id": 346545558, "from_user_id_str": "346545558", "from_user_name": "Wall Street Job", "geo": null, "id": 148835291229208580, "id_str": "148835291229208576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1472462673/1DollarB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1472462673/1DollarB_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Wall Street NYC Jobs Application Specialist - Open Systems at Fiserv Card Services (Morris Plains, NJ) http://t.co/u1ov2pz5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:13 +0000", "from_user": "OccupyPics", "from_user_id": 384286683, "from_user_id_str": "384286683", "from_user_name": "Stevie T", "geo": null, "id": 148835291120148480, "id_str": "148835291120148480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1603672743/Occupy-PICS-_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1603672743/Occupy-PICS-_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Photo: | #OccupyWallStreet #D17 |: Steve O's Photos posted a... http://t.co/mZNzDOzm #nyc #newyorkcity #protest #occupyWallStreet #ows", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:12 +0000", "from_user": "WallStreetJob", "from_user_id": 346545558, "from_user_id_str": "346545558", "from_user_name": "Wall Street Job", "geo": null, "id": 148835289815719940, "id_str": "148835289815719941", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1472462673/1DollarB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1472462673/1DollarB_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Wall Street NYC Jobs SharePoint Solution Architect at Grg Consulting (New York, NY) http://t.co/u1ov2pz5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:12 +0000", "from_user": "spettypi", "from_user_id": 32410378, "from_user_id_str": "32410378", "from_user_name": "Shannon Pettypiece", "geo": null, "id": 148835288079286270, "id_str": "148835288079286272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692030737/twitter2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692030737/twitter2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@mittromney spotted in the Bloomberg building in NYC today. Welcome to Bloomberg Mitt", "to_user": "MittRomney", "to_user_id": 50055701, "to_user_id_str": "50055701", "to_user_name": "Mitt Romney"}, +{"created_at": "Mon, 19 Dec 2011 18:41:12 +0000", "from_user": "WallStreetJob", "from_user_id": 346545558, "from_user_id_str": "346545558", "from_user_name": "Wall Street Job", "geo": null, "id": 148835287085223940, "id_str": "148835287085223936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1472462673/1DollarB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1472462673/1DollarB_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Wall Street NYC Jobs Junior Information Architect at Rokkan (New York, NY) http://t.co/u1ov2pz5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:11 +0000", "from_user": "WallStreetJob", "from_user_id": 346545558, "from_user_id_str": "346545558", "from_user_name": "Wall Street Job", "geo": null, "id": 148835285407506430, "id_str": "148835285407506433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1472462673/1DollarB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1472462673/1DollarB_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Wall Street NYC Jobs Loan Officer at Vantage Recruiting (Philadelphia, PA) http://t.co/u1ov2pz5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:11 +0000", "from_user": "WallStreetJob", "from_user_id": 346545558, "from_user_id_str": "346545558", "from_user_name": "Wall Street Job", "geo": null, "id": 148835282618298370, "id_str": "148835282618298369", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1472462673/1DollarB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1472462673/1DollarB_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Wall Street NYC Jobs VP Engineering at Storydesk (New York, NY) http://t.co/u1ov2pz5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:10 +0000", "from_user": "thecamgirldiary", "from_user_id": 225621294, "from_user_id_str": "225621294", "from_user_name": "The Cam Girl Diary", "geo": null, "id": 148835281175457800, "id_str": "148835281175457792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1368562655/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1368562655/twitter_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "NYC non-\\u2019AA\\u2019 girls basketball rankings http://t.co/Pp2mJUZN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:10 +0000", "from_user": "Fabian_AAG", "from_user_id": 227193211, "from_user_id_str": "227193211", "from_user_name": "Fabian Aguinagalde \\u2714", "geo": null, "id": 148835279510306800, "id_str": "148835279510306816", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1661772078/CIMG592_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661772078/CIMG592_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @UnaVainaLoca1: Descarga http://t.co/hAuvHxIX #RD #DMV #Miami #NYC #Colombia #VNZL #Chile #Ecuador #Espa\\u00F1a #Nicaragua #ElSalvador #Guatemala #Peru #LATINOS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:09 +0000", "from_user": "SarahGowrie", "from_user_id": 429222954, "from_user_id_str": "429222954", "from_user_name": "Sarah Gowrie", "geo": null, "id": 148835275689312260, "id_str": "148835275689312256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676427659/servlet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676427659/servlet_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@smhelloladies Are you doing any shows in NYC?", "to_user": "smhelloladies", "to_user_id": 367284950, "to_user_id_str": "367284950", "to_user_name": "Stephen Merchant", "in_reply_to_status_id": 148834610439127040, "in_reply_to_status_id_str": "148834610439127042"}, +{"created_at": "Mon, 19 Dec 2011 18:41:09 +0000", "from_user": "melissamarin", "from_user_id": 21111355, "from_user_id_str": "21111355", "from_user_name": "melissa marin", "geo": null, "id": 148835273386639360, "id_str": "148835273386639360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1407327988/n48600421_31614271_3247_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1407327988/n48600421_31614271_3247_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@thegreatimc ugh rather be in manhattan doing laundry than sherman oaks!!! hope you are LOVING NYC!!!!!!", "to_user": "thegreatimc", "to_user_id": 279152195, "to_user_id_str": "279152195", "to_user_name": "Jonard Nelson", "in_reply_to_status_id": 148831852973666300, "in_reply_to_status_id_str": "148831852973666304"}, +{"created_at": "Mon, 19 Dec 2011 18:41:06 +0000", "from_user": "neilnicholson", "from_user_id": 24996750, "from_user_id_str": "24996750", "from_user_name": "Neil Nicholson", "geo": +{"coordinates": [35.2046,-80.7502], "type": "Point"}, "id": 148835262208815100, "id_str": "148835262208815105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/198436560/Neil2jpg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/198436560/Neil2jpg_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Hey how was NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:04 +0000", "from_user": "BonzGrafx", "from_user_id": 415720391, "from_user_id_str": "415720391", "from_user_name": "BonzGrafx", "geo": null, "id": 148835254021537800, "id_str": "148835254021537792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1659311003/bonzg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659311003/bonzg_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Some how Al Sharpton is going to find a way to defend this guy http://t.co/CjVuYKAC Suspect in NYC woman's burning appears in court", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:04 +0000", "from_user": "WhosYourDanie", "from_user_id": 53233666, "from_user_id_str": "53233666", "from_user_name": "Danielle Corbin", "geo": null, "id": 148835253849563140, "id_str": "148835253849563136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683869582/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683869582/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I love how 11 miles in NYC can take you from one borough to another two completely different places. 11 miles in GA barely gets you anywhere", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:03 +0000", "from_user": "oscarclovecom", "from_user_id": 16137104, "from_user_id_str": "16137104", "from_user_name": "oscarclove.com", "geo": null, "id": 148835250330546180, "id_str": "148835250330546176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1631324763/logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631324763/logo_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Some how Al Sharpton is going to find a way to defend this guy http://t.co/1We5kotP Suspect in NYC woman's burning appears in court", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:01 +0000", "from_user": "alcan7", "from_user_id": 48610056, "from_user_id_str": "48610056", "from_user_name": "Alberto Candelaria", "geo": null, "id": 148835239693783040, "id_str": "148835239693783040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1490718684/Puerto_Rico_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1490718684/Puerto_Rico_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "@taylorswift13 When the new 1 WTC is lite up @ nite in NYC the song I think about is Enchated because it sparkles just like the song. xoAC", "to_user": "taylorswift13", "to_user_id": 17919972, "to_user_id_str": "17919972", "to_user_name": "taylorswift13"}, +{"created_at": "Mon, 19 Dec 2011 18:41:00 +0000", "from_user": "Thamih_sofly", "from_user_id": 440884369, "from_user_id_str": "440884369", "from_user_name": "Thami_hadebe", "geo": null, "id": 148835236216700930, "id_str": "148835236216700928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @LeratoMathe: The outfit is nyc, bt wud luk beta on sum1 smaller. She luks lk a ray of golden sun. RT @ShortyNaomi: Queen luks nyc in Yellow #Generations", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:59 +0000", "from_user": "SjaakSeen", "from_user_id": 107080459, "from_user_id_str": "107080459", "from_user_name": "Sjaak Seen", "geo": null, "id": 148835232722849800, "id_str": "148835232722849793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1460339163/Sjaak_Seen_at_work3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1460339163/Sjaak_Seen_at_work3_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "RT: Video of NYC #firefighters escaping burning Brooklyn brownstone: http://t.co/7UDiMibJ\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:59 +0000", "from_user": "Lailabird12", "from_user_id": 118735820, "from_user_id_str": "118735820", "from_user_name": "Mary Benbouguettaya", "geo": null, "id": 148835232034988030, "id_str": "148835232034988032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1566692058/1uC1oFLz8AAEBHEK2SCdzpmAB.128_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566692058/1uC1oFLz8AAEBHEK2SCdzpmAB.128_normal.png", "source": "<a href="http://www.yahoo.com" rel="nofollow">Yahoo!</a>", "text": "gave a thumbs up to pegleg's comment: I'm sick of Yahoo's little strip ad, across the bottom of the my ... http://t.co/GgiXLDnl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:58 +0000", "from_user": "GinConCola", "from_user_id": 301274238, "from_user_id_str": "301274238", "from_user_name": "ColaConGin", "geo": null, "id": 148835229182869500, "id_str": "148835229182869505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692683694/IMG04521-20111130-0855_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692683694/IMG04521-20111130-0855_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @DrinkEnglishGin: Some of @DrinkEnglishGin's favorite NYC bars made the cut! http://t.co/AkLjHjkU @selenawrites", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:54 +0000", "from_user": "KarlyKitching", "from_user_id": 103249191, "from_user_id_str": "103249191", "from_user_name": "Jane D\\u262Ee", "geo": null, "id": 148835214213394430, "id_str": "148835214213394432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1535033142/asd__2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1535033142/asd__2__normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Popdust: @KarlyKitching Check out Ep. 1 of \"On The Road With Patrick Stump!\" Ride with him to an NYC guitar shop and more... http://t.co/WHRBx7Bu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:54 +0000", "from_user": "nick1lewis1", "from_user_id": 150707622, "from_user_id_str": "150707622", "from_user_name": "NickLewis", "geo": null, "id": 148835212179144700, "id_str": "148835212179144705", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1672099090/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672099090/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Paris, Amsterdam, Boston, NYC - that's just December.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:52 +0000", "from_user": "Mr_BiTCHEZZZ", "from_user_id": 39293357, "from_user_id_str": "39293357", "from_user_name": "Renaissance Man", "geo": null, "id": 148835202028929020, "id_str": "148835202028929025", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686033422/imagejpeg_2_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686033422/imagejpeg_2_1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @7_I_Am: Talking about sistas with weaves but your woman got more tracks than the NYC subway system. FOH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:51 +0000", "from_user": "realteflonchess", "from_user_id": 336067813, "from_user_id_str": "336067813", "from_user_name": "teflon marsham ", "geo": null, "id": 148835201072644100, "id_str": "148835201072644096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698310237/7u041b_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698310237/7u041b_normal.jpeg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@FaceoftheVI nyc or la that where you need to go", "to_user": "FaceoftheVI", "to_user_id": 255534271, "to_user_id_str": "255534271", "to_user_name": "Kareem Thomas", "in_reply_to_status_id": 148832866464305150, "in_reply_to_status_id_str": "148832866464305152"}, +{"created_at": "Mon, 19 Dec 2011 18:40:50 +0000", "from_user": "food_democracy", "from_user_id": 18091706, "from_user_id_str": "18091706", "from_user_name": "food_democracy", "geo": null, "id": 148835195645214720, "id_str": "148835195645214720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1337313262/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1337313262/Untitled_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @cookingupastory FNwire Farmers Join In Solidarity with Occupy Wall Street Protest in NYC http://t.co/yLxPFYn5 h/t @food_democracy #ows", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:50 +0000", "from_user": "NYTIMESJOBZ", "from_user_id": 140543571, "from_user_id_str": "140543571", "from_user_name": "Alex Brown", "geo": null, "id": 148835194923790340, "id_str": "148835194923790337", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Sr. PM Needed! - CRM and Sales Analytics - NYC: New York City, My client, a top tier investment bank, is looking... http://t.co/Wc9q7wrx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:49 +0000", "from_user": "FleetwoodDaniel", "from_user_id": 317580772, "from_user_id_str": "317580772", "from_user_name": "Daniel Fleetwood", "geo": null, "id": 148835192818249730, "id_str": "148835192818249728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1397465536/IMG_5852__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1397465536/IMG_5852__1__normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Wow! #NYC police: Suspect says woman set afire over debt - Yahoo! News http://t.co/y4cfVAPq via @YahooNews #crazypeople #burnedalive", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:48 +0000", "from_user": "Lailabird12", "from_user_id": 118735820, "from_user_id_str": "118735820", "from_user_name": "Mary Benbouguettaya", "geo": null, "id": 148835187726352400, "id_str": "148835187726352384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1566692058/1uC1oFLz8AAEBHEK2SCdzpmAB.128_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566692058/1uC1oFLz8AAEBHEK2SCdzpmAB.128_normal.png", "source": "<a href="http://www.yahoo.com" rel="nofollow">Yahoo!</a>", "text": "gave a thumbs up to allenjinx's comment: would it be THAT hard to publish a picture with the story?? http://t.co/9KibyYka", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:48 +0000", "from_user": "CSI_FLACK_NYR", "from_user_id": 18675372, "from_user_id_str": "18675372", "from_user_name": "Dianne Gee ", "geo": null, "id": 148835185784406000, "id_str": "148835185784406016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1577226741/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1577226741/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TomCruise: Tom answers your questions at the NYC M:I-@GhostProtocol Premiere 2night! Submit your questions w/ #MissionNYC http://t.co/8FwxLVGC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:46 +0000", "from_user": "GOLDANDCHAIN", "from_user_id": 318607114, "from_user_id_str": "318607114", "from_user_name": "Gold&Chain", "geo": null, "id": 148835180684120060, "id_str": "148835180684120064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1498819546/glossy18aug_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1498819546/glossy18aug_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @IRockTheBelles: Can anyone hook up dj sets in NYC. Going on hols there and wanna spin for love not money! Can return the favour in London! RT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:45 +0000", "from_user": "xRedRoverx", "from_user_id": 176657599, "from_user_id_str": "176657599", "from_user_name": "Kristi", "geo": null, "id": 148835176246554620, "id_str": "148835176246554624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1523378880/me_August_2011_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1523378880/me_August_2011_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @redostoneage: Copenhagen: Religion of Peace attacks Hare Krishna Temple http://t.co/3fjTAJJH #p2 #topprog #maddow #msnbc #cnn #nyc #npr #pbs #news", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:43 +0000", "from_user": "ladybird_09", "from_user_id": 76409603, "from_user_id_str": "76409603", "from_user_name": "Adriana Castillo", "geo": null, "id": 148835164548632580, "id_str": "148835164548632576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1659654779/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659654779/image_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "#subway #mta #NYC #astoria http://t.co/kwFMmjq4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:42 +0000", "from_user": "jillgurich", "from_user_id": 42073477, "from_user_id_str": "42073477", "from_user_name": "Jill Gurich", "geo": null, "id": 148835161172226050, "id_str": "148835161172226048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1098873715/DSC03648_2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1098873715/DSC03648_2_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@mycomet525 thats the weekend i will be in NYC too!!", "to_user": "mycomet525", "to_user_id": 45745037, "to_user_id_str": "45745037", "to_user_name": "Hayley Miller", "in_reply_to_status_id": 148831502820581380, "in_reply_to_status_id_str": "148831502820581377"}, +{"created_at": "Mon, 19 Dec 2011 18:40:41 +0000", "from_user": "jennyfenig", "from_user_id": 14554068, "from_user_id_str": "14554068", "from_user_name": "jennyfenig", "geo": null, "id": 148835158324289540, "id_str": "148835158324289536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1155525236/Jenny_-_red_sweater__web__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1155525236/Jenny_-_red_sweater__web__normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Are you ready to step forward? This is for you.... http://t.co/zFB4ikjq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:39 +0000", "from_user": "Hi_LarryBrown", "from_user_id": 110242883, "from_user_id_str": "110242883", "from_user_name": "Hillary Brown", "geo": null, "id": 148835151210749950, "id_str": "148835151210749953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1589001334/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1589001334/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@nikabolie check now maybe I spelled it wrong but I sent it when you were in NYC my love", "to_user": "nikabolie", "to_user_id": 428722765, "to_user_id_str": "428722765", "to_user_name": "Nicole Immediato", "in_reply_to_status_id": 148824014557679600, "in_reply_to_status_id_str": "148824014557679617"}, +{"created_at": "Mon, 19 Dec 2011 18:40:37 +0000", "from_user": "Batkonehat", "from_user_id": 15665660, "from_user_id_str": "15665660", "from_user_name": "Batkonehat", "geo": null, "id": 148835141337354240, "id_str": "148835141337354240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@BradEllisPiano very fun rendition of Baby It's Cold Outside at the benefit. So fun to hear your voice. Enjoy NYC...it's cold out there!", "to_user": "BradEllisPiano", "to_user_id": 222040597, "to_user_id_str": "222040597", "to_user_name": "Brad Ellis"}, +{"created_at": "Mon, 19 Dec 2011 18:40:36 +0000", "from_user": "saratea", "from_user_id": 1889301, "from_user_id_str": "1889301", "from_user_name": "Sara Tea", "geo": null, "id": 148835138799796220, "id_str": "148835138799796224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1647838352/FINALVOUYOU_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647838352/FINALVOUYOU_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @unha_engels: Here is a little secret for you who live in NYC: DMV express on 34th and 8th is not bad at all. #ahhhhhhh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:36 +0000", "from_user": "Silverchex", "from_user_id": 23407126, "from_user_id_str": "23407126", "from_user_name": "Valerie", "geo": null, "id": 148835138313261060, "id_str": "148835138313261056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1153940117/blueangel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1153940117/blueangel_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TomCruise: TONIGHT! LIVE #MISSIONIMPOSSIBLE @GHOSTPROTOCOL #NYC #MOVIE \\u2605PREMIERE\\u2605 #BLOG COVERAGE! Join us on the red carpet! http://t.co/8FwxLVGC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:36 +0000", "from_user": "ayahorii", "from_user_id": 154525221, "from_user_id_str": "154525221", "from_user_name": "Aya Horii", "geo": null, "id": 148835136073498620, "id_str": "148835136073498624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1552440844/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552440844/Untitled_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @HotChelleRae: Don\\u2019t forget! We are playing a private show today at 5PM EST at the @iHeartRadio Theater in NYC. Enter for tix here: http://t.co/AzJSN2zV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:36 +0000", "from_user": "ChrisinNarberth", "from_user_id": 25111625, "from_user_id_str": "25111625", "from_user_name": "chris mccloud", "geo": null, "id": 148835135809269760, "id_str": "148835135809269760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1238448531/chris_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1238448531/chris_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@YankeeMegInPHL thank you. Spending the day in NYC with the wife and kid", "to_user": "YankeeMegInPHL", "to_user_id": 33943069, "to_user_id_str": "33943069", "to_user_name": "Megs", "in_reply_to_status_id": 148770083932606460, "in_reply_to_status_id_str": "148770083932606466"}, +{"created_at": "Mon, 19 Dec 2011 18:40:33 +0000", "from_user": "rachelbnolan", "from_user_id": 358367825, "from_user_id_str": "358367825", "from_user_name": "Rachel Nolan", "geo": null, "id": 148835122135834620, "id_str": "148835122135834624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1503912586/Screen_shot_2011-08-19_at_4.14.44_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1503912586/Screen_shot_2011-08-19_at_4.14.44_PM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Op-ed by young black man on arbitrary search and frisk in NYC: \"We know the rules: don\\u2019t run and don\\u2019t try to explain.\" http://t.co/OIxDlrKQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:30 +0000", "from_user": "laventure", "from_user_id": 17411169, "from_user_id_str": "17411169", "from_user_name": "laventure", "geo": null, "id": 148835111931093000, "id_str": "148835111931092992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/455865674/36946_ehi_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/455865674/36946_ehi_normal.gif", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "New York magazine's Reason #5 to love NYC http://t.co/qK0qoaPT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:29 +0000", "from_user": "executivechoice", "from_user_id": 85576019, "from_user_id_str": "85576019", "from_user_name": "EC Staff", "geo": null, "id": 148835106566578180, "id_str": "148835106566578176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/837072766/miamodel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/837072766/miamodel_normal.jpg", "source": "<a href="http://www.supertweet.net" rel="nofollow">MyAuthAPIProxy</a>", "text": "Get a date from http://t.co/FtjvzBnA when you visit the Battleship New Jersey in NYC.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:28 +0000", "from_user": "arianailoveyou1", "from_user_id": 431931006, "from_user_id_str": "431931006", "from_user_name": "Ashley,Ariana e Demi", "geo": null, "id": 148835105140506620, "id_str": "148835105140506624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681635155/avatar_1d91fad47bc9_64_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681635155/avatar_1d91fad47bc9_64_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ArianaGrande: If you're coming to my show on December 28 at @IrvingPlaza in NYC and want to come meet me after, here's how: http://t.co/1w7eeLFq! xoxo RT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:27 +0000", "from_user": "chrisario", "from_user_id": 14258957, "from_user_id_str": "14258957", "from_user_name": "Chris Rosario", "geo": null, "id": 148835100551942140, "id_str": "148835100551942145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699730406/rsz_323653_311221408900189_100000369985275_1099620_2085793341_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699730406/rsz_323653_311221408900189_100000369985275_1099620_2085793341_o_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "RT @leannemark: In heaven at #Barneys #NYC w @angepic! Headed to #gaga's workshop @chrisario http://t.co/x0td9pdH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:26 +0000", "from_user": "mrlocatr", "from_user_id": 416550274, "from_user_id_str": "416550274", "from_user_name": "Robert Nemecek", "geo": null, "id": 148835096634462200, "id_str": "148835096634462209", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1647338042/Robert_Nemecek_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647338042/Robert_Nemecek_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Billionaire's Daughter Pays Record Sum For NYC Pad: \\u201CThis sale is an outlier. It works out to be about $13000 pe... http://t.co/K5uNFkka", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:24 +0000", "from_user": "canstandtherain", "from_user_id": 156734954, "from_user_id_str": "156734954", "from_user_name": "{~Lucre**", "geo": null, "id": 148835085674741760, "id_str": "148835085674741760", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692998034/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692998034/image_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Jealousy - Darren Criss @ Joe's Pub 12/18/11 NYC http://t.co/dfSE5wyL\\n\\nVideo stupendo! C'\\u00E8 tutto: ~", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:24 +0000", "from_user": "reeksthegreat", "from_user_id": 424828482, "from_user_id_str": "424828482", "from_user_name": "enrique espaillat", "geo": null, "id": 148835084508725250, "id_str": "148835084508725248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1665552239/reeksthegreat_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665552239/reeksthegreat_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "NYC two wks wit the crew....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:23 +0000", "from_user": "reinventmekiki", "from_user_id": 26455084, "from_user_id_str": "26455084", "from_user_name": "Kallie B. *05ZG08FA", "geo": null, "id": 148835080268300300, "id_str": "148835080268300288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698592401/110111144112_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698592401/110111144112_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Ibs hair show n nyc april.....,http://t.co/8TVW34fr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:22 +0000", "from_user": "shanndelaney", "from_user_id": 365244487, "from_user_id_str": "365244487", "from_user_name": "Shannon Delaney", "geo": null, "id": 148835076480843780, "id_str": "148835076480843777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1521552309/yea_045_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1521552309/yea_045_normal.JPG", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "On our way back to nyc for the day, and tonight flying back to Cleveland.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:20 +0000", "from_user": "jellicle0", "from_user_id": 16709466, "from_user_id_str": "16709466", "from_user_name": "James Hansen", "geo": null, "id": 148835070109691900, "id_str": "148835070109691904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1131499962/studio_lot_crop_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1131499962/studio_lot_crop_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@rayadverb: In NYC, saw the Christmas show at Radio City. Had no idea the birth of Jesus involved so many dancers.\\u201D @julierunner", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:19 +0000", "from_user": "PenUltimate76", "from_user_id": 17871877, "from_user_id_str": "17871877", "from_user_name": "M3DZN", "geo": null, "id": 148835066041208830, "id_str": "148835066041208832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693560553/thnk_m3_by_kwisatzhaderak-d3tcpmw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693560553/thnk_m3_by_kwisatzhaderak-d3tcpmw_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Attention NYC InkHeadz..If you want superb quality work: #follow @CityofInk and call 404.525.4465 and request @RogerParrilla to tour NYC now", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:18 +0000", "from_user": "Natty_Lightt", "from_user_id": 269504288, "from_user_id_str": "269504288", "from_user_name": "Natasha Nichols", "geo": null, "id": 148835063168122880, "id_str": "148835063168122880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1682144033/Photo_on_2011-12-07_at_21.56__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682144033/Photo_on_2011-12-07_at_21.56__2_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "NYC for the day", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:17 +0000", "from_user": "ericfebdian", "from_user_id": 39236345, "from_user_id_str": "39236345", "from_user_name": "Eric Febdian Sutanto", "geo": null, "id": 148835057824579600, "id_str": "148835057824579584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696833961/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696833961/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TomCruise: Tom answers your questions at the NYC M:I-@GhostProtocol Premiere 2night! Submit your questions w/ #MissionNYC http://t.co/8FwxLVGC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:15 +0000", "from_user": "Princess_Trice", "from_user_id": 180159127, "from_user_id_str": "180159127", "from_user_name": "Kamryn Madison ", "geo": null, "id": 148835047833747460, "id_str": "148835047833747457", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690621534/Trice_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690621534/Trice_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tzybaby: RT @Princess_Trice I wanna go to NYC so bad for new years eve! <--now that's the move .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:12 +0000", "from_user": "TwinsoulDesign", "from_user_id": 100118583, "from_user_id_str": "100118583", "from_user_name": "Interior Designer", "geo": null, "id": 148835037532520450, "id_str": "148835037532520449", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1261144902/Lynnette_Warhol_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1261144902/Lynnette_Warhol_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Spectacular! How to Make a beautiful Gingerbread NY Brownstone http://t.co/4boddtGb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:08 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148835019648016400, "id_str": "148835019648016386", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @jobs4NYC: Vitae Restaurant Hiring All BOH Positions (Midtown) http://t.co/6To8txUV #NYC #NewYork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:07 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148835016481316860, "id_str": "148835016481316864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @jobs4NYC: Leasing Associate (Stamford CT) http://t.co/R5ZOihku #NYC #NewYork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:07 +0000", "from_user": "ultramagnus7", "from_user_id": 234058298, "from_user_id_str": "234058298", "from_user_name": "Dave Hall", "geo": null, "id": 148835015181074430, "id_str": "148835015181074433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1350863635/macho_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1350863635/macho_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@richiey2 I'm back like warrior circa 94! How was #NYC ?", "to_user": "richiey2", "to_user_id": 251147502, "to_user_id_str": "251147502", "to_user_name": "Richard Faiz", "in_reply_to_status_id": 148833218630660100, "in_reply_to_status_id_str": "148833218630660096"}, +{"created_at": "Mon, 19 Dec 2011 18:40:07 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148835014950404100, "id_str": "148835014950404096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @jobs4NYC: Paid Internship Opportunities at Irving Levin Associates (Norwalk) http://t.co/ZUHQ8hsT #NYC #NewYork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:06 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148835012144398340, "id_str": "148835012144398337", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @jobs4NYC: CAMPAIGN DIRECTOR, Run an Environmental Campaign Right Out of College (Manhattan) http://t.co/ovq409tG #NYC #NewYork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:06 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148835010252767230, "id_str": "148835010252767233", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @jobs4NYC: INSIDE SALES. SALARY + commision (EAST WILLIAMSBURG) http://t.co/LCEfRoDl #NYC #NewYork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:05 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148835008663142400, "id_str": "148835008663142400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @housing4NYC: #housing4u #housing First Class Professional Office In The Plaza District! This is an Oppo (Plaza ... http://t.co/P0t93ee2 #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:05 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148835005978771460, "id_str": "148835005978771456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @housing4NYC: #housing4u #housing Windsor Terrace 2bd, 1bath...Beautiful!! (Windsor Terrace) $2300 2bd http://t.co/eEEIOL3B #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:04 +0000", "from_user": "Mathfi_Jobs", "from_user_id": 59126679, "from_user_id_str": "59126679", "from_user_name": "Mathfi", "geo": null, "id": 148835004632399870, "id_str": "148835004632399873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/326427455/tweet-mathfi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/326427455/tweet-mathfi_normal.jpg", "source": "<a href="http://www.maths-fi.com/" rel="nofollow">MathsFi Twitt</a>", "text": "Job Quantitative Hedge Fund (New York City): PhD Quantitative Strategist.+,... http://t.co/iE9CrMEi Quant IB Finance jobs 3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:04 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148835003709657100, "id_str": "148835003709657088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @housing4NYC: #housing4u #housing BEAUTIFUL APARTMENT 35TH STREET (Astoria) $1400 1bd http://t.co/lO6W471p #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:04 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148835000840757250, "id_str": "148835000840757248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @housing4NYC: #housing4u #housing DEAL FOR ROOMMATES! 3BR/LAUNDRY/ROOF ACCESS/GREAT LOCATION! (Crown Heights/Pro... http://t.co/TB7nMLZ2 #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:03 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148834998626172930, "id_str": "148834998626172928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @housing4NYC: #housing4u #housing Winter Promo - Upper West Side Lovely Furnished Studio (Upper West Side) $2599 http://t.co/jLmsnkta #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:03 +0000", "from_user": "VRavencroft", "from_user_id": 109348521, "from_user_id_str": "109348521", "from_user_name": "Vanessa Ravencroft", "geo": null, "id": 148834996956831740, "id_str": "148834996956831744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/661424167/vr1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/661424167/vr1_normal.jpg", "source": "<a href="http://www.yahoo.com" rel="nofollow">Yahoo!</a>", "text": "gave a thumbs up to DER TEUFEL's comment: This nut is the reason why we have the death penalty in Texas. http://t.co/1BhmaT52", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:02 +0000", "from_user": "StergioLive", "from_user_id": 170192951, "from_user_id_str": "170192951", "from_user_name": "St\\u00E9rgio ", "geo": null, "id": 148834995920838660, "id_str": "148834995920838656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701847141/397221_2403571687042_1183616694_32083583_782766050_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701847141/397221_2403571687042_1183616694_32083583_782766050_n_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "February :( RT @KeoniHudoba: @StergioLive I'm great big guy. When u coming to nyc?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:03 +0000", "from_user": "SUPERSTARMIX", "from_user_id": 94373057, "from_user_id_str": "94373057", "from_user_name": "Marco Santaniello", "geo": null, "id": 148834995375579140, "id_str": "148834995375579136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662019978/ME-NEW-SITO_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662019978/ME-NEW-SITO_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Lovely day in #NYC @I_LOVE_NY @NYCpassion #chelsea http://t.co/bWDLpzgN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:02 +0000", "from_user": "NSAYSoHoTriBeCa", "from_user_id": 154193515, "from_user_id_str": "154193515", "from_user_name": "Soho & TriBeCa NYC", "geo": null, "id": 148834993601388540, "id_str": "148834993601388544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1260281494/SoHoTriBeCa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1260281494/SoHoTriBeCa_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Things to Do in #SoHo #TriBeCa & #FiDi: Dec. 19-23. See new #PopUpShop , #Holiday #ArtShow and more! http://t.co/XhjX6qtx #nyc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:01 +0000", "from_user": "paul_a_smith", "from_user_id": 9568572, "from_user_id_str": "9568572", "from_user_name": "Paul Smith", "geo": null, "id": 148834988278820860, "id_str": "148834988278820865", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/492429787/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/492429787/twitterProfilePhoto_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "2012 is the year I become a paid travel writer! First up - Atlanta / Nashville / Athens / Savannah / Atlantic City / NYC. How excited am I?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:00 +0000", "from_user": "ViolertLLC", "from_user_id": 364281697, "from_user_id_str": "364281697", "from_user_name": "Violert", "geo": null, "id": 148834987079241730, "id_str": "148834987079241728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1610833249/Violerttwitter128x128_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610833249/Violerttwitter128x128_1__normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "We\\u2019re the one stop shop for all of your NYC building violation needs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:58 +0000", "from_user": "chrisario", "from_user_id": 14258957, "from_user_id_str": "14258957", "from_user_name": "Chris Rosario", "geo": null, "id": 148834977210040320, "id_str": "148834977210040320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699730406/rsz_323653_311221408900189_100000369985275_1099620_2085793341_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699730406/rsz_323653_311221408900189_100000369985275_1099620_2085793341_o_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@leannemark STOP! I want that! #serially, thank you http://t.co/lWb89p3F #Barneys #NYC", "to_user": "leannemark", "to_user_id": 19870275, "to_user_id_str": "19870275", "to_user_name": "Leanne Mark", "in_reply_to_status_id": 148501525386371070, "in_reply_to_status_id_str": "148501525386371072"}, +{"created_at": "Mon, 19 Dec 2011 18:39:58 +0000", "from_user": "Jerlyn", "from_user_id": 1822401, "from_user_id_str": "1822401", "from_user_name": "Jerlyn", "geo": null, "id": 148834975800770560, "id_str": "148834975800770560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1653155257/311354_876328403935_24400599_39161934_2127956379_n__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653155257/311354_876328403935_24400599_39161934_2127956379_n__1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@esulliva Lol it's so tempting in NYC... I do think I'm running just to eat haha, which is tough with working late hours :|", "to_user": "esulliva", "to_user_id": 14599608, "to_user_id_str": "14599608", "to_user_name": "Edward Sullivan", "in_reply_to_status_id": 148832877302386700, "in_reply_to_status_id_str": "148832877302386688"}, +{"created_at": "Mon, 19 Dec 2011 18:39:57 +0000", "from_user": "YUObserver", "from_user_id": 368146818, "from_user_id_str": "368146818", "from_user_name": "YU Observer", "geo": null, "id": 148834972076220400, "id_str": "148834972076220416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1530798846/ObserverLogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1530798846/ObserverLogo_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @YUNews: (VIDEO) Stern College for Women's Brookdale Hall Lights Up NYC! #Chanukah http://t.co/SgHlp2vi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:55 +0000", "from_user": "HackerNewsYC", "from_user_id": 15042473, "from_user_id_str": "15042473", "from_user_name": "Hacker News YC", "geo": null, "id": 148834963092021250, "id_str": "148834963092021249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/55176345/hackernewsfeed_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/55176345/hackernewsfeed_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Cornell Said Chosen for NYC Engineering Campus http://t.co/hEdRqI5e", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:53 +0000", "from_user": "RobHTexera", "from_user_id": 37100619, "from_user_id_str": "37100619", "from_user_name": "Robert Texera ", "geo": null, "id": 148834957668782080, "id_str": "148834957668782080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1170242911/me_fox_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1170242911/me_fox_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TomCruise: TONIGHT! LIVE #MISSIONIMPOSSIBLE @GHOSTPROTOCOL #NYC #MOVIE \\u2605PREMIERE\\u2605 #BLOG COVERAGE! Join us on the red carpet! http://t.co/8FwxLVGC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:50 +0000", "from_user": "AffluentCapital", "from_user_id": 243583818, "from_user_id_str": "243583818", "from_user_name": "Chip Browne, PLM", "geo": null, "id": 148834945660489730, "id_str": "148834945660489729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1227140361/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1227140361/logo_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "REIT Buys Large Stake in NYC Office Property: Commercial REIT Vornado Realty Trust has acquired a 49.5% stake in... http://t.co/4z6npNnX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:39:50 +0000", "from_user": "pinokosugar", "from_user_id": 268164080, "from_user_id_str": "268164080", "from_user_name": "\\u6843\\u751F\\u4E9C\\u5E0C\\u5B50", "geo": null, "id": 148834944834224130, "id_str": "148834944834224128", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1550178371/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1550178371/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u304A\\u306F\\u3088\\u3046 \\u3088\\u3057\\u3053\\uD83D\\uDC97RT@YOYOYOPICO: \\u304A\\u306F\\u3088\\u3074\\u30FC\\u3061\\u3083\\u3093\\u3068NYC RT @pinokosugar: Good morning monday morning from NY:) \\u2600", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:49 +0000", "from_user": "redostoneage", "from_user_id": 28156710, "from_user_id_str": "28156710", "from_user_name": "Truth Tweeter", "geo": null, "id": 148834940958670850, "id_str": "148834940958670848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/661208289/get_fileCA9BVO04_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/661208289/get_fileCA9BVO04_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Copenhagen: Religion of Peace attacks Hare Krishna Temple http://t.co/3fjTAJJH #p2 #topprog #maddow #msnbc #cnn #nyc #npr #pbs #news", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:48 +0000", "from_user": "CeraDanielle", "from_user_id": 337434703, "from_user_id_str": "337434703", "from_user_name": "Cera Hesseling", "geo": null, "id": 148834936961503230, "id_str": "148834936961503232", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696497394/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696497394/image_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "NYC http://t.co/9YT00MFN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:48 +0000", "from_user": "therealredding", "from_user_id": 123024556, "from_user_id_str": "123024556", "from_user_name": "David Redding", "geo": null, "id": 148834935308955650, "id_str": "148834935308955648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1185177370/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1185177370/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "This is what weddings, marriage & great photography is all about. Great work @ashimagery http://t.co/Xpzv862Y", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:43 +0000", "from_user": "montaga", "from_user_id": 30540789, "from_user_id_str": "30540789", "from_user_name": "Tony Montaga", "geo": null, "id": 148834914509398000, "id_str": "148834914509398017", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696252794/montaga_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696252794/montaga_normal.jpg", "source": "<a href="http://soundcloud.com" rel="nofollow">SoundCloud</a>", "text": "My new sounds: Tony Montaga \"NYC\" http://t.co/m40txTL1 on #SoundCloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:42 +0000", "from_user": "NYCFranchise", "from_user_id": 382155152, "from_user_id_str": "382155152", "from_user_name": "Barry Bocker", "geo": null, "id": 148834912403849200, "id_str": "148834912403849217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1565357680/August2007_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1565357680/August2007_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Fantasy Hockey: Parise, Malkin rule; Corey Crawford overthrown (Yahoo! Sports) http://t.co/4IXSuIkV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:42 +0000", "from_user": "the_bxb", "from_user_id": 351873777, "from_user_id_str": "351873777", "from_user_name": "Brittany Gianino", "geo": null, "id": 148834911988625400, "id_str": "148834911988625410", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1598733762/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598733762/image_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @miss__insanity: wait, it feel weird to be clothed; diner in NYC with @cammstrystal, @the_bxb & @KittysCrazyyyy!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:39 +0000", "from_user": "EbztooRedd", "from_user_id": 73226661, "from_user_id_str": "73226661", "from_user_name": "ebony redd", "geo": null, "id": 148834899112099840, "id_str": "148834899112099841", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1583887528/301311_267610829918534_100000088568920_1117672_5386193_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583887528/301311_267610829918534_100000088568920_1117672_5386193_n_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "NYC bound n a few days oww oww dis break been the best =)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:37 +0000", "from_user": "drjiho714", "from_user_id": 43686883, "from_user_id_str": "43686883", "from_user_name": "Jiho Jung", "geo": null, "id": 148834889389707260, "id_str": "148834889389707264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1478677779/254610_1955399920816_1117254231_31735247_7801075_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1478677779/254610_1955399920816_1117254231_31735247_7801075_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Never get sick of nyc, but I need to vacate", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:34 +0000", "from_user": "RobHTexera", "from_user_id": 37100619, "from_user_id_str": "37100619", "from_user_name": "Robert Texera ", "geo": null, "id": 148834878450958340, "id_str": "148834878450958337", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1170242911/me_fox_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1170242911/me_fox_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TomCruise: Tom answers your questions at the NYC M:I-@GhostProtocol Premiere 2night! Submit your questions w/ #MissionNYC http://t.co/8FwxLVGC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:32 +0000", "from_user": "TeddyKing", "from_user_id": 17010627, "from_user_id_str": "17010627", "from_user_name": "Teddy King", "geo": null, "id": 148834867424149500, "id_str": "148834867424149504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680295717/RELEASE_PARTY_FLYER_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680295717/RELEASE_PARTY_FLYER_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Just landed in NYC, thank you JAPAN for being one of the best trips of my life! The best place to play music is with you guys! Peace & Love", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:29 +0000", "from_user": "Mattymattla", "from_user_id": 30190993, "from_user_id_str": "30190993", "from_user_name": "Mattymatt", "geo": null, "id": 148834856577671170, "id_str": "148834856577671168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1213530451/BGCAUDRTJY_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1213530451/BGCAUDRTJY_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "What a great time with @MaxVangeli @ViktorSolstice @ZoeAbelSD @Carlo5Rodrigo in NYC!! http://t.co/h6uGFbU2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:29 +0000", "from_user": "NadjaShah", "from_user_id": 264914900, "from_user_id_str": "264914900", "from_user_name": "Nadja Shah", "geo": null, "id": 148834855482961920, "id_str": "148834855482961920", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1371279564/nadja_bambus_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1371279564/nadja_bambus_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Dachbegr\\u00FCnung auf die gesunde Art : Soil-less sky farming: rooftop hydroponics on NYC restaurant http://t.co/wwu21orI #permaculture #change", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:29 +0000", "from_user": "MikeBacker52", "from_user_id": 200142954, "from_user_id_str": "200142954", "from_user_name": "Andy Dale", "geo": null, "id": 148834854828650500, "id_str": "148834854828650496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@scottspizzatour what is the best spot in NYC for a slice? Joes is good but there's gotta be better...", "to_user": "scottspizzatour", "to_user_id": 52394683, "to_user_id_str": "52394683", "to_user_name": "Scott Wiener"}, +{"created_at": "Mon, 19 Dec 2011 18:39:29 +0000", "from_user": "NayGotDatCumBac", "from_user_id": 44541269, "from_user_id_str": "44541269", "from_user_name": "Nay lovin D.F", "geo": null, "id": 148834854392438800, "id_str": "148834854392438785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696518782/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696518782/image_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "I fell in love wit a ny boy so now im rockin nyc on my neck # nevercominoff", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:28 +0000", "from_user": "Johnnie5OH", "from_user_id": 331632002, "from_user_id_str": "331632002", "from_user_name": "J.L.COPP", "geo": null, "id": 148834850747588600, "id_str": "148834850747588608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1442939769/Carnival_Cruise_to_Cozumel1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1442939769/Carnival_Cruise_to_Cozumel1_normal.jpg", "source": "<a href="http://www.yahoo.com" rel="nofollow">Yahoo!</a>", "text": "commented: Who among any of you have the right to say who lives or dies and how does that make you any differen... http://t.co/cPsfo464", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:23 +0000", "from_user": "tzybaby", "from_user_id": 284100997, "from_user_id_str": "284100997", "from_user_name": "Tzy", "geo": null, "id": 148834831168569340, "id_str": "148834831168569345", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1321941296/3dlogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1321941296/3dlogo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Princess_Trice I wanna go to NYC so bad for new years eve! <--now that's the move .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:22 +0000", "from_user": "ChemungChamber", "from_user_id": 216125517, "from_user_id_str": "216125517", "from_user_name": "Chemung Chamber", "geo": null, "id": 148834826542256130, "id_str": "148834826542256128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1178673546/Chamber-Logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1178673546/Chamber-Logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @innovationtrail: Cornell reportedly wins bid to build NYC tech campus on Roosevelt Island watch video here at 2:30 http://t.co/Zeu7NlCv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:21 +0000", "from_user": "TheyCallMe_aubz", "from_user_id": 128371132, "from_user_id_str": "128371132", "from_user_name": "B L A N K . ", "geo": null, "id": 148834821945307140, "id_str": "148834821945307137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1656584116/330365509_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656584116/330365509_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "!!!!!! RT @ThatsHautee: NYC I'm ready for ya!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:21 +0000", "from_user": "Ovski14", "from_user_id": 373838328, "from_user_id_str": "373838328", "from_user_name": "Craig Davies", "geo": null, "id": 148834821794304000, "id_str": "148834821794304000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1544565671/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544565671/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Gutted to be flying home from NYC today, an amazing trip with an amazing person", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:18 +0000", "from_user": "listentotheink", "from_user_id": 247997904, "from_user_id_str": "247997904", "from_user_name": "Tricia", "geo": null, "id": 148834807873404930, "id_str": "148834807873404928", "iso_language_code": "is", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1236037744/trish_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1236037744/trish_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @OneDirectionNY: Totals: Dallas = 280; NYC = 220; LA = 200", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:16 +0000", "from_user": "recnetNJ", "from_user_id": 284233514, "from_user_id_str": "284233514", "from_user_name": "Recruiter Networks", "geo": null, "id": 148834802110443520, "id_str": "148834802110443520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1316432894/Recnet_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1316432894/Recnet_logo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Other: Printer / Copier IT Services Manager - Wayne, NJ & NYC Area (08004) - Wayne, New Jersey http://t.co/g1JbPKC7 #jobs #NJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:16 +0000", "from_user": "listentotheink", "from_user_id": 247997904, "from_user_id_str": "247997904", "from_user_name": "Tricia", "geo": null, "id": 148834799874871300, "id_str": "148834799874871297", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1236037744/trish_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1236037744/trish_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @OneDirectionNY: NYC, WE HAVE TO WIN THIS NEXT CHALLENGE AND BUMP DALLAS DOWN TO THIRD.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:16 +0000", "from_user": "MironProperties", "from_user_id": 109693045, "from_user_id_str": "109693045", "from_user_name": "Miron Properties ", "geo": null, "id": 148834799694520320, "id_str": "148834799694520321", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1158061024/Miron_Properties_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1158061024/Miron_Properties_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Here's the answer to a common question we get: I live outside the US -Can I buy in NYC? http://t.co/jf6D7PW5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:15 +0000", "from_user": "itconsumesme", "from_user_id": 56830967, "from_user_id_str": "56830967", "from_user_name": "Daniela Akiko", "geo": null, "id": 148834795227590660, "id_str": "148834795227590656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546039445/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546039445/image_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @billboard: #Glee star @DarrenCriss played a few shows in #NYC over the weekend while in town for \"How to Succeed...\" on #Broadway http://t.co/O74cYdkY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:14 +0000", "from_user": "therman", "from_user_id": 14959711, "from_user_id_str": "14959711", "from_user_name": "Ted Herman", "geo": null, "id": 148834794749427700, "id_str": "148834794749427712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/59214686/Photo_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/59214686/Photo_3_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @NationalNurses: Hundreds of #Nurses plan protest Tues at Cerberus Capital Management at Park Ave office in NYC. http://t.co/ybwWA68z #fightingforpatients", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:14 +0000", "from_user": "SimplyCOLAS", "from_user_id": 292381241, "from_user_id_str": "292381241", "from_user_name": "Jordan", "geo": null, "id": 148834793684086800, "id_str": "148834793684086784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693942188/Tatts_On_My_Arm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693942188/Tatts_On_My_Arm_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Headin to nyc later to play some ball", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:14 +0000", "from_user": "SmokeStackLLC", "from_user_id": 127678096, "from_user_id_str": "127678096", "from_user_name": "SmokeStackRecordings", "geo": null, "id": 148834793050750980, "id_str": "148834793050750977", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1340161678/smokestack_new_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1340161678/smokestack_new_logo_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "#NYC #NEVERFORGET 9/11 http://t.co/FnJsnddx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:11 +0000", "from_user": "7_I_Am", "from_user_id": 116094973, "from_user_id_str": "116094973", "from_user_name": "Only Seven", "geo": null, "id": 148834781902286850, "id_str": "148834781902286848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696449257/7_I_Am_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696449257/7_I_Am_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Talking about sistas with weaves but your woman got more tracks than the NYC subway system. FOH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:11 +0000", "from_user": "BandLManagement", "from_user_id": 195784041, "from_user_id_str": "195784041", "from_user_name": "B&L Management", "geo": null, "id": 148834779905794050, "id_str": "148834779905794048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1144795632/logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1144795632/logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#nyc Apartment for rent in Upper East Side Studio 1 Bathroom corner of 1485 First Avenue New York, NY between 77th ... http://t.co/vX7VbWW5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:04 +0000", "from_user": "kamo11", "from_user_id": 65667296, "from_user_id_str": "65667296", "from_user_name": "kamo", "geo": null, "id": 148834750688280580, "id_str": "148834750688280577", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1543638806/SP_A0079_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543638806/SP_A0079_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@GostarSA mara ntwana i told u so nyc plz dont leave me gwa kenya mo kasi mara ne u saw gori ima tiader u", "to_user": "GostarSA", "to_user_id": 89657647, "to_user_id_str": "89657647", "to_user_name": "Ken GostarDe Phetlhu", "in_reply_to_status_id": 148351288558632960, "in_reply_to_status_id_str": "148351288558632960"}, +{"created_at": "Mon, 19 Dec 2011 18:39:04 +0000", "from_user": "ChinkyEyz", "from_user_id": 22927598, "from_user_id_str": "22927598", "from_user_name": "Danielle ", "geo": null, "id": 148834749681647600, "id_str": "148834749681647616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1686940487/331284603_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686940487/331284603_normal.jpg", "source": "<a href="http://getsocialscope.com" rel="nofollow">SocialScope</a>", "text": "True RT @YaBoiRich06: lol smh RT @Jared_V Wait... RT @BBizDAish Uhmm RT @_cudderz Why do people say NYE?? Isn't it NYC??? Idk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:03 +0000", "from_user": "LocdBeauty", "from_user_id": 420866320, "from_user_id_str": "420866320", "from_user_name": "Shani", "geo": null, "id": 148834745344737280, "id_str": "148834745344737280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1688530281/Photo_21_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688530281/Photo_21_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @Wale: Good Morning NYC.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:02 +0000", "from_user": "MissAlba30", "from_user_id": 384599450, "from_user_id_str": "384599450", "from_user_name": "Cristalba\\uE003", "geo": null, "id": 148834742656188400, "id_str": "148834742656188416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674645848/MissAlba30_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674645848/MissAlba30_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "I need to go see this infamous christmas tree \\uD83C\\uDF84in NYC before they take it down!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:56 +0000", "from_user": "osaraba", "from_user_id": 16595421, "from_user_id_str": "16595421", "from_user_name": "sara", "geo": null, "id": 148834718333415420, "id_str": "148834718333415424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1321956298/Copy_of_new_nyr_jersey_front_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1321956298/Copy_of_new_nyr_jersey_front_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@HarliQwynn just saw this, thanks it was fine all the way back to NYC! =D", "to_user": "HarliQwynn", "to_user_id": 37424738, "to_user_id_str": "37424738", "to_user_name": "Harli in the Hammer", "in_reply_to_status_id": 148580991705952260, "in_reply_to_status_id_str": "148580991705952258"}, +{"created_at": "Mon, 19 Dec 2011 18:38:56 +0000", "from_user": "Shoreguyforfun", "from_user_id": 398341159, "from_user_id_str": "398341159", "from_user_name": "Adam James", "geo": null, "id": 148834716785721340, "id_str": "148834716785721344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1608504203/665635238205_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608504203/665635238205_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@ShemaleAna \\nI am in the middle of 5th Ave...NYC trying to get across the st.", "to_user": "ShemaleAna", "to_user_id": 241289363, "to_user_id_str": "241289363", "to_user_name": "Ana Mancini", "in_reply_to_status_id": 148834409892691970, "in_reply_to_status_id_str": "148834409892691968"}, +{"created_at": "Mon, 19 Dec 2011 18:38:55 +0000", "from_user": "gustly", "from_user_id": 14186660, "from_user_id_str": "14186660", "from_user_name": "Gust", "geo": null, "id": 148834714717917200, "id_str": "148834714717917184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1541152127/gust-logo2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541152127/gust-logo2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "We're hiring in #NYC #UX http://t.co/ULtxrX6i and #Product Manager http://t.co/vlDAos00 #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:55 +0000", "from_user": "NYCJobsPay", "from_user_id": 333396321, "from_user_id_str": "333396321", "from_user_name": "NYC Jobs Pay", "geo": null, "id": 148834711677054980, "id_str": "148834711677054976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1484933666/zManhattan1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1484933666/zManhattan1_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NYC New Job ~ PostDoctoral Associate at University of Massachusetts Medical School (Worcester, MA) http://t.co/UJ4uXhbl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:54 +0000", "from_user": "NYCJobsPay", "from_user_id": 333396321, "from_user_id_str": "333396321", "from_user_name": "NYC Jobs Pay", "geo": null, "id": 148834710653632500, "id_str": "148834710653632513", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1484933666/zManhattan1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1484933666/zManhattan1_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NYC New Job ~ Application Specialist - Open Systems at Fiserv Card Services (Morris Plains, NJ) http://t.co/UJ4uXhbl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:54 +0000", "from_user": "MLCarolan", "from_user_id": 58852732, "from_user_id_str": "58852732", "from_user_name": "Megan Carolan", "geo": null, "id": 148834709319843840, "id_str": "148834709319843840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1225676314/picture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225676314/picture_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Dear @dancotoia\\nwhen can we see kative gavin in NYC again?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:54 +0000", "from_user": "NYCJobsPay", "from_user_id": 333396321, "from_user_id_str": "333396321", "from_user_name": "NYC Jobs Pay", "geo": null, "id": 148834708946558980, "id_str": "148834708946558976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1484933666/zManhattan1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1484933666/zManhattan1_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NYC New Job ~ SharePoint Solution Architect at Grg Consulting (New York, NY) http://t.co/UJ4uXhbl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:54 +0000", "from_user": "NYCJobsPay", "from_user_id": 333396321, "from_user_id_str": "333396321", "from_user_name": "NYC Jobs Pay", "geo": null, "id": 148834707717623800, "id_str": "148834707717623808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1484933666/zManhattan1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1484933666/zManhattan1_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NYC New Job ~ Junior Information Architect at Rokkan (New York, NY) http://t.co/UJ4uXhbl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:53 +0000", "from_user": "NYCJobsPay", "from_user_id": 333396321, "from_user_id_str": "333396321", "from_user_name": "NYC Jobs Pay", "geo": null, "id": 148834706367070200, "id_str": "148834706367070208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1484933666/zManhattan1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1484933666/zManhattan1_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NYC New Job ~ Loan Officer at Vantage Recruiting (Philadelphia, PA) http://t.co/UJ4uXhbl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:53 +0000", "from_user": "abeeydah", "from_user_id": 166626909, "from_user_id_str": "166626909", "from_user_name": "Abby\\u2665Bahago", "geo": null, "id": 148834703334572030, "id_str": "148834703334572032", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687561750/IMG-20111210-02092_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687561750/IMG-20111210-02092_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Awww,tnx bro*kisses*\"@iMbash: Nyc avatar @abeeydah lookn fly sis!\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:52 +0000", "from_user": "BballCoachE", "from_user_id": 40269324, "from_user_id_str": "40269324", "from_user_name": "Doug Esleeck", "geo": null, "id": 148834700922847230, "id_str": "148834700922847232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/213288859/DE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/213288859/DE_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Back from NYC on the way to UGA and then GT to finish up the pre xmas season.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:52 +0000", "from_user": "lynessamarie", "from_user_id": 316970301, "from_user_id_str": "316970301", "from_user_name": "Lynessa Williams", "geo": null, "id": 148834698993467400, "id_str": "148834698993467392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1515801995/curly_hair_profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515801995/curly_hair_profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @issarae: Bravo is looking for NYC based affluent AfAm couples getting married by 2/14/12 for new series on Bravo. Contact: @vpetalent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:51 +0000", "from_user": "VRavencroft", "from_user_id": 109348521, "from_user_id_str": "109348521", "from_user_name": "Vanessa Ravencroft", "geo": null, "id": 148834696879554560, "id_str": "148834696879554560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/661424167/vr1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/661424167/vr1_normal.jpg", "source": "<a href="http://www.yahoo.com" rel="nofollow">Yahoo!</a>", "text": "gave a thumbs up to john p's comment: this is what we have done to our country after giving MONKEYS the same ri... http://t.co/CpOFpf9b", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:51 +0000", "from_user": "Dustiluz", "from_user_id": 431760010, "from_user_id_str": "431760010", "from_user_name": "Dusti Hineline", "geo": null, "id": 148834696799846400, "id_str": "148834696799846400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681157168/large_Body_Shot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681157168/large_Body_Shot_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "*NYC Boutique The Lace Short,Shorts for Women, Large,Brown: *NYC Boutique The Lace Short,Shorts for Women: http://t.co/kX2RAQKs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:51 +0000", "from_user": "rahimaxarsenal", "from_user_id": 165536979, "from_user_id_str": "165536979", "from_user_name": "R.", "geo": null, "id": 148834696489472000, "id_str": "148834696489472000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698776177/Snapshot_20111213_15_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698776177/Snapshot_20111213_15_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@HaiderKA Nice yaaaar. I CAN'T WANT TO GO TO NYC!!!", "to_user": "HaiderKA", "to_user_id": 21222785, "to_user_id_str": "21222785", "to_user_name": "Haider\\u2122", "in_reply_to_status_id": 148834088185372670, "in_reply_to_status_id_str": "148834088185372672"}, +{"created_at": "Mon, 19 Dec 2011 18:38:48 +0000", "from_user": "ccsarchitecture", "from_user_id": 115515425, "from_user_id_str": "115515425", "from_user_name": "CCS Architecture", "geo": null, "id": 148834685668175870, "id_str": "148834685668175873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/705993806/RM_Seafood_Las_Vegas_52_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/705993806/RM_Seafood_Las_Vegas_52_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Goat Town in NYC looks like a fun place. Love the banquettes! http://t.co/DbTjBOXw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:47 +0000", "from_user": "avalonmj", "from_user_id": 24253399, "from_user_id_str": "24253399", "from_user_name": "Avalon", "geo": null, "id": 148834679498342400, "id_str": "148834679498342401", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/745555847/IMG00109_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/745555847/IMG00109_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @RKSTNI: Lana Del Rey's 3rd NYC gig ever will be SNL. Harry Potter hosts. Interscope (owned by Universal) is the corp. that made that happen.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:46 +0000", "from_user": "ufcambernichole", "from_user_id": 310434477, "from_user_id_str": "310434477", "from_user_name": "Amber Nichole Miller", "geo": null, "id": 148834674716835840, "id_str": "148834674716835840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1490760708/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1490760708/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@MitchWestphal I've been good keeping busy getting ready for the holidays and new job!! In NYC for a gig then back to Vegas tues...how R you", "to_user": "MitchWestphal", "to_user_id": 246157714, "to_user_id_str": "246157714", "to_user_name": "Mitch Westphal", "in_reply_to_status_id": 148833121519931400, "in_reply_to_status_id_str": "148833121519931392"}, +{"created_at": "Mon, 19 Dec 2011 18:38:44 +0000", "from_user": "Harmizzle1", "from_user_id": 415131810, "from_user_id_str": "415131810", "from_user_name": "J'Adore Harmony(:", "geo": null, "id": 148834669151006720, "id_str": "148834669151006720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701719913/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701719913/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @DOPEITSASHH: If theres one place I can go back to would no doubt be NYC<3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:43 +0000", "from_user": "Rsf_Divine", "from_user_id": 22570707, "from_user_id_str": "22570707", "from_user_name": "Divine aka Ronie", "geo": null, "id": 148834661915828220, "id_str": "148834661915828225", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662117332/I4uIRb_large_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662117332/I4uIRb_large_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @midnitespot: NYC: Sun Dec 25 WinterFresh: B&W Affair @AMNESIA BDAY BASH @SUAVEOFNITELIFE @MRMALIKSTAGENT ... http://t.co/xVd5cMUF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:38 +0000", "from_user": "xusie_music", "from_user_id": 438243077, "from_user_id_str": "438243077", "from_user_name": "xusie_music", "geo": null, "id": 148834643712540670, "id_str": "148834643712540672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696360551/xusie100_normal.png", "profile_image_url_https": null, "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Darren Criss Plays Secret Show in NYC http://t.co/jcTd8atw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:37 +0000", "from_user": "tasha_keys", "from_user_id": 34527587, "from_user_id_str": "34527587", "from_user_name": "natasha kabir", "geo": null, "id": 148834636523503600, "id_str": "148834636523503617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1655975583/wedding_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655975583/wedding_2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Kush_Nbeauty I'm going to NYC boo", "to_user": "Kush_Nbeauty", "to_user_id": 322177059, "to_user_id_str": "322177059", "to_user_name": "Janelle Woods ", "in_reply_to_status_id": 148832602059587600, "in_reply_to_status_id_str": "148832602059587584"}, +{"created_at": "Mon, 19 Dec 2011 18:38:32 +0000", "from_user": "djskinnyfat", "from_user_id": 58123, "from_user_id_str": "58123", "from_user_name": "Clint McMahon", "geo": null, "id": 148834616655101950, "id_str": "148834616655101952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1583268112/69297_510913819078_162700320_30357050_8072158_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583268112/69297_510913819078_162700320_30357050_8072158_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "A giant piece of granite just fell off the wall in our elevator lobby. Note to self, stay away from elevators in NYC.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:31 +0000", "from_user": "smhelloladies", "from_user_id": 367284950, "from_user_id_str": "367284950", "from_user_name": "Stephen Merchant", "geo": null, "id": 148834610439127040, "id_str": "148834610439127042", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1526908856/sjjm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1526908856/sjjm_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "In NYC. Did @OpieRadio show earlier and who should appear but @simonpegg. We traded some droll bon mots, natch. What a lovely man.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:29 +0000", "from_user": "Star_tt1", "from_user_id": 386275911, "from_user_id_str": "386275911", "from_user_name": "Star_tt", "geo": null, "id": 148834603182993400, "id_str": "148834603182993408", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1576046353/star_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576046353/star_normal.JPG", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "ABC: Man Gets Prison for Bilking NYC Mayor http://t.co/Ank99GFw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:28 +0000", "from_user": "Star_tt1", "from_user_id": 386275911, "from_user_id_str": "386275911", "from_user_name": "Star_tt", "geo": null, "id": 148834600771264500, "id_str": "148834600771264512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1576046353/star_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576046353/star_normal.JPG", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "ABC: NY Torching Suspect Charged With Murder http://t.co/p3Mzjb5O", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:28 +0000", "from_user": "JAzzzykins21", "from_user_id": 204173156, "from_user_id_str": "204173156", "from_user_name": "Jasmin", "geo": null, "id": 148834598535696400, "id_str": "148834598535696385", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693608921/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693608921/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Take me with you!<33 ^.^ \\u201C@DOPEITSASHH: If theres one place I can go back to would no doubt be NYC<3\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:27 +0000", "from_user": "lostheather", "from_user_id": 22496352, "from_user_id_str": "22496352", "from_user_name": "Knife Fight Annie", "geo": null, "id": 148834596648267780, "id_str": "148834596648267777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1350465065/tattoo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1350465065/tattoo_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Holy christ http://t.co/yGZpfbIM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:26 +0000", "from_user": "miss__insanity", "from_user_id": 366711735, "from_user_id_str": "366711735", "from_user_name": "isabel insanity", "geo": null, "id": 148834593083109380, "id_str": "148834593083109378", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1683489756/meow_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683489756/meow_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "wait, it feel weird to be clothed; diner in NYC with @cammstrystal, @the_bxb & @KittysCrazyyyy!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:22 +0000", "from_user": "trashprettyko", "from_user_id": 369480422, "from_user_id_str": "369480422", "from_user_name": "Tri$h", "geo": null, "id": 148834576754675700, "id_str": "148834576754675712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1573968901/kbme_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1573968901/kbme_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@kbuck354 @96thStIsHarlem next NYC visit, can THIS happen?: http://t.co/BcrE9wIh", "to_user": "kbuck354", "to_user_id": 65245161, "to_user_id_str": "65245161", "to_user_name": "KB"}, +{"created_at": "Mon, 19 Dec 2011 18:38:20 +0000", "from_user": "xSillaMahone", "from_user_id": 225152705, "from_user_id_str": "225152705", "from_user_name": "\\u2661\\u2661SILLA", "geo": null, "id": 148834566113726460, "id_str": "148834566113726465", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684979660/331220275_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684979660/331220275_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "i wish i was in nyc right now so i can meet austin n alex :( #nevergunnahapen", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:19 +0000", "from_user": "_Nguvu87", "from_user_id": 371010441, "from_user_id_str": "371010441", "from_user_name": "Yung Brys", "geo": null, "id": 148834563379044350, "id_str": "148834563379044352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692974868/_Nguvu87_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692974868/_Nguvu87_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@JuJu_Mack I'll be back in NYC on the 28th. You?", "to_user": "JuJu_Mack", "to_user_id": 219200183, "to_user_id_str": "219200183", "to_user_name": "JuJu McWilliams", "in_reply_to_status_id": 148825461340905470, "in_reply_to_status_id_str": "148825461340905472"}, +{"created_at": "Mon, 19 Dec 2011 18:38:19 +0000", "from_user": "symonedollface", "from_user_id": 22425568, "from_user_id_str": "22425568", "from_user_name": "Symone Dollface", "geo": null, "id": 148834560581443600, "id_str": "148834560581443585", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1553965134/IMG_2146_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553965134/IMG_2146_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Back in my NYC and hungryyyy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:18 +0000", "from_user": "paulolaniyan", "from_user_id": 189214303, "from_user_id_str": "189214303", "from_user_name": "everybody loves PAUL", "geo": null, "id": 148834559994236930, "id_str": "148834559994236928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687467440/11012009184_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687467440/11012009184_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "nyc advert we know 'RT@chiizie_xx :New cloths\\u2665__\\u2665.... \\n.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:17 +0000", "from_user": "QRedHall", "from_user_id": 226335297, "from_user_id_str": "226335297", "from_user_name": "Quincy", "geo": null, "id": 148834554789105660, "id_str": "148834554789105664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685517898/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685517898/image_normal.jpg", "source": "<a href="http://tweetlogix.com" rel="nofollow">Tweetlogix</a>", "text": "One day I'm going to hit up the DMV & NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:17 +0000", "from_user": "nycTrend", "from_user_id": 174578199, "from_user_id_str": "174578199", "from_user_name": "NYC Trending", "geo": null, "id": 148834554122219520, "id_str": "148834554122219520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1095252877/128600455_547129784a_z_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1095252877/128600455_547129784a_z_normal.jpeg", "source": "<a href="http://tweetbe.at/" rel="nofollow">tweetbe.at</a>", "text": "Live: Swedish House Mafia Reign Supreme At Madison Square Garden http://t.co/Hm1oiC5w", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:16 +0000", "from_user": "NYFullTimeJobs", "from_user_id": 422942234, "from_user_id_str": "422942234", "from_user_name": "NYFullTimeJobs", "geo": null, "id": 148834551031009280, "id_str": "148834551031009281", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "New NYC Jobs - Application Specialist - Open Systems at Fiserv Card Services (Morris Plains, NJ) http://t.co/mExiw3G7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:16 +0000", "from_user": "NYFullTimeJobs", "from_user_id": 422942234, "from_user_id_str": "422942234", "from_user_name": "NYFullTimeJobs", "geo": null, "id": 148834549583974400, "id_str": "148834549583974400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "New NYC Jobs - SharePoint Solution Architect at Grg Consulting (New York, NY) http://t.co/mExiw3G7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:16 +0000", "from_user": "NYFullTimeJobs", "from_user_id": 422942234, "from_user_id_str": "422942234", "from_user_name": "NYFullTimeJobs", "geo": null, "id": 148834548380221440, "id_str": "148834548380221440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "New NYC Jobs - Junior Information Architect at Rokkan (New York, NY) http://t.co/mExiw3G7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:15 +0000", "from_user": "MatineeParties", "from_user_id": 297704066, "from_user_id_str": "297704066", "from_user_name": "Matinee N. America", "geo": null, "id": 148834547105148930, "id_str": "148834547105148929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1596569942/38312_417171518743_34291978743_4574766_4406139_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596569942/38312_417171518743_34291978743_4574766_4406139_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Matin\\u00E9e NYC\\u2019s Non-Stop New Year! :: #lgbt #edgeonthenet :: http://t.co/d0c9dPYy via @EDGEontheNet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:15 +0000", "from_user": "NYFullTimeJobs", "from_user_id": 422942234, "from_user_id_str": "422942234", "from_user_name": "NYFullTimeJobs", "geo": null, "id": 148834547021262850, "id_str": "148834547021262848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "New NYC Jobs - Loan Officer at Vantage Recruiting (Philadelphia, PA) http://t.co/mExiw3G7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:15 +0000", "from_user": "NYFullTimeJobs", "from_user_id": 422942234, "from_user_id_str": "422942234", "from_user_name": "NYFullTimeJobs", "geo": null, "id": 148834545377083400, "id_str": "148834545377083394", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "New NYC Jobs - VP Engineering at Storydesk (New York, NY) http://t.co/mExiw3G7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:12 +0000", "from_user": "germazing33", "from_user_id": 205368664, "from_user_id_str": "205368664", "from_user_name": "GERM-XXX ", "geo": null, "id": 148834531460390900, "id_str": "148834531460390912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668908960/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668908960/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @SNICKERBOX: Ru1 Bailbonds NJ/NYC Toll Free (855)700-2245 (732)721-7270 http://t.co/lfyaA7pv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:10 +0000", "from_user": "officialnasra", "from_user_id": 105181624, "from_user_id_str": "105181624", "from_user_name": "Nasra", "geo": null, "id": 148834523042430980, "id_str": "148834523042430976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1516370280/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1516370280/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "New Years Eve movie overview: Halle Berry is flawless, Sophia Vergara is hilarious, I am moving to NYC, Zac Efron, I love you.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:09 +0000", "from_user": "WAVELORD", "from_user_id": 23810801, "from_user_id_str": "23810801", "from_user_name": "Outlaw josey wales", "geo": null, "id": 148834519397572600, "id_str": "148834519397572608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695647904/wyN4htbl_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695647904/wyN4htbl_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "#jets Eric smith can hit but he couldn't cover a bed smh and hunter.. just cut him before he comes to to NYC and really gets cut", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:08 +0000", "from_user": "PatoPaez", "from_user_id": 44483710, "from_user_id_str": "44483710", "from_user_name": "Pato Paez", "geo": null, "id": 148834516662878200, "id_str": "148834516662878208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1144931185/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1144931185/image_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Photo: Kenny\\u2019s #streetart #nyc (Taken with instagram) http://t.co/lNpCgh1m", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:08 +0000", "from_user": "buylaminine", "from_user_id": 428631920, "from_user_id_str": "428631920", "from_user_name": "The Happy Pill", "geo": null, "id": 148834515400400900, "id_str": "148834515400400896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674664434/LAM-7_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674664434/LAM-7_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "You can't put a price on feeling great . . or can you? --- $33 >>> http://t.co/QaeP8MJR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:05 +0000", "from_user": "PatoPaez", "from_user_id": 44483710, "from_user_id_str": "44483710", "from_user_name": "Pato Paez", "geo": null, "id": 148834504826552320, "id_str": "148834504826552320", "iso_language_code": "hu", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1144931185/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1144931185/image_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "Kenny's #streetart #nyc http://t.co/7jVV4Lpa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:01 +0000", "from_user": "chrisdavs", "from_user_id": 118364068, "from_user_id_str": "118364068", "from_user_name": "chris davenport", "geo": null, "id": 148834488187752450, "id_str": "148834488187752448", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1283083360/Photo_303_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1283083360/Photo_303_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "NAN. SYD. SFO. PHX. DEN. MEM. NYC. GO.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:59 +0000", "from_user": "BethWms", "from_user_id": 29813224, "from_user_id_str": "29813224", "from_user_name": "Bethany Wms(B.TRU)", "geo": null, "id": 148834477983023100, "id_str": "148834477983023105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1483288156/n789009637_723801_9800_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1483288156/n789009637_723801_9800_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @abiolatv: It's a cold, but beautiful Monday in NYC. Making me wonder if this is the year I stop HATING Winter... #itcouldhappen", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:58 +0000", "from_user": "tasosm", "from_user_id": 14559452, "from_user_id_str": "14559452", "from_user_name": "Tasos M", "geo": null, "id": 148834474107482100, "id_str": "148834474107482114", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690896188/ProfilePhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690896188/ProfilePhoto_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @_TiffanyAndCo: Only in NYC, niggas stay w| \"pussy\" on their mind lmao http://t.co/vpUslJsA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:57 +0000", "from_user": "Su_weets", "from_user_id": 129778666, "from_user_id_str": "129778666", "from_user_name": "Su_weets", "geo": null, "id": 148834469418250240, "id_str": "148834469418250241", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#5: Osiris Men's NYC 83 Mid Skate Shoe: http://t.co/ECj5r1JV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:57 +0000", "from_user": "BlekeySoMelo", "from_user_id": 351315361, "from_user_id_str": "351315361", "from_user_name": "Daniel Simon", "geo": null, "id": 148834468533243900, "id_str": "148834468533243905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681010247/IMG00822-20111129-1149_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681010247/IMG00822-20111129-1149_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@blaze_sumn nun much bout to leave NYC.", "to_user": "blaze_sumn", "to_user_id": 202417505, "to_user_id_str": "202417505", "to_user_name": "l a s h a y . \\u2122 ", "in_reply_to_status_id": 148833723855540220, "in_reply_to_status_id_str": "148833723855540224"}, +{"created_at": "Mon, 19 Dec 2011 18:37:55 +0000", "from_user": "warehime69", "from_user_id": 238800697, "from_user_id_str": "238800697", "from_user_name": "Brandon Warehime", "geo": +{"coordinates": [39.563,-76.9772], "type": "Point"}, "id": 148834460295634940, "id_str": "148834460295634944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692258169/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692258169/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "My only souvenir from NYC. Haha @tdawgsmitty http://t.co/9U6m7OfW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:54 +0000", "from_user": "DavyDangerous", "from_user_id": 23053519, "from_user_id_str": "23053519", "from_user_name": "Davy D.", "geo": null, "id": 148834459444187140, "id_str": "148834459444187136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1202249248/Screen_shot_2010-12-30_at_12.42.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1202249248/Screen_shot_2010-12-30_at_12.42.11_AM_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Any of my NYC peeps wanna have lunch with me?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:54 +0000", "from_user": "YUNews", "from_user_id": 15245617, "from_user_id_str": "15245617", "from_user_name": "Yeshiva University", "geo": null, "id": 148834457405755400, "id_str": "148834457405755392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1417441150/YUshield_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1417441150/YUshield_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "(VIDEO) Stern College for Women's Brookdale Hall Lights Up NYC! #Chanukah http://t.co/SgHlp2vi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:52 +0000", "from_user": "WillllG", "from_user_id": 81489560, "from_user_id_str": "81489560", "from_user_name": "William Girard", "geo": null, "id": 148834449692438530, "id_str": "148834449692438529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1250097603/DSC02380_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1250097603/DSC02380_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @SPINmagazine: The @YYYs are back! They performed this wknd in NYC at a benefit for DJ Jonathan Toubin. Our recap + photos: http://t.co/69DVJQZn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:48 +0000", "from_user": "JimmyOVO", "from_user_id": 169849434, "from_user_id_str": "169849434", "from_user_name": "NOT Jimmy", "geo": null, "id": 148834432277676030, "id_str": "148834432277676033", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700630990/JimmyOVO_117390266826804925_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700630990/JimmyOVO_117390266826804925_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Thanks dear :) RT @Toyosi_O: @JimmyOVO nyc avatar :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:46 +0000", "from_user": "fireengineering", "from_user_id": 31800297, "from_user_id_str": "31800297", "from_user_name": "Fire Engineering", "geo": null, "id": 148834425084444670, "id_str": "148834425084444672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575762934/fire-engineering-fe-icon_2x_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575762934/fire-engineering-fe-icon_2x_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Video of NYC #firefighters escaping burning Brooklyn brownstone: http://t.co/abKqqjIf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:45 +0000", "from_user": "MorillaSD", "from_user_id": 71881058, "from_user_id_str": "71881058", "from_user_name": "KING_CAPRICORN_28TH", "geo": null, "id": 148834417501155330, "id_str": "148834417501155328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700674916/331667097_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700674916/331667097_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @midnitespot: NYC: Sun Dec 25 WinterFresh: B&W Affair @AMNESIA BDAY BASH @SUAVEOFNITELIFE @MRMALIKSTAGENT ... http://t.co/zxushZ0S", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:44 +0000", "from_user": "appstrackers", "from_user_id": 173962109, "from_user_id_str": "173962109", "from_user_name": "Apps Trackers", "geo": null, "id": 148834416779726850, "id_str": "148834416779726848", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1094152420/AppsTrackers_picture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1094152420/AppsTrackers_picture_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Best NYC iPhone Apps http://t.co/PDAp4NIu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:44 +0000", "from_user": "Kelli_Rob", "from_user_id": 265786841, "from_user_id_str": "265786841", "from_user_name": "Kelli", "geo": null, "id": 148834413919207420, "id_str": "148834413919207424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1632872534/305429_291160314237812_100000315385358_1058981_1190560678_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632872534/305429_291160314237812_100000315385358_1058981_1190560678_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@PatToussaint good, NYC this week!", "to_user": "PatToussaint", "to_user_id": 19233279, "to_user_id_str": "19233279", "to_user_name": "\\u265BP\\u2206T\\u00AEICK T\\u03A9U$$\\u2206IN\\u271E ", "in_reply_to_status_id": 148822352539557900, "in_reply_to_status_id_str": "148822352539557888"}, +{"created_at": "Mon, 19 Dec 2011 18:37:42 +0000", "from_user": "Amethystt", "from_user_id": 31591291, "from_user_id_str": "31591291", "from_user_name": "Raquel Bennett", "geo": null, "id": 148834408802168830, "id_str": "148834408802168832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1201320316/LA_Banks_Banner_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1201320316/LA_Banks_Banner_normal.jpg", "source": "<a href="http://www.huffingtonpost.com" rel="nofollow">The Huffington Post</a>", "text": "Dan Frazer Dead: Capt. McNeil On 'Kojak' Dies In NYC http://t.co/SIaa3cxw via @huffingtonpost", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:39 +0000", "from_user": "tori_12322", "from_user_id": 19485971, "from_user_id_str": "19485971", "from_user_name": "Tori Thompson", "geo": null, "id": 148834394205995000, "id_str": "148834394205995008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1571421566/tumblr_lianhsIAeN1qa4k6wo1_500_thumb_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1571421566/tumblr_lianhsIAeN1qa4k6wo1_500_thumb_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @OKMagazine: Darren Criss performs secret show in NYC before he preps for Broadway. Do you want more Blaine on Glee? @darrencriss http://t.co/IOiaiJ9i", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:39 +0000", "from_user": "ThingsToDoNYC", "from_user_id": 16186877, "from_user_id_str": "16186877", "from_user_name": "Sherley GoldPlaceNYC", "geo": null, "id": 148834393128054800, "id_str": "148834393128054784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/204611117/twitterpic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/204611117/twitterpic_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Pianos NYC Free Event - MANNY FRANCO\\u2019S 7pm MATT STURMAN 7:45pm BUMPIN UGLIES 8:30pm LONG MILES 9:15pm DJ ELLIOT 10pm http://t.co/41pyfyKB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:39 +0000", "from_user": "KellyOlexa", "from_user_id": 11891512, "from_user_id_str": "11891512", "from_user_name": "Kelly Olexa", "geo": +{"coordinates": [40.7761,-73.8752], "type": "Point"}, "id": 148834392775720960, "id_str": "148834392775720960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1539758566/AH_KO__145__For_WEB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1539758566/AH_KO__145__For_WEB_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "OMG I AM NOT EVEN JOKING the same couple (George Costanza's parents) that were on my flight TO NYC were on my flight HOME. OMG #needbourbon", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:37:39 +0000", "from_user": "ThingsToDoNYC", "from_user_id": 16186877, "from_user_id_str": "16186877", "from_user_name": "Sherley GoldPlaceNYC", "geo": null, "id": 148834393128054800, "id_str": "148834393128054784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/204611117/twitterpic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/204611117/twitterpic_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Pianos NYC Free Event - MANNY FRANCO\\u2019S 7pm MATT STURMAN 7:45pm BUMPIN UGLIES 8:30pm LONG MILES 9:15pm DJ ELLIOT 10pm http://t.co/41pyfyKB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:39 +0000", "from_user": "KellyOlexa", "from_user_id": 11891512, "from_user_id_str": "11891512", "from_user_name": "Kelly Olexa", "geo": +{"coordinates": [40.7761,-73.8752], "type": "Point"}, "id": 148834392775720960, "id_str": "148834392775720960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1539758566/AH_KO__145__For_WEB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1539758566/AH_KO__145__For_WEB_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "OMG I AM NOT EVEN JOKING the same couple (George Costanza's parents) that were on my flight TO NYC were on my flight HOME. OMG #needbourbon", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:38 +0000", "from_user": "DOPEITSASHH", "from_user_id": 192301410, "from_user_id_str": "192301410", "from_user_name": "Ashley Briana Garcia", "geo": null, "id": 148834388703059970, "id_str": "148834388703059970", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699640840/DOPEITSASHH_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699640840/DOPEITSASHH_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "If theres one place I can go back to would no doubt be NYC<3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:37 +0000", "from_user": "CrystalP_FCB", "from_user_id": 255279488, "from_user_id_str": "255279488", "from_user_name": "C\\u044F\\u0447st\\u03B1lP\\u03B5\\u044F\\u03B5z'", "geo": null, "id": 148834386966609920, "id_str": "148834386966609920", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1689656968/SSSS_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689656968/SSSS_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Eje, El Real Subway! <3 Directico Desde NYC xD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:36 +0000", "from_user": "dhbruce17", "from_user_id": 318078067, "from_user_id_str": "318078067", "from_user_name": "\\u2733\\u2733Danielle\\u2733\\u2733", "geo": null, "id": 148834380842930180, "id_str": "148834380842930176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683637916/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683637916/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TomCruise: Tom answers your questions at the NYC M:I-@GhostProtocol Premiere 2night! Submit your questions w/ #MissionNYC http://t.co/8FwxLVGC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:36 +0000", "from_user": "TubbsKrueger", "from_user_id": 19422772, "from_user_id_str": "19422772", "from_user_name": "Dapp Morris", "geo": null, "id": 148834380788412400, "id_str": "148834380788412418", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691105061/386190_598891335607_80600707_31572642_906418967_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691105061/386190_598891335607_80600707_31572642_906418967_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @SmokeStackLLC: #NYC #MOVIEMAKIN @PaceMediaLLC http://t.co/yUKU7dLl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:34 +0000", "from_user": "MarcusCooks", "from_user_id": 65733755, "from_user_id_str": "65733755", "from_user_name": "Marcus Samuelsson", "geo": null, "id": 148834374333374460, "id_str": "148834374333374464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/692026945/TwitPicMarcus_Samuelsson_7436_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/692026945/TwitPicMarcus_Samuelsson_7436_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Thank you!! What's your favorite dish? RT @pluslily: @MarcusCooks i looove your restaurant!! #food #NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:34 +0000", "from_user": "98Nina98", "from_user_id": 259063627, "from_user_id_str": "259063627", "from_user_name": "Christina Chance", "geo": null, "id": 148834373792313340, "id_str": "148834373792313344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1663630808/Us__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663630808/Us__1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ArianaGrande: If you're coming to my show on December 28 at @IrvingPlaza in NYC and want to come meet me after, here's how: http://t.co/1w7eeLFq! xoxo RT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:33 +0000", "from_user": "bigmf22", "from_user_id": 85752296, "from_user_id_str": "85752296", "from_user_name": "David V. Fiori II", "geo": null, "id": 148834367232417800, "id_str": "148834367232417793", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694062150/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694062150/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @abrozowsky: Nyc tomorrow with @stefikalafornia & @bigmf22.!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:29 +0000", "from_user": "DiggyFierce", "from_user_id": 179279103, "from_user_id_str": "179279103", "from_user_name": "Sha'Nay Nay", "geo": null, "id": 148834352367796220, "id_str": "148834352367796224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1672245701/384891_332344186780197_100000138568308_1660545_1546562843_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672245701/384891_332344186780197_100000138568308_1660545_1546562843_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "nyc.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:27 +0000", "from_user": "BreakinNewsNow", "from_user_id": 339137934, "from_user_id_str": "339137934", "from_user_name": "Breakin' News Now", "geo": null, "id": 148834345665302530, "id_str": "148834345665302528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1452017176/news_pic-on-blue_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1452017176/news_pic-on-blue_normal.jpg", "source": "<a href="http://www.breakinnewsnow.com" rel="nofollow">BreakinNewsNow</a>", "text": "Breakin' News: Cops: Woman burned in NYC elevator over $2K - CBS News http://t.co/m5qzpzfH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:27 +0000", "from_user": "Every1HateKarma", "from_user_id": 364626414, "from_user_id_str": "364626414", "from_user_name": "Everyone Hates Karma", "geo": null, "id": 148834342158864400, "id_str": "148834342158864384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701672695/Every1HateKarma_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701672695/Every1HateKarma_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @purplepeace79: Talking about sistas with weaves but your woman got more tracks than the NYC subway system. FOH.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:20 +0000", "from_user": "cherryloveslife", "from_user_id": 40374163, "from_user_id_str": "40374163", "from_user_name": "CHERRY ABDOU", "geo": null, "id": 148834315365646340, "id_str": "148834315365646336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1550878035/engagement_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1550878035/engagement_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @HotChelleRae: Don\\u2019t forget! We are playing a private show today at 5PM EST at the @iHeartRadio Theater in NYC. Enter for tix here: http://t.co/AzJSN2zV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:20 +0000", "from_user": "ViRacQStar", "from_user_id": 291199813, "from_user_id_str": "291199813", "from_user_name": "\\uE31DSexi Racqui\\uE13E \\u2653", "geo": null, "id": 148834312815509500, "id_str": "148834312815509505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702581681/npPEg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702581681/npPEg_normal.jpg", "source": "<a href="http://stone.com/Twittelator" rel="nofollow">Twittelator</a>", "text": "\\uE412\\uE412\\uE412\\uE411\\uE411\\uE411\\uE411RT @LivLaffSplurge Smh RT @FreekeyZeakey: This---->RT @BBizDAish: Uhmm RT @_cudderz Why do people say NYE?? Isn't it NYC??? Idk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:19 +0000", "from_user": "KeoniHudoba", "from_user_id": 247543816, "from_user_id_str": "247543816", "from_user_name": "Keoni Hudoba", "geo": null, "id": 148834311813083140, "id_str": "148834311813083136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1235066333/166171_537835721554_81300044_31458928_5106398_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1235066333/166171_537835721554_81300044_31458928_5106398_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@StergioLive I'm great big guy. When u coming to nyc?", "to_user": "StergioLive", "to_user_id": 170192951, "to_user_id_str": "170192951", "to_user_name": "St\\u00E9rgio ", "in_reply_to_status_id": 148834186042687500, "in_reply_to_status_id_str": "148834186042687488"}, +{"created_at": "Mon, 19 Dec 2011 18:37:19 +0000", "from_user": "99celebrities", "from_user_id": 183533126, "from_user_id_str": "183533126", "from_user_name": "99celebrities", "geo": null, "id": 148834311670476800, "id_str": "148834311670476800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1132361285/Untitled-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1132361285/Untitled-2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TomCruise: TONIGHT! LIVE #MISSIONIMPOSSIBLE @GHOSTPROTOCOL #NYC #MOVIE \\u2605PREMIERE\\u2605 #BLOG COVERAGE! Join us on the red carpet! http://t.co/8FwxLVGC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:19 +0000", "from_user": "motniemtin", "from_user_id": 18185719, "from_user_id_str": "18185719", "from_user_name": "motniemtin", "geo": null, "id": 148834309522997250, "id_str": "148834309522997248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://i3e.us" rel="nofollow">i3e Auto Tweet</a>", "text": "AT&amp;T brings free WiFi to four more NYC parks, will occupy your downtime :: http://t.co/jnwmxGGK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:18 +0000", "from_user": "iAmRozayMylan", "from_user_id": 394079360, "from_user_id_str": "394079360", "from_user_name": "Rozay Mylan ", "geo": null, "id": 148834307941740540, "id_str": "148834307941740544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695640552/iAmRozayMylan_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695640552/iAmRozayMylan_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "My last nite in town NYC ..... Come see me at @clubPERFECTION tonite !!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:16 +0000", "from_user": "YoLdn", "from_user_id": 149318208, "from_user_id_str": "149318208", "from_user_name": "London", "geo": null, "id": 148834298886234100, "id_str": "148834298886234112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693279752/phone_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693279752/phone_pic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Baron Davies NYC. They needed that", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:15 +0000", "from_user": "JTre910", "from_user_id": 429155476, "from_user_id_str": "429155476", "from_user_name": "JTre", "geo": null, "id": 148834292477329400, "id_str": "148834292477329408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1675528927/PROFILE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675528927/PROFILE_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "http://t.co/oazbcatj A must read for any NYC resident regardless of your ethnic background... #RealLife", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:10 +0000", "from_user": "Salza456", "from_user_id": 27834190, "from_user_id_str": "27834190", "from_user_name": "Angela M Mulei", "geo": null, "id": 148834272113983500, "id_str": "148834272113983488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1543958826/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543958826/image_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@ivncole nah bt it is on my list of must watch btw check out once upon a time really nyc series abt snow white bt wit a twist", "to_user": "ivncole", "to_user_id": 141198401, "to_user_id_str": "141198401", "to_user_name": "yvonne kirina", "in_reply_to_status_id": 148830471579635700, "in_reply_to_status_id_str": "148830471579635712"}, +{"created_at": "Mon, 19 Dec 2011 18:37:09 +0000", "from_user": "TracySchario", "from_user_id": 15029455, "from_user_id_str": "15029455", "from_user_name": "Tracy Schario", "geo": null, "id": 148834270285283330, "id_str": "148834270285283328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/328132686/11f7865_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/328132686/11f7865_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "can drivers wear white gloves like in Japan? \\u201C@mikedebonis: What color for DC cabs? Ward 3 white? DDOT red?NYC yellow? http://t.co/HaKRnCR4\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:09 +0000", "from_user": "ArdorRealEstate", "from_user_id": 424438326, "from_user_id_str": "424438326", "from_user_name": "Ardor Real Estate", "geo": null, "id": 148834269542875140, "id_str": "148834269542875137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1664616854/ardor_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664616854/ardor_logo_normal.jpg", "source": "<a href="http://www.ardorny.com" rel="nofollow">ArdorRealEstate</a>", "text": "#NYC New York, Real Estate #apartment #rentals #Upper Westside Studio Walk-up $1,750 http://t.co/vKS9P8NY NY Apartments for Rent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:09 +0000", "from_user": "Princess_Trice", "from_user_id": 180159127, "from_user_id_str": "180159127", "from_user_name": "Kamryn Madison ", "geo": null, "id": 148834267256995840, "id_str": "148834267256995840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690621534/Trice_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690621534/Trice_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "I wanna go to NYC so bad for new years eve!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:09 +0000", "from_user": "ArdorRealEstate", "from_user_id": 424438326, "from_user_id_str": "424438326", "from_user_name": "Ardor Real Estate", "geo": null, "id": 148834267202457600, "id_str": "148834267202457602", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1664616854/ardor_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664616854/ardor_logo_normal.jpg", "source": "<a href="http://www.ardorny.com" rel="nofollow">ArdorRealEstate</a>", "text": "#NYC New York, Real Estate #apartment #rentals #East Midtown 1-BR Walk-up $2,650 http://t.co/rmcGeOcG NY Apartments for Rent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:08 +0000", "from_user": "ArdorRealEstate", "from_user_id": 424438326, "from_user_id_str": "424438326", "from_user_name": "Ardor Real Estate", "geo": null, "id": 148834264610381820, "id_str": "148834264610381824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1664616854/ardor_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664616854/ardor_logo_normal.jpg", "source": "<a href="http://www.ardorny.com" rel="nofollow">ArdorRealEstate</a>", "text": "#NYC New York, Real Estate #apartment #rentals #Gramercy Park 1-BR Townhouse $2,200 http://t.co/OhqTb8kX NY Apartments for Rent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:08 +0000", "from_user": "TyonJReid", "from_user_id": 21933334, "from_user_id_str": "21933334", "from_user_name": "Tyon J Reid \\u2714", "geo": null, "id": 148834263406616580, "id_str": "148834263406616577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701295776/206829_1936632742630_1446703627_32236656_198104_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701295776/206829_1936632742630_1446703627_32236656_198104_n_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "NICE!! #NYC RT @KnickScoop Baron Davis runs New York City (VIDEO) http://t.co/40ZADCQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:07 +0000", "from_user": "SmokeStackLLC", "from_user_id": 127678096, "from_user_id_str": "127678096", "from_user_name": "SmokeStackRecordings", "geo": null, "id": 148834261384957950, "id_str": "148834261384957953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1340161678/smokestack_new_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1340161678/smokestack_new_logo_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "#NYC #MOVIEMAKIN @PaceMediaLLC http://t.co/yUKU7dLl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:05 +0000", "from_user": "JanetheWriter", "from_user_id": 16545036, "from_user_id_str": "16545036", "from_user_name": "Jane E. Herman", "geo": +{"coordinates": [40.45,-74.5025], "type": "Point"}, "id": 148834253629698050, "id_str": "148834253629698048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/291890010/IMG_0334_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/291890010/IMG_0334_normal.JPG", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@FrumeSarah Sorry to miss you in NYC. xo.", "to_user": "FrumeSarah", "to_user_id": 10862572, "to_user_id_str": "10862572", "to_user_name": "FrumeSarah"}, +{"created_at": "Mon, 19 Dec 2011 18:37:04 +0000", "from_user": "yesiamcheap", "from_user_id": 133841222, "from_user_id_str": "133841222", "from_user_name": "Sandy Smith", "geo": null, "id": 148834248927879170, "id_str": "148834248927879168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1535962753/cheap_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1535962753/cheap_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "I love that the @INGDIRECT cafe in NYC is hosting an ugly sweater party on December 21. It ain't Christmas without an 80's sweater.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:03 +0000", "from_user": "BonniePfiester", "from_user_id": 48458575, "from_user_id_str": "48458575", "from_user_name": "Bonnie Pfiester", "geo": null, "id": 148834242644815870, "id_str": "148834242644815872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542685404/tw_12528441_1316015883_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542685404/tw_12528441_1316015883_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@iBodyFit nope!! Freezing my butt of in NYC", "to_user": "iBodyFit", "to_user_id": 195335062, "to_user_id_str": "195335062", "to_user_name": "Franklin Antoian", "in_reply_to_status_id": 148831289544421380, "in_reply_to_status_id_str": "148831289544421376"}, +{"created_at": "Mon, 19 Dec 2011 18:37:00 +0000", "from_user": "Toyosi_O", "from_user_id": 168168039, "from_user_id_str": "168168039", "from_user_name": "\\u2665Oluwatoyosi Oke \\u2665", "geo": null, "id": 148834232205197300, "id_str": "148834232205197312", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627589355/329398216_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627589355/329398216_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@JimmyOVO nyc avatar :)", "to_user": "JimmyOVO", "to_user_id": 169849434, "to_user_id_str": "169849434", "to_user_name": "NOT Jimmy", "in_reply_to_status_id": 148833504476672000, "in_reply_to_status_id_str": "148833504476672000"}, +{"created_at": "Mon, 19 Dec 2011 18:36:55 +0000", "from_user": "_mikecoleman_", "from_user_id": 22935383, "from_user_id_str": "22935383", "from_user_name": "Mike Coleman", "geo": null, "id": 148834207895003140, "id_str": "148834207895003136", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1476319332/28526_387149707049_579142049_4642983_7129387_n-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1476319332/28526_387149707049_579142049_4642983_7129387_n-2_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "NYC http://t.co/KER7GoNb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:53 +0000", "from_user": "jayvaldez559", "from_user_id": 132707014, "from_user_id_str": "132707014", "from_user_name": "Jay", "geo": null, "id": 148834202475962370, "id_str": "148834202475962368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1648043815/330091246_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648043815/330091246_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Knicks fans should worry about Baron coming in fat, disinterested, and too busy trying to book NYC stars for his next terrible movie. #NBA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:51 +0000", "from_user": "QUART_KNEE_XO", "from_user_id": 121820149, "from_user_id_str": "121820149", "from_user_name": "Courtney", "geo": null, "id": 148834191927287800, "id_str": "148834191927287809", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1655517874/Picture0045_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655517874/Picture0045_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"@katkittiekat: @QUART_KNEE_XO I miss you too wyd for new years\" idkkk I might go to NYC now gahh we gotta chat.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:49 +0000", "from_user": "stopoccupywaste", "from_user_id": 419644780, "from_user_id_str": "419644780", "from_user_name": "stopoccupy", "geo": null, "id": 148834184251711500, "id_str": "148834184251711488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1653955410/StopOccupyWaste_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653955410/StopOccupyWaste_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Fr @StopOccupyWaste NY Torching Suspect Charged With Murder http://t.co/7sIDZABU #StopOccopyWaste", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:48 +0000", "from_user": "verkuilenfsma6", "from_user_id": 377859833, "from_user_id_str": "377859833", "from_user_name": "Verkuilen Webber", "geo": null, "id": 148834181219221500, "id_str": "148834181219221504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1554294805/imagesCAW5B66L_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554294805/imagesCAW5B66L_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Aww man I really wanted to see LanaDelRey in nyc 12/5 but I didn't know she was gonna be here until", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:48 +0000", "from_user": "HanStaff", "from_user_id": 321079821, "from_user_id_str": "321079821", "from_user_name": "Hannah Stafford", "geo": null, "id": 148834178589397000, "id_str": "148834178589396992", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1524048093/Beachy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1524048093/Beachy_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@M0NJ0NES no NYC? \\uE038\\uE153\\uE157\\uE504", "to_user": "M0NJ0NES", "to_user_id": 187954539, "to_user_id_str": "187954539", "to_user_name": "Monica Jones"}, +{"created_at": "Mon, 19 Dec 2011 18:36:47 +0000", "from_user": "mandy_bearr", "from_user_id": 380100377, "from_user_id_str": "380100377", "from_user_name": "amanda stegura", "geo": null, "id": 148834176471285760, "id_str": "148834176471285760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680276246/DSCF1938_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680276246/DSCF1938_normal.JPG", "source": "<a href="http://twitpic.com" rel="nofollow">Twitpic</a>", "text": "Lunch in little italy :) hello #NYC http://t.co/ALJ6hWoE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:46 +0000", "from_user": "Tashaclydesdale", "from_user_id": 97990347, "from_user_id_str": "97990347", "from_user_name": "Natasha Clydesdale", "geo": null, "id": 148834172260192260, "id_str": "148834172260192256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681428431/SfT6yhil_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681428431/SfT6yhil_normal", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@DiVineStyling I'm great and its about to get better as soon as I'm out of work. Shoppin in NYC is soo much fun. Hows everything on ur side", "to_user": "DiVineStyling", "to_user_id": 80341149, "to_user_id_str": "80341149", "to_user_name": "Sasha Watson", "in_reply_to_status_id": 148833814083407870, "in_reply_to_status_id_str": "148833814083407872"}, +{"created_at": "Mon, 19 Dec 2011 18:36:44 +0000", "from_user": "AmmAuHdiiVa", "from_user_id": 24638987, "from_user_id_str": "24638987", "from_user_name": "\\uE003Miss Lannie", "geo": null, "id": 148834165129875460, "id_str": "148834165129875456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699039902/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699039902/image_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @purplepeace79: Talking about sistas with weaves but your woman got more tracks than the NYC subway system. FOH.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:44 +0000", "from_user": "Damon_James", "from_user_id": 169219354, "from_user_id_str": "169219354", "from_user_name": "Damon James", "geo": null, "id": 148834164404269060, "id_str": "148834164404269056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1608610102/185430_10150403878133852_582933851_10533730_564621_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608610102/185430_10150403878133852_582933851_10533730_564621_n_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@iamdnothing believe me I don't want to but if she's gunna make a name that's where we have to go. NYC is the end game!", "to_user": "iamdnothing", "to_user_id": 255588623, "to_user_id_str": "255588623", "to_user_name": "D Nothing", "in_reply_to_status_id": 148833749117829120, "in_reply_to_status_id_str": "148833749117829121"}, +{"created_at": "Mon, 19 Dec 2011 18:36:43 +0000", "from_user": "Tenneyson", "from_user_id": 111115684, "from_user_id_str": "111115684", "from_user_name": "Tenneyson Absinthe", "geo": null, "id": 148834160784572400, "id_str": "148834160784572418", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1199322203/Tenneyson_Front_and_Back_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1199322203/Tenneyson_Front_and_Back_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "You never know when you might need this... #NYC RT @eaterny: Where to Eat at Newark Liberty Airport (EWR) http://t.co/weRIRNh1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:43 +0000", "from_user": "BigAppleJobsQ", "from_user_id": 432012303, "from_user_id_str": "432012303", "from_user_name": "BigAppleJobsQ", "geo": null, "id": 148834158062481400, "id_str": "148834158062481408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681836247/zNYC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681836247/zNYC_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "New NYC Jobs --- PostDoctoral Associate at University of Massachusetts Medical School (Worcester, MA) http://t.co/Eou1N0Dl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:42 +0000", "from_user": "BigAppleJobsQ", "from_user_id": 432012303, "from_user_id_str": "432012303", "from_user_name": "BigAppleJobsQ", "geo": null, "id": 148834156942589950, "id_str": "148834156942589953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681836247/zNYC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681836247/zNYC_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "New NYC Jobs --- Application Specialist - Open Systems at Fiserv Card Services (Morris Plains, NJ) http://t.co/Eou1N0Dl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:42 +0000", "from_user": "MovieMarkers", "from_user_id": 390592121, "from_user_id_str": "390592121", "from_user_name": "Movie Markers", "geo": null, "id": 148834156510593020, "id_str": "148834156510593025", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1587686827/movie_markers_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587686827/movie_markers_logo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TomCruise: Tom answers your questions at the NYC M:I-@GhostProtocol Premiere 2night! Submit your questions w/ #MissionNYC http://t.co/8FwxLVGC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:42 +0000", "from_user": "BigAppleJobsQ", "from_user_id": 432012303, "from_user_id_str": "432012303", "from_user_name": "BigAppleJobsQ", "geo": null, "id": 148834155717857280, "id_str": "148834155717857281", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681836247/zNYC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681836247/zNYC_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "New NYC Jobs --- SharePoint Solution Architect at Grg Consulting (New York, NY) http://t.co/Eou1N0Dl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:42 +0000", "from_user": "BigAppleJobsQ", "from_user_id": 432012303, "from_user_id_str": "432012303", "from_user_name": "BigAppleJobsQ", "geo": null, "id": 148834154392453120, "id_str": "148834154392453120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681836247/zNYC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681836247/zNYC_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "New NYC Jobs --- Junior Information Architect at Rokkan (New York, NY) http://t.co/Eou1N0Dl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:41 +0000", "from_user": "BigAppleJobsQ", "from_user_id": 432012303, "from_user_id_str": "432012303", "from_user_name": "BigAppleJobsQ", "geo": null, "id": 148834153008349200, "id_str": "148834153008349186", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681836247/zNYC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681836247/zNYC_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "New NYC Jobs --- Loan Officer at Vantage Recruiting (Philadelphia, PA) http://t.co/Eou1N0Dl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:41 +0000", "from_user": "krissy2707", "from_user_id": 29204851, "from_user_id_str": "29204851", "from_user_name": "Kristin White", "geo": null, "id": 148834149799690240, "id_str": "148834149799690240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/575851885/sands_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/575851885/sands_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@DeeandRicky Do you guy have a store in NYC?", "to_user": "DeeandRicky", "to_user_id": 19823348, "to_user_id_str": "19823348", "to_user_name": "Dee & Ricky Ahh!", "in_reply_to_status_id": 148832940711878660, "in_reply_to_status_id_str": "148832940711878656"}, +{"created_at": "Mon, 19 Dec 2011 18:36:40 +0000", "from_user": "Killa_Kae", "from_user_id": 345033106, "from_user_id_str": "345033106", "from_user_name": "Kaela Redmond", "geo": null, "id": 148834148407197700, "id_str": "148834148407197696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701567516/Photo_on_2011-12-17_at_13.57_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701567516/Photo_on_2011-12-17_at_13.57_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @mirandaproulx: I wanna go to college in NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:38 +0000", "from_user": "GICARTI", "from_user_id": 76677548, "from_user_id_str": "76677548", "from_user_name": "La Neta del Planeta", "geo": null, "id": 148834138844172300, "id_str": "148834138844172289", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1184847908/DSCN3374__2__-_copia_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1184847908/DSCN3374__2__-_copia_normal.JPG", "source": "<a href="http://nowplayingplugin.com/" rel="nofollow">Now Playing</a>", "text": "Listening to - Beastie Boys ~~ An Open Letter to NYC #nowplaying", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:37 +0000", "from_user": "YungMAC112", "from_user_id": 35676023, "from_user_id_str": "35676023", "from_user_name": "Yung MAC. \\uE01D", "geo": null, "id": 148834133005713400, "id_str": "148834133005713408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1629742979/ym_promo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629742979/ym_promo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "s/o to @TheSource for giving me something to read when i Drop kids off at the pool and the quick interview at #DXC #NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:36 +0000", "from_user": "derricksharpe", "from_user_id": 346319929, "from_user_id_str": "346319929", "from_user_name": "@mfg bitch!", "geo": null, "id": 148834130992439300, "id_str": "148834130992439296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695379649/D2cbbkOz_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695379649/D2cbbkOz_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@poochie_black: @derricksharpe Nooooo, not nyc !! Lmao\" lol hellll yeah or damn las vegas", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:36 +0000", "from_user": "iBoogzNicole", "from_user_id": 38798282, "from_user_id_str": "38798282", "from_user_name": "Naj \\uE03E\\uE414", "geo": null, "id": 148834130698838000, "id_str": "148834130698838016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1571309114/iBoogzNicole_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1571309114/iBoogzNicole_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "RT @Jared_V: Wait... RT @BBizDAish Uhmm RT @_cudderz Why do people say NYE?? Isn't it NYC??? Idk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:35 +0000", "from_user": "JanetLFalk", "from_user_id": 28583359, "from_user_id_str": "28583359", "from_user_name": "Janet L. Falk", "geo": null, "id": 148834125242044400, "id_str": "148834125242044417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/137518079/Janet_Falk_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/137518079/Janet_Falk_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@NewYorkPost SOURCE #Roosevelt Island has a history of scientific innovation & research http://t.co/283eSHoj http://t.co/xtYj1GD7 #nyc", "to_user": "NewYorkPost", "to_user_id": 17469289, "to_user_id_str": "17469289", "to_user_name": "New York Post", "in_reply_to_status_id": 148802912284454900, "in_reply_to_status_id_str": "148802912284454912"}, +{"created_at": "Mon, 19 Dec 2011 18:36:34 +0000", "from_user": "cmt1098", "from_user_id": 235810670, "from_user_id_str": "235810670", "from_user_name": "Caroline Bieber(;", "geo": null, "id": 148834123690156030, "id_str": "148834123690156032", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1628085733/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628085733/image_normal.jpg", "source": "<a href="http://www.motorola.com" rel="nofollow">DROID</a>", "text": "Finnaly here!(: NYC babyyy!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:34 +0000", "from_user": "AviationCanada", "from_user_id": 278997174, "from_user_id_str": "278997174", "from_user_name": "Aviation Canada", "geo": null, "id": 148834122977124350, "id_str": "148834122977124352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1304327639/aviation-canada_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1304327639/aviation-canada_normal.jpg", "source": "<a href="http://www.flightpodcast.com" rel="nofollow">Aviation Canada</a>", "text": "Upstart British #airline to use CSeries in new London-NYC route - @FinancialPost : http://t.co/fYt0KDmS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:32 +0000", "from_user": "igintonic", "from_user_id": 438250868, "from_user_id_str": "438250868", "from_user_name": "i Gin Tonic", "geo": null, "id": 148834114907275260, "id_str": "148834114907275264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696309561/igin-logo-512px_normal.png", "profile_image_url_https": null, "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @DrinkEnglishGin: Some of @DrinkEnglishGin's favorite NYC bars made the cut! http://t.co/AkLjHjkU @selenawrites", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:31 +0000", "from_user": "OperaSolutions", "from_user_id": 158618738, "from_user_id_str": "158618738", "from_user_name": "Opera Solutions", "geo": null, "id": 148834108817158140, "id_str": "148834108817158144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1116226052/Opera_Solutions_Logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1116226052/Opera_Solutions_Logo_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @kbierce: @OperaAnalytics email me (Katharine Bierce) if ur interested in the presentations / public speaking workshop in #NYC this Wed! (50% off too)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:26 +0000", "from_user": "HaiderKA", "from_user_id": 21222785, "from_user_id_str": "21222785", "from_user_name": "Haider\\u2122", "geo": null, "id": 148834088185372670, "id_str": "148834088185372672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1635978671/HKA_Beaver_Stadium_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635978671/HKA_Beaver_Stadium_1_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@rahimaxarsenal My last final was on Thursday, took a bus to NYC Friday, PIA flight to Lahore Saturday night, Lahore to Islamabad Sunday.", "to_user": "rahimaxarsenal", "to_user_id": 165536979, "to_user_id_str": "165536979", "to_user_name": "R.", "in_reply_to_status_id": 148832962836824060, "in_reply_to_status_id_str": "148832962836824065"}, +{"created_at": "Mon, 19 Dec 2011 18:36:25 +0000", "from_user": "reinventmekiki", "from_user_id": 26455084, "from_user_id_str": "26455084", "from_user_name": "Kallie B. *05ZG08FA", "geo": null, "id": 148834082451755000, "id_str": "148834082451755009", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698592401/110111144112_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698592401/110111144112_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Biz trip to nyc ladies #2012 #JMM @SapphireJewel87 @oooh_lala_monet @Mindblower1982", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:23 +0000", "from_user": "janinex3_", "from_user_id": 238364511, "from_user_id_str": "238364511", "from_user_name": "janine the great. ", "geo": null, "id": 148834077229850620, "id_str": "148834077229850625", "iso_language_code": "is", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1622892339/AdYeB9rCMAAfxnq_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622892339/AdYeB9rCMAAfxnq_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @OneDirectionNY: Totals: Dallas = 280; NYC = 220; LA = 200", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:22 +0000", "from_user": "LivLaffSplurge", "from_user_id": 53305484, "from_user_id_str": "53305484", "from_user_name": "\\u03FBuse", "geo": null, "id": 148834070544134140, "id_str": "148834070544134144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1643195995/LivLaffSplurge_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643195995/LivLaffSplurge_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Smh RT @FreekeyZeakey: This---->RT @BBizDAish: Uhmm RT @_cudderz Why do people say NYE?? Isn't it NYC??? Idk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:21 +0000", "from_user": "mheusler", "from_user_id": 16597357, "from_user_id_str": "16597357", "from_user_name": "mheusler", "geo": null, "id": 148834068165955600, "id_str": "148834068165955584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698549649/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698549649/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@billspec Be careful on NYC elevators !", "to_user": "billspec", "to_user_id": 29123068, "to_user_id_str": "29123068", "to_user_name": "Bill Spector", "in_reply_to_status_id": 148830294600978430, "in_reply_to_status_id_str": "148830294600978432"}, +{"created_at": "Mon, 19 Dec 2011 18:36:21 +0000", "from_user": "99celebrities", "from_user_id": 183533126, "from_user_id_str": "183533126", "from_user_name": "99celebrities", "geo": null, "id": 148834065510973440, "id_str": "148834065510973441", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1132361285/Untitled-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1132361285/Untitled-2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TomCruise: Tom answers your questions at the NYC M:I-@GhostProtocol Premiere 2night! Submit your questions w/ #MissionNYC http://t.co/8FwxLVGC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:18 +0000", "from_user": "ACooksNook", "from_user_id": 382396759, "from_user_id_str": "382396759", "from_user_name": "A Cook's Nook", "geo": null, "id": 148834055931179000, "id_str": "148834055931179009", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1566814135/handstand_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566814135/handstand_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Have you seen the NYC Rockettes? They are Amazing!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:18 +0000", "from_user": "1D_NewYorkCity", "from_user_id": 423929717, "from_user_id_str": "423929717", "from_user_name": "Julia Konts ", "geo": null, "id": 148834055406891000, "id_str": "148834055406891009", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1663610569/Screen_shot_2011-11-10_at_10.46.35_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663610569/Screen_shot_2011-11-10_at_10.46.35_PM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @OneDirectionNY: NYC, WE HAVE TO WIN THIS NEXT CHALLENGE AND BUMP DALLAS DOWN TO THIRD.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:16 +0000", "from_user": "Poetryboy01", "from_user_id": 347833784, "from_user_id_str": "347833784", "from_user_name": "Vusi sindane", "geo": null, "id": 148834045399277570, "id_str": "148834045399277568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1596066259/Poetry_boy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596066259/Poetry_boy_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Nyc track by ma frndz- stable-boyz z da family", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:16 +0000", "from_user": "ftgreene", "from_user_id": 18820283, "from_user_id_str": "18820283", "from_user_name": "ftgreene", "geo": null, "id": 148834044820455420, "id_str": "148834044820455425", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/70430901/ftgreene2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/70430901/ftgreene2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "1 media mention new on December 19 at 12:30 p.m.: \\n Media mention\\n\\n \\nMultiple locations\\n\\n\\n\\n\\n\\n \\n Holiday ... http://t.co/6wRvrWVD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:15 +0000", "from_user": "ftgreene", "from_user_id": 18820283, "from_user_id_str": "18820283", "from_user_name": "ftgreene", "geo": null, "id": 148834043390210050, "id_str": "148834043390210048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/70430901/ftgreene2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/70430901/ftgreene2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "1 photo new on December 19 at 11:45 a.m.: \\n Photo\\n\\n \\n\\nSomewhere in Fort Greene\\n\\n\\n\\n\\n\\n\\n \\n \\n LB1147 posted... http://t.co/t2XEqTPv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:14 +0000", "from_user": "CodyIsABoss", "from_user_id": 289083467, "from_user_id_str": "289083467", "from_user_name": "swagge.", "geo": null, "id": 148834036066955260, "id_str": "148834036066955265", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701424387/347ef1d829e911e19e4a12313813ffc0_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701424387/347ef1d829e911e19e4a12313813ffc0_7_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "MY TUMBLR. re-done it. http://t.co/OJzL6vIe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:13 +0000", "from_user": "shanescanlon", "from_user_id": 33338241, "from_user_id_str": "33338241", "from_user_name": "Shane Nikki Scanlon", "geo": null, "id": 148834034691215360, "id_str": "148834034691215360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1680099676/7052f3fb-5afa-4fe2-b638-2dabf2750f45_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680099676/7052f3fb-5afa-4fe2-b638-2dabf2750f45_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "We have arrived in NYC!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:09 +0000", "from_user": "_JLee18", "from_user_id": 280133010, "from_user_id_str": "280133010", "from_user_name": "Janielee Allen", "geo": null, "id": 148834015653277700, "id_str": "148834015653277697", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1613290311/_JLee18_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1613290311/_JLee18_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "I wanna go to the DMV or NYC over the break >_<", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:03 +0000", "from_user": "redostoneage", "from_user_id": 28156710, "from_user_id_str": "28156710", "from_user_name": "Truth Tweeter", "geo": null, "id": 148833993574465540, "id_str": "148833993574465536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/661208289/get_fileCA9BVO04_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/661208289/get_fileCA9BVO04_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Obama Victory! #Occupydenver trashes downtown civic center http://t.co/BBSiCW7i #ows #p2 #topprog #maddow #msnbc #cnn #nyc #npr #pbs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:03 +0000", "from_user": "aaron_glaser", "from_user_id": 23230123, "from_user_id_str": "23230123", "from_user_name": "Aaron Glaser ", "geo": null, "id": 148833992295194620, "id_str": "148833992295194624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/708928101/Photo_88_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/708928101/Photo_88_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @BrendanPlease: In NYC? Check. Like comedy? Check. @TheMoonShow Multi-Denominational Year-End Celebration! tonight? CHECK http://t.co/jMxyeFV0 #greatcomedy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:03 +0000", "from_user": "OccupyWeather", "from_user_id": 400559295, "from_user_id_str": "400559295", "from_user_name": "Occupy Weather", "geo": null, "id": 148833991548604400, "id_str": "148833991548604416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1612658667/ows_retreats_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612658667/ows_retreats_normal.jpg", "source": "<a href="http://24Ahead.com/" rel="nofollow">OccupyWeather</a>", "text": "Forecast for NYC Sunday: Rain. High temp: 60F. #OccupyWallStreet #ocra #teaparty", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:01 +0000", "from_user": "xSillaMahone", "from_user_id": 225152705, "from_user_id_str": "225152705", "from_user_name": "\\u2661\\u2661SILLA", "geo": null, "id": 148833984607043600, "id_str": "148833984607043584", "iso_language_code": "fi", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684979660/331220275_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684979660/331220275_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "OMFG LE ROLLING 2 NYC HAHAHAHAHAHAHAHA LMAO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:01 +0000", "from_user": "OccupyWeather", "from_user_id": 400559295, "from_user_id_str": "400559295", "from_user_name": "Occupy Weather", "geo": null, "id": 148833982405029900, "id_str": "148833982405029889", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1612658667/ows_retreats_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612658667/ows_retreats_normal.jpg", "source": "<a href="http://24Ahead.com/" rel="nofollow">OccupyWeather</a>", "text": "Forecast for NYC Saturday night: Mostly cloudy. Low temp: 48F. #OccupyWallStreet #sgp #tcot", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:00 +0000", "from_user": "ddlovatoSpain", "from_user_id": 30282461, "from_user_id_str": "30282461", "from_user_name": "Demi Lovato Spain", "geo": null, "id": 148833978827288580, "id_str": "148833978827288576", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1669696707/icon_twit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669696707/icon_twit_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@DemiEuropeTour La sorpresa es que ser\\u00E1 la presentadora del programa de MTV en NYC ;-)", "to_user": "DemiEuropeTour", "to_user_id": 48117682, "to_user_id_str": "48117682", "to_user_name": "Lightweight", "in_reply_to_status_id": 148818807966797820, "in_reply_to_status_id_str": "148818807966797824"}, +{"created_at": "Mon, 19 Dec 2011 18:36:00 +0000", "from_user": "Acne_Assassin", "from_user_id": 172861475, "from_user_id_str": "172861475", "from_user_name": "Vanessa Rhee", "geo": null, "id": 148833977942290430, "id_str": "148833977942290432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1091758961/1001246261_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1091758961/1001246261_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Acne A's Skin Update Where to Get Laser Acne Treatment Nyc? - PDF http://t.co/PgNlHi8Q #skin #acne #help", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:59 +0000", "from_user": "Gisselatinoco", "from_user_id": 296454713, "from_user_id_str": "296454713", "from_user_name": "\\u2665Gisselatinoco\\u2665", "geo": +{"coordinates": [40.6794,-73.8617], "type": "Point"}, "id": 148833976918867970, "id_str": "148833976918867969", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702563821/476185560_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702563821/476185560_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@MrAlexisPR y mi regalo de navidad?.....\\u263Abesos desde NYC", "to_user": "MrAlexisPR", "to_user_id": 77029606, "to_user_id_str": "77029606", "to_user_name": "Alexis Ortiz", "in_reply_to_status_id": 148830563317448700, "in_reply_to_status_id_str": "148830563317448704"}, +{"created_at": "Mon, 19 Dec 2011 18:35:59 +0000", "from_user": "Jared_V", "from_user_id": 24605466, "from_user_id_str": "24605466", "from_user_name": "Jared", "geo": null, "id": 148833973580202000, "id_str": "148833973580201984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685492661/profile_image_1323542793027_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685492661/profile_image_1323542793027_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "Wait... RT @BBizDAish Uhmm RT @_cudderz Why do people say NYE?? Isn't it NYC??? Idk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:59 +0000", "from_user": "Oranje_Carot", "from_user_id": 89751476, "from_user_id_str": "89751476", "from_user_name": "Jessika Rabitt", "geo": null, "id": 148833972904927230, "id_str": "148833972904927234", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1620030713/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620030713/image_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @Wale: Good Morning NYC.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:56 +0000", "from_user": "Judas_Jackson", "from_user_id": 346031006, "from_user_id_str": "346031006", "from_user_name": "Delicious", "geo": null, "id": 148833961127329800, "id_str": "148833961127329792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1566179432/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566179432/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @alanhahn: Davis pointed out how he always came to NYC to play at Rucker and always wanted to call the Garden home.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:52 +0000", "from_user": "georginasmithh", "from_user_id": 27915052, "from_user_id_str": "27915052", "from_user_name": "Army of Skanks", "geo": null, "id": 148833947512614900, "id_str": "148833947512614912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702566005/screenCap1323291655_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702566005/screenCap1323291655_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "might just run away to nyc and start a life , easy....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:51 +0000", "from_user": "Johnny_Logic", "from_user_id": 51771972, "from_user_id_str": "51771972", "from_user_name": "Frank Lee Awesome", "geo": null, "id": 148833942445891600, "id_str": "148833942445891584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/287244068/gl_corps_50x50_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/287244068/gl_corps_50x50_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MikeValenti971: WOW. read this. People are monsters. http://t.co/cCP3w7gs How could you do this to another human?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:49 +0000", "from_user": "aktolunay", "from_user_id": 26771577, "from_user_id_str": "26771577", "from_user_name": "Dogan Aktolunay", "geo": null, "id": 148833934959063040, "id_str": "148833934959063040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/110820370/yuz_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/110820370/yuz_normal.JPG", "source": "<a href="http://www.thefancy.com" rel="nofollow"> Fancy</a>", "text": "20 Pine Residences @ NYC http://t.co/HHZZGOQk via @thefancy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:49 +0000", "from_user": "fluorescentsky", "from_user_id": 21053667, "from_user_id_str": "21053667", "from_user_name": "Anna", "geo": null, "id": 148833934325727230, "id_str": "148833934325727232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1646097602/Photo_on_11-12-11_at_7.47_PM__7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646097602/Photo_on_11-12-11_at_7.47_PM__7_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Ess-a-Bagel is good, but I can't tell if it's \"the best bagel place in NYC\" (even though it supposedly is) because I'm not a bagel person...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:49 +0000", "from_user": "TheMoonShow", "from_user_id": 121923873, "from_user_id_str": "121923873", "from_user_name": "The Moon", "geo": null, "id": 148833933172293630, "id_str": "148833933172293632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/745528236/moon_logo_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/745528236/moon_logo_sm_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @BrendanPlease: In NYC? Check. Like comedy? Check. @TheMoonShow Multi-Denominational Year-End Celebration! tonight? CHECK http://t.co/jMxyeFV0 #greatcomedy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:48 +0000", "from_user": "ladybmusic", "from_user_id": 34931526, "from_user_id_str": "34931526", "from_user_name": "Bethany Divalicious", "geo": null, "id": 148833930181750800, "id_str": "148833930181750785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1532483136/266722_10150215927048506_659138505_7363657_5732986_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1532483136/266722_10150215927048506_659138505_7363657_5732986_o_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Check me out live in NYC on 94.1 FM this Wednesday 10pm-1am. Please support the Team Divalicious movement #Movie.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:47 +0000", "from_user": "grace8ming", "from_user_id": 246614123, "from_user_id_str": "246614123", "from_user_name": "kimberly grace", "geo": null, "id": 148833925681258500, "id_str": "148833925681258496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1565464328/fence_peep_hole_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1565464328/fence_peep_hole_3_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @democracynow: Occupy Wall Street NYC marks 3-month anniversary with re-occupation attempt, dozens arrested. http://t.co/jK0sLcnw #ows", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:47 +0000", "from_user": "JayBoo210", "from_user_id": 220613044, "from_user_id_str": "220613044", "from_user_name": "Jay", "geo": null, "id": 148833923152101380, "id_str": "148833923152101377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701268870/Twitpic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701268870/Twitpic_normal.jpg", "source": "<a href="http://accounts.vitrue.com/" rel="nofollow">Vitrue Accounts</a>", "text": "RT @mix961sa: Not much time left to enter to win a trip to NYC for NYE and the chance to see @LadyGaga, @LMFAO, @bep & more! http://t.co/YKGgNsvW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:46 +0000", "from_user": "juicyjenn1127", "from_user_id": 398137122, "from_user_id_str": "398137122", "from_user_name": "Jennifer", "geo": null, "id": 148833919381422080, "id_str": "148833919381422080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701075015/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701075015/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@LeverickBay not NYC , north carolina", "to_user": "LeverickBay", "to_user_id": 194666089, "to_user_id_str": "194666089", "to_user_name": "Leverick Bay Resort ", "in_reply_to_status_id": 148830561878814720, "in_reply_to_status_id_str": "148830561878814720"}, +{"created_at": "Mon, 19 Dec 2011 18:35:46 +0000", "from_user": "AkiraOne", "from_user_id": 39069271, "from_user_id_str": "39069271", "from_user_name": "Akira Ruiz", "geo": null, "id": 148833918806790140, "id_str": "148833918806790145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1318628934/CNCSumo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1318628934/CNCSumo_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "Had a great shoot yesterday. #NYC #Instagrizzle http://t.co/WeE5HdlF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:45 +0000", "from_user": "JuanDavidLoopez", "from_user_id": 198214933, "from_user_id_str": "198214933", "from_user_name": "Juan David", "geo": null, "id": 148833917531729920, "id_str": "148833917531729921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1634631189/SDC14716_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634631189/SDC14716_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @rihanna: #Classic RT @FashionManic: \\u201C@rihanna:Steven Jo is hilarious!!! #youtube\\u201D<< LOL! Did you see when he got punk'd/pranked in NYC on WSHH?!?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:44 +0000", "from_user": "JenniferWh1tney", "from_user_id": 160236002, "from_user_id_str": "160236002", "from_user_name": "Jennifer Levine", "geo": null, "id": 148833913056411650, "id_str": "148833913056411648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1673942273/twitpic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673942273/twitpic_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "NYC bound! #homesweethome", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:44 +0000", "from_user": "zoefinkel", "from_user_id": 14167938, "from_user_id_str": "14167938", "from_user_name": "zoe finkel", "geo": null, "id": 148833910279774200, "id_str": "148833910279774208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1529366367/Photo_on_2011-08-29_at_15.23_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1529366367/Photo_on_2011-08-29_at_15.23_normal.jpg", "source": "<a href="http://twitter.com" rel="nofollow">Twitter for iPhone</a>", "text": "Nothing like hailing my first cab #NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:43 +0000", "from_user": "JingDaily", "from_user_id": 30452613, "from_user_id_str": "30452613", "from_user_name": "Jing Daily (\\u7CBE\\u65E5\\u4F20\\u5A92)", "geo": null, "id": 148833909952610300, "id_str": "148833909952610304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/618706964/jing-calligraphy-avatar_RED_new_Facebook_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/618706964/jing-calligraphy-avatar_RED_new_Facebook_normal.gif", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Event Recap: An Evening of Chinese Folk Songs At New York\\u2019s China Institute http://t.co/N3RwQxW0 #china #NYC #arts #music #culture", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:43 +0000", "from_user": "mcastillo8", "from_user_id": 143811020, "from_user_id_str": "143811020", "from_user_name": "Maria Castillo", "geo": null, "id": 148833907935154180, "id_str": "148833907935154176", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1565466955/IMG00099-20110805-1845_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1565466955/IMG00099-20110805-1845_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@alaieg hasta cuando estas en nyc?", "to_user": "alaieg", "to_user_id": 145884354, "to_user_id_str": "145884354", "to_user_name": "Alison EG", "in_reply_to_status_id": 148781016075603970, "in_reply_to_status_id_str": "148781016075603968"} +, +{"created_at": "Mon, 19 Dec 2011 18:35:39 +0000", "from_user": "derricksharpe", "from_user_id": 346319929, "from_user_id_str": "346319929", "from_user_name": "@mfg bitch!", "geo": null, "id": 148833889291485200, "id_str": "148833889291485184", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695379649/D2cbbkOz_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695379649/D2cbbkOz_normal", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @poochie_black: @derricksharpe Nooooo, not nyc !! Lmao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:38 +0000", "from_user": "tattwithjerzey", "from_user_id": 171204031, "from_user_id_str": "171204031", "from_user_name": "Jerzey", "geo": null, "id": 148833885516599300, "id_str": "148833885516599296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696603492/376157_2480526810778_1180775053_2148708_1861989620_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696603492/376157_2480526810778_1180775053_2148708_1861989620_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Destination Tattoo NYC now doing Microdermal Piercings.. Safe and Clean.. Best Prices in NYC.. Give Jerzey a Call 212-427-1808..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:37 +0000", "from_user": "Gflo54", "from_user_id": 382961814, "from_user_id_str": "382961814", "from_user_name": "Flo Green", "geo": null, "id": 148833882802896900, "id_str": "148833882802896896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1579198873/2Dd_QTZ23xtwvdC7NqkDgkwABA_gBDg9DEWsRXBMUIB0g.128_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1579198873/2Dd_QTZ23xtwvdC7NqkDgkwABA_gBDg9DEWsRXBMUIB0g.128_normal.png", "source": "<a href="http://www.yahoo.com" rel="nofollow">Yahoo!</a>", "text": "gave a thumbs up to wingnut's comment: This country is full of idiots. Thank god most of them just troll around... http://t.co/2FDO1Xti", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:37 +0000", "from_user": "_dally92", "from_user_id": 208113847, "from_user_id_str": "208113847", "from_user_name": "Dally", "geo": null, "id": 148833881381027840, "id_str": "148833881381027840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1671428707/me_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671428707/me_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "So jel @Elliemay993 is living it up in NYC and i'm sat here watching Jack and the Beanstalk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:35 +0000", "from_user": "TheRealShahrin", "from_user_id": 106605974, "from_user_id_str": "106605974", "from_user_name": "The Real Shahrin", "geo": null, "id": 148833874695303170, "id_str": "148833874695303168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1665282825/n506095857_6042515_3172052_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665282825/n506095857_6042515_3172052_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"@nayan1983: @TheRealShahrin ppl in kansas city need hrblock more\" lol nyc has it too but they are not hiring", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:34 +0000", "from_user": "yatesc", "from_user_id": 7141172, "from_user_id_str": "7141172", "from_user_name": "C. M. Yates & Ko.", "geo": null, "id": 148833870878482430, "id_str": "148833870878482432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1266029221/CMYKompany_Icon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266029221/CMYKompany_Icon_normal.png", "source": "<a href="http://www.twittergadget.com" rel="nofollow">tGadget</a>", "text": "@mikedebonis DDOT red, or NYC yellow. Either would be fine.", "to_user": "mikedebonis", "to_user_id": 16753660, "to_user_id_str": "16753660", "to_user_name": "Mike DeBonis", "in_reply_to_status_id": 148833231544909820, "in_reply_to_status_id_str": "148833231544909824"}, +{"created_at": "Mon, 19 Dec 2011 18:35:34 +0000", "from_user": "porchnik", "from_user_id": 135705548, "from_user_id_str": "135705548", "from_user_name": "Porchnik", "geo": null, "id": 148833870840733700, "id_str": "148833870840733696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1312849289/64028_10100104981053929_819309_54429174_7679167_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312849289/64028_10100104981053929_819309_54429174_7679167_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "nightmare \\u201C@lisang: The New Me Generation: 30-something couple have do-gooder NYC wedding in trendy DUMBO loft space http://t.co/N7Dx9C1m\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:31 +0000", "from_user": "YeliLoveJonas", "from_user_id": 191708969, "from_user_id_str": "191708969", "from_user_name": "Yelii Lovee Jo\\u00DFroos", "geo": null, "id": 148833857133748220, "id_str": "148833857133748224", "iso_language_code": "hu", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702580364/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702580364/image_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @DeniseJonas: John's Pizza NYC!! http://t.co/lMqV6aPF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:31 +0000", "from_user": "GLBTshirts", "from_user_id": 74878650, "from_user_id_str": "74878650", "from_user_name": "GlbtShirts.com", "geo": null, "id": 148833856701726720, "id_str": "148833856701726721", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1399110079/glbgrup1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1399110079/glbgrup1_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "PHOTOS: NYC Glitterati Celebrate Ziggy Stardust At Bowieball http://t.co/mJuWQSZb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:29 +0000", "from_user": "LaDyfever", "from_user_id": 247988533, "from_user_id_str": "247988533", "from_user_name": "~FEDERAL DISTRICT ~", "geo": null, "id": 148833849995042800, "id_str": "148833849995042816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1601400938/y1mEqTW9_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601400938/y1mEqTW9_normal", "source": "<a href="http://retwedia.com" rel="nofollow">Retwedia.com</a>", "text": "RT @MysterioLG: \"I Don't Know\" Feat. My Bro @NYCLean #AllBlockEverything #LetsGo #NYC #ATL #MIA #London #Paris #Tokyo #Toronto http://t.co/k4qUxJVd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:29 +0000", "from_user": "pryncesssawah", "from_user_id": 95421465, "from_user_id_str": "95421465", "from_user_name": "Sarah Connor", "geo": null, "id": 148833847558160400, "id_str": "148833847558160384", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700437527/new_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700437527/new_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@ NYC Pub http://t.co/6mYPJjzr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:28 +0000", "from_user": "JanetLFalk", "from_user_id": 28583359, "from_user_id_str": "28583359", "from_user_name": "Janet L. Falk", "geo": null, "id": 148833845834285060, "id_str": "148833845834285056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/137518079/Janet_Falk_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/137518079/Janet_Falk_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@billritter7 SOURCE #Roosevelt Island has a history of scientific innovation & research http://t.co/283eSHoj http://t.co/xtYj1GD7 #nyc", "to_user": "billritter7", "to_user_id": 18770777, "to_user_id_str": "18770777", "to_user_name": "Bill Ritter"}, +{"created_at": "Mon, 19 Dec 2011 18:35:28 +0000", "from_user": "NYBusinessSale", "from_user_id": 302085966, "from_user_id_str": "302085966", "from_user_name": "NY Business For Sale", "geo": null, "id": 148833843435151360, "id_str": "148833843435151360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1362202321/bb_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1362202321/bb_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#NYC BusinessForSale PRICE REDUCE/Complete Renovate BAKERY on Roosevelt Ave. (917-749-7804) (Woodside) $199000 http://t.co/8JBRR79f", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:27 +0000", "from_user": "NYBusinessSale", "from_user_id": 302085966, "from_user_id_str": "302085966", "from_user_name": "NY Business For Sale", "geo": null, "id": 148833842621464580, "id_str": "148833842621464576", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1362202321/bb_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1362202321/bb_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#NYC BusinessForSale Bar & Restaurant For Sale on Roosevelt Ave. (917-749-7804) (Woodside) $175000 http://t.co/owxFaz2C", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:27 +0000", "from_user": "NYBusinessSale", "from_user_id": 302085966, "from_user_id_str": "302085966", "from_user_name": "NY Business For Sale", "geo": null, "id": 148833841673539600, "id_str": "148833841673539584", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1362202321/bb_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1362202321/bb_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#NYC BusinessForSale Pizzeria for Sale (Flatlands, Brooklyn) $145000 http://t.co/dlc9cCW0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:27 +0000", "from_user": "NYBusinessSale", "from_user_id": 302085966, "from_user_id_str": "302085966", "from_user_name": "NY Business For Sale", "geo": null, "id": 148833841484795900, "id_str": "148833841484795905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1362202321/bb_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1362202321/bb_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#NYC BusinessForSale GROCERY/FLOWERS/VEGETABLE/LOCATION/LOCATION/ (917-749-7804) (JACKSON HEIGHTS) $159000 http://t.co/J2tKuUIr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:26 +0000", "from_user": "raphaelsonlawNY", "from_user_id": 216502008, "from_user_id_str": "216502008", "from_user_name": "Raphaelson & Levine", "geo": null, "id": 148833835973476350, "id_str": "148833835973476353", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1180255714/35873_405465355442_57345080442_4964469_6994452_n_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1180255714/35873_405465355442_57345080442_4964469_6994452_n_normal.jpeg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "http://t.co/cOxZDooT \"...my reputation is destroyed\" former consultant John Haggerty sentenced 4theft of NYC's mayor Bloomberg campaign...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:25 +0000", "from_user": "extremepainlaw", "from_user_id": 260392016, "from_user_id_str": "260392016", "from_user_name": "Extreme Pain", "geo": null, "id": 148833832001474560, "id_str": "148833832001474560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "http://t.co/4H3YQlu6 \"...my reputation is destroyed\" former consultant John Haggerty sentenced 4theft of NYC's mayor Bloomberg campaign...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:24 +0000", "from_user": "Lannekir", "from_user_id": 359255568, "from_user_id_str": "359255568", "from_user_name": "vincent", "geo": null, "id": 148833828851552260, "id_str": "148833828851552256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@NerdyFTW u streamed for so long lol it was like 4 something when you ended it here in nyc", "to_user": "NerdyFTW", "to_user_id": 35617065, "to_user_id_str": "35617065", "to_user_name": "NerdyFTW", "in_reply_to_status_id": 148755054365642750, "in_reply_to_status_id_str": "148755054365642753"}, +{"created_at": "Mon, 19 Dec 2011 18:35:24 +0000", "from_user": "poochie_black", "from_user_id": 33023298, "from_user_id_str": "33023298", "from_user_name": "Betty Crocker", "geo": null, "id": 148833827941392400, "id_str": "148833827941392385", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694061945/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694061945/profile_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "@derricksharpe Nooooo, not nyc !! Lmao", "to_user": "derricksharpe", "to_user_id": 346319929, "to_user_id_str": "346319929", "to_user_name": "@mfg bitch!", "in_reply_to_status_id": 148833485287723000, "in_reply_to_status_id_str": "148833485287723008"}, +{"created_at": "Mon, 19 Dec 2011 18:35:23 +0000", "from_user": "Beatfmjo", "from_user_id": 41121534, "from_user_id_str": "41121534", "from_user_name": "Beat FM Jordan", "geo": null, "id": 148833825659682800, "id_str": "148833825659682817", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/218897917/1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/218897917/1_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Music News - Darren Criss Plays Secret Show in NYC - Ever since Darren Criss surged into public consciousness l... http://t.co/ngDxtk5K", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:21 +0000", "from_user": "hazenandrews1", "from_user_id": 437762870, "from_user_id_str": "437762870", "from_user_name": "Hazen Andrews", "geo": null, "id": 148833816469966850, "id_str": "148833816469966848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699048451/270321_10150231329527872_502722871_7282232_7948192_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699048451/270321_10150231329527872_502722871_7282232_7948192_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "new idea... even if i moved to #nyc to live on the street and sell my body... i'd still get to live in New York right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:21 +0000", "from_user": "honeybabychile", "from_user_id": 321135335, "from_user_id_str": "321135335", "from_user_name": "Keisha ", "geo": null, "id": 148833814347649020, "id_str": "148833814347649025", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1624580799/profile_image_1320541333263_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624580799/profile_image_1320541333263_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @purplepeace79: Talking about sistas with weaves but your woman got more tracks than the NYC subway system. FOH.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:20 +0000", "from_user": "thugmisstuesday", "from_user_id": 44818142, "from_user_id_str": "44818142", "from_user_name": "Princess", "geo": null, "id": 148833809729724400, "id_str": "148833809729724417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1561989896/h9MYSh6F_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1561989896/h9MYSh6F_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@AngelaSimmons: I'm ready to go to NYC!\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:16 +0000", "from_user": "BigNight4Percy", "from_user_id": 389252024, "from_user_id_str": "389252024", "from_user_name": "Percival's Big Night", "geo": null, "id": 148833796463136770, "id_str": "148833796463136769", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1584300391/Screen_shot_2011-10-11_at_11.17.19_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584300391/Screen_shot_2011-10-11_at_11.17.19_PM_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "What Chloe (@sarahawharton) and Riku (@angiemaroon) did last night | http://t.co/l9TsfpOq | #viral #bts #vlog #brooklyn #nyc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:16 +0000", "from_user": "MadeInToronto", "from_user_id": 271251774, "from_user_id_str": "271251774", "from_user_name": "Adam Daniel Mezei", "geo": null, "id": 148833796240842750, "id_str": "148833796240842752", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1285076701/Obraz032__2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1285076701/Obraz032__2__normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "What Chloe (@sarahawharton) and Riku (@angiemaroon) did last night | http://t.co/v4kVY8ra | #viral #bts #vlog #brooklyn #nyc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:16 +0000", "from_user": "dreamchaserS_", "from_user_id": 313710708, "from_user_id_str": "313710708", "from_user_name": "dreamchaserSfirm", "geo": null, "id": 148833794093363200, "id_str": "148833794093363200", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668325833/V4uzA4G5_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668325833/V4uzA4G5_normal", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Billionaire's Daughter Pays Record Sum For NYC Pad - Forbes http://t.co/SygpV3ge", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:16 +0000", "from_user": "thugmisstuesday", "from_user_id": 44818142, "from_user_id_str": "44818142", "from_user_name": "Princess", "geo": null, "id": 148833792960897020, "id_str": "148833792960897024", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1561989896/h9MYSh6F_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1561989896/h9MYSh6F_normal", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @AngelaSimmons: I'm ready to go to NYC!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:14 +0000", "from_user": "dylanhauck", "from_user_id": 23724791, "from_user_id_str": "23724791", "from_user_name": "Dylan ", "geo": +{"coordinates": [40.7734,-73.871], "type": "Point"}, "id": 148833787306983420, "id_str": "148833787306983424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639120549/UserPicture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639120549/UserPicture_normal.jpg", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "Coming hoooome!!! Thanks for the good times, NYC! (@ LaGuardia Airport (LGA) w/ 104 others) https://t.co/F6NsVcXh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:14 +0000", "from_user": "charlotte_blyth", "from_user_id": 69054272, "from_user_id_str": "69054272", "from_user_name": "Charlotte Blyth", "geo": null, "id": 148833785373401100, "id_str": "148833785373401088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1645540844/Snapshot_20110829_2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645540844/Snapshot_20110829_2_normal.JPG", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "RT @GabbieSuffell: http://t.co/yN5QCnuc char luvin lyf in nyc xxoxoox", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:13 +0000", "from_user": "DJSureal", "from_user_id": 20417977, "from_user_id_str": "20417977", "from_user_name": "Tha Mandinko Samurai", "geo": null, "id": 148833781200072700, "id_str": "148833781200072706", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691588435/46384_1387235440411_1217792957_30932545_409024_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691588435/46384_1387235440411_1217792957_30932545_409024_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Why do I prefer taking subways in NYC than Joe Metro in Seattle? #PublicTransportation", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:13 +0000", "from_user": "BlondeTaliban", "from_user_id": 176316746, "from_user_id_str": "176316746", "from_user_name": "Henny4Breakfast.", "geo": null, "id": 148833780789030900, "id_str": "148833780789030912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701536263/hCCOGPWO_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701536263/hCCOGPWO_normal", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "Dalia RT @KumoStevie: Who gonna be in NYC for new years?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:12 +0000", "from_user": "FilmStadtKoeln", "from_user_id": 245887286, "from_user_id_str": "245887286", "from_user_name": "Kino in K\\u00F6ln", "geo": null, "id": 148833778645737470, "id_str": "148833778645737472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1232654080/when-harry-met-sally_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1232654080/when-harry-met-sally_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TomCruise: TONIGHT! LIVE #MISSIONIMPOSSIBLE @GHOSTPROTOCOL #NYC #MOVIE \\u2605PREMIERE\\u2605 #BLOG COVERAGE! Join us on the red carpet! http://t.co/8FwxLVGC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:12 +0000", "from_user": "criggy", "from_user_id": 72187054, "from_user_id_str": "72187054", "from_user_name": "Eileen F. Corigliano", "geo": null, "id": 148833776569565200, "id_str": "148833776569565185", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1589430454/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1589430454/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#Alice's Tea Cup yum! Great tea and scones, a great way to spend a cold NYC afternoon with friends.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:10 +0000", "from_user": "direcvidalatina", "from_user_id": 48514672, "from_user_id_str": "48514672", "from_user_name": "DIRECT", "geo": null, "id": 148833769607020540, "id_str": "148833769607020544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702502998/393228_10151068237355074_811075073_22484431_261474672_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702502998/393228_10151068237355074_811075073_22484431_261474672_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "#booked :) nyc in feb I would tell ya the date but naaaa lol see ya soon http://t.co/5EwBzmAe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:10 +0000", "from_user": "MiaGrimes1", "from_user_id": 439402575, "from_user_id_str": "439402575", "from_user_name": "Mia Grimes", "geo": null, "id": 148833769175007230, "id_str": "148833769175007232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698937357/Sunflower_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698937357/Sunflower_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TomCruise: Tom answers your questions at the NYC M:I-@GhostProtocol Premiere 2night! Submit your questions w/ #MissionNYC http://t.co/8FwxLVGC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:09 +0000", "from_user": "radionylive", "from_user_id": 108448917, "from_user_id_str": "108448917", "from_user_name": "Radio New York Live", "geo": null, "id": 148833764393496580, "id_str": "148833764393496577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702492668/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702492668/logo_normal.png", "source": "<a href="http://www.radionylive.com/home.live" rel="nofollow">Radio NY Live - New York City</a>", "text": "Listen Live: http://t.co/dxUqZsZK - #NowPlaying Fastball - The Way - #NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:08 +0000", "from_user": "AnonMedics", "from_user_id": 359518856, "from_user_id_str": "359518856", "from_user_name": "Anon Street Medics", "geo": null, "id": 148833761931427840, "id_str": "148833761931427840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1507650276/c3xxbv_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1507650276/c3xxbv_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "Organizing an action in NYC and need medical support? Consider contacting @CrylightX #ows", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:08 +0000", "from_user": "TheRealADM", "from_user_id": 11789752, "from_user_id_str": "11789752", "from_user_name": "Adam Daniel Mezei", "geo": null, "id": 148833760798969860, "id_str": "148833760798969856", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686456940/Obraz021_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686456940/Obraz021_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "What Chloe (@sarahawharton) and Riku (@angiemaroon) did last night | http://t.co/SDyieUiM | #viral #bts #vlog #brooklyn #nyc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:06 +0000", "from_user": "urbancowboyNJ", "from_user_id": 156019035, "from_user_id_str": "156019035", "from_user_name": "ChocolateCamoCowboy ", "geo": null, "id": 148833752678805500, "id_str": "148833752678805504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1671365619/Parsippany-Troy_20Hills-20110805-00007_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671365619/Parsippany-Troy_20Hills-20110805-00007_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@cowgirl_PMG hellz yea...will be in NYC for opening weekend! Woot", "to_user": "cowgirl_PMG", "to_user_id": 227055347, "to_user_id_str": "227055347", "to_user_name": "Paige Gregory", "in_reply_to_status_id": 148833440920383500, "in_reply_to_status_id_str": "148833440920383488"}, +{"created_at": "Mon, 19 Dec 2011 18:35:04 +0000", "from_user": "YungMAC112", "from_user_id": 35676023, "from_user_id_str": "35676023", "from_user_name": "Yung MAC. \\uE01D", "geo": null, "id": 148833744529272830, "id_str": "148833744529272833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1629742979/ym_promo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629742979/ym_promo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "S/o to the @TheSourceMag ..... #DXC #NYC recap.....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:03 +0000", "from_user": "NSAYMidtown", "from_user_id": 191212164, "from_user_id_str": "191212164", "from_user_name": "Midtown ", "geo": null, "id": 148833740343345150, "id_str": "148833740343345152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1260269821/Midtown_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1260269821/Midtown_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Things to Do in #Midtown & #Hell's Kitchen: Dec. 19-23. New Intrepid Museum exhibit, CSI Experience and more! http://t.co/IQXGCTkD #nyc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:02 +0000", "from_user": "Baltimo206", "from_user_id": 439192201, "from_user_id_str": "439192201", "from_user_name": "Ibrahim abdulkarim", "geo": null, "id": 148833737126314000, "id_str": "148833737126313985", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700626337/7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700626337/7_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Nyc 1 igot a hot cup ov coffe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:01 +0000", "from_user": "bbully718", "from_user_id": 425173947, "from_user_id_str": "425173947", "from_user_name": "brian brooks", "geo": null, "id": 148833731908608000, "id_str": "148833731908608000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693212463/IMG00104-20110617-1049_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693212463/IMG00104-20110617-1049_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@KevinHart4real when r u performing in NYC..", "to_user": "KevinHart4real", "to_user_id": 23151437, "to_user_id_str": "23151437", "to_user_name": "Kevin Hart"}, +{"created_at": "Mon, 19 Dec 2011 18:34:59 +0000", "from_user": "HSJumpSpain", "from_user_id": 238719120, "from_user_id_str": "238719120", "from_user_name": "Hey! Say! JUMP Spain", "geo": null, "id": 148833722429489150, "id_str": "148833722429489153", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1216646670/hsj_spain_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1216646670/hsj_spain_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Preview del nuevo PV de NYC\\n\\n~~ Cris http://t.co/EyweVqoH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:58 +0000", "from_user": "GoldstarNewYork", "from_user_id": 34739142, "from_user_id_str": "34739142", "from_user_name": "Goldstar New York", "geo": null, "id": 148833719174696960, "id_str": "148833719174696960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/191853173/gs-twitter-ny_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/191853173/gs-twitter-ny_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Featured Today: \"Dialogue in the Dark\" -- see what it's like to navigate NYC in total darkness http://t.co/4QHqfZoZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:56 +0000", "from_user": "KITA____", "from_user_id": 70260799, "from_user_id_str": "70260799", "from_user_name": "Kita", "geo": null, "id": 148833710949675000, "id_str": "148833710949675008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702586550/331707775_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702586550/331707775_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@NickiJuelz wats good with nyc?? We goin??? Its next week!", "to_user": "NickiJuelz", "to_user_id": 429170618, "to_user_id_str": "429170618", "to_user_name": "Nicki Juelz"}, +{"created_at": "Mon, 19 Dec 2011 18:34:56 +0000", "from_user": "JackieJudd", "from_user_id": 16643579, "from_user_id_str": "16643579", "from_user_name": "JackieJudd", "geo": null, "id": 148833709250969600, "id_str": "148833709250969600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1201689251/jj_328_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1201689251/jj_328_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @IntegrativeInfo: RT @democracynow: Occupy Wall Street NYC marks 3-month anniversary with re-occupation attempt, dozens arrested. http://t.co/c6DDnVqV #ows", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:55 +0000", "from_user": "Andreamonsterrr", "from_user_id": 179972755, "from_user_id_str": "179972755", "from_user_name": "Andrea Lively \\u03DF ", "geo": null, "id": 148833706088464400, "id_str": "148833706088464388", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702606694/tumblr_lucc16LwTo1qecdxro2_250_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702606694/tumblr_lucc16LwTo1qecdxro2_250_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Hoy le he preguntado a @raulpad que me dijera las partes de NYC y me dice: \"Brooklyn, el bronx & la madre que lo pari\\u00F3!\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:55 +0000", "from_user": "FreekeyZeakey", "from_user_id": 213525046, "from_user_id_str": "213525046", "from_user_name": "Zeakey If U Nasty", "geo": null, "id": 148833705048285200, "id_str": "148833705048285184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1692428611/FreekeyZeakey_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692428611/FreekeyZeakey_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "This---->RT @BBizDAish: Uhmm RT @_cudderz Why do people say NYE?? Isn't it NYC??? Idk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:55 +0000", "from_user": "DDLH_DYNAMITE", "from_user_id": 207261472, "from_user_id_str": "207261472", "from_user_name": "Argentina Demi FC", "geo": null, "id": 148833704805007360, "id_str": "148833704805007360", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684387248/Captura_de_pantalla_2011-12-10_a_las_01.12.59_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684387248/Captura_de_pantalla_2011-12-10_a_las_01.12.59_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Tmb @RadioTKM cont\\u00F3 que Demi cantar\\u00E1 en el festejo de a\\u00F1o nuevo de MTV este 31/12 en NYC y que est\\u00E1 mas sexy que nunca!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:54 +0000", "from_user": "evanramadan", "from_user_id": 180747493, "from_user_id_str": "180747493", "from_user_name": "evan ramadhan", "geo": null, "id": 148833701671870460, "id_str": "148833701671870464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702550776/Img_00494_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702550776/Img_00494_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @billboard: #Glee star @DarrenCriss played a few shows in #NYC over the weekend while in town for \"How to Succeed...\" on #Broadway http://t.co/O74cYdkY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:54 +0000", "from_user": "happydawgblawg", "from_user_id": 223020169, "from_user_id_str": "223020169", "from_user_name": "Happy Dawg Advocacy ", "geo": null, "id": 148833701013368830, "id_str": "148833701013368832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1269981128/183840_1886379563087_1349367244_2160640_7555704_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1269981128/183840_1886379563087_1349367244_2160640_7555704_n_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "@UrgentPart2:#NYC Manhattan REX - A919658 FEMALE, RED, JINDO MIX, 10 yrs STRAY - STRAY WAIT... http://t.co/QvC3GbNF", "to_user": "UrgentPart2", "to_user_id": 250326581, "to_user_id_str": "250326581", "to_user_name": "Kay Smith"}, +{"created_at": "Mon, 19 Dec 2011 18:34:53 +0000", "from_user": "nicherssfeed", "from_user_id": 183779446, "from_user_id_str": "183779446", "from_user_name": "Sam", "geo": null, "id": 148833698886860800, "id_str": "148833698886860800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1112124245/Bryson_Bay__Australia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1112124245/Bryson_Bay__Australia_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "SensoryFriendly Movie Screenings for NYC Kids Film Screenings for ... http://t.co/79ZUIvdS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:52 +0000", "from_user": "McDirection__JB", "from_user_id": 93929841, "from_user_id_str": "93929841", "from_user_name": "\\u2665 \\u03DF \\u262E", "geo": null, "id": 148833692935143420, "id_str": "148833692935143425", "iso_language_code": "hu", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1675536494/LMK-055561__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675536494/LMK-055561__1__normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @DeniseJonas: John's Pizza NYC!! http://t.co/lMqV6aPF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:51 +0000", "from_user": "TCarolino", "from_user_id": 414296098, "from_user_id_str": "414296098", "from_user_name": "Theresa Carolino", "geo": null, "id": 148833688656941060, "id_str": "148833688656941057", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "was in NYC yesterday all day it was cold but soo much fun visited the Dash store bought Kris Jenner book nice store but too pricey for me.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:47 +0000", "from_user": "nytmnews", "from_user_id": 100553075, "from_user_id_str": "100553075", "from_user_name": "NYTM News", "geo": null, "id": 148833673981083650, "id_str": "148833673981083649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/727598012/nytmnews_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/727598012/nytmnews_twitter_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NYC BigApps: Checking in with Max Stoller http://t.co/Lbmy0RhJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:46 +0000", "from_user": "sjpuls", "from_user_id": 168494150, "from_user_id_str": "168494150", "from_user_name": "Sarah Puls", "geo": null, "id": 148833666997559300, "id_str": "148833666997559296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693521929/SarahPulsheadshot_118x160_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693521929/SarahPulsheadshot_118x160_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ariscott: I have a brand new website: http://t.co/kYgcE9Rb - please pass it along to anyone you might know who needs headshots in NYC. Thank you!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:43 +0000", "from_user": "Omari_West", "from_user_id": 156142433, "from_user_id_str": "156142433", "from_user_name": "Omar", "geo": null, "id": 148833656549543940, "id_str": "148833656549543938", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1552699031/Suit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552699031/Suit_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @therealmikedean: #WTT U.S. TOUR IS A WRAP. PJ TO NYC TO START NEXT PHASE.. NEVER STOPS DOES IT?? WHAT'S BETTER THAN THAT?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:42 +0000", "from_user": "SergeCBeaulieu", "from_user_id": 207378020, "from_user_id_str": "207378020", "from_user_name": "Serge Beaulieu", "geo": null, "id": 148833650543304700, "id_str": "148833650543304704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1670686144/jjj_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670686144/jjj_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "so i'm moving to NYC!!! feb or march. looking for a cool design studio to be part of. it's official :-) http://t.co/Gv9BOUMc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:40 +0000", "from_user": "JanetLFalk", "from_user_id": 28583359, "from_user_id_str": "28583359", "from_user_name": "Janet L. Falk", "geo": null, "id": 148833645669515260, "id_str": "148833645669515264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/137518079/Janet_Falk_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/137518079/Janet_Falk_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@CBSNews SOURCE #Roosevelt Island has a history of scientific innovation & research http://t.co/283eSHoj http://t.co/xtYj1GD7 #nyc", "to_user": "CBSNews", "to_user_id": 15012486, "to_user_id_str": "15012486", "to_user_name": "CBS News"}, +{"created_at": "Mon, 19 Dec 2011 18:34:40 +0000", "from_user": "PilarWormack", "from_user_id": 184944537, "from_user_id_str": "184944537", "from_user_name": "Pilar Wormack", "geo": null, "id": 148833645489160200, "id_str": "148833645489160193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1114086753/Pilar_Wormack_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1114086753/Pilar_Wormack_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cornell Said Chosen for NYC Engineering Campus - Bloomberg: BloombergCornell Said Chosen for NYC Engineering Cam... http://t.co/SgL8uIFJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:40 +0000", "from_user": "iTweetMyMind0_o", "from_user_id": 221994685, "from_user_id_str": "221994685", "from_user_name": "Lil Shawty Red {^_^}", "geo": null, "id": 148833644524478460, "id_str": "148833644524478464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699466029/267487_199933556724993_100001250512199_614705_4352431_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699466029/267487_199933556724993_100001250512199_614705_4352431_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Law_and_Royalty lol. I'm not in NYC. I'm in rochester", "to_user": "Law_and_Royalty", "to_user_id": 295417070, "to_user_id_str": "295417070", "to_user_name": "Prince Lawson", "in_reply_to_status_id": 148798419668971520, "in_reply_to_status_id_str": "148798419668971521"}, +{"created_at": "Mon, 19 Dec 2011 18:34:37 +0000", "from_user": "nilubracco", "from_user_id": 392069814, "from_user_id_str": "392069814", "from_user_name": "Nilufer Bracco", "geo": null, "id": 148833632268730370, "id_str": "148833632268730368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1591137997/20110830_Nilufer-3972_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591137997/20110830_Nilufer-3972_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Magnificent one-of-a-kind vintage jewelry at Green Flea Market NYC! http://t.co/nlNtCtEZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:34 +0000", "from_user": "RyanGalway", "from_user_id": 35378637, "from_user_id_str": "35378637", "from_user_name": "Ryan Galway", "geo": null, "id": 148833616804331520, "id_str": "148833616804331520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1129616823/Headshot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1129616823/Headshot_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@DanielEOfficial LOL.. NYC Would be happy 2 have you! Some clubs can be tricky with booking first time acts. We'll def.. have 2 plan it out", "to_user": "DanielEOfficial", "to_user_id": 21327688, "to_user_id_str": "21327688", "to_user_name": "Daniel Evans", "in_reply_to_status_id": 148831772203946000, "in_reply_to_status_id_str": "148831772203945984"}, +{"created_at": "Mon, 19 Dec 2011 18:34:33 +0000", "from_user": "jtapia89", "from_user_id": 283843758, "from_user_id_str": "283843758", "from_user_name": "Tapia", "geo": null, "id": 148833616233906180, "id_str": "148833616233906176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1315531465/n746968474_570506_1432_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1315531465/n746968474_570506_1432_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@Claudiagimmara let's hang out before I leave to NYC.", "to_user": "Claudiagimmara", "to_user_id": 199042955, "to_user_id_str": "199042955", "to_user_name": "Claudia Gimmara.", "in_reply_to_status_id": 148796822616424450, "in_reply_to_status_id_str": "148796822616424448"}, +{"created_at": "Mon, 19 Dec 2011 18:34:33 +0000", "from_user": "NEELkCHOPRA", "from_user_id": 232523590, "from_user_id_str": "232523590", "from_user_name": "NEEL CHOPRA", "geo": null, "id": 148833614380015600, "id_str": "148833614380015616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1562625047/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1562625047/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@DeeMoney8 @lchopra big bro got me a lot! LOADS OF ClOTHES from NYC, was actually surprised lol", "to_user": "DeeMoney8", "to_user_id": 126641217, "to_user_id_str": "126641217", "to_user_name": "Deedro", "in_reply_to_status_id": 148832241374609400, "in_reply_to_status_id_str": "148832241374609408"}, +{"created_at": "Mon, 19 Dec 2011 18:34:32 +0000", "from_user": "RickyLWilson", "from_user_id": 96071454, "from_user_id_str": "96071454", "from_user_name": "Ricky Wison", "geo": null, "id": 148833611523686400, "id_str": "148833611523686401", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/569354779/Untitled_0001_010_0001_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/569354779/Untitled_0001_010_0001_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Woman Set Afire Over Debt, Police Say - Man charged with setting NYC woman on fire tells police he was mad over $2K. http://t.co/4RU6yRUP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:32 +0000", "from_user": "TheRealJyeshA", "from_user_id": 235604312, "from_user_id_str": "235604312", "from_user_name": "Jyesh Asani", "geo": null, "id": 148833608650600450, "id_str": "148833608650600449", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1620716498/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620716498/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@AshAsani @foxybarbie_ox in fact, going on boxing day, will be in NYC for NYE", "to_user": "AshAsani", "to_user_id": 209513181, "to_user_id_str": "209513181", "to_user_name": "Ash", "in_reply_to_status_id": 148825791172591600, "in_reply_to_status_id_str": "148825791172591616"}, +{"created_at": "Mon, 19 Dec 2011 18:34:31 +0000", "from_user": "SEND2PRINT", "from_user_id": 132662420, "from_user_id_str": "132662420", "from_user_name": "SEND2PRINT", "geo": null, "id": 148833607962730500, "id_str": "148833607962730497", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1606967210/headerWEB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606967210/headerWEB_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @DJFATFINGAZNYC: @SEND2PRINT \"F-TRAIN TO NYC\" - @DJFATFINGAZNYC ((Manhattan Records Japan)) is officially on Sale NOW!! => http://t.co/49D2ibH4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:31 +0000", "from_user": "SNICKERBOX", "from_user_id": 74350612, "from_user_id_str": "74350612", "from_user_name": "U should kno it! ", "geo": null, "id": 148833607476191230, "id_str": "148833607476191232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696742086/Ra_of_Ru1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696742086/Ra_of_Ru1_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Ru1 Bailbonds NJ/NYC Toll Free (855)700-2245 (732)721-7270 http://t.co/lfyaA7pv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:31 +0000", "from_user": "nancygrivera", "from_user_id": 277629027, "from_user_id_str": "277629027", "from_user_name": "Nancy Rivera", "geo": null, "id": 148833607253901300, "id_str": "148833607253901313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1628045559/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628045559/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @todd_tjr: NYC for the day", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:31 +0000", "from_user": "dietpillguru", "from_user_id": 106512331, "from_user_id_str": "106512331", "from_user_name": "UltimateFatBurner", "geo": null, "id": 148833606071103500, "id_str": "148833606071103490", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/644036785/ultimatefatburner_com_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/644036785/ultimatefatburner_com_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Comments: Comment on Childhood Obesity Rates in NYC Decline Slightly by Daniel Margolies http://t.co/pwi7FPAr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:31 +0000", "from_user": "ultimatefat", "from_user_id": 95261183, "from_user_id_str": "95261183", "from_user_name": "UltimateFatBurner", "geo": null, "id": 148833605244829700, "id_str": "148833605244829696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/567076622/ultimatefatburner_com_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/567076622/ultimatefatburner_com_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Comments: Comment on Childhood Obesity Rates in NYC Decline Slightly by Daniel Margolies http://t.co/tjN3OqIO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:29 +0000", "from_user": "housing4NYC", "from_user_id": 432694745, "from_user_id_str": "432694745", "from_user_name": "NYC housing", "geo": null, "id": 148833598546513920, "id_str": "148833598546513920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1683483659/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683483659/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#housing4u #housing Winter Promo - Upper West Side Lovely Furnished Studio (Upper West Side) $2599 http://t.co/jLmsnkta #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:29 +0000", "from_user": "housing4NYC", "from_user_id": 432694745, "from_user_id_str": "432694745", "from_user_name": "NYC housing", "geo": null, "id": 148833595480477700, "id_str": "148833595480477696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1683483659/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683483659/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#housing4u #housing BEAUTIFUL APARTMENT 35TH STREET (Astoria) $1400 1bd http://t.co/lO6W471p #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:28 +0000", "from_user": "housing4NYC", "from_user_id": 432694745, "from_user_id_str": "432694745", "from_user_name": "NYC housing", "geo": null, "id": 148833592590614530, "id_str": "148833592590614528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1683483659/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683483659/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#housing4u #housing First Class Professional Office In The Plaza District! This is an Oppo (Plaza ... http://t.co/P0t93ee2 #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:27 +0000", "from_user": "LSFrembes", "from_user_id": 295750052, "from_user_id_str": "295750052", "from_user_name": "Linda Seid Frembes", "geo": null, "id": 148833588538900480, "id_str": "148833588538900480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1570978581/Linda_InfoComm2010-IMG_1276-sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1570978581/Linda_InfoComm2010-IMG_1276-sm_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Which was my favorite #NYC holiday window? Saks? Macy's? Nay. This one: http://t.co/2nQTfWuE #photography", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:24 +0000", "from_user": "LeahandDanielle", "from_user_id": 440059284, "from_user_id_str": "440059284", "from_user_name": "LeahandDanielle", "geo": null, "id": 148833575066796030, "id_str": "148833575066796033", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700235684/Dressup247_Anime_Avatar_normal.jpg", "profile_image_url_https": null, "source": "<a href="http://twitter.com/">web</a>", "text": "I decided to write a bucket list. 1. Move to NYC. 2. Visit China. 3. Adopt a girl from China. 4. Get a job in the fashion industry.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:23 +0000", "from_user": "LongIslandJob", "from_user_id": 345588216, "from_user_id_str": "345588216", "from_user_name": "Long Island Job", "geo": null, "id": 148833572281782270, "id_str": "148833572281782272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1469792237/1DollarB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1469792237/1DollarB_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Long Island NYC Job Application Specialist - Open Systems at Fiserv Card Services (Morris Plains, NJ) http://t.co/3fnd9LOE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:22 +0000", "from_user": "Reginaisthebest", "from_user_id": 45722039, "from_user_id_str": "45722039", "from_user_name": "Regina", "geo": null, "id": 148833568410439680, "id_str": "148833568410439681", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1684403572/Photo_on_12-9-11_at_4.42_PM__5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684403572/Photo_on_12-9-11_at_4.42_PM__5_normal.jpg", "source": "<a href="http://www.osfoora.com" rel="nofollow">Osfoora for iPhone</a>", "text": "\\u00BFcu\\u00E1ndo? RT @eljefe_zb: Prolly be back in the NYC nxt week!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:22 +0000", "from_user": "xo_cvb", "from_user_id": 306167266, "from_user_id_str": "306167266", "from_user_name": "cvb ", "geo": null, "id": 148833566250377200, "id_str": "148833566250377216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1654930814/IMG-20111123-01576_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654930814/IMG-20111123-01576_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "I don't mind payin 75 dolla for an entry fee at bar in nyc for new years as long as they have #frenchfries @Allyyysonnn18", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:21 +0000", "from_user": "LongIslandJob", "from_user_id": 345588216, "from_user_id_str": "345588216", "from_user_name": "Long Island Job", "geo": null, "id": 148833564589441020, "id_str": "148833564589441024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1469792237/1DollarB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1469792237/1DollarB_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Long Island NYC Job Loan Officer at Vantage Recruiting (Philadelphia, PA) http://t.co/3fnd9LOE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:21 +0000", "from_user": "WAONE_01", "from_user_id": 429315962, "from_user_id_str": "429315962", "from_user_name": "\\u03C9\\u03B1\\u03C9\\u03B1\\u03B7 \\u0455\\u03C3\\u0455\\u03C3\\u043D\\u03B1\\u03B7", "geo": null, "id": 148833562525835260, "id_str": "148833562525835264", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701933424/WAONE_01_1490013755044364964_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701933424/WAONE_01_1490013755044364964_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Man Gets Prison for Bilking NYC Mayor http://t.co/rZloYNas", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:20 +0000", "from_user": "Jackson_Harris", "from_user_id": 81439958, "from_user_id_str": "81439958", "from_user_name": "Jackson Harris", "geo": null, "id": 148833561288519680, "id_str": "148833561288519680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1509834384/1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509834384/1_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I'm kinda sad it hasn't snowed here in NYC. Was hoping for a fun white Christmas full of sledding and snowball fights!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:18 +0000", "from_user": "dreamsofpeace9", "from_user_id": 277263665, "from_user_id_str": "277263665", "from_user_name": "Kayla :]", "geo": null, "id": 148833552937648130, "id_str": "148833552937648129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696997235/Remus_James_Sirius_and_Harry_DONT_MIND_ME_IM_JUST_BAWLING_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696997235/Remus_James_Sirius_and_Harry_DONT_MIND_ME_IM_JUST_BAWLING_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @billboard: #Glee star @DarrenCriss played a few shows in #NYC over the weekend while in town for \"How to Succeed...\" on #Broadway http://t.co/O74cYdkY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:17 +0000", "from_user": "PatchouliW", "from_user_id": 5854302, "from_user_id_str": "5854302", "from_user_name": "Patchouli Woollahra", "geo": null, "id": 148833548726579200, "id_str": "148833548726579200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1311001023/PatchiWildcat_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1311001023/PatchiWildcat_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ButtercupD This is the NYC morning anthem: http://t.co/HnpYBZW4", "to_user": "ButtercupD", "to_user_id": 4958911, "to_user_id_str": "4958911", "to_user_name": "Fern ", "in_reply_to_status_id": 148832788555104260, "in_reply_to_status_id_str": "148832788555104257"}, +{"created_at": "Mon, 19 Dec 2011 18:34:17 +0000", "from_user": "richphoto", "from_user_id": 15326241, "from_user_id_str": "15326241", "from_user_name": "Richard Brown Photo", "geo": null, "id": 148833546834939900, "id_str": "148833546834939904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1498594489/RBORANGESQ_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1498594489/RBORANGESQ_normal.jpg", "source": "<a href="http://paper.li" rel="nofollow">Paper.li</a>", "text": "Mercedes Benz Fashion Week NYC is out! http://t.co/QseI94Ts \\u25B8 Top stories today via @fashionistasme", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:17 +0000", "from_user": "JanetLFalk", "from_user_id": 28583359, "from_user_id_str": "28583359", "from_user_name": "Janet L. Falk", "geo": null, "id": 148833545153028100, "id_str": "148833545153028096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/137518079/Janet_Falk_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/137518079/Janet_Falk_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@NBCNewYork SOURCE #Roosevelt Island has a history of scientific innovation & research http://t.co/283eSHoj http://t.co/xtYj1GD7 #nyc", "to_user": "NBCNewYork", "to_user_id": 15864446, "to_user_id_str": "15864446", "to_user_name": "NBC New York"}, +{"created_at": "Mon, 19 Dec 2011 18:34:15 +0000", "from_user": "midnitespot", "from_user_id": 26523848, "from_user_id_str": "26523848", "from_user_name": "MidniteSpot.com", "geo": null, "id": 148833538928680960, "id_str": "148833538928680960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/110584120/squarelogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/110584120/squarelogo_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NYC: Sun Dec 25 WinterFresh: Black & White Affair @AMNESIA @DJSELF @DJNORIE @OBIETHEPROMOTER BDAY BASH @SUAVEOFNITELIFE http://t.co/rg4Dzjql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:13 +0000", "from_user": "blankichu", "from_user_id": 59612136, "from_user_id_str": "59612136", "from_user_name": "Blank Grr", "geo": null, "id": 148833529495695360, "id_str": "148833529495695361", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1389471337/26981_1394191299855_1384350005_31124809_1183969_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1389471337/26981_1394191299855_1384350005_31124809_1183969_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "not pleased with this weather - back in nyc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:12 +0000", "from_user": "reneesumer", "from_user_id": 311835021, "from_user_id_str": "311835021", "from_user_name": "PAINT IT ALL RED \\uE022", "geo": null, "id": 148833524567384060, "id_str": "148833524567384064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1513822852/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1513822852/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@Toby_Kray: @reneesumer I'm from the US\\u201D><so am I lol #NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:11 +0000", "from_user": "u_cantaffordme", "from_user_id": 264579209, "from_user_id_str": "264579209", "from_user_name": "brooke marrow", "geo": null, "id": 148833521253892100, "id_str": "148833521253892096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1656636730/UkTG8mzw_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656636730/UkTG8mzw_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Should I go to A.C or NYC for new years", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:09 +0000", "from_user": "aprodmusic", "from_user_id": 95357518, "from_user_id_str": "95357518", "from_user_name": "A-Prod", "geo": null, "id": 148833515633516540, "id_str": "148833515633516545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696639796/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696639796/image_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @SkypassTravel: EMIRATES 2-Day Sale NYC,DFW,HOU,LAX,SFO,SEA to INDIA ends Dec20th. Depart Jan3-Mar31. Stay up to 4mos. FARES FROM $1,079 include all Taxes!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:06 +0000", "from_user": "FRESH_JuliaD", "from_user_id": 432080472, "from_user_id_str": "432080472", "from_user_name": "Julia Deguzman", "geo": null, "id": 148833502870257660, "id_str": "148833502870257665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690523997/fresh1-300x171_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690523997/fresh1-300x171_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TomCruise: Tom answers your questions at the NYC M:I-@GhostProtocol Premiere 2night! Submit your questions w/ #MissionNYC http://t.co/8FwxLVGC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:06 +0000", "from_user": "rodaycastle", "from_user_id": 130608787, "from_user_id_str": "130608787", "from_user_name": "Diana", "geo": null, "id": 148833502681497600, "id_str": "148833502681497601", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657500321/Captura3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657500321/Captura3_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @billboard: #Glee star @DarrenCriss played a few shows in #NYC over the weekend while in town for \"How to Succeed...\" on #Broadway http://t.co/O74cYdkY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:02 +0000", "from_user": "DailyFrontRow", "from_user_id": 22024974, "from_user_id_str": "22024974", "from_user_name": "The Daily Front Row", "geo": null, "id": 148833485006700540, "id_str": "148833485006700546", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691488441/Chic_Report_DEC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691488441/Chic_Report_DEC_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "#FashionNews @orla_kiely opens #NYC flagship store http://t.co/iaM77aGS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:01 +0000", "from_user": "kirkbrideomgr5", "from_user_id": 388128247, "from_user_id_str": "388128247", "from_user_name": "Kirkbride Woolworth", "geo": null, "id": 148833480917254140, "id_str": "148833480917254144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1581267135/imagesCANSWJ6Y_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1581267135/imagesCANSWJ6Y_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Movement for Justice in El Barrio hosting the NYC Encuentro 4 humanity", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:01 +0000", "from_user": "PERRM75DOLLARS", "from_user_id": 54570609, "from_user_id_str": "54570609", "from_user_name": "BRO. MELVIN MUHAMMAD", "geo": null, "id": 148833478153224200, "id_str": "148833478153224193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "NYC location and contact ph. Number / 917-714-2576 , or just visit website, http://t.co/PxD3Zldw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:00 +0000", "from_user": "MSilverPR", "from_user_id": 14514739, "from_user_id_str": "14514739", "from_user_name": "M. Silver Associates", "geo": null, "id": 148833477503098880, "id_str": "148833477503098880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702570547/TEMP_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702570547/TEMP_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Check this video out: #fashion show @ Whiskers in Wonderland #pet #adoption event in #NYC http://t.co/OQOfKsX4 @@MayorsAlliance @PETA #dogs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:33:59 +0000", "from_user": "TheRealMavNasty", "from_user_id": 263813642, "from_user_id_str": "263813642", "from_user_name": "Maverick Nanosh", "geo": null, "id": 148833469651357700, "id_str": "148833469651357696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1330608948/63472271610224625_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1330608948/63472271610224625_normal.jpg", "source": "<a href="http://mobileways.de/gravity" rel="nofollow">Gravity!</a>", "text": "This is a fucked up world @MikeValenti971: WOW. read this. People are monsters. http://t.co/N5uUvqC3 How could you do this to another human?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:57 +0000", "from_user": "TristenS", "from_user_id": 20019333, "from_user_id_str": "20019333", "from_user_name": "Tristen Sechi", "geo": null, "id": 148833463653511170, "id_str": "148833463653511169", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1435633542/Screen_shot_2011-07-10_at_3.24.42_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1435633542/Screen_shot_2011-07-10_at_3.24.42_PM_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Parkin it to get some writing done. #abouttime #nyc http://t.co/vEQxtgAZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:55 +0000", "from_user": "DJkTunes", "from_user_id": 101062835, "from_user_id_str": "101062835", "from_user_name": "Kareem Clarke", "geo": null, "id": 148833454350544900, "id_str": "148833454350544897", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677596968/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677596968/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Planet_FK: Concords = \"Death over Designer\" ..... Xmas NYC stomp out...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:53 +0000", "from_user": "concertsched", "from_user_id": 254164592, "from_user_id_str": "254164592", "from_user_name": "Concert Schedules", "geo": null, "id": 148833445945147400, "id_str": "148833445945147393", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Darren Criss Plays Secret Show in NYC http://t.co/ZpGOv5Do", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:52 +0000", "from_user": "JanetLFalk", "from_user_id": 28583359, "from_user_id_str": "28583359", "from_user_name": "Janet L. Falk", "geo": null, "id": 148833440953942000, "id_str": "148833440953942016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/137518079/Janet_Falk_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/137518079/Janet_Falk_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@NewYorkNews7 SOURCE #Roosevelt Island has a history of scientific innovation & research http://t.co/283eSHoj http://t.co/xtYj1GD7 #nyc", "to_user": "NewYorkNews7", "to_user_id": 60007011, "to_user_id_str": "60007011", "to_user_name": "New York News"}, +{"created_at": "Mon, 19 Dec 2011 18:33:51 +0000", "from_user": "johnschambers", "from_user_id": 399547848, "from_user_id_str": "399547848", "from_user_name": "Gun Licensing Lawyer", "geo": null, "id": 148833438026301440, "id_str": "148833438026301440", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1609476010/DSC00930_-_Copy2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609476010/DSC00930_-_Copy2_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "MAYOR BLOOMBERG DELIVERS EULOGY FOR PETER FIGOSKI AND POSTHUMOUSLY ... http://t.co/5HWsADIK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:50 +0000", "from_user": "MrSkyGuy", "from_user_id": 30513556, "from_user_id_str": "30513556", "from_user_name": "Mark Russell", "geo": null, "id": 148833435216121860, "id_str": "148833435216121856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1640885292/mrskyguy2_blue_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640885292/mrskyguy2_blue_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Wow, that's innovative.. sigh. Business class #airline Odyssey plans London-NYC route w/ #CSeries http://t.co/iDmGzbeD #Aviation", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:48 +0000", "from_user": "jstrelitz", "from_user_id": 8228652, "from_user_id_str": "8228652", "from_user_name": "Jessica Strelitz", "geo": null, "id": 148833424948469760, "id_str": "148833424948469760", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1238807902/homegirl_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1238807902/homegirl_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Pretty NYC-heavy list for this Forbes 30-under-30 for #food.... http://t.co/hV0cVzzZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:48 +0000", "from_user": "annaholllla", "from_user_id": 28387471, "from_user_id_str": "28387471", "from_user_name": "anna schenkel", "geo": null, "id": 148833420586385400, "id_str": "148833420586385409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691817689/Photo_on_9-14-11_at_10.24_PM__3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691817689/Photo_on_9-14-11_at_10.24_PM__3_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Camera on iOS</a>", "text": "train to NYC with @jrawlx16 :) http://t.co/ggq95e8d", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:46 +0000", "from_user": "LadyEleanorA", "from_user_id": 183176215, "from_user_id_str": "183176215", "from_user_name": "LadyEleanorA", "geo": null, "id": 148833419038695420, "id_str": "148833419038695424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1658519954/Profile_compressed_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658519954/Profile_compressed_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @NewYorkHabitat: Great list Leslie! RT @leslietravel: Top 5 Christmas attractions in New York City-- Many are FREE! http://t.co/Ao043EeO #nyc #lp #christmas", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:46 +0000", "from_user": "KumoStevie", "from_user_id": 72405079, "from_user_id_str": "72405079", "from_user_name": "Stevie Ehsoh Ortiz", "geo": null, "id": 148833415226073100, "id_str": "148833415226073088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1652998432/tumblr_lv32fh4JTY1qg5qw3o3_1280_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652998432/tumblr_lv32fh4JTY1qg5qw3o3_1280_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Who gonna be in NYC for new years?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:44 +0000", "from_user": "haederbipsw8", "from_user_id": 395807000, "from_user_id_str": "395807000", "from_user_name": "Haeder Pinkett", "geo": null, "id": 148833410465529860, "id_str": "148833410465529856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Nice freakin Day NYC....BIG APPLE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:44 +0000", "from_user": "UnaVainaLoca1", "from_user_id": 284901790, "from_user_id_str": "284901790", "from_user_name": "Miguel Duran", "geo": null, "id": 148833409639260160, "id_str": "148833409639260160", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700987237/Fuego_Feat._Amara__La_Negra__-_Te_Cuidate_COVER_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700987237/Fuego_Feat._Amara__La_Negra__-_Te_Cuidate_COVER_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Descarga http://t.co/hAuvHxIX #RD #DMV #Miami #NYC #Colombia #VNZL #Chile #Ecuador #Espa\\u00F1a #Nicaragua #ElSalvador #Guatemala #Peru #LATINOS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:44 +0000", "from_user": "apeecher", "from_user_id": 47449644, "from_user_id_str": "47449644", "from_user_name": "Ali Peecher", "geo": null, "id": 148833407093317630, "id_str": "148833407093317632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1638143897/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638143897/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Two more stops! Then Christmas shopping NYC is done!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:42 +0000", "from_user": "teresa_brunetti", "from_user_id": 341790306, "from_user_id_str": "341790306", "from_user_name": "Teresa Brunetti", "geo": null, "id": 148833402349559800, "id_str": "148833402349559809", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1644152927/50nb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644152927/50nb_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "NYC is a jungle", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:40 +0000", "from_user": "kayemlin", "from_user_id": 34852125, "from_user_id_str": "34852125", "from_user_name": "Kaye Lin", "geo": null, "id": 148833393143062530, "id_str": "148833393143062528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1438637518/twitkaye1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1438637518/twitkaye1_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @democracynow: Occupy Wall Street NYC marks 3-month anniversary with re-occupation attempt, dozens arrested. http://t.co/jK0sLcnw #ows", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:40 +0000", "from_user": "worldisalive", "from_user_id": 406916112, "from_user_id_str": "406916112", "from_user_name": "World is Alive", "geo": null, "id": 148833392673308670, "id_str": "148833392673308672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://worldisalive.com" rel="nofollow">World is Alive</a>", "text": "Shien Lee Brings Retro Glamour to Tribeca Grand Hotel for Dances of Vice: The Grand Illusion, NYC's Most Spectacular New Year's Eve Gala ht", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:40 +0000", "from_user": "davidshorago", "from_user_id": 148882488, "from_user_id_str": "148882488", "from_user_name": "David Shorago", "geo": null, "id": 148833391675060220, "id_str": "148833391675060224", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1251028174/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1251028174/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@spartanboy17 Desgraciadamente F1 en USA esta destinada al fracaso. La de NYC tiene un poco de mas chance solo por ser en NYC", "to_user": "spartanboy17", "to_user_id": 40964597, "to_user_id_str": "40964597", "to_user_name": "Huge Bronco Fan", "in_reply_to_status_id": 148828255372312580, "in_reply_to_status_id_str": "148828255372312578"}, +{"created_at": "Mon, 19 Dec 2011 18:33:38 +0000", "from_user": "lukaloncar", "from_user_id": 44797470, "from_user_id_str": "44797470", "from_user_name": "luka", "geo": null, "id": 148833382686666750, "id_str": "148833382686666752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1621708329/lukaloncar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621708329/lukaloncar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @therealmikedean: #WTT U.S. TOUR IS A WRAP. PJ TO NYC TO START NEXT PHASE.. NEVER STOPS DOES IT?? WHAT'S BETTER THAN THAT?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:37 +0000", "from_user": "lukeholden93", "from_user_id": 288767653, "from_user_id_str": "288767653", "from_user_name": "Luke Holden", "geo": null, "id": 148833379410907140, "id_str": "148833379410907136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1473404621/IMG-20110801-00052_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1473404621/IMG-20110801-00052_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Nyc with @marisashanley, @micaelashanley and the shanley fam!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:27 +0000", "from_user": "rpkampuchea", "from_user_id": 138294486, "from_user_id_str": "138294486", "from_user_name": "Adan Gonzalez", "geo": null, "id": 148833336792596480, "id_str": "148833336792596480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/976365342/2000th_plane_shot_down_photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/976365342/2000th_plane_shot_down_photo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @democracynow: Occupy Wall Street NYC marks 3-month anniversary with re-occupation attempt, dozens arrested. http://t.co/jK0sLcnw #ows", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:26 +0000", "from_user": "brett22TGOD", "from_user_id": 139122956, "from_user_id_str": "139122956", "from_user_name": "Brett", "geo": null, "id": 148833331239329800, "id_str": "148833331239329792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1281969114/37825_414957393818_585553818_4453693_1980361_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1281969114/37825_414957393818_585553818_4453693_1980361_n_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @Mr_Camron: RT @MacMiller: @Mr_Camron thank u my g! Im comin up to NYC tonight. Ima hit u. Let's fuck people up./ copy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:24 +0000", "from_user": "Matangiisland", "from_user_id": 46524754, "from_user_id_str": "46524754", "from_user_name": "Matangi Island ", "geo": null, "id": 148833323555356670, "id_str": "148833323555356673", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/259465670/matangi001_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/259465670/matangi001_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Ni sa Moce...Farewell Lana & Jovan heading back to NYC...The volleyball court will miss you;-)\\n\\nNi sa... http://t.co/gUs55FRU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:24 +0000", "from_user": "parkertatro", "from_user_id": 49846765, "from_user_id_str": "49846765", "from_user_name": "Parker Allen Tatro", "geo": null, "id": 148833322867499000, "id_str": "148833322867499008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1492362805/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1492362805/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "this lady has got to be a real housewife of NYC. if i ever watched that show i'd know.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:18 +0000", "from_user": "MU_Baller45", "from_user_id": 51171220, "from_user_id_str": "51171220", "from_user_name": "Monty Brown", "geo": null, "id": 148833298695716860, "id_str": "148833298695716864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1621001136/297426_10150440248676015_613666014_10559470_813676196_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621001136/297426_10150440248676015_613666014_10559470_813676196_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Back from NYC. On our way to Athens to play UGA tomorrow night.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:12 +0000", "from_user": "DrinkSkinny", "from_user_id": 148856763, "from_user_id_str": "148856763", "from_user_name": "Christy Cegelski", "geo": null, "id": 148833274381348860, "id_str": "148833274381348864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1423878444/FB_pic2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1423878444/FB_pic2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Leaving NYC. :( if my kids were here, I think I'd stay.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:08 +0000", "from_user": "Jadore_Sophia", "from_user_id": 237594374, "from_user_id_str": "237594374", "from_user_name": "that one girl", "geo": null, "id": 148833259093110800, "id_str": "148833259093110784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697927658/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697927658/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @mirandaproulx: I wanna go to college in NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:08 +0000", "from_user": "MR_FAMOSO", "from_user_id": 28040368, "from_user_id_str": "28040368", "from_user_name": "Joe Hernandez\\u2122", "geo": null, "id": 148833258593988600, "id_str": "148833258593988610", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1694327217/331523032_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694327217/331523032_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Who want to come out to SOB's tonight & rock out with @KendrickLamar. Then after Veranda NYC to drink & have a good time? Hit me up", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:07 +0000", "from_user": "DannyAdimant", "from_user_id": 434442059, "from_user_id_str": "434442059", "from_user_name": "Danny", "geo": null, "id": 148833254399684600, "id_str": "148833254399684609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687744300/376498_10150397616805933_721615932_9072054_732753751_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687744300/376498_10150397616805933_721615932_9072054_732753751_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@r2t2b @hayleyturner123 it is! What have they been showing on Sky? We are still in NYC... #drinkyanksunderthetable", "to_user": "r2t2b", "to_user_id": 315096425, "to_user_id_str": "315096425", "to_user_name": "Rossi Thompson", "in_reply_to_status_id": 148827771450294270, "in_reply_to_status_id_str": "148827771450294272"}, +{"created_at": "Mon, 19 Dec 2011 18:33:07 +0000", "from_user": "wisernan", "from_user_id": 40874161, "from_user_id_str": "40874161", "from_user_name": "Nanette Wiser", "geo": null, "id": 148833253573406720, "id_str": "148833253573406720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1283864670/business_card_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1283864670/business_card_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "2012 Plate-Spotting: French dips at Minetta Tavern (NYC), angel food cupcakes Four Seasons Vegas, Eataly's focaccia (NYC).", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:07 +0000", "from_user": "StockJockey", "from_user_id": 10165242, "from_user_id_str": "10165242", "from_user_name": "StockJockey", "geo": null, "id": 148833251832762370, "id_str": "148833251832762370", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/465753931/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/465753931/twitterProfilePhoto_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@TadAllagash best thing about NYC is the talented cobblers those guys can rehab shoes like nobodys business tru artisans a dying art I think", "to_user": "TadAllagash", "to_user_id": 22148152, "to_user_id_str": "22148152", "to_user_name": "M. Phillips", "in_reply_to_status_id": 148832629867806720, "in_reply_to_status_id_str": "148832629867806721"}, +{"created_at": "Mon, 19 Dec 2011 18:33:05 +0000", "from_user": "JennyWanKenobi", "from_user_id": 70006910, "from_user_id_str": "70006910", "from_user_name": "Jenn McQuillan", "geo": null, "id": 148833244211716100, "id_str": "148833244211716096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1469777068/atstrombo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1469777068/atstrombo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@CarlieFashion Oh man, that's so crazy. You might as well just go to NYC yourself and get it!", "to_user": "CarlieFashion", "to_user_id": 126482407, "to_user_id_str": "126482407", "to_user_name": "Carlie Wong", "in_reply_to_status_id": 148676447580598270, "in_reply_to_status_id_str": "148676447580598272"}, +{"created_at": "Mon, 19 Dec 2011 18:33:04 +0000", "from_user": "VimeoJobs", "from_user_id": 426643366, "from_user_id_str": "426643366", "from_user_name": "Jobs at Vimeo", "geo": null, "id": 148833239753170940, "id_str": "148833239753170944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695305150/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695305150/profile_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@jguzmarketing but #NYC is where IT'S AT!! You haven't really lived 'till you've lived in #NewYorkCity .", "to_user": "jguzmarketing", "to_user_id": 322459511, "to_user_id_str": "322459511", "to_user_name": "jguzmarketing", "in_reply_to_status_id": 148825956709187600, "in_reply_to_status_id_str": "148825956709187585"}, +{"created_at": "Mon, 19 Dec 2011 18:33:00 +0000", "from_user": "B3dRo0m_BullY", "from_user_id": 378031622, "from_user_id_str": "378031622", "from_user_name": "TyShawn", "geo": null, "id": 148833225362505730, "id_str": "148833225362505728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1688028039/avatar_normal.JPEG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688028039/avatar_normal.JPEG", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "Rotten Apple #NYC welcome mi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:57 +0000", "from_user": "CruiseStew", "from_user_id": 331694022, "from_user_id_str": "331694022", "from_user_name": " v\\u03B5\\u044Fifi\\u03B5d \\u044F\\u03C3\\u042A\\u0E23\\u0442\\u03B5\\u0E2B\\u03B5\\u044F ", "geo": null, "id": 148833209642270720, "id_str": "148833209642270720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692763379/tumblr_lw1rcqeswG1qc18bao1_500_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692763379/tumblr_lw1rcqeswG1qc18bao1_500_1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Woohooo!! Turn on 100.3 in NYC!! Marry The Night is on!! I love my hometown!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:51 +0000", "from_user": "LaughNYC", "from_user_id": 28601983, "from_user_id_str": "28601983", "from_user_name": "Paul Corrigan", "geo": null, "id": 148833186045108220, "id_str": "148833186045108224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1102285607/Paul-Corrigan_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1102285607/Paul-Corrigan_normal.jpg", "source": "<a href="http://www.writelonger.com" rel="nofollow">Write Longer</a>", "text": "RT @nanawidyananot: RT @LaughNYC: PLEASE RT --> http://t.co/ISD5HS71 Kindly vote for me in this contest. #funny #NYC <-- SPREAD THE WORD!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:49 +0000", "from_user": "InvadersAsylum", "from_user_id": 259860670, "from_user_id_str": "259860670", "from_user_name": "Ava(Invaders Asylum)", "geo": null, "id": 148833179434885120, "id_str": "148833179434885121", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1267170170/Invaders_Asylum_Temp_Pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1267170170/Invaders_Asylum_Temp_Pic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TomCruise: Tom answers your questions at the NYC M:I-@GhostProtocol Premiere 2night! Submit your questions w/ #MissionNYC http://t.co/8FwxLVGC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:49 +0000", "from_user": "InHandGuides", "from_user_id": 237269069, "from_user_id_str": "237269069", "from_user_name": "InHandGuides", "geo": null, "id": 148833176385622000, "id_str": "148833176385622016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1213679213/IHG_Twitter_Picture_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1213679213/IHG_Twitter_Picture_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @RyanBudhu1: Times Square at night: http://t.co/GzNlO2q2 #NewYorkology #NYC #Photography @EverythingNYC @NewYorkHabitat", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:46 +0000", "from_user": "x_kike_x", "from_user_id": 36174363, "from_user_id_str": "36174363", "from_user_name": "Lu\\u00EDs Enrique \\u03DF", "geo": null, "id": 148833167372058620, "id_str": "148833167372058624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1670165103/Me__n.n_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670165103/Me__n.n_normal.png", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @jessiejofficial: On our way to the airport!!! NYC here we commeeee!!! Wwwwooooooo!!!!! @VH1 Divas!!! @RepublicRecords @islandrecordsuk let's do this!!! :D x", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:41 +0000", "from_user": "iheartmahonex", "from_user_id": 328597936, "from_user_id_str": "328597936", "from_user_name": "\\u00A2\\u043D\\u044F\\u03B9\\u0455\\u0442\\u03B9\\u0438\\u03B1", "geo": null, "id": 148833143296761860, "id_str": "148833143296761856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685581066/Photo_on_2011-11-13_at_18.02__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685581066/Photo_on_2011-11-13_at_18.02__2_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "On my way to pick up @T_Bieber_Mahone and then off to NYC to see @AustinMahone's concert:*\\u2665", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:29 +0000", "from_user": "JanetLFalk", "from_user_id": 28583359, "from_user_id_str": "28583359", "from_user_name": "Janet L. Falk", "geo": null, "id": 148833096169553920, "id_str": "148833096169553920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/137518079/Janet_Falk_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/137518079/Janet_Falk_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@A_Grossman SOURCE #Roosevelt Island has a history of scientific innovation & research http://t.co/283eSHoj http://t.co/xtYj1GD7 #nyc", "to_user": "A_Grossman", "to_user_id": 19787735, "to_user_id_str": "19787735", "to_user_name": "Andrew Grossman", "in_reply_to_status_id": 148608283178045440, "in_reply_to_status_id_str": "148608283178045440"}, +{"created_at": "Mon, 19 Dec 2011 18:32:29 +0000", "from_user": "kdramafollower", "from_user_id": 363601958, "from_user_id_str": "363601958", "from_user_name": "Infotainment For You", "geo": null, "id": 148833095477510140, "id_str": "148833095477510144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1517328541/boa340x230_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517328541/boa340x230_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "it is best place to visit nyc (@YouTube http://t.co/TUDZL02J)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:28 +0000", "from_user": "VinNice1", "from_user_id": 74707033, "from_user_id_str": "74707033", "from_user_name": "Vinny", "geo": null, "id": 148833091518070800, "id_str": "148833091518070785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1684653080/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684653080/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "On the road.. Headed to NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:28 +0000", "from_user": "bibusihowyk", "from_user_id": 433339376, "from_user_id_str": "433339376", "from_user_name": "Landen Betterton", "geo": null, "id": 148833089643221000, "id_str": "148833089643220992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685583851/702_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685583851/702_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @rozyqyjom: cheap nyc car insurance http://t.co/1UWzRojU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:19 +0000", "from_user": "_nRibeiro", "from_user_id": 138799337, "from_user_id_str": "138799337", "from_user_name": "Nathan V. Ribeiro", "geo": null, "id": 148833053584801800, "id_str": "148833053584801792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687503527/DSC00927_2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687503527/DSC00927_2__normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @billboard: #Glee star @DarrenCriss played a few shows in #NYC over the weekend while in town for \"How to Succeed...\" on #Broadway http://t.co/O74cYdkY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:18 +0000", "from_user": "JeromeCleary", "from_user_id": 16807750, "from_user_id_str": "16807750", "from_user_name": "JeromeCleary", "geo": null, "id": 148833047188484100, "id_str": "148833047188484096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/274266400/IMG00107_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/274266400/IMG00107_normal.jpg", "source": "<a href="http://www.huffingtonpost.com" rel="nofollow">The Huffington Post</a>", "text": "Dan Frazer Dead: Capt. McNeil On 'Kojak' Dies In NYC http://t.co/go4Y3Dcx via @huffingtonpost", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:17 +0000", "from_user": "ani_tweets29", "from_user_id": 207437689, "from_user_id_str": "207437689", "from_user_name": "anirban chatterjee", "geo": null, "id": 148833042750898180, "id_str": "148833042750898176", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696044308/Sachin_Tendulkar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696044308/Sachin_Tendulkar_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@Rockz4ever den kolkata 2 nagpur...hv a nyc trip n u said of gettin smthn 4m kolkata remember dat? ;)", "to_user": "Rockz4ever", "to_user_id": 229360162, "to_user_id_str": "229360162", "to_user_name": "!!..upaZna..!!", "in_reply_to_status_id": 148832227214622720, "in_reply_to_status_id_str": "148832227214622721"}, +{"created_at": "Mon, 19 Dec 2011 18:32:12 +0000", "from_user": "PerformerWebnr", "from_user_id": 61354258, "from_user_id_str": "61354258", "from_user_name": "PerformerWebinar", "geo": null, "id": 148833023096389630, "id_str": "148833023096389633", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/338703479/WebinarsNing_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/338703479/WebinarsNing_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "72% OFF! Two Acting Classes w/Legendary Master Teacher, Robert Patterson @ The PattersonStudio in NYC That's $28 http://t.co/eDXcSIx6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:12 +0000", "from_user": "axisofaudio", "from_user_id": 225222094, "from_user_id_str": "225222094", "from_user_name": "Axis Of Audio", "geo": null, "id": 148833022064599040, "id_str": "148833022064599042", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1188223217/aoa-logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1188223217/aoa-logo_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Audio Perv: The String Cheese Incident 12/2 + 12/3 NYC United Palace Theater (Review) http://t.co/IUm4hezp #axisofaudio", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:12 +0000", "from_user": "hialissa", "from_user_id": 166562944, "from_user_id_str": "166562944", "from_user_name": "Alissa Joy Constable", "geo": null, "id": 148833021091516400, "id_str": "148833021091516416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1077947789/n666491053_1217693_2494_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1077947789/n666491053_1217693_2494_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@aboutBS \" NYC Awaits you!\" ... :)", "to_user": "aboutBS", "to_user_id": 98426955, "to_user_id_str": "98426955", "to_user_name": "Brigitte Serrato"}, +{"created_at": "Mon, 19 Dec 2011 18:32:11 +0000", "from_user": "PerformerTrack", "from_user_id": 20530831, "from_user_id_str": "20530831", "from_user_name": "PerformerTrack ", "geo": null, "id": 148833020328149000, "id_str": "148833020328148992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/410472881/PTlogo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/410472881/PTlogo_normal.png", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "72% OFF! Two Acting Classes w/Legendary Master Teacher, Robert Patterson @ The PattersonStudio in NYC That's $28 http://t.co/UWRw0Q6e", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:10 +0000", "from_user": "HoldonLog", "from_user_id": 185835573, "from_user_id_str": "185835573", "from_user_name": "Holdon Log", "geo": null, "id": 148833015169171460, "id_str": "148833015169171456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1115527784/HLlogoSmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1115527784/HLlogoSmall_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "72% OFF! Two Acting Classes w/Legendary Master Teacher, Robert Patterson @ The PattersonStudio in NYC That's $28 http://t.co/WUzPM3yq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:08 +0000", "from_user": "ActorNation", "from_user_id": 10912342, "from_user_id_str": "10912342", "from_user_name": "ActorNation", "geo": null, "id": 148833007229345800, "id_str": "148833007229345792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/39119382/ActorNationBanner_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/39119382/ActorNationBanner_normal.gif", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "72% OFF! Two Acting Classes w/Legendary Master Teacher, Robert Patterson @ The PattersonStudio in NYC That's $28 http://t.co/rJUf9nMc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:05 +0000", "from_user": "jozigeek", "from_user_id": 20557656, "from_user_id_str": "20557656", "from_user_name": "Jozi Girl", "geo": null, "id": 148832992364740600, "id_str": "148832992364740608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1671497794/jozigeek_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671497794/jozigeek_normal.gif", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @IvoVegter: Chilling. Beautifully written. RT @EthanZ The psychological impact of Stop and Frisk in NYC: http://t.co/9Sux3O0a", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:01 +0000", "from_user": "FashionRevue", "from_user_id": 62740909, "from_user_id_str": "62740909", "from_user_name": "Doriana Grey", "geo": null, "id": 148832977252659200, "id_str": "148832977252659200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/405901778/fashionrevue_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/405901778/fashionrevue_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Interview: If Mom Only Knew's Marcus Bifaro Talks About His New LES Lounge: You may recognize Marcus Bifaro; he ... http://t.co/RmpArpzm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:58 +0000", "from_user": "elloyd5", "from_user_id": 111219250, "from_user_id_str": "111219250", "from_user_name": "erin lloyd", "geo": null, "id": 148832963063324670, "id_str": "148832963063324672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687981163/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687981163/me_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "What's up NYC, haven't seen you in a while. Good to be back.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:56 +0000", "from_user": "pharaohHQ", "from_user_id": 34772593, "from_user_id_str": "34772593", "from_user_name": "HQ", "geo": null, "id": 148832954821513200, "id_str": "148832954821513217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1641748740/HQ_profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641748740/HQ_profile_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Other guys get Skinny in nyc, i come home n get chubby. N we always on THE go", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:53 +0000", "from_user": "MagicMBA", "from_user_id": 25660679, "from_user_id_str": "25660679", "from_user_name": "Magic MBA", "geo": null, "id": 148832942884524030, "id_str": "148832942884524033", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/105864620/MBA_Admissions_JPG_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/105864620/MBA_Admissions_JPG_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#GMAT & #MBA Tip: Stanford Pulls Out of Plans for NYC Campus http://t.co/C6qF5OO3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:51 +0000", "from_user": "MMM_Cubed", "from_user_id": 84428059, "from_user_id_str": "84428059", "from_user_name": "Mike Parpart", "geo": null, "id": 148832933350875140, "id_str": "148832933350875137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1336240747/fun_and_games_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1336240747/fun_and_games_normal.PNG", "source": "<a href="http://twitter.com/">web</a>", "text": "I more day till #NYC Making my list of all I need to eat when i get to the city. Pastrami, ChixLiver, Matzo Ball soup, Dirty water hotdog", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:39 +0000", "from_user": "noamhazan", "from_user_id": 45821379, "from_user_id_str": "45821379", "from_user_name": "Noam Hazan", "geo": null, "id": 148832884499816450, "id_str": "148832884499816449", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1430068266/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1430068266/image_normal.jpg", "source": "<a href="http://www.thefancy.com" rel="nofollow"> Fancy</a>", "text": "20 Pine Residences @ NYC http://t.co/FrE49iDL via @thefancy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:39 +0000", "from_user": "jacobmanser", "from_user_id": 29596629, "from_user_id_str": "29596629", "from_user_name": "Jacob Manser", "geo": +{"coordinates": [40.6438,-73.7829], "type": "Point"}, "id": 148832882641731600, "id_str": "148832882641731584", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1598838871/Screen_shot_2011-07-10_at_5.40.26_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598838871/Screen_shot_2011-07-10_at_5.40.26_PM_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "NYC-JFK.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:32 +0000", "from_user": "shakheerah", "from_user_id": 142633452, "from_user_id_str": "142633452", "from_user_name": "Atoyegbe Shakheerah", "geo": null, "id": 148832854250500100, "id_str": "148832854250500096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694430864/IMG05821-20111130-0823_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694430864/IMG05821-20111130-0823_normal.jpg", "source": "<a href="http://www.handmark.com" rel="nofollow">TweetCaster for iOS</a>", "text": "Sme hereRT @Ms_Banjo: Nyc to meet youRT @shakheerah: Bola shakheerah atoyegbe RT @Ms_Banjo: Who you are", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:29 +0000", "from_user": "cabtogo", "from_user_id": 80525871, "from_user_id_str": "80525871", "from_user_name": "Don Morgan", "geo": null, "id": 148832840736456700, "id_str": "148832840736456704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1616732966/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616732966/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TomCruise: Tom answers your questions at the NYC M:I-@GhostProtocol Premiere 2night! Submit your questions w/ #MissionNYC http://t.co/8FwxLVGC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:25 +0000", "from_user": "meredith610", "from_user_id": 90323675, "from_user_id_str": "90323675", "from_user_name": "meredith thompson", "geo": null, "id": 148832827310481400, "id_str": "148832827310481408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699714135/IMG_3518-1_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699714135/IMG_3518-1_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "nyc wassup?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:19 +0000", "from_user": "GreggsGift", "from_user_id": 235990961, "from_user_id_str": "235990961", "from_user_name": "Gregg's Gift", "geo": null, "id": 148832800588578800, "id_str": "148832800588578817", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1223647024/Logo_BlueBow_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1223647024/Logo_BlueBow_normal.gif", "source": "<a href="http://www.apple.com" rel="nofollow">Safari on iOS</a>", "text": "Blog: Prescription Drug Abuse Climbs in NYC\\n#prescriptiondrugepidemic #nyc http://t.co/PiDt2X93", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:14 +0000", "from_user": "MikeLovesTori", "from_user_id": 232448761, "from_user_id_str": "232448761", "from_user_name": "Mike the Victorian", "geo": null, "id": 148832778220347400, "id_str": "148832778220347392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1661799797/aviii_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661799797/aviii_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ArianaGrande How are u liking NYC? Wish i could meet ya? :( Ohio is just the worst. Although I met Vic there and that was Amazing. KBye Lol", "to_user": "ArianaGrande", "to_user_id": 34507480, "to_user_id_str": "34507480", "to_user_name": "Ariana Grande"}, +{"created_at": "Mon, 19 Dec 2011 18:31:11 +0000", "from_user": "UrbanLivingNY", "from_user_id": 258977588, "from_user_id_str": "258977588", "from_user_name": "Urban Living", "geo": null, "id": 148832767185133570, "id_str": "148832767185133569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1556588302/Picture_22_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1556588302/Picture_22_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@isardasorensen just plain beautiful! RT @rockcenternyc looks gorgeous & festive for the holidays. #NYC #christmas http://t.co/Ln7SuqZO", "to_user": "isardasorensen", "to_user_id": 19949151, "to_user_id_str": "19949151", "to_user_name": "Inga Sarda-Sorensen", "in_reply_to_status_id": 146746078690160640, "in_reply_to_status_id_str": "146746078690160640"}, +{"created_at": "Mon, 19 Dec 2011 18:31:03 +0000", "from_user": "RaisingASDKids", "from_user_id": 317872664, "from_user_id_str": "317872664", "from_user_name": "Elise Ronan ", "geo": null, "id": 148832733517451260, "id_str": "148832733517451264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679765728/b30598bc-721b-4d9a-be83-959ba170dc33_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679765728/b30598bc-721b-4d9a-be83-959ba170dc33_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Raising #Asperger's Kids: Mom's Day Out #NYC http://t.co/LhuiwQeq @addthis #parenthood #tck #specneeds #autism #disability #respite #smas", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:03 +0000", "from_user": "jobs4NYC", "from_user_id": 245224684, "from_user_id_str": "245224684", "from_user_name": "New York City jobs", "geo": null, "id": 148832732619870200, "id_str": "148832732619870209", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1230576808/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1230576808/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "CAMPAIGN DIRECTOR, Run an Environmental Campaign Right Out of College (Manhattan) http://t.co/ovq409tG #NYC #NewYork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:02 +0000", "from_user": "jobs4NYC", "from_user_id": 245224684, "from_user_id_str": "245224684", "from_user_name": "New York City jobs", "geo": null, "id": 148832730912796670, "id_str": "148832730912796672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1230576808/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1230576808/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Paid Internship Opportunities at Irving Levin Associates (Norwalk) http://t.co/ZUHQ8hsT #NYC #NewYork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:02 +0000", "from_user": "jobs4NYC", "from_user_id": 245224684, "from_user_id_str": "245224684", "from_user_name": "New York City jobs", "geo": null, "id": 148832729419616260, "id_str": "148832729419616259", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1230576808/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1230576808/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Leasing Associate (Stamford CT) http://t.co/R5ZOihku #NYC #NewYork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:01 +0000", "from_user": "jobs4NYC", "from_user_id": 245224684, "from_user_id_str": "245224684", "from_user_name": "New York City jobs", "geo": null, "id": 148832724818472960, "id_str": "148832724818472960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1230576808/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1230576808/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Vitae Restaurant Hiring All BOH Positions (Midtown) http://t.co/6To8txUV #NYC #NewYork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:00 +0000", "from_user": "s7a7a7d7", "from_user_id": 300231140, "from_user_id_str": "300231140", "from_user_name": "\\uFF33\\uFF21\\uFF33\\uFF33\\uFF26\\uFF21\\uFF2A \\u2714 ", "geo": null, "id": 148832719261020160, "id_str": "148832719261020161", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702165812/love-sayings-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702165812/love-sayings-2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @billboard: #Glee star @DarrenCriss played a few shows in #NYC over the weekend while in town for \"How to Succeed...\" on #Broadway http://t.co/O74cYdkY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:59 +0000", "from_user": "kali_johnson", "from_user_id": 262144454, "from_user_id_str": "262144454", "from_user_name": "CJohnson", "geo": null, "id": 148832718233407500, "id_str": "148832718233407488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1642749607/mom_09_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642749607/mom_09_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @LandLopers: New Post: Everything You Need to Know About Visiting the World Trade Center Memorial in NYC http://t.co/FEnoLSro #travel #lp #9/11", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:57 +0000", "from_user": "jnewsreader", "from_user_id": 50734743, "from_user_id_str": "50734743", "from_user_name": "JewPI News", "geo": null, "id": 148832707751837700, "id_str": "148832707751837697", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/282317863/jnews_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/282317863/jnews_normal.png", "source": "<a href="http://www.jewpi.com/" rel="nofollow">JewPI Bot</a>", "text": "#Israel Institute of Technology: Cornell U Wins NYC Campus Competition http://t.co/UdWlh2VD http://t.co/nFdLtIhq @vosizneias \\u24CB\\u24C4\\u24C8\\u24BE\\u24CF\\u24C3\\u24BA\\u24BE\\u24B6\\u24C8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:50 +0000", "from_user": "Danni_Wonka", "from_user_id": 222694669, "from_user_id_str": "222694669", "from_user_name": "Danni ", "geo": null, "id": 148832680224636930, "id_str": "148832680224636929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1556389475/danni_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1556389475/danni_normal.png", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I wanna go to NYC for New Years, soooooo bad!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:50 +0000", "from_user": "CookieWagon", "from_user_id": 188380855, "from_user_id_str": "188380855", "from_user_name": "Dexter Myers Cookies", "geo": null, "id": 148832679763263500, "id_str": "148832679763263490", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1496079377/CookieWagon_JPEG_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1496079377/CookieWagon_JPEG_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Dexter Myers Cookie Wagon in NYC: 12/21-Jan 1 Cookies personally delivered wherever in NYC call: (347)948-5090 or dextermyers@gmail.com", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:47 +0000", "from_user": "MandyRaeEnvy", "from_user_id": 348859369, "from_user_id_str": "348859369", "from_user_name": "Mandy Rae R. Arroyo", "geo": null, "id": 148832667012575230, "id_str": "148832667012575232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1478603909/MandyVegas_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1478603909/MandyVegas_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "NYC! Vacation has officially started!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:41 +0000", "from_user": "eriksellgren", "from_user_id": 25807623, "from_user_id_str": "25807623", "from_user_name": "Erik Sellgren", "geo": null, "id": 148832639665709060, "id_str": "148832639665709056", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1290012589/erik7small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1290012589/erik7small_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@NinaAkestam ehmm Nina, du r\\u00E5kar inte k\\u00E4nna n\\u00E5n som ska hyra UT ett rum i NYC fr\\u00E5n Feb-Juni/Juli? Ska dit p\\u00E5 internship. Just checkin. hejr\\u00E5", "to_user": "NinaAkestam", "to_user_id": 20997946, "to_user_id_str": "20997946", "to_user_name": "Nina \\u00C5kestam"}, +{"created_at": "Mon, 19 Dec 2011 18:30:35 +0000", "from_user": "SteveAndBob", "from_user_id": 436424333, "from_user_id_str": "436424333", "from_user_name": "BullBustersRadio", "geo": null, "id": 148832614965461000, "id_str": "148832614965460993", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692321014/rightarmleftarm2_normal.jpg", "profile_image_url_https": null, "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @democracynow: Occupy Wall Street NYC marks 3-month anniversary with re-occupation attempt, dozens arrested. http://t.co/jK0sLcnw #ows", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:30 +0000", "from_user": "ZonyaMaraet", "from_user_id": 193579660, "from_user_id_str": "193579660", "from_user_name": "Zonya Maraet", "geo": null, "id": 148832595961065470, "id_str": "148832595961065472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699325590/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699325590/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @issarae: Bravo is looking for NYC based affluent AfAm couples getting married by 2/14/12 for new series on Bravo. Contact: @vpetalent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:30 +0000", "from_user": "billboard", "from_user_id": 9695312, "from_user_id_str": "9695312", "from_user_name": "Billboard ", "geo": null, "id": 148832593251549200, "id_str": "148832593251549185", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1173827542/bb_twitter_icon._jpg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1173827542/bb_twitter_icon._jpg_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#Glee star @DarrenCriss played a few shows in #NYC over the weekend while in town for \"How to Succeed...\" on #Broadway http://t.co/O74cYdkY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:23 +0000", "from_user": "Otizzle87", "from_user_id": 223391691, "from_user_id_str": "223391691", "from_user_name": "Nii ", "geo": null, "id": 148832566789685250, "id_str": "148832566789685248", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699006237/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699006237/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Nyc one RT @bonzibit: Detox will drop before Glo drops here", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:18 +0000", "from_user": "bdarfler", "from_user_id": 7356942, "from_user_id_str": "7356942", "from_user_name": "Benjamin Darfler", "geo": null, "id": 148832546396966900, "id_str": "148832546396966912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/482324479/bw-portrait_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/482324479/bw-portrait_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @CornellUpdate: Cornell Wins NYC Campus Bid, Apple Execs In TV Talks, Twitter Gets $300 ... - Fast Company http://t.co/jfoZW1M1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:16 +0000", "from_user": "vancouver_rt", "from_user_id": 173137904, "from_user_id_str": "173137904", "from_user_name": "Vancouver Retweeter", "geo": null, "id": 148832537601519600, "id_str": "148832537601519616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.pagebase.net/" rel="nofollow">PageBase.Net</a>", "text": "RT @FastFooDeliverd Fast Food Delivered in #Ottawa ! How about #Chicago #Miami #NYC #Philly #Toronto #Calgary #Winnipeg ?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:13 +0000", "from_user": "Colinmcintoshsp", "from_user_id": 370041883, "from_user_id_str": "370041883", "from_user_name": "Colinmcintosh@sports", "geo": null, "id": 148832522602692600, "id_str": "148832522602692609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1534236818/749_thumb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534236818/749_thumb_normal.jpg", "source": "<a href="http://www.instacheckin.com" rel="nofollow">Instacheckin</a>", "text": "Suspect in NYC woman's burning appears in court - The Associated Press http://t.co/bd86XLDV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:11 +0000", "from_user": "_Paulamartiins", "from_user_id": 178970269, "from_user_id_str": "178970269", "from_user_name": "LG;", "geo": null, "id": 148832516873273340, "id_str": "148832516873273344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1550529885/Lady_Gaga_tumblr_lqv6046hlq1qd95ooo1_500_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1550529885/Lady_Gaga_tumblr_lqv6046hlq1qd95ooo1_500_normal.png", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @ladygaga: Woohooo!! Turn on 100.3 in NYC!! Marry The Night is on!! I love my hometown!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:07 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148832497080340480, "id_str": "148832497080340480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @sales4NYC: #sales4u #sales Maya Bed in Espresso Finish (Free Shipping in NYC) $529 http://t.co/i5nFQz4V #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:04 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148832487185973250, "id_str": "148832487185973249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @gigs4NYC: #gigs4u #gigs College girls wanted for candid and sexy photos - Tfcd shoot (Midtown) http://t.co/rwBBkyqH #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:04 +0000", "from_user": "TimeInNYC", "from_user_id": 253915109, "from_user_id_str": "253915109", "from_user_name": "Time In New York", "geo": null, "id": 148832485839618050, "id_str": "148832485839618048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1497851931/time_in_newyork_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1497851931/time_in_newyork_normal.png", "source": "<a href="http://google.com" rel="nofollow">Time In New York</a>", "text": "#NYC The current time in New York City is 1:30 PM on Monday, 19 December 2011", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:04 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148832485223038980, "id_str": "148832485223038977", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @gigs4NYC: #gigs4u #gigs Hairstylists,etc, Got a hair/beauty/fashion accessory INVENTION? (Midtown East) http://t.co/PIYhq1M4 #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:35 +0000", "from_user": "JayRickey", "from_user_id": 17717512, "from_user_id_str": "17717512", "from_user_name": "Jay Rickey", "geo": null, "id": 148832363013615600, "id_str": "148832363013615616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1632577801/two_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632577801/two_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @uglservices: UGL Services represented @Roundarch in its 15,402 SF relocation. Thanks @cblNewYork! http://t.co/qcrAF9TF #CRE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:27 +0000", "from_user": "Purwa_Rawks", "from_user_id": 81351921, "from_user_id_str": "81351921", "from_user_name": "Purwa Sedana", "geo": null, "id": 148832329673084930, "id_str": "148832329673084928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1522044554/IMG0798A_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1522044554/IMG0798A_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Man Gets Prison for Bilking NYC Mayor: Political operative gets up to 4 years in prison on conviction for bilkin... http://t.co/RFfbtCO3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:32 +0000", "from_user": "JanetLFalk", "from_user_id": 28583359, "from_user_id_str": "28583359", "from_user_name": "Janet L. Falk", "geo": null, "id": 148832098801823740, "id_str": "148832098801823745", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/137518079/Janet_Falk_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/137518079/Janet_Falk_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@perezpena SOURCE #Roosevelt Island has a history of scientific innovation & research http://t.co/283eSHoj http://t.co/xtYj1GD7 #nyc", "to_user": "perezpena", "to_user_id": 28138045, "to_user_id_str": "28138045", "to_user_name": "Richard Perez-Pena", "in_reply_to_status_id": 148789188278501380, "in_reply_to_status_id_str": "148789188278501376"}, +{"created_at": "Mon, 19 Dec 2011 18:28:32 +0000", "from_user": "jimmycockface", "from_user_id": 441021142, "from_user_id_str": "441021142", "from_user_name": "Jimmy Cockface", "geo": null, "id": 148832098696962050, "id_str": "148832098696962049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "do people in nyc do blow?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:19 +0000", "from_user": "morphizm", "from_user_id": 14305673, "from_user_id_str": "14305673", "from_user_name": "Scott Thill", "geo": null, "id": 148832044754014200, "id_str": "148832044754014208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/57278556/bioshot50_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/57278556/bioshot50_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @democracynow: Occupy Wall Street NYC marks 3-month anniversary with re-occupation attempt, dozens arrested. http://t.co/jK0sLcnw #ows", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:16 +0000", "from_user": "Aw269Cornell", "from_user_id": 239851956, "from_user_id_str": "239851956", "from_user_name": "Allen Ward", "geo": null, "id": 148832032238211070, "id_str": "148832032238211073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1406740634/Allen_with_Cornell_Bear_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1406740634/Allen_with_Cornell_Bear_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nycgov: At 2:30 PM, the Mayor will join @Cornell_Univ & @TechnionLive for an announcement about NYC\\u2019s economic future. Watch: http://t.co/GnRYcfwv.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:13 +0000", "from_user": "RegioFora_NY", "from_user_id": 224395770, "from_user_id_str": "224395770", "from_user_name": "RegioFora_NY", "geo": null, "id": 148832022037659650, "id_str": "148832022037659649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1187303709/800px-Flag_of_New_York.svg_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1187303709/800px-Flag_of_New_York.svg_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "New York Times' Sale of Regional Papers Accidentally Revealed: The New York Times' sale of\\u00A015... http://t.co/ytoQ74PV #NYC #NY #US #News", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:52 +0000", "from_user": "newyorkhoods", "from_user_id": 28167765, "from_user_id_str": "28167765", "from_user_name": "richard", "geo": null, "id": 148831679635656700, "id_str": "148831679635656706", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "2 photos new on December 19 at 11:45 a.m.: \\n 2 Photos\\n\\n \\n\\n\\n\\n\\n\\n\\n \\n \\n lanaflickr posted 2 photos to Flick... http://t.co/LLyKkaRn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:48 +0000", "from_user": "jprpublicity", "from_user_id": 20860459, "from_user_id_str": "20860459", "from_user_name": "J Public Relations", "geo": null, "id": 148831663592439800, "id_str": "148831663592439808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/79942718/JPR_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/79942718/JPR_logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "A #NYE soiree in #NYC, simultaneously swanky & a bit bawdy @BrooklynWinery! Secure a golden ticket now! http://t.co/cESWZui7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} + +, +{"created_at": "Mon, 19 Dec 2011 19:00:57 +0000", "from_user": "EnhancedLife", "from_user_id": 16588462, "from_user_id_str": "16588462", "from_user_name": "EnhancedLife", "geo": null, "id": 148840256333037570, "id_str": "148840256333037568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/62318994/ELO-nf_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/62318994/ELO-nf_normal.jpg", "source": "<a href="http://futuretweets.com" rel="nofollow"> Futuretweets V2</a>", "text": "USA December Specials http://t.co/wlXMJy5D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:56 +0000", "from_user": "FolloWmyRuleSs", "from_user_id": 105717104, "from_user_id_str": "105717104", "from_user_name": "Benjamin Harmon", "geo": null, "id": 148840255628382200, "id_str": "148840255628382208", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699079616/tumblr_lw9u7ovHSQ1qggkpgo1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699079616/tumblr_lw9u7ovHSQ1qggkpgo1_500_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Es como que en los Tigermarket me siento en USA.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:56 +0000", "from_user": "kexezofigol", "from_user_id": 409289460, "from_user_id_str": "409289460", "from_user_name": "Ardouyd Godin", "geo": null, "id": 148840254349127680, "id_str": "148840254349127680", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1632117563/1734_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632117563/1734_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @tixetuky: casino usa video http://t.co/Y4pSlC3v", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:55 +0000", "from_user": "LoveYouSelenaG", "from_user_id": 128654509, "from_user_id_str": "128654509", "from_user_name": "\\u0455\\u0454\\u2113\\u0454\\u0438\\u03B1 g\\u03C3\\u043C\\u0454z f\\u03B1\\u0438 \\u265B", "geo": null, "id": 148840248808439800, "id_str": "148840248808439808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701072571/LoveYouSelenaG_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701072571/LoveYouSelenaG_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Selena_GOMEZ_US Thank you ! :) Hmmm.... Where do you come from in USA ? :)", "to_user": "Selena_GOMEZ_US", "to_user_id": 431902884, "to_user_id_str": "431902884", "to_user_name": "Selena Marie Gomez", "in_reply_to_status_id": 148839518076809200, "in_reply_to_status_id_str": "148839518076809216"}, +{"created_at": "Mon, 19 Dec 2011 19:00:54 +0000", "from_user": "_andrea95", "from_user_id": 357196944, "from_user_id_str": "357196944", "from_user_name": "Karin Santos", "geo": null, "id": 148840246790995970, "id_str": "148840246790995968", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700743748/IMG00474-20111218-1347_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700743748/IMG00474-20111218-1347_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"Inmadurez\" es un termino que usa la gente aburrida para describir a la gente divertida !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:53 +0000", "from_user": "JUSTONEAMERICAN", "from_user_id": 38067927, "from_user_id_str": "38067927", "from_user_name": "ONEAMERICANLOOKING@U", "geo": null, "id": 148840241392918530, "id_str": "148840241392918528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1273593109/spiralwound_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273593109/spiralwound_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@edshow Ahmed in Army USA http://t.co/2YpTUk87", "to_user": "edshow", "to_user_id": 75052666, "to_user_id_str": "75052666", "to_user_name": "Ed Schultz", "in_reply_to_status_id": 148838682277855230, "in_reply_to_status_id_str": "148838682277855233"}, +{"created_at": "Mon, 19 Dec 2011 19:00:52 +0000", "from_user": "rafa_avellar", "from_user_id": 98446303, "from_user_id_str": "98446303", "from_user_name": "Rafaela Avellar", "geo": null, "id": 148840237035028480, "id_str": "148840237035028480", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1556517411/Captura_de_tela_inteira_23092011_162744.bmp_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1556517411/Captura_de_tela_inteira_23092011_162744.bmp_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @annaroquete: vou confessar que acho super charmoso menino que usa oculos. tipo, nao sempre, so as vezes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:52 +0000", "from_user": "rahulg_", "from_user_id": 257661137, "from_user_id_str": "257661137", "from_user_name": "Rahul G.", "geo": null, "id": 148840235709628400, "id_str": "148840235709628416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1319026611/Astronaut-spacewalk-460x276_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1319026611/Astronaut-spacewalk-460x276_normal.jpg", "source": "<a href="http://www.socialflow.com" rel="nofollow">SocialFlow</a>", "text": "RT @SPACEdotcom: Station Crew Set To Launch To A New Home For The Holidays http://t.co/225I3WNf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:52 +0000", "from_user": "ArchivistsRT", "from_user_id": 195187494, "from_user_id_str": "195187494", "from_user_name": "ArchivistsRoundTable", "geo": null, "id": 148840235588001800, "id_str": "148840235588001793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1131319890/n64008225840_8524_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1131319890/n64008225840_8524_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @USNatArchives: Congrats to the Text Message blog for its Archivist's Award for Outstanding Achievement. http://t.co/81NbrNYc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:52 +0000", "from_user": "TinaBMack081519", "from_user_id": 441077460, "from_user_id_str": "441077460", "from_user_name": "Tina B Mack", "geo": null, "id": 148840235218911230, "id_str": "148840235218911233", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "http://t.co/mIarYNLl Home Appliance USA Baseball Debt Garment", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:51 +0000", "from_user": "MariamLavinge", "from_user_id": 441063196, "from_user_id_str": "441063196", "from_user_name": "Mariam Lavinge", "geo": null, "id": 148840234182914050, "id_str": "148840234182914048", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702616182/Prisoner_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702616182/Prisoner_normal.jpg", "source": "<a href="http://humorgeeky.com" rel="nofollow">Humorgeeky</a>", "text": "RT @humorgeeky: Gr\\u00E1fico sobre qui\\u00E9n usa cada navegador http://t.co/Jj4CTW3M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:51 +0000", "from_user": "CachetonMaldito", "from_user_id": 88184341, "from_user_id_str": "88184341", "from_user_name": "Felipe [:", "geo": null, "id": 148840233293709300, "id_str": "148840233293709312", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670823454/felippppp_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670823454/felippppp_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @circotimia_: FELIPE USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:50 +0000", "from_user": "risca1967", "from_user_id": 14225301, "from_user_id_str": "14225301", "from_user_name": "risca1967", "geo": null, "id": 148840227702714370, "id_str": "148840227702714369", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/52281801/tiny_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/52281801/tiny_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RISCA Weblog>> REQUEST FOR QUALIFICATIONS: BI AIRPORT: BLOCK ISLAND STATE AIRPORT, RHODE ISLAND Budget: $85,000 ... http://t.co/5Ftdimda", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:49 +0000", "from_user": "FFundHeritage", "from_user_id": 25294643, "from_user_id_str": "25294643", "from_user_name": "FiremansFundHeritage", "geo": null, "id": 148840225471336450, "id_str": "148840225471336448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1417756080/137x119facebookHatSmall_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1417756080/137x119facebookHatSmall_normal.png", "source": "<a href="http://spredfast.com" rel="nofollow">Spredfast</a>", "text": "Still looking for the perfect gift? Consider the gift of preparedness: http://t.co/wbtW3Ibj via @femaregion5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:49 +0000", "from_user": "ENERGYSTARHomes", "from_user_id": 336037982, "from_user_id_str": "336037982", "from_user_name": "ENERGY STAR Homes ", "geo": null, "id": 148840224108191740, "id_str": "148840224108191746", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1455502821/Certmark_-_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1455502821/Certmark_-_copy_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Compared to standard homes, #ENERGYSTAR homes can deliver $200 to $400 in annual savings. Visit http://t.co/7VdlWOsY #EcoMonday", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:49 +0000", "from_user": "MELANIL_MR", "from_user_id": 282722033, "from_user_id_str": "282722033", "from_user_name": "MELANIL", "geo": null, "id": 148840224104001540, "id_str": "148840224104001536", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1315305712/melanil_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1315305712/melanil_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@miembarazo A algunas mujeres les salen manchas en la cara, para quitarlas usa @MELANIL_MR \\u00FAsala", "to_user": "miembarazo", "to_user_id": 115687049, "to_user_id_str": "115687049", "to_user_name": "embarazada"}, +{"created_at": "Mon, 19 Dec 2011 19:00:49 +0000", "from_user": "IrishDentists", "from_user_id": 106818915, "from_user_id_str": "106818915", "from_user_name": "Irish Dental Associ", "geo": null, "id": 148840224045281280, "id_str": "148840224045281280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/748057271/IDA_LOGO2_CMYK_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/748057271/IDA_LOGO2_CMYK_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @medlineplus: Could your #dentist someday screen you for high blood pressure, diabetes, and other diseases? http://t.co/BfTHWEGu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:50 +0000", "from_user": "malau_ladygaga", "from_user_id": 320323579, "from_user_id_str": "320323579", "from_user_name": "Little Monster\\u2713Mary\\u2661", "geo": null, "id": 148840224015912960, "id_str": "148840224015912960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698321889/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698321889/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Just Bought This At @Kipling (: At USA http://t.co/UKtNYdmI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:49 +0000", "from_user": "jicirud", "from_user_id": 434798609, "from_user_id_str": "434798609", "from_user_name": "Urmya Armin", "geo": null, "id": 148840223047041020, "id_str": "148840223047041025", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688805562/724_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688805562/724_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "loans in uk for people with bad credit http://t.co/sfF0qNQC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:48 +0000", "from_user": "zuwonytabav", "from_user_id": 419958727, "from_user_id_str": "419958727", "from_user_name": "Agariste Athridge", "geo": null, "id": 148840222208167940, "id_str": "148840222208167936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1658881306/28_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658881306/28_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @fagenib: payday loan chicago http://t.co/SfGsBtbQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:48 +0000", "from_user": "Wiranadi", "from_user_id": 199612660, "from_user_id_str": "199612660", "from_user_name": "Wiranadi Grandis E", "geo": null, "id": 148840220408823800, "id_str": "148840220408823808", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702562424/IMG_0526_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702562424/IMG_0526_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "hash y ud g usa d di rewes kalo berisik RT @MungiieLzs: hash, brisssik RT@Wiranadi :please mbk dik jangan pake majas la balesnya", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:48 +0000", "from_user": "D_L1N", "from_user_id": 40554240, "from_user_id_str": "40554240", "from_user_name": "Dennis Lin \\u2714", "geo": null, "id": 148840219234402300, "id_str": "148840219234402304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1535542437/TwitCon__5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1535542437/TwitCon__5_normal.jpg", "source": "<a href="http://www.osfoora.com" rel="nofollow">Osfoora for iPhone</a>", "text": "@DennisRodman's with @ScottiePippen @GaryPayton_20 at the 2011 USA pro-ball Legend Macau Asia tour. http://t.co/fXXN0EpQ via @YouTube", "to_user": "dennisrodman", "to_user_id": 34616510, "to_user_id_str": "34616510", "to_user_name": "Dennis Rodman"}, +{"created_at": "Mon, 19 Dec 2011 19:00:46 +0000", "from_user": "yomardito", "from_user_id": 160589943, "from_user_id_str": "160589943", "from_user_name": "No soy yomar", "geo": null, "id": 148840213119115260, "id_str": "148840213119115264", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1692138271/Kr9OB_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692138271/Kr9OB_normal.gif", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@Jackemate_ USA CONDON.", "to_user": "Jackemate_", "to_user_id": 175451401, "to_user_id_str": "175451401", "to_user_name": "Forever hago spam.", "in_reply_to_status_id": 148838912742268930, "in_reply_to_status_id_str": "148838912742268928"}, +{"created_at": "Mon, 19 Dec 2011 19:00:46 +0000", "from_user": "noticiascomjoao", "from_user_id": 192618309, "from_user_id_str": "192618309", "from_user_name": "Jo\\u00E3o Rodrigues", "geo": null, "id": 148840211705634800, "id_str": "148840211705634816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1569908866/Foto1294_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1569908866/Foto1294_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@delia2727 I from Brasil yet. But would like to viseted the USA, for practice my english,", "to_user": "delia2727", "to_user_id": 161046659, "to_user_id_str": "161046659", "to_user_name": "delia.castillos", "in_reply_to_status_id": 148839754606190600, "in_reply_to_status_id_str": "148839754606190593"}, +{"created_at": "Mon, 19 Dec 2011 19:00:46 +0000", "from_user": "stephencasemore", "from_user_id": 85849503, "from_user_id_str": "85849503", "from_user_name": "stephen N-Dublet ", "geo": null, "id": 148840211433009150, "id_str": "148840211433009152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1304693399/70761_719163595_6146078_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1304693399/70761_719163595_6146078_n_normal.jpg", "source": "<a href="http://www.twitter.com" rel="nofollow">Twitter for Windows Phone</a>", "text": "@XboxLIVErewards why is it that all VIP rewards seem to only be given to USA. I live in the UK and all I get is a t-shirt. Wack!!", "to_user": "XboxLIVErewards", "to_user_id": 384388981, "to_user_id_str": "384388981", "to_user_name": "Xbox LIVE Rewards", "in_reply_to_status_id": 148834341101895680, "in_reply_to_status_id_str": "148834341101895681"}, +{"created_at": "Mon, 19 Dec 2011 19:00:46 +0000", "from_user": "Dooug_Silva", "from_user_id": 118685589, "from_user_id_str": "118685589", "from_user_name": "Douglas Silva \\u2605", "geo": null, "id": 148840211361710080, "id_str": "148840211361710080", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1649400894/Zihvzmh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649400894/Zihvzmh_normal.jpg", "source": "<a href="http://formspring.me" rel="nofollow">formspring.me</a>", "text": "Read my response to \"vai usa branco no ano novo?\": http://t.co/EBFy90ey", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:45 +0000", "from_user": "GabiiBennington", "from_user_id": 319196861, "from_user_id_str": "319196861", "from_user_name": "Malvada -' ", "geo": null, "id": 148840207154819070, "id_str": "148840207154819072", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700382150/tumblr_lwd7hbSO8R1r43jaao1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700382150/tumblr_lwd7hbSO8R1r43jaao1_500_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@_giovannafrois pq vc usa meia? vou postar aqui pq eu uso calcinha?", "to_user": "_giovannafrois", "to_user_id": 296532730, "to_user_id_str": "296532730", "to_user_name": "eu uso meia e voc\\u00EA?", "in_reply_to_status_id": 148839920839041020, "in_reply_to_status_id_str": "148839920839041025"}, +{"created_at": "Mon, 19 Dec 2011 19:00:45 +0000", "from_user": "wmsiegel", "from_user_id": 38811752, "from_user_id_str": "38811752", "from_user_name": "Bill Siegel", "geo": null, "id": 148840206370488320, "id_str": "148840206370488320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/205927136/Bill_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/205927136/Bill_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Back in the USA! Had a great visit to Japan to see my son, and now am in Route to Colorado for the holidays. One more flight left this year", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:44 +0000", "from_user": "CDCReady", "from_user_id": 378779638, "from_user_id_str": "378779638", "from_user_name": "CDC OPHPR", "geo": null, "id": 148840203178622980, "id_str": "148840203178622977", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1567012115/CDCReady_image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1567012115/CDCReady_image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Songs about earthquakes, tornadoes and floods..OH MY! Check out our top 7 disaster songs list http://t.co/M7qNfRkx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:43 +0000", "from_user": "sarahhmoreira", "from_user_id": 194116536, "from_user_id_str": "194116536", "from_user_name": "Sarah Moreira", "geo": null, "id": 148840201135992830, "id_str": "148840201135992833", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700497686/100_5200_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700497686/100_5200_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@lucrilhosq cara, a gente da sabe onde ele mora, a historia da vida dele, tudo...ate das cor das cuecas que ele usa", "to_user": "lucrilhosq", "to_user_id": 89586426, "to_user_id_str": "89586426", "to_user_name": "BATMAN.", "in_reply_to_status_id": 148839633780871170, "in_reply_to_status_id_str": "148839633780871168"}, +{"created_at": "Mon, 19 Dec 2011 19:00:43 +0000", "from_user": "adalymarie", "from_user_id": 357845616, "from_user_id_str": "357845616", "from_user_name": "Adaly Barnett", "geo": null, "id": 148840201131802620, "id_str": "148840201131802625", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1608194534/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608194534/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@grownupbutnot: ummmm, excuse me criminal intent, but the USA network is reserved specifically for SVU #getouttahere\\u201D agreed. Wtf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:43 +0000", "from_user": "XcluFJ", "from_user_id": 100277728, "from_user_id_str": "100277728", "from_user_name": "Furcy Castellanos", "geo": null, "id": 148840199244361730, "id_str": "148840199244361728", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1503855236/TWT2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1503855236/TWT2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MarioCayetano Nadie Usa Eso Ya Por Favor =)", "to_user": "MarioCayetano", "to_user_id": 55446365, "to_user_id_str": "55446365", "to_user_name": "Mario Diaz Cayetano", "in_reply_to_status_id": 148840106873192450, "in_reply_to_status_id_str": "148840106873192449"}, +{"created_at": "Mon, 19 Dec 2011 19:00:43 +0000", "from_user": "GottaBeHoran", "from_user_id": 394771586, "from_user_id_str": "394771586", "from_user_name": "Dani Batatinha do Ni", "geo": null, "id": 148840199034650620, "id_str": "148840199034650624", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700284888/nhac_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700284888/nhac_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@directionbra USA A TAG MEEEU BrazilNeedsUpAllNightTour VAI VAI", "to_user": "directionbra", "to_user_id": 412496140, "to_user_id_str": "412496140", "to_user_name": "paula magalh\\u00E3es", "in_reply_to_status_id": 148838209349099520, "in_reply_to_status_id_str": "148838209349099520"}, +{"created_at": "Mon, 19 Dec 2011 19:00:43 +0000", "from_user": "Chiarapepe1990", "from_user_id": 436156919, "from_user_id_str": "436156919", "from_user_name": "Chiara Pepe", "geo": null, "id": 148840198309019650, "id_str": "148840198309019649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702614980/543_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702614980/543_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NASA - Hubble Serves Up a Holiday Snow Angel - http://t.co/6ineoHv8 (via @NASA)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:43 +0000", "from_user": "bobfox321", "from_user_id": 15577097, "from_user_id_str": "15577097", "from_user_name": "Bob Foy", "geo": null, "id": 148840197348528130, "id_str": "148840197348528129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1536780486/GodCountry_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1536780486/GodCountry_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "OWS in Florida managed by Islamic CAIR attorney? http://t.co/NMXJGY7Y", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:41 +0000", "from_user": "Thayna__Gaby", "from_user_id": 302761440, "from_user_id_str": "302761440", "from_user_name": "Thayn\\u00E1 Gabrielle", "geo": null, "id": 148840190096584700, "id_str": "148840190096584704", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1631098097/Foto0195_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631098097/Foto0195_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Me pergunte qualquer coisa. - \\u203A 1. Altura? 2. Peso? 3. Voc\\u00EA fuma? 4. Voc\\u00EA bebe? 5. Usa/j\\u00E1 usou drogas? 6.... http://t.co/JIXUJWO3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:41 +0000", "from_user": "GSA_ITS", "from_user_id": 78030096, "from_user_id_str": "78030096", "from_user_name": "GSA ITS", "geo": null, "id": 148840189899444220, "id_str": "148840189899444224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/483192602/gsaimg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/483192602/gsaimg_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Need computer systems and hardware? http://t.co/lVn8Eglo - check on the categories/SINs to search #gsa #computer #itschedule70", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:41 +0000", "from_user": "AghataSalles_", "from_user_id": 314072398, "from_user_id_str": "314072398", "from_user_name": ". Deiixa Ela Pass\\u00C1 \\u266A", "geo": null, "id": 148840189404524540, "id_str": "148840189404524544", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679075976/syhefanniiy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679075976/syhefanniiy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "N\\u00E3o prescisa falar, usa essa boca so pra me beijar \\u266A\\u266B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:40 +0000", "from_user": "_MaraB", "from_user_id": 248937506, "from_user_id_str": "248937506", "from_user_name": "Mara Barreto.", "geo": null, "id": 148840188242694140, "id_str": "148840188242694145", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1659774102/marab_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659774102/marab_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @seunomecu: Marina: Usa mais photoshop que Geyse Arruda posando nua.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:40 +0000", "from_user": "jennifer_dubow", "from_user_id": 17251562, "from_user_id_str": "17251562", "from_user_name": "Jennifer D. Dubow", "geo": null, "id": 148840185818382340, "id_str": "148840185818382336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/323074821/IMG_0309_1_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/323074821/IMG_0309_1_1_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "USA Today explores how \"Are Americans crazy for treating our pets like kids?\" http://t.co/DFzBDI54 > guilty as charged!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:40 +0000", "from_user": "DuuuMartins", "from_user_id": 437130646, "from_user_id_str": "437130646", "from_user_name": "Maria Eduarda", "geo": null, "id": 148840185185058800, "id_str": "148840185185058816", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702612428/mee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702612428/mee_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Hj ningu\\u00E9m mais usa orkut, s\\u00F3 facebook :T", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:39 +0000", "from_user": "facuniggli", "from_user_id": 176189857, "from_user_id_str": "176189857", "from_user_name": "Facundo Niggli", "geo": null, "id": 148840184492986370, "id_str": "148840184492986368", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1582582694/efdfdfgsdgd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1582582694/efdfdfgsdgd_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Fefo_River parlantes parlantes boca usa parlantes, ay ya te vieron, ay ay ya te vieron jajaja ese era #AiSeEuTePegoDeCancha", "to_user": "Fefo_River", "to_user_id": 336960855, "to_user_id_str": "336960855", "to_user_name": "Federico Fenochio", "in_reply_to_status_id": 148839661643636740, "in_reply_to_status_id_str": "148839661643636736"}, +{"created_at": "Mon, 19 Dec 2011 19:00:39 +0000", "from_user": "famedate", "from_user_id": 411740967, "from_user_id_str": "411740967", "from_user_name": "Famedate", "geo": null, "id": 148840183045963780, "id_str": "148840183045963776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1690317864/fdlogotemp_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690317864/fdlogotemp_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Sex With Your Ex -- The New Monogamy http://t.co/rGC1wme2 http://t.co/XQQVR6Ss", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:39 +0000", "from_user": "wihycocoza", "from_user_id": 433650742, "from_user_id_str": "433650742", "from_user_name": "Abila Morcombe", "geo": null, "id": 148840182861406200, "id_str": "148840182861406209", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685884396/1206_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685884396/1206_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @quvexacapeq: mercury insurance group auto warranty http://t.co/LWihb3gd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:39 +0000", "from_user": "ErNeSrg", "from_user_id": 220987355, "from_user_id_str": "220987355", "from_user_name": "Ernesto Rodr\\u00EDguez", "geo": null, "id": 148840181942849540, "id_str": "148840181942849537", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1528341345/IMG0003A_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1528341345/IMG0003A_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Aprendizaje continuo y b\\u00FAsqueda de interacci\\u00F3n,claves en la estrategia digital de las compa\\u00F1\\u00EDas USA http://t.co/8Ek8wlem v\\u00EDa @Humannova #in", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:38 +0000", "from_user": "gabipiaz", "from_user_id": 56892991, "from_user_id_str": "56892991", "from_user_name": "Gabrielle Piaz", "geo": null, "id": 148840180256751600, "id_str": "148840180256751617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1630556856/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630556856/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @cassianoborges: @Real_Liam_Payne @Harry_Styles @Louis_Tomlinson @NiallOfficial @zaynmalik U HAVE FANS OUTSIDE UK AND USA ! ;) BrazilNeedsUpAllNightTour", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:38 +0000", "from_user": "lu_deschamps", "from_user_id": 98673432, "from_user_id_str": "98673432", "from_user_name": "Luiza Deschamps", "geo": null, "id": 148840178008592400, "id_str": "148840178008592386", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1601387016/aCC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601387016/aCC_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @vailablink182: vai la ficar reclamando quando o Tom usa toquinha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:37 +0000", "from_user": "huff_john", "from_user_id": 408586064, "from_user_id_str": "408586064", "from_user_name": "John Huff", "geo": null, "id": 148840174003044350, "id_str": "148840174003044352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1630625584/P0005547_edited_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630625584/P0005547_edited_normal.JPG", "source": "<a href="http://www.weather-display.com/files.php" rel="nofollow">Weather Display</a>", "text": "Current Weather in Pittsburg, NH USA at -- Time 2:00 PM, 12/19/11, temp 26.1, humidity 77 pct, win", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:37 +0000", "from_user": "MuravnickPender", "from_user_id": 439509454, "from_user_id_str": "439509454", "from_user_name": "Muravnick Pendergast", "geo": null, "id": 148840172602142720, "id_str": "148840172602142721", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": null, "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "http://t.co/q1oir3LZ USA Profession Stock Nuclear Technology", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:36 +0000", "from_user": "BradleyHospital", "from_user_id": 31889093, "from_user_id_str": "31889093", "from_user_name": "BradleyHosp/Nancy", "geo": null, "id": 148840168709832700, "id_str": "148840168709832706", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1115880530/551fae0e-db4b-4530-ba29-9da140c225ad_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1115880530/551fae0e-db4b-4530-ba29-9da140c225ad_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Shocking and sad: 1 in 4 young Americans has an arrest record by age 18. http://t.co/KeHs1DG6 #crime #youngadults", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:35 +0000", "from_user": "icebean87", "from_user_id": 208090491, "from_user_id_str": "208090491", "from_user_name": "Jo-Lynn Jansen", "geo": null, "id": 148840164108681200, "id_str": "148840164108681216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1324936737/Lot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1324936737/Lot_normal.jpg", "source": "<a href="http://twuffer.com" rel="nofollow">Twuffer</a>", "text": "Fall prevention checklist makes it easy for #caregiver to secure the home http://t.co/6dz5Luj6 #safety #seniors", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:33 +0000", "from_user": "FHI360SATELLIFE", "from_user_id": 79003390, "from_user_id_str": "79003390", "from_user_name": "FHI360 - SATELLIFE", "geo": null, "id": 148840157917872130, "id_str": "148840157917872128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702614523/fhi360satellife_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702614523/fhi360satellife_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@TandFRef Spousal #communication about #HIV prevention in #Kenya http://t.co/gv6N37RR via @ncbi_pubmed", "to_user": "TandFRef", "to_user_id": 36094221, "to_user_id_str": "36094221", "to_user_name": "Taylor and Francis"}, +{"created_at": "Mon, 19 Dec 2011 19:00:33 +0000", "from_user": "ka_payaso", "from_user_id": 333865457, "from_user_id_str": "333865457", "from_user_name": "\\u304B\\u3063\\u3057\\u30FC", "geo": null, "id": 148840157053853700, "id_str": "148840157053853696", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1567726845/DSCN1047-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1567726845/DSCN1047-2_normal.jpg", "source": "<a href="http://janetter.net/" rel="nofollow">Janetter</a>", "text": "\\u4ECA\\u5E74\\u306E\\u5927\\u6666\\u65E5\\u306F\\u30B2\\u30FC\\u30E0\\u30BB\\u30F3\\u30BF\\u30FCCX in USA\\u3092\\u898B\\u3066\\u904E\\u3054\\u3057\\u305D\\u3046\\u3060\\u306Aw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:32 +0000", "from_user": "Josetequiere", "from_user_id": 314694238, "from_user_id_str": "314694238", "from_user_name": "Fuckencio Diaz", "geo": null, "id": 148840155036393470, "id_str": "148840155036393472", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700834034/ssss_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700834034/ssss_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Jackemate_: JOS\\u00C9 USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:32 +0000", "from_user": "gedufyz", "from_user_id": 433484703, "from_user_id_str": "433484703", "from_user_name": "Farkhunda Calbert", "geo": null, "id": 148840153241235460, "id_str": "148840153241235456", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685352343/1050_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685352343/1050_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @rokyxuboxe: auto insurance calculator usa http://t.co/J8WJxTWP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:32 +0000", "from_user": "TNWXMAN", "from_user_id": 115981127, "from_user_id_str": "115981127", "from_user_name": "TN WXMAN", "geo": null, "id": 148840152733724670, "id_str": "148840152733724672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://www.weather-display.com/files.php" rel="nofollow">Weather Display</a>", "text": "Lebanon, TN USA weather data 13:00 55.0°F 49 pct 1.9 mph S%20%23wdisplay", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:31 +0000", "from_user": "iRojo_", "from_user_id": 187004823, "from_user_id_str": "187004823", "from_user_name": "Franklin Alberto \\u2714", "geo": null, "id": 148840150967910400, "id_str": "148840150967910400", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668836027/asd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668836027/asd_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Preparada para el sexo nasal RT @_Adicta : TU EL QUE LEE ESTE TWEET USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:31 +0000", "from_user": "davidshepardson", "from_user_id": 26283307, "from_user_id_str": "26283307", "from_user_name": "David Shepardson", "geo": null, "id": 148840150779179000, "id_str": "148840150779179008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/202644841/n650203102_2079561_8492-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/202644841/n650203102_2079561_8492-1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Watch Meryl Streep sing part of \"See the USA in your Chevrolet\" on 60 Minutes http://t.co/VQzNaWMI)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:30 +0000", "from_user": "mojydab", "from_user_id": 419165540, "from_user_id_str": "419165540", "from_user_name": "Qayshaun Doyle", "geo": null, "id": 148840144756150270, "id_str": "148840144756150273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1656998616/22_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656998616/22_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @cavatasiq: starter loans direct ctr http://t.co/3rOsiHUP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:29 +0000", "from_user": "MemphisRSSFeed", "from_user_id": 81096242, "from_user_id_str": "81096242", "from_user_name": "Memphis News", "geo": null, "id": 148840141140668400, "id_str": "148840141140668417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1110400013/icon-75x75_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1110400013/icon-75x75_normal.png", "source": "<a href="http://rssmemphis.com" rel="nofollow">rssmemphis</a>", "text": "Will Barton Earns Second-Straight C-USA Player Of The Week Honor (http://t.co/Shc6VHWf) #memphis #news", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:29 +0000", "from_user": "televisionLQH", "from_user_id": 399229060, "from_user_id_str": "399229060", "from_user_name": "televisionLQH", "geo": null, "id": 148840139693625340, "id_str": "148840139693625345", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1610251202/1319753584_amazon-warehouse-deals-tv-and-video_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610251202/1319753584_amazon-warehouse-deals-tv-and-video_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "75% off: http://t.co/ukfb7mBZ Complete Guide to Bed & Breakfasts, Inns & Guesthouses in the USA, Canada & Worldwide", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:29 +0000", "from_user": "knmkkashi_bot", "from_user_id": 114988791, "from_user_id_str": "114988791", "from_user_name": "knmkkashi_bot", "geo": null, "id": 148840139064483840, "id_str": "148840139064483840", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/700988724/B000VDFGB4.09.LZZZZZZZ_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/700988724/B000VDFGB4.09.LZZZZZZZ_1__normal.jpg", "source": "<a href="http://twittbot.net/" rel="nofollow">twittbot.net</a>", "text": "\\u541B\\u306F\\u3044\\u3064\\u3067\\u3082\\u601D\\u3044\\u306E\\u307E\\u307E\\u306B \\u3088\\u304F\\u558B\\u308B\\u306E\\u306F\\u4F55\\u3067\\u3060\\u308D\\u3046\\uFF1F [\\u3075\\u308C\\u3042\\u3044USA]", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:28 +0000", "from_user": "_Adicta", "from_user_id": 123965194, "from_user_id_str": "123965194", "from_user_name": "La que hace spam.", "geo": null, "id": 148840137948803070, "id_str": "148840137948803072", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "\\u00BFCREES QUE ESTOY LOCA? USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:28 +0000", "from_user": "PrDinho", "from_user_id": 194179546, "from_user_id_str": "194179546", "from_user_name": "PR. Dinho", "geo": null, "id": 148840137835556860, "id_str": "148840137835556865", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1173096696/986497a4-a75c-48b8-8a44-426011fcbcdd_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1173096696/986497a4-a75c-48b8-8a44-426011fcbcdd_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "essa \\u00E9 pra vc @juuartuzi :) crente gremista n\\u00E3o acredita em papai noel porque ele usa um uniforme ''colorado'' #LLOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:28 +0000", "from_user": "radiookapi", "from_user_id": 75229951, "from_user_id_str": "75229951", "from_user_name": "Radio Okapi", "geo": null, "id": 148840135067320320, "id_str": "148840135067320320", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/422161198/avatar-ro_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/422161198/avatar-ro_normal.gif", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Pr\\u00E9sidentielle-RDC: sit-in des femmes de l\\u2019opposition devant l\\u2019ambassade des USA \\u00E0 Kinshasa http://t.co/GoF09A2e", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:27 +0000", "from_user": "fucklondonbitch", "from_user_id": 441069613, "from_user_id_str": "441069613", "from_user_name": "porra meigostoso.", "geo": null, "id": 148840132022255600, "id_str": "148840132022255616", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702583321/247268_110328409058915_100002452708695_98734_1256841_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702583321/247268_110328409058915_100002452708695_98734_1256841_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "n\\u00E3o vou seguir a @_SantanaBiia porque ela n\\u00E3o usa TUITER", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:26 +0000", "from_user": "Morena_jonas22", "from_user_id": 299810087, "from_user_id_str": "299810087", "from_user_name": "Gisele Jonas", "geo": null, "id": 148840130097061900, "id_str": "148840130097061888", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1678089551/Gisele_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678089551/Gisele_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@Wesley_duloko Mudava so q eu qr vc seja corinthiano pra nois usa camiseta iguais kkk", "to_user": "Wesley_duloko", "to_user_id": 399044157, "to_user_id_str": "399044157", "to_user_name": "Weslei Santos~Duloko", "in_reply_to_status_id": 148839006854053900, "in_reply_to_status_id_str": "148839006854053888"}, +{"created_at": "Mon, 19 Dec 2011 19:00:26 +0000", "from_user": "maira_prebil", "from_user_id": 387745093, "from_user_id_str": "387745093", "from_user_name": "maira prebil \\u0950", "geo": null, "id": 148840128830386180, "id_str": "148840128830386176", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697127312/Foto1138_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697127312/Foto1138_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Vo leva meu vestido na costureira pra mim usa no natal *O*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:26 +0000", "from_user": "baduell", "from_user_id": 109771969, "from_user_id_str": "109771969", "from_user_name": "Manuel Ledezma", "geo": null, "id": 148840128297697280, "id_str": "148840128297697282", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1683362619/twit2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683362619/twit2_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Nelly Furtado esta regalando Macbook's Black!!!!!! Fuck quiero vivir en USA!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:26 +0000", "from_user": "ReanGrenon07131", "from_user_id": 412570550, "from_user_id_str": "412570550", "from_user_name": "Rean Grenon", "geo": null, "id": 148840126812917760, "id_str": "148840126812917760", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "http://t.co/aGn66fTn Paris USA Jimmy Kimmel Live Engineer", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:26 +0000", "from_user": "gabyfigueras", "from_user_id": 293169214, "from_user_id_str": "293169214", "from_user_name": "GaBrieLa FiGuErA S.", "geo": null, "id": 148840126099890180, "id_str": "148840126099890177", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1575553795/317678_2252639028887_1035607717_2614849_677427878_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575553795/317678_2252639028887_1035607717_2614849_677427878_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Hombre q c respeta no usa franela de perry ni bob esponja", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:25 +0000", "from_user": "bea_hp", "from_user_id": 228926907, "from_user_id_str": "228926907", "from_user_name": "hp \\u00F1 de harry potter", "geo": null, "id": 148840123084177400, "id_str": "148840123084177408", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1626402987/IMG00004__2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626402987/IMG00004__2__normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Photo: Quando precisei de um lugar para pendurar meu cora\\u00E7\\u00E3o, voc\\u00EA estava l\\u00E1 para us\\u00E1-lo desde o in\\u00EDcio e... http://t.co/BRjJT3Dy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:25 +0000", "from_user": "FC_GusttavoL_PB", "from_user_id": 346873684, "from_user_id_str": "346873684", "from_user_name": "PB do GL Zayama \\u2714", "geo": null, "id": 148840122496978940, "id_str": "148840122496978945", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1595483943/PQAAAAy8AZY-L-jR-TymcBlEwZJGCDbjS3E45A9UyDkWcp9LSJ43vZJkG6cNVm-ilO2rpWnIvtHTA2eoGNYfdLFKxhcAm1T1UPnSUUvmgX4NkCYuQyvQiWiK87ti_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1595483943/PQAAAAy8AZY-L-jR-TymcBlEwZJGCDbjS3E45A9UyDkWcp9LSJ43vZJkG6cNVm-ilO2rpWnIvtHTA2eoGNYfdLFKxhcAm1T1UPnSUUvmgX4NkCYuQyvQiWiK87ti_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @GLAmorEterno_PB: Pra falarem que o guh mudou temos que olhar pra gente tambem:ninguem mais usa as tags #familiaGL mudou muito!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:24 +0000", "from_user": "federalchange", "from_user_id": 199048355, "from_user_id_str": "199048355", "from_user_name": "Civil Service Change", "geo": null, "id": 148840121364529150, "id_str": "148840121364529152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1468960673/smiley_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1468960673/smiley_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @arizonacandi: Must reads for govies: State of Federal Web Report http://t.co/114iddBz & Clay Johnson's blog http://t.co/J9gX8Axw #dotgov #opengov", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:24 +0000", "from_user": "kakahtavares", "from_user_id": 289130967, "from_user_id_str": "289130967", "from_user_name": "kakah tavares", "geo": null, "id": 148840121217720320, "id_str": "148840121217720320", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668824223/hello_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668824223/hello_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Meu Face usa dorgas!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:24 +0000", "from_user": "UpasnaGautam", "from_user_id": 120226908, "from_user_id_str": "120226908", "from_user_name": "Upasna Gautam", "geo": null, "id": 148840120999616500, "id_str": "148840120999616512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1260020919/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1260020919/twitter_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @MSU_Basketball: #Spartans move up to No. 19 in AP Top 25 and No. 20 in ESPN/USA Today Coaches Poll.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:24 +0000", "from_user": "My_Ass_", "from_user_id": 125162594, "from_user_id_str": "125162594", "from_user_name": "luiiiiiz", "geo": null, "id": 148840119913283600, "id_str": "148840119913283586", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691158928/Imagem_017_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691158928/Imagem_017_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "o fdp usa orkut! ta falando oqe?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:23 +0000", "from_user": "_jujujux", "from_user_id": 199956426, "from_user_id_str": "199956426", "from_user_name": "JULIANNA", "geo": null, "id": 148840116792729600, "id_str": "148840116792729600", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1674317297/BOOK_JULIANA_ROSA_ENSAIO_STUDIO_26_11_2011_ARQ_MATRIZ__13__normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674317297/BOOK_JULIANA_ROSA_ENSAIO_STUDIO_26_11_2011_ARQ_MATRIZ__13__normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "eu preciso levar a s\\u00E9rio meu aparelho e usa-lo seriamente. . dinheiro n\\u00E3o cai do c\\u00E9u e nem do chuveiro ;X", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:23 +0000", "from_user": "LaVinylProd", "from_user_id": 395074963, "from_user_id_str": "395074963", "from_user_name": "LaVinylProducciones", "geo": null, "id": 148840115177914370, "id_str": "148840115177914368", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1598864397/la_vinyl2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598864397/la_vinyl2_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Snow Patrol: ac\\u00FAstico en los estudios de Rolling Stone (USA)... http://t.co/uxNQeLeQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:23 +0000", "from_user": "Ragiiee", "from_user_id": 394095276, "from_user_id_str": "394095276", "from_user_name": "Ragnield", "geo": null, "id": 148840114905292800, "id_str": "148840114905292800", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1652648531/IMG_0450_1__normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652648531/IMG_0450_1__normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "3 days :O USA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:23 +0000", "from_user": "LEMAGAZINEEVER", "from_user_id": 47594750, "from_user_id_str": "47594750", "from_user_name": "EVER MAGAZINE", "geo": null, "id": 148840113881878530, "id_str": "148840113881878528", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1142961986/EVER-glossy_social_NEG_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1142961986/EVER-glossy_social_NEG_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#Iran : #USA et #Europe tentent de maintenir l'\\u00E9quilibre alors que l'embargo sur l'#Iran se pr\\u00E9cise. http://t.co/AnnOfYtS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:22 +0000", "from_user": "Lodging_mobi", "from_user_id": 287440249, "from_user_id_str": "287440249", "from_user_name": "Lodging.mobi", "geo": null, "id": 148840112095117300, "id_str": "148840112095117312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1324208297/twitterlogo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1324208297/twitterlogo_normal.png", "source": "<a href="http://lodging.mobi" rel="nofollow">lodging.mobi</a>", "text": "Stay in Plano, TX, USA for as low as 43.99 USD. http://t.co/kaORQke6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:22 +0000", "from_user": "laurasantini7", "from_user_id": 172942908, "from_user_id_str": "172942908", "from_user_name": "Laura Santini", "geo": null, "id": 148840111587594240, "id_str": "148840111587594241", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701491676/IMG01888-20111218-1059_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701491676/IMG01888-20111218-1059_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Acabo de descubrir que el vocalista de A Rocket To The Moon usa auto-tune :( que importa, a\\u00FAn lo amo.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:22 +0000", "from_user": "ECourtneyPrice", "from_user_id": 50834423, "from_user_id_str": "50834423", "from_user_name": "Courtney Price", "geo": null, "id": 148840111356919800, "id_str": "148840111356919810", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/874522676/Courtney_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/874522676/Courtney_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Former USA Today publisher to buy Denver Weekly, sister papers. Sharing the news with @andybechtel and @rtburg. http://t.co/ZG7iTu3v", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:21 +0000", "from_user": "GiovannaCazar", "from_user_id": 154404361, "from_user_id_str": "154404361", "from_user_name": "Giovanna Cazar ", "geo": null, "id": 148840108836134900, "id_str": "148840108836134912", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1162893454/Imagen_243_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1162893454/Imagen_243_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:21 +0000", "from_user": "PortlandPoker", "from_user_id": 112880510, "from_user_id_str": "112880510", "from_user_name": "Portland Poker", "geo": +{"coordinates": [45.5193,-122.6188], "type": "Point"}, "id": 148840106554441730, "id_str": "148840106554441728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1355267883/portland_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1355267883/portland_normal.jpg", "source": "<a href="http://www.thepokeratlas.com/city/portland-or-usa/547/" rel="nofollow">The Poker Atlas Portland</a>", "text": "2:00 PM @ Aces Players Club $25 No-Limit Hold'em Re-Buy Poker Tournament http://t.co/t6aLRLST", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:20 +0000", "from_user": "Dima_Khatib", "from_user_id": 201712702, "from_user_id_str": "201712702", "from_user_name": "Dima Khatib \\u0623\\u0646\\u0627 \\u062F\\u064A\\u0645\\u0629", "geo": null, "id": 148840103375147000, "id_str": "148840103375147008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1435714172/5921224165_ab4a585931_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1435714172/5921224165_ab4a585931_o_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@zlando :) well.. nuclear is nuclear though. I do not defend NK horrible regime but it did not use nukes, USA did ! @thisisKhaledM", "to_user": "zlando", "to_user_id": 37919483, "to_user_id_str": "37919483", "to_user_name": "Zvi Lando", "in_reply_to_status_id": 148838590166745100, "in_reply_to_status_id_str": "148838590166745088"}, +{"created_at": "Mon, 19 Dec 2011 19:00:20 +0000", "from_user": "circotimia_", "from_user_id": 221610474, "from_user_id_str": "221610474", "from_user_name": "M a i t e\\u10E6. ", "geo": null, "id": 148840101701632000, "id_str": "148840101701632000", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698350821/jjo__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698350821/jjo__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "FELIPE USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:19 +0000", "from_user": "MadisonGroupon", "from_user_id": 338419160, "from_user_id_str": "338419160", "from_user_name": "Madison", "geo": null, "id": 148840100606914560, "id_str": "148840100606914560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1551706553/293233_108245025949533_100002921095285_57941_1474190669_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1551706553/293233_108245025949533_100002921095285_57941_1474190669_n_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @GrouponPortland: Help provide meals for school children affected by the famine in the Horn of Africa: http://t.co/EQLpJvZ8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:19 +0000", "from_user": "UncleTacoMan", "from_user_id": 188240446, "from_user_id_str": "188240446", "from_user_name": "Juan ", "geo": null, "id": 148840098639781900, "id_str": "148840098639781889", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1667357332/3fdf43db-a557-407e-8a04-630283e013c7_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667357332/3fdf43db-a557-407e-8a04-630283e013c7_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @foodsafetygov: ALLERGY ALERT: Whipped #Topping Due to #Milk Distributed in #OH #MD #NY #IN #PA #MI http://t.co/mounxjjX #foodsafety #allergyalert", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:19 +0000", "from_user": "JanaCalil", "from_user_id": 226742603, "from_user_id_str": "226742603", "from_user_name": "Jana\\u00EDna T Calil", "geo": null, "id": 148840098107113470, "id_str": "148840098107113472", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1190789048/_DSC7867_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1190789048/_DSC7867_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @um_virgem: N\\u00E3o confio em quem usa pochete.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:18 +0000", "from_user": "forever_Dede", "from_user_id": 112735119, "from_user_id_str": "112735119", "from_user_name": "s\\u00F3 da Jane", "geo": null, "id": 148840095288537100, "id_str": "148840095288537088", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702144911/1256831610384_f_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702144911/1256831610384_f_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@lipstick_manaus ps\\u00E9 meu padrasto nem usa tipo ?????????????????? se fosse minha", "to_user": "lipstick_manaus", "to_user_id": 188772969, "to_user_id_str": "188772969", "to_user_name": "Rosinha L\\u00E2n B\\u00E9r", "in_reply_to_status_id": 148839852937461760, "in_reply_to_status_id_str": "148839852937461760"}, +{"created_at": "Mon, 19 Dec 2011 19:00:18 +0000", "from_user": "EmilyCBoyd", "from_user_id": 130862999, "from_user_id_str": "130862999", "from_user_name": "Emily Boyd", "geo": null, "id": 148840093875052540, "id_str": "148840093875052545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1673259440/c6d3e6e9-e43b-4c8e-8916-843f73a6682d_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673259440/c6d3e6e9-e43b-4c8e-8916-843f73a6682d_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Groupon: Help provide meals for school children affected by the famine in the Horn of Africa: http://t.co/wEkhlQH7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:18 +0000", "from_user": "MsRosanel", "from_user_id": 232159702, "from_user_id_str": "232159702", "from_user_name": "MsRosanel", "geo": null, "id": 148840093682118660, "id_str": "148840093682118656", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1661005705/Rosanel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661005705/Rosanel_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Todavia se usa el traje azul marino con botones dorados? #digoleyo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:18 +0000", "from_user": "robert_2410", "from_user_id": 145492505, "from_user_id_str": "145492505", "from_user_name": "robet ortiz", "geo": null, "id": 148840092834869250, "id_str": "148840092834869250", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701967392/IMG00186-20111218-1218_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701967392/IMG00186-20111218-1218_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Ya no se Usa vIsitar la novia a la casa, a hora es en la cava\\u00F1a", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:17 +0000", "from_user": "waltonc906", "from_user_id": 236562852, "from_user_id_str": "236562852", "from_user_name": "Heather MOLINA", "geo": null, "id": 148840090507030530, "id_str": "148840090507030529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1212211380/1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1212211380/1_normal.jpg", "source": "<a href="http://ping.fm/" rel="nofollow">Ping.fm</a>", "text": "http://t.co/XTiIP13w: Sainsbury's Travel Money Launches Online Service - http://t.co/0CxCASDO - http://t.co/xoBIkfgh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:16 +0000", "from_user": "colonelb", "from_user_id": 14336780, "from_user_id_str": "14336780", "from_user_name": "David Britten", "geo": null, "id": 148840087566815230, "id_str": "148840087566815233", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1504060769/Britten_2009_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1504060769/Britten_2009_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @mathteacher1729: Brilliant compare / contrast of USA Vs. Finland education systems: http://t.co/U1YRFz2W #edchat #edpolicy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:16 +0000", "from_user": "ColinLawton", "from_user_id": 404684538, "from_user_id_str": "404684538", "from_user_name": "Colin Lawton ", "geo": null, "id": 148840086845403140, "id_str": "148840086845403136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1621771912/me_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621771912/me_1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SpecialKBrook anychance of a rt to a fellow yorkshire lad , i watched your usa debut it was excellent good show", "to_user": "SpecialKBrook", "to_user_id": 314591606, "to_user_id_str": "314591606", "to_user_name": "Kell Brook"}, +{"created_at": "Mon, 19 Dec 2011 19:00:16 +0000", "from_user": "ay1432", "from_user_id": 394835681, "from_user_id_str": "394835681", "from_user_name": "AboEbrahim", "geo": null, "id": 148840084676943870, "id_str": "148840084676943872", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @qallafm: \\u0635\\u0648\\u0631\\u0629 \\u0634\\u0631\\u0637\\u064A \\u064A\\u0631\\u0641\\u0639 \\u0639\\u0635\\u0627\\u0647 \\u0644\\u064A\\u0636\\u0631\\u0628 \\u0627\\u0645\\u0631\\u0623\\u0629 \\u0628\\u062D\\u0631\\u064A\\u0646\\u064A\\u0629 #Bahrain #Arabspring #Egypt #Libya #Tunisia #Yemen #Kuwait #KSA #USA #UK #UN http://t.co/ic7uRc5V", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:15 +0000", "from_user": "PortlandPoker", "from_user_id": 112880510, "from_user_id_str": "112880510", "from_user_name": "Portland Poker", "geo": +{"coordinates": [45.5193,-122.6188], "type": "Point"}, "id": 148840083561259000, "id_str": "148840083561259009", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1355267883/portland_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1355267883/portland_normal.jpg", "source": "<a href="http://www.thepokeratlas.com/city/portland-or-usa/547/" rel="nofollow">The Poker Atlas Portland</a>", "text": "2:00 PM @ Encore Club $25 NL Hold'em Poker Tournament $400 Guarantee @EncorePoker http://t.co/t6aLRLST", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 19:00:16 +0000", "from_user": "ColinLawton", "from_user_id": 404684538, "from_user_id_str": "404684538", "from_user_name": "Colin Lawton ", "geo": null, "id": 148840086845403140, "id_str": "148840086845403136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1621771912/me_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621771912/me_1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SpecialKBrook anychance of a rt to a fellow yorkshire lad , i watched your usa debut it was excellent good show", "to_user": "SpecialKBrook", "to_user_id": 314591606, "to_user_id_str": "314591606", "to_user_name": "Kell Brook"}, +{"created_at": "Mon, 19 Dec 2011 19:00:16 +0000", "from_user": "ay1432", "from_user_id": 394835681, "from_user_id_str": "394835681", "from_user_name": "AboEbrahim", "geo": null, "id": 148840084676943870, "id_str": "148840084676943872", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @qallafm: \\u0635\\u0648\\u0631\\u0629 \\u0634\\u0631\\u0637\\u064A \\u064A\\u0631\\u0641\\u0639 \\u0639\\u0635\\u0627\\u0647 \\u0644\\u064A\\u0636\\u0631\\u0628 \\u0627\\u0645\\u0631\\u0623\\u0629 \\u0628\\u062D\\u0631\\u064A\\u0646\\u064A\\u0629 #Bahrain #Arabspring #Egypt #Libya #Tunisia #Yemen #Kuwait #KSA #USA #UK #UN http://t.co/ic7uRc5V", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:15 +0000", "from_user": "PortlandPoker", "from_user_id": 112880510, "from_user_id_str": "112880510", "from_user_name": "Portland Poker", "geo": +{"coordinates": [45.5193,-122.6188], "type": "Point"}, "id": 148840083561259000, "id_str": "148840083561259009", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1355267883/portland_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1355267883/portland_normal.jpg", "source": "<a href="http://www.thepokeratlas.com/city/portland-or-usa/547/" rel="nofollow">The Poker Atlas Portland</a>", "text": "2:00 PM @ Encore Club $25 NL Hold'em Poker Tournament $400 Guarantee @EncorePoker http://t.co/t6aLRLST", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:15 +0000", "from_user": "Louisesilva_", "from_user_id": 235227879, "from_user_id_str": "235227879", "from_user_name": "Uma ruiva :9", "geo": null, "id": 148840082453962750, "id_str": "148840082453962753", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1595722560/AAA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1595722560/AAA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @LeonardoPedran: \"Imposs\\u00EDvel \\u00E9 uma palavra muito grande que gente pequena usa pra tentar te oprimir\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:14 +0000", "from_user": "AndreaMessiass", "from_user_id": 144997365, "from_user_id_str": "144997365", "from_user_name": "Andr\\u00E9a Messias ", "geo": null, "id": 148840079304048640, "id_str": "148840079304048640", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1673874632/PQAAAPPYXBe-8XHfozi_nGOAEhkXXWOehQwSlj2HHc__wEJWteCJWtP1by0pjSJOi-xv-m8W1TFb28-u2JqTNQLWhEkAm1T1UFEG-a_LAwsf7d18KAuIcIx8kHBs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673874632/PQAAAPPYXBe-8XHfozi_nGOAEhkXXWOehQwSlj2HHc__wEJWteCJWtP1by0pjSJOi-xv-m8W1TFb28-u2JqTNQLWhEkAm1T1UFEG-a_LAwsf7d18KAuIcIx8kHBs_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@renatinhagta Sim ele usa este nome mas por tr\\u00E1s deste nominho e desta fotinha existe um homem, que quer comer as menininhas #Corram", "to_user": "renatinhagta", "to_user_id": 340657530, "to_user_id_str": "340657530", "to_user_name": "Renata", "in_reply_to_status_id": 148839432601092100, "in_reply_to_status_id_str": "148839432601092097"}, +{"created_at": "Mon, 19 Dec 2011 19:00:14 +0000", "from_user": "A7raREskan3ali", "from_user_id": 370566827, "from_user_id_str": "370566827", "from_user_name": "14feb-bh", "geo": null, "id": 148840077798277120, "id_str": "148840077798277122", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1684721242/_E2_80_A2_5D_CC_B6_CC_A0_CC_84_20_E2_99_A1_C3_9F_C3_BC_20_D0_BD_CF_85_D1_95_D1_95_C4_B1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684721242/_E2_80_A2_5D_CC_B6_CC_A0_CC_84_20_E2_99_A1_C3_9F_C3_BC_20_D0_BD_CF_85_D1_95_D1_95_C4_B1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @JalilaFreedom: Kindly sign the petition that will b sent to to #UN S. G regarding #bahrain #teachers http://t.co/4Ud0aj9Q #freeabudeeb #unions #UK #USA #EU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:14 +0000", "from_user": "neginoxol", "from_user_id": 433410245, "from_user_id_str": "433410245", "from_user_name": "Gillian Cosgriff", "geo": null, "id": 148840077349494800, "id_str": "148840077349494784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685150099/33_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685150099/33_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @luqesuraro: provincial loan http://t.co/JknHiSoD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:13 +0000", "from_user": "wardie7uk", "from_user_id": 334631914, "from_user_id_str": "334631914", "from_user_name": "Claire Ward", "geo": null, "id": 148840075462062080, "id_str": "148840075462062080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1648622269/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648622269/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Just had a king rib supper!! USA you are missing out!! http://t.co/nzS67s93", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:13 +0000", "from_user": "mojtma_politic", "from_user_id": 402446831, "from_user_id_str": "402446831", "from_user_name": "mojtma_politic", "geo": null, "id": 148840075231363070, "id_str": "148840075231363073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1620721493/mujtama_pol_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620721493/mujtama_pol_normal.png", "source": "<a href="http://ibraheiem.net/fr7" rel="nofollow">mojtma_politic</a>", "text": "U.S. foreign aid escapes slashing cuts in fiscal 2012 http://t.co/85PUAldK [reuters]", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:13 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148840074564472830, "id_str": "148840074564472833", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "USA COND\\u00D3N!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:13 +0000", "from_user": "yen4real", "from_user_id": 254800064, "from_user_id_str": "254800064", "from_user_name": "MadamYeni\\u2122", "geo": null, "id": 148840073629155330, "id_str": "148840073629155329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1593863316/IMG00149-20110828-1433_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593863316/IMG00149-20110828-1433_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Rome \"@TWEETORACLE: The HQ of the #PORN industry in USA is ________?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:13 +0000", "from_user": "emilianoJordan", "from_user_id": 102268827, "from_user_id_str": "102268827", "from_user_name": "Emiliano Jordan", "geo": null, "id": 148840072110817280, "id_str": "148840072110817280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1184511365/P3090090-150x150_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1184511365/P3090090-150x150_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @mathowie: @rapha_n_america \"made in USA\" isn't about quality, but supporting local infrastructure and economies, carbon footprints.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:12 +0000", "from_user": "CougarsandCo", "from_user_id": 111047042, "from_user_id_str": "111047042", "from_user_name": "Miss Cougar", "geo": null, "id": 148840070831550460, "id_str": "148840070831550464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1384683510/Netko035-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1384683510/Netko035-2_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "USA Today: The dating game changes after 40 http://t.co/NOL59qDU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:12 +0000", "from_user": "Bones0311", "from_user_id": 47461281, "from_user_id_str": "47461281", "from_user_name": "Chris Bodiford", "geo": null, "id": 148840070034624500, "id_str": "148840070034624513", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1498505478/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1498505478/image_normal.jpg", "source": "<a href="http://www.myyearbook.com/" rel="nofollow">myYearbook Share</a>", "text": "It seems like every time a big monster comes to the USA they go straight to NYC: http://t.co/d3JzQYOt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:12 +0000", "from_user": "DavidJVerdin", "from_user_id": 77125998, "from_user_id_str": "77125998", "from_user_name": "David Jimenez Verdin", "geo": +{"coordinates": [19.4391,-99.2012], "type": "Point"}, "id": 148840069841694720, "id_str": "148840069841694720", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685524632/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685524632/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@VictorOkie @jesus787 en USA soy 12 y aqu\\u00ED en M\\u00E9xico soy 10", "to_user": "VictorOkie", "to_user_id": 142569723, "to_user_id_str": "142569723", "to_user_name": "Victor Okie"}, +{"created_at": "Mon, 19 Dec 2011 19:00:12 +0000", "from_user": "databaselists", "from_user_id": 426061930, "from_user_id_str": "426061930", "from_user_name": "Databaseangel", "geo": null, "id": 148840068675670000, "id_str": "148840068675670016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691655129/logo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691655129/logo_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Database Angel proudly presents the most recent updated USA Business Database. \\t\\nhttp://t.co/E0G34i82", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:12 +0000", "from_user": "BIF_FAIRS", "from_user_id": 147552780, "from_user_id_str": "147552780", "from_user_name": "BIF FAIRS ", "geo": null, "id": 148840068453384200, "id_str": "148840068453384192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1599777786/Bif_TWITTER_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599777786/Bif_TWITTER_normal.jpg", "source": "<a href="http://www.bif-fairs.com" rel="nofollow">BIF FAIRS</a>", "text": "[NEW] #fairs Wilmington gun show USA Ohio - WILMINGTON from: 2012-08-11 to: 2012-08-12 http://t.co/l9p5hWUM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:12 +0000", "from_user": "newsrtus", "from_user_id": 286018686, "from_user_id_str": "286018686", "from_user_name": "newsrtus", "geo": null, "id": 148840068323352580, "id_str": "148840068323352576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Pick it up! http://t.co/yPFeCZGe #usa #usnews", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:11 +0000", "from_user": "LuiPtel", "from_user_id": 34455053, "from_user_id_str": "34455053", "from_user_name": "LuiPtel", "geo": null, "id": 148840067207659520, "id_str": "148840067207659520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701108492/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701108492/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I'm gonna move out of the USA! Shits cray out here!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:11 +0000", "from_user": "journalismjobs", "from_user_id": 3941241, "from_user_id_str": "3941241", "from_user_name": "Journalism.co.uk", "geo": null, "id": 148840066616274940, "id_str": "148840066616274946", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1158720507/twitter_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1158720507/twitter_avatar_normal.png", "source": "<a href="http://feedsquish.berlios.de/" rel="nofollow">FeedSquish</a>", "text": "[USA] Staff Writer http://t.co/JvRyPW6J #journalism #jobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:11 +0000", "from_user": "JUSTONEAMERICAN", "from_user_id": 38067927, "from_user_id_str": "38067927", "from_user_name": "ONEAMERICANLOOKING@U", "geo": null, "id": 148840065857097730, "id_str": "148840065857097728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1273593109/spiralwound_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273593109/spiralwound_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@markknoller Ahmed in Army USA http://t.co/2YpTUk87", "to_user": "markknoller", "to_user_id": 31127446, "to_user_id_str": "31127446", "to_user_name": "Mark Knoller", "in_reply_to_status_id": 148838834287812600, "in_reply_to_status_id_str": "148838834287812609"}, +{"created_at": "Mon, 19 Dec 2011 19:00:11 +0000", "from_user": "RadioFreiesD", "from_user_id": 19142432, "from_user_id_str": "19142432", "from_user_name": "GLR", "geo": null, "id": 148840064032587780, "id_str": "148840064032587777", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1385660366/rr_logo__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1385660366/rr_logo__normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Hartgeld (USA): [19:15] Ob die da oben damit ihrer Macht erhalten k\\u00F6nnen? Internierungslager werden vorbereitet http://t.co/5ewLG3Ts", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:10 +0000", "from_user": "BIF_FAIRS", "from_user_id": 147552780, "from_user_id_str": "147552780", "from_user_name": "BIF FAIRS ", "geo": null, "id": 148840062942056450, "id_str": "148840062942056448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1599777786/Bif_TWITTER_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599777786/Bif_TWITTER_normal.jpg", "source": "<a href="http://www.bif-fairs.com" rel="nofollow">BIF FAIRS</a>", "text": "[NEW] #fairs Wilmington gun show USA Ohio - WILMINGTON from: 2012-01-21 to: 2012-01-22 http://t.co/Zizyy7GG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:10 +0000", "from_user": "lauraurora", "from_user_id": 74755306, "from_user_id_str": "74755306", "from_user_name": "Laura Peticolas", "geo": null, "id": 148840060815548400, "id_str": "148840060815548416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1295259118/508664main_spicule-466_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1295259118/508664main_spicule-466_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@geosteph: New AA for NASA Science Mission Directorate- John Grunsfeld http://t.co/CXZ2hnih\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:10 +0000", "from_user": "VazNaty", "from_user_id": 440028152, "from_user_id_str": "440028152", "from_user_name": "Natalia Vaz", "geo": null, "id": 148840060530339840, "id_str": "148840060530339840", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702585281/vodkaaaa_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702585281/vodkaaaa_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Acho que meu nome deveria ser Havaianas, porque todo mundo usa.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:10 +0000", "from_user": "Nefer79_", "from_user_id": 403915800, "from_user_id_str": "403915800", "from_user_name": " C.M.", "geo": null, "id": 148840058970050560, "id_str": "148840058970050560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698759635/Foto0374__AA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698759635/Foto0374__AA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@tommy2chips In Italy it's 8pm now,6hrs forward to east coast of USA.", "to_user": "tommy2chips", "to_user_id": 273138776, "to_user_id_str": "273138776", "to_user_name": "Thomas M.Lee III", "in_reply_to_status_id": 148824030261153800, "in_reply_to_status_id_str": "148824030261153792"}, +{"created_at": "Mon, 19 Dec 2011 19:00:09 +0000", "from_user": "hutegewa", "from_user_id": 432102351, "from_user_id_str": "432102351", "from_user_name": "Dirk Hinstock", "geo": null, "id": 148840058647093250, "id_str": "148840058647093250", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683407499/15_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683407499/15_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @tyjadykupac: auto insurance white rock bc http://t.co/C60IUGxV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:09 +0000", "from_user": "BIF_FAIRS", "from_user_id": 147552780, "from_user_id_str": "147552780", "from_user_name": "BIF FAIRS ", "geo": null, "id": 148840057506246660, "id_str": "148840057506246656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1599777786/Bif_TWITTER_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599777786/Bif_TWITTER_normal.jpg", "source": "<a href="http://www.bif-fairs.com" rel="nofollow">BIF FAIRS</a>", "text": "[NEW] #fairs Roanoke gun show USA Virginia - ROANOKE from: 2012-10-27 to: 2012-10-28 http://t.co/ESLdaHNt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:09 +0000", "from_user": "bethmcmillen", "from_user_id": 22173446, "from_user_id_str": "22173446", "from_user_name": "Beth McMillen", "geo": null, "id": 148840057246195700, "id_str": "148840057246195712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1435700070/rendall_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1435700070/rendall_small_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @StateDept: #SecClinton delivers remarks on Women, Peace and Security at 2:30 PM EST today: http://t.co/UC8ntoKO | More: http://t.co/7R3W0rtE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:09 +0000", "from_user": "pedrovanzella", "from_user_id": 14456192, "from_user_id_str": "14456192", "from_user_name": "Pedro Vanzella", "geo": null, "id": 148840055979520000, "id_str": "148840055979520001", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693033123/cd68d86e266a11e1a87612313804ec91_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693033123/cd68d86e266a11e1a87612313804ec91_7_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@princessmiwi que bizarro. Aqui ele s\\u00F3 usa um monte de RAM, mas\\u2026 http://t.co/LezolOTA", "to_user": "princessmiwi", "to_user_id": 16988941, "to_user_id_str": "16988941", "to_user_name": "princessmiwi", "in_reply_to_status_id": 148839882582802430, "in_reply_to_status_id_str": "148839882582802432"}, +{"created_at": "Mon, 19 Dec 2011 19:00:08 +0000", "from_user": "_RGustavo", "from_user_id": 131874321, "from_user_id_str": "131874321", "from_user_name": "Rodolfo Gustavo ", "geo": null, "id": 148840053530042370, "id_str": "148840053530042368", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1676017863/.Avatar._normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676017863/.Avatar._normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@HospiciioLS vai se lasca de fazeer bg pq ele s\\u00F3 usa jaqueta preta e azul nos show '-'", "to_user": "HospiciioLS", "to_user_id": 129934483, "to_user_id_str": "129934483", "to_user_name": "\\u2665 Hospiciio LS \\u00AE", "in_reply_to_status_id": 148839667108814850, "in_reply_to_status_id_str": "148839667108814849"}, +{"created_at": "Mon, 19 Dec 2011 19:00:08 +0000", "from_user": "BIF_FAIRS", "from_user_id": 147552780, "from_user_id_str": "147552780", "from_user_name": "BIF FAIRS ", "geo": null, "id": 148840052221427700, "id_str": "148840052221427712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1599777786/Bif_TWITTER_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599777786/Bif_TWITTER_normal.jpg", "source": "<a href="http://www.bif-fairs.com" rel="nofollow">BIF FAIRS</a>", "text": "[NEW] #fairs Roanoke gun show USA Virginia - ROANOKE from: 2012-08-18 to: 2012-08-19 http://t.co/JMBHdqSP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:08 +0000", "from_user": "NYSaavyDiscount", "from_user_id": 405314534, "from_user_id_str": "405314534", "from_user_name": "NY Saavy Discounts", "geo": null, "id": 148840051026034700, "id_str": "148840051026034688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1623165302/4351973592_4e3a41abc8_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1623165302/4351973592_4e3a41abc8_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Price Shopping specials, Crazy Dining Deals, and new specials every day at over 70% off http://t.co/8o1P5jnT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:07 +0000", "from_user": "miihalana", "from_user_id": 165866984, "from_user_id_str": "165866984", "from_user_name": "\\u3164.\\u3164 \\u223F\\u3164mirthys\\u0251\\u0142\\u0251n\\u0251", "geo": null, "id": 148840049507704830, "id_str": "148840049507704833", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687531976/Foto-0282_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687531976/Foto-0282_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Me pergunte qualquer coisa. - \\u203A 1. Altura? \\u203A \\u203A 2. Peso? \\u203A 3. Voc\\u00EA fuma? 4. Voc\\u00EA bebe? 5. Usa/j\\u00E1 usou drogas?... http://t.co/PJoaFGoR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:07 +0000", "from_user": "Webconomist", "from_user_id": 2371401, "from_user_id_str": "2371401", "from_user_name": "Giles Crouch", "geo": null, "id": 148840049453170700, "id_str": "148840049453170688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1220106802/Screen_shot_2011-01-19_at_2.17.40_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1220106802/Screen_shot_2011-01-19_at_2.17.40_PM_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @usembassyottawa: #US & #Canada scientists explor #Arctic waters in extended continental shelf research partnership http://t.co/GeA9l7pX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:07 +0000", "from_user": "shop_bell", "from_user_id": 208111539, "from_user_id_str": "208111539", "from_user_name": "\\u30B7\\u30E7\\u30C3\\u30D7\\u30D9\\u30EB", "geo": null, "id": 148840048652070900, "id_str": "148840048652070913", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1461953481/bell_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1461953481/bell_normal.gif", "source": "<a href="http://www.shop-bell.com/" rel="nofollow">\\u30B7\\u30E7\\u30C3\\u30D7\\u30D9\\u30EB\\u66F4\\u65B0\\u60C5\\u5831</a>", "text": "\\u5168\\u5546\\u54C1\\uFF11\\uFF10%\\u5F15\\u304D\\u3001\\uFF19\\uFF18\\uFF10\\uFF10\\u5186\\u4EE5\\u4E0A\\u9001\\u6599\\u7121\\u6599\\u3002 e-\\u5922usa\\u3067\\u306F\\u30B8\\u30A7\\u30EB\\u30CD\\u30A4\\u30EB\\u3001\\u30DE\\u30CB\\u30AD\\u30E5\\u30A2\\u3001\\u30CD\\u30A4\\u30EB\\u30B1\\u30A2\\u306A\\u30699000\\u54C1\\u4EE5\\u4E0A\\u306E\\u5546\\u54C1\\u3092\\u53D6\\u308A\\u63C3\\u3048\\u3066\\u304A\\u308A\\u307E\\u3059\\u3002\\u4E16\\u754C\\uFF14\\uFF10\\u30F5\\u56FD\\u3067\\u8CA9\\u58F2\\u3057\\u3066\\u3044\\u308B\\u30A2\\u30E1\\u30EA\\u30AB\\u3067\\u65E5\\u7CFB\\u6700\\u5927\\u306E\\u30CD\\u30A4\\u30EB\\u901A\\u8CA9\\u30B7\\u30E7\\u30C3\\u30D7\\u3067\\u3059\\u3002\\u30B3\\u30B9\\u30E1\\u3001\\u30CD\\u30A4\\u30EB #\\u30CD\\u30A4\\u30EB http://t.co/EVq3zJRx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:07 +0000", "from_user": "MalikTravis", "from_user_id": 321553838, "from_user_id_str": "321553838", "from_user_name": "Sir.Travis", "geo": null, "id": 148840046521368580, "id_str": "148840046521368577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1656292959/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656292959/image_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @MacTrast: T-Mobile USA begins adding iPhone-ready 3G to their network, may be preparing to offer the iPhone http://t.co/hz227wBM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:06 +0000", "from_user": "BIF_FAIRS", "from_user_id": 147552780, "from_user_id_str": "147552780", "from_user_name": "BIF FAIRS ", "geo": null, "id": 148840046148059140, "id_str": "148840046148059136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1599777786/Bif_TWITTER_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599777786/Bif_TWITTER_normal.jpg", "source": "<a href="http://www.bif-fairs.com" rel="nofollow">BIF FAIRS</a>", "text": "[NEW] #fairs Roanoke gun show USA Virginia - ROANOKE from: 2012-03-17 to: 2012-03-18 http://t.co/D9kmkyhm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:06 +0000", "from_user": "bworley", "from_user_id": 14749486, "from_user_id_str": "14749486", "from_user_name": "becky worley", "geo": null, "id": 148840045846085630, "id_str": "148840045846085633", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1384999843/facebook_profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1384999843/facebook_profile_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @MacTrast: T-Mobile USA begins adding iPhone-ready 3G to their network, may be preparing to offer the iPhone http://t.co/hz227wBM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:06 +0000", "from_user": "OSScar", "from_user_id": 2215331, "from_user_id_str": "2215331", "from_user_name": "OSScar", "geo": null, "id": 148840044931723260, "id_str": "148840044931723264", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694742740/28100_392002547263_536837263_3754621_3360757_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694742740/28100_392002547263_536837263_3754621_3360757_n_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@AlexArrojo no tengo un ordenador cerca ahora, si compras en USA en shipment o al finalizar el proceso de compra", "to_user": "AlexArrojo", "to_user_id": 217071732, "to_user_id_str": "217071732", "to_user_name": "\\u00C1lex", "in_reply_to_status_id": 148839723136319500, "in_reply_to_status_id_str": "148839723136319489"}, +{"created_at": "Mon, 19 Dec 2011 19:00:06 +0000", "from_user": "BiaPollyane", "from_user_id": 246412476, "from_user_id_str": "246412476", "from_user_name": "Beatriz da Saay .", "geo": null, "id": 148840044495519740, "id_str": "148840044495519746", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1610652612/Foto-0032_e1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610652612/Foto-0032_e1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ESSESGAYS: \"como vc pode gostar de tatuagem e alargador? que coisa feia\" disse a pessoa que gosta de funk usa shortinho de 5cm e tem piercing no umbigo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:06 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148840043325300740, "id_str": "148840043325300736", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "BETO USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:06 +0000", "from_user": "adrrian17", "from_user_id": 153017897, "from_user_id_str": "153017897", "from_user_name": "Adrian Ayala", "geo": null, "id": 148840042998140930, "id_str": "148840042998140928", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1535263627/200212_10150165760310250_595460249_8653645_5104196_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1535263627/200212_10150165760310250_595460249_8653645_5104196_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:05 +0000", "from_user": "BihSerapicos", "from_user_id": 131086935, "from_user_id_str": "131086935", "from_user_name": "Gabriela Serapicos ", "geo": null, "id": 148840041265889280, "id_str": "148840041265889281", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1646167267/226327_1636936657000_1644243134_1197038_6198307_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646167267/226327_1636936657000_1644243134_1197038_6198307_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Depois que vc usa o Ipad para jogos, o seu Iphone vira um mini-game. FATO!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:05 +0000", "from_user": "BIF_FAIRS", "from_user_id": 147552780, "from_user_id_str": "147552780", "from_user_name": "BIF FAIRS ", "geo": null, "id": 148840040703852540, "id_str": "148840040703852544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1599777786/Bif_TWITTER_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599777786/Bif_TWITTER_normal.jpg", "source": "<a href="http://www.bif-fairs.com" rel="nofollow">BIF FAIRS</a>", "text": "[NEW] #fairs Roanoke gun show USA Virginia - ROANOKE from: 2011-12-31 to: 2012-01-01 http://t.co/nKiDICUE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:05 +0000", "from_user": "SarahsRealLife", "from_user_id": 218632015, "from_user_id_str": "218632015", "from_user_name": "Sarah Chapman", "geo": null, "id": 148840040510926850, "id_str": "148840040510926849", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1647266470/SarahsRealLife_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647266470/SarahsRealLife_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MoonLV: Witness unparalleled views of the #NYE2012 fireworks w/ Miss Nevada USA @SarahsRealLife at @ghostbarLV 12/31 http://t.co/K6SWsA1E", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:05 +0000", "from_user": "latoniaidsvilla", "from_user_id": 305842659, "from_user_id_str": "305842659", "from_user_name": "Latonia Villanueva", "geo": null, "id": 148840039189708800, "id_str": "148840039189708800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695225341/imagesCA53E30D_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695225341/imagesCA53E30D_normal", "source": "<a href="http://aircompressorpaintball.com" rel="nofollow">aircompressorpaintballdotcom</a>", "text": "What Is The Best Price For Ironman G-Ironman Reflective Vest (Neon Yellow) Wholesale USA http://t.co/ZL2E7rwZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:04 +0000", "from_user": "AgeoUfe", "from_user_id": 441069431, "from_user_id_str": "441069431", "from_user_name": "juanka rosales ", "geo": null, "id": 148840036614414340, "id_str": "148840036614414336", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702578071/310521_10150513025818504_624973503_11667654_1509042212_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702578071/310521_10150513025818504_624973503_11667654_1509042212_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "como se usa esto? *O*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:04 +0000", "from_user": "napaulacrl", "from_user_id": 245453523, "from_user_id_str": "245453523", "from_user_name": "a napaula", "geo": null, "id": 148840036513759230, "id_str": "148840036513759232", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702321450/PQAAAG1Apmva53JWQilO_SeIc8ZpAFaxCr21m7Fd7AdcJAwwualsemr2XxsEy4JIxdpy3aDClZE15VX03JBhS-5V3nIAm1T1UKTQanIC4n2baJA0l6VRxNFC-KF-_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702321450/PQAAAG1Apmva53JWQilO_SeIc8ZpAFaxCr21m7Fd7AdcJAwwualsemr2XxsEy4JIxdpy3aDClZE15VX03JBhS-5V3nIAm1T1UKTQanIC4n2baJA0l6VRxNFC-KF-_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "A\\u00ED voc\\u00EA usa uma folha como mouse pad", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:04 +0000", "from_user": "MyGorgeousSwift", "from_user_id": 191472665, "from_user_id_str": "191472665", "from_user_name": "Taylor Owns My Heart", "geo": null, "id": 148840036434059260, "id_str": "148840036434059264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700794236/2C1htglV_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700794236/2C1htglV_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Swiftlogy: #Swiftlogy Taylor finished Speak Now tour in the USA with two sold out concerts at Madison Square Garden!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:04 +0000", "from_user": "sukywanunid", "from_user_id": 434293988, "from_user_id_str": "434293988", "from_user_name": "Luwanna Hamblin", "geo": null, "id": 148840035804917760, "id_str": "148840035804917760", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687391268/240_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687391268/240_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "florida payday loan consolidation lender http://t.co/eEkCsPUH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:04 +0000", "from_user": "SaahFG", "from_user_id": 263784947, "from_user_id_str": "263784947", "from_user_name": "Sabrina Fernandes ", "geo": null, "id": 148840035611983870, "id_str": "148840035611983874", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1610828761/27-10-11_123455_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610828761/27-10-11_123455_normal.jpg", "source": "<a href="http://formspring.me" rel="nofollow">formspring.me</a>", "text": "Read my response to \"Usa muito \\u00F3culos de sol ?\": http://t.co/b8Oreifn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:04 +0000", "from_user": "BIF_FAIRS", "from_user_id": 147552780, "from_user_id_str": "147552780", "from_user_name": "BIF FAIRS ", "geo": null, "id": 148840035196731400, "id_str": "148840035196731392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1599777786/Bif_TWITTER_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599777786/Bif_TWITTER_normal.jpg", "source": "<a href="http://www.bif-fairs.com" rel="nofollow">BIF FAIRS</a>", "text": "[NEW] #fairs THE ERIE GUN SHOW USA Pennsylvania - ERIE from: 2012-12-29 to: 2012-12-30 http://t.co/nHo9cHp0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:04 +0000", "from_user": "garukys", "from_user_id": 434269635, "from_user_id_str": "434269635", "from_user_name": "Yerushalayim Blease", "geo": null, "id": 148840034706001920, "id_str": "148840034706001921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687472497/1692_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687472497/1692_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "no credit financing http://t.co/WXgwinQQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:04 +0000", "from_user": "DeniseDavenpor1", "from_user_id": 359918883, "from_user_id_str": "359918883", "from_user_name": "DeniseDavenport", "geo": null, "id": 148840033795842050, "id_str": "148840033795842049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1508026934/195731_114250430692_6478727_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1508026934/195731_114250430692_6478727_n_normal.jpg", "source": "<a href="http://www.instacheckin.com" rel="nofollow">Instacheckin</a>", "text": "Despite Southwest blizzard, hope of white Christmas fades for much of US - Christian Science Monitor http://t.co/C6dtvyL0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:03 +0000", "from_user": "Alberto_Dalia", "from_user_id": 96228401, "from_user_id_str": "96228401", "from_user_name": "Alberto Dalia", "geo": null, "id": 148840030771740670, "id_str": "148840030771740672", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702238341/ddd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702238341/ddd_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u00BFHablando serio? usa mi dedo para tu satisfacci\\u00F3n personal y espiritual.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:03 +0000", "from_user": "FansMessiAguero", "from_user_id": 414966762, "from_user_id_str": "414966762", "from_user_name": "Lionel y Sergio \\u2661", "geo": null, "id": 148840029698015230, "id_str": "148840029698015233", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700417548/tumblr_luerc0pRvh1qcbx26o4_250_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700417548/tumblr_luerc0pRvh1qcbx26o4_250_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Bueno, no se como se usa la Twitcam!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:02 +0000", "from_user": "Renego_Jobs_US", "from_user_id": 164762924, "from_user_id_str": "164762924", "from_user_name": "Renego USA", "geo": null, "id": 148840029123383300, "id_str": "148840029123383297", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1069737667/renego_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1069737667/renego_twitter_normal.png", "source": "<a href="http://jobs.renego.com" rel="nofollow">jobs.renego.com API</a>", "text": "#jobs #careers #Franklin Software Engineer 2 (USA) http://t.co/0gl14e5i", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:02 +0000", "from_user": "LestatVI", "from_user_id": 368025493, "from_user_id_str": "368025493", "from_user_name": "David", "geo": null, "id": 148840028041248770, "id_str": "148840028041248769", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1528924918/AIOROS_1.1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1528924918/AIOROS_1.1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ESTEFANIESPIN si solo fuese ese pensamiento seria bueno, lo malo es q la gente q usa armas, no piensa asi matan con ellas y no les interesa", "to_user": "ESTEFANIESPIN", "to_user_id": 128937967, "to_user_id_str": "128937967", "to_user_name": "Est\\u00E9fani Esp\\u00EDn ", "in_reply_to_status_id": 148729051526344700, "in_reply_to_status_id_str": "148729051526344704"}, +{"created_at": "Mon, 19 Dec 2011 19:00:02 +0000", "from_user": "the_cee_tee", "from_user_id": 82449933, "from_user_id_str": "82449933", "from_user_name": "Chris Thomas", "geo": null, "id": 148840027617640450, "id_str": "148840027617640448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/471129003/iphone_083-1_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/471129003/iphone_083-1_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@AVogel75 We're not the ones that thought Lil Kim was dead. #USA #Aimhigh", "to_user": "AVogel75", "to_user_id": 14895579, "to_user_id_str": "14895579", "to_user_name": "AVogel75", "in_reply_to_status_id": 148838889426128900, "in_reply_to_status_id_str": "148838889426128896"}, +{"created_at": "Mon, 19 Dec 2011 19:00:02 +0000", "from_user": "Yeah_Matea_Club", "from_user_id": 243311351, "from_user_id_str": "243311351", "from_user_name": "Fans D Pepe Aguilar ", "geo": null, "id": 148840025700843520, "id_str": "148840025700843520", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1531886712/0eeac0f6-96aa-4675-9d46-e7c8a9ff1a4c_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1531886712/0eeac0f6-96aa-4675-9d46-e7c8a9ff1a4c_normal.png", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @corazondefan: Participa con nosotros y dinos cu\\u00E1l ha sido tu mejor navidad usa HT #mimejornavidad", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:00 +0000", "from_user": "newsrtus", "from_user_id": 286018686, "from_user_id_str": "286018686", "from_user_name": "newsrtus", "geo": null, "id": 148840020814467070, "id_str": "148840020814467073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Iraq Seeks Arrest of Sunni Vice President for Terrorism http://t.co/kU4qtEaw #usa #usnews", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:00 +0000", "from_user": "iHeartBiebs_xx", "from_user_id": 256207494, "from_user_id_str": "256207494", "from_user_name": "Essie\\u2665", "geo": null, "id": 148840019635879940, "id_str": "148840019635879937", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1660756454/379355914_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660756454/379355914_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "EVERYONE needs to vote for @ItsMelanieAmaro in the X Factor USA Finals this week! She needs us! #TeamAmaro <3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:00 +0000", "from_user": "xclairesunshine", "from_user_id": 235156504, "from_user_id_str": "235156504", "from_user_name": "merry christmas. \\u03DF", "geo": null, "id": 148840019489075200, "id_str": "148840019489075200", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691638018/niall_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691638018/niall_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/5pEvhZrI ma come minchia si usa?\\u00B0-\\u00B0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:00 +0000", "from_user": "gabizagoo", "from_user_id": 239582041, "from_user_id_str": "239582041", "from_user_name": "20PEG4R", "geo": null, "id": 148840018247565300, "id_str": "148840018247565312", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1504106347/PQAAAIQWPxkl7gpB003p_0z2n-rmm99Srq9sD0OYrA482Bzehi--FYXIqbwljefd9potxZ38skYFx0P4dIiGDWJ8KAMAm1T1UFfa_I8be78M7bSMdCgjP3LUvI-E_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1504106347/PQAAAIQWPxkl7gpB003p_0z2n-rmm99Srq9sD0OYrA482Bzehi--FYXIqbwljefd9potxZ38skYFx0P4dIiGDWJ8KAMAm1T1UFfa_I8be78M7bSMdCgjP3LUvI-E_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@FuuckYourLife_ qe programa vc usa pra editar suas foootos hein melhooor ?", "to_user": "FuuckYourLife_", "to_user_id": 100766002, "to_user_id_str": "100766002", "to_user_name": "I'm boring \\u2620"}, +{"created_at": "Mon, 19 Dec 2011 19:00:00 +0000", "from_user": "Yonopienso_", "from_user_id": 301221138, "from_user_id_str": "301221138", "from_user_name": "L\\u043E\\u0433\\u0435l\\u03B9s S\\u0430lc\\u0435do \\u2714", "geo": null, "id": 148840018000089100, "id_str": "148840018000089088", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688239191/378538_2044217484344_1811584630_1319222_574456906_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688239191/378538_2044217484344_1811584630_1319222_574456906_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "IVAN USA CONDON", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:59 +0000", "from_user": "EliannaMichaela", "from_user_id": 215875795, "from_user_id_str": "215875795", "from_user_name": "Elianna\\u05D0\\u05B6\\u05DC\\u05B4\\u05D9\\u05E2\\u05B7\\u05E0\\u05B8\\u05D4", "geo": null, "id": 148840015512875000, "id_str": "148840015512875008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681840283/Snapshot_20111201_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681840283/Snapshot_20111201_1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Previs: Killed Osama, Ended war in Iraq, Passed comprehensive health care, Ended Don't Ask Don't tell, Saved USA Auto Industry #WhatObamaHasDone", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:58 +0000", "from_user": "liinka_02", "from_user_id": 222921826, "from_user_id_str": "222921826", "from_user_name": "Lika Dingobel :3", "geo": null, "id": 148840011196928000, "id_str": "148840011196928001", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687326471/ultimatentativa_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687326471/ultimatentativa_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "@S0U1C4F3T40 @1P3QU3N4V4D14 @S0UMuka @S0U1DAN0NINH0 @Sou1ExFreira @S0N40M0RD3 se vc ta falando tb usa n\\u00E9, putinha caseira :3", "to_user": "S0U1C4F3T40", "to_user_id": 271937266, "to_user_id_str": "271937266", "to_user_name": "S3U C4F3T40 \\u263B", "in_reply_to_status_id": 148839839641501700, "in_reply_to_status_id_str": "148839839641501696"}, +{"created_at": "Mon, 19 Dec 2011 18:59:57 +0000", "from_user": "damorelaw", "from_user_id": 22537898, "from_user_id_str": "22537898", "from_user_name": "Tom D'Amore", "geo": null, "id": 148840008512573440, "id_str": "148840008512573440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1362614926/D_Amore_Tom_2010_Photo_00_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1362614926/D_Amore_Tom_2010_Photo_00_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @OnSafety: Gel fuel, firepot rulemaking begins. Rulemaking will address flash fire and burn hazards. http://t.co/dwFhkMrY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:57 +0000", "from_user": "AMAselfmadeBOSS", "from_user_id": 246018931, "from_user_id_str": "246018931", "from_user_name": "selfmade-selfpaid", "geo": null, "id": 148840008416112640, "id_str": "148840008416112640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702619268/IMG-20111218-00341_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702619268/IMG-20111218-00341_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Mushin\"@TWEETORACLE: The HQ of the #PORN industry in USA is ________?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:57 +0000", "from_user": "desarrumada", "from_user_id": 98949242, "from_user_id_str": "98949242", "from_user_name": "julia do gabo e vc?", "geo": null, "id": 148840008369975300, "id_str": "148840008369975297", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702555395/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702555395/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "vc que usa brincos de argola::: para", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:57 +0000", "from_user": "laudamus2004", "from_user_id": 397593012, "from_user_id_str": "397593012", "from_user_name": "Daniel", "geo": null, "id": 148840007329783800, "id_str": "148840007329783808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1605131046/_________________________02_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1605131046/_________________________02_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@cubadebate #U.S. leaves #Iraq but leaves thousands of mercenaries deployed http://t.co/yMt0Nh28 #USA #Obama", "to_user": "cubadebate", "to_user_id": 35726000, "to_user_id_str": "35726000", "to_user_name": "Cubadebate", "in_reply_to_status_id": 148826625566453760, "in_reply_to_status_id_str": "148826625566453760"}, +{"created_at": "Mon, 19 Dec 2011 18:59:57 +0000", "from_user": "LoseBodyFat_1", "from_user_id": 433778265, "from_user_id_str": "433778265", "from_user_name": "Maria Campbell", "geo": null, "id": 148840007111680000, "id_str": "148840007111680000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693960127/maria4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693960127/maria4_normal.jpg", "source": "<a href="http://howtolosebodyfatx.com" rel="nofollow">How To Lose Body Fat 1</a>", "text": "Diet Doc HCG Diet & Weight Loss - The Lowest Priced Medically, Superv http://t.co/RegQMw8u #diet #weightloss #losefat", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:57 +0000", "from_user": "karenruthw", "from_user_id": 23187746, "from_user_id_str": "23187746", "from_user_name": "Karen Wallace", "geo": null, "id": 148840005182300160, "id_str": "148840005182300160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/130305648/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/130305648/twitter_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@spywall has landed in the USA! Yipee!", "to_user": "spywall", "to_user_id": 22969596, "to_user_id_str": "22969596", "to_user_name": "Spyder Wallace"}, +{"created_at": "Mon, 19 Dec 2011 18:59:56 +0000", "from_user": "raphacassiolato", "from_user_id": 58722529, "from_user_id_str": "58722529", "from_user_name": "Raphael Cassiolato", "geo": null, "id": 148840003127095300, "id_str": "148840003127095296", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691695156/sa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691695156/sa_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ValeriaBandida: Usa suti\\u00E3 de enchimento e depois diz que odeia falsidade.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:56 +0000", "from_user": "KikeSantana", "from_user_id": 31490056, "from_user_id_str": "31490056", "from_user_name": "LUIS ENRIQUE SANTANA", "geo": null, "id": 148840002590228480, "id_str": "148840002590228481", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696975603/KikeSantana_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696975603/KikeSantana_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @coxsbound: 1% + rico de USA acapara 40% del ingreso... en apogeo romano top 1% de ingreso ten\\u00EDa 16% de la torta : http://t.co/vQhmQJi1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:56 +0000", "from_user": "mpga76", "from_user_id": 222204732, "from_user_id_str": "222204732", "from_user_name": "Manuel Gonzalez A.", "geo": null, "id": 148840001914941440, "id_str": "148840001914941441", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1650997113/110479_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650997113/110479_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "En Noruega el costo de vida es 90% m\\u00E1s alto que en los USA. Su \\u00EDndice de desarrollo humano es el m\\u00E1s alto del mundo.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:55 +0000", "from_user": "AcaoPolicial", "from_user_id": 101496213, "from_user_id_str": "101496213", "from_user_name": "Homem de DEUS", "geo": null, "id": 148839999280918530, "id_str": "148839999280918528", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534528829/anigiffff_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534528829/anigiffff_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "@RubensLemos Imuran 50 mg \\u00F1 vende em farm\\u00E1cia mas o governo do estado d\\u00E1 pela Unicat, minha filha tb usa esse medicamento #FALTANDO socorro", "to_user": "RubensLemos", "to_user_id": 56252954, "to_user_id_str": "56252954", "to_user_name": "Rubens Lemos", "in_reply_to_status_id": 147655664284602370, "in_reply_to_status_id_str": "147655664284602368"}, +{"created_at": "Mon, 19 Dec 2011 18:59:54 +0000", "from_user": "rybisijo", "from_user_id": 433330877, "from_user_id_str": "433330877", "from_user_name": "Ruwaydah Larrie", "geo": null, "id": 148839995644456960, "id_str": "148839995644456960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1684977557/205_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684977557/205_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @revykali: short term loans with bad credit http://t.co/czh74nwW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:54 +0000", "from_user": "hodiwaluk", "from_user_id": 434415228, "from_user_id_str": "434415228", "from_user_name": "Kaleho Filipychev", "geo": null, "id": 148839995409575940, "id_str": "148839995409575936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687879530/795_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687879530/795_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @mojypukagox: payday loans for unemployed only http://t.co/z4iMi6g5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:54 +0000", "from_user": "jamjoom44", "from_user_id": 305530741, "from_user_id_str": "305530741", "from_user_name": "\\u0633\\u0627\\u0631\\u0642 \\u0627\\u0644\\u0644\\u064A\\u0644", "geo": null, "id": 148839994985947140, "id_str": "148839994985947136", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1431189380/IMG00134-20110707-1640_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1431189380/IMG00134-20110707-1640_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/AY407wqe \\u0633\\u0644\\u0633\\u0644\\u0629 \\u0628\\u0634\\u0631\\u064A\\u0629 \\u062A\\u062A\\u0644\\u0623\\u0626\\u0644\\u0626 \\u0641\\u064A\\u064A\\u0647\\u0627 \\u0634\\u0645\\u0648\\u0639 \\u0627\\u0644\\u0634\\u0647\\u062F\\u0627\\u0621 #bahrain #ksa #usa #iraq #yemen #iran #kuwait #qatar", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:53 +0000", "from_user": "Jacques_Antoine", "from_user_id": 336802356, "from_user_id_str": "336802356", "from_user_name": "Jacques Antoine", "geo": null, "id": 148839989504000000, "id_str": "148839989504000000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1619557709/Self_pic_2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619557709/Self_pic_2_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "But that's the 3rd worst DMV in the continental USA. @tamakishii", "to_user": "tamakishii", "to_user_id": 37855774, "to_user_id_str": "37855774", "to_user_name": "Tamaki S. Ishii", "in_reply_to_status_id": 148834815838396400, "in_reply_to_status_id_str": "148834815838396416"}, +{"created_at": "Mon, 19 Dec 2011 18:59:52 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148839985213218800, "id_str": "148839985213218818", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "MIGUEL USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:51 +0000", "from_user": "nikilugo", "from_user_id": 67708243, "from_user_id_str": "67708243", "from_user_name": "NIDIA LUGO", "geo": null, "id": 148839981547393020, "id_str": "148839981547393024", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1650241750/IMG00936-20110730-1433_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650241750/IMG00936-20110730-1433_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "#Hace10A\\u00F1os que cambi\\u00F2 todo en USA despu\\u00E9s del 9/11 -.-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:50 +0000", "from_user": "famamacapa", "from_user_id": 314092528, "from_user_id_str": "314092528", "from_user_name": "FAMA Macap\\u00E1", "geo": null, "id": 148839979139866620, "id_str": "148839979139866624", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1650929637/fama_avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650929637/fama_avatar_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Movido \\u00E0 laranja: voc\\u00EA toma seu suco e usa a casca para abastecer seu carro\\nhttp://t.co/M5ahNy5T", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:50 +0000", "from_user": "maza_swift", "from_user_id": 164816794, "from_user_id_str": "164816794", "from_user_name": "cristina mazariegos", "geo": null, "id": 148839976119963650, "id_str": "148839976119963648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1672665295/maza_swift_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672665295/maza_swift_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Swiftlogy: #Swiftlogy Taylor finished Speak Now tour in the USA with two sold out concerts at Madison Square Garden!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:49 +0000", "from_user": "Flaganatas", "from_user_id": 183272752, "from_user_id_str": "183272752", "from_user_name": "G", "geo": null, "id": 148839971200049150, "id_str": "148839971200049152", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1552102350/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552102350/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jfktruther: Ron Paul winning in Iowa: http://t.co/0uFQSk2C #RonPaul2012 #tcot #RonPaul #tpot #tlot", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:48 +0000", "from_user": "paulettemejiam", "from_user_id": 134572766, "from_user_id_str": "134572766", "from_user_name": "pollo a la wasakaka ", "geo": null, "id": 148839970239557630, "id_str": "148839970239557632", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700842291/lolo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700842291/lolo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "pue si la gente como yo que usa pagina pa ma follower /o/", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:46 +0000", "from_user": "maysousabrito", "from_user_id": 270486704, "from_user_id_str": "270486704", "from_user_name": "Mayara", "geo": null, "id": 148839960642977800, "id_str": "148839960642977794", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1585477028/1234_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585477028/1234_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@babyrogerbrasil rsrsr e como usa! beij\\u00E3oo", "to_user": "babyrogerbrasil", "to_user_id": 117525752, "to_user_id_str": "117525752", "to_user_name": "Baby Roger", "in_reply_to_status_id": 148837070293569540, "in_reply_to_status_id_str": "148837070293569536"}, +{"created_at": "Mon, 19 Dec 2011 18:59:46 +0000", "from_user": "_Adicta", "from_user_id": 123965194, "from_user_id_str": "123965194", "from_user_name": "La que hace spam.", "geo": null, "id": 148839958361276400, "id_str": "148839958361276416", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "ME CAMBIARE EL USER A USA COND\\u00D3N. JIJIJIJIJIJ OK NO.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:45 +0000", "from_user": "_LeticiaE", "from_user_id": 246373603, "from_user_id_str": "246373603", "from_user_name": "~sou 1 \\u03B1njinho~ ", "geo": null, "id": 148839957602115600, "id_str": "148839957602115584", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693010242/gisf_fotos_002_reasonably_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693010242/gisf_fotos_002_reasonably_small_normal.jpg", "source": "<a href="http://formspring.me" rel="nofollow">formspring.me</a>", "text": "Read my response to \"Usa \\u00F3culos? Quantos graus? @_luccs\": http://t.co/GzIFMRHE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:45 +0000", "from_user": "ronkizzle93", "from_user_id": 356386640, "from_user_id_str": "356386640", "from_user_name": "aBiSoLa MaKaNjU", "geo": null, "id": 148839957480484860, "id_str": "148839957480484865", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699202267/ronke_20makanjuyureip_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699202267/ronke_20makanjuyureip_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Yinka \\u00ED\\u06AA Alaba in USA?choi \"@YinkaRudBoi: ALABA MARKET RT @TWEETORACLE: The HQ of the #PORN industry in USA is ________?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:43 +0000", "from_user": "pujebakoq", "from_user_id": 419543717, "from_user_id_str": "419543717", "from_user_name": "Iakona Kissick", "geo": null, "id": 148839946206183420, "id_str": "148839946206183425", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1657569524/27_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657569524/27_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @vygarugyq: auto insurance value stated http://t.co/FPBidrQg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:42 +0000", "from_user": "bea_hp", "from_user_id": 228926907, "from_user_id_str": "228926907", "from_user_name": "hp \\u00F1 de harry potter", "geo": null, "id": 148839943270187000, "id_str": "148839943270187008", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1626402987/IMG00004__2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626402987/IMG00004__2__normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Photo: Quando precisei de um lugar para pendurar meu cora\\u00E7\\u00E3o, voc\\u00EA estava l\\u00E1 para us\\u00E1-lo desde o in\\u00EDcioe com... http://t.co/n9J8nRii", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:42 +0000", "from_user": "wugelak", "from_user_id": 420084352, "from_user_id_str": "420084352", "from_user_name": "Myria Gowthorpe", "geo": null, "id": 148839943127564300, "id_str": "148839943127564289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1657184402/25_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657184402/25_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @gorujoq: insurance ratings of cars http://t.co/TkVpOwfS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:42 +0000", "from_user": "naahdacruz", "from_user_id": 184643692, "from_user_id_str": "184643692", "from_user_name": "*aos olhos do PAI", "geo": null, "id": 148839942838173700, "id_str": "148839942838173696", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698331180/fkrigjgk_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698331180/fkrigjgk_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "na minha prima \\u00E9 assim 8479302 pessoas fikaam querendo mexer no pc daai justo eu que ja tenhu em ksa sou a que menos usa :/", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:42 +0000", "from_user": "Cfaye_xo", "from_user_id": 380991426, "from_user_id_str": "380991426", "from_user_name": "\\u2661Cfaye", "geo": null, "id": 148839942812995600, "id_str": "148839942812995584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1641645902/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641645902/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @CanadianProbz: we can't help that our healthcare is so much better thank yours, suck on that usa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:42 +0000", "from_user": "mari_andreis", "from_user_id": 229575486, "from_user_id_str": "229575486", "from_user_name": "Mariana Andreis", "geo": null, "id": 148839942112546800, "id_str": "148839942112546816", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1679308031/RSCN8170_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679308031/RSCN8170_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "BrazilNeedsUpAllNightTour quanto mais gente usa, parece que mais desce.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:41 +0000", "from_user": "GLAmorEterno_PB", "from_user_id": 383715855, "from_user_id_str": "383715855", "from_user_name": "Te_Amo_Meu_Guh", "geo": null, "id": 148839940543885300, "id_str": "148839940543885312", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699820108/Gl_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699820108/Gl_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Pra falarem que o guh mudou temos que olhar pra gente tambem:ninguem mais usa as tags #familiaGL mudou muito!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:41 +0000", "from_user": "Hardeyley", "from_user_id": 150845566, "from_user_id_str": "150845566", "from_user_name": "Holluwarsheyi Adele", "geo": null, "id": 148839939285590000, "id_str": "148839939285590016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1472623024/Seyi_10_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1472623024/Seyi_10_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "California RT \"@TWEETORACLE: The HQ of the #PORN industry in USA is ________?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:59:42 +0000", "from_user": "mari_andreis", "from_user_id": 229575486, "from_user_id_str": "229575486", "from_user_name": "Mariana Andreis", "geo": null, "id": 148839942112546800, "id_str": "148839942112546816", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1679308031/RSCN8170_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679308031/RSCN8170_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "BrazilNeedsUpAllNightTour quanto mais gente usa, parece que mais desce.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:41 +0000", "from_user": "GLAmorEterno_PB", "from_user_id": 383715855, "from_user_id_str": "383715855", "from_user_name": "Te_Amo_Meu_Guh", "geo": null, "id": 148839940543885300, "id_str": "148839940543885312", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699820108/Gl_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699820108/Gl_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Pra falarem que o guh mudou temos que olhar pra gente tambem:ninguem mais usa as tags #familiaGL mudou muito!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:41 +0000", "from_user": "Hardeyley", "from_user_id": 150845566, "from_user_id_str": "150845566", "from_user_name": "Holluwarsheyi Adele", "geo": null, "id": 148839939285590000, "id_str": "148839939285590016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1472623024/Seyi_10_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1472623024/Seyi_10_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "California RT \"@TWEETORACLE: The HQ of the #PORN industry in USA is ________?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:40 +0000", "from_user": "mickeyhowell", "from_user_id": 325924202, "from_user_id_str": "325924202", "from_user_name": "Mickey Howell", "geo": null, "id": 148839936978731000, "id_str": "148839936978731008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1637431408/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637431408/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@WillDibble ya damn right! Did you hear about Korea building a model of the twin towers being blown up?! North Korea can burn in hell! USA", "to_user": "WillDibble", "to_user_id": 347021987, "to_user_id_str": "347021987", "to_user_name": "Will Sumwalt"}, +{"created_at": "Mon, 19 Dec 2011 18:59:40 +0000", "from_user": "kehozocedyk", "from_user_id": 433420173, "from_user_id_str": "433420173", "from_user_name": "Maximilien Donnel", "geo": null, "id": 148839936597045250, "id_str": "148839936597045248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685243591/22_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685243591/22_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @rigetuxu: car insurance dayton ohio http://t.co/XTp9kQyV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:39 +0000", "from_user": "JUSTONEAMERICAN", "from_user_id": 38067927, "from_user_id_str": "38067927", "from_user_name": "ONEAMERICANLOOKING@U", "geo": null, "id": 148839932591484930, "id_str": "148839932591484928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1273593109/spiralwound_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273593109/spiralwound_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@StateDept Ahmed in Army USA http://t.co/2YpTUk87", "to_user": "StateDept", "to_user_id": 9624742, "to_user_id_str": "9624742", "to_user_name": "StateDept", "in_reply_to_status_id": 148839288002449400, "in_reply_to_status_id_str": "148839288002449408"}, +{"created_at": "Mon, 19 Dec 2011 18:59:39 +0000", "from_user": "eitormarx", "from_user_id": 77589971, "from_user_id_str": "77589971", "from_user_name": "Eitor Robson Marques", "geo": null, "id": 148839931626786800, "id_str": "148839931626786817", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/882704042/eitormarx_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/882704042/eitormarx_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Formatacao concluida! Agr instalacao e configuracao do windows e esta pronto pra usa e instala os drives! =)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:39 +0000", "from_user": "fogoxafix", "from_user_id": 419407418, "from_user_id_str": "419407418", "from_user_name": "Niram Colten", "geo": null, "id": 148839928942436350, "id_str": "148839928942436352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1658723113/28_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658723113/28_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @cewibaty: car insurance premiums in bc http://t.co/ocBJQTQl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:38 +0000", "from_user": "iloveeLeoHoward", "from_user_id": 334913371, "from_user_id_str": "334913371", "from_user_name": "leo biggest fan", "geo": null, "id": 148839928397185020, "id_str": "148839928397185025", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1493892717/aww_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1493892717/aww_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@LeoHowardPhoto I live on USA but I know Spanish because my mom is from Peru ...!!!", "to_user": "LeoHowardPhoto", "to_user_id": 416531125, "to_user_id_str": "416531125", "to_user_name": "LeoHowardPhoto", "in_reply_to_status_id": 143693075963850750, "in_reply_to_status_id_str": "143693075963850752"}, +{"created_at": "Mon, 19 Dec 2011 18:59:38 +0000", "from_user": "pocho_p", "from_user_id": 68321296, "from_user_id_str": "68321296", "from_user_name": "Aldo Pennacchiotti \\uF8FF", "geo": null, "id": 148839926362935300, "id_str": "148839926362935298", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699451378/salvador-dali-h7syns7i-191796-500-661_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699451378/salvador-dali-h7syns7i-191796-500-661_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Quiero mandarle un saludo cari\\u00F1oso al flaco que invent\\u00F3 la guayabera para re\\u00EDrnos de qui\\u00E9n la usa.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:38 +0000", "from_user": "NoSwagx", "from_user_id": 330330727, "from_user_id_str": "330330727", "from_user_name": "Sabina Paquier", "geo": null, "id": 148839925335339000, "id_str": "148839925335339008", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1684759787/393612_2797043644071_1197883115_33173937_657596423_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684759787/393612_2797043644071_1197883115_33173937_657596423_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @ANABRICOT: USA: Chris Brown, Justin Bieber, Lady Gaga, Usher, Rihanna,.. France: Colonel Reyel, Zaz, Christophe Willem, Gr\\u00E9goire,.. Qui veut d\\u00E9m\\u00E9nager?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:37 +0000", "from_user": "Tetheusjoga10", "from_user_id": 294280480, "from_user_id_str": "294280480", "from_user_name": "MatheusFernandes", "geo": null, "id": 148839922474811400, "id_str": "148839922474811393", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1644166313/foto0089_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644166313/foto0089_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@italozinho tem um tio de um colega meu que viajou para USA e trouxe uns iphone4 pra vender, falei ontem com ele, o boe \\u00E9 da igreja!", "to_user": "italozinho", "to_user_id": 55283547, "to_user_id_str": "55283547", "to_user_name": "\\u00CDtalo Fernandes", "in_reply_to_status_id": 148838335769616400, "in_reply_to_status_id_str": "148838335769616384"}, +{"created_at": "Mon, 19 Dec 2011 18:59:37 +0000", "from_user": "ProgPowerUSA", "from_user_id": 48006967, "from_user_id_str": "48006967", "from_user_name": "Glenn Harveston", "geo": null, "id": 148839921313001470, "id_str": "148839921313001473", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1601753356/PPUSA_concept_logo-w_theme_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601753356/PPUSA_concept_logo-w_theme_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "New visa service for metal bands trying to play the States: http://t.co/Qb7iZZ4y (Mention ProgPower USA and get the process moving)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:36 +0000", "from_user": "MERS16", "from_user_id": 134977017, "from_user_id_str": "134977017", "from_user_name": "Manuel Enrique Rivas", "geo": null, "id": 148839916414050300, "id_str": "148839916414050304", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1544933950/41088_149393618428785_100000744426947_298817_2163571_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544933950/41088_149393618428785_100000744426947_298817_2163571_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Cuando no puedas trotar, camina. Cuando no puedas caminar, usa el bast\\u00F3n. Pero nunca te detengas!\\u2665", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:35 +0000", "from_user": "_theleakage_", "from_user_id": 389538363, "from_user_id_str": "389538363", "from_user_name": "_theleakage_", "geo": null, "id": 148839914845388800, "id_str": "148839914845388801", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1585002459/favicon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585002459/favicon_normal.png", "source": "<a href="http://theleakage.com" rel="nofollow">theleakage.com</a>", "text": "Download: Swimming 2011 Duel in the Pool USA vs Europe HDTV XviD QCF http://t.co/0rbuq6t6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:35 +0000", "from_user": "lhsm2016", "from_user_id": 362419207, "from_user_id_str": "362419207", "from_user_name": "luiz henrique", "geo": null, "id": 148839914455314430, "id_str": "148839914455314432", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1530247143/luiz.voluvia.com_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1530247143/luiz.voluvia.com_normal.JPG", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Andrea Andrade usa vestido de R$ 20 mil em ensaio de escola de samba http://t.co/jWPj2dMg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:35 +0000", "from_user": "Bruna_Chites", "from_user_id": 434397942, "from_user_id_str": "434397942", "from_user_name": "Bruna Chites", "geo": null, "id": 148839914312708100, "id_str": "148839914312708096", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687788730/386550_174573672637173_100002536233813_334763_1467189980_a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687788730/386550_174573672637173_100002536233813_334763_1467189980_a_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "ao inv\\u00E9s de comer no prato, ele tira a comida de dentro e usa pra bater... ,muito louco esse guri!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:35 +0000", "from_user": "rafabos", "from_user_id": 284727998, "from_user_id_str": "284727998", "from_user_name": "Rafael B. de Andrade", "geo": null, "id": 148839913234776060, "id_str": "148839913234776064", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1317669979/081510092029_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317669979/081510092029_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "quero ir pra USA so pra tentar entrar na S.W.A.T e tentar ajudar um estranho,e da mto tiro num bandido...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:35 +0000", "from_user": "ASalvarreyes", "from_user_id": 170044359, "from_user_id_str": "170044359", "from_user_name": "Ailen Salvarreyes", "geo": null, "id": 148839913146695680, "id_str": "148839913146695681", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701703363/aio_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701703363/aio_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "explicandole como se usa dios", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:34 +0000", "from_user": "dassucca", "from_user_id": 163220120, "from_user_id_str": "163220120", "from_user_name": "Daniela", "geo": null, "id": 148839909686378500, "id_str": "148839909686378497", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1525127376/Sin_t_tulo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1525127376/Sin_t_tulo_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@DelCorrector cocido o cocinado? cuando se usa cada uno?", "to_user": "DelCorrector", "to_user_id": 312741533, "to_user_id_str": "312741533", "to_user_name": "El Corrector"}, +{"created_at": "Mon, 19 Dec 2011 18:59:34 +0000", "from_user": "childseatsafety", "from_user_id": 70765264, "from_user_id_str": "70765264", "from_user_name": "ChildPassengerSafety", "geo": null, "id": 148839909241790460, "id_str": "148839909241790464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/393374389/newlogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/393374389/newlogo_normal.jpg", "source": "<a href="http://www.crowdbooster.com" rel="nofollow">Crowdbooster</a>", "text": "Get RSS feeds from #NHTSA on child restraint, tire, and #vehicle recalls. http://t.co/syGE6NBe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:34 +0000", "from_user": "JAE34", "from_user_id": 169967614, "from_user_id_str": "169967614", "from_user_name": "Jaime", "geo": null, "id": 148839907866066940, "id_str": "148839907866066944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683551393/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683551393/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @EBRINDLEY: Heavy snowfall rates, localized blizzard conditions to increase into the evening across SW Plains http://t.co/JZsdXWvK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:33 +0000", "from_user": "SE7E", "from_user_id": 37088513, "from_user_id_str": "37088513", "from_user_name": "SE7E", "geo": null, "id": 148839905219457020, "id_str": "148839905219457024", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1260221945/100_1484_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1260221945/100_1484_normal.JPG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @portugae97: Messi n\\u00E3o usa brincos..Correntes..N\\u00E3o \\u00E9 manchete na Sonia Abra\\u00E3o..Usa agasalho do clube e faz algo que outros n\\u00E3o fazem..Joga bola e muito!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:32 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148839902157606900, "id_str": "148839902157606912", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "MIJO USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:31 +0000", "from_user": "verrieryzbt2", "from_user_id": 395965247, "from_user_id_str": "395965247", "from_user_name": "Verrier Stewart", "geo": null, "id": 148839896625319940, "id_str": "148839896625319937", "iso_language_code": "fi", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1601052397/imagesCAJMAJIG_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601052397/imagesCAJMAJIG_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@noillusions http://t.co/ttjjF9QQ", "to_user": "noillusions", "to_user_id": 22209827, "to_user_id_str": "22209827", "to_user_name": "richard garner", "in_reply_to_status_id": 148769641601318900, "in_reply_to_status_id_str": "148769641601318912"}, +{"created_at": "Mon, 19 Dec 2011 18:59:31 +0000", "from_user": "Emelyrijo", "from_user_id": 239123202, "from_user_id_str": "239123202", "from_user_name": "Emely Rijo", "geo": null, "id": 148839896348508160, "id_str": "148839896348508160", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1675693701/005_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675693701/005_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @elchascas: \\u00DAltimas semanas de #Lacasadeallado en USA. \\u00A1Lleg\\u00F3 la hora de desenmascarar a los verdaderos culpables! http://t.co/rnvHipHu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:30 +0000", "from_user": "RBresco", "from_user_id": 421506701, "from_user_id_str": "421506701", "from_user_name": "Roser Bresc\\u00F3", "geo": null, "id": 148839894628835330, "id_str": "148839894628835328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701019446/IMG_0373_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701019446/IMG_0373_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Santa using SIRI in new Apple's spot http://t.co/AgSjG9nU v\\u00EDa @applesfera", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:30 +0000", "from_user": "cadegaspari", "from_user_id": 284149538, "from_user_id_str": "284149538", "from_user_name": "S\\u00F3 da Lu Guidi ", "geo": null, "id": 148839893647360000, "id_str": "148839893647360001", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1444413652/09-07-11-18-35_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1444413652/09-07-11-18-35_normal.jpg", "source": "<a href="http://formspring.me" rel="nofollow">formspring.me</a>", "text": "Read my response to \"Usa muito \\u00F3culos de sol ?\": http://t.co/rS506v7p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:30 +0000", "from_user": "WoOdMcFlLy", "from_user_id": 84806284, "from_user_id_str": "84806284", "from_user_name": "WoOdMcFlLy", "geo": null, "id": 148839892858830850, "id_str": "148839892858830850", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1598121016/Surly-Darkness-2011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598121016/Surly-Darkness-2011_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @grownupbutnot: ummmm, excuse me criminal intent, but the USA network is reserved specifically for SVU #getouttahere", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:30 +0000", "from_user": "Zainabjaleel", "from_user_id": 225386453, "from_user_id_str": "225386453", "from_user_name": "Zainab Jaleel", "geo": null, "id": 148839892397457400, "id_str": "148839892397457409", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1678559188/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678559188/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ghost14_: god damn AlSaud god damn AlSaud #saudi #ksa #usa #us #Obama #oil", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:29 +0000", "from_user": "cassianoborges", "from_user_id": 34955535, "from_user_id_str": "34955535", "from_user_name": "cassiano borges \\u262E", "geo": null, "id": 148839889536946180, "id_str": "148839889536946176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1596356091/twittericon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596356091/twittericon_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Real_Liam_Payne @Harry_Styles @Louis_Tomlinson @NiallOfficial @zaynmalik U HAVE FANS OUTSIDE UK AND USA ! ;) BrazilNeedsUpAllNightTour", "to_user": "Real_Liam_Payne", "to_user_id": 158314798, "to_user_id_str": "158314798", "to_user_name": "Liam Payne"}, +{"created_at": "Mon, 19 Dec 2011 18:59:29 +0000", "from_user": "gvegayon", "from_user_id": 73013091, "from_user_id_str": "73013091", "from_user_name": "George Vega Yon", "geo": null, "id": 148839887834058750, "id_str": "148839887834058753", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/430800802/27122008056_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/430800802/27122008056_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @alvarograves: Irony at its best! RT @olyerickson: But is written in PDF! http://t.co/mzmUFgsV RT @EllnMllr: House Approves Sweeping #OpenData Standards", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:28 +0000", "from_user": "Mentirosita_", "from_user_id": 166659596, "from_user_id_str": "166659596", "from_user_name": "Lady\\u2665.", "geo": null, "id": 148839885887901700, "id_str": "148839885887901697", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1657693123/Colombia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657693123/Colombia_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@jjgv_ jiji:-$ USA COND\\u00D3N, Y DILE NO A LAS DROGAS!", "to_user": "jjgv_", "to_user_id": 130383471, "to_user_id_str": "130383471", "to_user_name": "Joakiin' Gil\\u2665", "in_reply_to_status_id": 148839350468231170, "in_reply_to_status_id_str": "148839350468231169"}, +{"created_at": "Mon, 19 Dec 2011 18:59:28 +0000", "from_user": "_tudoimproviso", "from_user_id": 295445742, "from_user_id_str": "295445742", "from_user_name": "brenda rech scopel,", "geo": null, "id": 148839885460090880, "id_str": "148839885460090880", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700988394/Foto_A0886_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700988394/Foto_A0886_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ESSESGAYS: \"como vc pode gostar de tatuagem e alargador? que coisa feia\" disse a pessoa que gosta de funk usa shortinho de 5cm e tem piercing no umbigo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:28 +0000", "from_user": "RafaValdez", "from_user_id": 34998339, "from_user_id_str": "34998339", "from_user_name": "Rafael VALDEZ", "geo": null, "id": 148839885107757060, "id_str": "148839885107757057", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1181224400/219386396_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1181224400/219386396_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @licjfobezo: A la gente que va a USA por Nogales, tengan paciencia, mucha fila!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:28 +0000", "from_user": "johannaduverge", "from_user_id": 420574569, "from_user_id_str": "420574569", "from_user_name": "Johanna Duverge", "geo": null, "id": 148839882775736320, "id_str": "148839882775736320", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1655989185/IMG00011-20111124-1659_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655989185/IMG00011-20111124-1659_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @JUNIORCABRERA07: \"ALFAREROS HOY EN NUESTRA FE EN VIVO\"@ewtn (especial de navidad) USA 6:00PM- MEXICO 5:00PM- BOGOTA 6:00PM MADRID 12:00AM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:27 +0000", "from_user": "Andy___Williams", "from_user_id": 240476903, "from_user_id_str": "240476903", "from_user_name": "Andy Williams", "geo": null, "id": 148839882184331260, "id_str": "148839882184331264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1628123804/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628123804/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Radclifficus isn't that where they make all the porn!!!! Hahaha what makes you want to live in USA? I've been twice it's ok:)", "to_user": "Radclifficus", "to_user_id": 145716051, "to_user_id_str": "145716051", "to_user_name": "Liesa \\u2764", "in_reply_to_status_id": 148837673883279360, "in_reply_to_status_id_str": "148837673883279363"}, +{"created_at": "Mon, 19 Dec 2011 18:59:27 +0000", "from_user": "YoureTheProblem", "from_user_id": 310814184, "from_user_id_str": "310814184", "from_user_name": "Tom Felton's Whore.", "geo": null, "id": 148839881349672960, "id_str": "148839881349672960", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694914511/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694914511/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @ANABRICOT: USA: Chris Brown, Justin Bieber, Lady Gaga, Usher, Rihanna,.. France: Colonel Reyel, Zaz, Christophe Willem, Gr\\u00E9goire,.. Qui veut d\\u00E9m\\u00E9nager?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:27 +0000", "from_user": "KateMarieLife", "from_user_id": 348033774, "from_user_id_str": "348033774", "from_user_name": "Kate", "geo": null, "id": 148839878577242100, "id_str": "148839878577242112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1476416690/DSCN3673_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1476416690/DSCN3673_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @RaleighGov: Ready for the New Year? Raleigh Acorn Being Prepared for First Night. http://t.co/xNJmTlad http://t.co/qDUqlDgt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:25 +0000", "from_user": "aniin140", "from_user_id": 250467483, "from_user_id_str": "250467483", "from_user_name": "Ani", "geo": null, "id": 148839872562602000, "id_str": "148839872562601984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700782127/1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700782127/1_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @lonelyplanet: Hidden treasures of San Francisco as featured in LP's new mobile app Wenzani http://t.co/ABHkR55W #lp #travel", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:25 +0000", "from_user": "marcelacuri", "from_user_id": 217096778, "from_user_id_str": "217096778", "from_user_name": "Mrs. Timberlake", "geo": null, "id": 148839871417565200, "id_str": "148839871417565184", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1648693269/303918_318947311465018_100000492565088_1335731_16254144_n__2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648693269/303918_318947311465018_100000492565088_1335731_16254144_n__2__normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @annaroquete: vou confessar que acho super charmoso menino que usa oculos. tipo, nao sempre, so as vezes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:23 +0000", "from_user": "Chele_G", "from_user_id": 318579940, "from_user_id_str": "318579940", "from_user_name": "Michele Lee Gunter", "geo": null, "id": 148839864694079500, "id_str": "148839864694079488", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1623025458/4rMfA9Nm_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1623025458/4rMfA9Nm_normal", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "RT @JENNA_MICHELE: Jenna Cecil for Miss California USA 2012\\n\\nhttp://t.co/e1j6KkIW http://t.co/hzkAcHTa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:22 +0000", "from_user": "NASAJPL_Edu", "from_user_id": 18746273, "from_user_id_str": "18746273", "from_user_name": "NASAJPL Education", "geo": null, "id": 148839861363806200, "id_str": "148839861363806209", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/930215479/saturn-apple_150_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/930215479/saturn-apple_150_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Application season has opened for at least a dozen internships & fellowships @NASAJPL! Apply now at http://t.co/XZxu0o25", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:22 +0000", "from_user": "NovaEli", "from_user_id": 18318643, "from_user_id_str": "18318643", "from_user_name": "Tu Papa", "geo": null, "id": 148839859241488400, "id_str": "148839859241488384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701242680/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701242680/image_normal.jpg", "source": "<a href="http://tweetlogix.com" rel="nofollow">Tweetlogix</a>", "text": "RT @iamRoguee: ; I've been saying this for the past 10 years, I've researched the govt so much. Niggas had me investigated! Fuck the USA! Fuck Obama!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:21 +0000", "from_user": "BibbyLoveBieber", "from_user_id": 383412187, "from_user_id_str": "383412187", "from_user_name": "Bianca Tanase", "geo": null, "id": 148839855344992260, "id_str": "148839855344992257", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1666261459/vfrefqafdrfe_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666261459/vfrefqafdrfe_normal.PNG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SelenaNoEsReal: Ese momento inc\\u00F3modo cuando todo el mundo se da cuenta de que Selena Gomez usa PlayBack.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:20 +0000", "from_user": "IaaraCavalli", "from_user_id": 192765586, "from_user_id_str": "192765586", "from_user_name": "Iara Cavalli", "geo": null, "id": 148839849657503740, "id_str": "148839849657503744", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699992022/DSC09173__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699992022/DSC09173__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u00E9 triste ser viciada em facebook e n\\u00E3o lembrar mais direito como se usa o twitter, vejo um tweet legal e quero curtir, como \\u00E9 que faz heim?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:19 +0000", "from_user": "renee_berry", "from_user_id": 121558178, "from_user_id_str": "121558178", "from_user_name": "renee berry", "geo": null, "id": 148839848030126080, "id_str": "148839848030126081", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689403625/DSC_0284_2_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689403625/DSC_0284_2_2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @BrianSMcGowan: Effectively Training the Hospice & Palliative Medicine Docs for Improved End-of-Life Care http://t.co/VOZmxS4A #CMEchat @renee_berry", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:17 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148839839352094720, "id_str": "148839839352094720", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "USA COND\\u00D3N..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:16 +0000", "from_user": "Allison01236588", "from_user_id": 440847507, "from_user_id_str": "440847507", "from_user_name": "Allison", "geo": null, "id": 148839835510116350, "id_str": "148839835510116353", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702116399/905712_356x237_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702116399/905712_356x237_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "New Canon Usa Bci-3e Black And Color Multipack Popular High Quality Practical Modern Design: Notice: $50 charge ... http://t.co/DPaOfrnu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:15 +0000", "from_user": "laisataide", "from_user_id": 68721390, "from_user_id_str": "68721390", "from_user_name": "La\\u00EDs Ata\\u00EDde", "geo": null, "id": 148839828564357120, "id_str": "148839828564357120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698895499/julia_book_4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698895499/julia_book_4_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Swiftlogy: #Swiftlogy Taylor finished Speak Now tour in the USA with two sold out concerts at Madison Square Garden!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:14 +0000", "from_user": "circotimia_", "from_user_id": 221610474, "from_user_id_str": "221610474", "from_user_name": "M a i t e\\u10E6. ", "geo": null, "id": 148839827582894080, "id_str": "148839827582894080", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698350821/jjo__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698350821/jjo__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "MAURY USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:14 +0000", "from_user": "Jumabinali", "from_user_id": 348088617, "from_user_id_str": "348088617", "from_user_name": "JBA", "geo": null, "id": 148839826211344400, "id_str": "148839826211344385", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676007559/a3bjp_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676007559/a3bjp_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "If within 10 yrs of fake reforms we haven\\u2019t learnt, we will never do\\n#14feb #tgonu #qatif #hassa #ksa #oman #qatar #iraq #kuwait #usa # eu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:14 +0000", "from_user": "DaveSkoletsky", "from_user_id": 19493498, "from_user_id_str": "19493498", "from_user_name": "Dave Skoletsky", "geo": null, "id": 148839825355702270, "id_str": "148839825355702272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/396453345/trailing_seminar_109_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/396453345/trailing_seminar_109_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NFL best and worst: Monkeys, dogs and the Tebow myth busted - USA TODAY http://t.co/W3Deygjl http://t.co/n0YmnCUV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:14 +0000", "from_user": "BlackBerryMaxi", "from_user_id": 258168984, "from_user_id_str": "258168984", "from_user_name": "BlackBerry BestPrice", "geo": null, "id": 148839824789475330, "id_str": "148839824789475328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1256265044/blackberry-maxiprices_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1256265044/blackberry-maxiprices_normal.gif", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "BlackBerry USA: 2 never used never opened phones blackberry curve9300 and bold 9700 #Bold http://t.co/eoTOStf8 #blackberry #usa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:14 +0000", "from_user": "TabletPcUSA", "from_user_id": 302269631, "from_user_id_str": "302269631", "from_user_name": "Tablet PC USA", "geo": null, "id": 148839824420376580, "id_str": "148839824420376576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1362568668/usatabletpc_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1362568668/usatabletpc_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "USA Tablet PC: 7\" Allwinner A10 Cortex A8 1GHz Android 2.3 Tablet PC Multi-touch Screen WiFi Wh... http://t.co/aHLOR8iN #tabletpc #usa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:13 +0000", "from_user": "Fuzzalert", "from_user_id": 177369263, "from_user_id_str": "177369263", "from_user_name": "Fuzz Alert", "geo": null, "id": 148839821241094140, "id_str": "148839821241094144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1102260354/fuzzalert__logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1102260354/fuzzalert__logo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "A new speed trap was set near 276-316 County Route 46, Shirley, NY 11967, USA http://t.co/lBOIFmoe:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:13 +0000", "from_user": "Raullooopes", "from_user_id": 193460428, "from_user_id_str": "193460428", "from_user_name": "Raul Lopes", "geo": null, "id": 148839820158976000, "id_str": "148839820158976000", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1617387035/menor_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1617387035/menor_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "papai noel podia da um up ne , nm mais usa carta podia se um e-mail um sms sl ne ueahueahueahuahe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:13 +0000", "from_user": "TabletPcUSA", "from_user_id": 302269631, "from_user_id_str": "302269631", "from_user_name": "Tablet PC USA", "geo": null, "id": 148839819802460160, "id_str": "148839819802460161", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1362568668/usatabletpc_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1362568668/usatabletpc_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "USA Tablet PC: APPLE IPAD 2 64GB WIFI + 3G AT&T TABLET PC COMPUTER WI-FI Music Video #tabletpc http://t.co/CGhqTrOW #tabletpc #usa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:12 +0000", "from_user": "BlackBerryMaxi", "from_user_id": 258168984, "from_user_id_str": "258168984", "from_user_name": "BlackBerry BestPrice", "geo": null, "id": 148839819634679800, "id_str": "148839819634679808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1256265044/blackberry-maxiprices_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1256265044/blackberry-maxiprices_normal.gif", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "BlackBerry USA: BlackBerry Bold 9700 (Unlocked) New #Bold http://t.co/lOLEIsbv #blackberry #usa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:12 +0000", "from_user": "Louise_Anne_7", "from_user_id": 227101335, "from_user_id_str": "227101335", "from_user_name": "Louise Chapman", "geo": null, "id": 148839819383013380, "id_str": "148839819383013376", "iso_language_code": "fi", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699104808/IMG00931-20111215-1538_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699104808/IMG00931-20111215-1538_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "USA http://t.co/I8pbCWq7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:12 +0000", "from_user": "Thiago_PagTotal", "from_user_id": 357665871, "from_user_id_str": "357665871", "from_user_name": "Thiago_Gomes", "geo": null, "id": 148839815687831550, "id_str": "148839815687831552", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1503545940/pagtotal_TWITTER_reasonably_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1503545940/pagtotal_TWITTER_reasonably_small_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "VOC\\u00CA USA PERFUME?\\nConhe\\u00E7a a nova marca que est\\u00E1 chegando no Cear\\u00E1, UP!ESS\\u00CANCIA ,veja as marcas de perfume que... http://t.co/F4HnDW5B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:11 +0000", "from_user": "jaquitaaa", "from_user_id": 195522743, "from_user_id_str": "195522743", "from_user_name": "jaqueline", "geo": null, "id": 148839814551179260, "id_str": "148839814551179264", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698527634/e73cbee8-a056-4a26-8587-d1fa44b52a10_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698527634/e73cbee8-a056-4a26-8587-d1fa44b52a10_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @DialogoDeAlunos: #Eu: - Voc\\u00EA usa qual operadora? #Colega: - A tim! #Eu: - Sa\\u00FAde! #DialogoDeAlunos", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:11 +0000", "from_user": "uconndirk", "from_user_id": 18538633, "from_user_id_str": "18538633", "from_user_name": "uconndirk", "geo": null, "id": 148839813422911500, "id_str": "148839813422911488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1221959236/Dirk_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1221959236/Dirk_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Despite Southwest blizzard, hope of white Christmas fades for much of US - http://t.co/pLihUfqp http://t.co/Kf6CGZAy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:11 +0000", "from_user": "TabletPcUSA", "from_user_id": 302269631, "from_user_id_str": "302269631", "from_user_name": "Tablet PC USA", "geo": null, "id": 148839813045436400, "id_str": "148839813045436416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1362568668/usatabletpc_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1362568668/usatabletpc_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "USA Tablet PC: Acer Tablet ICONIA A500 16GB, Wi-Fi, 10.1in - Black #tabletpc http://t.co/cI6nff26 #tabletpc #usa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:11 +0000", "from_user": "BlackBerryMaxi", "from_user_id": 258168984, "from_user_id_str": "258168984", "from_user_name": "BlackBerry BestPrice", "geo": null, "id": 148839812957356030, "id_str": "148839812957356032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1256265044/blackberry-maxiprices_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1256265044/blackberry-maxiprices_normal.gif", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "BlackBerry USA: \\u2588 BLACKBERRY BOLD 9780 CINCINNATI BELL WORLD SHIPPING \\u2588 #Bold http://t.co/yzUhKDCt #blackberry #usa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:11 +0000", "from_user": "UrSistazDrimGuy", "from_user_id": 53050954, "from_user_id_str": "53050954", "from_user_name": "Head Nigga in Charge", "geo": null, "id": 148839812101718000, "id_str": "148839812101718018", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700396131/331661084_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700396131/331661084_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Ohafia RT @TWEETORACLE: The HQ of the #PORN industry in USA is ________?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:10 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148839807508955140, "id_str": "148839807508955137", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:10 +0000", "from_user": "dolphinroxy", "from_user_id": 40956635, "from_user_id_str": "40956635", "from_user_name": "Julie", "geo": null, "id": 148839807366344700, "id_str": "148839807366344704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/499911808/DSC02799_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/499911808/DSC02799_normal.JPG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@ladygaga only to usa citizens...50 states....i live in Puerto Rico...how is this fair? Hmmmm", "to_user": "ladygaga", "to_user_id": 14230524, "to_user_id_str": "14230524", "to_user_name": "Lady Gaga"}, +{"created_at": "Mon, 19 Dec 2011 18:59:09 +0000", "from_user": "JPUSERNAME", "from_user_id": 51641901, "from_user_id_str": "51641901", "from_user_name": "jpzinho", "geo": null, "id": 148839806238068740, "id_str": "148839806238068737", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1663277445/inspiration__5__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663277445/inspiration__5__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@chutzki mora na zona sul e usa XP bjs", "to_user": "chutzki", "to_user_id": 40968139, "to_user_id_str": "40968139", "to_user_name": "they call me chu", "in_reply_to_status_id": 148839329949687800, "in_reply_to_status_id_str": "148839329949687809"}, +{"created_at": "Mon, 19 Dec 2011 18:59:09 +0000", "from_user": "Bandiee", "from_user_id": 173390866, "from_user_id_str": "173390866", "from_user_name": "Esteban Bandi", "geo": null, "id": 148839806212915200, "id_str": "148839806212915202", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1682291747/312530_2339449975048_1513884348_32490560_640466341_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682291747/312530_2339449975048_1513884348_32490560_640466341_n_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@anazaracho mira sin las colitas y se forma un corazon, usa tu imaginacion (?)", "to_user": "anazaracho", "to_user_id": 374643540, "to_user_id_str": "374643540", "to_user_name": "Ana Zaracho (\\u00F1a\\u00F1ala)", "in_reply_to_status_id": 148839303995330560, "in_reply_to_status_id_str": "148839303995330560"}, +{"created_at": "Mon, 19 Dec 2011 18:59:09 +0000", "from_user": "TabletPcUSA", "from_user_id": 302269631, "from_user_id_str": "302269631", "from_user_name": "Tablet PC USA", "geo": null, "id": 148839805382434800, "id_str": "148839805382434816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1362568668/usatabletpc_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1362568668/usatabletpc_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "USA Tablet PC: Ematic FunTab Internet Tablet & HD Video Player (Red Android Tablet) #tabletpc http://t.co/nxyF5eyd #tabletpc #usa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:09 +0000", "from_user": "USandroidtablet", "from_user_id": 302078903, "from_user_id_str": "302078903", "from_user_name": "USA Android Tablet", "geo": null, "id": 148839805277585400, "id_str": "148839805277585410", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1362193017/usaandroid_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1362193017/usaandroid_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "USA Android: HOT Unbranded 8 \" Google MID Android 2.2 Tablets PC 2GB WiFi G-Sensor Camera #android http://t.co/x62n1Xsi #android #tabletpc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:09 +0000", "from_user": "USandroidtablet", "from_user_id": 302078903, "from_user_id_str": "302078903", "from_user_name": "USA Android Tablet", "geo": null, "id": 148839803771830270, "id_str": "148839803771830272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1362193017/usaandroid_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1362193017/usaandroid_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "USA Android: HP TouchPad 32GB, Wi-Fi, 9.7in (Refurbished) Android Capable Get NOW B4 XMAS!!!!... http://t.co/G91sdqE0 #android #tabletpc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:09 +0000", "from_user": "TabletPcUSA", "from_user_id": 302269631, "from_user_id_str": "302269631", "from_user_name": "Tablet PC USA", "geo": null, "id": 148839803696316400, "id_str": "148839803696316418", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1362568668/usatabletpc_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1362568668/usatabletpc_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "USA Tablet PC: Fly Touch 3 (7\"): Android 2.2 Tablet, 1GHz CPU, Camera, 256MB RAM + 2GB ROM #tabletpc http://t.co/tlE46xb0 #tabletpc #usa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:08 +0000", "from_user": "USandroidtablet", "from_user_id": 302078903, "from_user_id_str": "302078903", "from_user_name": "USA Android Tablet", "geo": null, "id": 148839802224115700, "id_str": "148839802224115712", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1362193017/usaandroid_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1362193017/usaandroid_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "USA Android: PanDigital STAR eReader, ANDROID Wi-Fi, 7in Camera Tablet #android http://t.co/6yzq7efM #android #tabletpc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:07 +0000", "from_user": "nimrodking", "from_user_id": 78867776, "from_user_id_str": "78867776", "from_user_name": "Oluwafemi Otuyemi", "geo": null, "id": 148839797333561340, "id_str": "148839797333561344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701941676/time_mag_person_of_the_year_85827_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701941676/time_mag_person_of_the_year_85827_normal.jpg", "source": "<a href="http://m.ntwyt.com" rel="nofollow">Ntwyt\\u2122</a>", "text": "The only ppl more dumb dan Nigerian *legislooters*, are d GOP house members in d USA... They will do anytin 2 make sure OBAMA fails..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:07 +0000", "from_user": "dawnvarnellphx", "from_user_id": 20741690, "from_user_id_str": "20741690", "from_user_name": "Dawn Varnell", "geo": null, "id": 148839795710365700, "id_str": "148839795710365696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Modification blunders bedevil US housing recovery http://t.co/x71iwbbl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:07 +0000", "from_user": "itsletticia", "from_user_id": 220378610, "from_user_id_str": "220378610", "from_user_name": "Let\\u00EDcia", "geo": null, "id": 148839794951204860, "id_str": "148839794951204866", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681059248/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681059248/image_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Me pergunte qualquer coisa. - \\u203A 1. Altura? 2. Peso? 3. Voc\\u00EA fuma? 4. Voc\\u00EA bebe? 5. Usa/j\\u00E1 usou drogas? 6.... http://t.co/XOmXjIOk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:06 +0000", "from_user": "ghost14_", "from_user_id": 288941047, "from_user_id_str": "288941047", "from_user_name": "ghost \\u0627\\u0644\\u0634\\u0628\\u062D", "geo": null, "id": 148839791952269300, "id_str": "148839791952269313", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1640765454/shoala_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640765454/shoala_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "god damn AlSaud god damn AlSaud #saudi #ksa #usa #us #Obama #oil", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:06 +0000", "from_user": "702_870_HELP", "from_user_id": 164355552, "from_user_id_str": "164355552", "from_user_name": "Join the Fight", "geo": null, "id": 148839791092432900, "id_str": "148839791092432896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1239984194/gavel_ss_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1239984194/gavel_ss_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Modification blunders bedevil US housing recovery: McPherson has owned his home since 1974 but was recently deni... http://t.co/SUrQHt0x", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:06 +0000", "from_user": "NaaD28", "from_user_id": 102061262, "from_user_id_str": "102061262", "from_user_name": "Little Scorpion", "geo": null, "id": 148839790807220220, "id_str": "148839790807220224", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1656879331/image_5__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656879331/image_5__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @HechosFrankIero: \"Emo es un termino que la gente usa solo para derribarnos por ser diferentes. No tiene significado a menos que tu le des uno(+)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:04 +0000", "from_user": "SBHMuseum", "from_user_id": 171899574, "from_user_id_str": "171899574", "from_user_name": "Sewall-Belmont House", "geo": null, "id": 148839785098788860, "id_str": "148839785098788864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1089731074/colorhouse-thumbnail_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1089731074/colorhouse-thumbnail_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @statedept: #SecClinton delivers remarks on Women, Peace and Security at 2:30 PM EST today: http://t.co/ASzf2C50 | More:...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:02 +0000", "from_user": "jujubaaaa97", "from_user_id": 45232987, "from_user_id_str": "45232987", "from_user_name": "julia", "geo": null, "id": 148839776366243840, "id_str": "148839776366243840", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1644222531/July_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644222531/July_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @AsPatadas: \\u2013 voc\\u00EA usa qual operadora? \\u2013 a tim \\u2013 sa\\u00FAde", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:01 +0000", "from_user": "Cristiliane_", "from_user_id": 199408319, "from_user_id_str": "199408319", "from_user_name": "Criis_", "geo": null, "id": 148839769781186560, "id_str": "148839769781186560", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1655609764/kkkkkkkk_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655609764/kkkkkkkk_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ESSESGAYS: \"como vc pode gostar de tatuagem e alargador? que coisa feia\" disse a pessoa que gosta de funk usa shortinho de 5cm e tem piercing no umbigo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:01 +0000", "from_user": "musecrossing", "from_user_id": 12748622, "from_user_id_str": "12748622", "from_user_name": "musecrossing", "geo": null, "id": 148839769680515070, "id_str": "148839769680515072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1670091154/227b8ddf-4d13-479b-a7cf-6b13b0314ca0_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670091154/227b8ddf-4d13-479b-a7cf-6b13b0314ca0_normal.png", "source": "<a href="http://blip.fm" rel="nofollow">Blip.fm</a>", "text": "rb@LadyFox: \"Nice collaboration, like it ;-)\" [Hello USA!] \\u266B http://t.co/zsvInbLM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:58 +0000", "from_user": "FuckTonSwag", "from_user_id": 353070220, "from_user_id_str": "353070220", "from_user_name": "I was @Fuck_Smile_ \\u2020", "geo": null, "id": 148839759467384830, "id_str": "148839759467384832", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697244851/tumblr_lw7h1koyVu1qikojdo1_500_large_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697244851/tumblr_lw7h1koyVu1qikojdo1_500_large_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @ANABRICOT: USA: Chris Brown, Justin Bieber, Lady Gaga, Usher, Rihanna,.. France: Colonel Reyel, Zaz, Christophe Willem, Gr\\u00E9goire,.. Qui veut d\\u00E9m\\u00E9nager?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:58 +0000", "from_user": "lislBR", "from_user_id": 26476866, "from_user_id_str": "26476866", "from_user_name": "Lisl BR", "geo": null, "id": 148839758242643970, "id_str": "148839758242643968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680701265/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680701265/image_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@KnightShiftLuv Sorry! For once the song is available in my country but then it's not in the USA...", "to_user": "KnightShiftLuv", "to_user_id": 86272503, "to_user_id_str": "86272503", "to_user_name": "The KnightShift"}, +{"created_at": "Mon, 19 Dec 2011 18:58:57 +0000", "from_user": "synarasvnn", "from_user_id": 306530330, "from_user_id_str": "306530330", "from_user_name": "Synara \\u2601", "geo": null, "id": 148839755944181760, "id_str": "148839755944181760", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700975054/P291011_2315_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700975054/P291011_2315_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:57 +0000", "from_user": "delia2727", "from_user_id": 161046659, "from_user_id_str": "161046659", "from_user_name": "delia.castillos", "geo": null, "id": 148839754606190600, "id_str": "148839754606190593", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1507986468/tn_giselebundchen040ca_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1507986468/tn_giselebundchen040ca_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@noticiascomjoao SOY DE MEXICO PERO VIVO EN FLORIDA USA Y TU", "to_user": "noticiascomjoao", "to_user_id": 192618309, "to_user_id_str": "192618309", "to_user_name": "Jo\\u00E3o Rodrigues", "in_reply_to_status_id": 148839332353015800, "in_reply_to_status_id_str": "148839332353015808"}, +{"created_at": "Mon, 19 Dec 2011 18:58:56 +0000", "from_user": "cermarytoro", "from_user_id": 129637480, "from_user_id_str": "129637480", "from_user_name": "Cermary A. Toro ", "geo": null, "id": 148839751405944830, "id_str": "148839751405944833", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1553556327/Foto1006_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553556327/Foto1006_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ALFAREROS: \"ALFAREROS HOY EN NUESTRA FE EN VIVO\" EWTN \\n (especial de navidad) USA 6:00PM- MEXICO 5:00PM- BOGOTA 6:00PM\\n MADRID 12:00AM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:56 +0000", "from_user": "MyBieber1D", "from_user_id": 232579828, "from_user_id_str": "232579828", "from_user_name": "Mahone Girlfriend\\u2665", "geo": null, "id": 148839751183630340, "id_str": "148839751183630336", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1682661287/387172_294800997207152_183409211679665_1038068_493349916_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682661287/387172_294800997207152_183409211679665_1038068_493349916_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@EverDemiBieber haha sisi fijo que em deixen prk sino me muero ehh! apart el meu pare diu q no vol que vagi m\\u00E9s a UK k vagi a canada o USa", "to_user": "EverDemiBieber", "to_user_id": 86753875, "to_user_id_str": "86753875", "to_user_name": "LIVING, LOVING\\u2661.", "in_reply_to_status_id": 148837177680343040, "in_reply_to_status_id_str": "148837177680343040"}, +{"created_at": "Mon, 19 Dec 2011 18:58:56 +0000", "from_user": "WORLD_KIDS", "from_user_id": 107183932, "from_user_id_str": "107183932", "from_user_name": "Citizen of the World", "geo": null, "id": 148839751070384130, "id_str": "148839751070384128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1292880547/World_MAP_imagesCAPGBBE0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1292880547/World_MAP_imagesCAPGBBE0_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @StateDept: #SecClinton delivers remarks on Women, Peace and Security at 2:30 PM EST today: http://t.co/UC8ntoKO | More: http://t.co/7R3W0rtE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:56 +0000", "from_user": "Gaylenemik", "from_user_id": 431755511, "from_user_id_str": "431755511", "from_user_name": "Gaylene Fane", "geo": null, "id": 148839750428663800, "id_str": "148839750428663808", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681150881/f224e3nxi4_129935879-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681150881/f224e3nxi4_129935879-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "USA Industries A3112 Alternator: U.S.A. Industries A3112 IMPORT ALTERNATO http://t.co/0OLaykRK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:56 +0000", "from_user": "Never_Cum_Again", "from_user_id": 399406928, "from_user_id_str": "399406928", "from_user_name": "Slave D", "geo": null, "id": 148839748595748860, "id_str": "148839748595748864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1609538701/Fantasia_Painting_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609538701/Fantasia_Painting_normal.jpg", "source": "<a href="http://red-badger.com" rel="nofollow">Birdsong for Windows Phone</a>", "text": "@MstrsKeyholder Well thats a new low, I just got turned on watching Miley Cyrus's Party in the USA video! Chastity has really messed me up!", "to_user": "MstrsKeyholder", "to_user_id": 346905514, "to_user_id_str": "346905514", "to_user_name": "Mistress T"}, +{"created_at": "Mon, 19 Dec 2011 18:58:55 +0000", "from_user": "Valeria95BJ", "from_user_id": 258951624, "from_user_id_str": "258951624", "from_user_name": "Valeria Gardu\\u00F1o", "geo": null, "id": 148839747555561470, "id_str": "148839747555561472", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1523595054/tho2_9ZgLucPP5ShfD3u.0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1523595054/tho2_9ZgLucPP5ShfD3u.0_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "En las noticias de Cuatro, en un informe sobre Irak y USA... escuchando Wake me up when september ends #l\\u00E1grimas", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:55 +0000", "from_user": "heavymetalhooka", "from_user_id": 408061585, "from_user_id_str": "408061585", "from_user_name": "tarados pela gaga \\u2654", "geo": null, "id": 148839747236798460, "id_str": "148839747236798465", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698854669/tumblr_lvawq5rt3U1r2ldulo1_500_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698854669/tumblr_lvawq5rt3U1r2ldulo1_500_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@_Isabela_vilela \\u00E9 n\\u00E9, mais ai agente usa a tag", "to_user": "_Isabela_vilela", "to_user_id": 204873089, "to_user_id_str": "204873089", "to_user_name": "Little Monster ", "in_reply_to_status_id": 148839408655810560, "in_reply_to_status_id_str": "148839408655810561"}, +{"created_at": "Mon, 19 Dec 2011 18:58:54 +0000", "from_user": "AustinDealSavin", "from_user_id": 406611627, "from_user_id_str": "406611627", "from_user_name": "Deal Savings Austin", "geo": null, "id": 148839743612928000, "id_str": "148839743612928001", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1626241933/Janice_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626241933/Janice_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Shaw Loving Social does it! They are really offering 90% off. Sizzling hot http://t.co/OocmIy0h", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:54 +0000", "from_user": "smartypress", "from_user_id": 202128761, "from_user_id_str": "202128761", "from_user_name": "smartpress", "geo": null, "id": 148839740366520320, "id_str": "148839740366520320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Buy-to-let mortgages are like normal mortgages: mortgages in the USA for Canadians Buy-to-let mortgages are lik... http://t.co/csdHhiq3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:53 +0000", "from_user": "AcaoPolicial", "from_user_id": 101496213, "from_user_id_str": "101496213", "from_user_name": "Homem de DEUS", "geo": null, "id": 148839739292786700, "id_str": "148839739292786688", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534528829/anigiffff_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534528829/anigiffff_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Minha filha tamb\\u00E9m @lucitito Imuran 50 mg \\u00F1 vende em farm\\u00E1cia mas o governo do estado d\\u00E1 pela Unicat, minha irm\\u00E3 tb usa esse medicamento", "to_user": "lucitito", "to_user_id": 57459572, "to_user_id_str": "57459572", "to_user_name": "Luciana", "in_reply_to_status_id": 147654769639567360, "in_reply_to_status_id_str": "147654769639567361"}, +{"created_at": "Mon, 19 Dec 2011 18:58:53 +0000", "from_user": "RealAguileraBr", "from_user_id": 160678636, "from_user_id_str": "160678636", "from_user_name": "Xtina Aguilera BR", "geo": null, "id": 148839738630082560, "id_str": "148839738630082560", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695134960/AMAs_2011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695134960/AMAs_2011_normal.jpg", "source": "<a href="http://tweetree.com" rel="nofollow">Tweetree</a>", "text": "RT @xscarecrow Eu prefiro usa o tweetree do que o twitter normal. \\u00C9 praticamente a vers\\u00E3o atiga do twitter. (:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:58:52 +0000", "from_user": "organic_beauty_", "from_user_id": 14068080, "from_user_id_str": "14068080", "from_user_name": "Shalona Anuj, PhD", "geo": null, "id": 148839731919192060, "id_str": "148839731919192064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/235269846/Shalona-Anuj-PhD_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/235269846/Shalona-Anuj-PhD_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Weakening of the Fair Trade USA Label http://t.co/Idhj5cIY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:51 +0000", "from_user": "cirixepuli", "from_user_id": 433695290, "from_user_id_str": "433695290", "from_user_name": "Augustyna Mccrohon", "geo": null, "id": 148839730212126720, "id_str": "148839730212126720", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1685887364/744_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685887364/744_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "loan best http://t.co/U8wwE9d3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:51 +0000", "from_user": "Camibellotto", "from_user_id": 186152095, "from_user_id_str": "186152095", "from_user_name": "Cami Bellotto", "geo": null, "id": 148839728689578000, "id_str": "148839728689577985", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685546373/Imagen_003_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685546373/Imagen_003_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@LuchiChaves a mi me ama, a vos te usa-", "to_user": "LuchiChaves", "to_user_id": 160358512, "to_user_id_str": "160358512", "to_user_name": "Luciana Chaves", "in_reply_to_status_id": 148839072826261500, "in_reply_to_status_id_str": "148839072826261505"}, +{"created_at": "Mon, 19 Dec 2011 18:58:50 +0000", "from_user": "qtrspike", "from_user_id": 363248213, "from_user_id_str": "363248213", "from_user_name": "Hamad Al-Muhannadi", "geo": null, "id": 148839724897943550, "id_str": "148839724897943552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\\u062A\\u062D\\u0642\\u0642 \\u0645\\u0646 \\u0647\\u0630\\u0627 \\u0627\\u0644\\u0641\\u064A\\u062F\\u064A\\u0648 -- Melanie Amaro - Top 4 - Pepsi Challenge - THE X FACTOR USA 2011 http://t.co/c78oUu37 via @youtube", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:49 +0000", "from_user": "1058willie", "from_user_id": 246594238, "from_user_id_str": "246594238", "from_user_name": "Willie Da Underboss", "geo": null, "id": 148839722502991870, "id_str": "148839722502991872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699187612/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699187612/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TheLotCrew: THE FEASTIVAL Featuring WALE, Tyga, Los & Moufy -Saturday, 1/28/12, @ The Palladium Worcester, MA, USA @SwaggaBoyLOS http://t.co/dcF6KGO2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:48 +0000", "from_user": "UHNLibraries", "from_user_id": 282224181, "from_user_id_str": "282224181", "from_user_name": "UHN Libraries", "geo": null, "id": 148839718828781570, "id_str": "148839718828781569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317632005/uhnlogo2_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317632005/uhnlogo2_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "New #PubMed Tutorial reflects PubMed changes through December 12, 2011 http://t.co/0039YBKm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:48 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148839715037122560, "id_str": "148839715037122560", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "JOS\\u00C9 USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:48 +0000", "from_user": "kaloqyhol", "from_user_id": 397019714, "from_user_id_str": "397019714", "from_user_name": "Viehmann Eberly", "geo": null, "id": 148839714902900740, "id_str": "148839714902900736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "free gay dating sites usa: http://t.co/cVvkiODp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:47 +0000", "from_user": "falaproGleisson", "from_user_id": 312802547, "from_user_id_str": "312802547", "from_user_name": "@falaproGleisson", "geo": null, "id": 148839713317453820, "id_str": "148839713317453825", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1655730276/gleisson_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655730276/gleisson_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "awn love compro uma pulseirinha com meu nome pra usa, *\\u2022* / @nathfogaca_ aqe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:47 +0000", "from_user": "_DevilishGirl", "from_user_id": 388981935, "from_user_id_str": "388981935", "from_user_name": "let me bite? :3", "geo": null, "id": 148839712189202430, "id_str": "148839712189202432", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1634011495/DSC05924_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634011495/DSC05924_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ESSESGAYS: \"como vc pode gostar de tatuagem e alargador? que coisa feia\" disse a pessoa que gosta de funk usa shortinho de 5cm e tem piercing no umbigo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:45 +0000", "from_user": "BagusTV", "from_user_id": 65473824, "from_user_id_str": "65473824", "from_user_name": "Bagus TV", "geo": null, "id": 148839702798151680, "id_str": "148839702798151681", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/361362901/tv_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/361362901/tv_normal.jpeg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Arrest warrant issued for Iraqi VP on terrorism charges - USA TODAY: USA TODAYArrest warrant issued for Iraqi VP... http://t.co/JpkkHi2o", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:44 +0000", "from_user": "purebahrain", "from_user_id": 328933147, "from_user_id_str": "328933147", "from_user_name": "\\u062E\\u064A\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0646\\u062A\\u062F\\u0649 \\u0627\\u0644\\u0633\\u064A\\u0627\\u0633\\u064A", "geo": null, "id": 148839701795708930, "id_str": "148839701795708929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1532540592/70273373_3429342_44984261_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1532540592/70273373_3429342_44984261_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "PressTv | 'No military solution to Bahrain crisis' | http://t.co/ZliT7Znu | #Bahrain #arabspring #WallStreet #kuwait #USA #US #UK #KSA #TV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:44 +0000", "from_user": "Fame_nd_Fortune", "from_user_id": 96908733, "from_user_id_str": "96908733", "from_user_name": "A{FREE}CA", "geo": null, "id": 148839700919095300, "id_str": "148839700919095296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1649295823/2273_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649295823/2273_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Previs: Killed Osama, Ended war in Iraq, Passed comprehensive health care, Ended Don't Ask Don't tell, Saved USA Auto Industry #WhatObamaHasDone", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:44 +0000", "from_user": "Swiftlogy", "from_user_id": 94201562, "from_user_id_str": "94201562", "from_user_name": "Squared Obsessed \\u03B5\\u00EF\\u0437", "geo": null, "id": 148839700692598800, "id_str": "148839700692598784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698455370/tumblr_lux0dzdSaV1r2rkq5o6_250_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698455370/tumblr_lux0dzdSaV1r2rkq5o6_250_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "#Swiftlogy Taylor finished Speak Now tour in the USA with two sold out concerts at Madison Square Garden!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:43 +0000", "from_user": "esbeJr", "from_user_id": 190141847, "from_user_id_str": "190141847", "from_user_name": "ESBE", "geo": null, "id": 148839697249075200, "id_str": "148839697249075201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1651588137/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651588137/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "http://t.co/hjnHLLSY @optimustrill", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:42 +0000", "from_user": "sportistnews", "from_user_id": 256919568, "from_user_id_str": "256919568", "from_user_name": "sportist", "geo": null, "id": 148839693327413250, "id_str": "148839693327413249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1442799074/120logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1442799074/120logo_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "#USApro host cities Link: http://t.co/gDhGTTZi #cycling #tdf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:42 +0000", "from_user": "toddgriffin100", "from_user_id": 308871398, "from_user_id_str": "308871398", "from_user_name": "Todd Griffin", "geo": null, "id": 148839692438208500, "id_str": "148839692438208513", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1527128499/TimesLeadericon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1527128499/TimesLeadericon_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @NealBradley: Murray State debuts at #22 in the latest Coaches Poll from ESPN/USA Today. http://t.co/dZO7wcbA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:42 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148839690743726080, "id_str": "148839690743726080", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "AMANDA USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:42 +0000", "from_user": "UTEPAthletics", "from_user_id": 27604209, "from_user_id_str": "27604209", "from_user_name": "UTEP Miners", "geo": null, "id": 148839690693390340, "id_str": "148839690693390336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1487152367/picktwit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1487152367/picktwit_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "UTEP's Julian Washburn was selected C-USA Freshman of the Week for the 2nd time in a row on Monday. http://t.co/reVTBe9E #minerstrong", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:41 +0000", "from_user": "UnTalGus", "from_user_id": 181352514, "from_user_id_str": "181352514", "from_user_name": "gustavo ivan flores", "geo": null, "id": 148839689363783680, "id_str": "148839689363783680", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698647573/Foto_del_d_a_05-12-11_a_la_s__20.24_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698647573/Foto_del_d_a_05-12-11_a_la_s__20.24_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @_Adicta: TU LA QUE LEE ESTE TWEET USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:41 +0000", "from_user": "pubzine", "from_user_id": 231152451, "from_user_id_str": "231152451", "from_user_name": "Pub lettoriallaspina", "geo": null, "id": 148839687803506700, "id_str": "148839687803506688", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1673283906/pub_logo_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673283906/pub_logo_small_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Dopo l'Europa l'indagine su editori ebook si estende agli USA http://t.co/ucg9IYnf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:41 +0000", "from_user": "restarteiroos", "from_user_id": 181776430, "from_user_id_str": "181776430", "from_user_name": "brendac. do thomas", "geo": null, "id": 148839687006584830, "id_str": "148839687006584832", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1588689743/restart_divulg2011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1588689743/restart_divulg2011_normal.jpg", "source": "<a href="http://twitpic.com" rel="nofollow">Twitpic</a>", "text": "RT @PeLuMiAngel: BG : @restarteiroos , vai em + view full size e usa em sidebar transparente, espero que goxxte brenda s2' http://t.co/P3LxXEo8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:41 +0000", "from_user": "GabriellAmor_", "from_user_id": 358873321, "from_user_id_str": "358873321", "from_user_name": "Est. DETROIT1996", "geo": null, "id": 148839685970595840, "id_str": "148839685970595840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699385404/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699385404/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@MyStoriesBook: The different about asian and USA : asian = :) usa = (:\\u201D dont qet it ?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:40 +0000", "from_user": "Lex_BlazedUp_", "from_user_id": 246600722, "from_user_id_str": "246600722", "from_user_name": "Real Recognize Real ", "geo": null, "id": 148839685509222400, "id_str": "148839685509222400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688798765/IMG00712-20111212-0626_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688798765/IMG00712-20111212-0626_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "When a Nigga Try To put another Nigga Down To Make himself Look better to a female usa #BitchNiggasWitNoGame", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:40 +0000", "from_user": "laubrouillet", "from_user_id": 61448320, "from_user_id_str": "61448320", "from_user_name": "Laurent Brouillet", "geo": null, "id": 148839684095741950, "id_str": "148839684095741953", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/339256248/Anniv_Baptiste_cut_twit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/339256248/Anniv_Baptiste_cut_twit_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Oh oh oh (TBWA\\Media Arts Lab, USA) \\nhttp://t.co/iJzwGedm\\n#in", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:40 +0000", "from_user": "Nikoletkf", "from_user_id": 431699559, "from_user_id_str": "431699559", "from_user_name": "Nikole Brunton", "geo": null, "id": 148839683055566850, "id_str": "148839683055566849", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681028267/large_35448_102709169781436_100001270599850_15268_6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681028267/large_35448_102709169781436_100001270599850_15268_6_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Umarex Beretta 92 Semi-Automatic .177 Caliber CO2 Pistol With Nickel Finish Md: 2253001.: Umarex Beretta 92 Semi... http://t.co/zoBryE1c", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:39 +0000", "from_user": "fbetkowski", "from_user_id": 179714031, "from_user_id_str": "179714031", "from_user_name": "Frank Betkowski", "geo": null, "id": 148839678634762240, "id_str": "148839678634762240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1123953123/fbetkowski_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1123953123/fbetkowski_normal.gif", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "New publication: IFRS Project Insights Update: Financial Instruments \\u2014 Impairment: Discusses the November 9\\u201310,... http://t.co/TLLYaUFC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:38 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148839675673591800, "id_str": "148839675673591808", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "PROSTITUTA USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:36 +0000", "from_user": "laudamus2004", "from_user_id": 397593012, "from_user_id_str": "397593012", "from_user_name": "Daniel", "geo": null, "id": 148839666987184130, "id_str": "148839666987184128", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1605131046/_________________________02_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1605131046/_________________________02_normal.jpg", "source": "<a href="http://www.cubadebate.cu" rel="nofollow">Cubadebate</a>", "text": "RT @cubadebate: #EEUU abandona #Iraq pero deja miles de mercenarios desplegados http://t.co/WvfKeobd #USA #Obama", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:36 +0000", "from_user": "SaHanzen", "from_user_id": 202361579, "from_user_id_str": "202361579", "from_user_name": "Sabrina Hanzen", "geo": null, "id": 148839664613199870, "id_str": "148839664613199872", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1599796312/a327510d-b101-49b1-aba6-dd093e677d58_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599796312/a327510d-b101-49b1-aba6-dd093e677d58_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @comedia_gospel: crente gremista n\\u00E3o acredita em papai noel porque ele usa um uniforme ''colorado'' #LLOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:35 +0000", "from_user": "cristiancas_", "from_user_id": 127137263, "from_user_id_str": "127137263", "from_user_name": "cristian cas", "geo": null, "id": 148839664516739070, "id_str": "148839664516739072", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1412850833/IMG3411A_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1412850833/IMG3411A_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "esse povo q usa brinco de ziper nao merece viver", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:34 +0000", "from_user": "robenajbvgentry", "from_user_id": 277670628, "from_user_id_str": "277670628", "from_user_name": "robena gentry", "geo": null, "id": 148839659269660670, "id_str": "148839659269660672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1678876850/1170300_important_call_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678876850/1170300_important_call_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Diet Doc HCG Diet & Weight Loss - The Lowest Priced Medically, Supervised hCG Diet Program in the USA: A few mon... http://t.co/EkrHL1fR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:32 +0000", "from_user": "mattbrant1981", "from_user_id": 147927884, "from_user_id_str": "147927884", "from_user_name": "Matt Brantingham", "geo": null, "id": 148839651757670400, "id_str": "148839651757670400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/930462425/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/930462425/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@cultofmac: New post: Unlocked T-Mobile iPhones Get Upgraded To 3G Speeds In Some Parts Of USA http://t.co/dTcJVY8I\\u201D #ilovecultofmac", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:32 +0000", "from_user": "hgfun", "from_user_id": 50608849, "from_user_id_str": "50608849", "from_user_name": "eric rulier", "geo": null, "id": 148839651342417920, "id_str": "148839651342417920", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1150937149/HGfun_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1150937149/HGfun_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @5emeVitesse: Usa : Obama signe la loi sur la d\\u00E9tention ind\\u00E9finie et la torture http://t.co/9Wr5L0Cb via @AddThis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:32 +0000", "from_user": "miicaelarolleri", "from_user_id": 223312570, "from_user_id_str": "223312570", "from_user_name": "Mica_Pauliter", "geo": null, "id": 148839651183038460, "id_str": "148839651183038464", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702279675/Tapa_2520P_2520Chaves_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702279675/Tapa_2520P_2520Chaves_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"Que malos son yo lo quiero a peter\" y le digo por que y dice \"por que es gracioso cuando usa las plumas de mujer en la cabeza\" tiene 4 a\\u00F1os", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:32 +0000", "from_user": "NormsBrightIdea", "from_user_id": 430407404, "from_user_id_str": "430407404", "from_user_name": "Normandy Piccolo", "geo": null, "id": 148839650864275460, "id_str": "148839650864275456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1679223062/Normandy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679223062/Normandy_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "FYI...Law and Order Crimiinal Intent, with Chris Noth, marathon on USA Network.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:32 +0000", "from_user": "feeapple", "from_user_id": 40326341, "from_user_id_str": "40326341", "from_user_name": "Felipe Domingues", "geo": null, "id": 148839650176417800, "id_str": "148839650176417792", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689428847/386308_326621170683347_100000064014445_1378816_673131510_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689428847/386308_326621170683347_100000064014445_1378816_673131510_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:32 +0000", "from_user": "astridvprovost", "from_user_id": 277920506, "from_user_id_str": "277920506", "from_user_name": "astrid provost", "geo": null, "id": 148839650058965000, "id_str": "148839650058964992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1678877843/1170492_young_woman_smiling_at_camera_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678877843/1170492_young_woman_smiling_at_camera_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Diet Doc HCG Diet & Weight Loss - The Lowest Priced Medically, Supervised hCG Diet Program in the USA: A few mon... http://t.co/ujLgnErw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:31 +0000", "from_user": "robsica", "from_user_id": 161838894, "from_user_id_str": "161838894", "from_user_name": "Rob Sica", "geo": null, "id": 148839646216986620, "id_str": "148839646216986625", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1433245905/me.and.cat2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1433245905/me.and.cat2_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Bresson at the National Gallery http://t.co/MYiYGJ9G", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:31 +0000", "from_user": "edsona366", "from_user_id": 230848180, "from_user_id_str": "230848180", "from_user_name": "EDSON 36", "geo": null, "id": 148839645986291700, "id_str": "148839645986291714", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@Fernanda_Gentil fernanda que numero vc cal\\u00E7a, por favor usa scarpin no seu programa e mostra eles, adoraria cheirar seu chulesinho", "to_user": "Fernanda_Gentil", "to_user_id": 133687873, "to_user_id_str": "133687873", "to_user_name": "Fernanda Gentil"}, +{"created_at": "Mon, 19 Dec 2011 18:58:31 +0000", "from_user": "keliovimcmullin", "from_user_id": 277681553, "from_user_id_str": "277681553", "from_user_name": "keli mcmullin", "geo": null, "id": 148839644363108350, "id_str": "148839644363108353", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1678878546/1171215_where_are_you_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678878546/1171215_where_are_you_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Diet Doc HCG Diet & Weight Loss - The Lowest Priced Medically, Supervised hCG Diet Program in the USA: A few mon... http://t.co/ZTFw9SCr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:31 +0000", "from_user": "Faysaldhk", "from_user_id": 239902064, "from_user_id_str": "239902064", "from_user_name": "Ahmed Faysal", "geo": null, "id": 148839643780096000, "id_str": "148839643780096001", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1373731418/Hydrangeas_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1373731418/Hydrangeas_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @StateDept: #SecClinton delivers remarks on Women, Peace and Security at 2:30 PM EST today: http://t.co/UC8ntoKO | More: http://t.co/7R3W0rtE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:30 +0000", "from_user": "SgtDizzyPepper", "from_user_id": 116791875, "from_user_id_str": "116791875", "from_user_name": "Saide Guerrero", "geo": null, "id": 148839643125792770, "id_str": "148839643125792768", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1630638192/Foto1881_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630638192/Foto1881_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ALFAREROS: \"ALFAREROS HOY EN NUESTRA FE EN VIVO\" EWTN \\n (especial de navidad) USA 6:00PM- MEXICO 5:00PM- BOGOTA 6:00PM\\n MADRID 12:00AM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:29 +0000", "from_user": "Cherellewvl", "from_user_id": 440151989, "from_user_id_str": "440151989", "from_user_name": "Cherelle Volpicelli", "geo": null, "id": 148839639405432830, "id_str": "148839639405432834", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700430626/large_DSC_0955_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700430626/large_DSC_0955_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Born In The USA (12\" Freedom mix): http://t.co/voyQ7lcQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:29 +0000", "from_user": "MRXTAM", "from_user_id": 131673434, "from_user_id_str": "131673434", "from_user_name": "ROLANDO RIVERA", "geo": null, "id": 148839638352666620, "id_str": "148839638352666625", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1577285413/9KGar9eX_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1577285413/9KGar9eX_normal", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@ROSAHG74 @PedroFerriz desde hace mucho dejo de ser comunicador, usa los medios para dar sus \"comentarios\" y se molesta sino estas d acuerdo", "to_user": "ROSAHG74", "to_user_id": 197609525, "to_user_id_str": "197609525", "to_user_name": "Rosa ", "in_reply_to_status_id": 148838779375980540, "in_reply_to_status_id_str": "148838779375980544"}, +{"created_at": "Mon, 19 Dec 2011 18:58:29 +0000", "from_user": "mayrabsfitts", "from_user_id": 277874670, "from_user_id_str": "277874670", "from_user_name": "mayra fitts", "geo": null, "id": 148839638260400130, "id_str": "148839638260400128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1678879361/1183984_mysterious_girl_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678879361/1183984_mysterious_girl_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Diet Doc HCG Diet & Weight Loss - The Lowest Priced Medically, Supervised hCG Diet Program in the USA: A few mon... http://t.co/q3gHEKww", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:29 +0000", "from_user": "andre23p", "from_user_id": 224037275, "from_user_id_str": "224037275", "from_user_name": "andrea pe\\u00F1a", "geo": null, "id": 148839636305846270, "id_str": "148839636305846272", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1305106498/IMG00877-20110306-1801_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1305106498/IMG00877-20110306-1801_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "en Venezuela cancelan las clases por lluvia y en USA cancelan las clases por nieve #prefieromilvecesmasnievequelluvia", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:28 +0000", "from_user": "CIPEglobal", "from_user_id": 67101140, "from_user_id_str": "67101140", "from_user_name": "CIPE", "geo": null, "id": 148839635114668030, "id_str": "148839635114668032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1173591332/CIPEfacebook_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1173591332/CIPEfacebook_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @StateDept: #SecClinton delivers remarks on Women, Peace and Security at 2:30 PM EST today: http://t.co/UC8ntoKO | More: http://t.co/7R3W0rtE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:27 +0000", "from_user": "jetcitystar", "from_user_id": 209492408, "from_user_id_str": "209492408", "from_user_name": "Isaac Alexander", "geo": null, "id": 148839630727417860, "id_str": "148839630727417856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1320596010/jetcity-icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1320596010/jetcity-icon_normal.jpg", "source": "<a href="http://www.socialflow.com" rel="nofollow">SocialFlow</a>", "text": "RT @SPACEdotcom: Station Crew Set To Launch To A New Home For The Holidays http://t.co/225I3WNf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:27 +0000", "from_user": "ThiaguinMattos", "from_user_id": 264510179, "from_user_id_str": "264510179", "from_user_name": "Thiago Mattos", "geo": null, "id": 148839630677098500, "id_str": "148839630677098496", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693032447/many_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693032447/many_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "meu pai falou que 5 pras 17:00 ele queria usa aqui acho que ele dormiu ;/", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:26 +0000", "from_user": "frenchfan1D", "from_user_id": 382007875, "from_user_id_str": "382007875", "from_user_name": "ali payne \\u2661", "geo": null, "id": 148839624301744130, "id_str": "148839624301744128", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699018204/tumblr_lrwlblzhtf1r296ljo2_250_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699018204/tumblr_lrwlblzhtf1r296ljo2_250_normal.gif", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @ANABRICOT: USA: Chris Brown, Justin Bieber, Lady Gaga, Usher, Rihanna,.. France: Colonel Reyel, Zaz, Christophe Willem, Gr\\u00E9goire,.. Qui veut d\\u00E9m\\u00E9nager?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:25 +0000", "from_user": "Tabathahlr", "from_user_id": 430049532, "from_user_id_str": "430049532", "from_user_name": "Tiffanie Scrim", "geo": null, "id": 148839622523367420, "id_str": "148839622523367424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677525883/mdzv5345iu_112643774-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677525883/mdzv5345iu_112643774-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Get'm Get'm Wear 2-Inch Guitar Strap (Sergeant White): Top Quality Craftmanship, Hand Made in the USA, Longest S... http://t.co/cHTkeLxF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:24 +0000", "from_user": "MoversVideoGame", "from_user_id": 290030478, "from_user_id_str": "290030478", "from_user_name": "Richard Floyd", "geo": null, "id": 148839617490194430, "id_str": "148839617490194432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1331917628/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1331917628/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #5: Xbox 360 Rechargeable Battery 2-Pack: Xbox 360 Rechargeable Battery 2-Pack by Microsoft Software ... http://t.co/NLLcciyC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:24 +0000", "from_user": "brenda_ingrids2", "from_user_id": 318202245, "from_user_id_str": "318202245", "from_user_name": "Brenda I.", "geo": null, "id": 148839616928165900, "id_str": "148839616928165888", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1558241935/P050611_13.56_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1558241935/P050611_13.56_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @CantaCrente: Deus usa os pequenos detalhes para realizar grandes feitos para Sua gl\\u00F3ria.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:24 +0000", "from_user": "seupudim", "from_user_id": 178404457, "from_user_id_str": "178404457", "from_user_name": "F\\u00E1bio Augusto ", "geo": null, "id": 148839616311595000, "id_str": "148839616311595008", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676137368/PQAAAD4qUpJq7wMJvE_fS79-xrq-mwZQY7hnf3NP21Gh4jBuUF6vG3TtpmNrV9gktNe3kdXourAnXT0BciJ6tNGba0AAm1T1UDZQ6gaxCi7vI_YIhGWmiXMuLqqw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676137368/PQAAAD4qUpJq7wMJvE_fS79-xrq-mwZQY7hnf3NP21Gh4jBuUF6vG3TtpmNrV9gktNe3kdXourAnXT0BciJ6tNGba0AAm1T1UDZQ6gaxCi7vI_YIhGWmiXMuLqqw_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:23 +0000", "from_user": "visokazes", "from_user_id": 419548999, "from_user_id_str": "419548999", "from_user_name": "Dita Felten", "geo": null, "id": 148839613623054340, "id_str": "148839613623054336", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657546396/19_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657546396/19_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @dixusafa: cheap auto insurance nova scotia http://t.co/DFcJW13V", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:23 +0000", "from_user": "ItahSvn", "from_user_id": 130586524, "from_user_id_str": "130586524", "from_user_name": "mon", "geo": null, "id": 148839612771602430, "id_str": "148839612771602432", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1661275084/pizap.com13224280855311_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661275084/pizap.com13224280855311_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Amor : sentimiento que usa el coraz\\u00F3n y no la inteligencia.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:23 +0000", "from_user": "_Uma_cantora", "from_user_id": 415133641, "from_user_id_str": "415133641", "from_user_name": "Uma cantora citou'", "geo": null, "id": 148839612142460930, "id_str": "148839612142460929", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699248451/selly_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699248451/selly_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Demi_my_smile: Demi n\\u00E3o usa mais o anel da pureza, mas disse que a promessa que fez quando come\\u00E7ou a us\\u00E1-lo ainda permanece..#DemiFatcs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:23 +0000", "from_user": "WillyARadio", "from_user_id": 50914819, "from_user_id_str": "50914819", "from_user_name": "Willy Alzate", "geo": null, "id": 148839610670268400, "id_str": "148839610670268416", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1683359894/avartar_don_ramon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683359894/avartar_don_ramon_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Si usted tiene moto y usa de esos cascos gigantes pues no me salude, quedo en las mismas.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:23 +0000", "from_user": "DTNUSA", "from_user_id": 219913533, "from_user_id_str": "219913533", "from_user_name": "DTN USA", "geo": null, "id": 148839610489901060, "id_str": "148839610489901059", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696502703/DTN_USA_DEC_16_2011_CORRECTED_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696502703/DTN_USA_DEC_16_2011_CORRECTED_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "DTN USA: City Room: No Bail for Man Accused of Burning Woman Alive: A man accused of setting a woman on fire ins... http://t.co/iwRDlpG0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:22 +0000", "from_user": "afcalessandro", "from_user_id": 360924553, "from_user_id_str": "360924553", "from_user_name": "Alessandro Schmitz", "geo": null, "id": 148839609823002620, "id_str": "148839609823002626", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693911009/tumblr_kwvi2iiAku1qzcg4fo1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693911009/tumblr_kwvi2iiAku1qzcg4fo1_500_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Nois usa , nois porta\\nE n\\u00E3o tem medo de gastar\\nQuem v\\u00EA portando Oakley joga os dedos pro ar\\nEssa \\u00E9 pra nois mesmo ta ligado ? \\u266B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:22 +0000", "from_user": "virgiemmarron", "from_user_id": 305757047, "from_user_id_str": "305757047", "from_user_name": "Virgie Marron", "geo": null, "id": 148839607767801860, "id_str": "148839607767801857", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698633651/imagesCAXJE67E_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698633651/imagesCAXJE67E_normal", "source": "<a href="http://42lv5500tv.com" rel="nofollow">42lv5500tvdotcom</a>", "text": "Where In USA Can I Get BLACKBERRY CURVE 8330-Rubber Black Hard Case for BlackBerry Curve 833 http://t.co/m1cSXOYr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:20 +0000", "from_user": "qetezypapat", "from_user_id": 431404597, "from_user_id_str": "431404597", "from_user_name": "Lovedaia Boyett", "geo": null, "id": 148839598867484670, "id_str": "148839598867484672", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680814862/9_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680814862/9_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @vadufyx: payday loan advance columbus ohio http://t.co/tNec9BV3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:19 +0000", "from_user": "sbdr01", "from_user_id": 169500159, "from_user_id_str": "169500159", "from_user_name": "RODOLFO DIEZB. SOSA", "geo": null, "id": 148839597093290000, "id_str": "148839597093289985", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1145663486/DSC00009_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1145663486/DSC00009_normal.JPG", "source": "<a href="http://www.yoono.com" rel="nofollow">yoono</a>", "text": "@Carliux05 \\u00AC\\u00AC 5 o 6 veces o sea toda tu estadia jajaja en el cbtis...!!! jajajja...! usa tus encantos nena...! acecarte a un caballero y di", "to_user": "Carliux05", "to_user_id": 108667216, "to_user_id_str": "108667216", "to_user_name": "Carla Fernandez", "in_reply_to_status_id": 148839167906951170, "in_reply_to_status_id_str": "148839167906951168"}, +{"created_at": "Mon, 19 Dec 2011 18:58:18 +0000", "from_user": "dacevedoVE", "from_user_id": 47378405, "from_user_id_str": "47378405", "from_user_name": "Daniel Acevedo", "geo": null, "id": 148839591812677630, "id_str": "148839591812677634", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1646396516/246668_10150261662637176_638377175_8921070_3319156_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646396516/246668_10150261662637176_638377175_8921070_3319156_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "La gente todav\\u00EDa usa mousepad? Eso es tan de los 90' RT @edvill: MousePads con mis ilustraciones, ya los viste? http://t.co/twECydhq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:18 +0000", "from_user": "ahylofebu", "from_user_id": 315186651, "from_user_id_str": "315186651", "from_user_name": "Wilsey Guillermo", "geo": null, "id": 148839591141584900, "id_str": "148839591141584896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1446666519/1226_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1446666519/1226_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "1860 ( I Mille di Garibaldi ) ( Sicilia Eighteen Sixty ) [ NON-USA FORMAT, PAL, Reg.0 Import - Italy ] (DVD) http://t.co/6PJAcYwf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:18 +0000", "from_user": "Amsterdam305410", "from_user_id": 30322768, "from_user_id_str": "30322768", "from_user_name": "AMEN\\u2714 Verified ", "geo": null, "id": 148839590059450370, "id_str": "148839590059450368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698521422/331615629_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698521422/331615629_normal.jpg", "source": "<a href="http://twitpic.com" rel="nofollow">Twitpic</a>", "text": "http://t.co/Vvy381IG - @KDTREY5 KEEP UP THE GOOD WORK,USA CW IS FIYAH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:17 +0000", "from_user": "PatryMusic97", "from_user_id": 329112697, "from_user_id_str": "329112697", "from_user_name": "The Little Star Girl", "geo": null, "id": 148839586171330560, "id_str": "148839586171330561", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687516969/bQRMra17_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687516969/bQRMra17_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "@NoeliaMarsEdShe lo encontre!! pone que se usa en logica, el signo de la negacion (?) no tengo ni idea de que es", "to_user": "NoeliaMarsEdShe", "to_user_id": 294266644, "to_user_id_str": "294266644", "to_user_name": "Noelia D\\u00EDaz Rocha", "in_reply_to_status_id": 148839087464398850, "in_reply_to_status_id_str": "148839087464398849"}, +{"created_at": "Mon, 19 Dec 2011 18:58:17 +0000", "from_user": "nocyxap", "from_user_id": 432032693, "from_user_id_str": "432032693", "from_user_name": "Dereck Mcleese", "geo": null, "id": 148839585705754620, "id_str": "148839585705754624", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681937943/7_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681937943/7_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @fikotosob: cash converter loans http://t.co/5Rq5YTic", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:16 +0000", "from_user": "MynusCarlos", "from_user_id": 275284877, "from_user_id_str": "275284877", "from_user_name": "Mynus Carlos", "geo": null, "id": 148839583503753200, "id_str": "148839583503753216", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696806760/318510_166487546763899_100002079641234_348375_2117458082_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696806760/318510_166487546763899_100002079641234_348375_2117458082_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @radionovavida: #recomendo com can\\u00E7\\u00F5es que v\\u00E3o falar ao seu cora\\u00E7\\u00E3o um dos melhores lan\\u00E7amentos do ano @SamuelBarbosaSB USA MINHA VIDA @GrupoCanZion", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:15 +0000", "from_user": "ocnjradio", "from_user_id": 185300285, "from_user_id_str": "185300285", "from_user_name": "ocnjradio.com", "geo": null, "id": 148839580223815680, "id_str": "148839580223815681", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1125960695/OCNJ-200x200_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1125960695/OCNJ-200x200_normal.jpg", "source": "<a href="http://ocnjradio.com" rel="nofollow">Ocean City NJ Radio</a>", "text": "Now Playing on http://t.co/vGmhO5ax: USA-IRN Radio News - USA Radio News Break", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:15 +0000", "from_user": "FredNetRadio", "from_user_id": 33910303, "from_user_id_str": "33910303", "from_user_name": "FredNetRadio", "geo": null, "id": 148839580194439170, "id_str": "148839580194439168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/188307514/FNR-for-Twitter_normal.GIF", "profile_image_url_https": "https://si0.twimg.com/profile_images/188307514/FNR-for-Twitter_normal.GIF", "source": "<a href="http://frednetradio.com" rel="nofollow">FredNetRadio</a>", "text": "Now Playing on http://t.co/YHoCv8FN: USA-IRN Radio News - USA Radio News Break", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:15 +0000", "from_user": "BaltNetRadio", "from_user_id": 195116712, "from_user_id_str": "195116712", "from_user_name": "Baltimore Net Radio", "geo": null, "id": 148839580190261250, "id_str": "148839580190261249", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1192340235/Baltnetradio_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1192340235/Baltnetradio_normal.jpg", "source": "<a href="http://baltimorenetradio.com" rel="nofollow">Now Playing BNR</a>", "text": "Now Playing on BaltimoreNetRadio: USA-IRN Radio News - USA Radio News Break", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:13 +0000", "from_user": "Nate__James", "from_user_id": 39987236, "from_user_id_str": "39987236", "from_user_name": "Nate 'SugaJack'James", "geo": null, "id": 148839572044922880, "id_str": "148839572044922881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1562425351/Nate__James_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1562425351/Nate__James_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@dawnrobinson_ getting ready for pano in my dressing listening to my girl!! #followMe!! Coming to USA in 2012!! #reunion xxx", "to_user": "dawnrobinson_", "to_user_id": 127146515, "to_user_id_str": "127146515", "to_user_name": "Dawn Robinson"}, +{"created_at": "Mon, 19 Dec 2011 18:58:13 +0000", "from_user": "Apenas1Tequila", "from_user_id": 57694104, "from_user_id_str": "57694104", "from_user_name": "tequila da hellen", "geo": null, "id": 148839571533201400, "id_str": "148839571533201408", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693122197/341039_209533042462279_100002167551700_451259_571178296_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693122197/341039_209533042462279_100002167551700_451259_571178296_o_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ESSESGAYS: \"como vc pode gostar de tatuagem e alargador? que coisa feia\" disse a pessoa que gosta de funk usa shortinho de 5cm e tem piercing no umbigo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:12 +0000", "from_user": "la_pennysaver", "from_user_id": 125620608, "from_user_id_str": "125620608", "from_user_name": "LA PennySaver", "geo": null, "id": 148839567376662530, "id_str": "148839567376662528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/770000462/psusa_bigger_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/770000462/psusa_bigger_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "loving English Bulldog Puppies ready to go: loving English Bulldog Puppies ready to go\\n $110.00 http://t.co/64YzViKx - Los Angeles ads", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:12 +0000", "from_user": "Dinossaurelius", "from_user_id": 88059159, "from_user_id_str": "88059159", "from_user_name": "Dino", "geo": null, "id": 148839566588133380, "id_str": "148839566588133376", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1591954235/dinotrans_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591954235/dinotrans_normal.jpg", "source": "<a href="http://rockmelt.com" rel="nofollow">RockMelt</a>", "text": "Certeza? Fa\\u00E7o mais contatos e trabalho mais com ajuda das redes. N\\u00E3o \\u00E9 porque muita gente as usa pra perder tempo? @Djaguito @Greendevl", "to_user": "Djaguito", "to_user_id": 251409317, "to_user_id_str": "251409317", "to_user_name": "Leandro", "in_reply_to_status_id": 148839368684081150, "in_reply_to_status_id_str": "148839368684081152"}, +{"created_at": "Mon, 19 Dec 2011 18:58:11 +0000", "from_user": "SPACEdotcom", "from_user_id": 15431856, "from_user_id_str": "15431856", "from_user_name": "SPACE.com", "geo": null, "id": 148839563815686140, "id_str": "148839563815686144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1218223481/SPACE-profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218223481/SPACE-profile_normal.jpg", "source": "<a href="http://www.socialflow.com" rel="nofollow">SocialFlow</a>", "text": "Station Crew Set To Launch To A New Home For The Holidays http://t.co/225I3WNf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:11 +0000", "from_user": "JulianaAkari", "from_user_id": 377024264, "from_user_id_str": "377024264", "from_user_name": "Juliana Akari", "geo": null, "id": 148839560548319230, "id_str": "148839560548319232", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1635754415/056640593_197554060309526_558477_1650227_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635754415/056640593_197554060309526_558477_1650227_o_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Fui desafiada por ? Jamil Saleh\\nEstado Civil: Solteira\\nVoc\\u00EA usa all star: N\\u00E3o\\nVoc\\u00EA ja FUGIU de casa: n\\u00E3o\\nVoc\\u00EA est\\u00E1... http://t.co/0QCBwDeE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:10 +0000", "from_user": "edypicturesthis", "from_user_id": 275803463, "from_user_id_str": "275803463", "from_user_name": "Edna", "geo": null, "id": 148839558786719740, "id_str": "148839558786719745", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693804047/IMG_0225_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693804047/IMG_0225_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Getting my Mr Big fix on USA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:10 +0000", "from_user": "injury_law_usa", "from_user_id": 319332177, "from_user_id_str": "319332177", "from_user_name": "Injury Lawyers USA", "geo": null, "id": 148839556626649100, "id_str": "148839556626649088", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1400738457/usa_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1400738457/usa_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Injury Lawyers GA USA -- http://t.co/Ozox1aLv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:10 +0000", "from_user": "vesumymy", "from_user_id": 428699241, "from_user_id_str": "428699241", "from_user_name": "Godrick Mcgarrell", "geo": null, "id": 148839555913621500, "id_str": "148839555913621504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674658356/1207_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674658356/1207_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @qotyvogih: free casino bonus usa http://t.co/ysI4WPGs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:09 +0000", "from_user": "directnewsart", "from_user_id": 108008516, "from_user_id_str": "108008516", "from_user_name": "Direct News Articles", "geo": null, "id": 148839552629481470, "id_str": "148839552629481472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Watch Chicago Blackhawks vs Calgary Flames Live Stream Hockey USA NHL National Hockey League\\u2026 http://t.co/BRBJQ6HN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:08 +0000", "from_user": "GazelleMagazin", "from_user_id": 72553962, "from_user_id_str": "72553962", "from_user_name": "Gazelle Magazin", "geo": null, "id": 148839551035641860, "id_str": "148839551035641856", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/429755155/Gazelle-Logo_2_cut_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/429755155/Gazelle-Logo_2_cut_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Der neue TV-Serienhit aus den USA \\u00FCber das Alltagsleben amerikanischer Muslime. Was denkt ihr, brauchen wir sowas... http://t.co/4QtUns7d", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:08 +0000", "from_user": "CashmereandCamo", "from_user_id": 241789516, "from_user_id_str": "241789516", "from_user_name": "Brandy", "geo": null, "id": 148839549194338300, "id_str": "148839549194338306", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1437280809/PINUP083_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1437280809/PINUP083_normal.JPG", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Love this! Merry Christmas BERETTA USA!! http://t.co/LeIss2sn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:07 +0000", "from_user": "juliag_ribeiro", "from_user_id": 340689092, "from_user_id_str": "340689092", "from_user_name": "J\\u00FAlia Ribeiro", "geo": null, "id": 148839544349921280, "id_str": "148839544349921280", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1663141225/jujis_normal.jpg-large", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663141225/jujis_normal.jpg-large", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @PRETOSCO: \"Que rid\\u00EDculo voc\\u00EA usa \\u00F3culos escuros a noite\" \"Sou cego\" ~sil\\u00EAncio~", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:07 +0000", "from_user": "biamendesr", "from_user_id": 58825561, "from_user_id_str": "58825561", "from_user_name": "Beatriz Mendes ", "geo": null, "id": 148839544106647550, "id_str": "148839544106647553", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676331997/defrtyui_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676331997/defrtyui_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "eu nem sei usa salto mano, SOU DA RUA NEGO!!!!!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:06 +0000", "from_user": "CillaTirta", "from_user_id": 72496349, "from_user_id_str": "72496349", "from_user_name": "Pricilla Tirta Dwi", "geo": null, "id": 148839539765542900, "id_str": "148839539765542913", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1594739354/iklaaaaaaaaan_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1594739354/iklaaaaaaaaan_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@bob_nurofam Sudah tidur aja., nda usa mikirin aku sampe segitunya., aku tetep akan sama bang adex kok, :p ahahaha", "to_user": "bob_nurofam", "to_user_id": 73687649, "to_user_id_str": "73687649", "to_user_name": "Julhelman_Bob", "in_reply_to_status_id": 148836136142389250, "in_reply_to_status_id_str": "148836136142389249"}, +{"created_at": "Mon, 19 Dec 2011 18:58:05 +0000", "from_user": "latoniaidsvilla", "from_user_id": 305842659, "from_user_id_str": "305842659", "from_user_name": "Latonia Villanueva", "geo": null, "id": 148839538188496900, "id_str": "148839538188496898", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695225341/imagesCA53E30D_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695225341/imagesCA53E30D_normal", "source": "<a href="http://aircompressorpaintball.com" rel="nofollow">aircompressorpaintballdotcom</a>", "text": "Discounted Iro-Ironman ATIS 1000 AB Training System Inversion Therapy Table Wholesale USA http://t.co/AjxMf6dZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:04 +0000", "from_user": "learningmoresjp", "from_user_id": 405448888, "from_user_id_str": "405448888", "from_user_name": "learningmoresjp", "geo": null, "id": 148839533507645440, "id_str": "148839533507645440", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1623456138/3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1623456138/3_normal.png", "source": "<a href="http://pha22.net/twitterbot/" rel="nofollow">Easybotter</a>", "text": "\\u4EE5\\u4E0B\\u306F\\u3001\\u30C8\\u30D5\\u30EB(R) Test\\uFF08\\u9032\\u5B66\\u30FB\\u7559\\u5B66\\u5411\\u3051\\u306E\\u82F1\\u8A9E\\u30C6\\u30B9\\u30C8\\uFF09\\u3067\\u540C\\u3058\\u82F1\\u8A9E\\u529B\\u3092\\u6301\\u3063\\u3066\\u3044\\u308B\\u4EBA\\u304C TOEIC \\u3092\\u53D7\\u3051\\u305F\\u5834\\u5408\\u3001\\u5F7C\\u3089\\u30FB\\u5F7C\\u5973\\u3089\\u306E\\u30B9\\u30B3\\u30A2\\u5206\\u5E03\\u304C\\u3069\\u306E\\u3088\\u3046\\u306B\\u306A\\u308B\\u306E\\u304B\\u3001USA Club \\u304C\\u5B9F\\u969B\\u306B\\u5272\\u308A\\u51FA\\u3057\\u305F\\u30C7\\u30FC\\u30BF\\u3092\\u5143\\u306B\\u30B0\\u30E9\\u30D5\\u5316\\u3057\\u305F\\u3082\\u306E\\u3067\\u3059\\u3002\\thttp://t.co/qpMurIyj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:03 +0000", "from_user": "Holleyzlm", "from_user_id": 431739673, "from_user_id_str": "431739673", "from_user_name": "Holley Bentz", "geo": null, "id": 148839529657278460, "id_str": "148839529657278465", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681113342/moqun4bvud_101997855-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681113342/moqun4bvud_101997855-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "EXEDY 05104 OEM Replacement Clutch Kit: EXEDY Globalparts Corporation (USA) is a wholly owned subsidiary of the ... http://t.co/wXQrOm0R", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:03 +0000", "from_user": "SaavyValuesChi", "from_user_id": 405197415, "from_user_id_str": "405197415", "from_user_name": "Saavy Values Chicago", "geo": null, "id": 148839528050868220, "id_str": "148839528050868224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1622861710/bright_lights_chi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622861710/bright_lights_chi_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Brittany Incredible group coupons up to three-quarters off. You cant whip that http://t.co/oO2yAIeQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:03 +0000", "from_user": "Ralph_ThatsLife", "from_user_id": 78199509, "from_user_id_str": "78199509", "from_user_name": "Raphael Gray", "geo": null, "id": 148839527677562880, "id_str": "148839527677562881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694221268/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694221268/profile_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @memphissports: Will Barton named Conference USA player of the week http://t.co/mOXdGPm0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:02 +0000", "from_user": "Adam_S_James", "from_user_id": 197523274, "from_user_id_str": "197523274", "from_user_name": "Adam James", "geo": null, "id": 148839525995651070, "id_str": "148839525995651072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693955890/DSCN1435_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693955890/DSCN1435_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @EIAgov: Today in #Energy: 1/4 of California's #electricity is from outside the State http://t.co/cQRzEO3w #natgas #coal #wind #solar", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:02 +0000", "from_user": "Alkhabbazzz", "from_user_id": 273082587, "from_user_id_str": "273082587", "from_user_name": "alkhabbaz.", "geo": null, "id": 148839523781062660, "id_str": "148839523781062657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1491865576/IMG00598-20110812-1745_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1491865576/IMG00598-20110812-1745_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SAIDYOUSIF: #Amnesty International calls on the immediate release of Zainab al-Khawaja in #Bahrain http://t.co/wIC63ymq\\n#Humanrights\\n#HRW\\n#USA\\n#US\\n#UN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:02 +0000", "from_user": "xCharlottexMBx", "from_user_id": 304635681, "from_user_id_str": "304635681", "from_user_name": "Charlotte Buffey", "geo": null, "id": 148839523470671870, "id_str": "148839523470671872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1601663561/DSCF1322_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601663561/DSCF1322_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@MindlessBhavior @mugoplayer Is this competitions for anyone or just USA residents ??? :)", "to_user": "MindlessBhavior", "to_user_id": 116325068, "to_user_id_str": "116325068", "to_user_name": "Mindless Behavior"}, +{"created_at": "Mon, 19 Dec 2011 18:58:01 +0000", "from_user": "dyldomyers21", "from_user_id": 425484211, "from_user_id_str": "425484211", "from_user_name": "Dylan richard myers", "geo": null, "id": 148839521440641020, "id_str": "148839521440641024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1667055903/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667055903/image_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @MSU_Basketball: #Spartans move up to No. 19 in AP Top 25 and No. 20 in ESPN/USA Today Coaches Poll.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:01 +0000", "from_user": "NAC8491", "from_user_id": 103937505, "from_user_id_str": "103937505", "from_user_name": "Mimi", "geo": null, "id": 148839520266240000, "id_str": "148839520266240000", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1635451411/Mimi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635451411/Mimi_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @martin_caparros: Hablando de construir memoria: en USA, parejas viejas q bailan sobre su tumba, ante sus parientes. Para q despues los recuerden asi.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:00 +0000", "from_user": "pau_cacho", "from_user_id": 308743960, "from_user_id_str": "308743960", "from_user_name": "henepeu.", "geo": null, "id": 148839514142547970, "id_str": "148839514142547968", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700873157/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700873157/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@lalodm3 JAJAJAJAJA si :) y para irme a usa \\o/", "to_user": "lalodm3", "to_user_id": 325342638, "to_user_id_str": "325342638", "to_user_name": "Lalo Diaz", "in_reply_to_status_id": 148839323146518530, "in_reply_to_status_id_str": "148839323146518528"}, +{"created_at": "Mon, 19 Dec 2011 18:58:00 +0000", "from_user": "DianaaMonsalve", "from_user_id": 319922210, "from_user_id_str": "319922210", "from_user_name": "Loading...", "geo": null, "id": 148839514054459400, "id_str": "148839514054459393", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691835692/303967_2422207677496_1320574453_32973432_1016958022_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691835692/303967_2422207677496_1320574453_32973432_1016958022_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @circotimia_: DIANA USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:58:04 +0000", "from_user": "learningmoresjp", "from_user_id": 405448888, "from_user_id_str": "405448888", "from_user_name": "learningmoresjp", "geo": null, "id": 148839533507645440, "id_str": "148839533507645440", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1623456138/3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1623456138/3_normal.png", "source": "<a href="http://pha22.net/twitterbot/" rel="nofollow">Easybotter</a>", "text": "\\u4EE5\\u4E0B\\u306F\\u3001\\u30C8\\u30D5\\u30EB(R) Test\\uFF08\\u9032\\u5B66\\u30FB\\u7559\\u5B66\\u5411\\u3051\\u306E\\u82F1\\u8A9E\\u30C6\\u30B9\\u30C8\\uFF09\\u3067\\u540C\\u3058\\u82F1\\u8A9E\\u529B\\u3092\\u6301\\u3063\\u3066\\u3044\\u308B\\u4EBA\\u304C TOEIC \\u3092\\u53D7\\u3051\\u305F\\u5834\\u5408\\u3001\\u5F7C\\u3089\\u30FB\\u5F7C\\u5973\\u3089\\u306E\\u30B9\\u30B3\\u30A2\\u5206\\u5E03\\u304C\\u3069\\u306E\\u3088\\u3046\\u306B\\u306A\\u308B\\u306E\\u304B\\u3001USA Club \\u304C\\u5B9F\\u969B\\u306B\\u5272\\u308A\\u51FA\\u3057\\u305F\\u30C7\\u30FC\\u30BF\\u3092\\u5143\\u306B\\u30B0\\u30E9\\u30D5\\u5316\\u3057\\u305F\\u3082\\u306E\\u3067\\u3059\\u3002\\thttp://t.co/qpMurIyj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:03 +0000", "from_user": "Holleyzlm", "from_user_id": 431739673, "from_user_id_str": "431739673", "from_user_name": "Holley Bentz", "geo": null, "id": 148839529657278460, "id_str": "148839529657278465", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681113342/moqun4bvud_101997855-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681113342/moqun4bvud_101997855-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "EXEDY 05104 OEM Replacement Clutch Kit: EXEDY Globalparts Corporation (USA) is a wholly owned subsidiary of the ... http://t.co/wXQrOm0R", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:03 +0000", "from_user": "SaavyValuesChi", "from_user_id": 405197415, "from_user_id_str": "405197415", "from_user_name": "Saavy Values Chicago", "geo": null, "id": 148839528050868220, "id_str": "148839528050868224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1622861710/bright_lights_chi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622861710/bright_lights_chi_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Brittany Incredible group coupons up to three-quarters off. You cant whip that http://t.co/oO2yAIeQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:03 +0000", "from_user": "Ralph_ThatsLife", "from_user_id": 78199509, "from_user_id_str": "78199509", "from_user_name": "Raphael Gray", "geo": null, "id": 148839527677562880, "id_str": "148839527677562881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694221268/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694221268/profile_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @memphissports: Will Barton named Conference USA player of the week http://t.co/mOXdGPm0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:02 +0000", "from_user": "Adam_S_James", "from_user_id": 197523274, "from_user_id_str": "197523274", "from_user_name": "Adam James", "geo": null, "id": 148839525995651070, "id_str": "148839525995651072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693955890/DSCN1435_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693955890/DSCN1435_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @EIAgov: Today in #Energy: 1/4 of California's #electricity is from outside the State http://t.co/cQRzEO3w #natgas #coal #wind #solar", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:02 +0000", "from_user": "Alkhabbazzz", "from_user_id": 273082587, "from_user_id_str": "273082587", "from_user_name": "alkhabbaz.", "geo": null, "id": 148839523781062660, "id_str": "148839523781062657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1491865576/IMG00598-20110812-1745_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1491865576/IMG00598-20110812-1745_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SAIDYOUSIF: #Amnesty International calls on the immediate release of Zainab al-Khawaja in #Bahrain http://t.co/wIC63ymq\\n#Humanrights\\n#HRW\\n#USA\\n#US\\n#UN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:02 +0000", "from_user": "xCharlottexMBx", "from_user_id": 304635681, "from_user_id_str": "304635681", "from_user_name": "Charlotte Buffey", "geo": null, "id": 148839523470671870, "id_str": "148839523470671872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1601663561/DSCF1322_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601663561/DSCF1322_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@MindlessBhavior @mugoplayer Is this competitions for anyone or just USA residents ??? :)", "to_user": "MindlessBhavior", "to_user_id": 116325068, "to_user_id_str": "116325068", "to_user_name": "Mindless Behavior"}, +{"created_at": "Mon, 19 Dec 2011 18:58:01 +0000", "from_user": "dyldomyers21", "from_user_id": 425484211, "from_user_id_str": "425484211", "from_user_name": "Dylan richard myers", "geo": null, "id": 148839521440641020, "id_str": "148839521440641024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1667055903/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667055903/image_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @MSU_Basketball: #Spartans move up to No. 19 in AP Top 25 and No. 20 in ESPN/USA Today Coaches Poll.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:01 +0000", "from_user": "NAC8491", "from_user_id": 103937505, "from_user_id_str": "103937505", "from_user_name": "Mimi", "geo": null, "id": 148839520266240000, "id_str": "148839520266240000", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1635451411/Mimi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635451411/Mimi_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @martin_caparros: Hablando de construir memoria: en USA, parejas viejas q bailan sobre su tumba, ante sus parientes. Para q despues los recuerden asi.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:01 +0000", "from_user": "Yasmin98Y", "from_user_id": 297538870, "from_user_id_str": "297538870", "from_user_name": "Yasmin", "geo": null, "id": 148839518659813380, "id_str": "148839518659813376", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1597385278/22072011_004__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1597385278/22072011_004__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Demi_my_smile: Demi n\\u00E3o usa mais o anel da pureza, mas disse que a promessa que fez quando come\\u00E7ou a us\\u00E1-lo ainda permanece..#DemiFatcs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:00 +0000", "from_user": "pau_cacho", "from_user_id": 308743960, "from_user_id_str": "308743960", "from_user_name": "henepeu.", "geo": null, "id": 148839514142547970, "id_str": "148839514142547968", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700873157/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700873157/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@lalodm3 JAJAJAJAJA si :) y para irme a usa \\o/", "to_user": "lalodm3", "to_user_id": 325342638, "to_user_id_str": "325342638", "to_user_name": "Lalo Diaz", "in_reply_to_status_id": 148839323146518530, "in_reply_to_status_id_str": "148839323146518528"}, +{"created_at": "Mon, 19 Dec 2011 18:58:00 +0000", "from_user": "DianaaMonsalve", "from_user_id": 319922210, "from_user_id_str": "319922210", "from_user_name": "Loading...", "geo": null, "id": 148839514054459400, "id_str": "148839514054459393", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691835692/303967_2422207677496_1320574453_32973432_1016958022_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691835692/303967_2422207677496_1320574453_32973432_1016958022_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @circotimia_: DIANA USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:00 +0000", "from_user": "PatrulhaRebelde", "from_user_id": 393607108, "from_user_id_str": "393607108", "from_user_name": "REBELDES OFICIAL", "geo": null, "id": 148839513924444160, "id_str": "148839513924444160", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1595105026/11111_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1595105026/11111_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "#Alice: vc ta achando q eu sou unha posti\\u00E7a? Usa, faz bonito e joga fora?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:59 +0000", "from_user": "detenefevaw", "from_user_id": 433735685, "from_user_id_str": "433735685", "from_user_name": "Lahela Kennifeck", "geo": null, "id": 148839513152684030, "id_str": "148839513152684032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687082790/21_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687082790/21_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "new payday loan companies uk http://t.co/6fJrGgKG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:59 +0000", "from_user": "JakeAlone", "from_user_id": 372252244, "from_user_id_str": "372252244", "from_user_name": "jAke", "geo": null, "id": 148839511168794620, "id_str": "148839511168794624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1641136673/IMG_0941_1__normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641136673/IMG_0941_1__normal", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @GrouponRDU: Help provide meals for school children affected by the famine in the Horn of Africa: http://t.co/MkDsrwXB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:57 +0000", "from_user": "UnaRetrograda", "from_user_id": 326885776, "from_user_id_str": "326885776", "from_user_name": "\\u00BFLuisana?", "geo": null, "id": 148839504231403520, "id_str": "148839504231403520", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692067891/383915_2887841238556_1335947735_33112315_1763877125_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692067891/383915_2887841238556_1335947735_33112315_1763877125_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @circotimia_: LUISANA USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:57 +0000", "from_user": "CaroScrofani", "from_user_id": 126494487, "from_user_id_str": "126494487", "from_user_name": "Carolina Scrofani", "geo": null, "id": 148839501765165060, "id_str": "148839501765165057", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1679290787/381909_2713836328911_1347013093_3018260_519278659_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679290787/381909_2713836328911_1347013093_3018260_519278659_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:56 +0000", "from_user": "brunaceesconeto", "from_user_id": 71396911, "from_user_id_str": "71396911", "from_user_name": "Bruna ", "geo": null, "id": 148839498766225400, "id_str": "148839498766225408", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1585428342/PQAAANfLsipxY_bPyZ29p3zHYRHEZ1_JgL_rFBlQ83rflrHL1h3ZCMZFPfdpiCqWaUe572ecokSsZMUl6DNueRCE0OkAm1T1UOnOgzYuY6akBqudaz1W5ammWA0v_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585428342/PQAAANfLsipxY_bPyZ29p3zHYRHEZ1_JgL_rFBlQ83rflrHL1h3ZCMZFPfdpiCqWaUe572ecokSsZMUl6DNueRCE0OkAm1T1UOnOgzYuY6akBqudaz1W5ammWA0v_1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "CHEGA DE MUSICAS NATALINAS.. a loja aqui do lado nao usa disconfiometro acho.. socorro, vo enlouquecer..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:56 +0000", "from_user": "virgiemmarron", "from_user_id": 305757047, "from_user_id_str": "305757047", "from_user_name": "Virgie Marron", "geo": null, "id": 148839497369518080, "id_str": "148839497369518081", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698633651/imagesCAXJE67E_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698633651/imagesCAXJE67E_normal", "source": "<a href="http://42lv5500tv.com" rel="nofollow">42lv5500tvdotcom</a>", "text": "Wholesale Discount BLACKBERRY CURVE 8330-3 Screen Protectors for Blackberry Curve Wholesale U http://t.co/zZ7fy3sb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:54 +0000", "from_user": "williamvargas", "from_user_id": 33142288, "from_user_id_str": "33142288", "from_user_name": "William Vargas", "geo": null, "id": 148839492327968770, "id_str": "148839492327968770", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689390582/wv_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689390582/wv_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @MaxFactor_RD: Para conseguir una boca carnosa y sexy, usa una barra de labios perlada o un toque de gloss para reflejar la luz.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:54 +0000", "from_user": "Niltsrs", "from_user_id": 95227972, "from_user_id_str": "95227972", "from_user_name": "Isaac Nilts", "geo": null, "id": 148839489492631550, "id_str": "148839489492631552", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695944145/388894_2525962102615_1060264095_2694341_1779176490_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695944145/388894_2525962102615_1060264095_2694341_1779176490_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @letiiboettcher: \\u00E9 gato mais ser\\u00E1 que usa sunga?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:52 +0000", "from_user": "heyitsjasongass", "from_user_id": 50871165, "from_user_id_str": "50871165", "from_user_name": "Jason", "geo": null, "id": 148839482894974980, "id_str": "148839482894974976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1479610753/photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1479610753/photo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Closing out the year in Clevelandtown, USA. Airport later. Hijinks coverage to follow!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:52 +0000", "from_user": "theyarepartofmy", "from_user_id": 259434941, "from_user_id_str": "259434941", "from_user_name": "\\u2655 ", "geo": null, "id": 148839482521681920, "id_str": "148839482521681921", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700963726/chercrazy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700963726/chercrazy_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@PLanzani_chile lo pense pero nunca me dijiste me voy a usa. Cuando?", "to_user": "PLanzani_chile", "to_user_id": 191332852, "to_user_id_str": "191332852", "to_user_name": "Fran.", "in_reply_to_status_id": 148839022163271680, "in_reply_to_status_id_str": "148839022163271680"}, +{"created_at": "Mon, 19 Dec 2011 18:57:51 +0000", "from_user": "Vaaaleentine", "from_user_id": 410908429, "from_user_id_str": "410908429", "from_user_name": "WithLoove \\u2665", "geo": null, "id": 148839478243491840, "id_str": "148839478243491845", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698818843/Picture0084_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698818843/Picture0084_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @ANABRICOT: USA: Chris Brown, Justin Bieber, Lady Gaga, Usher, Rihanna,.. France: Colonel Reyel, Zaz, Christophe Willem, Gr\\u00E9goire,.. Qui veut d\\u00E9m\\u00E9nager?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:50 +0000", "from_user": "WVUEFOX8", "from_user_id": 44426926, "from_user_id_str": "44426926", "from_user_name": "News Desk", "geo": null, "id": 148839475701743600, "id_str": "148839475701743617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1321531979/fox_logo_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1321531979/fox_logo_twitter_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Judge berates Blagojevich lawyer for juror motion http://t.co/8o7PhU9M #usa #news", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:50 +0000", "from_user": "MaxCUA", "from_user_id": 34701889, "from_user_id_str": "34701889", "from_user_name": "Max", "geo": null, "id": 148839473331970050, "id_str": "148839473331970048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1243798119/335f3441-c342-4b5f-b305-f7a7db0b4918_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1243798119/335f3441-c342-4b5f-b305-f7a7db0b4918_normal.png", "source": "<a href="http://www.newstreamer.com/" rel="nofollow">Newstreamer</a>", "text": "RT @WillRogersUSA: Gingrich wins Tea Party Patriots straw poll (USA Today) http://t.co/sOFiaHQ6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:50 +0000", "from_user": "TheArcofVA", "from_user_id": 64566849, "from_user_id_str": "64566849", "from_user_name": "The Arc of Virginia", "geo": null, "id": 148839472170151940, "id_str": "148839472170151936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1258829502/new_arc_logo_fb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1258829502/new_arc_logo_fb_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Video of Governor McDonnell's presentation to the Joint Money Committees. Comments re:ID/DD services are 51:19-53:10. http://t.co/IvytX5Hk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:49 +0000", "from_user": "nathgurjas", "from_user_id": 172453889, "from_user_id_str": "172453889", "from_user_name": "gurjas", "geo": null, "id": 148839471478079500, "id_str": "148839471478079488", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695613508/321842_191478834274212_100002362896887_431006_1666384971_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695613508/321842_191478834274212_100002362896887_431006_1666384971_o_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @um_virgem: N\\u00E3o confio em quem usa pochete.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:49 +0000", "from_user": "manalielbahrain", "from_user_id": 283937846, "from_user_id_str": "283937846", "from_user_name": "manal isa", "geo": null, "id": 148839468336558080, "id_str": "148839468336558080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @BHRDef_jaguar: our police in #bahrain are first in line in front of the cannon please support them for keeping u safe http://t.co/GKqBv0Bg #bahrain #usa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:48 +0000", "from_user": "mathteacher1729", "from_user_id": 436310798, "from_user_id_str": "436310798", "from_user_name": "Joe DiNoto", "geo": null, "id": 148839466855972860, "id_str": "148839466855972864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693046475/moodle_profile_picture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693046475/moodle_profile_picture_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Brilliant compare / contrast of USA Vs. Finland education systems: http://t.co/U1YRFz2W #edchat #edpolicy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:47 +0000", "from_user": "churchgrrl78", "from_user_id": 215375284, "from_user_id_str": "215375284", "from_user_name": "hephzibah hart", "geo": null, "id": 148839460761636860, "id_str": "148839460761636864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1271955269/c3a9098a-405b-471d-992b-5d27b8636a24_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1271955269/c3a9098a-405b-471d-992b-5d27b8636a24_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Juanita_Francis: ALL MY USA TWEEPS @RuachCityChurch WATCHNIGHT SERVICE GOES LIVE ON @thewordnetwork AT 5.30PM EST MAKE SURE YOU TUNE IN! RT & PASS IT ON", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:45 +0000", "from_user": "LadyQwazi", "from_user_id": 324299044, "from_user_id_str": "324299044", "from_user_name": "Lady Qwazi", "geo": null, "id": 148839453748760580, "id_str": "148839453748760576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687075304/untitled12_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687075304/untitled12_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@simelaneme the stats I have studied from the USA \"life\" sentence sector are that between 5 to 10% are honestly innocent. #fail", "to_user": "simelaneme", "to_user_id": 347798912, "to_user_id_str": "347798912", "to_user_name": "menzi simelane", "in_reply_to_status_id": 148837787544727550, "in_reply_to_status_id_str": "148837787544727553"}, +{"created_at": "Mon, 19 Dec 2011 18:57:45 +0000", "from_user": "_Adicta", "from_user_id": 123965194, "from_user_id_str": "123965194", "from_user_name": "La que hace spam.", "geo": null, "id": 148839452108791800, "id_str": "148839452108791808", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "JOHANS USA CONDON.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:44 +0000", "from_user": "Captain_Lost", "from_user_id": 26902149, "from_user_id_str": "26902149", "from_user_name": "Fraser Jess", "geo": null, "id": 148839450338799600, "id_str": "148839450338799616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1615897191/Scaled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615897191/Scaled_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @WTFuckFacts: There are 2 people named \"ROFL\" in Rocky Mount, NC, USA.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:44 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148839449365725200, "id_str": "148839449365725184", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "UVA USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:44 +0000", "from_user": "SRJimm", "from_user_id": 196688111, "from_user_id_str": "196688111", "from_user_name": "Jim Meehan", "geo": null, "id": 148839449072107520, "id_str": "148839449072107520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1133908004/jim_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1133908004/jim_twitter_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Zags receiving votes in both polls (30th A.P., tied for 36th ESPN/USA Today, Saint Mary's 35th): http://t.co/dBSQm6PL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:42 +0000", "from_user": "IamJoandrY", "from_user_id": 273587861, "from_user_id_str": "273587861", "from_user_name": "JoandrY OrtegA", "geo": null, "id": 148839440670933000, "id_str": "148839440670932992", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1661776421/224471_225447487499444_3656141_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661776421/224471_225447487499444_3656141_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@_Adicta USA COND\\u00D3N ;)", "to_user": "_Adicta", "to_user_id": 123965194, "to_user_id_str": "123965194", "to_user_name": "La que hace spam."}, +{"created_at": "Mon, 19 Dec 2011 18:57:42 +0000", "from_user": "devzer", "from_user_id": 64263840, "from_user_id_str": "64263840", "from_user_name": "Jorge Berrizbeitia", "geo": null, "id": 148839440301817860, "id_str": "148839440301817856", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1638626601/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638626601/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@marcoloreto jajaja no pero deber\\u00EDan :D tor me lo compr\\u00F3 un pana en USA y me envi\\u00F3 el cd key. No s\\u00E9 si lo compr\\u00F3 por Amazon o por la pagina.", "to_user": "marcoloreto", "to_user_id": 5938352, "to_user_id_str": "5938352", "to_user_name": "Marco Loreto", "in_reply_to_status_id": 148834638209622000, "in_reply_to_status_id_str": "148834638209622017"}, +{"created_at": "Mon, 19 Dec 2011 18:57:42 +0000", "from_user": "thaiszanuto_", "from_user_id": 184994147, "from_user_id_str": "184994147", "from_user_name": "e voc\\u00EA ?", "geo": null, "id": 148839440213741570, "id_str": "148839440213741568", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1526853061/of_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1526853061/of_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Me pergunte qualquer coisa. - \\u203A 1. Altura? 2. Peso? 3. Voc\\u00EA fuma? 4. Voc\\u00EA bebe? 5. Usa/j\\u00E1 usou drogas? 6.... http://t.co/9Fm9cjvq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:42 +0000", "from_user": "bazanmarcelo", "from_user_id": 117579724, "from_user_id_str": "117579724", "from_user_name": "Marcelo Miguel Bazan", "geo": null, "id": 148839438435356670, "id_str": "148839438435356672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1505705464/misojostwitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505705464/misojostwitter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Mr. @BarackObama you're right. See how @chavezcandanga and @CFKArgentina are turning democracy into dictatorship is worrying I love UK & USA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:42 +0000", "from_user": "_1retardado_", "from_user_id": 189742292, "from_user_id_str": "189742292", "from_user_name": "Rai Sabino", "geo": null, "id": 148839438124974080, "id_str": "148839438124974080", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1237690395/DSC00711_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1237690395/DSC00711_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "eu aprendo eu nao vo usa pra nada ent\\u00E3o vai se fude a marta tbm \\u00E9 uma filho da puta", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:41 +0000", "from_user": "jennadoughton", "from_user_id": 234455518, "from_user_id_str": "234455518", "from_user_name": "jenna doughton", "geo": null, "id": 148839436782796800, "id_str": "148839436782796801", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1614597138/jennatwitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1614597138/jennatwitter_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Bing is almost 25% as useful (used) as Google, in the USA, last month, just behind Yahoo! Wow. http://t.co/acmcKz8C", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:41 +0000", "from_user": "VincentDesry", "from_user_id": 357495712, "from_user_id_str": "357495712", "from_user_name": "Vincent Desry", "geo": null, "id": 148839436640190460, "id_str": "148839436640190464", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681241212/307900_2407175466375_1460823453_2592429_1778977516_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681241212/307900_2407175466375_1460823453_2592429_1778977516_n_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @CBeigbeder: La France 3eme pays le plus innovant de la planete, derriere USA et Japon ! Enfin une bonne nouvelle economique ! http://t.co/KppHgo2x", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:41 +0000", "from_user": "jonasgsk8", "from_user_id": 18193631, "from_user_id_str": "18193631", "from_user_name": "JonasGS", "geo": null, "id": 148839434660478980, "id_str": "148839434660478976", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1278476543/8f20d2fc13e848a6870104d569ac448c_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1278476543/8f20d2fc13e848a6870104d569ac448c_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @AS_Inako: El agente de Kirilenko asegura a medios USA q a\\u00FAn no hay acuerdo. La palabra es a\\u00FAn. Con Prokhorov por medio, no hay mucho margen para el no", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:40 +0000", "from_user": "Organic_Portal", "from_user_id": 95717136, "from_user_id_str": "95717136", "from_user_name": "OrganicPortal", "geo": null, "id": 148839430944329730, "id_str": "148839430944329729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1403020498/OP_141x141_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1403020498/OP_141x141_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "USA: Wholesum Harvest breaks ground on a new greenhouse in Arizona http://t.co/sGssCFhP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:39 +0000", "from_user": "GiovannyLira", "from_user_id": 101669733, "from_user_id_str": "101669733", "from_user_name": "Giovanny Lira Ortega", "geo": null, "id": 148839427916046340, "id_str": "148839427916046336", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1638346303/334080_105865299528269_100003143984055_32463_1817726423_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638346303/334080_105865299528269_100003143984055_32463_1817726423_o_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "*baila en ropa interior* *usa su desodorante como micr\\u00F3fono*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:39 +0000", "from_user": "luabarboosa", "from_user_id": 320419842, "from_user_id_str": "320419842", "from_user_name": "Lua Barbosa", "geo": null, "id": 148839426703892480, "id_str": "148839426703892480", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700742141/lua_075_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700742141/lua_075_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "minha mamis foi usa la ,vo fica aqui pelo cel mesmo ...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:38 +0000", "from_user": "Spinellization", "from_user_id": 376510657, "from_user_id_str": "376510657", "from_user_name": "Spinellization", "geo": null, "id": 148839425168781300, "id_str": "148839425168781312", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695850062/nvideo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695850062/nvideo_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Quem usa camiseta do Che \\u00E9 cumplice moral do genocidio de 100 milh\\u00F5es de pessoas ao longo do 30 anos do s\\u00E9culo XX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:36 +0000", "from_user": "lifeofmshaba", "from_user_id": 253815675, "from_user_id_str": "253815675", "from_user_name": "Think Different", "geo": null, "id": 148839414217445380, "id_str": "148839414217445376", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1572843628/Photo_D999F558-B89C-C67B-7A19-84DB38691423_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572843628/Photo_D999F558-B89C-C67B-7A19-84DB38691423_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@MariaSTsehai haliye wanaliyema chakula ni USA Na wenzie sio yeye angefanyaje @yerickonyerere @shyban5 @udadisi @semkae @annietanzania", "to_user": "MariaSTsehai", "to_user_id": 24312877, "to_user_id_str": "24312877", "to_user_name": "Maria Sarungi Tsehai", "in_reply_to_status_id": 148838228898758660, "in_reply_to_status_id_str": "148838228898758656"}, +{"created_at": "Mon, 19 Dec 2011 18:57:36 +0000", "from_user": "Holdeez", "from_user_id": 62961631, "from_user_id_str": "62961631", "from_user_name": "Chelsey", "geo": null, "id": 148839414120988670, "id_str": "148839414120988672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699351661/Holdeez_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699351661/Holdeez_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "--> RT @MacTrast: T-Mobile USA begins adding iPhone-ready 3G to their network, may be preparing to offer the iPhone http://t.co/Z6hbnkiw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:35 +0000", "from_user": "AnduAguilar", "from_user_id": 227476626, "from_user_id_str": "227476626", "from_user_name": "La Chele:3\\u2665", "geo": null, "id": 148839412011253760, "id_str": "148839412011253760", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1650971414/qwertyuopgjnjbnkbnjkbsdknbs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650971414/qwertyuopgjnjbnkbnjkbsdknbs_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Saludos a usted Mejor amigo que el jueves viene a Usa;) @MiquelArbaiza", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:35 +0000", "from_user": "ken_morera", "from_user_id": 26448853, "from_user_id_str": "26448853", "from_user_name": "kenneth morera\\u2652", "geo": null, "id": 148839411096883200, "id_str": "148839411096883200", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1671829060/IMAG0102_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671829060/IMAG0102_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@JocMiranda JAjaja, de hecho si! Digamos q en la nieve se usa guantes ya cuando es demasiado el frio :S aqui por vientecillo usan.", "to_user": "JocMiranda", "to_user_id": 51857115, "to_user_id_str": "51857115", "to_user_name": "Jose Miranda", "in_reply_to_status_id": 148838892265668600, "in_reply_to_status_id_str": "148838892265668608"}, +{"created_at": "Mon, 19 Dec 2011 18:57:35 +0000", "from_user": "lhsm2016", "from_user_id": 362419207, "from_user_id_str": "362419207", "from_user_name": "luiz henrique", "geo": null, "id": 148839410891358200, "id_str": "148839410891358208", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1530247143/luiz.voluvia.com_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1530247143/luiz.voluvia.com_normal.JPG", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Andrea Andrade usa vestido de R$ 20 mil em ensaio de escola de samba http://t.co/2CaPS768", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:35 +0000", "from_user": "boobiegotti2", "from_user_id": 250403659, "from_user_id_str": "250403659", "from_user_name": "\\uE016\\uE420Tee Coleman\\uE420\\uE016", "geo": null, "id": 148839409255591940, "id_str": "148839409255591937", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1431382091/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1431382091/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @justchillin247: The USA is the only country where weed is consider illegal -_______-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:34 +0000", "from_user": "Marian546876", "from_user_id": 421762007, "from_user_id_str": "421762007", "from_user_name": "Marian", "geo": null, "id": 148839408387366900, "id_str": "148839408387366912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1658571669/12_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658571669/12_normal.jpeg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "5/16-24 X 2 Hex Cap Screws / Fine / Grade 8 / Zinc Yellow / Made in USA / 1,200 Pc. Carton: 5/16-24 X 2 Hex Cap ... http://t.co/nGjzXBNf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:34 +0000", "from_user": "lingnet", "from_user_id": 98487888, "from_user_id_str": "98487888", "from_user_name": "LingNet UFRJ", "geo": null, "id": 148839406114062340, "id_str": "148839406114062336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/587815096/logotwitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/587815096/logotwitter_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Larryferlazzo: RT @PearsonLongman: Pearson Longman USA ESL/EFL daily is out! http://t.co/90YcrHV9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:33 +0000", "from_user": "insideredge", "from_user_id": 319440595, "from_user_id_str": "319440595", "from_user_name": "Insider Edge", "geo": null, "id": 148839403404533760, "id_str": "148839403404533762", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1465944412/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1465944412/logo_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Earnings #10-K : 10-K - XENONICS HOLDINGS, INC. (0001289550) (Filer): Filed: 2011-12-19 AccNo: 0000950123-11-103... http://t.co/gw8IWSzw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:31 +0000", "from_user": "juansbruera", "from_user_id": 344799217, "from_user_id_str": "344799217", "from_user_name": "JuanSebasti\\u00E1n Bruera", "geo": null, "id": 148839395003338750, "id_str": "148839395003338752", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1467825904/Juan_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1467825904/Juan_normal.JPG", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:31 +0000", "from_user": "Lillatug", "from_user_id": 431754994, "from_user_id_str": "431754994", "from_user_name": "Lilla Engman", "geo": null, "id": 148839393946374140, "id_str": "148839393946374145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681149097/1jhyhcee02_134258817-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681149097/1jhyhcee02_134258817-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Op/Tech Finger Cuff-QD Compact Strap - Green Plaid: OP/TECH USA's FINGER CUFF QD is the smallest strap yet! This... http://t.co/xxoBdUDI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:30 +0000", "from_user": "Hmother8", "from_user_id": 345061440, "from_user_id_str": "345061440", "from_user_name": "Holly Motheral", "geo": null, "id": 148839391907942400, "id_str": "148839391907942400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1564850941/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1564850941/profile_normal.jpg", "source": "<a href="http://www.handmark.com" rel="nofollow">TweetCaster for iOS</a>", "text": "@rioredstorm Canada vs. USA uh oh I got money on USA", "to_user": "rioredstorm", "to_user_id": 71033576, "to_user_id_str": "71033576", "to_user_name": "rioredstorm"}, +{"created_at": "Mon, 19 Dec 2011 18:57:30 +0000", "from_user": "gravitas28", "from_user_id": 138089041, "from_user_id_str": "138089041", "from_user_name": "Patrick Fitzgibbons", "geo": null, "id": 148839389005492220, "id_str": "148839389005492224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1683703691/Unnamed_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683703691/Unnamed_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @StateDept: #SecClinton delivers remarks on Women, Peace and Security at 2:30 PM EST today: http://t.co/UC8ntoKO | More: http://t.co/7R3W0rtE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:27 +0000", "from_user": "I_Rodriguez_C", "from_user_id": 140515838, "from_user_id_str": "140515838", "from_user_name": "Isabella Rodr\\u00EDguez \\u2661", "geo": null, "id": 148839378951733250, "id_str": "148839378951733248", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700698259/101_2403_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700698259/101_2403_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Nunca uses una persona para olvidar a otra. Minimo usa tres.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:26 +0000", "from_user": "Renatah_s2", "from_user_id": 163820865, "from_user_id_str": "163820865", "from_user_name": "Stay Strong \\u2020", "geo": null, "id": 148839372068884480, "id_str": "148839372068884480", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694853195/just_in_me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694853195/just_in_me_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Voc\\u00EAs sabiam que N\\u00C3O EXISTE leite condensado nos USA? - \\u203A Quando eu for pros EUA vou levar leite condensado,... http://t.co/9DkiJU5n", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:25 +0000", "from_user": "angelagleason", "from_user_id": 18056007, "from_user_id_str": "18056007", "from_user_name": "angelagleason", "geo": null, "id": 148839369577467900, "id_str": "148839369577467904", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1459925311/ag_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1459925311/ag_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "No ai menu salutisti, la rivolta degli studenti di Los Angeles - Corriere della Sera http://t.co/NUUIAAKe via @Corriereit", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:25 +0000", "from_user": "Rugidoderaton", "from_user_id": 18356911, "from_user_id_str": "18356911", "from_user_name": "FelipeCaroca", "geo": null, "id": 148839369539727360, "id_str": "148839369539727360", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1374077914/elrugidodelraton_Front_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1374077914/elrugidodelraton_Front_normal.png", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: No se usa \"hubieron\" cuando haber se emplea para denotar la presencia de personas o cosas, Hubieron 6 ni\\u00F1os (\\u2717), debe decirse: Hubo 6 ni\\u00F1os\\u2611", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:25 +0000", "from_user": "bvoficial", "from_user_id": 134771503, "from_user_id_str": "134771503", "from_user_name": "Breno Oficial ;)", "geo": null, "id": 148839368700870660, "id_str": "148839368700870656", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1398710783/4327348203_b936d55146_o_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1398710783/4327348203_b936d55146_o_normal.jpeg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "V\\u00EDdeo: Yamaha usa AirPort Express para fazer a Siri tocar piano http://t.co/CE98CVgY #Apple", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:25 +0000", "from_user": "SanFran_Bargain", "from_user_id": 405789351, "from_user_id_str": "405789351", "from_user_name": "San Fran Bargains", "geo": null, "id": 148839367807479800, "id_str": "148839367807479809", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1624227301/GG_Bridge_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624227301/GG_Bridge_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Jamie I am soooo excited! I just scored a group coupon to my fave eatery for 90 percent off. http://t.co/gdEk6gcq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:25 +0000", "from_user": "dysexiwujyd", "from_user_id": 433946867, "from_user_id_str": "433946867", "from_user_name": "Pramodini Giovannaz", "geo": null, "id": 148839366909894660, "id_str": "148839366909894656", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688445029/710_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688445029/710_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "auto insurance ontario g1 http://t.co/29zSf8oc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:24 +0000", "from_user": "newstodaybzcm", "from_user_id": 361942645, "from_user_id_str": "361942645", "from_user_name": "Renisha Glinton", "geo": null, "id": 148839366515626000, "id_str": "148839366515625984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://www.wpsyndicator.com" rel="nofollow">WPSyndicator</a>", "text": "http://t.co/y1g8Uuie Campus Rivalry: The passion and tradition of college basketball and football ... - USA TODAY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:22 +0000", "from_user": "CamiluchaCrespo", "from_user_id": 190456456, "from_user_id_str": "190456456", "from_user_name": "Cami Crespo", "geo": null, "id": 148839354868051970, "id_str": "148839354868051968", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1690153464/cc__135__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690153464/cc__135__normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "No le voi a responder a la gente q me usa #sentite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:21 +0000", "from_user": "newstodaybzcm", "from_user_id": 361942645, "from_user_id_str": "361942645", "from_user_name": "Renisha Glinton", "geo": null, "id": 148839351239970800, "id_str": "148839351239970816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://www.wpsyndicator.com" rel="nofollow">WPSyndicator</a>", "text": "http://t.co/u30U0GPO Syracuse retains No. 1 spot in basketball coaches poll - USA TODAY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:21 +0000", "from_user": "spiffysmile", "from_user_id": 36042665, "from_user_id_str": "36042665", "from_user_name": "spiffysmile", "geo": null, "id": 148839351206428670, "id_str": "148839351206428672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/266773809/Copy_of_smile_flower_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/266773809/Copy_of_smile_flower_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ZMonline Thank you so much for playing @adamlambert Better Than I Know Myself .....listening from the USA!", "to_user": "ZMonline", "to_user_id": 21044502, "to_user_id_str": "21044502", "to_user_name": "ZMonline"}, +{"created_at": "Mon, 19 Dec 2011 18:57:21 +0000", "from_user": "AmegderAlvarado", "from_user_id": 108788062, "from_user_id_str": "108788062", "from_user_name": "Amegder Alvarado", "geo": null, "id": 148839350052986880, "id_str": "148839350052986880", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1379083683/IMG00047-20090725-1642_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1379083683/IMG00047-20090725-1642_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: No se usa \"hubieron\" cuando haber se emplea para denotar la presencia de personas o cosas, Hubieron 6 ni\\u00F1os (\\u2717), debe decirse: Hubo 6 ni\\u00F1os\\u2611", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:20 +0000", "from_user": "itele", "from_user_id": 18396319, "from_user_id_str": "18396319", "from_user_name": "itele", "geo": null, "id": 148839349948125200, "id_str": "148839349948125184", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1230989425/logo_itele_reflet_3d_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1230989425/logo_itele_reflet_3d_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "#Cor\\u00E9e du Nord : Les USA pour \\u00ABune transition stable et pacifique\\u00BB et \\u00ABune relation am\\u00E9lior\\u00E9e avec le peuple nord-cor\\u00E9en\\u00BB (H. Clinton)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:20 +0000", "from_user": "efraguirre", "from_user_id": 196842743, "from_user_id_str": "196842743", "from_user_name": "Efrain Aguirre", "geo": null, "id": 148839349662920700, "id_str": "148839349662920705", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1667420091/IMG00490-20110410-16313_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667420091/IMG00490-20110410-16313_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@DianiitaC mentira! Eso lo usa de excusa para no ba\\u00F1arse vv. Mona cochina xP", "to_user": "DianiitaC", "to_user_id": 181758419, "to_user_id_str": "181758419", "to_user_name": "Diana Carrillo", "in_reply_to_status_id": 148837885943103500, "in_reply_to_status_id_str": "148837885943103488"}, +{"created_at": "Mon, 19 Dec 2011 18:57:20 +0000", "from_user": "CineversityTV", "from_user_id": 36414339, "from_user_id_str": "36414339", "from_user_name": "Pi-Qui Baltink", "geo": null, "id": 148839347964219400, "id_str": "148839347964219392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1567986393/CTV-free-bradley_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1567986393/CTV-free-bradley_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#ff #artist; Super ninja turtles http://t.co/PEMOXyDx #berlin #music #australia #europe #paris #rome #madrid #sydney #beijing #india", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:20 +0000", "from_user": "BobMiller11", "from_user_id": 323365517, "from_user_id_str": "323365517", "from_user_name": "Bob Miller", "geo": null, "id": 148839347167297540, "id_str": "148839347167297537", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@HC_WJC Great hockey and great Alberta weather. Cannot beat this. Kind of excited! Very cool that Camrose is hosting USA.", "to_user": "HC_WJC", "to_user_id": 199846785, "to_user_id_str": "199846785", "to_user_name": "2012 World Juniors", "in_reply_to_status_id": 148832623161114620, "in_reply_to_status_id_str": "148832623161114624"}, +{"created_at": "Mon, 19 Dec 2011 18:57:19 +0000", "from_user": "muzarojo", "from_user_id": 419240833, "from_user_id_str": "419240833", "from_user_name": "Kapardin Henriksson", "geo": null, "id": 148839343916711940, "id_str": "148839343916711936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1658793696/30_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658793696/30_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @zeqefyzani: loan calculation schedules http://t.co/N5OAAQHQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:19 +0000", "from_user": "nofuquh", "from_user_id": 433713387, "from_user_id_str": "433713387", "from_user_name": "Ardavan Dalgarnowch", "geo": null, "id": 148839343077863420, "id_str": "148839343077863424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685858674/1436_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685858674/1436_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "approved cash advance http://t.co/CdcF68hl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:19 +0000", "from_user": "HealthRxCorp", "from_user_id": 314102748, "from_user_id_str": "314102748", "from_user_name": "HealthRx Corporation", "geo": null, "id": 148839341932818430, "id_str": "148839341932818432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1476091736/pinwheel_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1476091736/pinwheel_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "MT @thehearttruth: #Exercise protects your heart AND makes you feel good. http://t.co/CzOILFNe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:18 +0000", "from_user": "3R1CK_L30N3L", "from_user_id": 298262867, "from_user_id_str": "298262867", "from_user_name": "AON", "geo": null, "id": 148839340850679800, "id_str": "148839340850679808", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1599728298/rules_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599728298/rules_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Abre las puertas de la perfecci\\u00F3n, usa el poder de t\\u00FA imaginaci\\u00F3n, aunque no puedas mirar hacia el sol, sabes que sigue brillando!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:17 +0000", "from_user": "fuluvice", "from_user_id": 434043730, "from_user_id_str": "434043730", "from_user_name": "Bindu Glasscock", "geo": null, "id": 148839334404030460, "id_str": "148839334404030464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688586349/1174_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688586349/1174_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "earning money fast http://t.co/dsulN9vf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:16 +0000", "from_user": "MaCosta__", "from_user_id": 353351172, "from_user_id_str": "353351172", "from_user_name": "Mari Costa", "geo": null, "id": 148839332084580350, "id_str": "148839332084580353", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1671617035/SDC14525_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671617035/SDC14525_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u00C0s vezes eu acho que sou a \\u00FAnica pessoa que usa qlqer roupa no Natal e Ano Novo, pqp KKKKK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:16 +0000", "from_user": "webhostingfast", "from_user_id": 354766850, "from_user_id_str": "354766850", "from_user_name": "Web Hosting Fast", "geo": null, "id": 148839331879059460, "id_str": "148839331879059456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "How to Choose Best E-Commerce Web Development Company among many companies - http://t.co/C3NAMOpX http://t.co/Fd8Gmnzb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:16 +0000", "from_user": "ImportCDs", "from_user_id": 363656472, "from_user_id_str": "363656472", "from_user_name": "Richard Floyd", "geo": null, "id": 148839330939543550, "id_str": "148839330939543553", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1517358982/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517358982/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #13305 Complete Live at the Pershing Lounge 1958 Ahmad Trio Jamal $11.76: Although They were Not Ahma... http://t.co/S0kUreLr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:16 +0000", "from_user": "ImportCDs", "from_user_id": 363656472, "from_user_id_str": "363656472", "from_user_name": "Richard Floyd", "geo": null, "id": 148839329756749820, "id_str": "148839329756749824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1517358982/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517358982/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #5806 Christmas Present From Polyphony Polyphony $5.62: B00030NU4A http://t.co/GWFWMNnD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:15 +0000", "from_user": "ImportCDs", "from_user_id": 363656472, "from_user_id_str": "363656472", "from_user_name": "Richard Floyd", "geo": null, "id": 148839327986761730, "id_str": "148839327986761729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1517358982/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517358982/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #1746 Zen and the Art of Relaxation Anzan $5.00: Discover Zen-like peace with this magical combinatio... http://t.co/c9kEOB16", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:15 +0000", "from_user": "LM_Hooker", "from_user_id": 404592377, "from_user_id_str": "404592377", "from_user_name": "I'm Little Monster ", "geo": null, "id": 148839327936417800, "id_str": "148839327936417792", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686958987/Ladygaga_gif_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686958987/Ladygaga_gif_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "EU J\\u00C1 SEI QUEM FOI, FOI A @britneyspears, AQUELA INVEJOSA SO PQ A GAGA N\\u00C3O USA PLAYBACK! A GAGA TEM VOZ BRIT!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:15 +0000", "from_user": "SoloDesse", "from_user_id": 78812048, "from_user_id_str": "78812048", "from_user_name": "\\u2708Desse", "geo": null, "id": 148839327860932600, "id_str": "148839327860932608", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690070308/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690070308/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@cremastudio ya sabes que mi pr\\u00F3xima parada va a ser usa y si es el 305 mejor.", "to_user": "cremastudio", "to_user_id": 58667367, "to_user_id_str": "58667367", "to_user_name": "Crema Studio", "in_reply_to_status_id": 148838989531582460, "in_reply_to_status_id_str": "148838989531582465"}, +{"created_at": "Mon, 19 Dec 2011 18:57:15 +0000", "from_user": "alexgarrido93", "from_user_id": 228194372, "from_user_id_str": "228194372", "from_user_name": "Raulista", "geo": null, "id": 148839327189827600, "id_str": "148839327189827584", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1199560044/wY5EZ2nb6OA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1199560044/wY5EZ2nb6OA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@carlitos_693 si no tienes condon, usa una bolsa q tb vale", "to_user": "carlitos_693", "to_user_id": 285737961, "to_user_id_str": "285737961", "to_user_name": "Carlos Carrasco", "in_reply_to_status_id": 148839113783648260, "in_reply_to_status_id_str": "148839113783648256"}, +{"created_at": "Mon, 19 Dec 2011 18:57:15 +0000", "from_user": "ImportCDs", "from_user_id": 363656472, "from_user_id_str": "363656472", "from_user_name": "Richard Floyd", "geo": null, "id": 148839326535516160, "id_str": "148839326535516160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1517358982/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517358982/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #5700 Brothers in Arms (20th Anniversary Edition) Dire Straits $12.73: Import only SACD pressing. 20t... http://t.co/44v0PR5v", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:15 +0000", "from_user": "BrunaGabriele28", "from_user_id": 410705550, "from_user_id_str": "410705550", "from_user_name": "B\\u044F\\u03C5\\u03B7\\u03B1 G\\u03B1\\u0432\\u044F\\u03B9\\u0454\\u2113\\u0454", "geo": null, "id": 148839325101080580, "id_str": "148839325101080576", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701667281/PQAAAJAVW30JggLTGLWc8cjdc7ewTmTMmhyjLD1g2jR-CM7LdgalASgv99vD7L_CoFwtPCerK-n5ZQ0SYdq-PwdJ4dYAm1T1UI3nbvTmzQHTT28lCfJBjbuHRek7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701667281/PQAAAJAVW30JggLTGLWc8cjdc7ewTmTMmhyjLD1g2jR-CM7LdgalASgv99vD7L_CoFwtPCerK-n5ZQ0SYdq-PwdJ4dYAm1T1UI3nbvTmzQHTT28lCfJBjbuHRek7_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "quando esse tempo chegar quem zombou de voc\\u00EA vai terque pagar quem ti viu caido e n\\u00E3o quiz ti levantar v\\u00E3o ti ver pregando e ver deus te usa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:15 +0000", "from_user": "ImportCDs", "from_user_id": 363656472, "from_user_id_str": "363656472", "from_user_name": "Richard Floyd", "geo": null, "id": 148839325050740740, "id_str": "148839325050740736", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1517358982/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517358982/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #2516 Ludovico Einaudi: Divenire [EU Edition] $14.25: B000R9RGF6 http://t.co/CAkW3ov8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:13 +0000", "from_user": "President", "from_user_id": 260537964, "from_user_id_str": "260537964", "from_user_name": "Election 2012 News", "geo": null, "id": 148839318859948030, "id_str": "148839318859948032", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1261305267/2012_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1261305267/2012_normal.jpg", "source": "<a href="http://twitter.com/_President2012" rel="nofollow">Presidential News</a>", "text": "Struggling Santorum bets big on Iowa. http://t.co/4jSaI121", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:13 +0000", "from_user": "Sciencegov", "from_user_id": 115689109, "from_user_id_str": "115689109", "from_user_name": "Science.gov", "geo": null, "id": 148839318822191100, "id_str": "148839318822191105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1137962180/scienceNEWSlogo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1137962180/scienceNEWSlogo_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Environmental Justice Grants of $25,000 Awarded to Migrant Farmworkers Project and El Centro, Inc., of Kansas Ci... http://t.co/dIFDK2A5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:13 +0000", "from_user": "si_dicko", "from_user_id": 437814658, "from_user_id_str": "437814658", "from_user_name": "Simon Dixon", "geo": null, "id": 148839317761032200, "id_str": "148839317761032192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695305700/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695305700/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Y r all thes ppl from the USA following meeee lol but is ok :-)) lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:13 +0000", "from_user": "lynawyq", "from_user_id": 419571997, "from_user_id_str": "419571997", "from_user_name": "Eleonore Masterman", "geo": null, "id": 148839317341605900, "id_str": "148839317341605888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1658953747/14_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658953747/14_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @recilyhyjir: car insurance estimator course http://t.co/pKSvlFK6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:12 +0000", "from_user": "minhagabby", "from_user_id": 399743612, "from_user_id_str": "399743612", "from_user_name": "\\u3164\\u3164, Gabriella !* \\u10D6 ", "geo": null, "id": 148839314049077250, "id_str": "148839314049077250", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1642958986/PQAAAJGa_rAdpuEImAw9CXo4jJv6uMG-1A7LcHGbrNv4uXZtvLSkfQ4uWNBUnNRLDls98sBplTKtY8693v7TUYXOvvUAm1T1ULhuop9DwxnwRJuevmCB0arTNHAa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642958986/PQAAAJGa_rAdpuEImAw9CXo4jJv6uMG-1A7LcHGbrNv4uXZtvLSkfQ4uWNBUnNRLDls98sBplTKtY8693v7TUYXOvvUAm1T1ULhuop9DwxnwRJuevmCB0arTNHAa_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @marciinho_qzs: cartela de adesivos que vem com o caderno: voc\\u00EA n\\u00E3o usa e n\\u00E3o deixa ningu\\u00E9m usar", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:12 +0000", "from_user": "Kika_Brona", "from_user_id": 393660219, "from_user_id_str": "393660219", "from_user_name": "Kika Brona", "geo": null, "id": 148839312702709760, "id_str": "148839312702709760", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701673560/Ag6xozpCEAAoH5k.jpg-large_normal.jpg-large", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701673560/Ag6xozpCEAAoH5k.jpg-large_normal.jpg-large", "source": "<a href="http://twitter.com/">web</a>", "text": "@Fastimous chucky esta en la edad que AMA los carritos y trenesitos, todo lo usa de pista hasta mis piernas una risa es un bello.", "to_user": "Fastimous", "to_user_id": 256409391, "to_user_id_str": "256409391", "to_user_name": "Fastimous", "in_reply_to_status_id": 148838626795585540, "in_reply_to_status_id_str": "148838626795585536"}, +{"created_at": "Mon, 19 Dec 2011 18:57:10 +0000", "from_user": "pqpmonis", "from_user_id": 381693638, "from_user_id_str": "381693638", "from_user_name": "A RUA \\u00C9 NOIZ \\u266A", "geo": null, "id": 148839305039720450, "id_str": "148839305039720448", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685464897/IMG200_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685464897/IMG200_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ESSESGAYS: \"como vc pode gostar de tatuagem e alargador? que coisa feia\" disse a pessoa que gosta de funk usa shortinho de 5cm e tem piercing no umbigo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:57:10 +0000", "from_user": "JBiebsOurPride", "from_user_id": 383430948, "from_user_id_str": "383430948", "from_user_name": "J\\u00FAlia \\u265B", "geo": null, "id": 148839304964227070, "id_str": "148839304964227072", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698257627/tumblr_lwcoquryoL1r810clo1_250_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698257627/tumblr_lwcoquryoL1r810clo1_250_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "O RICO USA BRINCA \\u00C9 PLAYBOY, O POBRE USA BRINCO \\u00C9 VEADO. POBRE TRA\\u00CDDO \\u00C9 CHIFRUDO, RICO TRA\\u00CDDO \\u00C9 ENGANADO. O RICO METENDO \\u00C9 AMOR, O POBRE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:09 +0000", "from_user": "ddlovatoheart", "from_user_id": 97325228, "from_user_id_str": "97325228", "from_user_name": "Nathalia", "geo": null, "id": 148839301810102270, "id_str": "148839301810102272", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695826262/tumblr_lw1wzs66YD1qcn0nto1_500_large_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695826262/tumblr_lw1wzs66YD1qcn0nto1_500_large_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @maricheq: N\\u00E3o compreendo pq o Edward usa Yahoo pra procurar sobre o bebe monstro dele, ja que ele fazia propagando do google antes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:09 +0000", "from_user": "LoveJessicaHope", "from_user_id": 416005109, "from_user_id_str": "416005109", "from_user_name": "Jessica Hope", "geo": null, "id": 148839300094627840, "id_str": "148839300094627840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702269583/68M2RP0M_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702269583/68M2RP0M_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Things yu find under yur bed:\\nKids = monsters O-o\\nFat ppl = snacks lmao\\n!ME! = USA VOLLEYBALL MAGAZINES?????? lol :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:09 +0000", "from_user": "SFWMD", "from_user_id": 54424058, "from_user_id_str": "54424058", "from_user_name": "South Florida Water", "geo": null, "id": 148839299960422400, "id_str": "148839299960422400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1409787200/logoseal_blue_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1409787200/logoseal_blue_2_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "Water Watch for December 19, 2011. http://t.co/qfd8LFOj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:06 +0000", "from_user": "Trend_bot", "from_user_id": 359753420, "from_user_id_str": "359753420", "from_user_name": "Trendbot", "geo": null, "id": 148839290598719500, "id_str": "148839290598719489", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1507601566/1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1507601566/1_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @prjuniorsouza: A globo nos usa pra ganhar audiencia, e N\\u00F3s usamos a globo pra pregar o evangelho. Foorte #FestivalPromessas", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:06 +0000", "from_user": "esmusssein4", "from_user_id": 42312399, "from_user_id_str": "42312399", "from_user_name": "Terina F", "geo": null, "id": 148839290028294140, "id_str": "148839290028294144", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1620051065/Captura_de_pantalla_2011-11-03_a_las_01.09.11_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620051065/Captura_de_pantalla_2011-11-03_a_las_01.09.11_normal.png", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: No se usa \"hubieron\" cuando haber se emplea para denotar la presencia de personas o cosas, Hubieron 6 ni\\u00F1os (\\u2717), debe decirse: Hubo 6 ni\\u00F1os\\u2611", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:06 +0000", "from_user": "prismsinc", "from_user_id": 16054602, "from_user_id_str": "16054602", "from_user_name": "Ric", "geo": null, "id": 148839289894080500, "id_str": "148839289894080512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1692296511/prismsinc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692296511/prismsinc_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @suziplasse: Supreme Court sets Obama healthcare arguments http://t.co/JYG21wF0 #twisters #tcot", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:06 +0000", "from_user": "Demi_my_smile", "from_user_id": 427518042, "from_user_id_str": "427518042", "from_user_name": "Juliana Larissa", "geo": null, "id": 148839288866488320, "id_str": "148839288866488320", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1677339932/tumblr_lqwqc8owkq1qewvbv_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677339932/tumblr_lqwqc8owkq1qewvbv_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Demi n\\u00E3o usa mais o anel da pureza, mas disse que a promessa que fez quando come\\u00E7ou a us\\u00E1-lo ainda permanece..#DemiFatcs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:06 +0000", "from_user": "GabsAlemany", "from_user_id": 241927923, "from_user_id_str": "241927923", "from_user_name": "Gabriel Alemany ", "geo": null, "id": 148839288715485200, "id_str": "148839288715485184", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1447551240/Mrgaspelotica_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1447551240/Mrgaspelotica_copy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@FranciscoGDiaz usa msn... conectate pa habla un chin", "to_user": "FranciscoGDiaz", "to_user_id": 305820174, "to_user_id_str": "305820174", "to_user_name": "Francisco Garc\\u00EDa", "in_reply_to_status_id": 148839108259754000, "in_reply_to_status_id_str": "148839108259753985"}, +{"created_at": "Mon, 19 Dec 2011 18:57:06 +0000", "from_user": "StateDept", "from_user_id": 9624742, "from_user_id_str": "9624742", "from_user_name": "StateDept", "geo": null, "id": 148839288002449400, "id_str": "148839288002449408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/777813417/statedept_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/777813417/statedept_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#SecClinton delivers remarks on Women, Peace and Security at 2:30 PM EST today: http://t.co/UC8ntoKO | More: http://t.co/7R3W0rtE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:05 +0000", "from_user": "tweetsofluv", "from_user_id": 44497515, "from_user_id_str": "44497515", "from_user_name": "LTW", "geo": null, "id": 148839284441485300, "id_str": "148839284441485312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1226017755/LuvTheWorldLogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1226017755/LuvTheWorldLogo_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "For those of you occupying Xmas, luvtheworld is 100% MADE IN THE GOOD OL USA!... http://t.co/9XVQ6Gtu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:05 +0000", "from_user": "OnuBoyette05171", "from_user_id": 433294853, "from_user_id_str": "433294853", "from_user_name": "Onu Boyette", "geo": null, "id": 148839284089167870, "id_str": "148839284089167873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "http://t.co/JZQfmP9L USA Credit Card Loan XBOX Game Fence Bond Baseball Comedy Corvette Tom Cruise Actor Adultery Debt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:05 +0000", "from_user": "iphoneshere", "from_user_id": 174403688, "from_user_id_str": "174403688", "from_user_name": "bennyb", "geo": null, "id": 148839282994462720, "id_str": "148839282994462720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1100765083/iphone-4g-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1100765083/iphone-4g-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Unlocked iPhone 4S working in some pockets of T-Mobile USA's ...: Although T-Mobil USA wrote in the September le... http://t.co/lEIqpCsN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:04 +0000", "from_user": "Nashvillexing", "from_user_id": 70909011, "from_user_id_str": "70909011", "from_user_name": "Nashville Crossing", "geo": null, "id": 148839279244742660, "id_str": "148839279244742657", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/394283421/logo_normal_normal.GIF", "profile_image_url_https": "https://si0.twimg.com/profile_images/394283421/logo_normal_normal.GIF", "source": "<a href="http://ping.fm/" rel="nofollow">Ping.fm</a>", "text": "Route-Sales Representative - USA-TN-Nashville http://t.co/ZFO1d4tn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:03 +0000", "from_user": "Nashvillexing", "from_user_id": 70909011, "from_user_id_str": "70909011", "from_user_name": "Nashville Crossing", "geo": null, "id": 148839277818691600, "id_str": "148839277818691584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/394283421/logo_normal_normal.GIF", "profile_image_url_https": "https://si0.twimg.com/profile_images/394283421/logo_normal_normal.GIF", "source": "<a href="http://ping.fm/" rel="nofollow">Ping.fm</a>", "text": "College Leadership Intern - USA-TN-Nashville http://t.co/Y7AEBfoz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:02 +0000", "from_user": "ASBTDC", "from_user_id": 36979694, "from_user_id_str": "36979694", "from_user_name": "Arkansas SBTDC", "geo": null, "id": 148839272995225600, "id_str": "148839272995225600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1225550493/asbtdc-210x210_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225550493/asbtdc-210x210_normal.jpg", "source": "<a href="http://app.measuredvoice.com/" rel="nofollow">Measured Voice</a>", "text": "RT @IRSnews: Good records can save small businesses money at tax time. Learn what to keep and how to keep them. http://t.co/Yq2mWu3q #IRS taxes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:02 +0000", "from_user": "rebeca_marcano", "from_user_id": 183125025, "from_user_id_str": "183125025", "from_user_name": "Rebeca Marcano.", "geo": null, "id": 148839272957493250, "id_str": "148839272957493248", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693212372/IMG02954-20111208-1455_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693212372/IMG02954-20111208-1455_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @paoladdp: Mi hermana camina como un pony cuando usa tacones.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:02 +0000", "from_user": "caroljferrer", "from_user_id": 434576193, "from_user_id_str": "434576193", "from_user_name": "Carol g. Jimen\\u00E9z.", "geo": null, "id": 148839271200071680, "id_str": "148839271200071680", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1688111262/DSC07199_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688111262/DSC07199_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "es que la gente no usa la cabeza para nadaa.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:01 +0000", "from_user": "um_bbe", "from_user_id": 403099409, "from_user_id_str": "403099409", "from_user_name": "Peeu e o seu ?", "geo": null, "id": 148839266183692300, "id_str": "148839266183692289", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1679702191/juuu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679702191/juuu_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "aaaa tag do @brunoperfect_ #Em2012Quero teeeem que cresce e si espalhaa vuum bora usa ela ai ! \\o/", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:00 +0000", "from_user": "_LailaOliveira", "from_user_id": 396591039, "from_user_id_str": "396591039", "from_user_name": "Yasmim", "geo": null, "id": 148839263822299140, "id_str": "148839263822299136", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1615780660/of_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615780660/of_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ESSESGAYS: \"como vc pode gostar de tatuagem e alargador? que coisa feia\" disse a pessoa que gosta de funk usa shortinho de 5cm e tem piercing no umbigo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:00 +0000", "from_user": "LoriTherion", "from_user_id": 375488717, "from_user_id_str": "375488717", "from_user_name": "Lori Lewis_Therion", "geo": null, "id": 148839263692263420, "id_str": "148839263692263424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1548090861/twit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1548090861/twit_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "I posted 10 photos on Facebook in the album \"ProgPower USA 2011\" http://t.co/46uxbIeR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:59 +0000", "from_user": "dennerdosantos", "from_user_id": 190696233, "from_user_id_str": "190696233", "from_user_name": "D\\u00EAnner Amaral", "geo": null, "id": 148839259544096770, "id_str": "148839259544096768", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1545659109/102_3273_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545659109/102_3273_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @SouDesses: #SouDesses que n\\u00E3o usa drogas", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:58 +0000", "from_user": "MutiaraRachman", "from_user_id": 63057467, "from_user_id_str": "63057467", "from_user_name": "Mutiara", "geo": null, "id": 148839254699683840, "id_str": "148839254699683840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1651208481/muti__3__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651208481/muti__3__normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"@ReutersPolitics: Senate refuses to renegotiate payroll tax cut deal http://t.co/90MdTpjm\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:57 +0000", "from_user": "maroxov", "from_user_id": 282999458, "from_user_id_str": "282999458", "from_user_name": "Maroxov", "geo": null, "id": 148839251788836860, "id_str": "148839251788836864", "iso_language_code": "ar", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1586214338/sword_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586214338/sword_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @bahrainidoctor: \\u0627\\u0644\\u0627\\u0646\\u062A\\u0642\\u0627\\u062F\\u0627\\u062A \\u0627\\u0644\\u0623\\u0645\\u0631\\u064A\\u0643\\u064A\\u0629 \\u0644\\u0639\\u0646\\u0641 \\u0627\\u0644\\u0645\\u062A\\u0638\\u0627\\u0647\\u0631\\u064A\\u0646 \\u062A\\u0635\\u062F\\u0645 \\u0627\\u0644\\u0645\\u0639\\u0627\\u0631\\u0636\\u0629 \\u0627\\u0644\\u0628\\u062D\\u0631\\u064A\\u0646\\u064A\\u0629 http://t.co/IQeRc42Q #Bahrain #USA #US #Alwefaq #UAE #KSA #GCC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:57 +0000", "from_user": "PoliticeStiri", "from_user_id": 321294341, "from_user_id_str": "321294341", "from_user_name": "Stiri Politice", "geo": null, "id": 148839249586831360, "id_str": "148839249586831360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1406032245/twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1406032245/twitter_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#News Struggling Santorum bets big on Iowa: DES MOINES, Iowa (Reuters) - Rick Santorum thought he had it... http://t.co/c8JtjedT #Stiri", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:57 +0000", "from_user": "KindleAccessor", "from_user_id": 333864305, "from_user_id_str": "333864305", "from_user_name": "Richard Floyd", "geo": null, "id": 148839249486159870, "id_str": "148839249486159872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1438273678/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1438273678/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA # Marware Eco-Vue for Kindle Fire Cover, Black $34.99: One of the most popular Amazon Kindle cases re... http://t.co/lxO46k7F", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:56 +0000", "from_user": "KindleAccessor", "from_user_id": 333864305, "from_user_id_str": "333864305", "from_user_name": "Richard Floyd", "geo": null, "id": 148839247082819600, "id_str": "148839247082819584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1438273678/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1438273678/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #30305 The Kindle 2 Cookbook: How To Do Everything the Manual Doesn't Tell You: OVER 50,000 COPIES SO... http://t.co/bcAKhnlM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:54 +0000", "from_user": "mariaofsmaland", "from_user_id": 300747864, "from_user_id_str": "300747864", "from_user_name": "mariaofsmaland", "geo": null, "id": 148839239692455940, "id_str": "148839239692455937", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702143361/maria_profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702143361/maria_profile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"..s\\u00F6ker du intr\\u00E4de f\\u00F6r att \\u00E4gna dig \\u00E5t brottslig eller omoralisk aktivitet?\" - \\u00E5h USA, moralens v\\u00E4ktare!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:53 +0000", "from_user": "queen_yas_", "from_user_id": 253281238, "from_user_id_str": "253281238", "from_user_name": "queen of nowhere. ", "geo": null, "id": 148839234214703100, "id_str": "148839234214703104", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701150890/377797_232534876815045_100001756043193_570287_1658930505_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701150890/377797_232534876815045_100001756043193_570287_1658930505_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Isah_Sani PELO AMOR DE DEUS, o Severus usa duplo sentido na fic inteira.", "to_user": "Isah_Sani", "to_user_id": 270660621, "to_user_id_str": "270660621", "to_user_name": "Isabela Sanit\\u00E1", "in_reply_to_status_id": 148839092073934850, "in_reply_to_status_id_str": "148839092073934848"}, +{"created_at": "Mon, 19 Dec 2011 18:56:53 +0000", "from_user": "riduqyju", "from_user_id": 397495726, "from_user_id_str": "397495726", "from_user_name": "Orianna Karpenko", "geo": null, "id": 148839233963040770, "id_str": "148839233963040768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1604830601/1047_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1604830601/1047_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @moforowori: is loan point usa licensed http://t.co/GP7A5zwX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:53 +0000", "from_user": "_GabrielBorba_", "from_user_id": 59794233, "from_user_id_str": "59794233", "from_user_name": "\\u0997\\u09BE\\u09AC\\u09CD\\u09B0\\u09BF\\u09AF\\u09BC\\u09C7\\u09B2 \\u099C\\u09B2\\u09AA\\u09BE\\u0987 \\u23C3 ", "geo": null, "id": 148839233837215740, "id_str": "148839233837215744", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1547184761/imagem_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1547184761/imagem_normal.JPG", "source": "<a href="http://m.ubersocial.com" rel="nofollow">\\u00DCberSocial Mobile</a>", "text": "@GiSousab ow mas pra desbloquer tem um aparelho q vende n target(loja la no usa) q desbloqueia por 10 dolares", "to_user": "GiSousab", "to_user_id": 80346346, "to_user_id_str": "80346346", "to_user_name": "Giovana Baliza", "in_reply_to_status_id": 148837054212603900, "in_reply_to_status_id_str": "148837054212603905"}, +{"created_at": "Mon, 19 Dec 2011 18:56:53 +0000", "from_user": "lohepupa", "from_user_id": 419494635, "from_user_id_str": "419494635", "from_user_name": "Betsan Haddock", "geo": null, "id": 148839232927043600, "id_str": "148839232927043584", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1658948510/1_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658948510/1_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @qupoqit: student loan deferment forms stafford http://t.co/9Y0Y5XK8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:52 +0000", "from_user": "Palestino_", "from_user_id": 77487068, "from_user_id_str": "77487068", "from_user_name": "Palestino", "geo": null, "id": 148839229898756100, "id_str": "148839229898756097", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1519860897/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1519860897/image_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: No se usa \"hubieron\" cuando haber se emplea para denotar la presencia de personas o cosas, debe decirse: Hubo 6 ni\\u00F1os\\u2611", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:51 +0000", "from_user": "tblop", "from_user_id": 47526085, "from_user_id_str": "47526085", "from_user_name": "Ramrod Fappington", "geo": null, "id": 148839225901588480, "id_str": "148839225901588482", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/264909837/gagged-64_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/264909837/gagged-64_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "New Petite Filipina Hawaiian In El Cajon-San Diego outcall - w4m - http://t.co/XXOoFHVi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:51 +0000", "from_user": "ChooseCullen", "from_user_id": 412377973, "from_user_id_str": "412377973", "from_user_name": "57 DIAS \\u2665", "geo": null, "id": 148839224202895360, "id_str": "148839224202895360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702295242/tumblr_lvgaapnIQs1qhwpiu_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702295242/tumblr_lvgaapnIQs1qhwpiu_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@KristenBROnline isso e vdd - #HappyBirthdayTwilighters usa a tag", "to_user": "KristenBROnline", "to_user_id": 231561173, "to_user_id_str": "231561173", "to_user_name": "Kristen Online", "in_reply_to_status_id": 148836762477789200, "in_reply_to_status_id_str": "148836762477789185"}, +{"created_at": "Mon, 19 Dec 2011 18:56:50 +0000", "from_user": "MacTrast", "from_user_id": 16711478, "from_user_id_str": "16711478", "from_user_name": "MacTrast", "geo": null, "id": 148839221770199040, "id_str": "148839221770199040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1581477225/mactrast-logo_reasonably_small_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1581477225/mactrast-logo_reasonably_small_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "T-Mobile USA begins adding iPhone-ready 3G to their network, may be preparing to offer the iPhone http://t.co/hz227wBM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:49 +0000", "from_user": "SAMUEL_SAN", "from_user_id": 22853733, "from_user_id_str": "22853733", "from_user_name": "SAMUEL-SAN", "geo": null, "id": 148839219450740740, "id_str": "148839219450740736", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1629566623/sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629566623/sm_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@GabrielaPAIN Ei esse jogo q o o cara \\u00E9 imortal \\u00E9 um q ele arraca a propria cabe\\u00E7a e usa como arma? (na verdade nao \\u00E9 so a cabe\\u00E7a ne)", "to_user": "GabrielaPAIN", "to_user_id": 388337120, "to_user_id_str": "388337120", "to_user_name": "gabideathqsuad@", "in_reply_to_status_id": 148524646935953400, "in_reply_to_status_id_str": "148524646935953408"}, +{"created_at": "Mon, 19 Dec 2011 18:56:49 +0000", "from_user": "among_women", "from_user_id": 395978966, "from_user_id_str": "395978966", "from_user_name": "Pat Gohn", "geo": null, "id": 148839219173920770, "id_str": "148839219173920769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1601096668/AW_300x300cover_art_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601096668/AW_300x300cover_art_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Excellent news for the USA! | RT @TheAnchoress Kateri Tekakwitha, Marianne Cope to be Canonized http://t.co/lCavlofG @OSV @KathySchiffer", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:49 +0000", "from_user": "bahrainseed", "from_user_id": 301619645, "from_user_id_str": "301619645", "from_user_name": "\\u0627\\u0646\\u0643\\u0633\\u0631 \\u0627\\u0644\\u0642\\u064A\\u062F", "geo": null, "id": 148839218100191230, "id_str": "148839218100191233", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1527659526/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1527659526/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#F1 teams: police try to run over a protester in Mameer #Bahrain /12\\nhttp://t.co/VzwBcQxJ\\n\\n@F1\\n@14FebTV\\n@ALWEFAQ\\n@SHalMosawi\\n@Feb14RT\\n#USA", "to_user": "F1", "to_user_id": 69008563, "to_user_id_str": "69008563", "to_user_name": "Formula1.com"}, +{"created_at": "Mon, 19 Dec 2011 18:56:49 +0000", "from_user": "Jasminepjl", "from_user_id": 431774312, "from_user_id_str": "431774312", "from_user_name": "Jasmine Haefner", "geo": null, "id": 148839216799957000, "id_str": "148839216799956993", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681183462/nl1w5j555w_120749357-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681183462/nl1w5j555w_120749357-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "It isn't easy being princess Marissa White USA Flag / Checker Racing Hat / Baseball Cap: T-ShirtFrenzy offers ov... http://t.co/Dkwum8tl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:49 +0000", "from_user": "Ludivinasdz", "from_user_id": 431756070, "from_user_id_str": "431756070", "from_user_name": "Ludivina Filmer", "geo": null, "id": 148839216749621250, "id_str": "148839216749621248", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681150252/rqimf52csp_121330606_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681150252/rqimf52csp_121330606_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Neiko Tools USA 8\" DAQ Gear Driven Orbital Sander with Pad: Neiko Tools U.S.A. 8\"-DAQ Gear Driven Orbital Sander... http://t.co/tzVwYSB6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:48 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148839215050932220, "id_str": "148839215050932225", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "CARLOS USA COND\\u00D3N,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:48 +0000", "from_user": "JuliaGomees", "from_user_id": 60754539, "from_user_id_str": "60754539", "from_user_name": "Juu Gomes", "geo": null, "id": 148839214744743940, "id_str": "148839214744743936", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1374125174/Foto0502._normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1374125174/Foto0502._normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "maravilhanaervilha: http://t.co/8XBJptdN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:48 +0000", "from_user": "eddieshafer", "from_user_id": 57380519, "from_user_id_str": "57380519", "from_user_name": "Eddie Shafer", "geo": null, "id": 148839213977174000, "id_str": "148839213977174017", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1573221162/ESProfile_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1573221162/ESProfile_normal.JPG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @Chronicle_Owls: Rice forward Christal Porter was named Conference USA freshman of the week Monday #rice", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:47 +0000", "from_user": "fopyfetiba", "from_user_id": 433843387, "from_user_id_str": "433843387", "from_user_name": "Mawaddah Gregson", "geo": null, "id": 148839211355750400, "id_str": "148839211355750401", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686813191/1590_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686813191/1590_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "loan closing documents http://t.co/BYEvp5Rr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:47 +0000", "from_user": "TheChinaPress", "from_user_id": 35886858, "from_user_id_str": "35886858", "from_user_name": "China Press ", "geo": null, "id": 148839207635398660, "id_str": "148839207635398656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/187085108/logo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/187085108/logo_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Paul leads in Iowa as Gingrich support erodes: poll\\nhttp://t.co/FHeXxo0V", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:46 +0000", "from_user": "fmaylliw0909", "from_user_id": 404077294, "from_user_id_str": "404077294", "from_user_name": "Francis M. Ni\\u00F1o S.", "geo": null, "id": 148839207325011970, "id_str": "148839207325011968", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676539545/DSC07542_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676539545/DSC07542_normal.JPG", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: No se usa \"hubieron\" cuando haber se emplea para denotar la presencia de personas o cosas, Hubieron 6 ni\\u00F1os (\\u2717), debe decirse: Hubo 6 ni\\u00F1os\\u2611", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:45 +0000", "from_user": "Cletus_finance", "from_user_id": 372801171, "from_user_id_str": "372801171", "from_user_name": "Cletus E. Cunningham", "geo": null, "id": 148839201289408500, "id_str": "148839201289408512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1541051199/intermediatefinance_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541051199/intermediatefinance_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "The Primary Promise That USA Had Made to the World Citizens is Now Gravely Jeopardized http://t.co/5EDmj29k", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:45 +0000", "from_user": "EmmettKellyJr_F", "from_user_id": 409675702, "from_user_id_str": "409675702", "from_user_name": "Emmett Kelly Jr Gift", "geo": null, "id": 148839199301312500, "id_str": "148839199301312512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1674139183/EKJ1101_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674139183/EKJ1101_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "☚ Emmett Kelly Jr 2011 Christmas Ornament.2011 Ornament Made in the USA Get at http://t.co/vElCyHMJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:44 +0000", "from_user": "JorgeSierraG", "from_user_id": 66746647, "from_user_id_str": "66746647", "from_user_name": "Jorge Sierra", "geo": null, "id": 148839198198218750, "id_str": "148839198198218752", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1678414228/Chapulin_Colorado_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678414228/Chapulin_Colorado_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "#L\\u00F3pezObrador no usa el metro porq no es #Prole, en cambio yo us\\u00E9 el metro en NY, Boston, Par\\u00EDs, Londres, Madrid y Berlin. Soy #MegaProle!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:44 +0000", "from_user": "mariateigland", "from_user_id": 187670230, "from_user_id_str": "187670230", "from_user_name": "Maria Teigland", "geo": null, "id": 148839195283161100, "id_str": "148839195283161088", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681118053/thomas_adam_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681118053/thomas_adam_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Nicklasmyhre pakker til USA, lurer p\\u00E5 om det er plass i kofferten!?", "to_user": "Nicklasmyhre", "to_user_id": 418069301, "to_user_id_str": "418069301", "to_user_name": "Nicklas Myhre"}, +{"created_at": "Mon, 19 Dec 2011 18:56:43 +0000", "from_user": "itsvickieee", "from_user_id": 101253298, "from_user_id_str": "101253298", "from_user_name": "Victoria", "geo": null, "id": 148839193982926850, "id_str": "148839193982926848", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696570075/teukkie___normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696570075/teukkie___normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/MLD7ZLbW COSTAY MAIS DESSA VOU COMPRAR BSJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:43 +0000", "from_user": "Marlene_Vii", "from_user_id": 100587281, "from_user_id_str": "100587281", "from_user_name": "Marlene Villegas", "geo": null, "id": 148839193622220800, "id_str": "148839193622220800", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1674520987/DSC01007_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674520987/DSC01007_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @_Adicta: TU LA QUE LEE ESTE TWEET USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:43 +0000", "from_user": "jeffreymadwisc", "from_user_id": 278570134, "from_user_id_str": "278570134", "from_user_name": "jeffreysborreson", "geo": null, "id": 148839191986454530, "id_str": "148839191986454529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1305915974/ogTBT7x1_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1305915974/ogTBT7x1_normal", "source": "<a href="http://splitweet.com" rel="nofollow">Splitweet</a>", "text": "RT @BigFraud: FBI #Los #Angeles \"Closely Monitoring\" Coutts Bank HSBC USA $1,OOO,OOO,OOO, #Bahamas Gibraltar Fraud Case http://t.co/xKsdaMIc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:42 +0000", "from_user": "sabiqydin", "from_user_id": 434130821, "from_user_id_str": "434130821", "from_user_name": "Roswel Matej", "geo": null, "id": 148839189595701250, "id_str": "148839189595701248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687038175/1573_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687038175/1573_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "auto insurance license course http://t.co/jjk8dHR2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:42 +0000", "from_user": "Becknetter", "from_user_id": 44663498, "from_user_id_str": "44663498", "from_user_name": "Beck (P. Becknetter)", "geo": null, "id": 148839188790394880, "id_str": "148839188790394880", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1652312475/1fd89130153011e180c9123138016265_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652312475/1fd89130153011e180c9123138016265_7_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Detesta falsidade, mas usa lente de contato verde.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:41 +0000", "from_user": "avrildalara", "from_user_id": 292607871, "from_user_id_str": "292607871", "from_user_name": "Lara \\u25B2", "geo": null, "id": 148839185191669760, "id_str": "148839185191669762", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1683529706/Imagem39_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683529706/Imagem39_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ESSESGAYS: \"como vc pode gostar de tatuagem e alargador? que coisa feia\" disse a pessoa que gosta de funk usa shortinho de 5cm e tem piercing no umbigo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:41 +0000", "from_user": "Margartmpw", "from_user_id": 440196582, "from_user_id_str": "440196582", "from_user_name": "Margart Trivette", "geo": null, "id": 148839184730296320, "id_str": "148839184730296322", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700534738/large_RQRSGRGUFXNP_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700534738/large_RQRSGRGUFXNP_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "I Love/Heart American Eskimo Dog White USA Flag / Checker Racing Hat / Baseball Cap: T-ShirtFrenzy offers over 3... http://t.co/gW5CmZuU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:40 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148839182008205300, "id_str": "148839182008205312", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NECIA USA COND\\u00D3N,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:40 +0000", "from_user": "fadboo", "from_user_id": 28802658, "from_user_id_str": "28802658", "from_user_name": "Michelle", "geo": null, "id": 148839181269991420, "id_str": "148839181269991424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1158574286/Prance__Custom___6__normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1158574286/Prance__Custom___6__normal.gif", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @TornadoTimmy: The SPC issues a winter MD for northeast NM, SE CO, & SW KS..snowfall rates at or above 1\"/hr: http://t.co/QBQ8SWW7 #cowx #kswx #nmwx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:40 +0000", "from_user": "medicenojos", "from_user_id": 403538034, "from_user_id_str": "403538034", "from_user_name": "3lm3r M3nd3z", "geo": null, "id": 148839181110624260, "id_str": "148839181110624256", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688341780/IMG00124-20111116-1128_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688341780/IMG00124-20111116-1128_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@Keviin_Sandoval yo noc paraq tiene bb @Keviin_Sandoval JAMAS me contsta en bbm se tarda una eternidad en responder twits y no usa fb .l.", "to_user": "Keviin_Sandoval", "to_user_id": 363361311, "to_user_id_str": "363361311", "to_user_name": "Kevin :3", "in_reply_to_status_id": 148807738145775600, "in_reply_to_status_id_str": "148807738145775617"}, +{"created_at": "Mon, 19 Dec 2011 18:56:40 +0000", "from_user": "mbeerstrum", "from_user_id": 176930594, "from_user_id_str": "176930594", "from_user_name": "Melanie Bjurstrom", "geo": null, "id": 148839179957182460, "id_str": "148839179957182464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1666947181/mb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666947181/mb_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @grownupbutnot: ummmm, excuse me criminal intent, but the USA network is reserved specifically for SVU #getouttahere", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:40 +0000", "from_user": "gbranker", "from_user_id": 204832422, "from_user_id_str": "204832422", "from_user_name": "Glenn Branker", "geo": +{"coordinates": [40.4659,-74.4857], "type": "Point"}, "id": 148839178455613440, "id_str": "148839178455613440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1526653934/326026002_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1526653934/326026002_normal.jpg", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "I just became the mayor of XPAK USA, LLC on @foursquare! http://t.co/8REHlTxV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:38 +0000", "from_user": "alvintoddjr", "from_user_id": 143210510, "from_user_id_str": "143210510", "from_user_name": "Alvin Todd", "geo": null, "id": 148839172994641920, "id_str": "148839172994641920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1676740412/AeEjuetCMAEuvsd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676740412/AeEjuetCMAEuvsd_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @BuzzinMemphis: Will Barton named Conference USA player of the week: Sophomore guard Will Barton was named C-USA player of the week... http://t.co/C65ZelcK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:37 +0000", "from_user": "Marco_pop", "from_user_id": 93857177, "from_user_id_str": "93857177", "from_user_name": "Marcos Espinal", "geo": null, "id": 148839168385093630, "id_str": "148839168385093632", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689601278/africa0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689601278/africa0_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @JUNIORCABRERA07: \"ALFAREROS HOY EN NUESTRA FE EN VIVO\"@ewtn (especial de navidad) USA 6:00PM- MEXICO 5:00PM- BOGOTA 6:00PM MADRID 12:00AM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:37 +0000", "from_user": "directnewsart", "from_user_id": 108008516, "from_user_id_str": "108008516", "from_user_name": "Direct News Articles", "geo": null, "id": 148839166271164400, "id_str": "148839166271164416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Watch St.Louis Blues vs Columbus Blue Jackets Live Stream Hockey USA NHL National Hockey\\u2026 http://t.co/Qh9CQvIo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:35 +0000", "from_user": "nadoxyfet", "from_user_id": 419400546, "from_user_id_str": "419400546", "from_user_name": "Waller Emps", "geo": null, "id": 148839158792728580, "id_str": "148839158792728576", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1658938886/15_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658938886/15_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @naqomegogum: torque car insurance http://t.co/WmPaDtLV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:34 +0000", "from_user": "rebelfan1_", "from_user_id": 155392070, "from_user_id_str": "155392070", "from_user_name": "Jacob McGhee", "geo": null, "id": 148839155814764540, "id_str": "148839155814764544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/987777772/logo.UNLV__1__normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/987777772/logo.UNLV__1__normal.gif", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @MyRebelSwag: UNLV checks in at #23 in the USA Today/ESPN Coaches Poll.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:34 +0000", "from_user": "Molli08Talk", "from_user_id": 398272729, "from_user_id_str": "398272729", "from_user_name": "Molli Talk", "geo": null, "id": 148839154141249540, "id_str": "148839154141249536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1606567562/KOM-3914_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606567562/KOM-3914_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dune (Extended Three Hour Edition) [ NON-USA FORMAT, PAL, Reg.0 Import - Australia ]: http://t.co/Mtczgi19", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:33 +0000", "from_user": "evoluia", "from_user_id": 58322513, "from_user_id_str": "58322513", "from_user_name": "luiz henrique ", "geo": null, "id": 148839150894841860, "id_str": "148839150894841857", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627547909/274650_100001458397344_1451969350_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627547909/274650_100001458397344_1451969350_n_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Andrea Andrade usa vestido de R$ 20 mil em ensaio de escola de samba http://t.co/dn4CpdPz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:32 +0000", "from_user": "soyunasur", "from_user_id": 373642650, "from_user_id_str": "373642650", "from_user_name": "unasur", "geo": null, "id": 148839146482438140, "id_str": "148839146482438146", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1610519612/250px-Emblem_of_the_Union_of_South_American_Nations.svg_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610519612/250px-Emblem_of_the_Union_of_South_American_Nations.svg_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @katemar1: Un intelectual es un hombre que usa m\\u00E1s palabras de las necesarias para decir m\\u00E1s cosas de las que sabe.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:31 +0000", "from_user": "voluvia1", "from_user_id": 289150468, "from_user_id_str": "289150468", "from_user_name": "LUIZ HENRIQUE", "geo": null, "id": 148839144146206720, "id_str": "148839144146206720", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Andrea Andrade usa vestido de R$ 20 mil em ensaio de escola de samba http://t.co/ck0qtgUv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:31 +0000", "from_user": "StarLedgrtravlr", "from_user_id": 366642142, "from_user_id_str": "366642142", "from_user_name": "Star-Ledger Travel", "geo": null, "id": 148839142153912320, "id_str": "148839142153912321", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1546721628/twitter_SLTravlr2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546721628/twitter_SLTravlr2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @NewarkMuseum: USA Today recently listed the Newark Museum\\u2019s shop as one of the top 10 great places to find fine gifts at a museum. Come by and shop!...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:30 +0000", "from_user": "thaisquiando", "from_user_id": 81216334, "from_user_id_str": "81216334", "from_user_name": "th\\u00E1 dybax", "geo": null, "id": 148839138563588100, "id_str": "148839138563588096", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697422525/P1090528_-_C_pia_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697422525/P1090528_-_C_pia_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:30 +0000", "from_user": "jcatolicospan", "from_user_id": 188107334, "from_user_id_str": "188107334", "from_user_name": "J\\u00F3venes Cat\\u00F3licos", "geo": null, "id": 148839137296908300, "id_str": "148839137296908288", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693981201/Display_Twitter_AdvientoMORADA.pptx_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693981201/Display_Twitter_AdvientoMORADA.pptx_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ALFAREROS: \"ALFAREROS HOY EN NUESTRA FE EN VIVO\" EWTN \\n (especial de navidad) USA 6:00PM- MEXICO 5:00PM- BOGOTA 6:00PM\\n MADRID 12:00AM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:29 +0000", "from_user": "Glendoraioy", "from_user_id": 430051140, "from_user_id_str": "430051140", "from_user_name": "Glendora Gren", "geo": null, "id": 148839134264426500, "id_str": "148839134264426496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677531609/d1ar24fxhn_135318523-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677531609/d1ar24fxhn_135318523-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Fabricas Selectas Party Set of Marbles Dinosaur: http://t.co/dV0PoCDu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:28 +0000", "from_user": "DMoralesReyes", "from_user_id": 108430900, "from_user_id_str": "108430900", "from_user_name": "Diego Morales", "geo": null, "id": 148839128040091650, "id_str": "148839128040091649", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1097646872/pointy-haired_boss_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1097646872/pointy-haired_boss_bigger_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@kirtash90 ten por seguro que aqu\\u00ED ni tu ni yo podremos entrar en ESADE. En USA con esfuerzo si podr\\u00EDas en alguna similar.", "to_user": "kirtash90", "to_user_id": 199686353, "to_user_id_str": "199686353", "to_user_name": "\\u00C1ngel Fern\\u00E1ndez ", "in_reply_to_status_id": 148836805075144700, "in_reply_to_status_id_str": "148836805075144705"}, +{"created_at": "Mon, 19 Dec 2011 18:56:27 +0000", "from_user": "JulianaAlmeid_", "from_user_id": 79733377, "from_user_id_str": "79733377", "from_user_name": "Juliana Almeida", "geo": null, "id": 148839127205412860, "id_str": "148839127205412864", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1609503335/Snapshot_20110914_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609503335/Snapshot_20110914_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Pessoas que ainda usa o orkut.ate qnd?\\u00B0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:27 +0000", "from_user": "FloridaDealsNow", "from_user_id": 405780243, "from_user_id_str": "405780243", "from_user_name": "Florida Deals Today", "geo": null, "id": 148839126593052670, "id_str": "148839126593052673", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1624212269/Fort_L_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624212269/Fort_L_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Here are today's daily deals three-quarters off http://t.co/XCn1o01S", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:27 +0000", "from_user": "bolicato1", "from_user_id": 370647079, "from_user_id_str": "370647079", "from_user_name": "bolicato", "geo": null, "id": 148839124848218100, "id_str": "148839124848218112", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1537185844/bolicato_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1537185844/bolicato_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Andrea Andrade usa vestido de R$ 20 mil em ensaio de escola de samba http://t.co/Vj8MlccK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:26 +0000", "from_user": "zandrawtnorvell", "from_user_id": 305967447, "from_user_id_str": "305967447", "from_user_name": "Zandra Norvell", "geo": null, "id": 148839123225030660, "id_str": "148839123225030656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685458293/imagesCAJUBWXJ_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685458293/imagesCAJUBWXJ_normal", "source": "<a href="http://couponsforcybermonday.com" rel="nofollow">couponsforcybermondaydotcom</a>", "text": "HagenExo Terra Compact Incandescent Fixt..Only $ 16.75 http://t.co/AQJPZkbC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:26 +0000", "from_user": "princehandley", "from_user_id": 16877999, "from_user_id_str": "16877999", "from_user_name": "Prince Handley", "geo": null, "id": 148839122830770180, "id_str": "148839122830770176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/235256333/Prince_Handley_300x300_jpeg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/235256333/Prince_Handley_300x300_jpeg_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Who will win the #2012 #USA #Presidential #Election? Prediction #economy #green #terrorism By Prince Handley http://t.co/9GxWo66X", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:26 +0000", "from_user": "ArKaos", "from_user_id": 41770806, "from_user_id_str": "41770806", "from_user_name": "ArKaos Team", "geo": null, "id": 148839122121928700, "id_str": "148839122121928704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/422419664/profilepic001-sq_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/422419664/profilepic001-sq_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "This week's winner is Jeff Gooch, from Greenwood, Indiana, USA! You can still participate for next week at http://t.co/iICtqJUa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:26 +0000", "from_user": "ShayraSwift", "from_user_id": 166042714, "from_user_id_str": "166042714", "from_user_name": "Hi, I'm Sy (\\u25D5\\u203F\\u25D5 \\u273F)", "geo": null, "id": 148839121811550200, "id_str": "148839121811550208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696765647/473803405_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696765647/473803405_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@alishaluvsyou The USA. :D", "to_user": "alishaluvsyou", "to_user_id": 151139691, "to_user_id_str": "151139691", "to_user_name": "AlishaSmith:)", "in_reply_to_status_id": 148838954521722880, "in_reply_to_status_id_str": "148838954521722880"}, +{"created_at": "Mon, 19 Dec 2011 18:56:25 +0000", "from_user": "theycallmeteddy", "from_user_id": 19655696, "from_user_id_str": "19655696", "from_user_name": "theycallmeteddy", "geo": null, "id": 148839118208647170, "id_str": "148839118208647168", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686597942/me_strbcks_bw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686597942/me_strbcks_bw_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Tonight Alive makin melejit aja nih stlh USA Tour, jd iri sama @johanwinart0 yg foto bareng sama Jenna dan yg lain.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:24 +0000", "from_user": "BenMishal", "from_user_id": 231148402, "from_user_id_str": "231148402", "from_user_name": "Abdulrahman AlMishal", "geo": null, "id": 148839114899333120, "id_str": "148839114899333120", "iso_language_code": "ar", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1560894433/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1560894433/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u0634\\u0631\\u0648\\u0637 \\u0627\\u0644\\u062A\\u0631\\u0634\\u062D \\u0644\\u0631\\u0626\\u0627\\u0633\\u0647 \\u0627\\u0644\\u0648\\u0644\\u0627\\u064A\\u0627\\u062A \\u0627\\u0644\\u0623\\u0645\\u0631\\u064A\\u0643\\u064A\\u0647 \\u0627\\u0644\\u0645\\u062A\\u062D\\u062F\\u0647\\n\\n* \\u0627\\u0644\\u0639\\u0645\\u0631 \\u0663\\u0665 \\u0633\\u0646\\u0647 \\u0648\\u0645\\u0627 \\u0641\\u0648\\u0642\\n* \\u0623\\u0646 \\u064A\\u0643\\u0648\\u0646 \\u0644\\u062F\\u064A\\u0643 \\u0625\\u062B\\u0628\\u0627\\u062A \\u0628\\u0623\\u0646\\u0643 \\u0623\\u0645\\u0631\\u064A\\u0643\\u064A\\n\\n#\\u0645\\u0639\\u0644\\u0648\\u0645\\u0647\\n#USA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:24 +0000", "from_user": "AjarianJ", "from_user_id": 45601751, "from_user_id_str": "45601751", "from_user_name": "Adrian", "geo": null, "id": 148839111652941820, "id_str": "148839111652941824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1505886531/IMG_0939__480x640__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505886531/IMG_0939__480x640__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @harvardcrimson: MBB: Harvard back in the ESPN/USA Today coaches poll at No. 25 #GoCrimson", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:24 +0000", "from_user": "chamilli9mm", "from_user_id": 108694448, "from_user_id_str": "108694448", "from_user_name": "David adiele", "geo": null, "id": 148839111636172800, "id_str": "148839111636172800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1595631890/IMG00189-20111007-0821_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1595631890/IMG00189-20111007-0821_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Playboy mansion RT @TWEETORACLE: The HQ of the #PORN industry in USA is ________?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:23 +0000", "from_user": "samrosin", "from_user_id": 172472466, "from_user_id_str": "172472466", "from_user_name": "Sam Rosin", "geo": null, "id": 148839108981178370, "id_str": "148839108981178368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1514353538/sampic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1514353538/sampic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @harvardcrimson: MBB: Harvard back in the ESPN/USA Today coaches poll at No. 25 #GoCrimson", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:23 +0000", "from_user": "CintyaFontelles", "from_user_id": 224408218, "from_user_id_str": "224408218", "from_user_name": "\\u10D6 Cintyaa.F.", "geo": null, "id": 148839108536582140, "id_str": "148839108536582145", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1616384870/CIMG4886_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616384870/CIMG4886_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Usa meus beijos e abra\\u00E7os pra se esconder da dor, nem se toca que eu posso gostar (8)....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:23 +0000", "from_user": "wordtravelsfast", "from_user_id": 19225703, "from_user_id_str": "19225703", "from_user_name": "Lauree McArdle", "geo": null, "id": 148839108280717300, "id_str": "148839108280717312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1250039256/profilepic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1250039256/profilepic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@bbcgetiton enjoying the show while working in Arlington, VA USA! How about @AdmiralFallow \"Squealing Pigs\" featuring a rousing clarinet?!", "to_user": "bbcgetiton", "to_user_id": 336000877, "to_user_id_str": "336000877", "to_user_name": "Get it On"}, +{"created_at": "Mon, 19 Dec 2011 18:56:23 +0000", "from_user": "circotimia_", "from_user_id": 221610474, "from_user_id_str": "221610474", "from_user_name": "M a i t e\\u10E6. ", "geo": null, "id": 148839107437666300, "id_str": "148839107437666304", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698350821/jjo__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698350821/jjo__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "TENGO SUE\\u00D1O USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:23 +0000", "from_user": "mal__donado", "from_user_id": 384153752, "from_user_id_str": "384153752", "from_user_name": "Rodrigo Maldonado", "geo": null, "id": 148839107232145400, "id_str": "148839107232145408", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1683784056/maldo_msnfd5_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683784056/maldo_msnfd5_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@l4r0s4 Bom, voc\\u00EA \\u00E9 perturbada e usa preto... Mas n\\u00E3o acho que tenha tanto senso de Justi\\u00E7a.", "to_user": "l4r0s4", "to_user_id": 424588793, "to_user_id_str": "424588793", "to_user_name": "Larissa Junior", "in_reply_to_status_id": 148838621330415600, "in_reply_to_status_id_str": "148838621330415618"}, +{"created_at": "Mon, 19 Dec 2011 18:56:22 +0000", "from_user": "SarahAlSaeed", "from_user_id": 48180774, "from_user_id_str": "48180774", "from_user_name": "Sarah Al Saeed", "geo": null, "id": 148839104610709500, "id_str": "148839104610709504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1667703408/IMG-20110913-00560_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667703408/IMG-20110913-00560_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "When a gentleman doesn't like a person.. RT\\u201C@Supermomo76: Hillary Clinton is my least favorite person in the United States #polite #usa\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:22 +0000", "from_user": "NestorGarciaR", "from_user_id": 269503549, "from_user_id_str": "269503549", "from_user_name": "N\\u00E9stor Garc\\u00EDa Rdguez", "geo": null, "id": 148839102584848400, "id_str": "148839102584848385", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682105307/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682105307/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Muchos \"peros\" usa #Rajoy.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:21 +0000", "from_user": "Spinky_mdr", "from_user_id": 213409119, "from_user_id_str": "213409119", "from_user_name": "Ciela", "geo": null, "id": 148839102077349900, "id_str": "148839102077349888", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1659891800/281266_2209864402241_1116404743_32528622_7369924_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659891800/281266_2209864402241_1116404743_32528622_7369924_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:20 +0000", "from_user": "Batoooly", "from_user_id": 270305488, "from_user_id_str": "270305488", "from_user_name": "Batool Alawi", "geo": null, "id": 148839096482140160, "id_str": "148839096482140160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1590008135/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1590008135/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @M_ALSHAIKH: Free Zainab AlKhawaja http://t.co/UQSHGv59 via @GoPetition #UK #UN #USA #Russia #Algeria @14FebRevolution @MARYAMALKHAWAJA @Laith_Albahrain", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:20 +0000", "from_user": "weather_austin", "from_user_id": 253707229, "from_user_id_str": "253707229", "from_user_name": "Weather Austin", "geo": null, "id": 148839095689416700, "id_str": "148839095689416705", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1247403383/WO-20px-linien_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1247403383/WO-20px-linien_normal.png", "source": "<a href="http://www.woweather.com/USA/Austin.htm" rel="nofollow">update weather austin</a>", "text": "#Austin #Texas Dec 19 12:44 Temperature 69\\u00B0F light rain Wind S 19 km/h Humidity 90% .. http://t.co/iYpT2bJW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:19 +0000", "from_user": "kodyvypogem", "from_user_id": 433743993, "from_user_id_str": "433743993", "from_user_name": "Sedat Linner", "geo": null, "id": 148839093386739700, "id_str": "148839093386739712", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687394006/1356_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687394006/1356_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "loan forgiveness gift tax http://t.co/kS8iAs4S", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:18 +0000", "from_user": "jakescott8", "from_user_id": 338039093, "from_user_id_str": "338039093", "from_user_name": "Jake Scott", "geo": null, "id": 148839088403918850, "id_str": "148839088403918849", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1657989654/0v5xUrHU_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657989654/0v5xUrHU_normal", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @OVCSports: Murray State cracks USA Today/ESPN Coaches Poll for first time this season, coming in at No. 22: http://t.co/ZO7XOMPP #OVC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:56:23 +0000", "from_user": "circotimia_", "from_user_id": 221610474, "from_user_id_str": "221610474", "from_user_name": "M a i t e\\u10E6. ", "geo": null, "id": 148839107437666300, "id_str": "148839107437666304", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698350821/jjo__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698350821/jjo__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "TENGO SUE\\u00D1O USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:23 +0000", "from_user": "mal__donado", "from_user_id": 384153752, "from_user_id_str": "384153752", "from_user_name": "Rodrigo Maldonado", "geo": null, "id": 148839107232145400, "id_str": "148839107232145408", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1683784056/maldo_msnfd5_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683784056/maldo_msnfd5_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@l4r0s4 Bom, voc\\u00EA \\u00E9 perturbada e usa preto... Mas n\\u00E3o acho que tenha tanto senso de Justi\\u00E7a.", "to_user": "l4r0s4", "to_user_id": 424588793, "to_user_id_str": "424588793", "to_user_name": "Larissa Junior", "in_reply_to_status_id": 148838621330415600, "in_reply_to_status_id_str": "148838621330415618"}, +{"created_at": "Mon, 19 Dec 2011 18:56:22 +0000", "from_user": "SarahAlSaeed", "from_user_id": 48180774, "from_user_id_str": "48180774", "from_user_name": "Sarah Al Saeed", "geo": null, "id": 148839104610709500, "id_str": "148839104610709504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1667703408/IMG-20110913-00560_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667703408/IMG-20110913-00560_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "When a gentleman doesn't like a person.. RT\\u201C@Supermomo76: Hillary Clinton is my least favorite person in the United States #polite #usa\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:22 +0000", "from_user": "NestorGarciaR", "from_user_id": 269503549, "from_user_id_str": "269503549", "from_user_name": "N\\u00E9stor Garc\\u00EDa Rdguez", "geo": null, "id": 148839102584848400, "id_str": "148839102584848385", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682105307/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682105307/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Muchos \"peros\" usa #Rajoy.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:21 +0000", "from_user": "Spinky_mdr", "from_user_id": 213409119, "from_user_id_str": "213409119", "from_user_name": "Ciela", "geo": null, "id": 148839102077349900, "id_str": "148839102077349888", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1659891800/281266_2209864402241_1116404743_32528622_7369924_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659891800/281266_2209864402241_1116404743_32528622_7369924_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:20 +0000", "from_user": "Batoooly", "from_user_id": 270305488, "from_user_id_str": "270305488", "from_user_name": "Batool Alawi", "geo": null, "id": 148839096482140160, "id_str": "148839096482140160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1590008135/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1590008135/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @M_ALSHAIKH: Free Zainab AlKhawaja http://t.co/UQSHGv59 via @GoPetition #UK #UN #USA #Russia #Algeria @14FebRevolution @MARYAMALKHAWAJA @Laith_Albahrain", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:20 +0000", "from_user": "weather_austin", "from_user_id": 253707229, "from_user_id_str": "253707229", "from_user_name": "Weather Austin", "geo": null, "id": 148839095689416700, "id_str": "148839095689416705", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1247403383/WO-20px-linien_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1247403383/WO-20px-linien_normal.png", "source": "<a href="http://www.woweather.com/USA/Austin.htm" rel="nofollow">update weather austin</a>", "text": "#Austin #Texas Dec 19 12:44 Temperature 69\\u00B0F light rain Wind S 19 km/h Humidity 90% .. http://t.co/iYpT2bJW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:19 +0000", "from_user": "kodyvypogem", "from_user_id": 433743993, "from_user_id_str": "433743993", "from_user_name": "Sedat Linner", "geo": null, "id": 148839093386739700, "id_str": "148839093386739712", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687394006/1356_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687394006/1356_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "loan forgiveness gift tax http://t.co/kS8iAs4S", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:18 +0000", "from_user": "jakescott8", "from_user_id": 338039093, "from_user_id_str": "338039093", "from_user_name": "Jake Scott", "geo": null, "id": 148839088403918850, "id_str": "148839088403918849", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1657989654/0v5xUrHU_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657989654/0v5xUrHU_normal", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @OVCSports: Murray State cracks USA Today/ESPN Coaches Poll for first time this season, coming in at No. 22: http://t.co/ZO7XOMPP #OVC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:17 +0000", "from_user": "Viri_b2uty", "from_user_id": 161857307, "from_user_id_str": "161857307", "from_user_name": "Viridiana Bautista", "geo": null, "id": 148839082661912580, "id_str": "148839082661912576", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1632940304/tumblr_ltkjdvDgC71qitqnko1_500u_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632940304/tumblr_ltkjdvDgC71qitqnko1_500u_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "si le pasa algo a mi twitter entrar\\u00E9 en el de mi hermana adem\\u00E1s ni lo usa :D #unitedcubeinmexico unitedcubeinmexico", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:17 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148839082657714180, "id_str": "148839082657714176", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "GORDA USA COND\\u00D3N,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:17 +0000", "from_user": "Amsterdam305410", "from_user_id": 30322768, "from_user_id_str": "30322768", "from_user_name": "AMEN\\u2714 Verified ", "geo": null, "id": 148839081693020160, "id_str": "148839081693020160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698521422/331615629_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698521422/331615629_normal.jpg", "source": "<a href="http://twitpic.com" rel="nofollow">Twitpic</a>", "text": "@KDTREY5 KEEP UP THE GOOD WORK,USA CW IS FIYAH http://t.co/Oi0dK0b9", "to_user": "KDTrey5", "to_user_id": 35936474, "to_user_id_str": "35936474", "to_user_name": "Kevin Durant"}, +{"created_at": "Mon, 19 Dec 2011 18:56:16 +0000", "from_user": "_Adicta", "from_user_id": 123965194, "from_user_id_str": "123965194", "from_user_name": "La que hace spam.", "geo": null, "id": 148839081395228670, "id_str": "148839081395228672", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "FAY ALEJANDRO USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:16 +0000", "from_user": "dulcerada", "from_user_id": 82342845, "from_user_id_str": "82342845", "from_user_name": "Radmila Dimitrijevic", "geo": null, "id": 148839081328123900, "id_str": "148839081328123905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690775201/IMG000009_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690775201/IMG000009_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "RT @RBD4everClub: Anah\\u00ED volver\\u00E1 a trabajar con Christopher Uckermann... #RBD4everClub noticia BARKEN http://t.co/AG5y1r96", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:16 +0000", "from_user": "minefreeworld", "from_user_id": 219027602, "from_user_id_str": "219027602", "from_user_name": "ICBL", "geo": null, "id": 148839079784624130, "id_str": "148839079784624128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1583717731/P4P_square__jpg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583717731/P4P_square__jpg_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Reporter: When will the #US policy review on #landmines be completed? #DOS: No timetable for completion, it's ongoing: http://t.co/e7pnIuak", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:16 +0000", "from_user": "comedia_gospel", "from_user_id": 308756595, "from_user_id_str": "308756595", "from_user_name": "humor e louvor", "geo": null, "id": 148839078622789630, "id_str": "148839078622789633", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1650468524/Foto0028_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650468524/Foto0028_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "crente gremista n\\u00E3o acredita em papai noel porque ele usa um uniforme ''colorado'' #LLOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:14 +0000", "from_user": "DriihpexME", "from_user_id": 263796180, "from_user_id_str": "263796180", "from_user_name": "Driih.Pex", "geo": null, "id": 148839073044381700, "id_str": "148839073044381696", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701313149/OgAAAL_mIJ0M8zMeN5ZtoYmMqMcGW1gYFEKMttfCJBoPktQYEHUD6X3RJGCatUsn-cdoMoKAGVoeScjrDYiB-lKGAaoAm1T1UGkyHz5Kp2F03FjHn2dSwY-VXOK__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701313149/OgAAAL_mIJ0M8zMeN5ZtoYmMqMcGW1gYFEKMttfCJBoPktQYEHUD6X3RJGCatUsn-cdoMoKAGVoeScjrDYiB-lKGAaoAm1T1UGkyHz5Kp2F03FjHn2dSwY-VXOK__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "mais vo usa isso mais como for\\u00E7a pra treina e grava meu video", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:14 +0000", "from_user": "StreetSmartUSA", "from_user_id": 358853939, "from_user_id_str": "358853939", "from_user_name": "StreetSmartUSA", "geo": null, "id": 148839071572172800, "id_str": "148839071572172800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1508518814/Street_20Smart_20iPhone_20Ap_20Store_20Icon_20512x512_1__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1508518814/Street_20Smart_20iPhone_20Ap_20Store_20Icon_20512x512_1__normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Do whatever you can to not put yourself in dangerous situations when traveling, http://t.co/LLz1Nfrv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:14 +0000", "from_user": "TheChinaPress", "from_user_id": 35886858, "from_user_id_str": "35886858", "from_user_name": "China Press ", "geo": null, "id": 148839071140155400, "id_str": "148839071140155392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/187085108/logo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/187085108/logo_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "One-third of young U.S. adults have been arrested: study\\nhttp://t.co/yydGoV9n", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:13 +0000", "from_user": "gpaulillo", "from_user_id": 52893561, "from_user_id_str": "52893561", "from_user_name": "Gu Paulillo", "geo": null, "id": 148839065825976320, "id_str": "148839065825976320", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1538899165/perfil_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538899165/perfil_normal.png", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "Algu\\u00E9m ai usa o Pivotal Tracker?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:12 +0000", "from_user": "MalukiinhaV", "from_user_id": 93001463, "from_user_id_str": "93001463", "from_user_name": "MaluVeloso", "geo": null, "id": 148839064433463300, "id_str": "148839064433463296", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1547685550/Foto0627_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1547685550/Foto0627_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @prjuniorsouza: A globo nos usa pra ganhar audiencia, e N\\u00F3s usamos a globo pra pregar o evangelho. Foorte #FestivalPromessas", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:12 +0000", "from_user": "OBileski", "from_user_id": 350662107, "from_user_id_str": "350662107", "from_user_name": "Lucas Bileski", "geo": null, "id": 148839062181117950, "id_str": "148839062181117952", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1665401171/Avatar_de_Natal2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665401171/Avatar_de_Natal2_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@A_Strange_Girl_ Aumenta, diminui, recorte e cola em outra, ctrl+z e ctrl+v. Usa a criatividade. \\u00C9 uma camisa dos Ramones!!!", "to_user": "A_Strange_Girl_", "to_user_id": 226718064, "to_user_id_str": "226718064", "to_user_name": "Mini Sonya da Eglla ", "in_reply_to_status_id": 148838544473989120, "in_reply_to_status_id_str": "148838544473989120"}, +{"created_at": "Mon, 19 Dec 2011 18:56:12 +0000", "from_user": "JimQualls", "from_user_id": 21944933, "from_user_id_str": "21944933", "from_user_name": "Jim Qualls", "geo": null, "id": 148839062055288830, "id_str": "148839062055288832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1400456796/JQ_pics_002_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1400456796/JQ_pics_002_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "RT @CleanCitiesATL: Electric Cars get a Solar Boost with the new charging station at the Alpharetta-based Solar Energy USA in south... http://t.co/h4QGrAyB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:11 +0000", "from_user": "luisbon", "from_user_id": 36456711, "from_user_id_str": "36456711", "from_user_name": "Loui Bon", "geo": null, "id": 148839057437364220, "id_str": "148839057437364228", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1572523451/24092011043_-_copia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572523451/24092011043_-_copia_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:11 +0000", "from_user": "iLLESTCHIKA", "from_user_id": 359380748, "from_user_id_str": "359380748", "from_user_name": "ChiKodI \\u2665", "geo": null, "id": 148839057114402800, "id_str": "148839057114402816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702495056/_UK__20Chikodinaka_20_E2_80_A2_20Agbomma_NG__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702495056/_UK__20Chikodinaka_20_E2_80_A2_20Agbomma_NG__normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Statue of Liberty\"@TWEETORACLE: The HQ of the #PORN industry in USA is ________?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:11 +0000", "from_user": "omar_nava", "from_user_id": 113835999, "from_user_id_str": "113835999", "from_user_name": "Omar Nava ", "geo": null, "id": 148839057043111940, "id_str": "148839057043111937", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1300449572/yo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1300449572/yo_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "\\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:10 +0000", "from_user": "Solangegzz", "from_user_id": 430048112, "from_user_id_str": "430048112", "from_user_name": "Solange Maysonet", "geo": null, "id": 148839053893177340, "id_str": "148839053893177344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677522454/r0rc0o55wl_127498733-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677522454/r0rc0o55wl_127498733-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Delorme TopoUSA 5.0: Topo USA 5.0 is for the trailblazer who wants to explore the city, the country & everything... http://t.co/Kzm3BonB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:09 +0000", "from_user": "nicann0", "from_user_id": 270496695, "from_user_id_str": "270496695", "from_user_name": "Nicole Anglonn", "geo": null, "id": 148839051431133200, "id_str": "148839051431133186", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1282993112/IMG_0079_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1282993112/IMG_0079_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @rio_dnp RT @lexxiocom Red Commerce Looking For SAP GTS Consultant \\u2013 6 Months \\u2013 USA in NJ: Dec 19, 2011:... http://t.co/vvwhTFeA...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:09 +0000", "from_user": "Andaarre", "from_user_id": 77058780, "from_user_id_str": "77058780", "from_user_name": "DA", "geo": null, "id": 148839049434636300, "id_str": "148839049434636288", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1678730101/IMG00827-20111121-2007_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678730101/IMG00827-20111121-2007_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: No se usa \"hubieron\" cuando haber se emplea para denotar la presencia de personas o cosas, Hubieron 6 ni\\u00F1os (\\u2717), debe decirse: Hubo 6 ni\\u00F1os\\u2611", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:09 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148839049237499900, "id_str": "148839049237499904", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "EL POLLITO USA COND\\u00D3N,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:08 +0000", "from_user": "AztecRiches", "from_user_id": 363225191, "from_user_id_str": "363225191", "from_user_name": "Aztec Riches Casino ", "geo": null, "id": 148839046037254140, "id_str": "148839046037254144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1516223157/3_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1516223157/3_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Play http://t.co/YUeo8SOD Tally Ho \\u2013 Free 850 Aztec Ric... http://t.co/si5SHfB7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:08 +0000", "from_user": "ClubBloggers", "from_user_id": 279035149, "from_user_id_str": "279035149", "from_user_name": "Club Bloggers ", "geo": null, "id": 148839046012076030, "id_str": "148839046012076032", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1642587926/bg_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642587926/bg_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "@Culturizando Gram\\u00E1tica: \\u00ABsendos\\u00BB no es equivalente a \\u00ABambos\\u00BB, ni se usa en singular http://t.co/xuydwUFk http://t.co/QgIMaItP", "to_user": "Culturizando", "to_user_id": 244730854, "to_user_id_str": "244730854", "to_user_name": "Culturizando \\u00AE"}, +{"created_at": "Mon, 19 Dec 2011 18:56:08 +0000", "from_user": "TheIsraeliNews", "from_user_id": 142013332, "from_user_id_str": "142013332", "from_user_name": "The Israeli News", "geo": null, "id": 148839045542322180, "id_str": "148839045542322176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/887380554/logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/887380554/logo_normal.jpg", "source": "<a href="http://israeli-news.com" rel="nofollow">Israeli News - Middle East Hottest News</a>", "text": "\"Racists and Hypocrites When it Comes to Palestinians\" http://t.co/v7THWyYf #Comes #Hypocrites #Palestinians", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:08 +0000", "from_user": "Julinhalmeida", "from_user_id": 292587143, "from_user_id_str": "292587143", "from_user_name": "Julia Almeida", "geo": null, "id": 148839045374541820, "id_str": "148839045374541824", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1337740192/C_pia__2__de_Imagem_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1337740192/C_pia__2__de_Imagem_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Ai cala a boca........ voc\\u00EA usa argola na orelha!!!! cruzes, s\\u00F3 Deus salva!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:08 +0000", "from_user": "AztecRiches", "from_user_id": 363225191, "from_user_id_str": "363225191", "from_user_name": "Aztec Riches Casino ", "geo": null, "id": 148839044565045250, "id_str": "148839044565045251", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1516223157/3_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1516223157/3_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Play http://t.co/YUeo8SOD Gold Series Triple Pocket Hol... http://t.co/xLGW6wvS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:08 +0000", "from_user": "BlackjackRooms", "from_user_id": 362723665, "from_user_id_str": "362723665", "from_user_name": "Blackjack Ballroom", "geo": null, "id": 148839044229509120, "id_str": "148839044229509120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1514948261/ballroom_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1514948261/ballroom_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "http://t.co/bUVq3wtW Play Wheel: http://www.rewardsafft... http://t.co/wc7Be4OR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:07 +0000", "from_user": "OccupyJacksonMS", "from_user_id": 394802556, "from_user_id_str": "394802556", "from_user_name": "Tommy Pain", "geo": null, "id": 148839043394834430, "id_str": "148839043394834432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1598133737/savemyfuture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598133737/savemyfuture_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Is this the answer? http://t.co/k81iAT63: \\n \\n \"THE SOCIALIST PARTY strives to establish a radical ... http://t.co/s9QLpLzu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:07 +0000", "from_user": "BlackjackRooms", "from_user_id": 362723665, "from_user_id_str": "362723665", "from_user_name": "Blackjack Ballroom", "geo": null, "id": 148839042795048960, "id_str": "148839042795048961", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1514948261/ballroom_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1514948261/ballroom_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "http://t.co/bUVq3wtW Play Arctic: http://www.rewardsaff... http://t.co/2ZOVC5lh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:07 +0000", "from_user": "AztecRiches", "from_user_id": 363225191, "from_user_id_str": "363225191", "from_user_name": "Aztec Riches Casino ", "geo": null, "id": 148839041494827000, "id_str": "148839041494827009", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1516223157/3_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1516223157/3_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Play http://t.co/YUeo8SOD Gold Series Multihand Pontoon... http://t.co/tKDtlpZR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:07 +0000", "from_user": "BlackjackRooms", "from_user_id": 362723665, "from_user_id_str": "362723665", "from_user_name": "Blackjack Ballroom", "geo": null, "id": 148839041331249150, "id_str": "148839041331249152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1514948261/ballroom_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1514948261/ballroom_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "http://t.co/bUVq3wtW Play Fighting: http://www.rewardsa... http://t.co/I7Ty7oeJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:06 +0000", "from_user": "judystout1", "from_user_id": 416608486, "from_user_id_str": "416608486", "from_user_name": "judy stout", "geo": null, "id": 148839038718185470, "id_str": "148839038718185472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@brianfmoylan @RickJO1 @richardcalhoun I live in USA, will have to brush up as that topic not on my radar in that time frame.", "to_user": "brianfmoylan", "to_user_id": 185188747, "to_user_id_str": "185188747", "to_user_name": "Brian Moylan", "in_reply_to_status_id": 148835096890314750, "in_reply_to_status_id_str": "148835096890314752"}, +{"created_at": "Mon, 19 Dec 2011 18:56:05 +0000", "from_user": "PokerLawyer", "from_user_id": 99993686, "from_user_id_str": "99993686", "from_user_name": "Poker Lawyer", "geo": null, "id": 148839034502909950, "id_str": "148839034502909953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1114704602/pokergirl_edited-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1114704602/pokergirl_edited-1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@KaraOTR - the USA is putting on a brave face, but is going to miss you greatly. Safe travels, happy holidays, & glgl @ poker! Yay #beer! ;)", "to_user": "KaraOTR", "to_user_id": 38149980, "to_user_id_str": "38149980", "to_user_name": "Kara Scott", "in_reply_to_status_id": 148837210978910200, "in_reply_to_status_id_str": "148837210978910208"}, +{"created_at": "Mon, 19 Dec 2011 18:56:05 +0000", "from_user": "cborschette", "from_user_id": 319270401, "from_user_id_str": "319270401", "from_user_name": "Charel Borschette", "geo": null, "id": 148839031747256320, "id_str": "148839031747256320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@gameloft omg why always just for usa?...", "to_user": "gameloft", "to_user_id": 15739966, "to_user_id_str": "15739966", "to_user_name": "Gameloft", "in_reply_to_status_id": 148827581351854080, "in_reply_to_status_id_str": "148827581351854080"}, +{"created_at": "Mon, 19 Dec 2011 18:56:04 +0000", "from_user": "edomanico", "from_user_id": 36313922, "from_user_id_str": "36313922", "from_user_name": "Ernie Domanico", "geo": null, "id": 148839031189405700, "id_str": "148839031189405696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/893650233/Copy_of_Brasil_1_092_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/893650233/Copy_of_Brasil_1_092_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT\"@unlvsid: Runnin' Rebs No. 23 in ESPN/USA Today coaches' poll #UNLVmbb\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:04 +0000", "from_user": "karemuwupyz", "from_user_id": 419624586, "from_user_id_str": "419624586", "from_user_name": "Ramgopal Domoni", "geo": null, "id": 148839028320509950, "id_str": "148839028320509952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1657543406/30_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657543406/30_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @zytoxysezuv: does insurance follow the car or driver in ohio http://t.co/ejyg46C5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:04 +0000", "from_user": "GrabaPig", "from_user_id": 114576372, "from_user_id_str": "114576372", "from_user_name": "Portia The Pig", "geo": null, "id": 148839028144349200, "id_str": "148839028144349184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1055117846/portia_entrance_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1055117846/portia_entrance_normal.png", "source": "<a href="http://marketmesuite.com" rel="nofollow">MarketMeSuite</a>", "text": "This award winning british game make the perfect christmas gift if you live in the USA http://t.co/Zun5ip6V", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:04 +0000", "from_user": "MusicMiscellany", "from_user_id": 285105109, "from_user_id_str": "285105109", "from_user_name": "Richard Floyd", "geo": null, "id": 148839027909476350, "id_str": "148839027909476353", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1320018094/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1320018094/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #134 The 99 Most Essential Christmas Piano: Various Artists $5.99 X5 Music Group http://t.co/aHIk18AO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:04 +0000", "from_user": "TornadoTimmy", "from_user_id": 40083361, "from_user_id_str": "40083361", "from_user_name": "Tim Stoecklein", "geo": null, "id": 148839027859144700, "id_str": "148839027859144704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1563412079/IMAG0073-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1563412079/IMAG0073-1_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "The SPC issues a winter MD for northeast NM, SE CO, & SW KS..snowfall rates at or above 1\"/hr: http://t.co/QBQ8SWW7 #cowx #kswx #nmwx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:04 +0000", "from_user": "ferducss", "from_user_id": 166776388, "from_user_id_str": "166776388", "from_user_name": "Fer Duc", "geo": null, "id": 148839027078991870, "id_str": "148839027078991874", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1416285391/ferhat_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1416285391/ferhat_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:03 +0000", "from_user": "MusicMiscellany", "from_user_id": 285105109, "from_user_id_str": "285105109", "from_user_name": "Richard Floyd", "geo": null, "id": 148839026751848450, "id_str": "148839026751848449", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1320018094/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1320018094/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #230 An Oscar Peterson Christmas: Oscar Peterson $5.00 Telarc http://t.co/ZyXZgkW6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:03 +0000", "from_user": "MusicMiscellany", "from_user_id": 285105109, "from_user_id_str": "285105109", "from_user_name": "Richard Floyd", "geo": null, "id": 148839025472577540, "id_str": "148839025472577536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1320018094/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1320018094/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #330 Joy To The World: Pink Martini $5.99 Heinz Records http://t.co/49WYM9Yp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:03 +0000", "from_user": "filipovsky", "from_user_id": 123298763, "from_user_id_str": "123298763", "from_user_name": "Filip", "geo": null, "id": 148839024516276220, "id_str": "148839024516276226", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1532722950/c122_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1532722950/c122_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@annmarie_pl @muszkieter ale sobie slodzicie ;)\\nW USA mozna placic iphonem za kawe w starbucks. Taking hipsterstyle joke ;)", "to_user": "annmarie_pl", "to_user_id": 122971750, "to_user_id_str": "122971750", "to_user_name": "annmarie_pl", "in_reply_to_status_id": 148838484667412480, "in_reply_to_status_id_str": "148838484667412482"}, +{"created_at": "Mon, 19 Dec 2011 18:56:03 +0000", "from_user": "MusicMiscellany", "from_user_id": 285105109, "from_user_id_str": "285105109", "from_user_name": "Richard Floyd", "geo": null, "id": 148839024335917060, "id_str": "148839024335917057", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1320018094/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1320018094/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #329 Merry Christmas II You: Mariah Carey $7.99 Island Records http://t.co/WbDJh3mA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:03 +0000", "from_user": "Ashlynmzy", "from_user_id": 431682020, "from_user_id_str": "431682020", "from_user_name": "Ashlyn Bartles", "geo": null, "id": 148839023383814140, "id_str": "148839023383814144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680990690/etirym5501_133156960-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680990690/etirym5501_133156960-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "SERIOUS USA The Fellowship of the Rings CD Cardz Blister Pack (Windows): http://t.co/PzhMEjH6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:02 +0000", "from_user": "MusicMiscellany", "from_user_id": 285105109, "from_user_id_str": "285105109", "from_user_name": "Richard Floyd", "geo": null, "id": 148839022310080500, "id_str": "148839022310080512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1320018094/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1320018094/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #129 Stephanie Miller's Sexy Liberal Comedy Tour, Vol 1. [Explicit]: Various Artists $8.99 SM Radio P... http://t.co/WgE3l6vB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:02 +0000", "from_user": "Online_Viagra_R", "from_user_id": 213221281, "from_user_id_str": "213221281", "from_user_name": "online pharm top", "geo": null, "id": 148839021240516600, "id_str": "148839021240516609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1165331569/viagra_turn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1165331569/viagra_turn_normal.jpg", "source": "<a href="http://secureinstallation.info" rel="nofollow">web online</a>", "text": "Buy Viagra Online From USA Trusted Drugstore! Generic and brand drugs with 100% satisfaction guaranteed. http://t.co/N8Cb5hU1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:02 +0000", "from_user": "sequoiaforest", "from_user_id": 53796731, "from_user_id_str": "53796731", "from_user_name": "Forest Service", "geo": null, "id": 148839020582023170, "id_str": "148839020582023169", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/297614293/GS_in_meadow_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/297614293/GS_in_meadow_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "About Us, Sequoia National Forest - USDA Forest Service http://t.co/HCsifxjw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:02 +0000", "from_user": "A_Swish3", "from_user_id": 272263957, "from_user_id_str": "272263957", "from_user_name": "AUSTIN MOORE", "geo": null, "id": 148839019940282370, "id_str": "148839019940282369", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695537143/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695537143/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TheCAJasonSmith: Will Barton named C-USA player of the week for second straight Monday. Short story: http://t.co/YfX4R06f Also, Tigers 34th in coaches poll.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:01 +0000", "from_user": "TattooSales", "from_user_id": 20272386, "from_user_id_str": "20272386", "from_user_name": "Tattoo Manufacturing", "geo": null, "id": 148839016903622660, "id_str": "148839016903622657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/454249028/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/454249028/logo_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Made in USA Christmas: Tattoo Manufacturing: http://t.co/H8ya3HWI #madeinusa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:01 +0000", "from_user": "takeinsurance", "from_user_id": 430565254, "from_user_id_str": "430565254", "from_user_name": "TAKE INSURANCE", "geo": null, "id": 148839016618410000, "id_str": "148839016618409985", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1678701723/amenda_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678701723/amenda_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Commercial Metals Board Rejects Icahn Offer \\u2013 Salon: Proactive Investors USA & Canada\\u2026 http://t.co/CbuRtQ8A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:00 +0000", "from_user": "circotimia_", "from_user_id": 221610474, "from_user_id_str": "221610474", "from_user_name": "M a i t e\\u10E6. ", "geo": null, "id": 148839012671565820, "id_str": "148839012671565825", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698350821/jjo__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698350821/jjo__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "TRAFIII USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:59 +0000", "from_user": "wugegev", "from_user_id": 432623204, "from_user_id_str": "432623204", "from_user_name": "Shalvah Hasling", "geo": null, "id": 148839009970425860, "id_str": "148839009970425856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1683912211/1341_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683912211/1341_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @konizuqyd: loans fast easy online http://t.co/q1Ou8YqZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:59 +0000", "from_user": "PJnShit", "from_user_id": 169110022, "from_user_id_str": "169110022", "from_user_name": "PJ Green #15", "geo": null, "id": 148839007571283970, "id_str": "148839007571283968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1674583824/n1225830876_30639235_8273_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674583824/n1225830876_30639235_8273_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Previs: Killed Osama, Ended war in Iraq, Passed comprehensive health care, Ended Don't Ask Don't tell, Saved USA Auto Industry #WhatObamaHasDone", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:59 +0000", "from_user": "YoSoyGru", "from_user_id": 163887863, "from_user_id_str": "163887863", "from_user_name": "Samuel Eduardo Lopez", "geo": null, "id": 148839007080546300, "id_str": "148839007080546305", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684074485/YoSoyGru_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684074485/YoSoyGru_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Quitate Los Panties Mami Eso Ya No Se Usa-8- (@Nengo_Flow Voice)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:59 +0000", "from_user": "fosterbrandon", "from_user_id": 51161735, "from_user_id_str": "51161735", "from_user_name": "Brandon Foster", "geo": null, "id": 148839006631759870, "id_str": "148839006631759872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1634038022/634560154390545703_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634038022/634560154390545703_normal.jpg", "source": "<a href="http://mesonet.agron.iastate.edu/projects/iembot/" rel="nofollow">iembot</a>", "text": "RT @iembot_spc: #SPC Mesoscale Discussion 2378 for NERN NM / NWRN TX PANHANDLE / WRN OK PANHANDLE /\\nSERN CO / SWRN KS http://t.co/kbAOprnT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:58 +0000", "from_user": "annlee_an", "from_user_id": 36514208, "from_user_id_str": "36514208", "from_user_name": "anabel jimenez", "geo": null, "id": 148839005293781000, "id_str": "148839005293780992", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/408801995/NIN_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/408801995/NIN_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@PiratellaO: Quiero verte a ti y a @OliverLongoria, pero donde sirvan tragos r\\u00E1pido para poder probar todos los Homeless de USA//jaja tu di!", "to_user": "PiratellaO", "to_user_id": 92910615, "to_user_id_str": "92910615", "to_user_name": "Ella M\\u00FCnster"}, +{"created_at": "Mon, 19 Dec 2011 18:55:58 +0000", "from_user": "deathbysexy", "from_user_id": 50738223, "from_user_id_str": "50738223", "from_user_name": "BT", "geo": null, "id": 148839004794667000, "id_str": "148839004794667008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691606379/Meatitarian_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691606379/Meatitarian_normal.JPG", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "I love how if you are critical of anything or anyone you are, by default, a 'hater.' #USA #USA #USA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:58 +0000", "from_user": "youngscrapFANs", "from_user_id": 194651253, "from_user_id_str": "194651253", "from_user_name": "young scrap D.C fans", "geo": null, "id": 148839003242762240, "id_str": "148839003242762241", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1694639624/WCF2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694639624/WCF2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "@M6Q Follow me. I'm #TeamFollowBack: I am #Autofollow Share With Friends: | | USA - California News, RSS and R... http://t.co/CvsyDQkq", "to_user": "M6Q", "to_user_id": 307416332, "to_user_id_str": "307416332", "to_user_name": "Marilyn Q"}, +{"created_at": "Mon, 19 Dec 2011 18:55:57 +0000", "from_user": "youngscrapFANs", "from_user_id": 194651253, "from_user_id_str": "194651253", "from_user_name": "young scrap D.C fans", "geo": null, "id": 148839001170784260, "id_str": "148839001170784256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1694639624/WCF2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694639624/WCF2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "@M6Q Follow me. I'm #TeamFollowBack: I am #Autofollow Share With Friends: | | USA - California News, RSS Feeds... http://t.co/MtUMbkga", "to_user": "M6Q", "to_user_id": 307416332, "to_user_id_str": "307416332", "to_user_name": "Marilyn Q"}, +{"created_at": "Mon, 19 Dec 2011 18:55:57 +0000", "from_user": "welufyvotyc", "from_user_id": 432520116, "from_user_id_str": "432520116", "from_user_name": "Ritsuka Logue", "geo": null, "id": 148838997823733760, "id_str": "148838997823733760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683270610/1140_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683270610/1140_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @potarecovim: free quotes auto insurance http://t.co/S9mHR6Cc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:56 +0000", "from_user": "youngscrapFANs", "from_user_id": 194651253, "from_user_id_str": "194651253", "from_user_name": "young scrap D.C fans", "geo": null, "id": 148838996322164740, "id_str": "148838996322164737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1694639624/WCF2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694639624/WCF2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "@M6Q Follow me. I'm #TeamFollowBack: I am #Autofollow Share With Friends: | | USA - California Stories, RSS an... http://t.co/RIaJhgxt", "to_user": "M6Q", "to_user_id": 307416332, "to_user_id_str": "307416332", "to_user_name": "Marilyn Q"}, +{"created_at": "Mon, 19 Dec 2011 18:55:56 +0000", "from_user": "Jewelbde", "from_user_id": 431680735, "from_user_id_str": "431680735", "from_user_name": "Jewel Prawdzik", "geo": null, "id": 148838996041146370, "id_str": "148838996041146369", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1680986742/moqun4bvud_101997855-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680986742/moqun4bvud_101997855-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "adidas Kid's Fortitude 2 USA Running Shoe: With its wider width and well-cushioned midsole, this shoe makes it v... http://t.co/WtRKTUWy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:56 +0000", "from_user": "zirifakeg", "from_user_id": 432025141, "from_user_id_str": "432025141", "from_user_name": "Charla Devons", "geo": null, "id": 148838994388582400, "id_str": "148838994388582401", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681995193/1762_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681995193/1762_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @midyvihejaz: auto insurance policy non-owned http://t.co/CRZ36ivd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:55 +0000", "from_user": "RamonKitsune", "from_user_id": 405221008, "from_user_id_str": "405221008", "from_user_name": "Ramon Kitsune", "geo": null, "id": 148838989426720770, "id_str": "148838989426720768", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1622921171/Kitsune_How_You_Doin_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622921171/Kitsune_How_You_Doin_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@qwerty_br Usted solamente usa la IMAGEN de una mujer, pero no eres una dama de verdad. Me gusta las muchachas, amigo.", "to_user": "qwerty_br", "to_user_id": 122790142, "to_user_id_str": "122790142", "to_user_name": "John Doe", "in_reply_to_status_id": 148838669455855600, "in_reply_to_status_id_str": "148838669455855617"}, +{"created_at": "Mon, 19 Dec 2011 18:55:54 +0000", "from_user": "michelelinus", "from_user_id": 31366175, "from_user_id_str": "31366175", "from_user_name": "Michele Linus", "geo": null, "id": 148838987753205760, "id_str": "148838987753205760", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1446749410/Anyita_20bolo_20bolo__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1446749410/Anyita_20bolo_20bolo__normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@rirriiii sm gw jg bliknya jan , ga usa balik jg fine\" aja gw , haha. Eh mesuji jauh nyong , lgan tu mah crta lama , emg sono mah rawan", "to_user": "rirriiii", "to_user_id": 219272324, "to_user_id_str": "219272324", "to_user_name": "riri r zurizal", "in_reply_to_status_id": 148838568394104830, "in_reply_to_status_id_str": "148838568394104832"}, +{"created_at": "Mon, 19 Dec 2011 18:55:53 +0000", "from_user": "jamjoom44", "from_user_id": 305530741, "from_user_id_str": "305530741", "from_user_name": "\\u0633\\u0627\\u0631\\u0642 \\u0627\\u0644\\u0644\\u064A\\u0644", "geo": null, "id": 148838983097528320, "id_str": "148838983097528320", "iso_language_code": "ar", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1431189380/IMG00134-20110707-1640_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1431189380/IMG00134-20110707-1640_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#bahrain http://t.co/9MxuRRzI \\u0633\\u0644\\u0633\\u0644\\u0629 \\u0628\\u0634\\u0631\\u064A\\u0629 \\u0643\\u0628\\u064A\\u0631\\u0629 \\u0627\\u0644\\u0622\\u0646 \\u0641\\u064A \\u0633\\u0646\\u0627\\u0628\\u0633 \\u0627\\u0644\\u0635\\u0645\\u0648\\u062F 8:15:23\\n@frdoss #iraq #usa #uk", "to_user": "frdoss", "to_user_id": 439632470, "to_user_id_str": "439632470", "to_user_name": "Frdoss91 "}, +{"created_at": "Mon, 19 Dec 2011 18:55:53 +0000", "from_user": "Safena_", "from_user_id": 339274233, "from_user_id_str": "339274233", "from_user_name": "Amanda Stephani", "geo": null, "id": 148838982917160960, "id_str": "148838982917160960", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668147791/IMG10037_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668147791/IMG10037_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ESSESGAYS: \"como vc pode gostar de tatuagem e alargador? que coisa feia\" disse a pessoa que gosta de funk usa shortinho de 5cm e tem piercing no umbigo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:51 +0000", "from_user": "JUNIORCABRERA07", "from_user_id": 261509457, "from_user_id_str": "261509457", "from_user_name": "JUNIOR", "geo": null, "id": 148838975350652930, "id_str": "148838975350652928", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1499495149/JUNIOR_CABRERA_EN_EL_ESTUDIO-0407_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1499495149/JUNIOR_CABRERA_EN_EL_ESTUDIO-0407_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"ALFAREROS HOY EN NUESTRA FE EN VIVO\"@ewtn (especial de navidad) USA 6:00PM- MEXICO 5:00PM- BOGOTA 6:00PM MADRID 12:00AM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:49 +0000", "from_user": "zandrawtnorvell", "from_user_id": 305967447, "from_user_id_str": "305967447", "from_user_name": "Zandra Norvell", "geo": null, "id": 148838967037530100, "id_str": "148838967037530114", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685458293/imagesCAJUBWXJ_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685458293/imagesCAJUBWXJ_normal", "source": "<a href="http://couponsforcybermonday.com" rel="nofollow">couponsforcybermondaydotcom</a>", "text": "Coleman CableMoonrays 99924 Color-Changing Glass..Only $ 10.25 http://t.co/kYRZyLjK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:49 +0000", "from_user": "BrianSozzi", "from_user_id": 104257356, "from_user_id_str": "104257356", "from_user_name": "Brian Sozzi", "geo": null, "id": 148838966517436400, "id_str": "148838966517436416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1642707959/briansozziatgmail_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642707959/briansozziatgmail_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Quoted in: Holiday sales seen strong, but still discounted http://t.co/CRG8SZOd via @reuters", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:48 +0000", "from_user": "SelenaFactsBR", "from_user_id": 171624633, "from_user_id_str": "171624633", "from_user_name": "Selena Facts Brazil ", "geo": null, "id": 148838963438813200, "id_str": "148838963438813184", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702131868/013_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702131868/013_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Me pergunte qualquer coisa. - \\u203A 1. Altura? 2. Peso? 3. Voc\\u00EA fuma? 4. Voc\\u00EA bebe? 5. Usa/j\\u00E1 usou drogas? 6.... http://t.co/5SgOTYRw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:48 +0000", "from_user": "Kafraje", "from_user_id": 153166553, "from_user_id_str": "153166553", "from_user_name": "KaFraJe Capetillo", "geo": null, "id": 148838962369265660, "id_str": "148838962369265664", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1595688557/P1010668_5B2_5D_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1595688557/P1010668_5B2_5D_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Soy tan guapo, que el Photoshop me usa como herramienta #oieesamamadaaaa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:47 +0000", "from_user": "lawyers_texas", "from_user_id": 315972564, "from_user_id_str": "315972564", "from_user_name": "Lawyers Texas USA", "geo": null, "id": 148838956031676400, "id_str": "148838956031676416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1392985462/usa_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1392985462/usa_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "lawyer citizenship Texas http://t.co/GPKmWXW3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:46 +0000", "from_user": "francoira", "from_user_id": 196979168, "from_user_id_str": "196979168", "from_user_name": "Francoira", "geo": null, "id": 148838955637424130, "id_str": "148838955637424129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691511111/331452092_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691511111/331452092_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "USA @TWEETORACLE: The 1st country to legalize #PORN was ________??\"\"\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:46 +0000", "from_user": "JORC1959", "from_user_id": 114442543, "from_user_id_str": "114442543", "from_user_name": "Marejo", "geo": null, "id": 148838951891906560, "id_str": "148838951891906562", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1519918154/imagesCAUPW4O5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1519918154/imagesCAUPW4O5_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Asi terminaron los infelices d\\u00EDas de la Dictadura paname\\u00F1a de Noriega, quien se entreg\\u00F3 a Fuerzas Militares d USA el 3 d Enero de 1.990!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:46 +0000", "from_user": "gospelprime", "from_user_id": 18220470, "from_user_id_str": "18220470", "from_user_name": "Gospel Prime ", "geo": null, "id": 148838951673794560, "id_str": "148838951673794561", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1067990163/gp_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1067990163/gp_bigger_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#estudos Um homem a quem Deus usa http://t.co/YwaFUX2i", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:45 +0000", "from_user": "tweetddalo", "from_user_id": 266065645, "from_user_id_str": "266065645", "from_user_name": "Damian P. D.", "geo": null, "id": 148838947450130430, "id_str": "148838947450130432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "30 great made-in-USA gifts - Your Money - MSN Money http://t.co/T9m7mja9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:44 +0000", "from_user": "negrogp", "from_user_id": 57234472, "from_user_id_str": "57234472", "from_user_name": "Negro GP", "geo": null, "id": 148838944220516350, "id_str": "148838944220516353", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702161024/CameraZOOM-20111219110927_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702161024/CameraZOOM-20111219110927_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "de 25 lucas y puso toda la guita en la tarjeta. Lleg\\u00F3 a USA, fue a Best Buy y se gast\\u00F3 tod en electrodom\\u00E9sticos.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:43 +0000", "from_user": "borges2007", "from_user_id": 86966926, "from_user_id_str": "86966926", "from_user_name": "Complicated", "geo": null, "id": 148838941229989900, "id_str": "148838941229989890", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1181834073/.----._normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1181834073/.----._normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ESSESGAYS: \"como vc pode gostar de tatuagem e alargador? que coisa feia\" disse a pessoa que gosta de funk usa shortinho de 5cm e tem piercing no umbigo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:42 +0000", "from_user": "_AniCibelle", "from_user_id": 129195874, "from_user_id_str": "129195874", "from_user_name": "-- \\u03B9\\u044F\\u03B9\\u03B7\\u03B1\\u00A2\\u03B9\\u0432\\u0454\\u2113\\u2113\\u0454", "geo": null, "id": 148838935475392500, "id_str": "148838935475392513", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1647445055/DSC02240_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647445055/DSC02240_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ESSESGAYS: \"como vc pode gostar de tatuagem e alargador? que coisa feia\" disse a pessoa que gosta de funk usa shortinho de 5cm e tem piercing no umbigo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:42 +0000", "from_user": "FolkCDs", "from_user_id": 363531798, "from_user_id_str": "363531798", "from_user_name": "Richard Floyd", "geo": null, "id": 148838935236325380, "id_str": "148838935236325378", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1517058727/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517058727/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #1102 Still on Top: The Greatest Hits Van Morrison $17.91: 2007 limited edition triple definitive col... http://t.co/fdMY8CpW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:41 +0000", "from_user": "FolkCDs", "from_user_id": 363531798, "from_user_id_str": "363531798", "from_user_name": "Richard Floyd", "geo": null, "id": 148838933407604740, "id_str": "148838933407604736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1517058727/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517058727/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #785 Celtic Thunder Celtic Thunder $9.85: CD/DVD of the debut concert of Celtic Thunder was filmed on... http://t.co/6M7TPTU4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:41 +0000", "from_user": "tikraktik_", "from_user_id": 176516572, "from_user_id_str": "176516572", "from_user_name": "mayra, a fofis", "geo": null, "id": 148838932400971780, "id_str": "148838932400971776", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1604966633/bu_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1604966633/bu_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@thisisrissa vc usa o caderno com colagem pra que ? u_u KKKK", "to_user": "thisisrissa", "to_user_id": 77053363, "to_user_id_str": "77053363", "to_user_name": "Larissa"}, +{"created_at": "Mon, 19 Dec 2011 18:55:41 +0000", "from_user": "FolkCDs", "from_user_id": 363531798, "from_user_id_str": "363531798", "from_user_name": "Richard Floyd", "geo": null, "id": 148838932031873020, "id_str": "148838932031873024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1517058727/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517058727/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #993 Gossip in the Grain Ray LaMontagne $11.22: One of the most distinctive voices in music, lauded s... http://t.co/bXBo6gnp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:41 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148838931385950200, "id_str": "148838931385950210", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "TU USA COND\\u00D3N,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:41 +0000", "from_user": "FolkCDs", "from_user_id": 363531798, "from_user_id_str": "363531798", "from_user_name": "Richard Floyd", "geo": null, "id": 148838931088146430, "id_str": "148838931088146432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1517058727/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517058727/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #898 Live, Volume 3 The Avett Brothers $8.57: 2010 live release that documents a very special concert... http://t.co/j8GqaqK8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:40 +0000", "from_user": "lucas_pappini", "from_user_id": 222939787, "from_user_id_str": "222939787", "from_user_name": "lucas", "geo": null, "id": 148838930320605200, "id_str": "148838930320605185", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691210445/Imagen37_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691210445/Imagen37_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Moria_Casan ME MUERO!! quiero ver el encuentro con la \"periodista\" que usa bol\\u00EDgrafos cartieRRRRR!! cuanto le falta aprender!! ;0)", "to_user": "Moria_Casan", "to_user_id": 159917376, "to_user_id_str": "159917376", "to_user_name": "Moria Cas\\u00E1n", "in_reply_to_status_id": 148833134383857660, "in_reply_to_status_id_str": "148833134383857664"}, +{"created_at": "Mon, 19 Dec 2011 18:55:40 +0000", "from_user": "FolkCDs", "from_user_id": 363531798, "from_user_id_str": "363531798", "from_user_name": "Richard Floyd", "geo": null, "id": 148838929892786180, "id_str": "148838929892786176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1517058727/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517058727/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #903 Good News Kathy Mattea $6.34: Good News won the 1994 Grammy Award for Southern Gospel, Country G... http://t.co/fypbz1pH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:40 +0000", "from_user": "bboyinsiders", "from_user_id": 166481125, "from_user_id_str": "166481125", "from_user_name": "Bboyinsiders", "geo": null, "id": 148838927413948400, "id_str": "148838927413948416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1119633095/BBOYINSIDERS_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1119633095/BBOYINSIDERS_normal.jpg", "source": "<a href="http://www.bboyinsiders.com/" rel="nofollow">bboyinsiders.com</a>", "text": "New blog post: PoeOne & http://t.co/0Ka6MGXD Presents: Battle Of The Year USA 2011.... http://t.co/reTmVNWQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:38 +0000", "from_user": "Jumabinali", "from_user_id": 348088617, "from_user_id_str": "348088617", "from_user_name": "JBA", "geo": null, "id": 148838921328001020, "id_str": "148838921328001024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676007559/a3bjp_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676007559/a3bjp_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "We don\\u2019t need to listen to false hopes of tyrant regime. We need its end soon. \\n#14feb #tgonu #qatif #qatar #iraq #kuwait #oman #uae #usa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:55:36 +0000", "from_user": "Daily_Magazine", "from_user_id": 23756126, "from_user_id_str": "23756126", "from_user_name": "Dickens", "geo": null, "id": 148838913685987330, "id_str": "148838913685987328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701631308/Unbenannt-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701631308/Unbenannt-1_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Struggling Santorum bets big on Iowa: DES MOINES, Iowa (Reuters) - Rick Santorum thought he had it figured out.\\n \\n http://t.co/m3PUNioj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:36 +0000", "from_user": "RapsSongs", "from_user_id": 360429067, "from_user_id_str": "360429067", "from_user_name": "Richard Floyd", "geo": null, "id": 148838913312694270, "id_str": "148838913312694273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1509369197/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509369197/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #545 Fly [Explicit]: Nicki Minaj $0.99 Cash Money Records/Motown Records http://t.co/oowocM4e", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:36 +0000", "from_user": "RapsSongs", "from_user_id": 360429067, "from_user_id_str": "360429067", "from_user_name": "Richard Floyd", "geo": null, "id": 148838912020844540, "id_str": "148838912020844545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1509369197/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509369197/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #642 Power [Explicit]: Kanye West $0.99 Roc-A-Fella Records http://t.co/uB039F9g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:36 +0000", "from_user": "SYFSCC", "from_user_id": 428283229, "from_user_id_str": "428283229", "from_user_name": "SNN", "geo": null, "id": 148838910976462850, "id_str": "148838910976462849", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1673578438/icon.politicalticker_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673578438/icon.politicalticker_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#SNN Struggling Santorum bets big on Iowa: DES MOINES, Iowa (Reuters) - Rick Santorum thought... http://t.co/QYOsAYMi #reuters #Politics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:36 +0000", "from_user": "RapsSongs", "from_user_id": 360429067, "from_user_id_str": "360429067", "from_user_name": "Richard Floyd", "geo": null, "id": 148838910674481150, "id_str": "148838910674481153", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1509369197/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509369197/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #341 Mirror (Feat. Bruno Mars) [Explicit]: Lil Wayne $0.99 Cash Money http://t.co/gMMcf4Yd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:36 +0000", "from_user": "SYFSCC", "from_user_id": 428283229, "from_user_id_str": "428283229", "from_user_name": "SNN", "geo": null, "id": 148838909776891900, "id_str": "148838909776891905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1673578438/icon.politicalticker_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673578438/icon.politicalticker_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#SNN U.S. foreign aid escapes slashing cuts in fiscal 2012: (Reuters) - The U.S. State Depart... http://t.co/g5nvf2fU #reuters #Politics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:35 +0000", "from_user": "RapsSongs", "from_user_id": 360429067, "from_user_id_str": "360429067", "from_user_name": "Richard Floyd", "geo": null, "id": 148838907662966800, "id_str": "148838907662966787", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1509369197/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509369197/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #439 Down With The Sickness: Disturbed $0.99 Giant/Reprise http://t.co/nn55pDBc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:35 +0000", "from_user": "RapsSongs", "from_user_id": 360429067, "from_user_id_str": "360429067", "from_user_name": "Richard Floyd", "geo": null, "id": 148838906438221820, "id_str": "148838906438221825", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1509369197/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509369197/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #138 How To Love: Lil Wayne $0.99 Cash Money http://t.co/qDdLZ1Hy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:35 +0000", "from_user": "TheLProphetKurt", "from_user_id": 297018747, "from_user_id_str": "297018747", "from_user_name": "Kurt McGaha", "geo": null, "id": 148838906434027520, "id_str": "148838906434027521", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1349543871/Me_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1349543871/Me_normal.png", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @NewTribes: @Carolinew1993 @TheLProphetKurt @tasyagolan Thanks for the RT about @newtribes http://t.co/BHfU5PiT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:35 +0000", "from_user": "dazuca", "from_user_id": 227146566, "from_user_id_str": "227146566", "from_user_name": "Daniel Zuniga", "geo": null, "id": 148838905578401800, "id_str": "148838905578401793", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @chicuco: estudio de muertes de aves por colision contra turbinas de viento en USA.PDF, pagina 4. http://t.co/jwoapbYu para pensar", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:34 +0000", "from_user": "bohisemu", "from_user_id": 419489368, "from_user_id_str": "419489368", "from_user_name": "Hatshepsut Daid", "geo": null, "id": 148838904928272400, "id_str": "148838904928272384", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1657109846/7_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657109846/7_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @zejagyrud: cheapest car insurance quotes ontario http://t.co/JBkXrCKH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:34 +0000", "from_user": "circotimia_", "from_user_id": 221610474, "from_user_id_str": "221610474", "from_user_name": "M a i t e\\u10E6. ", "geo": null, "id": 148838904265588740, "id_str": "148838904265588738", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698350821/jjo__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698350821/jjo__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "JAIRO USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:34 +0000", "from_user": "Gabryelavelloso", "from_user_id": 305742489, "from_user_id_str": "305742489", "from_user_name": "ol\\u00E1, gabi :3", "geo": null, "id": 148838901681889280, "id_str": "148838901681889280", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700936286/praia_004_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700936286/praia_004_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:34 +0000", "from_user": "hufoxykika", "from_user_id": 433981179, "from_user_id_str": "433981179", "from_user_name": "Devaduta Dominka", "geo": null, "id": 148838901434425340, "id_str": "148838901434425344", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687409240/1628_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687409240/1628_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "va loan limits lenders http://t.co/BxqsI2TP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:32 +0000", "from_user": "xigeweb", "from_user_id": 434097551, "from_user_id_str": "434097551", "from_user_name": "Vickie Kliement", "geo": null, "id": 148838895730180100, "id_str": "148838895730180096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688057033/1210_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688057033/1210_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "commercial loan officer salary range http://t.co/yNxXo6e6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:32 +0000", "from_user": "TaheerahDighero", "from_user_id": 441064142, "from_user_id_str": "441064142", "from_user_name": "Taheerah Dighero", "geo": null, "id": 148838893846933500, "id_str": "148838893846933505", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "http://t.co/SCQN3fo4 USA Plumbing Olympics TV Shows AOL Italy Garden", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:32 +0000", "from_user": "um9ale7", "from_user_id": 252076958, "from_user_id_str": "252076958", "from_user_name": "Afaf", "geo": null, "id": 148838892886425600, "id_str": "148838892886425600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1652300806/M_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652300806/M_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @BHRDef_jaguar: 100 civilian killed in #syria and #wefaq condemns the protesters, wake up #world time for military intervention! #usa #uk #bahrain #france", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:31 +0000", "from_user": "AmandaFallen", "from_user_id": 237715931, "from_user_id_str": "237715931", "from_user_name": "Amanda '", "geo": null, "id": 148838890181111800, "id_str": "148838890181111808", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700969684/Foto0805_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700969684/Foto0805_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ESSESGAYS: \"como vc pode gostar de tatuagem e alargador? que coisa feia\" disse a pessoa que gosta de funk usa shortinho de 5cm e tem piercing no umbigo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:30 +0000", "from_user": "HeythereElie", "from_user_id": 47038027, "from_user_id_str": "47038027", "from_user_name": "Elizabeth Resendez", "geo": null, "id": 148838887614189570, "id_str": "148838887614189569", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1476803501/IMG00736-20110801-1719_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1476803501/IMG00736-20110801-1719_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:30 +0000", "from_user": "gabriellagomest", "from_user_id": 210244577, "from_user_id_str": "210244577", "from_user_name": "Gabi Gomes (:", "geo": null, "id": 148838886020362240, "id_str": "148838886020362240", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1674497740/Foto_criada_em_2011-11-30_a_s_21.18__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674497740/Foto_criada_em_2011-11-30_a_s_21.18__2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "Eu fui l\\u00E1 no closet dela e peguei todos os meus vestidos...pq eu compro pra mim e ela usa ate antes de mim, v\\u00EA se pode.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:30 +0000", "from_user": "sexdating5", "from_user_id": 378976328, "from_user_id_str": "378976328", "from_user_name": "Moshe Branscome", "geo": null, "id": 148838885412188160, "id_str": "148838885412188160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1602460850/index9_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1602460850/index9_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "USA - Moms Turn to Phone Sex Business for Income (We Criticize Russian online dating scammers and now this news)... http://t.co/nC66Gsmv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:28 +0000", "from_user": "Victor_Maggi", "from_user_id": 165553223, "from_user_id_str": "165553223", "from_user_name": "Victor Maggi", "geo": null, "id": 148838878067957760, "id_str": "148838878067957760", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1611600107/OOO_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611600107/OOO_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@nickpaiffer viu, ele \\u00E9 t\\u00E3o bom que mesmo voc\\u00EA gostando do firefox vc usa ele", "to_user": "nickpaiffer", "to_user_id": 71619312, "to_user_id_str": "71619312", "to_user_name": "do Tobtuy", "in_reply_to_status_id": 148838588669374460, "in_reply_to_status_id_str": "148838588669374464"}, +{"created_at": "Mon, 19 Dec 2011 18:55:28 +0000", "from_user": "escravo_", "from_user_id": 295340680, "from_user_id_str": "295340680", "from_user_name": "kayo ", "geo": null, "id": 148838877275238400, "id_str": "148838877275238400", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1670169631/24343454654_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670169631/24343454654_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@wagnerf se amostre nao voce quem usa buceta!!!!!!!!!!", "to_user": "wagnerf", "to_user_id": 40373846, "to_user_id_str": "40373846", "to_user_name": "wagner fernandes", "in_reply_to_status_id": 148838673465618430, "in_reply_to_status_id_str": "148838673465618432"}, +{"created_at": "Mon, 19 Dec 2011 18:55:27 +0000", "from_user": "jovenes990", "from_user_id": 164022730, "from_user_id_str": "164022730", "from_user_name": "tarquisiemprejoven", "geo": null, "id": 148838873244499970, "id_str": "148838873244499968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1510335734/LOGO_TARQUI_SIEMPRE_JOVEN_OFICIAL1___normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1510335734/LOGO_TARQUI_SIEMPRE_JOVEN_OFICIAL1___normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "DES MOINES, Iowa (Reuters) - Rick Santorum thought he had it figured out.\\n \\n http://t.co/psh1Hbep", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:27 +0000", "from_user": "nadia_igle_di", "from_user_id": 192660629, "from_user_id_str": "192660629", "from_user_name": "Nadia Iglesias", "geo": null, "id": 148838872095264770, "id_str": "148838872095264768", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1649631186/tattoo_ainhoa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649631186/tattoo_ainhoa_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@junajo85 rtve.es en usa no se ve en directo via web :( :( :( He puesto 1000 quejas pero da igual :(", "to_user": "junajo85", "to_user_id": 116161044, "to_user_id_str": "116161044", "to_user_name": "Juanjo Barreno", "in_reply_to_status_id": 148838496998658050, "in_reply_to_status_id_str": "148838496998658048"}, +{"created_at": "Mon, 19 Dec 2011 18:55:26 +0000", "from_user": "jovenes990", "from_user_id": 164022730, "from_user_id_str": "164022730", "from_user_name": "tarquisiemprejoven", "geo": null, "id": 148838871608725500, "id_str": "148838871608725507", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1510335734/LOGO_TARQUI_SIEMPRE_JOVEN_OFICIAL1___normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1510335734/LOGO_TARQUI_SIEMPRE_JOVEN_OFICIAL1___normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "(Reuters) - The U.S. State Department and foreign aid budget escaped devastating cuts in a fiscal 2012 spending ... http://t.co/MfJUyKXK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:26 +0000", "from_user": "BOBBYDSMITH101", "from_user_id": 361164259, "from_user_id_str": "361164259", "from_user_name": "Bobby Smith", "geo": null, "id": 148838871445151740, "id_str": "148838871445151745", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1528044626/p11973ta103269_14_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1528044626/p11973ta103269_14_3_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Struggling Santorum bets big on Iowa: DES MOINES, Iowa (Reuters) - Rick Santorum thought he had it figured out.\\n \\n http://t.co/jLe4UUsU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:26 +0000", "from_user": "Kyledavid23", "from_user_id": 373062744, "from_user_id_str": "373062744", "from_user_name": "Kyle David", "geo": null, "id": 148838869830340600, "id_str": "148838869830340609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1541799661/Vacation_Baton_Rouge_2005_043_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541799661/Vacation_Baton_Rouge_2005_043_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Struggling Santorum bets big on Iowa: DES MOINES, Iowa (Reuters) - Rick Santorum thought he had it figured out.\\n \\n http://t.co/KcCfagjT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:26 +0000", "from_user": "BOBBYDSMITH101", "from_user_id": 361164259, "from_user_id_str": "361164259", "from_user_name": "Bobby Smith", "geo": null, "id": 148838869767430140, "id_str": "148838869767430144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1528044626/p11973ta103269_14_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1528044626/p11973ta103269_14_3_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "U.S. foreign aid escapes slashing cuts in fiscal 2012: (Reuters) - The U.S. State Department and foreign aid bud... http://t.co/ZBz1B9bb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:26 +0000", "from_user": "Mentirosita_", "from_user_id": 166659596, "from_user_id_str": "166659596", "from_user_name": "Lady\\u2665.", "geo": null, "id": 148838868857274370, "id_str": "148838868857274368", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1657693123/Colombia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657693123/Colombia_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "ANDRE YO S\\u00C9 QUE TU QUIERES QUE TODOS NOS CUIDEMOS AS\\u00CD QUE USA COND\\u00D3N TU TAMBI\\u00C9N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:26 +0000", "from_user": "Kyledavid23", "from_user_id": 373062744, "from_user_id_str": "373062744", "from_user_name": "Kyle David", "geo": null, "id": 148838868383313920, "id_str": "148838868383313920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1541799661/Vacation_Baton_Rouge_2005_043_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541799661/Vacation_Baton_Rouge_2005_043_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "U.S. foreign aid escapes slashing cuts in fiscal 2012: (Reuters) - The U.S. State Department and foreign aid bud... http://t.co/Z7LAm9qj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:25 +0000", "from_user": "CantaCrente", "from_user_id": 386201911, "from_user_id_str": "386201911", "from_user_name": "Deus \\u00E9 fiel", "geo": null, "id": 148838865036251140, "id_str": "148838865036251137", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700412272/musica1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700412272/musica1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Deus usa os pequenos detalhes para realizar grandes feitos para Sua gl\\u00F3ria.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:24 +0000", "from_user": "ThinkTrio", "from_user_id": 316608533, "from_user_id_str": "316608533", "from_user_name": "Trio", "geo": null, "id": 148838862729388030, "id_str": "148838862729388032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662790445/48x48pxls_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662790445/48x48pxls_logo_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Modification blunders bedevil U.S. housing recovery http://t.co/TtcAeEKi via @reuters", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:24 +0000", "from_user": "IU_Fan_99", "from_user_id": 16395130, "from_user_id_str": "16395130", "from_user_name": "Doug Jenen", "geo": null, "id": 148838862599364600, "id_str": "148838862599364608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1123673029/KC3728_l_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1123673029/KC3728_l_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @DustinDopirak: Indiana moves up to No. 17 in AP poll, No. 18 in ESPN/USA Today poll http://t.co/V2jvJAkf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:24 +0000", "from_user": "USAadvisor", "from_user_id": 341884755, "from_user_id_str": "341884755", "from_user_name": "USadvisor", "geo": null, "id": 148838861412384770, "id_str": "148838861412384768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1507832736/20100812_amerikanets_t_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1507832736/20100812_amerikanets_t_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Struggling Santorum bets big on Iowa: DES MOINES, Iowa (Reuters) - Rick Santorum thought he had it figured out.\\n \\n http://t.co/EVJOG3XD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:24 +0000", "from_user": "Hey_Brianner", "from_user_id": 197258232, "from_user_id_str": "197258232", "from_user_name": "Brianner gonzalez", "geo": null, "id": 148838861366239230, "id_str": "148838861366239233", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687760787/Fuck_20yeah_870_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687760787/Fuck_20yeah_870_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@_grfm \\u00BFsabes que en el ingles no se usa este signo \"\\u00BF\"?", "to_user": "_grfm", "to_user_id": 197719882, "to_user_id_str": "197719882", "to_user_name": "guillermo ferman", "in_reply_to_status_id": 148838600589578240, "in_reply_to_status_id_str": "148838600589578240"}, +{"created_at": "Mon, 19 Dec 2011 18:55:23 +0000", "from_user": "thalionezz", "from_user_id": 63152594, "from_user_id_str": "63152594", "from_user_name": "Lady Morgana", "geo": null, "id": 148838858950320130, "id_str": "148838858950320128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695342414/thalionezz_1931927860958016702_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695342414/thalionezz_1931927860958016702_normal.jpg", "source": "<a href="http://t.webkios.info" rel="nofollow">Wish You Were Here \\u00AE</a>", "text": "U ehn RT @s3yizy: TAFAWA BALEWA SQUARE, CALIFORNIA RT @TWEETORACLE: The HQ of the #PORN industry in USA is ________?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:22 +0000", "from_user": "NewAgeSongs", "from_user_id": 359364647, "from_user_id_str": "359364647", "from_user_name": "Richard Floyd", "geo": null, "id": 148838854550503420, "id_str": "148838854550503424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1509358670/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509358670/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #9614 Thunderstorm By the Sea: Joe Baker $0.89 Sounds of Nature by Joe Baker http://t.co/HJMjrew4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:22 +0000", "from_user": "RobertoMaiaReal", "from_user_id": 355306096, "from_user_id_str": "355306096", "from_user_name": "Roberto Maia", "geo": null, "id": 148838853866831870, "id_str": "148838853866831872", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1666188776/avatar_RM_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666188776/avatar_RM_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "N\\u00E3o sei se o pessoal daqui ainda usa o Orkut, mas pra quem interessar, temos nosso canal l\\u00E1 tbm! =) http://t.co/Eulpgqkr #Orkut", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:22 +0000", "from_user": "M6Q", "from_user_id": 307416332, "from_user_id_str": "307416332", "from_user_name": "Marilyn Q", "geo": null, "id": 148838853694849020, "id_str": "148838853694849024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1373657497/aaa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1373657497/aaa_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "I am #Autofollow Share With Friends: | | USA - California News, RSS and RSS Feed via Feedzilla. http://t.co/l1HxExKj #teamfollowback", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:22 +0000", "from_user": "NewAgeSongs", "from_user_id": 359364647, "from_user_id_str": "359364647", "from_user_name": "Richard Floyd", "geo": null, "id": 148838853447401470, "id_str": "148838853447401472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1509358670/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509358670/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #11312 The Aviators: Helen Jane Long $0.99 BLE Music Group http://t.co/g0WXKhQa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:22 +0000", "from_user": "tiiiiiiiiiinaaa", "from_user_id": 272908017, "from_user_id_str": "272908017", "from_user_name": "uma little monster \\u2020", "geo": null, "id": 148838852960845820, "id_str": "148838852960845824", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1659233317/386557_123181097794096_100003066203840_116995_1142029126_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659233317/386557_123181097794096_100003066203840_116995_1142029126_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ESSESGAYS: \"como vc pode gostar de tatuagem e alargador? que coisa feia\" disse a pessoa que gosta de funk usa shortinho de 5cm e tem piercing no umbigo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:22 +0000", "from_user": "M6Q", "from_user_id": 307416332, "from_user_id_str": "307416332", "from_user_name": "Marilyn Q", "geo": null, "id": 148838852465922050, "id_str": "148838852465922048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1373657497/aaa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1373657497/aaa_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "I am #Autofollow Share With Friends: | | USA - California News, RSS Feeds and Widgets via Feedzilla. http://t.co/Wqa2cC93 #teamfollowback", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:22 +0000", "from_user": "NewAgeSongs", "from_user_id": 359364647, "from_user_id_str": "359364647", "from_user_name": "Richard Floyd", "geo": null, "id": 148838852335894530, "id_str": "148838852335894529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1509358670/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509358670/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #6810 And Winter Came: Enya $0.99 Reprise http://t.co/TjXMLBvT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:21 +0000", "from_user": "NewAgeSongs", "from_user_id": 359364647, "from_user_id_str": "359364647", "from_user_name": "Richard Floyd", "geo": null, "id": 148838850821767170, "id_str": "148838850821767168", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1509358670/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509358670/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #4310 Claire De Lune: Claude Debussy $0.99 Domo Records http://t.co/61LlJoTQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:21 +0000", "from_user": "Politicalism", "from_user_id": 22174753, "from_user_id_str": "22174753", "from_user_name": "Politicalism", "geo": null, "id": 148838850381348860, "id_str": "148838850381348864", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/84099871/thumbnail-sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/84099871/thumbnail-sm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Struggling Santorum bets big on Iowa http://t.co/9vdbwJAV #politics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:21 +0000", "from_user": "M6Q", "from_user_id": 307416332, "from_user_id_str": "307416332", "from_user_name": "Marilyn Q", "geo": null, "id": 148838849693483000, "id_str": "148838849693483008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1373657497/aaa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1373657497/aaa_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "I am #Autofollow Share With Friends: | | USA - California Stories, News Feeds and News via Feedzilla. http://t.co/aklFlHNf #teamfollowback", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:21 +0000", "from_user": "MiscellanySongs", "from_user_id": 359359954, "from_user_id_str": "359359954", "from_user_name": "Richard Floyd", "geo": null, "id": 148838849689305100, "id_str": "148838849689305088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1506469334/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1506469334/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #9614 Thunderstorm By the Sea: Joe Baker $0.89 Sounds of Nature by Joe Baker http://t.co/F4rm1a7Z", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:21 +0000", "from_user": "M6Q", "from_user_id": 307416332, "from_user_id_str": "307416332", "from_user_name": "Marilyn Q", "geo": null, "id": 148838848661688320, "id_str": "148838848661688322", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1373657497/aaa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1373657497/aaa_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "I am #Autofollow Share With Friends: | | USA - California Stories, RSS and RSS Feed via Feedzilla. http://t.co/wm1u0nKj #teamfollowback", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:21 +0000", "from_user": "NewAgeSongs", "from_user_id": 359364647, "from_user_id_str": "359364647", "from_user_name": "Richard Floyd", "geo": null, "id": 148838847453724670, "id_str": "148838847453724672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1509358670/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509358670/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #9407 4 Hours Sleep In 40 Minutes: Reducing the Length of Rest: Binaural $0.99 Binaural http://t.co/4F49FP5Q", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:21 +0000", "from_user": "MiscellanySongs", "from_user_id": 359359954, "from_user_id_str": "359359954", "from_user_name": "Richard Floyd", "geo": null, "id": 148838847168512000, "id_str": "148838847168512000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1506469334/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1506469334/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #11312 The Aviators: Helen Jane Long $0.99 BLE Music Group http://t.co/Tf1KhDpT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:21 +0000", "from_user": "nimoguw", "from_user_id": 433976520, "from_user_id_str": "433976520", "from_user_name": "Delmus Anselmi", "geo": null, "id": 148838847072043000, "id_str": "148838847072043008", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686918176/1298_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686918176/1298_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "quinn direct motor insurance quote http://t.co/ulpRYT6x", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:20 +0000", "from_user": "TheGoldenGate", "from_user_id": 41002181, "from_user_id_str": "41002181", "from_user_name": "Matt Bridge", "geo": null, "id": 148838845914423300, "id_str": "148838845914423296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/419843280/ggavatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/419843280/ggavatar_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Golden State News: Airport Dining Guides: Where to Eat at San Francisco International Airport (SFO) (EaterSF... http://t.co/Xg2pXIN5 #CA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:20 +0000", "from_user": "MiscellanySongs", "from_user_id": 359359954, "from_user_id_str": "359359954", "from_user_name": "Richard Floyd", "geo": null, "id": 148838845885054980, "id_str": "148838845885054976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1506469334/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1506469334/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #6810 And Winter Came: Enya $0.99 Reprise http://t.co/KvQdWUQM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:20 +0000", "from_user": "TheGoldenGate", "from_user_id": 41002181, "from_user_id_str": "41002181", "from_user_name": "Matt Bridge", "geo": null, "id": 148838844647743500, "id_str": "148838844647743488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/419843280/ggavatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/419843280/ggavatar_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Golden State News: Airport Dining Guides: Where to Eat at Oakland International Airport (OAK) (EaterSF): Sha... http://t.co/hE6Ypj0F #CA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:20 +0000", "from_user": "MiscellanySongs", "from_user_id": 359359954, "from_user_id_str": "359359954", "from_user_name": "Richard Floyd", "geo": null, "id": 148838844433829900, "id_str": "148838844433829888", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1506469334/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1506469334/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #4310 Claire De Lune: Claude Debussy $0.99 Domo Records http://t.co/NT0b56LF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:20 +0000", "from_user": "MiscellanySongs", "from_user_id": 359359954, "from_user_id_str": "359359954", "from_user_name": "Richard Floyd", "geo": null, "id": 148838842995195900, "id_str": "148838842995195904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1506469334/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1506469334/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #9407 4 Hours Sleep In 40 Minutes: Reducing the Length of Rest: Binaural $0.99 Binaural http://t.co/RCliImgd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:19 +0000", "from_user": "shaneborek", "from_user_id": 35302871, "from_user_id_str": "35302871", "from_user_name": "shane borek", "geo": null, "id": 148838839518109700, "id_str": "148838839518109696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1595545618/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1595545618/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "great the war is over and the gas prices are the same price.. nice work George W Bush #USA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:16 +0000", "from_user": "limite88", "from_user_id": 190271520, "from_user_id_str": "190271520", "from_user_name": "aida ", "geo": null, "id": 148838829468561400, "id_str": "148838829468561409", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1128221005/Ay_y_yo_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1128221005/Ay_y_yo_2_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @albardado: \\u00A1Un Rajoy salvaje apareci\\u00F3! \\u00A1Rajoy salvaje usa ataque INVESHTIDURA! \\u00A1Rajoy salvaje usa SALPICADURA! JAJAJA \\u00BFlo pill\\u00E1is? \\u00A1SALPICADURA! Muero.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:16 +0000", "from_user": "MallorySebald", "from_user_id": 297123916, "from_user_id_str": "297123916", "from_user_name": "Mallory sebald", "geo": null, "id": 148838828424183800, "id_str": "148838828424183808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1443121577/Headshot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1443121577/Headshot_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @MSU_Basketball: #Spartans move up to No. 19 in AP Top 25 and No. 20 in ESPN/USA Today Coaches Poll.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:16 +0000", "from_user": "RPGGameUpdate", "from_user_id": 292316169, "from_user_id_str": "292316169", "from_user_name": "RPG Game Update", "geo": null, "id": 148838827979575300, "id_str": "148838827979575296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1515949505/role-play-characters-nwn-game_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515949505/role-play-characters-nwn-game_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Golden Eagles-Sun Devils Preview - USA TODAY http://t.co/lA8n8Fbg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:15 +0000", "from_user": "studio430", "from_user_id": 160530396, "from_user_id_str": "160530396", "from_user_name": "DJ Waxy\\u2122\\u2600\\u00D3tim\\u00F3'ra", "geo": null, "id": 148838825605599230, "id_str": "148838825605599232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1688508169/avi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688508169/avi_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "\"PORNywood Towers\" RT @TWEETORACLE The HQ of the\\n#PORN industry in USA is ________?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:15 +0000", "from_user": "carolrosenberg", "from_user_id": 32129142, "from_user_id_str": "32129142", "from_user_name": "Carol Rosenberg", "geo": null, "id": 148838824531853300, "id_str": "148838824531853312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668160823/mug_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668160823/mug_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Reuters says US officials still considering Afghan transfer from #Guantanamo, tho Taliban chief denies talks under way. http://t.co/0UES0P8h", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:15 +0000", "from_user": "iyam_tosyn", "from_user_id": 146668065, "from_user_id_str": "146668065", "from_user_name": "Tosyn", "geo": null, "id": 148838823730745340, "id_str": "148838823730745344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1663800880/330599600_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663800880/330599600_normal.jpg", "source": "<a href="http://www.writelonger.com" rel="nofollow">Write Longer</a>", "text": "RT @Ms_Carter69: Sin City RT @TWEETORACLE: The HQ of the #PORN industry in USA is ________?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:15 +0000", "from_user": "Polityk0", "from_user_id": 226045945, "from_user_id_str": "226045945", "from_user_name": "Conner Stone", "geo": null, "id": 148838823713980400, "id_str": "148838823713980418", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1189313798/man_with_bullhorn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1189313798/man_with_bullhorn_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Struggling Santorum bets big on Iowa: DES MOINES, Iowa (Reuters) - Rick Santorum thought he had it figured out.\\n \\n http://t.co/GqE4UyHn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:14 +0000", "from_user": "jiwaminess", "from_user_id": 202604908, "from_user_id_str": "202604908", "from_user_name": "Jiwa Mines & mineral", "geo": null, "id": 148838820824088580, "id_str": "148838820824088579", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "jiwa mines minerals Struggling Santorum bets big on Iowa: DES MOINES, Iowa (Reuters) - Rick Santorum thought he ... http://t.co/P0MNrb6W", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:14 +0000", "from_user": "jiwaminess", "from_user_id": 202604908, "from_user_id_str": "202604908", "from_user_name": "Jiwa Mines & mineral", "geo": null, "id": 148838819058298880, "id_str": "148838819058298880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "jiwa mines minerals U.S. foreign aid escapes slashing cuts in fiscal 2012: (Reuters) - The U.S. State Department... http://t.co/ck3lIhwb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:14 +0000", "from_user": "newsate", "from_user_id": 178343191, "from_user_id_str": "178343191", "from_user_name": "mobile", "geo": null, "id": 148838818928267260, "id_str": "148838818928267264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Politics: Struggling Santorum bets big on Iowa: DES MOINES, Iowa (Reuters) - Rick Santorum thought he had it fig... http://t.co/71aFlLQx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:14 +0000", "from_user": "byzahoja", "from_user_id": 392779206, "from_user_id_str": "392779206", "from_user_name": "Ivon Happer", "geo": null, "id": 148838818647261200, "id_str": "148838818647261185", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1592865493/469_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592865493/469_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @sederykahip: casino slot machines usa http://t.co/7FSNNsPy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:14 +0000", "from_user": "newsate", "from_user_id": 178343191, "from_user_id_str": "178343191", "from_user_name": "mobile", "geo": null, "id": 148838817489633280, "id_str": "148838817489633281", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Politics: U.S. foreign aid escapes slashing cuts in fiscal 2012: (Reuters) - The U.S. State Department and forei... http://t.co/xYCKMwG5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:13 +0000", "from_user": "JPGhidini", "from_user_id": 51793608, "from_user_id_str": "51793608", "from_user_name": "Jo\\u00E3o Pedro Ghidini", "geo": null, "id": 148838816659148800, "id_str": "148838816659148800", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689183293/twitter_profile_natal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689183293/twitter_profile_natal_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "aquilo que tu s\\u00F3 usa pra mijar", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:13 +0000", "from_user": "AlbertSek", "from_user_id": 398999472, "from_user_id_str": "398999472", "from_user_name": "Albert Sek", "geo": null, "id": 148838816243908600, "id_str": "148838816243908608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1608189196/30134_1415238214259_1031670497_31513805_2342551_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608189196/30134_1415238214259_1031670497_31513805_2342551_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @DrFriedenCDC: Traveling for the holidays? Check out @CDCgov Yellow Book for travelers' information http://t.co/QMQoNmWC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:13 +0000", "from_user": "mnguillotine", "from_user_id": 119963525, "from_user_id_str": "119963525", "from_user_name": "The Guillotine", "geo": null, "id": 148838815413448700, "id_str": "148838815413448704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/733130004/glogogsm_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/733130004/glogogsm_normal.gif", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @usawrestling: Chas Betts named http://http://TheMat.com Wrestler of the Week | http://t.co/L2lOBnJe - USA Wrestling:...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:13 +0000", "from_user": "oquevocnaove", "from_user_id": 362219993, "from_user_id_str": "362219993", "from_user_name": "Adriane Feltes", "geo": null, "id": 148838814796873730, "id_str": "148838814796873728", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700939619/2011-12-18_18.09.54_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700939619/2011-12-18_18.09.54_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:13 +0000", "from_user": "sararicando", "from_user_id": 125371182, "from_user_id_str": "125371182", "from_user_name": "~ Sarah Vogue ~", "geo": null, "id": 148838814213865470, "id_str": "148838814213865474", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698895039/Foto2764_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698895039/Foto2764_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@crlmariana \\u00F4 amg, que c\\u00F3digo c\\u00EA usa pra deixa o bg transparente? *ps: amei o bg*", "to_user": "crlmariana", "to_user_id": 279149421, "to_user_id_str": "279149421", "to_user_name": "M\\u00E1 de Mari", "in_reply_to_status_id": 148838254957965300, "in_reply_to_status_id_str": "148838254957965312"}, +{"created_at": "Mon, 19 Dec 2011 18:55:12 +0000", "from_user": "MiguelGuiP", "from_user_id": 33056639, "from_user_id_str": "33056639", "from_user_name": "Miguel Guillen Paz", "geo": null, "id": 148838810124423170, "id_str": "148838810124423168", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1607161307/monta_ita_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607161307/monta_ita_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:11 +0000", "from_user": "BadashSablon081", "from_user_id": 433195731, "from_user_id_str": "433195731", "from_user_name": "Badash Sablon", "geo": null, "id": 148838807930802180, "id_str": "148838807930802176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "http://t.co/uKdA93Jo Gaming Topics Astrology Commerce USA Adultery Cooking", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:11 +0000", "from_user": "toddmcphetridge", "from_user_id": 36677276, "from_user_id_str": "36677276", "from_user_name": "Todd McPhetridge", "geo": null, "id": 148838805577805820, "id_str": "148838805577805824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1440325602/todd-mc2c_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1440325602/todd-mc2c_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @mfgsourcing: http://t.co/esEDTWsQ US retailers may turn to other sources as Chinese companies start to lose #manufacturing edge", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:10 +0000", "from_user": "latoniaidsvilla", "from_user_id": 305842659, "from_user_id_str": "305842659", "from_user_name": "Latonia Villanueva", "geo": null, "id": 148838802637598720, "id_str": "148838802637598720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695225341/imagesCA53E30D_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695225341/imagesCA53E30D_normal", "source": "<a href="http://aircompressorpaintball.com" rel="nofollow">aircompressorpaintballdotcom</a>", "text": "Where In USA Can I Get Duck Feet Fins-Duck Feet, XXL, 11-13 ( Fins ) Sale Now. http://t.co/tCQEKhwm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:09 +0000", "from_user": "injury_law_ga", "from_user_id": 319891058, "from_user_id_str": "319891058", "from_user_name": "Injury Lawyer GA USA", "geo": null, "id": 148838800292970500, "id_str": "148838800292970496", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1402078973/usa_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1402078973/usa_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Injury Lawyers GA USA -- http://t.co/UJrMtAjq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:09 +0000", "from_user": "TheChinaPress", "from_user_id": 35886858, "from_user_id_str": "35886858", "from_user_name": "China Press ", "geo": null, "id": 148838798418124800, "id_str": "148838798418124800", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/187085108/logo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/187085108/logo_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Files on Manning's computer linked to WikiLeaks site\\nhttp://t.co/idDd8WvD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:09 +0000", "from_user": "flaaaviarocha", "from_user_id": 258908220, "from_user_id_str": "258908220", "from_user_name": "flavia e vcs", "geo": null, "id": 148838796883005440, "id_str": "148838796883005440", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685699391/PQAAAA4Xxy1VJfNusadREO_qBwhRn7yQnKKh9ucOLGN6DBUFbuJKweexJGbS7WfLvtMrefcR-CsJLmKxdNtOvhdDLE0Am1T1UGn6VUYBBkgmotGxeD95wuygqm1u_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685699391/PQAAAA4Xxy1VJfNusadREO_qBwhRn7yQnKKh9ucOLGN6DBUFbuJKweexJGbS7WfLvtMrefcR-CsJLmKxdNtOvhdDLE0Am1T1UGn6VUYBBkgmotGxeD95wuygqm1u_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:08 +0000", "from_user": "9Andree9", "from_user_id": 382860101, "from_user_id_str": "382860101", "from_user_name": "Andr\\u00E9e", "geo": null, "id": 148838795880574980, "id_str": "148838795880574976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1567042102/Finger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1567042102/Finger_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "MT \\nTargeted radiation therapy may be overused in women with breast cancer http://t.co/vkGhl1Oc via @medlineplus #breastcancer cc: @xeni", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:08 +0000", "from_user": "MaxFactor_RD", "from_user_id": 371995331, "from_user_id_str": "371995331", "from_user_name": "Max Factor RD", "geo": null, "id": 148838793942802430, "id_str": "148838793942802432", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1670636364/Smoky_EyeTwitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670636364/Smoky_EyeTwitter_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Para conseguir una boca carnosa y sexy, usa una barra de labios perlada o un toque de gloss para reflejar la luz.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:07 +0000", "from_user": "Tha_R", "from_user_id": 28016211, "from_user_id_str": "28016211", "from_user_name": "Robert DeGuzman", "geo": null, "id": 148838791426228220, "id_str": "148838791426228226", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1486596009/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1486596009/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @MyRebelSwag: UNLV checks in at #23 in the USA Today/ESPN Coaches Poll.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:06 +0000", "from_user": "elpincheirving", "from_user_id": 83892255, "from_user_id_str": "83892255", "from_user_name": "\\u2022irving\\u2022", "geo": null, "id": 148838786351112200, "id_str": "148838786351112193", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701794257/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701794257/image_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:06 +0000", "from_user": "Rafaell_Ribero_", "from_user_id": 415913853, "from_user_id_str": "415913853", "from_user_name": "Rafael Branco ", "geo": null, "id": 148838786002980860, "id_str": "148838786002980864", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1670282804/mengao_sempre_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670282804/mengao_sempre_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @_Poclarice: \"Impossivel \\u00E9 uma palavra muito grande q gente pequena usa pra tentar ti oprimi\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:06 +0000", "from_user": "circotimia_", "from_user_id": 221610474, "from_user_id_str": "221610474", "from_user_name": "M a i t e\\u10E6. ", "geo": null, "id": 148838784979578880, "id_str": "148838784979578881", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698350821/jjo__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698350821/jjo__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "VANESSA USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:06 +0000", "from_user": "OnSafety", "from_user_id": 18990471, "from_user_id_str": "18990471", "from_user_name": "U.S. CPSC", "geo": null, "id": 148838784090382340, "id_str": "148838784090382336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/429455915/FB2_copy_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/429455915/FB2_copy_normal.gif", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Gel fuel, firepot rulemaking begins. Rulemaking will address flash fire and burn hazards. http://t.co/dwFhkMrY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:06 +0000", "from_user": "GrettaTM", "from_user_id": 264949191, "from_user_id_str": "264949191", "from_user_name": "Gretta' Cervantes(:", "geo": null, "id": 148838783784198140, "id_str": "148838783784198144", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689892036/SAM_1172_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689892036/SAM_1172_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @MascaraDeLatex: Hay gente que usa 140 caracteres para demostrar que es un pendejo, podr\\u00EDa usar solo 15 si escribiera: Soy un pendejo.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:05 +0000", "from_user": "workNetBusiness", "from_user_id": 191026341, "from_user_id_str": "191026341", "from_user_name": "workNet Biz Services", "geo": null, "id": 148838781410218000, "id_str": "148838781410217984", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1124290110/worknet_logo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1124290110/worknet_logo_normal.gif", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "State Personal Income Q3 2011 - http://t.co/Tf65jjGp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:05 +0000", "from_user": "AnunicoUSA", "from_user_id": 429832660, "from_user_id_str": "429832660", "from_user_name": "Anunico USA", "geo": null, "id": 148838779745079300, "id_str": "148838779745079296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677068376/logo_anunico_twitter_usa_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677068376/logo_anunico_twitter_usa_normal.PNG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Classifieds GLAMOUR HAIR SALON en Garland, Texas http://t.co/HzmOzRGJ #Ads #USA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:04 +0000", "from_user": "doinkdoink", "from_user_id": 33131934, "from_user_id_str": "33131934", "from_user_name": "law and order", "geo": null, "id": 148838778524540930, "id_str": "148838778524540928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/820460453/doink_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/820460453/doink_normal.png", "source": "<a href="http://tvtweet.syntaxi.net" rel="nofollow">tv tweeter</a>", "text": "CI on USA: 'Smile' - The murder of a Park Avenue dentist connects to the death of one of his young patients.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:04 +0000", "from_user": "AnunicoUSA", "from_user_id": 429832660, "from_user_id_str": "429832660", "from_user_name": "Anunico USA", "geo": null, "id": 148838778239320060, "id_str": "148838778239320064", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677068376/logo_anunico_twitter_usa_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677068376/logo_anunico_twitter_usa_normal.PNG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Classifieds autos usados a muy bajos precios http://t.co/IMasceOv #Ads #USA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:04 +0000", "from_user": "YinkaRudBoi", "from_user_id": 210065244, "from_user_id_str": "210065244", "from_user_name": "AdeYINKA ADEJARE", "geo": null, "id": 148838777182359550, "id_str": "148838777182359552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689449958/IMG00830-20111212-1837_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689449958/IMG00830-20111212-1837_normal.jpg", "source": "<a href="http://www.writelonger.com" rel="nofollow">Write Longer</a>", "text": "ALABA MARKET RT @TWEETORACLE: The HQ of the #PORN industry in USA is ________?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:04 +0000", "from_user": "AnunicoUSA", "from_user_id": 429832660, "from_user_id_str": "429832660", "from_user_name": "Anunico USA", "geo": null, "id": 148838775982800900, "id_str": "148838775982800896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677068376/logo_anunico_twitter_usa_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677068376/logo_anunico_twitter_usa_normal.PNG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Classifieds MARIACHI EN DALLAS- FORTWORTH http://t.co/8PdOyL9f #Ads #USA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:03 +0000", "from_user": "R_7", "from_user_id": 17464862, "from_user_id_str": "17464862", "from_user_name": "R.", "geo": null, "id": 148838775294930940, "id_str": "148838775294930944", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1264993680/001_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1264993680/001_normal.jpg", "source": "<a href="http://twitpic.com" rel="nofollow">Twitpic</a>", "text": "Colorado, USA http://t.co/6LTRp00y", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:03 +0000", "from_user": "shantelsbroomfi", "from_user_id": 305870280, "from_user_id_str": "305870280", "from_user_name": "shantel broomfield", "geo": null, "id": 148838775001333760, "id_str": "148838775001333761", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662714770/Pantry_Cabinets_For_Kitchen_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662714770/Pantry_Cabinets_For_Kitchen_normal.jpg", "source": "<a href="http://pantrycabinetsforkitchen.com" rel="nofollow">Pantry Cabinets For Kitchen2</a>", "text": "> Virtu USA Cathy Espresso 72 Inch Double Sink Bathroom Vanity w/ Travertine Top at Unbelievable Prices http://vanitysinksforbathrooms.pant", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:03 +0000", "from_user": "AnunicoUSA", "from_user_id": 429832660, "from_user_id_str": "429832660", "from_user_name": "Anunico USA", "geo": null, "id": 148838774430892030, "id_str": "148838774430892032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677068376/logo_anunico_twitter_usa_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677068376/logo_anunico_twitter_usa_normal.PNG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Classifieds Watch Live Samaa Tv (3128) http://t.co/JOMgOPaX #Ads #USA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:03 +0000", "from_user": "_Adicta", "from_user_id": 123965194, "from_user_id_str": "123965194", "from_user_name": "La que hace spam.", "geo": null, "id": 148838773944356860, "id_str": "148838773944356865", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "TU LA QUE LEE ESTE TWEET USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:55:03 +0000", "from_user": "shantelsbroomfi", "from_user_id": 305870280, "from_user_id_str": "305870280", "from_user_name": "shantel broomfield", "geo": null, "id": 148838775001333760, "id_str": "148838775001333761", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662714770/Pantry_Cabinets_For_Kitchen_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662714770/Pantry_Cabinets_For_Kitchen_normal.jpg", "source": "<a href="http://pantrycabinetsforkitchen.com" rel="nofollow">Pantry Cabinets For Kitchen2</a>", "text": "> Virtu USA Cathy Espresso 72 Inch Double Sink Bathroom Vanity w/ Travertine Top at Unbelievable Prices http://vanitysinksforbathrooms.pant", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:03 +0000", "from_user": "AnunicoUSA", "from_user_id": 429832660, "from_user_id_str": "429832660", "from_user_name": "Anunico USA", "geo": null, "id": 148838774430892030, "id_str": "148838774430892032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677068376/logo_anunico_twitter_usa_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677068376/logo_anunico_twitter_usa_normal.PNG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Classifieds Watch Live Samaa Tv (3128) http://t.co/JOMgOPaX #Ads #USA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:03 +0000", "from_user": "_Adicta", "from_user_id": 123965194, "from_user_id_str": "123965194", "from_user_name": "La que hace spam.", "geo": null, "id": 148838773944356860, "id_str": "148838773944356865", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "TU LA QUE LEE ESTE TWEET USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:02 +0000", "from_user": "negrogp", "from_user_id": 57234472, "from_user_id_str": "57234472", "from_user_name": "Negro GP", "geo": null, "id": 148838771020935170, "id_str": "148838771020935168", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702161024/CameraZOOM-20111219110927_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702161024/CameraZOOM-20111219110927_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "En el 2002 conoc\\u00ED un tipo que le gan\\u00F3 al sistema. 2001, corralito. Decidi\\u00F3 irse a vivir a USA con toda la flia. Agarr\\u00F3 su plazo fijo (...)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:02 +0000", "from_user": "fygepyzyfyl", "from_user_id": 433993700, "from_user_id_str": "433993700", "from_user_name": "Parand Archdeckne", "geo": null, "id": 148838767459971070, "id_str": "148838767459971073", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687542146/1236_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687542146/1236_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "loans grants felons http://t.co/0KAUPF1V", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:01 +0000", "from_user": "DTNUSA", "from_user_id": 219913533, "from_user_id_str": "219913533", "from_user_name": "DTN USA", "geo": null, "id": 148838766298144770, "id_str": "148838766298144768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696502703/DTN_USA_DEC_16_2011_CORRECTED_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696502703/DTN_USA_DEC_16_2011_CORRECTED_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "DTN USA: 4 Disabled Adults Allegedly Held Captive in Philadelphia Basement Smelled Like 'Death', Officer Says: D... http://t.co/rowpCnDJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:00 +0000", "from_user": "vogue_diary", "from_user_id": 371208866, "from_user_id_str": "371208866", "from_user_name": "Kristen Loxx", "geo": null, "id": 148838762288381950, "id_str": "148838762288381952", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698192891/x_a9ea9517_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698192891/x_a9ea9517_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@korolevMTV @anyaklepackaya \\u0432 usa;)", "to_user": "korolevMTV", "to_user_id": 46345236, "to_user_id_str": "46345236", "to_user_name": "artem korolev mtv", "in_reply_to_status_id": 148838160451899400, "in_reply_to_status_id_str": "148838160451899393"}, +{"created_at": "Mon, 19 Dec 2011 18:55:00 +0000", "from_user": "Keshaudg", "from_user_id": 431698662, "from_user_id_str": "431698662", "from_user_name": "Kesha Carraher", "geo": null, "id": 148838762137399300, "id_str": "148838762137399296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681027160/fezfoh45u2_129730900_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681027160/fezfoh45u2_129730900_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Ernie Ball Music Man Axis Floyd Rose Electric Guitar, Trans Blue: Made in the USA, Basswood Body, Maple Top, 22 ... http://t.co/J7PRULUZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:59 +0000", "from_user": "eloisejcardona", "from_user_id": 305769272, "from_user_id_str": "305769272", "from_user_name": "Eloise Cardona", "geo": null, "id": 148838758349930500, "id_str": "148838758349930496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702568946/images_1__normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702568946/images_1__normal", "source": "<a href="http://beallsblackfriday.com" rel="nofollow">beallsblackfridaydotcom</a>", "text": "Value Receiver With Cd Player-Pyle Home PICL82W iPhone and iPod FM Radio Micro Receiv http://t.co/byHwX3Kh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:59 +0000", "from_user": "cocomomo1235", "from_user_id": 364360994, "from_user_id_str": "364360994", "from_user_name": "cocomomo1235", "geo": null, "id": 148838755657187330, "id_str": "148838755657187329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Innovation Factory IceDozer MINI 2.0 with Brass Blade, Made in USA: http://t.co/f8CzEWxw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:58 +0000", "from_user": "sofidonzelli", "from_user_id": 145650374, "from_user_id_str": "145650374", "from_user_name": "Sof\\u00EDa Donzelli", "geo": null, "id": 148838753711042560, "id_str": "148838753711042561", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701188993/sofi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701188993/sofi_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lachicasabrina: las gitana no usa bonbacha porke lo gusta aser pis en la kalle,redepende se agacha y tira el chorrito y se va kaminando,por eso son olorosa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:58 +0000", "from_user": "mkaubry", "from_user_id": 220421348, "from_user_id_str": "220421348", "from_user_name": "Michael Aubry", "geo": null, "id": 148838752817651700, "id_str": "148838752817651712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1632274628/Pic_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632274628/Pic_normal", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @medianalyst:majority of printed newspapers in the USA will cease to exist within next 5 years, states USC report http://t.co/eY2cNpmR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:58 +0000", "from_user": "CPainemal", "from_user_id": 440852156, "from_user_id_str": "440852156", "from_user_name": "Claudio Painemal", "geo": null, "id": 148838752662462460, "id_str": "148838752662462464", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Hola cheposa, como se usa esto?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:57 +0000", "from_user": "Padashiaaaa_", "from_user_id": 155755508, "from_user_id_str": "155755508", "from_user_name": "Lovee'Padashiaaa\\u2661\\u2665\\u2661\\u30C4", "geo": null, "id": 148838750015848450, "id_str": "148838750015848448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694288201/384665_284580591588593_100001099630714_846271_580319618_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694288201/384665_284580591588593_100001099630714_846271_580319618_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "I want this one tho \\nhttp://t.co/7FpEOO87", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:57 +0000", "from_user": "Enji16", "from_user_id": 42729153, "from_user_id_str": "42729153", "from_user_name": "Slim Ford", "geo": null, "id": 148838748740796400, "id_str": "148838748740796416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700830371/picb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700830371/picb_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "This Bill don't matter to me anyways, because I'm about to move out the USA anyways", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:57 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148838747578966000, "id_str": "148838747578966016", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "GALLO USA COND\\u00D3N,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:57 +0000", "from_user": "StaunchRense", "from_user_id": 280597101, "from_user_id_str": "280597101", "from_user_name": "Rense Nijenkamp", "geo": null, "id": 148838747251814400, "id_str": "148838747251814400", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1576658502/Slapen_in_Zeeland_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576658502/Slapen_in_Zeeland_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@gulanxx nou dan wordt dan een retourtje usa ;)", "to_user": "gulanxx", "to_user_id": 249763052, "to_user_id_str": "249763052", "to_user_name": "Gulan", "in_reply_to_status_id": 148838580037492740, "in_reply_to_status_id_str": "148838580037492736"}, +{"created_at": "Mon, 19 Dec 2011 18:54:57 +0000", "from_user": "Mark2G00D4U", "from_user_id": 295567788, "from_user_id_str": "295567788", "from_user_name": "Mark Neo Andersson", "geo": null, "id": 148838747058880500, "id_str": "148838747058880514", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1345100847/NUKE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1345100847/NUKE_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Gezocht om flashbang, smokegrenades en granaten te kopen, gevonden voor maar $29,99! DAMN! only available in USA #kutzooi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:56 +0000", "from_user": "RocksSongs", "from_user_id": 362903910, "from_user_id_str": "362903910", "from_user_name": "Richard Floyd", "geo": null, "id": 148838745901248500, "id_str": "148838745901248512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1515427217/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515427217/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #321 Burn It To The Ground: Nickelback $0.99 Roadrunner Records http://t.co/Xf4DhNwv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:56 +0000", "from_user": "RocksSongs", "from_user_id": 362903910, "from_user_id_str": "362903910", "from_user_name": "Richard Floyd", "geo": null, "id": 148838744739426300, "id_str": "148838744739426304", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1515427217/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515427217/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #119 Paradise: Coldplay $0.99 Capitol http://t.co/TlrN8t06", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:56 +0000", "from_user": "thecardinaldela", "from_user_id": 20937306, "from_user_id_str": "20937306", "from_user_name": "Francisco Uhlfelder", "geo": null, "id": 148838744227721200, "id_str": "148838744227721216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/337596212/franzee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/337596212/franzee_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "USA TODAY Check this video out -- Occupy America http://t.co/V6srzSLd via @youtube", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:56 +0000", "from_user": "RocksSongs", "from_user_id": 362903910, "from_user_id_str": "362903910", "from_user_name": "Richard Floyd", "geo": null, "id": 148838742541611000, "id_str": "148838742541611008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1515427217/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515427217/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #618 Run Rudolph Run: Chuck Berry $0.99 Hip-O Select/Chess http://t.co/ZIPpsgU9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:55 +0000", "from_user": "VEMCOMAREBS", "from_user_id": 79590276, "from_user_id_str": "79590276", "from_user_name": "FOREVER ALONE", "geo": null, "id": 148838741740490750, "id_str": "148838741740490752", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1670616586/Imagem_009_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670616586/Imagem_009_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ESSESGAYS: \"como vc pode gostar de tatuagem e alargador? que coisa feia\" disse a pessoa que gosta de funk usa shortinho de 5cm e tem piercing no umbigo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:55 +0000", "from_user": "RocksSongs", "from_user_id": 362903910, "from_user_id_str": "362903910", "from_user_name": "Richard Floyd", "geo": null, "id": 148838741383974900, "id_str": "148838741383974912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1515427217/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515427217/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #816 My Immortal: Evanescence $1.29 Wind-Up http://t.co/bGmEe5LX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:55 +0000", "from_user": "RocksSongs", "from_user_id": 362903910, "from_user_id_str": "362903910", "from_user_name": "Richard Floyd", "geo": null, "id": 148838740029218800, "id_str": "148838740029218816", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1515427217/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515427217/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #314 Bottoms Up: Nickelback $0.99 Roadrunner Records http://t.co/RhkKVo4R", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:55 +0000", "from_user": "herylaky", "from_user_id": 428448764, "from_user_id_str": "428448764", "from_user_name": "Erroll Mciver", "geo": null, "id": 148838737692987400, "id_str": "148838737692987394", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1673840137/868_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673840137/868_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @fojopyg: casino usa new york http://t.co/g8EpDX0W", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:54 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148838734316568580, "id_str": "148838734316568577", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "PERRO USA COND\\u00D3N,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:54 +0000", "from_user": "eaemaluca", "from_user_id": 226270738, "from_user_id_str": "226270738", "from_user_name": "Larissa com i e 2 s", "geo": null, "id": 148838734127829000, "id_str": "148838734127828992", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691399735/foto0095_001_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691399735/foto0095_001_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ESSESGAYS: \"como vc pode gostar de tatuagem e alargador? que coisa feia\" disse a pessoa que gosta de funk usa shortinho de 5cm e tem piercing no umbigo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:53 +0000", "from_user": "realmlord1", "from_user_id": 37678007, "from_user_id_str": "37678007", "from_user_name": "Stephen Perigo", "geo": null, "id": 148838732898902000, "id_str": "148838732898902017", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/443650417/Seattle_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/443650417/Seattle_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@BlastodermMan Corell's and Utz are the 2 best kettle chip brands in the USA. Anyone who has lived between MD and IN know this", "to_user": "BlastodermMan", "to_user_id": 109583336, "to_user_id_str": "109583336", "to_user_name": "Carl Wilt", "in_reply_to_status_id": 148835619114717200, "in_reply_to_status_id_str": "148835619114717184"}, +{"created_at": "Mon, 19 Dec 2011 18:54:53 +0000", "from_user": "_MyOnlyLoveNick", "from_user_id": 182330011, "from_user_id_str": "182330011", "from_user_name": "T\\u00EB\\u03B1m J\\u00F6n\\u00E4s", "geo": null, "id": 148838732848566270, "id_str": "148838732848566272", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700672796/300176_244113862301552_212906528755619_685666_1529132768_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700672796/300176_244113862301552_212906528755619_685666_1529132768_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "66. Quale parte del mondo ti piacerebbe visitare? USA <3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:53 +0000", "from_user": "Lew_Butcher", "from_user_id": 242327378, "from_user_id_str": "242327378", "from_user_name": "Lewis Butcher", "geo": null, "id": 148838731795808260, "id_str": "148838731795808256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1224510209/LB_at_NOA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1224510209/LB_at_NOA_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "\\u201C@EnglandHockey: USA v GB Test Series - watch all the goals from the 5 games on our YouTube Channel now. http://t.co/tMw7XREZ\\u201D Awesome!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:52 +0000", "from_user": "Rothschild999", "from_user_id": 398893636, "from_user_id_str": "398893636", "from_user_name": "Michael Lee Rawlings", "geo": null, "id": 148838728025128960, "id_str": "148838728025128960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1677185717/SNAKE_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677185717/SNAKE_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Virginia governor wants bigger reserves, no tax hikes: In unveiling his biennium budget proposal, Governor Bob M... http://t.co/b3qPNah2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:50 +0000", "from_user": "xRONsx", "from_user_id": 116107809, "from_user_id_str": "116107809", "from_user_name": "RON's", "geo": null, "id": 148838720307609600, "id_str": "148838720307609601", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1613503315/xronsx_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1613503315/xronsx_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "LO MAS ARRECHO ES QUE @_Adicta USA ES PASTILLAS -.-!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:50 +0000", "from_user": "Bigua10", "from_user_id": 142703660, "from_user_id_str": "142703660", "from_user_name": "Facundo Cabral", "geo": null, "id": 148838719699435520, "id_str": "148838719699435520", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690889341/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690889341/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@pollobigua @pitschwarz o rey, el u se pronuncia pero no se usa. Gracias", "to_user": "pollobigua", "to_user_id": 195967490, "to_user_id_str": "195967490", "to_user_name": "Jose Toma", "in_reply_to_status_id": 148787765465722880, "in_reply_to_status_id_str": "148787765465722883"}, +{"created_at": "Mon, 19 Dec 2011 18:54:50 +0000", "from_user": "numb3rn3rd", "from_user_id": 305069659, "from_user_id_str": "305069659", "from_user_name": "Shane Osborne", "geo": null, "id": 148838718239801340, "id_str": "148838718239801345", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690053128/shane_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690053128/shane_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @WPSD_Sports: Murray State is also #22 in this week's ESPN/USA Today coaches poll. #WPSD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:49 +0000", "from_user": "StanCarterJr", "from_user_id": 52940579, "from_user_id_str": "52940579", "from_user_name": "Stan Carter Jr.", "geo": null, "id": 148838715861630980, "id_str": "148838715861630976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/293098727/facebook_picture__2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/293098727/facebook_picture__2__normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Congratulations to Randy & Julie Lim of Washington, USA for Going Diamond! http://t.co/pN508hoR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:49 +0000", "from_user": "_jdsousa", "from_user_id": 163203062, "from_user_id_str": "163203062", "from_user_name": "Je\\u0455\\u0455\\u03B9c\\u03B1 te ama.", "geo": null, "id": 148838713093390340, "id_str": "148838713093390337", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677581710/312017_1877528636998_1804727270_1296375_415792567_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677581710/312017_1877528636998_1804727270_1296375_415792567_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @_Adicta: JESSICA USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:48 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148838712107741200, "id_str": "148838712107741185", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "EL GATO USA COND\\u00D3N,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:48 +0000", "from_user": "WGRZ", "from_user_id": 15308015, "from_user_id_str": "15308015", "from_user_name": "WGRZ", "geo": null, "id": 148838710530686980, "id_str": "148838710530686977", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1622342726/twitter_facebook_icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622342726/twitter_facebook_icon_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Via USA Today: Experts see possible power struggle in North Korea: Son has had little time to form alliances, an... http://t.co/SGcWzZFy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:48 +0000", "from_user": "Ms_Carter69", "from_user_id": 134583690, "from_user_id_str": "134583690", "from_user_name": "Annie Pwnc Boateng\\u2665", "geo": null, "id": 148838709817655300, "id_str": "148838709817655296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700242991/Ms_Carter69_1863183207588426309_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700242991/Ms_Carter69_1863183207588426309_normal.jpg", "source": "<a href="http://www.writelonger.com" rel="nofollow">Write Longer</a>", "text": "Sin City RT @TWEETORACLE: The HQ of the #PORN industry in USA is ________?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:48 +0000", "from_user": "TSOEvents", "from_user_id": 81739690, "from_user_id_str": "81739690", "from_user_name": "Jade Ladson", "geo": null, "id": 148838709486297100, "id_str": "148838709486297089", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1469990416/Twitter2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1469990416/Twitter2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#TSOEvents Las Vegas gets an unusual new wedding chapel - USA TODAY http://t.co/O9BXZaqQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:49 +0000", "from_user": "pwcarey", "from_user_id": 17290339, "from_user_id_str": "17290339", "from_user_name": "Peter West Carey", "geo": null, "id": 148838708689387520, "id_str": "148838708689387522", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676151920/PWP2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676151920/PWP2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Why do I love living in the Pacific Northwest of the USA? This photo from my flight to Portland will explain. http://t.co/SBs638QE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:47 +0000", "from_user": "PauLarroza", "from_user_id": 328785296, "from_user_id_str": "328785296", "from_user_name": "Paula Larroza", "geo": null, "id": 148838704235036670, "id_str": "148838704235036673", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702427587/305331_299416306754118_267602946602121_1181396_1336613506_n_large_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702427587/305331_299416306754118_267602946602121_1181396_1336613506_n_large_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "juro que no entiendo como se usa la palabra \"fisura\", no se pero me siento una inutil del orto", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:46 +0000", "from_user": "IronKrlos28", "from_user_id": 203147621, "from_user_id_str": "203147621", "from_user_name": "Carlos", "geo": null, "id": 148838703370993660, "id_str": "148838703370993664", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1688527898/Southpark034_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688527898/Southpark034_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:46 +0000", "from_user": "G_Carva", "from_user_id": 70370665, "from_user_id_str": "70370665", "from_user_name": "Geoffrey Carvalhinho", "geo": null, "id": 148838703270338560, "id_str": "148838703270338562", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1549860466/jojo_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1549860466/jojo_twitter_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @CBeigbeder: La France 3eme pays le plus innovant de la planete, derriere USA et Japon ! Enfin une bonne nouvelle economique ! http://t.co/KppHgo2x", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:46 +0000", "from_user": "MyRebelSwag", "from_user_id": 176190057, "from_user_id_str": "176190057", "from_user_name": "Rebel Swag", "geo": null, "id": 148838703052230660, "id_str": "148838703052230656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1221460710/legendslogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1221460710/legendslogo_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "UNLV checks in at #23 in the USA Today/ESPN Coaches Poll.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:46 +0000", "from_user": "Ailin_Pardo", "from_user_id": 190016941, "from_user_id_str": "190016941", "from_user_name": "Ailin Pardo", "geo": null, "id": 148838702326611970, "id_str": "148838702326611968", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1515406472/TWITTERRRR_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515406472/TWITTERRRR_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Animate y salta... grita o escribe, usa tu milagro hoy...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:46 +0000", "from_user": "dianagtzv", "from_user_id": 88126102, "from_user_id_str": "88126102", "from_user_name": "Diana Gtz. Valtierra", "geo": null, "id": 148838701911388160, "id_str": "148838701911388161", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693238689/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693238689/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@RuizdeTeresaG por que usa a j\\u00F3venes vestidos de fantasmas para una protesta?Por que no mejor los prepara,capacita, becas en el extranjero?", "to_user": "RuizdeTeresaG", "to_user_id": 292744754, "to_user_id_str": "292744754", "to_user_name": "Ruiz de Teresa"}, +{"created_at": "Mon, 19 Dec 2011 18:54:46 +0000", "from_user": "pussynigganaija", "from_user_id": 303105046, "from_user_id_str": "303105046", "from_user_name": "Dolapos hubby :)", "geo": null, "id": 148838700736974850, "id_str": "148838700736974848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1579022765/Vgtrtt_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1579022765/Vgtrtt_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Kim kardashians house \"@TWEETORACLE: The HQ of the #PORN industry in USA is ________?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:45 +0000", "from_user": "sandiegoescort", "from_user_id": 83914607, "from_user_id_str": "83914607", "from_user_name": "San Diego Escorts", "geo": null, "id": 148838698140708860, "id_str": "148838698140708866", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/481840965/twitter_icon_35_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/481840965/twitter_icon_35_normal.jpg", "source": "<a href="http://tinyurl.com/5qva38" rel="nofollow">San Diego Escorts</a>", "text": "http://t.co/FTeYBHOW San Diego Adult Classified ad: New Petite Filipina Hawaiian In El Cajon-San Diego outcall - w4m -", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:44 +0000", "from_user": "Mentirosita_", "from_user_id": 166659596, "from_user_id_str": "166659596", "from_user_name": "Lady\\u2665.", "geo": null, "id": 148838695380860930, "id_str": "148838695380860928", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1657693123/Colombia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657693123/Colombia_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @_Adicta: LADY USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:44 +0000", "from_user": "PatGohn", "from_user_id": 52509568, "from_user_id_str": "52509568", "from_user_name": "Pat Gohn", "geo": null, "id": 148838692797157380, "id_str": "148838692797157376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1105278546/Photo_36_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1105278546/Photo_36_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Excellent news for the USA! | RT @TheAnchoress Kateri Tekakwitha, Marianne Cope to be Canonized http://t.co/rsu42CoQ @OSV @KathySchiffer", "to_user": "TheAnchoress", "to_user_id": 35822388, "to_user_id_str": "35822388", "to_user_name": "Elizabeth Scalia", "in_reply_to_status_id": 148837375798280200, "in_reply_to_status_id_str": "148837375798280193"}, +{"created_at": "Mon, 19 Dec 2011 18:54:43 +0000", "from_user": "_alicealima", "from_user_id": 383936855, "from_user_id_str": "383936855", "from_user_name": "\\u3164 \\u3164 \\u3164 \\u3164 AL\\u00CDCEA P. =)", "geo": null, "id": 148838690616123400, "id_str": "148838690616123393", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698960985/editada__picasa__2__normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698960985/editada__picasa__2__normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "aiai joga seu charme e vai embora, aiai ela me usa e me ignora \\u266A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:43 +0000", "from_user": "DTNUSA", "from_user_id": 219913533, "from_user_id_str": "219913533", "from_user_name": "DTN USA", "geo": null, "id": 148838687696879600, "id_str": "148838687696879616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696502703/DTN_USA_DEC_16_2011_CORRECTED_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696502703/DTN_USA_DEC_16_2011_CORRECTED_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "DTN USA: Video: Florida A&M hazing fallout: Thomas Roberts talks to Rep. Corrine Brown, D-Fla., about the decisi... http://t.co/dvM1iVan", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:42 +0000", "from_user": "circotimia_", "from_user_id": 221610474, "from_user_id_str": "221610474", "from_user_name": "M a i t e\\u10E6. ", "geo": null, "id": 148838684958003200, "id_str": "148838684958003200", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698350821/jjo__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698350821/jjo__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "DIANA USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:42 +0000", "from_user": "SalamiTruewan", "from_user_id": 178531676, "from_user_id_str": "178531676", "from_user_name": "It's: Suh-Lah-Mee", "geo": null, "id": 148838683968159740, "id_str": "148838683968159744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1674286456/330919977_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674286456/330919977_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Oxfordshire :D RT @TWEETORACLE: The HQ of the #PORN industry in USA is ________?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:42 +0000", "from_user": "kingdahyor", "from_user_id": 182829291, "from_user_id_str": "182829291", "from_user_name": "King Dayo Hammed", "geo": null, "id": 148838683905245200, "id_str": "148838683905245184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699148854/IMG00137-20111113-1819_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699148854/IMG00137-20111113-1819_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "beverly hills RT @TWEETORACLE: The HQ of the #PORN industry in USA is ________?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:41 +0000", "from_user": "Emmaczj", "from_user_id": 430047285, "from_user_id_str": "430047285", "from_user_name": "Emma Spang", "geo": null, "id": 148838682563059700, "id_str": "148838682563059712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677522953/1add2temmy_126941170-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677522953/1add2temmy_126941170-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Lucky Craft USA Sammy 85 3.25\" 7/16oz MS MJ Herring: LUCKY CRAFT SAMMY 85 TOPWATER LURE, 3.25\", 7/16OZ, MS MJ HERRING http://t.co/1oh13pJG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:41 +0000", "from_user": "zanafavik", "from_user_id": 425416040, "from_user_id_str": "425416040", "from_user_name": "Qayshon Kesten", "geo": null, "id": 148838682525315070, "id_str": "148838682525315073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1667888635/23_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667888635/23_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @honimixux: compare insurance quote http://t.co/xlYGQth5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:41 +0000", "from_user": "nfromearth", "from_user_id": 124255862, "from_user_id_str": "124255862", "from_user_name": "Nat\\u00E1lia Godoy", "geo": null, "id": 148838680310710270, "id_str": "148838680310710273", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1588765454/423953801_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1588765454/423953801_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ESSESGAYS: \"como vc pode gostar de tatuagem e alargador? que coisa feia\" disse a pessoa que gosta de funk usa shortinho de 5cm e tem piercing no umbigo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:41 +0000", "from_user": "TheAnonVirus", "from_user_id": 440897047, "from_user_id_str": "440897047", "from_user_name": "TheAnonymousVirus", "geo": null, "id": 148838680059064320, "id_str": "148838680059064320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702271224/avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702271224/avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @BlogginJoe: \\uFF32\\uFF45\\uFF54\\uFF57\\uFF45\\uFF45\\uFF54 \\uFF29\\uFF46 \\uFF39\\uFF4F\\uFF55 \\uFF2E\\uFF45\\uFF45\\uFF44 \\uFF26\\uFF4F\\uFF4C\\uFF4C\\uFF4F\\uFF57\\uFF45\\uFF52\\uFF53 #TeamFollowBack\\u2665 #TeamAutoFollow\\u2665 #F4F\\u2665 #AutoFollowBack #SCAM #NEWS #USA 14,129,248 HITz\\u27BD http://t.co/mCcgbQZo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:40 +0000", "from_user": "nichols1936", "from_user_id": 13241992, "from_user_id_str": "13241992", "from_user_name": "john nichols", "geo": null, "id": 148838677253074940, "id_str": "148838677253074944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/184216693/john_at_calafat_1991_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/184216693/john_at_calafat_1991_normal.JPG", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "USA - Moms Turn to Phone Sex Business for Income (We Criticize Russian online dating scammers and now this news) http://t.co/d50A2fDe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:40 +0000", "from_user": "haarrnnyy", "from_user_id": 344226978, "from_user_id_str": "344226978", "from_user_name": "PeanutZzzz", "geo": null, "id": 148838675868954620, "id_str": "148838675868954624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1692628295/63492115396380875_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692628295/63492115396380875_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "We are not #porn stars!!!! Ow r we supposed to knw the answer nah!!!!\"@TWEETORACLE: The HQ of the #PORN industry in USA is ________?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:40 +0000", "from_user": "peruanitta", "from_user_id": 114586255, "from_user_id_str": "114586255", "from_user_name": "tatiana", "geo": null, "id": 148838675663433730, "id_str": "148838675663433729", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681925739/IMG00362-20111112-1405_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681925739/IMG00362-20111112-1405_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: No se usa \"hubieron\" cuando haber se emplea para denotar la presencia de personas o cosas, Hubieron 6 ni\\u00F1os (\\u2717), debe decirse: Hubo 6 ni\\u00F1os\\u2611", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:40 +0000", "from_user": "ALFAREROS", "from_user_id": 36976702, "from_user_id_str": "36976702", "from_user_name": "ALFAREROS", "geo": null, "id": 148838675608895500, "id_str": "148838675608895489", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1594519464/Screen_shot_2011-10-18_at_9.52.25_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1594519464/Screen_shot_2011-10-18_at_9.52.25_AM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "\"ALFAREROS HOY EN NUESTRA FE EN VIVO\" EWTN \\n (especial de navidad) USA 6:00PM- MEXICO 5:00PM- BOGOTA 6:00PM\\n MADRID 12:00AM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:40 +0000", "from_user": "rehall90", "from_user_id": 374082243, "from_user_id_str": "374082243", "from_user_name": "Edward Hall", "geo": null, "id": 148838674942005250, "id_str": "148838674942005248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1621481316/Unknown_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621481316/Unknown_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TheCAJasonSmith: Will Barton named C-USA player of the week for second straight Monday. Short story: http://t.co/YfX4R06f Also, Tigers 34th in coaches poll.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:39 +0000", "from_user": "SetteNews", "from_user_id": 124415889, "from_user_id_str": "124415889", "from_user_name": "Sette", "geo": null, "id": 148838672974884860, "id_str": "148838672974884865", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1653944078/sette_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653944078/sette_twitter_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Ultim'ora: Musica: Pino Daniele, a marzo il nuovo album e poi il tour con finale in Usa - http://t.co/OXX6U4Hx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:39 +0000", "from_user": "contreras2908", "from_user_id": 134115016, "from_user_id_str": "134115016", "from_user_name": "Elvis Contreras", "geo": null, "id": 148838671741763600, "id_str": "148838671741763585", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1227439333/PC191106_-_Copy_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1227439333/PC191106_-_Copy_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Para manejarte usa tu cerebro, para manejar a otros, usa tu coraz\\u00F3n", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:38 +0000", "from_user": "DanLevyThinks", "from_user_id": 14885258, "from_user_id_str": "14885258", "from_user_name": "Dan Levy", "geo": null, "id": 148838670298910720, "id_str": "148838670298910720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1084395501/dl-typewriter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1084395501/dl-typewriter_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Tracking a package from Israel. Website tells me it's in USA but call a number in Israel. I do. I get all Hebrew, a website, then a hangup.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:38 +0000", "from_user": "fuckoffmarco", "from_user_id": 70287350, "from_user_id_str": "70287350", "from_user_name": "Marco Kuttner", "geo": null, "id": 148838669032235000, "id_str": "148838669032235009", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1560441392/P230911_2316_-_C_pia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1560441392/P230911_2316_-_C_pia_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @_amandspure: @fuckoffmarco ah, fica quieto meu. Voce usa PEROBA de hidratante e quer dar uma de t\\u00EDmido? MANDA QUEIA MAICO, MANDA SAUDADE MAICO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:38 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148838666930884600, "id_str": "148838666930884608", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "SOF\\u00CCA USA COND\\u00D3N,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:37 +0000", "from_user": "BooksReview4U", "from_user_id": 257545156, "from_user_id_str": "257545156", "from_user_name": "Jonathan Cremin", "geo": null, "id": 148838663013404670, "id_str": "148838663013404674", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1564475545/Books_reviews_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1564475545/Books_reviews_normal.gif", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "RT @Melissa_Foster: Excited my book is recommended on USA Today book blog. COME BACK TO ME http://t.co/fgNrYaC7 #IAN1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:37 +0000", "from_user": "sp_missouri", "from_user_id": 128447100, "from_user_id_str": "128447100", "from_user_name": "Superpages Missouri", "geo": +{"coordinates": [39.0501,-94.6012], "type": "Point"}, "id": 148838662325551100, "id_str": "148838662325551104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/789666039/sp-coupons_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/789666039/sp-coupons_normal.gif", "source": "<a href="http://www.superpages.com" rel="nofollow">Superpages</a>", "text": "Autobahn Motors USA Inc. Kansas City, MO Call now or stop by for great deals! http://t.co/70D24pRT KansasCity Auto Dealers #coupon", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:37 +0000", "from_user": "mapadevyz", "from_user_id": 433567244, "from_user_id_str": "433567244", "from_user_name": "Ekaghogho Farrier", "geo": null, "id": 148838662149373950, "id_str": "148838662149373952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1685903626/1608_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685903626/1608_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @decajape: cheap unsecured loans http://t.co/gvalncRY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:36 +0000", "from_user": "Mukha_Kaloev", "from_user_id": 169443326, "from_user_id_str": "169443326", "from_user_name": "Mukha Kaloev", "geo": null, "id": 148838660010278900, "id_str": "148838660010278912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1504969758/south_ossetia_flag_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1504969758/south_ossetia_flag_normal.gif", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @tgoorden: USA is now an openly pro-war, anti-science, pro-censorship, anti-protest military controlled superpower. Fascism.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:35 +0000", "from_user": "Kwl1", "from_user_id": 319625316, "from_user_id_str": "319625316", "from_user_name": "Porran Izah ", "geo": null, "id": 148838656050868220, "id_str": "148838656050868224", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677386921/PB210925_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677386921/PB210925_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ESSESGAYS: \"como vc pode gostar de tatuagem e alargador? que coisa feia\" disse a pessoa que gosta de funk usa shortinho de 5cm e tem piercing no umbigo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:34 +0000", "from_user": "hywomukofi", "from_user_id": 433709843, "from_user_id_str": "433709843", "from_user_name": "Fielding Cluely", "geo": null, "id": 148838653018378240, "id_str": "148838653018378240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1685996163/258_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685996163/258_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "texas auto insurance faq http://t.co/UxxsS8s6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:34 +0000", "from_user": "carrolltrust", "from_user_id": 18906599, "from_user_id_str": "18906599", "from_user_name": "Carroll Trust", "geo": null, "id": 148838652359872500, "id_str": "148838652359872513", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1132467164/55_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1132467164/55_normal.jpg", "source": "<a href="http://splitweet.com" rel="nofollow">Splitweet</a>", "text": "Bel Air #Los #Angeles Biggest Fraud Scandal #Coutts #Bank HSBC USA $1,OOO,OOO,OOO, #Bahamas #Gibraltar Fraud Case http://t.co/KRN3goRy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:34 +0000", "from_user": "HertfordOxford", "from_user_id": 378222973, "from_user_id_str": "378222973", "from_user_name": "Oxford University", "geo": null, "id": 148838652275986430, "id_str": "148838652275986432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1555155194/george_chap_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555155194/george_chap_normal.jpg", "source": "<a href="http://splitweet.com" rel="nofollow">Splitweet</a>", "text": "Bel Air #Los #Angeles Biggest Fraud Scandal #Coutts #Bank HSBC USA $1,OOO,OOO,OOO, #Bahamas #Gibraltar Fraud Case http://t.co/T5uSeZYm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:34 +0000", "from_user": "EnemyLister", "from_user_id": 386785567, "from_user_id_str": "386785567", "from_user_name": "Lo Haze", "geo": null, "id": 148838650359193600, "id_str": "148838650359193601", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697706728/6a00d8341c730253ef0162fddd66c2970d_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697706728/6a00d8341c730253ef0162fddd66c2970d_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @carolinedav: http://t.co/z7Zw5ODq -- A Butter message to the USA! http://t.co/IUp6HAxK via @youtube LOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:34 +0000", "from_user": "GiampiccoloMine", "from_user_id": 65092948, "from_user_id_str": "65092948", "from_user_name": "Matheus Giampiccolo", "geo": null, "id": 148838650199805950, "id_str": "148838650199805952", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1467986340/kkk_mine_e_roni2_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1467986340/kkk_mine_e_roni2_3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:34 +0000", "from_user": "BHRDef_jaguar", "from_user_id": 362653328, "from_user_id_str": "362653328", "from_user_name": "BHRDef_jaguar", "geo": null, "id": 148838649650352130, "id_str": "148838649650352129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689615860/BHRDefense_Logo_-jagur-b_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689615860/BHRDefense_Logo_-jagur-b_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "the tweet in this link is very important retweet it pls https://t.co/juG0g2If #bahrain #14feb #saudi #kuwait #usa @lane_liz @martinezjuliu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:33 +0000", "from_user": "ken_morera", "from_user_id": 26448853, "from_user_id_str": "26448853", "from_user_name": "kenneth morera\\u2652", "geo": null, "id": 148838649302237200, "id_str": "148838649302237184", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1671829060/IMAG0102_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671829060/IMAG0102_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@JocMiranda Yo odio las bufandas! Digamos q la gente las usa de adorno. Ni calientan! XD", "to_user": "JocMiranda", "to_user_id": 51857115, "to_user_id_str": "51857115", "to_user_name": "Jose Miranda", "in_reply_to_status_id": 148838315980894200, "in_reply_to_status_id_str": "148838315980894208"}, +{"created_at": "Mon, 19 Dec 2011 18:54:33 +0000", "from_user": "pegvirginia", "from_user_id": 146829426, "from_user_id_str": "146829426", "from_user_name": "peggy virginia", "geo": null, "id": 148838648962490370, "id_str": "148838648962490368", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698543522/IMG-20111216-00028_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698543522/IMG-20111216-00028_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Hay gente q usa 140 caracteres para demostrar q es un estupido cuando lo puede hacer cn 19: Yo soy un/a estupid@", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:33 +0000", "from_user": "sir_edrizy", "from_user_id": 372741448, "from_user_id_str": "372741448", "from_user_name": "Malik Eward jnr", "geo": null, "id": 148838648786325500, "id_str": "148838648786325504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699809090/331647120_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699809090/331647120_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "No.2255b devils drive Texas RT @TWEETORACLE: The HQ of the #PORN industry in USA is ________?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:33 +0000", "from_user": "AS_Inako", "from_user_id": 127550968, "from_user_id_str": "127550968", "from_user_name": "I\\u00F1ako D\\u00EDaz-Guerra", "geo": null, "id": 148838646412349440, "id_str": "148838646412349440", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1640288312/viejas30068_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640288312/viejas30068_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "El agente de Kirilenko asegura a medios USA q a\\u00FAn no hay acuerdo. La palabra es a\\u00FAn. Con Prokhorov por medio, no hay mucho margen para el no", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:32 +0000", "from_user": "jkennemore1", "from_user_id": 248788359, "from_user_id_str": "248788359", "from_user_name": "Josh", "geo": null, "id": 148838645082759170, "id_str": "148838645082759168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700925695/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700925695/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @RacerDave23: #Racers now #22 in Associate Press & ESPN/USA Today polls.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:32 +0000", "from_user": "ryantrind", "from_user_id": 98824745, "from_user_id_str": "98824745", "from_user_name": "ryan tri INDRAwan", "geo": null, "id": 148838644411662340, "id_str": "148838644411662336", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702258820/390773_264649966922862_100001335826597_696661_569498639_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702258820/390773_264649966922862_100001335826597_696661_569498639_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Nonton VOA: di USA Banyak Dep.Store yang banting harga di hari Thanksgiving. Orang2 rebutan belanja sampe sikut2an. Iya, itu di AMERIKA loh!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:32 +0000", "from_user": "IamJoandrY", "from_user_id": 273587861, "from_user_id_str": "273587861", "from_user_name": "JoandrY OrtegA", "geo": null, "id": 148838644344553470, "id_str": "148838644344553474", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1661776421/224471_225447487499444_3656141_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661776421/224471_225447487499444_3656141_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "ADICTA USA COND\\u00D3N ;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:32 +0000", "from_user": "DeboraDetchon", "from_user_id": 434995725, "from_user_id_str": "434995725", "from_user_name": "Debora Detchon", "geo": null, "id": 148838644122267650, "id_str": "148838644122267649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "http://t.co/HUDWXzAJ Russia Newspaper BlackJack USA Technology Football", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:32 +0000", "from_user": "varusog", "from_user_id": 419765095, "from_user_id_str": "419765095", "from_user_name": "Olubayo Holtaway", "geo": null, "id": 148838642369052670, "id_str": "148838642369052672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1656999291/6_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656999291/6_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @jebykuqawa: fast cash hawaii http://t.co/OYyK76sJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:32 +0000", "from_user": "Eveliin_gyn", "from_user_id": 219800683, "from_user_id_str": "219800683", "from_user_name": "Eveliin", "geo": null, "id": 148838641798623230, "id_str": "148838641798623234", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693277576/321703_2282621628409_1334902911_32075493_1271116808_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693277576/321703_2282621628409_1334902911_32075493_1271116808_o_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ESSESGAYS: \"como vc pode gostar de tatuagem e alargador? que coisa feia\" disse a pessoa que gosta de funk usa shortinho de 5cm e tem piercing no umbigo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:30 +0000", "from_user": "dyzowusypol", "from_user_id": 419803768, "from_user_id_str": "419803768", "from_user_name": "Bryana Duchateau", "geo": null, "id": 148838636601876480, "id_str": "148838636601876480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657151541/6_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657151541/6_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @noxyvevakog: north carolina car insurance http://t.co/ASo8MaUm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:29 +0000", "from_user": "cdelmauro", "from_user_id": 415293448, "from_user_id_str": "415293448", "from_user_name": "cristian del mauro", "geo": null, "id": 148838632596320260, "id_str": "148838632596320256", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1647984485/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647984485/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Algunos lo mas cerca de USA que han estado es barrio Franklin y hablan de #cameltoe los agringados. Viva don Dioscoro y la piojera", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:29 +0000", "from_user": "AcaoPolicial", "from_user_id": 101496213, "from_user_id_str": "101496213", "from_user_name": "Homem de DEUS", "geo": null, "id": 148838629358313470, "id_str": "148838629358313472", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534528829/anigiffff_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534528829/anigiffff_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lucitito: @RubensLemos Imuran 50 mg \\u00F1 vende em farm\\u00E1cia mas o governo do estado d\\u00E1 pela Unicat, minha irm\\u00E3 tb usa esse medicamento", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:28 +0000", "from_user": "s3yizy", "from_user_id": 84952218, "from_user_id_str": "84952218", "from_user_name": "OS\\u2122 OGO", "geo": null, "id": 148838626485207040, "id_str": "148838626485207040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668847629/368721353_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668847629/368721353_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "TAFAWA BALEWA SQUARE, CALIFORNIA RT @TWEETORACLE: The HQ of the #PORN industry in USA is ________?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:27 +0000", "from_user": "ProfessorTaxUSA", "from_user_id": 222504279, "from_user_id_str": "222504279", "from_user_name": "Professor Tax USA", "geo": null, "id": 148838620541878270, "id_str": "148838620541878272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1224274031/Twitter_Profile_Picture_Professor_Tax_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1224274031/Twitter_Profile_Picture_Professor_Tax_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Don't get stump on your sales tax let Professor Tax USA help you solve your problems.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:27 +0000", "from_user": "nai_naiian", "from_user_id": 237244169, "from_user_id_str": "237244169", "from_user_name": "isnaini Masruroh", "geo": null, "id": 148838620290232320, "id_str": "148838620290232320", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676874333/u_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676874333/u_normal.JPG", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "RT @DamnItsTrueFact: Saat cewe bilang ga usa khawatir, lebih baik kamu khawatir tentang itu.#DamnItsTrueFact", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:26 +0000", "from_user": "samiraabdouni", "from_user_id": 116045697, "from_user_id_str": "116045697", "from_user_name": "Emily", "geo": null, "id": 148838619082264580, "id_str": "148838619082264576", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696918476/303200_223780737689219_100001718836611_615484_775520558_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696918476/303200_223780737689219_100001718836611_615484_775520558_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ESSESGAYS: \"como vc pode gostar de tatuagem e alargador? que coisa feia\" disse a pessoa que gosta de funk usa shortinho de 5cm e tem piercing no umbigo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:26 +0000", "from_user": "andoreia", "from_user_id": 99153272, "from_user_id_str": "99153272", "from_user_name": "andreea", "geo": null, "id": 148838617501024260, "id_str": "148838617501024257", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1633986160/avatar3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633986160/avatar3_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@byanka7 ca sa ne inchida si noua usa in nas?? =))))))))))))))))", "to_user": "byanka7", "to_user_id": 99332290, "to_user_id_str": "99332290", "to_user_name": "Byanka", "in_reply_to_status_id": 148838540145463300, "in_reply_to_status_id_str": "148838540145463298"} +, +{"created_at": "Mon, 19 Dec 2011 18:54:26 +0000", "from_user": "samiraabdouni", "from_user_id": 116045697, "from_user_id_str": "116045697", "from_user_name": "Emily", "geo": null, "id": 148838619082264580, "id_str": "148838619082264576", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696918476/303200_223780737689219_100001718836611_615484_775520558_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696918476/303200_223780737689219_100001718836611_615484_775520558_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ESSESGAYS: \"como vc pode gostar de tatuagem e alargador? que coisa feia\" disse a pessoa que gosta de funk usa shortinho de 5cm e tem piercing no umbigo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:26 +0000", "from_user": "andoreia", "from_user_id": 99153272, "from_user_id_str": "99153272", "from_user_name": "andreea", "geo": null, "id": 148838617501024260, "id_str": "148838617501024257", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1633986160/avatar3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633986160/avatar3_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@byanka7 ca sa ne inchida si noua usa in nas?? =))))))))))))))))", "to_user": "byanka7", "to_user_id": 99332290, "to_user_id_str": "99332290", "to_user_name": "Byanka", "in_reply_to_status_id": 148838540145463300, "in_reply_to_status_id_str": "148838540145463298"}, +{"created_at": "Mon, 19 Dec 2011 18:54:26 +0000", "from_user": "Xfilespoker", "from_user_id": 15038133, "from_user_id_str": "15038133", "from_user_name": "Tom Dwyer ", "geo": null, "id": 148838617014485000, "id_str": "148838617014484992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1598839132/218129_206450186045036_100000401691907_630491_4776751_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598839132/218129_206450186045036_100000401691907_630491_4776751_n_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "http://t.co/EJTZ0YCr Why Americans #Occupy Wall Street (Their Story, take on OWS) Send us YOUR Story today. #AMERICA #USA #Occupywallstreet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:25 +0000", "from_user": "_Pichi", "from_user_id": 138849441, "from_user_id_str": "138849441", "from_user_name": "Julio Pichi\\u2122 Mtz.", "geo": null, "id": 148838614032322560, "id_str": "148838614032322560", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682425543/331146537_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682425543/331146537_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:24 +0000", "from_user": "MagathaThurberW", "from_user_id": 436807576, "from_user_id_str": "436807576", "from_user_name": "Magatha Thurber Wams", "geo": null, "id": 148838611226345470, "id_str": "148838611226345472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": null, "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "http://t.co/uCdWQ9rZ Beyonce Knowles Profession RAM Relationship USA Golf Friends Final Fantasy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:24 +0000", "from_user": "ArticleGurus", "from_user_id": 352172550, "from_user_id_str": "352172550", "from_user_name": "Article Gurus", "geo": null, "id": 148838608357433340, "id_str": "148838608357433345", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.articlegurus.com" rel="nofollow">Article Gurus</a>", "text": "nike kobe usa Air Jordan 13 Retro Bulls' http://t.co/O9hrEx2m #article", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:24 +0000", "from_user": "woeisgabs", "from_user_id": 82649381, "from_user_id_str": "82649381", "from_user_name": "Gabriella com 2 L", "geo": null, "id": 148838608088993800, "id_str": "148838608088993792", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1677371585/tt_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677371585/tt_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:23 +0000", "from_user": "purfect_harmony", "from_user_id": 31203350, "from_user_id_str": "31203350", "from_user_name": "Yiffy!", "geo": null, "id": 148838606096703500, "id_str": "148838606096703488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1593971949/meeeeetifff_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593971949/meeeeetifff_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Time to get closer to God for real. This world and primarily the USA is in for a rude awakening.........", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:23 +0000", "from_user": "efedRaa", "from_user_id": 266422223, "from_user_id_str": "266422223", "from_user_name": "maur\\u04D9\\u04D9n", "geo": null, "id": 148838604066664450, "id_str": "148838604066664449", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1635672265/296622_267498056603669_100000304307460_889589_1598550679_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635672265/296622_267498056603669_100000304307460_889589_1598550679_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Ederlever osea no era un lim\\u00F3n era mike wazowski.... usa tu imaginaci\\u00F3n xD", "to_user": "Ederlever", "to_user_id": 131610091, "to_user_id_str": "131610091", "to_user_name": "Eder Roman \\u2714", "in_reply_to_status_id": 148629292752961540, "in_reply_to_status_id_str": "148629292752961536"}, +{"created_at": "Mon, 19 Dec 2011 18:54:22 +0000", "from_user": "annaaa_xoxox", "from_user_id": 31546312, "from_user_id_str": "31546312", "from_user_name": "Anna (:", "geo": null, "id": 148838602376347650, "id_str": "148838602376347649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1678546406/IMAG2163_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678546406/IMAG2163_normal.jpg", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "@NarniaNeeds1D I live in SoCal maybe like an hour from San Diego. Did you watch the X Factor USA?", "to_user": "NarniaNeeds1D", "to_user_id": 379254385, "to_user_id_str": "379254385", "to_user_name": "Niall's Girl", "in_reply_to_status_id": 148837319363919870, "in_reply_to_status_id_str": "148837319363919872"}, +{"created_at": "Mon, 19 Dec 2011 18:54:22 +0000", "from_user": "iTvez", "from_user_id": 27819528, "from_user_id_str": "27819528", "from_user_name": "Emmanuel Escarcega", "geo": null, "id": 148838601529114620, "id_str": "148838601529114624", "iso_language_code": "hu", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/404788331/Onion_Head___Gif__s_by_occisioth_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/404788331/Onion_Head___Gif__s_by_occisioth_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Mi Red2 http://t.co/2gs47fHZ v\\u00EDa @iTvez", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:21 +0000", "from_user": "TheDrumLife2011", "from_user_id": 345595797, "from_user_id_str": "345595797", "from_user_name": "The Drum Life", "geo": null, "id": 148838597208977400, "id_str": "148838597208977408", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1544340630/drumlife9-15-11_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544340630/drumlife9-15-11_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Gretsch USA Custom Set...DD http://t.co/xsnxgEqx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:20 +0000", "from_user": "zschocheyklcty2", "from_user_id": 376814051, "from_user_id_str": "376814051", "from_user_name": "Zschoche Swane", "geo": null, "id": 148838594600116220, "id_str": "148838594600116224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1551651111/f_35_w_0058_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1551651111/f_35_w_0058_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@_Shannonnnxo http://t.co/Jo0FM6JU", "to_user": "_Shannonnnxo", "to_user_id": 381877335, "to_user_id_str": "381877335", "to_user_name": "Shannon", "in_reply_to_status_id": 148686115581341700, "in_reply_to_status_id_str": "148686115581341696"}, +{"created_at": "Mon, 19 Dec 2011 18:54:20 +0000", "from_user": "Fersama", "from_user_id": 46804434, "from_user_id_str": "46804434", "from_user_name": "Fernanda", "geo": null, "id": 148838593941614600, "id_str": "148838593941614592", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699600442/Avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699600442/Avatar_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:20 +0000", "from_user": "mokasvintage", "from_user_id": 433986164, "from_user_id_str": "433986164", "from_user_name": "MoKasVintageMelange", "geo": null, "id": 148838593316667400, "id_str": "148838593316667392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689489962/vaiata_combi_jaune_yellow_dress_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689489962/vaiata_combi_jaune_yellow_dress_sm_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "We are continuing the xmas spirit with FREE SHIPPING in the USA !!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:19 +0000", "from_user": "unofficialsquaw", "from_user_id": 1414901, "from_user_id_str": "1414901", "from_user_name": "unofficialsquaw", "geo": null, "id": 148838590544220160, "id_str": "148838590544220160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/858239085/HD_LOGO_Unofficial_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/858239085/HD_LOGO_Unofficial_normal.jpg", "source": "<a href="http://tweetmeme.com" rel="nofollow">TweetMeme</a>", "text": "2011\\u2019s Top 10 Green Ski Resorts in the USA. Squaw Valley = #1 http://t.co/nDt4pEjk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:19 +0000", "from_user": "zlando", "from_user_id": 37919483, "from_user_id_str": "37919483", "from_user_name": "Zvi Lando", "geo": null, "id": 148838590166745100, "id_str": "148838590166745088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/198474678/me1a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/198474678/me1a_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@thisisKhaledM @Dima_Khatib if you do not understand the difference between NK with TheBomb and the USA with TheBomb - God forgive you!", "to_user": "thisisKhaledM", "to_user_id": 140571506, "to_user_id_str": "140571506", "to_user_name": "Khaled M", "in_reply_to_status_id": 148837089755136000, "in_reply_to_status_id_str": "148837089755136000"}, +{"created_at": "Mon, 19 Dec 2011 18:54:19 +0000", "from_user": "luchozo", "from_user_id": 55429317, "from_user_id_str": "55429317", "from_user_name": "Lucho", "geo": null, "id": 148838587054567420, "id_str": "148838587054567424", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695353413/billete_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695353413/billete_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:18 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148838583145472000, "id_str": "148838583145472001", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "ANDRES USA COND\\u00D3N,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:17 +0000", "from_user": "bikohipe", "from_user_id": 432619487, "from_user_id_str": "432619487", "from_user_name": "Achishar Bartosik", "geo": null, "id": 148838581039923200, "id_str": "148838581039923200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1683713350/83_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683713350/83_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @wuqyxev: loan officer training specialist http://t.co/tUthh2Us", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:17 +0000", "from_user": "msn_italia", "from_user_id": 16328363, "from_user_id_str": "16328363", "from_user_name": "msn_italia", "geo": null, "id": 148838580503060480, "id_str": "148838580503060480", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1398864385/Twit_MSN_italia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1398864385/Twit_MSN_italia_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Morte Kim:allerta forze Usa non cambia: Panetta, rimanere prudenti, colloquio con ministro difesa C.Sud http://t.co/VsjD32Kx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:15 +0000", "from_user": "FtLauderdaleCPN", "from_user_id": 408773212, "from_user_id_str": "408773212", "from_user_name": "Ft Lauderdale Coupon", "geo": null, "id": 148838573418881020, "id_str": "148838573418881024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Kristen groupon is 50% but this is the magic formula to get 90% http://t.co/52lZPMT6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:14 +0000", "from_user": "_Adicta", "from_user_id": 123965194, "from_user_id_str": "123965194", "from_user_name": "La que hace spam.", "geo": null, "id": 148838569782419460, "id_str": "148838569782419456", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "JESSICA USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:14 +0000", "from_user": "MommaKatyCats", "from_user_id": 417997381, "from_user_id_str": "417997381", "from_user_name": "\\u24D8 \\u24DB\\u24DE\\u24E5\\u24D4 \\u24DA\\u24D0\\u24E3\\u24E8 \\u261E\\uE32D\\u261C", "geo": null, "id": 148838568859680770, "id_str": "148838568859680768", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1659375301/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659375301/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@_queenkaty @_thafrancelino huasus.. Eh uma pessoa que usa roupa curta, mostra o corpo, tipo: mostra a vagina no show q nem a gaga fez", "to_user": "_queenkaty", "to_user_id": 395980334, "to_user_id_str": "395980334", "to_user_name": "kitten of Katy =^.^=", "in_reply_to_status_id": 148837446342295550, "in_reply_to_status_id_str": "148837446342295552"}, +{"created_at": "Mon, 19 Dec 2011 18:54:14 +0000", "from_user": "Mashnasty", "from_user_id": 229874748, "from_user_id_str": "229874748", "from_user_name": "Mash ", "geo": null, "id": 148838567043538940, "id_str": "148838567043538944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693457598/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693457598/profile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Previs: Killed Osama, Ended war in Iraq, Passed comprehensive health care, Ended Don't Ask Don't tell, Saved USA Auto Industry #WhatObamaHasDone", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:14 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148838566695407600, "id_str": "148838566695407616", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "ALE USA COND\\u00D3N,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:14 +0000", "from_user": "onebillioncrime", "from_user_id": 36982750, "from_user_id_str": "36982750", "from_user_name": "Billion Dollar Crime", "geo": null, "id": 148838566036897800, "id_str": "148838566036897792", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1132469027/American_Flag_And_Bald_Eagle_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1132469027/American_Flag_And_Bald_Eagle_normal.jpg", "source": "<a href="http://splitweet.com" rel="nofollow">Splitweet</a>", "text": "#Los #Angeles Biggest Fraud Scandal #Coutts #Bank HSBC USA $1,OOO,OOO,OOO, #Bahamas #Gibraltar Fraud Case http://t.co/Ax7zyTne", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:14 +0000", "from_user": "BillionDollarID", "from_user_id": 322038356, "from_user_id_str": "322038356", "from_user_name": "Maryland Trust", "geo": null, "id": 148838565894295550, "id_str": "148838565894295552", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1407946128/55_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1407946128/55_normal.jpg", "source": "<a href="http://splitweet.com" rel="nofollow">Splitweet</a>", "text": "#Los #Angeles Biggest Fraud Scandal #Coutts #Bank HSBC USA $1,OOO,OOO,OOO, #Bahamas #Gibraltar Fraud Case http://t.co/iLkyUMTT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:13 +0000", "from_user": "elsyvholm", "from_user_id": 305876874, "from_user_id_str": "305876874", "from_user_name": "elsy holm", "geo": null, "id": 148838564770234370, "id_str": "148838564770234368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662634386/King_Bedroom_Furniture_Sets_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662634386/King_Bedroom_Furniture_Sets_normal.jpg", "source": "<a href="http://kingbedroomfurnituresetssale.com" rel="nofollow">King Bedroom Furniture Sets2</a>", "text": "-> Full Size - Low Mission Platform Bed Frame - Made in USA - Solid Oak - Dark Danish Oil reduced price http://solidoakbedroomset.kingbedro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:13 +0000", "from_user": "betweenthegray", "from_user_id": 126435313, "from_user_id_str": "126435313", "from_user_name": "Andressa Dyias", "geo": null, "id": 148838564740861950, "id_str": "148838564740861954", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1617685768/fat_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1617685768/fat_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:13 +0000", "from_user": "CommerceGov", "from_user_id": 110541296, "from_user_id_str": "110541296", "from_user_name": "U.S. Commerce Dept.", "geo": null, "id": 148838563511934980, "id_str": "148838563511934977", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/677362045/doc_logo_halfinch_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/677362045/doc_logo_halfinch_normal.gif", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": ".@BEA_Data says that 15 trillion, 1.9 trillion, 2.3% and 15.6% are their four Big Numbers for 2011. Any guesses why? http://t.co/PZsIvoHL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:13 +0000", "from_user": "StartWorkNow", "from_user_id": 336548162, "from_user_id_str": "336548162", "from_user_name": "Freelance Jobs", "geo": null, "id": 148838561725157380, "id_str": "148838561725157376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1445380382/programmer_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1445380382/programmer_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Locksmith Data Base 2: I loking for data base (email and tel) for locksmiths store in the USA .for 2011 http://t.co/nzaJsXnL #work #jobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:12 +0000", "from_user": "_disparate", "from_user_id": 285167214, "from_user_id_str": "285167214", "from_user_name": "Untitled.", "geo": null, "id": 148838561343475700, "id_str": "148838561343475712", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695172092/Gr_fico1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695172092/Gr_fico1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @_Adicta: DISPARATE USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:12 +0000", "from_user": "TopTenReligion", "from_user_id": 291714278, "from_user_id_str": "291714278", "from_user_name": "Richard Floyd", "geo": null, "id": 148838560257146880, "id_str": "148838560257146881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1335697995/top-ten-movers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335697995/top-ten-movers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #3000 30 Scripture Readings for Christmas (Year Long Bible Reading Series) $2.99: This book arranges ... http://t.co/lZFkhxHe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:12 +0000", "from_user": "TopTenReligion", "from_user_id": 291714278, "from_user_id_str": "291714278", "from_user_name": "Richard Floyd", "geo": null, "id": 148838558684291070, "id_str": "148838558684291072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1335697995/top-ten-movers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335697995/top-ten-movers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #190407 THE PICTURE OF DORIAN GRAY (Annotated) $9.99: Oscar Wilde This unique version of also include... http://t.co/ue187uZc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:12 +0000", "from_user": "TopTenReligion", "from_user_id": 291714278, "from_user_id_str": "291714278", "from_user_name": "Richard Floyd", "geo": null, "id": 148838557337911300, "id_str": "148838557337911296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1335697995/top-ten-movers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335697995/top-ten-movers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #276616 Ignatius Critical Edition: Mansfield Park $14.95: Jane Austen In all things, Jane Austen was ... http://t.co/LQ50DLD7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:11 +0000", "from_user": "TopTenReligion", "from_user_id": 291714278, "from_user_id_str": "291714278", "from_user_name": "Richard Floyd", "geo": null, "id": 148838556243206140, "id_str": "148838556243206144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1335697995/top-ten-movers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335697995/top-ten-movers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #1418 A CHRISTMAS CAROL (ILLUSTRATED with Special Kindle Format) $0.99: CHARLES DICKENS Christmas' Favorite! http://t.co/Uz0YuBGS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:11 +0000", "from_user": "TopTenReligion", "from_user_id": 291714278, "from_user_id_str": "291714278", "from_user_name": "Richard Floyd", "geo": null, "id": 148838554569682940, "id_str": "148838554569682944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1335697995/top-ten-movers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335697995/top-ten-movers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #1133 Afton of Margate Castle (The Theyn Chronicles) $0.99: Angela Hunt Beautiful, headstrong Afton i... http://t.co/KmZFPPhC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:10 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148838552380260350, "id_str": "148838552380260352", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "GENESIS USA COND\\u00D3N,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:11 +0000", "from_user": "alanhsmith", "from_user_id": 52978468, "from_user_id_str": "52978468", "from_user_name": "Alan Smith \\uF8FF", "geo": null, "id": 148838551734321150, "id_str": "148838551734321152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1616149645/New_Profile_Pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616149645/New_Profile_Pic_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Camera on iOS</a>", "text": "Received my free @SmileSoftware mug all the way from USA to NZ yesterday! Coffee-filled today! Thanks @SmileSoftware http://t.co/TRC9L73m", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:10 +0000", "from_user": "hbsbucks", "from_user_id": 255281218, "from_user_id_str": "255281218", "from_user_name": "hbsbucks", "geo": null, "id": 148838551361040400, "id_str": "148838551361040384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1250136504/Diamond_Heart_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1250136504/Diamond_Heart_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Multaq (dronedarone): Drug Safety Communication - Increased Risk of Death or Serious Cardiovascular Events: UPDA... http://t.co/5YlX5zWx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:09 +0000", "from_user": "maxlibris", "from_user_id": 14334835, "from_user_id_str": "14334835", "from_user_name": "Max Anderson", "geo": null, "id": 148838548483743740, "id_str": "148838548483743745", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1562418087/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1562418087/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@NLM_SIS: #NLM #PeopleLocator: post or search lost &found persons: at http://t.co/G8Q9I7cz For my mobile classes, this is ReUnite", "to_user": "NLM_SIS", "to_user_id": 44970026, "to_user_id_str": "44970026", "to_user_name": "NLM SIS"}, +{"created_at": "Mon, 19 Dec 2011 18:54:09 +0000", "from_user": "MoversKitchen", "from_user_id": 289992014, "from_user_id_str": "289992014", "from_user_name": "Richard Floyd", "geo": null, "id": 148838544742428670, "id_str": "148838544742428674", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1331825498/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1331825498/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #8: Bodum Bistro Double-Wall Insulated Glass Mug, 10-Ounce, Set of 2: Bodum Bistro Double-Wall Insula... http://t.co/HUg3nHXk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:08 +0000", "from_user": "georgiarichter1", "from_user_id": 338805228, "from_user_id_str": "338805228", "from_user_name": "georgia richter", "geo": null, "id": 148838542934687740, "id_str": "148838542934687744", "iso_language_code": "fi", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1452628710/PQAAAMSanFosWRmilEq2fmOz0xKXNPrDlSmtrV6A2w2fZqnWSENXzuRpbuzSsp8aS72eSbd_k6ZNKswcLOrMDnqYKuEAm1T1UEaoJ5D1naWhK7ZQmoSYrbXR7St7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1452628710/PQAAAMSanFosWRmilEq2fmOz0xKXNPrDlSmtrV6A2w2fZqnWSENXzuRpbuzSsp8aS72eSbd_k6ZNKswcLOrMDnqYKuEAm1T1UEaoJ5D1naWhK7ZQmoSYrbXR7St7_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "kaka ja sei toda a roupa q vou usa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:08 +0000", "from_user": "_Adicta", "from_user_id": 123965194, "from_user_id_str": "123965194", "from_user_name": "La que hace spam.", "geo": null, "id": 148838542313918460, "id_str": "148838542313918464", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "LADY USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:08 +0000", "from_user": "hovulysery", "from_user_id": 432818368, "from_user_id_str": "432818368", "from_user_name": "Jonas Firpi", "geo": null, "id": 148838541156286460, "id_str": "148838541156286464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683859546/1450_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683859546/1450_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @mohanozi: auto insurance broker calgary http://t.co/S8YGGk8b", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:07 +0000", "from_user": "danailos", "from_user_id": 199088181, "from_user_id_str": "199088181", "from_user_name": "Danilo Noboru", "geo": null, "id": 148838539042365440, "id_str": "148838539042365440", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1639646625/mini_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639646625/mini_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "s\\u00F3 a @paulaccarvalho que usa esse formspring man UHAUEHUEH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:07 +0000", "from_user": "WhistlingBullet", "from_user_id": 143959357, "from_user_id_str": "143959357", "from_user_name": "AJ", "geo": null, "id": 148838536794222600, "id_str": "148838536794222594", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686766571/klsc7tG5_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686766571/klsc7tG5_normal", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "Unlabeled milk from cows treated with b - PubMed Mobile http://t.co/ckbGLe6g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:05 +0000", "from_user": "lasvegas_escort", "from_user_id": 83902300, "from_user_id_str": "83902300", "from_user_name": "Las Vegas Escorts", "geo": null, "id": 148838531190632450, "id_str": "148838531190632448", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/481813781/twitter_icon_15_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/481813781/twitter_icon_15_normal.jpg", "source": "<a href="http://tinyurl.com/5qva38" rel="nofollow">Las Vegas Escorts</a>", "text": "http://t.co/fCclrVk7 Las Vegas Adult Classified ad: Beautiful Piece Brunette Lovergirl.. - w4m - 45", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:05 +0000", "from_user": "BetKenfield0503", "from_user_id": 441098385, "from_user_id_str": "441098385", "from_user_name": "Bet Kenfield", "geo": null, "id": 148838530746032130, "id_str": "148838530746032129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "http://t.co/zyqSlvjf Credit Card Hospital Fishing Vitamin The West Wing Tennis USA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:04 +0000", "from_user": "MICHAELGGRIST", "from_user_id": 155543197, "from_user_id_str": "155543197", "from_user_name": "MICHAEL G GRIST", "geo": null, "id": 148838527700963330, "id_str": "148838527700963328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1361097206/MIKE_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1361097206/MIKE_normal.jpeg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Sign Petition @change: Petland USA: Stop Selling Pets - Fire Puppy Mills - Petland Canada Has! http://t.co/Z9GZc6Ox", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:04 +0000", "from_user": "TammyAllgood", "from_user_id": 74211104, "from_user_id_str": "74211104", "from_user_name": "Tammy Allgood", "geo": null, "id": 148838527549980670, "id_str": "148838527549980672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "I entered to #win Royal Garden Tee from @allusaclothing and so can you. @madeonlyinusa http://t.co/Ee0BaGVi http://t.co/PfQuuIy7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:03 +0000", "from_user": "_Adicta", "from_user_id": 123965194, "from_user_id_str": "123965194", "from_user_name": "La que hace spam.", "geo": null, "id": 148838523666055170, "id_str": "148838523666055168", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "LUIS USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:03 +0000", "from_user": "JonathanJesusR", "from_user_id": 61281757, "from_user_id_str": "61281757", "from_user_name": "\\u265B Jonathan Reinoza ", "geo": null, "id": 148838521946390530, "id_str": "148838521946390529", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1648568870/330112859_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648568870/330112859_normal.jpg", "source": "<a href="http://www.botize.com" rel="nofollow">Botize</a>", "text": "URY: Se usa principalmente en el tratamiento de afecciones del ri\\u00F1\\u00F3n y del h\\u00EDgado. Mantiene el equilibrio entre el sodio y el potasio. #NSP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:03 +0000", "from_user": "thiagobaldaia", "from_user_id": 96665646, "from_user_id_str": "96665646", "from_user_name": "Thiago Pasquini", "geo": null, "id": 148838520398675970, "id_str": "148838520398675968", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680117065/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680117065/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@danielbianchin2 troxa do krlho tira essa foto do perfil que voce nao merece usa seu merda xingandono palmeiras nos tweets antigos fdp", "to_user": "danielbianchin2", "to_user_id": 372050856, "to_user_id_str": "372050856", "to_user_name": "daniel bianchini"}, +{"created_at": "Mon, 19 Dec 2011 18:54:02 +0000", "from_user": "JustinMyLovesz", "from_user_id": 211329504, "from_user_id_str": "211329504", "from_user_name": "Diva do Bieber \\u2665", "geo": null, "id": 148838518444142600, "id_str": "148838518444142593", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1625705437/41b51394028611e1a87612313804ec91_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1625705437/41b51394028611e1a87612313804ec91_7_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Me pergunte qualquer coisa. - \\u203A 1. Altura? 2. Peso? 3. Voc\\u00EA fuma? 4. Voc\\u00EA bebe? 5. Usa/j\\u00E1 usou drogas? 6.... http://t.co/IcSWWikO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:02 +0000", "from_user": "Raipurindia", "from_user_id": 235585862, "from_user_id_str": "235585862", "from_user_name": "Rajani kanta sahu", "geo": null, "id": 148838518263791600, "id_str": "148838518263791616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1482832350/Bula1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1482832350/Bula1_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Virtu USA 32\" Seville Single Bathroom Vanity, Black: Contact us after purchasing to choose your type of stone co... http://t.co/fElcUnA8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:02 +0000", "from_user": "itsvickieee", "from_user_id": 101253298, "from_user_id_str": "101253298", "from_user_name": "Victoria", "geo": null, "id": 148838515801735170, "id_str": "148838515801735168", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696570075/teukkie___normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696570075/teukkie___normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/N1LzAqOS costay.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:01 +0000", "from_user": "musicastrada", "from_user_id": 106701166, "from_user_id_str": "106701166", "from_user_name": "musicastrada", "geo": null, "id": 148838515063525380, "id_str": "148838515063525376", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/758499850/chitarratrasp_quadrata_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/758499850/chitarratrasp_quadrata_normal.png", "source": "<a href="http://www.wibiya.com/?ref=twitter" rel="nofollow">Wibiya Bar</a>", "text": "Stasera ore 21.30 concerto GOSPEL con Kathy Taylor al Teatro Era di Pontedera- http://t.co/lVMCqJKt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:01 +0000", "from_user": "aHotTub", "from_user_id": 91662953, "from_user_id_str": "91662953", "from_user_name": "Lucas Barbosa", "geo": null, "id": 148838512140091400, "id_str": "148838512140091392", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1546083502/P1000097_modified_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546083502/P1000097_modified_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Dia 21 a @ItsMelanieAmaro vai ganhar o The X Factor USA!!!!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:00 +0000", "from_user": "USAFieldHockey", "from_user_id": 22518192, "from_user_id_str": "22518192", "from_user_name": "USA Field Hockey", "geo": null, "id": 148838510894387200, "id_str": "148838510894387200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1587059608/USAfield_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587059608/USAfield_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Executive Director Steve Locke was at the final match of the Great Britain vs Team USA in Chula Vista yesterday... http://t.co/8HNLjdX4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:00 +0000", "from_user": "ABOGALLARDO", "from_user_id": 132284244, "from_user_id_str": "132284244", "from_user_name": "Delfino Gallardo \\u2122", "geo": null, "id": 148838510563033100, "id_str": "148838510563033088", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1124128160/DELFINO_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1124128160/DELFINO_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @laprimeradepue: Facebook se usa m\\u00E1s desde Android que desde los iPhone http://t.co/4jq0A2Wl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:00 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148838509325717500, "id_str": "148838509325717504", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "HOMOSEXUAL USA COND\\u00D3N,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:00 +0000", "from_user": "TH3AW3SOME1", "from_user_id": 249084850, "from_user_id_str": "249084850", "from_user_name": "Full Time Unicorn :3", "geo": null, "id": 148838507442475000, "id_str": "148838507442475008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694782146/m2rg6hvX_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694782146/m2rg6hvX_normal", "source": "<a href="http://gladlyCast.com" rel="nofollow">gladlyCast SMS</a>", "text": "#NowPlaying party in the usa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:00 +0000", "from_user": "Hillaryvos", "from_user_id": 431696309, "from_user_id_str": "431696309", "from_user_name": "Hillary Hohlt", "geo": null, "id": 148838507316650000, "id_str": "148838507316649984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681023138/j0mfhe55xv_126840324-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681023138/j0mfhe55xv_126840324-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Fender Blues Deluxe/Deville Recap Kit (for USA Amps): Improve the tone and reliability of your Fender Blues DeVi... http://t.co/86BEuKct", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:00 +0000", "from_user": "hana_usa", "from_user_id": 61953343, "from_user_id_str": "61953343", "from_user_name": "\\u3046\\u3055", "geo": null, "id": 148838506972725250, "id_str": "148838506972725248", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669851229/usa_icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669851229/usa_icon_normal.jpg", "source": "<a href="http://twittbot.net/" rel="nofollow">twittbot.net</a>", "text": "\\u3010\\u5B9A\\u671F\\u30DD\\u30B9\\u30C8\\u3011avex trax\\u304B\\u3089\\u30EA\\u30EA\\u30FC\\u30B9\\u3055\\u308C\\u307E\\u3057\\u305F\\u30BD\\u30ED\\u30A2\\u30EB\\u30D0\\u30E0\\u300ELINK/RING\\u300F\\u767A\\u58F2\\u4E2D\\u3067\\u3059\\uFF01\\u3088\\u308D\\u3057\\u304F\\u304A\\u9858\\u3044\\u3044\\u305F\\u3057\\u307E\\u3059(\\u00B4\\u2200\\uFF40*) http://t.co/KWV0gzzy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:59 +0000", "from_user": "5emeVitesse", "from_user_id": 222897611, "from_user_id_str": "222897611", "from_user_name": "Cinquiemevitesse", "geo": null, "id": 148838506213539840, "id_str": "148838506213539840", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1184087012/journaliste291008a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1184087012/journaliste291008a_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Usa : Obama signe la loi sur la d\\u00E9tention ind\\u00E9finie et la torture http://t.co/9Wr5L0Cb via @AddThis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:59 +0000", "from_user": "zabolostky", "from_user_id": 40025069, "from_user_id_str": "40025069", "from_user_name": "Gabriel Zabolostky", "geo": null, "id": 148838505429205000, "id_str": "148838505429204992", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685947926/DSC02226_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685947926/DSC02226_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "ziper se usa na roupa e n\\u00E3o na orelha #dica", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:58 +0000", "from_user": "VeejayCostello", "from_user_id": 145933508, "from_user_id_str": "145933508", "from_user_name": "Veejay Costello", "geo": null, "id": 148838499431354370, "id_str": "148838499431354368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1258456739/Profile_in_Scotland_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1258456739/Profile_in_Scotland_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @insidethehall: Indiana is No. 18 in the latest USA Today/ESPN Coaches Top 25 Poll. #iubb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:57 +0000", "from_user": "Deuceyv", "from_user_id": 235787119, "from_user_id_str": "235787119", "from_user_name": "\\uE30AVickie\\u00AE", "geo": null, "id": 148838497606832130, "id_str": "148838497606832128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1633664704/profileImage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633664704/profileImage_normal.jpg", "source": "<a href="http://www.snsanalytics.com" rel="nofollow">SNS Analytics</a>", "text": "RT @FinanceYourself: Interest rate cuts irk online banking customers http://t.co/RSTJZa1p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:57 +0000", "from_user": "rezaitalia23", "from_user_id": 272158567, "from_user_id_str": "272158567", "from_user_name": "reza", "geo": null, "id": 148838495815864320, "id_str": "148838495815864320", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687757031/luogo_reza_finanza_picolo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687757031/luogo_reza_finanza_picolo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "finalmente si vede la luce\\nnei usa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:57 +0000", "from_user": "dejexife", "from_user_id": 434012000, "from_user_id_str": "434012000", "from_user_name": "Urjashri Battle", "geo": null, "id": 148838495635505150, "id_str": "148838495635505152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688131325/1609_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688131325/1609_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "desjardins auto insurance toronto contact http://t.co/dunKnBpd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:57 +0000", "from_user": "_Adicta", "from_user_id": 123965194, "from_user_id_str": "123965194", "from_user_name": "La que hace spam.", "geo": null, "id": 148838495069286400, "id_str": "148838495069286401", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "EDWIN USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:56 +0000", "from_user": "maykq", "from_user_id": 368907864, "from_user_id_str": "368907864", "from_user_name": "maykol", "geo": null, "id": 148838491919368200, "id_str": "148838491919368192", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1658023631/PB2501061_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658023631/PB2501061_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@larebenav1dez pq n deixa o well usa os 14mm? u-u", "to_user": "larebenav1dez", "to_user_id": 276332384, "to_user_id_str": "276332384", "to_user_name": "Lare B", "in_reply_to_status_id": 148835979824865280, "in_reply_to_status_id_str": "148835979824865281"}, +{"created_at": "Mon, 19 Dec 2011 18:53:55 +0000", "from_user": "VirtuallyPLB", "from_user_id": 339713020, "from_user_id_str": "339713020", "from_user_name": "Pierre-Louis Brunet", "geo": null, "id": 148838487922196480, "id_str": "148838487922196480", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702213115/AgX2Du8CMAAQWvC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702213115/AgX2Du8CMAAQWvC_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Bon__a__Savoir: Il y a 85 hommes nomm\\u00E9s Homer Simpson aux USA.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:54 +0000", "from_user": "Luis_Haxel", "from_user_id": 252124548, "from_user_id_str": "252124548", "from_user_name": "Luis Haxel", "geo": null, "id": 148838482536710140, "id_str": "148838482536710145", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1654037127/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654037127/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @PeterSpanish82: Conclusiones intervenci\\u00F3n de Cayo Lara: la culpa es de Aznar, de Rajoy, del PP, del Neoliberalismo, del BCE, de USA, de la guerra de Irak", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:53 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148838481488125950, "id_str": "148838481488125952", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "LESBICA USA COND\\u00D3N,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:53 +0000", "from_user": "Borseit", "from_user_id": 166166050, "from_user_id_str": "166166050", "from_user_name": "Borse.it", "geo": null, "id": 148838479818792960, "id_str": "148838479818792960", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1076279515/Appunti0155_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1076279515/Appunti0155_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Usa: collocati titoli a 2 anni, bid-to-cover in calo a 3,45 http://t.co/epXMvfg3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:52 +0000", "from_user": "magonczoroski", "from_user_id": 215458081, "from_user_id_str": "215458081", "from_user_name": "Maura Gonczoroski", "geo": null, "id": 148838474684960770, "id_str": "148838474684960770", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1169458905/OgAAALqUVwK_bMJiO6X8ul1VZ7Tjn4Ha9bnhhKbRFPeAJkuD3p6HbUQIzrCzZfewTX2Fe2eGPPR0AKSeu0x4YG8N4PsAm1T1UANfZOvqU-40NIwL7tS-o34kLdrs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1169458905/OgAAALqUVwK_bMJiO6X8ul1VZ7Tjn4Ha9bnhhKbRFPeAJkuD3p6HbUQIzrCzZfewTX2Fe2eGPPR0AKSeu0x4YG8N4PsAm1T1UANfZOvqU-40NIwL7tS-o34kLdrs_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lucasfresno: E tu, que usa camiseta da @fresnorock e t\\u00E1 nem a\\u00ED, que vai aos shows, que FAZ O CORRE, saiba que ceis s\\u00E3o tudo UNS LHIND\\u00C3O.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:52 +0000", "from_user": "kudefopesux", "from_user_id": 433958369, "from_user_id_str": "433958369", "from_user_name": "Kajal Defraine", "geo": null, "id": 148838473799974900, "id_str": "148838473799974912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687659968/608_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687659968/608_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "loan administration consultants http://t.co/Sp1i1ny2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:51 +0000", "from_user": "_Adicta", "from_user_id": 123965194, "from_user_id_str": "123965194", "from_user_name": "La que hace spam.", "geo": null, "id": 148838469798608900, "id_str": "148838469798608896", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "JESUS USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:50 +0000", "from_user": "mahmoudfawzi88", "from_user_id": 210575980, "from_user_id_str": "210575980", "from_user_name": "mahmoud fawzi", "geo": null, "id": 148838467806306300, "id_str": "148838467806306304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1657974318/23570_1359471834108_1450892095_957685_1599495_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657974318/23570_1359471834108_1450892095_957685_1599495_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@samcaplat most of the competitions are for USA residents .. there are so many countries in the world \\nand they also know what android is", "to_user": "samcaplat", "to_user_id": 16822089, "to_user_id_str": "16822089", "to_user_name": "Sam Caplat"}, +{"created_at": "Mon, 19 Dec 2011 18:53:50 +0000", "from_user": "clare_sparkle", "from_user_id": 401608888, "from_user_id_str": "401608888", "from_user_name": "clare", "geo": null, "id": 148838465700769800, "id_str": "148838465700769793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1655830102/2011-11-01_15.21.28_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655830102/2011-11-01_15.21.28_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@mcshanectcub4 Hi How are you? Which part of the USA are you in?", "to_user": "mcshanectcub4", "to_user_id": 372439251, "to_user_id_str": "372439251", "to_user_name": "Mcshane Simpson", "in_reply_to_status_id": 148837366444994560, "in_reply_to_status_id_str": "148837366444994560"}, +{"created_at": "Mon, 19 Dec 2011 18:53:49 +0000", "from_user": "MAtoFreshDR", "from_user_id": 64929610, "from_user_id_str": "64929610", "from_user_name": "DAniiel Viiciioso", "geo": null, "id": 148838464467644400, "id_str": "148838464467644416", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1277708521/hector_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1277708521/hector_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@RubeElegante ESTUPIIIIDo !!! Tabamos Hablando Y TE Dije . K Tu Me conoce .. hahaha Deja Tu De Usa ESo", "to_user": "RubeElegante", "to_user_id": 325209797, "to_user_id_str": "325209797", "to_user_name": "Ruben Tejada C. ", "in_reply_to_status_id": 148838025156231170, "in_reply_to_status_id_str": "148838025156231168"}, +{"created_at": "Mon, 19 Dec 2011 18:53:49 +0000", "from_user": "Alexandercuw", "from_user_id": 431679136, "from_user_id_str": "431679136", "from_user_name": "Alexander Stobierski", "geo": null, "id": 148838463112871940, "id_str": "148838463112871936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680999292/large__569_Shopped_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680999292/large__569_Shopped_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "USA and Canada Regional add-on Pack for Microsoft Train Simulator: Travel the rails up and down North America in... http://t.co/CcKmWU1N", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:49 +0000", "from_user": "antigirassol", "from_user_id": 435242702, "from_user_id_str": "435242702", "from_user_name": "guerreiroantigirasso", "geo": null, "id": 148838461674225660, "id_str": "148838461674225664", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@depmanoeljunior como a URSS e os USA esqueceram as diferen\\u00E7as para lutar contra Hitler...", "to_user": "depmanoeljunior", "to_user_id": 163060933, "to_user_id_str": "163060933", "to_user_name": "Manoel Junior"}, +{"created_at": "Mon, 19 Dec 2011 18:53:47 +0000", "from_user": "Supermomo76", "from_user_id": 53529050, "from_user_id_str": "53529050", "from_user_name": "Moath ALManayes", "geo": null, "id": 148838456259387400, "id_str": "148838456259387392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1650505739/Superm1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650505739/Superm1_normal.png", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Hillary Clinton is my least favorite person in the United States #polite #usa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:45 +0000", "from_user": "mattputvinski", "from_user_id": 19396354, "from_user_id_str": "19396354", "from_user_name": "Matt Putvinski", "geo": null, "id": 148838447992406000, "id_str": "148838447992406017", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/80721594/putvinski_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/80721594/putvinski_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "FDIC Insights: Mobile Banking http://t.co/JYAC295W 25% of bank apps fail with account info on device #in", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:45 +0000", "from_user": "Jizzle_Ex", "from_user_id": 49620898, "from_user_id_str": "49620898", "from_user_name": "DJ Jizzle\\u2122", "geo": null, "id": 148838447703015420, "id_str": "148838447703015424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1656090959/DL_New__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656090959/DL_New__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Alaba..:| RT @TWEETORACLE The HQ of the #PORN industry in USA is ________?", "to_user": "TWEETORACLE", "to_user_id": 124971652, "to_user_id_str": "124971652", "to_user_name": "AURACOOL\\u2122", "in_reply_to_status_id": 148838247873773570, "in_reply_to_status_id_str": "148838247873773570"}, +{"created_at": "Mon, 19 Dec 2011 18:53:45 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148838447648481280, "id_str": "148838447648481280", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "YUBIRITSAIDA USA COND\\u00D3N,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:44 +0000", "from_user": "_Adicta", "from_user_id": 123965194, "from_user_id_str": "123965194", "from_user_name": "La que hace spam.", "geo": null, "id": 148838442049093630, "id_str": "148838442049093632", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "DISPARATE USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:43 +0000", "from_user": "ShopNaturesWay", "from_user_id": 389138657, "from_user_id_str": "389138657", "from_user_name": "ShopNaturesWay", "geo": null, "id": 148838439394086900, "id_str": "148838439394086913", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1583965706/image_for_twitter_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583965706/image_for_twitter_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Our products are green, cost effective and made in the USA. For more info http://t.co/pjxPV2hD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:42 +0000", "from_user": "anagornik", "from_user_id": 240025162, "from_user_id_str": "240025162", "from_user_name": "Ann", "geo": null, "id": 148838435623407600, "id_str": "148838435623407617", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1647646418/19717009_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647646418/19717009_normal.png", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:42 +0000", "from_user": "didacasa", "from_user_id": 255578052, "from_user_id_str": "255578052", "from_user_name": "Rajae ", "geo": null, "id": 148838433924722700, "id_str": "148838433924722688", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1648723941/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648723941/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Meurseault @houdac ce q je voulais dire c q votre d\\u00E9bat se pose aussi aux USA sur sondages d'opinions etc modalit\\u00E9s ...", "to_user": "Meurseault", "to_user_id": 138034042, "to_user_id_str": "138034042", "to_user_name": "L'Etranger", "in_reply_to_status_id": 148836762775588860, "in_reply_to_status_id_str": "148836762775588865"}, +{"created_at": "Mon, 19 Dec 2011 18:53:42 +0000", "from_user": "LocalGuysMover", "from_user_id": 101902292, "from_user_id_str": "101902292", "from_user_name": "Bruce Hensley MOVER", "geo": null, "id": 148838433845030900, "id_str": "148838433845030912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1647019656/318646_274821735873987_100000384872621_932606_1762691306_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647019656/318646_274821735873987_100000384872621_932606_1762691306_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#WNC ASHEVILLE HENDERSONVILLE #FOLLOW Tresa\\n@1972irishgem USA\\nLover of nature, animals, music, movies, books,", "to_user": "1972irishgem", "to_user_id": 370375201, "to_user_id_str": "370375201", "to_user_name": "Tresa"}, +{"created_at": "Mon, 19 Dec 2011 18:53:42 +0000", "from_user": "KaryGomesFF", "from_user_id": 261493957, "from_user_id_str": "261493957", "from_user_name": "Karyne Gomes", "geo": null, "id": 148838433312350200, "id_str": "148838433312350208", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685864821/SAM_0535_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685864821/SAM_0535_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Ainda tem gente que usa forms? q", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:42 +0000", "from_user": "Tickets_2012", "from_user_id": 288206633, "from_user_id_str": "288206633", "from_user_name": "Craig Jones", "geo": null, "id": 148838432960024580, "id_str": "148838432960024577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1326229934/avatarGIF_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1326229934/avatarGIF_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "COLLECTIVE BRANDS INC. : Team Sperry Athletes Qualify For London Olympics 2012: LEXINGTON, MA, USA (December 19,... http://t.co/pKzrfxh1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:42 +0000", "from_user": "rafagnb", "from_user_id": 233312766, "from_user_id_str": "233312766", "from_user_name": "rafinha ecko", "geo": null, "id": 148838432045674500, "id_str": "148838432045674496", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697712723/rafinha_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697712723/rafinha_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @LeonardoPedran: \"Imposs\\u00EDvel \\u00E9 uma palavra muito grande que gente pequena usa pra tentar te oprimir\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:41 +0000", "from_user": "pobyvicufe", "from_user_id": 433917575, "from_user_id_str": "433917575", "from_user_name": "Sumayya Leeds", "geo": null, "id": 148838428241428480, "id_str": "148838428241428480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687113553/73_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687113553/73_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "car insurance victoria cheapest http://t.co/0vTmIqVY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:40 +0000", "from_user": "ESSESGAYS", "from_user_id": 365010897, "from_user_id_str": "365010897", "from_user_name": "ESSES GAYS", "geo": null, "id": 148838427025088500, "id_str": "148838427025088513", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657383118/esponja-11_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657383118/esponja-11_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"como vc pode gostar de tatuagem e alargador? que coisa feia\" disse a pessoa que gosta de funk usa shortinho de 5cm e tem piercing no umbigo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:53:41 +0000", "from_user": "pobyvicufe", "from_user_id": 433917575, "from_user_id_str": "433917575", "from_user_name": "Sumayya Leeds", "geo": null, "id": 148838428241428480, "id_str": "148838428241428480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687113553/73_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687113553/73_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "car insurance victoria cheapest http://t.co/0vTmIqVY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:40 +0000", "from_user": "ESSESGAYS", "from_user_id": 365010897, "from_user_id_str": "365010897", "from_user_name": "ESSES GAYS", "geo": null, "id": 148838427025088500, "id_str": "148838427025088513", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657383118/esponja-11_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657383118/esponja-11_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"como vc pode gostar de tatuagem e alargador? que coisa feia\" disse a pessoa que gosta de funk usa shortinho de 5cm e tem piercing no umbigo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:40 +0000", "from_user": "libertyladyusa", "from_user_id": 212302405, "from_user_id_str": "212302405", "from_user_name": "~~ Lady Liberty ~~", "geo": null, "id": 148838426966376450, "id_str": "148838426966376448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699502631/santa_girl_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699502631/santa_girl_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#4EVER #USA ~ @hipEchik ~ #MilitaryMonday :)", "to_user": "hipEchik", "to_user_id": 22643800, "to_user_id_str": "22643800", "to_user_name": "Teri Peters", "in_reply_to_status_id": 148838009821859840, "in_reply_to_status_id_str": "148838009821859841"}, +{"created_at": "Mon, 19 Dec 2011 18:53:40 +0000", "from_user": "tiagogolves", "from_user_id": 15599984, "from_user_id_str": "15599984", "from_user_name": "Tiago Golves", "geo": null, "id": 148838424953106430, "id_str": "148838424953106433", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681151855/Avatar_TWT_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681151855/Avatar_TWT_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@msuconic olha q bem cotada, ahazou... bom trabalho usa casaco de pele esta noite kkkkkkkkkkk", "to_user": "msuconic", "to_user_id": 43928397, "to_user_id_str": "43928397", "to_user_name": "Maria Eug\\u00EAnia ", "in_reply_to_status_id": 148837883946598400, "in_reply_to_status_id_str": "148837883946598400"}, +{"created_at": "Mon, 19 Dec 2011 18:53:40 +0000", "from_user": "LuceimyQ", "from_user_id": 343459552, "from_user_id_str": "343459552", "from_user_name": "LuceimyQuinteroJB\\u2665 ", "geo": null, "id": 148838424135217150, "id_str": "148838424135217152", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695533651/kgfkdjjfkjdj_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695533651/kgfkdjjfkjdj_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"Inmadurez\" t\\u00E9rmino que usa la gente aburridas para describir a las personas DIVERTIDAS. xD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:40 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148838423791276030, "id_str": "148838423791276033", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "ANA USA COND\\u00D3N,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:39 +0000", "from_user": "circotimia_", "from_user_id": 221610474, "from_user_id_str": "221610474", "from_user_name": "M a i t e\\u10E6. ", "geo": null, "id": 148838422956621820, "id_str": "148838422956621824", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698350821/jjo__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698350821/jjo__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "LUISANA USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:39 +0000", "from_user": "igordevasconcel", "from_user_id": 329665199, "from_user_id_str": "329665199", "from_user_name": "Igor de Vasconcelos", "geo": null, "id": 148838421278887940, "id_str": "148838421278887937", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1557597574/IGOR___12_anos___________reasonably_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1557597574/IGOR___12_anos___________reasonably_small_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@LeehCheese eu acredito que nesse ano n\\u00E3o tera a vers\\u00E3o usa, s\\u00F3 em janeiro ou fevereiro", "to_user": "LeehCheese", "to_user_id": 42685435, "to_user_id_str": "42685435", "to_user_name": "#LeehCheese\\u2019s"}, +{"created_at": "Mon, 19 Dec 2011 18:53:39 +0000", "from_user": "csikinemdar1977", "from_user_id": 353213338, "from_user_id_str": "353213338", "from_user_name": "csikinemdar1977", "geo": null, "id": 148838419253039100, "id_str": "148838419253039104", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Nikon lens grey market usa http://t.co/zhrc5G5p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:38 +0000", "from_user": "ramonssilveira", "from_user_id": 56372027, "from_user_id_str": "56372027", "from_user_name": "Ramon Silveira\\u2122", "geo": +{"coordinates": [-20.7612,-42.8818], "type": "Point"}, "id": 148838416665165820, "id_str": "148838416665165824", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1676628619/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676628619/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@_leoMachado voc\\u00EA n\\u00E3o usa chinelo porque \\u00E9 um bbk, tem nada de normal a\\u00ED -.- #149", "to_user": "_leoMachado", "to_user_id": 56384747, "to_user_id_str": "56384747", "to_user_name": "Leo Machado :)", "in_reply_to_status_id": 148837955232989200, "in_reply_to_status_id_str": "148837955232989184"}, +{"created_at": "Mon, 19 Dec 2011 18:53:38 +0000", "from_user": "naji1907", "from_user_id": 388389565, "from_user_id_str": "388389565", "from_user_name": "Majed Isa", "geo": null, "id": 148838416480600060, "id_str": "148838416480600066", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682516492/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682516492/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SAIDYOUSIF: #Amnesty International calls on the immediate release of Zainab al-Khawaja in #Bahrain http://t.co/wIC63ymq\\n#Humanrights\\n#HRW\\n#USA\\n#US\\n#UN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:38 +0000", "from_user": "dominevoymash", "from_user_id": 319660924, "from_user_id_str": "319660924", "from_user_name": "Dominick Evoy", "geo": null, "id": 148838416405118980, "id_str": "148838416405118977", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Are Americans crazy for treating our pets like kids? - USA Today", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:37 +0000", "from_user": "zomowig", "from_user_id": 433534186, "from_user_id_str": "433534186", "from_user_name": "Badru Lyndon", "geo": null, "id": 148838412869312500, "id_str": "148838412869312513", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1685488320/986_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685488320/986_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @nameqix: utica auto insurance http://t.co/4UfBtd6A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:37 +0000", "from_user": "rosapadrondc", "from_user_id": 278239388, "from_user_id_str": "278239388", "from_user_name": "Rosa Padron", "geo": null, "id": 148838411904622600, "id_str": "148838411904622592", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1330567401/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1330567401/image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "#Facebook ya se usa m\\u00E1s en #Android que en #iPhone http://t.co/Phkl7dJR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:36 +0000", "from_user": "lahisrocha", "from_user_id": 65673814, "from_user_id_str": "65673814", "from_user_name": "L\\u00E1", "geo": null, "id": 148838409299951600, "id_str": "148838409299951617", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681121393/306921_171294009616811_100002086395648_355358_155763387_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681121393/306921_171294009616811_100002086395648_355358_155763387_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:36 +0000", "from_user": "lovelyxcoeur", "from_user_id": 339930735, "from_user_id_str": "339930735", "from_user_name": "Alegria Amada", "geo": null, "id": 148838408196861950, "id_str": "148838408196861953", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695474013/tumblr_lp88v2iExq1qksu2eo1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695474013/tumblr_lp88v2iExq1qksu2eo1_500_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "gente que usa o facebook como pensador uol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:36 +0000", "from_user": "yoopino_dtodo", "from_user_id": 430341259, "from_user_id_str": "430341259", "from_user_name": "yoopino_dtodo", "geo": null, "id": 148838407441891330, "id_str": "148838407441891328", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1678219611/Dibujo_11_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678219611/Dibujo_11_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @WenaChile: Como nos ESQUILMAN con el Impuesto Espec\\u00EDfico a la Gasolina. Vale el doble que en USA 45% del precio son impuestos DIFUNDIR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:35 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148838405269241860, "id_str": "148838405269241856", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "JESSICA USA COND\\u00D3N,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:35 +0000", "from_user": "SanAntonioValue", "from_user_id": 405741878, "from_user_id_str": "405741878", "from_user_name": "San Antonio Values", "geo": null, "id": 148838404715581440, "id_str": "148838404715581440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1624113762/SA_Background_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624113762/SA_Background_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "50 percent-off is not a discount. have a look at these, 80% off... http://t.co/8QvEAr1G", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:35 +0000", "from_user": "JoelmaQueen", "from_user_id": 52262980, "from_user_id_str": "52262980", "from_user_name": "MendeSarraff \\u00AE", "geo": null, "id": 148838403729915900, "id_str": "148838403729915904", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697142471/3-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697142471/3-2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SheilaSabino: Aham.. KKKKKKKKKKKKKKK' S\\u00F3 porque a gente sabe a linha de xamp\\u00FA que a mam\\u00E3e usa *-*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:35 +0000", "from_user": "laprimeradepue", "from_user_id": 15232524, "from_user_id_str": "15232524", "from_user_name": "La Primera de Puebla", "geo": null, "id": 148838402995925000, "id_str": "148838402995924993", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1676401784/avatar_navideno_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676401784/avatar_navideno_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Facebook se usa m\\u00E1s desde Android que desde los iPhone http://t.co/4jq0A2Wl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:34 +0000", "from_user": "hakeandapedrosa", "from_user_id": 324053700, "from_user_id_str": "324053700", "from_user_name": "Hakeanda Pedrosa", "geo": null, "id": 148838401431453700, "id_str": "148838401431453696", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1497124896/Homer-Rock-and-Roll_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1497124896/Homer-Rock-and-Roll_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Por que voc\\u00EA usa sua voz para confundir as pessoas ? Eu s\\u00F3 queria ajudar a ajuda-lo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:34 +0000", "from_user": "PiratellaO", "from_user_id": 92910615, "from_user_id_str": "92910615", "from_user_name": "Ella M\\u00FCnster", "geo": null, "id": 148838399690805250, "id_str": "148838399690805249", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693260162/n722615343_6867991_2357262_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693260162/n722615343_6867991_2357262_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@annlee_an Quiero verte a ti y a @OliverLongoria, pero donde sirvan tragos r\\u00E1pido para poder probar todos los Homeless de USA.", "to_user": "annlee_an", "to_user_id": 36514208, "to_user_id_str": "36514208", "to_user_name": "anabel jimenez", "in_reply_to_status_id": 148837875314733060, "in_reply_to_status_id_str": "148837875314733057"}, +{"created_at": "Mon, 19 Dec 2011 18:53:34 +0000", "from_user": "tomheston", "from_user_id": 21013461, "from_user_id_str": "21013461", "from_user_name": "Tom Heston \\u2714", "geo": null, "id": 148838398814203900, "id_str": "148838398814203905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1666443880/tom_headshot_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666443880/tom_headshot_normal.jpeg", "source": "<a href="http://www.suitebird.com" rel="nofollow">SuiteBird</a>", "text": "High court on Obama health law: March 26-28 - USA Today http://t.co/E1AI2lAz #health", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:32 +0000", "from_user": "cazkeith", "from_user_id": 150355167, "from_user_id_str": "150355167", "from_user_name": "Carolyn Keith", "geo": null, "id": 148838393462267900, "id_str": "148838393462267904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1411105504/IMG00148-20110622-1349_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1411105504/IMG00148-20110622-1349_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Needs some advice from my twitter friends, going on hols to USA next week, want to take my BB but worried about incurring large costs??", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:32 +0000", "from_user": "delia2727", "from_user_id": 161046659, "from_user_id_str": "161046659", "from_user_name": "delia.castillos", "geo": null, "id": 148838393353224200, "id_str": "148838393353224192", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1507986468/tn_giselebundchen040ca_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1507986468/tn_giselebundchen040ca_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@noticiascomjoao WOOOOO YO NI ENTERADA JAJAJAJAJA ESTOY EN USA Y NO TENGO IDEA DE LO QUE PASA AFUERA JAJAJAJAJA", "to_user": "noticiascomjoao", "to_user_id": 192618309, "to_user_id_str": "192618309", "to_user_name": "Jo\\u00E3o Rodrigues", "in_reply_to_status_id": 148837679482683400, "in_reply_to_status_id_str": "148837679482683392"}, +{"created_at": "Mon, 19 Dec 2011 18:53:32 +0000", "from_user": "AmishJack", "from_user_id": 213772971, "from_user_id_str": "213772971", "from_user_name": "Amish Jack", "geo": null, "id": 148838390131998720, "id_str": "148838390131998720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1163451224/JackMyer_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1163451224/JackMyer_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Forget $Europe$........we're here in the great USA - http://t.co/C30Dm5n8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:32 +0000", "from_user": "Migdaliabkh", "from_user_id": 431686026, "from_user_id_str": "431686026", "from_user_name": "Migdalia Werger", "geo": null, "id": 148838389557362700, "id_str": "148838389557362688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681002388/beqy4nbzgd_124492350-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681002388/beqy4nbzgd_124492350-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "It's All About Holly White USA Flag / Checker Racing Hat / Baseball Cap: T-ShirtFrenzy offers over 30,000 design... http://t.co/nJ9fQjMb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:31 +0000", "from_user": "FAT_13", "from_user_id": 162119281, "from_user_id_str": "162119281", "from_user_name": "Felipe Rosa", "geo": null, "id": 148838387531526140, "id_str": "148838387531526144", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1330766701/P280411_17.24_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1330766701/P280411_17.24_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "um amigo disse q leu um tweet meo dizendo q eu tava acordando as 5:30 da manha pra ir jurar a bandeira... esse guri tem q para d usa droga", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:31 +0000", "from_user": "VocalistCDs", "from_user_id": 362965315, "from_user_id_str": "362965315", "from_user_name": "Richard Floyd", "geo": null, "id": 148838387388923900, "id_str": "148838387388923904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1515591702/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515591702/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #1101 Quiet Christmas $11.16: Acclaimed jazz pianist, Beegie Adair, performs her favorite Christmas ... http://t.co/5iPHsY21", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:31 +0000", "from_user": "VocalistCDs", "from_user_id": 362965315, "from_user_id_str": "362965315", "from_user_name": "Richard Floyd", "geo": null, "id": 148838386499727360, "id_str": "148838386499727361", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1515591702/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515591702/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #588 Greatest Hits Doris Day $6.82: B0012GMUXQ http://t.co/55PbN97F", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:31 +0000", "from_user": "andre1496", "from_user_id": 267303686, "from_user_id_str": "267303686", "from_user_name": "andre", "geo": null, "id": 148838385501474800, "id_str": "148838385501474816", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1276039991/Rise_Against_-_Ready_To_Fall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1276039991/Rise_Against_-_Ready_To_Fall_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@tomdelonge canta como antesss!!!!usa las guitarras fender", "to_user": "tomdelonge", "to_user_id": 22060294, "to_user_id_str": "22060294", "to_user_name": "Tom DeLonge"}, +{"created_at": "Mon, 19 Dec 2011 18:53:30 +0000", "from_user": "VocalistCDs", "from_user_id": 362965315, "from_user_id_str": "362965315", "from_user_name": "Richard Floyd", "geo": null, "id": 148838385300152320, "id_str": "148838385300152320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1515591702/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515591702/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #831 Soul Christmas Various Artists $9.09: B000002IS4 http://t.co/vIlwoJSE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:30 +0000", "from_user": "VocalistCDs", "from_user_id": 362965315, "from_user_id_str": "362965315", "from_user_name": "Richard Floyd", "geo": null, "id": 148838383974748160, "id_str": "148838383974748161", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1515591702/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515591702/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #3937 I Told You I Was Trouble: Amy Winehouse Live From London $10.62: Already hailed as one of the ... http://t.co/8fYQXW9b", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:30 +0000", "from_user": "Niallerement", "from_user_id": 257933726, "from_user_id_str": "257933726", "from_user_name": "Voodoo Child", "geo": null, "id": 148838383249145860, "id_str": "148838383249145856", "iso_language_code": "vi", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702602473/tumblr_lwfsj1RjHi1qijcxeo1_250_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702602473/tumblr_lwfsj1RjHi1qijcxeo1_250_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Photo: http://t.co/AQo17laV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:30 +0000", "from_user": "VocalistCDs", "from_user_id": 362965315, "from_user_id_str": "362965315", "from_user_name": "Richard Floyd", "geo": null, "id": 148838382729052160, "id_str": "148838382729052162", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1515591702/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515591702/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #647 Dino: The Essential Dean Martin Dean Martin $11.89: THE PLATINUM CERTIFIED DINO: THE ESSENTIAL ... http://t.co/SNlZC637", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:30 +0000", "from_user": "UpliftingWoman", "from_user_id": 87207547, "from_user_id_str": "87207547", "from_user_name": "Sherry Dion", "geo": null, "id": 148838382334775300, "id_str": "148838382334775296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/599764282/twitter_photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/599764282/twitter_photo_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @profchandler: I think what happened to banking mortgages & real estate in USA is something like a horror flick except the victims bleed internally", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:30 +0000", "from_user": "Felipaqdz", "from_user_id": 431728730, "from_user_id_str": "431728730", "from_user_name": "Felipa Heyer", "geo": null, "id": 148838381193924600, "id_str": "148838381193924608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681093031/large_club_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681093031/large_club_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Lovan Legacy Series Glass Shelf Audio Rack in Silver Finish: Product Features: One Tier, four 10\" Posts One 10... http://t.co/uwLlF9SR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:29 +0000", "from_user": "NekoAn", "from_user_id": 43007351, "from_user_id_str": "43007351", "from_user_name": "Neko Anhon", "geo": null, "id": 148838380233433100, "id_str": "148838380233433088", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/254817265/foto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/254817265/foto_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:29 +0000", "from_user": "FranRubal", "from_user_id": 421822749, "from_user_id_str": "421822749", "from_user_name": "Fran Rubal", "geo": null, "id": 148838379679780860, "id_str": "148838379679780864", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1658707801/Pixar-3Luxo_Jr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658707801/Pixar-3Luxo_Jr_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@swito74 Una semana mas tarde que en USA. Puta Warner...", "to_user": "swito74", "to_user_id": 71240484, "to_user_id_str": "71240484", "to_user_name": "SWiTo", "in_reply_to_status_id": 148837602886303740, "in_reply_to_status_id_str": "148837602886303744"}, +{"created_at": "Mon, 19 Dec 2011 18:53:29 +0000", "from_user": "_amandspure", "from_user_id": 173503843, "from_user_id_str": "173503843", "from_user_name": "Amanda Guimar\\u00E3es", "geo": null, "id": 148838377922379780, "id_str": "148838377922379776", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1567444194/DSC01403_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1567444194/DSC01403_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@fuckoffmarco ah, fica quieto meu. Voce usa PEROBA de hidratante e quer dar uma de t\\u00EDmido? MANDA QUEIA MAICO, MANDA SAUDADE MAICO", "to_user": "fuckoffmarco", "to_user_id": 70287350, "to_user_id_str": "70287350", "to_user_name": "Marco Kuttner", "in_reply_to_status_id": 148832837645254660, "in_reply_to_status_id_str": "148832837645254656"}, +{"created_at": "Mon, 19 Dec 2011 18:53:28 +0000", "from_user": "Santisanfe", "from_user_id": 389685043, "from_user_id_str": "389685043", "from_user_name": "Santi", "geo": null, "id": 148838374436913150, "id_str": "148838374436913153", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@SimonCowell simon, i couldn\\u00B4t be at the x factor because i dont live in USA , so i make videos and upload them to yutbe.....", "to_user": "SimonCowell", "to_user_id": 413487212, "to_user_id_str": "413487212", "to_user_name": "Simon Cowell"}, +{"created_at": "Mon, 19 Dec 2011 18:53:27 +0000", "from_user": "DanceDJCDs", "from_user_id": 363528662, "from_user_id_str": "363528662", "from_user_name": "Richard Floyd", "geo": null, "id": 148838372687880200, "id_str": "148838372687880192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1517050823/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517050823/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #1817 A Feast of Songs: Holiday Music from the Middle Ages $11.49: A Feast of Songs is a lively coll... http://t.co/XhLiGNpm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:27 +0000", "from_user": "kapahewugab", "from_user_id": 433442403, "from_user_id_str": "433442403", "from_user_name": "Baharak Matthias", "geo": null, "id": 148838371970658300, "id_str": "148838371970658305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685273793/545_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685273793/545_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @gaduhypyc: car rental insurance not http://t.co/x9GhM7S6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:27 +0000", "from_user": "MissHereja", "from_user_id": 18064120, "from_user_id_str": "18064120", "from_user_name": "V.", "geo": null, "id": 148838370368421900, "id_str": "148838370368421889", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690282028/screenshot.1323443685_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690282028/screenshot.1323443685_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@MemoCarcamo Es que se me hace que la gente la usa cuando quiere ser sarc\\u00E1stica, no s\\u00E9, no la soporto.", "to_user": "MemoCarcamo", "to_user_id": 53800063, "to_user_id_str": "53800063", "to_user_name": "Guillermo C\\u00E1rcamo", "in_reply_to_status_id": 148837563577278460, "in_reply_to_status_id_str": "148837563577278464"}, +{"created_at": "Mon, 19 Dec 2011 18:53:27 +0000", "from_user": "DanceDJCDs", "from_user_id": 363528662, "from_user_id_str": "363528662", "from_user_name": "Richard Floyd", "geo": null, "id": 148838369634426880, "id_str": "148838369634426881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1517050823/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517050823/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #619 Body Talk [Explicit] [+Digital Booklet] $7.99: B004BLO172 http://t.co/xFfSIgzy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:27 +0000", "from_user": "Belieber24hrs", "from_user_id": 145807973, "from_user_id_str": "145807973", "from_user_name": "Brubs do Biebs", "geo": null, "id": 148838369093353470, "id_str": "148838369093353474", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1694950182/anigifC_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694950182/anigifC_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @JBperfo: @Belieber24hrs usa? BRAZIL NEED'S JUSTIN Parab\\u00E9\\u00E9ns!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:26 +0000", "from_user": "DanceDJCDs", "from_user_id": 363528662, "from_user_id_str": "363528662", "from_user_name": "Richard Floyd", "geo": null, "id": 148838368208367600, "id_str": "148838368208367616", "iso_language_code": "hu", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1517050823/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517050823/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #525 Sbtrkt $5.99: B0054LRR3S http://t.co/YwdNul2h", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:26 +0000", "from_user": "DanceDJCDs", "from_user_id": 363528662, "from_user_id_str": "363528662", "from_user_name": "Richard Floyd", "geo": null, "id": 148838365612081150, "id_str": "148838365612081152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1517050823/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517050823/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #533 Getdarker Presents This Is Dubstep 3 $7.99: B0041WUHEW http://t.co/BuyaOeQf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:25 +0000", "from_user": "DanceDJCDs", "from_user_id": 363528662, "from_user_id_str": "363528662", "from_user_name": "Richard Floyd", "geo": null, "id": 148838364299264000, "id_str": "148838364299264000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1517050823/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517050823/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #446 Fire & Ice $7.99: B005ZG5DF6 http://t.co/tCpgexzF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:25 +0000", "from_user": "Promo4Kaijzer", "from_user_id": 345445536, "from_user_id_str": "345445536", "from_user_name": "Paul Pepper", "geo": null, "id": 148838363816935420, "id_str": "148838363816935425", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1469442433/8460720-red-heart_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1469442433/8460720-red-heart_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#TeamFollowBack Christian Science MonitorDespite Southwest blizzard, hope of white Christma... http://t.co/eq6QZgus #Autofollow @Kaijzer", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:25 +0000", "from_user": "Mitchell_AC", "from_user_id": 57022311, "from_user_id_str": "57022311", "from_user_name": "Mit", "geo": null, "id": 148838361912713200, "id_str": "148838361912713216", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1084331435/649714Bloody_Iori_by_Melkhior_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1084331435/649714Bloody_Iori_by_Melkhior_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "esa bitch llego de usa mas gorda de lo que recordaba, me imagino como le huele!! y me vomito", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:25 +0000", "from_user": "TopTenCamera", "from_user_id": 295001947, "from_user_id_str": "295001947", "from_user_name": "Richard Floyd", "geo": null, "id": 148838360503431170, "id_str": "148838360503431168", "iso_language_code": "hu", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1482676485/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1482676485/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #57 GoPro HD Helmet Hero $239.99: http://t.co/QaYvYOBC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:24 +0000", "from_user": "EXILE43", "from_user_id": 424898510, "from_user_id_str": "424898510", "from_user_name": "EXILE\\u30D5\\u30A1\\u30F3", "geo": null, "id": 148838359685541900, "id_str": "148838359685541888", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1666176286/images_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666176286/images_normal.jpeg", "source": "<a href="http://bit.ly/sSjsT0" rel="nofollow">\\u3048\\u3050\\u3056\\u3044\\u308B\\u30FB\\u306D\\u3063\\u3068</a>", "text": "\\u3010USA\\u30FB\\u6765\\u6B741\\u30111977\\u5E742\\u67082\\u65E5\\u3001\\u795E\\u5948\\u5DDD\\u770C\\u6A2A\\u6D5C\\u5E02\\u306B\\u751F\\u307E\\u308C\\u308B\\u30021994\\u5E74\\u3001MATSU\\u3001MAKIDAI\\u3068\\u5171\\u306B\\u300CBABY NAIL\\u300D\\u3092\\u7D50\\u6210\\u30021998\\u5E74\\u30C0\\u30F3\\u30B9\\u30E6\\u30CB\\u30C3\\u30C8\\u300CJAPANESE SOUL BROTHERS\\u300D\\u306B\\u52A0\\u5165\\u3002\\u2026", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:24 +0000", "from_user": "ProjectKaijzer", "from_user_id": 363317890, "from_user_id_str": "363317890", "from_user_name": "Kaijzer Tavic", "geo": null, "id": 148838359349997570, "id_str": "148838359349997568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1516458024/mrgreen_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1516458024/mrgreen_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Autofollow @Kaijzer Christian Science MonitorDespite Southwest blizzard, hope of white Chris... http://t.co/enf93rfi @Klarsyn #TFB #IFB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:24 +0000", "from_user": "jobiwaho", "from_user_id": 433325866, "from_user_id_str": "433325866", "from_user_name": "Muzhdah Kenwrick", "geo": null, "id": 148838359043817470, "id_str": "148838359043817472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684945147/1151_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684945147/1151_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @cylytojuhed: more than car insurance discount codes http://t.co/w7I6Fpy8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:24 +0000", "from_user": "Underdog_Ciel", "from_user_id": 402191464, "from_user_id_str": "402191464", "from_user_name": "Ciel Phantomhive", "geo": null, "id": 148838358922170370, "id_str": "148838358922170371", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702009761/Underdog_Ciel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702009761/Underdog_Ciel_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@SebxCiel Ahh...lucky...*nods head* Only time I left the USA was to Canada..*he chuckles* Not a plane person..*shivers*", "to_user": "SebxCiel", "to_user_id": 384652418, "to_user_id_str": "384652418", "to_user_name": "SebxCiel", "in_reply_to_status_id": 148837520313036800, "in_reply_to_status_id_str": "148837520313036800"}, +{"created_at": "Mon, 19 Dec 2011 18:53:24 +0000", "from_user": "OperaSongs", "from_user_id": 359369707, "from_user_id_str": "359369707", "from_user_name": "Richard Floyd", "geo": null, "id": 148838358095892480, "id_str": "148838358095892480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1506496349/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1506496349/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #4860 For Good: Kristin Chenoweth $0.99 Decca Broadway http://t.co/hlHZS114", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:24 +0000", "from_user": "OperaSongs", "from_user_id": 359369707, "from_user_id_str": "359369707", "from_user_name": "Richard Floyd", "geo": null, "id": 148838356707590140, "id_str": "148838356707590144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1506496349/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1506496349/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #17159 Sing We Now of Christmas: Tennessee Ernie Ford $0.99 Red Door Productions http://t.co/XmWuf34y", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:23 +0000", "from_user": "_jdsousa", "from_user_id": 163203062, "from_user_id_str": "163203062", "from_user_name": "Je\\u0455\\u0455\\u03B9c\\u03B1 te ama.", "geo": null, "id": 148838355713536000, "id_str": "148838355713536000", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677581710/312017_1877528636998_1804727270_1296375_415792567_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677581710/312017_1877528636998_1804727270_1296375_415792567_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Todos conocemos a alguien que tiene Twitter y no lo usa.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:23 +0000", "from_user": "HardryTellez", "from_user_id": 257638804, "from_user_id_str": "257638804", "from_user_name": "Hardry Tellez", "geo": null, "id": 148838355549958140, "id_str": "148838355549958145", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686289988/JIJ2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686289988/JIJ2_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: El verbo \"Fritar\" es aceptado por la Real Academia Espa\\u00F1ola, se usa al igual que el verbo \"Fre\\u00EDr\" y se conjuga como \"Quitar\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:23 +0000", "from_user": "lvidinha", "from_user_id": 30175665, "from_user_id_str": "30175665", "from_user_name": "Lindsey Vidinha", "geo": null, "id": 148838353738018800, "id_str": "148838353738018816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1657999533/IMG01005-20111123-2112_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657999533/IMG01005-20111123-2112_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @grownupbutnot: ummmm, excuse me criminal intent, but the USA network is reserved specifically for SVU #getouttahere", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:23 +0000", "from_user": "OperaSongs", "from_user_id": 359369707, "from_user_id_str": "359369707", "from_user_name": "Richard Floyd", "geo": null, "id": 148838352836235260, "id_str": "148838352836235264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1506496349/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1506496349/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #17858 I Never Lost My Praise: The Brooklyn Tabernacle Choir $0.99 Integrity/Columbia http://t.co/8bZWImAu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:22 +0000", "from_user": "OperaSongs", "from_user_id": 359369707, "from_user_id_str": "359369707", "from_user_name": "Richard Floyd", "geo": null, "id": 148838351674425340, "id_str": "148838351674425344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1506496349/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1506496349/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #6155 MacArthur Park: Richard Harris $0.99 Geffen http://t.co/WHqWlCei", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:22 +0000", "from_user": "SimonsBitzer", "from_user_id": 113471605, "from_user_id_str": "113471605", "from_user_name": "Simons Bitzer ", "geo": null, "id": 148838349849903100, "id_str": "148838349849903104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/690209344/logo_outlined_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/690209344/logo_outlined_normal.png", "source": "<a href="http://app.measuredvoice.com/" rel="nofollow">Measured Voice</a>", "text": "RT @IRSnews: Good records can save small businesses money at tax time. Learn what to keep and how to keep them. http://t.co/Yq2mWu3q #IRS taxes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:22 +0000", "from_user": "OperaSongs", "from_user_id": 359369707, "from_user_id_str": "359369707", "from_user_name": "Richard Floyd", "geo": null, "id": 148838349644378100, "id_str": "148838349644378113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1506496349/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1506496349/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #94053 What Child Is This?: Robert Shaw & Robert Shaw Chamber Singers/Christopher Cock/Victor Ledbett... http://t.co/uxFV8Y66", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:22 +0000", "from_user": "WeLoveKaijzer", "from_user_id": 353919927, "from_user_id_str": "353919927", "from_user_name": "Palle Kuling", "geo": null, "id": 148838347769528320, "id_str": "148838347769528320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1492125286/Scream-icon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1492125286/Scream-icon_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Autofollow Christian Science MonitorDespite Southwest blizzard, hope of white Christmas fades for... http://t.co/UjBOefDU #TFB @Kaijzer", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:21 +0000", "from_user": "Rradiodh", "from_user_id": 278245779, "from_user_id_str": "278245779", "from_user_name": "David \\u05D3\\u05D5\\u05D3 \\u05D4\\u05D5\\u05E8\\u05DF", "geo": null, "id": 148838347077451780, "id_str": "148838347077451777", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687619396/mask_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687619396/mask_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Hamas High School in #Florida? #USA #Israel\\nhttp://t.co/BKV9ltMg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:21 +0000", "from_user": "JuiceboxJewels", "from_user_id": 336822225, "from_user_id_str": "336822225", "from_user_name": "Juicebox Jewels", "geo": null, "id": 148838344929976320, "id_str": "148838344929976321", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1446107277/smalljbj_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1446107277/smalljbj_normal.JPG", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "CLIP ON Brown Dark wood Gold Stardust 3\" Hoop Earrings Basketball wives(C268)USA http://t.co/9wIMFx6x", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:21 +0000", "from_user": "iMercyLove", "from_user_id": 239579163, "from_user_id_str": "239579163", "from_user_name": "Mercy \\u2665", "geo": null, "id": 148838344112095230, "id_str": "148838344112095234", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1596840071/m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596840071/m_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@LatinAmericaJDB hahaha (: pero el fin, tu quieres vivir en Canad\\u00E1 o USA (:", "to_user": "LatinAmericaJDB", "to_user_id": 174850101, "to_user_id_str": "174850101", "to_user_name": "\\u1D1C\\u0274\\u1D05\\u1D07\\u0280 \\u1D1B\\u029C\\u1D07 \\u1D0D\\u0131s\\u1D1B\\u029F\\u1D07\\u1D1Bo\\u1D07", "in_reply_to_status_id": 148836560421404670, "in_reply_to_status_id_str": "148836560421404672"}, +{"created_at": "Mon, 19 Dec 2011 18:53:21 +0000", "from_user": "dezpierceirun", "from_user_id": 198675487, "from_user_id_str": "198675487", "from_user_name": "Desmond Pierce", "geo": null, "id": 148838343952707600, "id_str": "148838343952707584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701260425/dezpierceirun_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701260425/dezpierceirun_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@maggiekicks welcome! I ran the 800 at USA juniors this past year and saw u run! Hope u make the Olympics next summer!", "to_user": "maggiekicks", "to_user_id": 221394224, "to_user_id_str": "221394224", "to_user_name": "Maggie Vessey", "in_reply_to_status_id": 148807236788031500, "in_reply_to_status_id_str": "148807236788031488"}, +{"created_at": "Mon, 19 Dec 2011 18:53:20 +0000", "from_user": "JaydenOrr", "from_user_id": 331591130, "from_user_id_str": "331591130", "from_user_name": "Jayden Orr", "geo": null, "id": 148838342979620860, "id_str": "148838342979620866", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1432172361/PAUL_WEASLY_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1432172361/PAUL_WEASLY_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Despite Southwest blizzard, hope of white Christmas fades for much of US - Christian Science Monitor: Christian ... http://t.co/GaqLVvBy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:20 +0000", "from_user": "Soundtracks1", "from_user_id": 286127553, "from_user_id_str": "286127553", "from_user_name": "Richard Floyd", "geo": null, "id": 148838342878957570, "id_str": "148838342878957569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1409079887/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1409079887/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #255 Drive (Original Motion Picture Soundtrack): Various Artists $7.99 Lakeshore Records http://t.co/YuB6yWnc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:20 +0000", "from_user": "Soundtracks1", "from_user_id": 286127553, "from_user_id_str": "286127553", "from_user_name": "Richard Floyd", "geo": null, "id": 148838341612285950, "id_str": "148838341612285952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1409079887/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1409079887/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #1054 Rio: Music From The Motion Picture: Various Artists $9.99 Will I Am http://t.co/Oa6uc9dm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:20 +0000", "from_user": "lacarsrepo", "from_user_id": 30121979, "from_user_id_str": "30121979", "from_user_name": "La Cars Repo Inc.", "geo": null, "id": 148838341033472000, "id_str": "148838341033472001", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/321786125/my_picture_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/321786125/my_picture_3_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Stephen Cannon Named Mercedes-Benz USA President and CEO: Cannon will have overall responsibility for the Merced... http://t.co/o5V76e8q", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:20 +0000", "from_user": "Soundtracks1", "from_user_id": 286127553, "from_user_id_str": "286127553", "from_user_name": "Richard Floyd", "geo": null, "id": 148838340412715000, "id_str": "148838340412715008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1409079887/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1409079887/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #3953 The Lord of the Rings Symphony: Howard Shore $8.99 HOWE records http://t.co/JGjmYsXM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:20 +0000", "from_user": "slayerizedcarol", "from_user_id": 146737544, "from_user_id_str": "146737544", "from_user_name": "Carol", "geo": null, "id": 148838339687100400, "id_str": "148838339687100416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1642965370/darkthrone-festivehodsmal_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642965370/darkthrone-festivehodsmal_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@Archaenon is it the green usa one? :) i liked those when i quickly saw them", "to_user": "Archaenon", "to_user_id": 755711, "to_user_id_str": "755711", "to_user_name": "eg.", "in_reply_to_status_id": 148838052767338500, "in_reply_to_status_id_str": "148838052767338498"}, +{"created_at": "Mon, 19 Dec 2011 18:53:19 +0000", "from_user": "Soundtracks1", "from_user_id": 286127553, "from_user_id_str": "286127553", "from_user_name": "Richard Floyd", "geo": null, "id": 148838339016015870, "id_str": "148838339016015872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1409079887/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1409079887/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #1553 Rocky Balboa: The Best Of Rocky: Various Artists $6.99 Capitol http://t.co/GyO7zmSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:19 +0000", "from_user": "soyrevilla", "from_user_id": 305136649, "from_user_id_str": "305136649", "from_user_name": "Sam Dallas", "geo": null, "id": 148838338948907000, "id_str": "148838338948907008", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1628197700/Picture0004_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628197700/Picture0004_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Kie_chan_Benton \"Como escapar de Glenn en 2 pasos por Dankie\" Irse a USA y volverse cerdilla capitalista. #HOYGAMES", "to_user": "Kie_chan_Benton", "to_user_id": 258541773, "to_user_id_str": "258541773", "to_user_name": "Kie Benton", "in_reply_to_status_id": 148837625011253250, "in_reply_to_status_id_str": "148837625011253248"}, +{"created_at": "Mon, 19 Dec 2011 18:53:19 +0000", "from_user": "Soundtracks1", "from_user_id": 286127553, "from_user_id_str": "286127553", "from_user_name": "Richard Floyd", "geo": null, "id": 148838336814002180, "id_str": "148838336814002176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1409079887/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1409079887/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #1153 The Lion King: Various $7.99 Walt Disney http://t.co/yECKQoU8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:19 +0000", "from_user": "BoxSetCDs", "from_user_id": 362955247, "from_user_id_str": "362955247", "from_user_name": "Richard Floyd", "geo": null, "id": 148838336528793600, "id_str": "148838336528793600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1515566384/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515566384/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #13028 Christmas Collection Mannheim Steamroller $99.99: Four CD holiday box set containing a quartet... http://t.co/jHjbjna3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:19 +0000", "from_user": "gabacheau", "from_user_id": 65795823, "from_user_id_str": "65795823", "from_user_name": "jantoine", "geo": null, "id": 148838335400509440, "id_str": "148838335400509440", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677486452/ronnie_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677486452/ronnie_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Chica, si has nacido despu\\u00E9s del Mundial de F\\u00FAtbol de USA'94 quedas descartada por el momento, pero todo es negociable.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:19 +0000", "from_user": "BoxSetCDs", "from_user_id": 362955247, "from_user_id_str": "362955247", "from_user_name": "Richard Floyd", "geo": null, "id": 148838335362768900, "id_str": "148838335362768896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1515566384/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515566384/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #5379 A Holly Jolly Christmas For Kids $14.48: \"A HOLLY JOLLY CHRISTMAS FOR KIDS\" is a 3 CD collecti... http://t.co/49Y0zq3L", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:18 +0000", "from_user": "BoxSetCDs", "from_user_id": 362955247, "from_user_id_str": "362955247", "from_user_name": "Richard Floyd", "geo": null, "id": 148838333966065660, "id_str": "148838333966065664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1515566384/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515566384/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #5901 Mythology (4 CD) Bee Gees $36.38: 2010 four CD set from the veteran hitmakers. Mythology contai... http://t.co/eYMP2mnU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:18 +0000", "from_user": "Newsblogz", "from_user_id": 324254976, "from_user_id_str": "324254976", "from_user_name": "News Blogz", "geo": null, "id": 148838332640657400, "id_str": "148838332640657408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1628923649/A_fascinating_24_hour_clock_in_the_heart_of_GMT_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628923649/A_fascinating_24_hour_clock_in_the_heart_of_GMT_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "US NEWS: Despite Southwest blizzard, hope of white Christmas fades for much of US - Christian Sc... http://t.co/8r810U7f #newsblogz #usa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:18 +0000", "from_user": "annwho", "from_user_id": 29222724, "from_user_id_str": "29222724", "from_user_name": "ann ", "geo": null, "id": 148838332615507970, "id_str": "148838332615507968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1343265008/DSCN8606_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1343265008/DSCN8606_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "HOLDER knows how to let the black panthers who were ugly with old and weak with usa ppl and now he grabs bho and him in race card ???", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:18 +0000", "from_user": "Newsblogz", "from_user_id": 324254976, "from_user_id_str": "324254976", "from_user_name": "News Blogz", "geo": null, "id": 148838331524984830, "id_str": "148838331524984832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1628923649/A_fascinating_24_hour_clock_in_the_heart_of_GMT_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628923649/A_fascinating_24_hour_clock_in_the_heart_of_GMT_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "US NEWS: Violent Crime Keeps Falling - Wall Street Journal: My TV20 DetroitViolent Crime Keeps F... http://t.co/HhKUSWbx #newsblogz #usa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:17 +0000", "from_user": "beccarter28", "from_user_id": 137898044, "from_user_id_str": "137898044", "from_user_name": "Becky Carter", "geo": null, "id": 148838329595592700, "id_str": "148838329595592706", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/871742337/Diane_and_Kathy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/871742337/Diane_and_Kathy_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Despite Southwest blizzard, hope of white Christmas fades for much of US - Christian Science Monitor: Christian ... http://t.co/8ZXYmuoV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:17 +0000", "from_user": "DianaDeRivera", "from_user_id": 112076294, "from_user_id_str": "112076294", "from_user_name": "Diana WY \\u2665", "geo": null, "id": 148838328991625200, "id_str": "148838328991625216", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702542085/37696_416274857326_107677682326_5252226_3382368_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702542085/37696_416274857326_107677682326_5252226_3382368_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @Bellaco_Leon: @wisinyyandel felicidades papa cumple muchos mas saludos desde Pennsylvania USA ya tu sae bendiciones #FelixCumplea\\u00F1osWisin", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:17 +0000", "from_user": "homeinsured", "from_user_id": 71376232, "from_user_id_str": "71376232", "from_user_name": "HomeInsuranceQuotes", "geo": null, "id": 148838328421191680, "id_str": "148838328421191680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/397060792/twitlogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/397060792/twitlogo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Despite Southwest blizzard, hope of white Christmas fades for much of US - Christian Science Monitor: Christian ... http://t.co/E50RfaqE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:17 +0000", "from_user": "OtterSurfCo", "from_user_id": 261333015, "from_user_id_str": "261333015", "from_user_name": "Otter Surf Company", "geo": null, "id": 148838328358289400, "id_str": "148838328358289412", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1424726799/Otter_221x221_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1424726799/Otter_221x221_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Otter Surf Co. News> New Year's Resolution: End Whaling - For decades, Greenpeace has led the fight to protect whale... http://t.co/40Vav2H6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:17 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148838326613446660, "id_str": "148838326613446657", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "DIOSA CANALES USA COND\\u00D3N,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:16 +0000", "from_user": "itmyturntodie", "from_user_id": 177764204, "from_user_id_str": "177764204", "from_user_name": "Jenifer", "geo": null, "id": 148838325187387400, "id_str": "148838325187387392", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1644472695/dfhd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644472695/dfhd_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:16 +0000", "from_user": "Gabrieladictiva", "from_user_id": 246438641, "from_user_id_str": "246438641", "from_user_name": "Gab ", "geo": null, "id": 148838324692451330, "id_str": "148838324692451328", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701037371/DSC08278_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701037371/DSC08278_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Yo no estaba semidesnuda, todo el mundo usa trajes de ba\\u00F1o, mai gaa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:16 +0000", "from_user": "Caity_Abdul", "from_user_id": 152117570, "from_user_id_str": "152117570", "from_user_name": "Caity", "geo": null, "id": 148838324306583550, "id_str": "148838324306583552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700968626/holidayav1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700968626/holidayav1_normal.png", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @4everurgirl94: Justin Beiber and Stevie Wonder are reported to be performing at The X Factor USA finale:) Cool!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:15 +0000", "from_user": "fidiwivozy", "from_user_id": 433676268, "from_user_id_str": "433676268", "from_user_name": "Ehrentraut Mcginlay", "geo": null, "id": 148838321769037820, "id_str": "148838321769037825", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1685942720/1712_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685942720/1712_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "personal loans for people with bad credit no credit check http://t.co/kgQ97uxs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:15 +0000", "from_user": "BoxSetCDs", "from_user_id": 362955247, "from_user_id_str": "362955247", "from_user_name": "Richard Floyd", "geo": null, "id": 148838319587995650, "id_str": "148838319587995648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1515566384/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515566384/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #1102 Still on Top: The Greatest Hits Van Morrison $17.91: 2007 limited edition triple definitive col... http://t.co/lgQ0uYME", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:15 +0000", "from_user": "YamagutiLucas", "from_user_id": 224860530, "from_user_id_str": "224860530", "from_user_name": "Lucas D. C. Yamaguti", "geo": null, "id": 148838319021756400, "id_str": "148838319021756416", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1492257631/localocalocalol_055_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1492257631/localocalocalol_055_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@marislzr InsetoLab \\u00E9 uma das coisa que s\\u00F3 se usa uma vez e acaba. Custa uns 100 reais, ai voc\\u00EA usa uma vez. Tenso. V\\u00ED ele em RP. UHAUHAU", "to_user": "marislzr", "to_user_id": 25728120, "to_user_id_str": "25728120", "to_user_name": "MARI SALAZAR \\u265B ", "in_reply_to_status_id": 148837685484720130, "in_reply_to_status_id_str": "148837685484720130"}, +{"created_at": "Mon, 19 Dec 2011 18:53:14 +0000", "from_user": "circotimia_", "from_user_id": 221610474, "from_user_id_str": "221610474", "from_user_name": "M a i t e\\u10E6. ", "geo": null, "id": 148838317314682880, "id_str": "148838317314682881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698350821/jjo__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698350821/jjo__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "JEANNETH USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:14 +0000", "from_user": "BoxSetCDs", "from_user_id": 362955247, "from_user_id_str": "362955247", "from_user_name": "Richard Floyd", "geo": null, "id": 148838314252836860, "id_str": "148838314252836864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1515566384/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515566384/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #2441 The 2000 Year Old Man:The Complete History Carl Reiner & Mel Brooks $36.99: Newly remastered fo... http://t.co/RrxbhBzG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:53:17 +0000", "from_user": "OtterSurfCo", "from_user_id": 261333015, "from_user_id_str": "261333015", "from_user_name": "Otter Surf Company", "geo": null, "id": 148838328358289400, "id_str": "148838328358289412", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1424726799/Otter_221x221_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1424726799/Otter_221x221_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Otter Surf Co. News> New Year's Resolution: End Whaling - For decades, Greenpeace has led the fight to protect whale... http://t.co/40Vav2H6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:17 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148838326613446660, "id_str": "148838326613446657", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "DIOSA CANALES USA COND\\u00D3N,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:16 +0000", "from_user": "itmyturntodie", "from_user_id": 177764204, "from_user_id_str": "177764204", "from_user_name": "Jenifer", "geo": null, "id": 148838325187387400, "id_str": "148838325187387392", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1644472695/dfhd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644472695/dfhd_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:16 +0000", "from_user": "Gabrieladictiva", "from_user_id": 246438641, "from_user_id_str": "246438641", "from_user_name": "Gab ", "geo": null, "id": 148838324692451330, "id_str": "148838324692451328", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701037371/DSC08278_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701037371/DSC08278_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Yo no estaba semidesnuda, todo el mundo usa trajes de ba\\u00F1o, mai gaa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:16 +0000", "from_user": "Caity_Abdul", "from_user_id": 152117570, "from_user_id_str": "152117570", "from_user_name": "Caity", "geo": null, "id": 148838324306583550, "id_str": "148838324306583552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700968626/holidayav1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700968626/holidayav1_normal.png", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @4everurgirl94: Justin Beiber and Stevie Wonder are reported to be performing at The X Factor USA finale:) Cool!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:15 +0000", "from_user": "fidiwivozy", "from_user_id": 433676268, "from_user_id_str": "433676268", "from_user_name": "Ehrentraut Mcginlay", "geo": null, "id": 148838321769037820, "id_str": "148838321769037825", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1685942720/1712_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685942720/1712_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "personal loans for people with bad credit no credit check http://t.co/kgQ97uxs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:15 +0000", "from_user": "BoxSetCDs", "from_user_id": 362955247, "from_user_id_str": "362955247", "from_user_name": "Richard Floyd", "geo": null, "id": 148838319587995650, "id_str": "148838319587995648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1515566384/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515566384/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #1102 Still on Top: The Greatest Hits Van Morrison $17.91: 2007 limited edition triple definitive col... http://t.co/lgQ0uYME", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:15 +0000", "from_user": "YamagutiLucas", "from_user_id": 224860530, "from_user_id_str": "224860530", "from_user_name": "Lucas D. C. Yamaguti", "geo": null, "id": 148838319021756400, "id_str": "148838319021756416", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1492257631/localocalocalol_055_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1492257631/localocalocalol_055_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@marislzr InsetoLab \\u00E9 uma das coisa que s\\u00F3 se usa uma vez e acaba. Custa uns 100 reais, ai voc\\u00EA usa uma vez. Tenso. V\\u00ED ele em RP. UHAUHAU", "to_user": "marislzr", "to_user_id": 25728120, "to_user_id_str": "25728120", "to_user_name": "MARI SALAZAR \\u265B ", "in_reply_to_status_id": 148837685484720130, "in_reply_to_status_id_str": "148837685484720130"}, +{"created_at": "Mon, 19 Dec 2011 18:53:14 +0000", "from_user": "circotimia_", "from_user_id": 221610474, "from_user_id_str": "221610474", "from_user_name": "M a i t e\\u10E6. ", "geo": null, "id": 148838317314682880, "id_str": "148838317314682881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698350821/jjo__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698350821/jjo__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "JEANNETH USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:14 +0000", "from_user": "BoxSetCDs", "from_user_id": 362955247, "from_user_id_str": "362955247", "from_user_name": "Richard Floyd", "geo": null, "id": 148838314252836860, "id_str": "148838314252836864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1515566384/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515566384/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #2441 The 2000 Year Old Man:The Complete History Carl Reiner & Mel Brooks $36.99: Newly remastered fo... http://t.co/RrxbhBzG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:13 +0000", "from_user": "RobertoCChang", "from_user_id": 198060426, "from_user_id_str": "198060426", "from_user_name": "Roberto Chang ", "geo": null, "id": 148838313774694400, "id_str": "148838313774694400", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1658322346/IMG_4840_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658322346/IMG_4840_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Que destruccion ya mejor me regreso pa usa.. Jajajaja", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:13 +0000", "from_user": "EmmanuelRodrig2", "from_user_id": 319131470, "from_user_id_str": "319131470", "from_user_name": "Emmanuel Rodriguez", "geo": null, "id": 148838311492984830, "id_str": "148838311492984832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1408807487/emmy3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1408807487/emmy3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@GeryGovea i now understand y u hate the usa government after watching this\\nhttp://t.co/sGe6yhCJ", "to_user": "GeryGovea", "to_user_id": 96403935, "to_user_id_str": "96403935", "to_user_name": "Geraldine Govea"}, +{"created_at": "Mon, 19 Dec 2011 18:53:12 +0000", "from_user": "MatheusZaid", "from_user_id": 52803149, "from_user_id_str": "52803149", "from_user_name": "Matheus Diaz \\u2714", "geo": null, "id": 148838307344810000, "id_str": "148838307344809985", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1200495158/OgAAAJcmCmjAmRftKzkSJ5-ZydEPUExmMjzGpBNTdCd8niMN4U_35OlKefxF7Ay3kzpH1isBKudyAceMxwvhVZwPSVYAm1T1UBpkoR1tPLzyu31kGhe2sLUj9OBy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1200495158/OgAAAJcmCmjAmRftKzkSJ5-ZydEPUExmMjzGpBNTdCd8niMN4U_35OlKefxF7Ay3kzpH1isBKudyAceMxwvhVZwPSVYAm1T1UBpkoR1tPLzyu31kGhe2sLUj9OBy_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "NOJO de quem usa o nome do pai pra conseguir algo. Bem feito que essa ot\\u00E1ria n consegiu nada! #caranapoeira kkkkk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:11 +0000", "from_user": "ItsMariellaa", "from_user_id": 183031283, "from_user_id_str": "183031283", "from_user_name": "Mariella. ", "geo": null, "id": 148838304622710800, "id_str": "148838304622710784", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1646277728/Imagem_006_1__normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646277728/Imagem_006_1__normal", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Me pergunte qualquer coisa. - \\u203A 1. Altura? 2. Peso? 3. Voc\\u00EA fuma? 4. Voc\\u00EA bebe? 5. Usa/j\\u00E1 usou drogas? 6.... http://t.co/bNSxaH0k", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:11 +0000", "from_user": "BigFraud", "from_user_id": 325576858, "from_user_id_str": "325576858", "from_user_name": "Big Fraud", "geo": null, "id": 148838304559808500, "id_str": "148838304559808513", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1417280693/600580_40912478_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1417280693/600580_40912478_normal.jpg", "source": "<a href="http://splitweet.com" rel="nofollow">Splitweet</a>", "text": "FBI #Los #Angeles \"Closely Monitoring\" Coutts Bank HSBC USA $1,OOO,OOO,OOO, #Bahamas Gibraltar Fraud Case http://t.co/xKsdaMIc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:11 +0000", "from_user": "ConspiracyCase", "from_user_id": 322024752, "from_user_id_str": "322024752", "from_user_name": "Carroll Foundation", "geo": null, "id": 148838303481864200, "id_str": "148838303481864192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1407909900/13_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1407909900/13_normal.jpg", "source": "<a href="http://splitweet.com" rel="nofollow">Splitweet</a>", "text": "FBI #Los #Angeles \"Closely Monitoring\" Coutts Bank HSBC USA $1,OOO,OOO,OOO, #Bahamas Gibraltar Fraud Case http://t.co/EF68GhNP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:11 +0000", "from_user": "GHOSTPROTOCOLS", "from_user_id": 326450140, "from_user_id_str": "326450140", "from_user_name": "GHOST PROTOCOL", "geo": null, "id": 148838303418941440, "id_str": "148838303418941440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1419498387/williammarshal1_sm_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1419498387/williammarshal1_sm_normal.png", "source": "<a href="http://splitweet.com" rel="nofollow">Splitweet</a>", "text": "FBI #Los #Angeles \"Closely Monitoring\" Coutts Bank HSBC USA $1,OOO,OOO,OOO, #Bahamas Gibraltar Fraud Case http://t.co/0XGunl9a", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:11 +0000", "from_user": "syvuteja", "from_user_id": 433047330, "from_user_id_str": "433047330", "from_user_name": "Rajni Culpan", "geo": null, "id": 148838303368609800, "id_str": "148838303368609792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685339097/853_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685339097/853_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @gedebibejaz: car insurance companies in pa http://t.co/mKE8pyra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:11 +0000", "from_user": "Juh_Shadows", "from_user_id": 275996013, "from_user_id_str": "275996013", "from_user_name": "Junior Shadows", "geo": null, "id": 148838303351840770, "id_str": "148838303351840769", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668206133/deathbat_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668206133/deathbat_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "@Jhoow__w parece akeles vestido q o oliver usa D:", "to_user": "Jhoow__w", "to_user_id": 298238184, "to_user_id_str": "298238184", "to_user_name": "Jhoow"}, +{"created_at": "Mon, 19 Dec 2011 18:53:09 +0000", "from_user": "puzakefe", "from_user_id": 419983461, "from_user_id_str": "419983461", "from_user_name": "Bratislav Gallaccio", "geo": null, "id": 148838294564773900, "id_str": "148838294564773889", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1657158533/29_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657158533/29_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @fysikykeno: loans bad credit tesco http://t.co/WtAqPgg6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:09 +0000", "from_user": "theyarepartofmy", "from_user_id": 259434941, "from_user_id_str": "259434941", "from_user_name": "\\u2655 ", "geo": null, "id": 148838294036287500, "id_str": "148838294036287489", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700963726/chercrazy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700963726/chercrazy_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@PLanzani_chile shh te vay a USA? Pa que contai", "to_user": "PLanzani_chile", "to_user_id": 191332852, "to_user_id_str": "191332852", "to_user_name": "Fran.", "in_reply_to_status_id": 148837348275265540, "in_reply_to_status_id_str": "148837348275265536"}, +{"created_at": "Mon, 19 Dec 2011 18:53:09 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148838293189042180, "id_str": "148838293189042176", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "MANZANA USA COND\\u00D3N,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:08 +0000", "from_user": "GrouponCbusGa", "from_user_id": 223859034, "from_user_id_str": "223859034", "from_user_name": "Groupon Columbus", "geo": null, "id": 148838289787461630, "id_str": "148838289787461632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1184788298/twitpic_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1184788298/twitpic_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Help provide meals for school children affected by the famine in the Horn of Africa: http://t.co/c7uojaeZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:07 +0000", "from_user": "d4reala1", "from_user_id": 433837153, "from_user_id_str": "433837153", "from_user_name": "d4reala", "geo": null, "id": 148838287539322880, "id_str": "148838287539322880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698205567/wutangclan4_1024_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698205567/wutangclan4_1024_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "24 #HOURS #USA #RAP http://t.co/FsZqbY8N #NOW #PLAYING #DABRAT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:06 +0000", "from_user": "CyberPlumber", "from_user_id": 17222226, "from_user_id_str": "17222226", "from_user_name": "Jay Liang", "geo": null, "id": 148838282476781570, "id_str": "148838282476781568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677646047/3d-torus_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677646047/3d-torus_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "SPC MD 2378: MD 2378 CONCERNING HEAVY SNOW FOR NERN NM / NWRN TX PANHANDLE / WRN OK PANHANDLE / SERN CO / SWRN K... http://t.co/vgO83SW8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:06 +0000", "from_user": "love040497", "from_user_id": 272521036, "from_user_id_str": "272521036", "from_user_name": "marta", "geo": null, "id": 148838281587597300, "id_str": "148838281587597312", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689506447/wesele_my_picture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689506447/wesele_my_picture_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@mellodyaupair aha.. fajnie masz !! taz bym chciala zeby moj tata byl amerykaninem .. ! przynajmniej moglabym pojechac do USA...", "to_user": "mellodyaupair", "to_user_id": 427377843, "to_user_id_str": "427377843", "to_user_name": "Mellody Aupair"}, +{"created_at": "Mon, 19 Dec 2011 18:53:05 +0000", "from_user": "ndepositcasino", "from_user_id": 239797951, "from_user_id_str": "239797951", "from_user_name": "no deposit casino", "geo": null, "id": 148838279364620300, "id_str": "148838279364620288", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1273167872/images48_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273167872/images48_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "casino no deposit codes usa tco/TymHQNcL http://t.co/DVmGy94a", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:05 +0000", "from_user": "dennisarmandodt", "from_user_id": 278746827, "from_user_id_str": "278746827", "from_user_name": "Armando Dorantes", "geo": null, "id": 148838278693523460, "id_str": "148838278693523456", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1303689859/domino_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1303689859/domino_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Paullettina Ejemm pero desde hace un siglo que es pirateado por USA!! ja ja ja", "to_user": "Paullettina", "to_user_id": 124390192, "to_user_id_str": "124390192", "to_user_name": "Ari Pineapple", "in_reply_to_status_id": 148829127397490700, "in_reply_to_status_id_str": "148829127397490688"}, +{"created_at": "Mon, 19 Dec 2011 18:53:05 +0000", "from_user": "ReutersMarkets", "from_user_id": 335907491, "from_user_id_str": "335907491", "from_user_name": "Reuters Markets", "geo": null, "id": 148838278571888640, "id_str": "148838278571888640", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1462494621/reuters_twitter_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1462494621/reuters_twitter_avatar_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Struggling Santorum bets big on Iowa http://t.co/7P1PDvmF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:04 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148838275988201470, "id_str": "148838275988201472", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "PERA USA COND\\u00D3N,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:04 +0000", "from_user": "marcos3594", "from_user_id": 257556744, "from_user_id_str": "257556744", "from_user_name": "Marcos\\u00AE", "geo": null, "id": 148838274671190000, "id_str": "148838274671190016", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1616540245/webcam-toy-foto10_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616540245/webcam-toy-foto10_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Aquela vizinha que coloca um banquinho na porta de casa, usa o guarda-chuva, t\\u00E1 com o p\\u00E9 quebrado...mas n\\u00E3o deixa a fofoca. Vizinha \\u00E9 p/voce", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:04 +0000", "from_user": "SideGigCentral", "from_user_id": 379904644, "from_user_id_str": "379904644", "from_user_name": "Side Job Central", "geo": null, "id": 148838273547116540, "id_str": "148838273547116545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1559639165/Lighthouse_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1559639165/Lighthouse_normal.jpg", "source": "<a href="http://www.sidejobcentral.com/" rel="nofollow">Side Jobs</a>", "text": "First or Second year students needed Receive $75 (anywhere usa) http://t.co/EDCXTU9l #jobs #Dallas", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:03 +0000", "from_user": "usa_investment", "from_user_id": 410260271, "from_user_id_str": "410260271", "from_user_name": "Investment USA", "geo": null, "id": 148838271475138560, "id_str": "148838271475138560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1634155452/4-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634155452/4-1_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "EB-5 visa investment is therefore a great way to get permanent residency in the United States and a good investment http://t.co/8cdj3y75", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:03 +0000", "from_user": "Jayz07Jayz", "from_user_id": 376567663, "from_user_id_str": "376567663", "from_user_name": "jayz07", "geo": null, "id": 148838270313304060, "id_str": "148838270313304064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1615315151/jay_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615315151/jay_normal", "source": "<a href="http://www.twaitter.com" rel="nofollow">Twaitter</a>", "text": "Child\\u2019s Progress During The First Year of Life #baby #clenches #Colors #coos #cries #discomfort #eyes #fist #head http://t.co/lkw9W0V5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:02 +0000", "from_user": "Aidesce", "from_user_id": 430043935, "from_user_id_str": "430043935", "from_user_name": "Aide Foose", "geo": null, "id": 148838267645722620, "id_str": "148838267645722626", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1677513819/c4lg4v45m3_132459583_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677513819/c4lg4v45m3_132459583_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "4x6 Picture Frame / Poster Frame 2\" Wide Complete Silver Frame (FM97SI): This frame is manufactured in the USA, ... http://t.co/a73BA3Ck", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:02 +0000", "from_user": "FCeternogogoboy", "from_user_id": 192965100, "from_user_id_str": "192965100", "from_user_name": "FCO Eterno GogoBoy", "geo": null, "id": 148838266232250370, "id_str": "148838266232250368", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1659675386/nxzero2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659675386/nxzero2_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Me pergunte qualquer coisa. - \\u203A 1. Altura? 2. Peso? 3. Voc\\u00EA fuma? 4. Voc\\u00EA bebe? 5. Usa/j\\u00E1 usou drogas? 6.... http://t.co/bPF8QeOn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:01 +0000", "from_user": "MariesaBossier0", "from_user_id": 440264558, "from_user_id_str": "440264558", "from_user_name": "Mariesa Bossier", "geo": null, "id": 148838261022916600, "id_str": "148838261022916608", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": null, "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "http://t.co/bpyyJjW9 Madonna Nurse Lawyer USA Corporatism", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:01 +0000", "from_user": "victorthales", "from_user_id": 73419674, "from_user_id_str": "73419674", "from_user_name": "Victor Thalles *--*", "geo": null, "id": 148838259789791230, "id_str": "148838259789791232", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1689757806/eueu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689757806/eueu_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "V\\u00EDdeo: Yamaha usa AirPort Express para fazer a Siri tocar piano http://t.co/wSMKNL3n", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:00 +0000", "from_user": "sonoticiashoje", "from_user_id": 359022720, "from_user_id_str": "359022720", "from_user_name": "sonot\\u00EDciashoje", "geo": null, "id": 148838258250489860, "id_str": "148838258250489856", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1505591291/facicon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505591291/facicon_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "V\\u00EDdeo: Yamaha usa AirPort Express para fazer a Siri tocar piano: Abram alas para mais uma gambiarra impressionan... http://t.co/lCKhplI9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:00 +0000", "from_user": "Kate_Moser", "from_user_id": 80150239, "from_user_id_str": "80150239", "from_user_name": "Kate Moser", "geo": null, "id": 148838258179190800, "id_str": "148838258179190784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1063217717/me_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1063217717/me_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "Cal Supremes uphold death penalty for Susan Eubanks, who shot and killed her four boys ages 4 to 14 in 1997. http://t.co/LffqeMA7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:00 +0000", "from_user": "LeonardoSabino", "from_user_id": 67696325, "from_user_id_str": "67696325", "from_user_name": "Leonardo Sabino", "geo": null, "id": 148838256786685950, "id_str": "148838256786685952", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1498177169/EU_200px_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1498177169/EU_200px_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "V\\u00EDdeo: Yamaha usa AirPort Express para fazer a Siri tocar piano: Abram alas para mais uma gambiarra impressionan... http://t.co/GI4G15nO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:00 +0000", "from_user": "TheHeartTruth", "from_user_id": 94588784, "from_user_id_str": "94588784", "from_user_name": "The Heart Truth", "geo": null, "id": 148838256170115070, "id_str": "148838256170115074", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/661043829/icon_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/661043829/icon_normal.gif", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "#Exercise protects your heart AND makes you feel good. Check out @HHSGov\\u2019s Be Active Your Way blog for inspiration. http://t.co/wbG5Unnf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:00 +0000", "from_user": "Sou_Geek", "from_user_id": 308218291, "from_user_id_str": "308218291", "from_user_name": "Sou Geek", "geo": null, "id": 148838256149135360, "id_str": "148838256149135360", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697315803/sheldon__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697315803/sheldon__1__normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "V\\u00EDdeo: Yamaha usa AirPort Express para fazer a Siri tocar piano http://t.co/XcjmxaMg #Apple", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:59 +0000", "from_user": "coxsbound", "from_user_id": 103599047, "from_user_id_str": "103599047", "from_user_name": "Paulo", "geo": null, "id": 148838253481558000, "id_str": "148838253481558017", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1600959692/if2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600959692/if2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "1% + rico de USA acapara 40% del ingreso... en apogeo romano top 1% de ingreso ten\\u00EDa 16% de la torta : http://t.co/vQhmQJi1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:59 +0000", "from_user": "taniagr", "from_user_id": 8049782, "from_user_id_str": "8049782", "from_user_name": "Tania Gavi\\u00F1o", "geo": null, "id": 148838252026134530, "id_str": "148838252026134528", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1632762679/t_a_copy_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632762679/t_a_copy_normal.JPG", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:59 +0000", "from_user": "circotimia_", "from_user_id": 221610474, "from_user_id_str": "221610474", "from_user_name": "M a i t e\\u10E6. ", "geo": null, "id": 148838251287945200, "id_str": "148838251287945216", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698350821/jjo__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698350821/jjo__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "YOHE USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:58 +0000", "from_user": "ArmandoGarciia", "from_user_id": 56148422, "from_user_id_str": "56148422", "from_user_name": "Armando Garc\\u00EDa \\u2714", "geo": +{"coordinates": [0,0], "type": "Point"}, "id": 148838250235174900, "id_str": "148838250235174912", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1659932439/304424_2468685840691_1358685601_32836164_346304384_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659932439/304424_2468685840691_1358685601_32836164_346304384_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Si no usa condones Louis Vuitton, no te ama.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:58 +0000", "from_user": "jamjoom44", "from_user_id": 305530741, "from_user_id_str": "305530741", "from_user_name": "\\u0633\\u0627\\u0631\\u0642 \\u0627\\u0644\\u0644\\u064A\\u0644", "geo": null, "id": 148838249501175800, "id_str": "148838249501175808", "iso_language_code": "ar", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1431189380/IMG00134-20110707-1640_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1431189380/IMG00134-20110707-1640_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/cLEpCpr9 \\u0627\\u0644\\u0628\\u0644\\u0627\\u062F \\u0627\\u0644\\u0642\\u062F\\u064A\\u0645 \\u0635\\u0648\\u0631\\u0629 \\u0644\\u0644\\u0648\\u0642\\u0641\\u0640\\u0629 \\u0627\\u0644\\u062A\\u0638\\u0627\\u0645\\u0646\\u064A\\u0629 \\u0627\\u0645\\u0627\\u0645 \\u0645\\u0646\\u0632\\u0644 \\u0633\\u0645\\u0627\\u062D\\u0629 \\u0622\\u064A\\u0629 \\u0627\\u0644\\u0644\\u0647 \\u0627\\u0644\\u0634\\u064A\\u062E \\u0639\\u0628\\u062F\\u0627\\u0644\\u062C\\u0644\\u064A\\u0644 \\u0627\\u0644\\u0645\\u0642\\u062F\\u0627\\u062F #BAHRAIN #usa #uk #iraq @iran", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:58 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148838249023012860, "id_str": "148838249023012865", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "ANDREA USA COND\\u00D3N,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:58 +0000", "from_user": "TWEETORACLE", "from_user_id": 124971652, "from_user_id_str": "124971652", "from_user_name": "AURACOOL\\u2122", "geo": null, "id": 148838247873773570, "id_str": "148838247873773570", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702516124/331706383_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702516124/331706383_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "The HQ of the #PORN industry in USA is ________?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:57 +0000", "from_user": "DTNCA", "from_user_id": 158429392, "from_user_id_str": "158429392", "from_user_name": "David Teherani", "geo": null, "id": 148838246800039940, "id_str": "148838246800039936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1374485615/100_2083_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1374485615/100_2083_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@janetbevans @summersanders_ Now I admit I'm smitten with The Trojans @swimhardy & @rebsoni and 4 good reason ;) Actually All Team USA!", "to_user": "janetbevans", "to_user_id": 312307292, "to_user_id_str": "312307292", "to_user_name": "Janet Evans"}, +{"created_at": "Mon, 19 Dec 2011 18:52:57 +0000", "from_user": "bahrainseed", "from_user_id": 301619645, "from_user_id_str": "301619645", "from_user_name": "\\u0627\\u0646\\u0643\\u0633\\u0631 \\u0627\\u0644\\u0642\\u064A\\u062F", "geo": null, "id": 148838244493180930, "id_str": "148838244493180928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1527659526/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1527659526/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Formula 1 teams:Watch #Bahrain Video: blood and pain /10\\nhttp://t.co/jB98q5Lp\\n\\n@F1\\n@14FebTV\\n@ALWEFAQ\\n@SHalMosawi\\n@MARYAMALKHAWAJA\\n#USA\\n#uk", "to_user": "F1", "to_user_id": 69008563, "to_user_id_str": "69008563", "to_user_name": "Formula1.com"}, +{"created_at": "Mon, 19 Dec 2011 18:52:55 +0000", "from_user": "USEmbassyBogota", "from_user_id": 85867670, "from_user_id_str": "85867670", "from_user_name": "US Embassy Bogota", "geo": null, "id": 148838237744545800, "id_str": "148838237744545792", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1607946712/logoembajada_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607946712/logoembajada_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @StateDept: Discurso de la #SecClinton sobre la #mujer, la paz y la seguridad hoy 2:30pm Hora del este (en ingl\\u00E9s) http://t.co/EsnEqIa8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:55 +0000", "from_user": "makenax", "from_user_id": 432651866, "from_user_id_str": "432651866", "from_user_name": "Qaverujo Pufop", "geo": null, "id": 148838235005661200, "id_str": "148838235005661184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @cabojic: long island loan http://t.co/A70Yo1FI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:54 +0000", "from_user": "NayaraCorrea_", "from_user_id": 373066156, "from_user_id_str": "373066156", "from_user_name": " ' Nay Correa", "geo": null, "id": 148838232736542720, "id_str": "148838232736542720", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1660665766/Z1b1w7z4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660665766/Z1b1w7z4_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u201CHoje voc\\u00EA usa, amanh\\u00E3 \\u00E9 usado. N\\u00E3o \\u00E9 uma amea\\u00E7a \\u2014 \\u00E9 a lei do retorno.\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:54 +0000", "from_user": "4everurgirl94", "from_user_id": 171061358, "from_user_id_str": "171061358", "from_user_name": "Cindy Abdul", "geo": null, "id": 148838230459035650, "id_str": "148838230459035648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1598242134/vcm_s_kf_m160_100x100_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598242134/vcm_s_kf_m160_100x100_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Justin Beiber and Stevie Wonder are reported to be performing at The X Factor USA finale:) Cool!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:54 +0000", "from_user": "_JamesCox", "from_user_id": 320084586, "from_user_id_str": "320084586", "from_user_name": "James Cox", "geo": null, "id": 148838230165434370, "id_str": "148838230165434368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1635982348/James._normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635982348/James._normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@RobertNickson if your spending time in the usa. You gotta have a bigass suv to drive round in ;)", "to_user": "RobertNickson", "to_user_id": 28547171, "to_user_id_str": "28547171", "to_user_name": "Robert", "in_reply_to_status_id": 148837691792965630, "in_reply_to_status_id_str": "148837691792965632"}, +{"created_at": "Mon, 19 Dec 2011 18:52:53 +0000", "from_user": "Lizz_Beeth", "from_user_id": 178375157, "from_user_id_str": "178375157", "from_user_name": "Lizeth Cz'", "geo": null, "id": 148838229477572600, "id_str": "148838229477572608", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697551950/5EWQxOkI_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697551950/5EWQxOkI_normal", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:53 +0000", "from_user": "drduke85", "from_user_id": 244969988, "from_user_id_str": "244969988", "from_user_name": "Will Duke", "geo": null, "id": 148838228584177660, "id_str": "148838228584177664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1360363497/black_crown_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1360363497/black_crown_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@neiltwaterguy I'd like to talk to you about your product being sold in USA. I am on Eastern Time. Please DM me your business email. Thanx", "to_user": "neiltwaterguy", "to_user_id": 23072917, "to_user_id_str": "23072917", "to_user_name": "Neil Tomlinson"}, +{"created_at": "Mon, 19 Dec 2011 18:52:52 +0000", "from_user": "_Adicta", "from_user_id": 123965194, "from_user_id_str": "123965194", "from_user_name": "La que hace spam.", "geo": null, "id": 148838225102897150, "id_str": "148838225102897152", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "GATODVERDAGUER USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:51 +0000", "from_user": "LudibriaNFOs", "from_user_id": 206552383, "from_user_id_str": "206552383", "from_user_name": "Ludibria NFOs", "geo": null, "id": 148838219096662000, "id_str": "148838219096662017", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1150628411/ProfilePhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1150628411/ProfilePhoto_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "[PS3]- Get_Up_And_Dance_USA_PS3-CLANDESTiNE: Release:\\u00A0Get_Up_And_Dance_USA_PS3-CLANDESTiNERelease Date: \\u00A02011-12-19 http://t.co/emdygERz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:50 +0000", "from_user": "kierstenhyvtosh", "from_user_id": 306014563, "from_user_id_str": "306014563", "from_user_name": "Kiersten Tosh", "geo": null, "id": 148838213589544960, "id_str": "148838213589544960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1685426354/4a03b034abe39_m_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685426354/4a03b034abe39_m_1__normal.jpg", "source": "<a href="http://cybermondayorblackfriday.com" rel="nofollow">cybermondayorblackfridaydotcom</a>", "text": "How Do I Get Wall Accents-Family Like Branches On A Tree vinyl lettering wall sayings http://t.co/1a7hctka", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:50 +0000", "from_user": "Mikkomom", "from_user_id": 25674714, "from_user_id_str": "25674714", "from_user_name": "donna stoutenborough", "geo": null, "id": 148838213455319040, "id_str": "148838213455319040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Blue Ridge Atomic Plates 3 in set Made in USA by WhiteShepherd http://t.co/s3RBTwJr via @Etsy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:49 +0000", "from_user": "toutjusteNHPM", "from_user_id": 221500089, "from_user_id_str": "221500089", "from_user_name": "Pitamurti Nur Hayu", "geo": null, "id": 148838213295935500, "id_str": "148838213295935488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1607219359/q45a9nXS_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607219359/q45a9nXS_normal", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "The different about asian and USA : asian = :) usa = (:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:49 +0000", "from_user": "StephJohnso08", "from_user_id": 330738305, "from_user_id_str": "330738305", "from_user_name": "Stephanie Johnson", "geo": null, "id": 148838212578717700, "id_str": "148838212578717696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670881485/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670881485/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "We've officially reached shitsville, USA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:48 +0000", "from_user": "Clorindadtl", "from_user_id": 430068782, "from_user_id_str": "430068782", "from_user_name": "Clorinda Pedri", "geo": null, "id": 148838207872708600, "id_str": "148838207872708609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1677562276/tsq0hmial4_128151810-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677562276/tsq0hmial4_128151810-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "CASE OF 5 90\" Round Organza Overlays: High quality organza fabric. Made in the USA. Easy care - machine wash war... http://t.co/7Stz1duL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:48 +0000", "from_user": "56jean56", "from_user_id": 67156374, "from_user_id_str": "67156374", "from_user_name": "jean aguiar", "geo": null, "id": 148838206148853760, "id_str": "148838206148853760", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1387166575/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1387166575/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@StheDiegues_ voo usa no natal !!\\nHahaha", "to_user": "StheDiegues_", "to_user_id": 110478890, "to_user_id_str": "110478890", "to_user_name": "M4M43 N03L \\u2605", "in_reply_to_status_id": 148838019326165000, "in_reply_to_status_id_str": "148838019326164992"}, +{"created_at": "Mon, 19 Dec 2011 18:52:47 +0000", "from_user": "new_laptopdeals", "from_user_id": 401918634, "from_user_id_str": "401918634", "from_user_name": "best laptop deals", "geo": null, "id": 148838202785009660, "id_str": "148838202785009665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1617460036/amz_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1617460036/amz_normal.JPG", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#usa #amazon #deal #10: Apple MacBook Air MC506LL/A 11.6-Inch Laptop (OLD VERSION) http://t.co/QQDEJWpo #sale", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:47 +0000", "from_user": "qodahuku", "from_user_id": 431371363, "from_user_id_str": "431371363", "from_user_name": "Aceline Cracker", "geo": null, "id": 148838201652551680, "id_str": "148838201652551680", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680662721/28_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680662721/28_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @zyjydati: auto insurance florida rating http://t.co/bPmY1I7f", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:46 +0000", "from_user": "mtbrewer", "from_user_id": 36284854, "from_user_id_str": "36284854", "from_user_name": " Travis Brewer", "geo": null, "id": 148838197017841660, "id_str": "148838197017841664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1485551179/DO88XrN1_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1485551179/DO88XrN1_normal", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @Reuters_Biz: Home builder sentiment rises for third month: NAHB http://t.co/o0OwBAR6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:45 +0000", "from_user": "CECondesa", "from_user_id": 356431311, "from_user_id_str": "356431311", "from_user_name": "Cl\\u00EDnica Condesa", "geo": null, "id": 148838196321591300, "id_str": "148838196321591297", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1498907829/cec01_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1498907829/cec01_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "en estas vacaciones, cu\\u00EDdate, usa #condon http://t.co/tOqBZSj6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:45 +0000", "from_user": "Acdngirl", "from_user_id": 34763641, "from_user_id_str": "34763641", "from_user_name": "Laurie", "geo": null, "id": 148838195633721340, "id_str": "148838195633721344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695212240/Picture_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695212240/Picture_1_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "Um. Pass. RT @MelroseRedMile: @CameraguyRob @acdngirl It will mostly likely have a hockey focus. ;) CND vs. USA #2012WJC # MCHH", "to_user": "MelroseRedMile", "to_user_id": 53187791, "to_user_id_str": "53187791", "to_user_name": "Melrose Cafe & Bar", "in_reply_to_status_id": 148648833000288260, "in_reply_to_status_id_str": "148648833000288256"}, +{"created_at": "Mon, 19 Dec 2011 18:52:45 +0000", "from_user": "Carlos_Chuc", "from_user_id": 277160846, "from_user_id_str": "277160846", "from_user_name": "--- Este we", "geo": null, "id": 148838194262188030, "id_str": "148838194262188032", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1666723209/IMG-20110709-00087_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666723209/IMG-20110709-00087_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u00BFQue drogas usa el vocalista de zoe que ve monta\\u00F1as transparentes y anemonas de luz?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:44 +0000", "from_user": "Nath_Jimenez", "from_user_id": 346183369, "from_user_id_str": "346183369", "from_user_name": "Nathalia Jim\\u00E9nez", "geo": null, "id": 148838192274083840, "id_str": "148838192274083840", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1677761403/2222_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677761403/2222_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@negra_rolon @taguato_ hey jajajaja yo co queria decir EEUU y me sali\\u00F3 una A tipo USA jajajaja NO estaba ka'ure --'", "to_user": "negra_rolon", "to_user_id": 119837970, "to_user_id_str": "119837970", "to_user_name": "Jess Rol\\u00F3n Riveros.", "in_reply_to_status_id": 148835447160836100, "in_reply_to_status_id_str": "148835447160836097"}, +{"created_at": "Mon, 19 Dec 2011 18:52:44 +0000", "from_user": "jesssy_k", "from_user_id": 253598278, "from_user_id_str": "253598278", "from_user_name": "Jessica Almeida", "geo": null, "id": 148838191401664500, "id_str": "148838191401664512", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639007599/euuuuuul_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639007599/euuuuuul_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Me pergunte qualquer coisa. - \\u203A 1. Altura? 2. Peso? 3. Voc\\u00EA fuma? 4. Voc\\u00EA bebe? 5. Usa/j\\u00E1 usou drogas? 6.... http://t.co/tQ5Vw2g0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:44 +0000", "from_user": "ALLARK_NO", "from_user_id": 142093182, "from_user_id_str": "142093182", "from_user_name": "ALLIANCE ARKITEKTER", "geo": null, "id": 148838190390841340, "id_str": "148838190390841344", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1657154829/ALLARK_LOGO_TWITTER_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657154829/ALLARK_LOGO_TWITTER_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @anjathor: Pakken fra USA koster 35 dollar. Kurs p\\u00E5 5,850 blir kr. 204,75. MVA blir i f\\u00F8lge Posten 50,- + fortolling 117,-. Forst\\u00E5 det den som kan.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:44 +0000", "from_user": "binivaxyvo", "from_user_id": 419143172, "from_user_id_str": "419143172", "from_user_name": "Bridie Maymand", "geo": null, "id": 148838189170307070, "id_str": "148838189170307072", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1658809789/24_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658809789/24_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @hylemin: cheap car auto http://t.co/if3ttM35", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:43 +0000", "from_user": "DealsInUrTown", "from_user_id": 402331767, "from_user_id_str": "402331767", "from_user_name": "Deals in your Town", "geo": null, "id": 148838188134314000, "id_str": "148838188134313984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1616251238/bayarea_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616251238/bayarea_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Marsh I am incrdbly excited! I just found a group coupon to my favorite restaurant for 90 percent off. http://t.co/14PFQ9BA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:43 +0000", "from_user": "Clandestino17", "from_user_id": 382824090, "from_user_id_str": "382824090", "from_user_name": "Clandestino", "geo": null, "id": 148838186997661700, "id_str": "148838186997661697", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1567186641/Escanear003_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1567186641/Escanear003_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@mitos Me parece muy bien. Si alguien usa un cuchillo para asesinar, no se puede condenar al que los fabrica.", "to_user": "mitos", "to_user_id": 7888572, "to_user_id_str": "7888572", "to_user_name": "Jaime Sancho", "in_reply_to_status_id": 148835271352393730, "in_reply_to_status_id_str": "148835271352393728"}, +{"created_at": "Mon, 19 Dec 2011 18:52:42 +0000", "from_user": "eloisejcardona", "from_user_id": 305769272, "from_user_id_str": "305769272", "from_user_name": "Eloise Cardona", "geo": null, "id": 148838181717016580, "id_str": "148838181717016578", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702568946/images_1__normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702568946/images_1__normal", "source": "<a href="http://beallsblackfriday.com" rel="nofollow">beallsblackfridaydotcom</a>", "text": "Who Sells The Cheapest Vintage Pioneer Receivers-Polk Audio TSi400 Floorstanding http://t.co/i0EkI8je", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:42 +0000", "from_user": "TopTenEBooks", "from_user_id": 295241806, "from_user_id_str": "295241806", "from_user_name": "Richard Floyd", "geo": null, "id": 148838180290969600, "id_str": "148838180290969600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1423356096/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1423356096/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #19 Water for Elephants: A Novel: As a young man, Jacob Jankowski was tossed by fate onto a rickety t... http://t.co/M12sA4te", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:41 +0000", "from_user": "mariapaulaEV", "from_user_id": 135608507, "from_user_id_str": "135608507", "from_user_name": "Maria Paula \\u263A\\u263B", "geo": null, "id": 148838179426926600, "id_str": "148838179426926593", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699112147/390567_215776428491885_100001785874055_484031_953749734_a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699112147/390567_215776428491885_100001785874055_484031_953749734_a_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "clara usa meu msn na casa dela, que bonito, ai eu entro aqui e ela entra l\\u00E1, que monito", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:41 +0000", "from_user": "TopTenEBooks", "from_user_id": 295241806, "from_user_id_str": "295241806", "from_user_name": "Richard Floyd", "geo": null, "id": 148838178726490100, "id_str": "148838178726490113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1423356096/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1423356096/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #6518 The Misanthrope's Guide to Life: (Go Away!): Misanthrope, n.: 1.) One who hates mankind; a curm... http://t.co/tgoHO2lv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:41 +0000", "from_user": "TopTenEBooks", "from_user_id": 295241806, "from_user_id_str": "295241806", "from_user_name": "Richard Floyd", "geo": null, "id": 148838177346555900, "id_str": "148838177346555904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1423356096/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1423356096/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #318 Crazy For You: ** Nominated for \"Best Contemporary Romance of 2010\" at The Romance Reviews **Cra... http://t.co/0piIx5Th", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:41 +0000", "from_user": "Doraivonn", "from_user_id": 33409600, "from_user_id_str": "33409600", "from_user_name": "Dora Martinez", "geo": null, "id": 148838175865966600, "id_str": "148838175865966593", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1560241088/Oto_o_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1560241088/Oto_o_normal", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:40 +0000", "from_user": "TopTenEBooks", "from_user_id": 295241806, "from_user_id_str": "295241806", "from_user_name": "Richard Floyd", "geo": null, "id": 148838175207469060, "id_str": "148838175207469056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1423356096/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1423356096/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #218 Alcatraz: A Definitive History of the Penitentiary Years: Now completely revised and updated! NO... http://t.co/LpgTqjHj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:40 +0000", "from_user": "TopTenEBooks", "from_user_id": 295241806, "from_user_id_str": "295241806", "from_user_name": "Richard Floyd", "geo": null, "id": 148838173928206340, "id_str": "148838173928206336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1423356096/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1423356096/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #2217 How to Date a Werewolf (Rylie Cruz Series): Romance can be a hairy business--especially when yo... http://t.co/dZqLejsD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:39 +0000", "from_user": "MyGirlNesh", "from_user_id": 105767786, "from_user_id_str": "105767786", "from_user_name": "Cannon (cannon)", "geo": null, "id": 148838171373862900, "id_str": "148838171373862912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680973668/MyGirlNesh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680973668/MyGirlNesh_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "\\uD83D\\uDE1ART @savagejedi: Drinking | watching espn | thinking abt my lady | thinking abt fam | thinking abt USA | this shit cray", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:39 +0000", "from_user": "WillDibble", "from_user_id": 347021987, "from_user_id_str": "347021987", "from_user_name": "Will Sumwalt", "geo": null, "id": 148838171269013500, "id_str": "148838171269013504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687068912/380256_2290200659796_1392376548_32235506_2052343563_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687068912/380256_2290200659796_1392376548_32235506_2052343563_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@mickeyhowell hell yeah #MERICA #USA!!!", "to_user": "mickeyhowell", "to_user_id": 325924202, "to_user_id_str": "325924202", "to_user_name": "Mickey Howell", "in_reply_to_status_id": 148834661370576900, "in_reply_to_status_id_str": "148834661370576896"}, +{"created_at": "Mon, 19 Dec 2011 18:52:39 +0000", "from_user": "gj7meneld", "from_user_id": 370495781, "from_user_id_str": "370495781", "from_user_name": "Norberto Segura", "geo": null, "id": 148838168286855170, "id_str": "148838168286855168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1535332189/72_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1535332189/72_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "HQRP Replacement AC Adapter / Charger compatible with Sony HandyCam HDR-SR220, DCR-SX85, DCR-SX65, DCR-SX45 Camcorder with USA Cord & Eu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:39 +0000", "from_user": "TameikaErne1017", "from_user_id": 435503892, "from_user_id_str": "435503892", "from_user_name": "Tameika Erne", "geo": null, "id": 148838168278482940, "id_str": "148838168278482945", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "http://t.co/AdK4WxRc U2 China Julia Roberts USA Garden Suit Service", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:39 +0000", "from_user": "bicionudos", "from_user_id": 314713566, "from_user_id_str": "314713566", "from_user_name": "Bicionudos", "geo": null, "id": 148838167531892740, "id_str": "148838167531892736", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1507462763/BicionudosTwitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1507462763/BicionudosTwitter_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "\\u00A1Usa el Casco! Campa\\u00F1a de Seguridad Vial Plaza Sesamo BID FIA. Fundacion Cavat Nicole Paredes http://t.co/7qJS7fLQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:38 +0000", "from_user": "Heart_Selenator", "from_user_id": 419074829, "from_user_id_str": "419074829", "from_user_name": "I \\u2665 U ~ SG", "geo": null, "id": 148838167125041150, "id_str": "148838167125041152", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700502819/tumblr_lpq3w60O8z1qlfj1f_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700502819/tumblr_lpq3w60O8z1qlfj1f_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SelenaMyPeace: @HechosSMGomez Estamos todos destrozados! Tengo ganas de ir a USA buscarl\\u00E1 & abrazarla bien fuerte para que sepa que nos va a tener SIEMPRE!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:37 +0000", "from_user": "wokogeb", "from_user_id": 432308536, "from_user_id_str": "432308536", "from_user_name": "Vaideha Halle", "geo": null, "id": 148838162175770620, "id_str": "148838162175770624", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682846153/8_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682846153/8_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @funycynaxoh: principal loan forgiveness http://t.co/2kxXQ4WU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:37 +0000", "from_user": "Luchosaur", "from_user_id": 52170549, "from_user_id_str": "52170549", "from_user_name": "Luis Bracho", "geo": null, "id": 148838161584365570, "id_str": "148838161584365568", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1650293241/IMG01442-20111019-1309_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650293241/IMG01442-20111019-1309_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @Poklouz: Carlos usa Avast y Edward Norton.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:37 +0000", "from_user": "vicvitturi_", "from_user_id": 402117253, "from_user_id_str": "402117253", "from_user_name": "vicson victturi shak", "geo": null, "id": 148838159176839170, "id_str": "148838159176839169", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702246292/Imagem_032_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702246292/Imagem_032_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:37 +0000", "from_user": "WGNWeatherGuy", "from_user_id": 94097976, "from_user_id_str": "94097976", "from_user_name": "Tim McGill", "geo": null, "id": 148838158983888900, "id_str": "148838158983888896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/555055828/mewgn_normal.bmp", "profile_image_url_https": "https://si0.twimg.com/profile_images/555055828/mewgn_normal.bmp", "source": "<a href="http://www.usatoday.com/ipad" rel="nofollow">USA TODAY for iPad</a>", "text": "Scientist wants to make snowflake formation crystal-clear http://t.co/1hRWZrlz via USA TODAY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:36 +0000", "from_user": "g8erlaw68", "from_user_id": 239026545, "from_user_id_str": "239026545", "from_user_name": "Michael", "geo": null, "id": 148838157847248900, "id_str": "148838157847248897", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1650544016/FSU_SUCKS2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650544016/FSU_SUCKS2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Yet another reason 2 kick Bill Maher n the balls! #USA RT @YankeeMegInPHL: LOL RT @TBJprod: 25 ppl thought Lil Kim died http://t.co/gKfiK9kp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:35 +0000", "from_user": "OliDobbs", "from_user_id": 41916530, "from_user_id_str": "41916530", "from_user_name": "Oli Dobbs", "geo": null, "id": 148838151773888500, "id_str": "148838151773888512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1653404174/382282_283758664997743_100000908356138_842557_1769165919_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653404174/382282_283758664997743_100000908356138_842557_1769165919_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Ron Paul back on top in Iowa, new poll says http://t.co/xx4lyK3G", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:34 +0000", "from_user": "LSUJEFF", "from_user_id": 19218108, "from_user_id_str": "19218108", "from_user_name": "Jeff Ui", "geo": null, "id": 148838148791742460, "id_str": "148838148791742464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1648957882/9f1d82de-1ad2-457f-bdd7-2aa92344a4ae_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648957882/9f1d82de-1ad2-457f-bdd7-2aa92344a4ae_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @gopthinking: We have 625,000 miles of pipeline in USA, but the Keystone Pipeline is too dangerous! ROFL!\\n\\n#p2 #tcot #GOP #GOP2012", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:52:36 +0000", "from_user": "g8erlaw68", "from_user_id": 239026545, "from_user_id_str": "239026545", "from_user_name": "Michael", "geo": null, "id": 148838157847248900, "id_str": "148838157847248897", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1650544016/FSU_SUCKS2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650544016/FSU_SUCKS2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Yet another reason 2 kick Bill Maher n the balls! #USA RT @YankeeMegInPHL: LOL RT @TBJprod: 25 ppl thought Lil Kim died http://t.co/gKfiK9kp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:35 +0000", "from_user": "OliDobbs", "from_user_id": 41916530, "from_user_id_str": "41916530", "from_user_name": "Oli Dobbs", "geo": null, "id": 148838151773888500, "id_str": "148838151773888512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1653404174/382282_283758664997743_100000908356138_842557_1769165919_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653404174/382282_283758664997743_100000908356138_842557_1769165919_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Ron Paul back on top in Iowa, new poll says http://t.co/xx4lyK3G", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:34 +0000", "from_user": "LSUJEFF", "from_user_id": 19218108, "from_user_id_str": "19218108", "from_user_name": "Jeff Ui", "geo": null, "id": 148838148791742460, "id_str": "148838148791742464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1648957882/9f1d82de-1ad2-457f-bdd7-2aa92344a4ae_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648957882/9f1d82de-1ad2-457f-bdd7-2aa92344a4ae_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @gopthinking: We have 625,000 miles of pipeline in USA, but the Keystone Pipeline is too dangerous! ROFL!\\n\\n#p2 #tcot #GOP #GOP2012", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:33 +0000", "from_user": "LanceTueller", "from_user_id": 437655951, "from_user_id_str": "437655951", "from_user_name": "Lance Tueller", "geo": null, "id": 148838146119962620, "id_str": "148838146119962624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": null, "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Morewood USA: Oh Lord it's hard to be humble... http://t.co/NkBQzped", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:33 +0000", "from_user": "MnlUribe", "from_user_id": 81175014, "from_user_id_str": "81175014", "from_user_name": "Manuel Uribe", "geo": null, "id": 148838145071394800, "id_str": "148838145071394816", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1337717009/IMG_0955_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1337717009/IMG_0955_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@GabiRo14 Jajajaja, de seguro que est\\u00E1 vendiendo lubricantes y vainas sexuales. Claro, como ella no los usa por ser tan fea..", "to_user": "GabiRo14", "to_user_id": 180637053, "to_user_id_str": "180637053", "to_user_name": "Gabriela'Rodriguez", "in_reply_to_status_id": 148836573667008500, "in_reply_to_status_id_str": "148836573667008512"}, +{"created_at": "Mon, 19 Dec 2011 18:52:32 +0000", "from_user": "DrPilantra", "from_user_id": 60165556, "from_user_id_str": "60165556", "from_user_name": "Neto Melo", "geo": null, "id": 148838141950832640, "id_str": "148838141950832640", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692908088/kkk_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692908088/kkk_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "gorda que usa blusa curta: POR FAVOR PARA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:31 +0000", "from_user": "luizaportalupi", "from_user_id": 184863129, "from_user_id_str": "184863129", "from_user_name": "do Paulo :3", "geo": null, "id": 148838134891806720, "id_str": "148838134891806721", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1661039379/381711_230464800351651_100001643982713_647075_407309399_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661039379/381711_230464800351651_100001643982713_647075_407309399_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @DialogoDeAlunos: #Eu: - Voc\\u00EA usa qual operadora? #Colega: - A tim! #Eu: - Sa\\u00FAde! #DialogoDeAlunos", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:30 +0000", "from_user": "JobsQ", "from_user_id": 375000520, "from_user_id_str": "375000520", "from_user_name": "Jobs Q", "geo": null, "id": 148838132769493000, "id_str": "148838132769492992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1559998584/Ball12_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1559998584/Ball12_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Click on Job Now: Communications Operator - City of Orangeburg - Orangeburg, SC http://t.co/unc2PO33", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:30 +0000", "from_user": "Berktronics", "from_user_id": 400208733, "from_user_id_str": "400208733", "from_user_name": "Berktronics", "geo": null, "id": 148838132677222400, "id_str": "148838132677222400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1651182539/speaker-icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651182539/speaker-icon_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Apple Watch: T-Mobile USA Spectrum Refarming Lets Some iPhone Users Access 3G Data Speeds http://t.co/UCTScatq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:30 +0000", "from_user": "JobsQ", "from_user_id": 375000520, "from_user_id_str": "375000520", "from_user_name": "Jobs Q", "geo": null, "id": 148838131704135680, "id_str": "148838131704135680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1559998584/Ball12_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1559998584/Ball12_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Click on Job Now: Data Entry - Typist Work From Home - 2WAH - Houston, TX http://t.co/unc2PO33", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:30 +0000", "from_user": "JobsQ", "from_user_id": 375000520, "from_user_id_str": "375000520", "from_user_name": "Jobs Q", "geo": null, "id": 148838130680741900, "id_str": "148838130680741888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1559998584/Ball12_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1559998584/Ball12_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Click on Job Now: Supply Clerk - Mobile Infirmary Medical Center - Mobile, AL http://t.co/unc2PO33", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:29 +0000", "from_user": "JobsQ", "from_user_id": 375000520, "from_user_id_str": "375000520", "from_user_name": "Jobs Q", "geo": null, "id": 148838129095286800, "id_str": "148838129095286785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1559998584/Ball12_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1559998584/Ball12_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Click on Job Now: Meter Reader PT - Local 659 - Pacificorp - Roseburg, OR http://t.co/unc2PO33", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:29 +0000", "from_user": "Buhowl", "from_user_id": 7570522, "from_user_id_str": "7570522", "from_user_name": "Jes\\u00FAs Cuevas Pe\\u00F1a", "geo": null, "id": 148838128499687420, "id_str": "148838128499687424", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1572073468/caricatura_buho_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572073468/caricatura_buho_normal.png", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:29 +0000", "from_user": "Wavaqwo", "from_user_id": 431688038, "from_user_id_str": "431688038", "from_user_name": "Wava Mcentee", "geo": null, "id": 148838128436789250, "id_str": "148838128436789248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681009426/4rlsxb454p_134297279_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681009426/4rlsxb454p_134297279_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "USA Industries S439 Domestic Starter: USA Drive Shafts S439 http://t.co/VW394UA6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:29 +0000", "from_user": "VernaS", "from_user_id": 17222503, "from_user_id_str": "17222503", "from_user_name": "VernaS", "geo": null, "id": 148838126079578100, "id_str": "148838126079578113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1597233397/White_Tiger_Face_Prowl_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1597233397/White_Tiger_Face_Prowl_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Nuts /permit violations/fined ... in usa history??.. Einstien, Tesla, Ford, Edison, Mark Twain , Barn Storming Wright Bros.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:28 +0000", "from_user": "rockerick113", "from_user_id": 164108865, "from_user_id_str": "164108865", "from_user_name": "Erick Catalan", "geo": null, "id": 148838124863242240, "id_str": "148838124863242241", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1679918722/tumblr_lgmx5zxQ7g1qdc06jo1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679918722/tumblr_lgmx5zxQ7g1qdc06jo1_500_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "me he dado cuenta q ya nadie usa la expresion LMFAO debido al grupo musical.....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:28 +0000", "from_user": "Bellaco_Leon", "from_user_id": 202386842, "from_user_id_str": "202386842", "from_user_name": "David", "geo": null, "id": 148838124821299200, "id_str": "148838124821299200", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1583144070/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583144070/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@wisinyyandel felicidades papa cumple muchos mas saludos desde Pennsylvania USA ya tu sae bendiciones #FelixCumplea\\u00F1osWisin", "to_user": "wisinyyandel", "to_user_id": 25410548, "to_user_id_str": "25410548", "to_user_name": "Wisin y Yandel"}, +{"created_at": "Mon, 19 Dec 2011 18:52:28 +0000", "from_user": "jaybs", "from_user_id": 14324310, "from_user_id_str": "14324310", "from_user_name": "John B Sheffield", "geo": null, "id": 148838124766769150, "id_str": "148838124766769152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1671067029/jaybstwitterfacebookdec10_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671067029/jaybstwitterfacebookdec10_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Spiceboy81 Not impressed with the Kindle, now the new Amazon Kindle Fire! looks cool, out in USA now, here early 2012! J", "to_user": "Spiceboy81", "to_user_id": 22691361, "to_user_id_str": "22691361", "to_user_name": "Paul Spicer", "in_reply_to_status_id": 148836669297147900, "in_reply_to_status_id_str": "148836669297147904"}, +{"created_at": "Mon, 19 Dec 2011 18:52:28 +0000", "from_user": "rafaxp91", "from_user_id": 344369539, "from_user_id_str": "344369539", "from_user_name": "Rafa Rodriguez", "geo": null, "id": 148838123047108600, "id_str": "148838123047108609", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1601852895/shirt_vgcats_bloodylies_LRG_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601852895/shirt_vgcats_bloodylies_LRG_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Vamos no sean malvados y contesten, \\u00BFqui\\u00E9n mas usa Whatsapp? Es para poder agregarlos a los contactos de mi iPod :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:28 +0000", "from_user": "LizhetUsmile", "from_user_id": 159420308, "from_user_id_str": "159420308", "from_user_name": "LoveCanadianBoy \\u2588\\u2665\\u2588 ", "geo": null, "id": 148838121864302600, "id_str": "148838121864302592", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627630232/309852_258949520822486_100001223215009_801387_835360584_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627630232/309852_258949520822486_100001223215009_801387_835360584_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SelenaMyPeace: @HechosSMGomez Estamos todos destrozados! Tengo ganas de ir a USA buscarl\\u00E1 & abrazarla bien fuerte para que sepa que nos va a tener SIEMPRE!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:27 +0000", "from_user": "_Adicta", "from_user_id": 123965194, "from_user_id_str": "123965194", "from_user_name": "La que hace spam.", "geo": null, "id": 148838118336901120, "id_str": "148838118336901121", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "JACKEMATE USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:27 +0000", "from_user": "GeoMachado_", "from_user_id": 116742929, "from_user_id_str": "116742929", "from_user_name": "Geovanna Machado", "geo": null, "id": 148838118261395460, "id_str": "148838118261395456", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1559722328/HPIM1583_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1559722328/HPIM1583_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Me pergunte qualquer coisa. - \\u203A 1. Altura? 2. Peso? 3. Voc\\u00EA fuma? 4. Voc\\u00EA bebe? 5. Usa/j\\u00E1 usou drogas? 6.... http://t.co/K89aiyP6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:26 +0000", "from_user": "SheilaSabino", "from_user_id": 77864879, "from_user_id_str": "77864879", "from_user_name": "Sheila Sabino", "geo": null, "id": 148838115602210800, "id_str": "148838115602210817", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702236766/joelma_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702236766/joelma_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Aham.. KKKKKKKKKKKKKKK' S\\u00F3 porque a gente sabe a linha de xamp\\u00FA que a mam\\u00E3e usa *-*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:26 +0000", "from_user": "CoronadoNow", "from_user_id": 410792739, "from_user_id_str": "410792739", "from_user_name": "Coronado Now", "geo": null, "id": 148838115035971600, "id_str": "148838115035971584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1635967792/helo_pic_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635967792/helo_pic_sm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "US #CERT Personal Device Security During the Holiday Season: As the winter holiday travel season begins, US-CERT... http://t.co/S3YWY9LB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:26 +0000", "from_user": "NerdBusters", "from_user_id": 177389362, "from_user_id_str": "177389362", "from_user_name": "Nerd Busters", "geo": null, "id": 148838112838156300, "id_str": "148838112838156288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1124468919/nerdbusters_logo_square_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1124468919/nerdbusters_logo_square_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Personal Device Security During the Holiday Season: As the winter holiday travel season begins, US-CERT would li... http://t.co/YVdmo7jH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:25 +0000", "from_user": "infotechmike", "from_user_id": 136107694, "from_user_id_str": "136107694", "from_user_name": "Michael Stanton", "geo": null, "id": 148838111701504000, "id_str": "148838111701504002", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1351806156/woodchuck_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1351806156/woodchuck_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Personal Device Security During the Holiday Season: As the winter holiday travel season begins, US-CERT would li... http://t.co/uhF2Ucpd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:26 +0000", "from_user": "claux_85", "from_user_id": 142559891, "from_user_id_str": "142559891", "from_user_name": "ariz", "geo": null, "id": 148838111462428670, "id_str": "148838111462428672", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1638894137/DSC03799_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638894137/DSC03799_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "wooooooww A MI ME GUSTA MAS ESTE CHICO MALO QUE USA @converse_mexico ... ;D http://t.co/u7jvZ5XM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:25 +0000", "from_user": "gloriamayela", "from_user_id": 157773170, "from_user_id_str": "157773170", "from_user_name": "gloria mayela", "geo": null, "id": 148838110883610620, "id_str": "148838110883610625", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1509270272/SDC11401_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509270272/SDC11401_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "la gente usa mascaras", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:25 +0000", "from_user": "pkoshakji", "from_user_id": 43841203, "from_user_id_str": "43841203", "from_user_name": "Peter Koshakji", "geo": null, "id": 148838110845878270, "id_str": "148838110845878272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1573027551/Kishakji_Peter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1573027551/Kishakji_Peter_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Personal Device Security During the Holiday Season: As the winter holiday travel season begins, US-CERT would li... http://t.co/Alko8pFk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:25 +0000", "from_user": "directnewsart", "from_user_id": 108008516, "from_user_id_str": "108008516", "from_user_name": "Direct News Articles", "geo": null, "id": 148838108945850370, "id_str": "148838108945850369", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Watch San Diego Chargers vs Baltimore Ravens Live Stream Football USA NFL 18th December\\u2026 http://t.co/HyXk6W5M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:24 +0000", "from_user": "Melissa_Foster", "from_user_id": 27873266, "from_user_id_str": "27873266", "from_user_name": "Melissa Foster", "geo": null, "id": 148838107079385100, "id_str": "148838107079385089", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/523956034/MelissaFoster_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/523956034/MelissaFoster_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "Excited my book is recommended on USA Today book blog. COME BACK TO ME http://t.co/fgNrYaC7 #IAN1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:22 +0000", "from_user": "buenolulu", "from_user_id": 282173241, "from_user_id_str": "282173241", "from_user_name": "Luana Bueno ", "geo": null, "id": 148838098468487170, "id_str": "148838098468487168", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686053347/18112011684_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686053347/18112011684_1_normal.jpg", "source": "<a href="http://messaging.nokia.com/site/main.do" rel="nofollow"> Ovi by Nokia </a>", "text": "Nao entendo essas veia que usa rel\\u00F3gio da champion com pulseira rosa e pinta as unhas de verde n\\u00E9 masssss", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:22 +0000", "from_user": "Penguirl", "from_user_id": 288936084, "from_user_id_str": "288936084", "from_user_name": "Tina K.", "geo": null, "id": 148838098392981500, "id_str": "148838098392981505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1581164372/AppleLogoClassicTS_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1581164372/AppleLogoClassicTS_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @thejenomatic: AMA's motorcyclist of the year is a WOMAN RIDER! Thank her for the change of the lead law! http://t.co/xZRYUoMp\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:22 +0000", "from_user": "MaherFarah", "from_user_id": 16551496, "from_user_id_str": "16551496", "from_user_name": "Maher Farah", "geo": null, "id": 148838097575084030, "id_str": "148838097575084032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700613106/395666_660779627283_211201924_33741581_476359932_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700613106/395666_660779627283_211201924_33741581_476359932_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @MSU_Basketball: #Spartans move up to No. 19 in AP Top 25 and No. 20 in ESPN/USA Today Coaches Poll.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:20 +0000", "from_user": "Loop1ng", "from_user_id": 54740760, "from_user_id_str": "54740760", "from_user_name": "Looping", "geo": null, "id": 148838091468177400, "id_str": "148838091468177408", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1625643817/Capture_d_e_cran_2011-05-17_a__17.20.09_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1625643817/Capture_d_e_cran_2011-05-17_a__17.20.09_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Consomer made in France\\u2026 Mon fauteuil roulant est italien, mes converses m\\u00EAme pas made in USA, et mon samsung cor\\u00E9en fabriqu\\u00E9 en chine !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:19 +0000", "from_user": "qyqiderohuv", "from_user_id": 433723831, "from_user_id_str": "433723831", "from_user_name": "Farih Barthelemy", "geo": null, "id": 148838086967689200, "id_str": "148838086967689216", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1686008062/1079_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686008062/1079_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "auto insurance agents columbia sc http://t.co/Sv9t1xkh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:19 +0000", "from_user": "geek_tiadh", "from_user_id": 105219666, "from_user_id_str": "105219666", "from_user_name": "g33k d1 p1nd4 3 vcs\\u263A", "geo": null, "id": 148838084446928900, "id_str": "148838084446928896", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698592347/IMG10479_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698592347/IMG10479_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@01HuskySiberian a carolzinha irm\\u00E3 da denise? e.e a japa baixinha e etc q usa aparelho ? \\u00B4pldasp\\u00B4l", "to_user": "01HuskySiberian", "to_user_id": 227847924, "to_user_id_str": "227847924", "to_user_name": "foREVer", "in_reply_to_status_id": 148837921485635600, "in_reply_to_status_id_str": "148837921485635584"}, +{"created_at": "Mon, 19 Dec 2011 18:52:18 +0000", "from_user": "awesomezilla", "from_user_id": 19829472, "from_user_id_str": "19829472", "from_user_name": "Charles Whetstone", "geo": null, "id": 148838081083080700, "id_str": "148838081083080704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1189343765/dabs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1189343765/dabs_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Shouldn't have been hipster hitler last night. Almost pooped my pants on the way to work. Oh, karma. #USA http://t.co/NGwfPiDu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:18 +0000", "from_user": "verrieryzbt2", "from_user_id": 395965247, "from_user_id_str": "395965247", "from_user_name": "Verrier Stewart", "geo": null, "id": 148838080428769280, "id_str": "148838080428769280", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1601052397/imagesCAJMAJIG_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601052397/imagesCAJMAJIG_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@DonnieKuzma http://t.co/ttjjF9QQ", "to_user": "DonnieKuzma", "to_user_id": 193348023, "to_user_id_str": "193348023", "to_user_name": "Donnie Kuzma", "in_reply_to_status_id": 148774902223220740, "in_reply_to_status_id_str": "148774902223220736"}, +{"created_at": "Mon, 19 Dec 2011 18:52:17 +0000", "from_user": "jamjoom44", "from_user_id": 305530741, "from_user_id_str": "305530741", "from_user_name": "\\u0633\\u0627\\u0631\\u0642 \\u0627\\u0644\\u0644\\u064A\\u0644", "geo": null, "id": 148838078319050750, "id_str": "148838078319050752", "iso_language_code": "ar", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1431189380/IMG00134-20110707-1640_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1431189380/IMG00134-20110707-1640_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/cLEpCpr9 \\u0627\\u0644\\u0628\\u0644\\u0627\\u062F \\u0627\\u0644\\u0642\\u062F\\u064A\\u0645 \\u0635\\u0648\\u0631\\u0629 \\u0644\\u0644\\u0648\\u0642\\u0641\\u0629 \\u0627\\u0644\\u062A\\u0638\\u0627\\u0645\\u0646\\u064A\\u0629 \\u0627\\u0645\\u0627\\u0645 \\u0645\\u0646\\u0632\\u0644 \\u0633\\u0645\\u0627\\u062D\\u0629 \\u0622\\u064A\\u0629 \\u0627\\u0644\\u0644\\u0647 \\u0627\\u0644\\u0634\\u064A\\u062E \\u0639\\u0628\\u062F\\u0627\\u0644\\u062C\\u0644\\u064A\\u0644 \\u0627\\u0644\\u0645\\u0642\\u062F\\u0627\\u062F #BAHRAIN #usa #uk #iraq @iran", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:16 +0000", "from_user": "imageswebsites", "from_user_id": 27708398, "from_user_id_str": "27708398", "from_user_name": "Images Websites", "geo": null, "id": 148838074699362300, "id_str": "148838074699362305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/128611599/Honey-Glazed-Donut_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/128611599/Honey-Glazed-Donut_normal.jpg", "source": "<a href="http://www.ajaymatharu.com/" rel="nofollow">Tweet Old Post</a>", "text": "http://t.co/YROy3M2q", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:15 +0000", "from_user": "P3rliss", "from_user_id": 117926964, "from_user_id_str": "117926964", "from_user_name": "Perlis Ogando", "geo": null, "id": 148838069330657280, "id_str": "148838069330657280", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1690170006/331397689_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690170006/331397689_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @BoletasGratis: P3rliss Usa el HT #EllaQuiereCualto y GANAS Boletas VIP TU + 2 acompa\\u00F1antes para Joswa In Da House @ ZUO -Malecon Center", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:14 +0000", "from_user": "furniture_4sale", "from_user_id": 125630987, "from_user_id_str": "125630987", "from_user_name": "PennySaver Furniture", "geo": null, "id": 148838062665895940, "id_str": "148838062665895936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/770053047/psusa_bigger_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/770053047/psusa_bigger_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Southwest Style Armoire: Southwest Style Armoire\\nThe Armoire has two drawers and two removabl... http://t.co/4YVw5s7F Furniture for sale", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:13 +0000", "from_user": "furniture_4sale", "from_user_id": 125630987, "from_user_id_str": "125630987", "from_user_name": "PennySaver Furniture", "geo": null, "id": 148838060753301500, "id_str": "148838060753301504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/770053047/psusa_bigger_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/770053047/psusa_bigger_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dresser & Chest: Dresser & Chest are of all wood in good condition.\\nThe Dresser is 53\"w x 32\"... http://t.co/MDsDPS39 Furniture for sale", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:13 +0000", "from_user": "RandulisDelSwag", "from_user_id": 361418871, "from_user_id_str": "361418871", "from_user_name": "\\u212C\\u212F\\u2113i\\u212F\\u212C\\u212F\\u211B\\u2665", "geo": null, "id": 148838058270277630, "id_str": "148838058270277632", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670271470/296754_1990964734610_1258132827_31771758_1751367057_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670271470/296754_1990964734610_1258132827_31771758_1751367057_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SelenaNoEsReal: Ese momento inc\\u00F3modo cuando todo el mundo se da cuenta de que Selena Gomez usa PlayBack.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:12 +0000", "from_user": "profchandler", "from_user_id": 14343689, "from_user_id_str": "14343689", "from_user_name": "Profchandler", "geo": null, "id": 148838057985052670, "id_str": "148838057985052673", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1609253966/African_map_on_boy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609253966/African_map_on_boy_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "I think what happened to banking mortgages & real estate in USA is something like a horror flick except the victims bleed internally", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:12 +0000", "from_user": "HardryTellez", "from_user_id": 257638804, "from_user_id_str": "257638804", "from_user_name": "Hardry Tellez", "geo": null, "id": 148838057842442240, "id_str": "148838057842442240", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686289988/JIJ2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686289988/JIJ2_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:12 +0000", "from_user": "AliiceeA", "from_user_id": 372011123, "from_user_id_str": "372011123", "from_user_name": "'Aliicee Edwards", "geo": null, "id": 148838056932290560, "id_str": "148838056932290560", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700867695/w.lentestwklns_normal.jpg-large", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700867695/w.lentestwklns_normal.jpg-large", "source": "<a href="http://twitter.com/">web</a>", "text": "Yo Soy De USA<3 Y Tu?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:10 +0000", "from_user": "DTNUSA", "from_user_id": 219913533, "from_user_id_str": "219913533", "from_user_name": "DTN USA", "geo": null, "id": 148838048896004100, "id_str": "148838048896004097", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696502703/DTN_USA_DEC_16_2011_CORRECTED_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696502703/DTN_USA_DEC_16_2011_CORRECTED_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "DTN USA: Struggling Santorum bets big on Iowa: DES MOINES, Iowa, Dec 19 (Reuters) - Rick Santorum\\nthought he had... http://t.co/zI3qs0kv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:10 +0000", "from_user": "Bahrain_Ctzn", "from_user_id": 414552960, "from_user_id_str": "414552960", "from_user_name": "Ba7rainiya", "geo": null, "id": 148838048833089540, "id_str": "148838048833089536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1643342622/790B618A-9637-4AFF-B10C-1D0FD6D89F7D_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643342622/790B618A-9637-4AFF-B10C-1D0FD6D89F7D_normal", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @Al3AMEED_70: \"@iScrat: @Al3AMEED_70 @7areghum Thugs burn tires opposite to AlMameer local road 8:50pm #Bahrain @Fathe7hum\"#USembassy #uk #usa #GCC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:10 +0000", "from_user": "DTNUSA", "from_user_id": 219913533, "from_user_id_str": "219913533", "from_user_name": "DTN USA", "geo": null, "id": 148838047641903100, "id_str": "148838047641903104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696502703/DTN_USA_DEC_16_2011_CORRECTED_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696502703/DTN_USA_DEC_16_2011_CORRECTED_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "DTN USA: Hungary media, church laws unconstitutional -court: BUDAPEST, Dec 19 (Reuters) - Hungary's constitution... http://t.co/fR1FA7cD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:10 +0000", "from_user": "cocejem", "from_user_id": 433579700, "from_user_id_str": "433579700", "from_user_name": "Brygitta Macelharge", "geo": null, "id": 148838047432179700, "id_str": "148838047432179712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685561486/1350_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685561486/1350_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "auto insurance total loss tips http://t.co/5edibK8v", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:10 +0000", "from_user": "DTNUSA", "from_user_id": 219913533, "from_user_id_str": "219913533", "from_user_name": "DTN USA", "geo": null, "id": 148838046085816320, "id_str": "148838046085816322", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696502703/DTN_USA_DEC_16_2011_CORRECTED_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696502703/DTN_USA_DEC_16_2011_CORRECTED_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "DTN USA: UPDATE 2-Siemens hires ex-US commander in Afghanistan: * ex-Army Lieutenant, ex-execs of Lockheed, GE a... http://t.co/DtzN3PXC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:09 +0000", "from_user": "Wdough", "from_user_id": 39653591, "from_user_id_str": "39653591", "from_user_name": "willy dough", "geo": null, "id": 148838045175660540, "id_str": "148838045175660544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/574362078/silhouette_portrait-4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/574362078/silhouette_portrait-4_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "http://t.co/Kgx99vxA : Fed's Lacker sees 2-2.5 percent growth in 2012 #Economy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:09 +0000", "from_user": "DTNUSA", "from_user_id": 219913533, "from_user_id_str": "219913533", "from_user_name": "DTN USA", "geo": null, "id": 148838045016268800, "id_str": "148838045016268800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696502703/DTN_USA_DEC_16_2011_CORRECTED_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696502703/DTN_USA_DEC_16_2011_CORRECTED_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "DTN USA: European shares edge up; defensives gain: \\n \\n http://t.co/jtILSBMb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:09 +0000", "from_user": "mozixuryda", "from_user_id": 433917218, "from_user_id_str": "433917218", "from_user_name": "Frantisek Daly", "geo": null, "id": 148838043896393730, "id_str": "148838043896393729", "iso_language_code": "fi", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687329758/1393_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687329758/1393_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "loan on line http://t.co/IUoeNrm2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:09 +0000", "from_user": "mydreamwithyou", "from_user_id": 113054734, "from_user_id_str": "113054734", "from_user_name": "Vale \\u2654", "geo": null, "id": 148838043627954180, "id_str": "148838043627954176", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691872832/SMG01_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691872832/SMG01_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SelenaMyPeace: @HechosSMGomez Estamos todos destrozados! Tengo ganas de ir a USA buscarl\\u00E1 & abrazarla bien fuerte para que sepa que nos va a tener SIEMPRE!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:09 +0000", "from_user": "eloisejcardona", "from_user_id": 305769272, "from_user_id_str": "305769272", "from_user_name": "Eloise Cardona", "geo": null, "id": 148838042835226620, "id_str": "148838042835226626", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702568946/images_1__normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702568946/images_1__normal", "source": "<a href="http://beallsblackfriday.com" rel="nofollow">beallsblackfridaydotcom</a>", "text": "Reviews Vintage Pioneer Receivers-Sony SSF-7000 Floor-Standing 4-way Speaker http://t.co/nIB758a3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:09 +0000", "from_user": "minefreeworld", "from_user_id": 219027602, "from_user_id_str": "219027602", "from_user_name": "ICBL", "geo": null, "id": 148838041727942660, "id_str": "148838041727942658", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1583717731/P4P_square__jpg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583717731/P4P_square__jpg_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#DOS (Shapiro): #US is currently undergoing a review of its policy on #banlandmines, observes @MineBanTreaty mtgs: http://t.co/e7pnIuak", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:08 +0000", "from_user": "designel", "from_user_id": 21709309, "from_user_id_str": "21709309", "from_user_name": "Ellen Varitimos", "geo": null, "id": 148838040746463230, "id_str": "148838040746463234", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/82242257/designell_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/82242257/designell_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Administrative Assistant - Oracle Team - Ahold USA - Quincy, MA http://t.co/vMZIvfTl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:08 +0000", "from_user": "pandalecal", "from_user_id": 105132666, "from_user_id_str": "105132666", "from_user_name": "philip", "geo": null, "id": 148838039513333760, "id_str": "148838039513333761", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696785084/af.jpg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696785084/af.jpg_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:08 +0000", "from_user": "Perfinstals", "from_user_id": 104833186, "from_user_id_str": "104833186", "from_user_name": "Tamburrino Roberto", "geo": null, "id": 148838038015975420, "id_str": "148838038015975424", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1453992791/Tamburrino_Roberto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1453992791/Tamburrino_Roberto_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "USA stato dove si giura sulla bibbia per avere cittadinanza o parlare al tribuna(@YouTube http://t.co/FFMCAd5G)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:07 +0000", "from_user": "Zwitscherland", "from_user_id": 114734272, "from_user_id_str": "114734272", "from_user_name": "Thomas", "geo": null, "id": 148838035709100030, "id_str": "148838035709100032", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1686877663/zwitscherland_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686877663/zwitscherland_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Vage Drohungen per #Twitter sind erlaubt, auch wenn sie am Telefon als Stalking strafbar w\\u00E4ren. http://t.co/73r4E7de #usa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:06 +0000", "from_user": "gseitz", "from_user_id": 62700058, "from_user_id_str": "62700058", "from_user_name": "Greg Seitz", "geo": null, "id": 148838031820980220, "id_str": "148838031820980225", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1508826299/Seitz_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1508826299/Seitz_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @OVCSports: Murray State cracks USA Today/ESPN Coaches Poll for first time this season, coming in at No. 22: http://t.co/ZO7XOMPP #OVC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:06 +0000", "from_user": "slimy_", "from_user_id": 379431085, "from_user_id_str": "379431085", "from_user_name": "Paula Iafrate", "geo": null, "id": 148838030923411460, "id_str": "148838030923411456", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1603609728/ck_012_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1603609728/ck_012_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:06 +0000", "from_user": "Cauan_Valentine", "from_user_id": 148808517, "from_user_id_str": "148808517", "from_user_name": "Reishin\\u2122 \\u2193", "geo": null, "id": 148838029988069380, "id_str": "148838029988069376", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1607687819/PQAAAOtj0Z9zWw0bG0Mg_n_omFI-o5ISk54puApHauUOJ3UilM_NV2SJ0Isw-clUK6mGo6C9CYFiAjRU-H_1h0vEZwoAm1T1UA3qhVswqiFqXBKHMMSN5FD1OKUx_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607687819/PQAAAOtj0Z9zWw0bG0Mg_n_omFI-o5ISk54puApHauUOJ3UilM_NV2SJ0Isw-clUK6mGo6C9CYFiAjRU-H_1h0vEZwoAm1T1UA3qhVswqiFqXBKHMMSN5FD1OKUx_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:05 +0000", "from_user": "WeberJohann", "from_user_id": 127261023, "from_user_id_str": "127261023", "from_user_name": "Johann Weber", "geo": null, "id": 148838028553633800, "id_str": "148838028553633792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1427230756/Farm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1427230756/Farm_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Matthew 7:16. After spending a whole year in the USA, I refuse to believe that 79.5% are Christians. http://t.co/vPmwoXTg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:05 +0000", "from_user": "CoriglianoAgus", "from_user_id": 363087438, "from_user_id_str": "363087438", "from_user_name": "Agustina Corigliano", "geo": null, "id": 148838027802837000, "id_str": "148838027802836994", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693424616/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693424616/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@CelesMontero14 si que tiene, lo que pasa es que no nos sigue. El tema es que si nos sigue estamos en el horno :| igual casi nunca lo usa", "to_user": "CelesMontero14", "to_user_id": 184176346, "to_user_id_str": "184176346", "to_user_name": "Celes Montero"}, +{"created_at": "Mon, 19 Dec 2011 18:52:05 +0000", "from_user": "jbjonesjr", "from_user_id": 118082516, "from_user_id_str": "118082516", "from_user_name": "Jamie Jones", "geo": null, "id": 148838027299532800, "id_str": "148838027299532800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/894921923/foxfield_bowtie_undone_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/894921923/foxfield_bowtie_undone_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Poor Rumbles! RT @nih_nhlbi Wishing @unclejeffgreen a speedy recovery after his surgery for aortic aneurysm. More @ http://t.co/kbpmKwzj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:05 +0000", "from_user": "cclaravieira", "from_user_id": 124219592, "from_user_id_str": "124219592", "from_user_name": "Clara Vieira", "geo": null, "id": 148838026456469500, "id_str": "148838026456469504", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1672457807/Imagem_162_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672457807/Imagem_162_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:05 +0000", "from_user": "_Adicta", "from_user_id": 123965194, "from_user_id_str": "123965194", "from_user_name": "La que hace spam.", "geo": null, "id": 148838025814741000, "id_str": "148838025814740993", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @circotimia_: ANDREA NO USES COND\\u00D3N, DIGO DIGO USA COND\\u00D3N", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:05 +0000", "from_user": "pxtyux", "from_user_id": 222824115, "from_user_id_str": "222824115", "from_user_name": "angel castro", "geo": null, "id": 148838024992669700, "id_str": "148838024992669696", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699393153/386080_291635837547537_100001033694177_873262_1369732091_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699393153/386080_291635837547537_100001033694177_873262_1369732091_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @JoseLuisArzola: Si alguno de mis amigos chilangos usa la palabra \"Freppo\".|.es por que se la copiaron a @jose_madero no es una palabra que me guste escuchar", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:05 +0000", "from_user": "TrailersofMovie", "from_user_id": 313812261, "from_user_id_str": "313812261", "from_user_name": "Movie Trailors", "geo": null, "id": 148838024678088700, "id_str": "148838024678088704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1388798043/Pr_085_-_TRI_-_01_12_10_-_041_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1388798043/Pr_085_-_TRI_-_01_12_10_-_041_normal.jpg", "source": "<a href="http://www.ajaymatharu.com/" rel="nofollow">Tweet Old Post</a>", "text": "The Descendants (2011) - Movie: The Descendants (2011) Release Date: 18 November 2011\\n(USA) Country: USA\\nGenre:... http://t.co/pHZhBn7C", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:04 +0000", "from_user": "OrlandOdreman", "from_user_id": 98725157, "from_user_id_str": "98725157", "from_user_name": "-", "geo": null, "id": 148838022249586700, "id_str": "148838022249586690", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692554898/13112011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692554898/13112011_normal.jpg", "source": "<a href="http://mobileways.de/gravity" rel="nofollow">Gravity</a>", "text": "Ver a _Adicta haciendo spam con \"usa cond\\u00F3n\" me hace pensar que qued\\u00F3 embarazada o algo semejante. :-s", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:04 +0000", "from_user": "iic", "from_user_id": 15726662, "from_user_id_str": "15726662", "from_user_name": "IslamicInfoCenter", "geo": null, "id": 148838021993738240, "id_str": "148838021993738241", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1465732407/twittersquare_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1465732407/twittersquare_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#TLC show brings Muslims in America out in the open - USA Today http://t.co/jDmGkvNO #IIC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:04 +0000", "from_user": "K_C_N_A", "from_user_id": 440901948, "from_user_id_str": "440901948", "from_user_name": "N.Korea News Agency", "geo": null, "id": 148838021758844930, "id_str": "148838021758844928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702236686/thumbnailCARDW5UE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702236686/thumbnailCARDW5UE_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "We report to our glorious country that the DPRK Women's Football Team have beaten the enemy USA Women's Football Team 38-0.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:04 +0000", "from_user": "JesseBrown00", "from_user_id": 417507410, "from_user_id_str": "417507410", "from_user_name": "Jesse Brown", "geo": null, "id": 148838020857077760, "id_str": "148838020857077760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692036368/jesse169_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692036368/jesse169_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Just got someone from Ohio USA listening to @kiss925toronto and she loves it", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:03 +0000", "from_user": "Jonas_Eid", "from_user_id": 126407781, "from_user_id_str": "126407781", "from_user_name": "Jonas", "geo": null, "id": 148838020190187520, "id_str": "148838020190187520", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696644920/fg_012_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696644920/fg_012_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @PRETOSCO: \"Que rid\\u00EDculo voc\\u00EA usa \\u00F3culos escuros a noite\" \"Sou cego\" ~sil\\u00EAncio~", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:03 +0000", "from_user": "SoyCabrera", "from_user_id": 140145786, "from_user_id_str": "140145786", "from_user_name": "Miguel Cabrera ", "geo": null, "id": 148838019133214720, "id_str": "148838019133214721", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1630286978/miguel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630286978/miguel_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Madonna no lo tiene; El Papa lo tiene pero no lo usa; Bush lo tiene corto; Schwartzenegger lo tiene largo y duro.Que es ?El primer apellido.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:03 +0000", "from_user": "BeyonceArrivals", "from_user_id": 332331625, "from_user_id_str": "332331625", "from_user_name": "Richard Floyd", "geo": null, "id": 148838018034302980, "id_str": "148838018034302976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1433970063/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1433970063/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #53434 Destiny's Child: Fan Pack II $0.01: Destiny's Child - \"Girl\" Live Performance\\nDestiny's Child ... http://t.co/1DEUOerK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:03 +0000", "from_user": "3pStaff", "from_user_id": 309003647, "from_user_id_str": "309003647", "from_user_name": "TriplePundit Staff", "geo": null, "id": 148838016927019000, "id_str": "148838016927019008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1377366075/about-logo3p_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1377366075/about-logo3p_bigger_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "The Weakening of the Fair Trade USA Label - http://t.co/mipagblc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:03 +0000", "from_user": "BeyonceArrivals", "from_user_id": 332331625, "from_user_id_str": "332331625", "from_user_name": "Richard Floyd", "geo": null, "id": 148838016855703550, "id_str": "148838016855703552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1433970063/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1433970063/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #13034 I Am...Yours. An Intimate Performance at Wynn Las Vegas(2CD/1DVD) $12.98: Deluxe three disc (t... http://t.co/r0cg0747", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:02 +0000", "from_user": "Valentinacs_", "from_user_id": 287896119, "from_user_id_str": "287896119", "from_user_name": "Valentina Castro", "geo": null, "id": 148838014972469250, "id_str": "148838014972469249", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1663195865/230542_1910324851309_1637496339_1917282_3939318_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663195865/230542_1910324851309_1637496339_1917282_3939318_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Sisisisisi; y esta historia paso en vida real en usa:3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:02 +0000", "from_user": "BeyonceArrivals", "from_user_id": 332331625, "from_user_id_str": "332331625", "from_user_name": "Richard Floyd", "geo": null, "id": 148838014234279940, "id_str": "148838014234279937", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1433970063/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1433970063/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #26229 I Am...Sasha Fierce $6.44: I AM...SASHA FIERCE DELUXE - Includes five #1 hits \"Single Ladies (... http://t.co/rBPc8fbI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:02 +0000", "from_user": "Toiinee", "from_user_id": 111210216, "from_user_id_str": "111210216", "from_user_name": "Antoine M.", "geo": null, "id": 148838014196531200, "id_str": "148838014196531201", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1013437682/photocabine__6__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1013437682/photocabine__6__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Bon__a__Savoir: Il y a 85 hommes nomm\\u00E9s Homer Simpson aux USA.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:01 +0000", "from_user": "BeyonceArrivals", "from_user_id": 332331625, "from_user_id_str": "332331625", "from_user_name": "Richard Floyd", "geo": null, "id": 148838011210178560, "id_str": "148838011210178561", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1433970063/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1433970063/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #2929 Loud $7.41: LOUD follows-up Rated R (November 2009) and its sequel Rated R: Remixed (May 2010).... http://t.co/YkRnll5f", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:01 +0000", "from_user": "wahoosrule1", "from_user_id": 311215152, "from_user_id_str": "311215152", "from_user_name": "Paul Peters", "geo": null, "id": 148838010899804160, "id_str": "148838010899804160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1585780717/asfasdf_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585780717/asfasdf_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @UVaHooCrew: Hoos are not ranked in the ESPN/USA Today Coaches Poll (29th if you count the votes).", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:01 +0000", "from_user": "rauleldelbaul", "from_user_id": 338613396, "from_user_id_str": "338613396", "from_user_name": "Raul", "geo": null, "id": 148838010279043070, "id_str": "148838010279043072", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1573039546/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1573039546/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @antoalix: si en Zarzuela al saber los mangoneos de I\\u00F1aki le mandaron a USA para evitar esc\\u00E1ndalo \\u00BFeso no es encubrimiento? ten\\u00EDan q haberle destapado!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:00 +0000", "from_user": "gabwestfall", "from_user_id": 372070711, "from_user_id_str": "372070711", "from_user_name": "swag! :3", "geo": null, "id": 148838003861753860, "id_str": "148838003861753856", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1541853643/C_pia_de_msn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541853643/C_pia_de_msn_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @feealmeida_: *vou tomar banho u.u\\n gab; diz:\\n*\\u00E9 bom de vez em quando \\n*usa sabonete ta\\n*e limpa direitin atras das orelhas\\n*e o umbigo tbm :3 rs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:59 +0000", "from_user": "DarkChuzo", "from_user_id": 116545122, "from_user_id_str": "116545122", "from_user_name": "Carlos Chust", "geo": null, "id": 148838003614289920, "id_str": "148838003614289920", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1609488969/AC0AAF29-9A81-433F-89D8-BB78AD0B8E41_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609488969/AC0AAF29-9A81-433F-89D8-BB78AD0B8E41_normal", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Johnny_SQS XD. Pos eperat o usa un tunel VPN", "to_user": "Johnny_SQS", "to_user_id": 320228825, "to_user_id_str": "320228825", "to_user_name": "Joan Domingo Artola", "in_reply_to_status_id": 148837691130257400, "in_reply_to_status_id_str": "148837691130257410"}, +{"created_at": "Mon, 19 Dec 2011 18:51:58 +0000", "from_user": "yaankadaantas", "from_user_id": 113674198, "from_user_id_str": "113674198", "from_user_name": "Y\\u03B1\\u03B7k\\u03B1 \\u0110\\u03B1\\u03B7\\u0167\\u03B1s \\u0586\\u0586", "geo": null, "id": 148837999407403000, "id_str": "148837999407403008", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690075233/DSC_0000023_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690075233/DSC_0000023_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @marciinho_qzs: cartela de adesivos que vem com o caderno: voc\\u00EA n\\u00E3o usa e n\\u00E3o deixa ningu\\u00E9m usar", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:58 +0000", "from_user": "behixiqiqo", "from_user_id": 432656136, "from_user_id_str": "432656136", "from_user_name": "Branch Mayell", "geo": null, "id": 148837996853084160, "id_str": "148837996853084160", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1683885764/678_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683885764/678_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @rokyxuboxe: auto insurance calculator usa http://t.co/J8WJxTWP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:58 +0000", "from_user": "katemar1", "from_user_id": 304256140, "from_user_id_str": "304256140", "from_user_name": "katherine", "geo": null, "id": 148837995326353400, "id_str": "148837995326353408", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1682718053/4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682718053/4_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Un intelectual es un hombre que usa m\\u00E1s palabras de las necesarias para decir m\\u00E1s cosas de las que sabe.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:57 +0000", "from_user": "NLM_SIS", "from_user_id": 44970026, "from_user_id_str": "44970026", "from_user_name": "NLM SIS", "geo": null, "id": 148837992134479870, "id_str": "148837992134479872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/251321734/NLM_logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/251321734/NLM_logo_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @nlm_lpf: #NLM #PeopleLocator: post or search lost &found persons: #Typhoon #Sendong at http://t.co/x5M8rMrf @sahana @nlm_newsroom", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:56 +0000", "from_user": "FootyFanMtl", "from_user_id": 301456692, "from_user_id_str": "301456692", "from_user_name": "D", "geo": null, "id": 148837990402228220, "id_str": "148837990402228224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701565802/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701565802/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Good to see that media from south America and the USA are tweeting about Bernier! shows the Importance of soccer", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:54 +0000", "from_user": "orgasticc_", "from_user_id": 109767598, "from_user_id_str": "109767598", "from_user_name": "Yaas \\u2654", "geo": null, "id": 148837981732618240, "id_str": "148837981732618241", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1569061335/IMG01048_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1569061335/IMG01048_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Photo: tenteimeesconder: http://t.co/cS9q3869", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:52 +0000", "from_user": "OgTeabelly", "from_user_id": 352136890, "from_user_id_str": "352136890", "from_user_name": "teabelly", "geo": null, "id": 148837972656144400, "id_str": "148837972656144384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670094237/Flower_icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670094237/Flower_icon_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @CDCInjury: 12 million US adults are victims of rape, physical violence, or stalking by an intimate partner. Help us #vetoviolence!http://go.usa.gov/NjS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:52 +0000", "from_user": "circotimia_", "from_user_id": 221610474, "from_user_id_str": "221610474", "from_user_name": "M a i t e\\u10E6. ", "geo": null, "id": 148837972471582720, "id_str": "148837972471582721", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698350821/jjo__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698350821/jjo__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "ANDREA NO USES COND\\u00D3N, DIGO DIGO USA COND\\u00D3N", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:49 +0000", "from_user": "_Adicta", "from_user_id": 123965194, "from_user_id_str": "123965194", "from_user_name": "La que hace spam.", "geo": null, "id": 148837960979202050, "id_str": "148837960979202048", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "CARLOS ANGUSTIA USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:49 +0000", "from_user": "sincefreedom", "from_user_id": 89801243, "from_user_id_str": "89801243", "from_user_name": "LongWalkSinceFreedom", "geo": null, "id": 148837957963489280, "id_str": "148837957963489280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/529263278/LongWalkTwitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/529263278/LongWalkTwitter_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Cyber war leads to capture of CIA spy in Iran - The budding cyber war between America and Iran could be quickly tran... http://t.co/AA63cc8l", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:51:48 +0000", "from_user": "JIGassa", "from_user_id": 241235072, "from_user_id_str": "241235072", "from_user_name": "Juan Ignacio Gassa", "geo": null, "id": 148837953362341900, "id_str": "148837953362341889", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1648167953/Video_call_snapshot_11_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648167953/Video_call_snapshot_11_normal.png", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@SonyaJJG si esta en argentina usa mi cuenta y descargarlo... Te paso por privado los datos", "to_user": "SonyaJJG", "to_user_id": 410384629, "to_user_id_str": "410384629", "to_user_name": "Julieta Josefina", "in_reply_to_status_id": 148837334064955400, "in_reply_to_status_id_str": "148837334064955393"}, +{"created_at": "Mon, 19 Dec 2011 18:51:47 +0000", "from_user": "simoni73", "from_user_id": 22470262, "from_user_id_str": "22470262", "from_user_name": "Alberto Simoni", "geo": null, "id": 148837952678662140, "id_str": "148837952678662144", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1152036988/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1152036988/image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "La corsa di Paul #usa2012 LASTAMPA.it: Iowa, corsa senza un re Ora in testa c'\\u00E8 Ron Paul http://t.co/F8SvEak7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:47 +0000", "from_user": "dhenry323", "from_user_id": 279699446, "from_user_id_str": "279699446", "from_user_name": "David Henry", "geo": null, "id": 148837949872685060, "id_str": "148837949872685056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1633006041/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633006041/image_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @MSU_Basketball: #Spartans move up to No. 19 in AP Top 25 and No. 20 in ESPN/USA Today Coaches Poll.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:47 +0000", "from_user": "samylesly", "from_user_id": 27875029, "from_user_id_str": "27875029", "from_user_name": "Leslie Samantha", "geo": null, "id": 148837949755240450, "id_str": "148837949755240449", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702529329/SGD_Mandy_______Sel__._normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702529329/SGD_Mandy_______Sel__._normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SelenaMyPeace: @HechosSMGomez Estamos todos destrozados! Tengo ganas de ir a USA buscarl\\u00E1 & abrazarla bien fuerte para que sepa que nos va a tener SIEMPRE!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:47 +0000", "from_user": "AamnaTaseer", "from_user_id": 153783978, "from_user_id_str": "153783978", "from_user_name": "Aamna Taseer", "geo": null, "id": 148837949163831300, "id_str": "148837949163831296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1519398629/ST_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1519398629/ST_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Mehmal: waah #PTI justifying a bigoted rally full of hate speech MT @PTIrevolution: because the cause was correct, get out of USA's war on terror.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:45 +0000", "from_user": "madeevillarreal", "from_user_id": 232993429, "from_user_id_str": "232993429", "from_user_name": "madelaine villarreal", "geo": null, "id": 148837943883218940, "id_str": "148837943883218944", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1538039658/tumblr_lr5q8cZagw1qgyaufo2_250_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538039658/tumblr_lr5q8cZagw1qgyaufo2_250_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SelenaMyPeace: @HechosSMGomez Estamos todos destrozados! Tengo ganas de ir a USA buscarl\\u00E1 & abrazarla bien fuerte para que sepa que nos va a tener SIEMPRE!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:45 +0000", "from_user": "miss_copa", "from_user_id": 75302962, "from_user_id_str": "75302962", "from_user_name": "Miss Copa", "geo": null, "id": 148837943384084480, "id_str": "148837943384084480", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1303134348/jessica_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1303134348/jessica_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @pauloeandre: Este \\u00E9 PeTralha Americano RT G1Jovem inventa c\\u00E2ncer e usa doa\\u00E7\\u00F5es para passar lua de mel no Caribe #G1 http://t.co/lEWtLEsn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:44 +0000", "from_user": "carmel_PL", "from_user_id": 291565052, "from_user_id_str": "291565052", "from_user_name": "patrycjaaa.", "geo": null, "id": 148837939772796930, "id_str": "148837939772796928", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702556556/tumblr_lm6xnvMV3a1qcrsn7o1_500_large_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702556556/tumblr_lm6xnvMV3a1qcrsn7o1_500_large_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @manulinka: \"-Cz\\u0142owieku, gdzie ty mieszkasz? W jaskini? - Nie, w USA. - To wszystko wyja\\u015Bnia...\" LOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:44 +0000", "from_user": "Sustain_ATL", "from_user_id": 39999836, "from_user_id_str": "39999836", "from_user_name": "Sustainable Atlanta", "geo": null, "id": 148837939349176320, "id_str": "148837939349176320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/522487727/foo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/522487727/foo_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "RT @CleanCitiesATL: Electric Cars get a Solar Boost with the new charging station at the Alpharetta-based Solar Energy USA in south... http://t.co/h4QGrAyB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:44 +0000", "from_user": "LeonardoPedran", "from_user_id": 287493182, "from_user_id_str": "287493182", "from_user_name": "Leonardo Pedran", "geo": null, "id": 148837938845855740, "id_str": "148837938845855744", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1688014703/Captura_de_tela_inteira_11122011_224758.bmp_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688014703/Captura_de_tela_inteira_11122011_224758.bmp_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"Imposs\\u00EDvel \\u00E9 uma palavra muito grande que gente pequena usa pra tentar te oprimir\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:43 +0000", "from_user": "loma_novaes", "from_user_id": 224634964, "from_user_id_str": "224634964", "from_user_name": "\\u221E Paloma Novaes ;", "geo": null, "id": 148837935079362560, "id_str": "148837935079362560", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1645399081/Paloma_Novaes_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645399081/Paloma_Novaes_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ValeriaBandida: Usa suti\\u00E3 de enchimento e depois diz que odeia falsidade.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:42 +0000", "from_user": "aandreapaola", "from_user_id": 169731890, "from_user_id_str": "169731890", "from_user_name": "Andrea Hernandez", "geo": null, "id": 148837931749085200, "id_str": "148837931749085184", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1680610527/331102945_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680610527/331102945_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Jaajaj ;$ RT @JavierUseche: Te van a enviar uno directamente desde USA RT @aandreapaola: Necesito un relajante muscular pero yaa!!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:42 +0000", "from_user": "_Ortografia", "from_user_id": 308156222, "from_user_id_str": "308156222", "from_user_name": "Datos ortogr\\u00E1ficos", "geo": null, "id": 148837931262541820, "id_str": "148837931262541825", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1678468577/331041275_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678468577/331041275_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "No se usa \"hubieron\" cuando haber se emplea para denotar la presencia de personas o cosas, Hubieron 6 ni\\u00F1os (\\u2717), debe decirse: Hubo 6 ni\\u00F1os\\u2611", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:41 +0000", "from_user": "_iBeDuckedOff_", "from_user_id": 224858838, "from_user_id_str": "224858838", "from_user_name": "Drippn Swaguu.", "geo": null, "id": 148837926892085250, "id_str": "148837926892085248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699579656/_iBeDuckedOff__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699579656/_iBeDuckedOff__normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "This is true but they dnt even smoke it! RT @justchillin247: The USA is the only country where weed is consider illegal -_______-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:41 +0000", "from_user": "_Adicta", "from_user_id": 123965194, "from_user_id_str": "123965194", "from_user_name": "La que hace spam.", "geo": null, "id": 148837924606181380, "id_str": "148837924606181376", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "JULIANA USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:39 +0000", "from_user": "molikoveni", "from_user_id": 433361850, "from_user_id_str": "433361850", "from_user_name": "Connor Bowell", "geo": null, "id": 148837919539474430, "id_str": "148837919539474432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685004961/518_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685004961/518_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @zycynotet: uninsured auto http://t.co/8lPi2jlt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:38 +0000", "from_user": "GuiCR12", "from_user_id": 253905181, "from_user_id_str": "253905181", "from_user_name": "Guillaume Rigucci", "geo": null, "id": 148837914711830530, "id_str": "148837914711830528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688386935/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688386935/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Suck it USA\\u201C@nhl_canes:The Canes will not release Justin Faulk for the World Junior Championship Rutherford statement: http://t.co/nb564P1w\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:38 +0000", "from_user": "OgTeabelly", "from_user_id": 352136890, "from_user_id_str": "352136890", "from_user_name": "teabelly", "geo": null, "id": 148837913608716300, "id_str": "148837913608716289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670094237/Flower_icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670094237/Flower_icon_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @FDAcdrhIndustry: Draft Guidance - Evaluation of Sex Differences in Medical Device Clinical Studies http://t.co/C2MQeQTC #fda #medicaldevice", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:38 +0000", "from_user": "TakeAGanderson", "from_user_id": 312855464, "from_user_id_str": "312855464", "from_user_name": "Genevieve Anderson", "geo": null, "id": 148837911947776000, "id_str": "148837911947776000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1460356437/genevieve_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1460356437/genevieve_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @grouponboston: Help provide meals for school children affected by the famine in the Horn of Africa: http://t.co/0Jjl6Mr8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:36 +0000", "from_user": "tyfezarujul", "from_user_id": 433714924, "from_user_id_str": "433714924", "from_user_name": "Purandar Maddocks", "geo": null, "id": 148837906507767800, "id_str": "148837906507767808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685973438/1682_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685973438/1682_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "short term loans reviews http://t.co/qSePTMRk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:36 +0000", "from_user": "flagstaffnews_", "from_user_id": 245462312, "from_user_id_str": "245462312", "from_user_name": "Flagstaff Onlinenews", "geo": null, "id": 148837905505329150, "id_str": "148837905505329153", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1231040889/Flagstaff_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1231040889/Flagstaff_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Neti pot risks, gay marriage benefits and pet obsessions \\u2013 USA TODAY: USA TODAY Neti pot risks, gay marriage ben... http://t.co/ZweMCwpa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:35 +0000", "from_user": "estellaFoley318", "from_user_id": 426333853, "from_user_id_str": "426333853", "from_user_name": "estella Foley", "geo": null, "id": 148837899696209920, "id_str": "148837899696209921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668978555/3522470641206156_the_beach_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668978555/3522470641206156_the_beach_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "The main shortcomings was that the company only partnered with Target in the USA and did not make it available in international markets", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:34 +0000", "from_user": "oso_a_la_sombra", "from_user_id": 403545261, "from_user_id_str": "403545261", "from_user_name": "Eric", "geo": null, "id": 148837898366619650, "id_str": "148837898366619648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627938675/17358_1256394730492_1248300277_30785916_648019_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627938675/17358_1256394730492_1248300277_30785916_648019_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @MSU_Basketball: #Spartans move up to No. 19 in AP Top 25 and No. 20 in ESPN/USA Today Coaches Poll.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:33 +0000", "from_user": "NIAIDCareers", "from_user_id": 242780637, "from_user_id_str": "242780637", "from_user_name": "NIAID Careers", "geo": null, "id": 148837891810930700, "id_str": "148837891810930688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1225524358/NIAIDlogo_reasonably_small_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225524358/NIAIDlogo_reasonably_small_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "#Technology #development specialist closes 12/22. Facilitate the transfer of new #technologies & #research materials: http://t.co/546xZ7fH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:33 +0000", "from_user": "PauloFrancis_", "from_user_id": 144010410, "from_user_id_str": "144010410", "from_user_name": "Paulo Francis", "geo": null, "id": 148837891785752580, "id_str": "148837891785752577", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1476415425/pf_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1476415425/pf_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @pauloeandre: Este \\u00E9 PeTralha Americano RT G1Jovem inventa c\\u00E2ncer e usa doa\\u00E7\\u00F5es para passar lua de mel no Caribe #G1 http://t.co/lEWtLEsn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:33 +0000", "from_user": "imcaughtupinyou", "from_user_id": 93455784, "from_user_id_str": "93455784", "from_user_name": "cande\\u2661", "geo": null, "id": 148837891324383230, "id_str": "148837891324383232", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700921554/472028726_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700921554/472028726_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@VodkaBiebsHero claro! adem\\u00E1s a mi no me gusta ningun artista de ac\\u00E1, tampoco escucho m\\u00FAsica en espa\\u00F1ol, yo deber\\u00EDa haber nacido en USA ajaj", "to_user": "VodkaBiebsHero", "to_user_id": 345517062, "to_user_id_str": "345517062", "to_user_name": "ILoveMyself \\u2665/\\u2661", "in_reply_to_status_id": 148835340352880640, "in_reply_to_status_id_str": "148835340352880640"}, +{"created_at": "Mon, 19 Dec 2011 18:51:33 +0000", "from_user": "iMMaBeBiaN", "from_user_id": 96808906, "from_user_id_str": "96808906", "from_user_name": "Bianca Paon\\u018E \\u2665", "geo": null, "id": 148837890833657860, "id_str": "148837890833657856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689597949/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689597949/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@itsEminemsSon you said that america was a country: \"dream country EMerica\" and then you talk about usa so I understood that...", "to_user": "itsEminemsSon", "to_user_id": 200571056, "to_user_id_str": "200571056", "to_user_name": "Arshad \\u018Evil Math\\u018Ers", "in_reply_to_status_id": 148827879407493120, "in_reply_to_status_id_str": "148827879407493120"}, +{"created_at": "Mon, 19 Dec 2011 18:51:32 +0000", "from_user": "JoorgeFelix", "from_user_id": 106129983, "from_user_id_str": "106129983", "from_user_name": "Jorge F\\u00E9lix \\u2714", "geo": null, "id": 148837888837156860, "id_str": "148837888837156865", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700567776/PQAAAOSARbN6jhtGBnOqQ4I9M17pJaPGRW4nSd8soQquSZoJBQBfb4NlDdGKcpYndTK8CsOpudgI_MA6uz5xlr8FBBwAm1T1UFPe1932pxO10OI4GiHGgM2m47n-_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700567776/PQAAAOSARbN6jhtGBnOqQ4I9M17pJaPGRW4nSd8soQquSZoJBQBfb4NlDdGKcpYndTK8CsOpudgI_MA6uz5xlr8FBBwAm1T1UFPe1932pxO10OI4GiHGgM2m47n-_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Ryca solta purpurina e usa paet\\u00EA!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:31 +0000", "from_user": "_Adicta", "from_user_id": 123965194, "from_user_id_str": "123965194", "from_user_name": "La que hace spam.", "geo": null, "id": 148837884273766400, "id_str": "148837884273766400", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "JOANDRY USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:30 +0000", "from_user": "ticakukagex", "from_user_id": 433562198, "from_user_id_str": "433562198", "from_user_name": "Adonibaal Hawkswell", "geo": null, "id": 148837881253863420, "id_str": "148837881253863426", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685480489/197_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685480489/197_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "insurance comparison sites http://t.co/ZVDhZE5Z", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:29 +0000", "from_user": "roluro", "from_user_id": 71911376, "from_user_id_str": "71911376", "from_user_name": "Pablo Torres", "geo": null, "id": 148837877059563520, "id_str": "148837877059563520", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701579624/ACD8F382-D811-45C5-825F-80F817F74847_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701579624/ACD8F382-D811-45C5-825F-80F817F74847_normal", "source": "<a href="http://www.visibli.com" rel="nofollow">Visibli</a>", "text": "Quien usa Prezi? Aqu\\u00ED Prezi for dummies http://t.co/NNiRmu5n cc @rich_guzman @ferrocenteno", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:29 +0000", "from_user": "timotetife", "from_user_id": 433284815, "from_user_id_str": "433284815", "from_user_name": "Cimymena Vaciwug", "geo": null, "id": 148837875000164350, "id_str": "148837875000164352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @xotoxyfica: car insurance ratings by vehicle http://t.co/04rQiah6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:28 +0000", "from_user": "TresaMk03201963", "from_user_id": 421432394, "from_user_id_str": "421432394", "from_user_name": "Tresa Mk", "geo": null, "id": 148837872466796540, "id_str": "148837872466796544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "http://t.co/m33RxmOQ USA Stock Market Softball Paris Hilton Space Technology", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:28 +0000", "from_user": "RandBCDs", "from_user_id": 363747398, "from_user_id_str": "363747398", "from_user_name": "Richard Floyd", "geo": null, "id": 148837871997034500, "id_str": "148837871997034497", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1517599798/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517599798/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #81 Conquer $4.99: B006B81M9I http://t.co/ZTNIQGgM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:28 +0000", "from_user": "AnggyKaroliina", "from_user_id": 148200970, "from_user_id_str": "148200970", "from_user_name": "Anggy Gonz\\u00E0lez\\u2665", "geo": null, "id": 148837870910713860, "id_str": "148837870910713856", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1650385930/P201111_01.06_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650385930/P201111_01.06_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "REBECA USA COND\\u00D3N", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:28 +0000", "from_user": "RandBCDs", "from_user_id": 363747398, "from_user_id_str": "363747398", "from_user_name": "Richard Floyd", "geo": null, "id": 148837870650662900, "id_str": "148837870650662912", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1517599798/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517599798/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #181 Back To Black [Explicit] $7.99: B000V9GA5Y http://t.co/91j3FWBc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:28 +0000", "from_user": "AnnelleStpierri", "from_user_id": 388724344, "from_user_id_str": "388724344", "from_user_name": "Annelle Stpierrie", "geo": null, "id": 148837870608711680, "id_str": "148837870608711680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1582920830/1197819_blondie_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1582920830/1197819_blondie_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Anzo USA 211135 Suzuki Grand Vitara Chrome Tail Light Assembly - (Sold in Pairs): SAE (Society of Automotive Eng... http://t.co/S0gdPlXd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:27 +0000", "from_user": "RandBCDs", "from_user_id": 363747398, "from_user_id_str": "363747398", "from_user_name": "Richard Floyd", "geo": null, "id": 148837869279121400, "id_str": "148837869279121408", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1517599798/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517599798/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #281 I Am...Sasha Fierce $5.00: B001KR9AP8 http://t.co/ZD1JLveE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:27 +0000", "from_user": "RandBCDs", "from_user_id": 363747398, "from_user_id_str": "363747398", "from_user_name": "Richard Floyd", "geo": null, "id": 148837867886616580, "id_str": "148837867886616576", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1517599798/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517599798/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #385 Inevitable $4.95: B0065GFLL6 http://t.co/EkUQfSrB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:25 +0000", "from_user": "leango", "from_user_id": 139704274, "from_user_id_str": "139704274", "from_user_name": "Lenin Gonzalez", "geo": null, "id": 148837860835999740, "id_str": "148837860835999745", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1586373127/wallpaper17_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586373127/wallpaper17_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "si se va a protestar las medidas de Grateron digan la hora por favor. USA dice que tenemos militares narcos y este alcalde trae paranarcos", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:25 +0000", "from_user": "jmontoyac", "from_user_id": 41254043, "from_user_id_str": "41254043", "from_user_name": "Jaime Montoya", "geo": null, "id": 148837858239717380, "id_str": "148837858239717376", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1268430258/3D-Matrix-Screensaver-the-Endless-Corridors_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1268430258/3D-Matrix-Screensaver-the-Endless-Corridors_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "El ministro de relaciones exteriores de Jap\\u00F3n se encontraba \"coincidencialmente\" de visita en USA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:25 +0000", "from_user": "EarthquakeTest", "from_user_id": 119579265, "from_user_id_str": "119579265", "from_user_name": "Michael Wharton", "geo": null, "id": 148837857061126140, "id_str": "148837857061126144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "3.3 - Southern Alaska (Kenai-Cook Inlet, AK 99682, USA) - 19/12/11 12:48:23 EST Depth: 65.6 km (40.76 mi) http... http://t.co/aVyOUBIb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:24 +0000", "from_user": "eloisejcardona", "from_user_id": 305769272, "from_user_id_str": "305769272", "from_user_name": "Eloise Cardona", "geo": null, "id": 148837856503283700, "id_str": "148837856503283714", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702568946/images_1__normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702568946/images_1__normal", "source": "<a href="http://beallsblackfriday.com" rel="nofollow">beallsblackfridaydotcom</a>", "text": "Discount Vintage Pioneer Receivers-Pioneer PL-990 Automatic Stereo Turntable At US http://t.co/lvxrG0z0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:24 +0000", "from_user": "Caarla_rosa", "from_user_id": 360953766, "from_user_id_str": "360953766", "from_user_name": "hot and dangerous \\u266A", "geo": null, "id": 148837855593103360, "id_str": "148837855593103360", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1674239466/euzita_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674239466/euzita_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "o cara do filme tem uns peito na cabe\\u00E7a e ele usa um suti\\u00E3 na cabe\\u00E7a aisoaisoaisoaso`", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:23 +0000", "from_user": "Pyramide_Usa", "from_user_id": 266235926, "from_user_id_str": "266235926", "from_user_name": "Watson Jean", "geo": null, "id": 148837852522872830, "id_str": "148837852522872832", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1469528987/black_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1469528987/black_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Demain sera aniversaire de JEAN Watson le directeur general de la pyramide_usa. J'attends les souhaites sur 38396481 call et 47541601 sms", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:21 +0000", "from_user": "coesa06", "from_user_id": 85922216, "from_user_id_str": "85922216", "from_user_name": "Victor", "geo": null, "id": 148837842305560580, "id_str": "148837842305560577", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1541654129/estructuras-coesa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541654129/estructuras-coesa_normal.jpg", "source": "<a href="http://ratablog.org/extension/" rel="nofollow">TwittSharer</a>", "text": "La aplicaci\\u00F3n de #Facebook ya se usa m\\u00E1s en #Android que en #iPhone http://t.co/AO8Gj60p #Apps", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:21 +0000", "from_user": "basketvinotinto", "from_user_id": 110791239, "from_user_id_str": "110791239", "from_user_name": "Basket Vinotinto", "geo": null, "id": 148837840837550080, "id_str": "148837840837550081", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1498905015/Edici_n_Numero_10_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1498905015/Edici_n_Numero_10_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "#NCAA: Creighton est\\u00E1 21\\u00BA en el r\\u00E1nking de entrenadores (USA Today/ESPN) y 23\\u00BA en el de periodistas (AP).V\\u00EDa @LosBluejays.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:19 +0000", "from_user": "JFelizPacheco", "from_user_id": 117142639, "from_user_id_str": "117142639", "from_user_name": "Jorge JuaN ", "geo": null, "id": 148837835737268220, "id_str": "148837835737268224", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1647696266/JorgeJuaN_20_20_20_20_20_23JFP_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647696266/JorgeJuaN_20_20_20_20_20_23JFP_3_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"@grisantycosme: @JFelizPacheco @Juanmanueldiaz @manuelrojasp @Elias_Cornelio @juangrisanty @Ramoncin22 Mi numero en USA 908-342-7818\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:19 +0000", "from_user": "geekmaniaco", "from_user_id": 176574634, "from_user_id_str": "176574634", "from_user_name": "The Jack Black ", "geo": null, "id": 148837834793558000, "id_str": "148837834793558016", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1666237900/IMG_0101_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666237900/IMG_0101_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@lolhehehe voce tem cora\\u00E7\\u00E3o bom, mas nao usa seu piroc\\u00E3o gm.", "to_user": "lolhehehe", "to_user_id": 20746481, "to_user_id_str": "20746481", "to_user_name": "Sicko"}, +{"created_at": "Mon, 19 Dec 2011 18:51:18 +0000", "from_user": "sonicgeekette", "from_user_id": 64040164, "from_user_id_str": "64040164", "from_user_name": "Michelle Tona", "geo": null, "id": 148837830234353660, "id_str": "148837830234353664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/354019373/blue_clamshell_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/354019373/blue_clamshell_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "The rocket and launchpad was made almost exclusively out of an old 3.5 diskette. Only added pipe cleaner USA, yarn flames, & hot glue.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:17 +0000", "from_user": "soliswebgraphic", "from_user_id": 82490577, "from_user_id_str": "82490577", "from_user_name": "Solis Web Graphics", "geo": null, "id": 148837826421727230, "id_str": "148837826421727232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/471944318/pic_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/471944318/pic_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "T-Mobile USA Spectrum Refarming Lets Some iPhone Users Access ... http://t.co/xw5SglgC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:16 +0000", "from_user": "raquelithays", "from_user_id": 161567930, "from_user_id_str": "161567930", "from_user_name": "R\\u03B1que\\u2113\\u2665\\u0120\\u03BC\\u0454\\u044F\\u200E\\u200B\\u044F\\u200E\\u200B\\u0454\\u044F\\u200E\\u03C3", "geo": null, "id": 148837820117688320, "id_str": "148837820117688320", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686438215/Capture22_33_25_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686438215/Capture22_33_25_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u00BBImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:14 +0000", "from_user": "HechosSMGomez", "from_user_id": 241715867, "from_user_id_str": "241715867", "from_user_name": "Pr\\u03B1yersSelenaFamily.", "geo": null, "id": 148837811720687600, "id_str": "148837811720687617", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699257274/tumblr_lwb5r8kSSO1qe4rlzo1_500_large_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699257274/tumblr_lwb5r8kSSO1qe4rlzo1_500_large_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SelenaMyPeace: @HechosSMGomez Estamos todos destrozados! Tengo ganas de ir a USA buscarl\\u00E1 & abrazarla bien fuerte para que sepa que nos va a tener SIEMPRE!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:13 +0000", "from_user": "qavugyneq", "from_user_id": 419112759, "from_user_id_str": "419112759", "from_user_name": "Alcardio Haddrill", "geo": null, "id": 148837810433048580, "id_str": "148837810433048576", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657503270/11_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657503270/11_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @kexiloxu: sallie mae student loans deferment lenders http://t.co/BW5WmdAy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:12 +0000", "from_user": "ImSo_sOuTh3rN", "from_user_id": 307170584, "from_user_id_str": "307170584", "from_user_name": "RellpIpEs", "geo": null, "id": 148837804313550850, "id_str": "148837804313550850", "iso_language_code": "is", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685960989/Lr06dSSn_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685960989/Lr06dSSn_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "all um tryna say is im all ova da USA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:12 +0000", "from_user": "ninonilmar", "from_user_id": 417075881, "from_user_id_str": "417075881", "from_user_name": "nino", "geo": null, "id": 148837802757472260, "id_str": "148837802757472257", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1651863711/65408_1671469197311_1554819619_31555177_7715434_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651863711/65408_1671469197311_1554819619_31555177_7715434_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@TeamMakambo finns det n\\u00E5n video uppe fr\\u00E5n n\\u00E4r du tr\\u00E4nade i usa?", "to_user": "TeamMakambo", "to_user_id": 382887214, "to_user_id_str": "382887214", "to_user_name": "Papy Abedi"}, +{"created_at": "Mon, 19 Dec 2011 18:51:11 +0000", "from_user": "sandbergson", "from_user_id": 408946990, "from_user_id_str": "408946990", "from_user_name": "BrUnInHoo", "geo": null, "id": 148837798693183500, "id_str": "148837798693183488", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664294323/dsc05944_001_001_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664294323/dsc05944_001_001_1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Mateus_MFML tbm tava c pro c o ie,tent usa o google chrome vc vai v q \\u00E9 bm melhor....", "to_user": "Mateus_MFML", "to_user_id": 234310349, "to_user_id_str": "234310349", "to_user_name": "Mateus Ferreira Melo", "in_reply_to_status_id": 148836899954507780, "in_reply_to_status_id_str": "148836899954507776"}, +{"created_at": "Mon, 19 Dec 2011 18:51:11 +0000", "from_user": "SaoBlack", "from_user_id": 38335260, "from_user_id_str": "38335260", "from_user_name": "Alexandre Gon\\u00E7alves", "geo": null, "id": 148837798605103100, "id_str": "148837798605103104", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1686053923/eu_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686053923/eu_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @pauloeandre: Este \\u00E9 PeTralha Americano RT G1Jovem inventa c\\u00E2ncer e usa doa\\u00E7\\u00F5es para passar lua de mel no Caribe #G1 http://t.co/lEWtLEsn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:10 +0000", "from_user": "LizieLoveYou", "from_user_id": 181226587, "from_user_id_str": "181226587", "from_user_name": "Lizeth Cabanillas", "geo": null, "id": 148837797724299260, "id_str": "148837797724299264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1661724069/319340_1807020790378_1685685946_1308397_1984948577_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661724069/319340_1807020790378_1685685946_1308397_1984948577_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "My boyfriend is no in USA :) hahha ok no :I", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:10 +0000", "from_user": "JoseLuisArzola", "from_user_id": 140281867, "from_user_id_str": "140281867", "from_user_name": "Jose Luis Arzola", "geo": null, "id": 148837795765563400, "id_str": "148837795765563392", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699190781/Arzola_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699190781/Arzola_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Si alguno de mis amigos chilangos usa la palabra \"Freppo\".|.es por que se la copiaron a @jose_madero no es una palabra que me guste escuchar", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:09 +0000", "from_user": "_Adicta", "from_user_id": 123965194, "from_user_id_str": "123965194", "from_user_name": "La que hace spam.", "geo": null, "id": 148837793857155070, "id_str": "148837793857155073", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Mentirosita_: ANDREA USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:06 +0000", "from_user": "_ThiagoA7x", "from_user_id": 199741748, "from_user_id_str": "199741748", "from_user_name": "Thiago", "geo": null, "id": 148837780775116800, "id_str": "148837780775116801", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691512799/391131_142541802522034_100002986451086_182421_713603815_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691512799/391131_142541802522034_100002986451086_182421_713603815_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@nerdbebum n\\u00E3o, mas baixa e usa ele por 30 dias ou pegar algum crack na net '--'", "to_user": "nerdbebum", "to_user_id": 234801433, "to_user_id_str": "234801433", "to_user_name": "Nerd Bebum", "in_reply_to_status_id": 148837187725701120, "in_reply_to_status_id_str": "148837187725701120"}, +{"created_at": "Mon, 19 Dec 2011 18:51:06 +0000", "from_user": "BlackBerryMaxi", "from_user_id": 258168984, "from_user_id_str": "258168984", "from_user_name": "BlackBerry BestPrice", "geo": null, "id": 148837778954792960, "id_str": "148837778954792960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1256265044/blackberry-maxiprices_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1256265044/blackberry-maxiprices_normal.gif", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "BlackBerry USA: BlackBerry Storm 9530 - 1GB - Black (Unlocked) Smartphone (FREE SHIPPING) #Storm http://t.co/kdWAPJcK #blackberry #usa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:05 +0000", "from_user": "Viktor_Yzlas", "from_user_id": 273601917, "from_user_id_str": "273601917", "from_user_name": "Viktor Yzlas", "geo": null, "id": 148837776740192260, "id_str": "148837776740192256", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1678522770/genio_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678522770/genio_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:05 +0000", "from_user": "filipearnaut", "from_user_id": 69927050, "from_user_id_str": "69927050", "from_user_name": "Carlos Filipe Arnaut", "geo": null, "id": 148837775184105470, "id_str": "148837775184105472", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699517999/PQAAAPSmP2Nyb9SxolmtRqAdqsAQRqnotsfV0JPuxZ18kQyVGhXsWM3VNKmQuwnN5xCUZ7N9__hfaHVnKe-2xsIV4fwAm1T1UEls0jLnb0KYYaI9ElnvrAV85j6R_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699517999/PQAAAPSmP2Nyb9SxolmtRqAdqsAQRqnotsfV0JPuxZ18kQyVGhXsWM3VNKmQuwnN5xCUZ7N9__hfaHVnKe-2xsIV4fwAm1T1UEls0jLnb0KYYaI9ElnvrAV85j6R_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @um_virgem: N\\u00E3o confio em quem usa pochete.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:05 +0000", "from_user": "TopTenENews", "from_user_id": 296645240, "from_user_id_str": "296645240", "from_user_name": "Richard Floyd", "geo": null, "id": 148837774877929470, "id_str": "148837774877929472", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1423378913/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1423378913/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #3867 DIE ZEIT: $7.99 DIE ZEIT Kindle Edition (reine Textversion ohne Bilder) ist eine besondere Ausw... http://t.co/hEnnIzxI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:05 +0000", "from_user": "Jaime_Valero", "from_user_id": 83053764, "from_user_id_str": "83053764", "from_user_name": "Jaime Valero", "geo": null, "id": 148837773833551870, "id_str": "148837773833551874", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1633713984/yo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633713984/yo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@felipeLvalero especialista no se, pero el usa mi padre es buen mecanico...", "to_user": "felipeLvalero", "to_user_id": 107813909, "to_user_id_str": "107813909", "to_user_name": "Felipe L. Valero", "in_reply_to_status_id": 148836985539268600, "in_reply_to_status_id_str": "148836985539268609"}, +{"created_at": "Mon, 19 Dec 2011 18:51:05 +0000", "from_user": "TopTenENews", "from_user_id": 296645240, "from_user_id_str": "296645240", "from_user_name": "Richard Floyd", "geo": null, "id": 148837773732876300, "id_str": "148837773732876288", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1423378913/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1423378913/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #5767 El Pa\\u00EDs: $14.99 EL PA\\u00CDS es el diario l\\u00EDder en Espa\\u00F1a y el principal medio de informaci\\u00F3n en es... http://t.co/7RTONwdo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:04 +0000", "from_user": "TopTenENews", "from_user_id": 296645240, "from_user_id_str": "296645240", "from_user_name": "Richard Floyd", "geo": null, "id": 148837772541706240, "id_str": "148837772541706240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1423378913/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1423378913/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #6466 Shanghai Daily: $5.99 Shanghai Daily provides an English window to the news of China. Business... http://t.co/qM40ehKB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:04 +0000", "from_user": "TopTenENews", "from_user_id": 296645240, "from_user_id_str": "296645240", "from_user_name": "Richard Floyd", "geo": null, "id": 148837769899290620, "id_str": "148837769899290624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1423378913/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1423378913/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #3963 San Jose Mercury News: $5.99 Founded in 1851, the San Jose Mercury News serves the San Jose are... http://t.co/6FcD2nXB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:03 +0000", "from_user": "circotimia_", "from_user_id": 221610474, "from_user_id_str": "221610474", "from_user_name": "M a i t e\\u10E6. ", "geo": null, "id": 148837767336574980, "id_str": "148837767336574976", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698350821/jjo__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698350821/jjo__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "VICIOSA USA COND\\u00D3N", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:03 +0000", "from_user": "VocalistSongs", "from_user_id": 359191521, "from_user_id_str": "359191521", "from_user_name": "Richard Floyd", "geo": null, "id": 148837766313164800, "id_str": "148837766313164801", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1506074528/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1506074528/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #7066 Thistlehair The Christmas Bear: Alabama $0.99 BMG Special Products http://t.co/UUPpDHL2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:02 +0000", "from_user": "Bahrain_Ctzn", "from_user_id": 414552960, "from_user_id_str": "414552960", "from_user_name": "Ba7rainiya", "geo": null, "id": 148837764450889730, "id_str": "148837764450889729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1643342622/790B618A-9637-4AFF-B10C-1D0FD6D89F7D_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643342622/790B618A-9637-4AFF-B10C-1D0FD6D89F7D_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @BHRDef_jaguar: our police in #bahrain are first in line in front of the cannon please support them for keeping u safe http://t.co/GKqBv0Bg #bahrain #usa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:02 +0000", "from_user": "VocalistSongs", "from_user_id": 359191521, "from_user_id_str": "359191521", "from_user_name": "Richard Floyd", "geo": null, "id": 148837764429922300, "id_str": "148837764429922304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1506074528/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1506074528/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #1263 Joy To The World!: Faith Hill $0.99 Warner Bros./Nashville http://t.co/6hbpsTkG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:02 +0000", "from_user": "eloizinha17", "from_user_id": 370236476, "from_user_id_str": "370236476", "from_user_name": "eloisa mendes", "geo": null, "id": 148837761888174080, "id_str": "148837761888174081", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700725730/Foraver_nice___normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700725730/Foraver_nice___normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@PraFeBrum , gostei d+ vc, cantando no #festivaldepromessas!! Deus te usa tremendamente!!", "to_user": "PraFeBrum", "to_user_id": 60118331, "to_user_id_str": "60118331", "to_user_name": "Fernanda Brum"}, +{"created_at": "Mon, 19 Dec 2011 18:51:02 +0000", "from_user": "jkmcgo", "from_user_id": 76228352, "from_user_id_str": "76228352", "from_user_name": "Jen ", "geo": null, "id": 148837761565208580, "id_str": "148837761565208576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/666211638/Photo_on_2010-01-28_at_19.58_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/666211638/Photo_on_2010-01-28_at_19.58_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Joan_Rivers: Had the BEST weekend EVER! Stayed at the Williamsburg Inn in Colonial Williamsburg-the most amazing place in the USA. Just magical!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:02 +0000", "from_user": "lytygyso", "from_user_id": 433870418, "from_user_id_str": "433870418", "from_user_name": "Mansur Carmont", "geo": null, "id": 148837760868958200, "id_str": "148837760868958211", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687220381/341_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687220381/341_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "pay with cash online http://t.co/840FKHPs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:01 +0000", "from_user": "VocalistSongs", "from_user_id": 359191521, "from_user_id_str": "359191521", "from_user_name": "Richard Floyd", "geo": null, "id": 148837759333838850, "id_str": "148837759333838849", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1506074528/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1506074528/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #1162 Silent Night, Holy Night!: Faith Hill $0.99 Warner Bros./Nashville http://t.co/gBtO0cXi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:01 +0000", "from_user": "Feiertag4558dab", "from_user_id": 421653651, "from_user_id_str": "421653651", "from_user_name": "Billye Feiertag", "geo": null, "id": 148837759069593600, "id_str": "148837759069593600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1658341795/4111844931195785_femme_above_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658341795/4111844931195785_femme_above_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#1: Reader\\u2019s Digest: Reader\\u2019s Digest by Reader\\u2019s Digest USA 295 days in the top 100 (89) Download: $ 1.49 11 use... http://t.co/vhZPvoyy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:01 +0000", "from_user": "Delavina2858gro", "from_user_id": 420249275, "from_user_id_str": "420249275", "from_user_name": "Katlyn Delavina", "geo": null, "id": 148837758146842620, "id_str": "148837758146842624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1655263217/11889545071194841_alejandra_c__model_4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655263217/11889545071194841_alejandra_c__model_4_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#1: Reader\\u2019s Digest: Reader\\u2019s Digest by Reader\\u2019s Digest USA 295 days in the top 100 (89) Download: $ 1.49 11 use... http://t.co/j2Jy9hTT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:01 +0000", "from_user": "VocalistSongs", "from_user_id": 359191521, "from_user_id_str": "359191521", "from_user_name": "Richard Floyd", "geo": null, "id": 148837757731614720, "id_str": "148837757731614721", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1506074528/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1506074528/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #1962 Father Christmas: The Kinks $0.99 Wicked Cool Records http://t.co/O9u4EVET", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:00 +0000", "from_user": "NazrinFaiz", "from_user_id": 37905158, "from_user_id_str": "37905158", "from_user_name": "nazrin faiz shuaimi", "geo": null, "id": 148837755345047550, "id_str": "148837755345047552", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/264095425/m_3dafb37f96a0476280ce8aec2e1ba532_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/264095425/m_3dafb37f96a0476280ce8aec2e1ba532_1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@laddajacko haha, tgh free lad, liga USA tgh cuti sem ni,,", "to_user": "laddajacko", "to_user_id": 59163057, "to_user_id_str": "59163057", "to_user_name": "Norman Halief", "in_reply_to_status_id": 148837427593752580, "in_reply_to_status_id_str": "148837427593752576"}, +{"created_at": "Mon, 19 Dec 2011 18:51:00 +0000", "from_user": "ri_aldoo", "from_user_id": 29153340, "from_user_id_str": "29153340", "from_user_name": "rialdo rumapar", "geo": null, "id": 148837754061586430, "id_str": "148837754061586432", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1647158085/330060893_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647158085/330060893_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Eh tdk usa ba praman2 lgi, memang bodok RT @antaranews: Kapolda Sulteng: bentrok perburuk citra daerah http://t.co/ybykcbbZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:00 +0000", "from_user": "soleftw", "from_user_id": 83375508, "from_user_id_str": "83375508", "from_user_name": "Sool.", "geo": null, "id": 148837752937525250, "id_str": "148837752937525248", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687180672/301221_10150485187027977_619317976_11200129_484537210_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687180672/301221_10150485187027977_619317976_11200129_484537210_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "KATHERINE ME TRAJO UN ANTIBACTERIAL DE USA, MAJ CUCHIP.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:58 +0000", "from_user": "manulinka", "from_user_id": 298687024, "from_user_id_str": "298687024", "from_user_name": "Nika ", "geo": null, "id": 148837747120013300, "id_str": "148837747120013312", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1643419089/5794752770_a5bb9a2ed9_z_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643419089/5794752770_a5bb9a2ed9_z_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"-Cz\\u0142owieku, gdzie ty mieszkasz? W jaskini? - Nie, w USA. - To wszystko wyja\\u015Bnia...\" LOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:58 +0000", "from_user": "_Adicta", "from_user_id": 123965194, "from_user_id_str": "123965194", "from_user_name": "La que hace spam.", "geo": null, "id": 148837746809643000, "id_str": "148837746809643008", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "JOHAHA USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:57 +0000", "from_user": "Um_Fernando", "from_user_id": 326284430, "from_user_id_str": "326284430", "from_user_name": "Fernando Henrique", "geo": null, "id": 148837740761452540, "id_str": "148837740761452544", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702340114/Darth_Vader_tbm_comemora_natal_po_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702340114/Darth_Vader_tbm_comemora_natal_po_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SeuportalBlog @hmfail mas n\\u00E3o usa em caps que fica muito zuado", "to_user": "SeuportalBlog", "to_user_id": 340497496, "to_user_id_str": "340497496", "to_user_name": "SeuportalBlog", "in_reply_to_status_id": 148837536989577200, "in_reply_to_status_id_str": "148837536989577216"}, +{"created_at": "Mon, 19 Dec 2011 18:50:55 +0000", "from_user": "AlmaMaderoB", "from_user_id": 148918046, "from_user_id_str": "148918046", "from_user_name": "Alma Madero Benitez", "geo": null, "id": 148837734910406660, "id_str": "148837734910406656", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1620897626/AlmaToon_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620897626/AlmaToon_normal.gif", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @JavierSantoyo: Es cierto @GustavoMadero q AN esta tan malito d su autocritica, q la usa d argumento para negar registro a ciudadanos como @ClouthierManuel?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:55 +0000", "from_user": "Mirrors90", "from_user_id": 156420910, "from_user_id_str": "156420910", "from_user_name": "Mirrors", "geo": null, "id": 148837734373523460, "id_str": "148837734373523456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1629453203/then_and_now_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629453203/then_and_now_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@sar185a don't you live in USA?! I have to download my eps from USA as we don't get it quickly here. It's brilliant. I love it!", "to_user": "sar185a", "to_user_id": 40592776, "to_user_id_str": "40592776", "to_user_name": "sarah king", "in_reply_to_status_id": 148837259037249540, "in_reply_to_status_id_str": "148837259037249537"}, +{"created_at": "Mon, 19 Dec 2011 18:50:55 +0000", "from_user": "Mentirosita_", "from_user_id": 166659596, "from_user_id_str": "166659596", "from_user_name": "Lady\\u2665.", "geo": null, "id": 148837731731128320, "id_str": "148837731731128320", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1657693123/Colombia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657693123/Colombia_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "ANDREA USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:54 +0000", "from_user": "zandrawtnorvell", "from_user_id": 305967447, "from_user_id_str": "305967447", "from_user_name": "Zandra Norvell", "geo": null, "id": 148837730888065020, "id_str": "148837730888065024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685458293/imagesCAJUBWXJ_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685458293/imagesCAJUBWXJ_normal", "source": "<a href="http://topcybermondaysales.com" rel="nofollow">topcybermondaysalesdotcom</a>", "text": "Low Price F-Black & Decker FP1600B 8-Cup Food Processor, Black At Usa Store http://t.co/5YjTJ6JP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:53 +0000", "from_user": "buulux_", "from_user_id": 342889902, "from_user_id_str": "342889902", "from_user_name": "Bruna Duarte", "geo": null, "id": 148837724303015940, "id_str": "148837724303015936", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685183400/024_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685183400/024_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:52 +0000", "from_user": "MarleyWayniac", "from_user_id": 98212989, "from_user_id_str": "98212989", "from_user_name": "Marley Carter.", "geo": null, "id": 148837721132105730, "id_str": "148837721132105728", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686161825/IMG02014-20110214-1304_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686161825/IMG02014-20110214-1304_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Persona original no usa franelas de bob esponja o de perry #EsAsi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:52 +0000", "from_user": "pelosbriseno", "from_user_id": 2873271, "from_user_id_str": "2873271", "from_user_name": "Alex Briseno", "geo": null, "id": 148837720733646850, "id_str": "148837720733646848", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1212017340/Basta_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1212017340/Basta_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:51 +0000", "from_user": "Caaioheenriq", "from_user_id": 162772389, "from_user_id_str": "162772389", "from_user_name": "Caio Henrique : )", "geo": null, "id": 148837716891676670, "id_str": "148837716891676672", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1635452235/10202011806_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635452235/10202011806_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:49 +0000", "from_user": "circotimia_", "from_user_id": 221610474, "from_user_id_str": "221610474", "from_user_name": "M a i t e\\u10E6. ", "geo": null, "id": 148837709119635460, "id_str": "148837709119635456", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698350821/jjo__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698350821/jjo__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "SINBIOGRAFIA USA COND\\u00D3N", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:49 +0000", "from_user": "The_Apux", "from_user_id": 109052171, "from_user_id_str": "109052171", "from_user_name": "Cesar Casta\\u00F1eda", "geo": null, "id": 148837707395764220, "id_str": "148837707395764225", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694051337/comid_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694051337/comid_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:48 +0000", "from_user": "AdbeelB", "from_user_id": 73560843, "from_user_id_str": "73560843", "from_user_name": "Adbeel Balaguer", "geo": null, "id": 148837702639419400, "id_str": "148837702639419392", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1612818756/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612818756/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@AleR_5 :O mujer! te vas para USA o para Caracas?", "to_user": "AleR_5", "to_user_id": 102997297, "to_user_id_str": "102997297", "to_user_name": "Alejandra Rodriguez", "in_reply_to_status_id": 148833792562434050, "in_reply_to_status_id_str": "148833792562434050"}, +{"created_at": "Mon, 19 Dec 2011 18:50:46 +0000", "from_user": "nippon2japan", "from_user_id": 324783646, "from_user_id_str": "324783646", "from_user_name": "nippon2japan", "geo": null, "id": 148837696440254460, "id_str": "148837696440254464", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1415194774/fijii_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1415194774/fijii_normal.jpg", "source": "<a href="http://twittbot.net/" rel="nofollow">twittbot.net</a>", "text": "(*^\\u25CB^)\\u65E5\\u672C\\u672A\\u767A\\u58F2\\u3001USA\\u9650\\u5B9A\\u30E2\\u30C7\\u30EB\\u306E\\u30EA\\u30FC\\u30D0\\u30A4\\u30B9\\u306E\\u30AB\\u30FC\\u30B4\\u30D1\\u30F3\\u30C4 http://t.co/9vbrLnDR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:45 +0000", "from_user": "HeastOidaWappla", "from_user_id": 21240467, "from_user_id_str": "21240467", "from_user_name": "Nicole Lamprecht", "geo": null, "id": 148837693181280260, "id_str": "148837693181280256", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1635997131/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635997131/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/2hfrCq12 & http://t.co/abE5Bttf weihnachts w\\u00FCnsche ;P", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:50:48 +0000", "from_user": "AdbeelB", "from_user_id": 73560843, "from_user_id_str": "73560843", "from_user_name": "Adbeel Balaguer", "geo": null, "id": 148837702639419400, "id_str": "148837702639419392", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1612818756/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612818756/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@AleR_5 :O mujer! te vas para USA o para Caracas?", "to_user": "AleR_5", "to_user_id": 102997297, "to_user_id_str": "102997297", "to_user_name": "Alejandra Rodriguez", "in_reply_to_status_id": 148833792562434050, "in_reply_to_status_id_str": "148833792562434050"}, +{"created_at": "Mon, 19 Dec 2011 18:50:46 +0000", "from_user": "nippon2japan", "from_user_id": 324783646, "from_user_id_str": "324783646", "from_user_name": "nippon2japan", "geo": null, "id": 148837696440254460, "id_str": "148837696440254464", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1415194774/fijii_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1415194774/fijii_normal.jpg", "source": "<a href="http://twittbot.net/" rel="nofollow">twittbot.net</a>", "text": "(*^\\u25CB^)\\u65E5\\u672C\\u672A\\u767A\\u58F2\\u3001USA\\u9650\\u5B9A\\u30E2\\u30C7\\u30EB\\u306E\\u30EA\\u30FC\\u30D0\\u30A4\\u30B9\\u306E\\u30AB\\u30FC\\u30B4\\u30D1\\u30F3\\u30C4 http://t.co/9vbrLnDR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:45 +0000", "from_user": "HeastOidaWappla", "from_user_id": 21240467, "from_user_id_str": "21240467", "from_user_name": "Nicole Lamprecht", "geo": null, "id": 148837693181280260, "id_str": "148837693181280256", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1635997131/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635997131/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/2hfrCq12 & http://t.co/abE5Bttf weihnachts w\\u00FCnsche ;P", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:44 +0000", "from_user": "Japadearaque", "from_user_id": 203037893, "from_user_id_str": "203037893", "from_user_name": "Homi da Mona Lisa", "geo": null, "id": 148837687531540480, "id_str": "148837687531540481", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694520461/japadearaque_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694520461/japadearaque_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "nau da pra usa 4shared", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:44 +0000", "from_user": "NorCalCrush", "from_user_id": 264934281, "from_user_id_str": "264934281", "from_user_name": "Team CRUSH", "geo": null, "id": 148837686881435650, "id_str": "148837686881435648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1290663128/norcal_crush_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1290663128/norcal_crush_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Rick Santorum 2012: What Are His Positions? http://t.co/q5HdBpQU He would give tax breaks to manufacturers who kept jobs in the USA. Great!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:44 +0000", "from_user": "francomb6", "from_user_id": 79325833, "from_user_id_str": "79325833", "from_user_name": "franco brognoli", "geo": null, "id": 148837686705262600, "id_str": "148837686705262592", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1584395523/foto_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584395523/foto_twitter_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "eu acho que sou o \\u00FAnico que usa ar condicionado e ventilador ao mesmo tempo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:43 +0000", "from_user": "Kareyhtz", "from_user_id": 431757216, "from_user_id_str": "431757216", "from_user_name": "Karey Yago", "geo": null, "id": 148837682271891460, "id_str": "148837682271891456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681154158/large_41018_1377232112211_1274100057_30918221_69976_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681154158/large_41018_1377232112211_1274100057_30918221_69976_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "10' x 10' Hand Painted Muslin Background - Terrestrial Spirit - Made In The USA - V9031: Professional quality ba... http://t.co/a77JY7wP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:41 +0000", "from_user": "HotelCatedralPV", "from_user_id": 146098726, "from_user_id_str": "146098726", "from_user_name": "Hotel CATEDRAL P.V.", "geo": null, "id": 148837674831192060, "id_str": "148837674831192064", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1410059060/Imagen3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1410059060/Imagen3_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @MeGustaVallarta: Vamos a disfrutar 2 Horas de Yin Yoga con Heidi Ellison de Chicago, Illinois, USA en #PuertoVallarta http://t.co/4O8AUMIK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:41 +0000", "from_user": "Radclifficus", "from_user_id": 145716051, "from_user_id_str": "145716051", "from_user_name": "Liesa \\u2764", "geo": null, "id": 148837673883279360, "id_str": "148837673883279363", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692914947/84VMPE3r_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692914947/84VMPE3r_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Andy___Williams haha xD I wish I could live in usa @.@ haha. LOS ANGELES HERE I AM BABY xD", "to_user": "Andy___Williams", "to_user_id": 240476903, "to_user_id_str": "240476903", "to_user_name": "Andy Williams", "in_reply_to_status_id": 148824643569070080, "in_reply_to_status_id_str": "148824643569070080"}, +{"created_at": "Mon, 19 Dec 2011 18:50:40 +0000", "from_user": "Gametalkerz", "from_user_id": 203232009, "from_user_id_str": "203232009", "from_user_name": "Gametalkerz", "geo": null, "id": 148837669202440200, "id_str": "148837669202440192", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1263569288/logo_gz_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263569288/logo_gz_normal.jpg", "source": "<a href="http://www.gametalkerz.se" rel="nofollow">Gametalkerz Blogg</a>", "text": "Bekr\\u00E4ftade spel f\\u00F6r Vita-lansering i USA och Europa http://t.co/USzBWgMF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:39 +0000", "from_user": "kmagnuson", "from_user_id": 16520909, "from_user_id_str": "16520909", "from_user_name": "kmagnuson", "geo": null, "id": 148837666358693900, "id_str": "148837666358693889", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1284241970/MAGNUSON_NEW_TWITTER_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1284241970/MAGNUSON_NEW_TWITTER_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SBradleyDC: #Syracuse No. 1 in both college hoop polls. Received 53 of 64 1st place votes in @AP media poll and 30 of 31 in @ESPN/USA Today coaches poll", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:39 +0000", "from_user": "ugbededenen", "from_user_id": 297869230, "from_user_id_str": "297869230", "from_user_name": "UGBEDE DENEN RONALD", "geo": null, "id": 148837664693551100, "id_str": "148837664693551105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685049018/Ronnie2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685049018/Ronnie2_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @healthfinder: Your #doctor or nurse can help you stay healthy. Adults typically need a checkup every 1 to 5 years: http://t.co/2D8tVm88.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:39 +0000", "from_user": "windwest", "from_user_id": 76922302, "from_user_id_str": "76922302", "from_user_name": "Wind West", "geo": null, "id": 148837664106348540, "id_str": "148837664106348544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/482386955/windwest_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/482386955/windwest_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Unlocked iPhones Working On T-Mobile USA\\u2019s 3G Network in Some Areas http://t.co/CXr1LaDo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:37 +0000", "from_user": "elbalderas", "from_user_id": 50122342, "from_user_id_str": "50122342", "from_user_name": "jorgito balderas", "geo": null, "id": 148837659593289730, "id_str": "148837659593289728", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1505022601/IMG_3063_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505022601/IMG_3063_normal.JPG", "source": "<a href="http://www.apple.com" rel="nofollow">YouTube on iOS</a>", "text": "Santa Claus ya usa iPhone !!! http://t.co/LtdQiPr6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:37 +0000", "from_user": "LeehCabral", "from_user_id": 218568034, "from_user_id_str": "218568034", "from_user_name": "Let\\u00EDcia Cabral", "geo": null, "id": 148837655700975600, "id_str": "148837655700975616", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1536438730/OwAAAGsdoprMJMMrdCegBdt1Zj91zQkYmhR_nhBLET7X0bREJIxU51ndbpMyp3IlRFM4oq-d33MbQo-upXwQWE8u31AAm1T1UPxXsN3inj2RFBAdnYBm_ZXTtwLc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1536438730/OwAAAGsdoprMJMMrdCegBdt1Zj91zQkYmhR_nhBLET7X0bREJIxU51ndbpMyp3IlRFM4oq-d33MbQo-upXwQWE8u31AAm1T1UPxXsN3inj2RFBAdnYBm_ZXTtwLc_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:36 +0000", "from_user": "diQueeiroz", "from_user_id": 108033783, "from_user_id_str": "108033783", "from_user_name": "RonRibeiro", "geo": null, "id": 148837655063437300, "id_str": "148837655063437312", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702243056/EqIi2fN2_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702243056/EqIi2fN2_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:36 +0000", "from_user": "liwepud", "from_user_id": 433679483, "from_user_id_str": "433679483", "from_user_name": "Aboli Folliss", "geo": null, "id": 148837652186136580, "id_str": "148837652186136576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686066842/1449_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686066842/1449_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @mytojys: get credit with bad credit http://t.co/9CaeKnOM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:36 +0000", "from_user": "PlanBnB", "from_user_id": 78466241, "from_user_id_str": "78466241", "from_user_name": "PlanBnb", "geo": null, "id": 148837652160983040, "id_str": "148837652160983040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/444021711/DSC00795_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/444021711/DSC00795_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Banking in Hong Kong from Thailand - Orient Expat: As a USA citizen living in Thailand I am having diffi... http://t.co/fh8z9Yxn #Expats", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:36 +0000", "from_user": "RealMadridFC_", "from_user_id": 283015751, "from_user_id_str": "283015751", "from_user_name": "Real Madrid FC", "geo": null, "id": 148837651733168130, "id_str": "148837651733168128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1317063121/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317063121/logo_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "EduKick International Football Academies Square off Against Real Madrid in Spain's Prestigious Inter - PR-USA.ne... http://t.co/qOpujD8t", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:35 +0000", "from_user": "PedalPushersCO", "from_user_id": 59458234, "from_user_id_str": "59458234", "from_user_name": "Pedal Pushers", "geo": null, "id": 148837650227396600, "id_str": "148837650227396608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683524297/logo__1__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683524297/logo__1__normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @BikePortland: RT @mathowie: @rapha_n_america \"made in USA\" isn't about quality, but supporting local infrastructure and economies. Also, carbon footprints", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:35 +0000", "from_user": "Grazieelleap", "from_user_id": 173605792, "from_user_id_str": "173605792", "from_user_name": "Grazielle Alves ", "geo": null, "id": 148837648163799040, "id_str": "148837648163799040", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1244558178/corteey_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1244558178/corteey_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Me pergunte qualquer coisa. - \\u203A 1. Altura? 2. Peso? 3. Voc\\u00EA fuma? 4. Voc\\u00EA bebe? 5. Usa/j\\u00E1 usou drogas? 6.... http://t.co/miyEtOxl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:34 +0000", "from_user": "Mary_Chain", "from_user_id": 162873792, "from_user_id_str": "162873792", "from_user_name": "Maria Catena PRINCI", "geo": null, "id": 148837645160689660, "id_str": "148837645160689664", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1673279462/AUGURI_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673279462/AUGURI_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@David_IsayBlog \\u00E8 italiano, si usa di solito quando si stampa in sovraimpressione come nei bancomat :)", "to_user": "David_IsayBlog", "to_user_id": 9407562, "to_user_id_str": "9407562", "to_user_name": "David Di Tivoli", "in_reply_to_status_id": 148832479543967740, "in_reply_to_status_id_str": "148832479543967744"}, +{"created_at": "Mon, 19 Dec 2011 18:50:34 +0000", "from_user": "PutoTwitero", "from_user_id": 259030806, "from_user_id_str": "259030806", "from_user_name": "Andres, eso creo. =/", "geo": null, "id": 148837644024033280, "id_str": "148837644024033283", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702603740/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702603740/avatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @_Adicta: PUTO USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:34 +0000", "from_user": "ASEMUN", "from_user_id": 51734938, "from_user_id_str": "51734938", "from_user_name": "ASEM UN ASSOCIATION ", "geo": null, "id": 148837643499733000, "id_str": "148837643499732993", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/603845575/relations_flag_5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/603845575/relations_flag_5_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ChinaDailyUSA: Kim Jong-il passes away http://t.co/ZuZL8q6h", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:33 +0000", "from_user": "tomflanagan8", "from_user_id": 441015604, "from_user_id_str": "441015604", "from_user_name": "tom flanagan", "geo": null, "id": 148837640777629700, "id_str": "148837640777629696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@achrisevans hi Chris just to say happy Christmas from USA. Have been here since last month and loving it", "to_user": "achrisevans", "to_user_id": 72235760, "to_user_id_str": "72235760", "to_user_name": "Chris Evans"}, +{"created_at": "Mon, 19 Dec 2011 18:50:33 +0000", "from_user": "Kieferrrrrrrrrr", "from_user_id": 299696563, "from_user_id_str": "299696563", "from_user_name": "Kiefer Stermer", "geo": null, "id": 148837640383365120, "id_str": "148837640383365120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1616483581/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616483581/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "usa has got to be the dumbest channel on tv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:33 +0000", "from_user": "_KeepHope", "from_user_id": 362540574, "from_user_id_str": "362540574", "from_user_name": "Charly\\u2122", "geo": null, "id": 148837639548710900, "id_str": "148837639548710912", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701082899/RW_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701082899/RW_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@Just_Stylement Une fois j'avais achet\\u00E9 un t-shirt Chuck Bass, mais aux USA, et le truc me sert de pyjama... :b", "to_user": "Just_Stylement", "to_user_id": 347460827, "to_user_id_str": "347460827", "to_user_name": "Romane Styles \\u2020", "in_reply_to_status_id": 148836409724239870, "in_reply_to_status_id_str": "148836409724239873"}, +{"created_at": "Mon, 19 Dec 2011 18:50:32 +0000", "from_user": "JavierSantoyo", "from_user_id": 19959069, "from_user_id_str": "19959069", "from_user_name": "Javier A. Santoyo F.", "geo": null, "id": 148837636734337020, "id_str": "148837636734337024", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697522366/jas2011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697522366/jas2011_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Es cierto @GustavoMadero q AN esta tan malito d su autocritica, q la usa d argumento para negar registro a ciudadanos como @ClouthierManuel?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:32 +0000", "from_user": "mytwittsPic", "from_user_id": 390737681, "from_user_id_str": "390737681", "from_user_name": "RETweet PIcs ", "geo": null, "id": 148837636595912700, "id_str": "148837636595912704", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1684906701/_E2_80_A9_20-_20_D0_BC_CC_B5_CC_B5oh_C9_91_D0_B8d_20_23_20_E2_80_A9_20-_20_23_D9_85_D9_85_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684906701/_E2_80_A9_20-_20_D0_BC_CC_B5_CC_B5oh_C9_91_D0_B8d_20_23_20_E2_80_A9_20-_20_23_D9_85_D9_85_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "#Add me pls and #RT #BBm #PIN:27B5FCF5. #Usa #China #Japan #Asia #spain #Uk #Indonesia #Philippine #Arab", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:32 +0000", "from_user": "izcherry", "from_user_id": 78118956, "from_user_id_str": "78118956", "from_user_name": "Isabelle ", "geo": null, "id": 148837635597672450, "id_str": "148837635597672448", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700859024/2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700859024/2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:32 +0000", "from_user": "fernandagpaes", "from_user_id": 133453721, "from_user_id_str": "133453721", "from_user_name": "Fernanda Paes", "geo": null, "id": 148837634679111680, "id_str": "148837634679111682", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1650608967/OwAAAL_hE6XfYdHIXbmQ_pBXqduAZ4fR4q6FCUBqtzgIjeIARwPkfoPrZlmeNxqynS_jfXAh73uKdgIK3XOgAAWl_gEAm1T1UMZAroUjdaw2d8VVmmqJndTs68iG_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650608967/OwAAAL_hE6XfYdHIXbmQ_pBXqduAZ4fR4q6FCUBqtzgIjeIARwPkfoPrZlmeNxqynS_jfXAh73uKdgIK3XOgAAWl_gEAm1T1UMZAroUjdaw2d8VVmmqJndTs68iG_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:29 +0000", "from_user": "justchillin247", "from_user_id": 233828667, "from_user_id_str": "233828667", "from_user_name": "Ezekiel Finister", "geo": null, "id": 148837622540812300, "id_str": "148837622540812288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1631373273/justchillin247_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631373273/justchillin247_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "The USA is the only country where weed is consider illegal -_______-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:27 +0000", "from_user": "BenStarkHH", "from_user_id": 25374201, "from_user_id_str": "25374201", "from_user_name": "Ben", "geo": null, "id": 148837615750225920, "id_str": "148837615750225922", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1125091596/Ben_Stark_003_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1125091596/Ben_Stark_003_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Someone get this to #StevenColbert - A Butter message to the USA! http://t.co/FlhNnU4s", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:27 +0000", "from_user": "grisantycosme", "from_user_id": 114464878, "from_user_id_str": "114464878", "from_user_name": "Leonardo Grisanty \\u2714", "geo": null, "id": 148837615179808770, "id_str": "148837615179808768", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1677115805/perfil_mio_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677115805/perfil_mio_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Mi Numero en USA 1-908-342-7818", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:25 +0000", "from_user": "virtualjobporta", "from_user_id": 279010499, "from_user_id_str": "279010499", "from_user_name": "Virtual OfficeServic", "geo": null, "id": 148837608326299650, "id_str": "148837608326299648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1395802035/logo_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1395802035/logo_twitter_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Locksmith Data Base 2: I loking for data base (email and tel) for locksmiths store in the USA ... http://t.co/Lxl2HmtN #job #freelancer", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:25 +0000", "from_user": "Gabrielcamppos", "from_user_id": 240744716, "from_user_id_str": "240744716", "from_user_name": "Gabriel Campos", "geo": null, "id": 148837606891851780, "id_str": "148837606891851776", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1616195802/PAAAANAw7TncZ22iQAvMVZfDwXLp0n00P8t2xyScHuhRiKl6M5J8MyrUEJa1fmtbloLSDT0ZukS_QJSTLVsI7Pfn3iQAm1T1UL6LK7MSvxH-qzmP0xzxlihl5WVP_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616195802/PAAAANAw7TncZ22iQAvMVZfDwXLp0n00P8t2xyScHuhRiKl6M5J8MyrUEJa1fmtbloLSDT0ZukS_QJSTLVsI7Pfn3iQAm1T1UL6LK7MSvxH-qzmP0xzxlihl5WVP_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:21 +0000", "from_user": "albadmes", "from_user_id": 86520751, "from_user_id_str": "86520751", "from_user_name": "Alba", "geo": null, "id": 148837592371183600, "id_str": "148837592371183617", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1645539887/dulce12653_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645539887/dulce12653_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @elchascas: \\u00DAltimas semanas de #Lacasadeallado en USA. \\u00A1Lleg\\u00F3 la hora de desenmascarar a los verdaderos culpables! http://t.co/rnvHipHu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:21 +0000", "from_user": "Tkbmusic444", "from_user_id": 387145876, "from_user_id_str": "387145876", "from_user_name": "anna", "geo": null, "id": 148837590244655100, "id_str": "148837590244655104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1674373259/Aiden-mic_152440_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674373259/Aiden-mic_152440_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@1DandAidenRule lol I just heard it on usa radio yesterday I am not really a onedirection fan though I wish them well, love @Mr_Grimshaw vce", "to_user": "1DandAidenRule", "to_user_id": 217178660, "to_user_id_str": "217178660", "to_user_name": "French fan of AG&1D!", "in_reply_to_status_id": 148836738528321540, "in_reply_to_status_id_str": "148836738528321537"}, +{"created_at": "Mon, 19 Dec 2011 18:50:21 +0000", "from_user": "Yamii_97", "from_user_id": 293288359, "from_user_id_str": "293288359", "from_user_name": "Yamila", "geo": null, "id": 148837589728755700, "id_str": "148837589728755713", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1633973423/Yamii_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633973423/Yamii_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "No comprender, si te boludea, chamuya, te quiere, te usa, o te toma por estupida", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:20 +0000", "from_user": "animalpolitikoa", "from_user_id": 334853861, "from_user_id_str": "334853861", "from_user_name": "DIEGO FERN\\u00C1N", "geo": null, "id": 148837585291198460, "id_str": "148837585291198464", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1590555737/p7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1590555737/p7_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @CubanitoenCuba: Sirios confirman apoyo al Gobierno de Al Assad y rechazan injerencia extranjera: TeleSur/La... http://t.co/JOEPfpGf #Cuba #noticias #usa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:19 +0000", "from_user": "Milgreddy", "from_user_id": 83693653, "from_user_id_str": "83693653", "from_user_name": "Milgreddy k. ", "geo": null, "id": 148837583206621200, "id_str": "148837583206621184", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1673786813/330906669_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673786813/330906669_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:18 +0000", "from_user": "lglehn", "from_user_id": 69127510, "from_user_id_str": "69127510", "from_user_name": "Luis von Glehn", "geo": null, "id": 148837577590452220, "id_str": "148837577590452225", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/383371450/60165b67_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/383371450/60165b67_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NASA - Expedition 30 Soyuz Rolls to the Pad http://t.co/Jih8QZ0K via @addthis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:16 +0000", "from_user": "nilatybiby", "from_user_id": 431420079, "from_user_id_str": "431420079", "from_user_name": "Salomea Aisbett", "geo": null, "id": 148837571252854800, "id_str": "148837571252854784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681061082/27_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681061082/27_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @xasijimaf: loans small business chicago http://t.co/ig8NHKQN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:14 +0000", "from_user": "pacgi", "from_user_id": 21244364, "from_user_id_str": "21244364", "from_user_name": "gi do matheus", "geo": null, "id": 148837562574839800, "id_str": "148837562574839809", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1645511497/Foto_criada_em_2011-11-18__s_15.36__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645511497/Foto_criada_em_2011-11-18__s_15.36__2_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "\\u00C9 VOC\\u00CA, SATAN\\u00C1S?? RT: \\u201C@MacMagazine: V\\u00EDdeo: Yamaha usa AirPort Express para fazer a Siri tocar piano - http://t.co/eMTZ1eT3\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:14 +0000", "from_user": "yasmiim_Brandao", "from_user_id": 334724304, "from_user_id_str": "334724304", "from_user_name": "yasmiim.B", "geo": null, "id": 148837562348343300, "id_str": "148837562348343296", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1571200225/of__2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1571200225/of__2__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Paix\\u00E3o n\\u00E3o \\u00E9 que nem calcinha que agente usa uma por dia ,' Mel fronckowiak'", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:14 +0000", "from_user": "minefreeworld", "from_user_id": 219027602, "from_user_id_str": "219027602", "from_user_name": "ICBL", "geo": null, "id": 148837560821616640, "id_str": "148837560821616641", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1583717731/P4P_square__jpg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583717731/P4P_square__jpg_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Reporter asks #DOS if it is \"incongruous\" that #US supports mine clearance, but refuses to #banlandmines: http://t.co/e7pnIuak", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:14 +0000", "from_user": "pdenegri", "from_user_id": 46689518, "from_user_id_str": "46689518", "from_user_name": "Juan Pablo Denegri", "geo": null, "id": 148837559395561470, "id_str": "148837559395561472", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1099157100/V8_0116_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1099157100/V8_0116_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:09 +0000", "from_user": "qycyhuli", "from_user_id": 430617013, "from_user_id_str": "430617013", "from_user_name": "Kanika Crampton", "geo": null, "id": 148837541364252670, "id_str": "148837541364252672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1678818394/57_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678818394/57_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @pakynegif: car insurance premiums nsw http://t.co/UfFzSyrc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:09 +0000", "from_user": "cjohnsonstaub", "from_user_id": 74770422, "from_user_id_str": "74770422", "from_user_name": "C Johnson-Staub", "geo": null, "id": 148837538759581700, "id_str": "148837538759581696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1242263619/webcam_cjs_011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1242263619/webcam_cjs_011_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Pre-K winners for Race to the Top contest: Will they spur broader reform? - http://t.co/ROqNaFU5 http://t.co/kArr6qiX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:06 +0000", "from_user": "vanessa13006", "from_user_id": 17953744, "from_user_id_str": "17953744", "from_user_name": "Vanessa Touati", "geo": null, "id": 148837528743587840, "id_str": "148837528743587840", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1352936570/android1305366002902_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1352936570/android1305366002902_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @CBeigbeder: La France 3eme pays le plus innovant de la planete, derriere USA et Japon ! Enfin une bonne nouvelle economique ! http://t.co/KppHgo2x", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:06 +0000", "from_user": "Laahguimaraes_", "from_user_id": 298908145, "from_user_id_str": "298908145", "from_user_name": "Larissa Guimaraes", "geo": null, "id": 148837527976026100, "id_str": "148837527976026112", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1546038729/SPM_A3812_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546038729/SPM_A3812_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tadeuromao: N\\u00E3o precisa fala usa essa boca s\\u00F3 pra me beija ... \\u266A\\u266B\\u266A\\u266B @Laahguimaraes_ (L)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:06 +0000", "from_user": "quelbrandao", "from_user_id": 74761995, "from_user_id_str": "74761995", "from_user_name": "Raquel", "geo": null, "id": 148837527309131780, "id_str": "148837527309131776", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1178862268/DSC00182_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1178862268/DSC00182_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Quem gosta do presente usa tanto,que cai os strass :P", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:05 +0000", "from_user": "TopTenOffice", "from_user_id": 295160344, "from_user_id_str": "295160344", "from_user_name": "Richard Floyd", "geo": null, "id": 148837521810399230, "id_str": "148837521810399232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1482941325/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1482941325/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #169 Brother PC Connectable Labeling System (PT2730) $99.99: The PT-2730 is a professional, desktop l... http://t.co/fFE6thEE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:04 +0000", "from_user": "lalopevibut", "from_user_id": 434027033, "from_user_id_str": "434027033", "from_user_name": "Lettice Mays", "geo": null, "id": 148837518513676300, "id_str": "148837518513676289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687397454/780_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687397454/780_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "car insurance comparison sites in uk http://t.co/BQhp8AbP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:04 +0000", "from_user": "grisantycosme", "from_user_id": 114464878, "from_user_id_str": "114464878", "from_user_name": "Leonardo Grisanty \\u2714", "geo": null, "id": 148837517888720900, "id_str": "148837517888720896", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1677115805/perfil_mio_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677115805/perfil_mio_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@JFelizPacheco @Juanmanueldiaz @manuelrojasp @Elias_Cornelio @juangrisanty @Ramoncin22 Mi numero en USA 908-342-7818", "to_user": "JFelizPacheco", "to_user_id": 117142639, "to_user_id_str": "117142639", "to_user_name": "Jorge JuaN "}, +{"created_at": "Mon, 19 Dec 2011 18:50:03 +0000", "from_user": "DietitianSherry", "from_user_id": 194524906, "from_user_id_str": "194524906", "from_user_name": "SherryColemanCollins", "geo": null, "id": 148837513778298880, "id_str": "148837513778298881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1151737479/IMGP4172_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1151737479/IMGP4172_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Most Americans don't eat like MyPlate, but when they do #SmartSnacking is a must to help reach nutrition goals. http://t.co/hHcia5wH...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:02 +0000", "from_user": "eqmon", "from_user_id": 190527988, "from_user_id_str": "190527988", "from_user_name": "Earthquake Watch M2+", "geo": +{"coordinates": [61.3371,-151.2547], "type": "Point"}, "id": 148837512641658880, "id_str": "148837512641658880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1123436740/richter-scale-sam_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1123436740/richter-scale-sam_normal.jpg", "source": "<a href="http://ijg.me" rel="nofollow">ijg</a>", "text": "3.3 - Southern Alaska (Kenai-Cook Inlet, AK 99682, USA) - 19/12/11 12:48:23 EST Depth: 65.6 km (40.76 mi) http://t.co/e8k7LqKN #hmrd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:02 +0000", "from_user": "LeaderReading", "from_user_id": 253283421, "from_user_id_str": "253283421", "from_user_name": "Leader Reading", "geo": null, "id": 148837511777615870, "id_str": "148837511777615873", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1508375424/logo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1508375424/logo_normal.JPG", "source": "<a href="http://www.visibli.com" rel="nofollow">Visibli</a>", "text": "Ayala Blanco: haciendo libros y reflexionando sobre el cine - http://t.co/LHhZ5Jxi (Comunicado de prensa) http://t.co/aCzRfOp6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:02 +0000", "from_user": "VioletStarfish", "from_user_id": 46455080, "from_user_id_str": "46455080", "from_user_name": "M\\u00F3nika Lara", "geo": null, "id": 148837509751779330, "id_str": "148837509751779329", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1514329800/RyM_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1514329800/RyM_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:59 +0000", "from_user": "gameswap1", "from_user_id": 297523136, "from_user_id_str": "297523136", "from_user_name": "gameswap", "geo": null, "id": 148837496313217020, "id_str": "148837496313217024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "(USA) [H] Skyrim, Dark Souls, Gears of War 3, others (360), Super Paper Mario (Wii), PSP games, [W] Metal Gear S... http://t.co/9KMni5S9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:57 +0000", "from_user": "iJesus89", "from_user_id": 94486791, "from_user_id_str": "94486791", "from_user_name": "\\u2730\\u2603\\u2744\\uF8FFJes\\u00FAs S.\\uF8FF\\u2730\\u2603\\u2744", "geo": null, "id": 148837488092393470, "id_str": "148837488092393472", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701801618/FCB9AC74-EEFF-434D-93CA-F9AD3A4F2611_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701801618/FCB9AC74-EEFF-434D-93CA-F9AD3A4F2611_normal", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "C/c @AyudaMovistarVe @MovistarVe RT @OsvaldoMendoza: @iPhoneVeneno @iPhoneVen Miren la velocidad del 3G de T-Mobile USA http://t.co/ws1CEonQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:56 +0000", "from_user": "_tauaneinfanger", "from_user_id": 171594522, "from_user_id_str": "171594522", "from_user_name": "tata do Rodrigo ", "geo": null, "id": 148837487505186800, "id_str": "148837487505186816", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689362121/edb22MRr6nWefzdUwoAm1T1UJy1vNpgyaFCZgMXyePwpE8Lx5DH_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689362121/edb22MRr6nWefzdUwoAm1T1UJy1vNpgyaFCZgMXyePwpE8Lx5DH_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "ontem o Silvio Santos falando q a Miley tinha uma silhueta bonita tals,mas ela tinha celulite o.O iii tio tem q usa oculos viu ;))", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:55 +0000", "from_user": "NewAgeCDs", "from_user_id": 363734776, "from_user_id_str": "363734776", "from_user_name": "Richard Floyd", "geo": null, "id": 148837483495436300, "id_str": "148837483495436289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1517563969/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517563969/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #1827 Dreamsurf: Ocean Waves For Relaxation Nature Sounds $8.75: When night falls on the earth, the s... http://t.co/VCtJdwk5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:53 +0000", "from_user": "Heather989", "from_user_id": 23910769, "from_user_id_str": "23910769", "from_user_name": "Heather Lagan", "geo": null, "id": 148837472288256000, "id_str": "148837472288256000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1109356106/heather_20101_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1109356106/heather_20101_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Woohoo - First 5 STAR REVIEW on Amazon USA - Chaldean Numerology is welcomed! Thank you all for your support and enthusiasm - happy Monday!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:52 +0000", "from_user": "chavezrog", "from_user_id": 70936280, "from_user_id_str": "70936280", "from_user_name": "ROGER CHAVEZ", "geo": null, "id": 148837466944712700, "id_str": "148837466944712704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/394420350/AztecCalendarReplicaGoldSmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/394420350/AztecCalendarReplicaGoldSmall_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "RT @corazondefan @chavezrog usa vias alternas bro << yeah its called the street! Lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:48 +0000", "from_user": "ManSiciliano", "from_user_id": 430390368, "from_user_id_str": "430390368", "from_user_name": "Man Siciliano", "geo": null, "id": 148837452851843070, "id_str": "148837452851843072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1678323282/092148_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678323282/092148_normal.jpg", "source": "<a href="http://ping.fm/" rel="nofollow">Ping.fm</a>", "text": "Best TEEN vacation spots in USA and activities there? - Question by Motherscreations: Best TEEN vacation spots in US... http://t.co/GGT9oEdA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:47 +0000", "from_user": "caritoparrado", "from_user_id": 155793515, "from_user_id_str": "155793515", "from_user_name": "La Pepona", "geo": null, "id": 148837448657551360, "id_str": "148837448657551360", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689965590/a57vVACg_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689965590/a57vVACg_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Marks_23 mmm...usa la bota no mas tu!!! 77", "to_user": "Marks_23", "to_user_id": 120365846, "to_user_id_str": "120365846", "to_user_name": "Marcos Alvarez", "in_reply_to_status_id": 148837032494510080, "in_reply_to_status_id_str": "148837032494510080"}, +{"created_at": "Mon, 19 Dec 2011 18:49:46 +0000", "from_user": "MyKidrauhlJB", "from_user_id": 369256983, "from_user_id_str": "369256983", "from_user_name": "BrendaBieber\\u2665.", "geo": null, "id": 148837444219965440, "id_str": "148837444219965440", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701464602/justin_bieber_by_kermena-d4j62ie_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701464602/justin_bieber_by_kermena-d4j62ie_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SelenaNoEsReal: Ese momento inc\\u00F3modo cuando todo el mundo se da cuenta de que Selena Gomez usa PlayBack.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:41 +0000", "from_user": "Sharleenpvt", "from_user_id": 440183802, "from_user_id_str": "440183802", "from_user_name": "Sharleen Scotton", "geo": null, "id": 148837421306478600, "id_str": "148837421306478593", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700511597/large_blarg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700511597/large_blarg_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Frieling USA ADE Angelina, Electronic Kitchen Scale: ADE Germany is a leading innovator in consumer scales. ADE ... http://t.co/08dcGxtw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:34 +0000", "from_user": "Aleidaabbd", "from_user_id": 426263401, "from_user_id_str": "426263401", "from_user_name": "Aleida Wigle", "geo": null, "id": 148837393284345860, "id_str": "148837393284345856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668799743/LLCM-1650_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668799743/LLCM-1650_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "WWKD? What would Kaitlyn do? White USA Flag / Checker Racing Hat / Baseball Cap: T-ShirtFrenzy offers over 30,00... http://t.co/AkBnKsuk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:33 +0000", "from_user": "roque0001", "from_user_id": 82899095, "from_user_id_str": "82899095", "from_user_name": "Roberto Garcia Roque", "geo": null, "id": 148837391061352450, "id_str": "148837391061352448", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/809438070/3517736384_f1d4fbc94e_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/809438070/3517736384_f1d4fbc94e_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:33 +0000", "from_user": "MaLuLeimberg", "from_user_id": 160777213, "from_user_id_str": "160777213", "from_user_name": "MaLu Leimberg", "geo": null, "id": 148837389018730500, "id_str": "148837389018730496", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697692961/IMG-20110326-00171_1d_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697692961/IMG-20110326-00171_1d_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "No tiene disculpa q una sra d 40a al darle indicaciones me responda OKA (OK).. Quien usa o dice OKA en estos dias? alguna vez estuvo d moda?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:32 +0000", "from_user": "Ian_ArguetaYea", "from_user_id": 391865657, "from_user_id_str": "391865657", "from_user_name": "Ian Argueta", "geo": null, "id": 148837384837009400, "id_str": "148837384837009409", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688148391/Yo_FB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688148391/Yo_FB_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "O por Diooos! mi play esta en la USA!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:31 +0000", "from_user": "mmotaribeiro", "from_user_id": 43606345, "from_user_id_str": "43606345", "from_user_name": "Marcelo Mota Ribeiro", "geo": null, "id": 148837380500103170, "id_str": "148837380500103169", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1597925728/Marcelo-Mota-Ribeiro_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1597925728/Marcelo-Mota-Ribeiro_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "qdo o #STF quer ser progressista, usa interpreta\\u00E7\\u00E3o para atropelar a CF. qdo quer ser conservador, interpreta literalmente a CF. pilantras!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:30 +0000", "from_user": "circotimia_", "from_user_id": 221610474, "from_user_id_str": "221610474", "from_user_name": "M a i t e\\u10E6. ", "geo": null, "id": 148837375206891520, "id_str": "148837375206891520", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698350821/jjo__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698350821/jjo__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "ROSADITA USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:29 +0000", "from_user": "gerdomingo", "from_user_id": 271845905, "from_user_id_str": "271845905", "from_user_name": "Germ\\u00E1n Domingo", "geo": null, "id": 148837372442853380, "id_str": "148837372442853378", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1624399048/DSC00270_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624399048/DSC00270_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@pablocalvari Campe\\u00F3n necesito un poco de tu #infodelabuena Vos q sabes!! Trezeguet usa boxer o slip??? DAP al cafe le pone azucar o chuker?", "to_user": "pablocalvari", "to_user_id": 241535485, "to_user_id_str": "241535485", "to_user_name": "Pablo Calvari"}, +{"created_at": "Mon, 19 Dec 2011 18:49:23 +0000", "from_user": "hassiemwwestove", "from_user_id": 305932076, "from_user_id_str": "305932076", "from_user_name": "Hassie Westover", "geo": null, "id": 148837348887633920, "id_str": "148837348887633920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694689293/imagesCA7W3AFL_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694689293/imagesCA7W3AFL_normal", "source": "<a href="http://un55d6000tv.com" rel="nofollow">un55d6000tvdotcom</a>", "text": "For Sale Phillips Televisions-Philips SRP4004/27 Universal 4 In 1 Remote Control for TV,VCR, http://t.co/UrxJIFPu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:21 +0000", "from_user": "capotee_", "from_user_id": 310841348, "from_user_id_str": "310841348", "from_user_name": "maikinho", "geo": null, "id": 148837339953766400, "id_str": "148837339953766400", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683451233/PQAAAL7XcfRpFFRwjNC2e9hez_b7udkS3o3bGTsWTdUA2VnVTTolUwILgCRXTw7R9NzOCcO3hBj7knTq2Ky9Rn_kpX0Am1T1UCRYvXM99Kh4kBDADG76xCtw_yYg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683451233/PQAAAL7XcfRpFFRwjNC2e9hez_b7udkS3o3bGTsWTdUA2VnVTTolUwILgCRXTw7R9NzOCcO3hBj7knTq2Ky9Rn_kpX0Am1T1UCRYvXM99Kh4kBDADG76xCtw_yYg_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "se usa ainda ? \\u00AC\\u00AC'", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:18 +0000", "from_user": "JuiceboxJewels", "from_user_id": 336822225, "from_user_id_str": "336822225", "from_user_name": "Juicebox Jewels", "geo": null, "id": 148837328331341820, "id_str": "148837328331341825", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1446107277/smalljbj_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1446107277/smalljbj_normal.JPG", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "CLIP ON Bright Pink Wood Gold Stardust 3\"Hoop Earrings Basketball wives(C267)USA http://t.co/2EIwTciI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:18 +0000", "from_user": "imWinchester_", "from_user_id": 252630805, "from_user_id_str": "252630805", "from_user_name": "matheus casanho", "geo": null, "id": 148837328297799680, "id_str": "148837328297799680", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702187993/Foto2195_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702187993/Foto2195_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:17 +0000", "from_user": "pesugyhu", "from_user_id": 433508089, "from_user_id_str": "433508089", "from_user_name": "Sylvania Linkleter", "geo": null, "id": 148837321989558270, "id_str": "148837321989558273", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685449331/1422_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685449331/1422_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @gyqyboqob: car insurance utah layton http://t.co/dwiyXSWF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:08 +0000", "from_user": "_Adicta", "from_user_id": 123965194, "from_user_id_str": "123965194", "from_user_name": "La que hace spam.", "geo": null, "id": 148837282835738620, "id_str": "148837282835738624", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "ARACELI USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:05 +0000", "from_user": "stormchaser4850", "from_user_id": 15665499, "from_user_id_str": "15665499", "from_user_name": "Johnny Kelly", "geo": null, "id": 148837271234281470, "id_str": "148837271234281472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688101585/132365219113032_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688101585/132365219113032_normal.gif", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Developing: SPC: Heavy snowfall rates, localized blizzard conditions to increase into the evening across SW Plains http://t.co/3UeK5Sn3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:00 +0000", "from_user": "Feel_MyHalo", "from_user_id": 278365097, "from_user_id_str": "278365097", "from_user_name": "Pretty_Bee", "geo": null, "id": 148837251818848260, "id_str": "148837251818848256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697766733/PodD65r0_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697766733/PodD65r0_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Party in the USA.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:00 +0000", "from_user": "thaisbertolli", "from_user_id": 104862047, "from_user_id_str": "104862047", "from_user_name": "GAZEROCKisNOTDEAD3", "geo": null, "id": 148837251533639680, "id_str": "148837251533639681", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1664361495/ruki-avatar_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664361495/ruki-avatar_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pokemoncolorido: fia tem um z\\u00EDper na sua orelha acho que vc errou o lugar pq z\\u00EDper se usa na roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:58 +0000", "from_user": "BangBangNaus", "from_user_id": 339443987, "from_user_id_str": "339443987", "from_user_name": "Kevin Lang", "geo": null, "id": 148837242020966400, "id_str": "148837242020966400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677531479/Omalley_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677531479/Omalley_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @MSU_Basketball: #Spartans move up to No. 19 in AP Top 25 and No. 20 in ESPN/USA Today Coaches Poll.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:55 +0000", "from_user": "ACOwatch", "from_user_id": 198728096, "from_user_id_str": "198728096", "from_user_name": "ACO Watch", "geo": null, "id": 148837230180446200, "id_str": "148837230180446208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1465153715/ACO_WATCH_BLOGTALK_RADIO_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1465153715/ACO_WATCH_BLOGTALK_RADIO_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Affordable Care Act helps 32 health systems improve care for patients, saving up to $1.1 billion | http://t.co/J9ledc6W #acochat #aco", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:55 +0000", "from_user": "DeathEaterNo1", "from_user_id": 439572700, "from_user_id_str": "439572700", "from_user_name": "Bellatrix Lestrange", "geo": null, "id": 148837229832318980, "id_str": "148837229832318977", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699093665/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699093665/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@1DPotter I'm glad I know now lol. I'm from the usa so I've never heard of it", "to_user": "1DPotter", "to_user_id": 432560977, "to_user_id_str": "432560977", "to_user_name": "1D Potter", "in_reply_to_status_id": 148836744186441730, "in_reply_to_status_id_str": "148836744186441728"}, +{"created_at": "Mon, 19 Dec 2011 18:48:52 +0000", "from_user": "NealBradley", "from_user_id": 30212556, "from_user_id_str": "30212556", "from_user_name": "Neal Bradley", "geo": null, "id": 148837216016269300, "id_str": "148837216016269312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1678399005/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678399005/me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Murray State debuts at #22 in the latest Coaches Poll from ESPN/USA Today. http://t.co/dZO7wcbA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:51 +0000", "from_user": "hassiemwwestove", "from_user_id": 305932076, "from_user_id_str": "305932076", "from_user_name": "Hassie Westover", "geo": null, "id": 148837211666780160, "id_str": "148837211666780160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694689293/imagesCA7W3AFL_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694689293/imagesCA7W3AFL_normal", "source": "<a href="http://un55d6000tv.com" rel="nofollow">un55d6000tvdotcom</a>", "text": "Best Buy Phillips Televisions-Philips 32PFL3506/F7 32-inch 720p LCD HDTV, Black At USA Store http://t.co/Yw3Oi7DA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:50 +0000", "from_user": "alvarograves", "from_user_id": 39816942, "from_user_id_str": "39816942", "from_user_name": "Alvaro Graves", "geo": null, "id": 148837208797888500, "id_str": "148837208797888512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/933141912/Alvaro_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/933141912/Alvaro_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Irony at its best! RT @olyerickson: But is written in PDF! http://t.co/mzmUFgsV RT @EllnMllr: House Approves Sweeping #OpenData Standards", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:50 +0000", "from_user": "dewxp", "from_user_id": 334720386, "from_user_id_str": "334720386", "from_user_name": "Mtn Dew Game Fuel", "geo": null, "id": 148837207078215680, "id_str": "148837207078215680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1519437335/GFcherry_white_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1519437335/GFcherry_white_normal.png", "source": "<a href="http://www.localresponse.com" rel="nofollow">Mtn Dew Game Fuel</a>", "text": "@fatboiytubz Check in at 7-11 in next 24hrs for 30% off Turtle Beach headset! Buy MTN DEW, get Double XP time. Info: http://t.co/fQGwLNXL", "to_user": "fatboiytubz", "to_user_id": 229045046, "to_user_id_str": "229045046", "to_user_name": "Aidan Smith", "in_reply_to_status_id": 148808466478284800, "in_reply_to_status_id_str": "148808466478284800"}, +{"created_at": "Mon, 19 Dec 2011 18:48:49 +0000", "from_user": "dewxp", "from_user_id": 334720386, "from_user_id_str": "334720386", "from_user_name": "Mtn Dew Game Fuel", "geo": null, "id": 148837206163865600, "id_str": "148837206163865601", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1519437335/GFcherry_white_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1519437335/GFcherry_white_normal.png", "source": "<a href="http://www.localresponse.com" rel="nofollow">Mtn Dew Game Fuel</a>", "text": "@Lovatic21 Check in at 7-11 in next 24hrs for 30% off Turtle Beach headset! Buy MTN DEW, get Double XP time. Info: http://t.co/9Rk2l2Lh", "to_user": "Lovatic21", "to_user_id": 397005257, "to_user_id_str": "397005257", "to_user_name": "A.G. LyNN", "in_reply_to_status_id": 148808344767967230, "in_reply_to_status_id_str": "148808344767967232"}, +{"created_at": "Mon, 19 Dec 2011 18:48:40 +0000", "from_user": "_Adicta", "from_user_id": 123965194, "from_user_id_str": "123965194", "from_user_name": "La que hace spam.", "geo": null, "id": 148837168264126460, "id_str": "148837168264126464", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "YASBERLYS USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:39 +0000", "from_user": "Laucaba", "from_user_id": 116491269, "from_user_id_str": "116491269", "from_user_name": "Laura P Caballero ", "geo": null, "id": 148837162647957500, "id_str": "148837162647957505", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1571210391/cordon_lucha_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1571210391/cordon_lucha_normal.JPG", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:36 +0000", "from_user": "ThatGuy_GA", "from_user_id": 179778115, "from_user_id_str": "179778115", "from_user_name": "G.T.A.J", "geo": null, "id": 148837150396391420, "id_str": "148837150396391424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1613081485/Posted_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1613081485/Posted_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @MSU_Basketball: #Spartans move up to No. 19 in AP Top 25 and No. 20 in ESPN/USA Today Coaches Poll.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:24 +0000", "from_user": "J_Adabriand", "from_user_id": 206469941, "from_user_id_str": "206469941", "from_user_name": "Jonathan Adabriand", "geo": null, "id": 148837099678867460, "id_str": "148837099678867456", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1278486240/aviva_o_dom4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1278486240/aviva_o_dom4_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Impossivel \\u00E9 uma palavra muito grand e que gente pequena usa pra nos oprimir.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:23 +0000", "from_user": "Meehonda", "from_user_id": 67445264, "from_user_id_str": "67445264", "from_user_name": "Maiumy", "geo": null, "id": 148837097053224960, "id_str": "148837097053224962", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1492308840/Foto1282_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1492308840/Foto1282_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Ironicodepre: Tenho uma arma chamada \"Ironia\" e N\\u00C3O TENHO MEDO DE US\\u00C1-LA.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:22 +0000", "from_user": "macbookfinder", "from_user_id": 338458338, "from_user_id_str": "338458338", "from_user_name": "macbookfinder", "geo": null, "id": 148837091567087600, "id_str": "148837091567087616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1453189323/macbook_pro_17_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1453189323/macbook_pro_17_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Apple MacBook Air 13.3\" Laptop - MC965LL/A (July, 2011) (Latest Model) http://t.co/suyGjOAn #apple #macbook #USA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:22 +0000", "from_user": "coresdoarcoiris", "from_user_id": 236448673, "from_user_id_str": "236448673", "from_user_name": "andressa n\\u00E9", "geo": null, "id": 148837090317189120, "id_str": "148837090317189120", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1645469625/vomitando-arco-iris-imagem_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645469625/vomitando-arco-iris-imagem_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} + +, +{"created_at": "Mon, 19 Dec 2011 19:01:16 +0000", "from_user": "ForSaleiAlgarve", "from_user_id": 386105591, "from_user_id_str": "386105591", "from_user_name": "For Sale in Algarve", "geo": null, "id": 148840338902106100, "id_str": "148840338902106114", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1575941712/For_Sale_In_Algarve_Twitter_Logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575941712/For_Sale_In_Algarve_Twitter_Logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Villa for sale in Lagos | 6+ bedrooms ~ For-Sale-in-Algarve ~ #Algarve\\n#Portugal - http://t.co/l3NlBRwU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:01:16 +0000", "from_user": "aleemoschen_", "from_user_id": 289017847, "from_user_id_str": "289017847", "from_user_name": "Alexia Moschen \\u2603", "geo": null, "id": 148840338205847550, "id_str": "148840338205847552", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702449335/hehehihihohohuhu_004_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702449335/hehehihihohohuhu_004_normal.JPG", "source": "<a href="http://formspring.me" rel="nofollow">formspring.me</a>", "text": "Read my response to \"Espanha ou Portugal?\": http://t.co/qudb9YPH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:01:04 +0000", "from_user": "peaklevelcom", "from_user_id": 97708051, "from_user_id_str": "97708051", "from_user_name": "Peak Level", "geo": null, "id": 148840287349899260, "id_str": "148840287349899264", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1302407768/peaklevel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1302407768/peaklevel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "El FMI aprueba un tramo de cr\\u00E9dito de 2.900 millones a Portugal http://t.co/l6WsNNV8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:01:02 +0000", "from_user": "vivapachamama", "from_user_id": 138557630, "from_user_id_str": "138557630", "from_user_name": "Pachamama", "geo": null, "id": 148840278827073540, "id_str": "148840278827073536", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1087819262/27358_1547554835_7687_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1087819262/27358_1547554835_7687_n_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "El FMI aprueba un tramo de cr\\u00E9dito de 2.900 millones a Portugal: (Reuters) - El Fondo Monetario Internacional ap... http://t.co/ND5uGLWf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:58 +0000", "from_user": "stefanvanas", "from_user_id": 200131347, "from_user_id_str": "200131347", "from_user_name": "Stefan van As", "geo": null, "id": 148840262980997120, "id_str": "148840262980997121", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1140040784/stefan_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1140040784/stefan_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:55 +0000", "from_user": "CelticTours", "from_user_id": 29451005, "from_user_id_str": "29451005", "from_user_name": "Celtic Tours", "geo": null, "id": 148840251476025340, "id_str": "148840251476025345", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/588986616/celtic_banner1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/588986616/celtic_banner1_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Where do you want to go?: Crystal Palace Gardens, Porto, Portugal http://t.co/RTM45hYe #travelwithus", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:52 +0000", "from_user": "cun45", "from_user_id": 277738344, "from_user_id_str": "277738344", "from_user_name": "Francisco", "geo": null, "id": 148840236301033470, "id_str": "148840236301033472", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1301327904/frank-cunha-armani-jeans_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1301327904/frank-cunha-armani-jeans_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "#BeiraMar ja e visto com outros olhos, pode vir a ser uma das melhores equipas de #Portugal http://t.co/SSXmIKvK\\n#Vancouver #Brasil @cun245", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:44 +0000", "from_user": "CherryCherCher", "from_user_id": 138508856, "from_user_id_str": "138508856", "from_user_name": "Charisse Goedhart", "geo": null, "id": 148840202482360320, "id_str": "148840202482360320", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1428749467/profile_image_1309938335716_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1428749467/profile_image_1309938335716_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "ik snap niet dat het hier in Ned -3267353 graden is en in portugal het zonnetje lekker schijnt.. Pff", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:41 +0000", "from_user": "missjojotje", "from_user_id": 345575717, "from_user_id_str": "345575717", "from_user_name": "jo\\u00EBlle", "geo": null, "id": 148840189417103360, "id_str": "148840189417103361", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1608104091/Foto1156_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608104091/Foto1156_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@xsanlove jaa en lissabon in portugal echt mooi en je kan de goedkoop shoppen", "to_user": "xsanlove", "to_user_id": 412503628, "to_user_id_str": "412503628", "to_user_name": "'Sanne x ", "in_reply_to_status_id": 148839726776975360, "in_reply_to_status_id_str": "148839726776975360"}, +{"created_at": "Mon, 19 Dec 2011 19:00:39 +0000", "from_user": "ritabcosta", "from_user_id": 62907767, "from_user_id_str": "62907767", "from_user_name": "rita costa", "geo": null, "id": 148840183276642300, "id_str": "148840183276642305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696961340/IMG-20111204-00416_-_C_pia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696961340/IMG-20111204-00416_-_C_pia_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@LeighannPinnock would you follow me please ? it would be a great christmas present (: portugal loves Little Mix <3", "to_user": "LeighannPinnock", "to_user_id": 331255508, "to_user_id_str": "331255508", "to_user_name": "LittleMix Leigh-Anne"}, +{"created_at": "Mon, 19 Dec 2011 19:00:38 +0000", "from_user": "Adocento", "from_user_id": 398341979, "from_user_id_str": "398341979", "from_user_name": "+", "geo": null, "id": 148840179241713660, "id_str": "148840179241713665", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1606798689/corridor2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606798689/corridor2_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @ARMAKdeODELOT: Reino Unido sigue alarmando sobre un posible corralito en Espa\\u00F1a y Portugal http://t.co/t97UCgjG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:24 +0000", "from_user": "elchicotripolar", "from_user_id": 286258538, "from_user_id_str": "286258538", "from_user_name": "David Hegarty", "geo": null, "id": 148840118617260030, "id_str": "148840118617260032", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1638980388/DSC_1450_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638980388/DSC_1450_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@BraiHL wow! Yo quiero ir a ver este a\\u00F1o a Stone Roses, Radiohead, Florence, y justice a Portugal, es en pa\\u00EDs vecino, pero muy barato! :D", "to_user": "BraiHL", "to_user_id": 359643877, "to_user_id_str": "359643877", "to_user_name": "Brian", "in_reply_to_status_id": 148839669965131780, "in_reply_to_status_id_str": "148839669965131777"}, +{"created_at": "Mon, 19 Dec 2011 19:00:16 +0000", "from_user": "SocMeDotMe", "from_user_id": 371995419, "from_user_id_str": "371995419", "from_user_name": "Karl Lingenfelder", "geo": null, "id": 148840086446931970, "id_str": "148840086446931969", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1546120426/SocMe_Twitter_Icon_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546120426/SocMe_Twitter_Icon_2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Villa for sale in Lagos | 6+ bedrooms ~ For-Sale-in-Algarve ~ #Algarve\\n#Portugal - http://t.co/YGJJwQPq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:08 +0000", "from_user": "gp_economia", "from_user_id": 23807943, "from_user_id_str": "23807943", "from_user_name": "Gazeta - Economia", "geo": null, "id": 148840051936210940, "id_str": "148840051936210945", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1163335406/icon-gazeta-economia-alta_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1163335406/icon-gazeta-economia-alta_normal.png", "source": "<a href="http://www.gazetadopovo.com.br" rel="nofollow">API Gazeta do Povo</a>", "text": "FMI aprova entrega de 2,9 bi de euros para Portugal http://t.co/6xPXoE37", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:06 +0000", "from_user": "wagner_monteiro", "from_user_id": 35166974, "from_user_id_str": "35166974", "from_user_name": "wagner monteiro", "geo": null, "id": 148840045070127100, "id_str": "148840045070127104", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1619394383/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619394383/image_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NelsonSheep: Rihanna sofre racismo em Portugal: Rihanna ficou doida no Twitter, por causa de um homem que teria feito declara... http://t.co/Srd7nbQm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:02 +0000", "from_user": "MasonAFCGoddard", "from_user_id": 358306573, "from_user_id_str": "358306573", "from_user_name": "Mason Goddard", "geo": null, "id": 148840028053839870, "id_str": "148840028053839872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1648390572/310990_10150562529703332_340496628331_11721345_418509637_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648390572/310990_10150562529703332_340496628331_11721345_418509637_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@PLEKSTER Hold on.. You're going to SPAIN to watch a team that plays in PORTUGAL? You're a fucking retard...", "to_user": "PLEKSTER", "to_user_id": 238186124, "to_user_id_str": "238186124", "to_user_name": "PLEKE", "in_reply_to_status_id": 147744505653768200, "in_reply_to_status_id_str": "147744505653768193"}, +{"created_at": "Mon, 19 Dec 2011 18:59:59 +0000", "from_user": "FZindie", "from_user_id": 207756891, "from_user_id_str": "207756891", "from_user_name": "Michelina Manoogian", "geo": null, "id": 148840016787947520, "id_str": "148840016787947520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1152528617/icon_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1152528617/icon_bigger_normal.jpg", "source": "<a href="http://www.newstreamer.com/" rel="nofollow">Newstreamer</a>", "text": "[video] Portugal the Man cover Gnarls Barkley\\u2019s \\u201CCrazy\\u201D (youaintnopicasso) http://t.co/Wa65Clvq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:46 +0000", "from_user": "fidelmartin", "from_user_id": 11731472, "from_user_id_str": "11731472", "from_user_name": "fidelmartin", "geo": null, "id": 148839961548947460, "id_str": "148839961548947456", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1645683613/fidel43_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645683613/fidel43_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Tripviaje: Portugal. Ruta del Vinho Verde http://t.co/DZ3cZhhe #turismo #viajes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:41 +0000", "from_user": "LesSuricates", "from_user_id": 428983224, "from_user_id_str": "428983224", "from_user_name": "Les Suricates", "geo": null, "id": 148839940015407100, "id_str": "148839940015407104", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1675149127/H_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675149127/H_normal.jpg", "source": "<a href="http://www.wmaker.net" rel="nofollow">WMaker</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Le Fonds mon\\u00E9taire international a annonc\\u00E9 lun... http://t.co/6PnvwzZP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:39 +0000", "from_user": "amanca", "from_user_id": 15388711, "from_user_id_str": "15388711", "from_user_name": "amanca", "geo": null, "id": 148839932591472640, "id_str": "148839932591472641", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/769057023/17032010260_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/769057023/17032010260_normal.jpg", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "Oi Samsung CORBY com portugues de Portugal, obrigada por nao conectar via USB, seu lindo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:34 +0000", "from_user": "Tripviaje", "from_user_id": 294759845, "from_user_id_str": "294759845", "from_user_name": "Tripviaje", "geo": null, "id": 148839910017740800, "id_str": "148839910017740800", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1348503889/pastila_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1348503889/pastila_logo_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Portugal. Ruta del Vinho Verde http://t.co/2arO6qI3 #turismo #viajes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:12 +0000", "from_user": "PipaStyles", "from_user_id": 422639883, "from_user_id_str": "422639883", "from_user_name": "Filipa Duarte", "geo": null, "id": 148839818498027520, "id_str": "148839818498027521", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693072556/IMG0207A_-_C_pia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693072556/IMG0207A_-_C_pia_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@onedirection come to Portugal ! #OneDirectionToPortugal", "to_user": "onedirection", "to_user_id": 209708391, "to_user_id_str": "209708391", "to_user_name": "One Direction"}, +{"created_at": "Mon, 19 Dec 2011 18:59:12 +0000", "from_user": "glrarzu", "from_user_id": 115467055, "from_user_id_str": "115467055", "from_user_name": "Arzu G\\u00FCler", "geo": null, "id": 148839817499787260, "id_str": "148839817499787266", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1586135372/arzum_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586135372/arzum_normal.jpg", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:04 +0000", "from_user": "portugalforum", "from_user_id": 41989700, "from_user_id_str": "41989700", "from_user_name": "portugalforum", "geo": null, "id": 148839784234762240, "id_str": "148839784234762240", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/487842239/pfo_icon_gr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/487842239/pfo_icon_gr_normal.jpg", "source": "<a href="http://www.portugalforum.org" rel="nofollow">portugalforum.org</a>", "text": "Algarve-News: Faro - Lissabon: \\u00C4nderung der Streckenf\\u00FChrung beim "Intercidade": ie portugiesische http://t.co/roWsz2MA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:36 +0000", "from_user": "noticialol", "from_user_id": 393333635, "from_user_id_str": "393333635", "from_user_name": "Noticiado", "geo": null, "id": 148839667213668350, "id_str": "148839667213668352", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1594357865/ok_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1594357865/ok_normal.gif", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "FMI libera mais 2,9 bilh\\u00F5es para Portugal http://t.co/zU2eTGPx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:36 +0000", "from_user": "dailyVictoriaJ", "from_user_id": 284466615, "from_user_id_str": "284466615", "from_user_name": "catarina \\u2661", "geo": null, "id": 148839664986492930, "id_str": "148839664986492931", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700544939/tumblr_l8myr1SZvz1qdesr2o1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700544939/tumblr_l8myr1SZvz1qdesr2o1_500_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@thevjusticearmy It's so cold in Portugal .. I mean, is cold in the morning & at the night, like now .. during the day is hot :) x", "to_user": "thevjusticearmy", "to_user_id": 256627220, "to_user_id_str": "256627220", "to_user_name": "nancy grimmie ~", "in_reply_to_status_id": 148838356212662270, "in_reply_to_status_id_str": "148838356212662272"}, +{"created_at": "Mon, 19 Dec 2011 18:58:33 +0000", "from_user": "ballsdeepin", "from_user_id": 255621513, "from_user_id_str": "255621513", "from_user_name": "Jeff", "geo": null, "id": 148839653531844600, "id_str": "148839653531844609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:27 +0000", "from_user": "esanguino", "from_user_id": 40812220, "from_user_id_str": "40812220", "from_user_name": "Ender Sanguino", "geo": null, "id": 148839627913043970, "id_str": "148839627913043968", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1632303300/9235cebe043711e1a87612313804ec91_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632303300/9235cebe043711e1a87612313804ec91_7_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "El FMI aprueba un tramo de cr\\u00E9dito de 2.900 millones a Portugal http://t.co/C9OHIyBI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:23 +0000", "from_user": "indignindigente", "from_user_id": 318577930, "from_user_id_str": "318577930", "from_user_name": "Bartomeu", "geo": null, "id": 148839612805156860, "id_str": "148839612805156864", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698747895/Imagen002_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698747895/Imagen002_1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@martina2411 Reino Unido sigue alarmando sobre un posible corralito en Espa\\u00F1a y Portugal http://t.co/dzPpDTtn", "to_user": "martina2411", "to_user_id": 161375864, "to_user_id_str": "161375864", "to_user_name": "Rocio_Ju\\u00E1rez", "in_reply_to_status_id": 148839319925293060, "in_reply_to_status_id_str": "148839319925293056"}, +{"created_at": "Mon, 19 Dec 2011 18:58:22 +0000", "from_user": "DonikaX", "from_user_id": 213323473, "from_user_id_str": "213323473", "from_user_name": "Donika", "geo": null, "id": 148839608833150980, "id_str": "148839608833150976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1650590128/d_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650590128/d_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@somegreendayfan WHEN ARE YOU GOING PORTUGAL?", "to_user": "somegreendayfan", "to_user_id": 226243830, "to_user_id_str": "226243830", "to_user_name": "Iolanda"}, +{"created_at": "Mon, 19 Dec 2011 18:58:21 +0000", "from_user": "larissa_lal7", "from_user_id": 178349463, "from_user_id_str": "178349463", "from_user_name": "Larissa", "geo": null, "id": 148839605054091260, "id_str": "148839605054091264", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668008288/PQAAABO2tuLt7TmoDiZx9VJG0ZXqPV4FQu9HDDiEN3UEUUP17D7NUAohU365z2T1woQLCYBdfHMGSvEjtcegAMhI3kkAm1T1UBTzIr-lcl5Y6tvSvVjBZ9sP1lFq_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668008288/PQAAABO2tuLt7TmoDiZx9VJG0ZXqPV4FQu9HDDiEN3UEUUP17D7NUAohU365z2T1woQLCYBdfHMGSvEjtcegAMhI3kkAm1T1UBTzIr-lcl5Y6tvSvVjBZ9sP1lFq_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @17Nani_PT: Um dos v\\u00EDdeos mais bonitos que j\\u00E1 vi, FOR\\u00C7A PORTUGAL: @luisnani @cristiano @RQ7Quaresma @FabioCoentrao @RaulMeireles4 http://t.co/ki6SNQOD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:13 +0000", "from_user": "GlobalCollapse", "from_user_id": 368395731, "from_user_id_str": "368395731", "from_user_name": "Financial Apocalypse", "geo": null, "id": 148839571319296000, "id_str": "148839571319296001", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1529908610/marketcrash_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1529908610/marketcrash_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @djfxtrader: Greek FinMin: #Greece, #Ireland, #Portugal Excluded From IMF Boost [Dow Jones] #imf #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:10 +0000", "from_user": "Prop_Joe", "from_user_id": 27468471, "from_user_id_str": "27468471", "from_user_name": "PropositionJoe", "geo": null, "id": 148839555976536060, "id_str": "148839555976536064", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/699445557/lemonde_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/699445557/lemonde_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s la Gr\\u00E8ce... http://t.co/MQNHsojz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:04 +0000", "from_user": "AzoresTravel", "from_user_id": 396745800, "from_user_id_str": "396745800", "from_user_name": "M\\u00E1r", "geo": null, "id": 148839534426210300, "id_str": "148839534426210304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1622348510/IMG_5459_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622348510/IMG_5459_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @de_castro: visitportugal: Birdlife in the Azores\\n#Portugal #Azores #birdwatching #nature\\nhttp://t.co/m5h360HV: visitportuga... http://t.co/0cglb3II", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:49 +0000", "from_user": "danielacatiane", "from_user_id": 326248479, "from_user_id_str": "326248479", "from_user_name": "daniela catiane", "geo": null, "id": 148839470718910460, "id_str": "148839470718910464", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1478456546/cora__es_amigos_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1478456546/cora__es_amigos_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@alinegomespk @CarolBatista14 @Vondyduleucker @SandraM_RBD @jujuCcelim kkkkkkkkk atravessa o oceano pra ver sandrinha em portugal kkkkkkkk", "to_user": "alinegomespk", "to_user_id": 53109875, "to_user_id_str": "53109875", "to_user_name": "Aline", "in_reply_to_status_id": 148839002089340930, "in_reply_to_status_id_str": "148839002089340928"}, +{"created_at": "Mon, 19 Dec 2011 18:57:41 +0000", "from_user": "Tylerlerler", "from_user_id": 88258859, "from_user_id_str": "88258859", "from_user_name": "Tyler Liu", "geo": null, "id": 148839434127806460, "id_str": "148839434127806464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664714376/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664714376/image_normal.jpg", "source": "<a href="http://www.tweekly.fm/" rel="nofollow">Tweekly.fm</a>", "text": "My Top 3 #lastfm Artists: Portugal. The Man (20), The Naked And Famous (18) & Freelance Whales (14) http://t.co/Q5a8993f", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:33 +0000", "from_user": "InfoPriv", "from_user_id": 57702464, "from_user_id_str": "57702464", "from_user_name": "InfoPrivilegiada \\u221A", "geo": null, "id": 148839400531431420, "id_str": "148839400531431425", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/354288460/informa__o_privilegiada_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/354288460/informa__o_privilegiada_logo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Ultimas - Venda de autom\\u00F3veis em Portugal vai valer menos mil milh\\u00F5es este ano: A compra de carros em Portugal v... http://t.co/I1rab4qY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:32 +0000", "from_user": "negociosportuga", "from_user_id": 91605181, "from_user_id_str": "91605181", "from_user_name": "Neg\\u00F3cios Portugal", "geo": null, "id": 148839400204271600, "id_str": "148839400204271616", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/537215653/negocios_portugal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/537215653/negocios_portugal_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Venda de autom\\u00F3veis em Portugal vai valer menos mil milh\\u00F5es este ano: A compra de carros em Portugal vai cair ma... http://t.co/bnAgUILA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:20 +0000", "from_user": "trinitascellars", "from_user_id": 88998123, "from_user_id_str": "88998123", "from_user_name": "Trinitas Cellars", "geo": null, "id": 148839348928909300, "id_str": "148839348928909312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/519941448/full_logo_550340050_Trinitas_Logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/519941448/full_logo_550340050_Trinitas_Logo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "What Rising Temperatures May Mean for World's Wine Industry: In the vineyards of Spain, Portugal, southern Franc... http://t.co/wj29Nj4K", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:17 +0000", "from_user": "pelu_fans", "from_user_id": 115177007, "from_user_id_str": "115177007", "from_user_name": "Pedro Lucas Fans.", "geo": null, "id": 148839336668962800, "id_str": "148839336668962816", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700478706/PQAAAFiY08YIwW_kmAF7mhLlegVGVwlPLevM9nCH2nX86IdeYkSxTiZIipIaIwuEysDXtXgfnpm3jDh_g-RAXp_9kecAm1T1UHfKAUqV6C97gbPxZFtT7tZn0BzG_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700478706/PQAAAFiY08YIwW_kmAF7mhLlegVGVwlPLevM9nCH2nX86IdeYkSxTiZIipIaIwuEysDXtXgfnpm3jDh_g-RAXp_9kecAm1T1UHfKAUqV6C97gbPxZFtT7tZn0BzG_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Pe\\u00E7a RESTART na MTV de Portugal aqui: http://t.co/fWkPWotH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:16 +0000", "from_user": "kdupeixoto", "from_user_id": 38543753, "from_user_id_str": "38543753", "from_user_name": "Kdu Peixoto", "geo": null, "id": 148839332688564220, "id_str": "148839332688564225", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1650503637/Avatar_Kdu_Peixoto_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650503637/Avatar_Kdu_Peixoto_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Cadu_andrade_ T\\u00F4 em Portugal, meu xar\\u00E1! Como est\\u00E3o as coisas por a\\u00ED? :)", "to_user": "Cadu_andrade_", "to_user_id": 50442738, "to_user_id_str": "50442738", "to_user_name": "Carlos Eduardo C. A.", "in_reply_to_status_id": 148742869765734400, "in_reply_to_status_id_str": "148742869765734400"}, +{"created_at": "Mon, 19 Dec 2011 18:57:01 +0000", "from_user": "invertia_ahorro", "from_user_id": 263197769, "from_user_id_str": "263197769", "from_user_name": "Invertia Ahorro", "geo": null, "id": 148839267882373120, "id_str": "148839267882373120", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1266869035/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266869035/logo_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI autoriza nuevo tramo de ayuda a Portugal de 2.900 millones http://t.co/7tGA8R7D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:57 +0000", "from_user": "rodrideportes", "from_user_id": 229623363, "from_user_id_str": "229623363", "from_user_name": "Rodrigo Guijarro M", "geo": null, "id": 148839249549066240, "id_str": "148839249549066240", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1604803738/IMG00392-20111024-1405_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1604803738/IMG00392-20111024-1405_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "extender el contrato del #argentino Pablo Aimar es la prioridad para el #Benfica de Portugal ya que el mismo termina en junio del 2012", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:56 +0000", "from_user": "danielmerlot", "from_user_id": 14366274, "from_user_id_str": "14366274", "from_user_name": "Daniel Merlot", "geo": null, "id": 148839246554337280, "id_str": "148839246554337281", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1422332070/mori_tower_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1422332070/mori_tower_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/zbGvKw19", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:56 +0000", "from_user": "shubhankar", "from_user_id": 15580522, "from_user_id_str": "15580522", "from_user_name": "Shubhankar", "geo": null, "id": 148839246411730940, "id_str": "148839246411730945", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1671533257/Me-Me-Me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671533257/Me-Me-Me_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "\"It was decided [by Portugal] to use Kuwait as a link to bring the explosives into Goa\" http://t.co/IwXOPSyK #India #History", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:56 +0000", "from_user": "17Nani_PT", "from_user_id": 440097844, "from_user_id_str": "440097844", "from_user_name": "Nani Portugal F\\u00E3s \\u2665", "geo": null, "id": 148839246084587520, "id_str": "148839246084587520", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700295506/Nani-2011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700295506/Nani-2011_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@KAKA \\u00C9s lindo Kak\\u00E1, Hala madrid \\u2665 Portugal contigo \\u2665", "to_user": "KAKA", "to_user_id": 60865434, "to_user_id_str": "60865434", "to_user_name": "Kaka"}, +{"created_at": "Mon, 19 Dec 2011 18:56:56 +0000", "from_user": "DanielTm94", "from_user_id": 153570691, "from_user_id_str": "153570691", "from_user_name": "Juan Daniel Torres", "geo": null, "id": 148839245153443840, "id_str": "148839245153443840", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692249132/Twt_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692249132/Twt_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Nicol\\u00E1s Gait\\u00E1n, exjugador de Boca, fue transferido del Benfica de Portugal, al Manchester United por una cifra de 30 millones de Euros.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:55 +0000", "from_user": "Juanito_Carreon", "from_user_id": 117877094, "from_user_id_str": "117877094", "from_user_name": "JUANITO CARREON", "geo": null, "id": 148839242422943740, "id_str": "148839242422943745", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1586497738/9130_1268760038796_1223695565_808719_537975_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586497738/9130_1268760038796_1223695565_808719_537975_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Rihanna, victima de racismo en hotel de #Portugal http://t.co/iQeG2HYo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:51 +0000", "from_user": "RitaAlmeida1D", "from_user_id": 408016535, "from_user_id_str": "408016535", "from_user_name": "Rita Almeida", "geo": null, "id": 148839226044203000, "id_str": "148839226044203009", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698869219/zayn_malik_1D_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698869219/zayn_malik_1D_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Lilswagirl course (: from portugal and you, hun?:D x", "to_user": "Lilswagirl", "to_user_id": 391315405, "to_user_id_str": "391315405", "to_user_name": "Natalia Almeida", "in_reply_to_status_id": 148838732869537800, "in_reply_to_status_id_str": "148838732869537793"}, +{"created_at": "Mon, 19 Dec 2011 18:56:47 +0000", "from_user": "alinelourenco88", "from_user_id": 296579875, "from_user_id_str": "296579875", "from_user_name": "Aline Lourenco", "geo": +{"coordinates": [-7.1731,-34.8616], "type": "Point"}, "id": 148839208121937920, "id_str": "148839208121937920", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1348070809/OgAAAJTL742jD77tWcMgRJNk4WiVILpoj49SE8fzYNqgjwydFFWsPZ86LF0ld63c8A9o9WL7w1cCjD5C5Tf2YEBaPXgAm1T1UOPmuFuzwYebSCLZwIClwAQFztlf_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1348070809/OgAAAJTL742jD77tWcMgRJNk4WiVILpoj49SE8fzYNqgjwydFFWsPZ86LF0ld63c8A9o9WL7w1cCjD5C5Tf2YEBaPXgAm1T1UOPmuFuzwYebSCLZwIClwAQFztlf_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"FMI libera mais 2,9 bilh\\u00F5es para Portugal http://t.co/99Uz4kvb\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:45 +0000", "from_user": "BrutherBuu", "from_user_id": 333039680, "from_user_id_str": "333039680", "from_user_name": "Mario Vaz", "geo": null, "id": 148839203042631680, "id_str": "148839203042631680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1437052847/Untitled-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1437052847/Untitled-1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ReanneTex wish my dad did that. All i get is portugal talk!", "to_user": "ReanneTex", "to_user_id": 323393462, "to_user_id_str": "323393462", "to_user_name": "reannetex", "in_reply_to_status_id": 148838999098794000, "in_reply_to_status_id_str": "148838999098793984"}, +{"created_at": "Mon, 19 Dec 2011 18:56:40 +0000", "from_user": "tigredeltajin", "from_user_id": 139797812, "from_user_id_str": "139797812", "from_user_name": "junnisin garcia rami", "geo": null, "id": 148839182066925570, "id_str": "148839182066925568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1214115876/Dibujo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1214115876/Dibujo_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @India_Business: #india #business : IMF releases 2.9 bn euros to Portugal: IMF said it would release 2.9 billion euros ($3.8 bill... http://t.co/YXJzs8Ge", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:39 +0000", "from_user": "NoticiasTemblor", "from_user_id": 273771929, "from_user_id_str": "273771929", "from_user_name": "cuando pase temblor", "geo": null, "id": 148839177113440260, "id_str": "148839177113440256", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1291407280/terremoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1291407280/terremoto_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "El FMI aprueba un tramo de cr\\u00E9dito de 2.900 millones a Portugal: (Reuters) - El Fondo Monetario Internacional ap... http://t.co/i1ZIU2GB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:19 +0000", "from_user": "RihannaNavyBG1", "from_user_id": 367861866, "from_user_id_str": "367861866", "from_user_name": "RihNavyBG", "geo": null, "id": 148839093923610620, "id_str": "148839093923610624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1657868447/ttt10_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657868447/ttt10_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Rihanna - Run This Town/Life Your Life Live Lisbon, Portugal http://t.co/8uc2GGas", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:07 +0000", "from_user": "netradiocatolic", "from_user_id": 52023334, "from_user_id_str": "52023334", "from_user_name": "Net R\\u00E1dio Cat\\u00F3lica", "geo": null, "id": 148839043365486600, "id_str": "148839043365486593", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/288377437/nrc_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/288377437/nrc_logo_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Pe. Tony Neves fala-nos esta semana sobre... \"Coopera\\u00E7\\u00E3o entre Igrejas do Norte e do Sul de Portugal\" http://t.co/qCFWdUI0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:06 +0000", "from_user": "waldeterossi", "from_user_id": 215710466, "from_user_id_str": "215710466", "from_user_name": "waldete sales rossi", "geo": null, "id": 148839039456382980, "id_str": "148839039456382977", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1181508559/120310092916_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1181508559/120310092916_normal.jpg", "source": "<a href="http://g1.globo.com/" rel="nofollow">g1.com.br</a>", "text": "RT @g1: FMI libera mais 2,9 bilh\\u00F5es para Portugal http://t.co/WoEfgKeR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:04 +0000", "from_user": "heather8moreton", "from_user_id": 132293648, "from_user_id_str": "132293648", "from_user_name": "heather", "geo": null, "id": 148839027963985920, "id_str": "148839027963985921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/946037357/heather_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/946037357/heather_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:01 +0000", "from_user": "SantiAlbasi", "from_user_id": 178079057, "from_user_id_str": "178079057", "from_user_name": "Santi Albasi", "geo": null, "id": 148839018073833470, "id_str": "148839018073833472", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1102276890/30498_1441325033715_1250736111_31227027_5756059_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1102276890/30498_1441325033715_1250736111_31227027_5756059_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @NahuMartinez: @SantiAlbasi Que hambre que ten\\u00E9s. Si dice \"que veneran a este Dios en Portugal\", y Licha parece que se va al Porto.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:58 +0000", "from_user": "alinegomespk", "from_user_id": 53109875, "from_user_id_str": "53109875", "from_user_name": "Aline", "geo": null, "id": 148839002089340930, "id_str": "148839002089340928", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670250220/PQAAANme5D67ydegtB0EwTcZMb7r4c0YAgsI4How4XomqFtAlhBd8PcpQ5Ix2e40QsAJxgDuBmZWSq556LYg5IH6RG4Am1T1UEWIjN_qxSsIwXj24jHMJyQUv2PF_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670250220/PQAAANme5D67ydegtB0EwTcZMb7r4c0YAgsI4How4XomqFtAlhBd8PcpQ5Ix2e40QsAJxgDuBmZWSq556LYg5IH6RG4Am1T1UEWIjN_qxSsIwXj24jHMJyQUv2PF_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@CarolBatista14 @Vondyduleucker @danielacatiane @SandraM_RBD @jujuCcelim vamos remando de barquinho a Portugal hahaha", "to_user": "CarolBatista14", "to_user_id": 311798015, "to_user_id_str": "311798015", "to_user_name": "\\u262ECAROL_M\\u00AA YSABELLE\\u262E ", "in_reply_to_status_id": 148838319286005760, "in_reply_to_status_id_str": "148838319286005760"}, +{"created_at": "Mon, 19 Dec 2011 18:55:51 +0000", "from_user": "NuriFont", "from_user_id": 73128838, "from_user_id_str": "73128838", "from_user_name": "Nuri Font", "geo": null, "id": 148838975501643780, "id_str": "148838975501643776", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692893281/Cnv0077_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692893281/Cnv0077_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @ARMAKdeODELOT: Reino Unido sigue alarmando sobre un posible corralito en Espa\\u00F1a y Portugal http://t.co/t97UCgjG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:51 +0000", "from_user": "SaamScoott", "from_user_id": 378779649, "from_user_id_str": "378779649", "from_user_name": "Samanthaaa ", "geo": null, "id": 148838974444679170, "id_str": "148838974444679168", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700938603/IMG-20111217-00006_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700938603/IMG-20111217-00006_1_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@AzizMandela Jvais pas faire comme au portugal, jaime bien faire tous ce qui est entr\\u00E9e tout sa et en dessert je sais en faire quelque uns", "to_user": "AzizMandela", "to_user_id": 387819972, "to_user_id_str": "387819972", "to_user_name": "Aziz Mandela", "in_reply_to_status_id": 148837971494314000, "in_reply_to_status_id_str": "148837971494313984"}, +{"created_at": "Mon, 19 Dec 2011 18:55:47 +0000", "from_user": "HoroscopoIsaacR", "from_user_id": 383891768, "from_user_id_str": "383891768", "from_user_name": "Beatriz s\\u00F3 do Isaac", "geo": null, "id": 148838956589514750, "id_str": "148838956589514752", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702622409/isaac._normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702622409/isaac._normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Capric\\u00F3rnio Em que pa\\u00EDs voc\\u00EA e o Isaac passariam o Natal:Portugal ^^", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:45 +0000", "from_user": "b33god", "from_user_id": 6785242, "from_user_id_str": "6785242", "from_user_name": "Damien Austin-Walker", "geo": null, "id": 148838949949935600, "id_str": "148838949949935616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669342743/daw-nov-2011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669342743/daw-nov-2011_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:40 +0000", "from_user": "paulocunhavox", "from_user_id": 233292368, "from_user_id_str": "233292368", "from_user_name": "paulo cunha", "geo": null, "id": 148838928303128580, "id_str": "148838928303128577", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1621910172/megafone2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621910172/megafone2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @vitriolica: VERGONHA para Portugal mas em especial para a CP! http://t.co/VTME2e0E", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:40 +0000", "from_user": "Braden28", "from_user_id": 189015265, "from_user_id_str": "189015265", "from_user_name": "Braden Elke", "geo": null, "id": 148838928135368700, "id_str": "148838928135368704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1561817142/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1561817142/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "\\u201C@richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/pSD0F13j\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:31 +0000", "from_user": "EconomiaEs", "from_user_id": 223012474, "from_user_id_str": "223012474", "from_user_name": "Econom\\u00EDa en Espa\\u00F1ol", "geo": null, "id": 148838890361466880, "id_str": "148838890361466880", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1329492066/27-04-2011_09-31-49_p-m-_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1329492066/27-04-2011_09-31-49_p-m-_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "FMI aprueba tramo de rescate a Portugal http://t.co/1PrEzXzm [CNNExpansi\\u00F3n] #Economia", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:26 +0000", "from_user": "MarcioRibeiroJF", "from_user_id": 64312479, "from_user_id_str": "64312479", "from_user_name": "M\\u00E1rcio Ribeiro", "geo": null, "id": 148838871516463100, "id_str": "148838871516463105", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1666176409/FESTA_DA_R_DIO_CIDADE3_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666176409/FESTA_DA_R_DIO_CIDADE3_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Em portugal: Rihanna deixa o palco para vomitar, durante performance na turn\\u00EA \"Loud\" http://t.co/oo5rSe5Q", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:20 +0000", "from_user": "TechTonico", "from_user_id": 43409238, "from_user_id_str": "43409238", "from_user_name": "Techno", "geo": null, "id": 148838842735132670, "id_str": "148838842735132672", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1395333534/avatar24913_1_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1395333534/avatar24913_1_normal.gif", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "FMI aprueba tramo de rescate a Portugal http://t.co/F2cPdEH4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:20 +0000", "from_user": "InterActual", "from_user_id": 129917609, "from_user_id_str": "129917609", "from_user_name": "InterActual", "geo": null, "id": 148838842651262980, "id_str": "148838842651262978", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1392248905/Logo_Grande-1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1392248905/Logo_Grande-1_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "FMI aprueba tramo de rescate a Portugal http://t.co/z4iD5l3s", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:19 +0000", "from_user": "ProcreaEstudio", "from_user_id": 82506605, "from_user_id_str": "82506605", "from_user_name": "Procrea Estudio", "geo": null, "id": 148838842454114300, "id_str": "148838842454114304", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1348516234/960ef63d-6000-481e-bf89-f04e5cbcf40b_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1348516234/960ef63d-6000-481e-bf89-f04e5cbcf40b_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "FMI aprueba tramo de rescate a Portugal http://t.co/5TBBCnEp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:17 +0000", "from_user": "andreswire", "from_user_id": 328151920, "from_user_id_str": "328151920", "from_user_name": "Andr\\u00E9s Wire ", "geo": null, "id": 148838830982701060, "id_str": "148838830982701056", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1589829181/Pulitzer_foto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1589829181/Pulitzer_foto_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "FMI aprueba tramo de rescate a Portugal http://t.co/xlPVsGG6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:13 +0000", "from_user": "CiberDosis", "from_user_id": 256384767, "from_user_id_str": "256384767", "from_user_name": "Diario Digital", "geo": null, "id": 148838814356475900, "id_str": "148838814356475904", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1564094144/ciber-dosis_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1564094144/ciber-dosis_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "FMI aprueba tramo de rescate a Portugal http://t.co/S3QmwuOk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:07 +0000", "from_user": "GurvinderS17", "from_user_id": 48305600, "from_user_id_str": "48305600", "from_user_name": "Gurvinder ", "geo": null, "id": 148838791589806080, "id_str": "148838791589806080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1645654601/054_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645654601/054_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Jeffren17_SCP hows portugal", "to_user": "Jeffren17_SCP", "to_user_id": 213411429, "to_user_id_str": "213411429", "to_user_name": "Jeffren Su\\u00E1rez"}, +{"created_at": "Mon, 19 Dec 2011 18:55:04 +0000", "from_user": "groupiepride", "from_user_id": 23456154, "from_user_id_str": "23456154", "from_user_name": "Penny Lane", "geo": null, "id": 148838775634673660, "id_str": "148838775634673664", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1657538435/256163_169704943094221_100001641481748_473793_3511651_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657538435/256163_169704943094221_100001641481748_473793_3511651_o_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "FMI libera mais 2,9 bilh\\u00F5es para Portugal. quem mais acha que isso vai dar merda?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:03 +0000", "from_user": "armvp", "from_user_id": 83553831, "from_user_id_str": "83553831", "from_user_name": "Arnaldo Moura", "geo": null, "id": 148838775332675600, "id_str": "148838775332675584", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/563266095/Img0048_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/563266095/Img0048_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "FMI autorizou mais 2900 milh\\u00F5es de euros a Portugal: O Fundo Monet\\u00E1rio Internacional (FMI\\u2026 http://t.co/UEdiOo7D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:55 +0000", "from_user": "latestmusicdesk", "from_user_id": 337315804, "from_user_id_str": "337315804", "from_user_name": "Latest Music Desk", "geo": null, "id": 148838741677572100, "id_str": "148838741677572096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1447424413/latestmusicdesk_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1447424413/latestmusicdesk_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Pop Crush | Rihanna Encounters Racism in Portugal, Vents Via Twitter http://t.co/UgfSPEaN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:53 +0000", "from_user": "NoticiasenRSS", "from_user_id": 419098894, "from_user_id_str": "419098894", "from_user_name": "Noticias en RSS", "geo": null, "id": 148838730462015500, "id_str": "148838730462015488", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1652823092/rss_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652823092/rss_normal.png", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "El FMI aprueba un tramo de cr\\u00E9dito de 2.900 millones a Portugal http://t.co/VsKigbYO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:48 +0000", "from_user": "PeterPassardi", "from_user_id": 191793931, "from_user_id_str": "191793931", "from_user_name": "Peter Answers", "geo": null, "id": 148838708328669200, "id_str": "148838708328669184", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664345518/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664345518/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@00Matz Ederzito 23 goles en 121 partidos. Delantero 24 a\\u00F1os. Juega en Portugal. Enciclopedia FM", "to_user": "00Matz", "to_user_id": 141790288, "to_user_id_str": "141790288", "to_user_name": "Max Power"}, +{"created_at": "Mon, 19 Dec 2011 18:54:38 +0000", "from_user": "francovicetto", "from_user_id": 22359566, "from_user_id_str": "22359566", "from_user_name": "franco vicetto", "geo": +{"coordinates": [42.8888,-8.5273], "type": "Point"}, "id": 148838669451661300, "id_str": "148838669451661312", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/869345235/fv_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/869345235/fv_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@xabitubbi Se um ano che parece muito esperar, podes olhar para Gr\\u00E9cia, Irlanda ou Portugal.", "to_user": "xabitubbi", "to_user_id": 2499551, "to_user_id_str": "2499551", "to_user_name": "Xabier Cid", "in_reply_to_status_id": 148837457343954940, "in_reply_to_status_id_str": "148837457343954944"}, +{"created_at": "Mon, 19 Dec 2011 18:54:38 +0000", "from_user": "julio7788", "from_user_id": 325579719, "from_user_id_str": "325579719", "from_user_name": "J\\u00FAlio C\\u00E9sar", "geo": null, "id": 148838669367779330, "id_str": "148838669367779329", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1664508248/bullet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664508248/bullet_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera mais 2,9 bilh\\u00F5es para Portugal: Recursos s\\u00E3o terceira etapa de plano aprovado em maio.\\nFMI fez segund... http://t.co/2TAlEyCY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:38 +0000", "from_user": "leaomaq", "from_user_id": 356641562, "from_user_id_str": "356641562", "from_user_name": "Le\\u00E3o M\\u00E1quinas", "geo": null, "id": 148838666805051400, "id_str": "148838666805051392", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1618356247/scrapeenet_201111012355208qPeVV_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618356247/scrapeenet_201111012355208qPeVV_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera mais 2,9 bilh\\u00F5es para Portugal: Recursos s\\u00E3o terceira etapa de plano aprovado em maio.\\nFMI fez segund... http://t.co/diaiv38I", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:38 +0000", "from_user": "mrochacontabil", "from_user_id": 342276569, "from_user_id_str": "342276569", "from_user_name": "MRocha Contabilidade", "geo": null, "id": 148838666746335230, "id_str": "148838666746335232", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1563774144/logo_mrocha_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1563774144/logo_mrocha_twitter_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera mais 2,9 bilh\\u00F5es para Portugal: Recursos s\\u00E3o terceira etapa de plano aprovado em maio.\\nFMI fez segund... http://t.co/a5j3f9Eq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:37 +0000", "from_user": "pn_business", "from_user_id": 385714288, "from_user_id_str": "385714288", "from_user_name": "Paulo News Bezerra", "geo": null, "id": 148838666033311740, "id_str": "148838666033311744", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1574744792/6091570_3a2a1afb51_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1574744792/6091570_3a2a1afb51_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera mais 2,9 bilh\\u00F5es para Portugal: Recursos s\\u00E3o terceira etapa de plano aprovado em maio.\\nFMI fez segund... http://t.co/mDU41hbS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:35 +0000", "from_user": "Vini_Santos_RJ", "from_user_id": 357449479, "from_user_id_str": "357449479", "from_user_name": "Vinicius Santos", "geo": null, "id": 148838656478679040, "id_str": "148838656478679040", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1501839192/festa_junina_ostras_114_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1501839192/festa_junina_ostras_114_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera mais 2,9 bilh\\u00F5es para Portugal: Recursos s\\u00E3o terceira etapa de plano aprovado em maio.\\nFMI fez segund... http://t.co/3RvNPSrT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:35 +0000", "from_user": "marceloraposo11", "from_user_id": 134651332, "from_user_id_str": "134651332", "from_user_name": "Marcelo Rap\\u00F4so", "geo": null, "id": 148838655199428600, "id_str": "148838655199428609", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317173169/mr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317173169/mr_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera mais 2,9 bilh\\u00F5es para Portugal: Recursos s\\u00E3o terceira etapa de plano aprovado em maio.\\nFMI fez segund... http://t.co/9cvRQ9kS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:34 +0000", "from_user": "baavin", "from_user_id": 145668086, "from_user_id_str": "145668086", "from_user_name": "bhav", "geo": null, "id": 148838651495854080, "id_str": "148838651495854080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1589323857/sa_pinto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1589323857/sa_pinto_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Bigdsoccer: Ruben Luna will be heading to Portugal to practice with Sporting Lisbon in January. Very cool opportunity for the young Dallas forward.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:33 +0000", "from_user": "atitudeproativa", "from_user_id": 265042426, "from_user_id_str": "265042426", "from_user_name": "Marcelo Silva", "geo": null, "id": 148838649155424260, "id_str": "148838649155424257", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera mais 2,9 bilh\\u00F5es para Portugal: Recursos s\\u00E3o terceira etapa de plano aprovado em maio.\\nFMI fez segund... http://t.co/LEzEPVxK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:33 +0000", "from_user": "SGDArevelado", "from_user_id": 281001664, "from_user_id_str": "281001664", "from_user_name": "Ganhe $$$ na net!", "geo": null, "id": 148838648358514700, "id_str": "148838648358514690", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1309147255/Mafalda_pensando_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1309147255/Mafalda_pensando_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera mais 2,9 bilh\\u00F5es para Portugal: Recursos s\\u00E3o terceira etapa de plano aprovado em maio.\\nFMI fez segund... http://t.co/XW4nmUix", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:33 +0000", "from_user": "nossagrana", "from_user_id": 252083770, "from_user_id_str": "252083770", "from_user_name": "Nossa Grana", "geo": null, "id": 148838647871967230, "id_str": "148838647871967233", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1244091547/banner-400x400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1244091547/banner-400x400_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "INFO: Recursos s\\u00E3o terceira etapa de plano aprovado em maio.\\nFMI fez segunda avalia\\u00E7\\u00E3o formal dos programas de a... http://t.co/rQeCV0yP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:32 +0000", "from_user": "cimarsouza", "from_user_id": 244703827, "from_user_id_str": "244703827", "from_user_name": "Cimar Souza", "geo": null, "id": 148838644663336960, "id_str": "148838644663336960", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1241503620/PIC_0011_-_C_pia__640x480__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1241503620/PIC_0011_-_C_pia__640x480__normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera mais 2,9 bilh\\u00F5es para Portugal: Recursos s\\u00E3o terceira etapa de plano aprovado em maio.\\nFMI fez segund... http://t.co/H7y9t9Bc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:32 +0000", "from_user": "sucessoerenda", "from_user_id": 249381948, "from_user_id_str": "249381948", "from_user_name": "Tiago Lisboa", "geo": null, "id": 148838642796859400, "id_str": "148838642796859392", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1422606244/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1422606244/logo_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera mais 2,9 bilh\\u00F5es para Portugal: Recursos s\\u00E3o terceira etapa de plano aprovado em maio.\\nFMI fez segund... http://t.co/lIvCvkmZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:30 +0000", "from_user": "CNN_Mexico", "from_user_id": 292097409, "from_user_id_str": "292097409", "from_user_name": "CNN Mexico", "geo": null, "id": 148838635523948540, "id_str": "148838635523948544", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1646602714/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646602714/image_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprueba tramo de rescate a Portugal: El Fondo desembolsar\\u00E1 2,900 mde para el pa\\u00EDs como parte de la ayuda fin... http://t.co/ACcpsGmM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:30 +0000", "from_user": "vaorr", "from_user_id": 49140837, "from_user_id_str": "49140837", "from_user_name": "Alfonzo Rincon\\u00AE \\u2714", "geo": null, "id": 148838634999648260, "id_str": "148838634999648256", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699084831/twitter_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699084831/twitter_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprueba tramo de rescate a Portugal: El Fondo desembolsar\\u00E1 2,900 mde para el pa\\u00EDs como parte de la ayuda fin... http://t.co/I2ntknx8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:30 +0000", "from_user": "kismayasBlog", "from_user_id": 398907544, "from_user_id_str": "398907544", "from_user_name": "Kismayas", "geo": null, "id": 148838633233842180, "id_str": "148838633233842176", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1638711786/Screen_shot_2011-11-09_at_15.37.32_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638711786/Screen_shot_2011-11-09_at_15.37.32_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprueba tramo de rescate a Portugal: El Fondo desembolsar\\u00E1 2,900 mde para el pa\\u00EDs como parte de la ayuda fin... http://t.co/VRWmF9jl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:30 +0000", "from_user": "soytodomexicano", "from_user_id": 387217790, "from_user_id_str": "387217790", "from_user_name": "soytodomexicano", "geo": null, "id": 148838632818606080, "id_str": "148838632818606080", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1581808892/yo_con_sombrero_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1581808892/yo_con_sombrero_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprueba tramo de rescate a Portugal: El Fondo desembolsar\\u00E1 2,900 mde para el pa\\u00EDs como parte de la ayuda fin... http://t.co/HXFMYgdc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:29 +0000", "from_user": "mariorivasp", "from_user_id": 106705566, "from_user_id_str": "106705566", "from_user_name": "Mario J. Rivas P.", "geo": null, "id": 148838631640023040, "id_str": "148838631640023040", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1429218678/315347188_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1429218678/315347188_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprueba tramo de rescate a Portugal http://t.co/8IQXwEHF #Noticias", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:29 +0000", "from_user": "LuisPerezChe", "from_user_id": 386749789, "from_user_id_str": "386749789", "from_user_name": "Luis Perez Che", "geo": null, "id": 148838629656100860, "id_str": "148838629656100864", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1577286176/images_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1577286176/images_normal.jpeg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprueba tramo de rescate a Portugal: El Fondo desembolsar\\u00E1 2,900 mde para el pa\\u00EDs como parte de la ayuda fin... http://t.co/Vb73FsLe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:29 +0000", "from_user": "GusRamirez01", "from_user_id": 151937050, "from_user_id_str": "151937050", "from_user_name": "Gustavo Ram\\u00EDrez M. \\u2714", "geo": null, "id": 148838629370896400, "id_str": "148838629370896385", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1221579513/Ni_o_Rata_Bart_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1221579513/Ni_o_Rata_Bart_normal.PNG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprueba tramo de rescate a Portugal http://t.co/2TesM7D5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:28 +0000", "from_user": "ABDWORLDGROUPMX", "from_user_id": 256234063, "from_user_id_str": "256234063", "from_user_name": "ABD World Group Mx", "geo": null, "id": 148838627458297860, "id_str": "148838627458297857", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1453960717/logo_abd_GIF_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1453960717/logo_abd_GIF_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprueba tramo de rescate a Portugal: El Fondo desembolsar\\u00E1 2,900 mde para el pa\\u00EDs como parte de la ayuda fin... http://t.co/xLvXpei6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:28 +0000", "from_user": "FCOMEMO", "from_user_id": 180426308, "from_user_id_str": "180426308", "from_user_name": "PacoMemo", "geo": null, "id": 148838625449218050, "id_str": "148838625449218049", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1106521292/john-wayne-searchers-sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1106521292/john-wayne-searchers-sm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprueba tramo de rescate a Portugal: El Fondo desembolsar\\u00E1 2,900 mde para el pa\\u00EDs como parte de la ayuda fin... http://t.co/BNVtzkIC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:54:28 +0000", "from_user": "ABDWORLDGROUPMX", "from_user_id": 256234063, "from_user_id_str": "256234063", "from_user_name": "ABD World Group Mx", "geo": null, "id": 148838627458297860, "id_str": "148838627458297857", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1453960717/logo_abd_GIF_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1453960717/logo_abd_GIF_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprueba tramo de rescate a Portugal: El Fondo desembolsar\\u00E1 2,900 mde para el pa\\u00EDs como parte de la ayuda fin... http://t.co/xLvXpei6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:28 +0000", "from_user": "FCOMEMO", "from_user_id": 180426308, "from_user_id_str": "180426308", "from_user_name": "PacoMemo", "geo": null, "id": 148838625449218050, "id_str": "148838625449218049", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1106521292/john-wayne-searchers-sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1106521292/john-wayne-searchers-sm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprueba tramo de rescate a Portugal: El Fondo desembolsar\\u00E1 2,900 mde para el pa\\u00EDs como parte de la ayuda fin... http://t.co/BNVtzkIC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:18 +0000", "from_user": "TSF_Radio", "from_user_id": 245154246, "from_user_id_str": "245154246", "from_user_name": "R\\u00E1dio TSF", "geo": null, "id": 148838584613470200, "id_str": "148838584613470208", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1365629367/TSF_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1365629367/TSF_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "[ULTIMAS] BE admite fixar na Constitui\\u00E7\\u00E3o princ\\u00EDpio de que todos recebem de acordo com descontos http://t.co/4NpWeAnW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:18 +0000", "from_user": "pripereiras_", "from_user_id": 284555117, "from_user_id_str": "284555117", "from_user_name": "s\\u00F3 da @gabbs_ns", "geo": null, "id": 148838583946592260, "id_str": "148838583946592256", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693215775/PQAAAFQzLSw5QwV3llsqj2RjZqji7fH2Kq3ReI69uC3MUfMmNuBAwAt3tpVC43ybajcRGLHJkugyI1HIQ1Ca_ziARe8Am1T1UIW4c9g7hRigR1Z9v4btcwALOf-g_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693215775/PQAAAFQzLSw5QwV3llsqj2RjZqji7fH2Kq3ReI69uC3MUfMmNuBAwAt3tpVC43ybajcRGLHJkugyI1HIQ1Ca_ziARe8Am1T1UIW4c9g7hRigR1Z9v4btcwALOf-g_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "BE admite fixar na Constitui\\u00E7\\u00E3o princ\\u00EDpio de que todos recebem de acordo com descontos: O Bloco de Esquerda quer... http://t.co/v0LFUe0O", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:17 +0000", "from_user": "OfficialAnita", "from_user_id": 231691646, "from_user_id_str": "231691646", "from_user_name": "Anita Diah Nacing", "geo": null, "id": 148838581220278270, "id_str": "148838581220278272", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1690895299/iaq5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690895299/iaq5_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @WOWFAKTA: #WOW Andik Vermansyah sedang diincar Benfica, klub sepak bola dari Portugal http://t.co/egvImmz3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:08 +0000", "from_user": "pt_meta_guide", "from_user_id": 435931739, "from_user_id_str": "435931739", "from_user_name": "Portugal Meta Guide", "geo": null, "id": 148838544390111230, "id_str": "148838544390111232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691161167/Portugal-Flag-icon_normal.png", "profile_image_url_https": null, "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#Clorindadtl: Michelin Green Sightseeing Travel Guide to Portugal (Spanish Language Edition): http://t.co/BsKfd6St", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:07 +0000", "from_user": "EconomiaEs", "from_user_id": 223012474, "from_user_id_str": "223012474", "from_user_name": "Econom\\u00EDa en Espa\\u00F1ol", "geo": null, "id": 148838536961982460, "id_str": "148838536961982464", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1329492066/27-04-2011_09-31-49_p-m-_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1329492066/27-04-2011_09-31-49_p-m-_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "FMI autoriza nuevo tramo de ayuda a Portugal de 2.900 millones http://t.co/eoostbkT [Invertia] #Economia", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:03 +0000", "from_user": "Pascual_Aguerre", "from_user_id": 69173347, "from_user_id_str": "69173347", "from_user_name": "PASCUAL", "geo": null, "id": 148838519689838600, "id_str": "148838519689838593", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1534295136/IMG00859-20110507-2104_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534295136/IMG00859-20110507-2104_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "FMI autoriza entrega de 2 mil 900 euros como parte de la ayuda a Portugal http://t.co/ZNdq5qaO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:00 +0000", "from_user": "arcobalenoceano", "from_user_id": 376861483, "from_user_id_str": "376861483", "from_user_name": "Valeria Silvestri", "geo": null, "id": 148838509577371650, "id_str": "148838509577371648", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1631133927/valetwitter2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631133927/valetwitter2_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @lemondefr: Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/zeOt21vW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:53 +0000", "from_user": "RRmahbool78", "from_user_id": 305537233, "from_user_id_str": "305537233", "from_user_name": "Tounsii Boy", "geo": null, "id": 148838481483935740, "id_str": "148838481483935744", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1657470373/big.136095570M_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657470373/big.136095570M_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@MelissaCorreiaa mdr nan croi moi t dou au portugal", "to_user": "MelissaCorreiaa", "to_user_id": 432392184, "to_user_id_str": "432392184", "to_user_name": "M\\u00E9l\\u00ECssa Corre\\u00ECa", "in_reply_to_status_id": 148838163127877630, "in_reply_to_status_id_str": "148838163127877633"}, +{"created_at": "Mon, 19 Dec 2011 18:53:45 +0000", "from_user": "SaskiaCepellax", "from_user_id": 154659638, "from_user_id_str": "154659638", "from_user_name": "saskia cepella", "geo": null, "id": 148838445429690370, "id_str": "148838445429690368", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675492082/Snapshot_20111205_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675492082/Snapshot_20111205_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Omg, mijn zus gaat in de lesvrije week naar portugal met vriendinnen, jaloers!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:43 +0000", "from_user": "kamromero", "from_user_id": 100640404, "from_user_id_str": "100640404", "from_user_name": "kamal romero", "geo": null, "id": 148838439100485630, "id_str": "148838439100485633", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/629642635/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/629642635/twitterProfilePhoto_normal.jpg", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:43 +0000", "from_user": "trembaladacarla", "from_user_id": 285794492, "from_user_id_str": "285794492", "from_user_name": "marido da carlinha ", "geo": null, "id": 148838436361605120, "id_str": "148838436361605120", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700480119/5254_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700480119/5254_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "uau !!! ja viram meus videos em portugal e EUA kkkkk to me sentindo importante agr :P", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:37 +0000", "from_user": "NahuMartinez", "from_user_id": 156962952, "from_user_id_str": "156962952", "from_user_name": "Nahuel E Martinez", "geo": null, "id": 148838413125173250, "id_str": "148838413125173249", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1672068723/Foto0196_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672068723/Foto0196_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SantiAlbasi Que hambre que ten\\u00E9s. Si dice \"que veneran a este Dios en Portugal\", y Licha parece que se va al Porto.", "to_user": "SantiAlbasi", "to_user_id": 178079057, "to_user_id_str": "178079057", "to_user_name": "Santi Albasi", "in_reply_to_status_id": 148830868960591870, "in_reply_to_status_id_str": "148830868960591873"}, +{"created_at": "Mon, 19 Dec 2011 18:53:29 +0000", "from_user": "JuanCarlos_RDS", "from_user_id": 245942171, "from_user_id_str": "245942171", "from_user_name": "Juan Carlos RDS \\u2714", "geo": null, "id": 148838378987733000, "id_str": "148838378987732992", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684819587/nFYs3p4M_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684819587/nFYs3p4M_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "Ligados a Portugal (8) http://t.co/JZrlcU7m", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:21 +0000", "from_user": "manudb7000", "from_user_id": 33017923, "from_user_id_str": "33017923", "from_user_name": "manu", "geo": null, "id": 148838347471724540, "id_str": "148838347471724546", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1692988414/CIMG1906_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692988414/CIMG1906_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@MissLeote ...hi Miss! Where are u? Brazil or Portugal? ;)", "to_user": "MissLeote", "to_user_id": 117169768, "to_user_id_str": "117169768", "to_user_name": "Andreia Leote", "in_reply_to_status_id": 148834125833449470, "in_reply_to_status_id_str": "148834125833449472"}, +{"created_at": "Mon, 19 Dec 2011 18:53:20 +0000", "from_user": "AsPiadas_fail", "from_user_id": 337077995, "from_user_id_str": "337077995", "from_user_name": "melhores piadas", "geo": null, "id": 148838340177829900, "id_str": "148838340177829888", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1641891621/imagesCAKMTNAF_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641891621/imagesCAKMTNAF_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "tadinha da minha diva @rihanna foi descriminada por um ot\\u00E1rio em portugal =(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:20 +0000", "from_user": "myTVsamsung", "from_user_id": 438304695, "from_user_id_str": "438304695", "from_user_name": "Pierre lorat", "geo": null, "id": 148838340110716930, "id_str": "148838340110716928", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": null, "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/3O18XqMp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:09 +0000", "from_user": "TonnyPena", "from_user_id": 145043218, "from_user_id_str": "145043218", "from_user_name": "TONNY PE\\u00D1A V", "geo": null, "id": 148838296489951230, "id_str": "148838296489951232", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1652843374/FacebookHomescreenImage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652843374/FacebookHomescreenImage_normal.jpg", "source": "<a href="http://www.telesurtv.net/" rel="nofollow">teleSUR Noticias</a>", "text": "RT @teleSURtv: FMI autoriza entrega de 2 mil 900 euros como parte de la ayuda a Portugal http://t.co/2tvLNU05", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:09 +0000", "from_user": "cearatradebrasi", "from_user_id": 62580704, "from_user_id_str": "62580704", "from_user_name": "CEAR\\u00C1 TRADE BRASIL", "geo": null, "id": 148838294485073920, "id_str": "148838294485073920", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/346149524/Copy_of_Logomarca_CearaTrade_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/346149524/Copy_of_Logomarca_CearaTrade_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Portugal Digital - Importadores brasileiros ser\\u00E3o respons\\u00E1veis por dados de produtos estrangeiros http://t.co/6Wjmxres via @pd_twitt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:01 +0000", "from_user": "Patricia_Louisa", "from_user_id": 230784013, "from_user_id_str": "230784013", "from_user_name": "'Patriciaaaa.", "geo": null, "id": 148838262579011600, "id_str": "148838262579011584", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1577000632/327669972_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1577000632/327669972_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Waauw boss ac rappt alleen hoe portugal echt is als je in de drugs zit zo mooi !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:01 +0000", "from_user": "Bahadir7", "from_user_id": 287236404, "from_user_id_str": "287236404", "from_user_name": "Bahad\\u0131r", "geo": null, "id": 148838261895348220, "id_str": "148838261895348225", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700210216/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700210216/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @17Nani_PT: Um dos v\\u00EDdeos mais bonitos que j\\u00E1 vi, FOR\\u00C7A PORTUGAL: @luisnani @cristiano @RQ7Quaresma @FabioCoentrao @RaulMeireles4 http://t.co/ki6SNQOD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:00 +0000", "from_user": "Bru_Girolleta", "from_user_id": 156236362, "from_user_id_str": "156236362", "from_user_name": "Bruna Rebeca", "geo": null, "id": 148838257814278140, "id_str": "148838257814278145", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680921547/PQAAAJiHyBNcCIe_g_lzuj6w_odbqXr7O6gzS05oCc2Bsbl5zJ5trljrFfC3TWQFy6agqPwjLdR8BmKtioP7WogymJwAm1T1UKQyuJh_VYHnjCqz_dKwS2-2vKwJ_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680921547/PQAAAJiHyBNcCIe_g_lzuj6w_odbqXr7O6gzS05oCc2Bsbl5zJ5trljrFfC3TWQFy6agqPwjLdR8BmKtioP7WogymJwAm1T1UKQyuJh_VYHnjCqz_dKwS2-2vKwJ_normal.jpg", "source": "<a href="http://twitcam.com" rel="nofollow">Twitcam.com</a>", "text": "e eu sou de PORTUGAL ahaha =)mas \\u00E9 verdade (@VINICIUSBOGADO live on http://t.co/Dufn5WXN)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:55 +0000", "from_user": "sandracamara", "from_user_id": 28378959, "from_user_id_str": "28378959", "from_user_name": "sandra camara", "geo": null, "id": 148838236729507840, "id_str": "148838236729507840", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1672996156/sandracamara_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672996156/sandracamara_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @17Nani_PT: Um dos v\\u00EDdeos mais bonitos que j\\u00E1 vi, FOR\\u00C7A PORTUGAL: @luisnani @cristiano @RQ7Quaresma @FabioCoentrao @RaulMeireles4 http://t.co/ki6SNQOD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:37 +0000", "from_user": "JAPAREDESFV", "from_user_id": 233644064, "from_user_id_str": "233644064", "from_user_name": "futbolvideo.net ", "geo": null, "id": 148838162473558000, "id_str": "148838162473558017", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1232540660/FONDO_1_cambiado_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1232540660/FONDO_1_cambiado_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @aitonto_kaganka: #Ra\\u00FAlSelecci\\u00F3n... De Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:32 +0000", "from_user": "mkbnieuws", "from_user_id": 130411783, "from_user_id_str": "130411783", "from_user_name": "MKB Deventer", "geo": null, "id": 148838141611094000, "id_str": "148838141611094016", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1626721209/logo-mkb_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626721209/logo-mkb_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Nu zakelijk: IMF keurt lening aan Portugal goed http://t.co/U1AwSUn2 #mkb #mkbdeventer", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:18 +0000", "from_user": "bemaartins_", "from_user_id": 152401900, "from_user_id_str": "152401900", "from_user_name": "~.~", "geo": null, "id": 148838082244911100, "id_str": "148838082244911104", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700921093/100_8789_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700921093/100_8789_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "olko um portugues de portugal acabou de me ligar aw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:06 +0000", "from_user": "MariaLuis", "from_user_id": 405964342, "from_user_id_str": "405964342", "from_user_name": "Maria Lu\\u00EDs", "geo": null, "id": 148838031376396300, "id_str": "148838031376396288", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1624695982/Sem_t_tulo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624695982/Sem_t_tulo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ZaniamAddiction Awwww *.* hehe, chamo-me Maria Lu\\u00EDs, tenho 15 anos e tamb\\u00E9m sou de Portugal :P temos mais coisas em comum para al\\u00E9m de...", "to_user": "ZaniamAddiction", "to_user_id": 344318804, "to_user_id_str": "344318804", "to_user_name": "Debby, Bea & Pathy*", "in_reply_to_status_id": 148834797349912580, "in_reply_to_status_id_str": "148834797349912576"}, +{"created_at": "Mon, 19 Dec 2011 18:52:05 +0000", "from_user": "TSFRadio", "from_user_id": 15392221, "from_user_id_str": "15392221", "from_user_name": "R\\u00E1dio TSF", "geo": +{"coordinates": [38.7475,-9.099], "type": "Point"}, "id": 148838028562018300, "id_str": "148838028562018304", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1430753584/avatar_tsf_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1430753584/avatar_tsf_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#Portugal BE admite fixar na Constitui\\u00E7\\u00E3o princ\\u00EDpio de que todos recebem de acordo com... http://t.co/CHAJjo09 Em http://t.co/mlddDOHT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:02 +0000", "from_user": "PortugalTopSong", "from_user_id": 347078653, "from_user_id_str": "347078653", "from_user_name": "PortugalTopSong", "geo": null, "id": 148838014116835330, "id_str": "148838014116835329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1527822406/icon080_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1527822406/icon080_normal.png", "source": "<a href="http://wikyou.org/" rel="nofollow">wikyou5</a>", "text": "Hoje hit YouTube v\\u00EDdeo em Portugal.(Today's hit YouTube Video in Portugal.)\\u300CThe Black Eyed Peas\\u300D's \\u300EPump It\\u300F http://t.co/4prbmnae", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:57 +0000", "from_user": "renandocouto", "from_user_id": 173303902, "from_user_id_str": "173303902", "from_user_name": "Renan do Couto", "geo": null, "id": 148837993623466000, "id_str": "148837993623465984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695682985/balada_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695682985/balada_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\"@allkart: Rotax Grand Finals 2012 ser\\u00E1 no Algarve, em Portugal: http://t.co/QsiQSV25\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:55 +0000", "from_user": "JornalOJE", "from_user_id": 127881632, "from_user_id_str": "127881632", "from_user_name": "O Jornal Econ\\u00F3mico", "geo": null, "id": 148837985306165250, "id_str": "148837985306165248", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/785767199/LOGO-OJE_Site_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/785767199/LOGO-OJE_Site_normal.jpg", "source": "<a href="http://tarpipe.com/" rel="nofollow">tarpipe</a>", "text": "Venda de autom\\u00F3veis em Portugal vai valer menos mil milh\\u00F5es este ano http://t.co/UnuceItU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:55 +0000", "from_user": "THE_LEEO_26", "from_user_id": 302325670, "from_user_id_str": "302325670", "from_user_name": "LEEO_26", "geo": null, "id": 148837983867506700, "id_str": "148837983867506688", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1659238510/leo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659238510/leo_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @17Nani_PT: Um dos v\\u00EDdeos mais bonitos que j\\u00E1 vi, FOR\\u00C7A PORTUGAL: @luisnani @cristiano @RQ7Quaresma @FabioCoentrao @RaulMeireles4 http://t.co/ki6SNQOD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:53 +0000", "from_user": "thelockedwonder", "from_user_id": 221626704, "from_user_id_str": "221626704", "from_user_name": "Legatus A. Maximus", "geo": null, "id": 148837974782648320, "id_str": "148837974782648321", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1433403099/316214215_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1433403099/316214215_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "How far in tghe queue are we? RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment ... http://t.co/mb9nZOGR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:52 +0000", "from_user": "BelizSez", "from_user_id": 188377011, "from_user_id_str": "188377011", "from_user_name": "BS", "geo": null, "id": 148837973851508740, "id_str": "148837973851508737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689101468/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689101468/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#nowplaying Gui Boratto @ sensation portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:50 +0000", "from_user": "GermanMaslower", "from_user_id": 337086445, "from_user_id_str": "337086445", "from_user_name": "James' Covergirl \\u2665", "geo": null, "id": 148837965743915000, "id_str": "148837965743915008", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696528523/AfvIY0nCQAA4nEC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696528523/AfvIY0nCQAA4nEC_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@LoganFan002 am freitag bin ich schon in Portugal :)", "to_user": "LoganFan002", "to_user_id": 226240537, "to_user_id_str": "226240537", "to_user_name": "Anne Henderson \\u2665", "in_reply_to_status_id": 148837716069597200, "in_reply_to_status_id_str": "148837716069597185"}, +{"created_at": "Mon, 19 Dec 2011 18:51:44 +0000", "from_user": "SparkSofia", "from_user_id": 176228400, "from_user_id_str": "176228400", "from_user_name": "Sofia Faisca", "geo": +{"coordinates": [38.7629,-9.1161], "type": "Point"}, "id": 148837937117794300, "id_str": "148837937117794306", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1422703957/500406h18FO_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1422703957/500406h18FO_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@JaredLetoMerch do you send the merch to portugal?", "to_user": "JaredLetoMerch", "to_user_id": 402789552, "to_user_id_str": "402789552", "to_user_name": "JAREDLETO.COM MERCH", "in_reply_to_status_id": 148833237261758460, "in_reply_to_status_id_str": "148833237261758465"}, +{"created_at": "Mon, 19 Dec 2011 18:51:43 +0000", "from_user": "JoaoLuizCunha", "from_user_id": 96916239, "from_user_id_str": "96916239", "from_user_name": "Jo\\u00E3o Luiz Cunha", "geo": null, "id": 148837934756401150, "id_str": "148837934756401153", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1570595113/guigo1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1570595113/guigo1_normal.jpg", "source": "<a href="http://g1.globo.com/" rel="nofollow">g1.com.br</a>", "text": "RT @g1: FMI libera mais 2,9 bilh\\u00F5es para Portugal http://t.co/WoEfgKeR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:40 +0000", "from_user": "FilipaFr", "from_user_id": 241682865, "from_user_id_str": "241682865", "from_user_name": "Filipa Francisco", "geo": null, "id": 148837920839712770, "id_str": "148837920839712768", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1677577586/DSCN0608_4__normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677577586/DSCN0608_4__normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @JuanCarlos_RDS: A trivela do @RQ7Quaresma com Portugal: http://t.co/4G26rTip \\u00A1E-S-P-E-C-T-A-C-U-L-A-R! \\u00A1M\\u00E1gico Quaresma!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:29 +0000", "from_user": "banhart", "from_user_id": 17275861, "from_user_id_str": "17275861", "from_user_name": "chief death eater d", "geo": null, "id": 148837875159539700, "id_str": "148837875159539712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/755446615/Pikachu_wobbuffet_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/755446615/Pikachu_wobbuffet_normal.png", "source": "<a href="http://www.tweekly.fm/" rel="nofollow">Tweekly.fm</a>", "text": "My Top 3 #lastfm Artists: Deerhunter (34), Miniature Tigers (24) & Portugal. The Man (22) http://t.co/vyprDHW9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:12 +0000", "from_user": "allkart", "from_user_id": 54324409, "from_user_id_str": "54324409", "from_user_name": "Allkart.net", "geo": null, "id": 148837804212891650, "id_str": "148837804212891649", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/300480192/logo_ak_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/300480192/logo_ak_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Rotax Grand Finals 2012 ser\\u00E1 no Algarve, em Portugal: http://t.co/YhV6xGhc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:11 +0000", "from_user": "HelderAMF", "from_user_id": 17745219, "from_user_id_str": "17745219", "from_user_name": "HelderAMF", "geo": null, "id": 148837798236000260, "id_str": "148837798236000256", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1608265957/helder_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608265957/helder_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@manuelparreira n\\u00E3, n\\u00E3, n\\u00E3. Isso vai ser Portugal. Algures entre uma Alb\\u00E2nia dos anos 70 e o Zimbabwe", "to_user": "manuelparreira", "to_user_id": 162089811, "to_user_id_str": "162089811", "to_user_name": "Manuel Parreira", "in_reply_to_status_id": 148837529620197380, "in_reply_to_status_id_str": "148837529620197376"}, +{"created_at": "Mon, 19 Dec 2011 18:51:07 +0000", "from_user": "JDreport", "from_user_id": 164204118, "from_user_id_str": "164204118", "from_user_name": "JDreport", "geo": null, "id": 148837785044926460, "id_str": "148837785044926464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1655189890/small_227474_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655189890/small_227474_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\"@djfxtrader: Greek FinMin: #Greece, #Ireland, #Portugal Excluded From IMF Boost [Dow Jones] #imf #euro\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:07 +0000", "from_user": "Jorge_Canob", "from_user_id": 336666519, "from_user_id_str": "336666519", "from_user_name": "Jorge B.", "geo": null, "id": 148837782205378560, "id_str": "148837782205378561", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627127695/Aguante_Rojinegro_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627127695/Aguante_Rojinegro_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @CarlosIMedina20: Te\\u00F3filo Guti\\u00E9rrez ir\\u00EDa al Porto de Portugal y Bacca a Newell's seg\\u00FAn algunos periodistas, esperemos confirmaci\\u00F3n de ambos clubes.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:56 +0000", "from_user": "nudetelegraaf", "from_user_id": 374080222, "from_user_id_str": "374080222", "from_user_name": "nudetelegraaf", "geo": null, "id": 148837735354990600, "id_str": "148837735354990593", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://no.nl/" rel="nofollow">No.nl</a>", "text": "IMF keurt lening aan Portugal goed - http://t.co/4yOdHujU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:54 +0000", "from_user": "tweetminster", "from_user_id": 18142375, "from_user_id_str": "18142375", "from_user_name": "Tweetminster", "geo": null, "id": 148837728375681020, "id_str": "148837728375681024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/976947959/avatar_Tweetminster_73x73_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/976947959/avatar_Tweetminster_73x73_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @djfxtrader: Greek FinMin: #Greece, #Ireland, #Portugal Excluded From IMF Boost [Dow Jones] #imf #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:53 +0000", "from_user": "Paul_at_FOH", "from_user_id": 171898130, "from_user_id_str": "171898130", "from_user_name": "Marvin Paul Thomas", "geo": null, "id": 148837723011153920, "id_str": "148837723011153921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1289721418/Bottom_of_the_Hill_by_Josh_on_8-17-07_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1289721418/Bottom_of_the_Hill_by_Josh_on_8-17-07_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:48 +0000", "from_user": "aberlourbear", "from_user_id": 115366389, "from_user_id_str": "115366389", "from_user_name": "peter", "geo": null, "id": 148837703717371900, "id_str": "148837703717371904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1665864958/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665864958/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@nikefootball they both are quality going to get him both on release their day he will be wearing both at Mundialito Portugal in April.", "to_user": "nikefootball", "to_user_id": 41147159, "to_user_id_str": "41147159", "to_user_name": "Nike Football", "in_reply_to_status_id": 148830952544673800, "in_reply_to_status_id_str": "148830952544673792"}, +{"created_at": "Mon, 19 Dec 2011 18:50:48 +0000", "from_user": "Mercutio_M", "from_user_id": 300178269, "from_user_id_str": "300178269", "from_user_name": "Mercutio Montesco", "geo": null, "id": 148837703176306700, "id_str": "148837703176306688", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685862536/polla-de-mercutio_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685862536/polla-de-mercutio_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Pornosawa: Catalu\\u00F1a es como Portugal pero con menos pelo y m\\u00E1s dinero.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:47 +0000", "from_user": "JulianRojinegro", "from_user_id": 336937138, "from_user_id_str": "336937138", "from_user_name": "Julian Rojinegro", "geo": null, "id": 148837701632794620, "id_str": "148837701632794625", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1658240524/bielsa_11_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658240524/bielsa_11_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @CarlosIMedina20: Te\\u00F3filo Guti\\u00E9rrez ir\\u00EDa al Porto de Portugal y Bacca a Newell's seg\\u00FAn algunos periodistas, esperemos confirmaci\\u00F3n de ambos clubes.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:37 +0000", "from_user": "ManuB4N", "from_user_id": 441092236, "from_user_id_str": "441092236", "from_user_name": "Manu ", "geo": null, "id": 148837656145559550, "id_str": "148837656145559552", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702612307/hr-3163-61.hd-3103-2.ch-3185-107.lg-3078-110.sh-3016-110.he-3181-93.ea-3168-103.ca-3225-96-93.wa-3072-62-62.cc-3158-110_s-0.g-0.d-4.h-4.a-0_46cd22323787f6cb20dcea9baab29e72_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702612307/hr-3163-61.hd-3103-2.ch-3185-107.lg-3078-110.sh-3016-110.he-3181-93.ea-3168-103.ca-3225-96-93.wa-3072-62-62.cc-3158-110_s-0.g-0.d-4.h-4.a-0_46cd22323787f6cb20dcea9baab29e72_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Por Que? No lo entiendo como digo un viejo sabio de portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:36 +0000", "from_user": "joshdykes02", "from_user_id": 198795750, "from_user_id_str": "198795750", "from_user_name": "Josh Dykes", "geo": null, "id": 148837655109566460, "id_str": "148837655109566464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668452234/IMG00164-20110712-2035_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668452234/IMG00164-20110712-2035_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@Fredd94 that's all you lived on in portugal", "to_user": "Fredd94", "to_user_id": 215587106, "to_user_id_str": "215587106", "to_user_name": "James Beer", "in_reply_to_status_id": 148837490885799940, "in_reply_to_status_id_str": "148837490885799936"}, +{"created_at": "Mon, 19 Dec 2011 18:50:36 +0000", "from_user": "bettinhogarcia", "from_user_id": 143820199, "from_user_id_str": "143820199", "from_user_name": "Bettinho Garcia", "geo": null, "id": 148837654216192000, "id_str": "148837654216192001", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1526892965/papai_noel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1526892965/papai_noel_normal.jpg", "source": "<a href="http://g1.globo.com/" rel="nofollow">g1.com.br</a>", "text": "RT @g1: FMI libera mais 2,9 bilh\\u00F5es para Portugal http://t.co/WoEfgKeR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:36 +0000", "from_user": "PlanBnB", "from_user_id": 78466241, "from_user_id_str": "78466241", "from_user_name": "PlanBnb", "geo": null, "id": 148837653398290430, "id_str": "148837653398290432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/444021711/DSC00795_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/444021711/DSC00795_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "A financial Dunkirk: Britain draws up plans to rescue expats if Spain ...: Expats could face losing thei... http://t.co/yo3V9c4m #Expats", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:36 +0000", "from_user": "HostelVegan", "from_user_id": 78465193, "from_user_id_str": "78465193", "from_user_name": "Hostel Vegan", "geo": null, "id": 148837652605575170, "id_str": "148837652605575169", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/444024990/DSC00752_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/444024990/DSC00752_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "A financial Dunkirk: Britain draws up plans to rescue expats if Spain ...: Expats could face losing thei... http://t.co/hj3O9DA7 #Expats", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:35 +0000", "from_user": "blgloriosasfera", "from_user_id": 219931601, "from_user_id_str": "219931601", "from_user_name": "Blogs Gloriosasfera", "geo": null, "id": 148837650462281730, "id_str": "148837650462281728", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1175910145/gloriosasfera_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1175910145/gloriosasfera_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "O p\\u00F3s jogo.: Portugal, 19 de Dezembro de 2011No futebol h\\u00E1 uma \\u201Clei\\u201D que diz que n\\u00E3o h\\u00E1 2 jogos iguais. Os jogos... http://t.co/YWHY4Bnh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:28 +0000", "from_user": "libertaire10", "from_user_id": 275948503, "from_user_id_str": "275948503", "from_user_name": "occitan10", "geo": null, "id": 148837619206336500, "id_str": "148837619206336512", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1680529462/050809113309_76_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680529462/050809113309_76_normal.gif", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @NewsEnContinu: Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/vqXgclUY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:24 +0000", "from_user": "danielacatiane", "from_user_id": 326248479, "from_user_id_str": "326248479", "from_user_name": "daniela catiane", "geo": null, "id": 148837603641270270, "id_str": "148837603641270272", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1478456546/cora__es_amigos_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1478456546/cora__es_amigos_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SandraM_RBD @Vondyduleucker @CarolBatista14 @alinegomespk @jujuCcelim @Anevondy gente bora visitar a sandrinha em portugal kkk", "to_user": "SandraM_RBD", "to_user_id": 409592464, "to_user_id_str": "409592464", "to_user_name": "sandra martins", "in_reply_to_status_id": 148837205425664000, "in_reply_to_status_id_str": "148837205425664001"}, +{"created_at": "Mon, 19 Dec 2011 18:50:18 +0000", "from_user": "RobertsAuzans", "from_user_id": 229824254, "from_user_id_str": "229824254", "from_user_name": "Roberts Auzans", "geo": null, "id": 148837575967252480, "id_str": "148837575967252480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1624444425/Miesvdrohn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624444425/Miesvdrohn_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:18 +0000", "from_user": "ElFinanciero_Mx", "from_user_id": 119051398, "from_user_id_str": "119051398", "from_user_name": "El Financiero", "geo": null, "id": 148837575841419260, "id_str": "148837575841419264", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1669528067/logoFinancieroMovil_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669528067/logoFinancieroMovil_normal.png", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "#FMI aprueba nuevo tramo de cr\\u00E9dito 2,900 mde para #Portugal: http://t.co/nzbARPl8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:17 +0000", "from_user": "paris_news2", "from_user_id": 44081874, "from_user_id_str": "44081874", "from_user_name": "Paris News", "geo": null, "id": 148837572897030140, "id_str": "148837572897030145", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "http://t.co/5McIYPxW Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone... http://t.co/wRygGgvO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:16 +0000", "from_user": "take_jp", "from_user_id": 42629577, "from_user_id_str": "42629577", "from_user_name": "take", "geo": null, "id": 148837568337805300, "id_str": "148837568337805312", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/805794286/takeshi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/805794286/takeshi_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s la Gr\\u00E8ce... http://t.co/yBSaYMHI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:14 +0000", "from_user": "denny", "from_user_id": 775957, "from_user_id_str": "775957", "from_user_name": "Denny", "geo": null, "id": 148837559768846340, "id_str": "148837559768846336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1291483853/fuzzy-hat.450x450_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1291483853/fuzzy-hat.450x450_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:14 +0000", "from_user": "Kyokoixxr", "from_user_id": 426245653, "from_user_id_str": "426245653", "from_user_name": "Kyoko Gardner", "geo": null, "id": 148837559450075140, "id_str": "148837559450075136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668756509/LLCM-3745_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668756509/LLCM-3745_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Spain Portugal (Marco Polo Country Maps): http://t.co/PfGOkbEw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:13 +0000", "from_user": "Tamekatdfl", "from_user_id": 426248268, "from_user_id_str": "426248268", "from_user_name": "Tameka Mortensen", "geo": null, "id": 148837556291764220, "id_str": "148837556291764224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668763263/LLCM-1780_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668763263/LLCM-1780_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Spain Portugal (Marco Polo Country Maps): http://t.co/CxpIBRQ3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:12 +0000", "from_user": "agenciapre7", "from_user_id": 336255310, "from_user_id_str": "336255310", "from_user_name": "Ag\\u00EAncia pre7", "geo": null, "id": 148837554056216580, "id_str": "148837554056216577", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662630971/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662630971/avatar_normal.jpg", "source": "<a href="http://www.agenciapre7.com.br" rel="nofollow">agenciapre7</a>", "text": "Blog: FMI libera mais 2,9 bilh\\u00F5es para Portugal http://t.co/zyEbEbOS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:12 +0000", "from_user": "Spearingnhe", "from_user_id": 395430089, "from_user_id_str": "395430089", "from_user_name": "Karol Spearing", "geo": null, "id": 148837553003442180, "id_str": "148837553003442178", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1599691409/MFC-2469_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599691409/MFC-2469_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Spain Portugal (Marco Polo Country Maps): http://t.co/HW76tHrc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:12 +0000", "from_user": "Sof_F", "from_user_id": 22351182, "from_user_id_str": "22351182", "from_user_name": "Sophie Isobella", "geo": null, "id": 148837552059715600, "id_str": "148837552059715584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1596593601/IMGP56882_twitter_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596593601/IMGP56882_twitter_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@Sophia_Cullen It sounds like a scene from the ghost story The Prince of Mist - Evil cat + Portugal + flickering lights = haunting! :D", "to_user": "Sophia_Cullen", "to_user_id": 23091774, "to_user_id_str": "23091774", "to_user_name": "Sophia Cullen", "in_reply_to_status_id": 148835163260989440, "in_reply_to_status_id_str": "148835163260989441"}, +{"created_at": "Mon, 19 Dec 2011 18:50:07 +0000", "from_user": "g1economia", "from_user_id": 31494764, "from_user_id_str": "31494764", "from_user_name": "G1 - Economia", "geo": null, "id": 148837532442959870, "id_str": "148837532442959874", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1020735790/G1_ECONOMIA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1020735790/G1_ECONOMIA_normal.jpg", "source": "<a href="http://g1.globo.com/economia-e-negocios/" rel="nofollow">g1.globo.com/economia-e-negocios</a>", "text": "FMI libera mais 2,9 bilh\\u00F5es para Portugal http://t.co/xhhhyrvx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:06 +0000", "from_user": "JuanCarlos_RDS", "from_user_id": 245942171, "from_user_id_str": "245942171", "from_user_name": "Juan Carlos RDS \\u2714", "geo": null, "id": 148837528122834940, "id_str": "148837528122834944", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684819587/nFYs3p4M_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684819587/nFYs3p4M_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @17Nani_PT: Um dos v\\u00EDdeos mais bonitos que j\\u00E1 vi, FOR\\u00C7A PORTUGAL: @luisnani @cristiano @RQ7Quaresma @FabioCoentrao @RaulMeireles4 http://t.co/ki6SNQOD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:04 +0000", "from_user": "teleSURtv", "from_user_id": 45013575, "from_user_id_str": "45013575", "from_user_name": "teleSUR TV", "geo": null, "id": 148837518975053820, "id_str": "148837518975053824", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1171030471/logo_nuevo_telesur_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1171030471/logo_nuevo_telesur_normal.jpg", "source": "<a href="http://www.telesurtv.net/" rel="nofollow">teleSUR Noticias</a>", "text": "FMI autoriza entrega de 2 mil 900 euros como parte de la ayuda a Portugal http://t.co/2tvLNU05", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:02 +0000", "from_user": "cambioturismo", "from_user_id": 122424993, "from_user_id_str": "122424993", "from_user_name": "Cambio Turismo", "geo": null, "id": 148837512595505150, "id_str": "148837512595505152", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/855372172/dolar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/855372172/dolar_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "FMI libera mais 2,9 bilh\\u00F5es para Portugal http://t.co/GnX4iBih", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:56 +0000", "from_user": "JuanCarlos_RDS", "from_user_id": 245942171, "from_user_id_str": "245942171", "from_user_name": "Juan Carlos RDS \\u2714", "geo": null, "id": 148837486561460220, "id_str": "148837486561460224", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684819587/nFYs3p4M_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684819587/nFYs3p4M_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "A trivela do @RQ7Quaresma com Portugal: http://t.co/4G26rTip \\u00A1E-S-P-E-C-T-A-C-U-L-A-R! \\u00A1M\\u00E1gico Quaresma!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:54 +0000", "from_user": "coachenfinanzas", "from_user_id": 324125268, "from_user_id_str": "324125268", "from_user_name": "InteligenciaFinanzas", "geo": null, "id": 148837477069762560, "id_str": "148837477069762560", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1429845572/logoface2222_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1429845572/logoface2222_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "FMI aprueba entrega de \\u20AC2 mil 900 millones para Portugal - El Consejo de Administraci\\u00F3n dio luz verde para desbloque... http://t.co/ylDqwA1A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:54 +0000", "from_user": "ManejarFinanzas", "from_user_id": 411886219, "from_user_id_str": "411886219", "from_user_name": "Manejar Mis Finanzas", "geo": null, "id": 148837476386086900, "id_str": "148837476386086912", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657593167/finanzas-personales_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657593167/finanzas-personales_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "FMI aprueba entrega de \\u20AC2 mil 900 millones para Portugal - El Consejo de Administraci\\u00F3n dio luz verde para desbloque... http://t.co/vNPxaQdt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:52 +0000", "from_user": "zevonesque", "from_user_id": 21287755, "from_user_id_str": "21287755", "from_user_name": "Andy Walker", "geo": null, "id": 148837468777627650, "id_str": "148837468777627648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/661750189/me4twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/661750189/me4twitter_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@stephendeacon Nope. Only been to finals I am afraid. Went to Portugal (Faro) for 1st time earlier in year. Nice place.", "to_user": "stephendeacon", "to_user_id": 92111958, "to_user_id_str": "92111958", "to_user_name": "Stephen Deacon", "in_reply_to_status_id": 148833121155031040, "in_reply_to_status_id_str": "148833121155031041"}, +{"created_at": "Mon, 19 Dec 2011 18:49:51 +0000", "from_user": "HABBOBIONIC", "from_user_id": 113759549, "from_user_id_str": "113759549", "from_user_name": ":B.I.O.N.I.C:", "geo": null, "id": 148837465942265860, "id_str": "148837465942265856", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1663231992/bioo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663231992/bioo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": ":( assim Rihanna nunca mais vai querer voutar em Portugal. buaa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:50 +0000", "from_user": "gazelover_", "from_user_id": 42326416, "from_user_id_str": "42326416", "from_user_name": "\\u3073\\u306B\\u3001number six \\u2240", "geo": null, "id": 148837458874859520, "id_str": "148837458874859520", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702471465/gazelover__2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702471465/gazelover__2__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Rihanna disse isso no seu twitter... ela disse que sofreu racismo quando estava em Portugal.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:47 +0000", "from_user": "twmtaboor", "from_user_id": 229503870, "from_user_id_str": "229503870", "from_user_name": "Tom Morley", "geo": null, "id": 148837445822201860, "id_str": "148837445822201856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1458296453/prob_chant_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1458296453/prob_chant_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SportingbetMark Largely cos we use same methods I see we like same things in Germany and Portugal!! Do u no if Olhanense have any missings?", "to_user": "SportingbetMark", "to_user_id": 204852668, "to_user_id_str": "204852668", "to_user_name": "Mark O'Haire", "in_reply_to_status_id": 148827677065879550, "in_reply_to_status_id_str": "148827677065879553"}, +{"created_at": "Mon, 19 Dec 2011 18:49:45 +0000", "from_user": "iManrik", "from_user_id": 78199152, "from_user_id_str": "78199152", "from_user_name": "Ingrid", "geo": null, "id": 148837440981958660, "id_str": "148837440981958659", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1658259310/v2ux8hAY_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658259310/v2ux8hAY_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "En que hotel se habr\\u00E1 quedado Rihanna en Portugal!?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:43 +0000", "from_user": "PeterUlsteen", "from_user_id": 44684205, "from_user_id_str": "44684205", "from_user_name": "Peter Ulsteen", "geo": null, "id": 148837429565071360, "id_str": "148837429565071360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702584229/ron-paul-iowa_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702584229/ron-paul-iowa_normal.jpeg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @monetaryintel: lol RT @DailyFXTeam: Greek Fin Min says Greece, Portugal and Ireland are not participating in the EU's plans to lend to the IMF.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:42 +0000", "from_user": "youandeyeareone", "from_user_id": 352198898, "from_user_id_str": "352198898", "from_user_name": "Christopher Corbin", "geo": null, "id": 148837428378075140, "id_str": "148837428378075136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1635822647/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635822647/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:42 +0000", "from_user": "Kalistoncardoso", "from_user_id": 190884837, "from_user_id_str": "190884837", "from_user_name": "K\\u00E1liston Cardoso", "geo": null, "id": 148837426708742140, "id_str": "148837426708742145", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694954705/perfiil_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694954705/perfiil_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Minha v\\u00F3 disse hj @PaulaFernandes7 em #portugal \\u00E9 um sucesso todo mundo escuta o cd dela l\\u00E1 *--*\\nIsso \\u00E9 lindo demaaais !!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:40 +0000", "from_user": "DavePugheParry", "from_user_id": 409409460, "from_user_id_str": "409409460", "from_user_name": "Dave Pughe-Parry", "geo": null, "id": 148837419565854720, "id_str": "148837419565854721", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1632335721/DavePen_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632335721/DavePen_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:39 +0000", "from_user": "giselaflowyable", "from_user_id": 347228299, "from_user_id_str": "347228299", "from_user_name": "Gisela.", "geo": null, "id": 148837415509954560, "id_str": "148837415509954560", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700401621/G._normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700401621/G._normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@CarmenLauraIT Entonces seg\\u00FAn tu por GEOGRAFIA \\u00BFPortugal tambi\\u00E9n es espa\\u00F1a?", "to_user": "CarmenLauraIT", "to_user_id": 358243926, "to_user_id_str": "358243926", "to_user_name": "Carmen Laura Ortega", "in_reply_to_status_id": 148836451692462080, "in_reply_to_status_id_str": "148836451692462081"}, +{"created_at": "Mon, 19 Dec 2011 18:49:38 +0000", "from_user": "negociomx", "from_user_id": 105276754, "from_user_id_str": "105276754", "from_user_name": "negocio", "geo": null, "id": 148837408727773200, "id_str": "148837408727773185", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/633939909/negocio_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/633939909/negocio_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Aprueba FMI tercer tramo de pr\\u00E9stamo a Portugal http://t.co/Gyfo9f8S", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:35 +0000", "from_user": "luckaz", "from_user_id": 32655646, "from_user_id_str": "32655646", "from_user_name": "Lucas Morais", "geo": null, "id": 148837396266491900, "id_str": "148837396266491904", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1597898646/eu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1597898646/eu_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Notas para uma cr\\u00EDtica do sindicalismo http://t.co/kq02GmsI #Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:35 +0000", "from_user": "CarolinaValinho", "from_user_id": 358927753, "from_user_id_str": "358927753", "from_user_name": "Carolina*", "geo": null, "id": 148837395645743100, "id_str": "148837395645743104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702260160/Bieber_Lil_b_voice_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702260160/Bieber_Lil_b_voice_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@thatrygood Hi please follow me I am a fan from Portugal. Thanks and Merry Christmas.", "to_user": "thatrygood", "to_user_id": 19679461, "to_user_id_str": "19679461", "to_user_name": "ryan good", "in_reply_to_status_id": 148836824968732670, "in_reply_to_status_id_str": "148836824968732673"}, +{"created_at": "Mon, 19 Dec 2011 18:49:27 +0000", "from_user": "Ortega_Gerardo", "from_user_id": 214415378, "from_user_id_str": "214415378", "from_user_name": "Gerardo Ortega", "geo": null, "id": 148837362967916540, "id_str": "148837362967916544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1164617010/Gerardo_Ortega_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1164617010/Gerardo_Ortega_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @DailyFXTeam: Greek Fin Min says Greece, Portugal and Ireland are not participating in the EU's plans to lend to the IMF.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:22 +0000", "from_user": "RQ7Quaresma", "from_user_id": 178732567, "from_user_id_str": "178732567", "from_user_name": "Ricardo Quaresma", "geo": null, "id": 148837342633926660, "id_str": "148837342633926657", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1641809170/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641809170/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @17Nani_PT: Um dos v\\u00EDdeos mais bonitos que j\\u00E1 vi, FOR\\u00C7A PORTUGAL: @luisnani @cristiano @RQ7Quaresma @FabioCoentrao @RaulMeireles4 http://t.co/ki6SNQOD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:21 +0000", "from_user": "monetaryintel", "from_user_id": 206241540, "from_user_id_str": "206241540", "from_user_name": "MonetaryIntelligence", "geo": null, "id": 148837337399439360, "id_str": "148837337399439361", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1352023311/MI_Logo_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1352023311/MI_Logo_normal.PNG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "lol RT @DailyFXTeam: Greek Fin Min says Greece, Portugal and Ireland are not participating in the EU's plans to lend to the IMF.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:10 +0000", "from_user": "Novos_Rurais", "from_user_id": 19179355, "from_user_id_str": "19179355", "from_user_name": "Novos_Rurais", "geo": null, "id": 148837291912200200, "id_str": "148837291912200192", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1399911075/Novos_Rurais2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1399911075/Novos_Rurais2_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Ad\\u00E3o e Eva pagaram muito caro por uma ma\\u00E7\\u00E3.\\n\\nE voc\\u00EA... tamb\\u00E9m?????\\n\\nPortugal sem Prozac\\nProcuramos gente positiva... http://t.co/dozCAn2A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:08 +0000", "from_user": "Elbebo_", "from_user_id": 204348656, "from_user_id_str": "204348656", "from_user_name": "Pablo Medicina", "geo": null, "id": 148837284173721600, "id_str": "148837284173721600", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1154797442/2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1154797442/2_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @CarlosIMedina20: Te\\u00F3filo Guti\\u00E9rrez ir\\u00EDa al Porto de Portugal y Bacca a Newell's seg\\u00FAn algunos periodistas, esperemos confirmaci\\u00F3n de ambos clubes.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:05 +0000", "from_user": "portugalforum", "from_user_id": 41989700, "from_user_id_str": "41989700", "from_user_name": "portugalforum", "geo": null, "id": 148837270647087100, "id_str": "148837270647087104", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/487842239/pfo_icon_gr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/487842239/pfo_icon_gr_normal.jpg", "source": "<a href="http://www.portugalforum.org" rel="nofollow">portugalforum.org</a>", "text": "Algarve-News: Portim\\u00E3o: Aut\\u00F3dromo Internacional do Algarve ausgezeichnet: F\\u00FCr die hervorragende Werbung, Logistik http://t.co/RwCEuzLm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:03 +0000", "from_user": "g1", "from_user_id": 8802752, "from_user_id_str": "8802752", "from_user_name": "G1", "geo": null, "id": 148837262287847420, "id_str": "148837262287847424", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1018270551/logotwitter_G1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1018270551/logotwitter_G1_normal.jpg", "source": "<a href="http://g1.globo.com/" rel="nofollow">g1.com.br</a>", "text": "FMI libera mais 2,9 bilh\\u00F5es para Portugal http://t.co/WoEfgKeR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:58 +0000", "from_user": "WilzaMilagre", "from_user_id": 437593397, "from_user_id_str": "437593397", "from_user_name": "wilza milagre coelho", "geo": null, "id": 148837244189413380, "id_str": "148837244189413377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "http://t.co/Le3APcde", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:57 +0000", "from_user": "KiraGestPriv", "from_user_id": 425154712, "from_user_id_str": "425154712", "from_user_name": "Kira Gestion Priv\\u00E9e", "geo": null, "id": 148837239726682100, "id_str": "148837239726682112", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @lemondefr: Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/zeOt21vW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:52 +0000", "from_user": "DailyFXTeam", "from_user_id": 28366310, "from_user_id_str": "28366310", "from_user_name": "DailyFXTeamMember", "geo": null, "id": 148837217278754800, "id_str": "148837217278754817", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1266884129/twitter-dailyfx_team_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266884129/twitter-dailyfx_team_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Greek Fin Min says Greece, Portugal and Ireland are not participating in the EU's plans to lend to the IMF.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:49 +0000", "from_user": "RaulVC_Abo", "from_user_id": 322896268, "from_user_id_str": "322896268", "from_user_name": "R. V\\u00E1zquez Carneiro", "geo": null, "id": 148837204792324100, "id_str": "148837204792324096", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1512944042/PERFIL_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1512944042/PERFIL_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#noticias FMI autoriza nuevo tramo de ayuda a Portugal de 2.900 millones: http://t.co/TURAR4ep #inversion", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:48 +0000", "from_user": "Alexandre_Pinto", "from_user_id": 36126027, "from_user_id_str": "36126027", "from_user_name": "Alexandre Pinto", "geo": null, "id": 148837200644153340, "id_str": "148837200644153345", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1372055359/Alex_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1372055359/Alex_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "Flash dance in Lisbon - Video http://t.co/rbVMnK38 #Marketing #Portugal #Optimus", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:48:44 +0000", "from_user": "fschulze", "from_user_id": 16039499, "from_user_id_str": "16039499", "from_user_name": "Florian Schulze", "geo": null, "id": 148837181950144500, "id_str": "148837181950144512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1463268223/3-eyed-smiley-1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1463268223/3-eyed-smiley-1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:43 +0000", "from_user": "CarlosIMedina20", "from_user_id": 142485140, "from_user_id_str": "142485140", "from_user_name": "Carlos Ivan Medina", "geo": null, "id": 148837179836207100, "id_str": "148837179836207104", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697516163/rostrodecristo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697516163/rostrodecristo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Te\\u00F3filo Guti\\u00E9rrez ir\\u00EDa al Porto de Portugal y Bacca a Newell's seg\\u00FAn algunos periodistas, esperemos confirmaci\\u00F3n de ambos clubes.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:41 +0000", "from_user": "Juanmi_News", "from_user_id": 280477631, "from_user_id_str": "280477631", "from_user_name": "Juan Miguel Garrido", "geo": null, "id": 148837170659082240, "id_str": "148837170659082241", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1425787036/OrlaJuanMi1_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1425787036/OrlaJuanMi1_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "PORTUGAL.AYUDAS ECON\\u00D3MICAS. El FMI autoriza el desembolso inmediato de 2.900 millones de \\u20AC a Portugal,informa Sandro Pozzi para elpais.es", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:37 +0000", "from_user": "yuwonowhy", "from_user_id": 17609113, "from_user_id_str": "17609113", "from_user_name": "yuwonowhy", "geo": null, "id": 148837154313879550, "id_str": "148837154313879553", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/847205955/why_20fx_201_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/847205955/why_20fx_201_normal.jpg", "source": "<a href="http://reuters.com/tools/mobile" rel="nofollow">Thomson Reuters News Pro</a>", "text": "IMF approves 2.9 billion euro tranche to Portugal http://t.co/b1U6n1ls", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:36 +0000", "from_user": "AlisonEmringer", "from_user_id": 419390838, "from_user_id_str": "419390838", "from_user_name": "alison emringer", "geo": null, "id": 148837149758853120, "id_str": "148837149758853120", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1653469111/IMG-20111019-00121_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653469111/IMG-20111019-00121_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @lemondefr: Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/zeOt21vW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:35 +0000", "from_user": "letalmeidaraujo", "from_user_id": 59008108, "from_user_id_str": "59008108", "from_user_name": "B I L E B I E B E R ", "geo": null, "id": 148837145883324400, "id_str": "148837145883324417", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1650651954/Paris2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650651954/Paris2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "isso \\u00E9 um absurdo . sem onda vei. http://t.co/PXTSuAIY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:31 +0000", "from_user": "spankcfc", "from_user_id": 247937612, "from_user_id_str": "247937612", "from_user_name": "mo", "geo": null, "id": 148837129194176500, "id_str": "148837129194176512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1235903637/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1235903637/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Ireland, Portugal, and Greece not in EU-IMF lending plan....so just Italy and Spain then?\\u201D self licking lollipop Comes 2 mind!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:28 +0000", "from_user": "zdig1", "from_user_id": 83364690, "from_user_id_str": "83364690", "from_user_name": "zdig1.biz", "geo": null, "id": 148837115294261250, "id_str": "148837115294261249", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1555861240/scaled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555861240/scaled_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s la... http://t.co/vYNmts7q #news", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:23 +0000", "from_user": "guicardoso94", "from_user_id": 441078663, "from_user_id_str": "441078663", "from_user_name": "Guilherme Cardoso", "geo": null, "id": 148837096487010300, "id_str": "148837096487010304", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "rihanna foi vitima de racismo em portugal!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:18 +0000", "from_user": "ARMAKdeODELOT", "from_user_id": 207305542, "from_user_id_str": "207305542", "from_user_name": "ARMAK de ODELOT", "geo": null, "id": 148837075012169730, "id_str": "148837075012169728", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1183805338/kingarmak_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1183805338/kingarmak_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Reino Unido sigue alarmando sobre un posible corralito en Espa\\u00F1a y Portugal http://t.co/t97UCgjG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:15 +0000", "from_user": "yuxthe", "from_user_id": 269823235, "from_user_id_str": "269823235", "from_user_name": "Sonny Dennison", "geo": null, "id": 148837060252418050, "id_str": "148837060252418048", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1281550795/533_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1281550795/533_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Homem morreu em fogo ocorrido em anexo de habita\\u00E7\\u00E3o http://t.co/gUkIDv6O", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:12 +0000", "from_user": "dearlittleworld", "from_user_id": 169101668, "from_user_id_str": "169101668", "from_user_name": "\\u3164\\u3164\\u3164 ", "geo": null, "id": 148837050878148600, "id_str": "148837050878148608", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687006511/tumblr_lvyn82wyKQ1qepmfuo2_250_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687006511/tumblr_lvyn82wyKQ1qepmfuo2_250_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "rihanna sofreu racismo em hotel de portugal KKKKKKKKKKKK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:02 +0000", "from_user": "dearlittleworld", "from_user_id": 169101668, "from_user_id_str": "169101668", "from_user_name": "\\u3164\\u3164\\u3164 ", "geo": null, "id": 148837007408373760, "id_str": "148837007408373760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687006511/tumblr_lvyn82wyKQ1qepmfuo2_250_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687006511/tumblr_lvyn82wyKQ1qepmfuo2_250_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/0qD6b7DH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:55 +0000", "from_user": "SnelVinden", "from_user_id": 354442400, "from_user_id_str": "354442400", "from_user_name": "Opdrachtplein", "geo": null, "id": 148836979184898050, "id_str": "148836979184898048", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1496939578/Opdrachtplein_-_logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1496939578/Opdrachtplein_-_logo_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF keurt lening aan Portugal goed: WASHINGTON - Het Internationaal Monetair Fonds (IMF) is maandag akkoord gega... http://t.co/JKOtTJF7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:54 +0000", "from_user": "luizgustavops_", "from_user_id": 322279296, "from_user_id_str": "322279296", "from_user_name": "Luiz Gustavo", "geo": null, "id": 148836973514207230, "id_str": "148836973514207234", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1408606964/PQAAAFJ-Jm2wFdyhXSxn_-NbgkbDimuQRA6I_rXKgHnZiDpz_2eMWIvbMsQYhmbhI9IAtThoCCwcSkz-hnr67hzIfcwAm1T1UMMKgv5JVIrvGIPfWYPRfRavEhDB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1408606964/PQAAAFJ-Jm2wFdyhXSxn_-NbgkbDimuQRA6I_rXKgHnZiDpz_2eMWIvbMsQYhmbhI9IAtThoCCwcSkz-hnr67hzIfcwAm1T1UMMKgv5JVIrvGIPfWYPRfRavEhDB_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "banda dejavu e dj juninho portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:50 +0000", "from_user": "_SilvijnJ", "from_user_id": 261314236, "from_user_id_str": "261314236", "from_user_name": "'Silvijn.", "geo": null, "id": 148836958687330300, "id_str": "148836958687330304", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1650691075/IMG00341-20111106-1304_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650691075/IMG00341-20111106-1304_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Miss volgend jaarr op vakantie naar portugal *", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:42 +0000", "from_user": "LucasProcpio", "from_user_id": 349889599, "from_user_id_str": "349889599", "from_user_name": "Lucas Silva Proc\\u00F3pio", "geo": null, "id": 148836922926706700, "id_str": "148836922926706689", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1613575773/of_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1613575773/of_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Legal, portugu\\u00EAs de Portugal.(@YouTube http://t.co/elBKquVb)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:31 +0000", "from_user": "VisitEuropeGems", "from_user_id": 179882335, "from_user_id_str": "179882335", "from_user_name": "visiteurope.com", "geo": null, "id": 148836876495749120, "id_str": "148836876495749121", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1106275279/twitter_ve_1_blue_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1106275279/twitter_ve_1_blue_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "visitportugal: Tap Portugal: December Chef was Henrique S\\u00E1 Pessoa \\n#Portugal #tap #food #chef\\n http://t.co/EFYEQQOz http://t.co/ECu4ekJe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:30 +0000", "from_user": "fredericogeorge", "from_user_id": 250151288, "from_user_id_str": "250151288", "from_user_name": "Frederico M. George", "geo": null, "id": 148836872624410620, "id_str": "148836872624410626", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1641883483/Frederico_Mira_GeorgeMINI_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641883483/Frederico_Mira_GeorgeMINI_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Reabertura Hot Clube de Portugal - saudades.antero@gmail.com - Gmail http://t.co/Gs8n7Ua9 via @addthis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:29 +0000", "from_user": "VisitEuropeGems", "from_user_id": 179882335, "from_user_id_str": "179882335", "from_user_name": "visiteurope.com", "geo": null, "id": 148836870686646270, "id_str": "148836870686646272", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1106275279/twitter_ve_1_blue_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1106275279/twitter_ve_1_blue_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "visitportugal: Envelhecimento define tipos de vinho do Porto \\nVia @folha_turismo\\n#Portugal #Vinho #Porto\\nhttp://... http://t.co/udInSVmB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:29 +0000", "from_user": "VisitEuropeGems", "from_user_id": 179882335, "from_user_id_str": "179882335", "from_user_name": "visiteurope.com", "geo": null, "id": 148836868878909440, "id_str": "148836868878909440", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1106275279/twitter_ve_1_blue_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1106275279/twitter_ve_1_blue_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "visitportugal: Conhe\\u00E7a os caminhos do vinho do Porto\\nvia @folha_turismo\\n#Portugal #Porto #Vinho\\nhttp://t.co/VzqClo5v http://t.co/ZJSaibSV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:22 +0000", "from_user": "la_meseta_uber", "from_user_id": 210944820, "from_user_id_str": "210944820", "from_user_name": "lamesetauberalles", "geo": null, "id": 148836838096896000, "id_str": "148836838096896000", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1367050608/1259213685_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1367050608/1259213685_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Pornosawa: Catalu\\u00F1a es como Portugal pero con menos pelo y m\\u00E1s dinero.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:11 +0000", "from_user": "PurefansNews", "from_user_id": 194502710, "from_user_id_str": "194502710", "from_user_name": "Purefans News", "geo": null, "id": 148836793423376400, "id_str": "148836793423376384", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1195472637/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1195472637/twitter_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Rihanna enceinte : un d\\u00E9gueuli au Portugal et c'est parti pour la rumeur: http://t.co/PcB859Iz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:05 +0000", "from_user": "Cheryl_MV", "from_user_id": 28456151, "from_user_id_str": "28456151", "from_user_name": "Cheryl Martinez", "geo": null, "id": 148836770153373700, "id_str": "148836770153373696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662319961/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662319961/image_normal.jpg", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:45 +0000", "from_user": "MaborMarketing", "from_user_id": 359292420, "from_user_id_str": "359292420", "from_user_name": "Mabor-marketing", "geo": null, "id": 148836682974756860, "id_str": "148836682974756864", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://no.nl/" rel="nofollow">No.nl</a>", "text": "IMF keurt lening aan Portugal goed - http://t.co/czqXgrIA - Het Internationaal Monetair Fonds (IMF) is maandag akkoord gegaan met een ni..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:44 +0000", "from_user": "adriana_brg", "from_user_id": 324299327, "from_user_id_str": "324299327", "from_user_name": "Adriana Simpson \\u2654", "geo": null, "id": 148836678499442700, "id_str": "148836678499442688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1625789536/390902_153926378038676_100002639446641_232617_2118205653_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1625789536/390902_153926378038676_100002639446641_232617_2118205653_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@CodySimpson Cody Simpson come to Portugal, please.\\nI love you <3<3<3", "to_user": "CodySimpson", "to_user_id": 79650494, "to_user_id_str": "79650494", "to_user_name": "Cody Simpson", "in_reply_to_status_id": 148242112813608960, "in_reply_to_status_id_str": "148242112813608961"}, +{"created_at": "Mon, 19 Dec 2011 18:46:41 +0000", "from_user": "DJCHUS", "from_user_id": 50225386, "from_user_id_str": "50225386", "from_user_name": "Chus L. Esteban", "geo": null, "id": 148836667191607300, "id_str": "148836667191607297", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1626330185/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626330185/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@DJBORISNYC Glad to heard! Yes im also played in portugal and rocked tha place! We finally got it papa! Cant wait for release date!!!!", "to_user": "DJBORISNYC", "to_user_id": 90678898, "to_user_id_str": "90678898", "to_user_name": "BORIS NYC ", "in_reply_to_status_id": 148802774279262200, "in_reply_to_status_id_str": "148802774279262209"}, +{"created_at": "Mon, 19 Dec 2011 18:46:39 +0000", "from_user": "guii_almeiiida", "from_user_id": 132957295, "from_user_id_str": "132957295", "from_user_name": "G.Almeida", "geo": null, "id": 148836657540505600, "id_str": "148836657540505601", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1642207714/g_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642207714/g_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Acho que acabei de receber uma liga\\u00E7\\u00E3o vinda de Portugal !! #FREAK ... =S", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:36 +0000", "from_user": "nieuwsdiscussie", "from_user_id": 335892690, "from_user_id_str": "335892690", "from_user_name": "Nieuws discussie", "geo": null, "id": 148836645746118660, "id_str": "148836645746118657", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1443949112/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1443949112/logo_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF keurt lening aan Portugal goed http://t.co/2XEBjcSf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:34 +0000", "from_user": "DJROBSWIFT", "from_user_id": 27975655, "from_user_id_str": "27975655", "from_user_name": "The Arch", "geo": null, "id": 148836637789532160, "id_str": "148836637789532161", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1496566576/IMG00802-20101011-2222_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1496566576/IMG00802-20101011-2222_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@Shugah I loved Portugal and their people welcomed me with open arms.", "to_user": "Shugah", "to_user_id": 24470814, "to_user_id_str": "24470814", "to_user_name": "Billie Jean", "in_reply_to_status_id": 148823342651146240, "in_reply_to_status_id_str": "148823342651146242"}, +{"created_at": "Mon, 19 Dec 2011 18:46:33 +0000", "from_user": "danielacatiane", "from_user_id": 326248479, "from_user_id_str": "326248479", "from_user_name": "daniela catiane", "geo": null, "id": 148836636262793200, "id_str": "148836636262793216", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1478456546/cora__es_amigos_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1478456546/cora__es_amigos_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@CarolBatista14 @SandraM_RBD @alinegomespk @Vondyduleucker @jujuCcelim @Anevondy a sandrinha mora em portugal ela \\u00E9 internacional kkkkkkkkk", "to_user": "CarolBatista14", "to_user_id": 311798015, "to_user_id_str": "311798015", "to_user_name": "\\u262ECAROL_M\\u00AA YSABELLE\\u262E ", "in_reply_to_status_id": 148836436647481340, "in_reply_to_status_id_str": "148836436647481346"}, +{"created_at": "Mon, 19 Dec 2011 18:46:20 +0000", "from_user": "iaraLV", "from_user_id": 398762631, "from_user_id_str": "398762631", "from_user_name": "Iara Lima", "geo": null, "id": 148836581292257280, "id_str": "148836581292257280", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1664763334/381029_202877339793120_100002125654664_457472_1842453565_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664763334/381029_202877339793120_100002125654664_457472_1842453565_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Assistir um seriado com legenda em Portugues(de Portugal). Daora a vida --'", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:16 +0000", "from_user": "CookiesForAri", "from_user_id": 431040774, "from_user_id_str": "431040774", "from_user_name": "Mariana Grande", "geo": null, "id": 148836562547916800, "id_str": "148836562547916801", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701857523/tumblr_lwat75kCg11qi0pfdo1_250_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701857523/tumblr_lwat75kCg11qi0pfdo1_250_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ArianaGrande When you come to Portugal , Please answer me :D \\nThanks. Follow me Please :D Love you :) #GrandeLove <333 Love you !8", "to_user": "ArianaGrande", "to_user_id": 34507480, "to_user_id_str": "34507480", "to_user_name": "Ariana Grande"}, +{"created_at": "Mon, 19 Dec 2011 18:46:11 +0000", "from_user": "CookiesForAri", "from_user_id": 431040774, "from_user_id_str": "431040774", "from_user_name": "Mariana Grande", "geo": null, "id": 148836543396724740, "id_str": "148836543396724736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701857523/tumblr_lwat75kCg11qi0pfdo1_250_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701857523/tumblr_lwat75kCg11qi0pfdo1_250_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ArianaGrande When you come to Portugal , Please answer me :D \\nThanks. Follow me Please :D Love you :) #GrandeLove <333 Love you !7", "to_user": "ArianaGrande", "to_user_id": 34507480, "to_user_id_str": "34507480", "to_user_name": "Ariana Grande"}, +{"created_at": "Mon, 19 Dec 2011 18:46:07 +0000", "from_user": "CookiesForAri", "from_user_id": 431040774, "from_user_id_str": "431040774", "from_user_name": "Mariana Grande", "geo": null, "id": 148836523050147840, "id_str": "148836523050147842", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701857523/tumblr_lwat75kCg11qi0pfdo1_250_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701857523/tumblr_lwat75kCg11qi0pfdo1_250_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ArianaGrande When you come to Portugal , Please answer me :D \\nThanks. Follow me Please :D Love you :) #GrandeLove <333 Love you !6", "to_user": "ArianaGrande", "to_user_id": 34507480, "to_user_id_str": "34507480", "to_user_name": "Ariana Grande"}, +{"created_at": "Mon, 19 Dec 2011 18:46:03 +0000", "from_user": "CookiesForAri", "from_user_id": 431040774, "from_user_id_str": "431040774", "from_user_name": "Mariana Grande", "geo": null, "id": 148836507954851840, "id_str": "148836507954851840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701857523/tumblr_lwat75kCg11qi0pfdo1_250_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701857523/tumblr_lwat75kCg11qi0pfdo1_250_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ArianaGrande When you come to Portugal , Please answer me :D \\nThanks. Follow me Please :D Love you :) #GrandeLove <333 Love you !5", "to_user": "ArianaGrande", "to_user_id": 34507480, "to_user_id_str": "34507480", "to_user_name": "Ariana Grande"}, +{"created_at": "Mon, 19 Dec 2011 18:46:02 +0000", "from_user": "NCagnati", "from_user_id": 94609777, "from_user_id_str": "94609777", "from_user_name": "Natacha Cagnati", "geo": null, "id": 148836504293220350, "id_str": "148836504293220352", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1531254547/49145_100000531971421_261_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1531254547/49145_100000531971421_261_n_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#LeMonde Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/MT3A6FoU via @lemondefr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:02 +0000", "from_user": "NewsEnContinu", "from_user_id": 212884671, "from_user_id_str": "212884671", "from_user_name": "Derni\\u00E8res nouvelles ", "geo": null, "id": 148836503605346300, "id_str": "148836503605346304", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1161655949/news.jpg_300___300_Pixel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1161655949/news.jpg_300___300_Pixel_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/vqXgclUY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:02 +0000", "from_user": "shivkk10", "from_user_id": 116709434, "from_user_id_str": "116709434", "from_user_name": "Shiv", "geo": null, "id": 148836503370477570, "id_str": "148836503370477568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1526107511/avatar_normal.JPEG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1526107511/avatar_normal.JPEG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:01 +0000", "from_user": "pollyackroyd", "from_user_id": 32763551, "from_user_id_str": "32763551", "from_user_name": "Polly Ackroyd", "geo": null, "id": 148836497997570050, "id_str": "148836497997570048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681795659/PICT0199_2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681795659/PICT0199_2__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:56 +0000", "from_user": "CookiesForAri", "from_user_id": 431040774, "from_user_id_str": "431040774", "from_user_name": "Mariana Grande", "geo": null, "id": 148836479769133060, "id_str": "148836479769133057", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701857523/tumblr_lwat75kCg11qi0pfdo1_250_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701857523/tumblr_lwat75kCg11qi0pfdo1_250_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ArianaGrande When you come to Portugal , Please answer me :D \\nThanks. Follow me Please :D Love you :) #GrandeLove <333 Love you !4", "to_user": "ArianaGrande", "to_user_id": 34507480, "to_user_id_str": "34507480", "to_user_name": "Ariana Grande"}, +{"created_at": "Mon, 19 Dec 2011 18:45:56 +0000", "from_user": "wwwerte", "from_user_id": 364265049, "from_user_id_str": "364265049", "from_user_name": "werteweg", "geo": null, "id": 148836476933779460, "id_str": "148836476933779457", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1519253378/NETBAES.Goldeuro_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1519253378/NETBAES.Goldeuro_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Rettungspaket: IWF gibt dritte Portugal-Tranche frei: Der Internationale W\\u00E4hrungsfonds ist mit den Sparanstrengu... http://t.co/PxhlwXyO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:52 +0000", "from_user": "CookiesForAri", "from_user_id": 431040774, "from_user_id_str": "431040774", "from_user_name": "Mariana Grande", "geo": null, "id": 148836462807355400, "id_str": "148836462807355392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701857523/tumblr_lwat75kCg11qi0pfdo1_250_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701857523/tumblr_lwat75kCg11qi0pfdo1_250_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ArianaGrande When you come to Portugal , Please answer me :D \\nThanks. Follow me Please :D Love you :) #GrandeLove <333 Love you !3", "to_user": "ArianaGrande", "to_user_id": 34507480, "to_user_id_str": "34507480", "to_user_name": "Ariana Grande"}, +{"created_at": "Mon, 19 Dec 2011 18:45:52 +0000", "from_user": "DavidCllx", "from_user_id": 235149041, "from_user_id_str": "235149041", "from_user_name": "David Cllx", "geo": null, "id": 148836462627008500, "id_str": "148836462627008512", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685927830/David__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685927830/David__normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @lemondefr: Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/zeOt21vW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:47 +0000", "from_user": "CookiesForAri", "from_user_id": 431040774, "from_user_id_str": "431040774", "from_user_name": "Mariana Grande", "geo": null, "id": 148836441517064200, "id_str": "148836441517064192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701857523/tumblr_lwat75kCg11qi0pfdo1_250_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701857523/tumblr_lwat75kCg11qi0pfdo1_250_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ArianaGrande When you come to Portugal , Please answer me :D \\nThanks. Follow me Please :D Love you :) #GrandeLove <333 Love you !2", "to_user": "ArianaGrande", "to_user_id": 34507480, "to_user_id_str": "34507480", "to_user_name": "Ariana Grande"}, +{"created_at": "Mon, 19 Dec 2011 18:45:41 +0000", "from_user": "danielacatiane", "from_user_id": 326248479, "from_user_id_str": "326248479", "from_user_name": "daniela catiane", "geo": null, "id": 148836415625633800, "id_str": "148836415625633796", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1478456546/cora__es_amigos_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1478456546/cora__es_amigos_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SandraM_RBD @CarolBatista14 @alinegomespk @Vondyduleucker @jujuCcelim @Anevondy kkkkkkkkkkkkkkkkk pegar um aviao! sandrinha portugal \\u00E9 bom?", "to_user": "SandraM_RBD", "to_user_id": 409592464, "to_user_id_str": "409592464", "to_user_name": "sandra martins", "in_reply_to_status_id": 148836103615545340, "in_reply_to_status_id_str": "148836103615545344"}, +{"created_at": "Mon, 19 Dec 2011 18:45:35 +0000", "from_user": "Pornosawa", "from_user_id": 56080802, "from_user_id_str": "56080802", "from_user_name": "Sr. Sawa", "geo": null, "id": 148836390199767040, "id_str": "148836390199767040", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1591909048/Ok_bigger_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591909048/Ok_bigger_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Catalu\\u00F1a es como Portugal pero con menos pelo y m\\u00E1s dinero.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:34 +0000", "from_user": "lorenzo_60", "from_user_id": 169865107, "from_user_id_str": "169865107", "from_user_name": "\\uF8FFlorenzo\\uF8FF", "geo": null, "id": 148836387062431740, "id_str": "148836387062431744", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1297617980/cafe_apple_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1297617980/cafe_apple_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s la Gr\\u00E8ce... http://t.co/2LZJPG8B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:33 +0000", "from_user": "leondiwrnodau", "from_user_id": 145750183, "from_user_id_str": "145750183", "from_user_name": "Leonardo Dias", "geo": null, "id": 148836384004780030, "id_str": "148836384004780033", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1684242178/troll_face_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684242178/troll_face_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s la Gr\\u00E8ce... http://t.co/kFxqNGyG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:31 +0000", "from_user": "AllNiouzes", "from_user_id": 404677009, "from_user_id_str": "404677009", "from_user_name": "AllNiouzes", "geo": null, "id": 148836375314173950, "id_str": "148836375314173953", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1621901816/allniouzes_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621901816/allniouzes_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "A la Une : Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr... http://t.co/mv1BPPTT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:31 +0000", "from_user": "RaiaDiplomatica", "from_user_id": 94857687, "from_user_id_str": "94857687", "from_user_name": "Raia Diplom\\u00E1tica", "geo": null, "id": 148836373443514370, "id_str": "148836373443514368", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1460666089/tw_11039440_1311629640_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1460666089/tw_11039440_1311629640_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Breve reflex\\u00E3o sobre um Portugal global (1\\u00AA parte) \\u00AB Raia Diplom\\u00E1tica http://t.co/wUEbNQOu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:30 +0000", "from_user": "Kabs_Official", "from_user_id": 106267624, "from_user_id_str": "106267624", "from_user_name": "kabs Souar\\u00E9", "geo": null, "id": 148836371136643070, "id_str": "148836371136643072", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700408902/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700408902/image_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/1uIDOjO4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:30 +0000", "from_user": "biblionum", "from_user_id": 284190506, "from_user_id_str": "284190506", "from_user_name": "Formation Biblionum", "geo": null, "id": 148836368586522620, "id_str": "148836368586522625", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1673355643/jorge-luis-borges_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673355643/jorge-luis-borges_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal - http://t.co/1zDYBiCp http://t.co/bwnYJX56", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:29 +0000", "from_user": "VIENTxMExPOMMER", "from_user_id": 316979398, "from_user_id_str": "316979398", "from_user_name": "VIENTxMExPOMMER", "geo": null, "id": 148836367542140930, "id_str": "148836367542140929", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1633304037/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633304037/image_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s la Gr\\u00E8ce... http://t.co/JeH9Wa4l", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:29 +0000", "from_user": "biblionum", "from_user_id": 284190506, "from_user_id_str": "284190506", "from_user_name": "Formation Biblionum", "geo": null, "id": 148836366929756160, "id_str": "148836366929756160", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1673355643/jorge-luis-borges_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673355643/jorge-luis-borges_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/NdtyEEhH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:29 +0000", "from_user": "X_Pride", "from_user_id": 373953175, "from_user_id_str": "373953175", "from_user_name": "XPride", "geo": null, "id": 148836365914738700, "id_str": "148836365914738688", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1606801478/big_culo_maschile_12_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606801478/big_culo_maschile_12_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Rihanna sofre racismo em Portugal: Rihanna ficou doida no Twitter, por causa de um homem que teria feito declara... http://t.co/jPFF9odk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:29 +0000", "from_user": "NelsonSheep", "from_user_id": 40680788, "from_user_id_str": "40680788", "from_user_name": "Nelson Sheep", "geo": null, "id": 148836365071679500, "id_str": "148836365071679488", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1591760397/Ab6Ws_xCMAITVxA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591760397/Ab6Ws_xCMAITVxA_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Rihanna sofre racismo em Portugal: Rihanna ficou doida no Twitter, por causa de um homem que teria feito declara... http://t.co/Srd7nbQm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:28 +0000", "from_user": "formargos2010", "from_user_id": 223631981, "from_user_id_str": "223631981", "from_user_name": "Formation Argonautes", "geo": null, "id": 148836363322654720, "id_str": "148836363322654720", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s la Gr\\u00E8ce... http://t.co/cP8lddkC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:28 +0000", "from_user": "oestadodoparana", "from_user_id": 250353684, "from_user_id_str": "250353684", "from_user_name": "O Estado do Paran\\u00E1", "geo": null, "id": 148836363234574340, "id_str": "148836363234574336", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1283113508/estado_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1283113508/estado_twitter_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "FMI libera 2,9 bi de euros para Portugal http://t.co/bzoEnimK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:28 +0000", "from_user": "ForSaleiAlgarve", "from_user_id": 386105591, "from_user_id_str": "386105591", "from_user_name": "For Sale in Algarve", "geo": null, "id": 148836361917562880, "id_str": "148836361917562882", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1575941712/For_Sale_In_Algarve_Twitter_Logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575941712/For_Sale_In_Algarve_Twitter_Logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Apartment for sale in Portimao Praia da Rocha | 1 bedroom ~\\nFor-Sale-in-Algarve ~ #Algarve #Portugal - http://t.co/Oy3oOGMd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:28 +0000", "from_user": "FlashPresse", "from_user_id": 119693093, "from_user_id_str": "119693093", "from_user_name": "Flash Presse", "geo": null, "id": 148836360772522000, "id_str": "148836360772521984", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1392747630/FP_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1392747630/FP_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/SF81XkOM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:27 +0000", "from_user": "Superpride_", "from_user_id": 128892502, "from_user_id_str": "128892502", "from_user_name": "Superpride", "geo": null, "id": 148836358134312960, "id_str": "148836358134312960", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/957022001/twitter_SP_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/957022001/twitter_SP_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Rihanna sofre racismo em Portugal: Rihanna ficou doida no Twitter, por causa de um homem que teria feito declara... http://t.co/DQLTV9xO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:27 +0000", "from_user": "1casaecohomes", "from_user_id": 17333475, "from_user_id_str": "17333475", "from_user_name": "Cristina Sanchez", "geo": null, "id": 148836357945569280, "id_str": "148836357945569280", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1602663768/1Casa_Twitter_Icon_L_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1602663768/1Casa_Twitter_Icon_L_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Properties By Robert Edwards ~ Cerro Novo ~ #Portugal - Sociedade de\\nMedico #Imobiliaria Lda on Global viewr - http://t.co/HHUILiPm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:26 +0000", "from_user": "soptunna", "from_user_id": 48296261, "from_user_id_str": "48296261", "from_user_name": "Lieke", "geo": null, "id": 148836351230476300, "id_str": "148836351230476288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1673553180/374798_2759949443598_1403658556_33140101_858817661_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673553180/374798_2759949443598_1403658556_33140101_858817661_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "EPIC GO WATCH THIS! RT @YCfansinworld: @Yellowcard - Rough Landing Holly - Live in Portugal. Just: WOW! http://t.co/DWsxfdsk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:24 +0000", "from_user": "ActuFrance", "from_user_id": 67394398, "from_user_id_str": "67394398", "from_user_name": "ActuFrance", "geo": null, "id": 148836343399723000, "id_str": "148836343399723009", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/430013963/2889619236_0f95ded0a4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/430013963/2889619236_0f95ded0a4_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s la Gr\\u00E8ce... http://t.co/EjZ8sdB6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:24 +0000", "from_user": "fantasy77120", "from_user_id": 119844291, "from_user_id_str": "119844291", "from_user_name": "Adrien FRONTENAUD", "geo": null, "id": 148836343194206200, "id_str": "148836343194206208", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/732503816/Adrien_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/732503816/Adrien_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s la Gr\\u00E8ce... http://t.co/THmRXTD7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:23 +0000", "from_user": "affairesfrance", "from_user_id": 62947797, "from_user_id_str": "62947797", "from_user_name": "Soci\\u00E9t\\u00E9s Fran\\u00E7ais", "geo": null, "id": 148836342539878400, "id_str": "148836342539878400", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/348318454/World-Business-Finder_FR_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/348318454/World-Business-Finder_FR_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "[LE MONDE]: Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro ap... http://t.co/TjsKadCD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:23 +0000", "from_user": "Iretidee99", "from_user_id": 239070619, "from_user_id_str": "239070619", "from_user_name": "IretidayoZaccheaus", "geo": null, "id": 148836340191080450, "id_str": "148836340191080448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695257386/IMG-20111001-00810_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695257386/IMG-20111001-00810_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @DASHGlobal: @KimKardashian is almost at 12,000,000 followers on Twitter. That's more than the population of Greece, Portugal and Sweden! #DASHGlobal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:23 +0000", "from_user": "aspalainz", "from_user_id": 71355430, "from_user_id_str": "71355430", "from_user_name": "aspalainz", "geo": null, "id": 148836339238965250, "id_str": "148836339238965249", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s la Gr\\u00E8ce... http://t.co/Ro08xvuI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:21 +0000", "from_user": "CookiesForAri", "from_user_id": 431040774, "from_user_id_str": "431040774", "from_user_name": "Mariana Grande", "geo": null, "id": 148836334059003900, "id_str": "148836334059003906", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701857523/tumblr_lwat75kCg11qi0pfdo1_250_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701857523/tumblr_lwat75kCg11qi0pfdo1_250_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ArianaGrande When you come to Portugal , Please answer me :D \\nThanks. Follow me Please :D Love you :) #GrandeLove <333 Love you !1", "to_user": "ArianaGrande", "to_user_id": 34507480, "to_user_id_str": "34507480", "to_user_name": "Ariana Grande"}, +{"created_at": "Mon, 19 Dec 2011 18:45:13 +0000", "from_user": "SocMeDotMe", "from_user_id": 371995419, "from_user_id_str": "371995419", "from_user_name": "Karl Lingenfelder", "geo": null, "id": 148836298768125950, "id_str": "148836298768125952", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1546120426/SocMe_Twitter_Icon_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546120426/SocMe_Twitter_Icon_2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Apartment for sale in Portimao Praia da Rocha | 1 bedroom ~\\nFor-Sale-in-Algarve ~ #Algarve #Portugal - http://t.co/fn46aqAQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:08 +0000", "from_user": "vitriolica", "from_user_id": 77826352, "from_user_id_str": "77826352", "from_user_name": "Vitri\\u00F3lica CORRosiva", "geo": null, "id": 148836278111178750, "id_str": "148836278111178752", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1380712813/twitt-coco3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1380712813/twitt-coco3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "VERGONHA para Portugal mas em especial para a CP! http://t.co/VTME2e0E", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:03 +0000", "from_user": "OPINIONLATINA", "from_user_id": 212958513, "from_user_id_str": "212958513", "from_user_name": "GUILLERMO LARSEN", "geo": null, "id": 148836257726861300, "id_str": "148836257726861312", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1161819054/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1161819054/images_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "FMI aprueba tramo de rescate a Portugal http://t.co/2DVS9N1N", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:03 +0000", "from_user": "Candidman", "from_user_id": 16920029, "from_user_id_str": "16920029", "from_user_name": "Candidman \\u2714", "geo": null, "id": 148836257311637500, "id_str": "148836257311637504", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1621436117/candidman_160x160_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621436117/candidman_160x160_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#Econom\\u00EDa FMI aprueba tramo de rescate a Portugal http://t.co/U1L5PzSG \\u27A8 @cnnexpansion", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:03 +0000", "from_user": "LarsenGuillermo", "from_user_id": 288479893, "from_user_id_str": "288479893", "from_user_name": "Guillermo Larsen", "geo": null, "id": 148836257160634370, "id_str": "148836257160634368", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1327084601/Picture_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1327084601/Picture_3_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "FMI aprueba tramo de rescate a Portugal http://t.co/9d0yhaLu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:56 +0000", "from_user": "CookiesForAri", "from_user_id": 431040774, "from_user_id_str": "431040774", "from_user_name": "Mariana Grande", "geo": null, "id": 148836227737583600, "id_str": "148836227737583617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701857523/tumblr_lwat75kCg11qi0pfdo1_250_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701857523/tumblr_lwat75kCg11qi0pfdo1_250_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ArianaGrande Ariana , When you come to Portugal , Please answer me :D \\nThanks. Follow me Please :D Love you :) #GrandeLove <333 Love you !", "to_user": "ArianaGrande", "to_user_id": 34507480, "to_user_id_str": "34507480", "to_user_name": "Ariana Grande", "in_reply_to_status_id": 148835051101093900, "in_reply_to_status_id_str": "148835051101093888"}, +{"created_at": "Mon, 19 Dec 2011 18:44:56 +0000", "from_user": "CrisDalVesco", "from_user_id": 44032595, "from_user_id_str": "44032595", "from_user_name": "Cris", "geo": null, "id": 148836227011969020, "id_str": "148836227011969024", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1628251442/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628251442/image_normal.jpg", "source": "<a href="http://www.publico.pt" rel="nofollow">AutoTweetPublico</a>", "text": "RT @Publico: Telefones fixos sobem em Portugal e atingem 4,5 milh\\u00F5es no 3.\\u00BA trimestre http://t.co/GJOQfJHE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:51 +0000", "from_user": "kadeokanoww", "from_user_id": 368055895, "from_user_id_str": "368055895", "from_user_name": "El MaHaRajah", "geo": null, "id": 148836205172240400, "id_str": "148836205172240384", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699508863/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699508863/image_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @lemondefr: Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/zeOt21vW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:43 +0000", "from_user": "Portugal_Glocal", "from_user_id": 18055408, "from_user_id_str": "18055408", "from_user_name": "Portugal Glocal", "geo": null, "id": 148836173400383500, "id_str": "148836173400383488", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1359510627/Logo_Portugal_Glocal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1359510627/Logo_Portugal_Glocal_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Ad\\u00E3o e Eva pagaram muito caro por uma ma\\u00E7\\u00E3.\\n\\nE voc\\u00EA... tamb\\u00E9m?????\\n\\nPortugal sem Prozac\\nProcuramos gente positiva... http://t.co/72z6nAiJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:43 +0000", "from_user": "Adam_Crouch", "from_user_id": 303594664, "from_user_id_str": "303594664", "from_user_name": "Adam Crouch", "geo": null, "id": 148836171022221300, "id_str": "148836171022221312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1595096484/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1595096484/twitter_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Bigdsoccer: Ruben Luna will be heading to Portugal to practice with Sporting Lisbon in January. Very cool opportunity for the young Dallas forward.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:42 +0000", "from_user": "jeisamarjorie", "from_user_id": 281528314, "from_user_id_str": "281528314", "from_user_name": "jeisamarjorie", "geo": null, "id": 148836170216898560, "id_str": "148836170216898560", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1664108231/lourassa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664108231/lourassa_normal.jpg", "source": "<a href="http://www.yahoo.com" rel="nofollow">Yahoo!</a>", "text": "replied to jeisamajorie's comment: Acho que se as pessoas soubessem da perseguicao do passado, pudessem por a m... http://t.co/uACiyhaR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:32 +0000", "from_user": "Mortiman", "from_user_id": 374152138, "from_user_id_str": "374152138", "from_user_name": "T. Mortimer", "geo": null, "id": 148836127292403700, "id_str": "148836127292403712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1544445916/Bear2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544445916/Bear2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Cold to the bone. RT @djfxtrader : Greek FinMin: #Greece, #Ireland, #Portugal Excluded From IMF Boost [Dow Jones] #imf #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:27 +0000", "from_user": "LaraSMC", "from_user_id": 441069532, "from_user_id_str": "441069532", "from_user_name": "Lara Sofia Martins C", "geo": null, "id": 148836105704312830, "id_str": "148836105704312833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@rihanna Rihanna although the racism episode, you like Portugal? We love you and love your show and hope you come back", "to_user": "rihanna", "to_user_id": 79293791, "to_user_id_str": "79293791", "to_user_name": "Rihanna"}, +{"created_at": "Mon, 19 Dec 2011 18:44:17 +0000", "from_user": "jaimegrafick", "from_user_id": 18938602, "from_user_id_str": "18938602", "from_user_name": "Jaime Lopes", "geo": null, "id": 148836064121978880, "id_str": "148836064121978880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/387808542/retrato_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/387808542/retrato_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "poster for the day of the Romanian culture in Portugal @dribbble: http://t.co/wNVoQbgS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:09 +0000", "from_user": "BBrown1868", "from_user_id": 380262239, "from_user_id_str": "380262239", "from_user_name": "Brenden Brown", "geo": null, "id": 148836030978596860, "id_str": "148836030978596865", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694977558/alecs_sleep_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694977558/alecs_sleep_normal.JPG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@stillblazingtho does it bother anyone else that people can shoot up on portugal's streets, and we cant smoke a joint in our living room? RT", "to_user": "stillblazingtho", "to_user_id": 253322962, "to_user_id_str": "253322962", "to_user_name": "Weed Tweets\\u2122"}, +{"created_at": "Mon, 19 Dec 2011 18:44:09 +0000", "from_user": "MARKETRISER", "from_user_id": 329695511, "from_user_id_str": "329695511", "from_user_name": "MARKETRISER.COM", "geo": null, "id": 148836028180987900, "id_str": "148836028180987905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1427519217/MR-Twitter-Logo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1427519217/MR-Twitter-Logo_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF releases 2.9 bn euros to Portugal: IMF said it would release 2.9 billion euros ($3.8 billion) to Portugal in the newest installme...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:03 +0000", "from_user": "computerartspt", "from_user_id": 192979775, "from_user_id_str": "192979775", "from_user_name": "ComputerArtsPortugal", "geo": null, "id": 148836004604809200, "id_str": "148836004604809216", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1400489661/Computer-arts_logo-01_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1400489661/Computer-arts_logo-01_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "A prenda perfeita para este Natal - assinatura anua| a 50,00\\u20AC Computer Arts Portugal http://t.co/I2H5Uc73 via @computerartspt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:02 +0000", "from_user": "FatimaRD", "from_user_id": 266712846, "from_user_id_str": "266712846", "from_user_name": "Fatima Rolo Duarte", "geo": null, "id": 148835997965234180, "id_str": "148835997965234176", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1275555020/twitterefe_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1275555020/twitterefe_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Super ministro portugu\\u00EAs Ant\\u00F3nio Ribeiro Ferreira, Portugal, 2011 http://t.co/oHTV158g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:57 +0000", "from_user": "PlayYankPlay", "from_user_id": 83119890, "from_user_id_str": "83119890", "from_user_name": "Yana", "geo": null, "id": 148835980168790000, "id_str": "148835980168790016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1576943685/x_339026d0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576943685/x_339026d0_normal.jpg", "source": "<a href="http://www.postcrossing.com" rel="nofollow">Postcrossing Project</a>", "text": "Received a #postcrossing postcard from Portugal - http://t.co/i6mVhfjf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:49 +0000", "from_user": "petroniovleitao", "from_user_id": 145728801, "from_user_id_str": "145728801", "from_user_name": "petronio leitao", "geo": null, "id": 148835945838411780, "id_str": "148835945838411776", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1172565987/Photo_on_2010-11-21_at_19.57__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1172565987/Photo_on_2010-11-21_at_19.57__2_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Porto, em Portugal, tem muitos apreciadores no Brasil http://t.co/aPQ0NNAz #folha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:46 +0000", "from_user": "SEO_logique34", "from_user_id": 137327640, "from_user_id_str": "137327640", "from_user_name": "Webmarketing SEO", "geo": null, "id": 148835934740291600, "id_str": "148835934740291584", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#permis Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s ... http://t.co/ZGFVrw8X", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:45 +0000", "from_user": "lubayle", "from_user_id": 181980578, "from_user_id_str": "181980578", "from_user_name": "lubayle", "geo": null, "id": 148835929363185660, "id_str": "148835929363185665", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1486232011/Djibouti_6903_-_Version_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1486232011/Djibouti_6903_-_Version_2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s la Gr\\u00E8ce... http://t.co/MIIWMd1s", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:45 +0000", "from_user": "LeMicroscope", "from_user_id": 387722324, "from_user_id_str": "387722324", "from_user_name": "dendoncker harald", "geo": null, "id": 148835927576428540, "id_str": "148835927576428547", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1580058507/microscope_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580058507/microscope_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/IbQ4PfiV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:45 +0000", "from_user": "tevoldevtt", "from_user_id": 243646842, "from_user_id_str": "243646842", "from_user_name": "Jean Dupond", "geo": null, "id": 148835927513509900, "id_str": "148835927513509888", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s la Gr\\u00E8ce... http://t.co/Fa45dsDO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:44 +0000", "from_user": "_ITMarketing", "from_user_id": 39571005, "from_user_id_str": "39571005", "from_user_name": "SEO & e-Marketing", "geo": null, "id": 148835924317450240, "id_str": "148835924317450240", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1272058885/funnycomp_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1272058885/funnycomp_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s la Gr\\u00E8ce... http://t.co/0U5Fn2jZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:44 +0000", "from_user": "SEO_Amigo", "from_user_id": 50766089, "from_user_id_str": "50766089", "from_user_name": "Rex Jarvis #LION", "geo": null, "id": 148835923340169200, "id_str": "148835923340169216", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1565375144/Picture1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1565375144/Picture1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s la Gr\\u00E8ce... http://t.co/KpEvdFsa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:43 +0000", "from_user": "elena800", "from_user_id": 304434505, "from_user_id_str": "304434505", "from_user_name": "elena ", "geo": null, "id": 148835922761351170, "id_str": "148835922761351168", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#permis Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s ... http://t.co/xAzDNkRI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:43 +0000", "from_user": "ylna805", "from_user_id": 304413016, "from_user_id_str": "304413016", "from_user_name": "elena", "geo": null, "id": 148835922648109060, "id_str": "148835922648109056", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1508286421/Tulips_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1508286421/Tulips_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#permis Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s ... http://t.co/BxuJ9xv5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:43 +0000", "from_user": "ylna728", "from_user_id": 297486985, "from_user_id_str": "297486985", "from_user_name": "r\\u00E9f\\u00E9rencement SEO", "geo": null, "id": 148835922564231170, "id_str": "148835922564231168", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1553133807/Tulips_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553133807/Tulips_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#permis Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s ... http://t.co/t5gkA322", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:43 +0000", "from_user": "ylna707", "from_user_id": 292999268, "from_user_id_str": "292999268", "from_user_name": "Montre occasion", "geo": null, "id": 148835922501320700, "id_str": "148835922501320705", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1508288166/Tulips_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1508288166/Tulips_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#permis Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s ... http://t.co/jnFKW86y", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:43:43 +0000", "from_user": "ylna707", "from_user_id": 292999268, "from_user_id_str": "292999268", "from_user_name": "Montre occasion", "geo": null, "id": 148835922501320700, "id_str": "148835922501320705", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1508288166/Tulips_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1508288166/Tulips_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#permis Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s ... http://t.co/jnFKW86y", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:43 +0000", "from_user": "ylna804", "from_user_id": 304393278, "from_user_id_str": "304393278", "from_user_name": "ylna804", "geo": null, "id": 148835922446778370, "id_str": "148835922446778368", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1553093636/Tulips_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553093636/Tulips_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#permis Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s ... http://t.co/m6sRNCzb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:43 +0000", "from_user": "Agence_web1", "from_user_id": 297335146, "from_user_id_str": "297335146", "from_user_name": "Agence r\\u00E9f\\u00E9rencement", "geo": null, "id": 148835922388074500, "id_str": "148835922388074496", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1350447917/165629_120520168018723_100001822221918_120243_8043365_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1350447917/165629_120520168018723_100001822221918_120243_8043365_n_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#permis Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s ... http://t.co/j10kRhXW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:43 +0000", "from_user": "fleursdomicile", "from_user_id": 292974788, "from_user_id_str": "292974788", "from_user_name": "Avocat Lyon", "geo": null, "id": 148835922375487500, "id_str": "148835922375487489", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1553186964/Tulips_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553186964/Tulips_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#permis Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s ... http://t.co/OdNAcGIq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:43 +0000", "from_user": "ylna57", "from_user_id": 143846441, "from_user_id_str": "143846441", "from_user_name": "elena", "geo": null, "id": 148835922320949250, "id_str": "148835922320949249", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1507901478/Hydrangeas_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1507901478/Hydrangeas_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#permis Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s ... http://t.co/LejyXrs6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:43 +0000", "from_user": "Adwords1Google", "from_user_id": 295647645, "from_user_id_str": "295647645", "from_user_name": "Google Adwords", "geo": null, "id": 148835922299981820, "id_str": "148835922299981824", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1345251421/google-adwords_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1345251421/google-adwords_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#permis Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s ... http://t.co/QLihZQOO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:43 +0000", "from_user": "logique_44", "from_user_id": 142654963, "from_user_id_str": "142654963", "from_user_name": "R\\u00E9f\\u00E9rencement Lyon ", "geo": null, "id": 148835922186739700, "id_str": "148835922186739712", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1553226838/Lighthouse_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553226838/Lighthouse_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#permis Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s ... http://t.co/PZefUWvD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:43 +0000", "from_user": "ylna59", "from_user_id": 144842203, "from_user_id_str": "144842203", "from_user_name": "elena", "geo": null, "id": 148835922136403970, "id_str": "148835922136403968", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1508262015/Tulips_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1508262015/Tulips_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#permis Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s ... http://t.co/clyPumZV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:43 +0000", "from_user": "Web_Marketing15", "from_user_id": 156676088, "from_user_id_str": "156676088", "from_user_name": "Webmarketing Google", "geo": null, "id": 148835922119630850, "id_str": "148835922119630848", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1553242746/Lighthouse_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553242746/Lighthouse_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#permis Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s ... http://t.co/I63yGB21", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:43 +0000", "from_user": "app_auditif", "from_user_id": 136204841, "from_user_id_str": "136204841", "from_user_name": "appareil auditif", "geo": null, "id": 148835922086072320, "id_str": "148835922086072320", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#permis Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s ... http://t.co/29nSupsQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:43 +0000", "from_user": "ylna56", "from_user_id": 143823366, "from_user_id_str": "143823366", "from_user_name": "elena", "geo": null, "id": 148835922073489400, "id_str": "148835922073489409", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1508272173/norvege_620x465_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1508272173/norvege_620x465_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#permis Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s ... http://t.co/hyqmuFMt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:43 +0000", "from_user": "artworkblognews", "from_user_id": 309819639, "from_user_id_str": "309819639", "from_user_name": "artworkblognews", "geo": null, "id": 148835921255600130, "id_str": "148835921255600129", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1379160131/berries030021_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1379160131/berries030021_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s la Gr\\u00E8ce... http://t.co/ZulKk7k1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:43 +0000", "from_user": "wahibaboujbel", "from_user_id": 255905342, "from_user_id_str": "255905342", "from_user_name": "Wahiba Boujbel", "geo": null, "id": 148835919498190850, "id_str": "148835919498190849", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s la Gr\\u00E8ce... http://t.co/HE7rycPG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:41 +0000", "from_user": "webnachrichten", "from_user_id": 156702879, "from_user_id_str": "156702879", "from_user_name": "Nachrichtenportal", "geo": null, "id": 148835912565014530, "id_str": "148835912565014528", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1585359308/clipp_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585359308/clipp_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Rettungspaket: IWF gibt dritte Portugal-Tranche frei http://t.co/Zds59qre #politik", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:36 +0000", "from_user": "Travelinq", "from_user_id": 195745687, "from_user_id_str": "195745687", "from_user_name": "Travelinq", "geo": null, "id": 148835892847587330, "id_str": "148835892847587328", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1132386149/app_1_108768475813712_1784_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1132386149/app_1_108768475813712_1784_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Marije gaat 16 t/m 25 juli 2012 op vakantie naar Albufeira \\u00BB Portugal http://t.co/90Fu7cOS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:36 +0000", "from_user": "vakantievriend", "from_user_id": 86151146, "from_user_id_str": "86151146", "from_user_name": "Vakantievrienden.nl", "geo": null, "id": 148835890595246080, "id_str": "148835890595246080", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1225338215/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225338215/logo_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Marije gaat 16 t/m 25 juli 2012 op vakantie naar Albufeira \\u00BB Portugal http://t.co/vYi1iZwO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:36 +0000", "from_user": "23Slater23", "from_user_id": 357710671, "from_user_id_str": "357710671", "from_user_name": "Slates", "geo": null, "id": 148835890515558400, "id_str": "148835890515558400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1619249682/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619249682/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Home from overseas Portugal stag do! Haven't a clue what day it is lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:36 +0000", "from_user": "Travelinq", "from_user_id": 195745687, "from_user_id_str": "195745687", "from_user_name": "Travelinq", "geo": null, "id": 148835889982881800, "id_str": "148835889982881793", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1132386149/app_1_108768475813712_1784_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1132386149/app_1_108768475813712_1784_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amy van de Wetering gaat 16 t/m 25 juli 2012 op vakantie naar Albufeira \\u00BB Portugal http://t.co/qhKeEuT9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:35 +0000", "from_user": "vakantievriend", "from_user_id": 86151146, "from_user_id_str": "86151146", "from_user_name": "Vakantievrienden.nl", "geo": null, "id": 148835888766521340, "id_str": "148835888766521344", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1225338215/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225338215/logo_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amy van de Wetering gaat 16 t/m 25 juli 2012 op vakantie naar Albufeira \\u00BB Portugal http://t.co/Za8n7Aii", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:31 +0000", "from_user": "JacekWierzbicki", "from_user_id": 270492072, "from_user_id_str": "270492072", "from_user_name": "Black Centaur", "geo": null, "id": 148835870823284740, "id_str": "148835870823284737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1647014814/centaur_logo_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647014814/centaur_logo_1_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @djfxtrader: Greek FinMin: #Greece, #Ireland, #Portugal Excluded From IMF Boost [Dow Jones] #imf #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:25 +0000", "from_user": "nanecau", "from_user_id": 84962661, "from_user_id_str": "84962661", "from_user_name": "Nane", "geo": null, "id": 148835843791011840, "id_str": "148835843791011840", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1613164541/Linda_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1613164541/Linda_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @SaguiSanfona: \\u201C@nanecau: @SaguiSanfona J\\u00E1 mandei para a Sui\\u00E7a e Portugal kkk @MartaWLMT @MelaFernandes obrigado pelo carinho", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:14 +0000", "from_user": "LuisDeStefano", "from_user_id": 233009730, "from_user_id_str": "233009730", "from_user_name": "Luis De Stefano", "geo": null, "id": 148835799180394500, "id_str": "148835799180394497", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1493767745/Foto-Alicante_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1493767745/Foto-Alicante_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @lemondefr: Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/zeOt21vW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:14 +0000", "from_user": "emaateske", "from_user_id": 272480342, "from_user_id_str": "272480342", "from_user_name": "\\u0454\\u043C\\u043C\\u03B1 \\u0442\\u0454\\u0455\\u043A\\u0454", "geo": null, "id": 148835797645275140, "id_str": "148835797645275136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1629586528/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629586528/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Harrysbackpack I don't really know if i am going to portugal, and if we are going im not sure for how long :( but prob 2-3 weeks :S :( xxx", "to_user": "Harrysbackpack", "to_user_id": 284104431, "to_user_id_str": "284104431", "to_user_name": "Johanna Nordgren", "in_reply_to_status_id": 148835358749110270, "in_reply_to_status_id_str": "148835358749110273"}, +{"created_at": "Mon, 19 Dec 2011 18:43:10 +0000", "from_user": "Bomba_Decima", "from_user_id": 156027440, "from_user_id_str": "156027440", "from_user_name": "Bomba Espa\\u00F1a CBS \\u221A", "geo": null, "id": 148835783854407680, "id_str": "148835783854407681", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1104432786/Vs1-003_2_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1104432786/Vs1-003_2_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "#servicioelectrico normalizado en D. Paraguay, Portugal, Marcoleta. . Se sugiere revisar autom\\u00E1ticos de la vivienda. V\\u00EDa @alertachilectra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:06 +0000", "from_user": "gonz_blinko", "from_user_id": 93664112, "from_user_id_str": "93664112", "from_user_name": "Gonz Blinko", "geo": null, "id": 148835764812251140, "id_str": "148835764812251138", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1609294206/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609294206/image_normal.jpg", "source": "<a href="http://www.quartzprojects.co.uk" rel="nofollow">The Qube</a>", "text": "RT @ppatel: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/b3YqLx9y", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:47 +0000", "from_user": "marianakalil", "from_user_id": 29741298, "from_user_id_str": "29741298", "from_user_name": "Mariana Kalil", "geo": null, "id": 148835686873694200, "id_str": "148835686873694208", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1570199034/hangover_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1570199034/hangover_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @modismonet: Rihanna \\u00E9 v\\u00EDtima de racismo em Portugal http://t.co/xE0dXC53", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:47 +0000", "from_user": "informatecl", "from_user_id": 22331533, "from_user_id_str": "22331533", "from_user_name": "Inf\\u00F3rmate!", "geo": null, "id": 148835685485387780, "id_str": "148835685485387776", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1386640073/logoinformate_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1386640073/logoinformate_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprueba nuevo desembolso por US$3.780 millones para Portugal http://t.co/AFEJolfq (v\\u00EDa @latercera)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:44 +0000", "from_user": "GustavoSBR", "from_user_id": 120036324, "from_user_id_str": "120036324", "from_user_name": "GustavoSBR", "geo": null, "id": 148835672348827650, "id_str": "148835672348827648", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1383054870/foto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1383054870/foto_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprueba tramo de rescate a Portugal http://t.co/BrfsHfe0 #economia #ecofin", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:43 +0000", "from_user": "CNN_Mexico", "from_user_id": 292097409, "from_user_id_str": "292097409", "from_user_name": "CNN Mexico", "geo": null, "id": 148835671153459200, "id_str": "148835671153459200", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1646602714/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646602714/image_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprueba tramo de rescate a Portugal: El Fondo desembolsar\\u00E1 2,900 mde para el pa\\u00EDs como parte de la ayuda fin... http://t.co/bKlPS24t", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:43 +0000", "from_user": "ventastar21", "from_user_id": 385149344, "from_user_id_str": "385149344", "from_user_name": "VentaSTAR", "geo": null, "id": 148835670109077500, "id_str": "148835670109077504", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1595720992/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1595720992/avatar_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprueba tramo de rescate a Portugal: El Fondo desembolsar\\u00E1 2,900 mde para el pa\\u00EDs como parte ... http://t.co/5qKOrDLD #economia VSTR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:43 +0000", "from_user": "MaOlalde", "from_user_id": 246861940, "from_user_id_str": "246861940", "from_user_name": "Maria Olalde", "geo": null, "id": 148835669148573700, "id_str": "148835669148573696", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1233786426/Maria_Olalde_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1233786426/Maria_Olalde_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprueba tramo de rescate a Portugal: El Fondo desembolsar\\u00E1 2,900 mde para el pa\\u00EDs como parte de la ayuda fin... http://t.co/CT3A0qLt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:43 +0000", "from_user": "Dalayon", "from_user_id": 53179916, "from_user_id_str": "53179916", "from_user_name": "David Alayon", "geo": null, "id": 148835668481683460, "id_str": "148835668481683456", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1149775265/DavidAlayon_close_up_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1149775265/DavidAlayon_close_up_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprueba tramo de rescate a Portugal http://t.co/ScRRnQg9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:42 +0000", "from_user": "TECNOCO", "from_user_id": 54761166, "from_user_id_str": "54761166", "from_user_name": "GrupoTECNOCO", "geo": null, "id": 148835666078347260, "id_str": "148835666078347264", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1455809214/profileimage_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1455809214/profileimage_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "cnnexpansion FMI aprueba tramo de rescate a Portugal: El Fondo desembolsar\\u00E1 2,900 mde para el pa\\u00EDs como parte de... http://t.co/Fbb3E5ev", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:42 +0000", "from_user": "betyfarinha", "from_user_id": 245499942, "from_user_id_str": "245499942", "from_user_name": "Elisabete Farinha", "geo": null, "id": 148835665050734600, "id_str": "148835665050734594", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1636093726/Betyevovo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1636093726/Betyevovo_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "RT @TMNpt: Este Natal tudo \\u00E9 poss\\u00EDvel: juntos, sonh\\u00E1mos mais alto e torn\\u00E1mos Portugal num pa\\u00EDs mais brilhante!... http://t.co/RnpFsmhr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:42 +0000", "from_user": "CACA_LIQUIDE", "from_user_id": 327349630, "from_user_id_str": "327349630", "from_user_name": "Satan or Jesus.", "geo": null, "id": 148835664966844400, "id_str": "148835664966844418", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693115453/grge_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693115453/grge_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@_Lolitchi maillot du Portugal sur ton ic\\u00F4ne non? :)", "to_user": "_Lolitchi", "to_user_id": 275136018, "to_user_id_str": "275136018", "to_user_name": "I'm born this way @."}, +{"created_at": "Mon, 19 Dec 2011 18:42:36 +0000", "from_user": "mouldstar", "from_user_id": 308130839, "from_user_id_str": "308130839", "from_user_name": "real-or-illusion.com", "geo": null, "id": 148835639767474180, "id_str": "148835639767474176", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1422437009/roi.old_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1422437009/roi.old_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "RT @noXforU: IWF gibt 2,9 Milliarden Euro f\\u00FCr #Portugal frei http://t.co/aRMSJ957", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:35 +0000", "from_user": "ilhamchamp", "from_user_id": 158660285, "from_user_id_str": "158660285", "from_user_name": "ilham anshori", "geo": null, "id": 148835636906958850, "id_str": "148835636906958848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1657603460/1310375389796_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657603460/1310375389796_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Portugal vs England kick off", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:34 +0000", "from_user": "dftelegraaf", "from_user_id": 128580474, "from_user_id_str": "128580474", "from_user_name": "financiele telegraaf", "geo": null, "id": 148835629864730620, "id_str": "148835629864730624", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF keurt lening aan Portugal goed: Het Internationaal Monetair Fonds (IMF) is maandag akkoord gegaan met een ni... http://t.co/fPVNdrFK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:29 +0000", "from_user": "RubenvdGun", "from_user_id": 146096502, "from_user_id_str": "146096502", "from_user_name": "RubenvdGun", "geo": null, "id": 148835610029862900, "id_str": "148835610029862913", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1533045357/Rhodos175_2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1533045357/Rhodos175_2__normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @djfxtrader: Greek FinMin: #Greece, #Ireland, #Portugal Excluded From IMF Boost [Dow Jones] #imf #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:27 +0000", "from_user": "RenatoGianuca", "from_user_id": 92821413, "from_user_id_str": "92821413", "from_user_name": "Renato Gianuca ", "geo": null, "id": 148835600739471360, "id_str": "148835600739471360", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1296386957/photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1296386957/photo_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @lemondefr: Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/zeOt21vW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:25 +0000", "from_user": "NielsvRosmalen", "from_user_id": 326205453, "from_user_id_str": "326205453", "from_user_name": "Niels van Rosmalen", "geo": null, "id": 148835594489962500, "id_str": "148835594489962497", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1418971829/niels_strafbal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1418971829/niels_strafbal_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "met fsx boven portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:24 +0000", "from_user": "zeitimbild", "from_user_id": 80647957, "from_user_id_str": "80647957", "from_user_name": "Raphael", "geo": null, "id": 148835589049950200, "id_str": "148835589049950208", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1291773819/1_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1291773819/1_bigger_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "RT @noXforU: IWF gibt 2,9 Milliarden Euro f\\u00FCr #Portugal frei http://t.co/aRMSJ957", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:23 +0000", "from_user": "baak68", "from_user_id": 226862991, "from_user_id_str": "226862991", "from_user_name": "Ren\\u00E9 Dijkstra", "geo": +{"coordinates": [36.0163,-5.6093], "type": "Point"}, "id": 148835587229626370, "id_str": "148835587229626368", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1569029174/317434_227152244008687_100001417381250_654374_1344105624_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1569029174/317434_227152244008687_100001417381250_654374_1344105624_n_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Zo dat was gibraltar en marocco nu langs portugal op naar marin en dan vliegen naar huis en met de kerst thuis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:20 +0000", "from_user": "invertia_minuto", "from_user_id": 263170241, "from_user_id_str": "263170241", "from_user_name": "Invertia al minuto", "geo": null, "id": 148835573191282700, "id_str": "148835573191282688", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1266851242/Sin-t_tulo-5_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266851242/Sin-t_tulo-5_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI autoriza segundo tramo de ayuda a Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:12 +0000", "from_user": "billionaireweb", "from_user_id": 34803949, "from_user_id_str": "34803949", "from_user_name": "CasinoBillionaire UK", "geo": null, "id": 148835541541077000, "id_str": "148835541541076992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1531471255/bet365-live-blackjack_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1531471255/bet365-live-blackjack_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Working hard to launch a new version of Casino Billionaire portuguese. Gamblers in #Portugal will enjoy it #Casinos #OnlineCasino #portugues", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:12 +0000", "from_user": "djfxtrader", "from_user_id": 327484803, "from_user_id_str": "327484803", "from_user_name": "DJ FX Trader", "geo": null, "id": 148835537518731260, "id_str": "148835537518731267", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1430672214/djfxthumbnail_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1430672214/djfxthumbnail_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Greek FinMin: #Greece, #Ireland, #Portugal Excluded From IMF Boost [Dow Jones] #imf #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:09 +0000", "from_user": "k_nakul_d", "from_user_id": 141488000, "from_user_id_str": "141488000", "from_user_name": "NAKUL Kesariya", "geo": null, "id": 148835527746011140, "id_str": "148835527746011138", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1538263886/320836_2378936793538_1254186860_32940043_7386735_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538263886/320836_2378936793538_1254186860_32940043_7386735_n_normal.jpg", "source": "<a href="http://www.nimbuzz.com" rel="nofollow">Nimbuzz Mobile</a>", "text": "#IMF releases 2.9 bn euros to Portugal.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:03 +0000", "from_user": "keithcallsenfir", "from_user_id": 314899445, "from_user_id_str": "314899445", "from_user_name": "Keith Callsen", "geo": null, "id": 148835502722777100, "id_str": "148835502722777089", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1390592038/1307752262_implementation_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1390592038/1307752262_implementation_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Qatar: 2011 Article IV Consultation Concluding Statement of the IMF Mission - Einnews Portugal http://t.co/qpFMjXlL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:02 +0000", "from_user": "JuanCarlos_RDS", "from_user_id": 245942171, "from_user_id_str": "245942171", "from_user_name": "Juan Carlos RDS \\u2714", "geo": null, "id": 148835497001754620, "id_str": "148835497001754624", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684819587/nFYs3p4M_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684819587/nFYs3p4M_normal", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @portugalnews: Rihanna: ovacianada en Espa\\u00F1a y pifiada en Portugal (Ver Video) - http://t.co/WaFGfiEQ http://t.co/osZMQCZr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:02 +0000", "from_user": "deroberto", "from_user_id": 15226042, "from_user_id_str": "15226042", "from_user_name": "deroberto", "geo": null, "id": 148835496037064700, "id_str": "148835496037064704", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1220873726/face2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1220873726/face2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @alertachilectra: #servicioelectrico normalizado en D. Paraguay, Portugal, Marcoleta, Santiago . Se sugiere revisar autom\\u00E1ticos de la vivienda. #Chilectra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:57 +0000", "from_user": "TMNpt", "from_user_id": 33513421, "from_user_id_str": "33513421", "from_user_name": "tmn", "geo": null, "id": 148835477137534980, "id_str": "148835477137534978", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1072528228/tmn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1072528228/tmn_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Este Natal tudo \\u00E9 poss\\u00EDvel: juntos, sonh\\u00E1mos mais alto e torn\\u00E1mos Portugal num pa\\u00EDs mais brilhante!... http://t.co/RnpFsmhr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:52 +0000", "from_user": "BeckyLorien", "from_user_id": 417326342, "from_user_id_str": "417326342", "from_user_name": "Becky Barton", "geo": null, "id": 148835454043697150, "id_str": "148835454043697153", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1649039130/me2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649039130/me2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "so glad to be in Portugal, time to hit the bar #partytime", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:36 +0000", "from_user": "WeLive2LoveDASH", "from_user_id": 224298984, "from_user_id_str": "224298984", "from_user_name": "Fayyadh Kardashian", "geo": null, "id": 148835388914536450, "id_str": "148835388914536448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698390356/tumblr_lwcl8z9zrD1qljipmo1_500qs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698390356/tumblr_lwcl8z9zrD1qljipmo1_500qs_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @DASHGlobal: @KimKardashian is almost at 12,000,000 followers on Twitter. That's more than the population of Greece, Portugal and Sweden! #DASHGlobal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:34 +0000", "from_user": "SFMaddy", "from_user_id": 289152379, "from_user_id_str": "289152379", "from_user_name": "Alicia Madsen", "geo": null, "id": 148835379041144830, "id_str": "148835379041144832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1367222635/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1367222635/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:32 +0000", "from_user": "portugalnews", "from_user_id": 18995665, "from_user_id_str": "18995665", "from_user_name": "PortugalNews", "geo": null, "id": 148835371176828930, "id_str": "148835371176828928", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/71160016/portugal-flag_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/71160016/portugal-flag_1__normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Rihanna: ovacianada en Espa\\u00F1a y pifiada en Portugal (Ver Video) - http://t.co/WaFGfiEQ http://t.co/osZMQCZr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:32 +0000", "from_user": "portugalnews", "from_user_id": 18995665, "from_user_id_str": "18995665", "from_user_name": "PortugalNews", "geo": null, "id": 148835370006609920, "id_str": "148835370006609922", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/71160016/portugal-flag_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/71160016/portugal-flag_1__normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Portugal refuerza la seguridad en la autopista saboteada por los ... - http://t.co/Y78k58Qs http://t.co/iPOBQoM4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:31 +0000", "from_user": "portugalnews", "from_user_id": 18995665, "from_user_id_str": "18995665", "from_user_name": "PortugalNews", "geo": null, "id": 148835367221596160, "id_str": "148835367221596160", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/71160016/portugal-flag_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/71160016/portugal-flag_1__normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Tuc Tuc, primera tienda en Portugal - Distribuci\\u00F3n Actualidad http://t.co/qPuCRPPO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:24 +0000", "from_user": "SilviaJB_pt", "from_user_id": 188001660, "from_user_id_str": "188001660", "from_user_name": "Silvia Alves", "geo": null, "id": 148835339228823550, "id_str": "148835339228823552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696821919/378611_271720259543701_197274640321597_629466_75201724_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696821919/378611_271720259543701_197274640321597_629466_75201724_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@justinbieber Justin when you come to Portugal?? i hope that you come in 2012! \\u2665 PORTUGUESE BELIEBERS LOVE YOU \\u2665", "to_user": "justinbieber", "to_user_id": 27260086, "to_user_id_str": "27260086", "to_user_name": "Justin Bieber"}, +{"created_at": "Mon, 19 Dec 2011 18:41:24 +0000", "from_user": "EuropeanUnews", "from_user_id": 88048785, "from_user_id_str": "88048785", "from_user_name": "EU news", "geo": null, "id": 148835338217996300, "id_str": "148835338217996288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/513492429/EU_Flag_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/513492429/EU_Flag_normal.jpg", "source": "<a href="http://www.visibli.com" rel="nofollow">Visibli</a>", "text": "EU watchdog raids Brussels Airlines and TAP Portugal - Reuters http://t.co/aWNBNX7j", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:24 +0000", "from_user": "zahirabrito", "from_user_id": 244522068, "from_user_id_str": "244522068", "from_user_name": "zahira brito", "geo": null, "id": 148835337127460860, "id_str": "148835337127460864", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1672506826/OMGGG_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672506826/OMGGG_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "men nos tenemos que reunir =( @vvnascimiento @_Verosimil @Claudiapires98 @alwaysignorada .. y estefany esta en portugal as\\u00ED que chao .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:17 +0000", "from_user": "albertoxic", "from_user_id": 33084611, "from_user_id_str": "33084611", "from_user_name": "luxembourg news", "geo": null, "id": 148835308539101200, "id_str": "148835308539101184", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1656548053/LUXEMBOURG_RT_NEWS_ANGEL_SQUARE_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656548053/LUXEMBOURG_RT_NEWS_ANGEL_SQUARE_normal.PNG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "http://t.co/jHf4rmMh RT IWF 2,9 Milliarden Euro f\\u00FCr Portugal - Portugal erh\\u00E4lt eine Hilfszahlung in H\\u00F6he von 2,9 Milliar......", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:17 +0000", "from_user": "duLuxembourg", "from_user_id": 48142680, "from_user_id_str": "48142680", "from_user_name": "ANNUAIRE LUXEMBOURG", "geo": null, "id": 148835307607953400, "id_str": "148835307607953408", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/267920041/wilhelm_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/267920041/wilhelm_2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "http://t.co/NbUF3E6L RT IWF 2,9 Milliarden Euro f\\u00FCr Portugal - Portugal erh\\u00E4lt eine Hilfszahlung in H\\u00F6he von 2,9 Milliar......", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:17 +0000", "from_user": "luxembourg_news", "from_user_id": 49312521, "from_user_id_str": "49312521", "from_user_name": "news luxembourg ", "geo": null, "id": 148835307595382800, "id_str": "148835307595382784", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1131189645/susi_canape_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1131189645/susi_canape_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "http://t.co/eNBpc2Z7 RT IWF 2,9 Milliarden Euro f\\u00FCr Portugal - Portugal erh\\u00E4lt eine Hilfszahlung in H\\u00F6he von 2,9 Milliar......", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:17 +0000", "from_user": "news_luxembourg", "from_user_id": 53668279, "from_user_id_str": "53668279", "from_user_name": "news luxembourg", "geo": null, "id": 148835307297570800, "id_str": "148835307297570816", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/296899214/gelle_fra_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/296899214/gelle_fra_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "http://t.co/vlmSNdp5 RT IWF 2,9 Milliarden Euro f\\u00FCr Portugal - Portugal erh\\u00E4lt eine Hilfszahlung in H\\u00F6he von 2,9 Milliar......", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:17 +0000", "from_user": "pressluxembourg", "from_user_id": 55867205, "from_user_id_str": "55867205", "from_user_name": "presse luxembourg", "geo": null, "id": 148835307188527100, "id_str": "148835307188527104", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/308601574/wilhelm_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/308601574/wilhelm_2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "http://t.co/Hg02OG4Q RT IWF 2,9 Milliarden Euro f\\u00FCr Portugal - Portugal erh\\u00E4lt eine Hilfszahlung in H\\u00F6he von 2,9 Milliar......", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:16 +0000", "from_user": "rtluxembourg", "from_user_id": 192650811, "from_user_id_str": "192650811", "from_user_name": "luxembourg RTnews", "geo": null, "id": 148835305204613120, "id_str": "148835305204613121", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "http://t.co/IqJiOWaF RT IWF 2,9 Milliarden Euro f\\u00FCr Portugal - Portugal erh\\u00E4lt eine Hilfszahlung in H\\u00F6he von 2,9 Milliar......", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:16 +0000", "from_user": "luxembourgnews", "from_user_id": 44872369, "from_user_id_str": "44872369", "from_user_name": "albertoxic luxemburG", "geo": null, "id": 148835305133309950, "id_str": "148835305133309952", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/250832013/luxembourg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/250832013/luxembourg_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "http://t.co/gf6xCxGe RT IWF 2,9 Milliarden Euro f\\u00FCr Portugal - Portugal erh\\u00E4lt eine Hilfszahlung in H\\u00F6he von 2,9 Milliar......", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:16 +0000", "from_user": "RTlux", "from_user_id": 243875860, "from_user_id_str": "243875860", "from_user_name": "albertoxic luxemburg", "geo": null, "id": 148835304973938700, "id_str": "148835304973938690", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1466278660/LUXEMBOURG_RT_NEWS_ANGEL_SQUARE_YELLOW_SQUARE_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1466278660/LUXEMBOURG_RT_NEWS_ANGEL_SQUARE_YELLOW_SQUARE_normal.PNG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "http://t.co/I7qorDYh RT IWF 2,9 Milliarden Euro f\\u00FCr Portugal - Portugal erh\\u00E4lt eine Hilfszahlung in H\\u00F6he von 2,9 Milliar......", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:16 +0000", "from_user": "RTluxemburg", "from_user_id": 243882738, "from_user_id_str": "243882738", "from_user_name": "luxembourg news", "geo": null, "id": 148835304185405440, "id_str": "148835304185405440", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "http://t.co/CfkYZDOM RT IWF 2,9 Milliarden Euro f\\u00FCr Portugal - Portugal erh\\u00E4lt eine Hilfszahlung in H\\u00F6he von 2,9 Milliar......", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:15 +0000", "from_user": "Frieden75", "from_user_id": 61328078, "from_user_id_str": "61328078", "from_user_name": "Carlos Restrepo H.", "geo": null, "id": 148835300884484100, "id_str": "148835300884484096", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1683351254/Carlos_en_Guatavita_32A_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683351254/Carlos_en_Guatavita_32A_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@CarlosIMedina20 Te\\u00F3filo Gutierrez est\\u00E1 listo para llegar a Porto de Portugal, hay acuerdo para reemplazar a Clever Datos pulso del futbol.", "to_user": "CarlosIMedina20", "to_user_id": 142485140, "to_user_id_str": "142485140", "to_user_name": "Carlos Ivan Medina"}, +{"created_at": "Mon, 19 Dec 2011 18:41:14 +0000", "from_user": "Jacksonista", "from_user_id": 51018366, "from_user_id_str": "51018366", "from_user_name": "Mademoiselle Andret", "geo": null, "id": 148835296396574720, "id_str": "148835296396574720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1498315582/gif_wink_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1498315582/gif_wink_normal.gif", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@JustMeBeingBad oh ok :) Been in Lisbon once only..When going to Portugal we usually were around Coimbra or Figueira da Foz", "to_user": "JustMeBeingBad", "to_user_id": 289344020, "to_user_id_str": "289344020", "to_user_name": "Rafaela ", "in_reply_to_status_id": 148834002873225200, "in_reply_to_status_id_str": "148834002873225217"}, +{"created_at": "Mon, 19 Dec 2011 18:41:10 +0000", "from_user": "1DcomBR", "from_user_id": 254610699, "from_user_id_str": "254610699", "from_user_name": "One Direction Brasil", "geo": null, "id": 148835280516956160, "id_str": "148835280516956160", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702484749/Up_All_Night__8__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702484749/Up_All_Night__8__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "E obrigada a todas visitantes de Portugal no site! :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:09 +0000", "from_user": "KPGanesh", "from_user_id": 338366234, "from_user_id_str": "338366234", "from_user_name": "K P Ganesh", "geo": null, "id": 148835273747341300, "id_str": "148835273747341312", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686652773/scan0015_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686652773/scan0015_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @EconomicTimes: IMF releases 2.9 bn euros to Portugal http://t.co/rZvD04Fx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:08 +0000", "from_user": "Bigdsoccer", "from_user_id": 19611487, "from_user_id_str": "19611487", "from_user_name": "Daniel Robertson", "geo": null, "id": 148835269754363900, "id_str": "148835269754363904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1113987852/Dallas_Skyline_outline1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1113987852/Dallas_Skyline_outline1_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Ruben Luna will be heading to Portugal to practice with Sporting Lisbon in January. Very cool opportunity for the young Dallas forward.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:08 +0000", "from_user": "rih_navy_always", "from_user_id": 380436804, "from_user_id_str": "380436804", "from_user_name": "marianavy_for_life", "geo": null, "id": 148835269515280400, "id_str": "148835269515280384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664571881/fashion-girl-kiss-pink-rihanna-Favim.com-57109_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664571881/fashion-girl-kiss-pink-rihanna-Favim.com-57109_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@NoellaAlstrom come again to Portugal!!! Please!!!!!", "to_user": "NoellaAlstrom", "to_user_id": 75672808, "to_user_id_str": "75672808", "to_user_name": "Noe\\u2113\\u2113\\u03B1A\\u2113strom"}, +{"created_at": "Mon, 19 Dec 2011 18:40:59 +0000", "from_user": "rvbelzen", "from_user_id": 35189040, "from_user_id_str": "35189040", "from_user_name": "Rene van Belzen", "geo": null, "id": 148835231615561730, "id_str": "148835231615561728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1661621810/Eewald_twitter_avatar_20111128_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661621810/Eewald_twitter_avatar_20111128_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:58 +0000", "from_user": "TAUtuguita", "from_user_id": 168163030, "from_user_id_str": "168163030", "from_user_name": "Tauanny", "geo": null, "id": 148835229203832830, "id_str": "148835229203832832", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677634881/111118_200148_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677634881/111118_200148_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/uPfLbjSQ caramba!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:55 +0000", "from_user": "rih_navy_always", "from_user_id": 380436804, "from_user_id_str": "380436804", "from_user_name": "marianavy_for_life", "geo": null, "id": 148835214821568500, "id_str": "148835214821568513", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664571881/fashion-girl-kiss-pink-rihanna-Favim.com-57109_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664571881/fashion-girl-kiss-pink-rihanna-Favim.com-57109_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@NoellaAlstrom come again to Portugal!!! Please!!!", "to_user": "NoellaAlstrom", "to_user_id": 75672808, "to_user_id_str": "75672808", "to_user_name": "Noe\\u2113\\u2113\\u03B1A\\u2113strom"}, +{"created_at": "Mon, 19 Dec 2011 18:40:50 +0000", "from_user": "WellingtonZamb", "from_user_id": 441052425, "from_user_id_str": "441052425", "from_user_name": "Wellington Zambianco", "geo": null, "id": 148835195695542270, "id_str": "148835195695542272", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702567831/ln_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702567831/ln_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Em seu twitter, a cantora Rihanna se revolta com preconceito \\nsofrido em hotel na cidade de Lisboa, Portugal.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:50 +0000", "from_user": "abdawwad", "from_user_id": 245537163, "from_user_id_str": "245537163", "from_user_name": "Abdelrahman Alawwad", "geo": null, "id": 148835193740996600, "id_str": "148835193740996608", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1413159687/101_4989_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1413159687/101_4989_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @EconomicTimes: IMF releases 2.9 bn euros to Portugal http://t.co/rZvD04Fx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:47 +0000", "from_user": "RantThird", "from_user_id": 269323299, "from_user_id_str": "269323299", "from_user_name": "Rant Macrial Third", "geo": null, "id": 148835182496063500, "id_str": "148835182496063488", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698237496/Rant_Third_Office_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698237496/Rant_Third_Office_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @ReutersEspana: El FMI aprueba un tramo de cr\\u00E9dito de 2.900 millones a Portugal http://t.co/QzAE8NPd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:40 +0000", "from_user": "JohnKicklighter", "from_user_id": 22973017, "from_user_id_str": "22973017", "from_user_name": "John Kicklighter", "geo": null, "id": 148835152812978180, "id_str": "148835152812978176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/91303174/pic_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/91303174/pic_normal.gif", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "That goes without saying...: Greek Fin Min says Greece, Portugal and Ireland are not participating in the EU's plans to lend to the IMF.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:39 +0000", "from_user": "Kardashlicious", "from_user_id": 355485667, "from_user_id_str": "355485667", "from_user_name": "\\u1D00\\u1D0D\\u1D07\\u029F\\u026A\\u1D07 \\u203A \\u1D05\\u1D00s\\u029C\\u1D05\\u1D0F\\u029F\\u029Fs \\u0416", "geo": null, "id": 148835150585790460, "id_str": "148835150585790464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1585660321/icon1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585660321/icon1_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @DASHGlobal: @KimKardashian is almost at 12,000,000 followers on Twitter. That's more than the population of Greece, Portugal and Sweden! #DASHGlobal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:36 +0000", "from_user": "ToutelaPresse", "from_user_id": 36345751, "from_user_id_str": "36345751", "from_user_name": "Toute la Presse", "geo": null, "id": 148835136908177400, "id_str": "148835136908177409", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/941531089/toutelapresse1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/941531089/toutelapresse1_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/FjfyVsr6 LeMonde", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:30 +0000", "from_user": "MrSkyGuy", "from_user_id": 30513556, "from_user_id_str": "30513556", "from_user_name": "Mark Russell", "geo": null, "id": 148835110794428400, "id_str": "148835110794428416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1640885292/mrskyguy2_blue_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640885292/mrskyguy2_blue_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "@FlyingBrussels & TAP_Portugal #airlines RAIDED by @European_Union over poss. collusion! That's a big no-no. http://t.co/T1khKoBi #Aviation", "to_user": "FlyingBrussels", "to_user_id": 95252395, "to_user_id_str": "95252395", "to_user_name": "Brussels Airlines"}, +{"created_at": "Mon, 19 Dec 2011 18:40:25 +0000", "from_user": "Bolchile", "from_user_id": 117426195, "from_user_id_str": "117426195", "from_user_name": "Bolsa Electr\\u00F3nica", "geo": null, "id": 148835091676798980, "id_str": "148835091676798976", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1553470205/Logo_BEC_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553470205/Logo_BEC_normal.PNG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "FMI aprueba nuevo desembolso por US$3.780 millones para Portugal http://t.co/t4Gi5Dbe #BolsadeChile", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:24 +0000", "from_user": "Amo_Vc_Pe_Lanza", "from_user_id": 178358311, "from_user_id_str": "178358311", "from_user_name": "AMO VOC\\u00CA PE LANZA", "geo": null, "id": 148835088006791170, "id_str": "148835088006791168", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1589726379/224314_199526260089003_179726475402315_451295_190351_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1589726379/224314_199526260089003_179726475402315_451295_190351_n_normal.jpg", "source": "<a href="http://twitpic.com" rel="nofollow">Twitpic</a>", "text": "http://t.co/MtqqGXYt - o DVD antes de vir para Portugal primeiro teve de ir \\u00E0 Holanda, viajou muito tadinho", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:24 +0000", "from_user": "economiaportuga", "from_user_id": 91623867, "from_user_id_str": "91623867", "from_user_name": "Economia Portugal", "geo": null, "id": 148835085242744830, "id_str": "148835085242744832", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/537336636/economia_portugal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/537336636/economia_portugal_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprovou terceira tranche do empr\\u00E9stimo a Portugal: O Fundo Monet\\u00E1rio Internacional aprovou hoje a terceira t... http://t.co/X00P1CCa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:22 +0000", "from_user": "MonicaEspinoM", "from_user_id": 110479483, "from_user_id_str": "110479483", "from_user_name": "Monica", "geo": null, "id": 148835078057893900, "id_str": "148835078057893888", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1610939304/image_8__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610939304/image_8__normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Portugal \\u25BA Lisboa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:20 +0000", "from_user": "emaateske", "from_user_id": 272480342, "from_user_id_str": "272480342", "from_user_name": "\\u0454\\u043C\\u043C\\u03B1 \\u0442\\u0454\\u0455\\u043A\\u0454", "geo": null, "id": 148835068872368130, "id_str": "148835068872368128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1629586528/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629586528/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Harrysbackpack Yes i am, if im not in Portugal :( xxx", "to_user": "Harrysbackpack", "to_user_id": 284104431, "to_user_id_str": "284104431", "to_user_name": "Johanna Nordgren", "in_reply_to_status_id": 148834617405882370, "in_reply_to_status_id_str": "148834617405882368"}, +{"created_at": "Mon, 19 Dec 2011 18:40:19 +0000", "from_user": "azyeoman", "from_user_id": 109425543, "from_user_id_str": "109425543", "from_user_name": "John Liffiton", "geo": null, "id": 148835066934599680, "id_str": "148835066934599680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/675543151/liffiton_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/675543151/liffiton_normal.jpg", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:18 +0000", "from_user": "akemoi", "from_user_id": 14215299, "from_user_id_str": "14215299", "from_user_name": "Denis Fruneau", "geo": null, "id": 148835061414891520, "id_str": "148835061414891520", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/52060586/vitcontlemur2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/52060586/vitcontlemur2_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#economie Le FMI approuve un versement de 2,9 milliards d'euros au Portugal (LCI) http://t.co/A6aZkd7b", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:18 +0000", "from_user": "Ake_Econo", "from_user_id": 185612305, "from_user_id_str": "185612305", "from_user_name": "Denis Fruneau", "geo": null, "id": 148835061230346240, "id_str": "148835061230346240", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1124834854/vitcontlemur2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1124834854/vitcontlemur2_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#economie Le FMI approuve un versement de 2,9 milliards d'euros au Portugal (LCI) http://t.co/qfwtCZM2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:17 +0000", "from_user": "headlinesnl", "from_user_id": 33272796, "from_user_id_str": "33272796", "from_user_name": "Nieuws in Nederland", "geo": null, "id": 148835058264973300, "id_str": "148835058264973312", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1193321406/nieuws_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1193321406/nieuws_logo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF keurt lening aan Portugal goed: Het Internationaal Monetair Fonds (IMF) is maandag akkoord gegaan met een ni... http://t.co/FmRZ0Yt2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:14 +0000", "from_user": "ForSaleiAlgarve", "from_user_id": 386105591, "from_user_id_str": "386105591", "from_user_name": "For Sale in Algarve", "geo": null, "id": 148835046307012600, "id_str": "148835046307012609", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1575941712/For_Sale_In_Algarve_Twitter_Logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575941712/For_Sale_In_Algarve_Twitter_Logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Villa for sale in Lagos Cama da Vaca | 4 bedrooms ~ For-Sale-in-Algarve ~\\n#Algarve #Portugal - http://t.co/LaeeH3EA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:13 +0000", "from_user": "1casaecohomes", "from_user_id": 17333475, "from_user_id_str": "17333475", "from_user_name": "Cristina Sanchez", "geo": null, "id": 148835040283983870, "id_str": "148835040283983872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1602663768/1Casa_Twitter_Icon_L_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1602663768/1Casa_Twitter_Icon_L_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Global viewr Featured Agent ~ Sundream Homes ~ #Portugal Amelia\\nHoogkamer; Vastgoed te koop in #Portugal - http://t.co/oGRbsLsW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:08 +0000", "from_user": "mitsurukikkawa", "from_user_id": 99482164, "from_user_id_str": "99482164", "from_user_name": "Mitsuru KIKKAWA", "geo": null, "id": 148835017672499200, "id_str": "148835017672499202", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/593246184/mitsurukikkawa-3_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/593246184/mitsurukikkawa-3_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Greece: Nations receiving aid not in IMF lending plan: So the rest of you lot better pony up more\\u2026 Portugal Irel... http://t.co/NdKHSgTZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:06 +0000", "from_user": "CookiesForAri", "from_user_id": 431040774, "from_user_id_str": "431040774", "from_user_name": "Mariana Grande", "geo": null, "id": 148835011905331200, "id_str": "148835011905331200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701857523/tumblr_lwat75kCg11qi0pfdo1_250_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701857523/tumblr_lwat75kCg11qi0pfdo1_250_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ArianaGrande Ariana I love you so much , when you come to Portugal ??? Please answer me :D Love you and please follow me #GrandeLove <33", "to_user": "ArianaGrande", "to_user_id": 34507480, "to_user_id_str": "34507480", "to_user_name": "Ariana Grande", "in_reply_to_status_id": 148833838372626430, "in_reply_to_status_id_str": "148833838372626432"}, +{"created_at": "Mon, 19 Dec 2011 18:40:06 +0000", "from_user": "SocMeDotMe", "from_user_id": 371995419, "from_user_id_str": "371995419", "from_user_name": "Karl Lingenfelder", "geo": null, "id": 148835009044824060, "id_str": "148835009044824066", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1546120426/SocMe_Twitter_Icon_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546120426/SocMe_Twitter_Icon_2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Villa for sale in Lagos Cama da Vaca | 4 bedrooms ~ For-Sale-in-Algarve ~\\n#Algarve #Portugal - http://t.co/gVLP4Lw3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:04 +0000", "from_user": "talaricodeia", "from_user_id": 33050474, "from_user_id_str": "33050474", "from_user_name": "Andrea Talarico", "geo": +{"coordinates": [-21.2001,-47.7992], "type": "Point"}, "id": 148835002317160450, "id_str": "148835002317160448", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1530485134/29226_130751636940002_100000154984089_364279_3318029_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1530485134/29226_130751636940002_100000154984089_364279_3318029_n_normal.jpg", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "Tiver amiga marta e eu vou cozinhar hahuhaa (@ Cenour\\u00E3o - Portugal) [pic]: http://t.co/dto2ES8z", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:40:02 +0000", "from_user": "mighty_sparrow", "from_user_id": 49550736, "from_user_id_str": "49550736", "from_user_name": "Thomas Sparrow", "geo": null, "id": 148834992968048640, "id_str": "148834992968048640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1508805324/DSC00670_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1508805324/DSC00670_2_normal.jpg", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:57 +0000", "from_user": "GemmaBolsa", "from_user_id": 193603520, "from_user_id_str": "193603520", "from_user_name": "Gemma Arenas ", "geo": null, "id": 148834973602942980, "id_str": "148834973602942976", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1564046660/FOTO_PERFIL3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1564046660/FOTO_PERFIL3_normal.jpg", "source": "<a href="http://tweetmeme.com" rel="nofollow">TweetMeme</a>", "text": "El FMI autoriza el desembolso de 2.900 millones del rescate de Portugal - elEconomista.es http://t.co/NTKLqNUZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:52 +0000", "from_user": "ecoempresa1", "from_user_id": 415491925, "from_user_id_str": "415491925", "from_user_name": "ecoempresa", "geo": null, "id": 148834951524126720, "id_str": "148834951524126720", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1645092638/Dibujo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645092638/Dibujo_normal.JPG", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "FMI autoriza segundo tramo de ayuda a Portugal Ecoempresa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:51 +0000", "from_user": "InfoPriv", "from_user_id": 57702464, "from_user_id_str": "57702464", "from_user_name": "InfoPrivilegiada \\u221A", "geo": null, "id": 148834948143517700, "id_str": "148834948143517696", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/354288460/informa__o_privilegiada_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/354288460/informa__o_privilegiada_logo_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Ultimas - Anne Sinclair \\u00E9 a francesa que mais marcou 2011 - Jornal de Neg\\u00F3cios - Portugal\\u2026 http://t.co/85oKHqAc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:50 +0000", "from_user": "KaulSunil", "from_user_id": 92560345, "from_user_id_str": "92560345", "from_user_name": "Sunil Kaul", "geo": null, "id": 148834943127130100, "id_str": "148834943127130112", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1079919151/27341_1021064901_5645_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1079919151/27341_1021064901_5645_q_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @EconomicTimes: IMF releases 2.9 bn euros to Portugal http://t.co/rZvD04Fx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:47 +0000", "from_user": "guaiba720", "from_user_id": 151984352, "from_user_id_str": "151984352", "from_user_name": "R\\u00E1dio Gua\\u00EDba", "geo": null, "id": 148834929302708220, "id_str": "148834929302708224", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/968019128/logo_guaiba_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/968019128/logo_guaiba_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera ? 2,9 bilh\\u00F5es para Portugal: Fundo fez segunda avalia\\u00E7\\u00E3o formal sobre situa\\u00E7\\u00E3o dos programas de auste... http://t.co/TOxxtBG7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:44 +0000", "from_user": "MIx3BI", "from_user_id": 254144796, "from_user_id_str": "254144796", "from_user_name": "ELEVATEd Miri :)", "geo": null, "id": 148834918846312450, "id_str": "148834918846312449", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698647916/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698647916/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@GermanMaslower hahaha was machst du denn in portugal ;)?", "to_user": "GermanMaslower", "to_user_id": 337086445, "to_user_id_str": "337086445", "to_user_name": "James' Covergirl \\u2665", "in_reply_to_status_id": 148834579959132160, "in_reply_to_status_id_str": "148834579959132160"}, +{"created_at": "Mon, 19 Dec 2011 18:39:43 +0000", "from_user": "WildcatTrader", "from_user_id": 263440231, "from_user_id_str": "263440231", "from_user_name": "Chad Gassaway", "geo": null, "id": 148834914333241340, "id_str": "148834914333241344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1352185218/n12911465_32340118_1079_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1352185218/n12911465_32340118_1079_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Greece and Portugal are not in the IMF funding plan.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:41 +0000", "from_user": "ReutersEspana", "from_user_id": 330378776, "from_user_id_str": "330378776", "from_user_name": "Reuters Espa\\u00F1a", "geo": null, "id": 148834906875756540, "id_str": "148834906875756544", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1429151326/reuters_twitter_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1429151326/reuters_twitter_avatar_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "El FMI aprueba un tramo de cr\\u00E9dito de 2.900 millones a Portugal http://t.co/QzAE8NPd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:33 +0000", "from_user": "punchagan", "from_user_id": 282091940, "from_user_id_str": "282091940", "from_user_name": "punchagan", "geo": null, "id": 148834871215800320, "id_str": "148834871215800320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1517112715/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517112715/profile_normal.png", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "RT @rasagy: All you goans! Happy Goa Liberation Day! 50th anniversary of the end of Portugal's colonial domination! #Goa <3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:29 +0000", "from_user": "alertachilectra", "from_user_id": 348090653, "from_user_id_str": "348090653", "from_user_name": "Chilectra S.A.", "geo": null, "id": 148834857412341760, "id_str": "148834857412341761", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1534268209/AVATAR_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534268209/AVATAR_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#servicioelectrico normalizado en D. Paraguay, Portugal, Marcoleta, Santiago . Se sugiere revisar autom\\u00E1ticos de la vivienda. #Chilectra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:25 +0000", "from_user": "racernic", "from_user_id": 44695601, "from_user_id_str": "44695601", "from_user_name": "Nic", "geo": null, "id": 148834839485890560, "id_str": "148834839485890560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1195953995/nic__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1195953995/nic__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/eDdwEHP1 #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:24 +0000", "from_user": "2reArc4iPad", "from_user_id": 218622705, "from_user_id_str": "218622705", "from_user_name": "Arkitekt Nyheder", "geo": null, "id": 148834836486963200, "id_str": "148834836486963200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Social Communications Tertiary School http://t.co/ouWWD8uy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:18 +0000", "from_user": "200ParkCapital", "from_user_id": 309212908, "from_user_id_str": "309212908", "from_user_name": "200 Park Capital", "geo": null, "id": 148834810935250940, "id_str": "148834810935250944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Greece says Ireland, Portugal, and Greece not in EU-IMF lending plan....so just Italy and Spain then?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:15 +0000", "from_user": "ZaniamAddiction", "from_user_id": 344318804, "from_user_id_str": "344318804", "from_user_name": "Debby, Bea & Pathy*", "geo": null, "id": 148834797349912580, "id_str": "148834797349912576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1505750150/247986213_normal_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505750150/247986213_normal_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "@MariaLuis Awwww thank you so much babe <3 Well, My name's D\\u00E9bora but you can call me Debby, I'm 15 and I'm from Portugal eheh :b", "to_user": "MariaLuis", "to_user_id": 405964342, "to_user_id_str": "405964342", "to_user_name": "Maria Lu\\u00EDs", "in_reply_to_status_id": 148834093713465340, "in_reply_to_status_id_str": "148834093713465345"}, +{"created_at": "Mon, 19 Dec 2011 18:39:08 +0000", "from_user": "denisreno", "from_user_id": 13343352, "from_user_id_str": "13343352", "from_user_name": "Denis Porto Ren\\u00F3", "geo": null, "id": 148834767478067200, "id_str": "148834767478067200", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1653057200/olhos_blog_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653057200/olhos_blog_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Vacaciones intelectuales hasta 31 de diciembre. En 01 de enero vuelvo a las lecturas para nuevo postdoctorado, ahora en Portugal.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:07 +0000", "from_user": "europanu", "from_user_id": 24888481, "from_user_id_str": "24888481", "from_user_name": "Europa NU van PDC", "geo": null, "id": 148834764592386050, "id_str": "148834764592386048", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1475835517/128128eunu_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1475835517/128128eunu_normal.gif", "source": "<a href="http://www.pdc.nl" rel="nofollow">pdcfeed</a>", "text": "IMF keurt lening aan Portugal goed http://t.co/ftRbwjQV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:05 +0000", "from_user": "latercera", "from_user_id": 3222731, "from_user_id_str": "3222731", "from_user_name": "La Tercera", "geo": null, "id": 148834755360731140, "id_str": "148834755360731136", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1531845858/twit_latercera_img_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1531845858/twit_latercera_img_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#FMI aprueba nuevo desembolso por US$3.780 millones para Portugal http://t.co/X0sVgjLP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:04 +0000", "from_user": "HonestOutlaw", "from_user_id": 351361368, "from_user_id_str": "351361368", "from_user_name": "Honest", "geo": null, "id": 148834750860234750, "id_str": "148834750860234753", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1492233808/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1492233808/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@joerogan It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/kxM0qDYG", "to_user": "joerogan", "to_user_id": 18208354, "to_user_id_str": "18208354", "to_user_name": "Joe Rogan"}, +{"created_at": "Mon, 19 Dec 2011 18:39:04 +0000", "from_user": "neiallswheel", "from_user_id": 20319497, "from_user_id_str": "20319497", "from_user_name": "neiall mullery", "geo": null, "id": 148834749169942530, "id_str": "148834749169942529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1213256991/whistle_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1213256991/whistle_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:03 +0000", "from_user": "portugalforum", "from_user_id": 41989700, "from_user_id_str": "41989700", "from_user_name": "portugalforum", "geo": null, "id": 148834748729536500, "id_str": "148834748729536512", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/487842239/pfo_icon_gr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/487842239/pfo_icon_gr_normal.jpg", "source": "<a href="http://www.portugalforum.org" rel="nofollow">portugalforum.org</a>", "text": "Das wahre Leben: Gef\\u00FChlter Montag: wegen dem Feiertag, oh nein, wegen des Feiertags. Dazu passte auch, dass wir dem http://t.co/CQZ3Lekm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:03 +0000", "from_user": "denisreno", "from_user_id": 13343352, "from_user_id_str": "13343352", "from_user_name": "Denis Porto Ren\\u00F3", "geo": null, "id": 148834745160175600, "id_str": "148834745160175617", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1653057200/olhos_blog_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653057200/olhos_blog_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Nuevo tem\\u00E1tica en la misma l\\u00EDnea: Touch Hiperperiodismo, pero como ser\\u00E1 en Portugal, Touch Hiperjornalismo. Una mezcla de todos los g\\u00E9neros,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:00 +0000", "from_user": "EconomicTimes", "from_user_id": 39743812, "from_user_id_str": "39743812", "from_user_name": "EconomicTimes", "geo": null, "id": 148834734988984320, "id_str": "148834734988984320", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/406051723/et-logo-option1_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/406051723/et-logo-option1_normal.gif", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "IMF releases 2.9 bn euros to Portugal http://t.co/rZvD04Fx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:56 +0000", "from_user": "MyloveisRihanna", "from_user_id": 422098041, "from_user_id_str": "422098041", "from_user_name": "My love is Rihanna ", "geo": null, "id": 148834718559911940, "id_str": "148834718559911938", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701172481/Ag5Oj8JCMAAijJY_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701172481/Ag5Oj8JCMAAijJY_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/7MSMn09S", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:50 +0000", "from_user": "DASHGlobal", "from_user_id": 81081182, "from_user_id_str": "81081182", "from_user_name": "Kardashian Global \\u0416", "geo": null, "id": 148834692622319600, "id_str": "148834692622319616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687246524/Screen_shot_2011-12-05_at_9.24.10_PM_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687246524/Screen_shot_2011-12-05_at_9.24.10_PM_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@KimKardashian is almost at 12,000,000 followers on Twitter. That's more than the population of Greece, Portugal and Sweden! #DASHGlobal", "to_user": "KimKardashian", "to_user_id": 25365536, "to_user_id_str": "25365536", "to_user_name": "Kim Kardashian"}, +{"created_at": "Mon, 19 Dec 2011 18:38:38 +0000", "from_user": "CheyrouxM", "from_user_id": 426594641, "from_user_id_str": "426594641", "from_user_name": "cheyroux m jo", "geo": null, "id": 148834641011417100, "id_str": "148834641011417089", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1669571356/83B61D1C9BC97F38A77059E1073_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669571356/83B61D1C9BC97F38A77059E1073_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @lemondefr: Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/zeOt21vW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:37 +0000", "from_user": "HonestOutlaw", "from_user_id": 351361368, "from_user_id_str": "351361368", "from_user_name": "Honest", "geo": null, "id": 148834638570336260, "id_str": "148834638570336256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1492233808/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1492233808/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:30 +0000", "from_user": "ashleyduran", "from_user_id": 137160176, "from_user_id_str": "137160176", "from_user_name": "Ashley Duran", "geo": null, "id": 148834609365393400, "id_str": "148834609365393409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/868937422/ashduran_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/868937422/ashduran_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Surf crisis in Portugal? N\\u00E3o! | Surfcamp Portugal: The 2011 Rip Curl Pro Portugal surf competition, which took p... http://t.co/hzHBs8su", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:30 +0000", "from_user": "AlbertoVolovitz", "from_user_id": 33519352, "from_user_id_str": "33519352", "from_user_name": "Alberto Volovitz", "geo": null, "id": 148834607800922100, "id_str": "148834607800922112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1640586743/AV_mediana_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640586743/AV_mediana_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "dos anybody have experience with IT cranes? (IT Tavares from Portugal) or Trumax from China? thanks, Alberto: http://t.co/ShbDwnN2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:29 +0000", "from_user": "Frieden75", "from_user_id": 61328078, "from_user_id_str": "61328078", "from_user_name": "Carlos Restrepo H.", "geo": null, "id": 148834603476586500, "id_str": "148834603476586496", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1683351254/Carlos_en_Guatavita_32A_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683351254/Carlos_en_Guatavita_32A_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@SOLO_JUNIOR Atenci\\u00F3n, Te\\u00F3filo Gutierrez est\\u00E1 casi listo para llegar al Porto de Portugal, y hay un acuerdo para reemplazar a Clever. Buena!", "to_user": "SOLO_JUNIOR", "to_user_id": 290795982, "to_user_id_str": "290795982", "to_user_name": "S\\u00F3lo Junior\\u2122"}, +{"created_at": "Mon, 19 Dec 2011 18:38:23 +0000", "from_user": "GermanMaslower", "from_user_id": 337086445, "from_user_id_str": "337086445", "from_user_name": "James' Covergirl \\u2665", "geo": null, "id": 148834579959132160, "id_str": "148834579959132160", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696528523/AfvIY0nCQAA4nEC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696528523/AfvIY0nCQAA4nEC_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MIx3BI ja aber erst mal gehts nach portugal :)", "to_user": "MIx3BI", "to_user_id": 254144796, "to_user_id_str": "254144796", "to_user_name": "ELEVATEd Miri :)", "in_reply_to_status_id": 148834434416775170, "in_reply_to_status_id_str": "148834434416775169"}, +{"created_at": "Mon, 19 Dec 2011 18:38:19 +0000", "from_user": "luisformigari", "from_user_id": 234324769, "from_user_id_str": "234324769", "from_user_name": "Lu\\u00EDs Formigari", "geo": null, "id": 148834563563585540, "id_str": "148834563563585537", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1207651337/DSCF0312_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1207651337/DSCF0312_normal.JPG", "source": "<a href="http://twitter.uol.com.br" rel="nofollow">uol.com.br</a>", "text": "RT @UOLEconomia: FMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal http://t.co/o4nSgyv1 #UOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:19 +0000", "from_user": "TrancePanda", "from_user_id": 29641890, "from_user_id_str": "29641890", "from_user_name": "Trance Panda", "geo": null, "id": 148834560367534080, "id_str": "148834560367534080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1199446518/panda2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1199446518/panda2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:18 +0000", "from_user": "Seguros_BH", "from_user_id": 269336284, "from_user_id_str": "269336284", "from_user_name": "SEGUROS CARROS BH/MG", "geo": null, "id": 148834558782083070, "id_str": "148834558782083072", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662388978/1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662388978/1_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @TELEVAN FMI aprova entrega de 2,9 bi de euros para Portugal: http://t.co/WNU7fA1a d\\u00EA um RT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:17 +0000", "from_user": "SkorpionUK", "from_user_id": 791766, "from_user_id_str": "791766", "from_user_name": "Rebecca D.S.", "geo": null, "id": 148834554386456580, "id_str": "148834554386456577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1640335263/2011-10_418x412_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640335263/2011-10_418x412_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:14 +0000", "from_user": "BBC1965INTEGRA", "from_user_id": 249016540, "from_user_id_str": "249016540", "from_user_name": "INTEGRA", "geo": null, "id": 148834539396014080, "id_str": "148834539396014080", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1248714814/integra_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1248714814/integra_normal.gif", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @EconomistaChiap: Aprueba FMI tercer tramo de pr\\u00E9stamo a Portugal http://t.co/FtQr3CNE | El Economista", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:55 +0000", "from_user": "araacuna", "from_user_id": 183348287, "from_user_id_str": "183348287", "from_user_name": "ALVARO ARAUJO", "geo": null, "id": 148834463130988540, "id_str": "148834463130988544", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1593621454/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593621454/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "Suena Teo Gutierrez para el Porto de Portugal. @Futbolalreves @ZorroDeportes @LigaColombiana @pdebedout @jmariogarcia", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:55 +0000", "from_user": "AchaDesconto", "from_user_id": 244926845, "from_user_id_str": "244926845", "from_user_name": "Acha Not\\u00EDcia", "geo": null, "id": 148834461818175500, "id_str": "148834461818175488", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1611436359/lupa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611436359/lupa_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprova entrega de 2,9 bi de euros para Portugal: http://t.co/TcO23TXK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:53 +0000", "from_user": "krlosegovia", "from_user_id": 224459465, "from_user_id_str": "224459465", "from_user_name": "Carlos Segovia", "geo": null, "id": 148834451357577200, "id_str": "148834451357577216", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1648093377/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648093377/image_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @ejovenes: Aprueba el Fondo Monetario Internacional la entrega de casi 3 mil millones de euros para Portugal http://t.co/Q2tpx9wK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:52 +0000", "from_user": "MadsBicker", "from_user_id": 405490267, "from_user_id_str": "405490267", "from_user_name": "Madalena Bicker", "geo": null, "id": 148834447641415680, "id_str": "148834447641415680", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700599976/292803_210321335690241_100001371289399_469500_1941620_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700599976/292803_210321335690241_100001371289399_469500_1941620_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "2 days #PORTUGAL ! <3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:47 +0000", "from_user": "Mr_Mundashi", "from_user_id": 394201126, "from_user_id_str": "394201126", "from_user_name": "Musonda Mundashi", "geo": null, "id": 148834427324215300, "id_str": "148834427324215298", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675280533/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675280533/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "\\u201C@BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/e3qpp7XR #EU #euro\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:40 +0000", "from_user": "ClanSewe", "from_user_id": 22594706, "from_user_id_str": "22594706", "from_user_name": "Sewe Saldanha", "geo": null, "id": 148834398903603200, "id_str": "148834398903603201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1663887979/YourPet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663887979/YourPet_normal.jpg", "source": "<a href="http://www.writelonger.com" rel="nofollow">Write Longer</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/2hQ3YmuR #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:39 +0000", "from_user": "livejornal", "from_user_id": 82668319, "from_user_id_str": "82668319", "from_user_name": "LiveJornal", "geo": null, "id": 148834396168929280, "id_str": "148834396168929281", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1109362619/terragira_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1109362619/terragira_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprova entrega de 2,9 bi de euros para Portugal: http://t.co/8QHoUxb5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:34 +0000", "from_user": "Chevy_URDancer", "from_user_id": 157098349, "from_user_id_str": "157098349", "from_user_name": "Chevss", "geo": null, "id": 148834372957642750, "id_str": "148834372957642752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675499715/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675499715/image_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @KissCass_: RT @thatgrapejuice: Rihanna Racially Assaulted In Portugal http://t.co/6BnJTM55", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:31 +0000", "from_user": "Frieden75", "from_user_id": 61328078, "from_user_id_str": "61328078", "from_user_name": "Carlos Restrepo H.", "geo": null, "id": 148834361138098180, "id_str": "148834361138098176", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1683351254/Carlos_en_Guatavita_32A_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683351254/Carlos_en_Guatavita_32A_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Atenci\\u00F3n, Te\\u00F3filo Gutierrez est\\u00E1 casi listo para llegar al Porto de Portugal, y hay un acuerdo para reemplazar a Clever, arriba viejo Teo !!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:27 +0000", "from_user": "baveshmoorthy", "from_user_id": 19870134, "from_user_id_str": "19870134", "from_user_name": "Bavesh Moorthy", "geo": null, "id": 148834344008560640, "id_str": "148834344008560640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1694731855/301290_233670703347940_100001150365780_602044_1537815719_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694731855/301290_233670703347940_100001150365780_602044_1537815719_n_normal.jpg", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:20 +0000", "from_user": "TukKroi", "from_user_id": 368038633, "from_user_id_str": "368038633", "from_user_name": "Oriane Boudinot", "geo": null, "id": 148834315105599500, "id_str": "148834315105599488", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689956109/DSC02058_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689956109/DSC02058_normal.JPG", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @lemondefr: Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/zeOt21vW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:19 +0000", "from_user": "P_Sociedade", "from_user_id": 113683910, "from_user_id_str": "113683910", "from_user_name": "P\\u00FAblico|Sociedade", "geo": null, "id": 148834311209099260, "id_str": "148834311209099265", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/705990501/Picture-1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/705990501/Picture-1_normal.png", "source": "<a href="http://www.publico.pt" rel="nofollow">AutoTweetPublico</a>", "text": "Portugal adere a programa europeu de restaurantes certificados http://t.co/b6TtWFMg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:19 +0000", "from_user": "allianzfondika", "from_user_id": 133393411, "from_user_id_str": "133393411", "from_user_name": "ALLIANZ F\\u00D3NDIKA", "geo": null, "id": 148834309464264700, "id_str": "148834309464264704", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/873259312/logo-twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/873259312/logo-twitter_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "FMI.- Autoriza desembolso de 2,900 mde del rescate de Portugal.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:18 +0000", "from_user": "myBusinessNews", "from_user_id": 416186662, "from_user_id_str": "416186662", "from_user_name": "myBusinessNews", "geo": null, "id": 148834307329359870, "id_str": "148834307329359873", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1646653595/myBusinessNews_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646653595/myBusinessNews_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Rettungspaket: IWF gibt dritte Portugal-Tranche frei http://t.co/bWoiAkin http://t.co/zybwNFwY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:18 +0000", "from_user": "TukKroi", "from_user_id": 368038633, "from_user_id_str": "368038633", "from_user_name": "Oriane Boudinot", "geo": null, "id": 148834305987194880, "id_str": "148834305987194880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689956109/DSC02058_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689956109/DSC02058_normal.JPG", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:15 +0000", "from_user": "Evonjqq", "from_user_id": 431740542, "from_user_id_str": "431740542", "from_user_name": "Evon Fanizza", "geo": null, "id": 148834295836966900, "id_str": "148834295836966912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681113140/piqtiw55u4_108646168-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681113140/piqtiw55u4_108646168-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "PORTUGAL # 7 RONALDO SOCCER KIDS SET JERSEY & SHORT SIZE 20.NEW: NEW PORTUGAL SOCCER KIDS SET SIZE 20\\n\\n# 7 CRIS... http://t.co/d0H1Kzpj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:14 +0000", "from_user": "Kevin_Bisschops", "from_user_id": 304479963, "from_user_id_str": "304479963", "from_user_name": "Kevin Bisschops", "geo": null, "id": 148834290157891600, "id_str": "148834290157891584", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699748107/1350529365_6_kseQ_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699748107/1350529365_6_kseQ_normal.jpeg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "En dan portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:13 +0000", "from_user": "AmBeautifulShow", "from_user_id": 173591614, "from_user_id_str": "173591614", "from_user_name": "AmBeautifulShow", "geo": null, "id": 148834287398043650, "id_str": "148834287398043649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1093292339/AmericaTheBeautifulShowLogo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1093292339/AmericaTheBeautifulShowLogo_normal.png", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:13 +0000", "from_user": "24DutchNieuws", "from_user_id": 346601459, "from_user_id_str": "346601459", "from_user_name": "Nederland Nieuws", "geo": null, "id": 148834284835323900, "id_str": "148834284835323904", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1475893025/mzi.upezyxee.175x175-75_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1475893025/mzi.upezyxee.175x175-75_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF keurt lening aan Portugal goed: Het Internationaal Monetair Fonds (IMF) is maandag akkoord gegaan met een ni... http://t.co/tIi1PmmA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:13 +0000", "from_user": "ActusCloud", "from_user_id": 306364233, "from_user_id_str": "306364233", "from_user_name": "CloudActualit\\u00E9s 24/7", "geo": null, "id": 148834284151652350, "id_str": "148834284151652352", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1371346895/actuscloud_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1371346895/actuscloud_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/eql31fbs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:12 +0000", "from_user": "NetActu1", "from_user_id": 367804925, "from_user_id_str": "367804925", "from_user_name": "NetActu", "geo": null, "id": 148834280167059460, "id_str": "148834280167059456", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1528315106/1211794689_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1528315106/1211794689_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/9PPqGZtp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:11 +0000", "from_user": "boersemedien", "from_user_id": 30714705, "from_user_id_str": "30714705", "from_user_name": "B\\u00F6rse \\u00D6sterreich", "geo": null, "id": 148834278283821060, "id_str": "148834278283821057", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/595031038/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/595031038/twitter_normal.jpg", "source": "<a href="http://aktie.at" rel="nofollow">aktie.at B\\u00F6rsemedien</a>", "text": "Börse Express|IWF gibt knapp drei Milliarden für Portugal frei http://t.co/Ys2twCAM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:07 +0000", "from_user": "zakennieuws", "from_user_id": 49335997, "from_user_id_str": "49335997", "from_user_name": "Zakelijk nieuws", "geo": null, "id": 148834261917634560, "id_str": "148834261917634560", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1193375762/cashlogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1193375762/cashlogo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF keurt lening aan Portugal goed: Het Internationaal Monetair Fonds (IMF) is maandag akkoord gegaan met een ni... http://t.co/5th4ezxE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:07 +0000", "from_user": "fut_interativo", "from_user_id": 419742726, "from_user_id_str": "419742726", "from_user_name": "Futebol Interativo", "geo": null, "id": 148834261854724100, "id_str": "148834261854724099", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694689107/royalty-free-images-vector-football-background-pixmac-82915067_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694689107/royalty-free-images-vector-football-background-pixmac-82915067_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Atacante Thiago Gentil,ex-Palmeiras,Santa Cruz e Portugal \\u00E9 novo contratado do Gremio Barueri. O tamb\\u00E9m atacante Jorge Pre\\u00E1 \\u00E9 outro refor\\u00E7o.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:07 +0000", "from_user": "lORd_kEiGiE", "from_user_id": 119943173, "from_user_id_str": "119943173", "from_user_name": "Kenneth A. GEORGE", "geo": null, "id": 148834260453834750, "id_str": "148834260453834752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1548681806/K_MaG_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1548681806/K_MaG_normal.jpg", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:51 +0000", "from_user": "Kpitan", "from_user_id": 41396850, "from_user_id_str": "41396850", "from_user_name": "Andr\\u00E9s Redrov\\u00E1n", "geo": null, "id": 148834193089105920, "id_str": "148834193089105921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1642118150/teddy-bear-suicide_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642118150/teddy-bear-suicide_normal.jpg", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "I'm at S'pan'eS (Eloy Alfaro, Portugal, Quito) http://t.co/Ny4jMhDX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:50 +0000", "from_user": "GGerminiani", "from_user_id": 90542366, "from_user_id_str": "90542366", "from_user_name": "Gustavo Germiniani", "geo": null, "id": 148834188466978800, "id_str": "148834188466978818", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/530357146/Sem_t_tulo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/530357146/Sem_t_tulo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal: http://t.co/qNYzTNdu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:43 +0000", "from_user": "JuanCarlos_RDS", "from_user_id": 245942171, "from_user_id_str": "245942171", "from_user_name": "Juan Carlos RDS \\u2714", "geo": null, "id": 148834160826519550, "id_str": "148834160826519552", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684819587/nFYs3p4M_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684819587/nFYs3p4M_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @17Nani_PT: F.C. Porto: \\u00ABNo dia 31 o Danilo j\\u00E1 treina em Portugal\\u00BB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:43 +0000", "from_user": "mpvelloso", "from_user_id": 40163660, "from_user_id_str": "40163660", "from_user_name": "M\\u00E1rcia Velloso", "geo": null, "id": 148834157865353200, "id_str": "148834157865353216", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1531839112/Marcia_Velloso_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1531839112/Marcia_Velloso_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @lemondefr: Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/zeOt21vW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:42 +0000", "from_user": "Timascious", "from_user_id": 210520883, "from_user_id_str": "210520883", "from_user_name": "The News", "geo": null, "id": 148834155646550000, "id_str": "148834155646550016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697779235/sit_20away_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697779235/sit_20away_normal.jpg", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:35 +0000", "from_user": "djthefox", "from_user_id": 42283582, "from_user_id_str": "42283582", "from_user_name": "Dj The Fox", "geo": null, "id": 148834125254635520, "id_str": "148834125254635521", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/228654744/Image031-001_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/228654744/Image031-001_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Novo tema de M.A.N.D.Y.! A dupla tem visita marcada a Portugal j\\u00E1 nos dias 22, 23, 24 e 25 de Dezembro, em Braga,... http://t.co/pj8FSJCO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:34 +0000", "from_user": "petite_galloise", "from_user_id": 232802400, "from_user_id_str": "232802400", "from_user_name": "Cath", "geo": null, "id": 148834123040047100, "id_str": "148834123040047104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1257886368/10-x-daffodils-carlton_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1257886368/10-x-daffodils-carlton_normal.jpg", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:28 +0000", "from_user": "ChristanaParson", "from_user_id": 422337131, "from_user_id_str": "422337131", "from_user_name": "ChristanaParson", "geo": null, "id": 148834096754327550, "id_str": "148834096754327553", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1659964359/g20_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659964359/g20_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Special Places to Stay Portugal, 2nd http://t.co/bdmlco0X", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:18 +0000", "from_user": "amauryreyes", "from_user_id": 49188155, "from_user_id_str": "49188155", "from_user_name": "Amaury A. Reyes-T.", "geo": null, "id": 148834056258326530, "id_str": "148834056258326530", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1597828256/0c1834c5-d4f9-451e-a30c-1c583bed4569_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1597828256/0c1834c5-d4f9-451e-a30c-1c583bed4569_normal.png", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:09 +0000", "from_user": "17Nani_PT", "from_user_id": 440097844, "from_user_id_str": "440097844", "from_user_name": "Nani Portugal F\\u00E3s \\u2665", "geo": null, "id": 148834018719301630, "id_str": "148834018719301632", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700295506/Nani-2011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700295506/Nani-2011_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "F.C. Porto: \\u00ABNo dia 31 o Danilo j\\u00E1 treina em Portugal\\u00BB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:02 +0000", "from_user": "DuArtdreamer", "from_user_id": 35537704, "from_user_id_str": "35537704", "from_user_name": "Duarte Fernandes", "geo": null, "id": 148833989396922370, "id_str": "148833989396922368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1665899642/TheBOSS_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665899642/TheBOSS_normal.jpg", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Hiring a Java Experts in Lisbon, Portugal http://t.co/xpWNv4CI #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:02 +0000", "from_user": "samdenton7", "from_user_id": 217075755, "from_user_id_str": "217075755", "from_user_name": "Sam Denton", "geo": null, "id": 148833986985201660, "id_str": "148833986985201664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668715403/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668715403/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:00 +0000", "from_user": "ppatel", "from_user_id": 14155736, "from_user_id_str": "14155736", "from_user_name": "Pratik Patel", "geo": null, "id": 148833977216663550, "id_str": "148833977216663552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1163555641/pratik-bigsmile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1163555641/pratik-bigsmile_normal.jpg", "source": "<a href="http://www.quartzprojects.co.uk" rel="nofollow">The Qube</a>", "text": "It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/b3YqLx9y", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:59 +0000", "from_user": "FLGOVSCOTTFAILS", "from_user_id": 25927615, "from_user_id_str": "25927615", "from_user_name": "Sara Conner (alias)", "geo": null, "id": 148833976361041920, "id_str": "148833976361041920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1261494619/DCF_allowing_fathers_abuse._normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1261494619/DCF_allowing_fathers_abuse._normal.jpg", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:58 +0000", "from_user": "redWhiteRiotBta", "from_user_id": 270063327, "from_user_id_str": "270063327", "from_user_name": "Christian Urrego", "geo": null, "id": 148833970962964480, "id_str": "148833970962964481", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1666111582/Pintas_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666111582/Pintas_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Ch\\u00E9ofilo a portugal !!! nos fuimos al carajo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:55 +0000", "from_user": "ninformaticapt", "from_user_id": 92326060, "from_user_id_str": "92326060", "from_user_name": "Not\\u00EDcias Inform\\u00E1tica", "geo": null, "id": 148833959382491140, "id_str": "148833959382491136", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/542024658/informatica_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/542024658/informatica_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "ACEPI participa na Confedera\\u00E7\\u00E3o dos Servi\\u00E7os de Portugal: A nova entidade patronal criada em conjunto pelas prin... http://t.co/1tLrGgXB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:53 +0000", "from_user": "nathiititi", "from_user_id": 276703549, "from_user_id_str": "276703549", "from_user_name": "Nathi Mazzeo", "geo": null, "id": 148833951295873020, "id_str": "148833951295873026", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1624142072/8790423_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624142072/8790423_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "DEMASIADO HERMOSO que tu novio venga desde Portugal a pasar navidades contigoo *_*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:52 +0000", "from_user": "SaguiSanfona", "from_user_id": 245359426, "from_user_id_str": "245359426", "from_user_name": "Sagui Sanfona", "geo": null, "id": 148833943775490050, "id_str": "148833943775490048", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1602232034/img_0086_001_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1602232034/img_0086_001_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@nanecau: @SaguiSanfona J\\u00E1 mandei para a Sui\\u00E7a e Portugal kkk @MartaWLMT @MelaFernandes obrigado pelo carinho", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:49 +0000", "from_user": "ronmichael", "from_user_id": 807851, "from_user_id_str": "807851", "from_user_name": "Ron M Zettlemoyer", "geo": null, "id": 148833934942273540, "id_str": "148833934942273536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1675702747/me-2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675702747/me-2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:49 +0000", "from_user": "Arlenenhp", "from_user_id": 431779141, "from_user_id_str": "431779141", "from_user_name": "Arlene Youngren", "geo": null, "id": 148833934300549120, "id_str": "148833934300549120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681196038/bc5dmdvshl_129668328-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681196038/bc5dmdvshl_129668328-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Portugal on Your Own: Making the Most of Local Food and Drink: http://t.co/kGiAkg71", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:48 +0000", "from_user": "RodadaVirtual", "from_user_id": 37938014, "from_user_id_str": "37938014", "from_user_name": "Rodada de Neg\\u00F3cios", "geo": null, "id": 148833929691017200, "id_str": "148833929691017216", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Regulador espanhol investiga eventual concerta\\u00E7\\u00E3o de pre\\u00E7os das SMS - Jornal de Neg\\u00F3cios - Portugal: Jornal de N... http://t.co/aEaSNRb6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:43 +0000", "from_user": "cearatradebrasi", "from_user_id": 62580704, "from_user_id_str": "62580704", "from_user_name": "CEAR\\u00C1 TRADE BRASIL", "geo": null, "id": 148833907192770560, "id_str": "148833907192770560", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/346149524/Copy_of_Logomarca_CearaTrade_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/346149524/Copy_of_Logomarca_CearaTrade_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Portugal Digital - Portugal volta a ter saldo positivo no com\\u00E9rcio com o Brasil http://t.co/WXRVRTma via @pd_twitt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:36 +0000", "from_user": "DTNNetherlands", "from_user_id": 430761655, "from_user_id_str": "430761655", "from_user_name": "DTN The Netherlands", "geo": null, "id": 148833880399560700, "id_str": "148833880399560705", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1679174234/0_1_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679174234/0_1_n_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "DTN The Netherlands IMF keurt lening aan Portugal goed: WASHINGTON - Het Internationaal Monetair Fonds (IMF) is ... http://t.co/Ecxm97fw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:31 +0000", "from_user": "EconomieNed20", "from_user_id": 107735761, "from_user_id_str": "107735761", "from_user_name": "Economie & Financi\\u00EBn", "geo": null, "id": 148833857863561200, "id_str": "148833857863561216", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1611012337/logonederland20_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611012337/logonederland20_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF keurt lening aan Portugal goed http://t.co/8AiD5Mri (nu.nl) #economie", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:19 +0000", "from_user": "AGI_Italy_News", "from_user_id": 219249595, "from_user_id_str": "219249595", "from_user_name": "Agenzia Italia", "geo": null, "id": 148833806554640400, "id_str": "148833806554640384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1427343984/AGI_payoff_4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1427343984/AGI_payoff_4_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF ISSUES EUR2. 9BN BAILOUT GRANT IN AID OF PORTUGAL: (AGI) Washington - The IMF has released 2.9bn euro in aid... http://t.co/mIfsXsjb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:18 +0000", "from_user": "Russia_Jobs_", "from_user_id": 304256225, "from_user_id_str": "304256225", "from_user_name": "Russia Jobs", "geo": null, "id": 148833803354382340, "id_str": "148833803354382336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Qatar: 2011 Article IV Consultation Concluding Statement of the IMF Mission \\u2013 Einnews Portugal: Zawy... http://t.co/QlxnEs1w Russia Jobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:11 +0000", "from_user": "TheABCParty", "from_user_id": 287561206, "from_user_id_str": "287561206", "from_user_name": "ABC Party", "geo": null, "id": 148833772085846000, "id_str": "148833772085846017", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1364187123/Australian_Business_Coalition_Logo_IPhone_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1364187123/Australian_Business_Coalition_Logo_IPhone_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "@theabcparty #Oz #IR IMF releases 2.9bn euros to Portugal: Deficit slides below IMF-EU ceil... http://t.co/9nteN36s #Australia #Politics", "to_user": "TheABCParty", "to_user_id": 287561206, "to_user_id_str": "287561206", "to_user_name": "ABC Party"}, +{"created_at": "Mon, 19 Dec 2011 18:35:01 +0000", "from_user": "Aghiadne", "from_user_id": 57474457, "from_user_id_str": "57474457", "from_user_name": "Ariadna Arriaza", "geo": null, "id": 148833730444787700, "id_str": "148833730444787714", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1669403937/tumblr_lvcghrMWZe1qduhajo1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669403937/tumblr_lvcghrMWZe1qduhajo1_500_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@PatMoredom arcade fire, crying... pero si est\\u00E1 en portugal, no? VAMOS", "to_user": "PatMoredom", "to_user_id": 176582578, "to_user_id_str": "176582578", "to_user_name": "Patricia Moreno", "in_reply_to_status_id": 148833128142733300, "in_reply_to_status_id_str": "148833128142733312"}, +{"created_at": "Mon, 19 Dec 2011 18:34:59 +0000", "from_user": "iheartcircle1", "from_user_id": 124858054, "from_user_id_str": "124858054", "from_user_name": "Heart Circle", "geo": null, "id": 148833722953773060, "id_str": "148833722953773056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "IMF releases 2.9 bn euros to Portugal - WASHINGTON\\u00A0- The International Monetary Fund said Monday it would release 2.... http://t.co/VhxArOdj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:57 +0000", "from_user": "rmkelle", "from_user_id": 14324713, "from_user_id_str": "14324713", "from_user_name": "Richard Kelley", "geo": null, "id": 148833715668258800, "id_str": "148833715668258817", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1539757086/POS_1743_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1539757086/POS_1743_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Emergency evacuation plans for Brits in Spain, Portugal if/when #euro collapses. #crazy http://t.co/LO1oxhW0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:53 +0000", "from_user": "KissCass_", "from_user_id": 147372325, "from_user_id_str": "147372325", "from_user_name": "Cassandra Catherine", "geo": null, "id": 148833696827441150, "id_str": "148833696827441153", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1603505882/328567112_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1603505882/328567112_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @thatgrapejuice: Rihanna Racially Assaulted In Portugal http://t.co/6BnJTM55", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:46 +0000", "from_user": "Rithie_Duarte", "from_user_id": 79542534, "from_user_id_str": "79542534", "from_user_name": "Rita Duarte", "geo": null, "id": 148833667446349820, "id_str": "148833667446349824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1617735201/180633_1566004949839_1226857639_31286879_8236780_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1617735201/180633_1566004949839_1226857639_31286879_8236780_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "best xmas gift? if @justinbieber notice or follow me. Portugal loves you. We want u here in 2012", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:38 +0000", "from_user": "ghostworld2", "from_user_id": 378621204, "from_user_id_str": "378621204", "from_user_name": "ghostworld", "geo": null, "id": 148833637306089470, "id_str": "148833637306089472", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/mj6ViB4A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:33 +0000", "from_user": "AnunicoPT", "from_user_id": 430226280, "from_user_id_str": "430226280", "from_user_name": "Anunico Portugal", "geo": null, "id": 148833612379328500, "id_str": "148833612379328512", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677900950/logo_anunico_twitter_bra_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677900950/logo_anunico_twitter_bra_normal.PNG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Classificados Para Venda Brand New http://t.co/PdVP4HJE #Anuncios #Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:30 +0000", "from_user": "HipHopWeb", "from_user_id": 96447588, "from_user_id_str": "96447588", "from_user_name": "HipHopWeb", "geo": null, "id": 148833603252535300, "id_str": "148833603252535296", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1170752522/hiphopweb_logotipo-md_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1170752522/hiphopweb_logotipo-md_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Rihanna relata epis\\u00F3dio racista em Portugal http://t.co/3OVzekTO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:25 +0000", "from_user": "MarcFanlac", "from_user_id": 391671501, "from_user_id_str": "391671501", "from_user_name": "POMAREL Marc", "geo": null, "id": 148833582771736580, "id_str": "148833582771736577", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1599686677/Num_riser.jpg_09_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599686677/Num_riser.jpg_09_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@jeanmarcayrault @fhollande Voir Gr\\u00E9ce ; Portugal ; Espagne...et Corr\\u00E9ze...!", "to_user": "jeanmarcayrault", "to_user_id": 28332028, "to_user_id_str": "28332028", "to_user_name": "Jean-Marc AYRAULT", "in_reply_to_status_id": 148833073251893250, "in_reply_to_status_id_str": "148833073251893251"}, +{"created_at": "Mon, 19 Dec 2011 18:34:21 +0000", "from_user": "djthefox", "from_user_id": 42283582, "from_user_id_str": "42283582", "from_user_name": "Dj The Fox", "geo": null, "id": 148833564195164160, "id_str": "148833564195164161", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/228654744/Image031-001_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/228654744/Image031-001_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Novo tema de M.A.N.D.Y.! A dupla tem visita marcada a Portugal j\\u00E1 nos dias 23, 24 e 25 de Dezembro, em Aveiro,... http://t.co/dNvvLQ20", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:19 +0000", "from_user": "Jacksonista", "from_user_id": 51018366, "from_user_id_str": "51018366", "from_user_name": "Mademoiselle Andret", "geo": null, "id": 148833556054020100, "id_str": "148833556054020096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1498315582/gif_wink_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1498315582/gif_wink_normal.gif", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@JustMeBeingBad Where in Portugal (nearest biggest city)? ...if you don't mind me asking :)", "to_user": "JustMeBeingBad", "to_user_id": 289344020, "to_user_id_str": "289344020", "to_user_name": "Rafaela ", "in_reply_to_status_id": 148833358506496000, "in_reply_to_status_id_str": "148833358506496001"}, +{"created_at": "Mon, 19 Dec 2011 18:34:18 +0000", "from_user": "itwitting", "from_user_id": 26276346, "from_user_id_str": "26276346", "from_user_name": "ionline", "geo": null, "id": 148833553164156930, "id_str": "148833553164156928", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/199994060/i_icon150px_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/199994060/i_icon150px_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "BE admite fixar na Constitui\\u00E7\\u00E3o princ\\u00EDpio de que todos recebem de acordo com descontos http://t.co/dTJ9J7SO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:34:18 +0000", "from_user": "itwitting", "from_user_id": 26276346, "from_user_id_str": "26276346", "from_user_name": "ionline", "geo": null, "id": 148833553164156930, "id_str": "148833553164156928", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/199994060/i_icon150px_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/199994060/i_icon150px_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "BE admite fixar na Constitui\\u00E7\\u00E3o princ\\u00EDpio de que todos recebem de acordo com descontos http://t.co/dTJ9J7SO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:17 +0000", "from_user": "Makedaomf", "from_user_id": 440227701, "from_user_id_str": "440227701", "from_user_name": "Makeda Arends", "geo": null, "id": 148833546033823740, "id_str": "148833546033823744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700604554/large_NUOROZKNDPAH_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700604554/large_NUOROZKNDPAH_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Traditional Portuguese Recipes from Provincetown: Born in Alhao, Portugal, in 1914, Mary Alice Luiz Cook came to... http://t.co/lN04BjHe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:13 +0000", "from_user": "ferriuf", "from_user_id": 211072952, "from_user_id_str": "211072952", "from_user_name": "renato ferreira", "geo": null, "id": 148833530015789060, "id_str": "148833530015789056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1493779112/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1493779112/image_normal.jpg", "source": "<a href="http://www.yoono.com" rel="nofollow">yoono</a>", "text": "RT @PCMagalhaes: \"Portugal\" no Google News d\\u00E1 isto: \"Rihanna Suffers Racial Abuse At Portugal Hotel\": http://t.co/POrIddO8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:13 +0000", "from_user": "JuanDavidLoopez", "from_user_id": 198214933, "from_user_id_str": "198214933", "from_user_name": "Juan David", "geo": null, "id": 148833528799440900, "id_str": "148833528799440896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1634631189/SDC14716_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634631189/SDC14716_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rihanna: PORTUGAL tonight was LEGENDARY!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:08 +0000", "from_user": "neiisLA", "from_user_id": 339204800, "from_user_id_str": "339204800", "from_user_name": "\\u5DE5\\u03B7\\u03B5s'", "geo": null, "id": 148833510541639680, "id_str": "148833510541639680", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693259875/Cameron_estilo_roupa_mitchell_glee_4_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693259875/Cameron_estilo_roupa_mitchell_glee_4_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "@xProudOfSel 18:30 em Portugal ;]", "to_user": "xProudOfSel", "to_user_id": 362489207, "to_user_id_str": "362489207", "to_user_name": "luto", "in_reply_to_status_id": 148833133293346800, "in_reply_to_status_id_str": "148833133293346817"}, +{"created_at": "Mon, 19 Dec 2011 18:33:58 +0000", "from_user": "buyCristiano", "from_user_id": 162786460, "from_user_id_str": "162786460", "from_user_name": "buy Cristiano", "geo": null, "id": 148833467994615800, "id_str": "148833467994615809", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1050371064/201200_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1050371064/201200_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "2012 Futera Unique #295 Ruby LOT 9 PORTUGAL,Cristiano Ronaldo,Figo,Eusebio,Pepe,: US $0.99 (0 Bid)... http://t.co/6fGFKVYa #buyCristiano", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:57 +0000", "from_user": "ima1dlovatic", "from_user_id": 410711925, "from_user_id_str": "410711925", "from_user_name": "Vas Happenin'", "geo": null, "id": 148833463972270080, "id_str": "148833463972270080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702438418/tumblr_lvp1ww7aI31qkfkfjo1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702438418/tumblr_lvp1ww7aI31qkfkfjo1_500_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @NiallGuitar: Im from Portugal - BrazilNeedsUpAllNightTour - but Im helping!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:51 +0000", "from_user": "apdsi", "from_user_id": 54302612, "from_user_id_str": "54302612", "from_user_name": "APDSI", "geo": null, "id": 148833438424764400, "id_str": "148833438424764416", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/300361267/logoAPDSI_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/300361267/logoAPDSI_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Est\\u00E3o dispon\\u00EDveis os v\\u00EDdeos do evento Net Neutrality - Neutralidade da Internet:Problem\\u00E1tica,estado da arte em Portugal.http://bit.ly/tgTKDd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:44 +0000", "from_user": "NiallGuitar", "from_user_id": 70671799, "from_user_id_str": "70671799", "from_user_name": "Joana 1D Horan \\u2665", "geo": null, "id": 148833407844089860, "id_str": "148833407844089856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702465264/niall.tour_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702465264/niall.tour_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Im from Portugal - BrazilNeedsUpAllNightTour - but Im helping!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:40 +0000", "from_user": "bogo_zakelijk", "from_user_id": 366045320, "from_user_id_str": "366045320", "from_user_name": "Bogobogo Zakelijk", "geo": null, "id": 148833391540834300, "id_str": "148833391540834304", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1561528928/facebooklogobogo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1561528928/facebooklogobogo_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF keurt lening aan Portugal goed: WASHINGTON (AFN) \\u2013 Het Internationaal Monetair Fonds (IMF) i... http://t.co/1pOtSf4k #economie #geld", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:39 +0000", "from_user": "NoticiasSpain", "from_user_id": 301658098, "from_user_id_str": "301658098", "from_user_name": "financialmarket.dk", "geo": null, "id": 148833386373447680, "id_str": "148833386373447681", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1361289073/jelveh20101111152223827_reasonably_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1361289073/jelveh20101111152223827_reasonably_small_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Noticias El FMI autoriza el desembolso de 2.900 millones del rescate de Portugal http://t.co/zBqGNmPf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:37 +0000", "from_user": "MontyBaby22", "from_user_id": 207240441, "from_user_id_str": "207240441", "from_user_name": "Lindo By Name", "geo": null, "id": 148833378983096320, "id_str": "148833378983096321", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1640755978/329849646_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640755978/329849646_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @chrisrichards91: @MontyBaby22 woiiiii loool sing. Where you from? \\u00AB Jamaica, Portugal, Wales and Russia, no African at all lool", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:36 +0000", "from_user": "MuriloAndrade7", "from_user_id": 159830347, "from_user_id_str": "159830347", "from_user_name": "Murilo Andrade", "geo": null, "id": 148833376546193400, "id_str": "148833376546193409", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1544689305/DSCF1405_-_C_pia_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544689305/DSCF1405_-_C_pia_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@thaynaks No meu de vez enquanto aparece algu\\u00E9m de Portugal... Ai tem uns nordestinos de Tocantins, Minas Gerais..m\\u00F3 loucura! ahah", "to_user": "thaynaks", "to_user_id": 259927098, "to_user_id_str": "259927098", "to_user_name": "2k, \\u2654", "in_reply_to_status_id": 148833072966664200, "in_reply_to_status_id_str": "148833072966664192"}, +{"created_at": "Mon, 19 Dec 2011 18:33:32 +0000", "from_user": "nettorodriggues", "from_user_id": 54784316, "from_user_id_str": "54784316", "from_user_name": "netto", "geo": null, "id": 148833358766542850, "id_str": "148833358766542850", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702210021/1321743889302_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702210021/1321743889302_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "rihanna b\\u00EAbado vomita no show em Portugal hehehehe beleza", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:32 +0000", "from_user": "JustMeBeingBad", "from_user_id": 289344020, "from_user_id_str": "289344020", "from_user_name": "Rafaela ", "geo": null, "id": 148833358506496000, "id_str": "148833358506496001", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668520435/08042010274_2_2_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668520435/08042010274_2_2_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Jacksonista born in Mozambique, brought up in South Africa and living in Portugal...phew!", "to_user": "Jacksonista", "to_user_id": 51018366, "to_user_id_str": "51018366", "to_user_name": "Mademoiselle Andret", "in_reply_to_status_id": 148832820758986750, "in_reply_to_status_id_str": "148832820758986752"}, +{"created_at": "Mon, 19 Dec 2011 18:33:27 +0000", "from_user": "angiesofs", "from_user_id": 399527440, "from_user_id_str": "399527440", "from_user_name": "\\u00E2ngela sofia ", "geo": null, "id": 148833338742947840, "id_str": "148833338742947841", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1642269206/SAM_0609_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642269206/SAM_0609_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@justinbieber @justinbieber COME TO PORTUGAL PLEASE \\u2665\\u2665\\u2665\\nCOME TO PORTUGAL PLEASE \\u2665\\u2665\\u2665\\nCOME TO PORTUGAL PLEASE \\u2665\\u2665\\u2665\\nCOME TO PORTUGAL PLEASE \\u2665\\u2665\\u2665", "to_user": "justinbieber", "to_user_id": 27260086, "to_user_id_str": "27260086", "to_user_name": "Justin Bieber"}, +{"created_at": "Mon, 19 Dec 2011 18:33:22 +0000", "from_user": "vrfoto", "from_user_id": 64950397, "from_user_id_str": "64950397", "from_user_name": "V R", "geo": null, "id": 148833317381353470, "id_str": "148833317381353474", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1166443656/vrfoto03_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1166443656/vrfoto03_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Rostos On-line - Portugal ganha a candidatura a Organizacao do Congresso Internacional de Museus Ma http://t.co/Jo5YUyrH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:18 +0000", "from_user": "malgokop", "from_user_id": 226707023, "from_user_id_str": "226707023", "from_user_name": "mal", "geo": null, "id": 148833301036154880, "id_str": "148833301036154880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "posted more photos from Portugal: http://t.co/UfbEDwrw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:14 +0000", "from_user": "angiesofs", "from_user_id": 399527440, "from_user_id_str": "399527440", "from_user_name": "\\u00E2ngela sofia ", "geo": null, "id": 148833281423589380, "id_str": "148833281423589376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1642269206/SAM_0609_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642269206/SAM_0609_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@justinbieber COME TO PORTUGAL PLEASE \\u2665\\u2665\\u2665\\nCOME TO PORTUGAL PLEASE \\u2665\\u2665\\u2665\\nCOME TO PORTUGAL PLEASE \\u2665\\u2665\\u2665\\nCOME TO PORTUGAL PLEASE \\u2665\\u2665\\u2665", "to_user": "justinbieber", "to_user_id": 27260086, "to_user_id_str": "27260086", "to_user_name": "Justin Bieber"}, +{"created_at": "Mon, 19 Dec 2011 18:33:13 +0000", "from_user": "bernardinomucci", "from_user_id": 222619943, "from_user_id_str": "222619943", "from_user_name": "bernard mucciolo", "geo": null, "id": 148833278055546880, "id_str": "148833278055546881", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://tweetmeme.com" rel="nofollow">TweetMeme</a>", "text": "El FMI autoriza el desembolso de 2.900 millones del rescate de Portugal - elEconomista.es http://t.co/VdZ4wdJ4 @orlandoochoa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:12 +0000", "from_user": "sixtoduarte", "from_user_id": 98241369, "from_user_id_str": "98241369", "from_user_name": "Sixto Duarte", "geo": null, "id": 148833275702554620, "id_str": "148833275702554625", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1576871488/NY_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576871488/NY_normal.jpg", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:04 +0000", "from_user": "AndreAlmeida86", "from_user_id": 182746470, "from_user_id_str": "182746470", "from_user_name": "Andre Almeida", "geo": null, "id": 148833242064232450, "id_str": "148833242064232448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1111171166/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1111171166/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rihanna: PORTUGAL tonight was LEGENDARY!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:01 +0000", "from_user": "HomeInsurance_", "from_user_id": 341208226, "from_user_id_str": "341208226", "from_user_name": "Home Insurance", "geo": null, "id": 148833230487953400, "id_str": "148833230487953408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.theleader.info/homeinsurance" rel="nofollow">Home Insurance</a>", "text": "CLASSIC HOME INSURANCE - http://t.co/agFralWd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:58 +0000", "from_user": "Was_jam1", "from_user_id": 324382624, "from_user_id_str": "324382624", "from_user_name": "Was_jam1", "geo": null, "id": 148833215346507780, "id_str": "148833215346507778", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1472466248/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1472466248/image_normal.jpg", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "RT @BBCWorld #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/Rc74x4Nr #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:45 +0000", "from_user": "Handandre", "from_user_id": 245019392, "from_user_id_str": "245019392", "from_user_name": "Andrew", "geo": null, "id": 148833160489218050, "id_str": "148833160489218048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1620981680/329165896_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620981680/329165896_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/ekrWjb4C #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:41 +0000", "from_user": "marianaabiebs", "from_user_id": 63496454, "from_user_id_str": "63496454", "from_user_name": "Mariana \\u2665", "geo": null, "id": 148833144940924930, "id_str": "148833144940924929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681792976/AgJnaarCAAArTll_-_C_pia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681792976/AgJnaarCAAArTll_-_C_pia_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@justinbieber you never came to Portugal. we're waiting for you. and we love you so much!", "to_user": "justinbieber", "to_user_id": 27260086, "to_user_id_str": "27260086", "to_user_name": "Justin Bieber"}, +{"created_at": "Mon, 19 Dec 2011 18:32:28 +0000", "from_user": "NunoGodinho", "from_user_id": 9971382, "from_user_id_str": "9971382", "from_user_name": "Nuno Godinho", "geo": null, "id": 148833089555148800, "id_str": "148833089555148800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/831407287/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/831407287/twitterProfilePhoto_normal.jpg", "source": "<a href="http://tweepsmap.com" rel="nofollow">TweepsMap</a>", "text": "32% of my followers are from #UnitedStates,20% from #Portugal & 6% from #Lisbon. http://t.co/n5S2ZYn5. What's your #TweepsMap ?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:18 +0000", "from_user": "aofertas_bauru", "from_user_id": 266627854, "from_user_id_str": "266627854", "from_user_name": "ApontaOfertas SP", "geo": null, "id": 148833049981890560, "id_str": "148833049981890562", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1273613502/apontaofertas_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273613502/apontaofertas_logo_normal.jpg", "source": "<a href="http://www.apontaofertas.com.br" rel="nofollow">ApontaOfertas</a>", "text": "R$13 por Lavagem Ecol\\u00F3gica Simples no Espuminha Lava Car (63% OFF). Use at\\u00E9 4 cupons http://t.co/hBT5O9C8 #apontaofertas", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:18 +0000", "from_user": "orca206", "from_user_id": 181319645, "from_user_id_str": "181319645", "from_user_name": "Manojjj", "geo": null, "id": 148833049231110140, "id_str": "148833049231110145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1267187104/P1010644_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1267187104/P1010644_normal.JPG", "source": "<a href="http://reuters.com/tools/mobile" rel="nofollow">Thomson Reuters News Pro</a>", "text": "RT @jennablan: IMF approves 2.9 billion euro tranche to Portugal http://t.co/e6PYgK8m", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:17 +0000", "from_user": "manilainformer", "from_user_id": 71996980, "from_user_id_str": "71996980", "from_user_name": "Manila Informer", "geo": null, "id": 148833043459747840, "id_str": "148833043459747840", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/498576751/1570415845_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/498576751/1570415845_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Manila IMF releases 2.9 bn euros to Portugal http://t.co/5RF1q8Yd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:07 +0000", "from_user": "StatesideSoccer", "from_user_id": 34699015, "from_user_id_str": "34699015", "from_user_name": "Stateside Soccer", "geo": null, "id": 148833000732373000, "id_str": "148833000732372992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1027384642/Shield4__Converted__TWITTER_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1027384642/Shield4__Converted__TWITTER_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#USsoccer: U.S. Women Placed in Group B at 2012 Algarve Cup in Portugal http://t.co/DCltW10V", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:05 +0000", "from_user": "claraguterres", "from_user_id": 75531816, "from_user_id_str": "75531816", "from_user_name": "Clara Guterres", "geo": null, "id": 148832993497190400, "id_str": "148832993497190400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1400763441/tw_9037214_1308353571_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1400763441/tw_9037214_1308353571_normal.jpg", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:01 +0000", "from_user": "AIESECKenya", "from_user_id": 54475909, "from_user_id_str": "54475909", "from_user_name": "AIESEC Kenya", "geo": null, "id": 148832976556396540, "id_str": "148832976556396545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1281705041/AIESEC_Kenya_map-web_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1281705041/AIESEC_Kenya_map-web_normal.jpg", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:00 +0000", "from_user": "ValutaKoersen", "from_user_id": 289404154, "from_user_id_str": "289404154", "from_user_name": "Financi\\u00EBn", "geo": null, "id": 148832972232081400, "id_str": "148832972232081408", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1428949511/05_64x64_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1428949511/05_64x64_normal.png", "source": "<a href="http://no.nl/" rel="nofollow">No.nl</a>", "text": "#Financieelnieuws - IMF keurt lening aan Portugal goed - http://t.co/6l74ORSJ - Het Internationaal Monetair Fonds (IMF) is maandag akkoo..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:58 +0000", "from_user": "KENNYKENNY0819", "from_user_id": 361536498, "from_user_id_str": "361536498", "from_user_name": "KENNEY\\uFF20\\u3051\\u306B\\u30FC", "geo": null, "id": 148832964648775680, "id_str": "148832964648775680", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1548176919/12b94112e880e0dd81c5d5ca50be471eda80_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1548176919/12b94112e880e0dd81c5d5ca50be471eda80_normal.gif", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\\u30D9\\u30F3\\u30D5\\u30A3\\u30AB\\u306F\\u30A6\\u30EB\\u30B0\\u30A2\\u30A4\\u4EE3\\u8868\\u306E\\u30DE\\u30AD\\u30B7\\u30DF\\u30EA\\u30A2\\u30FC\\u30CE\\u30FB\\u30DA\\u30EC\\u30A4\\u30E9\\u3068\\u306E\\u5951\\u7D04\\u3092\\uFF13\\u5E74\\u9593\\u5EF6\\u9577\\u3068\\u767A\\u8868\\u3002\\u30D9\\u30F3\\u30D5\\u30A3\\u30AB\\u306F\\u4ECA\\u5B63\\u306E\\uFF23\\uFF2C\\u3067\\u30B0\\u30EB\\u30FC\\u30D7\\u9996\\u4F4D\\u3067\\u6C7A\\u52DD\\uFF34\\u306B\\u9032\\u51FA\\u3057\\u30D9\\u30B9\\u30C8\\uFF11\\uFF16\\u3067\\u30BC\\u30CB\\u30C8\\u3068\\u5BFE\\u6226 #Benfica #Portugal #Uruguay #daihyo #CL\\nhttp://t.co/8OTQvERN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:58 +0000", "from_user": "YCfansinworld", "from_user_id": 389676234, "from_user_id_str": "389676234", "from_user_name": "YCfansaroundtheworld", "geo": null, "id": 148832964296458240, "id_str": "148832964296458240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1619267554/Untitled_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619267554/Untitled_7_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Yellowcard - Rough Landing Holly - Live in Portugal. Just: WOW! http://t.co/C84BgIef", "to_user": "Yellowcard", "to_user_id": 172896656, "to_user_id_str": "172896656", "to_user_name": "Yellowcard"}, +{"created_at": "Mon, 19 Dec 2011 18:31:57 +0000", "from_user": "Gordzdeadline", "from_user_id": 237900004, "from_user_id_str": "237900004", "from_user_name": "Gordz", "geo": null, "id": 148832960756461570, "id_str": "148832960756461568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669160833/290112_10150279219111593_552626592_7899859_7773604_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669160833/290112_10150279219111593_552626592_7899859_7773604_o_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "lol \"/ RT @nicthemartian: weh ras deh wen mi deh a portugal a train wid sporting juniors", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:57 +0000", "from_user": "101_renascer", "from_user_id": 352369230, "from_user_id_str": "352369230", "from_user_name": "Radio Renascer 101,5", "geo": null, "id": 148832960131498000, "id_str": "148832960131497984", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1556344595/101_5_pra_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1556344595/101_5_pra_twitter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @PrSimaias: @101_renascer Estamos ouvindo a renacer desde Portugal saudades de todos ai ........", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:54 +0000", "from_user": "Lindsay_Lu", "from_user_id": 15877051, "from_user_id_str": "15877051", "from_user_name": "Lindsay Siegel", "geo": null, "id": 148832949259874300, "id_str": "148832949259874304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1302168444/ls_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1302168444/ls_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:34 +0000", "from_user": "JSAfonso", "from_user_id": 57688286, "from_user_id_str": "57688286", "from_user_name": "Joana Afonso", "geo": null, "id": 148832862366482430, "id_str": "148832862366482433", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprovou terceira tranche do empr\\u00E9stimo a Portugal: O Fundo Monet\\u00E1rio Internacional aprovou hoje a terceira t... http://t.co/9AOeetWN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:32 +0000", "from_user": "palexandrebrito", "from_user_id": 145367825, "from_user_id_str": "145367825", "from_user_name": "Alexandre Brito", "geo": +{"coordinates": [-23.5673,-46.7547], "type": "Point"}, "id": 148832855009673200, "id_str": "148832855009673216", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694912861/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694912861/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@WesleyBispo7 mano eu estava l\\u00E1 no pavilh\\u00E3o dos @Gideoes pregando no domingo passado e ia mandar um alo p vc ai em Portugal", "to_user": "WesleyBispo7", "to_user_id": 360266130, "to_user_id_str": "360266130", "to_user_name": "Wesley Bispo"}, +{"created_at": "Mon, 19 Dec 2011 18:31:32 +0000", "from_user": "david000089", "from_user_id": 141960383, "from_user_id_str": "141960383", "from_user_name": "david ", "geo": null, "id": 148832853789122560, "id_str": "148832853789122561", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689309801/GIJON_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689309801/GIJON_normal.jpg", "source": "<a href="http://tweetmeme.com" rel="nofollow">TweetMeme</a>", "text": "El FMI autoriza el desembolso de 2.900 millones del rescate de Portugal - elEconomista.es http://t.co/EPMtwkx5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:27 +0000", "from_user": "davidcavaco", "from_user_id": 34067839, "from_user_id_str": "34067839", "from_user_name": "David Cavaco", "geo": null, "id": 148832833849393150, "id_str": "148832833849393152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702601385/CIMG3240_-_C_pia_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702601385/CIMG3240_-_C_pia_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@rihanna Rihanna, I'm portuguese and Portugal waits for you everytime. You rock gurl! ly <3", "to_user": "rihanna", "to_user_id": 79293791, "to_user_id_str": "79293791", "to_user_name": "Rihanna"}, +{"created_at": "Mon, 19 Dec 2011 18:31:20 +0000", "from_user": "TugasParadise", "from_user_id": 86572029, "from_user_id_str": "86572029", "from_user_name": "Tuga's Paradise", "geo": null, "id": 148832805030346750, "id_str": "148832805030346752", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/502488031/blog_banner_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/502488031/blog_banner_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "T\\u00E2nia Ribas de Oliveira @ Portugal no Cora\\u00E7\\u00E3o http://t.co/tLY83JM5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:17 +0000", "from_user": "mohdtwit", "from_user_id": 289537139, "from_user_id_str": "289537139", "from_user_name": "elepo mohammed", "geo": null, "id": 148832791805689860, "id_str": "148832791805689858", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698922422/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698922422/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:12 +0000", "from_user": "Nana2319", "from_user_id": 281565035, "from_user_id_str": "281565035", "from_user_name": "MarianaPereira", "geo": null, "id": 148832769521356800, "id_str": "148832769521356802", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1684896733/IMG_0898_-_C_pia_-_C_pia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684896733/IMG_0898_-_C_pia_-_C_pia_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#PORTUGAL needs @justinbieber <3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:05 +0000", "from_user": "Kittee__", "from_user_id": 429551056, "from_user_id_str": "429551056", "from_user_name": "Alexis in wonderland", "geo": null, "id": 148832741193027600, "id_str": "148832741193027585", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685421432/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685421432/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Woke up listening to Portugal; the man <3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:03 +0000", "from_user": "PS_Grad", "from_user_id": 427846339, "from_user_id_str": "427846339", "from_user_name": "Name", "geo": null, "id": 148832732804431870, "id_str": "148832732804431872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1672451023/Screen_Shot_2011-12-03_at_9.12.00_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672451023/Screen_Shot_2011-12-03_at_9.12.00_PM_normal.png", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:01 +0000", "from_user": "tayohjudas", "from_user_id": 229694886, "from_user_id_str": "229694886", "from_user_name": "tay pros intimos", "geo": null, "id": 148832723753123840, "id_str": "148832723753123840", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1528264250/tay_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1528264250/tay_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "essa camisa da @cindereIIadrunk me lembra bons momentos na portugal dflkgjfdlkgjdflgdfgjhhhjf mirta", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:00 +0000", "from_user": "MarceloLimana", "from_user_id": 393172060, "from_user_id_str": "393172060", "from_user_name": "Marcelo Limana", "geo": null, "id": 148832719428788220, "id_str": "148832719428788224", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1593949698/Imagem_207_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593949698/Imagem_207_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @98SpM: Rihanna contou em seu Twitter que foi v\\u00EDtima de racismo em Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:56 +0000", "from_user": "BayportAquaman", "from_user_id": 69811961, "from_user_id_str": "69811961", "from_user_name": "dave ness jr ", "geo": null, "id": 148832706040565760, "id_str": "148832706040565760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1607999975/17940_1228073422826_1258787759_30569732_7245648_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607999975/17940_1228073422826_1258787759_30569732_7245648_n_normal.jpg", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:55 +0000", "from_user": "X_Pride", "from_user_id": 373953175, "from_user_id_str": "373953175", "from_user_name": "XPride", "geo": null, "id": 148832698117529600, "id_str": "148832698117529603", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1606801478/big_culo_maschile_12_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606801478/big_culo_maschile_12_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Superpride: Rihanna sofre racismo em Portugal http://t.co/2ywcDCuB via @NelsonSheep", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:54 +0000", "from_user": "sergiolopezmir", "from_user_id": 307452066, "from_user_id_str": "307452066", "from_user_name": "sergioLM 67", "geo": null, "id": 148832697207373820, "id_str": "148832697207373826", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1650135623/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650135623/images_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @lemondefr: Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/zeOt21vW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:54 +0000", "from_user": "NelsonSheep", "from_user_id": 40680788, "from_user_id_str": "40680788", "from_user_name": "Nelson Sheep", "geo": null, "id": 148832694900502530, "id_str": "148832694900502528", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1591760397/Ab6Ws_xCMAITVxA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591760397/Ab6Ws_xCMAITVxA_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Superpride: Rihanna sofre racismo em Portugal http://t.co/FslHWs1w via @NelsonSheep", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:53 +0000", "from_user": "StudyingAbroad", "from_user_id": 16629564, "from_user_id_str": "16629564", "from_user_name": "StudyingAbroad", "geo": null, "id": 148832689829576700, "id_str": "148832689829576705", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/881431724/sab_icon_v2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/881431724/sab_icon_v2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Trivia! RT @frugaltraveler: Buonos dies! OK, no googling allowed, what is the second official language of Portugal? http://t.co/d74JIO7d", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:48 +0000", "from_user": "Superpride_", "from_user_id": 128892502, "from_user_id_str": "128892502", "from_user_name": "Superpride", "geo": null, "id": 148832670284124160, "id_str": "148832670284124161", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/957022001/twitter_SP_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/957022001/twitter_SP_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Superpride: Rihanna sofre racismo em Portugal http://t.co/qhu8LdHA via @NelsonSheep", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:47 +0000", "from_user": "Nana2319", "from_user_id": 281565035, "from_user_id_str": "281565035", "from_user_name": "MarianaPereira", "geo": null, "id": 148832666815430660, "id_str": "148832666815430657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1684896733/IMG_0898_-_C_pia_-_C_pia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684896733/IMG_0898_-_C_pia_-_C_pia_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@justinbieber HEEEEEEYYY! #ILoveYou Come to #PORTUGAL I wanna see you", "to_user": "justinbieber", "to_user_id": 27260086, "to_user_id_str": "27260086", "to_user_name": "Justin Bieber"}, +{"created_at": "Mon, 19 Dec 2011 18:30:46 +0000", "from_user": "1casaecohomes", "from_user_id": 17333475, "from_user_id_str": "17333475", "from_user_name": "Cristina Sanchez", "geo": null, "id": 148832660238774270, "id_str": "148832660238774274", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1602663768/1Casa_Twitter_Icon_L_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1602663768/1Casa_Twitter_Icon_L_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Global viewr Featured Agent RE/MAX #Portugal ~ Nuno\\nMiguel ~ - http://t.co/ZZGw8RnH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:45 +0000", "from_user": "ForSaleiAlgarve", "from_user_id": 386105591, "from_user_id_str": "386105591", "from_user_name": "For Sale in Algarve", "geo": null, "id": 148832659907420160, "id_str": "148832659907420160", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1575941712/For_Sale_In_Algarve_Twitter_Logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575941712/For_Sale_In_Algarve_Twitter_Logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Villa for sale in Lagoa Benagil | 4 bedrooms ~ For-Sale-in-Algarve ~\\n#Algarve #Portugal - http://t.co/6BF1PeKX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:45 +0000", "from_user": "paulocfigueired", "from_user_id": 43205791, "from_user_id_str": "43205791", "from_user_name": "PauloCesarFigueiredo", "geo": null, "id": 148832657751552000, "id_str": "148832657751552000", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/237061225/PauloMSN_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/237061225/PauloMSN_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Ces\\u00E1ria \\u00C9vora: \\u00C1frica perde uma voz, o C\\u00E9u ganha uma alma - Pravda.Ru http://t.co/q1VYlwTO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:44 +0000", "from_user": "hughlandsman", "from_user_id": 14844732, "from_user_id_str": "14844732", "from_user_name": "Hugh Landsman", "geo": null, "id": 148832651745296400, "id_str": "148832651745296384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/331563001/head_silhouette1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/331563001/head_silhouette1_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "No dice at C check in, wonder if the people at TAP Portugal will check me in.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:43 +0000", "from_user": "ta_nascimento", "from_user_id": 33332157, "from_user_id_str": "33332157", "from_user_name": "Tais Nascimento", "geo": null, "id": 148832647643283460, "id_str": "148832647643283456", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1468555295/DSC00394_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1468555295/DSC00394_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Rihanna conta que foi v\\u00EDtima de racismo em Portugal - O Globo http://t.co/kRM4NjG6 via @JornalOGlobo Nem Rihanna escapa desta merda....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:42 +0000", "from_user": "Privat_Kredit", "from_user_id": 388111107, "from_user_id_str": "388111107", "from_user_name": "Annes Privatkredit", "geo": null, "id": 148832645864882180, "id_str": "148832645864882176", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1581227011/privatkredit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1581227011/privatkredit_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IWF gibt n\\u00E4chste Hilfstranche f\\u00FCr Portugal frei: \\u00A0\\u00A0 WASHINGTON (AFP)--Der Internationale W\\u00E4hrungsfonds (IWF) hat... http://t.co/LyHVXxdq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:39 +0000", "from_user": "ZNENDrii", "from_user_id": 136810331, "from_user_id_str": "136810331", "from_user_name": "ZNENDrii", "geo": null, "id": 148832633936293900, "id_str": "148832633936293888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1483674601/blue-lily_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1483674601/blue-lily_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "http://t.co/jmCqhZ8Y Thanks Portugal , our Half black,South European friends,4 making racially confused Rihanna , accept her blackness.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:37 +0000", "from_user": "nicthemartian", "from_user_id": 283274182, "from_user_id_str": "283274182", "from_user_name": "Nicholai Marston ", "geo": null, "id": 148832625753206800, "id_str": "148832625753206784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1314360438/P8202002_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1314360438/P8202002_normal.JPG", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "weh ras deh wen mi deh a portugal a train wid sporting juniors", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:34 +0000", "from_user": "MartaRebocho", "from_user_id": 441032217, "from_user_id_str": "441032217", "from_user_name": "Marta Rebocho", "geo": null, "id": 148832610028748800, "id_str": "148832610028748804", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702504675/tumblr_lm58iekFhp1qgny6so1_500_large_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702504675/tumblr_lm58iekFhp1qgny6so1_500_large_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@zaynmalik can you follow me? You are beautiful!!! You have to come to Portugal \\u2665", "to_user": "zaynmalik", "to_user_id": 176566242, "to_user_id_str": "176566242", "to_user_name": "zaynmalik1D"}, +{"created_at": "Mon, 19 Dec 2011 18:30:33 +0000", "from_user": "goknur8", "from_user_id": 252614831, "from_user_id_str": "252614831", "from_user_name": "Goknur", "geo": null, "id": 148832609487687680, "id_str": "148832609487687680", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1596442633/1398203521_5_8e2X_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596442633/1398203521_5_8e2X_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@erivaldoJWZ veel plezier in Portugal x", "to_user": "erivaldoJWZ", "to_user_id": 274065320, "to_user_id_str": "274065320", "to_user_name": "Erivaldo "}, +{"created_at": "Mon, 19 Dec 2011 18:30:33 +0000", "from_user": "lipeferreiraa", "from_user_id": 41880234, "from_user_id_str": "41880234", "from_user_name": "Filipe Ferreira", "geo": null, "id": 148832609143767040, "id_str": "148832609143767040", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1419766107/filipee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1419766107/filipee_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "aee logo menos to indo pra guarulhos e a noite partiu portugal =))))", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:32 +0000", "from_user": "DoraHMatos", "from_user_id": 271027891, "from_user_id_str": "271027891", "from_user_name": "Dora Henriques Matos", "geo": null, "id": 148832602453843970, "id_str": "148832602453843968", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1307125689/Untitled-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1307125689/Untitled-1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Un periodista espa\\u00F1ol pregunta y escribe \\u00BFPor qu\\u00E9 el caf\\u00E9 sabe siempre bien en Portugal? (y aqu\\u00ED no) http://t.co/he4kofzq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:30 +0000", "from_user": "irur_zun", "from_user_id": 434271385, "from_user_id_str": "434271385", "from_user_name": "I\\u00F1igo Irurzun", "geo": null, "id": 148832596539883520, "id_str": "148832596539883521", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687314082/image__18__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687314082/image__18__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MaddalenLoidi historiakoa (espaata portugal) pasa gmailea!", "to_user": "MaddalenLoidi", "to_user_id": 438460424, "to_user_id_str": "438460424", "to_user_name": "Maddalen Loidi"}, +{"created_at": "Mon, 19 Dec 2011 18:30:30 +0000", "from_user": "Brendatenhoeve", "from_user_id": 380926054, "from_user_id_str": "380926054", "from_user_name": "Brenda ten Hoeve", "geo": null, "id": 148832594430132220, "id_str": "148832594430132224", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1634215113/brendaxx_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634215113/brendaxx_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "http://t.co/SUNnaHva Klaar om naar portugal te gaan met mn roze koffer haha leuk verjaardagscadeau van ... http://t.co/sgPFJDIV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:28 +0000", "from_user": "fhenriques", "from_user_id": 8884772, "from_user_id_str": "8884772", "from_user_name": "Filipe S. Henriques", "geo": null, "id": 148832588612636670, "id_str": "148832588612636672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1645725492/foto_perfil_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645725492/foto_perfil_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/w8A1D0yz #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:20 +0000", "from_user": "SocMeDotMe", "from_user_id": 371995419, "from_user_id_str": "371995419", "from_user_name": "Karl Lingenfelder", "geo": null, "id": 148832554638782460, "id_str": "148832554638782464", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1546120426/SocMe_Twitter_Icon_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546120426/SocMe_Twitter_Icon_2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Villa for sale in Lagoa Benagil | 4 bedrooms ~ For-Sale-in-Algarve ~\\n#Algarve #Portugal - http://t.co/SrZIKMN4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:17 +0000", "from_user": "rhyswynne", "from_user_id": 7226742, "from_user_id_str": "7226742", "from_user_name": "Rhys Wynne", "geo": null, "id": 148832538683650050, "id_str": "148832538683650048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1428783781/a7d2fd30-5855-40b7-8ec1-643224563efd_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1428783781/a7d2fd30-5855-40b7-8ec1-643224563efd_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @Pamela_Lund: RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/zSIcQYy9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:08 +0000", "from_user": "iGRQ", "from_user_id": 135204035, "from_user_id_str": "135204035", "from_user_name": "iGRQ Research", "geo": null, "id": 148832502872674300, "id_str": "148832502872674305", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1191165919/iGRQ_Twitter_Avatar.001_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1191165919/iGRQ_Twitter_Avatar.001_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal http://t.co/lEvYlTWT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:03 +0000", "from_user": "pecisk", "from_user_id": 14819764, "from_user_id_str": "14819764", "from_user_name": "P\\u0113teris Kri\\u0161j\\u0101nis", "geo": null, "id": 148832482836484100, "id_str": "148832482836484096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1395669574/45394_1575793075309_1250068529_31575304_1942089_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1395669574/45394_1575793075309_1250068529_31575304_1942089_n_normal.jpg", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:59 +0000", "from_user": "ShalomNatal", "from_user_id": 77448299, "from_user_id_str": "77448299", "from_user_name": "Shalom Natal", "geo": null, "id": 148832466143154180, "id_str": "148832466143154176", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1454253132/201593_124468830964877_100002052830421_171898_8321290_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1454253132/201593_124468830964877_100002052830421_171898_8321290_o_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Carmad\\u00E9lio * S\\u00E9rio! Voc\\u00EA faria parte dos 95%?: Dias antes do\\u00A0jogo entre Benfica e Sporting (1-0), em Portugal, a... http://t.co/UFdTvOMG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:59 +0000", "from_user": "anabibliosouza", "from_user_id": 58915809, "from_user_id_str": "58915809", "from_user_name": "\\u273FAna Souza\\u273F", "geo": null, "id": 148832465019093000, "id_str": "148832465019092993", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694903420/jesus-coracao_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694903420/jesus-coracao_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "* S\\u00E9rio! Voc\\u00EA faria parte dos 95%?: Dias antes do\\u00A0jogo entre Benfica e Sporting (1-0), em Portugal, a Coca-Cola ... http://t.co/ITF1rHGv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:50 +0000", "from_user": "weickmann", "from_user_id": 63666185, "from_user_id_str": "63666185", "from_user_name": "Philippe Weickmann", "geo": null, "id": 148832428528631800, "id_str": "148832428528631808", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1081716678/philippe-weickmann_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1081716678/philippe-weickmann_normal.png", "source": "<a href="http://www.visibli.com" rel="nofollow">Visibli</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/s8rrxlXD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:49 +0000", "from_user": "meninasemusica", "from_user_id": 256500127, "from_user_id_str": "256500127", "from_user_name": "Meninas e M\\u00FAsica", "geo": null, "id": 148832422409158660, "id_str": "148832422409158656", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1258616710/AVATAR_MENINAS_E_MUSICA__cortado__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1258616710/AVATAR_MENINAS_E_MUSICA__cortado__normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "V\\u00EDdeo: Rihanna sai correndo do palco para vomitar durante show em Portugal? http://t.co/OKWU7VwP eeeeeeeita", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:47 +0000", "from_user": "Pabjojot", "from_user_id": 212762057, "from_user_id_str": "212762057", "from_user_name": "Paulina B Jojot", "geo": null, "id": 148832413592715260, "id_str": "148832413592715264", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1164962416/Paulina_foto_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1164962416/Paulina_foto_normal.JPG", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @RedEconomica: El FMI autoriza el desembolso de 2.900 millones del siguiente tramo del rescate de Portugal http://t.co/unOOissB [Yahoo] #Economia", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:46 +0000", "from_user": "FATINE69", "from_user_id": 438585510, "from_user_id_str": "438585510", "from_user_name": "FATINE", "geo": null, "id": 148832411298430980, "id_str": "148832411298430977", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @lemondefr: Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/zeOt21vW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:43 +0000", "from_user": "Nielsbak", "from_user_id": 252131116, "from_user_id_str": "252131116", "from_user_name": "Niels Bakker", "geo": null, "id": 148832399864766460, "id_str": "148832399864766464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1445426603/Afb0009_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1445426603/Afb0009_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @DJFUNKD: Had some great gigs last weekend! Portugal-Lisbon was off the hook // COMING UP THIS WEEK: Marrakech-Morocco / Bootleg Pack 04 Release", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:13 +0000", "from_user": "Dima_Alexandre", "from_user_id": 42737998, "from_user_id_str": "42737998", "from_user_name": "Dave Vel\\u00E1squez", "geo": null, "id": 148832270290133000, "id_str": "148832270290132993", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1582479599/270539_10150326755573714_725083713_9549598_1801727_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1582479599/270539_10150326755573714_725083713_9549598_1801727_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@lemondefr: Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/xria2Iho\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:10 +0000", "from_user": "andyrahmansyah", "from_user_id": 102359936, "from_user_id_str": "102359936", "from_user_name": "Andy Rahmansyah", "geo": null, "id": 148832261012324350, "id_str": "148832261012324353", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1640687755/botak_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640687755/botak_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Hashim0307: I remember when North Korea lost 7-0 to Portugal in WC2010, media in North Korea reported the match ended 0-0. Hilarious.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:05 +0000", "from_user": "vesper385", "from_user_id": 20710912, "from_user_id_str": "20710912", "from_user_name": "Adin Heller", "geo": null, "id": 148832239529115650, "id_str": "148832239529115649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1624587689/turquoisesparkle_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624587689/turquoisesparkle_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "confusing when preceded by an @TomCruise tweet #otherIMF RT @BBCWorld: #IMF approves release of 2.9bn euros to Portugal http://t.co/UvEW1ogR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:04 +0000", "from_user": "klubbatmosphere", "from_user_id": 16882251, "from_user_id_str": "16882251", "from_user_name": "urbannightlife", "geo": null, "id": 148832232801447940, "id_str": "148832232801447936", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/62507526/WE_floyd_noFACE_avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/62507526/WE_floyd_noFACE_avatar_normal.jpg", "source": "<a href="http://publicize.wp.com/" rel="nofollow">WordPress.com</a>", "text": "Rihanna Abused in Portugal http://t.co/FqL0GAvc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:04 +0000", "from_user": "portugalforum", "from_user_id": 41989700, "from_user_id_str": "41989700", "from_user_name": "portugalforum", "geo": null, "id": 148832232629481470, "id_str": "148832232629481473", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/487842239/pfo_icon_gr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/487842239/pfo_icon_gr_normal.jpg", "source": "<a href="http://www.portugalforum.org" rel="nofollow">portugalforum.org</a>", "text": "EuroNews: Portugal verschreibt sich einen harten Sparkurs: Angesichts der drohenden Pleite hat das portugiesische http://t.co/rxx2zG25", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:03 +0000", "from_user": "jennablan", "from_user_id": 110302086, "from_user_id_str": "110302086", "from_user_name": "Jennifer Ablan", "geo": null, "id": 148832231975161860, "id_str": "148832231975161856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1200243910/juniper3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1200243910/juniper3_normal.jpg", "source": "<a href="http://reuters.com/tools/mobile" rel="nofollow">Thomson Reuters News Pro</a>", "text": "IMF approves 2.9 billion euro tranche to Portugal http://t.co/e6PYgK8m", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:03 +0000", "from_user": "RedEconomica", "from_user_id": 320309673, "from_user_id_str": "320309673", "from_user_name": "La Red Econ\\u00F3mica", "geo": null, "id": 148832231115337730, "id_str": "148832231115337728", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1403366820/19-06-2011_03-10-16_p-m-_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1403366820/19-06-2011_03-10-16_p-m-_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "El FMI autoriza el desembolso de 2.900 millones del siguiente tramo del rescate de Portugal http://t.co/unOOissB [Yahoo] #Economia", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:54 +0000", "from_user": "BearWynn", "from_user_id": 270192638, "from_user_id_str": "270192638", "from_user_name": "Barry Wynn", "geo": null, "id": 148832193106546700, "id_str": "148832193106546690", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1557749825/100_1921_uga_7_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1557749825/100_1921_uga_7_normal", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:54 +0000", "from_user": "StephanieLaurax", "from_user_id": 431208690, "from_user_id_str": "431208690", "from_user_name": "Stephanie Hesp", "geo": null, "id": 148832192007634940, "id_str": "148832192007634945", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680022670/2011-10-25_21.52.24_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680022670/2011-10-25_21.52.24_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Christmas Eve, Christmas Day and Portugal on boxing day! Got a very exciting week ahead :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:52 +0000", "from_user": "Vic_Alvarado", "from_user_id": 135549931, "from_user_id_str": "135549931", "from_user_name": "Vic", "geo": null, "id": 148832183400927230, "id_str": "148832183400927232", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/989523311/Hand..._normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/989523311/Hand..._normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @lemondefr: Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/zeOt21vW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:46 +0000", "from_user": "LuArFever", "from_user_id": 331335418, "from_user_id_str": "331335418", "from_user_name": "LuArFever", "geo": null, "id": 148832157077475330, "id_str": "148832157077475329", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1672387618/catsn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672387618/catsn_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@RebeldeFC_ChayS Filipa !! Moras em que zona de portugal?", "to_user": "RebeldeFC_ChayS", "to_user_id": 433556867, "to_user_id_str": "433556867", "to_user_name": "Taty do Chay :D", "in_reply_to_status_id": 148831810493755400, "in_reply_to_status_id_str": "148831810493755392"}, +{"created_at": "Mon, 19 Dec 2011 18:28:39 +0000", "from_user": "hihelloimailidh", "from_user_id": 51259885, "from_user_id_str": "51259885", "from_user_name": "Ailidh Kinney", "geo": null, "id": 148832128669458430, "id_str": "148832128669458433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1596361443/meeeee_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596361443/meeeee_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "My dad's going to Portugal tomorrow so I hope we get our Christmas presents tonight.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:23 +0000", "from_user": "silverliningguy", "from_user_id": 354550549, "from_user_id_str": "354550549", "from_user_name": "Silver Lining", "geo": null, "id": 148832063246704640, "id_str": "148832063246704640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1493822418/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1493822418/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:17 +0000", "from_user": "Impronta", "from_user_id": 10833162, "from_user_id_str": "10833162", "from_user_name": "Jorge Ramos", "geo": null, "id": 148832035476221950, "id_str": "148832035476221952", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1562106490/tw_12701645_1317112096_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1562106490/tw_12701645_1317112096_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @Dirigentes: El FMI autoriza el desembolso del siguiente tramo del rescate de Portugal http://t.co/BQsoieVk #economia #ecofin", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:08 +0000", "from_user": "vandelium", "from_user_id": 248471826, "from_user_id_str": "248471826", "from_user_name": "NINO DEL PIERO", "geo": null, "id": 148832001330393100, "id_str": "148832001330393089", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1413092232/cubo-rubick-05_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1413092232/cubo-rubick-05_normal.gif", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:08 +0000", "from_user": "adriannacullen2", "from_user_id": 272655210, "from_user_id_str": "272655210", "from_user_name": "Adrianna Cullen", "geo": null, "id": 148832000374091780, "id_str": "148832000374091777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696038555/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696038555/image_normal.jpg", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:08 +0000", "from_user": "Jendral_29", "from_user_id": 246801834, "from_user_id_str": "246801834", "from_user_name": "Yusuf Syakir", "geo": null, "id": 148831998218223600, "id_str": "148831998218223617", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1646154750/IMG0059_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646154750/IMG0059_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Mau lu apa ceng? bahasa spanyol apa portugal? hah? sbut aja?RT @fadhilfary Bisanya cuman whatever doang :-p", "to_user": "fadhilfary", "to_user_id": 135844848, "to_user_id_str": "135844848", "to_user_name": "fadhil razan w", "in_reply_to_status_id": 148831699432775680, "in_reply_to_status_id_str": "148831699432775681"} +, +{"created_at": "Mon, 19 Dec 2011 18:28:08 +0000", "from_user": "vandelium", "from_user_id": 248471826, "from_user_id_str": "248471826", "from_user_name": "NINO DEL PIERO", "geo": null, "id": 148832001330393100, "id_str": "148832001330393089", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1413092232/cubo-rubick-05_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1413092232/cubo-rubick-05_normal.gif", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:08 +0000", "from_user": "adriannacullen2", "from_user_id": 272655210, "from_user_id_str": "272655210", "from_user_name": "Adrianna Cullen", "geo": null, "id": 148832000374091780, "id_str": "148832000374091777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696038555/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696038555/image_normal.jpg", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:08 +0000", "from_user": "Jendral_29", "from_user_id": 246801834, "from_user_id_str": "246801834", "from_user_name": "Yusuf Syakir", "geo": null, "id": 148831998218223600, "id_str": "148831998218223617", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1646154750/IMG0059_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646154750/IMG0059_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Mau lu apa ceng? bahasa spanyol apa portugal? hah? sbut aja?RT @fadhilfary Bisanya cuman whatever doang :-p", "to_user": "fadhilfary", "to_user_id": 135844848, "to_user_id_str": "135844848", "to_user_name": "fadhil razan w", "in_reply_to_status_id": 148831699432775680, "in_reply_to_status_id_str": "148831699432775681"}, +{"created_at": "Mon, 19 Dec 2011 18:28:04 +0000", "from_user": "MdAdnanShaikh", "from_user_id": 433434599, "from_user_id_str": "433434599", "from_user_name": "Md. Adnan Shaikh", "geo": null, "id": 148831983798194180, "id_str": "148831983798194179", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1688717782/176025_1854764886849_1172619485_2275281_5247028_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688717782/176025_1854764886849_1172619485_2275281_5247028_o_normal.jpg", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:04 +0000", "from_user": "AraaFts", "from_user_id": 210632613, "from_user_id_str": "210632613", "from_user_name": "Ara Fleites", "geo": null, "id": 148831983110332400, "id_str": "148831983110332416", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1659543317/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659543317/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Como me encanta Portugal. The Man.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:58 +0000", "from_user": "JoffreyMick", "from_user_id": 255731473, "from_user_id_str": "255731473", "from_user_name": "Joffrey Mick", "geo": null, "id": 148831956904316930, "id_str": "148831956904316929", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1276794848/Photo_Brutus_and_me__Louvre__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1276794848/Photo_Brutus_and_me__Louvre__normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @lemondefr: Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/zeOt21vW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:58 +0000", "from_user": "CenAriella", "from_user_id": 367752827, "from_user_id_str": "367752827", "from_user_name": "Cene \\u2716\\u2765", "geo": null, "id": 148831955637637120, "id_str": "148831955637637120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701188968/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701188968/image_normal.jpg", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:55 +0000", "from_user": "cbattistella", "from_user_id": 224355892, "from_user_id_str": "224355892", "from_user_name": "Cassia BATTISTELLA", "geo": null, "id": 148831946288533500, "id_str": "148831946288533504", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1626096564/Photo_du_7908882-10-___02.11_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626096564/Photo_du_7908882-10-___02.11_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @lemondefr: Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/zeOt21vW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:49 +0000", "from_user": "joyretired", "from_user_id": 104136175, "from_user_id_str": "104136175", "from_user_name": "joy retired", "geo": null, "id": 148831920699080700, "id_str": "148831920699080704", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1028841628/imagesCANS0LY2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1028841628/imagesCANS0LY2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/sr8GLdaH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:43 +0000", "from_user": "Jannekevd94", "from_user_id": 268687784, "from_user_id_str": "268687784", "from_user_name": "Janneke ", "geo": null, "id": 148831896632180740, "id_str": "148831896632180736", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1591949943/met_silvie_vd_vaart2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591949943/met_silvie_vd_vaart2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@jitskeverhagen hah nou niet naar amerika en portugal hoor haha!", "to_user": "jitskeverhagen", "to_user_id": 26261725, "to_user_id_str": "26261725", "to_user_name": "Jitske ", "in_reply_to_status_id": 148826959445635070, "in_reply_to_status_id_str": "148826959445635072"}, +{"created_at": "Mon, 19 Dec 2011 18:27:41 +0000", "from_user": "Y02", "from_user_id": 21055568, "from_user_id_str": "21055568", "from_user_name": "Yasser\\u2122", "geo": null, "id": 148831887819943940, "id_str": "148831887819943936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1664290075/11_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664290075/11_normal.jpg", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:40 +0000", "from_user": "Valeriasnews", "from_user_id": 235915008, "from_user_id_str": "235915008", "from_user_name": "Valeria", "geo": null, "id": 148831880207278080, "id_str": "148831880207278080", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1210873414/spirale_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1210873414/spirale_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @lemondefr: Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/zeOt21vW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:38 +0000", "from_user": "Bruno___Macedo", "from_user_id": 47113044, "from_user_id_str": "47113044", "from_user_name": "Bruno Macedo", "geo": null, "id": 148831874268139520, "id_str": "148831874268139520", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700603811/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700603811/image_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @lemondefr: Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/zeOt21vW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:34 +0000", "from_user": "Juzims", "from_user_id": 56671665, "from_user_id_str": "56671665", "from_user_name": "Juris Petrovs", "geo": null, "id": 148831858229116930, "id_str": "148831858229116928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/312997871/melf_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/312997871/melf_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:27 +0000", "from_user": "Nerodiaman", "from_user_id": 125466455, "from_user_id_str": "125466455", "from_user_name": "Jean-Pierre LANEZ", "geo": null, "id": 148831829133242370, "id_str": "148831829133242369", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @lemondefr: Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/zeOt21vW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:22 +0000", "from_user": "MarinhaPT", "from_user_id": 29463124, "from_user_id_str": "29463124", "from_user_name": "Marinha Portuguesa", "geo": null, "id": 148831808342077440, "id_str": "148831808342077441", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/398193459/logomarinha2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/398193459/logomarinha2_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Portugal ganha a candidatura \\u00E0 Organiza\\u00E7\\u00E3o do Congresso Internacional de Museus Mar\\u00EDtimos em 2013: http://t.co/XcHOaT4R via @AddThis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:13 +0000", "from_user": "sidaosantista", "from_user_id": 281031232, "from_user_id_str": "281031232", "from_user_name": "sidney lee", "geo": null, "id": 148831769372794880, "id_str": "148831769372794880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1347212174/16-32_Stelzer_GaryLocke_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1347212174/16-32_Stelzer_GaryLocke_normal.jpg", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:11 +0000", "from_user": "SubComJohn", "from_user_id": 23720092, "from_user_id_str": "23720092", "from_user_name": "SubComJohn", "geo": null, "id": 148831759210004480, "id_str": "148831759210004480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1550413385/redblackworker_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1550413385/redblackworker_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "WSM | The crisis & EU periphery - anarchists from Ireland, Portugal, Spain discuss impact & resistance | Mixcloud\\nhttp://t.co/1C4BrJpT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:10 +0000", "from_user": "Dirigentes", "from_user_id": 166501881, "from_user_id_str": "166501881", "from_user_name": "Dirigentes + Espa\\u00F1a", "geo": null, "id": 148831757897183230, "id_str": "148831757897183233", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1077832803/1c2b06b_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1077832803/1c2b06b_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "El FMI autoriza el desembolso del siguiente tramo del rescate de Portugal http://t.co/BQsoieVk #economia #ecofin", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:08 +0000", "from_user": "Politica_I24", "from_user_id": 353857395, "from_user_id_str": "353857395", "from_user_name": "Pol\\u00EDtica 24", "geo": null, "id": 148831748921364480, "id_str": "148831748921364480", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1491963497/politica_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1491963497/politica_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "El FMI autoriza el desembolso del siguiente tramo del rescate de Portugal http://t.co/qtGWCMui #Informador24", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:04 +0000", "from_user": "djelsonido", "from_user_id": 367368620, "from_user_id_str": "367368620", "from_user_name": "EL SONIDO", "geo": null, "id": 148831731796029440, "id_str": "148831731796029441", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1679437103/123_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679437103/123_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "RT @DJFUNKD: Had some great gigs last weekend! Portugal-Lisbon was off the hook // COMING UP THIS WEEK: Marrakech-Morocco / Bootleg Pack 04 Release@", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:04 +0000", "from_user": "angelbass_", "from_user_id": 135694638, "from_user_id_str": "135694638", "from_user_name": "Angel Tirado", "geo": null, "id": 148831730852306940, "id_str": "148831730852306944", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680490400/AngelBass_EE_9C_B7yat_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680490400/AngelBass_EE_9C_B7yat_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "No, pero tiene la de italia, la de inglaterra y la de portugal @jesusportillo11", "to_user": "jesusportillo11", "to_user_id": 189428454, "to_user_id_str": "189428454", "to_user_name": "jesus portillo", "in_reply_to_status_id": 148830627460952060, "in_reply_to_status_id_str": "148830627460952064"}, +{"created_at": "Mon, 19 Dec 2011 18:27:04 +0000", "from_user": "lemondefr", "from_user_id": 24744541, "from_user_id_str": "24744541", "from_user_name": "Le Monde", "geo": null, "id": 148831729463996400, "id_str": "148831729463996416", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1430438688/IconeTwClassique_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1430438688/IconeTwClassique_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/zeOt21vW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:02 +0000", "from_user": "ObeyBieberconda", "from_user_id": 53453645, "from_user_id_str": "53453645", "from_user_name": "sara", "geo": null, "id": 148831720630784000, "id_str": "148831720630784000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702190711/Snapshot_20111217_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702190711/Snapshot_20111217_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "was really harry potter born in portugal? lol i dont think so. dont start rumours.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:00 +0000", "from_user": "Clorindadtl", "from_user_id": 430068782, "from_user_id_str": "430068782", "from_user_name": "Clorinda Pedri", "geo": null, "id": 148831716113526800, "id_str": "148831716113526784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1677562276/tsq0hmial4_128151810-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677562276/tsq0hmial4_128151810-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Michelin Green Sightseeing Travel Guide to Portugal (Spanish Language Edition): http://t.co/hsirj9WB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:55 +0000", "from_user": "AnaCosta73", "from_user_id": 429892997, "from_user_id_str": "429892997", "from_user_name": "Ana Costa", "geo": null, "id": 148831694114406400, "id_str": "148831694114406400", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696476204/IMG0266A_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696476204/IMG0266A_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "L\\u00E1 por UMA pessoa ter criticado a Rihanna pela sua ra\\u00E7a, n\\u00E3o quer dizer que Portugal seja um racista :(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:50 +0000", "from_user": "ChargingRam", "from_user_id": 406639113, "from_user_id_str": "406639113", "from_user_name": "Charging Ram", "geo": null, "id": 148831673549725700, "id_str": "148831673549725698", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627707207/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627707207/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Time to end the war on drugs: Richard Branson http://t.co/treoqndQ In 2001, Portugal abolished penalties for personal possession of drugs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:46 +0000", "from_user": "sophietyler_", "from_user_id": 242423373, "from_user_id_str": "242423373", "from_user_name": "Sophie Tyler", "geo": null, "id": 148831655912685570, "id_str": "148831655912685568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1552076359/me_charlotte_nd_mikka_xx_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552076359/me_charlotte_nd_mikka_xx_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "wth, i had \\u00A35 credit on my phone before i came to portugal, ive only been here 2 days, only texted once and its all gone? grr!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:46 +0000", "from_user": "prensacom", "from_user_id": 27011708, "from_user_id_str": "27011708", "from_user_name": "prensacom", "geo": null, "id": 148831654843133950, "id_str": "148831654843133953", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1476481321/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1476481321/twitter_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Portugal denuncia violaci\\u00F3n de derechos humanos a extranjeros detenidos: http://t.co/NvoTIqlI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:38 +0000", "from_user": "leenguru", "from_user_id": 85374835, "from_user_id_str": "85374835", "from_user_name": "leenguru", "geo": null, "id": 148831623985639420, "id_str": "148831623985639424", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/491408555/Untitled-1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/491408555/Untitled-1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF keurt lening aan Portugal goed: Het Internationaal Monetair Fonds (IMF) is maandag akkoord gegaan met een ni... http://t.co/cxm4jZ8M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:38 +0000", "from_user": "CatiaVmarques", "from_user_id": 218140311, "from_user_id_str": "218140311", "from_user_name": "C\\u00E1tia Marques", "geo": null, "id": 148831620294639600, "id_str": "148831620294639616", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1512947588/IMG_0387_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1512947588/IMG_0387_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Est\\u00E1 aberto o concurso das cunhas de Portugal. Quem me quiser \"cunhar\" basta enviar-me um e-mail com a proposta. Que ganhe o melhor!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:34 +0000", "from_user": "raquelongras", "from_user_id": 160556288, "from_user_id_str": "160556288", "from_user_name": "- Raquel '", "geo": null, "id": 148831607262949380, "id_str": "148831607262949377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1582001781/2011-09-21_18.04.25_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1582001781/2011-09-21_18.04.25_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@justinbieber u're the best! PORTUGAL LOVES YOU", "to_user": "justinbieber", "to_user_id": 27260086, "to_user_id_str": "27260086", "to_user_name": "Justin Bieber"}, +{"created_at": "Mon, 19 Dec 2011 18:26:30 +0000", "from_user": "bernardinomucci", "from_user_id": 222619943, "from_user_id_str": "222619943", "from_user_name": "bernard mucciolo", "geo": null, "id": 148831586371117060, "id_str": "148831586371117057", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @negociosportuga: FMI aprovou terceira tranche do empr\\u00E9stimo a Portugal: O Fundo Monet\\u00E1rio Internacional aprovou hoje a terceira t... http://t.co/PiYGWa5s", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:20 +0000", "from_user": "6MON2PANAME", "from_user_id": 75743430, "from_user_id_str": "75743430", "from_user_name": "6MON2PANAME", "geo": null, "id": 148831548525903870, "id_str": "148831548525903873", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676877630/IMG_5384_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676877630/IMG_5384_normal.JPG", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Le #FMI approuve un versement de 2,9 milliards d'euros au #Portugal http://t.co/gp0IIKZi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:18 +0000", "from_user": "heterodoxos", "from_user_id": 420951529, "from_user_id_str": "420951529", "from_user_name": "Econom\\u00EDa Heterodoxa", "geo": null, "id": 148831537452957700, "id_str": "148831537452957696", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1656828306/the_new_capitalism_261075_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656828306/the_new_capitalism_261075_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "El FMI autoriza el desembolso de 2.900 millones del siguiente tramo del rescate de Portugal http://t.co/2xh2pFXW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:12 +0000", "from_user": "neiallswheel", "from_user_id": 20319497, "from_user_id_str": "20319497", "from_user_name": "neiall mullery", "geo": null, "id": 148831514577211400, "id_str": "148831514577211392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1213256991/whistle_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1213256991/whistle_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Time to end #war on #drugs 50%>80% of all #theft worldwide is by druggies. Portugal's 10 year experiment http://t.co/jDRK8OTo via @virgin", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:05 +0000", "from_user": "ellenchaffin", "from_user_id": 47162814, "from_user_id_str": "47162814", "from_user_name": "Ellen Chaffin", "geo": null, "id": 148831483593891840, "id_str": "148831483593891841", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1268794548/103_1372-_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1268794548/103_1372-_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @Yara2222: \\u201C@thiprincipe: Kkkkk nao sei, mas falta pouco! RT @ellenchaffin: @thiprincipe onde a gente clica pra 2012 chegar logo ?\\u201De em portugal?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:57 +0000", "from_user": "alo_alonso", "from_user_id": 16017932, "from_user_id_str": "16017932", "from_user_name": "Marcos Alonso", "geo": null, "id": 148831450106560500, "id_str": "148831450106560512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/897339694/DSC04396_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/897339694/DSC04396_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @Pamela_Lund: RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/zSIcQYy9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:52 +0000", "from_user": "IsSoto", "from_user_id": 435581427, "from_user_id_str": "435581427", "from_user_name": "Soto", "geo": null, "id": 148831429340569600, "id_str": "148831429340569601", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693206922/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693206922/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@B_Awad Nome digas qnose parecen!lo hacen adrede pa qno me aprenda madrid y sus carreteras!qcojes1tunel y cnd consigues salir tas n portugal", "to_user": "B_Awad", "to_user_id": 284696478, "to_user_id_str": "284696478", "to_user_name": "Bel\\u00E9n Awad G\\u00F3mez", "in_reply_to_status_id": 148753001903964160, "in_reply_to_status_id_str": "148753001903964160"}, +{"created_at": "Mon, 19 Dec 2011 18:25:48 +0000", "from_user": "margbrennan", "from_user_id": 50011708, "from_user_id_str": "50011708", "from_user_name": "margaret brennan", "geo": null, "id": 148831411795795970, "id_str": "148831411795795968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/770771204/brennan_sq2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/770771204/brennan_sq2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/eMSquDUh #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:37 +0000", "from_user": "BBCWorld", "from_user_id": 742143, "from_user_id_str": "742143", "from_user_name": "BBC News (World)", "geo": null, "id": 148831366514090000, "id_str": "148831366514089985", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1143173879/BBC_avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1143173879/BBC_avatar_normal.jpg", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "#IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:35 +0000", "from_user": "BulkNieuws", "from_user_id": 229028900, "from_user_id_str": "229028900", "from_user_name": "BulkNieuws", "geo": null, "id": 148831357227892740, "id_str": "148831357227892736", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1195504786/Image1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1195504786/Image1_normal.png", "source": "<a href="http://www.bulknieuws.nl/" rel="nofollow">BulkNieuws</a>", "text": "BulkNieuws.nl: IMF keurt lening aan Portugal goed http://t.co/hNpaPzAr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:31 +0000", "from_user": "channel5", "from_user_id": 5901282, "from_user_id_str": "5901282", "from_user_name": "channel5", "geo": null, "id": 148831342547832830, "id_str": "148831342547832832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/75330419/channel5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/75330419/channel5_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @Pamela_Lund: RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/zSIcQYy9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:21 +0000", "from_user": "radiobandnewsfm", "from_user_id": 26573303, "from_user_id_str": "26573303", "from_user_name": "R\\u00E1dio BandNews FM", "geo": null, "id": 148831297308065800, "id_str": "148831297308065792", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/109869448/LOGO_BANDNEWSFM_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/109869448/LOGO_BANDNEWSFM_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "O FMI anuncia que vai liberar 2,9 bilh\\u00F5es de euros de uma nova parcela do pacote de resgate financeira para Portugal. http://t.co/T4c8Ufnw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:20 +0000", "from_user": "lucasvon", "from_user_id": 25559706, "from_user_id_str": "25559706", "from_user_name": "Lucas von Silveira", "geo": null, "id": 148831295403851780, "id_str": "148831295403851778", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1656547993/tweet2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656547993/tweet2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "HAHAHA! RI ALTO. RT @gabrielgorgen: @lucasvon tive um colega que COMPROU o resgistro, diretamente de portugal...#idiotamaster", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:18 +0000", "from_user": "HotelFelipeIV", "from_user_id": 214961229, "from_user_id_str": "214961229", "from_user_name": "Hotel Felipe IV", "geo": null, "id": 148831285975068670, "id_str": "148831285975068673", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1167610613/fachada_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1167610613/fachada_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "TAP, de Portugal recibe el premio a la mejor compa\\u00F1\\u00EDa a\\u00E9rea de Europa http://t.co/OaMGJQfV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:15 +0000", "from_user": "randi_bugga", "from_user_id": 65846014, "from_user_id_str": "65846014", "from_user_name": "Jack Blackheart", "geo": null, "id": 148831274382016500, "id_str": "148831274382016512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1144027592/738e809c-1114-484b-9742-68e529028707_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1144027592/738e809c-1114-484b-9742-68e529028707_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Anonymous runs amock in Israel, Finland, Portugal http://t.co/0opC6Exd via @regvulture", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:13 +0000", "from_user": "DJFUNKD", "from_user_id": 38302961, "from_user_id_str": "38302961", "from_user_name": "\\u2714Funk D", "geo": null, "id": 148831266815479800, "id_str": "148831266815479808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/200978655/FNK_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/200978655/FNK_normal.JPG", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Had some great gigs last weekend! Portugal-Lisbon was off the hook // COMING UP THIS WEEK: Marrakech-Morocco / Bootleg Pack 04 Release@", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:10 +0000", "from_user": "kaffiiee", "from_user_id": 64624245, "from_user_id_str": "64624245", "from_user_name": "kfie", "geo": null, "id": 148831252793925630, "id_str": "148831252793925633", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1633196583/marchisio_grinta3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633196583/marchisio_grinta3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Hashim0307: I remember when North Korea lost 7-0 to Portugal in WC2010, media in North Korea reported the match ended 0-0. Hilarious.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:09 +0000", "from_user": "residence_eu", "from_user_id": 240566766, "from_user_id_str": "240566766", "from_user_name": "Residence-eu.com", "geo": null, "id": 148831248834510850, "id_str": "148831248834510848", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1220666375/LogoColorTextBelow_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1220666375/LogoColorTextBelow_normal.jpeg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": ", Sao Bartolomeu De Messines, Portugal, For Sale http://t.co/clM361SC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:09 +0000", "from_user": "RTBFinfo", "from_user_id": 14163474, "from_user_id_str": "14163474", "from_user_name": "RTBF info", "geo": null, "id": 148831248712859650, "id_str": "148831248712859649", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/628292704/logo_rtbfbe_twitter_info_200_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/628292704/logo_rtbfbe_twitter_info_200_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/TOFLDeKx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:09 +0000", "from_user": "residence_eu", "from_user_id": 240566766, "from_user_id_str": "240566766", "from_user_name": "Residence-eu.com", "geo": null, "id": 148831246749937660, "id_str": "148831246749937664", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1220666375/LogoColorTextBelow_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1220666375/LogoColorTextBelow_normal.jpeg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": ", Silves, Portugal, For Sale http://t.co/8VuWvzzz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:08 +0000", "from_user": "residence_eu", "from_user_id": 240566766, "from_user_id_str": "240566766", "from_user_name": "Residence-eu.com", "geo": null, "id": 148831245382582270, "id_str": "148831245382582274", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1220666375/LogoColorTextBelow_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1220666375/LogoColorTextBelow_normal.jpeg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": ", Almancil, Portugal, For Sale http://t.co/jG50xINM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:07 +0000", "from_user": "residence_eu", "from_user_id": 240566766, "from_user_id_str": "240566766", "from_user_name": "Residence-eu.com", "geo": null, "id": 148831240366198800, "id_str": "148831240366198784", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1220666375/LogoColorTextBelow_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1220666375/LogoColorTextBelow_normal.jpeg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": ", Boliqueime, Portugal, For Sale http://t.co/FJLhBBiY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:05 +0000", "from_user": "DJFUNKD", "from_user_id": 38302961, "from_user_id_str": "38302961", "from_user_name": "\\u2714Funk D", "geo": null, "id": 148831230165655550, "id_str": "148831230165655553", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/200978655/FNK_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/200978655/FNK_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Had some great gigs last weekend! Portugal-Lisbon was off the hook // COMING UP THIS WEEK: Marrakech-Morocco / Bootleg Pack 04 Release", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:05 +0000", "from_user": "residence_eu", "from_user_id": 240566766, "from_user_id_str": "240566766", "from_user_name": "Residence-eu.com", "geo": null, "id": 148831230073376770, "id_str": "148831230073376768", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1220666375/LogoColorTextBelow_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1220666375/LogoColorTextBelow_normal.jpeg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": ", Dunas Douradas, Portugal, For Sale http://t.co/cEjkEjMn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:00 +0000", "from_user": "seehafer", "from_user_id": 16706124, "from_user_id_str": "16706124", "from_user_name": "Jared Seehafer", "geo": null, "id": 148831212516020220, "id_str": "148831212516020224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1676484620/298314_10100379661068073_10201803_54793008_2707357_n__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676484620/298314_10100379661068073_10201803_54793008_2707357_n__1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:00 +0000", "from_user": "negociosportuga", "from_user_id": 91605181, "from_user_id_str": "91605181", "from_user_name": "Neg\\u00F3cios Portugal", "geo": null, "id": 148831209621962750, "id_str": "148831209621962752", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/537215653/negocios_portugal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/537215653/negocios_portugal_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprovou terceira tranche do empr\\u00E9stimo a Portugal: O Fundo Monet\\u00E1rio Internacional aprovou hoje a terceira t... http://t.co/PiYGWa5s", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:56 +0000", "from_user": "Jessyca_sl", "from_user_id": 328725105, "from_user_id_str": "328725105", "from_user_name": "Sou da minha m\\u00E3e :3", "geo": null, "id": 148831194925109250, "id_str": "148831194925109248", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1677381685/PAAAAGp5FW3F8jrPUe1hYvkUNPariogIKy_hf0bhoWZciOuk1QMi1WQqNrhHyM36Zrxx8fwLREAyB9M37OT188IhxwUAm1T1UB2JqPz3ph_JTG11S3YhA_fO6g4I_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677381685/PAAAAGp5FW3F8jrPUe1hYvkUNPariogIKy_hf0bhoWZciOuk1QMi1WQqNrhHyM36Zrxx8fwLREAyB9M37OT188IhxwUAm1T1UB2JqPz3ph_JTG11S3YhA_fO6g4I_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "aaaaaain que saudade da Espanha e de Portugal p\\u00F4 :c", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:43 +0000", "from_user": "sophietyler_", "from_user_id": 242423373, "from_user_id_str": "242423373", "from_user_name": "Sophie Tyler", "geo": null, "id": 148831137731588100, "id_str": "148831137731588096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1552076359/me_charlotte_nd_mikka_xx_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552076359/me_charlotte_nd_mikka_xx_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "got delayed on the journey to portugal saturday, i was so happy they had starbucks on the plane though, if they didnt, i'd be dead.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:40 +0000", "from_user": "FanDeArellano", "from_user_id": 283826693, "from_user_id_str": "283826693", "from_user_name": "\\u2022 FanDeArellano \\u2022", "geo": null, "id": 148831125488410620, "id_str": "148831125488410624", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1503877843/PATRICIOVC_show_img_show__1be_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1503877843/PATRICIOVC_show_img_show__1be_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @cris_isabelita: @FanDeArellano Feliz cumple :), besos desde Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:38 +0000", "from_user": "OctoberOG", "from_user_id": 90556088, "from_user_id_str": "90556088", "from_user_name": "Trey ", "geo": null, "id": 148831117045280770, "id_str": "148831117045280769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1669990680/IMAG0170-1-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669990680/IMAG0170-1-2_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "WOW Portugal is the only country to completely decriminalize ALL drugs. Meaning weed, heroine, cocaine, meth, etc...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:36 +0000", "from_user": "Se_ginh0", "from_user_id": 279956187, "from_user_id_str": "279956187", "from_user_name": "S\\u00E9rgio Costa", "geo": null, "id": 148831110904807420, "id_str": "148831110904807425", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "CONFIRMADO: DVD da Loud Tour ser\\u00E1 gravado nos dias 20, 21 e 22 | RIHANNA PORTUGAL http://t.co/gQ3hnmd0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:33 +0000", "from_user": "andrelbe", "from_user_id": 172762242, "from_user_id_str": "172762242", "from_user_name": "Andr\\u00E9 L B Esperidi\\u00E3o", "geo": null, "id": 148831095868243970, "id_str": "148831095868243969", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1195082848/Eu__3__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1195082848/Eu__3__normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "InfoMoney :: FMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal http://t.co/1AfCpugq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:31 +0000", "from_user": "_armandolopez", "from_user_id": 21182437, "from_user_id_str": "21182437", "from_user_name": "armando lopez", "geo": null, "id": 148831088725327870, "id_str": "148831088725327872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1589758574/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1589758574/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT@richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment http://t.co/51wdRYJA interesting experiment..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:30 +0000", "from_user": "AsLuanaticas_PT", "from_user_id": 246811989, "from_user_id_str": "246811989", "from_user_name": "As Luanaticas PT", "geo": null, "id": 148831084937879550, "id_str": "148831084937879552", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1589478022/366105796_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1589478022/366105796_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Portugal \\u00E9 frio demaissssss -.-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:20 +0000", "from_user": "finadedeventer", "from_user_id": 403292980, "from_user_id_str": "403292980", "from_user_name": "Finade Deventer", "geo": null, "id": 148831043980492800, "id_str": "148831043980492800", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1618561224/logofinade_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618561224/logofinade_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Nieuws: IMF keurt lening aan Portugal goed http://t.co/wXp25bHa #finade #deventer", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:18 +0000", "from_user": "gabrielgorgen", "from_user_id": 199404729, "from_user_id_str": "199404729", "from_user_name": "Gabriel Gorgen", "geo": null, "id": 148831033041764350, "id_str": "148831033041764353", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1139677795/aniver_pomper_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1139677795/aniver_pomper_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@lucasvon tive um colega que COMPROU o resgistro, diretamente de portugal...#idiotamaster", "to_user": "lucasvon", "to_user_id": 25559706, "to_user_id_str": "25559706", "to_user_name": "Lucas von Silveira", "in_reply_to_status_id": 148830447865049100, "in_reply_to_status_id_str": "148830447865049088"}, +{"created_at": "Mon, 19 Dec 2011 18:24:06 +0000", "from_user": "Joaogalamba", "from_user_id": 19713622, "from_user_id_str": "19713622", "from_user_name": "Joao Galamba", "geo": null, "id": 148830982760431600, "id_str": "148830982760431616", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/298703151/Img037_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/298703151/Img037_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @especulativa: A Irlanda e a Su\\u00E9cia querem um \"tratado \\u00E0 medida\"; v\\u00E3o negociar, pois. E Portugal, vai assinar de cruz? | @scoopit http://t.co/sJypDI88", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:05 +0000", "from_user": "MarcoAntonioDSM", "from_user_id": 169586454, "from_user_id_str": "169586454", "from_user_name": "Marco Ant\\u00F3nio", "geo": null, "id": 148830979438559230, "id_str": "148830979438559233", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679763635/IMG_0030_modified_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679763635/IMG_0030_modified_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "CONFIRMADO: DVD da Loud Tour ser\\u00E1 gravado nos dias 20, 21 e 22 | RIHANNA PORTUGAL http://t.co/xlQMHDNA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:56 +0000", "from_user": "cris_isabelita", "from_user_id": 296821635, "from_user_id_str": "296821635", "from_user_name": "Isabel Fernandes", "geo": null, "id": 148830940939042800, "id_str": "148830940939042817", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664589089/376563_2224572418620_1377048347_31864620_760499542_n_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664589089/376563_2224572418620_1377048347_31864620_760499542_n_1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@FanDeArellano Feliz cumple :), besos desde Portugal", "to_user": "FanDeArellano", "to_user_id": 283826693, "to_user_id_str": "283826693", "to_user_name": "\\u2022 FanDeArellano \\u2022", "in_reply_to_status_id": 148830216549171200, "in_reply_to_status_id_str": "148830216549171200"}, +{"created_at": "Mon, 19 Dec 2011 18:23:44 +0000", "from_user": "Vizinhosdeutero", "from_user_id": 119375005, "from_user_id_str": "119375005", "from_user_name": "Jemima Pompeu", "geo": null, "id": 148830892155088900, "id_str": "148830892155088898", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1347328717/redondo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1347328717/redondo_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Primeira loja online para g\\u00E9meos criada em Portugal http://t.co/6ES9CZAl via @ptjornal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:43 +0000", "from_user": "TheMattBanks", "from_user_id": 292314192, "from_user_id_str": "292314192", "from_user_name": "Matt Banks", "geo": null, "id": 148830887071588350, "id_str": "148830887071588352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701165528/186445_509058794_1174871247_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701165528/186445_509058794_1174871247_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @jason_silva: Yes!@richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/2u0GfWbU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:39 +0000", "from_user": "1DToPortugal", "from_user_id": 353947912, "from_user_id_str": "353947912", "from_user_name": "1D Portugal", "geo": null, "id": 148830872261500930, "id_str": "148830872261500928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1683531956/tumblr_lv8rgmAQqr1qgwn15o1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683531956/tumblr_lv8rgmAQqr1qgwn15o1_500_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@NathanTheWanted Hi for Portugal?", "to_user": "NathanTheWanted", "to_user_id": 90896009, "to_user_id_str": "90896009", "to_user_name": "Nathan Sykes", "in_reply_to_status_id": 148829670886998000, "in_reply_to_status_id_str": "148829670886998016"}, +{"created_at": "Mon, 19 Dec 2011 18:23:38 +0000", "from_user": "Politica507", "from_user_id": 384929365, "from_user_id_str": "384929365", "from_user_name": "Politica.com.pa", "geo": null, "id": 148830868591476740, "id_str": "148830868591476737", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1603506392/logo__1__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1603506392/logo__1__normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Portugal denuncia violacion de derechos humanos a extranjeros detenidos http://t.co/iGiw18lu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:33 +0000", "from_user": "marcoszapataOK", "from_user_id": 170452504, "from_user_id_str": "170452504", "from_user_name": "MARCOS ZAPATA", "geo": null, "id": 148830847733211140, "id_str": "148830847733211136", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699270520/PEQ_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699270520/PEQ_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Rihanna se pelea en un hotel en Portugal tras ser insultada http://t.co/t6Lv2nrN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:30 +0000", "from_user": "bertomestas", "from_user_id": 384885096, "from_user_id_str": "384885096", "from_user_name": "Alberto De La Vega", "geo": null, "id": 148830833569046530, "id_str": "148830833569046528", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1632701462/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632701462/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Tomando unos calimochos en av portugal con @JuanJose_Llanu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:26 +0000", "from_user": "chiclesnl", "from_user_id": 151538297, "from_user_id_str": "151538297", "from_user_name": "Ron van den Boogaard", "geo": null, "id": 148830818142404600, "id_str": "148830818142404608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1583896474/RonvdBoogaard-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583896474/RonvdBoogaard-2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @Pamela_Lund: RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/zSIcQYy9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:24 +0000", "from_user": "manuel_ralha", "from_user_id": 408607744, "from_user_id_str": "408607744", "from_user_name": "mnemosyne", "geo": null, "id": 148830807245586430, "id_str": "148830807245586433", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1634085375/logomne78_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634085375/logomne78_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\\u00ABA Crise e a Reconstitui\\u00E7\\u00E3o do Estado em Portugal (1974 - 1984)\\u00BB http://t.co/Pwi8Wt8x via @wordpressdotcom", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:20 +0000", "from_user": "Kim_tastiic", "from_user_id": 44361097, "from_user_id_str": "44361097", "from_user_name": "Amerigo Vespucci", "geo": null, "id": 148830790313189380, "id_str": "148830790313189376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695427161/DSCN0876_5556-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695427161/DSCN0876_5556-1_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Apparently at Rihanna's Portugal concert, she ran in the middle of the aisle and threw up while performing \"what's my name\" lmao..Oh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:04 +0000", "from_user": "Larisa_i", "from_user_id": 256205902, "from_user_id_str": "256205902", "from_user_name": "Larisa", "geo": null, "id": 148830722570989570, "id_str": "148830722570989570", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1569635024/1317311614554_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1569635024/1317311614554_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Hot N Cold | Katy Perry | Videoclipes | MTV Portugal: http://t.co/LWWzEtTa via @AddThis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:59 +0000", "from_user": "EloiMoccellin", "from_user_id": 360556372, "from_user_id_str": "360556372", "from_user_name": "ELOIMOCCELLIN", "geo": null, "id": 148830701368778750, "id_str": "148830701368778752", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1519783801/Pai2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1519783801/Pai2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "FMI vai liberar \\u20AC 2,9 bilh\\u00F5es de nova parcela do pacote de resgate financeiro de \\u20AC 78 bilh\\u00F5es a Portugal, cf acordado entre o fundo e a UE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:55 +0000", "from_user": "saulosales", "from_user_id": 36035167, "from_user_id_str": "36035167", "from_user_name": "Saulo Sales", "geo": null, "id": 148830687011684350, "id_str": "148830687011684352", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1536226882/DSC00428_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1536226882/DSC00428_normal.JPG", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Portugal virou Alasca? RT @rubensborges2: Hoje est\\u00E1 t\\u00E3o frio que eu fui cuspir e antes de chegar ao ch\\u00E3o o cuspe congelou.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:45 +0000", "from_user": "YouAndMe_Bieber", "from_user_id": 235235830, "from_user_id_str": "235235830", "from_user_name": "I'm unbroken :)", "geo": null, "id": 148830646293372930, "id_str": "148830646293372929", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689507026/468418609_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689507026/468418609_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Agora...o Justin tem de vir a Portugal tb para eu ver ele :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:31 +0000", "from_user": "moisesquintas", "from_user_id": 110372244, "from_user_id_str": "110372244", "from_user_name": "Mois\\u00E9s Quintas ", "geo": null, "id": 148830584599347200, "id_str": "148830584599347200", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/669042537/moisesindex2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/669042537/moisesindex2_normal.JPG", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Amizade Portugal-Galiza http://t.co/BTaHP9S3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:28 +0000", "from_user": "Leannaelk", "from_user_id": 431708746, "from_user_id_str": "431708746", "from_user_name": "Leanna Staires", "geo": null, "id": 148830573551554560, "id_str": "148830573551554561", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681049582/hnw0hbqpyo_133535784_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681049582/hnw0hbqpyo_133535784_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "A Traveler's Map of Spain and Portugal (folded map): http://t.co/7KCZ7EjK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:25 +0000", "from_user": "YouAndMe_Bieber", "from_user_id": 235235830, "from_user_id_str": "235235830", "from_user_name": "I'm unbroken :)", "geo": null, "id": 148830559446110200, "id_str": "148830559446110209", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689507026/468418609_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689507026/468418609_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "ATEN\\u00C7\\u00C3O: Eu tou em Portugal agora,mas vou continuar a ajudar nas Tags do Brasil,hein ?Eu sou do Brasil com mto ORGULHO ! :p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:24 +0000", "from_user": "LuArFever", "from_user_id": 331335418, "from_user_id_str": "331335418", "from_user_name": "LuArFever", "geo": null, "id": 148830555583168500, "id_str": "148830555583168514", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1672387618/catsn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672387618/catsn_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "A\\u00CA UHUH MAIS UM FC #PORTUGUES @RebeldeFC_ChayS !! #PORTUGAL A BOMBAR *-*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:19 +0000", "from_user": "bartoboy12", "from_user_id": 289192375, "from_user_id_str": "289192375", "from_user_name": "Bart", "geo": +{"coordinates": [53.0378,5.6692], "type": "Point"}, "id": 148830535760883700, "id_str": "148830535760883712", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680402170/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680402170/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Straks kont kennis uit Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:17 +0000", "from_user": "investir_acoes", "from_user_id": 219092852, "from_user_id_str": "219092852", "from_user_name": "CON$ULTOR FINAN\\u00C7A$", "geo": null, "id": 148830529171619840, "id_str": "148830529171619841", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1666350740/Dolar2_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666350740/Dolar2_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "FMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal http://t.co/QHRIQqe2 #UOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:16 +0000", "from_user": "yamarock", "from_user_id": 48828354, "from_user_id_str": "48828354", "from_user_name": "Yajaira Mar", "geo": null, "id": 148830525002493950, "id_str": "148830525002493953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1478808010/n1202884943_100278_5626_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1478808010/n1202884943_100278_5626_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @LifeBoxset: Escucha un cover de Portugal. The Man a Gnarls Barkley http://t.co/qYMNEKP9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:08 +0000", "from_user": "chinobi", "from_user_id": 15646181, "from_user_id_str": "15646181", "from_user_name": "Peter Wang", "geo": null, "id": 148830491037016060, "id_str": "148830491037016065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1341375828/130469173452046_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1341375828/130469173452046_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:07 +0000", "from_user": "zedejose", "from_user_id": 17713808, "from_user_id_str": "17713808", "from_user_name": "Z\\u00E9", "geo": null, "id": 148830484271611900, "id_str": "148830484271611904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/259883232/jf_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/259883232/jf_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @Pamela_Lund: RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/zSIcQYy9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:00 +0000", "from_user": "SophiaEChayEver", "from_user_id": 386267606, "from_user_id_str": "386267606", "from_user_name": "Kiss Le\\u00E3o?", "geo": null, "id": 148830455033102340, "id_str": "148830455033102336", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700674974/1305210930133_f_normal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700674974/1305210930133_f_normal_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MinhaDoceSoso YEY PORTUGAL?", "to_user": "MinhaDoceSoso", "to_user_id": 248314608, "to_user_id_str": "248314608", "to_user_name": "SoMic.\\u2765"}, +{"created_at": "Mon, 19 Dec 2011 18:21:50 +0000", "from_user": "ECI_Assessoria", "from_user_id": 386660247, "from_user_id_str": "386660247", "from_user_name": "ECI", "geo": null, "id": 148830415770222600, "id_str": "148830415770222592", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1592693748/twitter_logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592693748/twitter_logo_normal.png", "source": "<a href="http://twitter.uol.com.br" rel="nofollow">uol.com.br</a>", "text": "RT @UOLEconomia: FMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal http://t.co/o4nSgyv1 #UOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:43 +0000", "from_user": "blakewirht", "from_user_id": 21328729, "from_user_id_str": "21328729", "from_user_name": "Blake Wirht", "geo": null, "id": 148830385512517630, "id_str": "148830385512517633", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1481870230/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1481870230/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:38 +0000", "from_user": "UOLEconomia", "from_user_id": 14594760, "from_user_id_str": "14594760", "from_user_name": "UOL Economia", "geo": null, "id": 148830361814704130, "id_str": "148830361814704129", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/398462104/logo_economia_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/398462104/logo_economia_normal.png", "source": "<a href="http://twitter.uol.com.br" rel="nofollow">uol.com.br</a>", "text": "FMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal http://t.co/o4nSgyv1 #UOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:36 +0000", "from_user": "x_anouschka", "from_user_id": 264157147, "from_user_id_str": "264157147", "from_user_name": "Anouschka Wesseling", "geo": null, "id": 148830354122346500, "id_str": "148830354122346497", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1654231661/Westside___H_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654231661/Westside___H_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "eetbare eikeltjes eten die papa heeft meegenomen uit portugal ! #benbenieuwd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:32 +0000", "from_user": "yoast", "from_user_id": 6453512, "from_user_id_str": "6453512", "from_user_name": "Joost de Valk", "geo": null, "id": 148830340071436300, "id_str": "148830340071436288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1415375337/Yoast-Avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1415375337/Yoast-Avatar_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @Pamela_Lund: RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/zSIcQYy9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:30 +0000", "from_user": "Sheikhax", "from_user_id": 24179010, "from_user_id_str": "24179010", "from_user_name": "Sheila Khaemba", "geo": null, "id": 148830330189656060, "id_str": "148830330189656064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1610345401/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610345401/image_normal.jpg", "source": "<a href="http://www.alphonsolabs.com/" rel="nofollow">Pulse News</a>", "text": "#SMDH-Rihanna Throws Up In The Middle Of Her Concert: Morning Mix http://t.co/dQLQmxJK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:21:25 +0000", "from_user": "enciclopediapt", "from_user_id": 100036840, "from_user_id_str": "100036840", "from_user_name": "Enciclop\\u00E9dia", "geo": null, "id": 148830310065389570, "id_str": "148830310065389568", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/597272652/Logoteste1_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/597272652/Logoteste1_normal.gif", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "FMI aprova tranche de 2,9 mil milh\\u00F5es de euros para Portugal http://t.co/Wd858Y5E", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:21 +0000", "from_user": "susanaafc", "from_user_id": 67635244, "from_user_id_str": "67635244", "from_user_name": "Susana Cordeiro", "geo": null, "id": 148830292545769470, "id_str": "148830292545769473", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700809086/DSCF3177_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700809086/DSCF3177_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @LauraMesqui: @rihanna I can't believed this happened in my country - portugal - I'm ashamed!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:18 +0000", "from_user": "kellygirao", "from_user_id": 45244388, "from_user_id_str": "45244388", "from_user_name": "\\u2640\\u266BKellyGir\\u00E3o\\u266A", "geo": null, "id": 148830279727972350, "id_str": "148830279727972352", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1586320691/DSCN4805_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586320691/DSCN4805_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Rihanna revela que sofreu racismo em hotel de Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:16 +0000", "from_user": "MihDoPePo", "from_user_id": 338457970, "from_user_id_str": "338457970", "from_user_name": "Pepo meu orgulho ", "geo": null, "id": 148830271742033920, "id_str": "148830271742033920", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702486151/434522289_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702486151/434522289_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "O esplendor de Portugal entre as brumas da mem\\u00F3ria,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:16 +0000", "from_user": "OstermannBirgit", "from_user_id": 404863497, "from_user_id_str": "404863497", "from_user_name": "Birgit Ostermann", "geo": null, "id": 148830270844452860, "id_str": "148830270844452864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "All #Inclusive #Portugal mit #Tiefpreisgarantie #T\\u00DCV gepr\\u00FCft buchen http://t.co/gjFKSved", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:10 +0000", "from_user": "lanzaexception", "from_user_id": 257739466, "from_user_id_str": "257739466", "from_user_name": "Choose Pedro Lanza ", "geo": null, "id": 148830246089654270, "id_str": "148830246089654272", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1654558911/ca26ef0e162711e1abb01231381b65e3_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654558911/ca26ef0e162711e1abb01231381b65e3_7_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Pe\\u00E7a RESTART na MTV de PORTUGAL atrav\\u00E9s desse link: (http://t.co/VYr5oY7O)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:07 +0000", "from_user": "JamesThomasFox", "from_user_id": 381193181, "from_user_id_str": "381193181", "from_user_name": "James Thomas Fox", "geo": null, "id": 148830235482271740, "id_str": "148830235482271744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1572804802/183609_10150112113023908_517128907_6442738_6758087_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572804802/183609_10150112113023908_517128907_6442738_6758087_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Food for thought, @richardbranson:time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment http://t.co/HGMi6pHZ", "to_user": "richardbranson", "to_user_id": 8161232, "to_user_id_str": "8161232", "to_user_name": "richardbranson", "in_reply_to_status_id": 148777479291674620, "in_reply_to_status_id_str": "148777479291674624"}, +{"created_at": "Mon, 19 Dec 2011 18:21:02 +0000", "from_user": "insurance_spain", "from_user_id": 341624988, "from_user_id_str": "341624988", "from_user_name": "Insurance Spain", "geo": null, "id": 148830212233248770, "id_str": "148830212233248769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://www.theleader.info/" rel="nofollow">Insurance Spain</a>", "text": "GOLD ALL-RISK HOME INSURANCE - http://t.co/7RmRrO0d", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:54 +0000", "from_user": "debrill", "from_user_id": 41026935, "from_user_id_str": "41026935", "from_user_name": "Debril JN", "geo": null, "id": 148830180125851650, "id_str": "148830180125851648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Your gal Rihanna talking about went off to a racist hotel guest in Portugal who talked sh*t\\u2026 http://t.co/gmKU9J2j", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:53 +0000", "from_user": "billpostmus", "from_user_id": 379962842, "from_user_id_str": "379962842", "from_user_name": "Bill Postmus", "geo": null, "id": 148830175600197630, "id_str": "148830175600197632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1638371566/pf_20111113_4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638371566/pf_20111113_4_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "North Koreans haven't wept like this since the 7-0 loss to Portugal! -VIDEO: http://t.co/qbRTRiXK #NorthKorea #KimJongIl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:43 +0000", "from_user": "lanzaexception", "from_user_id": 257739466, "from_user_id_str": "257739466", "from_user_name": "Choose Pedro Lanza ", "geo": null, "id": 148830134332428300, "id_str": "148830134332428288", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1654558911/ca26ef0e162711e1abb01231381b65e3_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654558911/ca26ef0e162711e1abb01231381b65e3_7_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Pe\\u00E7a 'Menina Estranha - Restart' na r\\u00E1dio \"Cidade FM\" de Portugal, por aqui: (http://t.co/ZQCXND9o)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:42 +0000", "from_user": "annfdez", "from_user_id": 75371345, "from_user_id_str": "75371345", "from_user_name": "Ana Fern\\u00E1ndez", "geo": null, "id": 148830130846969860, "id_str": "148830130846969857", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1562194301/P1070742_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1562194301/P1070742_1__normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Seg\\u00FAn la de Empresa, Portugal est\\u00E1 ba\\u00F1ado por el mar Mediterr\\u00E1neo.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:33 +0000", "from_user": "LauraMesqui", "from_user_id": 75354152, "from_user_id_str": "75354152", "from_user_name": "Laura Mesquita", "geo": null, "id": 148830090929770500, "id_str": "148830090929770496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687245910/DSC02448_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687245910/DSC02448_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@rihanna I can't believed this happened in my country - portugal - I'm ashamed!", "to_user": "rihanna", "to_user_id": 79293791, "to_user_id_str": "79293791", "to_user_name": "Rihanna", "in_reply_to_status_id": 148226084759023600, "in_reply_to_status_id_str": "148226084759023617"}, +{"created_at": "Mon, 19 Dec 2011 18:20:31 +0000", "from_user": "R_Pirata", "from_user_id": 380675417, "from_user_id_str": "380675417", "from_user_name": "R\\u00E1dio Pirata", "geo": null, "id": 148830083409395700, "id_str": "148830083409395712", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1585507633/logopeq_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585507633/logopeq_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "N\\u00E3o chegam a Portugal muitos \\u00EAxitos da m\\u00FAsica pop espanhola, mas quando chegam, \\u00E9 com algum aparato. La Uni\\u00F3n \\u00E9... http://t.co/AUvmLfNg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:30 +0000", "from_user": "Ibby_Babiker", "from_user_id": 339981424, "from_user_id_str": "339981424", "from_user_name": "Ibrahim Babiker", "geo": null, "id": 148830077805789200, "id_str": "148830077805789185", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1651826100/17566E02-622E-42B2-9BE5-901F090153E3_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651826100/17566E02-622E-42B2-9BE5-901F090153E3_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:23 +0000", "from_user": "RihannaNavyCol", "from_user_id": 390477713, "from_user_id_str": "390477713", "from_user_name": "RihannaNavyColombia", "geo": null, "id": 148830049276145660, "id_str": "148830049276145664", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691663443/rihanna-live-at-the-2011-jingle-bell-ball-6-1322951887-view-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691663443/rihanna-live-at-the-2011-jingle-bell-ball-6-1322951887-view-1_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Rihanna huye de su concierto en Portugal para vomitar\\n\\nRihanna pas\\u00F3 por Espa\\u00F1a dando unos conciertos m\\u00E1s que... http://t.co/yFoYvu2E", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:20 +0000", "from_user": "Guilhermebs25", "from_user_id": 209141033, "from_user_id_str": "209141033", "from_user_name": "Guilherme bs \\u24D6\\u24D1\\u24E2", "geo": null, "id": 148830037490147330, "id_str": "148830037490147328", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689637302/PIC19F.tmp_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689637302/PIC19F.tmp_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Eu estava aqui agora vendo os acessos do meu blog gente ate de Portugal, USA e claro todo o Brasil muito feliz ver isso.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:20 +0000", "from_user": "1a_day_deal", "from_user_id": 337532162, "from_user_id_str": "337532162", "from_user_name": "Daily Deals", "geo": null, "id": 148830035845971970, "id_str": "148830035845971971", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1448257109/Urlaub_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1448257109/Urlaub_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Rabatt #Reisen - #Portugal, Madeira Pauschalreise mit 4 Sterne Hotel, All Incl. - 2 Tag nur ab 313\\u20AC #Tiefpreis - http://t.co/ezJHRRN5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:20 +0000", "from_user": "ForSaleiAlgarve", "from_user_id": 386105591, "from_user_id_str": "386105591", "from_user_name": "For Sale in Algarve", "geo": null, "id": 148830035644645380, "id_str": "148830035644645377", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1575941712/For_Sale_In_Algarve_Twitter_Logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575941712/For_Sale_In_Algarve_Twitter_Logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Villa for sale in Lagoa | 5 bedrooms ~ For-Sale-in-Algarve ~ #Algarve\\n#Portugal - http://t.co/Px1HXHSl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:18 +0000", "from_user": "rcqkarnagg", "from_user_id": 382689826, "from_user_id_str": "382689826", "from_user_name": "Von Yang", "geo": null, "id": 148830028786958340, "id_str": "148830028786958336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1566627257/813_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566627257/813_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Anaphora: Analysis, Algorithms and Applications: 6th Discourse Anaphora and Anaphor Resolution Colloquium, DAARC 20.. http://t.co/DTK0hmwI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:16 +0000", "from_user": "sa_zh", "from_user_id": 151119759, "from_user_id_str": "151119759", "from_user_name": "sa zh", "geo": null, "id": 148830021736341500, "id_str": "148830021736341505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1145167611/image_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1145167611/image_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:16 +0000", "from_user": "DuncanKeeling", "from_user_id": 20473201, "from_user_id_str": "20473201", "from_user_name": "Duncan Keeling", "geo": null, "id": 148830019085545470, "id_str": "148830019085545472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1651801452/DK6_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651801452/DK6_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Portugal to Pass Security Laws as Crime Rises Amid #Austerity http://t.co/DEvFqP2k Turning the country into a police state. #NDAA again?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:09 +0000", "from_user": "SocMeDotMe", "from_user_id": 371995419, "from_user_id_str": "371995419", "from_user_name": "Karl Lingenfelder", "geo": null, "id": 148829990887231500, "id_str": "148829990887231488", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1546120426/SocMe_Twitter_Icon_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546120426/SocMe_Twitter_Icon_2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Villa for sale in Lagoa | 5 bedrooms ~ For-Sale-in-Algarve ~ #Algarve\\n#Portugal - http://t.co/0cg0JzAA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:05 +0000", "from_user": "memospin", "from_user_id": 185759621, "from_user_id_str": "185759621", "from_user_name": "Guillermo Espinoza", "geo": null, "id": 148829972558135300, "id_str": "148829972558135296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1268053751/henrique_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1268053751/henrique_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:10 +0000", "from_user": "patrickmolas", "from_user_id": 252079985, "from_user_id_str": "252079985", "from_user_name": "Patrick Molas", "geo": null, "id": 148829743163256830, "id_str": "148829743163256832", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1244082860/images__13__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1244082860/images__13__normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera \\u20AC 2,9 bi do pacote de resgate financeiro a Portugal: Ou\\u00E7a na CBN http://t.co/qlF8VjQu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:59 +0000", "from_user": "TrafficAirColom", "from_user_id": 389647785, "from_user_id_str": "389647785", "from_user_name": "TraficoAereoColombia", "geo": null, "id": 148829697520836600, "id_str": "148829697520836608", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1585504761/icono_avion1_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585504761/icono_avion1_normal.gif", "source": "<a href="http://www.visibli.com" rel="nofollow">Visibli</a>", "text": "RT @AviacionLatam: Inspecci\\u00F3n sorpresa para las aerol\\u00EDneas TAP Portugal y Brussels Airlines, por posible acuerdo ilegal. http://t.co/B37Ejz4S", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:52 +0000", "from_user": "Nieuwsfeed", "from_user_id": 63156310, "from_user_id_str": "63156310", "from_user_name": "Showbizz feed ", "geo": null, "id": 148829668739514370, "id_str": "148829668739514368", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/787706874/Emmy_award_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/787706874/Emmy_award_400_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF keurt lening aan Portugal goed: http://t.co/ExTHzcMq (go to http://t.co/VMlQW4Ze)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:52 +0000", "from_user": "andresefreire", "from_user_id": 222241183, "from_user_id_str": "222241183", "from_user_name": "andres freire", "geo": null, "id": 148829665396670460, "id_str": "148829665396670464", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1181119346/foto002_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1181119346/foto002_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "El FMI aprueba un tramo de cr\\u00E9dito de 2.900 millones a Portugal http://t.co/IHqzherX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:51 +0000", "from_user": "aprofesional", "from_user_id": 91205596, "from_user_id_str": "91205596", "from_user_name": "Estratex Ecuador", "geo": null, "id": 148829664398409730, "id_str": "148829664398409730", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/534655360/icono_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/534655360/icono_normal.PNG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "El FMI aprueba un tramo de cr\\u00E9dito de 2.900 millones a Portugal http://t.co/GYiUpc8Q", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:51 +0000", "from_user": "BNR_Nieuwsradio", "from_user_id": 85805848, "from_user_id_str": "85805848", "from_user_name": "BNR Nieuwsradio", "geo": null, "id": 148829663681187840, "id_str": "148829663681187840", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/494499147/BNR_logo_met_cirkel_2007_normal.GIF", "profile_image_url_https": "https://si0.twimg.com/profile_images/494499147/BNR_logo_met_cirkel_2007_normal.GIF", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF keurt lening aan Portugal goed: http://t.co/hq8XTaML", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:44 +0000", "from_user": "jose_rendaextra", "from_user_id": 142674612, "from_user_id_str": "142674612", "from_user_name": "jose", "geo": null, "id": 148829632332967940, "id_str": "148829632332967936", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1162931773/moto_0198_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1162931773/moto_0198_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/RmNl3ajr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:43 +0000", "from_user": "Ganharvianet", "from_user_id": 387439057, "from_user_id_str": "387439057", "from_user_name": "jose", "geo": null, "id": 148829631066292220, "id_str": "148829631066292224", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698828447/trabalho_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698828447/trabalho_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/amlFIuFf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:43 +0000", "from_user": "rendaonlines", "from_user_id": 425295164, "from_user_id_str": "425295164", "from_user_name": "jose", "geo": null, "id": 148829630554583040, "id_str": "148829630554583040", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1666635621/fr_p_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666635621/fr_p_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/wnJr3fvb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:43 +0000", "from_user": "ganharfortuna", "from_user_id": 382234566, "from_user_id_str": "382234566", "from_user_name": "jose", "geo": null, "id": 148829629002694660, "id_str": "148829629002694657", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1565547949/Jos__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1565547949/Jos__normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/pm1JmEPI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:43 +0000", "from_user": "JoseMdd", "from_user_id": 340911927, "from_user_id_str": "340911927", "from_user_name": "jose", "geo": null, "id": 148829628545507330, "id_str": "148829628545507328", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1456787446/dinheiro_familia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1456787446/dinheiro_familia_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/DBf3miS4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:42 +0000", "from_user": "jplacruz", "from_user_id": 139523088, "from_user_id_str": "139523088", "from_user_name": "Jean Paul Lacruz", "geo": null, "id": 148829623919194100, "id_str": "148829623919194112", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698950916/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698950916/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@astridpestana: solo llevo un d\\u00EDa en Portugal y ya lo extra\\u00F1o un mundo.\\u201D yo mas bebe!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:40 +0000", "from_user": "SuperOkScriptor", "from_user_id": 317286816, "from_user_id_str": "317286816", "from_user_name": "Super Ok Scriptor", "geo": null, "id": 148829617111842800, "id_str": "148829617111842816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1399178837/22052011345m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1399178837/22052011345m_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@rihanna As Portuguese, I'm feel ashamed beacuse that \"filho da p***\" . Put that asshole in a court because racism is forbidden in Portugal.", "to_user": "rihanna", "to_user_id": 79293791, "to_user_id_str": "79293791", "to_user_name": "Rihanna", "in_reply_to_status_id": 148226084759023600, "in_reply_to_status_id_str": "148226084759023617"}, +{"created_at": "Mon, 19 Dec 2011 18:18:29 +0000", "from_user": "jplacruz", "from_user_id": 139523088, "from_user_id_str": "139523088", "from_user_name": "Jean Paul Lacruz", "geo": null, "id": 148829569141587970, "id_str": "148829569141587969", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698950916/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698950916/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @astridpestana: solo llevo un d\\u00EDa en Portugal y ya lo extra\\u00F1o un mundo.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:12 +0000", "from_user": "Keynerd", "from_user_id": 339314668, "from_user_id_str": "339314668", "from_user_name": "Lakeya Keynerd", "geo": null, "id": 148829497863577600, "id_str": "148829497863577601", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1491982152/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1491982152/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "White Wine. Made in Portugal.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:05 +0000", "from_user": "Nisturbandhu", "from_user_id": 173672114, "from_user_id_str": "173672114", "from_user_name": "Mr. Abdul Haye", "geo": null, "id": 148829468386013200, "id_str": "148829468386013184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1264033204/AminXX_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1264033204/AminXX_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "The Islamic Bangla State of Portugal.: http://t.co/dZGv9yCV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:03 +0000", "from_user": "VendasAdam", "from_user_id": 409215094, "from_user_id_str": "409215094", "from_user_name": "Adam Neves Rodrigues", "geo": null, "id": 148829460983054340, "id_str": "148829460983054336", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1632121373/2011-08-07_09.11.17_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632121373/2011-08-07_09.11.17_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/Cy4U5qZT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:03 +0000", "from_user": "Tconrrado", "from_user_id": 416820441, "from_user_id_str": "416820441", "from_user_name": "Tatiane Conrado", "geo": null, "id": 148829460442001400, "id_str": "148829460442001408", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1652209826/PQAAADBpxjORRU7s-w7LsFjcvGwqeZDoY7zHeNUice8rqGU2KDAUKHAinGq_ViGNgSTnSn--fdXS1MbDomI7MypRh1EAm1T1UP4nCDZGwMkpbswywNrUeucqBSx0_1__-_C_pia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652209826/PQAAADBpxjORRU7s-w7LsFjcvGwqeZDoY7zHeNUice8rqGU2KDAUKHAinGq_ViGNgSTnSn--fdXS1MbDomI7MypRh1EAm1T1UP4nCDZGwMkpbswywNrUeucqBSx0_1__-_C_pia_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/5hRCF1zh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:02 +0000", "from_user": "Ieonnardo", "from_user_id": 303528445, "from_user_id_str": "303528445", "from_user_name": "Leo\\u043F\\u043F\\u03B1\\u0433do\\u02B3\\u1D43\\u1D9C\\u1D4F", "geo": null, "id": 148829459406004220, "id_str": "148829459406004224", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1672495168/talvez_esse_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672495168/talvez_esse_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/KE2IXbpg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:02 +0000", "from_user": "toon778", "from_user_id": 288330146, "from_user_id_str": "288330146", "from_user_name": "\\u263B Everton lucas\\u263A \\u25D9 \\u2714", "geo": null, "id": 148829457929601020, "id_str": "148829457929601026", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1540687487/anigif_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1540687487/anigif_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t http://t.co/bSmLiTAx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:02 +0000", "from_user": "jeffersondeso16", "from_user_id": 396606268, "from_user_id_str": "396606268", "from_user_name": "jefferson de sousa", "geo": null, "id": 148829456633569280, "id_str": "148829456633569280", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1611418489/Imag008_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611418489/Imag008_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/3GSOIj1D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:02 +0000", "from_user": "marco777matos", "from_user_id": 393697840, "from_user_id_str": "393697840", "from_user_name": "marco antonio ", "geo": null, "id": 148829455840849920, "id_str": "148829455840849920", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1600116499/tio-patinhas_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600116499/tio-patinhas_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/gn9osZfQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:01 +0000", "from_user": "felipeagora", "from_user_id": 382798177, "from_user_id_str": "382798177", "from_user_name": "luis felipe ", "geo": null, "id": 148829454016331780, "id_str": "148829454016331776", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1566939201/fotos_014_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566939201/fotos_014_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/Lgxp4xsi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:01 +0000", "from_user": "acilioderli", "from_user_id": 220746120, "from_user_id_str": "220746120", "from_user_name": "acilio", "geo": null, "id": 148829453848551420, "id_str": "148829453848551426", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1533482907/foto_casamento01_001_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1533482907/foto_casamento01_001_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/AHDcKPeB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:00 +0000", "from_user": "Andreissilva", "from_user_id": 122369292, "from_user_id_str": "122369292", "from_user_name": "Andrei MKT", "geo": null, "id": 148829451415851000, "id_str": "148829451415851008", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1580823800/IMG0140uAm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580823800/IMG0140uAm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/urRNeOTE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:59 +0000", "from_user": "InformaEconomia", "from_user_id": 368959673, "from_user_id_str": "368959673", "from_user_name": "Informa\\u00E7\\u00F5es Economia", "geo": null, "id": 148829446202339330, "id_str": "148829446202339329", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1531420873/economia_brasileira_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1531420873/economia_brasileira_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/ZsTewegt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:58 +0000", "from_user": "resultaemrenda", "from_user_id": 359798264, "from_user_id_str": "359798264", "from_user_name": "Daniel Wanderson", "geo": null, "id": 148829442855284740, "id_str": "148829442855284736", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1507752297/PQAAAAxVb4YAhpgetI45rSQeuaizk_yCFeX4drZk-yCIn2e4zN17mBG11GvtPRjAA28HqdvoWbu0vAmh3XqapzsVhfAAm1T1UNLIaCP8Wc5ATNDq1zIIqTBO04fb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1507752297/PQAAAAxVb4YAhpgetI45rSQeuaizk_yCFeX4drZk-yCIn2e4zN17mBG11GvtPRjAA28HqdvoWbu0vAmh3XqapzsVhfAAm1T1UNLIaCP8Wc5ATNDq1zIIqTBO04fb_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/fdUT8WKs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:58 +0000", "from_user": "biscoitimm_news", "from_user_id": 336623173, "from_user_id_str": "336623173", "from_user_name": "Matheus Cardoso", "geo": null, "id": 148829441274019840, "id_str": "148829441274019840", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1445577533/OgAAAKCTBugSZ_M1UFswJnz7y-L9mZpfXPHDDjyzjCwzaxvVi1Qf7n0QDPic-uXgGHz07jowKD1SI14QAl575F1dTSoAm1T1UJVULAWaxKdE06oBEet0k2_NuB3M_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1445577533/OgAAAKCTBugSZ_M1UFswJnz7y-L9mZpfXPHDDjyzjCwzaxvVi1Qf7n0QDPic-uXgGHz07jowKD1SI14QAl575F1dTSoAm1T1UJVULAWaxKdE06oBEet0k2_NuB3M_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/cz695UwK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:58 +0000", "from_user": "cergrande", "from_user_id": 333497163, "from_user_id_str": "333497163", "from_user_name": "Carlos Grande", "geo": null, "id": 148829440695214080, "id_str": "148829440695214080", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1438330756/Carlos_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1438330756/Carlos_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/tmpF2iYt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:57 +0000", "from_user": "Gilson1201", "from_user_id": 314799899, "from_user_id_str": "314799899", "from_user_name": "Gilson Oliveira", "geo": null, "id": 148829437931167740, "id_str": "148829437931167744", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1396118362/gilsonic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1396118362/gilsonic_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/4FoOo6ha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:57 +0000", "from_user": "faturarja", "from_user_id": 318066581, "from_user_id_str": "318066581", "from_user_name": "faturarja", "geo": null, "id": 148829437411069950, "id_str": "148829437411069954", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1398049303/thumb_dinheiro_familia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1398049303/thumb_dinheiro_familia_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/gOuKHfrQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:57 +0000", "from_user": "hvdcommerce", "from_user_id": 309759851, "from_user_id_str": "309759851", "from_user_name": "euprecisosabercomo", "geo": null, "id": 148829436635119600, "id_str": "148829436635119617", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1384344833/Sans_titre_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1384344833/Sans_titre_1_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/YXSsbbZf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:57 +0000", "from_user": "vianova2011", "from_user_id": 304763077, "from_user_id_str": "304763077", "from_user_name": "Elton Celso Wagner", "geo": null, "id": 148829435578159100, "id_str": "148829435578159104", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1387533900/Figura1_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1387533900/Figura1_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/qksgDh0k", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:57 +0000", "from_user": "Maresiareggae", "from_user_id": 281156074, "from_user_id_str": "281156074", "from_user_name": " Karica\\u00B4s", "geo": null, "id": 148829434751877120, "id_str": "148829434751877121", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1310258339/maresia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1310258339/maresia_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/htM9XAWl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:56 +0000", "from_user": "topsigame", "from_user_id": 292318197, "from_user_id_str": "292318197", "from_user_name": "topsigame", "geo": null, "id": 148829434093387780, "id_str": "148829434093387777", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1337459374/SETA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1337459374/SETA_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/Pj85XwN4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:56 +0000", "from_user": "SistemaGanhar", "from_user_id": 279636993, "from_user_id_str": "279636993", "from_user_name": "Ganhe Dinheiro Agora", "geo": null, "id": 148829432579239940, "id_str": "148829432579239936", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1305766842/dinheiro_familia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1305766842/dinheiro_familia_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/F9mzpgIs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:56 +0000", "from_user": "Dindin_agora", "from_user_id": 278249326, "from_user_id_str": "278249326", "from_user_name": "Dinheiro Agora", "geo": null, "id": 148829431580999680, "id_str": "148829431580999681", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1304999779/cifrao_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1304999779/cifrao_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/uoOppch1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:56 +0000", "from_user": "daytradeBOVESPA", "from_user_id": 165049249, "from_user_id_str": "165049249", "from_user_name": "Brasil", "geo": null, "id": 148829431023149060, "id_str": "148829431023149056", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1195885414/thumb_fan_symbol_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1195885414/thumb_fan_symbol_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/8wc0pJDS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:55 +0000", "from_user": "alfayarj", "from_user_id": 270028960, "from_user_id_str": "270028960", "from_user_name": "Carlos Alfaya", "geo": null, "id": 148829428489789440, "id_str": "148829428489789440", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1284929672/123456_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1284929672/123456_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/TXfJI2VX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:55 +0000", "from_user": "LairsonOVelho", "from_user_id": 261392341, "from_user_id_str": "261392341", "from_user_name": "Lairson Belmonte", "geo": null, "id": 148829427697070080, "id_str": "148829427697070080", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1263091307/eu1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263091307/eu1_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/8eRX0BHB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:54 +0000", "from_user": "cantodailha", "from_user_id": 68441223, "from_user_id_str": "68441223", "from_user_name": "Hotel Canto da Ilha", "geo": null, "id": 148829425742520320, "id_str": "148829425742520320", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/970974102/logo-canto-ilha_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/970974102/logo-canto-ilha_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/JX9xjUsX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:54 +0000", "from_user": "divsonic", "from_user_id": 200372636, "from_user_id_str": "200372636", "from_user_name": "Rodrigo", "geo": null, "id": 148829425176289280, "id_str": "148829425176289281", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1218582247/13Sep_0019_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218582247/13Sep_0019_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/wJWounw5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:54 +0000", "from_user": "amwaydobrazil", "from_user_id": 259446060, "from_user_id_str": "259446060", "from_user_name": "Francisco Martins", "geo": null, "id": 148829424178049020, "id_str": "148829424178049024", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1259012332/eunofone.jpg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1259012332/eunofone.jpg_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/MD0G7NYc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:54 +0000", "from_user": "leandro_sgda", "from_user_id": 255064179, "from_user_id_str": "255064179", "from_user_name": "leandro alves", "geo": null, "id": 148829423519547400, "id_str": "148829423519547392", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1249775692/OQAAAFkSsFlVSvPFZJ1cFX_RR-2eBD8Q6JLGjcTRCMimDFbeIbp5dTIlTYEPA8w3cZ42wQpYUU02cgKL05mUo4rR-qEAm1T1UGfDiku1VnHBpcG5fy3SpQknry4v_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1249775692/OQAAAFkSsFlVSvPFZJ1cFX_RR-2eBD8Q6JLGjcTRCMimDFbeIbp5dTIlTYEPA8w3cZ42wQpYUU02cgKL05mUo4rR-qEAm1T1UGfDiku1VnHBpcG5fy3SpQknry4v_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/nKqvuCgo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:54 +0000", "from_user": "douglasm_santos", "from_user_id": 255021312, "from_user_id_str": "255021312", "from_user_name": "Douglas Matos", "geo": null, "id": 148829422785531900, "id_str": "148829422785531904", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1249730709/P1080125_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1249730709/P1080125_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/dD9mZLxw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:53 +0000", "from_user": "Attosconstcivil", "from_user_id": 233609185, "from_user_id_str": "233609185", "from_user_name": "Attos Const. Civil", "geo": null, "id": 148829421317525500, "id_str": "148829421317525504", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691221033/branco_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691221033/branco_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/jRBtyRYv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:53 +0000", "from_user": "Fouad_Webrenda", "from_user_id": 213390267, "from_user_id_str": "213390267", "from_user_name": "fouad fadl", "geo": null, "id": 148829419388153860, "id_str": "148829419388153856", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1224072106/Gramado_e_Canela_200_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1224072106/Gramado_e_Canela_200_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/fhZa6CkX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:53 +0000", "from_user": "Empreendedornet", "from_user_id": 73765593, "from_user_id_str": "73765593", "from_user_name": "Ronaldo Santos", "geo": null, "id": 148829418587029500, "id_str": "148829418587029504", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/457794815/10-10-08_2113_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/457794815/10-10-08_2113_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/IDZbQGb6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:53 +0000", "from_user": "probeto123", "from_user_id": 49773548, "from_user_id_str": "49773548", "from_user_name": "Paulo Roberto Orth", "geo": null, "id": 148829418159210500, "id_str": "148829418159210496", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1218599988/41762_100001369055674_4916_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218599988/41762_100001369055674_4916_q_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t http://t.co/ks8MQFHR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:50 +0000", "from_user": "livejornal", "from_user_id": 82668319, "from_user_id_str": "82668319", "from_user_name": "LiveJornal", "geo": null, "id": 148829408210329600, "id_str": "148829408210329600", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1109362619/terragira_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1109362619/terragira_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal: http://t.co/lsNd6Rfc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:50 +0000", "from_user": "DjKaosJollyJams", "from_user_id": 317336718, "from_user_id_str": "317336718", "from_user_name": "DjKaosJollyJams", "geo": null, "id": 148829406897504260, "id_str": "148829406897504256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1396093400/kaos_rider_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1396093400/kaos_rider_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "PORTUGAL TOUR 2012 INCOMING!\\nCheck this video out -- DJ KAOS & DJ TIAGO - LUX CLUB LISBOA http://t.co/vYtJHyHc via @youtube", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:49 +0000", "from_user": "vmoretoconsult", "from_user_id": 126282876, "from_user_id_str": "126282876", "from_user_name": "VM Consulting", "geo": null, "id": 148829405077188600, "id_str": "148829405077188608", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/774189460/vm-150x150_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/774189460/vm-150x150_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal: http://t.co/da3c7KsW #VMConsulting", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:38 +0000", "from_user": "Economia_Es", "from_user_id": 369694446, "from_user_id_str": "369694446", "from_user_name": "infoEconomia ", "geo": null, "id": 148829358830784500, "id_str": "148829358830784512", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1534225813/hucha-tecla_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534225813/hucha-tecla_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "El FMI aprueba un tramo de cr\\u00E9dito de 2.900 millones a Portugal: (Reuters) - El Fondo Monetario Int... http://t.co/kTaTVbJz #econotweets", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:38 +0000", "from_user": "american_eagle", "from_user_id": 19039286, "from_user_id_str": "19039286", "from_user_name": "American Eagle", "geo": null, "id": 148829357077569540, "id_str": "148829357077569536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1508203201/safe_image.php2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1508203201/safe_image.php2_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "@FI_Maia We are so happy your items made it to Portugal safely and quickly.", "to_user": "FI_Maia", "to_user_id": 393069583, "to_user_id_str": "393069583", "to_user_name": "Filipa Maia", "in_reply_to_status_id": 147818043425292300, "in_reply_to_status_id_str": "147818043425292288"}, +{"created_at": "Mon, 19 Dec 2011 18:17:38 +0000", "from_user": "Economia_Es", "from_user_id": 369694446, "from_user_id_str": "369694446", "from_user_name": "infoEconomia ", "geo": null, "id": 148829356255485950, "id_str": "148829356255485953", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1534225813/hucha-tecla_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534225813/hucha-tecla_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "El FMI autoriza el desembolso de 2.900 millones del siguiente tramo del rescate de Portugal: El con... http://t.co/vO2kG7ev #econotweets", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:25 +0000", "from_user": "Lepranews", "from_user_id": 74204778, "from_user_id_str": "74204778", "from_user_name": "Newells Old Boys", "geo": null, "id": 148829304371949570, "id_str": "148829304371949568", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1150170542/Escudo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1150170542/Escudo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @VarskySports: En Portugal afirman que Colo Ansaldi no quiere volver a Rusia y #Benfica busca contratarlo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:11 +0000", "from_user": "evam1987", "from_user_id": 128621106, "from_user_id_str": "128621106", "from_user_name": "eva maria", "geo": null, "id": 148829245714612220, "id_str": "148829245714612224", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695003698/-0003mx_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695003698/-0003mx_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @VarskySports: En Portugal afirman que Colo Ansaldi no quiere volver a Rusia y #Benfica busca contratarlo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:05 +0000", "from_user": "divirtaseopovo", "from_user_id": 108985493, "from_user_id_str": "108985493", "from_user_name": "Blog Buchicho", "geo": null, "id": 148829219269513200, "id_str": "148829219269513216", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1158952333/avatar_divirtase_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1158952333/avatar_divirtase_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Rihanna sofre preconceito em Portugal e desabafa no twitter http://t.co/7OLo6NBB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:47 +0000", "from_user": "RihannaSuperFly", "from_user_id": 372524638, "from_user_id_str": "372524638", "from_user_name": "LBCRihannaFenty", "geo": null, "id": 148829143889485820, "id_str": "148829143889485824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1632793672/IP3DU4r2_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632793672/IP3DU4r2_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@rih_navy_always You are from portugal?", "to_user": "rih_navy_always", "to_user_id": 380436804, "to_user_id_str": "380436804", "to_user_name": "marianavy_for_life", "in_reply_to_status_id": 148828452039032830, "in_reply_to_status_id_str": "148828452039032832"}, +{"created_at": "Mon, 19 Dec 2011 18:16:43 +0000", "from_user": "mikahsant", "from_user_id": 321663360, "from_user_id_str": "321663360", "from_user_name": "michaella", "geo": null, "id": 148829126340513800, "id_str": "148829126340513792", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1472926866/mika_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1472926866/mika_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "ai ai dia 31 chega e portugal a minha mae tenho que ir ate porto alegre pra buscar ela odeio viajens longas", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:39 +0000", "from_user": "raafaela96", "from_user_id": 73251663, "from_user_id_str": "73251663", "from_user_name": "Rafaela", "geo": null, "id": 148829107709411330, "id_str": "148829107709411329", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1209546359/PTDC1016_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1209546359/PTDC1016_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@ddlovato Come to Portugal plz ! \\n Portugal love you", "to_user": "ddlovato", "to_user_id": 21111883, "to_user_id_str": "21111883", "to_user_name": "demetria lovato"}, +{"created_at": "Mon, 19 Dec 2011 18:16:38 +0000", "from_user": "IndiaNewsMix", "from_user_id": 346777710, "from_user_id_str": "346777710", "from_user_name": "India News Desk", "geo": null, "id": 148829104333008900, "id_str": "148829104333008897", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1473076610/logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1473076610/logo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "How Goa became a part of India: In 1947, Portugal's Estado da India consisted of Goa, Daman, Diu and Dadra and N... http://t.co/n2JUY3rj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:37 +0000", "from_user": "prolawrssfeed", "from_user_id": 190785653, "from_user_id_str": "190785653", "from_user_name": "MyProLaw", "geo": null, "id": 148829102185529340, "id_str": "148829102185529344", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1123859389/iStock_000000691372Small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1123859389/iStock_000000691372Small_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Portugal Re-Discovers Venture Capital http://t.co/apLcn0Kt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:34 +0000", "from_user": "JussBiebsPT", "from_user_id": 195362402, "from_user_id_str": "195362402", "from_user_name": "Bieberlandia \\u2665", "geo": null, "id": 148829089493557250, "id_str": "148829089493557248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1642400494/sorandom-4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642400494/sorandom-4_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@justinbieber i just want you in my country, you need to come to Portugal next year, do you want ?", "to_user": "justinbieber", "to_user_id": 27260086, "to_user_id_str": "27260086", "to_user_name": "Justin Bieber"}, +{"created_at": "Mon, 19 Dec 2011 18:16:32 +0000", "from_user": "Silver_hand", "from_user_id": 36516261, "from_user_id_str": "36516261", "from_user_name": "Chris Manning", "geo": null, "id": 148829081063002100, "id_str": "148829081063002113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/203479825/SH_logo_48_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/203479825/SH_logo_48_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:17 +0000", "from_user": "revista_amanha", "from_user_id": 24891583, "from_user_id_str": "24891583", "from_user_name": "Revista Amanh\\u00E3", "geo": null, "id": 148829015300513800, "id_str": "148829015300513793", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1251469531/twitter2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1251469531/twitter2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "FMI libera 2,9 bi de euros para Portugal - http://t.co/aItDjfh9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:03 +0000", "from_user": "anaritasilvaa", "from_user_id": 81958079, "from_user_id_str": "81958079", "from_user_name": "Justin's PurpleNinja", "geo": null, "id": 148828957725294600, "id_str": "148828957725294592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702392875/tumblr_lvt8qrFOg91ql3bhvo1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702392875/tumblr_lvt8qrFOg91ql3bhvo1_500_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MathildeSimple Portugal and you ? :)", "to_user": "MathildeSimple", "to_user_id": 317926424, "to_user_id_str": "317926424", "to_user_name": "Simple Mathilde", "in_reply_to_status_id": 148828868722176000, "in_reply_to_status_id_str": "148828868722176001"}, +{"created_at": "Mon, 19 Dec 2011 18:15:59 +0000", "from_user": "HIPHOPN3WS", "from_user_id": 214491172, "from_user_id_str": "214491172", "from_user_name": "HIPHOPNEWS ", "geo": null, "id": 148828940893569020, "id_str": "148828940893569025", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1460765205/RED_HOODIE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1460765205/RED_HOODIE_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Rihanna Goes on Twitter Rant After Racial Abuse in Portugal (@Rihanna) http://t.co/j0kezfzC All i can say is I LOVE @RIHANNA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:59 +0000", "from_user": "lilianamldias", "from_user_id": 195108850, "from_user_id_str": "195108850", "from_user_name": "Liliana", "geo": null, "id": 148828939777867780, "id_str": "148828939777867777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1647781616/250376_190717564321322_100001492404466_531132_7851797_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647781616/250376_190717564321322_100001492404466_531132_7851797_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "buah ... When is that one direction decide to come to Portugal??", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:50 +0000", "from_user": "economiaaldia", "from_user_id": 89494209, "from_user_id_str": "89494209", "from_user_name": "Economia al D\\u00EDa", "geo": null, "id": 148828905032253440, "id_str": "148828905032253441", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/524509539/economia_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/524509539/economia_1__normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Econom\\u00EDa.- El FMI autoriza el desembolso de 2.900 millones del siguiente tramo del rescate de Portugal: LISBOA, ... http://t.co/YzDVFRG2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:49 +0000", "from_user": "Yaann_lp", "from_user_id": 270889619, "from_user_id_str": "270889619", "from_user_name": "YaNn \\u2665", "geo": null, "id": 148828900447887360, "id_str": "148828900447887360", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694597806/patin_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694597806/patin_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@imiparraguirre jajjaj preguntale al naka q puedo mandar a pedir de portugal para un regalo jajjajaj", "to_user": "imiparraguirre", "to_user_id": 149998690, "to_user_id_str": "149998690", "to_user_name": "imi iparraguirre", "in_reply_to_status_id": 148828653386600450, "in_reply_to_status_id_str": "148828653386600448"}, +{"created_at": "Mon, 19 Dec 2011 18:15:44 +0000", "from_user": "VarskySports", "from_user_id": 131967942, "from_user_id_str": "131967942", "from_user_name": "VarskySports", "geo": null, "id": 148828876892680200, "id_str": "148828876892680192", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1101175787/Foto-antorcha_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1101175787/Foto-antorcha_1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "En Portugal afirman que Colo Ansaldi no quiere volver a Rusia y #Benfica busca contratarlo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:40 +0000", "from_user": "Tangelaywvk", "from_user_id": 426263540, "from_user_id_str": "426263540", "from_user_name": "Tangela Minervini", "geo": null, "id": 148828863865163780, "id_str": "148828863865163777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668799827/LLCM-1969_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668799827/LLCM-1969_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Spain-Portugal: FB.S000 (Multi-country Mapping): http://t.co/EuFBXkfD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:39 +0000", "from_user": "Ivesterye", "from_user_id": 395428721, "from_user_id_str": "395428721", "from_user_name": "Julieta Ivester", "geo": null, "id": 148828858957832200, "id_str": "148828858957832192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1599687864/MFC-4217_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599687864/MFC-4217_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Spain-Portugal: FB.S000 (Multi-country Mapping): http://t.co/XGr6kFEW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:29 +0000", "from_user": "ejovenes", "from_user_id": 251203654, "from_user_id_str": "251203654", "from_user_name": "CEJcoparmex", "geo": null, "id": 148828816872194050, "id_str": "148828816872194048", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1467104587/CEJ_COPARMEX_NEW_LOGO_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1467104587/CEJ_COPARMEX_NEW_LOGO_normal.png", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "Aprueba el Fondo Monetario Internacional la entrega de casi 3 mil millones de euros para Portugal http://t.co/Q2tpx9wK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:22 +0000", "from_user": "economia_feed_1", "from_user_id": 284997069, "from_user_id_str": "284997069", "from_user_name": "economia_feed_1", "geo": null, "id": 148828786266357760, "id_str": "148828786266357761", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.google.es" rel="nofollow">Economia_feed</a>", "text": "El #FMI #autoriza el #desembolso del siguiente #tramo del #rescate de #Portugal http://t.co/0R7uYsOK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:15:59 +0000", "from_user": "meloname", "from_user_id": 152141448, "from_user_id_str": "152141448", "from_user_name": "melon ame", "geo": null, "id": 148828941757587460, "id_str": "148828941757587456", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Milenio: FMI aprueba entrega de \\u20AC2 mil 900 millones para Portugal http://t.co/yR5rfUc1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:59 +0000", "from_user": "HIPHOPN3WS", "from_user_id": 214491172, "from_user_id_str": "214491172", "from_user_name": "HIPHOPNEWS ", "geo": null, "id": 148828940893569020, "id_str": "148828940893569025", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1460765205/RED_HOODIE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1460765205/RED_HOODIE_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Rihanna Goes on Twitter Rant After Racial Abuse in Portugal (@Rihanna) http://t.co/j0kezfzC All i can say is I LOVE @RIHANNA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:59 +0000", "from_user": "lilianamldias", "from_user_id": 195108850, "from_user_id_str": "195108850", "from_user_name": "Liliana", "geo": null, "id": 148828939777867780, "id_str": "148828939777867777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1647781616/250376_190717564321322_100001492404466_531132_7851797_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647781616/250376_190717564321322_100001492404466_531132_7851797_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "buah ... When is that one direction decide to come to Portugal??", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:50 +0000", "from_user": "economiaaldia", "from_user_id": 89494209, "from_user_id_str": "89494209", "from_user_name": "Economia al D\\u00EDa", "geo": null, "id": 148828905032253440, "id_str": "148828905032253441", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/524509539/economia_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/524509539/economia_1__normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Econom\\u00EDa.- El FMI autoriza el desembolso de 2.900 millones del siguiente tramo del rescate de Portugal: LISBOA, ... http://t.co/YzDVFRG2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:49 +0000", "from_user": "Yaann_lp", "from_user_id": 270889619, "from_user_id_str": "270889619", "from_user_name": "YaNn \\u2665", "geo": null, "id": 148828900447887360, "id_str": "148828900447887360", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694597806/patin_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694597806/patin_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@imiparraguirre jajjaj preguntale al naka q puedo mandar a pedir de portugal para un regalo jajjajaj", "to_user": "imiparraguirre", "to_user_id": 149998690, "to_user_id_str": "149998690", "to_user_name": "imi iparraguirre", "in_reply_to_status_id": 148828653386600450, "in_reply_to_status_id_str": "148828653386600448"}, +{"created_at": "Mon, 19 Dec 2011 18:15:44 +0000", "from_user": "VarskySports", "from_user_id": 131967942, "from_user_id_str": "131967942", "from_user_name": "VarskySports", "geo": null, "id": 148828876892680200, "id_str": "148828876892680192", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1101175787/Foto-antorcha_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1101175787/Foto-antorcha_1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "En Portugal afirman que Colo Ansaldi no quiere volver a Rusia y #Benfica busca contratarlo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:40 +0000", "from_user": "Tangelaywvk", "from_user_id": 426263540, "from_user_id_str": "426263540", "from_user_name": "Tangela Minervini", "geo": null, "id": 148828863865163780, "id_str": "148828863865163777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668799827/LLCM-1969_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668799827/LLCM-1969_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Spain-Portugal: FB.S000 (Multi-country Mapping): http://t.co/EuFBXkfD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:39 +0000", "from_user": "Ivesterye", "from_user_id": 395428721, "from_user_id_str": "395428721", "from_user_name": "Julieta Ivester", "geo": null, "id": 148828858957832200, "id_str": "148828858957832192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1599687864/MFC-4217_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599687864/MFC-4217_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Spain-Portugal: FB.S000 (Multi-country Mapping): http://t.co/XGr6kFEW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:35 +0000", "from_user": "Tumtum_Senger", "from_user_id": 375074126, "from_user_id_str": "375074126", "from_user_name": "\\u2654Arthur Senger \\u2655", "geo": null, "id": 148828840007962620, "id_str": "148828840007962624", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1624102201/317141_130980263676745_100002943172791_164354_882766803_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624102201/317141_130980263676745_100002943172791_164354_882766803_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "e euu aqui em Portugal.... Ja anoite!!!! Tipo aqui s\\u00E3o 16:16 da tarde ja ta anoite... isso sim \\u00E9h que e inverno forte em... hahahaha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:29 +0000", "from_user": "ejovenes", "from_user_id": 251203654, "from_user_id_str": "251203654", "from_user_name": "CEJcoparmex", "geo": null, "id": 148828816872194050, "id_str": "148828816872194048", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1467104587/CEJ_COPARMEX_NEW_LOGO_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1467104587/CEJ_COPARMEX_NEW_LOGO_normal.png", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "Aprueba el Fondo Monetario Internacional la entrega de casi 3 mil millones de euros para Portugal http://t.co/Q2tpx9wK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:22 +0000", "from_user": "economia_feed_1", "from_user_id": 284997069, "from_user_id_str": "284997069", "from_user_name": "economia_feed_1", "geo": null, "id": 148828786266357760, "id_str": "148828786266357761", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.google.es" rel="nofollow">Economia_feed</a>", "text": "El #FMI #autoriza el #desembolso del siguiente #tramo del #rescate de #Portugal http://t.co/0R7uYsOK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:21 +0000", "from_user": "ruicruz", "from_user_id": 8757362, "from_user_id_str": "8757362", "from_user_name": "Rui Cruz", "geo": null, "id": 148828782701182980, "id_str": "148828782701182976", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1454284389/242933_217847278246550_100000638370024_714778_274115_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1454284389/242933_217847278246550_100000638370024_714778_274115_o_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "http://t.co/aV5FpZ9p: Wall Street sobe pela terceira sess\\u00E3o com Europa http://t.co/FoF8Zn7m #fmi #portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:20 +0000", "from_user": "duvdinformatica", "from_user_id": 215820756, "from_user_id_str": "215820756", "from_user_name": "D\\u00FAvidasdeInform\\u00E1tica", "geo": null, "id": 148828778276204540, "id_str": "148828778276204545", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1167354140/ScreenClip_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1167354140/ScreenClip_normal.png", "source": "<a href="http://www.duvidasdeinformatica.com/" rel="nofollow">D\\u00FAvidas de Inform\\u00E1tica</a>", "text": "#Portugal #Emprego > Designer procura programador / web developer freelancer... http://t.co/HKuQfUCN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:13 +0000", "from_user": "daiszy0123", "from_user_id": 131567296, "from_user_id_str": "131567296", "from_user_name": "daisyshow", "geo": null, "id": 148828746911199230, "id_str": "148828746911199232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1401957588/Selena_Gomez_17_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1401957588/Selena_Gomez_17_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Rihanna sick at Portugal show http://t.co/9IGxgj41", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:06 +0000", "from_user": "MOCAjack", "from_user_id": 21198116, "from_user_id_str": "21198116", "from_user_name": "MOCA Jacksonville", "geo": null, "id": 148828721179148300, "id_str": "148828721179148289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693089017/FB-MOCA-logo-_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693089017/FB-MOCA-logo-_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Shout out to our friends in Portugal! @affoto Thank you for the post! The afotografia Photography Daily j\\u00E1 saiu! http://t.co/IDfXp5D7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:03 +0000", "from_user": "Economic_Times", "from_user_id": 347785614, "from_user_id_str": "347785614", "from_user_name": "Economic Times", "geo": null, "id": 148828708952743940, "id_str": "148828708952743936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "http://t.co/u8YMA9g8 IMF releases 2.9 bn euros to Portugal: IMF said it would release 2.9 billion euros ($3.8... http://t.co/iHcaplmh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:00 +0000", "from_user": "IpapStreet", "from_user_id": 259411021, "from_user_id_str": "259411021", "from_user_name": "Team IpapUnivers", "geo": null, "id": 148828692347490300, "id_str": "148828692347490304", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1485279295/mic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1485279295/mic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Rihanna enceinte : Elle fait actuellement le Buzz sur le Net, apres etre aller vomir alors qu'elle donnait un concert au Portugal...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:46 +0000", "from_user": "raafaela96", "from_user_id": 73251663, "from_user_id_str": "73251663", "from_user_name": "Rafaela", "geo": null, "id": 148828634931675140, "id_str": "148828634931675136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1209546359/PTDC1016_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1209546359/PTDC1016_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@rihanna Thanks very much the concert in Portugal !", "to_user": "rihanna", "to_user_id": 79293791, "to_user_id_str": "79293791", "to_user_name": "Rihanna"}, +{"created_at": "Mon, 19 Dec 2011 18:14:44 +0000", "from_user": "_Carlos_Melo_", "from_user_id": 325836619, "from_user_id_str": "325836619", "from_user_name": "CARLOS MELO", "geo": null, "id": 148828625217654800, "id_str": "148828625217654784", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699720835/Jr.vermelho_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699720835/Jr.vermelho_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "#rihanna acusa hotel de Portugal de racismo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:40 +0000", "from_user": "RitinhaBieber17", "from_user_id": 363916597, "from_user_id_str": "363916597", "from_user_name": "Proud to be Belieber", "geo": null, "id": 148828611753947140, "id_str": "148828611753947136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1675995868/__KGrHqF__jkE2HRjbf_KBNpf_r1i0Q__0_1h_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675995868/__KGrHqF__jkE2HRjbf_KBNpf_r1i0Q__0_1h_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rihanna: PORTUGAL tonight was LEGENDARY!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:38 +0000", "from_user": "vusisindane", "from_user_id": 190879699, "from_user_id_str": "190879699", "from_user_name": "Vusi Sindane", "geo": null, "id": 148828600202833920, "id_str": "148828600202833920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1223790894/newpic_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1223790894/newpic_400_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @richardbranson: Great results from an alternative approach to combating drug abuse #portugal http://t.co/T7h30vOW", "to_user": "richardbranson", "to_user_id": 8161232, "to_user_id_str": "8161232", "to_user_name": "richardbranson", "in_reply_to_status_id": 148791817272438800, "in_reply_to_status_id_str": "148791817272438784"}, +{"created_at": "Mon, 19 Dec 2011 18:14:28 +0000", "from_user": "SamKinsman96", "from_user_id": 430021419, "from_user_id_str": "430021419", "from_user_name": "Sam Kinsman", "geo": null, "id": 148828559014772740, "id_str": "148828559014772737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688800442/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688800442/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@kate_cocozza You thought Portugal was in turkey mate", "to_user": "Kate_Cocozza", "to_user_id": 408033612, "to_user_id_str": "408033612", "to_user_name": "Kate Ann"}, +{"created_at": "Mon, 19 Dec 2011 18:14:18 +0000", "from_user": "barthoffman", "from_user_id": 82361085, "from_user_id_str": "82361085", "from_user_name": "Bart Hoffman", "geo": null, "id": 148828520041287680, "id_str": "148828520041287680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1609186099/IMG_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609186099/IMG_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:16 +0000", "from_user": "isiscvilarim", "from_user_id": 181697623, "from_user_id_str": "181697623", "from_user_name": "\\u00CDsis Vilarim", "geo": null, "id": 148828508410490880, "id_str": "148828508410490880", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702435719/___normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702435719/___normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@LoveJecTorres tu vai pra Portugal primeiro \\u00E9 amiga?", "to_user": "LoveJecTorres", "to_user_id": 150374030, "to_user_id_str": "150374030", "to_user_name": "Love J\\u00E9ssica Torres", "in_reply_to_status_id": 148828096051679230, "in_reply_to_status_id_str": "148828096051679232"}, +{"created_at": "Mon, 19 Dec 2011 18:14:12 +0000", "from_user": "ObeyBieberconda", "from_user_id": 53453645, "from_user_id_str": "53453645", "from_user_name": "sara", "geo": null, "id": 148828494095327230, "id_str": "148828494095327234", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702190711/Snapshot_20111217_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702190711/Snapshot_20111217_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "every singer that comes to portugal, always say that they loved. justin, why dont you come here like now", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:02 +0000", "from_user": "JUANITOPASTRANA", "from_user_id": 147655717, "from_user_id_str": "147655717", "from_user_name": "juan gabriel pastrna", "geo": null, "id": 148828451502174200, "id_str": "148828451502174208", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1502328447/299352_10150346172031285_699496284_9970489_3891521_n_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1502328447/299352_10150346172031285_699496284_9970489_3891521_n_1__normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Que partiido argentina vs portugal http://t.co/UhPa9Apg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:58 +0000", "from_user": "PVera31", "from_user_id": 176705960, "from_user_id_str": "176705960", "from_user_name": "P@o", "geo": null, "id": 148828434896924670, "id_str": "148828434896924673", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1560520291/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1560520291/image_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @LifeBoxset: Escucha un cover de Portugal. The Man a Gnarls Barkley http://t.co/qYMNEKP9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:57 +0000", "from_user": "imprensapt", "from_user_id": 92309927, "from_user_id_str": "92309927", "from_user_name": "Imprensa Portugal", "geo": null, "id": 148828429909901300, "id_str": "148828429909901312", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/541910652/imprensa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/541910652/imprensa_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprovou terceira tranche do empr\\u00E9stimo a Portugal: O Fundo Monet\\u00E1rio Internacional (FMI) aprovou esta segund... http://t.co/O3g22DMN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:53 +0000", "from_user": "indmutualfunds", "from_user_id": 102630399, "from_user_id_str": "102630399", "from_user_name": "MFI", "geo": null, "id": 148828413283667970, "id_str": "148828413283667968", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Indian funds: IMF releases 2.9 bn euros to Portugal http://t.co/GSY7qTNa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:46 +0000", "from_user": "Davinanwn", "from_user_id": 431687169, "from_user_id_str": "431687169", "from_user_name": "Davina Mathiesen", "geo": null, "id": 148828385555124220, "id_str": "148828385555124225", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681001463/qotn2ru4t5_122480869_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681001463/qotn2ru4t5_122480869_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Spain and Portugal: Short Stay Guide (Short Stay Guides): http://t.co/cFjrU21a", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:38 +0000", "from_user": "Paesa1978", "from_user_id": 363633403, "from_user_id_str": "363633403", "from_user_name": "Francisco Paesa", "geo": null, "id": 148828349890965500, "id_str": "148828349890965504", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1517303999/kaput_z1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517303999/kaput_z1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @LenaLafayette: http://t.co/vGAyiIOq Foreign Office preparan ayudas para brit\\u00E1nicos que vivan en ESpa\\u00F1a y en Portugal,en el caso en el que hay CORRALITO.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:36 +0000", "from_user": "wildwordweb", "from_user_id": 55131809, "from_user_id_str": "55131809", "from_user_name": "wildwordweb ", "geo": null, "id": 148828343347847170, "id_str": "148828343347847169", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1613064893/004a6878-c4c5-4978-a897-06f3f3d34467_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1613064893/004a6878-c4c5-4978-a897-06f3f3d34467_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "El FMI aprueba un tramo de cr\\u00E9dito de 2.900 millones a Portugal - Yahoo! http://t.co/negJ0wP4 via @YahooFinance", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:26 +0000", "from_user": "Fyockdk", "from_user_id": 395389016, "from_user_id_str": "395389016", "from_user_name": "Anya Fyock", "geo": null, "id": 148828301450944500, "id_str": "148828301450944512", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1599596527/MFC-2076_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599596527/MFC-2076_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Garmin City Navigator Spain/Portugal - 010-10691-02: Garmin City Navigator NT Spain & PortugalDetailed map cover... http://t.co/OoYT0rAX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:23 +0000", "from_user": "PrryEli", "from_user_id": 310040423, "from_user_id_str": "310040423", "from_user_name": "EliDannVl", "geo": null, "id": 148828285151870980, "id_str": "148828285151870976", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1612560802/297108_10150325986953059_708573058_8194372_985497793_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612560802/297108_10150325986953059_708573058_8194372_985497793_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Una de las bibliotecas mas hermosas del mundo en Coimbra, Portugal http://t.co/oKPiBhNt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:17 +0000", "from_user": "SaraMartineeez", "from_user_id": 343577758, "from_user_id_str": "343577758", "from_user_name": "S\\u0251r\\u0251 M\\u0251rtinez \\u2661", "geo": null, "id": 148828262288732160, "id_str": "148828262288732160", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677402455/asc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677402455/asc_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TamiTomlinson: @SaraMartineeez Jajajajajaja :B MOR\\u00CD! Vos me tenias abondonada! LLendote a PORTUGAL XD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:17 +0000", "from_user": "daankofinch", "from_user_id": 145707317, "from_user_id_str": "145707317", "from_user_name": "\\u0424\\u0438\\u043D\\u0447", "geo": null, "id": 148828261802184700, "id_str": "148828261802184704", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702450719/__23_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702450719/__23_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u0430\\u0445 \\u0434\\u0430 http://t.co/ZLHmJY7v", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:00 +0000", "from_user": "RonaltSiilva", "from_user_id": 156436987, "from_user_id_str": "156436987", "from_user_name": "Ronalt", "geo": null, "id": 148828189479813120, "id_str": "148828189479813122", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697597588/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697597588/twitter_normal.jpg", "source": "<a href="http://messaging.nokia.com/site/main.do" rel="nofollow"> Ovi by Nokia </a>", "text": "Nossa q cultura estranha de portugal. Dar cigarros para as crian\\u00E7as em uma \\u00E9poca do ano =S #Indignado", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:59 +0000", "from_user": "BritVzla", "from_user_id": 440985039, "from_user_id_str": "440985039", "from_user_name": "Astrid Navarrete", "geo": null, "id": 148828188615770100, "id_str": "148828188615770112", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702419898/110_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702419898/110_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "@Evenpro #LaPrincesaVinotinto Portugal", "to_user": "Evenpro", "to_user_id": 95903808, "to_user_id_str": "95903808", "to_user_name": "Evenpro "}, +{"created_at": "Mon, 19 Dec 2011 18:12:56 +0000", "from_user": "Its_Nicou", "from_user_id": 181596625, "from_user_id_str": "181596625", "from_user_name": "\\u2714 Just Do It.", "geo": null, "id": 148828173507891200, "id_str": "148828173507891200", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694901177/tumblr_lvv2mgsWRY1qik3uyo1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694901177/tumblr_lvv2mgsWRY1qik3uyo1_500_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Magnifique vid\\u00E9o des d\\u00E9buts de @Cristiano avec le maillot du Sporting Clube du Portugal http://t.co/8moLUFKb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:53 +0000", "from_user": "Alixymz", "from_user_id": 440208675, "from_user_id_str": "440208675", "from_user_name": "Alix Gettle", "geo": null, "id": 148828163001167870, "id_str": "148828163001167872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700563342/large_KMHLRQBSKCVEH_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700563342/large_KMHLRQBSKCVEH_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Portugal - Culture Smart!: The Essential Guide to Customs & Culture: Culture Smart! provides essential informati... http://t.co/9FJ9RkOk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:49 +0000", "from_user": "wildwordweb", "from_user_id": 55131809, "from_user_id_str": "55131809", "from_user_name": "wildwordweb ", "geo": null, "id": 148828144139382800, "id_str": "148828144139382785", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1613064893/004a6878-c4c5-4978-a897-06f3f3d34467_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1613064893/004a6878-c4c5-4978-a897-06f3f3d34467_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @RedEconomica: El FMI aprueba un tramo de cr\\u00E9dito de 2.900 millones a Portugal http://t.co/YKTZi6Og [Yahoo] #Economia", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:49 +0000", "from_user": "Daniela_xP", "from_user_id": 72853703, "from_user_id_str": "72853703", "from_user_name": "Daniela ", "geo": null, "id": 148828143833202700, "id_str": "148828143833202688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1472604376/Twitter__800x600__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1472604376/Twitter__800x600__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rihanna: PORTUGAL tonight was LEGENDARY!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:48 +0000", "from_user": "AsLuanaticas_PT", "from_user_id": 246811989, "from_user_id_str": "246811989", "from_user_name": "As Luanaticas PT", "geo": null, "id": 148828139726970880, "id_str": "148828139726970880", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1589478022/366105796_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1589478022/366105796_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@Gusttavo_lima adoro sua m\\u00FAsica daqui uma f\\u00E3 de Portugal +.+", "to_user": "Gusttavo_lima", "to_user_id": 126676337, "to_user_id_str": "126676337", "to_user_name": "Gusttavo Lima", "in_reply_to_status_id": 148826046408572930, "in_reply_to_status_id_str": "148826046408572929"}, +{"created_at": "Mon, 19 Dec 2011 18:12:47 +0000", "from_user": "MARKETRISER", "from_user_id": 329695511, "from_user_id_str": "329695511", "from_user_name": "MARKETRISER.COM", "geo": null, "id": 148828136719646720, "id_str": "148828136719646720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1427519217/MR-Twitter-Logo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1427519217/MR-Twitter-Logo_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF releases 2.9 bn euros to Portugal: IMF said it would release 2.9 billion euros ($3.8 billion) to Portugal in the newest installme...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:46 +0000", "from_user": "mitesh_1011", "from_user_id": 103108748, "from_user_id_str": "103108748", "from_user_name": "mitesh panchal", "geo": null, "id": 148828131640344580, "id_str": "148828131640344579", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1174514726/lion_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1174514726/lion_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF releases 2.9 bn euros to Portugal: IMF said it would release 2.9 billion euros ($3.8 billion) to Portugal in... http://t.co/EnbksTzJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:46 +0000", "from_user": "India_IN", "from_user_id": 112685695, "from_user_id_str": "112685695", "from_user_name": "India Indian", "geo": null, "id": 148828130503700480, "id_str": "148828130503700480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/685022477/india_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/685022477/india_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF releases 2.9 bn euros to Portugal: IMF said it would release 2.9 billion euros ($3.8 billion) to Portugal in the newest installme...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:46 +0000", "from_user": "NbfcAsia", "from_user_id": 96502575, "from_user_id_str": "96502575", "from_user_name": "NBFC", "geo": null, "id": 148828130419810300, "id_str": "148828130419810304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/886709101/smallnbfcworld_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/886709101/smallnbfcworld_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF releases 2.9 bn euros to Portugal: IMF said it would release 2.9 billion euros ($3.8 billion) to Portuga... http://t.co/tmeysJk3 -ET", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:45 +0000", "from_user": "debtreport", "from_user_id": 139034973, "from_user_id_str": "139034973", "from_user_name": "Umesh Tulsyan", "geo": null, "id": 148828129639673860, "id_str": "148828129639673856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1198488389/IMG00059-20101218-2233_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1198488389/IMG00059-20101218-2233_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF releases 2.9 bn euros to Portugal: IMF said it would release 2.9 billion euros ($3.8 billion) to Portugal in... http://t.co/YDWgS7cN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:45 +0000", "from_user": "kvrao12", "from_user_id": 36934517, "from_user_id_str": "36934517", "from_user_name": "Visu", "geo": null, "id": 148828127706091520, "id_str": "148828127706091520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1586228386/aa_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586228386/aa_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF releases 2.9 bn euros to Portugal: IMF said it would release 2.9 billion euros ($3.8 billion) to Portugal in... http://t.co/gviYN717", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:44 +0000", "from_user": "masterstrokes", "from_user_id": 76242857, "from_user_id_str": "76242857", "from_user_name": "masterstrokes", "geo": null, "id": 148828125835444220, "id_str": "148828125835444224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/433052851/Ftalarms_logo_6_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/433052851/Ftalarms_logo_6_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "http://t.co/EMfkQfIm IMF releases 2.9 bn euros to Portugal: IMF said it would release 2.9 billion euros ($3.8 bil... http://t.co/ffPmkAg7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:43 +0000", "from_user": "ReeyazManji", "from_user_id": 59753763, "from_user_id_str": "59753763", "from_user_name": "Reeyaz Manji", "geo": null, "id": 148828118247940100, "id_str": "148828118247940096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1593061656/Riyaz_Paint_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593061656/Riyaz_Paint_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF releases 2.9 bn euros to Portugal: IMF said it would release 2.9 billion euros ($3.8 billion) to Portugal in... http://t.co/K43LFB94", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:38 +0000", "from_user": "India_Business", "from_user_id": 32455632, "from_user_id_str": "32455632", "from_user_name": "India Business News", "geo": null, "id": 148828097855229950, "id_str": "148828097855229952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/142727434/jaibiz_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/142727434/jaibiz_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#india #business : IMF releases 2.9 bn euros to Portugal: IMF said it would release 2.9 billion euros ($3.8 bill... http://t.co/YXJzs8Ge", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:37 +0000", "from_user": "ETNowTv", "from_user_id": 48278318, "from_user_id_str": "48278318", "from_user_name": "ET Now", "geo": null, "id": 148828095208636400, "id_str": "148828095208636416", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/268682112/et-now-logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/268682112/et-now-logo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF releases 2.9 bn euros to Portugal http://t.co/Tu6Bswgj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:37 +0000", "from_user": "AmaleshSingh", "from_user_id": 49939611, "from_user_id_str": "49939611", "from_user_name": "Amalesh Singh", "geo": null, "id": 148828094508175360, "id_str": "148828094508175360", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1214832201/Its_me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1214832201/Its_me_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF releases 2.9 bn euros to Portugal http://t.co/0MLYtO6H", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:31 +0000", "from_user": "reisenews_", "from_user_id": 321344677, "from_user_id_str": "321344677", "from_user_name": "reise news", "geo": null, "id": 148828069845676030, "id_str": "148828069845676033", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1406147666/1308650443_Internet_bags_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1406147666/1308650443_Internet_bags_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Kreuzfahrt MS Deutschland Kiel Portugal: Interessante kiel kreuzfahrt eBay Auktionen: Similar Posts: Neue Kiel K... http://t.co/7IjBsKAq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:23 +0000", "from_user": "509Triathlete", "from_user_id": 23342437, "from_user_id_str": "23342437", "from_user_name": "Bernard Vivy", "geo": null, "id": 148828035221696500, "id_str": "148828035221696512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1678205320/Getting_out_of_swim_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678205320/Getting_out_of_swim_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:13 +0000", "from_user": "TamiTomlinson", "from_user_id": 342445369, "from_user_id_str": "342445369", "from_user_name": "Tamara Veron 1D \\u262E ", "geo": null, "id": 148827993719054340, "id_str": "148827993719054336", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698697707/zaaaaynnn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698697707/zaaaaynnn_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SaraMartineeez Jajajajajaja :B MOR\\u00CD! Vos me tenias abondonada! LLendote a PORTUGAL XD", "to_user": "SaraMartineeez", "to_user_id": 343577758, "to_user_id_str": "343577758", "to_user_name": "S\\u0251r\\u0251 M\\u0251rtinez \\u2661", "in_reply_to_status_id": 148827626272849920, "in_reply_to_status_id_str": "148827626272849920"}, +{"created_at": "Mon, 19 Dec 2011 18:12:12 +0000", "from_user": "HipHopWeb", "from_user_id": 96447588, "from_user_id_str": "96447588", "from_user_name": "HipHopWeb", "geo": null, "id": 148827990065819650, "id_str": "148827990065819648", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1170752522/hiphopweb_logotipo-md_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1170752522/hiphopweb_logotipo-md_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Rihanna relata epis\\u00F3dio racista em Portugal http://t.co/gEJx14FY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:06 +0000", "from_user": "EZachery", "from_user_id": 291722844, "from_user_id_str": "291722844", "from_user_name": "Ed Zachery", "geo": null, "id": 148827965382336500, "id_str": "148827965382336512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1410185768/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1410185768/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:06 +0000", "from_user": "Le_cristiane_", "from_user_id": 386264140, "from_user_id_str": "386264140", "from_user_name": "Let\\u00EDcia Mendes", "geo": null, "id": 148827965151658000, "id_str": "148827965151657984", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695470308/PQAAANOYm1wwLscg3pJFwn0Z_FqWSWD5dgT-ZUR7cpCYy8pPBL_wNqL9oHC4vAjQWvBYNhA0gDlVhZPX8W-ylhXnMroAm1T1UGrq55CCGeC1jRxOs2FS70uJrHD4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695470308/PQAAANOYm1wwLscg3pJFwn0Z_FqWSWD5dgT-ZUR7cpCYy8pPBL_wNqL9oHC4vAjQWvBYNhA0gDlVhZPX8W-ylhXnMroAm1T1UGrq55CCGeC1jRxOs2FS70uJrHD4_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "qero mora em Portugal ;D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:05 +0000", "from_user": "TimDeWolfe", "from_user_id": 10755432, "from_user_id_str": "10755432", "from_user_name": "TimDeWolfe", "geo": null, "id": 148827962303713280, "id_str": "148827962303713281", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1103153003/P1010059_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1103153003/P1010059_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @richardbranson It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough virg.co/b4Roy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:58 +0000", "from_user": "CodyForeverCSF", "from_user_id": 394161388, "from_user_id_str": "394161388", "from_user_name": "CodySimpsonCSF", "geo": null, "id": 148827933061034000, "id_str": "148827933061033984", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699060543/AfJMzaGCEAIyZOR_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699060543/AfJMzaGCEAIyZOR_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @IceCreamCody: #Libra - Em que pa\\u00EDs o Cody te conheceria: Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:56 +0000", "from_user": "kicatmeneses", "from_user_id": 65019737, "from_user_id_str": "65019737", "from_user_name": "Francisca", "geo": null, "id": 148827922189402100, "id_str": "148827922189402112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670060085/kicona_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670060085/kicona_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@rihanna I guess I'm talking by all the people from Portugal. xx sweetie", "to_user": "rihanna", "to_user_id": 79293791, "to_user_id_str": "79293791", "to_user_name": "Rihanna"}, +{"created_at": "Mon, 19 Dec 2011 18:11:54 +0000", "from_user": "AsLuanaticas_PT", "from_user_id": 246811989, "from_user_id_str": "246811989", "from_user_name": "As Luanaticas PT", "geo": null, "id": 148827915260399600, "id_str": "148827915260399616", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1589478022/366105796_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1589478022/366105796_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@fazendaLS v\\u00EAm amor , \\u00E9 que parte de Portugal mora seu tio ?", "to_user": "fazendaLS", "to_user_id": 234832342, "to_user_id_str": "234832342", "to_user_name": "Fazenda (OFICIAL)", "in_reply_to_status_id": 148827709215219700, "in_reply_to_status_id_str": "148827709215219712"}, +{"created_at": "Mon, 19 Dec 2011 18:11:53 +0000", "from_user": "CinthyaOlguin", "from_user_id": 42151356, "from_user_id_str": "42151356", "from_user_name": "Cinthya Olgu\\u00EDn", "geo": null, "id": 148827908700504060, "id_str": "148827908700504065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670724245/Dibujo2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670724245/Dibujo2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#T\\u00EDtulosOriginalesdeCanciones: \"How the leopard got its spots\" de Portugal The man", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:51 +0000", "from_user": "MartaRebocho", "from_user_id": 441032217, "from_user_id_str": "441032217", "from_user_name": "Marta Rebocho", "geo": null, "id": 148827899850530800, "id_str": "148827899850530816", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702504675/tumblr_lm58iekFhp1qgny6so1_500_large_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702504675/tumblr_lm58iekFhp1qgny6so1_500_large_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Vamos votar para ajudar a trazer os One Direction a Portugal! http://t.co/LspDu0Ap | http://t.co/R04lAnv1 | http://t.co/D9a9N2YS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:50 +0000", "from_user": "silverarrowjee", "from_user_id": 182947816, "from_user_id_str": "182947816", "from_user_name": "MUHAMMAD FAREED BUTT", "geo": null, "id": 148827896696418300, "id_str": "148827896696418304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1212962964/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1212962964/image_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">iOS</a>", "text": "Raging Rihanna's foulmouthed Twitter tirade after she's victim of racist abuse in Portugal http://t.co/puiCP5NX #MailOnline", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:44 +0000", "from_user": "kicatmeneses", "from_user_id": 65019737, "from_user_id_str": "65019737", "from_user_name": "Francisca", "geo": null, "id": 148827870670753800, "id_str": "148827870670753793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670060085/kicona_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670060085/kicona_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@rihanna i'm very sad of what happened to you in Lisbon. It was disgusting! i'm from portugal but not from Lisbon.", "to_user": "rihanna", "to_user_id": 79293791, "to_user_id_str": "79293791", "to_user_name": "Rihanna"}, +{"created_at": "Mon, 19 Dec 2011 18:11:43 +0000", "from_user": "ZippyPivot", "from_user_id": 218966142, "from_user_id_str": "218966142", "from_user_name": "Peter Brewda", "geo": null, "id": 148827866849738750, "id_str": "148827866849738752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1208709565/write-interesting-characters-200X200_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1208709565/write-interesting-characters-200X200_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:42 +0000", "from_user": "TokioHotelPy", "from_user_id": 172850414, "from_user_id_str": "172850414", "from_user_name": "Tokio Hotel Paraguay", "geo": null, "id": 148827862357647360, "id_str": "148827862357647360", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685557999/Twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685557999/Twitter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "100% Jovem n\\u00BA18/2011 (Portugal) http://t.co/XxABacz5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:35 +0000", "from_user": "rih_navy_always", "from_user_id": 380436804, "from_user_id_str": "380436804", "from_user_name": "marianavy_for_life", "geo": null, "id": 148827833542774800, "id_str": "148827833542774784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664571881/fashion-girl-kiss-pink-rihanna-Favim.com-57109_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664571881/fashion-girl-kiss-pink-rihanna-Favim.com-57109_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @RihannaSuperFly: @rihanna I do not want you to stay to think that everyone here in Portugal is racist! I'm not racist I have black people in my family!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:35 +0000", "from_user": "pedro__ts", "from_user_id": 48069341, "from_user_id_str": "48069341", "from_user_name": "Pedro", "geo": null, "id": 148827833416957950, "id_str": "148827833416957953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1684146999/Picture_108_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684146999/Picture_108_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Catarina_Per: @rihanna WAS AMAZIIIIIIIIIIINNNNNNNGGGGGGGG!!!! PORTUGAL LOVES YOU! You're a great performer! You're so sweet with your fans *", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:33 +0000", "from_user": "Abelheira", "from_user_id": 53167460, "from_user_id_str": "53167460", "from_user_name": "Carlos Abelheira", "geo": null, "id": 148827825049309200, "id_str": "148827825049309186", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1654095400/us2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654095400/us2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI vai entregar a Portugal 2,9 bilh\\u00F5es de euros, parcela do ... - Portugal Digital http://t.co/rGyvAqVN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:32 +0000", "from_user": "JVLazaro07", "from_user_id": 287794492, "from_user_id_str": "287794492", "from_user_name": "J.V.Lazaro", "geo": null, "id": 148827820133589000, "id_str": "148827820133588992", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694870003/1323716874429_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694870003/1323716874429_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "queria mudar de pa\\u00EDs, sei l\\u00E1 ir para portugal, USA, inglaterra, algum lugar d onde eu possa ter uma vida + pr\\u00F3pera", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:06 +0000", "from_user": "IceCreamCody", "from_user_id": 257917645, "from_user_id_str": "257917645", "from_user_name": "Tia do sorvete ;*", "geo": null, "id": 148827714189668350, "id_str": "148827714189668353", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695297565/117_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695297565/117_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Libra - Em que pa\\u00EDs o Cody te conheceria: Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:04 +0000", "from_user": "RedEconomica", "from_user_id": 320309673, "from_user_id_str": "320309673", "from_user_name": "La Red Econ\\u00F3mica", "geo": null, "id": 148827704794419200, "id_str": "148827704794419201", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1403366820/19-06-2011_03-10-16_p-m-_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1403366820/19-06-2011_03-10-16_p-m-_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "El FMI aprueba un tramo de cr\\u00E9dito de 2.900 millones a Portugal http://t.co/YKTZi6Og [Yahoo] #Economia", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:04 +0000", "from_user": "CarinaMendes15", "from_user_id": 351893480, "from_user_id_str": "351893480", "from_user_name": "Carina Mendes", "geo": null, "id": 148827702768570370, "id_str": "148827702768570368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685958161/foto0445_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685958161/foto0445_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rihanna: PORTUGAL tonight was LEGENDARY!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:02 +0000", "from_user": "CaptainZaysh", "from_user_id": 75450061, "from_user_id_str": "75450061", "from_user_name": "Josh Follmann", "geo": null, "id": 148827697408245760, "id_str": "148827697408245763", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1316797833/Tux_Icon_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1316797833/Tux_Icon_bigger_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Great blog from @richardbranson about ending the war on drugs: http://t.co/n4mu4ePR Portugal already has, and it's working.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:56 +0000", "from_user": "NevenaMaric", "from_user_id": 44725653, "from_user_id_str": "44725653", "from_user_name": "Nevena Maric", "geo": null, "id": 148827668966674430, "id_str": "148827668966674432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698766560/IMG00534-20110804-1940-4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698766560/IMG00534-20110804-1940-4_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@samanthaakxo haha #love! Ohwell, now that I can't cheer for Serbia next year, let's go Portugal? Hellllo @Cristiano;) haha<3", "to_user": "samanthaakxo", "to_user_id": 70982959, "to_user_id_str": "70982959", "to_user_name": "Samantha.", "in_reply_to_status_id": 148814251669196800, "in_reply_to_status_id_str": "148814251669196800"}, +{"created_at": "Mon, 19 Dec 2011 18:10:50 +0000", "from_user": "johnycassidy", "from_user_id": 303195615, "from_user_id_str": "303195615", "from_user_name": "Johny", "geo": null, "id": 148827644790710270, "id_str": "148827644790710273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1611465925/rainbow_juice_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611465925/rainbow_juice_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @EfiEfthimiou: #Greece #Portugal #ireland will be excluded from bilateral loans to IMF (Greek FinMinistry)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:48 +0000", "from_user": "portal_cianorte", "from_user_id": 264374341, "from_user_id_str": "264374341", "from_user_name": "Portal de Cianorte", "geo": null, "id": 148827636334985200, "id_str": "148827636334985216", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1270191098/Coming_Soon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1270191098/Coming_Soon_normal.jpg", "source": "<a href="http://www.1st-movers.com/" rel="nofollow">AutoTweet Connector</a>", "text": "Mundo/Economia: FMI libera 2,9 bilh\\u00F5es de euros para Portugal http://t.co/4QPbGNJG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:46 +0000", "from_user": "toliskrallis", "from_user_id": 329542137, "from_user_id_str": "329542137", "from_user_name": "Tolis Krallis", "geo": null, "id": 148827631096299520, "id_str": "148827631096299521", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1556085943/logo2_normal.GIF", "profile_image_url_https": "https://si0.twimg.com/profile_images/1556085943/logo2_normal.GIF", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\"@EfiEfthimiou: #Greece #Portugal #ireland will be excluded from bilateral loans to IMF (Greek FinMinistry)\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:43 +0000", "from_user": "miroslavpitak", "from_user_id": 332682421, "from_user_id_str": "332682421", "from_user_name": "Miroslav Pit\\u00E1k", "geo": null, "id": 148827614457495550, "id_str": "148827614457495553", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1435422275/sm__ek1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1435422275/sm__ek1_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "MMF schv\\u00E1lil vyplacen\\u00ED 2,9 miliardy eur pro Portugalsko http://t.co/aPaJyDNF #PIIGS #Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:37 +0000", "from_user": "medailletwits", "from_user_id": 241941913, "from_user_id_str": "241941913", "from_user_name": "TwitNieuws", "geo": null, "id": 148827592617758720, "id_str": "148827592617758720", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1223608318/medaille_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1223608318/medaille_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "http://t.co/EBFFauUv Meisjes junioren winnen brons in Portugal: Meisjes junioren Kim Vermaas, Alice Ba... http://t.co/zvW3Dp98 #medaille", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:32 +0000", "from_user": "Fas_TaniaRO", "from_user_id": 364407769, "from_user_id_str": "364407769", "from_user_name": "T\\u00E2nia Rib.Oliv. F\\u00E3s", "geo": null, "id": 148827569603620860, "id_str": "148827569603620864", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1683594878/Tania_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683594878/Tania_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Publiquei 3 fotos no Facebook no \\u00E1lbum \"T\\u00E2nia - Portugal no Cora\\u00E7\\u00E3o 2011/2012\" http://t.co/gmt28GSl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:20 +0000", "from_user": "ontherxs", "from_user_id": 34123390, "from_user_id_str": "34123390", "from_user_name": ":They call me Tim", "geo": null, "id": 148827519808831500, "id_str": "148827519808831489", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/392808557/IMG_0380_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/392808557/IMG_0380_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:16 +0000", "from_user": "YouAndMe_Bieber", "from_user_id": 235235830, "from_user_id_str": "235235830", "from_user_name": "I'm unbroken :)", "geo": null, "id": 148827502213742600, "id_str": "148827502213742593", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689507026/468418609_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689507026/468418609_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Eu acho qe esqe\\u00E7i de dizer,mas agora eu tou vivendo em Portugal...Isto aqui \\u00E9 bonito tb,mas eu tenho saudades do Brasil...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:15 +0000", "from_user": "CarmelaStarr", "from_user_id": 98567329, "from_user_id_str": "98567329", "from_user_name": "Carmela Starr", "geo": null, "id": 148827499390967800, "id_str": "148827499390967808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1350617383/IMG_8010-1_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1350617383/IMG_8010-1_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @Bossip: Watch Rihanna Run Off Stage Throwing Up During \\u201CWhat\\u2019s My Name\\u201D Performance In Portugal [Video] http://t.co/Njl97y1q", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:10 +0000", "from_user": "MySecretLions", "from_user_id": 127151267, "from_user_id_str": "127151267", "from_user_name": "Chalka Luther King", "geo": null, "id": 148827480013283330, "id_str": "148827480013283329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680440974/ByS26g76_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680440974/ByS26g76_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:04 +0000", "from_user": "pampanight", "from_user_id": 79271571, "from_user_id_str": "79271571", "from_user_name": "Pampa Night", "geo": null, "id": 148827454335762430, "id_str": "148827454335762432", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1294979671/perfil-p1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1294979671/perfil-p1_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Rihanna saiu correndo do palco durante o show para vomitar. Parece que a cantora precisa de repouso, n\\u00E9? http://t.co/IOk0bLFk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:02 +0000", "from_user": "HipHopWeb", "from_user_id": 96447588, "from_user_id_str": "96447588", "from_user_name": "HipHopWeb", "geo": null, "id": 148827442918850560, "id_str": "148827442918850560", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1170752522/hiphopweb_logotipo-md_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1170752522/hiphopweb_logotipo-md_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Rihanna relata epis\\u00F3dio racista em Portugal http://t.co/b3aq4lRB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:00 +0000", "from_user": "yayas_mama", "from_user_id": 143172678, "from_user_id_str": "143172678", "from_user_name": "Sabrina Barrera", "geo": null, "id": 148827434572193800, "id_str": "148827434572193795", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1333240613/R2J30P8J_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1333240613/R2J30P8J_normal", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Rihanna gets sick during Portugal show http://t.co/pzKzlBbx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:54 +0000", "from_user": "kuskuslisaax", "from_user_id": 302161742, "from_user_id_str": "302161742", "from_user_name": "kuskuslisaax", "geo": null, "id": 148827409414758400, "id_str": "148827409414758400", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694187289/Rijswijk-20111202-00748_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694187289/Rijswijk-20111202-00748_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "Ik miss portugal http://t.co/uhr7BmSc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:48 +0000", "from_user": "EfiEfthimiou", "from_user_id": 281093434, "from_user_id_str": "281093434", "from_user_name": "Efthimia Efthimiou", "geo": null, "id": 148827384970358800, "id_str": "148827384970358784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1309194348/me_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1309194348/me_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#Greece #Portugal #ireland will be excluded from bilateral loans to IMF (Greek FinMinistry)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:46 +0000", "from_user": "LenaLafayette", "from_user_id": 291710421, "from_user_id_str": "291710421", "from_user_name": "Lena Lafayette", "geo": null, "id": 148827375986151420, "id_str": "148827375986151424", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1661283339/principito-navidad_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661283339/principito-navidad_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/vGAyiIOq Foreign Office preparan ayudas para brit\\u00E1nicos que vivan en ESpa\\u00F1a y en Portugal,en el caso en el que hay CORRALITO.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:44 +0000", "from_user": "OnlinRacingTeam", "from_user_id": 336043110, "from_user_id_str": "336043110", "from_user_name": "Online Racing Team", "geo": null, "id": 148827366876119040, "id_str": "148827366876119041", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546600458/296165_268525186505674_163052063719654_947056_1527167315_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546600458/296165_268525186505674_163052063719654_947056_1527167315_n_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "http://t.co/wtDD35nV http://t.co/ZHBDHR4F", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:25 +0000", "from_user": "Firmatorget", "from_user_id": 117358428, "from_user_id_str": "117358428", "from_user_name": "Merkato Media AS", "geo": null, "id": 148827290019708930, "id_str": "148827290019708928", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627048569/FirmatorgetNewlogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627048569/FirmatorgetNewlogo_normal.jpg", "source": "<a href="http://friendfeed.com" rel="nofollow">FriendFeed</a>", "text": "Utbetaler milliardl\\u00E5n til Portugal http://t.co/sr5X4zIE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:23 +0000", "from_user": "Firmatorget", "from_user_id": 117358428, "from_user_id_str": "117358428", "from_user_name": "Merkato Media AS", "geo": null, "id": 148827282436390900, "id_str": "148827282436390912", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627048569/FirmatorgetNewlogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627048569/FirmatorgetNewlogo_normal.jpg", "source": "<a href="http://friendfeed.com" rel="nofollow">FriendFeed</a>", "text": "IMF utbetaler milliardl\\u00E5n til Portugal http://t.co/I4fFqJNb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:17 +0000", "from_user": "stwbrr_ck", "from_user_id": 201256120, "from_user_id_str": "201256120", "from_user_name": "chantily~ ", "geo": null, "id": 148827256867926000, "id_str": "148827256867926017", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1647425298/tumblr_lth1iwRl4E1r35siso1_500_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647425298/tumblr_lth1iwRl4E1r35siso1_500_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "quero ir pra portugal...la tem minha namorada e ta frio..hunf..;-;", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:17 +0000", "from_user": "Tauh_Azambuja", "from_user_id": 319133746, "from_user_id_str": "319133746", "from_user_name": "Tauh Azambuja", "geo": null, "id": 148827254431027200, "id_str": "148827254431027200", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1654738643/IMG285-01_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654738643/IMG285-01_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "eu so a melgor da melhor du mundo em falar portugues de portugal '-'", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:09:15 +0000", "from_user": "WallFigueiredo", "from_user_id": 86310384, "from_user_id_str": "86310384", "from_user_name": "Dr Wall", "geo": null, "id": 148827246122106880, "id_str": "148827246122106880", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1300904471/Foto_Valmique2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1300904471/Foto_Valmique2_normal.jpg", "source": "<a href="http://www.infomoney.com.br" rel="nofollow">Portal_InfoMoney</a>", "text": "RT @portalinfomoney: #infomoney FMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal... http://t.co/SHzFcLB8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:14 +0000", "from_user": "supernebulosa", "from_user_id": 360129260, "from_user_id_str": "360129260", "from_user_name": "Supernebulosa", "geo": null, "id": 148827245094510600, "id_str": "148827245094510592", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1510275978/nebulosa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1510275978/nebulosa_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Supernebulosa: Escucha un cover de Portugal. The Man a Gnarls Barkley http://t.co/FYvxaTqB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:10 +0000", "from_user": "Guusty_", "from_user_id": 235300046, "from_user_id_str": "235300046", "from_user_name": "Gustavo Medeiros", "geo": null, "id": 148827226769588220, "id_str": "148827226769588225", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687679632/SAM_1645_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687679632/SAM_1645_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Dad was back yesterday from Portugal brought loads of presents. :')", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:10 +0000", "from_user": "A6invest", "from_user_id": 90656536, "from_user_id_str": "90656536", "from_user_name": "A6 Invest", "geo": null, "id": 148827225670684670, "id_str": "148827225670684673", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1220828530/logotwtter_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1220828530/logotwtter_normal.JPG", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "http://t.co/QA00FWSf http://t.co/IpBhobzw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:09 +0000", "from_user": "vihumo76", "from_user_id": 96612856, "from_user_id_str": "96612856", "from_user_name": "VM", "geo": null, "id": 148827221828706300, "id_str": "148827221828706304", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1341937982/logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1341937982/logo_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@Embajad_Aztecas como le ha ido al mexicano del braga de portugal?", "to_user": "Embajad_Aztecas", "to_user_id": 298922458, "to_user_id_str": "298922458", "to_user_name": "Embajadores aztecas", "in_reply_to_status_id": 148826163006021630, "in_reply_to_status_id_str": "148826163006021632"}, +{"created_at": "Mon, 19 Dec 2011 18:09:04 +0000", "from_user": "SportingbetMark", "from_user_id": 204852668, "from_user_id_str": "204852668", "from_user_name": "Mark O'Haire", "geo": null, "id": 148827200899137540, "id_str": "148827200899137536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1347173706/66b1cb77-40a9-4b85-852e-ec9302381e7b_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1347173706/66b1cb77-40a9-4b85-852e-ec9302381e7b_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Olhanese may be winless in 4 & struggling for goals in Portugal but I reckon they've just the style to frustrate Braga, tonight.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:02 +0000", "from_user": "HomeInsurance_", "from_user_id": 341208226, "from_user_id_str": "341208226", "from_user_name": "Home Insurance", "geo": null, "id": 148827191747153920, "id_str": "148827191747153920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.theleader.info/homeinsurance" rel="nofollow">Home Insurance</a>", "text": "HOME INSURANCE FOR YOUR PROPERTY IN SPAIN, GIBRALTAR, GREECE AND PORTUGAL - http://t.co/g3StN3Ad", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:08:57 +0000", "from_user": "StephaniexNJ", "from_user_id": 133838881, "from_user_id_str": "133838881", "from_user_name": " \\u30C4 St\\u00E9phaniexNJ ", "geo": null, "id": 148827170473652220, "id_str": "148827170473652224", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697044696/377979_336581886368782_223852614308377_1331486_185141264_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697044696/377979_336581886368782_223852614308377_1331486_185141264_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@NeverSaayNeverr Oui une semaine au Portugal (:<3", "to_user": "NeverSaayNeverr", "to_user_id": 193298289, "to_user_id_str": "193298289", "to_user_name": "Lisa \\u273F ", "in_reply_to_status_id": 148826586270007300, "in_reply_to_status_id_str": "148826586270007297"}, +{"created_at": "Mon, 19 Dec 2011 18:08:55 +0000", "from_user": "prince1287", "from_user_id": 54001470, "from_user_id_str": "54001470", "from_user_name": "john g", "geo": null, "id": 148827164635168770, "id_str": "148827164635168768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1559433812/AaJBWUkCQAAkFix_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1559433812/AaJBWUkCQAAkFix_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:08:52 +0000", "from_user": "dianaaribeiro14", "from_user_id": 343565743, "from_user_id_str": "343565743", "from_user_name": "Dianaaa \\u2665", "geo": null, "id": 148827151330844670, "id_str": "148827151330844674", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695267482/h__normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695267482/h__normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rihanna: PORTUGAL tonight was LEGENDARY!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:08:34 +0000", "from_user": "marinices", "from_user_id": 116535915, "from_user_id_str": "116535915", "from_user_name": "Marina", "geo": null, "id": 148827075011293200, "id_str": "148827075011293185", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1528280735/Foto119_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1528280735/Foto119_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"Custar uma pipa de massa\". Portugal e suas express\\u00F5es que eu nem sei por onde come\\u00E7o tentar entender.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:08:20 +0000", "from_user": "zeekpaulo", "from_user_id": 398477747, "from_user_id_str": "398477747", "from_user_name": "zeekpaulo", "geo": null, "id": 148827018597892100, "id_str": "148827018597892097", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1626118897/tw_13147574_1320616661_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626118897/tw_13147574_1320616661_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Perfil p\\u00FAblico de Paulo - beruby Portugal http://t.co/pY8vQ00D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:08:11 +0000", "from_user": "mandrileo", "from_user_id": 58940174, "from_user_id_str": "58940174", "from_user_name": "Leonardo Mart\\u00EDnez", "geo": null, "id": 148826979037233150, "id_str": "148826979037233153", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1426968457/IMG_1846_square_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1426968457/IMG_1846_square_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:08:04 +0000", "from_user": "DarkKhan1", "from_user_id": 441058757, "from_user_id_str": "441058757", "from_user_name": "Dark Khan", "geo": null, "id": 148826948603351040, "id_str": "148826948603351040", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Cool site to find Hotels: Hoteis na net Portugal: http://t.co/qP92iwUc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:07:45 +0000", "from_user": "markjmacdonald", "from_user_id": 52146979, "from_user_id_str": "52146979", "from_user_name": "Mark MacDonald", "geo": null, "id": 148826870715129860, "id_str": "148826870715129857", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1664346904/john_wayne_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664346904/john_wayne_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@craigpringle91 look at Greece, Portugal, Italy. if the economy was better, and we had 30 years worth of oil thats now gone i would agree.", "to_user": "craigpringle91", "to_user_id": 139535363, "to_user_id_str": "139535363", "to_user_name": "craigpringle", "in_reply_to_status_id": 148826136565125120, "in_reply_to_status_id_str": "148826136565125120"}, +{"created_at": "Mon, 19 Dec 2011 18:07:38 +0000", "from_user": "Brunabs7", "from_user_id": 58945388, "from_user_id_str": "58945388", "from_user_name": "Fuck Bruna ", "geo": null, "id": 148826841245949950, "id_str": "148826841245949952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692884037/028_-_C_pia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692884037/028_-_C_pia_normal.jpg", "source": "<a href="http://www.twocation.com/" rel="nofollow">Twocation</a>", "text": "My followers live in Brazil (71.3%), the U.S. (11.8%), Portugal (4.2%) & more. Create your map at http://t.co/o8765Iry", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:07:35 +0000", "from_user": "_unanochemas", "from_user_id": 209243443, "from_user_id_str": "209243443", "from_user_name": "Monroy ", "geo": null, "id": 148826826934976500, "id_str": "148826826934976512", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1619791533/IMG00198-20101231-2051_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619791533/IMG00198-20101231-2051_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @lasillarota: #FMI participa en los planes de #rescate de Grecia, Irlanda y Portugal http://t.co/H09i8bOn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:07:27 +0000", "from_user": "Deavy", "from_user_id": 14784842, "from_user_id_str": "14784842", "from_user_name": "Deavy", "geo": null, "id": 148826796060712960, "id_str": "148826796060712961", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1605617657/inflames_xl_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1605617657/inflames_xl_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "Un-fucking-believable RT @Hashim0307 When North Korea lost 7-0 to Portugal in WC2010, media in North Korea reported the match ended 0-0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:07:23 +0000", "from_user": "iPhoneFileInfo", "from_user_id": 393297576, "from_user_id_str": "393297576", "from_user_name": "iPhone File Girls", "geo": null, "id": 148826778910208000, "id_str": "148826778910208000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1594264529/sexy-girls-with-iphone_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1594264529/sexy-girls-with-iphone_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "iPhone Upload : Need TMN Portugal factory unlock iPHone 4 http://t.co/iQUJAlKr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:07:02 +0000", "from_user": "MOTopStories", "from_user_id": 64986883, "from_user_id_str": "64986883", "from_user_name": "Top news headlines", "geo": null, "id": 148826691450576900, "id_str": "148826691450576896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/358630859/600px-Globe.svg_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/358630859/600px-Globe.svg_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Latest news: EU watchdog raids Brussels Airlines and TAP Portugal (Reuters UK) http://t.co/hPdYszAn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:59 +0000", "from_user": "yogal", "from_user_id": 26895362, "from_user_id_str": "26895362", "from_user_name": "Ana Frias Gomes", "geo": null, "id": 148826678083330050, "id_str": "148826678083330048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1675222204/Ana_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675222204/Ana_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Good to see examples of efficiency coming from Portugal: http://t.co/IvhCVMz6 via @virgin", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:34 +0000", "from_user": "GuiTintel", "from_user_id": 47846061, "from_user_id_str": "47846061", "from_user_name": "Guilherme Tintel", "geo": null, "id": 148826573682917380, "id_str": "148826573682917382", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1181486234/Z5oc04w_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1181486234/Z5oc04w_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#DescansaRihanna: durante show em Portugal, cantora deixa palco para vomitar: N\\u00E3o tem jeito, Rihanna t\\u00E1 l... http://t.co/WIsnWCgS #ITPOP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:32 +0000", "from_user": "PORTALITPOP", "from_user_id": 112816891, "from_user_id_str": "112816891", "from_user_name": "PORTAL IT POP!", "geo": null, "id": 148826565113954300, "id_str": "148826565113954304", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687254265/portalitpopdotcom_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687254265/portalitpopdotcom_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#DescansaRihanna: durante show em Portugal, cantora deixa palco para vomitar: N\\u00E3o tem jeito, Rihanna t\\u00E1 l... http://t.co/GzsfV5II #ITPOP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:24 +0000", "from_user": "ChampagnePapi", "from_user_id": 205787060, "from_user_id_str": "205787060", "from_user_name": "Mr S", "geo": null, "id": 148826529147789300, "id_str": "148826529147789313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692960572/IMG-20111212-WA000_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692960572/IMG-20111212-WA000_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "http://t.co/ArZfdsVD great blog by @richardbranson about drugs and how its been dealt with socially in my homeland #portugal. worth a read", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:22 +0000", "from_user": "vitriolica", "from_user_id": 77826352, "from_user_id_str": "77826352", "from_user_name": "Vitri\\u00F3lica CORRosiva", "geo": null, "id": 148826521526730750, "id_str": "148826521526730752", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1380712813/twitt-coco3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1380712813/twitt-coco3_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @pfigas: RT @JoaoPedroL: esta coisa do Passos mandar o pessoal emigrar quase me d\\u00E1 vontade de voltar para Portugal s\\u00F3 p contrariar.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:20 +0000", "from_user": "clecil", "from_user_id": 272687184, "from_user_id_str": "272687184", "from_user_name": "Clecil Martins", "geo": null, "id": 148826512982937600, "id_str": "148826512982937601", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://messaging.nokia.com/site/main.do" rel="nofollow"> Ovi by Nokia </a>", "text": "Impressionante como at\\u00E9 hj o fortalezense n\\u00E3o sabe usar um girador (Pra\\u00E7a Portugal)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:15 +0000", "from_user": "ririFD", "from_user_id": 270778605, "from_user_id_str": "270778605", "from_user_name": "tompi paskah", "geo": null, "id": 148826492514734080, "id_str": "148826492514734080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696104271/217737_1652362758988_1534607019_31309829_673_e1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696104271/217737_1652362758988_1534607019_31309829_673_e1_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @dj_smirnoff_ice: Rihanna Goes on Twitter Rant After Racial Abuse in Portugal (Blog) (@Rihanna) http://t.co/RtB6INFa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:07 +0000", "from_user": "Bill_Picasso", "from_user_id": 167509818, "from_user_id_str": "167509818", "from_user_name": "\\u00DFilly Ogbara", "geo": null, "id": 148826458633146370, "id_str": "148826458633146368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1690190048/180060_1889366759620_1405014694_32217379_5323626_a_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690190048/180060_1889366759620_1405014694_32217379_5323626_a_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Hashim0307: I remember when North Korea lost 7-0 to Portugal in WC2010, media in North Korea reported the match ended 0-0. Hilarious.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:04 +0000", "from_user": "RapidPortugal", "from_user_id": 255240646, "from_user_id_str": "255240646", "from_user_name": "Rui Cavaleiro ", "geo": null, "id": 148826445391736830, "id_str": "148826445391736833", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1499763677/Rui_1_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1499763677/Rui_1_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT@pac2013 PAC INTERV: A PAC p\\u00F3s 2013: Que Agricultura para Portugal no S\\u00E9c. XXI? Desafios e Oportunidades | Prof. F. Cordovil, GPP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:02 +0000", "from_user": "StockportRed", "from_user_id": 150185780, "from_user_id_str": "150185780", "from_user_name": "BananaMan", "geo": null, "id": 148826435778396160, "id_str": "148826435778396160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1530361747/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1530361747/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@James_Heneghan_ If you're counting all games, then yes. But Nani will have probably played more games in Portugal by the time he signs.", "to_user": "James_Heneghan_", "to_user_id": 54008043, "to_user_id_str": "54008043", "to_user_name": "James", "in_reply_to_status_id": 148825604165337100, "in_reply_to_status_id_str": "148825604165337090"}, +{"created_at": "Mon, 19 Dec 2011 18:05:54 +0000", "from_user": "RihannaSuperFly", "from_user_id": 372524638, "from_user_id_str": "372524638", "from_user_name": "LBCRihannaFenty", "geo": null, "id": 148826404421775360, "id_str": "148826404421775361", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1632793672/IP3DU4r2_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632793672/IP3DU4r2_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "@rihanna I do not want you to stay to think that everyone here in Portugal is racist! I'm not racist I have black people in my family!", "to_user": "rihanna", "to_user_id": 79293791, "to_user_id_str": "79293791", "to_user_name": "Rihanna"}, +{"created_at": "Mon, 19 Dec 2011 18:05:49 +0000", "from_user": "Mc_Amor", "from_user_id": 98333673, "from_user_id_str": "98333673", "from_user_name": "Hamba Ini Syarif", "geo": null, "id": 148826381797695500, "id_str": "148826381797695488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699829211/Mauro_German_Camoranesi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699829211/Mauro_German_Camoranesi_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Hashim0307: I remember when North Korea lost 7-0 to Portugal in WC2010, media in North Korea reported the match ended 0-0. Hilarious.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:05:45 +0000", "from_user": "joaosergio", "from_user_id": 15519284, "from_user_id_str": "15519284", "from_user_name": "Jo\\u00E3o S\\u00E9rgio", "geo": null, "id": 148826368375922700, "id_str": "148826368375922689", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1615565241/1128af95-ad03-4d9f-8551-68d702849576_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615565241/1128af95-ad03-4d9f-8551-68d702849576_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Enquanto isso em Portugal o governo diz a seus cidad\\u00E3os :quer oportunidades, VAZA DAQUI http:// j.mp/tWzegd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:05:40 +0000", "from_user": "jensanmx", "from_user_id": 123932503, "from_user_id_str": "123932503", "from_user_name": "Jennifer S\\u00E1nchez \\u029A\\u03CA\\u025E", "geo": null, "id": 148826343780519940, "id_str": "148826343780519936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1651617111/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651617111/image_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Escucha un cover de Portugal. The Man a Gnarls Barkley http://t.co/9vYczqL5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:05:27 +0000", "from_user": "GretelEugenio", "from_user_id": 340815794, "from_user_id_str": "340815794", "from_user_name": "Gretel Eugenio", "geo": null, "id": 148826290978430980, "id_str": "148826290978430976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1673514705/gretelcomic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673514705/gretelcomic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:05:20 +0000", "from_user": "Seville_Writer", "from_user_id": 14984177, "from_user_id_str": "14984177", "from_user_name": "Fiona Flores Watson", "geo": null, "id": 148826262419415040, "id_str": "148826262419415040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1343118605/feria_fiona_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1343118605/feria_fiona_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Stories in papers yesterday re mass evacuation plans for British expats in Spain and Portugal, in event of euro collapse. April Fool in Dec?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:05:09 +0000", "from_user": "manudiasoficial", "from_user_id": 128695882, "from_user_id_str": "128695882", "from_user_name": "Manu Dias!", "geo": null, "id": 148826217062203400, "id_str": "148826217062203392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1647014269/450570268_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647014269/450570268_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @itsmeleighton: Turkey Japan Poland Indonesia Germany Brazil Spain Philippines France England US Venezuela China Italy Portugal Russia Australia so much \\uE022\\uE022", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:05:03 +0000", "from_user": "economia_feed_1", "from_user_id": 284997069, "from_user_id_str": "284997069", "from_user_name": "economia_feed_1", "geo": null, "id": 148826188759052300, "id_str": "148826188759052288", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.google.es" rel="nofollow">Economia_feed</a>", "text": "El #FMI aprueba un tramo de cr\\u00E9dito de 2.900 millones a #Portugal http://t.co/e4V0hEgX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:04:58 +0000", "from_user": "Vadaorf", "from_user_id": 440214065, "from_user_id_str": "440214065", "from_user_name": "Vada Schrunk", "geo": null, "id": 148826171415609340, "id_str": "148826171415609345", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700579790/large_DSC_0732_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700579790/large_DSC_0732_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Welfare State Reform in Southern Europe: Fighting Poverty and Social Exclusion in Italy, Spain, Portugal and Gre... http://t.co/eQPP5rXF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:04:34 +0000", "from_user": "AlvaroAlosAmpud", "from_user_id": 313858991, "from_user_id_str": "313858991", "from_user_name": "Alvaro Alos Ampudia", "geo": null, "id": 148826069561131000, "id_str": "148826069561131008", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1393264382/A.Alos_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1393264382/A.Alos_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Seguimos en la Eurocopa del pro, Espa\\u00F1a-Portugal en cuartos , no est mal jaja...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:04:31 +0000", "from_user": "Yara2222", "from_user_id": 59871066, "from_user_id_str": "59871066", "from_user_name": "Yara", "geo": +{"coordinates": [38.7112,-9.1525], "type": "Point"}, "id": 148826056575549440, "id_str": "148826056575549440", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1667800878/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667800878/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@thiprincipe: Kkkkk nao sei, mas falta pouco! RT @ellenchaffin: @thiprincipe onde a gente clica pra 2012 chegar logo ?\\u201De em portugal?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:04:28 +0000", "from_user": "Lulu_Mak", "from_user_id": 31486796, "from_user_id_str": "31486796", "from_user_name": "Lulu M.a.k", "geo": null, "id": 148826045531951100, "id_str": "148826045531951104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701802027/Queens_Park_Rangers_v_Manchester_United_Premier_EvFwGJmMET1l_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701802027/Queens_Park_Rangers_v_Manchester_United_Premier_EvFwGJmMET1l_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Hashim0307: I remember when North Korea lost 7-0 to Portugal in WC2010, media in North Korea reported the match ended 0-0. Hilarious.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:04:29 +0000", "from_user": "TracyTotes", "from_user_id": 251359414, "from_user_id_str": "251359414", "from_user_name": "Tracy", "geo": null, "id": 148826044579848200, "id_str": "148826044579848192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1583814026/meeeee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583814026/meeeee_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Good evening from a very clear Portugal xx http://t.co/DJLVX4xS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:04:23 +0000", "from_user": "swaradasantosh", "from_user_id": 430023449, "from_user_id_str": "430023449", "from_user_name": "Swarada Bandodkar", "geo": null, "id": 148826023285370880, "id_str": "148826023285370880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Today in 1961-Indian armed forces take an action that stops the Portugal rule in India. 22 Indians and 30 Portuguese were killed.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:04:19 +0000", "from_user": "Se_ginh0", "from_user_id": 279956187, "from_user_id_str": "279956187", "from_user_name": "S\\u00E9rgio Costa", "geo": null, "id": 148826005656711170, "id_str": "148826005656711168", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "The Wanted e Rihanna juntos! Sabe tudo sobre o dueto \"Jealousy\" | RIHANNA PORTUGAL http://t.co/JWHuSL0W", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:04:15 +0000", "from_user": "WeFoundLoveRiRi", "from_user_id": 177738439, "from_user_id_str": "177738439", "from_user_name": "Rayan Fenty Adkins", "geo": null, "id": 148825988581695500, "id_str": "148825988581695489", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677769970/rrrrrrrrrrrrihannnnnna_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677769970/rrrrrrrrrrrrihannnnnna_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@Alicia_Fenty toca funk ai em Portugal? O.o", "to_user": "Alicia_Fenty", "to_user_id": 272138231, "to_user_id_str": "272138231", "to_user_name": "It's Cristmas, \\u263A", "in_reply_to_status_id": 148825668065562620, "in_reply_to_status_id_str": "148825668065562624"}, +{"created_at": "Mon, 19 Dec 2011 18:04:10 +0000", "from_user": "FutpressCom", "from_user_id": 218511828, "from_user_id_str": "218511828", "from_user_name": "Futpress Comunica\\u00E7\\u00E3o", "geo": null, "id": 148825966628700160, "id_str": "148825966628700160", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1173048272/futpress.jpg_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1173048272/futpress.jpg_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Ap\\u00F3s empate, Marcelo Boeck quer foco do Sporting na Ta\\u00E7a de Portugal\\nhttp://t.co/FIxHLLlI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:04:09 +0000", "from_user": "Kate_Cocozza", "from_user_id": 408033612, "from_user_id_str": "408033612", "from_user_name": "Kate Ann", "geo": null, "id": 148825962572808200, "id_str": "148825962572808192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698604654/IMG-20110902-00044_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698604654/IMG-20110902-00044_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@DanielleMalik_ yes I did, I said its near portugal, which it is you dinnnny!", "to_user": "DanielleMalik_", "to_user_id": 226209651, "to_user_id_str": "226209651", "to_user_name": "Daniellereps.", "in_reply_to_status_id": 148825531280932860, "in_reply_to_status_id_str": "148825531280932864"}, +{"created_at": "Mon, 19 Dec 2011 18:04:02 +0000", "from_user": "Hashim0307", "from_user_id": 72523489, "from_user_id_str": "72523489", "from_user_name": "Hashim", "geo": null, "id": 148825935947382800, "id_str": "148825935947382784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1676245413/tumblr_lvqln9sOk21qifxuro4_250_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676245413/tumblr_lvqln9sOk21qifxuro4_250_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "I remember when North Korea lost 7-0 to Portugal in WC2010, media in North Korea reported the match ended 0-0. Hilarious.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:03:54 +0000", "from_user": "Auesolucoes", "from_user_id": 65429388, "from_user_id_str": "65429388", "from_user_name": "AuE Solu\\u00E7\\u00F5es", "geo": null, "id": 148825901629575170, "id_str": "148825901629575168", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/362750278/Logo_AuE_Tw_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/362750278/Logo_AuE_Tw_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Como cuidar das doen\\u00E7as em \\u00E1rvores ornamentais. http://t.co/GlmkkqIs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:03:50 +0000", "from_user": "Giovaniinha_", "from_user_id": 195194722, "from_user_id_str": "195194722", "from_user_name": "Giovana ", "geo": null, "id": 148825884755902460, "id_str": "148825884755902464", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1661657324/100_2865_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661657324/100_2865_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "amanha vai vir o Juliano que t\\u00E1 jogando em um time l\\u00E1 de Portugal ver os Projeto do meu pai >< que ORGULHO tomara que ela ajude n\\u00E9 kk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:03:46 +0000", "from_user": "AsLuanaticas_PT", "from_user_id": 246811989, "from_user_id_str": "246811989", "from_user_name": "As Luanaticas PT", "geo": null, "id": 148825865709551600, "id_str": "148825865709551616", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1589478022/366105796_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1589478022/366105796_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@fazendaLS n\\u00E3o amor aqui em Portugal , s\\u00F3 passa amanha :c", "to_user": "fazendaLS", "to_user_id": 234832342, "to_user_id_str": "234832342", "to_user_name": "Fazenda (OFICIAL)", "in_reply_to_status_id": 148825571923726340, "in_reply_to_status_id_str": "148825571923726338"}, +{"created_at": "Mon, 19 Dec 2011 18:03:37 +0000", "from_user": "Spokie22", "from_user_id": 70964172, "from_user_id_str": "70964172", "from_user_name": "Alwyn van den Heever", "geo": null, "id": 148825827671412740, "id_str": "148825827671412736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1654843629/__E2_8C_A3_CC_8A_E2_94_88_CC_A5-_CC_B6_CC_AF_CD_A1_C2_BB_CC_B6_CC_A5_20_E2_98_80_CC_88_CC_A4_CC_87_CC_A3_CB_90_CC_96LoLa_20_E2_8C_A3_CC_8A__E2_8C_A3_CC_8A_E2_94_88_CC_A5-_CC_B6_CC_AF_CD_A1_C2_BB_CC_B6_CC_A5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654843629/__E2_8C_A3_CC_8A_E2_94_88_CC_A5-_CC_B6_CC_AF_CD_A1_C2_BB_CC_B6_CC_A5_20_E2_98_80_CC_88_CC_A4_CC_87_CC_A3_CB_90_CC_96LoLa_20_E2_8C_A3_CC_8A__E2_8C_A3_CC_8A_E2_94_88_CC_A5-_CC_B6_CC_AF_CD_A1_C2_BB_CC_B6_CC_A5_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:03:16 +0000", "from_user": "Yaann_lp", "from_user_id": 270889619, "from_user_id_str": "270889619", "from_user_name": "YaNn \\u2665", "geo": null, "id": 148825741914669060, "id_str": "148825741914669057", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694597806/patin_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694597806/patin_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Llegaron las cosas de Portugal!!! Vamos carajooooo!!! Ahora aduana se piola y liberamelasss guijiiiiiii. Dale q falta poquito pa navidad :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:03:12 +0000", "from_user": "DreMartu", "from_user_id": 55874573, "from_user_id_str": "55874573", "from_user_name": "Andr\\u00E9 M. \\u2590\\u2590\\u2590 ", "geo": null, "id": 148825722755096580, "id_str": "148825722755096577", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1569684897/tumblr_l27odpP06I1qzmet2o1_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1569684897/tumblr_l27odpP06I1qzmet2o1_400_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Brand New Riot: Rihanna: Cantora foi v\\u00EDtima de racismo durante sua passagem por Portugal http://t.co/If6PlhaJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:03:07 +0000", "from_user": "tetorrr", "from_user_id": 235238565, "from_user_id_str": "235238565", "from_user_name": "Alberto Hern\\u00E1ndez", "geo": null, "id": 148825705214525440, "id_str": "148825705214525441", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1263938337/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263938337/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@pal0man @Javimesas Jajajaja alg\\u00FAn problema?? Me las compro mi mam\\u00E1 hace mil a\\u00F1os en Portugal. A partir del 15 de febrero te meto corcho!", "to_user": "pal0man", "to_user_id": 68980392, "to_user_id_str": "68980392", "to_user_name": "Andr\\u00E9s Gregorio", "in_reply_to_status_id": 148823108416053250, "in_reply_to_status_id_str": "148823108416053248"}, +{"created_at": "Mon, 19 Dec 2011 18:03:04 +0000", "from_user": "portalinfomoney", "from_user_id": 59773459, "from_user_id_str": "59773459", "from_user_name": "InfoMoney", "geo": null, "id": 148825692619026430, "id_str": "148825692619026432", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/329994002/im_square_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/329994002/im_square_normal.jpg", "source": "<a href="http://www.infomoney.com.br" rel="nofollow">Portal_InfoMoney</a>", "text": "#infomoney FMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal... http://t.co/SHzFcLB8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:02:52 +0000", "from_user": "stephendeacon", "from_user_id": 92111958, "from_user_id_str": "92111958", "from_user_name": "Stephen Deacon", "geo": null, "id": 148825641268158460, "id_str": "148825641268158464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1082966037/peacock_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1082966037/peacock_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "@zevonesque Steve mentioned Munich, but I dont think I can afford it. Def will be in Portugal you managed to find any flights to Porto?", "to_user": "zevonesque", "to_user_id": 21287755, "to_user_id_str": "21287755", "to_user_name": "Andy Walker", "in_reply_to_status_id": 148736857537118200, "in_reply_to_status_id_str": "148736857537118208"}, +{"created_at": "Mon, 19 Dec 2011 18:02:43 +0000", "from_user": "dj_smirnoff_ice", "from_user_id": 19022782, "from_user_id_str": "19022782", "from_user_name": "DJ Smirnoff Ice ", "geo": null, "id": 148825605092278270, "id_str": "148825605092278274", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1545112213/l_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545112213/l_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Rihanna Goes on Twitter Rant After Racial Abuse in Portugal (Blog) (@Rihanna) http://t.co/RtB6INFa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:02:31 +0000", "from_user": "itookapicture", "from_user_id": 84688504, "from_user_id_str": "84688504", "from_user_name": "I Took a Picture", "geo": null, "id": 148825553154224130, "id_str": "148825553154224128", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/486697718/reddit-twitter-transp_bigger_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/486697718/reddit-twitter-transp_bigger_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Photo: ITAP of Porto, Villa Nova de Gaia and Dom Luis Bridge, Portugal http://t.co/Qhb2Jp4d", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:02:30 +0000", "from_user": "cafehiperboreal", "from_user_id": 155325804, "from_user_id_str": "155325804", "from_user_name": "Caf\\u00E9 Hiperboreal", "geo": null, "id": 148825547118624770, "id_str": "148825547118624769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1202602778/avatar_facebook_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1202602778/avatar_facebook_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @LifeBoxset: Escucha un cover de Portugal. The Man a Gnarls Barkley http://t.co/qYMNEKP9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:02:29 +0000", "from_user": "glaucef", "from_user_id": 16153367, "from_user_id_str": "16153367", "from_user_name": "GlauceFleury", "geo": null, "id": 148825543033364480, "id_str": "148825543033364480", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/612453840/062a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/612453840/062a_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "E tem quem ache q ser famoso ameniza preconceito. Rihanna revela q sofreu racismo em hotel de Portugal. http://t.co/ySe3wsEh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:02:28 +0000", "from_user": "Ops_Dani", "from_user_id": 430280165, "from_user_id_str": "430280165", "from_user_name": "Danii Coltri ", "geo": null, "id": 148825538620964860, "id_str": "148825538620964866", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679510328/DANIIII_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679510328/DANIIII_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Aqui em casa esta os lundos do @cavirardi ,o #Jo\\u00E3o ,o #Junior, o#Vinicius e o #portugal esta acabol de chegar ;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:02:19 +0000", "from_user": "AlfaJornal", "from_user_id": 110153375, "from_user_id_str": "110153375", "from_user_name": "Alfa Jornal", "geo": null, "id": 148825500876414980, "id_str": "148825500876414976", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/667265994/ScreenShot011_normal.bmp", "profile_image_url_https": "https://si0.twimg.com/profile_images/667265994/ScreenShot011_normal.bmp", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "M\\u00E9dico Gentil Martins faz queixa por pedit\\u00F3rio fraudulento: O cirurgi\\u00E3o pedi\\u00E1trico Ant\\u00F3nio Gentil Martins disse ... http://t.co/A81z8R8N", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:02:16 +0000", "from_user": "AlfaJornal", "from_user_id": 110153375, "from_user_id_str": "110153375", "from_user_name": "Alfa Jornal", "geo": null, "id": 148825487941181440, "id_str": "148825487941181440", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/667265994/ScreenShot011_normal.bmp", "profile_image_url_https": "https://si0.twimg.com/profile_images/667265994/ScreenShot011_normal.bmp", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "M\\u00E9dico Gentil Martins faz queixa por pedit\\u00F3rio fraudulento: O cirurgi\\u00E3o pedi\\u00E1trico Ant\\u00F3nio Gentil Martins disse ... http://t.co/GzGLFLlD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:02:07 +0000", "from_user": "FranciscoJav363", "from_user_id": 323836267, "from_user_id_str": "323836267", "from_user_name": "Francisco Javier Mar", "geo": null, "id": 148825453124263940, "id_str": "148825453124263937", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691139196/IMG_1007_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691139196/IMG_1007_normal.JPG", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "\"@BRKnews_es: FMI aprueba 2.900 millones de euros para Portugal http://t.co/3OBLK0tn\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:58 +0000", "from_user": "BenBrackenridge", "from_user_id": 351727421, "from_user_id_str": "351727421", "from_user_name": "Ben Brackenridge", "geo": null, "id": 148825414750572540, "id_str": "148825414750572544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677681068/299580_10150525224243136_671073135_11580307_91849787_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677681068/299580_10150525224243136_671073135_11580307_91849787_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Portugal? Yes please.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:42 +0000", "from_user": "BRKnews_es", "from_user_id": 59266397, "from_user_id_str": "59266397", "from_user_name": "Breaking News", "geo": null, "id": 148825345393557500, "id_str": "148825345393557504", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1283909527/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1283909527/avatar_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "FMI aprueba 2.900 millones de euros para Portugal http://t.co/EDokLZjY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:42 +0000", "from_user": "AnotherLayton", "from_user_id": 251686529, "from_user_id_str": "251686529", "from_user_name": "\\u30B5\\u30E9 -S\\u03B1r\\u03B1- zombi~\\u25CF\\u25CF\\u25CF\\u25CF", "geo": null, "id": 148825345326460930, "id_str": "148825345326460928", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702622232/Endo__AnotherLayton__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702622232/Endo__AnotherLayton__normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Rabiosa se parece a 'raposa', que en gallego y en portugu\\u00E9s significa 'zorra'. Shakira, en Galicia y en Portugal ya saben lo que eres.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:38 +0000", "from_user": "AnikaaVeenstra", "from_user_id": 311506754, "from_user_id_str": "311506754", "from_user_name": "Anika Veenstra", "geo": null, "id": 148825330986127360, "id_str": "148825330986127360", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698923075/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698923075/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Net even met papa mama en Marieke over zomervakantie gehad ,, weer 2 week Nederland en aan t eind 2 week Portugal! (:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:35 +0000", "from_user": "janneferraz", "from_user_id": 96974645, "from_user_id_str": "96974645", "from_user_name": "Jane Ferraz", "geo": null, "id": 148825317010714620, "id_str": "148825317010714624", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1467964391/35880_15074_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1467964391/35880_15074_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "FMI libera 2,9 bilh\\u00F5es de euros em ajuda para Portugal.\\nhttp://t.co/OmZYabZ7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:27 +0000", "from_user": "ForSaleiAlgarve", "from_user_id": 386105591, "from_user_id_str": "386105591", "from_user_name": "For Sale in Algarve", "geo": null, "id": 148825284400005120, "id_str": "148825284400005121", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1575941712/For_Sale_In_Algarve_Twitter_Logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575941712/For_Sale_In_Algarve_Twitter_Logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Villa for sale in Lagoa Porches | 3 bedrooms ~ For-Sale-in-Algarve ~\\n#Algarve #Portugal - http://t.co/xI2Ifnym", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:26 +0000", "from_user": "Portugal_Glocal", "from_user_id": 18055408, "from_user_id_str": "18055408", "from_user_name": "Portugal Glocal", "geo": null, "id": 148825280604147700, "id_str": "148825280604147713", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1359510627/Logo_Portugal_Glocal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1359510627/Logo_Portugal_Glocal_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "M\\u00E9dico Gentil Martins faz queixa por pedit\\u00F3rio fraudulento http://t.co/LtPMOU0y #Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:24 +0000", "from_user": "Picon_Venezuela", "from_user_id": 353231830, "from_user_id_str": "353231830", "from_user_name": "FansdePiconVnezuela\\u221A", "geo": null, "id": 148825270177120260, "id_str": "148825270177120256", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1545872950/vanezuepicom_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545872950/vanezuepicom_normal.JPG", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "RT @Piconn: Brazuca e Portuga!! Esse cara \\u00E9 o cara mais foda de Portugal http://t.co/HEzTzPA3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:23 +0000", "from_user": "katarthurs", "from_user_id": 360945849, "from_user_id_str": "360945849", "from_user_name": "Kat Arthurs", "geo": null, "id": 148825268650381300, "id_str": "148825268650381313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1511570200/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1511570200/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:09 +0000", "from_user": "dntwit", "from_user_id": 395388847, "from_user_id_str": "395388847", "from_user_name": "Di\\u00E1rio de Not\\u00EDcias", "geo": +{"coordinates": [38.7245,-9.1485], "type": "Point"}, "id": 148825208294342660, "id_str": "148825208294342657", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1618752141/dn_avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618752141/dn_avatar_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#Portugal M\\u00E9dico Gentil Martins faz queixa por pedit\\u00F3rio fraudulento http://t.co/YKgsX2X6 Ler http://t.co/lorvizrT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:07 +0000", "from_user": "MonicaHonestLee", "from_user_id": 311230431, "from_user_id_str": "311230431", "from_user_name": "Monica Musgrave", "geo": null, "id": 148825200325165060, "id_str": "148825200325165058", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1497498472/222707_2000110889342_1440652470_32300965_3242794_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1497498472/222707_2000110889342_1440652470_32300965_3242794_n_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Man, ohhhhh, man, yeah you're so American, so Americaaaan -- Portugal. The Man", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:04 +0000", "from_user": "arteh", "from_user_id": 9017782, "from_user_id_str": "9017782", "from_user_name": "ARTEH HOTELS", "geo": null, "id": 148825189805854720, "id_str": "148825189805854720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/184238427/Logo-ARTEH_07_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/184238427/Logo-ARTEH_07_normal.JPG", "source": "<a href="http://twitthat.com/" rel="nofollow">twitthat</a>", "text": "Reading: \"New Year\\u2019s Eve Package - 1 or Pay 2, Stay 3 Nights at Memmo Baleeira in Portugal, Algarve, Sagres\" ( http://t.co/pMtg3Jiw )", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:59 +0000", "from_user": "trpsimoes", "from_user_id": 134930858, "from_user_id_str": "134930858", "from_user_name": "Tiago Sim\\u00F5es", "geo": null, "id": 148825165571178500, "id_str": "148825165571178496", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/836370358/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/836370358/twitter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "finalmente, algo d bom. saudades j\\u00E1 s\\u00E3o muitas: \"Jazz volta \\u00E0 Pra\\u00E7a da Alegria com reabertura do Hot Clube de Portugal\" http://t.co/hc4okR3E", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:51 +0000", "from_user": "xpat", "from_user_id": 10371872, "from_user_id_str": "10371872", "from_user_name": "xpat", "geo": null, "id": 148825134550097920, "id_str": "148825134550097920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1196897964/xpat-twitter-logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1196897964/xpat-twitter-logo_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#Health care costs per head in Portugal are lower than the EU average. http://t.co/eVNBuUlp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:50 +0000", "from_user": "PeLuCriciuma", "from_user_id": 177627338, "from_user_id_str": "177627338", "from_user_name": "FC Pe Lu Crici\\u00FAma \\u263B", "geo": null, "id": 148825127679827970, "id_str": "148825127679827968", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693276552/374221_217132038363656_192164040860456_491670_262859980_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693276552/374221_217132038363656_192164040860456_491670_262859980_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Eu simplesmente calei a boca dela dizendo: \"\\u00C9, s\\u00F3 uma 'modinha' que j\\u00E1 est\\u00E1 estourando no Jap\\u00E3o, Portugal, M\\u00E9xico, Fran\\u00E7a e entre outros\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:45 +0000", "from_user": "Dhr_kreikamp", "from_user_id": 259898032, "from_user_id_str": "259898032", "from_user_name": "kris kreikamp", "geo": null, "id": 148825110026002430, "id_str": "148825110026002432", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1648481492/IMAG0134_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648481492/IMAG0134_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Bij d\\u2019r LOUD tour in Portugal rende ze tijdens het zingen van What\\u2019s My Name? het podium af om backstage d\\u2019r avondeten eruit te kotsen.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:38 +0000", "from_user": "SocMeDotMe", "from_user_id": 371995419, "from_user_id_str": "371995419", "from_user_name": "Karl Lingenfelder", "geo": null, "id": 148825077859880960, "id_str": "148825077859880960", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1546120426/SocMe_Twitter_Icon_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546120426/SocMe_Twitter_Icon_2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Villa for sale in Lagoa Porches | 3 bedrooms ~ For-Sale-in-Algarve ~\\n#Algarve #Portugal - http://t.co/hsAmrjvT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:32 +0000", "from_user": "viajarclix", "from_user_id": 112185190, "from_user_id_str": "112185190", "from_user_name": "Viajar * Clix", "geo": null, "id": 148825055256780800, "id_str": "148825055256780800", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/804770382/elevador_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/804770382/elevador_normal.jpg", "source": "<a href="http://viajar.clix.pt" rel="nofollow">Viajar * Clix</a>", "text": "http://t.co/Wam1LIoA #Porto: O Mercado est\\u00E1 de regresso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:32 +0000", "from_user": "nanecau", "from_user_id": 84962661, "from_user_id_str": "84962661", "from_user_name": "Nane", "geo": null, "id": 148825052740198400, "id_str": "148825052740198401", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1613164541/Linda_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1613164541/Linda_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SaguiSanfona J\\u00E1 mandei para a Sui\\u00E7a e Portugal kkk @MartaWLMT @MelaFernandes @JulianaMPisco >> V\\u00E3o fazer kkk Manda bjus pra ela e pra mana", "to_user": "SaguiSanfona", "to_user_id": 245359426, "to_user_id_str": "245359426", "to_user_name": "Sagui Sanfona", "in_reply_to_status_id": 148824533695086600, "in_reply_to_status_id_str": "148824533695086592"}, +{"created_at": "Mon, 19 Dec 2011 18:00:25 +0000", "from_user": "michaelanico", "from_user_id": 250540245, "from_user_id_str": "250540245", "from_user_name": "Michaela Larsson", "geo": null, "id": 148825025909243900, "id_str": "148825025909243904", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696872771/Screen_shot_2011-12-16_at_7.37.09_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696872771/Screen_shot_2011-12-16_at_7.37.09_PM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "var hittar man f\\u00F6rresten billigaste flygstolarna nu? till portugal? #resa #flyg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:14 +0000", "from_user": "em_com", "from_user_id": 183398510, "from_user_id_str": "183398510", "from_user_name": "Estado de Minas ", "geo": null, "id": 148824979297943550, "id_str": "148824979297943552", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1121206692/em_img_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1121206692/em_img_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "FMI libera 2,9 bi de euros para Portugal \\nhttp://t.co/H3MXGySl via @em_com", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:09 +0000", "from_user": "bauareeiro", "from_user_id": 94586734, "from_user_id_str": "94586734", "from_user_name": "Areeiro Bau", "geo": null, "id": 148824958708088830, "id_str": "148824958708088832", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprova tranche de 2,9 mil milh\\u00F5es de euros para Portugal: Depois da Comiss\\u00E3o Europeia, hoje foi a vez de o c... http://t.co/ksSmgCM8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:05 +0000", "from_user": "economia_feed_0", "from_user_id": 284989974, "from_user_id_str": "284989974", "from_user_name": "economia_feed_0", "geo": null, "id": 148824941322711040, "id_str": "148824941322711040", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://www.google.es" rel="nofollow">Economia_feed</a>", "text": "#Econom\\u00EDa.- El #FMI autoriza el desembolso de 2.900 millones del #siguiente #tramo del #rescate de #Portugal http://t.co/ChQyuROR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:03 +0000", "from_user": "infilipac", "from_user_id": 118209793, "from_user_id_str": "118209793", "from_user_name": "In\\u00EAs", "geo": null, "id": 148824934146252800, "id_str": "148824934146252801", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1540382566/07082010557akjbhd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1540382566/07082010557akjbhd_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rihanna: PORTUGAL tonight was LEGENDARY!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:02 +0000", "from_user": "diihhenrique", "from_user_id": 67970002, "from_user_id_str": "67970002", "from_user_name": "\\u03DF D\\u00ED\\u00ECH \\u03DF ", "geo": null, "id": 148824928265838600, "id_str": "148824928265838592", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1311984702/DSCF3743_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1311984702/DSCF3743_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#DescansaRihanna: durante show em Portugal, cantora deixa palco para vomitar: N\\u00E3o tem jeito, Rihanna t\\u00E1 louca e ... http://t.co/UYi11GVA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:57 +0000", "from_user": "MissHalloween_X", "from_user_id": 428928804, "from_user_id_str": "428928804", "from_user_name": "leah Dixon ", "geo": null, "id": 148824908003160060, "id_str": "148824908003160065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1675256387/Greenwich-20111202-00648_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675256387/Greenwich-20111202-00648_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Hope Rhianas alright about what happened in Portugal :L,xxxxx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:57 +0000", "from_user": "pt_meta_guide", "from_user_id": 435931739, "from_user_id_str": "435931739", "from_user_name": "Portugal Meta Guide", "geo": null, "id": 148824906409312260, "id_str": "148824906409312257", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691161167/Portugal-Flag-icon_normal.png", "profile_image_url_https": null, "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#philipswiki: Lonely Planet By the Seat of My Pants (Anthology) Review http://t.co/DWowfdEc lonelyplanet travel", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:56 +0000", "from_user": "pt_meta_guide", "from_user_id": 435931739, "from_user_id_str": "435931739", "from_user_name": "Portugal Meta Guide", "geo": null, "id": 148824903590752260, "id_str": "148824903590752257", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691161167/Portugal-Flag-icon_normal.png", "profile_image_url_https": null, "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#Shawnkks: A Historic Travel Guide to European Countries and Their Cities: Portugal: Europe is a place filled with wonder a......", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:56 +0000", "from_user": "pt_meta_guide", "from_user_id": 435931739, "from_user_id_str": "435931739", "from_user_name": "Portugal Meta Guide", "geo": null, "id": 148824900835090430, "id_str": "148824900835090433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691161167/Portugal-Flag-icon_normal.png", "profile_image_url_https": null, "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#Shawnnaxjt: Spain & Portugal Travel Map by Hema: Road and travel map of Spain and Portugal with shaded relief in subtle colo......", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:56 +0000", "from_user": "angferper", "from_user_id": 125072989, "from_user_id_str": "125072989", "from_user_name": "\\u00C1ngela Ferreira", "geo": +{"coordinates": [41.9397,-8.7452], "type": "Point"}, "id": 148824899396435970, "id_str": "148824899396435968", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693546553/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693546553/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Con @sara_loren y luli tomando algo en Portugal #Mir\\u00F3 http://t.co/1XsCVb1G", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:55 +0000", "from_user": "pt_meta_guide", "from_user_id": 435931739, "from_user_id_str": "435931739", "from_user_name": "Portugal Meta Guide", "geo": null, "id": 148824899375472640, "id_str": "148824899375472640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691161167/Portugal-Flag-icon_normal.png", "profile_image_url_https": null, "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#Sharell_Ramsier: Fodor's Portugal, 8th Edition (Fodor's Gold Guides) http://t.co/zouIiXPa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:55 +0000", "from_user": "pt_meta_guide", "from_user_id": 435931739, "from_user_id_str": "435931739", "from_user_name": "Portugal Meta Guide", "geo": null, "id": 148824897987166200, "id_str": "148824897987166208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691161167/Portugal-Flag-icon_normal.png", "profile_image_url_https": null, "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#Expats_United: #Expats_Mexico I am hoping to travel to Portugal with my Mum and Dad, my elderly mother has Lun... http://t.co/mFlh8e6N...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:54 +0000", "from_user": "pt_meta_guide", "from_user_id": 435931739, "from_user_id_str": "435931739", "from_user_name": "Portugal Meta Guide", "geo": null, "id": 148824895600603140, "id_str": "148824895600603136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691161167/Portugal-Flag-icon_normal.png", "profile_image_url_https": null, "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#stevorevo: #theexplorateur Thanks for the RT! Portugal travel photog", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:52 +0000", "from_user": "LauraMesqui", "from_user_id": 75354152, "from_user_id_str": "75354152", "from_user_name": "Laura Mesquita", "geo": null, "id": 148824886356357120, "id_str": "148824886356357120", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687245910/DSC02448_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687245910/DSC02448_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@susanaafc que grande imagem que ela leva de portugal...", "to_user": "susanaafc", "to_user_id": 67635244, "to_user_id_str": "67635244", "to_user_name": "Susana Cordeiro", "in_reply_to_status_id": 148824555354468350, "in_reply_to_status_id_str": "148824555354468353"} +, +{"created_at": "Mon, 19 Dec 2011 17:59:55 +0000", "from_user": "pt_meta_guide", "from_user_id": 435931739, "from_user_id_str": "435931739", "from_user_name": "Portugal Meta Guide", "geo": null, "id": 148824897987166200, "id_str": "148824897987166208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691161167/Portugal-Flag-icon_normal.png", "profile_image_url_https": null, "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#Expats_United: #Expats_Mexico I am hoping to travel to Portugal with my Mum and Dad, my elderly mother has Lun... http://t.co/mFlh8e6N...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:54 +0000", "from_user": "pt_meta_guide", "from_user_id": 435931739, "from_user_id_str": "435931739", "from_user_name": "Portugal Meta Guide", "geo": null, "id": 148824895600603140, "id_str": "148824895600603136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691161167/Portugal-Flag-icon_normal.png", "profile_image_url_https": null, "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#stevorevo: #theexplorateur Thanks for the RT! Portugal travel photog", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:52 +0000", "from_user": "LauraMesqui", "from_user_id": 75354152, "from_user_id_str": "75354152", "from_user_name": "Laura Mesquita", "geo": null, "id": 148824886356357120, "id_str": "148824886356357120", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687245910/DSC02448_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687245910/DSC02448_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@susanaafc que grande imagem que ela leva de portugal...", "to_user": "susanaafc", "to_user_id": 67635244, "to_user_id_str": "67635244", "to_user_name": "Susana Cordeiro", "in_reply_to_status_id": 148824555354468350, "in_reply_to_status_id_str": "148824555354468353"}, +{"created_at": "Mon, 19 Dec 2011 17:59:46 +0000", "from_user": "CienciasExactas", "from_user_id": 26016195, "from_user_id_str": "26016195", "from_user_name": "Ci\\u00EAncias Exactas", "geo": null, "id": 148824860481691650, "id_str": "148824860481691648", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/125489198/observador_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/125489198/observador_normal.jpeg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "ci\\u00EAncia: - Idade m\\u00E9dia de maternidade http://t.co/Bu9qn6iO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:34 +0000", "from_user": "dirtyfenty", "from_user_id": 112851999, "from_user_id_str": "112851999", "from_user_name": "Thaiis \\u0394", "geo": null, "id": 148824810623995900, "id_str": "148824810623995905", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699096000/Sem_t_tulo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699096000/Sem_t_tulo_normal.png", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @rihanna_navy_br: Que raiva desse imbecil que descriminou a RiRi em Portugal,isso n\\u00E3o pode acontecer KD O FBI??? KD MINHA PEGGY SUE???", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:31 +0000", "from_user": "AsLuanaticas_PT", "from_user_id": 246811989, "from_user_id_str": "246811989", "from_user_name": "As Luanaticas PT", "geo": null, "id": 148824796371763200, "id_str": "148824796371763200", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1589478022/366105796_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1589478022/366105796_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@AsLuanaticas vou ver Michel tel\\u00F3 dia 25 de fevereiro amor ele v\\u00EAm ca a Portugal e voc\\u00EA ?", "to_user": "AsLuanaticas", "to_user_id": 178750190, "to_user_id_str": "178750190", "to_user_name": "Line e L\\u00EA do Luan \\u10D6", "in_reply_to_status_id": 148824478804226050, "in_reply_to_status_id_str": "148824478804226050"}, +{"created_at": "Mon, 19 Dec 2011 17:59:19 +0000", "from_user": "JuanCarlos_RDS", "from_user_id": 245942171, "from_user_id_str": "245942171", "from_user_name": "Juan Carlos RDS \\u2714", "geo": null, "id": 148824747965288450, "id_str": "148824747965288448", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684819587/nFYs3p4M_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684819587/nFYs3p4M_normal", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Esto es Portugal. Lo adoro. Felicidad, alegr\\u00EDa, compartir ilusiones... S\\u00F3 Visto - Selec\\u00E7\\u00E3o Nacional http://t.co/IO55p9YB v\\u00EDa @youtube", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:16 +0000", "from_user": "Manaus_Amazonas", "from_user_id": 215251021, "from_user_id_str": "215251021", "from_user_name": "News Manaus Amazonas", "geo": null, "id": 148824735344640000, "id_str": "148824735344640000", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1570386448/arena_da_amazonia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1570386448/arena_da_amazonia_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera 2,9 bi de euros para Portugal http://t.co/EF3sWfBN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:14 +0000", "from_user": "arteh", "from_user_id": 9017782, "from_user_id_str": "9017782", "from_user_name": "ARTEH HOTELS", "geo": null, "id": 148824726620487680, "id_str": "148824726620487680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/184238427/Logo-ARTEH_07_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/184238427/Logo-ARTEH_07_normal.JPG", "source": "<a href="http://twitthat.com/" rel="nofollow">twitthat</a>", "text": "Reading: \"New Year\\u2019s Eve Package - 1 Night at Bessa Hotel in Portugal, Oporto\" ( http://t.co/82Pn7cQR )", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:07 +0000", "from_user": "portugalforum", "from_user_id": 41989700, "from_user_id_str": "41989700", "from_user_name": "portugalforum", "geo": null, "id": 148824695993667600, "id_str": "148824695993667584", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/487842239/pfo_icon_gr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/487842239/pfo_icon_gr_normal.jpg", "source": "<a href="http://www.portugalforum.org" rel="nofollow">portugalforum.org</a>", "text": "portu.ch: Algarve - Wanderer statt Sonnenanbeter: Algarve - Wanderer statt Sonnenanbeter Bei milden Temperaturen machte http://t.co/gICHPHq5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:03 +0000", "from_user": "MarvellousSport", "from_user_id": 306922612, "from_user_id_str": "306922612", "from_user_name": "Marvellous Sport", "geo": null, "id": 148824681892429820, "id_str": "148824681892429824", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1414875598/ball_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1414875598/ball_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Futebol 365 M\\u00FAsica: Morreu Carlos Menezes, pioneiro da guitarra el\\u00E9trica em Portugal: O guitarrista Carlos Menez... http://t.co/POXDHy8v", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:01 +0000", "from_user": "MarcoAntonioDSM", "from_user_id": 169586454, "from_user_id_str": "169586454", "from_user_name": "Marco Ant\\u00F3nio", "geo": null, "id": 148824672019038200, "id_str": "148824672019038208", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679763635/IMG_0030_modified_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679763635/IMG_0030_modified_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Rihanna \\u00E9 vista a sair de uma loja Armani em Londres | RIHANNA PORTUGAL http://t.co/6Wk2ufIe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:01 +0000", "from_user": "tpobserver", "from_user_id": 137488594, "from_user_id_str": "137488594", "from_user_name": "Paul", "geo": null, "id": 148824670433583100, "id_str": "148824670433583104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/884576390/asdfasd_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/884576390/asdfasd_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:57 +0000", "from_user": "juliapredebon", "from_user_id": 92301304, "from_user_id_str": "92301304", "from_user_name": "Julia Predebon", "geo": null, "id": 148824653681532930, "id_str": "148824653681532928", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695280864/DSC05708_-_C_pia_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695280864/DSC05708_-_C_pia_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @BillboardChart_: RIHANNA \\u00E9 v\\u00EDtima de racismo em hotel de Portugal: http://t.co/qDv67Xnn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:54 +0000", "from_user": "finansnyheter", "from_user_id": 37592554, "from_user_id_str": "37592554", "from_user_name": "Finansnyheter", "geo": null, "id": 148824642554048500, "id_str": "148824642554048513", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/195869373/finansnyheter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/195869373/finansnyheter_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF utbetaler milliardl\\u00E5n til Portugal http://t.co/bNN6kR7c", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:53 +0000", "from_user": "nadam9", "from_user_id": 43514030, "from_user_id_str": "43514030", "from_user_name": "Adam Nyb\\u00E4ck", "geo": null, "id": 148824638368120830, "id_str": "148824638368120832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/770058019/adam85_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/770058019/adam85_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:45 +0000", "from_user": "sam_valdes", "from_user_id": 42817815, "from_user_id_str": "42817815", "from_user_name": "Sam Valdes", "geo": null, "id": 148824604754976770, "id_str": "148824604754976768", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1541687193/282161_10150725264170541_693465540_19880066_2527082_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541687193/282161_10150725264170541_693465540_19880066_2527082_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Milenio: FMI aprueba entrega de \\u20AC2 mil 900 millones para Portugal http://t.co/yR5rfUc1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:45 +0000", "from_user": "LuArFever", "from_user_id": 331335418, "from_user_id_str": "331335418", "from_user_name": "LuArFever", "geo": null, "id": 148824604553654270, "id_str": "148824604553654272", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1672387618/catsn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672387618/catsn_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Pbarbosashow Quando os #Rebeldes v\\u00EAm a #Portugal ? Pff responde ... n\\u00F3s queremos MUITO os Rebeldes aqui *-*", "to_user": "Pbarbosashow", "to_user_id": 431595535, "to_user_id_str": "431595535", "to_user_name": "Paulo Barbosa"}, +{"created_at": "Mon, 19 Dec 2011 17:58:44 +0000", "from_user": "goodnighthemoon", "from_user_id": 125935155, "from_user_id_str": "125935155", "from_user_name": "Sofia", "geo": null, "id": 148824602150314000, "id_str": "148824602150313985", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1585562425/Snapshot_20110628_15_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585562425/Snapshot_20110628_15_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@FallenKaty bought it in Portugal during \"fallen\" period.", "to_user": "FallenKaty", "to_user_id": 76705761, "to_user_id_str": "76705761", "to_user_name": "Katherine Courtney-H", "in_reply_to_status_id": 148823195825356800, "in_reply_to_status_id_str": "148823195825356802"}, +{"created_at": "Mon, 19 Dec 2011 17:58:43 +0000", "from_user": "CodyCanFlyy", "from_user_id": 43901995, "from_user_id_str": "43901995", "from_user_name": "Tiago Caldeira", "geo": null, "id": 148824597956018180, "id_str": "148824597956018176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1264626998/5d646b84-4202-46da-a9be-c3978608c05f_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1264626998/5d646b84-4202-46da-a9be-c3978608c05f_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@joshmeatsix that @youmeatsix need to play a show in Portugal", "to_user": "joshmeatsix", "to_user_id": 41110545, "to_user_id_str": "41110545", "to_user_name": "Josh Franceschi", "in_reply_to_status_id": 148823929568493570, "in_reply_to_status_id_str": "148823929568493568"}, +{"created_at": "Mon, 19 Dec 2011 17:58:40 +0000", "from_user": "CAN72Northants", "from_user_id": 166168539, "from_user_id_str": "166168539", "from_user_name": "Richard Lukehurst ", "geo": null, "id": 148824582801985540, "id_str": "148824582801985536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1609302804/18_April_2011_small_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609302804/18_April_2011_small_normal.gif", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/7ggBqL9g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:38 +0000", "from_user": "rfromsweet", "from_user_id": 245968636, "from_user_id_str": "245968636", "from_user_name": "Rosa Pires", "geo": null, "id": 148824574597935100, "id_str": "148824574597935105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1683607309/new_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683607309/new_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "Lovely #winter afternoon in #downtown #porto #portugal :) http://t.co/qzcsWBto", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:19 +0000", "from_user": "AnonymousIO", "from_user_id": 250294813, "from_user_id_str": "250294813", "from_user_name": "Anonymous I/O", "geo": null, "id": 148824494583185400, "id_str": "148824494583185408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1240543710/AnonIO_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1240543710/AnonIO_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:16 +0000", "from_user": "pauldarcey", "from_user_id": 106266789, "from_user_id_str": "106266789", "from_user_name": "Paul Darcey", "geo": null, "id": 148824484659466240, "id_str": "148824484659466240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1591098100/IMG_0015_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591098100/IMG_0015_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:12 +0000", "from_user": "aboutcentro", "from_user_id": 19910429, "from_user_id_str": "19910429", "from_user_name": "Centro de Portugal", "geo": null, "id": 148824467261489150, "id_str": "148824467261489152", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1079668209/27343_1211652986_4743_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1079668209/27343_1211652986_4743_q_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "NU BAI!\\nTomorrow we'll show you more beautiful faces of Centro de Portugal!\\nMa\\u00F1ana os mostraremos m\\u00E1s rostros... http://t.co/YpM9zzl6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:12 +0000", "from_user": "phil_deakin", "from_user_id": 89930902, "from_user_id_str": "89930902", "from_user_name": "Phil Deakin", "geo": null, "id": 148824464421957630, "id_str": "148824464421957632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/526588187/animals016_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/526588187/animals016_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:08 +0000", "from_user": "RupaVirgo", "from_user_id": 351846000, "from_user_id_str": "351846000", "from_user_name": "Rupa Paul", "geo": null, "id": 148824450060656640, "id_str": "148824450060656641", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1486827194/mini-22_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1486827194/mini-22_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF approves 2.9 billion euro tranche to Portugal: (Reuters) - The International Monetary Fund on Monday approve... http://t.co/ZVU0Ic8K", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:04 +0000", "from_user": "Patrikia_rc", "from_user_id": 273944217, "from_user_id_str": "273944217", "from_user_name": "Patricia Rodriguez", "geo": null, "id": 148824433467994100, "id_str": "148824433467994112", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694788642/IMG00023-20110723-1714_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694788642/IMG00023-20110723-1714_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Dia raruno... En dos semanas volando para Portugal #cambiodeaires", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:04 +0000", "from_user": "VagabonPozitif", "from_user_id": 385136737, "from_user_id_str": "385136737", "from_user_name": "V P", "geo": null, "id": 148824433065332740, "id_str": "148824433065332737", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @Marina107: Rihanna enceinte : Elle fait actuellement le Buzz sur le Net, apres etre aller vomir alors qu'elle donnait un concert au Portugal.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:56 +0000", "from_user": "VinceMalumBono", "from_user_id": 167252296, "from_user_id_str": "167252296", "from_user_name": "Sic semper tyrannis", "geo": null, "id": 148824400135860220, "id_str": "148824400135860224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1560623810/profile_normal.GIF", "profile_image_url_https": "https://si0.twimg.com/profile_images/1560623810/profile_normal.GIF", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:56 +0000", "from_user": "pretty_phace", "from_user_id": 40262423, "from_user_id_str": "40262423", "from_user_name": "None YeaBiz", "geo": null, "id": 148824399238279170, "id_str": "148824399238279168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690698275/fN9mTmwK_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690698275/fN9mTmwK_normal", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Rihanna Racially Assaulted In Portugal http://t.co/MjifL4ky via @thatgrapejuice", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:55 +0000", "from_user": "ScottBrownNz", "from_user_id": 400356734, "from_user_id_str": "400356734", "from_user_name": "Scott Brown", "geo": null, "id": 148824393303330800, "id_str": "148824393303330817", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687406379/downloadfile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687406379/downloadfile_normal.png", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@richardbranson It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/MbySC4dq\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:39 +0000", "from_user": "C_A_Wong", "from_user_id": 238373222, "from_user_id_str": "238373222", "from_user_name": "Carlos Wong", "geo": null, "id": 148824327364673540, "id_str": "148824327364673536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1636685011/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1636685011/image_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @LifeBoxset: Escucha un cover de Portugal. The Man a Gnarls Barkley http://t.co/qYMNEKP9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:36 +0000", "from_user": "carlos_abreu", "from_user_id": 14184369, "from_user_id_str": "14184369", "from_user_name": "carlos_abreu", "geo": null, "id": 148824313489928200, "id_str": "148824313489928195", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera ? 2,9 bilh\\u00F5es para Portugal: Fundo fez segunda avalia\\u00E7\\u00E3o formal sobre situa\\u00E7\\u00E3o dos programas de auste... http://t.co/KR7Ljnmj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:25 +0000", "from_user": "SHADI_ALKASIM", "from_user_id": 31097152, "from_user_id_str": "31097152", "from_user_name": "Shadi Akasim", "geo": null, "id": 148824269260996600, "id_str": "148824269260996608", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1576763391/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576763391/me_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "IMF rescue to Portugal http://t.co/EJQAggIO: http://t.co/zixEWWR2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:22 +0000", "from_user": "vach00", "from_user_id": 200545101, "from_user_id_str": "200545101", "from_user_name": "Victor A.", "geo": null, "id": 148824256334151680, "id_str": "148824256334151680", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1601495701/IMG00199-20111022-1516_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601495701/IMG00199-20111022-1516_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Milenio: FMI aprueba entrega de \\u20AC2 mil 900 millones para Portugal http://t.co/yR5rfUc1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:20 +0000", "from_user": "vach00", "from_user_id": 200545101, "from_user_id_str": "200545101", "from_user_name": "Victor A.", "geo": null, "id": 148824247878422530, "id_str": "148824247878422528", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1601495701/IMG00199-20111022-1516_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601495701/IMG00199-20111022-1516_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"@Milenio: FMI aprueba entrega de \\u20AC2 mil 900 millones para Portugal http://t.co/BsNUi9W7\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:19 +0000", "from_user": "tashjockel", "from_user_id": 308498105, "from_user_id_str": "308498105", "from_user_name": "natasha jockel", "geo": null, "id": 148824245672214530, "id_str": "148824245672214529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1647391525/312622_2570271611849_1106006587_2955835_1625871837_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647391525/312622_2570271611849_1106006587_2955835_1625871837_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "wannna go back to portugal with @BethQuinn95 and make more sychronized swimming routines", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:18 +0000", "from_user": "chico_zeh", "from_user_id": 208491626, "from_user_id_str": "208491626", "from_user_name": "Francisco Kopke", "geo": null, "id": 148824238869057540, "id_str": "148824238869057537", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1399748942/transferir__29__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1399748942/transferir__29__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Bublioteca Portugal entre os maiores clientes de armamento alem\\u00E3o http://t.co/Cub8tFFg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:07 +0000", "from_user": "nazare_th", "from_user_id": 84084091, "from_user_id_str": "84084091", "from_user_name": "nazar\\u00E9 araujo", "geo": null, "id": 148824193276968960, "id_str": "148824193276968961", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1061552399/100_1201_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1061552399/100_1201_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@Harry_Styles_a happy birthday video of the hottest guys in the entire world wishing me.....!!feel free to funfill this one\\nxxOxOxx Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:05 +0000", "from_user": "Kristiane123", "from_user_id": 41213811, "from_user_id_str": "41213811", "from_user_name": "cristiane", "geo": null, "id": 148824183458111500, "id_str": "148824183458111488", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1689540750/natal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689540750/natal_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Navegando no O Fuxico: Rihanna sofre racismo em hotel em Portugal http://t.co/RfEIzE8v", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:03 +0000", "from_user": "paulcbrady", "from_user_id": 110147582, "from_user_id_str": "110147582", "from_user_name": "Paul Brady", "geo": null, "id": 148824178022285300, "id_str": "148824178022285313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/667248217/paulcbrady_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/667248217/paulcbrady_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "VC News: http://t.co/UBPUxMJR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:02 +0000", "from_user": "ViveikaEscobar", "from_user_id": 161042404, "from_user_id_str": "161042404", "from_user_name": "Viveika Escobar ", "geo": null, "id": 148824175006588930, "id_str": "148824175006588930", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1553517046/YO_DE_AZUL_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553517046/YO_DE_AZUL_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @laopinionpanama: Hacinamiento en albergues de migraci\\u00F3n dice defensora del pueblo Patria Portugal. #laopinionpanama", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:52 +0000", "from_user": "CarolinaMaques", "from_user_id": 327786729, "from_user_id_str": "327786729", "from_user_name": "Carolina Marques", "geo": null, "id": 148824131637485570, "id_str": "148824131637485568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1649067206/292700_260473550639813_100000315097749_834083_3081179_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649067206/292700_260473550639813_100000315097749_834083_3081179_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@rihanna Portugal loves you Rihanna!!! You're amazing!!! \"I can't stand how much I love you....\" <3", "to_user": "rihanna", "to_user_id": 79293791, "to_user_id_str": "79293791", "to_user_name": "Rihanna", "in_reply_to_status_id": 148182359810908160, "in_reply_to_status_id_str": "148182359810908160"}, +{"created_at": "Mon, 19 Dec 2011 17:56:51 +0000", "from_user": "HelderSalgueiro", "from_user_id": 93847902, "from_user_id_str": "93847902", "from_user_name": "Helder Salgueiro", "geo": null, "id": 148824125106958340, "id_str": "148824125106958336", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/553118657/Carl_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/553118657/Carl_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "FMI aprovou mais 2,9 mil milh\\u00F5es para Portugal .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:50 +0000", "from_user": "Evelyn785469213", "from_user_id": 405400412, "from_user_id_str": "405400412", "from_user_name": "Evelyn", "geo": null, "id": 148824122183528450, "id_str": "148824122183528448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1623359669/p12_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1623359669/p12_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Portugal Flag Mahogany Wood Pencil Holder: Looking for the perfect office gift for someone who is Portuguese? Yo... http://t.co/MJMSStmn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:38 +0000", "from_user": "FcoCineBoys", "from_user_id": 287808323, "from_user_id_str": "287808323", "from_user_name": "\\u21AFFc Banda CINE\\u21AF ", "geo": null, "id": 148824073378594800, "id_str": "148824073378594817", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1656331799/anigif6_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656331799/anigif6_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "VAMOS PEDIR CINE E PORTUGAL VOU POSTAR 3 RADIOS PROXIMOS TWEETS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:37 +0000", "from_user": "arteh", "from_user_id": 9017782, "from_user_id_str": "9017782", "from_user_name": "ARTEH HOTELS", "geo": null, "id": 148824069628899330, "id_str": "148824069628899328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/184238427/Logo-ARTEH_07_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/184238427/Logo-ARTEH_07_normal.JPG", "source": "<a href="http://twitthat.com/" rel="nofollow">twitthat</a>", "text": "Reading: \"New Year's Eve Package - 2 Nights at Pousada Santa Marinha in Portugal, Douro and Minho, Guimar\\u00E3es\" ( http://t.co/1ckOEW3W )", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:28 +0000", "from_user": "errodeparalaxe", "from_user_id": 47474428, "from_user_id_str": "47474428", "from_user_name": "Pedro d'Azevedo", "geo": null, "id": 148824031624302600, "id_str": "148824031624302593", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1634356635/Moi.jpg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634356635/Moi.jpg_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @JoaoPedroL: esta coisa do Passos mandar o pessoal emigrar quase me d\\u00E1 vontade de voltar para Portugal s\\u00F3 p contrariar.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:25 +0000", "from_user": "ForfexSceleris", "from_user_id": 186630707, "from_user_id_str": "186630707", "from_user_name": "Forfex Sceleris", "geo": null, "id": 148824019343380480, "id_str": "148824019343380480", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1116750726/Happoavvie2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1116750726/Happoavvie2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Portugal pr\\u00F3ximo a llegar a los niveles de Ell\\u00E1da: el FMI aprob\\u00F3 la tercera liberaci\\u00F3n de fondos de \"rescate\": 2,900 mde.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:21 +0000", "from_user": "AsPatas", "from_user_id": 141302387, "from_user_id_str": "141302387", "from_user_name": "As Patas Amigas", "geo": null, "id": 148824000255098880, "id_str": "148824000255098881", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/881415281/AsPatas1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/881415281/AsPatas1_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "PORTUGAL\\nC\\u00E3o-partilhando Mural e CMMs As Patas Amigas, DEN\\u00DANCIAS DE MAUS TRATOS EM SITES e PROTE\\u00C7\\u00C3O AOS ANIMAIS E... http://t.co/rcSysNhR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:18 +0000", "from_user": "Inn_Noticias", "from_user_id": 402328637, "from_user_id_str": "402328637", "from_user_name": "Inn Noticias!", "geo": null, "id": 148823987667996670, "id_str": "148823987667996672", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1679361748/393536_258640917527821_100001457448330_695591_106673463_n__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679361748/393536_258640917527821_100001457448330_695591_106673463_n__1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "El Fondo Monetario Internacional (FMI) aprob\\u00F3 2.900 millones de euros para Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:17 +0000", "from_user": "portugalforum", "from_user_id": 41989700, "from_user_id_str": "41989700", "from_user_name": "portugalforum", "geo": null, "id": 148823985696677900, "id_str": "148823985696677888", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/487842239/pfo_icon_gr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/487842239/pfo_icon_gr_normal.jpg", "source": "<a href="http://www.portugalforum.org" rel="nofollow">portugalforum.org</a>", "text": "Algarve-News: "Estradas de Portugal": Vandalismus erfolglos: Der Autobahnbetreiber \"Estradas de Portugal\" hat http://t.co/NnvUAwZz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:16 +0000", "from_user": "fredcerdeira", "from_user_id": 15835118, "from_user_id_str": "15835118", "from_user_name": "Fred Cerdeira", "geo": null, "id": 148823982060216320, "id_str": "148823982060216320", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1641178692/fredcerdeira_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641178692/fredcerdeira_normal.jpg", "source": "<a href="http://www.publico.pt" rel="nofollow">Publico.pt</a>", "text": "Jazz volta \\u00E0 Pra\\u00E7a da Alegria com reabertura do Hot Clube de Portugal http://t.co/emaiWDMp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:11 +0000", "from_user": "vitriolica", "from_user_id": 77826352, "from_user_id_str": "77826352", "from_user_name": "Vitri\\u00F3lica CORRosiva", "geo": null, "id": 148823957154443260, "id_str": "148823957154443264", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1380712813/twitt-coco3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1380712813/twitt-coco3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jarmigas: Novo lema do Turismo de Portugal: \"V\\u00E1 para fora, n\\u00E3o fique c\\u00E1 dentro\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:11 +0000", "from_user": "DiferentLover", "from_user_id": 273017486, "from_user_id_str": "273017486", "from_user_name": "Tanya", "geo": null, "id": 148823956906983420, "id_str": "148823956906983424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1659557389/Snapshot_20111126_18_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659557389/Snapshot_20111126_18_normal.jpg", "source": "<a href="http://www.twitition.com" rel="nofollow">Twitition</a>", "text": "#Twitition We Want justinbieber in PORTUGAL!!\\u2665 http://t.co/hcqoEH2T", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:09 +0000", "from_user": "STARANDBUCWILD", "from_user_id": 14368437, "from_user_id_str": "14368437", "from_user_name": "Star & Buc Wild", "geo": null, "id": 148823952087715840, "id_str": "148823952087715840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1092079954/STAR___BUC_LOGO_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1092079954/STAR___BUC_LOGO_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Rihanna Goes on Twitter Rant After Racial Abuse in Portugal (Blog) (@Rihanna) http://t.co/3vwZZr96", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:09 +0000", "from_user": "paulocunhavox", "from_user_id": 233292368, "from_user_id_str": "233292368", "from_user_name": "paulo cunha", "geo": null, "id": 148823951454384130, "id_str": "148823951454384128", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1621910172/megafone2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621910172/megafone2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @margvs: RT @especulativa: A Irlanda e a Su\\u00E9cia querem um \"tratado \\u00E0 medida\"; v\\u00E3o negociar, pois. E Portugal, vai assinar de cruz?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:09 +0000", "from_user": "AMGraphix", "from_user_id": 22552350, "from_user_id_str": "22552350", "from_user_name": "Alison Meeks", "geo": null, "id": 148823950498082800, "id_str": "148823950498082817", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/750534406/AlisonPic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/750534406/AlisonPic_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Time to end the war on drugs http://t.co/rFn7RkAz via @virgin Brilliant piece and what a great study Portugal has done over the past 10 yrs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:09 +0000", "from_user": "ThisisRasy", "from_user_id": 220594903, "from_user_id_str": "220594903", "from_user_name": "Reynaldo Hammsworthy", "geo": null, "id": 148823950003159040, "id_str": "148823950003159040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1525080560/street-king-energy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1525080560/street-king-energy_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "VladTV: Rihanna Goes on Twitter Rant After Racial Abuse in Portugal (Blog) (@Rihanna) http://t.co/OoEjVnfp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:00 +0000", "from_user": "diogokoslyk", "from_user_id": 322260909, "from_user_id_str": "322260909", "from_user_name": "D.H Koslyke", "geo": null, "id": 148823913969881100, "id_str": "148823913969881088", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1675147600/05-09-10_1045_001_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675147600/05-09-10_1045_001_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "vou comer um queijo de portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:59 +0000", "from_user": "miley_pt", "from_user_id": 385443661, "from_user_id_str": "385443661", "from_user_name": "MileyxPT", "geo": null, "id": 148823908005576700, "id_str": "148823908005576704", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1596571666/294346_128680593903334_100002841820094_127120_1341520013_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596571666/294346_128680593903334_100002841820094_127120_1341520013_n_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "ESPA\\u00C7O PUBLICIT\\u00C1RIO !\\n1\\u00BA adiram a esta p\\u00E1gina: http://t.co/GNQiIDyt\\n2\\u00BA publiquem esta p\\u00E1gina... http://t.co/hONUaGCb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:50 +0000", "from_user": "jessicacTOMS", "from_user_id": 111070837, "from_user_id_str": "111070837", "from_user_name": "jessica \\u2654", "geo": null, "id": 148823870420434940, "id_str": "148823870420434944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701997357/tumblr_lw8rkcwWKb1qzq5vco1_500_large_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701997357/tumblr_lw8rkcwWKb1qzq5vco1_500_large_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@JanetJealousy it would be awesome if you say Portugal tonight :(", "to_user": "JanetJealousy", "to_user_id": 35469661, "to_user_id_str": "35469661", "to_user_name": "Janet Devlin"}, +{"created_at": "Mon, 19 Dec 2011 17:55:48 +0000", "from_user": "Topblogpop", "from_user_id": 354821020, "from_user_id_str": "354821020", "from_user_name": "Top Pop", "geo": null, "id": 148823863298502660, "id_str": "148823863298502656", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1494590517/tape_pop_logo_tube_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1494590517/tape_pop_logo_tube_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "It Pop: #DescansaRihanna: durante show em Portugal, cantora deixa palco para vomitar: N\\u00E3o tem jeito, Rihanna t\\u00E1 ... http://t.co/0en9qCVN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:48 +0000", "from_user": "hyminameisdh", "from_user_id": 243922611, "from_user_id_str": "243922611", "from_user_name": "N\\u00C3O SOU O DH, bgs ;*", "geo": null, "id": 148823861377499140, "id_str": "148823861377499136", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1232184071/Foto27_reasonably_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1232184071/Foto27_reasonably_small_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#ITPOP #DescansaRihanna: durante show em Portugal, cantora deixa palco para vomitar: N\\u00E3o tem jeito, Rihanna ... http://t.co/J44NnvnR RT!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:48 +0000", "from_user": "tweetsdoalem", "from_user_id": 100270192, "from_user_id_str": "100270192", "from_user_name": "Tweets do Al\\u00E9m!", "geo": null, "id": 148823860928712700, "id_str": "148823860928712704", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/598864912/Sem_t_tulo_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/598864912/Sem_t_tulo_1_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#ITPOP #DescansaRihanna: durante show em Portugal, cantora deixa palco para vomitar: N\\u00E3o tem jeito, Rihanna ... http://t.co/Kj9ktA27 RT!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:47 +0000", "from_user": "VOLKisPOP", "from_user_id": 243919303, "from_user_id_str": "243919303", "from_user_name": "VOLKisPOP", "geo": null, "id": 148823859712372740, "id_str": "148823859712372737", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#ITPOP #DescansaRihanna: durante show em Portugal, cantora deixa palco para vomitar: N\\u00E3o tem jeito, Rihanna ... http://t.co/f3HXbaTh RT!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:36 +0000", "from_user": "rihanna_navy_br", "from_user_id": 359384619, "from_user_id_str": "359384619", "from_user_name": "Rihanna Navy Brasil", "geo": null, "id": 148823812069261300, "id_str": "148823812069261312", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683863366/xmas2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683863366/xmas2_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@Caiosobrinho http://t.co/xaFuwYLC", "to_user": "Caiosobrinho", "to_user_id": 81490173, "to_user_id_str": "81490173", "to_user_name": "Carlos Nogueira", "in_reply_to_status_id": 148822790471028740, "in_reply_to_status_id_str": "148822790471028737"}, +{"created_at": "Mon, 19 Dec 2011 17:55:29 +0000", "from_user": "nealdoyle34", "from_user_id": 28420474, "from_user_id_str": "28420474", "from_user_name": "Neal Doyle", "geo": null, "id": 148823782826590200, "id_str": "148823782826590209", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1666552772/320790_1875868314785_1783533849_1266925_141217897_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666552772/320790_1875868314785_1783533849_1266925_141217897_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Just beat Portugal 6-5 on pens in the QF! Next up is Sweden! The dream is on! #pluckypoles", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:28 +0000", "from_user": "MariaLuis", "from_user_id": 405964342, "from_user_id_str": "405964342", "from_user_name": "Maria Lu\\u00EDs", "geo": null, "id": 148823776950358000, "id_str": "148823776950358016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1624695982/Sem_t_tulo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624695982/Sem_t_tulo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@JessicaLouise1D OMG that's awesomeeeeeeeee!!! :DDD They're not available here in Portugal, but I already have the Dare to Dream ...", "to_user": "JessicaLouise1D", "to_user_id": 246263274, "to_user_id_str": "246263274", "to_user_name": "Jessica Louis(e) ;)", "in_reply_to_status_id": 148822805373399040, "in_reply_to_status_id_str": "148822805373399041"}, +{"created_at": "Mon, 19 Dec 2011 17:55:21 +0000", "from_user": "laopinionpanama", "from_user_id": 376920485, "from_user_id_str": "376920485", "from_user_name": "La Opinion Panama", "geo": null, "id": 148823750572380160, "id_str": "148823750572380162", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696654068/LOGOlaopinion_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696654068/LOGOlaopinion_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Hacinamiento en albergues de migraci\\u00F3n dice defensora del pueblo Patria Portugal. #laopinionpanama", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:21 +0000", "from_user": "JohanOsVenter", "from_user_id": 372738481, "from_user_id_str": "372738481", "from_user_name": "Johan Venter", "geo": null, "id": 148823747967721470, "id_str": "148823747967721472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700597061/SouthParkAvatar2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700597061/SouthParkAvatar2_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @RobVanVuuren: \\u201C@richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/GAWXWizy\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:16 +0000", "from_user": "chuhaizhou", "from_user_id": 312430861, "from_user_id_str": "312430861", "from_user_name": "chuhaizhou", "geo": null, "id": 148823729063993340, "id_str": "148823729063993344", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1452874128/1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1452874128/1_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF to release 2.9b euros to Portugal http://t.co/HFmw0uhf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:03 +0000", "from_user": "ACDN_Produccion", "from_user_id": 366634580, "from_user_id_str": "366634580", "from_user_name": "Acrodance Produccion", "geo": null, "id": 148823675330773000, "id_str": "148823675330772992", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1525157058/A_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1525157058/A_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Un seminario pone en valor el patrimonio musical compartido entre Espa\\u00F1a, Portugal e Iberoam\\u00E9rica http://t.co/j1U0DnUG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:02 +0000", "from_user": "ornebelloni", "from_user_id": 302336119, "from_user_id_str": "302336119", "from_user_name": "ornella belloni", "geo": null, "id": 148823669869781000, "id_str": "148823669869780993", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702581152/je1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702581152/je1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@OctaLescano de portugal (?", "to_user": "OctaLescano", "to_user_id": 353245862, "to_user_id_str": "353245862", "to_user_name": "Octa Lescano", "in_reply_to_status_id": 148823095430496260, "in_reply_to_status_id_str": "148823095430496256"}, +{"created_at": "Mon, 19 Dec 2011 17:54:42 +0000", "from_user": "aboutcentro", "from_user_id": 19910429, "from_user_id_str": "19910429", "from_user_name": "Centro de Portugal", "geo": null, "id": 148823586793205760, "id_str": "148823586793205760", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1079668209/27343_1211652986_4743_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1079668209/27343_1211652986_4743_q_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Publiquei 3 fotos no Facebook no \\u00E1lbum \"Faces of Centro de Portugal!\" http://t.co/H0GK0J0B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:54:39 +0000", "from_user": "Nuria1995", "from_user_id": 268862677, "from_user_id_str": "268862677", "from_user_name": "Nuria de Jong", "geo": null, "id": 148823574847819780, "id_str": "148823574847819777", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1510023763/frederique_20nuria_20hannah_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1510023763/frederique_20nuria_20hannah_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@TimVerel dus we komen jullie niet tegen in spanje/portugal/turkije/cherso?", "to_user": "TimVerel", "to_user_id": 171575875, "to_user_id_str": "171575875", "to_user_name": "Tim", "in_reply_to_status_id": 148819309081272320, "in_reply_to_status_id_str": "148819309081272320"}, +{"created_at": "Mon, 19 Dec 2011 17:54:37 +0000", "from_user": "everybodyslife", "from_user_id": 57664266, "from_user_id_str": "57664266", "from_user_name": "In\\u00EAs Gamb\\u00F4a", "geo": null, "id": 148823563493851140, "id_str": "148823563493851138", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1600908394/mustache_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600908394/mustache_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "1st time @MileyCyrus ever performed #CantBeTamedCD was in Portugal last year :D I was there!!! THE BEST TIME OF MY LIFE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:54:36 +0000", "from_user": "JoaoPedroL", "from_user_id": 19716315, "from_user_id_str": "19716315", "from_user_name": "Joao Pedro L", "geo": null, "id": 148823558964002800, "id_str": "148823558964002816", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1662514413/6822_1120717666113_1472204221_30240566_2730044_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662514413/6822_1120717666113_1472204221_30240566_2730044_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "esta coisa do Passos mandar o pessoal emigrar quase me d\\u00E1 vontade de voltar para Portugal s\\u00F3 p contrariar.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:54:33 +0000", "from_user": "chico_zeh", "from_user_id": 208491626, "from_user_id_str": "208491626", "from_user_name": "Francisco Kopke", "geo": null, "id": 148823547479998460, "id_str": "148823547479998464", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1399748942/transferir__29__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1399748942/transferir__29__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Biblioteca Militares marcaram mais protestos para Dezembro http://t.co/BReJLs53", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:54:25 +0000", "from_user": "Jaeeic", "from_user_id": 440160841, "from_user_id_str": "440160841", "from_user_name": "Jae Dungy", "geo": null, "id": 148823512461750270, "id_str": "148823512461750274", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700456424/large_KMRYGRNLHSCMHJD_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700456424/large_KMRYGRNLHSCMHJD_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Lonely Planet Portugal: Lisbon & Around: Discover Portugal. Includes FREE planning and background information. L... http://t.co/hVk8fJMI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:54:22 +0000", "from_user": "gilesfelipe", "from_user_id": 404945523, "from_user_id_str": "404945523", "from_user_name": "gilesfelipe", "geo": null, "id": 148823502194085900, "id_str": "148823502194085888", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677948176/DSC05994_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677948176/DSC05994_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @MarcioBonJovi: iPhone 4S 16GB \\u2013 desbloqueado \\u2013 Sem contrato\\nEstados Unidos\\u2013R$1.290\\nInglaterra\\u2013R$1.426\\nPortugal\\u2013R$1.510\\nAustr\\u00E1lia\\u2013R$1.470\\nSingapura\\u2013R$1.341", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:54:07 +0000", "from_user": "jordanjax", "from_user_id": 250957352, "from_user_id_str": "250957352", "from_user_name": "Jordan Jakymyshyn", "geo": null, "id": 148823437543092220, "id_str": "148823437543092224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1508010700/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1508010700/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:54:02 +0000", "from_user": "toddynhopegada", "from_user_id": 282761170, "from_user_id_str": "282761170", "from_user_name": "jean carlos", "geo": null, "id": 148823418274459650, "id_str": "148823418274459649", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1560931037/tod_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1560931037/tod_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "feliz demais show marcado dia 2 de janeiro portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:53:59 +0000", "from_user": "pedrolamas", "from_user_id": 12870392, "from_user_id_str": "12870392", "from_user_name": "Pedro Lamas", "geo": null, "id": 148823405951586300, "id_str": "148823405951586304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1524905686/93310b6e-ca24-4863-8f36-0351e3b4e627_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1524905686/93310b6e-ca24-4863-8f36-0351e3b4e627_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "+1 RT @hugoduraes: @majornelson No! I need apps for my xbox live portugal account! At least youtube!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:53:57 +0000", "from_user": "Mtv_Mundial", "from_user_id": 398307681, "from_user_id_str": "398307681", "from_user_name": "MtvMundial", "geo": null, "id": 148823397953044480, "id_str": "148823397953044480", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1606661071/2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606661071/2_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Rihanna Victima de Comentarios Racistas En Portugal\\n\\nRihanna sufri\\u00F3 un por de m\\u00E1s inc\\u00F3modo incidente durante su... http://t.co/TEpNIRKU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:53:53 +0000", "from_user": "NJStocks", "from_user_id": 85607434, "from_user_id_str": "85607434", "from_user_name": "Nicholas Stocks", "geo": null, "id": 148823378235637760, "id_str": "148823378235637760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:53:46 +0000", "from_user": "marisolgarca", "from_user_id": 164964274, "from_user_id_str": "164964274", "from_user_name": "marisol garca", "geo": null, "id": 148823352079941630, "id_str": "148823352079941632", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1066730670/kiooh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1066730670/kiooh_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Milenio: FMI aprueba entrega de \\u20AC2 mil 900 millones para Portugal http://t.co/yR5rfUc1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:53:24 +0000", "from_user": "rwstn", "from_user_id": 315959348, "from_user_id_str": "315959348", "from_user_name": "Robin Weston", "geo": null, "id": 148823259578773500, "id_str": "148823259578773505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1664752120/robin_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664752120/robin_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:53:09 +0000", "from_user": "MsRuthDelgado", "from_user_id": 133048798, "from_user_id_str": "133048798", "from_user_name": "Ruth D\\u2665", "geo": null, "id": 148823197599539200, "id_str": "148823197599539200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1680698875/halloween1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680698875/halloween1_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @vladtv: Rihanna Goes on Twitter Rant After Racial Abuse in Portugal (Blog) (@Rihanna) http://t.co/sRfJp2C4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:53:00 +0000", "from_user": "BAKERYGANG", "from_user_id": 225997316, "from_user_id_str": "225997316", "from_user_name": "DIGITAL PROMOTION", "geo": null, "id": 148823159594958850, "id_str": "148823159594958848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1679041621/389909_2260927008652_1412732067_31960937_1849825482_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679041621/389909_2260927008652_1412732067_31960937_1849825482_n_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#New Rihanna Goes on Twitter Rant After Racial Abuse in Portugal (Blog) (@Rihanna) http://t.co/DDOap3yH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:53:00 +0000", "from_user": "ViralxPromo", "from_user_id": 281761572, "from_user_id_str": "281761572", "from_user_name": "Viral Vinny Vlad ", "geo": null, "id": 148823157745258500, "id_str": "148823157745258497", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1649879642/vladtvtwittericon-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649879642/vladtvtwittericon-1_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Vladtv Rihanna Goes on Twitter Rant After Racial Abuse in Portugal (Blog) (@Rihanna) http://t.co/7RGAWgmm #NK1promo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:53:00 +0000", "from_user": "HipHopandMula", "from_user_id": 195875422, "from_user_id_str": "195875422", "from_user_name": "Hip-Hop And Money", "geo": null, "id": 148823156440825860, "id_str": "148823156440825856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1605109618/Cool-Art-Money-Origami-Paper-Folding-Funny-Head-Hat-05_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1605109618/Cool-Art-Money-Origami-Paper-Folding-Funny-Head-Hat-05_copy_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Rihanna Goes on Twitter Rant After Racial Abuse in Portugal (Blog) (@Rihanna): Rihanna lashed out on Twitter aft... http://t.co/7DRPejEe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:48 +0000", "from_user": "BrittanyEvil", "from_user_id": 261386567, "from_user_id_str": "261386567", "from_user_name": "Brittany S. Pierce \\u221E", "geo": null, "id": 148823108499943420, "id_str": "148823108499943424", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688126064/TES_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688126064/TES_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @KurtMalvado: @BrittanyEvil E ano q vem vamos denovo so q em Portugal ~ Danca ~", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:46 +0000", "from_user": "gabriel_now", "from_user_id": 128724481, "from_user_id_str": "128724481", "from_user_name": "Gabriel", "geo": null, "id": 148823100446879740, "id_str": "148823100446879745", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1679256282/casa-de-cera-2005-11_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679256282/casa-de-cera-2005-11_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @BillboardChart_: RIHANNA \\u00E9 v\\u00EDtima de racismo em hotel de Portugal: http://t.co/qDv67Xnn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:46 +0000", "from_user": "lluzz", "from_user_id": 27940569, "from_user_id_str": "27940569", "from_user_name": "lluz ", "geo": null, "id": 148823097515053060, "id_str": "148823097515053056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1690076591/DSCF8713_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690076591/DSCF8713_2_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @LifeBoxset: Escucha un cover de Portugal. The Man a Gnarls Barkley http://t.co/qYMNEKP9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:45 +0000", "from_user": "JacekWierzbicki", "from_user_id": 270492072, "from_user_id_str": "270492072", "from_user_name": "Black Centaur", "geo": null, "id": 148823095975739400, "id_str": "148823095975739392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1647014814/centaur_logo_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647014814/centaur_logo_1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Tradeweb: Portugal 10Y bond mid-yield: 12.54; Spread v. 10Y German bund 1064.9; down 1.3 bps from prev close #EUGV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:26 +0000", "from_user": "rvoroque", "from_user_id": 418030409, "from_user_id_str": "418030409", "from_user_name": "Rog\\u00E9rio Roque", "geo": null, "id": 148823016904736770, "id_str": "148823016904736768", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1666198052/Vista7_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666198052/Vista7_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ChicodeOeiras: RT @margvs: RT @especulativa: A Irlanda e a Su\\u00E9cia querem um \"tratado \\u00E0 medida\"; v\\u00E3o negociar, pois. E Portugal, vai assinar de cruz?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:23 +0000", "from_user": "rogeriom1", "from_user_id": 344606244, "from_user_id_str": "344606244", "from_user_name": "rogerio mota", "geo": null, "id": 148823001209638900, "id_str": "148823001209638914", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698406093/Lighthouse_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698406093/Lighthouse_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"@Publico: Jazz volta \\u00E0 Pra\\u00E7a da Alegria com reabertura do Hot Clube de Portugal http://t.co/znecfYR0\". Yesssssssssssssssssssssssssssssssss!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:16 +0000", "from_user": "ViitaBix", "from_user_id": 115228011, "from_user_id_str": "115228011", "from_user_name": "Vitaa", "geo": null, "id": 148822973992800260, "id_str": "148822973992800256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1625459878/DSC_0068_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1625459878/DSC_0068_normal.JPG", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "So who wants to go portugal with moi?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 17:52:09 +0000", "from_user": "Tradeweb", "from_user_id": 140896647, "from_user_id_str": "140896647", "from_user_name": "Tradeweb", "geo": null, "id": 148822945467346940, "id_str": "148822945467346944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/878885581/Picture_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/878885581/Picture_2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Portugal 10Y bond mid-yield: 12.54; Spread v. 10Y German bund 1064.9; down 1.3 bps from prev close #EUGV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:09 +0000", "from_user": "jadomingos", "from_user_id": 15917347, "from_user_id_str": "15917347", "from_user_name": "J. A. Domingos", "geo": null, "id": 148822942002843650, "id_str": "148822942002843648", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1599241596/ToniGolfinhos_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599241596/ToniGolfinhos_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@rockaline Daqui de casa \\u00E9 relativamente perto, como estou na parte de cima da Portugal (perto do Delboni) da pra caminhar at\\u00E9 l\\u00E1. ;-)", "to_user": "rockaline", "to_user_id": 43105365, "to_user_id_str": "43105365", "to_user_name": "Aline Fran\\u00E7a ", "in_reply_to_status_id": 148821529680027650, "in_reply_to_status_id_str": "148821529680027648"}, +{"created_at": "Mon, 19 Dec 2011 17:52:08 +0000", "from_user": "DTNSingapore", "from_user_id": 205298307, "from_user_id_str": "205298307", "from_user_name": "DTN Singapore", "geo": null, "id": 148822941189152770, "id_str": "148822941189152770", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1651622761/DTN_SINGAPORE_NOV_22_2011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651622761/DTN_SINGAPORE_NOV_22_2011_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "DTN Singapore: IMF to release 2.9b euros to Portugal: WASHINGTON: The International Monetary Fund said on Monday... http://t.co/obOHdcky", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:08 +0000", "from_user": "worldtradenews", "from_user_id": 115260587, "from_user_id_str": "115260587", "from_user_name": "WorldTradeNews", "geo": null, "id": 148822940258013200, "id_str": "148822940258013184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/702808062/aaaimages_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/702808062/aaaimages_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF to release 2.9b euros to Portugal: WASHINGTON: The International Monetary Fund said on Monday it would relea... http://t.co/S9Fhwzj8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:04 +0000", "from_user": "Milenio", "from_user_id": 24969337, "from_user_id_str": "24969337", "from_user_name": "Milenio.com", "geo": null, "id": 148822921551425540, "id_str": "148822921551425536", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1598220475/MILENIOOK_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598220475/MILENIOOK_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "FMI aprueba entrega de \\u20AC2 mil 900 millones para Portugal http://t.co/yR5rfUc1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:03 +0000", "from_user": "PortugalTopSong", "from_user_id": 347078653, "from_user_id_str": "347078653", "from_user_name": "PortugalTopSong", "geo": null, "id": 148822918137266180, "id_str": "148822918137266176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1527822406/icon080_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1527822406/icon080_normal.png", "source": "<a href="http://wikyou.org/" rel="nofollow">wikyou5</a>", "text": "Hoje hit YouTube v\\u00EDdeo em Portugal.(Today's hit YouTube Video in Portugal.)\\u300CLady GaGa & Beyonc\\u00E9\\u300D's \\u300ETelephone\\u300F http://t.co/jKKwSq9l", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:00 +0000", "from_user": "BethWms", "from_user_id": 29813224, "from_user_id_str": "29813224", "from_user_name": "Bethany Wms(B.TRU)", "geo": null, "id": 148822906091216900, "id_str": "148822906091216896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1483288156/n789009637_723801_9800_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1483288156/n789009637_723801_9800_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @djvlad: Rihanna Goes on Twitter Rant After Racial Abuse in Portugal (Blog) (@Rihanna) http://t.co/SXcFKN79", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:58 +0000", "from_user": "DanielFurrUK", "from_user_id": 139470390, "from_user_id_str": "139470390", "from_user_name": "Daniel Furr", "geo": null, "id": 148822898990252030, "id_str": "148822898990252032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1642060961/269802_10150702532950221_548235220_19556140_2897845_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642060961/269802_10150702532950221_548235220_19556140_2897845_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@Coopster_1991 Indeed. British got has already made plans to evacuate ex pats - if Portugal and Spain sink", "to_user": "Coopster_1991", "to_user_id": 119042055, "to_user_id_str": "119042055", "to_user_name": "Anthony Cooper", "in_reply_to_status_id": 148821727131086850, "in_reply_to_status_id_str": "148821727131086848"}, +{"created_at": "Mon, 19 Dec 2011 17:51:49 +0000", "from_user": "zerovski", "from_user_id": 17485322, "from_user_id_str": "17485322", "from_user_name": "Miguel \\u00C2ngelo", "geo": null, "id": 148822859945480200, "id_str": "148822859945480193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/182701302/zEro_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/182701302/zEro_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "RT @iPhil: RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/Cf577HZ0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:46 +0000", "from_user": "WaguinhoMaia", "from_user_id": 72641774, "from_user_id_str": "72641774", "from_user_name": "Waguinho Maia", "geo": null, "id": 148822849182900220, "id_str": "148822849182900224", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1385773289/0000_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1385773289/0000_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@phillcostaa A sele\\u00E7\\u00E3o da Argentina \\u00E9 100x superior a de Portugal, CR7 joga s\\u00F3, j\\u00E1 Messi tem v\\u00E1rios craques ao seu lado.", "to_user": "phillcostaa", "to_user_id": 237800459, "to_user_id_str": "237800459", "to_user_name": "Phillipy Costa", "in_reply_to_status_id": 148821199336648700, "in_reply_to_status_id_str": "148821199336648704"}, +{"created_at": "Mon, 19 Dec 2011 17:51:28 +0000", "from_user": "bipolarealone", "from_user_id": 90733772, "from_user_id_str": "90733772", "from_user_name": ".", "geo": null, "id": 148822771307266050, "id_str": "148822771307266048", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698138563/__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698138563/__normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Rihanna revela que sofreu racismo em hotel de Portugal http://t.co/JesoRudX VIA : @UOLCelebridades #UOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:23 +0000", "from_user": "BieberFever242", "from_user_id": 100616131, "from_user_id_str": "100616131", "from_user_name": "Jo", "geo": null, "id": 148822749295550460, "id_str": "148822749295550464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1184080637/FotoFlexer_Photo2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1184080637/FotoFlexer_Photo2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rihanna: PORTUGAL tonight was LEGENDARY!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:20 +0000", "from_user": "MauriceFonson", "from_user_id": 69192066, "from_user_id_str": "69192066", "from_user_name": "Maurice", "geo": null, "id": 148822738763657200, "id_str": "148822738763657217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1690133274/Photo_on_2011-11-06_at_12.59_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690133274/Photo_on_2011-11-06_at_12.59_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Rihanna Racially Assaulted In Portugal http://t.co/6HyfWjzt via @thatgrapejuice", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:16 +0000", "from_user": "NinaSandeman", "from_user_id": 179970797, "from_user_id_str": "179970797", "from_user_name": "Carolina Sandeman", "geo": null, "id": 148822719834767360, "id_str": "148822719834767360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1295243586/IMG000023_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1295243586/IMG000023_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@iBieberBreezy lol, I understand how u feel. I'm from Portugal, what about u?", "to_user": "iBieberBreezy", "to_user_id": 113985601, "to_user_id_str": "113985601", "to_user_name": "Annie & le co-owners", "in_reply_to_status_id": 148822277339885570, "in_reply_to_status_id_str": "148822277339885570"}, +{"created_at": "Mon, 19 Dec 2011 17:51:10 +0000", "from_user": "dreamerbeatle", "from_user_id": 126394457, "from_user_id_str": "126394457", "from_user_name": "Dreamer Beatle", "geo": null, "id": 148822698552868860, "id_str": "148822698552868866", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/774920903/JohnLennon107_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/774920903/JohnLennon107_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Escucha un cover de Portugal. The Man a Gnarls Barkley http://t.co/4eu8p8g8 v\\u00EDa @lifeboxset", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:10 +0000", "from_user": "ToyaZolanski", "from_user_id": 37254374, "from_user_id_str": "37254374", "from_user_name": "Fantaradical", "geo": null, "id": 148822694941573120, "id_str": "148822694941573120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668519885/Picture0075_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668519885/Picture0075_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @thatgrapejuice: Rihanna Racially Assaulted In Portugal http://t.co/iwAe32Y3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:08 +0000", "from_user": "MinistryOfSteak", "from_user_id": 167396467, "from_user_id_str": "167396467", "from_user_name": "MinistryOf Steak", "geo": null, "id": 148822689476395000, "id_str": "148822689476395010", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1235564520/wagyu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1235564520/wagyu_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF to release 2.9b euros to Portugal: WASHINGTON: The International Monetary Fund said on Monday it would ... http://t.co/VekKUYeI #CNA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:08 +0000", "from_user": "allmydemo", "from_user_id": 231001548, "from_user_id_str": "231001548", "from_user_name": "demo", "geo": null, "id": 148822687706390530, "id_str": "148822687706390528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF to release 2.9b euros to Portugal: WASHINGTON: The International Monetary Fund said on Monday it would relea... http://t.co/3xLWzOLM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:07 +0000", "from_user": "twitkz", "from_user_id": 39406205, "from_user_id_str": "39406205", "from_user_name": "Khine Zaw", "geo": null, "id": 148822682773884930, "id_str": "148822682773884928", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1224233912/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1224233912/me_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF to release 2.9b euros to Portugal http://t.co/umUZJ5sY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:06 +0000", "from_user": "ToyubommNews", "from_user_id": 138389154, "from_user_id_str": "138389154", "from_user_name": "ToyubommNews", "geo": null, "id": 148822681544962050, "id_str": "148822681544962048", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1142044988/TOYUBOMM_NEWS_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1142044988/TOYUBOMM_NEWS_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF to release 2.9b euros to Portugal http://t.co/ihwZCcex", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:06 +0000", "from_user": "cnalatest", "from_user_id": 38400130, "from_user_id_str": "38400130", "from_user_name": "Channel NewsAsia", "geo": null, "id": 148822678873190400, "id_str": "148822678873190401", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/346940898/App_Home_Logo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/346940898/App_Home_Logo_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF to release 2.9b euros to Portugal http://t.co/uD3vgciO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:04 +0000", "from_user": "SingaporeClub", "from_user_id": 43468679, "from_user_id_str": "43468679", "from_user_name": "Singapore Netizens", "geo": null, "id": 148822672829202430, "id_str": "148822672829202432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/239283745/singlion_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/239283745/singlion_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "CNA - IMF to release 2.9b euros to Portugal: WASHINGTON: The International Monetary Fund said on Monday it would... http://t.co/pBoIw2Yr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:04 +0000", "from_user": "porrahJackson", "from_user_id": 54889447, "from_user_id_str": "54889447", "from_user_name": "MJFan--- SOU DESSES", "geo": null, "id": 148822671566712830, "id_str": "148822671566712833", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1596875686/mjj_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596875686/mjj_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "ESSA TAL DE \"AI SE EU TE PEGO\" \\u00C9 1 LUGAR NA ESPANHA,PORTUGAL, A M\\u00DASICA MAIS BAIXADA NA IT\\u00C1LIA,E J\\u00C1 EST\\u00C1 ENTRANDO NOS EUA E REINO UNIDO.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:02 +0000", "from_user": "MandaFierce", "from_user_id": 32370524, "from_user_id_str": "32370524", "from_user_name": "Amanda Jellyman", "geo": null, "id": 148822662213406720, "id_str": "148822662213406721", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702299901/DSC00401_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702299901/DSC00401_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "wow. f*ckery! RT @thatgrapejuice: Rihanna Racially Assaulted In Portugal http://t.co/ELzg0UGj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:01 +0000", "from_user": "erikwill", "from_user_id": 27313635, "from_user_id_str": "27313635", "from_user_name": "Erik Willey", "geo": null, "id": 148822656832114700, "id_str": "148822656832114688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1531982568/274981_1632875724_517925_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1531982568/274981_1632875724_517925_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:00 +0000", "from_user": "itwitting", "from_user_id": 26276346, "from_user_id_str": "26276346", "from_user_name": "ionline", "geo": null, "id": 148822655632539650, "id_str": "148822655632539649", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/199994060/i_icon150px_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/199994060/i_icon150px_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Alberto Jo\\u00E3o Jardim reconhece \"dif\\u00EDcil di\\u00E1logo com o Estado Central\" http://t.co/eyypUzNF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:00 +0000", "from_user": "anaflparamore", "from_user_id": 417181840, "from_user_id_str": "417181840", "from_user_name": "Ana", "geo": null, "id": 148822654726570000, "id_str": "148822654726569984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1652203313/73789_167795859913817_100000502119120_524922_811379_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652203313/73789_167795859913817_100000502119120_524922_811379_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@rihanna your concert was amazing. Come to Portugal in 2012!", "to_user": "rihanna", "to_user_id": 79293791, "to_user_id_str": "79293791", "to_user_name": "Rihanna", "in_reply_to_status_id": 148182359810908160, "in_reply_to_status_id_str": "148182359810908160"}, +{"created_at": "Mon, 19 Dec 2011 17:50:40 +0000", "from_user": "rihanna_navy_br", "from_user_id": 359384619, "from_user_id_str": "359384619", "from_user_name": "Rihanna Navy Brasil", "geo": null, "id": 148822571297669120, "id_str": "148822571297669120", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683863366/xmas2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683863366/xmas2_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Que raiva desse imbecil que descriminou a RiRi em Portugal,isso n\\u00E3o pode acontecer KD O FBI??? KD MINHA PEGGY SUE???", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:38 +0000", "from_user": "PlanetapopBr", "from_user_id": 422631186, "from_user_id_str": "422631186", "from_user_name": "Planeta Pop", "geo": null, "id": 148822563395616770, "id_str": "148822563395616769", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685254248/planeta_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685254248/planeta_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Not\\u00EDcia: Rihanna revela que foi v\\u00EDtima de racismo em Portugal \\nhttp://t.co/mXQZclWF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:36 +0000", "from_user": "AsLuanaticas_PT", "from_user_id": 246811989, "from_user_id_str": "246811989", "from_user_name": "As Luanaticas PT", "geo": null, "id": 148822554658873340, "id_str": "148822554658873345", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1589478022/366105796_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1589478022/366105796_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Portugal \\u00E9 um gelo queroooo calor", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:36 +0000", "from_user": "luzawantsapony", "from_user_id": 88552340, "from_user_id_str": "88552340", "from_user_name": "Luza", "geo": null, "id": 148822553639649280, "id_str": "148822553639649280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1518191596/blll_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1518191596/blll_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @LifeBoxset: Escucha un cover de Portugal. The Man a Gnarls Barkley http://t.co/qYMNEKP9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:32 +0000", "from_user": "MolinaDiazJean", "from_user_id": 133873394, "from_user_id_str": "133873394", "from_user_name": "\\u2605JEAN CARLOS MOLINA\\u2605", "geo": null, "id": 148822536094879740, "id_str": "148822536094879744", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1665106368/IMG00447_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665106368/IMG00447_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "FMI aprueba 2.900 millones de euros para Portugal http://t.co/h6h2lHk0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:30 +0000", "from_user": "VortexValley", "from_user_id": 223514422, "from_user_id_str": "223514422", "from_user_name": "JD", "geo": null, "id": 148822526691258370, "id_str": "148822526691258368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1184025906/v_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1184025906/v_normal.png", "source": "<a href="http://vortexvalley.com" rel="nofollow">Vortex Valley</a>", "text": "New post: Portugal Re-Discovers Venture Capital http://t.co/TrsMARM4 #news #silicon_valley #Vc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:26 +0000", "from_user": "thatgrapejuice", "from_user_id": 23779565, "from_user_id_str": "23779565", "from_user_name": "Sam GrapeJuice", "geo": null, "id": 148822511310737400, "id_str": "148822511310737411", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1110609893/tgj_logo_newest_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1110609893/tgj_logo_newest_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Rihanna Racially Assaulted In Portugal http://t.co/iwAe32Y3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:25 +0000", "from_user": "Raquelvi1", "from_user_id": 390334280, "from_user_id_str": "390334280", "from_user_name": "Raquelvi", "geo": null, "id": 148822507112247300, "id_str": "148822507112247296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1586918865/DSCN6531_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586918865/DSCN6531_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rihanna: PORTUGAL tonight was LEGENDARY!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:20 +0000", "from_user": "Diamondbling97", "from_user_id": 113922577, "from_user_id_str": "113922577", "from_user_name": "Beatriz \\u20AA \\u00F8 lll .o\\u00B7", "geo": null, "id": 148822485184417800, "id_str": "148822485184417792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1528642009/Eu_no_Campo_Pequeno_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1528642009/Eu_no_Campo_Pequeno_normal.jpg", "source": "<a href="http://twitcam.com" rel="nofollow">Twitcam.com</a>", "text": "not only where you live, in portugal too -.- (@marsismysaviour live on http://t.co/F4Opq4gU)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:15 +0000", "from_user": "ForSaleiAlgarve", "from_user_id": 386105591, "from_user_id_str": "386105591", "from_user_name": "For Sale in Algarve", "geo": null, "id": 148822465005629440, "id_str": "148822465005629440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1575941712/For_Sale_In_Algarve_Twitter_Logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575941712/For_Sale_In_Algarve_Twitter_Logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Beautiful 3 BR, frontline, furnished link villa w pool & gardens ~\\nFor-Sale-in-Algarve ~ #Algarve #Portugal - http://t.co/MLTe2FlC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:14 +0000", "from_user": "ptjornal", "from_user_id": 308993784, "from_user_id_str": "308993784", "from_user_name": "PT Jornal", "geo": null, "id": 148822462036066300, "id_str": "148822462036066304", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1377340800/ptj_tw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1377340800/ptj_tw_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Michel Tel\\u00F3, cantor de \\u2018Ai se eu te pego\\u2019, vem a Portugal em fevereiro http://t.co/POicVkkk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:14 +0000", "from_user": "EekOct31stGeek", "from_user_id": 24475229, "from_user_id_str": "24475229", "from_user_name": "D_was_nefarious", "geo": null, "id": 148822460689694720, "id_str": "148822460689694723", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694820227/316547_889412238842_26106637_40267590_1562515275_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694820227/316547_889412238842_26106637_40267590_1562515275_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Gil coordinates the carnival float every year for my parents town in Portugal, and is amazing! Everything from makeup, hair, costumes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:14 +0000", "from_user": "ChicodeOeiras", "from_user_id": 23011527, "from_user_id_str": "23011527", "from_user_name": "Francisco Silva ", "geo": null, "id": 148822460568051700, "id_str": "148822460568051713", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1633951182/36909_139165652767566_100000223971481_425712_5890440_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633951182/36909_139165652767566_100000223971481_425712_5890440_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @margvs: RT @especulativa: A Irlanda e a Su\\u00E9cia querem um \"tratado \\u00E0 medida\"; v\\u00E3o negociar, pois. E Portugal, vai assinar de cruz?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:14 +0000", "from_user": "ptjornal", "from_user_id": 308993784, "from_user_id_str": "308993784", "from_user_name": "PT Jornal", "geo": null, "id": 148822460513525760, "id_str": "148822460513525760", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1377340800/ptj_tw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1377340800/ptj_tw_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Primeira loja online para g\\u00E9meos criada em Portugal http://t.co/sfsyjg2M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:11 +0000", "from_user": "margvs", "from_user_id": 126118232, "from_user_id_str": "126118232", "from_user_name": "Mariana VdS", "geo": null, "id": 148822450988269570, "id_str": "148822450988269568", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1400915780/2007-04-00__Roma-Napoles__140_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1400915780/2007-04-00__Roma-Napoles__140_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @especulativa: A Irlanda e a Su\\u00E9cia querem um \"tratado \\u00E0 medida\"; v\\u00E3o negociar, pois. E Portugal, vai assinar de cruz? | @scoopit http://t.co/sJypDI88", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:11 +0000", "from_user": "cultura_dfacto", "from_user_id": 130584777, "from_user_id_str": "130584777", "from_user_name": "dfacto", "geo": null, "id": 148822447804792830, "id_str": "148822447804792833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1564548026/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1564548026/twitter_normal.jpg", "source": "<a href="http://www.visibli.com" rel="nofollow">Visibli</a>", "text": "Escucha un cover de Portugal. The Man a Gnarls Barkley http://t.co/P0AJMMqI via: @LifeBoxset", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:10 +0000", "from_user": "MeMePoet", "from_user_id": 206874370, "from_user_id_str": "206874370", "from_user_name": "Mimi Mzari ", "geo": null, "id": 148822444025712640, "id_str": "148822444025712640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1679725684/331078215_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679725684/331078215_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Nahhh zumba is too live. Reminds me of portugal.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:09 +0000", "from_user": "naughtyT", "from_user_id": 23559953, "from_user_id_str": "23559953", "from_user_name": "ton skeel", "geo": null, "id": 148822440179535870, "id_str": "148822440179535874", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1661614414/800ed_MG_1743_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661614414/800ed_MG_1743_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@pawelekg so much good coffee in Portugal. :)", "to_user": "pawelekg", "to_user_id": 133418187, "to_user_id_str": "133418187", "to_user_name": "Pawel Gabrysiewicz", "in_reply_to_status_id": 148822311171145730, "in_reply_to_status_id_str": "148822311171145729"}, +{"created_at": "Mon, 19 Dec 2011 17:50:06 +0000", "from_user": "margvs", "from_user_id": 126118232, "from_user_id_str": "126118232", "from_user_name": "Mariana VdS", "geo": null, "id": 148822426799702000, "id_str": "148822426799702017", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1400915780/2007-04-00__Roma-Napoles__140_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1400915780/2007-04-00__Roma-Napoles__140_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @especulativa: A Irlanda e a Su\\u00E9cia querem um \"tratado \\u00E0 medida\"; v\\u00E3o negociar, pois. E Portugal, vai assinar de cruz?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:06 +0000", "from_user": "SocMeDotMe", "from_user_id": 371995419, "from_user_id_str": "371995419", "from_user_name": "Karl Lingenfelder", "geo": null, "id": 148822426078289920, "id_str": "148822426078289920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1546120426/SocMe_Twitter_Icon_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546120426/SocMe_Twitter_Icon_2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Beautiful 3 BR, frontline, furnished link villa w pool & gardens ~\\nFor-Sale-in-Algarve ~ #Algarve #Portugal - http://t.co/pFaWyEjb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:03 +0000", "from_user": "vanelleza", "from_user_id": 414907590, "from_user_id_str": "414907590", "from_user_name": "Vanessa Romero", "geo": null, "id": 148822415101804540, "id_str": "148822415101804545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1644017368/Vanessa_Romero_003_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644017368/Vanessa_Romero_003_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Escucha un cover de Portugal. The Man a Gnarls Barkley http://t.co/rALIEgjC via: @LifeBoxset", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:03 +0000", "from_user": "viceversa_radio", "from_user_id": 392434930, "from_user_id_str": "392434930", "from_user_name": "viceversa_radio", "geo": null, "id": 148822413830926340, "id_str": "148822413830926336", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1591989617/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591989617/twitter_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Escucha un cover de Portugal. The Man a Gnarls Barkley: \\nLos rockeros originarios de Alaska Portugal. The Man ap... http://t.co/8Mc8SLhW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:02 +0000", "from_user": "tuideagrafica", "from_user_id": 392195414, "from_user_id_str": "392195414", "from_user_name": "TUIDEAGRAFICA.COM", "geo": null, "id": 148822411775721470, "id_str": "148822411775721472", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1591363618/contactologo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591363618/contactologo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprueba 2.900 millones de euros para Portugal http://t.co/Hzyn3Yym #Titulares", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:01 +0000", "from_user": "InfoNews24H", "from_user_id": 398803610, "from_user_id_str": "398803610", "from_user_name": "Noticias24H", "geo": null, "id": 148822409049415680, "id_str": "148822409049415680", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1607780959/mundo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607780959/mundo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprueba 2.900 millones de euros para Portugal http://t.co/8q8WBRvN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:00 +0000", "from_user": "MOVIMIENTO98", "from_user_id": 108182453, "from_user_id_str": "108182453", "from_user_name": "ULA", "geo": null, "id": 148822403194171400, "id_str": "148822403194171392", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/979196180/LOGO_M98_PARA_TWITTER_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/979196180/LOGO_M98_PARA_TWITTER_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#ULA FMI aprueba 2.900 millones de euros para Portugal: El Fondo Monetario Internacional (FMI... http://t.co/UfNvt8sC #FUERALOSVIOLENTOS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:58 +0000", "from_user": "marjuli", "from_user_id": 25573750, "from_user_id_str": "25573750", "from_user_name": "Marjuli Matheus", "geo": null, "id": 148822395917058050, "id_str": "148822395917058048", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1211277650/Marjuli-Matheus_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1211277650/Marjuli-Matheus_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprueba 2.900 millones de euros para Portugal: El Fondo Monetario Internacional (FMI) anunci\\u00F3 este lunes la ... http://t.co/LawZpimQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:57 +0000", "from_user": "jjpark78_Trader", "from_user_id": 256358353, "from_user_id_str": "256358353", "from_user_name": "Jaejin Park", "geo": null, "id": 148822389734653950, "id_str": "148822389734653955", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1252019473/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1252019473/image_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "IMF approves EUR 2.9 disburement to Portugal: Total disbursements to Portugal of EUR 13.6 bln http://t.co/z5G5AnB7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:57 +0000", "from_user": "Info_Ve", "from_user_id": 225647847, "from_user_id_str": "225647847", "from_user_name": "Info Venezuela", "geo": null, "id": 148822388996448260, "id_str": "148822388996448258", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664896061/e96c15f3-8715-4a0f-bb29-eb85ba48bdc2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664896061/e96c15f3-8715-4a0f-bb29-eb85ba48bdc2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprueba 2.900 millones de euros para Portugal http://t.co/zBzQXz9G", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:47 +0000", "from_user": "apombalivre", "from_user_id": 14284888, "from_user_id_str": "14284888", "from_user_name": "Maria Henriques ", "geo": null, "id": 148822349410603000, "id_str": "148822349410603008", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1385521923/6167d29d-8638-41c1-8484-553528e3fc01_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1385521923/6167d29d-8638-41c1-8484-553528e3fc01_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "FMI : terceira tranche de 2,9 mil milh\\u00F5es de empr\\u00E9stimo a Portugal - Isto est\\u00E1 ficar t\\u00E3o bom para os amigos do passos coelho. #apombalivre", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:38 +0000", "from_user": "Magna_rock8", "from_user_id": 323311646, "from_user_id_str": "323311646", "from_user_name": "Magna", "geo": null, "id": 148822309132705800, "id_str": "148822309132705792", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687153292/Mag_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687153292/Mag_normal.JPG", "source": "<a href="http://www.snaptu.com" rel="nofollow">Snaptu</a>", "text": "Rihanna conta que foi v\\u00EDtima de racismo em Portugal http://t.co/WBvO5xcb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:37 +0000", "from_user": "WeFoundLoveRiRi", "from_user_id": 177738439, "from_user_id_str": "177738439", "from_user_name": "Rayan Fenty Adkins", "geo": null, "id": 148822304355393540, "id_str": "148822304355393536", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677769970/rrrrrrrrrrrrihannnnnna_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677769970/rrrrrrrrrrrrihannnnnna_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@Esther_Fenty \\u00E9 verdade, \\u00E9 capaz da Rihanna nem querer volta em Portugal, e os f\\u00E3s \\u00E9 quem sofre!", "to_user": "Esther_Fenty", "to_user_id": 278588512, "to_user_id_str": "278588512", "to_user_name": "I Love You Rihanna ", "in_reply_to_status_id": 148820175821619200, "in_reply_to_status_id_str": "148820175821619200"}, +{"created_at": "Mon, 19 Dec 2011 17:49:30 +0000", "from_user": "pd_twitt", "from_user_id": 121263890, "from_user_id_str": "121263890", "from_user_name": "Portugal Digital", "geo": null, "id": 148822279072120830, "id_str": "148822279072120832", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/741089630/portugaldigital_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/741089630/portugaldigital_twitter_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Portugal Digital - Vodacom vai modernizar rede em Mo\\u00E7ambique http://t.co/G1p7MnrK via @pd_twitt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:30 +0000", "from_user": "rube60", "from_user_id": 364989019, "from_user_id_str": "364989019", "from_user_name": "Rube60", "geo": null, "id": 148822278241660930, "id_str": "148822278241660929", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1521529775/sou_eu_bonitao_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1521529775/sou_eu_bonitao_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Rihanna diz que sofreu racismo em Portugal - Yahoo! OMG! Brasil http://t.co/IHiJOfjz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:22 +0000", "from_user": "conviteavalsa", "from_user_id": 71517035, "from_user_id_str": "71517035", "from_user_name": "Convite \\u00E0 Valsa", "geo": null, "id": 148822244515250180, "id_str": "148822244515250176", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1482726304/tw_8880682_1312723396_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1482726304/tw_8880682_1312723396_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @fcancio: \\u00E9 p\\u00E1s compras d natal e p\\u00F3 champ\\u00E3 RT @DiogoCMoreira: FMI aprova 3a tranche d 2,9 mil milh\\u00F5es do empr\\u00E9stimo a Portugal http://t.co/n7AILFWJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:18 +0000", "from_user": "andreiasnts2", "from_user_id": 404455371, "from_user_id_str": "404455371", "from_user_name": "Imperfeita ? sou sim", "geo": null, "id": 148822228576899070, "id_str": "148822228576899072", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702621248/DSC02564_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702621248/DSC02564_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Dieralisson: Rihanna revelou aqui no twitter que SOFREU RACISMO em hotel de Portugal. http://t.co/iGlrKNmL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:18 +0000", "from_user": "anaflparamore", "from_user_id": 417181840, "from_user_id_str": "417181840", "from_user_name": "Ana", "geo": null, "id": 148822228560134140, "id_str": "148822228560134145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1652203313/73789_167795859913817_100000502119120_524922_811379_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652203313/73789_167795859913817_100000502119120_524922_811379_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rihanna: PORTUGAL tonight was LEGENDARY!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:07 +0000", "from_user": "Jo_nael", "from_user_id": 332679004, "from_user_id_str": "332679004", "from_user_name": "Jonathan Heryanto", "geo": null, "id": 148822181969797120, "id_str": "148822181969797120", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700200299/It_s_20mine_20_C2_B0__CB_86_E3_83_AE_CB_86__E3_80_82_618__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700200299/It_s_20mine_20_C2_B0__CB_86_E3_83_AE_CB_86__E3_80_82_618__normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@RadioShow_tvOne om,, tanyain donk sam coach RD,, si Andik firmansyah,, lebih cocok main d liga indonesia ap d liga portugal?? thx om", "to_user": "RadioShow_tvOne", "to_user_id": 426476514, "to_user_id_str": "426476514", "to_user_name": "RadioShow_tvOne", "in_reply_to_status_id": 148813043625771000, "in_reply_to_status_id_str": "148813043625771008"}, +{"created_at": "Mon, 19 Dec 2011 17:49:07 +0000", "from_user": "SonicUtd", "from_user_id": 234506379, "from_user_id_str": "234506379", "from_user_name": "Shelley moules", "geo": null, "id": 148822179675508740, "id_str": "148822179675508738", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1444386478/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1444386478/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:05 +0000", "from_user": "portugalforum", "from_user_id": 41989700, "from_user_id_str": "41989700", "from_user_name": "portugalforum", "geo": null, "id": 148822170351566850, "id_str": "148822170351566849", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/487842239/pfo_icon_gr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/487842239/pfo_icon_gr_normal.jpg", "source": "<a href="http://www.portugalforum.org" rel="nofollow">portugalforum.org</a>", "text": "Das wahre Leben: aufger\\u00E4umt = schlank: Die Aufr\\u00E4umaktion schreitet sehr gut voran. Es sind nur noch ein paar Kartons http://t.co/r0InVc1b", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:00 +0000", "from_user": "fcancio", "from_user_id": 17624543, "from_user_id_str": "17624543", "from_user_name": "fcancio", "geo": null, "id": 148822153075232770, "id_str": "148822153075232768", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/74883973/obamifernanda_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/74883973/obamifernanda_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\\u00E9 p\\u00E1s compras d natal e p\\u00F3 champ\\u00E3 RT @DiogoCMoreira: FMI aprova 3a tranche d 2,9 mil milh\\u00F5es do empr\\u00E9stimo a Portugal http://t.co/n7AILFWJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:55 +0000", "from_user": "luizmteles", "from_user_id": 259505298, "from_user_id_str": "259505298", "from_user_name": "Luiz Ot\\u00E1vio", "geo": null, "id": 148822129515823100, "id_str": "148822129515823104", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1675243301/Euuu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675243301/Euuu_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Portugu\\u00EAs de Portugal. Hahaha.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:52 +0000", "from_user": "RTPprovedor", "from_user_id": 320860459, "from_user_id_str": "320860459", "from_user_name": "RTPprovedor", "geo": null, "id": 148822116060504060, "id_str": "148822116060504064", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1410870234/Provedor2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1410870234/Provedor2_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Pode ver aqui o \\u00FAltimo VdC sobre a fraca representatividade da m\\u00FAsica portuguesa no programa \\u201CA Voz de Portugal\\u201D http://t.co/UpLytoWt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:39 +0000", "from_user": "pd_twitt", "from_user_id": 121263890, "from_user_id_str": "121263890", "from_user_name": "Portugal Digital", "geo": null, "id": 148822062121750530, "id_str": "148822062121750528", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/741089630/portugaldigital_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/741089630/portugaldigital_twitter_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Portugal Digital - Enotel avan\\u00E7a com expans\\u00E3o do \"resort\" de Porto de Galinhas http://t.co/yQEBWHt3 via @pd_twitt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:28 +0000", "from_user": "economiaportuga", "from_user_id": 91623867, "from_user_id_str": "91623867", "from_user_name": "Economia Portugal", "geo": null, "id": 148822016777125900, "id_str": "148822016777125889", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/537336636/economia_portugal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/537336636/economia_portugal_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprovou mais 2,9 mil milh\\u00F5es para Portugal: O Fundo Monet\\u00E1rio Internacional (FMI) aprovou hoje a terceira tr... http://t.co/46vYr5y1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:27 +0000", "from_user": "Dieralisson", "from_user_id": 23852689, "from_user_id_str": "23852689", "from_user_name": "Alisson F. de Melo", "geo": null, "id": 148822014344429570, "id_str": "148822014344429569", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1667126702/nova212_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667126702/nova212_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Rihanna revelou aqui no twitter que SOFREU RACISMO em hotel de Portugal. http://t.co/iGlrKNmL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:18 +0000", "from_user": "claump25", "from_user_id": 94442272, "from_user_id_str": "94442272", "from_user_name": "Claudia Mtz. Pi\\u00F1eiro", "geo": null, "id": 148821977023516670, "id_str": "148821977023516672", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687409038/SDC12785_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687409038/SDC12785_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @Politica_I24: El FMI aprueba la entrega de 2.900 millones de euros para Portugal http://t.co/0OSuFFsN #Informador24", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:18 +0000", "from_user": "especulativa", "from_user_id": 19564284, "from_user_id_str": "19564284", "from_user_name": "Porf\\u00EDrio Silva", "geo": null, "id": 148821974200762370, "id_str": "148821974200762368", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/405191870/foto-zinha_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/405191870/foto-zinha_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "A Irlanda e a Su\\u00E9cia querem um \"tratado \\u00E0 medida\"; v\\u00E3o negociar, pois. E Portugal, vai assinar de cruz? | @scoopit http://t.co/sJypDI88", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:16 +0000", "from_user": "_vicklimas2", "from_user_id": 164386024, "from_user_id_str": "164386024", "from_user_name": "vick do frist\\u00E9pyh KK", "geo": null, "id": 148821968408420350, "id_str": "148821968408420352", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1665009897/VIIH_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665009897/VIIH_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "VandRei Guess Whos Back (Brusko EXCLUSIVE Remix) (By Maidiotec Portugal) , eu ainda pego musicalidade dessa :$ (yn KKKKKKKK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:10 +0000", "from_user": "DiogoCMoreira", "from_user_id": 20627896, "from_user_id_str": "20627896", "from_user_name": "Diogo Moreira", "geo": null, "id": 148821941158023170, "id_str": "148821941158023168", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1175243760/Twitter_profile_picture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1175243760/Twitter_profile_picture_normal.jpg", "source": "<a href="http://store.apple.com/pt" rel="nofollow">Aplica\\u00E7\\u00E3o TSF - iPhone </a>", "text": "FMI aprova terceira tranche de 2,9 mil milh\\u00F5es do empr\\u00E9stimo a Portugal http://t.co/5xw4rLQS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:56 +0000", "from_user": "helenadias_", "from_user_id": 167064424, "from_user_id_str": "167064424", "from_user_name": "Helena Dias", "geo": null, "id": 148821883243081730, "id_str": "148821883243081728", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1663171277/tmn2_001a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663171277/tmn2_001a_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@davidbisbal Para quando un concerto en Portugal?", "to_user": "davidbisbal", "to_user_id": 57099808, "to_user_id_str": "57099808", "to_user_name": "David Bisbal", "in_reply_to_status_id": 148821596705009660, "in_reply_to_status_id_str": "148821596705009664"}, +{"created_at": "Mon, 19 Dec 2011 17:47:52 +0000", "from_user": "hugoduraes", "from_user_id": 19098080, "from_user_id_str": "19098080", "from_user_name": "Hugo Dur\\u00E3es", "geo": null, "id": 148821866579116030, "id_str": "148821866579116032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1459097668/Avatar_003_th_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1459097668/Avatar_003_th_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@majornelson No! I need apps for my xbox live portugal account! At least youtube!", "to_user": "majornelson", "to_user_id": 15913, "to_user_id_str": "15913", "to_user_name": "Larry Hryb", "in_reply_to_status_id": 148821230869422080, "in_reply_to_status_id_str": "148821230869422081"}, +{"created_at": "Mon, 19 Dec 2011 17:47:44 +0000", "from_user": "rosarinaliriano", "from_user_id": 404652624, "from_user_id_str": "404652624", "from_user_name": "Rosarina Liriano", "geo": null, "id": 148821831510528000, "id_str": "148821831510528002", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1635910813/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635910813/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@AL_Lantigua Y a donde fue Portugal? Gan\\u00F3 la Copa Mundial? Oye, tampoco lo digo yo, lo dicen los expertos de ESPN, FoxSports, FIFA, etc..", "to_user": "AL_Lantigua", "to_user_id": 228377447, "to_user_id_str": "228377447", "to_user_name": "Angel l. lantigua", "in_reply_to_status_id": 148820790987603970, "in_reply_to_status_id_str": "148820790987603968"}, +{"created_at": "Mon, 19 Dec 2011 17:47:36 +0000", "from_user": "pd_twitt", "from_user_id": 121263890, "from_user_id_str": "121263890", "from_user_name": "Portugal Digital", "geo": null, "id": 148821798480392200, "id_str": "148821798480392192", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/741089630/portugaldigital_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/741089630/portugaldigital_twitter_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Portugal Digital - Estudo da USP mostra que atua\\u00E7\\u00E3o da pol\\u00EDcia atinge mais pequenos traficantes http://t.co/cZBE1mXv via @pd_twitt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:30 +0000", "from_user": "afigueiras", "from_user_id": 17681900, "from_user_id_str": "17681900", "from_user_name": "afigueiras", "geo": null, "id": 148821772815433730, "id_str": "148821772815433730", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/65753369/ana_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/65753369/ana_normal.jpeg", "source": "<a href="http://www.publico.pt" rel="nofollow">AutoTweetPublico</a>", "text": "RT @Publico: Morreu Carlos Menezes, pioneiro da guitarra el\\u00E9ctrica em Portugal http://t.co/U8SFwOjE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:26 +0000", "from_user": "nati_ihp", "from_user_id": 58029084, "from_user_id_str": "58029084", "from_user_name": "Nathalia Ara\\u00FAjo.", "geo": null, "id": 148821755090321400, "id_str": "148821755090321408", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1530225977/fofa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1530225977/fofa_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Viajei muito, Portugal, Madrid, Ibiza, Paris, EuroDisney, Biarritz, Rio de Janeiro, Peru\\u00EDbe, Ch\\u00E1caras... Se lhoooooouco :P Foi demais, tudo.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:19 +0000", "from_user": "Coopster_1991", "from_user_id": 119042055, "from_user_id_str": "119042055", "from_user_name": "Anthony Cooper", "geo": null, "id": 148821727131086850, "id_str": "148821727131086848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657606410/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657606410/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@DanielFurrUK Problem is, Spain and Portugal haven't even began to sink yet, that was a hiccup, wait until Santander starts to crumble!", "to_user": "DanielFurrUK", "to_user_id": 139470390, "to_user_id_str": "139470390", "to_user_name": "Daniel Furr", "in_reply_to_status_id": 148821236842102800, "in_reply_to_status_id_str": "148821236842102784"}, +{"created_at": "Mon, 19 Dec 2011 17:47:18 +0000", "from_user": "lareinaeliza", "from_user_id": 185095916, "from_user_id_str": "185095916", "from_user_name": "elizabeth mendes", "geo": null, "id": 148821722362155000, "id_str": "148821722362155008", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1510634402/la_reina_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1510634402/la_reina_normal.JPG", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@sumitoestevez en portugal puro bacalao", "to_user": "sumitoestevez", "to_user_id": 54371392, "to_user_id_str": "54371392", "to_user_name": "Sumito Est\\u00E9vez", "in_reply_to_status_id": 148816278872801280, "in_reply_to_status_id_str": "148816278872801280"}, +{"created_at": "Mon, 19 Dec 2011 17:47:17 +0000", "from_user": "BTRportugal_", "from_user_id": 439572971, "from_user_id_str": "439572971", "from_user_name": "Ana e Marina", "geo": null, "id": 148821721032564740, "id_str": "148821721032564737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699088806/tumblr_lvvb64L4rC1r7769mo1_500_normal.jpg", "profile_image_url_https": null, "source": "<a href="http://twitter.com/">web</a>", "text": "@Joel_Courtney thanks for follwing us :) much love from portugal", "to_user": "Joel_Courtney", "to_user_id": 229702385, "to_user_id_str": "229702385", "to_user_name": "Joel Courtney"}, +{"created_at": "Mon, 19 Dec 2011 17:47:13 +0000", "from_user": "Easynvest", "from_user_id": 72950830, "from_user_id_str": "72950830", "from_user_name": "Corretora de Valores", "geo": null, "id": 148821702296608770, "id_str": "148821702296608769", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1300725538/Logo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1300725538/Logo_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "FMI ir\\u00E1 liberar nova parcela de resgate(EUR2,9Bi) Portugal.A libera\\u00E7\\u00E3o ocorre ap\\u00F3s avalia\\u00E7\\u00E3o do FMI sobre prog d aust fiscal e reformas econ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:09 +0000", "from_user": "honeyrabiosa", "from_user_id": 175819512, "from_user_id_str": "175819512", "from_user_name": "Mel Gel\\u00E9inha", "geo": null, "id": 148821686341472260, "id_str": "148821686341472256", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1675622245/Foto-0265_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675622245/Foto-0265_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "GENTE ARRANJEI UM PRETENDENTE PORTUGUES!!!!!!!!!!!!!!!!! TO VAZANDO PRA PORTUGAL ADIOS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:00 +0000", "from_user": "gerardoruiza", "from_user_id": 17744349, "from_user_id_str": "17744349", "from_user_name": "Gerardo Ruiz", "geo": null, "id": 148821648559177730, "id_str": "148821648559177728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/65842713/IMG_0088_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/65842713/IMG_0088_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:51 +0000", "from_user": "pd_twitt", "from_user_id": 121263890, "from_user_id_str": "121263890", "from_user_name": "Portugal Digital", "geo": null, "id": 148821608356773900, "id_str": "148821608356773888", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/741089630/portugaldigital_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/741089630/portugaldigital_twitter_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Portugal Digital - FMI vai entregar a Portugal 2,9 bilh\\u00F5es de euros, parcela do empr\\u00E9stimo de 78 bilh\\u00F5es http://t.co/KNTm1qxh via @pd_twitt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:50 +0000", "from_user": "Bridgette340", "from_user_id": 242825426, "from_user_id_str": "242825426", "from_user_name": "Bridgette P", "geo": null, "id": 148821607190769660, "id_str": "148821607190769664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1225594175/golf_pic_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225594175/golf_pic_normal", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Lisbon Coast Golf Club: A unique golf experience combining unlimited free golf in Portugal with ownership of a f... http://t.co/R4PR5p5Y", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:50 +0000", "from_user": "Indiee_Go", "from_user_id": 258507838, "from_user_id_str": "258507838", "from_user_name": "Indiee Go", "geo": null, "id": 148821605861179400, "id_str": "148821605861179392", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1371775217/Avatar_pc_twitter_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1371775217/Avatar_pc_twitter_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Mira a PORTUGAL. THE MAN interpretando la canci\\u00F3n CRAZY de Gnarls Barkley en el canal de televisi\\u00F3n Franc\\u00E9s \"Tarata\" http://t.co/2YHOlJnq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:49 +0000", "from_user": "Elneld", "from_user_id": 365682197, "from_user_id_str": "365682197", "from_user_name": "Steven Burnett", "geo": null, "id": 148821601222270980, "id_str": "148821601222270976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1596542267/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596542267/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@richardbranson wow, the facts on Portugal are impressive. With a ten year time line, some great credibility is added.", "to_user": "richardbranson", "to_user_id": 8161232, "to_user_id_str": "8161232", "to_user_name": "richardbranson", "in_reply_to_status_id": 148777479291674620, "in_reply_to_status_id_str": "148777479291674624"}, +{"created_at": "Mon, 19 Dec 2011 17:46:47 +0000", "from_user": "joaosabichao", "from_user_id": 99302979, "from_user_id_str": "99302979", "from_user_name": "Jo\\u00E3o S.", "geo": null, "id": 148821593295036400, "id_str": "148821593295036418", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/591868316/rato_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/591868316/rato_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "2,9 mil milh\\u00F5es de euros para Portugal http://t.co/BiOSDNDa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:45 +0000", "from_user": "pascord", "from_user_id": 18425556, "from_user_id_str": "18425556", "from_user_name": "Panayiotis Skordias", "geo": null, "id": 148821584990314500, "id_str": "148821584990314496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1342410509/takis_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1342410509/takis_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @GinetSosemito: @pascord Portugal Plead with Angola for a Rescue Fund. http://t.co/zN5UUtKR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:43 +0000", "from_user": "Fiatluxnyc", "from_user_id": 204713736, "from_user_id_str": "204713736", "from_user_name": "Fiat Lux NYC", "geo": null, "id": 148821578346528770, "id_str": "148821578346528768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1148920948/here_i_am_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1148920948/here_i_am_normal.jpg", "source": "<a href="http://reuters.com/tools/mobile" rel="nofollow">Thomson Reuters News Pro</a>", "text": "IMF approves 2.9 billion euro tranche to Portugal http://t.co/E4KzbgmD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:34 +0000", "from_user": "Sophia_Cullen", "from_user_id": 23091774, "from_user_id_str": "23091774", "from_user_name": "Sophia Cullen", "geo": null, "id": 148821537632436220, "id_str": "148821537632436224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1250811560/35756_619788477366_60501668_37139608_656229_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1250811560/35756_619788477366_60501668_37139608_656229_n_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "My mum moved to Portugal to be warm. It's about 5 degrees in some of the rooms in my house. Not jokey 5 degrees, ACTUAL 5 degrees. Brrr.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:29 +0000", "from_user": "pd_twitt", "from_user_id": 121263890, "from_user_id_str": "121263890", "from_user_name": "Portugal Digital", "geo": null, "id": 148821518007287800, "id_str": "148821518007287808", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/741089630/portugaldigital_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/741089630/portugaldigital_twitter_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Portugal Digital - Ministro da Educa\\u00E7\\u00E3o vai deixar o governo em janeiro para preparar candidatura http://t.co/FJ8d1Jhf via @pd_twitt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:28 +0000", "from_user": "Mucambocity", "from_user_id": 92757459, "from_user_id_str": "92757459", "from_user_name": "Walter Tenorio", "geo": null, "id": 148821512844099600, "id_str": "148821512844099584", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/551728660/Imagem_0010_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/551728660/Imagem_0010_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "FMI libera 2,9 bilh\\u00F5es de euros para Portugal\\nDi\\u00E1rio do Grande ABC - \\u200Eh\\u00E1 9 minutos\\u200E", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:26 +0000", "from_user": "helecris20", "from_user_id": 49130443, "from_user_id_str": "49130443", "from_user_name": "Helenice", "geo": null, "id": 148821505952849920, "id_str": "148821505952849920", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/352211951/HPIM4839_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/352211951/HPIM4839_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@radiont to triste pq so pode ganhar os premios por tel :(, to em Portugal e nao consigo ligar :((", "to_user": "radiont", "to_user_id": 65435868, "to_user_id_str": "65435868", "to_user_name": "R\\u00E1dio Novo Tempo"}, +{"created_at": "Mon, 19 Dec 2011 17:46:19 +0000", "from_user": "ziptop", "from_user_id": 103858555, "from_user_id_str": "103858555", "from_user_name": "ZipTop", "geo": null, "id": 148821477490298880, "id_str": "148821477490298880", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1486354615/logo_ziptop_facebook_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1486354615/logo_ziptop_facebook_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Rihanna diz ter sido v\\u00EDtima de racismo em hotel de Portugal http://t.co/K5wgl1qS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 17:46:19 +0000", "from_user": "ziptop", "from_user_id": 103858555, "from_user_id_str": "103858555", "from_user_name": "ZipTop", "geo": null, "id": 148821477490298880, "id_str": "148821477490298880", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1486354615/logo_ziptop_facebook_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1486354615/logo_ziptop_facebook_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Rihanna diz ter sido v\\u00EDtima de racismo em hotel de Portugal http://t.co/K5wgl1qS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:15 +0000", "from_user": "pd_twitt", "from_user_id": 121263890, "from_user_id_str": "121263890", "from_user_name": "Portugal Digital", "geo": null, "id": 148821457231806460, "id_str": "148821457231806464", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/741089630/portugaldigital_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/741089630/portugaldigital_twitter_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Portugal Digital - Movimento pol\\u00EDtico portugu\\u00EAs Auditoria Cidad\\u00E3 \\u00E0 D\\u00EDvida P\\u00FAblica anuncia comiss\\u00E3o http://t.co/AweO7MHR via @pd_twitt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:12 +0000", "from_user": "Miichellelove1D", "from_user_id": 332880884, "from_user_id_str": "332880884", "from_user_name": "Michelle Villarroel", "geo": null, "id": 148821444741177340, "id_str": "148821444741177344", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1683443762/El_Yo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683443762/El_Yo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Bailando Noss nossa en las calles de Portugal http://t.co/QOccUVwn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:10 +0000", "from_user": "VaiPassear", "from_user_id": 74717366, "from_user_id_str": "74717366", "from_user_name": "VaiPassear.com", "geo": null, "id": 148821436688117760, "id_str": "148821436688117760", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1179111970/Untitled-4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1179111970/Untitled-4_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "#Turismo #Portugal: Crian\\u00E7as de Vila Real de Santo Ant\\u00F3nio recriam antigas \"Casas de Fogo\" http://t.co/Lh96WPJ9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:09 +0000", "from_user": "VaiPassear", "from_user_id": 74717366, "from_user_id_str": "74717366", "from_user_name": "VaiPassear.com", "geo": null, "id": 148821435194945540, "id_str": "148821435194945537", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1179111970/Untitled-4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1179111970/Untitled-4_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "#Turismo #Portugal: Exposi\\u00E7\\u00E3o: \"O Natal e as Escolas\" no Museu dos Terceiros e na Torre da\\u2026 http://t.co/S8ufb69M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:56 +0000", "from_user": "jumper48", "from_user_id": 36923804, "from_user_id_str": "36923804", "from_user_name": "Jaime Pereira", "geo": null, "id": 148821379091939330, "id_str": "148821379091939330", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/587070682/05_Jaime_2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/587070682/05_Jaime_2_normal.JPG", "source": "<a href="http://www.publico.pt" rel="nofollow">AutoTweetPublico</a>", "text": "RT @Publico: Morreu Carlos Menezes, pioneiro da guitarra el\\u00E9ctrica em Portugal http://t.co/U8SFwOjE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:55 +0000", "from_user": "AnthonyinBA", "from_user_id": 16423026, "from_user_id_str": "16423026", "from_user_name": "Anthony Montalvo", "geo": null, "id": 148821373719035900, "id_str": "148821373719035905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1657015071/Chopper_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657015071/Chopper_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:41 +0000", "from_user": "ForSaleiAlgarve", "from_user_id": 386105591, "from_user_id_str": "386105591", "from_user_name": "For Sale in Algarve", "geo": null, "id": 148821317020434430, "id_str": "148821317020434432", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1575941712/For_Sale_In_Algarve_Twitter_Logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575941712/For_Sale_In_Algarve_Twitter_Logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Apartment for sale in Lagos Albardeira | 1 bedroom ~ For-Sale-in-Algarve ~\\n#Algarve #Portugal - http://t.co/gkGC4qPs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:40 +0000", "from_user": "PeterHeathRMCD", "from_user_id": 414309332, "from_user_id_str": "414309332", "from_user_name": "Peter Heath", "geo": null, "id": 148821312251506700, "id_str": "148821312251506691", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693224627/MEFUP_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693224627/MEFUP_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@Sampinho27 but portugal is spains bit on the side so its ok.", "to_user": "Sampinho27", "to_user_id": 433477418, "to_user_id_str": "433477418", "to_user_name": "Daniel Sampson", "in_reply_to_status_id": 148821152175894530, "in_reply_to_status_id_str": "148821152175894529"}, +{"created_at": "Mon, 19 Dec 2011 17:45:38 +0000", "from_user": "pd_twitt", "from_user_id": 121263890, "from_user_id_str": "121263890", "from_user_name": "Portugal Digital", "geo": null, "id": 148821303808364540, "id_str": "148821303808364544", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/741089630/portugaldigital_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/741089630/portugaldigital_twitter_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Portugal Digital - Sueca Saab abre fal\\u00EAncia http://t.co/CJL5e2Ce via @pd_twitt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:35 +0000", "from_user": "JULIOFGOMEZ", "from_user_id": 347234676, "from_user_id_str": "347234676", "from_user_name": "JULIO GOMEZ ", "geo": null, "id": 148821292219502600, "id_str": "148821292219502592", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "BUENISIMO EQUIPO para amistosos NAVIDAD vs equipo Portugal y Madrid: Tomas, @JosemaMarin @carlosgc15 @Gonzalo13gs @clemente7ito @14Pablito", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:23 +0000", "from_user": "lnockler", "from_user_id": 38334923, "from_user_id_str": "38334923", "from_user_name": "Linda Nockler", "geo": null, "id": 148821239203512320, "id_str": "148821239203512320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670673727/P1040439_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670673727/P1040439_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Via @richardbranson argues for decriminalizing drugs? - the Portugal case http://t.co/iu44tOFc", "to_user": "richardbranson", "to_user_id": 8161232, "to_user_id_str": "8161232", "to_user_name": "richardbranson", "in_reply_to_status_id": 148804022290223100, "in_reply_to_status_id_str": "148804022290223104"}, +{"created_at": "Mon, 19 Dec 2011 17:45:22 +0000", "from_user": "DanielFurrUK", "from_user_id": 139470390, "from_user_id_str": "139470390", "from_user_name": "Daniel Furr", "geo": null, "id": 148821236842102800, "id_str": "148821236842102784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1642060961/269802_10150702532950221_548235220_19556140_2897845_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642060961/269802_10150702532950221_548235220_19556140_2897845_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "EU does not have the enough fire power to rescue Italy; all the bullets have been used on Greece, Portugal, Spain and Ireland", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:22 +0000", "from_user": "Horoscopo_JB_", "from_user_id": 439339520, "from_user_id_str": "439339520", "from_user_name": "Jonas Brothers", "geo": null, "id": 148821235369902080, "id_str": "148821235369902080", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700472794/jonas-brothers-chat-today_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700472794/jonas-brothers-chat-today_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Aries Em que pa\\u00EDs vc passaria o natal com o Kevin Jonas: Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:20 +0000", "from_user": "portalvaleflash", "from_user_id": 234720145, "from_user_id_str": "234720145", "from_user_name": "PORTAL VALEFLASH", "geo": null, "id": 148821227425902600, "id_str": "148821227425902592", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1208312233/logovaleflash_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1208312233/logovaleflash_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I uploaded a @YouTube video http://t.co/TAjQqwsg Portugal Musical Volta ao Mundo Objetivo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:19 +0000", "from_user": "tinimartinez", "from_user_id": 56887698, "from_user_id_str": "56887698", "from_user_name": "Cristina Mart\\u00EDnez", "geo": null, "id": 148821222313050100, "id_str": "148821222313050112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699290051/___normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699290051/___normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@saraaq haha ooh I'm sorry I feel you.. Haha poor portugal! You should say Don't laugh motherfuckers i'll be homecoming queen!!!", "to_user": "saraaq", "to_user_id": 274662219, "to_user_id_str": "274662219", "to_user_name": "Sara Amorim Queiroz", "in_reply_to_status_id": 148800661646090240, "in_reply_to_status_id_str": "148800661646090240"}, +{"created_at": "Mon, 19 Dec 2011 17:45:17 +0000", "from_user": "SocMeDotMe", "from_user_id": 371995419, "from_user_id_str": "371995419", "from_user_name": "Karl Lingenfelder", "geo": null, "id": 148821217300848640, "id_str": "148821217300848640", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1546120426/SocMe_Twitter_Icon_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546120426/SocMe_Twitter_Icon_2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Apartment for sale in Lagos Albardeira | 1 bedroom ~ For-Sale-in-Algarve ~\\n#Algarve #Portugal - http://t.co/l4mE4O1c", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:14 +0000", "from_user": "hivamigos", "from_user_id": 427370290, "from_user_id_str": "427370290", "from_user_name": "HIV Positivo", "geo": null, "id": 148821201870008320, "id_str": "148821201870008320", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684850270/Jaime_111_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684850270/Jaime_111_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera 2,9 bilh\\u00F5es de euros em ajuda para Portugal: Montante integra nova parcela do pacote de 78 bilh\\u00F5es de... http://t.co/apPTD5p7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:09 +0000", "from_user": "exame_mundo", "from_user_id": 146152067, "from_user_id_str": "146152067", "from_user_name": "EXAME Mundo", "geo": null, "id": 148821184207790080, "id_str": "148821184207790080", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/916289263/exame-mundo-twt_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916289263/exame-mundo-twt_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera 2,9 bilh\\u00F5es de euros em ajuda para Portugal http://t.co/XOQnMB9L", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:07 +0000", "from_user": "17Nani_PT", "from_user_id": 440097844, "from_user_id_str": "440097844", "from_user_name": "Nani Portugal F\\u00E3s \\u2665", "geo": null, "id": 148821174825136130, "id_str": "148821174825136128", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700295506/Nani-2011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700295506/Nani-2011_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Um dos v\\u00EDdeos mais bonitos que j\\u00E1 vi, FOR\\u00C7A PORTUGAL: @luisnani @cristiano @RQ7Quaresma @FabioCoentrao @RaulMeireles4 http://t.co/ki6SNQOD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:06 +0000", "from_user": "Mundanal_Ruido", "from_user_id": 398826660, "from_user_id_str": "398826660", "from_user_name": "MundanalRuido", "geo": null, "id": 148821170022645760, "id_str": "148821170022645760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1607831962/Sin_t_tulo-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607831962/Sin_t_tulo-1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Editing new photo from Oporto... and remembering this lovely city! ^_^ http://t.co/6zVXajNh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:06 +0000", "from_user": "pd_twitt", "from_user_id": 121263890, "from_user_id_str": "121263890", "from_user_name": "Portugal Digital", "geo": null, "id": 148821169087315970, "id_str": "148821169087315970", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/741089630/portugaldigital_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/741089630/portugaldigital_twitter_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Portugal Digital - Estimativa de crescimento do PIB brasileiro em 2011 volta a cair http://t.co/HzbpGXRj via @pd_twitt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:51 +0000", "from_user": "NoticiaPortugal", "from_user_id": 279165920, "from_user_id_str": "279165920", "from_user_name": "Noticia de Portugal", "geo": null, "id": 148821108458663940, "id_str": "148821108458663936", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1304690760/Portugal_flag_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1304690760/Portugal_flag_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "El FMI aprueba la entrega de 2.900 millones de euros para Portugal - AFP http://t.co/uprdVWCx #Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:51 +0000", "from_user": "NoticiaPortugal", "from_user_id": 279165920, "from_user_id_str": "279165920", "from_user_name": "Noticia de Portugal", "geo": null, "id": 148821106990653440, "id_str": "148821106990653440", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1304690760/Portugal_flag_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1304690760/Portugal_flag_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "FMI aprueba entrega de 2.900 millones de euros para Portugal - Univisi\\u00F3n http://t.co/vp6ptZa6 #Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:51 +0000", "from_user": "NoticiaPortugal", "from_user_id": 279165920, "from_user_id_str": "279165920", "from_user_name": "Noticia de Portugal", "geo": null, "id": 148821105354878980, "id_str": "148821105354878976", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1304690760/Portugal_flag_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1304690760/Portugal_flag_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Rihanna: ovacianada en Espa\\u00F1a y pifiada en Portugal (Ver Video) - http://t.co/vtrM13ou http://t.co/S6X674wj #Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:43 +0000", "from_user": "Wgolfchallenge", "from_user_id": 393049720, "from_user_id_str": "393049720", "from_user_name": "World Golf Challenge", "geo": null, "id": 148821071611695100, "id_str": "148821071611695105", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1593593366/twitt_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593593366/twitt_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Um dos elementos da Nevada Bob's Golf Portugal, a equipa vice-campe\\u00E3 da etapa Algarvia do World Corporate Golf... http://t.co/w3N3mm3a", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:40 +0000", "from_user": "MsMonica_", "from_user_id": 93873983, "from_user_id_str": "93873983", "from_user_name": "Monica Fernandes", "geo": null, "id": 148821061146910720, "id_str": "148821061146910720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1654504939/MsMonica__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654504939/MsMonica__normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@caramelcrumble still in London. Leaving for Portugal in the am", "to_user": "caramelcrumble", "to_user_id": 24461927, "to_user_id_str": "24461927", "to_user_name": "IGOTFIVEONIT", "in_reply_to_status_id": 148818308148371460, "in_reply_to_status_id_str": "148818308148371457"}, +{"created_at": "Mon, 19 Dec 2011 17:44:40 +0000", "from_user": "pd_twitt", "from_user_id": 121263890, "from_user_id_str": "121263890", "from_user_name": "Portugal Digital", "geo": null, "id": 148821059980886000, "id_str": "148821059980886016", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/741089630/portugaldigital_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/741089630/portugaldigital_twitter_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Portugal Digital - Portugal volta a ter saldo positivo no com\\u00E9rcio com o Brasil http://t.co/CPwe80Y5 via @pd_twitt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:23 +0000", "from_user": "fc_meuanjooLS", "from_user_id": 335396585, "from_user_id_str": "335396585", "from_user_name": "fc luan meu anjoo ", "geo": null, "id": 148820989810184200, "id_str": "148820989810184192", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698932486/luan__noel_reasonably_small__1__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698932486/luan__noel_reasonably_small__1__normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "#C\\u00E2ncer : Onde voce e o Luan passariam a lua de mel ? Em Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:20 +0000", "from_user": "Alexey_Kashkov", "from_user_id": 276148209, "from_user_id_str": "276148209", "from_user_name": "\\u2655Mr.Theonegentleman\\u2655", "geo": null, "id": 148820977646698500, "id_str": "148820977646698496", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1553418261/2__2__12_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553418261/2__2__12_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @finanztreff_de: [#Ticker ] Internationaler W\\u00E4hrungsfonds (IWF) gibt 2,9 Milliarden Euro f\\u00FCr Portugal frei: WASHINGTON (dpa-AFX) ... http://t.co/hVMzV0nN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:16 +0000", "from_user": "dearlow", "from_user_id": 133878862, "from_user_id_str": "133878862", "from_user_name": "tev", "geo": null, "id": 148820960345202700, "id_str": "148820960345202688", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692664174/snapshot-31_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692664174/snapshot-31_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u00E7a bosta \\u00E9 da espanha meu e n\\u00E3o de portugal como meu pai disse", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:11 +0000", "from_user": "mundohoteles", "from_user_id": 275120590, "from_user_id_str": "275120590", "from_user_name": "Mundo Hoteles", "geo": null, "id": 148820940162211840, "id_str": "148820940162211840", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://www.bravenewcode.com/products/wordtwit" rel="nofollow">WordTwit Plugin</a>", "text": "Portugal: Balaia Mar Hotel Albufeira - http://t.co/57xA2ejZ #Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:09 +0000", "from_user": "VintageTeatime", "from_user_id": 219804630, "from_user_id_str": "219804630", "from_user_name": "Vintage Teatime", "geo": null, "id": 148820931043799040, "id_str": "148820931043799040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1591425612/IMG01100-20111016-1920_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591425612/IMG01100-20111016-1920_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@IAm_LisaBent I bet I know what special Bajan curse word she used haha!! I must admit my hold in Portugal weren't great for that reason :(", "to_user": "IAm_LisaBent", "to_user_id": 62907861, "to_user_id_str": "62907861", "to_user_name": "LISA BENT"}, +{"created_at": "Mon, 19 Dec 2011 17:43:56 +0000", "from_user": "HMSFlyingFox", "from_user_id": 244801671, "from_user_id_str": "244801671", "from_user_name": "HMS Flying Fox ", "geo": null, "id": 148820878103293950, "id_str": "148820878103293952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1241546488/ffox_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1241546488/ffox_logo_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @GreyFunnelLine: Government is drawing up emergency plans to send the #RoyalNavy to evacuate British ex-pats from Spain and Portugal. http://t.co/Z4S9qb7E", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:56 +0000", "from_user": "kira8419", "from_user_id": 392106987, "from_user_id_str": "392106987", "from_user_name": "\\u041A\\u0438\\u0440\\u0430", "geo": null, "id": 148820875578314750, "id_str": "148820875578314752", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1648666975/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648666975/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "Macau, \\u6FB3\\u9580.Located across the Pearl River estuary fr HK, until 1999 Macau was an overseas territory of Portugal.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:55 +0000", "from_user": "caracoq", "from_user_id": 344592915, "from_user_id_str": "344592915", "from_user_name": "vanti", "geo": null, "id": 148820872025735170, "id_str": "148820872025735169", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1542898131/203102_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542898131/203102_1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Fonds mon\\u00E9taire international a annonc\\u00E9 lundi avoir approuv\\u00E9 un versement de 2,9 milliards d'euros au Portugal, troisi\\u00E8me tranche d'un pr\\u00EAt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:47 +0000", "from_user": "Meaganwtg", "from_user_id": 440194594, "from_user_id_str": "440194594", "from_user_name": "Meagan Russow", "geo": null, "id": 148820836948779000, "id_str": "148820836948779010", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700533599/large_teresa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700533599/large_teresa_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Consumer Credit in Portugal: IntroductionThis databook provides insights into consumer credit in Portugal, cover... http://t.co/TRa1XPAj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:46 +0000", "from_user": "visitportugal", "from_user_id": 66740930, "from_user_id_str": "66740930", "from_user_name": "visitportugal", "geo": null, "id": 148820834566414340, "id_str": "148820834566414336", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1119226997/LogoTurismodePortugal_PNG_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1119226997/LogoTurismodePortugal_PNG_normal.png", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "Tap Portugal: December Chef was Henrique S\\u00E1 Pessoa \\n#Portugal #tap #food #chef\\n http://t.co/MXMKmcXC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:29 +0000", "from_user": "entertainmentsg", "from_user_id": 106675316, "from_user_id_str": "106675316", "from_user_name": "MSNSGEntertainment", "geo": null, "id": 148820763103854600, "id_str": "148820763103854593", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Rihanna blasts racist hotel guest: Rihanna was horrified when a fellow hotel guest in Lisbon, Portugal, insulted... http://t.co/5itpIUmL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:27 +0000", "from_user": "elsuba", "from_user_id": 80915978, "from_user_id_str": "80915978", "from_user_name": "Jonatan D Atenodoro", "geo": null, "id": 148820754639753200, "id_str": "148820754639753216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693828104/MolotovTwitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693828104/MolotovTwitter_normal.png", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@LifeBoxset: Escucha un cover de Portugal. The Man a Gnarls Barkley http://t.co/yunclGRA \\u00AB-- @jiony_", "to_user": "LifeBoxset", "to_user_id": 14792927, "to_user_id_str": "14792927", "to_user_name": "LifeBoxset.com"}, +{"created_at": "Mon, 19 Dec 2011 17:43:20 +0000", "from_user": "gercimonteiro", "from_user_id": 211617562, "from_user_id_str": "211617562", "from_user_name": "gerci monteiro", "geo": null, "id": 148820726135275520, "id_str": "148820726135275520", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1167219673/mascara_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1167219673/mascara_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @arykara: FMI libera 2,9 bi de euros para Portugal: \\n \\n http://t.co/TCb19psJ // Lembrem-se que eles tinham recusado a ajuda", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:17 +0000", "from_user": "SarangGyu", "from_user_id": 226278178, "from_user_id_str": "226278178", "from_user_name": "Patricia", "geo": null, "id": 148820711153209340, "id_str": "148820711153209344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1643861651/19062009282_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643861651/19062009282_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Vinya85 uhhhhhh i love aquariums. was in portugal in a huge one *O*", "to_user": "Vinya85", "to_user_id": 212965143, "to_user_id_str": "212965143", "to_user_name": "\\uAE40\\uC0C1\\uBBF8", "in_reply_to_status_id": 148820486925725700, "in_reply_to_status_id_str": "148820486925725699"}, +{"created_at": "Mon, 19 Dec 2011 17:43:14 +0000", "from_user": "modismonet", "from_user_id": 76110190, "from_user_id_str": "76110190", "from_user_name": "ModismoNet", "geo": null, "id": 148820700545818620, "id_str": "148820700545818624", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/953579094/boca-nova-reduced_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/953579094/boca-nova-reduced_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Rihanna \\u00E9 v\\u00EDtima de racismo em Portugal http://t.co/xE0dXC53", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:12 +0000", "from_user": "lasillarota", "from_user_id": 152358615, "from_user_id_str": "152358615", "from_user_name": "El Equipo ", "geo": null, "id": 148820693692321800, "id_str": "148820693692321792", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1455713472/fotosilla_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1455713472/fotosilla_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "#FMI participa en los planes de #rescate de Grecia, Irlanda y Portugal http://t.co/H09i8bOn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:09 +0000", "from_user": "thejaimecorex", "from_user_id": 80157579, "from_user_id_str": "80157579", "from_user_name": "duh,", "geo": null, "id": 148820677598785540, "id_str": "148820677598785536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1672239167/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672239167/image_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @LifeBoxset: Escucha un cover de Portugal. The Man a Gnarls Barkley http://t.co/qYMNEKP9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:07 +0000", "from_user": "VictoriaBarret", "from_user_id": 84648166, "from_user_id_str": "84648166", "from_user_name": "Victoria Barret", "geo": null, "id": 148820671840006140, "id_str": "148820671840006144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/649093869/VBdotcomphoto2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/649093869/VBdotcomphoto2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:07 +0000", "from_user": "pezpops", "from_user_id": 56365476, "from_user_id_str": "56365476", "from_user_name": "Perrie Manning", "geo": null, "id": 148820670099370000, "id_str": "148820670099369984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1306480286/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1306480286/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:06 +0000", "from_user": "JoaoPedroL", "from_user_id": 19716315, "from_user_id_str": "19716315", "from_user_name": "Joao Pedro L", "geo": null, "id": 148820665036840960, "id_str": "148820665036840961", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1662514413/6822_1120717666113_1472204221_30240566_2730044_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662514413/6822_1120717666113_1472204221_30240566_2730044_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@Publico: FMI aprova tranche de 2,9 mil milh\\u00F5es de euros para Portugal http://t.co/Adh6cVOi\\u201D YAY!!!!!!!! -.-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:56 +0000", "from_user": "algarvenews", "from_user_id": 46595968, "from_user_id_str": "46595968", "from_user_name": "Algarve-News", "geo": null, "id": 148820622775029760, "id_str": "148820622775029760", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/259703172/bild3_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/259703172/bild3_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\"Estradas de Portugal\": Vandalismus erfolglos: Der Autobahnbetreiber \"Estradas de Portugal\" hat heute betont, da... http://t.co/NdoqgDIz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:55 +0000", "from_user": "algarvenews", "from_user_id": 46595968, "from_user_id_str": "46595968", "from_user_name": "Algarve-News", "geo": null, "id": 148820619763523600, "id_str": "148820619763523585", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/259703172/bild3_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/259703172/bild3_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\"Estradas de Portugal\": Vandalismus erfolglos http://t.co/1Xc36Oob", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:40 +0000", "from_user": "Laceygge", "from_user_id": 430057552, "from_user_id_str": "430057552", "from_user_name": "Lacey Asberry", "geo": null, "id": 148820557960458240, "id_str": "148820557960458240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677541366/0enq2s451a_134543035_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677541366/0enq2s451a_134543035_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Baedeker's Portugal (AA Baedeker's): A revised and updated guide to Portugal. The book, accompanied by a free ma... http://t.co/my3klL1h", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:24 +0000", "from_user": "maggotks_", "from_user_id": 248278593, "from_user_id_str": "248278593", "from_user_name": "Raphaela com PH!", "geo": null, "id": 148820492088913920, "id_str": "148820492088913920", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694849648/Foto0122_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694849648/Foto0122_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Nossa, ganhei 3 followers de Portugal :3 genteeee ><", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:23 +0000", "from_user": "trustdrewbieber", "from_user_id": 214007222, "from_user_id_str": "214007222", "from_user_name": "\\u2714Justin Bieber fans", "geo": null, "id": 148820485508038660, "id_str": "148820485508038656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674828644/cats_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674828644/cats_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @Ritasoeima11: @onedirection please come to Portugal. Here in Portugal there are lots of your fans. Gotta be you ... http://t.co/NzEczgST", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:18 +0000", "from_user": "HulkMetidao", "from_user_id": 257279062, "from_user_id_str": "257279062", "from_user_name": "Hulk de Oculos", "geo": null, "id": 148820463601205250, "id_str": "148820463601205248", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1254379042/cospobre-papelao_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1254379042/cospobre-papelao_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera 2,9 bi de euros para Portugal http://t.co/qoE8isLx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:17 +0000", "from_user": "DicasdeDinheiro", "from_user_id": 256502586, "from_user_id_str": "256502586", "from_user_name": "Dicas pra Voc\\u00EA", "geo": null, "id": 148820461210439680, "id_str": "148820461210439680", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1252303264/Profile_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1252303264/Profile_normal.jpeg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera 2,9 bi de euros para Portugal http://t.co/g1eHOfsG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:16 +0000", "from_user": "sbb", "from_user_id": 1149, "from_user_id_str": "1149", "from_user_name": "Stephen Bronstein", "geo": null, "id": 148820456105979900, "id_str": "148820456105979905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/136278066/3417345482_c8943d31e1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/136278066/3417345482_c8943d31e1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:12 +0000", "from_user": "Neil_Hambly", "from_user_id": 126324468, "from_user_id_str": "126324468", "from_user_name": "Neil Hambly", "geo": null, "id": 148820438003355650, "id_str": "148820438003355650", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1531541391/5513032c-b6d7-400c-a06c-75fbe776cc69_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1531541391/5513032c-b6d7-400c-a06c-75fbe776cc69_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\"@jenstirrup: Fancy a #sqlpass event in Portugal? Take a look at #sqlsat115 in Lisbon! #sqlserver http://t.co/xhSeJwMn\" > Week before #105", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:11 +0000", "from_user": "RSSpravaler", "from_user_id": 438638127, "from_user_id_str": "438638127", "from_user_name": "RSS pra valer!", "geo": null, "id": 148820437508431870, "id_str": "148820437508431873", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697113193/Inside-rss-256_normal.png", "profile_image_url_https": null, "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera 2,9 bi de euros para Portugal: A libera\\u00E7\\u00E3o ocorre depois de uma segunda avalia\\u00E7\\u00E3o formal feita pelo ... http://t.co/jqys88Eu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:07 +0000", "from_user": "MindOfSona", "from_user_id": 63393111, "from_user_id_str": "63393111", "from_user_name": "Fred Sona", "geo": null, "id": 148820418038480900, "id_str": "148820418038480898", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691434622/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691434622/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:03 +0000", "from_user": "dedTree", "from_user_id": 350272619, "from_user_id_str": "350272619", "from_user_name": "dedTree", "geo": null, "id": 148820400552415230, "id_str": "148820400552415232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1482816849/dedTree_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1482816849/dedTree_normal.jpg", "source": "<a href="http://drop.local/LiveTweet/" rel="nofollow">dedTreeLive</a>", "text": "[2 minutes ago] Somebody from #Portugal bought the #book 'Prince of the Blood' from http://t.co/uDryAlBd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:02 +0000", "from_user": "Battyho", "from_user_id": 42224809, "from_user_id_str": "42224809", "from_user_name": "Battyho", "geo": +{"coordinates": [51.4943,0.0122], "type": "Point"}, "id": 148820399365431300, "id_str": "148820399365431296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1586977371/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586977371/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@richardbranson I'm a strong believer in decriminalisation, but constant drug offers I had on the streets of Portugal tell a different story", "to_user": "richardbranson", "to_user_id": 8161232, "to_user_id_str": "8161232", "to_user_name": "richardbranson", "in_reply_to_status_id": 148804022290223100, "in_reply_to_status_id_str": "148804022290223104"}, +{"created_at": "Mon, 19 Dec 2011 17:41:55 +0000", "from_user": "JornalOJE", "from_user_id": 127881632, "from_user_id_str": "127881632", "from_user_name": "O Jornal Econ\\u00F3mico", "geo": null, "id": 148820367547432960, "id_str": "148820367547432961", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/785767199/LOGO-OJE_Site_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/785767199/LOGO-OJE_Site_normal.jpg", "source": "<a href="http://tarpipe.com/" rel="nofollow">tarpipe</a>", "text": "FMI aprovou terceira tranche do empr\\u00E9stimo a Portugal http://t.co/tMdNUjdH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:48 +0000", "from_user": "havenforhiphop", "from_user_id": 305823669, "from_user_id_str": "305823669", "from_user_name": "thehiphopgiftshop", "geo": null, "id": 148820339407855600, "id_str": "148820339407855617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681175648/thhgsalbumcover3layer12_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681175648/thhgsalbumcover3layer12_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @djvlad: Rihanna Goes on Twitter Rant After Racial Abuse in Portugal (Blog) (@Rihanna) http://t.co/SXcFKN79", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:38 +0000", "from_user": "computerartspt", "from_user_id": 192979775, "from_user_id_str": "192979775", "from_user_name": "ComputerArtsPortugal", "geo": null, "id": 148820298932813820, "id_str": "148820298932813824", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1400489661/Computer-arts_logo-01_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1400489661/Computer-arts_logo-01_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "10 Maneiras de se divertir mais no seu dia-a-dia no trabalho | Computer Arts Portugal http://t.co/UGm9zTWF via @computerartspt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:34 +0000", "from_user": "zpravycz", "from_user_id": 283501843, "from_user_id_str": "283501843", "from_user_name": "Zpr\\u00E1vy", "geo": null, "id": 148820280234614800, "id_str": "148820280234614785", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1314666047/internet-news-reader_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1314666047/internet-news-reader_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Brusel podez\\u00EDr\\u00E1 Brussels Airlines a TAP Portugal z kartelu: Antimonopoln\\u00ED \\u00FA\\u0159ady Evropsk\\u00E9 unie minul\\u00FD t\\u00FDden provedly... #Doprava_a_logistika", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:33 +0000", "from_user": "LALOIVEY", "from_user_id": 88301268, "from_user_id_str": "88301268", "from_user_name": "Stelio Kontos", "geo": null, "id": 148820275264368640, "id_str": "148820275264368640", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1585912657/IMG000033_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585912657/IMG000033_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Nunca podr\\u00E9 ser el Portugal. The Man del siglo.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:30 +0000", "from_user": "feriasportugal", "from_user_id": 28986334, "from_user_id_str": "28986334", "from_user_name": "Ferias em Portugal", "geo": null, "id": 148820263579025400, "id_str": "148820263579025409", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/222116509/background_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/222116509/background_twitter_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Ajuda-nos a conseguir mais F\\u00E3s! Partilha a p\\u00E1gina do F\\u00E9rias em Portugal com os teus amigos. Obrigado!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:25 +0000", "from_user": "renanviana100", "from_user_id": 440966267, "from_user_id_str": "440966267", "from_user_name": "renan viana da silva", "geo": null, "id": 148820244302004220, "id_str": "148820244302004225", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "e gente passei de ano e vou viajar amanha para Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:14 +0000", "from_user": "andreiasft", "from_user_id": 157094446, "from_user_id_str": "157094446", "from_user_name": "Andreia ", "geo": null, "id": 148820197590048770, "id_str": "148820197590048768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1564306764/IMGP2531_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1564306764/IMGP2531_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rihanna: PORTUGAL tonight was LEGENDARY!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:12 +0000", "from_user": "artbard0", "from_user_id": 162334379, "from_user_id_str": "162334379", "from_user_name": "Zden\\u011Bk Kricner", "geo": null, "id": 148820190237425660, "id_str": "148820190237425666", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1394664689/vector_eyes_copy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1394664689/vector_eyes_copy_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Brusel podez\\u00EDr\\u00E1 Brussels Airlines a TAP Portugal z kartelu: Antimonopoln\\u00ED \\u00FA\\u0159ady Evropsk\\u00E9 unie minul\\u00FD t\\u00FDden prove... http://t.co/qo3hgRrE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:12 +0000", "from_user": "Javlin36", "from_user_id": 355181194, "from_user_id_str": "355181194", "from_user_name": "Javlin 36", "geo": null, "id": 148820190078054400, "id_str": "148820190078054400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1640321006/SL272722_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640321006/SL272722_normal.JPG", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @vladtv: Rihanna Goes on Twitter Rant After Racial Abuse in Portugal (Blog) (@Rihanna) http://t.co/sRfJp2C4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:09 +0000", "from_user": "DanielRincoon", "from_user_id": 230975782, "from_user_id_str": "230975782", "from_user_name": "Daniel Rinc\\u00F3n", "geo": null, "id": 148820175913885700, "id_str": "148820175913885696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1671866115/313111_2357026002815_1165183286_32238399_857823025_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671866115/313111_2357026002815_1165183286_32238399_857823025_n_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @LifeBoxset: Escucha un cover de Portugal. The Man a Gnarls Barkley http://t.co/qYMNEKP9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:09 +0000", "from_user": "Esther_Fenty", "from_user_id": 278588512, "from_user_id_str": "278588512", "from_user_name": "I Love You Rihanna ", "geo": null, "id": 148820175821619200, "id_str": "148820175821619200", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702107984/normal_0012_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702107984/normal_0012_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@WeFoundLoveRiRi n\\u00E3o \\u00E9 a Rihanna que vai causar uma m\\u00E1 impress\\u00E3o em Portugal \\u00E9 os portugueses que v\\u00E3o causar m\\u00E1 impress\\u00E3o!!!", "to_user": "WeFoundLoveRiRi", "to_user_id": 177738439, "to_user_id_str": "177738439", "to_user_name": "Rayan Fenty Adkins"}, +{"created_at": "Mon, 19 Dec 2011 17:40:59 +0000", "from_user": "HRihanna", "from_user_id": 46898209, "from_user_id_str": "46898209", "from_user_name": "Rihanna", "geo": null, "id": 148820134084100100, "id_str": "148820134084100096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1250083230/rihsem51_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1250083230/rihsem51_normal.gif", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "bhaktimla Rihanna Goes on Twitter Rant After Racial Abuse in Portugal (Blog) (@Rihanna) http://t.co/ZrH6iibz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:58 +0000", "from_user": "InfoPriv", "from_user_id": 57702464, "from_user_id_str": "57702464", "from_user_name": "InfoPrivilegiada \\u221A", "geo": null, "id": 148820130770583550, "id_str": "148820130770583552", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/354288460/informa__o_privilegiada_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/354288460/informa__o_privilegiada_logo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Ultimas - Luz verde \\u00E0 terceira tranche de 2,9 mil milh\\u00F5es de euros para Portugal: \\n\\n\\n\\n\\t\\nO Fundo Monet\\u00E1rio Intern... http://t.co/EALjljEA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:57 +0000", "from_user": "HRihanna", "from_user_id": 46898209, "from_user_id_str": "46898209", "from_user_name": "Rihanna", "geo": null, "id": 148820127402569730, "id_str": "148820127402569728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1250083230/rihsem51_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1250083230/rihsem51_normal.gif", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "djvlad Rihanna Goes on Twitter Rant After Racial Abuse in Portugal (Blog) (@Rihanna) http://t.co/ZDWr2kPp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:56 +0000", "from_user": "theREALryancoe", "from_user_id": 299215702, "from_user_id_str": "299215702", "from_user_name": "Ryan Coe", "geo": null, "id": 148820120729427970, "id_str": "148820120729427969", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1355025373/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1355025373/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:56 +0000", "from_user": "MichelleAlcaras", "from_user_id": 420390082, "from_user_id_str": "420390082", "from_user_name": "Michelle Alcaras", "geo": null, "id": 148820119966068740, "id_str": "148820119966068736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1655537787/Michelle_Alcaras_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655537787/Michelle_Alcaras_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF releases 2.9 bn euros to Portugal: WASHINGTON\\u00A0- The International Monetary Fund said Monday it would release... http://t.co/eF9iSc9R", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:55 +0000", "from_user": "johnmendoza69", "from_user_id": 413011463, "from_user_id_str": "413011463", "from_user_name": "john mendoza ", "geo": null, "id": 148820118699393020, "id_str": "148820118699393024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1640170037/john_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640170037/john_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF releases 2.9 bn euros to Portugal: WASHINGTON\\u00A0- The International Monetary Fund said Monday it would release... http://t.co/coecH8FO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:54 +0000", "from_user": "KaterineMosca", "from_user_id": 413516150, "from_user_id_str": "413516150", "from_user_name": "Katherine Mosca", "geo": null, "id": 148820112269508600, "id_str": "148820112269508609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1641925321/Ronajoy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641925321/Ronajoy_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF releases 2.9 bn euros to Portugal: WASHINGTON\\u00A0- The International Monetary Fund said Monday it would release... http://t.co/gQQfFwIX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:53 +0000", "from_user": "froydsky", "from_user_id": 151380544, "from_user_id_str": "151380544", "from_user_name": "Bryan Lloyd", "geo": null, "id": 148820107676745730, "id_str": "148820107676745728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/955616566/23103_100000171143618_5653_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/955616566/23103_100000171143618_5653_q_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF releases 2.9 bn euros to Portugal: WASHINGTON\\u00A0- The International Monetary Fund said Monday it would release... http://t.co/kk5tcZpj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:53 +0000", "from_user": "nicholascruz230", "from_user_id": 404093709, "from_user_id_str": "404093709", "from_user_name": "nicholas cruz", "geo": null, "id": 148820106548486140, "id_str": "148820106548486144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1624891048/sexy_asian_guy153_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624891048/sexy_asian_guy153_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF releases 2.9 bn euros to Portugal: WASHINGTON\\u00A0- The International Monetary Fund said Monday it would release... http://t.co/fr5Aso5w", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:52 +0000", "from_user": "codypark230", "from_user_id": 404012388, "from_user_id_str": "404012388", "from_user_name": "cody park", "geo": null, "id": 148820104740745200, "id_str": "148820104740745216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1627711322/Ahn-So-Hee-06_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627711322/Ahn-So-Hee-06_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF releases 2.9 bn euros to Portugal: WASHINGTON\\u00A0- The International Monetary Fund said Monday it would release... http://t.co/9lMaHQ6K", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:51 +0000", "from_user": "JinkyCasa", "from_user_id": 403843840, "from_user_id_str": "403843840", "from_user_name": "Jinky Casa", "geo": null, "id": 148820101196562430, "id_str": "148820101196562432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1619817200/rona_penaredondo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619817200/rona_penaredondo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF releases 2.9 bn euros to Portugal: WASHINGTON\\u00A0- The International Monetary Fund said Monday it would release... http://t.co/5G0MrrOi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:51 +0000", "from_user": "HilariFalcon", "from_user_id": 404219839, "from_user_id_str": "404219839", "from_user_name": "Hilari Falcon", "geo": null, "id": 148820099283959800, "id_str": "148820099283959808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1620658810/Hilari_Falcon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620658810/Hilari_Falcon_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF releases 2.9 bn euros to Portugal: WASHINGTON\\u00A0- The International Monetary Fund said Monday it would release... http://t.co/etWMoFco", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:50 +0000", "from_user": "DrJuanMontero", "from_user_id": 395993583, "from_user_id_str": "395993583", "from_user_name": "Dr. Juan Montero", "geo": null, "id": 148820097794973700, "id_str": "148820097794973697", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1601131598/Juan_Montero_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601131598/Juan_Montero_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF releases 2.9 bn euros to Portugal: WASHINGTON\\u00A0- The International Monetary Fund said Monday it would release... http://t.co/LH1BSU2F", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:50 +0000", "from_user": "yojocsalev", "from_user_id": 384092453, "from_user_id_str": "384092453", "from_user_name": "Rona Joy Velasco", "geo": null, "id": 148820096415051780, "id_str": "148820096415051776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1570349577/zel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1570349577/zel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF releases 2.9 bn euros to Portugal: WASHINGTON\\u00A0- The International Monetary Fund said Monday it would release... http://t.co/DZmPxL56", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:50 +0000", "from_user": "beatcenter", "from_user_id": 16029650, "from_user_id_str": "16029650", "from_user_name": "Manila Rising", "geo": null, "id": 148820094166892540, "id_str": "148820094166892545", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1569257244/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1569257244/images_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF releases 2.9 bn euros to Portugal http://t.co/U9qeI8ba #philippines", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:47 +0000", "from_user": "gmanewstvbrk", "from_user_id": 41785272, "from_user_id_str": "41785272", "from_user_name": "GMA News TV", "geo": null, "id": 148820084171870200, "id_str": "148820084171870208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/224477577/gmanewstvlogo_without_beta_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/224477577/gmanewstvlogo_without_beta_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF releases 2.9 bn euros to Portugal: WASHINGTON\\u00A0- The International Monetary Fund said Monday it would release... http://t.co/1gz5GqgV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:46 +0000", "from_user": "GinetSosemito", "from_user_id": 236374122, "from_user_id_str": "236374122", "from_user_name": "Ginet Sosemito", "geo": null, "id": 148820078505361400, "id_str": "148820078505361408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697149760/Twitter_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697149760/Twitter_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "While Portugal's Economy is expected to contract 1.9 percent this year & 2.8 percent in 2012, oil-producing Angola's", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:44 +0000", "from_user": "Heck_yeahSwag", "from_user_id": 406489144, "from_user_id_str": "406489144", "from_user_name": "Tylen_Marcus_Carter", "geo": null, "id": 148820072796917760, "id_str": "148820072796917760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679982176/FNOCAM94LBLCAFT1DZECA4GW5VRCAN57XHICAV34EP6CA5AEDIWCAUZS0ZBCALXUF5JCAFG13RFCASJMX4XCA2XJF0TCANTF9QDCA49CFGGCAOAV21MCAWS4E25CACX81JMCAQ9H3B3CANRZVK5CAMHVU01_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679982176/FNOCAM94LBLCAFT1DZECA4GW5VRCAN57XHICAV34EP6CA5AEDIWCAUZS0ZBCALXUF5JCAFG13RFCASJMX4XCA2XJF0TCANTF9QDCA49CFGGCAOAV21MCAWS4E25CACX81JMCAQ9H3B3CANRZVK5CAMHVU01_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Rihanna Goes on Twitter Rant After Racial Abuse in Portugal (Blog) (@Rihanna) http://t.co/AhjLzFoH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:40 +0000", "from_user": "PORDATA", "from_user_id": 87460291, "from_user_id_str": "87460291", "from_user_name": "PORDATA", "geo": null, "id": 148820055520591870, "id_str": "148820055520591872", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/712636420/pordataicon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/712636420/pordataicon_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Sabiam que em 2010 por cada 100 casamentos ocorreram 69 div\\u00F3rcios, 28 mil dos quais de casamentos cat\\u00F3licos? http://t.co/iOq3SKB2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:33 +0000", "from_user": "TheSelenatorBoy", "from_user_id": 183790645, "from_user_id_str": "183790645", "from_user_name": "Boy Selenator", "geo": null, "id": 148820025862668300, "id_str": "148820025862668288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700292224/tumblr_lvehhjboli1qc3ngpo1_500_large_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700292224/tumblr_lvehhjboli1qc3ngpo1_500_large_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@TheGomezing nice name :) nice to meet you too. I'm from Portugal and you?", "to_user": "TheGomezing", "to_user_id": 383167241, "to_user_id_str": "383167241", "to_user_name": "Selenator . \\u03DF", "in_reply_to_status_id": 148819917578313730, "in_reply_to_status_id_str": "148819917578313728"}, +{"created_at": "Mon, 19 Dec 2011 17:40:31 +0000", "from_user": "ady33", "from_user_id": 22628797, "from_user_id_str": "22628797", "from_user_name": "adrian bezuidenhout", "geo": null, "id": 148820014919712770, "id_str": "148820014919712768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/290839155/PIC-0040_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/290839155/PIC-0040_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:30 +0000", "from_user": "bhaktimla", "from_user_id": 375476343, "from_user_id_str": "375476343", "from_user_name": "#TeamSWAG \\u263A", "geo": null, "id": 148820012612861950, "id_str": "148820012612861952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1548035324/tumblr_laan1vOjop1qaiez3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1548035324/tumblr_laan1vOjop1qaiez3_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Rihanna Goes on Twitter Rant After Racial Abuse in Portugal (Blog) (@Rihanna) http://t.co/fRDRtnDz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:26 +0000", "from_user": "djvlad", "from_user_id": 18088038, "from_user_id_str": "18088038", "from_user_name": "DJ Vlad - VladTV.com", "geo": null, "id": 148819994455715840, "id_str": "148819994455715841", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1658602282/slkdfj_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658602282/slkdfj_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Rihanna Goes on Twitter Rant After Racial Abuse in Portugal (Blog) (@Rihanna) http://t.co/SXcFKN79", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:15 +0000", "from_user": "JayPeaFranco", "from_user_id": 28203468, "from_user_id_str": "28203468", "from_user_name": "Juan Pablo Franco", "geo": null, "id": 148819949987708930, "id_str": "148819949987708928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1678054371/av_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678054371/av_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:13 +0000", "from_user": "AgentTwenty3", "from_user_id": 380602110, "from_user_id_str": "380602110", "from_user_name": "Agent Twenty3", "geo": null, "id": 148819941473259520, "id_str": "148819941473259520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1579115978/copkick_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1579115978/copkick_normal.gif", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @NathanTrout: Do you believe there is some merit in moving resources from drug enforcement to treatment, following Portugal's example? #askmetboss", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:07 +0000", "from_user": "SocMeDotMe", "from_user_id": 371995419, "from_user_id_str": "371995419", "from_user_name": "Karl Lingenfelder", "geo": null, "id": 148819914596163600, "id_str": "148819914596163585", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1546120426/SocMe_Twitter_Icon_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546120426/SocMe_Twitter_Icon_2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Villa for sale in Lagoa Carvoeiro | 3 bedrooms ~ For-Sale-in-Algarve ~\\n#Algarve #Portugal - http://t.co/OFW1U1aG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:05 +0000", "from_user": "LifeBoxset", "from_user_id": 14792927, "from_user_id_str": "14792927", "from_user_name": "LifeBoxset.com", "geo": null, "id": 148819906073337860, "id_str": "148819906073337856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1179549843/lb-logo-02_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1179549843/lb-logo-02_normal.png", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "Escucha un cover de Portugal. The Man a Gnarls Barkley http://t.co/qYMNEKP9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 17:40:13 +0000", "from_user": "AgentTwenty3", "from_user_id": 380602110, "from_user_id_str": "380602110", "from_user_name": "Agent Twenty3", "geo": null, "id": 148819941473259520, "id_str": "148819941473259520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1579115978/copkick_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1579115978/copkick_normal.gif", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @NathanTrout: Do you believe there is some merit in moving resources from drug enforcement to treatment, following Portugal's example? #askmetboss", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:07 +0000", "from_user": "SocMeDotMe", "from_user_id": 371995419, "from_user_id_str": "371995419", "from_user_name": "Karl Lingenfelder", "geo": null, "id": 148819914596163600, "id_str": "148819914596163585", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1546120426/SocMe_Twitter_Icon_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546120426/SocMe_Twitter_Icon_2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Villa for sale in Lagoa Carvoeiro | 3 bedrooms ~ For-Sale-in-Algarve ~\\n#Algarve #Portugal - http://t.co/OFW1U1aG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:05 +0000", "from_user": "LifeBoxset", "from_user_id": 14792927, "from_user_id_str": "14792927", "from_user_name": "LifeBoxset.com", "geo": null, "id": 148819906073337860, "id_str": "148819906073337856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1179549843/lb-logo-02_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1179549843/lb-logo-02_normal.png", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "Escucha un cover de Portugal. The Man a Gnarls Barkley http://t.co/qYMNEKP9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:01 +0000", "from_user": "patologica", "from_user_id": 34328312, "from_user_id_str": "34328312", "from_user_name": "L\\u00EDgia Rodrigues", "geo": null, "id": 148819891569434620, "id_str": "148819891569434624", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1442201742/Pluma_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1442201742/Pluma_normal.jpg", "source": "<a href="http://www.publico.pt" rel="nofollow">AutoTweetPublico</a>", "text": "RT @Publico: Jazz volta \\u00E0 Pra\\u00E7a da Alegria com reabertura do Hot Clube de Portugal http://t.co/ldu142ND", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:01 +0000", "from_user": "karaquistan", "from_user_id": 379366649, "from_user_id_str": "379366649", "from_user_name": "Cronica Karaquistan", "geo": null, "id": 148819889119957000, "id_str": "148819889119956992", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670081157/wallpaper-1476428_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670081157/wallpaper-1476428_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "FMI aprueba 2.900 millones de euros para Portugal http://t.co/8oAoGRja", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:39:38 +0000", "from_user": "JesseniaVice", "from_user_id": 22886497, "from_user_id_str": "22886497", "from_user_name": "Jessenia Vice", "geo": null, "id": 148819793733107700, "id_str": "148819793733107712", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662940221/JesseniaVice_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662940221/JesseniaVice_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Hola si! Mandame un email :)Saludos RT @BootyliciousInk: @JesseniaVice Ola...hace muy tiempo! Soi Joaquin de Portugal. Te recuerdas?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:39:36 +0000", "from_user": "A_Felgueiras", "from_user_id": 347293550, "from_user_id_str": "347293550", "from_user_name": "Antoine de Carvalho", "geo": null, "id": 148819785570975740, "id_str": "148819785570975745", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1474460369/big.115249973_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1474460369/big.115249973_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Romuald Peiser, le fran\\u00E7ais de l'Academica Coimbra parle de la Liga Zon Sagres #Portugal http://t.co/Xoe32D9T", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:39:36 +0000", "from_user": "Erlinelhg", "from_user_id": 431703307, "from_user_id_str": "431703307", "from_user_name": "Tiny Tesseyman", "geo": null, "id": 148819785122185200, "id_str": "148819785122185216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681039822/large_A8KLHMBCQBAQ_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681039822/large_A8KLHMBCQBAQ_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Spain and Portugal: Handbook for travellers,: http://t.co/EmYzTQ53", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:39:30 +0000", "from_user": "Phareo_", "from_user_id": 394166613, "from_user_id_str": "394166613", "from_user_name": "AirForce1", "geo": null, "id": 148819760384188400, "id_str": "148819760384188416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700438462/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700438462/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@RelloSlaySum: @Phareo_ In Portugal\\u201D I'm in that bih!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:39:26 +0000", "from_user": "Rihannafire", "from_user_id": 314256359, "from_user_id_str": "314256359", "from_user_name": "amanda ", "geo": null, "id": 148819742701010940, "id_str": "148819742701010944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1601747506/tumblr_lso1a5tx1P1qewmu6o1_500_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601747506/tumblr_lso1a5tx1P1qewmu6o1_500_normal.gif", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Video: Rihanna runs off stage to vomit during the show in Portugal? http://t.co/ra7QCH0J", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:39:16 +0000", "from_user": "portugalforum", "from_user_id": 41989700, "from_user_id_str": "41989700", "from_user_name": "portugalforum", "geo": null, "id": 148819702116925440, "id_str": "148819702116925440", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/487842239/pfo_icon_gr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/487842239/pfo_icon_gr_normal.jpg", "source": "<a href="http://www.portugalforum.org" rel="nofollow">portugalforum.org</a>", "text": "Goethe-Institut: Seminar: 16.-17.12.2011, Seminar mit Siegfried Zielinski: Siegfried Zielinski hat an der Universit\\u00E4t http://t.co/4LT85VYZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:39:15 +0000", "from_user": "Alonso_HdezR", "from_user_id": 162074655, "from_user_id_str": "162074655", "from_user_name": "Alonso Hernandez", "geo": null, "id": 148819698757279740, "id_str": "148819698757279744", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1476362952/1c7dac88-95c1-41fc-a15f-7cea23b6cf46_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1476362952/1c7dac88-95c1-41fc-a15f-7cea23b6cf46_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprueba entrega de \\u20AC2 mil 900 millones para Portugal: El Consejo de Administraci\\u00F3n dio luz verde para desblo... http://t.co/cN3K1lbW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:39:14 +0000", "from_user": "jneves_guitar", "from_user_id": 314124132, "from_user_id_str": "314124132", "from_user_name": "juceli neves", "geo": null, "id": 148819693896077300, "id_str": "148819693896077313", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1495325796/jnn_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1495325796/jnn_copy_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Recaptulando os pa\\u00EDses com f\\u00E3s da BC, dados do pr\\u00F3prio facebook: ESTADOS UNIDOS, ITALIA, PORTUGAL, ESPANHA,... http://t.co/nVRiuPG9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:39:13 +0000", "from_user": "Merk2Noticias", "from_user_id": 369560072, "from_user_id_str": "369560072", "from_user_name": "Noticias", "geo": null, "id": 148819687386517500, "id_str": "148819687386517504", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1541053277/marketing_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541053277/marketing_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprueba entrega de \\u20AC2 mil 900 millones para Portugal: El Consejo de Administraci\\u00F3n dio luz verde para desblo... http://t.co/Bml3XahN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:39:11 +0000", "from_user": "theNickSparks", "from_user_id": 34105393, "from_user_id_str": "34105393", "from_user_name": "Nick Sparks", "geo": null, "id": 148819678804979700, "id_str": "148819678804979712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1336903312/209499_1524048281562_1845282397_903181_2715978_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1336903312/209499_1524048281562_1845282397_903181_2715978_o_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:39:09 +0000", "from_user": "NickBEnd", "from_user_id": 17683421, "from_user_id_str": "17683421", "from_user_name": "NickBEnd", "geo": null, "id": 148819673583063040, "id_str": "148819673583063040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1192809752/cropped_headshot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1192809752/cropped_headshot_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:39:07 +0000", "from_user": "philipswiki", "from_user_id": 424647654, "from_user_id_str": "424647654", "from_user_name": "martin", "geo": null, "id": 148819665622282240, "id_str": "148819665622282240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Lonely Planet By the Seat of My Pants (Anthology) Review http://t.co/3UowVPhn #lonelyplanet #travel", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:38:49 +0000", "from_user": "GinetSosemito", "from_user_id": 236374122, "from_user_id_str": "236374122", "from_user_name": "Ginet Sosemito", "geo": null, "id": 148819587113304060, "id_str": "148819587113304064", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697149760/Twitter_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697149760/Twitter_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Portugal PM: Angolan capital welcome in privatisations http://t.co/Z2R2UDE8 via @reuters", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:38:47 +0000", "from_user": "G_L", "from_user_id": 17637572, "from_user_id_str": "17637572", "from_user_name": "G_L", "geo": null, "id": 148819578628214800, "id_str": "148819578628214784", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1624642887/motor_homebxa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624642887/motor_homebxa_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Vamos levar com mais uma tranche RT @Publico: FMI aprova tranche de 2,9 mil milh\\u00F5es de euros para Portugal http://t.co/56nVOWni", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:38:32 +0000", "from_user": "AdrianoCastros", "from_user_id": 44439512, "from_user_id_str": "44439512", "from_user_name": "Adriano Castro", "geo": null, "id": 148819515772379140, "id_str": "148819515772379136", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/253152910/NANO___BIA_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/253152910/NANO___BIA_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera parcela de 2,9 bilh\\u00F5es de euros de aux\\u00EDlio a Portugal http://t.co/Q4aoNCOh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:38:31 +0000", "from_user": "NCMBusiness", "from_user_id": 386745150, "from_user_id_str": "386745150", "from_user_name": "Narciso Machado", "geo": null, "id": 148819514086268930, "id_str": "148819514086268929", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1577282898/logosemfundo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1577282898/logosemfundo_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera parcela de 2,9 bilh\\u00F5es de euros de aux\\u00EDlio a Portugal #NCMBusiness", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:38:18 +0000", "from_user": "Kclap420", "from_user_id": 393448829, "from_user_id_str": "393448829", "from_user_name": "Kieran Clapham", "geo": null, "id": 148819456523632640, "id_str": "148819456523632640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686183769/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686183769/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@campilla27 man portugal ain't worth it I've seen it all, I still have a lot to explore in skyrim", "to_user": "campilla27", "to_user_id": 318014567, "to_user_id_str": "318014567", "to_user_name": "cam pilla", "in_reply_to_status_id": 148819010211954700, "in_reply_to_status_id_str": "148819010211954688"}, +{"created_at": "Mon, 19 Dec 2011 17:38:17 +0000", "from_user": "ACritica", "from_user_id": 44446850, "from_user_id_str": "44446850", "from_user_name": "Portal A Cr\\u00EDtica", "geo": null, "id": 148819454669758460, "id_str": "148819454669758464", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1530329028/twitter_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1530329028/twitter_avatar_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "FMI libera 2,9 bi de euros para Portugal http://t.co/S5xeTKmj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:38:13 +0000", "from_user": "ACritica", "from_user_id": 44446850, "from_user_id_str": "44446850", "from_user_name": "Portal A Cr\\u00EDtica", "geo": null, "id": 148819439192784900, "id_str": "148819439192784896", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1530329028/twitter_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1530329028/twitter_avatar_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "FMI aprova entrega de 2,9 bi de euros para Portugal http://t.co/mapfPDRE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:38:12 +0000", "from_user": "P_Economia", "from_user_id": 113683334, "from_user_id_str": "113683334", "from_user_name": "P\\u00FAblico|Economia", "geo": null, "id": 148819433341730800, "id_str": "148819433341730816", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/705988307/Picture-1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/705988307/Picture-1_normal.png", "source": "<a href="http://www.publico.pt" rel="nofollow">AutoTweetPublico</a>", "text": "FMI aprova tranche de 2,9 mil milh\\u00F5es de euros para Portugal http://t.co/8eObAiTN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:38:10 +0000", "from_user": "WildannFikri", "from_user_id": 109836640, "from_user_id_str": "109836640", "from_user_name": "\\u0428\\u0406\\u013F\\u018A\\u039B\\u039D \\u0191I\\u049ARI \\u047C", "geo": null, "id": 148819423770329100, "id_str": "148819423770329088", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1658604810/Image14_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658604810/Image14_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@sarahaida memang mcm tu la dia real life kot. ish you dh pegi sana en. npk patung wax i? dia pakai jersey portugal number 7?", "to_user": "sarahaida", "to_user_id": 33546257, "to_user_id_str": "33546257", "to_user_name": "Sarah Aida", "in_reply_to_status_id": 148818257737031680, "in_reply_to_status_id_str": "148818257737031681"}, +{"created_at": "Mon, 19 Dec 2011 17:38:02 +0000", "from_user": "irinaportugal18", "from_user_id": 441032449, "from_user_id_str": "441032449", "from_user_name": "Irina Alves", "geo": null, "id": 148819391042166800, "id_str": "148819391042166784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@rihanna I loved the concert in Portugal! It was amazing!", "to_user": "rihanna", "to_user_id": 79293791, "to_user_id_str": "79293791", "to_user_name": "Rihanna"}, +{"created_at": "Mon, 19 Dec 2011 17:38:01 +0000", "from_user": "littlestewdj", "from_user_id": 83668444, "from_user_id_str": "83668444", "from_user_name": "Stewart", "geo": null, "id": 148819385237254140, "id_str": "148819385237254144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1649266485/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649266485/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:50 +0000", "from_user": "jc_economia", "from_user_id": 276726614, "from_user_id_str": "276726614", "from_user_name": "Economia", "geo": null, "id": 148819341238997000, "id_str": "148819341238996992", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1311625739/vaiprojc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1311625739/vaiprojc_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera 2,9 bi de euros para Portugal: http://t.co/xe4vd0wI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:42 +0000", "from_user": "domingosmiguel", "from_user_id": 53149244, "from_user_id_str": "53149244", "from_user_name": "Domingos Farinho", "geo": null, "id": 148819309014171650, "id_str": "148819309014171649", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1244035274/161343_1402755006_3290072_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1244035274/161343_1402755006_3290072_q_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Nunca a Pra\\u00E7a mereceu tanto o nome RT@Publico Jazz volta \\u00E0 Pra\\u00E7a da Alegria com reabertura do Hot Clube de Portugal http://t.co/i5yLnMVq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:42 +0000", "from_user": "HuracanCarter", "from_user_id": 69450703, "from_user_id_str": "69450703", "from_user_name": "Rubo", "geo": null, "id": 148819308636676100, "id_str": "148819308636676096", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1317800330/Dibujo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317800330/Dibujo_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@dieguito1989 tio como va a ser simbolico el 3 delant como un port, solo hay k ver Llorente contra Portugal en el Mundial o Guiza en la Euro", "to_user": "dieguito1989", "to_user_id": 95728945, "to_user_id_str": "95728945", "to_user_name": "Dieguito Fernandez ", "in_reply_to_status_id": 148815248353263600, "in_reply_to_status_id_str": "148815248353263616"}, +{"created_at": "Mon, 19 Dec 2011 17:37:36 +0000", "from_user": "vehs2", "from_user_id": 36500060, "from_user_id_str": "36500060", "from_user_name": "Ver\\u00F4nica Pinheiro", "geo": null, "id": 148819282392924160, "id_str": "148819282392924160", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695043066/390044148_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695043066/390044148_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Legal \\u00E9 ligar um homem com sotaque de Portugal e eu n\\u00E3o entender uma palavra que ele diz.. sorte a dele que n\\u00E3o me chamou de rapariga, kk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:36 +0000", "from_user": "Diego_Siilva6", "from_user_id": 152304466, "from_user_id_str": "152304466", "from_user_name": "DiegoSilva", "geo": null, "id": 148819280773914620, "id_str": "148819280773914624", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1568024123/52_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1568024123/52_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Me chamaram pra jogar l\\u00E1 na avenida Portugal , e eu n\\u00E3o vou dispensar . riariaira !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:28 +0000", "from_user": "WeFoundLoveRiRi", "from_user_id": 177738439, "from_user_id_str": "177738439", "from_user_name": "Rayan Fenty Adkins", "geo": null, "id": 148819250591694850, "id_str": "148819250591694848", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677769970/rrrrrrrrrrrrihannnnnna_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677769970/rrrrrrrrrrrrihannnnnna_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "#NAVY quero geral com sua Peggy Sue, vamos partir pra Portugal fuzilar o Hotel de #racistas!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:15 +0000", "from_user": "soraiacssantos", "from_user_id": 88205964, "from_user_id_str": "88205964", "from_user_name": "SoraiaS .", "geo": null, "id": 148819195637927940, "id_str": "148819195637927936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1659249702/tumblr_luytf73EVA1qhztk4o1_400_large_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659249702/tumblr_luytf73EVA1qhztk4o1_400_large_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Harry_Styles @NiallOfficial @zaynmalik @Real_Liam_Payne @Louis_Tomlinson @onedirection Portugal wants One Direction \\u2665 ,", "to_user": "Harry_Styles", "to_user_id": 181561712, "to_user_id_str": "181561712", "to_user_name": "Harry Styles"}, +{"created_at": "Mon, 19 Dec 2011 17:37:15 +0000", "from_user": "PorraPego", "from_user_id": 270636333, "from_user_id_str": "270636333", "from_user_name": "Euler Carlos", "geo": null, "id": 148819193373016060, "id_str": "148819193373016064", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1602987538/Toma_esse_sz___pra_voc___normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1602987538/Toma_esse_sz___pra_voc___normal.jpg", "source": "<a href="http://utweetme.navetke.ru/" rel="nofollow">uTweetMe For Mobile</a>", "text": "Cantora Rihanna se revolta com preconceito sofrido em hotel na cidade de Lisboa, Portugal.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:14 +0000", "from_user": "despinoza90", "from_user_id": 118580883, "from_user_id_str": "118580883", "from_user_name": "Daniel Espinoza ", "geo": null, "id": 148819189774295040, "id_str": "148819189774295042", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1472620794/perfil_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1472620794/perfil_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Koronios1: @biobio Corte de luz, Torres de San Borja, sector Marcoleta con Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:09 +0000", "from_user": "newsman_net", "from_user_id": 365513189, "from_user_id_str": "365513189", "from_user_name": "savage", "geo": null, "id": 148819168647594000, "id_str": "148819168647593985", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1522688191/dr.manhattan_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1522688191/dr.manhattan_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "IMF releases 2.9 bn euros to Portugal http://t.co/kcJGVzRB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:36:56 +0000", "from_user": "evertuts", "from_user_id": 194205193, "from_user_id_str": "194205193", "from_user_name": "\\u00A0\\u00A0\\u00A0\\u00A0\\u00A0ro.", "geo": null, "id": 148819113865773060, "id_str": "148819113865773056", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694563721/143_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694563721/143_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera 2,9 bi de euros para Portugal: O Fundo Monet\\u00E1rio Internacional (FMI) anunciou hoje que ir\\u00E1 liberar 2,... http://t.co/SHifkww8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:36:49 +0000", "from_user": "AnsKlaas", "from_user_id": 418656376, "from_user_id_str": "418656376", "from_user_name": "Ans Kamperman-Klaas", "geo": null, "id": 148819083842957300, "id_str": "148819083842957312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1651935005/DSC_0029__2__normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651935005/DSC_0029__2__normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:36:43 +0000", "from_user": "cmjornal", "from_user_id": 124139163, "from_user_id_str": "124139163", "from_user_name": "Correio da Manh\\u00E3", "geo": null, "id": 148819061885767680, "id_str": "148819061885767680", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/760363120/cm_twitter_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/760363120/cm_twitter_normal.gif", "source": "<a href="http://www.cmjornal.xl.pt" rel="nofollow">Correio da Manh\\u00E3</a>", "text": "FMI aprovou terceira tranche do empr\\u00E9stimo a Portugal http://t.co/zSMI5Rxh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:36:24 +0000", "from_user": "monalisa_lgp", "from_user_id": 109057658, "from_user_id_str": "109057658", "from_user_name": "Diana", "geo": null, "id": 148818979547394050, "id_str": "148818979547394048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1600553301/a75f8812-b8d4-4784-af38-68d3409a8dfa_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600553301/a75f8812-b8d4-4784-af38-68d3409a8dfa_normal.png", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "History of Portugal http://t.co/Rdns22nh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:36:19 +0000", "from_user": "SundayPhillips", "from_user_id": 351236090, "from_user_id_str": "351236090", "from_user_name": "Sunday Phillips", "geo": null, "id": 148818960924672000, "id_str": "148818960924672000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1652253964/sUNDAY_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652253964/sUNDAY_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:36:18 +0000", "from_user": "GinetSosemito", "from_user_id": 236374122, "from_user_id_str": "236374122", "from_user_name": "Ginet Sosemito", "geo": null, "id": 148818954020855800, "id_str": "148818954020855808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697149760/Twitter_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697149760/Twitter_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Angola helping Portugal amidst the EU crisis, is spoken of, as a matter of, --The Colonial Tables Turning. http://t.co/zN5UUtKR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:36:13 +0000", "from_user": "riro_news", "from_user_id": 399624025, "from_user_id_str": "399624025", "from_user_name": "riro_news", "geo": null, "id": 148818933166780400, "id_str": "148818933166780417", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1615279880/riro_news_twitter_logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615279880/riro_news_twitter_logo_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "IWF gibt 2,9 Milliarden Euro f\\u00FCr Portugal frei http://t.co/hP4E3XXG #orfnews", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:35:51 +0000", "from_user": "soraiacssantos", "from_user_id": 88205964, "from_user_id_str": "88205964", "from_user_name": "SoraiaS .", "geo": null, "id": 148818840158076930, "id_str": "148818840158076929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1659249702/tumblr_luytf73EVA1qhztk4o1_400_large_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659249702/tumblr_luytf73EVA1qhztk4o1_400_large_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Harry_Styles @NiallOfficial @zaynmalik @Real_Liam_Payne @Louis_Tomlinson @onedirection Portugal wants One Direction \\u2665", "to_user": "Harry_Styles", "to_user_id": 181561712, "to_user_id_str": "181561712", "to_user_name": "Harry Styles"}, +{"created_at": "Mon, 19 Dec 2011 17:35:49 +0000", "from_user": "Vitoria_online", "from_user_id": 397560450, "from_user_id_str": "397560450", "from_user_name": "jornaisemserie", "geo": null, "id": 148818833359114240, "id_str": "148818833359114241", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1605009027/es-vitoria_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1605009027/es-vitoria_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera 2,9 bi de euros para Portugal: Washington - O Fundo Monet\\u00E1rio Internacional (FMI) anunciou hoje que i... http://t.co/C5lY3z1H", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:35:47 +0000", "from_user": "modernavitoria", "from_user_id": 119119998, "from_user_id_str": "119119998", "from_user_name": "Rede Geral Perfis ", "geo": null, "id": 148818824639156220, "id_str": "148818824639156224", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/728116326/31_1127856966_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/728116326/31_1127856966_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#RGP FMI libera 2,9 bi de euros para Portugal: Washington - O Fundo Monet\\u00E1rio Internacional (FMI) anunciou hoje ... http://t.co/Ocxmk8Je", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:35:41 +0000", "from_user": "_LeandroSilva8", "from_user_id": 431913240, "from_user_id_str": "431913240", "from_user_name": "Leandro Silva", "geo": null, "id": 148818801570488320, "id_str": "148818801570488320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698526342/IMG_20111109_192620_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698526342/IMG_20111109_192620_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ttprovider very nice! thanks! post from Portugal! love table tennis eheh!", "to_user": "ttprovider", "to_user_id": 262854043, "to_user_id_str": "262854043", "to_user_name": "TTProvider", "in_reply_to_status_id": 148818198370844670, "in_reply_to_status_id_str": "148818198370844674"}, +{"created_at": "Mon, 19 Dec 2011 17:35:32 +0000", "from_user": "EekOct31stGeek", "from_user_id": 24475229, "from_user_id_str": "24475229", "from_user_name": "D_was_nefarious", "geo": null, "id": 148818762680893440, "id_str": "148818762680893441", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694820227/316547_889412238842_26106637_40267590_1562515275_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694820227/316547_889412238842_26106637_40267590_1562515275_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Man, usually I can just call my my mom and ask her to help me write out e-mails to my cousin's in Portugal. Now, not so much. #fodasse", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:35:28 +0000", "from_user": "DoraVicente", "from_user_id": 228537161, "from_user_id_str": "228537161", "from_user_name": "Dora Vicente", "geo": null, "id": 148818744678957060, "id_str": "148818744678957056", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677691636/328_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677691636/328_normal.JPG", "source": "<a href="http://www.publico.pt" rel="nofollow">AutoTweetPublico</a>", "text": "RT @Publico: Jazz volta \\u00E0 Pra\\u00E7a da Alegria com reabertura do Hot Clube de Portugal http://t.co/ldu142ND", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:35:17 +0000", "from_user": "espanta", "from_user_id": 20854618, "from_user_id_str": "20854618", "from_user_name": "Espanta Espiritos", "geo": null, "id": 148818700265455600, "id_str": "148818700265455616", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/78264994/julionovologo2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/78264994/julionovologo2_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Feliz Anivers\\u00E1rio ao Portugal Rebelde, e que continue durante muitos e bons anos a divulgar a m\\u00FAsica... http://t.co/AjymkkqO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:35:11 +0000", "from_user": "ARMAKdeODELOT", "from_user_id": 207305542, "from_user_id_str": "207305542", "from_user_name": "ARMAK de ODELOT", "geo": null, "id": 148818672239128580, "id_str": "148818672239128576", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1183805338/kingarmak_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1183805338/kingarmak_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jtamarit: El FMI autoriza el desembolso inmediato de 2.900 millones a Portugal, Su programa de apoyo a reformas econ\\u00F3micas, supone 28.000 millones.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:35:08 +0000", "from_user": "Isgarvan", "from_user_id": 91371148, "from_user_id_str": "91371148", "from_user_name": "Israel Garc\\u00EDa", "geo": null, "id": 148818662487359500, "id_str": "148818662487359488", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1420800025/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1420800025/image_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @Info_Ve: Rihanna fue v\\u00EDctima de insultos racistas en Portugal http://t.co/9Mofo6Nc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:35:08 +0000", "from_user": "porrak4u3", "from_user_id": 35146993, "from_user_id_str": "35146993", "from_user_name": "Kau\\u00EA Franqueira", "geo": null, "id": 148818662084722700, "id_str": "148818662084722688", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688193813/72_kaue_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688193813/72_kaue_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Eita a Rihanna cantou \"diferente\" What's my name em portugal porque no meio da m\\u00FAsica ela saiu pra vomitar :O", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:35:05 +0000", "from_user": "GinetSosemito", "from_user_id": 236374122, "from_user_id_str": "236374122", "from_user_name": "Ginet Sosemito", "geo": null, "id": 148818650709762050, "id_str": "148818650709762048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697149760/Twitter_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697149760/Twitter_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@pascord Portugal Plead with Angola for a Rescue Fund. http://t.co/zN5UUtKR", "to_user": "pascord", "to_user_id": 18425556, "to_user_id_str": "18425556", "to_user_name": "Panayiotis Skordias", "in_reply_to_status_id": 148813260429332480, "in_reply_to_status_id_str": "148813260429332481"}, +{"created_at": "Mon, 19 Dec 2011 17:35:00 +0000", "from_user": "jenstirrup", "from_user_id": 23242773, "from_user_id_str": "23242773", "from_user_name": "Jen Stirrup", "geo": null, "id": 148818626798043140, "id_str": "148818626798043138", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1580691601/JenStirrup_SpeakerPhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580691601/JenStirrup_SpeakerPhoto_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Fancy a #sqlpass event in Portugal? Take a look at #sqlsat115 in Lisbon! #sqlserver http://t.co/n1vDWZyJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:57 +0000", "from_user": "ouedernie", "from_user_id": 98902061, "from_user_id_str": "98902061", "from_user_name": "amina ouederni", "geo": null, "id": 148818614148010000, "id_str": "148818614148009984", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691528746/Photos-0670_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691528746/Photos-0670_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "#Rihanna : tout va mal au Portugal http://t.co/8qkoEv0x", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:53 +0000", "from_user": "RSSpravaler", "from_user_id": 438638127, "from_user_id_str": "438638127", "from_user_name": "RSS pra valer!", "geo": null, "id": 148818597098164220, "id_str": "148818597098164224", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697113193/Inside-rss-256_normal.png", "profile_image_url_https": null, "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera 2,9 bi de euros para Portugal: A libera\\u00E7\\u00E3o ocorre depois de uma segunda avalia\\u00E7\\u00E3o formal feita pelo ... http://t.co/RPAN6oHc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:52 +0000", "from_user": "Firstec", "from_user_id": 149255622, "from_user_id_str": "149255622", "from_user_name": "First Technology Inc", "geo": null, "id": 148818595458187260, "id_str": "148818595458187264", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/938918381/FTI_GROBE_LOGO_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/938918381/FTI_GROBE_LOGO_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera 2,9 bi de euros para Portugal: A libera\\u00E7\\u00E3o ocorre depois de uma segunda avalia\\u00E7\\u00E3o formal feita pelo ... http://t.co/zsMsUwTf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:52 +0000", "from_user": "thecardinaldela", "from_user_id": 20937306, "from_user_id_str": "20937306", "from_user_name": "Francisco Uhlfelder", "geo": null, "id": 148818595189764100, "id_str": "148818595189764096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/337596212/franzee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/337596212/franzee_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Blessings from Lisboa Portugal from the Alfama Se Cathedral. A Luca Pedrotti panorama photography. http://t.co/AjIj3fQN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:46 +0000", "from_user": "Manuela_Pacheco", "from_user_id": 316764287, "from_user_id_str": "316764287", "from_user_name": "Manuela Pacheco", "geo": null, "id": 148818570762137600, "id_str": "148818570762137601", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1413383346/1280706656_107710585_1-inscrio-de-modelo-em-cuiaba-centro-1280706656_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1413383346/1280706656_107710585_1-inscrio-de-modelo-em-cuiaba-centro-1280706656_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @exame_noticias: FMI libera 2,9 bilh\\u00F5es de euros em ajuda para Portugal http://t.co/Zs8V5Et4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:29 +0000", "from_user": "Disney_Emploi", "from_user_id": 76054505, "from_user_id_str": "76054505", "from_user_name": "Disneyland Paris ", "geo": null, "id": 148818498422968320, "id_str": "148818498422968320", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/643496869/DLP_Logo_Format_Twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/643496869/DLP_Logo_Format_Twitter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Postulez pour participer \\u00E0 nos sessions de recrutement au PORTUGAL \\u00E0 Lisbonne les 14 et 15 F\\u00E9vrier 2012 : http://t.co/y8ua6K7f #jobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:26 +0000", "from_user": "JavierRivero24", "from_user_id": 436043818, "from_user_id_str": "436043818", "from_user_name": "Javier Rivero", "geo": null, "id": 148818483591917570, "id_str": "148818483591917569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691468171/Martin_Velazquez_normal.jpg", "profile_image_url_https": null, "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Escucha un cover de Portugal. The Man a Gnarls Barkley http://t.co/qdwpE3MH via @LifeBoxset", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:25 +0000", "from_user": "AyerHoy1", "from_user_id": 436043306, "from_user_id_str": "436043306", "from_user_name": "Ayer Hoy", "geo": null, "id": 148818480429408260, "id_str": "148818480429408256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691467460/periodistas-animados-ayer-hoy-L-6_normal.jpeg", "profile_image_url_https": null, "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Escucha un cover de Portugal. The Man a Gnarls Barkley http://t.co/y40EfcTd via @LifeBoxset", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:25 +0000", "from_user": "LuzRodrigeuz", "from_user_id": 436042528, "from_user_id_str": "436042528", "from_user_name": "Luz Rodrigeuz", "geo": null, "id": 148818479989014530, "id_str": "148818479989014529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691466603/msn123_normal_normal.jpg", "profile_image_url_https": null, "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Escucha un cover de Portugal. The Man a Gnarls Barkley http://t.co/pkHdKGmw via @LifeBoxset", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:24 +0000", "from_user": "MiaraSanchez", "from_user_id": 436041334, "from_user_id_str": "436041334", "from_user_name": "Miara Sanchez", "geo": null, "id": 148818478177075200, "id_str": "148818478177075200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691465610/DSC09144_normal.JPG", "profile_image_url_https": null, "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Escucha un cover de Portugal. The Man a Gnarls Barkley http://t.co/Uq0w1AaA via @LifeBoxset", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:24 +0000", "from_user": "EduardoRojas57", "from_user_id": 436040352, "from_user_id_str": "436040352", "from_user_name": "Eduardo Rojas", "geo": null, "id": 148818476440625150, "id_str": "148818476440625156", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691464547/RodrigoMendezTinoco_normal.jpg", "profile_image_url_https": null, "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Escucha un cover de Portugal. The Man a Gnarls Barkley http://t.co/6CbAt6oT via @LifeBoxset", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:24 +0000", "from_user": "blognonstop", "from_user_id": 102507725, "from_user_id_str": "102507725", "from_user_name": "Blog Non Stop", "geo": null, "id": 148818475027148800, "id_str": "148818475027148800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/892366796/blog_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/892366796/blog_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "http://t.co/SyWVF1jy: Escucha un cover de Portugal. The Man a Gnarls Barkley http://t.co/BMlVjZxo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:14 +0000", "from_user": "keithcallsenfir", "from_user_id": 314899445, "from_user_id_str": "314899445", "from_user_name": "Keith Callsen", "geo": null, "id": 148818435273535500, "id_str": "148818435273535488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1390592038/1307752262_implementation_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1390592038/1307752262_implementation_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Qatar: 2011 Article IV Consultation Concluding Statement of the IMF Mission - Einnews Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:06 +0000", "from_user": "acquaintanceswo", "from_user_id": 397963118, "from_user_id_str": "397963118", "from_user_name": "gut.easyzmenki.si", "geo": null, "id": 148818399902961660, "id_str": "148818399902961664", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1618456988/love_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618456988/love_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amizade: \\n\\t\\n\\t\\t\\n\\tluilisboa1\\n\\t\\n\\t36 ans\\n\\tLisboa\\n Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:05 +0000", "from_user": "acquaintanceswo", "from_user_id": 397963118, "from_user_id_str": "397963118", "from_user_name": "gut.easyzmenki.si", "geo": null, "id": 148818396971155460, "id_str": "148818396971155456", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1618456988/love_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618456988/love_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amizade: \\n\\t\\n\\t\\t\\n\\tmendes72\\n\\t\\n\\t39 ans\\n\\tEsposende\\n Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:05 +0000", "from_user": "RTPNoticias", "from_user_id": 16451028, "from_user_id_str": "16451028", "from_user_name": "RTPNoticias", "geo": null, "id": 148818395729637380, "id_str": "148818395729637376", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/740350326/rtp_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/740350326/rtp_twitter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "FMI d\\u00E1 luz verde \\u00E0 terceira tranche de 2,9 mil milh\\u00F5es de euros para Portugal. http://t.co/ExnlZgGo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:03 +0000", "from_user": "acquaintanceswo", "from_user_id": 397963118, "from_user_id_str": "397963118", "from_user_name": "gut.easyzmenki.si", "geo": null, "id": 148818390088290300, "id_str": "148818390088290304", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1618456988/love_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618456988/love_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amizade: \\n\\t\\n\\t\\t\\n\\tmarcianovip\\n\\t\\n\\t24 ans\\n\\tFunchal\\n Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:33:58 +0000", "from_user": "Bonehead07", "from_user_id": 37626068, "from_user_id_str": "37626068", "from_user_name": "Mike Hillyard", "geo": null, "id": 148818367648768000, "id_str": "148818367648768000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662978253/39f37d4a-0557-43ab-8ec8-3e2c628a3b24_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662978253/39f37d4a-0557-43ab-8ec8-3e2c628a3b24_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:33:57 +0000", "from_user": "RaymundoZ", "from_user_id": 23870932, "from_user_id_str": "23870932", "from_user_name": "Raymundo Zuniga Vega", "geo": null, "id": 148818363160862720, "id_str": "148818363160862720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1630296121/RaymundoZ_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630296121/RaymundoZ_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:33:46 +0000", "from_user": "OficialMailson", "from_user_id": 50768110, "from_user_id_str": "50768110", "from_user_name": "MailsonLobato \\u2655", "geo": null, "id": 148818319745626100, "id_str": "148818319745626112", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1588529094/PQAAALjnzSs4zYUQJ2HEb5b-9sfgjPmeOTS-9w7xnjmPYF5kd_c0b-HaeC3XiBE6AyWJ5tbwfnOUWuwTG1tZr8IqZ5UAm1T1UFvHPWn6EyFju-7mQXvsL9xtgfkI_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1588529094/PQAAALjnzSs4zYUQJ2HEb5b-9sfgjPmeOTS-9w7xnjmPYF5kd_c0b-HaeC3XiBE6AyWJ5tbwfnOUWuwTG1tZr8IqZ5UAm1T1UFvHPWn6EyFju-7mQXvsL9xtgfkI_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "V\\u00EDdeo: Rihanna sai correndo do palco para vomitar durante show em Portugal? http://t.co/425TM3R4 via @Papel Pop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:33:33 +0000", "from_user": "Record_Portugal", "from_user_id": 19663485, "from_user_id_str": "19663485", "from_user_name": "Di\\u00E1rio Record", "geo": null, "id": 148818262690500600, "id_str": "148818262690500608", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/73860242/logo_record_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/73860242/logo_record_normal.jpg", "source": "<a href="http://www.record.xl.pt" rel="nofollow">Jornal Record</a>", "text": "Fora de campo - FMI aprovou terceira tranche do empr\\u00E9stimo a Portugal http://t.co/qH9KuCTD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:33:28 +0000", "from_user": "ElGatoCompotas", "from_user_id": 394329566, "from_user_id_str": "394329566", "from_user_name": "Da Souza", "geo": null, "id": 148818241505067000, "id_str": "148818241505067008", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694526798/SocapuchobyTito_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694526798/SocapuchobyTito_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "En Portugal odiamos a Michel Tel\\u00F3, es como Justin Bieber no s\\u00E9 si lo sab\\u00E9is", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:33:22 +0000", "from_user": "FilipeHonorio", "from_user_id": 47476545, "from_user_id_str": "47476545", "from_user_name": "Filipe Hon\\u00F3rio", "geo": null, "id": 148818217836609540, "id_str": "148818217836609536", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1649061933/HPIM1086_-_C_pia_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649061933/HPIM1086_-_C_pia_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Tranche de \"ajuda\". RT @tvi24_iol: FMI liberta 3\\u00AA tranche de ajuda a Portugal: http://t.co/NoGecIpw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:33:20 +0000", "from_user": "museusbr", "from_user_id": 370345430, "from_user_id_str": "370345430", "from_user_name": "Ibram/MinC", "geo": null, "id": 148818205417287680, "id_str": "148818205417287681", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1560864548/Twitter-profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1560864548/Twitter-profile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Com apoio do MinC, Rosana Bortolin exp\\u00F5e cer\\u00E2micas em Montemor-o-Novo, Portugal, at\\u00E9 15jan! #cultura #museus #portugal http://t.co/iUh597UY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:33:17 +0000", "from_user": "Dezah_Fenty", "from_user_id": 140716277, "from_user_id_str": "140716277", "from_user_name": "Andreza ", "geo": null, "id": 148818195959123970, "id_str": "148818195959123968", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1670588027/lala_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670588027/lala_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @PontoPOOP: Rihanna sofre racismo em Portugal http://t.co/kYjRiiFx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:33:04 +0000", "from_user": "UrgurlKerri", "from_user_id": 349285553, "from_user_id_str": "349285553", "from_user_name": "Kerri", "geo": null, "id": 148818140816605200, "id_str": "148818140816605184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1500616334/mugghg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1500616334/mugghg_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Rihanna Goes on Twitter Rant After Racial Abuse in Portugal http://t.co/lAt1RNcJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:59 +0000", "from_user": "exame_noticias", "from_user_id": 115656428, "from_user_id_str": "115656428", "from_user_name": "EXAME Not\\u00EDcias", "geo": null, "id": 148818119970914300, "id_str": "148818119970914304", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/776518898/noticias_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/776518898/noticias_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera 2,9 bilh\\u00F5es de euros em ajuda para Portugal http://t.co/Zs8V5Et4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:58 +0000", "from_user": "muraldavila", "from_user_id": 70864524, "from_user_id_str": "70864524", "from_user_name": "muraldavila", "geo": null, "id": 148818117026521100, "id_str": "148818117026521088", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/394055805/LOGO_MURAL_DA_VILA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/394055805/LOGO_MURAL_DA_VILA_normal.jpg", "source": "<a href="http://www.muraldavila.com.br" rel="nofollow">Mural da Vila</a>", "text": "Cantora Rihanna \\u00E9 v\\u00EDtima de racismo em hotel de Lisboa, Portugal - http://t.co/SjQqrOpB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:56 +0000", "from_user": "whitmo", "from_user_id": 17974018, "from_user_id_str": "17974018", "from_user_name": "whitmo", "geo": null, "id": 148818108000382980, "id_str": "148818108000382976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1617753759/IMG_0453_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1617753759/IMG_0453_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:56 +0000", "from_user": "IndusvalTrade", "from_user_id": 309878325, "from_user_id_str": "309878325", "from_user_name": "Indusval Trade", "geo": null, "id": 148818107161509900, "id_str": "148818107161509889", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1386095277/indusval_facebook_avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1386095277/indusval_facebook_avatar_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "FMI libera parcela de 2,9 bilh\\u00F5es de euros de aux\\u00EDlio a #Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:43 +0000", "from_user": "AlfaJornal", "from_user_id": 110153375, "from_user_id_str": "110153375", "from_user_name": "Alfa Jornal", "geo": null, "id": 148818052618784770, "id_str": "148818052618784768", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/667265994/ScreenShot011_normal.bmp", "profile_image_url_https": "https://si0.twimg.com/profile_images/667265994/ScreenShot011_normal.bmp", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprovou terceira tranche do empr\\u00E9stimo a Portugal: O Fundo Monet\\u00E1rio Internacional (FMI) aprovou hoje a terc... http://t.co/C2ZsvSj5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:43 +0000", "from_user": "AlfaJornal", "from_user_id": 110153375, "from_user_id_str": "110153375", "from_user_name": "Alfa Jornal", "geo": null, "id": 148818051624738800, "id_str": "148818051624738816", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/667265994/ScreenShot011_normal.bmp", "profile_image_url_https": "https://si0.twimg.com/profile_images/667265994/ScreenShot011_normal.bmp", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprovou terceira tranche do empr\\u00E9stimo a Portugal: O Fundo Monet\\u00E1rio Internacional (FMI) aprovou hoje a terc... http://t.co/idpTnas2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:40 +0000", "from_user": "WeFoundLoveRiRi", "from_user_id": 177738439, "from_user_id_str": "177738439", "from_user_name": "Rayan Fenty Adkins", "geo": null, "id": 148818040342052860, "id_str": "148818040342052865", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677769970/rrrrrrrrrrrrihannnnnna_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677769970/rrrrrrrrrrrrihannnnnna_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Vamoos fuzilar o tal hotel em Portugal?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:38 +0000", "from_user": "Rui_Parente", "from_user_id": 29333141, "from_user_id_str": "29333141", "from_user_name": "Rui Parente", "geo": null, "id": 148818031043297280, "id_str": "148818031043297280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1380135594/Capturar_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1380135594/Capturar_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@Lakers There are a lot of Lakers fans also in PORTUGAL, I wish there was a portuguese player in the league. LET'S GO LAKERS!!!", "to_user": "Lakers", "to_user_id": 20346956, "to_user_id_str": "20346956", "to_user_name": "Los Angeles Lakers", "in_reply_to_status_id": 148816478836244480, "in_reply_to_status_id_str": "148816478836244480"}, +{"created_at": "Mon, 19 Dec 2011 17:32:19 +0000", "from_user": "shruglife_", "from_user_id": 51285549, "from_user_id_str": "51285549", "from_user_name": "Ricky Cervantes", "geo": null, "id": 148817951749963780, "id_str": "148817951749963776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694154092/srq5tvAf_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694154092/srq5tvAf_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@rubibliss like at 4am...ima pass through spain first then italy after that germany to say whats up to logan and possibly portugal....", "to_user": "rubibliss", "to_user_id": 275127993, "to_user_id_str": "275127993", "to_user_name": "Rubi\\u2112\\u2134\\u0475\\u212F", "in_reply_to_status_id": 148815389747462140, "in_reply_to_status_id_str": "148815389747462145"}, +{"created_at": "Mon, 19 Dec 2011 17:32:07 +0000", "from_user": "Sasikana", "from_user_id": 265590258, "from_user_id_str": "265590258", "from_user_name": "Saskiana ^,^", "geo": null, "id": 148817902882140160, "id_str": "148817902882140160", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662951683/plaatje_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662951683/plaatje_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@RageLoveSelinde erm.. tot mijn 4de woonde ik in Rusland en dan tot mijn 8ste in Portugal en sindsdien in NL (;", "to_user": "RageLoveSelinde", "to_user_id": 282670919, "to_user_id_str": "282670919", "to_user_name": "Legolas. ", "in_reply_to_status_id": 148817777845735420, "in_reply_to_status_id_str": "148817777845735425"}, +{"created_at": "Mon, 19 Dec 2011 17:32:07 +0000", "from_user": "Alicia_Fenty", "from_user_id": 272138231, "from_user_id_str": "272138231", "from_user_name": "It's Cristmas, \\u263A", "geo": null, "id": 148817902177484800, "id_str": "148817902177484800", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681093742/NavyTillIdie_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681093742/NavyTillIdie_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@WeFoundLoveRiRi Nao, eu neste momento n to em Portugal amor, se tivesse eu ia ..rs", "to_user": "WeFoundLoveRiRi", "to_user_id": 177738439, "to_user_id_str": "177738439", "to_user_name": "Rayan Fenty Adkins", "in_reply_to_status_id": 148816637326401540, "in_reply_to_status_id_str": "148816637326401536"}, +{"created_at": "Mon, 19 Dec 2011 17:32:06 +0000", "from_user": "DewiRoberts89", "from_user_id": 236421780, "from_user_id_str": "236421780", "from_user_name": "Dewi Roberts", "geo": null, "id": 148817898817859600, "id_str": "148817898817859584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662973998/IMG-20111128-00253_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662973998/IMG-20111128-00253_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@3gerardpique my friend @jambags is from portugal and he has crush on @shakira can he have her for a night please? RT", "to_user": "3gerardpique", "to_user_id": 224223563, "to_user_id_str": "224223563", "to_user_name": "Gerard Piqu\\u00E9"}, +{"created_at": "Mon, 19 Dec 2011 17:32:01 +0000", "from_user": "RandyHookerAZ", "from_user_id": 18715737, "from_user_id_str": "18715737", "from_user_name": "Randy Hooker", "geo": null, "id": 148817877233958900, "id_str": "148817877233958912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1609718812/Randy1_-_10.26__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609718812/Randy1_-_10.26__1__normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Time to end the war on drugs?? Case Study: Portugal http://t.co/9VH2jWY2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:59 +0000", "from_user": "94mm94mm94", "from_user_id": 170072580, "from_user_id_str": "170072580", "from_user_name": "Miguel Miranda", "geo": null, "id": 148817868581122050, "id_str": "148817868581122048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1111905540/HPIM6506_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1111905540/HPIM6506_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Check out the best moments of #LOUDTour Lisbon: http://t.co/e4L33s2l RT @rihanna: PORTUGAL tonight was LEGENDARY!!!", "to_user": "rihanna", "to_user_id": 79293791, "to_user_id_str": "79293791", "to_user_name": "Rihanna", "in_reply_to_status_id": 148182359810908160, "in_reply_to_status_id_str": "148182359810908160"}, +{"created_at": "Mon, 19 Dec 2011 17:31:49 +0000", "from_user": "BiografiaIS", "from_user_id": 231881133, "from_user_id_str": "231881133", "from_user_name": "AutoBiografia IS", "geo": null, "id": 148817825518198800, "id_str": "148817825518198785", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1423514098/qwer_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1423514098/qwer_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera 2,9 bi de euros para Portugal: http://t.co/KAhUvogC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:49 +0000", "from_user": "juniorwandeir", "from_user_id": 30200759, "from_user_id_str": "30200759", "from_user_name": "J\\u00FAnior Wandeir", "geo": null, "id": 148817825199423500, "id_str": "148817825199423488", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1583853155/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583853155/image_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera 2,9 bi de euros para Portugal: http://t.co/nIs57tBG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:48 +0000", "from_user": "JrWandeir", "from_user_id": 148473475, "from_user_id_str": "148473475", "from_user_name": "\\uF8FF \\uE00A Jr. Wandeir \\uE00D \\uE250", "geo": null, "id": 148817823735627780, "id_str": "148817823735627776", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691019558/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691019558/image_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera 2,9 bi de euros para Portugal: http://t.co/5RFA55QH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 17:31:44 +0000", "from_user": "tvi24_iol", "from_user_id": 21783395, "from_user_id_str": "21783395", "from_user_name": "tvi24", "geo": null, "id": 148817804911579140, "id_str": "148817804911579137", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/83894092/13115125_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/83894092/13115125_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI liberta 3\\u00AA tranche de ajuda a Portugal: FMI liberta 3\\u00AA tranche de ajuda a Portugal http://t.co/X8Q0sJLt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:43 +0000", "from_user": "Portugal_Glocal", "from_user_id": 18055408, "from_user_id_str": "18055408", "from_user_name": "Portugal Glocal", "geo": null, "id": 148817801698738180, "id_str": "148817801698738176", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1359510627/Logo_Portugal_Glocal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1359510627/Logo_Portugal_Glocal_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprovou terceira tranche do empr\\u00E9stimo a Portugal http://t.co/obfo8gZa #Economia", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:32 +0000", "from_user": "bobcat_x", "from_user_id": 276193802, "from_user_id_str": "276193802", "from_user_name": "Renars D.", "geo": null, "id": 148817755414609920, "id_str": "148817755414609920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1508673061/bobcat1-01_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1508673061/bobcat1-01_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @InsideRihanna: Videos \\u2013 Rihanna Performs At The Atlantico Pavilion, Lisbon, Portugal \\u2013 Dec 17: Only Girl (In The World) Only Gi... http://t.co/atSzsNif", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:22 +0000", "from_user": "Meibly", "from_user_id": 58062437, "from_user_id_str": "58062437", "from_user_name": "Thamires Specht", "geo": null, "id": 148817715304472580, "id_str": "148817715304472576", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693650336/Foto-0008_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693650336/Foto-0008_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@L_Roberta Av. Portugal, passou o hospital, no farol \\u00E0 direita, depois 3\\u00AA \\u00E0 esquerda. Te mando o endere\\u00E7o certinho por SMS.", "to_user": "L_Roberta", "to_user_id": 78767602, "to_user_id_str": "78767602", "to_user_name": "Leticia Roberta", "in_reply_to_status_id": 148817270997647360, "in_reply_to_status_id_str": "148817270997647360"}, +{"created_at": "Mon, 19 Dec 2011 17:31:15 +0000", "from_user": "ForSaleiAlgarve", "from_user_id": 386105591, "from_user_id_str": "386105591", "from_user_name": "For Sale in Algarve", "geo": null, "id": 148817686116315140, "id_str": "148817686116315136", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1575941712/For_Sale_In_Algarve_Twitter_Logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575941712/For_Sale_In_Algarve_Twitter_Logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Villa for sale in Loule | 4 bedrooms ~ For-Sale-in-Algarve ~ #Algarve\\n#Portugal - http://t.co/KJoQHemG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:29 +0000", "from_user": "Record_Portugal", "from_user_id": 19663485, "from_user_id_str": "19663485", "from_user_name": "Di\\u00E1rio Record", "geo": null, "id": 148817493446766600, "id_str": "148817493446766592", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/73860242/logo_record_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/73860242/logo_record_normal.jpg", "source": "<a href="http://www.record.xl.pt" rel="nofollow">Jornal Record</a>", "text": "Voleibol - Liga Mundial: Portugal em grupo complicado http://t.co/7wtUWazY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:29 +0000", "from_user": "SocMeDotMe", "from_user_id": 371995419, "from_user_id_str": "371995419", "from_user_name": "Karl Lingenfelder", "geo": null, "id": 148817493442568200, "id_str": "148817493442568192", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1546120426/SocMe_Twitter_Icon_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546120426/SocMe_Twitter_Icon_2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Villa for sale in Loule | 4 bedrooms ~ For-Sale-in-Algarve ~ #Algarve\\n#Portugal - http://t.co/5nVFMVgo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:27 +0000", "from_user": "Jose_abodo95", "from_user_id": 358313156, "from_user_id_str": "358313156", "from_user_name": "jose armando", "geo": null, "id": 148817481350397950, "id_str": "148817481350397953", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687769247/Picture0037_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687769247/Picture0037_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Em Portugal os restaurantes fecham para almo\\u00E7o", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:16 +0000", "from_user": "laisafenty", "from_user_id": 142008526, "from_user_id_str": "142008526", "from_user_name": "La\\u00EDsa Fenty", "geo": null, "id": 148817436018343940, "id_str": "148817436018343936", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1671722465/023_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671722465/023_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Rihanna sofreu racismo em Portugal? o.O Que poha \\u00E9 essa?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:15 +0000", "from_user": "PerfecttMileyC", "from_user_id": 427843929, "from_user_id_str": "427843929", "from_user_name": "Pa\\u00E7oca da Miley \\u263A\\u263B", "geo": null, "id": 148817431886962700, "id_str": "148817431886962689", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702273341/Miley-Cyrus-Christmas-miley-cyrus-27748662-100-100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702273341/Miley-Cyrus-Christmas-miley-cyrus-27748662-100-100_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@CaroliinaBieber Voce \\u00E9 natural de portugal?", "to_user": "CaroliinaBieber", "to_user_id": 115784563, "to_user_id_str": "115784563", "to_user_name": "Carol do Bieb's", "in_reply_to_status_id": 148816956131250180, "in_reply_to_status_id_str": "148816956131250176"}, +{"created_at": "Mon, 19 Dec 2011 17:30:02 +0000", "from_user": "_Donato_", "from_user_id": 60458450, "from_user_id_str": "60458450", "from_user_name": "Donato ", "geo": null, "id": 148817379781120000, "id_str": "148817379781120000", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1689935088/avatar1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689935088/avatar1_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#Noticias 12:34 PM : FMI aprueba entrega de 2.900 millones de euros para Portugal http://t.co/EDhsVii1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:47 +0000", "from_user": "DavidGrapeJuice", "from_user_id": 143102150, "from_user_id_str": "143102150", "from_user_name": "DavidGrapeJuice", "geo": null, "id": 148817314064764930, "id_str": "148817314064764928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1583862227/tgj_logo_newest_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583862227/tgj_logo_newest_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Rihanna Racially Assaulted In Portugal: Though it will always remain a difficult pill to swallow, [...] http://t.co/wRJh25iz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:47 +0000", "from_user": "DavidGrapeJuice", "from_user_id": 143102150, "from_user_id_str": "143102150", "from_user_name": "DavidGrapeJuice", "geo": null, "id": 148817313301405700, "id_str": "148817313301405697", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1583862227/tgj_logo_newest_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583862227/tgj_logo_newest_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Rihanna Racially Assaulted In Portugal: Though it will always remain a difficult pill to swallow, [...] http://t.co/fK88RPQM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:46 +0000", "from_user": "aleexnorad", "from_user_id": 341761771, "from_user_id_str": "341761771", "from_user_name": "arex da gaita", "geo": null, "id": 148817309094518800, "id_str": "148817309094518786", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700078688/OgAAAOouWyoauhbsaBWIc8V0T8iSDVg7NOJBKFdWbm2wSwLIMjFCrZ-Lrmde0vRiq9uL7tWTzVTx-0rfNhM9Ak-vrY8Am1T1UOCmGZmFKJKiBhNvj-aRCwY4XZGA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700078688/OgAAAOouWyoauhbsaBWIc8V0T8iSDVg7NOJBKFdWbm2wSwLIMjFCrZ-Lrmde0vRiq9uL7tWTzVTx-0rfNhM9Ak-vrY8Am1T1UOCmGZmFKJKiBhNvj-aRCwY4XZGA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Tomar um banho e chegar ali no portugal ..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:44 +0000", "from_user": "MSBNPortugal", "from_user_id": 247498025, "from_user_id_str": "247498025", "from_user_name": "MSBN Portugal", "geo": null, "id": 148817301750288400, "id_str": "148817301750288385", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1247028290/newslogo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1247028290/newslogo_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Confira as fotos do Culto de A\\u00E7\\u00E3o de gra\\u00E7as dos 10 anos da AD MSBN em Portugal. J\\u00E1 est\\u00E3o no site: http://t.co/Yioz2mjr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:37 +0000", "from_user": "brendonathansz", "from_user_id": 84251337, "from_user_id_str": "84251337", "from_user_name": ", pega eu ? ;9", "geo": null, "id": 148817271727468540, "id_str": "148817271727468545", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696466293/tw_12566625_1324043963_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696466293/tw_12566625_1324043963_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@positividadedis estados unidos , espanha , portugal u_u", "to_user": "positividadedis", "to_user_id": 373933534, "to_user_id_str": "373933534", "to_user_name": "\\u262E"}, +{"created_at": "Mon, 19 Dec 2011 17:29:33 +0000", "from_user": "atAyalaLand", "from_user_id": 307259720, "from_user_id_str": "307259720", "from_user_name": "Ayala Land Premier", "geo": null, "id": 148817258498625540, "id_str": "148817258498625537", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1373305697/ayala-land-logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1373305697/ayala-land-logo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF releases 2.9 bn euros to Portugal: WASHINGTON\\u00A0- The International Monetary Fund said Monday it would release... http://t.co/8VsJ2fCe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:31 +0000", "from_user": "JSAfonso", "from_user_id": 57688286, "from_user_id_str": "57688286", "from_user_name": "Joana Afonso", "geo": null, "id": 148817246997852160, "id_str": "148817246997852160", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Telefones fixos em Portugal atingem os 4,5 milh\\u00F5es: O n\\u00FAmero de telefones fixos em Portugal atingiu os 4,5 milh\\u00F5... http://t.co/pH5vAGTo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:25 +0000", "from_user": "x_ratedfor18", "from_user_id": 292563318, "from_user_id_str": "292563318", "from_user_name": "in\\u00EAs \\u2191", "geo": null, "id": 148817221492285440, "id_str": "148817221492285440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688928421/385848_195557043850470_100001885274864_458443_1934996427_s_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688928421/385848_195557043850470_100001885274864_458443_1934996427_s_normal.jpg", "source": "<a href="http://www.twocation.com/" rel="nofollow">Twocation</a>", "text": "My followers live in Brazil (68.4%), the U.S. (13.4%), Portugal (2.7%) & more. Create your map at http://t.co/baiihE1Y", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:13 +0000", "from_user": "katy_loves1D", "from_user_id": 424210202, "from_user_id_str": "424210202", "from_user_name": "catarina", "geo": null, "id": 148817172800606200, "id_str": "148817172800606208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1675950359/one_direction_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675950359/one_direction_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Real_Liam_Payne hi!! can you tweet me something in Portuguese? i love you so much plz tweeet me and follow me xx come to portugal :D", "to_user": "Real_Liam_Payne", "to_user_id": 158314798, "to_user_id_str": "158314798", "to_user_name": "Liam Payne"}, +{"created_at": "Mon, 19 Dec 2011 17:29:10 +0000", "from_user": "PortBestProp", "from_user_id": 168674484, "from_user_id_str": "168674484", "from_user_name": "Portugal Properties", "geo": null, "id": 148817158854549500, "id_str": "148817158854549504", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1082843346/1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1082843346/1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "2 bedroom apartment with pool in Vale de Lobo, Golden Triangle, Algarve, Portugal: http://t.co/7kRQqIYO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:10 +0000", "from_user": "BradHogan", "from_user_id": 65833320, "from_user_id_str": "65833320", "from_user_name": "Brad Hogan", "geo": null, "id": 148817158296711170, "id_str": "148817158296711168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1242289455/Da_Boss_11_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1242289455/Da_Boss_11_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:09 +0000", "from_user": "ramondeveciana", "from_user_id": 176011143, "from_user_id_str": "176011143", "from_user_name": "Ramon de Veciana", "geo": null, "id": 148817155650109440, "id_str": "148817155650109441", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1515615349/330257_2310633333590_1482085179_2736346_6100783_o__2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515615349/330257_2310633333590_1482085179_2736346_6100783_o__2__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @marti_saballs: #investidurarajoy Ojal\\u00E1 un d\\u00EDa un empresario catal\\u00E1n o riojano tenga las mismas normas en Lituania que en Portugal. Esto es igual a Europa.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:08 +0000", "from_user": "CeciPortugal", "from_user_id": 52564155, "from_user_id_str": "52564155", "from_user_name": "C\\u00E9ci Portugal", "geo": null, "id": 148817150080069630, "id_str": "148817150080069634", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702479039/303973_10150275093952756_508157755_8063137_6045177_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702479039/303973_10150275093952756_508157755_8063137_6045177_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Cansei do boneco de neve. Foto nova, direto de Portugal...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:06 +0000", "from_user": "portugalforum", "from_user_id": 41989700, "from_user_id_str": "41989700", "from_user_name": "portugalforum", "geo": null, "id": 148817142689710080, "id_str": "148817142689710080", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/487842239/pfo_icon_gr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/487842239/pfo_icon_gr_normal.jpg", "source": "<a href="http://www.portugalforum.org" rel="nofollow">portugalforum.org</a>", "text": "Goethe-Institut: Film: 09.12.2011, "Drift" von Max Hattler: Das InShadow-Festival ist mittlerweile eine http://t.co/ALt1P7kE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:03 +0000", "from_user": "msn_actualite", "from_user_id": 204807106, "from_user_id_str": "204807106", "from_user_name": "MSN", "geo": null, "id": 148817130828202000, "id_str": "148817130828201984", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1148044988/msn_butterfly_bigger_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1148044988/msn_butterfly_bigger_1__normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Le Fonds mon\\u00E9taire international a annonc\\u00E9 lu... http://t.co/Yoz6AkqJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:28:47 +0000", "from_user": "Tanmirt_", "from_user_id": 135252695, "from_user_id_str": "135252695", "from_user_name": "F.Y", "geo": null, "id": 148817061513146370, "id_str": "148817061513146368", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676130401/artists2.gif_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676130401/artists2.gif_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@mixour une fois au portugal une commer\\u00E7ante \\u00E9tait \\u00E9tonn\\u00E9e d'entendre qu'on venait du maroc. Pour elle au maroc on a que des chameaux...", "to_user": "mixour", "to_user_id": 43032605, "to_user_id_str": "43032605", "to_user_name": "\\u0631\\u0627\\u0633 \\u0627\\u0644\\u0639\\u0635\\u0627\\u0631\\u0629", "in_reply_to_status_id": 148810731599573000, "in_reply_to_status_id_str": "148810731599572992"}, +{"created_at": "Mon, 19 Dec 2011 17:28:28 +0000", "from_user": "PortBestProp", "from_user_id": 168674484, "from_user_id_str": "168674484", "from_user_name": "Portugal Properties", "geo": null, "id": 148816985743048700, "id_str": "148816985743048704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1082843346/1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1082843346/1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Farm 3,7 Ha with 5 bedroom modern Villa in Algoz, Silves, Algarve, Portugal: http://t.co/m9fTMZLm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:28:06 +0000", "from_user": "PedroNunesI", "from_user_id": 107472424, "from_user_id_str": "107472424", "from_user_name": "Pedro Nunes", "geo": null, "id": 148816892117790720, "id_str": "148816892117790720", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698751166/iphone_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698751166/iphone_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @PontoPOOP: Rihanna sofre racismo em Portugal http://t.co/kYjRiiFx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:27:57 +0000", "from_user": "PortBestProp", "from_user_id": 168674484, "from_user_id_str": "168674484", "from_user_name": "Portugal Properties", "geo": null, "id": 148816855736401920, "id_str": "148816855736401920", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1082843346/1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1082843346/1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "8 bedroom villa with pool in Vila Nova de Milfontes, Alentejo Coast, Portugal: http://t.co/HgHJVTcR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:27:54 +0000", "from_user": "Michielvandijl", "from_user_id": 344696044, "from_user_id_str": "344696044", "from_user_name": "Michiel van Dijl ", "geo": null, "id": 148816839521206270, "id_str": "148816839521206273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1474003153/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1474003153/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:27:32 +0000", "from_user": "PontoPOOP", "from_user_id": 404737389, "from_user_id_str": "404737389", "from_user_name": "Ponto POOP", "geo": null, "id": 148816750580994050, "id_str": "148816750580994048", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698389880/kkkkkkkkkkk_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698389880/kkkkkkkkkkk_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Rihanna sofre racismo em Portugal http://t.co/kYjRiiFx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:26:53 +0000", "from_user": "WeLuvSel_", "from_user_id": 143616280, "from_user_id_str": "143616280", "from_user_name": "Ro \\u2665", "geo": null, "id": 148816586432720900, "id_str": "148816586432720896", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698962484/icon_selena_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698962484/icon_selena_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @BillboardChart_: RIHANNA \\u00E9 v\\u00EDtima de racismo em hotel de Portugal: http://t.co/qDv67Xnn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:26:27 +0000", "from_user": "Prii_Moura_", "from_user_id": 180597873, "from_user_id_str": "180597873", "from_user_name": " Pr\\u03B9\\u0455c\\u03B9\\u017F\\u017F\\u03B1 M\\u03C3\\u03C5r\\u03B1 \\u2640", "geo": null, "id": 148816477850570750, "id_str": "148816477850570752", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1510177816/miniatura_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1510177816/miniatura_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Rihanna conta que foi v\\u00EDtima de racismo em Portugal: RIO - Nem as popstars est\\u00E3o livres de ouvir desaforos de pe... http://t.co/fVcXrt0s", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:26:27 +0000", "from_user": "MCeuRMP", "from_user_id": 62785709, "from_user_id_str": "62785709", "from_user_name": "C\\u00E9u", "geo": null, "id": 148816475220738050, "id_str": "148816475220738048", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1328335692/MCRMP3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1328335692/MCRMP3_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @itwitting Ministro da Administra\\u00E7\\u00E3o Interna anuncia mais equipas mistas de for\\u00E7as de seguran\\u00E7a e PJ ht.ly/849q0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:26:15 +0000", "from_user": "portugalforum", "from_user_id": 41989700, "from_user_id_str": "41989700", "from_user_name": "portugalforum", "geo": null, "id": 148816425576972300, "id_str": "148816425576972288", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/487842239/pfo_icon_gr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/487842239/pfo_icon_gr_normal.jpg", "source": "<a href="http://www.portugalforum.org" rel="nofollow">portugalforum.org</a>", "text": "Querida Angela ...: Portugal est\\u00E1 dar o seu melhor. Boas Festas. Licor Beir\\u00E3o 'envia prendas' a Merkel e Sarkozy - http://t.co/8V2toNli", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:26:10 +0000", "from_user": "maccua", "from_user_id": 66669250, "from_user_id_str": "66669250", "from_user_name": "Macua", "geo": null, "id": 148816404064387070, "id_str": "148816404064387072", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/368256411/tigrec_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/368256411/tigrec_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "#Portugal Re-Discovers Venture Capital. http://t.co/X18cZ6vo Via #Forbes #money", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:26:07 +0000", "from_user": "itwitting", "from_user_id": 26276346, "from_user_id_str": "26276346", "from_user_name": "ionline", "geo": null, "id": 148816391020097540, "id_str": "148816391020097538", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/199994060/i_icon150px_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/199994060/i_icon150px_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Ministro da Administra\\u00E7\\u00E3o Interna anuncia mais equipas mistas de for\\u00E7as de seguran\\u00E7a e PJ http://t.co/iMsRMMh3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:26:00 +0000", "from_user": "ViveikaEscobar", "from_user_id": 161042404, "from_user_id_str": "161042404", "from_user_name": "Viveika Escobar ", "geo": null, "id": 148816362154889200, "id_str": "148816362154889217", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1553517046/YO_DE_AZUL_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553517046/YO_DE_AZUL_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @laopinionpanama: La defensora Patria Portugal hace visita sorpresa a migraci\\u00F3n #laopinionpanama", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:25:40 +0000", "from_user": "SolOnline", "from_user_id": 19889294, "from_user_id_str": "19889294", "from_user_name": "Jornal SOL", "geo": null, "id": 148816281229983740, "id_str": "148816281229983744", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/79299615/sol_logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/79299615/sol_logo_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprovou mais 2,9 mil milh\\u00F5es para Portugal: O Fundo Monet\\u00E1rio Internacional (FMI) aprovou hoje a terceira tr... http://t.co/VVUlWSCr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:25:33 +0000", "from_user": "jay_jay_56", "from_user_id": 396879717, "from_user_id_str": "396879717", "from_user_name": "jason marques", "geo": null, "id": 148816247931412480, "id_str": "148816247931412481", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687283156/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687283156/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "R.I.P Tia:( even tho I dont c u like I would like to there's much love & prayers comin ur way from da U.S to Portugal RT If u hav a lost one", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:25:31 +0000", "from_user": "katy_loves1D", "from_user_id": 424210202, "from_user_id_str": "424210202", "from_user_name": "catarina", "geo": null, "id": 148816243506417660, "id_str": "148816243506417664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1675950359/one_direction_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675950359/one_direction_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@zaynmalik Hi! i love you so much plz tweet me and follow me xxx come to portugal", "to_user": "zaynmalik", "to_user_id": 176566242, "to_user_id_str": "176566242", "to_user_name": "zaynmalik1D"}, +{"created_at": "Mon, 19 Dec 2011 17:25:21 +0000", "from_user": "seunesquik_", "from_user_id": 79299539, "from_user_id_str": "79299539", "from_user_name": "Deve ser Vitor ! \\u264C", "geo": null, "id": 148816199843717120, "id_str": "148816199843717120", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1683613292/gnaartal_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683613292/gnaartal_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "(via @veja) \\n\\n FMI libera 2,9 bi de euros para Portugal\\n\\n: \\n \\n http://t.co/S96tIcgY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:25:18 +0000", "from_user": "SuperFeeds", "from_user_id": 396135907, "from_user_id_str": "396135907", "from_user_name": "Super Feeds", "geo": null, "id": 148816186493247500, "id_str": "148816186493247489", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1601520087/SuperFeeds_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601520087/SuperFeeds_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Veja \\u00BB \\n\\n FMI libera 2,9 bi de euros para Portugal\\n\\n http://t.co/Pn4V8AGx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:24:55 +0000", "from_user": "x_mereel", "from_user_id": 363608755, "from_user_id_str": "363608755", "from_user_name": "merel", "geo": null, "id": 148816089139253250, "id_str": "148816089139253248", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1550322490/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1550322490/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "the black eyed peas doen me nog steeds denken aan de party in een garage in portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:24:41 +0000", "from_user": "NunoNunes360", "from_user_id": 113097703, "from_user_id_str": "113097703", "from_user_name": "Nuno Nunes", "geo": null, "id": 148816030347706370, "id_str": "148816030347706368", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1615605049/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615605049/image_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "FMI completa segunda avalia\\u00E7\\u00E3o a Portugal e liberta mais 3 mil milh\\u00F5es http://t.co/ztwjiCJw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:24:41 +0000", "from_user": "NunoNunes360", "from_user_id": 113097703, "from_user_id_str": "113097703", "from_user_name": "Nuno Nunes", "geo": null, "id": 148816030335107070, "id_str": "148816030335107072", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1615605049/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615605049/image_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "M\\u00FAsica: Jazz volta \\u00E0 Pra\\u00E7a da Alegria com reabertura do Hot Clube de Portugal http://t.co/1MAOWr8w", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:24:35 +0000", "from_user": "paul_enos", "from_user_id": 216494726, "from_user_id_str": "216494726", "from_user_name": "Paola.", "geo": null, "id": 148816007622959100, "id_str": "148816007622959106", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702351776/oi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702351776/oi_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Portugal e o dupstep", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:24:24 +0000", "from_user": "HashLiyanag", "from_user_id": 406945025, "from_user_id_str": "406945025", "from_user_name": "hash*", "geo": null, "id": 148815961544327170, "id_str": "148815961544327170", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701680440/hey_it_s__me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701680440/hey_it_s__me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @VAHFansite: FACEBOOK UPDATED: http://t.co/a7lBCY9p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:24:24 +0000", "from_user": "Slider01100", "from_user_id": 56678668, "from_user_id_str": "56678668", "from_user_name": "slider", "geo": null, "id": 148815958759321600, "id_str": "148815958759321600", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1366040830/ghost_12583365291_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1366040830/ghost_12583365291_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "A obesidade infantil est\\u00E1 a aumentar em Portugal. Temos de ver as coisas pelo lado positivo, h\\u00E1 mais gordos para ir \\u00E0 baliza. A. Raminhos", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:24:15 +0000", "from_user": "Politica_I24", "from_user_id": 353857395, "from_user_id_str": "353857395", "from_user_name": "Pol\\u00EDtica 24", "geo": null, "id": 148815922650550270, "id_str": "148815922650550272", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1491963497/politica_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1491963497/politica_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "El FMI aprueba la entrega de 2.900 millones de euros para Portugal http://t.co/0OSuFFsN #Informador24", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:24:13 +0000", "from_user": "katy_loves1D", "from_user_id": 424210202, "from_user_id_str": "424210202", "from_user_name": "catarina", "geo": null, "id": 148815914677178370, "id_str": "148815914677178368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1675950359/one_direction_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675950359/one_direction_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Harry_Styles Hi!! you are my inspiration i love you so much. You can not imagine how. plz tweet me and follow me xxxx come to portugal", "to_user": "Harry_Styles", "to_user_id": 181561712, "to_user_id_str": "181561712", "to_user_name": "Harry Styles"}, +{"created_at": "Mon, 19 Dec 2011 17:24:08 +0000", "from_user": "gleeksunicorns", "from_user_id": 318711839, "from_user_id_str": "318711839", "from_user_name": "Maria and Sara", "geo": null, "id": 148815891272966140, "id_str": "148815891272966144", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702336915/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702336915/image_normal.jpg", "source": "<a href="http://twitcam.com" rel="nofollow">Twitcam.com</a>", "text": "eu tava com meus amigos em portugal ai meu amigo botou uma musica lmfao (@QuinneyCheerio live on http://t.co/c2UJpAzG)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:24:00 +0000", "from_user": "_agathabueno", "from_user_id": 282661312, "from_user_id_str": "282661312", "from_user_name": "' AgathaB. ", "geo": null, "id": 148815858708381700, "id_str": "148815858708381697", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1564470446/Foto_A0301_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1564470446/Foto_A0301_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Estou no Mc deis do 12:00 daqui de Portugal n\\u00E3o do Brasil s\\u00E3o s\\u00F3 2 horas de diferen\\u00E7a porque esta no horario de ver\\u00E3o se n\\u00E3o seri\\u00E3o 4 HASHA'", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:23:53 +0000", "from_user": "paul_enos", "from_user_id": 216494726, "from_user_id_str": "216494726", "from_user_name": "Paola.", "geo": null, "id": 148815831344742400, "id_str": "148815831344742400", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702351776/oi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702351776/oi_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Marcus Portugal:\\nmano se liga nos dedinhos nervosos dess cara!!!\\nse ele usar essa habilidade em outros lugares....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:23:41 +0000", "from_user": "98SpM", "from_user_id": 62036227, "from_user_id_str": "62036227", "from_user_name": "Radio Cantao FM", "geo": null, "id": 148815781487063040, "id_str": "148815781487063040", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1646523730/fm98_logo_normal.bmp", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646523730/fm98_logo_normal.bmp", "source": "<a href="http://twitter.com/">web</a>", "text": "Rihanna contou em seu Twitter que foi v\\u00EDtima de racismo em Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:23:40 +0000", "from_user": "HowardStump", "from_user_id": 382582430, "from_user_id_str": "382582430", "from_user_name": "Howard L. Stump", "geo": null, "id": 148815777229836300, "id_str": "148815777229836289", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1566400359/4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566400359/4_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "EU watchdog raids Brussels Airlines and TAP Portugal http://t.co/ufrvCcfw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:23:14 +0000", "from_user": "emmavallespinos", "from_user_id": 301919219, "from_user_id_str": "301919219", "from_user_name": "Emma Vallespin\\u00F3s", "geo": null, "id": 148815666366001150, "id_str": "148815666366001152", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1427255034/bigmouth_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1427255034/bigmouth_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Casi llego a Portugal buscando un buz\\u00F3n por el barrio", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:22:55 +0000", "from_user": "jbizarro", "from_user_id": 18973489, "from_user_id_str": "18973489", "from_user_name": "Jo\\u00E3o Bizarro", "geo": null, "id": 148815586766487550, "id_str": "148815586766487552", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1375387224/3961345c-23d7-4654-b152-62f2b431269e_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1375387224/3961345c-23d7-4654-b152-62f2b431269e_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @raminhoseffect: A obesidade infantil est\\u00E1 a aumentar em Portugal. Temos de ver as coisas pelo lado positivo, h\\u00E1 mais gordos para ir \\u00E0...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:22:51 +0000", "from_user": "awfullsinner", "from_user_id": 123118095, "from_user_id_str": "123118095", "from_user_name": "mayron", "geo": null, "id": 148815568668078080, "id_str": "148815568668078080", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693517105/ava1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693517105/ava1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @BillboardChart_: RIHANNA \\u00E9 v\\u00EDtima de racismo em hotel de Portugal: http://t.co/qDv67Xnn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:22:14 +0000", "from_user": "hernameissummer", "from_user_id": 73207213, "from_user_id_str": "73207213", "from_user_name": "Joana", "geo": null, "id": 148815414468673540, "id_str": "148815414468673537", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1572691166/tumblr_lsjlhjiPu71qcyne0o1_500_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572691166/tumblr_lsjlhjiPu71qcyne0o1_500_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @NunoCastanho: Quero uma Topshop em Portugal.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:22:10 +0000", "from_user": "brunoMJcustodio", "from_user_id": 84918596, "from_user_id_str": "84918596", "from_user_name": "Bruno Cust\\u00F3dio", "geo": null, "id": 148815396726775800, "id_str": "148815396726775808", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1635657534/keep_calm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635657534/keep_calm_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @raminhoseffect: A obesidade infantil est\\u00E1 a aumentar em Portugal. Temos de ver as coisas pelo lado positivo, h\\u00E1 mais gordos para ir \\u00E0 baliza.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:21:47 +0000", "from_user": "raminhoseffect", "from_user_id": 121167080, "from_user_id_str": "121167080", "from_user_name": "Ant\\u00F3nio Raminhos", "geo": null, "id": 148815300404588540, "id_str": "148815300404588544", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/740340309/DSC05041_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/740340309/DSC05041_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "A obesidade infantil est\\u00E1 a aumentar em Portugal. Temos de ver as coisas pelo lado positivo, h\\u00E1 mais gordos para ir \\u00E0 baliza.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:21:14 +0000", "from_user": "Yahoo_Finanzas", "from_user_id": 423687083, "from_user_id_str": "423687083", "from_user_name": "Yahoo! Finanzas", "geo": null, "id": 148815162265182200, "id_str": "148815162265182209", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1662982422/finanzas_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662982422/finanzas_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "El FMI aprueba la entrega de 2.900 millones de euros para Portugal http://t.co/1la3gxg0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:21:05 +0000", "from_user": "AntonioGuerra82", "from_user_id": 39727313, "from_user_id_str": "39727313", "from_user_name": "AntonioGG", "geo": null, "id": 148815127406317570, "id_str": "148815127406317568", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1377655654/311449655_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1377655654/311449655_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "El s\\u00E1bado le gan\\u00E9 al mejor jugador de Magic de la historia de Portugal y ni sab\\u00EDa quien era. Ahora soy algo as\\u00ED como la leyenda de la semana", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:21:02 +0000", "from_user": "carolinemjf", "from_user_id": 388804332, "from_user_id_str": "388804332", "from_user_name": "Carolina", "geo": null, "id": 148815115117019140, "id_str": "148815115117019136", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697173696/ffirle_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697173696/ffirle_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @NunoCastanho: Quero uma Topshop em Portugal.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:21:02 +0000", "from_user": "HomeInsurance_", "from_user_id": 341208226, "from_user_id_str": "341208226", "from_user_name": "Home Insurance", "geo": null, "id": 148815112965341200, "id_str": "148815112965341186", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.theleader.info/homeinsurance" rel="nofollow">Home Insurance</a>", "text": "CLASSIC HOME INSURANCE FOR SPAIN, GIBRALTAR, GREECE, AND PORTUGAL - http://t.co/bogKxtXN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:20:20 +0000", "from_user": "LairsonOVelho", "from_user_id": 261392341, "from_user_id_str": "261392341", "from_user_name": "Lairson Belmonte", "geo": null, "id": 148814935953121280, "id_str": "148814935953121284", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1263091307/eu1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263091307/eu1_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Rihanna conta que foi v\\u00EDtima de racismo em Portugal: RIO - Nem as popstars est\\u00E3o livres de ouvir desaforos de pe... http://t.co/wbfHlCZk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:20:12 +0000", "from_user": "negociosportuga", "from_user_id": 91605181, "from_user_id_str": "91605181", "from_user_name": "Neg\\u00F3cios Portugal", "geo": null, "id": 148814905271795700, "id_str": "148814905271795712", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/537215653/negocios_portugal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/537215653/negocios_portugal_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprovou mais 2,9 mil milh\\u00F5es para Portugal: O Fundo Monet\\u00E1rio Internacional (FMI) aprovou hoje a terceira tr... http://t.co/Ij2CtHh8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:20:00 +0000", "from_user": "rfam", "from_user_id": 14562164, "from_user_id_str": "14562164", "from_user_name": "Ricardo martins", "geo": null, "id": 148814852331282430, "id_str": "148814852331282432", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/962986564/Imagem4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/962986564/Imagem4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Richard Branson visitou portugal http://t.co/Mr44TtCw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:19:57 +0000", "from_user": "edmaisfm", "from_user_id": 335905862, "from_user_id_str": "335905862", "from_user_name": "EdMais Fm Web", "geo": null, "id": 148814840650149900, "id_str": "148814840650149889", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1443771373/edmais_fm_novo_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1443771373/edmais_fm_novo_1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Noticias: Rihanna \\u00E9 v\\u00EDtima de racismo num hotel em Portugal.Confira!acesse:http://t.co/BU12SMlm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:19:43 +0000", "from_user": "JohnPLooney", "from_user_id": 46089198, "from_user_id_str": "46089198", "from_user_name": "John Looney", "geo": null, "id": 148814780063428600, "id_str": "148814780063428608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/258683849/john_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/258683849/john_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\"@richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/GEUOLMEz\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:19:01 +0000", "from_user": "SilviaJB_pt", "from_user_id": 188001660, "from_user_id_str": "188001660", "from_user_name": "Silvia Alves", "geo": null, "id": 148814604070424580, "id_str": "148814604070424576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696821919/378611_271720259543701_197274640321597_629466_75201724_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696821919/378611_271720259543701_197274640321597_629466_75201724_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @itsladyrauhl: does someone know if \"Justin Bieber special shop\" really exists ? i need one in PORTUGAL :b i watched one in photos...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:18:18 +0000", "from_user": "TopTenENews", "from_user_id": 296645240, "from_user_id_str": "296645240", "from_user_name": "Richard Floyd", "geo": null, "id": 148814424084463600, "id_str": "148814424084463616", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1423378913/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1423378913/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #9426 PUBLICO: $9.99 O P\\u00FAblico \\u00E9 hoje um dos mais influentes jornais di\\u00E1rios em Portugal, oferecendo... http://t.co/NtXRhyh1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:18:15 +0000", "from_user": "PropAlgarve", "from_user_id": 119040556, "from_user_id_str": "119040556", "from_user_name": "Portugal", "geo": null, "id": 148814410960478200, "id_str": "148814410960478208", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/727685540/Dock_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/727685540/Dock_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @PortBestProp: 1 bedroom apartment with pool and seaview in Praia dos Aveiros, Albufeira, Algarve, Portugal: http://t.co/70uYtpnH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:18:00 +0000", "from_user": "Info_Ve", "from_user_id": 225647847, "from_user_id_str": "225647847", "from_user_name": "Info Venezuela", "geo": null, "id": 148814350726086660, "id_str": "148814350726086656", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664896061/e96c15f3-8715-4a0f-bb29-eb85ba48bdc2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664896061/e96c15f3-8715-4a0f-bb29-eb85ba48bdc2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "12:34 PM : FMI aprueba entrega de 2.900 millones de euros para Portugal http://t.co/eQOTMRC4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:18:00 +0000", "from_user": "PonGlobovision", "from_user_id": 187483920, "from_user_id_str": "187483920", "from_user_name": "Pon Globovision", "geo": null, "id": 148814349430038530, "id_str": "148814349430038528", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1118628282/taco2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1118628282/taco2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "12:34 PM : FMI aprueba entrega de 2.900 millones de euros para Portugal: FMI aprueba entrega de... http://t.co/ldkLxywm #PONGLOBOVISION", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:17:36 +0000", "from_user": "Musiquemag_Rap", "from_user_id": 211549816, "from_user_id_str": "211549816", "from_user_name": "Musiquemag Hip Hop", "geo": null, "id": 148814247613317120, "id_str": "148814247613317120", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1209265604/Logorap_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1209265604/Logorap_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "News / Rihanna trait\\u00E9e de \"chienne\" et de \"salope\": Rihanna a \\u00E9t\\u00E9 victime de propos racistes lors de son r\\u00E9cent ... http://t.co/in7Abv0H", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:17:26 +0000", "from_user": "Fuck_MeRob", "from_user_id": 216527594, "from_user_id_str": "216527594", "from_user_name": "JuH \\u2665", "geo": null, "id": 148814208677589000, "id_str": "148814208677588992", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693584351/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693584351/twitter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@aliciasilva2011 Eu sou de Portugal!", "to_user": "aliciasilva2011", "to_user_id": 230460633, "to_user_id_str": "230460633", "to_user_name": "Alicia-Robsten", "in_reply_to_status_id": 148814011222335500, "in_reply_to_status_id_str": "148814011222335488"}, +{"created_at": "Mon, 19 Dec 2011 17:17:24 +0000", "from_user": "ruylencastre", "from_user_id": 154576486, "from_user_id_str": "154576486", "from_user_name": "ruylencastre", "geo": null, "id": 148814198430908400, "id_str": "148814198430908418", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1607155918/ruylencastre_photographer_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607155918/ruylencastre_photographer_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "e portugal, n\\u00E3o??? gostava de os ver c\\u00E1!!!! http://t.co/QkRKr3QH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:17:01 +0000", "from_user": "Jessicaaj_", "from_user_id": 67719210, "from_user_id_str": "67719210", "from_user_name": "fernando belluschi \\u2661", "geo": null, "id": 148814103241170940, "id_str": "148814103241170944", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700632597/sfasdfsaf_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700632597/sfasdfsaf_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @fbelluschi_fans: N\\u00E3o se esque\\u00E7am de ir participando no passatempo! T\\u00EAm at\\u00E9 dia 22! http://t.co/U5jzJAKE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:16:57 +0000", "from_user": "RRCabrita", "from_user_id": 60937861, "from_user_id_str": "60937861", "from_user_name": "RCabrita", "geo": null, "id": 148814087416066050, "id_str": "148814087416066049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/711342546/Picture0003_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/711342546/Picture0003_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @PortBestProp: 6 bedroom farm with permit for Rural Tourism with pool in Sesimbra, Blue Coast, Costa Azul, Portugal: http://t.co/yjrT8ZGC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:16:57 +0000", "from_user": "AmandaSoberana", "from_user_id": 79748468, "from_user_id_str": "79748468", "from_user_name": "Amanda K. & Eliton", "geo": null, "id": 148814083578269700, "id_str": "148814083578269699", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685350571/DSC02627_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685350571/DSC02627_normal.JPG", "source": "<a href="http://messaging.nokia.com/site/main.do" rel="nofollow"> Ovi by Nokia </a>", "text": "@benzinho1992 kkkk t\\u00E1 se achando que tem belos carros na garagem kkkkkkkkk. Em Portugal tudo \\u00E9 mais barato que aqui, infelizmente.", "to_user": "benzinho1992", "to_user_id": 307717988, "to_user_id_str": "307717988", "to_user_name": "ruben maravalhas", "in_reply_to_status_id": 148813672393879550, "in_reply_to_status_id_str": "148813672393879552"}, +{"created_at": "Mon, 19 Dec 2011 17:16:00 +0000", "from_user": "BWAlfonsoXIII", "from_user_id": 77447915, "from_user_id_str": "77447915", "from_user_name": "BW Hotel AlfonsoXIII", "geo": null, "id": 148813845899649020, "id_str": "148813845899649024", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1288253798/img_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1288253798/img_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Otro a\\u00F1o m\\u00E1s y ya van 3 consecutivos @BWAlfonsoXIII recibe el Premio a la Calidad que otorga Best Western Internacional http://t.co/TUfcYJ9N", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:15:48 +0000", "from_user": "istorikilti", "from_user_id": 216100306, "from_user_id_str": "216100306", "from_user_name": "istorikilti", "geo": null, "id": 148813795240845300, "id_str": "148813795240845312", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1171907369/18358_279685460627_651810627_4471707_7335702_n_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1171907369/18358_279685460627_651810627_4471707_7335702_n_1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Rihanna enceinte : Elle fait actuellement le Buzz sur le Net, apres etre aller vomir alors qu'elle donnait un concert au Portugal.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:15:40 +0000", "from_user": "jotorres_c", "from_user_id": 372753087, "from_user_id_str": "372753087", "from_user_name": "Jonathan Torres", "geo": null, "id": 148813762848239600, "id_str": "148813762848239618", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @fran_concha: @biobio corte de luz torre 15 de la U. Chile portugal c/n Diag Paraguay", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:15:37 +0000", "from_user": "joostmaglev", "from_user_id": 78999754, "from_user_id_str": "78999754", "from_user_name": "Joost Maglev", "geo": null, "id": 148813749300641800, "id_str": "148813749300641792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1587745524/3fa5592d-a0da-4cac-b3a4-219f5f4194af_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587745524/3fa5592d-a0da-4cac-b3a4-219f5f4194af_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:12:15 +0000", "from_user": "RevistaMegazine", "from_user_id": 17741660, "from_user_id_str": "17741660", "from_user_name": "RevistaMegazine", "geo": null, "id": 148812904853012480, "id_str": "148812904853012481", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/381167051/logo_normal.bmp", "profile_image_url_https": "https://si0.twimg.com/profile_images/381167051/logo_normal.bmp", "source": "<a href="http://twitter.com/">web</a>", "text": "Rihanna conta que foi v\\u00EDtima de racismo: \"Um homem disse que as mulheres negras s\\u00E3o cadelas\" - http://t.co/Szmq3ou5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:10:49 +0000", "from_user": "renatojatahy", "from_user_id": 62842219, "from_user_id_str": "62842219", "from_user_name": "Renato Jatahy", "geo": null, "id": 148812542767136770, "id_str": "148812542767136768", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1157058329/02_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1157058329/02_normal.JPG", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "I'm at Banco Do Brasil (R. Portugal, 1086-1160 - Japiim, Manaus) http://t.co/da0rbHMJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:09:29 +0000", "from_user": "Cindymarchh", "from_user_id": 84753702, "from_user_id_str": "84753702", "from_user_name": "Cindymarch Celina", "geo": null, "id": 148812208397226000, "id_str": "148812208397225985", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689249742/5688_1078407409108_1493941064_30226773_2779016_a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689249742/5688_1078407409108_1493941064_30226773_2779016_a_normal.jpg", "source": "<a href="http://twitter.com/ScholarshipsGL" rel="nofollow">Scholarships Beasiswa</a>", "text": "RT @BeasiswaIndo: RT @ScholarshipsEU: http://t.co/iQ2Fksuj beasiswa S2 Geospatial Erasmus Mundus di JERMAN, SPANYOL & PORTUGAL ~1912", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:01:52 +0000", "from_user": "Karissazva", "from_user_id": 440212944, "from_user_id_str": "440212944", "from_user_name": "Karissa Prowse", "geo": null, "id": 148810291461890050, "id_str": "148810291461890048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700575222/large_2011-02-04_22-05-48.691_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700575222/large_2011-02-04_22-05-48.691_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Travels in Portugal: Many of the earliest books, particularly those dating back to the 1900s and before, are now... http://t.co/21vxaCzN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:01:20 +0000", "from_user": "MusiqueMag", "from_user_id": 72047652, "from_user_id_str": "72047652", "from_user_name": "MusiqueMag", "geo": null, "id": 148810153473486850, "id_str": "148810153473486848", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/420129368/logo-carre_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/420129368/logo-carre_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "News / Rihanna trait\\u00E9e de \"chienne\" et de \"salope\": Rihanna a \\u00E9t\\u00E9 victime de propos racistes lors de son r\\u00E9cent ... http://t.co/UE8CM7dp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:00:55 +0000", "from_user": "InnaMood", "from_user_id": 243545094, "from_user_id_str": "243545094", "from_user_name": "Kelly", "geo": null, "id": 148810050171961340, "id_str": "148810050171961344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695400232/bazooka_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695400232/bazooka_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @FGoria: IMF approves EUR 2.9bln disbursement to Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:59:45 +0000", "from_user": "ALHOUSS", "from_user_id": 127706842, "from_user_id_str": "127706842", "from_user_name": "Alhousseyni TOURE", "geo": null, "id": 148809758428762100, "id_str": "148809758428762113", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1235944165/DSC01461_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1235944165/DSC01461_normal.JPG", "source": "<a href="http://www.rfi.fr" rel="nofollow">Rfi Update</a>", "text": "RT @RFI: Feu vert du FMI pour un versement de 2,9 milliards d'euros au Portugal http://t.co/XvoYj2pa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:59:32 +0000", "from_user": "JBrosPortugal", "from_user_id": 147680730, "from_user_id_str": "147680730", "from_user_name": "Jonas.BTR.1D", "geo": null, "id": 148809704343207940, "id_str": "148809704343207936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693522535/tumblr_lw6qjyq5kQ1r3mpd1o1_500_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693522535/tumblr_lw6qjyq5kQ1r3mpd1o1_500_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@AndySamuels31 Have u ever been to Portugal? (Follow me plz)", "to_user": "AndySamuels31", "to_user_id": 234770365, "to_user_id_str": "234770365", "to_user_name": "Andy Samuels"}, +{"created_at": "Mon, 19 Dec 2011 16:59:32 +0000", "from_user": "rihannaupdate1", "from_user_id": 427326711, "from_user_id_str": "427326711", "from_user_name": "Rihanna", "geo": null, "id": 148809702841655300, "id_str": "148809702841655297", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1671241327/rihanna_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671241327/rihanna_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Rihanna Tweets About Racist in Portugal - Opposing Views: Rihanna took to her Twitter to rant about a man who wa... http://t.co/aVEgE310", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:58:55 +0000", "from_user": "txetito", "from_user_id": 391095439, "from_user_id_str": "391095439", "from_user_name": "txeto", "geo": null, "id": 148809547232968700, "id_str": "148809547232968704", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1588724928/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1588724928/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@preppylaura @BARA_KOLDO acaba de venir de Portugal, se habra agitanao!! ademas tanto rayo uva al final no tiene ke ser bueno.....", "to_user": "preppylaura", "to_user_id": 283228010, "to_user_id_str": "283228010", "to_user_name": "Laura", "in_reply_to_status_id": 148805289469153280, "in_reply_to_status_id_str": "148805289469153280"}, +{"created_at": "Mon, 19 Dec 2011 16:56:58 +0000", "from_user": "MrHairoGM", "from_user_id": 312866084, "from_user_id_str": "312866084", "from_user_name": "\\u0126a\\u00EFro \\u2649 \\u0122alindez", "geo": null, "id": 148809058151960580, "id_str": "148809058151960577", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699284992/331633326_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699284992/331633326_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @RihannaNavyRD: Rihanna Fue Victima de Racismo En Portugal http://t.co/nuSHkuUH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:55:32 +0000", "from_user": "ConexaoLanzaRJ", "from_user_id": 236238247, "from_user_id_str": "236238247", "from_user_name": "Eu pedi voc\\u00EA Pepe \\u263B", "geo": null, "id": 148808695269167100, "id_str": "148808695269167105", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702490992/PQAAAPdnrNeyTWru-HN8Br-4lVk9CfgY-Uz_wPb7Gnbom-9WlpnI0a76aNOfpmzIHShwj8NMNjvtEsw-93E2-GY4sEwAm1T1UIbVuwlgB6Nbin-d4ng934XoUiB6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702490992/PQAAAPdnrNeyTWru-HN8Br-4lVk9CfgY-Uz_wPb7Gnbom-9WlpnI0a76aNOfpmzIHShwj8NMNjvtEsw-93E2-GY4sEwAm1T1UIbVuwlgB6Nbin-d4ng934XoUiB6_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Pe\\u00E7a \\u201CMenina Estranha- Restart\\u201D na r\\u00E1dio \\u201CMega FM\\u201D de Portugal, atrav\\u00E9s destes e-mails: mail@megahits.fm / porto@megahits.fm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:55:20 +0000", "from_user": "afreeknews", "from_user_id": 365946534, "from_user_id_str": "365946534", "from_user_name": "afreeknews.com", "geo": null, "id": 148808644018962430, "id_str": "148808644018962432", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1523419174/icon_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1523419174/icon_normal.gif", "source": "<a href="http://afreeknews.com" rel="nofollow">Afreeknewscorp</a>", "text": "\\u00C9tats-Unis - Le FMI approuve un versement de 2,9 milliards d'euros au Portugal\\nhttp://t.co/6wkvR0ic", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} + +] diff --git a/samples/wikipedia.json b/samples/wikipedia.json new file mode 100644 index 0000000..2624199 --- /dev/null +++ b/samples/wikipedia.json @@ -0,0 +1,23 @@ +{ + "firstName": "John", + "lastName" : "Smith", + "age" : 25, + "address" : + { + "streetAddress": "21 2nd Street", + "city" : "New York", + "state" : "NY", + "postalCode" : "10021" + }, + "phoneNumber": + [ + { + "type" : "home", + "number": "212 555-1234" + }, + { + "type" : "fax", + "number": "646 555-4567" + } + ] + } \ No newline at end of file diff --git a/test/basic.js b/test/basic.js new file mode 100644 index 0000000..aad93db --- /dev/null +++ b/test/basic.js @@ -0,0 +1,180 @@ +var BASIC = [ + { + }, + { + "image": [ + {"shape": "rect", "fill": "#333", "stroke": "#999", "x": 0.5, "y": 0.5, "width": 47, "height": 47} + ], + "jumpable": 3, + "solid": { + "1": [2,4], + "2": [], + "3": [2,6], + "4": [], + "5": [2,8,1,3,7,9,4,6], + "6": [], + "7": [4,8], + "8": [], + "9": [6,8] + }, + "corners": {"1": true,"3": true,"7": true,"9": true} + }, + { + "image": [ + {"shape": "polygon", "fill": "#248", "stroke": "#48f", "points": [[0.5,47.5],[47.5,47.5],[47.5,0.5]]} + ], + "solid": { + "1": [2,4], + "2": [1], + "3": [2], + "4": [], + "5": [2,8,1,3,7,9,4,6], + "6": [], + "7": [4,8], + "8": [], + "9": [6,8] + }, + "corners": {"1": true,"3": true,"7": false,"9": true} + }, + { + "image": [ + {"shape": "polygon", "fill": "#248", "stroke": "#48f", "points": [[0.5,0.5],[47.5,47.5],[0.5,47.5]]} + ], + "solid": { + "1": [2], + "2": [3], + "3": [2,6], + "4": [], + "5": [2,8,1,3,7,9,4,6], + "6": [], + "7": [4,8], + "8": [], + "9": [6,8] + }, + "corners": {"1": true,"3": true,"7": true,"9": false} + }, + { + "image": [ + {"shape": "polygon", "fill": "#333", "stroke": "#999", "points": [[0.5,0.5],[47.5,47.5],[47.5,0.5]]} + ], + "jumpable": 3, + "solid": { + "1": [2,4], + "2": [], + "3": [2,6], + "4": [], + "5": [2,8,1,3,7,9,4,6], + "6": [3], + "7": [4,8], + "8": [7], + "9": [6,8] + }, + "corners": {"1": false,"3": true,"7": true,"9": true} + }, + { + "image": [ + {"shape": "polygon", "fill": "#333", "stroke": "#999", "points": [[0.5,0.5],[0.5,47.5],[47.5,0.5]]} + ], + "jumpable": 3, + "solid": { + "1": [2,4], + "2": [], + "3": [2,6], + "4": [1], + "5": [2,8,1,3,7,9,4,6], + "6": [], + "7": [4,8], + "8": [9], + "9": [6,8] + }, + "corners": {"1": true,"3": false,"7": true,"9": true} + }, + { + "image": [ + {"shape": "polygon", "fill": "#482", "stroke": "#8f4", "points": [[0.5,47.5],[0.5,23.5],[24.5,23.5],[24.5,0.5],[47.5,0.5],[47.5,47.5]]} + ], + "jumpable": 3, + "solid": { + "1": [2,4], + "2": [], + "3": [6,2], + "4": [], + "5": [2,8,1,3,7,9,4,6], + "6": [9], + "7": [4,8], + "8": [], + "9": [6,8] + }, + "corners": {"1": true,"3": true,"7": false,"9": true} + }, + { + "image": [ + {"shape": "polygon", "fill": "#482", "stroke": "#8f4", "points": [[0.5,0.5],[23.5,0.5],[23.5,24.5],[47.5,24.5],[47.5,47.5],[0.5,47.5]]} + ], + "jumpable": 3, + "solid": { + "1": [4,2], + "2": [], + "3": [2,6], + "4": [7], + "5": [2,8,1,3,7,9,4,6], + "6": [], + "7": [4,8], + "8": [], + "9": [6,8] + }, + "corners": {"1": true,"3": true,"7": true,"9": false} + }, + { + "image": [ + {"shape": "circle", "fill": "#ff0", "stroke": "#ff8", "cx": 24, "cy": 24, "r": 18} + ], + "item": true + }, + { + "image": [ + {"shape": "polygon", "fill": "#842", "stroke": "#f84", "points": [[4.5,0.5],[14.5,0.5],[14.5,17.5],[34,17.5],[33.5,0.5],[43.5,0.5],[43.5,47.5],[33.5,47.5],[33.5,30.5],[14.5,30.5],[14.5,47.5],[4.5,47.5]]} + ], + "jumpable": 3 + }, + { + "image": [ + {"shape": "polygon", "fill": "#333", "stroke": "#999", "points": [[0.5,0.5],[47.5,0.5],[24,47.5]]} + ], + "jumpable": 3, + "solid": { + "1": [2,4], + "2": [], + "3": [2,6], + "4": [1], + "5": [2,8,1,3,7,9,4,6], + "6": [3], + "7": [4,8], + "8": [], + "9": [6,8] + }, + "corners": {"1": false,"3": false,"7": true,"9": true} + }, + { + "image": [ + {"shape": "rect", "fill": "#114acb", "x": 0.5, "y": 0.5, "width": 47, "height": 47}, + {"shape": "polygon", "fill": "rgba(255,255,255,0.30)", "points": [[0.5,0.5],[47.5,0.5],[40,8],[8,8],[8,40],[0.5,47.5]]}, + {"shape": "polygon", "fill": "rgba(0,0,0,0.30)", "points": [[47.5,0.5],[48,48],[0.5,47.5],[8,40],[40,40],[40,8]]}, + {"shape": "polygon", "fill": "rgb(255,255,0)", "stroke": "rgba(255,255,0,0.5)", "points": [[24,9],[35,20],[26,29],[26,33],[22,33],[22,27],[29,20],[24,15],[16,23],[13,20]]}, + {"shape": "rect", "fill": "rgb(255,255,0)", "stroke": "rgba(255,255,0,0.5)", "x": 22, "y":35, "width": 4, "height": 4} + ], + "item": true + }, + { + "image": [ + {"shape": "circle", "fill": "#80f", "stroke": "#88f", "cx": 24, "cy": 24, "r": 18} + ], + "item": true + }, + { + "image": [ + {"shape": "circle", "fill": "#4f4", "stroke": "#8f8", "cx": 24, "cy": 24, "r": 18} + ], + "item": true + } +] \ No newline at end of file diff --git a/test/bench.html b/test/bench.html new file mode 100644 index 0000000..f3ec0ef --- /dev/null +++ b/test/bench.html @@ -0,0 +1,28 @@ + + + clarinet.js profiler + + + + + + + + + + \ No newline at end of file diff --git a/test/buffer-overrun.js b/test/buffer-overrun.js deleted file mode 100644 index 8d12fac..0000000 --- a/test/buffer-overrun.js +++ /dev/null @@ -1,25 +0,0 @@ -// set this really low so that I don't have to put 64 MB of xml in here. -var sax = require("../lib/sax") -var bl = sax.MAX_BUFFER_LENGTH -sax.MAX_BUFFER_LENGTH = 5; - -require(__dirname).test({ - expect : [ - ["error", "Max buffer length exceeded: tagName\nLine: 0\nColumn: 15\nChar: "], - ["error", "Max buffer length exceeded: tagName\nLine: 0\nColumn: 30\nChar: "], - ["error", "Max buffer length exceeded: tagName\nLine: 0\nColumn: 45\nChar: "], - ["opentag", { - "name": "ABCDEFGHIJKLMNOPQRSTUVWXYZABCDEFGHIJKLMNOPQRSTUVWXYZ", - "attributes": {} - }], - ["text", "yo"], - ["closetag", "ABCDEFGHIJKLMNOPQRSTUVWXYZABCDEFGHIJKLMNOPQRSTUVWXYZ"] - ] -}).write("") - .write("yo") - .write("") - .close(); -sax.MAX_BUFFER_LENGTH = bl diff --git a/test/cdata-chunked.js b/test/cdata-chunked.js deleted file mode 100644 index ccd5ee6..0000000 --- a/test/cdata-chunked.js +++ /dev/null @@ -1,11 +0,0 @@ - -require(__dirname).test({ - expect : [ - ["opentag", {"name": "R","attributes": {}}], - ["opencdata", undefined], - ["cdata", " this is character data  "], - ["closecdata", undefined], - ["closetag", "R"] - ] -}).write("").close(); - diff --git a/test/cdata-end-split.js b/test/cdata-end-split.js deleted file mode 100644 index b41bd00..0000000 --- a/test/cdata-end-split.js +++ /dev/null @@ -1,15 +0,0 @@ - -require(__dirname).test({ - expect : [ - ["opentag", {"name": "R","attributes": {}}], - ["opencdata", undefined], - ["cdata", " this is "], - ["closecdata", undefined], - ["closetag", "R"] - ] -}) - .write("") - .write("") - .close(); - diff --git a/test/cdata-fake-end.js b/test/cdata-fake-end.js deleted file mode 100644 index 07aeac4..0000000 --- a/test/cdata-fake-end.js +++ /dev/null @@ -1,28 +0,0 @@ - -var p = require(__dirname).test({ - expect : [ - ["opentag", {"name": "R","attributes": {}}], - ["opencdata", undefined], - ["cdata", "[[[[[[[[]]]]]]]]"], - ["closecdata", undefined], - ["closetag", "R"] - ] -}) -var x = "" -for (var i = 0; i < x.length ; i ++) { - p.write(x.charAt(i)) -} -p.close(); - - -var p2 = require(__dirname).test({ - expect : [ - ["opentag", {"name": "R","attributes": {}}], - ["opencdata", undefined], - ["cdata", "[[[[[[[[]]]]]]]]"], - ["closecdata", undefined], - ["closetag", "R"] - ] -}) -var x = "" -p2.write(x).close(); diff --git a/test/cdata-multiple.js b/test/cdata-multiple.js deleted file mode 100644 index dab2015..0000000 --- a/test/cdata-multiple.js +++ /dev/null @@ -1,15 +0,0 @@ - -require(__dirname).test({ - expect : [ - ["opentag", {"name": "R","attributes": {}}], - ["opencdata", undefined], - ["cdata", " this is "], - ["closecdata", undefined], - ["opencdata", undefined], - ["cdata", "character data  "], - ["closecdata", undefined], - ["closetag", "R"] - ] -}).write("").write("").close(); - diff --git a/test/cdata.js b/test/cdata.js deleted file mode 100644 index 0f09cce..0000000 --- a/test/cdata.js +++ /dev/null @@ -1,10 +0,0 @@ -require(__dirname).test({ - xml : "", - expect : [ - ["opentag", {"name": "R","attributes": {}}], - ["opencdata", undefined], - ["cdata", " this is character data  "], - ["closecdata", undefined], - ["closetag", "R"] - ] -}); diff --git a/test/clarinet.js b/test/clarinet.js new file mode 100644 index 0000000..62a0190 --- /dev/null +++ b/test/clarinet.js @@ -0,0 +1,823 @@ +if (!clarinet) { // node + var clarinet = require('../clarinet.js') + , _ = require('underscore') + ; +} + +function assert(expr, msg) { + if (!expr) { + throw new Error(msg || 'failed'); + } +} + +var seps = [undefined, /\t|\n|\r/, ''] + , sep + , docs = + { empty_array : + { text : '[]' + , events : + [ ['openarray' , undefined] + , ['closearray' , undefined] + , ['end' , undefined] + , ['ready' , undefined] + ] + } + , just_slash : + { text : '["\\\\"]' + , events : + [ ['openarray' , undefined] + , ["value" , "\\"] + , ['closearray' , undefined] + , ['end' , undefined] + , ['ready' , undefined] + ] + } + , zero_byte : + { text : '{"foo": "\\u0000"}' + , events : + [ ["openobject" , "foo"] + , ["value" , "\u0000"] + , ["closeobject" , undefined] + , ['end' , undefined] + , ['ready' , undefined] + ] + } + , empty_value : + { text : '{"foo": ""}' + , events : + [ ["openobject" , "foo"] + , ["value" , ""] + , ["closeobject" , undefined] + , ['end' , undefined] + , ['ready' , undefined] + ] + } + , empty_key : + { text : '{"foo": "bar", "": "baz"}' + , events : + [ ["openobject" , "foo"] + , ["value" , "bar"] + , ["key" , ""] + , ["value" , "baz"] + , ["closeobject" , undefined] + , ['end' , undefined] + , ['ready' , undefined] + ] + } + , three_byte_utf8 : + { text : '{"matzue": "松江", "asakusa": "浅草"}' + , events : + [ ["openobject" , "matzue"] + , ["value" , "松江"] + , ["key" , "asakusa"] + , ["value" , "浅草"] + , ["closeobject" , undefined] + , ['end' , undefined] + , ['ready' , undefined] + ] + } + , four_byte_utf8 : + { text : '{ "U+10ABCD": "" }' + , events : + [ ["openobject" , "U+10ABCD"] + , ["value" , ""] + , ["closeobject" , undefined] + , ['end' , undefined] + , ['ready' , undefined] + ] + } + , bulgarian : + { text : '["Да Му Еба Майката"]' + , events : + [ ["openarray" , undefined] + , ["value" , "Да Му Еба Майката"] + , ["closearray" , undefined] + , ['end' , undefined] + , ['ready' , undefined] + ] + } + , codepoints_from_unicodes : + { text : '["\\u004d\\u0430\\u4e8c\\ud800\\udf02"]' + , events : + [ ["openarray" , undefined] + , ["value" , "\u004d\u0430\u4e8c\ud800\udf02"] + , ["closearray" , undefined] + , ['end' , undefined] + , ['ready' , undefined] + ] + } + , empty_object : + { text : '{}' + , events : + [ ["openobject" , undefined] + , ["closeobject" , undefined] + , ['end' , undefined] + , ['ready' , undefined] + ] + } + , foobar : + { text : '{"foo": "bar"}' + , events : + [ ["openobject" , "foo"] + , ["value" , "bar"] + , ["closeobject" , undefined] + , ['end' , undefined] + , ['ready' , undefined] + ] + } + , as_is : + { text : "{\"foo\": \"its \\\"as is\\\", \\\"yeah\", \"bar\": false}" + , events : + [ ["openobject" , "foo"] + , ["value" , 'its "as is", "yeah'] + , ["key" , "bar"] + , ["value" , false] + , ["closeobject" , undefined] + , ['end' , undefined] + , ['ready' , undefined] + ] + } + , array : + { text : '["one", "two"]' + , events : + [ ['openarray' , undefined] + , ['value' , 'one'] + , ['value' , 'two'] + , ['closearray' , undefined] + , ['end' , undefined] + , ['ready' , undefined] + ] + } + , array_fu : + { text : '["foo", "bar", "baz",true,false,null,{"key":"value"},' + + '[null,null,null,[]]," \\\\ "]' + , events : + [ ['openarray' , undefined] + , ['value' , 'foo'] + , ['value' , 'bar'] + , ['value' , 'baz'] + , ['value' , true] + , ['value' , false] + , ['value' , null] + , ['openobject' , 'key'] + , ['value' , "value"] + , ["closeobject" , undefined] + , ['openarray' , undefined] + , ['value' , null] + , ['value' , null] + , ['value' , null] + , ['openarray' , undefined] + , ['closearray' , undefined] + , ['closearray' , undefined] + , ['value' , " \\ "] + , ['closearray' , undefined] + , ['end' , undefined] + , ['ready' , undefined] + ] + } + , simple_exp : + { text : '[10e-01]' + , events : + [ ['openarray' , undefined] + , ['value' , 10e-01] + , ['closearray' , undefined] + , ['end' , undefined] + , ['ready' , undefined] + ] + } + , nested : + { text : '{"a":{"b":"c"}}' + , events : + [ ["openobject" , "a"] + , ["openobject" , "b"] + , ["value" , "c"] + , ["closeobject" , undefined] + , ["closeobject" , undefined] + , ['end' , undefined] + , ['ready' , undefined] + ] + } + , nested_array : + { text : '{"a":["b", "c"]}' + , events : + [ ["openobject" , "a"] + , ['openarray' , undefined] + , ['value' , 'b'] + , ['value' , 'c'] + , ['closearray' , undefined] + , ["closeobject" , undefined] + , ['end' , undefined] + , ['ready' , undefined] + ] + } + , array_of_objs : + { text : '[{"a":"b"}, {"c":"d"}]' + , events : + [ ['openarray' , undefined] + , ["openobject" , 'a'] + , ['value' , 'b'] + , ["closeobject" , undefined] + , ["openobject" , 'c'] + , ['value' , 'd'] + , ["closeobject" , undefined] + , ['closearray' , undefined] + , ['end' , undefined] + , ['ready' , undefined] + ] + } + , two_keys : + { text : '{"a": "b", "c": "d"}' + , events : + [ ["openobject" , "a"] + , ["value" , "b"] + , ["key" , "c"] + , ["value" , "d"] + , ["closeobject" , undefined] + , ['end' , undefined] + , ['ready' , undefined] + ] + } + , key_true : + { text : '{"foo": true, "bar": false, "baz": null}' + , events : + [ ["openobject" , "foo"] + , ["value" , true] + , ["key" , "bar"] + , ["value" , false] + , ["key" , "baz"] + , ["value" , null] + , ["closeobject" , undefined] + , ['end' , undefined] + , ['ready' , undefined] + ] + } + , obj_strange_strings : + { text : + '{"foo": "bar and all\\\"", "bar": "its \\\"nice\\\""}' + , events : + [ ["openobject" , "foo"] + , ["value" , 'bar and all"'] + , ["key" , "bar"] + , ["value" , 'its "nice"'] + , ["closeobject" , undefined] + , ['end' , undefined] + , ['ready' , undefined] + ] + } + , bad_foo_bar : + { text : + '["foo", "bar"' + , events : + [ ["openarray" , undefined] + , ["value" , 'foo'] + , ["value" , 'bar'] + , ['error' , undefined] + , ['end' , undefined] + , ['ready' , undefined] + ] + } + , string_invalid_escape: + { text : + '["and you can\'t escape thi\s"]' + , events : + [ ["openarray" , undefined] + , ["value" , 'and you can\'t escape this'] + , ["closearray" , undefined] + , ['end' , undefined] + , ['ready' , undefined] + ] + } + , nuts_and_bolts : + { text : '{"boolean, true": true' + + ', "boolean, false": false' + + ', "null": null }' + , events : + [ ["openobject" , "boolean, true"] + , ["value" , true] + , ["key" , "boolean, false"] + , ["value" , false] + , ["key" , "null"] + , ["value" , null] + , ["closeobject" , undefined] + , ['end' , undefined] + , ['ready' , undefined] + ] + } + , frekin_string: + { text : '["\\\\\\"\\"a\\""]' + , events : + [ ["openarray" , undefined] + , ["value" , '\\\"\"a\"'] + , ["closearray" , undefined] + , ['end' , undefined] + , ['ready' , undefined] + ] + } + , array_of_string_insanity : + { text : '["\\\"and this string has an escape at the beginning",' + + '"and this string has no escapes"]' + , events : + [ ["openarray" , undefined] + , ["value" , "\"and this string has an escape at the beginning"] + , ["value" , "and this string has no escapes"] + , ["closearray" , undefined] + , ['end' , undefined] + , ['ready' , undefined] + ] + } + , non_utf8 : + { text : + '{"CoreletAPIVersion":2,"CoreletType":"standalone",' + + '"documentation":"A corelet that provides the capability to upload' + + ' a folder’s contents into a user’s locker.","functions":[' + + '{"documentation":"Displays a dialog box that allows user to ' + + 'select a folder on the local system.","name":' + + '"ShowBrowseDialog","parameters":[{"documentation":"The ' + + 'callback function for results.","name":"callback","required":' + + 'true,"type":"callback"}]},{"documentation":"Uploads all mp3 files' + + ' in the folder provided.","name":"UploadFolder","parameters":' + + '[{"documentation":"The path to upload mp3 files from."' + + ',"name":"path","required":true,"type":"string"},{"documentation":' + + ' "The callback function for progress.","name":"callback",' + + '"required":true,"type":"callback"}]},{"documentation":"Returns' + + ' the server name to the current locker service.",' + + '"name":"GetLockerService","parameters":[]},{"documentation":' + + '"Changes the name of the locker service.","name":"SetLockerSer' + + 'vice","parameters":[{"documentation":"The value of the locker' + + ' service to set active.","name":"LockerService","required":true' + + ',"type":"string"}]},{"documentation":"Downloads locker files to' + + ' the suggested folder.","name":"DownloadFile","parameters":[{"' + + 'documentation":"The origin path of the locker file.",' + + '"name":"path","required":true,"type":"string"},{"documentation"' + + ':"The Window destination path of the locker file.",' + + '"name":"destination","required":true,"type":"integer"},{"docum' + + 'entation":"The callback function for progress.","name":' + + '"callback","required":true,"type":"callback"}]}],' + + '"name":"LockerUploader","version":{"major":0,' + + '"micro":1,"minor":0},"versionString":"0.0.1"}' + , events : + [ [ "openobject" , "CoreletAPIVersion"] + , [ "value" , 2 ] + , [ "key" , "CoreletType"] + , [ "value" , "standalone" ] + , [ "key" , "documentation"] + , [ "value" , "A corelet that provides the capability to upload a folder’s contents into a user’s locker."] + , ["key" , "functions"] + , [ "openarray" , undefined] + , [ "openobject" , "documentation"] + , [ "value" , "Displays a dialog box that allows user to select a folder on the local system."] + , [ "key" , "name"] + , [ "value" , "ShowBrowseDialog"] + , [ "key" , "parameters"] + , [ "openarray" , undefined] + , [ "openobject" , "documentation"] + , [ "value" , "The callback function for results."] + , [ "key" , "name"] + , [ "value" , "callback"] + , [ "key" , "required"] + , [ "value" , true] + , [ "key" , "type"] + , [ "value" , "callback"] + , [ "closeobject" , undefined] + , [ "closearray" , undefined] + , [ "closeobject" , undefined] + , [ "openobject" , "documentation"] + , [ "value" , "Uploads all mp3 files in the folder provided."] + , [ "key" , "name"] + , [ "value" , "UploadFolder"] + , [ "key" , "parameters"] + , [ "openarray" , undefined] + , [ "openobject" , "documentation"] + , [ "value" , "The path to upload mp3 files from."] + , [ "key" , "name"] + , [ "value" , "path"] + , [ "key" , "required"] + , [ "value" , true] + , [ "key" , "type"] + , [ "value" , "string"] + , [ "closeobject" , undefined] + , [ "openobject" , "documentation"] + , [ "value" , "The callback function for progress."] + , [ "key" , "name"] + , [ "value" , "callback"] + , [ "key" , "required"] + , [ "value" , true ] + , [ "key" , "type"] + , [ "value" , "callback"] + , [ "closeobject" , undefined] + , [ "closearray" , undefined] + , [ "closeobject" , undefined] + , [ "openobject" , "documentation"] + , [ "value" , "Returns the server name to the current locker service."] + , [ "key" , "name"] + , [ "value" , "GetLockerService"] + , [ "key" , "parameters"] + , [ "openarray" , undefined] + , [ "closearray" , undefined] + , [ "closeobject" , undefined] + , [ "openobject" , "documentation"] + , [ "value" , "Changes the name of the locker service."] + , [ "key" , "name"] + , [ "value" , "SetLockerService"] + , [ "key" , "parameters"] + , [ "openarray" , undefined] + , [ "openobject" , "documentation"] + , [ "value" , "The value of the locker service to set active."] + , [ "key" , "name"] + , [ "value" , "LockerService" ] + , [ "key" , "required" ] + , [ "value" , true] + , [ "key" , "type"] + , [ "value" , "string"] + , [ "closeobject" , undefined] + , [ "closearray" , undefined] + , [ "closeobject" , undefined] + , [ "openobject" , "documentation"] + , [ "value" , "Downloads locker files to the suggested folder."] + , [ "key" , "name"] + , [ "value" , "DownloadFile"] + , [ "key" , "parameters"] + , [ "openarray" , undefined] + , [ "openobject" , "documentation"] + , [ "value" , "The origin path of the locker file."] + , [ "key" , "name"] + , [ "value" , "path"] + , [ "key" , "required"] + , [ "value" , true] + , [ "key" , "type"] + , [ "value" , "string"] + , [ "closeobject" , undefined] + , [ "openobject" , "documentation"] + , [ "value" , "The Window destination path of the locker file."] + , [ "key" , "name"] + , [ "value" , "destination"] + , [ "key" , "required"] + , [ "value" , true] + , [ "key" , "type"] + , [ "value" , "integer"] + , [ "closeobject" , undefined] + , [ "openobject" , "documentation"] + , [ "value" , "The callback function for progress."] + , [ "key" , "name"] + , [ "value" , "callback"] + , [ "key" , "required"] + , [ "value" , true] + , [ "key" , "type"] + , [ "value" , "callback"] + , [ "closeobject" , undefined] + , [ "closearray" , undefined] + , [ "closeobject" , undefined] + , [ "closearray" , undefined] + , [ "key" , "name"] + , [ "value" , "LockerUploader"] + , [ "key" , "version"] + , [ "openobject" , "major"] + , [ "value" , 0] + , [ "key" , "micro"] + , [ "value" , 1] + , [ "key" , "minor"] + , [ "value" , 0] + , [ "closeobject" , undefined] + , [ "key" , "versionString"] + , [ "value" , "0.0.1"] + , [ "closeobject" , undefined] + , [ "end" , undefined] + , [ "ready" , undefined] + ] + } + , array_of_arrays : + { text : '[[[["foo"]]]]' + , events : + [ ['openarray' , undefined] + , ['openarray' , undefined] + , ['openarray' , undefined] + , ['openarray' , undefined] + , ["value" , "foo"] + , ['closearray' , undefined] + , ['closearray' , undefined] + , ['closearray' , undefined] + , ['closearray' , undefined] + , ['end' , undefined] + , ['ready' , undefined] + ] + } + , low_overflow : + { text : '[-9223372036854775808]', + chunks: [ + '[-92233720', '36854775808]' + ] + , events : + [ ['openarray' , undefined] + , ["value" , -9223372036854775808] + , ['closearray' , undefined] + , ['end' , undefined] + , ['ready' , undefined] + ] + } + , high_overflow : + { text : '[9223372036854775808]' + , events : + [ ['openarray' , undefined] + , ["value" , 9223372036854775808] + , ['closearray' , undefined] + , ['end' , undefined] + , ['ready' , undefined] + ] + } + , floats : + { text : '[0.1e2, 1e1, 3.141569, 10000000000000e-10]' + , events : + [ ['openarray' , undefined] + , ["value" , 0.1e2] + , ["value" , 1e1] + , ["value" , 3.141569] + , ["value" , 10000000000000e-10] + , ['closearray' , undefined] + , ['end' , undefined] + , ['ready' , undefined] + ] + } + , numbers_game : + { text : '[1,0,-1,-0.3,0.3,1343.32,3345,3.1e124,'+ + ' 9223372036854775807,-9223372036854775807,0.1e2, ' + + '1e1, 3.141569, 10000000000000e-10,' + + '0.00011999999999999999, 6E-06, 6E-06, 1E-06, 1E-06,'+ + '"2009-10-20@20:38:21.539575", 9223372036854775808,' + + '123456789,-123456789,' + + '2147483647, -2147483647]' + , events : + [ ['openarray' , undefined] + , ["value" , 1] + , ["value" , 0] + , ["value" , -1] + , ["value" , -0.3] + , ["value" , 0.3] + , ["value" , 1343.32] + , ["value" , 3345] + , ["value" , 3.1e124] + , ["value" , 9223372036854775807] + , ["value" , -9223372036854775807] + , ["value" , 0.1e2] + , ["value" , 1e1] + , ["value" , 3.141569] + , ["value" , 10000000000000e-10] + , ["value" , 0.00011999999999999999] + , ["value" , 6E-06] + , ["value" , 6E-06] + , ["value" , 1E-06] + , ["value" , 1E-06] + , ["value" , "2009-10-20@20:38:21.539575"] + , ["value" , 9223372036854775808] + , ["value" , 123456789] + , ["value" , -123456789] + , ["value" , 2147483647] + , ["value" , -2147483647] + , ['closearray' , undefined] + , ['end' , undefined] + , ['ready' , undefined] + ] + } + , johnsmith : + { text : '{ "firstName": "John", "lastName" : "Smith", "age" : ' + + '25, "address" : { "streetAddress": "21 2nd Street", ' + + '"city" : "New York", "state" : "NY", "postalCode" : ' + + ' "10021" }, "phoneNumber": [ { "type" : "home", ' + + '"number": "212 555-1234" }, { "type" : "fax", ' + + '"number": "646 555-4567" } ] }' + , events : + [ ["openobject" , "firstName"] + , ["value" , "John"] + , ["key" , "lastName"] + , ["value" , "Smith"] + , ["key" , "age"] + , ["value" , 25] + , ["key" , "address"] + , ["openobject" , "streetAddress"] + , ["value" , "21 2nd Street"] + , ["key" , "city"] + , ["value" , "New York"] + , ["key" , "state"] + , ["value" , "NY"] + , ["key" , "postalCode"] + , ["value" , "10021"] + , ["closeobject" , undefined] + , ["key" , "phoneNumber"] + , ["openarray" , undefined] + , ["openobject" , "type"] + , ["value" , "home"] + , ["key" , "number"] + , ["value" , "212 555-1234"] + , ["closeobject" , undefined] + , ["openobject" , "type"] + , ["value" , "fax"] + , ["key" , "number"] + , ["value" , "646 555-4567"] + , ["closeobject" , undefined] + , ["closearray" , undefined] + , ["closeobject" , undefined] + ] + } + , array_null : + { text : '[null,false,true]', + chunks : ['[nu', 'll,', 'fa', 'lse,', 'tr', 'ue]'] + , events : + [ ["openarray" , undefined] + , ["value" , null] + , ["value" , false] + , ["value" , true] + , ["closearray" , undefined] + , ['end' , undefined] + , ['ready' , undefined] + ] + } + , empty_array_comma : + { text : '{"a":[],"c": {}, "b": true}' + , events : + [ ["openobject" , "a"] + , ["openarray" , undefined] + , ["closearray" , undefined] + , ["key" , "c"] + , ["openobject" , undefined] + , ["closeobject" , undefined] + , ["key" , "b"] + , ["value" , true] + , ["closeobject" , undefined] + , ['end' , undefined] + , ['ready' , undefined] + ] + } + , incomplete_json_terminates_ending_in_number : + { text : '[[1,2,3],[4,5' + , events : + [ ["openarray" , undefined] + , ["openarray" , undefined] + , ["value" , 1] + , ["value" , 2] + , ["value" , 3] + , ["closearray" , undefined] + , ["openarray" , undefined] + , ["value" , 4] + , ["error" , undefined] + ] + } + , incomplete_json_terminates_ending_in_comma : + { text : '[[1,2,3],' + , events : + [ ["openarray" , undefined] + , ["openarray" , undefined] + , ["value" , 1] + , ["value" , 2] + , ["value" , 3] + , ["closearray" , undefined] + , ["error" , undefined] + ] + } + , json_org : + { text : + ('{\r\n' + + ' "glossary": {\n' + + ' "title": "example glossary",\n\r' + + ' \t\t"GlossDiv": {\r\n' + + ' "title": "S",\r\n' + + ' \t\t\t"GlossList": {\r\n' + + ' "GlossEntry": {\r\n' + + ' "ID": "SGML",\r\n' + + ' \t\t\t\t\t"SortAs": "SGML",\r\n' + + ' \t\t\t\t\t"GlossTerm": "Standard Generalized ' + + 'Markup Language",\r\n' + + ' \t\t\t\t\t"Acronym": "SGML",\r\n' + + ' \t\t\t\t\t"Abbrev": "ISO 8879:1986",\r\n' + + ' \t\t\t\t\t"GlossDef": {\r\n' + + ' "para": "A meta-markup language,' + + ' used to create markup languages such as DocBook.",\r\n' + + ' \t\t\t\t\t\t"GlossSeeAlso": ["GML", "XML"]\r\n' + + ' },\r\n' + + ' \t\t\t\t\t"GlossSee": "markup"\r\n' + + ' }\r\n' + + ' }\r\n' + + ' }\r\n' + + ' }\r\n' + + ' }\r\n') + , events : + [ ["openobject" , "glossary"] + , ["openobject" , "title"] + , ['value' , "example glossary"] + , ["key" , "GlossDiv"] + , ["openobject" , "title"] + , ['value' , "S"] + , ["key" , "GlossList"] + , ["openobject" , "GlossEntry"] + , ["openobject" , "ID"] + , ['value' , "SGML"] + , ["key" , "SortAs"] + , ['value' , "SGML"] + , ["key" , "GlossTerm"] + , ['value' , "Standard Generalized Markup Language"] + , ["key" , "Acronym"] + , ['value' , "SGML"] + , ["key" , "Abbrev"] + , ['value' , 'ISO 8879:1986'] + , ["key" , "GlossDef"] + , ["openobject" , "para"] + , ['value' , 'A meta-markup language, used to create markup languages such as DocBook.'] + , ["key" , "GlossSeeAlso"] + , ['openarray' , undefined] + , ['value' , "GML"] + , ['value' , "XML"] + , ['closearray' , undefined] + , ["closeobject" , undefined] + , ["key" , "GlossSee"] + , ["value" , "markup"] + , ["closeobject" , undefined] + , ["closeobject" , undefined] + , ["closeobject" , undefined] + , ["closeobject" , undefined] + , ["closeobject" , undefined] + , ['end' , undefined] + , ['ready' , undefined] + ] + } + , + string_chunk_span : + { + text: '["L\'Oréal", "Lé\'Oral", "éalL\'Or"]', + chunks: [ + '["L\'OrÃ', + '©al", "Lé\'Oral", "éalL\'Or"]' + ], + events: [ + ['openarray', undefined], + ['value', 'L\'Oréal'], + ['value', 'Lé\'Oral'], + ['value', 'éalL\'Or'], + ['closearray', undefined] + ] + } + }; + +function generic(key, prechunked, sep) { + return function () { + var doc = docs[key].text + , events = docs[key].events + , l = typeof FastList === 'function' ? new FastList() : [] + , doc_chunks = !prechunked ? doc.split(sep) : docs[key].chunks + , parser = clarinet.parser() + , i = 0 + , current + , env = process && process.env ? process.env : window + , record = [] + ; + + _.each(events, function(event_pair) { + l.push(event_pair); + }); + _.each(clarinet.EVENTS, function(event) { + parser["on"+event] = function (value) { + if(env.CRECORD) { // for really big json we dont want to type all + record.push([event,value]); + if(event === 'end') console.log(JSON.stringify(record, null, 2)); + } else { + current = l.shift(); + ++i; + if(!(current && current[0])) { return; } + assert(current[0] === event, + '[ln' + i + '] event: [' + current[0] + '] got: [' + event +']'); + if(event!== 'error') + assert(current[1] === value, + '[ln' + i + '] value: [' + current[1] + '] got: [' + value +']'); + } + }; + }); + _.each(doc_chunks, function(chunk) { + parser.write(chunk); + }); + parser.end(); + }; +} + +describe('clarinet', function(){ + describe('#generic', function() { + for (var key in docs) { + if (docs.hasOwnProperty(key)) { + // undefined means no split + // /\t|\n|\r| / means on whitespace + // '' means on every char + for(var i in seps) { + sep = seps[i]; + it('[' + key + '] should be able to parse -> ' + sep, + generic(key, false, sep)); + } + } + } + }); + + describe('#pre-chunked', function() { + for (var key in docs) { + if (docs.hasOwnProperty(key)) { + if (!docs[key].chunks) continue; + + it('[' + key + '] should be able to parse pre-chunked', generic(key, true)); + } + } + }); +}); diff --git a/test/css/mocha.css b/test/css/mocha.css new file mode 100644 index 0000000..2dedf49 --- /dev/null +++ b/test/css/mocha.css @@ -0,0 +1,110 @@ + +body { + font: 20px/1.5 "Helvetica Neue", Helvetica, Aria;, sans-serif; + padding: 60px 50px; +} + +#mocha h1, h2 { + margin: 0; +} + +#mocha h1 { + font-size: 1em; + font-weight: 200; +} + +#mocha .suite .suite h1 { + font-size: .8em; +} + +#mocha h2 { + font-size: 12px; + font-weight: normal; + cursor: pointer; +} + +#mocha .suite { + margin-left: 15px; +} + +#mocha .test { + margin-left: 15px; +} + +#mocha .test.pass::before { + content: '✓'; + font-size: 12px; + display: block; + float: left; + margin-right: 5px; + color: #00c41c; +} + +#mocha .test.pending { + color: #0b97c4; +} + +#mocha .test.pending::before { + content: '◦'; + color: #0b97c4; +} + +#mocha .test.fail { + color: #c00; +} + +#mocha .test.fail pre { + color: black; +} + +#mocha .test.fail::before { + content: '✖'; + font-size: 12px; + display: block; + float: left; + margin-right: 5px; + color: #c00; +} + +#mocha .test pre.error { + color: #c00; +} + +#mocha .test pre { + display: inline-block; + font: 12px/1.5 monaco, monospace; + margin: 5px; + padding: 15px; + border: 1px solid #eee; + border-bottom-color: #ddd; + -webkit-border-radius: 3px; + -webkit-box-shadow: 0 1px 3px #eee; +} + +#error { + color: #c00; + font-size: 1.5 em; + font-weight: 100; + letter-spacing: 1px; +} + +#stats { + position: fixed; + top: 30px; + right: 30px; + font-size: 12px; + margin: 0; + color: #888; +} + +#stats .progress { + margin-bottom: 10px; +} + +#stats em { + color: black; +} + +#stats li { + list-style: none; +} \ No newline at end of file diff --git a/test/index.html b/test/index.html new file mode 100644 index 0000000..2cbe5af --- /dev/null +++ b/test/index.html @@ -0,0 +1,37 @@ + + + clarinet.js + + + + + + + + + + + + + +
          + + \ No newline at end of file diff --git a/test/index.js b/test/index.js deleted file mode 100644 index 4bbfc94..0000000 --- a/test/index.js +++ /dev/null @@ -1,78 +0,0 @@ - -var util = require("util") - , assert = require("assert") - , fs = require("fs") - , path = require("path") - , sax = require("../lib/sax") - -exports.sax = sax - -// handy way to do simple unit tests -// if the options contains an xml string, it'll be written and the parser closed. -// otherwise, it's assumed that the test will write and close. -exports.test = function test (options) { - var xml = options.xml - , parser = sax.parser(options.strict, options.opt) - , expect = options.expect - , e = 0 - sax.EVENTS.forEach(function (ev) { - parser["on" + ev] = function (n) { - if (process.env.DEBUG) { - console.error({ expect: expect[e] - , actual: [ev, n] }) - } - if (e >= expect.length && (ev === "end" || ev === "ready")) return - assert.ok( e < expect.length, - "expectation #"+e+" "+util.inspect(expect[e])+"\n"+ - "Unexpected event: "+ev+" "+(n ? util.inspect(n) : "")) - var inspected = n instanceof Error ? "\n"+ n.message : util.inspect(n) - assert.equal(ev, expect[e][0], - "expectation #"+e+"\n"+ - "Didn't get expected event\n"+ - "expect: "+expect[e][0] + " " +util.inspect(expect[e][1])+"\n"+ - "actual: "+ev+" "+inspected+"\n") - if (ev === "error") assert.equal(n.message, expect[e][1]) - else assert.deepEqual(n, expect[e][1], - "expectation #"+e+"\n"+ - "Didn't get expected argument\n"+ - "expect: "+expect[e][0] + " " +util.inspect(expect[e][1])+"\n"+ - "actual: "+ev+" "+inspected+"\n") - e++ - if (ev === "error") parser.resume() - } - }) - if (xml) parser.write(xml).close() - return parser -} - -if (module === require.main) { - var running = true - , failures = 0 - - function fail (file, er) { - util.error("Failed: "+file) - util.error(er.stack || er.message) - failures ++ - } - - fs.readdir(__dirname, function (error, files) { - files = files.filter(function (file) { - return (/\.js$/.exec(file) && file !== 'index.js') - }) - var n = files.length - , i = 0 - console.log("0.." + n) - files.forEach(function (file) { - // run this test. - try { - require(path.resolve(__dirname, file)) - console.log("ok " + (++i) + " - " + file) - } catch (er) { - console.log("not ok "+ (++i) + " - " + file) - fail(file, er) - } - }) - if (!failures) return console.log("#all pass") - else return console.error(failures + " failure" + (failures > 1 ? "s" : "")) - }) -} diff --git a/test/issue-23.js b/test/issue-23.js deleted file mode 100644 index e7991b2..0000000 --- a/test/issue-23.js +++ /dev/null @@ -1,43 +0,0 @@ - -require(__dirname).test - ( { xml : - ""+ - ""+ - "653724009"+ - "-1"+ - "01pG0000002KoSUIA0"+ - "-1"+ - "CalendarController"+ - "true"+ - ""+ - "" - - , expect : - [ [ "opentag", { name: "COMPILECLASSESRESPONSE", attributes: {} } ] - , [ "opentag", { name : "RESULT", attributes: {} } ] - , [ "opentag", { name: "BODYCRC", attributes: {} } ] - , [ "text", "653724009" ] - , [ "closetag", "BODYCRC" ] - , [ "opentag", { name: "COLUMN", attributes: {} } ] - , [ "text", "-1" ] - , [ "closetag", "COLUMN" ] - , [ "opentag", { name: "ID", attributes: {} } ] - , [ "text", "01pG0000002KoSUIA0" ] - , [ "closetag", "ID" ] - , [ "opentag", {name: "LINE", attributes: {} } ] - , [ "text", "-1" ] - , [ "closetag", "LINE" ] - , [ "opentag", {name: "NAME", attributes: {} } ] - , [ "text", "CalendarController" ] - , [ "closetag", "NAME" ] - , [ "opentag", {name: "SUCCESS", attributes: {} } ] - , [ "text", "true" ] - , [ "closetag", "SUCCESS" ] - , [ "closetag", "RESULT" ] - , [ "closetag", "COMPILECLASSESRESPONSE" ] - ] - , strict : false - , opt : {} - } - ) - diff --git a/test/issue-30.js b/test/issue-30.js deleted file mode 100644 index c2cc809..0000000 --- a/test/issue-30.js +++ /dev/null @@ -1,24 +0,0 @@ -// https://github.com/isaacs/sax-js/issues/33 -require(__dirname).test - ( { xml : "\n"+ - "\n"+ - "\n"+ - "" - - , expect : - [ [ "opentag", { name: "xml", attributes: {} } ] - , [ "text", "\n" ] - , [ "comment", " \n comment with a single dash- in it\n" ] - , [ "text", "\n" ] - , [ "opentag", { name: "data", attributes: {} } ] - , [ "closetag", "data" ] - , [ "text", "\n" ] - , [ "closetag", "xml" ] - ] - , strict : true - , opt : {} - } - ) - diff --git a/test/issue-35.js b/test/issue-35.js deleted file mode 100644 index 7c521c5..0000000 --- a/test/issue-35.js +++ /dev/null @@ -1,15 +0,0 @@ -// https://github.com/isaacs/sax-js/issues/35 -require(__dirname).test - ( { xml : " \n"+ - "" - - , expect : - [ [ "opentag", { name: "xml", attributes: {} } ] - , [ "text", "\r\r\n" ] - , [ "closetag", "xml" ] - ] - , strict : true - , opt : {} - } - ) - diff --git a/test/issue-47.js b/test/issue-47.js deleted file mode 100644 index 911c7d0..0000000 --- a/test/issue-47.js +++ /dev/null @@ -1,13 +0,0 @@ -// https://github.com/isaacs/sax-js/issues/47 -require(__dirname).test - ( { xml : '' - , expect : [ - [ "attribute", { name:'href', value:"query.svc?x=1&y=2&z=3"} ], - [ "opentag", { name: "a", attributes: { href:"query.svc?x=1&y=2&z=3"} } ], - [ "closetag", "a" ] - ] - , strict : true - , opt : {} - } - ) - diff --git a/test/issue-49.js b/test/issue-49.js deleted file mode 100644 index 2964325..0000000 --- a/test/issue-49.js +++ /dev/null @@ -1,31 +0,0 @@ -// https://github.com/isaacs/sax-js/issues/49 -require(__dirname).test - ( { xml : "" - , expect : - [ [ "opentag", { name: "xml", attributes: {} } ] - , [ "opentag", { name: "script", attributes: {} } ] - , [ "text", "hello world" ] - , [ "closetag", "script" ] - , [ "closetag", "xml" ] - ] - , strict : false - , opt : { lowercasetags: true, noscript: true } - } - ) - -require(__dirname).test - ( { xml : "" - , expect : - [ [ "opentag", { name: "xml", attributes: {} } ] - , [ "opentag", { name: "script", attributes: {} } ] - , [ "opencdata", undefined ] - , [ "cdata", "hello world" ] - , [ "closecdata", undefined ] - , [ "closetag", "script" ] - , [ "closetag", "xml" ] - ] - , strict : false - , opt : { lowercasetags: true, noscript: true } - } - ) - diff --git a/test/lib/fast-list.js b/test/lib/fast-list.js new file mode 100644 index 0000000..3cfbd77 --- /dev/null +++ b/test/lib/fast-list.js @@ -0,0 +1,90 @@ +;(function() { // closure for web browsers + +function Item (data, prev, next) { + this.next = next + if (next) next.prev = this + this.prev = prev + if (prev) prev.next = this + this.data = data +} + +function FastList () { + if (!(this instanceof FastList)) return new FastList + this._head = null + this._tail = null + this.length = 0 +} + +FastList.prototype = +{ push: function (data) { + this._tail = new Item(data, this._tail, null) + if (!this._head) this._head = this._tail + this.length ++ + } +, pop: function () { + if (this.length === 0) return undefined + var t = this._tail + this._tail = t.prev + if (t.prev) { + t.prev = this._tail.next = null + } + this.length -- + if (this.length === 1) this._head = this._tail + else if (this.length === 0) this._head = this._tail = null + return t.data + } +, unshift: function (data) { + this._head = new Item(data, null, this._head) + if (!this._tail) this._tail = this._head + this.length ++ + } +, shift: function () { + if (this.length === 0) return undefined + var h = this._head + this._head = h.next + if (h.next) { + h.next = this._head.prev = null + } + this.length -- + if (this.length === 1) this._tail = this._head + else if (this.length === 0) this._head = this._tail = null + return h.data + } +, item: function (n) { + if (n < 0) n = this.length + n + var h = this._head + while (n-- > 0 && h) h = h.next + return h ? h.data : undefined + } +, slice: function (n, m) { + if (!n) n = 0 + if (!m) m = this.length + if (m < 0) m = this.length + m + if (n < 0) n = this.length + n + + if (m <= n) { + throw new Error("invalid offset: "+n+","+m) + } + + var len = m - n + , ret = new Array(len) + , i = 0 + , h = this._head + while (n-- > 0 && h) h = h.next + while (i < len && h) { + ret[i++] = h.data + h = h.next + } + return ret + } +, drop: function () { + FastList.call(this) + } +} + +if ("undefined" !== typeof(exports)) module.exports = FastList +else if ("function" === typeof(define) && define.amd) { + define("FastList", function() { return FastList }) +} else (function () { return this })().FastList = FastList + +})() \ No newline at end of file diff --git a/test/lib/jquery.js b/test/lib/jquery.js new file mode 100644 index 0000000..ee02337 --- /dev/null +++ b/test/lib/jquery.js @@ -0,0 +1,4 @@ +/*! jQuery v1.7.1 jquery.com | jquery.org/license */ +(function(a,b){function cy(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cv(a){if(!ck[a]){var b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){cl||(cl=c.createElement("iframe"),cl.frameBorder=cl.width=cl.height=0),b.appendChild(cl);if(!cm||!cl.createElement)cm=(cl.contentWindow||cl.contentDocument).document,cm.write((c.compatMode==="CSS1Compat"?"":"")+""),cm.close();d=cm.createElement(a),cm.body.appendChild(d),e=f.css(d,"display"),b.removeChild(cl)}ck[a]=e}return ck[a]}function cu(a,b){var c={};f.each(cq.concat.apply([],cq.slice(0,b)),function(){c[this]=a});return c}function ct(){cr=b}function cs(){setTimeout(ct,0);return cr=f.now()}function cj(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ci(){try{return new a.XMLHttpRequest}catch(b){}}function cc(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g0){if(c!=="border")for(;g=0===c})}function S(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function K(){return!0}function J(){return!1}function n(a,b,c){var d=b+"defer",e=b+"queue",g=b+"mark",h=f._data(a,d);h&&(c==="queue"||!f._data(a,e))&&(c==="mark"||!f._data(a,g))&&setTimeout(function(){!f._data(a,e)&&!f._data(a,g)&&(f.removeData(a,d,!0),h.fire())},0)}function m(a){for(var b in a){if(b==="data"&&f.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function l(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(k,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNumeric(d)?parseFloat(d):j.test(d)?f.parseJSON(d):d}catch(g){}f.data(a,c,d)}else d=b}return d}function h(a){var b=g[a]={},c,d;a=a.split(/\s+/);for(c=0,d=a.length;c)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,n=/^[\],:{}\s]*$/,o=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,p=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,q=/(?:^|:|,)(?:\s*\[)+/g,r=/(webkit)[ \/]([\w.]+)/,s=/(opera)(?:.*version)?[ \/]([\w.]+)/,t=/(msie) ([\w.]+)/,u=/(mozilla)(?:.*? rv:([\w.]+))?/,v=/-([a-z]|[0-9])/ig,w=/^-ms-/,x=function(a,b){return(b+"").toUpperCase()},y=d.userAgent,z,A,B,C=Object.prototype.toString,D=Object.prototype.hasOwnProperty,E=Array.prototype.push,F=Array.prototype.slice,G=String.prototype.trim,H=Array.prototype.indexOf,I={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return this}if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=m.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return e.makeArray(a,this)},selector:"",jquery:"1.7.1",length:0,size:function(){return this.length},toArray:function(){return F.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=this.constructor();e.isArray(a)?E.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return d},each:function(a,b){return e.each(this,a,b)},ready:function(a){e.bindReady(),A.add(a);return this},eq:function(a){a=+a;return a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(F.apply(this,arguments),"slice",F.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:E,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!="object"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j0)return;A.fireWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").off("ready")}},bindReady:function(){if(!A){A=e.Callbacks("once memory");if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",B,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",B),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&J()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a&&typeof a=="object"&&"setInterval"in a},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):I[C.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;try{if(a.constructor&&!D.call(a,"constructor")&&!D.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||D.call(a,d)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw new Error(a)},parseJSON:function(b){if(typeof b!="string"||!b)return null;b=e.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(n.test(b.replace(o,"@").replace(p,"]").replace(q,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(c){var d,f;try{a.DOMParser?(f=new DOMParser,d=f.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(g){d=b}(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&e.error("Invalid XML: "+c);return d},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(w,"ms-").replace(v,x)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a)if(c.apply(a[f],d)===!1)break}else for(;g0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i1?i.call(arguments,0):b,j.notifyWith(k,e)}}function l(a){return function(c){b[a]=arguments.length>1?i.call(arguments,0):c,--g||j.resolveWith(j,b)}}var b=i.call(arguments,0),c=0,d=b.length,e=Array(d),g=d,h=d,j=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred(),k=j.promise();if(d>1){for(;c
          a",d=q.getElementsByTagName("*"),e=q.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=q.getElementsByTagName("input")[0],b={leadingWhitespace:q.firstChild.nodeType===3,tbody:!q.getElementsByTagName("tbody").length,htmlSerialize:!!q.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:q.className!=="t",enctype:!!c.createElement("form").enctype,html5Clone:c.createElement("nav").cloneNode(!0).outerHTML!=="<:nav>",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0},i.checked=!0,b.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,b.optDisabled=!h.disabled;try{delete q.test}catch(s){b.deleteExpando=!1}!q.addEventListener&&q.attachEvent&&q.fireEvent&&(q.attachEvent("onclick",function(){b.noCloneEvent=!1}),q.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),b.radioValue=i.value==="t",i.setAttribute("checked","checked"),q.appendChild(i),k=c.createDocumentFragment(),k.appendChild(q.lastChild),b.checkClone=k.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=i.checked,k.removeChild(i),k.appendChild(q),q.innerHTML="",a.getComputedStyle&&(j=c.createElement("div"),j.style.width="0",j.style.marginRight="0",q.style.width="2px",q.appendChild(j),b.reliableMarginRight=(parseInt((a.getComputedStyle(j,null)||{marginRight:0}).marginRight,10)||0)===0);if(q.attachEvent)for(o in{submit:1,change:1,focusin:1})n="on"+o,p=n in q,p||(q.setAttribute(n,"return;"),p=typeof q[n]=="function"),b[o+"Bubbles"]=p;k.removeChild(q),k=g=h=j=q=i=null,f(function(){var a,d,e,g,h,i,j,k,m,n,o,r=c.getElementsByTagName("body")[0];!r||(j=1,k="position:absolute;top:0;left:0;width:1px;height:1px;margin:0;",m="visibility:hidden;border:0;",n="style='"+k+"border:5px solid #000;padding:0;'",o="
          "+""+"
          ",a=c.createElement("div"),a.style.cssText=m+"width:0;height:0;position:static;top:0;margin-top:"+j+"px",r.insertBefore(a,r.firstChild),q=c.createElement("div"),a.appendChild(q),q.innerHTML="
          t
          ",l=q.getElementsByTagName("td"),p=l[0].offsetHeight===0,l[0].style.display="",l[1].style.display="none",b.reliableHiddenOffsets=p&&l[0].offsetHeight===0,q.innerHTML="",q.style.width=q.style.paddingLeft="1px",f.boxModel=b.boxModel=q.offsetWidth===2,typeof q.style.zoom!="undefined"&&(q.style.display="inline",q.style.zoom=1,b.inlineBlockNeedsLayout=q.offsetWidth===2,q.style.display="",q.innerHTML="
          ",b.shrinkWrapBlocks=q.offsetWidth!==2),q.style.cssText=k+m,q.innerHTML=o,d=q.firstChild,e=d.firstChild,h=d.nextSibling.firstChild.firstChild,i={doesNotAddBorder:e.offsetTop!==5,doesAddBorderForTableAndCells:h.offsetTop===5},e.style.position="fixed",e.style.top="20px",i.fixedPosition=e.offsetTop===20||e.offsetTop===15,e.style.position=e.style.top="",d.style.overflow="hidden",d.style.position="relative",i.subtractsBorderForOverflowNotVisible=e.offsetTop===-5,i.doesNotIncludeMarginInBodyOffset=r.offsetTop!==j,r.removeChild(a),q=a=null,f.extend(b,i))});return b}();var j=/^(?:\{.*\}|\[.*\])$/,k=/([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?f.cache[a[f.expando]]:a[f.expando];return!!a&&!m(a)},data:function(a,c,d,e){if(!!f.acceptData(a)){var g,h,i,j=f.expando,k=typeof c=="string",l=a.nodeType,m=l?f.cache:a,n=l?a[j]:a[j]&&j,o=c==="events";if((!n||!m[n]||!o&&!e&&!m[n].data)&&k&&d===b)return;n||(l?a[j]=n=++f.uuid:n=j),m[n]||(m[n]={},l||(m[n].toJSON=f.noop));if(typeof c=="object"||typeof c=="function")e?m[n]=f.extend(m[n],c):m[n].data=f.extend(m[n].data,c);g=h=m[n],e||(h.data||(h.data={}),h=h.data),d!==b&&(h[f.camelCase(c)]=d);if(o&&!h[c])return g.events;k?(i=h[c],i==null&&(i=h[f.camelCase(c)])):i=h;return i}},removeData:function(a,b,c){if(!!f.acceptData(a)){var d,e,g,h=f.expando,i=a.nodeType,j=i?f.cache:a,k=i?a[h]:h;if(!j[k])return;if(b){d=c?j[k]:j[k].data;if(d){f.isArray(b)||(b in d?b=[b]:(b=f.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,g=b.length;e-1)return!0;return!1},val:function(a){var c,d,e,g=this[0];{if(!!arguments.length){e=f.isFunction(a);return this.each(function(d){var g=f(this),h;if(this.nodeType===1){e?h=a.call(this,d,g.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.nodeName.toLowerCase()]||f.valHooks[this.type];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}if(g){c=f.valHooks[g.nodeName.toLowerCase()]||f.valHooks[g.type];if(c&&"get"in c&&(d=c.get(g,"value"))!==b)return d;d=g.value;return typeof d=="string"?d.replace(q,""):d==null?"":d}}}}),f.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,g=a.selectedIndex,h=[],i=a.options,j=a.type==="select-one";if(g<0)return null;c=j?g:0,d=j?g+1:i.length;for(;c=0}),c.length||(a.selectedIndex=-1);return c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attr:function(a,c,d,e){var g,h,i,j=a.nodeType;if(!!a&&j!==3&&j!==8&&j!==2){if(e&&c in f.attrFn)return f(a)[c](d);if(typeof a.getAttribute=="undefined")return f.prop(a,c,d);i=j!==1||!f.isXMLDoc(a),i&&(c=c.toLowerCase(),h=f.attrHooks[c]||(u.test(c)?x:w));if(d!==b){if(d===null){f.removeAttr(a,c);return}if(h&&"set"in h&&i&&(g=h.set(a,d,c))!==b)return g;a.setAttribute(c,""+d);return d}if(h&&"get"in h&&i&&(g=h.get(a,c))!==null)return g;g=a.getAttribute(c);return g===null?b:g}},removeAttr:function(a,b){var c,d,e,g,h=0;if(b&&a.nodeType===1){d=b.toLowerCase().split(p),g=d.length;for(;h=0}})});var z=/^(?:textarea|input|select)$/i,A=/^([^\.]*)?(?:\.(.+))?$/,B=/\bhover(\.\S+)?\b/,C=/^key/,D=/^(?:mouse|contextmenu)|click/,E=/^(?:focusinfocus|focusoutblur)$/,F=/^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/,G=function(a){var b=F.exec(a);b&&(b[1]=(b[1]||"").toLowerCase(),b[3]=b[3]&&new RegExp("(?:^|\\s)"+b[3]+"(?:\\s|$)"));return b},H=function(a,b){var c=a.attributes||{};return(!b[1]||a.nodeName.toLowerCase()===b[1])&&(!b[2]||(c.id||{}).value===b[2])&&(!b[3]||b[3].test((c["class"]||{}).value))},I=function(a){return f.event.special.hover?a:a.replace(B,"mouseenter$1 mouseleave$1")}; +f.event={add:function(a,c,d,e,g){var h,i,j,k,l,m,n,o,p,q,r,s;if(!(a.nodeType===3||a.nodeType===8||!c||!d||!(h=f._data(a)))){d.handler&&(p=d,d=p.handler),d.guid||(d.guid=f.guid++),j=h.events,j||(h.events=j={}),i=h.handle,i||(h.handle=i=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.dispatch.apply(i.elem,arguments):b},i.elem=a),c=f.trim(I(c)).split(" ");for(k=0;k=0&&(h=h.slice(0,-1),k=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i.shift(),i.sort());if((!e||f.event.customEvent[h])&&!f.event.global[h])return;c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.isTrigger=!0,c.exclusive=k,c.namespace=i.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)"):null,o=h.indexOf(":")<0?"on"+h:"";if(!e){j=f.cache;for(l in j)j[l].events&&j[l].events[h]&&f.event.trigger(c,d,j[l].handle.elem,!0);return}c.result=b,c.target||(c.target=e),d=d!=null?f.makeArray(d):[],d.unshift(c),p=f.event.special[h]||{};if(p.trigger&&p.trigger.apply(e,d)===!1)return;r=[[e,p.bindType||h]];if(!g&&!p.noBubble&&!f.isWindow(e)){s=p.delegateType||h,m=E.test(s+h)?e:e.parentNode,n=null;for(;m;m=m.parentNode)r.push([m,s]),n=m;n&&n===e.ownerDocument&&r.push([n.defaultView||n.parentWindow||a,s])}for(l=0;le&&i.push({elem:this,matches:d.slice(e)});for(j=0;j0?this.on(b,null,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0),C.test(b)&&(f.event.fixHooks[b]=f.event.keyHooks),D.test(b)&&(f.event.fixHooks[b]=f.event.mouseHooks)}),function(){function x(a,b,c,e,f,g){for(var h=0,i=e.length;h0){k=j;break}}j=j[a]}e[h]=k}}}function w(a,b,c,e,f,g){for(var h=0,i=e.length;h+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d="sizcache"+(Math.random()+"").replace(".",""),e=0,g=Object.prototype.toString,h=!1,i=!0,j=/\\/g,k=/\r\n/g,l=/\W/;[0,0].sort(function(){i=!1;return 0});var m=function(b,d,e,f){e=e||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return e;var i,j,k,l,n,q,r,t,u=!0,v=m.isXML(d),w=[],x=b;do{a.exec(""),i=a.exec(x);if(i){x=i[3],w.push(i[1]);if(i[2]){l=i[3];break}}}while(i);if(w.length>1&&p.exec(b))if(w.length===2&&o.relative[w[0]])j=y(w[0]+w[1],d,f);else{j=o.relative[w[0]]?[d]:m(w.shift(),d);while(w.length)b=w.shift(),o.relative[b]&&(b+=w.shift()),j=y(b,j,f)}else{!f&&w.length>1&&d.nodeType===9&&!v&&o.match.ID.test(w[0])&&!o.match.ID.test(w[w.length-1])&&(n=m.find(w.shift(),d,v),d=n.expr?m.filter(n.expr,n.set)[0]:n.set[0]);if(d){n=f?{expr:w.pop(),set:s(f)}:m.find(w.pop(),w.length===1&&(w[0]==="~"||w[0]==="+")&&d.parentNode?d.parentNode:d,v),j=n.expr?m.filter(n.expr,n.set):n.set,w.length>0?k=s(j):u=!1;while(w.length)q=w.pop(),r=q,o.relative[q]?r=w.pop():q="",r==null&&(r=d),o.relative[q](k,r,v)}else k=w=[]}k||(k=j),k||m.error(q||b);if(g.call(k)==="[object Array]")if(!u)e.push.apply(e,k);else if(d&&d.nodeType===1)for(t=0;k[t]!=null;t++)k[t]&&(k[t]===!0||k[t].nodeType===1&&m.contains(d,k[t]))&&e.push(j[t]);else for(t=0;k[t]!=null;t++)k[t]&&k[t].nodeType===1&&e.push(j[t]);else s(k,e);l&&(m(l,h,e,f),m.uniqueSort(e));return e};m.uniqueSort=function(a){if(u){h=i,a.sort(u);if(h)for(var b=1;b0},m.find=function(a,b,c){var d,e,f,g,h,i;if(!a)return[];for(e=0,f=o.order.length;e":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!l.test(b)){b=b.toLowerCase();for(;e=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(j,"")},TAG:function(a,b){return a[1].replace(j,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||m.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&m.error(a[0]);a[0]=e++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(j,"");!f&&o.attrMap[g]&&(a[1]=o.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(j,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=m(b[3],null,null,c);else{var g=m.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(o.match.POS.test(b[0])||o.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!m(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return bc[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=o.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||n([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||!!a.nodeName&&a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=m.attr?m.attr(a,c):o.attrHandle[c]?o.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":!f&&m.attr?d!=null:f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=o.setFilters[e];if(f)return f(a,c,b,d)}}},p=o.match.POS,q=function(a,b){return"\\"+(b-0+1)};for(var r in o.match)o.match[r]=new RegExp(o.match[r].source+/(?![^\[]*\])(?![^\(]*\))/.source),o.leftMatch[r]=new RegExp(/(^(?:.|\r|\n)*?)/.source+o.match[r].source.replace(/\\(\d+)/g,q));var s=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(t){s=function(a,b){var c=0,d=b||[];if(g.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length=="number")for(var e=a.length;c",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(o.find.ID=function(a,c,d){if(typeof c.getElementById!="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},o.filter.ID=function(a,b){var c=typeof a.getAttributeNode!="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(o.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="",a.firstChild&&typeof a.firstChild.getAttribute!="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(o.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=m,b=c.createElement("div"),d="__sizzle__";b.innerHTML="

          ";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){m=function(b,e,f,g){e=e||c;if(!g&&!m.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return s(e.getElementsByTagName(b),f);if(h[2]&&o.find.CLASS&&e.getElementsByClassName)return s(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return s([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return s([],f);if(i.id===h[3])return s([i],f)}try{return s(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var k=e,l=e.getAttribute("id"),n=l||d,p=e.parentNode,q=/^\s*[+~]/.test(b);l?n=n.replace(/'/g,"\\$&"):e.setAttribute("id",n),q&&p&&(e=e.parentNode);try{if(!q||p)return s(e.querySelectorAll("[id='"+n+"'] "+b),f)}catch(r){}finally{l||k.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)m[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}m.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!m.isXML(a))try{if(e||!o.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return m(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="
          ";if(!!a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;o.order.splice(1,0,"CLASS"),o.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?m.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?m.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:m.contains=function(){return!1},m.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var y=function(a,b,c){var d,e=[],f="",g=b.nodeType?[b]:b;while(d=o.match.PSEUDO.exec(a))f+=d[0],a=a.replace(o.match.PSEUDO,"");a=o.relative[a]?a+"*":a;for(var h=0,i=g.length;h0)for(h=g;h=0:f.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h=1;while(g&&g.ownerDocument&&g!==b){for(d=0;d-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11)break}}c=c.length>1?f.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a)return this[0]&&this[0].parentNode?this.prevAll().length:-1;if(typeof a=="string")return f.inArray(this[0],f(a));return f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(S(c[0])||S(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling(a.parentNode.firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c);L.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!R[a]?f.unique(e):e,(this.length>1||N.test(d))&&M.test(a)&&(e=e.reverse());return this.pushStack(e,a,P.call(arguments).join(","))}}),f.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d)))g.nodeType===1&&e.push(g),g=g[c];return e},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var V="abbr|article|aside|audio|canvas|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",W=/ jQuery\d+="(?:\d+|null)"/g,X=/^\s+/,Y=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,Z=/<([\w:]+)/,$=/",""],legend:[1,"
          ","
          "],thead:[1,"","
          "],tr:[2,"","
          "],td:[3,"","
          "],col:[2,"","
          "],area:[1,"",""],_default:[0,"",""]},bh=U(c);bg.optgroup=bg.option,bg.tbody=bg.tfoot=bg.colgroup=bg.caption=bg.thead,bg.th=bg.td,f.support.htmlSerialize||(bg._default=[1,"div
          ","
          "]),f.fn.extend({text:function(a){if(f.isFunction(a))return this.each(function(b){var c=f(this);c.text(a.call(this,b,c.text()))});if(typeof a!="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return f.text(this)},wrapAll:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapAll(a.call(this,b))});if(this[0]){var b=f(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapInner(a.call(this,b))});return this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=f.isFunction(a);return this.each(function(c){f(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=f.clean(arguments);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,f.clean(arguments));return a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++)if(!a||f.filter(a,[d]).length)!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")),f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d);return this},empty:function() +{for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&f.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return f.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(W,""):null;if(typeof a=="string"&&!ba.test(a)&&(f.support.leadingWhitespace||!X.test(a))&&!bg[(Z.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Y,"<$1>");try{for(var c=0,d=this.length;c1&&l0?this.clone(!0):this).get();f(e[h])[b](j),d=d.concat(j)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d,e,g,h=f.support.html5Clone||!bc.test("<"+a.nodeName)?a.cloneNode(!0):bo(a);if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bk(a,h),d=bl(a),e=bl(h);for(g=0;d[g];++g)e[g]&&bk(d[g],e[g])}if(b){bj(a,h);if(c){d=bl(a),e=bl(h);for(g=0;d[g];++g)bj(d[g],e[g])}}d=e=null;return h},clean:function(a,b,d,e){var g;b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var h=[],i;for(var j=0,k;(k=a[j])!=null;j++){typeof k=="number"&&(k+="");if(!k)continue;if(typeof k=="string")if(!_.test(k))k=b.createTextNode(k);else{k=k.replace(Y,"<$1>");var l=(Z.exec(k)||["",""])[1].toLowerCase(),m=bg[l]||bg._default,n=m[0],o=b.createElement("div");b===c?bh.appendChild(o):U(b).appendChild(o),o.innerHTML=m[1]+k+m[2];while(n--)o=o.lastChild;if(!f.support.tbody){var p=$.test(k),q=l==="table"&&!p?o.firstChild&&o.firstChild.childNodes:m[1]===""&&!p?o.childNodes:[];for(i=q.length-1;i>=0;--i)f.nodeName(q[i],"tbody")&&!q[i].childNodes.length&&q[i].parentNode.removeChild(q[i])}!f.support.leadingWhitespace&&X.test(k)&&o.insertBefore(b.createTextNode(X.exec(k)[0]),o.firstChild),k=o.childNodes}var r;if(!f.support.appendChecked)if(k[0]&&typeof (r=k.length)=="number")for(i=0;i=0)return b+"px"}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return br.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=f.isNumeric(b)?"alpha(opacity="+b*100+")":"",g=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&f.trim(g.replace(bq,""))===""){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bq.test(g)?g.replace(bq,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){var c;f.swap(a,{display:"inline-block"},function(){b?c=bz(a,"margin-right","marginRight"):c=a.style.marginRight});return c}})}),c.defaultView&&c.defaultView.getComputedStyle&&(bA=function(a,b){var c,d,e;b=b.replace(bs,"-$1").toLowerCase(),(d=a.ownerDocument.defaultView)&&(e=d.getComputedStyle(a,null))&&(c=e.getPropertyValue(b),c===""&&!f.contains(a.ownerDocument.documentElement,a)&&(c=f.style(a,b)));return c}),c.documentElement.currentStyle&&(bB=function(a,b){var c,d,e,f=a.currentStyle&&a.currentStyle[b],g=a.style;f===null&&g&&(e=g[b])&&(f=e),!bt.test(f)&&bu.test(f)&&(c=g.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),g.left=b==="fontSize"?"1em":f||0,f=g.pixelLeft+"px",g.left=c,d&&(a.runtimeStyle.left=d));return f===""?"auto":f}),bz=bA||bB,f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style&&a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return!f.expr.filters.hidden(a)});var bD=/%20/g,bE=/\[\]$/,bF=/\r?\n/g,bG=/#.*$/,bH=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bI=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bJ=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,bK=/^(?:GET|HEAD)$/,bL=/^\/\//,bM=/\?/,bN=/)<[^<]*)*<\/script>/gi,bO=/^(?:select|textarea)/i,bP=/\s+/,bQ=/([?&])_=[^&]*/,bR=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bS=f.fn.load,bT={},bU={},bV,bW,bX=["*/"]+["*"];try{bV=e.href}catch(bY){bV=c.createElement("a"),bV.href="",bV=bV.href}bW=bR.exec(bV.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bS)return bS.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("
          ").append(c.replace(bN,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bO.test(this.nodeName)||bI.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bF,"\r\n")}}):{name:b.name,value:c.replace(bF,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.on(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?b_(a,f.ajaxSettings):(b=a,a=f.ajaxSettings),b_(a,b);return a},ajaxSettings:{url:bV,isLocal:bJ.test(bW[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":bX},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:bZ(bT),ajaxTransport:bZ(bU),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a>0?4:0;var o,r,u,w=c,x=l?cb(d,v,l):b,y,z;if(a>=200&&a<300||a===304){if(d.ifModified){if(y=v.getResponseHeader("Last-Modified"))f.lastModified[k]=y;if(z=v.getResponseHeader("Etag"))f.etag[k]=z}if(a===304)w="notmodified",o=!0;else try{r=cc(d,x),w="success",o=!0}catch(A){w="parsererror",u=A}}else{u=w;if(!w||a)w="error",a<0&&(a=0)}v.status=a,v.statusText=""+(c||w),o?h.resolveWith(e,[r,w,v]):h.rejectWith(e,[v,w,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.fireWith(e,[v,w]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f.Callbacks("once memory"),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bH.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.add,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bG,"").replace(bL,bW[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bP),d.crossDomain==null&&(r=bR.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bW[1]&&r[2]==bW[2]&&(r[3]||(r[1]==="http:"?80:443))==(bW[3]||(bW[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),b$(bT,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bK.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bM.test(d.url)?"&":"?")+d.data,delete d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bQ,"$1_="+x);d.url=y+(y===d.url?(bM.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", "+bX+"; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return!1}for(u in{success:1,error:1,complete:1})v[u](d[u]);p=b$(bU,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){if(s<2)w(-1,z);else throw z}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)ca(g,a[g],c,e);return d.join("&").replace(bD,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var cd=f.now(),ce=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+cd++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=b.contentType==="application/x-www-form-urlencoded"&&typeof b.data=="string";if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(ce.test(b.url)||e&&ce.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(ce,l),b.url===j&&(e&&(k=k.replace(ce,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var cf=a.ActiveXObject?function(){for(var a in ch)ch[a](0,1)}:!1,cg=0,ch;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ci()||cj()}:ci,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c){if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,cf&&delete ch[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n),m.text=h.responseText;try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++cg,cf&&(ch||(ch={},f(a).unload(cf)),ch[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var ck={},cl,cm,cn=/^(?:toggle|show|hide)$/,co=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,cp,cq=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],cr;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(cu("show",3),a,b,c);for(var g=0,h=this.length;g=i.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),i.animatedProperties[this.prop]=!0;for(b in i.animatedProperties)i.animatedProperties[b]!==!0&&(g=!1);if(g){i.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){h.style["overflow"+b]=i.overflow[a]}),i.hide&&f(h).hide();if(i.hide||i.show)for(b in i.animatedProperties)f.style(h,b,i.orig[b]),f.removeData(h,"fxshow"+b,!0),f.removeData(h,"toggle"+b,!0);d=i.complete,d&&(i.complete=!1,d.call(h))}return!1}i.duration==Infinity?this.now=e:(c=e-this.startTime,this.state=c/i.duration,this.pos=f.easing[i.animatedProperties[this.prop]](this.state,c,0,1,i.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return!0}},f.extend(f.fx,{tick:function(){var a,b=f.timers,c=0;for(;c-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=cx.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!cx.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each(["Left","Top"],function(a,c){var d="scroll"+c;f.fn[d]=function(c){var e,g;if(c===b){e=this[0];if(!e)return null;g=cy(e);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:f.support.boxModel&&g.document.documentElement[d]||g.document.body[d]:e[d]}return this.each(function(){g=cy(this),g?g.scrollTo(a?f(g).scrollLeft():c,a?c:f(g).scrollTop()):this[d]=c})}}),f.each(["Height","Width"],function(a,c){var d=c.toLowerCase();f.fn["inner"+c]=function(){var a=this[0];return a?a.style?parseFloat(f.css(a,d,"padding")):this[d]():null},f.fn["outer"+c]=function(a){var b=this[0];return b?b.style?parseFloat(f.css(b,d,a?"margin":"border")):this[d]():null},f.fn[d]=function(a){var e=this[0];if(!e)return a==null?null:this;if(f.isFunction(a))return this.each(function(b){var c=f(this);c[d](a.call(this,b,c[d]()))});if(f.isWindow(e)){var g=e.document.documentElement["client"+c],h=e.document.body;return e.document.compatMode==="CSS1Compat"&&g||h&&h["client"+c]||g}if(e.nodeType===9)return Math.max(e.documentElement["client"+c],e.body["scroll"+c],e.documentElement["scroll"+c],e.body["offset"+c],e.documentElement["offset"+c]);if(a===b){var i=f.css(e,d),j=parseFloat(i);return f.isNumeric(j)?j:i}return this.css(d,typeof a=="string"?a:a+"px")}}),a.jQuery=a.$=f,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return f})})(window); \ No newline at end of file diff --git a/test/lib/mocha.js b/test/lib/mocha.js new file mode 100644 index 0000000..e5ef7fd --- /dev/null +++ b/test/lib/mocha.js @@ -0,0 +1,2672 @@ +;(function(){ + + +// CommonJS require() + +function require(p){ + var path = require.resolve(p) + , mod = require.modules[path]; + if (!mod) throw new Error('failed to require "' + p + '"'); + if (!mod.exports) { + mod.exports = {}; + mod.call(mod.exports, mod, mod.exports, require.relative(path)); + } + return mod.exports; + } + +require.modules = {}; + +require.resolve = function (path){ + var orig = path + , reg = path + '.js' + , index = path + '/index.js'; + return require.modules[reg] && reg + || require.modules[index] && index + || orig; + }; + +require.register = function (path, fn){ + require.modules[path] = fn; + }; + +require.relative = function (parent) { + return function(p){ + if ('.' != p[0]) return require(p); + + var path = parent.split('/') + , segs = p.split('/'); + path.pop(); + + for (var i = 0; i < segs.length; i++) { + var seg = segs[i]; + if ('..' == seg) path.pop(); + else if ('.' != seg) path.push(seg); + } + + return require(path.join('/')); + }; + }; + + +require.register("browser/debug.js", function(module, exports, require){ + +module.exports = function(type){ + return function(){ + + } +}; +}); // module: browser/debug.js + +require.register("browser/events.js", function(module, exports, require){ + +/** + * Module exports. + */ + +exports.EventEmitter = EventEmitter; + +/** + * Check if `obj` is an array. + */ + +function isArray(obj) { + return '[object Array]' == {}.toString.call(obj); +} + +/** + * Event emitter constructor. + * + * @api public. + */ + +function EventEmitter(){}; + +/** + * Adds a listener. + * + * @api public + */ + +EventEmitter.prototype.on = function (name, fn) { + if (!this.$events) { + this.$events = {}; + } + + if (!this.$events[name]) { + this.$events[name] = fn; + } else if (isArray(this.$events[name])) { + this.$events[name].push(fn); + } else { + this.$events[name] = [this.$events[name], fn]; + } + + return this; +}; + +EventEmitter.prototype.addListener = EventEmitter.prototype.on; + +/** + * Adds a volatile listener. + * + * @api public + */ + +EventEmitter.prototype.once = function (name, fn) { + var self = this; + + function on () { + self.removeListener(name, on); + fn.apply(this, arguments); + }; + + on.listener = fn; + this.on(name, on); + + return this; +}; + +/** + * Removes a listener. + * + * @api public + */ + +EventEmitter.prototype.removeListener = function (name, fn) { + if (this.$events && this.$events[name]) { + var list = this.$events[name]; + + if (isArray(list)) { + var pos = -1; + + for (var i = 0, l = list.length; i < l; i++) { + if (list[i] === fn || (list[i].listener && list[i].listener === fn)) { + pos = i; + break; + } + } + + if (pos < 0) { + return this; + } + + list.splice(pos, 1); + + if (!list.length) { + delete this.$events[name]; + } + } else if (list === fn || (list.listener && list.listener === fn)) { + delete this.$events[name]; + } + } + + return this; +}; + +/** + * Removes all listeners for an event. + * + * @api public + */ + +EventEmitter.prototype.removeAllListeners = function (name) { + if (name === undefined) { + this.$events = {}; + return this; + } + + if (this.$events && this.$events[name]) { + this.$events[name] = null; + } + + return this; +}; + +/** + * Gets all listeners for a certain event. + * + * @api publci + */ + +EventEmitter.prototype.listeners = function (name) { + if (!this.$events) { + this.$events = {}; + } + + if (!this.$events[name]) { + this.$events[name] = []; + } + + if (!isArray(this.$events[name])) { + this.$events[name] = [this.$events[name]]; + } + + return this.$events[name]; +}; + +/** + * Emits an event. + * + * @api public + */ + +EventEmitter.prototype.emit = function (name) { + if (!this.$events) { + return false; + } + + var handler = this.$events[name]; + + if (!handler) { + return false; + } + + var args = [].slice.call(arguments, 1); + + if ('function' == typeof handler) { + handler.apply(this, args); + } else if (isArray(handler)) { + var listeners = handler.slice(); + + for (var i = 0, l = listeners.length; i < l; i++) { + listeners[i].apply(this, args); + } + } else { + return false; + } + + return true; +}; +}); // module: browser/events.js + +require.register("browser/fs.js", function(module, exports, require){ + +}); // module: browser/fs.js + +require.register("browser/progress.js", function(module, exports, require){ + +/** + * Expose `Progress`. + */ + +module.exports = Progress; + +/** + * Initialize a new `Progress` indicator. + */ + +function Progress() { + this.percent = 0; + this.size(0); + this.fontSize(12); + this.font('helvetica, arial, sans-serif'); +} + +/** + * Set progress size to `n`. + * + * @param {Number} n + * @return {Progress} for chaining + * @api public + */ + +Progress.prototype.size = function(n){ + this._size = n; + return this; +}; + +/** + * Set text to `str`. + * + * @param {String} str + * @return {Progress} for chaining + * @api public + */ + +Progress.prototype.text = function(str){ + this._text = str; + return this; +}; + +/** + * Set font size to `n`. + * + * @param {Number} n + * @return {Progress} for chaining + * @api public + */ + +Progress.prototype.fontSize = function(n){ + this._fontSize = n; + return this; +}; + +/** + * Set font `family`. + * + * @param {String} family + * @return {Progress} for chaining + */ + +Progress.prototype.font = function(family){ + this._font = family; + return this; +}; + +/** + * Update percentage to `n`. + * + * @param {Number} n + * @return {Progress} for chaining + */ + +Progress.prototype.update = function(n){ + this.percent = n; + return this; +}; + +/** + * Draw on `ctx`. + * + * @param {CanvasRenderingContext2d} ctx + * @return {Progress} for chaining + */ + +Progress.prototype.draw = function(ctx){ + var percent = Math.min(this.percent, 100) + , size = this._size + , half = size / 2 + , x = half + , y = half + , rad = half - 1 + , fontSize = this._fontSize; + + ctx.font = fontSize + 'px ' + this._font; + + var angle = Math.PI * 2 * (percent / 100); + ctx.clearRect(0, 0, size, size); + + // outer circle + ctx.strokeStyle = '#9f9f9f'; + ctx.beginPath(); + ctx.arc(x, y, rad, 0, angle, false); + ctx.stroke(); + + // inner circle + ctx.strokeStyle = '#eee'; + ctx.beginPath(); + ctx.arc(x, y, rad - 1, 0, angle, true); + ctx.stroke(); + + // text + var text = this._text || (percent | 0) + '%' + , w = ctx.measureText(text).width; + + ctx.fillText( + text + , x - w / 2 + 1 + , y + fontSize / 2 - 1); + + return this; +}; + +}); // module: browser/progress.js + +require.register("browser/tty.js", function(module, exports, require){ + +exports.isatty = function(){ + return true; +}; + +exports.getWindowSize = function(){ + return [window.innerHeight, window.innerWidth]; +}; +}); // module: browser/tty.js + +require.register("hook.js", function(module, exports, require){ + +/** + * Module dependencies. + */ + +var Runnable = require('./runnable'); + +/** + * Expose `Hook`. + */ + +module.exports = Hook; + +/** + * Initialize a new `Hook` with the given `title` and callback `fn`. + * + * @param {String} title + * @param {Function} fn + * @api private + */ + +function Hook(title, fn) { + Runnable.call(this, title, fn); +} + +/** + * Inherit from `Runnable.prototype`. + */ + +Hook.prototype = new Runnable; +Hook.prototype.constructor = Hook; + + +}); // module: hook.js + +require.register("interfaces/bdd.js", function(module, exports, require){ + +/** + * Module dependencies. + */ + +var Suite = require('../suite') + , Test = require('../test'); + +/** + * BDD-style interface: + * + * describe('Array', function(){ + * describe('#indexOf()', function(){ + * it('should return -1 when not present', function(){ + * + * }); + * + * it('should return the index when present', function(){ + * + * }); + * }); + * }); + * + */ + +module.exports = function(suite){ + var suites = [suite]; + + suite.on('pre-require', function(context){ + + /** + * Execute before running tests. + */ + + context.before = function(fn){ + suites[0].beforeAll(fn); + }; + + /** + * Execute after running tests. + */ + + context.after = function(fn){ + suites[0].afterAll(fn); + }; + + /** + * Execute before each test case. + */ + + context.beforeEach = function(fn){ + suites[0].beforeEach(fn); + }; + + /** + * Execute after each test case. + */ + + context.afterEach = function(fn){ + suites[0].afterEach(fn); + }; + + /** + * Describe a "suite" with the given `title` + * and callback `fn` containing nested suites + * and/or tests. + */ + + context.describe = function(title, fn){ + var suite = Suite.create(suites[0], title); + suites.unshift(suite); + fn(); + suites.shift(); + }; + + /** + * Describe a specification or test-case + * with the given `title` and callback `fn` + * acting as a thunk. + */ + + context.it = function(title, fn){ + suites[0].addTest(new Test(title, fn)); + }; + }); +}; + +}); // module: interfaces/bdd.js + +require.register("interfaces/exports.js", function(module, exports, require){ + +/** + * Module dependencies. + */ + +var Suite = require('../suite') + , Test = require('../test'); + +/** + * TDD-style interface: + * + * exports.Array = { + * '#indexOf()': { + * 'should return -1 when the value is not present': function(){ + * + * }, + * + * 'should return the correct index when the value is present': function(){ + * + * } + * } + * }; + * + */ + +module.exports = function(suite){ + var suites = [suite]; + + suite.on('require', visit); + + function visit(obj) { + var suite; + for (var key in obj) { + if ('function' == typeof obj[key]) { + var fn = obj[key]; + switch (key) { + case 'before': + suites[0].beforeAll(fn); + break; + case 'after': + suites[0].afterAll(fn); + break; + case 'beforeEach': + suites[0].beforeEach(fn); + break; + case 'afterEach': + suites[0].afterEach(fn); + break; + default: + suites[0].addTest(new Test(key, fn)); + } + } else { + var suite = Suite.create(suites[0], key); + suites.unshift(suite); + visit(obj[key]); + suites.shift(); + } + } + } +}; +}); // module: interfaces/exports.js + +require.register("interfaces/index.js", function(module, exports, require){ + +exports.bdd = require('./bdd'); +exports.tdd = require('./tdd'); +exports.exports = require('./exports'); +}); // module: interfaces/index.js + +require.register("interfaces/tdd.js", function(module, exports, require){ + +/** + * Module dependencies. + */ + +var Suite = require('../suite') + , Test = require('../test'); + +/** + * TDD-style interface: + * + * suite('Array', function(){ + * suite('#indexOf()', function(){ + * suiteSetup(function(){ + * + * }); + * + * test('should return -1 when not present', function(){ + * + * }); + * + * test('should return the index when present', function(){ + * + * }); + * + * suiteTeardown(function(){ + * + * }); + * }); + * }); + * + */ + +module.exports = function(suite){ + var suites = [suite]; + + suite.on('pre-require', function(context){ + + /** + * Execute before each test case. + */ + + context.setup = function(fn){ + suites[0].beforeEach(fn); + }; + + /** + * Execute after each test case. + */ + + context.teardown = function(fn){ + suites[0].afterEach(fn); + }; + + /** + * Execute before the suite. + */ + + context.suiteSetup = function(fn){ + suites[0].beforeAll(fn); + }; + + /** + * Execute after the suite. + */ + + context.suiteTeardown = function(fn){ + suites[0].afterAll(fn); + }; + + /** + * Describe a "suite" with the given `title` + * and callback `fn` containing nested suites + * and/or tests. + */ + + context.suite = function(title, fn){ + var suite = Suite.create(suites[0], title); + suites.unshift(suite); + fn(); + suites.shift(); + }; + + /** + * Describe a specification or test-case + * with the given `title` and callback `fn` + * acting as a thunk. + */ + + context.test = function(title, fn){ + suites[0].addTest(new Test(title, fn)); + }; + }); +}; + +}); // module: interfaces/tdd.js + +require.register("mocha.js", function(module, exports, require){ + +/*! + * mocha + * Copyright(c) 2011 TJ Holowaychuk + * MIT Licensed + */ + +/** + * Library version. + */ + +exports.version = '0.3.6'; + +exports.interfaces = require('./interfaces'); +exports.reporters = require('./reporters'); +exports.Runnable = require('./runnable'); +exports.Runner = require('./runner'); +exports.Suite = require('./suite'); +exports.Hook = require('./hook'); +exports.Test = require('./test'); +exports.watch = require('./watch'); +}); // module: mocha.js + +require.register("reporters/base.js", function(module, exports, require){ + +/** + * Module dependencies. + */ + +var tty = require('browser/tty'); + +/** + * Check if both stdio streams are associated with a tty. + */ + +var isatty = tty.isatty(1) && tty.isatty(2); + +/** + * Expose `Base`. + */ + +exports = module.exports = Base; + +/** + * Enable coloring by default. + */ + +exports.useColors = isatty; + +/** + * Default color map. + */ + +exports.colors = { + 'pass': 90 + , 'fail': 31 + , 'bright pass': 92 + , 'bright fail': 91 + , 'bright yellow': 93 + , 'pending': 36 + , 'suite': 0 + , 'error title': 0 + , 'error message': 31 + , 'error stack': 90 + , 'checkmark': 32 + , 'fast': 90 + , 'medium': 33 + , 'slow': 31 + , 'green': 32 + , 'light': 90 +}; + +/** + * Color `str` with the given `type`, + * allowing colors to be disabled, + * as well as user-defined color + * schemes. + * + * @param {String} type + * @param {String} str + * @return {String} + * @api private + */ + +var color = exports.color = function(type, str) { + if (!exports.useColors) return str; + return '\033[' + exports.colors[type] + 'm' + str + '\033[0m'; +}; + +/** + * Expose term window size, with some + * defaults for when stderr is not a tty. + */ + +exports.window = { + width: isatty + ? process.stdout.getWindowSize + ? process.stdout.getWindowSize(1)[0] + : tty.getWindowSize()[1] + : 75 +}; + +/** + * Expose some basic cursor interactions + * that are common among reporters. + */ + +exports.cursor = { + hide: function(){ + process.stdout.write('\033[?25l'); + }, + + show: function(){ + process.stdout.write('\033[?25h'); + } +}; + +/** + * A test is considered slow if it + * exceeds the following value in milliseconds. + */ + +exports.slow = 75; + +/** + * Outut the given `failures` as a list. + * + * @param {Array} failures + * @api public + */ + +exports.list = function(failures){ + console.error(); + failures.forEach(function(test, i){ + // format + var fmt = color('error title', ' %s) %s:\n') + + color('error message', ' %s') + + color('error stack', '\n%s\n'); + + // msg + var err = test.err + , stack = err.stack + , message = err.message || '' + , index = stack.indexOf(message) + message.length + , msg = stack.slice(0, index); + + // indent stack trace without msg + stack = stack.slice(index + 1) + .replace(/^/gm, ' '); + + console.error(fmt, i, test.fullTitle(), msg, stack); + }); +}; + +/** + * Initialize a new `Base` reporter. + * + * All other reporters generally + * inherit from this reporter, providing + * stats such as test duration, number + * of tests passed / failed etc. + * + * @param {Runner} runner + * @api public + */ + +function Base(runner) { + var self = this + , stats = this.stats = { suites: 0, tests: 0, passes: 0, failures: 0 } + , failures = this.failures = []; + + if (!runner) return; + this.runner = runner; + + runner.on('start', function(){ + stats.start = new Date; + }); + + runner.on('suite', function(suite){ + stats.suites = stats.suites || 0; + stats.suites++; + }); + + runner.on('test end', function(test){ + stats.tests = stats.tests || 0; + stats.tests++; + }); + + runner.on('pass', function(test){ + stats.passes = stats.passes || 0; + + var medium = exports.slow / 2; + test.speed = test.duration > exports.slow + ? 'slow' + : test.duration > medium + ? 'medium' + : 'fast'; + + stats.passes++; + }); + + runner.on('fail', function(test, err){ + stats.failures = stats.failures || 0; + stats.failures++; + test.err = err; + failures.push(test); + }); + + runner.on('end', function(){ + stats.end = new Date; + stats.duration = new Date - stats.start; + }); +} + +/** + * Output common epilogue used by many of + * the bundled reporters. + * + * @api public + */ + +Base.prototype.epilogue = function(){ + var stats = this.stats + , fmt; + + console.log(); + + // failure + if (stats.failures) { + fmt = color('bright fail', ' ✖') + + color('fail', ' %d of %d tests failed') + + color('light', ':') + + console.error(fmt, stats.failures, this.runner.total); + Base.list(this.failures); + console.error(); + return; + } + + // pass + fmt = color('bright pass', ' ✔') + + color('green', ' %d tests complete') + + color('light', ' (%dms)'); + + console.log(fmt, stats.tests || 0, stats.duration); + console.log(); +}; + +}); // module: reporters/base.js + +require.register("reporters/doc.js", function(module, exports, require){ + +/** + * Module dependencies. + */ + +var Base = require('./base') + , utils = require('../utils'); + +/** + * Expose `Doc`. + */ + +exports = module.exports = Doc; + +/** + * Initialize a new `Doc` reporter. + * + * @param {Runner} runner + * @api public + */ + +function Doc(runner) { + Base.call(this, runner); + + var self = this + , stats = this.stats + , total = runner.total + , indents = 2; + + function indent() { + return Array(indents).join(' '); + } + + runner.on('suite', function(suite){ + if (suite.root) return; + ++indents; + console.log('%s
          ', indent()); + ++indents; + console.log('%s

          %s

          ', indent(), suite.title); + console.log('%s
          ', indent()); + }); + + runner.on('suite end', function(suite){ + if (suite.root) return; + console.log('%s
          ', indent()); + --indents; + console.log('%s
          ', indent()); + --indents; + }); + + runner.on('pass', function(test){ + console.log('%s
          %s
          ', indent(), test.title); + var code = utils.escape(clean(test.fn.toString())); + console.log('%s
          %s
          ', indent(), code); + }); +} + +/** + * Strip the function definition from `str`, + * and re-indent for pre whitespace. + */ + +function clean(str) { + str = str + .replace(/^function *\(.*\) *{/, '') + .replace(/\s+\}$/, ''); + + var spaces = str.match(/^\n?( *)/)[1].length + , re = new RegExp('^ {' + spaces + '}', 'gm'); + + str = str.replace(re, ''); + + return str; +} +}); // module: reporters/doc.js + +require.register("reporters/dot.js", function(module, exports, require){ + +/** + * Module dependencies. + */ + +var Base = require('./base') + , color = Base.color; + +/** + * Expose `Dot`. + */ + +exports = module.exports = Dot; + +/** + * Initialize a new `Dot` matrix test reporter. + * + * @param {Runner} runner + * @api public + */ + +function Dot(runner) { + Base.call(this, runner); + + var self = this + , stats = this.stats + , width = Base.window.width * .75 | 0 + , n = 0; + + runner.on('start', function(){ + process.stdout.write('\n '); + }); + + runner.on('pending', function(test){ + process.stdout.write(color('pending', '.')); + }); + + runner.on('pass', function(test){ + if (++n % width == 0) process.stdout.write('\n '); + if ('slow' == test.speed) { + process.stdout.write(color('bright yellow', '.')); + } else { + process.stdout.write(color(test.speed, '.')); + } + }); + + runner.on('fail', function(test, err){ + if (++n % width == 0) process.stdout.write('\n '); + process.stdout.write(color('fail', '.')); + }); + + runner.on('end', function(){ + console.log(); + self.epilogue(); + }); +} + +/** + * Inherit from `Base.prototype`. + */ + +Dot.prototype = new Base; +Dot.prototype.constructor = Dot; + +}); // module: reporters/dot.js + +require.register("reporters/html.js", function(module, exports, require){ + +/** + * Module dependencies. + */ + +var Base = require('./base') + , utils = require('../utils') + , Progress = require('../browser/progress'); + +/** + * Expose `Doc`. + */ + +exports = module.exports = HTML; + +/** + * Stats template. + */ + +var statsTemplate = '
            ' + + '
          • ' + + '
          • passes: 0
          • ' + + '
          • failures: 0
          • ' + + '
          • duration: 0s
          • ' + + '
          '; + +/** + * Initialize a new `Doc` reporter. + * + * @param {Runner} runner + * @api public + */ + +function HTML(runner) { + Base.call(this, runner); + + // TODO: clean up + + var self = this + , stats = this.stats + , total = runner.total + , root = $('#mocha') + , stack = [root] + , stat = $(statsTemplate).appendTo(root) + , canvas = stat.find('canvas').get(0) + , ctx = canvas.getContext('2d') + , progress = new Progress; + + if (!root.length) return error('#mocha div missing, add it to your document'); + progress.size(50); + + runner.on('suite', function(suite){ + if (suite.root) return; + + // suite + var el = $('

          ' + suite.title + '

          '); + + // container + stack[0].append(el); + stack.unshift($('
          ')); + el.append(stack[0]); + }); + + runner.on('suite end', function(suite){ + if (suite.root) return; + stack.shift(); + }); + + runner.on('test end', function(test){ + // TODO: add to stats + var percent = stats.tests / total * 100 | 0; + + // update progress bar + progress.update(percent).draw(ctx); + + // update stats + var ms = new Date - stats.start; + stat.find('.passes em').text(stats.passes); + stat.find('.failures em').text(stats.failures); + stat.find('.duration em').text((ms / 1000).toFixed(2)); + + // test + if (test.passed) { + var el = $('

          ' + test.title + '

          ') + } else if (test.pending) { + var el = $('

          ' + test.title + '

          ') + } else { + var el = $('

          ' + test.title + '

          '); + var str = test.err.stack || test.err; + var err = $('
          ' + str + '
          '); + el.append(err); + } + + // toggle code + el.find('h2').toggle(function(){ + pre.slideDown('fast'); + }, function(){ + pre.slideUp('fast'); + }); + + // code + // TODO: defer + if (!test.pending) { + var code = utils.escape(clean(test.fn.toString())); + var pre = $('
          ' + code + '
          '); + pre.appendTo(el).hide(); + } + stack[0].append(el); + }); +} + +function error(msg) { + $('
          ' + msg + '
          ').appendTo('body'); +} + +/** + * Strip the function definition from `str`, + * and re-indent for pre whitespace. + */ + +function clean(str) { + str = str + .replace(/^function *\(.*\) *{/, '') + .replace(/\s+\}$/, ''); + + var spaces = str.match(/^\n?( *)/)[1].length + , re = new RegExp('^ {' + spaces + '}', 'gm'); + + str = str + .replace(re, '') + .replace(/^\s+/, ''); + + return str; +} +}); // module: reporters/html.js + +require.register("reporters/index.js", function(module, exports, require){ + +exports.Base = require('./base'); +exports.Dot = require('./dot'); +exports.Doc = require('./doc'); +exports.TAP = require('./tap'); +exports.JSON = require('./json'); +exports.HTML = require('./html'); +exports.List = require('./list'); +exports.Spec = require('./spec'); +exports.Progress = require('./progress'); +exports.Landing = require('./landing'); +exports.JSONStream = require('./json-stream'); + +}); // module: reporters/index.js + +require.register("reporters/json-stream.js", function(module, exports, require){ + +/** + * Module dependencies. + */ + +var Base = require('./base') + , color = Base.color; + +/** + * Expose `List`. + */ + +exports = module.exports = List; + +/** + * Initialize a new `List` test reporter. + * + * @param {Runner} runner + * @api public + */ + +function List(runner) { + Base.call(this, runner); + + var self = this + , stats = this.stats + , total = runner.total; + + runner.on('start', function(){ + console.log(JSON.stringify(['start', { total: total }])); + }); + + runner.on('pass', function(test){ + console.log(JSON.stringify(['pass', clean(test)])); + }); + + runner.on('fail', function(test, err){ + console.log(JSON.stringify(['fail', clean(test)])); + }); + + runner.on('end', function(){ + process.stdout.write(JSON.stringify(['end', self.stats])); + }); +} + +/** + * Return a plain-object representation of `test` + * free of cyclic properties etc. + * + * @param {Object} test + * @return {Object} + * @api private + */ + +function clean(test) { + return { + title: test.title + , fullTitle: test.fullTitle() + , duration: test.duration + } +} +}); // module: reporters/json-stream.js + +require.register("reporters/json.js", function(module, exports, require){ + +/** + * Module dependencies. + */ + +var Base = require('./base') + , cursor = Base.cursor + , color = Base.color; + +/** + * Expose `JSON`. + */ + +exports = module.exports = JSONReporter; + +/** + * Initialize a new `JSON` reporter. + * + * @param {Runner} runner + * @api public + */ + +function JSONReporter(runner) { + var self = this; + Base.call(this, runner); + + var tests = [] + , failures = [] + , passes = []; + + runner.on('test end', function(test){ + tests.push(test); + }); + + runner.on('pass', function(test){ + passes.push(test); + }); + + runner.on('fail', function(test){ + failures.push(test); + }); + + runner.on('end', function(){ + var obj = { + stats: self.stats + , tests: tests.map(clean) + , failures: failures.map(clean) + , passes: passes.map(clean) + }; + + process.stdout.write(JSON.stringify(obj)); + }); +} + +/** + * Return a plain-object representation of `test` + * free of cyclic properties etc. + * + * @param {Object} test + * @return {Object} + * @api private + */ + +function clean(test) { + return { + title: test.title + , fullTitle: test.fullTitle() + , duration: test.duration + } +} +}); // module: reporters/json.js + +require.register("reporters/landing.js", function(module, exports, require){ + +/** + * Module dependencies. + */ + +var Base = require('./base') + , cursor = Base.cursor + , color = Base.color; + +/** + * Expose `Landing`. + */ + +exports = module.exports = Landing; + +/** + * Airplane color. + */ + +Base.colors.plane = 0; + +/** + * Airplane crash color. + */ + +Base.colors['plane crash'] = 31; + +/** + * Runway color. + */ + +Base.colors.runway = 90; + +/** + * Initialize a new `Landing` reporter. + * + * @param {Runner} runner + * @api public + */ + +function Landing(runner) { + Base.call(this, runner); + + var self = this + , stats = this.stats + , width = Base.window.width * .75 | 0 + , total = runner.total + , stream = process.stdout + , plane = color('plane', '✈') + , crashed = -1 + , n = 0; + + function runway() { + var buf = Array(width).join('-'); + return ' ' + color('runway', buf); + } + + runner.on('start', function(){ + stream.write('\n '); + cursor.hide(); + }); + + runner.on('test end', function(test){ + // check if the plane crashed + var col = -1 == crashed + ? width * ++n / total | 0 + : crashed; + + // show the crash + if (test.failed) { + plane = color('plane crash', '✈'); + crashed = col; + } + + // render landing strip + stream.write('\033[4F\n\n'); + stream.write(runway()); + stream.write('\n '); + stream.write(color('runway', Array(col).join('⋅'))); + stream.write(plane) + stream.write(color('runway', Array(width - col).join('⋅') + '\n')); + stream.write(runway()); + stream.write('\033[0m'); + }); + + runner.on('end', function(){ + cursor.show(); + console.log(); + self.epilogue(); + }); +} + +/** + * Inherit from `Base.prototype`. + */ + +Landing.prototype = new Base; +Landing.prototype.constructor = Landing; + +}); // module: reporters/landing.js + +require.register("reporters/list.js", function(module, exports, require){ + +/** + * Module dependencies. + */ + +var Base = require('./base') + , color = Base.color; + +/** + * Expose `List`. + */ + +exports = module.exports = List; + +/** + * Initialize a new `List` test reporter. + * + * @param {Runner} runner + * @api public + */ + +function List(runner) { + Base.call(this, runner); + + var self = this + , stats = this.stats + , n = 0; + + runner.on('start', function(){ + console.log(); + }); + + runner.on('test', function(test){ + process.stdout.write(color('pass', ' ' + test.fullTitle() + ': ')); + }); + + runner.on('pending', function(test){ + var fmt = color('checkmark', ' -') + + color('pending', ' %s'); + console.log(fmt, test.fullTitle()); + }); + + runner.on('pass', function(test){ + var fmt = color('checkmark', ' ✓') + + color('pass', ' %s: ') + + color(test.speed, '%dms'); + console.log('\r' + fmt, test.fullTitle(), test.duration); + }); + + runner.on('fail', function(test, err){ + console.log('\r' + color('fail', ' %d) %s'), n++, test.fullTitle()); + }); + + runner.on('end', self.epilogue.bind(self)); +} + +/** + * Inherit from `Base.prototype`. + */ + +List.prototype = new Base; +List.prototype.constructor = List; + +}); // module: reporters/list.js + +require.register("reporters/progress.js", function(module, exports, require){ + +/** + * Module dependencies. + */ + +var Base = require('./base') + , cursor = Base.cursor + , color = Base.color; + +/** + * Expose `Progress`. + */ + +exports = module.exports = Progress; + +/** + * General progress bar color. + */ + +Base.colors.progress = 90; + +/** + * Initialize a new `Progress` bar test reporter. + * + * @param {Runner} runner + * @param {Object} options + * @api public + */ + +function Progress(runner, options) { + Base.call(this, runner); + + var self = this + , options = options || {} + , stats = this.stats + , width = Base.window.width * .50 | 0 + , total = runner.total + , complete = 0 + , max = Math.max; + + // default chars + options.open = options.open || '['; + options.complete = options.complete || '▬'; + options.incomplete = options.incomplete || '⋅'; + options.close = options.close || ']'; + options.verbose = false; + + // tests started + runner.on('start', function(){ + console.log(); + cursor.hide(); + }); + + // tests complete + runner.on('test end', function(){ + var incomplete = total - complete + , percent = complete++ / total + , n = width * percent | 0 + , i = width - n; + + process.stdout.write('\r\033[J'); + process.stdout.write(color('progress', ' ' + options.open)); + process.stdout.write(Array(n).join(options.complete)); + process.stdout.write(Array(i).join(options.incomplete)); + process.stdout.write(color('progress', options.close)); + if (options.verbose) { + process.stdout.write(color('progress', ' ' + complete + ' of ' + total)); + } + }); + + // tests are complete, output some stats + // and the failures if any + runner.on('end', function(){ + cursor.show(); + console.log(); + self.epilogue(); + }); +} + +/** + * Inherit from `Base.prototype`. + */ + +Progress.prototype = new Base; +Progress.prototype.constructor = Progress; + +}); // module: reporters/progress.js + +require.register("reporters/spec.js", function(module, exports, require){ + +/** + * Module dependencies. + */ + +var Base = require('./base') + , color = Base.color; + +/** + * Expose `Spec`. + */ + +exports = module.exports = Spec; + +/** + * Initialize a new `Spec` test reporter. + * + * @param {Runner} runner + * @api public + */ + +function Spec(runner) { + Base.call(this, runner); + + var self = this + , stats = this.stats + , indents = 0 + , n = 0; + + function indent() { + return Array(indents).join(' ') + } + + runner.on('start', function(){ + console.log(); + }); + + runner.on('suite', function(suite){ + ++indents; + console.log(color('suite', '%s%s'), indent(), suite.title); + }); + + runner.on('suite end', function(suite){ + --indents; + if (1 == indents) console.log(); + }); + + runner.on('test', function(test){ + process.stdout.write(indent() + color('pass', ' ◦ ' + test.title + ': ')); + }); + + runner.on('pending', function(test){ + var fmt = indent() + color('pending', ' - %s'); + console.log(fmt, test.title); + }); + + runner.on('pass', function(test){ + if ('fast' == test.speed) { + var fmt = indent() + + color('checkmark', ' ✓') + + color('pass', ' %s '); + console.log('\r' + fmt, test.title); + } else { + var fmt = indent() + + color('checkmark', ' ✓') + + color('pass', ' %s ') + + color(test.speed, '(%dms)'); + console.log('\r' + fmt, test.title, test.duration); + } + }); + + runner.on('fail', function(test, err){ + console.log('\r' + indent() + color('fail', ' %d) %s'), n++, test.title); + }); + + runner.on('end', self.epilogue.bind(self)); +} + +/** + * Inherit from `Base.prototype`. + */ + +Spec.prototype = new Base; +Spec.prototype.constructor = Spec; + +}); // module: reporters/spec.js + +require.register("reporters/tap.js", function(module, exports, require){ + +/** + * Module dependencies. + */ + +var Base = require('./base') + , cursor = Base.cursor + , color = Base.color; + +/** + * Expose `TAP`. + */ + +exports = module.exports = TAP; + +/** + * Initialize a new `TAP` reporter. + * + * @param {Runner} runner + * @api public + */ + +function TAP(runner) { + Base.call(this, runner); + + var self = this + , stats = this.stats + , total = runner.total + , n = 1; + + runner.on('start', function(){ + console.log('%d..%d', 1, total); + }); + + runner.on('test end', function(){ + ++n; + }); + + runner.on('pass', function(test){ + console.log('ok %d %s', n, test.fullTitle()); + }); + + runner.on('fail', function(test, err){ + console.log('not ok %d %s', n, test.fullTitle()); + console.log(err.stack.replace(/^/gm, ' ')); + }); +} +}); // module: reporters/tap.js + +require.register("runnable.js", function(module, exports, require){ + +/** + * Module dependencies. + */ + +var EventEmitter = require('browser/events').EventEmitter + , debug = require('browser/debug')('runnable'); + +/** + * Expose `Runnable`. + */ + +module.exports = Runnable; + +/** + * Initialize a new `Runnable` with the given `title` and callback `fn`. + * + * @param {String} title + * @param {Function} fn + * @api private + */ + +function Runnable(title, fn) { + this.title = title; + this.fn = fn; + this.async = fn && fn.length; + this.sync = ! this.async; + this._timeout = 2000; +} + +/** + * Inherit from `EventEmitter.prototype`. + */ + +Runnable.prototype = new EventEmitter; +Runnable.prototype.constructor = Runnable; + + +/** + * Set & get timeout `ms`. + * + * @param {Number} ms + * @return {Runnable|Number} ms or self + * @api private + */ + +Runnable.prototype.timeout = function(ms){ + if (0 == arguments.length) return this._timeout; + debug('timeout %d', ms); + this._timeout = ms; + return this; +}; + +/** + * Return the full title generated by recursively + * concatenating the parent's full title. + * + * @return {String} + * @api public + */ + +Runnable.prototype.fullTitle = function(){ + return this.parent.fullTitle() + ' ' + this.title; +}; + +/** + * Clear the timeout. + * + * @api private + */ + +Runnable.prototype.clearTimeout = function(){ + clearTimeout(this.timer); +}; + +/** + * Run the test and invoke `fn(err)`. + * + * @param {Function} fn + * @api private + */ + +Runnable.prototype.run = function(fn){ + var self = this + , ms = this.timeout() + , start = new Date + , finished + , emitted; + + // timeout + if (this.async) { + this.timer = setTimeout(function(){ + done(new Error('timeout of ' + ms + 'ms exceeded')); + }, ms); + } + + // called multiple times + function multiple() { + if (emitted) return; + emitted = true; + self.emit('error', new Error('done() called multiple times')); + } + + // finished + function done(err) { + if (finished) return multiple(); + self.clearTimeout(); + self.duration = new Date - start; + finished = true; + fn(err); + } + + // async + if (this.async) { + try { + this.fn(function(err){ + if (err instanceof Error) return done(err); + done(); + }); + } catch (err) { + done(err); + } + return; + } + + // sync + try { + if (!this.pending) this.fn(); + this.duration = new Date - start; + fn(); + } catch (err) { + fn(err); + } +}; + +}); // module: runnable.js + +require.register("runner.js", function(module, exports, require){ + +/** + * Module dependencies. + */ + +var EventEmitter = require('browser/events').EventEmitter + , debug = require('browser/debug')('runner') + , Test = require('./test') + , noop = function(){}; + +/** + * Expose `Runner`. + */ + +module.exports = Runner; + +/** + * Initialize a `Runner` for the given `suite`. + * + * Events: + * + * - `start` execution started + * - `end` execution complete + * - `suite` (suite) test suite execution started + * - `suite end` (suite) all tests (and sub-suites) have finished + * - `test` (test) test execution started + * - `test end` (test) test completed + * - `hook` (hook) hook execution started + * - `hook end` (hook) hook complete + * - `pass` (test) test passed + * - `fail` (test, err) test failed + * + * @api public + */ + +function Runner(suite) { + var self = this; + this._globals = []; + this.suite = suite; + this.total = suite.total(); + this.failures = 0; + this.on('test end', function(test){ self.checkGlobals(test); }); + this.on('hook end', function(hook){ self.checkGlobals(hook); }); + this.grep(/.*/); + this.globals(Object.keys(global).concat(['errno'])); +} + +/** + * Inherit from `EventEmitter.prototype`. + */ + +Runner.prototype = new EventEmitter; +Runner.prototype.constructor = Runner; + + +/** + * Run tests with full titles matching `re`. + * + * @param {RegExp} re + * @return {Runner} for chaining + * @api public + */ + +Runner.prototype.grep = function(re){ + debug('grep %s', re); + this._grep = re; + return this; +}; + +/** + * Allow the given `arr` of globals. + * + * @param {Array} arr + * @return {Runner} for chaining + * @api public + */ + +Runner.prototype.globals = function(arr){ + debug('globals %j', arr); + arr.forEach(function(arr){ + this._globals.push(arr); + }, this); + return this; +}; + +/** + * Check for global variable leaks. + * + * @api private + */ + +Runner.prototype.checkGlobals = function(test){ + if (this.ignoreLeaks) return; + + var leaks = Object.keys(global).filter(function(key){ + return !~this._globals.indexOf(key); + }, this); + + this._globals = this._globals.concat(leaks); + + if (leaks.length > 1) { + this.fail(test, new Error('global leaks detected: ' + leaks.join(', ') + '')); + } else if (leaks.length) { + this.fail(test, new Error('global leak detected: ' + leaks[0])); + } +}; + +/** + * Fail the given `test`. + * + * @param {Test} test + * @param {Error} err + * @api private + */ + +Runner.prototype.fail = function(test, err){ + ++this.failures; + test.failed = true; + this.emit('fail', test, err); +}; + +/** + * Fail the given `hook` with `err`. + * + * Hook failures (currently) hard-end due + * to that fact that a failing hook will + * surely cause subsequent tests to fail, + * causing jumbled reporting. + * + * @param {Hook} hook + * @param {Error} err + * @api private + */ + +Runner.prototype.failHook = function(hook, err){ + ++this.failures; + this.fail(hook, err); + this.emit('end'); +}; + +/** + * Run hook `name` callbacks and then invoke `fn()`. + * + * @param {String} name + * @param {Function} function + * @api private + */ + +Runner.prototype.hook = function(name, fn){ + var suite = this.suite + , hooks = suite['_' + name] + , ms = suite._timeout + , self = this + , timer; + + function next(i) { + var hook = hooks[i]; + if (!hook) return fn(); + self.currentRunnable = hook; + + self.emit('hook', hook); + + hook.on('error', function(err){ + self.failHook(hook, err); + }); + + hook.run(function(err){ + hook.removeAllListeners('error'); + if (err) return self.failHook(hook, err); + self.emit('hook end', hook); + next(++i); + }); + } + + process.nextTick(function(){ + next(0); + }); +}; + +/** + * Run hook `name` for the given array of `suites` + * in order, and callback `fn(err)`. + * + * @param {String} name + * @param {Array} suites + * @param {Function} fn + * @api private + */ + +Runner.prototype.hooks = function(name, suites, fn){ + var self = this + , orig = this.suite; + + function next(suite) { + self.suite = suite; + + if (!suite) { + self.suite = orig; + return fn(); + } + + self.hook(name, function(err){ + if (err) { + self.suite = orig; + return fn(err); + } + + next(suites.pop()); + }); + } + + next(suites.pop()); +}; + +/** + * Run hooks from the top level down. + * + * @param {String} name + * @param {Function} fn + * @api private + */ + +Runner.prototype.hookUp = function(name, fn){ + var suites = [this.suite].concat(this.parents()).reverse(); + this.hooks(name, suites, fn); +}; + +/** + * Run hooks from the bottom up. + * + * @param {String} name + * @param {Function} fn + * @api private + */ + +Runner.prototype.hookDown = function(name, fn){ + var suites = [this.suite].concat(this.parents()); + this.hooks(name, suites, fn); +}; + +/** + * Return an array of parent Suites from + * closest to furthest. + * + * @return {Array} + * @api private + */ + +Runner.prototype.parents = function(){ + var suite = this.suite + , suites = []; + while (suite = suite.parent) suites.push(suite); + return suites; +}; + +/** + * Run the current test and callback `fn(err)`. + * + * @param {Function} fn + * @api private + */ + +Runner.prototype.runTest = function(fn){ + var test = this.test + , self = this; + + try { + test.on('error', function(err){ + self.fail(test, err); + }); + test.run(fn); + } catch (err) { + fn(err); + } +}; + +/** + * Run tests in the given `suite` and invoke + * the callback `fn()` when complete. + * + * @param {Suite} suite + * @param {Function} fn + * @api private + */ + +Runner.prototype.runTests = function(suite, fn){ + var self = this + , tests = suite.tests + , test; + + function next(err) { + // next test + test = tests.shift(); + + // all done + if (!test) return fn(); + + // grep + if (!self._grep.test(test.fullTitle())) return next(); + + // pending + if (test.pending) { + self.emit('pending', test); + self.emit('test end', test); + return next(); + } + + // execute test and hook(s) + self.emit('test', self.test = self.currentRunnable = test); + self.hookDown('beforeEach', function(){ + self.runTest(function(err){ + if (err) { + self.fail(test, err); + self.emit('test end', test); + return self.hookUp('afterEach', next); + } + + self.emit('pass', test); + test.passed = true; + self.emit('test end', test); + self.hookUp('afterEach', next); + }); + }); + } + + next(); +}; + +/** + * Run the given `suite` and invoke the + * callback `fn()` when complete. + * + * @param {Suite} suite + * @param {Function} fn + * @api private + */ + +Runner.prototype.runSuite = function(suite, fn){ + var self = this + , i = 0; + + debug('run suite %s', suite.fullTitle()); + this.emit('suite', this.suite = suite); + + function next() { + var curr = suite.suites[i++]; + if (!curr) return done(); + self.runSuite(curr, next); + } + + function done() { + self.suite = suite; + self.hook('afterAll', function(){ + self.emit('suite end', suite); + fn(); + }); + } + + this.hook('beforeAll', function(){ + self.runTests(suite, next); + }); +}; + +/** + * Run the root suite and invoke `fn(failures)` + * on completion. + * + * @param {Function} fn + * @return {Runner} for chaining + * @api public + */ + +Runner.prototype.run = function(fn){ + var self = this + , fn = fn || function(){}; + + debug('start'); + + // callback + self.on('end', function(){ + debug('end'); + process.removeListener('uncaughtException', uncaught); + fn(self.failures); + }); + + // run suites + this.emit('start'); + this.runSuite(this.suite, function(){ + debug('finished running'); + self.emit('end'); + }); + + // uncaught exception + function uncaught(err){ + debug('uncaught exception'); + self.currentRunnable.clearTimeout(); + self.fail(self.currentRunnable, err); + self.emit('test end', self.test); + self.emit('end'); + } + + process.on('uncaughtException', uncaught); + + return this; +}; + +}); // module: runner.js + +require.register("suite.js", function(module, exports, require){ + +/** + * Module dependencies. + */ + +var EventEmitter = require('browser/events').EventEmitter + , debug = require('browser/debug')('suite') + , Hook = require('./hook'); + +/** + * Expose `Suite`. + */ + +exports = module.exports = Suite; + +/** + * Create a new `Suite` with the given `title` + * and parent `Suite`. When a suite with the + * same title is already present, that suite + * is returned to provide nicer reporter + * and more flexible meta-testing. + * + * @param {Suite} parent + * @param {String} title + * @return {Suite} + * @api public + */ + +exports.create = function(parent, title){ + var suite = new Suite(title); + suite.parent = parent; + title = suite.fullTitle(); + parent.addSuite(suite); + return suite; +}; + +/** + * Initialize a new `Suite` with the given `title`. + * + * @param {String} title + * @api private + */ + +function Suite(title) { + this.title = title; + this.suites = []; + this.tests = []; + this._beforeEach = []; + this._beforeAll = []; + this._afterEach = []; + this._afterAll = []; + this.root = !title; + this._timeout = 2000; +} + +/** + * Inherit from `EventEmitter.prototype`. + */ + +Suite.prototype = new EventEmitter; +Suite.prototype.constructor = Suite; + + +/** + * Return a clone of this `Suite`. + * + * @return {Suite} + * @api private + */ + +Suite.prototype.clone = function(){ + var suite = new Suite(this.title); + debug('clone'); + suite.timeout(this.timeout()); + return suite; +}; + +/** + * Set timeout `ms` or short-hand such as "2s". + * + * @param {Number|String} ms + * @return {Suite|Number} for chaining + * @api private + */ + +Suite.prototype.timeout = function(ms){ + if (0 == arguments.length) return this._timeout; + if (String(ms).match(/s$/)) ms = parseFloat(ms) * 1000; + debug('timeout %d', ms); + this._timeout = parseInt(ms, 10); + return this; +}; + +/** + * Run `fn(test[, done])` before running tests. + * + * @param {Function} fn + * @return {Suite} for chaining + * @api private + */ + +Suite.prototype.beforeAll = function(fn){ + var hook = new Hook('"before all" hook', fn); + hook.parent = this; + hook.timeout(this.timeout()); + this._beforeAll.push(hook); + this.emit('beforeAll', hook); + return this; +}; + +/** + * Run `fn(test[, done])` after running tests. + * + * @param {Function} fn + * @return {Suite} for chaining + * @api private + */ + +Suite.prototype.afterAll = function(fn){ + var hook = new Hook('"after all" hook', fn); + hook.parent = this; + hook.timeout(this.timeout()); + this._afterAll.push(hook); + this.emit('afterAll', hook); + return this; +}; + +/** + * Run `fn(test[, done])` before each test case. + * + * @param {Function} fn + * @return {Suite} for chaining + * @api private + */ + +Suite.prototype.beforeEach = function(fn){ + var hook = new Hook('"before each" hook', fn); + hook.parent = this; + hook.timeout(this.timeout()); + this._beforeEach.push(hook); + this.emit('beforeEach', hook); + return this; +}; + +/** + * Run `fn(test[, done])` after each test case. + * + * @param {Function} fn + * @return {Suite} for chaining + * @api private + */ + +Suite.prototype.afterEach = function(fn){ + var hook = new Hook('"after each" hook', fn); + hook.parent = this; + hook.timeout(this.timeout()); + this._afterEach.push(hook); + this.emit('afterEach', hook); + return this; +}; + +/** + * Add a test `suite`. + * + * @param {Suite} suite + * @return {Suite} for chaining + * @api private + */ + +Suite.prototype.addSuite = function(suite){ + suite.parent = this; + suite.timeout(this.timeout()); + this.suites.push(suite); + this.emit('suite', suite); + return this; +}; + +/** + * Add a `test` to this suite. + * + * @param {Test} test + * @return {Suite} for chaining + * @api private + */ + +Suite.prototype.addTest = function(test){ + test.parent = this; + test.timeout(this.timeout()); + this.tests.push(test); + this.emit('test', test); + return this; +}; + +/** + * Return the full title generated by recursively + * concatenating the parent's full title. + * + * @return {String} + * @api public + */ + +Suite.prototype.fullTitle = function(){ + if (this.parent) { + var full = this.parent.fullTitle(); + if (full) return full + ' ' + this.title; + } + return this.title; +}; + +/** + * Return the total number of tests. + * + * @return {Number} + * @api public + */ + +Suite.prototype.total = function(){ + return this.suites.reduce(function(sum, suite){ + return sum + suite.total(); + }, 0) + this.tests.length; +}; + +}); // module: suite.js + +require.register("test.js", function(module, exports, require){ + +/** + * Module dependencies. + */ + +var Runnable = require('./runnable'); + +/** + * Expose `Test`. + */ + +module.exports = Test; + +/** + * Initialize a new `Test` with the given `title` and callback `fn`. + * + * @param {String} title + * @param {Function} fn + * @api private + */ + +function Test(title, fn) { + Runnable.call(this, title, fn); + this.pending = !fn; +} + +/** + * Inherit from `Runnable.prototype`. + */ + +Test.prototype = new Runnable; +Test.prototype.constructor = Test; + + +}); // module: test.js + +require.register("utils.js", function(module, exports, require){ + +/** + * Escape special characters in the given string of html. + * + * @param {String} html + * @return {String} + * @api private + */ + +exports.escape = function(html) { + return String(html) + .replace(/&/g, '&') + .replace(/"/g, '"') + .replace(//g, '>'); +}; +}); // module: utils.js + +require.register("watch.js", function(module, exports, require){ + +/** + * Module dependencies. + */ + +var fs = require('browser/fs') + , debug = require('browser/debug')('watch'); + +module.exports = function(paths, fn){ + var options = { interval: 100 }; + paths.forEach(function(path){ + debug('watch %s', path); + fs.watchFile(path, options, function(curr, prev){ + if (prev.mtime < curr.mtime) fn(path); + }); + }); +}; +}); // module: watch.js + +/** + * Node shims. + * + * These are meant only to allow + * mocha.js to run untouched, not + * to allow running node code in + * the browser. + */ + +process = {}; +process.exit = function(status){}; +process.stdout = {}; +global = this; + +process.nextTick = function(fn){ fn(); }; + +process.removeListener = function(ev){ + if ('uncaughtException' == ev) { + window.onerror = null; + } +}; + +process.on = function(ev, fn){ + if ('uncaughtException' == ev) { + window.onerror = fn; + } +}; + +mocha = require('mocha'); + +// boot +;(function(){ + var suite = new mocha.Suite; + var Reporter = mocha.reporters.HTML; + + function parse(qs) { + return qs + .replace('?', '') + .split('&') + .reduce(function(obj, pair){ + var i = pair.indexOf('=') + , key = pair.slice(0, i) + , val = pair.slice(++i); + + obj[key] = decodeURIComponent(val); + return obj; + }, {}); + } + + mocha.setup = function(ui){ + ui = mocha.interfaces[ui]; + if (!ui) throw new Error('invalid mocha interface "' + ui + '"'); + ui(suite); + suite.emit('pre-require', global); + }; + + mocha.run = function(){ + suite.emit('run'); + var runner = new mocha.Runner(suite); + var reporter = new Reporter(runner); + var query = parse(window.location.search || ""); + if (query.grep) runner.grep(new RegExp(query.grep)); + return runner.run(); + }; +})(); +})(); \ No newline at end of file diff --git a/test/lib/underscore.js b/test/lib/underscore.js new file mode 100644 index 0000000..6b40959 --- /dev/null +++ b/test/lib/underscore.js @@ -0,0 +1,30 @@ +// Underscore.js 1.2.3 +// (c) 2009-2011 Jeremy Ashkenas, DocumentCloud Inc. +// Underscore is freely distributable under the MIT license. +// Portions of Underscore are inspired or borrowed from Prototype, +// Oliver Steele's Functional, and John Resig's Micro-Templating. +// For all details and documentation: +// http://documentcloud.github.com/underscore +(function(){function r(a,c,d){if(a===c)return a!==0||1/a==1/c;if(a==null||c==null)return a===c;if(a._chain)a=a._wrapped;if(c._chain)c=c._wrapped;if(a.isEqual&&b.isFunction(a.isEqual))return a.isEqual(c);if(c.isEqual&&b.isFunction(c.isEqual))return c.isEqual(a);var e=l.call(a);if(e!=l.call(c))return false;switch(e){case "[object String]":return a==String(c);case "[object Number]":return a!=+a?c!=+c:a==0?1/a==1/c:a==+c;case "[object Date]":case "[object Boolean]":return+a==+c;case "[object RegExp]":return a.source== +c.source&&a.global==c.global&&a.multiline==c.multiline&&a.ignoreCase==c.ignoreCase}if(typeof a!="object"||typeof c!="object")return false;for(var f=d.length;f--;)if(d[f]==a)return true;d.push(a);var f=0,g=true;if(e=="[object Array]"){if(f=a.length,g=f==c.length)for(;f--;)if(!(g=f in a==f in c&&r(a[f],c[f],d)))break}else{if("constructor"in a!="constructor"in c||a.constructor!=c.constructor)return false;for(var h in a)if(m.call(a,h)&&(f++,!(g=m.call(c,h)&&r(a[h],c[h],d))))break;if(g){for(h in c)if(m.call(c, +h)&&!f--)break;g=!f}}d.pop();return g}var s=this,F=s._,o={},k=Array.prototype,p=Object.prototype,i=k.slice,G=k.concat,H=k.unshift,l=p.toString,m=p.hasOwnProperty,v=k.forEach,w=k.map,x=k.reduce,y=k.reduceRight,z=k.filter,A=k.every,B=k.some,q=k.indexOf,C=k.lastIndexOf,p=Array.isArray,I=Object.keys,t=Function.prototype.bind,b=function(a){return new n(a)};if(typeof exports!=="undefined"){if(typeof module!=="undefined"&&module.exports)exports=module.exports=b;exports._=b}else typeof define==="function"&& +define.amd?define("underscore",function(){return b}):s._=b;b.VERSION="1.2.3";var j=b.each=b.forEach=function(a,c,b){if(a!=null)if(v&&a.forEach===v)a.forEach(c,b);else if(a.length===+a.length)for(var e=0,f=a.length;e2;a==null&&(a=[]);if(x&&a.reduce===x)return e&&(c=b.bind(c,e)),f?a.reduce(c,d):a.reduce(c);j(a,function(a,b,i){f?d=c.call(e,d,a,b,i):(d=a,f=true)});if(!f)throw new TypeError("Reduce of empty array with no initial value");return d};b.reduceRight=b.foldr=function(a,c,d,e){var f=arguments.length>2;a==null&&(a=[]);if(y&&a.reduceRight===y)return e&&(c=b.bind(c,e)),f?a.reduceRight(c,d):a.reduceRight(c);var g=b.toArray(a).reverse();e&&!f&&(c=b.bind(c,e));return f?b.reduce(g, +c,d,e):b.reduce(g,c)};b.find=b.detect=function(a,c,b){var e;D(a,function(a,g,h){if(c.call(b,a,g,h))return e=a,true});return e};b.filter=b.select=function(a,c,b){var e=[];if(a==null)return e;if(z&&a.filter===z)return a.filter(c,b);j(a,function(a,g,h){c.call(b,a,g,h)&&(e[e.length]=a)});return e};b.reject=function(a,c,b){var e=[];if(a==null)return e;j(a,function(a,g,h){c.call(b,a,g,h)||(e[e.length]=a)});return e};b.every=b.all=function(a,c,b){var e=true;if(a==null)return e;if(A&&a.every===A)return a.every(c, +b);j(a,function(a,g,h){if(!(e=e&&c.call(b,a,g,h)))return o});return e};var D=b.some=b.any=function(a,c,d){c||(c=b.identity);var e=false;if(a==null)return e;if(B&&a.some===B)return a.some(c,d);j(a,function(a,b,h){if(e||(e=c.call(d,a,b,h)))return o});return!!e};b.include=b.contains=function(a,c){var b=false;if(a==null)return b;return q&&a.indexOf===q?a.indexOf(c)!=-1:b=D(a,function(a){return a===c})};b.invoke=function(a,c){var d=i.call(arguments,2);return b.map(a,function(a){return(c.call?c||a:a[c]).apply(a, +d)})};b.pluck=function(a,c){return b.map(a,function(a){return a[c]})};b.max=function(a,c,d){if(!c&&b.isArray(a))return Math.max.apply(Math,a);if(!c&&b.isEmpty(a))return-Infinity;var e={computed:-Infinity};j(a,function(a,b,h){b=c?c.call(d,a,b,h):a;b>=e.computed&&(e={value:a,computed:b})});return e.value};b.min=function(a,c,d){if(!c&&b.isArray(a))return Math.min.apply(Math,a);if(!c&&b.isEmpty(a))return Infinity;var e={computed:Infinity};j(a,function(a,b,h){b=c?c.call(d,a,b,h):a;bd?1:0}),"value")};b.groupBy=function(a,c){var d={},e=b.isFunction(c)?c:function(a){return a[c]};j(a,function(a,b){var c=e(a,b);(d[c]||(d[c]=[])).push(a)});return d};b.sortedIndex= +function(a,c,d){d||(d=b.identity);for(var e=0,f=a.length;e>1;d(a[g])=0})})};b.difference=function(a){var c=b.flatten(i.call(arguments,1));return b.filter(a,function(a){return!b.include(c,a)})};b.zip=function(){for(var a=i.call(arguments),c=b.max(b.pluck(a,"length")),d=Array(c),e=0;e=0;d--)b=[a[d].apply(this,b)];return b[0]}};b.after= +function(a,b){return a<=0?b():function(){if(--a<1)return b.apply(this,arguments)}};b.keys=I||function(a){if(a!==Object(a))throw new TypeError("Invalid object");var b=[],d;for(d in a)m.call(a,d)&&(b[b.length]=d);return b};b.values=function(a){return b.map(a,b.identity)};b.functions=b.methods=function(a){var c=[],d;for(d in a)b.isFunction(a[d])&&c.push(d);return c.sort()};b.extend=function(a){j(i.call(arguments,1),function(b){for(var d in b)b[d]!==void 0&&(a[d]=b[d])});return a};b.defaults=function(a){j(i.call(arguments, +1),function(b){for(var d in b)a[d]==null&&(a[d]=b[d])});return a};b.clone=function(a){return!b.isObject(a)?a:b.isArray(a)?a.slice():b.extend({},a)};b.tap=function(a,b){b(a);return a};b.isEqual=function(a,b){return r(a,b,[])};b.isEmpty=function(a){if(b.isArray(a)||b.isString(a))return a.length===0;for(var c in a)if(m.call(a,c))return false;return true};b.isElement=function(a){return!!(a&&a.nodeType==1)};b.isArray=p||function(a){return l.call(a)=="[object Array]"};b.isObject=function(a){return a=== +Object(a)};b.isArguments=function(a){return l.call(a)=="[object Arguments]"};if(!b.isArguments(arguments))b.isArguments=function(a){return!(!a||!m.call(a,"callee"))};b.isFunction=function(a){return l.call(a)=="[object Function]"};b.isString=function(a){return l.call(a)=="[object String]"};b.isNumber=function(a){return l.call(a)=="[object Number]"};b.isNaN=function(a){return a!==a};b.isBoolean=function(a){return a===true||a===false||l.call(a)=="[object Boolean]"};b.isDate=function(a){return l.call(a)== +"[object Date]"};b.isRegExp=function(a){return l.call(a)=="[object RegExp]"};b.isNull=function(a){return a===null};b.isUndefined=function(a){return a===void 0};b.noConflict=function(){s._=F;return this};b.identity=function(a){return a};b.times=function(a,b,d){for(var e=0;e/g,">").replace(/"/g,""").replace(/'/g,"'").replace(/\//g,"/")};b.mixin=function(a){j(b.functions(a),function(c){J(c, +b[c]=a[c])})};var K=0;b.uniqueId=function(a){var b=K++;return a?a+b:b};b.templateSettings={evaluate:/<%([\s\S]+?)%>/g,interpolate:/<%=([\s\S]+?)%>/g,escape:/<%-([\s\S]+?)%>/g};b.template=function(a,c){var d=b.templateSettings,d="var __p=[],print=function(){__p.push.apply(__p,arguments);};with(obj||{}){__p.push('"+a.replace(/\\/g,"\\\\").replace(/'/g,"\\'").replace(d.escape,function(a,b){return"',_.escape("+b.replace(/\\'/g,"'")+"),'"}).replace(d.interpolate,function(a,b){return"',"+b.replace(/\\'/g, +"'")+",'"}).replace(d.evaluate||null,function(a,b){return"');"+b.replace(/\\'/g,"'").replace(/[\r\n\t]/g," ")+";__p.push('"}).replace(/\r/g,"\\r").replace(/\n/g,"\\n").replace(/\t/g,"\\t")+"');}return __p.join('');",e=new Function("obj","_",d);return c?e(c,b):function(a){return e.call(this,a,b)}};var n=function(a){this._wrapped=a};b.prototype=n.prototype;var u=function(a,c){return c?b(a).chain():a},J=function(a,c){n.prototype[a]=function(){var a=i.call(arguments);H.call(a,this._wrapped);return u(c.apply(b, +a),this._chain)}};b.mixin(b);j("pop,push,reverse,shift,sort,splice,unshift".split(","),function(a){var b=k[a];n.prototype[a]=function(){b.apply(this._wrapped,arguments);return u(this._wrapped,this._chain)}});j(["concat","join","slice"],function(a){var b=k[a];n.prototype[a]=function(){return u(b.apply(this._wrapped,arguments),this._chain)}});n.prototype.chain=function(){this._chain=true;return this};n.prototype.value=function(){return this._wrapped}}).call(this); \ No newline at end of file diff --git a/test/npm.js b/test/npm.js new file mode 100644 index 0000000..5154e97 --- /dev/null +++ b/test/npm.js @@ -0,0 +1,29 @@ +var fs = require('fs') + , clarinet = require('../clarinet.js') + , npm_stream = clarinet.createStream() + , twitter_stream = clarinet.createStream() + , assert = require('assert') + ; + +describe('clarinet', function(){ + describe('#npm', function() { + it('should be able to parse npm', function (done){ + npm_stream.on("error", function (err) { done(err); }); + npm_stream.on("end", function () { + assert.ok(true, "npm worked"); + done(); + }); + fs.createReadStream(__dirname + '/../samples/npm.json') + .pipe(npm_stream); + }); + it('should be able to parse twitter', function (done){ + twitter_stream.on("error", function (err) { done(err); }); + twitter_stream.on("end", function () { + assert.ok(true, "twit worked"); + done(); + }); + fs.createReadStream(__dirname + '/../samples/twitter.json') + .pipe(twitter_stream); + }); + }); +}); \ No newline at end of file diff --git a/test/parser-position.js b/test/parser-position.js deleted file mode 100644 index e4a68b1..0000000 --- a/test/parser-position.js +++ /dev/null @@ -1,28 +0,0 @@ -var sax = require("../lib/sax"), - assert = require("assert") - -function testPosition(chunks, expectedEvents) { - var parser = sax.parser(); - expectedEvents.forEach(function(expectation) { - parser['on' + expectation[0]] = function() { - for (var prop in expectation[1]) { - assert.equal(parser[prop], expectation[1][prop]); - } - } - }); - chunks.forEach(function(chunk) { - parser.write(chunk); - }); -}; - -testPosition(['
          abcdefgh
          '], - [ ['opentag', { position: 5, startTagPosition: 1 }] - , ['text', { position: 19, startTagPosition: 14 }] - , ['closetag', { position: 19, startTagPosition: 14 }] - ]); - -testPosition(['
          abcde','fgh
          '], - [ ['opentag', { position: 5, startTagPosition: 1 }] - , ['text', { position: 19, startTagPosition: 14 }] - , ['closetag', { position: 19, startTagPosition: 14 }] - ]); diff --git a/test/position.js b/test/position.js new file mode 100644 index 0000000..7bb4f48 --- /dev/null +++ b/test/position.js @@ -0,0 +1,25 @@ +var fs = require('fs') + , clarinet = require('../clarinet.js') + , parser = clarinet.CParser() + , assert = require('assert') + ; + +var json = '{"one": [{"fish": 1}]}'; + +describe('clarinet', function(){ + describe('#position', function() { + it('should be able to correctly track position', function (done){ + fs.readFile('test/sample.json', 'utf8', function (err,data) { + if (err) { + done(err); + } + parser.onend = function() { + assert.equal(696, this.position); + }; + parser.write(data); + parser.close(); + done(); + }); + }); + }); +}); diff --git a/test/sample.json b/test/sample.json new file mode 100644 index 0000000..cfefbcd --- /dev/null +++ b/test/sample.json @@ -0,0 +1,39 @@ +{ + "consumers": [ + { + "name": "John Doe", + "address": "123 Main St", + "city": "Anywhere" + }, + { + "name": "John Doe", + "address": "123 Main St", + "city": "Anywhere" + }, + { + "name": "John Doe", + "address": "123 Main St", + "city": "Anywhere" + }, + { + "name": "John Doe", + "address": "123 Main St", + "city": "Anywhere" + }, + { + "name": "John Doe", + "address": "123 Main St", + "city": "Anywhere" + }, + { + "name": "John Doe", + "address": "123 Main St", + "city": "Anywhere" + }, + { + "name": "John Doe", + "address": "123 Main St", + "city": "Anywhere" + } + ] +} diff --git a/test/script.js b/test/script.js deleted file mode 100644 index 464c051..0000000 --- a/test/script.js +++ /dev/null @@ -1,12 +0,0 @@ -require(__dirname).test({ - xml : "", - expect : [ - ["opentag", {"name": "HTML","attributes": {}}], - ["opentag", {"name": "HEAD","attributes": {}}], - ["opentag", {"name": "SCRIPT","attributes": {}}], - ["script", "if (1 < 0) { console.log('elo there'); }"], - ["closetag", "SCRIPT"], - ["closetag", "HEAD"], - ["closetag", "HTML"] - ] -}); diff --git a/test/self-closing-child-strict.js b/test/self-closing-child-strict.js deleted file mode 100644 index ce9c045..0000000 --- a/test/self-closing-child-strict.js +++ /dev/null @@ -1,40 +0,0 @@ - -require(__dirname).test({ - xml : - ""+ - "" + - "" + - "" + - "" + - "=(|)" + - "" + - "", - expect : [ - ["opentag", { - "name": "root", - "attributes": {} - }], - ["opentag", { - "name": "child", - "attributes": {} - }], - ["opentag", { - "name": "haha", - "attributes": {} - }], - ["closetag", "haha"], - ["closetag", "child"], - ["opentag", { - "name": "monkey", - "attributes": {} - }], - ["text", "=(|)"], - ["closetag", "monkey"], - ["closetag", "root"], - ["end"], - ["ready"] - ], - strict : true, - opt : {} -}); - diff --git a/test/self-closing-child.js b/test/self-closing-child.js deleted file mode 100644 index bc6b52b..0000000 --- a/test/self-closing-child.js +++ /dev/null @@ -1,40 +0,0 @@ - -require(__dirname).test({ - xml : - ""+ - "" + - "" + - "" + - "" + - "=(|)" + - "" + - "", - expect : [ - ["opentag", { - "name": "ROOT", - "attributes": {} - }], - ["opentag", { - "name": "CHILD", - "attributes": {} - }], - ["opentag", { - "name": "HAHA", - "attributes": {} - }], - ["closetag", "HAHA"], - ["closetag", "CHILD"], - ["opentag", { - "name": "MONKEY", - "attributes": {} - }], - ["text", "=(|)"], - ["closetag", "MONKEY"], - ["closetag", "ROOT"], - ["end"], - ["ready"] - ], - strict : false, - opt : {} -}); - diff --git a/test/self-closing-tag.js b/test/self-closing-tag.js deleted file mode 100644 index b2c5736..0000000 --- a/test/self-closing-tag.js +++ /dev/null @@ -1,25 +0,0 @@ - -require(__dirname).test({ - xml : - " "+ - " "+ - " "+ - " "+ - "=(|) "+ - ""+ - " ", - expect : [ - ["opentag", {name:"ROOT", attributes:{}}], - ["opentag", {name:"HAHA", attributes:{}}], - ["closetag", "HAHA"], - ["opentag", {name:"HAHA", attributes:{}}], - ["closetag", "HAHA"], - // ["opentag", {name:"HAHA", attributes:{}}], - // ["closetag", "HAHA"], - ["opentag", {name:"MONKEY", attributes:{}}], - ["text", "=(|)"], - ["closetag", "MONKEY"], - ["closetag", "ROOT"] - ], - opt : { trim : true } -}); \ No newline at end of file diff --git a/test/stray-ending.js b/test/stray-ending.js deleted file mode 100644 index 6b0aa7f..0000000 --- a/test/stray-ending.js +++ /dev/null @@ -1,17 +0,0 @@ -// stray ending tags should just be ignored in non-strict mode. -// https://github.com/isaacs/sax-js/issues/32 -require(__dirname).test - ( { xml : - "" - , expect : - [ [ "opentag", { name: "A", attributes: {} } ] - , [ "opentag", { name: "B", attributes: {} } ] - , [ "text", "" ] - , [ "closetag", "B" ] - , [ "closetag", "A" ] - ] - , strict : false - , opt : {} - } - ) - diff --git a/test/trailing-non-whitespace.js b/test/trailing-non-whitespace.js deleted file mode 100644 index 3e1fb2e..0000000 --- a/test/trailing-non-whitespace.js +++ /dev/null @@ -1,17 +0,0 @@ - -require(__dirname).test({ - xml : "Welcome, to monkey land", - expect : [ - ["opentag", { - "name": "SPAN", - "attributes": {} - }], - ["text", "Welcome,"], - ["closetag", "SPAN"], - ["text", " to monkey land"], - ["end"], - ["ready"] - ], - strict : false, - opt : {} -}); diff --git a/test/twitter.js b/test/twitter.js new file mode 100644 index 0000000..58300d8 --- /dev/null +++ b/test/twitter.js @@ -0,0 +1,16719 @@ +var TWITTER = [ +{"created_at": "Mon, 19 Dec 2011 18:56:59 +0000", "from_user": "edjoperez", "from_user_id": 372052399, "from_user_id_str": "372052399", "from_user_name": "Ed Perez", "geo": null, "id": 148839261322477570, "id_str": "148839261322477568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "I have to tell you: There is a project to create GTK bindings to #Nodejs, can you imagine javascript in a desktop GUI application? :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:27 +0000", "from_user": "donnfelker", "from_user_id": 14393851, "from_user_id_str": "14393851", "from_user_name": "Donn Felker", "geo": null, "id": 148838620537696260, "id_str": "148838620537696256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1514965492/Photo_on_2011-08-26_at_15.28_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1514965492/Photo_on_2011-08-26_at_15.28_2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "My last 3 days - Android. Python. NodeJs. MongoDB. MySql. Sqlite. Json. Html. JavaScript. Django.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:35 +0000", "from_user": "ntotten", "from_user_id": 6420932, "from_user_id_str": "6420932", "from_user_name": "Nathan Totten", "geo": null, "id": 148837647450771460, "id_str": "148837647450771457", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1455947729/ntotten_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1455947729/ntotten_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Playing around with LESS, Node.js, and express today. Very cool stuff. I really like how easy and clean css is with LESS. #nodejs #azure", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:56 +0000", "from_user": "GodezInc", "from_user_id": 49715292, "from_user_id_str": "49715292", "from_user_name": "Peyrouse Vincent", "geo": null, "id": 148836732421419000, "id_str": "148836732421419009", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1350515711/184903_1878935853844_1254697708_32237693_3223141_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1350515711/184903_1878935853844_1254697708_32237693_3223141_n_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "D\\u00E9couvre un nouveau monde avec #NodeJS et #MongoDB. Seule question pourquoi je ne les ai pas essay\\u00E9 plus t\\u00F4t ?!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:28 +0000", "from_user": "3rdEden", "from_user_id": 14350255, "from_user_id_str": "14350255", "from_user_name": "Arnout Kazemier", "geo": null, "id": 148836614204952580, "id_str": "148836614204952577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Server-Side JavaScript Injection: https://t.co/XjacSFhQ #nodejs #blackhat #security", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:48 +0000", "from_user": "pyhrus", "from_user_id": 44553100, "from_user_id_str": "44553100", "from_user_name": "Shankar Karuppiah", "geo": null, "id": 148836194741002240, "id_str": "148836194741002240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/249276442/Picture_003_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/249276442/Picture_003_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Finally, I was able to place an order for teespring.com/nodejs thanks to Captain Awesome from @teespring_ Awesome customer service. Cheers", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:55 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148833959088885760, "id_str": "148833959088885760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @mtw: #hackmtl http://t.co/Omr5l7lu recap of the nodejs hacakthon. congrats to all the developers!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:52 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148833943972626430, "id_str": "148833943972626432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#hackmtl http://t.co/pWyd3z0M recap of the nodejs hacakthon. congrats to all the developers! http://t.co/RtZQE6kX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:57 +0000", "from_user": "amyhoy", "from_user_id": 627213, "from_user_id_str": "627213", "from_user_name": "Amy Hoy", "geo": null, "id": 148833212704096260, "id_str": "148833212704096256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/65653569/amy-silly_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/65653569/amy-silly_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@nodejs here's how to deal with @allthis stealing your material & makin it look like you endorse their service http://t.co/39ShRFFz", "to_user": "nodejs", "to_user_id": 91985735, "to_user_id_str": "91985735", "to_user_name": "node js"}, +{"created_at": "Mon, 19 Dec 2011 18:31:01 +0000", "from_user": "allthisfeed", "from_user_id": 405310659, "from_user_id_str": "405310659", "from_user_name": "allthis feed", "geo": null, "id": 148832724797489150, "id_str": "148832724797489152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691844588/allthis_03_64_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691844588/allthis_03_64_normal.png", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "Trading ten minutes of node js's time @allthis @nodejs http://t.co/ODqQx4jN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:33 +0000", "from_user": "mromaniv", "from_user_id": 289957624, "from_user_id_str": "289957624", "from_user_name": "mike romaniv", "geo": null, "id": 148831348377915400, "id_str": "148831348377915392", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1341399098/Shri.Yantra.blue_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1341399098/Shri.Yantra.blue_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @habrahabr: Node.JS / \\u0417\\u0430\\u043F\\u0443\\u0441\\u043A\\u0430\\u0435\\u043C jQuery \\u043D\\u0430\\u00A0\\u0434\\u0432\\u0438\\u0436\\u043A\\u0435\\u00A0Node.js \\u0432\\u043C\\u0435\\u0441\\u0442\\u043E\\u00A0\\u0431\\u0440\\u0430\\u0443\\u0437\\u0435\\u0440\\u0430 http://t.co/C4PLf33V", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:08 +0000", "from_user": "niclupien", "from_user_id": 273447029, "from_user_id_str": "273447029", "from_user_name": "Nicolas Lupien", "geo": null, "id": 148831243851673600, "id_str": "148831243851673600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664486029/mobro_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664486029/mobro_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @mtw: #hackmtl http://t.co/Omr5l7lu recap of the nodejs hacakthon. congrats to all the developers!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:29 +0000", "from_user": "mtw", "from_user_id": 4609741, "from_user_id_str": "4609741", "from_user_name": "Montreal Tech Watch", "geo": null, "id": 148830829353766900, "id_str": "148830829353766912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1311424156/Screen_shot_2011-04-14_at_11.25.36_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1311424156/Screen_shot_2011-04-14_at_11.25.36_AM_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "#hackmtl http://t.co/Omr5l7lu recap of the nodejs hacakthon. congrats to all the developers!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:48 +0000", "from_user": "nilakanta", "from_user_id": 16202937, "from_user_id_str": "16202937", "from_user_name": "nilakanta", "geo": null, "id": 148829145999212540, "id_str": "148829145999212544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/65712075/Photo_4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/65712075/Photo_4_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:44 +0000", "from_user": "complex", "from_user_id": 784467, "from_user_id_str": "784467", "from_user_name": "Anthony Elizondo", "geo": null, "id": 148829130249601020, "id_str": "148829130249601025", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/783576456/Gleamies_WALLPAPER_by_Barbroute_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/783576456/Gleamies_WALLPAPER_by_Barbroute_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "when @nodejs compiles, it make colors. glorious colors.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:24 +0000", "from_user": "jerrodblavos", "from_user_id": 9904882, "from_user_id_str": "9904882", "from_user_name": "Jerrod - RecCenter", "geo": null, "id": 148828041437642750, "id_str": "148828041437642753", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1667973534/head_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667973534/head_normal.png", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/wHvP23U8 #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:12 +0000", "from_user": "kk6", "from_user_id": 8665642, "from_user_id_str": "8665642", "from_user_name": "\\u82A6\\u5C4B\\u3072\\u308D", "geo": null, "id": 148827235804119040, "id_str": "148827235804119040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1665970262/alice_s2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665970262/alice_s2_normal.jpg", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "MVC Web Application Framework for NodeJS written in CoffeeScript / \\u201CCoreJS \\u2014 Web Framework\\u201D http://t.co/HsztpWob", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:08:32 +0000", "from_user": "dmuth", "from_user_id": 10828662, "from_user_id_str": "10828662", "from_user_name": "Douglas Muth (Giza)", "geo": null, "id": 148827068849860600, "id_str": "148827068849860608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1632918786/giza_white_mage_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632918786/giza_white_mage_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "The node.js Aesthetic: http://t.co/w9j8iuJR #NodeJs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:05:41 +0000", "from_user": "h3rald", "from_user_id": 10164792, "from_user_id_str": "10164792", "from_user_name": "Fabio Cevasco", "geo": null, "id": 148826351061831680, "id_str": "148826351061831681", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1121784202/h3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1121784202/h3_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @dhofstet: \"If something is not documented, it's safe to assume it's either internal, deprecated or in 'private beta' mode.\" #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:03:22 +0000", "from_user": "Marlabs", "from_user_id": 44647144, "from_user_id_str": "44647144", "from_user_name": "Marlabs", "geo": null, "id": 148825766451351550, "id_str": "148825766451351552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1536148436/MarlabsFB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1536148436/MarlabsFB_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"Must read \"@newsycombinator: #Node.js #modules you should know about: #semver http://t.co/KXTe8lR8\"\\n@amazedsaint \" // a definite read", "to_user": "amazedsaint", "to_user_id": 15875576, "to_user_id_str": "15875576", "to_user_name": "Anoop Madhusudanan", "in_reply_to_status_id": 148297512556560400, "in_reply_to_status_id_str": "148297512556560384"}, +{"created_at": "Mon, 19 Dec 2011 18:03:11 +0000", "from_user": "hankejh", "from_user_id": 3633291, "from_user_id_str": "3633291", "from_user_name": "Damion Hankejh", "geo": null, "id": 148825722440519680, "id_str": "148825722440519681", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/55252992/d-night2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/55252992/d-night2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @kisshotch: You know what they say: if you don't feel like reading the docs, write your own. #NodeJS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:12 +0000", "from_user": "kaptencybear", "from_user_id": 14663205, "from_user_id_str": "14663205", "from_user_name": "Bj\\u00F6rn S\\u00F6derqvist", "geo": null, "id": 148824969646837760, "id_str": "148824969646837760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1327843885/218807_10150158449876906_625206905_6946414_1227294_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1327843885/218807_10150158449876906_625206905_6946414_1227294_o_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "If you like @NodeJS and word games, now is the time to create your own word game server! Introducing SowpodsJS https://t.co/bz51dZ67", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:55 +0000", "from_user": "sb_doc", "from_user_id": 36325362, "from_user_id_str": "36325362", "from_user_name": "Stefano Boldrin", "geo": null, "id": 148821125420417020, "id_str": "148821125420417024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/256200906/IMG_0056_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/256200906/IMG_0056_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @dalmaer: CoreJS is a CoffeeSCript MVC framework for NodeJS for non-trivial apps http://t.co/z42wvabq /by Ernesto M\\u00E9ndez", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:39:01 +0000", "from_user": "axolx", "from_user_id": 5162811, "from_user_id_str": "5162811", "from_user_name": "Martin Rio", "geo": null, "id": 148819639206555650, "id_str": "148819639206555648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1619182431/x100_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619182431/x100_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "Every time I read this, I get more on board w/nodejs \"Although originally designed for node.js, it can be used directly in the browser\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:04 +0000", "from_user": "cld9731", "from_user_id": 16745168, "from_user_id_str": "16745168", "from_user_name": "Charles Ditzel", "geo": null, "id": 148817889653309440, "id_str": "148817889653309440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/74655786/screenshot_02_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/74655786/screenshot_02_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Azure Cloud matures : first Java, now now Node.js and MongoDB, later Hadoop. Interesting. See : http://t.co/G7V1EwrC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:00 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148817874008539140, "id_str": "148817874008539136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @jcyhsiao ryah: this looks pretty awesome http://t.co/nwJd4b2l #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:00 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148817872863494140, "id_str": "148817872863494144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @markbates ryah: this looks pretty awesome http://t.co/nwJd4b2l #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:59 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148817870791507970, "id_str": "148817870791507969", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @FriendsOfNodeJS jcleblanc: A Node.js t-shirt http://t.co/eekX44lf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:00 +0000", "from_user": "soaj1664ashar", "from_user_id": 277735240, "from_user_id_str": "277735240", "from_user_name": "Ashar Javed", "geo": null, "id": 148817368364220400, "id_str": "148817368364220416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1301332153/ashar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1301332153/ashar_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @johnwilander: Server-side JavaScript injection: Attacking #nosql and #nodejs (pdf from BH 2011) https://t.co/9FCnbLpg via @shreeraj & @hackernewsbot", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:28:08 +0000", "from_user": "johnwilander", "from_user_id": 57622045, "from_user_id_str": "57622045", "from_user_name": "John Wilander", "geo": null, "id": 148816900594479100, "id_str": "148816900594479104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/341321376/john_sjunger_715_beskuren_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/341321376/john_sjunger_715_beskuren_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Server-side JavaScript injection: Attacking #nosql and #nodejs (pdf from BH 2011) https://t.co/9FCnbLpg via @shreeraj & @hackernewsbot", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:28:04 +0000", "from_user": "phamnp", "from_user_id": 16664126, "from_user_id_str": "16664126", "from_user_name": "Paul Pham", "geo": null, "id": 148816882487672830, "id_str": "148816882487672832", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1682624433/pauldraw-bw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682624433/pauldraw-bw_normal.jpg", "source": "<a href="http://aquaron.com" rel="nofollow">aqrd</a>", "text": "Code Node.js? Got to check out semver module http://t.co/9gizThFt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:27:25 +0000", "from_user": "edjafarov", "from_user_id": 18898176, "from_user_id_str": "18898176", "from_user_name": "Eldar Djafarov", "geo": null, "id": 148816717672480770, "id_str": "148816717672480768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/971019265/25-08-08_1708_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/971019265/25-08-08_1708_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Seems #nodejs docs sucks https://t.co/wASolXEr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:17:04 +0000", "from_user": "jcyhsiao", "from_user_id": 16742138, "from_user_id_str": "16742138", "from_user_name": "Jay Chih-Yu Hsiao", "geo": null, "id": 148814116180594700, "id_str": "148814116180594689", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/344564672/6380_527280044642_24102977_31249420_561245_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/344564672/6380_527280044642_24102977_31249420_561245_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:12:53 +0000", "from_user": "markbates", "from_user_id": 17388421, "from_user_id_str": "17388421", "from_user_name": "Mark Bates", "geo": null, "id": 148813060730126340, "id_str": "148813060730126336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/529484097/n566112099_1150855_5750_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/529484097/n566112099_1150855_5750_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:12:06 +0000", "from_user": "iammutex", "from_user_id": 18104503, "from_user_id_str": "18104503", "from_user_name": "iammutex", "geo": null, "id": 148812864235380740, "id_str": "148812864235380736", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/107988472/lennon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/107988472/lennon_normal.jpg", "source": "<a href="http://lgone.com/" rel="nofollow">\\u7231\\u8C01\\u8C01</a>", "text": "nodejs\\u5B58\\u5728\\u7684\\u4E00\\u4E2A\\u610F\\u4E49\\uFF0C\\u524D\\u7AEF\\u4EEC\\u5B66\\u70B9nodejs\\uFF0C\\u5C31\\u4EE5\\u4E3A\\u81EA\\u5DF1\\u4F1A\\u540E\\u7AEF\\u4E86\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:10:09 +0000", "from_user": "marcoarreguin", "from_user_id": 6052322, "from_user_id_str": "6052322", "from_user_name": "Marco Arregu\\u00EDn", "geo": null, "id": 148812375523463170, "id_str": "148812375523463168", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/469203564/Perfiles_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/469203564/Perfiles_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Quiero esta playera!!!!!! http://t.co/CkDRqX6P", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:09:18 +0000", "from_user": "corcav", "from_user_id": 17647167, "from_user_id_str": "17647167", "from_user_name": "Corrado Cavalli", "geo": null, "id": 148812161521692670, "id_str": "148812161521692672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/725890828/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/725890828/twitterProfilePhoto_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @imperugo: I need one RT \\u201C@NodeJsCommunity: A Node.js t-shirt http://t.co/Z8rCuOLe http://t.co/ozcliEVn\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:07:29 +0000", "from_user": "imperugo", "from_user_id": 22130633, "from_user_id_str": "22130633", "from_user_name": "Ugo Lattanzi", "geo": null, "id": 148811701964382200, "id_str": "148811701964382209", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1416210395/IMG_1538_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1416210395/IMG_1538_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I need one RT \\u201C@NodeJsCommunity: A Node.js t-shirt http://t.co/74bOdV9x http://t.co/einbNF8Y\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:00:43 +0000", "from_user": "Cianomaidin", "from_user_id": 23092438, "from_user_id_str": "23092438", "from_user_name": "Cian \\u00D3 Maid\\u00EDn", "geo": null, "id": 148810001782288400, "id_str": "148810001782288386", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1174545220/Cian-BW_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1174545220/Cian-BW_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jgatoluis: #nodejs how to develop web applications with #js and parallel process. It seems interesting, someone know about i? http://t.co/IpiHATjQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:00:14 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148809880793382900, "id_str": "148809880793382913", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "RT @jcleblanc: A Node.js t-shirt http://t.co/21w8qyxz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:58:00 +0000", "from_user": "tanepiper", "from_user_id": 20693, "from_user_id_str": "20693", "from_user_name": "Tane Piper", "geo": null, "id": 148809317611618300, "id_str": "148809317611618306", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1654339360/dizzy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654339360/dizzy_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "@iamtef NodeJS is what, 2 years old? PHP is 16 years old and probably just as vulnerable? Also - LOL eval, no serious dev still uses that", "to_user": "iamtef", "to_user_id": 16681276, "to_user_id_str": "16681276", "to_user_name": "tef", "in_reply_to_status_id": 148808151637037060, "in_reply_to_status_id_str": "148808151637037057"}, +{"created_at": "Mon, 19 Dec 2011 16:57:04 +0000", "from_user": "itwars", "from_user_id": 67265165, "from_user_id_str": "67265165", "from_user_name": "Vincent RABAH", "geo": null, "id": 148809080797003780, "id_str": "148809080797003776", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1135858686/cb-vincent_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1135858686/cb-vincent_normal.png", "source": "<a href="http://www.scoop.it" rel="nofollow">Scoop.it</a>", "text": "Yahoo pr\\u00E9sente un module node.js pour YSlow | #nodejs http://t.co/3NiBuC8B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:54:29 +0000", "from_user": "micajeho", "from_user_id": 200713623, "from_user_id_str": "200713623", "from_user_name": "Miguel Hon\\u00F3rio", "geo": null, "id": 148808431661363200, "id_str": "148808431661363200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1228827013/Imagem0172_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1228827013/Imagem0172_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT \"@giovannibassi: MVC + #CoffeeScript #FTW RT @ryah: this looks pretty awesome http://t.co/pxLX7AXw #nodejs\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:53:57 +0000", "from_user": "xtnw", "from_user_id": 432063127, "from_user_id_str": "432063127", "from_user_name": "Christian W", "geo": null, "id": 148808298374766600, "id_str": "148808298374766592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691724008/lgicon025_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691724008/lgicon025_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @substack: I like turtles: http://t.co/uoswx4E5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:49:22 +0000", "from_user": "brinklley", "from_user_id": 150124124, "from_user_id_str": "150124124", "from_user_name": "Jonatan Aguiar", "geo": null, "id": 148807143624146940, "id_str": "148807143624146944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1368425791/Picture0009_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1368425791/Picture0009_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @giovannibassi: MVC + #CoffeeScript #FTW RT @ryah: this looks pretty awesome http://t.co/Hi5BfbSW #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:47:13 +0000", "from_user": "giovannibassi", "from_user_id": 20732572, "from_user_id_str": "20732572", "from_user_name": "Giovanni Bassi", "geo": null, "id": 148806602231783420, "id_str": "148806602231783424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1250158855/Giggio_no_pesqueiro_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1250158855/Giggio_no_pesqueiro_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "MVC + #CoffeeScript #FTW RT @ryah: this looks pretty awesome http://t.co/Hi5BfbSW #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:46:44 +0000", "from_user": "diegosevilla", "from_user_id": 14180784, "from_user_id_str": "14180784", "from_user_name": "Diego Sevilla Ruiz", "geo": null, "id": 148806479636471800, "id_str": "148806479636471808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1447462735/48947_871895296_3078648_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1447462735/48947_871895296_3078648_q_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:45:15 +0000", "from_user": "VRajaRao", "from_user_id": 265225982, "from_user_id_str": "265225982", "from_user_name": "Vadugu Raja Rao", "geo": null, "id": 148806107840786430, "id_str": "148806107840786432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Windows Azure Updated To Support Hadoop and Node.js http://t.co/b9JSXCQO via @toolsjournal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:44:26 +0000", "from_user": "beautifulnode", "from_user_id": 428579497, "from_user_id_str": "428579497", "from_user_name": "beautifulnode", "geo": null, "id": 148805902047256580, "id_str": "148805902047256576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694584089/Untitleddrawing__1__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694584089/Untitleddrawing__1__normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @chrismatthieu: Only 2 days left to purchase this limited edition node.js tshirt! RT @substack: I like turtles: http://t.co/T2d5t5UO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:44:11 +0000", "from_user": "komlow", "from_user_id": 95929876, "from_user_id_str": "95929876", "from_user_name": "\\u8106\\u5F31\\u5148\\u8F29", "geo": null, "id": 148805839434678270, "id_str": "148805839434678273", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1623137955/asgasdgqer_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1623137955/asgasdgqer_normal.png", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "\\u201CMongoDB + node.js \\u3067\\u4F5C\\u308B\\u30BD\\u30FC\\u30B7\\u30E3\\u30EB\\u30B2\\u30FC\\u30E0\\u201D http://t.co/9gF1N2Zs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:44:09 +0000", "from_user": "beautifulnode", "from_user_id": 428579497, "from_user_id_str": "428579497", "from_user_name": "beautifulnode", "geo": null, "id": 148805830693752830, "id_str": "148805830693752832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694584089/Untitleddrawing__1__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694584089/Untitleddrawing__1__normal.png", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "RT @jackhq: NodeJs CLI get-post 0.1.0 released! - New Release of get-post! Verson 0.1.0 This version refines the api and... http://t.co/Pyp8yxCF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:44:02 +0000", "from_user": "jcleblanc", "from_user_id": 15392140, "from_user_id_str": "15392140", "from_user_name": "Jonathan LeBlanc", "geo": null, "id": 148805801211985920, "id_str": "148805801211985921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/281463265/3490041159_59b53be507_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/281463265/3490041159_59b53be507_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "A Node.js t-shirt http://t.co/21w8qyxz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:43:15 +0000", "from_user": "bsabrin", "from_user_id": 13777992, "from_user_id_str": "13777992", "from_user_name": "bsabrin", "geo": null, "id": 148805604159389700, "id_str": "148805604159389696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1268470086/ben_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1268470086/ben_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "#MongoDB from #10gen on #Azure. http://t.co/qXK53hv4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:42:03 +0000", "from_user": "beautifulnode", "from_user_id": 428579497, "from_user_id_str": "428579497", "from_user_name": "beautifulnode", "geo": null, "id": 148805302299541500, "id_str": "148805302299541504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694584089/Untitleddrawing__1__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694584089/Untitleddrawing__1__normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "check out -> http://t.co/KsJ4Hnfh #coffeescript #nodejs -> Read the Guide!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:41:38 +0000", "from_user": "peter_lorent", "from_user_id": 14898830, "from_user_id_str": "14898830", "from_user_name": "Peter Lorent", "geo": null, "id": 148805196200419330, "id_str": "148805196200419329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/695213701/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/695213701/twitterProfilePhoto_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: http://t.co/uXEkbeUU seems very interesting #nodejs http://t.co/PNrcwUNT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:39:34 +0000", "from_user": "puresight", "from_user_id": 14046153, "from_user_id_str": "14046153", "from_user_name": "Monty Dickerson", "geo": null, "id": 148804675741810700, "id_str": "148804675741810688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1222901959/purpleme_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1222901959/purpleme_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "via @Microsoft SDK for @nodejs makes @WindowsAzure a #cloud for JavaScript software apps development cc @ch9 http://t.co/NrWA02sL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:38:31 +0000", "from_user": "jackhq", "from_user_id": 15810776, "from_user_id_str": "15810776", "from_user_name": "Jack Russ Software", "geo": null, "id": 148804412188524540, "id_str": "148804412188524544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/493141971/jrs-logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/493141971/jrs-logo_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:36:34 +0000", "from_user": "CoffeeScript", "from_user_id": 144894853, "from_user_id_str": "144894853", "from_user_name": "CoffeeScript", "geo": null, "id": 148803921245257730, "id_str": "148803921245257728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1198075611/Screen_shot_2010-12-24_at_12.28.48_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1198075611/Screen_shot_2010-12-24_at_12.28.48_PM_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:36:17 +0000", "from_user": "understeer", "from_user_id": 4451471, "from_user_id_str": "4451471", "from_user_name": "MATSUO Yasuhiro ", "geo": null, "id": 148803851934380030, "id_str": "148803851934380034", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1314550179/4451471_origin_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1314550179/4451471_origin_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @sbose78: #Cloudfoundry #mogodb #node.js\\n\\nhttp://t.co/F6eKjFcB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:33:34 +0000", "from_user": "giwebud", "from_user_id": 258859621, "from_user_id_str": "258859621", "from_user_name": "Giweb", "geo": null, "id": 148803169697280000, "id_str": "148803169697280002", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1596514312/twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596514312/twitter_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "@Nodejs for dummies http://t.co/cKOeqcw1 http://t.co/b8fRWIjn", "to_user": "nodejs", "to_user_id": 91985735, "to_user_id_str": "91985735", "to_user_name": "node js"}, +{"created_at": "Mon, 19 Dec 2011 16:33:02 +0000", "from_user": "MIGUEVARGASC", "from_user_id": 229680266, "from_user_id_str": "229680266", "from_user_name": "MIGUEL A VARGAS C", "geo": null, "id": 148803033759891460, "id_str": "148803033759891458", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701321779/python_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701321779/python_2_normal.png", "source": "<a href="http://www.tweekiapp.com" rel="nofollow">Tweeki for Pokki</a>", "text": "RT @davidcp90: @nodejs e-book http://t.co/gyPgRG8F", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:32:29 +0000", "from_user": "davidcp90", "from_user_id": 211023590, "from_user_id_str": "211023590", "from_user_name": "David Camargo", "geo": null, "id": 148802894240559100, "id_str": "148802894240559104", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1455780323/52287_457877558806_597188806_5750681_3552214_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1455780323/52287_457877558806_597188806_5750681_3552214_o_normal.jpg", "source": "<a href="http://www.tweekiapp.com" rel="nofollow">Tweeki for Pokki</a>", "text": "@nodejs e-book http://t.co/gyPgRG8F", "to_user": "nodejs", "to_user_id": 91985735, "to_user_id_str": "91985735", "to_user_name": "node js"}, +{"created_at": "Mon, 19 Dec 2011 16:30:40 +0000", "from_user": "sbarysiuk", "from_user_id": 16024462, "from_user_id_str": "16024462", "from_user_name": "Serge Barysiuk", "geo": null, "id": 148802439804489730, "id_str": "148802439804489728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/546121932/x_957106d8_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/546121932/x_957106d8_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Do you know any real, mid-size #nodejs apps to learn how to organize and structure an app? #express + #mongoose + #socketio", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:28:58 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148802012027424770, "id_str": "148802012027424769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://choqok.gnufolks.org/" rel="nofollow">Choqok</a>", "text": "RT @jcsardin: if you are serious about using #Nodejs in your next proyect, this libraries are a must http://t.co/ewEf88Zf http://t.co/wsdV3PdU #step#async", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:28:56 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148802002346967040, "id_str": "148802002346967043", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "if you are serious about using #Nodejs in your next proyect, this libraries are a must http://t.co/gsiLT3Fp http... http://t.co/hGSonB0n", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:27:39 +0000", "from_user": "u1", "from_user_id": 3779321, "from_user_id_str": "3779321", "from_user_name": "u1(\\u690D\\u6751\\u512A\\u4E00)", "geo": null, "id": 148801680421560320, "id_str": "148801680421560323", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/623483628/125432_1795825550_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/623483628/125432_1795825550_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @sbose78: #Cloudfoundry #mogodb #node.js\\n\\nhttp://t.co/F6eKjFcB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:26:18 +0000", "from_user": "tucamon", "from_user_id": 14843149, "from_user_id_str": "14843149", "from_user_name": "tucamon", "geo": null, "id": 148801339013603330, "id_str": "148801339013603328", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/485896320/tucamon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/485896320/tucamon_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "El pr\\u00F3ximo dia 27 Ra\\u00FAl Murciano explicar\\u00E1 su sistema para desarrollar aplicaciones web con NodeJs. Mas info en http://t.co/iFTiGTwj #Madrid", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:25:38 +0000", "from_user": "carlospeix", "from_user_id": 64229525, "from_user_id_str": "64229525", "from_user_name": "Carlos Peix", "geo": null, "id": 148801172684288000, "id_str": "148801172684288000", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1224493755/DSC02349cc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1224493755/DSC02349cc_normal.jpg", "source": "<a href="http://www.digsby.com/?utm_campaign=twitter" rel="nofollow">Digsby</a>", "text": "@jfroma: RT @o_amp_o: Intersect - A multi-user audio sequencer using #nodejs, #socketio and #audiolet. http://t.co/5CjiznrB cc @sebarenzi", "to_user": "jfroma", "to_user_id": 26559849, "to_user_id_str": "26559849", "to_user_name": "Jos\\u00E9 F. Romaniello"}, +{"created_at": "Mon, 19 Dec 2011 16:23:35 +0000", "from_user": "danielwrobert", "from_user_id": 39916196, "from_user_id_str": "39916196", "from_user_name": "Dan Robert", "geo": null, "id": 148800655748894720, "id_str": "148800655748894722", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1667476543/newTwitterPic2_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667476543/newTwitterPic2_normal.jpeg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "RT @elijahmanor: \"Write your shell scripts in JavaScript, via Node.js\" by @rauschma #javascript http://t.co/RpKaSKKa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:23:15 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148800572479385600, "id_str": "148800572479385600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @sirmaximum: Azure price cuts, bigger databases, now with node.js and MongoDB support, Hadoop on its way http://t.co/NuVWzURh via @arstechnica", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:19:40 +0000", "from_user": "hribar", "from_user_id": 13875112, "from_user_id_str": "13875112", "from_user_name": "Jim Hribar", "geo": null, "id": 148799671144427520, "id_str": "148799671144427520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/968619732/icon_128_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/968619732/icon_128_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @garannm: Ahahaha awesome. Haven't tried this, but what a good idea. http://t.co/Gqc6Unup (Not saying that just because I don't know shell scripting.)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:15:02 +0000", "from_user": "lexx27", "from_user_id": 8923232, "from_user_id_str": "8923232", "from_user_name": "Lexx", "geo": null, "id": 148798502745542660, "id_str": "148798502745542656", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1360035898/avatar511_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1360035898/avatar511_normal.jpg", "source": "<a href="http://gun.io/#" rel="nofollow">Harbbl</a>", "text": "RT @GUNdotIO: New Open Source gig: Neo4j Node.js adapter http://t.co/KfQtLCYh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:14:41 +0000", "from_user": "jcsardin", "from_user_id": 53573344, "from_user_id_str": "53573344", "from_user_name": "Juan Carlos Sardin", "geo": null, "id": 148798414530949120, "id_str": "148798414530949120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1083557585/644fa35b-598e-4638-88f9-7dfb370113d9_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1083557585/644fa35b-598e-4638-88f9-7dfb370113d9_normal.png", "source": "<a href="http://choqok.gnufolks.org/" rel="nofollow">Choqok</a>", "text": "if you are serious about using #Nodejs in your next proyect, this libraries are a must http://t.co/ewEf88Zf http://t.co/wsdV3PdU #step#async", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:11:39 +0000", "from_user": "bradleymeck", "from_user_id": 15338477, "from_user_id_str": "15338477", "from_user_name": "bmeck", "geo": null, "id": 148797652639809540, "id_str": "148797652639809536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/282339703/Photo_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/282339703/Photo_7_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @garannm: Ahahaha awesome. Haven't tried this, but what a good idea. http://t.co/Gqc6Unup (Not saying that just because I don't know shell scripting.)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:11:19 +0000", "from_user": "sirmaximum", "from_user_id": 135678269, "from_user_id_str": "135678269", "from_user_name": "Maxime Duclos", "geo": null, "id": 148797566572703740, "id_str": "148797566572703744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1552343655/damtech_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552343655/damtech_copy_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Azure price cuts, bigger databases, now with node.js and MongoDB support, Hadoop on its way http://t.co/NuVWzURh via @arstechnica", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:07:17 +0000", "from_user": "crazy_google", "from_user_id": 96588107, "from_user_id_str": "96588107", "from_user_name": "Crazy Google", "geo": null, "id": 148796552331276300, "id_str": "148796552331276291", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/572871452/nataho_avatar_128_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/572871452/nataho_avatar_128_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Writing node.js extensions with C++ and V8 http://t.co/zVcBsUOC #nodejs# http://t.co/KAM57Ir1 http://t.co/rJ9nqBnp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:05:58 +0000", "from_user": "justinjmoses", "from_user_id": 16522485, "from_user_id_str": "16522485", "from_user_name": "Justin J. Moses", "geo": null, "id": 148796220654100480, "id_str": "148796220654100480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1220159577/in-park_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1220159577/in-park_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: http://t.co/uXEkbeUU seems very interesting #nodejs http://t.co/PNrcwUNT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:03:39 +0000", "from_user": "jsgeneve", "from_user_id": 404035068, "from_user_id_str": "404035068", "from_user_name": "Javascript Gen\\u00E8ve", "geo": null, "id": 148795639201923070, "id_str": "148795639201923072", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1620267028/twitter_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620267028/twitter_normal.gif", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Pas un jour ne passe sans un nouveau framework MVC pour #NodeJS. Aujourd'hui: RailwayJS inspir\\u00E9 de... RoR bien s\\u00FBr. http://t.co/DKYjvIR4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:57:39 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148794131035078660, "id_str": "148794131035078656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://chrome.google.com/extensions/detail/aicelmgbddfgmpieedjiggifabdpcnln" rel="nofollow">FaWave</a>", "text": "RT @syxc: How to Install Node.js - How To Node - NodeJS http://t.co/DF9uZaqX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:57:35 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148794114136223740, "id_str": "148794114136223744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "How to Install Node.js - How To Node - NodeJS http://t.co/xLJJ4QVs http://t.co/4gCU1mKP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:56:32 +0000", "from_user": "grippy", "from_user_id": 7617822, "from_user_id_str": "7617822", "from_user_name": "Greg Melton", "geo": null, "id": 148793847009378300, "id_str": "148793847009378304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/54209072/Photo_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/54209072/Photo_2_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "Finally started writing the core arduino sketch for a brewing controller I'm scheming. Think temp and pump controls backed by a nodejs app", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:55:18 +0000", "from_user": "syxc", "from_user_id": 173856301, "from_user_id_str": "173856301", "from_user_name": "\\u6714\\u6708\\u661F\\u8FB0", "geo": null, "id": 148793538816122880, "id_str": "148793538816122883", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1093839343/syc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1093839343/syc_normal.jpg", "source": "<a href="http://chrome.google.com/extensions/detail/aicelmgbddfgmpieedjiggifabdpcnln" rel="nofollow">FaWave</a>", "text": "How to Install Node.js - How To Node - NodeJS http://t.co/DF9uZaqX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:55:13 +0000", "from_user": "Hprun", "from_user_id": 409868335, "from_user_id_str": "409868335", "from_user_name": "Hprun", "geo": null, "id": 148793517207060480, "id_str": "148793517207060482", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1633356998/Hprun_AZO_glow_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633356998/Hprun_AZO_glow_normal.jpg", "source": "<a href="http://nurph.com" rel="nofollow">Nurph</a>", "text": "@NodeJsCommunity @FriendsOfNodeJS there's a real-time channel of Node.js tweets on http://t.co/LRIdrya5 - and it uses Node ... #nodejs", "to_user": "NodeJsCommunity", "to_user_id": 402824193, "to_user_id_str": "402824193", "to_user_name": "NodeJS Community"}, +{"created_at": "Mon, 19 Dec 2011 15:52:17 +0000", "from_user": "JimBorowicz", "from_user_id": 370347719, "from_user_id_str": "370347719", "from_user_name": "Jim Borowicz", "geo": null, "id": 148792777629646850, "id_str": "148792777629646848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1652063701/fCby079Q_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652063701/fCby079Q_normal", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @jasonh: Yes ==> RT @jbueza: wow.. Joyent has their own dhcp, ldap servers written in #NodeJS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:48:17 +0000", "from_user": "apprme", "from_user_id": 9545752, "from_user_id_str": "9545752", "from_user_name": "apprentice", "geo": null, "id": 148791772288524300, "id_str": "148791772288524288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/72942873/10168506_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/72942873/10168506_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "How I Learned to Stop Fearing and Love Javascript: http://t.co/5oldIk0Q", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:46:21 +0000", "from_user": "christopheeble", "from_user_id": 21884705, "from_user_id_str": "21884705", "from_user_name": "Christophe Ebl\\u00E9", "geo": null, "id": 148791284847484930, "id_str": "148791284847484930", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1186206049/kris_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1186206049/kris_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Nice introduction to #nodejs by @wezfurlong http://t.co/3NBwYADi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:43:57 +0000", "from_user": "MartialLienert", "from_user_id": 47908355, "from_user_id_str": "47908355", "from_user_name": "Martial Lienert", "geo": null, "id": 148790681035477000, "id_str": "148790681035476992", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": ":D @guillaumepotier GG pour NodeJS. Je vais te facturer nos conversations gTalk comme du consulting :p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:42:03 +0000", "from_user": "KCITP", "from_user_id": 80589393, "from_user_id_str": "80589393", "from_user_name": "KC IT Professionals", "geo": null, "id": 148790203107123200, "id_str": "148790203107123200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1143479908/kcit-twitter1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1143479908/kcit-twitter1_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "Easy to understand overview >> #NodeJS For Dummies http://t.co/XHTPL9Nr #JavaScript", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:34:12 +0000", "from_user": "Humantools", "from_user_id": 52186294, "from_user_id_str": "52186294", "from_user_name": "Kaspar L\\u00FCthi", "geo": null, "id": 148788228378464260, "id_str": "148788228378464256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1456915678/ilovepixel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1456915678/ilovepixel_normal.jpg", "source": "<a href="http://www.twhirl.org" rel="nofollow">Seesmic twhirl</a>", "text": "Blazing fast node.js: 10 performance tips from LinkedIn Mobile http://t.co/LRXLWNbt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:26:14 +0000", "from_user": "cayasso", "from_user_id": 57570032, "from_user_id_str": "57570032", "from_user_name": "Jonathan Brumley", "geo": null, "id": 148786221521440770, "id_str": "148786221521440769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/361872421/jonathan_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/361872421/jonathan_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:26:07 +0000", "from_user": "_sebastienp", "from_user_id": 29165043, "from_user_id_str": "29165043", "from_user_name": "Sebastien P.", "geo": null, "id": 148786192354246660, "id_str": "148786192354246658", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687229142/sebastienp_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687229142/sebastienp_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Write your shell scripts in JS; using node.js to write shell scripts in linux environments: http://t.co/eEbptziv http://t.co/nGdtWfjc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:25:57 +0000", "from_user": "illaaais", "from_user_id": 248608601, "from_user_id_str": "248608601", "from_user_name": "Guillaume Augais", "geo": null, "id": 148786153053622270, "id_str": "148786153053622272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: http://t.co/uXEkbeUU seems very interesting #nodejs http://t.co/PNrcwUNT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:22:09 +0000", "from_user": "arkaitzgamino", "from_user_id": 68934373, "from_user_id_str": "68934373", "from_user_name": "Arkaitz Gamino", "geo": null, "id": 148785196899115000, "id_str": "148785196899115008", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1213130488/arka_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1213130488/arka_normal.png", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "Para aprender un poco de nodejs http://t.co/Bw0yKdjN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:18:22 +0000", "from_user": "mickes", "from_user_id": 13958452, "from_user_id_str": "13958452", "from_user_name": "Mike Ickes", "geo": null, "id": 148784244943110140, "id_str": "148784244943110146", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/599292499/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/599292499/me_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "RT @elijahmanor: \"Write your shell scripts in JavaScript, via Node.js\" by @rauschma #javascript http://t.co/RpKaSKKa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:14:33 +0000", "from_user": "alfamale156", "from_user_id": 61744769, "from_user_id_str": "61744769", "from_user_name": "Andrew Woodcock", "geo": null, "id": 148783283327598600, "id_str": "148783283327598597", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693217959/Daddy_and_Emily_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693217959/Daddy_and_Emily_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Samisdat: Der Server l\\u00E4uft mit @Nodejs Daten speichern in @CouchDB und http://t.co/7KzDdmZH \\u00FCbernimmt die Session. Sch\\u00F6ner Code ohne PHP ;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:12:41 +0000", "from_user": "johnbender", "from_user_id": 17870251, "from_user_id_str": "17870251", "from_user_name": "John Bender", "geo": null, "id": 148782812194017280, "id_str": "148782812194017280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1427029604/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1427029604/profile_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Isn't the callback juggling just overhead given that performance is less often a consideration with shell scripts? http://t.co/o4XFnXSe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:11:00 +0000", "from_user": "ClaudeCK", "from_user_id": 25229814, "from_user_id_str": "25229814", "from_user_name": "John Claude", "geo": null, "id": 148782388099559420, "id_str": "148782388099559425", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Javascript\\u771F\\u662F\\u4E00\\u95E8\\u795E\\u5947\\u7684\\u8BED\\u8A00\\uFF0C\\u524D\\u7AEF\\u5F00\\u53D1\\u5F88\\u91CD\\u8981\\uFF0Cnodejs\\u706B\\u8D77\\u6765\\u4EE5\\u540E\\u4E5F\\u5F00\\u59CB\\u6162\\u6162\\u9002\\u5408\\u540E\\u53F0\\u5F00\\u53D1\\uFF0C\\u751A\\u81F3\\u8FDE\\u6700\\u8FD1\\u8F83\\u706B\\u7684mongodb\\u7528\\u7684\\u4E5F\\u662F\\u7528js\\u3002\\u4E89\\u8BBA\\u4E86\\u90A3\\u4E48\\u591A\\u5E74\\uFF0C\\u6211\\u89C9\\u5F97\\u5176\\u5B9Ejs\\u624D\\u662FThe Next Big", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:10:59 +0000", "from_user": "hnfirehose", "from_user_id": 213117318, "from_user_id_str": "213117318", "from_user_name": "HN Firehose", "geo": null, "id": 148782384802828300, "id_str": "148782384802828289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Write your shell scripts in JavaScript, via Node.js: http://t.co/RFY1RdIo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:10:53 +0000", "from_user": "newtriks", "from_user_id": 5393562, "from_user_id_str": "5393562", "from_user_name": "Simon Bailey", "geo": null, "id": 148782359922212860, "id_str": "148782359922212864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1577340350/E4775C83-C29B-453D-9E9F-BF2039D3A7D9_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1577340350/E4775C83-C29B-453D-9E9F-BF2039D3A7D9_normal", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: http://t.co/uXEkbeUU seems very interesting #nodejs http://t.co/PNrcwUNT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:04:46 +0000", "from_user": "triptych", "from_user_id": 811530, "from_user_id_str": "811530", "from_user_name": "Andrew Wooldridge", "geo": null, "id": 148780821136936960, "id_str": "148780821136936961", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1424805309/208566_10150156924594173_501484172_6445586_6746808_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1424805309/208566_10150156924594173_501484172_6445586_6746808_n_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "RT @elijahmanor: \"Write your shell scripts in JavaScript, via Node.js\" by @rauschma #javascript http://t.co/RpKaSKKa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 15:00:49 +0000", "from_user": "elijahmanor", "from_user_id": 9453872, "from_user_id_str": "9453872", "from_user_name": "Elijah Manor", "geo": null, "id": 148779826709397500, "id_str": "148779826709397504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676583918/dressed-up_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676583918/dressed-up_normal.png", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "\"Write your shell scripts in JavaScript, via Node.js\" by @rauschma #javascript http://t.co/RpKaSKKa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:00:27 +0000", "from_user": "LiaAllmon", "from_user_id": 388147217, "from_user_id_str": "388147217", "from_user_name": "Lia Allmon", "geo": null, "id": 148779732354334720, "id_str": "148779732354334720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1663602881/1153964_red_pullover_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663602881/1153964_red_pullover_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I\\u2019m working on a small browser game myself using jQuery, nodejs and MongoDB with the server doing a gzip JSON response", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:58:46 +0000", "from_user": "pedramp", "from_user_id": 16778637, "from_user_id_str": "16778637", "from_user_name": "Pedram Pourhossein", "geo": null, "id": 148779310780657660, "id_str": "148779310780657664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/699533580/pedram_pourhossein_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/699533580/pedram_pourhossein_copy_normal.jpg", "source": "<a href="http://pedram.mp" rel="nofollow">Pedram</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/EwYyEX6n #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:56:28 +0000", "from_user": "AvanadeFrance", "from_user_id": 322518915, "from_user_id_str": "322518915", "from_user_name": "Avanade France ", "geo": null, "id": 148778730188320770, "id_str": "148778730188320768", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1416947212/Avanade_-_A_normal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1416947212/Avanade_-_A_normal_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @AlainClapaud: #Microsoft baisse les prix d'Azure, augmente sa capacit\\u00E9 et l'ouvre \\u00E0 l'#OpenSource | arsTechnica http://t.co/6w5hLJbx (RT @dbmoore) #Cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:56:24 +0000", "from_user": "ajlopez", "from_user_id": 14567622, "from_user_id_str": "14567622", "from_user_name": "ajlopez", "geo": null, "id": 148778716531662850, "id_str": "148778716531662848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/53769404/spiral_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/53769404/spiral_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: http://t.co/uXEkbeUU seems very interesting #nodejs http://t.co/PNrcwUNT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:55:57 +0000", "from_user": "robinduckett", "from_user_id": 25199675, "from_user_id_str": "25199675", "from_user_name": "Robin Duckett", "geo": null, "id": 148778602807312400, "id_str": "148778602807312386", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1388538320/176841_10150436368780220_859920219_17595419_1074053_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1388538320/176841_10150436368780220_859920219_17595419_1074053_o_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "CNUG: #nodejs Website updated! New date for January, New Eventbrite details: http://t.co/53eKvDVC http://t.co/PaiUgHjD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:55:25 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148778467633278980, "id_str": "148778467633278976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://hotot.org" rel="nofollow">Hotot</a>", "text": "RT @erikzaadi: http://t.co/aZijwLM2 seems very interesting #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:55:23 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148778457793445900, "id_str": "148778457793445888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "http://t.co/uXEkbeUU seems very interesting #nodejs http://t.co/PNrcwUNT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:53:44 +0000", "from_user": "dyoona", "from_user_id": 65305818, "from_user_id_str": "65305818", "from_user_name": "Junhee Woo", "geo": null, "id": 148778045589815300, "id_str": "148778045589815296", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1400927905/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1400927905/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "\\uC870\\uD754 \\uAE00\\uC785\\uB2C8\\uB2E4. \\uB530\\uB77C\\uD558\\uACE0 \\uC788\\uB294\\uB370 \\uB178\\uB4DC 0.4.x\\uB300\\uB294 contextify \\uC124\\uCE58\\uB55C\\uC5D0 \\uC548\\uB418\\uB124\\uC694. \\uCC38\\uACE0 RT @parkto: \"\\uAF2D \\uC54C\\uC544\\uC57C\\uD560 node.js\" \\uBC88\\uC5ED \\uB9C1\\uD06C : http://t.co/NeQks8dG @hyungjoo_ \\uB2D8 \\uBC88\\uC5ED.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:51:23 +0000", "from_user": "p0cket", "from_user_id": 11825642, "from_user_id_str": "11825642", "from_user_name": "Pocket", "geo": null, "id": 148777453693829120, "id_str": "148777453693829120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1462685249/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1462685249/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@ohizkiya I forget if I've sent you this \"Node.js modules you should know about: redis (17 points)\" http://t.co/r8BRdOkz", "to_user": "ohizkiya", "to_user_id": 14302349, "to_user_id_str": "14302349", "to_user_name": "Oren Hizkiya"}, +{"created_at": "Mon, 19 Dec 2011 14:48:46 +0000", "from_user": "jsmanrique", "from_user_id": 6440602, "from_user_id_str": "6440602", "from_user_name": "Manrique Lopez", "geo": null, "id": 148776796085698560, "id_str": "148776796085698560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1606056832/jsmatwohit2011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606056832/jsmatwohit2011_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jgatoluis: #nodejs how to develop web applications with #js and parallel process. It seems interesting, someone know about i? http://t.co/IpiHATjQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:48:41 +0000", "from_user": "teespring_", "from_user_id": 273515759, "from_user_id_str": "273515759", "from_user_name": "Teespring", "geo": null, "id": 148776771213467650, "id_str": "148776771213467648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695025964/Twitter_Logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695025964/Twitter_Logo_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @substack: I like turtles: http://t.co/uoswx4E5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:47:30 +0000", "from_user": "erikzaadi", "from_user_id": 33958650, "from_user_id_str": "33958650", "from_user_name": "Erik Zaadi", "geo": null, "id": 148776473594052600, "id_str": "148776473594052608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/150720288/msn_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/150720288/msn_normal.JPG", "source": "<a href="http://hotot.org" rel="nofollow">Hotot</a>", "text": "http://t.co/aZijwLM2 seems very interesting #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:44:52 +0000", "from_user": "eldios", "from_user_id": 19900662, "from_user_id_str": "19900662", "from_user_name": "Lele 'El Dios'", "geo": null, "id": 148775813762912260, "id_str": "148775813762912256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1019549202/frengo_asciiColor_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1019549202/frengo_asciiColor_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Write your shell scripts in JS; using node.js to write shell scripts in linux environments: http://t.co/eEbptziv http://t.co/nGdtWfjc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:43:35 +0000", "from_user": "francbartoli", "from_user_id": 155518143, "from_user_id_str": "155518143", "from_user_name": "Francesco Bartoli", "geo": null, "id": 148775490528882700, "id_str": "148775490528882688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/993417644/CIMG0127_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/993417644/CIMG0127_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Write your shell scripts in JS; using node.js to write shell scripts in linux environments: http://t.co/eEbptziv http://t.co/nGdtWfjc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:42:40 +0000", "from_user": "jgatoluis", "from_user_id": 254149815, "from_user_id_str": "254149815", "from_user_name": "Jose Gato Luis ", "geo": null, "id": 148775258541932540, "id_str": "148775258541932547", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1249991564/foto-jgato_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1249991564/foto-jgato_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "#nodejs how to develop web applications with #js and parallel process. It seems interesting, someone know about i? http://t.co/IpiHATjQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:42:38 +0000", "from_user": "tbela99", "from_user_id": 18948891, "from_user_id_str": "18948891", "from_user_name": "Thierry Bela", "geo": null, "id": 148775249532563460, "id_str": "148775249532563456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/711413296/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/711413296/twitterProfilePhoto_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Write your shell scripts in JS; using node.js to write shell scripts in linux environments: http://t.co/eEbptziv http://t.co/nGdtWfjc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:38:37 +0000", "from_user": "Nodester", "from_user_id": 240751001, "from_user_id_str": "240751001", "from_user_name": "Nodester", "geo": null, "id": 148774238118084600, "id_str": "148774238118084608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Write your shell scripts in JS; using node.js to write shell scripts in linux environments: http://t.co/eEbptziv http://t.co/nGdtWfjc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:37:59 +0000", "from_user": "chrismatthieu", "from_user_id": 13604142, "from_user_id_str": "13604142", "from_user_name": "Chris Matthieu", "geo": null, "id": 148774080416460800, "id_str": "148774080416460800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/918916153/SuperChrisSmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/918916153/SuperChrisSmall_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Reading up on it now... RT @ryah: this looks pretty awesome http://t.co/yItfWYrF #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:35:29 +0000", "from_user": "pismute", "from_user_id": 124427984, "from_user_id_str": "124427984", "from_user_name": "changwoo park", "geo": null, "id": 148773451606396930, "id_str": "148773451606396931", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1671487070/pismute_profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671487070/pismute_profile_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:34:59 +0000", "from_user": "Ajido", "from_user_id": 19598915, "from_user_id_str": "19598915", "from_user_name": "Ajido", "geo": null, "id": 148773326926528500, "id_str": "148773326926528512", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/679286203/19526_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/679286203/19526_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NodeJS\\u306F\\u30B5\\u30FC\\u30D0\\u7528\\u9014\\u304C\\u30E1\\u30A4\\u30F3\\u3060\\u3051\\u3069\\u3001\\u30B7\\u30B9\\u30C6\\u30E0\\u306E\\u5236\\u5FA1\\uFF08\\uFF1D\\u30B7\\u30A7\\u30EB\\u30B9\\u30AF\\u30EA\\u30D7\\u30C8\\u306E\\u9818\\u57DF\\uFF09\\u306B\\u3082\\u4FBF\\u5229\\u3067\\u3001\\u4ECA\\u3068\\u306A\\u3063\\u3066\\u306F\\u5F53\\u305F\\u308A\\u524D\\u306E\\u30B0\\u30EA\\u30C3\\u30C9\\u51E6\\u7406\\u3084\\u4E26\\u5217\\u51E6\\u7406\\u306E\\u5B9F\\u88C5\\u304C\\u3001\\u8D85\\u624B\\u8EFD\\u306B\\u3067\\u304D\\u3066\\u30AA\\u30B9\\u30B9\\u30E1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:34:10 +0000", "from_user": "tanepiper", "from_user_id": 20693, "from_user_id_str": "20693", "from_user_name": "Tane Piper", "geo": null, "id": 148773120700981250, "id_str": "148773120700981248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1654339360/dizzy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654339360/dizzy_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Write your shell scripts in JS; using node.js to write shell scripts in linux environments: http://t.co/eEbptziv http://t.co/nGdtWfjc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:34:07 +0000", "from_user": "palendae", "from_user_id": 29798769, "from_user_id_str": "29798769", "from_user_name": "Nolan Brubaker", "geo": null, "id": 148773106876551170, "id_str": "148773106876551168", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1609342626/profile_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609342626/profile_pic_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@zeeg nodejs", "to_user": "zeeg", "to_user_id": 15732699, "to_user_id_str": "15732699", "to_user_name": "David Cramer", "in_reply_to_status_id": 148603422269112320, "in_reply_to_status_id_str": "148603422269112320"}, +{"created_at": "Mon, 19 Dec 2011 14:33:04 +0000", "from_user": "Rickard_O", "from_user_id": 182502359, "from_user_id_str": "182502359", "from_user_name": "Rickard Zachrisson", "geo": null, "id": 148772844980011000, "id_str": "148772844980011008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1542951165/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542951165/me_normal.jpg", "source": "<a href="http://js.gd" rel="nofollow">js.gd tweet queue</a>", "text": "RT @jsgoodies: Write your shell scripts in JS; using node.js to write shell scripts in linux environments: http://t.co/FWv9tkbn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:30:49 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148772275070574600, "id_str": "148772275070574593", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @jsgoodies Write your shell scripts in JS; using node.js to write shell scripts in linux environments: http://t.co/78jzLBdl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:30:18 +0000", "from_user": "MaRioBoT", "from_user_id": 17223058, "from_user_id_str": "17223058", "from_user_name": "Mario Botero Fl\\u00F3rez", "geo": null, "id": 148772147622453250, "id_str": "148772147622453248", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1015034050/2b36fa1b-3c37-4de1-b9c6-a65c2228ddbe_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1015034050/2b36fa1b-3c37-4de1-b9c6-a65c2228ddbe_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT: @julitogtu: #Node.js ahora con #Windows Azure https://t.co/QJrqhw4L #BNet #BDotNet #MSDN #MCS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:23:16 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148770376300765200, "id_str": "148770376300765184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://js.gd" rel="nofollow">js.gd tweet queue</a>", "text": "RT @jsgoodies: Write your shell scripts in JS; using node.js to write shell scripts in linux environments: http://t.co/FWv9tkbn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:23:14 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148770369245945860, "id_str": "148770369245945856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Write your shell scripts in JS; using node.js to write shell scripts in linux environments: http://t.co/eEbptziv http://t.co/nGdtWfjc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:19:49 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 148769509476532220, "id_str": "148769509476532224", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "appzone (0.2.5): http://t.co/r1jJJxiF Appzone NodeJS Client", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:06:39 +0000", "from_user": "julitogtu", "from_user_id": 65067674, "from_user_id_str": "65067674", "from_user_name": "Julio Avellaneda", "geo": null, "id": 148766194319622140, "id_str": "148766194319622145", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1544286571/f4a2b0d6-1c85-4123-b101-b3508f9c672d_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544286571/f4a2b0d6-1c85-4123-b101-b3508f9c672d_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "#Node.js ahora con #Windows Azure https://t.co/xpg459pr #BNet #BDotNet #MSDN #MCS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:05:00 +0000", "from_user": "moellenbeck", "from_user_id": 1936981, "from_user_id_str": "1936981", "from_user_name": "Martin M\\u00F6llenbeck", "geo": null, "id": 148765778605383680, "id_str": "148765778605383680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/30569592/FlickrIcon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/30569592/FlickrIcon_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @jasonh: Yes ==> RT @jbueza: wow.. Joyent has their own dhcp, ldap servers written in #NodeJS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:00:04 +0000", "from_user": "jsgoodies", "from_user_id": 222057071, "from_user_id_str": "222057071", "from_user_name": "jsgoodies", "geo": null, "id": 148764540224552960, "id_str": "148764540224552960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1259896749/jsgd_paul_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1259896749/jsgd_paul_normal.png", "source": "<a href="http://js.gd" rel="nofollow">js.gd tweet queue</a>", "text": "Write your shell scripts in JS; using node.js to write shell scripts in linux environments: http://t.co/FWv9tkbn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:58:37 +0000", "from_user": "joono_lee", "from_user_id": 168318363, "from_user_id_str": "168318363", "from_user_name": "\\uC774\\uC900\\uD638", "geo": null, "id": 148764173583650800, "id_str": "148764173583650816", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1423222429/T7ht5U4d_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1423222429/T7ht5U4d_normal", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @parkto: \\uB9C1\\uD06C\\uAC00 \\uAE68\\uC838\\uC11C \\uB2E4\\uC2DC @hyungjoo_ @pkrumins\\uAC00 \\uC791\\uC131\\uD55C \"\\uAF2D \\uC54C\\uC544\\uC57C\\uD55C node.js \\uBAA8\\uB4C8\" \\uC5F0\\uC7AC \\uBC88\\uC5ED. \\uD604\\uC7AC \\uCD1D 10\\uAC1C\\uC758 \\uAC8C\\uC2DC\\uBB3C\\uC911 7\\uAC1C\\uB97C \\uBC88\\uC5ED\\uD588\\uC2B5\\uB2C8\\uB2E4. \\uAD00\\uC2EC\\uC788\\uC73C\\uC2E0 \\uBD84\\uB4E4\\uC740 \\uC81C \\uBE14\\uB85C\\uADF8(nodejs-kr.org/insidejs)\\uC5D0 \\uBC29\\uBB38\\uD574\\uC8FC\\uC138\\uC694.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:48:26 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148761609840492540, "id_str": "148761609840492544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @Nicollemip: mindstorms: NoSQL: Attacking NoSQL and Node.js: Server-Side JavaScript _Injection_ (SSJS) http://t.co/669ojHHz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:48:24 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148761601426722800, "id_str": "148761601426722816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "mindstorms: NoSQL: Attacking NoSQL and Node.js: Server-Side JavaScript _Injection_ (SSJS) http://t.co/Xtq3qFTq http://t.co/WQGvSBgC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:47:27 +0000", "from_user": "zerobellalex", "from_user_id": 111588868, "from_user_id_str": "111588868", "from_user_name": "\\uAE40\\uC885\\uD6C8/Alex Kim", "geo": null, "id": 148761363827798000, "id_str": "148761363827798016", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1061328829/caillou-300x289_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1061328829/caillou-300x289_normal.gif", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @parkto: \"\\uAF2D \\uC54C\\uC544\\uC57C\\uD560 node.js\" \\uBC88\\uC5ED \\uB9C1\\uD06C : http://t.co/yBlFH0ST @hyungjoo_ \\uB2D8 \\uBC88\\uC5ED.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:41:11 +0000", "from_user": "Nicollemip", "from_user_id": 386032728, "from_user_id_str": "386032728", "from_user_name": "Nicolle Place", "geo": null, "id": 148759786014519300, "id_str": "148759786014519296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1575428783/pr3lnd55oe_133437437-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575428783/pr3lnd55oe_133437437-2_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "mindstorms: NoSQL: Attacking NoSQL and Node.js: Server-Side JavaScript _Injection_ (SSJS) http://t.co/669ojHHz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:39:23 +0000", "from_user": "teflonted", "from_user_id": 845611, "from_user_id_str": "845611", "from_user_name": "Teflon Ted", "geo": null, "id": 148759332983541760, "id_str": "148759332983541760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/387803769/2990377114_e10b9cabe6_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/387803769/2990377114_e10b9cabe6_o_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "\"NodeJS Web Framework written in CoffeeScript\" - that sounds sexy. when it has the maturity of rails i'll be all over it.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:36:27 +0000", "from_user": "AndyJ", "from_user_id": 6203362, "from_user_id_str": "6203362", "from_user_name": "Andy Jarrett", "geo": null, "id": 148758593611628540, "id_str": "148758593611628545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1610771482/Photo_on_28-10-2011_at_15.31__4_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610771482/Photo_on_28-10-2011_at_15.31__4_copy_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Loading from node_module folders within your app http://t.co/FG7r4CO0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:26:05 +0000", "from_user": "HanamiSolutions", "from_user_id": 325460307, "from_user_id_str": "325460307", "from_user_name": "Fabrizio Bartoloni", "geo": null, "id": 148755986360967170, "id_str": "148755986360967169", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1659360576/345f009b-0b90-4c7d-9fd1-5ec7d027f1cb_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659360576/345f009b-0b90-4c7d-9fd1-5ec7d027f1cb_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @arnejenssen: Toolbox for #nodejs http://t.co/DAKR0TNm via @nodetoolbox", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:25:13 +0000", "from_user": "arnejenssen", "from_user_id": 226237233, "from_user_id_str": "226237233", "from_user_name": "Arne Jenssen", "geo": null, "id": 148755769364451330, "id_str": "148755769364451328", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1640373213/Screen_Shot_2011-11-15_at_15.38.04__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640373213/Screen_Shot_2011-11-15_at_15.38.04__normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Toolbox for #nodejs http://t.co/DAKR0TNm via @nodetoolbox", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:23:14 +0000", "from_user": "hitoriblog", "from_user_id": 5862512, "from_user_id_str": "5862512", "from_user_name": "moyashi", "geo": null, "id": 148755270653325300, "id_str": "148755270653325313", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/55840562/face_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/55840562/face_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "utf-8\\u3057\\u304B\\u4F7F\\u3048\\u306A\\u3044\\u3068\\u601D\\u3044\\u304D\\u3084node-iconv\\u3063\\u3066\\u3044\\u3046\\u306E\\u304C\\u3042\\u308B\\u306E\\u306D\\u3002\\u901F\\u3044V8\\u3067\\u30A4\\u30F3\\u30BF\\u30D7\\u30EA\\u30BF\\u3068\\u3057\\u3066\\u3082\\u4F7F\\u3048\\u3066\\u30B9\\u30AF\\u30EC\\u30A4\\u30D4\\u30F3\\u30B0\\u3082\\u5B8C\\u74A7\\u3060\\u3068\\u3001Ruby/Python\\u3088\\u308A\\u52DD\\u308B\\u5C40\\u9762\\u3082\\u3042\\u308A\\u305D\\u3046 \"nodejs\\u3067jQuery\\u30B9\\u30AF\\u30EC\\u30A4\\u30D4\\u30F3\\u30B0\" http://t.co/vZOsvuny", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:18:58 +0000", "from_user": "jfroma", "from_user_id": 26559849, "from_user_id_str": "26559849", "from_user_name": "Jos\\u00E9 F. Romaniello", "geo": null, "id": 148754196752109570, "id_str": "148754196752109568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1152169901/avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1152169901/avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @o_amp_o: Intersect - A multi-user audio sequencer using #nodejs, #socketio and #audiolet. http://t.co/2zM3gb5U", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:18:18 +0000", "from_user": "frr149", "from_user_id": 105482552, "from_user_id_str": "105482552", "from_user_name": "Fernando Rodr\\u00EDguez", "geo": null, "id": 148754026664693760, "id_str": "148754026664693760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1617824239/portrait_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1617824239/portrait_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Intersect - A multi-user audio sequencer using #nodejs, #socketio and #audiolet. http://t.co/0uVAMXGA http://t.co/RqWyYTJM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:17:22 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148753790647025660, "id_str": "148753790647025664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @o_amp_o: Intersect - A multi-user audio sequencer using #nodejs, #socketio and #audiolet. http://t.co/2zM3gb5U", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:17:02 +0000", "from_user": "aredridel", "from_user_id": 17950990, "from_user_id_str": "17950990", "from_user_name": "Aria Stewart", "geo": null, "id": 148753707075502080, "id_str": "148753707075502080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/66907688/Ari-100x100_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/66907688/Ari-100x100_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @jasonh: Yes ==> RT @jbueza: wow.. Joyent has their own dhcp, ldap servers written in #NodeJS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:14:32 +0000", "from_user": "julienhuang", "from_user_id": 15600658, "from_user_id_str": "15600658", "from_user_name": "Julien Huang", "geo": null, "id": 148753081079824400, "id_str": "148753081079824384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/918074489/n1370959179_30046827_1624_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/918074489/n1370959179_30046827_1624_2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @sdouche: Technology behind Rackspace Cloud Monitoring / The Switch: Python to Node.js #python #nodejs - http://t.co/mxkJw4pK / http://t.co/AHATodsR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:09:01 +0000", "from_user": "ainame", "from_user_id": 15647680, "from_user_id_str": "15647680", "from_user_name": "Satoshi Namai", "geo": null, "id": 148751689720139780, "id_str": "148751689720139777", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691272796/301570_261387710566938_100000871336323_711540_156447265_n_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691272796/301570_261387710566938_100000871336323_711540_156447265_n_normal.jpeg", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "\\u3061\\u3087\\u304F\\u3061\\u3087\\u304F\\u8AAD\\u3080\\u3053\\u3068\\u306B\\u3057\\u307E\\u3059 / \\u201CNode.js Manual & Documentation\\u201D http://t.co/LLcBBoVd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:03:53 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 148750397912268800, "id_str": "148750397912268800", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejschina: Joyent's Ryan Dahl\\nhttp://t.co/vKPMBsHd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:57:08 +0000", "from_user": "dhofstet", "from_user_id": 9478792, "from_user_id_str": "9478792", "from_user_name": "Daniel Hofstetter", "geo": null, "id": 148748702293573630, "id_str": "148748702293573632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/35170612/dhofstet_bw_150x150_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/35170612/dhofstet_bw_150x150_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"If something is not documented, it's safe to assume it's either internal, deprecated or in 'private beta' mode.\" #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:50:55 +0000", "from_user": "matthewswallace", "from_user_id": 5477442, "from_user_id_str": "5477442", "from_user_name": "Matthew Wallace", "geo": null, "id": 148747136891228160, "id_str": "148747136891228160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1586875731/avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586875731/avatar_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: History of #NodeJS -- http://t.co/pF55CNRK \"v8 is a masterpiece of software\" -- wow! http://t.co/VUVfD8H4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:50:31 +0000", "from_user": "hitoriblog", "from_user_id": 5862512, "from_user_id_str": "5862512", "from_user_name": "moyashi", "geo": null, "id": 148747035238088700, "id_str": "148747035238088705", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/55840562/face_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/55840562/face_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "node.js\\u3063\\u3066JavaScript\\u30A4\\u30F3\\u30BF\\u30D7\\u30EA\\u30BF\\u3060\\u3063\\u305F\\u306E\\u304B\\uFF01\\u30A4\\u30F3\\u30BF\\u30E9\\u30AF\\u30C6\\u30A3\\u30D6\\u30B7\\u30A7\\u30EB\\u3082\\u3042\\u308B\\u3057\\u3001\\u30D1\\u30C3\\u30B1\\u30FC\\u30B8\\u7BA1\\u7406\\u30C4\\u30FC\\u30EB\\u307F\\u305F\\u3044\\u306A\\u306E\\u3082\\u3042\\u308B\\u3057 http://t.co/kuDDMn2s (via @gnue )", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:47:06 +0000", "from_user": "o_amp_o", "from_user_id": 19656815, "from_user_id_str": "19656815", "from_user_name": "Joe Turner", "geo": null, "id": 148746175862939650, "id_str": "148746175862939648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/602345265/joe_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/602345265/joe_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Intersect - A multi-user audio sequencer using #nodejs, #socketio and #audiolet. http://t.co/2zM3gb5U", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:46:09 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148745935348961280, "id_str": "148745935348961281", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "new joyent academic program: funding research, enabling research. #instrumentation #nodejs #client http://t.co/za5u1ZJx http://t.co/JuIlkxaG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:44:54 +0000", "from_user": "Hprun", "from_user_id": 409868335, "from_user_id_str": "409868335", "from_user_name": "Hprun", "geo": null, "id": 148745623720574980, "id_str": "148745623720574976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1633356998/Hprun_AZO_glow_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633356998/Hprun_AZO_glow_normal.jpg", "source": "<a href="http://nurph.com" rel="nofollow">Nurph</a>", "text": "@monkchips @julioprotzek @pedramp theres's a real-time channel of Node.js tweets on http://t.co/Sayo4zrm #nodejs", "to_user": "monkchips", "to_user_id": 61233, "to_user_id_str": "61233", "to_user_name": "James Governor", "in_reply_to_status_id": 148745270572744700, "in_reply_to_status_id_str": "148745270572744705"}, +{"created_at": "Mon, 19 Dec 2011 12:44:11 +0000", "from_user": "hitoriblog", "from_user_id": 5862512, "from_user_id_str": "5862512", "from_user_name": "moyashi", "geo": null, "id": 148745440781803520, "id_str": "148745440781803522", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/55840562/face_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/55840562/face_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@gnue \\u304A\\u304A\\u304A\\uFF01\\u3053\\u3046\\u3044\\u3046\\u3082\\u306E\\u3060\\u3063\\u305F\\u306E\\u304B\\uFF01\\u3042\\u3056\\u3063\\u3059\\uFF01http://t.co/1HVEhldr\\u306D\\uFF01", "to_user": "gnue", "to_user_id": 15647244, "to_user_id_str": "15647244", "to_user_name": "GNUE(\\u9D7A)", "in_reply_to_status_id": 148744578051223550, "in_reply_to_status_id_str": "148744578051223553"}, +{"created_at": "Mon, 19 Dec 2011 12:43:38 +0000", "from_user": "pedramp", "from_user_id": 16778637, "from_user_id_str": "16778637", "from_user_name": "Pedram Pourhossein", "geo": null, "id": 148745301728051200, "id_str": "148745301728051200", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/699533580/pedram_pourhossein_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/699533580/pedram_pourhossein_copy_normal.jpg", "source": "<a href="http://pedram.mp" rel="nofollow">Pedram</a>", "text": "image color palette extraction lib for #nodejs - https://t.co/joJbFHpa via(@rauchg)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:43:30 +0000", "from_user": "monkchips", "from_user_id": 61233, "from_user_id_str": "61233", "from_user_name": "James Governor", "geo": null, "id": 148745270572744700, "id_str": "148745270572744705", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627071088/hairstyle_oval_face_women-275x300_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627071088/hairstyle_oval_face_women-275x300_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "new joyent academic program: funding research, enabling research. #instrumentation #nodejs #client http://t.co/nlxmwrzg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:36:28 +0000", "from_user": "julioprotzek", "from_user_id": 7938202, "from_user_id_str": "7938202", "from_user_name": "Julio Protzek", "geo": null, "id": 148743500614209540, "id_str": "148743500614209536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/935415002/dr_manhatan_head_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/935415002/dr_manhatan_head_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:32:21 +0000", "from_user": "briandesu", "from_user_id": 50737284, "from_user_id_str": "50737284", "from_user_name": "Brian", "geo": null, "id": 148742464684048400, "id_str": "148742464684048384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1692341372/rawr_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692341372/rawr_normal.png", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "@NodeJsCommunity Write EVERYTHING in Javascript with Node.js! :D #nodejs", "to_user": "NodeJsCommunity", "to_user_id": 402824193, "to_user_id_str": "402824193", "to_user_name": "NodeJS Community", "in_reply_to_status_id": 148738151807070200, "in_reply_to_status_id_str": "148738151807070209"}, +{"created_at": "Mon, 19 Dec 2011 12:27:54 +0000", "from_user": "Hprun", "from_user_id": 409868335, "from_user_id_str": "409868335", "from_user_name": "Hprun", "geo": null, "id": 148741343399772160, "id_str": "148741343399772161", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1633356998/Hprun_AZO_glow_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633356998/Hprun_AZO_glow_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I'm a big fan of #nodejs & coffescript", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:25:07 +0000", "from_user": "alessioalex", "from_user_id": 159135821, "from_user_id_str": "159135821", "from_user_name": "alessio alex", "geo": null, "id": 148740644519673860, "id_str": "148740644519673856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1020302694/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1020302694/avatar_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 #html5 #css3 http:... http://t.co/p2AzQPCi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:23:42 +0000", "from_user": "NeilCauldwell", "from_user_id": 65543, "from_user_id_str": "65543", "from_user_name": "Neil Cauldwell", "geo": null, "id": 148740286242230270, "id_str": "148740286242230272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/40045492/me_in_tux_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/40045492/me_in_tux_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ryah There's a real-time channel of the #nodejs tweets on http://t.co/FpoTAI0w . Funnily enough it's powered by Node.js too :)", "to_user": "ryah", "to_user_id": 18975861, "to_user_id_str": "18975861", "to_user_name": "Ryan Dahl", "in_reply_to_status_id": 148659426897825800, "in_reply_to_status_id_str": "148659426897825792"}, +{"created_at": "Mon, 19 Dec 2011 12:23:40 +0000", "from_user": "Frozzare", "from_user_id": 17970859, "from_user_id_str": "17970859", "from_user_name": "Fredrik Forsmo", "geo": null, "id": 148740278205952000, "id_str": "148740278205952000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1552171719/twitter3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552171719/twitter3_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:21:39 +0000", "from_user": "genexp", "from_user_id": 12551, "from_user_id_str": "12551", "from_user_name": "Brian Corrigan", "geo": null, "id": 148739771739541500, "id_str": "148739771739541504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1515129325/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515129325/profile_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @jedisct1: CoreJS \\u2014 A web framework in #coffeescript for #nodejs: http://t.co/yBB46F4K", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:20:49 +0000", "from_user": "mareksuscak", "from_user_id": 66651296, "from_user_id_str": "66651296", "from_user_name": "Marek \\u0160u\\u0161\\u010D\\u00E1k", "geo": null, "id": 148739561537814530, "id_str": "148739561537814528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1417805804/f2250bd932d8a3d4987f9135bd04a5dd_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1417805804/f2250bd932d8a3d4987f9135bd04a5dd_normal.jpeg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:20:01 +0000", "from_user": "TheDeveloper", "from_user_id": 18001569, "from_user_id_str": "18001569", "from_user_name": "Geoff Wagstaff", "geo": null, "id": 148739358252466180, "id_str": "148739358252466176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1413195938/the_developer_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1413195938/the_developer_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:19:35 +0000", "from_user": "ya_pulser", "from_user_id": 159236194, "from_user_id_str": "159236194", "from_user_name": "Ilya Teterin", "geo": null, "id": 148739250605658100, "id_str": "148739250605658112", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1021173775/pulser_stepsel_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1021173775/pulser_stepsel_normal.gif", "source": "<a href="http://gun.io/#" rel="nofollow">Harbbl</a>", "text": "RT @GUNdotIO: New Open Source gig: Neo4j Node.js adapter http://t.co/KfQtLCYh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:18:40 +0000", "from_user": "whalesalad", "from_user_id": 31412599, "from_user_id_str": "31412599", "from_user_name": "Michael Whalen", "geo": null, "id": 148739021479219200, "id_str": "148739021479219200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1607946945/IMG_4864_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607946945/IMG_4864_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:15:15 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148738159784624130, "id_str": "148738159784624129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @strzel_a: Write your shell scripts in JavaScript, via Node.js - http://t.co/RNVTbqPG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:15:13 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148738151807070200, "id_str": "148738151807070209", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Write your shell scripts in JavaScript, via Node.js - http://t.co/SL5Msixg http://t.co/MCDZlR1D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:09:12 +0000", "from_user": "alessioalex", "from_user_id": 159135821, "from_user_id_str": "159135821", "from_user_name": "alessio alex", "geo": null, "id": 148736636241448960, "id_str": "148736636241448960", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1020302694/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1020302694/avatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tjholowaychuk: palette - image color palette extraction lib for #nodejs - https://t.co/bwzPe8NP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:05:44 +0000", "from_user": "jashkenas", "from_user_id": 123323498, "from_user_id_str": "123323498", "from_user_name": "Jeremy Ashkenas", "geo": null, "id": 148735767231987700, "id_str": "148735767231987712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1185870726/gravatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1185870726/gravatar_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:04:42 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148735506404999170, "id_str": "148735506404999168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @masylum: How to deploy a #nodejs application with monit, nginx and bouncy http://t.co/8gEkfjgo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:04:40 +0000", "from_user": "alessioalex", "from_user_id": 159135821, "from_user_id_str": "159135821", "from_user_name": "alessio alex", "geo": null, "id": 148735496837791740, "id_str": "148735496837791744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1020302694/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1020302694/avatar_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: How to deploy a #nodejs application with monit, nginx and bouncy http://t.co/1eelJRiJ http://t.co/rBHaO2VF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:00:06 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 148734346038226940, "id_str": "148734346038226944", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Joyent's Ryan Dahl\\nhttp://t.co/vKPMBsHd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:58:48 +0000", "from_user": "alessioalex", "from_user_id": 159135821, "from_user_id_str": "159135821", "from_user_name": "alessio alex", "geo": null, "id": 148734021453611000, "id_str": "148734021453611009", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1020302694/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1020302694/avatar_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: how to make a major tech shift switching from #python to #nodejs http://t.co/F0c5ncwm http://t.co/NGSWL7v4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:58:39 +0000", "from_user": "aaromnido", "from_user_id": 105176513, "from_user_id_str": "105176513", "from_user_name": "Fernando Val", "geo": null, "id": 148733983058956300, "id_str": "148733983058956288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1258768022/fer-avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1258768022/fer-avatar_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "So nice Bootstrap use! @ivanloire [Blog post] Example what #NodeJs is REALLY good at: high performance HTTP monitor: bit.ly/ruQwqT #node.js", "to_user": "ivanloire", "to_user_id": 24971085, "to_user_id_str": "24971085", "to_user_name": "Ivan Loire", "in_reply_to_status_id": 148705668910694400, "in_reply_to_status_id_str": "148705668910694400"}, +{"created_at": "Mon, 19 Dec 2011 11:57:08 +0000", "from_user": "aaromnido", "from_user_id": 105176513, "from_user_id_str": "105176513", "from_user_name": "Fernando Val", "geo": null, "id": 148733602438451200, "id_str": "148733602438451200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1258768022/fer-avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1258768022/fer-avatar_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ivanloire: [Blog post] Example of what #NodeJs is REALLY good at: a single threaded high performance HTTP monitor: http://t.co/Gc0waJVQ #node.js", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:56:17 +0000", "from_user": "kotsutsumi", "from_user_id": 69088395, "from_user_id_str": "69088395", "from_user_name": "\\u5C0F\\u5824\\u4E00\\u5F18", "geo": null, "id": 148733386951884800, "id_str": "148733386951884800", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/561666580/XenophyLogoOnly_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/561666580/XenophyLogoOnly_normal.gif", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "nodejs\\u3060\\u3051\\u3069ExtJS\\u3063\\u307D\\u304F\\u304B\\u3051\\u308B\\u306E\\u3002siesta\\u3063\\u307D\\u304F\\u3059\\u308B\\u306E\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:55:50 +0000", "from_user": "kuzrob", "from_user_id": 311927144, "from_user_id_str": "311927144", "from_user_name": "Robert Kuzelj", "geo": null, "id": 148733274502610940, "id_str": "148733274502610944", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1395675349/rk_twitter_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1395675349/rk_twitter_normal.JPG", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Intro into Node Modules Part III - CLI FAQ\\nhttp://t.co/gW6cFkkY\\n#nodejs #npmjs \\nplease RT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:51:58 +0000", "from_user": "strzel_a", "from_user_id": 89807885, "from_user_id_str": "89807885", "from_user_name": "Strzelewicz Alex", "geo": null, "id": 148732300685869060, "id_str": "148732300685869056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1176849150/img_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1176849150/img_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Write your shell scripts in JavaScript, via Node.js - http://t.co/RNVTbqPG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:42:22 +0000", "from_user": "MartinMinaya", "from_user_id": 34531045, "from_user_id_str": "34531045", "from_user_name": "Martin Minaya", "geo": null, "id": 148729883961458700, "id_str": "148729883961458688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1652439158/388455_2701858272651_1442547691_32964190_671622495_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652439158/388455_2701858272651_1442547691_32964190_671622495_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:42:14 +0000", "from_user": "dineshbhoopathy", "from_user_id": 25660336, "from_user_id_str": "25660336", "from_user_name": "dinesh bhoopathy", "geo": null, "id": 148729851493363700, "id_str": "148729851493363712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/960060000/IMG_2505_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/960060000/IMG_2505_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @derdesign: CoreJS - An MVC Web Application Framework for NodeJS http://t.co/HobzxkKX (Please RT)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:42:12 +0000", "from_user": "MartinMinaya", "from_user_id": 34531045, "from_user_id_str": "34531045", "from_user_name": "Martin Minaya", "geo": null, "id": 148729844014919680, "id_str": "148729844014919680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1652439158/388455_2701858272651_1442547691_32964190_671622495_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652439158/388455_2701858272651_1442547691_32964190_671622495_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @derdesign: CoreJS - An MVC Web Application Framework for NodeJS http://t.co/HobzxkKX (Please RT)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:39:39 +0000", "from_user": "hostvirtual", "from_user_id": 20729979, "from_user_id_str": "20729979", "from_user_name": "hostvirtual", "geo": null, "id": 148729199723675650, "id_str": "148729199723675648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/148547296/hv-logo-only_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/148547296/hv-logo-only_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @derdesign: CoreJS - An MVC Web Application Framework for NodeJS http://t.co/HobzxkKX (Please RT)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:39:30 +0000", "from_user": "hostvirtual", "from_user_id": 20729979, "from_user_id_str": "20729979", "from_user_name": "hostvirtual", "geo": null, "id": 148729163610722300, "id_str": "148729163610722305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/148547296/hv-logo-only_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/148547296/hv-logo-only_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @derdesign: Designing the website for an Open Source Web Framework for NodeJS I'm about to release at Github. Stay tuned :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:39:20 +0000", "from_user": "felipefdeaguiar", "from_user_id": 48890724, "from_user_id_str": "48890724", "from_user_name": "Felipe F. de Aguiar", "geo": null, "id": 148729120795279360, "id_str": "148729120795279361", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701375229/04_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701375229/04_normal.jpg", "source": "Zite Personalized Magazine", "text": "RT @dump: Web framework para NodeJS escrito em CoffeeScript http://t.co/O2ugiVYT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:36:44 +0000", "from_user": "ifreenow", "from_user_id": 179905855, "from_user_id_str": "179905855", "from_user_name": "Kun Wang", "geo": null, "id": 148728468803297280, "id_str": "148728468803297280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1107796953/11_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1107796953/11_normal.gif", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @PabloSerbo: Ensure that long live assets (css,js,png etc) don't get stuck in your users browser/proxy with versionator https://t.co/RCRGe8os #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:32:24 +0000", "from_user": "ifreenow", "from_user_id": 179905855, "from_user_id_str": "179905855", "from_user_name": "Kun Wang", "geo": null, "id": 148727375381790720, "id_str": "148727375381790721", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1107796953/11_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1107796953/11_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Technology behind Rackspace Cloud Monitoring / The Switch: Python to Node.js #python #nodejs - http://t.co/mxk... http://t.co/Acq15jEh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:24:48 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148725463643197440, "id_str": "148725463643197440", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @cierniak Node.js - First Impressions http://t.co/hqP9XoKM via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:24:48 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148725462527516670, "id_str": "148725462527516672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @liquuid dump: Web framework para NodeJS escrito em CoffeeScript http://t.co/4v4t2fHb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:24:47 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148725461118226430, "id_str": "148725461118226432", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @FriendsOfNodeJS dump: Web framework para NodeJS escrito em CoffeeScript http://t.co/4v4t2fHb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:23:04 +0000", "from_user": "tueoxenvad", "from_user_id": 201205649, "from_user_id_str": "201205649", "from_user_name": "Tue Oxenvad", "geo": null, "id": 148725029029421060, "id_str": "148725029029421057", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1175381630/buddy_icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1175381630/buddy_icon_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "MVC Web Framework for NodeJS http://t.co/PkyttrZ3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:20:14 +0000", "from_user": "cierniak", "from_user_id": 14637908, "from_user_id_str": "14637908", "from_user_name": "Michal Cierniak", "geo": null, "id": 148724316433956860, "id_str": "148724316433956865", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1430256685/michal4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1430256685/michal4_normal.jpg", "source": "Zite Personalized Magazine", "text": "Node.js - First Impressions http://t.co/dOloon49 via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:17:41 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 148723674931937280, "id_str": "148723674931937280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Yes ==> RT @jbueza: wow.. Joyent has their own dhcp, ldap servers written in #NodeJS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:09:44 +0000", "from_user": "thomasf", "from_user_id": 15242522, "from_user_id_str": "15242522", "from_user_name": "Fritz Thomas", "geo": null, "id": 148721670784426000, "id_str": "148721670784425984", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/56438285/Cow-Avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/56438285/Cow-Avatar_normal.png", "source": "<a href="http://gun.io/#" rel="nofollow">Harbbl</a>", "text": "RT @GUNdotIO: New Open Source gig: Neo4j Node.js adapter http://t.co/KfQtLCYh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:05:03 +0000", "from_user": "n1k0", "from_user_id": 6619162, "from_user_id_str": "6619162", "from_user_name": "Nicolas Perriault", "geo": null, "id": 148720493862727680, "id_str": "148720493862727681", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1509704854/meblur_bw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509704854/meblur_bw_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@_kemar tu crois que c'est nodejs le robot ? :o", "to_user": "_kemar", "to_user_id": 5785262, "to_user_id_str": "5785262", "to_user_name": "kemar", "in_reply_to_status_id": 148686831574192130, "in_reply_to_status_id_str": "148686831574192128"}, +{"created_at": "Mon, 19 Dec 2011 10:57:20 +0000", "from_user": "morteza_milani", "from_user_id": 166104316, "from_user_id_str": "166104316", "from_user_name": "Morteza Milani", "geo": null, "id": 148718552407490560, "id_str": "148718552407490560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681214380/me2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681214380/me2_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @PabloSerbo: Ensure that long live assets (css,js,png etc) don't get stuck in your users browser/proxy with versionator https://t.co/RCRGe8os #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:50:54 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148716931476754430, "id_str": "148716931476754433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @PabloSerbo: Ensure that long live assets (css,js,png etc) don't get stuck in your users browser/proxy with versionator https://t.co/RCRGe8os #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 10:50:54 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148716931476754430, "id_str": "148716931476754433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @PabloSerbo: Ensure that long live assets (css,js,png etc) don't get stuck in your users browser/proxy with versionator https://t.co/RCRGe8os #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:47:22 +0000", "from_user": "liquuid", "from_user_id": 14384960, "from_user_id_str": "14384960", "from_user_name": "liquuid", "geo": null, "id": 148716045828493300, "id_str": "148716045828493313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675903083/2011-12-05-185028_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675903083/2011-12-05-185028_normal.jpg", "source": "Zite Personalized Magazine", "text": "RT @dump: Web framework para NodeJS escrito em CoffeeScript http://t.co/O2ugiVYT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:42:42 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148714871440162800, "id_str": "148714871440162816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "Zite Personalized Magazine", "text": "RT @dump: Web framework para NodeJS escrito em CoffeeScript http://t.co/O2ugiVYT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:42:41 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148714863156400130, "id_str": "148714863156400128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Web framework para NodeJS escrito em CoffeeScript http://t.co/g8NO5fps http://t.co/cqzJPOzH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:42:33 +0000", "from_user": "adg314159", "from_user_id": 51143205, "from_user_id_str": "51143205", "from_user_name": "Arnold de Groot", "geo": null, "id": 148714832953212930, "id_str": "148714832953212928", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://www.apple.com" rel="nofollow">Safari on iOS</a>", "text": "Microsoft embraces #nodejs ? http://t.co/MY8iP66w", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:36:55 +0000", "from_user": "luisruizpavon", "from_user_id": 14489175, "from_user_id_str": "14489175", "from_user_name": "luisruizpavon", "geo": null, "id": 148713413722390530, "id_str": "148713413722390528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1258411827/luru_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1258411827/luru_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ivanloire: [Blog post] Example of what #NodeJs is REALLY good at: a single threaded high performance HTTP monitor: http://t.co/Gc0waJVQ #node.js", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:27:14 +0000", "from_user": "rgaidot", "from_user_id": 1245801, "from_user_id_str": "1245801", "from_user_name": "R\\u00E9gis Gaidot", "geo": null, "id": 148710979033763840, "id_str": "148710979033763840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1266738841/avatar-6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266738841/avatar-6_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "RT @GUNdotIO: New Open Source gig: Neo4j Node.js adapter http://t.co/GP6PrRRk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:27:09 +0000", "from_user": "dump", "from_user_id": 2665521, "from_user_id_str": "2665521", "from_user_name": "Christiano Anderson", "geo": null, "id": 148710955373707260, "id_str": "148710955373707265", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1603318086/avatar_twitter2_transp_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1603318086/avatar_twitter2_transp_normal.png", "source": "Zite Personalized Magazine", "text": "Web framework para NodeJS escrito em CoffeeScript http://t.co/O2ugiVYT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:21:45 +0000", "from_user": "SUKAIWARD", "from_user_id": 196305288, "from_user_id_str": "196305288", "from_user_name": "Idir IBOUCHICHENE", "geo": null, "id": 148709598034010100, "id_str": "148709598034010112", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1133306473/programmation_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1133306473/programmation_normal.jpg", "source": "<a href="http://www.scoop.it" rel="nofollow">Scoop.it</a>", "text": "RT @cjean_dev: LemonNode.js nouvel SSO en javascript http://t.co/rJuCwTUP #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:21:29 +0000", "from_user": "cjean_dev", "from_user_id": 248265595, "from_user_id_str": "248265595", "from_user_name": "Christophe Jean", "geo": null, "id": 148709528777658370, "id_str": "148709528777658368", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1236625278/thumbs-up_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1236625278/thumbs-up_normal.jpg", "source": "<a href="http://www.scoop.it" rel="nofollow">Scoop.it</a>", "text": "LemonNode.js nouvel SSO en javascript http://t.co/rJuCwTUP #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:20:17 +0000", "from_user": "NeCkEr", "from_user_id": 14176673, "from_user_id_str": "14176673", "from_user_name": "NeCkEr", "geo": null, "id": 148709229384052740, "id_str": "148709229384052736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1656954487/imgSnow_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656954487/imgSnow_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:17:59 +0000", "from_user": "bad_at_math", "from_user_id": 183217980, "from_user_id_str": "183217980", "from_user_name": "juske the badatmath", "geo": null, "id": 148708650129702900, "id_str": "148708650129702912", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1111214185/Untitled1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1111214185/Untitled1_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Node\\u306ET\\u30B7\\u30E3\\u30C4\\u8CA9\\u58F2\\u4E2D \\u3042\\u306E\\u4E80\\u306E\\u30A4\\u30E9\\u30B9\\u30C8\\u304C\\uFF01\\u3067\\u3082\\u3069\\u306E\\u30B5\\u30A4\\u30C8\\u306E\\u30A4\\u30E9\\u30B9\\u30C8\\u3060\\u3063\\u3051\\u304B\\u3002 http://t.co/c8GdjsZV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:13:49 +0000", "from_user": "julitrows", "from_user_id": 361122451, "from_user_id_str": "361122451", "from_user_name": "Julio Antequera", "geo": null, "id": 148707602115723260, "id_str": "148707602115723264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1688583546/290537_273787959339468_100001247993397_812696_1266700678_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688583546/290537_273787959339468_100001247993397_812696_1266700678_o_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @dalmaer: CoreJS is a CoffeeSCript MVC framework for NodeJS for non-trivial apps http://t.co/z42wvabq /by Ernesto M\\u00E9ndez", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:12:19 +0000", "from_user": "RikTarWeb", "from_user_id": 85145062, "from_user_id_str": "85145062", "from_user_name": "Riccardo Tartaglia", "geo": null, "id": 148707222120181760, "id_str": "148707222120181760", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1276933465/io_bw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1276933465/io_bw_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "sviluppando con websocket e nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:12:00 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148707141555986430, "id_str": "148707141555986433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ivanloire: [Blog post] Example of what #NodeJs is REALLY good at: a single threaded high performance HTTP monitor: http://t.co/Gc0waJVQ #node.js", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:11:58 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148707135105146880, "id_str": "148707135105146880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "[Blog post] Example of what #NodeJs is REALLY good at: a single threaded high performance HTTP monitor: http://t... http://t.co/KSldmKlD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:11:35 +0000", "from_user": "TrozosDePollo", "from_user_id": 338914474, "from_user_id_str": "338914474", "from_user_name": "vnk", "geo": null, "id": 148707037096837120, "id_str": "148707037096837120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1452855626/trozos-de-pollo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1452855626/trozos-de-pollo_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ivanloire: [Blog post] Example of what #NodeJs is REALLY good at: a single threaded high performance HTTP monitor: http://t.co/Gc0waJVQ #node.js", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:11:02 +0000", "from_user": "neo4j", "from_user_id": 22467617, "from_user_id_str": "22467617", "from_user_name": "Neo4j", "geo": null, "id": 148706898538012670, "id_str": "148706898538012672", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/195275920/square-logo-no-text-2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/195275920/square-logo-no-text-2_normal.png", "source": "<a href="http://gun.io/#" rel="nofollow">Harbbl</a>", "text": "RT @GUNdotIO: New Open Source gig: Neo4j Node.js adapter http://t.co/KfQtLCYh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:09:47 +0000", "from_user": "pablojimeno", "from_user_id": 73153128, "from_user_id_str": "73153128", "from_user_name": "Pablo Jimeno", "geo": null, "id": 148706585550659600, "id_str": "148706585550659584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1475799969/pablo-avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1475799969/pablo-avatar_normal.png", "source": "<a href="http://hotot.org" rel="nofollow">Hotot</a>", "text": "RT @ivanloire: Example of what #NodeJs is REALLY good at: a single threaded high performance HTTP monitor http://t.co/PELlqVyy #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:07:08 +0000", "from_user": "quippdPython", "from_user_id": 25536732, "from_user_id_str": "25536732", "from_user_name": "quippd Python News", "geo": null, "id": 148705917247041540, "id_str": "148705917247041536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/104837330/python_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/104837330/python_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @jdecool The Switch: Python to Node.js : http://t.co/IL7NP08F #nodejs #python", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:06:08 +0000", "from_user": "ivanloire", "from_user_id": 24971085, "from_user_id_str": "24971085", "from_user_name": "Ivan Loire", "geo": null, "id": 148705668910694400, "id_str": "148705668910694400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1180004088/bigorre_300_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1180004088/bigorre_300_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "[Blog post] Example of what #NodeJs is REALLY good at: a single threaded high performance HTTP monitor: http://t.co/Gc0waJVQ #node.js", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:04:21 +0000", "from_user": "Siji_Banjo", "from_user_id": 112398548, "from_user_id_str": "112398548", "from_user_name": "Siji Onabanjo", "geo": null, "id": 148705217851035650, "id_str": "148705217851035648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1592778928/Sijiisahunk2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592778928/Sijiisahunk2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "This is useful for your NHS article http://t.co/Sf9GcBdA #nodejs #vista @hjclark3 @Cyberduck_uk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:02:06 +0000", "from_user": "DigitalPond1", "from_user_id": 430951613, "from_user_id_str": "430951613", "from_user_name": "Digital Pond", "geo": null, "id": 148704651255091200, "id_str": "148704651255091200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1679448611/digital-pond-logo-final_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679448611/digital-pond-logo-final_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "RT @rtweed: Those who attended my #digitalpond talk on Node.js in healthcare may be interested in this: http://t.co/PW5XMbwI #nodejs #vista", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:02:05 +0000", "from_user": "Siji_Banjo", "from_user_id": 112398548, "from_user_id_str": "112398548", "from_user_name": "Siji Onabanjo", "geo": null, "id": 148704647903850500, "id_str": "148704647903850496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1592778928/Sijiisahunk2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592778928/Sijiisahunk2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "RT @rtweed: Those who attended my #digitalpond talk on Node.js in healthcare may be interested in this: http://t.co/PW5XMbwI #nodejs #vista", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:53:39 +0000", "from_user": "domharrington", "from_user_id": 20199183, "from_user_id_str": "20199183", "from_user_name": "Dom Harrington", "geo": null, "id": 148702527393771520, "id_str": "148702527393771520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1414317955/_mnm_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1414317955/_mnm_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:52:24 +0000", "from_user": "eldios", "from_user_id": 19900662, "from_user_id_str": "19900662", "from_user_name": "Lele 'El Dios'", "geo": null, "id": 148702210409250800, "id_str": "148702210409250818", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1019549202/frengo_asciiColor_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1019549202/frengo_asciiColor_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:45:24 +0000", "from_user": "tanepiper", "from_user_id": 20693, "from_user_id_str": "20693", "from_user_name": "Tane Piper", "geo": null, "id": 148700447249678340, "id_str": "148700447249678336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1654339360/dizzy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654339360/dizzy_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Something broke in nodejs compiling on MacOSX 10.6 between 0.6.4 -> 0.6.6 - now *needs* XCode, not just GCC packages. Not impressed #node", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:44:35 +0000", "from_user": "booyaa", "from_user_id": 719673, "from_user_id_str": "719673", "from_user_name": "booyaa", "geo": null, "id": 148700244769640450, "id_str": "148700244769640448", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/640332281/boo-sm-avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/640332281/boo-sm-avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Samisdat: Der Server l\\u00E4uft mit @Nodejs Daten speichern in @CouchDB und http://t.co/7KzDdmZH \\u00FCbernimmt die Session. Sch\\u00F6ner Code ohne PHP ;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:43:38 +0000", "from_user": "GridTwentyThree", "from_user_id": 18871028, "from_user_id_str": "18871028", "from_user_name": "Benjamin Moulin", "geo": null, "id": 148700004033376260, "id_str": "148700004033376256", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1335049234/Sans-titre---1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335049234/Sans-titre---1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@jhervouet pas de possibilit\\u00E9 de JS c\\u00F4t\\u00E9 serveur (nodejs, mongodb) ?", "to_user": "jhervouet", "to_user_id": 7741222, "to_user_id_str": "7741222", "to_user_name": "Julien Hervou\\u00EBt", "in_reply_to_status_id": 146239468242866180, "in_reply_to_status_id_str": "146239468242866176"}, +{"created_at": "Mon, 19 Dec 2011 09:42:42 +0000", "from_user": "ajlopez", "from_user_id": 14567622, "from_user_id_str": "14567622", "from_user_name": "ajlopez", "geo": null, "id": 148699768644845570, "id_str": "148699768644845568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/53769404/spiral_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/53769404/spiral_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @NodeJsCommunity: History of #NodeJS -- http://t.co/8EDbgvdo \"v8 is a masterpiece of software\" ...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:42:16 +0000", "from_user": "flngr", "from_user_id": 14322017, "from_user_id_str": "14322017", "from_user_name": "Julian Bilcke", "geo": null, "id": 148699659836211200, "id_str": "148699659836211200", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1578423064/procession_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1578423064/procession_normal.jpg", "source": "<a href="http://gun.io/#" rel="nofollow">Harbbl</a>", "text": "RT @GUNdotIO: New Open Source gig: Neo4j Node.js adapter http://t.co/KfQtLCYh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:42:10 +0000", "from_user": "jdecool", "from_user_id": 19333570, "from_user_id_str": "19333570", "from_user_name": "J\\u00E9r\\u00E9my DECOOL", "geo": null, "id": 148699637132435460, "id_str": "148699637132435456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1318451058/jdecool_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1318451058/jdecool_normal.png", "source": "<a href="http://clocktweets.com/" rel="nofollow">ClockTweets</a>", "text": "The Switch: Python to Node.js : http://t.co/TBjrxzHh #nodejs #python", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:41:06 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148699369183514620, "id_str": "148699369183514624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @jbueza: History of #NodeJS -- http://t.co/JAzn3Uqz \"v8 is a masterpiece of software\" -- wow!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:41:05 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148699362296463360, "id_str": "148699362296463360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "History of #NodeJS -- http://t.co/pF55CNRK \"v8 is a masterpiece of software\" -- wow! http://t.co/VUVfD8H4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:40:34 +0000", "from_user": "florenceMAHON", "from_user_id": 83641731, "from_user_id_str": "83641731", "from_user_name": "Florence de Monaghan", "geo": null, "id": 148699233111904260, "id_str": "148699233111904256", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1045106590/soir_e_agence_i_e_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1045106590/soir_e_agence_i_e_7_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @AlainClapaud: #Microsoft baisse les prix d'Azure, augmente sa capacit\\u00E9 et l'ouvre \\u00E0 l'#OpenSource | arsTechnica http://t.co/6w5hLJbx (RT @dbmoore) #Cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:35:29 +0000", "from_user": "jbueza", "from_user_id": 141423083, "from_user_id_str": "141423083", "from_user_name": "Jaime Bueza", "geo": null, "id": 148697953601732600, "id_str": "148697953601732608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @dalmaer: CoreJS is a CoffeeSCript MVC framework for NodeJS for non-trivial apps http://t.co/z42wvabq /by Ernesto M\\u00E9ndez", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:34:39 +0000", "from_user": "Poetro", "from_user_id": 4543971, "from_user_id_str": "4543971", "from_user_name": "Peter Galiba", "geo": null, "id": 148697744830238720, "id_str": "148697744830238720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/18340052/9ef94af232b3ec6b66b67bcc1d4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/18340052/9ef94af232b3ec6b66b67bcc1d4_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@ryah: this looks pretty awesome http://t.co/TKuISAmc #nodejs\" #weblabor", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:31:28 +0000", "from_user": "juanjeojeda", "from_user_id": 12679112, "from_user_id_str": "12679112", "from_user_name": "Juanje Ojeda \\u2713", "geo": null, "id": 148696941298065400, "id_str": "148696941298065408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/46025702/juanje_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/46025702/juanje_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @dalmaer: CoreJS is a CoffeeSCript MVC framework for NodeJS for non-trivial apps http://t.co/z42wvabq /by Ernesto M\\u00E9ndez", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:30:10 +0000", "from_user": "sebarmeli", "from_user_id": 79990282, "from_user_id_str": "79990282", "from_user_name": "Sebastiano Armeli", "geo": null, "id": 148696616235307000, "id_str": "148696616235307008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1162091042/avatar_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1162091042/avatar_normal.PNG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:27:10 +0000", "from_user": "patxangas", "from_user_id": 2176291, "from_user_id_str": "2176291", "from_user_name": "karlos g liberal", "geo": null, "id": 148695862644715520, "id_str": "148695862644715520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1583024255/patxangas_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583024255/patxangas_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @dalmaer: CoreJS is a CoffeeSCript MVC framework for NodeJS for non-trivial apps http://t.co/z42wvabq /by Ernesto M\\u00E9ndez", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:25:18 +0000", "from_user": "peterneubauer", "from_user_id": 14721805, "from_user_id_str": "14721805", "from_user_name": "Peter Neubauer", "geo": null, "id": 148695392127684600, "id_str": "148695392127684608", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/348968437/MyPicture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/348968437/MyPicture_normal.jpg", "source": "<a href="http://gun.io/#" rel="nofollow">Harbbl</a>", "text": "RT @GUNdotIO: New Open Source gig: Neo4j Node.js adapter http://t.co/KfQtLCYh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:23:49 +0000", "from_user": "jbueza", "from_user_id": 141423083, "from_user_id_str": "141423083", "from_user_name": "Jaime Bueza", "geo": null, "id": 148695019782545400, "id_str": "148695019782545408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "wow.. Joyent has their own dhcp, ldap servers written in #NodeJS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:22:23 +0000", "from_user": "jbueza", "from_user_id": 141423083, "from_user_id_str": "141423083", "from_user_name": "Jaime Bueza", "geo": null, "id": 148694655289135100, "id_str": "148694655289135104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "History of #NodeJS -- http://t.co/JAzn3Uqz \"v8 is a masterpiece of software\" -- wow!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:20:03 +0000", "from_user": "jsgoodies", "from_user_id": 222057071, "from_user_id_str": "222057071", "from_user_name": "jsgoodies", "geo": null, "id": 148694067772002300, "id_str": "148694067772002304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1259896749/jsgd_paul_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1259896749/jsgd_paul_normal.png", "source": "<a href="http://js.gd" rel="nofollow">js.gd tweet queue</a>", "text": "Create a JS builder with node.js ; about structuring js: http://t.co/KeS9EIZQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:18:21 +0000", "from_user": "GUNdotIO", "from_user_id": 354131767, "from_user_id_str": "354131767", "from_user_name": "Gun.io", "geo": null, "id": 148693643685920770, "id_str": "148693643685920768", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1521172483/square_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1521172483/square_normal.png", "source": "<a href="http://gun.io/#" rel="nofollow">Harbbl</a>", "text": "New Open Source gig: Neo4j Node.js adapter http://t.co/KfQtLCYh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:18:00 +0000", "from_user": "PabloSerbo", "from_user_id": 19900957, "from_user_id_str": "19900957", "from_user_name": "Paul Serby", "geo": null, "id": 148693555567800320, "id_str": "148693555567800320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/889739570/Buddy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/889739570/Buddy_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Ensure that long live assets (css,js,png etc) don't get stuck in your users browser/proxy with versionator https://t.co/RCRGe8os #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:17:57 +0000", "from_user": "CouchDB", "from_user_id": 14181317, "from_user_id_str": "14181317", "from_user_name": "CouchDB", "geo": null, "id": 148693542028578800, "id_str": "148693542028578816", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/51904457/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/51904457/logo_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Samisdat: Der Server l\\u00E4uft mit @Nodejs Daten speichern in @CouchDB und http://t.co/7KzDdmZH \\u00FCbernimmt die Session. Sch\\u00F6ner Code ohne PHP ;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:14:12 +0000", "from_user": "morteza_milani", "from_user_id": 166104316, "from_user_id_str": "166104316", "from_user_name": "Morteza Milani", "geo": null, "id": 148692599430062080, "id_str": "148692599430062080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681214380/me2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681214380/me2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Technology behind Rackspace Cloud Monitoring / The Switch: Python to Node.js #python #nodejs - http://t.co/mxk... http://t.co/Acq15jEh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:10:02 +0000", "from_user": "chrisayegh", "from_user_id": 378500613, "from_user_id_str": "378500613", "from_user_name": "christian sayegh", "geo": null, "id": 148691550849863680, "id_str": "148691550849863680", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1572522060/Portrait_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572522060/Portrait_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#Microsoft baisse les prix d'Azure, augmente sa capacit\\u00E9 et l'ouvre \\u00E0 l'#OpenSource | arsTechnica dlvr.it/10svMq (RT @AlainClapaud) #Cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:10:00 +0000", "from_user": "tweettrailbot1", "from_user_id": 197244919, "from_user_id_str": "197244919", "from_user_name": "Tweet Trail Announce", "geo": null, "id": 148691541676929020, "id_str": "148691541676929024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1134778998/ttlogo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1134778998/ttlogo_normal.png", "source": "<a href="http://www.tweettrail.com" rel="nofollow">Tweet Traill</a>", "text": "Check out who is tweeting about: ' nodejs ', here: http://t.co/D3Bwzmxm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:09:30 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148691415214460930, "id_str": "148691415214460928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @jedisct1: CoreJS \\u2014 A web framework in #coffeescript for #nodejs: http://t.co/yBB46F4K", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:09:28 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148691408474214400, "id_str": "148691408474214400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "CoreJS \\u2014 A web framework in #coffeescript for #nodejs: http://t.co/S5wavnK4 http://t.co/QLiSYOW6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:09:14 +0000", "from_user": "teerapapc", "from_user_id": 9738432, "from_user_id_str": "9738432", "from_user_name": "teerapapc", "geo": null, "id": 148691348382425100, "id_str": "148691348382425088", "iso_language_code": "th", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1422140477/vlcsnap75815ns2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1422140477/vlcsnap75815ns2_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "\\u0E1E\\u0E36\\u0E48\\u0E07\\u0E40\\u0E2B\\u0E47\\u0E19\\u0E40\\u0E27\\u0E47\\u0E1A nodejs \\u0E41\\u0E1A\\u0E1A\\u0E43\\u0E2B\\u0E21\\u0E48 \\u0E07\\u0E07\\u0E44\\u0E1B\\u0E0A\\u0E31\\u0E48\\u0E27\\u0E02\\u0E13\\u0E30", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:06:00 +0000", "from_user": "NodeJSAtSO", "from_user_id": 292124941, "from_user_id_str": "292124941", "from_user_name": "Node JS @ SO", "geo": null, "id": 148690533496274940, "id_str": "148690533496274944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1336740490/sprites_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1336740490/sprites_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Integrating NodeJS Realtime with existing PHP Application http://t.co/ZjoF6bO8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:05:16 +0000", "from_user": "ajlopez", "from_user_id": 14567622, "from_user_id_str": "14567622", "from_user_name": "ajlopez", "geo": null, "id": 148690348108029950, "id_str": "148690348108029953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/53769404/spiral_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/53769404/spiral_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @jedisct1: CoreJS \\u2014 A web framework in #coffeescript for #nodejs: http://t.co/yBB46F4K", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:04:22 +0000", "from_user": "olivierb", "from_user_id": 8403242, "from_user_id_str": "8403242", "from_user_name": "Olivier BONNAURE", "geo": null, "id": 148690124992024580, "id_str": "148690124992024576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/385824749/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/385824749/twitterProfilePhoto_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:04:00 +0000", "from_user": "jedisct1", "from_user_id": 17396038, "from_user_id_str": "17396038", "from_user_name": "Frank Denis", "geo": null, "id": 148690029009571840, "id_str": "148690029009571840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/64543895/cv_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/64543895/cv_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "CoreJS \\u2014 A web framework in #coffeescript for #nodejs: http://t.co/yBB46F4K", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:58:10 +0000", "from_user": "ryudaewan", "from_user_id": 137330047, "from_user_id_str": "137330047", "from_user_name": "\\uB958\\uB300\\uC644", "geo": null, "id": 148688562672504830, "id_str": "148688562672504832", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1181587855/41663_100001482856255_5703_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1181587855/41663_100001482856255_5703_q_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @parkto: \"\\uAF2D \\uC54C\\uC544\\uC57C\\uD560 node.js\" \\uBC88\\uC5ED \\uB9C1\\uD06C : http://t.co/yBlFH0ST @hyungjoo_ \\uB2D8 \\uBC88\\uC5ED.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:57:30 +0000", "from_user": "stackfeed", "from_user_id": 237310237, "from_user_id_str": "237310237", "from_user_name": "StackOverflow", "geo": null, "id": 148688393562365950, "id_str": "148688393562365953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Integrating NodeJS Realtime with existing PHP Application: I have an existing PHP app running on Apache server.\\n... http://t.co/XJtnytTp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:57:01 +0000", "from_user": "etribz", "from_user_id": 171813308, "from_user_id_str": "171813308", "from_user_name": "Etribz ", "geo": null, "id": 148688274536411140, "id_str": "148688274536411136", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1090105637/unhappy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1090105637/unhappy_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @sdouche: SockJS benchmarks #js #nodejs #python #pypy - http://t.co/JZxLjuwP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:44:37 +0000", "from_user": "GustavoRiveraMX", "from_user_id": 414259400, "from_user_id_str": "414259400", "from_user_name": "Gustavo Rivera Cruz", "geo": null, "id": 148685152485244930, "id_str": "148685152485244928", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1647489149/pic_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647489149/pic_normal.png", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "Hay talento, tecnolog\\u00EDa tambi\\u00E9n. #2012 a impulsar nuestra oferta de gaming apps, explotar #Flash en #mobile y #NodeJS v\\u00EDa web. #ComoDebeSer", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:33:09 +0000", "from_user": "WorkBandits", "from_user_id": 372201611, "from_user_id_str": "372201611", "from_user_name": "Work Bandits", "geo": null, "id": 148682265084432400, "id_str": "148682265084432384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680516821/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680516821/logo_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Azure price cuts, bigger databases, now with node.js and MongoDB support, Hadoop on its way http://t.co/VPydCcdb via @arstechnica", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:32:02 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 148681986112888830, "id_str": "148681986112888832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @substack: I like turtles: http://t.co/uoswx4E5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:30:25 +0000", "from_user": "AlainClapaud", "from_user_id": 18830245, "from_user_id_str": "18830245", "from_user_name": "Alain Clapaud", "geo": null, "id": 148681577214394370, "id_str": "148681577214394368", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1188582378/Ma-Caricature-Carr_e_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1188582378/Ma-Caricature-Carr_e_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#Microsoft baisse les prix d'Azure, augmente sa capacit\\u00E9 et l'ouvre \\u00E0 l'#OpenSource | arsTechnica http://t.co/6w5hLJbx (RT @dbmoore) #Cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:28:22 +0000", "from_user": "ZenikaIT", "from_user_id": 77093727, "from_user_id_str": "77093727", "from_user_name": "Zenika", "geo": null, "id": 148681062506168320, "id_str": "148681062506168320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/434625740/logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/434625740/logo_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @NodeJsCommunity: Nice Blog post, see here ---> A Full Javascript Architecture, Part One - NodeJS - @ZenikaIT - http://t.co/6KmcyhVB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:27:57 +0000", "from_user": "hiroyukim", "from_user_id": 4114621, "from_user_id_str": "4114621", "from_user_name": "hiroyukim", "geo": null, "id": 148680958143500300, "id_str": "148680958143500288", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/94649304/neko_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/94649304/neko_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "[nodejs] what is your favorite JS editor?\\u3000\\u3068\\u3044\\u3046\\u9762\\u767D\\u3044\\u8CEA\\u554F\\u304C(\\u30FD'\\u03C9`)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:26:49 +0000", "from_user": "peterwooley", "from_user_id": 766612, "from_user_id_str": "766612", "from_user_name": "Peter Wooley", "geo": null, "id": 148680671848701950, "id_str": "148680671848701952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1352667885/pwooley-256px_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1352667885/pwooley-256px_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @dalmaer: CoreJS is a CoffeeSCript MVC framework for NodeJS for non-trivial apps http://t.co/z42wvabq /by Ernesto M\\u00E9ndez", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:23:36 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148679862952013820, "id_str": "148679862952013824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @thomasf ryah: this looks pretty awesome http://t.co/nwJd4b2l #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:23:36 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148679861823733760, "id_str": "148679861823733760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @functionsource substack: I like turtles: http://t.co/48pml9ZF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:23:35 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148679860594810880, "id_str": "148679860594810881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @tobiassailer A beautiful marriage: MongoDB and node.js http://t.co/U1d5sANG \\nGood Talk , thanks @chrisricca", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:13:06 +0000", "from_user": "thomasf", "from_user_id": 15242522, "from_user_id_str": "15242522", "from_user_name": "Fritz Thomas", "geo": null, "id": 148677220871843840, "id_str": "148677220871843842", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/56438285/Cow-Avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/56438285/Cow-Avatar_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:12:07 +0000", "from_user": "functionsource", "from_user_id": 279275657, "from_user_id_str": "279275657", "from_user_name": "FunctionSource", "geo": null, "id": 148676973458243600, "id_str": "148676973458243584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1306206357/Screen_shot_2011-03-31_at_Mar_31___11.15.50_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1306206357/Screen_shot_2011-03-31_at_Mar_31___11.15.50_AM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @substack: I like turtles: http://t.co/uoswx4E5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:12:04 +0000", "from_user": "tobiassailer", "from_user_id": 80114907, "from_user_id_str": "80114907", "from_user_name": "tobias", "geo": null, "id": 148676962292998140, "id_str": "148676962292998144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1346694003/kuddl_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1346694003/kuddl_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "A beautiful marriage: MongoDB and node.js http://t.co/gYMTnHwk \\nGood Talk , thanks @chrisricca", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:09:21 +0000", "from_user": "dezoy", "from_user_id": 123176965, "from_user_id_str": "123176965", "from_user_name": "Anton Shestak", "geo": null, "id": 148676276285227000, "id_str": "148676276285227008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.friend.ly" rel="nofollow">friend.ly</a>", "text": "My #7faves on Twitter are @engadget @tjholowaychuk @felixge @nodejitsu @Kifozavr @nodejs @creationix -> http://t.co/pfoUNhvY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:08:43 +0000", "from_user": "trufae", "from_user_id": 15364094, "from_user_id_str": "15364094", "from_user_name": "pancake", "geo": null, "id": 148676117035880450, "id_str": "148676117035880448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1291415517/abdadcat_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1291415517/abdadcat_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: NodObjC (0.0.9): http://t.co/5hNDELCv The NodeJS \\u21C6 Objective-C bridge http://t.co/gAideF7w", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:07:06 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148675711748673540, "id_str": "148675711748673537", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @ktanimur: I want this!! \"Node.js, Now As A Snazzy Shirt\" http://t.co/fMSq18T4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:07:04 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148675704572223500, "id_str": "148675704572223488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "I want this!! \"Node.js, Now As A Snazzy Shirt\" http://t.co/I5rL8wKP http://t.co/KmhBn9qW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:06:40 +0000", "from_user": "kinglion75", "from_user_id": 12133302, "from_user_id_str": "12133302", "from_user_name": "Alessio Giorgini", "geo": null, "id": 148675602998763520, "id_str": "148675602998763520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/51751267/alessio1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/51751267/alessio1_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:04:04 +0000", "from_user": "iasen_87", "from_user_id": 250133790, "from_user_id_str": "250133790", "from_user_name": "Yasen", "geo": null, "id": 148674948167241730, "id_str": "148674948167241728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1241169620/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1241169620/me_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @dalmaer: CoreJS is a CoffeeSCript MVC framework for NodeJS for non-trivial apps http://t.co/z42wvabq /by Ernesto M\\u00E9ndez", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:03:03 +0000", "from_user": "AtuDesign", "from_user_id": 47754498, "from_user_id_str": "47754498", "from_user_name": "Itey Arthur", "geo": null, "id": 148674690985103360, "id_str": "148674690985103360", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1610656094/jpeg_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610656094/jpeg_normal.jpeg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "Le blues des frameworks MVC #node.js http://t.co/I1YhyWSz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:00:13 +0000", "from_user": "parkto", "from_user_id": 30360576, "from_user_id_str": "30360576", "from_user_name": "\\uBC15\\uD0DC\\uC6C5", "geo": null, "id": 148673980730064900, "id_str": "148673980730064896", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/248967176/P090529004_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/248967176/P090529004_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\"\\uAF2D \\uC54C\\uC544\\uC57C\\uD560 node.js\" \\uBC88\\uC5ED \\uB9C1\\uD06C : http://t.co/yBlFH0ST @hyungjoo_ \\uB2D8 \\uBC88\\uC5ED.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:00:12 +0000", "from_user": "jongkwang", "from_user_id": 127463938, "from_user_id_str": "127463938", "from_user_name": "\\uAE40\\uC885\\uAD11(\\uAEBD\\uB2EC\\uC774)", "geo": null, "id": 148673976355401730, "id_str": "148673976355401728", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1342674015/____320x320_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1342674015/____320x320_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @parkto: \\uB9C1\\uD06C\\uAC00 \\uAE68\\uC838\\uC11C \\uB2E4\\uC2DC @hyungjoo_ @pkrumins\\uAC00 \\uC791\\uC131\\uD55C \"\\uAF2D \\uC54C\\uC544\\uC57C\\uD55C node.js \\uBAA8\\uB4C8\" \\uC5F0\\uC7AC \\uBC88\\uC5ED. \\uD604\\uC7AC \\uCD1D 10\\uAC1C\\uC758 \\uAC8C\\uC2DC\\uBB3C\\uC911 7\\uAC1C\\uB97C \\uBC88\\uC5ED\\uD588\\uC2B5\\uB2C8\\uB2E4. \\uAD00\\uC2EC\\uC788\\uC73C\\uC2E0 \\uBD84\\uB4E4\\uC740 \\uC81C \\uBE14\\uB85C\\uADF8(nodejs-kr.org/insidejs)\\uC5D0 \\uBC29\\uBB38\\uD574\\uC8FC\\uC138\\uC694.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:00:02 +0000", "from_user": "heaven_sweetie", "from_user_id": 127223601, "from_user_id_str": "127223601", "from_user_name": "Heaven_\\uC120\\uC7AC", "geo": null, "id": 148673934085201920, "id_str": "148673934085201920", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1362071260/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1362071260/image_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @parkto: \\uB9C1\\uD06C\\uAC00 \\uAE68\\uC838\\uC11C \\uB2E4\\uC2DC @hyungjoo_ @pkrumins\\uAC00 \\uC791\\uC131\\uD55C \"\\uAF2D \\uC54C\\uC544\\uC57C\\uD55C node.js \\uBAA8\\uB4C8\" \\uC5F0\\uC7AC \\uBC88\\uC5ED. \\uD604\\uC7AC \\uCD1D 10\\uAC1C\\uC758 \\uAC8C\\uC2DC\\uBB3C\\uC911 7\\uAC1C\\uB97C \\uBC88\\uC5ED\\uD588\\uC2B5\\uB2C8\\uB2E4. \\uAD00\\uC2EC\\uC788\\uC73C\\uC2E0 \\uBD84\\uB4E4\\uC740 \\uC81C \\uBE14\\uB85C\\uADF8(nodejs-kr.org/insidejs)\\uC5D0 \\uBC29\\uBB38\\uD574\\uC8FC\\uC138\\uC694.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:59:01 +0000", "from_user": "parkto", "from_user_id": 30360576, "from_user_id_str": "30360576", "from_user_name": "\\uBC15\\uD0DC\\uC6C5", "geo": null, "id": 148673678601748480, "id_str": "148673678601748480", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/248967176/P090529004_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/248967176/P090529004_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\\uB9C1\\uD06C\\uAC00 \\uAE68\\uC838\\uC11C \\uB2E4\\uC2DC @hyungjoo_ @pkrumins\\uAC00 \\uC791\\uC131\\uD55C \"\\uAF2D \\uC54C\\uC544\\uC57C\\uD55C node.js \\uBAA8\\uB4C8\" \\uC5F0\\uC7AC \\uBC88\\uC5ED. \\uD604\\uC7AC \\uCD1D 10\\uAC1C\\uC758 \\uAC8C\\uC2DC\\uBB3C\\uC911 7\\uAC1C\\uB97C \\uBC88\\uC5ED\\uD588\\uC2B5\\uB2C8\\uB2E4. \\uAD00\\uC2EC\\uC788\\uC73C\\uC2E0 \\uBD84\\uB4E4\\uC740 \\uC81C \\uBE14\\uB85C\\uADF8(nodejs-kr.org/insidejs)\\uC5D0 \\uBC29\\uBB38\\uD574\\uC8FC\\uC138\\uC694.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:56:40 +0000", "from_user": "parkto", "from_user_id": 30360576, "from_user_id_str": "30360576", "from_user_name": "\\uBC15\\uD0DC\\uC6C5", "geo": null, "id": 148673084608618500, "id_str": "148673084608618496", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/248967176/P090529004_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/248967176/P090529004_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\\uD544\\uB3C5! RT @hyungjoo_: @pkrumins\\uAC00 \\uC791\\uC131\\uD55C \"\\uAF2D \\uC54C\\uC544\\uC57C\\uD55C node.js \\uBAA8\\uB4C8\" \\uC5F0\\uC7AC\\uB97C \\uBC88\\uC5ED\\uD558\\uACE0 \\uC788\\uC2B5\\uB2C8\\uB2E4. \\uD604\\uC7AC \\uCD1D 10\\uAC1C\\uC758 \\uAC8C\\uC2DC\\uBB3C\\uC911 7\\uAC1C\\uB97C \\uBC88\\uC5ED\\uD588\\uC2B5\\uB2C8\\uB2E4. \\uAD00\\uC2EC\\uC788\\uC73C\\uC2E0 \\uBD84\\uB4E4\\uC740 \\uC81C \\uBE14\\uB85C\\uADF8(http://t.co/ONIhS1Fs \\uBC29\\uBB38\\uD574\\uC8FC\\uC138\\uC694.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:50:23 +0000", "from_user": "twtomcat", "from_user_id": 83567168, "from_user_id_str": "83567168", "from_user_name": "Markus Leutwyler", "geo": null, "id": 148671503024660480, "id_str": "148671503024660480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693567535/4e4fa7fb-a4f8-4c6e-acb6-bf60fb42fc59_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693567535/4e4fa7fb-a4f8-4c6e-acb6-bf60fb42fc59_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @dalmaer: CoreJS is a CoffeeSCript MVC framework for NodeJS for non-trivial apps http://t.co/z42wvabq /by Ernesto M\\u00E9ndez", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:49:58 +0000", "from_user": "phynx17", "from_user_id": 50295771, "from_user_id_str": "50295771", "from_user_name": "Pandu Pradhana", "geo": null, "id": 148671400314552320, "id_str": "148671400314552320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1092511187/gw_lagi_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1092511187/gw_lagi_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:49:05 +0000", "from_user": "ErikRalston", "from_user_id": 317608274, "from_user_id_str": "317608274", "from_user_name": "Erik Ralston", "geo": null, "id": 148671178758823940, "id_str": "148671178758823937", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1397346873/226488_855831674573_27224672_41972385_7661480_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1397346873/226488_855831674573_27224672_41972385_7661480_n_normal.jpg", "source": "<a href="http://timely.is" rel="nofollow">Timely by Demandforce</a>", "text": "Sequelize \\u00BB A MySQL Object-Relational-Mapper for NodeJS http://t.co/xaYiyO58", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:41:41 +0000", "from_user": "indutny", "from_user_id": 92915570, "from_user_id_str": "92915570", "from_user_name": "Fedor Indutny", "geo": null, "id": 148669317058277380, "id_str": "148669317058277376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1342629236/e474c72a97af94dd27feb53be98ceab9_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1342629236/e474c72a97af94dd27feb53be98ceab9_normal.jpeg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:41:27 +0000", "from_user": "Zhang_Tianjin", "from_user_id": 14543059, "from_user_id_str": "14543059", "from_user_name": "Zhang Tianjin", "geo": null, "id": 148669254269550600, "id_str": "148669254269550593", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/956146231/PICT0011_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/956146231/PICT0011_normal.JPG", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @dalmaer: CoreJS is a CoffeeSCript MVC framework for NodeJS for non-trivial apps http://t.co/z42wvabq /by Ernesto M\\u00E9ndez", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:40:16 +0000", "from_user": "gothy", "from_user_id": 9680152, "from_user_id_str": "9680152", "from_user_name": "Dmitry Utkin", "geo": null, "id": 148668959485460480, "id_str": "148668959485460480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1421882566/Photo_on_2011-06-30_at_16.21_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1421882566/Photo_on_2011-06-30_at_16.21_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:29:10 +0000", "from_user": "okiess", "from_user_id": 24673, "from_user_id_str": "24673", "from_user_name": "Oliver Kiessler", "geo": null, "id": 148666165856698370, "id_str": "148666165856698368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/15228652/oli128_128_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/15228652/oli128_128_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @dalmaer: CoreJS is a CoffeeSCript MVC framework for NodeJS for non-trivial apps http://t.co/z42wvabq /by Ernesto M\\u00E9ndez", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:28:57 +0000", "from_user": "NetRoY", "from_user_id": 14138576, "from_user_id_str": "14138576", "from_user_name": "Aditya", "geo": null, "id": 148666111561433100, "id_str": "148666111561433089", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1593448068/jsfoo-me-bg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593448068/jsfoo-me-bg_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT: this looks pretty awesome http://t.co/kCoCMOxC #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:27:31 +0000", "from_user": "TopDevTweets", "from_user_id": 194520782, "from_user_id_str": "194520782", "from_user_name": "TopDevTweets", "geo": null, "id": 148665750280863740, "id_str": "148665750280863744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @dalmaer: CoreJS is a CoffeeSCript MVC framework for NodeJS for non-trivial apps http://t.co/z42wvabq /by Ernesto M\\u00E9ndez", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:24:34 +0000", "from_user": "maeseele", "from_user_id": 285667190, "from_user_id_str": "285667190", "from_user_name": "Peter Maeseele", "geo": null, "id": 148665008925048830, "id_str": "148665008925048833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1475112025/nice_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1475112025/nice_avatar_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @dalmaer: CoreJS is a CoffeeSCript MVC framework for NodeJS for non-trivial apps http://t.co/z42wvabq /by Ernesto M\\u00E9ndez", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:23:53 +0000", "from_user": "CodeBeard", "from_user_id": 21902920, "from_user_id_str": "21902920", "from_user_name": "Philip David Harvey", "geo": null, "id": 148664836069392400, "id_str": "148664836069392384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/664719505/poccopom_twit_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/664719505/poccopom_twit_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:23:43 +0000", "from_user": "genedna", "from_user_id": 14146361, "from_user_id_str": "14146361", "from_user_name": "Meaglith Ma", "geo": null, "id": 148664794168295420, "id_str": "148664794168295424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1441913445/icon_512_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1441913445/icon_512_normal.png", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @dalmaer: CoreJS is a CoffeeSCript MVC framework for NodeJS for non-trivial apps http://t.co/186uyghd /by Ernesto M\\u00E9ndez", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:21:58 +0000", "from_user": "mwessendorf", "from_user_id": 12287422, "from_user_id_str": "12287422", "from_user_name": "Matthias Wessendorf", "geo": null, "id": 148664351954440200, "id_str": "148664351954440192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1644899733/mw80s_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644899733/mw80s_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @dalmaer: CoreJS is a CoffeeSCript MVC framework for NodeJS for non-trivial apps http://t.co/dpKsDqwQ /", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:20:59 +0000", "from_user": "yamafaktory", "from_user_id": 21648720, "from_user_id_str": "21648720", "from_user_name": "Davy Duperron", "geo": null, "id": 148664106600239100, "id_str": "148664106600239104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700633331/P1010882_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700633331/P1010882_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/0edrDxOj #nodejs #coffeescript #mvc #trending", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:17:15 +0000", "from_user": "xydudu", "from_user_id": 14928756, "from_user_id_str": "14928756", "from_user_name": "\\u6BD2\\u6BD2", "geo": null, "id": 148663166824480770, "id_str": "148663166824480768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1257448138/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1257448138/avatar_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @dalmaer: CoreJS is a CoffeeSCript MVC framework for NodeJS for non-trivial apps http://t.co/z42wvabq /by Ernesto M\\u00E9ndez", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 07:15:29 +0000", "from_user": "ktanimur", "from_user_id": 135591363, "from_user_id_str": "135591363", "from_user_name": "Kazuyuki Tanimura", "geo": null, "id": 148662720479248400, "id_str": "148662720479248384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1298160761/designo64new4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1298160761/designo64new4_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "I want this!! \"Node.js, Now As A Snazzy Shirt\" http://t.co/fMSq18T4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:15:17 +0000", "from_user": "kubid", "from_user_id": 71208590, "from_user_id_str": "71208590", "from_user_name": "\\uF8FF Rifki Fauzi, S.T. ", "geo": null, "id": 148662671099691000, "id_str": "148662671099691008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662453821/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662453821/avatar_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @dalmaer: CoreJS is a CoffeeSCript MVC framework for NodeJS for non-trivial apps http://t.co/z42wvabq /by Ernesto M\\u00E9ndez", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:14:27 +0000", "from_user": "dalmaer", "from_user_id": 4216361, "from_user_id_str": "4216361", "from_user_name": "Dion Almaer", "geo": null, "id": 148662460239454200, "id_str": "148662460239454208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/292949152/dionprofile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/292949152/dionprofile_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "CoreJS is a CoffeeSCript MVC framework for NodeJS for non-trivial apps http://t.co/z42wvabq /by Ernesto M\\u00E9ndez", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:12:56 +0000", "from_user": "derdesign", "from_user_id": 69168314, "from_user_id_str": "69168314", "from_user_name": "Ernesto M\\u00E9ndez", "geo": null, "id": 148662081221177340, "id_str": "148662081221177344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1346443112/avatar_v5.0_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1346443112/avatar_v5.0_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:10:25 +0000", "from_user": "leftieFriele", "from_user_id": 5936042, "from_user_id_str": "5936042", "from_user_name": "espen", "geo": null, "id": 148661445519880200, "id_str": "148661445519880192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685539791/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685539791/image_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:09:18 +0000", "from_user": "kristianlunde", "from_user_id": 15949665, "from_user_id_str": "15949665", "from_user_name": "Kristian Lunde", "geo": null, "id": 148661166955180030, "id_str": "148661166955180032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1413726711/kristian_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1413726711/kristian_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @AnthonySterling: \"Node.js - First Impressions\" - http://t.co/vLfp7I77 /by @wezfurlong #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:06:33 +0000", "from_user": "atsuya", "from_user_id": 7483262, "from_user_id_str": "7483262", "from_user_name": "Atsuya Takagi", "geo": null, "id": 148660474303610880, "id_str": "148660474303610880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1644873867/atsuya_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644873867/atsuya_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "MVC Web Application Framework for NodeJS written in CoffeeScript http://t.co/YdPqrJ4x", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:06:26 +0000", "from_user": "atsuya", "from_user_id": 7483262, "from_user_id_str": "7483262", "from_user_name": "Atsuya Takagi", "geo": null, "id": 148660442376568830, "id_str": "148660442376568833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1644873867/atsuya_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644873867/atsuya_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:05:52 +0000", "from_user": "krzychukula", "from_user_id": 34560280, "from_user_id_str": "34560280", "from_user_name": "Krzysztof Kula", "geo": null, "id": 148660299967381500, "id_str": "148660299967381504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/834804836/krzychukula_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/834804836/krzychukula_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:04:49 +0000", "from_user": "cvillu", "from_user_id": 16542050, "from_user_id_str": "16542050", "from_user_name": "cvillu", "geo": null, "id": 148660036309233660, "id_str": "148660036309233664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/402750441/FERIA_MALAGA_08_224_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/402750441/FERIA_MALAGA_08_224_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tjholowaychuk: messing around with an open-source website screenshot app powered by #nodejs, phantomjs, redis, etc - http://t.co/t9RD674A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:04:48 +0000", "from_user": "kelvw", "from_user_id": 96323946, "from_user_id_str": "96323946", "from_user_name": "Kelvin", "geo": null, "id": 148660033645838340, "id_str": "148660033645838336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/570981776/square-128-opacity50_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/570981776/square-128-opacity50_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @bencrox: Just after a skim I am liking this ... RT @ryah: this looks pretty awesome http://t.co/MK2vpwYd #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:04:39 +0000", "from_user": "bencrox", "from_user_id": 1206561, "from_user_id_str": "1206561", "from_user_name": "\\u674E\\u5B78\\u658C / lxb / \\u0627\\u0628\\u0646 \\u0627\\u0644\\u0633\\u0628", "geo": null, "id": 148659993346973700, "id_str": "148659993346973696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1002055716/superv6_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1002055716/superv6_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Just after a skim I am liking this ... RT @ryah: this looks pretty awesome http://t.co/MK2vpwYd #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:04:37 +0000", "from_user": "mdevraj", "from_user_id": 15340674, "from_user_id_str": "15340674", "from_user_name": "Devraj Mukherjee", "geo": null, "id": 148659987600785400, "id_str": "148659987600785408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1684596285/DevrajAvatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684596285/DevrajAvatar_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:04:33 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148659968239865860, "id_str": "148659968239865856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:04:31 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148659961189236740, "id_str": "148659961189236736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "this looks pretty awesome http://t.co/NIXAuAYN #nodejs http://t.co/6pZzVkCr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:03:28 +0000", "from_user": "andreapontiggia", "from_user_id": 108931050, "from_user_id_str": "108931050", "from_user_name": "andrea pontiggia", "geo": null, "id": 148659699368214530, "id_str": "148659699368214528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/756142822/color_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/756142822/color_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Microsoft announced support for Node in Azure cloud platform. via node blog - http://t.co/Y04Je9PG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:02:23 +0000", "from_user": "ryah", "from_user_id": 18975861, "from_user_id_str": "18975861", "from_user_name": "Ryan Dahl", "geo": null, "id": 148659426897825800, "id_str": "148659426897825792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1634041610/name_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634041610/name_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "this looks pretty awesome http://t.co/mnZVN1EM #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:50:52 +0000", "from_user": "NetRoY", "from_user_id": 14138576, "from_user_id_str": "14138576", "from_user_name": "Aditya", "geo": null, "id": 148656525089579000, "id_str": "148656525089579008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1593448068/jsfoo-me-bg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593448068/jsfoo-me-bg_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Technology behind Rackspace Cloud Monitoring http://t.co/CEJs9kOe and why they switched from Python to NodeJS ht... http://t.co/UfUMLCzs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:50:35 +0000", "from_user": "goddyzhao", "from_user_id": 87882163, "from_user_id_str": "87882163", "from_user_name": "goddyzhao", "geo": null, "id": 148656455552208900, "id_str": "148656455552208896", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/622421804/zhaojingAvatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/622421804/zhaojingAvatar_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\\u6211\\u9876\\uFF0C\\u5982\\u679C\\u80FD\\u628A\\u5185\\u90E8\\u5B9E\\u73B0\\u7684\\u5177\\u4F53\\u533A\\u522B\\u6765\\u628A\\u8BBA\\u8BC1\\u5C31\\u597D\\u4E86\\uFF0C\\u8BA9\\u6211\\u770B\\u5230QJ\\u7684\\u8FC7\\u7A0B\\uFF0C\\u6211\\u6700\\u559C\\u6B22\\u8FD9\\u79CD\\u4E86 RT \"@fengmk2: exec\\u4E0Espawn\\u65B9\\u6CD5\\u7684\\u533A\\u522B\\u4E0E\\u9677\\u9631 _ Dead_horse http://t.co/x3Stdn0V #nodejs http://t.co/SwQZnpwx\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:44:29 +0000", "from_user": "AnthonySterling", "from_user_id": 21287694, "from_user_id_str": "21287694", "from_user_name": "Anthony Sterling", "geo": null, "id": 148654920818638850, "id_str": "148654920818638848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664008616/Dc_last_portraits_12-_10-000117-1tif_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664008616/Dc_last_portraits_12-_10-000117-1tif_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "\"Node.js - First Impressions\" - http://t.co/vLfp7I77 /by @wezfurlong #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:43:23 +0000", "from_user": "derdesign", "from_user_id": 69168314, "from_user_id_str": "69168314", "from_user_name": "Ernesto M\\u00E9ndez", "geo": null, "id": 148654645408038900, "id_str": "148654645408038912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1346443112/avatar_v5.0_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1346443112/avatar_v5.0_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "CoreJS - An MVC Web Application Framework for NodeJS http://t.co/HobzxkKX (Please RT)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:33:49 +0000", "from_user": "fengmk2", "from_user_id": 21738641, "from_user_id_str": "21738641", "from_user_name": "MK2", "geo": null, "id": 148652237881741300, "id_str": "148652237881741312", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/285484301/imk2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/285484301/imk2_normal.png", "source": "<a href="http://chrome.google.com/extensions/detail/aicelmgbddfgmpieedjiggifabdpcnln" rel="nofollow">FaWave</a>", "text": "exec\\u4E0Espawn\\u65B9\\u6CD5\\u7684\\u533A\\u522B\\u4E0E\\u9677\\u9631 _ Dead_horse http://t.co/Ltg2tg1p #nodejs http://t.co/j8bPylhU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:32:51 +0000", "from_user": "mehdiachour", "from_user_id": 85970960, "from_user_id_str": "85970960", "from_user_name": "Mehdi Achour", "geo": null, "id": 148651991256670200, "id_str": "148651991256670208", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700761105/ec8afc0392a7daa5d39835d0eb860d9e_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700761105/ec8afc0392a7daa5d39835d0eb860d9e_normal.jpeg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @wezfurlong: blogged: Node.js - First Impressions http://t.co/dzMFpkv9 #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:30:51 +0000", "from_user": "jsgeneve", "from_user_id": 404035068, "from_user_id_str": "404035068", "from_user_name": "Javascript Gen\\u00E8ve", "geo": null, "id": 148651491203362800, "id_str": "148651491203362816", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1620267028/twitter_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620267028/twitter_normal.gif", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "NodObjC (0.0.9): passerelle #NodeJS pour invoquer Objective-C en Javascript http://t.co/o10P7S9c", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:28:46 +0000", "from_user": "NodeJSAtSO", "from_user_id": 292124941, "from_user_id_str": "292124941", "from_user_name": "Node JS @ SO", "geo": null, "id": 148650965745139700, "id_str": "148650965745139712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1336740490/sprites_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1336740490/sprites_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "How I trigger the \"System Bell\" in nodejs http://t.co/MIWqtzEa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:17:18 +0000", "from_user": "stefounet", "from_user_id": 47931794, "from_user_id_str": "47931794", "from_user_name": "stephane rios", "geo": null, "id": 148648080349200400, "id_str": "148648080349200384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1218125494/11324a3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218125494/11324a3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tjholowaychuk: messing around with an open-source website screenshot app powered by #nodejs, phantomjs, redis, etc - http://t.co/t9RD674A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:12:37 +0000", "from_user": "moellenbeck", "from_user_id": 1936981, "from_user_id_str": "1936981", "from_user_name": "Martin M\\u00F6llenbeck", "geo": null, "id": 148646901397463040, "id_str": "148646901397463041", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/30569592/FlickrIcon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/30569592/FlickrIcon_normal.png", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "Nice module ;-) RT @andychilton: New module for #nodejs, some connect middleware ... not big but very useful : https://t.co/tAgWn66w", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:10:22 +0000", "from_user": "lorenzomassacci", "from_user_id": 663903, "from_user_id_str": "663903", "from_user_name": "Lorenzo Massacci", "geo": null, "id": 148646335644577800, "id_str": "148646335644577792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/46676082/mypictr_LinkedIn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/46676082/mypictr_LinkedIn_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Write your shell scripts in JavaScript, via Node.js http://t.co/SL5Msixg http://t.co/RXUA0xNq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:10:06 +0000", "from_user": "wPGnews", "from_user_id": 201365363, "from_user_id_str": "201365363", "from_user_name": "\\u308F\\u304B\\u3081\\u30CB\\u30E5\\u30FC\\u30B9\\uFF08\\u30D7\\u30ED\\u30B0\\u30E9\\u30DF\\u30F3\\u30B0\\uFF09", "geo": null, "id": 148646268212752400, "id_str": "148646268212752385", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1144557758/twiprogramming_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1144557758/twiprogramming_normal.gif", "source": "<a href="http://wakamenews.mydns.jp/programming.php" rel="nofollow">\\u308F\\u304B\\u3081\\u306B\\u3085\\u30FC\\u3059BOT\\uFF08Programming\\uFF09</a>", "text": "Node.js - Develop - Windows Azure http://t.co/7zWlSZdT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:05:08 +0000", "from_user": "hitzalg", "from_user_id": 130368767, "from_user_id_str": "130368767", "from_user_name": "\\u96C5", "geo": null, "id": 148645019291615230, "id_str": "148645019291615233", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "nodejs\\u3067\\u304A\\u4ED5\\u4E8B\\u3057\\u305F\\u3044\\u306A\\u3002\\u51FA\\u6765\\u308C\\u3070coffeescript\\u3067\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:02:22 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148644322382856200, "id_str": "148644322382856192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "RT @yamanetoshi: \\u201CNode.js, Now As A Snazzy Shirt\\u201D http://t.co/ZbPJLHsx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:02:21 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148644315026030600, "id_str": "148644315026030592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\u201CNode.js, Now As A Snazzy Shirt\\u201D http://t.co/TzjcQQXJ http://t.co/r3Og6kcE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:01:05 +0000", "from_user": "vesln", "from_user_id": 37680547, "from_user_id_str": "37680547", "from_user_name": "Veselin", "geo": null, "id": 148643996414124030, "id_str": "148643996414124033", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1634048495/avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634048495/avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Having real fun at work... You know what it is, node people :) #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:56:41 +0000", "from_user": "mizchi", "from_user_id": 14407731, "from_user_id_str": "14407731", "from_user_name": "\\u5F37\\u3044\\u3089\\u308C\\u3066\\u3044\\u308B\\u3093\\u3060\\u30C3\\uFF01", "geo": null, "id": 148642892230045700, "id_str": "148642892230045697", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1503077056/ss_2011-08-19_15.54.49_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1503077056/ss_2011-08-19_15.54.49_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "node.js\\u306E\\u4E80\\u304CV8\\u3063\\u3066\\u66F8\\u304B\\u308C\\u305F\\u30ED\\u30B1\\u30C3\\u30C8\\u80CC\\u8CA0\\u3063\\u3066\\u308B\\u30ED\\u30B4\\u3001\\u3055\\u3059\\u304C\\u306B\\u306A\\u3093\\u304B\\u9055\\u3046\\u3068\\u601D\\u3046 http://t.co/7aLE8Q2J", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:56:26 +0000", "from_user": "stackfeed", "from_user_id": 237310237, "from_user_id_str": "237310237", "from_user_name": "StackOverflow", "geo": null, "id": 148642828346605570, "id_str": "148642828346605568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "How I trigger the \"System Bell\" in nodejs: I'm running a long running custom nodejs script and would like to be ... http://t.co/isqo2XNE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:56:01 +0000", "from_user": "yamanetoshi", "from_user_id": 1081991, "from_user_id_str": "1081991", "from_user_name": "Yamane Toshiaki", "geo": null, "id": 148642723799367680, "id_str": "148642723799367681", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/54576135/glider_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/54576135/glider_normal.png", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "\\u201CNode.js, Now As A Snazzy Shirt\\u201D http://t.co/ZbPJLHsx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:31:43 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148636607631724540, "id_str": "148636607631724545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @sdouche: Technology behind Rackspace Cloud Monitoring / The Switch: Python to Node.js #python #nodejs - http://t.co/mxkJw4pK / http://t.co/AHATodsR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:31:41 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148636599347970050, "id_str": "148636599347970048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Technology behind Rackspace Cloud Monitoring / The Switch: Python to Node.js #python #nodejs - http://t.co/mxk... http://t.co/Acq15jEh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:28:36 +0000", "from_user": "outa7iME", "from_user_id": 64403059, "from_user_id_str": "64403059", "from_user_name": "outaTiME", "geo": null, "id": 148635824496451600, "id_str": "148635824496451584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1577438873/my.own.new_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1577438873/my.own.new_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: always (0.4.0): http://t.co/9LVs3arm CLI & Daemon tool to run a NodeJS process always, restarting on file change... http://t.co/DaVYTUVW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:28:23 +0000", "from_user": "cihan78", "from_user_id": 38511169, "from_user_id_str": "38511169", "from_user_name": "Cihan", "geo": null, "id": 148635769051947000, "id_str": "148635769051947008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1445222189/IMG_4262_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1445222189/IMG_4262_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @davidbgk: Technology behind Rackspace Cloud Monitoring http://t.co/paLVR6bZ and why they switched from Python to NodeJS http://t.co/WFqHI7x0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:25:59 +0000", "from_user": "BrackishLake", "from_user_id": 302234570, "from_user_id_str": "302234570", "from_user_name": "Chris@BrackishLake", "geo": null, "id": 148635163864207360, "id_str": "148635163864207360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1528769415/Untitled-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1528769415/Untitled-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Nodejs Shirts! http://t.co/I5rL8wKP http://t.co/6jLhzYnh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:24:36 +0000", "from_user": "sdouche", "from_user_id": 15830587, "from_user_id_str": "15830587", "from_user_name": "S\\u00E9bastien Douche", "geo": null, "id": 148634818735902720, "id_str": "148634818735902720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/64962323/sdouche_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/64962323/sdouche_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Technology behind Rackspace Cloud Monitoring / The Switch: Python to Node.js #python #nodejs - http://t.co/mxkJw4pK / http://t.co/AHATodsR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:24:10 +0000", "from_user": "wJSnews", "from_user_id": 250106399, "from_user_id_str": "250106399", "from_user_name": "\\u308F\\u304B\\u3081\\u306B\\u3085\\u30FC\\u3059\\uFF08Javascript\\uFF09", "geo": null, "id": 148634708954198000, "id_str": "148634708954198017", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1250694680/twijavascript_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1250694680/twijavascript_normal.gif", "source": "<a href="http://wakamenews.mydns.jp/programming.php" rel="nofollow">\\u308F\\u304B\\u3081\\u306B\\u3085\\u30FC\\u3059\\uFF08JS\\uFF09</a>", "text": "Node.js - Develop - Windows Azure http://t.co/Bnimrpm8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:22:03 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148634176210472960, "id_str": "148634176210472961", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @dadicool RESTeasy: Test any API with APIeasy http://t.co/0mPC2aaW -< with such a great ecosystem, #>em /em< is starting to feel...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:22:03 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148634175048646660, "id_str": "148634175048646656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @superstructor tomblobaum: node.js turtle t-shirt on sale at http://t.co/48pml9ZF for the next 48 hours http://t.co/vNWJr7N5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:22:03 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148634173870063600, "id_str": "148634173870063616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @pswar NodeJsCommunity: #nodejs #eclipse plugin with code assist - now we're talking: http://t.co/OvpbPLdO http://t.co/GHbE3ryo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:12:56 +0000", "from_user": "dadicool", "from_user_id": 14200949, "from_user_id_str": "14200949", "from_user_name": "Dali Kilani", "geo": null, "id": 148631880982470660, "id_str": "148631880982470656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/86577298/portrait_dali_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/86577298/portrait_dali_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "RESTeasy: Test any API with APIeasy http://t.co/XhMMayoW -> with such a great ecosystem, #nodejs is starting to feel unavoidable ...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:11:15 +0000", "from_user": "outa7iME", "from_user_id": 64403059, "from_user_id_str": "64403059", "from_user_name": "outaTiME", "geo": null, "id": 148631456200130560, "id_str": "148631456200130560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1577438873/my.own.new_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1577438873/my.own.new_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tjholowaychuk: uber-simple express 3.x-pre cookie session middleware https://t.co/d9AVDTZx (6 SLOC) #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:09:19 +0000", "from_user": "superstructor", "from_user_id": 209380936, "from_user_id_str": "209380936", "from_user_name": "Isaac Johnston", "geo": null, "id": 148630970885611520, "id_str": "148630970885611520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1435857282/isaac.johnston_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1435857282/isaac.johnston_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tomblobaum: node.js turtle t-shirt on sale at http://t.co/EsGzaTZR for the next 48 hours http://t.co/TUIYbqZQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:05:52 +0000", "from_user": "pswar", "from_user_id": 19135024, "from_user_id_str": "19135024", "from_user_name": "Sathish Pottavathini", "geo": null, "id": 148630101318303740, "id_str": "148630101318303746", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1415004691/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1415004691/image_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: #nodejs #eclipse plugin with code assist - now we're talking: http://t.co/6F2Zr1z2 http://t.co/arXCC8DT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:02:27 +0000", "from_user": "stevesandersonf", "from_user_id": 194307897, "from_user_id_str": "194307897", "from_user_name": "steve sanderson", "geo": null, "id": 148629241418891260, "id_str": "148629241418891265", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "A Node.js t-shirt http://t.co/ZJVnWkeG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:00:41 +0000", "from_user": "patrick232", "from_user_id": 27541440, "from_user_id_str": "27541440", "from_user_name": "patrick", "geo": null, "id": 148628797003022340, "id_str": "148628797003022338", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/707373883/qr_patrick_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/707373883/qr_patrick_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @substack: I like turtles: http://t.co/uoswx4E5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:58:50 +0000", "from_user": "mariorealm", "from_user_id": 12082152, "from_user_id_str": "12082152", "from_user_name": "Rafael Lopez", "geo": null, "id": 148628331548520450, "id_str": "148628331548520448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/297802767/gb_small_x_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/297802767/gb_small_x_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/ArjRN85g I want", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:57:58 +0000", "from_user": "obfuscurity", "from_user_id": 66432490, "from_user_id_str": "66432490", "from_user_name": "Jason Dixon", "geo": null, "id": 148628114153537540, "id_str": "148628114153537536", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1362856233/obfuscation_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1362856233/obfuscation_normal.jpeg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @wezfurlong: blogged: Node.js - First Impressions http://t.co/dzMFpkv9 #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:53:04 +0000", "from_user": "jibone", "from_user_id": 11623592, "from_user_id_str": "11623592", "from_user_name": "J Shamsul Bahri", "geo": null, "id": 148626880529047550, "id_str": "148626880529047553", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/610933151/avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/610933151/avatar_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "(o.O) RT @nodenpm: NodObjC (0.0.9): http://t.co/ySBVqrOK The NodeJS \\u21C6 Objective-C bridge", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:52:20 +0000", "from_user": "SubtleGradient", "from_user_id": 14405464, "from_user_id_str": "14405464", "from_user_name": "Thomas Aylott", "geo": null, "id": 148626695837069300, "id_str": "148626695837069312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/566657299/thomas-aylott-75_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/566657299/thomas-aylott-75_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @substack: I like turtles: http://t.co/uoswx4E5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:52:05 +0000", "from_user": "pinguxx", "from_user_id": 18173075, "from_user_id_str": "18173075", "from_user_name": "Ivan Torres", "geo": null, "id": 148626632016531460, "id_str": "148626632016531456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1245791573/50106_1239274592_4492_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1245791573/50106_1239274592_4492_q_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: NodObjC (0.0.9): http://t.co/5hNDELCv The NodeJS \\u21C6 Objective-C bridge http://t.co/gAideF7w", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:50:09 +0000", "from_user": "HNTweets", "from_user_id": 116276133, "from_user_id_str": "116276133", "from_user_name": "Hacker News", "geo": null, "id": 148626146496487420, "id_str": "148626146496487424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1369520630/HNTweets_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1369520630/HNTweets_normal.png", "source": "<a href="http://github.com/d4nt/HNTweets" rel="nofollow">HNTweets Bot</a>", "text": "A Node.js t-shirt: http://t.co/9QkM3ZUd Comments: http://t.co/r4CwYpJE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:48:31 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148625736129978370, "id_str": "148625736129978368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "RT @nodenpm: NodObjC (0.0.9): http://t.co/auSYB6KF The NodeJS \\u21C6 Objective-C bridge", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:48:29 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148625728643141630, "id_str": "148625728643141633", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NodObjC (0.0.9): http://t.co/5hNDELCv The NodeJS \\u21C6 Objective-C bridge http://t.co/gAideF7w", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:43:22 +0000", "from_user": "sbose78", "from_user_id": 190726716, "from_user_id_str": "190726716", "from_user_name": "Shoubhik Bose", "geo": null, "id": 148624441688076300, "id_str": "148624441688076289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1555136629/313678_10150287343724509_710069508_7509696_1574204_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555136629/313678_10150287343724509_710069508_7509696_1574204_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "How do I install the commandline tool for @cloudfoundry in Windows?\\nI'll be using @nodejs and #mongodb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:39:26 +0000", "from_user": "_PuffTheMagic_", "from_user_id": 82289924, "from_user_id_str": "82289924", "from_user_name": "Ryan Hope", "geo": null, "id": 148623448401391600, "id_str": "148623448401391616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668890565/IMG_3323_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668890565/IMG_3323_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "In the year two thoooooousaaaand! .... and twelve, WebKit and NodeJS will always be up to date on #webOS.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:34:52 +0000", "from_user": "huntoonfhzbri5", "from_user_id": 396190302, "from_user_id_str": "396190302", "from_user_name": "Huntoon Godwin", "geo": null, "id": 148622301653512200, "id_str": "148622301653512192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1601621166/imagesCA0Q7BZH_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601621166/imagesCA0Q7BZH_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Thatttt was fun. Just wrote my first prototype iphone app using nodeJS and socket.io.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:26:48 +0000", "from_user": "peterwooley", "from_user_id": 766612, "from_user_id_str": "766612", "from_user_name": "Peter Wooley", "geo": null, "id": 148620270255616000, "id_str": "148620270255616001", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1352667885/pwooley-256px_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1352667885/pwooley-256px_normal.png", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "I'd like this shirt very much. RT @substack: I like turtles: http://t.co/K4gTHTk1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:20:37 +0000", "from_user": "sebastibe", "from_user_id": 45152657, "from_user_id_str": "45152657", "from_user_name": "S\\u00E9bastien B\\u00E9al", "geo": null, "id": 148618713153810430, "id_str": "148618713153810433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1648440563/id_picture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648440563/id_picture_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @davidbgk: Technology behind Rackspace Cloud Monitoring http://t.co/paLVR6bZ and why they switched from Python to NodeJS http://t.co/WFqHI7x0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:20:20 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 148618641729011700, "id_str": "148618641729011713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "NodObjC (0.0.9): http://t.co/auSYB6KF The NodeJS \\u21C6 Objective-C bridge", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:12:15 +0000", "from_user": "mongodb_news", "from_user_id": 218710958, "from_user_id_str": "218710958", "from_user_name": "MongoDb", "geo": null, "id": 148616608863100930, "id_str": "148616608863100928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1173473945/imgres-1_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1173473945/imgres-1_normal.jpeg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @mtw: #hackmtl gathers 72 developers hacking on nodejs, redis and mongodb http://t.co/Fa3c4hxV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:06:06 +0000", "from_user": "jdslatts", "from_user_id": 14861727, "from_user_id_str": "14861727", "from_user_name": "Justin Slattery", "geo": null, "id": 148615062674878460, "id_str": "148615062674878466", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627622413/IMG_9312_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627622413/IMG_9312_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @substack: I like turtles: http://t.co/uoswx4E5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:00:07 +0000", "from_user": "shailensukul", "from_user_id": 15090996, "from_user_id_str": "15090996", "from_user_name": "Shailen Sukul", "geo": null, "id": 148613556118618100, "id_str": "148613556118618113", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1094023430/Profile_Shailen_5_Small_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1094023430/Profile_Shailen_5_Small_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "NodeJS and Windows Azure http://t.co/Lm359jNV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:56:10 +0000", "from_user": "gocho", "from_user_id": 14523807, "from_user_id_str": "14523807", "from_user_name": "gocho", "geo": null, "id": 148612563528200200, "id_str": "148612563528200192", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/943882585/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/943882585/twitter_normal.jpg", "source": "<a href="https://mozillalabs.com/ubiquity/" rel="nofollow">Ubiquity</a>", "text": "npm install \\u3063\\u3066\\u3001\\u5F15\\u6570\\u4ED8\\u3051\\u305A\\u306B\\u5B9F\\u884C\\u3059\\u308B\\u3068\\u3001\\u8DB3\\u308A\\u306A\\u3044\\u30E2\\u30B8\\u30E5\\u30FC\\u30EB\\u3092\\u78BA\\u8A8D\\u3057\\u3066\\u62FE\\u3063\\u3066\\u304D\\u3066\\u304F\\u308C\\u308B\\u3093\\u3060 nodejs\\u306E\\u30E2\\u30B8\\u30E5\\u30FC\\u30EB\\u7BA1\\u7406\\u306Fwindows\\u74B0\\u5883\\u3068\\u601D\\u3048\\u306A\\u3044\\u304F\\u3089\\u3044\\u4FBF\\u5229", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:53:42 +0000", "from_user": "chartjes", "from_user_id": 7418052, "from_user_id_str": "7418052", "from_user_name": "Chris Hartjes", "geo": null, "id": 148611943052214270, "id_str": "148611943052214272", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1632387753/thoughtfull-chris_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632387753/thoughtfull-chris_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @wezfurlong: blogged: Node.js - First Impressions http://t.co/dzMFpkv9 #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:46:01 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148610008215597060, "id_str": "148610008215597056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "RT @jackhq: NodeJs CLI get-post 0.1.0 released! - New Release of get-post! Verson 0.1.0 This version refines the api and... http://t.co/Pyp8yxCF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:45:59 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148609999113961470, "id_str": "148609999113961472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NodeJs CLI get-post 0.1.0 released! - New Release of get-post! Verson 0.1.0 This version refines the api and... ... http://t.co/EN7CBszJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:42:43 +0000", "from_user": "elazar", "from_user_id": 9105122, "from_user_id_str": "9105122", "from_user_name": "Matthew Turland", "geo": null, "id": 148609178137657340, "id_str": "148609178137657344", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1674107936/270483_808419244670_47912933_37915694_7250313_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674107936/270483_808419244670_47912933_37915694_7250313_n_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @wezfurlong: blogged: Node.js - First Impressions http://t.co/dzMFpkv9 #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:40:45 +0000", "from_user": "JRodass", "from_user_id": 98769356, "from_user_id_str": "98769356", "from_user_name": "JORGE RODAS ", "geo": null, "id": 148608680680636400, "id_str": "148608680680636417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697463299/28666_128267110530920_100000428944379_237827_6744478_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697463299/28666_128267110530920_100000428944379_237827_6744478_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Did you miss the Learn #Windows #Azure event Tuesday? The video is up on @ch9 http://t.co/cfUIsDJV #SQLAzure #nodejs /via @WindowsAzure", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:36:59 +0000", "from_user": "gocho", "from_user_id": 14523807, "from_user_id_str": "14523807", "from_user_name": "gocho", "geo": null, "id": 148607734206570500, "id_str": "148607734206570496", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/943882585/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/943882585/twitter_normal.jpg", "source": "<a href="https://mozillalabs.com/ubiquity/" rel="nofollow">Ubiquity</a>", "text": "nodejs\\u306EGLOBAL._\\u306B\\u95A2\\u3059\\u308B\\u8A18\\u8FF0\\u306F\\u898B\\u3064\\u304B\\u3089\\u306A\\u3044\\u306A\\u30FC \\u30A4\\u30F3\\u30BF\\u30FC\\u30D7\\u30EA\\u30BF\\u30FC\\u30E2\\u30FC\\u30C9\\u9650\\u5B9A\\u306E\\u6319\\u52D5\\u3060\\u3063\\u305F\\u308A\\u3059\\u308B\\u306E\\u304B\\u306A\\uFF1F http://t.co/n2b4k1qv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:31:06 +0000", "from_user": "wezfurlong", "from_user_id": 9589662, "from_user_id_str": "9589662", "from_user_name": "Wez Furlong", "geo": null, "id": 148606254804254720, "id_str": "148606254804254720", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1133560209/wezmug_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1133560209/wezmug_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "blogged: Node.js - First Impressions http://t.co/dzMFpkv9 #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:30:35 +0000", "from_user": "angrynoah", "from_user_id": 213869138, "from_user_id_str": "213869138", "from_user_name": "Noah Yetter", "geo": null, "id": 148606123069546500, "id_str": "148606123069546496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1164411491/64048-468x-mega-man_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1164411491/64048-468x-mega-man_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @garannm: Ahahaha awesome. Haven't tried this, but what a good idea. http://t.co/Gqc6Unup (Not saying that just because I don't know shell scripting.)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:25:09 +0000", "from_user": "nodeaz", "from_user_id": 258473067, "from_user_id_str": "258473067", "from_user_name": "Node Arizona", "geo": null, "id": 148604757525803000, "id_str": "148604757525803009", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1258927958/nodejs1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1258927958/nodejs1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @substack: I like turtles: http://t.co/uoswx4E5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:24:58 +0000", "from_user": "raj_arjun", "from_user_id": 52373256, "from_user_id_str": "52373256", "from_user_name": "Arjun Raj", "geo": null, "id": 148604708804771840, "id_str": "148604708804771841", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/501208183/n732491696_670862_8425_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/501208183/n732491696_670862_8425_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:24:05 +0000", "from_user": "alenards", "from_user_id": 10849112, "from_user_id_str": "10849112", "from_user_name": "Andrew Lenards", "geo": null, "id": 148604486204665860, "id_str": "148604486204665856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1653257768/andy_avatar_relvl_250x249_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653257768/andy_avatar_relvl_250x249_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "@sdevore it is a cause as much as node.js is - http://t.co/ATzFAVc1", "to_user": "sdevore", "to_user_id": 655823, "to_user_id_str": "655823", "to_user_name": "Sam DeVore", "in_reply_to_status_id": 148604222622023680, "in_reply_to_status_id_str": "148604222622023680"}, +{"created_at": "Mon, 19 Dec 2011 03:22:09 +0000", "from_user": "gocho", "from_user_id": 14523807, "from_user_id_str": "14523807", "from_user_name": "gocho", "geo": null, "id": 148604001464758270, "id_str": "148604001464758272", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/943882585/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/943882585/twitter_normal.jpg", "source": "<a href="https://mozillalabs.com/ubiquity/" rel="nofollow">Ubiquity</a>", "text": "nodejs\\u3067underscore.js\\u3092require\\u3057\\u3066\\u307F\\u305F\\u3093\\u3060\\u3051\\u3069\\u3001 GLOBAL._(\\u76F4\\u8FD1\\u306E\\u8A55\\u4FA1\\u5024\\u3092\\u4FDD\\u6301\\u3059\\u308B\\u5909\\u6570?)\\u3068\\u885D\\u7A81\\u3057\\u3066\\u3057\\u307E\\u3046\\u307F\\u305F\\u3044 \\u5358\\u7D14\\u306B\\u300C_\\u300D\\u3067underscore.js\\u306B\\u30A2\\u30AF\\u30BB\\u30B9\\u3059\\u308B\\u306E\\u306F\\u96E3\\u3057\\u305D\\u3046\\u306D http://t.co/MaFu3Lci", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:21:46 +0000", "from_user": "imd23", "from_user_id": 21980122, "from_user_id_str": "21980122", "from_user_name": "gaston", "geo": null, "id": 148603906065305600, "id_str": "148603906065305600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700006148/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700006148/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "who wants to test my first #nodejs #socketio project? DM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:21:11 +0000", "from_user": "jackhq", "from_user_id": 15810776, "from_user_id_str": "15810776", "from_user_name": "Jack Russ Software", "geo": null, "id": 148603757259800580, "id_str": "148603757259800579", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/493141971/jrs-logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/493141971/jrs-logo_normal.png", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "NodeJs CLI get-post 0.1.0 released! - New Release of get-post! Verson 0.1.0 This version refines the api and... http://t.co/Pyp8yxCF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:19:18 +0000", "from_user": "david_welch", "from_user_id": 296367257, "from_user_id_str": "296367257", "from_user_name": "David Welch", "geo": null, "id": 148603284326846460, "id_str": "148603284326846464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1349570213/Screen_shot_2011-05-11_at_3.02.43_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1349570213/Screen_shot_2011-05-11_at_3.02.43_PM_normal.png", "source": "<a href="http://adium.im" rel="nofollow">Adium</a>", "text": "Just wrote my first #NodeJs \"middleware\" to parse out @Facebook credentials on a request. A lot like #JavaEE Filters (without the web.xml)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:16:07 +0000", "from_user": "gjohnson391", "from_user_id": 37568587, "from_user_id_str": "37568587", "from_user_name": "Garrett Johnson", "geo": null, "id": 148602483961380860, "id_str": "148602483961380864", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1241793637/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1241793637/avatar_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "node-turtles! http://t.co/84n4N8fY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:15:35 +0000", "from_user": "gocho", "from_user_id": 14523807, "from_user_id_str": "14523807", "from_user_name": "gocho", "geo": null, "id": 148602347147374600, "id_str": "148602347147374592", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/943882585/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/943882585/twitter_normal.jpg", "source": "<a href="https://mozillalabs.com/ubiquity/" rel="nofollow">Ubiquity</a>", "text": "windows\\u306Enodejs\\u3001\\u30C7\\u30D5\\u30A9\\u30EB\\u30C8\\u306E\\u30B0\\u30ED\\u30FC\\u30D0\\u30EB\\u30A4\\u30F3\\u30B9\\u30C8\\u30FC\\u30EB\\u5148\\u304C C:\\Users\\%UserName%\\Appdata\\Roaming\\npm\\node_modules \\u306B\\u306A\\u3063\\u3066\\u308B\\u306E\\u304B nodejs\\u306Ewindows\\u5BFE\\u5FDC\\u3001\\u6C17\\u5408\\u5165\\u3063\\u3066\\u308B\\u306A\\uFF5E", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:14:02 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148601957123227650, "id_str": "148601957123227648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @subhaze: http://t.co/aUUy2Xu6 #bought", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:14:00 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148601948420059140, "id_str": "148601948420059136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "http://t.co/I5rL8wKP #bought http://t.co/RlULY5ZM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:08:03 +0000", "from_user": "brunolazzaro", "from_user_id": 112500870, "from_user_id_str": "112500870", "from_user_name": "Bruno Lazzaro", "geo": null, "id": 148600453251334140, "id_str": "148600453251334144", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1694015290/DSC_0347_reasonably_small_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694015290/DSC_0347_reasonably_small_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Actualizaron el sitio de NodeJS: http://t.co/jZx124mu :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:07:08 +0000", "from_user": "fengmk2", "from_user_id": 21738641, "from_user_id_str": "21738641", "from_user_name": "MK2", "geo": null, "id": 148600223982288900, "id_str": "148600223982288897", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/285484301/imk2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/285484301/imk2_normal.png", "source": "<a href="http://chrome.google.com/extensions/detail/aicelmgbddfgmpieedjiggifabdpcnln" rel="nofollow">FaWave</a>", "text": "ITier optimization practice, Data middleware application in Taobao RT @CNodeJS \"ITier\\u5F00\\u53D1\\u4F18\\u5316\\u5B9E\\u8DF5\" @\\u5B64\\u72EC\\u7684\\u767B\\u5C71\\u4EBA http://t.co/PEQv5YSQ #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:06:01 +0000", "from_user": "danieljgibson", "from_user_id": 77597228, "from_user_id_str": "77597228", "from_user_name": "Daniel Gibson", "geo": null, "id": 148599940250218500, "id_str": "148599940250218497", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1088215142/dan_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1088215142/dan_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:03:48 +0000", "from_user": "subhaze", "from_user_id": 138864322, "from_user_id_str": "138864322", "from_user_name": "Michael Russell", "geo": null, "id": 148599383854821380, "id_str": "148599383854821376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1118667070/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1118667070/me_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "http://t.co/aUUy2Xu6 #bought", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:52:43 +0000", "from_user": "modeerf", "from_user_id": 15188409, "from_user_id_str": "15188409", "from_user_name": "modeerf", "geo": null, "id": 148596594827206660, "id_str": "148596594827206656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1296892805/198538_10150136943803595_638368594_6603821_5858502_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1296892805/198538_10150136943803595_638368594_6603821_5858502_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @garannm: Ahahaha awesome. Haven't tried this, but what a good idea. http://t.co/Gqc6Unup (Not saying that just because I don't know shell scripting.)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:49:57 +0000", "from_user": "lloydhilaiel", "from_user_id": 14103559, "from_user_id_str": "14103559", "from_user_name": "lloydhilaiel", "geo": null, "id": 148595898866339840, "id_str": "148595898866339840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1330527210/lloyd_maybe_thinking_zoom_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1330527210/lloyd_maybe_thinking_zoom_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @substack: I like turtles: http://t.co/uoswx4E5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:44:32 +0000", "from_user": "aAmalia", "from_user_id": 35127479, "from_user_id_str": "35127479", "from_user_name": "Aulia Amalia", "geo": null, "id": 148594536329904130, "id_str": "148594536329904128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1555770955/Screen_shot_2011-09-23_at_1.36.04_PM_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555770955/Screen_shot_2011-09-23_at_1.36.04_PM_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "RT @jcleblanc: Node.js modules you should know about: semver http://t.co/hNLcfevd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:43:19 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148594226920308740, "id_str": "148594226920308736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @fastest963: Nodejs Shirts! http://t.co/DPelY14k", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:43:17 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148594220184244220, "id_str": "148594220184244225", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Nodejs Shirts! http://t.co/I5rL8wKP http://t.co/6jLhzYnh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:43:02 +0000", "from_user": "Eccra", "from_user_id": 17231467, "from_user_id_str": "17231467", "from_user_name": "Braden Powers", "geo": null, "id": 148594157374550000, "id_str": "148594157374550016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1305562881/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1305562881/profile_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Node.js, Now As A Snazzy Shirt http://t.co/wS9WGMSQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:34:54 +0000", "from_user": "Nodester", "from_user_id": 240751001, "from_user_id_str": "240751001", "from_user_name": "Nodester", "geo": null, "id": 148592110281564160, "id_str": "148592110281564160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Nice! RT @diaffalo: My nodejs implementation of fingerd is complete!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 02:34:24 +0000", "from_user": "luis2103", "from_user_id": 119916622, "from_user_id_str": "119916622", "from_user_name": "Luis Sancho", "geo": null, "id": 148591984070758400, "id_str": "148591984070758400", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1629425602/foto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629425602/foto_normal.jpg", "source": "<a href="http://reptincel.com" rel="nofollow">TwittTwittTwitt</a>", "text": "RT @jquery_addict: #jquery del lado server http://t.co/TrnN8Mum #mejorandola #nodejs (via @thesequencer)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:33:32 +0000", "from_user": "fastest963", "from_user_id": 15226527, "from_user_id_str": "15226527", "from_user_name": "James Hartig", "geo": null, "id": 148591765358776320, "id_str": "148591765358776321", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1623168786/230173_2055713118220_1406366465_2426488_816622_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1623168786/230173_2055713118220_1406366465_2426488_816622_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Nodejs Shirts! http://t.co/DPelY14k", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:33:23 +0000", "from_user": "Nodester", "from_user_id": 240751001, "from_user_id_str": "240751001", "from_user_name": "Nodester", "geo": null, "id": 148591729040306180, "id_str": "148591729040306176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Technology behind Rackspace Cloud Monitoring http://t.co/CEJs9kOe and why they switched from Python to NodeJS ht... http://t.co/UfUMLCzs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:33:02 +0000", "from_user": "francescaPasha", "from_user_id": 207559129, "from_user_id_str": "207559129", "from_user_name": "Francesca Krihely", "geo": null, "id": 148591642591510530, "id_str": "148591642591510529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1619685254/Screen_shot_2011-11-02_at_8.56.52_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619685254/Screen_shot_2011-11-02_at_8.56.52_PM_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: #hackmtl gathers 72 developers hacking on nodejs, redis and mongodb http://t.co/NI7qOYr1 #oilq http://t.co/I3eDQVok", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:29:52 +0000", "from_user": "Nodester", "from_user_id": 240751001, "from_user_id_str": "240751001", "from_user_name": "Nodester", "geo": null, "id": 148590845619212300, "id_str": "148590845619212288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @substack: I like turtles: http://t.co/uoswx4E5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:29:04 +0000", "from_user": "chrismatthieu", "from_user_id": 13604142, "from_user_id_str": "13604142", "from_user_name": "Chris Matthieu", "geo": null, "id": 148590643898355700, "id_str": "148590643898355712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/918916153/SuperChrisSmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/918916153/SuperChrisSmall_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Only 2 days left to purchase this limited edition node.js tshirt! RT @substack: I like turtles: http://t.co/T2d5t5UO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:28:47 +0000", "from_user": "fengmk2", "from_user_id": 21738641, "from_user_id_str": "21738641", "from_user_name": "MK2", "geo": null, "id": 148590569856315400, "id_str": "148590569856315393", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/285484301/imk2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/285484301/imk2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @substack: I like turtles: http://t.co/uoswx4E5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:27:39 +0000", "from_user": "mvrilo", "from_user_id": 18115242, "from_user_id_str": "18115242", "from_user_name": "ruf", "geo": null, "id": 148590285830627330, "id_str": "148590285830627328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1408810373/ruf_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1408810373/ruf_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @substack: I like turtles: http://t.co/uoswx4E5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:26:30 +0000", "from_user": "chadskidmore", "from_user_id": 22544441, "from_user_id_str": "22544441", "from_user_name": "Chad Skidmore", "geo": null, "id": 148589997430280200, "id_str": "148589997430280192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1671589932/chad-head-small_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671589932/chad-head-small_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Node.js, Now As A Snazzy Shirt http://t.co/dgI3jgIZ Minium order qty hit so they are shipping! Get yours now! #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:26:12 +0000", "from_user": "ryah", "from_user_id": 18975861, "from_user_id_str": "18975861", "from_user_name": "Ryan Dahl", "geo": null, "id": 148589920024399870, "id_str": "148589920024399872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1634041610/name_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634041610/name_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @substack: I like turtles: http://t.co/uoswx4E5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:21:24 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148588711754469380, "id_str": "148588711754469376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @jcleblanc Node.js modules you should know about: semver http://t.co/bJG3Zmyf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:21:23 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148588710655569920, "id_str": "148588710655569922", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @FriendsOfNodeJS substack: I like turtles: http://t.co/48pml9ZF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:21:23 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148588707807629300, "id_str": "148588707807629312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @cra @mccv \"Write your shell scripts in JavaScript...\" http://t.co/4yyymK1a", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:20:42 +0000", "from_user": "alexissmirnov", "from_user_id": 7611972, "from_user_id_str": "7611972", "from_user_name": "Alexis Smirnov", "geo": null, "id": 148588536327700480, "id_str": "148588536327700481", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/24487012/alexis_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/24487012/alexis_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @mtw: #hackmtl gathers 72 developers hacking on nodejs, redis and mongodb http://t.co/Fa3c4hxV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:19:02 +0000", "from_user": "jcleblanc", "from_user_id": 15392140, "from_user_id_str": "15392140", "from_user_name": "Jonathan LeBlanc", "geo": null, "id": 148588116767289340, "id_str": "148588116767289344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/281463265/3490041159_59b53be507_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/281463265/3490041159_59b53be507_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "Node.js modules you should know about: semver http://t.co/hNLcfevd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:12:01 +0000", "from_user": "thesequencer", "from_user_id": 299406941, "from_user_id_str": "299406941", "from_user_name": "cristian g. coronel ", "geo": null, "id": 148586350243880960, "id_str": "148586350243880960", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1580510176/yo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580510176/yo_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "#jquery del lado server http://t.co/gizcy0C0 #mejorandola #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:11:38 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148586254437584900, "id_str": "148586254437584896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "I like turtles: http://t.co/I5rL8wKP http://t.co/t7htUlNi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:10:02 +0000", "from_user": "cra", "from_user_id": 14602130, "from_user_id_str": "14602130", "from_user_name": "Chris Aniszczyk", "geo": null, "id": 148585850727432200, "id_str": "148585850727432192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1440894270/zxtwitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1440894270/zxtwitter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@mccv \"Write your shell scripts in JavaScript...\" http://t.co/EToD7rsp", "to_user": "mccv", "to_user_id": 9160152, "to_user_id_str": "9160152", "to_user_name": "Mark McBride"}, +{"created_at": "Mon, 19 Dec 2011 02:09:14 +0000", "from_user": "rbarraud", "from_user_id": 15363272, "from_user_id_str": "15363272", "from_user_name": "rbarraud", "geo": null, "id": 148585649442799600, "id_str": "148585649442799617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1159478248/sp-studio__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1159478248/sp-studio__1__normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: Imagine http://t.co/98HBW2Xi in real-time across a whole data center of production #nodejs processes sampling both JS and C functions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:06:13 +0000", "from_user": "goatslacker", "from_user_id": 9369012, "from_user_id_str": "9369012", "from_user_name": "Josh Perez", "geo": null, "id": 148584893159440400, "id_str": "148584893159440384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/529643794/4448_111189216356_647826356_3169504_3493906_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/529643794/4448_111189216356_647826356_3169504_3493906_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @substack: I like turtles: http://t.co/uoswx4E5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:01:43 +0000", "from_user": "fernanddosilva", "from_user_id": 353010666, "from_user_id_str": "353010666", "from_user_name": "Fernando Silva", "geo": null, "id": 148583761372643330, "id_str": "148583761372643328", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1569783784/avatar-gravatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1569783784/avatar-gravatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Tentando encontrar uma forma legal organizar a estrutura dos meus projetos em #nodejs E acho que encontrei hehehehe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:56:45 +0000", "from_user": "hij1nx", "from_user_id": 95938827, "from_user_id_str": "95938827", "from_user_name": "Paolo Fragomeni", "geo": null, "id": 148582509704249340, "id_str": "148582509704249344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1392216695/gravatar_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1392216695/gravatar_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @substack: I like turtles: http://t.co/uoswx4E5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:53:53 +0000", "from_user": "tjgillis", "from_user_id": 3957861, "from_user_id_str": "3957861", "from_user_name": "Thomas", "geo": null, "id": 148581786950184960, "id_str": "148581786950184960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1542511817/guinea_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542511817/guinea_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Tweaking my blog. Updated link: http://t.co/y0JLsKM1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:52:50 +0000", "from_user": "substack", "from_user_id": 125027291, "from_user_id_str": "125027291", "from_user_name": "James Halliday", "geo": null, "id": 148581523921178620, "id_str": "148581523921178627", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/805387602/laptop-robot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/805387602/laptop-robot_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I like turtles: http://t.co/uoswx4E5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:49:00 +0000", "from_user": "AgustinF", "from_user_id": 21112331, "from_user_id_str": "21112331", "from_user_name": "Agustin Feuerhake", "geo": null, "id": 148580557830365200, "id_str": "148580557830365184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/966644713/avataragustin_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/966644713/avataragustin_normal.png", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "RT @hackernewsbot: Node.js modules you should know about: semver... http://t.co/Xv87Pot0 cc:@iobaixas", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:44:51 +0000", "from_user": "tjgillis", "from_user_id": 3957861, "from_user_id_str": "3957861", "from_user_name": "Thomas", "geo": null, "id": 148579514933448700, "id_str": "148579514933448704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1542511817/guinea_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542511817/guinea_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "What is the best way to achieve a Flash/Unity app with shared Nodejs server? - http://t.co/taCVRKa7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:40:47 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148578492886425600, "id_str": "148578492886425600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://identi.ca" rel="nofollow">identica</a>", "text": "RT @observatoire: #hackmtl gathers 72 developers hacking on nodejs, redis and mongodb http://t.co/EH2PxKmI #oilq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:40:45 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148578481410809860, "id_str": "148578481410809856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#hackmtl gathers 72 developers hacking on nodejs, redis and mongodb http://t.co/NI7qOYr1 #oilq http://t.co/I3eDQVok", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:38:54 +0000", "from_user": "dtorres", "from_user_id": 10973202, "from_user_id_str": "10973202", "from_user_name": "Diego Torres", "geo": null, "id": 148578016350568450, "id_str": "148578016350568448", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701905441/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701905441/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Building nodejs :p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:31:44 +0000", "from_user": "sadasant", "from_user_id": 101949871, "from_user_id_str": "101949871", "from_user_name": "Daniel R.", "geo": null, "id": 148576214150426620, "id_str": "148576214150426624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1619598037/sadasant_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619598037/sadasant_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Technology behind Rackspace Cloud Monitoring http://t.co/CEJs9kOe and why they switched from Python to NodeJS ht... http://t.co/UfUMLCzs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:30:32 +0000", "from_user": "observatoire", "from_user_id": 17017451, "from_user_id_str": "17017451", "from_user_name": "observatoire", "geo": +{"coordinates": [46.8123,-71.2145], "type": "Point"}, "id": 148575913980866560, "id_str": "148575913980866562", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/906988827/lob-logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/906988827/lob-logo_normal.png", "source": "<a href="http://identi.ca" rel="nofollow">identica</a>", "text": "#hackmtl gathers 72 developers hacking on nodejs, redis and mongodb http://t.co/EH2PxKmI #oilq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:18:24 +0000", "from_user": "xiaofeng_metis", "from_user_id": 18009359, "from_user_id_str": "18009359", "from_user_name": "WangXiaoFeng", "geo": null, "id": 148572857708970000, "id_str": "148572857708969984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1157909208/_Users_ycat_Pictures_Skitch_icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1157909208/_Users_ycat_Pictures_Skitch_icon_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "coffee-script + less + nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:09:44 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148570676029165570, "id_str": "148570676029165568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @davidbgk: Technology behind Rackspace Cloud Monitoring http://t.co/paLVR6bZ and why they switched from Python to NodeJS http://t.co/WFqHI7x0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:09:42 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148570668605259780, "id_str": "148570668605259776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Technology behind Rackspace Cloud Monitoring http://t.co/CEJs9kOe and why they switched from Python to NodeJS ht... http://t.co/UfUMLCzs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:09:22 +0000", "from_user": "ncoghlan_dev", "from_user_id": 261665936, "from_user_id_str": "261665936", "from_user_name": "Nick Coghlan", "geo": null, "id": 148570583779643400, "id_str": "148570583779643393", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1276419269/pycon2011_language_summit_cropped_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1276419269/pycon2011_language_summit_cropped_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@wjlroe Oh, believe me, I also had the \"How the hell does moving from Twisted to NodeJS solve a developer inexperience problem?\" reaction :)", "to_user": "wjlroe", "to_user_id": 11835052, "to_user_id_str": "11835052", "to_user_name": "Will Roe", "in_reply_to_status_id": 148568973049479170, "in_reply_to_status_id_str": "148568973049479168"}, +{"created_at": "Mon, 19 Dec 2011 01:08:03 +0000", "from_user": "teespring_", "from_user_id": 273515759, "from_user_id_str": "273515759", "from_user_name": "Teespring", "geo": null, "id": 148570255122382850, "id_str": "148570255122382848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695025964/Twitter_Logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695025964/Twitter_Logo_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tomblobaum: node.js turtle t-shirt on sale at http://t.co/EsGzaTZR for the next 48 hours http://t.co/TUIYbqZQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:56:29 +0000", "from_user": "ingnucious", "from_user_id": 13062272, "from_user_id_str": "13062272", "from_user_name": "malaniz", "geo": null, "id": 148567344363487230, "id_str": "148567344363487232", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1518261118/avatar-8bit_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1518261118/avatar-8bit_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "probando #bogart para #nodejs... me gusta! es como #sinatra o mi tesis de licenciatura en python :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:40:46 +0000", "from_user": "diaffalo", "from_user_id": 14517902, "from_user_id_str": "14517902", "from_user_name": "diaffalo", "geo": null, "id": 148563386681147400, "id_str": "148563386681147392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1145039452/newtwit_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1145039452/newtwit_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "My nodejs implementation of fingerd is complete!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:38:41 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148562864242831360, "id_str": "148562864242831363", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tomblobaum: node.js turtle t-shirt on sale at http://t.co/EsGzaTZR for the next 48 hours http://t.co/TUIYbqZQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:38:39 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148562855564820480, "id_str": "148562855564820480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "node.js turtle t-shirt on sale at http://t.co/I5rL8wKP for the next 48 hours http://t.co/vUimiI8U http://t.co/Vtgo0ZSH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:38:17 +0000", "from_user": "davidbgk", "from_user_id": 14463703, "from_user_id_str": "14463703", "from_user_name": "David Larlet", "geo": null, "id": 148562764170919940, "id_str": "148562764170919936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/926181565/david-larlet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/926181565/david-larlet_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Technology behind Rackspace Cloud Monitoring http://t.co/paLVR6bZ and why they switched from Python to NodeJS http://t.co/WFqHI7x0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:33:59 +0000", "from_user": "wjlroe", "from_user_id": 11835052, "from_user_id_str": "11835052", "from_user_name": "Will Roe", "geo": null, "id": 148561682829017100, "id_str": "148561682829017088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1671712662/sacre_coeur_skeptical_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671712662/sacre_coeur_skeptical_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ncoghlan_dev so what made me think \"wat?\" was they had to write so many libraries to get it done. Brilliant for NodeJS peeps, otherwise?", "to_user": "ncoghlan_dev", "to_user_id": 261665936, "to_user_id_str": "261665936", "to_user_name": "Nick Coghlan", "in_reply_to_status_id": 148560527193407500, "in_reply_to_status_id_str": "148560527193407488"}, +{"created_at": "Mon, 19 Dec 2011 00:18:27 +0000", "from_user": "robmcguinness", "from_user_id": 135386437, "from_user_id_str": "135386437", "from_user_name": "Robert McGuinness", "geo": null, "id": 148557771602788350, "id_str": "148557771602788352", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1165265938/t128_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1165265938/t128_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "#backbonejs + #nodejs is pure bliss", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:15:55 +0000", "from_user": "matbeeDOTcom", "from_user_id": 44289928, "from_user_id_str": "44289928", "from_user_name": "Mathieu Gosbee", "geo": null, "id": 148557132323758080, "id_str": "148557132323758080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1227919001/167881_10150092165096460_513541459_6100965_461794_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1227919001/167881_10150092165096460_513541459_6100965_461794_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ryah .....lol.... Well, any pointers. NodeJS+Express vs R.O.R's crazy ruby syntax.", "to_user": "ryah", "to_user_id": 18975861, "to_user_id_str": "18975861", "to_user_name": "Ryan Dahl", "in_reply_to_status_id": 148556242741231600, "in_reply_to_status_id_str": "148556242741231616"}, +{"created_at": "Mon, 19 Dec 2011 00:11:36 +0000", "from_user": "gocho", "from_user_id": 14523807, "from_user_id_str": "14523807", "from_user_name": "gocho", "geo": null, "id": 148556049455136770, "id_str": "148556049455136768", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/943882585/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/943882585/twitter_normal.jpg", "source": "<a href="https://mozillalabs.com/ubiquity/" rel="nofollow">Ubiquity</a>", "text": "nodejs\\u306E\\u30A4\\u30F3\\u30BF\\u30FC\\u30D7\\u30EA\\u30BF\\u3001GLOBAL._ \\u306B\\u306F\\u3001\\u6700\\u5F8C\\u306B\\u8A55\\u4FA1\\u3055\\u308C\\u305F\\u5024\\u304C\\u5165\\u3063\\u3066\\u3044\\u308B\\u306E\\u304B eval\\u306E\\u623B\\u308A\\u5024\\u7684\\u306B\\u4F7F\\u3048\\u308B\\u306E\\u306D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:07:09 +0000", "from_user": "matbeeDOTcom", "from_user_id": 44289928, "from_user_id_str": "44289928", "from_user_name": "Mathieu Gosbee", "geo": null, "id": 148554929433358340, "id_str": "148554929433358336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1227919001/167881_10150092165096460_513541459_6100965_461794_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1227919001/167881_10150092165096460_513541459_6100965_461794_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ryah I'm having a discussion with a co-developer of a startup. Trying to decide: Ruby On Rails or NodeJS. Help.", "to_user": "ryah", "to_user_id": 18975861, "to_user_id_str": "18975861", "to_user_name": "Ryan Dahl"}, +{"created_at": "Sun, 18 Dec 2011 23:48:14 +0000", "from_user": "tomblobaum", "from_user_id": 141134421, "from_user_id_str": "141134421", "from_user_name": "Tom Blobaum", "geo": null, "id": 148550162988535800, "id_str": "148550162988535808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1405290920/8beaa9fcd7377a1f32ea66badaa6c1b5_2__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1405290920/8beaa9fcd7377a1f32ea66badaa6c1b5_2__normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "node.js turtle t-shirt on sale at http://t.co/EsGzaTZR for the next 48 hours http://t.co/TUIYbqZQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:44:43 +0000", "from_user": "david_authier", "from_user_id": 96945939, "from_user_id_str": "96945939", "from_user_name": "David Authier", "geo": null, "id": 148549282432159740, "id_str": "148549282432159744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1608249509/logo-david_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608249509/logo-david_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jackhq: This looks really cool! -> http://t.co/4RYZQcGe Lint Tool for #coffeescript #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:43:55 +0000", "from_user": "jackhq", "from_user_id": 15810776, "from_user_id_str": "15810776", "from_user_name": "Jack Russ Software", "geo": null, "id": 148549082946863100, "id_str": "148549082946863104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/493141971/jrs-logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/493141971/jrs-logo_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "This looks really cool! -> http://t.co/4RYZQcGe Lint Tool for #coffeescript #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:38:25 +0000", "from_user": "fernanddosilva", "from_user_id": 353010666, "from_user_id_str": "353010666", "from_user_name": "Fernando Silva", "geo": null, "id": 148547697169809400, "id_str": "148547697169809408", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1569783784/avatar-gravatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1569783784/avatar-gravatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "To come\\u00E7ando a gostar desse tal de #expressjs #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:37:06 +0000", "from_user": "evilsoft", "from_user_id": 14910488, "from_user_id_str": "14910488", "from_user_name": "Ian Hofmann-Hicks", "geo": null, "id": 148547365031256060, "id_str": "148547365031256064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/195547623/evilTweet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/195547623/evilTweet_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Really digging on #nodejs with #couchdb for data aggregation and mining.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:28:23 +0000", "from_user": "techngfx", "from_user_id": 314888606, "from_user_id_str": "314888606", "from_user_name": "techngfx", "geo": null, "id": 148545172404305920, "id_str": "148545172404305920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1390609558/Logo_Techngfx_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1390609558/Logo_Techngfx_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Node.js modules you should know about: semver http://t.co/nsae4v9u", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:20:26 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148543169796116480, "id_str": "148543169796116481", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @grahamlyons After a couple of hiccups I managed to get #nodejs builds working in #travisci: http://t.co/pLfdHX8x", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:20:25 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148543168680435700, "id_str": "148543168680435713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @FriendsOfNodeJS nodenpm: always (0.4.0): http://t.co/PuVi0r39 CLI & Daemon tool to run a NodeJS process always, restarting on...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:20:25 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148543167078203400, "id_str": "148543167078203392", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @Evangenieur cjean_dev: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/oaVI2J7R", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:17:57 +0000", "from_user": "grahamlyons", "from_user_id": 23963755, "from_user_id_str": "23963755", "from_user_name": "Graham Lyons", "geo": null, "id": 148542546908426240, "id_str": "148542546908426241", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/93918914/twitme_crop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/93918914/twitme_crop_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "After a couple of hiccups I managed to get #nodejs builds working in #travisci: http://t.co/VGbmPydz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:13:40 +0000", "from_user": "nodejs", "from_user_id": 91985735, "from_user_id_str": "91985735", "from_user_name": "node js", "geo": null, "id": 148541468045361150, "id_str": "148541468045361152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1437021459/nodejs-dark_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1437021459/nodejs-dark_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @gabrielfalcao: it's stunning how so many interesting node.js modules comes from @tjholowaychuk. Unbelievably awesome.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:06:19 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 148539619825299460, "id_str": "148539619825299456", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "speculum (0.1.0): http://t.co/rUt9v5ea NodeJS BDD Test Suite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:04:32 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148539170980241400, "id_str": "148539170980241408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "RT @nodenpm: always (0.4.0): http://t.co/C1U3Sx3d CLI & Daemon tool to run a NodeJS process always, restarting on file changes & crashes w...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:04:31 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148539164177088500, "id_str": "148539164177088512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "always (0.4.0): http://t.co/9LVs3arm CLI & Daemon tool to run a NodeJS process always, restarting on file change... http://t.co/DaVYTUVW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:57:31 +0000", "from_user": "Evangenieur", "from_user_id": 21945870, "from_user_id_str": "21945870", "from_user_name": "Evan Genieur", "geo": null, "id": 148537405568319500, "id_str": "148537405568319489", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/83725129/gunnm2_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/83725129/gunnm2_small_normal.jpg", "source": "Zite Personalized Magazine", "text": "RT @cjean_dev: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/yXLGQK9l", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:57:27 +0000", "from_user": "fernanddosilva", "from_user_id": 353010666, "from_user_id_str": "353010666", "from_user_name": "Fernando Silva", "geo": null, "id": 148537387146936320, "id_str": "148537387146936320", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1569783784/avatar-gravatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1569783784/avatar-gravatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Bora. E dale estudar #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:56:36 +0000", "from_user": "xaptronic", "from_user_id": 15613733, "from_user_id_str": "15613733", "from_user_name": "alex pilon", "geo": null, "id": 148537173547814900, "id_str": "148537173547814915", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1575351209/winter-me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575351209/winter-me_normal.jpg", "source": "Zite Personalized Magazine", "text": "RT @cjean_dev: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/yXLGQK9l", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:43:49 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 148533957527478270, "id_str": "148533957527478272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "always (0.4.0): http://t.co/C1U3Sx3d CLI & Daemon tool to run a NodeJS process always, restarting on file changes & crashes w...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:39:38 +0000", "from_user": "kimo", "from_user_id": 6068052, "from_user_id_str": "6068052", "from_user_name": "Krishna Guda", "geo": null, "id": 148532903897333760, "id_str": "148532903897333760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1576122748/stevejobs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576122748/stevejobs_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:36:07 +0000", "from_user": "hkokko", "from_user_id": 24726686, "from_user_id_str": "24726686", "from_user_name": "Hannu Kokko", "geo": null, "id": 148532018307792900, "id_str": "148532018307792896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/100266288/hannu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/100266288/hannu_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:34:29 +0000", "from_user": "dalmaer", "from_user_id": 4216361, "from_user_id_str": "4216361", "from_user_name": "Dion Almaer", "geo": null, "id": 148531608616570880, "id_str": "148531608616570880", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/292949152/dionprofile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/292949152/dionprofile_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tjholowaychuk: palette - image color palette extraction lib for #nodejs - https://t.co/bwzPe8NP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:33:31 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148531362322841600, "id_str": "148531362322841600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://www.tweettrail.com" rel="nofollow">Tweet Traill</a>", "text": "RT @tweettrailbot1: Check out who is tweeting about: ' nodejs ', here: http://t.co/D3Bwzmxm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:33:29 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148531354726965250, "id_str": "148531354726965248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Check out who is tweeting about: ' nodejs ', here: http://t.co/x32bDTje http://t.co/ueSiDpFP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:30:00 +0000", "from_user": "tweettrailbot1", "from_user_id": 197244919, "from_user_id_str": "197244919", "from_user_name": "Tweet Trail Announce", "geo": null, "id": 148530478532657150, "id_str": "148530478532657152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1134778998/ttlogo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1134778998/ttlogo_normal.png", "source": "<a href="http://www.tweettrail.com" rel="nofollow">Tweet Traill</a>", "text": "Check out who is tweeting about: ' nodejs ', here: http://t.co/D3Bwzmxm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:29:19 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 148530308663361540, "id_str": "148530308663361536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "short (0.2.7): http://t.co/dSD1mhZw NodeJS URL Shortener backed by MongooseJS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:24:53 +0000", "from_user": "Samisdat", "from_user_id": 5493712, "from_user_id_str": "5493712", "from_user_name": "Bastian Sackermann", "geo": null, "id": 148529190919094270, "id_str": "148529190919094272", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/34424312/quad_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/34424312/quad_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Der Server l\\u00E4uft mit @Nodejs Daten speichern in @CouchDB und http://t.co/7KzDdmZH \\u00FCbernimmt die Session. Sch\\u00F6ner Code ohne PHP ;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:11:02 +0000", "from_user": "kubicek", "from_user_id": 73639242, "from_user_id_str": "73639242", "from_user_name": "Ji\\u0159\\u00ED Kub\\u00ED\\u010Dek", "geo": null, "id": 148525708044550140, "id_str": "148525708044550145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/727445482/20090821_0783_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/727445482/20090821_0783_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Tak therubyracer na FreeBSD opravdu ne :( Pro\\u010D sakra less.rb nepou\\u017E\\u00EDv\\u00E1 NodeJS? #lessrb #fail", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:05:25 +0000", "from_user": "cccc4d", "from_user_id": 334495560, "from_user_id_str": "334495560", "from_user_name": "Milton Colwell", "geo": null, "id": 148524293758779400, "id_str": "148524293758779392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1471512767/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1471512767/profile_normal.png", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "\\u201CNode.js Windows Azure Introduction | Windows Azure Developer Experience Videos | Channel 9\\u201D http://t.co/aWUuAr68", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:00:45 +0000", "from_user": "heri", "from_user_id": 1578491, "from_user_id_str": "1578491", "from_user_name": "heri", "geo": null, "id": 148523116723834880, "id_str": "148523116723834880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1212243024/Screen_shot_2011-01-10_at_5.35.57_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1212243024/Screen_shot_2011-01-10_at_5.35.57_PM_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @jonotron: kewl work was done #hackmtl http://t.co/UF5NfJWS via @mtw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:00:05 +0000", "from_user": "mtw", "from_user_id": 4609741, "from_user_id_str": "4609741", "from_user_name": "Montreal Tech Watch", "geo": null, "id": 148522950914613250, "id_str": "148522950914613248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1311424156/Screen_shot_2011-04-14_at_11.25.36_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1311424156/Screen_shot_2011-04-14_at_11.25.36_AM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pluc: Best anecdote from #hackmtl, by @jamesaduncan: #NodeJS 0.6.4 was blocked in China because of Tiananmen Square events: http://t.co/I51oes0F", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:59:54 +0000", "from_user": "jvduf", "from_user_id": 41679937, "from_user_id_str": "41679937", "from_user_name": "Jeroen van Duffelen", "geo": null, "id": 148522904529805300, "id_str": "148522904529805312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1251159750/Jeroen_van_Duffelen_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1251159750/Jeroen_van_Duffelen_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ryah: @nodejs people should be following @indutny - he's been doing great core work the last few months", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:56:34 +0000", "from_user": "supakolya", "from_user_id": 10327102, "from_user_id_str": "10327102", "from_user_name": "Nicolas Weil", "geo": null, "id": 148522064855306240, "id_str": "148522064855306241", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/282132360/n679009215_9698_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/282132360/n679009215_9698_normal.jpg", "source": "<a href="http://www.scoop.it" rel="nofollow">Scoop.it</a>", "text": "Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 | @#scoopit http://t.co/8Dau55Eu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:48:45 +0000", "from_user": "cayasso", "from_user_id": 57570032, "from_user_id_str": "57570032", "from_user_name": "Jonathan Brumley", "geo": null, "id": 148520100243320830, "id_str": "148520100243320832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/361872421/jonathan_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/361872421/jonathan_normal.jpg", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "RT @cronopio2: Wow!! really awesome!! RT @maciejmalecki: @flatironjs has a simple http example now! http://t.co/RnOAdi8O #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:30:57 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148515620961517570, "id_str": "148515620961517568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "Zite Personalized Magazine", "text": "RT @HadoopNews: #Hackmtl Gathers 72 Developers Hacking On Nodejs, Redis And Mongodb http://t.co/6N0xTsqP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:30:56 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148515614380670980, "id_str": "148515614380670977", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Hackmtl Gathers 72 Developers Hacking On Nodejs, Redis And Mongodb http://t.co/hCpUr8E2 http://t.co/xgrq0zOo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:27:28 +0000", "from_user": "Poetro", "from_user_id": 4543971, "from_user_id_str": "4543971", "from_user_name": "Peter Galiba", "geo": null, "id": 148514740543569920, "id_str": "148514740543569920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/18340052/9ef94af232b3ec6b66b67bcc1d4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/18340052/9ef94af232b3ec6b66b67bcc1d4_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Write your shell scripts in JavaScript, via Node.js http://t.co/SL5Msixg http://t.co/RXUA0xNq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:22:47 +0000", "from_user": "maciejmalecki", "from_user_id": 263755874, "from_user_id_str": "263755874", "from_user_name": "Maciej Ma\\u0142ecki", "geo": null, "id": 148513565584789500, "id_str": "148513565584789504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1547225919/IMG_20110917_192531mt_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1547225919/IMG_20110917_192531mt_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ryah: @nodejs people should be following @indutny - he's been doing great core work the last few months", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:14:08 +0000", "from_user": "indexzero", "from_user_id": 13696102, "from_user_id_str": "13696102", "from_user_name": "Charlie Robbins", "geo": null, "id": 148511385515597820, "id_str": "148511385515597825", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1179850399/P1000093bw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1179850399/P1000093bw_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ryah: @nodejs people should be following @indutny - he's been doing great core work the last few months", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:10:41 +0000", "from_user": "jaguilera_", "from_user_id": 337691375, "from_user_id_str": "337691375", "from_user_name": "Jes\\u00FAs Aguilera", "geo": null, "id": 148510518548774900, "id_str": "148510518548774913", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1673129171/yo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673129171/yo_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "comunidad #nodejs hispana http://t.co/KkOTLFUJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:06:33 +0000", "from_user": "HadoopNews", "from_user_id": 251816878, "from_user_id_str": "251816878", "from_user_name": "John Ching", "geo": null, "id": 148509479233785860, "id_str": "148509479233785857", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1244235692/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1244235692/images_normal.jpg", "source": "Zite Personalized Magazine", "text": "#Hackmtl Gathers 72 Developers Hacking On Nodejs, Redis And Mongodb http://t.co/6N0xTsqP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:04:03 +0000", "from_user": "rauchg", "from_user_id": 15540222, "from_user_id_str": "15540222", "from_user_name": "Guillermo Rauch", "geo": null, "id": 148508849605845000, "id_str": "148508849605844992", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1547730928/Image_2011.09.17_6-39-27_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1547730928/Image_2011.09.17_6-39-27_PM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tjholowaychuk: palette - image color palette extraction lib for #nodejs - https://t.co/bwzPe8NP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:00:03 +0000", "from_user": "FGRibreau", "from_user_id": 5719692, "from_user_id_str": "5719692", "from_user_name": "Fran\\u00E7ois-G. Ribreau", "geo": null, "id": 148507840766672900, "id_str": "148507840766672896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1117780106/2009_shooting_medium_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1117780106/2009_shooting_medium_normal.png", "source": "<a href="http://fgribreau.com" rel="nofollow">FG</a>", "text": "Chai - #BDD / #TDD assert. framework for NodeJS and the browser that can be paired with any testing framework http://t.co/VWzd6sT5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:57:56 +0000", "from_user": "pluc", "from_user_id": 14517408, "from_user_id_str": "14517408", "from_user_name": "Pier-Luc Petitclerc", "geo": null, "id": 148507310459858940, "id_str": "148507310459858945", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1330464753/avatar-trans-sm_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1330464753/avatar-trans-sm_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Best anecdote from #hackmtl, by @jamesaduncan: #NodeJS 0.6.4 was blocked in China because of Tiananmen Square events: http://t.co/I51oes0F", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:57:48 +0000", "from_user": "jbueza", "from_user_id": 141423083, "from_user_id_str": "141423083", "from_user_name": "Jaime Bueza", "geo": null, "id": 148507278427955200, "id_str": "148507278427955200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: Imagine http://t.co/98HBW2Xi in real-time across a whole data center of production #nodejs processes sampling both JS and C functions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:51:19 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 148505646298435600, "id_str": "148505646298435584", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "webdriverjs (0.5.5): http://t.co/3ZFZlpoU A nodejs bindings implementation for selenium 2.0/webdriver", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:46:38 +0000", "from_user": "nzjames", "from_user_id": 13040212, "from_user_id_str": "13040212", "from_user_name": "James \\u2620\\u270E Magness", "geo": null, "id": 148504466520416260, "id_str": "148504466520416256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1591731085/IMG_0867_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591731085/IMG_0867_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@thiswayup GNOME Do, Docky for desktop/app launcher. nodejs running in a Gauke dropdown for quick Javascript foo.", "to_user": "thiswayup", "to_user_id": 613543, "to_user_id_str": "613543", "to_user_name": "Joe Lee"}, +{"created_at": "Sun, 18 Dec 2011 20:38:46 +0000", "from_user": "Nodester", "from_user_id": 240751001, "from_user_id_str": "240751001", "from_user_name": "Nodester", "geo": null, "id": 148502484674027520, "id_str": "148502484674027520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Hack the planet with nodejs! RT @PhiRequiem: @Nodester thanks for the code!! d(^_^o) do the world a little better.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:37:46 +0000", "from_user": "TooTallNate", "from_user_id": 277724842, "from_user_id_str": "277724842", "from_user_name": "Nathan Rajlich", "geo": null, "id": 148502234118897660, "id_str": "148502234118897664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1410702232/5dc62d823e229c44665830bbe429c338_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1410702232/5dc62d823e229c44665830bbe429c338_normal.jpeg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@travisci Do you guys have any plans for CI workers running OS X? I have some #nodejs modules that are darwin-only\\u2026 https://t.co/ih1X7klr", "to_user": "travisci", "to_user_id": 252481460, "to_user_id_str": "252481460", "to_user_name": "Travis CI"}, +{"created_at": "Sun, 18 Dec 2011 20:36:04 +0000", "from_user": "jonotron", "from_user_id": 275575110, "from_user_id_str": "275575110", "from_user_name": "Jon Volkmar", "geo": null, "id": 148501808577380350, "id_str": "148501808577380352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1296126508/34077_775555533467_13618427_44344764_6964541_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1296126508/34077_775555533467_13618427_44344764_6964541_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "kewl work was done #hackmtl http://t.co/UF5NfJWS via @mtw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:32:54 +0000", "from_user": "atsuya", "from_user_id": 7483262, "from_user_id_str": "7483262", "from_user_name": "Atsuya Takagi", "geo": null, "id": 148501011466698750, "id_str": "148501011466698752", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1644873867/atsuya_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644873867/atsuya_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tjholowaychuk: palette - image color palette extraction lib for #nodejs - https://t.co/bwzPe8NP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:28:57 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148500015151726600, "id_str": "148500015151726593", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jerrysievert: introducing servitude: http://t.co/WpuwTiAh - CSS/JavaScript injection sugar with #bricksjs #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:28:55 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148500005760679940, "id_str": "148500005760679937", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "introducing servitude: http://t.co/OAzhxfqy - CSS/JavaScript injection sugar with #bricksjs #nodejs http://t.co/SmK2CciH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:22:32 +0000", "from_user": "peteryorke", "from_user_id": 14136726, "from_user_id_str": "14136726", "from_user_name": "Peter Yorke", "geo": null, "id": 148498400529227780, "id_str": "148498400529227776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/51727717/peter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/51727717/peter_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: Imagine http://t.co/98HBW2Xi in real-time across a whole data center of production #nodejs processes sampling both JS and C functions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:19:19 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148497593108930560, "id_str": "148497593108930561", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @seligoroff ryah: Imagine http://t.co/jndIrO5e in real-time across a whole data center of production #nodejs processes samplin...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Sun, 18 Dec 2011 20:19:19 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148497591632543740, "id_str": "148497591632543745", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @edjafarov jerrysievert: introducing servitude: http://t.co/ZZ75IgKl - CSS/JavaScript injection sugar with #bricksjs #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:19:19 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148497590537830400, "id_str": "148497590537830400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @functionsource ryah: Imagine http://t.co/jndIrO5e in real-time across a whole data center of production #nodejs processes sam...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:14:36 +0000", "from_user": "seligoroff", "from_user_id": 64225482, "from_user_id_str": "64225482", "from_user_name": "igor selivanov", "geo": null, "id": 148496403730145280, "id_str": "148496403730145280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/354125573/IMG_0025_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/354125573/IMG_0025_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: Imagine http://t.co/98HBW2Xi in real-time across a whole data center of production #nodejs processes sampling both JS and C functions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:14:13 +0000", "from_user": "edjafarov", "from_user_id": 18898176, "from_user_id_str": "18898176", "from_user_name": "Eldar Djafarov", "geo": null, "id": 148496307038855170, "id_str": "148496307038855168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/971019265/25-08-08_1708_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/971019265/25-08-08_1708_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jerrysievert: introducing servitude: http://t.co/WpuwTiAh - CSS/JavaScript injection sugar with #bricksjs #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:12:06 +0000", "from_user": "functionsource", "from_user_id": 279275657, "from_user_id_str": "279275657", "from_user_name": "FunctionSource", "geo": null, "id": 148495774471303170, "id_str": "148495774471303168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1306206357/Screen_shot_2011-03-31_at_Mar_31___11.15.50_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1306206357/Screen_shot_2011-03-31_at_Mar_31___11.15.50_AM_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: Imagine http://t.co/98HBW2Xi in real-time across a whole data center of production #nodejs processes sampling both JS and C functions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:11:44 +0000", "from_user": "chadlung", "from_user_id": 43794758, "from_user_id_str": "43794758", "from_user_name": "Chad Lung", "geo": null, "id": 148495682557329400, "id_str": "148495682557329409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1207577008/chad_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1207577008/chad_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:10:10 +0000", "from_user": "jerrysievert", "from_user_id": 79071437, "from_user_id_str": "79071437", "from_user_name": "Jerry Sievert", "geo": null, "id": 148495289374883840, "id_str": "148495289374883840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1472035024/Screen_shot_2010-07-08_at_6.16.10_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1472035024/Screen_shot_2010-07-08_at_6.16.10_PM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "introducing servitude: http://t.co/WpuwTiAh - CSS/JavaScript injection sugar with #bricksjs #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:08:12 +0000", "from_user": "dalmaer", "from_user_id": 4216361, "from_user_id_str": "4216361", "from_user_name": "Dion Almaer", "geo": null, "id": 148494794136621060, "id_str": "148494794136621056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/292949152/dionprofile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/292949152/dionprofile_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: Imagine http://t.co/98HBW2Xi in real-time across a whole data center of production #nodejs processes sampling both JS and C functions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:03:09 +0000", "from_user": "jimpick", "from_user_id": 15839929, "from_user_id_str": "15839929", "from_user_name": "Jim Pick", "geo": null, "id": 148493523379945470, "id_str": "148493523379945472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/680570347/jpick-240x240_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/680570347/jpick-240x240_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: Imagine http://t.co/98HBW2Xi in real-time across a whole data center of production #nodejs processes sampling both JS and C functions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:00:15 +0000", "from_user": "NunoGodinho", "from_user_id": 9971382, "from_user_id_str": "9971382", "from_user_name": "Nuno Godinho", "geo": null, "id": 148492793738838000, "id_str": "148492793738838016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/831407287/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/831407287/twitterProfilePhoto_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "RT @mikepluta: Windows Azure Adds Node.js Support, Hadoop Preview - ReadWriteCloud http://t.co/hMkHpxtS #hadoop #azure", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:57:53 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148492198814560260, "id_str": "148492198814560256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @shamoons: Posting files with #NodeJS and #expressjs http://t.co/MjbDNTTo #awesome", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:57:51 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148492191222870000, "id_str": "148492191222870016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Posting files with #NodeJS and #expressjs http://t.co/qz8DDke7 #awesome http://t.co/LU4AEZtC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:57:45 +0000", "from_user": "johlrogge", "from_user_id": 27765583, "from_user_id_str": "27765583", "from_user_name": "Joakim Ohlrogge", "geo": null, "id": 148492164580638720, "id_str": "148492164580638720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1295212288/Picture_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1295212288/Picture_6_normal.png", "source": "<a href="http://www.nambu.com/" rel="nofollow">Nambu</a>", "text": "Captivating combination: nodejs, busterjs, busterjs-mode and interfacing with git using git plumbing :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:55:30 +0000", "from_user": "francescaPasha", "from_user_id": 207559129, "from_user_id_str": "207559129", "from_user_name": "Francesca Krihely", "geo": null, "id": 148491599620476930, "id_str": "148491599620476928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1619685254/Screen_shot_2011-11-02_at_8.56.52_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619685254/Screen_shot_2011-11-02_at_8.56.52_PM_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@aaronheckmann check out this prezi featuring #Mongoose http://t.co/U9ypJVnr", "to_user": "aaronheckmann", "to_user_id": 13818902, "to_user_id_str": "13818902", "to_user_name": "Aaron Heckmann"}, +{"created_at": "Sun, 18 Dec 2011 19:52:22 +0000", "from_user": "francescaPasha", "from_user_id": 207559129, "from_user_id_str": "207559129", "from_user_name": "Francesca Krihely", "geo": null, "id": 148490808058847230, "id_str": "148490808058847232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1619685254/Screen_shot_2011-11-02_at_8.56.52_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619685254/Screen_shot_2011-11-02_at_8.56.52_PM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@orgnzit hey! would love hear how you used #MongoDB and #nodejs at the montreal hack day", "to_user": "orgnzit", "to_user_id": 178032946, "to_user_id_str": "178032946", "to_user_name": "Orgnz.it"}, +{"created_at": "Sun, 18 Dec 2011 19:50:59 +0000", "from_user": "alenart", "from_user_id": 20821510, "from_user_id_str": "20821510", "from_user_name": "Andre Lenartowicz", "geo": null, "id": 148490461114400770, "id_str": "148490461114400768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1332509059/179819_553460160001_76004188_32085459_5984159_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1332509059/179819_553460160001_76004188_32085459_5984159_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:50:12 +0000", "from_user": "jsgeneve", "from_user_id": 404035068, "from_user_id_str": "404035068", "from_user_name": "Javascript Gen\\u00E8ve", "geo": null, "id": 148490265106202620, "id_str": "148490265106202624", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1620267028/twitter_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620267028/twitter_normal.gif", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Ecrire un module pour #NodeJS http://t.co/tnUSeANq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:46:38 +0000", "from_user": "mikepluta", "from_user_id": 15150700, "from_user_id_str": "15150700", "from_user_name": "Mike Pluta", "geo": null, "id": 148489367432871940, "id_str": "148489367432871936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1584807716/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584807716/image_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "Windows Azure Adds Node.js Support, Hadoop Preview - ReadWriteCloud http://t.co/hMkHpxtS #hadoop #azure", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:42:42 +0000", "from_user": "jefkingabc", "from_user_id": 242907489, "from_user_id_str": "242907489", "from_user_name": "Jef King", "geo": null, "id": 148488377715527680, "id_str": "148488377715527681", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1628969602/HeadShot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628969602/HeadShot_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @jbueza: Rackspace's Cloud Monitoring System is ported from #Python to #NodeJS. http://t.co/Cvjkok2f", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:41:14 +0000", "from_user": "shamoons", "from_user_id": 20744357, "from_user_id_str": "20744357", "from_user_name": "Shamoon Siddiqui", "geo": null, "id": 148488009363365900, "id_str": "148488009363365890", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1568292716/shamoon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1568292716/shamoon_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Posting files with #NodeJS and #expressjs http://t.co/MjbDNTTo #awesome", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:35:42 +0000", "from_user": "BrianTRice", "from_user_id": 651403, "from_user_id_str": "651403", "from_user_name": "Brian T. Rice", "geo": null, "id": 148486615902322700, "id_str": "148486615902322688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/659659835/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/659659835/twitterProfilePhoto_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "#NodeJS gets a lot of flack for callbacks, but the evolutionary pressure yields nice reusable libraries like Async: https://t.co/1NahTcVV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:33:36 +0000", "from_user": "jbueza", "from_user_id": 141423083, "from_user_id_str": "141423083", "from_user_name": "Jaime Bueza", "geo": null, "id": 148486087029964800, "id_str": "148486087029964801", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Rackspace's Cloud Monitoring System is ported from #Python to #NodeJS. http://t.co/Cvjkok2f", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:30:20 +0000", "from_user": "NickSegV", "from_user_id": 440251603, "from_user_id_str": "440251603", "from_user_name": "Nick", "geo": null, "id": 148485266179498000, "id_str": "148485266179497984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Bit of stuffing around to get Cloud9 IDE running.. Great IDE for Nodejs tinkering though", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:26:53 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148484394670243840, "id_str": "148484394670243840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://www.eqentia.com" rel="nofollow">Eqentia</a>", "text": "RT @canadatechnews: #hackmtl gathers 72 developers hacking on nodejs, redis and mongodb http://t.co/0rbsNQb7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:26:51 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148484386982080500, "id_str": "148484386982080513", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#hackmtl gathers 72 developers hacking on nodejs, redis and mongodb http://t.co/RPJgkmqi http://t.co/ikByDI31", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:22:43 +0000", "from_user": "canadatechnews", "from_user_id": 90630787, "from_user_id_str": "90630787", "from_user_name": "Canada Tech Eqentia", "geo": null, "id": 148483348510146560, "id_str": "148483348510146560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/540476847/logo_small_nobrandline_square_border_3D_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/540476847/logo_small_nobrandline_square_border_3D_normal.jpg", "source": "<a href="http://www.eqentia.com" rel="nofollow">Eqentia</a>", "text": "#hackmtl gathers 72 developers hacking on nodejs, redis and mongodb http://t.co/0rbsNQb7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:21:49 +0000", "from_user": "brianleroux", "from_user_id": 676363, "from_user_id_str": "676363", "from_user_name": "xno\\u0279\\u01DD\\u0283 u\\u0250\\u0131\\u0279q", "geo": null, "id": 148483123259256830, "id_str": "148483123259256833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1400507401/Photo_on_2011-06-17_at_12.40__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1400507401/Photo_on_2011-06-17_at_12.40__2_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "Wishlist: ability to package a specific nodejs executable version with my node_modules", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:21:42 +0000", "from_user": "debashis_saha", "from_user_id": 48057427, "from_user_id_str": "48057427", "from_user_name": "Debashis Saha", "geo": null, "id": 148483093521645570, "id_str": "148483093521645569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1655001743/DS_square_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655001743/DS_square_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: #nodejs #eclipse plugin with code assist - now we're talking: http://t.co/6F2Zr1z2 http://t.co/arXCC8DT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:19:38 +0000", "from_user": "cjoudrey", "from_user_id": 27691615, "from_user_id_str": "27691615", "from_user_name": "Christian Joudrey", "geo": null, "id": 148482573146927100, "id_str": "148482573146927104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1257970012/gravatar_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1257970012/gravatar_normal.jpeg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @mtw: #hackmtl gathers 72 developers hacking on nodejs, redis and mongodb http://t.co/Fa3c4hxV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:19:24 +0000", "from_user": "changertech", "from_user_id": 300474121, "from_user_id_str": "300474121", "from_user_name": "Changer Technologies", "geo": null, "id": 148482511822000130, "id_str": "148482511822000128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1358732030/logo-square_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1358732030/logo-square_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Nodester: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/BwLp4eHS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:19:21 +0000", "from_user": "Nodester", "from_user_id": 240751001, "from_user_id_str": "240751001", "from_user_name": "Nodester", "geo": null, "id": 148482499973103600, "id_str": "148482499973103616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "w00t! RT @rajeshpillai: @Nodester Eager to setup my first nodejs projects. All thanks go to #nodester for giving a free coupon :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:14:59 +0000", "from_user": "SurigaoDigitalS", "from_user_id": 423168459, "from_user_id_str": "423168459", "from_user_name": "Surigao Digital", "geo": null, "id": 148481401950453760, "id_str": "148481401950453760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1661951087/Surigao_Digital_Logo_Black_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661951087/Surigao_Digital_Logo_Black_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I\\u2019m working on a small browser game myself using jQuery, nodejs and MongoDB with the server doing a gzip JSON response", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:14:47 +0000", "from_user": "mtw", "from_user_id": 4609741, "from_user_id_str": "4609741", "from_user_name": "Montreal Tech Watch", "geo": null, "id": 148481353405571070, "id_str": "148481353405571072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1311424156/Screen_shot_2011-04-14_at_11.25.36_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1311424156/Screen_shot_2011-04-14_at_11.25.36_AM_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#hackmtl gathers 72 developers hacking on nodejs, redis and mongodb http://t.co/Fa3c4hxV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:09:11 +0000", "from_user": "TooTallNate", "from_user_id": 277724842, "from_user_id_str": "277724842", "from_user_name": "Nathan Rajlich", "geo": null, "id": 148479943171514370, "id_str": "148479943171514369", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1410702232/5dc62d823e229c44665830bbe429c338_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1410702232/5dc62d823e229c44665830bbe429c338_normal.jpeg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@innoying #nodejs v0.6.6 for iOS source is up: https://t.co/z7g6Qfep", "to_user": "innoying", "to_user_id": 144001499, "to_user_id_str": "144001499", "to_user_name": "Luke Young"}, +{"created_at": "Sun, 18 Dec 2011 19:06:42 +0000", "from_user": "kovchiy", "from_user_id": 227331487, "from_user_id_str": "227331487", "from_user_name": "Danil Kovchiy", "geo": null, "id": 148479315334541300, "id_str": "148479315334541312", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1351905818/mua_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1351905818/mua_normal.PNG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u0441\\u0435\\u0439\\u0447\\u0430\\u0441 \\u043F\\u043E\\u043B\\u0435\\u0437\\u043B\\u0438 \\u043D\\u0430\\u0440\\u0443\\u0436\\u0443 \\u0432\\u0441\\u044F\\u043A\\u0438\\u0435 \\u0444\\u0443\\u0442\\u0443\\u0440\\u0438\\u0441\\u0442\\u0438\\u0447\\u043D\\u044B\\u0435 \\u044F\\u0437\\u044B\\u043A\\u0438 \\u0442\\u0438\\u043F\\u0430 nodejs, go, coffeescript... \\u043A\\u0430\\u0436\\u0435\\u0442\\u0441\\u044F \\u043C\\u043D\\u0435, \\u0447\\u0442\\u043E \\u0442\\u043E\\u043F\\u0447\\u0443\\u0442\\u0441\\u044F \\u043E\\u043D\\u0438, \\u0434\\u043E\\u043B\\u0436\\u043D\\u043E \\u0431\\u044B\\u0442\\u044C \\u0447\\u0442\\u043E-\\u0442\\u043E \\u0441\\u0432\\u0435\\u0436\\u0435\\u0435", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:06:19 +0000", "from_user": "__juju__", "from_user_id": 18388231, "from_user_id_str": "18388231", "from_user_name": "julien \\u270C", "geo": null, "id": 148479221562482700, "id_str": "148479221562482688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681093352/15612c3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681093352/15612c3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/YG5tubvs ~ from python to nodejs - interesting", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:04:33 +0000", "from_user": "Abderrahmane_TJ", "from_user_id": 16528800, "from_user_id_str": "16528800", "from_user_name": "Abderrahmane T.J.", "geo": null, "id": 148478777012400130, "id_str": "148478777012400129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317050036/twitter_logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317050036/twitter_logo_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @felixge: Hacking on a patch/proposal for catch-all listener support in #nodejs. this.on(function(event, arg1, \\u2026) { }). Thoughts?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:02:13 +0000", "from_user": "heri", "from_user_id": 1578491, "from_user_id_str": "1578491", "from_user_name": "heri", "geo": null, "id": 148478188018872320, "id_str": "148478188018872320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1212243024/Screen_shot_2011-01-10_at_5.35.57_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1212243024/Screen_shot_2011-01-10_at_5.35.57_PM_normal.png", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "#hackmtl : nodejs/redis/mongodb hackathon http://t.co/2NAUqzx3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:02:06 +0000", "from_user": "functionsource", "from_user_id": 279275657, "from_user_id_str": "279275657", "from_user_name": "FunctionSource", "geo": null, "id": 148478158813921280, "id_str": "148478158813921280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1306206357/Screen_shot_2011-03-31_at_Mar_31___11.15.50_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1306206357/Screen_shot_2011-03-31_at_Mar_31___11.15.50_AM_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @felixge: Hacking on a patch/proposal for catch-all listener support in #nodejs. this.on(function(event, arg1, \\u2026) { }). Thoughts?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:55:31 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148476502814629900, "id_str": "148476502814629888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://chrome.google.com/extensions/detail/aicelmgbddfgmpieedjiggifabdpcnln" rel="nofollow">FaWave</a>", "text": "RT @fengmk2: the node.js aesthetic :: The Universe of Discord http://t.co/lzkKdEyC #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:55:29 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148476495415881730, "id_str": "148476495415881728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "the node.js aesthetic :: The Universe of Discord http://t.co/O4u4gTzm #nodejs http://t.co/QHHz5T8a", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:54:30 +0000", "from_user": "dalmaer", "from_user_id": 4216361, "from_user_id_str": "4216361", "from_user_name": "Dion Almaer", "geo": null, "id": 148476246152581120, "id_str": "148476246152581120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/292949152/dionprofile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/292949152/dionprofile_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @felixge: Hacking on a patch/proposal for catch-all listener support in #nodejs. this.on(function(event, arg1, \\u2026) { }). Thoughts?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:52:05 +0000", "from_user": "felixge", "from_user_id": 9599342, "from_user_id_str": "9599342", "from_user_name": "Felix Geisend\\u00F6rfer", "geo": null, "id": 148475639744311300, "id_str": "148475639744311296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1372196280/felix_head_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1372196280/felix_head_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Hacking on a patch/proposal for catch-all listener support in #nodejs. this.on(function(event, arg1, \\u2026) { }). Thoughts?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:46:50 +0000", "from_user": "fengmk2", "from_user_id": 21738641, "from_user_id_str": "21738641", "from_user_name": "MK2", "geo": null, "id": 148474316986662900, "id_str": "148474316986662915", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/285484301/imk2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/285484301/imk2_normal.png", "source": "<a href="http://chrome.google.com/extensions/detail/aicelmgbddfgmpieedjiggifabdpcnln" rel="nofollow">FaWave</a>", "text": "the node.js aesthetic :: The Universe of Discord http://t.co/lzkKdEyC #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:39:56 +0000", "from_user": "zeroload", "from_user_id": 14908513, "from_user_id_str": "14908513", "from_user_name": "Vincent Voyer", "geo": null, "id": 148472580486082560, "id_str": "148472580486082560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1427267879/myfacev2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1427267879/myfacev2_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @naholyr: Now you have 500 asset managers in #nodejs it's time for BDD test suites... I've seen at least 6 just for today. What's wrong with you guys?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:38:11 +0000", "from_user": "larsw", "from_user_id": 812367, "from_user_id_str": "812367", "from_user_name": "Lars Wilhelmsen", "geo": null, "id": 148472141644435460, "id_str": "148472141644435457", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1493520937/286554_506803857228_337700054_135341_3372933_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1493520937/286554_506803857228_337700054_135341_3372933_o_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ferventcoder: Now the installed version \"@chocolateynuget: #nodejs.install: Node JS - Evented I/O for v8 JavaScript. #chocolatey #new\" /cc @garyshort", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:36:29 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148471714035146750, "id_str": "148471714035146752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @teashawn: The switch: #Python to #NodeJS http://t.co/WO4cccZa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:36:27 +0000", "from_user": "fengmk2", "from_user_id": 21738641, "from_user_id_str": "21738641", "from_user_name": "MK2", "geo": null, "id": 148471706284081150, "id_str": "148471706284081152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/285484301/imk2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/285484301/imk2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: The switch: #Python to #NodeJS http://t.co/3snBam2b http://t.co/wLL40Wqh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:31:37 +0000", "from_user": "ferventcoder", "from_user_id": 9645312, "from_user_id_str": "9645312", "from_user_name": "Rob Reynolds", "geo": null, "id": 148470486320414720, "id_str": "148470486320414720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1176943763/IMG_3766_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1176943763/IMG_3766_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Now the installed version \"@chocolateynuget: #nodejs.install: Node JS - Evented I/O for v8 JavaScript. #chocolatey #new\" /cc @garyshort", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:26:00 +0000", "from_user": "andrew_j_stone", "from_user_id": 318079932, "from_user_id_str": "318079932", "from_user_name": "Andrew J. Stone", "geo": null, "id": 148469076174438400, "id_str": "148469076174438400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1598642373/284659_696310082096_24501632_36175371_4924429_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598642373/284659_696310082096_24501632_36175371_4924429_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Reading through the #nodejs http code. Need to figure out how to manually reuse sokets.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:23:52 +0000", "from_user": "12dcode", "from_user_id": 185096297, "from_user_id_str": "185096297", "from_user_name": "Patrick Ryan", "geo": null, "id": 148468536304615420, "id_str": "148468536304615425", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1114356976/39860_413431087542_571862542_4739730_5640997_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1114356976/39860_413431087542_571862542_4739730_5640997_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Using a mediator pattern for NodeJS to consolidate the API gateway. MAkes devs happy. https://t.co/LHot472i", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:23:11 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148468366871498750, "id_str": "148468366871498752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @PierreArlais: how to make a major tech shift switching from #python to #nodejs http://t.co/T85jdvZg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:23:09 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148468359091068930, "id_str": "148468359091068930", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "how to make a major tech shift switching from #python to #nodejs http://t.co/F0c5ncwm http://t.co/NGSWL7v4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:17:36 +0000", "from_user": "kr428", "from_user_id": 207401188, "from_user_id_str": "207401188", "from_user_name": "Kristian", "geo": null, "id": 148466958776537100, "id_str": "148466958776537090", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1525504632/thorns_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1525504632/thorns_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Web scraping and growl notifications with node.js and jsdom http://t.co/4JirG49w #growl #nodejs #notifications ... http://t.co/ggSrNaRQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:16:51 +0000", "from_user": "andreftavares", "from_user_id": 98865791, "from_user_id_str": "98865791", "from_user_name": "Andr\\u00E9 Tavares", "geo": null, "id": 148466773140848640, "id_str": "148466773140848640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1420596539/rapastwitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1420596539/rapastwitter_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "What's the best way to access a #MongoDB database via #nodejs ? Not having much luck with 'node-mongodb-native' :/", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:11:11 +0000", "from_user": "PierreArlais", "from_user_id": 19884434, "from_user_id_str": "19884434", "from_user_name": "Pierre Arlais", "geo": null, "id": 148465345248755700, "id_str": "148465345248755712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1266575001/eightbit-04d0a435-e3b3-44d2-96d9-1c5d414a3411_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266575001/eightbit-04d0a435-e3b3-44d2-96d9-1c5d414a3411_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "how to make a major tech shift switching from #python to #nodejs http://t.co/T85jdvZg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:07:49 +0000", "from_user": "percysystem", "from_user_id": 128736352, "from_user_id_str": "128736352", "from_user_name": "PeRcY QuIsPe", "geo": null, "id": 148464500486574080, "id_str": "148464500486574082", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1244186137/leamitie_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1244186137/leamitie_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@freddier holas el curso q dieron de nodejs el 15 de diciembre peuden subirlo ala pagina para verlo .. esq no estuve ese dia", "to_user": "freddier", "to_user_id": 16742912, "to_user_id_str": "16742912", "to_user_name": "John Freddy Vega"}, +{"created_at": "Sun, 18 Dec 2011 18:07:39 +0000", "from_user": "tjgillis", "from_user_id": 3957861, "from_user_id_str": "3957861", "from_user_name": "Thomas", "geo": null, "id": 148464456177946620, "id_str": "148464456177946624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1542511817/guinea_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542511817/guinea_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "using the dmg failed to install nodejs correctly on my mac with npm. Removed both (i think) and going to attempt this from src with macports", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:04:58 +0000", "from_user": "briangarcia", "from_user_id": 14496156, "from_user_id_str": "14496156", "from_user_name": "Brian Garcia", "geo": null, "id": 148463783294144500, "id_str": "148463783294144512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1550200402/94E86FD8-4F27-43AC-B336-0525EDBFAC24_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1550200402/94E86FD8-4F27-43AC-B336-0525EDBFAC24_normal", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@existentialism Add to build? RT @tjholowaychuk: messing around with an open-source website screenshot app #nodejs - http://t.co/TctlEUCx", "to_user": "existentialism", "to_user_id": 1710331, "to_user_id_str": "1710331", "to_user_name": "Brian Ng"}, +{"created_at": "Sun, 18 Dec 2011 18:03:39 +0000", "from_user": "favstar_pop", "from_user_id": 217046870, "from_user_id_str": "217046870", "from_user_name": "Favstar Pop", "geo": null, "id": 148463452082540540, "id_str": "148463452082540544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1170017104/twitterAvatarWithHat_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1170017104/twitterAvatarWithHat_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:59:25 +0000", "from_user": "ckristhoff", "from_user_id": 419115122, "from_user_id_str": "419115122", "from_user_name": "Cristhiam Fernandez", "geo": null, "id": 148462383260635140, "id_str": "148462383260635136", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1652907195/image_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652907195/image_normal.jpeg", "source": "<a href="http://www.digsby.com/?utm_campaign=twitter" rel="nofollow">Digsby</a>", "text": "Acabo de correr mi ejemplo de #nodejs gracias a #mejorandola .Muy interesante, pero se podr\\u00E1 usar para producci\\u00F3n?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:59:01 +0000", "from_user": "mamund", "from_user_id": 1121591, "from_user_id_str": "1121591", "from_user_name": "Mike Amundsen", "geo": null, "id": 148462283830460400, "id_str": "148462283830460416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/340449683/madmen_icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/340449683/madmen_icon_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "leveling up on my nodejs code skilz. next up, groking the world of modules & npm #sharpeningTheSaw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:52:21 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148460604586344450, "id_str": "148460604586344448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://chrome.google.com/extensions/detail/aicelmgbddfgmpieedjiggifabdpcnln" rel="nofollow">FaWave</a>", "text": "RT @fengmk2: Writing node.js extensions with C++ and V8 http://t.co/GiCIIDou #nodejs# http://t.co/dxaafCEb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:52:20 +0000", "from_user": "yannlombard", "from_user_id": 21089709, "from_user_id_str": "21089709", "from_user_name": "Yann Lombard", "geo": null, "id": 148460603843944450, "id_str": "148460603843944448", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1273581053/eightbit-6dcb89fa-1040-47d6-828d-f78e3351e0f9_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273581053/eightbit-6dcb89fa-1040-47d6-828d-f78e3351e0f9_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Mes vacances de no\\u00EBl sont foutue #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:52:19 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148460596575215600, "id_str": "148460596575215616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Writing node.js extensions with C++ and V8 http://t.co/zVcBsUOC #nodejs# http://t.co/KAM57Ir1 http://t.co/rJ9nqBnp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:52:17 +0000", "from_user": "rajeshpillai", "from_user_id": 9589242, "from_user_id_str": "9589242", "from_user_name": "rajeshpillai", "geo": null, "id": 148460591701438460, "id_str": "148460591701438464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/505188893/rajesh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/505188893/rajesh_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Nodester Eager to setup my first nodejs projects. All thanks go to #nodester for giving a free coupon :)", "to_user": "Nodester", "to_user_id": 240751001, "to_user_id_str": "240751001", "to_user_name": "Nodester"}, +{"created_at": "Sun, 18 Dec 2011 17:47:39 +0000", "from_user": "shamoons", "from_user_id": 20744357, "from_user_id_str": "20744357", "from_user_name": "Shamoon Siddiqui", "geo": null, "id": 148459424296599550, "id_str": "148459424296599553", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1568292716/shamoon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1568292716/shamoon_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "How can I upload a file using #NodeJS? http://t.co/yioQbefc #helpplease", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:46:53 +0000", "from_user": "fengmk2", "from_user_id": 21738641, "from_user_id_str": "21738641", "from_user_name": "MK2", "geo": null, "id": 148459230112915460, "id_str": "148459230112915456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/285484301/imk2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/285484301/imk2_normal.png", "source": "<a href="http://chrome.google.com/extensions/detail/aicelmgbddfgmpieedjiggifabdpcnln" rel="nofollow">FaWave</a>", "text": "Writing node.js extensions with C++ and V8 http://t.co/GiCIIDou #nodejs# http://t.co/dxaafCEb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:40:29 +0000", "from_user": "arifLogic", "from_user_id": 40475679, "from_user_id_str": "40475679", "from_user_name": "arif setyawan", "geo": null, "id": 148457619542114300, "id_str": "148457619542114306", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1545110950/asty-01_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545110950/asty-01_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tjholowaychuk: messing around with an open-source website screenshot app powered by #nodejs, phantomjs, redis, etc - http://t.co/t9RD674A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:32:31 +0000", "from_user": "danilopopeye", "from_user_id": 8930342, "from_user_id_str": "8930342", "from_user_name": "Danilo Sousa", "geo": null, "id": 148455613263912960, "id_str": "148455613263912962", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1648567995/27420_576203864_6868_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648567995/27420_576203864_6868_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:29:27 +0000", "from_user": "LabatG", "from_user_id": 394627086, "from_user_id_str": "394627086", "from_user_name": "Labat Guillaume", "geo": null, "id": 148454845014212600, "id_str": "148454845014212608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.shareaholic.com" rel="nofollow">shareaholic app</a>", "text": "Learning Javascript with Object Graphs (Part III) - How To Node - NodeJS - http://t.co/MdPfKKVf #neoweb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:29:20 +0000", "from_user": "LabatG", "from_user_id": 394627086, "from_user_id_str": "394627086", "from_user_name": "Labat Guillaume", "geo": null, "id": 148454812982312960, "id_str": "148454812982312960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.shareaholic.com" rel="nofollow">shareaholic app</a>", "text": "Learning Javascript with Object Graphs (Part II) - How To Node - NodeJS - http://t.co/x5mkDqIP #neoweb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:29:15 +0000", "from_user": "LabatG", "from_user_id": 394627086, "from_user_id_str": "394627086", "from_user_name": "Labat Guillaume", "geo": null, "id": 148454793151651840, "id_str": "148454793151651840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.shareaholic.com" rel="nofollow">shareaholic app</a>", "text": "Learning Javascript with Object Graphs (Part I) - How To Node - NodeJS - http://t.co/KbRkIiMa #neoweb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:27:48 +0000", "from_user": "j_me_roberts", "from_user_id": 294383761, "from_user_id_str": "294383761", "from_user_name": "Jamie Roberts", "geo": null, "id": 148454428658253820, "id_str": "148454428658253824", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1342131439/DunsScotus11_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1342131439/DunsScotus11_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "nodejs + redis = http://t.co/a715kTGe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:27:23 +0000", "from_user": "stackfeed", "from_user_id": 237310237, "from_user_id_str": "237310237", "from_user_name": "StackOverflow", "geo": null, "id": 148454322303275000, "id_str": "148454322303275008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "How can I upload af file using Node.js?: I've already seen Uploading images using NodeJS, Express, and Mongo but... http://t.co/AqEZsaN7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:26:17 +0000", "from_user": "HardBit", "from_user_id": 15433389, "from_user_id_str": "15433389", "from_user_name": "Iv\\u00E1n Gonz\\u00E1lez", "geo": null, "id": 148454047467307000, "id_str": "148454047467307008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1324406069/IMG_0511_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1324406069/IMG_0511_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tjholowaychuk: messing around with an open-source website screenshot app powered by #nodejs, phantomjs, redis, etc - http://t.co/t9RD674A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:23:55 +0000", "from_user": "nguyenkha", "from_user_id": 63092051, "from_user_id_str": "63092051", "from_user_name": "\\u0110\\u1ED7 Nguy\\u00EAn Kha", "geo": null, "id": 148453452853428220, "id_str": "148453452853428225", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/717238244/avtar_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/717238244/avtar_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Simple web command line by #nodejs http://t.co/0jaZeoKr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:22:16 +0000", "from_user": "ottawa_js", "from_user_id": 310368917, "from_user_id_str": "310368917", "from_user_name": "Ottawa JavaScript", "geo": null, "id": 148453036883320830, "id_str": "148453036883320833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1381554740/nodejs_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1381554740/nodejs_logo_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Safari on iOS</a>", "text": "Node.js modules you should know about: socket.io http://t.co/VRQkYfSQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:22:06 +0000", "from_user": "functionsource", "from_user_id": 279275657, "from_user_id_str": "279275657", "from_user_name": "FunctionSource", "geo": null, "id": 148452993073807360, "id_str": "148452993073807361", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1306206357/Screen_shot_2011-03-31_at_Mar_31___11.15.50_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1306206357/Screen_shot_2011-03-31_at_Mar_31___11.15.50_AM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tjholowaychuk: messing around with an open-source website screenshot app powered by #nodejs, phantomjs, redis, etc - http://t.co/t9RD674A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:18:09 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148452000735039500, "id_str": "148452000735039489", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @ariyahidayat tjholowaychuk: messing around with an open-source website screenshot app powered by #nodejs, phantomjs, redis, e...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:18:09 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148451999539658750, "id_str": "148451999539658752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @dalmaer tjholowaychuk: messing around with an open-source website screenshot app powered by #nodejs, phantomjs, redis, etc - ...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:18:09 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148451998025519100, "id_str": "148451998025519105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @cloudshift1 pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/4bwSLUie hint: @nodejs, lots of...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:14:00 +0000", "from_user": "ariyahidayat", "from_user_id": 15608761, "from_user_id_str": "15608761", "from_user_name": "Ariya Hidayat", "geo": null, "id": 148450955908755460, "id_str": "148450955908755456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1662373732/headshot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662373732/headshot_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tjholowaychuk: messing around with an open-source website screenshot app powered by #nodejs, phantomjs, redis, etc - http://t.co/t9RD674A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:12:41 +0000", "from_user": "dalmaer", "from_user_id": 4216361, "from_user_id_str": "4216361", "from_user_name": "Dion Almaer", "geo": null, "id": 148450622537089020, "id_str": "148450622537089024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/292949152/dionprofile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/292949152/dionprofile_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tjholowaychuk: messing around with an open-source website screenshot app powered by #nodejs, phantomjs, redis, etc - http://t.co/t9RD674A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:01:24 +0000", "from_user": "cloudshift1", "from_user_id": 337691852, "from_user_id_str": "337691852", "from_user_name": "cloudshift", "geo": null, "id": 148447785270775800, "id_str": "148447785270775808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:00:22 +0000", "from_user": "naholyr", "from_user_id": 35705169, "from_user_id_str": "35705169", "from_user_name": "Nicolas Chambrier", "geo": null, "id": 148447525702074370, "id_str": "148447525702074368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/412641899/52b68aaa7ba1e8f6c699560f97573443_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/412641899/52b68aaa7ba1e8f6c699560f97573443_normal.png", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Now you have 500 asset managers in #nodejs it's time for BDD test suites... I've seen at least 6 just for today. What's wrong with you guys?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:57:03 +0000", "from_user": "Sirwan", "from_user_id": 19653283, "from_user_id_str": "19653283", "from_user_name": "Sirwan Qutbi", "geo": null, "id": 148446689110392830, "id_str": "148446689110392832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700377110/4YGUjy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700377110/4YGUjy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#NodeJs #Node is going to change everything on the #web #tech #world. ty @ryah", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:51:19 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 148445247964315650, "id_str": "148445247964315649", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "speculum (0.0.3): http://t.co/rUt9v5ea NodeJS BDD Test Suite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:50:45 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148445104540106750, "id_str": "148445104540106753", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Web scraping and growl notifications with node.js and jsdom http://t.co/4JirG49w #growl #nodejs #notifications ... http://t.co/ggSrNaRQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:44:10 +0000", "from_user": "chocolateynuget", "from_user_id": 342874803, "from_user_id_str": "342874803", "from_user_name": "Chocolatey NuGet", "geo": null, "id": 148443448364634100, "id_str": "148443448364634112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1527393850/chocolateyicon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1527393850/chocolateyicon_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "nodejs.install: Node JS - Evented I/O for v8 JavaScript. #chocolatey #new", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:41:25 +0000", "from_user": "abhikpramanik", "from_user_id": 142687317, "from_user_id_str": "142687317", "from_user_name": "Abhik Pramanik", "geo": null, "id": 148442754505113600, "id_str": "148442754505113600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1293235464/download_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1293235464/download_normal.jpeg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: The switch: #Python to #NodeJS http://t.co/3snBam2b http://t.co/wLL40Wqh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:40:50 +0000", "from_user": "rbolgov", "from_user_id": 36910075, "from_user_id_str": "36910075", "from_user_name": "Bolgov Roman", "geo": null, "id": 148442608669167600, "id_str": "148442608669167616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1284608872/ava_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1284608872/ava_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @NodeJsCommunity The switch: #Python to #NodeJS http://t.co/HWxhybsL http://t.co/7EJUAXmZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:40:43 +0000", "from_user": "roberskilots", "from_user_id": 36629897, "from_user_id_str": "36629897", "from_user_name": "Rob Skillington", "geo": null, "id": 148442580730908670, "id_str": "148442580730908672", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1494830257/Capture_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1494830257/Capture_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/SPeX3aHe website re-design looks pretty stunning! @NodeJsCommunity", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:33:36 +0000", "from_user": "johnny_t", "from_user_id": 13405032, "from_user_id_str": "13405032", "from_user_name": "John Thornton", "geo": null, "id": 148440786294411260, "id_str": "148440786294411265", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1666779859/1403e08_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666779859/1403e08_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tjholowaychuk: messing around with an open-source website screenshot app powered by #nodejs, phantomjs, redis, etc - http://t.co/t9RD674A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:32:14 +0000", "from_user": "darrellpratt", "from_user_id": 15535975, "from_user_id_str": "15535975", "from_user_name": "Darrell Pratt", "geo": null, "id": 148440444437667840, "id_str": "148440444437667840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1159639029/31758_402638536937_646921937_4618867_2862895_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1159639029/31758_402638536937_646921937_4618867_2862895_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tjholowaychuk: messing around with an open-source website screenshot app powered by #nodejs, phantomjs, redis, etc - http://t.co/t9RD674A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:28:12 +0000", "from_user": "ferventcoder", "from_user_id": 9645312, "from_user_id_str": "9645312", "from_user_name": "Rob Reynolds", "geo": null, "id": 148439428799545340, "id_str": "148439428799545344", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1176943763/IMG_3766_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1176943763/IMG_3766_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@garyshort http://t.co/JTuHsewu #nodejs installer cinst nodejs.install", "to_user": "garyshort", "to_user_id": 1176401, "to_user_id_str": "1176401", "to_user_name": "Gary Short"}, +{"created_at": "Sun, 18 Dec 2011 16:21:56 +0000", "from_user": "marcoegli", "from_user_id": 226274466, "from_user_id_str": "226274466", "from_user_name": "Marco Egli", "geo": null, "id": 148437854299766800, "id_str": "148437854299766784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1655118916/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655118916/profile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tjholowaychuk: messing around with an open-source website screenshot app powered by #nodejs, phantomjs, redis, etc - http://t.co/t9RD674A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:21:46 +0000", "from_user": "notzach", "from_user_id": 11880322, "from_user_id_str": "11880322", "from_user_name": "zach", "geo": null, "id": 148437811886952450, "id_str": "148437811886952448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1143251511/photo_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1143251511/photo_normal.jpeg", "source": "<a href="http://posterous.com" rel="nofollow">Posterous</a>", "text": "Web scraping and growl notifications with node.js and jsdom http://t.co/nobNUl1b #growl #nodejs #notifications #webscraping", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:20:13 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148437419644039170, "id_str": "148437419644039168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The switch: #Python to #NodeJS http://t.co/3snBam2b http://t.co/wLL40Wqh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:18:02 +0000", "from_user": "ouvanous", "from_user_id": 15946024, "from_user_id_str": "15946024", "from_user_name": "Samuel Morello", "geo": null, "id": 148436870152466430, "id_str": "148436870152466432", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1555793189/sam-small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555793189/sam-small_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tjholowaychuk: palette - image color palette extraction lib for #nodejs - https://t.co/bwzPe8NP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Sun, 18 Dec 2011 16:16:55 +0000", "from_user": "pedrogte", "from_user_id": 16401507, "from_user_id_str": "16401507", "from_user_name": "Pedro Teixeira", "geo": null, "id": 148436588282650620, "id_str": "148436588282650625", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1591778458/DSC02359-2_copy_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591778458/DSC02359-2_copy_normal.JPG", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "did I recently tell you how great nodemon is? http://t.co/ERO1joL4 #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:02:00 +0000", "from_user": "debug_bird", "from_user_id": 324837805, "from_user_id_str": "324837805", "from_user_name": "Jason Zoo", "geo": null, "id": 148432836133793800, "id_str": "148432836133793792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699203750/___normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699203750/___normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "How to Install Node.js - How To Node - NodeJS http://t.co/FPATV7QX via @creationix", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:59:49 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 148432286688346100, "id_str": "148432286688346112", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "speculum (0.0.2): http://t.co/rUt9v5ea NodeJS BDD Test Suite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:59:19 +0000", "from_user": "bpierre", "from_user_id": 16317137, "from_user_id_str": "16317137", "from_user_name": "Pierre Bertet", "geo": null, "id": 148432161849081860, "id_str": "148432161849081856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1328521406/avatar-2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1328521406/avatar-2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tjholowaychuk: messing around with an open-source website screenshot app powered by #nodejs, phantomjs, redis, etc - http://t.co/t9RD674A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:59:01 +0000", "from_user": "sadasant", "from_user_id": 101949871, "from_user_id_str": "101949871", "from_user_name": "Daniel R.", "geo": null, "id": 148432084132835330, "id_str": "148432084132835328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1619598037/sadasant_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619598037/sadasant_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tjholowaychuk: messing around with an open-source website screenshot app powered by #nodejs, phantomjs, redis, etc - http://t.co/t9RD674A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:57:05 +0000", "from_user": "teashawn", "from_user_id": 78538975, "from_user_id_str": "78538975", "from_user_name": "Tihomir Petkov", "geo": null, "id": 148431598897987600, "id_str": "148431598897987585", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1555860376/me_200x200_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555860376/me_200x200_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "The switch: #Python to #NodeJS http://t.co/WO4cccZa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:56:49 +0000", "from_user": "tjholowaychuk", "from_user_id": 29255412, "from_user_id_str": "29255412", "from_user_name": "TJ Holowaychuk", "geo": null, "id": 148431533257138180, "id_str": "148431533257138178", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/124810348/DSC_0009_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/124810348/DSC_0009_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "messing around with an open-source website screenshot app powered by #nodejs, phantomjs, redis, etc - http://t.co/t9RD674A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:54:02 +0000", "from_user": "jsgeneve", "from_user_id": 404035068, "from_user_id_str": "404035068", "from_user_name": "Javascript Gen\\u00E8ve", "geo": null, "id": 148430831524904960, "id_str": "148430831524904960", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1620267028/twitter_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620267028/twitter_normal.gif", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Comment d\\u00E9ployer une application #nodejs avec monit, nginx et bouncy - http://t.co/YvzceF08", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:52:14 +0000", "from_user": "jsgeneve", "from_user_id": 404035068, "from_user_id_str": "404035068", "from_user_name": "Javascript Gen\\u00E8ve", "geo": null, "id": 148430380012285950, "id_str": "148430380012285953", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1620267028/twitter_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620267028/twitter_normal.gif", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@rpresedo C'est not\\u00E9: trop de #nodejs dans le flux d'actualit\\u00E9... et voil\\u00E0, un de plus :)", "to_user": "rpresedo", "to_user_id": 18867086, "to_user_id_str": "18867086", "to_user_name": "Roberto Presedo", "in_reply_to_status_id": 148426158382383100, "in_reply_to_status_id_str": "148426158382383104"}, +{"created_at": "Sun, 18 Dec 2011 15:51:51 +0000", "from_user": "ldn_tech_exec", "from_user_id": 20591684, "from_user_id_str": "20591684", "from_user_name": "London Tech Exec", "geo": null, "id": 148430283392303100, "id_str": "148430283392303104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1361306073/Screen_shot_2011-05-19_at_22.12.46_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1361306073/Screen_shot_2011-05-19_at_22.12.46_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "LESS and Sass are the new CSS, and works OTB with #nodejs http://t.co/4pnOWZGR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:49:12 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148429616724443140, "id_str": "148429616724443137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "How to deploy a #nodejs application with monit, nginx and bouncy http://t.co/1eelJRiJ http://t.co/rBHaO2VF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:44:25 +0000", "from_user": "davidjrusek", "from_user_id": 280319660, "from_user_id_str": "280319660", "from_user_name": "David Rusek", "geo": null, "id": 148428411113705470, "id_str": "148428411113705472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1324927535/2011_04_12_026_Pbwm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1324927535/2011_04_12_026_Pbwm_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "sometimes I just go to hacker news to read the #nodejs and #mongdb posts. I lol.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:38:41 +0000", "from_user": "masylum", "from_user_id": 2475601, "from_user_id_str": "2475601", "from_user_name": "Pau", "geo": null, "id": 148426966285037570, "id_str": "148426966285037569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/53868095/CIMG6255_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/53868095/CIMG6255_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "How to deploy a #nodejs application with monit, nginx and bouncy http://t.co/8gEkfjgo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:34:52 +0000", "from_user": "modeerf", "from_user_id": 15188409, "from_user_id_str": "15188409", "from_user_name": "modeerf", "geo": null, "id": 148426008570241020, "id_str": "148426008570241024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1296892805/198538_10150136943803595_638368594_6603821_5858502_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1296892805/198538_10150136943803595_638368594_6603821_5858502_n_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @javascriptalert: JLOUIS Ramblings: Differences between Node.js and Erlang: http://t.co/VUlBaNge", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:30:41 +0000", "from_user": "amtindia", "from_user_id": 17646260, "from_user_id_str": "17646260", "from_user_name": "AMT", "geo": null, "id": 148424955783163900, "id_str": "148424955783163904", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/341107159/AMT_twi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/341107159/AMT_twi_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Intro to Node.JS for .NET Developers http://t.co/xQskKPL0 #nodejs #dotnet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:26:47 +0000", "from_user": "takuto1981", "from_user_id": 14655252, "from_user_id_str": "14655252", "from_user_name": "takuto1981", "geo": null, "id": 148423973133234180, "id_str": "148423973133234177", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1072911699/takuto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1072911699/takuto_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Vows\\u306E\\u65B9\\u304C\\u3088\\u3055\\u3052\\u304B\\u306A\\u3002\\u4ECA\\u9031\\u306F\\u3053\\u308C\\u3067\\u904A\\u3093\\u3067\\u307F\\u308B\\u3002\\u3000Node.js + Vows\\u3067\\u306F\\u3058\\u3081\\u308B\\u30C6\\u30B9\\u30C8\\u99C6\\u52D5\\u958B\\u767A http://t.co/5SVwSRpr @d_akatsuka\\u3055\\u3093\\u304B\\u3089", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:23:32 +0000", "from_user": "kaihannonen", "from_user_id": 82849949, "from_user_id_str": "82849949", "from_user_name": "Kai Hannonen", "geo": null, "id": 148423154908413950, "id_str": "148423154908413953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670189711/android_skating_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670189711/android_skating_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Next week i will start project SLAM at @sofanatics. New backend stuff with nodejs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:20:23 +0000", "from_user": "KoheiYagura", "from_user_id": 359266307, "from_user_id_str": "359266307", "from_user_name": "Kohei Yagura", "geo": null, "id": 148422361539035140, "id_str": "148422361539035136", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1622005500/a_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622005500/a_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "\\uFF12\\uFF0E\\u30A2\\u30D7\\u30EA\\u30B1\\u30FC\\u30B7\\u30E7\\u30F3\\n\\u904E\\u53BB\\u306E\\u4E0D\\u826F\\u50B5\\u6A29\\u3068\\u3057\\u3066PHP5\\u4EE5\\u964D\\u304C\\u30B5\\u30DD\\u30FC\\u30C8\\u3055\\u308C\\u307E\\u3059\\u3002\\u3069\\u3046\\u305BFastCGI\\u306A\\u306E\\u3067\\u3001CGI\\u3082\\u6B8B\\u3057\\u307E\\u3057\\u3087\\u3046\\u3002MySQL\\u3082\\u30B5\\u30DD\\u30FC\\u30C8\\u3057\\u3068\\u3051\\u3070\\u3044\\u3044\\u3093\\u3067\\u3057\\u3087\\u3002\\u3042\\u3068\\u3001nodejs\\u3082\\u30B5\\u30DD\\u30FC\\u30C8\\u3059\\u308B\\u3088\\u3002socket.io\\u304C\\u4F7F\\u3048\\u308B\\u3088\\u3046\\u306BListen\\u3057\\u3066\\u3082\\u3044\\u3044\\u3088", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:19:20 +0000", "from_user": "faisdotal", "from_user_id": 91635549, "from_user_id_str": "91635549", "from_user_name": "Faisal Ahmed", "geo": null, "id": 148422097834745860, "id_str": "148422097834745856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1426959738/39553_100984426640690_100001873983282_6379_7074151_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1426959738/39553_100984426640690_100001873983282_6379_7074151_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@substack What about when I'm require()'ing modules in NodeJS?", "to_user": "substack", "to_user_id": 125027291, "to_user_id_str": "125027291", "to_user_name": "James Halliday"}, +{"created_at": "Sun, 18 Dec 2011 15:03:31 +0000", "from_user": "KoheiYagura", "from_user_id": 359266307, "from_user_id_str": "359266307", "from_user_name": "Kohei Yagura", "geo": null, "id": 148418119541604350, "id_str": "148418119541604352", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1622005500/a_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622005500/a_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u4EEE\\u60F3\\u5316\\u5168\\u76DB\\u3067\\u3059\\u304C\\u3001\\u30D7\\u30ED\\u30BB\\u30B9\\u306E\\u5B89\\u5168\\u6027\\u3060\\u3051\\u3092\\u62C5\\u4FDD\\u3057\\u305F\\u3044\\u5834\\u5408\\u306Bjail\\u3063\\u307D\\u3044\\u306E\\u306F\\u306F\\u6709\\u52B9\\u3060\\u3068\\u601D\\u3063\\u3066\\u3044\\u308B\\u306E\\u3067\\u3059\\u304C\\u3001\\u6C17\\u8EFD\\u306B\\u8A66\\u305B\\u308B\\u30BD\\u30EA\\u30E5\\u30FC\\u30B7\\u30E7\\u30F3\\u304C\\u306A\\u3044\\u306A\\u3042\\u30FB\\u30FB\\u30FB\\u30AB\\u30FC\\u30CD\\u30EB\\u30D1\\u30C3\\u30C1\\u3068\\u304B\\u52D8\\u5F01\\u3057\\u3066\\u307B\\u3057\\u3044\\u304A\\u30FB\\u30FB\\u30FB\\u5206\\u96E2\\u3057\\u305F\\u3044\\u30D7\\u30ED\\u30BB\\u30B9\\u306Fnodejs\\u3067\\u3059\\u30FB\\u30FB\\u30FB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:02:08 +0000", "from_user": "gazs", "from_user_id": 734203, "from_user_id_str": "734203", "from_user_name": "K\\u00F6rtesi G\\u00E1sp\\u00E1r", "geo": null, "id": 148417772110626800, "id_str": "148417772110626816", "iso_language_code": "hu", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682758046/avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682758046/avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "az\\u00E9rt ugye j\\u00E1r a csoki ha egy js lib megy 1. b\\u00F6ng\\u00E9sz\\u0151b\\u0151l 2. nodejs modulk\\u00E9nt 3. webworkerk\\u00E9nt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:57:01 +0000", "from_user": "Master_Geeks", "from_user_id": 239807690, "from_user_id_str": "239807690", "from_user_name": "Ben Taher Jihed", "geo": null, "id": 148416482685091840, "id_str": "148416482685091843", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1569702727/icon_geek_inside-250x250_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1569702727/icon_geek_inside-250x250_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT , Write your shell scripts in JavaScript, via Node.js \\nhttp://t.co/c27GetA9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:50:57 +0000", "from_user": "muzzamilhussain", "from_user_id": 61718751, "from_user_id_str": "61718751", "from_user_name": "Muzzamil Hussain", "geo": null, "id": 148414954838568960, "id_str": "148414954838568960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1499534758/me_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1499534758/me_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "U r talking about this?? http://t.co/pcRQjkeG RT @moyedansari\\n@muzzamilhussain node.is is an open source project, there", "to_user": "muzzamilhussain", "to_user_id": 61718751, "to_user_id_str": "61718751", "to_user_name": "Muzzamil Hussain"}, +{"created_at": "Sun, 18 Dec 2011 14:46:49 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148413915255144450, "id_str": "148413915255144448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @cassandranosql: Technology behind Rackspace Cloud Monitoring http://t.co/hklKQn7z #nodejs #python #twisted #zookeeper #thrift #cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:46:45 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148413900373762050, "id_str": "148413900373762048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Technology behind Rackspace Cloud Monitoring http://t.co/CEJs9kOe #nodejs #python #twisted #zookeeper #thrift #c... http://t.co/3L2fng40", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:46:13 +0000", "from_user": "UchihaCFC", "from_user_id": 43866842, "from_user_id_str": "43866842", "from_user_name": "CFC", "geo": null, "id": 148413762540535800, "id_str": "148413762540535808", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1657474558/okamura_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657474558/okamura_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "27 Dic 19:30 - Charla sobre nodejs y heroku http://t.co/lIkTR6Cl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:44:09 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148413243252162560, "id_str": "148413243252162560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nihed: Write your shell scripts in JavaScript, via Node.js http://t.co/IGN7AfUg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:43:38 +0000", "from_user": "knsk66", "from_user_id": 11945522, "from_user_id_str": "11945522", "from_user_name": "knsk66", "geo": null, "id": 148413115359445000, "id_str": "148413115359444992", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1169361433/for_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1169361433/for_twitter_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Safari on iOS</a>", "text": "#python #node #nodejs http://t.co/Mc2je771", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:43:05 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148412974925746180, "id_str": "148412974925746177", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://www.scoop.it" rel="nofollow">Scoop.it</a>", "text": "RT @Evangenieur: Workflow.nodejs - GitHub #javascript http://t.co/eSvZOrIB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:42:32 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148412838665392130, "id_str": "148412838665392128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "RT @dreur: Inaugural: Twitter streaming with node.js and HTML5 WebSockets http://t.co/2XIzEQRR - via delicious", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:42:01 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148412706427387900, "id_str": "148412706427387904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "RT @nodenpm: time (0.7.0): http://t.co/StN69LWB \"time.h\" bindings for NodeJS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:33:25 +0000", "from_user": "HRBG", "from_user_id": 14849107, "from_user_id_str": "14849107", "from_user_name": "Hector Bavio", "geo": null, "id": 148410545249320960, "id_str": "148410545249320960", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1615704779/61324d30-8582-4221-82e1-f07a90f92ca6_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615704779/61324d30-8582-4221-82e1-f07a90f92ca6_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Ryan Dahl - History of Node.js http://t.co/FX7XyJgS #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:32:39 +0000", "from_user": "Cebolinhabh", "from_user_id": 53163650, "from_user_id_str": "53163650", "from_user_name": "Thiago Miranda", "geo": null, "id": 148410352185511940, "id_str": "148410352185511937", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693643006/mario_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693643006/mario_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tjholowaychuk: palette - image color palette extraction lib for #nodejs - https://t.co/bwzPe8NP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:21:10 +0000", "from_user": "cassandranosql", "from_user_id": 337469713, "from_user_id_str": "337469713", "from_user_name": "Joe Stein", "geo": null, "id": 148407461408280580, "id_str": "148407461408280576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1455350503/cassandra_normal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1455350503/cassandra_normal_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Technology behind Rackspace Cloud Monitoring http://t.co/hklKQn7z #nodejs #python #twisted #zookeeper #thrift #cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:20:18 +0000", "from_user": "bdour_akram", "from_user_id": 340125806, "from_user_id_str": "340125806", "from_user_name": "bdour akram", "geo": null, "id": 148407241417048060, "id_str": "148407241417048065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1580457771/me_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580457771/me_normal.PNG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @BostjanRihter: http://t.co/O8YzLOqE develop a #nodejs app on #windows, then publish to the cloud w/ multiple vms, load balancing in under 5mins #impressive", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:19:08 +0000", "from_user": "EliasCanaza", "from_user_id": 89718470, "from_user_id_str": "89718470", "from_user_name": "Elias Mamani Canaza", "geo": null, "id": 148406946683289600, "id_str": "148406946683289602", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1587430812/io_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587430812/io_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@nodejs Hola tengo mi Node instalado en Windows 7 32 bits y no reconoce los archivos q estan en la unidad C: el problema es la version?", "to_user": "nodejs", "to_user_id": 91985735, "to_user_id_str": "91985735", "to_user_name": "node js"}, +{"created_at": "Sun, 18 Dec 2011 14:19:04 +0000", "from_user": "bdour_akram", "from_user_id": 340125806, "from_user_id_str": "340125806", "from_user_name": "bdour akram", "geo": null, "id": 148406931340525570, "id_str": "148406931340525568", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1580457771/me_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580457771/me_normal.PNG", "source": "<a href="http://twitter.com/">web</a>", "text": "Windows Azure Adds Node.js Support, Hadoop Preview http://t.co/nZY7JFf6 #azure #javascript #nodejs #hadoop #v", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:17:23 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148406507250253820, "id_str": "148406507250253825", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @Evangenieur Cradle a #CouchDB #NodeJS client http://t.co/PIOTRi7v", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:17:21 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148406501592137730, "id_str": "148406501592137728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @ZiTAL nihed: Write your shell scripts in JavaScript, via Node.js http://t.co/4yyymK1a", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:17:21 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148406498014400500, "id_str": "148406498014400512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @FriendsOfNodeJS GraemeF: Lazy is pretty close to Reactive Extensions for #nodejs http://t.co/uBs39GP1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:15:20 +0000", "from_user": "tjholowaychuk", "from_user_id": 29255412, "from_user_id_str": "29255412", "from_user_name": "TJ Holowaychuk", "geo": null, "id": 148405993745813500, "id_str": "148405993745813504", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/124810348/DSC_0009_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/124810348/DSC_0009_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "palette - image color palette extraction lib for #nodejs - https://t.co/bwzPe8NP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:09:17 +0000", "from_user": "kracetheking", "from_user_id": 79747253, "from_user_id_str": "79747253", "from_user_name": "kracekumar", "geo": null, "id": 148404471515451400, "id_str": "148404471515451392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1323780452/sachin-tendulkar-62d_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1323780452/sachin-tendulkar-62d_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "In twitter's search result for python contains `switch to python->node.js` of paul's in every 10 items. #python, #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:06:31 +0000", "from_user": "Evangenieur", "from_user_id": 21945870, "from_user_id_str": "21945870", "from_user_name": "Evan Genieur", "geo": null, "id": 148403772371107840, "id_str": "148403772371107840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/83725129/gunnm2_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/83725129/gunnm2_small_normal.jpg", "source": "<a href="http://www.scoop.it" rel="nofollow">Scoop.it</a>", "text": "Cradle a #CouchDB #NodeJS client http://t.co/jhFktvqN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:01:57 +0000", "from_user": "ZiTAL", "from_user_id": 35194560, "from_user_id_str": "35194560", "from_user_name": "ZiTAL", "geo": null, "id": 148402625421918200, "id_str": "148402625421918209", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1615728104/IMG_8549_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615728104/IMG_8549_normal.JPG", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nihed: Write your shell scripts in JavaScript, via Node.js http://t.co/IGN7AfUg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:00:48 +0000", "from_user": "basaldizain", "from_user_id": 319615595, "from_user_id_str": "319615595", "from_user_name": "Vinicius Braga", "geo": null, "id": 148402334114914300, "id_str": "148402334114914305", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1404276816/basaldizain_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1404276816/basaldizain_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@argentinomota A \\u00FAnica coisa boa do nodejs, \\u00E9 a p\\u00E1gina do site da Joyent. Muita boa: http://t.co/54K55xCW #design", "to_user": "argentinomota", "to_user_id": 127994929, "to_user_id_str": "127994929", "to_user_name": "Vanderson Mota", "in_reply_to_status_id": 148398077290614800, "in_reply_to_status_id_str": "148398077290614784"}, +{"created_at": "Sun, 18 Dec 2011 13:59:03 +0000", "from_user": "dokshor", "from_user_id": 54551112, "from_user_id_str": "54551112", "from_user_name": "\\uE00A Fab\\u00EDan Ram\\u00EDrez", "geo": null, "id": 148401896237957120, "id_str": "148401896237957120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1654292661/58_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654292661/58_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nihed: Write your shell scripts in JavaScript, via Node.js http://t.co/IGN7AfUg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:56:54 +0000", "from_user": "kaneshinth", "from_user_id": 67822265, "from_user_id_str": "67822265", "from_user_name": "\\u304B\\u306D\\u3057\\u3093@mm.ll", "geo": null, "id": 148401355353104400, "id_str": "148401355353104385", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1521932527/profile_icon-001_250_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1521932527/profile_icon-001_250_normal.jpg", "source": "<a href="http://janetter.net/" rel="nofollow">Janetter</a>", "text": "\\u521D\\u5FC3\\u8005\\u5411\\u3051Nodejs\\u8A18\\u4E8B\\u3067\\u3082\\u66F8\\u304F\\u304B\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:56:42 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148401301624074240, "id_str": "148401301624074240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @GraemeF: Lazy is pretty close to Reactive Extensions for #nodejs http://t.co/ev9ieHOH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:53:48 +0000", "from_user": "GraemeF", "from_user_id": 664333, "from_user_id_str": "664333", "from_user_name": "Graeme Foster", "geo": null, "id": 148400574520492030, "id_str": "148400574520492034", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1665825824/niQkG_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665825824/niQkG_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Lazy is pretty close to Reactive Extensions for #nodejs http://t.co/ev9ieHOH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:48:26 +0000", "from_user": "Evangenieur", "from_user_id": 21945870, "from_user_id_str": "21945870", "from_user_name": "Evan Genieur", "geo": null, "id": 148399221593223170, "id_str": "148399221593223168", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/83725129/gunnm2_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/83725129/gunnm2_small_normal.jpg", "source": "<a href="http://www.scoop.it" rel="nofollow">Scoop.it</a>", "text": "Node.js on your (jailbroken) iPhone #nodejs http://t.co/2dKa2Rll", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:46:42 +0000", "from_user": "Evangenieur", "from_user_id": 21945870, "from_user_id_str": "21945870", "from_user_name": "Evan Genieur", "geo": null, "id": 148398786379653120, "id_str": "148398786379653120", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/83725129/gunnm2_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/83725129/gunnm2_small_normal.jpg", "source": "<a href="http://www.scoop.it" rel="nofollow">Scoop.it</a>", "text": "node-lazy : Lazy lists module for #nodejs #javascript http://t.co/RpsotHMI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:43:53 +0000", "from_user": "argentinomota", "from_user_id": 127994929, "from_user_id_str": "127994929", "from_user_name": "Vanderson Mota", "geo": null, "id": 148398077290614800, "id_str": "148398077290614784", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/793241552/dedeco_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/793241552/dedeco_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "@tapajos @basaldizain hype == nodejs ? ;-P", "to_user": "tapajos", "to_user_id": 14749110, "to_user_id_str": "14749110", "to_user_name": "tapajos", "in_reply_to_status_id": 148047804466606080, "in_reply_to_status_id_str": "148047804466606080"}, +{"created_at": "Sun, 18 Dec 2011 13:43:49 +0000", "from_user": "jeremyday", "from_user_id": 14100393, "from_user_id_str": "14100393", "from_user_name": "Jeremy Day", "geo": null, "id": 148398062665072640, "id_str": "148398062665072640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/681417707/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/681417707/profile_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "Node.js modules you should know about: semver http://t.co/5iVJwvqW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:37:54 +0000", "from_user": "3rdEden", "from_user_id": 14350255, "from_user_id_str": "14350255", "from_user_name": "Arnout Kazemier", "geo": null, "id": 148396572814741500, "id_str": "148396572814741504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "EventReactor 0.0.4 is out, with .defer and .delay emits. Reworked the documentation and wrote more tests! https://t.co/21whxRYC #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:32:22 +0000", "from_user": "aprakash", "from_user_id": 686523, "from_user_id_str": "686523", "from_user_name": "Anand Prakash", "geo": null, "id": 148395178976231420, "id_str": "148395178976231425", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/20502282/anandOct02_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/20502282/anandOct02_normal.jpg", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: Node.js modules you should know about: semver http://t.co/Kh6resZg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:30:37 +0000", "from_user": "dnywjy", "from_user_id": 19855025, "from_user_id_str": "19855025", "from_user_name": "Donny A. Wijaya", "geo": null, "id": 148394740902137860, "id_str": "148394740902137856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1221898614/70360_1013907703_2967202_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1221898614/70360_1013907703_2967202_q_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/hMmHiut3 http://t.co/37PB0Fy2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:12:07 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148390085484748800, "id_str": "148390085484748800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Write your shell scripts in JavaScript, via Node.js http://t.co/SL5Msixg http://t.co/RXUA0xNq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:56:13 +0000", "from_user": "nihed", "from_user_id": 6856982, "from_user_id_str": "6856982", "from_user_name": "Nihed MBAREK", "geo": null, "id": 148386080511627260, "id_str": "148386080511627264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1602403091/316774_10150272671887190_610552189_8216390_4210824_n__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1602403091/316774_10150272671887190_610552189_8216390_4210824_n__1__normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Write your shell scripts in JavaScript, via Node.js http://t.co/IGN7AfUg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:53:02 +0000", "from_user": "whoshallsucceed", "from_user_id": 288925455, "from_user_id_str": "288925455", "from_user_name": "whoshallsucceed", "geo": null, "id": 148385279546372100, "id_str": "148385279546372096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1680662018/cap_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680662018/cap_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Nodester: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/BwLp4eHS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:49:45 +0000", "from_user": "AdrienBrault", "from_user_id": 72339598, "from_user_id_str": "72339598", "from_user_name": "Adrien Brault", "geo": null, "id": 148384455139135500, "id_str": "148384455139135488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1379150613/IMG_4956-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1379150613/IMG_4956-2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @rgaidot: Technology behind Rackspace Cloud Monitoring\\nhttp://t.co/YwDf79LJ #nodejs #python #twisted #zookeeper #thrift #cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:48:33 +0000", "from_user": "serl", "from_user_id": 9840022, "from_user_id_str": "9840022", "from_user_name": "Serl", "geo": null, "id": 148384153849692160, "id_str": "148384153849692161", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1625858465/310171_1946826085255_1680634117_1369419_432369007_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1625858465/310171_1946826085255_1680634117_1369419_432369007_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "c'ho qua un accrocchio NodeJS+Socket.io+MongoDB, e sembra funzionare. da pauraaaaa :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:46:25 +0000", "from_user": "TopDevTweets", "from_user_id": 194520782, "from_user_id_str": "194520782", "from_user_name": "TopDevTweets", "geo": null, "id": 148383615095554050, "id_str": "148383615095554049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @rgaidot: Technology behind Rackspace Cloud Monitoring\\nhttp://t.co/YwDf79LJ #nodejs #python #twisted #zookeeper #thrift #cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:45:45 +0000", "from_user": "pmolinam", "from_user_id": 156225514, "from_user_id_str": "156225514", "from_user_name": "Pedro J. Molina", "geo": null, "id": 148383448606846980, "id_str": "148383448606846976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1109269729/3b35f03f-866e-4105-afaa-c51b7c2e2363_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1109269729/3b35f03f-866e-4105-afaa-c51b7c2e2363_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @rgaidot: Technology behind Rackspace Cloud Monitoring\\nhttp://t.co/YwDf79LJ #nodejs #python #twisted #zookeeper #thrift #cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:44:55 +0000", "from_user": "MythicTechno", "from_user_id": 138286178, "from_user_id_str": "138286178", "from_user_name": "Mythic Technologies", "geo": null, "id": 148383239025856500, "id_str": "148383239025856512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1111710966/mythicbutton_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1111710966/mythicbutton_twitter_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Technology behind Rackspace Cloud Monitoring\\nhttp://t.co/CEJs9kOe #nodejs #python #twisted #zookeeper #thrift #... http://t.co/m6KgjnmV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:40:28 +0000", "from_user": "ludofleury", "from_user_id": 47574527, "from_user_id_str": "47574527", "from_user_name": "Ludovic Fleury", "geo": null, "id": 148382118114893820, "id_str": "148382118114893824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1264063021/ludovic_fleury_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1264063021/ludovic_fleury_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @rgaidot: Technology behind Rackspace Cloud Monitoring\\nhttp://t.co/YwDf79LJ #nodejs #python #twisted #zookeeper #thrift #cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:37:20 +0000", "from_user": "mattcollins84", "from_user_id": 236086111, "from_user_id_str": "236086111", "from_user_name": "Matthew Collins", "geo": null, "id": 148381328298098700, "id_str": "148381328298098689", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1211248836/cow_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1211248836/cow_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Just signed up for a beta invitation to the node.js hosting platform @nodesocket. #nodejs http://t.co/Z3ZDorkQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:29:28 +0000", "from_user": "tntaben", "from_user_id": 25791812, "from_user_id_str": "25791812", "from_user_name": "\\u5F6D\\u6D77\\u94B0", "geo": null, "id": 148379349995884540, "id_str": "148379349995884544", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1501292504/02_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1501292504/02_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @mengxy: \\u4ECA\\u5929\\u4E0B\\u5348\\u5728\\u5317\\u4EAC#NodeParty\\u4E0A\\u5206\\u4EAB\\u4E86\\u6700\\u8FD1\\u51E0\\u4E2A\\u6708\\u96EA\\u7403\\u4F7F\\u7528Node.js\\u9047\\u5230\\u7684\\u4E00\\u4E9B\\u95EE\\u9898\\u548C\\u4E00\\u4E9B\\u5C0F\\u5DE5\\u5177\\uFF0Cslides\\u5728\\u8FD9\\u91CC\\uFF0Chttp://t.co/Wp8yULEM \\u770B\\u8FC7LinkedIn Mobile\\u7684\\u5E94\\u8BE5\\u89C9\\u5F97\\u6709\\u4E9B\\u5185\\u5BB9\\u662F\\u91CD\\u5408\\u7684\\uFF0C\\u8BF4\\u660E\\u5927\\u5BB6\\u9047\\u5230\\u7684\\u95EE\\u9898\\u5176\\u5B9E\\u662F\\u7C7B\\u4F3C\\u7684", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:28:16 +0000", "from_user": "UdgWebDev", "from_user_id": 373963214, "from_user_id_str": "373963214", "from_user_name": "Underground WebDev", "geo": null, "id": 148379049960546300, "id_str": "148379049960546305", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1580189610/udgwebdev-logo-256_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580189610/udgwebdev-logo-256_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "#UDGWebDev - Post - 10 #M\\u00F3dulos para Node.js http://t.co/KISM1zMa #javascript #nodejs #frameworks #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:27:53 +0000", "from_user": "adammw", "from_user_id": 17669045, "from_user_id_str": "17669045", "from_user_name": "Adam M-W", "geo": null, "id": 148378953156010000, "id_str": "148378953156009984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1418910805/218029_10150159443719477_721599476_6489962_5028283_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1418910805/218029_10150159443719477_721599476_6489962_5028283_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Seeing a nodejs module on googlecode rather than github is just so unnatural...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:24:00 +0000", "from_user": "koichik", "from_user_id": 14453603, "from_user_id_str": "14453603", "from_user_name": "koichik", "geo": null, "id": 148377976134840320, "id_str": "148377976134840320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1399991501/hs-2010-26-a-small_web_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1399991501/hs-2010-26-a-small_web_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:23:29 +0000", "from_user": "NodeJSAtSO", "from_user_id": 292124941, "from_user_id_str": "292124941", "from_user_name": "Node JS @ SO", "geo": null, "id": 148377845490659330, "id_str": "148377845490659328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1336740490/sprites_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1336740490/sprites_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Benchmark.js module cannot find globally in Nodejs http://t.co/ilwHapdQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:20:08 +0000", "from_user": "JavierLoriente", "from_user_id": 19333596, "from_user_id_str": "19333596", "from_user_name": "Javier Loriente", "geo": null, "id": 148377002217451520, "id_str": "148377002217451520", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1441132351/javier_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1441132351/javier_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "Form Python to nodejs http://t.co/a8hXDKdN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:19:27 +0000", "from_user": "sheepland", "from_user_id": 15892615, "from_user_id_str": "15892615", "from_user_name": "\\u6BCE\\u65E5\\u611F\\u96FB\\u3072\\u3064\\u3058\\u732B(gdgd)", "geo": null, "id": 148376829722501120, "id_str": "148376829722501120", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1238344380/cec9865e-s2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1238344380/cec9865e-s2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "socket.emit\\u304C\\u81EA\\u5206\\u81EA\\u8EAB\\u3078\\u9001\\u308B\\u3067\\u3001\\nsocket.broadcast.emit\\u304C\\u81EA\\u5206\\u4EE5\\u5916\\u5168\\u54E1\\u3078\\u9001\\u308B\\u3067\\u3001\\nio.sockets.emit\\u304C\\u81EA\\u5206\\u3092\\u542B\\u3080\\u5168\\u54E1\\u3078\\u9001\\u308B\\u306A\\u306E\\u304B\\u3002 \\n#nodejs #socket.io", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:10:40 +0000", "from_user": "mwessendorf", "from_user_id": 12287422, "from_user_id_str": "12287422", "from_user_name": "Matthias Wessendorf", "geo": null, "id": 148374617097121800, "id_str": "148374617097121792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1644899733/mw80s_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644899733/mw80s_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:07:24 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148373797832114180, "id_str": "148373797832114176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Technology behind Rackspace Cloud Monitoring\\nhttp://t.co/CEJs9kOe #nodejs #python #twisted #zookeeper #thrift #... http://t.co/m6KgjnmV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:04:18 +0000", "from_user": "saleiva", "from_user_id": 29412160, "from_user_id_str": "29412160", "from_user_name": "saleiva", "geo": null, "id": 148373014822666240, "id_str": "148373014822666240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/126690590/cacacacacaca_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/126690590/cacacacacaca_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "And I have to say that is *really* easy to read/write calls to @cartoDB using Node.js. https://t.co/nJo2agMt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:58:57 +0000", "from_user": "rgaidot", "from_user_id": 1245801, "from_user_id_str": "1245801", "from_user_name": "R\\u00E9gis Gaidot", "geo": null, "id": 148371671286415360, "id_str": "148371671286415360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1266738841/avatar-6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266738841/avatar-6_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Technology behind Rackspace Cloud Monitoring\\nhttp://t.co/YwDf79LJ #nodejs #python #twisted #zookeeper #thrift #cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:55:20 +0000", "from_user": "gleicon", "from_user_id": 26049744, "from_user_id_str": "26049744", "from_user_name": "gleicon", "geo": null, "id": 148370760422010880, "id_str": "148370760422010880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662691743/forever_yao_ming_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662691743/forever_yao_ming_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:52:41 +0000", "from_user": "davenportsteve", "from_user_id": 53252787, "from_user_id_str": "53252787", "from_user_name": "Stephen Davenport", "geo": null, "id": 148370093947109380, "id_str": "148370093947109376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1200768814/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1200768814/me_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "The Switch: Python to Node.js | Paul's Journal http://t.co/KEAx0Dln #nodejs #python", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:33:47 +0000", "from_user": "substack", "from_user_id": 125027291, "from_user_id_str": "125027291", "from_user_name": "James Halliday", "geo": null, "id": 148365338692694000, "id_str": "148365338692694016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/805387602/laptop-robot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/805387602/laptop-robot_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:15:43 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148360792339787780, "id_str": "148360792339787777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @tweettrailbot1 Check out who is tweeting about: ' nodejs ', here: http://t.co/kquO5I9E", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:15:43 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148360791299596300, "id_str": "148360791299596288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @richardz_work Two good pieces to read together: python to #nodejs http://t.co/4bwSLUie http://t.co/pyUkz8dB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:15:43 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148360789441527800, "id_str": "148360789441527808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @surachart hackernewsbot: Node.js modules you should know about: semver... http://t.co/TGI2tb0N", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:13:32 +0000", "from_user": "tweettrailbot1", "from_user_id": 197244919, "from_user_id_str": "197244919", "from_user_name": "Tweet Trail Announce", "geo": null, "id": 148360239706681340, "id_str": "148360239706681344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1134778998/ttlogo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1134778998/ttlogo_normal.png", "source": "<a href="http://www.tweettrail.com" rel="nofollow">Tweet Traill</a>", "text": "Check out who is tweeting about: ' nodejs ', here: http://t.co/D3Bwzmxm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:12:06 +0000", "from_user": "sbose78", "from_user_id": 190726716, "from_user_id_str": "190726716", "from_user_name": "Shoubhik Bose", "geo": null, "id": 148359881936736260, "id_str": "148359881936736256", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1555136629/313678_10150287343724509_710069508_7509696_1574204_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555136629/313678_10150287343724509_710069508_7509696_1574204_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Cloudfoundry #mogodb #node.js\\n\\nhttp://t.co/F6eKjFcB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:11:32 +0000", "from_user": "azu_re", "from_user_id": 14169633, "from_user_id_str": "14169633", "from_user_name": "azu", "geo": null, "id": 148359735538761730, "id_str": "148359735538761728", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/660061378/3ce9edfa9aa06f2d118fc9a0d6c36de3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/660061378/3ce9edfa9aa06f2d118fc9a0d6c36de3_normal.png", "source": "<a href="http://userscripts.org/scripts/show/46441" rel="nofollow">PNBT</a>", "text": "\\u304A\\u30FC\\u3001\\u3053\\u3093\\u306A\\u30DA\\u30FC\\u30B8\\u3067\\u304D\\u3066\\u305F\\u3093\\u3060\\u3002Windows Azure\\u3067Node \"Node.js - \\u958B\\u767A - Windows Azure\" http://t.co/rCQVU901", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:05:16 +0000", "from_user": "hotoo", "from_user_id": 20674328, "from_user_id_str": "20674328", "from_user_name": "\\u95F2\\u8018\\u2122", "geo": null, "id": 148358162314051600, "id_str": "148358162314051584", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/961629577/xianyun76_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/961629577/xianyun76_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @mengxy: \\u4ECA\\u5929\\u4E0B\\u5348\\u5728\\u5317\\u4EAC#NodeParty\\u4E0A\\u5206\\u4EAB\\u4E86\\u6700\\u8FD1\\u51E0\\u4E2A\\u6708\\u96EA\\u7403\\u4F7F\\u7528Node.js\\u9047\\u5230\\u7684\\u4E00\\u4E9B\\u95EE\\u9898\\u548C\\u4E00\\u4E9B\\u5C0F\\u5DE5\\u5177\\uFF0Cslides\\u5728\\u8FD9\\u91CC\\uFF0Chttp://t.co/Wp8yULEM \\u770B\\u8FC7LinkedIn Mobile\\u7684\\u5E94\\u8BE5\\u89C9\\u5F97\\u6709\\u4E9B\\u5185\\u5BB9\\u662F\\u91CD\\u5408\\u7684\\uFF0C\\u8BF4\\u660E\\u5927\\u5BB6\\u9047\\u5230\\u7684\\u95EE\\u9898\\u5176\\u5B9E\\u662F\\u7C7B\\u4F3C\\u7684", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:04:49 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148358047453020160, "id_str": "148358047453020160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Two good pieces to read together: python to #nodejs http://t.co/CEJs9kOe http://t.co/F0c5ncwm http://t.co/7bURpifJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:59:03 +0000", "from_user": "richardz_work", "from_user_id": 162142779, "from_user_id_str": "162142779", "from_user_name": "Richard Zhang", "geo": null, "id": 148356595301105660, "id_str": "148356595301105664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670427171/rz1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670427171/rz1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Two good pieces to read together: python to #nodejs http://t.co/SLEXvyRQ http://t.co/WBTq9Ky2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:58:37 +0000", "from_user": "surachart", "from_user_id": 14229705, "from_user_id_str": "14229705", "from_user_name": "Surachart Opun", "geo": null, "id": 148356487851409400, "id_str": "148356487851409408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664451969/photo01_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664451969/photo01_normal.jpg", "source": "<a href="http://news.ycombinator.com/" rel="nofollow">Hacker News Bot</a>", "text": "RT @hackernewsbot: Node.js modules you should know about: semver... http://t.co/S7UAibLK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:54:47 +0000", "from_user": "hacksparrow", "from_user_id": 45615658, "from_user_id_str": "45615658", "from_user_name": "Hack Sparrow", "geo": null, "id": 148355520347119600, "id_str": "148355520347119616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/721961044/jack_sparrow_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/721961044/jack_sparrow_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "The Node.js module Forever seems to be buggy. It starts the script but forever list says \"No forever processes running\". #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:51:10 +0000", "from_user": "yrezgui", "from_user_id": 7168842, "from_user_id_str": "7168842", "from_user_name": "Yacine Rezgui", "geo": null, "id": 148354612712321020, "id_str": "148354612712321024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1020475002/hey_hey_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1020475002/hey_hey_normal.JPG", "source": "<a href="http://fgribreau.com" rel="nofollow">FG</a>", "text": "RT @FGRibreau: nodeDaveAPI - a minimalist, multi-node, transactional API framework for NodeJS. // It only supports Mysql so far http://t.co/d9JqZH7O", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:50:36 +0000", "from_user": "jenhsun", "from_user_id": 9134942, "from_user_id_str": "9134942", "from_user_name": "jenhsun", "geo": null, "id": 148354469418119170, "id_str": "148354469418119168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1257452304/myeh2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1257452304/myeh2_normal.png", "source": "<a href="http://startgoogleplus.com" rel="nofollow">SGPlus</a>", "text": "The Switch: Python to NodeJS http://t.co/1kYVi72F", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:50:23 +0000", "from_user": "yrezgui", "from_user_id": 7168842, "from_user_id_str": "7168842", "from_user_name": "Yacine Rezgui", "geo": null, "id": 148354416590852100, "id_str": "148354416590852096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1020475002/hey_hey_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1020475002/hey_hey_normal.JPG", "source": "<a href="http://termtter.org/" rel="nofollow">Termtter</a>", "text": "RT @itwars: I'm glad to say: I'm in the top 20 tweeters for node.js ! http://t.co/CQMkKfDz #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:50:12 +0000", "from_user": "yrezgui", "from_user_id": 7168842, "from_user_id_str": "7168842", "from_user_name": "Yacine Rezgui", "geo": null, "id": 148354367647514620, "id_str": "148354367647514624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1020475002/hey_hey_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1020475002/hey_hey_normal.JPG", "source": "<a href="http://www.scoop.it" rel="nofollow">Scoop.it</a>", "text": "RT @itwars: The Switch: Python to Node.js | Paul's Journal | #nodejs http://t.co/a4VuHMsq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:48:23 +0000", "from_user": "sbose78", "from_user_id": 190726716, "from_user_id_str": "190726716", "from_user_name": "Shoubhik Bose", "geo": null, "id": 148353911655378940, "id_str": "148353911655378944", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1555136629/313678_10150287343724509_710069508_7509696_1574204_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555136629/313678_10150287343724509_710069508_7509696_1574204_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "https://t.co/LcD704Ru\\nNode.js Mongodb driver\\n#nodejs #mongodb @NodeJsCommunity", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:47:35 +0000", "from_user": "bigdumbobject", "from_user_id": 10788, "from_user_id_str": "10788", "from_user_name": "James Bloomer", "geo": null, "id": 148353711004065800, "id_str": "148353711004065794", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/422001651/139458main_image_feature_468_ys_4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/422001651/139458main_image_feature_468_ys_4_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ChrisRicca Just watched your proxlet NodeJS + MongoDB talk. V. Interesting. Are you running a single node instance or clustering?", "to_user": "ChrisRicca", "to_user_id": 5815462, "to_user_id_str": "5815462", "to_user_name": "\\u00A9\\u00AE"}, +{"created_at": "Sun, 18 Dec 2011 10:45:00 +0000", "from_user": "sabinmarcu", "from_user_id": 175180165, "from_user_id_str": "175180165", "from_user_name": "Marcu Sabin", "geo": null, "id": 148353058802380800, "id_str": "148353058802380800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1322769268/168050_122514104482090_100001705041807_138398_5197732_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1322769268/168050_122514104482090_100001705041807_138398_5197732_n_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Well, well, well... this is a bit unexpected, but i must confess #Microsoft is on the right track with #nodejs #azure. I might just convert!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:38:34 +0000", "from_user": "erdoslaszlo", "from_user_id": 101695818, "from_user_id_str": "101695818", "from_user_name": "Laszlo Erdos", "geo": null, "id": 148351442841903100, "id_str": "148351442841903105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1623480741/Twitter1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1623480741/Twitter1_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/8m9CWICn via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:38:32 +0000", "from_user": "sbose78", "from_user_id": 190726716, "from_user_id_str": "190726716", "from_user_name": "Shoubhik Bose", "geo": null, "id": 148351434805612540, "id_str": "148351434805612544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1555136629/313678_10150287343724509_710069508_7509696_1574204_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555136629/313678_10150287343724509_710069508_7509696_1574204_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I love this ! http://t.co/gEPffpQi \\n#Node.js and #Mongodb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Sun, 18 Dec 2011 10:30:12 +0000", "from_user": "FGRibreau", "from_user_id": 5719692, "from_user_id_str": "5719692", "from_user_name": "Fran\\u00E7ois-G. Ribreau", "geo": null, "id": 148349335820705800, "id_str": "148349335820705793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1117780106/2009_shooting_medium_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1117780106/2009_shooting_medium_normal.png", "source": "<a href="http://fgribreau.com" rel="nofollow">FG</a>", "text": "nodeDaveAPI - a minimalist, multi-node, transactional API framework for NodeJS. // It only supports Mysql so far http://t.co/d9JqZH7O", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:26:54 +0000", "from_user": "vesln", "from_user_id": 37680547, "from_user_id_str": "37680547", "from_user_name": "Veselin", "geo": null, "id": 148348505826668540, "id_str": "148348505826668544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1634048495/avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634048495/avatar_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Lazy require with filter logic for #nodejs https://t.co/Mb950TG8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:22:30 +0000", "from_user": "itwars", "from_user_id": 67265165, "from_user_id_str": "67265165", "from_user_name": "Vincent RABAH", "geo": null, "id": 148347396345184260, "id_str": "148347396345184256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1135858686/cb-vincent_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1135858686/cb-vincent_normal.png", "source": "<a href="http://www.scoop.it" rel="nofollow">Scoop.it</a>", "text": "The Switch: Python to Node.js | Paul's Journal | #nodejs http://t.co/a4VuHMsq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:21:21 +0000", "from_user": "robby_pelssers", "from_user_id": 10737442, "from_user_id_str": "10737442", "from_user_name": "robby_pelssers", "geo": null, "id": 148347107210833920, "id_str": "148347107210833920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/38386282/robbyPcSmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/38386282/robbyPcSmall_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "A beautiful marriage: #MongoDB and #NodeJS http://t.co/EDXXFtWq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:07:58 +0000", "from_user": "jaguilera_", "from_user_id": 337691375, "from_user_id_str": "337691375", "from_user_name": "Jes\\u00FAs Aguilera", "geo": null, "id": 148343739826450430, "id_str": "148343739826450432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1673129171/yo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673129171/yo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Nodester: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/BwLp4eHS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:07:33 +0000", "from_user": "AndyJ", "from_user_id": 6203362, "from_user_id_str": "6203362", "from_user_name": "Andy Jarrett", "geo": null, "id": 148343636424265730, "id_str": "148343636424265729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1610771482/Photo_on_28-10-2011_at_15.31__4_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610771482/Photo_on_28-10-2011_at_15.31__4_copy_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "How http://t.co/CxC8tOuV uses MongoDB & NodeJS to serve over a million daily requests on a $10/month server http://t.co/eqvaWblg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:01:15 +0000", "from_user": "fengmk2", "from_user_id": 21738641, "from_user_id_str": "21738641", "from_user_name": "MK2", "geo": +{"coordinates": [30.2774,120.1177], "type": "Point"}, "id": 148342052164345860, "id_str": "148342052164345856", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/285484301/imk2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/285484301/imk2_normal.png", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "Nodeparty hangzhou done #nodejs @ \\u534E\\u661F\\u73B0\\u4EE3\\u4EA7\\u4E1A\\u56ED http://t.co/3jPGwjNR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:57:59 +0000", "from_user": "ferrari_tw", "from_user_id": 7886112, "from_user_id_str": "7886112", "from_user_name": "Ferrari", "geo": null, "id": 148341229149630460, "id_str": "148341229149630464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1463003058/690c694b5587e0a514f56179a4f9cfba_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1463003058/690c694b5587e0a514f56179a4f9cfba_normal.png", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "RT @pquerna: New Blog post: The Switch, Python to Node.js: http://t.co/DWCureoW \\\\ real case of using #nodejs on production!! :p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:56:20 +0000", "from_user": "hkokko", "from_user_id": 24726686, "from_user_id_str": "24726686", "from_user_name": "Hannu Kokko", "geo": null, "id": 148340814194544640, "id_str": "148340814194544640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/100266288/hannu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/100266288/hannu_normal.jpg", "source": "<a href="http://manageflitter.com" rel="nofollow">ManageFlitter</a>", "text": "Surfing on the edge. Both technologies are cool, simple enough and on the bleeding edge. https://t.co/5bZrt1Tn http://t.co/ord8DE3T", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:54:39 +0000", "from_user": "HornedKavu", "from_user_id": 14075398, "from_user_id_str": "14075398", "from_user_name": "Max Riveiro", "geo": null, "id": 148340388262969340, "id_str": "148340388262969344", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/96905779/11438--5847-w200_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/96905779/11438--5847-w200_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "@Crazy_Owl \\u044D\\u0442\\u043E \\u043A\\u043E\\u043D\\u0435\\u0447\\u043D\\u043E \\u043D\\u0435 \\u0440\\u0430\\u0441\\u043F\\u043E\\u0437\\u043D\\u043E\\u0432\\u0430\\u043D\\u0438\\u0435 \\u043B\\u0438\\u0446, \\u043D\\u043E\\u2026 http://t.co/iMPoISIg", "to_user": "Crazy_Owl", "to_user_id": 109023651, "to_user_id_str": "109023651", "to_user_name": "Vlad", "in_reply_to_status_id": 148339623792345100, "in_reply_to_status_id_str": "148339623792345090"}, +{"created_at": "Sun, 18 Dec 2011 09:50:53 +0000", "from_user": "clementj", "from_user_id": 14164930, "from_user_id_str": "14164930", "from_user_name": "Cl\\u00E9ment", "geo": null, "id": 148339442845884400, "id_str": "148339442845884416", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1398595935/photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1398595935/photo_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@FGRibreau tu as compl\\u00E8tement switcher sur nodejs toi ? ou tu utilise un autre langage serveur ? :)", "to_user": "FGRibreau", "to_user_id": 5719692, "to_user_id_str": "5719692", "to_user_name": "Fran\\u00E7ois-G. Ribreau", "in_reply_to_status_id": 148326772587503600, "in_reply_to_status_id_str": "148326772587503616"}, +{"created_at": "Sun, 18 Dec 2011 09:48:33 +0000", "from_user": "fengmk2", "from_user_id": 21738641, "from_user_id_str": "21738641", "from_user_name": "MK2", "geo": null, "id": 148338852778614800, "id_str": "148338852778614785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/285484301/imk2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/285484301/imk2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Check out who is tweeting about: ' nodejs ', here: http://t.co/x32bDTje http://t.co/MYGGuhw4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:46:59 +0000", "from_user": "fengmk2", "from_user_id": 21738641, "from_user_id_str": "21738641", "from_user_name": "MK2", "geo": null, "id": 148338459369676800, "id_str": "148338459369676800", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/285484301/imk2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/285484301/imk2_normal.png", "source": "<a href="http://chrome.google.com/extensions/detail/aicelmgbddfgmpieedjiggifabdpcnln" rel="nofollow">FaWave</a>", "text": "RT @\\u7384\\u4E86\\u4E2A\\u6F84\\u7684 @\\u9752\\u5C71\\u8001\\u5996_\\u9EC4\\u51A0 \\u7684\\u6F14\\u8BB2\\u98CE\\u683C\\u662F\\u73B0\\u573A\\u7801\\u4EE3\\u7801\\uFF0C\\u8FD9\\u4E0D\\u662F\\u4E00\\u822C\\u4EBA\\u6562\\u5E72\\u7684[\\u563B\\u563B]#nodeparty# #nodejs http://t.co/rwyPq5uD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:46:23 +0000", "from_user": "johlrogge", "from_user_id": 27765583, "from_user_id_str": "27765583", "from_user_name": "Joakim Ohlrogge", "geo": null, "id": 148338308848693250, "id_str": "148338308848693249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1295212288/Picture_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1295212288/Picture_6_normal.png", "source": "<a href="http://www.nambu.com/" rel="nofollow">Nambu</a>", "text": "Oh my, I'm trapped in a nodejs coding frenzy. It is pretty neat", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:45:22 +0000", "from_user": "fengmk2", "from_user_id": 21738641, "from_user_id_str": "21738641", "from_user_name": "MK2", "geo": null, "id": 148338052274716670, "id_str": "148338052274716672", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/285484301/imk2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/285484301/imk2_normal.png", "source": "<a href="http://chrome.google.com/extensions/detail/aicelmgbddfgmpieedjiggifabdpcnln" rel="nofollow">FaWave</a>", "text": "RT @\\u58A8\\u8A00_D \\u7B2C\\u4E00\\u573A\\u6765\\u81EA\\u5F00\\u53D1\\u5DE5\\u7A0B\\u5E08\\u674E\\u534E\\u715C@QLeelulu \\u5E26\\u6765\\u7684\\u300Anode.js\\u5F00\\u53D1\\u4F53\\u9A8C\\u300B\\uFF0C\\u73B0\\u573A\\u6295\\u5F71\\u51FA\\u4E86\\u70B9\\u72B6\\u51B5\\uFF0C\\u4E0D\\u8FC7hold\\u4F4F\\u4E86 #nodejs http://t.co/MBjlloI0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:31:19 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 148334518556823550, "id_str": "148334518556823552", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "speculum (0.0.1): http://t.co/rUt9v5ea NodeJS BDD Test Suite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:24:27 +0000", "from_user": "SUKAIWARD", "from_user_id": 196305288, "from_user_id_str": "196305288", "from_user_name": "Idir IBOUCHICHENE", "geo": null, "id": 148332788968464400, "id_str": "148332788968464384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1133306473/programmation_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1133306473/programmation_normal.jpg", "source": "Zite Personalized Magazine", "text": "RT @cjean_dev: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/yXLGQK9l", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:22:46 +0000", "from_user": "edjafarov", "from_user_id": 18898176, "from_user_id_str": "18898176", "from_user_name": "Eldar Djafarov", "geo": null, "id": 148332366878875650, "id_str": "148332366878875648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/971019265/25-08-08_1708_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/971019265/25-08-08_1708_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @3rdEden: @ryah @nodejs @indutny like getting SPDY support in core ;) *hint* *hint*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:17:40 +0000", "from_user": "ericmjohn", "from_user_id": 10286992, "from_user_id_str": "10286992", "from_user_name": "Eric M John", "geo": null, "id": 148331083379916800, "id_str": "148331083379916800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/838880155/pic-twitter-bw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/838880155/pic-twitter-bw_normal.jpg", "source": "<a href="http://github.com/d4nt/HNTweets" rel="nofollow">HNTweets Bot</a>", "text": "RT @HNTweets: Node.js modules you should know about: semver: http://t.co/5ZMiKLue Comments: http://t.co/qes7qMRU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:08:08 +0000", "from_user": "FredGOUTH", "from_user_id": 47584166, "from_user_id_str": "47584166", "from_user_name": "Frederic GOUTH", "geo": null, "id": 148328681545277440, "id_str": "148328681545277441", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/265204862/portrait_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/265204862/portrait_normal.jpg", "source": "<a href="http://termtter.org/" rel="nofollow">Termtter</a>", "text": "RT @itwars: I'm glad to say: I'm in the top 20 tweeters for node.js ! http://t.co/CQMkKfDz #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:05:44 +0000", "from_user": "ericmjohn", "from_user_id": 10286992, "from_user_id_str": "10286992", "from_user_name": "Eric M John", "geo": null, "id": 148328080589602800, "id_str": "148328080589602816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/838880155/pic-twitter-bw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/838880155/pic-twitter-bw_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:05:20 +0000", "from_user": "peterneubauer", "from_user_id": 14721805, "from_user_id_str": "14721805", "from_user_name": "Peter Neubauer", "geo": null, "id": 148327977485213700, "id_str": "148327977485213696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/348968437/MyPicture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/348968437/MyPicture_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@amit_twit @neo4j will try to answer on http://t.co/GXOrBEZ7 and ask the list, stay tuned ...", "to_user": "amit_twit", "to_user_id": 99925376, "to_user_id_str": "99925376", "to_user_name": "amit", "in_reply_to_status_id": 148174593268523000, "in_reply_to_status_id_str": "148174593268523008"}, +{"created_at": "Sun, 18 Dec 2011 09:04:14 +0000", "from_user": "leftieFriele", "from_user_id": 5936042, "from_user_id_str": "5936042", "from_user_name": "espen", "geo": null, "id": 148327702569566200, "id_str": "148327702569566208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685539791/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685539791/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:04:13 +0000", "from_user": "itwars", "from_user_id": 67265165, "from_user_id_str": "67265165", "from_user_name": "Vincent RABAH", "geo": null, "id": 148327695246303230, "id_str": "148327695246303232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1135858686/cb-vincent_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1135858686/cb-vincent_normal.png", "source": "<a href="http://termtter.org/" rel="nofollow">Termtter</a>", "text": "I'm glad to say: I'm in the top 20 tweeters for node.js ! http://t.co/CQMkKfDz #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:00:43 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148326816367640580, "id_str": "148326816367640577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Check out who is tweeting about: ' nodejs ', here: http://t.co/x32bDTje http://t.co/MYGGuhw4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:57:52 +0000", "from_user": "ferdy", "from_user_id": 791288, "from_user_id_str": "791288", "from_user_name": "Ferran Rodenas", "geo": null, "id": 148326101385613300, "id_str": "148326101385613312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1185956912/Ferran_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1185956912/Ferran_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:43:32 +0000", "from_user": "tweettrailbot1", "from_user_id": 197244919, "from_user_id_str": "197244919", "from_user_name": "Tweet Trail Announce", "geo": null, "id": 148322491390103550, "id_str": "148322491390103552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1134778998/ttlogo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1134778998/ttlogo_normal.png", "source": "<a href="http://www.tweettrail.com" rel="nofollow">Tweet Traill</a>", "text": "Check out who is tweeting about: ' nodejs ', here: http://t.co/D3Bwzmxm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:34:42 +0000", "from_user": "CyberConsulting", "from_user_id": 35604893, "from_user_id_str": "35604893", "from_user_name": "GreeneConsulting", "geo": null, "id": 148320269742780400, "id_str": "148320269742780416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/818188972/guy_beating_a_computernonanimated_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/818188972/guy_beating_a_computernonanimated_normal.jpg", "source": "<a href="http://news.ycombinator.com/" rel="nofollow">Hacker News Bot</a>", "text": "RT @hackernewsbot: Node.js modules you should know about: semver... http://t.co/S7UAibLK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:25:18 +0000", "from_user": "jarodf", "from_user_id": 14483521, "from_user_id_str": "14483521", "from_user_name": "jarod ferguson", "geo": null, "id": 148317901705838600, "id_str": "148317901705838592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1671060086/dRuKS6RC_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671060086/dRuKS6RC_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:25:17 +0000", "from_user": "rajeshpillai", "from_user_id": 9589242, "from_user_id_str": "9589242", "from_user_name": "rajeshpillai", "geo": null, "id": 148317898929213440, "id_str": "148317898929213440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/505188893/rajesh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/505188893/rajesh_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Nodester I would like to have a nodejs hosting coupon. Great if it could be sent at pillai.rajesh@gmail.com", "to_user": "Nodester", "to_user_id": 240751001, "to_user_id_str": "240751001", "to_user_name": "Nodester"}, +{"created_at": "Sun, 18 Dec 2011 08:20:24 +0000", "from_user": "mkopala", "from_user_id": 18088431, "from_user_id_str": "18088431", "from_user_name": "Matt Kopala", "geo": null, "id": 148316669788434430, "id_str": "148316669788434432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1136086466/me5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1136086466/me5_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "My head hurts after looking at all the different stuff available with #nodejs. Just this page by itself is crazy: https://t.co/w57Pi1Uh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:14:51 +0000", "from_user": "indutny", "from_user_id": 92915570, "from_user_id_str": "92915570", "from_user_name": "Fedor Indutny", "geo": null, "id": 148315273374597120, "id_str": "148315273374597120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1342629236/e474c72a97af94dd27feb53be98ceab9_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1342629236/e474c72a97af94dd27feb53be98ceab9_normal.jpeg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@ryah @nodejs thanks a lot! It's a big pleasure to help our platform grow!", "to_user": "ryah", "to_user_id": 18975861, "to_user_id_str": "18975861", "to_user_name": "Ryan Dahl", "in_reply_to_status_id": 148149731435102200, "in_reply_to_status_id_str": "148149731435102208"}, +{"created_at": "Sun, 18 Dec 2011 08:14:32 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148315192885915650, "id_str": "148315192885915649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @naholyr cjean_dev: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/oaVI2J7R", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:14:31 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148315191946395650, "id_str": "148315191946395648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @jdub pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/4bwSLUie hint: @nodejs, lots of NPM mo...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:14:31 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148315190889414660, "id_str": "148315190889414656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @ryah pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/4bwSLUie hint: @nodejs, lots of NPM mo...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:12:35 +0000", "from_user": "rimidl", "from_user_id": 122673998, "from_user_id_str": "122673998", "from_user_name": "Vladimir", "geo": null, "id": 148314701888106500, "id_str": "148314701888106496", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "http://t.co/LTlsCrEz Node.js \\u2014 \\u0440\\u0430\\u043A\\u043E\\u0432\\u0430\\u044F \\u043E\\u043F\\u0443\\u0445\\u043E\\u043B\\u044C #habr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:50:40 +0000", "from_user": "naholyr", "from_user_id": 35705169, "from_user_id_str": "35705169", "from_user_name": "Nicolas Chambrier", "geo": null, "id": 148309186600640500, "id_str": "148309186600640512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/412641899/52b68aaa7ba1e8f6c699560f97573443_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/412641899/52b68aaa7ba1e8f6c699560f97573443_normal.png", "source": "Zite Personalized Magazine", "text": "RT @cjean_dev: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/yXLGQK9l", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:46:47 +0000", "from_user": "jdub", "from_user_id": 4690301, "from_user_id_str": "4690301", "from_user_name": "Jeff Waugh", "geo": null, "id": 148308209248112640, "id_str": "148308209248112640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1544578810/jdub-big_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544578810/jdub-big_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:44:44 +0000", "from_user": "ryah", "from_user_id": 18975861, "from_user_id_str": "18975861", "from_user_name": "Ryan Dahl", "geo": null, "id": 148307695743676400, "id_str": "148307695743676416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1634041610/name_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634041610/name_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:42:02 +0000", "from_user": "hackernewsbot", "from_user_id": 19575586, "from_user_id_str": "19575586", "from_user_name": "Hacker News Bot", "geo": null, "id": 148307016048316400, "id_str": "148307016048316416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/73596050/yc500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/73596050/yc500_normal.jpg", "source": "<a href="http://news.ycombinator.com/" rel="nofollow">Hacker News Bot</a>", "text": "Node.js modules you should know about: semver... http://t.co/S7UAibLK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:35:53 +0000", "from_user": "gN3mes1s", "from_user_id": 53158658, "from_user_id_str": "53158658", "from_user_name": "Giuseppe `N3mes1s`", "geo": null, "id": 148305466039091200, "id_str": "148305466039091200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/626562524/hom_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/626562524/hom_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:27:42 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148303409940938750, "id_str": "148303409940938752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "This is fun, a nodeJS-like server written in Lua -> http://t.co/X15jMIMX http://t.co/ORbnncA6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:26:25 +0000", "from_user": "vince2_", "from_user_id": 286046143, "from_user_id_str": "286046143", "from_user_name": "Vincent Bernat", "geo": null, "id": 148303085649932300, "id_str": "148303085649932289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1321617929/moi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1321617929/moi_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:14:59 +0000", "from_user": "tannhu", "from_user_id": 26198243, "from_user_id_str": "26198243", "from_user_name": "Tan Nhu", "geo": null, "id": 148300206516092930, "id_str": "148300206516092928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/749964818/Screen_shot_2010-03-11_at_12.57.41_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/749964818/Screen_shot_2010-03-11_at_12.57.41_AM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "The most beautiful thing of NodeJS is npm.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:13:53 +0000", "from_user": "CupOfStartup", "from_user_id": 15714625, "from_user_id_str": "15714625", "from_user_name": "CupOfStartup", "geo": null, "id": 148299932963569660, "id_str": "148299932963569666", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/60443387/coffee_drinker_print_web_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/60443387/coffee_drinker_print_web_normal.jpg", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: Node.js modules you should know about: semver http://t.co/Kh6resZg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:06:57 +0000", "from_user": "Yeco", "from_user_id": 5978172, "from_user_id_str": "5978172", "from_user_name": "Y\\u00EBco", "geo": null, "id": 148298185436180480, "id_str": "148298185436180480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1595720091/yec_bigger_nu_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1595720091/yec_bigger_nu_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @HackerNewsYC: Node.js modules you should know about: semver http://t.co/PsRgVSJk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:06:47 +0000", "from_user": "HackerNewsYC", "from_user_id": 15042473, "from_user_id_str": "15042473", "from_user_name": "Hacker News YC", "geo": null, "id": 148298145577701380, "id_str": "148298145577701376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/55176345/hackernewsfeed_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/55176345/hackernewsfeed_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Node.js modules you should know about: semver http://t.co/PsRgVSJk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:05:44 +0000", "from_user": "delfinof", "from_user_id": 29531965, "from_user_id_str": "29531965", "from_user_name": "Francesco Delfino", "geo": null, "id": 148297878362800130, "id_str": "148297878362800128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1643688932/_29531965_-5740430031097686038_146_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643688932/_29531965_-5740430031097686038_146_normal.png", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: Node.js modules you should know about: semver http://t.co/Kh6resZg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:05:30 +0000", "from_user": "hetdegon", "from_user_id": 17054633, "from_user_id_str": "17054633", "from_user_name": "hetdegon", "geo": null, "id": 148297820116484100, "id_str": "148297820116484096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/445284550/PORTRAIT_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/445284550/PORTRAIT_normal.PNG", "source": "<a href="http://code.google.com/p/prpltwtr/" rel="nofollow">PrplTwtr2</a>", "text": "This is fun, a nodeJS-like server written in Lua -> http://t.co/IpHLvSNY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:04:16 +0000", "from_user": "amazedsaint", "from_user_id": 15875576, "from_user_id_str": "15875576", "from_user_name": "Anoop Madhusudanan", "geo": null, "id": 148297512556560400, "id_str": "148297512556560384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1135179282/ddbc7ac1-25a8-45a9-a808-eb3245a07080_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1135179282/ddbc7ac1-25a8-45a9-a808-eb3245a07080_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Must read \"@newsycombinator: Node.js modules you should know about: semver http://t.co/SCBxiJdL\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:04:01 +0000", "from_user": "pavlobaron", "from_user_id": 70747148, "from_user_id_str": "70747148", "from_user_name": "Pavlo Baron", "geo": null, "id": 148297448908013570, "id_str": "148297448908013568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1670021014/bad-santa-free_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670021014/bad-santa-free_3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:59:04 +0000", "from_user": "carnotweat", "from_user_id": 225349488, "from_user_id_str": "225349488", "from_user_name": "sameer", "geo": null, "id": 148296200951578620, "id_str": "148296200951578624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1317089589/sg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317089589/sg_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Node.js modules you should know about: semver http://t.co/3ydRV3CZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:54:13 +0000", "from_user": "manatsawin", "from_user_id": 12738602, "from_user_id_str": "12738602", "from_user_name": "\\u0E21\\u0E19\\u0E2A\\u0E27", "geo": null, "id": 148294982736941060, "id_str": "148294982736941056", "iso_language_code": "th", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698266811/mesky_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698266811/mesky_normal", "source": "<a href="https://chrome.google.com/webstore/detail/ogndknhgkahnialefpjkhmbekkobjfkh" rel="nofollow">Twitica Desktop</a>", "text": "(\\u0E41\\u0E15\\u0E48 nodejs indexer \\u0E02\\u0E2D\\u0E07\\u0E40\\u0E23\\u0E32\\u0E21\\u0E31\\u0E19 iconv error \\u0E1A\\u0E32\\u0E19 python \\u0E21\\u0E31\\u0E19\\u0E0A\\u0E31\\u0E27\\u0E23\\u0E4C\\u0E01\\u0E27\\u0E48\\u0E32\\u0E40\\u0E22\\u0E2D\\u0E30 \\u0E0B\\u0E2D\\u0E23\\u0E4C\\u0E2A\\u0E14\\u0E39\\u0E43\\u0E19 http://t.co/LsCux7LQ )", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:47:17 +0000", "from_user": "Keithnlarsen", "from_user_id": 255106464, "from_user_id_str": "255106464", "from_user_name": "Keith Larsen", "geo": null, "id": 148293238770499600, "id_str": "148293238770499584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1266123618/meandlexi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266123618/meandlexi_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "I just published a super simple to use mocking library for #nodejs check it out here: https://t.co/eRXQbTlP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:47:00 +0000", "from_user": "manatsawin", "from_user_id": 12738602, "from_user_id_str": "12738602", "from_user_name": "\\u0E21\\u0E19\\u0E2A\\u0E27", "geo": null, "id": 148293167115026430, "id_str": "148293167115026432", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698266811/mesky_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698266811/mesky_normal", "source": "<a href="https://chrome.google.com/webstore/detail/ogndknhgkahnialefpjkhmbekkobjfkh" rel="nofollow">Twitica Desktop</a>", "text": "python 24s nodejs 19s", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:43:58 +0000", "from_user": "jinnli", "from_user_id": 18330621, "from_user_id_str": "18330621", "from_user_name": "\\u01C7", "geo": null, "id": 148292402581483520, "id_str": "148292402581483520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1579601171/_______normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1579601171/_______normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Node.js modules you should know about: semver http://t.co/t8EJWd9L", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:41:39 +0000", "from_user": "manatsawin", "from_user_id": 12738602, "from_user_id_str": "12738602", "from_user_name": "\\u0E21\\u0E19\\u0E2A\\u0E27", "geo": null, "id": 148291821120929800, "id_str": "148291821120929792", "iso_language_code": "th", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698266811/mesky_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698266811/mesky_normal", "source": "<a href="https://chrome.google.com/webstore/detail/ogndknhgkahnialefpjkhmbekkobjfkh" rel="nofollow">Twitica Desktop</a>", "text": "\\u0E21\\u0E32\\u0E40\\u0E17\\u0E2A\\u0E14\\u0E35\\u0E01\\u0E27\\u0E48\\u0E32 \\u0E40\\u0E1E\\u0E25\\u0E07\\u0E40\\u0E23\\u0E32\\u0E21\\u0E35\\u0E01\\u0E35\\u0E48\\u0E40\\u0E1E\\u0E25\\u0E07\\u0E44\\u0E21\\u0E48\\u0E23\\u0E39\\u0E49\\u0E41\\u0E15\\u0E48\\u0E40\\u0E1B\\u0E47\\u0E19\\u0E2B\\u0E21\\u0E37\\u0E48\\u0E19 \\u0E08\\u0E30\\u0E23\\u0E31\\u0E19 indexer \\u0E17\\u0E35\\u0E48\\u0E40\\u0E23\\u0E32\\u0E40\\u0E02\\u0E35\\u0E22\\u0E19\\u0E40\\u0E1B\\u0E47\\u0E19 python+thread, nodejs output \\u0E40\\u0E1B\\u0E47\\u0E19 csv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:41:30 +0000", "from_user": "flashtml5", "from_user_id": 212360840, "from_user_id_str": "212360840", "from_user_name": "Michael Anthony", "geo": null, "id": 148291781178556400, "id_str": "148291781178556416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1460546123/Photo_on_2011-07-25_at_11.27_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1460546123/Photo_on_2011-07-25_at_11.27_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I also have been using a NodeJS script that traces out console.log's from mobile+IE in my main Firebug console. I need to release this stuff", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:41:28 +0000", "from_user": "seltzer", "from_user_id": 3598991, "from_user_id_str": "3598991", "from_user_name": "Taniguchi Makoto", "geo": null, "id": 148291774937432060, "id_str": "148291774937432064", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/18785992/me_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/18785992/me_small_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @meso: http://t.co/57mzDYxh \\u306E\\u65E5\\u672C\\u8A9E\\u30C9\\u30AD\\u30E5\\u30E1\\u30F3\\u30C8\\uFF08 http://t.co/RdocAc7f \\uFF09\\u3092\\u6700\\u65B0\\u5B89\\u5B9A\\u7248\\u3067\\u3042\\u308Bv0.6.6\\u306B\\u5BFE\\u5FDC\\u3055\\u305B\\u307E\\u3057\\u305F\\uFF08thanx to @koichik\\uFF09\\u3002 #nodejs_jp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:39:03 +0000", "from_user": "benjamin_ds", "from_user_id": 64560195, "from_user_id_str": "64560195", "from_user_name": "Benjamin Dos Santos", "geo": null, "id": 148291164498440200, "id_str": "148291164498440192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1624279481/benjamin_ds_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624279481/benjamin_ds_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:29:40 +0000", "from_user": "kazu_pon", "from_user_id": 17755912, "from_user_id_str": "17755912", "from_user_name": "kazuya kawaguchi", "geo": null, "id": 148288803579248640, "id_str": "148288803579248640", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1098382115/profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1098382115/profile_3_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @meso: http://t.co/57mzDYxh \\u306E\\u65E5\\u672C\\u8A9E\\u30C9\\u30AD\\u30E5\\u30E1\\u30F3\\u30C8\\uFF08 http://t.co/RdocAc7f \\uFF09\\u3092\\u6700\\u65B0\\u5B89\\u5B9A\\u7248\\u3067\\u3042\\u308Bv0.6.6\\u306B\\u5BFE\\u5FDC\\u3055\\u305B\\u307E\\u3057\\u305F\\uFF08thanx to @koichik\\uFF09\\u3002 #nodejs_jp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:24:20 +0000", "from_user": "javascriptalert", "from_user_id": 274501532, "from_user_id_str": "274501532", "from_user_name": "javascript", "geo": null, "id": 148287461494226940, "id_str": "148287461494226944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1304350707/___normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1304350707/___normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Ben's Journal: node.js - Evidence CPS is ideal for high performance?: http://t.co/767dtCMM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:21:47 +0000", "from_user": "stevesandersonf", "from_user_id": 194307897, "from_user_id_str": "194307897", "from_user_name": "steve sanderson", "geo": null, "id": 148286817991532540, "id_str": "148286817991532544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Node.js modules you should know about: semver http://t.co/U4qDTYRI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:12:29 +0000", "from_user": "dnene", "from_user_id": 12526082, "from_user_id_str": "12526082", "from_user_name": "Dhananjay Nene", "geo": null, "id": 148284478417158140, "id_str": "148284478417158145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1083521810/new_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1083521810/new_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@g0rm just googled for a random page which kind of placed Node.js and cps together http://t.co/4VhDuntE", "to_user": "g0rm", "to_user_id": 416034227, "to_user_id_str": "416034227", "to_user_name": "Nik Nawor", "in_reply_to_status_id": 148284022181732350, "in_reply_to_status_id_str": "148284022181732354"}, +{"created_at": "Sun, 18 Dec 2011 06:12:28 +0000", "from_user": "lluccipha", "from_user_id": 103246788, "from_user_id_str": "103246788", "from_user_name": "lluccipha", "geo": null, "id": 148284473618858000, "id_str": "148284473618857987", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697708417/BYbrkMru_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697708417/BYbrkMru_normal", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "newsycombinator: Node.js modules you should know about: semver http://t.co/guDmChVj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:10:34 +0000", "from_user": "rekatz", "from_user_id": 28733664, "from_user_id_str": "28733664", "from_user_name": "reuben e k\\uF8FFtz", "geo": +{"coordinates": [32.8445,-117.2487], "type": "Point"}, "id": 148283994956509200, "id_str": "148283994956509184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1469712918/rkatz_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1469712918/rkatz_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@newsycombinator: Node.js modules you should know about: semver http://t.co/uoFIsTua\\u201D cc @Scobleizer just always a hot topic", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:05:08 +0000", "from_user": "newsycombinator", "from_user_id": 14335498, "from_user_id_str": "14335498", "from_user_name": "news.yc Popular", "geo": null, "id": 148282628389343230, "id_str": "148282628389343232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/52589204/y_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/52589204/y_normal.png", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "Node.js modules you should know about: semver http://t.co/Kh6resZg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:02:27 +0000", "from_user": "ginpei_jp", "from_user_id": 68164583, "from_user_id_str": "68164583", "from_user_name": "\\u9AD8\\u68A8\\u30AE\\u30F3\\u30DA\\u30A4 / Ginpei", "geo": null, "id": 148281952531779600, "id_str": "148281952531779584", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694238457/image_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694238457/image_normal", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "LESS\\u306E\\u30D1\\u30FC\\u30B5\\u30FC\\u3092node\\u88FDhttpd\\u3067\\u52D5\\u304B\\u3059\\u304A\\u8A71\\u3002 / Node.js\\u3067LESS\\u30D5\\u30A1\\u30A4\\u30EB\\u3092\\u52D5\\u7684\\u306B\\u30B3\\u30F3\\u30D1\\u30A4\\u30EB\\u3059\\u308B :: 5509 http://t.co/kRU5xjXQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:02:26 +0000", "from_user": "hnbot", "from_user_id": 317653311, "from_user_id_str": "317653311", "from_user_name": "Hacker News", "geo": null, "id": 148281950141026300, "id_str": "148281950141026305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1405908372/1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1405908372/1_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Node.js modules you should know about: semver \\n(Discuss on HN - http://t.co/76HdcwfE) http://t.co/5SHCycmW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:00:02 +0000", "from_user": "HNTweets", "from_user_id": 116276133, "from_user_id_str": "116276133", "from_user_name": "Hacker News", "geo": null, "id": 148281347344048130, "id_str": "148281347344048129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1369520630/HNTweets_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1369520630/HNTweets_normal.png", "source": "<a href="http://github.com/d4nt/HNTweets" rel="nofollow">HNTweets Bot</a>", "text": "Node.js modules you should know about: semver: http://t.co/5ZMiKLue Comments: http://t.co/qes7qMRU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:58:20 +0000", "from_user": "gocho", "from_user_id": 14523807, "from_user_id_str": "14523807", "from_user_name": "gocho", "geo": null, "id": 148280919978024960, "id_str": "148280919978024960", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/943882585/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/943882585/twitter_normal.jpg", "source": "<a href="http://www.yoono.com" rel="nofollow">yoono</a>", "text": "windows,mac,un*x\\u3059\\u3079\\u3066\\u3067\\u975E\\u540C\\u671F\\u901A\\u4FE1\\u30921\\u3064\\u306E\\u30E9\\u30A4\\u30D6\\u30E9\\u30EA\\u3067\\u3053\\u306A\\u3059libuv! #nodejs https://t.co/48a6xC2K", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:53:49 +0000", "from_user": "praveen_v", "from_user_id": 7261552, "from_user_id_str": "7261552", "from_user_name": "Praveen", "geo": null, "id": 148279781476151300, "id_str": "148279781476151296", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/117288143/profilepic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/117288143/profilepic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/4jvadAN1 - New skin.. @nodejs #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:51:36 +0000", "from_user": "cadermino", "from_user_id": 56838193, "from_user_id_str": "56838193", "from_user_name": "Carlos calder\\u00F3n", "geo": null, "id": 148279222480289800, "id_str": "148279222480289793", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1678664309/deadmau5_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678664309/deadmau5_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "@cvander @freddier hola geniales las clases de nodejs gracias, yo trabajo con drupal y hay un modulo que los integra http://t.co/igybtWGi", "to_user": "cvander", "to_user_id": 817789, "to_user_id_str": "817789", "to_user_name": "Christian Van Der H"}, +{"created_at": "Sun, 18 Dec 2011 05:51:15 +0000", "from_user": "hnfirehose", "from_user_id": 213117318, "from_user_id_str": "213117318", "from_user_name": "HN Firehose", "geo": null, "id": 148279133682675700, "id_str": "148279133682675713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Node.js modules you should know about: semver: http://t.co/yF2YdOdH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:35:40 +0000", "from_user": "versicolor", "from_user_id": 16947927, "from_user_id_str": "16947927", "from_user_name": "versicolor", "geo": null, "id": 148275214948646900, "id_str": "148275214948646912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1231134781/tux_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1231134781/tux_normal.png", "source": "<a href="http://www.infinigraph.com" rel="nofollow">InfiniGraph</a>", "text": "RT @html50: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 #html5 #css3 http://t.co/5eaKUQi8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:25:19 +0000", "from_user": "nodejs", "from_user_id": 91985735, "from_user_id_str": "91985735", "from_user_name": "node js", "geo": null, "id": 148272609941921800, "id_str": "148272609941921792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1437021459/nodejs-dark_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1437021459/nodejs-dark_normal.png", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "RT @shr: \" Node.js has been an awesome platform to build our product on. \" Interesting write up. http://t.co/ktyMWwxr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:23:13 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 148272080394260480, "id_str": "148272080394260480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @DrDhodz: Testing node.js modules with Travis CI: pYou have written a node.js module lately? It has a\\u2026 http://t.co/DRfU7zMJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:19:02 +0000", "from_user": "MoriasEnkomion", "from_user_id": 194354030, "from_user_id_str": "194354030", "from_user_name": "Benjamin Anderson", "geo": null, "id": 148271027615571970, "id_str": "148271027615571970", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1669110227/twitterprofilepic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669110227/twitterprofilepic_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "Thx 4 RT, @Nodejs_bot: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets & #html5 #css3 http://t.co/0jfYdmfX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:12:53 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148269482488512500, "id_str": "148269482488512512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @morteza_milani NodeJsCommunity: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 #html5...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:12:53 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148269481234407420, "id_str": "148269481234407424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @emilbuzz html50: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 #html5 #css3 http://t...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:12:34 +0000", "from_user": "acarlos1000", "from_user_id": 8536242, "from_user_id_str": "8536242", "from_user_name": "Antonio C. Silveira", "geo": null, "id": 148269399894265860, "id_str": "148269399894265856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1346082012/antonio-2011yahoo-2723_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1346082012/antonio-2011yahoo-2723_small_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:07:01 +0000", "from_user": "DrDhodz", "from_user_id": 287479847, "from_user_id_str": "287479847", "from_user_name": "James Douglas", "geo": null, "id": 148268005112037380, "id_str": "148268005112037377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1531207315/DrDhodz_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1531207315/DrDhodz_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Testing node.js modules with Travis CI: pYou have written a node.js module lately? It has a\\u2026 http://t.co/DRfU7zMJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:26:31 +0000", "from_user": "morteza_milani", "from_user_id": 166104316, "from_user_id_str": "166104316", "from_user_name": "Morteza Milani", "geo": null, "id": 148257810440921100, "id_str": "148257810440921088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681214380/me2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681214380/me2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 #html5 #css3 http:... http://t.co/p2AzQPCi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:24:53 +0000", "from_user": "tommie_open", "from_user_id": 95061299, "from_user_id_str": "95061299", "from_user_name": "tommie", "geo": null, "id": 148257401106214900, "id_str": "148257401106214913", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/878135992/tumblr_kptjmv1QVf1qznd83o1_1280_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/878135992/tumblr_kptjmv1QVf1qznd83o1_1280_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@yosuke_furukawa \\u308F\\u30FC\\u3044\\u3000\\uFF08\\u25CF\\uFF3Eo\\uFF3E\\u25CF\\uFF09\\u3000\\u3068\\u3053\\u308D\\u3067\\u3001\\u3064\\u3076\\u3084\\u304D\\u304B\\u3089\\u65B0\\u805E\\u3092\\u4F5C\\u308Bpapar.li\\u3063\\u3066\\u306E\\u304C\\u9762\\u767D\\u3044\\u3067\\u3059\\u3002Node.js\\u306E\\u65B0\\u805E\\u2192http://t.co/2zOlcgkS", "to_user": "yosuke_furukawa", "to_user_id": 39272335, "to_user_id_str": "39272335", "to_user_name": "Yosuke FURUKAWA", "in_reply_to_status_id": 148255831354388480, "in_reply_to_status_id_str": "148255831354388480"}, +{"created_at": "Sun, 18 Dec 2011 04:24:01 +0000", "from_user": "zaynhamdan", "from_user_id": 157632949, "from_user_id_str": "157632949", "from_user_name": "zayn hamdan", "geo": null, "id": 148257183023370240, "id_str": "148257183023370242", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1052227543/IMG00002-20091124-1209_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1052227543/IMG00002-20091124-1209_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Drowning on nodejs, it's exciting! After hours battle to make my fb apps run on prod server, I found a way to run it on localhost ;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:09:43 +0000", "from_user": "emilbuzz", "from_user_id": 322685480, "from_user_id_str": "322685480", "from_user_name": "Emil Daniel", "geo": null, "id": 148253582154670080, "id_str": "148253582154670080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1601383755/iakasha-low_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601383755/iakasha-low_normal.JPG", "source": "<a href="http://www.infinigraph.com" rel="nofollow">InfiniGraph</a>", "text": "RT @html50: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 #html5 #css3 http://t.co/5eaKUQi8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:59:49 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 148251093695086600, "id_str": "148251093695086593", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "speculum (0.0.0): http://t.co/rUt9v5ea NodeJS BDD Test Suite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:46:44 +0000", "from_user": "KamiSLO", "from_user_id": 45091430, "from_user_id_str": "45091430", "from_user_name": "Toma\\u017E Muraus", "geo": null, "id": 148247800759595000, "id_str": "148247800759595008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/335942780/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/335942780/me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:40:19 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 148246186401345540, "id_str": "148246186401345536", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "tracker (0.0.0): http://t.co/gZxOGCup performance tracker for nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:38:39 +0000", "from_user": "javiercbk", "from_user_id": 94555589, "from_user_id_str": "94555589", "from_user_name": "Javier Lecuona", "geo": null, "id": 148245765519720450, "id_str": "148245765519720448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1666569364/XO3r4rWK_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666569364/XO3r4rWK_normal", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "if you're a nodeJS newbie, check out @hacksparrow blog http://t.co/ezGDIY05", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:31:30 +0000", "from_user": "hc5duke", "from_user_id": 17076398, "from_user_id_str": "17076398", "from_user_name": "HJ Choi", "geo": null, "id": 148243967253819400, "id_str": "148243967253819392", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1597465682/thefuck_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1597465682/thefuck_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "nodejs requires xcode? /sadface", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:19:31 +0000", "from_user": "kimo", "from_user_id": 6068052, "from_user_id_str": "6068052", "from_user_name": "Krishna Guda", "geo": null, "id": 148240949309476860, "id_str": "148240949309476864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1576122748/stevejobs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576122748/stevejobs_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ryah: @nodejs people should be following @indutny - he's been doing great core work the last few months", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:16:59 +0000", "from_user": "eradicus", "from_user_id": 11148862, "from_user_id_str": "11148862", "from_user_name": "Joset Anthony Zamora", "geo": null, "id": 148240311443927040, "id_str": "148240311443927041", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/57824803/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/57824803/avatar_normal.jpg", "source": "<a href="http://www.infinigraph.com" rel="nofollow">InfiniGraph</a>", "text": "RT @html50: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 #html5 #css3 http://t.co/5eaKUQi8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:12:57 +0000", "from_user": "jorgeespada", "from_user_id": 16649149, "from_user_id_str": "16649149", "from_user_name": "Jorge Espada", "geo": null, "id": 148239298603393020, "id_str": "148239298603393024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/187796214/jor_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/187796214/jor_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:06:43 +0000", "from_user": "aaronblohowiak", "from_user_id": 7142142, "from_user_id_str": "7142142", "from_user_name": "aaron blohowiak", "geo": null, "id": 148237728457310200, "id_str": "148237728457310209", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1548031798/mee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1548031798/mee_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:06:28 +0000", "from_user": "kishorelive", "from_user_id": 18895700, "from_user_id_str": "18895700", "from_user_name": "Kishore Nallan", "geo": null, "id": 148237667245621250, "id_str": "148237667245621249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/70745130/blotus_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/70745130/blotus_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:02:23 +0000", "from_user": "sunilband", "from_user_id": 61828777, "from_user_id_str": "61828777", "from_user_name": "Sunil B", "geo": null, "id": 148236638479331330, "id_str": "148236638479331328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/342673592/SunilPic_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/342673592/SunilPic_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:01:03 +0000", "from_user": "Cebolinhabh", "from_user_id": 53163650, "from_user_id_str": "53163650", "from_user_name": "Thiago Miranda", "geo": null, "id": 148236304499486720, "id_str": "148236304499486721", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693643006/mario_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693643006/mario_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:00:51 +0000", "from_user": "slidebot", "from_user_id": 246273889, "from_user_id_str": "246273889", "from_user_name": "slidebot", "geo": null, "id": 148236253475778560, "id_str": "148236253475778560", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1232681981/slidebot_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1232681981/slidebot_normal.png", "source": "<a href="http://deeeki.com/" rel="nofollow">slidebot</a>", "text": "*Hot!* \\u6771\\u4EACNode\\u5B66\\u5712#3 Domains & Isolates http://t.co/ccuFACSS (by koichik 2011-12-15) [ja][DL:OK] #Nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:00:01 +0000", "from_user": "yyfrankyy", "from_user_id": 56345494, "from_user_id_str": "56345494", "from_user_name": "Frank Xu", "geo": null, "id": 148236042904928260, "id_str": "148236042904928256", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1234202598/79c0b1355435ae5333ee8525e1c1e0fb_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1234202598/79c0b1355435ae5333ee8525e1c1e0fb_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\\u8FD9\\u4E2A\\u770B\\u8D77\\u6765\\u633A\\u4F18\\u96C5\\u7684\\u3002Sequelize \\u00BB A MySQL Object-Relational-Mapper for NodeJS http://t.co/cro8vmZN via @", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Sun, 18 Dec 2011 02:55:48 +0000", "from_user": "jeromatron", "from_user_id": 14726616, "from_user_id_str": "14726616", "from_user_name": "Jeremy Hanna", "geo": null, "id": 148234982643601400, "id_str": "148234982643601408", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1133849249/myphoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1133849249/myphoto_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "#nodejs + #cassandra | #cql driver http://t.co/vPaKkN72 used in http://t.co/GRB653X3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:53:46 +0000", "from_user": "tjholowaychuk", "from_user_id": 29255412, "from_user_id_str": "29255412", "from_user_name": "TJ Holowaychuk", "geo": null, "id": 148234470980468740, "id_str": "148234470980468738", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/124810348/DSC_0009_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/124810348/DSC_0009_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:49:08 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148233305488240640, "id_str": "148233305488240642", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 #html5 #css3 http:... http://t.co/p2AzQPCi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:46:44 +0000", "from_user": "spyced", "from_user_id": 36383929, "from_user_id_str": "36383929", "from_user_name": "Jonathan Ellis", "geo": null, "id": 148232702276010000, "id_str": "148232702276009984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/422398220/jbellis-3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/422398220/jbellis-3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:44:39 +0000", "from_user": "MWilbanks", "from_user_id": 19148078, "from_user_id_str": "19148078", "from_user_name": "Matt Wilbanks", "geo": null, "id": 148232177904132100, "id_str": "148232177904132096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1395211242/Screen_shot_2011-06-14_at_12.10.16_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1395211242/Screen_shot_2011-06-14_at_12.10.16_AM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:43:49 +0000", "from_user": "dehora", "from_user_id": 546313, "from_user_id_str": "546313", "from_user_name": "Bill de h\\u00D3ra", "geo": null, "id": 148231966133714940, "id_str": "148231966133714944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1353302609/131466384_04bd6f5204_o_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1353302609/131466384_04bd6f5204_o_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:37:12 +0000", "from_user": "sh1mmer", "from_user_id": 63803, "from_user_id_str": "63803", "from_user_name": "Tom Hughes-Croucher", "geo": null, "id": 148230299891925000, "id_str": "148230299891924992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1595178869/IMG_2476_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1595178869/IMG_2476_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:34:26 +0000", "from_user": "atsuya", "from_user_id": 7483262, "from_user_id_str": "7483262", "from_user_name": "Atsuya Takagi", "geo": null, "id": 148229606900641800, "id_str": "148229606900641792", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1644873867/atsuya_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644873867/atsuya_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "getUserMedia\\u306E\\u4E8B\\u3059\\u3063\\u304B\\u308A\\u5FD8\\u308C\\u3066\\u305F\\uFF01 http://t.co/rbtmOKJY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:31:51 +0000", "from_user": "jeromatron", "from_user_id": 14726616, "from_user_id_str": "14726616", "from_user_name": "Jeremy Hanna", "geo": null, "id": 148228953495187460, "id_str": "148228953495187456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1133849249/myphoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1133849249/myphoto_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:30:04 +0000", "from_user": "pquerna", "from_user_id": 7624272, "from_user_id_str": "7624272", "from_user_name": "Paul Querna", "geo": null, "id": 148228508005568500, "id_str": "148228508005568512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1366801499/pquerna-headshot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1366801499/pquerna-headshot_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "New blog post: Technology behind Rackspace Cloud Monitoring: http://t.co/j8DWXqRY hint: @nodejs, lots of NPM modules, and apache @cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:26:45 +0000", "from_user": "Outsideris", "from_user_id": 7932892, "from_user_id_str": "7932892", "from_user_name": "Outsider", "geo": null, "id": 148227673586544640, "id_str": "148227673586544640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1646891342/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646891342/image_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Write your shell scripts in JavaScript, via Node.js http://t.co/f0buaA9z", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:25:05 +0000", "from_user": "Ubacoda", "from_user_id": 366582721, "from_user_id_str": "366582721", "from_user_name": "Ben Walker", "geo": null, "id": 148227252000272400, "id_str": "148227252000272384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1525024752/ubacoda_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1525024752/ubacoda_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @chrismatthieu: Sweet! RT @sachalepretre: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/hsom9moM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:17:00 +0000", "from_user": "mkopala", "from_user_id": 18088431, "from_user_id_str": "18088431", "from_user_name": "Matt Kopala", "geo": null, "id": 148225218765266940, "id_str": "148225218765266944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1136086466/me5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1136086466/me5_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Diving in head-first to #nodejs and #coffeescript. Have tabs up on backbone, spine, sass, mongoose, jasmine, jade, underscore as well.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:10:52 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148223672480567300, "id_str": "148223672480567296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @swVisionary NodeJsCommunity: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:10:51 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148223670677020670, "id_str": "148223670677020672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @MoriasEnkomion html50: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 #html5 #css3 ht...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:10:51 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148223669586501630, "id_str": "148223669586501632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @html50 Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 #html5 #css3 http://t.co/7GWzIYfG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:07:58 +0000", "from_user": "swVisionary", "from_user_id": 108372259, "from_user_id_str": "108372259", "from_user_name": "Nick Vaidyanathan", "geo": null, "id": 148222944408113150, "id_str": "148222944408113152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/654869854/11453_810742209051_10019872_48993166_7125682_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/654869854/11453_810742209051_10019872_48993166_7125682_n_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/CGQYy1FL http://t.co/NKIJqu9n", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:06:07 +0000", "from_user": "grevych", "from_user_id": 89622691, "from_user_id_str": "89622691", "from_user_name": "Gerardo Reyes", "geo": null, "id": 148222477011648500, "id_str": "148222477011648512", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1518069120/cAflonsa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1518069120/cAflonsa_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Que tan seguro es NodeJs comparado con comet usando cualquier otro lenguaje?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:03:03 +0000", "from_user": "gblock", "from_user_id": 1434051, "from_user_id_str": "1434051", "from_user_name": "Glenn Block", "geo": null, "id": 148221706312495100, "id_str": "148221706312495104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1198284833/Photo_on_2010-12-24_at_20.51_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1198284833/Photo_on_2010-12-24_at_20.51_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @jbueza: @lucisferre Was deploying a #wordpress instance to #Azure few days ago. Took 25mins. #NodeJS is snappy, takes about 10 minutes!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:02:27 +0000", "from_user": "MajorYe", "from_user_id": 15338871, "from_user_id_str": "15338871", "from_user_name": "MajorYe", "geo": null, "id": 148221554386407420, "id_str": "148221554386407424", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/264055736/img_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/264055736/img_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u676D\\u5DDE\\u7684\\u5929\\u6C14\\u8FD8\\u662F\\u5F88\\u4E0D\\u9519\\u7684\\uFF0C\\u4E0B\\u5348\\u53BB\\u53C2\\u52A0nodejs\\u5927\\u4F1A~", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:01:41 +0000", "from_user": "ClaudeCK", "from_user_id": 25229814, "from_user_id_str": "25229814", "from_user_name": "John Claude", "geo": null, "id": 148221365416247300, "id_str": "148221365416247298", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\\u6B63\\u597D\\u524D\\u51E0\\u5929\\u4E5F\\u7528nodejs\\u5E72\\u4E86\\u5199shell script\\u5E72\\u7684\\u4E8B\\u60C5\\u3002\\u6709\\u4E00\\u4E9Btips\\u53EF\\u4EE5\\u5B66\\u4E0B\\u3002Write your shell scripts in JavaScript, via Node.js http://t.co/gtoCvUg6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:00:16 +0000", "from_user": "MoriasEnkomion", "from_user_id": 194354030, "from_user_id_str": "194354030", "from_user_name": "Benjamin Anderson", "geo": null, "id": 148221008216723460, "id_str": "148221008216723456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1669110227/twitterprofilepic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669110227/twitterprofilepic_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "RT @html50: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 #html5 #css3 http://t.co/0jfYdmfX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:54:17 +0000", "from_user": "html50", "from_user_id": 112795368, "from_user_id_str": "112795368", "from_user_name": "HTML 5.0", "geo": null, "id": 148219499294896130, "id_str": "148219499294896128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675783101/html5_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675783101/html5_normal", "source": "<a href="http://www.infinigraph.com" rel="nofollow">InfiniGraph</a>", "text": "Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 #html5 #css3 http://t.co/5eaKUQi8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:45:55 +0000", "from_user": "gabyz22", "from_user_id": 51928124, "from_user_id_str": "51928124", "from_user_name": "Gabriela Zu\\u00F1iga", "geo": null, "id": 148217396795162620, "id_str": "148217396795162624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/709433253/io_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/709433253/io_normal.jpg", "source": "<a href="http://www.snsanalytics.com" rel="nofollow">SNS Analytics</a>", "text": "RT @AjaxComputing: Getting Started with Node.js http://t.co/uTH31LyY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:44:36 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148217064463675400, "id_str": "148217064463675392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/CGQYy1FL http://t.co/NKIJqu9n", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:34:06 +0000", "from_user": "tdreyno", "from_user_id": 635793, "from_user_id_str": "635793", "from_user_name": "Thomas Reynolds", "geo": null, "id": 148214421112627200, "id_str": "148214421112627200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1615815446/thomas_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615815446/thomas_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "If I used nodejs, I think I'd be a little uncomfortable that they've had to put out 7 point releases in a little over a month and a half.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:32:38 +0000", "from_user": "jbueza", "from_user_id": 141423083, "from_user_id_str": "141423083", "from_user_name": "Jaime Bueza", "geo": null, "id": 148214053934870530, "id_str": "148214053934870528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@lucisferre Was deploying a #wordpress instance to #Azure few days ago. Took 25mins. #NodeJS is snappy, takes about 10 minutes!", "to_user": "lucisferre", "to_user_id": 47128593, "to_user_id_str": "47128593", "to_user_name": "Chris Nicola", "in_reply_to_status_id": 148212774378541060, "in_reply_to_status_id_str": "148212774378541056"}, +{"created_at": "Sun, 18 Dec 2011 01:32:17 +0000", "from_user": "cjean_dev", "from_user_id": 248265595, "from_user_id_str": "248265595", "from_user_name": "Christophe Jean", "geo": null, "id": 148213963904139260, "id_str": "148213963904139265", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1236625278/thumbs-up_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1236625278/thumbs-up_normal.jpg", "source": "Zite Personalized Magazine", "text": "Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/yXLGQK9l", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:19:53 +0000", "from_user": "mccode", "from_user_id": 52866760, "from_user_id_str": "52866760", "from_user_name": "Marc", "geo": null, "id": 148210843266449400, "id_str": "148210843266449408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/393803484/evil-smiley-face_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/393803484/evil-smiley-face_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "What I love most about #nodejs is the ability to crank out a feature in a fraction of the time I'd expect.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:39:38 +0000", "from_user": "alenaruprecht", "from_user_id": 167836220, "from_user_id_str": "167836220", "from_user_name": "Alena Ruprecht", "geo": null, "id": 148200712709484540, "id_str": "148200712709484544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1173890585/meScream_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1173890585/meScream_normal.jpg", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "@AaronAcerboni: @nodejs people should be following @indutny - he's been doing great core work the last few months", "to_user": "AaronAcerboni", "to_user_id": 151153709, "to_user_id_str": "151153709", "to_user_name": "Aaron Acerboni"}, +{"created_at": "Sun, 18 Dec 2011 00:23:31 +0000", "from_user": "jackhq", "from_user_id": 15810776, "from_user_id_str": "15810776", "from_user_name": "Jack Russ Software", "geo": null, "id": 148196658822381570, "id_str": "148196658822381568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/493141971/jrs-logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/493141971/jrs-logo_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tjholowaychuk: uber-simple express 3.x-pre cookie session middleware https://t.co/d9AVDTZx (6 SLOC) #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:13:24 +0000", "from_user": "oh3kqd", "from_user_id": 331422844, "from_user_id_str": "331422844", "from_user_name": "Antti Arvela", "geo": null, "id": 148194111260856320, "id_str": "148194111260856320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1647793351/SantaFace-a_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647793351/SantaFace-a_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/9B5efwfy by @FrancisShanahan #JavaScript", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:11:48 +0000", "from_user": "hnfirehose", "from_user_id": 213117318, "from_user_id_str": "213117318", "from_user_name": "HN Firehose", "geo": null, "id": 148193708347633660, "id_str": "148193708347633664", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Stream webcam w/ Javascript, NodeJS, Android, Opera Mobile, Web Sockets & HTML5: http://t.co/x7qLFvf4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:05:44 +0000", "from_user": "nicholaswyoung", "from_user_id": 10003492, "from_user_id_str": "10003492", "from_user_name": "Nicholas Young", "geo": null, "id": 148192185085468670, "id_str": "148192185085468672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1610887480/IMG_1171__2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610887480/IMG_1171__2__normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@Geniasaurus I already am! Working on my #nodejs project, and having a blast. This is my most productive setup yet!", "to_user": "Geniasaurus", "to_user_id": 181438231, "to_user_id_str": "181438231", "to_user_name": "Eugenia G", "in_reply_to_status_id": 148192064713146370, "in_reply_to_status_id_str": "148192064713146368"}, +{"created_at": "Sun, 18 Dec 2011 00:05:11 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148192043137642500, "id_str": "148192043137642496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/6Zl9rbg4 http://t.co/R7MzLqtd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:05:02 +0000", "from_user": "dtorres", "from_user_id": 10973202, "from_user_id_str": "10973202", "from_user_name": "Diego Torres", "geo": null, "id": 148192006638809100, "id_str": "148192006638809088", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701905441/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701905441/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@elJOjo queri aprender de verdad? haz algo en nodejs ;)", "to_user": "elJOjo", "to_user_id": 16358256, "to_user_id_str": "16358256", "to_user_name": "jos\\u00E9 tom\\u00E1s a", "in_reply_to_status_id": 148191174585368580, "in_reply_to_status_id_str": "148191174585368576"}, +{"created_at": "Sun, 18 Dec 2011 00:02:13 +0000", "from_user": "diegognt", "from_user_id": 67094756, "from_user_id_str": "67094756", "from_user_name": "Diego Navarro", "geo": null, "id": 148191297361022980, "id_str": "148191297361022976", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1057006020/avatar_2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1057006020/avatar_2__normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Esto de #nodejs me empieza a gustar mucho :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:55:07 +0000", "from_user": "roothybrid7", "from_user_id": 20235619, "from_user_id_str": "20235619", "from_user_name": "Satoshi Ohki", "geo": null, "id": 148189511006957570, "id_str": "148189511006957569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1479301676/rh7_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1479301676/rh7_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tjholowaychuk: uber-simple express 3.x-pre cookie session middleware https://t.co/d9AVDTZx (6 SLOC) #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:50:48 +0000", "from_user": "Nodester", "from_user_id": 240751001, "from_user_id_str": "240751001", "from_user_name": "Nodester", "geo": null, "id": 148188424115986430, "id_str": "148188424115986432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/BwLp4eHS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:34:45 +0000", "from_user": "rauchg", "from_user_id": 15540222, "from_user_id_str": "15540222", "from_user_name": "Guillermo Rauch", "geo": null, "id": 148184384606965760, "id_str": "148184384606965760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1547730928/Image_2011.09.17_6-39-27_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1547730928/Image_2011.09.17_6-39-27_PM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tjholowaychuk: uber-simple express 3.x-pre cookie session middleware https://t.co/d9AVDTZx (6 SLOC) #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:33:02 +0000", "from_user": "benjamin_ds", "from_user_id": 64560195, "from_user_id_str": "64560195", "from_user_name": "Benjamin Dos Santos", "geo": null, "id": 148183952388132860, "id_str": "148183952388132864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1624279481/benjamin_ds_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624279481/benjamin_ds_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tjholowaychuk: uber-simple express 3.x-pre cookie session middleware https://t.co/d9AVDTZx (6 SLOC) #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:27:39 +0000", "from_user": "techarch", "from_user_id": 14908034, "from_user_id_str": "14908034", "from_user_name": "Philippe Monnet", "geo": null, "id": 148182599418920960, "id_str": "148182599418920960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1096968079/Philippe11_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1096968079/Philippe11_copy_normal.jpg", "source": "<a href="http://pluggio.com" rel="nofollow">Pluggio</a>", "text": "Nice! :-) RT @ajlopez Research done. Switch to install last version of Node.js, on Windows http://t.co/NP8YIG9h look ma, npm!", "to_user": "ajlopez", "to_user_id": 14567622, "to_user_id_str": "14567622", "to_user_name": "ajlopez", "in_reply_to_status_id": 148171364216487940, "in_reply_to_status_id_str": "148171364216487936"}, +{"created_at": "Sat, 17 Dec 2011 23:26:56 +0000", "from_user": "GaruHenr", "from_user_id": 112743376, "from_user_id_str": "112743376", "from_user_name": "Bruno Henrique(Garu)", "geo": null, "id": 148182417889443840, "id_str": "148182417889443840", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1551147469/225472_1760698895957_1193588234_31583357_7276793_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1551147469/225472_1760698895957_1193588234_31583357_7276793_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "brincadeiras com #nodejs *----*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:18:15 +0000", "from_user": "ryanlowdermilk", "from_user_id": 7851942, "from_user_id_str": "7851942", "from_user_name": "Ryan Lowdermilk", "geo": null, "id": 148180233110036480, "id_str": "148180233110036480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/199052533/RyanLowdermilk_small_box_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/199052533/RyanLowdermilk_small_box_normal.gif", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Deploying my first node.js app to Azure. This should be harder. Feel like I'm cheating. #nodejs #azure", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:17:18 +0000", "from_user": "tjholowaychuk", "from_user_id": 29255412, "from_user_id_str": "29255412", "from_user_name": "TJ Holowaychuk", "geo": null, "id": 148179995804708860, "id_str": "148179995804708864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/124810348/DSC_0009_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/124810348/DSC_0009_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "uber-simple express 3.x-pre cookie session middleware https://t.co/d9AVDTZx (6 SLOC) #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:16:38 +0000", "from_user": "emerleite", "from_user_id": 16782712, "from_user_id_str": "16782712", "from_user_name": "Emerson Macedo", "geo": null, "id": 148179827206258700, "id_str": "148179827206258688", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1080818173/e4e27ec8-6e67-4316-91c8-3401c72e5ea0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1080818173/e4e27ec8-6e67-4316-91c8-3401c72e5ea0_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Hora de atualizar meu Node para 0.6.6. Por falar nisso o novo site ficou bem legal - http://t.co/2UxcBbLD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:14:22 +0000", "from_user": "nicktea", "from_user_id": 14957733, "from_user_id_str": "14957733", "from_user_name": "Nick Treadway", "geo": null, "id": 148179255258390530, "id_str": "148179255258390528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1150644660/day_of_dead_vader_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1150644660/day_of_dead_vader_sm_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @chrismatthieu: Sweet! RT @sachalepretre: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/hsom9moM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:08:02 +0000", "from_user": "mborbm", "from_user_id": 5569092, "from_user_id_str": "5569092", "from_user_name": "Manuel Borja", "geo": null, "id": 148177662261723140, "id_str": "148177662261723137", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/744896681/50444_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/744896681/50444_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@mejorandola \\u00BFen el pr\\u00F3ximo programa terminar\\u00E1n el ejemplo de nodejs ?", "to_user": "mejorandola", "to_user_id": 64863875, "to_user_id_str": "64863875", "to_user_name": "Mejorando la web"}, +{"created_at": "Sat, 17 Dec 2011 23:03:50 +0000", "from_user": "laurocaetano", "from_user_id": 241706667, "from_user_id_str": "241706667", "from_user_name": "Lauro Caetano", "geo": null, "id": 148176607805321200, "id_str": "148176607805321216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1635212972/eaef_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635212972/eaef_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: What exactly is #nodeJS (in pt-br):\\nhttp://t.co/S3GcJsG0 http://t.co/iQJav7Tb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:03:10 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148176439404015600, "id_str": "148176439404015616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @chrismatthieu Sweet! sachalepretre: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 ht...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:03:10 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148176437961170940, "id_str": "148176437961170944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @sachalepretre Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/U0qjlX5v", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:03:09 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148176435268427780, "id_str": "148176435268427777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @brainfucker NodeJsCommunity: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:03:05 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148176415894941700, "id_str": "148176415894941696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/hMmHiut3 http://t.co/GeBNElAB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:55:50 +0000", "from_user": "amit_twit", "from_user_id": 99925376, "from_user_id_str": "99925376", "from_user_name": "amit", "geo": null, "id": 148174593268523000, "id_str": "148174593268523008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1406766611/sp-studio_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1406766611/sp-studio_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@neo4j Is there a working wrapper/binding to #nodejs? tried some from Github and they seem to fail with v1.6", "to_user": "neo4j", "to_user_id": 22467617, "to_user_id_str": "22467617", "to_user_name": "Neo4j"}, +{"created_at": "Sat, 17 Dec 2011 22:52:53 +0000", "from_user": "Nodester", "from_user_id": 240751001, "from_user_id_str": "240751001", "from_user_name": "Nodester", "geo": null, "id": 148173849345794050, "id_str": "148173849345794048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: @nodejs people should be following @indutny - he's been doing great core work the last few months", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:51:29 +0000", "from_user": "chrismatthieu", "from_user_id": 13604142, "from_user_id_str": "13604142", "from_user_name": "Chris Matthieu", "geo": null, "id": 148173496311222270, "id_str": "148173496311222273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/918916153/SuperChrisSmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/918916153/SuperChrisSmall_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Sweet! RT @sachalepretre: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/hsom9moM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:47:27 +0000", "from_user": "sachalepretre", "from_user_id": 78666416, "from_user_id_str": "78666416", "from_user_name": "Sacha Lepretre", "geo": null, "id": 148172480945717250, "id_str": "148172480945717248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/829319624/sachalepretre_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/829319624/sachalepretre_normal.jpg", "source": "Zite Personalized Magazine", "text": "Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/BJ9yn1ha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:44:36 +0000", "from_user": "brainfucker", "from_user_id": 17170428, "from_user_id_str": "17170428", "from_user_name": "brainfucker", "geo": null, "id": 148171764650881020, "id_str": "148171764650881025", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1345274517/x_c90abfe3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1345274517/x_c90abfe3_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/hMmHiut3 http://t.co/37PB0Fy2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:44:26 +0000", "from_user": "dhaivatpoincare", "from_user_id": 233257440, "from_user_id_str": "233257440", "from_user_name": "Dhaivat Pandya", "geo": null, "id": 148171724888875000, "id_str": "148171724888875008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657560442/2011-11-25_13-57-39.638_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657560442/2011-11-25_13-57-39.638_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Just wrote another #realtime web app with #nodejs ... pretty addicting", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:43:00 +0000", "from_user": "ajlopez", "from_user_id": 14567622, "from_user_id_str": "14567622", "from_user_name": "ajlopez", "geo": null, "id": 148171364216487940, "id_str": "148171364216487936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/53769404/spiral_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/53769404/spiral_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Research done. Switch to install last version of Node.js, on Windows http://t.co/9sP5yC8P look ma, npm!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:35:16 +0000", "from_user": "sdouche", "from_user_id": 15830587, "from_user_id_str": "15830587", "from_user_name": "S\\u00E9bastien Douche", "geo": null, "id": 148169417698721800, "id_str": "148169417698721792", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/64962323/sdouche_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/64962323/sdouche_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "SockJS benchmarks #js #nodejs #python #pypy - http://t.co/JZxLjuwP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:32:01 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148168599528419330, "id_str": "148168599528419328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "What exactly is #nodeJS (in pt-br):\\nhttp://t.co/S3GcJsG0 http://t.co/iQJav7Tb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:20:15 +0000", "from_user": "t3rcio_andrade", "from_user_id": 57208899, "from_user_id_str": "57208899", "from_user_name": "Tercio de Andrade", "geo": null, "id": 148165638446268400, "id_str": "148165638446268416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1267770575/Contact_HPIM1267_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1267770575/Contact_HPIM1267_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "What exactly is #nodeJS (in pt-br):\\nhttp://t.co/f83Y5qVx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:15:29 +0000", "from_user": "kurokikaze", "from_user_id": 13150922, "from_user_id_str": "13150922", "from_user_name": "Serge Shirokov", "geo": null, "id": 148164439978422270, "id_str": "148164439978422274", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/56938132/x_66b88703_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/56938132/x_66b88703_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/hMmHiut3 http://t.co/37PB0Fy2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:14:11 +0000", "from_user": "ef80", "from_user_id": 320104063, "from_user_id_str": "320104063", "from_user_name": "Erlend", "geo": null, "id": 148164112956928000, "id_str": "148164112956928000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691301903/tur_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691301903/tur_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "ef80: javascript / node.js worker queue http://t.co/LoJ2IU5D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:58:00 +0000", "from_user": "madmw", "from_user_id": 1671311, "from_user_id_str": "1671311", "from_user_name": "Juli\\u00E1n Romero", "geo": null, "id": 148160037339140100, "id_str": "148160037339140096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/450218472/Avatar_Canencia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/450218472/Avatar_Canencia_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "apache, lighttpd, couchdb, redis, posgresql and a bunch of nodejs and django custom servers back to life; dinner time", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:52:44 +0000", "from_user": "scaganoff", "from_user_id": 15238450, "from_user_id_str": "15238450", "from_user_name": "Saul Caganoff", "geo": null, "id": 148158712144597000, "id_str": "148158712144596993", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/59295206/me_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/59295206/me_normal.jpeg", "source": "<a href="http://www.apple.com" rel="nofollow">Safari on iOS</a>", "text": "So optimizing RoR means use Node.js instead? http://t.co/TzKoX62z", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:46:15 +0000", "from_user": "3rdEden", "from_user_id": 14350255, "from_user_id_str": "14350255", "from_user_name": "Arnout Kazemier", "geo": null, "id": 148157082359693300, "id_str": "148157082359693313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@maciejmalecki Also having a menu bar on the right side is stupid, people read sites in a F pattern not in a \\uA7FB #nodejs", "to_user": "maciejmalecki", "to_user_id": 263755874, "to_user_id_str": "263755874", "to_user_name": "Maciej Ma\\u0142ecki", "in_reply_to_status_id": 148153714757206000, "in_reply_to_status_id_str": "148153714757206016"}, +{"created_at": "Sat, 17 Dec 2011 21:31:28 +0000", "from_user": "3rdEden", "from_user_id": 14350255, "from_user_id_str": "14350255", "from_user_name": "Arnout Kazemier", "geo": null, "id": 148153359789080580, "id_str": "148153359789080576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "I have said it before, and i'll say it again, having to scroll to find the link to documentation is fucking retarded #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:29:26 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148152850416009200, "id_str": "148152850416009216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/hMmHiut3 http://t.co/37PB0Fy2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:28:55 +0000", "from_user": "nodejitsu", "from_user_id": 157442008, "from_user_id_str": "157442008", "from_user_name": "Nodejitsu", "geo": null, "id": 148152717586608130, "id_str": "148152717586608128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ryah: @nodejs people should be following @indutny - he's been doing great core work the last few months", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:28:18 +0000", "from_user": "3rdEden", "from_user_id": 14350255, "from_user_id_str": "14350255", "from_user_name": "Arnout Kazemier", "geo": null, "id": 148152564314161150, "id_str": "148152564314161152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@ryah @nodejs @indutny like getting SPDY support in core ;) *hint* *hint*", "to_user": "ryah", "to_user_id": 18975861, "to_user_id_str": "18975861", "to_user_name": "Ryan Dahl", "in_reply_to_status_id": 148149731435102200, "in_reply_to_status_id_str": "148149731435102208"}, +{"created_at": "Sat, 17 Dec 2011 21:26:12 +0000", "from_user": "mrtopf", "from_user_id": 794885, "from_user_id_str": "794885", "from_user_name": "Christian Scholz", "geo": null, "id": 148152037073362940, "id_str": "148152037073362944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/817481781/mrtopf2010-klein_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/817481781/mrtopf2010-klein_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ryah: @nodejs people should be following @indutny - he's been doing great core work the last few months", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:23:44 +0000", "from_user": "tjholowaychuk", "from_user_id": 29255412, "from_user_id_str": "29255412", "from_user_name": "TJ Holowaychuk", "geo": null, "id": 148151413007061000, "id_str": "148151413007060992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/124810348/DSC_0009_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/124810348/DSC_0009_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ryah: @nodejs people should be following @indutny - he's been doing great core work the last few months", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:19:19 +0000", "from_user": "HTML5aldente", "from_user_id": 130282229, "from_user_id_str": "130282229", "from_user_name": "Chris Veltman", "geo": null, "id": 148150301948510200, "id_str": "148150301948510208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1125715140/html5-aldente-avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1125715140/html5-aldente-avatar_normal.jpg", "source": "Zite Personalized Magazine", "text": "Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/sphgw0rQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:17:03 +0000", "from_user": "ryah", "from_user_id": 18975861, "from_user_id_str": "18975861", "from_user_name": "Ryan Dahl", "geo": null, "id": 148149731435102200, "id_str": "148149731435102208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1634041610/name_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634041610/name_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@nodejs people should be following @indutny - he's been doing great core work the last few months", "to_user": "nodejs", "to_user_id": 91985735, "to_user_id_str": "91985735", "to_user_name": "node js"}, +{"created_at": "Sat, 17 Dec 2011 21:01:08 +0000", "from_user": "mwgriffith", "from_user_id": 280776244, "from_user_id_str": "280776244", "from_user_name": "Michael Griffith", "geo": null, "id": 148145725707005950, "id_str": "148145725707005952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1432284341/qr_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1432284341/qr_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Web Reflection: Create a JS builder with node.js http://t.co/wldXNFVe\\n#build #node.js", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:58:54 +0000", "from_user": "Bottico", "from_user_id": 14166522, "from_user_id_str": "14166522", "from_user_name": "Angel Botto", "geo": null, "id": 148145165985525760, "id_str": "148145165985525760", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1654717184/ba188789-ae61-4666-a1d2-49a0156dae39_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654717184/ba188789-ae61-4666-a1d2-49a0156dae39_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Nodejs Sublime Text 2 Package https://t.co/G1gUhBee #mejorandola", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:54:54 +0000", "from_user": "clystian_", "from_user_id": 98229677, "from_user_id_str": "98229677", "from_user_name": "Cristian Hernandez", "geo": null, "id": 148144158190735360, "id_str": "148144158190735362", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1622813688/sg_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622813688/sg_1__normal.jpg", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "RT @DiegoUG: Simple chat for Node.js - http://t.co/MQclglT0 http://t.co/jEm2JPFn - http://t.co/OuTo2DTP #mejorandojs (CC @cvander)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:53:17 +0000", "from_user": "NodeJSAtSO", "from_user_id": 292124941, "from_user_id_str": "292124941", "from_user_name": "Node JS @ SO", "geo": null, "id": 148143753847259140, "id_str": "148143753847259137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1336740490/sprites_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1336740490/sprites_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "pipe mixes different streams nodejs http://t.co/6UMdW32D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:49:05 +0000", "from_user": "adymitruk", "from_user_id": 14196181, "from_user_id_str": "14196181", "from_user_name": "Adam Dymitruk", "geo": null, "id": 148142696949751800, "id_str": "148142696949751808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1205941672/profilepic_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1205941672/profilepic_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Another nail in cygwin's coffin: npm is not available for nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:38:36 +0000", "from_user": "tjefford", "from_user_id": 14291039, "from_user_id_str": "14291039", "from_user_name": "Tyler Jefford", "geo": null, "id": 148140057411321860, "id_str": "148140057411321856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1292168201/IMG_0061_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1292168201/IMG_0061_normal.jpg", "source": "Zite Personalized Magazine", "text": "Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/w7dVl928 via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:30:41 +0000", "from_user": "rmhrisk", "from_user_id": 19459100, "from_user_id_str": "19459100", "from_user_name": "Ryan Hurst", "geo": null, "id": 148138062709395460, "id_str": "148138062709395456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/72951305/V35CADEMKDKCAY1N0JCCAFMSZT7CASY3XVSCA67MRUGCAFXBE16CAB9BNQXCA7ZQ2TNCABSLMH2CA1NN5B9CAXU54MJCASU1S2TCAQP57NNCAS48YIWCADVYES9CA7W3829CAIZ42NGCAH35MKUCAJS1M47_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/72951305/V35CADEMKDKCAY1N0JCCAFMSZT7CASY3XVSCA67MRUGCAFXBE16CAB9BNQXCA7ZQ2TNCABSLMH2CA1NN5B9CAXU54MJCASU1S2TCAQP57NNCAS48YIWCADVYES9CA7W3829CAIZ42NGCAH35MKUCAJS1M47_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I like that #BrowserID was implemented with NodeJS.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:22:54 +0000", "from_user": "larsw", "from_user_id": 812367, "from_user_id_str": "812367", "from_user_name": "Lars Wilhelmsen", "geo": null, "id": 148136105278050300, "id_str": "148136105278050305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1493520937/286554_506803857228_337700054_135341_3372933_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1493520937/286554_506803857228_337700054_135341_3372933_o_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@smarx Man! Why aren't you a CNN news anchor? re. http://t.co/Wt8ajtrs :-D", "to_user": "smarx", "to_user_id": 12449312, "to_user_id_str": "12449312", "to_user_name": "Steve Marx"}, +{"created_at": "Sat, 17 Dec 2011 20:10:06 +0000", "from_user": "Kurassier", "from_user_id": 121827295, "from_user_id_str": "121827295", "from_user_name": "Andr\\u00E9s Arias Rauld", "geo": null, "id": 148132883880615940, "id_str": "148132883880615936", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1650732275/LyY0CykA_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650732275/LyY0CykA_normal", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Instalado NodeJS, Sublime Text 2, SDEplorer, creo que estoy listo :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:07:47 +0000", "from_user": "luis2103", "from_user_id": 119916622, "from_user_id_str": "119916622", "from_user_name": "Luis Sancho", "geo": null, "id": 148132299970592770, "id_str": "148132299970592768", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1629425602/foto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629425602/foto_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/ycn8qdxK #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:02:07 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148130875123564540, "id_str": "148130875123564545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @tjholowaychuk rgaidot: Open sourcing a realtime mahjong http://t.co/MbqomYL6 #nodejs #expressjs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:02:05 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148130867842252800, "id_str": "148130867842252801", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @pelaphptutor #Web / #Facebook App with Google Map integration / use nodeJS when possible http://t.co/HWqgSN7T #jobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:02:04 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148130863404683260, "id_str": "148130863404683264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @TechGiirl Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/U0qjlX5v", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:56:45 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148129523169370100, "id_str": "148129523169370112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Web / #Facebook App with Google Map integration / use nodeJS when possible http://t.co/bOwXrlSc #jobs http://t.co/sM3SBGsY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:50:06 +0000", "from_user": "fnhernandez", "from_user_id": 163767275, "from_user_id_str": "163767275", "from_user_name": "Fabio Hernandez -\\uF8FF-", "geo": null, "id": 148127852318048260, "id_str": "148127852318048257", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696992518/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696992518/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@cvander Excelente, estaba esperando nodejs y SocketIO #mrjorandola", "to_user": "cvander", "to_user_id": 817789, "to_user_id_str": "817789", "to_user_name": "Christian Van Der H", "in_reply_to_status_id": 148113012799184900, "in_reply_to_status_id_str": "148113012799184896"}, +{"created_at": "Sat, 17 Dec 2011 19:41:37 +0000", "from_user": "tjholowaychuk", "from_user_id": 29255412, "from_user_id_str": "29255412", "from_user_name": "TJ Holowaychuk", "geo": null, "id": 148125718230994940, "id_str": "148125718230994944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/124810348/DSC_0009_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/124810348/DSC_0009_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rgaidot: Open sourcing a realtime mahjong http://t.co/ksPFXWFD #nodejs #expressjs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:36:02 +0000", "from_user": "pelaphptutor", "from_user_id": 52802067, "from_user_id_str": "52802067", "from_user_name": "pelaphptutorials.com", "geo": null, "id": 148124312551948300, "id_str": "148124312551948288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/292484362/n100131847672_3877_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/292484362/n100131847672_3877_normal.jpg", "source": "<a href="http://www.pelaphptutorials.com/" rel="nofollow">PelaPHPTutorials</a>", "text": "#Web / #Facebook App with Google Map integration / use nodeJS when possible http://t.co/11FYhP8L #jobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:34:46 +0000", "from_user": "manatsawin", "from_user_id": 12738602, "from_user_id_str": "12738602", "from_user_name": "\\u0E21\\u0E19\\u0E2A\\u0E27", "geo": null, "id": 148123994099421200, "id_str": "148123994099421184", "iso_language_code": "th", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698266811/mesky_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698266811/mesky_normal", "source": "<a href="https://chrome.google.com/webstore/detail/ogndknhgkahnialefpjkhmbekkobjfkh" rel="nofollow">Twitica Desktop</a>", "text": "lister \\u0E42\\u0E1B\\u0E23\\u0E41\\u0E01\\u0E23\\u0E21\\u0E19\\u0E35\\u0E49\\u0E21\\u0E31\\u0E48\\u0E19\\u0E43\\u0E08\\u0E44\\u0E27\\u0E01\\u0E27\\u0E48\\u0E32\\u0E42\\u0E1B\\u0E23\\u0E41\\u0E01\\u0E23\\u0E21\\u0E1A\\u0E19 windows \\u0E41\\u0E19\\u0E48\\u0E19\\u0E2D\\u0E19 \\u0E40\\u0E1E\\u0E23\\u0E32\\u0E30\\u0E21\\u0E31\\u0E19\\u0E41\\u0E15\\u0E01\\u0E40\\u0E18\\u0E23\\u0E14\\u0E23\\u0E31\\u0E27\\u0E46\\u0E46\\u0E46 \\u0E22\\u0E34\\u0E48\\u0E07\\u0E40\\u0E27\\u0E2D\\u0E23\\u0E4C\\u0E0A\\u0E31\\u0E48\\u0E19 nodejs \\u0E22\\u0E34\\u0E48\\u0E07\\u0E44\\u0E27\\u0E42\\u0E04\\u0E15\\u0E23", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:31:38 +0000", "from_user": "PepeVazquezS", "from_user_id": 270602775, "from_user_id_str": "270602775", "from_user_name": "Pepe Vazquez Sanchez", "geo": null, "id": 148123204496523260, "id_str": "148123204496523264", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1567190282/yo2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1567190282/yo2_normal.jpg", "source": "<a href="http://paper.li" rel="nofollow">Paper.li</a>", "text": "\\u00A1TechAgil & TechNews est\\u00E1 disponible! http://t.co/IW5gM8B3 \\u25B8 Historias del d\\u00EDa por @ikitommi @melt_cdk @nodejs @vfqdev @payerickdog", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:27:51 +0000", "from_user": "TechGiirl", "from_user_id": 416541210, "from_user_id_str": "416541210", "from_user_name": "TechGiirl", "geo": null, "id": 148122251491934200, "id_str": "148122251491934208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1647318013/tech_girl_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647318013/tech_girl_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 http://t.co/4ihAIHld", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:19:05 +0000", "from_user": "jerrymarino", "from_user_id": 14696816, "from_user_id_str": "14696816", "from_user_name": "jerrymarino", "geo": null, "id": 148120047062237200, "id_str": "148120047062237184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682006694/25902_1382810285979_1103612857_31169656_2142140_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682006694/25902_1382810285979_1103612857_31169656_2142140_n_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @Nodejs_bot: via @ziyadbazed Write your shell scripts in JavaScript, via Node.js http://t.co/Mohn0yTG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:14:08 +0000", "from_user": "jsgeneve", "from_user_id": 404035068, "from_user_id_str": "404035068", "from_user_name": "Javascript Gen\\u00E8ve", "geo": null, "id": 148118800540254200, "id_str": "148118800540254208", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1620267028/twitter_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620267028/twitter_normal.gif", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Manipulation de la DOM en #NodeJS avec JSDOM, jQuery et Mustache http://t.co/BHDEwITo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:12:35 +0000", "from_user": "chocolateynuget", "from_user_id": 342874803, "from_user_id_str": "342874803", "from_user_name": "Chocolatey NuGet", "geo": null, "id": 148118408746110980, "id_str": "148118408746110976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1527393850/chocolateyicon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1527393850/chocolateyicon_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "nodejs: Node JS - Evented I/O for v8 JavaScript. #chocolatey #new", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:11:00 +0000", "from_user": "DrDhodz", "from_user_id": 287479847, "from_user_id_str": "287479847", "from_user_name": "James Douglas", "geo": null, "id": 148118013193895940, "id_str": "148118013193895936", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1531207315/DrDhodz_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1531207315/DrDhodz_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Node.js Artikel im t3n Magazin: pIn der aktuellen a href=\"http://t3n.de/magazin/t3n-nr-22\\u2026 http://t.co/9Whhb7lO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Sat, 17 Dec 2011 18:54:36 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148113883448610800, "id_str": "148113883448610818", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Server-side DOM manipulation in Node.js with JSDOM, JQuery, and Mustache Templates http://t.co/A7QRYjBm #jquery http://t.co/m3QowjS9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:52:03 +0000", "from_user": "chesles", "from_user_id": 118408760, "from_user_id_str": "118408760", "from_user_name": "John Chesley", "geo": null, "id": 148113243859197950, "id_str": "148113243859197953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1139621304/IMG_2815_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1139621304/IMG_2815_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "they do make a cute couple, don't they? http://t.co/OTGOLbQN #nodejs #mongodb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:49:52 +0000", "from_user": "viking_olof", "from_user_id": 147300633, "from_user_id_str": "147300633", "from_user_name": "Olof", "geo": null, "id": 148112694527000580, "id_str": "148112694527000577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/936074674/80x80_comic0024_laymGAJROZkAVpgnnqSvQ_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/936074674/80x80_comic0024_laymGAJROZkAVpgnnqSvQ_normal.jpg", "source": "<a href="http://myworld.se/olga-olof-sitting-in-a-tree/" rel="nofollow">Olga</a>", "text": "Server-side DOM manipulation in Node.js with JSDOM, JQuery, and Mustache Templates http://t.co/jtPEFzmd #jquery", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:48:36 +0000", "from_user": "k_rother", "from_user_id": 61298929, "from_user_id_str": "61298929", "from_user_name": "Kristian Rother", "geo": null, "id": 148112373755031550, "id_str": "148112373755031554", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/339131787/k_rother_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/339131787/k_rother_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @masylum: It's been only one day that I open sourced a mahjong solitaire and 600 hours have already been wasted http://t.co/CXBy3dtr #nodejs #html5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:36:29 +0000", "from_user": "masylum", "from_user_id": 2475601, "from_user_id_str": "2475601", "from_user_name": "Pau", "geo": null, "id": 148109325133553660, "id_str": "148109325133553664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/53868095/CIMG6255_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/53868095/CIMG6255_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "It's been only one day that I open sourced a mahjong solitaire and 600 hours have already been wasted http://t.co/CXBy3dtr #nodejs #html5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:27:23 +0000", "from_user": "zohaibhassan", "from_user_id": 28342526, "from_user_id_str": "28342526", "from_user_name": "Zohaib Sibte Hassan", "geo": null, "id": 148107036473831420, "id_str": "148107036473831424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1528005473/phpbU9MP2AM_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1528005473/phpbU9MP2AM_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@umutm try this you my never come back to nodejs http://t.co/8RAtrLa6", "to_user": "umutm", "to_user_id": 19119804, "to_user_id_str": "19119804", "to_user_name": "Umut Muhaddisoglu", "in_reply_to_status_id": 148105886206922750, "in_reply_to_status_id_str": "148105886206922752"}, +{"created_at": "Sat, 17 Dec 2011 18:20:23 +0000", "from_user": "VRajaRao", "from_user_id": 265225982, "from_user_id_str": "265225982", "from_user_name": "Vadugu Raja Rao", "geo": null, "id": 148105273842741250, "id_str": "148105273842741248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Windows Azure Updated To Support Hadoop and Node.js http://t.co/b9JSXCQO via @toolsjournal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:19:38 +0000", "from_user": "startupcalgary", "from_user_id": 172414919, "from_user_id_str": "172414919", "from_user_name": "Startup Calgary", "geo": null, "id": 148105086525124600, "id_str": "148105086525124609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1153319940/twitter_logo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1153319940/twitter_logo_normal.gif", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @ekryski: Hackity Hackin' @AcceleratorYYC. I'm lonely. Come join me! #nodejs #MongoDB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:17:31 +0000", "from_user": "VRajaRao", "from_user_id": 265225982, "from_user_id_str": "265225982", "from_user_name": "Vadugu Raja Rao", "geo": null, "id": 148104553642987520, "id_str": "148104553642987520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Windows Azure Updated To Support Hadoop and Node.js http://t.co/b9JSXCQO via @toolsjournal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:56:34 +0000", "from_user": "a2exandre", "from_user_id": 48330766, "from_user_id_str": "48330766", "from_user_name": "Alexandre \\u2716", "geo": null, "id": 148099281495130100, "id_str": "148099281495130113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1614089650/alexandre-le-hegarat_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1614089650/alexandre-le-hegarat_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Stream a webcam using nodejs, html5 http://t.co/lOEbvaYh #in #nodejs #html5 #javascript http://t.co/aiiHtqoR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:54:19 +0000", "from_user": "prodrigestivill", "from_user_id": 154629313, "from_user_id_str": "154629313", "from_user_name": "Pau (plue)", "geo": null, "id": 148098715251507200, "id_str": "148098715251507200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/996972392/avatar2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/996972392/avatar2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Stream a webcam using nodejs, html5 http://t.co/lOEbvaYh #in #nodejs #html5 #javascript http://t.co/aiiHtqoR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:33:36 +0000", "from_user": "pksunkara", "from_user_id": 122074153, "from_user_id_str": "122074153", "from_user_name": "Pavan Kumar Sunkara", "geo": null, "id": 148093498070020100, "id_str": "148093498070020097", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1427115741/181a5dbeda025f718df4d37bf522ed3d_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1427115741/181a5dbeda025f718df4d37bf522ed3d_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@nodejitsu takes 26s to create and deploy a new app, #nodejs", "to_user": "nodejitsu", "to_user_id": 157442008, "to_user_id_str": "157442008", "to_user_name": "Nodejitsu"}, +{"created_at": "Sat, 17 Dec 2011 17:33:19 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 148093429451210750, "id_str": "148093429451210752", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "nodepress (0.3.1): http://t.co/r76FEKlA A nodejs micro-blog engine", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:27:29 +0000", "from_user": "cam2149", "from_user_id": 342283633, "from_user_id_str": "342283633", "from_user_name": "camartinez", "geo": null, "id": 148091960350093300, "id_str": "148091960350093313", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1640291214/DSC05087_-_copia_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640291214/DSC05087_-_copia_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Node.js v0.5.10 Manual & Documentation \\nhttp://t.co/rFwtzhql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:16:25 +0000", "from_user": "rdcotter", "from_user_id": 38607483, "from_user_id_str": "38607483", "from_user_name": "Rick Cotter", "geo": null, "id": 148089176221429760, "id_str": "148089176221429761", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1444956913/Floating_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1444956913/Floating_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @ekryski: Hackity Hackin' @AcceleratorYYC. I'm lonely. Come join me! #nodejs #MongoDB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:16:01 +0000", "from_user": "nodecalgary", "from_user_id": 330116925, "from_user_id_str": "330116925", "from_user_name": "Node Calgary", "geo": null, "id": 148089075876904960, "id_str": "148089075876904961", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1437275972/node_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1437275972/node_twitter_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @ekryski: Hackity Hackin' @AcceleratorYYC. I'm lonely. Come join me! #nodejs #MongoDB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:10:31 +0000", "from_user": "ekryski", "from_user_id": 258956663, "from_user_id_str": "258956663", "from_user_name": "Eric Kryski", "geo": null, "id": 148087691555250180, "id_str": "148087691555250176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1277933776/eric_home_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1277933776/eric_home_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Hackity Hackin' @AcceleratorYYC. I'm lonely. Come join me! #nodejs #MongoDB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:10:05 +0000", "from_user": "wPGnews", "from_user_id": 201365363, "from_user_id_str": "201365363", "from_user_name": "\\u308F\\u304B\\u3081\\u30CB\\u30E5\\u30FC\\u30B9\\uFF08\\u30D7\\u30ED\\u30B0\\u30E9\\u30DF\\u30F3\\u30B0\\uFF09", "geo": null, "id": 148087582704672770, "id_str": "148087582704672768", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1144557758/twiprogramming_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1144557758/twiprogramming_normal.gif", "source": "<a href="http://wakamenews.mydns.jp/programming.php" rel="nofollow">\\u308F\\u304B\\u3081\\u306B\\u3085\\u30FC\\u3059BOT\\uFF08Programming\\uFF09</a>", "text": "what is your favorite JS editor? - nodejs | Google \\u30B0\\u30EB\\u30FC\\u30D7 http://t.co/x7Ceq3eP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:01:13 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148085350315724800, "id_str": "148085350315724800", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @kernelhacker My weekend project in nodejs - http://t.co/QUCNKztx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:01:13 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148085349170679800, "id_str": "148085349170679808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @itwars node-spdy Implementation of the SPDY protocol on node.js | #nodejs http://t.co/ozEMATbN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:01:12 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148085346616352770, "id_str": "148085346616352768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @ziyadbazed Write your shell scripts in JavaScript, via Node.js http://t.co/Mohn0yTG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:42:29 +0000", "from_user": "stephohanley", "from_user_id": 292446376, "from_user_id_str": "292446376", "from_user_name": "Stephanie O'Hanley", "geo": null, "id": 148080635423113200, "id_str": "148080635423113216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1362853537/twitterphoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1362853537/twitterphoto_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @mtw: #hackmtl currently going on at @notmanhouse counting 8 projects working on #nodejs #mongodb #redis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:31:28 +0000", "from_user": "rifat", "from_user_id": 9706142, "from_user_id_str": "9706142", "from_user_name": "Rifat Nabi", "geo": +{"coordinates": [23.7822,90.406], "type": "Point"}, "id": 148077862086389760, "id_str": "148077862086389760", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/849836651/392ad9591d2b38dbdefc04af90ced991_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/849836651/392ad9591d2b38dbdefc04af90ced991_normal.jpeg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "Updating #androidsdk & #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:27:03 +0000", "from_user": "josuetec2003", "from_user_id": 97719877, "from_user_id_str": "97719877", "from_user_name": "Josu\\u00E9 Alvarez \\u30C4", "geo": null, "id": 148076751279493120, "id_str": "148076751279493120", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1628191634/DSC00016_-_copia__2__-_copia_-_copia_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628191634/DSC00016_-_copia__2__-_copia_-_copia_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@CARVANET Que pedos? Ya comenz\\u00F3 a desarrollar con #NodeJS ?", "to_user": "CARVANET", "to_user_id": 227199426, "to_user_id_str": "227199426", "to_user_name": "Carlos Vargas", "in_reply_to_status_id": 148076061106769920, "in_reply_to_status_id_str": "148076061106769920"}, +{"created_at": "Sat, 17 Dec 2011 16:25:21 +0000", "from_user": "TikalKnowledge", "from_user_id": 170645052, "from_user_id_str": "170645052", "from_user_name": "Tikal Knowledge", "geo": null, "id": 148076322386755600, "id_str": "148076322386755585", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1100393184/tn_logoGray-big_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1100393184/tn_logoGray-big_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Toolbox for nodejs http://t.co/mBuVJbFb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:23:51 +0000", "from_user": "tikalk", "from_user_id": 40843868, "from_user_id_str": "40843868", "from_user_name": "Tikal", "geo": null, "id": 148075945704685570, "id_str": "148075945704685568", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/278387960/tikal-64-leaf_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/278387960/tikal-64-leaf_normal.png", "source": "<a href="http://www.tikalk.com" rel="nofollow">Tikal Community</a>", "text": "orenf posted: Toolbox for nodejs http://t.co/WV8fa5Um", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:18:49 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148074680635502600, "id_str": "148074680635502592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "node-spdy Implementation of the SPDY protocol on node.js | #nodejs http://t.co/QUXiLiqD http://t.co/Px8scCml", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:16:43 +0000", "from_user": "mkohlmyr", "from_user_id": 16912414, "from_user_id_str": "16912414", "from_user_name": "Mikael Kohlmyr", "geo": null, "id": 148074149657587700, "id_str": "148074149657587713", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698394272/fb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698394272/fb_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@DearHarry Aldrig fel med fler spr\\u00E5k, vill g\\u00E4rna plocka upp python, ruby & nodejs f\\u00F6r att ut\\u00F6ka mitt artilleri f\\u00F6r webben hehe", "to_user": "DearHarry", "to_user_id": 16908505, "to_user_id_str": "16908505", "to_user_name": "Emanuel Andersson", "in_reply_to_status_id": 148073468007682050, "in_reply_to_status_id_str": "148073468007682048"}, +{"created_at": "Sat, 17 Dec 2011 16:14:51 +0000", "from_user": "mkohlmyr", "from_user_id": 16912414, "from_user_id_str": "16912414", "from_user_name": "Mikael Kohlmyr", "geo": null, "id": 148073679861977100, "id_str": "148073679861977090", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698394272/fb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698394272/fb_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@DearHarry Knappt tid f\\u00F6r egna projekt atm & letar internships f\\u00F6r sommar s\\u00E5 f\\u00E5r se :P Vill g\\u00E4rna leka med nodejs/cassandra/ruby etc.", "to_user": "DearHarry", "to_user_id": 16908505, "to_user_id_str": "16908505", "to_user_name": "Emanuel Andersson", "in_reply_to_status_id": 148071595250954240, "in_reply_to_status_id_str": "148071595250954240"}, +{"created_at": "Sat, 17 Dec 2011 16:10:24 +0000", "from_user": "dhaivatpoincare", "from_user_id": 233257440, "from_user_id_str": "233257440", "from_user_name": "Dhaivat Pandya", "geo": null, "id": 148072560251252740, "id_str": "148072560251252737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657560442/2011-11-25_13-57-39.638_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657560442/2011-11-25_13-57-39.638_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "I\"m in need of a programming project, preferably #python or #javascript (#jquery) or #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:58:11 +0000", "from_user": "kernelhacker", "from_user_id": 41547502, "from_user_id_str": "41547502", "from_user_name": "Qasims", "geo": null, "id": 148069488535928830, "id_str": "148069488535928834", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/222071855/photo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/222071855/photo_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "My weekend project in nodejs - http://t.co/o9WL0qcH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:52:52 +0000", "from_user": "itwars", "from_user_id": 67265165, "from_user_id_str": "67265165", "from_user_name": "Vincent RABAH", "geo": null, "id": 148068147847643140, "id_str": "148068147847643136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1135858686/cb-vincent_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1135858686/cb-vincent_normal.png", "source": "<a href="http://www.scoop.it" rel="nofollow">Scoop.it</a>", "text": "node-spdy Implementation of the SPDY protocol on node.js | #nodejs http://t.co/thucXsZu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:52:12 +0000", "from_user": "ziyadbazed", "from_user_id": 28047037, "from_user_id_str": "28047037", "from_user_name": "Ziyad Bazed", "geo": null, "id": 148067979790254080, "id_str": "148067979790254080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1513314654/IMG00937-20110625-2011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1513314654/IMG00937-20110625-2011_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "Write your shell scripts in JavaScript, via Node.js http://t.co/qdxJCaVN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:51:49 +0000", "from_user": "itwars", "from_user_id": 67265165, "from_user_id_str": "67265165", "from_user_name": "Vincent RABAH", "geo": null, "id": 148067885078675460, "id_str": "148067885078675458", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1135858686/cb-vincent_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1135858686/cb-vincent_normal.png", "source": "<a href="http://termtter.org/" rel="nofollow">Termtter</a>", "text": "#nodejs RT @zeroload: RT @nodenpm: spdy (1.0.0): http://t.co/H17O1J1r Implementation of the SPDY protocol on node.js.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:47:53 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148066896737091600, "id_str": "148066896737091585", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "mongoose-paginate (0.1.0): http://t.co/0JfPxjaI Mongoose ORM (NodeJS) Document Query Pagination http://t.co/pj9RQWbo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:43:40 +0000", "from_user": "txipi", "from_user_id": 2632531, "from_user_id_str": "2632531", "from_user_name": "txipi", "geo": null, "id": 148065834751889400, "id_str": "148065834751889408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1245238537/txipi-hub_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1245238537/txipi-hub_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Stream a webcam using nodejs, html5 http://t.co/lOEbvaYh #in #nodejs #html5 #javascript http://t.co/aiiHtqoR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:41:46 +0000", "from_user": "trufae", "from_user_id": 15364094, "from_user_id_str": "15364094", "from_user_name": "pancake", "geo": null, "id": 148065355061923840, "id_str": "148065355061923840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1291415517/abdadcat_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1291415517/abdadcat_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Stream a webcam using nodejs, html5 http://t.co/lOEbvaYh #in #nodejs #html5 #javascript http://t.co/aiiHtqoR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:34:19 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 148063482787536900, "id_str": "148063482787536898", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "mongoose-paginate (0.1.0): http://t.co/fhbMzLA0 Mongoose ORM (NodeJS) Document Query Pagination", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:29:29 +0000", "from_user": "MTLTalent", "from_user_id": 395320819, "from_user_id_str": "395320819", "from_user_name": "MTLTalent", "geo": null, "id": 148062264191234050, "id_str": "148062264191234050", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1599444158/MTL_Startup_Talent_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599444158/MTL_Startup_Talent_logo_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @mtw: #hackmtl currently going on at @notmanhouse counting 8 projects working on #nodejs #mongodb #redis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:29:18 +0000", "from_user": "mtw", "from_user_id": 4609741, "from_user_id_str": "4609741", "from_user_name": "Montreal Tech Watch", "geo": null, "id": 148062220331388930, "id_str": "148062220331388929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1311424156/Screen_shot_2011-04-14_at_11.25.36_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1311424156/Screen_shot_2011-04-14_at_11.25.36_AM_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "#hackmtl currently going on at @notmanhouse counting 8 projects working on #nodejs #mongodb #redis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:27:21 +0000", "from_user": "cirbif", "from_user_id": 166893803, "from_user_id_str": "166893803", "from_user_name": "Denny Trebbin", "geo": null, "id": 148061729539112960, "id_str": "148061729539112960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1182574135/Facebook_zoomed_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1182574135/Facebook_zoomed_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Developing apps for #webOS with #NodeJS is really easy but can be improved with #CoffeeScript :) #IntelliJ supports webOS out-of-the-box :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:46:52 +0000", "from_user": "_hiraq", "from_user_id": 15146420, "from_user_id_str": "15146420", "from_user_name": "hiraq citra m", "geo": null, "id": 148051540517728260, "id_str": "148051540517728257", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1136451829/SUC54797_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1136451829/SUC54797_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "nah! ini baru mantep! > http://t.co/9FTnzgA4 ... cakephp+node.js", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:42:57 +0000", "from_user": "asamidsgr", "from_user_id": 193665655, "from_user_id_str": "193665655", "from_user_name": "Asami Yuuki", "geo": null, "id": 148050555716108300, "id_str": "148050555716108288", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1160245296/8483064_2540497908_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1160245296/8483064_2540497908_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @__k__o__: nodejs\\u306B\\u89E6\\u3063\\u3066\\u307F\\u3066\\u308B\\u3002javascript\\u76F4\\u306B\\u306F\\u3042\\u3093\\u307E\\u308A\\u89E6\\u308A\\u305F\\u304F\\u306A\\u3044\\u3051\\u3069\\u3002GWT\\u3068\\u304B\\u3055\\u308F\\u3063\\u3066\\u307F\\u308B\\u3079\\u304D\\u304B\\u306A\\uFF1F", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:41:10 +0000", "from_user": "NodeJSAtSO", "from_user_id": 292124941, "from_user_id_str": "292124941", "from_user_name": "Node JS @ SO", "geo": null, "id": 148050106904625150, "id_str": "148050106904625152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1336740490/sprites_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1336740490/sprites_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Is there examples of nodejs+express secure user authentication http://t.co/1BA84G3C", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:38:55 +0000", "from_user": "Kurassier", "from_user_id": 121827295, "from_user_id_str": "121827295", "from_user_name": "Andr\\u00E9s Arias Rauld", "geo": null, "id": 148049541378228220, "id_str": "148049541378228224", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1650732275/LyY0CykA_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650732275/LyY0CykA_normal", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Buscando servidor Free para las pruebas con NodeJS, para luego montarlo en el mio :D!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:30:32 +0000", "from_user": "__k__o__", "from_user_id": 108172087, "from_user_id_str": "108172087", "from_user_name": "\\u30B3\\u30A6", "geo": null, "id": 148047431513288700, "id_str": "148047431513288706", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1146064357/IMG_0281_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1146064357/IMG_0281_normal.JPG", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "nodejs\\u306B\\u89E6\\u3063\\u3066\\u307F\\u3066\\u308B\\u3002javascript\\u76F4\\u306B\\u306F\\u3042\\u3093\\u307E\\u308A\\u89E6\\u308A\\u305F\\u304F\\u306A\\u3044\\u3051\\u3069\\u3002GWT\\u3068\\u304B\\u3055\\u308F\\u3063\\u3066\\u307F\\u308B\\u3079\\u304D\\u304B\\u306A\\uFF1F", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:21:28 +0000", "from_user": "lmatteis", "from_user_id": 281950081, "from_user_id_str": "281950081", "from_user_name": "Luca Matteis", "geo": null, "id": 148045148394225660, "id_str": "148045148394225664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1311121600/me_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1311121600/me_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Why in-memory database are sometimes useful @nodejs http://t.co/MKEl09cE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:18:50 +0000", "from_user": "mah0x211", "from_user_id": 106365751, "from_user_id_str": "106365751", "from_user_name": "mah", "geo": null, "id": 148044485530628100, "id_str": "148044485530628096", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1188866055/face_image_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1188866055/face_image_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u3067\\u3082\\u3001V8\\u306EIsolates\\u3067nodejs\\u3067\\u3082\\u30DE\\u30EB\\u30C1\\u30B9\\u30EC\\u30C3\\u30C9\\u306A\\u3093\\u3066\\u306A\\u3063\\u305F\\u3089\\u3069\\u3046\\u306A\\u308B\\u3093\\u3060\\u308D\\u3002\\u6642\\u9593\\u3042\\u308B\\u6642\\u306B\\u3061\\u3083\\u3093\\u3068\\u8ABF\\u3079\\u3066\\u307F\\u306A\\u304D\\u3083\\u3060\\u306A\\u3041\\u3002 \\uFF5Chttp://t.co/2QUblNh2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:16:30 +0000", "from_user": "mah0x211", "from_user_id": 106365751, "from_user_id_str": "106365751", "from_user_name": "mah", "geo": null, "id": 148043896889421820, "id_str": "148043896889421824", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1188866055/face_image_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1188866055/face_image_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u305D\\u3044\\u3048\\u3070\\u3001eio\\u306Eapi\\u3068\\u306B\\u3089\\u3081\\u3063\\u3053\\u3057\\u3059\\u304E\\u3066\\u3066nodejs\\u304C\\u30B7\\u30F3\\u30B0\\u30EB\\u30B9\\u30EC\\u30C3\\u30C9\\u3060\\u3063\\u3066\\u4E8B\\u3092\\u3059\\u3063\\u304B\\u308A\\u5FD8\\u308C\\u3066\\u305F\\u3002\\u305D\\u308C\\u306A\\u3089\\u3001CRC32\\u306A\\u3093\\u3066\\u8A08\\u7B97\\u3057\\u306A\\u304F\\u3066\\u3082gettimeofday\\u306E\\u30DE\\u30A4\\u30AF\\u30ED\\u79D2\\u3092\\u30AD\\u30FC\\u306B\\u3057\\u3061\\u3083\\u3048\\u3070\\u3044\\u3044\\u306E\\u304B\\u3002swig\\u307F\\u305F\\u3044\\u306B\\u30C6\\u30F3\\u30D7\\u30EC\\u30FC\\u30C8\\u6587\\u5B57\\u5217\\u3092\\u30CF\\u30C3\\u30B7\\u30E5\\u30AD\\u30FC\\u306B\\u4F7F\\u308F\\u306A\\u304F\\u3066\\u826F\\u304F\\u306A\\u308B\\u3057\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:15:27 +0000", "from_user": "lorenzomassacci", "from_user_id": 663903, "from_user_id_str": "663903", "from_user_name": "Lorenzo Massacci", "geo": null, "id": 148043634770583550, "id_str": "148043634770583552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/46676082/mypictr_LinkedIn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/46676082/mypictr_LinkedIn_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 | Francis Shanahan[.com] ... http://t.co/SMAIBoQP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:59:43 +0000", "from_user": "jsgeneve", "from_user_id": 404035068, "from_user_id_str": "404035068", "from_user_name": "Javascript Gen\\u00E8ve", "geo": null, "id": 148039675687338000, "id_str": "148039675687337984", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1620267028/twitter_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620267028/twitter_normal.gif", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "#nodelab: un \"snippet\" (terme de l'auteur) pour faire de la diffusion vid\\u00E9o stream\\u00E9e avec #nodejs et #operamobile http://t.co/KSpaIL7i", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:53:20 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148038069310853120, "id_str": "148038069310853120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @Simbiotika Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 | Francis Shanahan[.com] - ht...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:53:20 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148038068035797000, "id_str": "148038068035796993", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @driveon_es Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 | Francis Shanahan[.com] - ht...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:53:20 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148038066924294140, "id_str": "148038066924294145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @smediafactory Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 | Francis Shanahan[.com] -...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:45:21 +0000", "from_user": "dnielf", "from_user_id": 64901406, "from_user_id_str": "64901406", "from_user_name": "Daniel Flores", "geo": null, "id": 148036057923977200, "id_str": "148036057923977216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1593965956/devniel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593965956/devniel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 | Francis Shanahan[.com] ... http://t.co/SMAIBoQP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:42:16 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148035281608646660, "id_str": "148035281608646657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 | Francis Shanahan[.com] ... http://t.co/SMAIBoQP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:36:19 +0000", "from_user": "Simbiotika", "from_user_id": 104850961, "from_user_id_str": "104850961", "from_user_name": "Simbiotika", "geo": null, "id": 148033785651404800, "id_str": "148033785651404801", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1171652145/anagrama_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1171652145/anagrama_normal.jpg", "source": "<a href="http://karmacracy.com" rel="nofollow">Karmacracy</a>", "text": "Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 | Francis Shanahan[.com] - http://t.co/xf8iig0c", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:36:18 +0000", "from_user": "driveon_es", "from_user_id": 256127995, "from_user_id_str": "256127995", "from_user_name": "DriveOn", "geo": null, "id": 148033779833909250, "id_str": "148033779833909248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1252902399/twt_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1252902399/twt_normal.jpg", "source": "<a href="http://karmacracy.com" rel="nofollow">Karmacracy</a>", "text": "Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 | Francis Shanahan[.com] - http://t.co/tJ5RSsVm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:36:16 +0000", "from_user": "smediafactory", "from_user_id": 202579326, "from_user_id_str": "202579326", "from_user_name": "Social Media Factory", "geo": null, "id": 148033773542457340, "id_str": "148033773542457345", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1606139776/logo-smf-twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606139776/logo-smf-twitter_normal.png", "source": "<a href="http://karmacracy.com" rel="nofollow">Karmacracy</a>", "text": "Stream a webcam using Javascript, NodeJS, Android, Opera Mobile, Web Sockets and HTML5 | Francis Shanahan[.com] - http://t.co/AL7AXxbG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:25:42 +0000", "from_user": "stackfeed", "from_user_id": 237310237, "from_user_id_str": "237310237", "from_user_name": "StackOverflow", "geo": null, "id": 148031115599417340, "id_str": "148031115599417344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Is there examples of nodejs+express secure user authentication: I've seen user authentication in nodepad example... http://t.co/0idX9GoU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:08:19 +0000", "from_user": "osonoi", "from_user_id": 26443917, "from_user_id_str": "26443917", "from_user_name": "\\u5C0F\\u8597\\u4E95", "geo": null, "id": 148026741003259900, "id_str": "148026741003259906", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1127805484/osonoi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1127805484/osonoi_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\\u3084\\u3063\\u3071\\u308Ahadoop\\u304B\\u3000RT @linuxfoundation: Top 10 OSS Projects of '11. http://t.co/Rzx51zyV Did your fave make the list? #linux #nodejs #puppet...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:01:01 +0000", "from_user": "stoodos", "from_user_id": 217206682, "from_user_id_str": "217206682", "from_user_name": "Stoodos", "geo": null, "id": 148024901779980300, "id_str": "148024901779980290", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1576949592/twitter_sem_ovo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576949592/twitter_sem_ovo_normal.jpg", "source": "<a href="http://www.stoodos.com" rel="nofollow">Tweetoodos</a>", "text": "Id\\u00E9ia legal: com um comando abrir diversos terminais com o projeto rodando http://t.co/dWd76Sf6 via Urubatan #soudev #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:59:02 +0000", "from_user": "NodeJSAtSO", "from_user_id": 292124941, "from_user_id_str": "292124941", "from_user_name": "Node JS @ SO", "geo": null, "id": 148024402267750400, "id_str": "148024402267750400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1336740490/sprites_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1336740490/sprites_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "How to compile NodeJS on a D-Link DNS 325 with fun_plug 0.5 installed? http://t.co/WpCjSrh3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:56:02 +0000", "from_user": "ddsakura", "from_user_id": 10463842, "from_user_id_str": "10463842", "from_user_name": "\\u8CFD\\u62C9\\u7DAD\\u2027\\u67EF\\u5357", "geo": null, "id": 148023648165445630, "id_str": "148023648165445632", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/42020492/630252_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/42020492/630252_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@clayliao nodejs\\u7B46\\u8A18\\u5BEB\\u5230 8 \\u6708\\u5C31\\u6C92\\u5728\\u5BEB\\u4E86 \\u5F88\\u671F\\u5F85\\u54A7 \\u4E0D\\u8981\\u518D\\u5FD9\\u8457\\u7D04\\u6703\\u4E86\\u5566!", "to_user": "clayliao", "to_user_id": 125693122, "to_user_id_str": "125693122", "to_user_name": "Ying-Hsiang, Liao"}, +{"created_at": "Sat, 17 Dec 2011 12:54:47 +0000", "from_user": "VictorGolias", "from_user_id": 268487866, "from_user_id_str": "268487866", "from_user_name": "Viktor Golia\\u0161", "geo": null, "id": 148023333299027970, "id_str": "148023333299027969", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1586380829/photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586380829/photo_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Optimizing #RubyOnRails applications with #NodeJS | PerfectLine Blog http://t.co/K2W2wK9s via @PerfectLine", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:53:48 +0000", "from_user": "jerrysievert", "from_user_id": 79071437, "from_user_id_str": "79071437", "from_user_name": "Jerry Sievert", "geo": null, "id": 148023085952536580, "id_str": "148023085952536577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1472035024/Screen_shot_2010-07-08_at_6.16.10_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1472035024/Screen_shot_2010-07-08_at_6.16.10_PM_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @3rdEden: \\o/ @jerrysievert just added `idle` functionality to the EventReactor module: https://t.co/oLABtXTj awesome stuff #nodejs #eventemitter", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:50:21 +0000", "from_user": "peppertw", "from_user_id": 398642585, "from_user_id_str": "398642585", "from_user_name": "peppertweet", "geo": null, "id": 148022216288768000, "id_str": "148022216288768000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1639488504/loghettino_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639488504/loghettino_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@JoL1hAHN thanks! We will release something open sourced as soon as possible! #nodejs", "to_user": "JoL1hAHN", "to_user_id": 14704550, "to_user_id_str": "14704550", "to_user_name": "Daniele Alessandri"}, +{"created_at": "Sat, 17 Dec 2011 12:44:41 +0000", "from_user": "lbdremy", "from_user_id": 37228165, "from_user_id_str": "37228165", "from_user_name": "R\\u00E9my", "geo": null, "id": 148020792062513150, "id_str": "148020792062513155", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1565685740/photo2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1565685740/photo2_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Stream a webcam using nodejs, html5 http://t.co/lOEbvaYh #in #nodejs #html5 #javascript http://t.co/aiiHtqoR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:40:12 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148019663610191870, "id_str": "148019663610191872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Stream a webcam using nodejs, html5 http://t.co/lOEbvaYh #in #nodejs #html5 #javascript http://t.co/aiiHtqoR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:29:35 +0000", "from_user": "dancerj", "from_user_id": 7647622, "from_user_id_str": "7647622", "from_user_name": "dancerj", "geo": null, "id": 148016990949347330, "id_str": "148016990949347329", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1109934873/neko_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1109934873/neko_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "1\\u6708\\u306F\\u30C7\\u30D3\\u30A2\\u30F3\\u3067\\u4F5C\\u308Bnodejs\\u30A2\\u30D6\\u30EA\\u3057\\u305F\\u3044\\u306A\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:13:22 +0000", "from_user": "Leo_lopezg", "from_user_id": 123842058, "from_user_id_str": "123842058", "from_user_name": "leandro lopez", "geo": null, "id": 148012910659112960, "id_str": "148012910659112961", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1232561117/173433_1073825249_4161880_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1232561117/173433_1073825249_4161880_n_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @doomhz: The #nodejs aesthetic http://t.co/e4Xbd17K", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:07:22 +0000", "from_user": "yamanetoshi", "from_user_id": 1081991, "from_user_id_str": "1081991", "from_user_name": "Yamane Toshiaki", "geo": null, "id": 148011398889345020, "id_str": "148011398889345024", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/54576135/glider_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/54576135/glider_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @meso: http://t.co/57mzDYxh \\u306E\\u65E5\\u672C\\u8A9E\\u30C9\\u30AD\\u30E5\\u30E1\\u30F3\\u30C8\\uFF08 http://t.co/RdocAc7f \\uFF09\\u3092\\u6700\\u65B0\\u5B89\\u5B9A\\u7248\\u3067\\u3042\\u308Bv0.6.6\\u306B\\u5BFE\\u5FDC\\u3055\\u305B\\u307E\\u3057\\u305F\\uFF08thanx to @koichik\\uFF09\\u3002 #nodejs_jp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:05:57 +0000", "from_user": "d8Pit", "from_user_id": 264394701, "from_user_id_str": "264394701", "from_user_name": "The URL Popularizer", "geo": null, "id": 148011045938675700, "id_str": "148011045938675712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317284522/logo-header_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317284522/logo-header_normal.png", "source": "<a href="http://d8p.it" rel="nofollow">d8P</a>", "text": "RT @mariandev96: All Eras wallpaper :: 1920 x 1080 :: #nodejs #mongodb #socket.io #mongoose #jquery | http://t.co/wlJ1X9cg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:05:08 +0000", "from_user": "tkc_tsuchiya", "from_user_id": 77670734, "from_user_id_str": "77670734", "from_user_name": "Takashi TSUCHIYA", "geo": null, "id": 148010838211563520, "id_str": "148010838211563520", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687127399/png_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687127399/png_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @meso: http://t.co/57mzDYxh \\u306E\\u65E5\\u672C\\u8A9E\\u30C9\\u30AD\\u30E5\\u30E1\\u30F3\\u30C8\\uFF08 http://t.co/RdocAc7f \\uFF09\\u3092\\u6700\\u65B0\\u5B89\\u5B9A\\u7248\\u3067\\u3042\\u308Bv0.6.6\\u306B\\u5BFE\\u5FDC\\u3055\\u305B\\u307E\\u3057\\u305F\\uFF08thanx to @koichik\\uFF09\\u3002 #nodejs_jp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:58:55 +0000", "from_user": "Shumpei", "from_user_id": 4327501, "from_user_id_str": "4327501", "from_user_name": "Shumpei Shiraishi", "geo": null, "id": 148009273815867400, "id_str": "148009273815867392", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/782734639/___2010-03-29_08.07__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/782734639/___2010-03-29_08.07__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @meso: http://t.co/57mzDYxh \\u306E\\u65E5\\u672C\\u8A9E\\u30C9\\u30AD\\u30E5\\u30E1\\u30F3\\u30C8\\uFF08 http://t.co/RdocAc7f \\uFF09\\u3092\\u6700\\u65B0\\u5B89\\u5B9A\\u7248\\u3067\\u3042\\u308Bv0.6.6\\u306B\\u5BFE\\u5FDC\\u3055\\u305B\\u307E\\u3057\\u305F\\uFF08thanx to @koichik\\uFF09\\u3002 #nodejs_jp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:56:00 +0000", "from_user": "rajeshpillai", "from_user_id": 9589242, "from_user_id_str": "9589242", "from_user_name": "rajeshpillai", "geo": null, "id": 148008540894789630, "id_str": "148008540894789632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/505188893/rajesh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/505188893/rajesh_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Stream a webcam using nodejs, html5 http://t.co/dCuHKh9n #in #nodejs #html5 #javascript", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:55:07 +0000", "from_user": "ajalabox", "from_user_id": 88629170, "from_user_id_str": "88629170", "from_user_name": "\\u3042\\u3058\\u3083\\u308B\\u3041", "geo": null, "id": 148008316562448400, "id_str": "148008316562448384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1686892075/ajalabox-re_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686892075/ajalabox-re_normal.jpg", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "[node.js] / \\u201Cnode.js - Folder structure for a nodejs project - Stack Overflow\\u201D http://t.co/eDsJAnTy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:37:43 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148003941039357950, "id_str": "148003941039357952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The #nodejs aesthetic http://t.co/jOyDQ4mG http://t.co/BfMopJ50", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:36:58 +0000", "from_user": "andychilton", "from_user_id": 10802172, "from_user_id_str": "10802172", "from_user_name": "andychilton", "geo": null, "id": 148003751603609600, "id_str": "148003751603609600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/87300310/andychilton_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/87300310/andychilton_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "New module for #nodejs, some connect middleware ... not big but very useful : https://t.co/mPNPBOMC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:32:16 +0000", "from_user": "mustafaakin", "from_user_id": 54159249, "from_user_id_str": "54159249", "from_user_name": "Mustafa Akin", "geo": null, "id": 148002568210092030, "id_str": "148002568210092033", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/548319203/n786576017_1398374_7727_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/548319203/n786576017_1398374_7727_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NodeJS Windows'a gelmi\\u015F, uzun s\\u00FCredir bekledi\\u011Fim \\u015Fey. Evet ben geli\\u015Ftirme ortam\\u0131 olarak Windows kullan\\u0131yorum :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:26:21 +0000", "from_user": "doomhz", "from_user_id": 16047022, "from_user_id_str": "16047022", "from_user_name": "Dumitru Glavan", "geo": null, "id": 148001076841422850, "id_str": "148001076841422848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1555311616/me_red_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555311616/me_red_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "The #nodejs aesthetic http://t.co/e4Xbd17K", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:25:42 +0000", "from_user": "mariandev96", "from_user_id": 237851147, "from_user_id_str": "237851147", "from_user_name": "Mihailescu Marian", "geo": null, "id": 148000915792736260, "id_str": "148000915792736256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1215645141/35812_134415596586693_100000547600954_264815_1932412_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1215645141/35812_134415596586693_100000547600954_264815_1932412_n_normal.jpg", "source": "<a href="http://twitpic.com" rel="nofollow">Twitpic</a>", "text": "All Eras wallpaper :: 1920 x 1080 :: #nodejs #mongodb #socket.io #mongoose #jquery http://t.co/VlGAbLd4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:25:19 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 148000818640060400, "id_str": "148000818640060417", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "classloader (0.0.3): http://t.co/hvgJyiax classloader helper for nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:09:22 +0000", "from_user": "webdev_vl", "from_user_id": 194783934, "from_user_id_str": "194783934", "from_user_name": "\\u0412\\u043B\\u0430\\u0434\\u0438\\u0432\\u043E\\u0441\\u0442\\u043E\\u043A - \\u043B\\u0443\\u0447\\u0448\\u0438\\u0439", "geo": null, "id": 147996805605498880, "id_str": "147996805605498880", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1507413917/0_6269d_d1c11071_XL_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1507413917/0_6269d_d1c11071_XL_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "\\u041F\\u043E\\u0441\\u043E\\u0432\\u0435\\u0442\\u0443\\u0439\\u0442\\u0435, \\u043F\\u043E\\u0436\\u0430\\u043B\\u0443\\u0439\\u0441\\u0442\\u0430, \\u0445\\u043E\\u0441\\u0442\\u0438\\u043D\\u0433 \\u0441 #nodejs?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:51:50 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 147992393675849730, "id_str": "147992393675849728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @ifreenow NodeJsCommunity: How to develop porn website with NodeJS http://t.co/T5FPk2Xv http://t.co/8z85iO8w", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:51:50 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 147992392249774080, "id_str": "147992392249774081", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @mattwalters5 @ThatJoeG http://t.co/96z0QVj5 Lookadat. #nodejs Runs on Windows and Azure.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:51:50 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 147992391050215420, "id_str": "147992391050215424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @ifreenow NodeJsCommunity: Node.js tools and resources #nodejs http://t.co/BIOhAKmv http://t.co/z3cWtKPU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:46:23 +0000", "from_user": "ifreenow", "from_user_id": 179905855, "from_user_id_str": "179905855", "from_user_name": "Kun Wang", "geo": null, "id": 147991021836435460, "id_str": "147991021836435457", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1107796953/11_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1107796953/11_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: How to develop porn website with NodeJS http://t.co/Ww2d5pBM http://t.co/nlh9Or37", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:31:30 +0000", "from_user": "asip2k25", "from_user_id": 20358870, "from_user_id_str": "20358870", "from_user_name": "Yasumasa Ashida", "geo": null, "id": 147987274729140220, "id_str": "147987274729140224", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1141034832/0030a3ec-88a2-4249-92c9-77a890017c60_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1141034832/0030a3ec-88a2-4249-92c9-77a890017c60_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @koichik: API \\u30C9\\u30AD\\u30E5\\u30E1\\u30F3\\u30C8\\u3078\\u306E\\u76F4\\u30EA\\u30F3\\u3070\\u304B\\u308A\\u4F7F\\u308F\\u308C\\u3066\\u6C17\\u3065\\u304B\\u308C\\u306A\\u3044\\u6C17\\u304C\\u3059\\u308B\\u3051\\u3069\\uFF0C\\u30EA\\u30CB\\u30E5\\u30FC\\u30A2\\u30EB\\u3057\\u305F http://t.co/WHP7CeoF \\u306B\\u5BFE\\u5FDC\\u3057\\u305F\\u3093\\u3060\\u304B\\u3089\\u306D\\uFF01 http://t.co/de3mGo6y #nodejs_jp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:31:02 +0000", "from_user": "asip2k25", "from_user_id": 20358870, "from_user_id_str": "20358870", "from_user_name": "Yasumasa Ashida", "geo": null, "id": 147987156810465280, "id_str": "147987156810465280", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1141034832/0030a3ec-88a2-4249-92c9-77a890017c60_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1141034832/0030a3ec-88a2-4249-92c9-77a890017c60_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @meso: http://t.co/57mzDYxh \\u306E\\u65E5\\u672C\\u8A9E\\u30C9\\u30AD\\u30E5\\u30E1\\u30F3\\u30C8\\uFF08 http://t.co/RdocAc7f \\uFF09\\u3092\\u6700\\u65B0\\u5B89\\u5B9A\\u7248\\u3067\\u3042\\u308Bv0.6.6\\u306B\\u5BFE\\u5FDC\\u3055\\u305B\\u307E\\u3057\\u305F\\uFF08thanx to @koichik\\uFF09\\u3002 #nodejs_jp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:29:06 +0000", "from_user": "koichik", "from_user_id": 14453603, "from_user_id_str": "14453603", "from_user_name": "koichik", "geo": null, "id": 147986670116016130, "id_str": "147986670116016128", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1399991501/hs-2010-26-a-small_web_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1399991501/hs-2010-26-a-small_web_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "API \\u30C9\\u30AD\\u30E5\\u30E1\\u30F3\\u30C8\\u3078\\u306E\\u76F4\\u30EA\\u30F3\\u3070\\u304B\\u308A\\u4F7F\\u308F\\u308C\\u3066\\u6C17\\u3065\\u304B\\u308C\\u306A\\u3044\\u6C17\\u304C\\u3059\\u308B\\u3051\\u3069\\uFF0C\\u30EA\\u30CB\\u30E5\\u30FC\\u30A2\\u30EB\\u3057\\u305F http://t.co/WHP7CeoF \\u306B\\u5BFE\\u5FDC\\u3057\\u305F\\u3093\\u3060\\u304B\\u3089\\u306D\\uFF01 http://t.co/de3mGo6y #nodejs_jp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:26:46 +0000", "from_user": "koichik", "from_user_id": 14453603, "from_user_id_str": "14453603", "from_user_name": "koichik", "geo": null, "id": 147986083915894800, "id_str": "147986083915894784", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1399991501/hs-2010-26-a-small_web_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1399991501/hs-2010-26-a-small_web_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @meso: http://t.co/57mzDYxh \\u306E\\u65E5\\u672C\\u8A9E\\u30C9\\u30AD\\u30E5\\u30E1\\u30F3\\u30C8\\uFF08 http://t.co/RdocAc7f \\uFF09\\u3092\\u6700\\u65B0\\u5B89\\u5B9A\\u7248\\u3067\\u3042\\u308Bv0.6.6\\u306B\\u5BFE\\u5FDC\\u3055\\u305B\\u307E\\u3057\\u305F\\uFF08thanx to @koichik\\uFF09\\u3002 #nodejs_jp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:24:28 +0000", "from_user": "jsgeneve", "from_user_id": 404035068, "from_user_id_str": "404035068", "from_user_name": "Javascript Gen\\u00E8ve", "geo": null, "id": 147985506288926720, "id_str": "147985506288926720", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1620267028/twitter_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620267028/twitter_normal.gif", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Processus de workflow - y compris de la vie r\\u00E9elle - avec #nodejs http://t.co/sNaxL5N3 // Je vais l'essayer celui-ci", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:21:39 +0000", "from_user": "mattwalters5", "from_user_id": 34128038, "from_user_id_str": "34128038", "from_user_name": "Matt Walters", "geo": null, "id": 147984798135226370, "id_str": "147984798135226368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1460915273/c250f0430c58d68fe3d11f1061acef29_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1460915273/c250f0430c58d68fe3d11f1061acef29_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@ThatJoeG http://t.co/TQ43kDYd Lookadat. #nodejs Runs on Windows and Azure.", "to_user": "ThatJoeG", "to_user_id": 36230107, "to_user_id_str": "36230107", "to_user_name": "Joe Gershgorin"}, +{"created_at": "Sat, 17 Dec 2011 10:21:24 +0000", "from_user": "ifreenow", "from_user_id": 179905855, "from_user_id_str": "179905855", "from_user_name": "Kun Wang", "geo": null, "id": 147984733744267260, "id_str": "147984733744267265", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1107796953/11_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1107796953/11_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Node.js tools and resources #nodejs http://t.co/zX6zEqz7 http://t.co/yKJMrXyk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:19:37 +0000", "from_user": "o0h_", "from_user_id": 100716906, "from_user_id_str": "100716906", "from_user_name": "\\u4ECA\\u65E5\\u3082\\u8AB0\\u304B\\u306E\\u306B\\u3061\\u3088\\u3046\\u3073", "geo": null, "id": 147984284739833860, "id_str": "147984284739833857", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1626505011/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626505011/image_normal.jpg", "source": "<a href="http://worris3.sakura.ne.jp/HatenaBookmarkMultiPost/" rel="nofollow">\\u306F\\u3066\\u30D6\\u30C4\\u30A4\\u30FC\\u30C8</a>", "text": "[B!] node.js http://t.co/eLDLOgAy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:19:33 +0000", "from_user": "o0h_", "from_user_id": 100716906, "from_user_id_str": "100716906", "from_user_name": "\\u4ECA\\u65E5\\u3082\\u8AB0\\u304B\\u306E\\u306B\\u3061\\u3088\\u3046\\u3073", "geo": null, "id": 147984268520472580, "id_str": "147984268520472576", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1626505011/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626505011/image_normal.jpg", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "[node.js][JS] / \\u201Cnode.js\\u201D http://t.co/rKwcd24B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:16:04 +0000", "from_user": "meso", "from_user_id": 4943161, "from_user_id_str": "4943161", "from_user_name": "Toshihiro Shimizu", "geo": null, "id": 147983391076270080, "id_str": "147983391076270081", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1547999114/photo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1547999114/photo_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/57mzDYxh \\u306E\\u65E5\\u672C\\u8A9E\\u30C9\\u30AD\\u30E5\\u30E1\\u30F3\\u30C8\\uFF08 http://t.co/RdocAc7f \\uFF09\\u3092\\u6700\\u65B0\\u5B89\\u5B9A\\u7248\\u3067\\u3042\\u308Bv0.6.6\\u306B\\u5BFE\\u5FDC\\u3055\\u305B\\u307E\\u3057\\u305F\\uFF08thanx to @koichik\\uFF09\\u3002 #nodejs_jp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:04:14 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147980413783113730, "id_str": "147980413783113728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Workflow.nodejs - GitHub #javascript http://t.co/IvIr2WCY http://t.co/Nm4dIqkx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:01:28 +0000", "from_user": "jsgeneve", "from_user_id": 404035068, "from_user_id_str": "404035068", "from_user_name": "Javascript Gen\\u00E8ve", "geo": null, "id": 147979715314057200, "id_str": "147979715314057216", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1620267028/twitter_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620267028/twitter_normal.gif", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Feedability remplace les extraits d'articles des flux RSS par leurs versions compl\\u00E8tes http://t.co/Yw1cV63N - Info: http://t.co/NizhdDdt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Sat, 17 Dec 2011 10:01:15 +0000", "from_user": "nkpun", "from_user_id": 45023223, "from_user_id_str": "45023223", "from_user_name": "nilpun", "geo": null, "id": 147979663904473100, "id_str": "147979663904473089", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1644311069/nil-pun_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644311069/nil-pun_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "node blog http://t.co/c5j9hnOt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:57:14 +0000", "from_user": "Evangenieur", "from_user_id": 21945870, "from_user_id_str": "21945870", "from_user_name": "Evan Genieur", "geo": null, "id": 147978653295321100, "id_str": "147978653295321088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/83725129/gunnm2_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/83725129/gunnm2_small_normal.jpg", "source": "<a href="http://www.scoop.it" rel="nofollow">Scoop.it</a>", "text": "Workflow.nodejs - GitHub #javascript http://t.co/eSvZOrIB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:56:12 +0000", "from_user": "dvbportal", "from_user_id": 19032384, "from_user_id_str": "19032384", "from_user_name": "Hans Schroeder", "geo": null, "id": 147978392204083200, "id_str": "147978392204083200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/409729378/real-me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/409729378/real-me_normal.jpg", "source": "<a href="http://posterous.com" rel="nofollow">Posterous</a>", "text": "Thanks for making it available. Open Source, f. y. http://t.co/uqwTQnZU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:53:13 +0000", "from_user": "ccsakuweb", "from_user_id": 15956690, "from_user_id_str": "15956690", "from_user_name": "Patricia Juarez ", "geo": null, "id": 147977641046192130, "id_str": "147977641046192128", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627951502/2336038309_901f1e3c5f_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627951502/2336038309_901f1e3c5f_o_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Reuni\\u00F3n acerca de nodejs y heroku en madrid, tambien se puede acceder en vivo por internet http://t.co/QknsWIJz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:48:16 +0000", "from_user": "azenned", "from_user_id": 196234589, "from_user_id_str": "196234589", "from_user_name": "Zenned Abderrazak", "geo": null, "id": 147976396810108930, "id_str": "147976396810108928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1368319751/49144_1805169896_5760_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1368319751/49144_1805169896_5760_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: Imagine http://t.co/98HBW2Xi in real-time across a whole data center of production #nodejs processes sampling both JS and C functions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:32:57 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147972542437662720, "id_str": "147972542437662720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Feedability : #javascript #Nodejs server that uses Readability to replace excerpts in feeds with the full artic... http://t.co/VkZkXTju", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:25:47 +0000", "from_user": "user24", "from_user_id": 14627664, "from_user_id_str": "14627664", "from_user_name": "Howard Yeend", "geo": null, "id": 147970735548284930, "id_str": "147970735548284928", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1142187736/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1142187736/avatar_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @fadrizul: Ya still using PHP? Old skool brah~ #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:21:30 +0000", "from_user": "Evangenieur", "from_user_id": 21945870, "from_user_id_str": "21945870", "from_user_name": "Evan Genieur", "geo": null, "id": 147969657524076540, "id_str": "147969657524076544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/83725129/gunnm2_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/83725129/gunnm2_small_normal.jpg", "source": "<a href="http://www.scoop.it" rel="nofollow">Scoop.it</a>", "text": "Feedability : #javascript #Nodejs server that uses Readability to replace excerpts in feeds with the full articles. http://t.co/8zw6GOtt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:20:29 +0000", "from_user": "3rdEden", "from_user_id": 14350255, "from_user_id_str": "14350255", "from_user_name": "Arnout Kazemier", "geo": null, "id": 147969401512144900, "id_str": "147969401512144896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "\\o/ @jerrysievert just added `idle` functionality to the EventReactor module: https://t.co/oLABtXTj awesome stuff #nodejs #eventemitter", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:11:35 +0000", "from_user": "fadrizul", "from_user_id": 28751049, "from_user_id_str": "28751049", "from_user_name": "Fadrizul H.", "geo": +{"coordinates": [3.117,101.7072], "type": "Point"}, "id": 147967162601062400, "id_str": "147967162601062400", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1549919280/580028.img.small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1549919280/580028.img.small_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Ya still using PHP? Old skool brah~ #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:08:21 +0000", "from_user": "kaihendry", "from_user_id": 14742294, "from_user_id_str": "14742294", "from_user_name": "Kai Hendry", "geo": null, "id": 147966350986453000, "id_str": "147966350986452994", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700146448/crushed_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700146448/crushed_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Yay, new nodejs package on Archlinux has docs file:///usr/share/doc/nodejs/index.html", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:00:17 +0000", "from_user": "rtweed", "from_user_id": 17843859, "from_user_id_str": "17843859", "from_user_name": "Rob Tweed", "geo": null, "id": 147964319605342200, "id_str": "147964319605342208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1398354510/me_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1398354510/me_normal.png", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "Those who attended my #digitalpond talk on Node.js in healthcare may be interested in this: http://t.co/PW5XMbwI #nodejs #vista", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:46:05 +0000", "from_user": "jsgeneve", "from_user_id": 404035068, "from_user_id_str": "404035068", "from_user_name": "Javascript Gen\\u00E8ve", "geo": null, "id": 147960744942641150, "id_str": "147960744942641152", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1620267028/twitter_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620267028/twitter_normal.gif", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Ecrit en 2009 d\\u00E9j\\u00E0: NodeJS + WebSockets pour lire un stream public de Twitter filtr\\u00E9 par mot cl\\u00E9 http://t.co/XLZ10YCi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:32:03 +0000", "from_user": "jsgeneve", "from_user_id": 404035068, "from_user_id_str": "404035068", "from_user_name": "Javascript Gen\\u00E8ve", "geo": null, "id": 147957215729426430, "id_str": "147957215729426433", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1620267028/twitter_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620267028/twitter_normal.gif", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Il sont vraiment... diff\\u00E9rents les japonnais: Cr\\u00E9er un site \\u00E9rotique avec #NodeJS http://t.co/UNvPPIG2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:23:43 +0000", "from_user": "Evangenieur", "from_user_id": 21945870, "from_user_id_str": "21945870", "from_user_name": "Evan Genieur", "geo": null, "id": 147955115687550980, "id_str": "147955115687550976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/83725129/gunnm2_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/83725129/gunnm2_small_normal.jpg", "source": "<a href="http://www.scoop.it" rel="nofollow">Scoop.it</a>", "text": "#JavaScript UIs with Sammy, Backbone and State Machines | Caffeinehit Ltd, London (Shoreditch) #nodejs http://t.co/ztEmLqPc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:23:34 +0000", "from_user": "katoy", "from_user_id": 4873281, "from_user_id_str": "4873281", "from_user_name": "youichi kato", "geo": null, "id": 147955079012565000, "id_str": "147955079012564992", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/21278082/fish_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/21278082/fish_normal.jpg", "source": "<a href="http://www.shareaholic.com" rel="nofollow">shareaholic app</a>", "text": "\\u56FD\\u969B\\u7D4C\\u6E08\\u65B0\\u805E\\uFF08Open Source Project\\uFF09: node.js express ejs \\u3067UNIX\\u306E\\u30B3\\u30DE\\u30F3\\u30C9\\u5B9F\\u884C\\u30C4\\u30FC\\u30EB\\u3092\\u4F5C\\u3063\\u3066\\u307F\\u305F\\uFF01 - http://t.co/5EiQQVyW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:21:23 +0000", "from_user": "Evangenieur", "from_user_id": 21945870, "from_user_id_str": "21945870", "from_user_name": "Evan Genieur", "geo": null, "id": 147954531160956930, "id_str": "147954531160956929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/83725129/gunnm2_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/83725129/gunnm2_small_normal.jpg", "source": "<a href="http://www.scoop.it" rel="nofollow">Scoop.it</a>", "text": "Sammy.js / A Small Web Framework with Class / RESTFul Evented #JavaScript #nodejs http://t.co/rxRGR6L3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:18:37 +0000", "from_user": "ogomogo", "from_user_id": 9487402, "from_user_id_str": "9487402", "from_user_name": "Oguz Karaesmen", "geo": null, "id": 147953832108892160, "id_str": "147953832108892160", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1415902096/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1415902096/profile_normal.jpg", "source": "<a href="https://wiki.ubuntu.com/Gwibber" rel="nofollow">Ubuntu</a>", "text": "RT @mirat: Tornado'mu Node.js mi? http://t.co/CrwawKpI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:09:44 +0000", "from_user": "DrDhodz", "from_user_id": 287479847, "from_user_id_str": "287479847", "from_user_name": "James Douglas", "geo": null, "id": 147951599808032770, "id_str": "147951599808032768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1531207315/DrDhodz_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1531207315/DrDhodz_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Testing node.js modules with Travis CI: pYou have written a node.js module lately? It has a\\u2026 http://t.co/qHC0QwFR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:01:44 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147949583509626880, "id_str": "147949583509626880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "How to develop porn website with NodeJS http://t.co/Ww2d5pBM http://t.co/nlh9Or37", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:50:51 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 147946845526695940, "id_str": "147946845526695938", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @datakurre EsaMatti: We just released the code of my first project at @opinsys http://t.co/l9idTTik #nodejs #html5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:50:51 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 147946844171939840, "id_str": "147946844171939841", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @liuming How to develop porn website with NodeJS http://t.co/T5FPk2Xv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:50:50 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 147946842963972100, "id_str": "147946842963972097", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @kkasravi Write your shell scripts in JavaScript, via Node.js http://t.co/Mohn0yTG via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:43:00 +0000", "from_user": "datakurre", "from_user_id": 97673403, "from_user_id_str": "97673403", "from_user_name": "Asko Soukka", "geo": null, "id": 147944870487666700, "id_str": "147944870487666688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1424867723/asko_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1424867723/asko_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @EsaMatti: We just released the code of my first project at @opinsys http://t.co/wTaaVIAs #nodejs #html5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:38:11 +0000", "from_user": "liuming", "from_user_id": 10324222, "from_user_id_str": "10324222", "from_user_name": "Raymond", "geo": null, "id": 147943657591410700, "id_str": "147943657591410688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1453692608/54S8miUp_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1453692608/54S8miUp_normal", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "How to develop porn website with NodeJS http://t.co/2XOquaBN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:33:14 +0000", "from_user": "kkasravi", "from_user_id": 9169892, "from_user_id_str": "9169892", "from_user_name": "kkasravi", "geo": null, "id": 147942411203649540, "id_str": "147942411203649536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "Write your shell scripts in JavaScript, via Node.js http://t.co/HCr8Jc65 via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:32:38 +0000", "from_user": "GeekDani", "from_user_id": 65526437, "from_user_id_str": "65526437", "from_user_name": "Dani Kim", "geo": null, "id": 147942263106969600, "id_str": "147942263106969600", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662698421/DSC04650_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662698421/DSC04650_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\\uC624\\uB298\\uC740 WebSocket , NodeJS, memcached, BDB \\uB97C \\uC798 \\uC870\\uD569\\uD574\\uC11C \\uD504\\uB85C\\uD0C0\\uC774\\uD551 \\uD574\\uBD10\\uC57C\\uC9C0. \\uC8FC\\uB9D0\\uC5D0 \\uC880\\uC529 \\uC0DD\\uAC01\\uB0A0 \\uB54C \\u314B\\u314B Beanstalkd \\uB3C4 \\uC5EE\\uC5B4\\uBCFC\\uAE4C\\uB098", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:32:28 +0000", "from_user": "ngelux", "from_user_id": 313979804, "from_user_id_str": "313979804", "from_user_name": "\\uAE40\\uC815\\uC218", "geo": null, "id": 147942219008065540, "id_str": "147942219008065536", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1392532101/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1392532101/image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Nodejs 0.6.6 Released - JavaScript #xespresso http://t.co/6dkN7vy6 @xespressonet \\uC5D0\\uC11C", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:26:13 +0000", "from_user": "javascriptalert", "from_user_id": 274501532, "from_user_id_str": "274501532", "from_user_name": "javascript", "geo": null, "id": 147940645879816200, "id_str": "147940645879816192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1304350707/___normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1304350707/___normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Node.js modules you should know about: socket.io - good coders code, great reuse: http://t.co/cbN0XIeK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:23:49 +0000", "from_user": "NodeHispano", "from_user_id": 414112311, "from_user_id_str": "414112311", "from_user_name": "Node.js Hispano", "geo": null, "id": 147940044857020400, "id_str": "147940044857020416", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1642679301/logo_nodehispano_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642679301/logo_nodehispano_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @chrismatthieu: Nice Spanish blog post covering @nodester - Publicando tu aplicaci\\u00F3n #nodejs http://t.co/e9ZWnEjc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:18:34 +0000", "from_user": "chrismatthieu", "from_user_id": 13604142, "from_user_id_str": "13604142", "from_user_name": "Chris Matthieu", "geo": null, "id": 147938722715926530, "id_str": "147938722715926528", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/918916153/SuperChrisSmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/918916153/SuperChrisSmall_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Nice Spanish blog post covering @nodester - Publicando tu aplicaci\\u00F3n #nodejs http://t.co/e9ZWnEjc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:15:45 +0000", "from_user": "Yvonne_Reed", "from_user_id": 342745553, "from_user_id_str": "342745553", "from_user_name": "Yvonne Reed", "geo": null, "id": 147938012863537150, "id_str": "147938012863537152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1461818915/859856_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1461818915/859856_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Node.js in Windows Azure, To the Cloud and Beyond! - Windows ... http://t.co/KgP8OHqP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:14:32 +0000", "from_user": "hikaruworld", "from_user_id": 4318231, "from_user_id_str": "4318231", "from_user_name": "hikaru world", "geo": null, "id": 147937707442716670, "id_str": "147937707442716672", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/332815632/icon_128_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/332815632/icon_128_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "nodejs\\u3067exports\\u3057\\u3066\\u3044\\u306A\\u3044function\\u306E\\u30C6\\u30B9\\u30C8\\u3092\\u66F8\\u304D\\u305F\\u3044\\u3093\\u3060\\u304C\\u3055\\u3066\\u3069\\u3046\\u3057\\u305F\\u3082\\u306E\\u304B\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:14:26 +0000", "from_user": "tnantoka", "from_user_id": 13549012, "from_user_id_str": "13549012", "from_user_name": "tnantoka (Born Neet)", "geo": null, "id": 147937679802249200, "id_str": "147937679802249216", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1557256276/twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1557256276/twitter_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Sublime Text 2\\u3068IntelliJ IDEA\\u77E5\\u3089\\u306A\\u304B\\u3063\\u305F\\u3001\\u3061\\u3087\\u3063\\u3068\\u8ABF\\u3079\\u3066\\u307F\\u308B [nodejs] what is your favorite JS editor? http://t.co/KKzlRu0g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:02:55 +0000", "from_user": "NodeHispano", "from_user_id": 414112311, "from_user_id_str": "414112311", "from_user_name": "Node.js Hispano", "geo": null, "id": 147934782263787520, "id_str": "147934782263787520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1642679301/logo_nodehispano_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642679301/logo_nodehispano_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT \\u201C@carlosro_ec: Thank's @nodester I love #NodeJS and now I love your services #happygeek\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:01:20 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147934382890561540, "id_str": "147934382890561536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @JeromeParadis: @jamesaduncan one of @joyent's 2 CTOs talking at the Nodejs/mongodb/redis Hackathon. http://t.co/as9hQrX2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 06:58:23 +0000", "from_user": "carlosro_ec", "from_user_id": 19497949, "from_user_id_str": "19497949", "from_user_name": "Carlos G. Rodr\\u00EDguez", "geo": null, "id": 147933642231005200, "id_str": "147933642231005184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1604968592/asd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1604968592/asd_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Thank's @nodester I love #NodeJS and now I love your services #happygeek", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 06:58:04 +0000", "from_user": "raycmorgan", "from_user_id": 102863, "from_user_id_str": "102863", "from_user_name": "Ray Morgan", "geo": null, "id": 147933563289997300, "id_str": "147933563289997312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/120180520/n1234501486_30142294_7954.jpg_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/120180520/n1234501486_30142294_7954.jpg_normal.jpeg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "I can't wait for #nodejs to be considered \"legacy\" so I can be the grumpy old man stuck in his ways.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 06:49:47 +0000", "from_user": "Nodester", "from_user_id": 240751001, "from_user_id_str": "240751001", "from_user_name": "Nodester", "geo": null, "id": 147931478234370050, "id_str": "147931478234370049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Nice! RT @mechanicles: It's very easy to deploy your nodejs app on @Nodester. Enjoyed it. http://auction_system.nodester.com", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 06:36:44 +0000", "from_user": "khaschuluu", "from_user_id": 345055962, "from_user_id_str": "345055962", "from_user_name": "Khaschuluu", "geo": null, "id": 147928192982843400, "id_str": "147928192982843393", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1629973628/IMG_20111109_113603_edit0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629973628/IMG_20111109_113603_edit0_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Node.js's Official Web Site Gets a Redesign http://t.co/nDblbEcc http://t.co/SqGiKOk9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 06:31:47 +0000", "from_user": "khaschuluu", "from_user_id": 345055962, "from_user_id_str": "345055962", "from_user_name": "Khaschuluu", "geo": null, "id": 147926948797087740, "id_str": "147926948797087746", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1629973628/IMG_20111109_113603_edit0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629973628/IMG_20111109_113603_edit0_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: http://t.co/5rZ6knsj runs on nodejs, 2-10x more performance then python: http://t.co/pDgi9sDK http://t.co/NB83QlOE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 06:31:41 +0000", "from_user": "itsatony", "from_user_id": 149881227, "from_user_id_str": "149881227", "from_user_name": "Toni Wagner", "geo": null, "id": 147926924063293440, "id_str": "147926924063293442", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1183369631/fadeeabe8427f1823ab2c89fa8de1af8_1__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1183369631/fadeeabe8427f1823ab2c89fa8de1af8_1__normal.png", "source": "<a href="http://mobileways.de/gravity" rel="nofollow">Gravity!</a>", "text": "RT @uma_kanth: Wowww, #Windows #Azure Platform now supports Node.Js #eSparks #NodeJS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 06:09:29 +0000", "from_user": "mechanicles", "from_user_id": 10389852, "from_user_id_str": "10389852", "from_user_name": "Santosh Wadghule", "geo": null, "id": 147921337409736700, "id_str": "147921337409736704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1684526489/my2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684526489/my2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "It's very easy to deploy your nodejs app on @Nodester. Enjoyed it. http://auction_system.nodester.com", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:53:02 +0000", "from_user": "leon_androide", "from_user_id": 338558803, "from_user_id_str": "338558803", "from_user_name": "leon", "geo": null, "id": 147917197010931700, "id_str": "147917197010931713", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670715658/country-unix_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670715658/country-unix_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u00BFQuieres instalar #nodejs en ubuntu o distros derivas de ubuntu?\\nInstalarlo es f\\u00E1cil \\u00A1\\u00A1\\u00A1 http://t.co/pdYrFz55", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:43:22 +0000", "from_user": "uma_kanth", "from_user_id": 11984102, "from_user_id_str": "11984102", "from_user_name": "UK Gupta", "geo": +{"coordinates": [12.9882,77.733], "type": "Point"}, "id": 147914765082177540, "id_str": "147914765082177538", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690514941/Copy__2__of_RFC_Mask_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690514941/Copy__2__of_RFC_Mask_normal.jpg", "source": "<a href="http://mobileways.de/gravity" rel="nofollow">Gravity!</a>", "text": "Wowww, #Windows #Azure Platform now supports Node.Js #eSparks #NodeJS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:34:33 +0000", "from_user": "earlyster", "from_user_id": 44763137, "from_user_id_str": "44763137", "from_user_name": "Justin Early", "geo": null, "id": 147912543652941820, "id_str": "147912543652941824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/250338301/Picture1_normal.GIF", "profile_image_url_https": "https://si0.twimg.com/profile_images/250338301/Picture1_normal.GIF", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: #nodejs #eclipse plugin with code assist - now we're talking: http://t.co/6F2Zr1z2 http://t.co/arXCC8DT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:26:31 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147910523562901500, "id_str": "147910523562901504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Streaming de Twitter: \\u2192 node.js \\u2192 WebSocket \\u2192 HTML5 Browser y el ejemplito http://t.co/Mvsbr4OC http://t.co/680eUoUr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:06:24 +0000", "from_user": "clozed2u", "from_user_id": 48272192, "from_user_id_str": "48272192", "from_user_name": "Lattapon Yodsuwan", "geo": null, "id": 147905462321426430, "id_str": "147905462321426432", "iso_language_code": "th", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1514728818/207815_145056845561702_100001721625589_261005_1759641_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1514728818/207815_145056845561702_100001721625589_261005_1759641_n_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @llun: nodejs.org \\u0E2B\\u0E19\\u0E49\\u0E32\\u0E15\\u0E32\\u0E40\\u0E1B\\u0E25\\u0E35\\u0E48\\u0E22\\u0E19\\u0E44\\u0E1B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:05:57 +0000", "from_user": "manatsawin", "from_user_id": 12738602, "from_user_id_str": "12738602", "from_user_name": "\\u0E21\\u0E19\\u0E2A\\u0E27", "geo": null, "id": 147905349737910270, "id_str": "147905349737910272", "iso_language_code": "th", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698266811/mesky_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698266811/mesky_normal", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @llun: nodejs.org \\u0E2B\\u0E19\\u0E49\\u0E32\\u0E15\\u0E32\\u0E40\\u0E1B\\u0E25\\u0E35\\u0E48\\u0E22\\u0E19\\u0E44\\u0E1B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:04:54 +0000", "from_user": "llun", "from_user_id": 12981882, "from_user_id_str": "12981882", "from_user_name": "llun:/n\\u00E6t/ not /l\\u028An/", "geo": null, "id": 147905085488369660, "id_str": "147905085488369664", "iso_language_code": "th", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1607061202/222354_10150168776961707_696331706_7129266_1795075_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607061202/222354_10150168776961707_696331706_7129266_1795075_n_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "nodejs.org \\u0E2B\\u0E19\\u0E49\\u0E32\\u0E15\\u0E32\\u0E40\\u0E1B\\u0E25\\u0E35\\u0E48\\u0E22\\u0E19\\u0E44\\u0E1B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:51:10 +0000", "from_user": "JavascriptNews", "from_user_id": 199621524, "from_user_id_str": "199621524", "from_user_name": "Javascript News", "geo": null, "id": 147901625351155700, "id_str": "147901625351155712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1161901944/skynewtAvatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1161901944/skynewtAvatar_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @nodenpm jcrawler (0.2.0): http://t.co/m0SmyDKa Crawler is a web spider written with Nodejs. It gives you t... http://t.co/wxcHQB2n", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:50:07 +0000", "from_user": "CakePHP_HBFeed", "from_user_id": 264768808, "from_user_id_str": "264768808", "from_user_name": "CakePHP\\u95A2\\u9023feed\\u3068\\u306F\\u3066\\u30D6", "geo": null, "id": 147901364238942200, "id_str": "147901364238942208", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "13:29 Video: CakePHP and Node.js | Web Builder Zone http://t.co/PoMqneFF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:49:54 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 147901308031090700, "id_str": "147901308031090688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @C0D34U5 Streaming de Twitter: \\u2192 node.js \\u2192 WebSocket \\u2192 HTML5 Browser y el ejemplito http://t.co/ndH9xLB0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:49:54 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 147901306781171700, "id_str": "147901306781171712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @nodenpm jcrawler (0.2.0): http://t.co/6PUUsXtV Crawler is a web spider written with Nodejs. It gives you the full power of jQuery o...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:49:53 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 147901305233485820, "id_str": "147901305233485824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @nodenpm whiskey (0.6.3): http://t.co/ODQQdf4u A simple test runner for NodeJS applications.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:39:48 +0000", "from_user": "C0D34U5", "from_user_id": 324763817, "from_user_id_str": "324763817", "from_user_name": "Douglas Bola\\u00F1os \\u2620 \\u2623", "geo": null, "id": 147898764991021060, "id_str": "147898764991021056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1567039277/DSC03808_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1567039277/DSC03808_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Streaming de Twitter: \\u2192 node.js \\u2192 WebSocket \\u2192 HTML5 Browser y el ejemplito http://t.co/l3YV1RLz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:35:19 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 147897639445336060, "id_str": "147897639445336064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "jcrawler (0.2.0): http://t.co/GfbYIDni Crawler is a web spider written with Nodejs. It gives you the full power of jQuery o...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:34:30 +0000", "from_user": "donnfelker", "from_user_id": 14393851, "from_user_id_str": "14393851", "from_user_name": "Donn Felker", "geo": null, "id": 147897434817830900, "id_str": "147897434817830912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1514965492/Photo_on_2011-08-26_at_15.28_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1514965492/Photo_on_2011-08-26_at_15.28_2_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Done coding Android two hours ago. Just finished NodeJs/mongodb work. Wish I had a Xbox, I'd relax doing that. :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:32:19 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 147896884634206200, "id_str": "147896884634206208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "whiskey (0.6.3): http://t.co/9fLjRfcl A simple test runner for NodeJS applications.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:31:38 +0000", "from_user": "roofdier", "from_user_id": 25777201, "from_user_id_str": "25777201", "from_user_name": "Henoc Dz", "geo": null, "id": 147896709798834180, "id_str": "147896709798834176", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689331793/SAM_1070twt_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689331793/SAM_1070twt_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@ealexgg No hab\\u00EDa investigado de NodeJS hasta hoy y es un relajo! as\\u00ED que no :P", "to_user": "ealexgg", "to_user_id": 124875302, "to_user_id_str": "124875302", "to_user_name": "Alex Gallardo ", "in_reply_to_status_id": 147896623077396480, "in_reply_to_status_id_str": "147896623077396480"}, +{"created_at": "Sat, 17 Dec 2011 04:29:47 +0000", "from_user": "k33g_org", "from_user_id": 86916604, "from_user_id_str": "86916604", "from_user_name": "Philippe Charri\\u00E8re", "geo": null, "id": 147896247670419460, "id_str": "147896247670419456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1449184169/k33g.org.min_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1449184169/k33g.org.min_normal.png", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "Write your shell scripts in JavaScript, via Node.js http://t.co/DuLlta64", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:27:24 +0000", "from_user": "C0D34U5", "from_user_id": 324763817, "from_user_id_str": "324763817", "from_user_name": "Douglas Bola\\u00F1os \\u2620 \\u2623", "geo": null, "id": 147895648061108220, "id_str": "147895648061108224", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1567039277/DSC03808_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1567039277/DSC03808_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Simple chat for Node.js - http://t.co/CaAsRU1U http://t.co/NJMS4dhY - https://t.co/rzPYFtkT #mejorandojs (CC @cvander)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:24:28 +0000", "from_user": "C0D34U5", "from_user_id": 324763817, "from_user_id_str": "324763817", "from_user_name": "Douglas Bola\\u00F1os \\u2620 \\u2623", "geo": null, "id": 147894909326737400, "id_str": "147894909326737408", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1567039277/DSC03808_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1567039277/DSC03808_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "#NodeJS de verdad que me saca lagrimas de felicidad, demasiado bueno", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:21:25 +0000", "from_user": "C0D34U5", "from_user_id": 324763817, "from_user_id_str": "324763817", "from_user_name": "Douglas Bola\\u00F1os \\u2620 \\u2623", "geo": null, "id": 147894142612144130, "id_str": "147894142612144129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1567039277/DSC03808_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1567039277/DSC03808_normal.JPG", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "RT @dreur: Inaugural: Twitter streaming with node.js and HTML5 WebSockets http://t.co/2XIzEQRR - via delicious", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:19:15 +0000", "from_user": "jbueza", "from_user_id": 141423083, "from_user_id_str": "141423083", "from_user_name": "Jaime Bueza", "geo": null, "id": 147893594089463800, "id_str": "147893594089463809", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "#LiveStream is hiring #NodeJS software engineers! http://t.co/VwPKkysc -- Excellent choice of technology ;) but are they using #Azure? :p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:15:22 +0000", "from_user": "jbueza", "from_user_id": 141423083, "from_user_id_str": "141423083", "from_user_name": "Jaime Bueza", "geo": null, "id": 147892617974255600, "id_str": "147892617974255616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Totally hacking together a solution for running #NodeJS + #VisualStudio + #JasmineBDD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:13:31 +0000", "from_user": "Kurassier", "from_user_id": 121827295, "from_user_id_str": "121827295", "from_user_name": "Andr\\u00E9s Arias Rauld", "geo": null, "id": 147892152276492300, "id_str": "147892152276492288", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1650732275/LyY0CykA_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650732275/LyY0CykA_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Ma\\u00F1ana edtudiar mas sobre NodeJS y Socket.IO y quiz\\u00E1s formatear la Lap", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:10:18 +0000", "from_user": "dantull", "from_user_id": 15697303, "from_user_id_str": "15697303", "from_user_name": "Dan Tull", "geo": null, "id": 147891343803416580, "id_str": "147891343803416578", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/57616554/TwitMe_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/57616554/TwitMe_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: Imagine http://t.co/98HBW2Xi in real-time across a whole data center of production #nodejs processes sampling both JS and C functions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:03:22 +0000", "from_user": "heri", "from_user_id": 1578491, "from_user_id_str": "1578491", "from_user_name": "heri", "geo": null, "id": 147889599887319040, "id_str": "147889599887319040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1212243024/Screen_shot_2011-01-10_at_5.35.57_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1212243024/Screen_shot_2011-01-10_at_5.35.57_PM_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": ". @cjoudrey did an awesome talk today at the nodejs hacakthon!", "to_user": "cjoudrey", "to_user_id": 27691615, "to_user_id_str": "27691615", "to_user_name": "Christian Joudrey", "in_reply_to_status_id": 147872811728384000, "in_reply_to_status_id_str": "147872811728384000"}, +{"created_at": "Sat, 17 Dec 2011 04:02:16 +0000", "from_user": "mtw", "from_user_id": 4609741, "from_user_id_str": "4609741", "from_user_name": "Montreal Tech Watch", "geo": null, "id": 147889321729458180, "id_str": "147889321729458176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1311424156/Screen_shot_2011-04-14_at_11.25.36_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1311424156/Screen_shot_2011-04-14_at_11.25.36_AM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @cjoudrey: Slides for my talk at Node.js/Redis/MongoDB hackathon: http://t.co/yBYMVdSB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:01:42 +0000", "from_user": "heri", "from_user_id": 1578491, "from_user_id_str": "1578491", "from_user_name": "heri", "geo": null, "id": 147889178795966460, "id_str": "147889178795966464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1212243024/Screen_shot_2011-01-10_at_5.35.57_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1212243024/Screen_shot_2011-01-10_at_5.35.57_PM_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@pHzBox @backbonerecipes you should come to the nodejs tomorrow @notmanhouse", "to_user": "pHzBox", "to_user_id": 294337539, "to_user_id_str": "294337539", "to_user_name": "Dominic Savoie", "in_reply_to_status_id": 147886164282572800, "in_reply_to_status_id_str": "147886164282572800"}, +{"created_at": "Sat, 17 Dec 2011 03:59:49 +0000", "from_user": "BrandonSheley", "from_user_id": 21883798, "from_user_id_str": "21883798", "from_user_name": "Brandon Sheley", "geo": null, "id": 147888706576072700, "id_str": "147888706576072704", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1417943890/196800_10150201667016251_669411250_8744421_6205815_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1417943890/196800_10150201667016251_669411250_8744421_6205815_n_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "getting sidetracked from working on #AdminTalk w/node.js http://t.co/TUeuIDiL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:54:55 +0000", "from_user": "jbueza", "from_user_id": 141423083, "from_user_id_str": "141423083", "from_user_name": "Jaime Bueza", "geo": null, "id": 147887471059927040, "id_str": "147887471059927042", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Anyone know how to run #NodeJS console output in #VisualStudio's Output window? Trying to run a set of headless tests through visual studio", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:53:37 +0000", "from_user": "shin1x1", "from_user_id": 3871051, "from_user_id_str": "3871051", "from_user_name": "Masashi Shinbara", "geo": null, "id": 147887145233813500, "id_str": "147887145233813504", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1118038428/be5c756e-ae2f-49b6-8c7b-bd8508b6dc93_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1118038428/be5c756e-ae2f-49b6-8c7b-bd8508b6dc93_normal.png", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "\\u201CVideo: CakePHP and Node.js | Web Builder Zone\\u201D http://t.co/bjdob8Mm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:52:00 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147886736926703600, "id_str": "147886736926703616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Inaugural: Twitter streaming with node.js and HTML5 WebSockets http://t.co/tpleBpq3 - via delicious http://t.co/y7kCLw9X", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:43:46 +0000", "from_user": "dreur", "from_user_id": 16423090, "from_user_id_str": "16423090", "from_user_name": "Benjamin Boudreau", "geo": null, "id": 147884663623516160, "id_str": "147884663623516160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1525110396/22549888054_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1525110396/22549888054_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "Inaugural: Twitter streaming with node.js and HTML5 WebSockets http://t.co/2XIzEQRR - via delicious", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:38:31 +0000", "from_user": "ryantourge", "from_user_id": 15888013, "from_user_id_str": "15888013", "from_user_name": "\\u2603 Ryan Tourge \\uF8FF", "geo": null, "id": 147883342853971970, "id_str": "147883342853971968", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1397771505/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1397771505/me_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@CageKicker376 @koush @nodejs @Punisher6G bwahahahha", "to_user": "CageKicker376", "to_user_id": 177799176, "to_user_id_str": "177799176", "to_user_name": "UNDISCLOSED", "in_reply_to_status_id": 147883240940769280, "in_reply_to_status_id_str": "147883240940769280"}, +{"created_at": "Sat, 17 Dec 2011 03:36:55 +0000", "from_user": "ryantourge", "from_user_id": 15888013, "from_user_id_str": "15888013", "from_user_name": "\\u2603 Ryan Tourge \\uF8FF", "geo": null, "id": 147882941882712060, "id_str": "147882941882712064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1397771505/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1397771505/me_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@CageKicker376 @koush @nodejs @Punisher6G What? You still have the source on moondoucher or some other secret website somewhere remember?", "to_user": "CageKicker376", "to_user_id": 177799176, "to_user_id_str": "177799176", "to_user_name": "UNDISCLOSED", "in_reply_to_status_id": 147882692510363650, "in_reply_to_status_id_str": "147882692510363648"}, +{"created_at": "Sat, 17 Dec 2011 03:34:58 +0000", "from_user": "ryantourge", "from_user_id": 15888013, "from_user_id_str": "15888013", "from_user_name": "\\u2603 Ryan Tourge \\uF8FF", "geo": null, "id": 147882451526615040, "id_str": "147882451526615041", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1397771505/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1397771505/me_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\"@koush: Using @nodejs to build a cross platform end user PC app.\" Shit @CageKicker376 did that ten years ago. Ask him... @Punisher6G", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:30:59 +0000", "from_user": "koush", "from_user_id": 18918415, "from_user_id_str": "18918415", "from_user_name": "koush", "geo": null, "id": 147881447536070660, "id_str": "147881447536070656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1577420755/img-18_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1577420755/img-18_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Using @nodejs to build a cross platform end user PC app.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:26:32 +0000", "from_user": "dylan_nissley", "from_user_id": 14284725, "from_user_id_str": "14284725", "from_user_name": "Dylan Nissley", "geo": null, "id": 147880329380769800, "id_str": "147880329380769793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1672514745/dylan-avatar2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672514745/dylan-avatar2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Finally got a functional build of what I'm going to call node-mysql-migrate. #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:14:42 +0000", "from_user": "agrohe21", "from_user_id": 377441070, "from_user_id_str": "377441070", "from_user_name": "Andy grohe", "geo": null, "id": 147877348719599600, "id_str": "147877348719599616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1571089596/Andrew-Grohe_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1571089596/Andrew-Grohe_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Created my first native #nodejs extension today. C++ is just like Javascript with pointers.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:56:40 +0000", "from_user": "cjoudrey", "from_user_id": 27691615, "from_user_id_str": "27691615", "from_user_name": "Christian Joudrey", "geo": null, "id": 147872811728384000, "id_str": "147872811728384000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1257970012/gravatar_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1257970012/gravatar_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "Slides for my talk at Node.js/Redis/MongoDB hackathon: http://t.co/yBYMVdSB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:53:08 +0000", "from_user": "mareksuscak", "from_user_id": 66651296, "from_user_id_str": "66651296", "from_user_name": "Marek \\u0160u\\u0161\\u010D\\u00E1k", "geo": null, "id": 147871923911663600, "id_str": "147871923911663617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1417805804/f2250bd932d8a3d4987f9135bd04a5dd_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1417805804/f2250bd932d8a3d4987f9135bd04a5dd_normal.jpeg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: Imagine http://t.co/98HBW2Xi in real-time across a whole data center of production #nodejs processes sampling both JS and C functions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:49:19 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 147870961327288320, "id_str": "147870961327288320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Azure price cuts, bigger databases, now with node.js and MongoDB support ... http://t.co/7p7mo7xq #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:45:02 +0000", "from_user": "dbmoore", "from_user_id": 5025521, "from_user_id_str": "5025521", "from_user_name": "Dennis Moore", "geo": null, "id": 147869886369116160, "id_str": "147869886369116160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/55245814/Dennis_Moore_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/55245814/Dennis_Moore_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#EnSW #Microsoft Azure price cuts, bigger databases, now with #OpenSource node.js and MongoDB support, #Hadoop on... http://t.co/B6AkM8jD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:37:39 +0000", "from_user": "marceloglezer", "from_user_id": 289382165, "from_user_id_str": "289382165", "from_user_name": "Marcelo Glezer", "geo": null, "id": 147868024882466800, "id_str": "147868024882466817", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1330326638/msngato_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1330326638/msngato_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "Node\\u00A0v0.6.6 http://t.co/eGMqw3as via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:31:44 +0000", "from_user": "iaflash", "from_user_id": 118644890, "from_user_id_str": "118644890", "from_user_name": "I, Architect.", "geo": null, "id": 147866538190438400, "id_str": "147866538190438400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/725284435/i1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/725284435/i1_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#iaflash Nice Blog post, see here ---> A Full Javascript Architecture, Part One - NodeJS - Zenika - http:... http://t.co/FZGcrCAU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:29:09 +0000", "from_user": "damian168", "from_user_id": 65390141, "from_user_id_str": "65390141", "from_user_name": "Damian", "geo": null, "id": 147865888446615550, "id_str": "147865888446615552", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698333215/1324133435522_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698333215/1324133435522_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Ganas de jugar con nodeJs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:18:37 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147863238854447100, "id_str": "147863238854447105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Nice Blog post, see here ---> A Full Javascript Architecture, Part One - NodeJS - Zenika - http://t.co/S61xuYD7 http://t.co/wV3zpgkJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:08:38 +0000", "from_user": "pluc", "from_user_id": 14517408, "from_user_id_str": "14517408", "from_user_name": "Pier-Luc Petitclerc", "geo": null, "id": 147860724826382340, "id_str": "147860724826382336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1330464753/avatar-trans-sm_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1330464753/avatar-trans-sm_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Great informal presentations tonight at @notmanhouse on NodeJS/Express.js/Rocket.js/MongoDB. Looking forward to the slides! cc @MTLTalent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:59:56 +0000", "from_user": "chrismatthieu", "from_user_id": 13604142, "from_user_id_str": "13604142", "from_user_name": "Chris Matthieu", "geo": null, "id": 147858537048059900, "id_str": "147858537048059906", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/918916153/SuperChrisSmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/918916153/SuperChrisSmall_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @NodeHispano: Nodester el hosting Open Source para Node.js la forma m\\u00E1s facil de publicar tus apps. #nodejs @Nodester nodester.com", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:59:01 +0000", "from_user": "NodeHispano", "from_user_id": 414112311, "from_user_id_str": "414112311", "from_user_name": "Node.js Hispano", "geo": null, "id": 147858303106564100, "id_str": "147858303106564096", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1642679301/logo_nodehispano_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642679301/logo_nodehispano_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Nodester el hosting Open Source para Node.js la forma m\\u00E1s facil de publicar tus apps. #nodejs @Nodester nodester.com", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:57:28 +0000", "from_user": "fyhao", "from_user_id": 19705371, "from_user_id_str": "19705371", "from_user_name": "Khor Yong Hao", "geo": null, "id": 147857916215558140, "id_str": "147857916215558144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1634947032/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634947032/image_normal.jpg", "source": "<a href="http://www.shareaholic.com" rel="nofollow">shareaholic app</a>", "text": "Nice Blog post, see here ---> A Full Javascript Architecture, Part One - NodeJS - Zenika - http://t.co/1VPdWNPM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:52:35 +0000", "from_user": "_ryancole", "from_user_id": 41050814, "from_user_id_str": "41050814", "from_user_name": "Ryan Cole", "geo": null, "id": 147856687339020300, "id_str": "147856687339020288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1196781010/n16720443_33906405_2900_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1196781010/n16720443_33906405_2900_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Every time I attempt to switch to nodejs I immediately appreciate all the quality python tools that I'm trying to leave behind. Python wins.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:52:25 +0000", "from_user": "sadasant", "from_user_id": 101949871, "from_user_id_str": "101949871", "from_user_name": "Daniel R.", "geo": null, "id": 147856642308968450, "id_str": "147856642308968448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1619598037/sadasant_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619598037/sadasant_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "mini localhost #nodejs server + #showoff.io goodness in less than 1 minute! http://t.co/pAkW4kXq via @csanz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:49:14 +0000", "from_user": "acarlos1000", "from_user_id": 8536242, "from_user_id_str": "8536242", "from_user_name": "Antonio C. Silveira", "geo": null, "id": 147855843990323200, "id_str": "147855843990323200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1346082012/antonio-2011yahoo-2723_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1346082012/antonio-2011yahoo-2723_small_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "Happy with the Demo the Contacts Team Presented this Friday. Super cool #nodejs #cocktails #yahoo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:48:19 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 147855611500036100, "id_str": "147855611500036096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @iceddev nodejs: Node v0.6.6 released http://t.co/6Iw2zUP8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:48:19 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 147855610430488580, "id_str": "147855610430488576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @iceddev Looking good!! Love the twitter bootstrap! @Nodester: New websites! First http://t.co/jT8sjMnY and now nod", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:34:39 +0000", "from_user": "iceddev", "from_user_id": 430242338, "from_user_id_str": "430242338", "from_user_name": "Iced Dev", "geo": null, "id": 147852173055770620, "id_str": "147852173055770624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1677940904/iceddev_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677940904/iceddev_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Node v0.6.6 released http://t.co/LGH5FqF6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Sat, 17 Dec 2011 01:34:39 +0000", "from_user": "iceddev", "from_user_id": 430242338, "from_user_id_str": "430242338", "from_user_name": "Iced Dev", "geo": null, "id": 147852173055770620, "id_str": "147852173055770624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1677940904/iceddev_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677940904/iceddev_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Node v0.6.6 released http://t.co/LGH5FqF6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:34:02 +0000", "from_user": "iceddev", "from_user_id": 430242338, "from_user_id_str": "430242338", "from_user_name": "Iced Dev", "geo": null, "id": 147852017736486900, "id_str": "147852017736486912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1677940904/iceddev_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677940904/iceddev_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Looking good!! Love the twitter bootstrap! @Nodester: New websites! First nodejs.org and now nodester.com", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:31:59 +0000", "from_user": "djidja8", "from_user_id": 60340043, "from_user_id_str": "60340043", "from_user_name": "Srdjan Strbanovic", "geo": null, "id": 147851500452970500, "id_str": "147851500452970498", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/727605334/Srdjan-sail_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/727605334/Srdjan-sail_normal.png", "source": "<a href="http://www.scoop.it" rel="nofollow">Scoop.it</a>", "text": "Aaronontheweb | Intro to Node.JS for .NET Developers http://t.co/6q23LYzZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:25:32 +0000", "from_user": "xfigue", "from_user_id": 70091627, "from_user_id_str": "70091627", "from_user_name": "Fabi\\u00E1n Figueredo", "geo": null, "id": 147849878310092800, "id_str": "147849878310092800", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1412484810/bac3ea98-3b22-48ef-9203-1543babc5a3d_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1412484810/bac3ea98-3b22-48ef-9203-1543babc5a3d_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Jugando con Nodejs. Hice un server Faye y un cliente que consume un canal. Me emocion\\u00E9 #newbie", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:21:53 +0000", "from_user": "DeirdreS", "from_user_id": 625093, "from_user_id_str": "625093", "from_user_name": "Deirdr\\u00E9 Straughan", "geo": null, "id": 147848957786193920, "id_str": "147848957786193920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1273049375/dpink_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273049375/dpink_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "RT @cgiffard: Wow, these DTrace-generated flame graphs are awesome! Can't wait for nodejs support to arrive. http://t.co/OFjeEgaD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:15:21 +0000", "from_user": "smerchek", "from_user_id": 49359644, "from_user_id_str": "49359644", "from_user_name": "Scott Smerchek", "geo": null, "id": 147847315544211460, "id_str": "147847315544211456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/323165504/profile_pic1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/323165504/profile_pic1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "As if nodejs development wasn't easy enough, @Cloud9IDE makes it even easier by letting me bypass the installation/deployment step!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:10:54 +0000", "from_user": "ericNtally", "from_user_id": 16072466, "from_user_id_str": "16072466", "from_user_name": "Eric", "geo": null, "id": 147846194369007600, "id_str": "147846194369007616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1425273963/IMG_20110518_200714-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1425273963/IMG_20110518_200714-1_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "back to ruby *waves goodbye to nodejs* till we meet again", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:09:35 +0000", "from_user": "tommie_open", "from_user_id": 95061299, "from_user_id_str": "95061299", "from_user_name": "tommie", "geo": null, "id": 147845862058491900, "id_str": "147845862058491904", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/878135992/tumblr_kptjmv1QVf1qznd83o1_1280_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/878135992/tumblr_kptjmv1QVf1qznd83o1_1280_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@KOBA789 node-lazy\\u3068\\u3044\\u3046\\u30E2\\u30B8\\u30E5\\u30FC\\u30EB\\u3060\\u3068 functional programming methods\\u304C\\u5B9F\\u73FE\\u3067\\u304D\\u308B\\u3088\\u3046\\u3067\\u3059\\u3002http://t.co/nFlZWq2X", "to_user": "KOBA789", "to_user_id": 56680439, "to_user_id_str": "56680439", "to_user_name": "\\u3053\\u3070@\\u975E\\u30EA\\u30A2\\u5145\\u306E\\u9999\\u308A", "in_reply_to_status_id": 146954895893864450, "in_reply_to_status_id_str": "146954895893864448"}, +{"created_at": "Sat, 17 Dec 2011 00:58:06 +0000", "from_user": "outa7iME", "from_user_id": 64403059, "from_user_id_str": "64403059", "from_user_name": "outaTiME", "geo": null, "id": 147842975458803700, "id_str": "147842975458803712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1577438873/my.own.new_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1577438873/my.own.new_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: mongoose-paginate (0.0.3): http://t.co/0JfPxjaI Mongoose ORM (NodeJS) Document Query Pagination http://t.co/GOwwAYhT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:54:22 +0000", "from_user": "derdesign", "from_user_id": 69168314, "from_user_id_str": "69168314", "from_user_name": "Ernesto M\\u00E9ndez", "geo": null, "id": 147842035934703600, "id_str": "147842035934703617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1346443112/avatar_v5.0_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1346443112/avatar_v5.0_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Designing the website for an Open Source Web Framework for NodeJS I'm about to release at Github. Stay tuned :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:48:40 +0000", "from_user": "cheryltom", "from_user_id": 18117275, "from_user_id_str": "18117275", "from_user_name": "cheryltom", "geo": null, "id": 147840599247167500, "id_str": "147840599247167488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1554040071/cheryl-tom_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554040071/cheryl-tom_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@MichaelMontero you'd be proud - geeking out on nodejs, redis, mongodb on my Friday night. #notmanhouse", "to_user": "MichaelMontero", "to_user_id": 34589728, "to_user_id_str": "34589728", "to_user_name": "Michael Montero"}, +{"created_at": "Sat, 17 Dec 2011 00:48:33 +0000", "from_user": "DerekJen", "from_user_id": 16379772, "from_user_id_str": "16379772", "from_user_name": "Derek Jen", "geo": null, "id": 147840569039790080, "id_str": "147840569039790080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1605935966/pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1605935966/pic_normal.jpg", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "nodejs longish redis hackathon (@ Notman House w/ 4 others) http://t.co/YqCBnaCB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:48:05 +0000", "from_user": "camerondgray", "from_user_id": 196793773, "from_user_id_str": "196793773", "from_user_name": "Cameron Gray", "geo": null, "id": 147840453318934530, "id_str": "147840453318934528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1134153656/03-14-06_1942_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1134153656/03-14-06_1942_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Sequelize is a very cool library and wins the prize for most hideous doc page background ever http://t.co/GccOzPco #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:43:55 +0000", "from_user": "cheryltom", "from_user_id": 18117275, "from_user_id_str": "18117275", "from_user_name": "cheryltom", "geo": null, "id": 147839404562591740, "id_str": "147839404562591746", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1554040071/cheryl-tom_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554040071/cheryl-tom_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @mtw: Nodejs hackathon is packed, i've never seen so many people at Notman house #hackmtl @MTLTalent http://t.co/JPzPDQLK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:25:56 +0000", "from_user": "dapsays", "from_user_id": 247636179, "from_user_id_str": "247636179", "from_user_name": "Dave Pacheco", "geo": null, "id": 147834877784498180, "id_str": "147834877784498176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1235295953/DSC_4227_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1235295953/DSC_4227_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: Imagine http://t.co/98HBW2Xi in real-time across a whole data center of production #nodejs processes sampling both JS and C functions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:23:23 +0000", "from_user": "ajamaica", "from_user_id": 776449, "from_user_id_str": "776449", "from_user_name": "Arturo Jamaica", "geo": null, "id": 147834237054238720, "id_str": "147834237054238721", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1478040314/8822-huge_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1478040314/8822-huge_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "Semi enchufado Nodejs con Django.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:17:29 +0000", "from_user": "dlsspy", "from_user_id": 14117412, "from_user_id_str": "14117412", "from_user_name": "Dustin Sallings", "geo": null, "id": 147832754220961800, "id_str": "147832754220961792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/57455325/IMG_0596_2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/57455325/IMG_0596_2_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: Imagine http://t.co/98HBW2Xi in real-time across a whole data center of production #nodejs processes sampling both JS and C functions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:16:22 +0000", "from_user": "brendangregg", "from_user_id": 208212889, "from_user_id_str": "208212889", "from_user_name": "Brendan Gregg", "geo": null, "id": 147832473697521660, "id_str": "147832473697521665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1441835128/bicon3t_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1441835128/bicon3t_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: Imagine http://t.co/98HBW2Xi in real-time across a whole data center of production #nodejs processes sampling both JS and C functions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:13:51 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147831837098643460, "id_str": "147831837098643456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "time (0.7.0): http://t.co/awPoRVBt \"time.h\" bindings for NodeJS http://t.co/qn5DPI4Q", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:05:58 +0000", "from_user": "danswer", "from_user_id": 9355102, "from_user_id_str": "9355102", "from_user_name": "Daniel", "geo": null, "id": 147829855424233470, "id_str": "147829855424233472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/72027514/n2732564_38538017_9163_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/72027514/n2732564_38538017_9163_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "May have just officially become a member of the #nodejs bandwagon.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:00:20 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 147828435702644740, "id_str": "147828435702644736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "time (0.7.0): http://t.co/StN69LWB \"time.h\" bindings for NodeJS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:59:43 +0000", "from_user": "trufae", "from_user_id": 15364094, "from_user_id_str": "15364094", "from_user_name": "pancake", "geo": null, "id": 147828280400162800, "id_str": "147828280400162817", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1291415517/abdadcat_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1291415517/abdadcat_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: Imagine http://t.co/98HBW2Xi in real-time across a whole data center of production #nodejs processes sampling both JS and C functions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:59:41 +0000", "from_user": "mcavage", "from_user_id": 17684601, "from_user_id_str": "17684601", "from_user_name": "Mark Cavage", "geo": null, "id": 147828272489701380, "id_str": "147828272489701376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534923852/gravatar_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534923852/gravatar_normal.jpeg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @trentmick: npm install ldapauth\\n# A #nodejs module to simplify auth'ing against an LDAP server, with requisite express example.\\nhttps://t.co/4kbO0TWj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:56:34 +0000", "from_user": "dreur", "from_user_id": 16423090, "from_user_id_str": "16423090", "from_user_name": "Benjamin Boudreau", "geo": null, "id": 147827488972746750, "id_str": "147827488972746752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1525110396/22549888054_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1525110396/22549888054_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @mtw: Nodejs hackathon is packed, i've never seen so many people at Notman house #hackmtl @MTLTalent http://t.co/JPzPDQLK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:55:26 +0000", "from_user": "grandecomplex", "from_user_id": 60835091, "from_user_id_str": "60835091", "from_user_name": "Alex Grande", "geo": null, "id": 147827205089656830, "id_str": "147827205089656832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/472148162/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/472148162/me_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@dandean: fspkg: a @nodejs module for packaging up parts of your file system. Nice work!!", "to_user": "dandean", "to_user_id": 9525212, "to_user_id_str": "9525212", "to_user_name": "Dan Dean"}, +{"created_at": "Fri, 16 Dec 2011 23:54:45 +0000", "from_user": "grandecomplex", "from_user_id": 60835091, "from_user_id_str": "60835091", "from_user_name": "Alex Grande", "geo": null, "id": 147827031638409200, "id_str": "147827031638409216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/472148162/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/472148162/me_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @dandean: fspkg: a @nodejs module for packaging up parts of your file system as a CommonJS module or JSON encoded string: https://t.co/0jovgws8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:53:19 +0000", "from_user": "rubyalert", "from_user_id": 279514715, "from_user_id_str": "279514715", "from_user_name": "rubyalert", "geo": null, "id": 147826671905538050, "id_str": "147826671905538049", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1305480594/ruby_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1305480594/ruby_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Sinatra\\u98A8\\u306E\\u66F8\\u304D\\u65B9\\u304C\\u3067\\u304D\\u308B\\u30B5\\u30FC\\u30D0\\u30FC\\u30B5\\u30A4\\u30C9JavaScript\\u300CExpressJs\\u300D | Web\\u6D3B\\u30E1\\u30E2\\u5E33: http://t.co/Iz7JnkZg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:52:57 +0000", "from_user": "trentmick", "from_user_id": 17164796, "from_user_id_str": "17164796", "from_user_name": "trentmick", "geo": null, "id": 147826580306133000, "id_str": "147826580306132992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1370125944/a405807316fa673ca53ee4d0d8a2231c_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1370125944/a405807316fa673ca53ee4d0d8a2231c_normal.jpeg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "npm install ldapauth\\n# A #nodejs module to simplify auth'ing against an LDAP server, with requisite express example.\\nhttps://t.co/4kbO0TWj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:50:53 +0000", "from_user": "Nodester", "from_user_id": 240751001, "from_user_id_str": "240751001", "from_user_name": "Nodester", "geo": null, "id": 147826060547985400, "id_str": "147826060547985408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "w00t! RT @freakyfractal: Awesome! Got free #nodejs hosting with @Nodester ... 'Up and Running' and excited to get hacking away at it.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:42:36 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 147823973319720960, "id_str": "147823973319720960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @JeromeParadis: Huge crowd at the Nodejs/mongodb/redis Hackathon http://t.co/AQ4RhL0j", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:42:34 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147823966659153920, "id_str": "147823966659153923", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Huge crowd at the Nodejs/mongodb/redis Hackathon http://t.co/rC0EOZVR http://t.co/Wvo44qe1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:42:04 +0000", "from_user": "jonzobrist", "from_user_id": 169299463, "from_user_id_str": "169299463", "from_user_name": "Jon Zobrist", "geo": null, "id": 147823839584325630, "id_str": "147823839584325632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1279516177/jon_n_les_2009_canada_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1279516177/jon_n_les_2009_canada_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Growing Up http://t.co/PD4JktSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:36:34 +0000", "from_user": "freakyfractal", "from_user_id": 120607945, "from_user_id_str": "120607945", "from_user_name": "freakyfractal", "geo": null, "id": 147822456185438200, "id_str": "147822456185438209", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1258082617/AIbEiAIAAABDCNWFm6WlpNPCXiILdmNhcmRfcGhvdG8qKDU5ZWQ4YjVhMDQ1OTVkZDZiMTA0MmQzMThhYWEwNjA1ZTliZDEwNmIwAVVer_kaEZb3D7oC3UHv6a_VSntv_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1258082617/AIbEiAIAAABDCNWFm6WlpNPCXiILdmNhcmRfcGhvdG8qKDU5ZWQ4YjVhMDQ1OTVkZDZiMTA0MmQzMThhYWEwNjA1ZTliZDEwNmIwAVVer_kaEZb3D7oC3UHv6a_VSntv_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "Awesome! Got free #nodejs hosting with @Nodester ... 'Up and Running' and excited to get hacking away at it.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:36:13 +0000", "from_user": "dhaivatpoincare", "from_user_id": 233257440, "from_user_id_str": "233257440", "from_user_name": "Dhaivat Pandya", "geo": null, "id": 147822367127777280, "id_str": "147822367127777280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657560442/2011-11-25_13-57-39.638_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657560442/2011-11-25_13-57-39.638_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Got my #nodejs package up! Check it out: http://t.co/bU2w1PcR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:27:52 +0000", "from_user": "jonhusband", "from_user_id": 13298, "from_user_id_str": "13298", "from_user_name": "Jon Husband", "geo": null, "id": 147820264850329600, "id_str": "147820264850329600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688131518/JH_summer_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688131518/JH_summer_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "VeryRT @JeromeParadis .. Huge crowd at Nodejs/mongodb/redis Hackathon http://t.co/Ku3q8i6N < Notman House, one home of the Web in Montreal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:26:49 +0000", "from_user": "mtw", "from_user_id": 4609741, "from_user_id_str": "4609741", "from_user_name": "Montreal Tech Watch", "geo": +{"coordinates": [45.5121,-73.5697], "type": "Point"}, "id": 147819997891268600, "id_str": "147819997891268608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1311424156/Screen_shot_2011-04-14_at_11.25.36_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1311424156/Screen_shot_2011-04-14_at_11.25.36_AM_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Nodejs hackathon is packed, i've never seen so many people at Notman house #hackmtl @MTLTalent http://t.co/JPzPDQLK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:25:45 +0000", "from_user": "cgiffard", "from_user_id": 14967638, "from_user_id_str": "14967638", "from_user_name": "Christopher Giffard", "geo": null, "id": 147819732735766530, "id_str": "147819732735766528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/405696519/3822572807_1b6414bda6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/405696519/3822572807_1b6414bda6_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "Wow, these DTrace-generated flame graphs are awesome! Can't wait for nodejs support to arrive. http://t.co/OFjeEgaD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:25:44 +0000", "from_user": "JeromeParadis", "from_user_id": 7025052, "from_user_id_str": "7025052", "from_user_name": "Jerome Paradis", "geo": null, "id": 147819724519112700, "id_str": "147819724519112705", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/565533545/0375_c_50pct_Square_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/565533545/0375_c_50pct_Square_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@jamesaduncan one of @joyent's 2 CTOs talking at the Nodejs/mongodb/redis Hackathon. http://t.co/as9hQrX2", "to_user": "jamesaduncan", "to_user_id": 1720581, "to_user_id_str": "1720581", "to_user_name": "James Duncan"}, +{"created_at": "Fri, 16 Dec 2011 23:25:22 +0000", "from_user": "elrowan", "from_user_id": 28970692, "from_user_id_str": "28970692", "from_user_name": "rowan", "geo": null, "id": 147819636702973950, "id_str": "147819636702973952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/517062241/10852_203728895538_661225538_4447749_5678742_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/517062241/10852_203728895538_661225538_4447749_5678742_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Cool talk by @jamesaduncan at the #nodejs hackathon intro here in #mtl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:24:23 +0000", "from_user": "flashuni", "from_user_id": 8961282, "from_user_id_str": "8961282", "from_user_name": "flashuni", "geo": null, "id": 147819389134184450, "id_str": "147819389134184448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/74454862/Picture_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/74454862/Picture_1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@Marakana Hey what song did you guys use for the intro to Ryan Dahl's nodejs talk? http://t.co/iyEGvW1S", "to_user": "Marakana", "to_user_id": 38562109, "to_user_id_str": "38562109", "to_user_name": "Marakana"}, +{"created_at": "Fri, 16 Dec 2011 23:20:32 +0000", "from_user": "jbueza", "from_user_id": 141423083, "from_user_id_str": "141423083", "from_user_name": "Jaime Bueza", "geo": null, "id": 147818419633405950, "id_str": "147818419633405954", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@haydockjp With the NodeJS SDK? ;) or perhaps PHP? or Java? http://t.co/Cv57WDJA #Windows #Azure", "to_user": "haydockjp", "to_user_id": 115575946, "to_user_id_str": "115575946", "to_user_name": "Jon Haydock", "in_reply_to_status_id": 147814101547089920, "in_reply_to_status_id_str": "147814101547089920"}, +{"created_at": "Fri, 16 Dec 2011 23:20:26 +0000", "from_user": "JeromeParadis", "from_user_id": 7025052, "from_user_id_str": "7025052", "from_user_name": "Jerome Paradis", "geo": null, "id": 147818390462013440, "id_str": "147818390462013440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/565533545/0375_c_50pct_Square_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/565533545/0375_c_50pct_Square_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Huge crowd at the Nodejs/mongodb/redis Hackathon http://t.co/AQ4RhL0j", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:14:06 +0000", "from_user": "ggrgur", "from_user_id": 246730738, "from_user_id_str": "246730738", "from_user_name": "Grgur Grisogono", "geo": null, "id": 147816802242666500, "id_str": "147816802242666496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1345117144/p-0021_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1345117144/p-0021_2_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Updated to the latest #mongodb and #Nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:13:04 +0000", "from_user": "leftbug", "from_user_id": 240625785, "from_user_id_str": "240625785", "from_user_name": "leftbug", "geo": null, "id": 147816543626067970, "id_str": "147816543626067968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1221663125/gravatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1221663125/gravatar_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: Imagine http://t.co/98HBW2Xi in real-time across a whole data center of production #nodejs processes sampling both JS and C functions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:11:11 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 147816066809212930, "id_str": "147816066809212928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "RT @stephaneledorze: Running your own #nodejs version on #heroku http://t.co/wtdivCKT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:11:09 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147816059464978430, "id_str": "147816059464978432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Running your own #nodejs version on #heroku http://t.co/9BfOxdBL http://t.co/Vct11X9v", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:05:48 +0000", "from_user": "highercomve", "from_user_id": 143896177, "from_user_id_str": "143896177", "from_user_name": "Sergio Marin", "geo": null, "id": 147814712078385150, "id_str": "147814712078385152", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1655539021/yfmGMplp_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655539021/yfmGMplp_normal", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Ya mi maquina tiene Ubuntu...aunque falta, Ruby,rails, apache, mysql, php, nodejs... Pero bueno vamos poco a poco xD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:57:23 +0000", "from_user": "cemuzunlar", "from_user_id": 15491922, "from_user_id_str": "15491922", "from_user_name": "Cem Uzunlar", "geo": null, "id": 147812595544502270, "id_str": "147812595544502272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/62874978/profil_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/62874978/profil_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: Imagine http://t.co/98HBW2Xi in real-time across a whole data center of production #nodejs processes sampling both JS and C functions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:50:34 +0000", "from_user": "jesusabdullah", "from_user_id": 184987977, "from_user_id_str": "184987977", "from_user_name": "Joshua Holbrook", "geo": null, "id": 147810880250327040, "id_str": "147810880250327040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1541971778/birdbirdbird-cropped_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541971778/birdbirdbird-cropped_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: Imagine http://t.co/98HBW2Xi in real-time across a whole data center of production #nodejs processes sampling both JS and C functions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:48:41 +0000", "from_user": "stephaneledorze", "from_user_id": 109690809, "from_user_id_str": "109690809", "from_user_name": "stephane le dorze", "geo": null, "id": 147810407137030140, "id_str": "147810407137030144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1432813661/tete_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1432813661/tete_normal.jpg", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "Running your own #nodejs version on #heroku http://t.co/wtdivCKT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:48:25 +0000", "from_user": "nodejs", "from_user_id": 91985735, "from_user_id_str": "91985735", "from_user_name": "node js", "geo": null, "id": 147810340288200700, "id_str": "147810340288200704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1437021459/nodejs-dark_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1437021459/nodejs-dark_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: Imagine http://t.co/98HBW2Xi in real-time across a whole data center of production #nodejs processes sampling both JS and C functions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:47:24 +0000", "from_user": "HowieDragon", "from_user_id": 184442035, "from_user_id_str": "184442035", "from_user_name": "Howie", "geo": null, "id": 147810083106078720, "id_str": "147810083106078722", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1412192196/IMG_2380_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1412192196/IMG_2380_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: Imagine http://t.co/98HBW2Xi in real-time across a whole data center of production #nodejs processes sampling both JS and C functions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:42:54 +0000", "from_user": "polotek", "from_user_id": 20079975, "from_user_id_str": "20079975", "from_user_name": "Marco Rogers", "geo": null, "id": 147808951927439360, "id_str": "147808951927439360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/422439290/n739064999_192287_1980_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/422439290/n739064999_192287_1980_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: Imagine http://t.co/98HBW2Xi in real-time across a whole data center of production #nodejs processes sampling both JS and C functions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:40:59 +0000", "from_user": "eschan", "from_user_id": 20226412, "from_user_id_str": "20226412", "from_user_name": "Edward Chan", "geo": null, "id": 147808466537422850, "id_str": "147808466537422848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/419783659/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/419783659/profile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "gotta love #nodejs and its progress on windows. just setup node on a windows machine and got my app running in less than 10 mins.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:39:58 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 147808212379381760, "id_str": "147808212379381760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ryah: Imagine http://t.co/98HBW2Xi in real-time across a whole data center of production #nodejs processes sampling both JS and C functions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:39:57 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147808205672677380, "id_str": "147808205672677376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Imagine http://t.co/5qdH2Gyh in real-time across a whole data center of production #nodejs processes sampling bo... http://t.co/VgvPrEEO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:38:34 +0000", "from_user": "ryah", "from_user_id": 18975861, "from_user_id_str": "18975861", "from_user_name": "Ryan Dahl", "geo": null, "id": 147807859659374600, "id_str": "147807859659374592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1634041610/name_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634041610/name_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Imagine http://t.co/98HBW2Xi in real-time across a whole data center of production #nodejs processes sampling both JS and C functions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:34:49 +0000", "from_user": "SFLinux", "from_user_id": 62647280, "from_user_id_str": "62647280", "from_user_name": "Savoir-faire Linux", "geo": null, "id": 147806913806090240, "id_str": "147806913806090240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/346592408/sfl_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/346592408/sfl_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Bon Hackathon ! \"Nodejs/mongodb/redis Hackathon\" http://t.co/rYHEABqW via @eventbrite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:29:26 +0000", "from_user": "ozgurlukicin", "from_user_id": 10094282, "from_user_id_str": "10094282", "from_user_name": "\\u00D6zg\\u00FCrl\\u00FCk \\u0130\\u00E7in...", "geo": null, "id": 147805562086768640, "id_str": "147805562086768640", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/36014282/328_50_1180368575606_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/36014282/328_50_1180368575606_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Mirat Can BAYRAK: Tornado'mu Node.js mi dedim kendi kendime...: Yeni ve art\\u0131k son okul d\\u00F6nemi ile birlikte Lookr... http://t.co/DyWszUtn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:26:28 +0000", "from_user": "alexissmirnov", "from_user_id": 7611972, "from_user_id_str": "7611972", "from_user_name": "Alexis Smirnov", "geo": null, "id": 147804813642571780, "id_str": "147804813642571776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/24487012/alexis_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/24487012/alexis_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "See you at Nodejs/mongodb/redis Hackathon http://t.co/5sR8vw7l", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:26:08 +0000", "from_user": "atpok", "from_user_id": 13311422, "from_user_id_str": "13311422", "from_user_name": "Martin Kopta", "geo": null, "id": 147804729337053200, "id_str": "147804729337053184", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700067307/IMG_0008_bigger_bigger_bw_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700067307/IMG_0008_bigger_bigger_bw_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Yahoo Cocktails \\u2014 dal\\u0161\\u00ED cesta, jak ps\\u00E1t v HTML5/JS nativn\\u00ED aplikace jen jednou pro \\u201Ev\\u0161echny\\u201C platformy. \\u0160ance pro node. http://t.co/xLK2rgc5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:24:04 +0000", "from_user": "Xogost", "from_user_id": 126010186, "from_user_id_str": "126010186", "from_user_name": "Juan Camilo Martinez", "geo": null, "id": 147804209411141630, "id_str": "147804209411141633", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699288836/akane_y_yop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699288836/akane_y_yop_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ajamaica: Por cierto encontre Forever una manera de hacer deploy de Node.js sencillos http://t.co/47iMGc04", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:23:20 +0000", "from_user": "Nodester", "from_user_id": 240751001, "from_user_id_str": "240751001", "from_user_name": "Nodester", "geo": null, "id": 147804025864204300, "id_str": "147804025864204289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "We just sent out 100 new @nodester nodejs hosting coupons! /cc @mferrante3 @freakyfractal @mayoralito", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:23:01 +0000", "from_user": "ajamaica", "from_user_id": 776449, "from_user_id_str": "776449", "from_user_name": "Arturo Jamaica", "geo": null, "id": 147803947095171070, "id_str": "147803947095171072", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1478040314/8822-huge_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1478040314/8822-huge_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "Por cierto encontre Forever una manera de hacer deploy de Node.js sencillos http://t.co/47iMGc04", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:22:32 +0000", "from_user": "mirat", "from_user_id": 14368680, "from_user_id_str": "14368680", "from_user_name": "Mirat Can Bayrak", "geo": null, "id": 147803823237365760, "id_str": "147803823237365761", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1186664587/70438_649222888_5439295_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1186664587/70438_649222888_5439295_n_normal.jpg", "source": "<a href="https://wiki.ubuntu.com/Gwibber" rel="nofollow">Ubuntu</a>", "text": "Tornado'mu Node.js mi? http://t.co/CrwawKpI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:19:25 +0000", "from_user": "_johnnyray", "from_user_id": 74046600, "from_user_id_str": "74046600", "from_user_name": "Johnny Ray", "geo": null, "id": 147803039032541200, "id_str": "147803039032541184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696764011/success_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696764011/success_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: #nodejs #mocha is freaking awesome: http://t.co/qEAjqras #ftw http://t.co/dxil5Yyf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:18:38 +0000", "from_user": "przemyslawpluta", "from_user_id": 24577454, "from_user_id_str": "24577454", "from_user_name": "Przemyslaw Pluta", "geo": null, "id": 147802844349743100, "id_str": "147802844349743104", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1479677201/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1479677201/me_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "Awesome lineup for http://t.co/1FfEuEHw Intel, Microsoft, VMware, eBay #nodejs is growing fast", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:09:09 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 147800456167571460, "id_str": "147800456167571456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @cloudclint: srsly http://t.co/LTRnB1su is going to rock #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:09:05 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147800439809769470, "id_str": "147800439809769472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "srsly http://t.co/UU7KbtcZ is going to rock #nodejs http://t.co/C2fT6rci", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:08:57 +0000", "from_user": "kyledetella", "from_user_id": 22034842, "from_user_id_str": "22034842", "from_user_name": "Kyle Douglas DeTella", "geo": null, "id": 147800404716036100, "id_str": "147800404716036096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1583296978/kdd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583296978/kdd_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Sitting down with DayQuil, Christmas Music and diving into some NodeJS madness...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:01:11 +0000", "from_user": "dandean", "from_user_id": 9525212, "from_user_id_str": "9525212", "from_user_name": "Dan Dean", "geo": null, "id": 147798450212315140, "id_str": "147798450212315136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1291102275/set_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1291102275/set_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "fspkg: a @nodejs module for packaging up parts of your file system as a CommonJS module or JSON encoded string: https://t.co/0jovgws8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:55:08 +0000", "from_user": "DavidTouchette", "from_user_id": 16216329, "from_user_id_str": "16216329", "from_user_name": "\\u2190 hey, that's ME!", "geo": null, "id": 147796927176642560, "id_str": "147796927176642560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694823550/Picture_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694823550/Picture_1_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "#nerdenvy RT @pluc: Heading to @notmanhouse in a few minutes for the NodeJS/MongoDB/Redis workshop.", "to_user": "pluc", "to_user_id": 14517408, "to_user_id_str": "14517408", "to_user_name": "Pier-Luc Petitclerc", "in_reply_to_status_id": 147793874440564740, "in_reply_to_status_id_str": "147793874440564737"}, +{"created_at": "Fri, 16 Dec 2011 21:47:31 +0000", "from_user": "cramm", "from_user_id": 15446319, "from_user_id_str": "15446319", "from_user_name": "Mike Cramm", "geo": null, "id": 147795012883718140, "id_str": "147795012883718144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1521621454/coffee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1521621454/coffee_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: #nodejs #mocha is freaking awesome: http://t.co/qEAjqras #ftw http://t.co/dxil5Yyf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:46:17 +0000", "from_user": "cloudclint", "from_user_id": 178949793, "from_user_id_str": "178949793", "from_user_name": "Clint Greenwood", "geo": null, "id": 147794701079166980, "id_str": "147794701079166976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1342108211/me_specs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1342108211/me_specs_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "srsly http://t.co/LTRnB1su is going to rock #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:43:04 +0000", "from_user": "jbueza", "from_user_id": 141423083, "from_user_id_str": "141423083", "from_user_name": "Jaime Bueza", "geo": null, "id": 147793890785755140, "id_str": "147793890785755136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "#NodeJS is serious business: http://t.co/bZmhPBTF -- Microsoft, Intel, VMWare, eBay, Yahoo speakers", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:43:02 +0000", "from_user": "JaimeBuezaABC", "from_user_id": 396920479, "from_user_id_str": "396920479", "from_user_name": "Jaime Bueza", "geo": null, "id": 147793886096539650, "id_str": "147793886096539650", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1672356659/Jaime_new_v3_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672356659/Jaime_new_v3_small_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "#NodeJS is serious business: http://t.co/qvHaK0m3 -- Microsoft, Intel, VMWare, eBay, Yahoo speakers", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:43:00 +0000", "from_user": "pluc", "from_user_id": 14517408, "from_user_id_str": "14517408", "from_user_name": "Pier-Luc Petitclerc", "geo": null, "id": 147793874440564740, "id_str": "147793874440564737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1330464753/avatar-trans-sm_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1330464753/avatar-trans-sm_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Heading to @notmanhouse in a few minutes for the NodeJS/MongoDB/Redis workshop.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:39:12 +0000", "from_user": "rsrose", "from_user_id": 19767886, "from_user_id_str": "19767886", "from_user_name": "Ryan Rose", "geo": null, "id": 147792920097988600, "id_str": "147792920097988609", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1563194873/ryan-rose_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1563194873/ryan-rose_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @rgaidot: Make WebSocket work 2x faster on Node.js http://t.co/jISbItr5 #nodejs #websocket", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:38:25 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 147792722495946750, "id_str": "147792722495946752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @MarioBehrendt: #nodejs #mocha is freaking awesome: http://t.co/tMVs7Ehj #ftw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:38:23 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147792714136694800, "id_str": "147792714136694785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#nodejs #mocha is freaking awesome: http://t.co/qEAjqras #ftw http://t.co/dxil5Yyf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:31:50 +0000", "from_user": "moellenbeck", "from_user_id": 1936981, "from_user_id_str": "1936981", "from_user_name": "Martin M\\u00F6llenbeck", "geo": null, "id": 147791066282733570, "id_str": "147791066282733568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/30569592/FlickrIcon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/30569592/FlickrIcon_normal.png", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "Very interesting!! RT @rgaidot: Make WebSocket work 2x faster on Node.js http://t.co/IupR7cEA #nodejs #websocket", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:23:38 +0000", "from_user": "chrismatthieu", "from_user_id": 13604142, "from_user_id_str": "13604142", "from_user_name": "Chris Matthieu", "geo": null, "id": 147789002169262080, "id_str": "147789002169262080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/918916153/SuperChrisSmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/918916153/SuperChrisSmall_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Check out the new @nodester API page (specifically the REST API tab) - http://t.co/grumM42S #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:16:01 +0000", "from_user": "MarioBehrendt", "from_user_id": 268952646, "from_user_id_str": "268952646", "from_user_name": "Mario Behrendt", "geo": null, "id": 147787085573652480, "id_str": "147787085573652480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1279542068/41393_1392872855_5297780_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1279542068/41393_1392872855_5297780_n_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "#nodejs #mocha is freaking awesome: http://t.co/tMVs7Ehj #ftw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:13:38 +0000", "from_user": "mle_tanaka", "from_user_id": 186652183, "from_user_id_str": "186652183", "from_user_name": "Emily", "geo": null, "id": 147786485691723780, "id_str": "147786485691723778", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @twericb: More on @nodejs on #Azure and the Node Azure SDK: http://t.co/A6Oz0ItK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:13:24 +0000", "from_user": "twericb", "from_user_id": 260001315, "from_user_id_str": "260001315", "from_user_name": "eric b", "geo": null, "id": 147786424916254720, "id_str": "147786424916254720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1367358173/charicjpeg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1367358173/charicjpeg_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "More on @nodejs on #Azure and the Node Azure SDK: http://t.co/A6Oz0ItK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:11:00 +0000", "from_user": "ApocalypeX", "from_user_id": 98144476, "from_user_id_str": "98144476", "from_user_name": "ApocalypeX", "geo": null, "id": 147785823222366200, "id_str": "147785823222366208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1560906577/avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1560906577/avatar_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Time to start building my nodejs webserver.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:06:53 +0000", "from_user": "delfinof", "from_user_id": 29531965, "from_user_id_str": "29531965", "from_user_name": "Francesco Delfino", "geo": null, "id": 147784788164624400, "id_str": "147784788164624385", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1643688932/_29531965_-5740430031097686038_146_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643688932/_29531965_-5740430031097686038_146_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @hnfirehose: Node.js modules you should know about: cradle: http://t.co/Mgmhbu1t", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:05:21 +0000", "from_user": "shaundesigns", "from_user_id": 90294591, "from_user_id_str": "90294591", "from_user_name": "Shaun Baker", "geo": null, "id": 147784399696564220, "id_str": "147784399696564225", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1673422560/308618_2703477794037_1469502645_2918943_1688154821_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673422560/308618_2703477794037_1469502645_2918943_1688154821_n_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Safari on iOS</a>", "text": "http://t.co/8ZCIJGff cradle module for #nodejs http://t.co/8ZCIJGff", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:03:44 +0000", "from_user": "phpquickfix", "from_user_id": 422872219, "from_user_id_str": "422872219", "from_user_name": "PHP Quick Fix", "geo": null, "id": 147783993222365200, "id_str": "147783993222365184", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662673609/onfire_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662673609/onfire_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Video: CakePHP and Node.js | Web Builder Zone: Video: CakePHP and Node.js | Web Builder Zone : #cakephp #nodejs ... http://t.co/NWBrTefW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:56:51 +0000", "from_user": "3rdEden", "from_user_id": 14350255, "from_user_id_str": "14350255", "from_user_name": "Arnout Kazemier", "geo": null, "id": 147782260395999230, "id_str": "147782260395999233", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Released 0.0.5 of dev/null a #nodejs logging module: https://t.co/TMNpUwYd `npm install devnull` while it's still hot!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:55:42 +0000", "from_user": "OscarCantaro", "from_user_id": 100827671, "from_user_id_str": "100827671", "from_user_name": "Oscar C\\u00E1ntaro", "geo": null, "id": 147781970246639600, "id_str": "147781970246639616", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1653159688/oscar-bits-2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653159688/oscar-bits-2_normal.png", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "RT @DiegoUG: Simple chat for Node.js - http://t.co/MQclglT0 http://t.co/jEm2JPFn - http://t.co/OuTo2DTP #mejorandojs (CC @cvander)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:51:26 +0000", "from_user": "bcelenza", "from_user_id": 14261465, "from_user_id_str": "14261465", "from_user_name": "Brian Celenza", "geo": null, "id": 147780899562455040, "id_str": "147780899562455041", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1210621228/47238_771257466905_21413042_41763552_4214387_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1210621228/47238_771257466905_21413042_41763552_4214387_n_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Someone who knows NodeJS should create a database abstraction layer. Wait a minute, I know NodeJS.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:49:32 +0000", "from_user": "hnfirehose", "from_user_id": 213117318, "from_user_id_str": "213117318", "from_user_name": "HN Firehose", "geo": null, "id": 147780420900110340, "id_str": "147780420900110336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Node.js modules you should know about: cradle: http://t.co/Mgmhbu1t", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:47:38 +0000", "from_user": "speedata", "from_user_id": 66168039, "from_user_id_str": "66168039", "from_user_name": "speedata", "geo": null, "id": 147779940144791550, "id_str": "147779940144791552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1425809224/twitter-logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1425809224/twitter-logo_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Awesome new project with the #speedata Publisher, #nodejs and some #nosql database. Sounds like lots of fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:46:57 +0000", "from_user": "alxisv", "from_user_id": 205560908, "from_user_id_str": "205560908", "from_user_name": "Alcides Torres", "geo": null, "id": 147779770430656500, "id_str": "147779770430656512", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1554188509/2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554188509/2_normal.JPG", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Reuni\\u00F3n 3 de MadridJS: Nodejs y Heroku - MadridJS (Madrid) - Meetup http://t.co/YyjIARhA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:36:25 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147777120876249100, "id_str": "147777120876249088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Chai - #BDD / #TDD assert. framework for NodeJS and the browser that can be paired with any testing framework ht... http://t.co/g2cEO1Ds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:30:05 +0000", "from_user": "FGRibreau", "from_user_id": 5719692, "from_user_id_str": "5719692", "from_user_name": "Fran\\u00E7ois-G. Ribreau", "geo": null, "id": 147775525199429630, "id_str": "147775525199429632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1117780106/2009_shooting_medium_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1117780106/2009_shooting_medium_normal.png", "source": "<a href="http://fgribreau.com" rel="nofollow">FG</a>", "text": "Chai - #BDD / #TDD assert. framework for NodeJS and the browser that can be paired with any testing framework http://t.co/VWzd6sT5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:30:01 +0000", "from_user": "ohmybrain", "from_user_id": 7313752, "from_user_id_str": "7313752", "from_user_name": "Brian Williford \\uF8FF", "geo": null, "id": 147775507855982600, "id_str": "147775507855982593", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1266214815/mhf_227_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266214815/mhf_227_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pkrumins: Just blogged about another node.js module you should know about - cradle by @cloudhead - http://t.co/xTcFPEL3. #node #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:29:45 +0000", "from_user": "richardchaves", "from_user_id": 32394460, "from_user_id_str": "32394460", "from_user_name": "Richard Chaves", "geo": null, "id": 147775441107816450, "id_str": "147775441107816448", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/769450746/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/769450746/twitterProfilePhoto_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Open in the #Cloud: #Azure Libraries for .Net, Java and Node.js http://t.co/lfwB2V0A via @OpenAtMicrosoft #Java #NodeJS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:28:14 +0000", "from_user": "willkite", "from_user_id": 37689415, "from_user_id_str": "37689415", "from_user_name": "Will Stevens", "geo": null, "id": 147775060202102800, "id_str": "147775060202102784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/196297360/no_eye_contact_crop_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/196297360/no_eye_contact_crop_small_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Judging at a Nodejs/mongodb/redis Hackathon tomorrow. http://t.co/AMj8PAE7 via @eventbrite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Fri, 16 Dec 2011 20:28:12 +0000", "from_user": "maxogden", "from_user_id": 12241752, "from_user_id_str": "12241752", "from_user_name": "max ogden", "geo": null, "id": 147775048432889860, "id_str": "147775048432889857", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690285875/max_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690285875/max_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "happy pappy @ryah after discovering how big @voxer's node deployment is from @mranney #nodejs http://t.co/zAxstmOB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:24:33 +0000", "from_user": "philingrey", "from_user_id": 19531270, "from_user_id_str": "19531270", "from_user_name": "Phil Ingrey", "geo": null, "id": 147774132812136450, "id_str": "147774132812136448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1541073408/38144_799049857518_199708197_47770802_867897_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541073408/38144_799049857518_199708197_47770802_867897_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Made a comet server in @nodejs! Man, I really know how to make the most of a Friday night!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:22:09 +0000", "from_user": "ekanna", "from_user_id": 16922105, "from_user_id_str": "16922105", "from_user_name": "ekanna", "geo": null, "id": 147773527360155650, "id_str": "147773527360155649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/75231310/FotoFlexer_Photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/75231310/FotoFlexer_Photo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dezmozz I stay near DLF Ramapuram. Javascript and nodejs is my hobby. What about u?", "to_user": "dezmozz", "to_user_id": 16486026, "to_user_id_str": "16486026", "to_user_name": "Rajkumar Jegannathan", "in_reply_to_status_id": 146899645073858560, "in_reply_to_status_id_str": "146899645073858561"}, +{"created_at": "Fri, 16 Dec 2011 20:21:49 +0000", "from_user": "ryanjarvinen", "from_user_id": 14945367, "from_user_id_str": "14945367", "from_user_name": "ryan", "geo": null, "id": 147773446980513800, "id_str": "147773446980513793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1227505866/sp_head_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1227505866/sp_head_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pkrumins: Just blogged about another node.js module you should know about - cradle by @cloudhead - http://t.co/xTcFPEL3. #node #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:15:34 +0000", "from_user": "aditya_bhatt", "from_user_id": 43854667, "from_user_id_str": "43854667", "from_user_name": "Aditya Bhatt", "geo": null, "id": 147771870899486720, "id_str": "147771870899486720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1217326232/ddsds_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1217326232/ddsds_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Just signed up for a beta invitation to the node.js hosting platform @nodesocket. #nodejs http://t.co/dQBDlUtm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:05:56 +0000", "from_user": "3rdEden", "from_user_id": 14350255, "from_user_id_str": "14350255", "from_user_name": "Arnout Kazemier", "geo": null, "id": 147769447724224500, "id_str": "147769447724224513", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Working on the next dev/null #nodejs log module, writing a bit more documentation and it's can go out the door.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:05:29 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147769333244903420, "id_str": "147769333244903424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "mongoose-paginate (0.0.3): http://t.co/0JfPxjaI Mongoose ORM (NodeJS) Document Query Pagination http://t.co/GOwwAYhT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:05:07 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 147769244623450100, "id_str": "147769244623450113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Windows Azure Adds Node.js Support, Hadoop Preview http://t.co/DCg24rie #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:03:49 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 147768917388042240, "id_str": "147768917388042240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "mongoose-paginate (0.0.3): http://t.co/fhbMzLA0 Mongoose ORM (NodeJS) Document Query Pagination", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:03:19 +0000", "from_user": "sholloway", "from_user_id": 14143818, "from_user_id_str": "14143818", "from_user_name": "Samuel Holloway", "geo": null, "id": 147768787557560320, "id_str": "147768787557560320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/884525536/me_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/884525536/me_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "Looking for a dead simple mechanism for sending no-reply type emails without an SMTP server. Using NodeJS or Ruby.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:02:44 +0000", "from_user": "marcoegli", "from_user_id": 226274466, "from_user_id_str": "226274466", "from_user_name": "Marco Egli", "geo": null, "id": 147768643688738800, "id_str": "147768643688738816", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1655118916/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655118916/profile_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "node.js is growing up http://t.co/YreMx5SI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:01:34 +0000", "from_user": "NodeJSAtSO", "from_user_id": 292124941, "from_user_id_str": "292124941", "from_user_name": "Node JS @ SO", "geo": null, "id": 147768350678859780, "id_str": "147768350678859777", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1336740490/sprites_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1336740490/sprites_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Getting data from mongodb in nodejs http://t.co/YZf869lk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:59:46 +0000", "from_user": "dfeldman", "from_user_id": 2377901, "from_user_id_str": "2377901", "from_user_name": "David Feldman", "geo": null, "id": 147767894099505150, "id_str": "147767894099505152", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1359930052/dave-emoticon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1359930052/dave-emoticon_normal.png", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "Node.js gets Windows Azure, Visual Studio support http://t.co/YCIEYXJp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:58:43 +0000", "from_user": "jsrss", "from_user_id": 319369545, "from_user_id_str": "319369545", "from_user_name": "Jan's RSS Feeds", "geo": null, "id": 147767633213800450, "id_str": "147767633213800448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1400846880/Newspaper_Feed_512x512_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1400846880/Newspaper_Feed_512x512_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "CatOnMat: Node.js modules you should know about: cradle: Hello everyone! This is the twelfth post in the node.js... http://t.co/nck10vhk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:54:19 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 147766525686849540, "id_str": "147766525686849536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "mongoose-paginate (0.0.2): http://t.co/fhbMzLA0 Mongoose ORM (NodeJS) Document Query Pagination", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:51:31 +0000", "from_user": "maciejmalecki", "from_user_id": 263755874, "from_user_id_str": "263755874", "from_user_name": "Maciej Ma\\u0142ecki", "geo": null, "id": 147765818153902080, "id_str": "147765818153902080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1547225919/IMG_20110917_192531mt_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1547225919/IMG_20110917_192531mt_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "You should totally follow https://t.co/DOXvMYhQ. #nodejs awesomeness guaranteed!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:48:11 +0000", "from_user": "lscosta", "from_user_id": 22920306, "from_user_id_str": "22920306", "from_user_name": "Luciano Costa", "geo": null, "id": 147764981247647740, "id_str": "147764981247647744", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1340054803/luciano_transparent_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1340054803/luciano_transparent_normal.PNG", "source": "<a href="http://twitter.com/">web</a>", "text": "ae @fnando, passa l\\u00E1 na howto-nodejs@googlegroups.com! #howto", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:46:20 +0000", "from_user": "CromaCreativo", "from_user_id": 369765710, "from_user_id_str": "369765710", "from_user_name": "Croma Creativo", "geo": null, "id": 147764513482088450, "id_str": "147764513482088448", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681882117/croma_avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681882117/croma_avatar_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Y pens\\u00E1bamos que PHP y MySQL corriendo en Apache era todo lo que necesitabamos.. rethinking.. http://t.co/GPxLBUKE http://t.co/e4WzMFNJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:45:50 +0000", "from_user": "benyblack", "from_user_id": 19531113, "from_user_id_str": "19531113", "from_user_name": "Behnam Yousefi", "geo": null, "id": 147764389594931200, "id_str": "147764389594931200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1225716885/ME4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225716885/ME4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ryah: #nodejs people: We need a working 'gist' command.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:45:46 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 147764372922576900, "id_str": "147764372922576897", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @itwars Node.js modules you should know about: cradle - good coders code, great reuse | #nodejs http://t.co/Yrdsc0l0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:45:46 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 147764371072876540, "id_str": "147764371072876544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @developer_news Node.js modules you should know about: cradle http://t.co/SMBfAMSS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:45:45 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 147764369781035000, "id_str": "147764369781035008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @pkrumins Just blogged about another node.js module you should know about - cradle by @cloudhead - http://t.co/obZGuHGj. #node #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:39:58 +0000", "from_user": "sinhorinho", "from_user_id": 34638488, "from_user_id_str": "34638488", "from_user_name": "Elizeu Sinhorinho", "geo": null, "id": 147762912470106100, "id_str": "147762912470106112", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1464774462/elizeu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1464774462/elizeu_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "come\\u00E7ando com #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:39:11 +0000", "from_user": "itwars", "from_user_id": 67265165, "from_user_id_str": "67265165", "from_user_name": "Vincent RABAH", "geo": null, "id": 147762717225271300, "id_str": "147762717225271296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1135858686/cb-vincent_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1135858686/cb-vincent_normal.png", "source": "<a href="http://www.scoop.it" rel="nofollow">Scoop.it</a>", "text": "Node.js modules you should know about: cradle - good coders code, great reuse | #nodejs http://t.co/psW4EM2O", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:37:52 +0000", "from_user": "developer_news", "from_user_id": 26244954, "from_user_id_str": "26244954", "from_user_name": "Programming Tweets", "geo": null, "id": 147762386273706000, "id_str": "147762386273705984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/108550788/Exquisite-binary_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/108550788/Exquisite-binary_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Node.js modules you should know about: cradle http://t.co/mkshebnh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:37:31 +0000", "from_user": "pkrumins", "from_user_id": 2134501, "from_user_id_str": "2134501", "from_user_name": "Peteris Krumins", "geo": null, "id": 147762298130399230, "id_str": "147762298130399232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687863157/peteris-krumins_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687863157/peteris-krumins_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Just blogged about another node.js module you should know about - cradle by @cloudhead - http://t.co/xTcFPEL3. #node #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:34:46 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 147761605684371460, "id_str": "147761605684371458", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "RT @benyblack: Kanso Repository, Recipes with Backbone, Appify UI http://t.co/h7crIEj6 #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:34:43 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147761590022832130, "id_str": "147761590022832128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Kanso Repository, Recipes with Backbone, Appify UI http://t.co/66DHTC72 #nodejs http://t.co/q3I0vF8c", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:33:28 +0000", "from_user": "ryah", "from_user_id": 18975861, "from_user_id_str": "18975861", "from_user_name": "Ryan Dahl", "geo": null, "id": 147761276813197300, "id_str": "147761276813197312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1634041610/name_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634041610/name_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#nodejs people: We need a working 'gist' command.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:28:59 +0000", "from_user": "Ccrystle", "from_user_id": 14248746, "from_user_id_str": "14248746", "from_user_name": "Charlie Crystle", "geo": null, "id": 147760149736603650, "id_str": "147760149736603648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1568025057/Crystle30R_c__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1568025057/Crystle30R_c__1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@nodejs how about adding more context to the docs? like the \"why\" for each api and a couple of examples showing different approaches", "to_user": "nodejs", "to_user_id": 91985735, "to_user_id_str": "91985735", "to_user_name": "node js", "in_reply_to_status_id": 147460480989011970, "in_reply_to_status_id_str": "147460480989011968"}, +{"created_at": "Fri, 16 Dec 2011 19:25:06 +0000", "from_user": "mechanicles", "from_user_id": 10389852, "from_user_id_str": "10389852", "from_user_name": "Santosh Wadghule", "geo": null, "id": 147759171733946370, "id_str": "147759171733946368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1684526489/my2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684526489/my2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Nodester: New websites! First nodejs.org and now nodester.com", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:19:20 +0000", "from_user": "aitoribanez", "from_user_id": 116078585, "from_user_id_str": "116078585", "from_user_name": "Aitor Iba\\u00F1ez", "geo": null, "id": 147757720920010750, "id_str": "147757720920010752", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/733051885/logo-ai_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/733051885/logo-ai_normal.png", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "RT @DiegoUG: Simple chat for Node.js - http://t.co/MQclglT0 http://t.co/jEm2JPFn - http://t.co/OuTo2DTP #mejorandojs (CC @cvander)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:14:03 +0000", "from_user": "Abood_Nour", "from_user_id": 193821501, "from_user_id_str": "193821501", "from_user_name": "Abood Nour", "geo": null, "id": 147756392571355140, "id_str": "147756392571355136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1325634605/55422_1667717046476_1043799049_31817507_4450712_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1325634605/55422_1667717046476_1043799049_31817507_4450712_o_normal.jpg", "source": "<a href="http://www.metrotwit.com/" rel="nofollow">MetroTwit</a>", "text": "RT @AbdAllah_Ahmed: looking for #nodejs #PHP expert #Spring #JSP #VBA #python developers #job #work", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:12:52 +0000", "from_user": "benyblack", "from_user_id": 19531113, "from_user_id_str": "19531113", "from_user_name": "Behnam Yousefi", "geo": null, "id": 147756091692949500, "id_str": "147756091692949504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1225716885/ME4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225716885/ME4_normal.png", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "Kanso Repository, Recipes with Backbone, Appify UI http://t.co/h7crIEj6 #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:09:08 +0000", "from_user": "Lamies_H", "from_user_id": 213878168, "from_user_id_str": "213878168", "from_user_name": " \\u0644\\u0645\\u064A\\u0633 ", "geo": null, "id": 147755153481666560, "id_str": "147755153481666560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687760097/twitterpic_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687760097/twitterpic_normal.png", "source": "<a href="http://www.metrotwit.com/" rel="nofollow">MetroTwit</a>", "text": "RT @AbdAllah_Ahmed: looking for #nodejs #PHP expert #Spring #JSP #VBA #python developers #job #work", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:05:49 +0000", "from_user": "AbdAllah_Ahmed", "from_user_id": 48293642, "from_user_id_str": "48293642", "from_user_name": "AbdAllah Ahmed", "geo": null, "id": 147754318047608830, "id_str": "147754318047608832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696740970/265082_2020178498951_1078575461_2271513_398532_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696740970/265082_2020178498951_1078575461_2271513_398532_n_normal.jpg", "source": "<a href="http://www.metrotwit.com/" rel="nofollow">MetroTwit</a>", "text": "looking for #nodejs #PHP expert #Spring #JSP #VBA #python developers #jobs #work", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:00:37 +0000", "from_user": "qwert1x", "from_user_id": 253980967, "from_user_id_str": "253980967", "from_user_name": "Aleksey Makarov", "geo": null, "id": 147753011790352400, "id_str": "147753011790352384", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1308239476/DSC02698_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1308239476/DSC02698_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u041F\\u043E\\u043A\\u0430 \\u043A\\u043E\\u043C\\u043F\\u0438\\u043B\\u0438\\u0442\\u0441\\u044F nodejs \\u043D\\u0430 \\u0432\\u0438\\u0440\\u0442\\u0443\\u0430\\u043B\\u043A\\u0435, \\u043C\\u043E\\u0436\\u043D\\u043E \\u0437\\u0430\\u0441\\u0440\\u0430\\u0442\\u044C \\u0442\\u0432\\u0438\\u0442\\u0435\\u0440 \\u0435\\u0449\\u0451 \\u043E\\u0434\\u043D\\u0438\\u043C \\u0431\\u0440\\u0435\\u0434\\u043E\\u0432\\u043E\\u043C \\u043F\\u043E\\u0441\\u0442\\u043E\\u043C... \\u044D\\u0442\\u0438\\u043C...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:44:18 +0000", "from_user": "fnhernandez", "from_user_id": 163767275, "from_user_id_str": "163767275", "from_user_name": "Fabio Hernandez -\\uF8FF-", "geo": null, "id": 147748905268940800, "id_str": "147748905268940801", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696992518/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696992518/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#mejorandola quisiera saber donde puedo ver el video de la clase de ayer de Nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:35:37 +0000", "from_user": "koichik", "from_user_id": 14453603, "from_user_id_str": "14453603", "from_user_name": "koichik", "geo": null, "id": 147746717838749700, "id_str": "147746717838749696", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1399991501/hs-2010-26-a-small_web_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1399991501/hs-2010-26-a-small_web_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "http://t.co/iwqfH7uQ \\u306B\\u51FA\\u3066\\u304F\\u308B All it needs now is a good home with you \\u3063\\u3066\\u3069\\u3046\\u3044\\u3046\\u610F\\u5473\\uFF1F \\u306A\\u306B good home \\u3063\\u3066", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:33:07 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 147746089028685820, "id_str": "147746089028685824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rgaidot: Open sourcing a realtime mahjong http://t.co/ksPFXWFD #nodejs #expressjs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:33:05 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147746079750885380, "id_str": "147746079750885376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Open sourcing a realtime mahjong http://t.co/uhDpnM1M #nodejs #expressjs http://t.co/9RNjxk6p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:32:03 +0000", "from_user": "simongate", "from_user_id": 18766184, "from_user_id_str": "18766184", "from_user_name": "Simon \\u270C Gate", "geo": null, "id": 147745822136737800, "id_str": "147745822136737793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1606426115/eightbit-3642bd28-cdab-4406-bd06-8270b34d49ad_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606426115/eightbit-3642bd28-cdab-4406-bd06-8270b34d49ad_normal.png", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "Friday night, #beer and #nodejs. Everything is perfect!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:27:02 +0000", "from_user": "niclupien", "from_user_id": 273447029, "from_user_id_str": "273447029", "from_user_name": "Nicolas Lupien", "geo": null, "id": 147744560322314240, "id_str": "147744560322314241", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664486029/mobro_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664486029/mobro_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Check out \"Nodejs/mongodb/redis Hackathon\" http://t.co/nglYci8V via @eventbrite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:22:50 +0000", "from_user": "ArchUpdates", "from_user_id": 287085434, "from_user_id_str": "287085434", "from_user_name": "ArchLinux Updates", "geo": null, "id": 147743501906477060, "id_str": "147743501906477056", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1323447710/arch_reasonably_small_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1323447710/arch_reasonably_small_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "nodejs 0.6.6-3 x86_64 http://t.co/mJybOxUa #Archlinux", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:22:48 +0000", "from_user": "archlinuxbot", "from_user_id": 281470434, "from_user_id_str": "281470434", "from_user_name": "Arch Linux Bot", "geo": null, "id": 147743493744369660, "id_str": "147743493744369665", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1310040433/arch_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1310040433/arch_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "nodejs 0.6.6-3 i686 http://t.co/74YfQHNc #ArchLinux", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:22:48 +0000", "from_user": "ArchUpdates", "from_user_id": 287085434, "from_user_id_str": "287085434", "from_user_name": "ArchLinux Updates", "geo": null, "id": 147743492850974720, "id_str": "147743492850974720", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1323447710/arch_reasonably_small_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1323447710/arch_reasonably_small_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "nodejs 0.6.6-3 i686 http://t.co/yr34in1y #Archlinux", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:17:36 +0000", "from_user": "sebpaquet", "from_user_id": 7165142, "from_user_id_str": "7165142", "from_user_name": "Seb Paquet", "geo": null, "id": 147742183041150980, "id_str": "147742183041150976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1602971985/Lpn3yz6t_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1602971985/Lpn3yz6t_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "This PM, headed to Montreal nodejs, mongodb, redis Christmas hackathon http://t.co/vOJOQqNS then dinner with @stoweboyd and other awesomes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:15:00 +0000", "from_user": "oriolgual", "from_user_id": 128157474, "from_user_id_str": "128157474", "from_user_name": "Oriol Gual", "geo": null, "id": 147741528998150140, "id_str": "147741528998150144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1180117788/oriol_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1180117788/oriol_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @masylum: Open sourcing a realtime mahjong: http://t.co/CXBy3dtr #nodejs #socketio #html5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:08:41 +0000", "from_user": "cronopio2", "from_user_id": 14474239, "from_user_id_str": "14474239", "from_user_name": "D\\u24B6niel \\u24B6ristizabal \\u2622", "geo": null, "id": 147739942762709000, "id_str": "147739942762708993", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1587000370/DennisRitchie_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587000370/DennisRitchie_normal.gif", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Node v0.6.6 released http://t.co/LGH5FqF6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:08:26 +0000", "from_user": "dadeder", "from_user_id": 223841700, "from_user_id_str": "223841700", "from_user_name": "Dan de Neander", "geo": null, "id": 147739876744376320, "id_str": "147739876744376320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676842564/dadeder_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676842564/dadeder_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Great article ! How to deploy a #nodejs application with #monit, #nginx and bouncy by @masylum http://t.co/POvgxOhT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:05:03 +0000", "from_user": "MongoQuestion", "from_user_id": 233820847, "from_user_id_str": "233820847", "from_user_name": "Mongo Question", "geo": null, "id": 147739026479255550, "id_str": "147739026479255554", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1207364137/mq_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1207364137/mq_normal.jpg", "source": "<a href="http://learnmongo.com" rel="nofollow">Mongo Question</a>", "text": "\"Getting data from mongodb in nodejs\" #MongoDB - http://t.co/TjPrxAtw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:05:00 +0000", "from_user": "eneko", "from_user_id": 12622, "from_user_id_str": "12622", "from_user_name": "Eneko", "geo": null, "id": 147739016253546500, "id_str": "147739016253546496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1134194581/gravatar_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1134194581/gravatar_normal.jpeg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: http://t.co/5rZ6knsj runs on nodejs, 2-10x more performance then python: http://t.co/pDgi9sDK http://t.co/NB83QlOE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:00:10 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 147737796889677820, "id_str": "147737796889677825", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @robertcurrie: http://t.co/VbSp9Rie runs on nodejs, 2-10x more performance then python: http://t.co/c0f2MTE9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:00:07 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147737785401475070, "id_str": "147737785401475072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "http://t.co/5rZ6knsj runs on nodejs, 2-10x more performance then python: http://t.co/pDgi9sDK http://t.co/NB83QlOE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:00:04 +0000", "from_user": "rgaidot", "from_user_id": 1245801, "from_user_id_str": "1245801", "from_user_name": "R\\u00E9gis Gaidot", "geo": null, "id": 147737772222980100, "id_str": "147737772222980096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1266738841/avatar-6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266738841/avatar-6_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Open sourcing a realtime mahjong http://t.co/ksPFXWFD #nodejs #expressjs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:58:41 +0000", "from_user": "NetRoY", "from_user_id": 14138576, "from_user_id_str": "14138576", "from_user_name": "Aditya", "geo": null, "id": 147737423890223100, "id_str": "147737423890223104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1593448068/jsfoo-me-bg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593448068/jsfoo-me-bg_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@chrismatthieu the new nodester site looks sweet - RT @Nodester: New websites! First http://t.co/lUefmG0i and now http://t.co/1oCdU61d", "to_user": "chrismatthieu", "to_user_id": 13604142, "to_user_id_str": "13604142", "to_user_name": "Chris Matthieu"}, +{"created_at": "Fri, 16 Dec 2011 17:58:37 +0000", "from_user": "ellisgl", "from_user_id": 41533187, "from_user_id_str": "41533187", "from_user_name": "Kenneth McCall", "geo": null, "id": 147737406962024450, "id_str": "147737406962024449", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1478155840/IMG_1937_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1478155840/IMG_1937_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rgaidot: Make WebSocket work 2x faster on Node.js http://t.co/p2PsJHVh #nodejs #websocket", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:55:09 +0000", "from_user": "robertcurrie", "from_user_id": 137945432, "from_user_id_str": "137945432", "from_user_name": "Rob Currie", "geo": null, "id": 147736534827802620, "id_str": "147736534827802624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/857117863/pic_team_rcurrie_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/857117863/pic_team_rcurrie_copy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/VbSp9Rie runs on nodejs, 2-10x more performance then python: http://t.co/c0f2MTE9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:54:58 +0000", "from_user": "lagus123", "from_user_id": 111185293, "from_user_id_str": "111185293", "from_user_name": "Lagus", "geo": null, "id": 147736488396861440, "id_str": "147736488396861440", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1523869644/profile_normal.JPEG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1523869644/profile_normal.JPEG", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "RT @cvander: Aprendiendo de los m\\u00F3dulos de node.js. http://t.co/d7yl7vwy #mejorandojs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:53:10 +0000", "from_user": "berchun", "from_user_id": 258310347, "from_user_id_str": "258310347", "from_user_name": "Yury Berchun", "geo": null, "id": 147736034799652860, "id_str": "147736034799652864", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1256575922/a_2b3c651c_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1256575922/a_2b3c651c_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @habrahabr: Node.JS / \\u0417\\u0430\\u043F\\u0443\\u0441\\u043A\\u0430\\u0435\\u043C jQuery \\u043D\\u0430\\u00A0\\u0434\\u0432\\u0438\\u0436\\u043A\\u0435\\u00A0Node.js \\u0432\\u043C\\u0435\\u0441\\u0442\\u043E\\u00A0\\u0431\\u0440\\u0430\\u0443\\u0437\\u0435\\u0440\\u0430 http://t.co/C4PLf33V", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:52:07 +0000", "from_user": "fauveauarmel", "from_user_id": 81747730, "from_user_id_str": "81747730", "from_user_name": "Armel FAUVEAU", "geo": null, "id": 147735771229593600, "id_str": "147735771229593600", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1053733269/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1053733269/Untitled_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rgaidot: Make WebSocket work 2x faster on Node.js http://t.co/p2PsJHVh #nodejs #websocket", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:51:59 +0000", "from_user": "hswolff", "from_user_id": 20528279, "from_user_id_str": "20528279", "from_user_name": "Harry Wolff", "geo": null, "id": 147735739436777470, "id_str": "147735739436777472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1493671157/profile_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1493671157/profile_pic_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Growing Up http://t.co/PD4JktSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:51:46 +0000", "from_user": "rgaidot", "from_user_id": 1245801, "from_user_id_str": "1245801", "from_user_name": "R\\u00E9gis Gaidot", "geo": null, "id": 147735683879014400, "id_str": "147735683879014401", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1266738841/avatar-6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266738841/avatar-6_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Make WebSocket work 2x faster on Node.js http://t.co/p2PsJHVh #nodejs #websocket", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:50:06 +0000", "from_user": "cwholt", "from_user_id": 22210404, "from_user_id_str": "22210404", "from_user_name": "christopher w. holt", "geo": null, "id": 147735263630737400, "id_str": "147735263630737408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/85618138/n8802104_43757104_6402_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/85618138/n8802104_43757104_6402_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "just open-sourced a project i put together: http://t.co/1sS48s4b #nodejs #metrics #probablyamillionbugs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:48:18 +0000", "from_user": "DarwinSantanaP", "from_user_id": 417053843, "from_user_id_str": "417053843", "from_user_name": "Darwin", "geo": null, "id": 147734811149209600, "id_str": "147734811149209602", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1648469054/MOTO_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648469054/MOTO_normal.jpg", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "RT @DiegoUG: Simple chat for Node.js - http://t.co/MQclglT0 http://t.co/jEm2JPFn - http://t.co/OuTo2DTP #mejorandojs (CC @cvander)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:47:35 +0000", "from_user": "chrismatthieu", "from_user_id": 13604142, "from_user_id_str": "13604142", "from_user_name": "Chris Matthieu", "geo": null, "id": 147734633151332350, "id_str": "147734633151332352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/918916153/SuperChrisSmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/918916153/SuperChrisSmall_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Growing Up http://t.co/PD4JktSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:47:01 +0000", "from_user": "aravindavk", "from_user_id": 16153974, "from_user_id_str": "16153974", "from_user_name": "Aravinda", "geo": null, "id": 147734486895964160, "id_str": "147734486895964160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1492004681/DSC_0042_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1492004681/DSC_0042_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @chrismatthieu: w00t! RT @Nodester: New websites! First nodejs.org and now nodester.com", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:44:28 +0000", "from_user": "NeCkEr", "from_user_id": 14176673, "from_user_id_str": "14176673", "from_user_name": "NeCkEr", "geo": null, "id": 147733845586870270, "id_str": "147733845586870273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1656954487/imgSnow_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656954487/imgSnow_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Nodester: New websites! First nodejs.org and now nodester.com", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:38:01 +0000", "from_user": "GaruHenr", "from_user_id": 112743376, "from_user_id_str": "112743376", "from_user_name": "Bruno Henrique(Garu)", "geo": null, "id": 147732222248615940, "id_str": "147732222248615936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1551147469/225472_1760698895957_1193588234_31583357_7276793_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1551147469/225472_1760698895957_1193588234_31583357_7276793_n_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Growing Up http://t.co/PD4JktSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:37:13 +0000", "from_user": "errumm", "from_user_id": 42130293, "from_user_id_str": "42130293", "from_user_name": "Lewis Barclay", "geo": null, "id": 147732021073018880, "id_str": "147732021073018880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1607383649/selfportrait001_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607383649/selfportrait001_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Growing Up http://t.co/PD4JktSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:29:03 +0000", "from_user": "jezell", "from_user_id": 15152659, "from_user_id_str": "15152659", "from_user_name": "Jesse Ezell", "geo": null, "id": 147729968779116540, "id_str": "147729968779116544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/57444273/Twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/57444273/Twitter_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Growing Up http://t.co/PD4JktSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:28:37 +0000", "from_user": "OneEyedBum", "from_user_id": 125083073, "from_user_id_str": "125083073", "from_user_name": "Bruno Skvorc", "geo": null, "id": 147729857579728900, "id_str": "147729857579728896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/772964094/oeb1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/772964094/oeb1_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Growing Up http://t.co/PD4JktSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:28:05 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 147729724595118080, "id_str": "147729724595118080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @JavaScriptMN: Get out! http://t.co/NyEuTIYv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:28:04 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147729717909401600, "id_str": "147729717909401601", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Get out! http://t.co/Faifq6fG http://t.co/shnut5tQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:22:31 +0000", "from_user": "JavaScriptMN", "from_user_id": 342644565, "from_user_id_str": "342644565", "from_user_name": "JavaScriptMN", "geo": null, "id": 147728323307511800, "id_str": "147728323307511808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1461917971/jsmn_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1461917971/jsmn_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Get out! http://t.co/NyEuTIYv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:22:09 +0000", "from_user": "Xogost", "from_user_id": 126010186, "from_user_id_str": "126010186", "from_user_name": "Juan Camilo Martinez", "geo": null, "id": 147728229556424700, "id_str": "147728229556424704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699288836/akane_y_yop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699288836/akane_y_yop_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @papachan: node.js v0.6.6 released! http://t.co/skxwZYN5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:21:55 +0000", "from_user": "DiegoUG", "from_user_id": 54656041, "from_user_id_str": "54656041", "from_user_name": "Diego Uribe Gamez", "geo": null, "id": 147728170215424000, "id_str": "147728170215424000", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702546033/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702546033/avatar_normal.jpg", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "#mejorandojs RT @papachan: node.js v0.6.6 released! http://t.co/ygG5khdG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:21:54 +0000", "from_user": "habr7d", "from_user_id": 267450366, "from_user_id_str": "267450366", "from_user_name": "habr7d", "geo": null, "id": 147728167665283070, "id_str": "147728167665283072", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1276280148/habr_bigger_reasonably_small_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1276280148/habr_bigger_reasonably_small_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Node.JS \\u2192 \\u0417\\u0430\\u043F\\u0443\\u0441\\u043A\\u0430\\u0435\\u043C jQuery \\u043D\\u0430 \\u0434\\u0432\\u0438\\u0436\\u043A\\u0435 Node.js \\u0432\\u043C\\u0435\\u0441\\u0442\\u043E \\u0431\\u0440\\u0430\\u0443\\u0437\\u0435\\u0440\\u0430 http://t.co/d8DKr1GW #habr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:21:49 +0000", "from_user": "JoseTorrico", "from_user_id": 173299667, "from_user_id_str": "173299667", "from_user_name": "Jos\\u00E9 Miguel Torrico", "geo": null, "id": 147728145246715900, "id_str": "147728145246715904", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680390805/IMG00126-20100611-0905_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680390805/IMG00126-20100611-0905_normal.jpg", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "RT @DiegoUG: Simple chat for Node.js - http://t.co/MQclglT0 http://t.co/jEm2JPFn - http://t.co/OuTo2DTP #mejorandojs (CC @cvander)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:21:05 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147727962106626050, "id_str": "147727962106626049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Growing Up http://t.co/PD4JktSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:20:54 +0000", "from_user": "papachan", "from_user_id": 9147112, "from_user_id_str": "9147112", "from_user_name": "dan loaiza", "geo": null, "id": 147727914912329730, "id_str": "147727914912329728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1124261113/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1124261113/twitter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "node.js v0.6.6 released! http://t.co/skxwZYN5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:18:27 +0000", "from_user": "surfeurX", "from_user_id": 32346608, "from_user_id_str": "32346608", "from_user_name": "Chouki Amine", "geo": null, "id": 147727300409040900, "id_str": "147727300409040896", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/455598471/8418_1213011442029_1131085804_669771_1459919_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/455598471/8418_1213011442029_1131085804_669771_1459919_n_normal.jpg", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "cloud9 ide vimified http://t.co/Iz8LxqzE #nodejs #cloud9 #vim", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:12:43 +0000", "from_user": "jfroma", "from_user_id": 26559849, "from_user_id_str": "26559849", "from_user_name": "Jos\\u00E9 F. Romaniello", "geo": null, "id": 147725858390552580, "id_str": "147725858390552577", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1152169901/avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1152169901/avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jrdothoughts: @Tellago & @tellagostudios technology Dojo today: NodeJS, Hadoop, Solr, MongoDB in Windows Azure", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:07:07 +0000", "from_user": "archlinuxbot", "from_user_id": 281470434, "from_user_id_str": "281470434", "from_user_name": "Arch Linux Bot", "geo": null, "id": 147724449054081020, "id_str": "147724449054081024", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1310040433/arch_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1310040433/arch_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "nodejs 0.6.6-2 i686 http://t.co/niShpzdH #ArchLinux", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:07:07 +0000", "from_user": "ArchUpdates", "from_user_id": 287085434, "from_user_id_str": "287085434", "from_user_name": "ArchLinux Updates", "geo": null, "id": 147724448018079740, "id_str": "147724448018079745", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1323447710/arch_reasonably_small_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1323447710/arch_reasonably_small_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "nodejs 0.6.6-2 i686 http://t.co/nwGsRgF5 #Archlinux", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:05:12 +0000", "from_user": "chrismatthieu", "from_user_id": 13604142, "from_user_id_str": "13604142", "from_user_name": "Chris Matthieu", "geo": null, "id": 147723966503591940, "id_str": "147723966503591936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/918916153/SuperChrisSmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/918916153/SuperChrisSmall_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "w00t! RT @Nodester: New websites! First nodejs.org and now nodester.com", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:05:05 +0000", "from_user": "freakyfractal", "from_user_id": 120607945, "from_user_id_str": "120607945", "from_user_name": "freakyfractal", "geo": null, "id": 147723934886928400, "id_str": "147723934886928387", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1258082617/AIbEiAIAAABDCNWFm6WlpNPCXiILdmNhcmRfcGhvdG8qKDU5ZWQ4YjVhMDQ1OTVkZDZiMTA0MmQzMThhYWEwNjA1ZTliZDEwNmIwAVVer_kaEZb3D7oC3UHv6a_VSntv_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1258082617/AIbEiAIAAABDCNWFm6WlpNPCXiILdmNhcmRfcGhvdG8qKDU5ZWQ4YjVhMDQ1OTVkZDZiMTA0MmQzMThhYWEwNjA1ZTliZDEwNmIwAVVer_kaEZb3D7oC3UHv6a_VSntv_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "Open Source Node.JS PaaS @Nodester gets new site design: http://t.co/f4SaL8vh #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:04:56 +0000", "from_user": "Nodester", "from_user_id": 240751001, "from_user_id_str": "240751001", "from_user_name": "Nodester", "geo": null, "id": 147723898883018750, "id_str": "147723898883018752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "New websites! First nodejs.org and now nodester.com", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:04:21 +0000", "from_user": "ChristianMania", "from_user_id": 95129685, "from_user_id_str": "95129685", "from_user_name": "Christian Luna", "geo": null, "id": 147723752828977150, "id_str": "147723752828977153", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/562672798/Christianmania_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/562672798/Christianmania_normal.gif", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "RT @DiegoUG: Simple chat for Node.js - http://t.co/MQclglT0 http://t.co/jEm2JPFn - http://t.co/OuTo2DTP #mejorandojs (CC @cvander)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:03:06 +0000", "from_user": "zheref", "from_user_id": 186562635, "from_user_id_str": "186562635", "from_user_name": "Sergio Daniel Lozano", "geo": null, "id": 147723436863660030, "id_str": "147723436863660033", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1625311252/avatarNeoGenerationTwitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1625311252/avatarNeoGenerationTwitter_normal.png", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "RT @DiegoUG: Simple chat for Node.js - http://t.co/MQclglT0 http://t.co/jEm2JPFn - http://t.co/OuTo2DTP #mejorandojs (CC @cvander)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:02:58 +0000", "from_user": "cif", "from_user_id": 11799242, "from_user_id_str": "11799242", "from_user_name": "cif", "geo": null, "id": 147723403883847680, "id_str": "147723403883847680", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1136680961/fotoProjects_Cartoonizer_8_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1136680961/fotoProjects_Cartoonizer_8_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Para procesar web hooks: hook.io - the node.js web hook platform - http://t.co/htQ8Vfmv #nodejs #hook.io", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:00:50 +0000", "from_user": "monkeyonahill", "from_user_id": 55155032, "from_user_id_str": "55155032", "from_user_name": "James Tryand", "geo": null, "id": 147722867159744500, "id_str": "147722867159744512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/354233697/moah2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/354233697/moah2_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @dfinke: Manage #Nodejs applications hosted in Windows #Azure using a set of new #PowerShell cmdlets http://t.co/7GzIAu31", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:59:28 +0000", "from_user": "velvetflair", "from_user_id": 14651376, "from_user_id_str": "14651376", "from_user_name": "Shahriar Hyder", "geo": null, "id": 147722521901404160, "id_str": "147722521901404160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1016584964/4487ddc4-d6c0-48ad-aad5-fd663766182b_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1016584964/4487ddc4-d6c0-48ad-aad5-fd663766182b_normal.png", "source": "<a href="http://tweetmeme.com" rel="nofollow">TweetMeme</a>", "text": "RT @pkrumins Node.js modules you should know about: request - good coders code, great reuse http://t.co/5XRiQrpi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:54:44 +0000", "from_user": "DiegoUG", "from_user_id": 54656041, "from_user_id_str": "54656041", "from_user_name": "Diego Uribe Gamez", "geo": null, "id": 147721332979798000, "id_str": "147721332979798017", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702546033/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702546033/avatar_normal.jpg", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "Simple chat for Node.js - http://t.co/MQclglT0 http://t.co/jEm2JPFn - http://t.co/OuTo2DTP #mejorandojs (CC @cvander)", "to_user": "cvander", "to_user_id": 817789, "to_user_id_str": "817789", "to_user_name": "Christian Van Der H", "in_reply_to_status_id": 147717802369875970, "in_reply_to_status_id_str": "147717802369875968"}, +{"created_at": "Fri, 16 Dec 2011 16:48:52 +0000", "from_user": "dfinke", "from_user_id": 7476192, "from_user_id_str": "7476192", "from_user_name": "doug finke", "geo": null, "id": 147719854835765250, "id_str": "147719854835765249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1250974814/articWolf_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1250974814/articWolf_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Manage #Nodejs applications hosted in Windows #Azure using a set of new #PowerShell cmdlets http://t.co/7GzIAu31", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:44:53 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 147718850304155650, "id_str": "147718850304155648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @Leo_lopezg NodeJsCommunity: Benchmarking Node.js - basic performance tests against Apache + PHP http://t.co/07HzYJSi http://t...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:44:52 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 147718847393316860, "id_str": "147718847393316864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @ronkorving @ryah when is 0.7 going to end up on http://t.co/22odtuKE?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:44:51 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 147718842943152130, "id_str": "147718842943152129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @andyyu0920 NodeJsCommunity: Node.js tools and resources #nodejs http://t.co/BIOhAKmv http://t.co/z3cWtKPU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:43:59 +0000", "from_user": "vicrosoft", "from_user_id": 276769968, "from_user_id_str": "276769968", "from_user_name": "Victor H. Zevallos", "geo": null, "id": 147718625422356480, "id_str": "147718625422356480", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1512432014/E1yMU9zE_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1512432014/E1yMU9zE_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@cvander cuando cuelgan el video de NodeJs. ... .es un tema muy importante ojala se hable mas ...saludos desde Peru!", "to_user": "cvander", "to_user_id": 817789, "to_user_id_str": "817789", "to_user_name": "Christian Van Der H", "in_reply_to_status_id": 147718121078263800, "in_reply_to_status_id_str": "147718121078263808"}, +{"created_at": "Fri, 16 Dec 2011 16:40:55 +0000", "from_user": "8khan", "from_user_id": 70708756, "from_user_id_str": "70708756", "from_user_name": "khan-oke \\u2713", "geo": null, "id": 147717851862671360, "id_str": "147717851862671361", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1679849752/twrt_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679849752/twrt_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "RT @cvander: Aprendiendo de los m\\u00F3dulos de node.js. http://t.co/d7yl7vwy #mejorandojs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Fri, 16 Dec 2011 16:39:29 +0000", "from_user": "cvander", "from_user_id": 817789, "from_user_id_str": "817789", "from_user_name": "Christian Van Der H", "geo": null, "id": 147717494000451600, "id_str": "147717494000451585", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1559412162/cevy_lengua_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1559412162/cevy_lengua_normal.png", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "Aprendiendo de los m\\u00F3dulos de node.js. http://t.co/d7yl7vwy #mejorandojs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:38:17 +0000", "from_user": "Leo_lopezg", "from_user_id": 123842058, "from_user_id_str": "123842058", "from_user_name": "leandro lopez", "geo": null, "id": 147717193205940220, "id_str": "147717193205940224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1232561117/173433_1073825249_4161880_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1232561117/173433_1073825249_4161880_n_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Benchmarking Node.js - basic performance tests against Apache + PHP http://t.co/PMJCJmhs http://t.co/UriwafSL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:31:53 +0000", "from_user": "jrdothoughts", "from_user_id": 375678020, "from_user_id_str": "375678020", "from_user_name": "Jesus Rodriguez", "geo": null, "id": 147715579166457860, "id_str": "147715579166457856", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1548567084/JR_Headshot_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1548567084/JR_Headshot_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@Tellago & @tellagostudios technology Dojo today: NodeJS, Hadoop, Solr, MongoDB in Windows Azure", "to_user": "Tellago", "to_user_id": 56425625, "to_user_id_str": "56425625", "to_user_name": "Tellago"}, +{"created_at": "Fri, 16 Dec 2011 16:27:10 +0000", "from_user": "archlinuxbot", "from_user_id": 281470434, "from_user_id_str": "281470434", "from_user_name": "Arch Linux Bot", "geo": null, "id": 147714394451742720, "id_str": "147714394451742721", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1310040433/arch_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1310040433/arch_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "nodejs 0.6.6-1 x86_64 http://t.co/NoJ0PZdQ #ArchLinux", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:27:09 +0000", "from_user": "archlinuxbot", "from_user_id": 281470434, "from_user_id_str": "281470434", "from_user_name": "Arch Linux Bot", "geo": null, "id": 147714391268274180, "id_str": "147714391268274176", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1310040433/arch_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1310040433/arch_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "nodejs 0.6.6-1 i686 http://t.co/5OCToHCa #ArchLinux", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:27:08 +0000", "from_user": "ArchUpdates", "from_user_id": 287085434, "from_user_id_str": "287085434", "from_user_name": "ArchLinux Updates", "geo": null, "id": 147714386843279360, "id_str": "147714386843279360", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1323447710/arch_reasonably_small_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1323447710/arch_reasonably_small_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "nodejs 0.6.6-1 i686 http://t.co/ToDerCKS #Archlinux", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:26:46 +0000", "from_user": "ar3_me", "from_user_id": 16725749, "from_user_id_str": "16725749", "from_user_name": "Andrew Robinson III", "geo": null, "id": 147714291955531780, "id_str": "147714291955531777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/388378070/Profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/388378070/Profile_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@colinmathews I remember you saying to me that you would seriously consider rewriting your entire app in @nodejs...back then I just laughed.", "to_user": "colinmathews", "to_user_id": 17295221, "to_user_id_str": "17295221", "to_user_name": "Colin Mathews"}, +{"created_at": "Fri, 16 Dec 2011 16:16:45 +0000", "from_user": "twitinsin", "from_user_id": 61176621, "from_user_id_str": "61176621", "from_user_name": "Jonathan Buchanan", "geo": null, "id": 147711773624111100, "id_str": "147711773624111104", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1357049977/adventurer_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1357049977/adventurer_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Wee dirty server. mate: http://t.co/qAerxPQy #nodejs #DOMBuilder", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:14:36 +0000", "from_user": "nuHrep", "from_user_id": 233952060, "from_user_id_str": "233952060", "from_user_name": "\\u0412\\u0435\\u0441\\u0435\\u043B\\u044B\\u0439 \\u0411\\u0438\\u043B", "geo": null, "id": 147711231346741250, "id_str": "147711231346741248", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1206846511/astronaut_2_a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1206846511/astronaut_2_a_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "#habr Node.JS / \\u0417\\u0430\\u043F\\u0443\\u0441\\u043A\\u0430\\u0435\\u043C jQuery \\u043D\\u0430 \\u0434\\u0432\\u0438\\u0436\\u043A\\u0435 Node.js \\u0432\\u043C\\u0435\\u0441\\u0442\\u043E \\u0431\\u0440\\u0430\\u0443\\u0437\\u0435\\u0440\\u0430 http://t.co/NWggGLAw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:13:03 +0000", "from_user": "ronkorving", "from_user_id": 97658542, "from_user_id_str": "97658542", "from_user_name": "Ron Korving", "geo": null, "id": 147710841725259780, "id_str": "147710841725259777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1590707510/me3-big_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1590707510/me3-big_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@ryah when is 0.7 going to end up on blog.nodejs.org?", "to_user": "ryah", "to_user_id": 18975861, "to_user_id_str": "18975861", "to_user_name": "Ryan Dahl"}, +{"created_at": "Fri, 16 Dec 2011 16:12:34 +0000", "from_user": "andyyu0920", "from_user_id": 13848382, "from_user_id_str": "13848382", "from_user_name": "AndyYou(ZongYanYou)", "geo": null, "id": 147710719062839300, "id_str": "147710719062839296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1547771401/2011-09-12_11.08.44_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1547771401/2011-09-12_11.08.44_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Node.js tools and resources #nodejs http://t.co/zX6zEqz7 http://t.co/yKJMrXyk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:00:29 +0000", "from_user": "Elving", "from_user_id": 16748083, "from_user_id_str": "16748083", "from_user_name": "Elving Rodriguez\\n", "geo": null, "id": 147707679069044740, "id_str": "147707679069044736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1250861290/8-BITAVAR_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1250861290/8-BITAVAR_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@NodeJsCommunity: Node.js tools and resources #nodejs http://t.co/l4lD61yV http://t.co/pPH6bWcK\\u201D #osom", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:59:17 +0000", "from_user": "kimdogfoot", "from_user_id": 21736041, "from_user_id_str": "21736041", "from_user_name": "\\uAE40\\uAC1C\\uBC1C", "geo": null, "id": 147707377309843460, "id_str": "147707377309843457", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1645518311/profle00_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645518311/profle00_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Node.js tools and resources #nodejs http://t.co/zX6zEqz7 http://t.co/yKJMrXyk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:59:06 +0000", "from_user": "xthr3mx", "from_user_id": 270097469, "from_user_id_str": "270097469", "from_user_name": "xthr3mx", "geo": null, "id": 147707330916646900, "id_str": "147707330916646912", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1349701760/other_side3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1349701760/other_side3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@cvander el fin de semana tendre tiempo, que te parece si te envio algo utilizando nodejs+express+stylus+jade+...?", "to_user": "cvander", "to_user_id": 817789, "to_user_id_str": "817789", "to_user_name": "Christian Van Der H"}, +{"created_at": "Fri, 16 Dec 2011 15:56:55 +0000", "from_user": "mwjacks0n", "from_user_id": 83657910, "from_user_id_str": "83657910", "from_user_name": "Matt Jackson", "geo": null, "id": 147706781538320400, "id_str": "147706781538320384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/484767477/South_Park_Avatar1-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/484767477/South_Park_Avatar1-1_normal.jpg", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "@raoulmillais extra shiny :) http://t.co/QH5L8pWD", "to_user": "raoulmillais", "to_user_id": 29564713, "to_user_id_str": "29564713", "to_user_name": "Raoul Millais", "in_reply_to_status_id": 147703183987322880, "in_reply_to_status_id_str": "147703183987322880"}, +{"created_at": "Fri, 16 Dec 2011 15:54:46 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 147706238233350140, "id_str": "147706238233350144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://plusbounce.com/" rel="nofollow">PlusBounce</a>", "text": "RT @seyhunak: Node.js tools and resources #nodejs http://t.co/7QQucUal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:54:44 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147706230876545020, "id_str": "147706230876545024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Node.js tools and resources #nodejs http://t.co/zX6zEqz7 http://t.co/yKJMrXyk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:54:05 +0000", "from_user": "seyhunak", "from_user_id": 21591510, "from_user_id_str": "21591510", "from_user_name": "Seyhun AKY\\u00DCREK", "geo": null, "id": 147706068930269200, "id_str": "147706068930269184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1437612555/amatorka_big_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1437612555/amatorka_big_normal.jpg", "source": "<a href="http://plusbounce.com/" rel="nofollow">PlusBounce</a>", "text": "Node.js tools and resources #nodejs http://t.co/7QQucUal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:52:05 +0000", "from_user": "lacosox", "from_user_id": 131728860, "from_user_id_str": "131728860", "from_user_name": "Gustavo Lacoste", "geo": null, "id": 147705563894132740, "id_str": "147705563894132736", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1596276820/275956_731154144_133042306_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596276820/275956_731154144_133042306_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@freddier grabaron ayer el streaming de nodeJS?", "to_user": "freddier", "to_user_id": 16742912, "to_user_id_str": "16742912", "to_user_name": "John Freddy Vega"}, +{"created_at": "Fri, 16 Dec 2011 15:47:26 +0000", "from_user": "emerleite", "from_user_id": 16782712, "from_user_id_str": "16782712", "from_user_name": "Emerson Macedo", "geo": null, "id": 147704394765434880, "id_str": "147704394765434880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1080818173/e4e27ec8-6e67-4316-91c8-3401c72e5ea0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1080818173/e4e27ec8-6e67-4316-91c8-3401c72e5ea0_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: For those wondering, the Rackspace Cloud Monitoring product is mostly written in #Nodejs (Sign up for the private beta!)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:45:43 +0000", "from_user": "estilocss", "from_user_id": 148763456, "from_user_id_str": "148763456", "from_user_name": "Jorge", "geo": null, "id": 147703963855224830, "id_str": "147703963855224832", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1275906340/Sin_t_tulo-1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1275906340/Sin_t_tulo-1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "por fin aprend\\u00ED a usar nodejs gracias @mejorandola \\u00BFpor cierto me podriais explicar para que sirve nodester? @cvander @freddier @neojp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:43:40 +0000", "from_user": "twitinsin", "from_user_id": 61176621, "from_user_id_str": "61176621", "from_user_name": "Jonathan Buchanan", "geo": null, "id": 147703446584299520, "id_str": "147703446584299520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1357049977/adventurer_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1357049977/adventurer_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "#nodejs is awesome. Quick and dirty HTTP server to let the business kick off a temporarily-needed Selenium script on my machine.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:42:19 +0000", "from_user": "majimenezp", "from_user_id": 66774253, "from_user_id_str": "66774253", "from_user_name": "Miguel Jimenez", "geo": +{"coordinates": [18.6561,-91.8283], "type": "Point"}, "id": 147703107642597380, "id_str": "147703107642597376", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1628985965/canti_from_flcl_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628985965/canti_from_flcl_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@proserx mas que diferencias es ver que caracteristicas te acomodan,en lo personal prefiero leng. curly brace como nodejs(jsscript) o C#", "to_user": "proserx", "to_user_id": 202643428, "to_user_id_str": "202643428", "to_user_name": "andres vidal", "in_reply_to_status_id": 147700994107645950, "in_reply_to_status_id_str": "147700994107645952"}, +{"created_at": "Fri, 16 Dec 2011 15:38:09 +0000", "from_user": "rkmathi", "from_user_id": 86049415, "from_user_id_str": "86049415", "from_user_name": "\\u307E\\u3066\\u3043\\u30FC\\u3004", "geo": null, "id": 147702056487092220, "id_str": "147702056487092226", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680934016/miku_gentoo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680934016/miku_gentoo_normal.png", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "\\u3042\\u308C\\u3001Gentoo\\u306Enodejs\\u304C\\u3044\\u3064\\u306E\\u9593\\u306B\\u304B\\u3064\\u304B\\u3048\\u308B\\u3088\\u3046\\u306B\\u306A\\u3063\\u3068\\u308B {YF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:31:33 +0000", "from_user": "majimenezp", "from_user_id": 66774253, "from_user_id_str": "66774253", "from_user_name": "Miguel Jimenez", "geo": +{"coordinates": [18.6612,-91.8032], "type": "Point"}, "id": 147700397333676030, "id_str": "147700397333676032", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1628985965/canti_from_flcl_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628985965/canti_from_flcl_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@proserx umm pero que quieres hacer?apps web,de escritorio? Para web esta ruby on rails,python o nodeJS en ese orden", "to_user": "proserx", "to_user_id": 202643428, "to_user_id_str": "202643428", "to_user_name": "andres vidal", "in_reply_to_status_id": 147698121206530050, "in_reply_to_status_id_str": "147698121206530049"}, +{"created_at": "Fri, 16 Dec 2011 15:31:10 +0000", "from_user": "alosman24", "from_user_id": 25559423, "from_user_id_str": "25559423", "from_user_name": "Al Osman", "geo": null, "id": 147700300650774530, "id_str": "147700300650774529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1604897966/215748_10150149185598046_506638045_6296845_5950591_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1604897966/215748_10150149185598046_506638045_6296845_5950591_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "@NodeJsCommunity Node.js modules you should know about: request - good coders code, great reuse http://t.co/799pGHWD", "to_user": "NodeJsCommunity", "to_user_id": 402824193, "to_user_id_str": "402824193", "to_user_name": "NodeJS Community"}, +{"created_at": "Fri, 16 Dec 2011 15:25:10 +0000", "from_user": "emerleite", "from_user_id": 16782712, "from_user_id_str": "16782712", "from_user_name": "Emerson Macedo", "geo": null, "id": 147698790743281660, "id_str": "147698790743281664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1080818173/e4e27ec8-6e67-4316-91c8-3401c72e5ea0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1080818173/e4e27ec8-6e67-4316-91c8-3401c72e5ea0_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @3rdEden: #nodejs 0.6.6 has been released http://t.co/ipyxqLHs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:23:35 +0000", "from_user": "6matts6", "from_user_id": 60791885, "from_user_id_str": "60791885", "from_user_name": "Matias Sticchi", "geo": null, "id": 147698392196317200, "id_str": "147698392196317184", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/335454843/tronco_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/335454843/tronco_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Nodejs puede conectar a la misma BD con la que trabajo con php, por ejemplo a mysql? @cvander #mejorandola", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:23:25 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 147698348474900480, "id_str": "147698348474900480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @sandeepmeher: Benchmarking Node.js - basic performance tests against Apache + PHP http://t.co/Kgg90jRE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:23:22 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147698339004153860, "id_str": "147698339004153856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Benchmarking Node.js - basic performance tests against Apache + PHP http://t.co/PMJCJmhs http://t.co/UriwafSL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:19:42 +0000", "from_user": "mickeyyawn", "from_user_id": 57068454, "from_user_id_str": "57068454", "from_user_name": "Mickey Yawn", "geo": null, "id": 147697414080446460, "id_str": "147697414080446467", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1121085819/mick_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1121085819/mick_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "also interesting was that #nodejs was \"trending\". oh, I think it's more than a trend at this point!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:18:28 +0000", "from_user": "mikehenke", "from_user_id": 17878766, "from_user_id_str": "17878766", "from_user_name": "mikehenke", "geo": null, "id": 147697104565968900, "id_str": "147697104565968896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1603204237/grav_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1603204237/grav_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @bdcravens: finally writing some of my first front-end #nodejs code", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:17:57 +0000", "from_user": "victormalyy", "from_user_id": 102333434, "from_user_id_str": "102333434", "from_user_name": "Victor Malyy", "geo": null, "id": 147696976492888060, "id_str": "147696976492888064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/613996746/IMG_6837_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/613996746/IMG_6837_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "No just brains RT @lc0d3r: Is anyone going to use #nodejs at #doumixer?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:17:00 +0000", "from_user": "helsinkijs", "from_user_id": 427202134, "from_user_id_str": "427202134", "from_user_name": "HelsinkiJS", "geo": null, "id": 147696735676932100, "id_str": "147696735676932096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670980593/js_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670980593/js_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @EsaMatti: We just released the code of my first project at @opinsys http://t.co/wTaaVIAs #nodejs #html5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:16:42 +0000", "from_user": "odoenet", "from_user_id": 84098365, "from_user_id_str": "84098365", "from_user_name": "Rene R.", "geo": null, "id": 147696659403517950, "id_str": "147696659403517953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1269097454/gr_sneakpeak_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1269097454/gr_sneakpeak_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "RT @elijahmanor: \"Intro to Node.JS for .NET Developers\" by @aaronontheweb #javascript http://t.co/fvwMgwnv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:13:29 +0000", "from_user": "sandeepmeher", "from_user_id": 40974713, "from_user_id_str": "40974713", "from_user_name": "Sandeep Meher", "geo": null, "id": 147695849743454200, "id_str": "147695849743454208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/378129336/SRM2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/378129336/SRM2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Benchmarking Node.js - basic performance tests against Apache + PHP http://t.co/Kgg90jRE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:12:08 +0000", "from_user": "ringspun", "from_user_id": 17811371, "from_user_id_str": "17811371", "from_user_name": "DH", "geo": null, "id": 147695509358919680, "id_str": "147695509358919680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1369755337/eightbit-b03b47ae-07ed-4c71-866d-124e4205cc95_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1369755337/eightbit-b03b47ae-07ed-4c71-866d-124e4205cc95_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@jtclancey playing w/ GoogleMusic+NodeJs. Authd, got playlist etc - stuck on getting audio stream given a track ID. Any tips appreciatd. DM?", "to_user": "jtclancey", "to_user_id": 74326551, "to_user_id_str": "74326551", "to_user_name": "James Clancey", "in_reply_to_status_id": 147692230088462340, "in_reply_to_status_id_str": "147692230088462336"}, +{"created_at": "Fri, 16 Dec 2011 15:03:53 +0000", "from_user": "jonbros", "from_user_id": 14322420, "from_user_id_str": "14322420", "from_user_name": "Henning Kropp", "geo": null, "id": 147693436433207300, "id_str": "147693436433207296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1458406783/PC270242_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1458406783/PC270242_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Node.js Developer Center for @WindowsAzure http://t.co/qZ11Vyrh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:03:27 +0000", "from_user": "alessioalex", "from_user_id": 159135821, "from_user_id_str": "159135821", "from_user_name": "alessio alex", "geo": null, "id": 147693325489668100, "id_str": "147693325489668097", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1020302694/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1020302694/avatar_normal.jpg", "source": "<a href="http://proxlet.com" rel="nofollow">Proxlet</a>", "text": "node-growl - growl unobtrusive notification system for #nodejs by @tjholowaychuk http://t.co/RZgwA99y", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:02:14 +0000", "from_user": "ZiTAL", "from_user_id": 35194560, "from_user_id_str": "35194560", "from_user_name": "ZiTAL", "geo": null, "id": 147693020463104000, "id_str": "147693020463104000", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1615728104/IMG_8549_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615728104/IMG_8549_normal.JPG", "source": "<a href="http://identi.ca" rel="nofollow">identica</a>", "text": "RT @Neustradamus: node.js 0.6.6 has been released ( #node #nodejs ) http://t.co/miQF0vlk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:00:38 +0000", "from_user": "squarism", "from_user_id": 4112941, "from_user_id_str": "4112941", "from_user_name": "Chris Dillon", "geo": null, "id": 147692616102838270, "id_str": "147692616102838272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1240746588/mug_3.1_box_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1240746588/mug_3.1_box_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@mattbuller Why nodejs? Because javascript can't write files and open sockets. :D", "to_user": "mattbuller", "to_user_id": 46192138, "to_user_id_str": "46192138", "to_user_name": "Matt Buller", "in_reply_to_status_id": 147610673579438080, "in_reply_to_status_id_str": "147610673579438081"}, +{"created_at": "Fri, 16 Dec 2011 15:00:10 +0000", "from_user": "FGRibreau", "from_user_id": 5719692, "from_user_id_str": "5719692", "from_user_name": "Fran\\u00E7ois-G. Ribreau", "geo": null, "id": 147692499958382600, "id_str": "147692499958382592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1117780106/2009_shooting_medium_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1117780106/2009_shooting_medium_normal.png", "source": "<a href="http://fgribreau.com" rel="nofollow">FG</a>", "text": "Require-all - An easy way to require all files within a directory. #NodeJS http://t.co/PqeaqTFi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:55:38 +0000", "from_user": "martinhaynes", "from_user_id": 17676034, "from_user_id_str": "17676034", "from_user_name": "Martin Haynes", "geo": null, "id": 147691359023796220, "id_str": "147691359023796224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1343239031/icon_flat_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1343239031/icon_flat_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "ohhh the new #NodeJS Site looks awesome..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:53:57 +0000", "from_user": "nodebiscut", "from_user_id": 410338433, "from_user_id_str": "410338433", "from_user_name": "nodebiscut", "geo": null, "id": 147690933796864000, "id_str": "147690933796864001", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1635738119/eightbit-7d092f1b-9a4f-44cc-879e-6b3d80e6079e_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635738119/eightbit-7d092f1b-9a4f-44cc-879e-6b3d80e6079e_normal.png", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "pixel-tracker, a simple pixel tracker for #nodejs - http://t.co/a9W4zfL5 /via analyticsmachine", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:53:31 +0000", "from_user": "silentroach", "from_user_id": 8736072, "from_user_id_str": "8736072", "from_user_name": "Igor Kalashnikov", "geo": null, "id": 147690825747402750, "id_str": "147690825747402752", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1161213330/1265377_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1161213330/1265377_normal.jpg", "source": "<a href="http://twicext.com" rel="nofollow">Twic Extension</a>", "text": "http://t.co/XSLti9Vp \\u041E\\u0433\\u043E, \\u043B\\u044E\\u0434\\u0438 \\u043F\\u043E\\u043B\\u044C\\u0437\\u0443\\u044E\\u0442 jQuery \\u0434\\u0430\\u0436\\u0435 \\u0432 Node.js. \\u042F \\u0441\\u0447\\u0438\\u0442\\u0430\\u044E, \\u044D\\u0442\\u043E \\u0443\\u0436\\u0435 \\u043F\\u043E\\u0441\\u043B\\u0435\\u0434\\u043D\\u044F\\u044F \\u0441\\u0442\\u0430\\u0434\\u0438\\u044F \\u0440\\u0430\\u043A\\u0430 \\u043C\\u043E\\u0437\\u0433\\u0430.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:51:02 +0000", "from_user": "tansuozmen", "from_user_id": 15806958, "from_user_id_str": "15806958", "from_user_name": "Tansu Ozmen", "geo": null, "id": 147690200775131140, "id_str": "147690200775131136", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/377031287/Tansu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/377031287/Tansu_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Intro to Node.JS for .NET Developers - http://t.co/OIHqfnlw #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:50:23 +0000", "from_user": "Ys3ayeDL", "from_user_id": 152264298, "from_user_id_str": "152264298", "from_user_name": "morita", "geo": null, "id": 147690037297946620, "id_str": "147690037297946624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://sproutsocial.com" rel="nofollow">Sprout Social</a>", "text": "RT @linuxfoundation: Top 10 OSS Projects of '11. http://t.co/FWeyc8TF Did your fave make the list? #nginx #jQuery #linux #nodejs #puppet...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:48:40 +0000", "from_user": "OfficeWriter", "from_user_id": 302228792, "from_user_id_str": "302228792", "from_user_name": "OfficeWriter", "geo": null, "id": 147689605158797300, "id_str": "147689605158797313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1486919962/DSC_1540_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1486919962/DSC_1540_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Windows #Azure SDK for #Nodejs lets you build, deploy and manage Node apps in Azure using #PowerShell cmdlets! http://t.co/R43Xx0CY @gblock", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:48:33 +0000", "from_user": "hacksparrow", "from_user_id": 45615658, "from_user_id_str": "45615658", "from_user_name": "Hack Sparrow", "geo": null, "id": 147689575794475000, "id_str": "147689575794475009", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/721961044/jack_sparrow_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/721961044/jack_sparrow_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Node.js + Amazon S3 How To - http://t.co/oQA1Xc7e #nodejs #amazons3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:48:26 +0000", "from_user": "bergie", "from_user_id": 639003, "from_user_id_str": "639003", "from_user_name": "Henri Bergius", "geo": null, "id": 147689547763957760, "id_str": "147689547763957760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1170653292/bergie_haydarpasa2_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1170653292/bergie_haydarpasa2_small_normal.jpg", "source": "<a href="http://swipe.nokia.com/" rel="nofollow">Tweet from Nokia N9</a>", "text": "spent the day with #NodeJS on #Azure. Works well but needs Windows to dev and is poorly documented", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:44:48 +0000", "from_user": "ClaudeCK", "from_user_id": 25229814, "from_user_id_str": "25229814", "from_user_name": "John Claude", "geo": null, "id": 147688631799259140, "id_str": "147688631799259136", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u4E0B\\u5348\\u7528nodejs\\u505A\\u4E86\\u4E00\\u4E9Bapache logs\\u7684\\u5206\\u6790\\u3002\\u867D\\u7136node\\u6700\\u8FD1\\u88AB\\u7092\\u5F97\\u5F88\\u70ED\\uFF0C\\u4F46\\u662F\\u90A3\\u79CD\\u51E0\\u4E4E\\u5168\\u90E8\\u5F02\\u6B65\\u8C03\\u7528\\u7684\\u4EE3\\u7801\\u771F\\u7684\\u633A\\u6076\\u5FC3\\u7684\\u3002\\u5199\\u5F97\\u4E0D\\u597D\\u5C31\\u5BB9\\u6613\\u62EC\\u53F7\\u5957\\u62EC\\u53F7\\uFF0C\\u65E0\\u7A77\\u5D4C\\u5957{{{{T_T}}}}", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:42:53 +0000", "from_user": "Neustradamus", "from_user_id": 437333, "from_user_id_str": "437333", "from_user_name": "Neustradamus", "geo": null, "id": 147688151081689100, "id_str": "147688151081689088", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1493435214/Penguin_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1493435214/Penguin_normal.jpg", "source": "<a href="http://identi.ca" rel="nofollow">identica</a>", "text": "node.js 0.6.6 has been released ( #node #nodejs ) http://t.co/miQF0vlk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:40:16 +0000", "from_user": "sother", "from_user_id": 52273515, "from_user_id_str": "52273515", "from_user_name": "Luciano Sother", "geo": null, "id": 147687490277482500, "id_str": "147687490277482497", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1463500633/sother_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1463500633/sother_normal.jpg", "source": "<a href="http://www.twimbow.com" rel="nofollow">Twimbow</a>", "text": "Novo site do node.js http://t.co/WnEg0prk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:35:57 +0000", "from_user": "Donny_V", "from_user_id": 14955023, "from_user_id_str": "14955023", "from_user_name": "Donny Velazquez", "geo": null, "id": 147686404913246200, "id_str": "147686404913246208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1409947078/ProfilePic_Twitter01_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1409947078/ProfilePic_Twitter01_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "RT @elijahmanor: \"Intro to Node.JS for .NET Developers\" by @aaronontheweb #javascript http://t.co/fvwMgwnv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:29:19 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 147684736628826100, "id_str": "147684736628826112", "iso_language_code": "eo", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "7digital-api (0.4.1): http://t.co/QEBywYgw Simple 7digital API wrapper for nodeJS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:21:16 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 147682709295202300, "id_str": "147682709295202304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://twitter-chrome.com" rel="nofollow">chrome-share</a>", "text": "RT @aslamnd: Node.js's Official Web Site Gets a Redesign http://t.co/qfdzMH76", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:21:14 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147682700717858800, "id_str": "147682700717858817", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Node.js's Official Web Site Gets a Redesign http://t.co/nDblbEcc http://t.co/SqGiKOk9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:19:30 +0000", "from_user": "erickpatrick", "from_user_id": 20648766, "from_user_id_str": "20648766", "from_user_name": "Erick Patrick", "geo": null, "id": 147682266854858750, "id_str": "147682266854858752", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1417555002/Avatar-Pedro-II_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1417555002/Avatar-Pedro-II_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Olha s\\u00F3, o site do Node.js foi repaginado! Ficou bem melhor assim, viu? http://t.co/4D9bTYTm #Nodejs #JavaScript", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:14:50 +0000", "from_user": "yrezgui", "from_user_id": 7168842, "from_user_id_str": "7168842", "from_user_name": "Yacine Rezgui", "geo": null, "id": 147681091485044740, "id_str": "147681091485044736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1020475002/hey_hey_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1020475002/hey_hey_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJSAtSO: NodeJS, Multi-FileWatcher, Socket.IO and interaction with the client http://t.co/NSl9L8Op", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:14:42 +0000", "from_user": "yrezgui", "from_user_id": 7168842, "from_user_id_str": "7168842", "from_user_name": "Yacine Rezgui", "geo": null, "id": 147681056865255420, "id_str": "147681056865255424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1020475002/hey_hey_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1020475002/hey_hey_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @brauliobo: \"Benchmarking Node.js - basic performance tests against Apache + PHP :: Change(b)log\" http://t.co/lRnYrSmv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:08:05 +0000", "from_user": "stevebennett", "from_user_id": 10097522, "from_user_id_str": "10097522", "from_user_name": "Steve Bennett", "geo": null, "id": 147679392884195330, "id_str": "147679392884195328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1060826367/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1060826367/profile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Playing with @nodejs to back up the contents of a @basho riak cluster. So far it's all very straightforward.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:56:59 +0000", "from_user": "squdgy", "from_user_id": 82207593, "from_user_id_str": "82207593", "from_user_name": "Maura Wilder", "geo": null, "id": 147676599255437300, "id_str": "147676599255437312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/875294733/kayak_avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/875294733/kayak_avatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Windows Azure SDK for Node.js http://t.co/H8kPZIXy - got to find time to try this", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:56:34 +0000", "from_user": "larrywanzer", "from_user_id": 31208028, "from_user_id_str": "31208028", "from_user_name": "Larry Wanzer", "geo": null, "id": 147676492107759600, "id_str": "147676492107759616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/186362352/pierce_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/186362352/pierce_normal.jpeg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Mock Testing CouchDB in node.js with Nock and TAP http://t.co/CRmlvxpZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:49:48 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 147674791359426560, "id_str": "147674791359426560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://proxlet.com" rel="nofollow">Proxlet</a>", "text": "RT @alessioalex: Open source multiplayer mahjong using HTML5, Node.js, Socket.io and MongoDB released: http://t.co/cYMGK0k1 #nodejs #mongodb #html5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:44:45 +0000", "from_user": "tw_top_1z2n8rp", "from_user_id": 373516096, "from_user_id_str": "373516096", "from_user_name": "Top Weapons for E...", "geo": null, "id": 147673519554166800, "id_str": "147673519554166785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @WindowsAzure: Did you miss the Learn #Windows #Azure event Tuesday? The video is up on @ch9 http://t.co/UL6e4F5k #SQLAzure #nodejs /via @SyntaxC4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:43:58 +0000", "from_user": "ricardomedinaa", "from_user_id": 47125047, "from_user_id_str": "47125047", "from_user_name": "Ricardo Medina", "geo": null, "id": 147673322816159740, "id_str": "147673322816159744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/406051149/Me_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/406051149/Me_normal.PNG", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @WindowsAzure: Did you miss the Learn #Windows #Azure event Tuesday? The video is up on @ch9 http://t.co/UL6e4F5k #SQLAzure #nodejs /via @SyntaxC4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:43:24 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 147673179404509200, "id_str": "147673179404509184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @rene_redsofa NodeJsCommunity: Open sourcing a realtime mahjong: http://t.co/MbqomYL6 #nodejs #socketio #html5 http://t.co/4wiMgMRS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:34:13 +0000", "from_user": "alessioalex", "from_user_id": 159135821, "from_user_id_str": "159135821", "from_user_name": "alessio alex", "geo": null, "id": 147670868066185200, "id_str": "147670868066185217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1020302694/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1020302694/avatar_normal.jpg", "source": "<a href="http://proxlet.com" rel="nofollow">Proxlet</a>", "text": "Open source multiplayer mahjong using HTML5, Node.js, Socket.io and MongoDB released: http://t.co/cYMGK0k1 #nodejs #mongodb #html5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:33:24 +0000", "from_user": "kgmyh", "from_user_id": 60057133, "from_user_id_str": "60057133", "from_user_name": "\\uAE40\\uC131\\uD658", "geo": null, "id": 147670662436241400, "id_str": "147670662436241408", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1587626245/040106_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587626245/040106_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"Video: CakePHP and Node.js\" http://t.co/eeW2Tju5 #CakePHP #PHP #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:33:13 +0000", "from_user": "devworx", "from_user_id": 362704376, "from_user_id_str": "362704376", "from_user_name": "devworx", "geo": null, "id": 147670616315670530, "id_str": "147670616315670528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668310461/sq-endmark4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668310461/sq-endmark4_normal.jpg", "source": "<a href="http://sproutsocial.com" rel="nofollow">Sprout Social</a>", "text": "RT @linuxfoundation: Top 10 OSS Projects of '11. http://t.co/FWeyc8TF Did your fave make the list? #nginx #jQuery #linux #nodejs #puppet...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:22:16 +0000", "from_user": "rene_redsofa", "from_user_id": 20738201, "from_user_id_str": "20738201", "from_user_name": "Rene Richard", "geo": null, "id": 147667860901212160, "id_str": "147667860901212160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1658797812/2e721bc8d8dcbfd6024187735df8e4e4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658797812/2e721bc8d8dcbfd6024187735df8e4e4_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Open sourcing a realtime mahjong: http://t.co/uhDpnM1M #nodejs #socketio #html5 http://t.co/G3Cx6Lwy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:18:05 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147666810983026700, "id_str": "147666810983026688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Open sourcing a realtime mahjong: http://t.co/uhDpnM1M #nodejs #socketio #html5 http://t.co/G3Cx6Lwy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:09:01 +0000", "from_user": "felipernb", "from_user_id": 5610932, "from_user_id_str": "5610932", "from_user_name": "Felipe Ribeiro", "geo": null, "id": 147664528421814270, "id_str": "147664528421814273", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662468524/scanned-page-Z7ES5V_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662468524/scanned-page-Z7ES5V_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Blazing fast node.js: 10 performance tips from LinkedIn Mobile | LinkedIn Engineering http://t.co/Ays2fsoS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:05:22 +0000", "from_user": "enriclluelles", "from_user_id": 57446166, "from_user_id_str": "57446166", "from_user_name": "Enric Lluelles", "geo": null, "id": 147663609332367360, "id_str": "147663609332367360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/317069007/thumbbig-Anime-Cowboy-Bebop-11840_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/317069007/thumbbig-Anime-Cowboy-Bebop-11840_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @masylum: Open sourcing a realtime mahjong: http://t.co/CXBy3dtr #nodejs #socketio #html5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:58:37 +0000", "from_user": "stackfeed", "from_user_id": 237310237, "from_user_id_str": "237310237", "from_user_name": "StackOverflow", "geo": null, "id": 147661909523570700, "id_str": "147661909523570688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NodeJS|Cluster: How to send data from master to to all or single child/workers?: I have working (stock) script f... http://t.co/ZNdLiZfR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:40:46 +0000", "from_user": "DZone", "from_user_id": 14782935, "from_user_id_str": "14782935", "from_user_name": "DZone", "geo": null, "id": 147657416467681280, "id_str": "147657416467681280", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/258714549/dzone-square-256_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/258714549/dzone-square-256_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\"Video: CakePHP and Node.js\" http://t.co/eeW2Tju5 #CakePHP #PHP #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:35:31 +0000", "from_user": "pronebird", "from_user_id": 71172931, "from_user_id_str": "71172931", "from_user_name": "Andrej", "geo": null, "id": 147656098143420400, "id_str": "147656098143420416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688758426/479d1477ee1c9e0e042247e126c14cafb2537786e1885813083e3350502e8557.300x300_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688758426/479d1477ee1c9e0e042247e126c14cafb2537786e1885813083e3350502e8557.300x300_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "well, redis works and looks fast, I believe it's quite good solution for often changing session storage. #nodejs #redis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:21:32 +0000", "from_user": "timacheson", "from_user_id": 23962971, "from_user_id_str": "23962971", "from_user_name": "Tim Acheson", "geo": null, "id": 147652579705368580, "id_str": "147652579705368576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1167635492/Tim_Acheson_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1167635492/Tim_Acheson_normal.jpg", "source": "<a href="http://pluggio.com" rel="nofollow">Pluggio</a>", "text": "RT @jeremylikness: #NodeJS in #Windows #Azure - to the cloud and beyond by @gblock http://t.co/QwCsITBo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:21:22 +0000", "from_user": "GotNoSugarBaby", "from_user_id": 242235575, "from_user_id_str": "242235575", "from_user_name": "Jamie Mason", "geo": null, "id": 147652535493214200, "id_str": "147652535493214208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1675241788/Tashvatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675241788/Tashvatar_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: New release: Chai is a BDD/TDD assertion library for #nodejs and browser that is test framework agnostic. http:/... http://t.co/sZBtlvqT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:16:29 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 147651305471619070, "id_str": "147651305471619072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @jakeluer: New release: Chai is a BDD/TDD assertion library for #nodejs and browser that is test framework agnostic. http://t.co/KByhZjAw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:16:27 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147651298848813060, "id_str": "147651298848813057", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "New release: Chai is a BDD/TDD assertion library for #nodejs and browser that is test framework agnostic. http:/... http://t.co/sZBtlvqT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:16:04 +0000", "from_user": "mcfazeli", "from_user_id": 27494875, "from_user_id_str": "27494875", "from_user_name": "Mani C. Fazeli", "geo": null, "id": 147651202186883070, "id_str": "147651202186883072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1613914988/Mani_in_Suit_-_Square_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1613914988/Mani_in_Suit_-_Square_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Node v0.6.6 released http://t.co/LGH5FqF6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:04:54 +0000", "from_user": "jakeluer", "from_user_id": 18062262, "from_user_id_str": "18062262", "from_user_name": "Jake Luer", "geo": null, "id": 147648393622192130, "id_str": "147648393622192128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1607786833/me_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607786833/me_normal.jpeg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "New release: Chai is a BDD/TDD assertion library for #nodejs and browser that is test framework agnostic. http://t.co/KByhZjAw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:03:07 +0000", "from_user": "NunoGodinho", "from_user_id": 9971382, "from_user_id_str": "9971382", "from_user_name": "Nuno Godinho", "geo": null, "id": 147647944638738430, "id_str": "147647944638738432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/831407287/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/831407287/twitterProfilePhoto_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @jeremylikness: #NodeJS in #Windows #Azure - to the cloud and beyond by @gblock http://t.co/3Xxzcgsf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:59:29 +0000", "from_user": "jeremylikness", "from_user_id": 46210370, "from_user_id_str": "46210370", "from_user_name": "Jeremy Likness", "geo": null, "id": 147647030024609800, "id_str": "147647030024609792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1296534306/avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1296534306/avatar_normal.png", "source": "<a href="http://pluggio.com" rel="nofollow">Pluggio</a>", "text": "#NodeJS in #Windows #Azure - to the cloud and beyond by @gblock http://t.co/QwCsITBo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:50:40 +0000", "from_user": "fantasticJoho", "from_user_id": 218448297, "from_user_id_str": "218448297", "from_user_name": "Joho", "geo": null, "id": 147644808566026240, "id_str": "147644808566026240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691091979/206424_1004761632287_1022276477_26320_5931_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691091979/206424_1004761632287_1022276477_26320_5931_n_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "RT @elijahmanor: \"Intro to Node.JS for .NET Developers\" by @aaronontheweb #javascript http://t.co/fvwMgwnv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:47:27 +0000", "from_user": "Jangid", "from_user_id": 10432632, "from_user_id_str": "10432632", "from_user_name": "Pankaj Jangid", "geo": null, "id": 147644000101339140, "id_str": "147644000101339137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1237152718/157820_503085507_2303252_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1237152718/157820_503085507_2303252_q_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@bluesmoon have you evaluated any nodejs monodb driver? Any recommendation? I want to store some metadata.", "to_user": "bluesmoon", "to_user_id": 7510552, "to_user_id_str": "7510552", "to_user_name": "Philip Tellis"}, +{"created_at": "Fri, 16 Dec 2011 11:47:20 +0000", "from_user": "johanbove", "from_user_id": 231445532, "from_user_id_str": "231445532", "from_user_name": "Johan Bov\\u00E9", "geo": null, "id": 147643969516482560, "id_str": "147643969516482562", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1387101729/Tuscany_2009_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1387101729/Tuscany_2009_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "HEY - I'm now part of the NodeJs community, why aren't you? http://t.co/As0HZhqA via @nodejscommunity", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:14:23 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 147635677721407500, "id_str": "147635677721407488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://twuffer.com" rel="nofollow">Twuffer</a>", "text": "RT @dhaivatpoincare: Check out NimbleNotes! http://t.co/qOhIWKyC Written with #python #jquery #nodejs #mongodb #flask", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:14:21 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147635671069233150, "id_str": "147635671069233152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Check out NimbleNotes! http://t.co/QHs3Fngj Written with #python #jquery #nodejs #mongodb #flask http://t.co/LIaGo2Dn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:04:11 +0000", "from_user": "mlegenhausen", "from_user_id": 66335953, "from_user_id_str": "66335953", "from_user_name": "Malte", "geo": null, "id": 147633114229907460, "id_str": "147633114229907456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1090683310/12.05.07_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1090683310/12.05.07_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Growing Up http://t.co/PD4JktSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:00:53 +0000", "from_user": "dhaivatpoincare", "from_user_id": 233257440, "from_user_id_str": "233257440", "from_user_name": "Dhaivat Pandya", "geo": null, "id": 147632281492795400, "id_str": "147632281492795392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657560442/2011-11-25_13-57-39.638_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657560442/2011-11-25_13-57-39.638_normal.jpg", "source": "<a href="http://twuffer.com" rel="nofollow">Twuffer</a>", "text": "Check out NimbleNotes! http://t.co/qOhIWKyC Written with #python #jquery #nodejs #mongodb #flask", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:44:41 +0000", "from_user": "bdcravens", "from_user_id": 19546993, "from_user_id_str": "19546993", "from_user_name": "Billy Cravens", "geo": null, "id": 147628204616712200, "id_str": "147628204616712193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/550414769/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/550414769/twitterProfilePhoto_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "finally writing some of my first front-end #nodejs code", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:43:56 +0000", "from_user": "GotNoSugarBaby", "from_user_id": 242235575, "from_user_id_str": "242235575", "from_user_name": "Jamie Mason", "geo": null, "id": 147628016271495170, "id_str": "147628016271495168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1675241788/Tashvatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675241788/Tashvatar_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Write your shell scripts in JavaScript, via Node.js http://t.co/SL5Msixg #2ality http://t.co/RCjnrG97", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:43:00 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147627780681642000, "id_str": "147627780681641984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Write your shell scripts in JavaScript, via Node.js http://t.co/SL5Msixg #2ality http://t.co/RCjnrG97", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:42:00 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 147627528872402940, "id_str": "147627528872402945", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @jscentral Write your shell scripts in JavaScript, via Node.js @rauschma http://t.co/4yyymK1a", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:41:59 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 147627526540369920, "id_str": "147627526540369920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @rauschma Write your shell scripts in JavaScript, via Node.js http://t.co/4yyymK1a #2ality", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:05:45 +0000", "from_user": "NodeJSAtSO", "from_user_id": 292124941, "from_user_id_str": "292124941", "from_user_name": "Node JS @ SO", "geo": null, "id": 147618405829193730, "id_str": "147618405829193729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1336740490/sprites_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1336740490/sprites_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NodeJS, Multi-FileWatcher, Socket.IO and interaction with the client http://t.co/NSl9L8Op", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:58:20 +0000", "from_user": "chebatron", "from_user_id": 14336828, "from_user_id_str": "14336828", "from_user_name": "Cheba", "geo": null, "id": 147616540953554940, "id_str": "147616540953554944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1023503585/Scream_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1023503585/Scream_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Believing there's a right tool for a task is OK. Using \"JavaScript, PHP, Python, Perl, NodeJS, Java\" in one project is not really.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:57:42 +0000", "from_user": "przemyslawpluta", "from_user_id": 24577454, "from_user_id_str": "24577454", "from_user_name": "Przemyslaw Pluta", "geo": null, "id": 147616381687431170, "id_str": "147616381687431168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1479677201/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1479677201/me_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "#Nodejs in Windows #Azure, to the cloud and beyond - http://t.co/nKXk8nQF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Fri, 16 Dec 2011 09:57:42 +0000", "from_user": "przemyslawpluta", "from_user_id": 24577454, "from_user_id_str": "24577454", "from_user_name": "Przemyslaw Pluta", "geo": null, "id": 147616381687431170, "id_str": "147616381687431168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1479677201/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1479677201/me_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "#Nodejs in Windows #Azure, to the cloud and beyond - http://t.co/nKXk8nQF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:49:11 +0000", "from_user": "munichnug", "from_user_id": 389449919, "from_user_id_str": "389449919", "from_user_name": "Node.js UG Munich", "geo": null, "id": 147614237223690240, "id_str": "147614237223690240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1606077365/mnug_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606077365/mnug_twitter_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Node v0.6.6 released http://t.co/LGH5FqF6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:36:10 +0000", "from_user": "Depechie", "from_user_id": 1004381, "from_user_id_str": "1004381", "from_user_name": "Glenn Versweyveld", "geo": null, "id": 147610963858829300, "id_str": "147610963858829312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/311026785/SistersOfMercyWhite500x500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/311026785/SistersOfMercyWhite500x500_normal.jpg", "source": "<a href="http://www.metrotwit.com/" rel="nofollow">MetroTwit</a>", "text": "@davybrion @jakescott yeah maybe it is, but isn't there some 'value' in the remarks too? I must admit, I have not touched nodejs myself", "to_user": "davybrion", "to_user_id": 167135950, "to_user_id_str": "167135950", "to_user_name": "Davy Brion", "in_reply_to_status_id": 147610161022894080, "in_reply_to_status_id_str": "147610161022894080"}, +{"created_at": "Fri, 16 Dec 2011 09:17:31 +0000", "from_user": "mupinc", "from_user_id": 33440558, "from_user_id_str": "33440558", "from_user_name": "\\u0427\\u0438\\u0440\\u043A\\u043E\\u0432 \\u0410\\u043B\\u0435\\u043A\\u0441\\u0435\\u0439", "geo": null, "id": 147606268742344700, "id_str": "147606268742344705", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1207327572/3d8PHBld_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1207327572/3d8PHBld_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @azproduction: LMD - \\u043B\\u0435\\u0433\\u043A\\u0430\\u044F, \\u043B\\u0435\\u043D\\u0438\\u0432\\u0430\\u044F, \\u0441\\u0438\\u043D\\u0445\\u0440\\u043E\\u043D\\u043D\\u0430\\u044F \\u043C\\u043E\\u0434\\u0443\\u043B\\u044C\\u043D\\u0430\\u044F \\u0441\\u0438\\u0441\\u0442\\u0435\\u043C\\u0430 \\u0434\\u043B\\u044F \\u0442\\u0435\\u0445 \\u043A\\u0442\\u043E \\u043B\\u044E\\u0431\\u0438\\u0442 \\u043C\\u043E\\u0434\\u0443\\u043B\\u0438 @nodejs \\u0438 \\u0441\\u0442\\u0440\\u0430\\u0434\\u0430\\u0435\\u0442 \\u043E\\u0442 startup latency http://t.co/3DEoNncb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:08:39 +0000", "from_user": "dampeebe", "from_user_id": 47422110, "from_user_id_str": "47422110", "from_user_name": "Damiaan Peeters", "geo": null, "id": 147604038068875260, "id_str": "147604038068875264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1325422170/42c8f255-7d06-4665-af5d-60eba23a538c_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1325422170/42c8f255-7d06-4665-af5d-60eba23a538c_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@dscape I don't know anything on NodeJS... Not yet that is :-)", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147603629514309630, "in_reply_to_status_id_str": "147603629514309632"}, +{"created_at": "Fri, 16 Dec 2011 09:02:37 +0000", "from_user": "ajlopez", "from_user_id": 14567622, "from_user_id_str": "14567622", "from_user_name": "ajlopez", "geo": null, "id": 147602519856644100, "id_str": "147602519856644096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/53769404/spiral_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/53769404/spiral_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @dscape: i ... don't give a shit about #microsoft but they seem pretty serious on javascript http://t.co/9ElGMYhv #nodejs #hadoop #azure", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:49:54 +0000", "from_user": "edjafarov", "from_user_id": 18898176, "from_user_id_str": "18898176", "from_user_name": "Eldar Djafarov", "geo": null, "id": 147599319481065470, "id_str": "147599319481065472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/971019265/25-08-08_1708_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/971019265/25-08-08_1708_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Growing Up http://t.co/PD4JktSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:49:50 +0000", "from_user": "azenned", "from_user_id": 196234589, "from_user_id_str": "196234589", "from_user_name": "Zenned Abderrazak", "geo": null, "id": 147599302582210560, "id_str": "147599302582210560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1368319751/49144_1805169896_5760_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1368319751/49144_1805169896_5760_n_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Node v0.6.6 released http://t.co/LGH5FqF6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:47:21 +0000", "from_user": "D_Guidi", "from_user_id": 59773, "from_user_id_str": "59773", "from_user_name": "Diego Guidi", "geo": null, "id": 147598675282108400, "id_str": "147598675282108416", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1241356592/me_ciro_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1241356592/me_ciro_normal.jpg", "source": "<a href="http://www.metrotwit.com/" rel="nofollow">MetroTwit</a>", "text": "@robymes mah nodejs di fatto \\u00E8 usato in produzione, alla fine per fare una query su postgres ritornare il json l'userei senza patemi", "to_user": "robymes", "to_user_id": 86505260, "to_user_id_str": "86505260", "to_user_name": "Roberto Messora", "in_reply_to_status_id": 147597926905028600, "in_reply_to_status_id_str": "147597926905028609"}, +{"created_at": "Fri, 16 Dec 2011 08:43:46 +0000", "from_user": "HosipLan", "from_user_id": 37413851, "from_user_id_str": "37413851", "from_user_name": "Filip Proch\\u00E1zka", "geo": null, "id": 147597776174321660, "id_str": "147597776174321664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1277952292/internet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1277952292/internet_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @PatrikVotocek: http://t.co/t6s2IAmW muj prvn\\u00ED pokus s #ElasticSearch (powered by #Nodejs, #Redis, #ElasticSearch, #Nginx as proxy)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:43:06 +0000", "from_user": "D_Guidi", "from_user_id": 59773, "from_user_id_str": "59773", "from_user_name": "Diego Guidi", "geo": null, "id": 147597607634616320, "id_str": "147597607634616320", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1241356592/me_ciro_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1241356592/me_ciro_normal.jpg", "source": "<a href="http://www.metrotwit.com/" rel="nofollow">MetroTwit</a>", "text": "@robymes ottima domanda, IMHO in teoria nodejs \\u00E8 nato per cose del genere...", "to_user": "robymes", "to_user_id": 86505260, "to_user_id_str": "86505260", "to_user_name": "Roberto Messora", "in_reply_to_status_id": 147597286829076480, "in_reply_to_status_id_str": "147597286829076480"}, +{"created_at": "Fri, 16 Dec 2011 08:37:34 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 147596215050182660, "id_str": "147596215050182657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://www.scoop.it" rel="nofollow">Scoop.it</a>", "text": "RT @itwars: Using Eclipse as Node Applications Debugger - GitHub | #nodejs #eclipse #debug http://t.co/oQujbQNz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:34:10 +0000", "from_user": "gvlax", "from_user_id": 314211330, "from_user_id_str": "314211330", "from_user_name": "Maciej Gulak", "geo": null, "id": 147595359571558400, "id_str": "147595359571558400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1568384256/poolbird_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1568384256/poolbird_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "I'm now part of the NodeJs community... http://t.co/A6eLlp66 via @nodejscommunity", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:13:00 +0000", "from_user": "TimAnyasi", "from_user_id": 314120635, "from_user_id_str": "314120635", "from_user_name": "Timothy Anyasi", "geo": null, "id": 147590034525126660, "id_str": "147590034525126656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1394304998/tim_crop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1394304998/tim_crop_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@railsjedi I think so too. Btw what's your accessment of nodejs security, think still too early to use for serious apps?", "to_user": "railsjedi", "to_user_id": 18008485, "to_user_id_str": "18008485", "to_user_name": "Jacques Crocker", "in_reply_to_status_id": 147588947470585860, "in_reply_to_status_id_str": "147588947470585857"}, +{"created_at": "Fri, 16 Dec 2011 08:07:11 +0000", "from_user": "PatrikVotocek", "from_user_id": 16411991, "from_user_id_str": "16411991", "from_user_name": "Patrik Voto\\u010Dek", "geo": null, "id": 147588568485859330, "id_str": "147588568485859328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1458968939/avatar-256x256_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1458968939/avatar-256x256_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "http://t.co/t6s2IAmW muj prvn\\u00ED pokus s #ElasticSearch (powered by #Nodejs, #Redis, #ElasticSearch, #Nginx as proxy)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:06:46 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 147588465062723600, "id_str": "147588465062723584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "RT @D_Guidi: Reading 'Creating a node.js GeometryService : part 1': http://t.co/JTdJZ0oL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:57:36 +0000", "from_user": "D_Guidi", "from_user_id": 59773, "from_user_id_str": "59773", "from_user_name": "Diego Guidi", "geo": null, "id": 147586157599928320, "id_str": "147586157599928320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1241356592/me_ciro_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1241356592/me_ciro_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "Reading 'Creating a node.js GeometryService : part 1': http://t.co/JTdJZ0oL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:41:03 +0000", "from_user": "gianmarcog", "from_user_id": 97277627, "from_user_id_str": "97277627", "from_user_name": "Gian Marco Gherardi", "geo": null, "id": 147581990332399600, "id_str": "147581990332399616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/965786802/mario-mushroom-transparent-background_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/965786802/mario-mushroom-transparent-background_normal.png", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "MS Azure support for nodejs announced http://t.co/Jkmkz1y0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:35:44 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147580652093571070, "id_str": "147580652093571072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Minor update to spray released. New graph cube properties for errors and timeouts. http://t.co/EVw3pM06 #nodejs http://t.co/PXGHZxpA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:35:42 +0000", "from_user": "wdbacker", "from_user_id": 20968773, "from_user_id_str": "20968773", "from_user_name": "Ward De Backer", "geo": null, "id": 147580644963266560, "id_str": "147580644963266560", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1549651905/twitter_hr_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1549651905/twitter_hr_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Nice tips on #nodejs optimisation: http://t.co/X1JT9DL9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:31:50 +0000", "from_user": "leonpo", "from_user_id": 34383862, "from_user_id_str": "34383862", "from_user_name": "Leon Portman", "geo": null, "id": 147579674543919100, "id_str": "147579674543919104", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1465698746/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1465698746/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "node.js on Azure: http://t.co/NneihjFr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:31:50 +0000", "from_user": "RobertoBez", "from_user_id": 56687874, "from_user_id_str": "56687874", "from_user_name": "Roberto Bez", "geo": null, "id": 147579671335280640, "id_str": "147579671335280640", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1662812634/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662812634/me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Ich w\\u00FCrd wirklich gerne mal das Azure NodeJs Dingens probieren. Aber selbst f\\u00FCr die Testversion schon wieder eine Kreditkarte.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:28:30 +0000", "from_user": "goloroden", "from_user_id": 132484863, "from_user_id_str": "132484863", "from_user_name": "Golo Roden", "geo": null, "id": 147578833791488000, "id_str": "147578833791488000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/819558960/Golo_Roden_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/819558960/Golo_Roden_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Growing Up http://t.co/PD4JktSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:26:45 +0000", "from_user": "Optimyth", "from_user_id": 108300784, "from_user_id_str": "108300784", "from_user_name": "Optimyth Software", "geo": null, "id": 147578395025346560, "id_str": "147578395025346560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1178483201/optimyth_fondo_azul_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1178483201/optimyth_fondo_azul_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Read TechAgil & TechNews \\u25B8 today's top stories via @payerickdog @Optimyth @nodejs \\u25B8 http://t.co/pelgMvQu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:26:11 +0000", "from_user": "leonpo", "from_user_id": 34383862, "from_user_id_str": "34383862", "from_user_name": "Leon Portman", "geo": null, "id": 147578250296692740, "id_str": "147578250296692736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1465698746/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1465698746/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Growing Up http://t.co/PD4JktSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:15:20 +0000", "from_user": "jeffmueller", "from_user_id": 641073, "from_user_id_str": "641073", "from_user_name": "Jeff", "geo": null, "id": 147575519540559870, "id_str": "147575519540559873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668148364/icon-300_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668148364/icon-300_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "Got segfaults after installing Node.js 0.6.5 on Lion?\\n\\nhttp://t.co/VYVnj6NH\\n\\nTL;DR: Use the Node installer from http://t.co/pW91aSEp.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:15:03 +0000", "from_user": "ankjevel", "from_user_id": 15418194, "from_user_id_str": "15418194", "from_user_name": "Dennis Pettersson", "geo": null, "id": 147575450875605000, "id_str": "147575450875604993", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1298654277/FUU_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1298654277/FUU_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@ryah This is something that have been bugging me for some time now http://t.co/SKthIhRK (note: it's from the download-window on nodejs.org)", "to_user": "ryah", "to_user_id": 18975861, "to_user_id_str": "18975861", "to_user_name": "Ryan Dahl"}, +{"created_at": "Fri, 16 Dec 2011 07:12:18 +0000", "from_user": "andrew_j_stone", "from_user_id": 318079932, "from_user_id_str": "318079932", "from_user_name": "Andrew J. Stone", "geo": null, "id": 147574758593146880, "id_str": "147574758593146880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1598642373/284659_696310082096_24501632_36175371_4924429_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598642373/284659_696310082096_24501632_36175371_4924429_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Minor update to spray released. New graph cube properties for errors and timeouts. http://t.co/4La1O7hv #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:11:12 +0000", "from_user": "JanVanRyswyck", "from_user_id": 14344284, "from_user_id_str": "14344284", "from_user_name": "JanVanRyswyck", "geo": null, "id": 147574478996647940, "id_str": "147574478996647936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1444289576/Foto3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1444289576/Foto3_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Growing up: http://t.co/Sgq1lEta #shared #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:04:38 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 147572828064071680, "id_str": "147572828064071680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @AngeZanetti: The trap of performance sweet spot of Javascript http://t.co/2zhvNUlh #nodejs #WebGL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:02:45 +0000", "from_user": "fatshotty", "from_user_id": 95258760, "from_user_id_str": "95258760", "from_user_name": "Fabio", "geo": null, "id": 147572354111897600, "id_str": "147572354111897600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1342686720/fatshotty_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1342686720/fatshotty_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Using Eclipse as Node Applications Debugger - GitHub http://t.co/e4c7oezT #eclips #node #nodejs #javascript http://t.co/wUdw4le3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 06:56:24 +0000", "from_user": "kzfm", "from_user_id": 10674222, "from_user_id_str": "10674222", "from_user_name": "kzfm", "geo": null, "id": 147570755624906750, "id_str": "147570755624906752", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1101313417/40dea9e7-aef7-4320-8d71-6d1108ffa98c_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1101313417/40dea9e7-aef7-4320-8d71-6d1108ffa98c_normal.png", "source": "<a href="http://www.twitgether.com" rel="nofollow">twitgether</a>", "text": "@tomof node.js\\u306E\\u30D5\\u30ED\\u30F3\\u30C8\\u306Bnginx\\u304C\\u3044\\u308B\\u306E\\u304B\\uFF1F\\u3063\\u3066\\u8A71\\u3067\\u3059\\u3002\\u304A\\u3082\\u308D\\u304B\\u3063\\u305F http://t.co/3AiNT97e", "to_user": "tomof", "to_user_id": 9665062, "to_user_id_str": "9665062", "to_user_name": "tomof"}, +{"created_at": "Fri, 16 Dec 2011 06:43:32 +0000", "from_user": "florincoros", "from_user_id": 214974557, "from_user_id_str": "214974557", "from_user_name": "Florin Coros", "geo": null, "id": 147567517420883970, "id_str": "147567517420883968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1419152783/800px-Go-game-ear-reddening_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1419152783/800px-Go-game-ear-reddening_normal.jpeg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @WindowsAzure: Did you miss the Learn #Windows #Azure event Tuesday? The video is up on @ch9 http://t.co/UL6e4F5k #SQLAzure #nodejs /via @SyntaxC4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 06:35:22 +0000", "from_user": "jeremiedev", "from_user_id": 92844642, "from_user_id_str": "92844642", "from_user_name": "Jeremie Devillard", "geo": null, "id": 147565463629598720, "id_str": "147565463629598720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1183643382/Sans_titre-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1183643382/Sans_titre-1_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @WindowsAzure: Did you miss the Learn #Windows #Azure event Tuesday? The video is up on @ch9 http://t.co/UL6e4F5k #SQLAzure #nodejs /via @SyntaxC4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 06:34:11 +0000", "from_user": "JustinBeckwith", "from_user_id": 41165883, "from_user_id_str": "41165883", "from_user_name": "Justin Beckwith", "geo": null, "id": 147565162386292740, "id_str": "147565162386292736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1190971800/head_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1190971800/head_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Oooo, new node.js website: http://t.co/JSZy7Z1z. I like the #WindowsAzure section :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 06:33:41 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 147565038650142720, "id_str": "147565038650142720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @knsk66: Using Eclipse as Node Applications Debugger - GitHub http://t.co/sL2z2qiy #eclips #node #nodejs #javascript", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 06:26:57 +0000", "from_user": "darrellpratt", "from_user_id": 15535975, "from_user_id_str": "15535975", "from_user_name": "Darrell Pratt", "geo": null, "id": 147563346051346430, "id_str": "147563346051346432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1159639029/31758_402638536937_646921937_4618867_2862895_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1159639029/31758_402638536937_646921937_4618867_2862895_n_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Growing Up http://t.co/PD4JktSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 06:12:27 +0000", "from_user": "lanwin", "from_user_id": 14878823, "from_user_id_str": "14878823", "from_user_name": "Steve Wagner", "geo": null, "id": 147559696646148100, "id_str": "147559696646148097", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/597255103/avatar_80x80_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/597255103/avatar_80x80_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Lol RT @BjoernRochel One nodejs fan probably just died... ^^ RT@_lennart God, I hate JavaScript.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 06:10:25 +0000", "from_user": "jamus_se", "from_user_id": 112896032, "from_user_id_str": "112896032", "from_user_name": "jamus", "geo": null, "id": 147559183208820740, "id_str": "147559183208820736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1564910465/twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1564910465/twitter_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @knsk66: Using Eclipse as Node Applications Debugger - GitHub http://t.co/emFnzONc #eclips #node #nodejs #javascript", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 05:00:15 +0000", "from_user": "HomebrewUpdates", "from_user_id": 220882340, "from_user_id_str": "220882340", "from_user_name": "HomebrewUpdates", "geo": null, "id": 147541523381227520, "id_str": "147541523381227521", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1184540671/noback2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1184540671/noback2_normal.png", "source": "<a href="http://twitter.com/HomebrewUpdates" rel="nofollow">HomebrewUpdates</a>", "text": "[Rev:211a1165] formula updated: node 0.6.6 http://t.co/nltiBYyf #machomebrew #node", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 04:39:10 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 147536221642567680, "id_str": "147536221642567680", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @kaineer nodejs: Node v0.6.6 released http://t.co/6Iw2zUP8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 04:34:31 +0000", "from_user": "kaineer", "from_user_id": 16311212, "from_user_id_str": "16311212", "from_user_name": "Tangerine Cat", "geo": null, "id": 147535049812754430, "id_str": "147535049812754432", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1139159899/meh-20081016_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1139159899/meh-20081016_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u041D\\u044B\\u043D\\u0435\\u0448\\u043D\\u0438\\u0439 (0.6.6) @nodejs \\u0441\\u0442\\u0430\\u0432\\u0438\\u0442 \\u0441 \\u0441\\u043E\\u0431\\u043E\\u0439 \\u0434\\u043E \\u043A\\u0443\\u0447\\u0438 npm. \\u0418 \\u044D\\u0442\\u043E \\u043C\\u0435\\u043D\\u044F \\u0440\\u0430\\u0434\\u0443\\u0435\\u0442.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 04:28:08 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147533443335585800, "id_str": "147533443335585792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Bang goes 1.0, now with Hubot support http://t.co/qmlBbyz1 #nodejs #hubot http://t.co/vgKCL11p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 04:26:05 +0000", "from_user": "c4milo", "from_user_id": 38187360, "from_user_id_str": "38187360", "from_user_name": "Camilo Aguilar", "geo": null, "id": 147532928451223550, "id_str": "147532928451223554", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Node v0.6.6 released http://t.co/LGH5FqF6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 04:15:35 +0000", "from_user": "josedung", "from_user_id": 43813979, "from_user_id_str": "43813979", "from_user_name": "jose dung", "geo": null, "id": 147530285217628160, "id_str": "147530285217628160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://www.yahoo.com" rel="nofollow">Yahoo!</a>", "text": "nodeJS + html5 + do what?=money http://t.co/2pFqXCq4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 04:01:03 +0000", "from_user": "jimmycuadra", "from_user_id": 23913921, "from_user_id_str": "23913921", "from_user_name": "Jimmy Cuadra", "geo": null, "id": 147526627411243000, "id_str": "147526627411243008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1600729364/jc_logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600729364/jc_logo_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Bang goes 1.0, now with Hubot support http://t.co/oDYGzHMJ #nodejs #hubot", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 03:56:58 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 147525600549158900, "id_str": "147525600549158913", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @jimmycuadra: Bang 1.0.0 is released http://t.co/sxOZIXQE #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 03:56:57 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147525593821495300, "id_str": "147525593821495296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Bang 1.0.0 is released http://t.co/11n4JnSm #nodejs http://t.co/Jxcz9U0K", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 03:39:25 +0000", "from_user": "jimmycuadra", "from_user_id": 23913921, "from_user_id_str": "23913921", "from_user_name": "Jimmy Cuadra", "geo": null, "id": 147521182021857280, "id_str": "147521182021857280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1600729364/jc_logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600729364/jc_logo_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Bang 1.0.0 is released http://t.co/sxOZIXQE #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 02:55:02 +0000", "from_user": "King_of_Nakao", "from_user_id": 50851479, "from_user_id_str": "50851479", "from_user_name": "\\u306A\\u304B\\u304A\\u304D\\u3088\\u3057", "geo": null, "id": 147510014607765500, "id_str": "147510014607765506", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1590581134/onaka_icon_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1590581134/onaka_icon_normal.gif", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Node v0.6.6 released http://t.co/LGH5FqF6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 02:48:25 +0000", "from_user": "augustus_webdev", "from_user_id": 116316949, "from_user_id_str": "116316949", "from_user_name": "Thiago Augustus", "geo": null, "id": 147508346562412540, "id_str": "147508346562412544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1634220231/facebook-img_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634220231/facebook-img_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Node v0.6.6 released http://t.co/LGH5FqF6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 02:36:51 +0000", "from_user": "CRMLady", "from_user_id": 16563024, "from_user_id_str": "16563024", "from_user_name": "Anne Stanton", "geo": null, "id": 147505438454333440, "id_str": "147505438454333441", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1564066626/2530524c-48f4-4f69-9b56-7c8cdc714dec_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1564066626/2530524c-48f4-4f69-9b56-7c8cdc714dec_normal.png", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @WindowsAzure: Did you miss the Learn #Windows #Azure event Tuesday? The video is up on @ch9 http://t.co/UL6e4F5k #SQLAzure #nodejs /via @SyntaxC4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 02:30:43 +0000", "from_user": "naru0ga", "from_user_id": 131133214, "from_user_id_str": "131133214", "from_user_name": "Naruhiko Ogasawara", "geo": null, "id": 147503894187081730, "id_str": "147503894187081729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312133669/609294_2294024989_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312133669/609294_2294024989_normal.jpg", "source": "<a href="http://sproutsocial.com" rel="nofollow">Sprout Social</a>", "text": "RT @linuxfoundation: Top 10 OSS Projects of '11. http://t.co/FWeyc8TF Did your fave make the list? #nginx #jQuery #linux #nodejs #puppet...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 02:13:09 +0000", "from_user": "Nodester", "from_user_id": 240751001, "from_user_id_str": "240751001", "from_user_name": "Nodester", "geo": null, "id": 147499475013873660, "id_str": "147499475013873665", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Nice! RT @neojp: Un poco tarde, pero hicimos funcionar el script en nodejs usando @nodester http://t.co/auoaMFPW #mejorandola", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 02:01:38 +0000", "from_user": "HRBG", "from_user_id": 14849107, "from_user_id_str": "14849107", "from_user_name": "Hector Bavio", "geo": null, "id": 147496576988872700, "id_str": "147496576988872704", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1615704779/61324d30-8582-4221-82e1-f07a90f92ca6_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615704779/61324d30-8582-4221-82e1-f07a90f92ca6_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "#nvm #nodejs #ftw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:51:17 +0000", "from_user": "BeataLyn", "from_user_id": 10553852, "from_user_id_str": "10553852", "from_user_name": "Beata", "geo": null, "id": 147493970090528770, "id_str": "147493970090528768", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1669177191/bakeneko_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669177191/bakeneko_normal.jpg", "source": "<a href="http://tweetmeme.com" rel="nofollow">TweetMeme</a>", "text": "\\u5F9E\\u4F86\\u6C92\\u60F3\\u904E\\uFF0Cserver\\u7AEF\\u7684file & stream io\\u53EF\\u4EE5\\u9019\\u9EBC\\u7C21\\u55AE\\uFF0C\\u611F\\u52D5\\u7206\\u8868\\u7684 #nodejs module http://t.co/g8REorCC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:44:03 +0000", "from_user": "brian_jimerson", "from_user_id": 19949229, "from_user_id_str": "19949229", "from_user_name": "Brian Jimerson", "geo": null, "id": 147492149406085120, "id_str": "147492149406085120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1655551974/Profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655551974/Profile_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Growing Up http://t.co/PD4JktSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:29:00 +0000", "from_user": "micobot", "from_user_id": 1944011, "from_user_id_str": "1944011", "from_user_name": "Irving Villegas", "geo": null, "id": 147488361123287040, "id_str": "147488361123287041", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1648736502/micobot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648736502/micobot_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "JavaScript del lado del servidor, si asi como lo escucharon con node.js http://t.co/YhxOQ1ot", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:02:02 +0000", "from_user": "omolina", "from_user_id": 17017053, "from_user_id_str": "17017053", "from_user_name": "Oscar Molina Catal\\u00E1n", "geo": null, "id": 147481577654468600, "id_str": "147481577654468608", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1416438989/perfil_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1416438989/perfil_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Todo lo que hago es Async, resulta mejor en #nodejs jajajaja", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:45:35 +0000", "from_user": "hugojosefson", "from_user_id": 19494720, "from_user_id_str": "19494720", "from_user_name": "Hugo Josefson", "geo": null, "id": 147477437280825340, "id_str": "147477437280825345", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/430993156/Hugo_Josefson_-_face_-_192x192_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/430993156/Hugo_Josefson_-_face_-_192x192_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Growing Up http://t.co/PD4JktSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:44:08 +0000", "from_user": "peteryorke", "from_user_id": 14136726, "from_user_id_str": "14136726", "from_user_name": "Peter Yorke", "geo": null, "id": 147477073227825150, "id_str": "147477073227825153", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/51727717/peter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/51727717/peter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Node.js released v0.6.6 is out \\u25B8 http://t.co/HmomSSrF #nodejs http://t.co/ZqntSiHs @NodeJsCommunity", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:38:38 +0000", "from_user": "osConstruction", "from_user_id": 393579585, "from_user_id_str": "393579585", "from_user_name": "O.S.construction", "geo": null, "id": 147475686393778180, "id_str": "147475686393778179", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1661556431/OSC_twittertransparent50__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661556431/OSC_twittertransparent50__normal.png", "source": "<a href="http://sproutsocial.com" rel="nofollow">Sprout Social</a>", "text": "RT @linuxfoundation: Top 10 OSS Projects of '11. http://t.co/FWeyc8TF Did your fave make the list? #nginx #jQuery #linux #nodejs #puppet...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:21:30 +0000", "from_user": "ladyfatiha", "from_user_id": 219987296, "from_user_id_str": "219987296", "from_user_name": "Fatiha", "geo": null, "id": 147471376687706100, "id_str": "147471376687706112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699188528/Agvi_SLCEAAYwQ7_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699188528/Agvi_SLCEAAYwQ7_normal.png", "source": "<a href="http://sproutsocial.com" rel="nofollow">Sprout Social</a>", "text": "RT @linuxfoundation: Top 10 OSS Projects of '11. http://t.co/FWeyc8TF Did your fave make the list? #nginx #jQuery #linux #nodejs #puppet...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:18:50 +0000", "from_user": "jbboehr", "from_user_id": 71352049, "from_user_id_str": "71352049", "from_user_name": "John Boehr", "geo": null, "id": 147470706484051970, "id_str": "147470706484051968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1654655513/dc109a8a0126ae2825c603ae846c00a1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654655513/dc109a8a0126ae2825c603ae846c00a1_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Growing Up http://t.co/PD4JktSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:09:07 +0000", "from_user": "adrianpillinger", "from_user_id": 69106258, "from_user_id_str": "69106258", "from_user_name": "Adrian Pillinger", "geo": null, "id": 147468257249603600, "id_str": "147468257249603585", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627986895/E1237470-89B6-4166-8287-C409ABF403B6_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627986895/E1237470-89B6-4166-8287-C409ABF403B6_normal", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "Node is maturing, well worth a look http://t.co/aAtT4xuC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:03:52 +0000", "from_user": "AnetteDK", "from_user_id": 18072012, "from_user_id_str": "18072012", "from_user_name": "AnetteDK", "geo": null, "id": 147466937818021900, "id_str": "147466937818021888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/67189277/_L2H9733_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/67189277/_L2H9733_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @WindowsAzure: Did you miss the Learn #Windows #Azure event Tuesday? The video is up on @ch9 http://t.co/UL6e4F5k #SQLAzure #nodejs /via @SyntaxC4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:00:16 +0000", "from_user": "linuxfoundation", "from_user_id": 14706299, "from_user_id_str": "14706299", "from_user_name": "The Linux Foundation", "geo": null, "id": 147466030875295740, "id_str": "147466030875295744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/53940106/linuxfoundation_logo_BOX_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/53940106/linuxfoundation_logo_BOX_normal.jpg", "source": "<a href="http://sproutsocial.com" rel="nofollow">Sprout Social</a>", "text": "Top 10 OSS Projects of '11. http://t.co/FWeyc8TF Did your fave make the list? #nginx #jQuery #linux #nodejs #puppet...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:00:00 +0000", "from_user": "geddesign", "from_user_id": 39607761, "from_user_id_str": "39607761", "from_user_name": "Dave Geddes", "geo": null, "id": 147465964064210940, "id_str": "147465964064210944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1644883657/dave_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644883657/dave_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Growing Up http://t.co/PD4JktSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:53:04 +0000", "from_user": "estilocss", "from_user_id": 148763456, "from_user_id_str": "148763456", "from_user_name": "Jorge", "geo": null, "id": 147464219636412400, "id_str": "147464219636412416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1275906340/Sin_t_tulo-1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1275906340/Sin_t_tulo-1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "I don't know how to install nodejs on window, someone help me!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:48:20 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147463028332429300, "id_str": "147463028332429313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "rack (0.1.3): http://t.co/37jD5VeH NodeJS Cluster Abstraction Layer http://t.co/ZeEGmC5q", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:46:04 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 147462458653687800, "id_str": "147462458653687808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Growing Up http://t.co/PD4JktSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:45:52 +0000", "from_user": "pepoviola", "from_user_id": 135963582, "from_user_id_str": "135963582", "from_user_name": "pepo", "geo": null, "id": 147462406363287550, "id_str": "147462406363287552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/843344898/tux-logo_thumbnail_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/843344898/tux-logo_thumbnail_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Growing Up http://t.co/PD4JktSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:41:52 +0000", "from_user": "gregferrell", "from_user_id": 20506446, "from_user_id_str": "20506446", "from_user_name": "Greg Ferrell", "geo": null, "id": 147461403068989440, "id_str": "147461403068989441", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1182555305/greg_avatar_mono_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1182555305/greg_avatar_mono_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Yay! I love how fast node is coming along. RT @nodejs: Growing Up http://t.co/yoyYZlMC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:40:19 +0000", "from_user": "kevingorski", "from_user_id": 14825994, "from_user_id_str": "14825994", "from_user_name": "Kevin Gorski", "geo": null, "id": 147461011933368320, "id_str": "147461011933368320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1213954571/LookLeft_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1213954571/LookLeft_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Growing Up http://t.co/PD4JktSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:38:13 +0000", "from_user": "nodejs", "from_user_id": 91985735, "from_user_id_str": "91985735", "from_user_name": "node js", "geo": null, "id": 147460480989011970, "id_str": "147460480989011968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1437021459/nodejs-dark_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1437021459/nodejs-dark_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Growing Up http://t.co/PD4JktSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:33:16 +0000", "from_user": "HersonHN", "from_user_id": 265081634, "from_user_id_str": "265081634", "from_user_name": "Herson \\u2713", "geo": null, "id": 147459238854279170, "id_str": "147459238854279169", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692134183/megaman_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692134183/megaman_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "mongoDB + nodeJS = OMG!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:31:30 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147458791905038340, "id_str": "147458791905038336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jankeromnes: @nodejs is growing up http://t.co/7w3llgLA cc @NodeJsCommunity", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:29:43 +0000", "from_user": "__Pol", "from_user_id": 21239507, "from_user_id_str": "21239507", "from_user_name": "Apolinar R\\u00EDos", "geo": null, "id": 147458343559106560, "id_str": "147458343559106561", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/624570327/yo5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/624570327/yo5_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @neojp: Un poco tarde, pero hicimos funcionar el script en nodejs usando @nodester http://t.co/0Bdqh4et #mejorandola // funciona", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:28:38 +0000", "from_user": "neojp", "from_user_id": 818502, "from_user_id_str": "818502", "from_user_name": "Joan Piedra", "geo": null, "id": 147458071097122800, "id_str": "147458071097122816", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/393394330/ava_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/393394330/ava_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Un poco tarde, pero hicimos funcionar el script en nodejs usando @nodester http://t.co/yE3jMR6I #mejorandola", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:25:32 +0000", "from_user": "kevino80", "from_user_id": 16582535, "from_user_id_str": "16582535", "from_user_name": "Kevin O'Hara", "geo": null, "id": 147457291736723460, "id_str": "147457291736723456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1525738813/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1525738813/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@shobyabdi @michaelforce I also second #nodejs for a heroku project. I may have a Salesforce/node module coming out soon... ;)", "to_user": "shobyabdi", "to_user_id": 7135862, "to_user_id_str": "7135862", "to_user_name": "shoby abdi", "in_reply_to_status_id": 147452972123697150, "in_reply_to_status_id_str": "147452972123697152"}, +{"created_at": "Thu, 15 Dec 2011 23:17:06 +0000", "from_user": "Outsideris", "from_user_id": 7932892, "from_user_id_str": "7932892", "from_user_name": "Outsider", "geo": null, "id": 147455170459082750, "id_str": "147455170459082753", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1646891342/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646891342/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Node v0.6.6 released http://t.co/LGH5FqF6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:09:55 +0000", "from_user": "LocuraSabalera", "from_user_id": 166539088, "from_user_id_str": "166539088", "from_user_name": "Locura Sabalera", "geo": null, "id": 147453359652212740, "id_str": "147453359652212736", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1521623223/footerlogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1521623223/footerlogo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@freddier pude arrancar nodejs.. veo solo q llega el mje en el srv xqveo debug - websocket writing 1:: pero en la web no me cambia el text", "to_user": "freddier", "to_user_id": 16742912, "to_user_id_str": "16742912", "to_user_name": "John Freddy Vega"}, +{"created_at": "Thu, 15 Dec 2011 23:05:11 +0000", "from_user": "easylogic", "from_user_id": 52672213, "from_user_id_str": "52672213", "from_user_name": "easylogic", "geo": null, "id": 147452170088882180, "id_str": "147452170088882176", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1129302369/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1129302369/image_normal.jpg", "source": "<a href="http://www.nibirutech.com" rel="nofollow">TwitBird</a>", "text": "RT @nodejs Node v0.6.6 released http://t.co/Eoy9LKUa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:01:55 +0000", "from_user": "sgb004", "from_user_id": 189407877, "from_user_id_str": "189407877", "from_user_name": "sgb", "geo": null, "id": 147451347862683650, "id_str": "147451347862683648", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1564407264/DSC02567_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1564407264/DSC02567_normal.JPG", "source": "<a href="http://connect.mediastre.am/" rel="nofollow">En Vivo Mediastream</a>", "text": "perdon por insistir tanto pero no conocen un webhost con nodeJs gratuito o de paga que sea bueno? #mejorandola", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:01:07 +0000", "from_user": "shamoons", "from_user_id": 20744357, "from_user_id_str": "20744357", "from_user_name": "Shamoon Siddiqui", "geo": null, "id": 147451148276727800, "id_str": "147451148276727808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1568292716/shamoon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1568292716/shamoon_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "How do I structure TDD in #NodeJS? http://t.co/6DFGCxxx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:01:03 +0000", "from_user": "NodeJSAtSO", "from_user_id": 292124941, "from_user_id_str": "292124941", "from_user_name": "Node JS @ SO", "geo": null, "id": 147451127993073660, "id_str": "147451127993073664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1336740490/sprites_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1336740490/sprites_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "nodejs background task http://t.co/ErZszVxE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:57:58 +0000", "from_user": "xiaolin", "from_user_id": 8655372, "from_user_id_str": "8655372", "from_user_name": "xiaolin", "geo": null, "id": 147450355800743940, "id_str": "147450355800743936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/295047284/doggy_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/295047284/doggy_small_normal.jpg", "source": "<a href="http://icebirdapp.com/" rel="nofollow">Icebird for iPhone</a>", "text": "Node v0.6.6 released http://t.co/AmtQgWQX (via @nodejs)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:56:33 +0000", "from_user": "estilocss", "from_user_id": 148763456, "from_user_id_str": "148763456", "from_user_name": "Jorge", "geo": null, "id": 147449999037444100, "id_str": "147449999037444096", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1275906340/Sin_t_tulo-1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1275906340/Sin_t_tulo-1_normal.png", "source": "<a href="http://connect.mediastre.am/" rel="nofollow">En Vivo Mediastream</a>", "text": "quien sepa ingles, que busque nodejs en youtube y vera muchos videos que valen la pena :) #mejorandola", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:53:47 +0000", "from_user": "juanDJGL", "from_user_id": 217309383, "from_user_id_str": "217309383", "from_user_name": "$juand", "geo": null, "id": 147449301994455040, "id_str": "147449301994455040", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1642316109/IMG_0409_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642316109/IMG_0409_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@freddier Otro mejorando.la para el pr\\u00F3ximo jueves de nodejs", "to_user": "freddier", "to_user_id": 16742912, "to_user_id_str": "16742912", "to_user_name": "John Freddy Vega", "in_reply_to_status_id": 147448738351296500, "in_reply_to_status_id_str": "147448738351296512"}, +{"created_at": "Thu, 15 Dec 2011 22:51:13 +0000", "from_user": "FernandoEscher", "from_user_id": 21280033, "from_user_id_str": "21280033", "from_user_name": "Fernando Ir\\u00EDas", "geo": null, "id": 147448655018856450, "id_str": "147448655018856448", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1223839373/yo_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1223839373/yo_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "@cvander @freddier Aqu\\u00ED los recursos que van mencionando http://t.co/icdaKek3 #mejorandola", "to_user": "cvander", "to_user_id": 817789, "to_user_id_str": "817789", "to_user_name": "Christian Van Der H"}, +{"created_at": "Thu, 15 Dec 2011 22:50:22 +0000", "from_user": "saiaman01", "from_user_id": 291670134, "from_user_id_str": "291670134", "from_user_name": "Albuquerque Rui", "geo": null, "id": 147448439326781440, "id_str": "147448439326781441", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1369666774/7825_1172004455108_1077905329_30455508_3690179_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1369666774/7825_1172004455108_1077905329_30455508_3690179_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: For those wondering, the Rackspace Cloud Monitoring product is mostly written in #Nodejs (Sign up for the private beta!)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:47:07 +0000", "from_user": "xploit29", "from_user_id": 14838532, "from_user_id_str": "14838532", "from_user_name": "Irving Kcam Reyna", "geo": null, "id": 147447623324934140, "id_str": "147447623324934144", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1176199169/Jackie_-_Medio_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1176199169/Jackie_-_Medio_normal.jpg", "source": "<a href="http://connect.mediastre.am/" rel="nofollow">En Vivo Mediastream</a>", "text": "Manual de instalaci\\u00F3n de NodeJS en Windows 7 http://t.co/K88k3dAp #Mejorandola #NodeJS #mejorandola", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:43:29 +0000", "from_user": "victorgarcia317", "from_user_id": 185983925, "from_user_id_str": "185983925", "from_user_name": "V\\u00EDctor Garc\\u00EDa", "geo": null, "id": 147446710656970750, "id_str": "147446710656970752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1612192846/tux-kubuntu_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612192846/tux-kubuntu_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@juljupy i'm blue with nodejs", "to_user": "juljupy", "to_user_id": 82234876, "to_user_id_str": "82234876", "to_user_name": "Julio De Hoyos"}, +{"created_at": "Thu, 15 Dec 2011 22:40:57 +0000", "from_user": "jamescarr", "from_user_id": 12982472, "from_user_id_str": "12982472", "from_user_name": "jamescarr", "geo": null, "id": 147446072598466560, "id_str": "147446072598466560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/455220875/1udWUdsKPCKNBAbXofnULKziF2-mqY85th5ZQDz0f3GuF4bNXpmEOjGmVRI0Y9yO_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/455220875/1udWUdsKPCKNBAbXofnULKziF2-mqY85th5ZQDz0f3GuF4bNXpmEOjGmVRI0Y9yO_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: For those wondering, the Rackspace Cloud Monitoring product is mostly written in #Nodejs (Sign up for the private beta!)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:38:26 +0000", "from_user": "Cebolinhabh", "from_user_id": 53163650, "from_user_id_str": "53163650", "from_user_name": "Thiago Miranda", "geo": null, "id": 147445437652156400, "id_str": "147445437652156416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693643006/mario_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693643006/mario_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: For those wondering, the Rackspace Cloud Monitoring product is mostly written in #Nodejs (Sign up for the private beta!)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:36:56 +0000", "from_user": "sh1mmer", "from_user_id": 63803, "from_user_id_str": "63803", "from_user_name": "Tom Hughes-Croucher", "geo": null, "id": 147445060768763900, "id_str": "147445060768763904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1595178869/IMG_2476_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1595178869/IMG_2476_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: For those wondering, the Rackspace Cloud Monitoring product is mostly written in #Nodejs (Sign up for the private beta!)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:36:21 +0000", "from_user": "_alejandromg", "from_user_id": 53717698, "from_user_id_str": "53717698", "from_user_name": "Alejandro Morales", "geo": null, "id": 147444915633274880, "id_str": "147444915633274880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1473584095/2011-07-27-214648m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1473584095/2011-07-27-214648m_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pquerna: For those wondering, the Rackspace Cloud Monitoring product is mostly written in #Nodejs (Sign up for the private beta!)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:18:25 +0000", "from_user": "andrew_j_stone", "from_user_id": 318079932, "from_user_id_str": "318079932", "from_user_name": "Andrew J. Stone", "geo": null, "id": 147440400083337200, "id_str": "147440400083337217", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1598642373/284659_696310082096_24501632_36175371_4924429_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598642373/284659_696310082096_24501632_36175371_4924429_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @argv0: ---> Building nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 21:52:45 +0000", "from_user": "jaguilera_", "from_user_id": 337691375, "from_user_id_str": "337691375", "from_user_name": "Jes\\u00FAs Aguilera", "geo": null, "id": 147433941140381700, "id_str": "147433941140381698", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1673129171/yo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673129171/yo_normal.jpg", "source": "<a href="http://connect.mediastre.am/" rel="nofollow">En Vivo Mediastream</a>", "text": "Directorio de recursos para #nodejs http://t.co/qUHwyhkw #mejorandola", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 21:34:48 +0000", "from_user": "3rdEden", "from_user_id": 14350255, "from_user_id_str": "14350255", "from_user_name": "Arnout Kazemier", "geo": null, "id": 147429425087119360, "id_str": "147429425087119360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "muhahah: automatic log namespacing is working beautifully again: http://t.co/HJRgv3wj #nodejs http://t.co/TMNpUwYd will release soon.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} + +, +{"created_at": "Mon, 19 Dec 2011 16:31:58 +0000", "from_user": "maciejmalecki", "from_user_id": 263755874, "from_user_id_str": "263755874", "from_user_name": "Maciej Ma\\u0142ecki", "geo": null, "id": 148802765618028540, "id_str": "148802765618028544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1547225919/IMG_20110917_192531mt_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1547225919/IMG_20110917_192531mt_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@jvduf @nodejitsu Are these the 'rule the world' or 'rule the universe' plans? I never remember which ones are which :(", "to_user": "jvduf", "to_user_id": 41679937, "to_user_id_str": "41679937", "to_user_name": "Jeroen van Duffelen", "in_reply_to_status_id": 148801195006373900, "in_reply_to_status_id_str": "148801195006373888"}, +{"created_at": "Mon, 19 Dec 2011 16:25:44 +0000", "from_user": "jvduf", "from_user_id": 41679937, "from_user_id_str": "41679937", "from_user_name": "Jeroen van Duffelen", "geo": null, "id": 148801195006373900, "id_str": "148801195006373888", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1251159750/Jeroen_van_Duffelen_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1251159750/Jeroen_van_Duffelen_normal.jpeg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@nodejitsu masterplans... http://t.co/Y2BCu0Ww", "to_user": "nodejitsu", "to_user_id": 157442008, "to_user_id_str": "157442008", "to_user_name": "Nodejitsu"}, +{"created_at": "Mon, 19 Dec 2011 16:25:38 +0000", "from_user": "carlospeix", "from_user_id": 64229525, "from_user_id_str": "64229525", "from_user_name": "Carlos Peix", "geo": null, "id": 148801172684288000, "id_str": "148801172684288000", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1224493755/DSC02349cc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1224493755/DSC02349cc_normal.jpg", "source": "<a href="http://www.digsby.com/?utm_campaign=twitter" rel="nofollow">Digsby</a>", "text": "@jfroma: RT @o_amp_o: Intersect - A multi-user audio sequencer using #nodejs, #socketio and #audiolet. http://t.co/5CjiznrB cc @sebarenzi", "to_user": "jfroma", "to_user_id": 26559849, "to_user_id_str": "26559849", "to_user_name": "Jos\\u00E9 F. Romaniello"}, +{"created_at": "Mon, 19 Dec 2011 15:52:40 +0000", "from_user": "BrackishLake", "from_user_id": 302234570, "from_user_id_str": "302234570", "from_user_name": "Chris@BrackishLake", "geo": null, "id": 148792873444319230, "id_str": "148792873444319232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1528769415/Untitled-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1528769415/Untitled-2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@nodejitsu Are all services nominal? Our app can't seem to connect to the db all the sudden.", "to_user": "nodejitsu", "to_user_id": 157442008, "to_user_id_str": "157442008", "to_user_name": "Nodejitsu"}, +{"created_at": "Mon, 19 Dec 2011 14:28:03 +0000", "from_user": "benkross", "from_user_id": 16913955, "from_user_id_str": "16913955", "from_user_name": "Ben Ross", "geo": null, "id": 148771582389661700, "id_str": "148771582389661696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1120515336/Ben_Ad_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1120515336/Ben_Ad_normal.jpg", "source": "<a href="http://paper.li" rel="nofollow">Paper.li</a>", "text": "RT @nodejitsu: Nodejitsu Ninjas is out! http://t.co/PBus8pPz \\u25B8 Top stories today via @ddtrejo @cramforce @joemccann @danyork @sheynkman", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:58:53 +0000", "from_user": "bdryanovski", "from_user_id": 375704816, "from_user_id_str": "375704816", "from_user_name": "Bozhidar Dryanovski", "geo": null, "id": 148764242051469300, "id_str": "148764242051469313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1562056749/Cookie_Monster_by_ZoeWieZo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1562056749/Cookie_Monster_by_ZoeWieZo_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "That made my day. http://t.co/dQz7AsU6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:18:58 +0000", "from_user": "jfroma", "from_user_id": 26559849, "from_user_id_str": "26559849", "from_user_name": "Jos\\u00E9 F. Romaniello", "geo": null, "id": 148754196752109570, "id_str": "148754196752109568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1152169901/avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1152169901/avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @o_amp_o: Intersect - A multi-user audio sequencer using #nodejs, #socketio and #audiolet. http://t.co/2zM3gb5U", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:18:50 +0000", "from_user": "nodejitsu", "from_user_id": 157442008, "from_user_id_str": "157442008", "from_user_name": "Nodejitsu", "geo": null, "id": 148754162203635700, "id_str": "148754162203635713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "source": "<a href="http://paper.li" rel="nofollow">Paper.li</a>", "text": "Nodejitsu Ninjas is out! http://t.co/PBus8pPz \\u25B8 Top stories today via @ddtrejo @cramforce @joemccann @danyork @sheynkman", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:18:18 +0000", "from_user": "frr149", "from_user_id": 105482552, "from_user_id_str": "105482552", "from_user_name": "Fernando Rodr\\u00EDguez", "geo": null, "id": 148754026664693760, "id_str": "148754026664693760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1617824239/portrait_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1617824239/portrait_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Intersect - A multi-user audio sequencer using #nodejs, #socketio and #audiolet. http://t.co/0uVAMXGA http://t.co/RqWyYTJM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:17:22 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148753790647025660, "id_str": "148753790647025664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @o_amp_o: Intersect - A multi-user audio sequencer using #nodejs, #socketio and #audiolet. http://t.co/2zM3gb5U", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:47:06 +0000", "from_user": "o_amp_o", "from_user_id": 19656815, "from_user_id_str": "19656815", "from_user_name": "Joe Turner", "geo": null, "id": 148746175862939650, "id_str": "148746175862939648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/602345265/joe_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/602345265/joe_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Intersect - A multi-user audio sequencer using #nodejs, #socketio and #audiolet. http://t.co/2zM3gb5U", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:04:58 +0000", "from_user": "nodejitsu", "from_user_id": 157442008, "from_user_id_str": "157442008", "from_user_name": "Nodejitsu", "geo": null, "id": 148705374361493500, "id_str": "148705374361493506", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @robhawkes: @marak Played with hook.io over the weekend (finally). Loving the concept of splitting my app into component parts!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:42:40 +0000", "from_user": "nodejitsu", "from_user_id": 157442008, "from_user_id_str": "157442008", "from_user_name": "Nodejitsu", "geo": null, "id": 148699762365972480, "id_str": "148699762365972480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @marak: I just added UNIX pipe support to hook.io so you can now do stuff like: tail foo.txt -f | hookio and hookio -p | grep twitter::tweet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:59:19 +0000", "from_user": "marak", "from_user_id": 110465841, "from_user_id_str": "110465841", "from_user_name": "marak squires", "geo": null, "id": 148688853878845440, "id_str": "148688853878845440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1387685536/maraknormal_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1387685536/maraknormal_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Having a nice hook.io chat with @robhawkes on #nodejitsu freenode IRC !!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:09:21 +0000", "from_user": "dezoy", "from_user_id": 123176965, "from_user_id_str": "123176965", "from_user_name": "Anton Shestak", "geo": null, "id": 148676276285227000, "id_str": "148676276285227008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.friend.ly" rel="nofollow">friend.ly</a>", "text": "My #7faves on Twitter are @engadget @tjholowaychuk @felixge @nodejitsu @Kifozavr @nodejs @creationix -> http://t.co/pfoUNhvY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:08:00 +0000", "from_user": "_creative_area_", "from_user_id": 237257722, "from_user_id_str": "237257722", "from_user_name": "Creative Area", "geo": null, "id": 148660838058827780, "id_str": "148660838058827776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1213653822/logo_800x800_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1213653822/logo_800x800_normal.png", "source": "<a href="http://paper.li" rel="nofollow">Paper.li</a>", "text": "The Creative Area Weekly nouvelle \\u00E9dition http://t.co/YiWQu0Ej \\u25B8 Aujourd'hui \\u00E0 la UNE: @sencha @bocoup @nodejitsu @jaubourg @modernizr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:22:03 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148634176210472960, "id_str": "148634176210472961", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @dadicool RESTeasy: Test any API with APIeasy http://t.co/0mPC2aaW -< with such a great ecosystem, #>em /em< is starting to feel...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:12:56 +0000", "from_user": "dadicool", "from_user_id": 14200949, "from_user_id_str": "14200949", "from_user_name": "Dali Kilani", "geo": null, "id": 148631880982470660, "id_str": "148631880982470656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/86577298/portrait_dali_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/86577298/portrait_dali_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "RESTeasy: Test any API with APIeasy http://t.co/XhMMayoW -> with such a great ecosystem, #nodejs is starting to feel unavoidable ...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:34:24 +0000", "from_user": "luis2103", "from_user_id": 119916622, "from_user_id_str": "119916622", "from_user_name": "Luis Sancho", "geo": null, "id": 148591984070758400, "id_str": "148591984070758400", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1629425602/foto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629425602/foto_normal.jpg", "source": "<a href="http://reptincel.com" rel="nofollow">TwittTwittTwitt</a>", "text": "RT @jquery_addict: #jquery del lado server http://t.co/TrnN8Mum #mejorandola #nodejs (via @thesequencer)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:12:01 +0000", "from_user": "thesequencer", "from_user_id": 299406941, "from_user_id_str": "299406941", "from_user_name": "cristian g. coronel ", "geo": null, "id": 148586350243880960, "id_str": "148586350243880960", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1580510176/yo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580510176/yo_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "#jquery del lado server http://t.co/gizcy0C0 #mejorandola #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:33:50 +0000", "from_user": "donwb", "from_user_id": 21307435, "from_user_id_str": "21307435", "from_user_name": "Don Browning", "geo": null, "id": 148561641326395400, "id_str": "148561641326395392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1180549025/Profile_Pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1180549025/Profile_Pic_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "@larrywanzer @markph ya man.. go here for an overview of the stuff we did.. I can add you to our github repo also.. http://t.co/xFXlEPl5", "to_user": "larrywanzer", "to_user_id": 31208028, "to_user_id_str": "31208028", "to_user_name": "Larry Wanzer", "in_reply_to_status_id": 148559446132535300, "in_reply_to_status_id_str": "148559446132535297"}, +{"created_at": "Sun, 18 Dec 2011 18:52:48 +0000", "from_user": "robhawkes", "from_user_id": 14442542, "from_user_id_str": "14442542", "from_user_name": "Rob Hawkes", "geo": null, "id": 148475818811731970, "id_str": "148475818811731968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1082121604/Temporary_Avatar__Alt__-_600px_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1082121604/Temporary_Avatar__Alt__-_600px_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Getting stuck in with @Nodejitsu's hook.io. Taken a little while to get up to speed but it's starting to make sense.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:40:16 +0000", "from_user": "NodeKohai", "from_user_id": 299396879, "from_user_id_str": "299396879", "from_user_name": "Ko Hai", "geo": null, "id": 148382066009063420, "id_str": "148382066009063424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1357415286/saupload_happy_robot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1357415286/saupload_happy_robot_normal.jpg", "source": "<a href="http://github.com/nodejitsu/kohai" rel="nofollow">NodeKohai</a>", "text": "@mattcollins84 Did you try @nodejitsu, my creator?", "to_user": "mattcollins84", "to_user_id": 236086111, "to_user_id_str": "236086111", "to_user_name": "Matthew Collins"}, +{"created_at": "Sun, 18 Dec 2011 06:38:30 +0000", "from_user": "adrienneleigh", "from_user_id": 557563, "from_user_id_str": "557563", "from_user_name": "\\u01DDuu\\u01DD\\u0131\\u0279p\\u0250", "geo": null, "id": 148291026270949380, "id_str": "148291026270949377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/53518170/5b59018b13e51adf9369b9bdf0065e66_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/53518170/5b59018b13e51adf9369b9bdf0065e66_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@nodejitsu I just reserved my username, 'adrienneleigh', and it says to contact you. (I'm an early signup.)", "to_user": "nodejitsu", "to_user_id": 157442008, "to_user_id_str": "157442008", "to_user_name": "Nodejitsu"}, +{"created_at": "Sun, 18 Dec 2011 05:19:04 +0000", "from_user": "velvetflair", "from_user_id": 14651376, "from_user_id_str": "14651376", "from_user_name": "Shahriar Hyder", "geo": null, "id": 148271035056267260, "id_str": "148271035056267266", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1016584964/4487ddc4-d6c0-48ad-aad5-fd663766182b_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1016584964/4487ddc4-d6c0-48ad-aad5-fd663766182b_normal.png", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "node docs :: What are \"truthy\" and \"falsy\" values? http://t.co/LwvXrArk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:28:55 +0000", "from_user": "nodejitsu", "from_user_id": 157442008, "from_user_id_str": "157442008", "from_user_name": "Nodejitsu", "geo": null, "id": 148152717586608130, "id_str": "148152717586608128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ryah: @nodejs people should be following @indutny - he's been doing great core work the last few months", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:01:17 +0000", "from_user": "marak", "from_user_id": 110465841, "from_user_id_str": "110465841", "from_user_name": "marak squires", "geo": null, "id": 148115566492790800, "id_str": "148115566492790784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1387685536/maraknormal_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1387685536/maraknormal_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@pksunkara @nodejitsu That's neat. I much prefer that you can just type `jitsu deploy` once and then spam the enter key for all prompts :-)", "to_user": "pksunkara", "to_user_id": 122074153, "to_user_id_str": "122074153", "to_user_name": "Pavan Kumar Sunkara", "in_reply_to_status_id": 148093498070020100, "in_reply_to_status_id_str": "148093498070020097"}, +{"created_at": "Sat, 17 Dec 2011 17:33:36 +0000", "from_user": "pksunkara", "from_user_id": 122074153, "from_user_id_str": "122074153", "from_user_name": "Pavan Kumar Sunkara", "geo": null, "id": 148093498070020100, "id_str": "148093498070020097", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1427115741/181a5dbeda025f718df4d37bf522ed3d_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1427115741/181a5dbeda025f718df4d37bf522ed3d_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@nodejitsu takes 26s to create and deploy a new app, #nodejs", "to_user": "nodejitsu", "to_user_id": 157442008, "to_user_id_str": "157442008", "to_user_name": "Nodejitsu"}, +{"created_at": "Sat, 17 Dec 2011 14:48:26 +0000", "from_user": "Agarwal_Ankur", "from_user_id": 44179194, "from_user_id_str": "44179194", "from_user_name": "Ankur Agarwal", "geo": null, "id": 148051935155601400, "id_str": "148051935155601408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/310528056/aa1_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/310528056/aa1_normal.JPG", "source": "<a href="http://www.shareaholic.com" rel="nofollow">shareaholic app</a>", "text": "Scaling Isomorphic Javascript http://t.co/hkH7NA5w - scaling node.js applications one callback at a time. - http://t.co/0aEr1pQj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:00:23 +0000", "from_user": "pedrogte", "from_user_id": 16401507, "from_user_id_str": "16401507", "from_user_name": "Pedro Teixeira", "geo": null, "id": 147964346759258100, "id_str": "147964346759258112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1591778458/DSC02359-2_copy_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591778458/DSC02359-2_copy_normal.JPG", "source": "<a href="http://github.com/nodejitsu/kohai" rel="nofollow">NodeKohai</a>", "text": "RT @NodeKohai: .@astalwick We have stats! http://t.co/UKu7kYEJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:22:49 +0000", "from_user": "NodeKohai", "from_user_id": 299396879, "from_user_id_str": "299396879", "from_user_name": "Ko Hai", "geo": null, "id": 147909593387896830, "id_str": "147909593387896832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1357415286/saupload_happy_robot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1357415286/saupload_happy_robot_normal.jpg", "source": "<a href="http://github.com/nodejitsu/kohai" rel="nofollow">NodeKohai</a>", "text": ".@astalwick We have stats! http://t.co/UKu7kYEJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:49:51 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 147840897063723000, "id_str": "147840897063723008", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "nodejitsu-api (0.2.1-1): http://t.co/8LH46M0a nodejitsu API client wrapper", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:24:04 +0000", "from_user": "Xogost", "from_user_id": 126010186, "from_user_id_str": "126010186", "from_user_name": "Juan Camilo Martinez", "geo": null, "id": 147804209411141630, "id_str": "147804209411141633", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699288836/akane_y_yop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699288836/akane_y_yop_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ajamaica: Por cierto encontre Forever una manera de hacer deploy de Node.js sencillos http://t.co/47iMGc04", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:23:01 +0000", "from_user": "ajamaica", "from_user_id": 776449, "from_user_id_str": "776449", "from_user_name": "Arturo Jamaica", "geo": null, "id": 147803947095171070, "id_str": "147803947095171072", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1478040314/8822-huge_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1478040314/8822-huge_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "Por cierto encontre Forever una manera de hacer deploy de Node.js sencillos http://t.co/47iMGc04", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:09:40 +0000", "from_user": "diorahman", "from_user_id": 17058778, "from_user_id_str": "17058778", "from_user_name": "Dhi Aurrahman", "geo": null, "id": 147725087351640060, "id_str": "147725087351640064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1580655908/dio_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580655908/dio_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "it seems @nodejitsu haibu is nice, but @Nodester is great too", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:20:51 +0000", "from_user": "benyblack", "from_user_id": 19531113, "from_user_id_str": "19531113", "from_user_name": "Behnam Yousefi", "geo": null, "id": 147682605649764350, "id_str": "147682605649764353", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1225716885/ME4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225716885/ME4_normal.png", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "Proxying HTTP and Websockets in Node http://t.co/CBkArUdC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:20:50 +0000", "from_user": "benyblack", "from_user_id": 19531113, "from_user_id_str": "19531113", "from_user_name": "Behnam Yousefi", "geo": null, "id": 147682602353033200, "id_str": "147682602353033216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1225716885/ME4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225716885/ME4_normal.png", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "jsdom + jQuery in 5 lines with node.js http://t.co/CBkArUdC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:51:58 +0000", "from_user": "NodeKohai", "from_user_id": 299396879, "from_user_id_str": "299396879", "from_user_name": "Ko Hai", "geo": null, "id": 147660238592544770, "id_str": "147660238592544768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1357415286/saupload_happy_robot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1357415286/saupload_happy_robot_normal.jpg", "source": "<a href="http://github.com/nodejitsu/kohai" rel="nofollow">NodeKohai</a>", "text": "@jameswebmaster Did you try @nodejitsu, top node.js hosting platform?", "to_user": "jameswebmaster", "to_user_id": 103130733, "to_user_id_str": "103130733", "to_user_name": "Maikom"}, +{"created_at": "Fri, 16 Dec 2011 12:38:54 +0000", "from_user": "michielkalkman", "from_user_id": 14617589, "from_user_id_str": "14617589", "from_user_name": "Michiel Kalkman", "geo": null, "id": 147656950358872060, "id_str": "147656950358872065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1168254578/avatar2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1168254578/avatar2_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "RT @sborsje: Very interesting read: Scaling Isomorphic Javascript http://t.co/LIPYaOs6 (via @jvduf)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 05:09:05 +0000", "from_user": "alexindigo", "from_user_id": 26664625, "from_user_id_str": "26664625", "from_user_name": "Alex Indigo", "geo": null, "id": 147543749663277060, "id_str": "147543749663277058", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/835829223/me_by_igor_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/835829223/me_by_igor_small_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@edwardsanchez even simpler than Monit or haibu http://t.co/6U8HPieG", "to_user": "edwardsanchez", "to_user_id": 159394189, "to_user_id_str": "159394189", "to_user_name": "Edward Sanchez"}, +{"created_at": "Fri, 16 Dec 2011 00:15:46 +0000", "from_user": "diorahman", "from_user_id": 17058778, "from_user_id_str": "17058778", "from_user_name": "Dhi Aurrahman", "geo": null, "id": 147469933704515600, "id_str": "147469933704515584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1580655908/dio_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580655908/dio_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Ahhh, @nodejitsu is still the coolest :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:33:17 +0000", "from_user": "rootslab", "from_user_id": 265434730, "from_user_id_str": "265434730", "from_user_name": "guglielmo ferri", "geo": null, "id": 147459241324707840, "id_str": "147459241324707840", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1271109549/funny-pictures-anmilas-cats-white-chinese-cat_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1271109549/funny-pictures-anmilas-cats-white-chinese-cat_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@_nss_ gi\\u00E0 non mi ricordo bene, hai seguito questa struttura tu ?\\ndai un occhio! http://t.co/d4PQy4m2", "to_user": "_Nss_", "to_user_id": 104966372, "to_user_id_str": "104966372", "to_user_name": "Luca Lanziani"}, +{"created_at": "Thu, 15 Dec 2011 22:28:29 +0000", "from_user": "ikioteck", "from_user_id": 276776806, "from_user_id_str": "276776806", "from_user_name": "Israel Medina", "geo": null, "id": 147442934592188400, "id_str": "147442934592188416", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1299115366/kio_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1299115366/kio_normal.jpg", "source": "<a href="http://connect.mediastre.am/" rel="nofollow">En Vivo Mediastream</a>", "text": "Que onda con nodejitsu? #mejorandola", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:48:34 +0000", "from_user": "NodeKohai", "from_user_id": 299396879, "from_user_id_str": "299396879", "from_user_name": "Ko Hai", "geo": null, "id": 147402689364504580, "id_str": "147402689364504577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1357415286/saupload_happy_robot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1357415286/saupload_happy_robot_normal.jpg", "source": "<a href="http://github.com/nodejitsu/kohai" rel="nofollow">NodeKohai</a>", "text": ".@saadiq My telemetry module quantifies node popularity by number of razy IRC parties at #nodejitsu!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:38:10 +0000", "from_user": "webOS_Touchpad", "from_user_id": 103268768, "from_user_id_str": "103268768", "from_user_name": "webOS Touchpad", "geo": null, "id": 147384972179812350, "id_str": "147384972179812353", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1575638238/Screen_shot_2011-10-06_at_12.04.08_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575638238/Screen_shot_2011-10-06_at_12.04.08_PM_normal.png", "source": "<a href="http://paper.li" rel="nofollow">Paper.li</a>", "text": "The #webOS Community Daily is out! http://t.co/KzKyncDZ \\u25B8 Top stories today via @nodejitsu @mundodostablets @miwendt @bwabeinfo @acarback", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 14:47:57 +0000", "from_user": "kilianciuffolo", "from_user_id": 26379380, "from_user_id_str": "26379380", "from_user_name": "Kilian Ciuffolo", "geo": null, "id": 147327035793096700, "id_str": "147327035793096706", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1536892106/programma_101_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1536892106/programma_101_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@nodejitsu rss feed is literally gone crazy", "to_user": "nodejitsu", "to_user_id": 157442008, "to_user_id_str": "157442008", "to_user_name": "Nodejitsu"}, +{"created_at": "Thu, 15 Dec 2011 14:46:22 +0000", "from_user": "rikkertkoppes", "from_user_id": 22610288, "from_user_id_str": "22610288", "from_user_name": "Rikkert Koppes", "geo": null, "id": 147326636658929660, "id_str": "147326636658929665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/102853028/icon_96_96_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/102853028/icon_96_96_normal.png", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "RT @sborsje: Very interesting read: Scaling Isomorphic Javascript http://t.co/LIPYaOs6 (via @jvduf)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 14:39:58 +0000", "from_user": "sborsje", "from_user_id": 7642092, "from_user_id_str": "7642092", "from_user_name": "Stefan Borsje", "geo": null, "id": 147325025962295300, "id_str": "147325025962295296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/579249133/avatar_pro_200x200_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/579249133/avatar_pro_200x200_normal.png", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "Very interesting read: Scaling Isomorphic Javascript http://t.co/LIPYaOs6 (via @jvduf)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 07:52:18 +0000", "from_user": "nodejitsu", "from_user_id": 157442008, "from_user_id_str": "157442008", "from_user_name": "Nodejitsu", "geo": null, "id": 147222433450037250, "id_str": "147222433450037250", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Scheduled maintenance is starting now. All systems operational in 1-2 hours.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 07:11:24 +0000", "from_user": "EmilStenstrom", "from_user_id": 16038461, "from_user_id_str": "16038461", "from_user_name": "Emil Stenstr\\u00F6m", "geo": null, "id": 147212144188981250, "id_str": "147212144188981248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1570910143/emil_stenstrom_2011-09-20_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1570910143/emil_stenstrom_2011-09-20_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@nodejitsu Your RSS feed is 100% borked. Please fix!", "to_user": "nodejitsu", "to_user_id": 157442008, "to_user_id_str": "157442008", "to_user_name": "Nodejitsu"}, +{"created_at": "Thu, 15 Dec 2011 06:40:45 +0000", "from_user": "jvduf", "from_user_id": 41679937, "from_user_id_str": "41679937", "from_user_name": "Jeroen van Duffelen", "geo": null, "id": 147204428796141570, "id_str": "147204428796141569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1251159750/Jeroen_van_Duffelen_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1251159750/Jeroen_van_Duffelen_normal.jpeg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Let's see if we can crack the code for the isomorphic View-Presenter concept! http://t.co/o5kmnzx5 @flatiron @nodejitsu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 06:32:47 +0000", "from_user": "indutny", "from_user_id": 92915570, "from_user_id_str": "92915570", "from_user_name": "Fedor Indutny", "geo": null, "id": 147202425240035330, "id_str": "147202425240035329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1342629236/e474c72a97af94dd27feb53be98ceab9_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1342629236/e474c72a97af94dd27feb53be98ceab9_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: A big welcome to @dscape, the latest addition to Team Nodejitsu! #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 05:37:38 +0000", "from_user": "patxangas", "from_user_id": 2176291, "from_user_id_str": "2176291", "from_user_name": "karlos g liberal", "geo": null, "id": 147188544723632130, "id_str": "147188544723632129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1583024255/patxangas_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583024255/patxangas_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rgaidot: haibu: a node.js application server - spawn your own node.js clouds, on your own hardware http://t.co/28CNYAnK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 04:22:33 +0000", "from_user": "intabulas", "from_user_id": 4364161, "from_user_id_str": "4364161", "from_user_name": "Mark Lussier", "geo": null, "id": 147169647932866560, "id_str": "147169647932866560", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1291712793/eightbit-234b4a36-2fe1-4a5e-a781-802047827051_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1291712793/eightbit-234b4a36-2fe1-4a5e-a781-802047827051_normal.png", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@heroku has been nice but @nodejitsu has been amazing", "to_user": "heroku", "to_user_id": 10257182, "to_user_id_str": "10257182", "to_user_name": "heroku"}, +{"created_at": "Thu, 15 Dec 2011 04:13:22 +0000", "from_user": "chrisrauh", "from_user_id": 14961157, "from_user_id_str": "14961157", "from_user_name": "Christian Rauh", "geo": null, "id": 147167340000317440, "id_str": "147167340000317441", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/551379645/Marcello-Mastroianni-8.5-96px_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/551379645/Marcello-Mastroianni-8.5-96px_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rgaidot: haibu: a node.js application server - spawn your own node.js clouds, on your own hardware http://t.co/28CNYAnK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 03:18:43 +0000", "from_user": "drainmice", "from_user_id": 278349531, "from_user_id_str": "278349531", "from_user_name": "Jed Parsons", "geo": null, "id": 147153585615020030, "id_str": "147153585615020034", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1314012266/207533_1012868680414_1185937086_30065249_1320_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1314012266/207533_1012868680414_1185937086_30065249_1320_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rgaidot: haibu: a node.js application server - spawn your own node.js clouds, on your own hardware http://t.co/28CNYAnK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 02:59:55 +0000", "from_user": "replore", "from_user_id": 5230221, "from_user_id_str": "5230221", "from_user_name": "replore", "geo": null, "id": 147148852783357950, "id_str": "147148852783357952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1324817836/manuki_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1324817836/manuki_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "heatwave http://t.co/Me4iOwMw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 02:13:57 +0000", "from_user": "alexindigo", "from_user_id": 26664625, "from_user_id_str": "26664625", "from_user_name": "Alex Indigo", "geo": null, "id": 147137287573078000, "id_str": "147137287573078016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/835829223/me_by_igor_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/835829223/me_by_igor_small_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@edwardsanchez hey, prolly that's what are you looking for :) http://t.co/F15MD9bc", "to_user": "edwardsanchez", "to_user_id": 159394189, "to_user_id_str": "159394189", "to_user_name": "Edward Sanchez"}, +{"created_at": "Thu, 15 Dec 2011 02:11:04 +0000", "from_user": "bLeff", "from_user_id": 17518030, "from_user_id_str": "17518030", "from_user_name": "Ben Leffler", "geo": null, "id": 147136560033312770, "id_str": "147136560033312768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/65017553/q508130540_5663_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/65017553/q508130540_5663_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: Our open-source #nodejs application server haibu: http://t.co/qfjU7hDU 600+ instances currently running in production. Increase the cloud!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 00:49:52 +0000", "from_user": "_pablo", "from_user_id": 12249142, "from_user_id_str": "12249142", "from_user_name": "_pablo", "geo": null, "id": 147116127280042000, "id_str": "147116127280041984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/272586547/totoro.medium_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/272586547/totoro.medium_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "+1 RT @rgaidot: haibu: a node.js application server - spawn your own node.js clouds, on your own hardware http://t.co/6GtzNGp4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 00:47:06 +0000", "from_user": "danyork", "from_user_id": 10312, "from_user_id_str": "10312", "from_user_name": "Dan York", "geo": null, "id": 147115430706823170, "id_str": "147115430706823169", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/72286948/Dan-PulverTV1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/72286948/Dan-PulverTV1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rgaidot: haibu: a node.js application server - spawn your own node.js clouds, on your own hardware http://t.co/28CNYAnK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 00:40:06 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 147113667454959600, "id_str": "147113667454959616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rgaidot: haibu: a node.js application server - spawn your own node.js clouds, on your own hardware http://t.co/28CNYAnK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 00:37:23 +0000", "from_user": "marak", "from_user_id": 110465841, "from_user_id_str": "110465841", "from_user_name": "marak squires", "geo": null, "id": 147112984060231680, "id_str": "147112984060231682", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1387685536/maraknormal_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1387685536/maraknormal_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rgaidot: haibu: a node.js application server - spawn your own node.js clouds, on your own hardware http://t.co/28CNYAnK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 00:36:16 +0000", "from_user": "rgaidot", "from_user_id": 1245801, "from_user_id_str": "1245801", "from_user_name": "R\\u00E9gis Gaidot", "geo": null, "id": 147112705424236540, "id_str": "147112705424236545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1266738841/avatar-6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266738841/avatar-6_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "haibu: a node.js application server - spawn your own node.js clouds, on your own hardware http://t.co/28CNYAnK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 23:36:37 +0000", "from_user": "jvduf", "from_user_id": 41679937, "from_user_id_str": "41679937", "from_user_name": "Jeroen van Duffelen", "geo": null, "id": 147097691099373570, "id_str": "147097691099373568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1251159750/Jeroen_van_Duffelen_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1251159750/Jeroen_van_Duffelen_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: A big welcome to @dscape, the latest addition to Team Nodejitsu! #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 23:10:53 +0000", "from_user": "benkross", "from_user_id": 16913955, "from_user_id_str": "16913955", "from_user_name": "Ben Ross", "geo": null, "id": 147091215182086140, "id_str": "147091215182086144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1120515336/Ben_Ad_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1120515336/Ben_Ad_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: Our open-source #nodejs application server haibu: http://t.co/qfjU7hDU 600+ instances currently running in production. Increase the cloud!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 22:55:39 +0000", "from_user": "dadicool", "from_user_id": 14200949, "from_user_id_str": "14200949", "from_user_name": "Dali Kilani", "geo": null, "id": 147087383664410620, "id_str": "147087383664410624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/86577298/portrait_dali_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/86577298/portrait_dali_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: Our open-source #nodejs application server haibu: http://t.co/qfjU7hDU 600+ instances currently running in production. Increase the cloud!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 22:41:33 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 147083834997997570, "id_str": "147083834997997568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: Our open-source #nodejs application server haibu: http://t.co/qfjU7hDU 600+ instances currently running in production. Increase the cloud!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 22:41:25 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147083799145103360, "id_str": "147083799145103361", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Our open-source #nodejs application server haibu: http://t.co/lL6L2Mlu 600+ instances currently running in produ... http://t.co/jFWwbOqt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 22:20:41 +0000", "from_user": "marten_cz", "from_user_id": 65118026, "from_user_id_str": "65118026", "from_user_name": "Martin Malek", "geo": null, "id": 147078581888106500, "id_str": "147078581888106496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1143208813/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1143208813/profile_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @nodejitsu: #nodejs application server is open-source and awesome! Currently running 500+ haibu servers concurrently in production.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 22:10:51 +0000", "from_user": "nodejitsu", "from_user_id": 157442008, "from_user_id_str": "157442008", "from_user_name": "Nodejitsu", "geo": null, "id": 147076107873689600, "id_str": "147076107873689601", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Our open-source #nodejs application server haibu: http://t.co/qfjU7hDU 600+ instances currently running in production. Increase the cloud!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 22:05:15 +0000", "from_user": "nodejitsu", "from_user_id": 157442008, "from_user_id_str": "157442008", "from_user_name": "Nodejitsu", "geo": null, "id": 147074699044720640, "id_str": "147074699044720640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Fun fact: Our #nodejs application server is open-source and awesome! We are currently running 500+ haibu servers concurrently in production.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:49:12 +0000", "from_user": "_alejandromg", "from_user_id": 53717698, "from_user_id_str": "53717698", "from_user_name": "Alejandro Morales", "geo": null, "id": 147070661137940480, "id_str": "147070661137940480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1473584095/2011-07-27-214648m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1473584095/2011-07-27-214648m_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dscape Awesome news for nodejitsu! ;) Congrats.", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147070132664008700, "in_reply_to_status_id_str": "147070132664008705"}, +{"created_at": "Wed, 14 Dec 2011 21:47:43 +0000", "from_user": "ddtrejo", "from_user_id": 58248334, "from_user_id_str": "58248334", "from_user_name": "David Trejo", "geo": null, "id": 147070288037818370, "id_str": "147070288037818369", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/343749589/davidsculpture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/343749589/davidsculpture_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@marak @nodejitsu getting there, 1.5 more semesters to go! Just finished my last final minutes ago, off to the bay to code&chill for a month", "to_user": "marak", "to_user_id": 110465841, "to_user_id_str": "110465841", "to_user_name": "marak squires", "in_reply_to_status_id": 147068664485654530, "in_reply_to_status_id_str": "147068664485654528"}, +{"created_at": "Wed, 14 Dec 2011 21:45:49 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147069809220272130, "id_str": "147069809220272128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: A big welcome to @dscape, the latest addition to Team Nodejitsu! #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:41:16 +0000", "from_user": "marak", "from_user_id": 110465841, "from_user_id_str": "110465841", "from_user_name": "marak squires", "geo": null, "id": 147068664485654530, "id_str": "147068664485654528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1387685536/maraknormal_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1387685536/maraknormal_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@ddtrejo Are you almost done with school? Your name should be the next hire @nodejitsu tweets! :-)", "to_user": "ddtrejo", "to_user_id": 58248334, "to_user_id_str": "58248334", "to_user_name": "David Trejo", "in_reply_to_status_id": 147067837222105100, "in_reply_to_status_id_str": "147067837222105088"}, +{"created_at": "Wed, 14 Dec 2011 21:37:59 +0000", "from_user": "ddtrejo", "from_user_id": 58248334, "from_user_id_str": "58248334", "from_user_name": "David Trejo", "geo": null, "id": 147067837222105100, "id_str": "147067837222105088", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/343749589/davidsculpture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/343749589/davidsculpture_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@nodejitsu @dscape congrats dscape!", "to_user": "nodejitsu", "to_user_id": 157442008, "to_user_id_str": "157442008", "to_user_name": "Nodejitsu", "in_reply_to_status_id": 147060300984758270, "in_reply_to_status_id_str": "147060300984758272"}, +{"created_at": "Wed, 14 Dec 2011 21:33:39 +0000", "from_user": "NeCkEr", "from_user_id": 14176673, "from_user_id_str": "14176673", "from_user_name": "NeCkEr", "geo": null, "id": 147066746371702800, "id_str": "147066746371702784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1656954487/imgSnow_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656954487/imgSnow_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "congratz RT @nodejitsu A big welcome to @dscape, the latest addition to Team Nodejitsu! #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:31:19 +0000", "from_user": "adron", "from_user_id": 16063910, "from_user_id_str": "16063910", "from_user_name": "Adron Hall", "geo": null, "id": 147066159580196860, "id_str": "147066159580196864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1639079696/bikingMe2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639079696/bikingMe2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@donwb Got both @nodejitsu @Nodester in my previous list. They'll definitely be included in PaaS coolness ongoing. :)", "to_user": "donwb", "to_user_id": 21307435, "to_user_id_str": "21307435", "to_user_name": "Don Browning", "in_reply_to_status_id": 147057753716817920, "in_reply_to_status_id_str": "147057753716817921"}, +{"created_at": "Wed, 14 Dec 2011 21:25:58 +0000", "from_user": "indexzero", "from_user_id": 13696102, "from_user_id_str": "13696102", "from_user_name": "Charlie Robbins", "geo": null, "id": 147064812956950530, "id_str": "147064812956950529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1179850399/P1000093bw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1179850399/P1000093bw_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: A big welcome to @dscape, the latest addition to Team Nodejitsu! #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:23:38 +0000", "from_user": "nodejitsu", "from_user_id": 157442008, "from_user_id_str": "157442008", "from_user_name": "Nodejitsu", "geo": null, "id": 147064225867632640, "id_str": "147064225867632640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @saadiq: Getting a startup job for the startup newbie is about focus and persistence. http://t.co/LR19orLr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:15:14 +0000", "from_user": "cronopio2", "from_user_id": 14474239, "from_user_id_str": "14474239", "from_user_name": "D\\u24B6niel \\u24B6ristizabal \\u2622", "geo": null, "id": 147062110952755200, "id_str": "147062110952755200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1587000370/DennisRitchie_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587000370/DennisRitchie_normal.gif", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "GREAT!! More hands for awesome tools!! RT @nodejitsu: A big welcome to @dscape, the latest addition to Team Nodejitsu! #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:14:38 +0000", "from_user": "_alejandromg", "from_user_id": 53717698, "from_user_id_str": "53717698", "from_user_name": "Alejandro Morales", "geo": null, "id": 147061960943472640, "id_str": "147061960943472640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1473584095/2011-07-27-214648m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1473584095/2011-07-27-214648m_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: A big welcome to @dscape, the latest addition to Team Nodejitsu! #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:12:32 +0000", "from_user": "3rdEden", "from_user_id": 14350255, "from_user_id_str": "14350255", "from_user_name": "Arnout Kazemier", "geo": null, "id": 147061431228039170, "id_str": "147061431228039168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Congratulations @dscape! RT \\u201C@nodejitsu: A big welcome to @dscape, the latest addition to Team Nodejitsu! #nodejs\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:12:25 +0000", "from_user": "TheDeveloper", "from_user_id": 18001569, "from_user_id_str": "18001569", "from_user_name": "Geoff Wagstaff", "geo": null, "id": 147061404787150850, "id_str": "147061404787150848", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1413195938/the_developer_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1413195938/the_developer_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@nodejitsu @dscape congrats!", "to_user": "nodejitsu", "to_user_id": 157442008, "to_user_id_str": "157442008", "to_user_name": "Nodejitsu", "in_reply_to_status_id": 147060300984758270, "in_reply_to_status_id_str": "147060300984758272"}, +{"created_at": "Wed, 14 Dec 2011 21:09:07 +0000", "from_user": "mikeal", "from_user_id": 668423, "from_user_id_str": "668423", "from_user_name": "Mikeal", "geo": null, "id": 147060574549835780, "id_str": "147060574549835777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1554648053/avatar-bw_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554648053/avatar-bw_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: A big welcome to @dscape, the latest addition to Team Nodejitsu! #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:08:42 +0000", "from_user": "marak", "from_user_id": 110465841, "from_user_id_str": "110465841", "from_user_name": "marak squires", "geo": null, "id": 147060467318259700, "id_str": "147060467318259713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1387685536/maraknormal_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1387685536/maraknormal_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: A big welcome to @dscape, the latest addition to Team Nodejitsu! #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:08:02 +0000", "from_user": "nodejitsu", "from_user_id": 157442008, "from_user_id_str": "157442008", "from_user_name": "Nodejitsu", "geo": null, "id": 147060300984758270, "id_str": "147060300984758272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "A big welcome to @dscape, the latest addition to Team Nodejitsu! #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:05:25 +0000", "from_user": "marak", "from_user_id": 110465841, "from_user_id_str": "110465841", "from_user_name": "marak squires", "geo": null, "id": 147059641141047300, "id_str": "147059641141047297", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1387685536/maraknormal_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1387685536/maraknormal_normal.png", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "RT @dscape: WOOP! \"Nuno, looks like you're all good. Welcome to Nodejitsu.\" @saadiq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 20:57:55 +0000", "from_user": "donwb", "from_user_id": 21307435, "from_user_id_str": "21307435", "from_user_name": "Don Browning", "geo": null, "id": 147057753716817920, "id_str": "147057753716817921", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1180549025/Profile_Pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1180549025/Profile_Pic_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "@adron @nodejitsu and @Nodester are two node.js PaaS providers..", "to_user": "adron", "to_user_id": 16063910, "to_user_id_str": "16063910", "to_user_name": "Adron Hall", "in_reply_to_status_id": 147036170528894980, "in_reply_to_status_id_str": "147036170528894976"}, +{"created_at": "Wed, 14 Dec 2011 19:56:52 +0000", "from_user": "kstirman", "from_user_id": 8723762, "from_user_id_str": "8723762", "from_user_name": "Kelly Stirman", "geo": null, "id": 147042388894953470, "id_str": "147042388894953472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/210467530/244.mr.t.092806_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/210467530/244.mr.t.092806_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "RT @dscape: WOOP! \"Nuno, looks like you're all good. Welcome to Nodejitsu.\" @saadiq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 19:55:06 +0000", "from_user": "chrismatthieu", "from_user_id": 13604142, "from_user_id_str": "13604142", "from_user_name": "Chris Matthieu", "geo": null, "id": 147041946395873280, "id_str": "147041946395873280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/918916153/SuperChrisSmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/918916153/SuperChrisSmall_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "I finally realized why @nodejitsu's logo looked familiar to me. Check out Comtel Connect's logo http://t.co/kOMHDGvF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 19:31:15 +0000", "from_user": "intabulas", "from_user_id": 4364161, "from_user_id_str": "4364161", "from_user_name": "Mark Lussier", "geo": null, "id": 147035945793884160, "id_str": "147035945793884160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1291712793/eightbit-234b4a36-2fe1-4a5e-a781-802047827051_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1291712793/eightbit-234b4a36-2fe1-4a5e-a781-802047827051_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@nodejitsu got my email week or so back, so can I be activated now :) this is my userid I reserved", "to_user": "nodejitsu", "to_user_id": 157442008, "to_user_id_str": "157442008", "to_user_name": "Nodejitsu"}, +{"created_at": "Wed, 14 Dec 2011 18:56:46 +0000", "from_user": "pedrogte", "from_user_id": 16401507, "from_user_id_str": "16401507", "from_user_name": "Pedro Teixeira", "geo": null, "id": 147027265283293200, "id_str": "147027265283293184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1591778458/DSC02359-2_copy_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591778458/DSC02359-2_copy_normal.JPG", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "RT @dscape: WOOP! \"Nuno, looks like you're all good. Welcome to Nodejitsu.\" @saadiq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 18:45:43 +0000", "from_user": "booyaa", "from_user_id": 719673, "from_user_id_str": "719673", "from_user_name": "booyaa", "geo": null, "id": 147024486489788400, "id_str": "147024486489788417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/640332281/boo-sm-avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/640332281/boo-sm-avatar_normal.png", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": ".@dscape you just joined the @nodejitsu team?!?", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147009691636088830, "in_reply_to_status_id_str": "147009691636088833"}, +{"created_at": "Wed, 14 Dec 2011 17:46:56 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147009691636088830, "id_str": "147009691636088833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "WOOP! \"Nuno, looks like you're all good. Welcome to Nodejitsu.\" @saadiq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 17:09:45 +0000", "from_user": "djetchev", "from_user_id": 89859740, "from_user_id_str": "89859740", "from_user_name": "Dimitare Jetchev", "geo": null, "id": 147000333841862660, "id_str": "147000333841862657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/528621418/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/528621418/me_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Safari on iOS</a>", "text": "http://t.co/QrqKeYG7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 16:27:19 +0000", "from_user": "elfsternberg", "from_user_id": 18141592, "from_user_id_str": "18141592", "from_user_name": "Elf Sternberg", "geo": null, "id": 146989653914947600, "id_str": "146989653914947584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/67514365/Avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/67514365/Avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Gain 2,000 XP: http://t.co/Yx3OxNqE and http://t.co/8YqB70uM I can now fix and release switchboard, and it won't be broken.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 15:21:20 +0000", "from_user": "dakemasaya", "from_user_id": 214161231, "from_user_id_str": "214161231", "from_user_name": "\\u3060\\u3051", "geo": null, "id": 146973050296999940, "id_str": "146973050296999937", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1641220238/xrwD4j2a_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641220238/xrwD4j2a_normal", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @sugyan: Node\\u89E6\\u308A\\u59CB\\u3081\\u30662\\u30F6\\u6708\\u3067nodejitsu\\u306B\\u63A1\\u7528\\u3055\\u308C\\u305F17\\u6B73\\u304C\\u3044\\u308B\\u3001\\u3060\\u3068\\u2026 #tng3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 13:10:39 +0000", "from_user": "ryu22e", "from_user_id": 10098472, "from_user_id_str": "10098472", "from_user_name": "ryu22e", "geo": null, "id": 146940161509429250, "id_str": "146940161509429249", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1653669403/ryu22e_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653669403/ryu22e_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @sugyan: Node\\u89E6\\u308A\\u59CB\\u3081\\u30662\\u30F6\\u6708\\u3067nodejitsu\\u306B\\u63A1\\u7528\\u3055\\u308C\\u305F17\\u6B73\\u304C\\u3044\\u308B\\u3001\\u3060\\u3068\\u2026 #tng3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Wed, 14 Dec 2011 13:10:29 +0000", "from_user": "zegenvs", "from_user_id": 386573, "from_user_id_str": "386573", "from_user_name": "Fumikazu Fujiwara", "geo": null, "id": 146940118895300600, "id_str": "146940118895300608", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1241948499/ffujiwara_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1241948499/ffujiwara_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Node\\u89E6\\u308A\\u59CB\\u3081\\u3066\\u3000\\uFF12\\u30F6\\u6708\\u3067\\u3000http://t.co/i56UTZRd\\u3000\\u306B\\u63A1\\u7528\\u3055\\u308C\\u308B\\u9AD8\\u6821\\u751F\\u3068\\u304B \\u305D\\u3044\\u3046\\u6642\\u4EE3\\u304B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 13:10:24 +0000", "from_user": "sugyan", "from_user_id": 15081480, "from_user_id_str": "15081480", "from_user_name": "\\u3059\\u304E\\u3083\\u30FC\\u3093", "geo": null, "id": 146940098309656580, "id_str": "146940098309656578", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1549733370/icon-large_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1549733370/icon-large_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Node\\u89E6\\u308A\\u59CB\\u3081\\u30662\\u30F6\\u6708\\u3067nodejitsu\\u306B\\u63A1\\u7528\\u3055\\u308C\\u305F17\\u6B73\\u304C\\u3044\\u308B\\u3001\\u3060\\u3068\\u2026 #tng3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 09:01:22 +0000", "from_user": "DrAzraelTod", "from_user_id": 14235202, "from_user_id_str": "14235202", "from_user_name": "Dr. Azrael Tod", "geo": null, "id": 146877424431403000, "id_str": "146877424431403008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1551458056/qr_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1551458056/qr_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "coole Idee via @DATENWOLF -suppe: \"Heatwave\" - Code-Heatmap nach Aktivit\\u00E4t http://t.co/snPSkKbp http://t.co/MFUCehQi http://t.co/xDUVgyLZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 07:21:37 +0000", "from_user": "booyaa", "from_user_id": 719673, "from_user_id_str": "719673", "from_user_name": "booyaa", "geo": null, "id": 146852325338783740, "id_str": "146852325338783744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/640332281/boo-sm-avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/640332281/boo-sm-avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: New deployments should now be back online. Let the `jitsu deploy` begin! Need support? #nodejitsu on freenode or email support@nodejitsu.com", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 07:16:43 +0000", "from_user": "pintarqccnqx1", "from_user_id": 388529872, "from_user_id_str": "388529872", "from_user_name": "Pintar Dye", "geo": null, "id": 146851094058901500, "id_str": "146851094058901504", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1582274111/f_30_w_0112_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1582274111/f_30_w_0112_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@nodejitsu http://t.co/Yer1kvwi", "to_user": "nodejitsu", "to_user_id": 157442008, "to_user_id_str": "157442008", "to_user_name": "Nodejitsu", "in_reply_to_status_id": 146728597216960500, "in_reply_to_status_id_str": "146728597216960514"}, +{"created_at": "Wed, 14 Dec 2011 06:16:54 +0000", "from_user": "kuruma3", "from_user_id": 100368846, "from_user_id_str": "100368846", "from_user_name": "kuruma3", "geo": null, "id": 146836039821049860, "id_str": "146836039821049856", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1015332840/twittericon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1015332840/twittericon_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "nodejitsu\\u306Ejitsu\\u3063\\u3066\\u8853\\u3060\\u3063\\u305F\\u306E\\u304B\\u3041\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 05:59:53 +0000", "from_user": "beautifulnode", "from_user_id": 428579497, "from_user_id_str": "428579497", "from_user_name": "beautifulnode", "geo": null, "id": 146831757742841860, "id_str": "146831757742841856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694584089/Untitleddrawing__1__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694584089/Untitleddrawing__1__normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @marak: The growth we are seeing @Nodejitsu is kinda unreal. If you haven't gotten into #nodejs yet...you should RIGHT NOW! :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 04:09:41 +0000", "from_user": "JeffreyKaine", "from_user_id": 14598505, "from_user_id_str": "14598505", "from_user_name": "JeffreyKaine", "geo": null, "id": 146804024723775500, "id_str": "146804024723775488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1576501697/twavatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576501697/twavatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MagusXIX: The new site is up at http://t.co/Tkj9NaAz ... give it a gander if you please. :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 03:40:46 +0000", "from_user": "MagusXIX", "from_user_id": 18282604, "from_user_id_str": "18282604", "from_user_name": "Jack Wolfe", "geo": null, "id": 146796747010744320, "id_str": "146796747010744320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1229845680/Mechael_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1229845680/Mechael_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "The new site is up at http://t.co/Tkj9NaAz ... give it a gander if you please. :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 03:40:02 +0000", "from_user": "del_javascript", "from_user_id": 23282663, "from_user_id_str": "23282663", "from_user_name": "Javascript News", "geo": null, "id": 146796561802854400, "id_str": "146796561802854400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/90410047/clouds2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/90410047/clouds2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Keep a node.js server up with Forever - http://t.co/9EcXTchi - scaling node.js applications one callback at a time. http://t.co/F8Y5Rvjs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 03:23:08 +0000", "from_user": "PistachioPony", "from_user_id": 360848817, "from_user_id_str": "360848817", "from_user_name": "maria m m", "geo": null, "id": 146792310129172480, "id_str": "146792310129172480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1510777826/mmm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1510777826/mmm_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Great talk today at the Node.js meetup by @indexzero Guys beat me out to the last Nodejitsu t-shirt :( Nodejitsu is *the shit* yo!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 03:08:13 +0000", "from_user": "blake41", "from_user_id": 7605412, "from_user_id_str": "7605412", "from_user_name": "blake johnson", "geo": null, "id": 146788556088684540, "id_str": "146788556088684544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/136228431/IMG_0508_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/136228431/IMG_0508_normal.JPG", "source": "<a href="http://taptaptap.com/camera+" rel="nofollow">Camera+</a>", "text": "Finally one of the cool kids with my new @nodejitsu tshirt. Thanks for the talk tonight guys http://t.co/yfTAJYaL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 01:58:30 +0000", "from_user": "johnmurch", "from_user_id": 62303, "from_user_id_str": "62303", "from_user_name": "John Murch", "geo": null, "id": 146771008861384700, "id_str": "146771008861384704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1159967445/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1159967445/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@indexzero great presentation at #nycnode.js - Anyone new to #node including me is/should be reading http://t.co/7CfkBFkW", "to_user": "indexzero", "to_user_id": 13696102, "to_user_id_str": "13696102", "to_user_name": "Charlie Robbins"}, +{"created_at": "Wed, 14 Dec 2011 01:01:57 +0000", "from_user": "kuruma3", "from_user_id": 100368846, "from_user_id_str": "100368846", "from_user_name": "kuruma3", "geo": null, "id": 146756780016406530, "id_str": "146756780016406531", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1015332840/twittericon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1015332840/twittericon_normal.png", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "npm cheatsheet - http://t.co/VKQPA9Z6 - scaling node.js applications one callback at a time. -... http://t.co/6W10GcdA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 00:42:29 +0000", "from_user": "cronopio2", "from_user_id": 14474239, "from_user_id_str": "14474239", "from_user_name": "D\\u24B6niel \\u24B6ristizabal \\u2622", "geo": null, "id": 146751882197602300, "id_str": "146751882197602304", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1587000370/DennisRitchie_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587000370/DennisRitchie_normal.gif", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "@cvander @santiaguf Definitivamente un excelente lugar para buenas lecturas es el Blog de @nodejitsu http://t.co/X7qZahXX", "to_user": "cvander", "to_user_id": 817789, "to_user_id_str": "817789", "to_user_name": "Christian Van Der H", "in_reply_to_status_id": 146751412125188100, "in_reply_to_status_id_str": "146751412125188096"}, +{"created_at": "Tue, 13 Dec 2011 23:48:40 +0000", "from_user": "donwb", "from_user_id": 21307435, "from_user_id_str": "21307435", "from_user_name": "Don Browning", "geo": null, "id": 146738335728144400, "id_str": "146738335728144384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1180549025/Profile_Pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1180549025/Profile_Pic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: New deployments should now be back online. Let the `jitsu deploy` begin! Need support? #nodejitsu on freenode or email support@nodejitsu.com", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 23:34:39 +0000", "from_user": "nodejitsu", "from_user_id": 157442008, "from_user_id_str": "157442008", "from_user_name": "Nodejitsu", "geo": null, "id": 146734811728461820, "id_str": "146734811728461824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @marak: The #nodejitsu room on freenode is pretty awesome! 109 people right now! Fun fact, we've recruited THREE of our engineers from the room.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 23:33:54 +0000", "from_user": "marak", "from_user_id": 110465841, "from_user_id_str": "110465841", "from_user_name": "marak squires", "geo": null, "id": 146734620623372300, "id_str": "146734620623372288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1387685536/maraknormal_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1387685536/maraknormal_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "The #nodejitsu room on freenode is pretty awesome! 109 people right now! Fun fact, we've recruited THREE of our engineers from the room.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 23:33:38 +0000", "from_user": "michaelsbradley", "from_user_id": 15816565, "from_user_id_str": "15816565", "from_user_name": "Michael Bradley, Jr.", "geo": null, "id": 146734553552269300, "id_str": "146734553552269312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/660365696/michael-s_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/660365696/michael-s_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@marak just curious, did nodejitsu ever considering using linode as a/the VPS backend?", "to_user": "marak", "to_user_id": 110465841, "to_user_id_str": "110465841", "to_user_name": "marak squires", "in_reply_to_status_id": 146732858768244740, "in_reply_to_status_id_str": "146732858768244736"}, +{"created_at": "Tue, 13 Dec 2011 23:15:21 +0000", "from_user": "jesusabdullah", "from_user_id": 184987977, "from_user_id_str": "184987977", "from_user_name": "Joshua Holbrook", "geo": null, "id": 146729952329474050, "id_str": "146729952329474049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1541971778/birdbirdbird-cropped_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541971778/birdbirdbird-cropped_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: New deployments should now be back online. Let the `jitsu deploy` begin! Need support? #nodejitsu on freenode or email support@nodejitsu.com", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 23:10:12 +0000", "from_user": "marak", "from_user_id": 110465841, "from_user_id_str": "110465841", "from_user_name": "marak squires", "geo": null, "id": 146728657338105860, "id_str": "146728657338105858", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1387685536/maraknormal_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1387685536/maraknormal_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: New deployments should now be back online. Let the `jitsu deploy` begin! Need support? #nodejitsu on freenode or email support@nodejitsu.com", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 23:09:58 +0000", "from_user": "nodejitsu", "from_user_id": 157442008, "from_user_id_str": "157442008", "from_user_name": "Nodejitsu", "geo": null, "id": 146728597216960500, "id_str": "146728597216960514", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "New deployments should now be back online. Let the `jitsu deploy` begin! Need support? #nodejitsu on freenode or email support@nodejitsu.com", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 21:02:35 +0000", "from_user": "nodejitsu", "from_user_id": 157442008, "from_user_id_str": "157442008", "from_user_name": "Nodejitsu", "geo": null, "id": 146696542873587700, "id_str": "146696542873587712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @marak: http://t.co/uybgdZio is looking nice.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 19:12:07 +0000", "from_user": "scottdware", "from_user_id": 24906404, "from_user_id_str": "24906404", "from_user_name": "Scott Ware", "geo": null, "id": 146668739243409400, "id_str": "146668739243409409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1576920821/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576920821/profile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Cloud9IDE: Node love :) RT @gblock @JanVanRyswyck @hhariri @nodejitsu +1 @nodejitsu, @Cloud9IDE etc. There's a ton of energy around node!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 19:04:29 +0000", "from_user": "Cloud9IDE", "from_user_id": 143638554, "from_user_id_str": "143638554", "from_user_name": "Cloud9 IDE", "geo": null, "id": 146666822106759170, "id_str": "146666822106759169", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1523529310/Cloud9-IDE-Avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1523529310/Cloud9-IDE-Avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Node love :) RT @gblock @JanVanRyswyck @hhariri @nodejitsu +1 @nodejitsu, @Cloud9IDE etc. There's a ton of energy around node!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 18:59:39 +0000", "from_user": "JanVanRyswyck", "from_user_id": 14344284, "from_user_id_str": "14344284", "from_user_name": "JanVanRyswyck", "geo": null, "id": 146665602524774400, "id_str": "146665602524774400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1444289576/Foto3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1444289576/Foto3_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@gblock @hhariri @nodejitsu @Cloud9IDE That I can easily agree with. :-)", "to_user": "gblock", "to_user_id": 1434051, "to_user_id_str": "1434051", "to_user_name": "Glenn Block", "in_reply_to_status_id": 146665359129317380, "in_reply_to_status_id_str": "146665359129317376"}, +{"created_at": "Tue, 13 Dec 2011 18:58:41 +0000", "from_user": "gblock", "from_user_id": 1434051, "from_user_id_str": "1434051", "from_user_name": "Glenn Block", "geo": null, "id": 146665359129317380, "id_str": "146665359129317376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1198284833/Photo_on_2010-12-24_at_20.51_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1198284833/Photo_on_2010-12-24_at_20.51_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@JanVanRyswyck @hhariri @nodejitsu +1 @nodejitsu, @Cloud9IDE etc. There's a ton of energy around node!", "to_user": "JanVanRyswyck", "to_user_id": 14344284, "to_user_id_str": "14344284", "to_user_name": "JanVanRyswyck", "in_reply_to_status_id": 146664457412689920, "in_reply_to_status_id_str": "146664457412689920"}, +{"created_at": "Tue, 13 Dec 2011 18:55:06 +0000", "from_user": "JanVanRyswyck", "from_user_id": 14344284, "from_user_id_str": "14344284", "from_user_name": "JanVanRyswyck", "geo": null, "id": 146664457412689920, "id_str": "146664457412689920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1444289576/Foto3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1444289576/Foto3_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@hhariri I beg to differ. I love the adoption of Node.js by big blue but I think the @nodejitsu guys are doing some awesome work as well.", "to_user": "hhariri", "to_user_id": 15797140, "to_user_id_str": "15797140", "to_user_name": "Hadi Hariri", "in_reply_to_status_id": 146663970391080960, "in_reply_to_status_id_str": "146663970391080960"}, +{"created_at": "Tue, 13 Dec 2011 18:04:00 +0000", "from_user": "coderoshi", "from_user_id": 134567015, "from_user_id_str": "134567015", "from_user_name": "Eric Redmond", "geo": null, "id": 146651597445939200, "id_str": "146651597445939200", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1648597697/707e3965f1630286a3dcaad501a10fed_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648597697/707e3965f1630286a3dcaad501a10fed_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@adron http://t.co/dJxpWJcZ http://t.co/w0C8ZFPI http://t.co/tRncs5lr http://t.co/OsMJALSb", "to_user": "adron", "to_user_id": 16063910, "to_user_id_str": "16063910", "to_user_name": "Adron Hall", "in_reply_to_status_id": 146649655088914430, "in_reply_to_status_id_str": "146649655088914433"}, +{"created_at": "Tue, 13 Dec 2011 16:17:52 +0000", "from_user": "jsgeneve", "from_user_id": 404035068, "from_user_id_str": "404035068", "from_user_name": "Javascript Gen\\u00E8ve", "geo": null, "id": 146624889615429630, "id_str": "146624889615429632", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1620267028/twitter_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620267028/twitter_normal.gif", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Support Chat: un exemple chat pour bien d\\u00E9buter avec #nodejs avec socket.io + Express: http://t.co/9zjn4oIg - Demo: http://t.co/VxMflQEz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 15:49:50 +0000", "from_user": "maciejmalecki", "from_user_id": 263755874, "from_user_id_str": "263755874", "from_user_name": "Maciej Ma\\u0142ecki", "geo": null, "id": 146617833059659780, "id_str": "146617833059659776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1547225919/IMG_20110917_192531mt_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1547225919/IMG_20110917_192531mt_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @marak: The growth we are seeing @Nodejitsu is kinda unreal. If you haven't gotten into #nodejs yet...you should RIGHT NOW! :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 15:49:12 +0000", "from_user": "cronopio2", "from_user_id": 14474239, "from_user_id_str": "14474239", "from_user_name": "D\\u24B6niel \\u24B6ristizabal \\u2622", "geo": null, "id": 146617675920064500, "id_str": "146617675920064512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1587000370/DennisRitchie_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587000370/DennisRitchie_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @marak: The growth we are seeing @Nodejitsu is kinda unreal. If you haven't gotten into #nodejs yet...you should RIGHT NOW! :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 15:46:06 +0000", "from_user": "PistachioPony", "from_user_id": 360848817, "from_user_id_str": "360848817", "from_user_name": "maria m m", "geo": null, "id": 146616894718345200, "id_str": "146616894718345220", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1510777826/mmm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1510777826/mmm_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @marak: The growth we are seeing @Nodejitsu is kinda unreal. If you haven't gotten into #nodejs yet...you should RIGHT NOW! :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 14:08:21 +0000", "from_user": "donwb", "from_user_id": 21307435, "from_user_id_str": "21307435", "from_user_name": "Don Browning", "geo": null, "id": 146592294324273150, "id_str": "146592294324273154", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1180549025/Profile_Pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1180549025/Profile_Pic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @marak: The growth we are seeing @Nodejitsu is kinda unreal. If you haven't gotten into #nodejs yet...you should RIGHT NOW! :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 13:03:56 +0000", "from_user": "jvduf", "from_user_id": 41679937, "from_user_id_str": "41679937", "from_user_name": "Jeroen van Duffelen", "geo": null, "id": 146576085302263800, "id_str": "146576085302263808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1251159750/Jeroen_van_Duffelen_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1251159750/Jeroen_van_Duffelen_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @marak: The growth we are seeing @Nodejitsu is kinda unreal. If you haven't gotten into #nodejs yet...you should RIGHT NOW! :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 11:25:49 +0000", "from_user": "hitode909", "from_user_id": 4653091, "from_user_id_str": "4653091", "from_user_name": "\\u8DA3\\u5473\\u306F\\u30DE\\u30EA\\u30F3\\u30B9\\u30DD\\u30FC\\u30C4\\u3067\\u3059", "geo": null, "id": 146551391664619520, "id_str": "146551391664619520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1300767028/sushi_r_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1300767028/sushi_r_normal.gif", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "\\u201CScaling Isomorphic Javascript Code - http://t.co/HB9JE2ir - scaling node.js applications one callback at a time.\\u201D http://t.co/649L7HJU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 08:29:04 +0000", "from_user": "davybrion", "from_user_id": 167135950, "from_user_id_str": "167135950", "from_user_name": "Davy Brion", "geo": null, "id": 146506913889263600, "id_str": "146506913889263616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1648946210/pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648946210/pic_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@YvesGoeleven nodejitsu sounds great, then joyent's solution, then heroku", "to_user": "YvesGoeleven", "to_user_id": 24497096, "to_user_id_str": "24497096", "to_user_name": "Yves Goeleven", "in_reply_to_status_id": 146506401353699330, "in_reply_to_status_id_str": "146506401353699328"}, +{"created_at": "Tue, 13 Dec 2011 08:05:45 +0000", "from_user": "shakefon", "from_user_id": 10067102, "from_user_id_str": "10067102", "from_user_name": "Dave Stevens", "geo": null, "id": 146501044132782080, "id_str": "146501044132782080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1256053648/newavatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1256053648/newavatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @marak: The growth we are seeing @Nodejitsu is kinda unreal. If you haven't gotten into #nodejs yet...you should RIGHT NOW! :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 07:21:40 +0000", "from_user": "gigonaut", "from_user_id": 7440762, "from_user_id_str": "7440762", "from_user_name": "gigonaut", "geo": null, "id": 146489950144180220, "id_str": "146489950144180224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/136174586/gigonaut_logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/136174586/gigonaut_logo_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @marak: The growth we are seeing @Nodejitsu is kinda unreal. If you haven't gotten into #nodejs yet...you should RIGHT NOW! :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 07:13:09 +0000", "from_user": "jesusabdullah", "from_user_id": 184987977, "from_user_id_str": "184987977", "from_user_name": "Joshua Holbrook", "geo": null, "id": 146487805747535870, "id_str": "146487805747535872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1541971778/birdbirdbird-cropped_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541971778/birdbirdbird-cropped_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @marak: The growth we are seeing @Nodejitsu is kinda unreal. If you haven't gotten into #nodejs yet...you should RIGHT NOW! :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 07:11:32 +0000", "from_user": "thepumpkin", "from_user_id": 6913662, "from_user_id_str": "6913662", "from_user_name": "Johan Hernandez", "geo": null, "id": 146487399826993150, "id_str": "146487399826993152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1497447916/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1497447916/image_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @marak: The growth we are seeing @Nodejitsu is kinda unreal. If you haven't gotten into #nodejs yet...you should RIGHT NOW! :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 07:10:58 +0000", "from_user": "mattwalters5", "from_user_id": 34128038, "from_user_id_str": "34128038", "from_user_name": "Matt Walters", "geo": null, "id": 146487257535234050, "id_str": "146487257535234048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1460915273/c250f0430c58d68fe3d11f1061acef29_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1460915273/c250f0430c58d68fe3d11f1061acef29_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @marak: The growth we are seeing @Nodejitsu is kinda unreal. If you haven't gotten into #nodejs yet...you should RIGHT NOW! :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 07:10:42 +0000", "from_user": "marak", "from_user_id": 110465841, "from_user_id_str": "110465841", "from_user_name": "marak squires", "geo": null, "id": 146487192573853700, "id_str": "146487192573853696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1387685536/maraknormal_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1387685536/maraknormal_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "The growth we are seeing @Nodejitsu is kinda unreal. If you haven't gotten into #nodejs yet...you should RIGHT NOW! :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 06:12:36 +0000", "from_user": "mhalligan", "from_user_id": 177896251, "from_user_id_str": "177896251", "from_user_name": "Michael T. Halligan", "geo": null, "id": 146472568092766200, "id_str": "146472568092766208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1562598170/308610_10150407195219225_563429224_10522334_1302838775_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1562598170/308610_10150407195219225_563429224_10522334_1302838775_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@nodejitsu Here's a tip, @rackspace is incredibly incompetent at everything but sales.", "to_user": "nodejitsu", "to_user_id": 157442008, "to_user_id_str": "157442008", "to_user_name": "Nodejitsu", "in_reply_to_status_id": 146470215360856060, "in_reply_to_status_id_str": "146470215360856065"}, +{"created_at": "Tue, 13 Dec 2011 06:03:15 +0000", "from_user": "nodejitsu", "from_user_id": 157442008, "from_user_id_str": "157442008", "from_user_name": "Nodejitsu", "geo": null, "id": 146470215360856060, "id_str": "146470215360856065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "We've got soo many servers that we are crashing the rackspace cloud API! New deployments will be off until we can resolve with @rackspace", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 02:34:47 +0000", "from_user": "nicoleborsey", "from_user_id": 16714512, "from_user_id_str": "16714512", "from_user_name": "nicole borsey", "geo": null, "id": 146417753358733300, "id_str": "146417753358733312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/489655723/NicoleBorseyLite_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/489655723/NicoleBorseyLite_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@jtwebman hey!! Where u been?! :) sent u a message on Skype :) talk tomorrow? :))) #nodejs #RealEstate #nodejitsu", "to_user": "jtwebman", "to_user_id": 35268041, "to_user_id_str": "35268041", "to_user_name": "Jeff Turner", "in_reply_to_status_id": 143726392096469000, "in_reply_to_status_id_str": "143726392096468993"}, +{"created_at": "Tue, 13 Dec 2011 02:05:37 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 146410412873756670, "id_str": "146410412873756672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "RT @cccc4d: \\u201CKeep a node.js server up with Forever - http://t.co/VnePqz1B - scaling node.js applications one callback at a time.\\u201D http://t.co/4hxyvd8q", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 02:05:35 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 146410405638570000, "id_str": "146410405638569984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\u201CKeep a node.js server up with Forever - http://t.co/p6eS4zQU - scaling node.js applications one callback at a t... http://t.co/cb57geU7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 02:03:35 +0000", "from_user": "cccc4d", "from_user_id": 334495560, "from_user_id_str": "334495560", "from_user_name": "Milton Colwell", "geo": null, "id": 146409902515040260, "id_str": "146409902515040256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1471512767/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1471512767/profile_normal.png", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "\\u201CKeep a node.js server up with Forever - http://t.co/VnePqz1B - scaling node.js applications one callback at a time.\\u201D http://t.co/4hxyvd8q", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 01:52:24 +0000", "from_user": "hiroyukim", "from_user_id": 4114621, "from_user_id_str": "4114621", "from_user_name": "hiroyukim", "geo": null, "id": 146407087780544500, "id_str": "146407087780544513", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/94649304/neko_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/94649304/neko_normal.jpg", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "\\u201CKeep a node.js server up with Forever - http://t.co/KgOZcw2D - scaling node.js applications one callback at a time.\\u201D http://t.co/zQewoXSm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 23:11:03 +0000", "from_user": "johnmurch", "from_user_id": 62303, "from_user_id_str": "62303", "from_user_name": "John Murch", "geo": null, "id": 146366480932548600, "id_str": "146366480932548608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1159967445/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1159967445/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @shamoons: Pumped about @indexzero from @nodejitsu speaking at our #NodeJS Meetup tomorrow night! http://t.co/39DPnePf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 22:47:02 +0000", "from_user": "shamoons", "from_user_id": 20744357, "from_user_id_str": "20744357", "from_user_name": "Shamoon Siddiqui", "geo": null, "id": 146360437691265020, "id_str": "146360437691265024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1568292716/shamoon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1568292716/shamoon_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Pumped about @indexzero from @nodejitsu speaking at our #NodeJS Meetup tomorrow night! http://t.co/39DPnePf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 22:01:08 +0000", "from_user": "svenlito", "from_user_id": 16057846, "from_user_id_str": "16057846", "from_user_name": "Sven Lito", "geo": null, "id": 146348887299473400, "id_str": "146348887299473409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1161384337/photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1161384337/photo_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "getting started with node? this should be goto reference http://t.co/SReH3Q3j #nodejitsu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 21:49:07 +0000", "from_user": "jesusabdullah", "from_user_id": 184987977, "from_user_id_str": "184987977", "from_user_name": "Joshua Holbrook", "geo": null, "id": 146345864485552130, "id_str": "146345864485552128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1541971778/birdbirdbird-cropped_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541971778/birdbirdbird-cropped_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: New app deployments should be back online later today. Existing apps should be unaffected. If you require assistance, #nodejitsu on freenode", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 21:25:20 +0000", "from_user": "nodejitsu", "from_user_id": 157442008, "from_user_id_str": "157442008", "from_user_name": "Nodejitsu", "geo": null, "id": 146339876827168770, "id_str": "146339876827168768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "New app deployments should be back online later today. Existing apps should be unaffected. If you require assistance, #nodejitsu on freenode", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 21:08:38 +0000", "from_user": "obazoud", "from_user_id": 124223722, "from_user_id_str": "124223722", "from_user_name": "Olivier Bazoud", "geo": null, "id": 146335674281369600, "id_str": "146335674281369600", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1376713472/me4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1376713472/me4_normal.jpg", "source": "<a href="http://www.grumlapp.com/" rel="nofollow">Gruml</a>", "text": "RT @rmat0n: npm cheatsheet http://t.co/aH2hzSkA #nodejs #npm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 21:05:48 +0000", "from_user": "rmat0n", "from_user_id": 34291483, "from_user_id_str": "34291483", "from_user_name": "rmat0n", "geo": null, "id": 146334961711067140, "id_str": "146334961711067136", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1351608740/photo_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1351608740/photo_normal.jpeg", "source": "<a href="http://www.grumlapp.com/" rel="nofollow">Gruml</a>", "text": "npm cheatsheet http://t.co/aH2hzSkA #nodejs #npm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 20:05:59 +0000", "from_user": "jxson", "from_user_id": 14437884, "from_user_id_str": "14437884", "from_user_name": "Jason Campbell", "geo": null, "id": 146319910144983040, "id_str": "146319910144983040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1410639036/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1410639036/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@smallrivers http://t.co/CBwjFHAo seems to be eating my ctrl+clicks and opening links in the same window (clicking on headings)", "to_user": "SmallRivers", "to_user_id": 22681340, "to_user_id_str": "22681340", "to_user_name": "Paper.li"}, +{"created_at": "Mon, 12 Dec 2011 20:04:41 +0000", "from_user": "jwoschitz", "from_user_id": 236486382, "from_user_id_str": "236486382", "from_user_name": "Janosch Woschitz", "geo": null, "id": 146319579973558270, "id_str": "146319579973558272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1223713193/sweden_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1223713193/sweden_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: Wow! Our #nodejs application cloud currently has ~460 @rackspace servers online each running a http://t.co/qfjU7hDU Increase the cloud!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 19:22:43 +0000", "from_user": "booyaa", "from_user_id": 719673, "from_user_id_str": "719673", "from_user_name": "booyaa", "geo": null, "id": 146309018854494200, "id_str": "146309018854494210", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/640332281/boo-sm-avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/640332281/boo-sm-avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: Wow! Our #nodejs application cloud currently has ~460 @rackspace servers online each running a http://t.co/qfjU7hDU Increase the cloud!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 16:09:04 +0000", "from_user": "limptwiglet", "from_user_id": 125301474, "from_user_id_str": "125301474", "from_user_name": "Mark", "geo": null, "id": 146260289157996540, "id_str": "146260289157996544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1433863348/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1433863348/Untitled_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Nice work on flatiron @nodejitsu very clever stuff. Need more examples like http://t.co/7oUmnVIX Thanks @maciejmalecki", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 15:49:23 +0000", "from_user": "FotoVerite", "from_user_id": 15252015, "from_user_id_str": "15252015", "from_user_name": "Matthew Bergman", "geo": null, "id": 146255335198425100, "id_str": "146255335198425088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/55963700/_cover_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/55963700/_cover_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: Wow! Our #nodejs application cloud currently has ~460 @rackspace servers online each running a http://t.co/qfjU7hDU Increase the cloud!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 15:48:24 +0000", "from_user": "cronopio2", "from_user_id": 14474239, "from_user_id_str": "14474239", "from_user_name": "D\\u24B6niel \\u24B6ristizabal \\u2622", "geo": null, "id": 146255084530053120, "id_str": "146255084530053120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1587000370/DennisRitchie_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587000370/DennisRitchie_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: Wow! Our #nodejs application cloud currently has ~460 @rackspace servers online each running a http://t.co/qfjU7hDU Increase the cloud!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 15:09:41 +0000", "from_user": "maciejmalecki", "from_user_id": 263755874, "from_user_id_str": "263755874", "from_user_name": "Maciej Ma\\u0142ecki", "geo": null, "id": 146245343162535940, "id_str": "146245343162535937", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1547225919/IMG_20110917_192531mt_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1547225919/IMG_20110917_192531mt_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@NuckChorris Well, I don't think nodejitsu provides rapping as a service. @marak, what do you think?", "to_user": "NuckChorris", "to_user_id": 18070528, "to_user_id_str": "18070528", "to_user_name": "Peter Lejeck", "in_reply_to_status_id": 146244515609587700, "in_reply_to_status_id_str": "146244515609587712"}, +{"created_at": "Mon, 12 Dec 2011 14:51:49 +0000", "from_user": "gbelrose", "from_user_id": 18360266, "from_user_id_str": "18360266", "from_user_name": "Guillaume Belrose", "geo": null, "id": 146240844675026940, "id_str": "146240844675026944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/86817622/P1040551_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/86817622/P1040551_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Is there a JVM equivalent of http://t.co/oedxibrf maybe using #Scala and #Netty ?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 13:20:10 +0000", "from_user": "NuckChorris", "from_user_id": 18070528, "from_user_id_str": "18070528", "from_user_name": "Peter Lejeck", "geo": null, "id": 146217781682118660, "id_str": "146217781682118657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1621810033/nuckchorris0_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621810033/nuckchorris0_normal.png", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@maciejmalecki that was so white. Like, absurdly so. Haven't you learned anything from the peeps at @nodejitsu with their New York dialect?", "to_user": "maciejmalecki", "to_user_id": 263755874, "to_user_id_str": "263755874", "to_user_name": "Maciej Ma\\u0142ecki", "in_reply_to_status_id": 146201353344135170, "in_reply_to_status_id_str": "146201353344135168"}, +{"created_at": "Mon, 12 Dec 2011 13:18:56 +0000", "from_user": "nodejitsu", "from_user_id": 157442008, "from_user_id_str": "157442008", "from_user_name": "Nodejitsu", "geo": null, "id": 146217470569619460, "id_str": "146217470569619456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "source": "<a href="http://paper.li" rel="nofollow">Paper.li</a>", "text": "Nodejitsu Ninjas is out! http://t.co/PBus8pPz \\u25B8 Top stories today via @scottbrit @40square @phineasb @zohaibhassan @geekanddad", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 11:38:52 +0000", "from_user": "icelandicfunds", "from_user_id": 228932785, "from_user_id_str": "228932785", "from_user_name": "Icelandic funds", "geo": null, "id": 146192287502831600, "id_str": "146192287502831616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688805440/icon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688805440/icon_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "A big thank you to all the awesome people @nodejitsu for hosting our website. The service is incredible, and so is the support.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 09:30:32 +0000", "from_user": "_delph", "from_user_id": 133820271, "from_user_id_str": "133820271", "from_user_name": "Harry Jones", "geo": null, "id": 146159991479468030, "id_str": "146159991479468032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/828340507/delph_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/828340507/delph_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @RobAshton: Fixing a bug in @nodejitsu's plates and being reminded of http://t.co/TFOmafqx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 09:24:41 +0000", "from_user": "RobAshton", "from_user_id": 15036950, "from_user_id_str": "15036950", "from_user_name": "'Hurricane Rob'", "geo": null, "id": 146158521673715700, "id_str": "146158521673715712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692505029/santa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692505029/santa_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Fixing a bug in @nodejitsu's plates and being reminded of http://t.co/TFOmafqx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 07:12:14 +0000", "from_user": "maciejmalecki", "from_user_id": 263755874, "from_user_id_str": "263755874", "from_user_name": "Maciej Ma\\u0142ecki", "geo": null, "id": 146125186784178180, "id_str": "146125186784178176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1547225919/IMG_20110917_192531mt_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1547225919/IMG_20110917_192531mt_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: Wow! Our #nodejs application cloud currently has ~460 @rackspace servers online each running a http://t.co/qfjU7hDU Increase the cloud!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 05:43:46 +0000", "from_user": "bdefore", "from_user_id": 7547492, "from_user_id_str": "7547492", "from_user_name": "bdefore", "geo": null, "id": 146102923343040500, "id_str": "146102923343040512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/23790702/Photo_80_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/23790702/Photo_80_normal.jpg", "source": "<a href="http://mowglii.com/itsy" rel="nofollow">Itsy!</a>", "text": "@kristoferjoseph Funny timing that. This is a sandbox test of zappa + nodejitsu I made just days ago: http://t.co/NWmXJxrW", "to_user": "kristoferjoseph", "to_user_id": 7661142, "to_user_id_str": "7661142", "to_user_name": "Kristofer Joseph", "in_reply_to_status_id": 146034626094305280, "in_reply_to_status_id_str": "146034626094305282"}, +{"created_at": "Mon, 12 Dec 2011 05:26:35 +0000", "from_user": "laels", "from_user_id": 19866239, "from_user_id_str": "19866239", "from_user_name": "Lael Sturm", "geo": null, "id": 146098602215874560, "id_str": "146098602215874560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/74589509/Lael_Bris_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/74589509/Lael_Bris_normal.jpg", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "Every time I see this I crave hot pastrami fr Katz's Deli. RT @rekatz: Re: Katz Daily is out! http://t.co/EK2VBd44 via @ap_sims @nodejitsu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} + +, +{"created_at": "Mon, 19 Dec 2011 18:57:37 +0000", "from_user": "jpatanooga", "from_user_id": 14935521, "from_user_id_str": "14935521", "from_user_name": "Josh Patterson", "geo": null, "id": 148839419200290800, "id_str": "148839419200290817", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1471343793/summer_shot_cropped_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1471343793/summer_shot_cropped_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nattybnatkins: Need some SQL support for Hadoop? Never fear, Hive 0.8.0 is here! http://t.co/SdhM9dIp - Includes indexes and some new primitive types", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:14 +0000", "from_user": "lurino", "from_user_id": 243580387, "from_user_id_str": "243580387", "from_user_name": "Yuki Joji", "geo": null, "id": 148839071983222800, "id_str": "148839071983222784", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1656798036/Screen_Shot_2011-11-25_at_4.12.28_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656798036/Screen_Shot_2011-11-25_at_4.12.28_PM_normal.png", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@iambadung hadoop kayaknya menarik", "to_user": "iambadung", "to_user_id": 15363349, "to_user_id_str": "15363349", "to_user_name": "Purwanto Hasan", "in_reply_to_status_id": 148837892536549380, "in_reply_to_status_id_str": "148837892536549377"}, +{"created_at": "Mon, 19 Dec 2011 18:55:41 +0000", "from_user": "usenix", "from_user_id": 17161645, "from_user_id_str": "17161645", "from_user_name": "usenix", "geo": null, "id": 148838933860581380, "id_str": "148838933860581376", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/196507638/usenix_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/196507638/usenix_twitter_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @strataconf: Five Big Data predictions for 2012 http://t.co/VFu05xrA via @radar #bigdata #visualization #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:40 +0000", "from_user": "rikkiends", "from_user_id": 14421746, "from_user_id_str": "14421746", "from_user_name": "rikkiends", "geo": null, "id": 148838928626094080, "id_str": "148838928626094082", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1683919193/rikkiusenix_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683919193/rikkiusenix_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @strataconf: Five Big Data predictions for 2012 http://t.co/cAhhMByM via @radar #bigdata #visualization #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:27 +0000", "from_user": "ekampf", "from_user_id": 7467902, "from_user_id_str": "7467902", "from_user_name": "Eran Kampf", "geo": null, "id": 148838621930197000, "id_str": "148838621930196994", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1094675975/n613471493_1492_-_Copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1094675975/n613471493_1492_-_Copy_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @cloudera: Apache ZooKeeper 3.4.1 has been released: http://t.co/Ql078uKR via @phunt #Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:45 +0000", "from_user": "jimoneil", "from_user_id": 14350900, "from_user_id_str": "14350900", "from_user_name": "Jim O'Neil", "geo": null, "id": 148838444368535550, "id_str": "148838444368535552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/485630749/me_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/485630749/me_normal.png", "source": "<a href="http://www.metrotwit.com/" rel="nofollow">MetroTwit</a>", "text": "one more lingering blog post, then diving into Hadoop on #WindowsAzure - finally!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:32 +0000", "from_user": "nattybnatkins", "from_user_id": 23883150, "from_user_id_str": "23883150", "from_user_name": "Jonathan Natkins", "geo": null, "id": 148838393231585280, "id_str": "148838393231585280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1441187827/nattysmall_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1441187827/nattysmall_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "Need some SQL support for Hadoop? Never fear, Hive 0.8.0 is here! http://t.co/SdhM9dIp - Includes indexes and some new primitive types", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:08 +0000", "from_user": "colinmasson", "from_user_id": 15076177, "from_user_id_str": "15076177", "from_user_name": "Colin Masson", "geo": null, "id": 148838291989479420, "id_str": "148838291989479424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/57042182/cmassonBIO_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/57042182/cmassonBIO_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @msretail: Hadoop helps eBay with analyzing inventory data to building customer profiles using real live online behavior http://t.co/rUXTk6eo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:53 +0000", "from_user": "cloudera", "from_user_id": 16134540, "from_user_id_str": "16134540", "from_user_name": "Cloudera", "geo": null, "id": 148837974816206850, "id_str": "148837974816206848", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/934403054/favicon_32_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/934403054/favicon_32_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Apache ZooKeeper 3.4.1 has been released: http://t.co/Ql078uKR via @phunt #Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:44 +0000", "from_user": "jeffburknoe", "from_user_id": 259249759, "from_user_id_str": "259249759", "from_user_name": "Jeff Burk", "geo": null, "id": 148837437324537860, "id_str": "148837437324537856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1477726823/avatar_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1477726823/avatar_normal.PNG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Microsoft's Scott Guthrie and his impact on Azure: A six month report card http://t.co/8QWzskYU #windowsazure #s3 #vmware #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:59 +0000", "from_user": "jrzyshr", "from_user_id": 5658532, "from_user_id_str": "5658532", "from_user_name": "Peter Laudati", "geo": null, "id": 148836744127709200, "id_str": "148836744127709184", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1236117631/PeterBugEyes_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1236117631/PeterBugEyes_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @jongalloway: Hadoop Streaming and F# MapReduce : http://t.co/qqMbvXfr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:13 +0000", "from_user": "Aaronontheweb", "from_user_id": 14864055, "from_user_id_str": "14864055", "from_user_name": "Aaron", "geo": null, "id": 148836048322052100, "id_str": "148836048322052097", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1104793038/head_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1104793038/head_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @jongalloway: Hadoop Streaming and F# MapReduce : http://t.co/qqMbvXfr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:08 +0000", "from_user": "MattiasBolander", "from_user_id": 127586383, "from_user_id_str": "127586383", "from_user_name": "Mattias Bolander", "geo": null, "id": 148835522368909300, "id_str": "148835522368909312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @timoelliott: 2012: hadoop, in-memory, graph dbs, says @jameskobielus: http://t.co/CQIlbhgC #analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:14 +0000", "from_user": "IBM_InfoSphere", "from_user_id": 64781301, "from_user_id_str": "64781301", "from_user_name": "IBM InfoSphere", "geo": null, "id": 148835043522002940, "id_str": "148835043522002944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/357366799/InfoSphere_200x200_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/357366799/InfoSphere_200x200_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Understanding #BigData - NEW McGraw-Hill e-book by IBM experts - register & download: http://t.co/sctmv9q2 #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:37 +0000", "from_user": "nsnowhite", "from_user_id": 14364843, "from_user_id_str": "14364843", "from_user_name": "Nikki Snowhite", "geo": null, "id": 148834387088257020, "id_str": "148834387088257024", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1265181785/DSC_0169_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1265181785/DSC_0169_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@cloudera's @hackingdata featured in Forbes '30 Under 30' Technology Disruptors: http://t.co/lCLpezXf (by @VictoriaBarret) #hadoop #bigdata", "to_user": "cloudera", "to_user_id": 16134540, "to_user_id_str": "16134540", "to_user_name": "Cloudera"}, +{"created_at": "Mon, 19 Dec 2011 18:37:32 +0000", "from_user": "jerrykuch", "from_user_id": 14311701, "from_user_id_str": "14311701", "from_user_name": "jerrykuch", "geo": null, "id": 148834364392878080, "id_str": "148834364392878082", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/52471641/Clem-Looks-Surly_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/52471641/Clem-Looks-Surly_normal.jpg", "source": "<a href="http://twitter.com" rel="nofollow">Tweetie for Mac</a>", "text": "I have Hadoop AND a red Porsche. I am sooooo overcompensating. HT @ZUrlocker http://t.co/csFuPcr1 RT @cmastication", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:13 +0000", "from_user": "BuscaPeDev", "from_user_id": 169582767, "from_user_id_str": "169582767", "from_user_name": "BuscaP\\u00E9 Developer", "geo": null, "id": 148833780549947400, "id_str": "148833780549947394", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1181577048/buscapedev_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1181577048/buscapedev_twitter_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Do zero ao Hadoop! http://t.co/kVun9NvC #hadoop #mapreduce #soudev", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:59 +0000", "from_user": "albietz", "from_user_id": 11056912, "from_user_id_str": "11056912", "from_user_name": "Alberto Bietti", "geo": null, "id": 148833721804525570, "id_str": "148833721804525569", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/915386496/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/915386496/image_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "RT @paristechreview: Prospects and Promise of Big Data http://t.co/qYTorZpQ #bigdata (with @hadoop @streambase @TEDchris @HenriVerdier)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:02 +0000", "from_user": "kellabyte", "from_user_id": 47494539, "from_user_id_str": "47494539", "from_user_name": "Kelly Sommers", "geo": null, "id": 148833234086662140, "id_str": "148833234086662147", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1517690787/avatar-54_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517690787/avatar-54_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @jongalloway: Hadoop Streaming and F# MapReduce : http://t.co/qqMbvXfr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:48 +0000", "from_user": "matrix_spear", "from_user_id": 223258531, "from_user_id_str": "223258531", "from_user_name": "matrix_spear", "geo": null, "id": 148832921120276480, "id_str": "148832921120276482", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1501257763/matrixdancer_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1501257763/matrixdancer_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Microsoft Azure now hosts Hadoop http://t.co/POX6JvBW #bigdata #analytics #bi #cloud #hadoop #dev #software #microsoft #ibm #hp #sap #saas", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:04 +0000", "from_user": "Cloud9s", "from_user_id": 14759893, "from_user_id_str": "14759893", "from_user_name": "Kevin Haynes", "geo": null, "id": 148832738705817600, "id_str": "148832738705817600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1333766120/Kevin_sun_glasses_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1333766120/Kevin_sun_glasses_normal.jpg", "source": "<a href="http://paper.li" rel="nofollow">Paper.li</a>", "text": "Hadoop News and Influencers is out! http://t.co/kWfOYKZF \\u25B8 Top stories today via @syncsort @suren_h @mikepluta", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:49 +0000", "from_user": "jongalloway", "from_user_id": 765694, "from_user_id_str": "765694", "from_user_name": "Jon Galloway", "geo": null, "id": 148832674943995900, "id_str": "148832674943995904", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/329131438/JonFace420px_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/329131438/JonFace420px_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Hadoop Streaming and F# MapReduce : http://t.co/qqMbvXfr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:36 +0000", "from_user": "NunoGodinho", "from_user_id": 9971382, "from_user_id_str": "9971382", "from_user_name": "Nuno Godinho", "geo": null, "id": 148832370534002700, "id_str": "148832370534002689", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/831407287/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/831407287/twitterProfilePhoto_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @taswarbhatti: Using #Hadoop on #Azure JS Console for Data Visualizations | http://t.co/7xZCGdpR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:33 +0000", "from_user": "UIResearchPark", "from_user_id": 175415640, "from_user_id_str": "175415640", "from_user_name": "UIUC Research Park", "geo": null, "id": 148831852671680500, "id_str": "148831852671680512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1099239176/ew_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1099239176/ew_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "RT @Infobright: If you missed last week's webinar with LiveRail on using #Hadoop and Infobright, you can listen anytime you want http://t.co/0BmV1ubX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:32 +0000", "from_user": "fredericmalo", "from_user_id": 168825127, "from_user_id_str": "168825127", "from_user_name": "Fr\\u00E9d\\u00E9ric Malo", "geo": null, "id": 148830841299152900, "id_str": "148830841299152896", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1352796962/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1352796962/image_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "RT @paristechreview: Les promesses du Big Data : http://t.co/x1vX1XSw #bigdata (avec @HenriVerdier @hadoop @streambase)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:25 +0000", "from_user": "OBrien_Siobhan", "from_user_id": 20972333, "from_user_id_str": "20972333", "from_user_name": "Siobhan O'Brien", "geo": null, "id": 148830813570596860, "id_str": "148830813570596864", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1584578872/09.03.09_001_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584578872/09.03.09_001_normal.jpg", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Hiring a Hadoop Developer #2676 in Boston, MA http://t.co/2S1sAig1 #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:55 +0000", "from_user": "brocknoland", "from_user_id": 15394413, "from_user_id_str": "15394413", "from_user_name": "brocknoland", "geo": null, "id": 148830686814543870, "id_str": "148830686814543874", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/57015043/brock-headshot_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/57015043/brock-headshot_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @cloudera: Forbes '30 Under 30' Technology Disruptors features @Cloudera's @hackingdata: http://t.co/jOcOPp1D (by @VictoriaBarret) #hadoop #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:25 +0000", "from_user": "brocknoland", "from_user_id": 15394413, "from_user_id_str": "15394413", "from_user_name": "brocknoland", "geo": null, "id": 148830559257362430, "id_str": "148830559257362432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/57015043/brock-headshot_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/57015043/brock-headshot_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ClouderaU: Chicago - Cloudera Developer Training for Apache Hadoop - Jan 17-20. Register here: http://t.co/wulV9V0P", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:30 +0000", "from_user": "umitgunduz", "from_user_id": 33584412, "from_user_id_str": "33584412", "from_user_name": "Umit Gunduz", "geo": null, "id": 148830077000486900, "id_str": "148830077000486912", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1267325045/TweetLandPhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1267325045/TweetLandPhoto_normal.jpg", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "Hadoop Streaming and F# MapReduce http://t.co/GLMB9XqV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:58 +0000", "from_user": "sheriff72", "from_user_id": 14479083, "from_user_id_str": "14479083", "from_user_name": "Ron Adams", "geo": null, "id": 148829942996668400, "id_str": "148829942996668416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/60460420/SteamedRon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/60460420/SteamedRon_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "MapReduce for the Masses: http://t.co/b6EYWFwB #hadoop #dataanalytics #commoncrawl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:19 +0000", "from_user": "taleocareers", "from_user_id": 395588689, "from_user_id_str": "395588689", "from_user_name": "Taleo Careers", "geo": +{"coordinates": [37.7005,-121.9341], "type": "Point"}, "id": 148829529354412030, "id_str": "148829529354412032", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1600133482/174863_28268828197_1270923_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600133482/174863_28268828197_1270923_n_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Senior Hadoop ETL Engineer/Analyst - Taleo - Dublin, CA http://t.co/IgjHoRU4 #jobs @Taleo_Corp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:02 +0000", "from_user": "Infobright", "from_user_id": 16202088, "from_user_id_str": "16202088", "from_user_name": "Infobright", "geo": null, "id": 148829459766714370, "id_str": "148829459766714369", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/349754703/infobright_twitterlogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/349754703/infobright_twitterlogo_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "If you missed last week's webinar with LiveRail on using #Hadoop and Infobright, you can listen anytime you want http://t.co/0BmV1ubX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:59 +0000", "from_user": "matrix_spear", "from_user_id": 223258531, "from_user_id_str": "223258531", "from_user_name": "matrix_spear", "geo": null, "id": 148829443195011070, "id_str": "148829443195011073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1501257763/matrixdancer_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1501257763/matrixdancer_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "The Year Ahead In Big Data? Big, Cool, New Stuff Looms Large! http://t.co/vJExuoKu #bigdata #analytics #bi #cloud #hadoop #microsoft #ibm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:34 +0000", "from_user": "ogrisel", "from_user_id": 16067035, "from_user_id_str": "16067035", "from_user_name": "Olivier Grisel", "geo": null, "id": 148829338207395840, "id_str": "148829338207395841", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/422999926/aee56554ec30edfd680e1c937ed4e54d_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/422999926/aee56554ec30edfd680e1c937ed4e54d_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @bigdata: Big Data Analytics: if you dig Spark, check out ScalOps (its like Pig but with iterative extensions) http://t.co/O5bzEpKK #scala #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:37 +0000", "from_user": "melissahick", "from_user_id": 20812756, "from_user_id_str": "20812756", "from_user_name": "Melissa Hick", "geo": null, "id": 148828347680571400, "id_str": "148828347680571392", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1136078385/46603_10100510039653261_2007937_71570084_5675483_n_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1136078385/46603_10100510039653261_2007937_71570084_5675483_n_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Forbes '30 Under 30' Technology Disruptors features @Cloudera's @hackingdata: http://t.co/dIGHdqny (by @VictoriaBarret) #hadoop #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:08:15 +0000", "from_user": "QuinnEvoyHunk", "from_user_id": 339572662, "from_user_id_str": "339572662", "from_user_name": "Quinn Evoy", "geo": null, "id": 148826996280016900, "id_str": "148826996280016897", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1453053164/1311243543_010_results_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1453053164/1311243543_010_results_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Where are all the cloud-based Hadoop services?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:08:01 +0000", "from_user": "stojanovic", "from_user_id": 4242501, "from_user_id_str": "4242501", "from_user_name": "Alexander Stojanovic", "geo": null, "id": 148826937148719100, "id_str": "148826937148719106", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1614552290/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1614552290/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Looks cool (and I do like Spark) : \\u201C@bigdata: Big Data Analytics: if you dig Spark, check out ScalOps http://t.co/RUYUa1yQ #scala #hadoop\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:07:00 +0000", "from_user": "ClouderaU", "from_user_id": 304590949, "from_user_id_str": "304590949", "from_user_name": "Cloudera University", "geo": null, "id": 148826683082940400, "id_str": "148826683082940417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1562750756/Screen_Shot_2011-09-27_at_11.33.38_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1562750756/Screen_Shot_2011-09-27_at_11.33.38_AM_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Chicago - Cloudera Developer Training for Apache Hadoop - Jan 17-20. Register here: http://t.co/wulV9V0P", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:03:50 +0000", "from_user": "egadenne", "from_user_id": 14424892, "from_user_id_str": "14424892", "from_user_name": "Emmanuel Gadenne", "geo": null, "id": 148825885934493700, "id_str": "148825885934493696", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1650060011/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650060011/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Very good synthesis : http://t.co/hSqXg9fI #bigdata #hadoop #strataconf ~ @HenriVerdier", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:02:27 +0000", "from_user": "phunt", "from_user_id": 12370372, "from_user_id_str": "12370372", "from_user_name": "Patrick Hunt", "geo": null, "id": 148825536532189200, "id_str": "148825536532189184", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/80884383/phunt3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/80884383/phunt3_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @cloudera: Forbes '30 Under 30' Technology Disruptors features @Cloudera's @hackingdata: http://t.co/jOcOPp1D (by @VictoriaBarret) #hadoop #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:02:21 +0000", "from_user": "AzureServicesBr", "from_user_id": 42667151, "from_user_id_str": "42667151", "from_user_name": "Azure Services Br", "geo": null, "id": 148825511672553470, "id_str": "148825511672553472", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/569445229/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/569445229/twitterProfilePhoto_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Via @LuConde \"Um pequeno resumo das novidades do WIndows #Azure para Dezembro. Hadoop, Node.Js, SQLAzure 150GB e... http://t.co/QINhTwyv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:02:06 +0000", "from_user": "amberwinans", "from_user_id": 51945564, "from_user_id_str": "51945564", "from_user_name": "Amber Winans", "geo": null, "id": 148825446837010430, "id_str": "148825446837010432", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1672457505/amberwinans_2011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672457505/amberwinans_2011_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Forbes '30 Under 30' Technology Disruptors features @Cloudera's @hackingdata: http://t.co/4f18nzLT (by @VictoriaBarret) #hadoop #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:36 +0000", "from_user": "BhavaCom", "from_user_id": 80389740, "from_user_id_str": "80389740", "from_user_name": "Bhava Communications", "geo": null, "id": 148825322647859200, "id_str": "148825322647859201", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/456832230/bhavaMD3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/456832230/bhavaMD3_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Forbes '30 Under 30' Technology Disruptors features @Cloudera's @hackingdata: http://t.co/DOypLbl1 (by @VictoriaBarret) #hadoop #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:35 +0000", "from_user": "cloudera", "from_user_id": 16134540, "from_user_id_str": "16134540", "from_user_name": "Cloudera", "geo": null, "id": 148825319976079360, "id_str": "148825319976079360", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/934403054/favicon_32_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/934403054/favicon_32_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Forbes '30 Under 30' Technology Disruptors features @Cloudera's @hackingdata: http://t.co/jOcOPp1D (by @VictoriaBarret) #hadoop #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:34 +0000", "from_user": "hopenic", "from_user_id": 119460363, "from_user_id_str": "119460363", "from_user_name": "Hope Nicora", "geo": null, "id": 148825315681120260, "id_str": "148825315681120256", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/741311335/Hope_Nicora_Trimmed_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/741311335/Hope_Nicora_Trimmed_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Forbes '30 Under 30' Technology Disruptors features @Cloudera's @hackingdata: http://t.co/jEL8e2Zu (by @VictoriaBarret) #hadoop #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:57 +0000", "from_user": "patrickDurusau", "from_user_id": 152194866, "from_user_id_str": "152194866", "from_user_name": "Patrick Durusau", "geo": null, "id": 148825157736210430, "id_str": "148825157736210432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/961579480/patrick_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/961579480/patrick_normal.jpeg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Next Generation of Apache Hadoop MapReduce #topicmaps #hadoop #mapreduce - http://t.co/sBOipcSY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:47 +0000", "from_user": "vbs_br", "from_user_id": 115402924, "from_user_id_str": "115402924", "from_user_name": "Vin\\u00EDcius Souza", "geo": null, "id": 148824613432987650, "id_str": "148824613432987648", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1592485427/vinicius_photo_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592485427/vinicius_photo_3_normal.jpg", "source": "<a href="http://www.metrotwit.com/" rel="nofollow">MetroTwit</a>", "text": "RT @luconde: Um pequeno resumo das novidades do WIndows #Azure para Dezembro. http://t.co/fbriAgX8 Hadoop, Node.Js, SQL 150GB e outros.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:42 +0000", "from_user": "HenriVerdier", "from_user_id": 42113624, "from_user_id_str": "42113624", "from_user_name": "Henri Verdier", "geo": null, "id": 148824592948015100, "id_str": "148824592948015105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/319627362/Read_Digital_-_4_juin_par_empreintes_digitales_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/319627362/Read_Digital_-_4_juin_par_empreintes_digitales_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Very good synthesis : http://t.co/deBXojzK #bigdata #hadoop #strataconf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:47 +0000", "from_user": "5h15h", "from_user_id": 8567932, "from_user_id_str": "8567932", "from_user_name": "..S..h..i..S..h..", "geo": null, "id": 148824110473027600, "id_str": "148824110473027585", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/818057411/5h15h_zune_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/818057411/5h15h_zune_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Hadoop helps eBay with analyzing inventory data to building customer profiles using real live online behavior http://t.co/0VQI7vtB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:47 +0000", "from_user": "msretail", "from_user_id": 22028833, "from_user_id_str": "22028833", "from_user_name": "msretail", "geo": null, "id": 148824109189566460, "id_str": "148824109189566464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1514531931/MSRetailIcon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1514531931/MSRetailIcon_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Hadoop helps eBay with analyzing inventory data to building customer profiles using real live online behavior http://t.co/rUXTk6eo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:05 +0000", "from_user": "Luiz_Macedo", "from_user_id": 49366532, "from_user_id_str": "49366532", "from_user_name": "Luiz Macedo", "geo": null, "id": 148823934844932100, "id_str": "148823934844932096", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1105464700/Perfil_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1105464700/Perfil_normal.jpg", "source": "<a href="http://www.metrotwit.com/" rel="nofollow">MetroTwit</a>", "text": "RT @luconde: Um pequeno resumo das novidades do WIndows #Azure para Dezembro. http://t.co/fbriAgX8 Hadoop, Node.Js, SQL 150GB e outros.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:53 +0000", "from_user": "luconde", "from_user_id": 14282868, "from_user_id_str": "14282868", "from_user_name": "luconde", "geo": null, "id": 148823883389214720, "id_str": "148823883389214721", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/568122326/Eu_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/568122326/Eu_normal.gif", "source": "<a href="http://www.metrotwit.com/" rel="nofollow">MetroTwit</a>", "text": "Um pequeno resumo das novidades do WIndows #Azure para Dezembro. http://t.co/fbriAgX8 Hadoop, Node.Js, SQL 150GB e outros.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:29 +0000", "from_user": "megamda", "from_user_id": 19755562, "from_user_id_str": "19755562", "from_user_name": "Kumar Palaniappan", "geo": null, "id": 148823029705744400, "id_str": "148823029705744386", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627876492/kumar_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627876492/kumar_normal.jpeg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Meeting folks over lunch to talk about DATA #cloud #nosql #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:01 +0000", "from_user": "ChitikaInsights", "from_user_id": 434962995, "from_user_id_str": "434962995", "from_user_name": "Chitika Insights", "geo": null, "id": 148822658417565700, "id_str": "148822658417565696", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695213552/header_logo__2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695213552/header_logo__2__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Special Report: The Big Business Buzzword for 2012: Big Data http://t.co/IkKfy0qj #bigdata #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:53 +0000", "from_user": "RickHigh", "from_user_id": 14217219, "from_user_id_str": "14217219", "from_user_name": "Rick Hightower", "geo": null, "id": 148821616518901760, "id_str": "148821616518901761", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/750672834/rick2_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/750672834/rick2_normal.jpeg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "RT @hectcastro: Just completed 4 days of Solr and Hadoop training with @lucidimagineer. Highly recommended.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:44 +0000", "from_user": "softartisans", "from_user_id": 50410463, "from_user_id_str": "50410463", "from_user_name": "SoftArtisans ", "geo": null, "id": 148821329242628100, "id_str": "148821329242628099", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/292623405/SAtweet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/292623405/SAtweet_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#hadoop video: \"Mo Data, Mo Problems: #HBase,\" featuring an extended walmart metaphor by @aesphades http://t.co/GEhnzaqP @James_Stallings", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:49 +0000", "from_user": "Syncsort", "from_user_id": 119987616, "from_user_id_str": "119987616", "from_user_name": "Syncsort", "geo": null, "id": 148820848751558660, "id_str": "148820848751558657", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/858340521/syncsort_profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/858340521/syncsort_profile_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "[BLOG] Steve Totman on Big Data's invasion of Europe. http://t.co/BVHP0Ple #bigdata #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:49 +0000", "from_user": "SyncsortDI", "from_user_id": 381581134, "from_user_id_str": "381581134", "from_user_name": "SyncsortDI", "geo": null, "id": 148820846658592770, "id_str": "148820846658592768", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1593198934/Syncsort_Logo_150x150_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593198934/Syncsort_Logo_150x150_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "[BLOG] Steve Totman on Big Data's invasion of Europe. http://t.co/IwE9ZSad #bigdata #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:04 +0000", "from_user": "toge_", "from_user_id": 13359742, "from_user_id_str": "13359742", "from_user_name": "toge_", "geo": null, "id": 148820659877847040, "id_str": "148820659877847041", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/94924692/flower_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/94924692/flower_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "\\u30AA\\u30E9\\u30A4\\u30EA\\u30FC\\u306E\\u96FB\\u5B50\\u30D6\\u30C3\\u30AF\\u306B\\u3044\\u3064\\u306E\\u307E\\u306BBinary Hacks\\u3084Hadoop\\u7B2C\\uFF12\\u7248\\u304C\\u3002\\u65B0\\u520A\\u306E\\uFF16\\u518A\\u4E2D\\uFF14\\u518A\\u624B\\u5143\\u306B\\u6301\\u3063\\u3066\\u3066\\u3057\\u304B\\u3082\\u81EA\\u708A\\u30AD\\u30E5\\u30FC\\u306B\\u305F\\u307E\\u3063\\u3066\\u308B\\u3002\\u306A\\u3093\\u304B\\u5207\\u306A\\u3044\\u306A\\u3002\\u73FE\\u5B9F\\u306E\\u672C\\u3068\\u306E\\u30BF\\u30A4\\u30E0\\u30E9\\u30B0\\u3092\\u3082\\u3063\\u3068\\u6E1B\\u3089\\u3057\\u3066\\u307B\\u3057\\u3044\\u306A\\u3041\\u3002\\u3000https://t.co/oD3sdRFB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:24 +0000", "from_user": "LucidImagineer", "from_user_id": 19731100, "from_user_id_str": "19731100", "from_user_name": "Lucid Imagination", "geo": null, "id": 148820240002854900, "id_str": "148820240002854912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/79685689/lucid_glass_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/79685689/lucid_glass_normal.png", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "RT @hectcastro: Just completed 4 days of Solr and Hadoop training with @lucidimagineer. Highly recommended.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:38:00 +0000", "from_user": "fiistudent", "from_user_id": 70329310, "from_user_id_str": "70329310", "from_user_name": "FII Student", "geo": null, "id": 148819385077874700, "id_str": "148819385077874688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/390762512/fii-logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/390762512/fii-logo_normal.png", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @hurrycane From 0 to #Hadoop in 5 Minutes with Common Crawl: http://t.co/LeByriEk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:36:01 +0000", "from_user": "taswarbhatti", "from_user_id": 27633423, "from_user_id_str": "27633423", "from_user_name": "Taswar Bhatti", "geo": null, "id": 148818883854348300, "id_str": "148818883854348288", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/114756492/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/114756492/me_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Using #Hadoop on #Azure JS Console for Data Visualizations | http://t.co/fBSIaEfD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:35:42 +0000", "from_user": "scottdunlop", "from_user_id": 25550110, "from_user_id_str": "25550110", "from_user_name": "Scott Dunlop", "geo": null, "id": 148818804850438140, "id_str": "148818804850438144", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/104874078/blogscott_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/104874078/blogscott_normal.jpg", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Big data Software Engineers - Java, RoR, Hadoop, Cassandra, Solr, Machine Learni... http://t.co/UoeaJNue #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:02 +0000", "from_user": "Newitrsdotcom", "from_user_id": 330154962, "from_user_id_str": "330154962", "from_user_name": "New IT Risk Services", "geo": null, "id": 148818384098824200, "id_str": "148818384098824193", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680630772/logo4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680630772/logo4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @infomgmt: 2012 Holds Some Cool Prospects for Big Data -- http://t.co/lCUVtHD2 @jameskobielus #bigdata #analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:39 +0000", "from_user": "phaneeshn", "from_user_id": 78000743, "from_user_id_str": "78000743", "from_user_name": "Phaneesh Nagaraja", "geo": null, "id": 148818037536067600, "id_str": "148818037536067586", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/789289885/0383_guitarist_heavy_metal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/789289885/0383_guitarist_heavy_metal_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @bigdata: Big Data Analytics: if you dig Spark, check out ScalOps (its like Pig but with iterative extensions) http://t.co/O5bzEpKK #scala #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:04 +0000", "from_user": "cld9731", "from_user_id": 16745168, "from_user_id_str": "16745168", "from_user_name": "Charles Ditzel", "geo": null, "id": 148817889653309440, "id_str": "148817889653309440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/74655786/screenshot_02_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/74655786/screenshot_02_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Azure Cloud matures : first Java, now now Node.js and MongoDB, later Hadoop. Interesting. See : http://t.co/G7V1EwrC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:25:11 +0000", "from_user": "jakkigeiger", "from_user_id": 113683943, "from_user_id_str": "113683943", "from_user_name": "Jakki Geiger", "geo": null, "id": 148816156281667600, "id_str": "148816156281667584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/691720711/Picture1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/691720711/Picture1_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Watch this http://t.co/nkeOt75i clip from #hw2011 @Informaticacorp #Hparser no hand-coding, speeds up #Hadoop process", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:23:47 +0000", "from_user": "J_", "from_user_id": 40278705, "from_user_id_str": "40278705", "from_user_name": "Julien Le Dem", "geo": null, "id": 148815805654638600, "id_str": "148815805654638592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/277809119/cowboy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/277809119/cowboy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @bigdata: Big Data Analytics: if you dig Spark, check out ScalOps (its like Pig but with iterative extensions) http://t.co/O5bzEpKK #scala #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:22:25 +0000", "from_user": "barton808", "from_user_id": 9135742, "from_user_id_str": "9135742", "from_user_name": "Barton George", "geo": null, "id": 148815459536486400, "id_str": "148815459536486402", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/59421114/MySunPicSquare80x80_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/59421114/MySunPicSquare80x80_normal.jpeg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "Hadoop World: What Dell is up to with Big Data, Open Source and Developers http://t.co/dO4Z2Reu <- My interview on The Cube", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:20:42 +0000", "from_user": "brocknoland", "from_user_id": 15394413, "from_user_id_str": "15394413", "from_user_name": "brocknoland", "geo": null, "id": 148815027955175420, "id_str": "148815027955175424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/57015043/brock-headshot_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/57015043/brock-headshot_normal.png", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @robdielemans: Great: Three Xebia Consulants are Certfied #Cloudera Developers in Apache Hadoop....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:19:10 +0000", "from_user": "decisionmgt", "from_user_id": 239083333, "from_user_id_str": "239083333", "from_user_name": "DecisionMgtSolutions", "geo": null, "id": 148814641991131140, "id_str": "148814641991131138", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1239007269/DMSlogo_evenborder_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1239007269/DMSlogo_evenborder_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @Zementis: Operational Deployment of Predictive Solutions: Lost in Translation? Not with #PMML http://t.co/iOjIkykv #bigdata #cloud #analytics #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:18:30 +0000", "from_user": "darachennis", "from_user_id": 16210715, "from_user_id_str": "16210715", "from_user_name": "darachennis", "geo": null, "id": 148814476970426370, "id_str": "148814476970426368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1532050296/Me_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1532050296/Me_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @bigdata: Big Data Analytics: if you dig Spark, check out ScalOps (its like Pig but with iterative extensions) http://t.co/O5bzEpKK #scala #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:17:35 +0000", "from_user": "buka37", "from_user_id": 159722188, "from_user_id_str": "159722188", "from_user_name": "Garrick Evans", "geo": null, "id": 148814245876858880, "id_str": "148814245876858880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @bigdata: Big Data Analytics: if you dig Spark, check out ScalOps (its like Pig but with iterative extensions) http://t.co/O5bzEpKK #scala #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:17:33 +0000", "from_user": "A_AlvarezGarcia", "from_user_id": 51073764, "from_user_id_str": "51073764", "from_user_name": "Antonio Alvarez", "geo": null, "id": 148814234925547520, "id_str": "148814234925547521", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1647479342/Chipre_231_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647479342/Chipre_231_normal.JPG", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "\\u201C@timoelliott: 2012: hadoop, in-memory, graph dbs, says @jameskobielus: http://t.co/DPF7IsGU #analytics\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:17:10 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 148814140130066430, "id_str": "148814140130066434", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "Big Data Analytics: if you dig Spark, check out ScalOps (its like Pig but with iterative extensions) http://t.co/sSVMbDBs #scala #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:16:56 +0000", "from_user": "tda2505", "from_user_id": 261461014, "from_user_id_str": "261461014", "from_user_name": "aditya pratama", "geo": null, "id": 148814082198355970, "id_str": "148814082198355969", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1382377805/251668_1938303791705_1665714370_1917997_4454986_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1382377805/251668_1938303791705_1665714370_1917997_4454986_n_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "mahout + hadoop, what are they trying to do with these. Ini perusahaan konstruksi, data semacam apa yg mrk olah smp perlu tool seribet ini.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:16:20 +0000", "from_user": "bigdata", "from_user_id": 18318677, "from_user_id_str": "18318677", "from_user_name": "Ben Lorica", "geo": null, "id": 148813931111125000, "id_str": "148813931111124992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/235298259/bigdata_logo_center3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/235298259/bigdata_logo_center3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Big Data Analytics: if you dig Spark, check out ScalOps (its like Pig but with iterative extensions) http://t.co/O5bzEpKK #scala #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:16:03 +0000", "from_user": "paristechreview", "from_user_id": 21417104, "from_user_id_str": "21417104", "from_user_name": "ParisTech Review", "geo": null, "id": 148813857664671740, "id_str": "148813857664671744", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695021634/Twitter_R-128x128_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695021634/Twitter_R-128x128_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "Prospects and Promise of Big Data http://t.co/qYTorZpQ #bigdata (with @hadoop @streambase @TEDchris @HenriVerdier)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:15:01 +0000", "from_user": "taswarbhatti", "from_user_id": 27633423, "from_user_id_str": "27633423", "from_user_name": "Taswar Bhatti", "geo": null, "id": 148813600868401150, "id_str": "148813600868401152", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/114756492/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/114756492/me_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "#Hadoop Streaming and F# #MapReduce #fsharp | http://t.co/ooOAfVAp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:14:50 +0000", "from_user": "paristechreview", "from_user_id": 21417104, "from_user_id_str": "21417104", "from_user_name": "ParisTech Review", "geo": null, "id": 148813554970132480, "id_str": "148813554970132480", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695021634/Twitter_R-128x128_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695021634/Twitter_R-128x128_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "Les promesses du Big Data : http://t.co/x1vX1XSw #bigdata (avec @HenriVerdier @hadoop @streambase)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:13:26 +0000", "from_user": "insightspedia", "from_user_id": 16145206, "from_user_id_str": "16145206", "from_user_name": "Annie Shum", "geo": null, "id": 148813202094952450, "id_str": "148813202094952449", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/271913183/Annie2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/271913183/Annie2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Big Data Watch MT @barton808 Traditional data storage runs $5/GB, for same amount using #Hadoop, cost goes to $.25/GB http://t.co/TFPcy8mK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:10:21 +0000", "from_user": "d8Pit", "from_user_id": 264394701, "from_user_id_str": "264394701", "from_user_name": "The URL Popularizer", "geo": null, "id": 148812423216906240, "id_str": "148812423216906241", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317284522/logo-header_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317284522/logo-header_normal.png", "source": "<a href="http://d8p.it" rel="nofollow">d8P</a>", "text": "RT @sjvn: RT @ripcitylyman: Rmndr-new 451 CAOS podast w/Hadoop, WebOS, GPL fade, Red Hat targets: #opensource | http://t.co/hWNxDHL3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:09:57 +0000", "from_user": "sjvn", "from_user_id": 11099982, "from_user_id_str": "11099982", "from_user_name": "sjvn", "geo": null, "id": 148812325632221200, "id_str": "148812325632221185", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/54735395/twig_sjvn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/54735395/twig_sjvn_normal.jpg", "source": "<a href="http://twitterfall.com" rel="nofollow">Twitterfall</a>", "text": "RT @ripcitylyman: Rmndr-new 451 CAOS podast w/Hadoop, WebOS, GPL fade, Red Hat targets: http://t.co/9AlyxLLN #opensource", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:07:17 +0000", "from_user": "SSISBI", "from_user_id": 42411479, "from_user_id_str": "42411479", "from_user_name": "Duane Douglas", "geo": null, "id": 148811654849761280, "id_str": "148811654849761281", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/255567637/gnome_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/255567637/gnome_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "[Info Mgmt Blogs] The Year Ahead In Big Data? Big, Cool, New Stuff Looms Large!: The hype around big data has be... http://t.co/Om6ZJSYG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:04:00 +0000", "from_user": "cloud_dennis", "from_user_id": 21062686, "from_user_id_str": "21062686", "from_user_name": "Dennis Plucinik", "geo": null, "id": 148810825883328500, "id_str": "148810825883328512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/588950473/servers_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/588950473/servers_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Reading: One day at a time \\u00BB Blog Archive \\u00BB hadoop hbase ec2 installation: http://t.co/tZ6qHotl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:01:20 +0000", "from_user": "ripcitylyman", "from_user_id": 14050728, "from_user_id_str": "14050728", "from_user_name": "Jay Lyman", "geo": null, "id": 148810155688067070, "id_str": "148810155688067072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/209048268/workingman_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/209048268/workingman_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Rmndr-new 451 CAOS podast w/Hadoop, WebOS, GPL fade, Red Hat targets: http://t.co/4P3yuS2R #opensource", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:01:15 +0000", "from_user": "flngr", "from_user_id": 14322017, "from_user_id_str": "14322017", "from_user_name": "Julian Bilcke", "geo": null, "id": 148810135391838200, "id_str": "148810135391838208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1578423064/procession_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1578423064/procession_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @cascading: Twitter releases PyCascading, a #python layer for @cascading http://t.co/Egb6YYLv http://t.co/mcr2VuCu #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:58:50 +0000", "from_user": "barton808", "from_user_id": 9135742, "from_user_id_str": "9135742", "from_user_name": "Barton George", "geo": null, "id": 148809526617964540, "id_str": "148809526617964544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/59421114/MySunPicSquare80x80_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/59421114/MySunPicSquare80x80_normal.jpeg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "Traditional data storage runs $5/GB, for the same amount of storage using #Hadoop, the cost goes to $.25/GB http://t.co/ozVgYFt4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:56:10 +0000", "from_user": "infomgmt", "from_user_id": 22022138, "from_user_id_str": "22022138", "from_user_name": "Info Mgmt", "geo": null, "id": 148808855055368200, "id_str": "148808855055368192", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/181299584/IM-icon_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/181299584/IM-icon_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "2012 Holds Some Cool Prospects for Big Data -- http://t.co/lCUVtHD2 @jameskobielus #bigdata #analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:55:23 +0000", "from_user": "VmwareCabr", "from_user_id": 373212569, "from_user_id_str": "373212569", "from_user_name": "Chris Dixon", "geo": null, "id": 148808656140517380, "id_str": "148808656140517376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542254823/1315989427_vmw_vc_converter_600x600_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542254823/1315989427_vmw_vc_converter_600x600_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "MapR cranks out updated Hadoop data muncher http://t.co/dVdytXV6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:55:08 +0000", "from_user": "NewsoftheCloud", "from_user_id": 409469892, "from_user_id_str": "409469892", "from_user_name": "David Wyld", "geo": null, "id": 148808597034381300, "id_str": "148808597034381312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1632455800/clouds_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632455800/clouds_normal.jpeg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Microsoft Azure hosts Hadoop, other open-source apps http://t.co/kBvxqf9B Please RT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:52:36 +0000", "from_user": "lesliemschwartz", "from_user_id": 50905357, "from_user_id_str": "50905357", "from_user_name": "leslie schwartz", "geo": null, "id": 148807955817566200, "id_str": "148807955817566209", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/283068201/Video_Snapshot_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/283068201/Video_Snapshot_normal.jpeg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Microsoft Azure hosts Hadoop, other open-source apps http://t.co/ACtqpRLE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:47:56 +0000", "from_user": "baborin", "from_user_id": 19096739, "from_user_id_str": "19096739", "from_user_name": "Masaru Hiroki", "geo": null, "id": 148806782112890880, "id_str": "148806782112890880", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1488183306/75367_102585246480565_100001872700144_18709_1627676_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1488183306/75367_102585246480565_100001872700144_18709_1627676_n_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "Hadoop\\u306F\\u7D20\\u4EBA\\u306B\\u306F\\u4F7F\\u3044\\u3053\\u306A\\u305B\\u306A\\u3044\\u3068\\u3044\\u3046\\u4E3B\\u5F35\\u306F\\u9837\\u3051\\u308B\\u306E\\u3060\\u3051\\u3069\\u3001\\u30A4\\u30F3\\u30E1\\u30E2\\u30EA\\u3060\\u3051\\u306B\\u50BE\\u5012\\u3057\\u3059\\u304E\\u3066\\u306F\\u3044\\u3051\\u306A\\u3044\\u3088\\u306D\\u3002\\u3000\\uFF0F\\u3000Google\\u3001Oracle\\u3001Microsoft\\u3001IBM\\u306E\\u30D3\\u30C3\\u30B0\\u30C7\\u30FC\\u30BF\\u5BFE\\u5FDC\\u30A2\\u30D7\\u30ED\\u30FC\\u30C1 http://t.co/JoLQDKPG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:46:34 +0000", "from_user": "merv", "from_user_id": 11272022, "from_user_id_str": "11272022", "from_user_name": "Merv Adrian", "geo": null, "id": 148806440214208500, "id_str": "148806440214208512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1235820798/merv-1085_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1235820798/merv-1085_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Busy day of inquiries and briefings. Topics in my 2011 top 2: big data/Hadoop and Exadata.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:45:30 +0000", "from_user": "matrix_spear", "from_user_id": 223258531, "from_user_id_str": "223258531", "from_user_name": "matrix_spear", "geo": null, "id": 148806170021335040, "id_str": "148806170021335040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1501257763/matrixdancer_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1501257763/matrixdancer_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Business Process as a Service (BPaaS) delivered from the cloud http://t.co/ap2O8Sle #bigdata #analytics #bi #cloud #hadoop #microsoft #ibm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:45:15 +0000", "from_user": "VRajaRao", "from_user_id": 265225982, "from_user_id_str": "265225982", "from_user_name": "Vadugu Raja Rao", "geo": null, "id": 148806107840786430, "id_str": "148806107840786432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Windows Azure Updated To Support Hadoop and Node.js http://t.co/b9JSXCQO via @toolsjournal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:45:05 +0000", "from_user": "MySQLBot_en", "from_user_id": 305160384, "from_user_id_str": "305160384", "from_user_name": "MySQLBot_en", "geo": null, "id": 148806065620918270, "id_str": "148806065620918273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1368954854/mysql_100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1368954854/mysql_100_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @sfrezefond: using #MySQL Cluster to build a Scalable and Highly Available #HDFS (#Hadoop Distributed File System) Namenode http://t.co/7UEjWwc5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:43:47 +0000", "from_user": "rkizer1", "from_user_id": 29219608, "from_user_id_str": "29219608", "from_user_name": "Rich Kizer", "geo": null, "id": 148805737689260030, "id_str": "148805737689260032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1034720850/Rich_Kizer_FaceIII_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1034720850/Rich_Kizer_FaceIII_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:43:15 +0000", "from_user": "bsabrin", "from_user_id": 13777992, "from_user_id_str": "13777992", "from_user_name": "bsabrin", "geo": null, "id": 148805604159389700, "id_str": "148805604159389696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1268470086/ben_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1268470086/ben_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "#MongoDB from #10gen on #Azure. http://t.co/qXK53hv4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:42:39 +0000", "from_user": "sfrezefond", "from_user_id": 39950581, "from_user_id_str": "39950581", "from_user_name": "Serge Frezefond", "geo": null, "id": 148805454917677060, "id_str": "148805454917677056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/216996962/sf_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/216996962/sf_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "using #MySQL Cluster to build a Scalable and Highly Available #HDFS (#Hadoop Distributed File System) Namenode http://t.co/7UEjWwc5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 16:41:30 +0000", "from_user": "NewsoftheCloud", "from_user_id": 409469892, "from_user_id_str": "409469892", "from_user_name": "David Wyld", "geo": null, "id": 148805164546011140, "id_str": "148805164546011136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1632455800/clouds_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632455800/clouds_normal.jpeg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Microsoft Azure hosts Hadoop, other open-source apps http://t.co/G9lvpmeU Please ReTweet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:37:47 +0000", "from_user": "SpencerScott3", "from_user_id": 351162648, "from_user_id_str": "351162648", "from_user_name": "Spencer Scott", "geo": null, "id": 148804229467869200, "id_str": "148804229467869184", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1485217795/Spencer_ebay_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1485217795/Spencer_ebay_normal.jpg", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Looking for a Hadoop Software Engineer/Developer in Redmond, WA http://t.co/Y0xpTxZC #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:36:55 +0000", "from_user": "merv", "from_user_id": 11272022, "from_user_id_str": "11272022", "from_user_name": "Merv Adrian", "geo": null, "id": 148804012349730800, "id_str": "148804012349730816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1235820798/merv-1085_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1235820798/merv-1085_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@Pentaho Thanks for pointing Hadoop post out. More to come in 2012 - and distribution differences will matter,", "to_user": "Pentaho", "to_user_id": 20641938, "to_user_id_str": "20641938", "to_user_name": "Pentaho", "in_reply_to_status_id": 148600048668786700, "in_reply_to_status_id_str": "148600048668786691"}, +{"created_at": "Mon, 19 Dec 2011 16:36:44 +0000", "from_user": "ViritonIT", "from_user_id": 180812909, "from_user_id_str": "180812909", "from_user_name": "Viriton", "geo": null, "id": 148803966648598530, "id_str": "148803966648598528", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1107150255/virilogo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1107150255/virilogo_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "#Hadoop\\u304CLZ4\\u5727\\u7E2E\\u306B\\u5BFE\\u5FDC\\u3059\\u308B\\u304B\\u3082\\u7684\\u306A\\u8A71 / \\u201CFast Data Compression: LZ4 into Hadoop-MapReduce\\u201D http://t.co/Rn0EyERW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:32:35 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148802919397982200, "id_str": "148802919397982210", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @commoncrawl: MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl by @stevesalevan http://t.co/cBa5598M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:32:10 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148802816918552580, "id_str": "148802816918552577", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @vikasdp: Introducing hadoop in 20 pages - http://t.co/5l0rTnCN @myen", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:31:58 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148802763416023040, "id_str": "148802763416023041", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://www.slideshare.net/" rel="nofollow">Slideshare</a>", "text": "RT @slideshare: 'Hadoop and Machine Learning' is featured on our homepage. http://t.co/lkuEIFPn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:31:55 +0000", "from_user": "rindai87", "from_user_id": 13677822, "from_user_id_str": "13677822", "from_user_name": "norihiro shimoda", "geo": null, "id": 148802753320329200, "id_str": "148802753320329216", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1659014657/317090_311725905522220_100000544408846_1164285_73874304_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659014657/317090_311725905522220_100000544408846_1164285_73874304_n_normal.jpg", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "Hadoop\\u304CLZ4\\u5727\\u7E2E\\u306B\\u5BFE\\u5FDC\\u3059\\u308B\\u304B\\u3082\\u7684\\u306A\\u8A71 / \\u201CFast Data Compression: LZ4 into Hadoop-MapReduce\\u201D http://t.co/jhRNlaWH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:31:42 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148802698379137020, "id_str": "148802698379137026", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @JavierLeonRubio: Facebook timeline uses MySQL, not Hadoop http://t.co/k79Vk74f #dbclass", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:31:35 +0000", "from_user": "cyrilleleclerc", "from_user_id": 1325981, "from_user_id_str": "1325981", "from_user_name": "Cyrille Le Clerc", "geo": null, "id": 148802668553437200, "id_str": "148802668553437184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1280812001/my-gravatar_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1280812001/my-gravatar_normal.jpeg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @robdielemans: Great: Three Xebia Consulants are Certfied #Cloudera Developers in Apache Hadoop....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:31:04 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148802538840391680, "id_str": "148802538840391681", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @hmuehlburger: Check out this presentation : Modeling with Hadoop kdd2011 http://t.co/zVF11qzc via @slideshare", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:30:08 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148802305544826880, "id_str": "148802305544826880", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @bigdatajobs: #Job Senior Hadoop Software Engineer at Emc/greenplum (San Mateo, CA) http://t.co/DFW1NqNe #bigdata #cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:29:33 +0000", "from_user": "wmartinteam", "from_user_id": 225059840, "from_user_id_str": "225059840", "from_user_name": "Dr. Wolfgang Martin", "geo": null, "id": 148802156659613700, "id_str": "148802156659613696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1187253422/WM_Mai_2002-_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1187253422/WM_Mai_2002-_3_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @timoelliott: 2012: hadoop, in-memory, graph dbs, says @jameskobielus: http://t.co/CQIlbhgC #analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:29:22 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148802109867966460, "id_str": "148802109867966465", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "RT @chetnarcs: Hadoop Developer in Bangalore, India http://t.co/mzwg9tTa #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:29:17 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148802090389610500, "id_str": "148802090389610496", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @stackfeed: Small files and HDFS blocks: Does a block in Hadoop Distributed File System store multiple small files, or a blo... http://t.co/eJbQfmP4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:29:01 +0000", "from_user": "codelesson", "from_user_id": 143534212, "from_user_id_str": "143534212", "from_user_name": "CodeLesson", "geo": null, "id": 148802023893106700, "id_str": "148802023893106688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/897604542/logo_square_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/897604542/logo_square_normal.png", "source": "<a href="http://codelesson.com/" rel="nofollow">CodeLesson</a>", "text": "Happy Monday! Check out info and discounts on our online Crunching Big Data with Hadoop course: http://t.co/vkcZmBbf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:28:38 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148801924999811070, "id_str": "148801924999811072", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://www.apple.com" rel="nofollow">Safari on iOS</a>", "text": "RT @zenithon: MySQL \\uD074\\uB7EC\\uC2A4\\uD130\\uB85C Hadoop NameNode HA \\uAD6C\\uC131. \\uC2A4\\uC6E8\\uB374 \\uD559\\uC0DD\\uB4E4\\uC774 \\uC9C4\\uD589\\uD55C \\uD504\\uB85C\\uC81D\\uD2B8\\uB85C \\uBA54\\uD0C0\\uB370\\uC774\\uD130 \\uC800\\uC7A5\\uC744 MySQL\\uB85C \\uC7AC\\uAD6C\\uC131\\uD55C \\uB4EF. \\uCF54\\uB4DC\\uB3C4 \\uACF5\\uAC1C\\uB418\\uC5B4\\uC788\\uB124\\uC694 http://t.co/FTkGVmIH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:28:15 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148801830221131780, "id_str": "148801830221131776", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://www.dzone.com" rel="nofollow">DZone.com</a>", "text": "RT @DZone: Introducing hadoop in 20 pages - http://t.co/ejh1aKju - @DZone Big Link by adij", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:28:06 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148801791616753660, "id_str": "148801791616753665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "RT @DeannaHerderick: Job: Hadoop Solution Architect in Redmond, WA http://t.co/BHL5xTYX #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:27:30 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148801641318064130, "id_str": "148801641318064128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @annajkt: Hard drive manufacturers slash warranty periods: \\u00A0 The Grill: Hadoop creator Doug C... http://t.co/xxsfDhqN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:27:26 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148801622531768320, "id_str": "148801622531768321", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @nicktj: 34,800 map tasks. This is going to take awhile. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:26:44 +0000", "from_user": "yanaoki", "from_user_id": 4601811, "from_user_id_str": "4601811", "from_user_name": "naoki yanai", "geo": null, "id": 148801446635253760, "id_str": "148801446635253762", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1663501675/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663501675/profile_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "\\u304A\\u304A\\u30010.24\\u3067\\u3059\\u304B\\u306ART @komiya_atsushi: Hadoop \\u3067 LZ4 \\u306E\\u5727\\u7E2E\\u5F62\\u5F0F\\u304C\\u30B5\\u30DD\\u30FC\\u30C8\\u3055\\u308C\\u308B\\u3088\\u3046\\u306B\\u306A\\u308B\\u306E\\u304B\\u3082\\uFF1F \\u2026 Fast Data Compression: LZ4 into Hadoop-MapReduce http://t.co/lUO7Mqnb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:26:37 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148801416738250750, "id_str": "148801416738250752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @suren_h: Most interesting companies in the #Hadoop ecosystem: http://t.co/wOx2OQrb #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:26:16 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148801332642455550, "id_str": "148801332642455552", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @Cyan4973: Fast Data Compression: LZ4 into Hadoop-MapReduce http://t.co/XvrRzj1H", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:26:11 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148801311121473540, "id_str": "148801311121473536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @NewHorizons_Mad: #Microsoft offers Hadoop preview on Azure http://t.co/L63moztT #Tecnologia #Tech", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:25:53 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148801234835472400, "id_str": "148801234835472384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @ialjkk: Resources to write .Net based MapReduce jobs for Hadoop using ... http://t.co/g9db5ZA9 #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:25:22 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148801103700557820, "id_str": "148801103700557825", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @cgbeattie: Using Hadoop as allegory to describe why Big Data is so huge for the insurance industry - Big Insurance Data | Celent http://t.co/YeCdeq4h", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:24:49 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148800965032689660, "id_str": "148800965032689664", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @freshemployer1: http://t.co/7rUGweLC Java Engineer - Java, Map/Reduce, Spring, MySQL, Hadoop, NoSQL http://t.co/USBvWoPi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:24:35 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148800907579113470, "id_str": "148800907579113473", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://1topi.jp/" rel="nofollow">OneTopi</a>", "text": "RT @cloud_1topi: Hadoop\\u5BFE\\u5FDC\\u3092\\u9032\\u3081\\u3066\\u3044\\u308B\\uFF1AGoogle\\u3001Oracle\\u3001Microsoft\\u3001IBM\\u306E\\u30D3\\u30C3\\u30B0\\u30C7\\u30FC\\u30BF\\u5BFE\\u5FDC\\u30A2\\u30D7\\u30ED\\u30FC\\u30C1 \\uFF0D TechTarget\\u30B8\\u30E3\\u30D1\\u30F3 \\u60C5\\u5831\\u7CFB\\u30A2\\u30D7\\u30EA\\u30B1\\u30FC\\u30B7\\u30E7\\u30F3 http://t.co/lDiHk8DD\\n #1tp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:24:20 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148800842248622080, "id_str": "148800842248622080", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @bwtakacy: \\u76F4\\u8FD1\\u3067\\u306F\\u4F7F\\u308F\\u306A\\u305D\\u3046\\u3060\\u3051\\u3069\\u3001\\u53C2\\u8003\\u306B\\u306A\\u308B\\u304B\\u3082\\uFF1F\\uFF0F\\u3010VLDB2011\\u52C9\\u5F37\\u4F1A\\u3011Session 18: MapReduce and Hadoop http://t.co/CGeMOMgJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:23:52 +0000", "from_user": "matrix_spear", "from_user_id": 223258531, "from_user_id_str": "223258531", "from_user_name": "matrix_spear", "geo": null, "id": 148800727526014980, "id_str": "148800727526014976", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1501257763/matrixdancer_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1501257763/matrixdancer_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Webinar: Building a Predictive Enterprise Today http://t.co/kED3UQec #bigdata #analytics #bi #cloud #hadoop #microsoft #ibm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:23:15 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148800572479385600, "id_str": "148800572479385600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @sirmaximum: Azure price cuts, bigger databases, now with node.js and MongoDB support, Hadoop on its way http://t.co/NuVWzURh via @arstechnica", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:22:57 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148800494238826500, "id_str": "148800494238826497", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @komiya_atsushi: Hadoop \\u3067 LZ4 \\u306E\\u5727\\u7E2E\\u5F62\\u5F0F\\u304C\\u30B5\\u30DD\\u30FC\\u30C8\\u3055\\u308C\\u308B\\u3088\\u3046\\u306B\\u306A\\u308B\\u306E\\u304B\\u3082\\uFF1F Google snappy \\u3088\\u308A\\u6027\\u80FD\\u3044\\u3044\\u3068\\u304B\\u3001\\u3059\\u3054\\u3044\\u306D\\uFF01 Fast Data Compression: LZ4 into Hadoop-MapReduce http://t.co/yA6rJJgY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:18:47 +0000", "from_user": "komiya_atsushi", "from_user_id": 64378588, "from_user_id_str": "64378588", "from_user_name": "KOMIYA Atsushi", "geo": null, "id": 148799447831285760, "id_str": "148799447831285760", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/875688156/twitter-icon3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/875688156/twitter-icon3_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Hadoop \\u3067 LZ4 \\u306E\\u5727\\u7E2E\\u5F62\\u5F0F\\u304C\\u30B5\\u30DD\\u30FC\\u30C8\\u3055\\u308C\\u308B\\u3088\\u3046\\u306B\\u306A\\u308B\\u306E\\u304B\\u3082\\uFF1F Google snappy \\u3088\\u308A\\u6027\\u80FD\\u3044\\u3044\\u3068\\u304B\\u3001\\u3059\\u3054\\u3044\\u306D\\uFF01 Fast Data Compression: LZ4 into Hadoop-MapReduce http://t.co/yA6rJJgY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:16:21 +0000", "from_user": "shun_tak", "from_user_id": 129822537, "from_user_id_str": "129822537", "from_user_name": "Shun TAK", "geo": null, "id": 148798833952948220, "id_str": "148798833952948224", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/799645562/n46517528847_1383916_2288_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/799645562/n46517528847_1383916_2288_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@motohiro706 \\u305D\\u308C\\u30A2\\u30EB\\u30B4\\u30EA\\u30BA\\u30E0\\u3068\\u30C7\\u30FC\\u30BF\\u69CB\\u9020\\u306E\\u30AB\\u30D0\\u30FC\\u3059\\u308B\\u7BC4\\u56F2\\u3058\\u3083\\u306A\\u3044\\u3088\\u3002\\u30E1\\u30E2\\u30EA\\u7BA1\\u7406\\u306F\\u57FA\\u672C\\u7684\\u306BGC\\u306B\\u4EFB\\u305B\\u3066\\u3001\\u30C0\\u30E1\\u306A\\u3089\\u958B\\u653E\\u3057\\u3066\\u3084\\u308B\\u3002\\u30DE\\u30EB\\u30C1\\u30B9\\u30EC\\u30C3\\u30C9\\u3001GPGPU\\u3001Hadoop\\u3068\\u304B\\u8272\\u3005\\u3042\\u308B\\u3051\\u3069\\u3001\\u4E26\\u5217\\u8A08\\u7B97\\u30FB\\u5206\\u6563\\u51E6\\u7406\\u306F\\u8210\\u3081\\u305F\\u7A0B\\u5EA6\\u3067\\u8A73\\u3057\\u304F\\u306A\\u3044\\u304B\\u3089\\u5206\\u304B\\u3089\\u306A\\u3044\\u3002\\u3042\\u3068\\u30B3\\u30F3\\u30D1\\u30A4\\u30EB\\u304B\\u3089\\u5148\\u3068\\u306F\\uFF1F", "to_user": "motohiro706", "to_user_id": 131088649, "to_user_id_str": "131088649", "to_user_name": "M. Sakakibara", "in_reply_to_status_id": 148796123685994500, "in_reply_to_status_id_str": "148796123685994496"}, +{"created_at": "Mon, 19 Dec 2011 16:13:48 +0000", "from_user": "shinyaa31", "from_user_id": 51095845, "from_user_id_str": "51095845", "from_user_name": "\\u3057\\u3093\\u3084", "geo": null, "id": 148798194598428670, "id_str": "148798194598428673", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/894210518/_____normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/894210518/_____normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "RT @db_online: \\u610F\\u6B32\\u7684\\u306A\\u6539\\u826F\\u3092\\u53D6\\u308A\\u8FBC\\u3093\\u3060\\u9AD8\\u901F\\u5316Hadoop\\u3068\\u30C7\\u30FC\\u30BF\\u30A6\\u30A7\\u30A2\\u30CF\\u30A6\\u30B9\\u88FD\\u54C1 | \\u30C7\\u30FC\\u30BF\\u30BB\\u30F3\\u30BF\\u30FC\\u5B8C\\u5168\\u30AC\\u30A4\\u30C9 - http://t.co/5tnmRcVr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:13:09 +0000", "from_user": "db_online", "from_user_id": 296072112, "from_user_id_str": "296072112", "from_user_name": "DB Online\\u7DE8\\u96C6\\u90E8", "geo": null, "id": 148798028264898560, "id_str": "148798028264898561", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1346529191/db_icon_black_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1346529191/db_icon_black_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "\\u610F\\u6B32\\u7684\\u306A\\u6539\\u826F\\u3092\\u53D6\\u308A\\u8FBC\\u3093\\u3060\\u9AD8\\u901F\\u5316Hadoop\\u3068\\u30C7\\u30FC\\u30BF\\u30A6\\u30A7\\u30A2\\u30CF\\u30A6\\u30B9\\u88FD\\u54C1 | \\u30C7\\u30FC\\u30BF\\u30BB\\u30F3\\u30BF\\u30FC\\u5B8C\\u5168\\u30AC\\u30A4\\u30C9 - http://t.co/5tnmRcVr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:11:19 +0000", "from_user": "sirmaximum", "from_user_id": 135678269, "from_user_id_str": "135678269", "from_user_name": "Maxime Duclos", "geo": null, "id": 148797566572703740, "id_str": "148797566572703744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1552343655/damtech_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552343655/damtech_copy_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Azure price cuts, bigger databases, now with node.js and MongoDB support, Hadoop on its way http://t.co/NuVWzURh via @arstechnica", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:10:46 +0000", "from_user": "bwtakacy", "from_user_id": 197019815, "from_user_id_str": "197019815", "from_user_name": "takacy", "geo": null, "id": 148797429020499970, "id_str": "148797429020499968", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1289045858/___normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1289045858/___normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u76F4\\u8FD1\\u3067\\u306F\\u4F7F\\u308F\\u306A\\u305D\\u3046\\u3060\\u3051\\u3069\\u3001\\u53C2\\u8003\\u306B\\u306A\\u308B\\u304B\\u3082\\uFF1F\\uFF0F\\u3010VLDB2011\\u52C9\\u5F37\\u4F1A\\u3011Session 18: MapReduce and Hadoop http://t.co/CGeMOMgJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:09:56 +0000", "from_user": "luizkowalski", "from_user_id": 277802366, "from_user_id_str": "277802366", "from_user_name": "Luiz E.", "geo": null, "id": 148797222396502000, "id_str": "148797222396502016", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1515917648/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515917648/me_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Desvendando o genoma humano com o Hadoop: http://t.co/lOzo4Vy2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:09:31 +0000", "from_user": "cloud_1topi", "from_user_id": 80008490, "from_user_id_str": "80008490", "from_user_name": "ONETOPI\\u300C\\u30AF\\u30E9\\u30A6\\u30C9\\u300D", "geo": null, "id": 148797114359615500, "id_str": "148797114359615488", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/470039708/OT_icon_091008_cloud_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/470039708/OT_icon_091008_cloud_normal.png", "source": "<a href="http://1topi.jp/" rel="nofollow">OneTopi</a>", "text": "Hadoop\\u5BFE\\u5FDC\\u3092\\u9032\\u3081\\u3066\\u3044\\u308B\\uFF1AGoogle\\u3001Oracle\\u3001Microsoft\\u3001IBM\\u306E\\u30D3\\u30C3\\u30B0\\u30C7\\u30FC\\u30BF\\u5BFE\\u5FDC\\u30A2\\u30D7\\u30ED\\u30FC\\u30C1 \\uFF0D TechTarget\\u30B8\\u30E3\\u30D1\\u30F3 \\u60C5\\u5831\\u7CFB\\u30A2\\u30D7\\u30EA\\u30B1\\u30FC\\u30B7\\u30E7\\u30F3 http://t.co/lDiHk8DD\\n #1tp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:08:24 +0000", "from_user": "jjmerelo", "from_user_id": 62963, "from_user_id_str": "62963", "from_user_name": "JJ Merelo", "geo": +{"coordinates": [12.1167,-61.6667], "type": "Point"}, "id": 148796833718738940, "id_str": "148796833718738946", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1449189005/jj-che_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1449189005/jj-che_normal.JPG", "source": "<a href="http://identi.ca" rel="nofollow">identica</a>", "text": "Map/Reduce para todos con Hadoop y datos abiertos http://t.co/3uGjsnQ4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:04:03 +0000", "from_user": "usmaan002", "from_user_id": 240671986, "from_user_id_str": "240671986", "from_user_name": "Usmaan Pervaiz", "geo": null, "id": 148795738690830340, "id_str": "148795738690830337", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1368400959/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1368400959/me_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Grill: Doug Cutting: Doug Cutting, creator of the open-source Hadoop framework that allows enterprises to st... http://t.co/efrMmCcJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:03:45 +0000", "from_user": "freshemployer1", "from_user_id": 362653052, "from_user_id_str": "362653052", "from_user_name": "freshemployer", "geo": null, "id": 148795664078356480, "id_str": "148795664078356480", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "http://t.co/7rUGweLC Java Engineer - Java, Map/Reduce, Spring, MySQL, Hadoop, NoSQL http://t.co/USBvWoPi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:03:01 +0000", "from_user": "SeanAnthony411", "from_user_id": 432784366, "from_user_id_str": "432784366", "from_user_name": "Sean Anthony", "geo": null, "id": 148795477750579200, "id_str": "148795477750579200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683668369/mandrinkingcranberryjuiceXSmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683668369/mandrinkingcranberryjuiceXSmall_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Grill: Doug Cutting: Doug Cutting, creator of the open-source Hadoop framework that allows... http://t.co/KSpScgzW #research #online", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:03:00 +0000", "from_user": "SeanHerndon", "from_user_id": 20793622, "from_user_id_str": "20793622", "from_user_name": "MoneyOnlineResource", "geo": null, "id": 148795477142405120, "id_str": "148795477142405120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1562401755/bigsmilesean_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1562401755/bigsmilesean_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "News: The Grill: Doug Cutting: Doug Cutting, creator of the open-source Hadoop framework tha... http://t.co/EigVaSz0 #affiliate, #online", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:01:31 +0000", "from_user": "timoelliott", "from_user_id": 15822273, "from_user_id_str": "15822273", "from_user_name": "Timo Elliott", "geo": null, "id": 148795103899693060, "id_str": "148795103899693057", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/78853518/timo_elliott_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/78853518/timo_elliott_twitter_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "2012: hadoop, in-memory, graph dbs, says @jameskobielus: http://t.co/CQIlbhgC #analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:45:07 +0000", "from_user": "DhilipSiva_linx", "from_user_id": 151913719, "from_user_id_str": "151913719", "from_user_name": "DhilipSiva -CyberMan", "geo": null, "id": 148790974615793660, "id_str": "148790974615793664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1424456382/DhilipSiva__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1424456382/DhilipSiva__normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#linux #opensource The Grill: Doug Cutting - Hadoop's creator discusses how the technology is making its... http://t.co/DhH9UgrY #DhilipSiva", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:45:03 +0000", "from_user": "johnsarealtwit", "from_user_id": 57190069, "from_user_id_str": "57190069", "from_user_name": "John Dennison", "geo": null, "id": 148790956194402300, "id_str": "148790956194402305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1639746706/Image_12_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639746706/Image_12_normal.png", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "RT @cmastication: I have Hadoop AND a red Porsche. I am sooooo overcompensating. HT @ZUrlocker http://t.co/DCfMejxD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:44:31 +0000", "from_user": "cgbeattie", "from_user_id": 6180232, "from_user_id_str": "6180232", "from_user_name": "craig beattie", "geo": null, "id": 148790823956394000, "id_str": "148790823956393984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/727573006/DSCN0513-1_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/727573006/DSCN0513-1_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Using Hadoop as allegory to describe why Big Data is so huge for the insurance industry - Big Insurance Data | Celent http://t.co/YeCdeq4h", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:43:25 +0000", "from_user": "daisukebe_", "from_user_id": 15071746, "from_user_id_str": "15071746", "from_user_name": "Daisuke Kobayashi", "geo": null, "id": 148790546851307520, "id_str": "148790546851307520", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1179323267/who_retro_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1179323267/who_retro_normal.jpg", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "\\u201C\\u6700\\u3082\\u901F\\u304F Hadoop \\u74B0\\u5883\\u3092\\u624B\\u306B\\u5165\\u308C\\u308B\\u65B9\\u6CD5 - Elliptium\\u201D http://t.co/kcQroS6B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:42:41 +0000", "from_user": "Deploy_Online", "from_user_id": 125769341, "from_user_id_str": "125769341", "from_user_name": "Deploy Pty Ltd", "geo": null, "id": 148790361790218240, "id_str": "148790361790218240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/776183981/deploy-SP-icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/776183981/deploy-SP-icon_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Grill: Doug Cutting: Doug Cutting, creator of the open-source Hadoop framework that allows enterprises t... http://t.co/7ubVTXWs #IT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:41:24 +0000", "from_user": "usmaan002", "from_user_id": 240671986, "from_user_id_str": "240671986", "from_user_name": "Usmaan Pervaiz", "geo": null, "id": 148790039869001730, "id_str": "148790039869001729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1368400959/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1368400959/me_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Grill: Doug Cutting: Doug Cutting, creator of the open-source Hadoop framework that allows enterprises to st... http://t.co/XxAmrgJX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:36:42 +0000", "from_user": "yusufbash", "from_user_id": 52100906, "from_user_id_str": "52100906", "from_user_name": "Yusuf Bashir", "geo": null, "id": 148788855343034370, "id_str": "148788855343034368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1394565500/boston_apr_orientation_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1394565500/boston_apr_orientation_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\"When HANA meets Hadoop,\" a look at SAP HANA moving beyond its roots to reach a broader audience http://t.co/yFuddz0U via @jason_grosse", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:36:24 +0000", "from_user": "ivanassen", "from_user_id": 14809892, "from_user_id_str": "14809892", "from_user_name": "Ivan-Assen Ivanov", "geo": null, "id": 148788782471200770, "id_str": "148788782471200768", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1415361292/Photo_27.06.11_00_06_53_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1415361292/Photo_27.06.11_00_06_53_normal.jpeg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @Cyan4973: Fast Data Compression: LZ4 into Hadoop-MapReduce http://t.co/XvrRzj1H", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:31:22 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 148787515770413060, "id_str": "148787515770413056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Resources to write .Net based MapReduce jobs for Hadoop using ... http://t.co/g9db5ZA9 #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:30:57 +0000", "from_user": "NewHorizons_Mad", "from_user_id": 260172365, "from_user_id_str": "260172365", "from_user_name": "New Horizons Madrid", "geo": null, "id": 148787408870182900, "id_str": "148787408870182914", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1652154048/NHColorLogoNoTag_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652154048/NHColorLogoNoTag_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#Microsoft offers Hadoop preview on Azure http://t.co/L63moztT #Tecnologia #Tech", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:28:39 +0000", "from_user": "ovatsus", "from_user_id": 40453522, "from_user_id_str": "40453522", "from_user_name": "Gustavo Guerra", "geo": null, "id": 148786830848954370, "id_str": "148786830848954368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1556030271/Me200_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1556030271/Me200_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @taswarbhatti: Resources to write .Net based #MapReduce jobs for #Hadoop using F# #fsharp | http://t.co/6nXtwJe5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:28:00 +0000", "from_user": "reciente", "from_user_id": 15626267, "from_user_id_str": "15626267", "from_user_name": "reciente", "geo": null, "id": 148786666558074880, "id_str": "148786666558074880", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1675406948/img37e103f8zik1zj_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675406948/img37e103f8zik1zj_normal.gif", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Apache Hadoop + Apache Mahout\\u3068\\u304B\\u4F7F\\u3046\\u3068\\u8272\\u3005\\u697D\\u3057\\u305D\\u3046\\u306A\\u306E\\u3067\\u3001\\u3084\\u3063\\u3071\\u308A\\u3053\\u306E\\u8FBA\\u308A\\u306F\\u304D\\u3061\\u3093\\u3068\\u52C9\\u5F37\\u3057\\u3066\\u304A\\u304F\\u3068\\u3001\\u5E78\\u305B\\u306B\\u306A\\u308C\\u305D\\u3046\\u3002\\u4FFA\\u306E\\u5984\\u60F3\\u7684\\u306A\\u610F\\u5473\\u3067\\uFF57", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:27:48 +0000", "from_user": "Cyan4973", "from_user_id": 152221796, "from_user_id_str": "152221796", "from_user_name": "Yann Collet", "geo": null, "id": 148786619216957440, "id_str": "148786619216957440", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1166476778/webcam_200906_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1166476778/webcam_200906_small_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Fast Data Compression: LZ4 into Hadoop-MapReduce http://t.co/XvrRzj1H", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:26:07 +0000", "from_user": "suren_h", "from_user_id": 90256037, "from_user_id_str": "90256037", "from_user_name": "Suren Hiraman", "geo": null, "id": 148786193193111550, "id_str": "148786193193111552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Most interesting companies in the #Hadoop ecosystem: http://t.co/wOx2OQrb #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:22:29 +0000", "from_user": "reciente", "from_user_id": 15626267, "from_user_id_str": "15626267", "from_user_name": "reciente", "geo": null, "id": 148785280097329150, "id_str": "148785280097329152", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1675406948/img37e103f8zik1zj_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675406948/img37e103f8zik1zj_normal.gif", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "BOT\\u696D\\u8005\\u306E\\u6D3B\\u52D5\\u3092\\u201C\\u307B\\u307C\\u58CA\\u6EC5\\u201D\\u306B\\u8FFD\\u3044\\u3084\\u308B\\u307E\\u3067\\u306E\\u8ECC\\u8DE1\\u2015\\u2015\\u300C\\u30C9\\u30E9\\u30B4\\u30F3\\u30CD\\u30B9\\u30C8\\u300D\\u904B\\u55B6\\u30C1\\u30FC\\u30E0\\u306B\\u3088\\u308B1\\u5E74\\u534A\\u306E\\u4E0D\\u6B63\\u884C\\u70BA\\u5BFE\\u7B56\\u3092\\u632F\\u308A\\u8FD4\\u308B http://t.co/FxTgfLJM \\u3053\\u3093\\u306A\\u8A18\\u4E8B\\u3092\\u898B\\u308B\\u3068\\u3001\\u30ED\\u30B0\\u89E3\\u6790\\u90E8\\u5206\\u306BApache Hadoop\\u3092\\u4F7F\\u3046\\u3068\\u3069\\u3046\\u306A\\u3093\\u3060\\u308D\\u3068\\u304B\\u5984\\u60F3\\u304C\\u81A8\\u3089\\u3080", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:18:25 +0000", "from_user": "nicktj", "from_user_id": 25672245, "from_user_id_str": "25672245", "from_user_name": "Nick Jones", "geo": null, "id": 148784256116723700, "id_str": "148784256116723712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1224937816/profile_nice_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1224937816/profile_nice_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "34,800 map tasks. This is going to take awhile. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:17:57 +0000", "from_user": "chubbyturtle", "from_user_id": 74763589, "from_user_id_str": "74763589", "from_user_name": "Alex Ang", "geo": null, "id": 148784136574877700, "id_str": "148784136574877696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/970336358/chubbyturtle_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/970336358/chubbyturtle_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Hadoop: Be sure to check your configs when error occurs. Especially when everything is left to default.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:16:16 +0000", "from_user": "annajkt", "from_user_id": 110358859, "from_user_id_str": "110358859", "from_user_name": "anna", "geo": null, "id": 148783713298284540, "id_str": "148783713298284544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/668953526/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/668953526/images_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hard drive manufacturers slash warranty periods: \\u00A0 The Grill: Hadoop creator Doug C... http://t.co/xxsfDhqN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:15:02 +0000", "from_user": "taswarbhatti", "from_user_id": 27633423, "from_user_id_str": "27633423", "from_user_name": "Taswar Bhatti", "geo": null, "id": 148783405780307970, "id_str": "148783405780307968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/114756492/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/114756492/me_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Resources to write .Net based #MapReduce jobs for #Hadoop using F# #fsharp | http://t.co/6nXtwJe5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:13:00 +0000", "from_user": "DeannaHerderick", "from_user_id": 108788770, "from_user_id_str": "108788770", "from_user_name": "Deanna Herderick", "geo": null, "id": 148782890560397300, "id_str": "148782890560397312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1336298400/005-L_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1336298400/005-L_normal.jpg", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Job: Hadoop Solution Architect in Redmond, WA http://t.co/BHL5xTYX #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:10:22 +0000", "from_user": "keithkim", "from_user_id": 14881688, "from_user_id_str": "14881688", "from_user_name": "Keith Kim", "geo": null, "id": 148782231006097400, "id_str": "148782231006097409", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1485820747/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1485820747/me_normal.jpg", "source": "<a href="http://www.dzone.com" rel="nofollow">DZone.com</a>", "text": "RT @DZone: Introducing hadoop in 20 pages - http://t.co/ejh1aKju - @DZone Big Link by adij", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:10:04 +0000", "from_user": "zenithon", "from_user_id": 5204801, "from_user_id_str": "5204801", "from_user_name": "Joo Youl Lee", "geo": null, "id": 148782155047239680, "id_str": "148782155047239680", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/940608128/jylee4tw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/940608128/jylee4tw_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Safari on iOS</a>", "text": "MySQL \\uD074\\uB7EC\\uC2A4\\uD130\\uB85C Hadoop NameNode HA \\uAD6C\\uC131. \\uC2A4\\uC6E8\\uB374 \\uD559\\uC0DD\\uB4E4\\uC774 \\uC9C4\\uD589\\uD55C \\uD504\\uB85C\\uC81D\\uD2B8\\uB85C \\uBA54\\uD0C0\\uB370\\uC774\\uD130 \\uC800\\uC7A5\\uC744 MySQL\\uB85C \\uC7AC\\uAD6C\\uC131\\uD55C \\uB4EF. \\uCF54\\uB4DC\\uB3C4 \\uACF5\\uAC1C\\uB418\\uC5B4\\uC788\\uB124\\uC694 http://t.co/FTkGVmIH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:09:38 +0000", "from_user": "lj_cave", "from_user_id": 234957362, "from_user_id_str": "234957362", "from_user_name": "Lee John Cave", "geo": null, "id": 148782045693358080, "id_str": "148782045693358080", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1283530899/A0282491_-_Lee_John_Cave_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1283530899/A0282491_-_Lee_John_Cave_normal.jpg", "source": "<a href="http://www.dzone.com" rel="nofollow">DZone.com</a>", "text": "RT @DZone: Introducing hadoop in 20 pages - http://t.co/ejh1aKju - @DZone Big Link by adij", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:01:19 +0000", "from_user": "eBay_Careers", "from_user_id": 364537814, "from_user_id_str": "364537814", "from_user_name": "David Sneed", "geo": null, "id": 148779953998147600, "id_str": "148779953998147585", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1543608610/ebay1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543608610/ebay1_normal.jpg", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Job: Hadoop Engineer (ebay) in San Jose, CA http://t.co/jWvM71rG #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:57:13 +0000", "from_user": "genghisjahn", "from_user_id": 16422814, "from_user_id_str": "16422814", "from_user_name": "Jon Wear", "geo": null, "id": 148778922400694270, "id_str": "148778922400694273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1593010221/plugin_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593010221/plugin_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@robconery Tekpub for F# and/or hadoop? Let me know when it's done so I can buy it.", "to_user": "robconery", "to_user_id": 248815441, "to_user_id_str": "248815441", "to_user_name": "Rob Conery"}, +{"created_at": "Mon, 19 Dec 2011 14:56:28 +0000", "from_user": "AvanadeFrance", "from_user_id": 322518915, "from_user_id_str": "322518915", "from_user_name": "Avanade France ", "geo": null, "id": 148778730188320770, "id_str": "148778730188320768", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1416947212/Avanade_-_A_normal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1416947212/Avanade_-_A_normal_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @AlainClapaud: #Microsoft baisse les prix d'Azure, augmente sa capacit\\u00E9 et l'ouvre \\u00E0 l'#OpenSource | arsTechnica http://t.co/6w5hLJbx (RT @dbmoore) #Cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:45:47 +0000", "from_user": "stackfeed", "from_user_id": 237310237, "from_user_id_str": "237310237", "from_user_name": "StackOverflow", "geo": null, "id": 148776044428656640, "id_str": "148776044428656640", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Small files and HDFS blocks: Does a block in Hadoop Distributed File System store multiple small files, or a blo... http://t.co/eJbQfmP4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:41:54 +0000", "from_user": "chetnarcs", "from_user_id": 122336447, "from_user_id_str": "122336447", "from_user_name": "Chetana", "geo": null, "id": 148775067537506300, "id_str": "148775067537506306", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Hadoop Developer in Bangalore, India http://t.co/mzwg9tTa #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:37:54 +0000", "from_user": "bigdatajobs", "from_user_id": 343011637, "from_user_id_str": "343011637", "from_user_name": "Big Data Jobs", "geo": null, "id": 148774060560613380, "id_str": "148774060560613376", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#Job Sr Java Developer (Hadoop, Cassandra, NoSQL, MongoDB) at Mitchell Group (Los Angeles, CA) http://t.co/DZWVlMud #bigdata #cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:33:22 +0000", "from_user": "szk_sho", "from_user_id": 290530964, "from_user_id_str": "290530964", "from_user_name": "\\u3057\\u3087\\u305F\\u308D", "geo": null, "id": 148772920540409860, "id_str": "148772920540409856", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1332964516/missile_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1332964516/missile_normal.JPG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\\uFF28\\uFF41\\uFF44\\uFF4F\\uFF4F\\uFF50\\u5165\\u9580\\u30A4\\u30DE\\u30A4\\u30C1\\u3060\\u3063\\u305F\\u2026\\u8B1B\\u7FA9\\u306E\\u5185\\u5BB9\\u306F\\u81EA\\u5206\\u304C\\uFF57\\uFF45\\uFF42\\u3067\\u8ABF\\u3079\\u305F\\u306E\\u3068\\u5927\\u5DEE\\u306A\\u304B\\u3063\\u305F\\u306A\\u3041\\u3002\\u6F14\\u7FD2\\u306F\\u307E\\u3041\\u826F\\u304B\\u3063\\u305F\\u3051\\u3069\\u3001\\u5168\\u90E8\\u30B3\\u30D4\\u30DA\\u3067\\u30B5\\u30AF\\u30B5\\u30AF\\u9032\\u307F\\u3059\\u304E\\u305F\\u304B\\u3089\\u8EAB\\u306B\\u3064\\u3044\\u305F\\u306E\\u304B\\u306F\\u7591\\u554F\\u3002\\u3082\\u3046\\u5C11\\u3057\\u6F14\\u7FD2\\u6642\\u9593\\u3068\\u3063\\u3066\\u8003\\u3048\\u308B\\u6642\\u9593\\u6B32\\u3057\\u304B\\u3063\\u305F\\u306A\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:24:31 +0000", "from_user": "DrMathochist", "from_user_id": 41706498, "from_user_id_str": "41706498", "from_user_name": "John Armstrong", "geo": null, "id": 148770691154575360, "id_str": "148770691154575361", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/848921496/John_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/848921496/John_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@twoscomplement also works for Hadoop clusters.", "to_user": "twoscomplement", "to_user_id": 18959257, "to_user_id_str": "18959257", "to_user_name": "Jonathan Adamczewski", "in_reply_to_status_id": 148731337946312700, "in_reply_to_status_id_str": "148731337946312704"}, +{"created_at": "Mon, 19 Dec 2011 14:23:50 +0000", "from_user": "VideoSIZ", "from_user_id": 385066430, "from_user_id_str": "385066430", "from_user_name": "Kristopher Patton", "geo": null, "id": 148770519276191740, "id_str": "148770519276191744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1609500360/1319735343_apr2011-fg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609500360/1319735343_apr2011-fg_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Cloudera Updates Hadoop Management App With Health Checks, Reporting Features And More", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:11:02 +0000", "from_user": "zenkay", "from_user_id": 52355877, "from_user_id_str": "52355877", "from_user_name": "Andrea Mostosi", "geo": null, "id": 148767298126229500, "id_str": "148767298126229505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1662661248/me_family_lunch_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662661248/me_family_lunch_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "An incredibly-fast LAMP stack is not enough http://t.co/wEJmVCBH #Haystack #BigPipe #Hadoop and #Hive ensure performance in specific fields", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:10:05 +0000", "from_user": "bigdatajobs", "from_user_id": 343011637, "from_user_id_str": "343011637", "from_user_name": "Big Data Jobs", "geo": null, "id": 148767057968762880, "id_str": "148767057968762881", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#Job Senior Hadoop Software Engineer at Emc/greenplum (San Mateo, CA) http://t.co/DFW1NqNe #bigdata #cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:04:28 +0000", "from_user": "bigdatajobs", "from_user_id": 343011637, "from_user_id_str": "343011637", "from_user_name": "Big Data Jobs", "geo": null, "id": 148765645104873470, "id_str": "148765645104873473", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#Job Senior Software Engineer (Hadoop, Lucene) at Proofpoint (Sunnyvale, CA) http://t.co/Mp7n4v9O #bigdata #cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:02:30 +0000", "from_user": "ragskashyap", "from_user_id": 15181158, "from_user_id_str": "15181158", "from_user_name": "ragskashyap", "geo": null, "id": 148765149476560900, "id_str": "148765149476560898", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1597338512/DSC_0042_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1597338512/DSC_0042_normal.JPG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Spam of the day \" need Hadoop architect with 7-18 yrs experience\" #fb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:54:33 +0000", "from_user": "monkeyonahill", "from_user_id": 55155032, "from_user_id_str": "55155032", "from_user_name": "James Tryand", "geo": null, "id": 148763149594656770, "id_str": "148763149594656770", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/354233697/moah2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/354233697/moah2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@DanTup have you seen the pricing improvements on azure? (as of the 12th of this month.) http://t.co/CURcSZzj with node.js & hadoop support.", "to_user": "DanTup", "to_user_id": 61238575, "to_user_id_str": "61238575", "to_user_name": "Danny Tuppeny"}, +{"created_at": "Mon, 19 Dec 2011 13:53:17 +0000", "from_user": "jason_grosse", "from_user_id": 76032301, "from_user_id_str": "76032301", "from_user_name": "Jason Grosse", "geo": null, "id": 148762832362672130, "id_str": "148762832362672129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1010642099/profilepic_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1010642099/profilepic_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "From the #SAPsummit, \"When HANA meets Hadoop,\" a look at HANA moving beyond its roots to reach a broader audience http://t.co/5EjQbh76", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:52:27 +0000", "from_user": "rolandbouman", "from_user_id": 51754021, "from_user_id_str": "51754021", "from_user_name": "Roland Bouman", "geo": null, "id": 148762621728931840, "id_str": "148762621728931840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/287001025/roland_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/287001025/roland_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Cool to finally see a serious O'Reilly book on big data and Hadoop https://t.co/bQ3lkHFp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:49:19 +0000", "from_user": "followbotlist", "from_user_id": 420104059, "from_user_id_str": "420104059", "from_user_name": "\\u3076\\u308D\\u3063\\u304F\\u308A\\u3059\\u3068", "geo": null, "id": 148761834135109630, "id_str": "148761834135109632", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twittbot.net/" rel="nofollow">twittbot.net</a>", "text": "C\\u8A00\\u8A9E/C++/C#/F#/PHP/Perl/Ruby/Python/Lisp/Prolog/ML/Haskell/HTML5/VB/Basic/\\u30A6\\u30A7\\u30D6\\u30C7\\u30B6\\u30A4\\u30F3/\\u30EC\\u30F3\\u30BF\\u30EB\\u30B5\\u30FC\\u30D0/CGI/\\u30BB\\u30AD\\u30E5\\u30EA\\u30C6\\u30A3/FLASH/Web/\\u30BD\\u30FC\\u30B7\\u30E3\\u30EB/SNS/\\u30B0\\u30EB\\u30FC\\u30D7\\u30A6\\u30A7\\u30A2/Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:44:02 +0000", "from_user": "michfloyd", "from_user_id": 334656269, "from_user_id_str": "334656269", "from_user_name": "Michel Bonato", "geo": null, "id": 148760504725291000, "id_str": "148760504725291008", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1440476191/29072010448_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1440476191/29072010448_normal.jpg", "source": "<a href="http://www.samsungmobile.com" rel="nofollow">Samsung Mobile</a>", "text": "Aprendendo um pouco de hadoop.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:37:16 +0000", "from_user": "maxkalachev", "from_user_id": 333232986, "from_user_id_str": "333232986", "from_user_name": "Max Kalachev", "geo": null, "id": 148758800554393600, "id_str": "148758800554393601", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1647901278/max2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647901278/max2_normal.jpg", "source": "<a href="http://www.slideshare.net/" rel="nofollow">Slideshare</a>", "text": "RT @slideshare: 'Hadoop and Machine Learning' is featured on our homepage. http://t.co/lkuEIFPn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:35:00 +0000", "from_user": "hmuehlburger", "from_user_id": 73705954, "from_user_id_str": "73705954", "from_user_name": "Herbert M\\u00FChlburger", "geo": null, "id": 148758231680950270, "id_str": "148758231680950274", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/967104152/herbert-profil-s_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/967104152/herbert-profil-s_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Check out this presentation : Modeling with Hadoop kdd2011 http://t.co/zVF11qzc via @slideshare", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:32:09 +0000", "from_user": "kirkwy", "from_user_id": 61166763, "from_user_id_str": "61166763", "from_user_name": "Kirk Wylie", "geo": null, "id": 148757513096015870, "id_str": "148757513096015873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1429146846/BricksSmallSquare_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1429146846/BricksSmallSquare_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "RT @cmastication: I have Hadoop AND a red Porsche. I am sooooo overcompensating. HT @ZUrlocker http://t.co/DCfMejxD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:31:53 +0000", "from_user": "JavierLeonRubio", "from_user_id": 229885219, "from_user_id_str": "229885219", "from_user_name": "Javier Le\\u00F3n Rubio", "geo": null, "id": 148757445584486400, "id_str": "148757445584486400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1669463748/jl_warholized_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669463748/jl_warholized_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Facebook timeline uses MySQL, not Hadoop http://t.co/k79Vk74f #dbclass", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:31:00 +0000", "from_user": "mikiobraun", "from_user_id": 14962763, "from_user_id_str": "14962763", "from_user_name": "Mikio L. Braun", "geo": null, "id": 148757223873581060, "id_str": "148757223873581057", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1361898144/me_thinking_291_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1361898144/me_thinking_291_normal.png", "source": "<a href="http://www.slideshare.net/" rel="nofollow">Slideshare</a>", "text": "RT @slideshare: 'Hadoop and Machine Learning' is featured on our homepage. http://t.co/lkuEIFPn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:26:56 +0000", "from_user": "vikasdp", "from_user_id": 152682018, "from_user_id_str": "152682018", "from_user_name": "Vikas Pandya", "geo": null, "id": 148756200798949380, "id_str": "148756200798949376", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1140915733/VP_twitter_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1140915733/VP_twitter_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Introducing hadoop in 20 pages - http://t.co/5l0rTnCN @myen", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:22:28 +0000", "from_user": "jvalleroy", "from_user_id": 90212418, "from_user_id_str": "90212418", "from_user_name": "James Valleroy", "geo": null, "id": 148755077681790980, "id_str": "148755077681790976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @commoncrawl: MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl by @stevesalevan http://t.co/cBa5598M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:19:03 +0000", "from_user": "dimmu", "from_user_id": 9970902, "from_user_id_str": "9970902", "from_user_name": "dimmu", "geo": null, "id": 148754216540839940, "id_str": "148754216540839936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690015389/Photo_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690015389/Photo_1_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "RT @cmastication: I have Hadoop AND a red Porsche. I am sooooo overcompensating. HT @ZUrlocker http://t.co/DCfMejxD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:18:03 +0000", "from_user": "reputa_india", "from_user_id": 265834202, "from_user_id_str": "265834202", "from_user_name": "Reputa India", "geo": null, "id": 148753964165382140, "id_str": "148753964165382145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1283445555/2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1283445555/2_normal.jpg", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "URGENT Requirement : Hiring Hadoop Architect (2+ year contract position) require... http://t.co/ftg7MGUA #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:15:54 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 148753421883809800, "id_str": "148753421883809792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "No love/hat tip from @matkeep for my lead on the MySQL Cluster usage for Hadoop NodeName http://t.co/dhcpeEUA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:13:01 +0000", "from_user": "haiger_cao", "from_user_id": 435595611, "from_user_id_str": "435595611", "from_user_name": "Haiger", "geo": null, "id": 148752697984679940, "id_str": "148752697984679936", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695888000/ForumAttachment_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695888000/ForumAttachment_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u4ECA\\u5929\\u77E5\\u9053\\u4E86\\u9664\\u4E86binlog\\u4E4B\\u5916\\u8FD8\\u6709udf+trigger\\u53EF\\u4EE5\\u5B9E\\u73B0mysql\\u5F80memcached/redis/tt \\u540C\\u6B65\\u6570\\u636E...\\u540C\\u65F6,\\u5B8C\\u6210\\u4E86\\u6211\\u7684\\u7B2C\\u4E00\\u4E2A\\u57FA\\u4E8Ehadoop\\u7684M/R\\u7A0B\\u5E8F...oy~", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:11:32 +0000", "from_user": "AlainDELAFOSSE", "from_user_id": 320645176, "from_user_id_str": "320645176", "from_user_name": "Alain DELAFOSSE", "geo": null, "id": 148752325467582460, "id_str": "148752325467582464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1628537394/273343_543113365_1896220828_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628537394/273343_543113365_1896220828_q_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @stojanovic: Carl Nolan has a blog on using our #Hadoop on #Azure service and its #JavaScript shell for data visualization: http://t.co/qZeEO2EH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 13:11:32 +0000", "from_user": "AlainDELAFOSSE", "from_user_id": 320645176, "from_user_id_str": "320645176", "from_user_name": "Alain DELAFOSSE", "geo": null, "id": 148752325467582460, "id_str": "148752325467582464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1628537394/273343_543113365_1896220828_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628537394/273343_543113365_1896220828_q_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @stojanovic: Carl Nolan has a blog on using our #Hadoop on #Azure service and its #JavaScript shell for data visualization: http://t.co/qZeEO2EH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:05:31 +0000", "from_user": "tguemes", "from_user_id": 23236293, "from_user_id_str": "23236293", "from_user_name": "Celestino G\\u00FCemes", "geo": null, "id": 148750809490931700, "id_str": "148750809490931712", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/394198628/foto_oficial_tinog_a_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/394198628/foto_oficial_tinog_a_400_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "@ignaciobustillo Me alegro que te gusten. Yo me qued\\u00E9 con las ganas de meter alguno que incluyera Hadoop. Ya ser\\u00E1 otro a\\u00F1o. :-)", "to_user": "IgnacioBustillo", "to_user_id": 243145613, "to_user_id_str": "243145613", "to_user_name": "Ignacio Bustillo", "in_reply_to_status_id": 148719140818010100, "in_reply_to_status_id_str": "148719140818010112"}, +{"created_at": "Mon, 19 Dec 2011 13:02:58 +0000", "from_user": "cmastication", "from_user_id": 43186378, "from_user_id_str": "43186378", "from_user_name": "Mister Long", "geo": null, "id": 148750166055329800, "id_str": "148750166055329792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1133817555/croppedHead_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1133817555/croppedHead_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "I have Hadoop AND a red Porsche. I am sooooo overcompensating. HT @ZUrlocker http://t.co/DCfMejxD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:01:52 +0000", "from_user": "sakura_bird1", "from_user_id": 267718166, "from_user_id_str": "267718166", "from_user_name": "HENTAI\\u3055\\u304F\\u3089", "geo": null, "id": 148749893417189380, "id_str": "148749893417189376", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700178653/image_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700178653/image_normal", "source": "<a href="http://www.movatwi.jp" rel="nofollow">\\u30E2\\u30D0\\u30C4\\u30A4 / www.movatwi.jp</a>", "text": "RT @kimukou_26: @sakura_bird1 \\u6614\\u306F\\u305D\\u306E\\u4F5C\\u696D\\u306B\\u51C4\\u3044\\u30B9\\u30FC\\u30D1\\u30B3\\u30F3\\u30D4\\u30E5\\u30FC\\u30BF\\u3092\\u4F7F\\u3063\\u3066\\u9577\\u6642\\u9593\\u3057\\u3066\\u3044\\u307E\\u3057\\u305F\\u304C\\u3001Hadoop\\u7B49\\u306E\\u30AF\\u30E9\\u30A6\\u30C9DB\\u4F7F\\u3048\\u308B\\u3088\\u3046\\u306B\\u306A\\u3063\\u3066\\u30D1\\u30BD\\u30B3\\u30F3\\u6CA2\\u5C71\\u7528\\u610F\\u3059\\u308C\\u3070\\u5206\\u6790\\u51FA\\u6765\\u308B\\u306E\\u306F\\u9B45\\u529B\\u3002\\u7279\\u306BLinux\\u5165\\u308C\\u3089\\u308C\\u306A\\u304F\\u306A\\u308B\\u76F4\\u524D\\u306EPS3\\u3092\\u7C73\\u653F\\u5E9C\\u3084\\u5927\\u5B66\\u3001\\u5317\\u671D\\u9BAE\\u307E\\u3067\\u3082\\u5927\\u91CF\\u306B\\u8CFC\\u5165\\u3057\\u305F\\u8A71\\u3082\\u3042\\u308B\\u304F\\u3089\\u3044", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:59:45 +0000", "from_user": "nemo_kaz", "from_user_id": 6141502, "from_user_id_str": "6141502", "from_user_name": "kazuo nemoto", "geo": null, "id": 148749360665071600, "id_str": "148749360665071616", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/467548592/TLE12_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/467548592/TLE12_normal.jpg", "source": "<a href="http://cheebow.info/chemt/archives/2007/04/twitterwindowst.html" rel="nofollow">Twit for Windows</a>", "text": "\\u4ECA\\u65E5\\u4E00\\u65E5\\u306FManning Publications \\u534A\\u984D\\u3060\\u304B\\u3089Hadoop in Practice \\u4E88\\u7D04\\u3057\\u305F", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:58:27 +0000", "from_user": "fcicq", "from_user_id": 23272777, "from_user_id_str": "23272777", "from_user_name": "fcicq", "geo": null, "id": 148749031441575940, "id_str": "148749031441575936", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/183847467/okite_bg_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/183847467/okite_bg_normal.gif", "source": "<a href="http://www.zusaar.com/" rel="nofollow">Zusaar</a>", "text": "12/20, MapR Architecture http://t.co/L634ODUX / hadoop\\u30A2\\u30C9\\u30D9\\u30F3\\u30C8\\u30AB\\u30EC\\u30F3\\u30C0\\u30FC2011 http://t.co/JG0ki0wo #zusaar", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:56:41 +0000", "from_user": "beyeguy", "from_user_id": 249418488, "from_user_id_str": "249418488", "from_user_name": "Gregory Lancaster", "geo": null, "id": 148748586723717120, "id_str": "148748586723717120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1356580457/MyPicture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1356580457/MyPicture_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "Is Hadoop the new stored procedure\\u00A0? http://t.co/zsbpdFvy via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:54:26 +0000", "from_user": "ruby_U", "from_user_id": 27836117, "from_user_id_str": "27836117", "from_user_name": "\\u308B\\u3073\\u3085", "geo": null, "id": 148748023114117120, "id_str": "148748023114117121", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/585391487/qBqPu0mK.20061024094725_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/585391487/qBqPu0mK.20061024094725_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "CentOS\\u3092\\u6700\\u5C0F\\u30A4\\u30F3\\u30B9\\u30C8\\u30FC\\u30EB\\u3057\\u3066\\u64EC\\u4F3C\\u5206\\u6563hadoop, hbase\\u30BB\\u30C3\\u30C8\\u30A2\\u30C3\\u30D7\\u307E\\u3067\\u7D42\\u308F\\u3063\\u305F\\u30021.3GB\\u5F31\\u6D88\\u8CBB\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:53:05 +0000", "from_user": "beyeguy", "from_user_id": 249418488, "from_user_id_str": "249418488", "from_user_name": "Gregory Lancaster", "geo": null, "id": 148747680208797700, "id_str": "148747680208797696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1356580457/MyPicture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1356580457/MyPicture_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/k5Wv72GB via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:52:06 +0000", "from_user": "beyeguy", "from_user_id": 249418488, "from_user_id_str": "249418488", "from_user_name": "Gregory Lancaster", "geo": null, "id": 148747434154135550, "id_str": "148747434154135552", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1356580457/MyPicture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1356580457/MyPicture_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "Hadoop and Machine Learning http://t.co/OwVIcKod via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:51:45 +0000", "from_user": "kimukou_26", "from_user_id": 127385502, "from_user_id_str": "127385502", "from_user_name": "kimukou_26", "geo": null, "id": 148747347701145600, "id_str": "148747347701145601", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698307192/66.png_groovy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698307192/66.png_groovy_normal.png", "source": "<a href="http://www.movatwi.jp" rel="nofollow">\\u30E2\\u30D0\\u30C4\\u30A4 / www.movatwi.jp</a>", "text": "@sakura_bird1 \\u6614\\u306F\\u305D\\u306E\\u4F5C\\u696D\\u306B\\u51C4\\u3044\\u30B9\\u30FC\\u30D1\\u30B3\\u30F3\\u30D4\\u30E5\\u30FC\\u30BF\\u3092\\u4F7F\\u3063\\u3066\\u9577\\u6642\\u9593\\u3057\\u3066\\u3044\\u307E\\u3057\\u305F\\u304C\\u3001Hadoop\\u7B49\\u306E\\u30AF\\u30E9\\u30A6\\u30C9DB\\u4F7F\\u3048\\u308B\\u3088\\u3046\\u306B\\u306A\\u3063\\u3066\\u30D1\\u30BD\\u30B3\\u30F3\\u6CA2\\u5C71\\u7528\\u610F\\u3059\\u308C\\u3070\\u5206\\u6790\\u51FA\\u6765\\u308B\\u306E\\u306F\\u9B45\\u529B\\u3002\\u7279\\u306BLinux\\u5165\\u308C\\u3089\\u308C\\u306A\\u304F\\u306A\\u308B\\u76F4\\u524D\\u306EPS3\\u3092\\u7C73\\u653F\\u5E9C\\u3084\\u5927\\u5B66\\u3001\\u5317\\u671D\\u9BAE\\u307E\\u3067\\u3082\\u5927\\u91CF\\u306B\\u8CFC\\u5165\\u3057\\u305F\\u8A71\\u3082\\u3042\\u308B\\u304F\\u3089\\u3044", "to_user": "sakura_bird1", "to_user_id": 267718166, "to_user_id_str": "267718166", "to_user_name": "HENTAI\\u3055\\u304F\\u3089", "in_reply_to_status_id": 148743255780114430, "in_reply_to_status_id_str": "148743255780114432"}, +{"created_at": "Mon, 19 Dec 2011 12:51:03 +0000", "from_user": "vishwavikalp", "from_user_id": 83765473, "from_user_id_str": "83765473", "from_user_name": "Vishwavikalp", "geo": null, "id": 148747171603300350, "id_str": "148747171603300352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1258295366/DSC03650_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1258295366/DSC03650_normal.JPG", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Are you a good fit for this job? Java Developer, Hadoop in Bangalore, India http://t.co/J08f8SB1 #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:49:44 +0000", "from_user": "matrix_spear", "from_user_id": 223258531, "from_user_id_str": "223258531", "from_user_name": "matrix_spear", "geo": null, "id": 148746839770939400, "id_str": "148746839770939392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1501257763/matrixdancer_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1501257763/matrixdancer_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "All the latest news on #bigdata #analytics #bi #cloud #hadoop and much more at http://t.co/9f47W8vK #dev #tech #software #microsoft #ibm #hp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:47:39 +0000", "from_user": "Storiq", "from_user_id": 177908353, "from_user_id_str": "177908353", "from_user_name": "Storiq", "geo": null, "id": 148746314774089730, "id_str": "148746314774089728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1101962753/logo-storiq-gdm_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1101962753/logo-storiq-gdm_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#BigData - MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl | CommonCrawl - http://t.co/dN5jTSvV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:47:01 +0000", "from_user": "onodes", "from_user_id": 17942457, "from_user_id_str": "17942457", "from_user_name": "\\u5C0F\\u91CE\\u5BFA\\u5927\\u5730", "geo": null, "id": 148746153754755070, "id_str": "148746153754755073", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1550001772/__________2011-09-19_22.05.55_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1550001772/__________2011-09-19_22.05.55_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@yume36_pow_phon @onodes3 \\u30AC\\u30E9\\u30CAHadoop\\u5BFE\\u5FDC\\u3057\\u307E\\u3057\\u305F\\uFF0E", "to_user": "yume36_pow_phon", "to_user_id": 99524470, "to_user_id_str": "99524470", "to_user_name": "\\u305D\\u3089\\u3061", "in_reply_to_status_id": 148743040264175600, "in_reply_to_status_id_str": "148743040264175617"}, +{"created_at": "Mon, 19 Dec 2011 12:45:11 +0000", "from_user": "phenxtech", "from_user_id": 286808516, "from_user_id_str": "286808516", "from_user_name": "Phoenix Technologies", "geo": null, "id": 148745692180000770, "id_str": "148745692180000769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1347896079/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1347896079/logo_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "The Grill: Doug Cutting: Hadoop creator Doug Cutting says he expects the surge in interest in the big-data... http://t.co/YezwH1Tb #ATLANTA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:44:29 +0000", "from_user": "waxzce", "from_user_id": 29678151, "from_user_id_str": "29678151", "from_user_name": "Quentin ADAM", "geo": null, "id": 148745515268440060, "id_str": "148745515268440064", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1189500385/IMG_5569_-_carre_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1189500385/IMG_5569_-_carre_normal.JPG", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @vhe74: RT @felixaverlant: Introducing #Hadoop in 20 pages http://t.co/XLnU5ldl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:44:06 +0000", "from_user": "SomercoResearch", "from_user_id": 204833926, "from_user_id_str": "204833926", "from_user_name": "SOMERCO", "geo": null, "id": 148745420141625340, "id_str": "148745420141625344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1235726269/picture-3_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1235726269/picture-3_normal.gif", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @leejkeller: Slideshare: Hadoop and Machine Learning. Hint: Constraints Drive Innovation.\\rhttp://t.co/iVkG6YTd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:43:48 +0000", "from_user": "leejkeller", "from_user_id": 152311120, "from_user_id_str": "152311120", "from_user_name": "Lee J. Keller", "geo": null, "id": 148745345785020400, "id_str": "148745345785020416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/962375993/TimKavi_m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/962375993/TimKavi_m_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Slideshare: Hadoop and Machine Learning. Hint: Constraints Drive Innovation.\\rhttp://t.co/iVkG6YTd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:42:28 +0000", "from_user": "MarilynMoux", "from_user_id": 20026961, "from_user_id_str": "20026961", "from_user_name": "Marilyn Moux", "geo": null, "id": 148745010173579260, "id_str": "148745010173579265", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1312851382/marilyn_photo_2011_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312851382/marilyn_photo_2011_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Microsoft Tries Hadoop on Azure @CloudExpo #Cloud #CloudExpo #BigData", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:40:23 +0000", "from_user": "rajeshravim", "from_user_id": 304292121, "from_user_id_str": "304292121", "from_user_name": "Rajesh Manikka", "geo": null, "id": 148744483536777200, "id_str": "148744483536777216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1366889772/Rajesh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1366889772/Rajesh_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Successful with Apache Hadoop + MongoDB + Python..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:39:13 +0000", "from_user": "rentacoderuk", "from_user_id": 253776096, "from_user_id_str": "253776096", "from_user_name": "Susan Walker", "geo": null, "id": 148744192502403070, "id_str": "148744192502403073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1247546608/rentcoder_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1247546608/rentcoder_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Extracting data using Hadoop, MapReduce and Amazon ...--By MarkTheGlobe on Dec 19--Max Bid: Open to fair suggest... http://t.co/zFmr0JGd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:39:13 +0000", "from_user": "NumbersWingoUK", "from_user_id": 265621707, "from_user_id_str": "265621707", "from_user_name": "Amber Wingo", "geo": null, "id": 148744190489141250, "id_str": "148744190489141248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1271551297/or_bf463282119401601829254_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1271551297/or_bf463282119401601829254_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Extracting data using Hadoop, MapReduce and Amazon ...--By MarkTheGlobe on Dec 19--Max Bid: Open to fair suggest... http://t.co/HxECT4vk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:38:15 +0000", "from_user": "EnythengTools", "from_user_id": 387389937, "from_user_id_str": "387389937", "from_user_name": "Enytheng Tools", "geo": null, "id": 148743948528123900, "id_str": "148743948528123904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1579071639/ENYTHENG_NEW_SLOGAN_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1579071639/ENYTHENG_NEW_SLOGAN_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Scot Finnie: Getting a running start on 2012 in IT: Hadoop, the software framework and file system that many bel... http://t.co/Q5NxJcUK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:34:38 +0000", "from_user": "yume36_pow_phon", "from_user_id": 99524470, "from_user_id_str": "99524470", "from_user_name": "\\u305D\\u3089\\u3061", "geo": null, "id": 148743040264175600, "id_str": "148743040264175617", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1248646071/___________normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1248646071/___________normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@onodes3 \\u767D\\u9D6C\\u306FCore2Quad\\u306A\\u3093\\u3067\\u3059\\u3051\\u3069, \\u30AC\\u30E9\\u30CA\\u306FCore2Duo\\u306A\\u3093\\u3067\\u3059\\u3088...\\u3002\\u30B9\\u30EC\\u30C3\\u30C9\\u30D7\\u30ED\\u30B0\\u30E9\\u30DF\\u30F3\\u30B0\\u3057\\u3066\\u308B\\u3093\\u3067, \\u30B3\\u30A2\\u306E\\u591A\\u3044PC\\u3092\\u9078\\u3093\\u3067\\u4F7F\\u3063\\u3066\\u307E\\u3059\\u3002Hadoop\\u3067\\u3082\\u5165\\u308C\\u3066\\u304F\\u308C\\u308B\\u3068\\u3042\\u308A\\u304C\\u305F\\u3044\\u3093\\u3067\\u3059\\u3051\\u3069orz", "to_user": "onodes3", "to_user_id": 311383551, "to_user_id_str": "311383551", "to_user_name": "onodes\\u3055\\u3093", "in_reply_to_status_id": 148742281401339900, "in_reply_to_status_id_str": "148742281401339904"}, +{"created_at": "Mon, 19 Dec 2011 12:33:57 +0000", "from_user": "BabakGhazvehi", "from_user_id": 277256837, "from_user_id_str": "277256837", "from_user_name": "vWorker", "geo": null, "id": 148742866984910850, "id_str": "148742866984910848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#vWorker Extracting data using Hadoop, MapReduce and Amazon ...--By MarkTheGlobe on Dec 19--Max Bid: Ope... http://t.co/sujLzpGz #scrape", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:33:40 +0000", "from_user": "amirjainu", "from_user_id": 339034825, "from_user_id_str": "339034825", "from_user_name": "Amir Jain", "geo": null, "id": 148742793408417800, "id_str": "148742793408417793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Three Apache Hadoop On Windows TechNet Wiki Articles - Home ...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:31:42 +0000", "from_user": "bassettwood", "from_user_id": 215746003, "from_user_id_str": "215746003", "from_user_name": "Andrew Williams", "geo": null, "id": 148742300032446460, "id_str": "148742300032446464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1673978146/Photo_18_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673978146/Photo_18_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @peteskomoroch: How to quickly process 40TB of data from Common Crawl using Hadoop & Amazon EC2 http://t.co/yum3VZyF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:29:36 +0000", "from_user": "BigDataBlogs", "from_user_id": 408520849, "from_user_id_str": "408520849", "from_user_name": "BigData Blogs", "geo": null, "id": 148741770275061760, "id_str": "148741770275061760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1645240023/CloudBigData-300x239-resized-600_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645240023/CloudBigData-300x239-resized-600_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft polishes Azure, but are users convinced?: Microsoft also detailed an Apache Hadoop-bas... http://t.co/FBqtMU2j #bigdata #blogs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:29:35 +0000", "from_user": "vhe74", "from_user_id": 11751012, "from_user_id_str": "11751012", "from_user_name": "Vincent Heuschling", "geo": null, "id": 148741769041944580, "id_str": "148741769041944576", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1081103719/Avatar-vhe-240_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1081103719/Avatar-vhe-240_bigger_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @felixaverlant: Introducing #Hadoop in 20 pages http://t.co/XLnU5ldl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:27:08 +0000", "from_user": "mongodb_news", "from_user_id": 218710958, "from_user_id_str": "218710958", "from_user_name": "MongoDb", "geo": null, "id": 148741152760266750, "id_str": "148741152760266753", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1173473945/imgres-1_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1173473945/imgres-1_normal.jpeg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @brucedkyle: New Azure Release Supports Open Source Libraries Node.js, MongoDB, Hadoop, Solr, Memcached http://t.co/WKBsj1lW #MSDEV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:11:09 +0000", "from_user": "hnfirehose", "from_user_id": 213117318, "from_user_id_str": "213117318", "from_user_name": "HN Firehose", "geo": null, "id": 148737130343051260, "id_str": "148737130343051266", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Open Source - and Commercial?: http://t.co/IjFrBnH9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:08:53 +0000", "from_user": "dieswaytoofast", "from_user_id": 312604736, "from_user_id_str": "312604736", "from_user_name": "Mahesh P-Subramanya", "geo": null, "id": 148736556574851070, "id_str": "148736556574851072", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1572400317/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572400317/Untitled_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "#hadoop on @commoncrawl - http://t.co/SBZ1vOuQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:07:27 +0000", "from_user": "felixaverlant", "from_user_id": 26585636, "from_user_id_str": "26585636", "from_user_name": "F\\u00E9lix Averlant", "geo": null, "id": 148736196485464060, "id_str": "148736196485464064", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1155182036/1f31ece4-b0be-4818-80df-6e66bfadd721_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1155182036/1f31ece4-b0be-4818-80df-6e66bfadd721_normal.png", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "Introducing #Hadoop in 20 pages http://t.co/84iXfOMc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:03:23 +0000", "from_user": "shiumachi", "from_user_id": 11370182, "from_user_id_str": "11370182", "from_user_name": "Sho Shimauchi", "geo": null, "id": 148735173599559680, "id_str": "148735173599559680", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1112990537/2006-06-04_002_bigger_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1112990537/2006-06-04_002_bigger_normal.png", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @tetendo: hadoop \\u306E\\u8A8D\\u5B9A\\u8CC7\\u683C\\u306A\\u3093\\u3066\\u3042\\u308B\\u3093\\u3060\\u306D\\u3002\\u3042\\u3068\\u3001\\u30C8\\u30EC\\u30FC\\u30CB\\u30F3\\u30B0\\u3082\\u3002\\u4ED5\\u4E8B\\u3067\\u5FC5\\u8981\\u304C\\u751F\\u3058\\u305F\\u3089\\u4E0A\\u53F8\\u306B\\u304A\\u9858\\u3044\\u3057\\u3066\\u307F\\u3088\\u3046\\u304B\\u306Aw http://t.co/cZxeWCd8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:02:44 +0000", "from_user": "phaneeshn", "from_user_id": 78000743, "from_user_id_str": "78000743", "from_user_name": "Phaneesh Nagaraja", "geo": null, "id": 148735010147532800, "id_str": "148735010147532800", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/789289885/0383_guitarist_heavy_metal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/789289885/0383_guitarist_heavy_metal_normal.jpg", "source": "<a href="http://www.dzone.com" rel="nofollow">DZone.com</a>", "text": "RT @DZone: Introducing hadoop in 20 pages - http://t.co/ejh1aKju - @DZone Big Link by adij", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:02:13 +0000", "from_user": "DefineMeMore", "from_user_id": 438820963, "from_user_id_str": "438820963", "from_user_name": "DefineMeMore", "geo": null, "id": 148734882066083840, "id_str": "148734882066083840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697553438/xboxlogo_normal.jpg", "profile_image_url_https": null, "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Grill: Doug Cutting: Microsoft, Oracle, IBM and other big vendors have all begun doing things with Hadoop th... http://t.co/dvFAOGIe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:58:07 +0000", "from_user": "lichtsoft", "from_user_id": 176360046, "from_user_id_str": "176360046", "from_user_name": "Licht Soft", "geo": null, "id": 148733847092203520, "id_str": "148733847092203520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1101057221/Untitled-1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1101057221/Untitled-1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#technology The Grill: Doug Cutting: Hadoop creator Doug Cutting says he expects the surge in interes... http://t.co/a4OzUXzh #lichtsoft", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:57:22 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 148733658033950720, "id_str": "148733658033950720", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "hbase lzo fatal crash - MapR and Apache Hadoop http://t.co/HKz4A5iq #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:48:07 +0000", "from_user": "DGM885", "from_user_id": 14196638, "from_user_id_str": "14196638", "from_user_name": "Daniel G Murray", "geo": null, "id": 148731333118660600, "id_str": "148731333118660608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/425008101/DanMSmallBlogPhoto_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/425008101/DanMSmallBlogPhoto_normal.JPG", "source": "Zite Personalized Magazine", "text": "Using Hadoop on Azure JS Console for Data Visualizations http://t.co/7JlM1200 via @zite Times seem a little sluggish.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:40:50 +0000", "from_user": "geisbruch", "from_user_id": 93495861, "from_user_id_str": "93495861", "from_user_name": "Gabriel Eisbruch", "geo": null, "id": 148729498865631230, "id_str": "148729498865631232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1642849036/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642849036/twitter_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@jakajancar We are using dt=YYYY-MM-dd HH:mm:ss on a hadoop cluster and runs exelent with the adv you can use the #hive time functions", "to_user": "jakajancar", "to_user_id": 14741919, "to_user_id_str": "14741919", "to_user_name": "Jaka Jancar", "in_reply_to_status_id": 148709272832839680, "in_reply_to_status_id_str": "148709272832839681"}, +{"created_at": "Mon, 19 Dec 2011 11:39:58 +0000", "from_user": "wandering_char", "from_user_id": 89620772, "from_user_id_str": "89620772", "from_user_name": "\\u3055\\u3059\\u3089\\u3044\\u306E\\u30C1\\u30E3\\u30E9", "geo": null, "id": 148729281848152060, "id_str": "148729281848152064", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1465198019/V6010008_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1465198019/V6010008_normal.JPG", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "\\u3053\\u3046\\u3044\\u3046\\u7D71\\u8A08\\u306E\\u8A08\\u7B97\\u306FHadoop\\u306E\\u5F97\\u610F\\u5206\\u91CE\\u3060\\u306A\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:37:53 +0000", "from_user": "minky0", "from_user_id": 95861410, "from_user_id_str": "95861410", "from_user_name": "\\u307F \\u2122", "geo": null, "id": 148728757463683070, "id_str": "148728757463683072", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1581372018/SD-KAYO_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1581372018/SD-KAYO_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "\\u3059\\u3044\\u307E\\u305B\\u3093\\u3002\\u3000\\u30AB\\u30FC\\u30C9\\u304C\\u9045\\u308C\\u3066\\u3066orz QT @tmae: \\u53CC\\u516D\\u306E\\u5165\\u7A3F\\u304C\\u7D42\\u308F\\u3063\\u305F\\u4ECA\\u3001\\u6B21\\u306F\\u3053\\u306E\\u30B3\\u30D4\\u30FC\\u672C\\u3092\\u2026 QT @sechiro: \\u4ECA\\u65E5\\u306F\\u300C\\u767E\\u53F0\\u306EHadoop\\u30AF\\u30E9\\u30B9\\u30BF\\u300D\\u3092\\u300C\\u767E\\u5408\\u306EHadoop\\u30AF\\u30E9\\u30B9\\u30BF\\u300D\\u306B\\u7A7A\\u76EE\\u3057\\u305F\\u3051\\u3069\\u3001\\u308F\\u305F\\u3057\\u306F\\u5143\\u6C17\\u3067\\u3059\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:35:54 +0000", "from_user": "tmae", "from_user_id": 14811233, "from_user_id_str": "14811233", "from_user_name": "tmae", "geo": null, "id": 148728256143691780, "id_str": "148728256143691776", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1645930857/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645930857/image_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "\\u53CC\\u516D\\u306E\\u5165\\u7A3F\\u304C\\u7D42\\u308F\\u3063\\u305F\\u4ECA\\u3001\\u6B21\\u306F\\u3053\\u306E\\u30B3\\u30D4\\u30FC\\u672C\\u3092\\u2026 QT @sechiro: \\u4ECA\\u65E5\\u306F\\u300C\\u767E\\u53F0\\u306EHadoop\\u30AF\\u30E9\\u30B9\\u30BF\\u300D\\u3092\\u300C\\u767E\\u5408\\u306EHadoop\\u30AF\\u30E9\\u30B9\\u30BF\\u300D\\u306B\\u7A7A\\u76EE\\u3057\\u305F\\u3051\\u3069\\u3001\\u308F\\u305F\\u3057\\u306F\\u5143\\u6C17\\u3067\\u3059\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:35:01 +0000", "from_user": "steveify", "from_user_id": 41228516, "from_user_id_str": "41228516", "from_user_name": "Steve Claridge", "geo": null, "id": 148728034818654200, "id_str": "148728034818654208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1541178354/saphirs2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541178354/saphirs2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @substandardnerd: MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/NMijxDbr 40TB of data to play with. Cool!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:32:39 +0000", "from_user": "ekrTech", "from_user_id": 190163317, "from_user_id_str": "190163317", "from_user_name": "ekrTech", "geo": null, "id": 148727438875176960, "id_str": "148727438875176961", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1548191896/ekrtech_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1548191896/ekrtech_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Grill: Doug Cutting: Hadoop creator Doug Cutting says he expects the surge in interest in the big-data stora... http://t.co/2nZnU16T", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:25:23 +0000", "from_user": "fixmypcng", "from_user_id": 244102092, "from_user_id_str": "244102092", "from_user_name": "FIXMYPC ", "geo": null, "id": 148725610213150720, "id_str": "148725610213150720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700971621/fixmas_dp_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700971621/fixmas_dp_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Grill: Doug Cutting: Hadoop creator Doug Cutting says he expects the surge in interest in the big-data stora... http://t.co/rCWxuTtZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:17:04 +0000", "from_user": "sechiro", "from_user_id": 69270391, "from_user_id_str": "69270391", "from_user_name": "sechiro\\uFF20\\u53CC\\u516D\\u4F5C\\u6210\\u4E2D\\uFF01", "geo": null, "id": 148723517834276860, "id_str": "148723517834276864", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1468995057/_____normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1468995057/_____normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "\\u6F22\\u5B57\\u3067\\u30AF\\u30E9\\u30B9\\u30BF\\u3063\\u3066\\u7D9A\\u3044\\u3066\\u305F\\u304B\\u3089\\u3001\\u767E\\u5408\\u30AF\\u30E9\\u30B9\\u30BF\\u3060\\u3068\\u3070\\u304B\\u308A\\u2026 RT @ume2uguisu: \\u767E\\u5408\\u306EHadoop\\u30AF\\u30E9\\u30B9\\u30BF\\u8D85\\u3044\\u3044w RT @sechiro: \\u4ECA\\u65E5\\u306F\\u300C\\u767E\\u53F0\\u306EHadoop\\u30AF\\u30E9\\u30B9\\u30BF\\u300D\\u3092\\u300C\\u767E\\u5408\\u306EHadoop\\u30AF\\u30E9\\u30B9\\u30BF\\u300D\\u306B\\u7A7A\\u76EE\\u3057\\u305F\\u3051\\u3069\\u3001\\u308F\\u305F\\u3057\\u306F\\u5143\\u6C17\\u3067\\u3059\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:15:35 +0000", "from_user": "tetendo", "from_user_id": 76276603, "from_user_id_str": "76276603", "from_user_name": "tetendo", "geo": null, "id": 148723146508353540, "id_str": "148723146508353536", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1465733177/taiyan_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1465733177/taiyan_normal.png", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "hadoop \\u306E\\u8A8D\\u5B9A\\u8CC7\\u683C\\u306A\\u3093\\u3066\\u3042\\u308B\\u3093\\u3060\\u306D\\u3002\\u3042\\u3068\\u3001\\u30C8\\u30EC\\u30FC\\u30CB\\u30F3\\u30B0\\u3082\\u3002\\u4ED5\\u4E8B\\u3067\\u5FC5\\u8981\\u304C\\u751F\\u3058\\u305F\\u3089\\u4E0A\\u53F8\\u306B\\u304A\\u9858\\u3044\\u3057\\u3066\\u307F\\u3088\\u3046\\u304B\\u306Aw http://t.co/cZxeWCd8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:09:40 +0000", "from_user": "ume2uguisu", "from_user_id": 47900409, "from_user_id_str": "47900409", "from_user_name": "\\u3046\\u3050\\u3044\\u3059", "geo": null, "id": 148721654955114500, "id_str": "148721654955114497", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/630879416/P8251992_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/630879416/P8251992_normal.jpg", "source": "<a href="http://www.soicha.com" rel="nofollow">SOICHA</a>", "text": "\\u767E\\u5408\\u306EHadoop\\u30AF\\u30E9\\u30B9\\u30BF\\u8D85\\u3044\\u3044w RT @sechiro: \\u4ECA\\u65E5\\u306F\\u300C\\u767E\\u53F0\\u306EHadoop\\u30AF\\u30E9\\u30B9\\u30BF\\u300D\\u3092\\u300C\\u767E\\u5408\\u306EHadoop\\u30AF\\u30E9\\u30B9\\u30BF\\u300D\\u306B\\u7A7A\\u76EE\\u3057\\u305F\\u3051\\u3069\\u3001\\u308F\\u305F\\u3057\\u306F\\u5143\\u6C17\\u3067\\u3059\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:08:43 +0000", "from_user": "sweaterrr", "from_user_id": 128584753, "from_user_id_str": "128584753", "from_user_name": "\\uC774\\uC815\\uADDC, Jungkyu Lee", "geo": null, "id": 148721417511387140, "id_str": "148721417511387136", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1407757834/____normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1407757834/____normal.png", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "RT @mndoci: Hadoop and Pig at LinkedIn SNA http://t.co/kxSuZJDv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:07:40 +0000", "from_user": "alex_knorr", "from_user_id": 70223223, "from_user_id_str": "70223223", "from_user_name": "alexander_knorr", "geo": null, "id": 148721150661369860, "id_str": "148721150661369857", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/485631635/mypictr_140x185_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/485631635/mypictr_140x185_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Java Engineer - Java, Map/Reduce, Spring, MySQL, Hadoop, NoSQL - monster: CA-San Francisco, CyberCoders - Be Sel... http://t.co/7mLruBJ6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:06:58 +0000", "from_user": "sujoy_mitra", "from_user_id": 118740504, "from_user_id_str": "118740504", "from_user_name": "Sujoy Mitra", "geo": null, "id": 148720976337702900, "id_str": "148720976337702912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "Apache Mahout on top of Hadoop Cluster", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:06:08 +0000", "from_user": "ryonext", "from_user_id": 60238464, "from_user_id_str": "60238464", "from_user_name": "\\u3057\\u3089\\u304A\\u3062", "geo": null, "id": 148720765443907600, "id_str": "148720765443907584", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696058153/icon2012_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696058153/icon2012_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @sechiro: \\u4ECA\\u65E5\\u306F\\u300C\\u767E\\u53F0\\u306EHadoop\\u30AF\\u30E9\\u30B9\\u30BF\\u300D\\u3092\\u300C\\u767E\\u5408\\u306EHadoop\\u30AF\\u30E9\\u30B9\\u30BF\\u300D\\u306B\\u7A7A\\u76EE\\u3057\\u305F\\u3051\\u3069\\u3001\\u308F\\u305F\\u3057\\u306F\\u5143\\u6C17\\u3067\\u3059\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:04:21 +0000", "from_user": "sechiro", "from_user_id": 69270391, "from_user_id_str": "69270391", "from_user_name": "sechiro\\uFF20\\u53CC\\u516D\\u4F5C\\u6210\\u4E2D\\uFF01", "geo": null, "id": 148720316145860600, "id_str": "148720316145860608", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1468995057/_____normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1468995057/_____normal.png", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "RT @shiumachi: @sechiro \\u3053\\u3044\\u3064\\u3067\\u3044\\u304F\\u3089\\u3067\\u3082\\u5984\\u60F3\\u3057\\u3066\\u304F\\u3060\\u3055\\u3044 https://t.co/DHb5gNNk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:04:02 +0000", "from_user": "substandardnerd", "from_user_id": 141902310, "from_user_id_str": "141902310", "from_user_name": "Substandard Nerd", "geo": null, "id": 148720237490081800, "id_str": "148720237490081792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1094020241/2ebeca67-7c0d-4264-b454-9957921c2b6e_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1094020241/2ebeca67-7c0d-4264-b454-9957921c2b6e_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/NMijxDbr 40TB of data to play with. Cool!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:03:21 +0000", "from_user": "masteredmachine", "from_user_id": 327773995, "from_user_id_str": "327773995", "from_user_name": "masterthemachine", "geo": null, "id": 148720066656083970, "id_str": "148720066656083968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1454538127/Avatar-Don-Robot_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1454538127/Avatar-Don-Robot_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Grill: Doug Cutting: Hadoop creator Doug Cutting says he expects the surge in interest in the big-data stora... http://t.co/HffvBkXK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:02:48 +0000", "from_user": "show_no", "from_user_id": 16468453, "from_user_id_str": "16468453", "from_user_name": "show_no", "geo": null, "id": 148719926222397440, "id_str": "148719926222397441", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/65163136/1084964_98293818_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/65163136/1084964_98293818_normal.jpg", "source": "<a href="http://www.soicha.com" rel="nofollow">SOICHA</a>", "text": "Hadoop developer\\u3063\\u3066\\u8CC7\\u683C\\u3042\\u308B\\u3093\\u3060", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:00:23 +0000", "from_user": "sechiro", "from_user_id": 69270391, "from_user_id_str": "69270391", "from_user_name": "sechiro\\uFF20\\u53CC\\u516D\\u4F5C\\u6210\\u4E2D\\uFF01", "geo": null, "id": 148719321068208130, "id_str": "148719321068208128", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1468995057/_____normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1468995057/_____normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "\\u4ECA\\u65E5\\u306F\\u300C\\u767E\\u53F0\\u306EHadoop\\u30AF\\u30E9\\u30B9\\u30BF\\u300D\\u3092\\u300C\\u767E\\u5408\\u306EHadoop\\u30AF\\u30E9\\u30B9\\u30BF\\u300D\\u306B\\u7A7A\\u76EE\\u3057\\u305F\\u3051\\u3069\\u3001\\u308F\\u305F\\u3057\\u306F\\u5143\\u6C17\\u3067\\u3059\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:00:02 +0000", "from_user": "bryangrenn", "from_user_id": 222355429, "from_user_id_str": "222355429", "from_user_name": "bryan grenn", "geo": null, "id": 148719229993099260, "id_str": "148719229993099265", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1350391280/facebook_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1350391280/facebook_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "#hadoop #bigdata #calxeda #bigdataappliance #exadata #exalytics They all tie together. http://t.co/sFpUkVEZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:53:19 +0000", "from_user": "ashwinhm", "from_user_id": 67529042, "from_user_id_str": "67529042", "from_user_name": "Ashwin H M", "geo": null, "id": 148717541504712700, "id_str": "148717541504712704", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "I'm hiring! Hadoop/MapReduce Senior Staff Software E at Motorola Mobility - Bengaluru Area, India #jobs http://t.co/rO4wb5fw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:50:17 +0000", "from_user": "shiumachi", "from_user_id": 11370182, "from_user_id_str": "11370182", "from_user_name": "Sho Shimauchi", "geo": null, "id": 148716777621291000, "id_str": "148716777621291008", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1112990537/2006-06-04_002_bigger_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1112990537/2006-06-04_002_bigger_normal.png", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "\\u201C\\u6700\\u3082\\u901F\\u304F Hadoop \\u74B0\\u5883\\u3092\\u624B\\u306B\\u5165\\u308C\\u308B\\u65B9\\u6CD5 - Elliptium\\u201D http://t.co/JirHBq0z", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:49:38 +0000", "from_user": "shiumachi", "from_user_id": 11370182, "from_user_id_str": "11370182", "from_user_name": "Sho Shimauchi", "geo": null, "id": 148716613028429820, "id_str": "148716613028429824", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1112990537/2006-06-04_002_bigger_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1112990537/2006-06-04_002_bigger_normal.png", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "\\u201C\\u30BF\\u30E0\\u30BF\\u30E0\\u306E\\u65E5\\u8A18 - Hadoop\\u30A2\\u30C9\\u30D9\\u30F3\\u30C8\\u30AB\\u30EC\\u30F3\\u30C0\\u30FC2011 17\\u65E5\\u76EE - Hive 0.8 \\u306B\\u3064\\u3044\\u3066 -\\u201D http://t.co/S2FeJKh4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:48:11 +0000", "from_user": "hamburger_kid", "from_user_id": 71555930, "from_user_id_str": "71555930", "from_user_name": "Mitsuharu Hamba", "geo": null, "id": 148716247553552400, "id_str": "148716247553552384", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1290184319/hamburgerkid_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1290184319/hamburgerkid_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "RT @wyukawa: \\u7B2C3\\u7248\\u3067\\u308B\\u306E\\u304B\\uFF1EHadoop: The Definitive Guide, 3rd Edition\\u00A0-\\u00A0O'Reilly Media http://t.co/qRQN2aZ5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:35:19 +0000", "from_user": "codemonkeyism", "from_user_id": 17334287, "from_user_id_str": "17334287", "from_user_name": "Stephan Schmidt", "geo": null, "id": 148713010511355900, "id_str": "148713010511355904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/289074160/Avatar2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/289074160/Avatar2_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@say_hello_je RabbitMQ, Hadoop and Mahout. I already have so many others +g+", "to_user": "say_hello_je", "to_user_id": 47162706, "to_user_id_str": "47162706", "to_user_name": "Johannes Erhardt", "in_reply_to_status_id": 148707971231256580, "in_reply_to_status_id_str": "148707971231256576"}, +{"created_at": "Mon, 19 Dec 2011 10:32:26 +0000", "from_user": "afraarmani", "from_user_id": 151411523, "from_user_id_str": "151411523", "from_user_name": "c\\u2215\\u0334\\u0196fr\\u03B1 bocil's", "geo": null, "id": 148712284083077120, "id_str": "148712284083077120", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701606278/387858_1669875523686_1741311492_938508_88769472_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701606278/387858_1669875523686_1741311492_938508_88769472_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @kernepyftf3: @afraarmani http://t.co/Hju02eSD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:25:05 +0000", "from_user": "Matchtech_BI", "from_user_id": 125520610, "from_user_id_str": "125520610", "from_user_name": "Matchtech BI", "geo": null, "id": 148710436571856900, "id_str": "148710436571856896", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/825309103/m_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/825309103/m_normal.gif", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @strataconf: Five Big Data predictions for 2012 http://t.co/aYOJsix9 via @radar #bigdata #visualization #hadoop #MTGplc #BI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:21:08 +0000", "from_user": "emilio_dangelo", "from_user_id": 20760677, "from_user_id_str": "20760677", "from_user_name": "Emilio D'Angelo", "geo": null, "id": 148709443675238400, "id_str": "148709443675238402", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/77886694/avatarpic-l_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/77886694/avatarpic-l_normal.png", "source": "<a href="http://explore.live.com/windows-live-writer" rel="nofollow">Windows Live Writer</a>", "text": "RT @TheCloudPilot: New blog post: http://t.co/T3PBeXco - Hadoop on Azure CTP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:20:28 +0000", "from_user": "jakajancar", "from_user_id": 14741919, "from_user_id_str": "14741919", "from_user_name": "Jaka Jancar", "geo": null, "id": 148709272832839680, "id_str": "148709272832839681", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1240595704/egg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1240595704/egg_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Hive on S3 partitioning: /d=yyyy-mm-dd/t=hh-mm/ or /dt=yyyy-mm-dd-hh-mm/? Any suggestions? #hadoop #hive @andraz? :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:20:17 +0000", "from_user": "stackfeed", "from_user_id": 237310237, "from_user_id_str": "237310237", "from_user_name": "StackOverflow", "geo": null, "id": 148709228377411600, "id_str": "148709228377411584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Weird formatting issue in hadoop map/reduce program in java: I have a csv file with following sample records.\\n\\n|... http://t.co/mkd2vKzh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:17:42 +0000", "from_user": "skynapse", "from_user_id": 105657998, "from_user_id_str": "105657998", "from_user_name": "Prasanna", "geo": null, "id": 148708576867778560, "id_str": "148708576867778560", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1520106918/DSC_0510_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1520106918/DSC_0510_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "#Microsoft Tries #Hadoop on #Azure | #Cloud Computing Journal: http://t.co/K2INJCgO #cloudcomputing #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:16:20 +0000", "from_user": "TheCloudPilot", "from_user_id": 388486783, "from_user_id_str": "388486783", "from_user_name": "The Cloud Pilot", "geo": null, "id": 148708232855171070, "id_str": "148708232855171072", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1583013997/CloudPowerLogo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583013997/CloudPowerLogo_normal.png", "source": "<a href="http://explore.live.com/windows-live-writer" rel="nofollow">Windows Live Writer</a>", "text": "New blog post: http://t.co/T3PBeXco - Hadoop on Azure CTP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:13:07 +0000", "from_user": "dmcabrera", "from_user_id": 13927072, "from_user_id_str": "13927072", "from_user_name": "dmcabrera", "geo": null, "id": 148707424730230800, "id_str": "148707424730230784", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1192808870/MC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1192808870/MC_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"@DZone: Introducing hadoop in 20 pages - http://t.co/ln0mDbji - @DZone Big Link by adij\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:05:26 +0000", "from_user": "grosdim", "from_user_id": 69544862, "from_user_id_str": "69544862", "from_user_name": "Dimitri Charles", "geo": null, "id": 148705492603125760, "id_str": "148705492603125760", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1491306496/prof_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1491306496/prof_normal.jpeg", "source": "<a href="http://www.dzone.com" rel="nofollow">DZone.com</a>", "text": "RT @DZone: Introducing hadoop in 20 pages - http://t.co/ejh1aKju - @DZone Big Link by adij", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:03:11 +0000", "from_user": "stackfeed", "from_user_id": 237310237, "from_user_id_str": "237310237", "from_user_name": "StackOverflow", "geo": null, "id": 148704925122183170, "id_str": "148704925122183168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hbase development help any tool to write MR jobs: Just like we have Karmasphere for Hadoop MR jobs eclipse and N... http://t.co/JmACMp7r", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:01:12 +0000", "from_user": "pcis", "from_user_id": 17786911, "from_user_id_str": "17786911", "from_user_name": "PCIS", "geo": null, "id": 148704427468001280, "id_str": "148704427468001280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/507376974/pcis_yellow_2.jpeg_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/507376974/pcis_yellow_2.jpeg_normal.gif", "source": "<a href="http://www.prosyna.com" rel="nofollow">Prosyna</a>", "text": "#cloud Microsoft Tries Hadoop on Azure | Cloud Computing Journal - Maureen O'Gara the most read technology repo ... http://t.co/ApUJDCRp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:55:03 +0000", "from_user": "MassimoMorelli", "from_user_id": 2879881, "from_user_id_str": "2879881", "from_user_name": "Massimo Morelli", "geo": null, "id": 148702876460527600, "id_str": "148702876460527616", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/53961481/face-max-02_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/53961481/face-max-02_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Zero to Hadoop in five minutes: http://t.co/sC2mznYu (http://t.co/PL0JVKIA)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:49:58 +0000", "from_user": "marcusborba", "from_user_id": 18068926, "from_user_id_str": "18068926", "from_user_name": "Marcus Borba", "geo": null, "id": 148701597248131070, "id_str": "148701597248131072", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/423471047/MarcusBorba_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/423471047/MarcusBorba_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jenstirrup: RT @strataconf Five Big Data predictions for 2012 http://t.co/ZC2JTilR via @radar #bigdata #visualization #hadoop << Interesting Read", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:40:34 +0000", "from_user": "florenceMAHON", "from_user_id": 83641731, "from_user_id_str": "83641731", "from_user_name": "Florence de Monaghan", "geo": null, "id": 148699233111904260, "id_str": "148699233111904256", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1045106590/soir_e_agence_i_e_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1045106590/soir_e_agence_i_e_7_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @AlainClapaud: #Microsoft baisse les prix d'Azure, augmente sa capacit\\u00E9 et l'ouvre \\u00E0 l'#OpenSource | arsTechnica http://t.co/6w5hLJbx (RT @dbmoore) #Cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:35:23 +0000", "from_user": "yamanetoshi", "from_user_id": 1081991, "from_user_id_str": "1081991", "from_user_name": "Yamane Toshiaki", "geo": null, "id": 148697928515592200, "id_str": "148697928515592192", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/54576135/glider_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/54576135/glider_normal.png", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "\\u201CIntroducing hadoop in 20 pages.\\u201D http://t.co/eqDlX1Yb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:31:56 +0000", "from_user": "wrifster", "from_user_id": 15505337, "from_user_id_str": "15505337", "from_user_name": "Arif Rajwani", "geo": null, "id": 148697061762670600, "id_str": "148697061762670592", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/69419139/arifcrop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/69419139/arifcrop_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @moorsd: Introducing hadoop in 20 pages. http://t.co/YTLf8Dpu #Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:27:52 +0000", "from_user": "zoeghdie", "from_user_id": 70492960, "from_user_id_str": "70492960", "from_user_name": "Spike", "geo": null, "id": 148696035756220400, "id_str": "148696035756220416", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1535021473/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1535021473/image_normal.jpg", "source": "<a href="http://www.osfoora.com" rel="nofollow">Osfoora HD</a>", "text": "Five Big Data predictions for 2012 http://t.co/lBr5zjkp via @radar #bigdata #visualization #hadoop c/o @strataconf @jenstirrup #in", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:25:57 +0000", "from_user": "dwiardiirawan", "from_user_id": 20668782, "from_user_id_str": "20668782", "from_user_name": "d.a.i.licious \\u00AE ", "geo": null, "id": 148695555097374720, "id_str": "148695555097374720", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1645389617/twitter02_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645389617/twitter02_normal.jpg", "source": "<a href="http://www.dzone.com" rel="nofollow">DZone.com</a>", "text": "RT @DZone: Introducing hadoop in 20 pages - http://t.co/ejh1aKju - @DZone Big Link by adij", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:20:21 +0000", "from_user": "moorsd", "from_user_id": 26789275, "from_user_id_str": "26789275", "from_user_name": "David Moors", "geo": null, "id": 148694145878339600, "id_str": "148694145878339584", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/709629018/dm2_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/709629018/dm2_normal.gif", "source": "Zite Personalized Magazine", "text": "Introducing hadoop in 20 pages. http://t.co/zmHcgkcL #Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:12:07 +0000", "from_user": "beyondj2ee", "from_user_id": 57343233, "from_user_id_str": "57343233", "from_user_name": "Taeki Kim", "geo": null, "id": 148692074412257280, "id_str": "148692074412257281", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690404774/kimTK_reasonably_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690404774/kimTK_reasonably_small_normal.jpg", "source": "<a href="http://www.dzone.com" rel="nofollow">DZone.com</a>", "text": "RT @DZone: Introducing hadoop in 20 pages - http://t.co/ejh1aKju - @DZone Big Link by adij", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:10:55 +0000", "from_user": "lambdadevfr", "from_user_id": 402788474, "from_user_id_str": "402788474", "from_user_name": "lambdadev", "geo": null, "id": 148691769809317900, "id_str": "148691769809317888", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1617587525/logoPasseur_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1617587525/logoPasseur_normal.JPG", "source": "<a href="http://www.dzone.com" rel="nofollow">DZone.com</a>", "text": "RT @DZone: Introducing hadoop in 20 pages - http://t.co/ejh1aKju - @DZone Big Link by adij", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:10:24 +0000", "from_user": "bittle_", "from_user_id": 282109163, "from_user_id_str": "282109163", "from_user_name": "bittle", "geo": null, "id": 148691641367142400, "id_str": "148691641367142400", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1311424455/Picto_RVB_300px_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1311424455/Picto_RVB_300px_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @strataconf: Five Big Data predictions for 2012 http://t.co/0no2xN8g via @radar #bigdata #visualization #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:10:02 +0000", "from_user": "chrisayegh", "from_user_id": 378500613, "from_user_id_str": "378500613", "from_user_name": "christian sayegh", "geo": null, "id": 148691550849863680, "id_str": "148691550849863680", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1572522060/Portrait_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572522060/Portrait_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#Microsoft baisse les prix d'Azure, augmente sa capacit\\u00E9 et l'ouvre \\u00E0 l'#OpenSource | arsTechnica dlvr.it/10svMq (RT @AlainClapaud) #Cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:04:41 +0000", "from_user": "analyticsdennis", "from_user_id": 22375129, "from_user_id_str": "22375129", "from_user_name": "Dennis Plucinik", "geo": null, "id": 148690203895283700, "id_str": "148690203895283712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/588949572/analytics_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/588949572/analytics_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Reading: Big data spreadsheet analytics with Apache Hadoop - Datameer.: http://t.co/GKTkr102", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:59:44 +0000", "from_user": "ajlopez", "from_user_id": 14567622, "from_user_id_str": "14567622", "from_user_name": "ajlopez", "geo": null, "id": 148688955854950400, "id_str": "148688955854950402", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/53769404/spiral_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/53769404/spiral_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tadsan: F#\\u3067Streaming\\u3059\\u308B\\u8A71\\u3002\\u3042\\u3068\\u3067\\u8AAD\\u3080\\u3002\\u307F\\u3066\\u308B\\u306A\\u3046: Hadoop Streaming and F# MapReduce - Carl's Blog - Site Home - MSDN Blogs http://t.co/FDvVPFGx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:58:08 +0000", "from_user": "tadsan", "from_user_id": 11637282, "from_user_id_str": "11637282", "from_user_name": "\\u5317\\u306E\\u5927\\u5730\\u306E\\u305F\\uFF44\\u3055\\uFF4E", "geo": null, "id": 148688555336679420, "id_str": "148688555336679424", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696709631/image_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696709631/image_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "F#\\u3067Streaming\\u3059\\u308B\\u8A71\\u3002\\u3042\\u3068\\u3067\\u8AAD\\u3080\\u3002\\u307F\\u3066\\u308B\\u306A\\u3046: Hadoop Streaming and F# MapReduce - Carl's Blog - Site Home - MSDN Blogs http://t.co/FDvVPFGx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:54:56 +0000", "from_user": "micassoc", "from_user_id": 107252170, "from_user_id_str": "107252170", "from_user_name": "\\u30A8\\u30E0\\u30A2\\u30A4\\u30B7\\u30FC\\u30FB\\u30A2\\u30BD\\u30B7\\u30A8\\u30FC\\u30C4\\u682A\\u5F0F\\u4F1A\\u793E", "geo": null, "id": 148687749120139260, "id_str": "148687749120139265", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/646965551/MIC-logo-_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/646965551/MIC-logo-_normal.gif", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "\\u30B9\\u30C8\\u30EC\\u30FC\\u30B8\\u6700\\u65B0\\u60C5\\u5831\\u307E\\u3068\\u3081 12/19 : http://t.co/mHH2XuLt \\u3010LinuxTutorial\\u301112.1\\u30EA\\u30EA\\u30FC\\u30B9\\u3067\\u9032\\u5316\\u3059\\u308B openSUSE.../Windows Azure\\u3001Hadoop\\u3084Node.js\\u306A\\u3069\\u6709\\u540DOSS\\u3092\\u30B5\\u30DD\\u30FC\\u30C8../ #MIC #Storage", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:54:29 +0000", "from_user": "mk_mic", "from_user_id": 110366328, "from_user_id_str": "110366328", "from_user_name": "mic\\u30DE\\u30FC\\u30B1\\u30C6\\u30A3\\u30F3\\u30B0\\u90E8", "geo": null, "id": 148687637551648770, "id_str": "148687637551648768", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1231244449/keyboard-mic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1231244449/keyboard-mic_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\\u30B9\\u30C8\\u30EC\\u30FC\\u30B8\\u6700\\u65B0\\u60C5\\u5831\\u307E\\u3068\\u3081 12/19 : http://t.co/QmQWIHUO \\u3010LinuxTutorial\\u301112.1\\u30EA\\u30EA\\u30FC\\u30B9\\u3067\\u9032\\u5316\\u3059\\u308B openSUSE.../Windows Azure\\u3001Hadoop\\u3084Node.js\\u306A\\u3069\\u6709\\u540DOSS\\u3092\\u30B5\\u30DD\\u30FC\\u30C8../ #MIC #Storage", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:40:55 +0000", "from_user": "Thayer", "from_user_id": 3245521, "from_user_id_str": "3245521", "from_user_name": "Thayer Prime", "geo": null, "id": 148684219474907140, "id_str": "148684219474907136", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1679261479/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679261479/Untitled_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @strataconf: Five Big Data predictions for 2012 http://t.co/0no2xN8g via @radar #bigdata #visualization #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:37:02 +0000", "from_user": "jenstirrup", "from_user_id": 23242773, "from_user_id_str": "23242773", "from_user_name": "Jen Stirrup", "geo": null, "id": 148683244618006530, "id_str": "148683244618006528", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1580691601/JenStirrup_SpeakerPhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580691601/JenStirrup_SpeakerPhoto_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @strataconf Five Big Data predictions for 2012 http://t.co/ZC2JTilR via @radar #bigdata #visualization #hadoop << Interesting Read", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:36:29 +0000", "from_user": "kxiaotiger", "from_user_id": 280968194, "from_user_id_str": "280968194", "from_user_name": "xiaokang", "geo": null, "id": 148683107804004350, "id_str": "148683107804004353", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1309836265/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1309836265/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @strataconf: Five Big Data predictions for 2012 http://t.co/0no2xN8g via @radar #bigdata #visualization #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:35:11 +0000", "from_user": "jenstirrup", "from_user_id": 23242773, "from_user_id_str": "23242773", "from_user_name": "Jen Stirrup", "geo": null, "id": 148682776684666880, "id_str": "148682776684666880", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1580691601/JenStirrup_SpeakerPhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580691601/JenStirrup_SpeakerPhoto_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @strataconf: Five Big Data predictions for 2012 http://t.co/0no2xN8g via @radar #bigdata #visualization #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:35:02 +0000", "from_user": "SFDevJobs", "from_user_id": 411245524, "from_user_id_str": "411245524", "from_user_name": "San Fran Dev Jobs", "geo": null, "id": 148682741372821500, "id_str": "148682741372821504", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1652355565/devjobs-logo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652355565/devjobs-logo_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#sf Hadoop Software Engineer http://t.co/E9i0EkxG #devjob #jobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:33:09 +0000", "from_user": "WorkBandits", "from_user_id": 372201611, "from_user_id_str": "372201611", "from_user_name": "Work Bandits", "geo": null, "id": 148682265084432400, "id_str": "148682265084432384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680516821/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680516821/logo_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Azure price cuts, bigger databases, now with node.js and MongoDB support, Hadoop on its way http://t.co/VPydCcdb via @arstechnica", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:31:07 +0000", "from_user": "customercentria", "from_user_id": 159422375, "from_user_id_str": "159422375", "from_user_name": "Customer Centria", "geo": null, "id": 148681756306968580, "id_str": "148681756306968576", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1091791081/cc_logo_icon_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1091791081/cc_logo_icon_normal.gif", "source": "<a href="http://twuffer.com" rel="nofollow">Twuffer</a>", "text": "Five Big Data predictions for 2012 http://t.co/HsPrbDke via @radar #bigdata #visualization #hadoop RT @strataconf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 08:31:07 +0000", "from_user": "customercentria", "from_user_id": 159422375, "from_user_id_str": "159422375", "from_user_name": "Customer Centria", "geo": null, "id": 148681756306968580, "id_str": "148681756306968576", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1091791081/cc_logo_icon_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1091791081/cc_logo_icon_normal.gif", "source": "<a href="http://twuffer.com" rel="nofollow">Twuffer</a>", "text": "Five Big Data predictions for 2012 http://t.co/HsPrbDke via @radar #bigdata #visualization #hadoop RT @strataconf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:31:01 +0000", "from_user": "pinedoalberto", "from_user_id": 194706250, "from_user_id_str": "194706250", "from_user_name": "Alberto Pinedo", "geo": null, "id": 148681728490356740, "id_str": "148681728490356737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1618894379/yo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618894379/yo_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @davidsb: node, hadoop, mongo,java... ^^ RT @OpenAtMicrosoft: Microsoft announces Open Source updates to Windows Azure http://t.co/GkuqbusF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:30:34 +0000", "from_user": "JuanjoTRX", "from_user_id": 301319904, "from_user_id_str": "301319904", "from_user_name": "Juanjo Alvarez", "geo": null, "id": 148681617035112450, "id_str": "148681617035112448", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1656754849/Fraggle_Rock-Curri01_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656754849/Fraggle_Rock-Curri01_normal.jpg", "source": "<a href="http://www.dzone.com" rel="nofollow">DZone.com</a>", "text": "RT @DZone: Introducing hadoop in 20 pages - http://t.co/ejh1aKju - @DZone Big Link by adij", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:30:25 +0000", "from_user": "AlainClapaud", "from_user_id": 18830245, "from_user_id_str": "18830245", "from_user_name": "Alain Clapaud", "geo": null, "id": 148681577214394370, "id_str": "148681577214394368", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1188582378/Ma-Caricature-Carr_e_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1188582378/Ma-Caricature-Carr_e_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#Microsoft baisse les prix d'Azure, augmente sa capacit\\u00E9 et l'ouvre \\u00E0 l'#OpenSource | arsTechnica http://t.co/6w5hLJbx (RT @dbmoore) #Cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:30:21 +0000", "from_user": "Commercemuse", "from_user_id": 252534579, "from_user_id_str": "252534579", "from_user_name": "Commercemuse", "geo": null, "id": 148681561196347400, "id_str": "148681561196347392", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1562122522/commercemuse_copy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1562122522/commercemuse_copy_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @strataconf: Five Big Data predictions for 2012 http://t.co/0no2xN8g via @radar #bigdata #visualization #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:29:54 +0000", "from_user": "minimal_name", "from_user_id": 229541867, "from_user_id_str": "229541867", "from_user_name": "minimalist", "geo": null, "id": 148681449875312640, "id_str": "148681449875312640", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1552681339/ericdolphy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552681339/ericdolphy_normal.jpg", "source": "<a href="http://www.dzone.com" rel="nofollow">DZone.com</a>", "text": "RT @DZone: Introducing hadoop in 20 pages - http://t.co/ejh1aKju - @DZone Big Link by adij", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:28:28 +0000", "from_user": "Sahar841", "from_user_id": 91426639, "from_user_id_str": "91426639", "from_user_name": "Sahar Gotchita ", "geo": null, "id": 148681089429409800, "id_str": "148681089429409792", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1694973496/379438_292459130798595_100001035319716_867478_2139577923_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694973496/379438_292459130798595_100001035319716_867478_2139577923_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Introducing hadoop in 20 pages - http://t.co/qEADjRXe -", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:28:28 +0000", "from_user": "ATrullols", "from_user_id": 237214580, "from_user_id_str": "237214580", "from_user_name": "Albert Trullols", "geo": null, "id": 148681089366491140, "id_str": "148681089366491136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1213572106/Albert-Face-peque_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1213572106/Albert-Face-peque_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @davidsb: node, hadoop, mongo,java... ^^ RT @OpenAtMicrosoft: Microsoft announces Open Source updates to Windows Azure http://t.co/GkuqbusF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:27:52 +0000", "from_user": "DZone", "from_user_id": 14782935, "from_user_id_str": "14782935", "from_user_name": "DZone", "geo": null, "id": 148680936261816320, "id_str": "148680936261816320", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/258714549/dzone-square-256_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/258714549/dzone-square-256_normal.png", "source": "<a href="http://www.dzone.com" rel="nofollow">DZone.com</a>", "text": "Introducing hadoop in 20 pages - http://t.co/ejh1aKju - @DZone Big Link by adij", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:22:48 +0000", "from_user": "AliceBlundrland", "from_user_id": 316479264, "from_user_id_str": "316479264", "from_user_name": "Alice in Blunderland", "geo": null, "id": 148679663470915600, "id_str": "148679663470915584", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1650212606/freedom_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650212606/freedom_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @strataconf: Five Big Data predictions for 2012 http://t.co/0no2xN8g via @radar #bigdata #visualization #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:05:27 +0000", "from_user": "jeremiedev", "from_user_id": 92844642, "from_user_id_str": "92844642", "from_user_name": "Jeremie Devillard", "geo": null, "id": 148675295275270140, "id_str": "148675295275270144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1183643382/Sans_titre-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1183643382/Sans_titre-1_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @WindowsAzure: Microsoft Tries Hadoop on #Windows #Azure: gives Windows Azure Big Data capabilities http://t.co/hgQobdw2 #Cloud /via @Cloud_Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:59:38 +0000", "from_user": "anttimakkonen", "from_user_id": 36366003, "from_user_id_str": "36366003", "from_user_name": "Antti Makkonen", "geo": null, "id": 148673830347472900, "id_str": "148673830347472897", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/190326637/img_2393_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/190326637/img_2393_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @stojanovic: Carl Nolan has a blog on using our #Hadoop on #Azure service and #JavaScript for data visualization: http://t.co/tkeC3YYZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:53:07 +0000", "from_user": "tokentrojones", "from_user_id": 361196689, "from_user_id_str": "361196689", "from_user_name": "Troy Jones", "geo": null, "id": 148672191649685500, "id_str": "148672191649685504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1511284974/1314193686_tasklifecycle_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1511284974/1314193686_tasklifecycle_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Hadoop enables distributed 'big data' processing across clouds - Search Networking", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:50:25 +0000", "from_user": "disktnk", "from_user_id": 103459580, "from_user_id_str": "103459580", "from_user_name": "disktnk", "geo": null, "id": 148671513653018620, "id_str": "148671513653018624", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1566618208/disktnk_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566618208/disktnk_normal.jpg", "source": "<a href="http://www.soicha.com" rel="nofollow">SOICHA</a>", "text": "Hadoop in Action\\u306F\\u306A\\u304B\\u306A\\u304B\\u306B\\u30A2\\u30EC\\u3060\\u3063\\u305F\\u3051\\u3069\\uFF0CHadoop in Practice\\u306F\\u3069\\u3046\\u306A\\u3093\\u3060\\u308D\\u3046\\uFF0E\\u4ECA\\u65E5\\u3060\\u3051eBook\\u304C\\u534A\\u984D\\u3089\\u3057\\u3044\\u3057\\uFF0C\\u8AB0\\u304B\\u30EC\\u30DD\\u306A\\u3044\\u304B\\u306A(\\u3049\\u3043 http://t.co/q1qVktXh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:41:12 +0000", "from_user": "postgresqlplo", "from_user_id": 338627906, "from_user_id_str": "338627906", "from_user_name": "Allen Wong", "geo": null, "id": 148669192957206530, "id_str": "148669192957206528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Greenplum previews unified Hadoop biz-intel stack - Register", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:41:10 +0000", "from_user": "kernepyftf3", "from_user_id": 369946312, "from_user_id_str": "369946312", "from_user_name": "Kerne Wynn", "geo": null, "id": 148669185227100160, "id_str": "148669185227100160", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@DontJealousMee http://t.co/Hju02eSD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:37:04 +0000", "from_user": "kernepyftf3", "from_user_id": 369946312, "from_user_id_str": "369946312", "from_user_name": "Kerne Wynn", "geo": null, "id": 148668151394074620, "id_str": "148668151394074624", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@afraarmani http://t.co/Hju02eSD", "to_user": "afraarmani", "to_user_id": 151411523, "to_user_id_str": "151411523", "to_user_name": "c\\u2215\\u0334\\u0196fr\\u03B1 bocil's", "in_reply_to_status_id": 134769110163791870, "in_reply_to_status_id_str": "134769110163791872"}, +{"created_at": "Mon, 19 Dec 2011 07:32:22 +0000", "from_user": "kernepyftf3", "from_user_id": 369946312, "from_user_id_str": "369946312", "from_user_name": "Kerne Wynn", "geo": null, "id": 148666971813199870, "id_str": "148666971813199872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@itsobeezy http://t.co/Hju02eSD", "to_user": "itsobeezy", "to_user_id": 24767456, "to_user_id_str": "24767456", "to_user_name": "O.B.", "in_reply_to_status_id": 148646306041180160, "in_reply_to_status_id_str": "148646306041180161"}, +{"created_at": "Mon, 19 Dec 2011 07:28:26 +0000", "from_user": "kernepyftf3", "from_user_id": 369946312, "from_user_id_str": "369946312", "from_user_name": "Kerne Wynn", "geo": null, "id": 148665979809968130, "id_str": "148665979809968128", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@hellofawoman69 http://t.co/Hju02eSD", "to_user": "hellofawoman69", "to_user_id": 58980122, "to_user_id_str": "58980122", "to_user_name": "Katrina Canty", "in_reply_to_status_id": 148646329214697470, "in_reply_to_status_id_str": "148646329214697472"}, +{"created_at": "Mon, 19 Dec 2011 07:22:32 +0000", "from_user": "DataCenterBlogs", "from_user_id": 137312227, "from_user_id_str": "137312227", "from_user_name": "Data Center Blogs", "geo": null, "id": 148664494288146430, "id_str": "148664494288146433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/852678442/dcpavatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/852678442/dcpavatar_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hadoop World: What Dell is up to with Big Data, Open Source and Developers: Besides interviewing a bunch of peo... http://t.co/AewYUPAE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:22:00 +0000", "from_user": "ekedazu", "from_user_id": 317146063, "from_user_id_str": "317146063", "from_user_name": "Diet Campos", "geo": null, "id": 148664360158507000, "id_str": "148664360158507008", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1446707619/1732_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1446707619/1732_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hadoop in Action (Paperback) http://t.co/lpAuzbKX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:16:30 +0000", "from_user": "kernepyftf3", "from_user_id": 369946312, "from_user_id_str": "369946312", "from_user_name": "Kerne Wynn", "geo": null, "id": 148662977975947260, "id_str": "148662977975947264", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@FuckKwameO_o http://t.co/Hju02eSD", "to_user": "FuckKwameO_o", "to_user_id": 86451838, "to_user_id_str": "86451838", "to_user_name": "Kwame", "in_reply_to_status_id": 148646299691003900, "in_reply_to_status_id_str": "148646299691003905"}, +{"created_at": "Mon, 19 Dec 2011 07:13:10 +0000", "from_user": "kernepyftf3", "from_user_id": 369946312, "from_user_id_str": "369946312", "from_user_name": "Kerne Wynn", "geo": null, "id": 148662137986883600, "id_str": "148662137986883585", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@kayla_lewis94 http://t.co/Hju02eSD", "to_user": "kayla_lewis94", "to_user_id": 351116382, "to_user_id_str": "351116382", "to_user_name": "Kayla Lewis", "in_reply_to_status_id": 148646294817214460, "in_reply_to_status_id_str": "148646294817214464"}, +{"created_at": "Mon, 19 Dec 2011 07:09:23 +0000", "from_user": "kernepyftf3", "from_user_id": 369946312, "from_user_id_str": "369946312", "from_user_name": "Kerne Wynn", "geo": null, "id": 148661187981221900, "id_str": "148661187981221888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@YouLoveShanda http://t.co/Hju02eSD", "to_user": "YouLoveShanda", "to_user_id": 90494485, "to_user_id_str": "90494485", "to_user_name": "i say FKUC alot =]", "in_reply_to_status_id": 148646275800240130, "in_reply_to_status_id_str": "148646275800240128"}, +{"created_at": "Mon, 19 Dec 2011 07:06:58 +0000", "from_user": "boogie_pop", "from_user_id": 57008368, "from_user_id_str": "57008368", "from_user_name": "\\u4E95\\u4E0A\\u3000\\u4F51\\u5E0C", "geo": null, "id": 148660577709981700, "id_str": "148660577709981696", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695915522/00_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695915522/00_normal.png", "source": "<a href="http://janetter.net/" rel="nofollow">Janetter</a>", "text": "Hadoop\\u306E\\u8A2D\\u5B9A\\u306B\\u7121\\u99C4\\u306B\\u6642\\u9593\\u3092\\u3068\\u3089\\u308C\\u305F\\u308F\\u305A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:06:14 +0000", "from_user": "kernepyftf3", "from_user_id": 369946312, "from_user_id_str": "369946312", "from_user_name": "Kerne Wynn", "geo": null, "id": 148660392661495800, "id_str": "148660392661495808", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Xteen_16 http://t.co/Hju02eSD", "to_user": "Xteen_16", "to_user_id": 99618594, "to_user_id_str": "99618594", "to_user_name": "Christine Fairchild", "in_reply_to_status_id": 148646276404232200, "in_reply_to_status_id_str": "148646276404232192"}, +{"created_at": "Mon, 19 Dec 2011 06:58:39 +0000", "from_user": "kernepyftf3", "from_user_id": 369946312, "from_user_id_str": "369946312", "from_user_name": "Kerne Wynn", "geo": null, "id": 148658483372371970, "id_str": "148658483372371968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MdrnDayJunClver http://t.co/Hju02eSD", "to_user": "MdrnDayJunClver", "to_user_id": 231533378, "to_user_id_str": "231533378", "to_user_name": "Holly Johnson", "in_reply_to_status_id": 148646307974758400, "in_reply_to_status_id_str": "148646307974758400"}, +{"created_at": "Mon, 19 Dec 2011 06:55:32 +0000", "from_user": "kernepyftf3", "from_user_id": 369946312, "from_user_id_str": "369946312", "from_user_name": "Kerne Wynn", "geo": null, "id": 148657700744597500, "id_str": "148657700744597504", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Rainaxel http://t.co/Hju02eSD", "to_user": "Rainaxel", "to_user_id": 142383743, "to_user_id_str": "142383743", "to_user_name": "Erya", "in_reply_to_status_id": 148645976100438000, "in_reply_to_status_id_str": "148645976100438016"}, +{"created_at": "Mon, 19 Dec 2011 06:55:03 +0000", "from_user": "INFAIM", "from_user_id": 145062108, "from_user_id_str": "145062108", "from_user_name": "Julianna DeLua (EIM)", "geo": null, "id": 148657580393238530, "id_str": "148657580393238528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "source": "<a href="http://futuretweets.com" rel="nofollow"> Futuretweets V2</a>", "text": "Most popular On-demand Webinar 2011 @ralphkimball http://t.co/FjsjlgSC Make data warehouse adaptable for #bigdata #hadoop @informaticacorp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:51:27 +0000", "from_user": "kernepyftf3", "from_user_id": 369946312, "from_user_id_str": "369946312", "from_user_name": "Kerne Wynn", "geo": null, "id": 148656675094659070, "id_str": "148656675094659072", "iso_language_code": "fi", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Tyson_1818 http://t.co/Hju02eSD", "to_user": "Tyson_1818", "to_user_id": 279048665, "to_user_id_str": "279048665", "to_user_name": "Tyson McKean", "in_reply_to_status_id": 148645555072016400, "in_reply_to_status_id_str": "148645555072016385"}, +{"created_at": "Mon, 19 Dec 2011 06:48:05 +0000", "from_user": "kernepyftf3", "from_user_id": 369946312, "from_user_id_str": "369946312", "from_user_name": "Kerne Wynn", "geo": null, "id": 148655825735528450, "id_str": "148655825735528448", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@GCUgiggles http://t.co/Hju02eSD", "to_user": "GCUgiggles", "to_user_id": 160892937, "to_user_id_str": "160892937", "to_user_name": "Scott Higgins", "in_reply_to_status_id": 148646267273228300, "in_reply_to_status_id_str": "148646267273228288"}, +{"created_at": "Mon, 19 Dec 2011 06:37:58 +0000", "from_user": "sedictor", "from_user_id": 66209189, "from_user_id_str": "66209189", "from_user_name": "sedictor", "geo": null, "id": 148653278811521020, "id_str": "148653278811521026", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701422602/petr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701422602/petr_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "\\u201C@trukhinyuri Hadoop 0.22, \\u043F\\u043E\\u044F\\u0432\\u0438\\u043B\\u0438\\u0441\\u044C Backup \\u043D\\u043E\\u0434\\u044B \\u0434\\u043B\\u044F namenode. http://t.co/zTtnKx9X\\u201D http://t.co/WOrXVsPa \\u2014 Hive 0.8.0 \\u0442\\u043E\\u0436\\u0435 \\u0432\\u044B\\u0448\\u0435\\u043B \\u043D\\u0435\\u0434\\u0430\\u0432\\u043D\\u043E :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:37:12 +0000", "from_user": "kernepyftf3", "from_user_id": 369946312, "from_user_id_str": "369946312", "from_user_name": "Kerne Wynn", "geo": null, "id": 148653088553697280, "id_str": "148653088553697280", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@JasmineCharlene http://t.co/Hju02eSD", "to_user": "JasmineCharlene", "to_user_id": 326160715, "to_user_id_str": "326160715", "to_user_name": "Jasmine Hamm", "in_reply_to_status_id": 148646316417880060, "in_reply_to_status_id_str": "148646316417880064"}, +{"created_at": "Mon, 19 Dec 2011 06:34:51 +0000", "from_user": "maeseele", "from_user_id": 285667190, "from_user_id_str": "285667190", "from_user_name": "Peter Maeseele", "geo": null, "id": 148652495508488200, "id_str": "148652495508488194", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1475112025/nice_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1475112025/nice_avatar_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/p4JJhxqi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:33:50 +0000", "from_user": "trukhinyuri", "from_user_id": 17842396, "from_user_id_str": "17842396", "from_user_name": "Trukhin Yuri", "geo": null, "id": 148652241098780670, "id_str": "148652241098780672", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1669204139/199168_1616087365337_1330943072_1322854_468984_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669204139/199168_1616087365337_1330943072_1322854_468984_n_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "\\u041D\\u0435\\u0434\\u0430\\u0432\\u043D\\u043E \\u0432\\u044B\\u0448\\u0435\\u043B Hadoop 0.22, \\u0433\\u0434\\u0435 \\u043D\\u0430\\u043A\\u043E\\u043D\\u0435\\u0446-\\u0442\\u043E \\u043F\\u043E\\u044F\\u0432\\u0438\\u043B\\u0438\\u0441\\u044C Backup \\u043D\\u043E\\u0434\\u044B \\u0434\\u043B\\u044F namenode. \\u0425\\u043E\\u0442\\u044C \\u0447\\u0442\\u043E-\\u0442\\u043E\\u2026 http://t.co/T5anmEHl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:33:24 +0000", "from_user": "bmlever", "from_user_id": 287939768, "from_user_id_str": "287939768", "from_user_name": "Ben Lever", "geo": null, "id": 148652131904274430, "id_str": "148652131904274432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1325625737/gravatar_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1325625737/gravatar_small_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:33:23 +0000", "from_user": "kernepyftf3", "from_user_id": 369946312, "from_user_id_str": "369946312", "from_user_name": "Kerne Wynn", "geo": null, "id": 148652125721858050, "id_str": "148652125721858048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ThaIncredbile85 http://t.co/Hju02eSD", "to_user": "ThaIncredbile85", "to_user_id": 251604675, "to_user_id_str": "251604675", "to_user_name": "J.Green ", "in_reply_to_status_id": 148646341038456830, "in_reply_to_status_id_str": "148646341038456832"}, +{"created_at": "Mon, 19 Dec 2011 06:32:56 +0000", "from_user": "VisualFoxMe", "from_user_id": 218446591, "from_user_id_str": "218446591", "from_user_name": "Philippe Blanc", "geo": null, "id": 148652011922010100, "id_str": "148652011922010112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1178220314/visualfox_512x512x32_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1178220314/visualfox_512x512x32_normal.png", "source": "<a href="http://disqus.com/" rel="nofollow">DISQUS</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl: http://t.co/ZsxYu26g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:28:50 +0000", "from_user": "kernepyftf3", "from_user_id": 369946312, "from_user_id_str": "369946312", "from_user_name": "Kerne Wynn", "geo": null, "id": 148650982119710720, "id_str": "148650982119710720", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Bdonn917 http://t.co/Hju02eSD", "to_user": "Bdonn917", "to_user_id": 237274571, "to_user_id_str": "237274571", "to_user_name": "Brett Donnermeyer", "in_reply_to_status_id": 148646356284751870, "in_reply_to_status_id_str": "148646356284751872"}, +{"created_at": "Mon, 19 Dec 2011 06:20:34 +0000", "from_user": "kernepyftf3", "from_user_id": 369946312, "from_user_id_str": "369946312", "from_user_name": "Kerne Wynn", "geo": null, "id": 148648901593923600, "id_str": "148648901593923584", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@PlayingOnKFMC http://t.co/Hju02eSD", "to_user": "PlayingOnKFMC", "to_user_id": 278603127, "to_user_id_str": "278603127", "to_user_name": "Classic KFMC 106.5", "in_reply_to_status_id": 148646209224056830, "in_reply_to_status_id_str": "148646209224056832"}, +{"created_at": "Mon, 19 Dec 2011 06:16:50 +0000", "from_user": "kernepyftf3", "from_user_id": 369946312, "from_user_id_str": "369946312", "from_user_name": "Kerne Wynn", "geo": null, "id": 148647962090803200, "id_str": "148647962090803200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534034683/imagesCAUO3EBE_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MrJeffries_ http://t.co/Hju02eSD", "to_user": "MrJeffries_", "to_user_id": 131675289, "to_user_id_str": "131675289", "to_user_name": "MONEY ", "in_reply_to_status_id": 148646225527316480, "in_reply_to_status_id_str": "148646225527316480"}, +{"created_at": "Mon, 19 Dec 2011 06:00:41 +0000", "from_user": "SimonDSAP", "from_user_id": 316886183, "from_user_id_str": "316886183", "from_user_name": "Simon Dale", "geo": null, "id": 148643898858803200, "id_str": "148643898858803200", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1639383087/IMG-20111114-00102_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639383087/IMG-20111114-00102_normal.jpg", "source": "<a href="http://motionobj.com/simplytweet" rel="nofollow">SimplyTweet</a>", "text": "RT @vavavavava: When HANA meets Hadoop. http://t.co/1E8kpFTD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:48:48 +0000", "from_user": "mattmcd", "from_user_id": 6854862, "from_user_id_str": "6854862", "from_user_name": "Matthew McDonnell", "geo": null, "id": 148640908605259780, "id_str": "148640908605259776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1401189383/me_skecth_no2_dark_800x800_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1401189383/me_skecth_no2_dark_800x800_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "#MapReduce for the Masses: Zero to #Hadoop in Five Minutes with Common Crawl http://t.co/yhsIw7sr #cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:44:28 +0000", "from_user": "matei_zaharia", "from_user_id": 201130645, "from_user_id_str": "201130645", "from_user_name": "Matei Zaharia", "geo": null, "id": 148639815456407550, "id_str": "148639815456407552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @commoncrawl: MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl by @stevesalevan http://t.co/cBa5598M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:36:33 +0000", "from_user": "satoruf", "from_user_id": 56858689, "from_user_id_str": "56858689", "from_user_name": "\\u8239\\u4E95\\u3000\\u899A, Satoru Funai", "geo": null, "id": 148637825741500400, "id_str": "148637825741500417", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/769358094/091203portrait_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/769358094/091203portrait_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "\\u306A\\u3093\\u3068\\uFF1F\\u201C@wyukawa: \\u7B2C3\\u7248\\u3067\\u308B\\u306E\\u304B\\uFF1EHadoop: The Definitive Guide, 3rd Edition\\u00A0-\\u00A0O'Reilly Media http://t.co/4HXKvu4L\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:32:42 +0000", "from_user": "jmichel_franco", "from_user_id": 122587156, "from_user_id_str": "122587156", "from_user_name": "Jean-Michel Franco", "geo": null, "id": 148636854407802880, "id_str": "148636854407802880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1250349187/JMF09_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1250349187/JMF09_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @dbmoore: #EnSW When #SAP HANA meets #Hadoop: \\u201CYou\\u2019ll be seeing more about SAP HANA and big data. We\\u2019ll be offering HANA for... http://t.co/TpJRlVKR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:32:17 +0000", "from_user": "takutwiter", "from_user_id": 405494923, "from_user_id_str": "405494923", "from_user_name": "taku", "geo": null, "id": 148636751617986560, "id_str": "148636751617986560", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\\u3044\\u3064\\u306E\\u9593\\u306B\\u304Bhadoop0.22\\u304C\\u30EA\\u30EA\\u30FC\\u30B9\\u3055\\u308C\\u3066\\u3044\\u305F\\u3002hadoop\\u306E\\u30D0\\u30FC\\u30B8\\u30E7\\u30F3\\u7BA1\\u7406\\u304C\\u3088\\u304F\\u308F\\u304B\\u3089\\u306A\\u3044\\u3001\\u3001\\u3001", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:31:14 +0000", "from_user": "asakusa_hadoop", "from_user_id": 259742692, "from_user_id_str": "259742692", "from_user_name": "Asakusa Framework", "geo": null, "id": 148636486902874100, "id_str": "148636486902874112", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1575270514/asakusafw_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575270514/asakusafw_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @g3akk: Hadoop\\u306E\\u305F\\u3081\\u306E\\u30D5\\u30EB\\u30B9\\u30BF\\u30C3\\u30AF\\u30D5\\u30EC\\u30FC\\u30E0\\u30EF\\u30FC\\u30AFAsakusa FW\\u306E\\u30D0\\u30FC\\u30B8\\u30E7\\u30F30.2.4\\u304C\\u30EA\\u30EA\\u30FC\\u30B9\\u3002\\u4EFB\\u610F\\u306ERDB\\u3068\\u9023\\u643A\\u3059\\u308BWindGate\\u304C\\u4ECA\\u56DE\\u304B\\u3089GA\\u306B\\u306A\\u3063\\u305F\\u307B\\u304B\\u3001\\u30C9\\u30AD\\u30E5\\u30E1\\u30F3\\u30C8\\u304C\\u5927\\u5E45\\u306B\\u62E1\\u5145\\u3055\\u308C\\u3066\\u3044\\u308B\\u305D\\u3046\\u3067\\u3059\\u2192 http://t.co/qhUiLVty", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:27:26 +0000", "from_user": "m_mouri", "from_user_id": 59664060, "from_user_id_str": "59664060", "from_user_name": "M.Mouri", "geo": null, "id": 148635529745932300, "id_str": "148635529745932289", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/329289919/img.php_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/329289919/img.php_normal.jpeg", "source": "<a href="http://www.tweenapp.org/" rel="nofollow">Tween</a>", "text": "\\u305D\\u308C\\u306B\\u3057\\u3066\\u3082\\u3001Hadoop 0.23\\u304Cstable\\u76F8\\u5F53\\u306B\\u306A\\u308B\\u306E\\u306F\\u3044\\u3064\\u306E\\u4E88\\u5B9A\\u306A\\u3093\\u3060\\u308D\\u3046\\uFF1F\\uFF1F\\uFF1F", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:25:09 +0000", "from_user": "m_mouri", "from_user_id": 59664060, "from_user_id_str": "59664060", "from_user_name": "M.Mouri", "geo": null, "id": 148634954618769400, "id_str": "148634954618769408", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/329289919/img.php_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/329289919/img.php_normal.jpeg", "source": "<a href="http://www.tweenapp.org/" rel="nofollow">Tween</a>", "text": "YARN\\u3082\\u66F8\\u3044\\u3066\\u3042\\u308B\\u306E\\u304B\\u3002\\u65E5\\u672C\\u8A9E\\u7248\\u3092\\u5F85\\u3064\\u3079\\u304D\\u304B\\u3001\\u6D0B\\u66F8\\u3067\\u8CB7\\u3046\\u3079\\u304D\\u304B\\u2026 QT @wyukawa: \\u7B2C3\\u7248\\u3067\\u308B\\u306E\\u304B\\uFF1EHadoop: The Definitive Guide, 3rd Edition\\u00A0-\\u00A0O'Reilly Media http://t.co/BFzMH6DP", "to_user": "wyukawa", "to_user_id": 14138696, "to_user_id_str": "14138696", "to_user_name": "Wataru Yukawa", "in_reply_to_status_id": 148633694511448060, "in_reply_to_status_id_str": "148633694511448064"}, +{"created_at": "Mon, 19 Dec 2011 05:21:31 +0000", "from_user": "osacaz4", "from_user_id": 77739815, "from_user_id_str": "77739815", "from_user_name": "hashimoto", "geo": null, "id": 148634040528945150, "id_str": "148634040528945152", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/527736341/twitter200911_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/527736341/twitter200911_normal.png", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "RT @wyukawa: \\u7B2C3\\u7248\\u3067\\u308B\\u306E\\u304B\\uFF1EHadoop: The Definitive Guide, 3rd Edition\\u00A0-\\u00A0O'Reilly Media http://t.co/qRQN2aZ5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:20:11 +0000", "from_user": "BayAreaJobsSH", "from_user_id": 60399575, "from_user_id_str": "60399575", "from_user_name": "StartUpHire", "geo": null, "id": 148633703579516930, "id_str": "148633703579516929", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/355642926/twitter_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/355642926/twitter_normal.gif", "source": "<a href="http://www.startuphire.com" rel="nofollow">StartUpHire Website</a>", "text": "Senior Hadoop Software Engineer in San Mateo at Greenplum http://t.co/uxTxgPab #jobs #StartUpHire", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:20:08 +0000", "from_user": "wyukawa", "from_user_id": 14138696, "from_user_id_str": "14138696", "from_user_name": "Wataru Yukawa", "geo": null, "id": 148633694511448060, "id_str": "148633694511448064", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1422846484/picture_12_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1422846484/picture_12_bigger_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "\\u7B2C3\\u7248\\u3067\\u308B\\u306E\\u304B\\uFF1EHadoop: The Definitive Guide, 3rd Edition\\u00A0-\\u00A0O'Reilly Media http://t.co/qRQN2aZ5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:16:51 +0000", "from_user": "mwarger", "from_user_id": 15886909, "from_user_id_str": "15886909", "from_user_name": "Mathew Warger", "geo": null, "id": 148632866983649280, "id_str": "148632866983649280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1487267520/2011-07-10-181749_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1487267520/2011-07-10-181749_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @commoncrawl: MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl by @stevesalevan http://t.co/cBa5598M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:06:24 +0000", "from_user": "timfives", "from_user_id": 7155092, "from_user_id_str": "7155092", "from_user_name": "Tim Fives", "geo": null, "id": 148630236949520400, "id_str": "148630236949520384", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1155029066/timfives_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1155029066/timfives_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "RT @mndoci: Hadoop and Pig at LinkedIn SNA http://t.co/kxSuZJDv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:01:08 +0000", "from_user": "robrohan", "from_user_id": 289741018, "from_user_id_str": "289741018", "from_user_name": "Rob Rohan", "geo": null, "id": 148628909498437630, "id_str": "148628909498437632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1331351287/download_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1331351287/download_normal.jpeg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl | CommonCrawl http://t.co/cDcnl9wB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:00:16 +0000", "from_user": "CloudPodcasts", "from_user_id": 89944823, "from_user_id_str": "89944823", "from_user_name": "Cloud Podcasts ", "geo": null, "id": 148628691189116930, "id_str": "148628691189116928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/527219943/Cloud_Podcasts_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/527219943/Cloud_Podcasts_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hadoop World: What Dell is up to with Big Data, Open Source and Developers: Besides interv... http://t.co/I4gvHbA5 #cloud #podcast #TCN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:58:12 +0000", "from_user": "followimaginea", "from_user_id": 91066092, "from_user_id_str": "91066092", "from_user_name": "imaginea", "geo": null, "id": 148628171229634560, "id_str": "148628171229634560", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1596052450/imaginea_tw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596052450/imaginea_tw_normal.jpg", "source": "Zite Personalized Magazine", "text": "RT @HadoopNews: #Hadoop and Machine Learning http://t.co/hDoLA0kT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:56:57 +0000", "from_user": "g3akk", "from_user_id": 278590903, "from_user_id_str": "278590903", "from_user_name": "GOMI Akiko", "geo": null, "id": 148627857504079870, "id_str": "148627857504079872", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1646879822/06_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646879822/06_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Hadoop\\u306E\\u305F\\u3081\\u306E\\u30D5\\u30EB\\u30B9\\u30BF\\u30C3\\u30AF\\u30D5\\u30EC\\u30FC\\u30E0\\u30EF\\u30FC\\u30AFAsakusa FW\\u306E\\u30D0\\u30FC\\u30B8\\u30E7\\u30F30.2.4\\u304C\\u30EA\\u30EA\\u30FC\\u30B9\\u3002\\u4EFB\\u610F\\u306ERDB\\u3068\\u9023\\u643A\\u3059\\u308BWindGate\\u304C\\u4ECA\\u56DE\\u304B\\u3089GA\\u306B\\u306A\\u3063\\u305F\\u307B\\u304B\\u3001\\u30C9\\u30AD\\u30E5\\u30E1\\u30F3\\u30C8\\u304C\\u5927\\u5E45\\u306B\\u62E1\\u5145\\u3055\\u308C\\u3066\\u3044\\u308B\\u305D\\u3046\\u3067\\u3059\\u2192 http://t.co/qhUiLVty", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:56:28 +0000", "from_user": "vishwavikalp", "from_user_id": 83765473, "from_user_id_str": "83765473", "from_user_name": "Vishwavikalp", "geo": null, "id": 148627735395311600, "id_str": "148627735395311616", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1258295366/DSC03650_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1258295366/DSC03650_normal.JPG", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "Java Hadoop / Java Developer http://t.co/1UzHUsYw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:43:10 +0000", "from_user": "carlosaguayo81", "from_user_id": 363392389, "from_user_id_str": "363392389", "from_user_name": "Carlos Aguayo", "geo": null, "id": 148624388340723700, "id_str": "148624388340723713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1526677946/46351_10150269873320527_729505526_15148384_6563080_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1526677946/46351_10150269873320527_729505526_15148384_6563080_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Deploy a Hadoop word counter against crawled web pages into Amazon infrastructure in 5 minutes! http://t.co/4qj5i162", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:40:54 +0000", "from_user": "TimMattison", "from_user_id": 16650099, "from_user_id_str": "16650099", "from_user_name": "Tim Mattison", "geo": null, "id": 148623819370807300, "id_str": "148623819370807296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1618766799/timmattison-twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618766799/timmattison-twitter_normal.png", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "Time to get serious about Hadoop, see you in class tomorrow @cloudera!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:40:05 +0000", "from_user": "ChrisDiehl", "from_user_id": 14595061, "from_user_id_str": "14595061", "from_user_name": "Chris Diehl", "geo": null, "id": 148623614567137280, "id_str": "148623614567137280", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/660241500/ZionSmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/660241500/ZionSmall_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "RT @mndoci: Hadoop and Pig at LinkedIn SNA http://t.co/kxSuZJDv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:37:25 +0000", "from_user": "peteskomoroch", "from_user_id": 14344469, "from_user_id_str": "14344469", "from_user_name": "Peter Skomoroch", "geo": null, "id": 148622941112909820, "id_str": "148622941112909825", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1331342742/skomoroch_photo_ocean_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1331342742/skomoroch_photo_ocean_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "RT @mndoci: Hadoop and Pig at LinkedIn SNA http://t.co/kxSuZJDv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:37:23 +0000", "from_user": "evaluator_group", "from_user_id": 214273110, "from_user_id_str": "214273110", "from_user_name": "Evaluator Group", "geo": null, "id": 148622933399576580, "id_str": "148622933399576577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1387282056/test_logo_product_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1387282056/test_logo_product_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:30:00 +0000", "from_user": "zs_frontline", "from_user_id": 165991495, "from_user_id_str": "165991495", "from_user_name": "frontline (\\u30D5\\u30ED\\u30F3\\u30C8\\u30E9\\u30A4\\u30F3)", "geo": null, "id": 148621074844762100, "id_str": "148621074844762112", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1074835094/main_bn_01_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1074835094/main_bn_01_normal.png", "source": "<a href="http://tweetbooking2.appspot.com/" rel="nofollow">tweetbooking2</a>", "text": "\\uFF3BJava\\uFF3D\\u81EA\\u793E\\u30B5\\u30FC\\u30D3\\u30B9\\u958B\\u767A\\u30A8\\u30F3\\u30B8\\u30CB\\u30A2\\u52DF\\u96C6\\u4E2D\\uFF01\\uFF0F\\u5927\\u91CF\\u30C7\\u30FC\\u30BF\\u5206\\u6790\\u30B7\\u30B9\\u30C6\\u30E0\\u3084\\u305D\\u308C\\u3092\\u7528\\u3044\\u305F\\u5206\\u6790\\u30B5\\u30FC\\u30D3\\u30B9\\u306E\\u958B\\u767A\\uFF0FHadoop\\u7B49\\u306E\\u5206\\u6563\\u51E6\\u7406\\u6280\\u8853\\u3092\\u5229\\u7528\\u3057\\u305F\\u958B\\u767A\\u7D4C\\u9A13\\u304C\\u3042\\u308B\\u65B9\\u3001\\u5927\\u6B53\\u8FCE\\uFF01\\uFF0F\\u8A73\\u7D30\\u2192 http://t.co/OGwnH1lt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:27:36 +0000", "from_user": "AIntellig", "from_user_id": 304717100, "from_user_id_str": "304717100", "from_user_name": "Matthias Heger", "geo": null, "id": 148620473972949000, "id_str": "148620473972948992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1367786194/ai_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1367786194/ai_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hadoop and Machine Learning: Slides for the talk by the Cloudera Data Science team on the state of machine learn... http://t.co/WhW2LYrZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:25:25 +0000", "from_user": "d8Pit", "from_user_id": 264394701, "from_user_id_str": "264394701", "from_user_name": "The URL Popularizer", "geo": null, "id": 148619923118243840, "id_str": "148619923118243840", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317284522/logo-header_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317284522/logo-header_normal.png", "source": "<a href="http://d8p.it" rel="nofollow">d8P</a>", "text": "RT @valleymobjobs: #sf Back end software engineer - Platform, Ruby, Mobile, Hadoop, Map #mobile #jobs | http://t.co/iIDe0Hn4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:24:49 +0000", "from_user": "StephenHawking9", "from_user_id": 341975857, "from_user_id_str": "341975857", "from_user_name": "Stephen Hawking", "geo": null, "id": 148619772496588800, "id_str": "148619772496588800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1459648557/StephanHawking_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1459648557/StephanHawking_normal.jpg", "source": "<a href="http://suhastech.com/tr" rel="nofollow">Tweet Random</a>", "text": "24 Interview Questions & Answers for Hadoop developers http://t.co/QOsinPTo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:24:14 +0000", "from_user": "valleymobjobs", "from_user_id": 285217228, "from_user_id_str": "285217228", "from_user_name": "Valley Mobile Jobs", "geo": null, "id": 148619625263927300, "id_str": "148619625263927296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1318878831/localmobjobs_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1318878831/localmobjobs_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#sf Back end software engineer - Platform, Ruby, Mobile, Hadoop, Map http://t.co/bypwYC8x #mobile #jobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:13:14 +0000", "from_user": "awadallah", "from_user_id": 11263102, "from_user_id_str": "11263102", "from_user_name": "Amr Awadallah", "geo": null, "id": 148616855387521020, "id_str": "148616855387521024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1536319816/amr_2011_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1536319816/amr_2011_twitter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:09:02 +0000", "from_user": "visualstudio10", "from_user_id": 120193019, "from_user_id_str": "120193019", "from_user_name": "visualstudio2010", "geo": null, "id": 148615801912569860, "id_str": "148615801912569856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1253466808/vstwitt_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1253466808/vstwitt_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Resources to write .Net based MapReduce jobs for Hadoop using F# http://t.co/VQM5FXTT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:01:38 +0000", "from_user": "turtle2005", "from_user_id": 54184073, "from_user_id_str": "54184073", "from_user_name": "Hitoshi Kamezaki", "geo": null, "id": 148613937238257660, "id_str": "148613937238257665", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/351040572/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/351040572/twitterProfilePhoto_normal.jpg", "source": "<a href="http://www.modiphi.com" rel="nofollow">MODIPHI SM3</a>", "text": "RT @bigdata_1topi: Windows Azure\\u3001Hadoop\\u3084Node.js\\u306A\\u3069\\u6709\\u540DOSS\\u3092\\u30B5\\u30DD\\u30FC\\u30C8 | \\u30A8\\u30F3\\u30BF\\u30FC\\u30D7\\u30E9\\u30A4\\u30BA | \\u30DE\\u30A4\\u30CA\\u30D3\\u30CB\\u30E5\\u30FC\\u30B9 http://t.co/jAtMEySf\\n #1tp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:00:27 +0000", "from_user": "NewsICT", "from_user_id": 215181262, "from_user_id_str": "215181262", "from_user_name": "NewsICT", "geo": null, "id": 148613638956122100, "id_str": "148613638956122113", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1305695667/215181262-1302367071-32_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1305695667/215181262-1302367071-32_normal", "source": "<a href="http://twitter.com/NewsICT" rel="nofollow">NewsICT</a>", "text": "(computer) \\u3010EMC\\u30B8\\u30E3\\u30D1\\u30F3\\u3011\\u610F\\u6B32\\u7684\\u306A\\u6539\\u826F\\u3092\\u53D6\\u308A\\u8FBC\\u3093\\u3060\\u9AD8\\u901F\\u5316Hadoop\\u3068\\u30C7\\u30FC\\u30BF\\u30A6\\u30A7\\u30A2\\u30CF\\u30A6\\u30B9\\u88FD\\u54C1 http://t.co/mLxWZ8xU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:41:53 +0000", "from_user": "CareerSculptors", "from_user_id": 368299625, "from_user_id_str": "368299625", "from_user_name": "CareerSculptors ", "geo": null, "id": 148608966061080580, "id_str": "148608966061080576", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1561907486/cs2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1561907486/cs2_normal.png", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Job: Hadoop / Mapreduce Developer in California http://t.co/E5HUASkt #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:41:44 +0000", "from_user": "elleryq", "from_user_id": 1696951, "from_user_id_str": "1696951", "from_user_name": "Yan-ren Tsai", "geo": null, "id": 148608930715668480, "id_str": "148608930715668481", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/29967862/__04_-small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/29967862/__04_-small_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Resources to write .Net based MapReduce jobs for Hadoop using F# http://t.co/G0oJKFZ8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:38:35 +0000", "from_user": "atsunori74", "from_user_id": 100479273, "from_user_id_str": "100479273", "from_user_name": "Atsunori Takashima", "geo": null, "id": 148608135957987330, "id_str": "148608135957987329", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1251687779/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1251687779/image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "#mynavinews Windows Azure\\u3001Hadoop\\u3084Node.js\\u306A\\u3069\\u6709\\u540DOSS\\u3092\\u30B5\\u30DD\\u30FC\\u30C8 http://t.co/3c7mIXsO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:34:23 +0000", "from_user": "vavavavava", "from_user_id": 75005535, "from_user_id_str": "75005535", "from_user_name": "\\u99AC\\u5834 \\u6E09 (Wataru Baba)", "geo": null, "id": 148607078527795200, "id_str": "148607078527795201", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1581784375/profile_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1581784375/profile_bigger_normal.jpg", "source": "<a href="http://motionobj.com/simplytweet" rel="nofollow">SimplyTweet</a>", "text": "When HANA meets Hadoop. http://t.co/1E8kpFTD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:33:12 +0000", "from_user": "cmastication", "from_user_id": 43186378, "from_user_id_str": "43186378", "from_user_name": "Mister Long", "geo": null, "id": 148606782036652030, "id_str": "148606782036652034", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1133817555/croppedHead_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1133817555/croppedHead_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@pinotblogger stochastic Monte Carlo simulations. I use Hadoop via elastic map reduce as a grid engine.", "to_user": "pinotblogger", "to_user_id": 1586961, "to_user_id_str": "1586961", "to_user_name": "Josh Hermsmeyer", "in_reply_to_status_id": 148606133765025800, "in_reply_to_status_id_str": "148606133765025793"}, +{"created_at": "Mon, 19 Dec 2011 03:31:33 +0000", "from_user": "lewaqysefe", "from_user_id": 316542406, "from_user_id_str": "316542406", "from_user_name": "Fax Geddie", "geo": null, "id": 148606368679604220, "id_str": "148606368679604224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1446665861/881_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1446665861/881_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hadoop: The Definitive Guide (Paperback) http://t.co/zX9VuDq6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:31:33 +0000", "from_user": "lewaqysefe", "from_user_id": 316542406, "from_user_id_str": "316542406", "from_user_name": "Fax Geddie", "geo": null, "id": 148606366334980100, "id_str": "148606366334980097", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1446665861/881_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1446665861/881_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Pro Hadoop (Expert's Voice in Open Source) (Paperback) http://t.co/W76brbc0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:31:16 +0000", "from_user": "wyukawa", "from_user_id": 14138696, "from_user_id_str": "14138696", "from_user_name": "Wataru Yukawa", "geo": null, "id": 148606294176174080, "id_str": "148606294176174080", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1422846484/picture_12_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1422846484/picture_12_bigger_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "@shiumachi \\u8ABF\\u3079\\u3066\\u307F\\u307E\\u3057\\u305F\\u304Croot\\u30E6\\u30FC\\u30B6\\u3067\\u5B9F\\u884C\\u3059\\u308B\\u306E\\u306F\\u9593\\u9055\\u3044\\u3063\\u307D\\u3044\\u3067\\u3059\\u306D\\u3002hdfs\\u30E6\\u30FC\\u30B6\\u306A\\u3089OK\\u3067\\u3059\\u3002logs, pids\\u306B\\u66F8\\u304D\\u8FBC\\u307F\\u6A29\\u9650\\u306E\\u3042\\u308Bhadoop\\u30B0\\u30EB\\u30FC\\u30D7\\u306B\\u5C5E\\u3059\\u308B\\u30E6\\u30FC\\u30B6\\u306A\\u3089\\u5927\\u4E08\\u592B\\u306A\\u3088\\u3046\\u3067\\u3059\\u306D\\u3002", "to_user": "shiumachi", "to_user_id": 11370182, "to_user_id_str": "11370182", "to_user_name": "Sho Shimauchi", "in_reply_to_status_id": 148597526445031420, "in_reply_to_status_id_str": "148597526445031424"}, +{"created_at": "Mon, 19 Dec 2011 03:25:11 +0000", "from_user": "TechnoMile", "from_user_id": 89779407, "from_user_id_str": "89779407", "from_user_name": "TechnoMile LLC", "geo": null, "id": 148604765373337600, "id_str": "148604765373337601", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1187113101/techomile_normal_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1187113101/techomile_normal_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Resources to write .Net based MapReduce jobs for Hadoop using F# http://t.co/NrjDz3MC Cloud Computinghttp://twit... http://t.co/FIT71p8S", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:24:14 +0000", "from_user": "TibidyUS", "from_user_id": 313799444, "from_user_id_str": "313799444", "from_user_name": "Tibidy", "geo": null, "id": 148604523940818940, "id_str": "148604523940818944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1458127887/tbd_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1458127887/tbd_normal.png", "source": "<a href="http://www.tibidy.com" rel="nofollow">Tibidy</a>", "text": "#MapReduce For the Masses With Common Crawl Data: http://t.co/umxU1xQ7 | #Hello #Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:23:03 +0000", "from_user": "TibidyUS", "from_user_id": 313799444, "from_user_id_str": "313799444", "from_user_name": "Tibidy", "geo": null, "id": 148604226560458750, "id_str": "148604226560458752", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1458127887/tbd_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1458127887/tbd_normal.png", "source": "<a href="http://www.tibidy.com" rel="nofollow">Tibidy</a>", "text": "All about #Hadoop. Tagged on http://t.co/9p11zC6K", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:22:22 +0000", "from_user": "kellycopson", "from_user_id": 367074993, "from_user_id_str": "367074993", "from_user_name": "kelly", "geo": null, "id": 148604054296207360, "id_str": "148604054296207361", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1526353507/kelly_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1526353507/kelly_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Resources to write .Net based MapReduce jobs for Hadoop using F# http://t.co/h70Te3fx Cloud Computing", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:21:00 +0000", "from_user": "JReuben1", "from_user_id": 18364654, "from_user_id_str": "18364654", "from_user_name": "JReuben1", "geo": null, "id": 148603713529978880, "id_str": "148603713529978880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1222470114/bioPic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1222470114/bioPic_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "CommonCrawl - http://t.co/Ecm31s6z - Hadoop Hello World with 40TB of web crawl data on Amazon cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:20:57 +0000", "from_user": "TechAssoc", "from_user_id": 92243805, "from_user_id_str": "92243805", "from_user_name": "TechnologyAssociates", "geo": null, "id": 148603701244854270, "id_str": "148603701244854272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/659762257/Technology_Asso_arrowsv2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/659762257/Technology_Asso_arrowsv2_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "Resources to write .Net based MapReduce jobs for Hadoop using F# http://t.co/kpbLr7hJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:18:37 +0000", "from_user": "SantiagFongtra", "from_user_id": 277471045, "from_user_id_str": "277471045", "from_user_name": "Santiago Fong", "geo": null, "id": 148603113178279940, "id_str": "148603113178279938", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1300882924/avatar-animated-06-1_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1300882924/avatar-animated-06-1_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/y6jD0knV Microsoft updates Azure with SDK and Hadoop preview - Register", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:13:50 +0000", "from_user": "ElGanador", "from_user_id": 14747697, "from_user_id_str": "14747697", "from_user_name": "ElGanador", "geo": null, "id": 148601909656293380, "id_str": "148601909656293376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/54089537/800px-Gary_Owens_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/54089537/800px-Gary_Owens_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "New submitter happyscientist writes \"This is a nice 'Hello World' for using Hadoop MapReduce on Common Crawl dat... http://t.co/CinnCbMh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:11:05 +0000", "from_user": "takutwiter", "from_user_id": 405494923, "from_user_id_str": "405494923", "from_user_name": "taku", "geo": null, "id": 148601217625501700, "id_str": "148601217625501697", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\\u30AA\\u30E9\\u30A4\\u30EA\\u30FC\\u3088\\u308A\\u3001Cassandra\\u306E\\u548C\\u8A33\\uFF080.8\\u30E1\\u30A4\\u30F3\\uFF09\\u304C12/24\\u306B\\u3001hadoop\\u306E\\u6D0B\\u66F8\\uFF08MRv2\\u30E1\\u30A4\\u30F3\\uFF09\\u304C\\u6765\\u5E744/22\\u306B\\u767A\\u58F2\\u4E88\\u5B9A\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:06:59 +0000", "from_user": "nyokohama", "from_user_id": 187913387, "from_user_id_str": "187913387", "from_user_name": "\\u306B\\u3087\\u3053(\\u30D5\\u30EA\\u30FC\\u30BF\\u30FC)", "geo": null, "id": 148600185600221200, "id_str": "148600185600221184", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1472413285/lena_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1472413285/lena_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @OpenJDSF: Windows Azure\\u3001Hadoop\\u3084Node.js\\u306A\\u3069\\u6709\\u540DOSS\\u3092\\u30B5\\u30DD\\u30FC\\u30C8 http://t.co/HV3s5FfJ #mynavinews #MIC #Storage", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:06:27 +0000", "from_user": "Pentaho", "from_user_id": 20641938, "from_user_id_str": "20641938", "from_user_name": "Pentaho", "geo": null, "id": 148600048668786700, "id_str": "148600048668786691", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/558415661/pentaho_twitter3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/558415661/pentaho_twitter3_normal.png", "source": "<a href="http://tweetmeme.com" rel="nofollow">TweetMeme</a>", "text": "Looking forward to speaking with @merv this week. Enjoying this comparison: Hadoop Distributions And Kids\\u2019 Soccer http://t.co/NJLe2yMn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:57:14 +0000", "from_user": "OpenJDSF", "from_user_id": 112994568, "from_user_id_str": "112994568", "from_user_name": "JDSF", "geo": null, "id": 148597730577629200, "id_str": "148597730577629186", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/692418172/JDSF.logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/692418172/JDSF.logo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Windows Azure\\u3001Hadoop\\u3084Node.js\\u306A\\u3069\\u6709\\u540DOSS\\u3092\\u30B5\\u30DD\\u30FC\\u30C8 http://t.co/HV3s5FfJ #mynavinews #MIC #Storage", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:50:54 +0000", "from_user": "prasen", "from_user_id": 15131606, "from_user_id_str": "15131606", "from_user_name": "prasen", "geo": null, "id": 148596135966158850, "id_str": "148596135966158848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @stojanovic: Carl Nolan has a blog on using our #Hadoop on #Azure service and its #JavaScript shell for data visualization: http://t.co/qZeEO2EH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:47:57 +0000", "from_user": "yaymixer", "from_user_id": 263546351, "from_user_id_str": "263546351", "from_user_name": "yaymixer", "geo": null, "id": 148595394505474050, "id_str": "148595394505474051", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1281882448/the_alhambra6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1281882448/the_alhambra6_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/uoe3yT6q Microsoft Tries Hadoop on Azure | Cloud Computing Journal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:46:25 +0000", "from_user": "mk_mic", "from_user_id": 110366328, "from_user_id_str": "110366328", "from_user_name": "mic\\u30DE\\u30FC\\u30B1\\u30C6\\u30A3\\u30F3\\u30B0\\u90E8", "geo": null, "id": 148595008658882560, "id_str": "148595008658882560", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1231244449/keyboard-mic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1231244449/keyboard-mic_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Windows Azure\\u3001Hadoop\\u3084Node.js\\u306A\\u3069\\u6709\\u540DOSS\\u3092\\u30B5\\u30DD\\u30FC\\u30C8: \\u30DE\\u30A4\\u30CA\\u30D3\\u30CB\\u30E5\\u30FC\\u30B9 -Microsoft\\u306F2011\\u5E7412\\u6708\\u306EWindows Azure\\u30EA\\u30EA\\u30FC\\u30B9\\u3067\\u3001OSS\\u95A2\\u9023\\u306E\\u30B5\\u30DD... http://t.co/AXVEM6t0 #MIC #Storage", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:46:02 +0000", "from_user": "mind_scratch", "from_user_id": 114927773, "from_user_id_str": "114927773", "from_user_name": "Craig W", "geo": null, "id": 148594910948372480, "id_str": "148594910948372480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1288408094/monster-eigth_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1288408094/monster-eigth_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "http://t.co/ssW2I47z: Map/Reduce With Hadoop and Ruby http://t.co/Rw4s8SVI via @mind_scratch", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:42:37 +0000", "from_user": "saedsayad", "from_user_id": 232981432, "from_user_id_str": "232981432", "from_user_name": "Saed Sayad", "geo": null, "id": 148594052827332600, "id_str": "148594052827332608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1204712670/saed_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1204712670/saed_twitter_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Check this video out -- Hadoop Part 8 - Configure and Test Cluster http://t.co/PRUuN4zZ via @youtube", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:41:51 +0000", "from_user": "jmhodges", "from_user_id": 9267272, "from_user_id_str": "9267272", "from_user_name": "Jeff Hodges", "geo": null, "id": 148593859276972030, "id_str": "148593859276972033", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/57084631/n20903342_33746840_708_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/57084631/n20903342_33746840_708_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@coda Get over zookeeper's API. Double down on hadoop stack maintenance. It is the path.", "to_user": "coda", "to_user_id": 637533, "to_user_id_str": "637533", "to_user_name": "Coda Hale", "in_reply_to_status_id": 148588852301398000, "in_reply_to_status_id_str": "148588852301398016"} +, +{"created_at": "Mon, 19 Dec 2011 02:38:09 +0000", "from_user": "hnfirehose", "from_user_id": 213117318, "from_user_id_str": "213117318", "from_user_name": "HN Firehose", "geo": null, "id": 148592930179915780, "id_str": "148592930179915776", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Trekking into the Cassandra Data Model: http://t.co/EBo7rjc3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:27:12 +0000", "from_user": "jbd28", "from_user_id": 74744418, "from_user_id_str": "74744418", "from_user_name": "Joe", "geo": null, "id": 148590171649085440, "id_str": "148590171649085440", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1263396064/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263396064/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@cmastication Hadoop?", "to_user": "cmastication", "to_user_id": 43186378, "to_user_id_str": "43186378", "to_user_name": "Mister Long", "in_reply_to_status_id": 148582487541547000, "in_reply_to_status_id_str": "148582487541547008"}, +{"created_at": "Mon, 19 Dec 2011 02:25:40 +0000", "from_user": "avkashchauhan", "from_user_id": 213118614, "from_user_id_str": "213118614", "from_user_name": "Avkash Chauhan", "geo": null, "id": 148589788755263500, "id_str": "148589788755263488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1615647152/asc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615647152/asc_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Blog: Resources to write .Net based #MapReduce jobs for #Hadoop using F# - http://t.co/GHkA2RUG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:20:15 +0000", "from_user": "wyukawa", "from_user_id": 14138696, "from_user_id_str": "14138696", "from_user_name": "Wataru Yukawa", "geo": null, "id": 148588422041309200, "id_str": "148588422041309184", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1422846484/picture_12_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1422846484/picture_12_bigger_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "CDH\\u7248Hadoop\\u3067root\\u3067start-balancer.sh\\u3092\\u5B9F\\u884C\\u3059\\u308B\\u3068\\u300C\\u8A73\\u3057\\u304F\\u306F `chown --help' \\u3092\\u5B9F\\u884C\\u3057\\u3066\\u4E0B\\u3055\\u3044.\\u300D\\u3068\\u8A00\\u308F\\u308C\\u308B\\u3002\\u5B9F\\u884C\\u306F\\u3055\\u308C\\u3066\\u3044\\u308B\\u3063\\u307D\\u3044\\u304C\\u3001\\u6B63\\u3057\\u3044\\u30EA\\u30D0\\u30E9\\u30F3\\u30B9\\u624B\\u9806\\u306F\\u4F55\\u3060\\u308D\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:05:52 +0000", "from_user": "akpurtell", "from_user_id": 48161485, "from_user_id_str": "48161485", "from_user_name": "Andrew Purtell", "geo": null, "id": 148584804537991170, "id_str": "148584804537991168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/975719155/apurtell_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/975719155/apurtell_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:03:04 +0000", "from_user": "BrandenLundy", "from_user_id": 182904085, "from_user_id_str": "182904085", "from_user_name": "Branden Lundy", "geo": null, "id": 148584101308403700, "id_str": "148584101308403713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662437264/Padmasambhava_Guru_rimpoche_at_samdruptse_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662437264/Padmasambhava_Guru_rimpoche_at_samdruptse_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @jameskobielus: Year ahead in #BigData ? #Hadoop deployments grow 10x. Graph DB mania 4 influence mining. Cloud #EDW goes mainstream. Data science in vogue", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:00:04 +0000", "from_user": "patrickDurusau", "from_user_id": 152194866, "from_user_id_str": "152194866", "from_user_name": "Patrick Durusau", "geo": null, "id": 148583345855533060, "id_str": "148583345855533056", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/961579480/patrick_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/961579480/patrick_normal.jpeg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Introducing Hadoop in 20 pages #topicmaps #hadoop #mapreduce http://t.co/Xt8VVT7G", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:57:32 +0000", "from_user": "maxkalachev", "from_user_id": 333232986, "from_user_id_str": "333232986", "from_user_name": "Max Kalachev", "geo": null, "id": 148582705783783420, "id_str": "148582705783783424", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1647901278/max2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647901278/max2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u0428\\u0438\\u043A\\u0430\\u0440\\u043D\\u0430\\u044F \\u043A\\u043D\\u0438\\u0433\\u0430 \\u043F\\u043E \\u0444\\u0440\\u0435\\u0439\\u043C\\u0432\\u043E\\u0440\\u043A\\u0443 Apache Hadoop http://t.co/CO2WK4PX #mapreduce", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:53:47 +0000", "from_user": "pradeep2002gs", "from_user_id": 58767051, "from_user_id_str": "58767051", "from_user_name": "G.S.Pradeep Kumar", "geo": null, "id": 148581763046846460, "id_str": "148581763046846464", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @MicrosoftBuzz: Microsoft Tries Hadoop on Azure (Apache Developer's Journal) http://t.co/gLLWrogj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:53:22 +0000", "from_user": "pradeep2002gs", "from_user_id": 58767051, "from_user_id_str": "58767051", "from_user_name": "G.S.Pradeep Kumar", "geo": null, "id": 148581656599605250, "id_str": "148581656599605248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:40:18 +0000", "from_user": "teguhprasetya", "from_user_id": 36217083, "from_user_id_str": "36217083", "from_user_name": "Teguh Prasetya", "geo": null, "id": 148578370576318460, "id_str": "148578370576318464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1135527778/IMG00258-20100929-0835_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1135527778/IMG00258-20100929-0835_normal.jpg", "source": "<a href="http://www.cheapwebsitehostingreviews.net/" rel="nofollow">WebsiteHostingReviews</a>", "text": "RT @HostingJoshua: Wyld About Cloud Computing: Hadoop growth will keep surging, says creator http://t.co/eapiPVev", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:35:59 +0000", "from_user": "TopCloudHosting", "from_user_id": 170814667, "from_user_id_str": "170814667", "from_user_name": "CloudComputing", "geo": null, "id": 148577282334801920, "id_str": "148577282334801921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1090310223/cloud_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1090310223/cloud_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @HostingJoshua Wyld About Cloud Computing: Hadoop growth will keep surging, says creator http://t.co/feSN8kID: Wyld About Cloud C...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:34:58 +0000", "from_user": "HostingJoshua", "from_user_id": 346447098, "from_user_id_str": "346447098", "from_user_name": "Joshua D. Cue", "geo": null, "id": 148577026830368770, "id_str": "148577026830368769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1472223344/10-man-on-laptop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1472223344/10-man-on-laptop_normal.jpg", "source": "<a href="http://www.cheapwebsitehostingreviews.net/" rel="nofollow">WebsiteHostingReviews</a>", "text": "Wyld About Cloud Computing: Hadoop growth will keep surging, says creator http://t.co/eapiPVev", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:32:02 +0000", "from_user": "alessandroleite", "from_user_id": 11503692, "from_user_id_str": "11503692", "from_user_name": "alessandroleite", "geo": null, "id": 148576287521374200, "id_str": "148576287521374209", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1243715520/avatar-photo_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1243715520/avatar-photo_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lucabastos: Par\\u00F3dia da queda agora Hadoop e NoSQL \"The namenode metadata was corrupted when the machine failed\" http://t.co/rNFane6f via @fdelariva", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:25:23 +0000", "from_user": "jaybuifun", "from_user_id": 357128068, "from_user_id_str": "357128068", "from_user_name": "Jayda Bui", "geo": null, "id": 148574617571819520, "id_str": "148574617571819521", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1500871035/1313620082_microsoft_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1500871035/1313620082_microsoft_logo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/tAviUjUc Microsoft updates Azure with SDK and Hadoop preview", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:22:05 +0000", "from_user": "Server_failure", "from_user_id": 305603734, "from_user_id_str": "305603734", "from_user_name": "Server_failure", "geo": null, "id": 148573787607150600, "id_str": "148573787607150592", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1424575579/server_failure_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1424575579/server_failure_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Google\\u3001Oracle\\u3001Microsoft\\u3001IBM\\u306E\\u30D3\\u30C3\\u30B0\\u30C7\\u30FC\\u30BF\\u5BFE\\u5FDC\\u30A2\\u30D7\\u30ED\\u30FC\\u30C1: \\u3044\\u3061\\u65E9\\u304F\\u30AF\\u30E9\\u30A6\\u30C9\\u30D9\\u30FC\\u30B9\\u306EHadoop\\u30A2\\u30D7\\u30EA\\u30B1\\u30FC\\u30B7\\u30E7\\u30F3\\u3092\\u30EA\\u30EA\\u30FC\\u30B9\\u3057\\u305FAmazon\\u3002\\u305D\\u308C\\u306B\\u7D9A\\u304D\\u3001Google\\u3001Oracle\\u3001Microsoft... http://t.co/F64rD3bz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:06:08 +0000", "from_user": "techlivezheng", "from_user_id": 96176159, "from_user_id_str": "96176159", "from_user_name": "Techlive Zheng", "geo": null, "id": 148569769958842370, "id_str": "148569769958842368", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1369496472/ul40312163-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1369496472/ul40312163-2_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @yongsun: \\u3010share\\u3011 \\u5728Hadoop\\u4E0A\\u8FD0\\u884C\\u57FA\\u4E8ERMM\\u4E2D\\u6587\\u5206\\u8BCD\\u7B97\\u6CD5\\u7684MapReduce\\u7A0B\\u5E8F: \\u6211\\u77E5\\u9053\\u8FD9\\u4E2A\\u6587\\u7AE0\\u6807\\u9898\\u5F88\\u201C\\u5B66\\u672F\\u201D\\u5316\\uFF0C\\u5F88\\u4FD7\\uFF0C\\u8BA9\\u4EBA\\u770B\\u8D77\\u6765\\u662F\\u4E00\\u7BC7\\u5F88\\u725BB\\u6216\\u8005\\u5F88\\u88C5\\u903C\\u7684\\u8BBA\\u6587\\uFF01\\u5176\\u5B9E\\u4E0D\\u7136\\uFF0C\\u53EA\\u662F\\u4E00\\u4EFD\\u666E\\u901A\\u2026 http://t.co/kPOsqIa5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:04:15 +0000", "from_user": "wyukawa", "from_user_id": 14138696, "from_user_id_str": "14138696", "from_user_name": "Wataru Yukawa", "geo": null, "id": 148569296614850560, "id_str": "148569296614850560", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1422846484/picture_12_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1422846484/picture_12_bigger_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "\\u30E9\\u30C3\\u30AF\\u8A2D\\u5B9A\\u306F\\u3084\\u3063\\u305F\\u3053\\u3068\\u306A\\u3044\\u306A\\u3042\\uFF1Ehadoop\\u30A2\\u30C9\\u30D9\\u30F3\\u30C8\\u30AB\\u30EC\\u30F3\\u30C0\\u30FC2011 19\\u65E5\\u76EE Hadoop\\u306E\\u30E9\\u30C3\\u30AF\\u8A8D\\u8B58\\u8A2D\\u5B9A\\u90E8\\u5206\\u306E\\u30BD\\u30FC\\u30B9\\u3092\\u8FFD\\u3044\\u304B\\u3051\\u3066\\u307F\\u305F - AOE\\u306E\\u65E5\\u8A18 http://t.co/2OtrJJRE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:54:57 +0000", "from_user": "yutuki_r", "from_user_id": 16252456, "from_user_id_str": "16252456", "from_user_name": "\\u8C4A\\u6708", "geo": null, "id": 148566955161432060, "id_str": "148566955161432064", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1570998126/___normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1570998126/___normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @dentomo: From my CLIP: [Hadoop]hadoop\\u30A2\\u30C9\\u30D9\\u30F3\\u30C8\\u30AB\\u30EC\\u30F3\\u30C0\\u30FC2011 19\\u65E5\\u76EE Hadoop\\u306E\\u30E9\\u30C3\\u30AF\\u8A8D\\u8B58\\u8A2D\\u5B9A\\u90E8\\u5206\\u306E\\u30BD\\u30FC\\u30B9\\u3092\\u8FFD\\u3044\\u304B\\u3051\\u3066\\u307F\\u305F http://t.co/hEhIp8UZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:51:01 +0000", "from_user": "MicrosoftBuzz", "from_user_id": 92041287, "from_user_id_str": "92041287", "from_user_name": "Microsoft news", "geo": null, "id": 148565965372792830, "id_str": "148565965372792832", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/540182132/computer_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/540182132/computer_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft Tries Hadoop on Azure (Apache Developer's Journal) http://t.co/gLLWrogj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:50:24 +0000", "from_user": "don9z", "from_user_id": 25628357, "from_user_id_str": "25628357", "from_user_name": "Chris Zheng | \\u90D1\\u680B", "geo": null, "id": 148565811693490180, "id_str": "148565811693490177", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1456104375/profile.avatar2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1456104375/profile.avatar2_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @yongsun: \\u3010share\\u3011 \\u5728Hadoop\\u4E0A\\u8FD0\\u884C\\u57FA\\u4E8ERMM\\u4E2D\\u6587\\u5206\\u8BCD\\u7B97\\u6CD5\\u7684MapReduce\\u7A0B\\u5E8F: \\u6211\\u77E5\\u9053\\u8FD9\\u4E2A\\u6587\\u7AE0\\u6807\\u9898\\u5F88\\u201C\\u5B66\\u672F\\u201D\\u5316\\uFF0C\\u5F88\\u4FD7\\uFF0C\\u8BA9\\u4EBA\\u770B\\u8D77\\u6765\\u662F\\u4E00\\u7BC7\\u5F88\\u725BB\\u6216\\u8005\\u5F88\\u88C5\\u903C\\u7684\\u8BBA\\u6587\\uFF01\\u5176\\u5B9E\\u4E0D\\u7136\\uFF0C\\u53EA\\u662F\\u4E00\\u4EFD\\u666E\\u901A\\u2026 http://t.co/kPOsqIa5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:37:41 +0000", "from_user": "dentomo", "from_user_id": 71979620, "from_user_id_str": "71979620", "from_user_name": "\\u50B3\\u667A\\u4E4B", "geo": null, "id": 148562610529386500, "id_str": "148562610529386496", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "From my CLIP: [Hadoop]hadoop\\u30A2\\u30C9\\u30D9\\u30F3\\u30C8\\u30AB\\u30EC\\u30F3\\u30C0\\u30FC2011 19\\u65E5\\u76EE Hadoop\\u306E\\u30E9\\u30C3\\u30AF\\u8A8D\\u8B58\\u8A2D\\u5B9A\\u90E8\\u5206\\u306E\\u30BD\\u30FC\\u30B9\\u3092\\u8FFD\\u3044\\u304B\\u3051\\u3066\\u307F\\u305F http://t.co/hEhIp8UZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:32:41 +0000", "from_user": "Connieerv", "from_user_id": 430066696, "from_user_id_str": "430066696", "from_user_name": "Connie Roets", "geo": null, "id": 148561352766664700, "id_str": "148561352766664704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1677559834/fr04v4ndhy_130268751-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677559834/fr04v4ndhy_130268751-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hadoop: The Definitive Guide: Discover how Apache Hadoop can unleash the power of your data. This comprehensive ... http://t.co/zQJROI3f", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:25:10 +0000", "from_user": "ys_said", "from_user_id": 195259964, "from_user_id_str": "195259964", "from_user_name": "Yasser Said", "geo": null, "id": 148559462733578240, "id_str": "148559462733578240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1160062145/ysaid_linkedin_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1160062145/ysaid_linkedin_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Five #BigData predictions for 2012: More powerful and expressive tools for analysis...Streaming data... dlvr.it/116XkC #Hadoop #in", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:19:01 +0000", "from_user": "followbotlist", "from_user_id": 420104059, "from_user_id_str": "420104059", "from_user_name": "\\u3076\\u308D\\u3063\\u304F\\u308A\\u3059\\u3068", "geo": null, "id": 148557912766300160, "id_str": "148557912766300160", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twittbot.net/" rel="nofollow">twittbot.net</a>", "text": "C\\u8A00\\u8A9E/C++/C#/F#/PHP/Perl/Ruby/Python/Lisp/Prolog/ML/Haskell/HTML5/VB/Basic/\\u30A6\\u30A7\\u30D6\\u30C7\\u30B6\\u30A4\\u30F3/\\u30EC\\u30F3\\u30BF\\u30EB\\u30B5\\u30FC\\u30D0/CGI/\\u30BB\\u30AD\\u30E5\\u30EA\\u30C6\\u30A3/FLASH/Web/\\u30BD\\u30FC\\u30B7\\u30E3\\u30EB/SNS/\\u30B0\\u30EB\\u30FC\\u30D7\\u30A6\\u30A7\\u30A2/Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:14:16 +0000", "from_user": "bgnori", "from_user_id": 23901870, "from_user_id_str": "23901870", "from_user_name": "Nori", "geo": null, "id": 148556717540655100, "id_str": "148556717540655105", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/93610285/Flowers002_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/93610285/Flowers002_normal.JPG", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "\"\\u2015\\u30DA\\u30BF\\u30D0\\u30A4\\u30C8\\u3084\\u30A8\\u30AF\\u30B5\\u30D0\\u30A4\\u30C8\\u3068\\u3044\\u3063\\u305F\\u30AF\\u30E9\\u30B9\\u306E\\u30C7\\u30FC\\u30BF\\u304C\\u666E\\u901A\\u306B\\u306A\\u3063\\u3066\\u304F\\u308B\\u3068\\u3001Hadoop\\u306E\\u3088\\u3046\\u306A\\u5206\\u6563\\u51E6\\u7406\\u7CFB\\u30B7\\u30B9\\u30C6\\u30E0\\u306E\\u91CD\\u8981\\u6027\\u304C\\u307E\\u3059\\u307E\\u3059\\u9AD8\\u307E\\u308A\\u305D\\u3046\\u306A\\u6C17\\u304C\\u3057\\u307E\\u3059\\u3002...\" http://t.co/ngwYyk0E", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:10:53 +0000", "from_user": "bigdata_1topi", "from_user_id": 397130113, "from_user_id_str": "397130113", "from_user_name": "ONETOPI\\u300C\\u30D3\\u30C3\\u30B0\\u30C7\\u30FC\\u30BF\\u300D", "geo": null, "id": 148555865715257340, "id_str": "148555865715257344", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1605698365/OT_icon_111025_BIG2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1605698365/OT_icon_111025_BIG2_normal.jpg", "source": "<a href="http://www.modiphi.com" rel="nofollow">MODIPHI SM3</a>", "text": "Windows Azure\\u3001Hadoop\\u3084Node.js\\u306A\\u3069\\u6709\\u540DOSS\\u3092\\u30B5\\u30DD\\u30FC\\u30C8 | \\u30A8\\u30F3\\u30BF\\u30FC\\u30D7\\u30E9\\u30A4\\u30BA | \\u30DE\\u30A4\\u30CA\\u30D3\\u30CB\\u30E5\\u30FC\\u30B9 http://t.co/jAtMEySf\\n #1tp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:07:45 +0000", "from_user": "andriumota", "from_user_id": 434877991, "from_user_id_str": "434877991", "from_user_name": "andriumota", "geo": null, "id": 148555078536671230, "id_str": "148555078536671232", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690169671/galleryPhoto42371_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690169671/galleryPhoto42371_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @bifacil: Excelente introducci\\u00F1on a Hadoop en proyectos BI http://t.co/helO85Nq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:36:05 +0000", "from_user": "benjguin", "from_user_id": 101798644, "from_user_id_str": "101798644", "from_user_name": "B. Guineberti\\u00E8re", "geo": null, "id": 148547108285317120, "id_str": "148547108285317121", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/615595556/BG_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/615595556/BG_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Availability of Community Technology Preview (CTP) of Hadoop based Service on Windows #Azure #BigData http://t.co/PAx6VYJf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:31:57 +0000", "from_user": "josephmisiti", "from_user_id": 58631564, "from_user_id_str": "58631564", "from_user_name": "joseph misiti", "geo": null, "id": 148546069385576450, "id_str": "148546069385576448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1473473302/Screen_shot_2011-08-01_at_9.19.42_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1473473302/Screen_shot_2011-08-01_at_9.19.42_PM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:30:48 +0000", "from_user": "john_m_keenan", "from_user_id": 16687006, "from_user_id_str": "16687006", "from_user_name": "john_m_keenan", "geo": null, "id": 148545781316591600, "id_str": "148545781316591616", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/137628465/headshot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/137628465/headshot_normal.jpg", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Java/Hadoop - Senior/Manager - Data Engineering in New York, NY http://t.co/mMTMqm81 #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:29:14 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 148545386229927940, "id_str": "148545386229927937", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hadoop enables distributedbig data processing across clouds http://t.co/5XZdWeR5 #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:28:54 +0000", "from_user": "itrecommend", "from_user_id": 291647412, "from_user_id_str": "291647412", "from_user_name": "IT\\u6280\\u672F\\u63A8\\u8350", "geo": null, "id": 148545303371452400, "id_str": "148545303371452416", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "\\u5728Hadoop\\u4E0A\\u8FD0\\u884C\\u57FA\\u4E8ERMM\\u4E2D\\u6587\\u5206\\u8BCD\\u7B97\\u6CD5\\u7684MapReduce\\u7A0B\\u5E8F http://t.co/afB67tel", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:26:07 +0000", "from_user": "phunt", "from_user_id": 12370372, "from_user_id_str": "12370372", "from_user_name": "Patrick Hunt", "geo": null, "id": 148544602700382200, "id_str": "148544602700382209", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/80884383/phunt3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/80884383/phunt3_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @robdielemans: Great: Three Xebia Consulants are Certfied #Cloudera Developers in Apache Hadoop....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:23:33 +0000", "from_user": "eBay_Careers", "from_user_id": 364537814, "from_user_id_str": "364537814", "from_user_name": "David Sneed", "geo": null, "id": 148543956177784830, "id_str": "148543956177784834", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1543608610/ebay1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543608610/ebay1_normal.jpg", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Job: Manager Hadoop Operations in San Jose, CA http://t.co/dBLZa2X7 #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:17:09 +0000", "from_user": "JavTH", "from_user_id": 26008317, "from_user_id_str": "26008317", "from_user_name": "Javier Torrenteras", "geo": null, "id": 148542344839434240, "id_str": "148542344839434240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1134728293/Foto_Perfil_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1134728293/Foto_Perfil_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @MicrosoftBI: I uploaded a @YouTube video http://t.co/WWiuQpFL Introduction to the Hadoop on Azure Interactive Hive Console", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:16:54 +0000", "from_user": "markswall", "from_user_id": 19688728, "from_user_id_str": "19688728", "from_user_name": "Mark Wall", "geo": null, "id": 148542280259743740, "id_str": "148542280259743744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676652683/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676652683/Untitled_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hadoop enables distributedbig data processing across clouds http://t.co/jwWa9xa4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:12:56 +0000", "from_user": "kernel023", "from_user_id": 164074432, "from_user_id_str": "164074432", "from_user_name": "kernel023", "geo": null, "id": 148541282061525000, "id_str": "148541282061524992", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1075719709/screenshots_small_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1075719709/screenshots_small_normal.png", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "RT @shiumachi: \"Hadoop\\u306F\\u3053\\u308C\\u3060\\u3051\\u5E83\\u304F\\u4F7F\\u308F\\u308C\\u3066\\u3044\\u308B\\u306B\\u3082\\u304B\\u304B\\u308F\\u3089\\u305A\\u3001\\u3069\\u3046\\u3082\\u516C\\u5F0F\\u306E\\u30C9\\u30AD\\u30E5\\u30E1\\u30F3\\u30C8\\u306F\\u60C5\\u5831\\u4E0D\\u8DB3\\u306E\\u3088\\u3046\\u306A\\u6C17\\u304C\\u3057\\u307E\\u3059\"JIRA\\u306B\\u300C\\u3053\\u306E\\u30C9\\u30AD\\u30E5\\u30E1\\u30F3\\u30C8\\u306D\\u30FC\\u3088\\u300D\\u3068\\u3044\\u3046\\u30C1\\u30B1\\u30C3\\u30C8\\u30AA\\u30FC\\u30D7\\u30F3\\u2192html\\u30DA\\u30FC\\u30B8\\u8FFD\\u52A0\\u306E\\u30D1\\u30C3\\u30C1\\u6295\\u7A3F\\u3001\\u3067\\u304A\\u9858\\u3044\\u3057\\u307E\\u3059 / \\u201Chadoo\\u2026\\u201D http://t.co/p6tgnvwq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:12:16 +0000", "from_user": "boot_vmlinuz", "from_user_id": 278964766, "from_user_id_str": "278964766", "from_user_name": "a black cat", "geo": null, "id": 148541116235530240, "id_str": "148541116235530240", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1307677079/lKoO9JNx_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1307677079/lKoO9JNx_normal", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "AKB48\\u3068Hadoop\\u8E8D\\u9032\\u3002\\u5927\\u898F\\u6A21\\u5206\\u6563\\u51E6\\u7406\\u6642\\u4EE3\\u306E\\u5230\\u6765\\u304B\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:12:15 +0000", "from_user": "cocoatomo", "from_user_id": 7590702, "from_user_id_str": "7590702", "from_user_name": "tomo", "geo": null, "id": 148541113567936500, "id_str": "148541113567936513", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1203705270/cbef4ed7-31d4-47a7-9e71-6316eead3ae4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1203705270/cbef4ed7-31d4-47a7-9e71-6316eead3ae4_normal.png", "source": "<a href="http://www.zusaar.com/" rel="nofollow">Zusaar</a>", "text": "RT @aoetk: 19\\u65E5\\u76EE\\u66F8\\u304D\\u307E\\u3057\\u305F\\u3002\\u30E9\\u30C3\\u30AF\\u8A8D\\u8B58\\u8A2D\\u5B9A\\u90E8\\u5206\\u306E\\u30BD\\u30FC\\u30B9\\u3092\\u8FFD\\u3044\\u304B\\u3051\\u305F\\u3068\\u304D\\u306E\\u30E1\\u30E2\\u3067\\u3059\\u3002 http://t.co/lqPAdKXb / hadoop\\u30A2\\u30C9\\u30D9\\u30F3\\u30C8\\u30AB\\u30EC\\u30F3\\u30C0\\u30FC2011 http://t.co/mLoAhsZW #zusaar", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:00:09 +0000", "from_user": "lucabastos", "from_user_id": 14911350, "from_user_id_str": "14911350", "from_user_name": "lucabastos", "geo": null, "id": 148538065453973500, "id_str": "148538065453973504", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1113432152/DevInSampa2010_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1113432152/DevInSampa2010_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Par\\u00F3dia da queda agora Hadoop e NoSQL \"The namenode metadata was corrupted when the machine failed\" http://t.co/rNFane6f via @fdelariva", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:51:26 +0000", "from_user": "danbradford", "from_user_id": 15704718, "from_user_id_str": "15704718", "from_user_name": "danbradford", "geo": null, "id": 148535872894140400, "id_str": "148535872894140416", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/78813003/10003_m_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/78813003/10003_m_normal.gif", "source": "<a href="http://jobvite.com" rel="nofollow">Jobvite</a>", "text": "Hortonworks is looking for: Hadoop MapReduce Software Engineer\\nhttp://t.co/FC4tq7CL #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:48:34 +0000", "from_user": "JonatBakerOther", "from_user_id": 352977860, "from_user_id_str": "352977860", "from_user_name": "Jonathon Baker", "geo": null, "id": 148535152438558720, "id_str": "148535152438558721", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1489870218/1313061302_vex-ccr_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1489870218/1313061302_vex-ccr_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/rHXfmCHf Hadoop Meets JobServer - Big Data Job Scheduling - http://t.co/zHR8uvuJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:45:58 +0000", "from_user": "sidux_ev", "from_user_id": 216424978, "from_user_id_str": "216424978", "from_user_name": "sidux e.V.", "geo": null, "id": 148534498609475600, "id_str": "148534498609475584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1171652995/fb-ev-logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1171652995/fb-ev-logo_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "The Apache\\u2122 Hadoop\\u2122 project develops open-source software for reliable, scalable, distributed computing. http://t.co/eDEzHr91", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:42:11 +0000", "from_user": "LizbethChanMone", "from_user_id": 360533716, "from_user_id_str": "360533716", "from_user_name": "Lizbeth Chan", "geo": null, "id": 148533544153661440, "id_str": "148533544153661441", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1509658219/1314101584_open_adoption101_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509658219/1314101584_open_adoption101_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Strata Week: New open-data initiatives in Canada and the UK - Open data from StatsCan and Whitehall, Dell open source http://t.co/QVICPisG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:41:10 +0000", "from_user": "danilo_dominici", "from_user_id": 204376797, "from_user_id_str": "204376797", "from_user_name": "Danilo Dominici", "geo": null, "id": 148533291643977730, "id_str": "148533291643977728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1213510506/dd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1213510506/dd_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @SQLServer: CTP of #Hadoop service for #WindowsAzure avail now! Gain insights w/ #MSBI tools! http://t.co/eZEZx0Z5 #bigdata #sqlserver", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:38:02 +0000", "from_user": "djdoran", "from_user_id": 21696879, "from_user_id_str": "21696879", "from_user_name": "Dave Doran", "geo": null, "id": 148532499448987650, "id_str": "148532499448987648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/615744626/waterfall_desktop_background-1600x1200_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/615744626/waterfall_desktop_background-1600x1200_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "SlideShare presentation : Hadoop and Machine Learning http://t.co/LzbmBhcW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:37:13 +0000", "from_user": "NunoGodinho", "from_user_id": 9971382, "from_user_id_str": "9971382", "from_user_name": "Nuno Godinho", "geo": null, "id": 148532293420593150, "id_str": "148532293420593152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/831407287/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/831407287/twitterProfilePhoto_normal.jpg", "source": "<a href="http://www.WindowsPhone.com/" rel="nofollow">WindowsLive</a>", "text": "New #Azure Release Supports Open Source Libraries #Node.js, #MongoDB, #Hadoop, #Solr, #Memcached http://t.co/FxcNEV4t", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:27:13 +0000", "from_user": "karahiyo", "from_user_id": 165488854, "from_user_id_str": "165488854", "from_user_name": "\\u304B\\u3089\\u3072\\u3088", "geo": null, "id": 148529779916808200, "id_str": "148529779916808192", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1117725285/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1117725285/image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\\u306F\\u3084\\u308F\\u304B\\u308AHadoop http://t.co/TuiiUQ9z", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:21:14 +0000", "from_user": "juanjoc", "from_user_id": 15924412, "from_user_id_str": "15924412", "from_user_name": "Juanjo Carmena", "geo": null, "id": 148528272563642370, "id_str": "148528272563642368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/58615733/FotoJJ_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/58615733/FotoJJ_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @davidsb: node, hadoop, mongo,java... ^^ RT @OpenAtMicrosoft: Microsoft announces Open Source updates to Windows Azure http://t.co/GkuqbusF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:18:56 +0000", "from_user": "esammer", "from_user_id": 9264352, "from_user_id_str": "9264352", "from_user_name": "Eric Sammer", "geo": null, "id": 148527696190779400, "id_str": "148527696190779392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/260959723/Photo_4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/260959723/Photo_4_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@vikasdp building indexes via MR is suboptimal (i.e. index update lag). better to fan out updates to both #hadoop and search infra.", "to_user": "vikasdp", "to_user_id": 152682018, "to_user_id_str": "152682018", "to_user_name": "Vikas Pandya", "in_reply_to_status_id": 148508758635589630, "in_reply_to_status_id_str": "148508758635589632"}, +{"created_at": "Sun, 18 Dec 2011 22:13:14 +0000", "from_user": "esammer", "from_user_id": 9264352, "from_user_id_str": "9264352", "from_user_name": "Eric Sammer", "geo": null, "id": 148526259553570800, "id_str": "148526259553570816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/260959723/Photo_4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/260959723/Photo_4_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @robdielemans: Great: Three Xebia Consulants are Certfied #Cloudera Developers in Apache Hadoop....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:09:04 +0000", "from_user": "cccc4d", "from_user_id": 334495560, "from_user_id_str": "334495560", "from_user_name": "Milton Colwell", "geo": null, "id": 148525210621063170, "id_str": "148525210621063168", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1471512767/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1471512767/profile_normal.png", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "\\u201CWindows Azure\\u3001Hadoop\\u3084Node.js\\u306A\\u3069\\u6709\\u540DOSS\\u3092\\u30B5\\u30DD\\u30FC\\u30C8 | \\u30A8\\u30F3\\u30BF\\u30FC\\u30D7\\u30E9\\u30A4\\u30BA | \\u30DE\\u30A4\\u30CA\\u30D3\\u30CB\\u30E5\\u30FC\\u30B9\\u201D http://t.co/URqJl1yd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:07:57 +0000", "from_user": "philipp_riemer", "from_user_id": 384276534, "from_user_id_str": "384276534", "from_user_name": "Philipp Riemer", "geo": null, "id": 148524929103577100, "id_str": "148524929103577088", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1571390293/photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1571390293/photo_normal.jpg", "source": "Zite Personalized Magazine", "text": "RT @HadoopNews: #Hadoop and Machine Learning http://t.co/hDoLA0kT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:00:09 +0000", "from_user": "robdielemans", "from_user_id": 14413229, "from_user_id_str": "14413229", "from_user_name": "Rob Dielemans", "geo": null, "id": 148522966609702900, "id_str": "148522966609702912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1678550926/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678550926/image_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "Great: Three Xebia Consulants are Certfied #Cloudera Developers in Apache Hadoop....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:44:06 +0000", "from_user": "spurpura", "from_user_id": 15138039, "from_user_id_str": "15138039", "from_user_name": "Stephen Purpura", "geo": null, "id": 148518927985672200, "id_str": "148518927985672193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/140858098/myHarvardpic_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/140858098/myHarvardpic_normal.JPG", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "I've already switched to Pig for data analytics. @whymicrosoft Azure Hadoop needs to support this.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:29:21 +0000", "from_user": "fatmusicbooster", "from_user_id": 157258048, "from_user_id_str": "157258048", "from_user_name": "Fatmusicbooster", "geo": null, "id": 148515216777424900, "id_str": "148515216777424896", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1660246415/2003-1-04-1a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660246415/2003-1-04-1a_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Microsoft Azure aloja Hadoop y otras aplicaciones de c\\u00F3digo abierto http://t.co/yJUuNyKD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:25:17 +0000", "from_user": "JonatBakerOther", "from_user_id": 352977860, "from_user_id_str": "352977860", "from_user_name": "Jonathon Baker", "geo": null, "id": 148514191035203600, "id_str": "148514191035203585", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1489870218/1313061302_vex-ccr_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1489870218/1313061302_vex-ccr_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Hadoop Meets JobServer - Big Data Job Scheduling - http://t.co/zHR8uvuJ http://t.co/rHXfmCHf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:20:48 +0000", "from_user": "conor_hayes", "from_user_id": 113016665, "from_user_id_str": "113016665", "from_user_name": "Conor Hayes", "geo": null, "id": 148513064210280450, "id_str": "148513064210280448", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1194380781/794159000aa547400691484473987629ef5c741c05e8777411d2724c72cd79e656ca8077_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1194380781/794159000aa547400691484473987629ef5c741c05e8777411d2724c72cd79e656ca8077_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ChrisDiehl: Modeling with Hadoop - KDD 2011 Tutorial - http://t.co/NfMNacWW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:20:01 +0000", "from_user": "JMcCormac", "from_user_id": 14227029, "from_user_id_str": "14227029", "from_user_name": "John McCormac", "geo": null, "id": 148512867203817470, "id_str": "148512867203817472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/224551153/hs1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/224551153/hs1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Got to start looking at Hadoop. Some combined historical tables in MySQL tables have about 1 billion rows of data.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:11:25 +0000", "from_user": "_marony", "from_user_id": 375382488, "from_user_id_str": "375382488", "from_user_name": "\\u307E\\u308D@\\u95A2\\u6570\\u578B\\u8A00\\u8A9E\\u52C9\\u5F37\\u4E2D", "geo": null, "id": 148510704310292480, "id_str": "148510704310292480", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1551453196/Twitter_____normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1551453196/Twitter_____normal.jpg", "source": "<a href="http://www.soicha.com" rel="nofollow">SOICHA</a>", "text": "\\u4ECA\\u65E5\\u306F\\u4F1A\\u793E\\u7740\\u3044\\u305F\\u3089\\u30D5\\u30E9\\u30F3\\u30AF\\u30EA\\u30F3\\u30D7\\u30E9\\u30F3\\u30CA\\u30FC\\u3092\\u30CD\\u30C3\\u30C8\\u3067\\u8CB7\\u3063\\u3066\\u3001\\u4ECA\\u632F\\u3089\\u308C\\u3066\\u308B\\u4ED5\\u4E8B\\u30921\\u6642\\u9593\\u304F\\u3089\\u3044\\u3067\\u3053\\u306A\\u3057\\u305F\\u3089Hadoop\\u3067\\u4F55\\u304B\\u30B5\\u30F3\\u30D7\\u30EB\\u3092\\u4F5C\\u308D\\u3046\\u3002\\u96F0\\u56F2\\u6C17\\u3092\\u77E5\\u3063\\u3066\\u3082\\u3089\\u3046\\u305F\\u3081\\u306B\\u306A\\u3093\\u304B\\u3044\\u3044\\u30B5\\u30F3\\u30D7\\u30EB\\u3092\\u8003\\u3048\\u306A\\u3051\\u308C\\u3070\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:09:44 +0000", "from_user": "fertapric", "from_user_id": 293662243, "from_user_id_str": "293662243", "from_user_name": "Fernando Tapia Rico", "geo": null, "id": 148510277648924670, "id_str": "148510277648924672", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1473101037/267716_1829753144543_1261796980_31489223_4599059_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1473101037/267716_1829753144543_1261796980_31489223_4599059_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Siempre has querido saber como funciona un HDFS Hadoop Distributed File Sytem? con este comic lo ver\\u00E1s claro http://t.co/ltKvAmD1 #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:09:36 +0000", "from_user": "shiumachi", "from_user_id": 11370182, "from_user_id_str": "11370182", "from_user_name": "Sho Shimauchi", "geo": null, "id": 148510246229393400, "id_str": "148510246229393410", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1112990537/2006-06-04_002_bigger_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1112990537/2006-06-04_002_bigger_normal.png", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "\"Hadoop\\u306F\\u3053\\u308C\\u3060\\u3051\\u5E83\\u304F\\u4F7F\\u308F\\u308C\\u3066\\u3044\\u308B\\u306B\\u3082\\u304B\\u304B\\u308F\\u3089\\u305A\\u3001\\u3069\\u3046\\u3082\\u516C\\u5F0F\\u306E\\u30C9\\u30AD\\u30E5\\u30E1\\u30F3\\u30C8\\u306F\\u60C5\\u5831\\u4E0D\\u8DB3\\u306E\\u3088\\u3046\\u306A\\u6C17\\u304C\\u3057\\u307E\\u3059\"JIRA\\u306B\\u300C\\u3053\\u306E\\u30C9\\u30AD\\u30E5\\u30E1\\u30F3\\u30C8\\u306D\\u30FC\\u3088\\u300D\\u3068\\u3044\\u3046\\u30C1\\u30B1\\u30C3\\u30C8\\u30AA\\u30FC\\u30D7\\u30F3\\u2192html\\u30DA\\u30FC\\u30B8\\u8FFD\\u52A0\\u306E\\u30D1\\u30C3\\u30C1\\u6295\\u7A3F\\u3001\\u3067\\u304A\\u9858\\u3044\\u3057\\u307E\\u3059 / \\u201Chadoo\\u2026\\u201D http://t.co/p6tgnvwq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:07:11 +0000", "from_user": "commandeura", "from_user_id": 223416203, "from_user_id_str": "223416203", "from_user_name": "Arnoud Commandeur", "geo": null, "id": 148509639871434750, "id_str": "148509639871434755", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1256010487/Naamloos_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1256010487/Naamloos_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @MicrosoftBI: I uploaded a @YouTube video http://t.co/WWiuQpFL Introduction to the Hadoop on Azure Interactive Hive Console", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:03:41 +0000", "from_user": "vikasdp", "from_user_id": 152682018, "from_user_id_str": "152682018", "from_user_name": "Vikas Pandya", "geo": null, "id": 148508758635589630, "id_str": "148508758635589632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1140915733/VP_twitter_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1140915733/VP_twitter_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@esammer @LucidImagineer @SolrLucene @shalinmangar looking for successful integration references/papers of Hadoop + Solr. Are there any?", "to_user": "esammer", "to_user_id": 9264352, "to_user_id_str": "9264352", "to_user_name": "Eric Sammer"}, +{"created_at": "Sun, 18 Dec 2011 21:01:25 +0000", "from_user": "pcis", "from_user_id": 17786911, "from_user_id_str": "17786911", "from_user_name": "PCIS", "geo": null, "id": 148508186637377540, "id_str": "148508186637377536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/507376974/pcis_yellow_2.jpeg_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/507376974/pcis_yellow_2.jpeg_normal.gif", "source": "<a href="http://www.prosyna.com" rel="nofollow">Prosyna</a>", "text": "#cloud Microsoft Tries Hadoop on Azure | Cloud Computing Journal - Maureen O'Gara the most read technology repo ... http://t.co/gAcOeN1G", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:00:48 +0000", "from_user": "venkat_sahasra", "from_user_id": 321575837, "from_user_id_str": "321575837", "from_user_name": "Venkat Prasad", "geo": null, "id": 148508031456509950, "id_str": "148508031456509952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1406743308/logo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1406743308/logo_normal.gif", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Looking for a Hadoop Training Program in Quincy, MA http://t.co/ssNfR1kj #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:55:18 +0000", "from_user": "agazzarini", "from_user_id": 265836752, "from_user_id_str": "265836752", "from_user_name": "Andrea Gazzarini", "geo": null, "id": 148506648690966530, "id_str": "148506648690966528", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1271944422/a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1271944422/a_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@ljannace devi a-s-s-o-l-u-t-a-m-e-n-t-e guardarti hadoop...tu ci crei qualche mostro", "to_user": "ljannace", "to_user_id": 350176280, "to_user_id_str": "350176280", "to_user_name": "Luca Jannace"}, +{"created_at": "Sun, 18 Dec 2011 20:52:39 +0000", "from_user": "seattledawson", "from_user_id": 72942381, "from_user_id_str": "72942381", "from_user_name": "Margaret Dawson", "geo": null, "id": 148505982316707840, "id_str": "148505982316707840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/406749705/P6060007_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/406749705/P6060007_normal.JPG", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @jameskobielus: Year ahead in #BigData ? #Hadoop deployments grow 10x. Graph DB mania 4 influence mining. Cloud #EDW goes mainstream. Data science in vogue", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:38:38 +0000", "from_user": "jasonbaldridge", "from_user_id": 119837224, "from_user_id_str": "119837224", "from_user_name": "Jason Baldridge", "geo": null, "id": 148502453401288700, "id_str": "148502453401288704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1269490811/jason_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1269490811/jason_normal.jpg", "source": "<a href="http://www.slideshare.net/" rel="nofollow">Slideshare</a>", "text": "RT @slideshare: 'Hadoop and Machine Learning' is featured on our homepage. http://t.co/lkuEIFPn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:36:42 +0000", "from_user": "AltaModaTech", "from_user_id": 208734645, "from_user_id_str": "208734645", "from_user_name": "AltaModa Tech.", "geo": null, "id": 148501966308380670, "id_str": "148501966308380673", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1153738147/Duomo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1153738147/Duomo_normal.JPG", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @stojanovic: Carl Nolan blog on using #Hadoop on #Azure service and its #JavaScript shell for data visualization: http://t.co/5ida1s9s", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:35:18 +0000", "from_user": "diegosevilla", "from_user_id": 14180784, "from_user_id_str": "14180784", "from_user_name": "Diego Sevilla Ruiz", "geo": null, "id": 148501614607613950, "id_str": "148501614607613953", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1447462735/48947_871895296_3078648_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1447462735/48947_871895296_3078648_q_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @domnikl: map reduce in ~5 minutes http://t.co/1IdXDrD4 #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:20:48 +0000", "from_user": "jameskobielus", "from_user_id": 14072398, "from_user_id_str": "14072398", "from_user_name": "jameskobielus", "geo": null, "id": 148497965017874430, "id_str": "148497965017874433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1398007310/James_Kobielus_official_forrester_photo_june_2011_cropped_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1398007310/James_Kobielus_official_forrester_photo_june_2011_cropped_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Year ahead in #BigData ? #Hadoop deployments grow 10x. Graph DB mania 4 influence mining. Cloud #EDW goes mainstream. Data science in vogue", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:20:29 +0000", "from_user": "OttmarAmann", "from_user_id": 237624488, "from_user_id_str": "237624488", "from_user_name": "Ottmar Amann", "geo": null, "id": 148497883853889540, "id_str": "148497883853889537", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1261125785/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1261125785/image_normal.jpg", "source": "<a href="http://www.visibli.com" rel="nofollow">Visibli</a>", "text": "RT @commoncrawl: MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl by @stevesalevan http://t.co/9ylVwsSo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:19:07 +0000", "from_user": "mattwalters5", "from_user_id": 34128038, "from_user_id_str": "34128038", "from_user_name": "Matt Walters", "geo": null, "id": 148497540206178300, "id_str": "148497540206178304", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1460915273/c250f0430c58d68fe3d11f1061acef29_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1460915273/c250f0430c58d68fe3d11f1061acef29_normal.png", "source": "<a href="http://shelby.tv" rel="nofollow">ShelbyTV</a>", "text": "Wicked vid of hadoop via javascript on Azure http://t.co/cg81WL74", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:17:09 +0000", "from_user": "Geoffmuse", "from_user_id": 35592012, "from_user_id_str": "35592012", "from_user_name": "Geoff Barker", "geo": null, "id": 148497046431735800, "id_str": "148497046431735809", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/524126534/gray184809_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/524126534/gray184809_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT Using #Hadoop on Azure JS Console for Data Visualizations http://t.co/iYsPGsUT @HadoopNews", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:16:37 +0000", "from_user": "pmolinam", "from_user_id": 156225514, "from_user_id_str": "156225514", "from_user_name": "Pedro J. Molina", "geo": null, "id": 148496911740047360, "id_str": "148496911740047361", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1109269729/3b35f03f-866e-4105-afaa-c51b7c2e2363_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1109269729/3b35f03f-866e-4105-afaa-c51b7c2e2363_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @domnikl: map reduce in ~5 minutes http://t.co/1IdXDrD4 #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:15:58 +0000", "from_user": "pharkmillups", "from_user_id": 29777587, "from_user_id_str": "29777587", "from_user_name": "Mark Phillips", "geo": null, "id": 148496747482722300, "id_str": "148496747482722304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1622470871/pharksplosion_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622470871/pharksplosion_bigger_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@tnm replacing it with Hadoop?", "to_user": "tnm", "to_user_id": 77009486, "to_user_id_str": "77009486", "to_user_name": "Ted Nyman", "in_reply_to_status_id": 148496530444255230, "in_reply_to_status_id_str": "148496530444255232"}, +{"created_at": "Sun, 18 Dec 2011 20:12:15 +0000", "from_user": "efoncubierta", "from_user_id": 113486984, "from_user_id_str": "113486984", "from_user_name": "Ezequiel Foncubierta", "geo": null, "id": 148495813058904060, "id_str": "148495813058904064", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1234094541/che_foto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1234094541/che_foto_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @domnikl: map reduce in ~5 minutes http://t.co/1IdXDrD4 #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:10:47 +0000", "from_user": "TechnoMile", "from_user_id": 89779407, "from_user_id_str": "89779407", "from_user_name": "TechnoMile LLC", "geo": null, "id": 148495443909812220, "id_str": "148495443909812225", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1187113101/techomile_normal_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1187113101/techomile_normal_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure - SYS-CON Media (press release) http://t.co/mXx3RIS7http://twit... http://t.co/EKBUR7oL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:08:59 +0000", "from_user": "HadoopNews", "from_user_id": 251816878, "from_user_id_str": "251816878", "from_user_name": "John Ching", "geo": null, "id": 148494989553446900, "id_str": "148494989553446912", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1244235692/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1244235692/images_normal.jpg", "source": "Zite Personalized Magazine", "text": "#Hadoop and Machine Learning http://t.co/hDoLA0kT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:08:58 +0000", "from_user": "ajlopez", "from_user_id": 14567622, "from_user_id_str": "14567622", "from_user_name": "ajlopez", "geo": null, "id": 148494986453856260, "id_str": "148494986453856257", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/53769404/spiral_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/53769404/spiral_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @domnikl: map reduce in ~5 minutes http://t.co/1IdXDrD4 #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:08:01 +0000", "from_user": "domnikl", "from_user_id": 39023394, "from_user_id_str": "39023394", "from_user_name": "Dominik Liebler", "geo": null, "id": 148494746275430400, "id_str": "148494746275430401", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1662889392/316781_311993388819884_100000276778047_1195762_1888202128_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662889392/316781_311993388819884_100000276778047_1195762_1888202128_n_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "map reduce in ~5 minutes http://t.co/1IdXDrD4 #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:06:54 +0000", "from_user": "HadoopNews", "from_user_id": 251816878, "from_user_id_str": "251816878", "from_user_name": "John Ching", "geo": null, "id": 148494466150432770, "id_str": "148494466150432768", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1244235692/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1244235692/images_normal.jpg", "source": "Zite Personalized Magazine", "text": "Using #Hadoop on Azure JS Console for Data Visualizations http://t.co/GAm4BbWb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:02:29 +0000", "from_user": "GoodZipprfour", "from_user_id": 265812516, "from_user_id_str": "265812516", "from_user_name": "GoodZipprfour", "geo": null, "id": 148493357583306750, "id_str": "148493357583306752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1277063559/avatar-137-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1277063559/avatar-137-2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure - SYS-CON Media (press release) http://t.co/mXx3RIS7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:00:15 +0000", "from_user": "NunoGodinho", "from_user_id": 9971382, "from_user_id_str": "9971382", "from_user_name": "Nuno Godinho", "geo": null, "id": 148492793738838000, "id_str": "148492793738838016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/831407287/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/831407287/twitterProfilePhoto_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "RT @mikepluta: Windows Azure Adds Node.js Support, Hadoop Preview - ReadWriteCloud http://t.co/hMkHpxtS #hadoop #azure", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:00:15 +0000", "from_user": "NunoGodinho", "from_user_id": 9971382, "from_user_id_str": "9971382", "from_user_name": "Nuno Godinho", "geo": null, "id": 148492793462001660, "id_str": "148492793462001665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/831407287/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/831407287/twitterProfilePhoto_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @stojanovic: Carl Nolan has a blog on using our #Hadoop on #Azure service and its #JavaScript shell for data visualization: http://t.co/qZeEO2EH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:48:55 +0000", "from_user": "jangelfdez", "from_user_id": 437359209, "from_user_id_str": "437359209", "from_user_name": "Jos\\u00E9 \\u00C1ngel Fern\\u00E1ndez", "geo": null, "id": 148489941733752830, "id_str": "148489941733752832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694406528/foto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694406528/foto_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @davidsb: node, hadoop, mongo,java... ^^ RT @OpenAtMicrosoft: Microsoft announces Open Source updates to Windows Azure http://t.co/GkuqbusF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:48:21 +0000", "from_user": "nzhiltsov", "from_user_id": 153506820, "from_user_id_str": "153506820", "from_user_name": "Nikita Zhiltsov", "geo": null, "id": 148489797554536450, "id_str": "148489797554536449", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675725290/tw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675725290/tw_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nicolastorzec: #Hadoop and Machine Learning, by Josh wills (@Josh_Wills), Tom Pierce & Jeff Hammerbach from Cloudera. Lot of links... http://t.co/25pzL3QR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:47:01 +0000", "from_user": "jcgm1978", "from_user_id": 120030580, "from_user_id_str": "120030580", "from_user_name": "Juan Carlos Gonz\\u00E1lez", "geo": null, "id": 148489461330755600, "id_str": "148489461330755585", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/733553691/Jc_Gonzalez_Foto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/733553691/Jc_Gonzalez_Foto_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @davidsb: node, hadoop, mongo,java... ^^ RT @OpenAtMicrosoft: Microsoft announces Open Source updates to Windows Azure http://t.co/GkuqbusF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:46:38 +0000", "from_user": "mikepluta", "from_user_id": 15150700, "from_user_id_str": "15150700", "from_user_name": "Mike Pluta", "geo": null, "id": 148489367432871940, "id_str": "148489367432871936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1584807716/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584807716/image_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "Windows Azure Adds Node.js Support, Hadoop Preview - ReadWriteCloud http://t.co/hMkHpxtS #hadoop #azure", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:44:51 +0000", "from_user": "stojanovic", "from_user_id": 4242501, "from_user_id_str": "4242501", "from_user_name": "Alexander Stojanovic", "geo": null, "id": 148488916704567300, "id_str": "148488916704567296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1614552290/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1614552290/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Carl Nolan has a blog on using our #Hadoop on #Azure service and its #JavaScript shell for data visualization: http://t.co/qZeEO2EH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:41:56 +0000", "from_user": "holdecon", "from_user_id": 323906804, "from_user_id_str": "323906804", "from_user_name": "Holden Conkle", "geo": null, "id": 148488183976435700, "id_str": "148488183976435713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1412790189/1309021322_image5_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1412790189/1309021322_image5_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Cloudera Expands Enterprise Management Software For Apache Hadoop With End-to-End Visibility for Big Data Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:39:26 +0000", "from_user": "stalln", "from_user_id": 16930382, "from_user_id_str": "16930382", "from_user_name": "Stallon Selvan", "geo": null, "id": 148487556651159550, "id_str": "148487556651159552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1650431145/320892_10150376427431777_637556776_8872952_99127909_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650431145/320892_10150376427431777_637556776_8872952_99127909_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @NathanMilford: sun-java-6 to be forcibly replaced by openjdk soon, Ubuntu users of Cassandra and Hadoop, have fun. http://t.co/XcYOk325", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:27:11 +0000", "from_user": "davidsb", "from_user_id": 9628892, "from_user_id_str": "9628892", "from_user_name": "David Salgado", "geo": null, "id": 148484470339682300, "id_str": "148484470339682304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1597731734/Untitled_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1597731734/Untitled_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "node, hadoop, mongo,java... ^^ RT @OpenAtMicrosoft: Microsoft announces Open Source updates to Windows Azure http://t.co/GkuqbusF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:25:21 +0000", "from_user": "NathanMilford", "from_user_id": 17096307, "from_user_id_str": "17096307", "from_user_name": "Nathan Milford", "geo": null, "id": 148484009310175230, "id_str": "148484009310175233", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/210996088/nathan.mangatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/210996088/nathan.mangatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "sun-java-6 to be forcibly replaced by openjdk soon, Ubuntu users of Cassandra and Hadoop, have fun. http://t.co/XcYOk325", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:23:10 +0000", "from_user": "AliRebai", "from_user_id": 194081605, "from_user_id_str": "194081605", "from_user_name": "Ali Rebai", "geo": null, "id": 148483461848645630, "id_str": "148483461848645633", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1669539394/twiter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669539394/twiter_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Please +K my influence in #Hadoop on @klout http://t.co/rcXhg1SO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:13:06 +0000", "from_user": "brmjt", "from_user_id": 378532465, "from_user_id_str": "378532465", "from_user_name": "brmjt", "geo": null, "id": 148480925850804220, "id_str": "148480925850804224", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1555980356/195740_185383814808775_4031577_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555980356/195740_185383814808775_4031577_n_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "hadoop in 20 pages http://t.co/EfdtTJZu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:11:22 +0000", "from_user": "mstrohm", "from_user_id": 14065835, "from_user_id_str": "14065835", "from_user_name": "Markus Strohmaier", "geo": null, "id": 148480490343641100, "id_str": "148480490343641089", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1140628345/5x5_1_small_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1140628345/5x5_1_small_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ChrisDiehl: Modeling with Hadoop - KDD 2011 Tutorial - http://t.co/NfMNacWW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:53:00 +0000", "from_user": "BusinAnalyGQQ", "from_user_id": 384530432, "from_user_id_str": "384530432", "from_user_name": "Perla Sarmiento", "geo": null, "id": 148475869717999600, "id_str": "148475869717999616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1611282732/1319807705_business-analytics_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611282732/1319807705_business-analytics_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Greenplum previews unified Hadoop biz-intel stack", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Sun, 18 Dec 2011 18:41:20 +0000", "from_user": "nicolastorzec", "from_user_id": 61111487, "from_user_id_str": "61111487", "from_user_name": "Nicolas Torzec", "geo": null, "id": 148472934271430660, "id_str": "148472934271430656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1525441753/Photo_on_2011-09-02_at_11.47__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1525441753/Photo_on_2011-09-02_at_11.47__2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Hadoop and Machine Learning, by Josh wills (@Josh_Wills), Tom Pierce & Jeff Hammerbach from Cloudera. Lot of links... http://t.co/25pzL3QR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:40:06 +0000", "from_user": "nugenSERVER", "from_user_id": 356873775, "from_user_id_str": "356873775", "from_user_name": "nugenSERVER", "geo": null, "id": 148472622072610800, "id_str": "148472622072610816", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u041F\\u0440\\u043E\\u0433\\u043D\\u043E\\u0437\\u0438\\u0440\\u0443\\u0435\\u043C\\u044B\\u0439 \\u0433\\u0440\\u0430\\u0444\\u0438\\u043A \\u0440\\u043E\\u0441\\u0442\\u0430 \\u0434\\u043E\\u043B\\u0438 \\u0441\\u0438\\u0441\\u0442\\u0435\\u043C \\u0445\\u0440\\u0430\\u043D\\u0435\\u043D\\u0438\\u044F \\u043D\\u0430 \\u0430\\u0440\\u0445\\u0438\\u0442\\u0435\\u043A\\u0442\\u0443\\u0440\\u0435 #Hadoop http://t.co/sFwVKqGz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:36:53 +0000", "from_user": "dataPlumbers", "from_user_id": 134805315, "from_user_id_str": "134805315", "from_user_name": "Sanjeev Kumar", "geo": null, "id": 148471812269948930, "id_str": "148471812269948928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:32:24 +0000", "from_user": "jobs77", "from_user_id": 71461219, "from_user_id_str": "71461219", "from_user_name": "jobs77", "geo": null, "id": 148470685914763260, "id_str": "148470685914763264", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/520756748/5_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/520756748/5_normal.gif", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Hadoop and Big Data Cloud: Software Engineer Job (Beijing, CN, China) http://t.co/8h459aID", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:30:56 +0000", "from_user": "Cloud9s", "from_user_id": 14759893, "from_user_id_str": "14759893", "from_user_name": "Kevin Haynes", "geo": null, "id": 148470318007189500, "id_str": "148470318007189505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1333766120/Kevin_sun_glasses_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1333766120/Kevin_sun_glasses_normal.jpg", "source": "<a href="http://paper.li" rel="nofollow">Paper.li</a>", "text": "Hadoop News and Influencers is out! http://t.co/kWfOYKZF \\u25B8 Top stories today via @danieldeluca @cheriejobtweets @subhashkolluru", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:26:03 +0000", "from_user": "AnishaTiczon", "from_user_id": 341950685, "from_user_id_str": "341950685", "from_user_name": "Anisha Ticzon", "geo": null, "id": 148469087146754050, "id_str": "148469087146754048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1459573870/anisha_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1459573870/anisha_500_normal.jpg", "source": "<a href="http://suhastech.com/tr" rel="nofollow">Tweet Random</a>", "text": "24 Interview Questions & Answers for Hadoop developers http://t.co/toflNL7m", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:26:02 +0000", "from_user": "RichardDawkins5", "from_user_id": 341947256, "from_user_id_str": "341947256", "from_user_name": "Richard Dawkins", "geo": null, "id": 148469084550471680, "id_str": "148469084550471680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1459560229/RichardDawkins_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1459560229/RichardDawkins_normal.jpg", "source": "<a href="http://suhastech.com/tr" rel="nofollow">Tweet Random</a>", "text": "24 Interview Questions & Answers for Hadoop developers http://t.co/UMtKx2Va", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:16:11 +0000", "from_user": "TechAssoc", "from_user_id": 92243805, "from_user_id_str": "92243805", "from_user_name": "TechnologyAssociates", "geo": null, "id": 148466604420759550, "id_str": "148466604420759552", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/659762257/Technology_Asso_arrowsv2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/659762257/Technology_Asso_arrowsv2_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "Using Hadoop on Azure JS Console for Data Visualizations http://t.co/Nlo9aG25", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:10:51 +0000", "from_user": "sharmask95", "from_user_id": 100018813, "from_user_id_str": "100018813", "from_user_name": "sanjeev Sharma", "geo": null, "id": 148465260326690800, "id_str": "148465260326690816", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/848542430/photo1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/848542430/photo1_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "Principal Architect - Hadoop - Gurgaon: http://t.co/kgsyArsx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:08:41 +0000", "from_user": "Lindy_Ryan", "from_user_id": 195508584, "from_user_id_str": "195508584", "from_user_name": "Lindy Ryan", "geo": null, "id": 148464718703628300, "id_str": "148464718703628288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682433128/090912_0007Lindy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682433128/090912_0007Lindy_normal.jpg", "source": "<a href="http://tweetmeme.com" rel="nofollow">TweetMeme</a>", "text": "RT @williammcknight: Pig and Hadoop support in Amazon Elastic MapReduce http://t.co/8OUCaXFR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:02:00 +0000", "from_user": "signedbyte", "from_user_id": 21605705, "from_user_id_str": "21605705", "from_user_name": "Richard Miller", "geo": null, "id": 148463035307139070, "id_str": "148463035307139072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1240440519/AndroidNRuby_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1240440519/AndroidNRuby_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:01:47 +0000", "from_user": "stackfeed", "from_user_id": 237310237, "from_user_id_str": "237310237", "from_user_name": "StackOverflow", "geo": null, "id": 148462979095076860, "id_str": "148462979095076864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Request Apache Accumulo error help using Hadoop and Zookeeper in a test environment: I am setting up a test envi... http://t.co/SAyhlTph", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:00:32 +0000", "from_user": "kellycopson", "from_user_id": 367074993, "from_user_id_str": "367074993", "from_user_name": "kelly", "geo": null, "id": 148462667760279550, "id_str": "148462667760279553", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1526353507/kelly_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1526353507/kelly_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Using Hadoop on Azure JS Console for Data Visualizations http://t.co/RqPO04ce Cloud Computing", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:56:29 +0000", "from_user": "chain", "from_user_id": 13049522, "from_user_id_str": "13049522", "from_user_name": "Antonio Rivas", "geo": null, "id": 148461647864938500, "id_str": "148461647864938497", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1326225474/215D6832-75FE-42AD-A3E6-1DD7BB0609A2_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1326225474/215D6832-75FE-42AD-A3E6-1DD7BB0609A2_normal", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "Muchas gracias! :) RT @bifacil: Excelente introducci\\u00F1on a Hadoop en proyectos BI http://t.co/qPqvjWCn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:48:20 +0000", "from_user": "lacarraro", "from_user_id": 42305202, "from_user_id_str": "42305202", "from_user_name": "Luiz Carraro", "geo": null, "id": 148459594639872000, "id_str": "148459594639872000", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1544848012/msn_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544848012/msn_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Excelente introdu\\u00E7\\u00E3o ao cluster hadoop -> Hadoop and Machine Learning http://t.co/VNwe3Z10", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:47:06 +0000", "from_user": "devseo", "from_user_id": 37402072, "from_user_id_str": "37402072", "from_user_name": "Alex Hall", "geo": +{"coordinates": [54.0633,-2.8842], "type": "Point"}, "id": 148459284211040260, "id_str": "148459284211040256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/634743139/d-logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/634743139/d-logo_normal.jpg", "source": "<a href="http://www.tweetywall.com" rel="nofollow">Tweetywall</a>", "text": "http://t.co/9B439MvH - Hadoop World 2011 - Summary of Day 2 (Closing Day)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:41:15 +0000", "from_user": "ebastien", "from_user_id": 61743315, "from_user_id_str": "61743315", "from_user_name": "Emmanuel Bastien", "geo": null, "id": 148457813415444480, "id_str": "148457813415444480", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1455152674/gp-manu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1455152674/gp-manu_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @nmaillot: Hadoop and Machine Learning - http://t.co/0U6iT0oN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:37:43 +0000", "from_user": "passingloop", "from_user_id": 347699447, "from_user_id_str": "347699447", "from_user_name": "passingloop", "geo": null, "id": 148456925305110530, "id_str": "148456925305110528", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1478397782/20110805_narundamon200_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1478397782/20110805_narundamon200_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "\\u30CE\\u30FC\\u30C1\\u30E9\\u30B9\\u3001Hadoop\\u30C7\\u30A3\\u30B9\\u30C8\\u30EA\\u30D3\\u30E5\\u30FC\\u30B7\\u30E7\\u30F3\\u306E\\u5546\\u7528\\u30B5\\u30DD\\u30FC\\u30C8\\u3092\\u958B\\u59CB\\uFF08\\u30CB\\u30E5\\u30FC\\u30B9\\uFF09 - Cloudera \\u306F NTT \\u30C7\\u30FC\\u30BF\\u304B\\u3089\\u4ED5\\u5165\\u308C\\u308B\\u5F62\\u306B\\u306A\\u308B\\u306E\\u304B\\u3057\\u3089\\uFF1F\\u304B\\u305F\\u3061\\u306E\\u3046\\u3048\\u3067\\u306F\\u3002 http://t.co/pI3eS07K", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:34:46 +0000", "from_user": "bifacil", "from_user_id": 87935794, "from_user_id_str": "87935794", "from_user_name": "BI FACIL", "geo": null, "id": 148456179947929600, "id_str": "148456179947929600", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/810344243/logo-b2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/810344243/logo-b2_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "MapReduce, tal cual, requiere que escribamos un mont\\u00F3n de c\\u00F3digo (y no vale SQL) http://t.co/helO85Nq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:34:10 +0000", "from_user": "bifacil", "from_user_id": 87935794, "from_user_id_str": "87935794", "from_user_name": "BI FACIL", "geo": null, "id": 148456030257414140, "id_str": "148456030257414144", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/810344243/logo-b2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/810344243/logo-b2_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Excelente introducci\\u00F1on a Hadoop en proyectos BI http://t.co/helO85Nq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:31:52 +0000", "from_user": "mattmcknight", "from_user_id": 5402722, "from_user_id_str": "5402722", "from_user_name": "matt mcknight", "geo": null, "id": 148455451837739000, "id_str": "148455451837739008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1210711155/matty_010911_0005_lowq__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1210711155/matty_010911_0005_lowq__1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:25:27 +0000", "from_user": "carl_nolan", "from_user_id": 229081931, "from_user_id_str": "229081931", "from_user_name": "Carl Nolan", "geo": null, "id": 148453834774167550, "id_str": "148453834774167553", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1640851918/Avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640851918/Avatar_normal.png", "source": "<a href="http://explore.live.com/windows-live-writer" rel="nofollow">Windows Live Writer</a>", "text": "New blog post: http://t.co/hxL23yDj - Using Hadoop on Azure JS Console for Data Visualizations", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:19:49 +0000", "from_user": "arthur3131", "from_user_id": 14300960, "from_user_id_str": "14300960", "from_user_name": "Andreas", "geo": null, "id": 148452417829220350, "id_str": "148452417829220352", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1136625362/aho_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1136625362/aho_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ChrisDiehl: Modeling with Hadoop - KDD 2011 Tutorial - http://t.co/NfMNacWW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:17:33 +0000", "from_user": "aoetk", "from_user_id": 23193872, "from_user_id_str": "23193872", "from_user_name": "AOE Takashi", "geo": null, "id": 148451847202541570, "id_str": "148451847202541568", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/112831123/qoo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/112831123/qoo_normal.jpg", "source": "<a href="http://www.zusaar.com/" rel="nofollow">Zusaar</a>", "text": "19\\u65E5\\u76EE\\u66F8\\u304D\\u307E\\u3057\\u305F\\u3002\\u30E9\\u30C3\\u30AF\\u8A8D\\u8B58\\u8A2D\\u5B9A\\u90E8\\u5206\\u306E\\u30BD\\u30FC\\u30B9\\u3092\\u8FFD\\u3044\\u304B\\u3051\\u305F\\u3068\\u304D\\u306E\\u30E1\\u30E2\\u3067\\u3059\\u3002 http://t.co/lqPAdKXb / hadoop\\u30A2\\u30C9\\u30D9\\u30F3\\u30C8\\u30AB\\u30EC\\u30F3\\u30C0\\u30FC2011 http://t.co/mLoAhsZW #zusaar", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:15:47 +0000", "from_user": "aoetk", "from_user_id": 23193872, "from_user_id_str": "23193872", "from_user_name": "AOE Takashi", "geo": null, "id": 148451402690199550, "id_str": "148451402690199552", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/112831123/qoo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/112831123/qoo_normal.jpg", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "hadoop\\u30A2\\u30C9\\u30D9\\u30F3\\u30C8\\u30AB\\u30EC\\u30F3\\u30C0\\u30FC2011 \\u306E19\\u65E5\\u76EE\\u3092\\u66F8\\u304D\\u307E\\u3057\\u305F\\u3002\\u30E9\\u30C3\\u30AF\\u8A8D\\u8B58\\u8A2D\\u5B9A\\u306B\\u3064\\u3044\\u3066\\u8ABF\\u3079\\u305F\\u6642\\u306E\\u30E1\\u30E2\\u3067\\u3059\\u3002 http://t.co/lqPAdKXb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:10:11 +0000", "from_user": "robymuhamad", "from_user_id": 21537777, "from_user_id_str": "21537777", "from_user_name": "Roby", "geo": null, "id": 148449993760583680, "id_str": "148449993760583680", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1629927631/beruang_halus_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629927631/beruang_halus_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@lurino hadoop", "to_user": "lurino", "to_user_id": 243580387, "to_user_id_str": "243580387", "to_user_name": "Yuki Joji", "in_reply_to_status_id": 148448585439133700, "in_reply_to_status_id_str": "148448585439133696"}, +{"created_at": "Sun, 18 Dec 2011 16:40:55 +0000", "from_user": "scottdunlop", "from_user_id": 25550110, "from_user_id_str": "25550110", "from_user_name": "Scott Dunlop", "geo": null, "id": 148442629930106880, "id_str": "148442629930106880", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/104874078/blogscott_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/104874078/blogscott_normal.jpg", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Big data Software Engineers - Java, RoR, Hadoop, Cassandra, Solr, Machine Learni... http://t.co/eZYCuslj #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:40:31 +0000", "from_user": "DBA_J", "from_user_id": 263132351, "from_user_id_str": "263132351", "from_user_name": "Jason Williams", "geo": null, "id": 148442527035424770, "id_str": "148442527035424768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1430694923/JasonWilliams_appointments_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1430694923/JasonWilliams_appointments_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Microsoft updates #Azure with SDK and #Hadoop preview http://t.co/SBUjEmfY via @regvulture", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:33:00 +0000", "from_user": "Gulshan1082", "from_user_id": 364304358, "from_user_id_str": "364304358", "from_user_name": "Gulshan Chaudhary", "geo": null, "id": 148440637929295870, "id_str": "148440637929295873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Are you a good fit for this job? Java Engineer with Hadoop in San Jose, CA http://t.co/2YcJx1qj #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:32:44 +0000", "from_user": "bradoop", "from_user_id": 84117884, "from_user_id_str": "84117884", "from_user_name": "Brad Sarsfield", "geo": null, "id": 148440569541173250, "id_str": "148440569541173248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/483171997/bradsa_jpg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/483171997/bradsa_jpg_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @MicrosoftBI: I uploaded a @YouTube video http://t.co/WWiuQpFL Introduction to the Hadoop on Azure Interactive Hive Console", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:29:18 +0000", "from_user": "Cloud9s", "from_user_id": 14759893, "from_user_id_str": "14759893", "from_user_name": "Kevin Haynes", "geo": null, "id": 148439705225138180, "id_str": "148439705225138176", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1333766120/Kevin_sun_glasses_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1333766120/Kevin_sun_glasses_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Hadoop and Machine Learning http://t.co/h4zfD53w", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:28:17 +0000", "from_user": "NeilRaden", "from_user_id": 15160685, "from_user_id_str": "15160685", "from_user_name": "Neil Raden", "geo": null, "id": 148439448852500480, "id_str": "148439448852500480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696638797/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696638797/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "[1] Many better Hadoop's emerging. Here's one. Reshef, DN et al. Detecting novel associations in large data sets. Science, Dec 15, 2011", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:25:47 +0000", "from_user": "rubiq", "from_user_id": 40761580, "from_user_id_str": "40761580", "from_user_name": "Gema R. Quintana", "geo": null, "id": 148438823024603140, "id_str": "148438823024603136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682565916/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682565916/image_normal.jpg", "source": "<a href="http://www.slideshare.net/" rel="nofollow">Slideshare</a>", "text": "RT @slideshare: 'Hadoop and Machine Learning' is featured on our homepage. http://t.co/lkuEIFPn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:20:35 +0000", "from_user": "d8Pit", "from_user_id": 264394701, "from_user_id_str": "264394701", "from_user_name": "The URL Popularizer", "geo": null, "id": 148437512967303170, "id_str": "148437512967303168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317284522/logo-header_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317284522/logo-header_normal.png", "source": "<a href="http://d8p.it" rel="nofollow">d8P</a>", "text": "RT @Cloud4Backup: Pig and Hadoop support in Amazon Elastic MapReduce - iProgrammer #cloud | http://t.co/P1IwL4zY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:19:31 +0000", "from_user": "danieldeluca", "from_user_id": 14715465, "from_user_id_str": "14715465", "from_user_name": "Daniel De Luca", "geo": +{"coordinates": [50.6537,4.5574], "type": "Point"}, "id": 148437244145971200, "id_str": "148437244145971200", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1210005546/dad-01_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1210005546/dad-01_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Introducing #hadoop (#NoSQL) in 20 pages. - http://t.co/hQuxmEMw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:18:47 +0000", "from_user": "solm", "from_user_id": 15683363, "from_user_id_str": "15683363", "from_user_name": "Thomas K", "geo": null, "id": 148437060066361340, "id_str": "148437060066361344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680233762/IMG_1486_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680233762/IMG_1486_normal.JPG", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Add another server to my Hadoop cluster. Up to 4 now. Amazon better start looking over their should.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:18:05 +0000", "from_user": "Cloud4Backup", "from_user_id": 47576906, "from_user_id_str": "47576906", "from_user_name": "Cloud For Backup", "geo": null, "id": 148436885478449150, "id_str": "148436885478449153", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1446547785/cloud_backup_1__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1446547785/cloud_backup_1__normal.png", "source": "<a href="http://www.whisthis.com" rel="nofollow">Graphene</a>", "text": "Pig and Hadoop support in Amazon Elastic MapReduce - iProgrammer http://t.co/901l8kss #cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:15:33 +0000", "from_user": "brianscourtney", "from_user_id": 16708226, "from_user_id_str": "16708226", "from_user_name": "Brian Courtney", "geo": null, "id": 148436247805820930, "id_str": "148436247805820928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/69330716/bri_crop_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/69330716/bri_crop_copy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#GE tests #Proficy Historian 4.5 against other big data solutions for time series data and Historian comes out on top. http://t.co/t73Gk8qw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:07:11 +0000", "from_user": "Chris_W_Jones", "from_user_id": 309151440, "from_user_id_str": "309151440", "from_user_name": "chris jones", "geo": null, "id": 148434141740924930, "id_str": "148434141740924928", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1672168747/1_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672168747/1_normal.gif", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @dpatil: oh yeah! \\u201C@mndoci: Hadoop and Pig at LinkedIn SNA http://t.co/KydyTQYE\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:53:09 +0000", "from_user": "snuffkin", "from_user_id": 12746012, "from_user_id_str": "12746012", "from_user_name": "Satoyuki Tsukano", "geo": null, "id": 148430608765435900, "id_str": "148430608765435904", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1592853925/180895_1827145360343_1291578006_2134016_3850008_a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592853925/180895_1827145360343_1291578006_2134016_3850008_a_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Hadoop Advent Calendar 2011\\u306E18\\u65E5\\u76EE\\u3092\\u6295\\u7A3F\\u3057\\u307E\\u3057\\u305F\\u3002\\u300CYARN\\u306E\\u65B0\\u6A5F\\u80FD Capacity Scheduler\\u300D http://t.co/yNT2nrIe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:48:33 +0000", "from_user": "kebomix", "from_user_id": 20355067, "from_user_id_str": "20355067", "from_user_name": "Ahmed Attyah", "geo": null, "id": 148429451133337600, "id_str": "148429451133337601", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1457667607/2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1457667607/2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/UDztPAf9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:48:07 +0000", "from_user": "mwexler", "from_user_id": 14179048, "from_user_id_str": "14179048", "from_user_name": "Michael Wexler", "geo": null, "id": 148429343687835650, "id_str": "148429343687835648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/52943728/headshot-goofy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/52943728/headshot-goofy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "GREAT preso on Hadoop and Machine Learning: very honest about where Hadoop helps and where it won't... yet. http://t.co/tJkaEuRu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:47:00 +0000", "from_user": "pen_sugar", "from_user_id": 291785501, "from_user_id_str": "291785501", "from_user_name": "pen_sugar", "geo": null, "id": 148429059997696000, "id_str": "148429059997696000", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1377638077/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1377638077/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Hadoop\\u306A\\u65E5\\u3067\\u3082\\u3042\\u3063\\u305F\\u3002\\u307E\\u3060\\u307E\\u3060\\u52C9\\u5F37\\u4E0D\\u8DB3\\u3002\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:46:46 +0000", "from_user": "Whitbyvu", "from_user_id": 395387423, "from_user_id_str": "395387423", "from_user_name": "Genevieve Whitby", "geo": null, "id": 148429002741252100, "id_str": "148429002741252096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1599591995/MFC-2799_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599591995/MFC-2799_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hadoop: The Definitive Guide: Hadoop: The Definitive Guide helps you harness the power of your data. Ideal for p... http://t.co/Rutiv2N9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:36:55 +0000", "from_user": "bella_ctj", "from_user_id": 76812894, "from_user_id_str": "76812894", "from_user_name": "Clelia Santambrogio", "geo": null, "id": 148426521579757570, "id_str": "148426521579757568", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1113852016/Clelia_en_sinflash3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1113852016/Clelia_en_sinflash3_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @CWVen: #Microsoft Azure aloja Apache Hadoop y otras aplicaciones de c\\u00F3digo abierto: http://t.co/msWqJusT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:36:44 +0000", "from_user": "yangpengg", "from_user_id": 191778885, "from_user_id_str": "191778885", "from_user_name": "yp", "geo": null, "id": 148426478248411140, "id_str": "148426478248411136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1665682313/zuoyou-google_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665682313/zuoyou-google_normal.jpg", "source": "<a href="http://www.slideshare.net/" rel="nofollow">Slideshare</a>", "text": "RT @slideshare: 'Hadoop and Machine Learning' is featured on our homepage. http://t.co/lkuEIFPn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:22:28 +0000", "from_user": "mat_kelcey", "from_user_id": 26970530, "from_user_id_str": "26970530", "from_user_name": "mat kelcey", "geo": null, "id": 148422887848681470, "id_str": "148422887848681472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/760825752/n650991500_422744_3329_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/760825752/n650991500_422744_3329_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:15:05 +0000", "from_user": "brunocm", "from_user_id": 30016358, "from_user_id_str": "30016358", "from_user_name": "Bruno", "geo": null, "id": 148421028450799600, "id_str": "148421028450799617", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1353914201/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1353914201/image_normal.jpg", "source": "<a href="http://www.news.me" rel="nofollow">news.me</a>", "text": "RT @mndoci: Hadoop and Pig at LinkedIn SNA http://t.co/OYU8PwS3 via @dpatil", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:13:16 +0000", "from_user": "cheriejobtweets", "from_user_id": 220523410, "from_user_id_str": "220523410", "from_user_name": "Cherie Smittle", "geo": null, "id": 148420570818691070, "id_str": "148420570818691073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1551872796/social_media_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1551872796/social_media_pic_normal.jpg", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Are you a good fit for this job? Hadoop/Software Development Manager in Redmond, WA http://t.co/tJnQXpyB #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:58:22 +0000", "from_user": "mopatel", "from_user_id": 17971178, "from_user_id_str": "17971178", "from_user_name": "Mo Patel", "geo": null, "id": 148416821857488900, "id_str": "148416821857488896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1189265555/profile3-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1189265555/profile3-1_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "Will have try this out RT @dpatil: oh yeah! \\u201C@mndoci: Hadoop and Pig at LinkedIn SNA http://t.co/MsZCSGx8\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:56:13 +0000", "from_user": "snuffkin", "from_user_id": 12746012, "from_user_id_str": "12746012", "from_user_name": "Satoyuki Tsukano", "geo": null, "id": 148416282721648640, "id_str": "148416282721648640", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1592853925/180895_1827145360343_1291578006_2134016_3850008_a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592853925/180895_1827145360343_1291578006_2134016_3850008_a_normal.jpg", "source": "<a href="http://www.zusaar.com/" rel="nofollow">Zusaar</a>", "text": "18\\u65E5\\u76EE\\u3002YARN\\u306ECapacity Scheduler\\u306B\\u3064\\u3044\\u3066\\u66F8\\u304D\\u307E\\u3057\\u305F\\u3002\\nhttp://t.co/XEiXXXWn\\n / hadoop\\u30A2\\u30C9\\u30D9\\u30F3\\u30C8\\u30AB\\u30EC\\u30F3\\u30C0\\u30FC2011 http://t.co/JXK0ZuN5 #zusaar", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:47:28 +0000", "from_user": "ItalieGubbi", "from_user_id": 211958720, "from_user_id_str": "211958720", "from_user_name": "Stefanie Gubbi", "geo": null, "id": 148414080183578620, "id_str": "148414080183578625", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1371156646/Pic_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1371156646/Pic_normal.JPG", "source": "<a href="http://www.slideshare.net/" rel="nofollow">Slideshare</a>", "text": "RT @slideshare: 'Hadoop and Machine Learning' is featured on our homepage. http://t.co/lkuEIFPn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:46:48 +0000", "from_user": "kumarshantanu", "from_user_id": 18362831, "from_user_id_str": "18362831", "from_user_name": "Shantanu Kumar", "geo": null, "id": 148413911920689150, "id_str": "148413911920689153", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1551932451/test-pic_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1551932451/test-pic_normal.JPG", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "[PDF] The Hadoop Distributed File System http://t.co/yTFYOjNl Good technical overview of how HDFS works. Tweeted earlier and doing so again.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:46:36 +0000", "from_user": "mahdi", "from_user_id": 718993, "from_user_id_str": "718993", "from_user_name": "Mahdi Taghizadeh", "geo": null, "id": 148413859827429380, "id_str": "148413859827429376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697108280/violet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697108280/violet_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl. http://t.co/htMuCqhd #Cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:41:08 +0000", "from_user": "dev_links", "from_user_id": 309995604, "from_user_id_str": "309995604", "from_user_name": "Joe Fawzy", "geo": null, "id": 148412486306103300, "id_str": "148412486306103297", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/Qvs4N7LZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:31:51 +0000", "from_user": "beartwo", "from_user_id": 19836161, "from_user_id_str": "19836161", "from_user_name": "Giorgio Baron%", "geo": null, "id": 148410148333957120, "id_str": "148410148333957120", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1331868189/bb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1331868189/bb_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Microsoft Azure aloja Apache Hadoop y otras aplicaciones de c\\u00F3digo abierto: http://t.co/ktS2ghFj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:31:50 +0000", "from_user": "CWVen", "from_user_id": 49653537, "from_user_id_str": "49653537", "from_user_name": "Computerworld Vene", "geo": null, "id": 148410145892864000, "id_str": "148410145892864000", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/276553291/CWVen_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/276553291/CWVen_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Microsoft Azure aloja Apache Hadoop y otras aplicaciones de c\\u00F3digo abierto: http://t.co/rXJLgTv9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:30:26 +0000", "from_user": "orirawlings", "from_user_id": 14793715, "from_user_id_str": "14793715", "from_user_name": "Ori Rawlings", "geo": null, "id": 148409793646825470, "id_str": "148409793646825472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/671699784/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/671699784/me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:30:25 +0000", "from_user": "leejohnsonseo", "from_user_id": 89424244, "from_user_id_str": "89424244", "from_user_name": "Lee Johnson", "geo": +{"coordinates": [54.0682,-2.7805], "type": "Point"}, "id": 148409787254710270, "id_str": "148409787254710273", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1225886877/lee-white_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225886877/lee-white_normal.png", "source": "<a href="http://www.tweetywall.com" rel="nofollow">Tweetywall</a>", "text": "http://t.co/97hyHxW4 - No, Hadoop Doesn't Own Big Data Analytics!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:29:35 +0000", "from_user": "NicoThieb", "from_user_id": 98618391, "from_user_id_str": "98618391", "from_user_name": "Nicolas Thi\\u00E9baud", "geo": null, "id": 148409576197328900, "id_str": "148409576197328897", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702417751/Screen_Shot_2011-12-19_at_5.49.08_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702417751/Screen_Shot_2011-12-19_at_5.49.08_PM_normal.png", "source": "<a href="http://www.apple.com" rel="nofollow">Camera on iOS</a>", "text": "15 jours, un objectif. #hadoop #hbase http://t.co/zmuJYe6G", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:28:31 +0000", "from_user": "josh_wills", "from_user_id": 14578294, "from_user_id_str": "14578294", "from_user_name": "Josh Wills", "geo": null, "id": 148409311176040450, "id_str": "148409311176040448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1392809578/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1392809578/me_normal.jpg", "source": "<a href="http://www.slideshare.net/" rel="nofollow">Slideshare</a>", "text": "RT @slideshare: 'Hadoop and Machine Learning' is featured on our homepage. http://t.co/lkuEIFPn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:28:06 +0000", "from_user": "raravena80", "from_user_id": 21988767, "from_user_id_str": "21988767", "from_user_name": "Ricardo Aravena", "geo": null, "id": 148409204686848000, "id_str": "148409204686848000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/83215605/Picture_4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/83215605/Picture_4_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft Tries Hadoop on Azure: Microsoft added a trial version of Apache\\u2019s open source Hadoop to its Windows A... http://t.co/CF1D4nFK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:19:10 +0000", "from_user": "stackfeed", "from_user_id": 237310237, "from_user_id_str": "237310237", "from_user_name": "StackOverflow", "geo": null, "id": 148406956107890700, "id_str": "148406956107890688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Image processing with Hadoop MapReduce: I am doing a project on motion estimation between two frames of a video ... http://t.co/WlJ0ap2j", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:19:04 +0000", "from_user": "bdour_akram", "from_user_id": 340125806, "from_user_id_str": "340125806", "from_user_name": "bdour akram", "geo": null, "id": 148406931340525570, "id_str": "148406931340525568", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1580457771/me_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580457771/me_normal.PNG", "source": "<a href="http://twitter.com/">web</a>", "text": "Windows Azure Adds Node.js Support, Hadoop Preview http://t.co/nZY7JFf6 #azure #javascript #nodejs #hadoop #v", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:16:55 +0000", "from_user": "ramprakashr", "from_user_id": 48626994, "from_user_id_str": "48626994", "from_user_name": "Ramprakash R", "geo": null, "id": 148406392540237820, "id_str": "148406392540237824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1115776605/41765_1390011752_753_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1115776605/41765_1390011752_753_q_normal.jpg", "source": "<a href="http://www.slideshare.net/" rel="nofollow">Slideshare</a>", "text": "RT @slideshare: 'Hadoop and Machine Learning' is featured on our homepage. http://t.co/lkuEIFPn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:16:02 +0000", "from_user": "ekampf", "from_user_id": 7467902, "from_user_id_str": "7467902", "from_user_name": "Eran Kampf", "geo": null, "id": 148406166953791500, "id_str": "148406166953791489", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1094675975/n613471493_1492_-_Copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1094675975/n613471493_1492_-_Copy_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl | CommonCrawl http://t.co/eJlQVpr2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:15:31 +0000", "from_user": "slideshare", "from_user_id": 9676152, "from_user_id_str": "9676152", "from_user_name": "SlideShare", "geo": null, "id": 148406039094636540, "id_str": "148406039094636544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/34292002/slideshare_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/34292002/slideshare_logo_normal.jpg", "source": "<a href="http://www.slideshare.net/" rel="nofollow">Slideshare</a>", "text": "'Hadoop and Machine Learning' is featured on our homepage. http://t.co/lkuEIFPn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:12:24 +0000", "from_user": "subhashkolluru", "from_user_id": 326320841, "from_user_id_str": "326320841", "from_user_name": "subhash kolluru", "geo": null, "id": 148405252901699600, "id_str": "148405252901699584", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Now Hiring: Big Data Hadoop Engineer in Chicago, IL http://t.co/nqpXCuR3 #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:10:36 +0000", "from_user": "TempleWest55", "from_user_id": 162072839, "from_user_id_str": "162072839", "from_user_name": "Temple West", "geo": null, "id": 148404799522619400, "id_str": "148404799522619392", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1505160323/20100902232358_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505160323/20100902232358_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "\\u30CE\\u30FC\\u30C1\\u30E9\\u30B9\\u3001Hadoop\\u30C7\\u30A3\\u30B9\\u30C8\\u30EA\\u30D3\\u30E5\\u30FC\\u30B7\\u30E7\\u30F3\\u306E\\u5546\\u7528\\u30B5\\u30DD\\u30FC\\u30C8\\u3092\\u958B\\u59CB\\uFF08\\u30CB\\u30E5\\u30FC\\u30B9\\uFF09 http://t.co/F5BcWb0L", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:42:46 +0000", "from_user": "liuerfire", "from_user_id": 313700400, "from_user_id_str": "313700400", "from_user_name": "\\u738B\\u5E78", "geo": null, "id": 148397796897210370, "id_str": "148397796897210369", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1402789999/IMG0148A_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1402789999/IMG0148A_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "\\u5728Hadoop\\u4E0A\\u8FD0\\u884C\\u57FA\\u4E8ERMM\\u4E2D\\u6587\\u5206\\u8BCD\\u7B97\\u6CD5\\u7684MapReduce\\u7A0B\\u5E8F http://t.co/VCNZ9nC4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:40:13 +0000", "from_user": "nirendraa", "from_user_id": 77999977, "from_user_id_str": "77999977", "from_user_name": "Nirendra Awasthi", "geo": null, "id": 148397156758335500, "id_str": "148397156758335488", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1585934460/me_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585934460/me_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Very interesting introduction to Big data: http://t.co/0rmBimgE #BigData #Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:25:12 +0000", "from_user": "sharow", "from_user_id": 14295056, "from_user_id_str": "14295056", "from_user_name": "\\u00A1\\u0287,u\\u0250\\u0254 \\u01DD\\u028D ou", "geo": null, "id": 148393374859276300, "id_str": "148393374859276288", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1688880416/forever48_xmas_colored_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688880416/forever48_xmas_colored_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Hadoop\\u306B\\u3042\\u307E\\u308A\\u53EF\\u80FD\\u6027\\u3092\\u611F\\u3058\\u306A\\u3044\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:19:32 +0000", "from_user": "t411", "from_user_id": 15835698, "from_user_id_str": "15835698", "from_user_name": "t411", "geo": null, "id": 148391951610286080, "id_str": "148391951610286081", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/69888816/logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/69888816/logo_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Real time search for Hadoop http://t.co/zizymaLq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:16:19 +0000", "from_user": "reputa_india", "from_user_id": 265834202, "from_user_id_str": "265834202", "from_user_name": "Reputa India", "geo": null, "id": 148391139643363330, "id_str": "148391139643363328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1283445555/2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1283445555/2_normal.jpg", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "URGENT Requirement : Hiring Hadoop Architect (2+ year contract position) require... http://t.co/xHBllFyf #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:15:36 +0000", "from_user": "gycheng", "from_user_id": 26445489, "from_user_id_str": "26445489", "from_user_name": "Guangyao Cheng/yoyo", "geo": null, "id": 148390961658085380, "id_str": "148390961658085376", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/109355118/1_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/109355118/1_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @nmaillot: Hadoop and Machine Learning - http://t.co/0U6iT0oN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:06:22 +0000", "from_user": "nmaillot", "from_user_id": 39479514, "from_user_id_str": "39479514", "from_user_name": "Nicolas Maillot", "geo": null, "id": 148388637560680450, "id_str": "148388637560680448", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/863139197/P1000058_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/863139197/P1000058_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Hadoop and Machine Learning - http://t.co/0U6iT0oN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:58:55 +0000", "from_user": "sharmask95", "from_user_id": 100018813, "from_user_id_str": "100018813", "from_user_name": "sanjeev Sharma", "geo": null, "id": 148386761515606000, "id_str": "148386761515606016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/848542430/photo1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/848542430/photo1_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "is looking for Hadoop Principal Architects for a US based multinational for their offshore facility at Gurgaon/Delhi N\\u2026http://t.co/p4po2SJR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:47:28 +0000", "from_user": "keithseahus", "from_user_id": 15808744, "from_user_id_str": "15808744", "from_user_name": "Keisuke TAKAHASHI", "geo": null, "id": 148383881832312830, "id_str": "148383881832312832", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1167703228/IMG_0489_mixi2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1167703228/IMG_0489_mixi2_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "\\u660E\\u65E5\\u306E\\u62C5\\u5F53\\u5185\\u52C9\\u5F37\\u4F1A\\u3063\\u3066\\u3001OS X Server\\u3067\\u3057\\u305F\\u3063\\u3051\\u3001\\u305D\\u308C\\u3068\\u3082Hadoop\\u3067\\u3057\\u305F\\u3063\\u3051\\u3002\\u3002\\u3002\\uFF08\\u6C57\\uFF09", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:23:43 +0000", "from_user": "parolariecjgi9", "from_user_id": 397141249, "from_user_id_str": "397141249", "from_user_name": "Parolari Carew", "geo": null, "id": 148377902478655500, "id_str": "148377902478655488", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1604079248/imagesCA2S7B5Y_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1604079248/imagesCA2S7B5Y_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@omgeraldicmat http://t.co/LbXUS6UL", "to_user": "omgeraldicmat", "to_user_id": 181853976, "to_user_id_str": "181853976", "to_user_name": "Gerald Icmat", "in_reply_to_status_id": 134920593475772420, "in_reply_to_status_id_str": "134920593475772416"}, +{"created_at": "Sun, 18 Dec 2011 12:19:54 +0000", "from_user": "parolariecjgi9", "from_user_id": 397141249, "from_user_id_str": "397141249", "from_user_name": "Parolari Carew", "geo": null, "id": 148376943904047100, "id_str": "148376943904047106", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1604079248/imagesCA2S7B5Y_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1604079248/imagesCA2S7B5Y_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Kamar_Moustapha http://t.co/LbXUS6UL", "to_user": "Kamar_Moustapha", "to_user_id": 143855045, "to_user_id_str": "143855045", "to_user_name": "Kamar Moustapha", "in_reply_to_status_id": 134920611972653060, "in_reply_to_status_id_str": "134920611972653056"}, +{"created_at": "Sun, 18 Dec 2011 12:17:51 +0000", "from_user": "TopTecRecruiter", "from_user_id": 92369482, "from_user_id_str": "92369482", "from_user_name": "Avetis Antaplyan", "geo": null, "id": 148376426201096200, "id_str": "148376426201096193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Are you a good fit for this job? Sr Java Engineer (Hadoop, NoSQL, Memcache) in Los Angeles, CA http://t.co/hERrBf9c #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:14:12 +0000", "from_user": "abava", "from_user_id": 8996422, "from_user_id_str": "8996422", "from_user_name": "abava", "geo": null, "id": 148375510190268400, "id_str": "148375510190268417", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/77150396/logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/77150396/logo_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Hadoop. \\u0412\\u0432\\u0435\\u0434\\u0435\\u043D\\u0438\\u0435 http://t.co/BLgQTOSS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:03:06 +0000", "from_user": "shinhiroo", "from_user_id": 264632370, "from_user_id_str": "264632370", "from_user_name": "H. SHINKAI", "geo": null, "id": 148372715772981250, "id_str": "148372715772981249", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1549550963/Shinhiroo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1549550963/Shinhiroo_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @tamagawa_ryuji: \\u304A\\u5F85\\u305F\\u305B\\u3057\\u307E\\u3057\\u305F\\u3002\\u8C61\\u672C\\u3053\\u3068\\u300Chadoop\\u300D\\u306Eebook\\u3001\\u51FA\\u307E\\u3057\\u305F\\uFF01\\u3000http://t.co/Ax1ALVbq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:02:52 +0000", "from_user": "misterololo", "from_user_id": 205618078, "from_user_id_str": "205618078", "from_user_name": "Misterololo", "geo": null, "id": 148372658113888260, "id_str": "148372658113888256", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1149312213/1307_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1149312213/1307_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hadoop. \\u0412\\u0432\\u0435\\u0434\\u0435\\u043D\\u0438\\u0435: \\u0425\\u043E\\u0440\\u043E\\u0448\\u0438\\u0439 (\\u0438 \\u043A\\u043E\\u043C\\u043F\\u0430\\u043A\\u0442\\u043D\\u044B\\u0439) \\u0434\\u043E\\u043A\\u0443\\u043C\\u0435\\u043D\\u0442 \\u043F\\u043E \\u043D\\u0430\\u0447\\u0430\\u043B\\u0443 \\u0440\\u0430\\u0431\\u043E\\u0442\\u044B \\u0441 Hadoop. \\u041E\\u0445\\u0432\\u0430\\u0447\\u0435\\u043D\\u043D\\u044B\\u0435 \\u0442\\u0435\\u043C\\u044B:\\u0412\\u0432\\u0435\\u0434\\u0435\\u043D\\u0438\\u0435 \\u0432 Hadoop\\u0427\\u0442... http://t.co/KX08ERVg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:57:27 +0000", "from_user": "victoriko", "from_user_id": 110011709, "from_user_id_str": "110011709", "from_user_name": "\\uACE0\\uC2B9\\uACE4(Victor Ko)", "geo": null, "id": 148371291383148540, "id_str": "148371291383148544", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/666279957/victoriko3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/666279957/victoriko3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "MS\\uC758 Azure \\uC77C\\uBCD1 \\uAD6C\\uD558\\uAE30 \\uD504\\uB85C\\uC81D\\uD2B8\\uAC00 \\uC11C\\uC11C\\uD788 \\uBAA8\\uC2B5\\uC744 \\uB4DC\\uB7EC\\uB0B4\\uACE0 \\uC788\\uC2B5\\uB2C8\\uB2E4. \\uC624\\uD508\\uC18C\\uC2A4 \\uC9C4\\uC601\\uC744 \\uD504\\uB85C\\uC81D\\uD2B8\\uB97C \\uACFC\\uAC10\\uD788 Azure\\uB85C \\uD3EC\\uD305\\uD558\\uACE0 \\uC788\\uB124\\uC694.Hadoop, Node.js, MongoDB, Lucene \\uB4F1.Azure\\uB294 MS \\uB0B4\\uC5D0\\uC11C\\uB3C4 \\uBCC4\\uB3D9\\uB300 \\uC778\\uB4EF\\uD569\\uB2C8\\uB2E4.^^", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:42:47 +0000", "from_user": "vishwavikalp", "from_user_id": 83765473, "from_user_id_str": "83765473", "from_user_name": "Vishwavikalp", "geo": null, "id": 148367600831840260, "id_str": "148367600831840256", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1258295366/DSC03650_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1258295366/DSC03650_normal.JPG", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Looking for a Java Developer, Hadoop in Bangalore, India http://t.co/W6eIxPg0 #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:35:07 +0000", "from_user": "randymillstop", "from_user_id": 323431151, "from_user_id_str": "323431151", "from_user_name": "Randy Mills", "geo": null, "id": 148365674316693500, "id_str": "148365674316693504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1411575160/1308947703_forn421l_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1411575160/1308947703_forn421l_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/i64yrUor Zettaset Launches Version 4 of Big Data Management Solution, Delivering New Stability for Hadoop Systems and ...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:17:54 +0000", "from_user": "pbouillaud", "from_user_id": 50699469, "from_user_id_str": "50699469", "from_user_name": "Bouillaud", "geo": null, "id": 148361340535312400, "id_str": "148361340535312384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1393928753/lapin_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1393928753/lapin_normal.jpg", "source": "<a href="http://www.scoop.it" rel="nofollow">Scoop.it</a>", "text": "Microsoft Tries Hadoop on Azure | Cloud Computing Journal | @scoopit via @tw_top_1z2n8rp http://t.co/MpdgEybZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:16:29 +0000", "from_user": "iwonabb", "from_user_id": 59262847, "from_user_id_str": "59262847", "from_user_name": "Iwona Bialynicka-B.", "geo": null, "id": 148360985147744260, "id_str": "148360985147744256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1330438533/bialynicka3_desaturated_square_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1330438533/bialynicka3_desaturated_square_small_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@noiano With properties prefixed with hadoop-hdfs, hadoop-common and hadoop-mapreduce - check out https://t.co/JW1DhSrf", "to_user": "noiano", "to_user_id": 54919596, "to_user_id_str": "54919596", "to_user_name": "Marco Didonna", "in_reply_to_status_id": 148007465924038660, "in_reply_to_status_id_str": "148007465924038657"}, +{"created_at": "Sun, 18 Dec 2011 11:13:18 +0000", "from_user": "oalonsollombart", "from_user_id": 239066186, "from_user_id_str": "239066186", "from_user_name": "\\u00D3scar Alonso Llombar", "geo": null, "id": 148360181540061200, "id_str": "148360181540061185", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1217418356/oalonso_cartoon_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1217418356/oalonso_cartoon_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Hadoop en proyectos de Business Intelligence | Dataprix: http://t.co/r8TxwxZX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:04:06 +0000", "from_user": "purplehayz", "from_user_id": 9017192, "from_user_id_str": "9017192", "from_user_name": "purplehayz", "geo": null, "id": 148357865063714800, "id_str": "148357865063714816", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/299158526/tattoo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/299158526/tattoo_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "#Microsoft tries #Hadoop on #Azure http://t.co/9TTID4BP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:55:27 +0000", "from_user": "GiulyBonll", "from_user_id": 328686800, "from_user_id_str": "328686800", "from_user_name": "Giuliana Bonello", "geo": null, "id": 148355691403427840, "id_str": "148355691403427840", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1441101745/24062011069_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1441101745/24062011069_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @strataconf: Five Big Data predictions for 2012 http://t.co/0no2xN8g via @radar #bigdata #visualization #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:55:08 +0000", "from_user": "nickhac", "from_user_id": 1267041, "from_user_id_str": "1267041", "from_user_name": "Nick Holmes \\u00E0 Court", "geo": null, "id": 148355611933933570, "id_str": "148355611933933569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1263176304/420buzz-420x0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263176304/420buzz-420x0_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/5MHw7fvf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:54:21 +0000", "from_user": "QwertyManiac", "from_user_id": 12430962, "from_user_id_str": "12430962", "from_user_name": "Harsh J Chouraria", "geo": null, "id": 148355415078477820, "id_str": "148355415078477824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1644988570/Up_front_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644988570/Up_front_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:53:36 +0000", "from_user": "dejavutimes", "from_user_id": 279589807, "from_user_id_str": "279589807", "from_user_name": "Deja-Vu Times", "geo": null, "id": 148355222887084030, "id_str": "148355222887084033", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1305859236/dvsl.logo.symbol_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1305859236/dvsl.logo.symbol_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "KloudData\\u2019s iKloud for Hortonworks Data Platform Brings Big Data Analytics to Apache Hadoop: http://t.co/RlkMQW09", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:51:26 +0000", "from_user": "danbradford", "from_user_id": 15704718, "from_user_id_str": "15704718", "from_user_name": "danbradford", "geo": null, "id": 148354679565336580, "id_str": "148354679565336577", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/78813003/10003_m_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/78813003/10003_m_normal.gif", "source": "<a href="http://jobvite.com" rel="nofollow">Jobvite</a>", "text": "Hortonworks is looking for: Hadoop MapReduce Sr. Software Engineer\\nhttp://t.co/wMtrb697 #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:40:10 +0000", "from_user": "cierniak", "from_user_id": 14637908, "from_user_id_str": "14637908", "from_user_name": "Michal Cierniak", "geo": null, "id": 148351844752695300, "id_str": "148351844752695296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1430256685/michal4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1430256685/michal4_normal.jpg", "source": "Zite Personalized Magazine", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/eLlSth8q via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:23:20 +0000", "from_user": "dataprix", "from_user_id": 44152774, "from_user_id_str": "44152774", "from_user_name": "Carlos Fernandez", "geo": null, "id": 148347608866365440, "id_str": "148347608866365440", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/701068875/isotipo_dataprix_screen_96_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/701068875/isotipo_dataprix_screen_96_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Dataplanet: Hadoop en proyectos de Business Intelligence http://t.co/M5IJft1A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:04:50 +0000", "from_user": "lkafle", "from_user_id": 5981342, "from_user_id_str": "5981342", "from_user_name": "Lava Kafle", "geo": null, "id": 148342953688043520, "id_str": "148342953688043521", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1361567862/lavaKbyGehendraB1_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1361567862/lavaKbyGehendraB1_normal.JPG", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "Hadoop: From Open Source Project to Big Data Ecosystem http://t.co/VJCu4v6T", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:56:59 +0000", "from_user": "hackingdata", "from_user_id": 16061930, "from_user_id_str": "16061930", "from_user_name": "Jeff Hammerbacher", "geo": null, "id": 148340976635740160, "id_str": "148340976635740160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/759606364/q4781_7814_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/759606364/q4781_7814_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Sun, 18 Dec 2011 09:42:03 +0000", "from_user": "analyticsdennis", "from_user_id": 22375129, "from_user_id_str": "22375129", "from_user_name": "Dennis Plucinik", "geo": null, "id": 148337220300967940, "id_str": "148337220300967936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/588949572/analytics_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/588949572/analytics_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Reading: 10 Hadoop-able Problems (a summary) \\u00AB Mike Pearce \\u2013 blog: http://t.co/zRRMek9c", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:38:22 +0000", "from_user": "ekampf", "from_user_id": 7467902, "from_user_id_str": "7467902", "from_user_name": "Eran Kampf", "geo": null, "id": 148336290025324540, "id_str": "148336290025324545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1094675975/n613471493_1492_-_Copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1094675975/n613471493_1492_-_Copy_normal.jpg", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "@larsgeorge the FB and SU guys at Hadoop World said they cap tables to ~20 regions. Any idea how? can't find any mention for that in docs", "to_user": "larsgeorge", "to_user_id": 19362860, "to_user_id_str": "19362860", "to_user_name": "Lars George"}, +{"created_at": "Sun, 18 Dec 2011 09:37:59 +0000", "from_user": "szibis", "from_user_id": 311095658, "from_user_id_str": "311095658", "from_user_name": "Slawomir", "geo": null, "id": 148336193883475970, "id_str": "148336193883475969", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://news.ycombinator.com/" rel="nofollow">Hacker News Bot</a>", "text": "RT @hackernewsbot: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl... http://t.co/JGEaGFBn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:27:22 +0000", "from_user": "asamidsgr", "from_user_id": 193665655, "from_user_id_str": "193665655", "from_user_name": "Asami Yuuki", "geo": null, "id": 148333525207236600, "id_str": "148333525207236608", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1160245296/8483064_2540497908_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1160245296/8483064_2540497908_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@yamamasa23 @kanreisa hadoop\\u307E\\u308F\\u308A\\u306F\\u4F7F\\u3063\\u3066\\u7814\\u7A76\\u3057\\u3066\\u307E\\u3057\\u305F\\u3002(\\u3063\\u3066\\u3059\\u3067\\u306Bgoogle\\u306B\\u983C\\u3063\\u3066\\u308B\\u3088\\u3046\\u306A\\u3082\\u306E\\u3060\\u3051\\u3069\\u3082\\u3002\\u3002\\u3002)", "to_user": "yamamasa23", "to_user_id": 103773155, "to_user_id_str": "103773155", "to_user_name": "Masa Yama", "in_reply_to_status_id": 148333201314689020, "in_reply_to_status_id_str": "148333201314689024"}, +{"created_at": "Sun, 18 Dec 2011 09:21:33 +0000", "from_user": "gold_bismuth", "from_user_id": 298532216, "from_user_id_str": "298532216", "from_user_name": "gold_bismuth", "geo": null, "id": 148332058392002560, "id_str": "148332058392002560", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694630308/bbc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694630308/bbc_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Hadoop\\u5B8C\\u6210\\u3068\\u540C\\u6642\\u306Bgoogle\\u691C\\u7D22\\u306E\\u5168\\u30A2\\u30EB\\u30B4\\u30EA\\u30BA\\u30E0\\u304C\\u6D41\\u51FA\\u3057\\u305F\\u3089\\u8A08\\u7B97\\u8CC7\\u6E90\\u91CF\\u304C\\u7206\\u767A\\u7684\\u767A\\u6398\\u3055\\u308C\\u3066\\u4E16\\u754C\\u304C\\u30E4\\u30D0\\u30A4\\u304F\\u306A\\u308B\\u3093\\u304B\\u306A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:54:20 +0000", "from_user": "citizenlow", "from_user_id": 28934419, "from_user_id_str": "28934419", "from_user_name": "citizenlow", "geo": null, "id": 148325208464437250, "id_str": "148325208464437249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693308524/square_and_retro_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693308524/square_and_retro_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "MT @mikeolson @josh_wills: Slides for the @cloudera data science team's talk on ML & #hadoop at #nips2011: http://t.co/4EjAM4c3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:53:31 +0000", "from_user": "gd047", "from_user_id": 415380812, "from_user_id_str": "415380812", "from_user_name": "George Dontas", "geo": null, "id": 148325002968694800, "id_str": "148325002968694784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1644898799/Copy_of_gd047_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644898799/Copy_of_gd047_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "#MapReduce for the Masses: Zero to #Hadoop in Five Minutes with Common Crawl http://t.co/Danaud8l", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:43:33 +0000", "from_user": "msnikosan", "from_user_id": 29941542, "from_user_id_str": "29941542", "from_user_name": "Nikos Anastopoulos", "geo": null, "id": 148322496498761730, "id_str": "148322496498761728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1443690739/avatarpic-l_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1443690739/avatarpic-l_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @MicrosoftBI: I uploaded a @YouTube video http://t.co/WWiuQpFL Introduction to the Hadoop on Azure Interactive Hive Console", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:29:04 +0000", "from_user": "adinelchirita", "from_user_id": 14053638, "from_user_id_str": "14053638", "from_user_name": "adinelchirita", "geo": null, "id": 148318853506670600, "id_str": "148318853506670592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1604712103/electric-dreams_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1604712103/electric-dreams_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @peteskomoroch: How to quickly process 40TB of data from Common Crawl using Hadoop & Amazon EC2 http://t.co/yum3VZyF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:22:44 +0000", "from_user": "moorsd", "from_user_id": 26789275, "from_user_id_str": "26789275", "from_user_name": "David Moors", "geo": null, "id": 148317259146862600, "id_str": "148317259146862592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/709629018/dm2_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/709629018/dm2_normal.gif", "source": "Zite Personalized Magazine", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/74fRC5MW #MapReduce #Hadoop #AWS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:18:18 +0000", "from_user": "w3lab", "from_user_id": 6183722, "from_user_id_str": "6183722", "from_user_name": "Tristan Thomas", "geo": null, "id": 148316141100605440, "id_str": "148316141100605440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1655919292/DSC_2163__2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655919292/DSC_2163__2__normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @nicolastorzec: Worth keeping in mind: datafu is LinkedIn's collection of #Pig UDFs for Statistics and Data Mining http://t.co/7Jlum0R5 - #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:02:03 +0000", "from_user": "petricek", "from_user_id": 11014982, "from_user_id_str": "11014982", "from_user_name": "petricek", "geo": null, "id": 148312054284025860, "id_str": "148312054284025856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/131340005/petricek_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/131340005/petricek_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:54:03 +0000", "from_user": "Giladst", "from_user_id": 18552017, "from_user_id_str": "18552017", "from_user_name": "Gilad Steinberger", "geo": null, "id": 148310041282351100, "id_str": "148310041282351104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1380737383/97228882c82a4b1cb3c5352e970b64b8_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1380737383/97228882c82a4b1cb3c5352e970b64b8_7_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "New Azure Release Supports Open Source Libraries Node.js, MongoDB, Hadoop, Solr, Memcached http://t.co/kn45ld2v", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:44:28 +0000", "from_user": "WayofJava", "from_user_id": 363289457, "from_user_id_str": "363289457", "from_user_name": "Java Developer", "geo": null, "id": 148307628957777920, "id_str": "148307628957777920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1520571328/javacode-908579_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1520571328/javacode-908579_normal.jpeg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "http://t.co/jzi7U3yd programmingfeed: haloop - An modified version of Hadoop to support efficient iterative data... http://t.co/m7e9ZNRS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:43:43 +0000", "from_user": "logicmd", "from_user_id": 45603439, "from_user_id_str": "45603439", "from_user_name": "\\u7D2B\\u6C14\\u516E\\u4E1C\\u6765", "geo": null, "id": 148307438494425100, "id_str": "148307438494425088", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1089529267/large_2135n169_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1089529267/large_2135n169_normal.jpg", "source": "<a href="http://logicmd.net" rel="nofollow">\\u7D2B\\u6C23\\u6771\\u4F86</a>", "text": "Hadoop\\u7684javadoc\\u5199\\u7684\\u4E00\\u584C\\u7CCA\\u6D82\\uFF0C\\u5565\\u90FD\\u4E0D\\u5199... \\u770B\\u770B\\u4EBA\\u5BB6Android\\uFF0CApache\\u8BE5\\u5411Google\\u5B66\\u4E60\\u554A\\uFF01", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:28:41 +0000", "from_user": "rjurney", "from_user_id": 15831927, "from_user_id_str": "15831927", "from_user_name": "Russell Jurney", "geo": null, "id": 148303654351413250, "id_str": "148303654351413248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1468674812/bad_avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1468674812/bad_avatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Very frustrated with hadoop data formats. There is no simple way to get data in or out.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:15:59 +0000", "from_user": "KaewGB", "from_user_id": 15037353, "from_user_id_str": "15037353", "from_user_name": "Kaew", "geo": null, "id": 148300458354671600, "id_str": "148300458354671617", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/537155451/Toad_Funny_Icon_crop_resize_bigger_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/537155451/Toad_Funny_Icon_crop_resize_bigger_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "I'm flooding NERSC's Hadoop job list. LOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:15:28 +0000", "from_user": "programmingfeed", "from_user_id": 23924836, "from_user_id_str": "23924836", "from_user_name": "programming feed", "geo": null, "id": 148300330097053700, "id_str": "148300330097053696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/93775994/progfeed_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/93775994/progfeed_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "haloop - An modified version of Hadoop to support efficient iterative data processing on large comm... http://t.co/AaQJIyKB #programming", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:11:44 +0000", "from_user": "Heybiiianca", "from_user_id": 384268572, "from_user_id_str": "384268572", "from_user_name": "Jemima Bianca\\u2122 \\u2661", "geo": null, "id": 148299389683765250, "id_str": "148299389683765248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697501999/p20111211-115951_-_Peter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697501999/p20111211-115951_-_Peter_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Succesful astrocamp! Wiii. Dougie on stage HADOOP. Pakapalan ng mukha sa stage makasayaw lang ng dougie!Sobrang SAYA!The best ! Thanks God .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:04:41 +0000", "from_user": "seekq", "from_user_id": 14902619, "from_user_id_str": "14902619", "from_user_name": "seekq", "geo": null, "id": 148297616130711550, "id_str": "148297616130711552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1309041921/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1309041921/image_normal.jpg", "source": "Zite Personalized Magazine", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/h30SUq0J via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:01:45 +0000", "from_user": "naoki014", "from_user_id": 131043882, "from_user_id_str": "131043882", "from_user_name": "naoki mashiko", "geo": null, "id": 148296877828354050, "id_str": "148296877828354048", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1097661903/_IMG_0010_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1097661903/_IMG_0010_normal.JPG", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "\\u7121\\u4E8B\\u5230\\u7740\\u3002\\u6771\\u540D\\u306E\\u539A\\u6728\\u301C\\u6A2A\\u6D5C\\u30673\\u56DE\\u3082\\u4E8B\\u6545\\u3092\\u307F\\u305F\\u3002\\u4E8B\\u6545\\u3063\\u3066\\u8D77\\u304D\\u308B\\u6642\\u306B\\u306F\\u8907\\u6570\\u306E\\u5834\\u6240\\u3067\\u8D77\\u304D\\u3066\\u308B\\u6C17\\u304C\\u3059\\u308B\\u3002hadoop\\u3068\\u304B\\u3067\\u4E8B\\u6545\\u767A\\u751F\\u78BA\\u7387\\u89E3\\u6790\\u3057\\u3066\\u3001\\u7D30\\u304B\\u3044\\u7C92\\u5EA6\\u3067\\u30C9\\u30E9\\u30A4\\u30D0\\u30FC\\u306B\\u304A\\u77E5\\u3089\\u305B\\u3067\\u304D\\u305F\\u3089\\u4E0D\\u5E78\\u304C\\u6E1B\\u3089\\u305B\\u308B\\u306E\\u3067\\u306F\\u306A\\u3044\\u304B\\u3068\\u5984\\u60F3\\u3057\\u3066\\u307F\\u308B\\u3002\\u3063\\u3066\\u3082\\u3046\\u3084\\u3063\\u3066\\u308B\\u4EBA\\u3044\\u308B\\u3093\\u3060\\u308D\\u306A\\u304D\\u3063\\u3068\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:00:36 +0000", "from_user": "squarecog", "from_user_id": 46440718, "from_user_id_str": "46440718", "from_user_name": "Dmitriy Ryaboy", "geo": null, "id": 148296589117632500, "id_str": "148296589117632512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/804718963/fbimg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/804718963/fbimg_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@rjurney if you are on a mac, go 1 commit back on hadoop-lzo. Turns out making ld behave the same on different *nix flavors is tricky.", "to_user": "rjurney", "to_user_id": 15831927, "to_user_id_str": "15831927", "to_user_name": "Russell Jurney", "in_reply_to_status_id": 148296257989910530, "in_reply_to_status_id_str": "148296257989910528"}, +{"created_at": "Sun, 18 Dec 2011 06:59:17 +0000", "from_user": "rjurney", "from_user_id": 15831927, "from_user_id_str": "15831927", "from_user_name": "Russell Jurney", "geo": null, "id": 148296257989910530, "id_str": "148296257989910528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1468674812/bad_avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1468674812/bad_avatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@squarecog @kevinweil I'm having trouble getting the dependency hadoop-lzo to build :(", "to_user": "squarecog", "to_user_id": 46440718, "to_user_id_str": "46440718", "to_user_name": "Dmitriy Ryaboy", "in_reply_to_status_id": 148290975847030800, "in_reply_to_status_id_str": "148290975847030784"}, +{"created_at": "Sun, 18 Dec 2011 06:55:03 +0000", "from_user": "INFAIM", "from_user_id": 145062108, "from_user_id_str": "145062108", "from_user_name": "Julianna DeLua (EIM)", "geo": null, "id": 148295190015246340, "id_str": "148295190015246336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "source": "<a href="http://futuretweets.com" rel="nofollow"> Futuretweets V2</a>", "text": "Most popular On-demand Webinar 2011 @ralphkimball http://t.co/FjsjlgSC Make data warehouse adaptable for #bigdata #hadoop @informaticacorp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:48:32 +0000", "from_user": "maxkalachev", "from_user_id": 333232986, "from_user_id_str": "333232986", "from_user_name": "Max Kalachev", "geo": null, "id": 148293550734446600, "id_str": "148293550734446592", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1647901278/max2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647901278/max2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ChrisDiehl: Modeling with Hadoop - KDD 2011 Tutorial - http://t.co/NfMNacWW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:47:26 +0000", "from_user": "curationary", "from_user_id": 10989382, "from_user_id_str": "10989382", "from_user_name": "Curationary", "geo": null, "id": 148293273176379400, "id_str": "148293273176379392", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1365955825/curationary_ico_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1365955825/curationary_ico_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "Hadoop and Machine Learning http://t.co/PMoIBy9K via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:40:46 +0000", "from_user": "markswall", "from_user_id": 19688728, "from_user_id_str": "19688728", "from_user_name": "Mark Wall", "geo": null, "id": 148291598248194050, "id_str": "148291598248194048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676652683/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676652683/Untitled_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft offers Hadoop preview on Azure Storage Technology News ... http://t.co/YcSvFUZR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:36:08 +0000", "from_user": "MSFT4EVER", "from_user_id": 205247045, "from_user_id_str": "205247045", "from_user_name": "Microsoft World News", "geo": null, "id": 148290432835657730, "id_str": "148290432835657728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1624255112/microsoft-logo-300x216_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624255112/microsoft-logo-300x216_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft Tries Hadoop on Azure: Microsoft added a trial version of Apache's open source Hadoop to its Windows A... http://t.co/u7X2aeK5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:25:49 +0000", "from_user": "d8Pit", "from_user_id": 264394701, "from_user_id_str": "264394701", "from_user_name": "The URL Popularizer", "geo": null, "id": 148287835252858880, "id_str": "148287835252858880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317284522/logo-header_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317284522/logo-header_normal.png", "source": "<a href="http://d8p.it" rel="nofollow">d8P</a>", "text": "RT @ialjkk: New MapR Hadoop Version Includes Windows, Mac Support #bigdata | http://t.co/7k8YLuYK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:24:45 +0000", "from_user": "nourlcn", "from_user_id": 70045630, "from_user_id_str": "70045630", "from_user_name": "\\u8682\\u8681", "geo": null, "id": 148287566070812670, "id_str": "148287566070812672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1529668189/katong_me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1529668189/katong_me_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "HFTP is a Hadoop filesystem implementation that lets you read data from a remote Hadoop HDFS cluster via HTTP, and data is sourced fr...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:21:16 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 148286691403243520, "id_str": "148286691403243520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "New MapR Hadoop Version Includes Windows, Mac Support http://t.co/hsypmkHL #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:19:59 +0000", "from_user": "followbotlist", "from_user_id": 420104059, "from_user_id_str": "420104059", "from_user_name": "\\u3076\\u308D\\u3063\\u304F\\u308A\\u3059\\u3068", "geo": null, "id": 148286367305187330, "id_str": "148286367305187328", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twittbot.net/" rel="nofollow">twittbot.net</a>", "text": "C\\u8A00\\u8A9E/C++/C#/F#/PHP/Perl/Ruby/Python/Lisp/Prolog/ML/Haskell/HTML5/VB/Basic/\\u30A6\\u30A7\\u30D6\\u30C7\\u30B6\\u30A4\\u30F3/\\u30EC\\u30F3\\u30BF\\u30EB\\u30B5\\u30FC\\u30D0/CGI/\\u30BB\\u30AD\\u30E5\\u30EA\\u30C6\\u30A3/FLASH/Web/\\u30BD\\u30FC\\u30B7\\u30E3\\u30EB/SNS/\\u30B0\\u30EB\\u30FC\\u30D7\\u30A6\\u30A7\\u30A2/Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:17:49 +0000", "from_user": "kimifusa", "from_user_id": 63910440, "from_user_id_str": "63910440", "from_user_name": "\\u3075\\u3058\\u3055\\u3093", "geo": null, "id": 148285821093552130, "id_str": "148285821093552128", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/559664546/akafuji2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/559664546/akafuji2_normal.jpg", "source": "<a href="http://www.soicha.com" rel="nofollow">SOICHA</a>", "text": "\\u30DE\\u30CD\\u30ED\\u30F3\\u3001\\u632F\\u308A\\u8FBC\\u3081\\u8A50\\u6B3A\\u9632\\u6B62\\u306E\\u89E3\\u6790\\u30B7\\u30B9\\u30C6\\u30E0\\u3002\\u5BCC\\u58EB\\u901A\\u3068NTT\\u30C7\\u30FC\\u30BF\\u304C\\u5171\\u540C\\u958B\\u767A\\u3002\\u5B89\\u4FA1\\u306A\\u30D1\\u30BD\\u30B3\\u30F3\\u30B5\\u30FC\\u30D0\\u30FC\\u3092\\u7E4B\\u304E\\u9AD8\\u901F\\u51E6\\u7406\\u304C\\u53EF\\u80FD\\u306A\\u30BD\\u30D5\\u30C8\\u3063\\u3066hadoop\\u3067\\u3059\\u304B\\u306D\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:15:42 +0000", "from_user": "stephenroller", "from_user_id": 13759132, "from_user_id_str": "13759132", "from_user_name": "Stephen Roller", "geo": null, "id": 148285289486495740, "id_str": "148285289486495744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/237613623/me3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/237613623/me3_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:07:03 +0000", "from_user": "patrickangeles", "from_user_id": 18193577, "from_user_id_str": "18193577", "from_user_name": "Patrick Angeles", "geo": null, "id": 148283113909403650, "id_str": "148283113909403648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/67818315/profile_image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/67818315/profile_image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:52:18 +0000", "from_user": "kn_shiva", "from_user_id": 334405372, "from_user_id_str": "334405372", "from_user_name": "Shiva", "geo": null, "id": 148279400528486400, "id_str": "148279400528486400", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1507689789/kn_shiva_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1507689789/kn_shiva_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @dpatil: oh yeah! \\u201C@mndoci: Hadoop and Pig at LinkedIn SNA http://t.co/KydyTQYE\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:45:57 +0000", "from_user": "Vivagvz", "from_user_id": 430054092, "from_user_id_str": "430054092", "from_user_name": "Viva Chidester", "geo": null, "id": 148277803756953600, "id_str": "148277803756953600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1677538957/r0ptxn55at_133044993_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677538957/r0ptxn55at_133044993_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Pro Hadoop: You\\u2019ve heard the hype about Hadoop: it runs petabyte\\u2013scale data mining tasks insanely fast, it runs ... http://t.co/ZsgQJwcT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:25:24 +0000", "from_user": "yapengwu", "from_user_id": 54426296, "from_user_id_str": "54426296", "from_user_name": "Yapeng Wu", "geo": null, "id": 148272630519181300, "id_str": "148272630519181312", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1382972548/P1000534_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1382972548/P1000534_1_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @simon: Love it :) \"@mndoci: Zero to #Hadoop in 5 minutes: http://t.co/UPA7VyWX #aws #coolstuff\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:18:54 +0000", "from_user": "stackfeed", "from_user_id": 237310237, "from_user_id_str": "237310237", "from_user_name": "StackOverflow", "geo": null, "id": 148270992463118340, "id_str": "148270992463118336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Unable to open iterator for alias in pig: I was doing some experiments in pig(hadoop mode).\\nI loaded the sample ... http://t.co/WSkvFbc8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:12:52 +0000", "from_user": "ichattopadhyaya", "from_user_id": 39338044, "from_user_id_str": "39338044", "from_user_name": "Ishan Chattopadhyaya", "geo": null, "id": 148269474376728580, "id_str": "148269474376728576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/215682146/ishan-hackergotchi_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/215682146/ishan-hackergotchi_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:12:17 +0000", "from_user": "nicolastorzec", "from_user_id": 61111487, "from_user_id_str": "61111487", "from_user_name": "Nicolas Torzec", "geo": null, "id": 148269327777411070, "id_str": "148269327777411072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1525441753/Photo_on_2011-09-02_at_11.47__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1525441753/Photo_on_2011-09-02_at_11.47__2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Worth keeping in mind: datafu is LinkedIn's collection of #Pig UDFs for Statistics and Data Mining http://t.co/7Jlum0R5 - #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:57:43 +0000", "from_user": "randymillstop", "from_user_id": 323431151, "from_user_id_str": "323431151", "from_user_name": "Randy Mills", "geo": null, "id": 148265662295453700, "id_str": "148265662295453696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1411575160/1308947703_forn421l_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1411575160/1308947703_forn421l_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Cloudera Expands Enterprise Management Software For Apache Hadoop With End-to-End Visibility for Big Data Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:48:00 +0000", "from_user": "melissahick", "from_user_id": 20812756, "from_user_id_str": "20812756", "from_user_name": "Melissa Hick", "geo": null, "id": 148263219818012670, "id_str": "148263219818012672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1136078385/46603_10100510039653261_2007937_71570084_5675483_n_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1136078385/46603_10100510039653261_2007937_71570084_5675483_n_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:42:16 +0000", "from_user": "sasaokstu9", "from_user_id": 397018488, "from_user_id_str": "397018488", "from_user_name": "Sasao Hunter", "geo": null, "id": 148261775731720200, "id_str": "148261775731720192", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@Umamor1 http://t.co/0zecFa07", "to_user": "Umamor1", "to_user_id": 73961204, "to_user_id_str": "73961204", "to_user_name": "That Girl Called Uma", "in_reply_to_status_id": 134975359144833020, "in_reply_to_status_id_str": "134975359144833025"}, +{"created_at": "Sun, 18 Dec 2011 04:40:09 +0000", "from_user": "ansmily", "from_user_id": 102714014, "from_user_id_str": "102714014", "from_user_name": "dily carrion", "geo": null, "id": 148261240861491200, "id_str": "148261240861491200", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1675574042/IMG01188-20111101-1143_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675574042/IMG01188-20111101-1143_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @compuenapex: Microsoft Azure aloja Hadoop y otras aplicaciones de c\\u00F3digo abierto http://t.co/KKdeRWDP #compuenapex", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:37:35 +0000", "from_user": "sasaokstu9", "from_user_id": 397018488, "from_user_id_str": "397018488", "from_user_name": "Sasao Hunter", "geo": null, "id": 148260596234715140, "id_str": "148260596234715136", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@PairadocsDental http://t.co/0zecFa07", "to_user": "PairadocsDental", "to_user_id": 317902344, "to_user_id_str": "317902344", "to_user_name": "Pairadocs Dental GRP", "in_reply_to_status_id": 134975171932061700, "in_reply_to_status_id_str": "134975171932061696"}, +{"created_at": "Sun, 18 Dec 2011 04:34:33 +0000", "from_user": "atsjobs", "from_user_id": 14892822, "from_user_id_str": "14892822", "from_user_name": "ATS Jobs", "geo": null, "id": 148259831667634180, "id_str": "148259831667634177", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/54806979/ATSjobs_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/54806979/ATSjobs_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Senior Hadoop ETL Engineer/Analyst - Taleo - Dublin, CA http://t.co/zbx8pD6I", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:34:00 +0000", "from_user": "dpatil", "from_user_id": 14839109, "from_user_id_str": "14839109", "from_user_name": "dj patil", "geo": null, "id": 148259695046561800, "id_str": "148259695046561792", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1307458892/Profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1307458892/Profile_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "oh yeah! \\u201C@mndoci: Hadoop and Pig at LinkedIn SNA http://t.co/KydyTQYE\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:33:44 +0000", "from_user": "sasaokstu9", "from_user_id": 397018488, "from_user_id_str": "397018488", "from_user_name": "Sasao Hunter", "geo": null, "id": 148259628789149700, "id_str": "148259628789149697", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@loveof3oranges http://t.co/0zecFa07", "to_user": "loveof3oranges", "to_user_id": 251866164, "to_user_id_str": "251866164", "to_user_name": "Love of 3 Oranges", "in_reply_to_status_id": 134975388081340420, "in_reply_to_status_id_str": "134975388081340416"}, +{"created_at": "Sun, 18 Dec 2011 04:33:04 +0000", "from_user": "kcqon", "from_user_id": 15573440, "from_user_id_str": "15573440", "from_user_name": "Kyle C. Quest", "geo": null, "id": 148259461771964400, "id_str": "148259461771964416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1483981355/kcq_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1483981355/kcq_pic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:30:22 +0000", "from_user": "sasaokstu9", "from_user_id": 397018488, "from_user_id_str": "397018488", "from_user_name": "Sasao Hunter", "geo": null, "id": 148258782273732600, "id_str": "148258782273732608", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@mousespah http://t.co/0zecFa07", "to_user": "mousespah", "to_user_id": 406671453, "to_user_id_str": "406671453", "to_user_name": "Egbert Enriquez", "in_reply_to_status_id": 134975376106590200, "in_reply_to_status_id_str": "134975376106590208"}, +{"created_at": "Sun, 18 Dec 2011 04:23:22 +0000", "from_user": "sasaokstu9", "from_user_id": 397018488, "from_user_id_str": "397018488", "from_user_name": "Sasao Hunter", "geo": null, "id": 148257018459861000, "id_str": "148257018459860993", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@VictoriaBiebeer http://t.co/0zecFa07", "to_user": "Victoriabiebeer", "to_user_id": 346683976, "to_user_id_str": "346683976", "to_user_name": "victoria", "in_reply_to_status_id": 134975407614214140, "in_reply_to_status_id_str": "134975407614214145"}, +{"created_at": "Sun, 18 Dec 2011 04:22:23 +0000", "from_user": "faizanj", "from_user_id": 24107824, "from_user_id_str": "24107824", "from_user_name": "Faizan Javed Ph.D.", "geo": null, "id": 148256771922866180, "id_str": "148256771922866177", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1220036226/pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1220036226/pic_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "RT @mndoci: Hadoop and Pig at LinkedIn SNA http://t.co/kxSuZJDv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:19:55 +0000", "from_user": "esteban", "from_user_id": 3352981, "from_user_id_str": "3352981", "from_user_name": "Esteban Gutierrez", "geo": null, "id": 148256151451082750, "id_str": "148256151451082752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1160811732/self4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1160811732/self4_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:13:49 +0000", "from_user": "hackingdata", "from_user_id": 16061930, "from_user_id_str": "16061930", "from_user_name": "Jeff Hammerbacher", "geo": null, "id": 148254614100262900, "id_str": "148254614100262913", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/759606364/q4781_7814_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/759606364/q4781_7814_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:12:28 +0000", "from_user": "sararuei", "from_user_id": 215649109, "from_user_id_str": "215649109", "from_user_name": "sara ruei", "geo": null, "id": 148254275145957380, "id_str": "148254275145957376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1166994094/4_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1166994094/4_bigger_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft has installed a version of Apache Hadoop on its Azure cloud service: Making decent on an announcement ... http://t.co/05f4Twqh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:01:21 +0000", "from_user": "shiumachi", "from_user_id": 11370182, "from_user_id_str": "11370182", "from_user_name": "Sho Shimauchi", "geo": null, "id": 148251476840554500, "id_str": "148251476840554497", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1112990537/2006-06-04_002_bigger_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1112990537/2006-06-04_002_bigger_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:01:13 +0000", "from_user": "sararuei", "from_user_id": 215649109, "from_user_id_str": "215649109", "from_user_name": "sara ruei", "geo": null, "id": 148251446515728400, "id_str": "148251446515728384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1166994094/4_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1166994094/4_bigger_normal.jpg", "source": "<a href="http://amuir.org" rel="nofollow">sara ruei</a>", "text": "Microsoft has installed a version of Apache Hadoop on its Azure cloud service - http://t.co/fxOq6dsq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:01:13 +0000", "from_user": "sararuei", "from_user_id": 215649109, "from_user_id_str": "215649109", "from_user_name": "sara ruei", "geo": null, "id": 148251444955451400, "id_str": "148251444955451392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1166994094/4_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1166994094/4_bigger_normal.jpg", "source": "<a href="http://amuir.org" rel="nofollow">sara ruei</a>", "text": "Microsoft has installed a version of Apache Hadoop on its Azure cloud service -", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:59:58 +0000", "from_user": "fwiffo", "from_user_id": 5503542, "from_user_id_str": "5503542", "from_user_name": "Joey Echeverria", "geo": null, "id": 148251128738496500, "id_str": "148251128738496512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/786576785/profile_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/786576785/profile_pic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:52:11 +0000", "from_user": "BeckieGetsBased", "from_user_id": 244335655, "from_user_id_str": "244335655", "from_user_name": "Beckiie:)", "geo": null, "id": 148249169843326980, "id_str": "148249169843326976", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683432328/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683432328/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Going to see Katie. Hadoop<3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:40:37 +0000", "from_user": "tatakaba", "from_user_id": 70071037, "from_user_id_str": "70071037", "from_user_name": "takahito takabayashi", "geo": null, "id": 148246259289948160, "id_str": "148246259289948160", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/555026214/___normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/555026214/___normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/yreader/id389733994" rel="nofollow">yReader</a>", "text": "Open source Crowbar code now available for Hadoop | Barton's Blog http://t.co/RxWDID7a", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:40:07 +0000", "from_user": "claudiomartella", "from_user_id": 52693451, "from_user_id_str": "52693451", "from_user_name": "Claudio Martella", "geo": null, "id": 148246133834125300, "id_str": "148246133834125312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/291874402/io_nuvole_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/291874402/io_nuvole_small_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @sscdotopen: New blogpost: Running #giraph's unit tests in a pseudo-distributed hadoop instance http://t.co/qOdCdkWJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:38:22 +0000", "from_user": "jpatanooga", "from_user_id": 14935521, "from_user_id_str": "14935521", "from_user_name": "Josh Patterson", "geo": null, "id": 148245692589154300, "id_str": "148245692589154304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1471343793/summer_shot_cropped_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1471343793/summer_shot_cropped_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rjurney: Pleased to see the Pig UDFs released by LinkedIn SNA team: http://t.co/ul1W8mgx #in #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:28:48 +0000", "from_user": "cuervocr", "from_user_id": 42284347, "from_user_id_str": "42284347", "from_user_name": "Carlos Cuervo ", "geo": null, "id": 148243288456048640, "id_str": "148243288456048640", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627723832/Datacenter_Carlos_Cuervo_Agosto_2005_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627723832/Datacenter_Carlos_Cuervo_Agosto_2005_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft Azure aloja Hadoop y otras aplicaciones de c\\u00F3digo abierto: Tal y como se se\\u00F1alara a inicios de este a\\u00F1... http://t.co/y9nXW4LN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:27:08 +0000", "from_user": "jaykreps", "from_user_id": 126226388, "from_user_id_str": "126226388", "from_user_name": "Jay Kreps", "geo": null, "id": 148242865867325440, "id_str": "148242865867325440", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/869018440/head_small_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/869018440/head_small_normal.JPG", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "RT @mndoci: Hadoop and Pig at LinkedIn SNA http://t.co/kxSuZJDv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:24:57 +0000", "from_user": "mndoci", "from_user_id": 605643, "from_user_id_str": "605643", "from_user_name": "Deepak Singh", "geo": null, "id": 148242318183497730, "id_str": "148242318183497729", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1106198507/3790132182_5d654efd4c_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1106198507/3790132182_5d654efd4c_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "Hadoop and Pig at LinkedIn SNA http://t.co/kxSuZJDv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:22:35 +0000", "from_user": "CareerSculptors", "from_user_id": 368299625, "from_user_id_str": "368299625", "from_user_name": "CareerSculptors ", "geo": null, "id": 148241721266933760, "id_str": "148241721266933761", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1561907486/cs2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1561907486/cs2_normal.png", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Hiring a Hadoop / Mapreduce Developer in California http://t.co/PcNB6TGP #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:17:29 +0000", "from_user": "ChrisDiehl", "from_user_id": 14595061, "from_user_id_str": "14595061", "from_user_name": "Chris Diehl", "geo": null, "id": 148240438879457280, "id_str": "148240438879457282", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/660241500/ZionSmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/660241500/ZionSmall_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Modeling with Hadoop - KDD 2011 Tutorial - http://t.co/NfMNacWW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:16:13 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 148240120858939400, "id_str": "148240120858939393", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hadoop-Hdfs-0.23-Build #106 [Jenkins] http://t.co/i7IIfGkN #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:12:16 +0000", "from_user": "rjurney", "from_user_id": 15831927, "from_user_id_str": "15831927", "from_user_name": "Russell Jurney", "geo": null, "id": 148239127790366720, "id_str": "148239127790366720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1468674812/bad_avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1468674812/bad_avatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Pleased to see the Pig UDFs released by LinkedIn SNA team: http://t.co/ul1W8mgx #in #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:11:40 +0000", "from_user": "jesuvaliant", "from_user_id": 86121541, "from_user_id_str": "86121541", "from_user_name": "Jesu Valiant", "geo": null, "id": 148238976204025860, "id_str": "148238976204025856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1276315028/Jesu_Valiant_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1276315028/Jesu_Valiant_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @WindowsAzure: Microsoft Tries Hadoop on #Windows #Azure: gives Windows Azure Big Data capabilities http://t.co/hgQobdw2 #Cloud /via @Cloud_Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:07:44 +0000", "from_user": "solbajoelmar", "from_user_id": 190465644, "from_user_id_str": "190465644", "from_user_name": "Pablo L H", "geo": null, "id": 148237985056440320, "id_str": "148237985056440321", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1437683420/a1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1437683420/a1_normal.jpg", "source": "<a href="http://news.ycombinator.com/" rel="nofollow">Hacker News Bot</a>", "text": "RT @hackernewsbot: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl... http://t.co/JGEaGFBn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:51:15 +0000", "from_user": "ctrl_alt_supr", "from_user_id": 19178236, "from_user_id_str": "19178236", "from_user_name": "Ctrl-Alt-Supr", "geo": null, "id": 148233837988675600, "id_str": "148233837988675584", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/71868677/encadenado_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/71868677/encadenado_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft Azure aloja Hadoop y otras aplicaciones de c\\u00F3digo abierto - ComputerWorld Venezuela http://t.co/4YBtkEZC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:49:29 +0000", "from_user": "andhos", "from_user_id": 42066641, "from_user_id_str": "42066641", "from_user_name": "Amjad Mohamed", "geo": null, "id": 148233391978975230, "id_str": "148233391978975233", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1653785782/photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653785782/photo_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "RT @rgaidot: MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/eId2csDr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:43:21 +0000", "from_user": "awatto", "from_user_id": 16662012, "from_user_id_str": "16662012", "from_user_name": "awatto", "geo": null, "id": 148231848462516220, "id_str": "148231848462516225", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/218313476/IMG_2589_2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/218313476/IMG_2589_2_normal.JPG", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @sadatshami: MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/1s1uXVdy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:37:59 +0000", "from_user": "y_a_s_s", "from_user_id": 111462305, "from_user_id_str": "111462305", "from_user_name": "yass", "geo": null, "id": 148230497254899700, "id_str": "148230497254899712", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1166894012/248_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1166894012/248_normal.png", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "[amazon][big data][hadoop][aws] / \\u201CAmazon Web Services Planning Real-Time, Big Data Stream Processing Service | Servi\\u2026\\u201D http://t.co/msWHAXys", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:25:08 +0000", "from_user": "StephenHawking9", "from_user_id": 341975857, "from_user_id_str": "341975857", "from_user_name": "Stephen Hawking", "geo": null, "id": 148227266709692400, "id_str": "148227266709692416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1459648557/StephanHawking_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1459648557/StephanHawking_normal.jpg", "source": "<a href="http://suhastech.com/tr" rel="nofollow">Tweet Random</a>", "text": "24 Interview Questions & Answers for Hadoop developers http://t.co/QOsinPTo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:21:36 +0000", "from_user": "rokorokoroko", "from_user_id": 44231643, "from_user_id_str": "44231643", "from_user_name": "Roko", "geo": null, "id": 148226373683642370, "id_str": "148226373683642369", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1225490181/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225490181/profile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:03:48 +0000", "from_user": "muralikrishnag", "from_user_id": 50158109, "from_user_id_str": "50158109", "from_user_name": "murali gandluru", "geo": null, "id": 148221894615773200, "id_str": "148221894615773184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Interesting, wonder what this does to FB NW design...\"Timeline uses MySQL, not Hadoop Hbase\"\\nhttp://t.co/eiHGp9pK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:55:21 +0000", "from_user": "ludofleury", "from_user_id": 47574527, "from_user_id_str": "47574527", "from_user_name": "Ludovic Fleury", "geo": null, "id": 148204670819643400, "id_str": "148204670819643392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1264063021/ludovic_fleury_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1264063021/ludovic_fleury_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "RT @rgaidot: MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/eId2csDr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:54:08 +0000", "from_user": "landehorsl", "from_user_id": 322643938, "from_user_id_str": "322643938", "from_user_name": "Landen Horsley", "geo": null, "id": 148204364165693440, "id_str": "148204364165693441", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1409567817/1308841562_sql_server_agent_1_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1409567817/1308841562_sql_server_agent_1_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Microsoft updates Azure with SDK and Hadoop preview - Register http://t.co/RP5Pb1VQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:36:17 +0000", "from_user": "_akisato", "from_user_id": 136650757, "from_user_id_str": "136650757", "from_user_name": "Akisato Kimura", "geo": null, "id": 148199872619757570, "id_str": "148199872619757568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/847946963/6317668_1055526607_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/847946963/6317668_1055526607_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:35:15 +0000", "from_user": "jay23jack", "from_user_id": 438655117, "from_user_id_str": "438655117", "from_user_name": "Jie Li", "geo": null, "id": 148199611486572540, "id_str": "148199611486572544", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": null, "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: 8 Most Interesting Companies for Hadoop's Future http://t.co/DGjsMLzh #Hadoop #Cloudera #Hortonworks #MapR #Hadapt #HPCC #DataStax #Zettaset", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:27:06 +0000", "from_user": "tmj_sfo_itdb", "from_user_id": 24697038, "from_user_id_str": "24697038", "from_user_name": "TMJ-SFO IT-DB Jobs", "geo": +{"coordinates": [37.7239,-122.4793], "type": "Point"}, "id": 148197562367746050, "id_str": "148197562367746048", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1501613411/Logo_tmj_new2b_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1501613411/Logo_tmj_new2b_normal.png", "source": "<a href="http://tweetmyjobs.com" rel="nofollow">SafeTweet by TweetMyJOBS</a>", "text": "CBS Corporation: Senior Hadoop Database Engineer ( #SanFrancisco , CA) http://t.co/qONPXBOu #Database #Job #Jobs #TweetMyJOBS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:24:06 +0000", "from_user": "martinabbott", "from_user_id": 38205552, "from_user_id_str": "38205552", "from_user_name": "Martin Abbott", "geo": null, "id": 148196806667415550, "id_str": "148196806667415552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/964353511/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/964353511/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rogerjenn: Added an Introduction to the #Hadoop on #Azure Interactive #Hive Console video to my current blog post: http://t.co/5NEHoktj #Cloud #BigData", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:09:14 +0000", "from_user": "wollepb", "from_user_id": 15015126, "from_user_id_str": "15015126", "from_user_name": "Wolfgang Reinhardt", "geo": null, "id": 148193063712473100, "id_str": "148193063712473088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1333572768/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1333572768/avatar_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/MQ4HHgPu via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:59:59 +0000", "from_user": "nyoppie", "from_user_id": 77865975, "from_user_id_str": "77865975", "from_user_name": "nyop", "geo": null, "id": 148190738197381120, "id_str": "148190738197381120", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1238406817/funifuku_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1238406817/funifuku_normal.jpg", "source": "<a href="http://twipple.jp/" rel="nofollow">\\u3064\\u3044\\u3063\\u3077\\u308B Pro for iPhone</a>", "text": "\\u9280\\u884C\\u306E\\u4E0D\\u6B63\\u53D6\\u5F15\\u691C\\u77E5\\u3001\\u5206\\u6563\\u7CFB\\u306E\\u30A2\\u30FC\\u30AD\\u30C6\\u30AF\\u30C1\\u30E3\\u3063\\u307D\\u3044\\u3051\\u3069\\u3001\\u3084\\u3071Hadoop\\u306A\\u3093\\u3060\\u308D\\u3046\\u304B\\uFF1F\\n\\u306B\\u3057\\u3066\\u3082CEP\\u3063\\u3066\\u30B7\\u30B9\\u30C6\\u30E0\\u4EE5\\u4E0A\\u306B\\u30EB\\u30FC\\u30EB\\u7D44\\u3080\\u306E\\u304C\\u96E3\\u3057\\u3044\\u3088\\u306A\\u3002\\nhttp://t.co/vlP1V2pY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:51:07 +0000", "from_user": "wunderkid", "from_user_id": 15167928, "from_user_id_str": "15167928", "from_user_name": "wunderkid", "geo": null, "id": 148188506945097730, "id_str": "148188506945097728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1622289560/Wunderkid_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622289560/Wunderkid_2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:40:55 +0000", "from_user": "pphanicareers", "from_user_id": 218695843, "from_user_id_str": "218695843", "from_user_name": "Phani", "geo": null, "id": 148185938093285380, "id_str": "148185938093285376", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: 8 Most Interesting Companies for Hadoop's Future http://t.co/DGjsMLzh #Hadoop #Cloudera #Hortonworks #MapR #Hadapt #HPCC #DataStax #Zettaset", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:40:47 +0000", "from_user": "mikeolson", "from_user_id": 803694, "from_user_id_str": "803694", "from_user_name": "Mike Olson", "geo": null, "id": 148185903762911230, "id_str": "148185903762911232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/69588222/head_shot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/69588222/head_shot_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/2gRq2D3a", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:37:51 +0000", "from_user": "from92714second", "from_user_id": 261707865, "from_user_id_str": "261707865", "from_user_name": "from92714second", "geo": null, "id": 148185166077112320, "id_str": "148185166077112320", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://www.eqentia.com" rel="nofollow">Eqentia</a>", "text": "RT @cloudEq: Microsoft Tries Hadoop on Azure http://t.co/CFmeKdlK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:32:30 +0000", "from_user": "from92714second", "from_user_id": 261707865, "from_user_id_str": "261707865", "from_user_name": "from92714second", "geo": null, "id": 148183821316132860, "id_str": "148183821316132864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://www.eqentia.com" rel="nofollow">Eqentia</a>", "text": "RT @cloudEq: Is Hadoop the new stored procedure ? http://t.co/oIVM4zTv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:30:11 +0000", "from_user": "Bay_Area_Jobs", "from_user_id": 65245080, "from_user_id_str": "65245080", "from_user_name": "Bay Area Jobs", "geo": null, "id": 148183235145379840, "id_str": "148183235145379840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/359850596/californiaflag_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/359850596/californiaflag_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Now Hiring: 5 Applications Architect - HADOOP/JAVA/J2EE Techno http://t.co/KixcEkeV Jobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:30:04 +0000", "from_user": "sfahad", "from_user_id": 42889631, "from_user_id_str": "42889631", "from_user_name": "Fahad Shah", "geo": null, "id": 148183209576890370, "id_str": "148183209576890368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/261897199/mypic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/261897199/mypic_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @sadatshami: MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/1s1uXVdy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:13:36 +0000", "from_user": "sreevatsanraman", "from_user_id": 58385843, "from_user_id_str": "58385843", "from_user_name": "sreevatsan raman", "geo": null, "id": 148179065663266800, "id_str": "148179065663266818", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:08:46 +0000", "from_user": "enriqueros", "from_user_id": 194104422, "from_user_id_str": "194104422", "from_user_name": "Enrique Ros", "geo": null, "id": 148177848065196030, "id_str": "148177848065196032", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1592307777/enrique.ros.profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592307777/enrique.ros.profile_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @W_TEN_G: Muy buen articulo acerca de Hadoop en BI http://t.co/hR6Ea5Dc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:08:24 +0000", "from_user": "xcbsmith", "from_user_id": 18576450, "from_user_id_str": "18576450", "from_user_name": "Christopher Smith", "geo": null, "id": 148177754859376640, "id_str": "148177754859376641", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/85358991/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/85358991/me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:07:12 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 148177451896418300, "id_str": "148177451896418304", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hadoop-Mapreduce-0.23-Build #124 [Jenkins] http://t.co/t5Li4Bzg #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:07:04 +0000", "from_user": "f90fe", "from_user_id": 61937301, "from_user_id_str": "61937301", "from_user_name": "Manish Agarwal", "geo": null, "id": 148177420757901300, "id_str": "148177420757901312", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1657291450/IMG_4558_s1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657291450/IMG_4558_s1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "What is Hadoop?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Sat, 17 Dec 2011 23:06:48 +0000", "from_user": "JeffMarvin", "from_user_id": 38384157, "from_user_id_str": "38384157", "from_user_name": "Jeff Marvin", "geo": null, "id": 148177354102013950, "id_str": "148177354102013952", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681544664/N7Shark_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681544664/N7Shark_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @strataconf: Five Big Data predictions for 2012 http://t.co/0no2xN8g via @radar #bigdata #visualization #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:04:30 +0000", "from_user": "rgaidot", "from_user_id": 1245801, "from_user_id_str": "1245801", "from_user_name": "R\\u00E9gis Gaidot", "geo": null, "id": 148176774432432130, "id_str": "148176774432432129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1266738841/avatar-6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266738841/avatar-6_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/eId2csDr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:59:34 +0000", "from_user": "sadatshami", "from_user_id": 23984573, "from_user_id_str": "23984573", "from_user_name": "Sadat Shami", "geo": null, "id": 148175533677613060, "id_str": "148175533677613056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/295326456/sadat_shami_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/295326456/sadat_shami_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/1s1uXVdy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:48:04 +0000", "from_user": "kevinduh", "from_user_id": 117742529, "from_user_id_str": "117742529", "from_user_name": "Kevin Duh", "geo": null, "id": 148172639716909060, "id_str": "148172639716909056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1317115134/portrait_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317115134/portrait_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:44:28 +0000", "from_user": "TimMattison", "from_user_id": 16650099, "from_user_id_str": "16650099", "from_user_name": "Tim Mattison", "geo": null, "id": 148171732535099400, "id_str": "148171732535099392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1618766799/timmattison-twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618766799/timmattison-twitter_normal.png", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "YES! Hadoop training is on this week with @cloudera. Writing a few articles about my newly developed Hadoop skills soon...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:30:18 +0000", "from_user": "paulrosania", "from_user_id": 15007480, "from_user_id_str": "15007480", "from_user_name": "Paul Rosania", "geo": null, "id": 148168166160334850, "id_str": "148168166160334849", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/905259976/Paul_Rosania-square_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/905259976/Paul_Rosania-square_normal.jpg", "source": "<a href="http://timely.is" rel="nofollow">Timely by Demandforce</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/2pseNHZ3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:25:53 +0000", "from_user": "d8Pit", "from_user_id": 264394701, "from_user_id_str": "264394701", "from_user_name": "The URL Popularizer", "geo": null, "id": 148167055114379260, "id_str": "148167055114379264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317284522/logo-header_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317284522/logo-header_normal.png", "source": "<a href="http://d8p.it" rel="nofollow">d8P</a>", "text": "RT @lespider: My blog post about data perishability - #splunk #hadoop #bigdata #in | http://t.co/55madDDT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:22:41 +0000", "from_user": "lespider", "from_user_id": 378266869, "from_user_id_str": "378266869", "from_user_name": "B Chen", "geo": null, "id": 148166249858347000, "id_str": "148166249858347008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1555270339/spider-man-logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555270339/spider-man-logo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "My blog post about data perishability - http://t.co/0LGAerGD #splunk #hadoop #bigdata #in", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:15:44 +0000", "from_user": "BethWPR", "from_user_id": 80382526, "from_user_id_str": "80382526", "from_user_name": "Beth Winkowski", "geo": null, "id": 148164501915713540, "id_str": "148164501915713536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/473391533/Beth_Head_Shot_9-4-09__1___2__normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/473391533/Beth_Head_Shot_9-4-09__1___2__normal.JPG", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @Wikibon: MapR Hadoop Strategy Stresses Performance, Availability and API Compatibility Over Open Source Code http://t.co/Z2Hc3SrU by @jeffreyfkelly", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:56:43 +0000", "from_user": "stlogicscorp", "from_user_id": 419813881, "from_user_id_str": "419813881", "from_user_name": "stlogics corp", "geo": null, "id": 148159717221470200, "id_str": "148159717221470208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1654287587/STLogics_5a_jpg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654287587/STLogics_5a_jpg_normal.jpg", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Know anyone for this job? Hadoop Training and SharePoint Training in Indianapolis, IN http://t.co/I4cPs3Bb #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:49:19 +0000", "from_user": "ChrisDiehl", "from_user_id": 14595061, "from_user_id_str": "14595061", "from_user_name": "Chris Diehl", "geo": null, "id": 148157853444739070, "id_str": "148157853444739072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/660241500/ZionSmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/660241500/ZionSmall_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:48:58 +0000", "from_user": "MrChrisJohnson", "from_user_id": 29661283, "from_user_id_str": "29661283", "from_user_name": "Christopher Johnson", "geo": null, "id": 148157766614257660, "id_str": "148157766614257664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1585369458/TeacherHead_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585369458/TeacherHead_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Enjoyed @matei_zaharia's #NIPS2011 workshop on #Spark and am excited to start playing w/ it (Hadoop for iterative algos == muy malo)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:47:44 +0000", "from_user": "lhillenbrand", "from_user_id": 22845507, "from_user_id_str": "22845507", "from_user_name": "Linden Hillenbrand", "geo": null, "id": 148157456458063870, "id_str": "148157456458063872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/87892395/n18500934_32419491_1963_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/87892395/n18500934_32419491_1963_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:37:44 +0000", "from_user": "acanimal", "from_user_id": 227674156, "from_user_id_str": "227674156", "from_user_name": "Antonio Santiago", "geo": null, "id": 148154939317813250, "id_str": "148154939317813248", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1192770772/antonio_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1192770772/antonio_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/feeddler-rss-reader-pro/id365710282?mt=8" rel="nofollow">Feeddler</a>", "text": "Introducing hadoop in 20 pages http://t.co/aqM3a7fT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:32:10 +0000", "from_user": "Taneli", "from_user_id": 2068881, "from_user_id_str": "2068881", "from_user_name": "Taneli Mielik\\u00E4inen", "geo": null, "id": 148153538747441150, "id_str": "148153538747441153", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/591220431/4113878348_bc8ed11826_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/591220431/4113878348_bc8ed11826_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Bitdeli: Data in 2012: Less Hadoop, more interactivity, experimentation, streaming and visualizations http://t.co/epxPI0QJ by @edd #hadoop #datavis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:26:50 +0000", "from_user": "mladjemi", "from_user_id": 68467066, "from_user_id_str": "68467066", "from_user_name": "Mehdi Ladjemi", "geo": null, "id": 148152193730625540, "id_str": "148152193730625537", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/379361013/2f1955badebe529782916c805f146a88_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/379361013/2f1955badebe529782916c805f146a88_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Azure : baisse des co\\u00FBts, SDK pour Node.js & plusieurs outils open source http://t.co/f676x81V via @ClubicPro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:26:25 +0000", "from_user": "Arcond", "from_user_id": 105179055, "from_user_id_str": "105179055", "from_user_name": "Alexander Kahoun", "geo": null, "id": 148152090118725630, "id_str": "148152090118725632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1667293656/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667293656/profile_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rogerjenn: Added an Introduction to the #Hadoop on #Azure Interactive #Hive Console video to my current blog post: http://t.co/5NEHoktj #Cloud #BigData", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:21:30 +0000", "from_user": "stackfeed", "from_user_id": 237310237, "from_user_id_str": "237310237", "from_user_name": "StackOverflow", "geo": null, "id": 148150854808113150, "id_str": "148150854808113152", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hadoop Fairschduler doesn't utilize all map slots: Running a 12-node hadoop cluster with total 48 map-slots avai... http://t.co/aniOuYlG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:16:39 +0000", "from_user": "rickggaribay", "from_user_id": 14164915, "from_user_id_str": "14164915", "from_user_name": "Rick G. Garibay", "geo": null, "id": 148149630729863170, "id_str": "148149630729863169", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1382402285/3cae00bf-9e68-49db-b905-64df96c40c96_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1382402285/3cae00bf-9e68-49db-b905-64df96c40c96_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rogerjenn: Added an Introduction to the #Hadoop on #Azure Interactive #Hive Console video to my current blog post: http://t.co/5NEHoktj #Cloud #BigData", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:15:15 +0000", "from_user": "javiercbk", "from_user_id": 94555589, "from_user_id_str": "94555589", "from_user_name": "Javier Lecuona", "geo": null, "id": 148149281856045060, "id_str": "148149281856045056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1666569364/XO3r4rWK_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666569364/XO3r4rWK_normal", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "I have so many things to read about software. Also I'm experimenting with node.js and MongoDB and going to play with hadoop later #in #geek", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:14:40 +0000", "from_user": "repeatedly", "from_user_id": 6731442, "from_user_id_str": "6731442", "from_user_name": "Mr. Fiber", "geo": null, "id": 148149133969068030, "id_str": "148149133969068032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1523175058/mini_new_icon_from_unno_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1523175058/mini_new_icon_from_unno_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:13:23 +0000", "from_user": "mopatel", "from_user_id": 17971178, "from_user_id_str": "17971178", "from_user_name": "Mo Patel", "geo": null, "id": 148148809761964030, "id_str": "148148809761964032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1189265555/profile3-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1189265555/profile3-1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:10:57 +0000", "from_user": "suzuvie_re", "from_user_id": 163804732, "from_user_id_str": "163804732", "from_user_name": "\\u3059\\u305A\\u304D\\u3068\\u3082", "geo": null, "id": 148148195816521730, "id_str": "148148195816521728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1443102380/SN370094.jpg_____normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1443102380/SN370094.jpg_____normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:09:25 +0000", "from_user": "Dottyrbp", "from_user_id": 430058492, "from_user_id_str": "430058492", "from_user_name": "Dotty Kondel", "geo": null, "id": 148147811794423800, "id_str": "148147811794423810", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677543381/qotn2ru4t5_122480869_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677543381/qotn2ru4t5_122480869_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Pro Hadoop: You\\u2019ve heard the hype about Hadoop: it runs petabyte\\u2013scale data mining tasks insanely fast, it runs ... http://t.co/faI4KpI4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:04:55 +0000", "from_user": "jpatanooga", "from_user_id": 14935521, "from_user_id_str": "14935521", "from_user_name": "Josh Patterson", "geo": null, "id": 148146678002757630, "id_str": "148146678002757633", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1471343793/summer_shot_cropped_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1471343793/summer_shot_cropped_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:01:20 +0000", "from_user": "nuvan", "from_user_id": 25082515, "from_user_id_str": "25082515", "from_user_name": "Nuno Valente", "geo": null, "id": 148145776030265340, "id_str": "148145776030265345", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/105214566/he-man_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/105214566/he-man_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/UMCxiD3u via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:58:29 +0000", "from_user": "josh_wills", "from_user_id": 14578294, "from_user_id_str": "14578294", "from_user_name": "Josh Wills", "geo": null, "id": 148145062449123330, "id_str": "148145062449123328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1392809578/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1392809578/me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:57:03 +0000", "from_user": "venkat_sahasra", "from_user_id": 321575837, "from_user_id_str": "321575837", "from_user_name": "Venkat Prasad", "geo": null, "id": 148144701487321100, "id_str": "148144701487321088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1406743308/logo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1406743308/logo_normal.gif", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Hadoop Training Program in Quincy, MA http://t.co/OuJk2rwH #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:49:09 +0000", "from_user": "optimusinfo", "from_user_id": 35262440, "from_user_id_str": "35262440", "from_user_name": "Optimus Information", "geo": null, "id": 148142709713014800, "id_str": "148142709713014784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/853822167/square_logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/853822167/square_logo_normal.png", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "RT @bmann: Azure price cuts, bigger databases, now with node.js and MongoDB support, Hadoop on its way - I\\u2019m impressed... http://t.co/3GBpDOzo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:45:14 +0000", "from_user": "wesmckinn", "from_user_id": 115494880, "from_user_id_str": "115494880", "from_user_name": "Wes McKinney", "geo": null, "id": 148141727516082180, "id_str": "148141727516082177", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1585682840/pic3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585682840/pic3_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:41:35 +0000", "from_user": "patrickclee0207", "from_user_id": 113093915, "from_user_id_str": "113093915", "from_user_name": "Patrick Lee", "geo": null, "id": 148140809626198000, "id_str": "148140809626198016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1164401647/twitterProfile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1164401647/twitterProfile_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @MicrosoftBI: I uploaded a @YouTube video http://t.co/WWiuQpFL Introduction to the Hadoop on Azure Interactive Hive Console", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:38:02 +0000", "from_user": "UpSearchBI", "from_user_id": 367246669, "from_user_id_str": "367246669", "from_user_name": "UpSearchBI", "geo": null, "id": 148139915232817150, "id_str": "148139915232817152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1526810136/UpSearch-image-all-black-square_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1526810136/UpSearch-image-all-black-square_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @MicrosoftBI: I uploaded a @YouTube video http://t.co/WWiuQpFL Introduction to the Hadoop on Azure Interactive Hive Console", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:35:26 +0000", "from_user": "CosimoAccoto", "from_user_id": 92730373, "from_user_id_str": "92730373", "from_user_name": "Cosimo Accoto", "geo": null, "id": 148139260552298500, "id_str": "148139260552298496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1432102362/Cosimo_A__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1432102362/Cosimo_A__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:34:04 +0000", "from_user": "LearnExcel", "from_user_id": 114589142, "from_user_id_str": "114589142", "from_user_name": "Guruonline-Iwebslog", "geo": null, "id": 148138915864387600, "id_str": "148138915864387584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/698010679/excel_2003_01_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/698010679/excel_2003_01_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "http://t.co/pHoXARdG-Microsoft Tries Hadoop on Azure: s App Engine. Users can build MapReduce jobs. Microsoft... http://t.co/t8wuWyrn #Excel", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:27:32 +0000", "from_user": "David_Ginzburg", "from_user_id": 37094219, "from_user_id_str": "37094219", "from_user_name": "David Ginzburg", "geo": null, "id": 148137270468288500, "id_str": "148137270468288512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1658569830/nelson_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658569830/nelson_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:26:18 +0000", "from_user": "NewHorizonsCLC", "from_user_id": 57162623, "from_user_id_str": "57162623", "from_user_name": "New Horizons", "geo": null, "id": 148136959544533000, "id_str": "148136959544532992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/317231961/NHColorLogoNoTag_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/317231961/NHColorLogoNoTag_sm_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#Microsoft offers Hadoop preview on Azure http://t.co/zJp7ects", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:17:57 +0000", "from_user": "darkrho", "from_user_id": 8260242, "from_user_id_str": "8260242", "from_user_name": "Rolando Espinoza", "geo": null, "id": 148134859183898620, "id_str": "148134859183898624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1631307886/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631307886/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:17:15 +0000", "from_user": "peteskomoroch", "from_user_id": 14344469, "from_user_id_str": "14344469", "from_user_name": "Peter Skomoroch", "geo": null, "id": 148134682612088830, "id_str": "148134682612088834", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1331342742/skomoroch_photo_ocean_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1331342742/skomoroch_photo_ocean_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:17:13 +0000", "from_user": "phunt", "from_user_id": 12370372, "from_user_id_str": "12370372", "from_user_name": "Patrick Hunt", "geo": null, "id": 148134676601634800, "id_str": "148134676601634816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/80884383/phunt3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/80884383/phunt3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_wills: Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:11:39 +0000", "from_user": "TechnoMile", "from_user_id": 89779407, "from_user_id_str": "89779407", "from_user_name": "TechnoMile LLC", "geo": null, "id": 148133275523751940, "id_str": "148133275523751936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1187113101/techomile_normal_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1187113101/techomile_normal_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Added an Introduction to the #Hadoop on #Azure Interactive #Hive Console video to my current blog post: http://t... http://t.co/oC3iCOMM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:10:08 +0000", "from_user": "rogerjenn", "from_user_id": 14107861, "from_user_id_str": "14107861", "from_user_name": "Roger Jennings", "geo": null, "id": 148132892759965700, "id_str": "148132892759965697", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1568028233/OakLeafLogoMVP100px_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1568028233/OakLeafLogoMVP100px_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Added an Introduction to the #Hadoop on #Azure Interactive #Hive Console video to my current blog post: http://t.co/5NEHoktj #Cloud #BigData", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:08:09 +0000", "from_user": "josh_wills", "from_user_id": 14578294, "from_user_id_str": "14578294", "from_user_name": "Josh Wills", "geo": null, "id": 148132394166267900, "id_str": "148132394166267904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1392809578/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1392809578/me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Slides for the @cloudera data science team's talk on machine learning and #hadoop at #nips2011: http://t.co/yHSkpDxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:01:53 +0000", "from_user": "UMMgl", "from_user_id": 26720438, "from_user_id_str": "26720438", "from_user_name": "Gianluca Nardin", "geo": null, "id": 148130816961159170, "id_str": "148130816961159168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/339976078/ahhh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/339976078/ahhh_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @AssemblingIT: Moving an Elephant: Large Scale Hadoop Data Migration at Facebook -> http://t.co/Lw6U72L8 #USER experiences..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:01:06 +0000", "from_user": "usetrigo", "from_user_id": 210122331, "from_user_id_str": "210122331", "from_user_name": "Eusebio Trigo", "geo": null, "id": 148130617756885000, "id_str": "148130617756884994", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1172429059/NerdHerd_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1172429059/NerdHerd_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @chain: Nuevo art\\u00EDculo en mi blog! Ah\\u00ED van mis dos c\\u00E9ntimos sobre #Hadoop y #BusinessIntelligence. http://t.co/xfHf4oJA #lohabiaprometido", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:54:08 +0000", "from_user": "jamestwhitehead", "from_user_id": 50410452, "from_user_id_str": "50410452", "from_user_name": "James Whitehead", "geo": null, "id": 148128867826143230, "id_str": "148128867826143232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1440275355/JamesProfile_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1440275355/JamesProfile_normal.JPG", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @MicrosoftBI: I uploaded a @YouTube video http://t.co/WWiuQpFL Introduction to the Hadoop on Azure Interactive Hive Console", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:53:05 +0000", "from_user": "ravisRealm", "from_user_id": 49320694, "from_user_id_str": "49320694", "from_user_name": "Raviteja", "geo": null, "id": 148128600544133120, "id_str": "148128600544133120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686041314/384376_334563946560263_100000199815735_1621040_849866453_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686041314/384376_334563946560263_100000199815735_1621040_849866453_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Hadoop Map Reduce is definitely a boon to Server based companies.. Kudos to apache for its innovation..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:50:19 +0000", "from_user": "chain", "from_user_id": 13049522, "from_user_id_str": "13049522", "from_user_name": "Antonio Rivas", "geo": null, "id": 148127904633593860, "id_str": "148127904633593856", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1326225474/215D6832-75FE-42AD-A3E6-1DD7BB0609A2_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1326225474/215D6832-75FE-42AD-A3E6-1DD7BB0609A2_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "Gracias! RT @W_TEN_G Muy buen articulo acerca de Hadoop en BI http://t.co/7C1Ryrsw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:49:28 +0000", "from_user": "unspiced", "from_user_id": 231414165, "from_user_id_str": "231414165", "from_user_name": "zinia adriaanse", "geo": null, "id": 148127692552802300, "id_str": "148127692552802304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1200783306/Twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1200783306/Twitter_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @MicrosoftBI: I uploaded a @YouTube video http://t.co/WWiuQpFL Introduction to the Hadoop on Azure Interactive Hive Console", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:46:07 +0000", "from_user": "MicrosoftBI", "from_user_id": 227829587, "from_user_id_str": "227829587", "from_user_name": "Microsoft BI", "geo": null, "id": 148126848889536500, "id_str": "148126848889536512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1214935103/Twitter-Icon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1214935103/Twitter-Icon_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I uploaded a @YouTube video http://t.co/WWiuQpFL Introduction to the Hadoop on Azure Interactive Hive Console", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:41:45 +0000", "from_user": "cutting", "from_user_id": 7542902, "from_user_id_str": "7542902", "from_user_name": "Doug Cutting", "geo": null, "id": 148125748123795460, "id_str": "148125748123795456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1550705879/DougBWSquare_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1550705879/DougBWSquare_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:28:30 +0000", "from_user": "W_TEN_G", "from_user_id": 342736818, "from_user_id_str": "342736818", "from_user_name": "Wilinton Tenorio", "geo": null, "id": 148122415061405700, "id_str": "148122415061405698", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Muy buen articulo acerca de Hadoop en BI http://t.co/hR6Ea5Dc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:26:27 +0000", "from_user": "Tshooter", "from_user_id": 5393922, "from_user_id_str": "5393922", "from_user_name": "Vinod Kumar V", "geo": null, "id": 148121901162692600, "id_str": "148121901162692608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1228756940/LatestPassportSize_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1228756940/LatestPassportSize_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:23:43 +0000", "from_user": "VanessaAlvarez1", "from_user_id": 16494284, "from_user_id_str": "16494284", "from_user_name": "Vanessa Alvarez", "geo": null, "id": 148121210075619330, "id_str": "148121210075619328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1615554216/FB_profile_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615554216/FB_profile_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @AssemblingIT: Moving an Elephant: Large Scale Hadoop Data Migration at Facebook -> http://t.co/Lw6U72L8 #USER experiences..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:23:12 +0000", "from_user": "valb00", "from_user_id": 15373404, "from_user_id_str": "15373404", "from_user_name": "valb00", "geo": null, "id": 148121083734802430, "id_str": "148121083734802432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1162802602/screen-capture-4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1162802602/screen-capture-4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @AssemblingIT: Moving an Elephant: Large Scale Hadoop Data Migration at Facebook -> http://t.co/Lw6U72L8 #USER experiences..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:10:43 +0000", "from_user": "blargeaux", "from_user_id": 422976542, "from_user_id_str": "422976542", "from_user_name": "Gerry Blargeaux", "geo": null, "id": 148117938426228740, "id_str": "148117938426228737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1661432649/Haeckel_Actiniae2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661432649/Haeckel_Actiniae2_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl | CommonCrawl http://t.co/xTNLCl8u via @addthis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:10:29 +0000", "from_user": "ngzax", "from_user_id": 9336642, "from_user_id_str": "9336642", "from_user_name": "Daryl Richter", "geo": null, "id": 148117879718555650, "id_str": "148117879718555648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1140875085/Photo_on_2010-10-09_at_14.28__3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1140875085/Photo_on_2010-10-09_at_14.28__3_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\"Brian ONeill s Blog: Hadoop MapReduce on Cassandra using Ruby and REST!\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:08:27 +0000", "from_user": "Techits", "from_user_id": 330375746, "from_user_id_str": "330375746", "from_user_name": "Technology Stream", "geo": null, "id": 148117371217911800, "id_str": "148117371217911808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1429141616/2207_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1429141616/2207_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl | CommonCrawl http://t.co/ccliUMmJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:07:08 +0000", "from_user": "proggitarticles", "from_user_id": 169429865, "from_user_id_str": "169429865", "from_user_name": "Proggit Articles", "geo": null, "id": 148117036344688640, "id_str": "148117036344688641", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl | CommonCrawl: submitted by mindrunn... http://t.co/r5Hj8WlF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:05:44 +0000", "from_user": "robotdharma", "from_user_id": 49160357, "from_user_id_str": "49160357", "from_user_name": "Eric ", "geo": null, "id": 148116684639703040, "id_str": "148116684639703040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/329176432/w_thumb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/329176432/w_thumb_normal.jpg", "source": "<a href="http://news.ycombinator.com/" rel="nofollow">Hacker News Bot</a>", "text": "RT @hackernewsbot: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl... http://t.co/JGEaGFBn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:01:27 +0000", "from_user": "jaredbrown", "from_user_id": 873901, "from_user_id_str": "873901", "from_user_name": "Jared Brown", "geo": null, "id": 148115606892314620, "id_str": "148115606892314624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1252982648/eightbit-f5132c56-cadc-43d6-a0a0-0f4417a96c8c_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1252982648/eightbit-f5132c56-cadc-43d6-a0a0-0f4417a96c8c_normal.png", "source": "<a href="http://www.talentopoly.com" rel="nofollow">Talentopoly</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/sdOQP1Uw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:01:26 +0000", "from_user": "tlntco", "from_user_id": 254050040, "from_user_id_str": "254050040", "from_user_name": "Talentopoly Feed", "geo": null, "id": 148115604723871740, "id_str": "148115604723871744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1248090661/T-Icon-vector_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1248090661/T-Icon-vector_normal.png", "source": "<a href="http://www.talentopoly.com" rel="nofollow">Talentopoly</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/xgRPpHfu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:57:02 +0000", "from_user": "markwigmans", "from_user_id": 7527532, "from_user_id_str": "7527532", "from_user_name": "Mark Wigmans", "geo": null, "id": 148114498748821500, "id_str": "148114498748821504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/837273831/MWI_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/837273831/MWI_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "Azure price cuts, bigger databases, now with node.js and MongoDB support, Hadoop on its way http://t.co/Z8pV69Fh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:48:04 +0000", "from_user": "smieszal", "from_user_id": 261779605, "from_user_id_str": "261779605", "from_user_name": "Adam Smieszny", "geo": null, "id": 148112239688302600, "id_str": "148112239688302592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1263932860/6400_656128556165_21408616_37970801_2872639_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263932860/6400_656128556165_21408616_37970801_2872639_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:44:46 +0000", "from_user": "alltop_java", "from_user_id": 191999280, "from_user_id_str": "191999280", "from_user_name": "Alltop Java", "geo": null, "id": 148111411460050940, "id_str": "148111411460050944", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1128524576/IloveAlltop_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1128524576/IloveAlltop_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Introducing hadoop in 20 pages http://t.co/q3cNZ5G1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:36:27 +0000", "from_user": "edenciso", "from_user_id": 14263141, "from_user_id_str": "14263141", "from_user_name": "Eduardo Enciso", "geo": null, "id": 148109318078734340, "id_str": "148109318078734336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1455339373/Edu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1455339373/Edu_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Microsoft Tries Hadoop on Azure | Cloud Computing Journal: http://t.co/wITNZtIa via @AddThis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:35:19 +0000", "from_user": "AssemblingIT", "from_user_id": 99696414, "from_user_id_str": "99696414", "from_user_name": "Alex Delgado Ruiz", "geo": null, "id": 148109031339343870, "id_str": "148109031339343872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/595694351/foto_carnet_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/595694351/foto_carnet_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Moving an Elephant: Large Scale Hadoop Data Migration at Facebook -> http://t.co/Lw6U72L8 #USER experiences..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:34:19 +0000", "from_user": "SyntressTech", "from_user_id": 246459852, "from_user_id_str": "246459852", "from_user_name": "Syntress", "geo": null, "id": 148108781925040130, "id_str": "148108781925040128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1243202871/Screen_shot_2011-02-13_at_9.37.14_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1243202871/Screen_shot_2011-02-13_at_9.37.14_AM_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl | CommonCrawl http://t.co/qcXAahJu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:31:45 +0000", "from_user": "jefkingabc", "from_user_id": 242907489, "from_user_id_str": "242907489", "from_user_name": "Jef King", "geo": null, "id": 148108135658295300, "id_str": "148108135658295296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1628969602/HeadShot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628969602/HeadShot_normal.jpg", "source": "<a href="http://paper.li" rel="nofollow">Paper.li</a>", "text": "RT @Cloud9s: Hadoop News and Influencers is out! http://t.co/kWfOYKZF \\u25B8 Top stories today via @zementis @otisg @sybaseanalytics @techmilind @billsandhill", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:31:29 +0000", "from_user": "sturlese", "from_user_id": 22685998, "from_user_id_str": "22685998", "from_user_name": "Marc Sturlese", "geo": null, "id": 148108066112536580, "id_str": "148108066112536577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1166866589/sturlese_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1166866589/sturlese_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:31:11 +0000", "from_user": "Cloud9s", "from_user_id": 14759893, "from_user_id_str": "14759893", "from_user_name": "Kevin Haynes", "geo": null, "id": 148107992397647870, "id_str": "148107992397647872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1333766120/Kevin_sun_glasses_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1333766120/Kevin_sun_glasses_normal.jpg", "source": "<a href="http://paper.li" rel="nofollow">Paper.li</a>", "text": "Hadoop News and Influencers is out! http://t.co/kWfOYKZF \\u25B8 Top stories today via @zementis @otisg @sybaseanalytics @techmilind @billsandhill", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:26:43 +0000", "from_user": "anrizal", "from_user_id": 54428352, "from_user_id_str": "54428352", "from_user_name": "anrizal", "geo": null, "id": 148106868961722370, "id_str": "148106868961722368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1205555041/photo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1205555041/photo_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @sscdotopen: New blogpost: Running #giraph's unit tests in a pseudo-distributed hadoop instance http://t.co/qOdCdkWJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:26:02 +0000", "from_user": "HaggbergConsult", "from_user_id": 149980936, "from_user_id_str": "149980936", "from_user_name": "Marie Haggberg", "geo": null, "id": 148106695132971000, "id_str": "148106695132971010", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664347672/Profile2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664347672/Profile2_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Hadoop and F# Map/Reduce functions: http://t.co/Bkz08t7v via @buckwoody #data #code", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:25:43 +0000", "from_user": "bmann", "from_user_id": 10821, "from_user_id_str": "10821", "from_user_name": "Boris Mann", "geo": null, "id": 148106616493981700, "id_str": "148106616493981696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1245832990/bmann_instagram_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1245832990/bmann_instagram_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Azure price cuts, bigger databases, now with node.js and MongoDB support, Hadoop on its way - I\\u2019m impressed... http://t.co/3GBpDOzo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:22:40 +0000", "from_user": "rahuljuneja", "from_user_id": 36554645, "from_user_id_str": "36554645", "from_user_name": "Rahul Juneja", "geo": null, "id": 148105849603231740, "id_str": "148105849603231744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/248976046/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/248976046/images_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "InfoQ: SOA\\u2019s Role in the Emerging Hadoop World: http://t.co/1ucfpuoS #hadoop #soa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:20:23 +0000", "from_user": "VRajaRao", "from_user_id": 265225982, "from_user_id_str": "265225982", "from_user_name": "Vadugu Raja Rao", "geo": null, "id": 148105273842741250, "id_str": "148105273842741248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Windows Azure Updated To Support Hadoop and Node.js http://t.co/b9JSXCQO via @toolsjournal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:17:31 +0000", "from_user": "VRajaRao", "from_user_id": 265225982, "from_user_id_str": "265225982", "from_user_name": "Vadugu Raja Rao", "geo": null, "id": 148104553642987520, "id_str": "148104553642987520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Windows Azure Updated To Support Hadoop and Node.js http://t.co/b9JSXCQO via @toolsjournal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:09:43 +0000", "from_user": "noiano", "from_user_id": 54919596, "from_user_id_str": "54919596", "from_user_name": "Marco Didonna", "geo": null, "id": 148102590989742080, "id_str": "148102590989742080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1673085134/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673085134/avatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "ubuntu repos are not working in #aws today:( can't run #hadoop cluster #ec2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:08:25 +0000", "from_user": "RiseVision", "from_user_id": 18480294, "from_user_id_str": "18480294", "from_user_name": "Rise Vision", "geo": null, "id": 148102261384552450, "id_str": "148102261384552448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/857654993/Rise_icon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/857654993/Rise_icon_normal.png", "source": "Zite Personalized Magazine", "text": "Neat~MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/B1NKJ0Mx via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:07:43 +0000", "from_user": "OBrien_Siobhan", "from_user_id": 20972333, "from_user_id_str": "20972333", "from_user_name": "Siobhan O'Brien", "geo": null, "id": 148102087731970050, "id_str": "148102087731970049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1584578872/09.03.09_001_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584578872/09.03.09_001_normal.jpg", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Know anyone for this job? Hadoop Developer #2676 in Boston, MA http://t.co/87tRZBbA #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:04:32 +0000", "from_user": "jinnli", "from_user_id": 18330621, "from_user_id_str": "18330621", "from_user_name": "\\u01C7", "geo": null, "id": 148101284187222000, "id_str": "148101284187222016", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1579601171/_______normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1579601171/_______normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Introducing hadoop in 20 pages http://t.co/vJ7p9slE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:04:08 +0000", "from_user": "tjf00420", "from_user_id": 29569215, "from_user_id_str": "29569215", "from_user_name": "Tyler Frederick", "geo": null, "id": 148101183058362370, "id_str": "148101183058362368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1220080588/SPavatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1220080588/SPavatar_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Safari on iOS</a>", "text": "Hadoop and the Network. Good read. http://t.co/qBopeuwA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:04:03 +0000", "from_user": "esammer", "from_user_id": 9264352, "from_user_id_str": "9264352", "from_user_name": "Eric Sammer", "geo": null, "id": 148101162430763000, "id_str": "148101162430763008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/260959723/Photo_4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/260959723/Photo_4_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:00:13 +0000", "from_user": "uupaa", "from_user_id": 30881611, "from_user_id_str": "30881611", "from_user_name": "uupaa", "geo": null, "id": 148100198978166800, "id_str": "148100198978166784", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1296768888/uupaa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1296768888/uupaa_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\\u300CArrows\\u30E6\\u30FC\\u30B6\\u306F\\u6F5C\\u5728\\u7684\\u8AB2\\u91D1\\u7387\\u3059\\u3054\\u3044\\u3093\\u3058\\u3083\\u306A\\u3044\\u304B\\u8AAC\\u300D Arrows\\u306B\\u9650\\u3089\\u305A\\u56FD\\u7523Android\\u7AEF\\u672B\\u30E6\\u30FC\\u30B6\\u306E\\u6F5C\\u5728\\u7684\\u8AB2\\u91D1\\u7387\\u306A\\u3093\\u304B\\u51C4\\u305D\\u3046\\u3060\\u304B\\u3089\\u3001iPhone\\u3084\\u97D3\\u56FD\\u88FD\\u7AEF\\u672B\\u3088\\u308A\\u512A\\u9047\\u3057\\u3066\\u3042\\u3052\\u3066\\u8AB2\\u91D1\\u7387UP\\u306B\\u3064\\u306A\\u3052\\u3088\\u3046\\u3068\\u3044\\u3046\\u767A\\u60F3\\u304C\\u3001\\u305D\\u308D\\u305D\\u308D\\u3069\\u3063\\u304B\\u306EHadoop\\u304B\\u3089\\u5C0E\\u304D\\u51FA\\u3055\\u308C\\u3066\\u3082\\u5225\\u306B\\u9A5A\\u304B\\u306A\\u3044\\u304B\\u306A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:50:13 +0000", "from_user": "Crypt0s", "from_user_id": 54561212, "from_user_id_str": "54561212", "from_user_name": "Cryptos", "geo": null, "id": 148097679619129340, "id_str": "148097679619129344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1282764111/eightbit-1207520f-c49d-43d8-84e6-30427ead6dcf_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1282764111/eightbit-1207520f-c49d-43d8-84e6-30427ead6dcf_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@brocknoland I'm just having trouble figuring out if I'm doing it in \"the hadoop way\" to get the best perf. I'm just doing stringmatching.", "to_user": "brocknoland", "to_user_id": 15394413, "to_user_id_str": "15394413", "to_user_name": "brocknoland", "in_reply_to_status_id": 147536609540186100, "in_reply_to_status_id_str": "147536609540186112"}, +{"created_at": "Sat, 17 Dec 2011 17:49:52 +0000", "from_user": "barbz79it", "from_user_id": 167353135, "from_user_id_str": "167353135", "from_user_name": "Michele Barbera", "geo": null, "id": 148097594776764400, "id_str": "148097594776764417", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1150048187/my_avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1150048187/my_avatar_normal.jpg", "source": "<a href="http://www.nibirutech.com" rel="nofollow">TwitBird</a>", "text": "RT @netseven_it Five Big Data predictions for 2012 http://t.co/5Ishmkfl #bigdata #visualization #hadoop (via @radar @strataconf @lod_it)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:40:21 +0000", "from_user": "dev_links", "from_user_id": 309995604, "from_user_id_str": "309995604", "from_user_name": "Joe Fawzy", "geo": null, "id": 148095199124520960, "id_str": "148095199124520960", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Introducing hadoop in 20 pages http://t.co/NyPubMrD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:39:52 +0000", "from_user": "lhillenbrand", "from_user_id": 22845507, "from_user_id_str": "22845507", "from_user_name": "Linden Hillenbrand", "geo": null, "id": 148095078458597380, "id_str": "148095078458597377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/87892395/n18500934_32419491_1963_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/87892395/n18500934_32419491_1963_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "You're my hero. RT: @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beaut...#hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:38:38 +0000", "from_user": "Denisse_Matsuno", "from_user_id": 310634357, "from_user_id_str": "310634357", "from_user_name": "Denisse _Matsuno", "geo": null, "id": 148094766725341200, "id_str": "148094766725341186", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1381123929/199698675673_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1381123929/199698675673_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "No, Hadoop Doesn't Own Big Data Analytics! - Big Data Big ...: Keep in mind that there are many things required ... http://t.co/GpqmRDyo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:34:05 +0000", "from_user": "oleg_usoltsev", "from_user_id": 351734565, "from_user_id_str": "351734565", "from_user_name": "Oleg Usoltsev", "geo": null, "id": 148093623320322050, "id_str": "148093623320322048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1486592331/retroportrait_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1486592331/retroportrait_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Research Shoots Hadoop, Clouds Out of the Sky http://t.co/VwdOtfQE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:31:53 +0000", "from_user": "mwm42", "from_user_id": 310937325, "from_user_id_str": "310937325", "from_user_name": "Manuel", "geo": null, "id": 148093067407261700, "id_str": "148093067407261696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1382659642/bild2kleiner_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1382659642/bild2kleiner_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:28:34 +0000", "from_user": "chicorss", "from_user_id": 216513473, "from_user_id_str": "216513473", "from_user_name": "Chico RSS", "geo": null, "id": 148092231700590600, "id_str": "148092231700590592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Introducing hadoop in 20 pages: Getting started in hadoop for a newbie is a non trivial task\\u2026 http://t.co/inQzzeE7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:27:03 +0000", "from_user": "tjf00420", "from_user_id": 29569215, "from_user_id_str": "29569215", "from_user_name": "Tyler Frederick", "geo": null, "id": 148091850811654140, "id_str": "148091850811654144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1220080588/SPavatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1220080588/SPavatar_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Safari on iOS</a>", "text": "Fantastic MapReduce with Hadoop article http://t.co/viW21if8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:26:27 +0000", "from_user": "sscdotopen", "from_user_id": 153208675, "from_user_id_str": "153208675", "from_user_name": "Sebastian", "geo": null, "id": 148091702400393200, "id_str": "148091702400393217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1467250573/sebastian_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1467250573/sebastian_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:25:33 +0000", "from_user": "tlipcon", "from_user_id": 16820641, "from_user_id_str": "16820641", "from_user_name": "Todd Lipcon", "geo": null, "id": 148091474817466370, "id_str": "148091474817466370", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1244722513/photo-cropped_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1244722513/photo-cropped_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:24:21 +0000", "from_user": "didierrano", "from_user_id": 11248062, "from_user_id_str": "11248062", "from_user_name": "Didier Rano", "geo": null, "id": 148091172139696130, "id_str": "148091172139696128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/80871363/cbe5fa3ab1258c1ca8914d637a17d141_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/80871363/cbe5fa3ab1258c1ca8914d637a17d141_normal.jpeg", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/5qbbPrE2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:19:44 +0000", "from_user": "followbotlist", "from_user_id": 420104059, "from_user_id_str": "420104059", "from_user_name": "\\u3076\\u308D\\u3063\\u304F\\u308A\\u3059\\u3068", "geo": null, "id": 148090012091678720, "id_str": "148090012091678720", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twittbot.net/" rel="nofollow">twittbot.net</a>", "text": "C\\u8A00\\u8A9E/C++/C#/F#/PHP/Perl/Ruby/Python/Lisp/Prolog/ML/Haskell/HTML5/VB/Basic/\\u30A6\\u30A7\\u30D6\\u30C7\\u30B6\\u30A4\\u30F3/\\u30EC\\u30F3\\u30BF\\u30EB\\u30B5\\u30FC\\u30D0/CGI/\\u30BB\\u30AD\\u30E5\\u30EA\\u30C6\\u30A3/FLASH/Web/\\u30BD\\u30FC\\u30B7\\u30E3\\u30EB/SNS/\\u30B0\\u30EB\\u30FC\\u30D7\\u30A6\\u30A7\\u30A2/Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:17:59 +0000", "from_user": "sedictor", "from_user_id": 66209189, "from_user_id_str": "66209189", "from_user_name": "sedictor", "geo": null, "id": 148089571110952960, "id_str": "148089571110952960", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701422602/petr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701422602/petr_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "http://t.co/LSoz55uw \\u2014 \\u0438 \\u0432\\u0435\\u0440\\u0441\\u0438\\u0438 Hadoop \\u0438 Pig \\u043E\\u0431\\u043D\\u043E\\u0432\\u0438\\u043B\\u0438. \\u0415\\u0449\\u0435 \\u0431\\u044B Hive \\u043E\\u0431\\u043D\\u043E\\u0432\\u0438\\u043B\\u0438 \\u0431\\u044B \\u0438 \\u0432\\u043E\\u043E\\u0431\\u0449\\u0435 \\u043A\\u0440\\u0430\\u0441\\u043E\\u0442\\u0430 :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:17:27 +0000", "from_user": "mccoyjus", "from_user_id": 247850191, "from_user_id_str": "247850191", "from_user_name": "Justin McCoy", "geo": null, "id": 148089434322116600, "id_str": "148089434322116608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1394619332/34726_433990041450_642136450_5242917_7444530_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1394619332/34726_433990041450_642136450_5242917_7444530_n_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @infochimps: RT @dguyadeen: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl: http://t.co/LkgSIWAl #BigData #Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:16:37 +0000", "from_user": "msusies", "from_user_id": 54159278, "from_user_id_str": "54159278", "from_user_name": "Miss Susie", "geo": null, "id": 148089224929869820, "id_str": "148089224929869825", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/299573565/charisse-mcauliffe-hot-eco-ceo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/299573565/charisse-mcauliffe-hot-eco-ceo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl | CommonCrawl: submitted by mindrunn... http://t.co/KxVSISIW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:15:48 +0000", "from_user": "phunt", "from_user_id": 12370372, "from_user_id_str": "12370372", "from_user_name": "Patrick Hunt", "geo": null, "id": 148089021317390340, "id_str": "148089021317390336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/80884383/phunt3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/80884383/phunt3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Sat, 17 Dec 2011 17:11:54 +0000", "from_user": "tom_e_white", "from_user_id": 28835645, "from_user_id_str": "28835645", "from_user_name": "Tom White", "geo": null, "id": 148088037581139970, "id_str": "148088037581139970", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/200791394/tom_white_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/200791394/tom_white_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:10:35 +0000", "from_user": "jpatanooga", "from_user_id": 14935521, "from_user_id_str": "14935521", "from_user_name": "Josh Patterson", "geo": null, "id": 148087707078365200, "id_str": "148087707078365184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1471343793/summer_shot_cropped_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1471343793/summer_shot_cropped_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @atm: I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:09:26 +0000", "from_user": "atm", "from_user_id": 27152588, "from_user_id_str": "27152588", "from_user_name": "Aaron T. Myers", "geo": null, "id": 148087419617554430, "id_str": "148087419617554432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/365896973/bee_suit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/365896973/bee_suit_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I just got MR2 running on HA HDFS. Killed active NN under a running MR job and the job kept going. Beautiful thing. #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:09:00 +0000", "from_user": "kekline", "from_user_id": 22445912, "from_user_id_str": "22445912", "from_user_name": "Kevin Kline", "geo": null, "id": 148087309529657340, "id_str": "148087309529657344", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/388076294/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/388076294/twitterProfilePhoto_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @strataconf: Five Big Data predictions for 2012 http://t.co/Kq3ZxbYD via @radar #bigdata #visualization #hadoop #nosql #oreilly", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:08:28 +0000", "from_user": "srinikumar", "from_user_id": 21634684, "from_user_id_str": "21634684", "from_user_name": "Srini Kumar", "geo": null, "id": 148087174749892600, "id_str": "148087174749892608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/414807792/Srini_Kumar_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/414807792/Srini_Kumar_normal.gif", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Check out this SlideShare presentation : Hadoop and Hive Development at Facebook http://t.co/r5PYhmub", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:05:06 +0000", "from_user": "vikasdp", "from_user_id": 152682018, "from_user_id_str": "152682018", "from_user_name": "Vikas Pandya", "geo": null, "id": 148086328624562180, "id_str": "148086328624562176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1140915733/VP_twitter_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1140915733/VP_twitter_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@otisg are there any solr + hadoop success stories/references/papers to read upon? Have a usecase and need to prototype first.", "to_user": "otisg", "to_user_id": 8501652, "to_user_id_str": "8501652", "to_user_name": "Otis Gospodneti\\u0107"}, +{"created_at": "Sat, 17 Dec 2011 17:02:40 +0000", "from_user": "srinikumar", "from_user_id": 21634684, "from_user_id_str": "21634684", "from_user_name": "Srini Kumar", "geo": null, "id": 148085716402978800, "id_str": "148085716402978816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/414807792/Srini_Kumar_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/414807792/Srini_Kumar_normal.gif", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Facebook : HIVE: Data Warehousing & Analytics on Hadoop http://t.co/f80V5Zam", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:59:06 +0000", "from_user": "hariktriam", "from_user_id": 56933670, "from_user_id_str": "56933670", "from_user_name": "Takahiro Miura", "geo": null, "id": 148084819052601340, "id_str": "148084819052601344", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/643635116/n1214949804_1438_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/643635116/n1214949804_1438_normal.jpg", "source": "<a href="http://itok.jp/blog/software/hummings/" rel="nofollow">Hummings</a>", "text": "\\u3042\\u3068\\u306Fn\\u30B0\\u30E9\\u30E0\\u3092\\u4F55\\u304B\\u3057\\u3089\\u306E\\u65B9\\u6CD5\\u3067\\u6B63\\u898F\\u5316\\u3057\\u3066\\u308B\\u306E\\u304B\\u306A\\uFF1F\\u8F9E\\u66F8\\u4F9D\\u5B58\\u3057\\u306A\\u3044\\u65B9\\u6CD5\\u3068\\u3057\\u3066\\uFF0C\\u7279\\u5FB4\\u8A9E\\u62BD\\u51FA\\u307F\\u305F\\u3044\\u306A\\u7814\\u7A76\\u3082\\u3042\\u308B\\u3051\\u3069\\uFF0C\\u305D\\u3046\\u306A\\u308B\\u3068\\u9AD8\\u901F\\u5316\\u304C\\u2026\\uFF0E\\u30D0\\u30C3\\u30AF\\u30DC\\u30FC\\u30F3\\u304C\\u4F55\\u304B\\u306B\\u3088\\u3063\\u3066DB\\u3084\\u3089\\u4E26\\u5217\\u8A08\\u7B97(Hadoop)\\u3092\\u4E0A\\u624B\\u304F\\u99C6\\u4F7F\\u3057\\u3066\\u308B\\u306E\\u304B\\u3082\\u306A\\uFF0E\\u2026\\u610F\\u5916\\u3068\\u6280\\u8853\\u306E\\u7121\\u99C4\\u9063\\u3044\\u304B\\u3082\\uFF57\\uFF0ERT \\u8A9E\\u5F59\\u529B\\u5224\\u5B9A\\u3084\\u53E3\\u7656\\u5206\\u6790\\uFF0C", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:56:48 +0000", "from_user": "BlueBoxTraveler", "from_user_id": 33632713, "from_user_id_str": "33632713", "from_user_name": "\\u092F\\u093E\\u0915\\u0942\\u092C", "geo": null, "id": 148084237160026100, "id_str": "148084237160026112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1678377258/Screen_Shot_2011-12-06_at_8.13.13_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678377258/Screen_Shot_2011-12-06_at_8.13.13_PM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @sscdotopen: New blogpost: Running #giraph's unit tests in a pseudo-distributed hadoop instance http://t.co/qOdCdkWJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:51:42 +0000", "from_user": "y_a_s_s", "from_user_id": 111462305, "from_user_id_str": "111462305", "from_user_name": "yass", "geo": null, "id": 148082957255589900, "id_str": "148082957255589888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1166894012/248_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1166894012/248_normal.png", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "[hbase][hadoop][backup][s3][aws] / \\u201CBizosys Company Blog: HBase Backup to Amazon S3\\u201D http://t.co/FmLfJ3WF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:46:58 +0000", "from_user": "TheBigDataTrap", "from_user_id": 389163301, "from_user_id_str": "389163301", "from_user_name": "The Big Data Trap", "geo": null, "id": 148081765649616900, "id_str": "148081765649616897", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1584049409/twitter_prof_-big-data_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584049409/twitter_prof_-big-data_normal.jpg", "source": "<a href="http://trap.it" rel="nofollow">Trapit</a>", "text": "Microsoft Tries Hadoop on Azure http://t.co/ZINNmjlM #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:45:43 +0000", "from_user": "neuhausler", "from_user_id": 15800786, "from_user_id_str": "15800786", "from_user_name": "Marcel Neuhausler", "geo": null, "id": 148081449722064900, "id_str": "148081449722064896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1626388826/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626388826/profile_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "\"For-your-boss\" Saturday morning .. watched \"Apache Hadoop - Petabytes and Terawatts\" http://t.co/12FUXsuM .. excellent overview.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:44:49 +0000", "from_user": "predditfeed", "from_user_id": 141139216, "from_user_id_str": "141139216", "from_user_name": "feed reddit", "geo": null, "id": 148081224274026500, "id_str": "148081224274026496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl | CommonCrawl: submitted by mindrunn... http://t.co/uJnSohTe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:38:48 +0000", "from_user": "nessykalvo", "from_user_id": 16207251, "from_user_id_str": "16207251", "from_user_name": "nessykalvo", "geo": null, "id": 148079708121202700, "id_str": "148079708121202689", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/290201830/nessykalvo42_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/290201830/nessykalvo42_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "Hadoop Explosion !!! http://t.co/st4eSmGx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:27:49 +0000", "from_user": "edenciso", "from_user_id": 14263141, "from_user_id_str": "14263141", "from_user_name": "Eduardo Enciso", "geo": null, "id": 148076943391199230, "id_str": "148076943391199233", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1455339373/Edu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1455339373/Edu_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Availability of Community Technology Preview (CTP) of Hadoop based Service on Windows Azure http://t.co/f735NsSf via @SQLServer", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:26:53 +0000", "from_user": "DevNambi", "from_user_id": 37100602, "from_user_id_str": "37100602", "from_user_name": "Dev Nambi", "geo": null, "id": 148076711655899140, "id_str": "148076711655899137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1531520928/0140722c-940e-4c3f-9b60-7c3b84d2c4b3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1531520928/0140722c-940e-4c3f-9b60-7c3b84d2c4b3_normal.png", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "RT @datachick: MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/TAxV275b < Maybe 20 minutes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:24:55 +0000", "from_user": "adroitjobs", "from_user_id": 232291222, "from_user_id_str": "232291222", "from_user_name": "Adroit Resources", "geo": null, "id": 148076216585420800, "id_str": "148076216585420801", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1208095437/adroit-logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1208095437/adroit-logo_normal.jpg", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Looking for a Java Engg (with Hadoop) in San Jose, CA http://t.co/QTf6wlAG #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:15:40 +0000", "from_user": "nourlcn", "from_user_id": 70045630, "from_user_id_str": "70045630", "from_user_name": "\\u8682\\u8681", "geo": null, "id": 148073886796361730, "id_str": "148073886796361728", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1529668189/katong_me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1529668189/katong_me_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\u901A\\u8FC7@\\u5FAE\\u76D8 \\u5206\\u4EAB\\u6587\\u4EF6\"Correlation based File Prefetching Approach for Hadoop.pdf\" HDFS\\u4E2D\\u9884\\u53D6\\u673A\\u5236\\u63D0\\u9AD8\\u6027\\u80FD.#HADOOP# #HDFS# http://t.co/hIGj1A2Q", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:14:40 +0000", "from_user": "scottdunlop", "from_user_id": 25550110, "from_user_id_str": "25550110", "from_user_name": "Scott Dunlop", "geo": null, "id": 148073636656455680, "id_str": "148073636656455681", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/104874078/blogscott_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/104874078/blogscott_normal.jpg", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Big data Software Engineers - Java, RoR, Hadoop, Cassandra, Solr, Machine Learning - start... http://t.co/af1lmAoq #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:14:16 +0000", "from_user": "uu59", "from_user_id": 220567130, "from_user_id_str": "220567130", "from_user_name": "uuu", "geo": null, "id": 148073534512578560, "id_str": "148073534512578560", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1204078315/de4c8304-5ebe-4e13-8ea3-2f0f5d4260b0_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1204078315/de4c8304-5ebe-4e13-8ea3-2f0f5d4260b0_normal.png", "source": "<a href="https://github.com/uu59/crafted-bird" rel="nofollow">crafted-bird</a>", "text": "Hadoop\\u306F\\u6B21\\u306E\\u30D0\\u30FC\\u30B8\\u30E7\\u30F3\\u304B\\u306A\\u3093\\u304B\\u3067\\u30A2\\u30FC\\u30AD\\u30C6\\u30AF\\u30C1\\u30E3\\u30EC\\u30D9\\u30EB\\u3067\\u7D50\\u69CB\\u5909\\u308F\\u308B\\u3093\\u3058\\u3083\\u306A\\u304B\\u3063\\u305F\\u3063\\u3051\\u3002Cassandra\\u306F\\u3042\\u308C\\u306A\\u306E\\u3067\\u3069\\u3046\\u305B\\u306A\\u3089redis\\u3060\\u308D\\u3046\\u3057nginx\\u306F\\u307B\\u307C\\u6BCE\\u5E74\\u540C\\u3058\\u3053\\u3068\\u8A00\\u308F\\u308C\\u3066\\u308B\\u3057", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:13:17 +0000", "from_user": "REDDITSPAMMOR", "from_user_id": 56056641, "from_user_id_str": "56056641", "from_user_name": "REDDITSPAMMOR", "geo": null, "id": 148073286549512200, "id_str": "148073286549512192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#reddit MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl | CommonCrawl: submitt... http://t.co/vmRek8Rm #rulez", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:12:55 +0000", "from_user": "mcristia", "from_user_id": 8612292, "from_user_id_str": "8612292", "from_user_name": "Michael W Cristiani", "geo": null, "id": 148073193809260540, "id_str": "148073193809260544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/80441361/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/80441361/me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rheimann: Using my #Hadoop connector in @tableau via #Hive! Ballin!! http://t.co/8WExdTHp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:04:19 +0000", "from_user": "Yours_aFriend", "from_user_id": 117666206, "from_user_id_str": "117666206", "from_user_name": "S Kurniawan", "geo": null, "id": 148071029254791170, "id_str": "148071029254791168", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/727378413/NiaEska_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/727378413/NiaEska_normal.jpg", "source": "<a href="http://www.newstreamer.com/" rel="nofollow">Newstreamer</a>", "text": "Microsoft Tries Hadoop on Azure (java.sys-con) http://t.co/ZnNTglZp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:02:46 +0000", "from_user": "jpatanooga", "from_user_id": 14935521, "from_user_id_str": "14935521", "from_user_name": "Josh Patterson", "geo": null, "id": 148070639645900800, "id_str": "148070639645900800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1471343793/summer_shot_cropped_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1471343793/summer_shot_cropped_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @sscdotopen: New blogpost: Running #giraph's unit tests in a pseudo-distributed hadoop instance http://t.co/qOdCdkWJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:59:02 +0000", "from_user": "markswall", "from_user_id": 19688728, "from_user_id_str": "19688728", "from_user_name": "Mark Wall", "geo": null, "id": 148069700574785540, "id_str": "148069700574785536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676652683/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676652683/Untitled_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hadoop, HPCC, MapR and the TeraSort Benchmark \\u2022 myNoSQL http://t.co/q4Fs9u7o", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:59:01 +0000", "from_user": "markswall", "from_user_id": 19688728, "from_user_id_str": "19688728", "from_user_name": "Mark Wall", "geo": null, "id": 148069697114484740, "id_str": "148069697114484736", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676652683/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676652683/Untitled_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft Tries Hadoop on Azure | Cloud Computing Journal http://t.co/yrhIDepN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:57:13 +0000", "from_user": "basilverthorn", "from_user_id": 36272262, "from_user_id_str": "36272262", "from_user_name": "Brett Silverthorn", "geo": null, "id": 148069242808446980, "id_str": "148069242808446976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/818883138/brettsm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/818883138/brettsm_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @WindowsAzure: Microsoft Tries Hadoop on #Windows #Azure: gives Windows Azure Big Data capabilities http://t.co/hgQobdw2 #Cloud /via @Cloud_Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:46:45 +0000", "from_user": "swews", "from_user_id": 374638051, "from_user_id_str": "374638051", "from_user_name": "swetha andrews", "geo": null, "id": 148066612174524400, "id_str": "148066612174524416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1648715155/Akhila_2__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648715155/Akhila_2__1__normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft Tries Hadoop on Azure: Microsoft added a trial version of Apache\\u2019s open source Hadoop to its Windows A... http://t.co/L4rUJvK2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:44:12 +0000", "from_user": "nourlcn", "from_user_id": 70045630, "from_user_id_str": "70045630", "from_user_name": "\\u8682\\u8681", "geo": null, "id": 148065969330335740, "id_str": "148065969330335744", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1529668189/katong_me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1529668189/katong_me_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\u300AHadoop 0.23\\u4E2Dweb username\\u7684\\u8BBE\\u7F6E\\u300B http://t.co/r5qsF8we", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:39:21 +0000", "from_user": "bahree", "from_user_id": 16053116, "from_user_id_str": "16053116", "from_user_name": "Amit Bahree", "geo": null, "id": 148064746673934340, "id_str": "148064746673934337", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1091421831/Amit_Bahree__8__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1091421831/Amit_Bahree__8__normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @WindowsAzure: Microsoft Tries Hadoop on #Windows #Azure: gives Windows Azure Big Data capabilities http://t.co/hgQobdw2 #Cloud /via @Cloud_Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:37:28 +0000", "from_user": "alltop_java", "from_user_id": 191999280, "from_user_id_str": "191999280", "from_user_name": "Alltop Java", "geo": null, "id": 148064275800391680, "id_str": "148064275800391682", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1128524576/IloveAlltop_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1128524576/IloveAlltop_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft Tries Hadoop on Azure http://t.co/rSkmFVkU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:35:40 +0000", "from_user": "beatrizmateo", "from_user_id": 108578780, "from_user_id_str": "108578780", "from_user_name": "Beatriz Mateo", "geo": null, "id": 148063819946672130, "id_str": "148063819946672128", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1609765085/IMG_5263_4peque_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609765085/IMG_5263_4peque_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @chain: Nuevo art\\u00EDculo en mi blog! Ah\\u00ED van mis dos c\\u00E9ntimos sobre #Hadoop y #BusinessIntelligence. http://t.co/xfHf4oJA #lohabiaprometido", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:30:25 +0000", "from_user": "StatQiming", "from_user_id": 350050347, "from_user_id_str": "350050347", "from_user_name": "Qiming Huang", "geo": null, "id": 148062501286850560, "id_str": "148062501286850560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @bigdata: Training Linear Support Vector Machines over Big Data: example in MapReduce/#Hadoop involving tens of millions http://t.co/fQF4stv2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:27:02 +0000", "from_user": "dmohl", "from_user_id": 15455122, "from_user_id_str": "15455122", "from_user_name": "Daniel Mohl", "geo": null, "id": 148061646722576400, "id_str": "148061646722576385", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1251271746/dan_twitterpic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1251271746/dan_twitterpic_normal.jpg", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "RT @dsyme: RT @rickasaurus: RT @chris_brockett: Carl Nolan blogs on hadoop streaming and #fsharp map reduce http://t.co/JXz0abe7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:17:25 +0000", "from_user": "mikecthompson", "from_user_id": 25213898, "from_user_id_str": "25213898", "from_user_name": "mike thompson", "geo": null, "id": 148059226571423740, "id_str": "148059226571423744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/aEzMqgvk via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:17:08 +0000", "from_user": "tatesuke", "from_user_id": 30597967, "from_user_id_str": "30597967", "from_user_name": "tatesuke", "geo": null, "id": 148059155654131700, "id_str": "148059155654131713", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1135790887/2018150_3160166838_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1135790887/2018150_3160166838_normal.jpg", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "hadoop\\u3063\\u3066\\u6570\\u306E\\u66B4\\u529B\\u3060\\u3088\\u306D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:13:29 +0000", "from_user": "roelgerrits", "from_user_id": 14334257, "from_user_id_str": "14334257", "from_user_name": "Roel Gerrits", "geo": null, "id": 148058238015909900, "id_str": "148058238015909888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/481839952/roel_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/481839952/roel_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rheimann: Using my #Hadoop connector in @tableau via #Hive! Ballin!! http://t.co/8WExdTHp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:12:44 +0000", "from_user": "DeannaHerderick", "from_user_id": 108788770, "from_user_id_str": "108788770", "from_user_name": "Deanna Herderick", "geo": null, "id": 148058047711948800, "id_str": "148058047711948800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1336298400/005-L_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1336298400/005-L_normal.jpg", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Now Hiring: Hadoop Solution Architect in Redmond, WA http://t.co/6OyYb77b #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:00:51 +0000", "from_user": "chain", "from_user_id": 13049522, "from_user_id_str": "13049522", "from_user_name": "Antonio Rivas", "geo": null, "id": 148055058137890800, "id_str": "148055058137890817", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1326225474/215D6832-75FE-42AD-A3E6-1DD7BB0609A2_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1326225474/215D6832-75FE-42AD-A3E6-1DD7BB0609A2_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "Nuevo art\\u00EDculo en mi blog! Ah\\u00ED van mis dos c\\u00E9ntimos sobre #Hadoop y #BusinessIntelligence. http://t.co/xfHf4oJA #lohabiaprometido", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:57:54 +0000", "from_user": "dennylee", "from_user_id": 14610285, "from_user_id_str": "14610285", "from_user_name": "dennylee", "geo": null, "id": 148054318573035520, "id_str": "148054318573035521", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/996687129/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/996687129/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@datachick blatant self promo here - if you like #hadoop, check out #hadooponazure http://t.co/iOCKItve :-)", "to_user": "datachick", "to_user_id": 15534499, "to_user_id_str": "15534499", "to_user_name": "Karen Lopez", "in_reply_to_status_id": 148047187551596540, "in_reply_to_status_id_str": "148047187551596544"}, +{"created_at": "Sat, 17 Dec 2011 14:56:47 +0000", "from_user": "sscdotopen", "from_user_id": 153208675, "from_user_id_str": "153208675", "from_user_name": "Sebastian", "geo": null, "id": 148054036891971600, "id_str": "148054036891971584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1467250573/sebastian_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1467250573/sebastian_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "New blogpost: Running #giraph's unit tests in a pseudo-distributed hadoop instance http://t.co/qOdCdkWJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:51:23 +0000", "from_user": "joshdevins", "from_user_id": 73340253, "from_user_id_str": "73340253", "from_user_name": "Josh Devins", "geo": null, "id": 148052676331053060, "id_str": "148052676331053057", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1421673081/Photo_on_2011-07-01_at_10.50_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1421673081/Photo_on_2011-07-01_at_10.50_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @peteskomoroch: How to quickly process 40TB of data from Common Crawl using Hadoop & Amazon EC2 http://t.co/yum3VZyF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:50:01 +0000", "from_user": "Jorriss", "from_user_id": 6484132, "from_user_id_str": "6484132", "from_user_name": "Richie Rump", "geo": null, "id": 148052334394617860, "id_str": "148052334394617856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1262429740/jorriss_alexa_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1262429740/jorriss_alexa_normal.png", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "RT @datachick: MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/TAxV275b < Maybe 20 minutes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:36:08 +0000", "from_user": "Jorge_Galvez", "from_user_id": 19733706, "from_user_id_str": "19733706", "from_user_name": "Jorge G\\u00E1lvez", "geo": null, "id": 148048840665219070, "id_str": "148048840665219072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683089946/imagen_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683089946/imagen_twitter_normal.png", "source": "Zite Personalized Magazine", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/yu13ExCy via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:29:34 +0000", "from_user": "datachick", "from_user_id": 15534499, "from_user_id_str": "15534499", "from_user_name": "Karen Lopez", "geo": null, "id": 148047187551596540, "id_str": "148047187551596544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1639614262/9a4f5b93-2599-40e2-820e-eed4a5d0ac1a_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639614262/9a4f5b93-2599-40e2-820e-eed4a5d0ac1a_normal.png", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/TAxV275b < Maybe 20 minutes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:28:25 +0000", "from_user": "Frank_Scholten", "from_user_id": 34983987, "from_user_id_str": "34983987", "from_user_name": "Frank Scholten", "geo": null, "id": 148046895741284350, "id_str": "148046895741284352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1299982811/frankscholten_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1299982811/frankscholten_small_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@noiano Create your own properties file with overridden hadoop props and run $ whirr launch-cluster --config <path-to-prop-file>", "to_user": "noiano", "to_user_id": 54919596, "to_user_id_str": "54919596", "to_user_name": "Marco Didonna", "in_reply_to_status_id": 148040456717078530, "in_reply_to_status_id_str": "148040456717078528"}, +{"created_at": "Sat, 17 Dec 2011 14:18:52 +0000", "from_user": "shiumachi", "from_user_id": 11370182, "from_user_id_str": "11370182", "from_user_name": "Sho Shimauchi", "geo": null, "id": 148044495085256700, "id_str": "148044495085256704", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1112990537/2006-06-04_002_bigger_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1112990537/2006-06-04_002_bigger_normal.png", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": ". @fcicq \\u304C\\u82F1\\u8A9E\\u3067 hadoop \\u30A2\\u30C9\\u30D9\\u30F3\\u30C8\\u30AB\\u30EC\\u30F3\\u30C0\\u30FC\\u3092\\u66F8\\u3044\\u3066\\u304F\\u308C\\u308B\\u3051\\u3069\\u3001\\u8A13\\u7DF4\\u3055\\u308C\\u305F hadooper \\u306A\\u3089\\u82F1\\u8A9E\\u306E\\u30A8\\u30F3\\u30C8\\u30EA\\u30FC\\u3092\\u82E6\\u3082\\u306A\\u304F\\u8AAD\\u3081\\u308B\\u306E\\u3067\\u554F\\u984C\\u306A\\u3044\\u306F\\u305A\\u3060\\u3002", "to_user": "fcicq", "to_user_id": 23272777, "to_user_id_str": "23272777", "to_user_name": "fcicq", "in_reply_to_status_id": 148041489191157760, "in_reply_to_status_id_str": "148041489191157760"}, +{"created_at": "Sat, 17 Dec 2011 14:15:10 +0000", "from_user": "TriComTS", "from_user_id": 90954020, "from_user_id_str": "90954020", "from_user_name": "TriCom Tech Services", "geo": null, "id": 148043560678195200, "id_str": "148043560678195201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/860346163/TriCom-Icon-Small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/860346163/TriCom-Icon-Small_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @developerworks: Intro to Hadoop framework - Learn why it is one of the most important to #Linux http://t.co/7kIQz88y #Ubuntu #Redhat", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:14:23 +0000", "from_user": "godofthenetwork", "from_user_id": 427834340, "from_user_id_str": "427834340", "from_user_name": "Carlos Navarrete", "geo": null, "id": 148043364758061060, "id_str": "148043364758061056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft Tries Hadoop on Azure: Microsoft added a trial version of Apache\\u2019s open source Hadoop to its Windows A... http://t.co/33RDKlxM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:14:23 +0000", "from_user": "vojinurosevic", "from_user_id": 76060489, "from_user_id_str": "76060489", "from_user_name": "Vojin Urosevic \\u6C83\\u56E0 ", "geo": null, "id": 148043363969531900, "id_str": "148043363969531904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/447217797/Vojins_picture_hvar_normal.bmp", "profile_image_url_https": "https://si0.twimg.com/profile_images/447217797/Vojins_picture_hvar_normal.bmp", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft Tries Hadoop on Azure: Microsoft added a trial version of Apache\\u2019s open source Hadoop to its Windows A... http://t.co/zk49bpDV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:14:22 +0000", "from_user": "enterprise4j", "from_user_id": 236021267, "from_user_id_str": "236021267", "from_user_name": "Enterprise4J", "geo": null, "id": 148043362988068860, "id_str": "148043362988068864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1635237821/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635237821/logo_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft Tries Hadoop on Azure: Microsoft added a trial version of Apache\\u2019s open source Hadoop to its Windows A... http://t.co/Wy0INfn1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:13:58 +0000", "from_user": "airjrdn", "from_user_id": 15394566, "from_user_id_str": "15394566", "from_user_name": "airjrdn", "geo": null, "id": 148043259489431550, "id_str": "148043259489431552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/89213431/Bill_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/89213431/Bill_normal.jpg", "source": "<a href="http://omz-software.com/newsstand" rel="nofollow">NewsRack</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl - http://t.co/arkjSFg6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:12:24 +0000", "from_user": "shiumachi", "from_user_id": 11370182, "from_user_id_str": "11370182", "from_user_name": "Sho Shimauchi", "geo": null, "id": 148042868290887680, "id_str": "148042868290887681", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1112990537/2006-06-04_002_bigger_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1112990537/2006-06-04_002_bigger_normal.png", "source": "<a href="http://www.zusaar.com/" rel="nofollow">Zusaar</a>", "text": "RT @fcicq: 12/19, MapR distributed NameNode and lockless transaction / hadoop\\u30A2\\u30C9\\u30D9\\u30F3\\u30C8\\u30AB\\u30EC\\u30F3\\u30C0\\u30FC2011 http://t.co/JG0ki0wo #zusaar", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:11:07 +0000", "from_user": "fcicq", "from_user_id": 23272777, "from_user_id_str": "23272777", "from_user_name": "fcicq", "geo": null, "id": 148042541663666180, "id_str": "148042541663666178", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/183847467/okite_bg_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/183847467/okite_bg_normal.gif", "source": "<a href="http://www.zusaar.com/" rel="nofollow">Zusaar</a>", "text": "12/19, MapR distributed NameNode and lockless transaction / hadoop\\u30A2\\u30C9\\u30D9\\u30F3\\u30C8\\u30AB\\u30EC\\u30F3\\u30C0\\u30FC2011 http://t.co/JG0ki0wo #zusaar", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:08:49 +0000", "from_user": "cattaka_net", "from_user_id": 76055482, "from_user_id_str": "76055482", "from_user_name": "\\u4F4F\\u53CB \\u5B5D\\u90CE", "geo": null, "id": 148041963151704060, "id_str": "148041963151704064", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699761681/CattakaLogoSvg_xmas_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699761681/CattakaLogoSvg_xmas_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "PlayN\\u306FShriko\\u3092\\u5F62\\u306B\\u3057\\u305F\\u306E\\u3067\\u4E00\\u533A\\u5207\\u308AGenDbHandler\\u3082\\u4F5C\\u3063\\u305F\\u3057\\u3001\\u6B21\\u306F\\u4F55\\u3092\\u3057\\u3088\\u3046\\u3068\\u601D\\u3063\\u305F\\u3093\\u3060\\u3063\\u3051\\u3001\\u3001\\u3001\\u3042\\u3001QCAR\\u3068Hadoop\\u304C\\u6B8B\\u3063\\u3066\\u305F", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:06:56 +0000", "from_user": "fcicq", "from_user_id": 23272777, "from_user_id_str": "23272777", "from_user_name": "fcicq", "geo": null, "id": 148041489191157760, "id_str": "148041489191157760", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/183847467/okite_bg_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/183847467/okite_bg_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "@shiumachi Could I take part in hadoop\\u30A2\\u30C9\\u30D9\\u30F3\\u30C8\\u30AB\\u30EC\\u30F3\\u30C0\\u30FC2011 ? I would also write some MapR related things, but in English...", "to_user": "shiumachi", "to_user_id": 11370182, "to_user_id_str": "11370182", "to_user_name": "Sho Shimauchi"}, +{"created_at": "Sat, 17 Dec 2011 14:06:32 +0000", "from_user": "happiestkhan", "from_user_id": 10054542, "from_user_id_str": "10054542", "from_user_name": "Shahnawaz Khan", "geo": null, "id": 148041389647724540, "id_str": "148041389647724544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1612096046/MM_550_Off_Terrain_201_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612096046/MM_550_Off_Terrain_201_normal.jpg", "source": "Zite Personalized Magazine", "text": "MapReduce for the Masses: Zero to #Hadoop in Five Minutes with Common Crawl http://t.co/cMAFxinW #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:02:49 +0000", "from_user": "noiano", "from_user_id": 54919596, "from_user_id_str": "54919596", "from_user_name": "Marco Didonna", "geo": null, "id": 148040456717078530, "id_str": "148040456717078528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1673085134/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673085134/avatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Frank_Scholten thank you,but for some parameters I'd like to have the hadoop default,not the whirr def params. http://t.co/FDRlCMcg", "to_user": "Frank_Scholten", "to_user_id": 34983987, "to_user_id_str": "34983987", "to_user_name": "Frank Scholten", "in_reply_to_status_id": 148019672242069500, "in_reply_to_status_id_str": "148019672242069505"}, +{"created_at": "Sat, 17 Dec 2011 13:58:32 +0000", "from_user": "chepegin", "from_user_id": 41340611, "from_user_id_str": "41340611", "from_user_name": "Vadim Chepegin", "geo": null, "id": 148039375282901000, "id_str": "148039375282900992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/220861092/vadim_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/220861092/vadim_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @AzureCloudNet: #Azure #Cloud MS Tries Hadoop on Azure | Microsoft added a trial version of #Apache #Hadoop http://t.co/nlu0JSJo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:58:31 +0000", "from_user": "InformClub", "from_user_id": 274975196, "from_user_id_str": "274975196", "from_user_name": "InformClub", "geo": null, "id": 148039373387087870, "id_str": "148039373387087872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @AzureCloudNet: #Azure #Cloud MS Tries Hadoop on Azure | Microsoft added a trial version of #Apache #Hadoop http://t.co/14utAgHF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:57:31 +0000", "from_user": "straxnews", "from_user_id": 325768922, "from_user_id_str": "325768922", "from_user_name": "Strax News", "geo": null, "id": 148039120982253570, "id_str": "148039120982253569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1418446331/straxlogo_tweeter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1418446331/straxlogo_tweeter_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "#strax is about point number 1: making #Hadoop simple and accessible: Five big data predictions for 2012 http://t.co/AL73nSrF via @radar", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:52:11 +0000", "from_user": "MaureenOGara", "from_user_id": 129064482, "from_user_id_str": "129064482", "from_user_name": "Maureen O'Gara", "geo": null, "id": 148037780046491650, "id_str": "148037780046491648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/799332620/Maureen_OGara_120_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/799332620/Maureen_OGara_120_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @AzureCloudNet: #Azure #Cloud Microsoft Tries Hadoop on Azure | Cloud Computing Journal: Microsoft added a trial version of Apac... http://t.co/2GHywGPJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:52:02 +0000", "from_user": "GonzalezCarmen", "from_user_id": 62502991, "from_user_id_str": "62502991", "from_user_name": "Carmen Gonzalez", "geo": null, "id": 148037739265273860, "id_str": "148037739265273856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/891767832/Carmen_Gonzalez_220_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/891767832/Carmen_Gonzalez_220_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @AzureCloudNet: #Azure #Cloud Microsoft Tries Hadoop on Azure | Cloud Computing Journal: Microsoft added a trial version of Apac... http://t.co/2GHywGPJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:51:31 +0000", "from_user": "BigDataExpo", "from_user_id": 408440808, "from_user_id_str": "408440808", "from_user_name": "BigDataExpo\\u00A9", "geo": null, "id": 148037609791303680, "id_str": "148037609791303682", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1630353587/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630353587/image_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @AzureCloudNet: #Azure #Cloud Microsoft Tries Hadoop on Azure | Cloud Computing Journal: Microsoft added a trial version of Apac... http://t.co/2GHywGPJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:51:18 +0000", "from_user": "cfoundryexpo", "from_user_id": 281174670, "from_user_id_str": "281174670", "from_user_name": "Cloud Foundry Summit", "geo": null, "id": 148037556292956160, "id_str": "148037556292956160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1309359449/Cloud_Foundry_Summit_100_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1309359449/Cloud_Foundry_Summit_100_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @AzureCloudNet: #Azure #Cloud Microsoft Tries Hadoop on Azure | Cloud Computing Journal: Microsoft added a trial version of Apac... http://t.co/2GHywGPJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:50:55 +0000", "from_user": "AjaxRIAexpo", "from_user_id": 18903165, "from_user_id_str": "18903165", "from_user_name": "AJAX RIA Cloud Expo", "geo": null, "id": 148037461224853500, "id_str": "148037461224853504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/70774469/AJAXWorld_RIA_Conference_Logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/70774469/AJAXWorld_RIA_Conference_Logo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @AzureCloudNet: #Azure #Cloud Microsoft Tries Hadoop on Azure | Cloud Computing Journal: Microsoft added a trial version of Apac... http://t.co/2GHywGPJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:50:40 +0000", "from_user": "SOAWorldExpo", "from_user_id": 18906552, "from_user_id_str": "18906552", "from_user_name": "SOA in the Cloud", "geo": null, "id": 148037396871655420, "id_str": "148037396871655425", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/70794220/STORY_GRAPHIC_HUGE_SOA_NEW_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/70794220/STORY_GRAPHIC_HUGE_SOA_NEW_2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @AzureCloudNet: #Azure #Cloud Microsoft Tries Hadoop on Azure | Cloud Computing Journal: Microsoft added a trial version of Apac... http://t.co/2GHywGPJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:50:31 +0000", "from_user": "Ulitzer", "from_user_id": 18791290, "from_user_id_str": "18791290", "from_user_name": "Ulitzer.com", "geo": null, "id": 148037361320730620, "id_str": "148037361320730624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/745317755/Ulitzer_Logo_100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/745317755/Ulitzer_Logo_100_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @AzureCloudNet: #Azure #Cloud Microsoft Tries Hadoop on Azure | Cloud Computing Journal: Microsoft added a trial version of Apac... http://t.co/2GHywGPJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:50:16 +0000", "from_user": "sysconmedia", "from_user_id": 36339779, "from_user_id_str": "36339779", "from_user_name": "SYS-CON Media", "geo": null, "id": 148037297546342400, "id_str": "148037297546342401", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/745331242/SYS-CON_Media_Logo_100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/745331242/SYS-CON_Media_Logo_100_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @AzureCloudNet: #Azure #Cloud Microsoft Tries Hadoop on Azure | Cloud Computing Journal: Microsoft added a trial version of Apac... http://t.co/2GHywGPJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:49:58 +0000", "from_user": "CloudExpo", "from_user_id": 18854457, "from_user_id_str": "18854457", "from_user_name": "Cloud Expo\\u00AE", "geo": null, "id": 148037221952401400, "id_str": "148037221952401408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1338917249/cloud-square2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1338917249/cloud-square2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @AzureCloudNet: #Azure #Cloud Microsoft Tries Hadoop on Azure | Cloud Computing Journal: Microsoft added a trial version of Apac... http://t.co/2GHywGPJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:46:17 +0000", "from_user": "jg21", "from_user_id": 4921851, "from_user_id_str": "4921851", "from_user_name": "Jeremy Geelan", "geo": null, "id": 148036292880506880, "id_str": "148036292880506880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1378991855/Jeremy_Geelan_square_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1378991855/Jeremy_Geelan_square_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @AzureCloudNet: #Azure #Cloud Microsoft Tries Hadoop on Azure | Cloud Computing Journal: Microsoft added a trial version of Apac... http://t.co/2GHywGPJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:45:03 +0000", "from_user": "gunnard", "from_user_id": 7523612, "from_user_id_str": "7523612", "from_user_name": "gunnard", "geo": null, "id": 148035982615248900, "id_str": "148035982615248896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1286649442/purptent_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1286649442/purptent_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/b5rvK0m0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:43:44 +0000", "from_user": "borancar", "from_user_id": 273673395, "from_user_id_str": "273673395", "from_user_name": "Boran Car", "geo": null, "id": 148035651697254400, "id_str": "148035651697254401", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://news.ycombinator.com/" rel="nofollow">Hacker News Bot</a>", "text": "RT @hackernewsbot: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl... http://t.co/JGEaGFBn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:36:55 +0000", "from_user": "felixaverlant", "from_user_id": 26585636, "from_user_id_str": "26585636", "from_user_name": "F\\u00E9lix Averlant", "geo": null, "id": 148033935073493000, "id_str": "148033935073492992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1155182036/1f31ece4-b0be-4818-80df-6e66bfadd721_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1155182036/1f31ece4-b0be-4818-80df-6e66bfadd721_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @allthingshadoop: This R package allows an R programmer to perform statistical analysis via MapReduce on a Hadoop cluster http://t.co/S7FG4iQz via @piccolbo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:28:48 +0000", "from_user": "uboness", "from_user_id": 42660761, "from_user_id_str": "42660761", "from_user_name": "Uri Boness", "geo": null, "id": 148031893965766660, "id_str": "148031893965766656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/234354759/uri_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/234354759/uri_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @Frank_Scholten: Check this out http://t.co/tVHQsR8a > @noiano: default #hadoop settings in #whirr I curse you! Any idea on how to modify them?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:27:19 +0000", "from_user": "jg21", "from_user_id": 4921851, "from_user_id_str": "4921851", "from_user_name": "Jeremy Geelan", "geo": null, "id": 148031519615762430, "id_str": "148031519615762432", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1378991855/Jeremy_Geelan_square_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1378991855/Jeremy_Geelan_square_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @ialjkk: Microsoft Tries Hadoop on Azure | Cloud Computing Journal http://t.co/ywHuZRCk #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:17:11 +0000", "from_user": "ikkebr", "from_user_id": 25092629, "from_user_id_str": "25092629", "from_user_name": "Henrique Pereira", "geo": null, "id": 148028969717989380, "id_str": "148028969717989377", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1191300930/fotenhoheine_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1191300930/fotenhoheine_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josepapo: MapReduce para as massas! Hadoop em 5 minutos com a Amazon Web Services e CommonCrawl - http://t.co/ckKK6qEF #AWS #Show", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:10:24 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 148027262401396740, "id_str": "148027262401396736", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft Tries Hadoop on Azure | Cloud Computing Journal http://t.co/ywHuZRCk #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:09:58 +0000", "from_user": "ComputerWorldCa", "from_user_id": 18813658, "from_user_id_str": "18813658", "from_user_name": "ComputerWorldCa", "geo": null, "id": 148027153374642180, "id_str": "148027153374642176", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/72727281/CW-avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/72727281/CW-avatar_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "When HANA meets Hadoop - ITWorld Canada http://t.co/nvHFcWLC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:09:13 +0000", "from_user": "scaphe", "from_user_id": 14166573, "from_user_id_str": "14166573", "from_user_name": "Felipe Oliveira", "geo": null, "id": 148026964740014080, "id_str": "148026964740014080", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1587839736/chic_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587839736/chic_twitter_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josepapo: MapReduce para as massas! Hadoop em 5 minutos com a Amazon Web Services e CommonCrawl - http://t.co/ckKK6qEF #AWS #Show", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:08:19 +0000", "from_user": "osonoi", "from_user_id": 26443917, "from_user_id_str": "26443917", "from_user_name": "\\u5C0F\\u8597\\u4E95", "geo": null, "id": 148026741003259900, "id_str": "148026741003259906", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1127805484/osonoi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1127805484/osonoi_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\\u3084\\u3063\\u3071\\u308Ahadoop\\u304B\\u3000RT @linuxfoundation: Top 10 OSS Projects of '11. http://t.co/Rzx51zyV Did your fave make the list? #linux #nodejs #puppet...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:05:30 +0000", "from_user": "surkova", "from_user_id": 8608182, "from_user_id_str": "8608182", "from_user_name": "Vera Surkova", "geo": null, "id": 148026028592336900, "id_str": "148026028592336897", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/431104517/donkey_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/431104517/donkey_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "\\u0410 \\u0447\\u0438\\u0442\\u0430\\u044E \\u044F \\u043F\\u0440\\u043E \\u043E\\u0431\\u043B\\u0430\\u043A\\u0430, \\u0445\\u0440\\u0430\\u043D\\u0438\\u043B\\u0438\\u0449\\u0430 \\u0434\\u0430\\u043D\\u043D\\u044B\\u0445, Hadoop, MapReduce \\u0438 \\u043F\\u0440\\u043E\\u0447\\u0443\\u044E \\u0434\\u0440\\u0435\\u0431\\u0435\\u0434\\u0435\\u043D\\u044C.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:04:54 +0000", "from_user": "reputa_india", "from_user_id": 265834202, "from_user_id_str": "265834202", "from_user_name": "Reputa India", "geo": null, "id": 148025879111532540, "id_str": "148025879111532545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1283445555/2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1283445555/2_normal.jpg", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "URGENT Requirement : Hiring Hadoop Architect (2+ year contract position) required in Pune ... http://t.co/UKpaake3 #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:00:02 +0000", "from_user": "hatebuslip", "from_user_id": 288838550, "from_user_id_str": "288838550", "from_user_name": "hatebuslip", "geo": null, "id": 148024654534152200, "id_str": "148024654534152192", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1347101829/Clock-green-64_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1347101829/Clock-green-64_normal.png", "source": "<a href="http://hatebuslip.choilabo.com/" rel="nofollow">\\u306F\\u3066\\u3076\\u30B9\\u30EA\\u30C3\\u30D7</a>", "text": "Hadoop\\u3067\\u3001\\u304B\\u3093\\u305F\\u3093\\u5206\\u6563\\u51E6\\u7406 (Yahoo! JAPAN Tech Blog)\\uFF1Ahttp://t.co/JbvgTdij", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:59:26 +0000", "from_user": "rafanunes", "from_user_id": 25500670, "from_user_id_str": "25500670", "from_user_name": "Rafael Nunes", "geo": null, "id": 148024502494822400, "id_str": "148024502494822401", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/104568189/IMG_2027_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/104568189/IMG_2027_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josepapo: MapReduce para as massas! Hadoop em 5 minutos com a Amazon Web Services e CommonCrawl - http://t.co/ckKK6qEF #AWS #Show", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:55:24 +0000", "from_user": "josepapo", "from_user_id": 13322392, "from_user_id_str": "13322392", "from_user_name": "Jos\\u00E9 Papo", "geo": null, "id": 148023488043683840, "id_str": "148023488043683841", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/217252557/pessoal4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/217252557/pessoal4_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "MapReduce para as massas! Hadoop em 5 minutos com a Amazon Web Services e CommonCrawl - http://t.co/ckKK6qEF #AWS #Show", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:55:04 +0000", "from_user": "mimul", "from_user_id": 11425532, "from_user_id_str": "11425532", "from_user_name": "\\uD558\\uD638\\uC9C4", "geo": null, "id": 148023405667553280, "id_str": "148023405667553281", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/41073022/hhj_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/41073022/hhj_normal.jpg", "source": "<a href="http://pixelpipe.com/tools" rel="nofollow">Pixelpipe</a>", "text": "Hadoop\\uAE30\\uBC18\\uC758 \\uB370\\uC774\\uD130\\uB97C \\uB2E4\\uB8E8\\uAE30 \\uC26C\\uC6B4 \\uD615\\uD0DC\\uB85C \\uAC00\\uACF5\\uD558\\uB294\\uB370 \\uB3C4\\uC6C0\\uC774 \\uB418\\uB294 Apache Pig\\uC5D0 \\uC124\\uCE58 \\uBC0F \\uC0AC\\uC6A9\\uBC95\\uC744 \\uAC04\\uB2E8\\uD558\\uAC8C \\uC815\\uB9AC. - http://t.co/tZxMner3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:55:02 +0000", "from_user": "ProgrammingWord", "from_user_id": 158722669, "from_user_id_str": "158722669", "from_user_name": "\\u30D7\\u30ED\\u30B0\\u30E9\\u30DF\\u30F3\\u30B0\\u306B\\u5F79\\u7ACB\\u3064\\u540D\\u8A00\\u30FB\\u6CD5\\u5247", "geo": null, "id": 148023397547388930, "id_str": "148023397547388929", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1101069129/04_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1101069129/04_normal.jpg", "source": "<a href="http://d.hatena.ne.jp/japanrock_pg/" rel="nofollow">\\u30D7\\u30ED\\u30B0\\u30E9\\u30DF\\u30F3\\u30B0\\u3067\\u5F79\\u306B\\u7ACB\\u3064\\u8A00\\u8449</a>", "text": "\\u3088\\u308A\\u591A\\u304F\\u306E\\u30C7\\u30FC\\u30BF\\u306F\\u3088\\u308A\\u3088\\u3044\\u30A2\\u30EB\\u30B4\\u30EA\\u30BA\\u30E0\\u3092\\u51CC\\u99D5\\u3059\\u308B by \\u66F8\\u7C4D\\uFF1AHadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:53:43 +0000", "from_user": "GrandLogicInc", "from_user_id": 427826464, "from_user_id_str": "427826464", "from_user_name": "Grand Logic", "geo": null, "id": 148023063223607300, "id_str": "148023063223607297", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1672436646/gl_logo_simple_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672436646/gl_logo_simple_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Preparing your business data for #bigdata processing is often overlooked but critical step to having successful #hadoop deployment & mgmt..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:52:35 +0000", "from_user": "dsyme", "from_user_id": 25663453, "from_user_id_str": "25663453", "from_user_name": "Don Syme", "geo": null, "id": 148022779487338500, "id_str": "148022779487338496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @rickasaurus: RT @chris_brockett: Carl Nolan blogs on hadoop streaming and #fsharp map reduce http://t.co/UHYpV4G6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:46:40 +0000", "from_user": "juanjmostazo", "from_user_id": 236408605, "from_user_id_str": "236408605", "from_user_name": "Juan J. Mostazo", "geo": null, "id": 148021292765949950, "id_str": "148021292765949952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1217546054/1297489__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1217546054/1297489__1__normal.jpg", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "RT @techmilind: The 10 Most Important Open Source Projects of 2011 | http://t.co/2u4FbRqU http://t.co/Bt7uHaRI #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:40:14 +0000", "from_user": "Frank_Scholten", "from_user_id": 34983987, "from_user_id_str": "34983987", "from_user_name": "Frank Scholten", "geo": null, "id": 148019672242069500, "id_str": "148019672242069505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1299982811/frankscholten_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1299982811/frankscholten_small_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Check this out http://t.co/tVHQsR8a > @noiano: default #hadoop settings in #whirr I curse you! Any idea on how to modify them?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:36:19 +0000", "from_user": "vikasdp", "from_user_id": 152682018, "from_user_id_str": "152682018", "from_user_name": "Vikas Pandya", "geo": null, "id": 148018686614175740, "id_str": "148018686614175744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1140915733/VP_twitter_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1140915733/VP_twitter_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Are there any successful integrations of Hadoop with apache Solr? Looking for references. Cc @mahadevkonar", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:27:29 +0000", "from_user": "felixaverlant", "from_user_id": 26585636, "from_user_id_str": "26585636", "from_user_name": "F\\u00E9lix Averlant", "geo": null, "id": 148016461296840700, "id_str": "148016461296840704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1155182036/1f31ece4-b0be-4818-80df-6e66bfadd721_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1155182036/1f31ece4-b0be-4818-80df-6e66bfadd721_normal.png", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/dUX0HsGo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:23:09 +0000", "from_user": "bellochoamaker", "from_user_id": 360894074, "from_user_id_str": "360894074", "from_user_name": "Bella Ochoa", "geo": null, "id": 148015372925272060, "id_str": "148015372925272064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1510534954/1314145146_websiteanalyticschart_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1510534954/1314145146_websiteanalyticschart_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Cloudera Expands Enterprise Management Software For Apache Hadoop With End-to-End Visibility for Big Data Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:14:34 +0000", "from_user": "NunoGodinho", "from_user_id": 9971382, "from_user_id_str": "9971382", "from_user_name": "Nuno Godinho", "geo": null, "id": 148013213265559550, "id_str": "148013213265559552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/831407287/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/831407287/twitterProfilePhoto_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @WindowsAzure: Microsoft Tries Hadoop on #Windows #Azure: gives Windows Azure Big Data capabilities http://t.co/hgQobdw2 #Cloud /via @Cloud_Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:06:15 +0000", "from_user": "lj_milivojevic", "from_user_id": 234185186, "from_user_id_str": "234185186", "from_user_name": "Ljubisa Milivojevic", "geo": null, "id": 148011119733260300, "id_str": "148011119733260288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/QF2iE5mI via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:00:41 +0000", "from_user": "USA_Jobs_", "from_user_id": 296272184, "from_user_id_str": "296272184", "from_user_name": "USA Jobs", "geo": null, "id": 148009718613413900, "id_str": "148009718613413889", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Architect- Hadoop Engineering: San Mateo, CA - Architect- Hadoop Engineering EMC/GreenplumSan Mateo, CA... http://t.co/mYBGjX8D USA Jobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:58:29 +0000", "from_user": "nadavc", "from_user_id": 55014162, "from_user_id_str": "55014162", "from_user_name": "Nadav", "geo": null, "id": 148009165208563700, "id_str": "148009165208563713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1315738312/cropped_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1315738312/cropped_normal.jpeg", "source": "<a href="http://www.phantomfish.com/byline.php" rel="nofollow">Byline</a>", "text": "MS to invest in Hadoop? http://t.co/QtqegjpE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:51:44 +0000", "from_user": "noiano", "from_user_id": 54919596, "from_user_id_str": "54919596", "from_user_name": "Marco Didonna", "geo": null, "id": 148007465924038660, "id_str": "148007465924038657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1673085134/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673085134/avatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "default #hadoop settings in #whirr I curse you! Any idea on how to modify them?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Sat, 17 Dec 2011 11:51:05 +0000", "from_user": "Jobs_in_USA_C", "from_user_id": 207963471, "from_user_id_str": "207963471", "from_user_name": "Jobs in USA", "geo": null, "id": 148007304929882100, "id_str": "148007304929882113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.bravenewcode.com/products/wordtwit" rel="nofollow">WordTwit Plugin</a>", "text": "Architect- Hadoop Engineering - Jobs in USA (United States ) - New York - http://t.co/rKUVA37w", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:44:02 +0000", "from_user": "dataprix", "from_user_id": 44152774, "from_user_id_str": "44152774", "from_user_name": "Carlos Fernandez", "geo": null, "id": 148005528285614080, "id_str": "148005528285614080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/701068875/isotipo_dataprix_screen_96_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/701068875/isotipo_dataprix_screen_96_normal.jpg", "source": "<a href="http://businessintelligenceweekly.com" rel="nofollow">Business Intelligence Weekly</a>", "text": "RT @weeklybi: New MapR Hadoop Version Includes Windows, Mac Support http://t.co/QIZHRM5e", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:38:39 +0000", "from_user": "wrifster", "from_user_id": 15505337, "from_user_id_str": "15505337", "from_user_name": "Arif Rajwani", "geo": null, "id": 148004172690767870, "id_str": "148004172690767872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/69419139/arifcrop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/69419139/arifcrop_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "OK, OK, let's ride this Big Data wave together then, starting with reading Hadoop: The Definitive Guide http://t.co/mwXrpNXW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:36:10 +0000", "from_user": "tw_top_1z2n8rp", "from_user_id": 373516096, "from_user_id_str": "373516096", "from_user_name": "Top Weapons for E...", "geo": null, "id": 148003550088278000, "id_str": "148003550088278016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @WindowsAzure: Microsoft Tries Hadoop on #Windows #Azure: gives Windows Azure Big Data capabilities http://t.co/hgQobdw2 #Cloud /via @Cloud_Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:35:34 +0000", "from_user": "AndreyDess", "from_user_id": 232951889, "from_user_id_str": "232951889", "from_user_name": "Andrey Klochaniy", "geo": null, "id": 148003397881184260, "id_str": "148003397881184257", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1318894220/45057_100951323300204_100001560093966_5522_3562587_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1318894220/45057_100951323300204_100001560093966_5522_3562587_n_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @WindowsAzure: Microsoft Tries Hadoop on #Windows #Azure: gives Windows Azure Big Data capabilities http://t.co/hgQobdw2 #Cloud /via @Cloud_Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:31:08 +0000", "from_user": "plotti", "from_user_id": 15533871, "from_user_id_str": "15533871", "from_user_name": "plotti", "geo": null, "id": 148002281223229440, "id_str": "148002281223229440", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/280052987/DSCF4196_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/280052987/DSCF4196_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Awsome blog on starting with hadoop - http://t.co/kfrallT1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:29:34 +0000", "from_user": "replore", "from_user_id": 5230221, "from_user_id_str": "5230221", "from_user_name": "replore", "geo": null, "id": 148001888661540860, "id_str": "148001888661540864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1324817836/manuki_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1324817836/manuki_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl | CommonCrawl http://t.co/SUCczjsy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:27:30 +0000", "from_user": "khan_io", "from_user_id": 14276529, "from_user_id_str": "14276529", "from_user_name": "Mohammed Khan", "geo": null, "id": 148001366571364350, "id_str": "148001366571364352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/541354425/m-z-khan_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/541354425/m-z-khan_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "On a lazy weekend trying to get hands dirty with system logs. #Flume #Hadoop #hive", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:15:03 +0000", "from_user": "zai2kun", "from_user_id": 112105012, "from_user_id_str": "112105012", "from_user_name": "z2", "geo": null, "id": 147998236177735680, "id_str": "147998236177735680", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1458318130/images__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1458318130/images__1__normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @cocoatomo: \\u8272\\u3005\\u3042\\u305F\\u3075\\u305F\\u3057\\u306A\\u304C\\u3089\\u66F8\\u3044\\u305F. > \\u6700\\u3082\\u901F\\u304F Hadoop \\u74B0\\u5883\\u3092\\u624B\\u306B\\u5165\\u308C\\u308B\\u65B9\\u6CD5 - Elliptium http://t.co/QlM9Ymmy via @cocoatomo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:13:54 +0000", "from_user": "jim68000", "from_user_id": 6613562, "from_user_id_str": "6613562", "from_user_name": "Jim Smith", "geo": null, "id": 147997946280030200, "id_str": "147997946280030208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695455238/Untitled-1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695455238/Untitled-1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@iwrigley Ha! Ta. I figured out what I'd done wrong eventually. It was my first day let loose on our Hadoop cluster.", "to_user": "iwrigley", "to_user_id": 23684133, "to_user_id_str": "23684133", "to_user_name": "Ian Wrigley", "in_reply_to_status_id": 147845394792067070, "in_reply_to_status_id_str": "147845394792067072"}, +{"created_at": "Sat, 17 Dec 2011 11:08:00 +0000", "from_user": "NnamdiJr", "from_user_id": 17524943, "from_user_id_str": "17524943", "from_user_name": "Nnamdi Offor", "geo": null, "id": 147996460284252160, "id_str": "147996460284252160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1500434752/IMG_8890_-_Copy_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1500434752/IMG_8890_-_Copy_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "HADOOOP! \"MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl\" http://t.co/MXOmSQpP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:03:35 +0000", "from_user": "randoru", "from_user_id": 48198941, "from_user_id_str": "48198941", "from_user_name": "randoru", "geo": null, "id": 147995347266973700, "id_str": "147995347266973696", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1392919968/CIMG2049_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1392919968/CIMG2049_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "C\\u8A00\\u8A9E\\u306E\\u30D7\\u30ED\\u30B0\\u30E9\\u30E0\\u3092java\\u5316(\\u6B32\\u3092\\u8A00\\u3048\\u3070hadoop\\u3067\\u5B9F\\u884C\\u3067\\u304D\\u308B\\u5F62\\u306B\\u3057\\u3066\\u304F\\u3060\\u3055\\u3044)\\u3064\\u3044\\u3067\\u306B\\u5352\\u8AD6\\u3068\\u767A\\u8868\\u8CC7\\u6599\\u3082\\u7F6E\\u3044\\u3066\\u3063\\u3066\\u304F\\u308C\\u308C\\u3070\\u6CE3\\u3044\\u3066\\u559C\\u3076\\u3000#\\u30B5\\u30F3\\u30BF\\u3055\\u3093\\u4ECA\\u5E74\\u306E\\u30D7\\u30EC\\u30BC\\u30F3\\u30C8\\u3053\\u308C\\u3067\\u304A\\u9858\\u3044\\u3057\\u307E\\u3059", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:52:56 +0000", "from_user": "netseven_it", "from_user_id": 231457348, "from_user_id_str": "231457348", "from_user_name": "Net7 s.r.l. - Pisa", "geo": null, "id": 147992670969667600, "id_str": "147992670969667585", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1608885092/Net7-logo_180_TW_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608885092/Net7-logo_180_TW_normal.png", "source": "<a href="http://192.168.1.198" rel="nofollow">star_car_proxy</a>", "text": "Five Big Data predictions for 2012 http://t.co/Kn1hhYKt #bigdata #visualization #hadoop (via @radar @strataconf @lod_it)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:52:40 +0000", "from_user": "topcadexperts", "from_user_id": 7415172, "from_user_id_str": "7415172", "from_user_name": "Joao Greno Brogueira", "geo": null, "id": 147992602698973200, "id_str": "147992602698973184", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/547660846/JGB100x100_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/547660846/JGB100x100_normal.jpg", "source": "<a href="http://www.scoop.it" rel="nofollow">Scoop.it</a>", "text": "Big Data with Hadoop & Cloud | Cloudy Blog?!?!?! | @scoopit http://t.co/a8MyPJ0A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:46:34 +0000", "from_user": "vishwavikalp", "from_user_id": 83765473, "from_user_id_str": "83765473", "from_user_name": "Vishwavikalp", "geo": null, "id": 147991067906678800, "id_str": "147991067906678784", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1258295366/DSC03650_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1258295366/DSC03650_normal.JPG", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Java Developer, Hadoop in Bangalore, India http://t.co/TOgftUji #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:43:46 +0000", "from_user": "r00tm00se", "from_user_id": 114014493, "from_user_id_str": "114014493", "from_user_name": "\\u00C5ke Nordin", "geo": null, "id": 147990360424067070, "id_str": "147990360424067072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1647592457/bookface_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647592457/bookface_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @commoncrawl: MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl by @stevesalevan http://t.co/cBa5598M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:33:17 +0000", "from_user": "mvholmes", "from_user_id": 37717313, "from_user_id_str": "37717313", "from_user_name": "Michael Holmes", "geo": null, "id": 147987724115247100, "id_str": "147987724115247104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1590055595/metwit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1590055595/metwit_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ManningBooks: @hadoopnews #Hadoop in Practice MEAP launch! 50% off today. Use code hadoop50 at http://t.co/lMCtnYZy checkout.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:30:47 +0000", "from_user": "lod_it", "from_user_id": 169284011, "from_user_id_str": "169284011", "from_user_name": "linkedopendata.it", "geo": null, "id": 147987096160833540, "id_str": "147987096160833536", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1232758814/logo_lod_it_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1232758814/logo_lod_it_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @strataconf: Five Big Data predictions for 2012 http://t.co/0no2xN8g via @radar #bigdata #visualization #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:24:03 +0000", "from_user": "ajlopez", "from_user_id": 14567622, "from_user_id_str": "14567622", "from_user_name": "ajlopez", "geo": null, "id": 147985399174791170, "id_str": "147985399174791168", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/53769404/spiral_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/53769404/spiral_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @miguelpdl: Open source Crowbar code now available for Hadoop http://t.co/OZnKKw2x", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:22:50 +0000", "from_user": "miguelpdl", "from_user_id": 19868452, "from_user_id_str": "19868452", "from_user_name": "Miguel Ponce de Leon", "geo": null, "id": 147985093888196600, "id_str": "147985093888196608", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1286492078/twitterself_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1286492078/twitterself_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Open source Crowbar code now available for Hadoop http://t.co/OZnKKw2x", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:10:02 +0000", "from_user": "vishnebo", "from_user_id": 37504860, "from_user_id_str": "37504860", "from_user_name": "boris", "geo": null, "id": 147981871513481200, "id_str": "147981871513481216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl\\nhttp://t.co/taLITydz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:00:28 +0000", "from_user": "nbcaveatemptor", "from_user_id": 15651943, "from_user_id_str": "15651943", "from_user_name": "Paul Catchpole", "geo": null, "id": 147979463743897600, "id_str": "147979463743897601", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1190659877/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1190659877/me_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Crypt0s: Ruby streaming and Cloudera Distribution for #Hadoop are like peanut butter & jelly < A US quirk, not understood by rest of world?", "to_user": "Crypt0s", "to_user_id": 54561212, "to_user_id_str": "54561212", "to_user_name": "Cryptos"}, +{"created_at": "Sat, 17 Dec 2011 09:48:24 +0000", "from_user": "dewhiskeys", "from_user_id": 104772538, "from_user_id_str": "104772538", "from_user_name": "Luca De Vitis", "geo": null, "id": 147976428703584260, "id_str": "147976428703584257", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/665149384/n1424724587_280284_285889_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/665149384/n1424724587_280284_285889_normal.jpg", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/5qbbPrE2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:39:29 +0000", "from_user": "devilcoder", "from_user_id": 15849665, "from_user_id_str": "15849665", "from_user_name": "Anis Mesmouki", "geo": null, "id": 147974184880963600, "id_str": "147974184880963584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/215161437/n1035780156_149374_9362_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/215161437/n1035780156_149374_9362_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "RT @hackernewsbot: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl... http://t.co/b0Lzhp9U", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:31:11 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 147972095601676300, "id_str": "147972095601676288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "HBase, mail # user - Re: Delivery Status Notification (Failure) - 2011 ... http://t.co/fdHZpaxe #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:31:10 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 147972092267208700, "id_str": "147972092267208704", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft Tries Hadoop on Azure | Cloud Computing Journal http://t.co/bWqViVkr #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:31:10 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 147972091185078270, "id_str": "147972091185078272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with ... http://t.co/iuNulIyG #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:25:08 +0000", "from_user": "AnishaTiczon", "from_user_id": 341950685, "from_user_id_str": "341950685", "from_user_name": "Anisha Ticzon", "geo": null, "id": 147970573585235970, "id_str": "147970573585235968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1459573870/anisha_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1459573870/anisha_500_normal.jpg", "source": "<a href="http://suhastech.com/tr" rel="nofollow">Tweet Random</a>", "text": "24 Interview Questions & Answers for Hadoop developers http://t.co/toflNL7m", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:24:02 +0000", "from_user": "codelesson", "from_user_id": 143534212, "from_user_id_str": "143534212", "from_user_name": "CodeLesson", "geo": null, "id": 147970294932443140, "id_str": "147970294932443139", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/897604542/logo_square_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/897604542/logo_square_normal.png", "source": "<a href="http://codelesson.com/" rel="nofollow">CodeLesson</a>", "text": "Here's a link to our online Crunching Big Data with Hadoop course: http://t.co/vkcZmBbf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:18:09 +0000", "from_user": "fragileyouth", "from_user_id": 134001307, "from_user_id_str": "134001307", "from_user_name": "fragileyouth", "geo": null, "id": 147968815647563780, "id_str": "147968815647563776", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @tamagawa_ryuji: \\u304A\\u5F85\\u305F\\u305B\\u3057\\u307E\\u3057\\u305F\\u3002\\u8C61\\u672C\\u3053\\u3068\\u300Chadoop\\u300D\\u306Eebook\\u3001\\u51FA\\u307E\\u3057\\u305F\\uFF01\\u3000http://t.co/Ax1ALVbq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:56:00 +0000", "from_user": "HBaselog", "from_user_id": 335625738, "from_user_id_str": "335625738", "from_user_name": "HBase Commit Log", "geo": null, "id": 147963243695063040, "id_str": "147963243695063040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/hbaselog" rel="nofollow">Apache HBase Commit Log</a>", "text": "http://t.co/wOlCOZJh #HBase HBASE-5055 Build against hadoop 0.22 broken\\n\\ngit-svn-id: https://t.co/eNZp8Gxu@1215356 13f", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:50:41 +0000", "from_user": "anidris_SA", "from_user_id": 192487725, "from_user_id_str": "192487725", "from_user_name": "anidris", "geo": null, "id": 147961903661072400, "id_str": "147961903661072384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1126763950/logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1126763950/logo_normal.jpg", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "RT @techmilind: New record: 186 Gbps between data centers! Mirror 20PB hadoop cluster in only 20 days. http://t.co/hzJZ014p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:49:12 +0000", "from_user": "SoftEngJobsPay", "from_user_id": 428586447, "from_user_id_str": "428586447", "from_user_name": "SoftEngJobsPay", "geo": null, "id": 147961529441067000, "id_str": "147961529441067008", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1674192820/sqlusasquare1_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674192820/sqlusasquare1_bigger_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Software Engineer - Senior Hadoop Software Engineer at Emc/greenplum (San Mateo, CA) http://t.co/X4LpdSs8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:39:40 +0000", "from_user": "mhnsr", "from_user_id": 67339818, "from_user_id_str": "67339818", "from_user_name": "nsr", "geo": null, "id": 147959129200271360, "id_str": "147959129200271360", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1249463416/jpm-barc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1249463416/jpm-barc_normal.jpg", "source": "<a href="http://www.zusaar.com/" rel="nofollow">Zusaar</a>", "text": "RT @tamtam180: 17\\u65E5\\u76EE\\u66F8\\u304D\\u307E\\u3057\\u305F(\\u30FB\\u03C9\\u30FB)\\uFF89\\nHive0.8 timestamp\\u306B\\u3064\\u3044\\u3066\\u3067\\u3059\\u3002\\nhttp://t.co/IWOiiDNp\\u2026 / hadoop\\u30A2\\u30C9\\u30D9\\u30F3\\u30C8\\u30AB\\u30EC\\u30F3\\u30C0\\u30FC2011 http://t.co/FBdwvgDB #zusaar", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:35:01 +0000", "from_user": "danielchownet", "from_user_id": 16262954, "from_user_id_str": "16262954", "from_user_name": "Daniel Chow", "geo": null, "id": 147957962923712500, "id_str": "147957962923712512", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1433998841/photo_100x100_sv_gaussian3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1433998841/photo_100x100_sv_gaussian3_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure http://t.co/JDGDOLzJ #cloudcomputing", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:34:09 +0000", "from_user": "delfinof", "from_user_id": 29531965, "from_user_id_str": "29531965", "from_user_name": "Francesco Delfino", "geo": null, "id": 147957744165601280, "id_str": "147957744165601280", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1643688932/_29531965_-5740430031097686038_146_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643688932/_29531965_-5740430031097686038_146_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @simon: Love it :) \"@mndoci: Zero to #Hadoop in 5 minutes: http://t.co/UPA7VyWX #aws #coolstuff\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:26:28 +0000", "from_user": "msnikosan", "from_user_id": 29941542, "from_user_id_str": "29941542", "from_user_name": "Nikos Anastopoulos", "geo": null, "id": 147955807458295800, "id_str": "147955807458295809", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1443690739/avatarpic-l_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1443690739/avatarpic-l_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @MicrosoftBI: I uploaded a @YouTube video http://t.co/WWiuQpFL Introduction to the Hadoop on Azure Interactive Hive Console", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:26:19 +0000", "from_user": "msnikosan", "from_user_id": 29941542, "from_user_id_str": "29941542", "from_user_name": "Nikos Anastopoulos", "geo": null, "id": 147955772897234940, "id_str": "147955772897234944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1443690739/avatarpic-l_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1443690739/avatarpic-l_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @MicrosoftBI: You are QUICK! RT @AliRebai: Check this intro video for the latest (Metro-style) CTP of #Hadoop on Azure Hive Console : http://t.co/03VAjOsC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:09:23 +0000", "from_user": "mopennock", "from_user_id": 200005386, "from_user_id_str": "200005386", "from_user_name": "Maureen Pennock", "geo": null, "id": 147951508854546430, "id_str": "147951508854546432", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1649965581/mpennock_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649965581/mpennock_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @strataconf: Five Big Data predictions for 2012 http://t.co/0no2xN8g via @radar #bigdata #visualization #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:01:26 +0000", "from_user": "satoruf", "from_user_id": 56858689, "from_user_id_str": "56858689", "from_user_name": "\\u8239\\u4E95\\u3000\\u899A, Satoru Funai", "geo": null, "id": 147949509333356540, "id_str": "147949509333356544", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/769358094/091203portrait_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/769358094/091203portrait_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "\\uFF11\\uFF10\\uFF10\\uFF10\\u5186\\u5B89\\u3044\\uFF01\\u201C@tamagawa_ryuji: \\u304A\\u5F85\\u305F\\u305B\\u3057\\u307E\\u3057\\u305F\\u3002\\u8C61\\u672C\\u3053\\u3068\\u300Chadoop\\u300D\\u306Eebook\\u3001\\u51FA\\u307E\\u3057\\u305F\\uFF01\\u3000http://t.co/5KRyE5Fy\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:44:31 +0000", "from_user": "gnanavels", "from_user_id": 23320405, "from_user_id_str": "23320405", "from_user_name": "Gnanavel Subramaniam", "geo": null, "id": 147945254362955780, "id_str": "147945254362955776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl... http://t.co/oAYXCSrn -- hackernewsbot (@hackernewsbot)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:38:48 +0000", "from_user": "Dalice", "from_user_id": 5708502, "from_user_id_str": "5708502", "from_user_name": "\\u3060\\u308A\\u3059", "geo": null, "id": 147943814550654980, "id_str": "147943814550654976", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697858306/out-dalice-icon-null_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697858306/out-dalice-icon-null_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @tamagawa_ryuji: \\u304A\\u5F85\\u305F\\u305B\\u3057\\u307E\\u3057\\u305F\\u3002\\u8C61\\u672C\\u3053\\u3068\\u300Chadoop\\u300D\\u306Eebook\\u3001\\u51FA\\u307E\\u3057\\u305F\\uFF01\\u3000http://t.co/Ax1ALVbq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:37:43 +0000", "from_user": "dentomo", "from_user_id": 71979620, "from_user_id_str": "71979620", "from_user_name": "\\u50B3\\u667A\\u4E4B", "geo": null, "id": 147943541518241800, "id_str": "147943541518241792", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @tamagawa_ryuji: \\u304A\\u5F85\\u305F\\u305B\\u3057\\u307E\\u3057\\u305F\\u3002\\u8C61\\u672C\\u3053\\u3068\\u300Chadoop\\u300D\\u306Eebook\\u3001\\u51FA\\u307E\\u3057\\u305F\\uFF01\\u3000http://t.co/Ax1ALVbq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:30:14 +0000", "from_user": "amtindia", "from_user_id": 17646260, "from_user_id_str": "17646260", "from_user_name": "AMT", "geo": null, "id": 147941657533366270, "id_str": "147941657533366273", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/341107159/AMT_twi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/341107159/AMT_twi_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Five big data predictions for 2012 - By @Radar http://t.co/aEFdKfUy #NoSQL #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:29:08 +0000", "from_user": "hamaken", "from_user_id": 14853489, "from_user_id_str": "14853489", "from_user_name": "\\u6FF1\\u91CE \\u8CE2\\u4E00\\u6717 / Hamano ", "geo": null, "id": 147941380814151680, "id_str": "147941380814151680", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1371746814/NEC_6364_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1371746814/NEC_6364_normal.JPG", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @tamagawa_ryuji: \\u304A\\u5F85\\u305F\\u305B\\u3057\\u307E\\u3057\\u305F\\u3002\\u8C61\\u672C\\u3053\\u3068\\u300Chadoop\\u300D\\u306Eebook\\u3001\\u51FA\\u307E\\u3057\\u305F\\uFF01\\u3000http://t.co/Ax1ALVbq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:25:59 +0000", "from_user": "d8Pit", "from_user_id": 264394701, "from_user_id_str": "264394701", "from_user_name": "The URL Popularizer", "geo": null, "id": 147940588447207420, "id_str": "147940588447207424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317284522/logo-header_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317284522/logo-header_normal.png", "source": "<a href="http://d8p.it" rel="nofollow">d8P</a>", "text": "RT @beckersweet: \"What's possible when open source meets open data\" via @HPC_Guru @mndoci #hadoop #bigdata #github | http://t.co/1uNuUgxh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:23:19 +0000", "from_user": "tmybj", "from_user_id": 178367731, "from_user_id_str": "178367731", "from_user_name": "\\u3086\\u304B\\u3080", "geo": null, "id": 147939918470062080, "id_str": "147939918470062080", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1308638542/from_twitStatus18162_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1308638542/from_twitStatus18162_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @tamagawa_ryuji: \\u304A\\u5F85\\u305F\\u305B\\u3057\\u307E\\u3057\\u305F\\u3002\\u8C61\\u672C\\u3053\\u3068\\u300Chadoop\\u300D\\u306Eebook\\u3001\\u51FA\\u307E\\u3057\\u305F\\uFF01\\u3000http://t.co/Ax1ALVbq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:21:39 +0000", "from_user": "beckersweet", "from_user_id": 343024766, "from_user_id_str": "343024766", "from_user_name": "Barbara Collignon", "geo": null, "id": 147939499052253200, "id_str": "147939499052253184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1602983920/BarbaraCCollignon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1602983920/BarbaraCCollignon_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "\"What's possible when open source meets open data\" via @HPC_Guru @mndoci http://t.co/oIOsAEx2 #hadoop #bigdata #github", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:18:47 +0000", "from_user": "kimukou_26", "from_user_id": 127385502, "from_user_id_str": "127385502", "from_user_name": "kimukou_26", "geo": null, "id": 147938776382054400, "id_str": "147938776382054400", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698307192/66.png_groovy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698307192/66.png_groovy_normal.png", "source": "<a href="http://www.tweenapp.org/" rel="nofollow">Tween</a>", "text": "(#SakuTeki ust at http://t.co/K5GXY3C9 )\\nHadoop \\uFF0B Mahout \\u3050\\u3089\\u3044\\u306E\\u30EC\\u30A4\\u30E4\\u30FC \\uFF1D Jubatus", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:11:39 +0000", "from_user": "kimukou_26", "from_user_id": 127385502, "from_user_id_str": "127385502", "from_user_name": "kimukou_26", "geo": null, "id": 147936980372693000, "id_str": "147936980372692993", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698307192/66.png_groovy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698307192/66.png_groovy_normal.png", "source": "<a href="http://www.tweenapp.org/" rel="nofollow">Tween</a>", "text": "(#SakuTeki ust at http://t.co/K5GXY3C9 )\\nHadoop\\uFF09\\n\\u30FB\\u901F\\u3044 \\u30FB\\u30FB\\u30C7\\u30FC\\u30BF\\u3092\\u4E00\\u6C17\\u306B\\u51E6\\u7406 \\uFF1C\\u305F\\u3060\\u3057\\u30C7\\u30FC\\u30BF\\u53D6\\u5F97\\u306F\\u9045\\u3044 \\n\\u30FB\\u5206\\u6563 \\u30FB\\u30FBPC\\u5897\\u3084\\u305B\\u3070\\u901F\\u304F\\u3067\\u304D\\u308B \\n\\u30FB\\u30ED\\u30D0\\u30B9\\u30C8 \\u30FB\\u30FB1\\u500B\\u843D\\u3061\\u3066\\u3082\\u4F55\\u3068\\u304B\\u306A\\u308B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:11:00 +0000", "from_user": "Robotulisms", "from_user_id": 40804333, "from_user_id_str": "40804333", "from_user_name": "Dillon Compton", "geo": null, "id": 147936815498788860, "id_str": "147936815498788864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1008003785/45jsus6b_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1008003785/45jsus6b_normal", "source": "<a href="http://news.ycombinator.com/" rel="nofollow">Hacker News Bot</a>", "text": "RT @hackernewsbot: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl... http://t.co/JGEaGFBn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:10:20 +0000", "from_user": "kimukou_26", "from_user_id": 127385502, "from_user_id_str": "127385502", "from_user_name": "kimukou_26", "geo": null, "id": 147936649886703600, "id_str": "147936649886703616", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698307192/66.png_groovy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698307192/66.png_groovy_normal.png", "source": "<a href="http://www.tweenapp.org/" rel="nofollow">Tween</a>", "text": "(#SakuTeki ust at http://t.co/K5GXY3C9 )\\n\\u30AA\\u30F3\\u30E9\\u30A4\\u30F3\\u6A5F\\u68B0\\u5B66\\u7FD2 \\uFF06 Hadoop \\u306E\\u30B3\\u30E9\\u30DC \\nHadoop\\uFF09 \\n\\u30FB\\u30D0\\u30C3\\u30C1\\u51E6\\u7406\\u306E\\u5206\\u6563\\u30D5\\u30EC\\u30FC\\u30E0\\u30EF\\u30FC\\u30AF \\u3068\\u8003\\u3048\\u3066\\u826F\\u3044\\n\\uFF1C\\u3069\\u3053\\u3067\\u3082\\u8CB7\\u3048\\u308B\\u30D1\\u30BD\\u30B3\\u30F3\\u3067\\u5206\\u6563\\u51E6\\u7406", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:09:06 +0000", "from_user": "markswall", "from_user_id": 19688728, "from_user_id_str": "19688728", "from_user_name": "Mark Wall", "geo": null, "id": 147936340481282050, "id_str": "147936340481282049", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676652683/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676652683/Untitled_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft Tries Hadoop on Azure | Cloud Computing Journal http://t.co/8600wyI5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:08:56 +0000", "from_user": "tamagawa_ryuji", "from_user_id": 92008327, "from_user_id_str": "92008327", "from_user_name": "tamagawa ryuji", "geo": null, "id": 147936295954554880, "id_str": "147936295954554880", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/540083339/shichimi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/540083339/shichimi_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "\\u304A\\u5F85\\u305F\\u305B\\u3057\\u307E\\u3057\\u305F\\u3002\\u8C61\\u672C\\u3053\\u3068\\u300Chadoop\\u300D\\u306Eebook\\u3001\\u51FA\\u307E\\u3057\\u305F\\uFF01\\u3000http://t.co/Ax1ALVbq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:06:02 +0000", "from_user": "avkashchauhan", "from_user_id": 213118614, "from_user_id_str": "213118614", "from_user_name": "Avkash Chauhan", "geo": null, "id": 147935565822705660, "id_str": "147935565822705664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1615647152/asc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615647152/asc_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Just downloaded #ZooKeeper 3.4.1 release for my #Hadoop box, you can get as well -: http://t.co/E4qnXkln.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 06:55:03 +0000", "from_user": "INFAIM", "from_user_id": 145062108, "from_user_id_str": "145062108", "from_user_name": "Julianna DeLua (EIM)", "geo": null, "id": 147932804104196100, "id_str": "147932804104196097", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "source": "<a href="http://futuretweets.com" rel="nofollow"> Futuretweets V2</a>", "text": "Most popular On-demand Webinar 2011 @ralphkimball http://t.co/FjsjlgSC Make data warehouse adaptable for #bigdata #hadoop @informaticacorp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 06:51:30 +0000", "from_user": "TigerHasse", "from_user_id": 25981250, "from_user_id_str": "25981250", "from_user_name": "Hans Sterby", "geo": null, "id": 147931910675505150, "id_str": "147931910675505152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/114821309/Bild_32___normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/114821309/Bild_32___normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @chris_brockett: Carls source code for hadoop streaming and #FSharp mapreduce is here: http://t.co/T4AcG0K0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 06:39:07 +0000", "from_user": "meromelite", "from_user_id": 15690127, "from_user_id_str": "15690127", "from_user_name": "T. Sudou", "geo": null, "id": 147928795037433860, "id_str": "147928795037433857", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1602731505/DSC_4795_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1602731505/DSC_4795_normal.png", "source": "<a href="http://www.crowy.net/" rel="nofollow">Crowy</a>", "text": "@iakiyama Hadoop\\u57FA\\u5E79\\u30D0\\u30C3\\u30C1\\u306E\\u5B9F\\u52D9\\u62C5\\u5F53\\u8005\\u304C\\u558B\\u308B\\u3068\\u805E\\u3044\\u3066\\u884C\\u3063\\u3066\\u307F\\u305F\\u3089\\u3001MapReduce\\u306B\\u98DF\\u308F\\u305B\\u308B\\u524D\\u306E\\u30C7\\u30FC\\u30BF\\u306EETL\\u3092\\u3069\\u3046\\u3059\\u308B\\u304B\\u306B\\u3064\\u3044\\u3066\\u306E\\u8A71\\u3092\\u5EF6\\u3005\\u805E\\u304B\\u3055\\u308C\\u3066\\u6B7B\\u306C\\u304B\\u3068\\u601D\\u3063\\u305F\\u3053\\u3068\\u304C\\u3042\\u308A\\u307E\\u3059\\u3002\\u3067\\u3082\\u305D\\u308C\\u304C\\u5B9F\\u52D9\\u306E\\u73FE\\u5B9F\\u306A\\u3093\\u3067\\u3057\\u3087\\u3046\\u306D\\u3002", "to_user": "iakiyama", "to_user_id": 62665005, "to_user_id_str": "62665005", "to_user_name": "\\uFF8E\\uFF9F\\uFF9D\\uFF80\\u79CB\\u5C71\\u6CC9Izumi Akiyama", "in_reply_to_status_id": 147920064853712900, "in_reply_to_status_id_str": "147920064853712896"}, +{"created_at": "Sat, 17 Dec 2011 06:37:03 +0000", "from_user": "the_haigo", "from_user_id": 43882835, "from_user_id_str": "43882835", "from_user_name": "ShouTakafuji", "geo": null, "id": 147928271798018050, "id_str": "147928271798018050", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/249953482/843374_m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/249953482/843374_m_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Hadoop\\u306F\\u3000write once read\\u3000many\\u3000\\u307F\\u305F\\u3044\\u306A\\u306E\\u306B\\u9069\\u3057\\u3066\\u308B\\u3000\\u7279\\u306B\\u6574\\u7406\\u3057\\u3066\\u306A\\u3044\\u60C5\\u5831\\u3092\\u3069\\u3093\\u3069\\u3093\\u7A81\\u3063\\u8FBC\\u3093\\u3067\\u3000\\u5F8C\\u304B\\u3089\\u5FC5\\u8981\\u306A\\u306E\\u3092\\u53D6\\u308A\\u51FA\\u3059\\u3068\\u8A00\\u3063\\u305F\\u611F\\u3058\\u3000\\u8AB0\\u304B\\u3084\\u3089\\u306A\\u3044\\u304B\\u306A\\uFF1F\\u3000\\uFF08\\u30C1\\u30E9\\u30C1\\u30E9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 06:34:51 +0000", "from_user": "the_haigo", "from_user_id": 43882835, "from_user_id_str": "43882835", "from_user_name": "ShouTakafuji", "geo": null, "id": 147927721266257920, "id_str": "147927721266257920", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/249953482/843374_m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/249953482/843374_m_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "\\u3053\\u308CHadoop\\u3068\\u304B\\u3067\\u3084\\u308B\\u3068\\u9762\\u767D\\u3044\\u3093\\u3058\\u3083\\u306D\\uFF1F #LvsHvsEsemi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 06:24:56 +0000", "from_user": "StevenWeinberg", "from_user_id": 342000033, "from_user_id_str": "342000033", "from_user_name": "Steven Weinberg", "geo": null, "id": 147925226557149200, "id_str": "147925226557149184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1459709371/StevenWeinberg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1459709371/StevenWeinberg_normal.jpg", "source": "<a href="http://suhastech.com/tr" rel="nofollow">Tweet Random</a>", "text": "24 Interview Questions & Answers for Hadoop developers http://t.co/QiuZdAkW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 06:23:35 +0000", "from_user": "Mika_Koo", "from_user_id": 348365236, "from_user_id_str": "348365236", "from_user_name": "Mika K\\u00E4ck", "geo": null, "id": 147924883840577540, "id_str": "147924883840577536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1528504455/Kuva_otettu_4.9.2011_klo_21.16_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1528504455/Kuva_otettu_4.9.2011_klo_21.16_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @WindowsAzure: Microsoft Tries Hadoop on #Windows #Azure: gives Windows Azure Big Data capabilities http://t.co/hgQobdw2 #Cloud /via @Cloud_Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 06:20:36 +0000", "from_user": "ken121f", "from_user_id": 238123526, "from_user_id_str": "238123526", "from_user_name": "arif setiawan", "geo": null, "id": 147924134335225860, "id_str": "147924134335225856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1215428924/10843_176198593772_669158772_2903617_7802723_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1215428924/10843_176198593772_669158772_2903617_7802723_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Hadoop vs parallel dbms benchmark http://t.co/UHURH7sz. Cost and easy to setup is what makes hadoop attractive.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:58:41 +0000", "from_user": "msraurjp", "from_user_id": 130084480, "from_user_id_str": "130084480", "from_user_name": "Noboru Kuno", "geo": null, "id": 147918619655933950, "id_str": "147918619655933952", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1104059478/photo2__3__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1104059478/photo2__3__normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "Hadoop Streaming and F# MapReduce http://t.co/x17M7W6Z", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:46:02 +0000", "from_user": "kimukou_26", "from_user_id": 127385502, "from_user_id_str": "127385502", "from_user_name": "kimukou_26", "geo": null, "id": 147915432957984770, "id_str": "147915432957984769", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698307192/66.png_groovy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698307192/66.png_groovy_normal.png", "source": "<a href="http://www.tweenapp.org/" rel="nofollow">Tween</a>", "text": "(#SakuTeki ust at http://t.co/K5GXY3C9 )\\nhttp://t.co/xIPNNrDi P13 \\nHadoop\\u306E\\u8A71\\u3092\\u52C9\\u5F37\\u3059\\u308B\\u3088\\u308A\\u3001\\u3069\\u3046\\u30C7\\u30FC\\u30BF\\u3092\\u4F7F\\u3046\\u304B\\u3068\\u3044\\u3046\\u8A71\\u306F\\n\\u3084\\u306F\\u308A\\u7D71\\u8A08\\u5B66\\u3092\\u52C9\\u5F37\\u3057\\u306A\\u3044\\u3068\\u30C0\\u30E1 \\uFF1D\\uFF1EHadoop\\u306E\\u672C\\u3060\\u3051\\u3067\\u306A\\u304F\\u7D71\\u8A08\\u5B66\\u3082\\u52C9\\u5F37", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:45:51 +0000", "from_user": "amansk", "from_user_id": 7809372, "from_user_id_str": "7809372", "from_user_name": "Amandeep Khurana", "geo": null, "id": 147915388959735800, "id_str": "147915388959735808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1390756647/ak_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1390756647/ak_twitter_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "In Bangalore on Dec 20, 21. Ping me if you want to chat about #Hadoop, #BigData or even coffee or scotch!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:27:08 +0000", "from_user": "kimukou_26", "from_user_id": 127385502, "from_user_id_str": "127385502", "from_user_name": "kimukou_26", "geo": null, "id": 147910679423221760, "id_str": "147910679423221760", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698307192/66.png_groovy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698307192/66.png_groovy_normal.png", "source": "<a href="http://www.tweenapp.org/" rel="nofollow">Tween</a>", "text": "(#SakuTeki ust at http://t.co/K5GXY3C9 )\\nhttp://t.co/xIPNNrDi P5 \\nHadoop\\u306E\\u30C1\\u30E5\\u30FC\\u30CB\\u30F3\\u30B0\\uFF1D\\uFF1E\\u3053\\u308C\\u306F\\u96E3\\u3057\\u3044\\u3002\\n\\uFF1C\\uFF1D\\u3067\\u3082MySQL\\u306E\\u30C1\\u30E5\\u30FC\\u30CB\\u30F3\\u30B0\\u3068\\u304B\\u30A4\\u30F3\\u30D5\\u30E9\\u5468\\u308A\\u306E\\u8A2D\\u5B9A\\uFF08\\u30B3\\u30A2\\u306A\\u51E6\\uFF09\\u306F\\u96E3\\u3057\\u3044\\u306E\\u306F\\u5F53\\u7136\\u3067\\u3059\\u3088\\u306D\\uFF1F", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:25:57 +0000", "from_user": "KentaInLab", "from_user_id": 115071226, "from_user_id_str": "115071226", "from_user_name": "\\u77F3\\u539F\\u3000\\u5065\\u592A", "geo": null, "id": 147910382198071300, "id_str": "147910382198071296", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1196341865/KentaInLab_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1196341865/KentaInLab_normal.jpg", "source": "<a href="http://www.tweenapp.org/" rel="nofollow">Tween</a>", "text": "RT @kimukou_26: (#SakuTeki ust at http://t.co/K5GXY3C9 )\\nhttp://t.co/xIPNNrDi \\nP5 Hadoop\\u306F\\u96E3\\u3057\\u3044\\uFF1D\\uFF1E\\u305D\\u3093\\u306A\\u3053\\u3068\\u306F\\u306A\\u3044\\u3088 \\n\\uFF1C\\uFF0DHive\\u3084HiveQL\\uFF08\\u672C\\u5F53\\u306BMySQL\\u3068\\u5909\\u308F\\u3089\\u306A\\u3044\\u3088\\uFF5E", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:25:50 +0000", "from_user": "ejstembler", "from_user_id": 6163562, "from_user_id_str": "6163562", "from_user_name": "Edward J. Stembler", "geo": null, "id": 147910352611450880, "id_str": "147910352611450881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1550178728/ejs_icon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1550178728/ejs_icon_normal.png", "source": "<a href="http://news.ycombinator.com/" rel="nofollow">Hacker News Bot</a>", "text": "RT @hackernewsbot: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl... http://t.co/JGEaGFBn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:25:27 +0000", "from_user": "kimukou_26", "from_user_id": 127385502, "from_user_id_str": "127385502", "from_user_name": "kimukou_26", "geo": null, "id": 147910254682832900, "id_str": "147910254682832896", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698307192/66.png_groovy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698307192/66.png_groovy_normal.png", "source": "<a href="http://www.tweenapp.org/" rel="nofollow">Tween</a>", "text": "(#SakuTeki ust at http://t.co/K5GXY3C9 )\\nhttp://t.co/xIPNNrDi \\nP5 Hadoop\\u306F\\u96E3\\u3057\\u3044\\uFF1D\\uFF1E\\u305D\\u3093\\u306A\\u3053\\u3068\\u306F\\u306A\\u3044\\u3088 \\n\\uFF1C\\uFF0DHive\\u3084HiveQL\\uFF08\\u672C\\u5F53\\u306BMySQL\\u3068\\u5909\\u308F\\u3089\\u306A\\u3044\\u3088\\uFF5E", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:24:55 +0000", "from_user": "KentaInLab", "from_user_id": 115071226, "from_user_id_str": "115071226", "from_user_name": "\\u77F3\\u539F\\u3000\\u5065\\u592A", "geo": null, "id": 147910121710829570, "id_str": "147910121710829568", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1196341865/KentaInLab_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1196341865/KentaInLab_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "\\u8A71\\u984C\\u306EHadoop\\u3067\\u30D3\\u30C3\\u30AF\\u30C7\\u30FC\\u30BF\\u3092\\u3082\\u3061\\u3044\\u3066\\u304B\\u3063\\u3053\\u3044\\u3044\\u3053\\u3068\\u3092\\u3057\\u3066\\u308B\\u3042\\u3093\\u3061\\u3079\\u6C0F w #SakuTeki", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:24:01 +0000", "from_user": "kimukou_26", "from_user_id": 127385502, "from_user_id_str": "127385502", "from_user_name": "kimukou_26", "geo": null, "id": 147909894589255680, "id_str": "147909894589255681", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698307192/66.png_groovy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698307192/66.png_groovy_normal.png", "source": "<a href="http://www.tweenapp.org/" rel="nofollow">Tween</a>", "text": "(#SakuTeki ust at http://t.co/K5GXY3C9 )\\n\\u8A71\\u984C\\u306EHadoop\\u3092\\u4F7F\\u3063\\u3066\\uFF1D\\uFF1E\\u30D3\\u30C3\\u30AF\\u30C7\\u30FC\\u30BF\\u3092\\u4F7F\\u3063\\u3066\\u30C7\\u30FC\\u30BF\\u30DE\\u30A4\\u30CB\\u30F3\\u30B0\\uFF1D\\uFF1E\\u304B\\u3063\\u3053\\u3044\\u3044\\u4ED5\\u4E8B\\uFF01\\u6642\\u4EE3\\u306E\\u6700\\u5148\\u7AEF\\uFF01", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:21:55 +0000", "from_user": "alatani", "from_user_id": 15130994, "from_user_id_str": "15130994", "from_user_name": "alatani", "geo": null, "id": 147909364643151870, "id_str": "147909364643151872", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696309681/kokage_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696309681/kokage_normal.PNG", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@KatsukiYui \\u3044\\u3044\\u3048\\u3002\\u3044\\u307E\\u306E\\u30C8\\u30EC\\u30F3\\u30C9\\u306FHadoop\\u306B\\u3088\\u308B\\u5206\\u6563\\u4E26\\u5217\\u5316\\u3067\\u3059(\\uFF84\\uFF9E\\uFF94\\uFF6F", "to_user": "KatsukiYui", "to_user_id": 21756899, "to_user_id_str": "21756899", "to_user_name": "\\u83EF\\u6708\\u7531\\u6BD4 (-G-IRL-6)", "in_reply_to_status_id": 147908929114996740, "in_reply_to_status_id_str": "147908929114996736"}, +{"created_at": "Sat, 17 Dec 2011 05:20:53 +0000", "from_user": "ctdean", "from_user_id": 14950559, "from_user_id_str": "14950559", "from_user_name": "Chris Dean", "geo": null, "id": 147909105737142270, "id_str": "147909105737142272", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/66385933/2860397649_a4b5d16bb1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/66385933/2860397649_a4b5d16bb1_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @simon: Love it :) \"@mndoci: Zero to #Hadoop in 5 minutes: http://t.co/UPA7VyWX #aws #coolstuff\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:19:02 +0000", "from_user": "INFAIM", "from_user_id": 145062108, "from_user_id_str": "145062108", "from_user_name": "Julianna DeLua (EIM)", "geo": null, "id": 147908639217291260, "id_str": "147908639217291264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Check this out: http://t.co/zOomf3S4 Trying to turn #bigdata into Big Business Opps? @informaticacorp #hadoop #social #facebook", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:04:58 +0000", "from_user": "simon", "from_user_id": 9269, "from_user_id_str": "9269", "from_user_name": "Simone Brunozzi", "geo": null, "id": 147905100122308600, "id_str": "147905100122308608", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/62814875/simon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/62814875/simon_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Love it :) \"@mndoci: Zero to #Hadoop in 5 minutes: http://t.co/UPA7VyWX #aws #coolstuff\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:00:22 +0000", "from_user": "AzureCloudNet", "from_user_id": 92151837, "from_user_id_str": "92151837", "from_user_name": "Azure Cloud Network", "geo": null, "id": 147903943995957250, "id_str": "147903943995957249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1218573122/Windows_Asure_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218573122/Windows_Asure_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Azure #Cloud Microsoft Tries Hadoop on Azure | Cloud Computing Journal: Microsoft added a trial version of Apac... http://t.co/2GHywGPJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:53:36 +0000", "from_user": "rjurney", "from_user_id": 15831927, "from_user_id_str": "15831927", "from_user_name": "Russell Jurney", "geo": null, "id": 147902237937631230, "id_str": "147902237937631232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1468674812/bad_avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1468674812/bad_avatar_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@strlen @andrewwatson Voldemort is top hard to use with Hadoop. Mongo and HBase can be written to directly from Pig.", "to_user": "strlen", "to_user_id": 8959562, "to_user_id_str": "8959562", "to_user_name": "Alex Feinberg", "in_reply_to_status_id": 147901844272840700, "in_reply_to_status_id_str": "147901844272840704"}, +{"created_at": "Sat, 17 Dec 2011 04:53:28 +0000", "from_user": "biomap", "from_user_id": 158380504, "from_user_id_str": "158380504", "from_user_name": "Amandeep Sidhu", "geo": null, "id": 147902204504834050, "id_str": "147902204504834048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1649894835/pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649894835/pic_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @WindowsAzure: Microsoft Tries Hadoop on #Windows #Azure: gives Windows Azure Big Data capabilities http://t.co/hgQobdw2 #Cloud /via @Cloud_Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:52:02 +0000", "from_user": "strlen", "from_user_id": 8959562, "from_user_id_str": "8959562", "from_user_name": "Alex Feinberg", "geo": null, "id": 147901844272840700, "id_str": "147901844272840704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/234237160/books_belarus_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/234237160/books_belarus_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@rjurney @andrewwatson That said, I'm talking about primary data. For derived data (esp coming from Hadoop) use I'd use Voldemort right away", "to_user": "rjurney", "to_user_id": 15831927, "to_user_id_str": "15831927", "to_user_name": "Russell Jurney", "in_reply_to_status_id": 147901283662168060, "in_reply_to_status_id_str": "147901283662168065"}, +{"created_at": "Sat, 17 Dec 2011 04:48:47 +0000", "from_user": "INFAIM", "from_user_id": 145062108, "from_user_id_str": "145062108", "from_user_name": "Julianna DeLua (EIM)", "geo": null, "id": 147901029118251000, "id_str": "147901029118251008", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Informatica_URG: Replays Now Available for #InformaticaCorp \\u201CHadoop Tuesdays\\u201D 7-Part Series http://t.co/KUKoqvuy #BigData #Hadoop #IURG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:48:39 +0000", "from_user": "INFAIM", "from_user_id": 145062108, "from_user_id_str": "145062108", "from_user_name": "Julianna DeLua (EIM)", "geo": null, "id": 147900995568017400, "id_str": "147900995568017408", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Informatica_URG: Replays Now Available for #InformaticaCorp \\u201CHadoop Tuesdays\\u201D 7-Part Series http://t.co/KUKoqvuy #BigData #Hadoop @forrester @ventanaresearch", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:48:37 +0000", "from_user": "INFAIM", "from_user_id": 145062108, "from_user_id_str": "145062108", "from_user_name": "Julianna DeLua (EIM)", "geo": null, "id": 147900984797052930, "id_str": "147900984797052928", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Informatica_URG: Replays Now Available for #InformaticaCorp \\u201CHadoop Tuesdays\\u201D 7-Part Series http://t.co/KUKoqvuy #BigData #Hadoop @Accenture @451Research", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:48:32 +0000", "from_user": "INFAIM", "from_user_id": 145062108, "from_user_id_str": "145062108", "from_user_name": "Julianna DeLua (EIM)", "geo": null, "id": 147900966178533380, "id_str": "147900966178533376", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Informatica_URG: Replays Now Available for #InformaticaCorp \\u201CHadoop Tuesdays\\u201D 7-Part Series http://t.co/KUKoqvuy #BigData #Hadoop @cloudera @BigDataInt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:39:22 +0000", "from_user": "dbaishya", "from_user_id": 11195222, "from_user_id_str": "11195222", "from_user_name": "Dhruba Baishya", "geo": null, "id": 147898659370049540, "id_str": "147898659370049537", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1592018100/dbaishya_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592018100/dbaishya_normal.jpeg", "source": "<a href="http://www.alphonsolabs.com/" rel="nofollow">Pulse News</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl (74 points) http://t.co/7tNRDnZO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:24:55 +0000", "from_user": "StephenHawking9", "from_user_id": 341975857, "from_user_id_str": "341975857", "from_user_name": "Stephen Hawking", "geo": null, "id": 147895019636916220, "id_str": "147895019636916224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1459648557/StephanHawking_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1459648557/StephanHawking_normal.jpg", "source": "<a href="http://suhastech.com/tr" rel="nofollow">Tweet Random</a>", "text": "24 Interview Questions & Answers for Hadoop developers http://t.co/QOsinPTo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:21:48 +0000", "from_user": "tw_top_1zrvr5s", "from_user_id": 336197975, "from_user_id_str": "336197975", "from_user_name": "Top Tech", "geo": null, "id": 147894237789306880, "id_str": "147894237789306880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/5qbbPrE2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:21:15 +0000", "from_user": "nawabiqbal", "from_user_id": 290747670, "from_user_id_str": "290747670", "from_user_name": "Nawab Asad Iqbal", "geo": null, "id": 147894097967972350, "id_str": "147894097967972352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664306369/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664306369/twitter_normal.jpg", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/5qbbPrE2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:20:27 +0000", "from_user": "haricm", "from_user_id": 31181347, "from_user_id_str": "31181347", "from_user_name": "\\u0D39\\u0D30\\u0D3F ", "geo": null, "id": 147893897564135420, "id_str": "147893897564135425", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/691292304/final_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/691292304/final_bigger_normal.jpg", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/5qbbPrE2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:20:13 +0000", "from_user": "followbotlist", "from_user_id": 420104059, "from_user_id_str": "420104059", "from_user_name": "\\u3076\\u308D\\u3063\\u304F\\u308A\\u3059\\u3068", "geo": null, "id": 147893836444745730, "id_str": "147893836444745728", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twittbot.net/" rel="nofollow">twittbot.net</a>", "text": "C\\u8A00\\u8A9E/C++/C#/F#/PHP/Perl/Ruby/Python/Lisp/Prolog/ML/Haskell/HTML5/VB/Basic/\\u30A6\\u30A7\\u30D6\\u30C7\\u30B6\\u30A4\\u30F3/\\u30EC\\u30F3\\u30BF\\u30EB\\u30B5\\u30FC\\u30D0/CGI/\\u30BB\\u30AD\\u30E5\\u30EA\\u30C6\\u30A3/FLASH/Web/\\u30BD\\u30FC\\u30B7\\u30E3\\u30EB/SNS/\\u30B0\\u30EB\\u30FC\\u30D7\\u30A6\\u30A7\\u30A2/Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:15:29 +0000", "from_user": "MurthySudarshan", "from_user_id": 136985806, "from_user_id_str": "136985806", "from_user_name": "Sudarshan Murthy", "geo": null, "id": 147892646428413950, "id_str": "147892646428413952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/851419253/smurthy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/851419253/smurthy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Very useful post. Included video is a bit rushed MT @commoncrawl 0 to Hadoop in 5 mins w/ Common Crawl by @stevesalevan http://t.co/gZoiVAL9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:01:58 +0000", "from_user": "Informatica_URG", "from_user_id": 126268033, "from_user_id_str": "126268033", "from_user_name": "Informatica Resource", "geo": null, "id": 147889247142154240, "id_str": "147889247142154240", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702338869/Informatica_logo_300x300RGB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702338869/Informatica_logo_300x300RGB_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Replays Now Available for #InformaticaCorp \\u201CHadoop Tuesdays\\u201D 7-Part Series http://t.co/KUKoqvuy #BigData #Hadoop @cloudera @BigDataInt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:00:18 +0000", "from_user": "Informatica_URG", "from_user_id": 126268033, "from_user_id_str": "126268033", "from_user_name": "Informatica Resource", "geo": null, "id": 147888827787247600, "id_str": "147888827787247616", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702338869/Informatica_logo_300x300RGB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702338869/Informatica_logo_300x300RGB_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Replays Now Available for #InformaticaCorp \\u201CHadoop Tuesdays\\u201D 7-Part Series http://t.co/KUKoqvuy #BigData #Hadoop @Accenture @451Research", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:58:49 +0000", "from_user": "AzureCloudNet", "from_user_id": 92151837, "from_user_id_str": "92151837", "from_user_name": "Azure Cloud Network", "geo": null, "id": 147888454582276100, "id_str": "147888454582276096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1218573122/Windows_Asure_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218573122/Windows_Asure_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Azure #Cloud Microsoft Tries Hadoop on Azure | Cloud Computing Journal: Microsoft added a trial version of Apac... http://t.co/2zEo2tJC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:58:23 +0000", "from_user": "Informatica_URG", "from_user_id": 126268033, "from_user_id_str": "126268033", "from_user_name": "Informatica Resource", "geo": null, "id": 147888344616026100, "id_str": "147888344616026112", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702338869/Informatica_logo_300x300RGB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702338869/Informatica_logo_300x300RGB_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Replays Now Available for #InformaticaCorp \\u201CHadoop Tuesdays\\u201D 7-Part Series http://t.co/KUKoqvuy #BigData #Hadoop @forrester @ventanaresearch", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:55:54 +0000", "from_user": "Informatica_URG", "from_user_id": 126268033, "from_user_id_str": "126268033", "from_user_name": "Informatica Resource", "geo": null, "id": 147887719014608900, "id_str": "147887719014608896", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702338869/Informatica_logo_300x300RGB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702338869/Informatica_logo_300x300RGB_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Replays Now Available for #InformaticaCorp \\u201CHadoop Tuesdays\\u201D 7-Part Series http://t.co/KUKoqvuy #BigData #Hadoop #IURG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:52:01 +0000", "from_user": "josephmisiti", "from_user_id": 58631564, "from_user_id_str": "58631564", "from_user_name": "joseph misiti", "geo": null, "id": 147886740953235460, "id_str": "147886740953235456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1473473302/Screen_shot_2011-08-01_at_9.19.42_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1473473302/Screen_shot_2011-08-01_at_9.19.42_PM_normal.png", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @peteskomoroch: How to quickly process 40TB of data from Common Crawl using Hadoop & Amazon EC2 http://t.co/yum3VZyF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:51:12 +0000", "from_user": "kavasavada", "from_user_id": 32781950, "from_user_id_str": "32781950", "from_user_name": "Krutarth Vasavada", "geo": null, "id": 147886536422211600, "id_str": "147886536422211584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1621821134/IMG00222-20111104-1453_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621821134/IMG00222-20111104-1453_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT \"@newsycombinator: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/rQRPfqOQ\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:48:51 +0000", "from_user": "muteokie", "from_user_id": 175734409, "from_user_id_str": "175734409", "from_user_name": "Okie Emuoyibo", "geo": null, "id": 147885944387801100, "id_str": "147885944387801089", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://www.news.me" rel="nofollow">news.me</a>", "text": "How to quickly process 40TB of data from Common Crawl using Hadoop & Amazon EC2 http://t.co/dUONi52e via @peteskomoroch", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:48:42 +0000", "from_user": "amnigos", "from_user_id": 15596661, "from_user_id_str": "15596661", "from_user_name": "Vijay Rayapati", "geo": null, "id": 147885908677492740, "id_str": "147885908677492736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1335449264/220791_10150161521533510_518353509_6698152_7618770_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335449264/220791_10150161521533510_518353509_6698152_7618770_o_normal.jpg", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/5qbbPrE2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Sat, 17 Dec 2011 03:48:42 +0000", "from_user": "amnigos", "from_user_id": 15596661, "from_user_id_str": "15596661", "from_user_name": "Vijay Rayapati", "geo": null, "id": 147885908677492740, "id_str": "147885908677492736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1335449264/220791_10150161521533510_518353509_6698152_7618770_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335449264/220791_10150161521533510_518353509_6698152_7618770_o_normal.jpg", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/5qbbPrE2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:46:41 +0000", "from_user": "n_nkmr", "from_user_id": 15870152, "from_user_id_str": "15870152", "from_user_name": "n_nkmr", "geo": null, "id": 147885399027621900, "id_str": "147885399027621889", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/768024881/twitter_N-02_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/768024881/twitter_N-02_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u9023\\u8F09\\uFF1AAmazon Elastic MapReduce\\u306E\\u4F7F\\u3044\\u65B9\\u2500Hadoop\\u3088\\u308A\\u624B\\u8EFD\\u306B\\u306F\\u3058\\u3081\\u308B\\u5927\\u898F\\u6A21\\u8A08\\u7B97\\uFF5Cgihyo.jp \\u2026 \\u6280\\u8853\\u8A55\\u8AD6\\u793E - http://t.co/UscJKVgL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:42:01 +0000", "from_user": "michaelcoyote", "from_user_id": 16167428, "from_user_id_str": "16167428", "from_user_name": "michaelcoyote", "geo": null, "id": 147884227080359940, "id_str": "147884227080359936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/421284334/1226463797165_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/421284334/1226463797165_normal.jpg", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "RT @techmilind: New record: 186 Gbps between data centers! Mirror 20PB hadoop cluster in only 20 days. http://t.co/hzJZ014p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:35:39 +0000", "from_user": "CQ_Liu", "from_user_id": 189514007, "from_user_id_str": "189514007", "from_user_name": "Winston Liu", "geo": null, "id": 147882623799279600, "id_str": "147882623799279617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1163984472/MyTwitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1163984472/MyTwitter_normal.jpg", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/5qbbPrE2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:34:35 +0000", "from_user": "rhm2k", "from_user_id": 14065215, "from_user_id_str": "14065215", "from_user_name": "Rich Miller", "geo": null, "id": 147882355258966000, "id_str": "147882355258966016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1178804758/Headshot4b_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1178804758/Headshot4b_normal.jpg", "source": "<a href="http://www.feedly.com" rel="nofollow">feedly</a>", "text": "Cloudera Manager 3.7 released http://t.co/UfJYeINs < More steps toward making Hadoop enterprise grade.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:32:26 +0000", "from_user": "okachimachiorz1", "from_user_id": 170457076, "from_user_id_str": "170457076", "from_user_name": "\\u30B8\\u30A7\\u30A4\\u30E0\\u30BA\\u30FB\\u5FA1\\u5F92\\u753A\\u30FB\\u30D6\\u30C3\\u30AB\\u30FC", "geo": null, "id": 147881812960620540, "id_str": "147881812960620545", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1087454555/twitterProfilePhoto_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1087454555/twitterProfilePhoto_bigger_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @cocoatomo: \\u8272\\u3005\\u3042\\u305F\\u3075\\u305F\\u3057\\u306A\\u304C\\u3089\\u66F8\\u3044\\u305F. > \\u6700\\u3082\\u901F\\u304F Hadoop \\u74B0\\u5883\\u3092\\u624B\\u306B\\u5165\\u308C\\u308B\\u65B9\\u6CD5 - Elliptium http://t.co/QlM9Ymmy via @cocoatomo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:29:27 +0000", "from_user": "markswall", "from_user_id": 19688728, "from_user_id_str": "19688728", "from_user_name": "Mark Wall", "geo": null, "id": 147881061974683650, "id_str": "147881061974683648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676652683/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676652683/Untitled_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with ... http://t.co/Ir5j2jLg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:27:14 +0000", "from_user": "hideaki_t", "from_user_id": 9645112, "from_user_id_str": "9645112", "from_user_name": "Hideaki Takahashi", "geo": null, "id": 147880506183262200, "id_str": "147880506183262209", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1152578320/dp_ts_march03_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1152578320/dp_ts_march03_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nsharp_2ch: \\u3055\\u3063\\u305D\\u304F\\u3053\\u3046\\u3044\\u3046\\u30B5\\u30F3\\u30D7\\u30EB\\u304C\\u51FA\\u3066\\u304D\\u305F\\u304B\\u3002\\uFF08\\uFF1B\\uFF3E\\u03C9\\uFF3E\\uFF09\\nHadoop Streaming and F# MapReduce\\nhttp://t.co/MgKsrqiH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:26:50 +0000", "from_user": "stackfeed", "from_user_id": 237310237, "from_user_id_str": "237310237", "from_user_name": "StackOverflow", "geo": null, "id": 147880403234070530, "id_str": "147880403234070528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Type mismatch in key from map: expected .. Text, received ... LongWritable: I have a simple hadoop application, ... http://t.co/TCghZkI1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:25:18 +0000", "from_user": "alsargent", "from_user_id": 6623882, "from_user_id_str": "6623882", "from_user_name": "Al Sargent", "geo": null, "id": 147880016338878460, "id_str": "147880016338878466", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1110017170/al.sargent.2010.smiling.head.twitter.resolution_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1110017170/al.sargent.2010.smiling.head.twitter.resolution_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "RT @mjasay: LexisNexis open sources Hadoop challenger, says it's 4X faster http://t.co/FKDmhOIR <Maybe true, but Hadoop's strength is its community", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:23:14 +0000", "from_user": "yuya_takeyama", "from_user_id": 86672236, "from_user_id_str": "86672236", "from_user_name": "Yuya Takeyama", "geo": null, "id": 147879497788698620, "id_str": "147879497788698624", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1462152687/B000ELJAI8.01._SCLZZZZZZZ_V56939722__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1462152687/B000ELJAI8.01._SCLZZZZZZZ_V56939722__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nsharp_2ch: \\u3055\\u3063\\u305D\\u304F\\u3053\\u3046\\u3044\\u3046\\u30B5\\u30F3\\u30D7\\u30EB\\u304C\\u51FA\\u3066\\u304D\\u305F\\u304B\\u3002\\uFF08\\uFF1B\\uFF3E\\u03C9\\uFF3E\\uFF09\\nHadoop Streaming and F# MapReduce\\nhttp://t.co/MgKsrqiH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:21:48 +0000", "from_user": "nsharp_2ch", "from_user_id": 86472223, "from_user_id_str": "86472223", "from_user_name": "nsharp", "geo": null, "id": 147879139368640500, "id_str": "147879139368640512", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1482188154/icon3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1482188154/icon3_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u3055\\u3063\\u305D\\u304F\\u3053\\u3046\\u3044\\u3046\\u30B5\\u30F3\\u30D7\\u30EB\\u304C\\u51FA\\u3066\\u304D\\u305F\\u304B\\u3002\\uFF08\\uFF1B\\uFF3E\\u03C9\\uFF3E\\uFF09\\nHadoop Streaming and F# MapReduce\\nhttp://t.co/MgKsrqiH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:19:37 +0000", "from_user": "apinkin", "from_user_id": 29578597, "from_user_id_str": "29578597", "from_user_name": "Alex Pinkin", "geo": null, "id": 147878588228714500, "id_str": "147878588228714496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1630730056/apinkin_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630730056/apinkin_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @peteskomoroch: How to quickly process 40TB of data from Common Crawl using Hadoop & Amazon EC2 http://t.co/yum3VZyF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:16:01 +0000", "from_user": "d8Pit", "from_user_id": 264394701, "from_user_id_str": "264394701", "from_user_name": "The URL Popularizer", "geo": null, "id": 147877683970314240, "id_str": "147877683970314240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317284522/logo-header_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317284522/logo-header_normal.png", "source": "<a href="http://d8p.it" rel="nofollow">d8P</a>", "text": "RT @ialjkk: Cloudera upgrades Hadoop management tools, offers free version for startups #bigdata | http://t.co/a8jHlwZo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:00:24 +0000", "from_user": "MeetUpX", "from_user_id": 230423507, "from_user_id_str": "230423507", "from_user_name": "MeetUp eXtenders", "geo": null, "id": 147873752577875970, "id_str": "147873752577875968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1576027835/meetupx_sq_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576027835/meetupx_sq_normal.png", "source": "<a href="http://bostonpreneur.com/meetupx" rel="nofollow">MeetupXApp</a>", "text": "@cindywilliam you posted a tweet 'Attend a Meetup Surrounding the Hadoop World Conf..', wanna know who else did? visit http://t.co/FUg3u3ap", "to_user": "CindyWilliam", "to_user_id": 102209632, "to_user_id_str": "102209632", "to_user_name": "cindy william"}, +{"created_at": "Sat, 17 Dec 2011 02:58:46 +0000", "from_user": "nicolastorzec", "from_user_id": 61111487, "from_user_id_str": "61111487", "from_user_name": "Nicolas Torzec", "geo": null, "id": 147873339870941200, "id_str": "147873339870941185", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1525441753/Photo_on_2011-09-02_at_11.47__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1525441753/Photo_on_2011-09-02_at_11.47__2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Status: processing #Wikipedia EN for extracting Movie and TV related images... #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:57:29 +0000", "from_user": "marcosluis2186", "from_user_id": 71701378, "from_user_id_str": "71701378", "from_user_name": "Marcos Ortiz ", "geo": null, "id": 147873017953914880, "id_str": "147873017953914880", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1215605067/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1215605067/avatar_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", "text": "RT @HPC_Guru: Zero to #Hadoop in 5 minutes: http://t.co/ejQ8pEmj #aws #BigData via @mndoci", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:55:59 +0000", "from_user": "HPC_Guru", "from_user_id": 23293367, "from_user_id_str": "23293367", "from_user_name": "HPC Guru", "geo": null, "id": 147872639581552640, "id_str": "147872639581552641", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/121065329/IMG_0043_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/121065329/IMG_0043_normal.PNG", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", "text": "Zero to #Hadoop in 5 minutes: http://t.co/ejQ8pEmj #aws #BigData via @mndoci", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:50:05 +0000", "from_user": "ClearedJobsNet", "from_user_id": 18635626, "from_user_id_str": "18635626", "from_user_name": "ClearedJobsNet", "geo": null, "id": 147871156546977800, "id_str": "147871156546977793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1119145552/Profile2010_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1119145552/Profile2010_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Building a Business on Open Source - Hadoop, Hbase http://t.co/7NXTZi1F via @lusciouspear #pig #memcached #hadoop #opensources", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:49:19 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 147870961327288320, "id_str": "147870961327288320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Azure price cuts, bigger databases, now with node.js and MongoDB support ... http://t.co/7p7mo7xq #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:49:18 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 147870960190636030, "id_str": "147870960190636032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloudera upgrades Hadoop management tools, offers free version for startups http://t.co/1RYS7rDH #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:48:34 +0000", "from_user": "AdrianaRobbins", "from_user_id": 235381886, "from_user_id_str": "235381886", "from_user_name": "adriana robbins", "geo": null, "id": 147870772835262460, "id_str": "147870772835262464", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1209711999/adriana_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1209711999/adriana_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "LATEST: When HANA meets Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:46:01 +0000", "from_user": "d8Pit", "from_user_id": 264394701, "from_user_id_str": "264394701", "from_user_name": "The URL Popularizer", "geo": null, "id": 147870134231498750, "id_str": "147870134231498752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317284522/logo-header_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317284522/logo-header_normal.png", "source": "<a href="http://d8p.it" rel="nofollow">d8P</a>", "text": "RT @ialjkk: Microsoft Fully Committed to Hadoop Thanks to Hortonworks ... #bigdata | http://t.co/ZyIl5zgm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:45:50 +0000", "from_user": "satolone", "from_user_id": 398507580, "from_user_id_str": "398507580", "from_user_name": "Scott Tolone", "geo": null, "id": 147870086210924540, "id_str": "147870086210924544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1683949662/GlobalBigData_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683949662/GlobalBigData_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Novel solution to making Hadoop namenode highly available: MySQL cluster. http://t.co/hMCHZzTz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:45:02 +0000", "from_user": "dbmoore", "from_user_id": 5025521, "from_user_id_str": "5025521", "from_user_name": "Dennis Moore", "geo": null, "id": 147869886369116160, "id_str": "147869886369116160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/55245814/Dennis_Moore_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/55245814/Dennis_Moore_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#EnSW #Microsoft Azure price cuts, bigger databases, now with #OpenSource node.js and MongoDB support, #Hadoop on... http://t.co/B6AkM8jD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:38:02 +0000", "from_user": "johnmoehrke", "from_user_id": 15170018, "from_user_id_str": "15170018", "from_user_name": "johnmoehrke", "geo": null, "id": 147868122521665540, "id_str": "147868122521665536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1181050098/Snapshot_of_me_2_small_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1181050098/Snapshot_of_me_2_small_normal.png", "source": "<a href="http://news.ycombinator.com/" rel="nofollow">Hacker News Bot</a>", "text": "RT @hackernewsbot: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl... http://t.co/JGEaGFBn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:36:21 +0000", "from_user": "abhishektiwari", "from_user_id": 19114465, "from_user_id_str": "19114465", "from_user_name": "Abhishek Tiwari", "geo": null, "id": 147867699203153920, "id_str": "147867699203153920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1640032026/Twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640032026/Twitter_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @techmilind: @mahadevkonar now that multilingual protocol support for MR is available in #Hadoop, what's preventing native node-level services?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:34:25 +0000", "from_user": "patrickclee0207", "from_user_id": 113093915, "from_user_id_str": "113093915", "from_user_name": "Patrick Lee", "geo": null, "id": 147867214224162800, "id_str": "147867214224162817", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1164401647/twitterProfile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1164401647/twitterProfile_normal.jpg", "source": "<a href="http://news.ycombinator.com/" rel="nofollow">Hacker News Bot</a>", "text": "RT @hackernewsbot: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl... http://t.co/JGEaGFBn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:33:39 +0000", "from_user": "Dalice", "from_user_id": 5708502, "from_user_id_str": "5708502", "from_user_name": "\\u3060\\u308A\\u3059", "geo": null, "id": 147867018538917900, "id_str": "147867018538917888", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697858306/out-dalice-icon-null_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697858306/out-dalice-icon-null_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "\\u898B\\u3066\\u308B\\uFF1A\\u6700\\u3082\\u901F\\u304F Hadoop \\u74B0\\u5883\\u3092\\u624B\\u306B\\u5165\\u308C\\u308B\\u65B9\\u6CD5 - Elliptium http://t.co/XS9No5nP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:24:48 +0000", "from_user": "dentomo", "from_user_id": 71979620, "from_user_id_str": "71979620", "from_user_name": "\\u50B3\\u667A\\u4E4B", "geo": null, "id": 147864792709861380, "id_str": "147864792709861376", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @cocoatomo: \\u8272\\u3005\\u3042\\u305F\\u3075\\u305F\\u3057\\u306A\\u304C\\u3089\\u66F8\\u3044\\u305F. > \\u6700\\u3082\\u901F\\u304F Hadoop \\u74B0\\u5883\\u3092\\u624B\\u306B\\u5165\\u308C\\u308B\\u65B9\\u6CD5 - Elliptium http://t.co/QlM9Ymmy via @cocoatomo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:20:37 +0000", "from_user": "sfahad", "from_user_id": 42889631, "from_user_id_str": "42889631", "from_user_name": "Fahad Shah", "geo": null, "id": 147863738882605060, "id_str": "147863738882605056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/261897199/mypic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/261897199/mypic_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @WindowsAzure: Microsoft Tries Hadoop on #Windows #Azure: gives Windows Azure Big Data capabilities http://t.co/hgQobdw2 #Cloud /via @Cloud_Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:19:24 +0000", "from_user": "Informatica_URG", "from_user_id": 126268033, "from_user_id_str": "126268033", "from_user_name": "Informatica Resource", "geo": null, "id": 147863435332419600, "id_str": "147863435332419584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702338869/Informatica_logo_300x300RGB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702338869/Informatica_logo_300x300RGB_normal.jpg", "source": "<a href="http://futuretweets.com" rel="nofollow"> Futuretweets V2</a>", "text": "RT @INFAIM: Most popular On-demand Webinar 2011 @ralphkimball http://t.co/FjsjlgSC Make data warehouse adaptable for #bigdata #hadoop @informaticacorp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:18:42 +0000", "from_user": "tingletech", "from_user_id": 86486316, "from_user_id_str": "86486316", "from_user_name": "Brian Tingle", "geo": null, "id": 147863257355522050, "id_str": "147863257355522049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/703026457/n100000284269054_1783_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/703026457/n100000284269054_1783_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl | CommonCrawl - \\u201CCommon Crawl... http://t.co/b6ac9m52", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:18:10 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 147863122357665800, "id_str": "147863122357665792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft Fully Committed to Hadoop Thanks to Hortonworks ... http://t.co/J7XVP3hB #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:16:01 +0000", "from_user": "d8Pit", "from_user_id": 264394701, "from_user_id_str": "264394701", "from_user_name": "The URL Popularizer", "geo": null, "id": 147862580982067200, "id_str": "147862580982067202", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317284522/logo-header_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317284522/logo-header_normal.png", "source": "<a href="http://d8p.it" rel="nofollow">d8P</a>", "text": "RT @TheBigDataTrap: NoSQL Job of the Day: Hadoop Solution Architect #bigdata | http://t.co/6I30PoAP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:07:34 +0000", "from_user": "getwired", "from_user_id": 14960835, "from_user_id_str": "14960835", "from_user_name": "Wes Miller", "geo": null, "id": 147860456009248770, "id_str": "147860456009248768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702541807/photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702541807/photo_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @dennylee: \\u201C@Technitrain: Bringing It All Together In The Cloud and #Excel http://t.co/EWNaSsVv\\u201D #BigData #Hadoop #Azure #hadooponazure", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:06:57 +0000", "from_user": "CareerSculptors", "from_user_id": 368299625, "from_user_id_str": "368299625", "from_user_name": "CareerSculptors ", "geo": null, "id": 147860300069220350, "id_str": "147860300069220352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1561907486/cs2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1561907486/cs2_normal.png", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Now Hiring: Hadoop / Mapreduce Developer in California http://t.co/utZPzpR8 #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:02:55 +0000", "from_user": "smithatlanta", "from_user_id": 14599342, "from_user_id_str": "14599342", "from_user_name": "Michael Smith \\u269B", "geo": null, "id": 147859285047648260, "id_str": "147859285047648256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1563331358/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1563331358/image_normal.jpg", "source": "<a href="http://www.instapaper.com/" rel="nofollow">Instapaper</a>", "text": "Hadoop for Managers - Blogs at Near Infinity http://t.co/vniJFuZp (via Instapaper) - I like the coke plant comparison in this article.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:02:03 +0000", "from_user": "TheBigDataTrap", "from_user_id": 389163301, "from_user_id_str": "389163301", "from_user_name": "The Big Data Trap", "geo": null, "id": 147859066394394620, "id_str": "147859066394394625", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1584049409/twitter_prof_-big-data_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584049409/twitter_prof_-big-data_normal.jpg", "source": "<a href="http://trap.it" rel="nofollow">Trapit</a>", "text": "NoSQL Job of the Day: Hadoop Solution Architect http://t.co/sAkRRMIi #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:01:04 +0000", "from_user": "vscarpenter", "from_user_id": 59223, "from_user_id_str": "59223", "from_user_name": "Vinny Carpenter", "geo": null, "id": 147858822025846800, "id_str": "147858822025846784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/48540942/vinny-thumbnail-rounded_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/48540942/vinny-thumbnail-rounded_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl | CommonCrawl http://t.co/pUkDaieU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:59:34 +0000", "from_user": "BuildaCloud", "from_user_id": 388756611, "from_user_id_str": "388756611", "from_user_name": "BuildaCloud", "geo": null, "id": 147858442806231040, "id_str": "147858442806231040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1611146315/Fotolia_17583250_S_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611146315/Fotolia_17583250_S_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Top Wiki Ninjas of the Week - Wesley McSwain brings us Apache #Hadoop and\\u2026 http://t.co/EDUzF5l1 #virtualization", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:57:41 +0000", "from_user": "vkovalskiy", "from_user_id": 203103340, "from_user_id_str": "203103340", "from_user_name": "Vladimir Kovalskiy", "geo": null, "id": 147857969932017660, "id_str": "147857969932017664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1662226907/jetro_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662226907/jetro_normal.png", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/5qbbPrE2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:53:03 +0000", "from_user": "jcleblanc", "from_user_id": 15392140, "from_user_id_str": "15392140", "from_user_name": "Jonathan LeBlanc", "geo": null, "id": 147856801260507140, "id_str": "147856801260507136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/281463265/3490041159_59b53be507_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/281463265/3490041159_59b53be507_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/SflDWYcF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:47:13 +0000", "from_user": "dennylee", "from_user_id": 14610285, "from_user_id_str": "14610285", "from_user_name": "dennylee", "geo": null, "id": 147855333862281200, "id_str": "147855333862281216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/996687129/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/996687129/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "\\u201C@Technitrain: Bringing It All Together In The Cloud and #Excel http://t.co/EWNaSsVv\\u201D #BigData #Hadoop #Azure #hadooponazure", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:46:14 +0000", "from_user": "sameer_", "from_user_id": 23851532, "from_user_id_str": "23851532", "from_user_name": "Sameer Singh", "geo": null, "id": 147855086129922050, "id_str": "147855086129922048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/93368785/DSCN0137_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/93368785/DSCN0137_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @josephreisinger: Glimmers of a _real_ machine learning system for Hadoop via vw allreduce http://t.co/4Pskbuwd \\n#NIPS2011 big learning http://t.co/zT7X3rJi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:42:02 +0000", "from_user": "hackernewsbot", "from_user_id": 19575586, "from_user_id_str": "19575586", "from_user_name": "Hacker News Bot", "geo": null, "id": 147854031904186370, "id_str": "147854031904186369", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/73596050/yc500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/73596050/yc500_normal.jpg", "source": "<a href="http://news.ycombinator.com/" rel="nofollow">Hacker News Bot</a>", "text": "MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl... http://t.co/JGEaGFBn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:39:28 +0000", "from_user": "kevinlawler", "from_user_id": 14212833, "from_user_id_str": "14212833", "from_user_name": "Kevin Lawler", "geo": null, "id": 147853385297707000, "id_str": "147853385297707008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1523163957/2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1523163957/2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Though at 2s round-trip it's safe to bill it as a working Hadoop console", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:38:40 +0000", "from_user": "maropu", "from_user_id": 15774392, "from_user_id_str": "15774392", "from_user_name": "Takeshi Yamamuro", "geo": null, "id": 147853182444376060, "id_str": "147853182444376064", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1501984017/183851_137441423007770_100002257383170_255010_5398365_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1501984017/183851_137441423007770_100002257383170_255010_5398365_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @greenplummy: \\u300CC/C++ libhdfs\\u306E\\u5B9F\\u88C5\\u306B\\u3088\\u308AJava\\u4EEE\\u60F3\\u30DE\\u30B7\\u30F3\\u3092\\u56DE\\u907F\\u3057\\u3066\\u30D5\\u30A1\\u30A4\\u30EB\\u30B7\\u30B9\\u30C6\\u30E0\\u306B\\u30A2\\u30AF\\u30BB\\u30B9\\u300D\\u300CMapReduce 2.0\\u5BFE\\u5FDC\\u300D\\u7C73MapR\\u3001MapReduce 2.0\\u306B\\u5BFE\\u5FDC\\u3057\\u305FApache Hadoop\\u30C7\\u30A3\\u30B9\\u30C8\\u30ED\\u300CMapR 1.2\\u300D\\u3092\\u767A\\u8868http://t.co/bj8XpBC7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:38:32 +0000", "from_user": "boguta", "from_user_id": 28210273, "from_user_id_str": "28210273", "from_user_name": "John Boguta", "geo": null, "id": 147853148294352900, "id_str": "147853148294352896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/256398194/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/256398194/me_normal.jpg", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/5qbbPrE2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:37:51 +0000", "from_user": "kevinlawler", "from_user_id": 14212833, "from_user_id_str": "14212833", "from_user_name": "Kevin Lawler", "geo": null, "id": 147852975614869500, "id_str": "147852975614869504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1523163957/2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1523163957/2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "The promise of \"real-time Hadoop\" seems like wishful thinking. 200ms specially optimized queries are too slow.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:37:36 +0000", "from_user": "saoirsegirl", "from_user_id": 120908478, "from_user_id_str": "120908478", "from_user_name": "Paula Despins", "geo": null, "id": 147852913790828540, "id_str": "147852913790828544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1674268598/PICT0014_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674268598/PICT0014_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @spyced: Northwestern launches MS in analytics, covering #hadoop and #cassandra http://t.co/7ZBITVxI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:29:23 +0000", "from_user": "bobgourley", "from_user_id": 14554287, "from_user_id_str": "14554287", "from_user_name": "Bob Gourley", "geo": null, "id": 147850847878004740, "id_str": "147850847878004737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/55466197/bobpng_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/55466197/bobpng_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Crypt0s: Ruby streaming and Cloudera Distribution for #Hadoop are like peanut butter and jelly. Easy, quick, efficient, gets the job done, no stress.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:28:38 +0000", "from_user": "dguyadeen", "from_user_id": 22665665, "from_user_id_str": "22665665", "from_user_name": "Denis Guyadeen", "geo": null, "id": 147850660149342200, "id_str": "147850660149342208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1627510905/imprimes_71f7864038_big_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627510905/imprimes_71f7864038_big_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @cloudera: Video & slides available for the webinar \"Hadoop Management Made Easy with Cloudera Enterprise 3.7\" http://t.co/FhRQHTGt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:28:11 +0000", "from_user": "bobgourley", "from_user_id": 14554287, "from_user_id_str": "14554287", "from_user_name": "Bob Gourley", "geo": null, "id": 147850546441748480, "id_str": "147850546441748480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/55466197/bobpng_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/55466197/bobpng_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @cloudera: Video & slides available for the webinar \"Hadoop Management Made Easy with Cloudera Enterprise 3.7\" http://t.co/FhRQHTGt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:27:33 +0000", "from_user": "dguyadeen", "from_user_id": 22665665, "from_user_id_str": "22665665", "from_user_name": "Denis Guyadeen", "geo": null, "id": 147850384147365900, "id_str": "147850384147365888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1627510905/imprimes_71f7864038_big_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627510905/imprimes_71f7864038_big_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @dennylee: rockin' stuff! #hadooponazure \\u201C@carl_nolan: New blog post: http://t.co/VyO4tPzV - Hadoop Streaming and F# MapReduce (#in)\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:25:51 +0000", "from_user": "gloscon", "from_user_id": 16637496, "from_user_id_str": "16637496", "from_user_name": "gloscon", "geo": null, "id": 147849958685544450, "id_str": "147849958685544449", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/285227663/gloscon_icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/285227663/gloscon_icon_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Looking for Hadoop Architects? Post your jobs in Linkedin Group Hadoop Jobs http://t.co/hN0Kkc6X", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:21:51 +0000", "from_user": "FAQShop", "from_user_id": 102016867, "from_user_id_str": "102016867", "from_user_name": "FAQShop", "geo": null, "id": 147848950928523260, "id_str": "147848950928523264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/611340236/FAQShop_Twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/611340236/FAQShop_Twitter_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "[TechNet Blogs] Top Wiki Ninjas of the Week - Wesley McSwain brings us Apache Hadoop and Windows Azure: Welcome ... http://t.co/eEMK1kIf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:16:16 +0000", "from_user": "jtuulos", "from_user_id": 43878466, "from_user_id_str": "43878466", "from_user_name": "Jyri Tuulos", "geo": null, "id": 147847548009324540, "id_str": "147847548009324544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/687350955/jyrituulos2010_gravatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/687350955/jyrituulos2010_gravatar_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Bitdeli: Data in 2012: Less Hadoop, more interactivity, experimentation, streaming and visualizations http://t.co/epxPI0QJ by @edd #hadoop #datavis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:15:56 +0000", "from_user": "Bitdeli", "from_user_id": 383070412, "from_user_id_str": "383070412", "from_user_name": "Bitdeli", "geo": null, "id": 147847463028527100, "id_str": "147847463028527105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1606649241/bitdeli_icon_512_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606649241/bitdeli_icon_512_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Data in 2012: Less Hadoop, more interactivity, experimentation, streaming and visualizations http://t.co/epxPI0QJ by @edd #hadoop #datavis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:14:43 +0000", "from_user": "modernizecobol", "from_user_id": 351635069, "from_user_id_str": "351635069", "from_user_name": "Alchemy Solutions", "geo": null, "id": 147847155036590080, "id_str": "147847155036590081", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1621113690/200-200-symbol_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621113690/200-200-symbol_normal.png", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @WindowsAzure: Microsoft Tries Hadoop on #Windows #Azure: gives Windows Azure Big Data capabilities http://t.co/hgQobdw2 #Cloud /via @Cloud_Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:12:26 +0000", "from_user": "kimsterv", "from_user_id": 14255609, "from_user_id_str": "14255609", "from_user_name": "Kim Vogt", "geo": null, "id": 147846580463075330, "id_str": "147846580463075328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696173144/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696173144/image_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @peteskomoroch: How to quickly process 40TB of data from Common Crawl using Hadoop & Amazon EC2 http://t.co/yum3VZyF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:07:43 +0000", "from_user": "iwrigley", "from_user_id": 23684133, "from_user_id_str": "23684133", "from_user_name": "Ian Wrigley", "geo": null, "id": 147845394792067070, "id_str": "147845394792067072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/92400368/shoes_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/92400368/shoes_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@jim68000 If you want Hadoop help, just ask. I've a vague idea about it.", "to_user": "jim68000", "to_user_id": 6613562, "to_user_id_str": "6613562", "to_user_name": "Jim Smith", "in_reply_to_status_id": 147701857438011400, "in_reply_to_status_id_str": "147701857438011392"}, +{"created_at": "Sat, 17 Dec 2011 00:59:58 +0000", "from_user": "Darkmoth", "from_user_id": 14206580, "from_user_id_str": "14206580", "from_user_name": "Haniff Murray", "geo": null, "id": 147843443832524800, "id_str": "147843443832524800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "Zite Personalized Magazine", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/qea6KNES via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:58:15 +0000", "from_user": "nsharp_2ch", "from_user_id": 86472223, "from_user_id_str": "86472223", "from_user_name": "nsharp", "geo": null, "id": 147843011580141570, "id_str": "147843011580141568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1482188154/icon3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1482188154/icon3_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Introduction to the Hadoop on Azure Interactive Hive Console\\nhttp://t.co/MB6t0BQb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:56:00 +0000", "from_user": "d8Pit", "from_user_id": 264394701, "from_user_id_str": "264394701", "from_user_name": "The URL Popularizer", "geo": null, "id": 147842446628356100, "id_str": "147842446628356097", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317284522/logo-header_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317284522/logo-header_normal.png", "source": "<a href="http://d8p.it" rel="nofollow">d8P</a>", "text": "RT @arosenbaum: CommonCrawl Hadoop / AWS tutorial | http://t.co/7ddRQqNB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:54:45 +0000", "from_user": "arosenbaum", "from_user_id": 14522497, "from_user_id_str": "14522497", "from_user_name": "Aaron Rosenbaum", "geo": null, "id": 147842129744502800, "id_str": "147842129744502786", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693207144/Screen_Shot_2011-12-14_at_9.40.27_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693207144/Screen_Shot_2011-12-14_at_9.40.27_AM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "CommonCrawl Hadoop / AWS tutorial http://t.co/aFcJucFG <-mind spinning on stuff to do with CommonCrawl - didn't know about it #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:53:02 +0000", "from_user": "alp_lv", "from_user_id": 15548781, "from_user_id_str": "15548781", "from_user_name": "Brandon Schakola", "geo": null, "id": 147841697370472450, "id_str": "147841697370472448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/59934122/coffee_shop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/59934122/coffee_shop_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "RT @newsycombinator: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/NT65KUNg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:51:43 +0000", "from_user": "skynapse", "from_user_id": 105657998, "from_user_id_str": "105657998", "from_user_name": "Prasanna", "geo": null, "id": 147841369459793920, "id_str": "147841369459793920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1520106918/DSC_0510_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1520106918/DSC_0510_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "#Microsoft Tries #Hadoop on #Windows #Azure: gives Windows Azure #BigData capabilities http://t.co/47qVXEHT #Cloud #saas #cloudcomputing", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:46:02 +0000", "from_user": "d8Pit", "from_user_id": 264394701, "from_user_id_str": "264394701", "from_user_name": "The URL Popularizer", "geo": null, "id": 147839937989984260, "id_str": "147839937989984256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317284522/logo-header_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317284522/logo-header_normal.png", "source": "<a href="http://d8p.it" rel="nofollow">d8P</a>", "text": "RT @markjburnard: Some great cameos on #bigdata here from CFO world #greenplum #hadoop #exadata #emc | http://t.co/D875LNpe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:44:46 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 147839620581830660, "id_str": "147839620581830656", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "No, Hadoop Doesn't Own Big Data Analytics! - Big Data Big ... http://t.co/OkxGyR1g #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:43:29 +0000", "from_user": "markjburnard", "from_user_id": 68337287, "from_user_id_str": "68337287", "from_user_name": "Mark J Burnard", "geo": null, "id": 147839296878018560, "id_str": "147839296878018560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/378623459/Mark_Burnard__3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/378623459/Mark_Burnard__3_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Some great cameos on #bigdata here from CFO world http://t.co/WV5Mw6K1 #greenplum #hadoop #exadata #emc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:39:35 +0000", "from_user": "Kunzeroyale", "from_user_id": 21050828, "from_user_id_str": "21050828", "from_user_name": "Ron Kunze", "geo": null, "id": 147838315889033200, "id_str": "147838315889033216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/79053455/Charles_Russell_Logo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/79053455/Charles_Russell_Logo_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Interesting IDC article on #BigData, Hadoop players and expected industry acquisitions - http://t.co/IYbhh6ap", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:37:22 +0000", "from_user": "Kvittrekvitre", "from_user_id": 161651238, "from_user_id_str": "161651238", "from_user_name": "Kvittre Kvitter", "geo": null, "id": 147837758432493570, "id_str": "147837758432493569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1041979675/qrimage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1041979675/qrimage_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#opensource #geeks MapReduce for the Masses: Zero to Hadoop in Five M http://t.co/cmaiT5sx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:33:18 +0000", "from_user": "NHNewOrleans", "from_user_id": 21303770, "from_user_id_str": "21303770", "from_user_name": "New Horizons N.O.", "geo": null, "id": 147836732266659840, "id_str": "147836732266659841", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1129709379/3e84d4c7-5357-439a-beb2-bf5744f4b597_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1129709379/3e84d4c7-5357-439a-beb2-bf5744f4b597_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Microsoft offers Hadoop preview on Azure http://t.co/geE8drYz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:31:54 +0000", "from_user": "kcqon", "from_user_id": 15573440, "from_user_id_str": "15573440", "from_user_name": "Kyle C. Quest", "geo": null, "id": 147836381144678400, "id_str": "147836381144678400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1483981355/kcq_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1483981355/kcq_pic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @AliRebai: Check this intro video for the latest (Metro-style) CTP of #Hadoop on Azure Hive Console : http://t.co/oCZjOqlh? via @MicrosoftBI #BigData", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:27:42 +0000", "from_user": "ysimba", "from_user_id": 148815074, "from_user_id_str": "148815074", "from_user_name": "Robin Singh", "geo": null, "id": 147835321806106620, "id_str": "147835321806106625", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1225530206/cropped_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225530206/cropped_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @commoncrawl: MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl by @stevesalevan http://t.co/cBa5598M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:25:23 +0000", "from_user": "SQLGal", "from_user_id": 40076709, "from_user_id_str": "40076709", "from_user_name": "Lara Rubbelke", "geo": null, "id": 147834739330519040, "id_str": "147834739330519040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1591841505/WonderWoman2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591841505/WonderWoman2_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @dennylee: rockin' stuff! #hadooponazure \\u201C@carl_nolan: New blog post: http://t.co/VyO4tPzV - Hadoop Streaming and F# MapReduce (#in)\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:20:39 +0000", "from_user": "jnathp", "from_user_id": 325686860, "from_user_id_str": "325686860", "from_user_name": "Jitendra Pandey", "geo": null, "id": 147833550048215040, "id_str": "147833550048215040", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @HadoopNews: Microsoft Tries #Hadoop on #Azure | Cloud Computing Journal http://t.co/jruLNLCS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:17:20 +0000", "from_user": "nickfloyd", "from_user_id": 1009941, "from_user_id_str": "1009941", "from_user_name": "Nick Floyd", "geo": null, "id": 147832716472234000, "id_str": "147832716472233984", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/941854658/avitar9_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/941854658/avitar9_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "MapReduce : Zero to Hadoop in Five Minutes http://t.co/LKkOFbdH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:10:16 +0000", "from_user": "kpi", "from_user_id": 4046381, "from_user_id_str": "4046381", "from_user_name": "Stephan Karpischek", "geo": null, "id": 147830938611626000, "id_str": "147830938611625984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/62274167/kpi_square_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/62274167/kpi_square_normal.png", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl | CommonCrawl http://t.co/pRnZU2hv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:07:45 +0000", "from_user": "admock", "from_user_id": 13117102, "from_user_id_str": "13117102", "from_user_name": "Alan\\u00A0Mock", "geo": null, "id": 147830305087160320, "id_str": "147830305087160321", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @commoncrawl: MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl by @stevesalevan http://t.co/cBa5598M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:07:29 +0000", "from_user": "SynSysLab", "from_user_id": 431835644, "from_user_id_str": "431835644", "from_user_name": "Synoptic Systems Lab", "geo": null, "id": 147830235423965200, "id_str": "147830235423965184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697334800/3649492427_10431e9b83_z_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697334800/3649492427_10431e9b83_z_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Collecting fine-grain provenance on Hadoop jobs with less than 12% overhead for identity jobs; what's beyond drill down for debugging?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:04:49 +0000", "from_user": "Kylebassett", "from_user_id": 19802719, "from_user_id_str": "19802719", "from_user_name": "Kyle Bassett", "geo": null, "id": 147829564909953020, "id_str": "147829564909953024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1377024648/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1377024648/image_normal.jpg", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "RT @techmilind: New record: 186 Gbps between data centers! Mirror 20PB hadoop cluster in only 20 days. http://t.co/hzJZ014p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:58:26 +0000", "from_user": "ryanprociuk", "from_user_id": 17519769, "from_user_id_str": "17519769", "from_user_name": "Large Scale Mischief", "geo": null, "id": 147827957929488400, "id_str": "147827957929488384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1270614856/IMG00122_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1270614856/IMG00122_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@DataJunkie Exactly - I'm pushing mongodb to hadoop, its all fine, until I introduce volume. FML", "to_user": "DataJunkie", "to_user_id": 11595422, "to_user_id_str": "11595422", "to_user_name": "Ryan Rosario", "in_reply_to_status_id": 147827555502788600, "in_reply_to_status_id_str": "147827555502788609"}, +{"created_at": "Fri, 16 Dec 2011 23:57:25 +0000", "from_user": "adamjodonnell", "from_user_id": 14058046, "from_user_id_str": "14058046", "from_user_name": "adamjodonnell", "geo": null, "id": 147827704002117630, "id_str": "147827704002117633", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1690446969/6316849511_59752cc9ef_m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690446969/6316849511_59752cc9ef_m_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@tqbf s/riak/hadoop/", "to_user": "tqbf", "to_user_id": 9395312, "to_user_id_str": "9395312", "to_user_name": "Thomas H. Ptacek", "in_reply_to_status_id": 147821258350936060, "in_reply_to_status_id_str": "147821258350936064"}, +{"created_at": "Fri, 16 Dec 2011 23:57:03 +0000", "from_user": "jganoff", "from_user_id": 49971828, "from_user_id_str": "49971828", "from_user_name": "Jordan Ganoff", "geo": null, "id": 147827611681300480, "id_str": "147827611681300482", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1323834474/jg_cropped_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1323834474/jg_cropped_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "#Pentaho MapReduce is getting easier to install with RPM and Debian packages coming to a repository near you - soon! #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:56:50 +0000", "from_user": "DataJunkie", "from_user_id": 11595422, "from_user_id_str": "11595422", "from_user_name": "Ryan Rosario", "geo": null, "id": 147827555502788600, "id_str": "147827555502788609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1157898476/main-thumb-5941-100-FT7BIXkvPevFD6v2vc2uS3VMKOYv5kSO_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1157898476/main-thumb-5941-100-FT7BIXkvPevFD6v2vc2uS3VMKOYv5kSO_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@ryanprociuk Story of my life. Or I end up needing Hadoop and then having to port Python to Java for the better API.", "to_user": "ryanprociuk", "to_user_id": 17519769, "to_user_id_str": "17519769", "to_user_name": "Large Scale Mischief", "in_reply_to_status_id": 147826536874119170, "in_reply_to_status_id_str": "147826536874119168"}, +{"created_at": "Fri, 16 Dec 2011 23:55:11 +0000", "from_user": "drkhan", "from_user_id": 8465352, "from_user_id_str": "8465352", "from_user_name": "Khan M. Siddiqui, MD", "geo": null, "id": 147827141579522050, "id_str": "147827141579522048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1553565061/Siddiqui1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553565061/Siddiqui1_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @WindowsAzure: Microsoft Tries Hadoop on #Windows #Azure: gives Windows Azure Big Data capabilities http://t.co/hgQobdw2 #Cloud /via @Cloud_Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:55:03 +0000", "from_user": "Charoletteanu", "from_user_id": 422472185, "from_user_id_str": "422472185", "from_user_name": "Charolette Furry", "geo": null, "id": 147827105202307070, "id_str": "147827105202307072", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Pro Hadoop downloads: Pro Hadoop book download Jason Venner Download Pro Hadoop 1.. Books: See all 20 items. Ama... http://t.co/FRz5RoVE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:53:51 +0000", "from_user": "MedicalQuack", "from_user_id": 15248550, "from_user_id_str": "15248550", "from_user_name": "MedicalQuack", "geo": null, "id": 147826807222186000, "id_str": "147826807222185984", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/76341733/Dec_2008-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/76341733/Dec_2008-2_normal.jpg", "source": "<a href="http://www.TechHit.com/twinbox/" rel="nofollow">TwInbox</a>", "text": "RT @WindowsAzure: Microsoft Tries Hadoop on #Windows #Azure: gives Windows Azure Big Data capabilities http://t.co/iM08UFB0 #Cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:43:39 +0000", "from_user": "rafa_callcenter", "from_user_id": 429840940, "from_user_id_str": "429840940", "from_user_name": "Rafa Esca\\u00F1o", "geo": null, "id": 147824238961754100, "id_str": "147824238961754112", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677092620/rafael_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677092620/rafael_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @HadoopNews: Microsoft Tries #Hadoop on #Azure | Cloud Computing Journal http://t.co/jruLNLCS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:42:30 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 147823948879507460, "id_str": "147823948879507456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "HBase, mail # user - new to HBase/NoSQL, need some help with ... http://t.co/OOSXaPgH #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:39:14 +0000", "from_user": "MatthewErbs", "from_user_id": 38740734, "from_user_id_str": "38740734", "from_user_name": "Matthew Erbs", "geo": null, "id": 147823127995494400, "id_str": "147823127995494401", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1261599082/P1020116_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1261599082/P1020116_normal.JPG", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @WindowsAzure: Microsoft Tries Hadoop on #Windows #Azure: gives Windows Azure Big Data capabilities http://t.co/hgQobdw2 #Cloud /via @Cloud_Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:33:25 +0000", "from_user": "programmingfeed", "from_user_id": 23924836, "from_user_id_str": "23924836", "from_user_name": "programming feed", "geo": null, "id": 147821661280940030, "id_str": "147821661280940032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/93775994/progfeed_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/93775994/progfeed_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloudera \\u00BB Apache Hadoop for the Enterprise: http://t.co/WGNf8QpJ #programming", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:32:20 +0000", "from_user": "Zementis", "from_user_id": 40168855, "from_user_id_str": "40168855", "from_user_name": "Zementis", "geo": null, "id": 147821388688928770, "id_str": "147821388688928768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/535829691/zementis-icon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/535829691/zementis-icon_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Operational Deployment of Predictive Solutions: Lost in Translation? Not with #PMML http://t.co/iOjIkykv #bigdata #cloud #analytics #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:31:04 +0000", "from_user": "DoITDistributed", "from_user_id": 97191404, "from_user_id_str": "97191404", "from_user_name": "Bjoern Boettcher", "geo": null, "id": 147821071456944130, "id_str": "147821071456944128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/742734914/ichKlein_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/742734914/ichKlein_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @WindowsAzure: Microsoft Tries Hadoop on #Windows #Azure: gives Windows Azure Big Data capabilities http://t.co/hgQobdw2 #Cloud /via @Cloud_Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:30:07 +0000", "from_user": "TopDevTweets", "from_user_id": 194520782, "from_user_id_str": "194520782", "from_user_name": "TopDevTweets", "geo": null, "id": 147820832545181700, "id_str": "147820832545181696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @WindowsAzure: Microsoft Tries Hadoop on #Windows #Azure: gives Windows Azure Big Data capabilities http://t.co/hgQobdw2 #Cloud /via @Cloud_Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:25:26 +0000", "from_user": "RichardMcDougll", "from_user_id": 1119501, "from_user_id_str": "1119501", "from_user_name": "Richard McDougall", "geo": null, "id": 147819651848618000, "id_str": "147819651848617986", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/248898781/rmccar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/248898781/rmccar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Does anyone know how to get full pathnames instead of ?? in the MacOSX Dtrace I/O provider? (Tracing Hadoop)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:25:09 +0000", "from_user": "kimutan_sk", "from_user_id": 230634636, "from_user_id_str": "230634636", "from_user_name": "Kimura Sotaro", "geo": null, "id": 147819582437081100, "id_str": "147819582437081088", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1218184154/penguin_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218184154/penguin_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\\u3084\\u306F\\u308A\\u3001Hadoop\\u3001Storm\\u306E\\u3088\\u3046\\u306A\\u5206\\u6563\\u30B7\\u30B9\\u30C6\\u30E0\\u3067\\u306F\\u3001\\u300E\\u72B6\\u614B\\u300F\\u3092\\u3069\\u3046\\u6301\\u3064\\u304B\\u304C\\u8AB2\\u984C\\u306B\\u306A\\u308B\\u3088\\u3046\\u3067\\u3059\\u306D\\u3002\\u305F\\u3060\\u3001\\u5143\\u3005\\u3053\\u3046\\u3044\\u3046\\u5206\\u6563\\u30B7\\u30B9\\u30C6\\u30E0\\u81EA\\u4F53\\u304C\\u5927\\u57DF\\u60C5\\u5831\\u3092\\u6301\\u305F\\u306A\\u3044\\u3053\\u3068\\u3067\\u4E26\\u5217\\u5316\\u3092\\u9054\\u6210\\u3057\\u305F\\u3082\\u306E\\u306A\\u306E\\u3068\\u3044\\u3046\\u3053\\u3068\\u3067\\u3042\\u308A\\u307E\\u3057\\u3066\\u3002 #stormjp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:24:30 +0000", "from_user": "appsolutpaul", "from_user_id": 382439816, "from_user_id_str": "382439816", "from_user_name": "Paul Young", "geo": null, "id": 147819420784410620, "id_str": "147819420784410625", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1585623702/yoseflogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585623702/yoseflogo_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @WindowsAzure: Microsoft Tries Hadoop on #Windows #Azure: gives Windows Azure Big Data capabilities http://t.co/hgQobdw2 #Cloud /via @Cloud_Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Fri, 16 Dec 2011 23:21:07 +0000", "from_user": "jbueza", "from_user_id": 141423083, "from_user_id_str": "141423083", "from_user_name": "Jaime Bueza", "geo": null, "id": 147818566492766200, "id_str": "147818566492766208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @WindowsAzure: Microsoft Tries Hadoop on #Windows #Azure: gives Windows Azure Big Data capabilities http://t.co/hgQobdw2 #Cloud /via @Cloud_Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:20:01 +0000", "from_user": "HadoopNews", "from_user_id": 251816878, "from_user_id_str": "251816878", "from_user_name": "John Ching", "geo": null, "id": 147818288653668350, "id_str": "147818288653668352", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1244235692/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1244235692/images_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Microsoft Tries #Hadoop on #Azure | Cloud Computing Journal http://t.co/jruLNLCS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:19:20 +0000", "from_user": "danruss", "from_user_id": 19034177, "from_user_id_str": "19034177", "from_user_name": "Dan Russell", "geo": null, "id": 147818117685444600, "id_str": "147818117685444608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1141476958/BeardDan_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1141476958/BeardDan_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @windowsazure: Microsoft Tries Hadoop on #Windows #Azure: gives Windows Azure Big Data capabilities http://t.co/292BDtNg #Cloud /via...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:18:00 +0000", "from_user": "WindowsAzure", "from_user_id": 17000457, "from_user_id_str": "17000457", "from_user_name": "WindowsAzure", "geo": null, "id": 147817784640942080, "id_str": "147817784640942081", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689662914/Azure-300x300px_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689662914/Azure-300x300px_normal.png", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "Microsoft Tries Hadoop on #Windows #Azure: gives Windows Azure Big Data capabilities http://t.co/hgQobdw2 #Cloud /via @Cloud_Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:16:02 +0000", "from_user": "newsyc50", "from_user_id": 149124522, "from_user_id_str": "149124522", "from_user_name": "Hacker News 50", "geo": null, "id": 147817289184575500, "id_str": "147817289184575488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1083693716/yclogo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1083693716/yclogo_normal.gif", "source": "<a href="http://news.ycombinator.com" rel="nofollow">newsyc</a>", "text": "MapReduce for the Masses: Zero to Hadoop in 5 minutes with Commo http://t.co/ZlQ1SedC (http://t.co/k5cnytIX) #trending #guru", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:13:46 +0000", "from_user": "ramiyengar", "from_user_id": 82956123, "from_user_id_str": "82956123", "from_user_name": "Ram Iyengar", "geo": null, "id": 147816718914420740, "id_str": "147816718914420736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1671457039/IMG00526-20110902-0859_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671457039/IMG00526-20110902-0859_normal.jpg", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/5qbbPrE2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:11:11 +0000", "from_user": "CHempfield", "from_user_id": 18083918, "from_user_id_str": "18083918", "from_user_name": "CHempfield", "geo": null, "id": 147816067169914880, "id_str": "147816067169914881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1264925177/IMG2_6244_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1264925177/IMG2_6244_normal.JPG", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Interesting conversation with a west coast customer. They are doing some interesting things with Hadoop.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:09:55 +0000", "from_user": "lghandi", "from_user_id": 50045837, "from_user_id_str": "50045837", "from_user_name": "Lalitta Ghandikota", "geo": null, "id": 147815746897055740, "id_str": "147815746897055745", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1598588048/Lalitta_Ghandikota_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598588048/Lalitta_Ghandikota_normal.jpg", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "RT @cheriejobtweets: Job: Manager, Hadoop Operations in San Jose, CA http://t.co/xnSLrrhP #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:09:09 +0000", "from_user": "yzli_yzli", "from_user_id": 95430390, "from_user_id_str": "95430390", "from_user_name": "YZ", "geo": null, "id": 147815556442112000, "id_str": "147815556442112000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/5qbbPrE2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:07:09 +0000", "from_user": "hkokko", "from_user_id": 24726686, "from_user_id_str": "24726686", "from_user_name": "Hannu Kokko", "geo": null, "id": 147815053616365570, "id_str": "147815053616365568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/100266288/hannu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/100266288/hannu_normal.jpg", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/5qbbPrE2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:07:08 +0000", "from_user": "dinoamaral", "from_user_id": 41710220, "from_user_id_str": "41710220", "from_user_name": "Dino Amaral", "geo": null, "id": 147815050059587600, "id_str": "147815050059587584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1424745940/IMAG0144_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1424745940/IMAG0144_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @HadoopNews: #MapReduce for the Masses: Zero to #Hadoop in Five Minutes with Common Crawl | CommonCrawl http://t.co/5TSjK6eO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:04:07 +0000", "from_user": "LearnExcel", "from_user_id": 114589142, "from_user_id_str": "114589142", "from_user_name": "Guruonline-Iwebslog", "geo": null, "id": 147814288524967940, "id_str": "147814288524967936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/698010679/excel_2003_01_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/698010679/excel_2003_01_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "http://t.co/pHoXARdG-Microsoft Tries Hadoop on Azure: s App Engine. Users can build MapReduce jobs. Microsoft... http://t.co/KKUSyXaB #Excel", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:04:07 +0000", "from_user": "DBmxorg", "from_user_id": 261452842, "from_user_id_str": "261452842", "from_user_name": "DBmx.org", "geo": null, "id": 147814288336236540, "id_str": "147814288336236545", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1263199080/4395953684_419dff284f_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263199080/4395953684_419dff284f_normal.jpg", "source": "<a href="http://timely.is" rel="nofollow">Timely by Demandforce</a>", "text": "Hadoop puede vivir en Microsoft Azure http://t.co/zmcIi25R #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:03:53 +0000", "from_user": "HadoopNews", "from_user_id": 251816878, "from_user_id_str": "251816878", "from_user_name": "John Ching", "geo": null, "id": 147814229355933700, "id_str": "147814229355933697", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1244235692/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1244235692/images_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#MapReduce for the Masses: Zero to #Hadoop in Five Minutes with Common Crawl | CommonCrawl http://t.co/5TSjK6eO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:03:47 +0000", "from_user": "flytraplabs", "from_user_id": 392520190, "from_user_id_str": "392520190", "from_user_name": "flytraplabs", "geo": null, "id": 147814205968490500, "id_str": "147814205968490496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1610232771/flytrap_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610232771/flytrap_normal.png", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @peteskomoroch: How to quickly process 40TB of data from Common Crawl using Hadoop & Amazon EC2 http://t.co/yum3VZyF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:03:11 +0000", "from_user": "hspencer77", "from_user_id": 12226772, "from_user_id_str": "12226772", "from_user_name": "Harold L Spencer, Jr", "geo": null, "id": 147814053442629630, "id_str": "147814053442629635", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/189840432/IMG_0150_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/189840432/IMG_0150_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\"@newsycombinator: MapReduce for the Masses: 0 to Hadoop in 5 minutes with Common Crawl http://t.co/qpGtnm4V\"\" @chrisgbunch #Appscale-Euca?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:59:21 +0000", "from_user": "dagh", "from_user_id": 9735202, "from_user_id_str": "9735202", "from_user_name": "Dag Holmboe", "geo": null, "id": 147813088110972930, "id_str": "147813088110972928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1078123781/dagholmboe_bw_863x862_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1078123781/dagholmboe_bw_863x862_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @infochimps: RT @dguyadeen: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl: http://t.co/LkgSIWAl #BigData #Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:56:40 +0000", "from_user": "mat_kelcey", "from_user_id": 26970530, "from_user_id_str": "26970530", "from_user_name": "mat kelcey", "geo": null, "id": 147812413402656770, "id_str": "147812413402656769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/760825752/n650991500_422744_3329_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/760825752/n650991500_422744_3329_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @commoncrawl: MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl by @stevesalevan http://t.co/cBa5598M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:56:02 +0000", "from_user": "valb00", "from_user_id": 15373404, "from_user_id_str": "15373404", "from_user_name": "valb00", "geo": null, "id": 147812254333669380, "id_str": "147812254333669377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1162802602/screen-capture-4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1162802602/screen-capture-4_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @MicrosoftBI: I uploaded a @YouTube video http://t.co/WWiuQpFL Introduction to the Hadoop on Azure Interactive Hive Console", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:53:21 +0000", "from_user": "antonvirtual", "from_user_id": 115932585, "from_user_id_str": "115932585", "from_user_name": "Anton Zhbankov", "geo": null, "id": 147811578148954100, "id_str": "147811578148954112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1362621396/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1362621396/image_normal.jpg", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "RT @techmilind: New record: 186 Gbps between data centers! Mirror 20PB hadoop cluster in only 20 days. http://t.co/hzJZ014p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:53:07 +0000", "from_user": "Fowe", "from_user_id": 18560812, "from_user_id_str": "18560812", "from_user_name": "Adeyemi Fowe", "geo": null, "id": 147811523111288830, "id_str": "147811523111288832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1159654352/Fowe_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1159654352/Fowe_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @peteskomoroch: How to quickly process 40TB of data from Common Crawl using Hadoop & Amazon EC2 http://t.co/yum3VZyF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:51:37 +0000", "from_user": "AlexOlesker", "from_user_id": 278166677, "from_user_id_str": "278166677", "from_user_name": "Alexander Olesker", "geo": null, "id": 147811145678454800, "id_str": "147811145678454784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1392859364/Bar_profile_cut_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1392859364/Bar_profile_cut_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "RT @FutureSMEM: @AlexOlesker @ctovision i have handed the intro to hadoop and big data out before. You know, like at street corners with critical audiences", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:47:58 +0000", "from_user": "ChrisDiehl", "from_user_id": 14595061, "from_user_id_str": "14595061", "from_user_name": "Chris Diehl", "geo": null, "id": 147810224672223230, "id_str": "147810224672223232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/660241500/ZionSmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/660241500/ZionSmall_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @peteskomoroch: How to quickly process 40TB of data from Common Crawl using Hadoop & Amazon EC2 http://t.co/yum3VZyF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:47:06 +0000", "from_user": "_adeel", "from_user_id": 17425383, "from_user_id_str": "17425383", "from_user_name": "Adeel Ahmad", "geo": null, "id": 147810007147229200, "id_str": "147810007147229184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/972611450/bimbomug_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/972611450/bimbomug_normal.png", "source": "<a href="http://www.destroytwitter.com" rel="nofollow">DestroyTwitter</a>", "text": "Nice post @stevesalevan - Zero to Hadoop in Five Minutes with Common Crawl http://t.co/SPfPtNU2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:45:26 +0000", "from_user": "vgoklani", "from_user_id": 2129501, "from_user_id_str": "2129501", "from_user_name": "Vishal Goklani", "geo": null, "id": 147809586244616200, "id_str": "147809586244616193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/224307565/n571017400_9793.jpg_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/224307565/n571017400_9793.jpg_normal.jpeg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @peteskomoroch: How to quickly process 40TB of data from Common Crawl using Hadoop & Amazon EC2 http://t.co/yum3VZyF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:44:53 +0000", "from_user": "danyoel", "from_user_id": 28306402, "from_user_id_str": "28306402", "from_user_name": "Dan Liebling", "geo": null, "id": 147809450026209280, "id_str": "147809450026209280", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/212120891/twitter_profile_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/212120891/twitter_profile_pic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "F#, Hadoop, Azure http://t.co/lnPWEfvK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:41:49 +0000", "from_user": "peteskomoroch", "from_user_id": 14344469, "from_user_id_str": "14344469", "from_user_name": "Peter Skomoroch", "geo": null, "id": 147808678890831870, "id_str": "147808678890831872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1331342742/skomoroch_photo_ocean_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1331342742/skomoroch_photo_ocean_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "How to quickly process 40TB of data from Common Crawl using Hadoop & Amazon EC2 http://t.co/yum3VZyF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:39:13 +0000", "from_user": "Microtastic", "from_user_id": 49258571, "from_user_id_str": "49258571", "from_user_name": "Andrew James", "geo": null, "id": 147808022247391230, "id_str": "147808022247391233", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/353697753/thumbnail_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/353697753/thumbnail_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "GA Info: Microsoft Tries Hadoop on Azure | Cloud Computing Journal: With the SDK Microsoft says Azure can integr... http://t.co/wFDCXR5Y", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:37:56 +0000", "from_user": "MicrosoftBI", "from_user_id": 227829587, "from_user_id_str": "227829587", "from_user_name": "Microsoft BI", "geo": null, "id": 147807701483794430, "id_str": "147807701483794432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1214935103/Twitter-Icon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1214935103/Twitter-Icon_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "You are QUICK! RT @AliRebai: Check this intro video for the latest (Metro-style) CTP of #Hadoop on Azure Hive Console : http://t.co/03VAjOsC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:37:52 +0000", "from_user": "othmaniRabeb", "from_user_id": 109628739, "from_user_id_str": "109628739", "from_user_name": "othmani rabeb", "geo": null, "id": 147807685335728130, "id_str": "147807685335728128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1489780886/b75285dc-1a31-4cb8-94fb-ed518f89ea9c_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1489780886/b75285dc-1a31-4cb8-94fb-ed518f89ea9c_normal.png", "source": "<a href="http://www.metrotwit.com/" rel="nofollow">MetroTwit</a>", "text": "RT @AliRebai Check this video for the latest (Metro-style) CTP of #Hadoop on Azure Hive Console : http://t.co/spqsptxj? #BigData", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:37:41 +0000", "from_user": "furrier", "from_user_id": 833071, "from_user_id_str": "833071", "from_user_name": "John Furrier", "geo": null, "id": 147807636685996030, "id_str": "147807636685996032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1139238299/SiliconANGLE_jf_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1139238299/SiliconANGLE_jf_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @AliRebai: Check this intro video for the latest (Metro-style) CTP of #Hadoop on Azure Hive Console : http://t.co/oCZjOqlh? via @MicrosoftBI #BigData", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:36:57 +0000", "from_user": "AliRebai", "from_user_id": 194081605, "from_user_id_str": "194081605", "from_user_name": "Ali Rebai", "geo": null, "id": 147807451285172220, "id_str": "147807451285172224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1669539394/twiter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669539394/twiter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Check this intro video for the latest (Metro-style) CTP of #Hadoop on Azure Hive Console : http://t.co/oCZjOqlh? via @MicrosoftBI #BigData", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:36:16 +0000", "from_user": "DGleebits", "from_user_id": 364557525, "from_user_id_str": "364557525", "from_user_name": "Dan Gleebits \\u2714", "geo": null, "id": 147807280337911800, "id_str": "147807280337911808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1520153825/1310282366138_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1520153825/1310282366138_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Gonna try and stand infront of the Twitter firehose today. Do you think I can do this on a VM based Hadoop Cluster?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:34:15 +0000", "from_user": "coding_doc", "from_user_id": 14625547, "from_user_id_str": "14625547", "from_user_name": "coding_doc", "geo": null, "id": 147806773439500300, "id_str": "147806773439500288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1259872166/handsp66_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1259872166/handsp66_normal.gif", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "RT @jdudley: MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/ohsl5S5w", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:26:08 +0000", "from_user": "d8Pit", "from_user_id": 264394701, "from_user_id_str": "264394701", "from_user_name": "The URL Popularizer", "geo": null, "id": 147804730075254800, "id_str": "147804730075254785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317284522/logo-header_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317284522/logo-header_normal.png", "source": "<a href="http://d8p.it" rel="nofollow">d8P</a>", "text": "RT @Rohit2b: #hadoop #cassandra #openstack #jquery make the top 10 open source projects for 2011 | http://t.co/Eq8tl3CB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:25:01 +0000", "from_user": "RichardDawkins5", "from_user_id": 341947256, "from_user_id_str": "341947256", "from_user_name": "Richard Dawkins", "geo": null, "id": 147804449669267460, "id_str": "147804449669267456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1459560229/RichardDawkins_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1459560229/RichardDawkins_normal.jpg", "source": "<a href="http://suhastech.com/tr" rel="nofollow">Tweet Random</a>", "text": "24 Interview Questions & Answers for Hadoop developers http://t.co/UMtKx2Va", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:24:00 +0000", "from_user": "Rohit2b", "from_user_id": 15189860, "from_user_id_str": "15189860", "from_user_name": "Rohit Bakhshi", "geo": null, "id": 147804193959325700, "id_str": "147804193959325696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1130429140/Twitter_Picture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1130429140/Twitter_Picture_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#hadoop #cassandra #openstack #jquery make the top 10 open source projects for 2011 https://t.co/rX4aFIuG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:23:59 +0000", "from_user": "aidvu", "from_user_id": 303404476, "from_user_id_str": "303404476", "from_user_name": "Andrija Vu\\u010Dini\\u0107", "geo": null, "id": 147804189748244480, "id_str": "147804189748244480", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1600190540/ja_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600190540/ja_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Zero to Hadoop: MapReduce for masses\\nhttp://t.co/EdyuwnkG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:18:01 +0000", "from_user": "carnotweat", "from_user_id": 225349488, "from_user_id_str": "225349488", "from_user_name": "sameer", "geo": null, "id": 147802688044797950, "id_str": "147802688044797952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1317089589/sg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317089589/sg_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/w8tA6s1d", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:17:03 +0000", "from_user": "benosteen", "from_user_id": 9211912, "from_user_id_str": "9211912", "from_user_name": "Ben O'Steen", "geo": null, "id": 147802446238973950, "id_str": "147802446238973953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1586232682/profile_600x450_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586232682/profile_600x450_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @infochimps: RT @dguyadeen: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl: http://t.co/LkgSIWAl #BigData #Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:16:53 +0000", "from_user": "band", "from_user_id": 1169321, "from_user_id_str": "1169321", "from_user_name": "William L. Anderson", "geo": null, "id": 147802403998146560, "id_str": "147802403998146560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/791283923/bill4_2a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/791283923/bill4_2a_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @infochimps: RT @dguyadeen: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl: http://t.co/LkgSIWAl #BigData #Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:16:32 +0000", "from_user": "backupbear", "from_user_id": 89365312, "from_user_id_str": "89365312", "from_user_name": "Preston de Guise", "geo": null, "id": 147802315284430850, "id_str": "147802315284430849", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1557345714/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1557345714/image_normal.jpg", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "RT @techmilind: New record: 186 Gbps between data centers! Mirror 20PB hadoop cluster in only 20 days. http://t.co/hzJZ014p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:16:12 +0000", "from_user": "TechAssoc", "from_user_id": 92243805, "from_user_id_str": "92243805", "from_user_name": "TechnologyAssociates", "geo": null, "id": 147802231259930620, "id_str": "147802231259930625", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/659762257/Technology_Asso_arrowsv2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/659762257/Technology_Asso_arrowsv2_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "Hadoop Streaming and F# MapReduce http://t.co/TmSxarFI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:16:00 +0000", "from_user": "edd", "from_user_id": 12876, "from_user_id_str": "12876", "from_user_name": "Edd Dumbill", "geo": null, "id": 147802178491392000, "id_str": "147802178491392000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1250156247/oscon2010_casual_cropped_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1250156247/oscon2010_casual_cropped_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @commoncrawl: MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl by @stevesalevan http://t.co/cBa5598M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:14:06 +0000", "from_user": "vRobM", "from_user_id": 38737968, "from_user_id_str": "38737968", "from_user_name": "Rob Markovi\\u0107 (Robi)", "geo": null, "id": 147801700764352500, "id_str": "147801700764352512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/350626160/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/350626160/twitterProfilePhoto_normal.jpg", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "RT @techmilind: New record: 186 Gbps between data centers! Mirror 20PB hadoop cluster in only 20 days. http://t.co/hzJZ014p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:13:53 +0000", "from_user": "marklarosa", "from_user_id": 19042277, "from_user_id_str": "19042277", "from_user_name": "Mark LaRosa", "geo": null, "id": 147801646217437200, "id_str": "147801646217437184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1223708817/mark8bit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1223708817/mark8bit_normal.jpg", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/5qbbPrE2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:12:51 +0000", "from_user": "lluccipha", "from_user_id": 103246788, "from_user_id_str": "103246788", "from_user_name": "lluccipha", "geo": null, "id": 147801387705700350, "id_str": "147801387705700352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697708417/BYbrkMru_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697708417/BYbrkMru_normal", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "newsycombinator: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/EdfodrBI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:12:40 +0000", "from_user": "bioitbob", "from_user_id": 47755548, "from_user_id_str": "47755548", "from_user_name": "bob beliveau", "geo": null, "id": 147801341425754100, "id_str": "147801341425754112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/338003818/bioitlogo_normal.bmp", "profile_image_url_https": "https://si0.twimg.com/profile_images/338003818/bioitlogo_normal.bmp", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "Got Hadoop? | Genome Technology | Informatics | GenomeWeb http://t.co/KuXPbZvO << A primer on Hadoop in Bioinformatics. Thanks @sbarghaan", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:10:32 +0000", "from_user": "fimbul11", "from_user_id": 89163293, "from_user_id_str": "89163293", "from_user_name": "\\u30FE\\uFF9C\\uFF20\\u2312\\u30FC\\u2312\\uFF20\\uFF76\\u30CE", "geo": null, "id": 147800803917316100, "id_str": "147800803917316097", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1661036316/e5fa4764-83b7-425c-9b65-06cd8354af17_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661036316/e5fa4764-83b7-425c-9b65-06cd8354af17_normal.png", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "Hadoop\\u89E6\\u3063\\u3066\\u307F\\u305F\\u3044\\u3093\\u3084", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:09:02 +0000", "from_user": "SiegfriedEhret", "from_user_id": 214735657, "from_user_id_str": "214735657", "from_user_name": "Siegfried Ehret", "geo": null, "id": 147800428891996160, "id_str": "147800428891996160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1257460248/IMG_6903_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1257460248/IMG_6903_normal.jpg", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/5qbbPrE2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:08:41 +0000", "from_user": "jdanoz", "from_user_id": 17920112, "from_user_id_str": "17920112", "from_user_name": "jdanoz", "geo": null, "id": 147800337552646140, "id_str": "147800337552646144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1335360257/f2189069_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335360257/f2189069_normal.jpg", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/5qbbPrE2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:07:55 +0000", "from_user": "MarkMangraviti", "from_user_id": 385741005, "from_user_id_str": "385741005", "from_user_name": "Mark Mangraviti", "geo": null, "id": 147800147869437950, "id_str": "147800147869437953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1574688287/MarkPic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1574688287/MarkPic_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "When HANA meets Hadoop: We'll be offering HANA for Business Warehouse, as well as Hadoop support.\\u201D Hadoop, a pro... http://t.co/SKD3xQ3Q", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:06:22 +0000", "from_user": "hspencer77", "from_user_id": 12226772, "from_user_id_str": "12226772", "from_user_name": "Harold L Spencer, Jr", "geo": null, "id": 147799756331163650, "id_str": "147799756331163648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/189840432/IMG_0150_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/189840432/IMG_0150_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\"@newsycombinator: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/qpGtnm4V\" -> demo this with #Euca?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:05:19 +0000", "from_user": "snboyle", "from_user_id": 8920302, "from_user_id_str": "8920302", "from_user_name": "Steph Boyle", "geo": null, "id": 147799491024666620, "id_str": "147799491024666624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/81851420/stephandandrew_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/81851420/stephandandrew_2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Aloisius: Webcast on how to crunch Common Crawl's massive public web crawl dataset w/ hadoop http://http://bit.ly/trSH79 (HN http://t.co/ljzFrnCi)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:05:11 +0000", "from_user": "d24m", "from_user_id": 78574363, "from_user_id_str": "78574363", "from_user_name": "Oliver Heller", "geo": null, "id": 147799459848400900, "id_str": "147799459848400899", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/617828898/star_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/617828898/star_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure http://t.co/aw8AUP0T", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:05:06 +0000", "from_user": "newsycombinator", "from_user_id": 14335498, "from_user_id_str": "14335498", "from_user_name": "news.yc Popular", "geo": null, "id": 147799437941547000, "id_str": "147799437941547008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/52589204/y_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/52589204/y_normal.png", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/5qbbPrE2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:01:46 +0000", "from_user": "jdudley", "from_user_id": 10180222, "from_user_id_str": "10180222", "from_user_name": "jdudley", "geo": null, "id": 147798599420489730, "id_str": "147798599420489728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/61828330/mug_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/61828330/mug_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl http://t.co/ohsl5S5w", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:01:46 +0000", "from_user": "jinnli", "from_user_id": 18330621, "from_user_id_str": "18330621", "from_user_name": "\\u01C7", "geo": null, "id": 147798599303041020, "id_str": "147798599303041024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1579601171/_______normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1579601171/_______normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/dANjCNtZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:01:08 +0000", "from_user": "buckwoody", "from_user_id": 22874831, "from_user_id_str": "22874831", "from_user_name": "Buck Woody", "geo": null, "id": 147798440259239940, "id_str": "147798440259239936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1348746982/Buck1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1348746982/Buck1_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Nice - Hadoop and F# Map/Reduce functions: http://t.co/lawP11bC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:59:36 +0000", "from_user": "kellycopson", "from_user_id": 367074993, "from_user_id_str": "367074993", "from_user_name": "kelly", "geo": null, "id": 147798053942853630, "id_str": "147798053942853632", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1526353507/kelly_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1526353507/kelly_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hadoop Streaming and F# MapReduce http://t.co/UHvNc361 Cloud Computing", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:59:11 +0000", "from_user": "XaocCPS", "from_user_id": 22345392, "from_user_id_str": "22345392", "from_user_name": "Vladimir Yunev", "geo": null, "id": 147797949894758400, "id_str": "147797949894758400", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/107052445/personaltag_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/107052445/personaltag_normal.png", "source": "<a href="http://www.WindowsPhone.com/" rel="nofollow">WindowsLive</a>", "text": "Hadoop Streaming and F# MapReduce http://t.co/mnUbXlGr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:58:32 +0000", "from_user": "ripcitylyman", "from_user_id": 14050728, "from_user_id_str": "14050728", "from_user_name": "Jay Lyman", "geo": null, "id": 147797784039395330, "id_str": "147797784039395330", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/209048268/workingman_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/209048268/workingman_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "New 451 CAOS podcast with Hadoop, WebOS, oss licensing and Red Hat M&A: http://t.co/4P3yuS2R", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:57:24 +0000", "from_user": "mndoci", "from_user_id": 605643, "from_user_id_str": "605643", "from_user_name": "Deepak Singh", "geo": null, "id": 147797498088538100, "id_str": "147797498088538112", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1106198507/3790132182_5d654efd4c_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1106198507/3790132182_5d654efd4c_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Zero to #Hadoop in 5 minutes: http://t.co/HfsnZCtp #aws #coolstuff", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:56:39 +0000", "from_user": "mikepluta", "from_user_id": 15150700, "from_user_id_str": "15150700", "from_user_name": "Mike Pluta", "geo": null, "id": 147797311869816830, "id_str": "147797311869816832", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1584807716/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584807716/image_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Safari on iOS</a>", "text": "#bigdata #hadoop @commoncrawl Zero to Hadoop in 5 minutes http://t.co/aGTaRjB7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:52:51 +0000", "from_user": "avkashchauhan", "from_user_id": 213118614, "from_user_id_str": "213118614", "from_user_name": "Avkash Chauhan", "geo": null, "id": 147796352699613200, "id_str": "147796352699613184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1615647152/asc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615647152/asc_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#MapReduce for .net also known as \"#Hadoop #Streaming\" - Using MapReduce with F# - http://t.co/JhKSLOnE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:50:51 +0000", "from_user": "OCVC", "from_user_id": 5911402, "from_user_id_str": "5911402", "from_user_name": "Marc Averitt", "geo": null, "id": 147795849269878800, "id_str": "147795849269878785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1437668582/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1437668582/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @commoncrawl: MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl by @stevesalevan http://t.co/cBa5598M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:45:55 +0000", "from_user": "EdgarSanchez", "from_user_id": 9571502, "from_user_id_str": "9571502", "from_user_name": "Edgar S\\u00E1nchez", "geo": null, "id": 147794609496530940, "id_str": "147794609496530944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1147638240/EdgarVS210_120x120_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1147638240/EdgarVS210_120x120_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @chris_brockett: Carls source code for hadoop streaming and #FSharp mapreduce is here: http://t.co/IHFNPSH0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:45:23 +0000", "from_user": "attilacsordas", "from_user_id": 2443051, "from_user_id_str": "2443051", "from_user_name": "attilacsordas", "geo": null, "id": 147794473626243070, "id_str": "147794473626243072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/61448120/attila_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/61448120/attila_normal.JPG", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "RT @techmilind: The 10 Most Important Open Source Projects of 2011 | http://t.co/2u4FbRqU http://t.co/Bt7uHaRI #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:43:58 +0000", "from_user": "hnbot", "from_user_id": 317653311, "from_user_id_str": "317653311", "from_user_name": "Hacker News", "geo": null, "id": 147794119123673100, "id_str": "147794119123673088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1405908372/1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1405908372/1_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl \\n(Discuss on HN - http://t.co/jkcfg7Xd) http://t.co/pbr66ng3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:43:16 +0000", "from_user": "jasonHoyt", "from_user_id": 16515488, "from_user_id_str": "16515488", "from_user_name": "Jason Hoyt", "geo": null, "id": 147793942161801200, "id_str": "147793942161801216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1630910766/croppedCowboyInWales_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630910766/croppedCowboyInWales_normal.jpg", "source": "<a href="http://news.ycombinator.com" rel="nofollow">newsyc</a>", "text": "RT @newsyc20: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Commo http://t.co/HXXb5rXT (http://t.co/0HOrJ5ww) #trending #guru", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:43:14 +0000", "from_user": "BIO_HR", "from_user_id": 234311152, "from_user_id_str": "234311152", "from_user_name": "Ralph Schneider", "geo": null, "id": 147793936482705400, "id_str": "147793936482705409", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1227025829/RS_BIO_SAP_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1227025829/RS_BIO_SAP_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "When HANA meets Hadoop http://t.co/qTMFCvCl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:43:12 +0000", "from_user": "tomohiko_tanaka", "from_user_id": 62513070, "from_user_id_str": "62513070", "from_user_name": "Tomohiko Tanaka", "geo": null, "id": 147793927888580600, "id_str": "147793927888580608", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1315287230/a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1315287230/a_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "\\u3069\\u3053\\u304B\\u306B Hadoop \\u306E\\u8A18\\u4E8B\\u304C\\u3042\\u3063\\u305F\\u306A. \\u6771\\u4EAC\\u306B\\u7F6E\\u3044\\u3066\\u305F\\u304B??", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:39:48 +0000", "from_user": "jbvit_sf", "from_user_id": 156787564, "from_user_id_str": "156787564", "from_user_name": "San Francisco Jobs", "geo": null, "id": 147793068781862900, "id_str": "147793068781862913", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1035961513/jobvite_logo_box_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1035961513/jobvite_logo_box_normal.gif", "source": "<a href="http://jobvite.com" rel="nofollow">Jobvite</a>", "text": "EMC/Greenplum is looking for: Senior Hadoop Software Engineer\\nhttp://t.co/zzNAR5l3 #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:38:14 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 147792677621084160, "id_str": "147792677621084161", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Revolutions: RHadoop update: new tools for Hadoop map-reduce ... http://t.co/PtXmoSAR #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:38:14 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 147792675117072400, "id_str": "147792675117072385", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with ... http://t.co/Kamcfy1l #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:38:02 +0000", "from_user": "astar_alone", "from_user_id": 14126742, "from_user_id_str": "14126742", "from_user_name": "Hollyann Wood", "geo": null, "id": 147792627373309950, "id_str": "147792627373309952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1284255133/hollyprofile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1284255133/hollyprofile_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @infochimps: And if you want to go from zero to Hadoop without using Java, try Wukong: https://t.co/BM7pjwOk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:36:36 +0000", "from_user": "rbonazzo", "from_user_id": 45151505, "from_user_id_str": "45151505", "from_user_name": "Rinaldo Bonazzo", "geo": null, "id": 147792265526517760, "id_str": "147792265526517760", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/252198909/linux_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/252198909/linux_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @HadoopNews: When #HANA meets #Hadoop - http://t.co/fqrBu6LP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:34:14 +0000", "from_user": "harrisj", "from_user_id": 681473, "from_user_id_str": "681473", "from_user_name": "Jacob Harris", "geo": null, "id": 147791667758514180, "id_str": "147791667758514177", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1419244564/alternative_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1419244564/alternative_avatar_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @infochimps: RT @dguyadeen: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl: http://t.co/LkgSIWAl #BigData #Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:33:07 +0000", "from_user": "infochimps", "from_user_id": 15748351, "from_user_id_str": "15748351", "from_user_name": "infochimps", "geo": null, "id": 147791388833095680, "id_str": "147791388833095681", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1652358055/chimpmark_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652358055/chimpmark_normal.gif", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "And if you want to go from zero to Hadoop without using Java, try Wukong: https://t.co/BM7pjwOk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:32:39 +0000", "from_user": "infochimps", "from_user_id": 15748351, "from_user_id_str": "15748351", "from_user_name": "infochimps", "geo": null, "id": 147791269517729800, "id_str": "147791269517729792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1652358055/chimpmark_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652358055/chimpmark_normal.gif", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @dguyadeen: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl: http://t.co/LkgSIWAl #BigData #Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:31:50 +0000", "from_user": "Aloisius", "from_user_id": 14885927, "from_user_id_str": "14885927", "from_user_name": "Jordan Mendelson", "geo": null, "id": 147791064202358800, "id_str": "147791064202358785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/409944731/Joi_photo_of_Jordan_2_cropped_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/409944731/Joi_photo_of_Jordan_2_cropped_normal.jpg", "source": "<a href="http://news.ycombinator.com" rel="nofollow">newsyc</a>", "text": "RT @newsyc20: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Commo http://t.co/HXXb5rXT (http://t.co/0HOrJ5ww) #trending #guru", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:31:27 +0000", "from_user": "boudicca", "from_user_id": 7288362, "from_user_id_str": "7288362", "from_user_name": "Lisa Green", "geo": null, "id": 147790967506862080, "id_str": "147790967506862080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534144474/Lisa_Green_headshot_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534144474/Lisa_Green_headshot_2_normal.jpg", "source": "<a href="http://news.ycombinator.com" rel="nofollow">newsyc</a>", "text": "RT @newsyc20: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Commo http://t.co/HXXb5rXT (http://t.co/0HOrJ5ww) #trending #guru", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:30:07 +0000", "from_user": "newsyc20", "from_user_id": 148969874, "from_user_id_str": "148969874", "from_user_name": "Hacker News 20", "geo": null, "id": 147790631677341700, "id_str": "147790631677341696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1081970640/yclogo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1081970640/yclogo_normal.gif", "source": "<a href="http://news.ycombinator.com" rel="nofollow">newsyc</a>", "text": "MapReduce for the Masses: Zero to Hadoop in 5 minutes with Commo http://t.co/HXXb5rXT (http://t.co/0HOrJ5ww) #trending #guru", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:29:26 +0000", "from_user": "simply_ram", "from_user_id": 312189731, "from_user_id_str": "312189731", "from_user_name": "Ram Raju", "geo": null, "id": 147790462445559800, "id_str": "147790462445559808", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Hadoop and Cassandra - Open Source, and Commercial? http://t.co/rJKsA7Ja", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:28:41 +0000", "from_user": "jrzyshr", "from_user_id": 5658532, "from_user_id_str": "5658532", "from_user_name": "Peter Laudati", "geo": null, "id": 147790274087759870, "id_str": "147790274087759874", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1236117631/PeterBugEyes_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1236117631/PeterBugEyes_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @dennylee: rockin' stuff! #hadooponazure \\u201C@carl_nolan: New blog post: http://t.co/VyO4tPzV - Hadoop Streaming and F# MapReduce (#in)\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:28:27 +0000", "from_user": "chris_brockett", "from_user_id": 244818919, "from_user_id_str": "244818919", "from_user_name": "Chris Brockett", "geo": null, "id": 147790213274538000, "id_str": "147790213274537984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1478328675/chris_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1478328675/chris_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Carls source code for hadoop streaming and #FSharp mapreduce is here: http://t.co/IHFNPSH0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:28:19 +0000", "from_user": "beatriceyik", "from_user_id": 340133870, "from_user_id_str": "340133870", "from_user_name": "beatrice yik", "geo": null, "id": 147790181280391170, "id_str": "147790181280391168", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1459622835/01_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1459622835/01_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hadoop Streaming and F# MapReduce http://t.co/lB1tBmWB Tips", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:28:08 +0000", "from_user": "rickasaurus", "from_user_id": 16377511, "from_user_id_str": "16377511", "from_user_name": "Richard Minerich", "geo": null, "id": 147790132941029380, "id_str": "147790132941029377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1144629758/tweetphoto3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1144629758/tweetphoto3_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @chris_brockett: Carl Nolan blogs on hadoop streaming and #fsharp map reduce http://t.co/UHYpV4G6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:27:11 +0000", "from_user": "chris_brockett", "from_user_id": 244818919, "from_user_id_str": "244818919", "from_user_name": "Chris Brockett", "geo": null, "id": 147789896323575800, "id_str": "147789896323575808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1478328675/chris_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1478328675/chris_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Carl Nolan blogs on hadoop streaming and #fsharp map reduce http://t.co/gmBxsSIj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:26:02 +0000", "from_user": "HNComments", "from_user_id": 103485823, "from_user_id_str": "103485823", "from_user_name": "HN Comments", "geo": null, "id": 147789607847735300, "id_str": "147789607847735296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/622735724/hncomments_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/622735724/hncomments_normal.png", "source": "<a href="https://twitter.com/HNComments" rel="nofollow">HNComments Poster</a>", "text": "MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/PXCt5gzq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:25:49 +0000", "from_user": "lynnlangit", "from_user_id": 3105491, "from_user_id_str": "3105491", "from_user_name": "Lynn Langit", "geo": null, "id": 147789551241412600, "id_str": "147789551241412608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/125258306/meRed_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/125258306/meRed_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @dennylee: rockin' stuff! #hadooponazure \\u201C@carl_nolan: New blog post: http://t.co/VyO4tPzV - Hadoop Streaming and F# MapReduce (#in)\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:25:16 +0000", "from_user": "valb00", "from_user_id": 15373404, "from_user_id_str": "15373404", "from_user_name": "valb00", "geo": null, "id": 147789413383024640, "id_str": "147789413383024640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1162802602/screen-capture-4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1162802602/screen-capture-4_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @dennylee: rockin' stuff! #hadooponazure \\u201C@carl_nolan: New blog post: http://t.co/VyO4tPzV - Hadoop Streaming and F# MapReduce (#in)\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:24:33 +0000", "from_user": "dguyadeen", "from_user_id": 22665665, "from_user_id_str": "22665665", "from_user_name": "Denis Guyadeen", "geo": null, "id": 147789233711611900, "id_str": "147789233711611904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1627510905/imprimes_71f7864038_big_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627510905/imprimes_71f7864038_big_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Towards a Scalable and Highly Available HDFS Namenode: http://t.co/hqAw4ufn /cc @techmilind #Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:23:28 +0000", "from_user": "biddster", "from_user_id": 15233453, "from_user_id_str": "15233453", "from_user_name": "Luke Biddell", "geo": null, "id": 147788958863073280, "id_str": "147788958863073281", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1634260262/31e06l5V_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634260262/31e06l5V_normal", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @dguyadeen: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl: http://t.co/lqGOrnJ4 #BigData #Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:22:39 +0000", "from_user": "mars_chat", "from_user_id": 111609379, "from_user_id_str": "111609379", "from_user_name": "Marcel Naumann", "geo": null, "id": 147788754747269120, "id_str": "147788754747269120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1586768229/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586768229/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ClouderaU: Great job! RT @bramroeland \"Congratulations! You have passed the Cloudera Certified Developer for Apache Hadoop exam\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:21:07 +0000", "from_user": "NHLouisville", "from_user_id": 44166877, "from_user_id_str": "44166877", "from_user_name": "New Horizons Lou KY", "geo": null, "id": 147788366878998530, "id_str": "147788366878998529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/312068085/Louisville_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/312068085/Louisville_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft offers Hadoop preview on Azure http://t.co/t825vm4x ^KH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:21:04 +0000", "from_user": "NHCinDay", "from_user_id": 44126856, "from_user_id_str": "44126856", "from_user_name": "New Horizons CinDay", "geo": null, "id": 147788354556137470, "id_str": "147788354556137472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/393480819/CinciDayOV_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/393480819/CinciDayOV_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft offers Hadoop preview on Azure http://t.co/oGjhIBNF ^KH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:21:04 +0000", "from_user": "NHOklahoma", "from_user_id": 44474003, "from_user_id_str": "44474003", "from_user_name": "New Horizons OK", "geo": null, "id": 147788353973129200, "id_str": "147788353973129217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/312070938/Tulsa_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/312070938/Tulsa_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft offers Hadoop preview on Azure http://t.co/0EJgx7Jb ^KH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:21:03 +0000", "from_user": "nhkc", "from_user_id": 26798392, "from_user_id_str": "26798392", "from_user_name": "New Horizons KC", "geo": null, "id": 147788353796968450, "id_str": "147788353796968448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1230362793/twitterKS_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1230362793/twitterKS_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft offers Hadoop preview on Azure http://t.co/aNeqC7cw ^KH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:21:03 +0000", "from_user": "NHTexas", "from_user_id": 14235764, "from_user_id_str": "14235764", "from_user_name": "New Horizons - Texas", "geo": null, "id": 147788353641783300, "id_str": "147788353641783296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1230349422/twitterTX_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1230349422/twitterTX_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft offers Hadoop preview on Azure http://t.co/suneS8kS ^KH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Fri, 16 Dec 2011 21:19:09 +0000", "from_user": "jonisick", "from_user_id": 93724448, "from_user_id_str": "93724448", "from_user_name": "Joe Onisick", "geo": null, "id": 147787874178310140, "id_str": "147787874178310144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1479643628/IMG_4860-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1479643628/IMG_4860-2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @dguyadeen: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl: http://t.co/lqGOrnJ4 #BigData #Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:18:29 +0000", "from_user": "ctolabs", "from_user_id": 131904084, "from_user_id_str": "131904084", "from_user_name": "Bob Gourley", "geo": null, "id": 147787704720035840, "id_str": "147787704720035841", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1460128489/ctolabs_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1460128489/ctolabs_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "http://t.co/VsKrVMO1 Assessment on \\u201CWhat You Need To Know About Hadoop\\u201D http://t.co/HkCaSpP1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:18:03 +0000", "from_user": "diegocambiaso", "from_user_id": 11545, "from_user_id_str": "11545", "from_user_name": "Pixelco - Diego", "geo": null, "id": 147787598818050050, "id_str": "147787598818050048", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1581501562/djc3_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1581501562/djc3_normal", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @paulacambiaso: Microsoft Azure aloja Hadoop y otras aplicaciones de c\\u00F3digo abierto http://t.co/MWSaansC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:17:00 +0000", "from_user": "dennylee", "from_user_id": 14610285, "from_user_id_str": "14610285", "from_user_name": "dennylee", "geo": null, "id": 147787331607347200, "id_str": "147787331607347201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/996687129/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/996687129/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "rockin' stuff! #hadooponazure \\u201C@carl_nolan: New blog post: http://t.co/VyO4tPzV - Hadoop Streaming and F# MapReduce (#in)\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:15:36 +0000", "from_user": "carl_nolan", "from_user_id": 229081931, "from_user_id_str": "229081931", "from_user_name": "Carl Nolan", "geo": null, "id": 147786980309213200, "id_str": "147786980309213184", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1640851918/Avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640851918/Avatar_normal.png", "source": "<a href="http://explore.live.com/windows-live-writer" rel="nofollow">Windows Live Writer</a>", "text": "New blog post: http://t.co/PUAc1bXb - Hadoop Streaming and F# MapReduce (#in)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:14:38 +0000", "from_user": "paulacambiaso", "from_user_id": 15669392, "from_user_id_str": "15669392", "from_user_name": "paulacambiaso", "geo": null, "id": 147786735546413060, "id_str": "147786735546413056", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1370342197/3f26ee2e-be03-458a-9de9-2eead176546a_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1370342197/3f26ee2e-be03-458a-9de9-2eead176546a_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Microsoft Azure aloja Hadoop y otras aplicaciones de c\\u00F3digo abierto http://t.co/L4FG4aJr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:05:33 +0000", "from_user": "ericmjohn", "from_user_id": 10286992, "from_user_id_str": "10286992", "from_user_name": "Eric M John", "geo": null, "id": 147784450602840060, "id_str": "147784450602840064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/838880155/pic-twitter-bw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/838880155/pic-twitter-bw_normal.jpg", "source": "<a href="http://github.com/d4nt/HNTweets" rel="nofollow">HNTweets Bot</a>", "text": "RT @HNTweets: MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl: http://t.co/S9OX304w Comments: http://t.co/L0xAQDNl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:02:11 +0000", "from_user": "flavioclesio", "from_user_id": 240034416, "from_user_id_str": "240034416", "from_user_name": "Fl\\u00E1vio Cl\\u00E9sio", "geo": null, "id": 147783603789627400, "id_str": "147783603789627392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674302765/No_Free_Lunch_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674302765/No_Free_Lunch_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @bigdata: Training Linear Support Vector Machines over Big Data: example in MapReduce/#Hadoop involving tens of millions http://t.co/fQF4stv2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:59:10 +0000", "from_user": "jen_perret", "from_user_id": 59065159, "from_user_id_str": "59065159", "from_user_name": "Jennifer Perret", "geo": null, "id": 147782845572722700, "id_str": "147782845572722688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1399042487/jenp_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1399042487/jenp_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Love the #hadoop on #WindowsAzure demo, looks really easy to use! Currently only available by invitation: https://t.co/ThQUwrtM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:56:28 +0000", "from_user": "gilelbaz", "from_user_id": 20188434, "from_user_id_str": "20188434", "from_user_name": "Gil Elbaz", "geo": null, "id": 147782166582018050, "id_str": "147782166582018050", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/537561331/IMG_2560_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/537561331/IMG_2560_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @commoncrawl: MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl by @stevesalevan http://t.co/cBa5598M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:54:25 +0000", "from_user": "NickJewell", "from_user_id": 14574047, "from_user_id_str": "14574047", "from_user_name": "NickJewell", "geo": null, "id": 147781647402676220, "id_str": "147781647402676225", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1199315104/ProfilePhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1199315104/ProfilePhoto_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "\"MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl\" http://t.co/tsfoJyuK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:50:07 +0000", "from_user": "Aloisius", "from_user_id": 14885927, "from_user_id_str": "14885927", "from_user_name": "Jordan Mendelson", "geo": null, "id": 147780565146402800, "id_str": "147780565146402816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/409944731/Joi_photo_of_Jordan_2_cropped_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/409944731/Joi_photo_of_Jordan_2_cropped_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Webcast on how to crunch Common Crawl's massive public web crawl dataset w/ hadoop http://http://bit.ly/trSH79 (HN http://t.co/ljzFrnCi)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:43:44 +0000", "from_user": "YCHackerNews", "from_user_id": 90440720, "from_user_id_str": "90440720", "from_user_name": "YC Hacker News", "geo": null, "id": 147778962096013300, "id_str": "147778962096013313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/529679802/y_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/529679802/y_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl: Comments:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:40:04 +0000", "from_user": "HackerNewsFP", "from_user_id": 378119541, "from_user_id_str": "378119541", "from_user_name": "HN Front Page", "geo": null, "id": 147778039118446600, "id_str": "147778039118446592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1554908894/yclogo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554908894/yclogo_normal.gif", "source": "<a href="http://no.such.site/" rel="nofollow">hnfp</a>", "text": "MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl http://t.co/rPTFZ0aS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:40:04 +0000", "from_user": "HNTweets", "from_user_id": 116276133, "from_user_id_str": "116276133", "from_user_name": "Hacker News", "geo": null, "id": 147778038438957060, "id_str": "147778038438957056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1369520630/HNTweets_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1369520630/HNTweets_normal.png", "source": "<a href="http://github.com/d4nt/HNTweets" rel="nofollow">HNTweets Bot</a>", "text": "MapReduce for the Masses: Zero to Hadoop in 5 minutes with Common Crawl: http://t.co/S9OX304w Comments: http://t.co/L0xAQDNl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:36:22 +0000", "from_user": "davelester", "from_user_id": 2773111, "from_user_id_str": "2773111", "from_user_name": "Dave Lester", "geo": null, "id": 147777105487347700, "id_str": "147777105487347712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1616593005/Screen_shot_2011-10-31_at_8.03.59_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616593005/Screen_shot_2011-10-31_at_8.03.59_PM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @commoncrawl: MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl by @stevesalevan http://t.co/cBa5598M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:35:10 +0000", "from_user": "insightspedia", "from_user_id": 16145206, "from_user_id_str": "16145206", "from_user_name": "Annie Shum", "geo": null, "id": 147776805904990200, "id_str": "147776805904990208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/271913183/Annie2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/271913183/Annie2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "+1 \"Monitoring/mgmt's a bigdata problem to solve\" but \"Hadoop &other bigdata tools no one seems to be using within sys mgmt context @mjasay", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:30:35 +0000", "from_user": "boudicca", "from_user_id": 7288362, "from_user_id_str": "7288362", "from_user_name": "Lisa Green", "geo": null, "id": 147775651536060400, "id_str": "147775651536060418", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534144474/Lisa_Green_headshot_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534144474/Lisa_Green_headshot_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Great new post & video by @stevesalevan MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl by http://t.co/Xzbv2zSF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:26:35 +0000", "from_user": "nsjacob", "from_user_id": 2934781, "from_user_id_str": "2934781", "from_user_name": "Nigel Jacob", "geo": null, "id": 147774644596916220, "id_str": "147774644596916224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1637918310/Nige2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637918310/Nige2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @commoncrawl: MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl by @stevesalevan http://t.co/cBa5598M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:26:06 +0000", "from_user": "hnfirehose", "from_user_id": 213117318, "from_user_id_str": "213117318", "from_user_name": "HN Firehose", "geo": null, "id": 147774524878897150, "id_str": "147774524878897152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "MapReduce for the Masses: Zero to Hadoop in 5 minutes with CommonCrawl: http://t.co/AWwErFoa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:24:59 +0000", "from_user": "carlmalamud", "from_user_id": 17495946, "from_user_id_str": "17495946", "from_user_name": "Carl Malamud", "geo": null, "id": 147774243344625660, "id_str": "147774243344625664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1201420149/panel04_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1201420149/panel04_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @commoncrawl: MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl by @stevesalevan http://t.co/cBa5598M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:21:44 +0000", "from_user": "commoncrawl", "from_user_id": 112806109, "from_user_id_str": "112806109", "from_user_name": "CommonCrawl", "geo": null, "id": 147773422871650300, "id_str": "147773422871650305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1616236973/square-name-white_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616236973/square-name-white_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "MapReduce for the Masses: Zero to Hadoop in Five Minutes with Common Crawl by @stevesalevan http://t.co/cBa5598M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:17:24 +0000", "from_user": "PlatenReport", "from_user_id": 102851163, "from_user_id_str": "102851163", "from_user_name": "Floyd Strimling", "geo": null, "id": 147772331798966270, "id_str": "147772331798966272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1594985464/fs-shot1_resized_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1594985464/fs-shot1_resized_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "SAP's #HANA may drive a conversation but #Hadoop drives Big Data http://t.co/TgguRUIM SAP has much to learn about Open & #cloud #cloudera", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:12:55 +0000", "from_user": "sclopit", "from_user_id": 17751344, "from_user_id_str": "17751344", "from_user_name": "stefano bertolo", "geo": null, "id": 147771207478026240, "id_str": "147771207478026241", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/328230716/ste_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/328230716/ste_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @bigdata: Training Linear Support Vector Machines over Big Data: example in MapReduce/#Hadoop involving tens of millions http://t.co/fQF4stv2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:06:06 +0000", "from_user": "Gridflow", "from_user_id": 351754270, "from_user_id_str": "351754270", "from_user_name": "Erick Trolinger", "geo": null, "id": 147769490640355330, "id_str": "147769490640355329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1486637297/Gridflowlogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1486637297/Gridflowlogo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I've always been a fan of the O'reilly tech books. Here's the link at Amazon for an excellent book on Hadoop. http://t.co/mNW5QB52", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:06:02 +0000", "from_user": "d8Pit", "from_user_id": 264394701, "from_user_id_str": "264394701", "from_user_name": "The URL Popularizer", "geo": null, "id": 147769471287824400, "id_str": "147769471287824384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317284522/logo-header_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317284522/logo-header_normal.png", "source": "<a href="http://d8p.it" rel="nofollow">d8P</a>", "text": "RT @ialjkk: How to setup Hadoop inside Amazon EC2 using Rocks+ - YouTube #bigdata | http://t.co/X0R5DgHB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:05:09 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 147769251321749500, "id_str": "147769251321749504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "How to setup Hadoop inside Amazon EC2 using Rocks+ - YouTube http://t.co/jYUERWD4 #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:05:07 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 147769244623450100, "id_str": "147769244623450113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Windows Azure Adds Node.js Support, Hadoop Preview http://t.co/DCg24rie #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:04:03 +0000", "from_user": "Diegoepnl", "from_user_id": 195648226, "from_user_id_str": "195648226", "from_user_name": "Diego", "geo": null, "id": 147768972438290430, "id_str": "147768972438290432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1137264559/Diego_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1137264559/Diego_small_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ClouderaU: Great job! RT @bramroeland \"Congratulations! You have passed the Cloudera Certified Developer for Apache Hadoop exam\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:59:21 +0000", "from_user": "Gridflow", "from_user_id": 351754270, "from_user_id_str": "351754270", "from_user_name": "Erick Trolinger", "geo": null, "id": 147767790005256200, "id_str": "147767790005256193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1486637297/Gridflowlogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1486637297/Gridflowlogo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "VoltDB is an in-memory distributed RDMS that can be implemented with Hadoop and the one I'll probably use. http://t.co/yrm7c9RX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:58:12 +0000", "from_user": "maksim2042", "from_user_id": 153439378, "from_user_id_str": "153439378", "from_user_name": "Maksim Tsvetovat", "geo": null, "id": 147767503928557570, "id_str": "147767503928557568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1429062105/cover_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1429062105/cover_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @bigdata: Training Linear Support Vector Machines over Big Data: example in MapReduce/#Hadoop involving tens of millions http://t.co/fQF4stv2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:56:22 +0000", "from_user": "Gridflow", "from_user_id": 351754270, "from_user_id_str": "351754270", "from_user_name": "Erick Trolinger", "geo": null, "id": 147767042613854200, "id_str": "147767042613854208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1486637297/Gridflowlogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1486637297/Gridflowlogo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I started looking at Hadoop around 2008. It is an opensource implementation of Google's GFS. http://t.co/ZHFi5s5F", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:55:02 +0000", "from_user": "ProgrammingWord", "from_user_id": 158722669, "from_user_id_str": "158722669", "from_user_name": "\\u30D7\\u30ED\\u30B0\\u30E9\\u30DF\\u30F3\\u30B0\\u306B\\u5F79\\u7ACB\\u3064\\u540D\\u8A00\\u30FB\\u6CD5\\u5247", "geo": null, "id": 147766705505042430, "id_str": "147766705505042433", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1101069129/04_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1101069129/04_normal.jpg", "source": "<a href="http://d.hatena.ne.jp/japanrock_pg/" rel="nofollow">\\u30D7\\u30ED\\u30B0\\u30E9\\u30DF\\u30F3\\u30B0\\u3067\\u5F79\\u306B\\u7ACB\\u3064\\u8A00\\u8449</a>", "text": "\\u30CD\\u30C3\\u30C8\\u30EF\\u30FC\\u30AF\\u306E\\u5E2F\\u57DF\\u304C\\u30C7\\u30FC\\u30BF\\u30BB\\u30F3\\u30BF\\u30FC\\u306E\\u74B0\\u5883\\u306B\\u304A\\u3051\\u308B\\u6700\\u3082\\u8CB4\\u91CD\\u306A\\u8CC7\\u6E90\\u3067\\u3042\\u308B by Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:49:41 +0000", "from_user": "joemsie", "from_user_id": 15567239, "from_user_id_str": "15567239", "from_user_name": "Joe Johnson", "geo": null, "id": 147765359980724220, "id_str": "147765359980724224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1388595086/joemsie.1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1388595086/joemsie.1_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @SybaseAnalytics: @forbes lists the #bigdata predictions for 2012, #hadoop could be big http://t.co/3ZVplg8h", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:42:00 +0000", "from_user": "jchs86", "from_user_id": 56546974, "from_user_id_str": "56546974", "from_user_name": "Changsu Jiang", "geo": null, "id": 147763426796646400, "id_str": "147763426796646400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1642839476/image_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642839476/image_bigger_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @ManningBooks: #Hadoop in Practice MEAP launch! 50% off today. Use code hadoop50 http://t.co/lMCtnYZy checkout. http://t.co/bugYvWdh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:37:57 +0000", "from_user": "mauriciomartis", "from_user_id": 164150628, "from_user_id_str": "164150628", "from_user_name": "Mauricio Martis", "geo": null, "id": 147762406020489200, "id_str": "147762406020489216", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1442550350/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1442550350/profile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@albertoholts que tal la entrega de #wence ? est\\u00E1s preparado para la presentaci\\u00F3n de hoy ? #hadoop", "to_user": "albertoholts", "to_user_id": 11178972, "to_user_id_str": "11178972", "to_user_name": "Alberto Holts"}, +{"created_at": "Fri, 16 Dec 2011 19:29:32 +0000", "from_user": "bramroeland", "from_user_id": 234757479, "from_user_id_str": "234757479", "from_user_name": "Bram Roeland", "geo": null, "id": 147760287498518530, "id_str": "147760287498518528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1292444989/profilepic_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1292444989/profilepic_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ClouderaU: Great job! RT @bramroeland \"Congratulations! You have passed the Cloudera Certified Developer for Apache Hadoop exam\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:26:18 +0000", "from_user": "jobshoutnews", "from_user_id": 210196849, "from_user_id_str": "210196849", "from_user_name": "Jobshout", "geo": null, "id": 147759475808419840, "id_str": "147759475808419840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1210231148/Screen_shot_2011-01-08_at_17.16.26_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1210231148/Screen_shot_2011-01-08_at_17.16.26_normal.png", "source": "<a href="http://pluggio.com" rel="nofollow">Pluggio</a>", "text": "Top 10 Companies Looking for People with Hadoop Skills http://t.co/GOuDy2iI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:18:26 +0000", "from_user": "venkat_sahasra", "from_user_id": 321575837, "from_user_id_str": "321575837", "from_user_name": "Venkat Prasad", "geo": null, "id": 147757494977040400, "id_str": "147757494977040384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1406743308/logo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1406743308/logo_normal.gif", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Job: Hadoop Training Program in Quincy, MA http://t.co/hShj4Izr #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:18:13 +0000", "from_user": "trukhinyuri", "from_user_id": 17842396, "from_user_id_str": "17842396", "from_user_name": "Trukhin Yuri", "geo": null, "id": 147757438500741120, "id_str": "147757438500741122", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1669204139/199168_1616087365337_1330943072_1322854_468984_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669204139/199168_1616087365337_1330943072_1322854_468984_n_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@a_abashev \\u0435\\u0441\\u043B\\u0438 \\u0431\\u044B \\u0443 hadoop \\u043D\\u0435 \\u0431\\u044B\\u043B\\u043E \\u0442\\u043E\\u0447\\u043A\\u0438 \\u043F\\u0430\\u0434\\u0435\\u043D\\u0438\\u044F - \\u0435\\u0433\\u043E \\u043C\\u043E\\u0436\\u043D\\u043E \\u0431\\u044B\\u043B\\u043E \\u0431\\u044B \\u0437\\u0430\\u0438\\u0441\\u043F\\u043E\\u043B\\u044C\\u0437\\u043E\\u0432\\u0430\\u0442\\u044C.", "to_user": "a_abashev", "to_user_id": 273005705, "to_user_id_str": "273005705", "to_user_name": "Alexey Abashev", "in_reply_to_status_id": 147756121732546560, "in_reply_to_status_id_str": "147756121732546560"}, +{"created_at": "Fri, 16 Dec 2011 19:12:59 +0000", "from_user": "a_abashev", "from_user_id": 273005705, "from_user_id_str": "273005705", "from_user_name": "Alexey Abashev", "geo": null, "id": 147756121732546560, "id_str": "147756121732546560", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1567951426/00a5c2cdb76ca3192800b777466e402d_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1567951426/00a5c2cdb76ca3192800b777466e402d_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "@trukhinyuri \\u0432 \\u0442\\u0430\\u043A\\u0438\\u0445 \\u0442\\u043E\\u043D\\u043A\\u043E\\u0441\\u0442\\u044F\\u0445 hadoop \\u044F \\u043D\\u0435 \\u043A\\u043E\\u043F\\u0435\\u043D\\u0433\\u0430\\u0433\\u0435\\u043D. \\u041C\\u043E\\u0433\\u0443 \\u0442\\u043E\\u043B\\u044C\\u043A\\u043E \\u043F\\u0440\\u0435\\u0434\\u043B\\u043E\\u0436\\u0438\\u0442\\u044C \\u0432\\u0437\\u044F\\u0442\\u044C \\u0430\\u043C\\u0430\\u0437\\u043E\\u043D\\u043E\\u0432\\u0441\\u043A\\u0438\\u0439 mapreduce \\u0438 \\u043D\\u0435 \\u043F\\u0430\\u0440\\u0438\\u0442\\u044C \\u0441\\u0435\\u0431\\u0435 \\u043C\\u043E\\u0441\\u043A :)", "to_user": "trukhinyuri", "to_user_id": 17842396, "to_user_id_str": "17842396", "to_user_name": "Trukhin Yuri", "in_reply_to_status_id": 147638428094316540, "in_reply_to_status_id_str": "147638428094316545"}, +{"created_at": "Fri, 16 Dec 2011 19:04:50 +0000", "from_user": "hdalen74", "from_user_id": 171903258, "from_user_id_str": "171903258", "from_user_name": "Hermen", "geo": null, "id": 147754069975515140, "id_str": "147754069975515136", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1092444230/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1092444230/image_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Perfect Solution!RT @hansemc Big Data is de brandstof voor Hadoop, de stofzuiger voor ongestructureerde data. datamation.com/data-center/bi\\u2026", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:01:20 +0000", "from_user": "miguno", "from_user_id": 54478231, "from_user_id_str": "54478231", "from_user_name": "Michael G. Noll", "geo": null, "id": 147753190849396740, "id_str": "147753190849396738", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/301367652/Michael_250x250_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/301367652/Michael_250x250_normal.png", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@jonhurlock You're welcome. Glad to hear my Hadoop articles have helped you a little!", "to_user": "jonhurlock", "to_user_id": 11649702, "to_user_id_str": "11649702", "to_user_name": "Jon Hurlock", "in_reply_to_status_id": 147018243515744260, "in_reply_to_status_id_str": "147018243515744257"}, +{"created_at": "Fri, 16 Dec 2011 18:51:33 +0000", "from_user": "soafaq", "from_user_id": 107632498, "from_user_id_str": "107632498", "from_user_name": "soafaq", "geo": null, "id": 147750728163786750, "id_str": "147750728163786753", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/707458000/soafaq_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/707458000/soafaq_normal.jpg", "source": "<a href="http://www.soafaq.de" rel="nofollow">soafaq</a>", "text": "RT @CloudAware: Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure ( heise online ) ::: http://t.co/WRxsoEY3 :: #Hadoop #MSAzure #CloudComputing", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:51:14 +0000", "from_user": "SybaseAnalytics", "from_user_id": 57646918, "from_user_id_str": "57646918", "from_user_name": "Sybase Analytics", "geo": null, "id": 147750649105358850, "id_str": "147750649105358848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/981318939/TWITTERICON3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/981318939/TWITTERICON3_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "@forbes lists the #bigdata predictions for 2012, #hadoop could be big http://t.co/3ZVplg8h", "to_user": "Forbes", "to_user_id": 91478624, "to_user_id_str": "91478624", "to_user_name": "Forbes"}, +{"created_at": "Fri, 16 Dec 2011 18:49:11 +0000", "from_user": "CloudAware", "from_user_id": 110645929, "from_user_id_str": "110645929", "from_user_name": "CloudAware", "geo": null, "id": 147750132639739900, "id_str": "147750132639739905", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/689157241/cloudaware_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/689157241/cloudaware_normal.jpg", "source": "<a href="http://www.soafaq.de" rel="nofollow">soafaq</a>", "text": "Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure ( heise online ) ::: http://t.co/WRxsoEY3 :: #Hadoop #MSAzure #CloudComputing", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:47:47 +0000", "from_user": "mbutterf", "from_user_id": 18646461, "from_user_id_str": "18646461", "from_user_name": "Mike Fleischman", "geo": null, "id": 147749778866970620, "id_str": "147749778866970625", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1461828827/butter_sky_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1461828827/butter_sky_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Not one mention of Hadoop #ExpectToSeeAtBritneysWedding", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:47:18 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 147749657987137540, "id_str": "147749657987137536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "Training Linear Support Vector Machines over Big Data: example in MapReduce/#Hadoop involving tens of millions http://t.co/XB3flKn7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:44:14 +0000", "from_user": "irinifund", "from_user_id": 25057427, "from_user_id_str": "25057427", "from_user_name": "Irini", "geo": null, "id": 147748887678025730, "id_str": "147748887678025729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664402685/005_6A_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664402685/005_6A_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @bigdata: Training Linear Support Vector Machines over Big Data: example in MapReduce/#Hadoop involving tens of millions http://t.co/fQF4stv2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:42:31 +0000", "from_user": "MedicalQuack", "from_user_id": 15248550, "from_user_id_str": "15248550", "from_user_name": "MedicalQuack", "geo": null, "id": 147748456751046660, "id_str": "147748456751046656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/76341733/Dec_2008-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/76341733/Dec_2008-2_normal.jpg", "source": "<a href="http://www.TechHit.com/twinbox/" rel="nofollow">TwInbox</a>", "text": "#Hadoop in #healthcare-Cleveland Clinic has been developing their big data Hadoop platform http://t.co/IkSUGu3V", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:40:29 +0000", "from_user": "bigdata", "from_user_id": 18318677, "from_user_id_str": "18318677", "from_user_name": "Ben Lorica", "geo": null, "id": 147747944873992200, "id_str": "147747944873992194", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/235298259/bigdata_logo_center3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/235298259/bigdata_logo_center3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Training Linear Support Vector Machines over Big Data: example in MapReduce/#Hadoop involving tens of millions http://t.co/fQF4stv2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:39:31 +0000", "from_user": "efalcao", "from_user_id": 7768582, "from_user_id_str": "7768582", "from_user_name": "Eric Falcao", "geo": null, "id": 147747701851820030, "id_str": "147747701851820032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/56687614/a4c156ced4884d5da76d15a8055d6333_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/56687614/a4c156ced4884d5da76d15a8055d6333_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "I have gone so far down the hadoop rabbit hole it's crazy: I just can't settle for anything less than a snappy compressed sequence file", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:38:08 +0000", "from_user": "grep_alex", "from_user_id": 5036491, "from_user_id_str": "5036491", "from_user_name": "Alex Holmes", "geo": null, "id": 147747352466296830, "id_str": "147747352466296832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/312551441/trees_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/312551441/trees_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ManningBooks: @hadoopnews #Hadoop in Practice MEAP launch! 50% off today. Use code hadoop50 at http://t.co/lMCtnYZy checkout.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:37:37 +0000", "from_user": "grep_alex", "from_user_id": 5036491, "from_user_id_str": "5036491", "from_user_name": "Alex Holmes", "geo": null, "id": 147747223290130430, "id_str": "147747223290130432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/312551441/trees_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/312551441/trees_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "RT @ManningBooks: Brand new! We've started the MEAP of Hadoop in Practice! http://t.co/KyAqs6Hc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:37:26 +0000", "from_user": "grep_alex", "from_user_id": 5036491, "from_user_id_str": "5036491", "from_user_name": "Alex Holmes", "geo": null, "id": 147747174871080960, "id_str": "147747174871080962", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/312551441/trees_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/312551441/trees_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @ManningBooks: #Hadoop in Practice MEAP launch! 50% off today. Use code hadoop50 http://t.co/lMCtnYZy checkout. http://t.co/bugYvWdh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:31:31 +0000", "from_user": "Cloud9s", "from_user_id": 14759893, "from_user_id_str": "14759893", "from_user_name": "Kevin Haynes", "geo": null, "id": 147745686811705340, "id_str": "147745686811705344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1333766120/Kevin_sun_glasses_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1333766120/Kevin_sun_glasses_normal.jpg", "source": "<a href="http://paper.li" rel="nofollow">Paper.li</a>", "text": "Hadoop News and Influencers is out! http://t.co/kWfOYKZF \\u25B8 Top stories today via @billsandhill @derrickharris @ibm_infosphere @phunt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:30:13 +0000", "from_user": "MFDVbrokers", "from_user_id": 252756099, "from_user_id_str": "252756099", "from_user_name": "CARL WEIR", "geo": null, "id": 147745360868147200, "id_str": "147745360868147200", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1562211245/mVCTV_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1562211245/mVCTV_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure http://t.co/FoWUFncM via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:28:43 +0000", "from_user": "avkashchauhan", "from_user_id": 213118614, "from_user_id_str": "213118614", "from_user_name": "Avkash Chauhan", "geo": null, "id": 147744983993159680, "id_str": "147744983993159681", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1615647152/asc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615647152/asc_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Resources to use #Hadoop with different programming technology and environments: http://t.co/nZnJBnmO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:28:30 +0000", "from_user": "bestjobsonline", "from_user_id": 237507695, "from_user_id_str": "237507695", "from_user_name": "Best Jobs", "geo": null, "id": 147744926233411600, "id_str": "147744926233411584", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1214148827/bjo_logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1214148827/bjo_logo_normal.png", "source": "<a href="http://www.internships2011.com" rel="nofollow">Best Jobs Online</a>", "text": "Hadoop Administrator - http://t.co/crCvaLsl #jobs #AppleInc #Cupertino", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:16:43 +0000", "from_user": "weeklybi", "from_user_id": 426232831, "from_user_id_str": "426232831", "from_user_name": "BusinessIntelligence", "geo": null, "id": 147741964463382530, "id_str": "147741964463382528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1670309219/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670309219/images_normal.jpg", "source": "<a href="http://businessintelligenceweekly.com" rel="nofollow">Business Intelligence Weekly</a>", "text": "New MapR Hadoop Version Includes Windows, Mac Support http://t.co/QIZHRM5e", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:12:42 +0000", "from_user": "odoenet", "from_user_id": 84098365, "from_user_id_str": "84098365", "from_user_name": "Rene R.", "geo": null, "id": 147740950947561470, "id_str": "147740950947561474", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1269097454/gr_sneakpeak_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1269097454/gr_sneakpeak_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @ManningBooks: #Hadoop in Practice MEAP launch! 50% off today. Use code hadoop50 http://t.co/YUj8cV3t checkout. http://t.co/5420nNLd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:01:36 +0000", "from_user": "Wikibon", "from_user_id": 21509975, "from_user_id_str": "21509975", "from_user_name": "Wikibon", "geo": null, "id": 147738159835394050, "id_str": "147738159835394048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/382767286/BlueBeeMed_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/382767286/BlueBeeMed_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "In-Memory Database Engines Support Real-Time Analytics, Compliment @Hadoop http://t.co/s8A574sP by @jeffreyfkelly", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:01:01 +0000", "from_user": "EnterpriseXbro", "from_user_id": 373060405, "from_user_id_str": "373060405", "from_user_name": "Bella Ashton", "geo": null, "id": 147738010711101440, "id_str": "147738010711101440", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1541764597/1315959067_enterprise_5_hr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541764597/1315959067_enterprise_5_hr_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "When HANA meets Hadoop - ITWorld Canada", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:59:11 +0000", "from_user": "_toch", "from_user_id": 238058879, "from_user_id_str": "238058879", "from_user_name": "ChristophePhilemotte", "geo": null, "id": 147737548687556600, "id_str": "147737548687556608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1690634495/picture_toch_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690634495/picture_toch_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "And you? My Top 3: #Hadoop #jQuery #Git in The 10 Most Important Open Source Projects of 2011 | http://t.co/t4rmf5de http://t.co/saZuPPbJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:55:40 +0000", "from_user": "LearnExcel", "from_user_id": 114589142, "from_user_id_str": "114589142", "from_user_name": "Guruonline-Iwebslog", "geo": null, "id": 147736663815229440, "id_str": "147736663815229440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/698010679/excel_2003_01_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/698010679/excel_2003_01_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "http://t.co/pHoXARdG-Microsoft Tries Hadoop on Azure: s App Engine. Users can build MapReduce jobs. Microsoft... http://t.co/LF24TLSA #Excel", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:46:33 +0000", "from_user": "SQLGal", "from_user_id": 40076709, "from_user_id_str": "40076709", "from_user_name": "Lara Rubbelke", "geo": null, "id": 147734371292561400, "id_str": "147734371292561408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1591841505/WonderWoman2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591841505/WonderWoman2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Covering the curse of the last reducer #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:38:08 +0000", "from_user": "Cloud_Analytics", "from_user_id": 213668992, "from_user_id_str": "213668992", "from_user_name": "Cloud Analytics", "geo": null, "id": 147732254385389570, "id_str": "147732254385389568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1341626314/cloud-computing_analytics_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1341626314/cloud-computing_analytics_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft Tries Hadoop on Azure - SYS-CON Media (press release): It gives Azure Big Data capab... http://t.co/ZIj0hoor #Cloud #Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:34:50 +0000", "from_user": "Incentro_", "from_user_id": 25980296, "from_user_id_str": "25980296", "from_user_name": "Incentro", "geo": null, "id": 147731424039014400, "id_str": "147731424039014401", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1606662323/apple-touch-icon-114x114-precomposed_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606662323/apple-touch-icon-114x114-precomposed_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @mars_chat: Bam! En de volgende Hadoop certificering is binnen! @bramroeland proficiat @Incentro_ Big Data specialist", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:29:27 +0000", "from_user": "BioinfUPR", "from_user_id": 380837835, "from_user_id_str": "380837835", "from_user_name": "Annabelle Conkle", "geo": null, "id": 147730069119434750, "id_str": "147730069119434752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1610616610/avatar-animated-98-1_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610616610/avatar-animated-98-1_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Cloudera Expands Enterprise Management Software For Apache Hadoop With End-to-End Visibility for Big Data Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:29:17 +0000", "from_user": "ClouderaU", "from_user_id": 304590949, "from_user_id_str": "304590949", "from_user_name": "Cloudera University", "geo": null, "id": 147730025754533900, "id_str": "147730025754533888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1562750756/Screen_Shot_2011-09-27_at_11.33.38_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1562750756/Screen_Shot_2011-09-27_at_11.33.38_AM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Great job! RT @bramroeland \"Congratulations! You have passed the Cloudera Certified Developer for Apache Hadoop exam\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:28:35 +0000", "from_user": "sheilahmarhoifi", "from_user_id": 434623716, "from_user_id_str": "434623716", "from_user_name": "sheilah marhoifir", "geo": null, "id": 147729848289341440, "id_str": "147729848289341441", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688253980/9046_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688253980/9046_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure - SYS-CON Media (press release) http://t.co/ghCqkCQU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:27:18 +0000", "from_user": "mcristia", "from_user_id": 8612292, "from_user_id_str": "8612292", "from_user_name": "Michael W Cristiani", "geo": null, "id": 147729527957762050, "id_str": "147729527957762048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/80441361/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/80441361/me_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ColinJWhite: Significant demand for Hadoop-Tableau support. Achieved using Hive. Demand is from a different part of the organization. #bbbt @tableau.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:26:27 +0000", "from_user": "mcristia", "from_user_id": 8612292, "from_user_id_str": "8612292", "from_user_name": "Michael W Cristiani", "geo": null, "id": 147729311045136400, "id_str": "147729311045136384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/80441361/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/80441361/me_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Claudia_Imhoff: #BBBT More on Direct connect & Go: @tableau supports >25 live data sources natively including Hadoop. They also have in-memory data engine", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:25:19 +0000", "from_user": "wiseanalytics", "from_user_id": 15674265, "from_user_id_str": "15674265", "from_user_name": "Lyndsay Wise", "geo": null, "id": 147729028093186050, "id_str": "147729028093186048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1262034460/Pinpoint_Pinpoint__DSC0129_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1262034460/Pinpoint_Pinpoint__DSC0129_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ColinJWhite: Significant demand for Hadoop-Tableau support. Achieved using Hive. Demand is from a different part of the organization. #bbbt @tableau.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:25:11 +0000", "from_user": "ColinJWhite", "from_user_id": 17630419, "from_user_id_str": "17630419", "from_user_name": "Colin White", "geo": null, "id": 147728995805433860, "id_str": "147728995805433856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/70047566/CW_Photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/70047566/CW_Photo_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Significant demand for Hadoop-Tableau support. Achieved using Hive. Demand is from a different part of the organization. #bbbt @tableau.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:24:08 +0000", "from_user": "jenstirrup", "from_user_id": 23242773, "from_user_id_str": "23242773", "from_user_name": "Jen Stirrup", "geo": null, "id": 147728729920122880, "id_str": "147728729920122880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1580691601/JenStirrup_SpeakerPhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580691601/JenStirrup_SpeakerPhoto_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @johnlmyers44: RT @steve_dine: According to @Tableau, they are seeing big demand for #Hadoop. Using, in part, to validate Hadoop implementation #BBBT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:23:39 +0000", "from_user": "ManningBooks", "from_user_id": 24914741, "from_user_id_str": "24914741", "from_user_name": "Manning Publications", "geo": null, "id": 147728609665237000, "id_str": "147728609665236992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/386363365/uglyguy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/386363365/uglyguy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@hadoopnews #Hadoop in Practice MEAP launch! 50% off today. Use code hadoop50 at http://t.co/lMCtnYZy checkout.", "to_user": "HadoopNews", "to_user_id": 251816878, "to_user_id_str": "251816878", "to_user_name": "John Ching"}, +{"created_at": "Fri, 16 Dec 2011 17:23:32 +0000", "from_user": "Melidabqjdf", "from_user_id": 296669946, "from_user_id_str": "296669946", "from_user_name": "Melida Reiling", "geo": null, "id": 147728578925170700, "id_str": "147728578925170688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1349270119/large__raven_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1349270119/large__raven_1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Windows Azure Adds Node.js Support, Hadoop Preview - ReadWriteCloud http://t.co/8BX2OzuS #support", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:23:05 +0000", "from_user": "mcristia", "from_user_id": 8612292, "from_user_id_str": "8612292", "from_user_name": "Michael W Cristiani", "geo": null, "id": 147728464831717380, "id_str": "147728464831717378", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/80441361/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/80441361/me_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @johnlmyers44: RT @steve_dine: According to @Tableau, they are seeing big demand for #Hadoop. Using, in part, to validate Hadoop implementation #BBBT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:22:53 +0000", "from_user": "mcristia", "from_user_id": 8612292, "from_user_id_str": "8612292", "from_user_name": "Michael W Cristiani", "geo": null, "id": 147728415548641280, "id_str": "147728415548641280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/80441361/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/80441361/me_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Claudia_Imhoff: @tableau data sources - Aster, Hadoop Hive, greenplum, DB2, MSFT, Netezza, ParAccel, PostgreSQL, Sybase, Teradata, Vectorwise, Vertica #BBBT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:22:03 +0000", "from_user": "777final777feed", "from_user_id": 81675924, "from_user_id_str": "81675924", "from_user_name": "777final777feed", "geo": null, "id": 147728204273156100, "id_str": "147728204273156096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure: Microsoft added a trial version of Apache's open source Hadoop... http://t.co/RL8JsbO8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:21:36 +0000", "from_user": "chrismattmann", "from_user_id": 71156816, "from_user_id_str": "71156816", "from_user_name": "Chris Mattmann", "geo": null, "id": 147728092822122500, "id_str": "147728092822122496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/835910893/Photo_352_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/835910893/Photo_352_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @ManningBooks: #Hadoop in Practice MEAP launch! 50% off today. Use code hadoop50 http://t.co/lMCtnYZy checkout. http://t.co/bugYvWdh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:21:28 +0000", "from_user": "ManningBooks", "from_user_id": 24914741, "from_user_id_str": "24914741", "from_user_name": "Manning Publications", "geo": null, "id": 147728060710522880, "id_str": "147728060710522882", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/386363365/uglyguy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/386363365/uglyguy_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "#Hadoop in Practice MEAP launch! 50% off today. Use code hadoop50 http://t.co/lMCtnYZy checkout. http://t.co/bugYvWdh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:20:41 +0000", "from_user": "deilicke", "from_user_id": 112239604, "from_user_id_str": "112239604", "from_user_name": "Carla Ag\\u00FCero", "geo": null, "id": 147727860956794880, "id_str": "147727860956794880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1457352435/deilicke_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1457352435/deilicke_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Claudia_Imhoff: @tableau data sources - Aster, Hadoop Hive, greenplum, DB2, MSFT, Netezza, ParAccel, PostgreSQL, Sybase, Teradata, Vectorwise, Vertica #BBBT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:20:34 +0000", "from_user": "wiseanalytics", "from_user_id": 15674265, "from_user_id_str": "15674265", "from_user_name": "Lyndsay Wise", "geo": null, "id": 147727832456511500, "id_str": "147727832456511488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1262034460/Pinpoint_Pinpoint__DSC0129_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1262034460/Pinpoint_Pinpoint__DSC0129_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Claudia_Imhoff: @tableau data sources - Aster, Hadoop Hive, greenplum, DB2, MSFT, Netezza, ParAccel, PostgreSQL, Sybase, Teradata, Vectorwise, Vertica #BBBT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:19:40 +0000", "from_user": "Claudia_Imhoff", "from_user_id": 16534327, "from_user_id_str": "16534327", "from_user_name": "Claudia Imhoff", "geo": null, "id": 147727605704036350, "id_str": "147727605704036352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1398858970/2011_Claudia_in_the_Netherlands_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1398858970/2011_Claudia_in_the_Netherlands_2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@tableau data sources - Aster, Hadoop Hive, greenplum, DB2, MSFT, Netezza, ParAccel, PostgreSQL, Sybase, Teradata, Vectorwise, Vertica #BBBT", "to_user": "tableau", "to_user_id": 14792516, "to_user_id_str": "14792516", "to_user_name": "Tableau Software"}, +{"created_at": "Fri, 16 Dec 2011 17:17:10 +0000", "from_user": "TheBigDataTrap", "from_user_id": 389163301, "from_user_id_str": "389163301", "from_user_name": "The Big Data Trap", "geo": null, "id": 147726976310972400, "id_str": "147726976310972416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1584049409/twitter_prof_-big-data_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584049409/twitter_prof_-big-data_normal.jpg", "source": "<a href="http://trap.it" rel="nofollow">Trapit</a>", "text": "OSS Cloud Comp (google): Cloud Computing: Microsoft Tries Hadoop on Azure - SYS-CON Media (press release) http://t.co/KqJUFpu4 #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:12:43 +0000", "from_user": "jfroma", "from_user_id": 26559849, "from_user_id_str": "26559849", "from_user_name": "Jos\\u00E9 F. Romaniello", "geo": null, "id": 147725858390552580, "id_str": "147725858390552577", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1152169901/avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1152169901/avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jrdothoughts: @Tellago & @tellagostudios technology Dojo today: NodeJS, Hadoop, Solr, MongoDB in Windows Azure", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:07:21 +0000", "from_user": "LeonardoPrietoU", "from_user_id": 403539492, "from_user_id_str": "403539492", "from_user_name": "Leonardo Prieto", "geo": null, "id": 147724506226634750, "id_str": "147724506226634752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1666392453/fotoRS_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666392453/fotoRS_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @IBM_InfoSphere: Understanding Big Data - NEW McGraw-Hill e-book by IBM experts - register & download: http://t.co/sctmv9q2 #bigdata #ibmsoftware #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:04:41 +0000", "from_user": "biomap", "from_user_id": 158380504, "from_user_id_str": "158380504", "from_user_name": "Amandeep Sidhu", "geo": null, "id": 147723834261372930, "id_str": "147723834261372928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1649894835/pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649894835/pic_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @CloudTopics: Cloud Computing: Microsoft Tries Hadoop on Azure: Microsoft added a trial version of Apache... http://t.co/kerdmubB CloudComputingTopics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:03:23 +0000", "from_user": "InstantOnWorld", "from_user_id": 298547006, "from_user_id_str": "298547006", "from_user_name": "Cloud Computing", "geo": null, "id": 147723506988220400, "id_str": "147723506988220416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1353157070/stars_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1353157070/stars_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure: It gives Azure Big Data capabilities and advanced data analyti... http://t.co/H94fOzUt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:02:02 +0000", "from_user": "copperfroghost", "from_user_id": 259989500, "from_user_id_str": "259989500", "from_user_name": "Copper Frog", "geo": null, "id": 147723167996182530, "id_str": "147723167996182528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1261036211/copper-frog-logo-twitter_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1261036211/copper-frog-logo-twitter_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Great work being done to use MySQL Cluster to bring high-avail and scalability to Hadoop HDFS - http://t.co/bVu1n2iV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:58:34 +0000", "from_user": "IBMOptim4Oracle", "from_user_id": 259519535, "from_user_id_str": "259519535", "from_user_name": "IBM InfoSphere Optim", "geo": null, "id": 147722296478547970, "id_str": "147722296478547969", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1278105994/200_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1278105994/200_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @IBM_InfoSphere: Understanding Big Data - NEW McGraw-Hill e-book by IBM experts - register & download: http://t.co/sctmv9q2 #bigdata #ibmsoftware #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:57:13 +0000", "from_user": "BigDataBlogs", "from_user_id": 408520849, "from_user_id_str": "408520849", "from_user_name": "BigData Blogs", "geo": null, "id": 147721954617593860, "id_str": "147721954617593858", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1645240023/CloudBigData-300x239-resized-600_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645240023/CloudBigData-300x239-resized-600_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure: It gives Azure Big Data capabilities and advan... http://t.co/qLLync2L #bigdata #blogs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:55:21 +0000", "from_user": "wesleylong", "from_user_id": 21544956, "from_user_id_str": "21544956", "from_user_name": "Wesley Long", "geo": null, "id": 147721488156471300, "id_str": "147721488156471297", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/81265024/Wesley2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/81265024/Wesley2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure http://t.co/SIowcO5h", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:50:21 +0000", "from_user": "IBM_InfoSphere", "from_user_id": 64781301, "from_user_id_str": "64781301", "from_user_name": "IBM InfoSphere", "geo": null, "id": 147720227394826240, "id_str": "147720227394826240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/357366799/InfoSphere_200x200_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/357366799/InfoSphere_200x200_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Understanding Big Data - NEW McGraw-Hill e-book by IBM experts - register & download: http://t.co/sctmv9q2 #bigdata #ibmsoftware #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:50:10 +0000", "from_user": "softartisans", "from_user_id": 50410463, "from_user_id_str": "50410463", "from_user_name": "SoftArtisans ", "geo": null, "id": 147720180468953100, "id_str": "147720180468953088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/292623405/SAtweet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/292623405/SAtweet_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @prussom \"#Hadoop: Revealing its True Value for Business Intelligence\" http://t.co/sYlWvWf5 #bi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:45:37 +0000", "from_user": "wiseanalytics", "from_user_id": 15674265, "from_user_id_str": "15674265", "from_user_name": "Lyndsay Wise", "geo": null, "id": 147719036988440580, "id_str": "147719036988440576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1262034460/Pinpoint_Pinpoint__DSC0129_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1262034460/Pinpoint_Pinpoint__DSC0129_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Claudia_Imhoff: #BBBT More on Direct connect & Go: @tableau supports >25 live data sources natively including Hadoop. They also have in-memory data engine", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:44:33 +0000", "from_user": "INFAIM", "from_user_id": 145062108, "from_user_id_str": "145062108", "from_user_name": "Julianna DeLua (EIM)", "geo": null, "id": 147718767814770700, "id_str": "147718767814770690", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @BigDataInt: Last #Hadoop Tues webinar slides http://t.co/urbi1lMM Get started w/ #Hadoop @wei_zheng @informaticacorp Charles Zedlewski @cloudera", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:43:32 +0000", "from_user": "Claudia_Imhoff", "from_user_id": 16534327, "from_user_id_str": "16534327", "from_user_name": "Claudia Imhoff", "geo": null, "id": 147718512201314300, "id_str": "147718512201314305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1398858970/2011_Claudia_in_the_Netherlands_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1398858970/2011_Claudia_in_the_Netherlands_2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "#BBBT More on Direct connect & Go: @tableau supports >25 live data sources natively including Hadoop. They also have in-memory data engine", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Fri, 16 Dec 2011 17:12:43 +0000", "from_user": "Tellago", "from_user_id": 56425625, "from_user_id_str": "56425625", "from_user_name": "Tellago", "geo": null, "id": 147725858398945280, "id_str": "147725858398945280", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1359635587/tellago_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1359635587/tellago_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jrdothoughts: @Tellago & @tellagostudios technology Dojo today: NodeJS, Hadoop, Solr, MongoDB in Windows Azure", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:12:43 +0000", "from_user": "jfroma", "from_user_id": 26559849, "from_user_id_str": "26559849", "from_user_name": "Jos\\u00E9 F. Romaniello", "geo": null, "id": 147725858390552580, "id_str": "147725858390552577", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1152169901/avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1152169901/avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jrdothoughts: @Tellago & @tellagostudios technology Dojo today: NodeJS, Hadoop, Solr, MongoDB in Windows Azure", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:10:40 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 147725342348546050, "id_str": "147725342348546048", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hadoop enables distributed 'big data' processing across clouds http://t.co/0NMMCCpJ #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:07:21 +0000", "from_user": "LeonardoPrietoU", "from_user_id": 403539492, "from_user_id_str": "403539492", "from_user_name": "Leonardo Prieto", "geo": null, "id": 147724506226634750, "id_str": "147724506226634752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1666392453/fotoRS_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666392453/fotoRS_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @IBM_InfoSphere: Understanding Big Data - NEW McGraw-Hill e-book by IBM experts - register & download: http://t.co/sctmv9q2 #bigdata #ibmsoftware #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:04:41 +0000", "from_user": "biomap", "from_user_id": 158380504, "from_user_id_str": "158380504", "from_user_name": "Amandeep Sidhu", "geo": null, "id": 147723834261372930, "id_str": "147723834261372928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1649894835/pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649894835/pic_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @CloudTopics: Cloud Computing: Microsoft Tries Hadoop on Azure: Microsoft added a trial version of Apache... http://t.co/kerdmubB CloudComputingTopics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:03:23 +0000", "from_user": "InstantOnWorld", "from_user_id": 298547006, "from_user_id_str": "298547006", "from_user_name": "Cloud Computing", "geo": null, "id": 147723506988220400, "id_str": "147723506988220416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1353157070/stars_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1353157070/stars_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure: It gives Azure Big Data capabilities and advanced data analyti... http://t.co/H94fOzUt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:02:02 +0000", "from_user": "copperfroghost", "from_user_id": 259989500, "from_user_id_str": "259989500", "from_user_name": "Copper Frog", "geo": null, "id": 147723167996182530, "id_str": "147723167996182528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1261036211/copper-frog-logo-twitter_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1261036211/copper-frog-logo-twitter_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Great work being done to use MySQL Cluster to bring high-avail and scalability to Hadoop HDFS - http://t.co/bVu1n2iV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:58:34 +0000", "from_user": "IBMOptim4Oracle", "from_user_id": 259519535, "from_user_id_str": "259519535", "from_user_name": "IBM InfoSphere Optim", "geo": null, "id": 147722296478547970, "id_str": "147722296478547969", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1278105994/200_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1278105994/200_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @IBM_InfoSphere: Understanding Big Data - NEW McGraw-Hill e-book by IBM experts - register & download: http://t.co/sctmv9q2 #bigdata #ibmsoftware #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:57:13 +0000", "from_user": "BigDataBlogs", "from_user_id": 408520849, "from_user_id_str": "408520849", "from_user_name": "BigData Blogs", "geo": null, "id": 147721954617593860, "id_str": "147721954617593858", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1645240023/CloudBigData-300x239-resized-600_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645240023/CloudBigData-300x239-resized-600_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure: It gives Azure Big Data capabilities and advan... http://t.co/qLLync2L #bigdata #blogs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:55:21 +0000", "from_user": "wesleylong", "from_user_id": 21544956, "from_user_id_str": "21544956", "from_user_name": "Wesley Long", "geo": null, "id": 147721488156471300, "id_str": "147721488156471297", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/81265024/Wesley2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/81265024/Wesley2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure http://t.co/SIowcO5h", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:50:21 +0000", "from_user": "IBM_InfoSphere", "from_user_id": 64781301, "from_user_id_str": "64781301", "from_user_name": "IBM InfoSphere", "geo": null, "id": 147720227394826240, "id_str": "147720227394826240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/357366799/InfoSphere_200x200_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/357366799/InfoSphere_200x200_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Understanding Big Data - NEW McGraw-Hill e-book by IBM experts - register & download: http://t.co/sctmv9q2 #bigdata #ibmsoftware #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:50:10 +0000", "from_user": "softartisans", "from_user_id": 50410463, "from_user_id_str": "50410463", "from_user_name": "SoftArtisans ", "geo": null, "id": 147720180468953100, "id_str": "147720180468953088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/292623405/SAtweet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/292623405/SAtweet_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @prussom \"#Hadoop: Revealing its True Value for Business Intelligence\" http://t.co/sYlWvWf5 #bi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:45:37 +0000", "from_user": "wiseanalytics", "from_user_id": 15674265, "from_user_id_str": "15674265", "from_user_name": "Lyndsay Wise", "geo": null, "id": 147719036988440580, "id_str": "147719036988440576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1262034460/Pinpoint_Pinpoint__DSC0129_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1262034460/Pinpoint_Pinpoint__DSC0129_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Claudia_Imhoff: #BBBT More on Direct connect & Go: @tableau supports >25 live data sources natively including Hadoop. They also have in-memory data engine", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:44:33 +0000", "from_user": "INFAIM", "from_user_id": 145062108, "from_user_id_str": "145062108", "from_user_name": "Julianna DeLua (EIM)", "geo": null, "id": 147718767814770700, "id_str": "147718767814770690", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @BigDataInt: Last #Hadoop Tues webinar slides http://t.co/urbi1lMM Get started w/ #Hadoop @wei_zheng @informaticacorp Charles Zedlewski @cloudera", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:43:32 +0000", "from_user": "Claudia_Imhoff", "from_user_id": 16534327, "from_user_id_str": "16534327", "from_user_name": "Claudia Imhoff", "geo": null, "id": 147718512201314300, "id_str": "147718512201314305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1398858970/2011_Claudia_in_the_Netherlands_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1398858970/2011_Claudia_in_the_Netherlands_2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "#BBBT More on Direct connect & Go: @tableau supports >25 live data sources natively including Hadoop. They also have in-memory data engine", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:43:26 +0000", "from_user": "hpccsystems", "from_user_id": 136416356, "from_user_id_str": "136416356", "from_user_name": "HPCC Systems", "geo": null, "id": 147718487568158720, "id_str": "147718487568158720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1385998591/hpccsystems_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1385998591/hpccsystems_twitter_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "#HPCCSystems mentioned as mature #hadoop alternative - http://t.co/PcQRsjhg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:41:13 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 147717929486659600, "id_str": "147717929486659587", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "RT @markwigmans: 8 Most Interesting Companies for #Hadoop's Future http://t.co/q0DntXhL #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:41:13 +0000", "from_user": "douwen", "from_user_id": 31627529, "from_user_id_str": "31627529", "from_user_name": "Wen Dou", "geo": null, "id": 147717928744255500, "id_str": "147717928744255488", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1175372450/IMG_0080_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1175372450/IMG_0080_normal.jpg", "source": "<a href="http://fanfou.com" rel="nofollow">fanfou2.0</a>", "text": "\\u4EE5\\u524D\\u6709\\u4E2A\\u60F3\\u6CD5\\uFF0C\\u4E91\\u8BA1\\u7B97\\u7684\\u4E00\\u79CD\\u5F62\\u5F0F\\u5E94\\u8BE5\\u662F\\u5411\\u4E91\\u8BF7\\u6C42\\u8FD0\\u7B97\\u672C\\u5730\\u6570\\u636E\\u7684\\u4EE3\\u7801\\u3002\\u4ECA\\u5929\\u7EC8\\u4E8E\\u770B\\u5230hadoop\\u5C31\\u662F\\u201C\\u4EE3\\u7801\\u8D70\\u5411\\u6570\\u636E\\u201D\\u7684\\u8BBE\\u8BA1\\u7406\\u5FF5\\uFF0C\\u4E0D\\u8FC7\\u524D\\u63D0\\u662F\\u201C\\u672C\\u5730\\u201D\\u662F\\u4E91\\u7684\\u4E00\\u4E2A\\u8282\\u70B9\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:40:54 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 147717848565956600, "id_str": "147717848565956609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @DataMgmtUK: Is Hadoop the future of enterprise data warehousing? Groupon and NYSE trying to solve big data issues, moving to Hadoop http://t.co/d31DXu0B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:40:46 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 147717816320135170, "id_str": "147717816320135168", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @ialjkk: [#HDFS-2649] eclipse:eclipse build fails for hadoop-hdfs-httpfs ... http://t.co/zLTZOaTx #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:40:32 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 147717758023507970, "id_str": "147717758023507970", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @ialjkk: hadoop - HDFS distributed reads without Map/Reduce - Stack ... http://t.co/zsu1slIr #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:40:28 +0000", "from_user": "cathrinelungrin", "from_user_id": 434636600, "from_user_id_str": "434636600", "from_user_name": "cathrine lungrin", "geo": null, "id": 147717740990431230, "id_str": "147717740990431233", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688296112/96754615_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688296112/96754615_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure - SYS-CON Media (press release) http://t.co/2TqkrtJV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:40:21 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 147717712766967800, "id_str": "147717712766967809", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @stevehebert: A nice walkthru of hadoop on azure http://t.co/PTUS4PxI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:40:14 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 147717681561337860, "id_str": "147717681561337857", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @BigDataBlogs: 2012 Predictions \\u2013 Big Data, Bulk Load, Cloud Computing, Hadoop ...: Predictions for the year 20... http://t.co/6BKJ2kPu #bigdata #blogs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:40:04 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 147717637957365760, "id_str": "147717637957365760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @maxmether: #MySQL Cluster used to improve availability of #Hadoop File system (HDFS): http://t.co/AihMqcnP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:39:50 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 147717581992763400, "id_str": "147717581992763393", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jrdothoughts: @Tellago & @tellagostudios technology Dojo today: NodeJS, Hadoop, Solr, MongoDB in Windows Azure", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:38:45 +0000", "from_user": "jasonbaldridge", "from_user_id": 119837224, "from_user_id_str": "119837224", "from_user_name": "Jason Baldridge", "geo": null, "id": 147717308956164100, "id_str": "147717308956164099", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1269490811/jason_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1269490811/jason_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @josephreisinger: Glimmers of a _real_ machine learning system for Hadoop via vw allreduce http://t.co/4Pskbuwd \\n#NIPS2011 big learning http://t.co/zT7X3rJi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:34:22 +0000", "from_user": "JWSdan", "from_user_id": 39823566, "from_user_id_str": "39823566", "from_user_name": "Dan Griffin", "geo": null, "id": 147716207137669120, "id_str": "147716207137669120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/287785422/HeadShot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/287785422/HeadShot_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Comic explaining Hadoop Distributed File System (HDFS): http://t.co/tUj7huok = Edutainment!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:31:53 +0000", "from_user": "jrdothoughts", "from_user_id": 375678020, "from_user_id_str": "375678020", "from_user_name": "Jesus Rodriguez", "geo": null, "id": 147715579166457860, "id_str": "147715579166457856", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1548567084/JR_Headshot_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1548567084/JR_Headshot_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@Tellago & @tellagostudios technology Dojo today: NodeJS, Hadoop, Solr, MongoDB in Windows Azure", "to_user": "Tellago", "to_user_id": 56425625, "to_user_id_str": "56425625", "to_user_name": "Tellago"}, +{"created_at": "Fri, 16 Dec 2011 16:30:04 +0000", "from_user": "MySQLBot_en", "from_user_id": 305160384, "from_user_id_str": "305160384", "from_user_name": "MySQLBot_en", "geo": null, "id": 147715122494836740, "id_str": "147715122494836736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1368954854/mysql_100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1368954854/mysql_100_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @maxmether: #MySQL Cluster used to improve availability of #Hadoop File system (HDFS): http://t.co/AihMqcnP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:26:47 +0000", "from_user": "benlee", "from_user_id": 786148, "from_user_id_str": "786148", "from_user_name": "Ben Lee", "geo": null, "id": 147714297819172860, "id_str": "147714297819172865", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1286841019/madmen_icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1286841019/madmen_icon_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @josephreisinger: Glimmers of a _real_ machine learning system for Hadoop via vw allreduce http://t.co/4Pskbuwd \\n#NIPS2011 big learning http://t.co/zT7X3rJi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:26:05 +0000", "from_user": "hpccsystems", "from_user_id": 136416356, "from_user_id_str": "136416356", "from_user_name": "HPCC Systems", "geo": null, "id": 147714122740531200, "id_str": "147714122740531200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1385998591/hpccsystems_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1385998591/hpccsystems_twitter_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "RT @AAinslie: \"We are four faster than Hadoop on the Thor side. If Hadoop needs 1,000 nodes we can do it with 250\" http://t.co/TXu5uxvc #HPCC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:25:10 +0000", "from_user": "BigDataBlogs", "from_user_id": 408520849, "from_user_id_str": "408520849", "from_user_name": "BigData Blogs", "geo": null, "id": 147713888358633470, "id_str": "147713888358633472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1645240023/CloudBigData-300x239-resized-600_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645240023/CloudBigData-300x239-resized-600_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "2012 Predictions \\u2013 Big Data, Bulk Load, Cloud Computing, Hadoop ...: Predictions for the year 20... http://t.co/6BKJ2kPu #bigdata #blogs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:23:20 +0000", "from_user": "stevehebert", "from_user_id": 36799815, "from_user_id_str": "36799815", "from_user_name": "Steve Hebert", "geo": null, "id": 147713428402864130, "id_str": "147713428402864129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1204913250/daf24738-b8d1-4b62-9bc7-9b9041369616_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1204913250/daf24738-b8d1-4b62-9bc7-9b9041369616_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "A nice walkthru of hadoop on azure http://t.co/PTUS4PxI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:23:10 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 147713388112384000, "id_str": "147713388112384000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "hadoop - HDFS distributed reads without Map/Reduce - Stack ... http://t.co/zsu1slIr #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:22:17 +0000", "from_user": "onedump", "from_user_id": 97601403, "from_user_id_str": "97601403", "from_user_name": "\\u8FDF\\u6587", "geo": null, "id": 147713163318665200, "id_str": "147713163318665216", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/938083277/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/938083277/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@ninayan \\u8BDD\\u8BF4hadoop\\u8FD9\\u4E2A\\u4E1C\\u897F\\u8FD8\\u662F\\u6211\\u8FDB\\u4E86baidu\\u540E\\u624D\\u63A5\\u89E6\\u7684\\u3002\\u3002\\u3002\\u6CA1\\u60F3\\u5230\\u5B83\\u4E00\\u76F4\\u90FD\\u90A3\\u4E48\\u706B\\u3002\\u3002\\u3002", "to_user": "ninayan", "to_user_id": 15262903, "to_user_id_str": "15262903", "to_user_name": "\\u5C0F\\u8A00\\u541B", "in_reply_to_status_id": 147707844987334660, "in_reply_to_status_id_str": "147707844987334656"}, +{"created_at": "Fri, 16 Dec 2011 16:21:31 +0000", "from_user": "GrupoMVSolucion", "from_user_id": 360271706, "from_user_id_str": "360271706", "from_user_name": "Grupo M.V Soluciones", "geo": null, "id": 147712971857080320, "id_str": "147712971857080322", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1541675696/331957_218086794913146_190305511024608_526593_545320030_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541675696/331957_218086794913146_190305511024608_526593_545320030_o_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Microsoft Azure aloja Hadoop y otras aplicaciones de c\\u00F3digo abierto http://t.co/jESiCFQ1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:19:09 +0000", "from_user": "greenplummy", "from_user_id": 327237588, "from_user_id_str": "327237588", "from_user_name": "Greenplum \\u597D\\u304D", "geo": null, "id": 147712375196368900, "id_str": "147712375196368897", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1421559281/greenplum_icon_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1421559281/greenplum_icon_normal.gif", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\\u300CC/C++ libhdfs\\u306E\\u5B9F\\u88C5\\u306B\\u3088\\u308AJava\\u4EEE\\u60F3\\u30DE\\u30B7\\u30F3\\u3092\\u56DE\\u907F\\u3057\\u3066\\u30D5\\u30A1\\u30A4\\u30EB\\u30B7\\u30B9\\u30C6\\u30E0\\u306B\\u30A2\\u30AF\\u30BB\\u30B9\\u300D\\u300CMapReduce 2.0\\u5BFE\\u5FDC\\u300D\\u7C73MapR\\u3001MapReduce 2.0\\u306B\\u5BFE\\u5FDC\\u3057\\u305FApache Hadoop\\u30C7\\u30A3\\u30B9\\u30C8\\u30ED\\u300CMapR 1.2\\u300D\\u3092\\u767A\\u8868http://t.co/bj8XpBC7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:18:55 +0000", "from_user": "skedasis", "from_user_id": 239074975, "from_user_id_str": "239074975", "from_user_name": "Hamilton Ulmer", "geo": null, "id": 147712315901485060, "id_str": "147712315901485057", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1218707649/contact_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218707649/contact_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @josephreisinger: Glimmers of a _real_ machine learning system for Hadoop via vw allreduce http://t.co/4Pskbuwd \\n#NIPS2011 big learning http://t.co/zT7X3rJi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:15:55 +0000", "from_user": "maxmether", "from_user_id": 111616130, "from_user_id_str": "111616130", "from_user_name": "Max Mether", "geo": null, "id": 147711561820147700, "id_str": "147711561820147712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1645301328/IMG_0989_pw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645301328/IMG_0989_pw_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#MySQL Cluster used to improve availability of #Hadoop File system (HDFS): http://t.co/AihMqcnP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:13:23 +0000", "from_user": "ChrisDiehl", "from_user_id": 14595061, "from_user_id_str": "14595061", "from_user_name": "Chris Diehl", "geo": null, "id": 147710924814434300, "id_str": "147710924814434304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/660241500/ZionSmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/660241500/ZionSmall_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @josephreisinger: Glimmers of a _real_ machine learning system for Hadoop via vw allreduce http://t.co/4Pskbuwd \\n#NIPS2011 big learning http://t.co/zT7X3rJi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:13:22 +0000", "from_user": "ninayan", "from_user_id": 15262903, "from_user_id_str": "15262903", "from_user_name": "\\u5C0F\\u8A00\\u541B", "geo": null, "id": 147710922012639230, "id_str": "147710922012639233", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1494124280/ttw_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1494124280/ttw_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@aleksejevski //-\\\\ \\u5F88\\u7B80\\u5355\\u7684\\u73A9\\u610F\\u513F\\uFF0C\\u5C31\\u7528\\u5230\\u4E00\\u4E0B\\u4E0Bhadoop", "to_user": "aleksejevski", "to_user_id": 108292948, "to_user_id_str": "108292948", "to_user_name": "iAlex", "in_reply_to_status_id": 147710615056695300, "in_reply_to_status_id_str": "147710615056695296"}, +{"created_at": "Fri, 16 Dec 2011 16:09:39 +0000", "from_user": "AugmentedAdvert", "from_user_id": 25044297, "from_user_id_str": "25044297", "from_user_name": "AugmentedAdvertising", "geo": null, "id": 147709983579050000, "id_str": "147709983579049984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/101274714/patternpers_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/101274714/patternpers_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT: Had a conversation lat night with a friend about the intersection of Augmented Reality w/ Hadoop that has m... http://t.co/9Q73tVha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:08:37 +0000", "from_user": "myalltop_paul", "from_user_id": 216075147, "from_user_id_str": "216075147", "from_user_name": "MyAllTop - Cloud", "geo": null, "id": 147709726514360320, "id_str": "147709726514360320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure - SYS-CON Media (press release) http://t.co/jwW3Q1OA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:05:32 +0000", "from_user": "grigz", "from_user_id": 24448708, "from_user_id_str": "24448708", "from_user_name": "Dan Bettinger", "geo": null, "id": 147708947455942660, "id_str": "147708947455942657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1488105225/2db7ca8_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1488105225/2db7ca8_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Had a conversation lat night with a friend about the intersection of Augmented Reality w/ Hadoop that has my mind churning", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:04:18 +0000", "from_user": "greenplummy", "from_user_id": 327237588, "from_user_id_str": "327237588", "from_user_name": "Greenplum \\u597D\\u304D", "geo": null, "id": 147708637215862800, "id_str": "147708637215862784", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1421559281/greenplum_icon_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1421559281/greenplum_icon_normal.gif", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "EMC\\u306FGreenplum\\u30C7\\u30FC\\u30BF\\u30D9\\u30FC\\u30B9\\uFF0BHadoop\\uFF0B\\u30C7\\u30FC\\u30BF\\u5206\\u6790\\u30B3\\u30E9\\u30DC\\u30C4\\u30FC\\u30EBChorus\\u3092\\u7D44\\u307F\\u5408\\u308F\\u305B\\u305F\\u7D71\\u5408\\u5206\\u6790\\u30D7\\u30E9\\u30C3\\u30C8\\u30D5\\u30A9\\u30FC\\u30E0\\u3092\\u767A\\u8868\\u3002EMC Greenplum puts a social spin on big\\u00A0data http://t.co/aqaInpEc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:02:29 +0000", "from_user": "aleksejevski", "from_user_id": 108292948, "from_user_id_str": "108292948", "from_user_name": "iAlex", "geo": null, "id": 147708180154167300, "id_str": "147708180154167296", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1643562673/455949_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643562673/455949_1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ninayan hadoop\\u770B\\u4E86\\u4E00\\u4E0B\\uFF0C\\u5F53\\u65F6\\u89C9\\u5F97\\u8FD9\\u8D27\\u5F88\\u6298\\u78E8\\u4EBA\\u2026\\u2026\\u4E8E\\u662F\\u51B3\\u5B9A\\u6682\\u65F6\\u6401\\u7F6E\\u2026\\u2026", "to_user": "ninayan", "to_user_id": 15262903, "to_user_id_str": "15262903", "to_user_name": "\\u5C0F\\u8A00\\u541B", "in_reply_to_status_id": 147707844987334660, "in_reply_to_status_id_str": "147707844987334656"}, +{"created_at": "Fri, 16 Dec 2011 16:02:25 +0000", "from_user": "barneybeal", "from_user_id": 15088822, "from_user_id_str": "15088822", "from_user_name": "barneybeal", "geo": null, "id": 147708163569893380, "id_str": "147708163569893376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/720403844/new-twitter_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/720403844/new-twitter_normal.gif", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @DataMgmtUK: Is Hadoop the future of enterprise DW? Groupon + NYSE trying to solve big data issues, moving to Hadoop http://t.co/alFhGkW8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:01:10 +0000", "from_user": "Brunola88", "from_user_id": 146161097, "from_user_id_str": "146161097", "from_user_name": "Mark Brunelli", "geo": null, "id": 147707849278103550, "id_str": "147707849278103552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/916439724/markPick_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/916439724/markPick_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @DataMgmtUK: Is Hadoop the future of enterprise data warehousing? Groupon and NYSE trying to solve big data issues, moving to Hadoop http://t.co/d31DXu0B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:01:09 +0000", "from_user": "ninayan", "from_user_id": 15262903, "from_user_id_str": "15262903", "from_user_name": "\\u5C0F\\u8A00\\u541B", "geo": null, "id": 147707844987334660, "id_str": "147707844987334656", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1494124280/ttw_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1494124280/ttw_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u767E\\u5EA6\\u77E5\\u9053\\u63A8\\u8350\\u8BF4\\u7B49\\u5F85\\u4F60\\u6765\\u56DE\\u7B54\\u7684\\u95EE\\u9898\\uFF0C\\u653E\\u773C\\u671B\\u53BB\\u5168\\u662Fhadoop\\u3002\\u3002\\u3002\\u610F\\u601D\\u662F\\u6211\\u6700\\u8FD1\\u7528\\u767E\\u5EA6\\u522B\\u7684\\u6CA1\\u641C\\uFF0C\\u5149\\u641Chadoop\\u4E86\\u3002\\u3002\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:00:11 +0000", "from_user": "rolandbouman", "from_user_id": 51754021, "from_user_id_str": "51754021", "from_user_name": "Roland Bouman", "geo": null, "id": 147707602724323330, "id_str": "147707602724323328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/287001025/roland_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/287001025/roland_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@mjasay They had no choice, but considering what they could've done wrong, they're doing great. Hadoop is also proxy to sell more SQL server", "to_user": "mjasay", "to_user_id": 7617702, "to_user_id_str": "7617702", "to_user_name": "Matt Asay", "in_reply_to_status_id": 147706397851791360, "in_reply_to_status_id_str": "147706397851791361"}, +{"created_at": "Fri, 16 Dec 2011 15:58:03 +0000", "from_user": "markwigmans", "from_user_id": 7527532, "from_user_id_str": "7527532", "from_user_name": "Mark Wigmans", "geo": null, "id": 147707065085853700, "id_str": "147707065085853696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/837273831/MWI_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/837273831/MWI_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "8 Most Interesting Companies for #Hadoop's Future http://t.co/q0DntXhL #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:56:49 +0000", "from_user": "greenplummy", "from_user_id": 327237588, "from_user_id_str": "327237588", "from_user_name": "Greenplum \\u597D\\u304D", "geo": null, "id": 147706754216624130, "id_str": "147706754216624129", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1421559281/greenplum_icon_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1421559281/greenplum_icon_normal.gif", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\\u30A4\\u30F3\\u30B5\\u30A4\\u30C9 MapR (1) \\uFF08Hadoop \\u30A2\\u30C9\\u30D9\\u30F3\\u30C8\\u30AB\\u30EC\\u30F3\\u30C0\\u30FC 2011 16\\u65E5\\u76EE\\uFF09 - nagix (id:nagixx) http://t.co/9LKJPrDe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:52:27 +0000", "from_user": "CarlaSchroder", "from_user_id": 268381487, "from_user_id_str": "268381487", "from_user_name": "Carla Schroder", "geo": null, "id": 147705658328879100, "id_str": "147705658328879104", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1278286960/carla_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1278286960/carla_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @openlogic: LexixNexis Open Sources Hadoop Challenger http://t.co/F5pak36G via @regvulture #opensource", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:49:47 +0000", "from_user": "HadoopNews", "from_user_id": 251816878, "from_user_id_str": "251816878", "from_user_name": "John Ching", "geo": null, "id": 147704985822564350, "id_str": "147704985822564352", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1244235692/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1244235692/images_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "When #HANA meets #Hadoop - http://t.co/fqrBu6LP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:46:21 +0000", "from_user": "archiereed", "from_user_id": 21903567, "from_user_id_str": "21903567", "from_user_name": "Archie Reed", "geo": null, "id": 147704121863057400, "id_str": "147704121863057408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1106789661/HeadshotScribble1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1106789661/HeadshotScribble1_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Cloud Computing: Microsoft Tries Hadoop on Azure - SYS-CON Media (press release): SYS-CON Media (press release)... http://t.co/otgk9LLS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:46:20 +0000", "from_user": "archiereed", "from_user_id": 21903567, "from_user_id_str": "21903567", "from_user_name": "Archie Reed", "geo": null, "id": 147704118243368960, "id_str": "147704118243368961", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1106789661/HeadshotScribble1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1106789661/HeadshotScribble1_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Cloud Computing: Microsoft Tries Hadoop on Azure: Microsoft added a trial version of Apache\\u2019s open source Hadoo... http://t.co/3LlzaeMx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:45:10 +0000", "from_user": "mikegil", "from_user_id": 14346341, "from_user_id_str": "14346341", "from_user_name": "mikegil", "geo": null, "id": 147703823551574000, "id_str": "147703823551574016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1513465907/cropped_MG_background_bio_pic_--_color_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1513465907/cropped_MG_background_bio_pic_--_color_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @softartisans: \"\\u201CThe problem with #SQLServer is that it doesn\\u2019t have a dog.\\u201D\" http://t.co/lSCLORKt @BrentO >>or an elephant #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:37:21 +0000", "from_user": "jim68000", "from_user_id": 6613562, "from_user_id_str": "6613562", "from_user_name": "Jim Smith", "geo": null, "id": 147701857438011400, "id_str": "147701857438011392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695455238/Untitled-1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695455238/Untitled-1_normal.png", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "Waiting for my joins to anneal. This might require a weekend. Or I might have asked Hadoop for the impossible.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:29:02 +0000", "from_user": "patterngazer", "from_user_id": 259706997, "from_user_id_str": "259706997", "from_user_name": "Marc-Daniel Ortega", "geo": null, "id": 147699764589375500, "id_str": "147699764589375489", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1263491324/thumper_mini_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263491324/thumper_mini_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "RT @ManningBooks: Brand new! We've started the MEAP of Hadoop in Practice! http://t.co/KyAqs6Hc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:28:53 +0000", "from_user": "shiumachi", "from_user_id": 11370182, "from_user_id_str": "11370182", "from_user_name": "Sho Shimauchi", "geo": null, "id": 147699724215005200, "id_str": "147699724215005184", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1112990537/2006-06-04_002_bigger_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1112990537/2006-06-04_002_bigger_normal.png", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "@cocoatomo \\u3044\\u3084\\u3001\\u5358\\u306B\\u300Chadoop \\u306E\\u3053\\u3068\\u306F\\u3055\\u3066\\u304A\\u304D\\u3001\\u4ECA\\u65E5\\u306F\\u6570\\u5B66\\u306E\\u8A71\\u3092\\u3057\\u307E\\u3059\\u300D\\u3067\\u5EF6\\u3005\\u8A9E\\u3063\\u3066\\u304F\\u308C\\u3066\\u3082\\u3088\\u304B\\u3063\\u305F\\u3093\\u3060\\u305C\\uFF01", "to_user": "cocoatomo", "to_user_id": 7590702, "to_user_id_str": "7590702", "to_user_name": "tomo", "in_reply_to_status_id": 147699017067937800, "in_reply_to_status_id_str": "147699017067937792"}, +{"created_at": "Fri, 16 Dec 2011 15:27:08 +0000", "from_user": "ManningBooks", "from_user_id": 24914741, "from_user_id_str": "24914741", "from_user_name": "Manning Publications", "geo": null, "id": 147699283712409600, "id_str": "147699283712409601", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/386363365/uglyguy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/386363365/uglyguy_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "Brand new! We've started the MEAP of Hadoop in Practice! http://t.co/KyAqs6Hc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:26:04 +0000", "from_user": "cocoatomo", "from_user_id": 7590702, "from_user_id_str": "7590702", "from_user_name": "tomo", "geo": null, "id": 147699017067937800, "id_str": "147699017067937792", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1203705270/cbef4ed7-31d4-47a7-9e71-6316eead3ae4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1203705270/cbef4ed7-31d4-47a7-9e71-6316eead3ae4_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@shiumachi \\u304A\\u30FC\\u305D\\u308C\\u306F\\u3059\\u307E\\u3093. Hadoop \\u3067\\u6570\\u5B66\\u3068\\u8A00\\u3063\\u3066\\u3082, \\u4FFA\\u3084\\u3063\\u3066\\u305F\\u306E\\u7D14\\u7C8B\\u6570\\u5B66\\u3060\\u3063\\u305F\\u3057. \\u5FDC\\u7528 (\\u3068\\u547C\\u3070\\u308C\\u3066\\u305F\\u65B9) \\u306F\\u3042\\u3093\\u307E\\u308A\\u77E5\\u3089\\u3093\\u306E\\u3088.", "to_user": "shiumachi", "to_user_id": 11370182, "to_user_id_str": "11370182", "to_user_name": "Sho Shimauchi", "in_reply_to_status_id": 147698431111073800, "in_reply_to_status_id_str": "147698431111073792"}, +{"created_at": "Fri, 16 Dec 2011 15:25:23 +0000", "from_user": "inquire", "from_user_id": 14387034, "from_user_id_str": "14387034", "from_user_name": "inquire", "geo": null, "id": 147698845403455500, "id_str": "147698845403455488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/479402044/we_start_today_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/479402044/we_start_today_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "It's such a bad idea that Apache's Hadoop examples all use the deprecated API! #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:21:02 +0000", "from_user": "cocoatomo", "from_user_id": 7590702, "from_user_id_str": "7590702", "from_user_name": "tomo", "geo": null, "id": 147697749863833600, "id_str": "147697749863833600", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1203705270/cbef4ed7-31d4-47a7-9e71-6316eead3ae4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1203705270/cbef4ed7-31d4-47a7-9e71-6316eead3ae4_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\\u8272\\u3005\\u3042\\u305F\\u3075\\u305F\\u3057\\u306A\\u304C\\u3089\\u66F8\\u3044\\u305F. > \\u6700\\u3082\\u901F\\u304F Hadoop \\u74B0\\u5883\\u3092\\u624B\\u306B\\u5165\\u308C\\u308B\\u65B9\\u6CD5 - Elliptium http://t.co/QlM9Ymmy via @cocoatomo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:20:28 +0000", "from_user": "cocoatomo", "from_user_id": 7590702, "from_user_id_str": "7590702", "from_user_name": "tomo", "geo": null, "id": 147697606519291900, "id_str": "147697606519291906", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1203705270/cbef4ed7-31d4-47a7-9e71-6316eead3ae4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1203705270/cbef4ed7-31d4-47a7-9e71-6316eead3ae4_normal.png", "source": "<a href="http://www.zusaar.com/" rel="nofollow">Zusaar</a>", "text": "16\\u65E5\\u76EE\\u306E\\u65B9\\u304C\\u3044\\u305F\\u306E\\u3092\\u5FD8\\u308C\\u3066\\u307E\\u3057\\u305F. 15\\u65E5\\u76EE\\u3068\\u3057\\u3066\\u63D0\\u51FA\\u3057\\u307E\\u3059. http://t.co/QlM9Ymmy / hadoop\\u30A2\\u30C9\\u30D9\\u30F3\\u30C8\\u30AB\\u30EC\\u30F3\\u30C0\\u30FC2011 http://t.co/SXMNbOav #zusaar", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:19:56 +0000", "from_user": "followbotlist", "from_user_id": 420104059, "from_user_id_str": "420104059", "from_user_name": "\\u3076\\u308D\\u3063\\u304F\\u308A\\u3059\\u3068", "geo": null, "id": 147697475661213700, "id_str": "147697475661213697", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twittbot.net/" rel="nofollow">twittbot.net</a>", "text": "C\\u8A00\\u8A9E/C++/C#/F#/PHP/Perl/Ruby/Python/Lisp/Prolog/ML/Haskell/HTML5/VB/Basic/\\u30A6\\u30A7\\u30D6\\u30C7\\u30B6\\u30A4\\u30F3/\\u30EC\\u30F3\\u30BF\\u30EB\\u30B5\\u30FC\\u30D0/CGI/\\u30BB\\u30AD\\u30E5\\u30EA\\u30C6\\u30A3/FLASH/Web/\\u30BD\\u30FC\\u30B7\\u30E3\\u30EB/SNS/\\u30B0\\u30EB\\u30FC\\u30D7\\u30A6\\u30A7\\u30A2/Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:17:07 +0000", "from_user": "Heart_Beacon", "from_user_id": 30452090, "from_user_id_str": "30452090", "from_user_name": "Steven J. McGee", "geo": null, "id": 147696763158020100, "id_str": "147696763158020096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/458196056/heartbeat_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/458196056/heartbeat_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "IBM Redbook, HADOOP, Fireflies -- google / bing / yahoo + heartbeat.. it just goes and goes... can do this all day..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:13:27 +0000", "from_user": "yellowmarker", "from_user_id": 14528222, "from_user_id_str": "14528222", "from_user_name": "Sanjay Yermalkar", "geo": null, "id": 147695843804327940, "id_str": "147695843804327936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/856500231/ubuntu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/856500231/ubuntu_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @deanwampler: I see a lot of people in the Hadoop world making silly mistakes and reinventing wheels because they don't know functional programming.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:07:47 +0000", "from_user": "myalltop_paul", "from_user_id": 216075147, "from_user_id_str": "216075147", "from_user_name": "MyAllTop - Cloud", "geo": null, "id": 147694416700772350, "id_str": "147694416700772353", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft Tries Hadoop on Azure http://t.co/8eqrAKhu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:07:05 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 147694240288346100, "id_str": "147694240288346112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure - SYS-CON Media (press release) http://t.co/p2STQA6X", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:05:19 +0000", "from_user": "indian4ever", "from_user_id": 33933574, "from_user_id_str": "33933574", "from_user_name": "Raj M", "geo": null, "id": 147693795394334720, "id_str": "147693795394334720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691330534/i4e_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691330534/i4e_logo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure: Cloud Computing: Microsoft Tries Hadoop on Azure is a post fro... http://t.co/9ipBbgAr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:03:51 +0000", "from_user": "sakuma1210", "from_user_id": 4943371, "from_user_id_str": "4943371", "from_user_name": "ryoSakuma", "geo": null, "id": 147693424785637380, "id_str": "147693424785637376", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1520336030/6adca2e3551e41afab4a7807cf97c518_6_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1520336030/6adca2e3551e41afab4a7807cf97c518_6_normal.jpeg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@tomochika_sato @yagi H\\u3055\\u3093\\u3068\\u304B\\u3082C\\u306B\\u62D8\\u3063\\u3066\\u307E\\u3059\\u304C\\u3001\\u4ECA\\u3060\\u3063\\u305F\\u3089\\u4E0B\\u624B\\u306BC\\u4F7F\\u3046\\u3088\\u308A\\u3001\\u30B3\\u30A2\\u6570\\u3068\\u304Bi/o\\u30DC\\u30C8\\u30EB\\u30CD\\u30C3\\u30AF\\u3068\\u304B\\u8003\\u3048\\u308B\\u3068\\u4E26\\u884C\\u51E6\\u7406\\u7CFB\\u306E\\u8A00\\u8A9E\\u3084hadoop\\u4F7F\\u3063\\u305F\\u307B\\u3046\\u304C\\u52B9\\u7387\\u7684\\u306A\\u3053\\u3068\\u591A\\u3044\\u3060\\u308D\\u3046\\u306B\\u3001\\u3068\\u304B\\u3002\\u8272\\u3005\\u601D\\u3044\\u307E\\u3059\\u306D\\u3002", "to_user": "tomochika_sato", "to_user_id": 127786912, "to_user_id_str": "127786912", "to_user_name": "\\u3068\\u3082\\u3061\\u304B@\\u3078\\u3063\\u307D\\u3053\\u30D7\\u30ED\\u30C7\\u30E5\\u30FC\\u30B5\\u30FC", "in_reply_to_status_id": 147692563149754370, "in_reply_to_status_id_str": "147692563149754368"}, +{"created_at": "Fri, 16 Dec 2011 15:03:45 +0000", "from_user": "markswall", "from_user_id": 19688728, "from_user_id_str": "19688728", "from_user_name": "Mark Wall", "geo": null, "id": 147693401125560320, "id_str": "147693401125560322", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676652683/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676652683/Untitled_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure http://t.co/294manp6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:03:44 +0000", "from_user": "markswall", "from_user_id": 19688728, "from_user_id_str": "19688728", "from_user_name": "Mark Wall", "geo": null, "id": 147693398785142800, "id_str": "147693398785142785", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676652683/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676652683/Untitled_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "When HANA meets Hadoop http://t.co/O9CTRiuu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:03:34 +0000", "from_user": "workinthecloud", "from_user_id": 38276261, "from_user_id_str": "38276261", "from_user_name": "WorkInTheCloud", "geo": null, "id": 147693355080499200, "id_str": "147693355080499200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/203756131/clouds-28_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/203756131/clouds-28_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Cloud Cloud Computing: Microsoft Tries Hadoop on Azure - SYS-CON Media (press release): SYS-CON Media (press re... http://t.co/oyHHgDsN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:01:13 +0000", "from_user": "Syncsort", "from_user_id": 119987616, "from_user_id_str": "119987616", "from_user_name": "Syncsort", "geo": null, "id": 147692765587841020, "id_str": "147692765587841024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/858340521/syncsort_profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/858340521/syncsort_profile_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "[BLOG] Keith Kohl provides more insight into our DMExpress 7.0 release and what that means for our users http://t.co/jQnUgiPC #hadoop #bi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:00:36 +0000", "from_user": "vkalavri", "from_user_id": 261216056, "from_user_id_str": "261216056", "from_user_name": "Vasia Kalavri", "geo": null, "id": 147692608163037200, "id_str": "147692608163037185", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1262822157/_sagrada_familia_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1262822157/_sagrada_familia_normal.jpeg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@kargig hmm.. how can I put it so that u understand? We'll need to have some beers! Keywords: hadoop hive&pig,java,compilers,stratosphere", "to_user": "kargig", "to_user_id": 19106962, "to_user_id_str": "19106962", "to_user_name": "George Kargiotakis", "in_reply_to_status_id": 147690668607815680, "in_reply_to_status_id_str": "147690668607815680"}, +{"created_at": "Fri, 16 Dec 2011 14:59:14 +0000", "from_user": "ITNewsNet", "from_user_id": 123008201, "from_user_id_str": "123008201", "from_user_name": "IT News Network", "geo": null, "id": 147692262594326530, "id_str": "147692262594326529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/752399623/IT_News_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/752399623/IT_News_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#MDM #News When HANA meets Hadoop: A Journey to Adaptive MDM - Adaptive master data management (MDM) solutions c... http://t.co/MPlaChOv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:59:13 +0000", "from_user": "TheMDMNetwork", "from_user_id": 67768214, "from_user_id_str": "67768214", "from_user_name": "Madam", "geo": null, "id": 147692261533171700, "id_str": "147692261533171712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/374977493/sassy_lassy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/374977493/sassy_lassy_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#MDM #News When HANA meets Hadoop: A Journey to Adaptive MDM - Adaptive master data management (MDM) solutions c... http://t.co/8N2ZNnWQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:56:05 +0000", "from_user": "acroquest", "from_user_id": 365251149, "from_user_id_str": "365251149", "from_user_name": "Acroquest Technology", "geo": null, "id": 147691473079509000, "id_str": "147691473079508993", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1552942520/acroquest_logo2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552942520/acroquest_logo2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\u30D5\\u30ED\\u30F3\\u30C8SE\\u306E\\u304A\\u4ED5\\u4E8B\\uFF08OSS\\u3092\\u5229\\u7528\\u3057\\u305F\\u63D0\\u6848\\uFF09: \\u3053\\u3093\\u3070\\u3093\\u306F\\u3002\\n\\u00A0\\n\\u667A's Daddy\\u3067\\u3059\\u3002\\n\\u00A0\\n\\u79C1\\u306E\\u4ED5\\u4E8B\\u306F\\u3001\\u30D5\\u30ED\\u30F3\\u30C8\\uFF33\\uFF25\\u3067\\u3059\\u3002\\n\\u00A0\\nHadoop\\u304C\\u6CE8\\u76EE\\u3092\\u96C6\\u3081\\u3066\\u3044\\u307E\\u3059\\u304C\\u3001Hadoop\\u3060\\u3051\\u3067\\u306F\\u306A\\u304F\\u305D\\u306E\\u4ED6\\u306EOSS\\uFF08\\u30AA\\u30FC\\u30D7\\u30F3\\u30BD\\u30FC\\u30B9\\u30BD... http://t.co/1kwjJvCY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:56:04 +0000", "from_user": "d8Pit", "from_user_id": 264394701, "from_user_id_str": "264394701", "from_user_name": "The URL Popularizer", "geo": null, "id": 147691468281229300, "id_str": "147691468281229312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317284522/logo-header_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317284522/logo-header_normal.png", "source": "<a href="http://d8p.it" rel="nofollow">d8P</a>", "text": "RT @grbeaumont: Video Introduction to the #Hadoop on #Azure Interactive #JavaScript Console #BigData | http://t.co/UZ3V3dAj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:55:53 +0000", "from_user": "INFAIM", "from_user_id": 145062108, "from_user_id_str": "145062108", "from_user_name": "Julianna DeLua (EIM)", "geo": null, "id": 147691423515418620, "id_str": "147691423515418624", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @jakkigeiger: Parsing #Bigdata in #Hparser @Informatica http://t.co/UJINeSBf Article by @neilraden via @constellationRG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:55:46 +0000", "from_user": "INFAIM", "from_user_id": 145062108, "from_user_id_str": "145062108", "from_user_name": "Julianna DeLua (EIM)", "geo": null, "id": 147691393861681150, "id_str": "147691393861681152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1388689665/New_Picture_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @jakkigeiger: 30 day trial version http://t.co/QArXHHpk @informaticacorp #hparser, the new parsing technology for #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:54:59 +0000", "from_user": "pprett", "from_user_id": 15004077, "from_user_id_str": "15004077", "from_user_name": "pprett", "geo": null, "id": 147691196603568130, "id_str": "147691196603568130", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1152751417/gravatar_checkerboard_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1152751417/gravatar_checkerboard_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @josephreisinger: Glimmers of a _real_ machine learning system for Hadoop via vw allreduce http://t.co/4Pskbuwd \\n#NIPS2011 big learning http://t.co/zT7X3rJi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:53:55 +0000", "from_user": "cloudtimesorg", "from_user_id": 206781695, "from_user_id_str": "206781695", "from_user_name": "CloudTimes", "geo": null, "id": 147690925768982530, "id_str": "147690925768982529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1151349803/ct_fav2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1151349803/ct_fav2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure - SYS-CON Media (press release): SYS-CON Media (pr... http://t.co/xZ14yqSB #cloud #news", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:51:37 +0000", "from_user": "Cloud_Geek", "from_user_id": 198159985, "from_user_id_str": "198159985", "from_user_name": "CloudGeek", "geo": null, "id": 147690348817297400, "id_str": "147690348817297410", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1335104403/Picture_001-a4t-_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335104403/Picture_001-a4t-_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure - SYS-CON Media (press release) http://t.co/NcCd7t5U", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:50:58 +0000", "from_user": "grbeaumont", "from_user_id": 204075529, "from_user_id_str": "204075529", "from_user_name": "Greg Beaumont", "geo": null, "id": 147690185876975600, "id_str": "147690185876975616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1152669586/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1152669586/profile_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Video Introduction to the #Hadoop on #Azure Interactive #JavaScript Console http://t.co/cLsH76hZ #BigData", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:45:20 +0000", "from_user": "burnside_", "from_user_id": 435089792, "from_user_id_str": "435089792", "from_user_name": " Michael Burnside", "geo": null, "id": 147688768193822720, "id_str": "147688768193822722", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1689330013/11_12_12_MichaelBurnside_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689330013/11_12_12_MichaelBurnside_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure - SYS-CON Media (press release) http://t.co/zXwa3YdU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:44:22 +0000", "from_user": "BINewsWire", "from_user_id": 92127332, "from_user_id_str": "92127332", "from_user_name": "BINewsWire", "geo": null, "id": 147688524739649540, "id_str": "147688524739649538", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/545905035/bi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/545905035/bi_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure - SYS-CON Media (press release) http://t.co/oclmXDlh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:41:45 +0000", "from_user": "hfcci", "from_user_id": 88012852, "from_user_id_str": "88012852", "from_user_name": "HFCC Institute", "geo": null, "id": 147687863029469200, "id_str": "147687863029469185", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/520051496/HFCCI_LOGO1_small_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/520051496/HFCCI_LOGO1_small_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure - SYS-CON Media (press release) http://t.co/LCbnlYNj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:41:13 +0000", "from_user": "bramroeland", "from_user_id": 234757479, "from_user_id_str": "234757479", "from_user_name": "Bram Roeland", "geo": null, "id": 147687729361195000, "id_str": "147687729361195008", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1292444989/profilepic_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1292444989/profilepic_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @mars_chat: Bam! En de volgende Hadoop certificering is binnen! @bramroeland proficiat @Incentro_ Big Data specialist", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:40:06 +0000", "from_user": "TechnoMile", "from_user_id": 89779407, "from_user_id_str": "89779407", "from_user_name": "TechnoMile LLC", "geo": null, "id": 147687449806635000, "id_str": "147687449806635008", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1187113101/techomile_normal_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1187113101/techomile_normal_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azurehttp://twitter.com/allcloudnews: Cloud Computing: Microsoft Trie... http://t.co/xmZ41cKk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:37:47 +0000", "from_user": "MarilynMoux", "from_user_id": 20026961, "from_user_id_str": "20026961", "from_user_name": "Marilyn Moux", "geo": null, "id": 147686865150029820, "id_str": "147686865150029825", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1312851382/marilyn_photo_2011_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312851382/marilyn_photo_2011_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure @CloudExpo #Cloud #CloudExpo #BigData", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:36:13 +0000", "from_user": "guui_me", "from_user_id": 150436464, "from_user_id_str": "150436464", "from_user_name": "Guilherme Meinhardt", "geo": null, "id": 147686471380373500, "id_str": "147686471380373504", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1223901748/P291210_16.16__03__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1223901748/P291210_16.16__03__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @allcloudnews: Cloud Computing: Microsoft Tries Hadoop on Azure", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:35:32 +0000", "from_user": "allcloudnews", "from_user_id": 279338038, "from_user_id_str": "279338038", "from_user_name": "allcloudnews", "geo": null, "id": 147686299170639870, "id_str": "147686299170639874", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:32:45 +0000", "from_user": "ecolint", "from_user_id": 64603367, "from_user_id_str": "64603367", "from_user_name": "Lee Tae Ho(\\uC774\\uD0DC\\uD638)", "geo": null, "id": 147685598684127230, "id_str": "147685598684127232", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/667184261/thlee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/667184261/thlee_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @cloudysaas: Cloud Computing: Microsoft Tries Hadoop on Azure http://t.co/wzbdUhJv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:30:51 +0000", "from_user": "josephreisinger", "from_user_id": 56843433, "from_user_id_str": "56843433", "from_user_name": "joseph reisinger", "geo": null, "id": 147685123272351740, "id_str": "147685123272351745", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1279696513/222_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1279696513/222_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Glimmers of a _real_ machine learning system for Hadoop via vw allreduce http://t.co/4Pskbuwd \\n#NIPS2011 big learning http://t.co/zT7X3rJi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:30:28 +0000", "from_user": "BigDataClouds", "from_user_id": 401391920, "from_user_id_str": "401391920", "from_user_name": "Big Data Clouds", "geo": null, "id": 147685023217233920, "id_str": "147685023217233921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1613841395/CloudBigData-300x239-resized-600_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1613841395/CloudBigData-300x239-resized-600_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure - Soa Wolrd: It gives Azure Big Data capabiliti... http://t.co/GFgbOZVj #bigdata #cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:30:25 +0000", "from_user": "Cloud_Analytics", "from_user_id": 213668992, "from_user_id_str": "213668992", "from_user_name": "Cloud Analytics", "geo": null, "id": 147685013754888200, "id_str": "147685013754888193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1341626314/cloud-computing_analytics_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1341626314/cloud-computing_analytics_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure - Soa Wolrd: It gives Azure Big Data capabili... http://t.co/lN5XuvAX #Cloud #Analytics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Fri, 16 Dec 2011 14:21:47 +0000", "from_user": "enterprise4c", "from_user_id": 426729470, "from_user_id_str": "426729470", "from_user_name": "enterprise4c", "geo": null, "id": 147682841612914700, "id_str": "147682841612914689", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1669844035/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669844035/images_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure: Microsoft added a trial version of Apache\\u2019s open source Hadoop... http://t.co/6cTuPpZJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:21:47 +0000", "from_user": "vojinurosevic", "from_user_id": 76060489, "from_user_id_str": "76060489", "from_user_name": "Vojin Urosevic \\u6C83\\u56E0 ", "geo": null, "id": 147682840576929800, "id_str": "147682840576929792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/447217797/Vojins_picture_hvar_normal.bmp", "profile_image_url_https": "https://si0.twimg.com/profile_images/447217797/Vojins_picture_hvar_normal.bmp", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloud Computing: Microsoft Tries Hadoop on Azure: Microsoft added a trial version of Apache\\u2019s open source Hadoop... http://t.co/C3bBioIr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:21:47 +0000", "from_user": "HowToCloud", "from_user_id": 229211023, "from_user_id_str": "229211023", "from_user_name": "HowToCloud.de ", "geo": null, "id": 147682837905158140, "id_str": "147682837905158144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1206537445/logofacebook_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1206537445/logofacebook_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "HowToCloud.de Cloud Computing: Microsoft Tries Hadoop on Azure: Microsoft added a trial version ... http://t.co/3Ibil5qP #CloudComputing", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:21:46 +0000", "from_user": "TheCloudNetwork", "from_user_id": 24609329, "from_user_id_str": "24609329", "from_user_name": "The Cloud Network ", "geo": null, "id": 147682837074681860, "id_str": "147682837074681856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1576230067/97143_matter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576230067/97143_matter_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Cloud #News Cloud Computing: Microsoft Tries Hadoop on Azure: Microsoft added a trial version of Apache\\u2019s ... http://t.co/0paeLYry #TCN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:20:31 +0000", "from_user": "TedC", "from_user_id": 8986692, "from_user_id_str": "8986692", "from_user_name": "TedC", "geo": null, "id": 147682521977593860, "id_str": "147682521977593858", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1463591993/ProfilePic_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1463591993/ProfilePic_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @strataconf: Five Big Data predictions for 2012 http://t.co/0no2xN8g via @radar #bigdata #visualization #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:19:08 +0000", "from_user": "ansmt", "from_user_id": 120515827, "from_user_id_str": "120515827", "from_user_name": "Andy Smith", "geo": null, "id": 147682174273994750, "id_str": "147682174273994752", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1131917324/676_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1131917324/676_normal.gif", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "When HANA meets Hadoop http://t.co/Xi1LVdav", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:16:21 +0000", "from_user": "OCVC", "from_user_id": 5911402, "from_user_id_str": "5911402", "from_user_name": "Marc Averitt", "geo": null, "id": 147681473644863500, "id_str": "147681473644863488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1437668582/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1437668582/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @AlexOlesker: This was one of my first posts on @ctovision and I still like it as an intro to Hadoop and Big Data: http://t.co/Cf3Et9Pf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:08:50 +0000", "from_user": "himskim", "from_user_id": 48746853, "from_user_id_str": "48746853", "from_user_name": "\\uAE40\\uBA85\\uC2E0", "geo": null, "id": 147679582433189900, "id_str": "147679582433189888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/415571755/MyImg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/415571755/MyImg_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @AzureCloudNet: #Azure #Cloud Microsoft Tries Hadoop on Azure - Soa Wolrd: Microsoft added a trial version of Apache's open... http://t.co/9tOIPbvP #TCN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:07:53 +0000", "from_user": "VirtualizationE", "from_user_id": 18939157, "from_user_id_str": "18939157", "from_user_name": "Virtualization Expo", "geo": null, "id": 147679341084545020, "id_str": "147679341084545025", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/70929050/STORY_GRAPHIC_HUGE_VIRTUALIZATION_NEW_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/70929050/STORY_GRAPHIC_HUGE_VIRTUALIZATION_NEW_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MaureenOGara: Microsoft Tries Hadoop on Azure \\u25B8 http://t.co/DEthVr1m @Ulitzer #Cloud #CloudExpo #CloudComputing #BigData @CloudExpo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:07:39 +0000", "from_user": "Ulitzer", "from_user_id": 18791290, "from_user_id_str": "18791290", "from_user_name": "Ulitzer.com", "geo": null, "id": 147679282272026620, "id_str": "147679282272026625", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/745317755/Ulitzer_Logo_100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/745317755/Ulitzer_Logo_100_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MaureenOGara: Microsoft Tries Hadoop on Azure \\u25B8 http://t.co/DEthVr1m @Ulitzer #Cloud #CloudExpo #CloudComputing #BigData @CloudExpo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:07:21 +0000", "from_user": "sysconmedia", "from_user_id": 36339779, "from_user_id_str": "36339779", "from_user_name": "SYS-CON Media", "geo": null, "id": 147679207697301500, "id_str": "147679207697301504", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/745331242/SYS-CON_Media_Logo_100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/745331242/SYS-CON_Media_Logo_100_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MaureenOGara: Microsoft Tries Hadoop on Azure \\u25B8 http://t.co/DEthVr1m @Ulitzer #Cloud #CloudExpo #CloudComputing #BigData @CloudExpo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:07:03 +0000", "from_user": "SOAWorldExpo", "from_user_id": 18906552, "from_user_id_str": "18906552", "from_user_name": "SOA in the Cloud", "geo": null, "id": 147679133831413760, "id_str": "147679133831413760", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/70794220/STORY_GRAPHIC_HUGE_SOA_NEW_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/70794220/STORY_GRAPHIC_HUGE_SOA_NEW_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MaureenOGara: Microsoft Tries Hadoop on Azure \\u25B8 http://t.co/DEthVr1m @Ulitzer #Cloud #CloudExpo #CloudComputing #BigData @CloudExpo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:06:48 +0000", "from_user": "cfoundryexpo", "from_user_id": 281174670, "from_user_id_str": "281174670", "from_user_name": "Cloud Foundry Summit", "geo": null, "id": 147679067162947600, "id_str": "147679067162947585", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1309359449/Cloud_Foundry_Summit_100_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1309359449/Cloud_Foundry_Summit_100_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MaureenOGara: Microsoft Tries Hadoop on Azure \\u25B8 http://t.co/DEthVr1m @Ulitzer #Cloud #CloudExpo #CloudComputing #BigData @CloudExpo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:06:23 +0000", "from_user": "CloudJobFair", "from_user_id": 153415247, "from_user_id_str": "153415247", "from_user_name": "Cloud Expo Job Fair", "geo": null, "id": 147678964759007230, "id_str": "147678964759007232", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1020913034/Cloud_Job_Fair_Logo_200_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1020913034/Cloud_Job_Fair_Logo_200_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MaureenOGara: Microsoft Tries Hadoop on Azure \\u25B8 http://t.co/DEthVr1m @Ulitzer #Cloud #CloudExpo #CloudComputing #BigData @CloudExpo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:05:54 +0000", "from_user": "felixaverlant", "from_user_id": 26585636, "from_user_id_str": "26585636", "from_user_name": "F\\u00E9lix Averlant", "geo": null, "id": 147678843602346000, "id_str": "147678843602345987", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1155182036/1f31ece4-b0be-4818-80df-6e66bfadd721_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1155182036/1f31ece4-b0be-4818-80df-6e66bfadd721_normal.png", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "http://t.co/cfw2A7zi Hadoop and Cassandra in the Top 10 Most Important Open Source Projects of 2011", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:05:29 +0000", "from_user": "AzureCloudNet", "from_user_id": 92151837, "from_user_id_str": "92151837", "from_user_name": "Azure Cloud Network", "geo": null, "id": 147678737444511740, "id_str": "147678737444511745", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1218573122/Windows_Asure_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218573122/Windows_Asure_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Azure #Cloud Microsoft Tries Hadoop on Azure - Soa Wolrd: Microsoft added a trial version of Apache's open... http://t.co/9tOIPbvP #TCN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:05:16 +0000", "from_user": "shaneschick", "from_user_id": 17519194, "from_user_id_str": "17519194", "from_user_name": "Shane Schick", "geo": null, "id": 147678682419441660, "id_str": "147678682419441664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1158138066/Shane_Schick_2010_Headshot_Small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1158138066/Shane_Schick_2010_Headshot_Small_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "When HANA meets Hadoop: http://t.co/rlcZJWqO My final story from this week's #sapsummit", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:03:58 +0000", "from_user": "bigdatajobs", "from_user_id": 343011637, "from_user_id_str": "343011637", "from_user_name": "Big Data Jobs", "geo": null, "id": 147678356387790850, "id_str": "147678356387790849", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#Job Senior DBA- Big Data Hadoop at Demandforce (San Francisco, CA) http://t.co/64J1dwe2 #bigdata #cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:00:54 +0000", "from_user": "JKnulst", "from_user_id": 376360866, "from_user_id_str": "376360866", "from_user_name": "Jasper Knulst", "geo": null, "id": 147677585499893760, "id_str": "147677585499893760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1550467260/Fotoshoot_vierkant_78_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1550467260/Fotoshoot_vierkant_78_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @bramroeland: \"Congratulations! You have passed the Cloudera Certified Developer for Apache Hadoop exam\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:59:18 +0000", "from_user": "00mb", "from_user_id": 5870022, "from_user_id_str": "5870022", "from_user_name": "Marc Boucher", "geo": null, "id": 147677179675815940, "id_str": "147677179675815936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1357145844/mb_qestion_sts134_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1357145844/mb_qestion_sts134_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "I remember early days of Hadoop. It was so messy, how things have changed- Five big data predictions for 2012 http://t.co/9E876ZKs #Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:58:40 +0000", "from_user": "scottdunlop", "from_user_id": 25550110, "from_user_id_str": "25550110", "from_user_name": "Scott Dunlop", "geo": null, "id": 147677021290500100, "id_str": "147677021290500096", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/104874078/blogscott_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/104874078/blogscott_normal.jpg", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Big data Software Engineers - Java, RoR, Hadoop, Cassandra, Solr, Machine Learning - start... http://t.co/sjCuNt3v #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:57:46 +0000", "from_user": "CloudWorkforce", "from_user_id": 96427890, "from_user_id_str": "96427890", "from_user_name": "Cloud-Workforce", "geo": null, "id": 147676795511128060, "id_str": "147676795511128065", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1276932526/Twitter_Icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1276932526/Twitter_Icon_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft Tries Hadoop on Azure http://t.co/fSiv0qZO #cloudcomputing", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:57:03 +0000", "from_user": "KiteVC", "from_user_id": 1121181, "from_user_id_str": "1121181", "from_user_name": "Bill Tai", "geo": null, "id": 147676615336398850, "id_str": "147676615336398848", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/296672253/twitter_avatar_btai_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/296672253/twitter_avatar_btai_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @pomu0325: Treasure Data\\u3002hadoop\\u4F7F\\u3063\\u305Fbigdata\\u51E6\\u7406\\u306E\\u30B5\\u30FC\\u30D3\\u30B9 #cfj11", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:52:23 +0000", "from_user": "mars_chat", "from_user_id": 111609379, "from_user_id_str": "111609379", "from_user_name": "Marcel Naumann", "geo": null, "id": 147675441417814000, "id_str": "147675441417814017", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1586768229/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586768229/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Bam! En de volgende Hadoop certificering is binnen! @bramroeland proficiat @Incentro_ Big Data specialist", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:49:46 +0000", "from_user": "FiveAR", "from_user_id": 223872307, "from_user_id_str": "223872307", "from_user_name": "Petar Jovevski", "geo": null, "id": 147674783545430000, "id_str": "147674783545430016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677945621/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677945621/avatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Hadoop The Definitive Guide is in the house", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:47:37 +0000", "from_user": "fimbul11", "from_user_id": 89163293, "from_user_id_str": "89163293", "from_user_name": "\\u30FE\\uFF9C\\uFF20\\u2312\\u30FC\\u2312\\uFF20\\uFF76\\u30CE", "geo": null, "id": 147674241368727550, "id_str": "147674241368727552", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1661036316/e5fa4764-83b7-425c-9b65-06cd8354af17_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661036316/e5fa4764-83b7-425c-9b65-06cd8354af17_normal.png", "source": "<a href="http://www.tweenapp.org/" rel="nofollow">Tween</a>", "text": "C++\\u3068Lua\\u3068Rails\\u3068Javascript\\u3068Hadoop\\u3084\\u308B\\u3067\\u3047", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:44:52 +0000", "from_user": "tuxtux", "from_user_id": 5663352, "from_user_id_str": "5663352", "from_user_name": "Joel Westerberg", "geo": null, "id": 147673549212106750, "id_str": "147673549212106752", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1268177999/Screen_shot_2011-03-10_at_22.29.06_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1268177999/Screen_shot_2011-03-10_at_22.29.06_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@psvensson Jag tror att de \\u00E4r r\\u00E4tt f\\u00E5 i SE som verkligen har nytta av hadoop, man m\\u00E5ste ha s\\u00E5 sjukt mycket data f\\u00F6r att det skall vara v\\u00E4rt.", "to_user": "psvensson", "to_user_id": 9704372, "to_user_id_str": "9704372", "to_user_name": "psvensson", "in_reply_to_status_id": 147672096670105600, "in_reply_to_status_id_str": "147672096670105600"}, +{"created_at": "Fri, 16 Dec 2011 13:41:42 +0000", "from_user": "openbillc", "from_user_id": 224331314, "from_user_id_str": "224331314", "from_user_name": "OpenBI, LLC", "geo": null, "id": 147672754282438660, "id_str": "147672754282438656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1185751352/openbi_icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1185751352/openbi_icon_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @cloudera: Video & slides available for the webinar \"Hadoop Management Made Easy with Cloudera Enterprise 3.7\" http://t.co/Ta9cMK8s", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:39:06 +0000", "from_user": "psvensson", "from_user_id": 9704372, "from_user_id_str": "9704372", "from_user_name": "psvensson", "geo": null, "id": 147672096670105600, "id_str": "147672096670105600", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/54524576/psvensson_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/54524576/psvensson_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "@tuxtux Nej, blev inget Hadoop, hade f\\u00F6r m\\u00E5nga \\u00E4gg p\\u00E5 n\\u00E4san som det var.", "to_user": "tuxtux", "to_user_id": 5663352, "to_user_id_str": "5663352", "to_user_name": "Joel Westerberg", "in_reply_to_status_id": 147669815966957570, "in_reply_to_status_id_str": "147669815966957568"}, +{"created_at": "Fri, 16 Dec 2011 13:38:55 +0000", "from_user": "RengEDV", "from_user_id": 377068445, "from_user_id_str": "377068445", "from_user_name": "Reng-EDV", "geo": null, "id": 147672052902531070, "id_str": "147672052902531072", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1552304297/rengedv3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552304297/rengedv3_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Ubuntu, Hadoop, Cloud, Clusterinstallationen. Hardware und Dienstleistungen, Programmierung, Amazon EC2. Fragen an info@reng-edv.de", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:29:53 +0000", "from_user": "bramroeland", "from_user_id": 234757479, "from_user_id_str": "234757479", "from_user_name": "Bram Roeland", "geo": null, "id": 147669779401015300, "id_str": "147669779401015296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1292444989/profilepic_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1292444989/profilepic_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "\"Congratulations! You have passed the Cloudera Certified Developer for Apache Hadoop exam\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:29:51 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 147669769234030600, "id_str": "147669769234030592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @cloudera: Video & slides available for the webinar \"Hadoop Management Made Easy with Cloudera Enterprise 3.7\" http://t.co/FhRQHTGt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:29:30 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 147669681917001730, "id_str": "147669681917001729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://identi.ca" rel="nofollow">identica</a>", "text": "RT @ijeyanthan: GoldenOrb is a cloud-based open source project for massive-scale graph analysis .. http://t.co/AKqRyWji #hadoop #JustKnew", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:27:04 +0000", "from_user": "allister35", "from_user_id": 16738522, "from_user_id_str": "16738522", "from_user_name": "Al Richardson", "geo": null, "id": 147669068231610370, "id_str": "147669068231610368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1633846773/CIMG1669rev1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633846773/CIMG1669rev1_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "@mikejulietbravo IBM infosphere big insights it's based on Hadoop I believe. Can point you to techie who knows.", "to_user": "mikejulietbravo", "to_user_id": 42609957, "to_user_id_str": "42609957", "to_user_name": "Mike Briercliffe", "in_reply_to_status_id": 147662139300126720, "in_reply_to_status_id_str": "147662139300126720"}, +{"created_at": "Fri, 16 Dec 2011 13:22:28 +0000", "from_user": "tashrif87", "from_user_id": 218768270, "from_user_id_str": "218768270", "from_user_name": "Ahmad Tashrif", "geo": null, "id": 147667911815860220, "id_str": "147667911815860224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1477015874/pitbull_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1477015874/pitbull_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "CYGWIN! Y U NO PLAY NICE WITH HADOOP!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:13:28 +0000", "from_user": "apache_install", "from_user_id": 370536013, "from_user_id_str": "370536013", "from_user_name": "Joseph S McCloud", "geo": null, "id": 147665647906730000, "id_str": "147665647906729984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1535449514/Joseph_McCloud_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1535449514/Joseph_McCloud_normal.jpg", "source": "<a href="http://ping.fm/" rel="nofollow">Ping.fm</a>", "text": "Hadoop Email Archiving by avineshp - Hi, We are looking a a really brilliant Hadoop Developer to custom build a n... http://t.co/sWZ7Jtw7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:11:11 +0000", "from_user": "mdesilver", "from_user_id": 19084074, "from_user_id_str": "19084074", "from_user_name": "Michael DeSilver", "geo": null, "id": 147665071634522100, "id_str": "147665071634522112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/75483350/IMG_3093_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/75483350/IMG_3093_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@dguyadeen I'm pretty sure the dam has been broken. MSFT already is the 3rd largest contributor to Linux. SMB, Hadoop are only the beginning", "to_user": "dguyadeen", "to_user_id": 22665665, "to_user_id_str": "22665665", "to_user_name": "Denis Guyadeen", "in_reply_to_status_id": 147495732625158140, "in_reply_to_status_id_str": "147495732625158145"}, +{"created_at": "Fri, 16 Dec 2011 13:04:28 +0000", "from_user": "stackfeed", "from_user_id": 237310237, "from_user_id_str": "237310237", "from_user_name": "StackOverflow", "geo": null, "id": 147663382940626940, "id_str": "147663382940626944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Run Hadoop Application: Can a Hadoop App be booted on any one of the cluster nodes, irrelvantly to the node type... http://t.co/asM83Ndw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:02:46 +0000", "from_user": "jplonie", "from_user_id": 17358002, "from_user_id_str": "17358002", "from_user_name": "jp", "geo": null, "id": 147662955306168320, "id_str": "147662955306168321", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1537005258/37E2DCE3-00DB-4C49-9393-71F4121A8BA8_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1537005258/37E2DCE3-00DB-4C49-9393-71F4121A8BA8_normal", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "why isn't the cleanup of my music collection, just one big f-off Hadoop map reduce", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:56:36 +0000", "from_user": "Erick_782", "from_user_id": 317777254, "from_user_id_str": "317777254", "from_user_name": "Erick Acevedo", "geo": null, "id": 147661402197340160, "id_str": "147661402197340160", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1653093656/P1090534_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653093656/P1090534_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Windows #Azure aloja c\\u00F3digo abierto (Hadoop) y m\\u00E1s http://t.co/tKSr2jMi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:56:20 +0000", "from_user": "Nerdjob", "from_user_id": 252977036, "from_user_id_str": "252977036", "from_user_name": "Nerdjob", "geo": null, "id": 147661337235947520, "id_str": "147661337235947520", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1252355030/Avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1252355030/Avatar_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure: Microsoft hat seinen Cloud-Dienst Azure unter anderem... http://t.co/rdZhDwh3 #itnews", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:50:08 +0000", "from_user": "yldosx", "from_user_id": 338619652, "from_user_id_str": "338619652", "from_user_name": "Dennis Fua", "geo": null, "id": 147659775524601860, "id_str": "147659775524601856", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Microsoft drops Dryad; puts its big-data bets on Hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:48:31 +0000", "from_user": "reputa_india", "from_user_id": 265834202, "from_user_id_str": "265834202", "from_user_name": "Reputa India", "geo": null, "id": 147659368509349900, "id_str": "147659368509349888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1283445555/2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1283445555/2_normal.jpg", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "URGENT Requirement : Hiring Hadoop Architect (2+ year contract position) required in Pune ... http://t.co/vOClurNS #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:43:43 +0000", "from_user": "fujiyamakazu", "from_user_id": 98878436, "from_user_id_str": "98878436", "from_user_name": "\\u85E4\\u5C71\\u548C\\u5F66", "geo": null, "id": 147658160528822270, "id_str": "147658160528822272", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/637057618/___3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/637057618/___3_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @wyukawa: /etc/default/hadoop-0.20\\u306B\\u30C7\\u30FC\\u30E2\\u30F3\\u8D77\\u52D5\\u30E6\\u30FC\\u30B6\\u304C\\u66F8\\u304B\\u308C\\u3066\\u3044\\u308B\\u306E\\u304B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:42:30 +0000", "from_user": "tshrinivasan", "from_user_id": 44962404, "from_user_id_str": "44962404", "from_user_name": "shrinivasan", "geo": null, "id": 147657854671794180, "id_str": "147657854671794178", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1258506412/shrini-bw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1258506412/shrini-bw_normal.jpg", "source": "<a href="http://identi.ca" rel="nofollow">identica</a>", "text": "RT @ijeyanthan: GoldenOrb is a cloud-based open source project for massive-scale graph analysis .. http://t.co/AKqRyWji #hadoop #JustKnew", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:15:06 +0000", "from_user": "shorelineint", "from_user_id": 121514862, "from_user_id_str": "121514862", "from_user_name": "shorelineinteractive", "geo": null, "id": 147650959533813760, "id_str": "147650959533813760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1592376748/Si-ProfilePicture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592376748/Si-ProfilePicture_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloudera gets proactive with Hadoop management: Cloudera seeks to differentiate itself in the increasingly crowd... http://t.co/n9pvEnUI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:35:49 +0000", "from_user": "muenchenreport", "from_user_id": 195017114, "from_user_id_str": "195017114", "from_user_name": "M\\u00FCnchen Reporter", "geo": null, "id": 147641071382429700, "id_str": "147641071382429696", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1131015347/cam_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1131015347/cam_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#news Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure: Microsoft hat seinen Cloud-Dienst Azure un... http://t.co/7LgIk2fJ #nachrichten", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:32:21 +0000", "from_user": "netletter", "from_user_id": 156917051, "from_user_id_str": "156917051", "from_user_name": "net-run GmbH", "geo": null, "id": 147640202142285820, "id_str": "147640202142285824", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1438231308/nr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1438231308/nr_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "heiseonline: RT @iXmagazin: Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure http://t.co/HpRPZQJg http://t.co/d2qIkByq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:29:58 +0000", "from_user": "Nasentroll", "from_user_id": 81356905, "from_user_id_str": "81356905", "from_user_name": "Tobias Schindegger", "geo": null, "id": 147639599676653570, "id_str": "147639599676653568", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1409231563/DSC06650_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1409231563/DSC06650_normal.JPG", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Nasentroll: Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure: Microsoft hat seinen Cloud\\u2026 http://t.co/JHQKKnXD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:24:16 +0000", "from_user": "nerdfeed", "from_user_id": 85053924, "from_user_id_str": "85053924", "from_user_name": "Feeds for nerds", "geo": null, "id": 147638165832876030, "id_str": "147638165832876032", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure: Microsoft hat seinen Cloud-Dienst Azure unter and... http://t.co/wpR5u9Cl (via Heise)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:22:31 +0000", "from_user": "Monsieur_Lexi", "from_user_id": 183850883, "from_user_id_str": "183850883", "from_user_name": "Monsieur_Lexi", "geo": null, "id": 147637727167385600, "id_str": "147637727167385600", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1547660887/Tage_Social_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1547660887/Tage_Social_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "News: Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure: Microsoft hat seinen Cloud-Dienst Azure un... http://t.co/kRMU0ae8 #heiseonline", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:22:26 +0000", "from_user": "news_from_heise", "from_user_id": 257361032, "from_user_id_str": "257361032", "from_user_name": "Mark Fischer", "geo": null, "id": 147637703150813200, "id_str": "147637703150813184", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1254548005/sap_modus_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1254548005/sap_modus_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure: Microsoft hat seinen Cloud-Dienst Azure unter anderem ... http://t.co/YR5fCXsX #heise", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:19:59 +0000", "from_user": "chrisalu", "from_user_id": 80834855, "from_user_id_str": "80834855", "from_user_name": "von chrisalu", "geo": null, "id": 147637087171133440, "id_str": "147637087171133440", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1617161571/index_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1617161571/index_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure: Microsoft hat seinen Cloud-Dienst Azure unter anderem um neue... http://t.co/b1MkodtY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:15:14 +0000", "from_user": "Swisspex", "from_user_id": 266469387, "from_user_id_str": "266469387", "from_user_name": "Swisspex GmbH", "geo": null, "id": 147635891354087420, "id_str": "147635891354087424", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1273320807/Logo_Swisspex_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273320807/Logo_Swisspex_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure: Microsoft hat seinen Cloud-Dienst Azure unter anderem um neue... http://t.co/7pZHWnaZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:12:45 +0000", "from_user": "pasiona", "from_user_id": 266535423, "from_user_id_str": "266535423", "from_user_name": "pasiona", "geo": null, "id": 147635268130840580, "id_str": "147635268130840576", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1273455264/pasiona_imagenperfil_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273455264/pasiona_imagenperfil_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Microsoft #Azure aloja Hadoop y otras aplicaciones de c\\u00F3digo abierto http://t.co/nwjkAXzw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:06:37 +0000", "from_user": "ipodreaditlater", "from_user_id": 392608246, "from_user_id_str": "392608246", "from_user_name": "ipodreaditlaterrss", "geo": null, "id": 147633725885251600, "id_str": "147633725885251584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "http://t.co/yHlncBtu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:04:55 +0000", "from_user": "Nerdjob", "from_user_id": 252977036, "from_user_id_str": "252977036", "from_user_name": "Nerdjob", "geo": null, "id": 147633295071522800, "id_str": "147633295071522816", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1252355030/Avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1252355030/Avatar_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure http://t.co/EZNOwgzI #itnews", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:04:06 +0000", "from_user": "AnonNewsDE", "from_user_id": 353825896, "from_user_id_str": "353825896", "from_user_name": "Anonymous Germany", "geo": null, "id": 147633091287072770, "id_str": "147633091287072768", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1544244322/anonde_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544244322/anonde_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Heise: Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure http://t.co/ItRVcmtW #heiseonline", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:04:05 +0000", "from_user": "ComputerOK", "from_user_id": 153358240, "from_user_id_str": "153358240", "from_user_name": "Computer O.K.", "geo": null, "id": 147633088770486270, "id_str": "147633088770486272", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1551274271/C-OK_avatar300px_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1551274271/C-OK_avatar300px_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure: Microsoft hat seinen Cloud-Dienst Azure unter anderem um neue... http://t.co/1sOhfwj9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:04:04 +0000", "from_user": "Flips_Soft", "from_user_id": 152956933, "from_user_id_str": "152956933", "from_user_name": "Philipp Handle", "geo": null, "id": 147633083443712000, "id_str": "147633083443712001", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/967881241/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/967881241/logo_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "[Heise] Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure: Microsoft hat seinen Cloud-Dienst Azure unter ... http://t.co/NOU2lFn7 #Heise", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:04:04 +0000", "from_user": "udoweiser", "from_user_id": 229978294, "from_user_id_str": "229978294", "from_user_name": "Udo Weiser", "geo": null, "id": 147633080964886530, "id_str": "147633080964886528", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1197433573/udo-webcam-3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1197433573/udo-webcam-3_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#computer Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure: Microsoft hat seinen Cloud-Dienst Azure unter ander... http://t.co/mxrtZg2r", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:04:03 +0000", "from_user": "xtreme_office", "from_user_id": 259212373, "from_user_id_str": "259212373", "from_user_name": "Michaela Weiser", "geo": null, "id": 147633079371055100, "id_str": "147633079371055104", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1279129224/favicon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1279129224/favicon_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#computer Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure: Microsoft hat seinen Cloud-Dienst Azure unter ander... http://t.co/d05wg6uE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:04:03 +0000", "from_user": "Nasentroll", "from_user_id": 81356905, "from_user_id_str": "81356905", "from_user_name": "Tobias Schindegger", "geo": null, "id": 147633078171471870, "id_str": "147633078171471872", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1409231563/DSC06650_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1409231563/DSC06650_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure: Microsoft hat seinen Cloud-Dienst Azure unter anderem um neue... http://t.co/B1PRpuIB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:04:01 +0000", "from_user": "Nachrichten_muc", "from_user_id": 46066944, "from_user_id_str": "46066944", "from_user_name": "Nachrichten-Muenchen", "geo": null, "id": 147633069300531200, "id_str": "147633069300531200", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1044871116/27471_1506126354_3098_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1044871116/27471_1506126354_3098_q_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#news Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure: Microsoft hat seinen Cloud-Dienst Azur... http://t.co/2j89KQLj #nachrichten #it", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:03:56 +0000", "from_user": "binstweets", "from_user_id": 102934682, "from_user_id_str": "102934682", "from_user_name": "bins", "geo": null, "id": 147633049767657470, "id_str": "147633049767657472", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/630781713/avatar_b.ins_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/630781713/avatar_b.ins_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure: Microsoft hat seinen Cloud-Dienst Azure unter anderem um neue... http://t.co/pj5KZWn5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:03:53 +0000", "from_user": "heiternet", "from_user_id": 62758291, "from_user_id_str": "62758291", "from_user_name": "Axel Heiter", "geo": null, "id": 147633036706586620, "id_str": "147633036706586625", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/607433566/logo_viereckig_3oo-300_bg_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/607433566/logo_viereckig_3oo-300_bg_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure: Microsoft hat seinen Cloud-Dienst Azure unter ander... http://t.co/MVeOxLnM #IT #News", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:01:09 +0000", "from_user": "heiseopen", "from_user_id": 16433774, "from_user_id_str": "16433774", "from_user_name": "heise open", "geo": null, "id": 147632347213336580, "id_str": "147632347213336576", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/347669329/icon_open_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/347669329/icon_open_normal.png", "source": "<a href="http://www.heise.de" rel="nofollow">heise Tweetfeeds</a>", "text": "RT @iXmagazin: Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure http://t.co/0JikG2Ju", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:01:08 +0000", "from_user": "heisedc", "from_user_id": 18019316, "from_user_id_str": "18019316", "from_user_name": "heise Developer", "geo": null, "id": 147632343115501570, "id_str": "147632343115501570", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1286619044/icon_developer_bigger_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1286619044/icon_developer_bigger_normal.png", "source": "<a href="http://www.heise.de" rel="nofollow">heise Tweetfeeds</a>", "text": "RT @iXmagazin: Gr\\u00F6\\u00DFere Datenbanken, Hadoop und Node.js bei Azure http://t.co/0JikG2Ju", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:00:11 +0000", "from_user": "patrickDurusau", "from_user_id": 152194866, "from_user_id_str": "152194866", "from_user_name": "Patrick Durusau", "geo": null, "id": 147632105545932800, "id_str": "147632105545932802", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/961579480/patrick_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/961579480/patrick_normal.jpeg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "EMC Greenplum puts a social spin on big data #topicmaps #bigdata #hadoop #socialmedia - http://t.co/fAPXW9qO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:45:38 +0000", "from_user": "jarrieta", "from_user_id": 18310417, "from_user_id_str": "18310417", "from_user_name": "Javier Arrieta", "geo": null, "id": 147628442878353400, "id_str": "147628442878353408", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/68355870/foto_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/68355870/foto_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Spring hadoop and data http://t.co/AEyrWaRh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:38:28 +0000", "from_user": "freelancerjobz", "from_user_id": 105766632, "from_user_id_str": "105766632", "from_user_name": "Freelance Job", "geo": null, "id": 147626641546412030, "id_str": "147626641546412033", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/637014492/1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/637014492/1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#freelance #jobs Hadoop Email Archiving by avineshp: Hi, We are looking a a really brilliant Hadoop Developer... http://t.co/vUSAicZA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:35:39 +0000", "from_user": "viswajithv", "from_user_id": 47445770, "from_user_id_str": "47445770", "from_user_name": "Viswajith V", "geo": null, "id": 147625933036191740, "id_str": "147625933036191744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/264421393/Viswa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/264421393/Viswa_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Hadoop Email Archiving by avineshp http://t.co/tk7awhib", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:31:35 +0000", "from_user": "NewsCloudCom", "from_user_id": 363723957, "from_user_id_str": "363723957", "from_user_name": "NewsCloudCom", "geo": null, "id": 147624907616956400, "id_str": "147624907616956416", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575194700/215181262-1302367071-32_1__normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575194700/215181262-1302367071-32_1__normal", "source": "<a href="http://twitter.com/NewsCloudCom" rel="nofollow">news of cloud computing.</a>", "text": "Windows Azure\\u3001Hadoop\\u3084Node.js\\u306A\\u3069\\u6709\\u540DOSS\\u3092\\u30B5\\u30DD\\u30FC\\u30C8 http://t.co/ChF6Gwfb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:29:29 +0000", "from_user": "FreelanceJobz4U", "from_user_id": 109293507, "from_user_id_str": "109293507", "from_user_name": "Freelance Jobz 4 U", "geo": null, "id": 147624378547449860, "id_str": "147624378547449856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/661495065/bassetthoundpup_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/661495065/bassetthoundpup_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#freelance jobs: Hadoop Email Archiving by avineshp: Hi, We are looking a a really brilliant Hadoop... http://t.co/K7hKwDt8 #projects", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:00:08 +0000", "from_user": "NewsICT", "from_user_id": 215181262, "from_user_id_str": "215181262", "from_user_name": "NewsICT", "geo": null, "id": 147616992554254340, "id_str": "147616992554254336", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1305695667/215181262-1302367071-32_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1305695667/215181262-1302367071-32_normal", "source": "<a href="http://twitter.com/NewsICT" rel="nofollow">NewsICT</a>", "text": "(computer) Windows Azure\\u3001Hadoop\\u3084Node.js\\u306A\\u3069\\u6709\\u540DOSS\\u3092\\u30B5\\u30DD\\u30FC\\u30C8 http://t.co/vfzE7UnC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:36:18 +0000", "from_user": "del_javascript", "from_user_id": 23282663, "from_user_id_str": "23282663", "from_user_name": "Javascript News", "geo": null, "id": 147610995769094140, "id_str": "147610995769094145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/90410047/clouds2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/90410047/clouds2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Introduction to the Hadoop on Azure Interactive JavaScript Console - YouTube http://t.co/LaIBHYUO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:32:48 +0000", "from_user": "takamasa_tanaka", "from_user_id": 140310365, "from_user_id_str": "140310365", "from_user_name": "Takamasa Tanaka", "geo": null, "id": 147610115674087420, "id_str": "147610115674087424", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1344363381/IMG_2307_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1344363381/IMG_2307_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "\\u30AC\\u30EA\\u52C9\\u306E\\u7532\\u6590\\u3042\\u308AHadoop\\u958B\\u767A\\u8005\\u8A66\\u9A13\\u3068\\u7BA1\\u7406\\u8005\\u8A66\\u9A13\\u3001\\u30C0\\u30D6\\u30EB\\u3067\\u5408\\u683C\\u3002\\u9054\\u6210\\u611F\\u306B\\u3088\\u308A\\u306A\\u3093\\u3060\\u304B\\u300C\\u4ECA\\u5E74\\u304A\\u308F\\u3063\\u305F\\uFF01\\u300D\\u307F\\u305F\\u3044\\u306A\\u6C17\\u5206\\u3002\\u306F\\u3044\\u3001\\u6765\\u9031\\u3082\\u3061\\u3083\\u3093\\u3068\\u4ED5\\u4E8B\\u3057\\u307E\\u3059\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:28:46 +0000", "from_user": "ISIKADO", "from_user_id": 118681114, "from_user_id_str": "118681114", "from_user_name": "\\u3044\\u3057\\u304B\\u3069", "geo": null, "id": 147609098555367420, "id_str": "147609098555367424", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1243986926/pict_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1243986926/pict_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u5927\\u5B66\\u306Ehadoop\\u30B5\\u30FC\\u30D0\\u306B\\u30ED\\u30B0\\u30A4\\u30F3\\u3067\\u304D\\u308B\\u3088\\u3046\\u306B\\u306A\\u3063\\u305F\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:26:14 +0000", "from_user": "shinya_yanagi", "from_user_id": 206039580, "from_user_id_str": "206039580", "from_user_name": "Shinya Yanagihara", "geo": null, "id": 147608461071491070, "id_str": "147608461071491072", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1269361655/191186_104323526316641_100002169828988_40900_875424_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1269361655/191186_104323526316641_100002169828988_40900_875424_o_normal.jpg", "source": "<a href="http://twipple.jp/" rel="nofollow">\\u3064\\u3044\\u3063\\u3077\\u308B/twipple</a>", "text": "#shinyalog InfoSphere BigInsights\\u30C6\\u30AF\\u30CB\\u30AB\\u30EB\\u30EF\\u30FC\\u30AF\\u30B7\\u30E7\\u30C3\\u30D7\\u306B\\u53C2\\u52A0\\u3057\\u3066\\u304D\\u305F\\u3088\\u3002InfoSphere BigInsights\\u3068\\u3044\\u3046\\u3088\\u308A\\u306F\\u3001Hadoop\\u306B\\u8208\\u5473\\u304C\\u3067\\u305F\\u3002\\u307E\\u305A\\u306F\\u3001Hadoop\\u3092\\u7814\\u7A76\\u3057\\u3066\\u307F\\u3063\\u304B\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:19:12 +0000", "from_user": "olivierflebus", "from_user_id": 242669696, "from_user_id_str": "242669696", "from_user_name": "Olivier FLEBUS", "geo": null, "id": 147606692010524670, "id_str": "147606692010524672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1225516106/carre_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225516106/carre_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@LuxNoSQL @manumarchal the \"Cassandra\" you use is not only the NoSQL Solution ! Try with \"Apache Cassandra\" http://t.co/KKKeRBgR Hadoop 1st", "to_user": "LuxNoSQL", "to_user_id": 19330336, "to_user_id_str": "19330336", "to_user_name": "Nestor", "in_reply_to_status_id": 147577688230596600, "in_reply_to_status_id_str": "147577688230596608"}, +{"created_at": "Fri, 16 Dec 2011 09:17:37 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147606293983662080, "id_str": "147606293983662081", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@rolandbouman well there's a lot of space for things that aren't hadoop but can do large scale like @hadapt. but thats a whole new topic :)", "to_user": "rolandbouman", "to_user_id": 51754021, "to_user_id_str": "51754021", "to_user_name": "Roland Bouman", "in_reply_to_status_id": 147605887140380670, "in_reply_to_status_id_str": "147605887140380672"}, +{"created_at": "Fri, 16 Dec 2011 09:15:18 +0000", "from_user": "rolandbouman", "from_user_id": 51754021, "from_user_id_str": "51754021", "from_user_name": "Roland Bouman", "geo": null, "id": 147605709431914500, "id_str": "147605709431914496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/287001025/roland_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/287001025/roland_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dscape Well, the surprising thing to me is MS finally got it right :) To them, Hadoop is just a vector that makes people want to run...", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147604614257188860, "in_reply_to_status_id_str": "147604614257188864"}, +{"created_at": "Fri, 16 Dec 2011 09:10:57 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147604614257188860, "id_str": "147604614257188864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@rolandbouman the integration with hadoop is surprising though. at least in my experience working in db companies", "to_user": "rolandbouman", "to_user_id": 51754021, "to_user_id_str": "51754021", "to_user_name": "Roland Bouman", "in_reply_to_status_id": 147604017206403070, "in_reply_to_status_id_str": "147604017206403072"}, +{"created_at": "Fri, 16 Dec 2011 08:22:04 +0000", "from_user": "mikepluta", "from_user_id": 15150700, "from_user_id_str": "15150700", "from_user_name": "Mike Pluta", "geo": null, "id": 147592314561363970, "id_str": "147592314561363968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1584807716/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584807716/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @bigdata: Parallel Analytics from @amplab: Hearing kickass performance #'s from Spark users (switching from Hadoop/MapReduce) http://t.co/f4syR33q", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:11:20 +0000", "from_user": "bramroeland", "from_user_id": 234757479, "from_user_id_str": "234757479", "from_user_name": "Bram Roeland", "geo": null, "id": 147589612422971400, "id_str": "147589612422971392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1292444989/profilepic_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1292444989/profilepic_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Day four (final day): Joining Data Sets in MapReduce Jobs, Graph Manipulation In MapReduce, Hadoop Developer Certification exam", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:34:37 +0000", "from_user": "wyukawa", "from_user_id": 14138696, "from_user_id_str": "14138696", "from_user_name": "Wataru Yukawa", "geo": null, "id": 147580374325788670, "id_str": "147580374325788672", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1422846484/picture_12_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1422846484/picture_12_bigger_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "/etc/default/hadoop-0.20\\u306B\\u30C7\\u30FC\\u30E2\\u30F3\\u8D77\\u52D5\\u30E6\\u30FC\\u30B6\\u304C\\u66F8\\u304B\\u308C\\u3066\\u3044\\u308B\\u306E\\u304B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 06:17:36 +0000", "from_user": "AlexaDigital", "from_user_id": 407857538, "from_user_id_str": "407857538", "from_user_name": "AlexaDigital", "geo": null, "id": 147560990987390980, "id_str": "147560990987390976", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686811041/AlexaDigitalTwitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686811041/AlexaDigitalTwitter_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Microsoft Azure aloja Hadoop y otras aplicaciones de c\\u00F3digo abierto http://t.co/CItLqRjH #microsoft #news", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 05:38:02 +0000", "from_user": "rjurney", "from_user_id": 15831927, "from_user_id_str": "15831927", "from_user_name": "Russell Jurney", "geo": null, "id": 147551032044560400, "id_str": "147551032044560385", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1468674812/bad_avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1468674812/bad_avatar_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@electrum32 Maybe: tail -f mylog.txt | hadoop fs -put", "to_user": "electrum32", "to_user_id": 176214089, "to_user_id_str": "176214089", "to_user_name": "David Phillips", "in_reply_to_status_id": 147516497009442800, "in_reply_to_status_id_str": "147516497009442816"}, +{"created_at": "Fri, 16 Dec 2011 04:17:48 +0000", "from_user": "nagix", "from_user_id": 228226265, "from_user_id_str": "228226265", "from_user_name": "\\u8349\\u8599 \\u662D\\u5F66", "geo": null, "id": 147530844385452030, "id_str": "147530844385452032", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1537271769/nagix_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1537271769/nagix_normal.png", "source": "<a href="http://www.zusaar.com/" rel="nofollow">Zusaar</a>", "text": "16\\u65E5\\u76EE\\u66F8\\u304D\\u307E\\u3057\\u305F\\u3002MapR\\u306B\\u3064\\u3044\\u3066\\u3067\\u3059\\u3002\\nhttp://t.co/OcfL12BU / hadoop\\u30A2\\u30C9\\u30D9\\u30F3\\u30C8\\u30AB\\u30EC\\u30F3\\u30C0\\u30FC2011 http://t.co/z0tUNWDC #zusaar", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 02:26:30 +0000", "from_user": "larry_franks", "from_user_id": 70437829, "from_user_id_str": "70437829", "from_user_name": "Larry Franks", "geo": null, "id": 147502834710097920, "id_str": "147502834710097920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/748789809/birdhouse_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/748789809/birdhouse_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @jamescon: RT @mdesilver: I just deployed a 20 node #Hadoop cluster in 7 min ran a job through javascript, got my answer. Wow. Never been easier #azure", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 02:01:21 +0000", "from_user": "padmasri4", "from_user_id": 325439770, "from_user_id_str": "325439770", "from_user_name": "padmasri", "geo": null, "id": 147496503039107070, "id_str": "147496503039107072", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Hadoop Technology in Bangalore, India http://t.co/K8k0vpxL #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:45:58 +0000", "from_user": "aliimam", "from_user_id": 15429623, "from_user_id_str": "15429623", "from_user_name": "ali imam", "geo": null, "id": 147492632959008770, "id_str": "147492632959008768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/58144512/backyardpic_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/58144512/backyardpic_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jaykreps: Ebay is using SSDs in their Hadoop clusters? Surely I heard that wrong...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:37:43 +0000", "from_user": "GrandLogicInc", "from_user_id": 427826464, "from_user_id_str": "427826464", "from_user_name": "Grand Logic", "geo": null, "id": 147490555096604670, "id_str": "147490555096604672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1672436646/gl_logo_simple_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672436646/gl_logo_simple_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Tie and feed your backoffice systems and corporate databases to your #bigdata. Seed your #hadoop with data feeds automated by Jobserver.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:11:03 +0000", "from_user": "NUROxxxx", "from_user_id": 313255702, "from_user_id_str": "313255702", "from_user_name": "NUROxxxx", "geo": null, "id": 147483844042428400, "id_str": "147483844042428417", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1648038528/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648038528/image_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "[\\u96FB\\u8133] Windows Azure\\u3001Hadoop\\u3084Node.js\\u306A\\u3069\\u6709\\u540DOSS\\u3092\\u30B5\\u30DD\\u30FC\\u30C8 \\uFF08\\u30DE\\u30A4\\u30CA\\u30D3\\uFF09 http://t.co/aMC9vajs #newsjp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:21:17 +0000", "from_user": "hubaghdadi", "from_user_id": 17536684, "from_user_id_str": "17536684", "from_user_name": "El Gusto", "geo": null, "id": 147456222197596160, "id_str": "147456222197596160", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698976822/images__1__normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698976822/images__1__normal.jpeg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Apache Hadoop is the Rock Star of 2011. #Hadoop #Java", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:40:39 +0000", "from_user": "NorSivad", "from_user_id": 21665194, "from_user_id_str": "21665194", "from_user_name": "Ron Davis", "geo": null, "id": 147445994949324800, "id_str": "147445994949324800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1138665753/Ron_in_hat_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1138665753/Ron_in_hat_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube video from @microsoftbi http://t.co/ERlA1QP5 Introduction to the Hadoop on Azure Interactive", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:29:26 +0000", "from_user": "nsharp_2ch", "from_user_id": 86472223, "from_user_id_str": "86472223", "from_user_name": "nsharp", "geo": null, "id": 147443171905904640, "id_str": "147443171905904640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1482188154/icon3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1482188154/icon3_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Introduction to the Hadoop on Azure Interactive JavaScript Console\\nhttp://t.co/NuAg4XI9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:01:43 +0000", "from_user": "sqlman101", "from_user_id": 14097974, "from_user_id_str": "14097974", "from_user_name": "Shashank Pawar", "geo": null, "id": 147436198086975500, "id_str": "147436198086975489", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1142523538/Shashank_Pawar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1142523538/Shashank_Pawar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lynnlangit: blogged: 'Trying out #Hadoop on #Azure' #BigData http://t.co/toEa53lS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 21:32:55 +0000", "from_user": "maordp", "from_user_id": 13278492, "from_user_id_str": "13278492", "from_user_name": "Maor David-Pur", "geo": null, "id": 147428950761685000, "id_str": "147428950761684993", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1239419922/TechEd2008_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1239419922/TechEd2008_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Openness Update for Windows Azure:New Release Supports Open Source Libraries Node.js,MongoDB,Hadoop,Solr,Memcached http://t.co/cgF8OMg1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 21:32:28 +0000", "from_user": "lynnlangit", "from_user_id": 3105491, "from_user_id_str": "3105491", "from_user_name": "Lynn Langit", "geo": null, "id": 147428836114575360, "id_str": "147428836114575360", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/125258306/meRed_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/125258306/meRed_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "blogged: 'Trying out #Hadoop on #Azure' #BigData http://t.co/toEa53lS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} + +, +{"created_at": "Mon, 19 Dec 2011 17:27:37 +0000", "from_user": "houcemberrayana", "from_user_id": 18717488, "from_user_id_str": "18717488", "from_user_name": "Houcem Berrayana", "geo": null, "id": 148816768113188860, "id_str": "148816768113188865", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534490937/houcem_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534490937/houcem_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "I received an invitation to schedule a call with @couchdb engineers in order to discuss about #couchDB use cases #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:57:30 +0000", "from_user": "eckoit", "from_user_id": 234107885, "from_user_id_str": "234107885", "from_user_name": "Ryan Ramage", "geo": null, "id": 148809189425287170, "id_str": "148809189425287170", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1206917088/ryan.new_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1206917088/ryan.new_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @_jhs: I wrote my first #kansojs package! Stew: relaxed CouchDB reduce functions: http://t.co/dCvyyW1c", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:41:27 +0000", "from_user": "abionic", "from_user_id": 45120313, "from_user_id_str": "45120313", "from_user_name": "AbhishekKr", "geo": null, "id": 148805153821167600, "id_str": "148805153821167616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/252040908/a1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/252040908/a1_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"Using CouchDb as a filesystem with PHP\" http://t.co/y4s3lkVs #PHP #CouchDB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:49:29 +0000", "from_user": "robenajbvgentry", "from_user_id": 277670628, "from_user_id_str": "277670628", "from_user_name": "robena gentry", "geo": null, "id": 148792072156102660, "id_str": "148792072156102656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1678876850/1170300_important_call_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678876850/1170300_important_call_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloudant Appoints Derek Schoettle as CEO: Apache CouchDB Expert Gets Former Vertica, Infocrossing Executive for ... http://t.co/9O8F7l4L", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:49:28 +0000", "from_user": "keliovimcmullin", "from_user_id": 277681553, "from_user_id_str": "277681553", "from_user_name": "keli mcmullin", "geo": null, "id": 148792071602450430, "id_str": "148792071602450432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1678878546/1171215_where_are_you_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678878546/1171215_where_are_you_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloudant Appoints Derek Schoettle as CEO: Apache CouchDB Expert Gets Former Vertica, Infocrossing Executive for ... http://t.co/g0G7Ajuo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:49:26 +0000", "from_user": "astridvprovost", "from_user_id": 277920506, "from_user_id_str": "277920506", "from_user_name": "astrid provost", "geo": null, "id": 148792060315574270, "id_str": "148792060315574274", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1678877843/1170492_young_woman_smiling_at_camera_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678877843/1170492_young_woman_smiling_at_camera_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloudant Appoints Derek Schoettle as CEO: Apache CouchDB Expert Gets Former Vertica, Infocrossing Executive for ... http://t.co/UHkQlKOg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:49:24 +0000", "from_user": "mayrabsfitts", "from_user_id": 277874670, "from_user_id_str": "277874670", "from_user_name": "mayra fitts", "geo": null, "id": 148792052405125120, "id_str": "148792052405125121", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1678879361/1183984_mysterious_girl_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678879361/1183984_mysterious_girl_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloudant Appoints Derek Schoettle as CEO: Apache CouchDB Expert Gets Former Vertica, Infocrossing Executive for ... http://t.co/zNKq3hmD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:49:22 +0000", "from_user": "mardellksrwentw", "from_user_id": 277926947, "from_user_id_str": "277926947", "from_user_name": "mardell wentworth", "geo": null, "id": 148792046470176770, "id_str": "148792046470176768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1678881385/1192040_jo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678881385/1192040_jo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloudant Appoints Derek Schoettle as CEO: Apache CouchDB Expert Gets Former Vertica, Infocrossing Executive for ... http://t.co/dd2xpFWW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:37:04 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 148788949928779780, "id_str": "148788949928779778", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "Document Databases and Data Migrations http://t.co/UCUT3gLu 1) no ORM 2) no schema 3) no data migrations #mongodb #couchdb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:23:42 +0000", "from_user": "pawelantczak", "from_user_id": 96818088, "from_user_id_str": "96818088", "from_user_name": "Pawe\\u0142 Antczak", "geo": null, "id": 148785584645750800, "id_str": "148785584645750784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689545768/1301862733695_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689545768/1301862733695_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Using CouchDb as a filesystem with PHP | Web Builder Zone: http://t.co/1wqTZikW via @AddThis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:17:31 +0000", "from_user": "benoitc", "from_user_id": 770056, "from_user_id_str": "770056", "from_user_name": "beno\\u00EEt chesneau", "geo": null, "id": 148784030131822600, "id_str": "148784030131822592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/76299981/avatar100x100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/76299981/avatar100x100_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@eckoit i need to think about it a little, also have a look in couchdb-fuse from @jasondavies for that.", "to_user": "eckoit", "to_user_id": 234107885, "to_user_id_str": "234107885", "to_user_name": "Ryan Ramage", "in_reply_to_status_id": 148770265197850620, "in_reply_to_status_id_str": "148770265197850626"}, +{"created_at": "Mon, 19 Dec 2011 15:14:33 +0000", "from_user": "alfamale156", "from_user_id": 61744769, "from_user_id_str": "61744769", "from_user_name": "Andrew Woodcock", "geo": null, "id": 148783283327598600, "id_str": "148783283327598597", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693217959/Daddy_and_Emily_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693217959/Daddy_and_Emily_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Samisdat: Der Server l\\u00E4uft mit @Nodejs Daten speichern in @CouchDB und http://t.co/7KzDdmZH \\u00FCbernimmt die Session. Sch\\u00F6ner Code ohne PHP ;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:07:30 +0000", "from_user": "keithkim", "from_user_id": 14881688, "from_user_id_str": "14881688", "from_user_name": "Keith Kim", "geo": null, "id": 148781508805660670, "id_str": "148781508805660672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1485820747/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1485820747/me_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"Using CouchDb as a filesystem with PHP\" http://t.co/y4s3lkVs #PHP #CouchDB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:42:14 +0000", "from_user": "FernandoSerapio", "from_user_id": 96901611, "from_user_id_str": "96901611", "from_user_name": "Fernando Serapio", "geo": null, "id": 148775148684709900, "id_str": "148775148684709890", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695507559/grinch_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695507559/grinch_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"Using CouchDb as a filesystem with PHP\" http://t.co/y4s3lkVs #PHP #CouchDB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:41:57 +0000", "from_user": "DZone", "from_user_id": 14782935, "from_user_id_str": "14782935", "from_user_name": "DZone", "geo": null, "id": 148775078795018240, "id_str": "148775078795018241", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/258714549/dzone-square-256_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/258714549/dzone-square-256_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\"Using CouchDb as a filesystem with PHP\" http://t.co/y4s3lkVs #PHP #CouchDB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:06:26 +0000", "from_user": "sas_71", "from_user_id": 301342282, "from_user_id_str": "301342282", "from_user_name": "Sven A. Schmidt", "geo": null, "id": 148766140687069200, "id_str": "148766140687069185", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1615292001/Screen_Shot_2011-10-31_at_10.19.28_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615292001/Screen_Shot_2011-10-31_at_10.19.28_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "New blog post: Couchdb migrations http://t.co/5hJKoLB8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:58:38 +0000", "from_user": "akeem", "from_user_id": 12597442, "from_user_id_str": "12597442", "from_user_name": "Akeem Adeniji", "geo": null, "id": 148764179615055870, "id_str": "148764179615055872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/645690442/highkey_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/645690442/highkey_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I need to find a solid command line tool to prod couchdb. I feel like I lose so much rhythm checking the browser", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:55:20 +0000", "from_user": "natevw", "from_user_id": 8419342, "from_user_id_str": "8419342", "from_user_name": "Nathan Vander Wilt", "geo": null, "id": 148763348543082500, "id_str": "148763348543082496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1266548910/updated_profile_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266548910/updated_profile_pic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @vmische: Knn-search for #GeoCouch, awesome! https://t.co/0sXvrIXr #CouchDB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:42:00 +0000", "from_user": "llabball", "from_user_id": 15782895, "from_user_id_str": "15782895", "from_user_name": "Ingo Radatz", "geo": null, "id": 148759989874462720, "id_str": "148759989874462722", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1369639796/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1369639796/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @maxogden: notes from the #couchdb couchapp community meeting https://t.co/wmiVpLB9 tl;dr we want couchapps to work as offline chrome extensions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:41:26 +0000", "from_user": "snowpong", "from_user_id": 65642799, "from_user_id_str": "65642799", "from_user_name": "Espen Riskedal", "geo": null, "id": 148759848589332480, "id_str": "148759848589332480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/362282436/ernern_overdrive_firkantet_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/362282436/ernern_overdrive_firkantet_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Anyone tried out CouchDB / Couchbase for cross-platform mobile apps? Researching good solutions for offline + automatic sync resolution.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:37:06 +0000", "from_user": "lartem", "from_user_id": 33361654, "from_user_id_str": "33361654", "from_user_name": "Artem Luzhnov", "geo": null, "id": 148758756983971840, "id_str": "148758756983971841", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1462123444/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1462123444/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @mezozoysky: \\u0414\\u043E\\u0440\\u043E\\u0433\\u043E \\u0442\\u0432\\u0438\\u0442\\u043E\\u0440, \\u0438\\u0449\\u0443 \\u0430\\u0434\\u0435\\u043A\\u0432\\u0430\\u0442\\u043D\\u043E\\u0433\\u043E \\u0447\\u0435\\u043B\\u043E\\u0432\\u0435\\u043A\\u0430 \\u0441 \\u043A\\u043E\\u043C\\u043F\\u0435\\u0442\\u0435\\u043D\\u0446\\u0438\\u0435\\u0439 Node.JS/CouchDB. RT, Please.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:34:13 +0000", "from_user": "jakobwesthoff", "from_user_id": 19823972, "from_user_id_str": "19823972", "from_user_name": "Jakob Westhoff", "geo": null, "id": 148758032740925440, "id_str": "148758032740925440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1234596152/twitter_portrait_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1234596152/twitter_portrait_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @koredn: I will give three #CouchDB related workshop at the JavaScript Days (http://t.co/Lu8qumvi) in March. Join me there!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:30:48 +0000", "from_user": "halfbyte", "from_user_id": 1272591, "from_user_id_str": "1272591", "from_user_name": "Jan Krutisch", "geo": null, "id": 148757173432885250, "id_str": "148757173432885249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/867773364/IMGP9883-3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/867773364/IMGP9883-3_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "So, what's the verdict on the current hottest/bestest Ruby/CouchDB library?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:18:49 +0000", "from_user": "tsunammis", "from_user_id": 8541592, "from_user_id_str": "8541592", "from_user_name": "Stan Chollet", "geo": null, "id": 148754157195636740, "id_str": "148754157195636736", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1129897969/stan-social-2010-2-carre_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1129897969/stan-social-2010-2-carre_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@sraymond38 J'h\\u00E9site encore \\u00E0 l'\\u00E9crire, de tr\\u00E8s ODM sont dispo maintenant avec Doctrine, tel que MongoDB et CouchDB \\u2026", "to_user": "sraymond38", "to_user_id": 217366634, "to_user_id_str": "217366634", "to_user_name": "St\\u00E9phane Raymond", "in_reply_to_status_id": 148718888891318270, "in_reply_to_status_id_str": "148718888891318273"}, +{"created_at": "Mon, 19 Dec 2011 12:52:51 +0000", "from_user": "benoitc", "from_user_id": 770056, "from_user_id_str": "770056", "from_user_name": "beno\\u00EEt chesneau", "geo": null, "id": 148747622415478800, "id_str": "148747622415478784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/76299981/avatar100x100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/76299981/avatar100x100_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "so couch_randomkey is in now named couch_randomdoc to reflect what iit is really .... url is now https://t.co/XZk0NU6A #couchdb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:36:22 +0000", "from_user": "benoitc", "from_user_id": 770056, "from_user_id_str": "770056", "from_user_name": "beno\\u00EEt chesneau", "geo": null, "id": 148743476471795700, "id_str": "148743476471795712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/76299981/avatar100x100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/76299981/avatar100x100_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Just released of couch_randomkey a simple couchdb module to fetch and render random document from #couchdb https://t.co/KSpVFHaH enjoy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:13:15 +0000", "from_user": "inyongwebid", "from_user_id": 324485660, "from_user_id_str": "324485660", "from_user_name": "Rachmat Hafidz", "geo": null, "id": 148737656703033340, "id_str": "148737656703033345", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1414298797/69073_152688678101738_100000818204398_223238_3422382_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1414298797/69073_152688678101738_100000818204398_223238_3422382_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Opo iku..?mbuh ra dong :D \"@adzymaniac: Cassandra vs MongoDB vs CouchDB vs Redis vs Riak vs HBase vs Membase vs Neo4j #NoSQL\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:08:19 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 148736416623501300, "id_str": "148736416623501313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "steelmesh (0.8.1): http://t.co/JcvODdbJ CouchDB distribution and management of Node.js applications", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:02:03 +0000", "from_user": "benoitc", "from_user_id": 770056, "from_user_id_str": "770056", "from_user_name": "beno\\u00EEt chesneau", "geo": null, "id": 148734838629871600, "id_str": "148734838629871617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/76299981/avatar100x100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/76299981/avatar100x100_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@andrewtj webdav is just http , i think mixing it with the way couchdb-fuse from @jasondavies works would be awesome", "to_user": "andrewtj", "to_user_id": 81712400, "to_user_id_str": "81712400", "to_user_name": "andrewtj", "in_reply_to_status_id": 148728228515815420, "in_reply_to_status_id_str": "148728228515815424"}, +{"created_at": "Mon, 19 Dec 2011 11:59:49 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 148734277306167300, "id_str": "148734277306167296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "attachmate (0.1.0): http://t.co/zDjKfaAA CouchDB Attachment Helpers (part of the Steelmesh stack)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:57:27 +0000", "from_user": "narkisr", "from_user_id": 65467155, "from_user_id_str": "65467155", "from_user_name": "Ronen", "geo": null, "id": 148733681035522050, "id_str": "148733681035522048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/796203344/ae70b718342bc0d140743709e21cdbe6_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/796203344/ae70b718342bc0d140743709e21cdbe6_normal.jpeg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Couchbase sounds really cool to old couchdb vetrans, distributed map reduce on a cluster", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:30:32 +0000", "from_user": "jasondavies", "from_user_id": 349963, "from_user_id_str": "349963", "from_user_name": "Jason Davies", "geo": null, "id": 148726905007382530, "id_str": "148726905007382528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1404285254/jasondavies.small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1404285254/jasondavies.small_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@benoitc You should totally add caching to https://t.co/riKttKBG to make it usable as a filesystem. :)", "to_user": "benoitc", "to_user_id": 770056, "to_user_id_str": "770056", "to_user_name": "beno\\u00EEt chesneau", "in_reply_to_status_id": 148713160294154240, "in_reply_to_status_id_str": "148713160294154240"}, +{"created_at": "Mon, 19 Dec 2011 11:05:49 +0000", "from_user": "andriebamz", "from_user_id": 46189314, "from_user_id_str": "46189314", "from_user_name": "Bambang Andrie G", "geo": null, "id": 148720688428101630, "id_str": "148720688428101632", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687513201/gitar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687513201/gitar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @adzymaniac: Cassandra vs MongoDB vs CouchDB vs Redis vs Riak vs HBase vs Membase vs Neo4j #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:04:13 +0000", "from_user": "adzymaniac", "from_user_id": 80246884, "from_user_id_str": "80246884", "from_user_name": "Aji Kisworo Mukti", "geo": null, "id": 148720283665170430, "id_str": "148720283665170432", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1599098532/20768_1286042198610_1456819387_30792496_8162696_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599098532/20768_1286042198610_1456819387_30792496_8162696_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Cassandra vs MongoDB vs CouchDB vs Redis vs Riak vs HBase vs Membase vs Neo4j #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:53:00 +0000", "from_user": "gawel_", "from_user_id": 10690822, "from_user_id_str": "10690822", "from_user_name": "Gael Pasgrimaud", "geo": null, "id": 148717463327096830, "id_str": "148717463327096832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1218959587/32fe7bc7d2e32c06c8c5b0aa84c64435_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218959587/32fe7bc7d2e32c06c8c5b0aa84c64435_normal.png", "source": "<a href="http://www.nambu.com/" rel="nofollow">Nambu</a>", "text": "@benoitc yup. can be a good alternative to dropbox since couchdb has native versioning", "to_user": "benoitc", "to_user_id": 770056, "to_user_id_str": "770056", "to_user_name": "beno\\u00EEt chesneau", "in_reply_to_status_id": 148716607852654600, "in_reply_to_status_id_str": "148716607852654594"}, +{"created_at": "Mon, 19 Dec 2011 10:42:32 +0000", "from_user": "bartvdeijnden", "from_user_id": 92321540, "from_user_id_str": "92321540", "from_user_name": "Bart van den Eijnden", "geo": null, "id": 148714828733755400, "id_str": "148714828733755393", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1594902606/bartvde_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1594902606/bartvde_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @vmische: Knn-search for #GeoCouch, awesome! https://t.co/0sXvrIXr #CouchDB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:36:32 +0000", "from_user": "benoitc", "from_user_id": 770056, "from_user_id_str": "770056", "from_user_name": "beno\\u00EEt chesneau", "geo": null, "id": 148713316087377920, "id_str": "148713316087377920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/76299981/avatar100x100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/76299981/avatar100x100_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @vmische: Knn-search for #GeoCouch, awesome! https://t.co/0sXvrIXr #CouchDB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:35:55 +0000", "from_user": "benoitc", "from_user_id": 770056, "from_user_id_str": "770056", "from_user_name": "beno\\u00EEt chesneau", "geo": null, "id": 148713160294154240, "id_str": "148713160294154240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/76299981/avatar100x100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/76299981/avatar100x100_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "i think i want to have a working couchdb fuse extension or webdav over couch so I could sync my media more easily", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:35:16 +0000", "from_user": "vmische", "from_user_id": 140552229, "from_user_id_str": "140552229", "from_user_name": "Volker Mische", "geo": null, "id": 148712999119618050, "id_str": "148712999119618048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/886369436/favicon007_73x73_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/886369436/favicon007_73x73_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Knn-search for #GeoCouch, awesome! https://t.co/0sXvrIXr #CouchDB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:54:36 +0000", "from_user": "sbose78", "from_user_id": 190726716, "from_user_id_str": "190726716", "from_user_name": "Shoubhik Bose", "geo": null, "id": 148702762715189250, "id_str": "148702762715189248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1555136629/313678_10150287343724509_710069508_7509696_1574204_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555136629/313678_10150287343724509_710069508_7509696_1574204_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@davecottlehuber Hey whats wrong with this POST request ?? http://t.co/KhJAiAK7 @CouchDB", "to_user": "davecottlehuber", "to_user_id": 20142853, "to_user_id_str": "20142853", "to_user_name": "Dave Cottlehuber"}, +{"created_at": "Mon, 19 Dec 2011 09:45:21 +0000", "from_user": "cgiffard", "from_user_id": 14967638, "from_user_id_str": "14967638", "from_user_name": "Christopher Giffard", "geo": null, "id": 148700435585314800, "id_str": "148700435585314816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/405696519/3822572807_1b6414bda6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/405696519/3822572807_1b6414bda6_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "I thought Mongo, but I'm not loving it. People who like CouchDB *love* CouchDB, so I might try that.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:44:56 +0000", "from_user": "fkndfatum", "from_user_id": 14627231, "from_user_id_str": "14627231", "from_user_name": "Alexandrov Alexandr", "geo": null, "id": 148700331788865540, "id_str": "148700331788865536", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/425325642/avatar2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/425325642/avatar2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @mezozoysky: \\u0414\\u043E\\u0440\\u043E\\u0433\\u043E \\u0442\\u0432\\u0438\\u0442\\u043E\\u0440, \\u0438\\u0449\\u0443 \\u0430\\u0434\\u0435\\u043A\\u0432\\u0430\\u0442\\u043D\\u043E\\u0433\\u043E \\u0447\\u0435\\u043B\\u043E\\u0432\\u0435\\u043A\\u0430 \\u0441 \\u043A\\u043E\\u043C\\u043F\\u0435\\u0442\\u0435\\u043D\\u0446\\u0438\\u0435\\u0439 Node.JS/CouchDB. RT, Please.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:44:35 +0000", "from_user": "booyaa", "from_user_id": 719673, "from_user_id_str": "719673", "from_user_name": "booyaa", "geo": null, "id": 148700244769640450, "id_str": "148700244769640448", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/640332281/boo-sm-avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/640332281/boo-sm-avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Samisdat: Der Server l\\u00E4uft mit @Nodejs Daten speichern in @CouchDB und http://t.co/7KzDdmZH \\u00FCbernimmt die Session. Sch\\u00F6ner Code ohne PHP ;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:39:39 +0000", "from_user": "glazs", "from_user_id": 19333682, "from_user_id_str": "19333682", "from_user_name": "\\u0415\\u0432\\u0433\\u0435\\u043D\\u0438\\u0439 \\u0413\\u043B\\u0430\\u0437\\u044B\\u0440\\u0438\\u043D", "geo": null, "id": 148699001682792450, "id_str": "148699001682792450", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1394121954/48_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1394121954/48_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @mezozoysky: \\u0414\\u043E\\u0440\\u043E\\u0433\\u043E \\u0442\\u0432\\u0438\\u0442\\u043E\\u0440, \\u0438\\u0449\\u0443 \\u0430\\u0434\\u0435\\u043A\\u0432\\u0430\\u0442\\u043D\\u043E\\u0433\\u043E \\u0447\\u0435\\u043B\\u043E\\u0432\\u0435\\u043A\\u0430 \\u0441 \\u043A\\u043E\\u043C\\u043F\\u0435\\u0442\\u0435\\u043D\\u0446\\u0438\\u0435\\u0439 Node.JS/CouchDB. RT, Please.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:35:54 +0000", "from_user": "mezozoysky", "from_user_id": 269736748, "from_user_id_str": "269736748", "from_user_name": "Edward Mezozoysky", "geo": null, "id": 148698059876995070, "id_str": "148698059876995072", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1657541954/schechter400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657541954/schechter400_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u0414\\u043E\\u0440\\u043E\\u0433\\u043E \\u0442\\u0432\\u0438\\u0442\\u043E\\u0440, \\u0438\\u0449\\u0443 \\u0430\\u0434\\u0435\\u043A\\u0432\\u0430\\u0442\\u043D\\u043E\\u0433\\u043E \\u0447\\u0435\\u043B\\u043E\\u0432\\u0435\\u043A\\u0430 \\u0441 \\u043A\\u043E\\u043C\\u043F\\u0435\\u0442\\u0435\\u043D\\u0446\\u0438\\u0435\\u0439 Node.JS/CouchDB. RT, Please.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:17:57 +0000", "from_user": "CouchDB", "from_user_id": 14181317, "from_user_id_str": "14181317", "from_user_name": "CouchDB", "geo": null, "id": 148693542028578800, "id_str": "148693542028578816", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/51904457/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/51904457/logo_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Samisdat: Der Server l\\u00E4uft mit @Nodejs Daten speichern in @CouchDB und http://t.co/7KzDdmZH \\u00FCbernimmt die Session. Sch\\u00F6ner Code ohne PHP ;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:11:11 +0000", "from_user": "wickamivjg8", "from_user_id": 395456503, "from_user_id_str": "395456503", "from_user_name": "Wicka Duncan", "geo": null, "id": 148691840277819400, "id_str": "148691840277819392", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@Sweett_n_Spicyy http://t.co/Vpec5N18", "to_user": "Sweett_n_Spicyy", "to_user_id": 321663404, "to_user_id_str": "321663404", "to_user_name": "Shannon Graveran", "in_reply_to_status_id": 148643112246460400, "in_reply_to_status_id_str": "148643112246460417"}, +{"created_at": "Mon, 19 Dec 2011 08:47:01 +0000", "from_user": "koredn", "from_user_id": 17995670, "from_user_id_str": "17995670", "from_user_name": "Kore Nordmann", "geo": null, "id": 148685754820861950, "id_str": "148685754820861952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1001178988/avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1001178988/avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "I will give three #CouchDB related workshop at the JavaScript Days (http://t.co/Lu8qumvi) in March. Join me there!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:16:21 +0000", "from_user": "caolan", "from_user_id": 12185182, "from_user_id_str": "12185182", "from_user_name": "Caolan McMahon", "geo": null, "id": 148678040703086600, "id_str": "148678040703086592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1328677360/colourful_cropped_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1328677360/colourful_cropped_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @_jhs: I wrote my first #kansojs package! Stew: relaxed CouchDB reduce functions: http://t.co/dCvyyW1c", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:02:10 +0000", "from_user": "_jhs", "from_user_id": 16281277, "from_user_id_str": "16281277", "from_user_name": "Jason Smith", "geo": null, "id": 148659369972731900, "id_str": "148659369972731904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1600208979/jason_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600208979/jason_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "I wrote my first #kansojs package! Stew: relaxed CouchDB reduce functions: http://t.co/dCvyyW1c", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:17:33 +0000", "from_user": "_jhs", "from_user_id": 16281277, "from_user_id_str": "16281277", "from_user_name": "Jason Smith", "geo": null, "id": 148648141997080580, "id_str": "148648141997080576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1600208979/jason_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600208979/jason_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @iriscouch: OH @caolan \"hmm, I'll link to build-couchdb too since that seems to work for a lot of people\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:17:28 +0000", "from_user": "iriscouch", "from_user_id": 270375368, "from_user_id_str": "270375368", "from_user_name": "Iris Couch", "geo": null, "id": 148648120757125120, "id_str": "148648120757125122", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1665147201/iris_couch_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665147201/iris_couch_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "OH @caolan \"hmm, I'll link to build-couchdb too since that seems to work for a lot of people\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:11:19 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 148631475477164030, "id_str": "148631475477164032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "steelmesh (0.8.0): http://t.co/JcvODdbJ CouchDB distribution and management of Node.js applications", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:36:17 +0000", "from_user": "KatelinEdelson", "from_user_id": 388370123, "from_user_id_str": "388370123", "from_user_name": "Katelin Edelson", "geo": null, "id": 148592458220052480, "id_str": "148592458220052480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1663798697/1142112_relaxing_girl_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663798697/1142112_relaxing_girl_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "MongoDB and CouchDB are probably two of the most well known document-oriented database systems around", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:30:21 +0000", "from_user": "datalaundry", "from_user_id": 19220745, "from_user_id_str": "19220745", "from_user_name": "Mike West", "geo": null, "id": 148590964666138620, "id_str": "148590964666138624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/623100090/mikewarmachine192square_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/623100090/mikewarmachine192square_normal.gif", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "RT @dadicool: #Kanso : the proper tool for #couchapps http://t.co/ewEYCFDy -> so glad I stumbled upon this! #couchdb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:27:44 +0000", "from_user": "datalaundry", "from_user_id": 19220745, "from_user_id_str": "19220745", "from_user_name": "Mike West", "geo": null, "id": 148590304939868160, "id_str": "148590304939868161", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/623100090/mikewarmachine192square_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/623100090/mikewarmachine192square_normal.gif", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "RT @dscape: couchdb is a database from the future. why the community stalled innovating taking advantage of this is something I'm yet to understand", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:05:49 +0000", "from_user": "DaveColvin", "from_user_id": 13495832, "from_user_id_str": "13495832", "from_user_name": "Dave Colvin", "geo": null, "id": 148584790130569200, "id_str": "148584790130569216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675863166/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675863166/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "API Doc is a bit light on...\" API Docs for Data\\n\\n:Store user data in CouchDB and have it be available to apps on any platform.\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:12:21 +0000", "from_user": "_jhs", "from_user_id": 16281277, "from_user_id_str": "16281277", "from_user_name": "Jason Smith", "geo": null, "id": 148556236382679040, "id_str": "148556236382679040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1600208979/jason_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600208979/jason_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @maxogden: functional transforms:couchdb::commits:git #opendata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:38:14 +0000", "from_user": "maxogden", "from_user_id": 12241752, "from_user_id_str": "12241752", "from_user_name": "max ogden", "geo": null, "id": 148547651607085060, "id_str": "148547651607085056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690285875/max_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690285875/max_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "functional transforms:couchdb::commits:git #opendata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:37:06 +0000", "from_user": "evilsoft", "from_user_id": 14910488, "from_user_id_str": "14910488", "from_user_name": "Ian Hofmann-Hicks", "geo": null, "id": 148547365031256060, "id_str": "148547365031256064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/195547623/evilTweet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/195547623/evilTweet_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Really digging on #nodejs with #couchdb for data aggregation and mining.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:13:50 +0000", "from_user": "strmpnk", "from_user_id": 198252361, "from_user_id_str": "198252361", "from_user_name": "strmpnk", "geo": null, "id": 148541511989080060, "id_str": "148541511989080064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1243790904/IMG_7685_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1243790904/IMG_7685_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@SaraJChipps it might depend on what's talking to CouchDB but there is a free book here: http://t.co/2avrTMvW", "to_user": "SaraJChipps", "to_user_id": 15524875, "to_user_id_str": "15524875", "to_user_name": "Sara Chipps", "in_reply_to_status_id": 148539164521005060, "in_reply_to_status_id_str": "148539164521005057"}, +{"created_at": "Sun, 18 Dec 2011 23:06:11 +0000", "from_user": "Ben_Hall", "from_user_id": 6898072, "from_user_id_str": "6898072", "from_user_name": "Ben Hall", "geo": null, "id": 148539584173719550, "id_str": "148539584173719552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/593855207/me_thumbnail_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/593855207/me_thumbnail_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@SaraJChipps the CouchDB book / wiki from o'reilly is good", "to_user": "SaraJChipps", "to_user_id": 15524875, "to_user_id_str": "15524875", "to_user_name": "Sara Chipps", "in_reply_to_status_id": 148539164521005060, "in_reply_to_status_id_str": "148539164521005057"}, +{"created_at": "Sun, 18 Dec 2011 22:24:53 +0000", "from_user": "Samisdat", "from_user_id": 5493712, "from_user_id_str": "5493712", "from_user_name": "Bastian Sackermann", "geo": null, "id": 148529190919094270, "id_str": "148529190919094272", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/34424312/quad_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/34424312/quad_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Der Server l\\u00E4uft mit @Nodejs Daten speichern in @CouchDB und http://t.co/7KzDdmZH \\u00FCbernimmt die Session. Sch\\u00F6ner Code ohne PHP ;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:30:03 +0000", "from_user": "MongoQuestion", "from_user_id": 233820847, "from_user_id_str": "233820847", "from_user_name": "Mongo Question", "geo": null, "id": 148485194167500800, "id_str": "148485194167500801", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1207364137/mq_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1207364137/mq_normal.jpg", "source": "<a href="http://learnmongo.com" rel="nofollow">Mongo Question</a>", "text": "\"How to create my DDD entities with Mongodb/Couchdb?\" #MongoDB - http://t.co/Wr1jD2l7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:03:23 +0000", "from_user": "iansari", "from_user_id": 14712598, "from_user_id_str": "14712598", "from_user_name": "Imran Ansari", "geo": null, "id": 148448282325168130, "id_str": "148448282325168128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1181071089/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1181071089/image_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@PeterBell is there @SpringData support for #CouchDB yet?, #CouchBase is gearing up for embedded version, would be helpful for backend intg", "to_user": "PeterBell", "to_user_id": 804749, "to_user_id_str": "804749", "to_user_name": "Peter Bell", "in_reply_to_status_id": 148438460905160700, "in_reply_to_status_id_str": "148438460905160705"}, +{"created_at": "Sun, 18 Dec 2011 16:51:18 +0000", "from_user": "jaseemabid", "from_user_id": 72292440, "from_user_id_str": "72292440", "from_user_name": "JavaScript Ninja!", "geo": null, "id": 148445244550168580, "id_str": "148445244550168577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668109024/IMG_5065_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668109024/IMG_5065_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Thinking @CouchDB :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:27:58 +0000", "from_user": "jaseemabid", "from_user_id": 72292440, "from_user_id_str": "72292440", "from_user_name": "JavaScript Ninja!", "geo": null, "id": 148439370129604600, "id_str": "148439370129604608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668109024/IMG_5065_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668109024/IMG_5065_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Performance Benchmark CouchDB x Relational Databases http://t.co/Tz77UC8E", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:28:58 +0000", "from_user": "alfamale156", "from_user_id": 61744769, "from_user_id_str": "61744769", "from_user_name": "Andrew Woodcock", "geo": null, "id": 148409423134593020, "id_str": "148409423134593025", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693217959/Daddy_and_Emily_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693217959/Daddy_and_Emily_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Restoring CouchDB databases from file http://t.co/3eGtbvis via http://t.co/ZrHEwBSt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:17:23 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148406507250253820, "id_str": "148406507250253825", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @Evangenieur Cradle a #CouchDB #NodeJS client http://t.co/PIOTRi7v", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:06:31 +0000", "from_user": "Evangenieur", "from_user_id": 21945870, "from_user_id_str": "21945870", "from_user_name": "Evan Genieur", "geo": null, "id": 148403772371107840, "id_str": "148403772371107840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/83725129/gunnm2_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/83725129/gunnm2_small_normal.jpg", "source": "<a href="http://www.scoop.it" rel="nofollow">Scoop.it</a>", "text": "Cradle a #CouchDB #NodeJS client http://t.co/jhFktvqN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:44:34 +0000", "from_user": "tinogomes", "from_user_id": 11265902, "from_user_id_str": "11265902", "from_user_name": "Celestino Gomes", "geo": null, "id": 148398249491963900, "id_str": "148398249491963905", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1266978946/Photo_14_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266978946/Photo_14_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "J\\u00E1 terminou o jogo, voltei da piscina e n\\u00E3o terminou a instala\\u00E7\\u00E3o do CouchDB #aff", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:58:22 +0000", "from_user": "obiwon", "from_user_id": 17131304, "from_user_id_str": "17131304", "from_user_name": "Boris Filipov", "geo": null, "id": 148386622776418300, "id_str": "148386622776418304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1129781473/28ae3d7d-b085-47c4-94e2-457415500580_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1129781473/28ae3d7d-b085-47c4-94e2-457415500580_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "http://t.co/D4om9kNG - \"Pay Attention. This is good.\" #couchdb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:16:38 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 148376118569873400, "id_str": "148376118569873409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "couchdb is a database from the future. why the community stalled innovating taking advantage of this is something I'm yet to understand", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:13:04 +0000", "from_user": "tinogomes", "from_user_id": 11265902, "from_user_id_str": "11265902", "from_user_name": "Celestino Gomes", "geo": null, "id": 148375223337631740, "id_str": "148375223337631744", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1266978946/Photo_14_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266978946/Photo_14_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "NO_ossa, demorando uma eternidade para instalar o CouchDB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:02:57 +0000", "from_user": "ewolff", "from_user_id": 15058614, "from_user_id_str": "15058614", "from_user_name": "Eberhard Wolff", "geo": null, "id": 148357576583692300, "id_str": "148357576583692288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/55233631/portraetminineu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/55233631/portraetminineu_normal.jpg", "source": "<a href="http://www.twitter.com" rel="nofollow">Twitter for Windows Phone</a>", "text": "@pavlobaron it will eventually happen. E.g. look at CouchDB and membase.", "to_user": "pavlobaron", "to_user_id": 70747148, "to_user_id_str": "70747148", "to_user_name": "Pavlo Baron", "in_reply_to_status_id": 148355456220413950, "in_reply_to_status_id_str": "148355456220413952"}, +{"created_at": "Sun, 18 Dec 2011 10:15:15 +0000", "from_user": "tikaszvince", "from_user_id": 41066098, "from_user_id_str": "41066098", "from_user_name": "Vince Tik\\u00E1sz", "geo": null, "id": 148345572674387970, "id_str": "148345572674387968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1599070602/facepalm-600-ff_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599070602/facepalm-600-ff_normal.jpg", "source": "<a href="http://yamm.hu" rel="nofollow">Yamm!</a>", "text": "#weblabor RT @phpizer CouchDB basics for PHP developers http://t.co/mzxM1CdP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:14:46 +0000", "from_user": "iansari", "from_user_id": 14712598, "from_user_id_str": "14712598", "from_user_name": "Imran Ansari", "geo": null, "id": 148254856627494900, "id_str": "148254856627494912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1181071089/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1181071089/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "#TouchDB a #CouchDB compatible mobile database (Objective-C version) https://t.co/IVtocjUe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:49:47 +0000", "from_user": "annwitbrock", "from_user_id": 14367689, "from_user_id_str": "14367689", "from_user_name": "Ann Witbrock", "geo": null, "id": 148233467115737100, "id_str": "148233467115737088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/552887655/red_fairy_lantern_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/552887655/red_fairy_lantern_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @Crad: Just pushed Tinman 0.3.0 to pypi with support for RabbitMQ, Redis, CouchDB templates and more. https://t.co/asUF8WIV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:39:51 +0000", "from_user": "drupalsteve", "from_user_id": 109211199, "from_user_id_str": "109211199", "from_user_name": "Steve Oliver", "geo": null, "id": 148230967671263230, "id_str": "148230967671263232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/833566844/drupal-steve-and-drupal-baby-small_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/833566844/drupal-steve-and-drupal-baby-small_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Interesting comments on Git and CouchDB :: \"What is the CouchDB replication protocol? Is it like Git?\" http://t.co/UHnDnU3w", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:14:12 +0000", "from_user": "Crad", "from_user_id": 12807022, "from_user_id_str": "12807022", "from_user_name": "Gavin M. Roy", "geo": null, "id": 148224511953743870, "id_str": "148224511953743873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1271485315/Screen_shot_2011-03-13_at_5.23.58_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1271485315/Screen_shot_2011-03-13_at_5.23.58_PM_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Just pushed Tinman 0.3.0 to pypi with support for RabbitMQ, Redis, CouchDB templates and more. https://t.co/asUF8WIV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:52:30 +0000", "from_user": "JLeeGhost", "from_user_id": 306117941, "from_user_id_str": "306117941", "from_user_name": "Johnneylee Rollins", "geo": null, "id": 148219051594887170, "id_str": "148219051594887168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1370810672/SpaceGhost_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1370810672/SpaceGhost_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@websuasion_ryan I love couchdb, I've been following it for some years, even before sofa and authentication were built in. Love map reduce.", "to_user": "websuasion_ryan", "to_user_id": 12664822, "to_user_id_str": "12664822", "to_user_name": "J. Ryan Williams", "in_reply_to_status_id": 148217679331856400, "in_reply_to_status_id_str": "148217679331856384"}, +{"created_at": "Sun, 18 Dec 2011 01:25:10 +0000", "from_user": "websuasion_ryan", "from_user_id": 12664822, "from_user_id_str": "12664822", "from_user_name": "J. Ryan Williams", "geo": null, "id": 148212174421098500, "id_str": "148212174421098496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1662853709/rubyredavitar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662853709/rubyredavitar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@JLeeGhost What do you like about OrientDB over, say, CouchDB (or Mongo... on paper... I know you said you'd only dabbled with it).", "to_user": "JLeeGhost", "to_user_id": 306117941, "to_user_id_str": "306117941", "to_user_name": "Johnneylee Rollins", "in_reply_to_status_id": 148210266243477500, "in_reply_to_status_id_str": "148210266243477504"}, +{"created_at": "Sun, 18 Dec 2011 00:44:34 +0000", "from_user": "ikioteck", "from_user_id": 276776806, "from_user_id_str": "276776806", "from_user_name": "Israel Medina", "geo": null, "id": 148201956689723400, "id_str": "148201956689723393", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1299115366/kio_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1299115366/kio_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @phpizer: CouchDB basics for PHP developers http://t.co/n4R5oqgF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:15:48 +0000", "from_user": "SusanPotter", "from_user_id": 16048796, "from_user_id_str": "16048796", "from_user_name": "Susan Potter", "geo": null, "id": 148194715639095300, "id_str": "148194715639095296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1238168669/me_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1238168669/me_normal.png", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Another project I have to figure out what is OSS-able: Erlang OTP config utilities to hook into Heroku (Redis, PG, CouchDB, Memcached, ...)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:37:45 +0000", "from_user": "alfamale156", "from_user_id": 61744769, "from_user_id_str": "61744769", "from_user_name": "Andrew Woodcock", "geo": null, "id": 148185142177968130, "id_str": "148185142177968129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693217959/Daddy_and_Emily_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693217959/Daddy_and_Emily_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Curl returning \\u201CInvalid UTF-8 JSON\\u201D error from CouchDb on Windows although JSON is correct http://t.co/5XHNKbRI via http://t.co/ZrHEwBSt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:27:18 +0000", "from_user": "paulkarayan", "from_user_id": 14326437, "from_user_id_str": "14326437", "from_user_name": "paulkarayan", "geo": null, "id": 148182511007186940, "id_str": "148182511007186944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/52532880/another_shitty_picture_happy_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/52532880/another_shitty_picture_happy_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "not sure why couchdb has suddenly stopped hating me, but I'll take it. pacified by pitchfork's spotify list? http://t.co/w2mJSO0t", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:26:21 +0000", "from_user": "dadicool", "from_user_id": 14200949, "from_user_id_str": "14200949", "from_user_name": "Dali Kilani", "geo": null, "id": 148182274049966080, "id_str": "148182274049966080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/86577298/portrait_dali_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/86577298/portrait_dali_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "#Kanso : the proper tool for #couchapps http://t.co/ewEYCFDy -> so glad I stumbled upon this! #couchdb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:18:09 +0000", "from_user": "maomuriel", "from_user_id": 41252072, "from_user_id_str": "41252072", "from_user_name": "Mauricio Muriel", "geo": null, "id": 148180208783081470, "id_str": "148180208783081472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/329899073/mia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/329899073/mia_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @phpizer: CouchDB basics for PHP developers http://t.co/n4R5oqgF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:04:22 +0000", "from_user": "ak4t0sh", "from_user_id": 394044498, "from_user_id_str": "394044498", "from_user_name": "ak4t0sh", "geo": null, "id": 148176739858788350, "id_str": "148176739858788352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1636817952/avatar_power_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1636817952/avatar_power_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @phpizer: CouchDB basics for PHP developers http://t.co/n4R5oqgF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:52:18 +0000", "from_user": "dadicool", "from_user_id": 14200949, "from_user_id_str": "14200949", "from_user_name": "Dali Kilani", "geo": null, "id": 148173701383335940, "id_str": "148173701383335936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/86577298/portrait_dali_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/86577298/portrait_dali_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "Sharing code between views http://t.co/LmTXww46 #couchdb #kanso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:58:00 +0000", "from_user": "madmw", "from_user_id": 1671311, "from_user_id_str": "1671311", "from_user_name": "Juli\\u00E1n Romero", "geo": null, "id": 148160037339140100, "id_str": "148160037339140096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/450218472/Avatar_Canencia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/450218472/Avatar_Canencia_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "apache, lighttpd, couchdb, redis, posgresql and a bunch of nodejs and django custom servers back to life; dinner time", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:39:57 +0000", "from_user": "cjk101010", "from_user_id": 27620736, "from_user_id_str": "27620736", "from_user_name": "Christian Kruse", "geo": null, "id": 148155495218290700, "id_str": "148155495218290690", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/643303938/Avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/643303938/Avatar_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "heavy database work is heavy. #couchdb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:15:42 +0000", "from_user": "SOTaggedQs", "from_user_id": 413434393, "from_user_id_str": "413434393", "from_user_name": "Mithun Patel", "geo": null, "id": 148149394980618240, "id_str": "148149394980618240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Can I store a CSS \"theme\" as a JSON document in CouchDB? ( and then load it and apply it? ): The syntax of CSS i... http://t.co/bikq0Mpo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:15:42 +0000", "from_user": "jQueryonSO", "from_user_id": 413032106, "from_user_id_str": "413032106", "from_user_name": "jQuery on SO", "geo": null, "id": 148149393902665730, "id_str": "148149393902665728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1640199208/jqueryso_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640199208/jqueryso_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Can I store a CSS \"theme\" as a JSON document in CouchDB? ( and then load it and apply it? ): The syntax of CSS i... http://t.co/nXPMEjj9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:46:33 +0000", "from_user": "tariquetuku", "from_user_id": 25580301, "from_user_id_str": "25580301", "from_user_name": "Tarique Tuku", "geo": null, "id": 148142055430946800, "id_str": "148142055430946816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1381198940/10042011201_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1381198940/10042011201_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @phpizer: CouchDB basics for PHP developers http://t.co/n4R5oqgF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:36:16 +0000", "from_user": "paulkarayan", "from_user_id": 14326437, "from_user_id_str": "14326437", "from_user_name": "paulkarayan", "geo": null, "id": 148139471467053060, "id_str": "148139471467053058", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/52532880/another_shitty_picture_happy_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/52532880/another_shitty_picture_happy_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "house cleaning then figuring out what the hell is wrong with my CouchDB installation", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:23:15 +0000", "from_user": "viking_olof", "from_user_id": 147300633, "from_user_id_str": "147300633", "from_user_name": "Olof", "geo": null, "id": 148136194495102980, "id_str": "148136194495102976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/936074674/80x80_comic0024_laymGAJROZkAVpgnnqSvQ_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/936074674/80x80_comic0024_laymGAJROZkAVpgnnqSvQ_normal.jpg", "source": "<a href="http://myworld.se/olga-olof-sitting-in-a-tree/" rel="nofollow">Olga</a>", "text": "CouchDB basics for PHP developers http://t.co/ULRmsa6a #php", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:06:08 +0000", "from_user": "bbpmkoert", "from_user_id": 21104854, "from_user_id_str": "21104854", "from_user_name": "Michael Koert", "geo": null, "id": 148131884533166080, "id_str": "148131884533166080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/83730970/IMG_0309_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/83730970/IMG_0309_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @phpizer: CouchDB basics for PHP developers http://t.co/n4R5oqgF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:54:36 +0000", "from_user": "natevw", "from_user_id": 8419342, "from_user_id_str": "8419342", "from_user_name": "Nathan Vander Wilt", "geo": null, "id": 148128982297088000, "id_str": "148128982297088000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1266548910/updated_profile_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266548910/updated_profile_pic_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Basically, I don't want half the data that raw @couchdb view output sends, but using a simple _list format function halves the speed too :-(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:52:14 +0000", "from_user": "natevw", "from_user_id": 8419342, "from_user_id_str": "8419342", "from_user_name": "Nathan Vander Wilt", "geo": null, "id": 148128387901292540, "id_str": "148128387901292544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1266548910/updated_profile_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266548910/updated_profile_pic_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Door no. 1: send 11.25MB of data in 16.3s\\nDoor no. 2: send 5.00MB of data in 34.86s\\n\\nBlame the IPC-boundary between @couchdb and its _lists?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Sat, 17 Dec 2011 19:51:34 +0000", "from_user": "frabcus", "from_user_id": 14328152, "from_user_id_str": "14328152", "from_user_name": "Francis Irving", "geo": null, "id": 148128219898449920, "id_str": "148128219898449920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/57028726/garage_with_4_cropped_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/57028726/garage_with_4_cropped_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@stef mongodb or couchdb? and would you need fancier queries, or syncing or just download to use?", "to_user": "stef", "to_user_id": 853471, "to_user_id_str": "853471", "to_user_name": "Stef Lewandowski", "in_reply_to_status_id": 148091931900117000, "in_reply_to_status_id_str": "148091931900116992"}, +{"created_at": "Sat, 17 Dec 2011 19:48:13 +0000", "from_user": "vlizco", "from_user_id": 41031976, "from_user_id_str": "41031976", "from_user_name": "Victor Lontoh", "geo": null, "id": 148127376121937920, "id_str": "148127376121937920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/923136180/Iron_Man_Teaser_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/923136180/Iron_Man_Teaser_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "CouchDB basics for PHP developers: http://t.co/wrCYja9j #php", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:48:09 +0000", "from_user": "phpizer", "from_user_id": 25524283, "from_user_id_str": "25524283", "from_user_name": "PHP Web Developer", "geo": null, "id": 148127362209431550, "id_str": "148127362209431553", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/104692230/php_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/104692230/php_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "CouchDB basics for PHP developers http://t.co/n4R5oqgF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:16:43 +0000", "from_user": "bdoughan", "from_user_id": 145827900, "from_user_id_str": "145827900", "from_user_name": "Blaise Doughan", "geo": null, "id": 148119450783195140, "id_str": "148119450783195136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1024958935/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1024958935/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@franciscophilip @notessensei You are looking to create a Java client to access CouchDB's JSON RESTful API?", "to_user": "franciscophilip", "to_user_id": 25666935, "to_user_id_str": "25666935", "to_user_name": "Francisco Philip", "in_reply_to_status_id": 148030708579975170, "in_reply_to_status_id_str": "148030708579975168"}, +{"created_at": "Sat, 17 Dec 2011 19:00:21 +0000", "from_user": "patrickDurusau", "from_user_id": 152194866, "from_user_id_str": "152194866", "from_user_name": "Patrick Durusau", "geo": null, "id": 148115332865867780, "id_str": "148115332865867778", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/961579480/patrick_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/961579480/patrick_normal.jpeg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Couchbase #topicmaps #NoSQL #Couchbase #CouchDB - http://t.co/05U3i3Gq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:52:47 +0000", "from_user": "Nerdmedia", "from_user_id": 137109537, "from_user_id_str": "137109537", "from_user_name": "Serkan Sipahi", "geo": null, "id": 148113428601520130, "id_str": "148113428601520129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/924084793/twitter_ente_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/924084793/twitter_ente_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "got my first couchDB webserver from raumopol.de ;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:42:50 +0000", "from_user": "pisatoshi", "from_user_id": 9822602, "from_user_id_str": "9822602", "from_user_name": "Satoshi Takida", "geo": null, "id": 148095821722828800, "id_str": "148095821722828801", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1130983937/GRP_0034_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1130983937/GRP_0034_normal.JPG", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "cloudant\\u306Ecouchdb\\u30DB\\u30B9\\u30C6\\u30A3\\u30F3\\u30B0\\u767B\\u9332\\u3057\\u3066\\u307F\\u305F\\u3002\\u3053\\u306A\\u3044\\u3060\\u767B\\u9332\\u3067\\u304D\\u306A\\u304B\\u3063\\u305F\\u306E\\u306F\\u30DB\\u30F3\\u30C8\\u306B\\u30B7\\u30B9\\u30C6\\u30E0\\u5074\\u306E\\u554F\\u984C\\u3060\\u3063\\u305F\\u307F\\u305F\\u3044", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:58:00 +0000", "from_user": "Medic", "from_user_id": 18257882, "from_user_id_str": "18257882", "from_user_name": "Medic Mobile", "geo": null, "id": 148084539070234620, "id_str": "148084539070234624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1183159540/MANDA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1183159540/MANDA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @caolan: Notes from the #couchapp community meeting Dec 2011 https://t.co/pzXlQs8U - thanks @maxogden for writing these up! #couchdb #kanso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:55:53 +0000", "from_user": "nieuws_website", "from_user_id": 202211352, "from_user_id_str": "202211352", "from_user_name": "nieuws_website", "geo": null, "id": 148068907343822850, "id_str": "148068907343822848", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1145927756/capica-website_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1145927756/capica-website_normal.gif", "source": "<a href="http://www.capica.nl" rel="nofollow">Capica B.V.</a>", "text": "Internet begrip: CouchDB http://t.co/CFhrqEJH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:47:51 +0000", "from_user": "alfamale156", "from_user_id": 61744769, "from_user_id_str": "61744769", "from_user_name": "Andrew Woodcock", "geo": null, "id": 148066888721772540, "id_str": "148066888721772545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693217959/Daddy_and_Emily_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693217959/Daddy_and_Emily_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Restoring CouchDB databases from file http://t.co/3eGtbvis via http://t.co/ZrHEwBSt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:07:01 +0000", "from_user": "jaseemabid", "from_user_id": 72292440, "from_user_id_str": "72292440", "from_user_name": "JavaScript Ninja!", "geo": null, "id": 148056610026176500, "id_str": "148056610026176513", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668109024/IMG_5065_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668109024/IMG_5065_normal.JPG", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "mapReduce is bloody awesome with couchDB :-) exploring more..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:34:32 +0000", "from_user": "alFReD88NSH", "from_user_id": 401435995, "from_user_id_str": "401435995", "from_user_name": "Farid Neshat", "geo": null, "id": 148048436527251460, "id_str": "148048436527251456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1680222776/226933_1697386080838_1423463094_31376426_7422822_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680222776/226933_1697386080838_1423463094_31376426_7422822_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I am starting to have a feeling that #couchdb has a weird name!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:00:09 +0000", "from_user": "patrickDurusau", "from_user_id": 152194866, "from_user_id_str": "152194866", "from_user_name": "Patrick Durusau", "geo": null, "id": 148039783464189950, "id_str": "148039783464189953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/961579480/patrick_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/961579480/patrick_normal.jpeg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Getting Started with CouchDB #topicmaps #NoSQL #CouchDB - http://t.co/wMUg73Rb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:53:12 +0000", "from_user": "Zhen_Guang", "from_user_id": 20353769, "from_user_id_str": "20353769", "from_user_name": "Zhen Guang", "geo": null, "id": 148038035970326530, "id_str": "148038035970326528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/423870151/n713891526_270276_3040_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/423870151/n713891526_270276_3040_normal.jpg", "source": "<a href="http://gettwidget.com" rel="nofollow">Twidget App</a>", "text": "CouchDB... CouchDB... CouchDB... CouchDB... CouchDB...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:37:49 +0000", "from_user": "meganehouser", "from_user_id": 188343967, "from_user_id_str": "188343967", "from_user_name": "\\u3081\\u304C\\u306D\\u306F\\u3046\\u3055\\u30FC", "geo": null, "id": 148034164954902530, "id_str": "148034164954902529", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1122988658/meganehouser_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1122988658/meganehouser_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u3084\\u3063\\u3068\\u30DB\\u30B9\\u30C8OS\\u304B\\u3089\\u30B2\\u30B9\\u30C8OS\\u306ECouchDB\\u306B\\u7E4B\\u304C\\u308B\\u3088\\u3046\\u306B\\u306A\\u3063\\u305F\\u2026\\u3002\\u75B2\\u52B4\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:30:07 +0000", "from_user": "meganehouser", "from_user_id": 188343967, "from_user_id_str": "188343967", "from_user_name": "\\u3081\\u304C\\u306D\\u306F\\u3046\\u3055\\u30FC", "geo": null, "id": 148032224950878200, "id_str": "148032224950878208", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1122988658/meganehouser_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1122988658/meganehouser_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u5165\\u9580\\u30BD\\u30FC\\u30B7\\u30E3\\u30EB\\u30C7\\u30FC\\u30BF\\u8AAD\\u3093\\u3067\\u3001CouchDB\\u3092\\u8A66\\u3057\\u3066\\u307F\\u305F\\u304F\\u306A\\u3063\\u305F\\uFF01\\u305B\\u3063\\u304B\\u304F\\u306A\\u306E\\u3067VirtualBox\\u3067Ubuntu\\u5165\\u308C\\u3066\\u3084\\u3063\\u3066\\u307F\\u3066\\u308B\\u3093\\u3060\\u304C\\u3044\\u3061\\u3044\\u3061\\u884C\\u304D\\u8A70\\u307E\\u308B\\u2026\\u3002Windows\\u8133\\u306B\\u306F\\u96E3\\u3057\\u3044\\u306A\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:24:05 +0000", "from_user": "franciscophilip", "from_user_id": 25666935, "from_user_id_str": "25666935", "from_user_name": "Francisco Philip", "geo": null, "id": 148030708579975170, "id_str": "148030708579975168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1509539265/nycm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509539265/nycm_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@bdoughan @notessensei on couchdb?", "to_user": "bdoughan", "to_user_id": 145827900, "to_user_id_str": "145827900", "to_user_name": "Blaise Doughan", "in_reply_to_status_id": 148027002547470340, "in_reply_to_status_id_str": "148027002547470336"}, +{"created_at": "Sat, 17 Dec 2011 11:45:53 +0000", "from_user": "merissimissima", "from_user_id": 262898875, "from_user_id_str": "262898875", "from_user_name": "Mery", "geo": null, "id": 148005995786932220, "id_str": "148005995786932224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1435096614/mariachiara-pezzotti_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1435096614/mariachiara-pezzotti_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @peppertw: [DEV] the migration from @CouchDB to @mongodb it's even closer with the last commit by @odracci . Well done!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:29:24 +0000", "from_user": "cirpo", "from_user_id": 452783, "from_user_id_str": "452783", "from_user_name": "cirpo", "geo": null, "id": 148001847993565200, "id_str": "148001847993565184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1614690021/IMG_1270_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1614690021/IMG_1270_1_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @peppertw: [DEV] the migration from @CouchDB to @mongodb it's even closer with the last commit by @odracci . Well done!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:29:22 +0000", "from_user": "webdebresa", "from_user_id": 272496798, "from_user_id_str": "272496798", "from_user_name": "webdebs", "geo": null, "id": 148001837088387070, "id_str": "148001837088387072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1313829230/187879_173601456023467_2524482_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1313829230/187879_173601456023467_2524482_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @peppertw: [DEV] the migration from @CouchDB to @mongodb it's even closer with the last commit by @odracci . Well done!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:28:59 +0000", "from_user": "peppertw", "from_user_id": 398642585, "from_user_id_str": "398642585", "from_user_name": "peppertweet", "geo": null, "id": 148001742687186940, "id_str": "148001742687186944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1639488504/loghettino_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639488504/loghettino_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "[DEV] the migration from @CouchDB to @mongodb it's even closer with the last commit by @odracci . Well done!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:16:52 +0000", "from_user": "ktiedt", "from_user_id": 30162398, "from_user_id_str": "30162398", "from_user_name": "Karl Tiedt", "geo": null, "id": 147968493957029900, "id_str": "147968493957029888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1188433232/karl_avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1188433232/karl_avatar_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "sigh, #couchdb why wont you return results when I want to match a single value in a complex query\\u2026 startkey=[\"a\"]&endkey=[\"a\"]", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:14:05 +0000", "from_user": "Kerrilqz", "from_user_id": 431755503, "from_user_id_str": "431755503", "from_user_name": "Carli Demo", "geo": null, "id": 147967791344009200, "id_str": "147967791344009216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681148073/0lpqub55cx_112547976-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681148073/0lpqub55cx_112547976-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "CouchDB: The Definitive Guide: Three of CouchDB's creators show you how to use this document-oriented database a... http://t.co/n3cPausF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:29:49 +0000", "from_user": "shase428", "from_user_id": 16577593, "from_user_id_str": "16577593", "from_user_name": "s.hasegawa", "geo": null, "id": 147956653650751500, "id_str": "147956653650751490", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1343603797/image_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1343603797/image_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u3042\\u30FC\\uFF08\\u3068\\u3057\\u304B\\u3044\\u3048\\u306A\\u3044\\uFF09 RT @mkouhei \\u3042\\u308C\\u3001CouchApp\\u304CDebian\\u304B\\u3089\\u6D88\\u3048\\u3066\\u308B\\u3002 #couchdb", "to_user": "mkouhei", "to_user_id": 7642012, "to_user_id_str": "7642012", "to_user_name": "Kouhei Maeda", "in_reply_to_status_id": 147955754106757120, "in_reply_to_status_id_str": "147955754106757121"}, +{"created_at": "Sat, 17 Dec 2011 08:26:19 +0000", "from_user": "resz", "from_user_id": 17708717, "from_user_id_str": "17708717", "from_user_name": "\\u3057\\u308A\\u3068\\u3063\\u305F\\u30FC", "geo": null, "id": 147955773434114050, "id_str": "147955773434114049", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1501759559/bot4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1501759559/bot4_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @mkouhei: \\u3042\\u308C\\u3001CouchApp\\u304CDebian\\u304B\\u3089\\u6D88\\u3048\\u3066\\u308B\\u3002 #couchdb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:26:15 +0000", "from_user": "mkouhei", "from_user_id": 7642012, "from_user_id_str": "7642012", "from_user_name": "Kouhei Maeda", "geo": null, "id": 147955754106757120, "id_str": "147955754106757121", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1374594278/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1374594278/profile_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "\\u3042\\u308C\\u3001CouchApp\\u304CDebian\\u304B\\u3089\\u6D88\\u3048\\u3066\\u308B\\u3002 #couchdb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 06:24:17 +0000", "from_user": "sof_ruby", "from_user_id": 73078298, "from_user_id_str": "73078298", "from_user_name": "StackOverFlow Ruby", "geo": null, "id": 147925060676620300, "id_str": "147925060676620288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/407634629/ruby-logo-R_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/407634629/ruby-logo-R_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Error on running CouchRest.put(): I need to update a couchdb document, when i try and run the command in irb \\n\\n ... http://t.co/RFuCrV4f", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 03:40:30 +0000", "from_user": "stackfeed", "from_user_id": 237310237, "from_user_id_str": "237310237", "from_user_name": "StackOverflow", "geo": null, "id": 147883842219417600, "id_str": "147883842219417601", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Error on running CouchRest.put(): I need to update a couchdb document, when i try and run the command command \\n\\n... http://t.co/R762UdL9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:35:19 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 147867440523657200, "id_str": "147867440523657216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "follow (0.6.1): http://t.co/uqj8pmxS Extremely robust, fault-tolerant CouchDB changes follower", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:23:25 +0000", "from_user": "parkerforprez", "from_user_id": 161733521, "from_user_id_str": "161733521", "from_user_name": "Angel Martinez", "geo": null, "id": 147864444591022080, "id_str": "147864444591022080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1671855454/299955_10150300096001868_583751867_8522478_1963744810_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671855454/299955_10150300096001868_583751867_8522478_1963744810_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "ah, found what I was looking for! http://t.co/x1yC3wOi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:59:39 +0000", "from_user": "thinkjson", "from_user_id": 24170535, "from_user_id_str": "24170535", "from_user_name": "Mark Cahill", "geo": null, "id": 147843365231276030, "id_str": "147843365231276032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1526946440/16766_100877089938022_100000471935187_20645_5642428_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1526946440/16766_100877089938022_100000471935187_20645_5642428_n_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@lukewelling We use CouchDB with LucidDB to get the best of both worlds. Unstructured documents *and* reporting via SQL.", "to_user": "lukewelling", "to_user_id": 14840808, "to_user_id_str": "14840808", "to_user_name": "Luke Welling", "in_reply_to_status_id": 147436795318124540, "in_reply_to_status_id_str": "147436795318124545"}, +{"created_at": "Sat, 17 Dec 2011 00:27:09 +0000", "from_user": "Ijokarumawak", "from_user_id": 128910202, "from_user_id_str": "128910202", "from_user_name": "Koji Kawamura", "geo": null, "id": 147835186745315330, "id_str": "147835186745315328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1200646395/Ijokarumawak_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1200646395/Ijokarumawak_normal.jpg", "source": "<a href="http://SkyGrid.com/" rel="nofollow">SkyGrid</a>", "text": "Couchbase Celebrates a Successful Year\\nhttp://t.co/X2ttOjVh Pokemon! These case studies r about Membase, only? Are they using CouchDB?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:23:39 +0000", "from_user": "tomdale", "from_user_id": 668863, "from_user_id_str": "668863", "from_user_name": "Tom Dale", "geo": null, "id": 147834306411241470, "id_str": "147834306411241472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317834118/avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317834118/avatar_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@awiltsch I think most people usually put a thin layer between CouchDB and the web. CouchDB protocol is hard to consume raw.", "to_user": "awiltsch", "to_user_id": 35546323, "to_user_id_str": "35546323", "to_user_name": "Alex W", "in_reply_to_status_id": 147832273885081600, "in_reply_to_status_id_str": "147832273885081600"}, +{"created_at": "Sat, 17 Dec 2011 00:16:45 +0000", "from_user": "datalaundry", "from_user_id": 19220745, "from_user_id_str": "19220745", "from_user_name": "Mike West", "geo": null, "id": 147832566504886270, "id_str": "147832566504886273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/623100090/mikewarmachine192square_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/623100090/mikewarmachine192square_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @caolan: Notes from the #couchapp community meeting Dec 2011 https://t.co/pzXlQs8U - thanks @maxogden for writing these up! #couchdb #kanso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:08:02 +0000", "from_user": "awiltsch", "from_user_id": 35546323, "from_user_id_str": "35546323", "from_user_name": "Alex W", "geo": null, "id": 147830375194968060, "id_str": "147830375194968065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1548646247/SkeleTON_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1548646247/SkeleTON_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@tomdale What's the backend for Amber.js? I've got a lot of CouchDB data I'd like to expose", "to_user": "tomdale", "to_user_id": 668863, "to_user_id_str": "668863", "to_user_name": "Tom Dale", "in_reply_to_status_id": 147825175319166980, "in_reply_to_status_id_str": "147825175319166976"}, +{"created_at": "Fri, 16 Dec 2011 23:12:34 +0000", "from_user": "ophbalance", "from_user_id": 17058064, "from_user_id_str": "17058064", "from_user_name": "Matthew D Williams", "geo": null, "id": 147816417809547260, "id_str": "147816417809547264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1442127524/Snapshot_20110714_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1442127524/Snapshot_20110714_normal.jpg", "source": "<a href="http://getspaz.com" rel="nofollow">Spaz HD for webOS</a>", "text": "RT @AndyJ turning x-men: first class on before for the first time whilst getting in to Node and CouchDB was a mistake. Movie 1, Leaning 0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:02:40 +0000", "from_user": "booyaa", "from_user_id": 719673, "from_user_id_str": "719673", "from_user_name": "booyaa", "geo": null, "id": 147813925482807300, "id_str": "147813925482807297", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/640332281/boo-sm-avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/640332281/boo-sm-avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @maxogden: notes from the #couchdb couchapp community meeting https://t.co/wmiVpLB9 tl;dr we want couchapps to work as offline chrome extensions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:58:03 +0000", "from_user": "JavierVilchezL", "from_user_id": 74251873, "from_user_id_str": "74251873", "from_user_name": "Javier Alexander", "geo": null, "id": 147812761756368900, "id_str": "147812761756368896", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1664130266/ubuntu11_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664130266/ubuntu11_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@programasphp ser\\u00EDa excelente un taller de php con bases de datos no sql #MongoDB #CouchDB y #Kasandra por ejemplo.", "to_user": "programasphp", "to_user_id": 165197451, "to_user_id_str": "165197451", "to_user_name": "Programadores de PHP", "in_reply_to_status_id": 147811051235311600, "in_reply_to_status_id_str": "147811051235311616"}, +{"created_at": "Fri, 16 Dec 2011 22:46:49 +0000", "from_user": "zm1th", "from_user_id": 17403517, "from_user_id_str": "17403517", "from_user_name": "Nate", "geo": null, "id": 147809935147810800, "id_str": "147809935147810816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1098563804/caveman_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1098563804/caveman_normal.gif", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "I'm looking to move away from couchrest_model. What's YOUR favorite way to get at couchdb from ruby?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:36:37 +0000", "from_user": "unhosted", "from_user_id": 188843108, "from_user_id_str": "188843108", "from_user_name": "Unhosted", "geo": null, "id": 147807366975459330, "id_str": "147807366975459328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1571295852/unhosted-logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1571295852/unhosted-logo_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@raster @jasonbot2000 Hi! yes, like CouchDB, ownCloud is compatible with remoteStorage http://t.co/5hma7ID2 and the devs are buddies of ours", "to_user": "raster", "to_user_id": 6177, "to_user_id_str": "6177", "to_user_name": "Pete Prodoehl", "in_reply_to_status_id": 147729893873025020, "in_reply_to_status_id_str": "147729893873025025"}, +{"created_at": "Fri, 16 Dec 2011 22:31:23 +0000", "from_user": "benoitc", "from_user_id": 770056, "from_user_id_str": "770056", "from_user_name": "beno\\u00EEt chesneau", "geo": null, "id": 147806050756739070, "id_str": "147806050756739073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/76299981/avatar100x100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/76299981/avatar100x100_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @refugeio: There is a sprint on the refuge project this week-end, any help will be appreciated http://t.co/INVfh2zI #couchdb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:19:19 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 147803016353943550, "id_str": "147803016353943552", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "replicate (0.2.0): http://t.co/tHEWdSOD A customizable CouchDB replicator in node.js.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:07:00 +0000", "from_user": "AndyJ", "from_user_id": 6203362, "from_user_id_str": "6203362", "from_user_name": "Andy Jarrett", "geo": null, "id": 147799917027541000, "id_str": "147799917027540992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1610771482/Photo_on_28-10-2011_at_15.31__4_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610771482/Photo_on_28-10-2011_at_15.31__4_copy_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "turning x-men: first class on before for the first time whilst getting in to Node and CouchDB was a mistake. Movie 1, Leaning 0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:55:18 +0000", "from_user": "VoIP2600", "from_user_id": 312912958, "from_user_id_str": "312912958", "from_user_name": "Patrick Sullivan", "geo": null, "id": 147796971783061500, "id_str": "147796971783061504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "http://t.co/ttkLjdip\\n\\nGood overview how we use BigCouch (and CouchDB) as our DB for our platform.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:46:13 +0000", "from_user": "bgnori", "from_user_id": 23901870, "from_user_id_str": "23901870", "from_user_name": "Nori", "geo": null, "id": 147794685509898240, "id_str": "147794685509898240", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/93610285/Flowers002_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/93610285/Flowers002_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "CouchDB\\u306F\\u660E\\u3089\\u304B\\u306Btoo much\\u3060\\u306A\\u3041\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:42:45 +0000", "from_user": "me_bx", "from_user_id": 357548180, "from_user_id_str": "357548180", "from_user_name": "Mehdi El Fadil", "geo": null, "id": 147793814210359300, "id_str": "147793814210359296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1627782844/photo_-_identite_-_square_-_300_x_300_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627782844/photo_-_identite_-_square_-_300_x_300_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @strmpnk: Good to see funding go Cloudant's way. It's definitely important for the entire CouchDB community.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:33:38 +0000", "from_user": "bgnori", "from_user_id": 23901870, "from_user_id_str": "23901870", "from_user_name": "Nori", "geo": null, "id": 147791520026734600, "id_str": "147791520026734592", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/93610285/Flowers002_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/93610285/Flowers002_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "twisted.enterprise.adbapi \\u3063\\u3066\\u3044\\u3046\\u306E\\u304C\\u3042\\u308B\\u306A\\u3041\\u3002\\u3042\\u3068\\u306Fpaisley for CouchDB\\u304B\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:31:09 +0000", "from_user": "mandric", "from_user_id": 3474, "from_user_id_str": "3474", "from_user_name": "Milan Andric", "geo": null, "id": 147790893963939840, "id_str": "147790893963939840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/64558932/IMG_0038_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/64558932/IMG_0038_normal.PNG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @caolan: Notes from the #couchapp community meeting Dec 2011 https://t.co/pzXlQs8U - thanks @maxogden for writing these up! #couchdb #kanso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:27:22 +0000", "from_user": "semanio", "from_user_id": 43466088, "from_user_id_str": "43466088", "from_user_name": "Nathan (Nate) Hanna", "geo": null, "id": 147789941483642880, "id_str": "147789941483642880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1524091859/93a2067ea3239176e9611e5148417a5d_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1524091859/93a2067ea3239176e9611e5148417a5d_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Cassandra vs MongoDB vs CouchDB vs Redis vs Riak vs HBase comparison :: KKovacs http://t.co/h3tprGSF via @addthis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:26:40 +0000", "from_user": "jchris", "from_user_id": 1623, "from_user_id_str": "1623", "from_user_name": "J Chris Anderson", "geo": null, "id": 147789763225718800, "id_str": "147789763225718784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1611440478/IMG_0049_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611440478/IMG_0049_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @maxogden: notes from the #couchdb couchapp community meeting https://t.co/wmiVpLB9 tl;dr we want couchapps to work as offline chrome extensions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:18:20 +0000", "from_user": "robertoames", "from_user_id": 26302524, "from_user_id_str": "26302524", "from_user_name": "Robert Ames", "geo": null, "id": 147787669689217020, "id_str": "147787669689217025", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1601392937/ROA-small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601392937/ROA-small_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Nice view backwards and forwards from @Couchbase Clears of Membase, CouchDB, Couchbase Server Confusion http://t.co/Tha0cIeE via @gotrapit", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:09:12 +0000", "from_user": "andrewa2", "from_user_id": 6086892, "from_user_id_str": "6086892", "from_user_name": "Andrew Sardone", "geo": null, "id": 147785369428049920, "id_str": "147785369428049921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1096256131/foo2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1096256131/foo2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @maxogden: notes from the #couchdb couchapp community meeting https://t.co/wmiVpLB9 tl;dr we want couchapps to work as offline chrome extensions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:18:47 +0000", "from_user": "ryanjarvinen", "from_user_id": 14945367, "from_user_id_str": "14945367", "from_user_name": "ryan", "geo": null, "id": 147772683210330100, "id_str": "147772683210330112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1227505866/sp_head_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1227505866/sp_head_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @maxogden: notes from the #couchdb couchapp community meeting https://t.co/wmiVpLB9 tl;dr we want couchapps to work as offline chrome extensions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:12:02 +0000", "from_user": "caolan", "from_user_id": 12185182, "from_user_id_str": "12185182", "from_user_name": "Caolan McMahon", "geo": null, "id": 147770982948548600, "id_str": "147770982948548608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1328677360/colourful_cropped_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1328677360/colourful_cropped_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Notes from the #couchapp community meeting Dec 2011 https://t.co/pzXlQs8U - thanks @maxogden for writing these up! #couchdb #kanso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:56:35 +0000", "from_user": "maxogden", "from_user_id": 12241752, "from_user_id_str": "12241752", "from_user_name": "max ogden", "geo": null, "id": 147767095864721400, "id_str": "147767095864721408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690285875/max_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690285875/max_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "notes from the #couchdb couchapp community meeting https://t.co/wmiVpLB9 tl;dr we want couchapps to work as offline chrome extensions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:53:49 +0000", "from_user": "jochumsenhoyyw0", "from_user_id": 395388937, "from_user_id_str": "395388937", "from_user_name": "Jochumsen Utley", "geo": null, "id": 147766400495259650, "id_str": "147766400495259649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1599594847/f_45_w_0001_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599594847/f_45_w_0001_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "so... has anyone tried embedding CouchDB into a Mac app? I know there\\u2019s an iOS story nowadays...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:14:18 +0000", "from_user": "furrier", "from_user_id": 833071, "from_user_id_str": "833071", "from_user_name": "John Furrier", "geo": null, "id": 147756454051454980, "id_str": "147756454051454976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1139238299/SiliconANGLE_jf_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1139238299/SiliconANGLE_jf_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @strmpnk: Good to see funding go Cloudant's way. It's definitely important for the entire CouchDB community.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:12:57 +0000", "from_user": "klimpong", "from_user_id": 4600051, "from_user_id_str": "4600051", "from_user_name": "Till!", "geo": null, "id": 147756112693833730, "id_str": "147756112693833728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/18810092/till_avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/18810092/till_avatar_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @strmpnk: Good to see funding go Cloudant's way. It's definitely important for the entire CouchDB community.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:12:48 +0000", "from_user": "strmpnk", "from_user_id": 198252361, "from_user_id_str": "198252361", "from_user_name": "strmpnk", "geo": null, "id": 147756076404703230, "id_str": "147756076404703232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1243790904/IMG_7685_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1243790904/IMG_7685_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Good to see funding go Cloudant's way. It's definitely important for the entire CouchDB community.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:06:58 +0000", "from_user": "TeddyCaddy", "from_user_id": 123038914, "from_user_id_str": "123038914", "from_user_name": "Teddy Caddy", "geo": null, "id": 147739508585136130, "id_str": "147739508585136128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1544852799/globex_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544852799/globex_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@alindeman Does MongoDB support CommonJS? I have used underscore.js in CouchDB.", "to_user": "alindeman", "to_user_id": 13235612, "to_user_id_str": "13235612", "to_user_name": "Andy Lindeman", "in_reply_to_status_id": 147737599572844540, "in_reply_to_status_id_str": "147737599572844546"}, +{"created_at": "Fri, 16 Dec 2011 18:02:37 +0000", "from_user": "j_ga", "from_user_id": 9121482, "from_user_id_str": "9121482", "from_user_name": "Javier G\\u00F3mez-Acebo", "geo": null, "id": 147738415276896260, "id_str": "147738415276896256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/32289792/Foto_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/32289792/Foto_3_normal.jpg", "source": "<a href="http://www.on24.com" rel="nofollow">on24 widget</a>", "text": "On the #CouchDB #webinar. Thanks @OReillyMedia! #CouchDB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:57:31 +0000", "from_user": "michael_silva", "from_user_id": 15679303, "from_user_id_str": "15679303", "from_user_name": "Michael Silva", "geo": null, "id": 147737132469981200, "id_str": "147737132469981185", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1447683200/IMG_1235_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1447683200/IMG_1235_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @OReillyMedia: Live #webcast starts in 30min with @snej #CouchDB 'Getting Started In Modeling With Couchbase Mobile http://t.co/HHMf9Bgq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:32:46 +0000", "from_user": "frickcesar", "from_user_id": 159378145, "from_user_id_str": "159378145", "from_user_name": "C\\u00E9sar Frick", "geo": null, "id": 147730901059637250, "id_str": "147730901059637248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1022484916/perfil_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1022484916/perfil_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @OReillyMedia: Live #webcast starts in 30min with @snej #CouchDB 'Getting Started In Modeling With Couchbase Mobile http://t.co/HHMf9Bgq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:32:32 +0000", "from_user": "the_fricky", "from_user_id": 8844532, "from_user_id_str": "8844532", "from_user_name": "The Fricky!", "geo": null, "id": 147730845287989250, "id_str": "147730845287989249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1278639741/ttgl_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1278639741/ttgl_avatar_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @OReillyMedia: Live #webcast starts in 30min with @snej #CouchDB 'Getting Started In Modeling With Couchbase Mobile http://t.co/HHMf9Bgq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:31:09 +0000", "from_user": "OReillyMedia", "from_user_id": 11069462, "from_user_id_str": "11069462", "from_user_name": "O'Reilly Media", "geo": null, "id": 147730496032489470, "id_str": "147730496032489472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/67008339/oreilly-icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/67008339/oreilly-icon_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Live #webcast starts in 30min with @snej #CouchDB 'Getting Started In Modeling With Couchbase Mobile http://t.co/HHMf9Bgq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:23:31 +0000", "from_user": "bitSprout", "from_user_id": 24836911, "from_user_id_str": "24836911", "from_user_name": "bitSprout", "geo": null, "id": 147728573585821700, "id_str": "147728573585821696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1124189574/BitSprout_Avatar_export_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1124189574/BitSprout_Avatar_export_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Just cut a release of a CouchDB integration module for Drupal 7. Check it out and help test it! http://t.co/hzQzNmYn #drupal #couchdb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:54:45 +0000", "from_user": "TheMightyAl", "from_user_id": 21303870, "from_user_id_str": "21303870", "from_user_name": "Allan S-M", "geo": null, "id": 147721336528183300, "id_str": "147721336528183296", "iso_language_code": "is", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1311386538/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1311386538/me_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Django, CouchDB and Lamson, I'm having fun :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:42:54 +0000", "from_user": "FranckErnewein", "from_user_id": 59106894, "from_user_id_str": "59106894", "from_user_name": "Franck Ernewein", "geo": null, "id": 147718354860376060, "id_str": "147718354860376065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1539864082/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1539864082/twitter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nathan_stott: Updated the #Bogart with #CouchDB blog example at http://t.co/ThnlkBRt to reflect current Bogart best practices: http://t.co/mll4X9jP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:18:25 +0000", "from_user": "creationix", "from_user_id": 70596949, "from_user_id_str": "70596949", "from_user_name": "Tim Caswell", "geo": null, "id": 147712191506812930, "id_str": "147712191506812929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/774817444/c953ddd239707998340e1a6fbb3eeb46_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/774817444/c953ddd239707998340e1a6fbb3eeb46_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nathan_stott: Updated the #Bogart with #CouchDB blog example at http://t.co/ThnlkBRt to reflect current Bogart best practices: http://t.co/mll4X9jP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:17:07 +0000", "from_user": "nathan_stott", "from_user_id": 22832730, "from_user_id_str": "22832730", "from_user_name": "Nathan Stott", "geo": null, "id": 147711863965237250, "id_str": "147711863965237248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/209226491/sunglasses_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/209226491/sunglasses_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Updated the #Bogart with #CouchDB blog example at http://t.co/ThnlkBRt to reflect current Bogart best practices: http://t.co/mll4X9jP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:16:55 +0000", "from_user": "iljawascoding", "from_user_id": 88638932, "from_user_id_str": "88638932", "from_user_name": "Ilja A. Iwas", "geo": null, "id": 147711813289648130, "id_str": "147711813289648128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1377847685/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1377847685/Untitled_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@christian_beer For some scenarios, a pretty good alternative to CouchDB. (You might want to buy the book to find out.) /cc @roidrage", "to_user": "christian_beer", "to_user_id": 18058089, "to_user_id_str": "18058089", "to_user_name": "Christian Beer", "in_reply_to_status_id": 147710762721345540, "in_reply_to_status_id_str": "147710762721345537"}, +{"created_at": "Fri, 16 Dec 2011 15:32:06 +0000", "from_user": "SergioRomecin", "from_user_id": 285308168, "from_user_id_str": "285308168", "from_user_name": "Sergio Romecin", "geo": null, "id": 147700536727191550, "id_str": "147700536727191554", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1673736360/275717_661266199_1132701205_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673736360/275717_661266199_1132701205_n_normal.jpg", "source": "<a href="https://wiki.ubuntu.com/Gwibber" rel="nofollow">Ubuntu</a>", "text": "acutualizando @couchdb la versi\\u00F3n 1.1.1 very nice... http://t.co/kO63T1S6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:13:19 +0000", "from_user": "charlires", "from_user_id": 82778545, "from_user_id_str": "82778545", "from_user_name": "Carlos Andonaegui", "geo": null, "id": 147695808630886400, "id_str": "147695808630886400", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1549225226/196506_201559113200812_100000401753609_600597_2640068_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1549225226/196506_201559113200812_100000401753609_600597_2640068_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "La unica competencia directa con Mongodb es Couchdb de apache y no se ve mal.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:07:50 +0000", "from_user": "bluesmoon", "from_user_id": 7510552, "from_user_id_str": "7510552", "from_user_name": "Philip Tellis", "geo": null, "id": 147679328992374800, "id_str": "147679328992374784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/63378169/philipface_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/63378169/philipface_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@Jangid I use couchdb", "to_user": "Jangid", "to_user_id": 10432632, "to_user_id_str": "10432632", "to_user_name": "Pankaj Jangid", "in_reply_to_status_id": 147644000101339140, "in_reply_to_status_id_str": "147644000101339137"}, +{"created_at": "Fri, 16 Dec 2011 13:56:34 +0000", "from_user": "larrywanzer", "from_user_id": 31208028, "from_user_id_str": "31208028", "from_user_name": "Larry Wanzer", "geo": null, "id": 147676492107759600, "id_str": "147676492107759616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/186362352/pierce_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/186362352/pierce_normal.jpeg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Mock Testing CouchDB in node.js with Nock and TAP http://t.co/CRmlvxpZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:27:35 +0000", "from_user": "akeem", "from_user_id": 12597442, "from_user_id_str": "12597442", "from_user_name": "Akeem Adeniji", "geo": null, "id": 147669201300107260, "id_str": "147669201300107264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/645690442/highkey_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/645690442/highkey_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "reviewing couchdb documentation. I have been failing at twitter hard this week", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:21:22 +0000", "from_user": "tebica", "from_user_id": 45733343, "from_user_id_str": "45733343", "from_user_name": "\\uBC15\\uBBFC\\uC6B0 Minwoo Park", "geo": null, "id": 147667636359135230, "id_str": "147667636359135232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1635092935/IMG_1109_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635092935/IMG_1109_normal.JPG", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@mathieujobin Great! Seems like everyone is moving to git and (mongodb or couchdb) !", "to_user": "mathieujobin", "to_user_id": 8751792, "to_user_id_str": "8751792", "to_user_name": "Mathieu Jobin (\\u771F\\u4E3B)", "in_reply_to_status_id": 147340101855346700, "in_reply_to_status_id_str": "147340101855346688"}, +{"created_at": "Fri, 16 Dec 2011 13:13:21 +0000", "from_user": "alfamale156", "from_user_id": 61744769, "from_user_id_str": "61744769", "from_user_name": "Andrew Woodcock", "geo": null, "id": 147665618353659900, "id_str": "147665618353659904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693217959/Daddy_and_Emily_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693217959/Daddy_and_Emily_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Restoring CouchDB databases from file http://t.co/3eGtbvis via http://t.co/ZrHEwBSt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:10:33 +0000", "from_user": "mkouhei", "from_user_id": 7642012, "from_user_id_str": "7642012", "from_user_name": "Kouhei Maeda", "geo": null, "id": 147664914587197440, "id_str": "147664914587197440", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1374594278/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1374594278/profile_normal.png", "source": "<a href="http://www.tweenapp.org/" rel="nofollow">Tween</a>", "text": "RT @ixixi: Amazon\\u304B\\u3089\\u3001\\u300CAdvanced CouchDB\\u300D\\u306E\\u767A\\u58F2\\u4E88\\u5B9A\\u65E5\\u304C12/30\\u304B\\u30891/31\\u306B\\u5EF6\\u671F\\u3057\\u305F\\u3068\\u306E\\u30E1\\u30FC\\u30EB\\u304C\\u6765\\u305F\\u2026 http://t.co/PXzd32Ck", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:09:37 +0000", "from_user": "Ijokarumawak", "from_user_id": 128910202, "from_user_id_str": "128910202", "from_user_name": "Koji Kawamura", "geo": null, "id": 147664678758268930, "id_str": "147664678758268928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1200646395/Ijokarumawak_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1200646395/Ijokarumawak_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I managed to get on a bus from Kawasaki st. I had great time @ #RelaxBar I wish CouchDB community in Japan to become bigger little by little", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:00:58 +0000", "from_user": "Ijokarumawak", "from_user_id": 128910202, "from_user_id_str": "128910202", "from_user_name": "Koji Kawamura", "geo": null, "id": 147662499691495420, "id_str": "147662499691495424", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1200646395/Ijokarumawak_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1200646395/Ijokarumawak_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@hayato_kapibara @ixixi @mkouhei @jp_watanabe \\u672C\\u65E5\\u306F\\u304A\\u5FD9\\u3057\\u3044\\u4E2D\\u304A\\u96C6\\u307E\\u308A\\u3044\\u305F\\u3060\\u304D\\u3001\\u3042\\u308A\\u304C\\u3068\\u3046\\u3054\\u3056\\u3044\\u307E\\u3057\\u305F\\uFF01CouchDB\\u306B\\u9589\\u3058\\u305A\\u3001\\u8272\\u3005\\u306A\\u304A\\u8A71\\u304C\\u805E\\u3051\\u3066\\u3001\\u5927\\u5909\\u53C2\\u8003\\u306B\\u306A\\u308A\\u307E\\u3057\\u305F\\u3002\\u307E\\u305F\\u6765\\u5E74\\u3001 #CouchConf \\u3067\\u4F1A\\u3044\\u307E\\u3057\\u3087\\u3046\\uFF01", "to_user": "Hayato_Kapibara", "to_user_id": 107363660, "to_user_id_str": "107363660", "to_user_name": "\\u306F\\u3084\\u3068"}, +{"created_at": "Fri, 16 Dec 2011 12:59:48 +0000", "from_user": "cemerick", "from_user_id": 15029885, "from_user_id_str": "15029885", "from_user_name": "Chas Emerick", "geo": null, "id": 147662207017173000, "id_str": "147662207017172992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1160448840/Untitled_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1160448840/Untitled_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Working on a CouchDB type for #Clojure bit.ly/tsvuNI #clutch", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:54:13 +0000", "from_user": "michaelkoper", "from_user_id": 18513150, "from_user_id_str": "18513150", "from_user_name": "Michael Koper", "geo": null, "id": 147660802017599500, "id_str": "147660802017599488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1131138282/photo1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1131138282/photo1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Starting to like CouchDB more and more!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:05:22 +0000", "from_user": "noodeeh", "from_user_id": 139661151, "from_user_id_str": "139661151", "from_user_name": "noodeeh", "geo": null, "id": 147648510429364220, "id_str": "147648510429364225", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Building Applications and Deploying CouchDB: http://t.co/GFX7Ploo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:37:41 +0000", "from_user": "boomooper", "from_user_id": 336302107, "from_user_id_str": "336302107", "from_user_name": "boomooper", "geo": null, "id": 147641544680292350, "id_str": "147641544680292352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Building Applications and Deploying CouchDB: http://t.co/e5c8nAzY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:36:37 +0000", "from_user": "davecottlehuber", "from_user_id": 20142853, "from_user_id_str": "20142853", "from_user_name": "Dave Cottlehuber", "geo": null, "id": 147626172996517900, "id_str": "147626172996517888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1425805603/dch_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1425805603/dch_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@mschoch @couchdb @stuffbymatt awesome #countmein. I am keen to grow my coding chops too!", "to_user": "mschoch", "to_user_id": 15067540, "to_user_id_str": "15067540", "to_user_name": "mschoch", "in_reply_to_status_id": 147438069514117120, "in_reply_to_status_id_str": "147438069514117121"}, +{"created_at": "Fri, 16 Dec 2011 10:12:10 +0000", "from_user": "jorgeakanieves", "from_user_id": 15956209, "from_user_id_str": "15956209", "from_user_name": "jorgeakanieves", "geo": null, "id": 147620019944169470, "id_str": "147620019944169472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1241403473/27484_795446987_6836_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1241403473/27484_795446987_6836_q_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "another nosql solution: http://t.co/XlLZaRVq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:07:01 +0000", "from_user": "runggolfp", "from_user_id": 149853090, "from_user_id_str": "149853090", "from_user_name": "runggolfp", "geo": null, "id": 147618727779778560, "id_str": "147618727779778560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Building Applications and Deploying CouchDB: http://t.co/IdGdf1lQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:54:34 +0000", "from_user": "Ijokarumawak", "from_user_id": 128910202, "from_user_id_str": "128910202", "from_user_name": "Koji Kawamura", "geo": null, "id": 147615590587170800, "id_str": "147615590587170816", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1200646395/Ijokarumawak_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1200646395/Ijokarumawak_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Hayato_Kapibara @ixixi @mkouhei @jp_watanabe RelaxBar@CouchDB \\u306E\\u5E79\\u4E8B\\u3067\\u3059\\u3002\\u304A\\u5E97\\u306F\\u6CB3\\u6751\\u3067\\u4E88\\u7D04\\u3057\\u3066\\u3044\\u307E\\u3059\\u3001\\u4E8C\\u968E\\u3067\\u304A\\u5F85\\u3061\\u3057\\u3066\\u304A\\u308A\\u307E\\u3059\\u3002", "to_user": "Hayato_Kapibara", "to_user_id": 107363660, "to_user_id_str": "107363660", "to_user_name": "\\u306F\\u3084\\u3068"}, +{"created_at": "Fri, 16 Dec 2011 09:39:56 +0000", "from_user": "Hayato_Kapibara", "from_user_id": 107363660, "from_user_id_str": "107363660", "from_user_name": "\\u306F\\u3084\\u3068", "geo": null, "id": 147611910186074100, "id_str": "147611910186074112", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702377804/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702377804/image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RelaxBar@CouchDB : ATND http://t.co/YcQ0ILho @atnd\\u3055\\u3093\\u304B\\u3089", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:38:27 +0000", "from_user": "Hayato_Kapibara", "from_user_id": 107363660, "from_user_id_str": "107363660", "from_user_name": "\\u306F\\u3084\\u3068", "geo": null, "id": 147611538683994100, "id_str": "147611538683994112", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702377804/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702377804/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\\u4ECA\\u65E5\\u306F\\u3053\\u308C\\u304B\\u3089couchdb\\u306A\\u4EBA\\u9054\\u3068\\u98F2\\u307F\\u307E\\u3059\\u3002\\u697D\\u3057\\u307F\\u3067\\u3059\\u3002(^3^)/", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:23:57 +0000", "from_user": "LuxNoSQL", "from_user_id": 19330336, "from_user_id_str": "19330336", "from_user_name": "Nestor", "geo": null, "id": 147577688230596600, "id_str": "147577688230596608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1123187681/logo_original4_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1123187681/logo_original4_normal.PNG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Google Insights: Cassandra as the leading NoSQL solution\\n\\nhttp://t.co/Jiew4xbd\\n\\n#nosql #google #cassandra #couchdb #mongodb #redis #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 06:34:54 +0000", "from_user": "dadicool", "from_user_id": 14200949, "from_user_id_str": "14200949", "from_user_name": "Dali Kilani", "geo": null, "id": 147565345987756030, "id_str": "147565345987756032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/86577298/portrait_dali_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/86577298/portrait_dali_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "data modeling - Recommended Document Structure for CouchDB - Stack Overflow http://t.co/b2st0TOw -> Good read #couchdb #performance", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 06:17:49 +0000", "from_user": "burritojustice", "from_user_id": 16944165, "from_user_id_str": "16944165", "from_user_name": "burritojustice", "geo": null, "id": 147561047694393340, "id_str": "147561047694393344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/856593717/burrito_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/856593717/burrito_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@brian_mount so I'm thinking a map of SF neighborhood blogs could be a fun test of couchDB, no?", "to_user": "brian_mount", "to_user_id": 153347833, "to_user_id_str": "153347833", "to_user_name": "Brian Mount"}, +{"created_at": "Fri, 16 Dec 2011 04:18:36 +0000", "from_user": "jenhsun", "from_user_id": 9134942, "from_user_id_str": "9134942", "from_user_name": "jenhsun", "geo": null, "id": 147531042679570430, "id_str": "147531042679570432", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1257452304/myeh2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1257452304/myeh2_normal.png", "source": "<a href="http://startgoogleplus.com" rel="nofollow">SGPlus</a>", "text": "Cassandra vs MongoDB vs CouchDB vs Redis vs Riak vs HBase vs Membase vs Neo4j comparison http://t.co/doZObye2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 04:14:22 +0000", "from_user": "codencolors", "from_user_id": 171800472, "from_user_id_str": "171800472", "from_user_name": "CodeNColors", "geo": null, "id": 147529979780014080, "id_str": "147529979780014080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1123471430/codencolors_logo1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1123471430/codencolors_logo1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @/CarmelaXRobles3UTC4412December54132400768416th5Friday2011MAPCHAT: Opensource Map-based CouchDB #Chat For Yo... http://t.co/PhCVwYnl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 04:01:49 +0000", "from_user": "mikeal", "from_user_id": 668423, "from_user_id_str": "668423", "from_user_name": "Mikeal", "geo": null, "id": 147526818126237700, "id_str": "147526818126237697", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1554648053/avatar-bw_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554648053/avatar-bw_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@jacobian you're defining resource too rigidly. there can be a \"bulk\" resource to handle these operations. see CouchDB /db/_bulk_docs", "to_user": "jacobian", "to_user_id": 18824526, "to_user_id_str": "18824526", "to_user_name": "jacobian", "in_reply_to_status_id": 147526486524575740, "in_reply_to_status_id_str": "147526486524575744"}, +{"created_at": "Fri, 16 Dec 2011 03:54:44 +0000", "from_user": "CarmelaXRobles", "from_user_id": 417582022, "from_user_id_str": "417582022", "from_user_name": "Carmela Robles", "geo": null, "id": 147525035765149700, "id_str": "147525035765149698", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1649692089/Nerdy_School_Girl_by_j_mae_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649692089/Nerdy_School_Girl_by_j_mae_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "MAPCHAT: Opensource Map-based CouchDB #Chat For Your Site http://t.co/Hylovos3 via @blogfreakz #webdevelopment", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 03:35:28 +0000", "from_user": "msonnabaum", "from_user_id": 14256182, "from_user_id_str": "14256182", "from_user_name": "msonnabaum", "geo": null, "id": 147520190542905340, "id_str": "147520190542905344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664185181/movember_w4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664185181/movember_w4_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@rb2k Isn't couchbase still just couchdb? I didn't think membase had been merged in yet.", "to_user": "rb2k", "to_user_id": 4086651, "to_user_id_str": "4086651", "to_user_name": "Marc \\u2605\\u2605\\u2605\\u2605\\u2606 ", "in_reply_to_status_id": 147504204934692860, "in_reply_to_status_id_str": "147504204934692864"}, +{"created_at": "Fri, 16 Dec 2011 03:33:19 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 147519648785637380, "id_str": "147519648785637377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "follow (0.6.0): http://t.co/uqj8pmxS Extremely robust, fault-tolerant CouchDB changes follower", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Fri, 16 Dec 2011 03:29:51 +0000", "from_user": "sam_symons", "from_user_id": 18592658, "from_user_id_str": "18592658", "from_user_name": "Sam Symons", "geo": null, "id": 147518773585387520, "id_str": "147518773585387520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1111632399/Screen_shot_2009-11-20_at_7.52.21_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1111632399/Screen_shot_2009-11-20_at_7.52.21_PM_normal.png", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "\"Apache CouchDB has started. Time to relax. Unless you want to stop the server, in which case go fuck yourself.\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 03:05:48 +0000", "from_user": "rimenes", "from_user_id": 17683957, "from_user_id_str": "17683957", "from_user_name": "Rimenes Ribeiro", "geo": null, "id": 147512724979585020, "id_str": "147512724979585024", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1171495954/logo_mini_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1171495954/logo_mini_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "@theoziran o CouchDB demorou um pouco mais pra instalar devido as depend\\u00EAncias, mas t\\u00E1 rolando 100%", "to_user": "theoziran", "to_user_id": 17788590, "to_user_id_str": "17788590", "to_user_name": "Theoziran Lima"}, +{"created_at": "Fri, 16 Dec 2011 03:03:31 +0000", "from_user": "dadicool", "from_user_id": 14200949, "from_user_id_str": "14200949", "from_user_name": "Dali Kilani", "geo": null, "id": 147512146509574140, "id_str": "147512146509574145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/86577298/portrait_dali_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/86577298/portrait_dali_normal.jpg", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "Doing an #opengovtn project with #couchdb, what a joy! I am pretty much following a DVCS methodology thanks to the replication capability :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 02:52:04 +0000", "from_user": "rimenes", "from_user_id": 17683957, "from_user_id_str": "17683957", "from_user_name": "Rimenes Ribeiro", "geo": null, "id": 147509265614118900, "id_str": "147509265614118913", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1171495954/logo_mini_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1171495954/logo_mini_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "@theoziran instalei o erlang naquela hora, vou instalar o couchDB. O brew doctor disse o qu\\u00EA?", "to_user": "theoziran", "to_user_id": 17788590, "to_user_id_str": "17788590", "to_user_name": "Theoziran Lima", "in_reply_to_status_id": 147508953285271550, "in_reply_to_status_id_str": "147508953285271552"}, +{"created_at": "Fri, 16 Dec 2011 02:50:49 +0000", "from_user": "theoziran", "from_user_id": 17788590, "from_user_id_str": "17788590", "from_user_name": "Theoziran Lima", "geo": null, "id": 147508953285271550, "id_str": "147508953285271552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1488413462/Picture-401_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1488413462/Picture-401_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@rimenes olha o que o brew me deu quando fui no couchdb \\nError: Failed executing: make install If 'brew doctor ...", "to_user": "rimenes", "to_user_id": 17683957, "to_user_id_str": "17683957", "to_user_name": "Rimenes Ribeiro"}, +{"created_at": "Fri, 16 Dec 2011 02:50:23 +0000", "from_user": "theoziran", "from_user_id": 17788590, "from_user_id_str": "17788590", "from_user_name": "Theoziran Lima", "geo": null, "id": 147508843495170050, "id_str": "147508843495170048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1488413462/Picture-401_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1488413462/Picture-401_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@rimenes pia mermo o fake \"Apache CouchDB has started, time to relax.\" t\\u00E1 funfando n\\u00E3o :(", "to_user": "rimenes", "to_user_id": 17683957, "to_user_id_str": "17683957", "to_user_name": "Rimenes Ribeiro"}, +{"created_at": "Fri, 16 Dec 2011 02:46:39 +0000", "from_user": "theoziran", "from_user_id": 17788590, "from_user_id_str": "17788590", "from_user_name": "Theoziran Lima", "geo": null, "id": 147507905187418100, "id_str": "147507905187418113", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1488413462/Picture-401_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1488413462/Picture-401_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@rimenes na verdade o que quero instalar \\u00E9 o CouchDb que tem o Erlang como dep.", "to_user": "rimenes", "to_user_id": 17683957, "to_user_id_str": "17683957", "to_user_name": "Rimenes Ribeiro"}, +{"created_at": "Fri, 16 Dec 2011 02:07:30 +0000", "from_user": "DeivinsonTejeda", "from_user_id": 15665633, "from_user_id_str": "15665633", "from_user_name": " Deivinson Tejeda ", "geo": null, "id": 147498051370618880, "id_str": "147498051370618880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1524305936/IMG_5392_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1524305936/IMG_5392_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @EduSo: Interesting post: #Cassandra vs #MongoDB vs #CouchDB vs #Redis vs #Riak vs #HBase vs #Membase vs #Neo4j comparison http://t.co/HVAHiF88", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 02:02:33 +0000", "from_user": "EduSo", "from_user_id": 25353224, "from_user_id_str": "25353224", "from_user_name": "Eduardo Sojo", "geo": null, "id": 147496804823474180, "id_str": "147496804823474176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1616696367/twitter1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616696367/twitter1_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Interesting post: #Cassandra vs #MongoDB vs #CouchDB vs #Redis vs #Riak vs #HBase vs #Membase vs #Neo4j comparison http://t.co/HVAHiF88", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:45:10 +0000", "from_user": "lxcid", "from_user_id": 28384294, "from_user_id_str": "28384294", "from_user_name": "Stan Chang Khin Boon", "geo": +{"coordinates": [1.2771,103.837], "type": "Point"}, "id": 147492429426208770, "id_str": "147492429426208768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1345106575/Stan_Chang_Khin_Boon_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1345106575/Stan_Chang_Khin_Boon_normal.jpeg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@echoz thanks. It was using couchdb though. Was fun trying out new tech.", "to_user": "echoz", "to_user_id": 43183, "to_user_id_str": "43183", "to_user_name": "Jeremy Foo", "in_reply_to_status_id": 147492192678707200, "in_reply_to_status_id_str": "147492192678707200"}, +{"created_at": "Fri, 16 Dec 2011 01:04:07 +0000", "from_user": "ctcliff", "from_user_id": 32199255, "from_user_id_str": "32199255", "from_user_name": "Christopher Cliff", "geo": null, "id": 147482100042436600, "id_str": "147482100042436608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1385214370/227243_10100487918698897_8612280_62805184_7498658_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1385214370/227243_10100487918698897_8612280_62805184_7498658_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "New Gist: Base Classes for Binding Backbone.js to the CouchDB Documents API http://t.co/ZABFSAHv @thedeftone", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:01:42 +0000", "from_user": "Kerriecgj", "from_user_id": 431706865, "from_user_id_str": "431706865", "from_user_name": "Kerrie Strub", "geo": null, "id": 147481492459749380, "id_str": "147481492459749377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681044427/large_ARHYKZKARBDU_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681044427/large_ARHYKZKARBDU_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Beginning CouchDB: The new world of cloud computing needs data storage. CouchDB is the scalable, portable, simpl... http://t.co/OIrcbFns", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:54:08 +0000", "from_user": "hugdubois", "from_user_id": 5525282, "from_user_id_str": "5525282", "from_user_name": "Hugues Dubois", "geo": null, "id": 147479588254138370, "id_str": "147479588254138370", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/22151492/portrait_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/22151492/portrait_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @__Neha: Phonegap + CouchDB + Ektorp #Win !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:21:07 +0000", "from_user": "perezd", "from_user_id": 811649, "from_user_id_str": "811649", "from_user_name": "Derek P.", "geo": null, "id": 147471278717141000, "id_str": "147471278717140992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1577846387/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1577846387/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "node, couchdb, collectd, chef, redis, websockets, haproxy, gearman, ec2, s3.\\n\\n\\nWhat do all of these have in common?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:41:42 +0000", "from_user": "JLeeGhost", "from_user_id": 306117941, "from_user_id_str": "306117941", "from_user_name": "Johnneylee Rollins", "geo": null, "id": 147461358215110660, "id_str": "147461358215110657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1370810672/SpaceGhost_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1370810672/SpaceGhost_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@websuasion_ryan I actually handle very little mongo in production on linode. Most my deployments were postgres. Two couchdb.", "to_user": "websuasion_ryan", "to_user_id": 12664822, "to_user_id_str": "12664822", "to_user_name": "J. Ryan Williams", "in_reply_to_status_id": 147460996154400770, "in_reply_to_status_id_str": "147460996154400768"}, +{"created_at": "Thu, 15 Dec 2011 23:10:11 +0000", "from_user": "rsvalerio", "from_user_id": 138584499, "from_user_id_str": "138584499", "from_user_name": "Rodrigo Valerio", "geo": null, "id": 147453430049423360, "id_str": "147453430049423361", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1608538288/perfil2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608538288/perfil2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @__Neha: Phonegap + CouchDB + Ektorp #Win !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:06:51 +0000", "from_user": "AnaNobel", "from_user_id": 112244260, "from_user_id_str": "112244260", "from_user_name": "Ana Lopez de E", "geo": null, "id": 147452590614003700, "id_str": "147452590614003712", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695396230/nor_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695396230/nor_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Viroide: #couchDB aun no s\\u00E9 si lo amar\\u00E9 o lo odiar\\u00E9, habr\\u00E1 que hacer algunas pruebas #noSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:32:17 +0000", "from_user": "smackthud", "from_user_id": 15585758, "from_user_id_str": "15585758", "from_user_name": "Grant Wood", "geo": null, "id": 147443891233243140, "id_str": "147443891233243137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1273050886/GrantWoodHS_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273050886/GrantWoodHS_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Playing with @mongodb for fun and profit today. very different than playing with #couchdb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:17:09 +0000", "from_user": "StuffByMatt", "from_user_id": 345183768, "from_user_id_str": "345183768", "from_user_name": "Matt Adams", "geo": null, "id": 147440083069444100, "id_str": "147440083069444096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1468805911/_normal.face", "profile_image_url_https": "https://si0.twimg.com/profile_images/1468805911/_normal.face", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@mschoch @davecottlehuber Count me in! I am thrilled by the prospect of getting my head and hands into the guts of @CouchDB! Erlang FTW.", "to_user": "mschoch", "to_user_id": 15067540, "to_user_id_str": "15067540", "to_user_name": "mschoch", "in_reply_to_status_id": 147438069514117120, "in_reply_to_status_id_str": "147438069514117121"}, +{"created_at": "Thu, 15 Dec 2011 22:10:40 +0000", "from_user": "Pelshoff", "from_user_id": 347963273, "from_user_id_str": "347963273", "from_user_name": "Pim Elshoff", "geo": null, "id": 147438449773912060, "id_str": "147438449773912066", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1476217527/IMG_0853_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1476217527/IMG_0853_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Playing around with #Doctrine for #CouchDB for the first time. The current PEAR packages for ODM and Common bite eachother :@", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:09:09 +0000", "from_user": "mschoch", "from_user_id": 15067540, "from_user_id_str": "15067540", "from_user_name": "mschoch", "geo": null, "id": 147438069514117120, "id_str": "147438069514117121", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1449769534/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1449769534/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "excited to get in the @CouchDB Development course! @davecottlehuber @StuffByMatt work together on group project?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:07:41 +0000", "from_user": "SOTaggedQs", "from_user_id": 413434393, "from_user_id_str": "413434393", "from_user_name": "Mithun Patel", "geo": null, "id": 147437697525497860, "id_str": "147437697525497856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "JQuery TypeError in CouchDB OpenDoc function: Though I use CouchDB-specific JQuery verison, the problem can appe... http://t.co/ymtizN59", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:07:40 +0000", "from_user": "jQueryonSO", "from_user_id": 413032106, "from_user_id_str": "413032106", "from_user_name": "jQuery on SO", "geo": null, "id": 147437696741146620, "id_str": "147437696741146624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1640199208/jqueryso_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640199208/jqueryso_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "JQuery TypeError in CouchDB OpenDoc function: Though I use CouchDB-specific JQuery verison, the problem can appe... http://t.co/D70bKLob", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:04:17 +0000", "from_user": "rahulgchaudhary", "from_user_id": 93134027, "from_user_id_str": "93134027", "from_user_name": "Rahul Chaudhary", "geo": null, "id": 147436844177571840, "id_str": "147436844177571840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1148856768/rahulchaudhary_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1148856768/rahulchaudhary_normal.jpg", "source": "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", "text": "NoSQL Support in Lift via @nosqlweekly http://t.co/JVp84Pdi #nosql #mongodb #couchdb #lift", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 21:58:07 +0000", "from_user": "dufft", "from_user_id": 13462782, "from_user_id_str": "13462782", "from_user_name": "Martin Davtyan", "geo": null, "id": 147435292364771330, "id_str": "147435292364771328", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/49087482/dufft_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/49087482/dufft_normal.gif", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\\u0432\\u043E\\u0442 \\u0442\\u0435\\u0431\\u0435 \\u0438 \\u0441\\u0434\\u0430\\u043B \\u043A\\u0443\\u0440\\u0441\\u0430\\u0447 \\u0422_\\u0422 http://t.co/L3mfpUEU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 21:41:24 +0000", "from_user": "jchris", "from_user_id": 1623, "from_user_id_str": "1623", "from_user_name": "J Chris Anderson", "geo": null, "id": 147431086727761920, "id_str": "147431086727761921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1611440478/IMG_0049_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611440478/IMG_0049_normal.jpg", "source": "<a href="http://trillian.im/" rel="nofollow">Trillian</a>", "text": "RT @wohali: Registration for the CouchDB Development course is now closed. Received >40 requests for 20 seats in 24h. Invites on their way. THX to all!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 21:40:46 +0000", "from_user": "jchris", "from_user_id": 1623, "from_user_id_str": "1623", "from_user_name": "J Chris Anderson", "geo": null, "id": 147430926182395900, "id_str": "147430926182395904", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1611440478/IMG_0049_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611440478/IMG_0049_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @__Neha: Phonegap + CouchDB + Ektorp #Win !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 21:08:35 +0000", "from_user": "wohali", "from_user_id": 2192921, "from_user_id_str": "2192921", "from_user_name": "Joan Touzet", "geo": null, "id": 147422825920208900, "id_str": "147422825920208896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/628245169/wohali_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/628245169/wohali_normal.png", "source": "<a href="http://trillian.im/" rel="nofollow">Trillian</a>", "text": "Registration for the CouchDB Development course is now closed. Received >40 requests for 20 seats in 24h. Invites on their way. THX to all!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 20:37:18 +0000", "from_user": "mromtz", "from_user_id": 93404658, "from_user_id_str": "93404658", "from_user_name": "Mario Martinez", "geo": null, "id": 147414954469888000, "id_str": "147414954469888000", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1620642466/mromtzlogo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620642466/mromtzlogo_normal.png", "source": "<a href="http://timely.is" rel="nofollow">Timely by Demandforce</a>", "text": "RT @DBmxorg: La presentaci\\u00F3n de nuestro taller \"CouchDB muy b\\u00E1sico\" http://t.co/Ta22OphO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 20:36:12 +0000", "from_user": "theoziran", "from_user_id": 17788590, "from_user_id_str": "17788590", "from_user_name": "Theoziran Lima", "geo": null, "id": 147414678035898370, "id_str": "147414678035898368", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1488413462/Picture-401_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1488413462/Picture-401_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Que m* dando pau geral o CouchDb no Mac OS, nem na m\\u00E3o nem pelo MacPorts, d\\u00E1 service running mas nada :/", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 20:16:07 +0000", "from_user": "DBmxorg", "from_user_id": 261452842, "from_user_id_str": "261452842", "from_user_name": "DBmx.org", "geo": null, "id": 147409624025403400, "id_str": "147409624025403392", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1263199080/4395953684_419dff284f_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263199080/4395953684_419dff284f_normal.jpg", "source": "<a href="http://timely.is" rel="nofollow">Timely by Demandforce</a>", "text": "La presentaci\\u00F3n de nuestro taller \"CouchDB muy b\\u00E1sico\" http://t.co/Ta22OphO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:41:24 +0000", "from_user": "plutarcoII", "from_user_id": 267271992, "from_user_id_str": "267271992", "from_user_name": "Plutarco Gonzalez", "geo": null, "id": 147400884228341760, "id_str": "147400884228341762", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@__Neha Do you have a blog with more information about Phonegap with CouchDB & Ektorp? #GWT", "to_user": "__Neha", "to_user_id": 22790291, "to_user_id_str": "22790291", "to_user_name": "Neha "}, +{"created_at": "Thu, 15 Dec 2011 19:38:00 +0000", "from_user": "kekline", "from_user_id": 22445912, "from_user_id_str": "22445912", "from_user_name": "Kevin Kline", "geo": null, "id": 147400032507789300, "id_str": "147400032507789312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/388076294/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/388076294/twitterProfilePhoto_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @OReillyMedia: Webcast Dec 16 at 10amPT/1pmET with @snej #CouchDB 'Getting Started In Modeling With Couchbase Mobile http://t.co/0rxLKc1P", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:00:04 +0000", "from_user": "atndbot_tweet", "from_user_id": 215235153, "from_user_id_str": "215235153", "from_user_name": "atndbot", "geo": null, "id": 147390483923079170, "id_str": "147390483923079168", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1178875269/default_profile_0_bigger_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1178875269/default_profile_0_bigger_normal.png", "source": "<a href="http://atndbot.appspot.com/" rel="nofollow">atndbot</a>", "text": "[Today]: RelaxBar@CouchDB,\\u5E74\\u5FD8\\u308C\\u3001\\u591C\\u306A\\u591C\\u306ACouchDB,\\u53C2\\u52A0\\u8005 5/\\u5B9A\\u54E1 7/\\u88DC\\u6B20\\u8005 0,\\u5DDD\\u5D0E\\u5E02\\u5DDD\\u5D0E\\u533A\\u7802\\u5B502-9-1\\u53C2\\u9CE5\\u5C45\\u9928,http://t.co/wqA6Rb4p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:57:43 +0000", "from_user": "seanhess", "from_user_id": 15780886, "from_user_id_str": "15780886", "from_user_name": "seanhess", "geo": null, "id": 147374795485491200, "id_str": "147374795485491200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1202794106/family_head_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1202794106/family_head_normal.jpeg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@aaronsnoswell MongoDB is much more like a normal database than CouchDB. It's easier to develop against and is lower latency.", "to_user": "aaronsnoswell", "to_user_id": 48354997, "to_user_id_str": "48354997", "to_user_name": "Aaron Snoswell", "in_reply_to_status_id": 142080369469038600, "in_reply_to_status_id_str": "142080369469038592"}, +{"created_at": "Thu, 15 Dec 2011 17:54:45 +0000", "from_user": "Blohin", "from_user_id": 15472137, "from_user_id_str": "15472137", "from_user_name": "\\u041D\\u0438\\u043A\\u043E\\u043B\\u0430\\u0439 \\u0411\\u043B\\u043E\\u0445\\u0438\\u043D", "geo": null, "id": 147374047771115520, "id_str": "147374047771115520", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/56816962/guy_computer_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/56816962/guy_computer_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Couchdb \\u043F\\u043E \\u0441\\u0440\\u0430\\u0432\\u043D\\u0435\\u043D\\u0438\\u044E \\u0441 Mongodb \\u0441\\u0434\\u0435\\u043B\\u0430\\u043D \\u044F\\u0432\\u043D\\u043E \\u043D\\u0435 \\u0434\\u043B\\u044F \\u043B\\u044E\\u0434\\u0435\\u0439.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:00:05 +0000", "from_user": "TheFourOrders", "from_user_id": 189846960, "from_user_id_str": "189846960", "from_user_name": "Terre Britton", "geo": null, "id": 147360290550448130, "id_str": "147360290550448128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1372054456/TerreBritton_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1372054456/TerreBritton_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @oreillymedia: Webcast Dec 16 at 10amPT/1pmET with @snej #CouchDB 'Getting Started In Modeling With Couchbase Mobile http://t.co/UWnbeoUk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 16:53:12 +0000", "from_user": "fvonx", "from_user_id": 13209922, "from_user_id_str": "13209922", "from_user_name": "Matthias Stiller", "geo": null, "id": 147358557560504320, "id_str": "147358557560504320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/67878234/P1010274_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/67878234/P1010274_normal.JPG", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Integration of couchdb and elasticsearch with tire: check \\u2713.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 16:52:09 +0000", "from_user": "tackun0301", "from_user_id": 239761231, "from_user_id_str": "239761231", "from_user_name": "tackun", "geo": null, "id": 147358294049173500, "id_str": "147358294049173504", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1610758047/9Vvlp846_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610758047/9Vvlp846_normal", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "\\u3042\\u3068\\u3067CouchDB\\u8ABF\\u3079\\u308B\\u3002REST\\u3067\\u30A2\\u30AF\\u30BB\\u30B9\\u3067\\u304D\\u308BDB\\uFF1F RT @rubyalert: Standalone Attachments in CouchDB + Ruby - Stack Overflow: http://t.co/8vvf3oSR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 16:34:59 +0000", "from_user": "Diogo_Nuno", "from_user_id": 71511215, "from_user_id_str": "71511215", "from_user_name": "Diogo Nuno", "geo": null, "id": 147353973018476540, "id_str": "147353973018476544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1324109664/eu2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1324109664/eu2_normal.png", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@locks seu couchdb", "to_user": "locks", "to_user_id": 7492672, "to_user_id_str": "7492672", "to_user_name": "Ricardo Mendes", "in_reply_to_status_id": 147353656180736000, "in_reply_to_status_id_str": "147353656180736001"}, +{"created_at": "Thu, 15 Dec 2011 16:16:01 +0000", "from_user": "org_ektorp", "from_user_id": 198155695, "from_user_id_str": "198155695", "from_user_name": "Ektorp", "geo": null, "id": 147349198667399170, "id_str": "147349198667399168", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @__Neha: Phonegap + CouchDB + Ektorp #Win !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:43:13 +0000", "from_user": "jkoynok", "from_user_id": 67087130, "from_user_id_str": "67087130", "from_user_name": "Jon Koynok", "geo": null, "id": 147340946592378880, "id_str": "147340946592378880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691736792/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691736792/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Omg #couchdb so completely rocks!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:39:52 +0000", "from_user": "mathieujobin", "from_user_id": 8751792, "from_user_id_str": "8751792", "from_user_name": "Mathieu Jobin (\\u771F\\u4E3B)", "geo": null, "id": 147340101855346700, "id_str": "147340101855346688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/444255063/7934_277356390633_622940633_8988913_5702485_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/444255063/7934_277356390633_622940633_8988913_5702485_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Is in love with CouchDB. converted my old SVN to git this morning and wrote a script that converts any database to CouchDB.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:37:17 +0000", "from_user": "alfredomeneses", "from_user_id": 78475498, "from_user_id_str": "78475498", "from_user_name": "Alfredo Meneses", "geo": null, "id": 147339452602261500, "id_str": "147339452602261505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/600617048/alter_ego_20091227_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/600617048/alter_ego_20091227_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"@OReillyMedia: Webcast Dec 16 at 10amPT/1pmET with @snej #CouchDB 'Getting Started In Modeling With Couchbase Mobile http://t.co/lyvyeony\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:35:52 +0000", "from_user": "jsuchal", "from_user_id": 21485265, "from_user_id_str": "21485265", "from_user_name": "J\\u00E1n Suchal", "geo": null, "id": 147339094937174000, "id_str": "147339094937174017", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/295141929/forum_icon_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/295141929/forum_icon_1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rubyslava: Dnes v kaf\\u00E9 Nervosa o 19:00 bude op\\u00E4\\u0165 husto. 27+23maybe. Akt\\u00EDvna dokument\\u00E1cia (@iNecas), CouchDB (+Michal Bartha) http://t.co/CKi9oCaR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:20:32 +0000", "from_user": "nieuws_website", "from_user_id": 202211352, "from_user_id_str": "202211352", "from_user_name": "nieuws_website", "geo": null, "id": 147335236118790140, "id_str": "147335236118790145", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1145927756/capica-website_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1145927756/capica-website_normal.gif", "source": "<a href="http://www.capica.nl" rel="nofollow">Capica B.V.</a>", "text": "Internet begrip: CouchDB http://t.co/CFhrqEJH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:05:44 +0000", "from_user": "OReillyMedia", "from_user_id": 11069462, "from_user_id_str": "11069462", "from_user_name": "O'Reilly Media", "geo": null, "id": 147331513699143680, "id_str": "147331513699143680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/67008339/oreilly-icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/67008339/oreilly-icon_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Webcast Dec 16 at 10amPT/1pmET with @snej #CouchDB 'Getting Started In Modeling With Couchbase Mobile http://t.co/HHMf9Bgq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 14:46:09 +0000", "from_user": "__Neha", "from_user_id": 22790291, "from_user_id_str": "22790291", "from_user_name": "Neha ", "geo": null, "id": 147326582191689730, "id_str": "147326582191689728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1326007011/Neha_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1326007011/Neha_twitter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dominik Kinda funny! but absolutely makes sense given we are talking 'couchdb' ! there is an example couchapp called sofa :D", "to_user": "dominik", "to_user_id": 2623, "to_user_id_str": "2623", "to_user_name": "Dominik Schwind", "in_reply_to_status_id": 147274023406018560, "in_reply_to_status_id_str": "147274023406018560"}, +{"created_at": "Thu, 15 Dec 2011 13:03:58 +0000", "from_user": "nvenky1983", "from_user_id": 55784377, "from_user_id_str": "55784377", "from_user_name": "Venkatesh Nannan", "geo": null, "id": 147300869149429760, "id_str": "147300869149429761", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1682803285/DSC_5198_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682803285/DSC_5198_normal.jpg", "source": "<a href="http://www.shareaholic.com" rel="nofollow">shareaholic app</a>", "text": "Cassandra vs MongoDB vs CouchDB vs Redis vs Riak vs HBase comparison :: KKovacs - http://t.co/qmKPg8Cy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 11:49:22 +0000", "from_user": "rubyslava", "from_user_id": 377890072, "from_user_id_str": "377890072", "from_user_name": "rubyslava", "geo": null, "id": 147282095893528580, "id_str": "147282095893528578", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1554367896/174756_172990032745033_2933445_s_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554367896/174756_172990032745033_2933445_s_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Dnes v kaf\\u00E9 Nervosa o 19:00 bude op\\u00E4\\u0165 husto. 27+23maybe. Akt\\u00EDvna dokument\\u00E1cia (@iNecas), CouchDB (+Michal Bartha) http://t.co/CKi9oCaR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 11:29:49 +0000", "from_user": "javascriptalert", "from_user_id": 274501532, "from_user_id_str": "274501532", "from_user_name": "javascript", "geo": null, "id": 147277176834768900, "id_str": "147277176834768896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1304350707/___normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1304350707/___normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Getting started with CouchDB and NodeJS on Ubuntu 10.10 | Giant Flying Saucer: http://t.co/GCBZ7wvg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 11:17:18 +0000", "from_user": "dominik", "from_user_id": 2623, "from_user_id_str": "2623", "from_user_name": "Dominik Schwind", "geo": null, "id": 147274023406018560, "id_str": "147274023406018560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1645421197/Photo_18.11.11_13_15_36__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645421197/Photo_18.11.11_13_15_36__1__normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "@__Neha whoever named Ektorp is one silly person\\u2026 naming a CouchDB API after an IKEA couch\\u2026 hehe.", "to_user": "__Neha", "to_user_id": 22790291, "to_user_id_str": "22790291", "to_user_name": "Neha ", "in_reply_to_status_id": 147273009047146500, "in_reply_to_status_id_str": "147273009047146496"}, +{"created_at": "Thu, 15 Dec 2011 11:13:16 +0000", "from_user": "__Neha", "from_user_id": 22790291, "from_user_id_str": "22790291", "from_user_name": "Neha ", "geo": null, "id": 147273009047146500, "id_str": "147273009047146496", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1326007011/Neha_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1326007011/Neha_twitter_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Phonegap + CouchDB + Ektorp #Win !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 10:44:01 +0000", "from_user": "AndreyGavrylyuk", "from_user_id": 220984179, "from_user_id_str": "220984179", "from_user_name": "Andrey", "geo": null, "id": 147265648693743600, "id_str": "147265648693743616", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1252267286/photo_87777_1032000_slide_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1252267286/photo_87777_1032000_slide_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u041D\\u0435\\u043F\\u043B\\u043E\\u0445\\u043E\\u0439 \\u043E\\u0431\\u0437\\u043E\\u0440 No-sql \\u0431\\u0430\\u0437 \\u0434\\u0430\\u043D\\u043D\\u044B\\u0445 http://t.co/6zX8LoAN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 10:33:37 +0000", "from_user": "alfamale156", "from_user_id": 61744769, "from_user_id_str": "61744769", "from_user_name": "Andrew Woodcock", "geo": null, "id": 147263033494872060, "id_str": "147263033494872065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693217959/Daddy_and_Emily_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693217959/Daddy_and_Emily_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Curl returning \\u201CInvalid UTF-8 JSON\\u201D error from CouchDb on Windows although JSON is correct http://t.co/5XHNKbRI via http://t.co/ZrHEwBSt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 09:49:46 +0000", "from_user": "tavobarrientos", "from_user_id": 3104781, "from_user_id_str": "3104781", "from_user_name": "Gustavo Barrientos G", "geo": null, "id": 147251998071336960, "id_str": "147251998071336960", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1645762612/914b595c-18d1-45bd-96e9-d23a52af132e_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645762612/914b595c-18d1-45bd-96e9-d23a52af132e_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Interesante video para iniciarse con CouchDB: http://t.co/fCyAWA3i", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 09:45:19 +0000", "from_user": "derekgardiner", "from_user_id": 16778769, "from_user_id_str": "16778769", "from_user_name": "derekgardiner", "geo": null, "id": 147250876074049540, "id_str": "147250876074049537", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1589770988/DGtwitterLogo_v2_320_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1589770988/DGtwitterLogo_v2_320_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@GarrenSmith @wohali that's going to be a cool course! Wish I had time for dive into some couchDB as well!", "to_user": "GarrenSmith", "to_user_id": 14853561, "to_user_id_str": "14853561", "to_user_name": "GarrenSmith", "in_reply_to_status_id": 147249690461732860, "in_reply_to_status_id_str": "147249690461732864"}, +{"created_at": "Thu, 15 Dec 2011 09:44:30 +0000", "from_user": "xergio", "from_user_id": 534943, "from_user_id_str": "534943", "from_user_name": "Sergio \\u00C1lvarez", "geo": null, "id": 147250669693317120, "id_str": "147250669693317120", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/17999562/sergio_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/17999562/sergio_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@dipina echa un ojo a esto http://t.co/QscWOi3D por si quieres completar el discurso para otra vez", "to_user": "dipina", "to_user_id": 68908905, "to_user_id_str": "68908905", "to_user_name": "Diego L\\u00F3pez de Ipi\\u00F1a", "in_reply_to_status_id": 146980294182977540, "in_reply_to_status_id_str": "146980294182977537"}, +{"created_at": "Thu, 15 Dec 2011 09:40:36 +0000", "from_user": "GarrenSmith", "from_user_id": 14853561, "from_user_id_str": "14853561", "from_user_name": "GarrenSmith", "geo": null, "id": 147249690461732860, "id_str": "147249690461732864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1205684853/mugshot1-sq_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1205684853/mugshot1-sq_normal.JPG", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "hey @wohali I like to enroll for the couchdb dev course if you still have space", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 08:35:44 +0000", "from_user": "skoleniRoR", "from_user_id": 277978059, "from_user_id_str": "277978059", "from_user_name": "\\u0160kolen\\u00ED RubyOnRails", "geo": null, "id": 147233363709804540, "id_str": "147233363709804545", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1301857795/Logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1301857795/Logo_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "RT @rubyslava: \\u0160tvrtok o 19:00 v Kaf\\u00E9 Nervosa: Akt\\u00EDvna dokument\\u00E1cia (@iNecas) a CouchDB (Michal Bartha) 15.12. http://t.co/CKi9oCaR RT pls.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 08:15:14 +0000", "from_user": "fumi1", "from_user_id": 4924121, "from_user_id_str": "4924121", "from_user_name": "Fumihiro Kato", "geo": null, "id": 147228206511030270, "id_str": "147228206511030272", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/709220006/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/709220006/twitterProfilePhoto_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "\\u88CF\\u306E\\u30C7\\u30FC\\u30BF\\u69CB\\u9020\\u304CMetaweb Object Model\\u306E\\u3088\\u3046\\u306A\\u5F62\\u3067Graph\\u3067\\u66F8\\u304B\\u308C\\u3066\\u3044\\u308B\\u3089\\u3057\\u3044\\uFF0Esection\\u3068\\u304B\\u306E\\u65AD\\u7247\\u304C\\u5168\\u90E8\\u30CE\\u30FC\\u30C9\\uFF0E\\u30B7\\u30B9\\u30C6\\u30E0\\u306FNode.js+CouchDB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 08:13:26 +0000", "from_user": "aschlapsi", "from_user_id": 16939577, "from_user_id_str": "16939577", "from_user_name": "aschlapsi", "geo": null, "id": 147227755514314750, "id_str": "147227755514314752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1426664666/Profilfoto_140x185_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1426664666/Profilfoto_140x185_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "@goloroden couchdb (erlang), pandoc (haskell) or unison (ocaml) are open source projects written in functional languages.", "to_user": "goloroden", "to_user_id": 132484863, "to_user_id_str": "132484863", "to_user_name": "Golo Roden", "in_reply_to_status_id": 147220624815824900, "in_reply_to_status_id_str": "147220624815824896"}, +{"created_at": "Thu, 15 Dec 2011 07:16:44 +0000", "from_user": "blachab", "from_user_id": 199579940, "from_user_id_str": "199579940", "from_user_name": "B.Blacha", "geo": null, "id": 147213485028290560, "id_str": "147213485028290561", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1584480982/me_photo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584480982/me_photo_normal.JPG", "source": "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", "text": "RT @developerworks: Learn why #CouchDB could become the de-facto #database for #webapp > http://t.co/zWAVirfC #Javascript #webdev #webdesign #app #code", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 07:02:03 +0000", "from_user": "Grommouth", "from_user_id": 148274375, "from_user_id_str": "148274375", "from_user_name": "Jerome Martin", "geo": null, "id": 147209788340703230, "id_str": "147209788340703233", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1143655075/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1143655075/image_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @del_javascript: Apache CouchDB: The CouchDB Project http://t.co/RkxxnlcO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 06:40:25 +0000", "from_user": "prudhviy", "from_user_id": 14572742, "from_user_id_str": "14572742", "from_user_name": "Bhaskar teja Yerneni", "geo": null, "id": 147204343966343170, "id_str": "147204343966343168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675735763/IMG_20111125_224735_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675735763/IMG_20111125_224735_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@wohali im interested in couchdb development course. plz let me know how to enroll. btw i stay in india", "to_user": "wohali", "to_user_id": 2192921, "to_user_id_str": "2192921", "to_user_name": "Joan Touzet"}, +{"created_at": "Thu, 15 Dec 2011 06:23:09 +0000", "from_user": "sbose78", "from_user_id": 190726716, "from_user_id_str": "190726716", "from_user_name": "Shoubhik Bose", "geo": null, "id": 147199999044882430, "id_str": "147199999044882432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1555136629/313678_10150287343724509_710069508_7509696_1574204_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555136629/313678_10150287343724509_710069508_7509696_1574204_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@iriscouch There should've been a \"Getting Started\" article following the account creation. Its really confusing for new couchdb users.", "to_user": "iriscouch", "to_user_id": 270375368, "to_user_id_str": "270375368", "to_user_name": "Iris Couch", "in_reply_to_status_id": 147190667217600500, "in_reply_to_status_id_str": "147190667217600512"}, +{"created_at": "Thu, 15 Dec 2011 06:13:27 +0000", "from_user": "jchris", "from_user_id": 1623, "from_user_id_str": "1623", "from_user_name": "J Chris Anderson", "geo": null, "id": 147197559423774720, "id_str": "147197559423774720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1611440478/IMG_0049_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611440478/IMG_0049_normal.jpg", "source": "<a href="http://trillian.im/" rel="nofollow">Trillian</a>", "text": "RT @wohali: Enrolment for the Intro to CouchDB Development course is open! Limited to 20 seats. http://t.co/4IjJEKT0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 05:59:27 +0000", "from_user": "sbose78", "from_user_id": 190726716, "from_user_id_str": "190726716", "from_user_name": "Shoubhik Bose", "geo": null, "id": 147194035096911870, "id_str": "147194035096911872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1555136629/313678_10150287343724509_710069508_7509696_1574204_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555136629/313678_10150287343724509_710069508_7509696_1574204_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@davecottlehuber hey I'm a noob in Couchdb. Tell me something, Admin users can create a db, but others can't . Right?\\nBut my db is public?", "to_user": "davecottlehuber", "to_user_id": 20142853, "to_user_id_str": "20142853", "to_user_name": "Dave Cottlehuber", "in_reply_to_status_id": 147083479631409150, "in_reply_to_status_id_str": "147083479631409152"}, +{"created_at": "Thu, 15 Dec 2011 05:46:04 +0000", "from_user": "iriscouch", "from_user_id": 270375368, "from_user_id_str": "270375368", "from_user_name": "Iris Couch", "geo": null, "id": 147190667217600500, "id_str": "147190667217600512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1665147201/iris_couch_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665147201/iris_couch_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@sbose78 Thanks! The idea is, standard CouchDB. Whatever Apache CouchDB does, your db does. Questions at http://t.co/EYYvAqq1", "to_user": "sbose78", "to_user_id": 190726716, "to_user_id_str": "190726716", "to_user_name": "Shoubhik Bose", "in_reply_to_status_id": 147189506536247300, "in_reply_to_status_id_str": "147189506536247296"}, +{"created_at": "Thu, 15 Dec 2011 05:41:16 +0000", "from_user": "robertdfrench", "from_user_id": 40887566, "from_user_id_str": "40887566", "from_user_name": "Robert D French", "geo": null, "id": 147189460700901380, "id_str": "147189460700901376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1127117917/profile_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1127117917/profile_normal.jpeg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "@wohali ooh, I want to be in your CouchDB class! Is it going to cover the B-Tree implementation?", "to_user": "wohali", "to_user_id": 2192921, "to_user_id_str": "2192921", "to_user_name": "Joan Touzet"}, +{"created_at": "Thu, 15 Dec 2011 05:32:10 +0000", "from_user": "rctorr", "from_user_id": 37769342, "from_user_id_str": "37769342", "from_user_name": "Ricardo Torres", "geo": null, "id": 147187171282001920, "id_str": "147187171282001920", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1647593936/bcdb583c-1820-4a83-8712-024f03dbb5e7_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647593936/bcdb583c-1820-4a83-8712-024f03dbb5e7_normal.png", "source": "<a href="http://timely.is" rel="nofollow">Timely by Demandforce</a>", "text": "RT @DBmxorg: Para usar CouchDB sin instalarlo localmente, puedes crear una cuenta en Iris Couch http://t.co/W35RgSfd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 05:20:07 +0000", "from_user": "DBmxorg", "from_user_id": 261452842, "from_user_id_str": "261452842", "from_user_name": "DBmx.org", "geo": null, "id": 147184136434618370, "id_str": "147184136434618368", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1263199080/4395953684_419dff284f_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263199080/4395953684_419dff284f_normal.jpg", "source": "<a href="http://timely.is" rel="nofollow">Timely by Demandforce</a>", "text": "Para usar CouchDB sin instalarlo localmente, puedes crear una cuenta en Iris Couch http://t.co/W35RgSfd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 05:02:20 +0000", "from_user": "AndroidAtSO", "from_user_id": 396953941, "from_user_id_str": "396953941", "from_user_name": "Android At SO", "geo": null, "id": 147179663037435900, "id_str": "147179663037435904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1603792720/androidatso_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1603792720/androidatso_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Null pointer exception when trying to fetch all documents from CouchDB database using ektorp on Android: I have ... http://t.co/XFbVK9vp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 04:55:53 +0000", "from_user": "imranweb", "from_user_id": 42443969, "from_user_id_str": "42443969", "from_user_name": "Imran", "geo": null, "id": 147178039527227400, "id_str": "147178039527227392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1045380059/q1410275950_8655_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1045380059/q1410275950_8655_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Exploring CouchDB http://t.co/GxKbxpDM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 04:53:24 +0000", "from_user": "i3enhamin", "from_user_id": 18757373, "from_user_id_str": "18757373", "from_user_name": "Ben Racine", "geo": null, "id": 147177414152298500, "id_str": "147177414152298496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1285814203/76288267C_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1285814203/76288267C_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @html5libs: #JavaScript #couchdb apps http://t.co/ZDekAhin", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 04:53:00 +0000", "from_user": "html5libs", "from_user_id": 418314157, "from_user_id_str": "418314157", "from_user_name": "HTML5 Libraries", "geo": null, "id": 147177314927640580, "id_str": "147177314927640576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1651201296/HTML5_Logo_256_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651201296/HTML5_Logo_256_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "#JavaScript #couchdb apps http://t.co/ZDekAhin", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 03:56:03 +0000", "from_user": "delicerubyrails", "from_user_id": 186274683, "from_user_id_str": "186274683", "from_user_name": "Delicious Ruby Rails", "geo": null, "id": 147162982273654800, "id_str": "147162982273654784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Standalone Attachments in CouchDB + Ruby - Stack Overflow: http://t.co/jvqy5IIG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 03:53:11 +0000", "from_user": "rubyalert", "from_user_id": 279514715, "from_user_id_str": "279514715", "from_user_name": "rubyalert", "geo": null, "id": 147162259494420480, "id_str": "147162259494420480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1305480594/ruby_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1305480594/ruby_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Standalone Attachments in CouchDB + Ruby - Stack Overflow: http://t.co/8T1PfTBB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 03:50:55 +0000", "from_user": "yssk22", "from_user_id": 15690947, "from_user_id_str": "15690947", "from_user_name": "Yohei Sasaki", "geo": null, "id": 147161688699965440, "id_str": "147161688699965440", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1166169462/elly_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1166169462/elly_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "\\u306A\\u306E\\u3067\\u3001npm\\u306E\\u30EA\\u30DD\\u30B8\\u30C8\\u30EA\\u4F5C\\u308B\\u306B\\u306FCouchDB\\u304C\\u5FC5\\u8981\\u3067\\u3059\\u3002\\u307E\\u3001\\u77E5\\u3063\\u3066\\u308A\\u3083\\u3055\\u304F\\u3063\\u3068\\u884C\\u3051\\u307E\\u3059\\u304C\\u3001\\u6B63\\u76F4\\u521D\\u5FC3\\u8005\\u306B\\u306F\\u304A\\u3059\\u3059\\u3081\\u3067\\u304D\\u307E\\u305B\\u3093\\u3002\\u3002\\u3002 RT @bad_at_math: http://t.co/Izkl5cgT\\u306E\\u30D0\\u30C3\\u30AF\\u30A8\\u30F3\\u30C9\\u306B\\u306FCouchDB\\u304C\\u4F7F\\u308F\\u308C\\u3066\\u308B\\u306E\\u304B\\u30FB\\u30FB\\u30FB\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 03:48:04 +0000", "from_user": "lxcid", "from_user_id": 28384294, "from_user_id_str": "28384294", "from_user_name": "Stan Chang Khin Boon", "geo": +{"coordinates": [1.3838,103.7443], "type": "Point"}, "id": 147160971662721020, "id_str": "147160971662721024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1345106575/Stan_Chang_Khin_Boon_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1345106575/Stan_Chang_Khin_Boon_normal.jpeg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@echoz they recently just made the foot print of couchdb from 15mb to less den 4mb in mobile. Still fat but nice for small app.", "to_user": "echoz", "to_user_id": 43183, "to_user_id_str": "43183", "to_user_name": "Jeremy Foo", "in_reply_to_status_id": 147018815526547460, "in_reply_to_status_id_str": "147018815526547456"}, +{"created_at": "Thu, 15 Dec 2011 03:34:25 +0000", "from_user": "del_javascript", "from_user_id": 23282663, "from_user_id_str": "23282663", "from_user_name": "Javascript News", "geo": null, "id": 147157537614082050, "id_str": "147157537614082048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/90410047/clouds2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/90410047/clouds2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Apache CouchDB: The CouchDB Project http://t.co/RkxxnlcO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 03:14:25 +0000", "from_user": "javascriptalert", "from_user_id": 274501532, "from_user_id_str": "274501532", "from_user_name": "javascript", "geo": null, "id": 147152502847045630, "id_str": "147152502847045633", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1304350707/___normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1304350707/___normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Apache CouchDB: The CouchDB Project: http://t.co/eFbFPoL5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 02:48:54 +0000", "from_user": "bad_at_math", "from_user_id": 183217980, "from_user_id_str": "183217980", "from_user_name": "juske the badatmath", "geo": null, "id": 147146081413771260, "id_str": "147146081413771264", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1111214185/Untitled1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1111214185/Untitled1_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "npmjs.org\\u306E\\u30D0\\u30C3\\u30AF\\u30A8\\u30F3\\u30C9\\u306B\\u306FCouchDB\\u304C\\u4F7F\\u308F\\u308C\\u3066\\u308B\\u306E\\u304B\\u30FB\\u30FB\\u30FB\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 02:36:33 +0000", "from_user": "Lodoicea", "from_user_id": 6200572, "from_user_id_str": "6200572", "from_user_name": "Daniel Bryan", "geo": null, "id": 147142974814433280, "id_str": "147142974814433282", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/270352142/n536021448_2470260_4194566_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/270352142/n536021448_2470260_4194566_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@wohali is it too late for the CouchDB course?", "to_user": "wohali", "to_user_id": 2192921, "to_user_id_str": "2192921", "to_user_name": "Joan Touzet"}, +{"created_at": "Thu, 15 Dec 2011 02:21:18 +0000", "from_user": "philipdurbin", "from_user_id": 18326200, "from_user_id_str": "18326200", "from_user_name": "Philip Durbin", "geo": null, "id": 147139138112602100, "id_str": "147139138112602112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1626175903/rootin8_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626175903/rootin8_normal.png", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@someara thanks. i was there and enjoyed the talk. interesting, the upcoming switch to erlang and away from couchdb", "to_user": "someara", "to_user_id": 15077315, "to_user_id_str": "15077315", "to_user_name": "someara", "in_reply_to_status_id": 145279722618748930, "in_reply_to_status_id_str": "145279722618748929"}, +{"created_at": "Thu, 15 Dec 2011 02:15:53 +0000", "from_user": "hkos", "from_user_id": 27012673, "from_user_id_str": "27012673", "from_user_name": "Heiko S.", "geo": null, "id": 147137771637714940, "id_str": "147137771637714944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1451964551/IMG_2654___normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1451964551/IMG_2654___normal.JPG", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "well then. the sun is up, it's probably time to get this over with and move some data around in my couchdb instances.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 01:38:11 +0000", "from_user": "_jhs", "from_user_id": 16281277, "from_user_id_str": "16281277", "from_user_name": "Jason Smith", "geo": null, "id": 147128286563143680, "id_str": "147128286563143680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1600208979/jason_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600208979/jason_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@tilgovi Tellin' it like it is on the CouchDB dev list", "to_user": "tilgovi", "to_user_id": 15258949, "to_user_id_str": "15258949", "to_user_name": "Randall Leeds"}, +{"created_at": "Thu, 15 Dec 2011 00:54:06 +0000", "from_user": "keithkim", "from_user_id": 14881688, "from_user_id_str": "14881688", "from_user_name": "Keith Kim", "geo": null, "id": 147117191064584200, "id_str": "147117191064584192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1485820747/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1485820747/me_normal.jpg", "source": "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", "text": "RT @developerworks: Learn why #CouchDB could become the de-facto #database for #webapp > http://t.co/zWAVirfC #Javascript #webdev #webdesign #app #code", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 00:52:51 +0000", "from_user": "keithkim", "from_user_id": 14881688, "from_user_id_str": "14881688", "from_user_name": "Keith Kim", "geo": null, "id": 147116878081425400, "id_str": "147116878081425408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1485820747/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1485820747/me_normal.jpg", "source": "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", "text": "RT @developerworks: Building #CouchDB CouchApps - #database #webapp using #HTML #CSS & #JavaScript > http://t.co/N4MeLBWG #webdesign #webdev #HTML5 #CSS3 #app", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 00:34:57 +0000", "from_user": "tilgovi", "from_user_id": 15258949, "from_user_id_str": "15258949", "from_user_name": "Randall Leeds", "geo": null, "id": 147112373063389200, "id_str": "147112373063389185", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/70894135/n1009387_33549803_5396_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/70894135/n1009387_33549803_5396_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I think this will be great: RT @wohali: Enrollment for the Intro to CouchDB Development course is open! http://t.co/aJ8eFrwB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 00:20:58 +0000", "from_user": "coderbyheart", "from_user_id": 23059309, "from_user_id_str": "23059309", "from_user_name": "Markus Tacker", "geo": null, "id": 147108855086727170, "id_str": "147108855086727168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1020646320/cbh-twitter-logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1020646320/cbh-twitter-logo_normal.png", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@lsmith What would be the advantages of #PHPCR over e.g. a #CouchDB?", "to_user": "lsmith", "to_user_id": 22903583, "to_user_id_str": "22903583", "to_user_name": "Lukas Kahwe Smith", "in_reply_to_status_id": 146936853822570500, "in_reply_to_status_id_str": "146936853822570496"}, +{"created_at": "Thu, 15 Dec 2011 00:07:28 +0000", "from_user": "davisp", "from_user_id": 14520158, "from_user_id_str": "14520158", "from_user_name": "Paul Joseph Davis", "geo": null, "id": 147105457167806460, "id_str": "147105457167806464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/235100456/cropped_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/235100456/cropped_normal.png", "source": "<a href="http://trillian.im/" rel="nofollow">Trillian</a>", "text": "RT @wohali: Enrolment for the Intro to CouchDB Development course is open! Limited to 20 seats. http://t.co/4IjJEKT0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 23:55:55 +0000", "from_user": "s89", "from_user_id": 28697346, "from_user_id_str": "28697346", "from_user_name": "Sander D", "geo": null, "id": 147102550116675600, "id_str": "147102550116675585", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1209615683/ik_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1209615683/ik_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@wohali Will the CouchDB course material be made available to non-participants too?", "to_user": "wohali", "to_user_id": 2192921, "to_user_id_str": "2192921", "to_user_name": "Joan Touzet"}, +{"created_at": "Wed, 14 Dec 2011 23:35:50 +0000", "from_user": "foertel", "from_user_id": 64152503, "from_user_id_str": "64152503", "from_user_name": "Felix Oertel", "geo": null, "id": 147097497116999680, "id_str": "147097497116999680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1252095596/kuehlschrank_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1252095596/kuehlschrank_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@krautsock distributed couchdb with membase memcached frontend ... nothing beats that ;)", "to_user": "krautsock", "to_user_id": 43083165, "to_user_id_str": "43083165", "to_user_name": "K-Rock", "in_reply_to_status_id": 147088144964124670, "in_reply_to_status_id_str": "147088144964124672"}, +{"created_at": "Wed, 14 Dec 2011 23:19:39 +0000", "from_user": "BradleyHolt", "from_user_id": 10909812, "from_user_id_str": "10909812", "from_user_name": "Bradley Holt", "geo": null, "id": 147093422392610800, "id_str": "147093422392610816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/727991509/bradley-holt-300x300_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/727991509/bradley-holt-300x300_normal.jpg", "source": "<a href="http://trillian.im/" rel="nofollow">Trillian</a>", "text": "RT @wohali: Enrolment for the Intro to CouchDB Development course is open! Limited to 20 seats. http://t.co/4IjJEKT0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 23:16:08 +0000", "from_user": "JLeeGhost", "from_user_id": 306117941, "from_user_id_str": "306117941", "from_user_name": "Johnneylee Rollins", "geo": null, "id": 147092536341708800, "id_str": "147092536341708801", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1370810672/SpaceGhost_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1370810672/SpaceGhost_normal.jpg", "source": "<a href="http://trillian.im/" rel="nofollow">Trillian</a>", "text": "RT @wohali: Enrolment for the Intro to CouchDB Development course is open! Limited to 20 seats. http://t.co/4IjJEKT0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 23:15:45 +0000", "from_user": "maxogden", "from_user_id": 12241752, "from_user_id_str": "12241752", "from_user_name": "max ogden", "geo": null, "id": 147092442016006140, "id_str": "147092442016006144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690285875/max_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690285875/max_normal.png", "source": "<a href="http://trillian.im/" rel="nofollow">Trillian</a>", "text": "RT @wohali: Enrolment for the Intro to CouchDB Development course is open! Limited to 20 seats. http://t.co/4IjJEKT0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 23:05:09 +0000", "from_user": "wohali", "from_user_id": 2192921, "from_user_id_str": "2192921", "from_user_name": "Joan Touzet", "geo": null, "id": 147089775315267600, "id_str": "147089775315267584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/628245169/wohali_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/628245169/wohali_normal.png", "source": "<a href="http://trillian.im/" rel="nofollow">Trillian</a>", "text": "Enrolment for the Intro to CouchDB Development course is open! Limited to 20 seats. http://t.co/4IjJEKT0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 23:04:52 +0000", "from_user": "Lodoicea", "from_user_id": 6200572, "from_user_id_str": "6200572", "from_user_name": "Daniel Bryan", "geo": null, "id": 147089700522430460, "id_str": "147089700522430464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/270352142/n536021448_2470260_4194566_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/270352142/n536021448_2470260_4194566_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@wohali I'd love to participate in the CouchDB course", "to_user": "wohali", "to_user_id": 2192921, "to_user_id_str": "2192921", "to_user_name": "Joan Touzet"}, +{"created_at": "Wed, 14 Dec 2011 21:51:44 +0000", "from_user": "drewconway", "from_user_id": 18463930, "from_user_id_str": "18463930", "from_user_name": "Drew Conway", "geo": null, "id": 147071297296404480, "id_str": "147071297296404480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1467825387/laptop_sepia_2_crop_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1467825387/laptop_sepia_2_crop_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@couchdb is it really true that CDB still does not support cross platform XMLHttpRequest? http://t.co/D4UAWFdF is there an easy patch?", "to_user": "CouchDB", "to_user_id": 14181317, "to_user_id_str": "14181317", "to_user_name": "CouchDB"} +, +{"created_at": "Wed, 14 Dec 2011 21:08:10 +0000", "from_user": "_alejandromg", "from_user_id": 53717698, "from_user_id_str": "53717698", "from_user_name": "Alejandro Morales", "geo": null, "id": 147060332534308860, "id_str": "147060332534308865", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1473584095/2011-07-27-214648m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1473584095/2011-07-27-214648m_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@sbose78 @NodeJsCommunity depends on what type of db? Redis, couchdb, mongodb?", "to_user": "sbose78", "to_user_id": 190726716, "to_user_id_str": "190726716", "to_user_name": "Shoubhik Bose", "in_reply_to_status_id": 146978403772411900, "in_reply_to_status_id_str": "146978403772411904"}, +{"created_at": "Wed, 14 Dec 2011 21:06:32 +0000", "from_user": "panterch", "from_user_id": 84031797, "from_user_id_str": "84031797", "from_user_name": "Panter llc", "geo": null, "id": 147059923484803070, "id_str": "147059923484803072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/482712494/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/482712494/logo_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@gr2m from minutes.io held a great pantalk on backbone.js, couchdb, usability and marketing. thx a bunch, we enjoyed it a lot!", "to_user": "gr2m", "to_user_id": 11754732, "to_user_id_str": "11754732", "to_user_name": "Gregor"}, +{"created_at": "Wed, 14 Dec 2011 21:03:44 +0000", "from_user": "amosdesigns", "from_user_id": 36741368, "from_user_id_str": "36741368", "from_user_name": "jerome amos", "geo": null, "id": 147059218799788030, "id_str": "147059218799788032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1630998475/amosdesignlogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630998475/amosdesignlogo_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "An O'Reilly webcast: Sync & Swim With CouchDB For Mac & iOS http://t.co/vFjPFPEW via @oreillymedia", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:00:21 +0000", "from_user": "patrickDurusau", "from_user_id": 152194866, "from_user_id_str": "152194866", "from_user_name": "Patrick Durusau", "geo": null, "id": 147058366143934460, "id_str": "147058366143934464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/961579480/patrick_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/961579480/patrick_normal.jpeg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "CouchDB: JSON, HTTP & MapReduce #topicmaps #CouchDB #JSON #MapReduce - http://t.co/MUv66XSh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 20:14:38 +0000", "from_user": "dethe", "from_user_id": 15999259, "from_user_id_str": "15999259", "from_user_name": "Dethe Elza", "geo": null, "id": 147046860245319680, "id_str": "147046860245319681", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1125406751/dethe_self_portrait_med_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1125406751/dethe_self_portrait_med_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@rem Or a CouchDB like standard on top of local storage?", "to_user": "rem", "to_user_id": 648873, "to_user_id_str": "648873", "to_user_name": "Remy Sharp", "in_reply_to_status_id": 147039061771694080, "in_reply_to_status_id_str": "147039061771694080"}, +{"created_at": "Wed, 14 Dec 2011 19:47:04 +0000", "from_user": "rootsmith", "from_user_id": 19415769, "from_user_id_str": "19415769", "from_user_name": "Kevin J. Smith", "geo": null, "id": 147039922610638850, "id_str": "147039922610638849", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1577720933/kangyatzi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1577720933/kangyatzi_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Anybody know any postgreSQL (or MySQL) with some noSQL (MongoDB, couchDB) database admin/devs that are looking for work?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 19:34:39 +0000", "from_user": "TopDevTweets", "from_user_id": 194520782, "from_user_id_str": "194520782", "from_user_name": "TopDevTweets", "geo": null, "id": 147036801222184960, "id_str": "147036801222184960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "source": "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", "text": "RT @developerworks: Building #CouchDB CouchApps - #database #webapp using #HTML #CSS & #JavaScript > http://t.co/N4MeLBWG #webdesign #webdev #HTML5 #CSS3 #app", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 19:31:46 +0000", "from_user": "developerworks", "from_user_id": 16362921, "from_user_id_str": "16362921", "from_user_name": "developerworks", "geo": null, "id": 147036074168942600, "id_str": "147036074168942592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/60341510/dWbadge_v2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/60341510/dWbadge_v2_normal.jpg", "source": "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", "text": "Building #CouchDB CouchApps - #database #webapp using #HTML #CSS & #JavaScript > http://t.co/N4MeLBWG #webdesign #webdev #HTML5 #CSS3 #app", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 18:56:32 +0000", "from_user": "rlee319", "from_user_id": 53321251, "from_user_id_str": "53321251", "from_user_name": "Rachel Lee", "geo": null, "id": 147027207615811600, "id_str": "147027207615811584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1187605637/kitchen_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1187605637/kitchen_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Using GoToWebinar for the first time for the @2600hertz webinar on how we use CouchDB and BigCouch as our databases. Pretty slick interface!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 18:52:41 +0000", "from_user": "malihamariyam", "from_user_id": 55841181, "from_user_id_str": "55841181", "from_user_name": "Maliha Mariyam", "geo": null, "id": 147026238450565120, "id_str": "147026238450565121", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/557810589/profile_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/557810589/profile_pic_normal.jpg", "source": "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", "text": "RT @developerworks: Learn why #CouchDB could become the de-facto #database for #webapp > http://t.co/zWAVirfC #Javascript #webdev #webdesign #app #code", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 18:10:28 +0000", "from_user": "yacinedechmi", "from_user_id": 410679776, "from_user_id_str": "410679776", "from_user_name": "Yacine Dechmi", "geo": null, "id": 147015613339025400, "id_str": "147015613339025408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", "text": "RT @developerworks: Learn why #CouchDB could become the de-facto #database for #webapp > http://t.co/zWAVirfC #Javascript #webdev #webdesign #app #code", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 18:09:31 +0000", "from_user": "RootElection", "from_user_id": 57440969, "from_user_id_str": "57440969", "from_user_name": "Root Election", "geo": null, "id": 147015373982666750, "id_str": "147015373982666752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1424259274/eleccion_root_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1424259274/eleccion_root_normal.png", "source": "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", "text": "RT @developerworks: Learn why #CouchDB could become the de-facto #database for #webapp > http://t.co/zWAVirfC #Javascript #webdev #webdesign #app #code", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 18:09:22 +0000", "from_user": "TopDevTweets", "from_user_id": 194520782, "from_user_id_str": "194520782", "from_user_name": "TopDevTweets", "geo": null, "id": 147015338473685000, "id_str": "147015338473684992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "source": "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", "text": "RT @developerworks: Learn why #CouchDB could become the de-facto #database for #webapp > http://t.co/zWAVirfC #Javascript #webdev #webdesign #app #code", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 18:08:56 +0000", "from_user": "_hoffman", "from_user_id": 43253569, "from_user_id_str": "43253569", "from_user_name": "Alan Hoffman", "geo": null, "id": 147015226238312450, "id_str": "147015226238312448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/918455256/Alan_BW_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/918455256/Alan_BW_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @2600hertz: Don't forget to tune in at 11AM PST to hear Darren talk about how we're using #bigcouch and #couchDB as our databases http://t.co/bQuJjWnw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 18:08:02 +0000", "from_user": "taskovskig", "from_user_id": 33683378, "from_user_id_str": "33683378", "from_user_name": "Gjorgji Taskovski", "geo": null, "id": 147015000567980030, "id_str": "147015000567980032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/324658943/sfera_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/324658943/sfera_avatar_normal.png", "source": "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", "text": "RT @developerworks: Learn why #CouchDB could become the de-facto #database for #webapp > http://t.co/zWAVirfC #Javascript #webdev #webdesign #app #code", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 18:07:30 +0000", "from_user": "Reve99", "from_user_id": 43749520, "from_user_id_str": "43749520", "from_user_name": "Mohamed El-Feky", "geo": null, "id": 147014866778075140, "id_str": "147014866778075136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1669433048/DSC01290_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669433048/DSC01290_normal.JPG", "source": "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", "text": "RT @developerworks: Learn why #CouchDB could become the de-facto #database for #webapp > http://t.co/zWAVirfC #Javascript #webdev #webdesign #app #code", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 18:07:09 +0000", "from_user": "dapiam", "from_user_id": 16964932, "from_user_id_str": "16964932", "from_user_name": "daniP", "geo": null, "id": 147014780513824770, "id_str": "147014780513824768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1062467300/f831e401-d477-4e7a-8677-c7c4ebc858ef_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1062467300/f831e401-d477-4e7a-8677-c7c4ebc858ef_normal.png", "source": "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", "text": "RT @developerworks: Learn why #CouchDB could become the de-facto #database for #webapp > http://t.co/zWAVirfC #Javascript #webdev #webdesign #app #code", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 18:05:46 +0000", "from_user": "developerworks", "from_user_id": 16362921, "from_user_id_str": "16362921", "from_user_name": "developerworks", "geo": null, "id": 147014430784364540, "id_str": "147014430784364546", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/60341510/dWbadge_v2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/60341510/dWbadge_v2_normal.jpg", "source": "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", "text": "Learn why #CouchDB could become the de-facto #database for #webapp > http://t.co/zWAVirfC #Javascript #webdev #webdesign #app #code", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 18:04:50 +0000", "from_user": "2600hertz", "from_user_id": 19119996, "from_user_id_str": "19119996", "from_user_name": "2600hz", "geo": null, "id": 147014197476208640, "id_str": "147014197476208642", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1260130067/2600.COM_logo_DarkBG_175x175_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1260130067/2600.COM_logo_DarkBG_175x175_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Don't forget to tune in at 11AM PST to hear Darren talk about how we're using #bigcouch and #couchDB as our databases http://t.co/bQuJjWnw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 18:03:49 +0000", "from_user": "lxcid", "from_user_id": 28384294, "from_user_id_str": "28384294", "from_user_name": "Stan Chang Khin Boon", "geo": null, "id": 147013940176633860, "id_str": "147013940176633860", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1345106575/Stan_Chang_Khin_Boon_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1345106575/Stan_Chang_Khin_Boon_normal.jpeg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "CouchDB has its issues but after using it for a while, I find it quite positive. Duplication works like a charm.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 18:00:31 +0000", "from_user": "fvonx", "from_user_id": 13209922, "from_user_id_str": "13209922", "from_user_name": "Matthias Stiller", "geo": null, "id": 147013111285682180, "id_str": "147013111285682177", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/67878234/P1010274_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/67878234/P1010274_normal.JPG", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "If you plan to install couchdb on ubuntu follow this link: http://t.co/yTwB6AFJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 17:44:32 +0000", "from_user": "tavobarrientos", "from_user_id": 3104781, "from_user_id_str": "3104781", "from_user_name": "Gustavo Barrientos G", "geo": null, "id": 147009088532906000, "id_str": "147009088532905985", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1645762612/914b595c-18d1-45bd-96e9-d23a52af132e_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645762612/914b595c-18d1-45bd-96e9-d23a52af132e_normal.png", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "Mmmm CouchDB o MongoDB?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 17:40:45 +0000", "from_user": "PGoodies", "from_user_id": 339439593, "from_user_id_str": "339439593", "from_user_name": "Programmers Goodies", "geo": null, "id": 147008137352839170, "id_str": "147008137352839170", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Django & Couchdb: How to deploy without Apache server http://t.co/UYkwycai", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 17:17:33 +0000", "from_user": "vscarpenter", "from_user_id": 59223, "from_user_id_str": "59223", "from_user_name": "Vinny Carpenter", "geo": null, "id": 147002298437083140, "id_str": "147002298437083136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/48540942/vinny-thumbnail-rounded_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/48540942/vinny-thumbnail-rounded_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "Why I choose CouchDB over MongoDB | Chris Allnutt http://t.co/1xXlS7Et", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 16:59:03 +0000", "from_user": "Viroide", "from_user_id": 6294472, "from_user_id_str": "6294472", "from_user_name": "Jon E. Eguiluz", "geo": null, "id": 146997643699175420, "id_str": "146997643699175424", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1560688479/avatar_new_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1560688479/avatar_new_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Pregunta sin responder de #couchDB \\u00BFse guarda en el archivo jquery.couch.js el usuario y las pass en texto plano? Imagino que no, \\u00BFcomo va?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 16:33:33 +0000", "from_user": "binjip978", "from_user_id": 124973249, "from_user_id_str": "124973249", "from_user_name": "binjip", "geo": null, "id": 146991225273192450, "id_str": "146991225273192448", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1630686890/binjip_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630686890/binjip_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\\u0430 \\u043A\\u0430\\u043A \\u043E\\u043A\\u0430\\u0437\\u0430\\u043B\\u043E\\u0441\\u044C \\u043F\\u043E\\u043A\\u0440\\u043E\\u0432\\u044B \\u0441\\u043B\\u0435\\u0433\\u043A\\u0430 \\u0441\\u0440\\u044B\\u0432\\u0430\\u0435\\u0442 \\u0434\\u0430\\u043D\\u043D\\u0430\\u044F \\u043A\\u043D\\u0438\\u0436\\u0435\\u0447\\u043A\\u0430 http://t.co/I56xoiXo \\u043F\\u0440\\u0438\\u0447\\u0435\\u043C \\u0431\\u043B\\u0438\\u043D \\u0431\\u0435\\u0441\\u043F\\u043B\\u0430\\u0442\\u043D\\u043E", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 15:31:20 +0000", "from_user": "Prinzhorn", "from_user_id": 187226449, "from_user_id_str": "187226449", "from_user_name": "Alexander Prinzhorn", "geo": null, "id": 146975566388674560, "id_str": "146975566388674561", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1117872966/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1117872966/twitter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#couchdb #help. I replicate doc \"foo\" from \"a\" to \"b\". Then I delete \"foo\" from \"b\". Next replication does not replicate foo to b again.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 15:21:25 +0000", "from_user": "dreguera", "from_user_id": 58756910, "from_user_id_str": "58756910", "from_user_name": "Dani Reguera", "geo": null, "id": 146973071906058240, "id_str": "146973071906058240", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701886315/danillovic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701886315/danillovic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@jonimanolduran Si, pero ha elegido #couchDB para el curso, aunque #mongoDB tambien es buena solucion (Foursquare, bit.ly... usan mongoDB)", "to_user": "jonimanolduran", "to_user_id": 143146829, "to_user_id_str": "143146829", "to_user_name": "Jon Imanol Dur\\u00E1n", "in_reply_to_status_id": 146953720888950800, "in_reply_to_status_id_str": "146953720888950784"}, +{"created_at": "Wed, 14 Dec 2011 15:20:37 +0000", "from_user": "OReillyMedia", "from_user_id": 11069462, "from_user_id_str": "11069462", "from_user_name": "O'Reilly Media", "geo": null, "id": 146972868587163650, "id_str": "146972868587163648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/67008339/oreilly-icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/67008339/oreilly-icon_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Webcast Dec 16 at 10amPT/1pmET with @snej #CouchDB 'Getting Started In Modeling With Couchbase Mobile http://t.co/HHMf9Bgq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 14:55:19 +0000", "from_user": "PatrickHeneise", "from_user_id": 18073349, "from_user_id_str": "18073349", "from_user_name": "Patrick Heneise", "geo": null, "id": 146966504062201860, "id_str": "146966504062201857", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1462247153/CIMG2411_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1462247153/CIMG2411_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Just imported some JSON exported from SQL into CouchDB, just because it's better to read and to get an idea of the data structure. #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 14:49:07 +0000", "from_user": "DBmxorg", "from_user_id": 261452842, "from_user_id_str": "261452842", "from_user_name": "DBmx.org", "geo": null, "id": 146964941356793860, "id_str": "146964941356793856", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1263199080/4395953684_419dff284f_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263199080/4395953684_419dff284f_normal.jpg", "source": "<a href="http://timely.is" rel="nofollow">Timely by Demandforce</a>", "text": "De c\\u00F3mo alguien restaur\\u00F3 sus datos CouchDB copiando el archivo (ingl\\u00E9s) http://t.co/E1mUXWL9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 13:44:06 +0000", "from_user": "bmaeser", "from_user_id": 188948772, "from_user_id_str": "188948772", "from_user_name": "Bernhard M\\u00E4ser", "geo": null, "id": 146948582166110200, "id_str": "146948582166110208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1268014232/mangatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1268014232/mangatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ingenthr cb server will not be compatible with cdb, cb single server will be discontinued. ok, couchdb will live on as apache-project,", "to_user": "ingenthr", "to_user_id": 14696873, "to_user_id_str": "14696873", "to_user_name": "Matt Ingenthron", "in_reply_to_status_id": 146675271733485570, "in_reply_to_status_id_str": "146675271733485568"}, +{"created_at": "Wed, 14 Dec 2011 13:42:55 +0000", "from_user": "chrisallnutt", "from_user_id": 37202294, "from_user_id_str": "37202294", "from_user_name": "Chris Allnutt", "geo": null, "id": 146948283124809730, "id_str": "146948283124809729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1480259058/new_profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1480259058/new_profile_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Old article, but GREAT explanation of couchDB and relating documents: http://t.co/zTgss3TT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 12:59:16 +0000", "from_user": "dreguera", "from_user_id": 58756910, "from_user_id_str": "58756910", "from_user_name": "Dani Reguera", "geo": null, "id": 146937299899387900, "id_str": "146937299899387904", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701886315/danillovic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701886315/danillovic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#couchDB tiene muy buena pinta. A ver si sacamos tiempo para salsear mas en detalle.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 12:35:06 +0000", "from_user": "alfamale156", "from_user_id": 61744769, "from_user_id_str": "61744769", "from_user_name": "Andrew Woodcock", "geo": null, "id": 146931216988389380, "id_str": "146931216988389376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693217959/Daddy_and_Emily_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693217959/Daddy_and_Emily_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Restoring CouchDB databases from file http://t.co/3eGtbvis via http://t.co/ZrHEwBSt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 12:34:24 +0000", "from_user": "minutillo", "from_user_id": 7451972, "from_user_id_str": "7451972", "from_user_name": "minutillo", "geo": null, "id": 146931039720308740, "id_str": "146931039720308736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/285197880/Foto_296_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/285197880/Foto_296_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @adamlofts: CouchBase pulls out of CouchDB. http://t.co/5Cs80tt7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 11:55:42 +0000", "from_user": "pedrogte", "from_user_id": 16401507, "from_user_id_str": "16401507", "from_user_name": "Pedro Teixeira", "geo": null, "id": 146921302878466050, "id_str": "146921302878466048", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1591778458/DSC02359-2_copy_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591778458/DSC02359-2_copy_normal.JPG", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@mvalente couchdb: http://t.co/x93bctgT redis: http://t.co/y1lnIMgs", "to_user": "mvalente", "to_user_id": 20232460, "to_user_id_str": "20232460", "to_user_name": "Mario Valente", "in_reply_to_status_id": 146920082302451700, "in_reply_to_status_id_str": "146920082302451712"}, +{"created_at": "Wed, 14 Dec 2011 11:54:20 +0000", "from_user": "Viroide", "from_user_id": 6294472, "from_user_id_str": "6294472", "from_user_name": "Jon E. Eguiluz", "geo": null, "id": 146920955606867970, "id_str": "146920955606867968", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1560688479/avatar_new_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1560688479/avatar_new_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "#couchDB aun no s\\u00E9 si lo amar\\u00E9 o lo odiar\\u00E9, habr\\u00E1 que hacer algunas pruebas #noSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 11:53:57 +0000", "from_user": "DBmxorg", "from_user_id": 261452842, "from_user_id_str": "261452842", "from_user_name": "DBmx.org", "geo": null, "id": 146920859079155700, "id_str": "146920859079155712", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1263199080/4395953684_419dff284f_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263199080/4395953684_419dff284f_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @stefanmo: Node.js + CouchDB #nerdgasm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 11:33:38 +0000", "from_user": "agonirena", "from_user_id": 2822571, "from_user_id_str": "2822571", "from_user_name": "Ander Go\\u00F1i", "geo": null, "id": 146915746360991740, "id_str": "146915746360991744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1344969339/superkoko_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1344969339/superkoko_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#NoSQL kurtsoan, orain #CouchDB #aed", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 11:18:34 +0000", "from_user": "dreguera", "from_user_id": 58756910, "from_user_id_str": "58756910", "from_user_name": "Dani Reguera", "geo": null, "id": 146911958006890500, "id_str": "146911958006890496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701886315/danillovic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701886315/danillovic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#couchDB is the \"database of the web\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 10:33:04 +0000", "from_user": "foertel", "from_user_id": 64152503, "from_user_id_str": "64152503", "from_user_name": "Felix Oertel", "geo": null, "id": 146900506395152400, "id_str": "146900506395152385", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1252095596/kuehlschrank_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1252095596/kuehlschrank_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@krautsock wonder if #couchDB would make a good cluster-wide-shared cache /cc @typo3media", "to_user": "krautsock", "to_user_id": 43083165, "to_user_id_str": "43083165", "to_user_name": "K-Rock", "in_reply_to_status_id": 146887508012187650, "in_reply_to_status_id_str": "146887508012187648"}, +{"created_at": "Wed, 14 Dec 2011 09:08:56 +0000", "from_user": "hdeshev", "from_user_id": 911441, "from_user_id_str": "911441", "from_user_name": "Hristo Deshev", "geo": null, "id": 146879334550994940, "id_str": "146879334550994944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1636878139/af93f492-706b-4f54-ab44-238fb7a31b81_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1636878139/af93f492-706b-4f54-ab44-238fb7a31b81_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@rnewson Yeah, I just didn't know about it. I stumbled upon the feature while reading the couchdb-lucene source code. :D", "to_user": "rnewson", "to_user_id": 66516844, "to_user_id_str": "66516844", "to_user_name": "Robert Newson", "in_reply_to_status_id": 146769066290458620, "in_reply_to_status_id_str": "146769066290458624"}, +{"created_at": "Wed, 14 Dec 2011 08:54:28 +0000", "from_user": "bell4all", "from_user_id": 97405511, "from_user_id_str": "97405511", "from_user_name": "DongGyun Ko", "geo": null, "id": 146875694192926720, "id_str": "146875694192926720", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1108959009/Moms_61th_043-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1108959009/Moms_61th_043-1_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "@xguru node\\uC640couch db\\uB85C \\uBE14\\uB85C\\uADF8\\uAD6C\\uC131 http://t.co/H6mitSA0 \\uB610 mongo db\\uC640 express\\uB97C \\uC0AC\\uC6A9\\uD55C \\uBE14\\uB85C\\uADF8 \\uB9CC\\uB4E4\\uAE30 http://t.co/VBj5HRQy \\uADF8\\uB7F0\\uB370\\uC815\\uC791howtonode\\uB294 wheat\\uC73C\\uB85C \\uB9CC\\uB4E4\\uC5C8\\uB124\\uC694. \\uAC10\\uC0AC\\uD569\\uB2C8\\uB2E4!", "to_user": "xguru", "to_user_id": 19699818, "to_user_id_str": "19699818", "to_user_name": "\\uAD8C\\uC815\\uD601/\\uAD6C\\uB8E8"}, +{"created_at": "Wed, 14 Dec 2011 08:38:29 +0000", "from_user": "kr428", "from_user_id": 207401188, "from_user_id_str": "207401188", "from_user_name": "Kristian", "geo": null, "id": 146871669493989380, "id_str": "146871669493989377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1525504632/thorns_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1525504632/thorns_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Using #CouchDB with #spring RestTemplate is a rather pleasant and straightforward experience.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 08:32:17 +0000", "from_user": "KatelinEdelson", "from_user_id": 388370123, "from_user_id_str": "388370123", "from_user_name": "Katelin Edelson", "geo": null, "id": 146870110366339070, "id_str": "146870110366339072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1663798697/1142112_relaxing_girl_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663798697/1142112_relaxing_girl_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "For the record, I'm sure CouchDB is built to a high standard as well (the BBC use it, after all)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 07:58:09 +0000", "from_user": "cstrep", "from_user_id": 15102168, "from_user_id_str": "15102168", "from_user_name": "Cosimo Streppone", "geo": null, "id": 146861520100392960, "id_str": "146861520100392960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1522506843/dungeon-master-48x48_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1522506843/dungeon-master-48x48_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "<strike>couchdb</strike> dzil release. relax.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 07:21:13 +0000", "from_user": "jQueryBot", "from_user_id": 117459709, "from_user_id_str": "117459709", "from_user_name": "jquerybot", "geo": null, "id": 146852225170419700, "id_str": "146852225170419713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1363606323/JQueryBot_bigger_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1363606323/JQueryBot_bigger_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @Nodejs_bot via @RmeetsH NodeJsCommunity: published \"Mobile Architecture using #jQuery, #Nodejs (+ express) and CouchDB\" http...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 07:20:21 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 146852007905476600, "id_str": "146852007905476608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @RmeetsH NodeJsCommunity: published \"Mobile Architecture using #jQuery, #Nodejs (+ express) and CouchDB\" http://t.co/TCOIAu1u ...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 06:52:56 +0000", "from_user": "RmeetsH", "from_user_id": 59466503, "from_user_id_str": "59466503", "from_user_name": "Roberto B.", "geo": null, "id": 146845107105173500, "id_str": "146845107105173504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/335863240/n1031294848_119805_3238_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/335863240/n1031294848_119805_3238_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: published \"Mobile Architecture using #jQuery, #Nodejs (+ express) and CouchDB\" http://t.co/Rq1yyy8U http://t.co/WmLezliY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 05:43:24 +0000", "from_user": "mwessendorf", "from_user_id": 12287422, "from_user_id_str": "12287422", "from_user_name": "Matthias Wessendorf", "geo": null, "id": 146827609274200060, "id_str": "146827609274200065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1644899733/mw80s_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644899733/mw80s_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @pelegri: Git repos for Apache { CouchDB, Cordova, Oak } - all at http://t.co/7Yf2LKEL Go #Git! Go Apache! See http://t.co/2ycA3Pwh for context", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 05:35:17 +0000", "from_user": "debasishg", "from_user_id": 6562002, "from_user_id_str": "6562002", "from_user_name": "Debasish Ghosh", "geo": null, "id": 146825564248997900, "id_str": "146825564248997888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/983678766/12062010119_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/983678766/12062010119_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @cemerick: Tasty: a Clojure DSL for querying @cloudant indexes. #couchdb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 05:09:52 +0000", "from_user": "xigurat", "from_user_id": 45653559, "from_user_id_str": "45653559", "from_user_name": "Eddy E del Valle", "geo": null, "id": 146819168107376640, "id_str": "146819168107376640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1683435781/ya_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683435781/ya_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "#couchdb and #couchdbkit are really amazing!!! I wrote a program to index books and the index is stored un #couchdb and its relly fast!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 02:37:57 +0000", "from_user": "pelegri", "from_user_id": 18031910, "from_user_id_str": "18031910", "from_user_name": "pelegri", "geo": null, "id": 146780937248710660, "id_str": "146780937248710659", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/497054681/PelegriCropped_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/497054681/PelegriCropped_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Git repos for Apache { CouchDB, Cordova, Oak } - all at http://t.co/7Yf2LKEL Go #Git! Go Apache! See http://t.co/2ycA3Pwh for context", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 01:58:03 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 146770896714072060, "id_str": "146770896714072064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @n_bucciarelli: Following a NodeJS tutorial on How To Node: http://t.co/yO0nq6lU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 01:58:01 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 146770887742459900, "id_str": "146770887742459906", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Following a NodeJS tutorial on How To Node: http://t.co/wHwH60Gr http://t.co/DZNHeQwU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 01:28:57 +0000", "from_user": "n_bucciarelli", "from_user_id": 40869925, "from_user_id_str": "40869925", "from_user_name": "Nick Bucciarelli", "geo": null, "id": 146763574390439940, "id_str": "146763574390439936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/218954706/2838_525028593270_193905612_31171586_7006031_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/218954706/2838_525028593270_193905612_31171586_7006031_n_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Following a NodeJS tutorial on How To Node: http://t.co/yO0nq6lU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 01:20:06 +0000", "from_user": "daleharvey", "from_user_id": 16378342, "from_user_id_str": "16378342", "from_user_name": "Dale Harvey", "geo": null, "id": 146761348636876800, "id_str": "146761348636876800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1225104527/5353288191_7671433a7a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225104527/5353288191_7671433a7a_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@rwillmer better couchdb = couchdb, better memcached = couchbase, I will be around tomorrow, see you there", "to_user": "rwillmer", "to_user_id": 14862695, "to_user_id_str": "14862695", "to_user_name": "Rachel Willmer"}, +{"created_at": "Wed, 14 Dec 2011 00:10:44 +0000", "from_user": "MetaThis", "from_user_id": 103917660, "from_user_id_str": "103917660", "from_user_name": "David Jacobs", "geo": null, "id": 146743891809415170, "id_str": "146743891809415168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/624905068/avatar_fullsize_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/624905068/avatar_fullsize_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "Is it possible to fetch multiple standalone attachments (1 per doc) with single #CouchDB request? Don't see anything in bulk docs API.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 00:09:53 +0000", "from_user": "julian_duque", "from_user_id": 277280697, "from_user_id_str": "277280697", "from_user_name": "Juli\\u00E1n Duque", "geo": null, "id": 146743676817768450, "id_str": "146743676817768448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690228473/krampus_thumb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690228473/krampus_thumb_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @caolan: Couchbase drop CouchDB... nope, it's not April 1st http://t.co/EqDWZUxI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 23:50:06 +0000", "from_user": "rwillmer", "from_user_id": 14862695, "from_user_id_str": "14862695", "from_user_name": "Rachel Willmer", "geo": null, "id": 146738696186638340, "id_str": "146738696186638336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/198689428/rachel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/198689428/rachel_normal.jpg", "source": "<a href="http://www.nambu.com/" rel="nofollow">Nambu</a>", "text": "@daleharvey If I wanted an improved couchdb or an improved memcached, which new product do I look for?", "to_user": "daleharvey", "to_user_id": 16378342, "to_user_id_str": "16378342", "to_user_name": "Dale Harvey"}, +{"created_at": "Tue, 13 Dec 2011 23:48:38 +0000", "from_user": "rwillmer", "from_user_id": 14862695, "from_user_id_str": "14862695", "from_user_name": "Rachel Willmer", "geo": null, "id": 146738327238869000, "id_str": "146738327238868992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/198689428/rachel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/198689428/rachel_normal.jpg", "source": "<a href="http://www.nambu.com/" rel="nofollow">Nambu</a>", "text": "@daleharvey I'm still confused. I've used memcached, I've used couchdb. What are the current products? #nosql", "to_user": "daleharvey", "to_user_id": 16378342, "to_user_id_str": "16378342", "to_user_name": "Dale Harvey", "in_reply_to_status_id": 146630962489475070, "in_reply_to_status_id_str": "146630962489475072"}, +{"created_at": "Tue, 13 Dec 2011 23:44:26 +0000", "from_user": "alvinjasm", "from_user_id": 178051675, "from_user_id_str": "178051675", "from_user_name": "Alvin Lau", "geo": null, "id": 146737272023298050, "id_str": "146737272023298048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1132904375/054606146_643676146_6168350_7868142_n_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1132904375/054606146_643676146_6168350_7868142_n_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Cassandra vs MongoDB vs CouchDB vs Redis vs Riak vs HBase comparison :: KKovacs http://t.co/E3IR5Koo via @addthis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 23:41:00 +0000", "from_user": "c4milo", "from_user_id": 38187360, "from_user_id_str": "38187360", "from_user_name": "Camilo Aguilar", "geo": null, "id": 146736405698195460, "id_str": "146736405698195456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @caolan: Couchbase drop CouchDB... nope, it's not April 1st http://t.co/EqDWZUxI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 23:27:06 +0000", "from_user": "davecottlehuber", "from_user_id": 20142853, "from_user_id_str": "20142853", "from_user_name": "Dave Cottlehuber", "geo": null, "id": 146732909775167500, "id_str": "146732909775167488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1425805603/dch_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1425805603/dch_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@GitHubHelp none of my dch/couchdb/downloads are accessible - they've been up for ~ month or more. Ditto for new uploads. Any idea why?", "to_user": "GitHubHelp", "to_user_id": 200286009, "to_user_id_str": "200286009", "to_user_name": "GitHub Support"}, +{"created_at": "Tue, 13 Dec 2011 23:07:18 +0000", "from_user": "juanjeojeda", "from_user_id": 12679112, "from_user_id_str": "12679112", "from_user_name": "Juanje Ojeda \\u2713", "geo": null, "id": 146727927113990140, "id_str": "146727927113990144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/46025702/juanje_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/46025702/juanje_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Which is the best NoSQL database for X? Good comparative: http://t.co/8qilFgrF #nosql #mongodb #couchdb #cassandra #redis #hbase #membase", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 22:59:57 +0000", "from_user": "hlship", "from_user_id": 14717608, "from_user_id_str": "14717608", "from_user_name": "Howard M. Lewis Ship", "geo": null, "id": 146726076784197630, "id_str": "146726076784197632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/349034119/howard-basement-hands-folded-square_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/349034119/howard-basement-hands-folded-square_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@josetesan I'm starting to look at document db's like #mongodb and #couchdb", "to_user": "josetesan", "to_user_id": 28523513, "to_user_id_str": "28523513", "to_user_name": "josete", "in_reply_to_status_id": 146719140244238340, "in_reply_to_status_id_str": "146719140244238337"}, +{"created_at": "Tue, 13 Dec 2011 22:52:13 +0000", "from_user": "simonjjones", "from_user_id": 15126336, "from_user_id_str": "15126336", "from_user_name": "Simon Jones", "geo": null, "id": 146724132220968960, "id_str": "146724132220968962", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1604447795/ma-at-at_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1604447795/ma-at-at_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Neither @macports & @MacHomebrew could install CouchDB 1.1.1 on my MacBook; Building from source worked first time. #Fail", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 22:50:08 +0000", "from_user": "davecottlehuber", "from_user_id": 20142853, "from_user_id_str": "20142853", "from_user_name": "Dave Cottlehuber", "geo": null, "id": 146723606813085700, "id_str": "146723606813085696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1425805603/dch_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1425805603/dch_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@alfamale156 did you check out http://t.co/ArDYpvhG great to see you're using couch on windows!", "to_user": "alfamale156", "to_user_id": 61744769, "to_user_id_str": "61744769", "to_user_name": "Andrew Woodcock", "in_reply_to_status_id": 146534128769171460, "in_reply_to_status_id_str": "146534128769171456"}, +{"created_at": "Tue, 13 Dec 2011 22:38:16 +0000", "from_user": "vRobM", "from_user_id": 38737968, "from_user_id_str": "38737968", "from_user_name": "Rob Markovi\\u0107 (Robi)", "geo": null, "id": 146720622125391870, "id_str": "146720622125391872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/350626160/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/350626160/twitterProfilePhoto_normal.jpg", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "@romant btw is that a couchDB avatar? ;]", "to_user": "romant", "to_user_id": 14292941, "to_user_id_str": "14292941", "to_user_name": "Roman Tarnavski", "in_reply_to_status_id": 146719881021239300, "in_reply_to_status_id_str": "146719881021239296"}, +{"created_at": "Tue, 13 Dec 2011 21:58:36 +0000", "from_user": "iNecas", "from_user_id": 14450875, "from_user_id_str": "14450875", "from_user_name": "Ivan Ne\\u010Das", "geo": null, "id": 146710636565504000, "id_str": "146710636565504000", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1538268591/profil_sq_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538268591/profil_sq_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "RT @rubyslava: \\u0160tvrtok o 19:00 v Kaf\\u00E9 Nervosa: Akt\\u00EDvna dokument\\u00E1cia (@iNecas) a CouchDB (Michal Bartha) 15.12. http://t.co/CKi9oCaR RT pls.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 21:54:46 +0000", "from_user": "francbartoli", "from_user_id": 155518143, "from_user_id_str": "155518143", "from_user_name": "Francesco Bartoli", "geo": null, "id": 146709674761269250, "id_str": "146709674761269248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/993417644/CIMG0127_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/993417644/CIMG0127_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: published \"Mobile Architecture using #jQuery, #Nodejs (+ express) and CouchDB\" http://t.co/Rq1yyy8U http://t.co/WmLezliY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 21:46:12 +0000", "from_user": "GaruHenr", "from_user_id": 112743376, "from_user_id_str": "112743376", "from_user_name": "Bruno Henrique(Garu)", "geo": null, "id": 146707516070440960, "id_str": "146707516070440960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1551147469/225472_1760698895957_1193588234_31583357_7276793_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1551147469/225472_1760698895957_1193588234_31583357_7276793_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Mobile Architecture using jQuery, Node.js (+ express) and CouchDB http://t.co/IZsE3vUG #mobile #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 21:19:39 +0000", "from_user": "nieuws_website", "from_user_id": 202211352, "from_user_id_str": "202211352", "from_user_name": "nieuws_website", "geo": null, "id": 146700835848589300, "id_str": "146700835848589312", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1145927756/capica-website_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1145927756/capica-website_normal.gif", "source": "<a href="http://www.capica.nl" rel="nofollow">Capica B.V.</a>", "text": "Internet begrip: CouchDB http://t.co/CFhrqEJH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 21:07:17 +0000", "from_user": "stoolrossa", "from_user_id": 223451753, "from_user_id_str": "223451753", "from_user_name": "Todd Jackson", "geo": null, "id": 146697723704393730, "id_str": "146697723704393729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1183925786/IMG_0572_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1183925786/IMG_0572_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: published \"Mobile Architecture using #jQuery, #Nodejs (+ express) and CouchDB\" http://t.co/Rq1yyy8U http://t.co/WmLezliY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 21:00:50 +0000", "from_user": "dnzHTML5", "from_user_id": 172336158, "from_user_id_str": "172336158", "from_user_name": "dnz HTML5", "geo": null, "id": 146696099967668220, "id_str": "146696099967668224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1276625057/thumbnail40_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1276625057/thumbnail40_normal.jpg", "source": "<a href="http://www.donanza.com" rel="nofollow">DoNanza-Feeder</a>", "text": "#HTML5 #job - Web based GIS using Leaflet javascript library, couchdb, html5, cs... ($1,000) - http://t.co/Eu6A4jc2 #jobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 20:06:25 +0000", "from_user": "YannCluchey", "from_user_id": 32330343, "from_user_id_str": "32330343", "from_user_name": "Yann Cluchey", "geo": null, "id": 146682405313445900, "id_str": "146682405313445888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1453837609/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1453837609/image_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @cloudant: Less than 24 hours until our friends at 2600hz talk #CouchDB, #BigCouch, and cloud-based telephony. Register here: http://t.co/NiZkRGCi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 20:06:23 +0000", "from_user": "ahmedyha", "from_user_id": 188139030, "from_user_id_str": "188139030", "from_user_name": "ahmed yehia", "geo": null, "id": 146682398438985730, "id_str": "146682398438985729", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Java Persistence API for CouchDB http://t.co/hwT6f91G via @ahmedyha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 19:59:47 +0000", "from_user": "dschoettle", "from_user_id": 18198220, "from_user_id_str": "18198220", "from_user_name": "dschoettle", "geo": null, "id": 146680736068550660, "id_str": "146680736068550657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1635130832/legs_feed_the_wolf_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635130832/legs_feed_the_wolf_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "@cloudant : Less than 24 hours until our friends at 2600hz talk #CouchDB , #BigCouch , and cloud-based telephony. Regis\\u2026http://t.co/Uv5m9zG2", "to_user": "cloudant", "to_user_id": 24537879, "to_user_id_str": "24537879", "to_user_name": "Cloudant"}, +{"created_at": "Tue, 13 Dec 2011 19:41:11 +0000", "from_user": "caolan", "from_user_id": 12185182, "from_user_id_str": "12185182", "from_user_name": "Caolan McMahon", "geo": null, "id": 146676055158161400, "id_str": "146676055158161408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1328677360/colourful_cropped_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1328677360/colourful_cropped_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@ingenthr @benoitc Is that an Apache CouchDB compatible HTTP API?", "to_user": "ingenthr", "to_user_id": 14696873, "to_user_id_str": "14696873", "to_user_name": "Matt Ingenthron", "in_reply_to_status_id": 146675027444637700, "in_reply_to_status_id_str": "146675027444637697"}, +{"created_at": "Tue, 13 Dec 2011 19:41:09 +0000", "from_user": "benoitc", "from_user_id": 770056, "from_user_id_str": "770056", "from_user_name": "beno\\u00EEt chesneau", "geo": null, "id": 146676046186549250, "id_str": "146676046186549248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/76299981/avatar100x100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/76299981/avatar100x100_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@ingenthr @caolan as far as I know it's different from the Apache CouchDB one. Or did it change ?", "to_user": "ingenthr", "to_user_id": 14696873, "to_user_id_str": "14696873", "to_user_name": "Matt Ingenthron", "in_reply_to_status_id": 146675027444637700, "in_reply_to_status_id_str": "146675027444637697"}, +{"created_at": "Tue, 13 Dec 2011 19:31:56 +0000", "from_user": "floatingatoll", "from_user_id": 1059931, "from_user_id_str": "1059931", "from_user_name": "Richard Soderberg", "geo": null, "id": 146673727323643900, "id_str": "146673727323643904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/27759712/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/27759712/me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @caolan: Couchbase drop CouchDB... nope, it's not April 1st http://t.co/EqDWZUxI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 19:31:11 +0000", "from_user": "stickbyatlas", "from_user_id": 14092934, "from_user_id_str": "14092934", "from_user_name": "Ari Najarian", "geo": null, "id": 146673537376198660, "id_str": "146673537376198656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/51581322/canada_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/51581322/canada_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "CouchDB updates its views incrementally. That makes me very, very happy.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 19:29:20 +0000", "from_user": "YannCluchey", "from_user_id": 32330343, "from_user_id_str": "32330343", "from_user_name": "Yann Cluchey", "geo": null, "id": 146673074417311740, "id_str": "146673074417311744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1453837609/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1453837609/image_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @mynosql_popescu: Unintentional Market Confusion... Membase, CouchDB, or Couchbase: Unintentional Market Confusion... Membase, Cou... http://t.co/zJgSiFwe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 19:17:56 +0000", "from_user": "cemerick", "from_user_id": 15029885, "from_user_id_str": "15029885", "from_user_name": "Chas Emerick", "geo": null, "id": 146670205177823230, "id_str": "146670205177823232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1160448840/Untitled_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1160448840/Untitled_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Tasty: a Clojure DSL for querying @cloudant indexes. #couchdb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 19:16:57 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 146669956233310200, "id_str": "146669956233310208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @FriendsOfNodeJS sandeepmeher: published \"Mobile Architecture using #jQuery, #Nodejs (+ express) and CouchDB\" http://t.co/TCOIAu1u", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 19:16:56 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 146669952743653380, "id_str": "146669952743653376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @sandeepmeher published \"Mobile Architecture using #jQuery, #Nodejs (+ express) and CouchDB\" http://t.co/TCOIAu1u", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 19:14:59 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 146669464308547600, "id_str": "146669464308547586", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @sandeepmeher: published \"Mobile Architecture using #jQuery, #Nodejs (+ express) and CouchDB\" http://t.co/mEddCd3N", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 19:14:58 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 146669456804950000, "id_str": "146669456804950016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "published \"Mobile Architecture using #jQuery, #Nodejs (+ express) and CouchDB\" http://t.co/Rq1yyy8U http://t.co/WmLezliY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 19:12:10 +0000", "from_user": "cloudant", "from_user_id": 24537879, "from_user_id_str": "24537879", "from_user_name": "Cloudant", "geo": null, "id": 146668753952845820, "id_str": "146668753952845824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1158249007/icon-2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1158249007/icon-2_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Less than 24 hours until our friends at 2600hz talk #CouchDB, #BigCouch, and cloud-based telephony. Register here: http://t.co/NiZkRGCi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 19:11:46 +0000", "from_user": "sandeepmeher", "from_user_id": 40974713, "from_user_id_str": "40974713", "from_user_name": "Sandeep Meher", "geo": null, "id": 146668652572315650, "id_str": "146668652572315649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/378129336/SRM2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/378129336/SRM2_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "published \"Mobile Architecture using #jQuery, #Nodejs (+ express) and CouchDB\" http://t.co/mEddCd3N", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 19:02:20 +0000", "from_user": "chrisallnutt", "from_user_id": 37202294, "from_user_id_str": "37202294", "from_user_name": "Chris Allnutt", "geo": null, "id": 146666278831140860, "id_str": "146666278831140864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1480259058/new_profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1480259058/new_profile_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Looking for good benchmarks comparing CouchDB or MongoDB to traditional RDBMS's when relationship like functionality is added with node.js", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 18:57:23 +0000", "from_user": "mromtz", "from_user_id": 93404658, "from_user_id_str": "93404658", "from_user_name": "Mario Martinez", "geo": null, "id": 146665032720203780, "id_str": "146665032720203776", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1620642466/mromtzlogo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620642466/mromtzlogo_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @DBmxorg: Couchbase Single Server es un CouchDB, a partir de Enero de 2012 se descontinua. Sigue la implementaci\\u00F3n d la Apache Software Foundation", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 18:37:39 +0000", "from_user": "DBmxorg", "from_user_id": 261452842, "from_user_id_str": "261452842", "from_user_name": "DBmx.org", "geo": null, "id": 146660068056772600, "id_str": "146660068056772608", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1263199080/4395953684_419dff284f_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263199080/4395953684_419dff284f_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Couchbase Single Server es un CouchDB, a partir de Enero de 2012 se descontinua. Sigue la implementaci\\u00F3n d la Apache Software Foundation", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 18:28:13 +0000", "from_user": "adamlofts", "from_user_id": 54258478, "from_user_id_str": "54258478", "from_user_name": "Adam Lofts", "geo": null, "id": 146657691924824060, "id_str": "146657691924824067", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "CouchBase pulls out of CouchDB. http://t.co/5Cs80tt7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 18:14:38 +0000", "from_user": "dieTF", "from_user_id": 124272016, "from_user_id_str": "124272016", "from_user_name": "Johannes J. Schmidt", "geo": null, "id": 146654274724691970, "id_str": "146654274724691968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1159096320/cartoons_120_bigger_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1159096320/cartoons_120_bigger_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @caolan: Couchbase drop CouchDB... nope, it's not April 1st http://t.co/EqDWZUxI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 18:08:11 +0000", "from_user": "mandric", "from_user_id": 3474, "from_user_id_str": "3474", "from_user_name": "Milan Andric", "geo": null, "id": 146652653047398400, "id_str": "146652653047398401", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/64558932/IMG_0038_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/64558932/IMG_0038_normal.PNG", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@couchdb @couchbase #unitedtech please tell me we will have stable #couchdb binary releases available for all the major OSs!", "to_user": "CouchDB", "to_user_id": 14181317, "to_user_id_str": "14181317", "to_user_name": "CouchDB"}, +{"created_at": "Tue, 13 Dec 2011 18:02:12 +0000", "from_user": "christoph_peter", "from_user_id": 32364910, "from_user_id_str": "32364910", "from_user_name": "christoph peter", "geo": null, "id": 146651145950076930, "id_str": "146651145950076929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1552881559/322626_137009353062477_100002602394126_201623_2091083686_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552881559/322626_137009353062477_100002602394126_201623_2091083686_o_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @bmaeser: couchbase kills couchdb. http://t.co/vXNeAhZj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:54:43 +0000", "from_user": "stickbyatlas", "from_user_id": 14092934, "from_user_id_str": "14092934", "from_user_name": "Ari Najarian", "geo": null, "id": 146649261646417920, "id_str": "146649261646417921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/51581322/canada_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/51581322/canada_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "This is the most complicated CouchDB view I've ever built. Makes me wish I harmonized data structures before writing to the DB. Dammit.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:51:34 +0000", "from_user": "ajfeed", "from_user_id": 260762269, "from_user_id_str": "260762269", "from_user_name": "Ajinkya Feed", "geo": null, "id": 146648468864249860, "id_str": "146648468864249856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "CompSci Unintentional Market Confusion... Membase, CouchDB, or Couchbase: Unintentional Market Confusion... Memb... http://t.co/a5WjKEOa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Tue, 13 Dec 2011 17:48:34 +0000", "from_user": "mynosql_popescu", "from_user_id": 197901055, "from_user_id_str": "197901055", "from_user_name": "myNoSQL", "geo": null, "id": 146647715210723330, "id_str": "146647715210723328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Unintentional Market Confusion... Membase, CouchDB, or Couchbase: Unintentional Market Confusion... Membase, Cou... http://t.co/zJgSiFwe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:42:34 +0000", "from_user": "bmaeser", "from_user_id": 188948772, "from_user_id_str": "188948772", "from_user_name": "Bernhard M\\u00E4ser", "geo": null, "id": 146646206393761800, "id_str": "146646206393761792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1268014232/mangatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1268014232/mangatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "couchbase kills couchdb. http://t.co/vXNeAhZj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:42:24 +0000", "from_user": "dieswaytoofast", "from_user_id": 312604736, "from_user_id_str": "312604736", "from_user_name": "Mahesh P-Subramanya", "geo": null, "id": 146646161883803650, "id_str": "146646161883803648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1572400317/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572400317/Untitled_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: Couchbase Unintentional Market Confusion http://t.co/q6ZNVfic #Couchbase #CouchDB #Membase", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:42:08 +0000", "from_user": "ashalynd", "from_user_id": 17307627, "from_user_id_str": "17307627", "from_user_name": "Anna Nachesa", "geo": null, "id": 146646097186656260, "id_str": "146646097186656257", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1001576760/4693401030_d0ea9408bf_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1001576760/4693401030_d0ea9408bf_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @caolan: Couchbase drop CouchDB... nope, it's not April 1st http://t.co/EqDWZUxI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:41:43 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 146645990680690700, "id_str": "146645990680690688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "Couchbase Unintentional Market Confusion http://t.co/q6ZNVfic #Couchbase #CouchDB #Membase", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:40:57 +0000", "from_user": "mike_neck", "from_user_id": 218150156, "from_user_id_str": "218150156", "from_user_name": "mike_neck", "geo": null, "id": 146645799659503600, "id_str": "146645799659503616", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1567497838/mike_icon_24843_image001_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1567497838/mike_icon_24843_image001_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "couchDB\\u306E\\u30B9\\u30B1\\u30FC\\u30E9\\u30D3\\u30EA\\u30C6\\u30A3\\u30FC\\u306E\\u554F\\u984C\\u3063\\u3066\\u89E3\\u6C7A\\u3057\\u305F\\u306E? / Check out Advanced CouchDB http://t.co/Tina8uDS @oreillymedia\\u3055\\u3093\\u304B\\u3089", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:40:11 +0000", "from_user": "mike_neck", "from_user_id": 218150156, "from_user_id_str": "218150156", "from_user_name": "mike_neck", "geo": null, "id": 146645606608281600, "id_str": "146645606608281600", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1567497838/mike_icon_24843_image001_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1567497838/mike_icon_24843_image001_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "couchDB\\u95A2\\u9023\\u3082\\u30C9\\u30AD\\u30E5\\u30E1\\u30F3\\u30C8\\u304C\\u5145\\u5B9F\\u3057\\u3066\\u304D\\u305F\\u306A / Check out Building Applications and Deploying CouchDB http://t.co/dHaRQsJ2 @oreillymedia\\u3055\\u3093\\u304B\\u3089", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:38:21 +0000", "from_user": "roidrage", "from_user_id": 14658472, "from_user_id_str": "14658472", "from_user_name": "Mathias Meyer", "geo": null, "id": 146645145884966900, "id_str": "146645145884966913", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1505416860/5653514417_94976350b9_m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505416860/5653514417_94976350b9_m_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@eee_c at least it's official that Couchbase has no interest in CouchDB, clears up some confusion ;) Shoulda just dropped \"Couch\" altogether", "to_user": "eee_c", "to_user_id": 18334333, "to_user_id_str": "18334333", "to_user_name": "Chris Strom", "in_reply_to_status_id": 146644489795153920, "in_reply_to_status_id_str": "146644489795153920"}, +{"created_at": "Tue, 13 Dec 2011 17:35:45 +0000", "from_user": "eee_c", "from_user_id": 18334333, "from_user_id_str": "18334333", "from_user_name": "Chris Strom", "geo": null, "id": 146644489795153920, "id_str": "146644489795153920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1351901330/2010-03-19-085402_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1351901330/2010-03-19-085402_normal.jpg", "source": "<a href="http://termtter.org/" rel="nofollow">Termtter</a>", "text": "Count me unclear on how Couchbase dropping CouchDB is going to clear up market confusion: http://t.co/zU1Vyso3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:35:09 +0000", "from_user": "dshaw", "from_user_id": 806757, "from_user_id_str": "806757", "from_user_name": "Daniel Shaw", "geo": null, "id": 146644338569523200, "id_str": "146644338569523200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1552591406/angry_unicorn_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552591406/angry_unicorn_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @caolan: Couchbase drop CouchDB... nope, it's not April 1st http://t.co/EqDWZUxI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:31:28 +0000", "from_user": "m_att_henderson", "from_user_id": 14058930, "from_user_id_str": "14058930", "from_user_name": "Matthew Henderson", "geo": null, "id": 146643412622381060, "id_str": "146643412622381056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1455518441/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1455518441/twitter_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "I've never really listened to Steely Dan before now, but for some reason it's become my Christmas music break for digging into #CouchDB.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:28:13 +0000", "from_user": "stefanmo", "from_user_id": 19017751, "from_user_id_str": "19017751", "from_user_name": "Stefan Mortensen", "geo": null, "id": 146642594905067520, "id_str": "146642594905067522", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1644870743/stefan1_sv_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644870743/stefan1_sv_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Node.js + CouchDB #nerdgasm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:24:59 +0000", "from_user": "wohali", "from_user_id": 2192921, "from_user_id_str": "2192921", "from_user_name": "Joan Touzet", "geo": null, "id": 146641779893092350, "id_str": "146641779893092352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/628245169/wohali_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/628245169/wohali_normal.png", "source": "<a href="http://trillian.im/" rel="nofollow">Trillian</a>", "text": "For those following, CouchBase is still building their product with CouchDB, just dropping API support. Boo.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:21:56 +0000", "from_user": "_hoffman", "from_user_id": 43253569, "from_user_id_str": "43253569", "from_user_name": "Alan Hoffman", "geo": null, "id": 146641012230598660, "id_str": "146641012230598656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/918455256/Alan_BW_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/918455256/Alan_BW_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@caolan BigCouch has no plans to deviate from the Apache CouchDB API, modulo release cycles (and playing catchup.)", "to_user": "caolan", "to_user_id": 12185182, "to_user_id_str": "12185182", "to_user_name": "Caolan McMahon", "in_reply_to_status_id": 146639107014135800, "in_reply_to_status_id_str": "146639107014135808"}, +{"created_at": "Tue, 13 Dec 2011 17:21:38 +0000", "from_user": "wohali", "from_user_id": 2192921, "from_user_id_str": "2192921", "from_user_name": "Joan Touzet", "geo": null, "id": 146640939010633730, "id_str": "146640939010633728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/628245169/wohali_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/628245169/wohali_normal.png", "source": "<a href="http://trillian.im/" rel="nofollow">Trillian</a>", "text": "Wacky. RT @caolan: Couchbase drop CouchDB... nope, it's not April 1st http://t.co/soJzQtUG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:20:57 +0000", "from_user": "SebastienHugues", "from_user_id": 20990789, "from_user_id_str": "20990789", "from_user_name": "Sebastien Hugues", "geo": null, "id": 146640765165121540, "id_str": "146640765165121536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677363132/photo_seb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677363132/photo_seb_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @caolan: Couchbase drop CouchDB... nope, it's not April 1st http://t.co/EqDWZUxI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:19:36 +0000", "from_user": "polotek", "from_user_id": 20079975, "from_user_id_str": "20079975", "from_user_name": "Marco Rogers", "geo": null, "id": 146640424029798400, "id_str": "146640424029798400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/422439290/n739064999_192287_1980_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/422439290/n739064999_192287_1980_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @caolan: Couchbase drop CouchDB... nope, it's not April 1st http://t.co/EqDWZUxI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:17:01 +0000", "from_user": "mikeurbanski", "from_user_id": 12086622, "from_user_id_str": "12086622", "from_user_name": "Mike Urbanski", "geo": null, "id": 146639776244699140, "id_str": "146639776244699136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1488737340/purple_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1488737340/purple_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Actively avoided MongoDB, but CouchDB/Redis/Cassandra aren't right. Small dataset, not updated frequently, complex queries. Why not Mongo?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:15:00 +0000", "from_user": "caolan", "from_user_id": 12185182, "from_user_id_str": "12185182", "from_user_name": "Caolan McMahon", "geo": null, "id": 146639268167684100, "id_str": "146639268167684096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1328677360/colourful_cropped_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1328677360/colourful_cropped_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@benoitc but their products will no longer be compatible with the Apache CouchDB API", "to_user": "benoitc", "to_user_id": 770056, "to_user_id_str": "770056", "to_user_name": "beno\\u00EEt chesneau", "in_reply_to_status_id": 146638864608526340, "in_reply_to_status_id_str": "146638864608526336"}, +{"created_at": "Tue, 13 Dec 2011 17:14:51 +0000", "from_user": "steely_glint", "from_user_id": 14197416, "from_user_id_str": "14197416", "from_user_name": "Tim Panton", "geo": null, "id": 146639231534641150, "id_str": "146639231534641152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/75949581/timred_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/75949581/timred_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @caolan: Couchbase drop CouchDB... nope, it's not April 1st http://t.co/EqDWZUxI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:14:22 +0000", "from_user": "caolan", "from_user_id": 12185182, "from_user_id_str": "12185182", "from_user_name": "Caolan McMahon", "geo": null, "id": 146639107014135800, "id_str": "146639107014135808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1328677360/colourful_cropped_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1328677360/colourful_cropped_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Thankfully, Cloudant's BigCouch still aims for parity and Iris Couch still provides *Apache* CouchDB hosting.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:13:24 +0000", "from_user": "benoitc", "from_user_id": 770056, "from_user_id_str": "770056", "from_user_name": "beno\\u00EEt chesneau", "geo": null, "id": 146638864608526340, "id_str": "146638864608526336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/76299981/avatar100x100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/76299981/avatar100x100_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@caolan actuallky they are stopping to release couchdb binaries, but they are still using it, reading the article ...", "to_user": "caolan", "to_user_id": 12185182, "to_user_id_str": "12185182", "to_user_name": "Caolan McMahon", "in_reply_to_status_id": 146638613239709700, "in_reply_to_status_id_str": "146638613239709696"}, +{"created_at": "Tue, 13 Dec 2011 17:12:56 +0000", "from_user": "majido", "from_user_id": 14806963, "from_user_id_str": "14806963", "from_user_name": "majido", "geo": null, "id": 146638745691623420, "id_str": "146638745691623424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/54302423/majid_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/54302423/majid_normal.JPG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I am not procrastinating, my couchDB is computing view indexes.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:12:24 +0000", "from_user": "caolan", "from_user_id": 12185182, "from_user_id_str": "12185182", "from_user_name": "Caolan McMahon", "geo": null, "id": 146638613239709700, "id_str": "146638613239709696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1328677360/colourful_cropped_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1328677360/colourful_cropped_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Couchbase drop CouchDB... nope, it's not April 1st http://t.co/EqDWZUxI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 16:58:46 +0000", "from_user": "BEARSunday", "from_user_id": 411931525, "from_user_id_str": "411931525", "from_user_name": "BEAR.Sunday", "geo": null, "id": 146635184203247600, "id_str": "146635184203247616", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1637910544/bear_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637910544/bear_normal.png", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@noopable \\u3055\\u3093\\u306ECouchDB\\u306E\\u8A18\\u4E8B\\u3092\\u8AAD\\u3093\\u3060\\u3002http://t.co/1t96cHmA \\u305D\\u3057\\u3066@IT\\u306E\\u300C\\u201C\\u52D5\\u7269\\u56F3\\u9451\\u201D\\u3067\\u77E5\\u308BCouchDB\\u306E\\u7279\\u5FB4\\u300D\\u3082\\u8AAD\\u3093\\u3060\\u3002 \\u2026. \\u3053\\u3001\\u3053\\u308C\\u306F...", "to_user": "noopable", "to_user_id": 17063130, "to_user_id_str": "17063130", "to_user_name": "noopable"}, +{"created_at": "Tue, 13 Dec 2011 16:57:59 +0000", "from_user": "jingbay", "from_user_id": 58447675, "from_user_id_str": "58447675", "from_user_name": "\\u9AD8\\u68A8\\u9663\\u5E73", "geo": null, "id": 146634984789250050, "id_str": "146634984789250049", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/322602576/JinpeiTakanashi_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/322602576/JinpeiTakanashi_normal.png", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "RT @yssk22: \\u30B5\\u30FC\\u30D3\\u30B9\\u306F\\u3068\\u3082\\u304B\\u304F\\u3068\\u3057\\u3066\\u3001\\u30C6\\u30AF\\u30CE\\u30ED\\u30B8\\u30FC\\u7684\\u306B\\u306F\\u672C\\u5F53\\u306B\\u597D\\u304D\\u306A\\u3053\\u3068\\u304C\\u3067\\u304D\\u308B\\u306E\\u3067(\\u3082\\u3061\\u308D\\u3093\\u4ECA\\u306E\\u74B0\\u5883\\u3068\\u3044\\u3046\\u5236\\u7D04\\u4E0B\\u306E\\u5143\\u3067\\u306F\\u5F79\\u306B\\u7ACB\\u305F\\u306A\\u3044\\u30C6\\u30AF\\u30CE\\u30ED\\u30B8\\u30FC\\u306F\\u597D\\u304D\\u3060\\u308D\\u3046\\u304C\\u4F55\\u3060\\u308D\\u3046\\u304C\\u5BB9\\u8D66\\u306A\\u304F\\u5207\\u308A\\u6368\\u3066\\u307E\\u3059\\u304C, CouchDB \\u3068\\u304Bw)\\u3001tech driven \\u3067\\u30D3\\u30B8\\u30CD\\u30B9\\u3092\\u8003\\u3048\\u305F\\u3044\\u4EBA\\u306F\\u662F\\u975E\\u304D\\u3066\\u307B\\u3057\\u3044\\u3002\\u3002\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 16:37:21 +0000", "from_user": "seppal123", "from_user_id": 116736210, "from_user_id_str": "116736210", "from_user_name": "Alessandro oehler", "geo": null, "id": 146629792576438270, "id_str": "146629792576438272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://startgoogleplus.com" rel="nofollow">SGPlus</a>", "text": "Nice overview and comparison of NoSQL databases. http://t.co/X7iAyRfE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 16:33:27 +0000", "from_user": "binjip978", "from_user_id": 124973249, "from_user_id_str": "124973249", "from_user_name": "binjip", "geo": null, "id": 146628810920562700, "id_str": "146628810920562691", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1630686890/binjip_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630686890/binjip_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "couchdb \\u0431\\u0435\\u0441\\u0441\\u0435\\u0440\\u0434\\u0435\\u0447\\u043D\\u0430\\u044F \\u0442\\u044B \\u0441\\u0443\\u043A\\u0430, \\u044F \\u0442\\u0435\\u0431\\u044F \\u0438 \\u0442\\u0430\\u043A \\u043B\\u044E\\u0431\\u0438\\u043B \\u0438 \\u0442\\u0430\\u043A, \\u0430 \\u0432\\u044B\\u0448\\u043B\\u043E \\u0432\\u0441\\u0435 \\u043A\\u0430\\u043A \\u043E\\u0431\\u044B\\u0447\\u043D\\u043E))", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 16:17:42 +0000", "from_user": "u1", "from_user_id": 3779321, "from_user_id_str": "3779321", "from_user_name": "u1(\\u690D\\u6751\\u512A\\u4E00)", "geo": null, "id": 146624846607032320, "id_str": "146624846607032320", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/623483628/125432_1795825550_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/623483628/125432_1795825550_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "RT @yssk22: \\u30B5\\u30FC\\u30D3\\u30B9\\u306F\\u3068\\u3082\\u304B\\u304F\\u3068\\u3057\\u3066\\u3001\\u30C6\\u30AF\\u30CE\\u30ED\\u30B8\\u30FC\\u7684\\u306B\\u306F\\u672C\\u5F53\\u306B\\u597D\\u304D\\u306A\\u3053\\u3068\\u304C\\u3067\\u304D\\u308B\\u306E\\u3067(\\u3082\\u3061\\u308D\\u3093\\u4ECA\\u306E\\u74B0\\u5883\\u3068\\u3044\\u3046\\u5236\\u7D04\\u4E0B\\u306E\\u5143\\u3067\\u306F\\u5F79\\u306B\\u7ACB\\u305F\\u306A\\u3044\\u30C6\\u30AF\\u30CE\\u30ED\\u30B8\\u30FC\\u306F\\u597D\\u304D\\u3060\\u308D\\u3046\\u304C\\u4F55\\u3060\\u308D\\u3046\\u304C\\u5BB9\\u8D66\\u306A\\u304F\\u5207\\u308A\\u6368\\u3066\\u307E\\u3059\\u304C, CouchDB \\u3068\\u304Bw)\\u3001tech driven \\u3067\\u30D3\\u30B8\\u30CD\\u30B9\\u3092\\u8003\\u3048\\u305F\\u3044\\u4EBA\\u306F\\u662F\\u975E\\u304D\\u3066\\u307B\\u3057\\u3044\\u3002\\u3002\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 16:13:15 +0000", "from_user": "yssk22", "from_user_id": 15690947, "from_user_id_str": "15690947", "from_user_name": "Yohei Sasaki", "geo": null, "id": 146623727415730180, "id_str": "146623727415730177", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1166169462/elly_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1166169462/elly_normal.png", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "\\u30B5\\u30FC\\u30D3\\u30B9\\u306F\\u3068\\u3082\\u304B\\u304F\\u3068\\u3057\\u3066\\u3001\\u30C6\\u30AF\\u30CE\\u30ED\\u30B8\\u30FC\\u7684\\u306B\\u306F\\u672C\\u5F53\\u306B\\u597D\\u304D\\u306A\\u3053\\u3068\\u304C\\u3067\\u304D\\u308B\\u306E\\u3067(\\u3082\\u3061\\u308D\\u3093\\u4ECA\\u306E\\u74B0\\u5883\\u3068\\u3044\\u3046\\u5236\\u7D04\\u4E0B\\u306E\\u5143\\u3067\\u306F\\u5F79\\u306B\\u7ACB\\u305F\\u306A\\u3044\\u30C6\\u30AF\\u30CE\\u30ED\\u30B8\\u30FC\\u306F\\u597D\\u304D\\u3060\\u308D\\u3046\\u304C\\u4F55\\u3060\\u308D\\u3046\\u304C\\u5BB9\\u8D66\\u306A\\u304F\\u5207\\u308A\\u6368\\u3066\\u307E\\u3059\\u304C, CouchDB \\u3068\\u304Bw)\\u3001tech driven \\u3067\\u30D3\\u30B8\\u30CD\\u30B9\\u3092\\u8003\\u3048\\u305F\\u3044\\u4EBA\\u306F\\u662F\\u975E\\u304D\\u3066\\u307B\\u3057\\u3044\\u3002\\u3002\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 14:24:43 +0000", "from_user": "wwday3", "from_user_id": 59976014, "from_user_id_str": "59976014", "from_user_name": "Walt", "geo": null, "id": 146596413910954000, "id_str": "146596413910953985", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/351667124/44_outgoing_blond_man_smiling_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/351667124/44_outgoing_blond_man_smiling_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Couchdb Pannier http://t.co/bUdVg75M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 14:16:49 +0000", "from_user": "Savvy_Talent", "from_user_id": 61901428, "from_user_id_str": "61901428", "from_user_name": "Savvy Talent", "geo": null, "id": 146594424464474100, "id_str": "146594424464474112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/397285034/savvypage_r1_c3_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/397285034/savvypage_r1_c3_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "* CouchDB/Python Software Engineer - Telecommute - Cupertino, CA: We are seeking a mid-level CouchDB/Python s... http://t.co/eDWT98bF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 13:44:03 +0000", "from_user": "sunsuk7tp", "from_user_id": 14712537, "from_user_id_str": "14712537", "from_user_name": "Shunsuke Nakamura", "geo": null, "id": 146586181767933950, "id_str": "146586181767933953", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1486485677/middle-profile-image_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1486485677/middle-profile-image_normal.png", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "USA\\u3068\\u305D\\u308C\\u4EE5\\u5916\\u306E\\u56FD\\u306E\\u6BD4\\u7387\\u3092\\u898B\\u308B\\u3068\\u3001HBase, Cassandra\\u3068MongoDB, Redis, CouchDB\\u306E\\u4E8C\\u5206\\u5316\\u3067\\u304D\\u3066\\u3001\\u305D\\u306E\\u7406\\u7531\\u3092\\u8003\\u5BDF\\u3059\\u308B\\u3068\\u9762\\u767D\\u305D\\u3046\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 13:08:16 +0000", "from_user": "thinkjson", "from_user_id": 24170535, "from_user_id_str": "24170535", "from_user_name": "Mark Cahill", "geo": null, "id": 146577174709796860, "id_str": "146577174709796864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1526946440/16766_100877089938022_100000471935187_20645_5642428_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1526946440/16766_100877089938022_100000471935187_20645_5642428_n_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@josvandongen Holds true for us. While we're doing CouchDB+LucidDB, the end game is analysis in Saiku/CDF /cc @magicaltrout", "to_user": "magicaltrout", "to_user_id": 76290832, "to_user_id_str": "76290832", "to_user_name": "Tom Barber", "in_reply_to_status_id": 146537658267602940, "in_reply_to_status_id_str": "146537658267602944"}, +{"created_at": "Tue, 13 Dec 2011 11:43:31 +0000", "from_user": "dw3w4at", "from_user_id": 140745117, "from_user_id_str": "140745117", "from_user_name": "Youhei Kondou", "geo": null, "id": 146555846841729020, "id_str": "146555846841729024", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1342571663/second_icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1342571663/second_icon_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\\u3042\\u308B\\u3044\\u306F CouchDB \\u3068 Apache\\u8CA1\\u56E3\\u3068\\u306E\\u3072\\u3068\\u60B6\\u7740\\u306B\\u3064\\u3044\\u3066 / InfoQ: Git\\u3001http://t.co/k3SSvd7b\\u3067CVS\\u3001SVN\\u3092\\u8D85\\u3048\\u308B: http://t.co/wyg5KSc5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 10:17:13 +0000", "from_user": "alfamale156", "from_user_id": 61744769, "from_user_id_str": "61744769", "from_user_name": "Andrew Woodcock", "geo": null, "id": 146534128769171460, "id_str": "146534128769171456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693217959/Daddy_and_Emily_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693217959/Daddy_and_Emily_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Curl returning \\u201CInvalid UTF-8 JSON\\u201D error from CouchDb on Windows although JSON is correct http://t.co/5XHNKbRI via http://t.co/ZrHEwBSt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 09:20:49 +0000", "from_user": "download68", "from_user_id": 262435299, "from_user_id_str": "262435299", "from_user_name": "Software for OS", "geo": null, "id": 146519936800534530, "id_str": "146519936800534528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1265302044/thumbnail_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1265302044/thumbnail_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "trombi 0.9.2: trombi 0.9.2\\u00A0is considered as a flexible and helpful asynchronous CouchDB client for Tornado. tro... http://t.co/H6kqDVIk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 08:36:18 +0000", "from_user": "alfamale156", "from_user_id": 61744769, "from_user_id_str": "61744769", "from_user_name": "Andrew Woodcock", "geo": null, "id": 146508732933734400, "id_str": "146508732933734400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693217959/Daddy_and_Emily_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693217959/Daddy_and_Emily_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Restoring CouchDB databases from file http://t.co/3eGtbvis via http://t.co/ZrHEwBSt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 08:30:21 +0000", "from_user": "CloudArenaIrl", "from_user_id": 307250219, "from_user_id_str": "307250219", "from_user_name": "Cloud Arena", "geo": null, "id": 146507233222602750, "id_str": "146507233222602752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Moving from a relational to a NoSQL database - interview with James Phillips from #CouchDb - http://t.co/q62gPrv0 #nosql #sql via@infoq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 08:30:08 +0000", "from_user": "rbconsulting", "from_user_id": 35206672, "from_user_id_str": "35206672", "from_user_name": "Richie Bowden", "geo": null, "id": 146507179996872700, "id_str": "146507179996872705", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/182764454/rb-pic1_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/182764454/rb-pic1_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Moving from a relational to a NoSQL database - interview with James Phillips from #CouchDb - http://t.co/bkawNPCx #nosql #sql via@infoq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 08:08:51 +0000", "from_user": "frmdrt", "from_user_id": 183502755, "from_user_id_str": "183502755", "from_user_name": "Tara Oldfield", "geo": null, "id": 146501823044390900, "id_str": "146501823044390912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1122749005/tara-twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1122749005/tara-twitter_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @akshatj_96: Please help sorting out this bug #ubuntu #couchdb #novacut http://t.co/LjohUu90", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 07:34:04 +0000", "from_user": "BenIhle", "from_user_id": 141918104, "from_user_id_str": "141918104", "from_user_name": "Ben Ihle", "geo": null, "id": 146493072832864260, "id_str": "146493072832864257", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1499375988/linkedin_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1499375988/linkedin_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@armchair_caver it really depends on the structure of the data as to the fit, couchdb / cassandra / neo4j each work better for diff. data.", "to_user": "armchair_caver", "to_user_id": 26917360, "to_user_id_str": "26917360", "to_user_name": "Paul Rowe", "in_reply_to_status_id": 146448441919283200, "in_reply_to_status_id_str": "146448441919283200"}, +{"created_at": "Tue, 13 Dec 2011 07:14:26 +0000", "from_user": "novacut", "from_user_id": 161922996, "from_user_id_str": "161922996", "from_user_name": "Novacut", "geo": null, "id": 146488128948015100, "id_str": "146488128948015104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1353303066/novacut-solo-brandmark_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1353303066/novacut-solo-brandmark_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @akshatj_96: Please help sorting out this bug #ubuntu #couchdb #novacut http://t.co/LjohUu90", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 07:00:33 +0000", "from_user": "akshatj_96", "from_user_id": 45562597, "from_user_id_str": "45562597", "from_user_name": "Akshat Jain", "geo": null, "id": 146484634362982400, "id_str": "146484634362982400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1256538752/110129-143654_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1256538752/110129-143654_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Please help sorting out this bug #ubuntu #couchdb #novacut http://t.co/LjohUu90", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 06:58:51 +0000", "from_user": "jgderose", "from_user_id": 130418225, "from_user_id_str": "130418225", "from_user_name": "Jason Gerard DeRose", "geo": null, "id": 146484209182179330, "id_str": "146484209182179328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1131459592/avatar-twitter-73x73_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1131459592/avatar-twitter-73x73_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Whew, making more progress on getting @CouchDB 1.1.1 into #Ubuntu Precise - http://t.co/PU4Py2IO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 05:09:57 +0000", "from_user": "SergioRomecin", "from_user_id": 285308168, "from_user_id_str": "285308168", "from_user_name": "Sergio Romecin", "geo": null, "id": 146456802186379260, "id_str": "146456802186379265", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1673736360/275717_661266199_1132701205_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673736360/275717_661266199_1132701205_n_normal.jpg", "source": "<a href="https://wiki.ubuntu.com/Gwibber" rel="nofollow">Ubuntu</a>", "text": "ohh kanso Simple, distributable JavaScript apps using CouchDB, renovado a probar se dijo http://t.co/gC6E6Xft", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 04:27:41 +0000", "from_user": "apache_install", "from_user_id": 370536013, "from_user_id_str": "370536013", "from_user_name": "Joseph S McCloud", "geo": null, "id": 146446168174493700, "id_str": "146446168174493698", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1535449514/Joseph_McCloud_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1535449514/Joseph_McCloud_normal.jpg", "source": "<a href="http://ping.fm/" rel="nofollow">Ping.fm</a>", "text": "Web based GIS using Leaflet javascript library, couchdb, html5, css and jquery . - oDesk http://t.co/7yPE2QSF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 03:28:04 +0000", "from_user": "Atul_Joshi", "from_user_id": 90597582, "from_user_id_str": "90597582", "from_user_name": "Atul Joshi", "geo": null, "id": 146431164893237250, "id_str": "146431164893237249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1141281298/41655_100000056117167_2224_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1141281298/41655_100000056117167_2224_q_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Working on CouchDB with Flow3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 02:48:51 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 146421292650856450, "id_str": "146421292650856450", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "RT @rgaidot: The geographic distribution of NoSQL skills: CouchDB and Neo4j http://t.co/zwGsAZhA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 02:45:49 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 146420531703463940, "id_str": "146420531703463937", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "follow (0.5.0): http://t.co/uqj8pmxS Extremely robust, fault-tolerant CouchDB changes follower", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 02:35:56 +0000", "from_user": "shields_up", "from_user_id": 18027985, "from_user_id_str": "18027985", "from_user_name": "Jake!", "geo": null, "id": 146418043369693200, "id_str": "146418043369693184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/881969371/9917_160841637802_534237802_3547280_3416447_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/881969371/9917_160841637802_534237802_3547280_3416447_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@surlyhobbit Oh god, that's horrible! Have you looked at couchDB?", "to_user": "surlyhobbit", "to_user_id": 46850828, "to_user_id_str": "46850828", "to_user_name": "J.P. Baggins, Esq.", "in_reply_to_status_id": 146417770345660400, "in_reply_to_status_id_str": "146417770345660416"}, +{"created_at": "Tue, 13 Dec 2011 02:35:02 +0000", "from_user": "omasanori", "from_user_id": 69728095, "from_user_id_str": "69728095", "from_user_name": "OGINO Masanori", "geo": null, "id": 146417816948580350, "id_str": "146417816948580353", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1535274224/9d2fe6fdc6224d8b903622c60968de82_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1535274224/9d2fe6fdc6224d8b903622c60968de82_normal.gif", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @cemerick: Clutch now has a build/CI home @travisci! http://t.co/b8xV17WH #couchdb #clojure", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 02:27:38 +0000", "from_user": "Twit_Developer", "from_user_id": 263828512, "from_user_id_str": "263828512", "from_user_name": "Twit Developer", "geo": null, "id": 146415952903409660, "id_str": "146415952903409666", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1268147372/twitter_follow_me_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1268147372/twitter_follow_me_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Web based GIS using Leaflet javascript library, couchdb, html5, css and jquery . - oDesk http://t.co/RpYtRQST", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 02:05:13 +0000", "from_user": "ashafa", "from_user_id": 18774518, "from_user_id_str": "18774518", "from_user_name": "Tunde Ashafa", "geo": null, "id": 146410313703632900, "id_str": "146410313703632896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/954034356/me_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/954034356/me_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @cemerick: Clutch now has a build/CI home @travisci! http://t.co/b8xV17WH #couchdb #clojure", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 02:03:36 +0000", "from_user": "fivetanley", "from_user_id": 306497372, "from_user_id_str": "306497372", "from_user_name": "Stanley Stuart", "geo": null, "id": 146409904423452670, "id_str": "146409904423452672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1555634614/profilepic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555634614/profilepic_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@anastasds I'm looking into Ruby on Rails and couchDB (document database for lessons and such could be cool) and postgres for other stuff.", "to_user": "anastasds", "to_user_id": 68495783, "to_user_id_str": "68495783", "to_user_name": "Anastas"}, +{"created_at": "Tue, 13 Dec 2011 01:57:50 +0000", "from_user": "javascriptalert", "from_user_id": 274501532, "from_user_id_str": "274501532", "from_user_name": "javascript", "geo": null, "id": 146408453039079420, "id_str": "146408453039079424", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1304350707/___normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1304350707/___normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Planet CouchDB: http://t.co/hyfDlUBq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 01:32:55 +0000", "from_user": "cemerick", "from_user_id": 15029885, "from_user_id_str": "15029885", "from_user_name": "Chas Emerick", "geo": null, "id": 146402184727236600, "id_str": "146402184727236610", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1160448840/Untitled_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1160448840/Untitled_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Clutch now has a build/CI home @travisci! http://t.co/b8xV17WH #couchdb #clojure", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 00:44:12 +0000", "from_user": "ixixi", "from_user_id": 15377475, "from_user_id_str": "15377475", "from_user_name": "Yudai Odagiri", "geo": null, "id": 146389924034252800, "id_str": "146389924034252800", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1273325819/ixixi_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273325819/ixixi_normal.gif", "source": "<a href="http://www.tweenapp.org/" rel="nofollow">Tween</a>", "text": "Amazon\\u304B\\u3089\\u3001\\u300CAdvanced CouchDB\\u300D\\u306E\\u767A\\u58F2\\u4E88\\u5B9A\\u65E5\\u304C12/30\\u304B\\u30891/31\\u306B\\u5EF6\\u671F\\u3057\\u305F\\u3068\\u306E\\u30E1\\u30FC\\u30EB\\u304C\\u6765\\u305F\\u2026 http://t.co/PXzd32Ck", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 00:27:02 +0000", "from_user": "GeekDani", "from_user_id": 65526437, "from_user_id_str": "65526437", "from_user_name": "Dani Kim", "geo": null, "id": 146385605272674300, "id_str": "146385605272674308", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662698421/DSC04650_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662698421/DSC04650_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @maslett: According to LinkedIn profiles the #NoSQL top 5 is MongoDB, Redis, CouchDB, HBase, and Cassandra. In that order: bit.ly/uF46j7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 23:46:58 +0000", "from_user": "brian_mount", "from_user_id": 153347833, "from_user_id_str": "153347833", "from_user_name": "Brian Mount", "geo": +{"coordinates": [37.7204,-122.4839], "type": "Point"}, "id": 146375520567836670, "id_str": "146375520567836672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1066899178/Brian_Mount_on_30th_b-day_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1066899178/Brian_Mount_on_30th_b-day_normal.png", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@burritojustice Thurs was blast. Made this after http://t.co/zO7OyvJk for moar ez polymaps on CouchDB, see 1st lnk & \"non-gory details\"", "to_user": "burritojustice", "to_user_id": 16944165, "to_user_id_str": "16944165", "to_user_name": "burritojustice", "in_reply_to_status_id": 146355578296479740, "in_reply_to_status_id_str": "146355578296479744"}, +{"created_at": "Mon, 12 Dec 2011 22:48:36 +0000", "from_user": "sbisbee", "from_user_id": 61703528, "from_user_id_str": "61703528", "from_user_name": "Sam Bisbee", "geo": null, "id": 146360833100886000, "id_str": "146360833100886016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1315333086/0784ef3cf96ce229544755d63b5cdb4f_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1315333086/0784ef3cf96ce229544755d63b5cdb4f_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Started hacking on couchdb-notify late last night so that I can get my irssi, or other remote alerts, anywhere. http://t.co/0IQ2QCd3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 22:34:18 +0000", "from_user": "waratuman", "from_user_id": 15935410, "from_user_id_str": "15935410", "from_user_name": "James R. Bracy", "geo": null, "id": 146357235327565820, "id_str": "146357235327565825", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1390274014/download_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1390274014/download_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Nodester: @mohsen____ Nodester runs on CouchDB but you can access any DBaaS such as @MongoHQ @iriscouch or @RedisToGo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 22:33:54 +0000", "from_user": "redistogo", "from_user_id": 164181615, "from_user_id_str": "164181615", "from_user_name": "Redis To Go", "geo": null, "id": 146357133485686800, "id_str": "146357133485686785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1089887675/icon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1089887675/icon_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Nodester: @mohsen____ Nodester runs on CouchDB but you can access any DBaaS such as @MongoHQ @iriscouch or @RedisToGo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 22:30:52 +0000", "from_user": "Nodester", "from_user_id": 240751001, "from_user_id_str": "240751001", "from_user_name": "Nodester", "geo": null, "id": 146356369858109440, "id_str": "146356369858109441", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543095199/ndoesterrocket_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@mohsen____ Nodester runs on CouchDB but you can access any DBaaS such as @MongoHQ @iriscouch or @RedisToGo", "to_user": "mohsen____", "to_user_id": 30211348, "to_user_id_str": "30211348", "to_user_name": "Mohsen Azimi", "in_reply_to_status_id": 146343770168897540, "in_reply_to_status_id_str": "146343770168897536"}, +{"created_at": "Mon, 12 Dec 2011 22:27:43 +0000", "from_user": "burritojustice", "from_user_id": 16944165, "from_user_id_str": "16944165", "from_user_name": "burritojustice", "geo": null, "id": 146355578296479740, "id_str": "146355578296479744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/856593717/burrito_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/856593717/burrito_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@brian_mount great seeing you last Thursday! BTW meant to send you this earlier: http://t.co/S3BPSkC8", "to_user": "brian_mount", "to_user_id": 153347833, "to_user_id_str": "153347833", "to_user_name": "Brian Mount"}, +{"created_at": "Mon, 12 Dec 2011 21:49:02 +0000", "from_user": "cht_z", "from_user_id": 121529764, "from_user_id_str": "121529764", "from_user_name": "Christian Tschenett", "geo": null, "id": 146345843874734080, "id_str": "146345843874734082", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1229151974/Foto_am_29-01-2011_um_18.17__3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1229151974/Foto_am_29-01-2011_um_18.17__3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Ruby, #CouchDB, #Performance. Fun presentation^^ http://t.co/EVVwJPg9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 21:19:19 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 146338365296484350, "id_str": "146338365296484352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "couchdb-api (0.12.0): http://t.co/BEggp141 An async wrapper for the CouchDB HTTP API, following Node.js conventions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 21:00:19 +0000", "from_user": "Ilaiod", "from_user_id": 431678494, "from_user_id_str": "431678494", "from_user_name": "Ila Castoreno", "geo": null, "id": 146333582175125500, "id_str": "146333582175125506", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680991797/32dys155q3_132642654-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680991797/32dys155q3_132642654-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "CouchDB: The Definitive Guide: Three of CouchDB's creators show you how to use this document-oriented database a... http://t.co/UMwwZxSf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 20:48:38 +0000", "from_user": "xrath", "from_user_id": 16795647, "from_user_id_str": "16795647", "from_user_name": "Jang-Ho Hwang", "geo": null, "id": 146330642454560770, "id_str": "146330642454560768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1663763117/profile2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663763117/profile2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lmatteis: If you're building a \"public\" API, you're doing it wrong. Developers should access the same APIs you use internally. Try CouchDB!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 20:48:25 +0000", "from_user": "pelegri", "from_user_id": 18031910, "from_user_id_str": "18031910", "from_user_name": "pelegri", "geo": null, "id": 146330587081347070, "id_str": "146330587081347072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/497054681/PelegriCropped_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/497054681/PelegriCropped_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Initial port of #CouchDB to #PlayBook at #github now: http://t.co/r6hmoWHV Passes most of #futon test. Post w/ details tomorrow", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 20:46:00 +0000", "from_user": "xrath", "from_user_id": 16795647, "from_user_id_str": "16795647", "from_user_name": "Jang-Ho Hwang", "geo": null, "id": 146329978194243600, "id_str": "146329978194243584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1663763117/profile2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663763117/profile2_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @40square: When building an app with @CouchDB don't think of the db first. Think of the front end and business logic, the db will follow naturally.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 20:06:41 +0000", "from_user": "d1rk", "from_user_id": 15930039, "from_user_id_str": "15930039", "from_user_name": "d1rk", "geo": null, "id": 146320085949222900, "id_str": "146320085949222912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/701343658/little-anonymous_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/701343658/little-anonymous_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Couchbase HTTP API Reference - Learn about CouchDB - the best documentation on that topic, ever. http://t.co/04pdUXtu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 19:36:49 +0000", "from_user": "sambervalley", "from_user_id": 14410673, "from_user_id_str": "14410673", "from_user_name": "SAMBER VALLEY", "geo": null, "id": 146312568661753860, "id_str": "146312568661753856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1198256118/blue_frog2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1198256118/blue_frog2_normal.png", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Cassandra vs MongoDB vs CouchDB vs Redis vs Riak vs HBase comparison - While SQL databases are insanely... http://t.co/XXGT2rwT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 19:33:18 +0000", "from_user": "sh4ka", "from_user_id": 3209151, "from_user_id_str": "3209151", "from_user_name": "Jes\\u00FAs Flores", "geo": null, "id": 146311683843948540, "id_str": "146311683843948544", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1450502181/yo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1450502181/yo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Usamos: html5, php, mysql, javascript, couchdb, amazon-s3, sphinx, smarty, badgeville y las api de FB y twitter. #medejoalgofijo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 19:32:22 +0000", "from_user": "datalaundry", "from_user_id": 19220745, "from_user_id_str": "19220745", "from_user_name": "Mike West", "geo": null, "id": 146311449705324540, "id_str": "146311449705324545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/623100090/mikewarmachine192square_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/623100090/mikewarmachine192square_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @caolan: Kanso 0.1.1 released, get it while it's hot! http://t.co/ynKJhrqi - release announcement: http://t.co/4MjjRFt4 #couchdb #nodejs #couchapps", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 19:30:06 +0000", "from_user": "sambervalley", "from_user_id": 14410673, "from_user_id_str": "14410673", "from_user_name": "SAMBER VALLEY", "geo": null, "id": 146310878881521660, "id_str": "146310878881521664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1198256118/blue_frog2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1198256118/blue_frog2_normal.png", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Why I choose CouchDB over MongoDB - Theres a lot of discussion lately over NoSQL databases for... http://t.co/QwJWiDz0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 19:05:38 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 146304720485629950, "id_str": "146304720485629952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @natevw caolan: NPM for CouchApps http://t.co/O51WOfib - the Kanso release announcement #nodejs #couchdb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 19:00:30 +0000", "from_user": "natevw", "from_user_id": 8419342, "from_user_id_str": "8419342", "from_user_name": "Nathan Vander Wilt", "geo": null, "id": 146303431089471500, "id_str": "146303431089471489", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1266548910/updated_profile_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266548910/updated_profile_pic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @caolan: NPM for CouchApps http://t.co/Duhj0Tol - the Kanso release announcement #nodejs #couchdb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 18:54:59 +0000", "from_user": "rgaidot", "from_user_id": 1245801, "from_user_id_str": "1245801", "from_user_name": "R\\u00E9gis Gaidot", "geo": null, "id": 146302043001331700, "id_str": "146302043001331712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1266738841/avatar-6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266738841/avatar-6_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "The geographic distribution of NoSQL skills: CouchDB and Neo4j http://t.co/og7rc5jz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 18:51:06 +0000", "from_user": "mandric", "from_user_id": 3474, "from_user_id_str": "3474", "from_user_name": "Milan Andric", "geo": null, "id": 146301063769751550, "id_str": "146301063769751553", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/64558932/IMG_0038_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/64558932/IMG_0038_normal.PNG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @caolan: Kanso 0.1.1 released, get it while it's hot! http://t.co/ynKJhrqi - release announcement: http://t.co/4MjjRFt4 #couchdb #nodejs #couchapps", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 18:29:34 +0000", "from_user": "nicolaiarocci", "from_user_id": 21412873, "from_user_id_str": "21412873", "from_user_name": "Nicola Iarocci", "geo": null, "id": 146295644557025280, "id_str": "146295644557025280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687505159/nicola_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687505159/nicola_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @maslett: According to LinkedIn profiles the #NoSQL top 5 is MongoDB, Redis, CouchDB, HBase, and Cassandra. In that order: bit.ly/uF46j7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 18:17:02 +0000", "from_user": "empr_enfurecido", "from_user_id": 435098504, "from_user_id_str": "435098504", "from_user_name": "Entrepreneur", "geo": null, "id": 146292490134237200, "id_str": "146292490134237184", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689348538/512px-Number_1_in_green_rounded_square.svg_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689348538/512px-Number_1_in_green_rounded_square.svg_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@dev_enfurecido NOS HAN RECOMENDANDO DESARROLLAR NUESTRO PRODUCTO EN NODEJS + COUCHDB Y TODO ESTO HOSPEDARLO EN HEROKU. NOS DAS TU OPINI\\u00D3N?", "to_user": "dev_enfurecido", "to_user_id": 352267014, "to_user_id_str": "352267014", "to_user_name": "craftsman enfurecido"}, +{"created_at": "Mon, 12 Dec 2011 18:12:05 +0000", "from_user": "daleharvey", "from_user_id": 16378342, "from_user_id_str": "16378342", "from_user_name": "Dale Harvey", "geo": null, "id": 146291246468567040, "id_str": "146291246468567040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1225104527/5353288191_7671433a7a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225104527/5353288191_7671433a7a_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @caolan: Kanso 0.1.1 released, get it while it's hot! http://t.co/ynKJhrqi - release announcement: http://t.co/4MjjRFt4 #couchdb #nodejs #couchapps", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 18:06:43 +0000", "from_user": "jdg995", "from_user_id": 9809222, "from_user_id_str": "9809222", "from_user_name": "Jeff Gray", "geo": null, "id": 146289894942191600, "id_str": "146289894942191616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/54684303/Photo_48_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/54684303/Photo_48_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @maslett: According to LinkedIn profiles the #NoSQL top 5 is MongoDB, Redis, CouchDB, HBase, and Cassandra. In that order: bit.ly/uF46j7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 18:02:02 +0000", "from_user": "capotribu", "from_user_id": 14830884, "from_user_id_str": "14830884", "from_user_name": "Marco Abis", "geo": null, "id": 146288717282283520, "id_str": "146288717282283521", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669854985/MarcoAbis_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669854985/MarcoAbis_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @maslett: According to LinkedIn profiles the #NoSQL top 5 is MongoDB, Redis, CouchDB, HBase, and Cassandra. In that order: bit.ly/uF46j7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 17:46:09 +0000", "from_user": "maslett", "from_user_id": 20518767, "from_user_id_str": "20518767", "from_user_name": "Matt Aslett", "geo": null, "id": 146284719942799360, "id_str": "146284719942799360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1380299722/aslettnewest_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1380299722/aslettnewest_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "According to LinkedIn profiles the #NoSQL top 5 is MongoDB, Redis, CouchDB, HBase, and Cassandra. In that order: bit.ly/uF46j7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 17:32:38 +0000", "from_user": "neo4j", "from_user_id": 22467617, "from_user_id_str": "22467617", "from_user_name": "Neo4j", "geo": null, "id": 146281315854061570, "id_str": "146281315854061569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/195275920/square-logo-no-text-2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/195275920/square-logo-no-text-2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "451 Blog Post: @maslett discusses #Neo4j user's geographic distribution http://t.co/mqJhY21b", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 16:52:09 +0000", "from_user": "benwoodall", "from_user_id": 18228651, "from_user_id_str": "18228651", "from_user_name": "Ben Woodall", "geo": null, "id": 146271129479286800, "id_str": "146271129479286784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1283113476/3585640_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1283113476/3585640_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Just had a huge AH HA! moment with CouchDB.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 16:48:02 +0000", "from_user": "dialogamsee", "from_user_id": 177916458, "from_user_id_str": "177916458", "from_user_name": "dialogamsee", "geo": null, "id": 146270093414903800, "id_str": "146270093414903808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1101977536/dialogamsee_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1101977536/dialogamsee_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Workaround f\\u00FCr CouchDB/Futon Fehler http://t.co/DVIxhtMO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 16:48:02 +0000", "from_user": "carstenreichel", "from_user_id": 15531333, "from_user_id_str": "15531333", "from_user_name": "carstenreichel", "geo": null, "id": 146270092727033860, "id_str": "146270092727033856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/57037566/carsten_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/57037566/carsten_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Workaround f\\u00FCr CouchDB/Futon Fehler http://t.co/jA5Kjj0d", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 16:42:07 +0000", "from_user": "MichelEnLaRed", "from_user_id": 52024106, "from_user_id_str": "52024106", "from_user_name": "Michel", "geo": null, "id": 146268606257303550, "id_str": "146268606257303552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1659226458/perfil2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659226458/perfil2_normal.jpg", "source": "<a href="http://identi.ca" rel="nofollow">identica</a>", "text": "Minimize the delta between #Debian and #Ubuntu #precise 12.04, yet keep the couchdb-bin/couchdb split! - http://t.co/51lHzc57", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 16:06:56 +0000", "from_user": "brunofuster", "from_user_id": 19590078, "from_user_id_str": "19590078", "from_user_name": "Bruno Fuster", "geo": null, "id": 146259748768067600, "id_str": "146259748768067585", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1599262971/25a3259811b826f44d7a8e444b802e71_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599262971/25a3259811b826f44d7a8e444b802e71_normal.jpeg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "redis, couchdb, cassandra, mongodb, hbase, riak, membase, neo4j http://t.co/LecYAcug", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 15:56:57 +0000", "from_user": "alterakey", "from_user_id": 217707508, "from_user_id_str": "217707508", "from_user_name": "Takahiro Yoshimura", "geo": null, "id": 146257238649094140, "id_str": "146257238649094144", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1669685243/IMG_20111202_113255__2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669685243/IMG_20111202_113255__2__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u4ECA\\u65E5\\u306E\\u30E1\\u30E2\\u3002\\u4E0D\\u5B9A\\u5F62\\u30C7\\u30FC\\u30BF\\u3092\\u4F34\\u3046\\u5927\\u91CF\\u306E\\u30E9\\u30F3\\u30C9\\u30DE\\u30FC\\u30AF\\u3002\\u3053\\u308C\\u3092\\u3069\\u3046\\u3084\\u3063\\u3066RDBMS\\u3067\\u691C\\u7D22\\u3057\\u3084\\u3059\\u3044\\u5F62\\u306B\\u3055\\u3070\\u3044\\u3066\\u3044\\u304F\\u304B\\u2026\\u3068\\u8003\\u3048\\u308B\\u3088\\u308A\\u3001CouchDB\\u3042\\u305F\\u308A\\u3092\\u4F7F\\u3063\\u305F\\u65B9\\u304C\\u826F\\u3044\\u3088\\u3046\\u306A\\u6C17\\u304C\\u3059\\u308B\\u3002\\u3057\\u304B\\u3057\\u5730\\u7406\\u7684\\u306A\\u691C\\u7D22\\u306F\\u2026\\u3068\\u601D\\u3063\\u3066\\u3044\\u305F\\u3089\\u3001\\u3069\\u3046\\u3084\\u3089\\u3067\\u304D\\u308B\\u3088\\u3046\\u3060\\u3002 http://t.co/GKT3ZhjF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 15:54:01 +0000", "from_user": "utkarsh2012", "from_user_id": 33236822, "from_user_id_str": "33236822", "from_user_name": "Utkarsh Sengar", "geo": null, "id": 146256497960161280, "id_str": "146256497960161280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1534612623/12756_173483567390_587602390_3430383_8177922_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534612623/12756_173483567390_587602390_3430383_8177922_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @architgupta: Great exposition on nosql vs mysql by quora founder. http://t.co/rZbrrjiI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 15:53:41 +0000", "from_user": "simon_weare", "from_user_id": 143751984, "from_user_id_str": "143751984", "from_user_name": "Simon Weare", "geo": null, "id": 146256414233473020, "id_str": "146256414233473024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1405907679/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1405907679/avatar_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Frictionless stack? @nodejs, @couchdb, @elasticsearch, #backbonejs. #rest, #js, #html, #css top-to-toe. \\nThen #BDD it up with @jasminebdd.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 15:24:18 +0000", "from_user": "DBmxorg", "from_user_id": 261452842, "from_user_id_str": "261452842", "from_user_name": "DBmx.org", "geo": null, "id": 146249020287893500, "id_str": "146249020287893504", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1263199080/4395953684_419dff284f_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263199080/4395953684_419dff284f_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rgaidot: LazyBoy is a Couchdb Object Document Model. http://t.co/lrZXSfUw #nodejs #couchdb #odm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 15:16:11 +0000", "from_user": "gsteinfeld", "from_user_id": 10345952, "from_user_id_str": "10345952", "from_user_name": "gsteinfeld", "geo": null, "id": 146246976927838200, "id_str": "146246976927838208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1030824237/bo036_grantInTreeBo2006_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1030824237/bo036_grantInTreeBo2006_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "Erlang looks really interesting. It's the language CouchdB is written in, I'm currently exploring Couch as a viable alternative to MongoDB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 15:06:21 +0000", "from_user": "apilink", "from_user_id": 199600594, "from_user_id_str": "199600594", "from_user_name": "apilink.net", "geo": null, "id": 146244502812762100, "id_str": "146244502812762112", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1240537985/95aGrume_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1240537985/95aGrume_normal", "source": "<a href="http://www.destroytwitter.com" rel="nofollow">DestroyTwitter</a>", "text": "Me han puesto deberes: a estudiar couchdb sincronizaci\\u00F3n transparente de dbs o algo as\\u00EDn. pues s\\u00ED que vienen pisando fuerte los j\\u00F3venes :-0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 14:49:44 +0000", "from_user": "josehidrom", "from_user_id": 268953393, "from_user_id_str": "268953393", "from_user_name": "Jose Hidalgo", "geo": null, "id": 146240322500964350, "id_str": "146240322500964352", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1336347727/fanboy-and-chum_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1336347727/fanboy-and-chum_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@luismedel @Leo_lopezg yo no me decido entre mongodb o couchdb...", "to_user": "luismedel", "to_user_id": 130584393, "to_user_id_str": "130584393", "to_user_name": "Luis Medel", "in_reply_to_status_id": 146239805326508030, "in_reply_to_status_id_str": "146239805326508032"}, +{"created_at": "Mon, 12 Dec 2011 14:37:09 +0000", "from_user": "mike_neck", "from_user_id": 218150156, "from_user_id_str": "218150156", "from_user_name": "mike_neck", "geo": null, "id": 146237154106933250, "id_str": "146237154106933249", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1567497838/mike_icon_24843_image001_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1567497838/mike_icon_24843_image001_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "port list cassandra\\u3068port list couchdb\\u3068port list hadoop\\u304C\\u3042\\u3063\\u305F\\u306E\\u306F\\u3073\\u3063\\u304F\\u308A\\uFF01", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 12 Dec 2011 14:06:19 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 146229396993351680, "id_str": "146229396993351680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "dk-model-couchdb (0.1.1): http://t.co/tX4yP9e1 CouchDB Model Implementation for DrumKit", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 14:05:50 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 146229272539967500, "id_str": "146229272539967488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "dk-couchdb (0.1.1): http://t.co/Dx5WFRLJ CouchDB Plugin for the Drumkit Framework", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 13:12:57 +0000", "from_user": "J01ce_", "from_user_id": 185004475, "from_user_id_str": "185004475", "from_user_name": "Joice Joseph", "geo": null, "id": 146215966676750340, "id_str": "146215966676750337", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1377621903/ldcjydgedgg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1377621903/ldcjydgedgg_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @planetubuntu: Jason Gerard DeRose: My proposal for CouchDB in Precise: Minimize the delta between Debian and Ubuntu, yet keep ... http://t.co/4NrWxcJR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 13:08:57 +0000", "from_user": "PatrickHeneise", "from_user_id": 18073349, "from_user_id_str": "18073349", "from_user_name": "Patrick Heneise", "geo": null, "id": 146214960035401730, "id_str": "146214960035401728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1462247153/CIMG2411_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1462247153/CIMG2411_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "\\u201C@rdmpage: Exporting data from Australian Faunal Directory on CouchDB http://t.co/KEMBbWCn\\u201D - nice!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 13:07:34 +0000", "from_user": "towhans", "from_user_id": 15512020, "from_user_id_str": "15512020", "from_user_name": "towhans", "geo": null, "id": 146214612101120000, "id_str": "146214612101120000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/56969365/sej_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/56969365/sej_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Ditching #CouchDB because of poor query capabilities. You just can't code around that without major performance penalty.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 13:06:43 +0000", "from_user": "rdmpage", "from_user_id": 14568034, "from_user_id_str": "14568034", "from_user_name": "Roderic Page", "geo": null, "id": 146214396253843460, "id_str": "146214396253843456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/422396807/255060272_f0f249723d_m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/422396807/255060272_f0f249723d_m_normal.jpg", "source": "<a href="http://friendfeed.com" rel="nofollow">FriendFeed</a>", "text": "Exporting data from Australian Faunal Directory on CouchDB http://t.co/j8qsKjj3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 12:22:35 +0000", "from_user": "pavel_sutyrin", "from_user_id": 143711992, "from_user_id_str": "143711992", "from_user_name": "Pavel Sutyrin", "geo": null, "id": 146203289048985600, "id_str": "146203289048985600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1308335774/spacediver_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1308335774/spacediver_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @sdfgh153: Writing debug logs from iPhone directly to CouchDB. Development \\u2014 siberian style.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 11:51:03 +0000", "from_user": "ww24", "from_user_id": 75828566, "from_user_id_str": "75828566", "from_user_name": "\\u305F\\u3051", "geo": null, "id": 146195354268876800, "id_str": "146195354268876800", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1490792273/1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1490792273/1_normal.png", "source": "<a href="http://miteru.gkbr.me/" rel="nofollow">\\u2611 \\u898B\\u3066\\u308B\\u306A\\u3046 </a>", "text": "CouchDB\\u3068MongoDB\\u306E\\u4F7F\\u3044\\u5206\\u3051 - \\u30E2\\u30B8\\u30ED\\u30B0: http://t.co/GbQxogGx #miteru", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 11:23:38 +0000", "from_user": "alfamale156", "from_user_id": 61744769, "from_user_id_str": "61744769", "from_user_name": "Andrew Woodcock", "geo": null, "id": 146188454508757000, "id_str": "146188454508756992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693217959/Daddy_and_Emily_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693217959/Daddy_and_Emily_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Curl returning \\u201CInvalid UTF-8 JSON\\u201D error from CouchDb on Windows although JSON is correct http://t.co/5XHNKbRI via http://t.co/ZrHEwBSt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 11:12:04 +0000", "from_user": "wactbprot", "from_user_id": 396792485, "from_user_id_str": "396792485", "from_user_name": "wactbprot", "geo": null, "id": 146185545276604400, "id_str": "146185545276604416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1603142535/eraserhead-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1603142535/eraserhead-1_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Speeding up development with CouchDB - I\\u2019m not sure what it is, but developing an App with CouchDB feels a... http://t.co/yH69dovv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 11:08:35 +0000", "from_user": "wactbprot", "from_user_id": 396792485, "from_user_id_str": "396792485", "from_user_name": "wactbprot", "geo": null, "id": 146184670046982140, "id_str": "146184670046982144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1603142535/eraserhead-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1603142535/eraserhead-1_normal.jpg", "source": "<a href="http://www.yoono.com" rel="nofollow">yoono</a>", "text": "#couchdb roundup http://t.co/v3iZIqu1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 11:05:33 +0000", "from_user": "nekrograve", "from_user_id": 95500132, "from_user_id_str": "95500132", "from_user_name": "Valery Meleshkin", "geo": null, "id": 146183906520088580, "id_str": "146183906520088577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1196678708/sochi_avatar3_150_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1196678708/sochi_avatar3_150_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @sdfgh153: Writing debug logs from iPhone directly to CouchDB. Development \\u2014 siberian style.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 11:05:05 +0000", "from_user": "sdfgh153", "from_user_id": 390808557, "from_user_id_str": "390808557", "from_user_name": "S\\u0451mka Novikov", "geo": null, "id": 146183787913560060, "id_str": "146183787913560064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685093073/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685093073/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Writing debug logs from iPhone directly to CouchDB. Development \\u2014 siberian style.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 10:47:35 +0000", "from_user": "UbuntuWorldWide", "from_user_id": 176428672, "from_user_id_str": "176428672", "from_user_name": "Ubuntu World Wide", "geo": null, "id": 146179381943996400, "id_str": "146179381943996416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1099072003/ubuntu-logo-500x500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1099072003/ubuntu-logo-500x500_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#ubuntu #linux Jason Gerard DeRose: My proposal for CouchDB in Precise: Minimize the delta between Debian and Ub... http://t.co/ttuqYk2m", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 10:47:34 +0000", "from_user": "planetubuntu", "from_user_id": 21967441, "from_user_id_str": "21967441", "from_user_name": "Planet Ubuntu", "geo": null, "id": 146179380840894460, "id_str": "146179380840894464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1477595408/cof_orange_hex_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1477595408/cof_orange_hex_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Jason Gerard DeRose: My proposal for CouchDB in Precise: Minimize the delta between Debian and Ubuntu, yet keep ... http://t.co/4NrWxcJR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 10:45:28 +0000", "from_user": "tomahoax", "from_user_id": 23421653, "from_user_id_str": "23421653", "from_user_name": "Yannick", "geo": null, "id": 146178848915079170, "id_str": "146178848915079168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/270939166/inthemix_mini_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/270939166/inthemix_mini_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Why I choose CouchDB over MongoDB http://t.co/hViPGtra #CouchDB #MongoDB #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 10:44:19 +0000", "from_user": "nodenpm", "from_user_id": 373205545, "from_user_id_str": "373205545", "from_user_name": "npm tweets", "geo": null, "id": 146178561928200200, "id_str": "146178561928200192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542177164/npm_logo_sticker-p217036649643511140qjcl_400_normal.jpg", "source": "<a href="https://github.com/bcoe/npm-tweets" rel="nofollow">npmtweets</a>", "text": "txn (0.2.5): http://t.co/ya6DKFz1 Process and update CouchDB data in atomic, all-or-nothing transactions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 10:41:42 +0000", "from_user": "sirex_cr", "from_user_id": 15178006, "from_user_id_str": "15178006", "from_user_name": "sirex_cr", "geo": null, "id": 146177903003058180, "id_str": "146177903003058176", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1231650154/avatar_sirex_pfade_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1231650154/avatar_sirex_pfade_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Huuhuuu, hat hier schon jemand mit NoSQL-DBs gearbeitet? Sowas wie CouchDB?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 10:35:44 +0000", "from_user": "YanisGuenane", "from_user_id": 202164660, "from_user_id_str": "202164660", "from_user_name": "Yanis Guenane", "geo": null, "id": 146176399491874800, "id_str": "146176399491874816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1143829941/28d384c_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1143829941/28d384c_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @caolan: Kanso 0.1.1 released, get it while it's hot! http://t.co/ynKJhrqi - release announcement: http://t.co/4MjjRFt4 #couchdb #nodejs #couchapps", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 10:33:36 +0000", "from_user": "UbuntuGeekNews", "from_user_id": 313177709, "from_user_id_str": "313177709", "from_user_name": "Ubuntu Geek News", "geo": null, "id": 146175862977474560, "id_str": "146175862977474560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1386871562/Elisha-Ubuntu-150x150_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1386871562/Elisha-Ubuntu-150x150_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Jason Gerard DeRose: My proposal for CouchDB in Precise http://t.co/qzendDnS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 10:20:39 +0000", "from_user": "architgupta", "from_user_id": 28971466, "from_user_id_str": "28971466", "from_user_name": "Archit Gupta", "geo": null, "id": 146172606532427780, "id_str": "146172606532427776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1210479526/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1210479526/twitter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Great exposition on nosql vs mysql by quora founder. http://t.co/rZbrrjiI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 10:16:01 +0000", "from_user": "alian", "from_user_id": 2340151, "from_user_id_str": "2340151", "from_user_name": "Fero Alian Volar", "geo": null, "id": 146171439127592960, "id_str": "146171439127592960", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1604240070/IMG_2581_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1604240070/IMG_2581_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "RT @rubyslava: \\u0160tvrtok o 19:00 v Kaf\\u00E9 Nervosa: Akt\\u00EDvna dokument\\u00E1cia (@iNecas) a CouchDB (Michal Bartha) 15.12. http://t.co/CKi9oCaR RT pls.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 10:15:53 +0000", "from_user": "typingincolor", "from_user_id": 118448914, "from_user_id_str": "118448914", "from_user_name": "Andrew Braithwaite", "geo": null, "id": 146171406105841660, "id_str": "146171406105841664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1619385677/andrew-braithwaite-pointillized_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619385677/andrew-braithwaite-pointillized_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "This morning I shall mostly be setting up couchdb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 10:11:59 +0000", "from_user": "jgderose", "from_user_id": 130418225, "from_user_id_str": "130418225", "from_user_name": "Jason Gerard DeRose", "geo": null, "id": 146170425964113920, "id_str": "146170425964113920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1131459592/avatar-twitter-73x73_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1131459592/avatar-twitter-73x73_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "New blog post: My proposal for CouchDB in Precise - http://t.co/0jTw97oj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 10:10:39 +0000", "from_user": "e_scitalk", "from_user_id": 15850897, "from_user_id_str": "15850897", "from_user_name": "e-ScienceTalk", "geo": null, "id": 146170089568350200, "id_str": "146170089568350209", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1120925647/EST-logo-eScienceTalk_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1120925647/EST-logo-eScienceTalk_twitter_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @isgtw: Will @CERN follow the \\u2018red brick\\u2019 road of data management? http://t.co/jWGdJhfQ #NoSQL @WizaaardOfOz @BerkeleyLab @CouchDB @mongodb @Hadapt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 10:05:41 +0000", "from_user": "montaro23", "from_user_id": 14953818, "from_user_id_str": "14953818", "from_user_name": "\\u0627\\u0644\\u0631\\u0641\\u0627\\u0639\\u0649", "geo": null, "id": 146168839825133570, "id_str": "146168839825133568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1367798663/242358_10150196831924644_762369643_6730428_3755049_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1367798663/242358_10150196831924644_762369643_6730428_3755049_o_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Why I choose CouchDB over MongoDB http://t.co/Cdxsw07C", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 09:50:54 +0000", "from_user": "twest72", "from_user_id": 118988955, "from_user_id_str": "118988955", "from_user_name": "Thomas Westphal", "geo": null, "id": 146165118047223800, "id_str": "146165118047223808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1220291263/thomas_20090815_113756_sw_klein_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1220291263/thomas_20090815_113756_sw_klein_normal.jpg", "source": "<a href="http://www.dzone.com" rel="nofollow">DZone.com</a>", "text": "RT @DZone: Why I choose CouchDB over MongoDB - http://t.co/YXES78r9 - @DZone Big Link by mitchp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 09:31:40 +0000", "from_user": "tiso", "from_user_id": 3026681, "from_user_id_str": "3026681", "from_user_name": "Tibor Sovi\\u0161", "geo": null, "id": 146160276897665020, "id_str": "146160276897665024", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/14415512/tiso-icq_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/14415512/tiso-icq_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "RT @rubyslava: \\u0160tvrtok o 19:00 v Kaf\\u00E9 Nervosa: Akt\\u00EDvna dokument\\u00E1cia (@iNecas) a CouchDB (Michal Bartha) 15.12. http://t.co/CKi9oCaR RT pls.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 09:19:16 +0000", "from_user": "novacut", "from_user_id": 161922996, "from_user_id_str": "161922996", "from_user_name": "Novacut", "geo": null, "id": 146157156188692480, "id_str": "146157156188692480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1353303066/novacut-solo-brandmark_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1353303066/novacut-solo-brandmark_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jgderose: @sil @chipaca @thisfred @chadmiller what do you think of this CouchDB plan for #Ubuntu Precise? http://t.co/PU4Py2IO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 09:11:07 +0000", "from_user": "jsuchal", "from_user_id": 21485265, "from_user_id_str": "21485265", "from_user_name": "J\\u00E1n Suchal", "geo": null, "id": 146155104670720000, "id_str": "146155104670720000", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/295141929/forum_icon_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/295141929/forum_icon_1__normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "RT @rubyslava: \\u0160tvrtok o 19:00 v Kaf\\u00E9 Nervosa: Akt\\u00EDvna dokument\\u00E1cia (@iNecas) a CouchDB (Michal Bartha) 15.12. http://t.co/CKi9oCaR RT pls.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 09:10:35 +0000", "from_user": "rubyslava", "from_user_id": 377890072, "from_user_id_str": "377890072", "from_user_name": "rubyslava", "geo": null, "id": 146154972495609860, "id_str": "146154972495609856", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1554367896/174756_172990032745033_2933445_s_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554367896/174756_172990032745033_2933445_s_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "\\u0160tvrtok o 19:00 v Kaf\\u00E9 Nervosa: Akt\\u00EDvna dokument\\u00E1cia (@iNecas) a CouchDB (Michal Bartha) 15.12. http://t.co/CKi9oCaR RT pls.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 09:07:48 +0000", "from_user": "jgderose", "from_user_id": 130418225, "from_user_id_str": "130418225", "from_user_name": "Jason Gerard DeRose", "geo": null, "id": 146154270985699330, "id_str": "146154270985699328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1131459592/avatar-twitter-73x73_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1131459592/avatar-twitter-73x73_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@sil @chipaca @thisfred @chadmiller what do you think of this CouchDB plan for #Ubuntu Precise? http://t.co/PU4Py2IO", "to_user": "sil", "to_user_id": 1389781, "to_user_id_str": "1389781", "to_user_name": "Stuart Langridge"}, +{"created_at": "Mon, 12 Dec 2011 08:49:07 +0000", "from_user": "gonzalo123", "from_user_id": 5303212, "from_user_id_str": "5303212", "from_user_name": "Gonzalo Ayuso", "geo": null, "id": 146149571008008200, "id_str": "146149571008008192", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1250007873/gonzalo123.20110218_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1250007873/gonzalo123.20110218_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@itortv la integraci\\u00F3n de mongo+php es genial, pero yo me quedo con couchDB. Su killer-feature de replica multimaster me viene de perlas", "to_user": "itortv", "to_user_id": 34981400, "to_user_id_str": "34981400", "to_user_name": "Jordi", "in_reply_to_status_id": 146131207749505020, "in_reply_to_status_id_str": "146131207749505024"}, +{"created_at": "Mon, 12 Dec 2011 08:10:11 +0000", "from_user": "mryoshio", "from_user_id": 9047242, "from_user_id_str": "9047242", "from_user_name": "mryoshio", "geo": null, "id": 146139773050961920, "id_str": "146139773050961920", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1302125386/photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1302125386/photo_normal.jpg", "source": "<a href="http://www.yoono.com" rel="nofollow">yoono</a>", "text": "couchdb\\u306E\\u30D0\\u30FC\\u30B8\\u30E7\\u30F3\\u7BA1\\u7406\\u306E\\u4ED5\\u7D44\\u307F\\u306F\\u3001attachment\\u304C\\u3069\\u3093\\u3069\\u3093\\u5897\\u3048\\u3066\\u3044\\u304F\\u3068\\u3044\\u3046\\u4ED5\\u7D44\\u307F\\u306A\\u306E\\u304B\\u3002document\\u306E_rev\\u3054\\u3068\\u306Battachment\\u304C\\u5B58\\u5728\\u3059\\u308B\\u308F\\u3051\\u3067\\u306F\\u306A\\u3055\\u305D\\u3046\\u3002\\u5C11\\u306A\\u304F\\u3068\\u3082Futon\\u7D4C\\u7531\\u3067\\u306F\\u305D\\u3046\\u898B\\u3048\\u308B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 07:54:03 +0000", "from_user": "smhoekstra", "from_user_id": 193823687, "from_user_id_str": "193823687", "from_user_name": "Sanne Hoekstra", "geo": null, "id": 146135710133518340, "id_str": "146135710133518337", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1211977611/49132_1443484208_4654797_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1211977611/49132_1443484208_4654797_q_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @caolan: Kanso 0.1.1 released, get it while it's hot! http://t.co/ynKJhrqi - release announcement: http://t.co/4MjjRFt4 #couchdb #nodejs #couchapps", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 07:52:52 +0000", "from_user": "thenandagain", "from_user_id": 29844206, "from_user_id_str": "29844206", "from_user_name": "Darrell", "geo": null, "id": 146135412409245700, "id_str": "146135412409245696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1315608339/5212109819_c3936c9c49_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1315608339/5212109819_c3936c9c49_o_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @caolan: Kanso 0.1.1 released, get it while it's hot! http://t.co/ynKJhrqi - release announcement: http://t.co/4MjjRFt4 #couchdb #nodejs #couchapps", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 07:36:09 +0000", "from_user": "itortv", "from_user_id": 34981400, "from_user_id_str": "34981400", "from_user_name": "Jordi", "geo": null, "id": 146131207749505020, "id_str": "146131207749505024", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/493616455/itortvlogo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/493616455/itortvlogo_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@joserra_diaz @penguinjournals ... stamos structurndo xa la escalabd de la bd y decidiendo la nosql: mongodb, couchdb son las ppales candid", "to_user": "joserra_diaz", "to_user_id": 40336786, "to_user_id_str": "40336786", "to_user_name": "Jose Ram\\u00F3n", "in_reply_to_status_id": 145995259317469200, "in_reply_to_status_id_str": "145995259317469184"}, +{"created_at": "Mon, 12 Dec 2011 07:22:50 +0000", "from_user": "caolan", "from_user_id": 12185182, "from_user_id_str": "12185182", "from_user_name": "Caolan McMahon", "geo": null, "id": 146127856362205200, "id_str": "146127856362205184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1328677360/colourful_cropped_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1328677360/colourful_cropped_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Kanso 0.1.1 released, get it while it's hot! http://t.co/ynKJhrqi - release announcement: http://t.co/4MjjRFt4 #couchdb #nodejs #couchapps", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 07:11:18 +0000", "from_user": "chaojumori", "from_user_id": 210702528, "from_user_id_str": "210702528", "from_user_name": "Louise Mori", "geo": null, "id": 146124952033177600, "id_str": "146124952033177600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1637923494/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637923494/image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @Ijokarumawak: Only 1 seat is left! RelaxBar@CouchDB : ATND http://t.co/3pcO06mB via @atnd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 07:01:38 +0000", "from_user": "atnd_kanto", "from_user_id": 272283741, "from_user_id_str": "272283741", "from_user_name": "ATND\\u60C5\\u5831\\uFF08\\u95A2\\u6771\\uFF09", "geo": null, "id": 146122521278816260, "id_str": "146122521278816256", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1442262945/atnd_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1442262945/atnd_normal.png", "source": "<a href="http://maraigue.hhiro.net/twbot/" rel="nofollow">twbot2.rb</a>", "text": "[\\u66F4\\u65B0] 2011/12/16 RelaxBar\\uFF20CouchDB http://t.co/F45x8czN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 06:46:24 +0000", "from_user": "Ijokarumawak", "from_user_id": 128910202, "from_user_id_str": "128910202", "from_user_name": "Koji Kawamura", "geo": null, "id": 146118686661558270, "id_str": "146118686661558272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1200646395/Ijokarumawak_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1200646395/Ijokarumawak_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Only 1 seat is left! RelaxBar@CouchDB : ATND http://t.co/3pcO06mB via @atnd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 06:45:18 +0000", "from_user": "atnditbot", "from_user_id": 232413130, "from_user_id_str": "232413130", "from_user_name": "Atnd IT\\u52C9\\u5F37\\u4F1A\\u306A\\u3046", "geo": +{"coordinates": [35.529,139.7002], "type": "Point"}, "id": 146118409237692400, "id_str": "146118409237692416", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1203112962/atnd_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1203112962/atnd_normal.png", "source": "<a href="http://updatetweetbot.appspot.com/" rel="nofollow">Atnd IT\\u52C9\\u5F37\\u4F1A\\u306A\\u3046</a>", "text": "12/16\\uFF08\\u91D1\\uFF0919:00 RelaxBar@CouchDB\\uFF20\\u304B\\u3093\\u304B\\u3093\\u5546\\u5E97\\uFF086/7\\uFF09http://t.co/A2v9NB8i", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 06:35:22 +0000", "from_user": "atnditbot", "from_user_id": 232413130, "from_user_id_str": "232413130", "from_user_name": "Atnd IT\\u52C9\\u5F37\\u4F1A\\u306A\\u3046", "geo": +{"coordinates": [35.529,139.7002], "type": "Point"}, "id": 146115910460129280, "id_str": "146115910460129280", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1203112962/atnd_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1203112962/atnd_normal.png", "source": "<a href="http://updatetweetbot.appspot.com/" rel="nofollow">Atnd IT\\u52C9\\u5F37\\u4F1A\\u306A\\u3046</a>", "text": "12/16\\uFF08\\u91D1\\uFF0919:00 RelaxBar@CouchDB\\uFF20\\u99AC\\u523A\\u3057\\u30FB\\u70AD\\u706B\\u713C\\u9CE5\\u30FB\\u624B\\u7FBD\\u5148\\uFF086/7\\uFF09http://t.co/A2v9NB8i", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 05:39:16 +0000", "from_user": "mromtz", "from_user_id": 93404658, "from_user_id_str": "93404658", "from_user_name": "Mario Martinez", "geo": null, "id": 146101792005038080, "id_str": "146101792005038081", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1620642466/mromtzlogo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620642466/mromtzlogo_normal.png", "source": "<a href="http://timely.is" rel="nofollow">Timely by Demandforce</a>", "text": "RT @DBmxorg: Comparando: el MVCC hace m\\u00E1s \\u00E1gil a CouchDB, pero ocupa + espacio, a MongoDB le debe tomar + tiempo actualizar docs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 05:39:11 +0000", "from_user": "mromtz", "from_user_id": 93404658, "from_user_id_str": "93404658", "from_user_name": "Mario Martinez", "geo": null, "id": 146101773122273280, "id_str": "146101773122273280", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1620642466/mromtzlogo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620642466/mromtzlogo_normal.png", "source": "<a href="http://timely.is" rel="nofollow">Timely by Demandforce</a>", "text": "RT @DBmxorg: Comparando: la concurrencia d CouchDB se agiliza con MVCC (una nueva versi\\u00F3n del documento en cada actualizaci\\u00F3n) MongoDB no lo tiene", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 05:39:04 +0000", "from_user": "mromtz", "from_user_id": 93404658, "from_user_id_str": "93404658", "from_user_name": "Mario Martinez", "geo": null, "id": 146101744332570620, "id_str": "146101744332570625", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1620642466/mromtzlogo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620642466/mromtzlogo_normal.png", "source": "<a href="http://timely.is" rel="nofollow">Timely by Demandforce</a>", "text": "RT @DBmxorg: Comparando: la replicaci\\u00F3n d CouchDB es Master-Master y la d MondoDB Master/Slave", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 04:21:21 +0000", "from_user": "seanmrafferty", "from_user_id": 195450396, "from_user_id_str": "195450396", "from_user_name": "Sean Rafferty", "geo": null, "id": 146082184753717250, "id_str": "146082184753717249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1131818221/0805548_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1131818221/0805548_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Ohhhhh....#MongoDB is backed by 10gen (a corporation) and #CouchDB is backed by #Apache (a non-profit org). Hmmmm...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} + +, +{"created_at": "Mon, 19 Dec 2011 18:58:15 +0000", "from_user": "Frozzare", "from_user_id": 17970859, "from_user_id_str": "17970859", "from_user_name": "Fredrik Forsmo", "geo": null, "id": 148839579435270140, "id_str": "148839579435270145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1552171719/twitter3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552171719/twitter3_normal.png", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "RT @bolstad: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/ecvIERQW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:27 +0000", "from_user": "samkariu", "from_user_id": 35271650, "from_user_id_str": "35271650", "from_user_name": "Sam Kariu", "geo": null, "id": 148839376607129600, "id_str": "148839376607129600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1295717092/Photo0031_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1295717092/Photo0031_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @AntoRimba: Very stupid, unafaa kuchapwa @samkariu: A NoSQL database walks into a bar,but leaves immediately because he can't find any tables #getalife", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:26 +0000", "from_user": "tommyskott", "from_user_id": 149031404, "from_user_id_str": "149031404", "from_user_name": "Tommy Skott", "geo": null, "id": 148839373310398460, "id_str": "148839373310398464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688732617/006aa3d_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688732617/006aa3d_normal.jpg", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "RT @bolstad: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/ecvIERQW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:26 +0000", "from_user": "ajperella", "from_user_id": 93434607, "from_user_id_str": "93434607", "from_user_name": "Andrew Perella", "geo": null, "id": 148839372802887680, "id_str": "148839372802887680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/549875457/ajp_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/549875457/ajp_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "http://t.co/O0oVCHVX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:54 +0000", "from_user": "bolstad", "from_user_id": 12974922, "from_user_id_str": "12974922", "from_user_name": "Christian Bolstad", "geo": null, "id": 148837979228610560, "id_str": "148837979228610561", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1379219592/snurrad_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1379219592/snurrad_normal.jpg", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/ecvIERQW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:33 +0000", "from_user": "CaitlinRegan", "from_user_id": 14300275, "from_user_id_str": "14300275", "from_user_name": "CaitlinRegan", "geo": null, "id": 148837639930392580, "id_str": "148837639930392576", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1367351962/Twit_profile_pic_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1367351962/Twit_profile_pic_normal.PNG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @techielicous: Big Data and smart content: New challenges for content management applications - FierceContentMa... http://t.co/TbW6oRd6 #nosql #bigData", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:18 +0000", "from_user": "umitgunduz", "from_user_id": 33584412, "from_user_id_str": "33584412", "from_user_name": "Umit Gunduz", "geo": null, "id": 148837577871466500, "id_str": "148837577871466496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1267325045/TweetLandPhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1267325045/TweetLandPhoto_normal.jpg", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "MongoDB in Numbers: Foursquare, Wordnik, Disney http://t.co/8ulATeZx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:54 +0000", "from_user": "techielicous", "from_user_id": 240306053, "from_user_id_str": "240306053", "from_user_name": "Josette Rigsby", "geo": null, "id": 148837475194896400, "id_str": "148837475194896386", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1250483015/Josette_character_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1250483015/Josette_character_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Big Data and smart content: New challenges for content management applications - FierceContentMa... http://t.co/TbW6oRd6 #nosql #bigData", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:33 +0000", "from_user": "pvillega", "from_user_id": 14407620, "from_user_id_str": "14407620", "from_user_name": "Pere Villega", "geo": null, "id": 148836886008442880, "id_str": "148836886008442880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1052130874/avatar_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1052130874/avatar_2_normal.png", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/jZHhmPce", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:27 +0000", "from_user": "eyalbd1", "from_user_id": 21485089, "from_user_id_str": "21485089", "from_user_name": "Eyal Benishti", "geo": null, "id": 148836860985229300, "id_str": "148836860985229312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1448266383/Camping2008_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1448266383/Camping2008_3_normal.jpg", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/jZHhmPce", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:09 +0000", "from_user": "javutin", "from_user_id": 71221944, "from_user_id_str": "71221944", "from_user_name": "Javier Marcos", "geo": null, "id": 148836534680952830, "id_str": "148836534680952833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/396131569/foto_shark_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/396131569/foto_shark_normal.jpg", "source": "<a href="http://news.ycombinator.com/" rel="nofollow">Hacker News Bot</a>", "text": "RT @hackernewsbot: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS)... http://t.co/C5vM00Bt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:49 +0000", "from_user": "jupiterSpotless", "from_user_id": 188605903, "from_user_id_str": "188605903", "from_user_name": "Jupiter Spotless", "geo": null, "id": 148834940895756300, "id_str": "148834940895756288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1149995175/js_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1149995175/js_normal.jpg", "source": "<a href="http://www.alphonsolabs.com/" rel="nofollow">Pulse News</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) (41 points) http://t.co/R6DEXOgG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:32 +0000", "from_user": "fakalin", "from_user_id": 24603151, "from_user_id_str": "24603151", "from_user_name": "Frederick Akalin", "geo": null, "id": 148834869676482560, "id_str": "148834869676482560", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1167243280/49944_204956_6787309_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1167243280/49944_204956_6787309_q_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @iamtef: hahahahaha http://t.co/MSWqJTAl hahahahahhahahahahahahhaha javascript hahahahaha node.js", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:45 +0000", "from_user": "hugorodrigues", "from_user_id": 14528643, "from_user_id_str": "14528643", "from_user_name": "Hugo Rodrigues", "geo": null, "id": 148833412285874180, "id_str": "148833412285874176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1452203613/DSC_0108_2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1452203613/DSC_0108_2_normal.JPG", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/jZHhmPce", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:27 +0000", "from_user": "pdrobushevich", "from_user_id": 77585874, "from_user_id_str": "77585874", "from_user_name": "Pavel Drobushevich", "geo": null, "id": 148833338419982340, "id_str": "148833338419982336", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1601228996/me_from_scala_5_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601228996/me_from_scala_5_normal.JPG", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "@kochetkov_v \\u043F\\u043E\\u044D\\u0442\\u043E\\u043C\\u0443 \\u044F sql \\u0438 \\u0443\\u043F\\u043E\\u043C\\u044F\\u043D\\u0443\\u043B,\\u043F\\u0440\\u043E\\u0441\\u0442\\u043E \\u043C\\u0435\\u043D\\u044F \\u0433\\u0434\\u0435-\\u0442\\u043E \\u0442\\u0443\\u0442 \\u0443\\u0431\\u0435\\u0436\\u0434\\u0430\\u043B\\u0438,\\u0447\\u0442\\u043E \\u0441 nosql \\u043C\\u043E\\u0436\\u043D\\u043E \\u0437\\u0430\\u0431\\u044B\\u0442\\u044C \\u043F\\u0440\\u043E injection,\\u0430 \\u043D\\u0435\\u0442,\\u043D\\u0435\\u043B\\u044C\\u0437\\u044F \\u0434\\u043E\\u0432\\u0435\\u0440\\u044F\\u0442\\u044C \\u043D\\u0438\\u043A\\u043E\\u043C\\u0443 :)", "to_user": "kochetkov_v", "to_user_id": 250210715, "to_user_id_str": "250210715", "to_user_name": "Vladimir Kochetkov", "in_reply_to_status_id": 148821164607807500, "in_reply_to_status_id_str": "148821164607807488"}, +{"created_at": "Mon, 19 Dec 2011 18:32:20 +0000", "from_user": "telovitz", "from_user_id": 20350381, "from_user_id_str": "20350381", "from_user_name": "Tony Elovitz", "geo": null, "id": 148833057988816900, "id_str": "148833057988816896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1630332106/IMG_0628-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630332106/IMG_0628-2_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/IbSZLWrW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:21 +0000", "from_user": "teepark", "from_user_id": 16162656, "from_user_id_str": "16162656", "from_user_name": "teepark", "geo": null, "id": 148831299887566850, "id_str": "148831299887566849", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/111961453/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/111961453/profile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/PlygM3ui http://t.co/eZJhe1TQ man, must be a rough morning for @hipsterhacker", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:14 +0000", "from_user": "solbajoelmar", "from_user_id": 190465644, "from_user_id_str": "190465644", "from_user_name": "Pablo L H", "geo": null, "id": 148831269944426500, "id_str": "148831269944426497", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1437683420/a1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1437683420/a1_normal.jpg", "source": "<a href="http://news.ycombinator.com/" rel="nofollow">Hacker News Bot</a>", "text": "RT @hackernewsbot: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS)... http://t.co/C5vM00Bt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:30 +0000", "from_user": "AndrewFairbairn", "from_user_id": 17536784, "from_user_id_str": "17536784", "from_user_name": "Andrew Fairbairn", "geo": null, "id": 148831085516701700, "id_str": "148831085516701696", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1585350517/Refwah-360-Avatar-100x100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585350517/Refwah-360-Avatar-100x100_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @iamtef: hahahahaha http://t.co/MSWqJTAl hahahahahhahahahahahahhaha javascript hahahahaha node.js", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:08 +0000", "from_user": "dbaishya", "from_user_id": 11195222, "from_user_id_str": "11195222", "from_user_name": "Dhruba Baishya", "geo": null, "id": 148829484550852600, "id_str": "148829484550852609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1592018100/dbaishya_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592018100/dbaishya_normal.jpeg", "source": "<a href="http://www.alphonsolabs.com/" rel="nofollow">Pulse News</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) (41 points) http://t.co/whsjIb4x", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:30 +0000", "from_user": "jldavid", "from_user_id": 3415861, "from_user_id_str": "3415861", "from_user_name": "Jean-Luc David", "geo": null, "id": 148829322579427330, "id_str": "148829322579427329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1642295283/jld_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642295283/jld_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @ceben: RT @newsycombinator: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/a6TtvCjP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:11 +0000", "from_user": "ceben", "from_user_id": 14497983, "from_user_id_str": "14497983", "from_user_name": "Chris Eben", "geo": null, "id": 148829241763569660, "id_str": "148829241763569664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/317046498/photo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/317046498/photo_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @newsycombinator: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/a6TtvCjP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:46 +0000", "from_user": "Infobright", "from_user_id": 16202088, "from_user_id_str": "16202088", "from_user_name": "Infobright", "geo": null, "id": 148828634906505200, "id_str": "148828634906505217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/349754703/infobright_twitterlogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/349754703/infobright_twitterlogo_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Holiday present to yourself: Education on Row vs Column vs NoSQL. Register: http://t.co/RI6ClWxN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:13 +0000", "from_user": "Infobright", "from_user_id": 16202088, "from_user_id_str": "16202088", "from_user_name": "Infobright", "geo": null, "id": 148827741062578180, "id_str": "148827741062578176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/349754703/infobright_twitterlogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/349754703/infobright_twitterlogo_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Here's a great holiday present to yourself: Education on Rom, Column, NoSQL databases http://t.co/aVWhhdcK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:14 +0000", "from_user": "korchev", "from_user_id": 39838996, "from_user_id_str": "39838996", "from_user_name": "Atanas Korchev", "geo": null, "id": 148827493296652300, "id_str": "148827493296652288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1217972345/61784_443669071660_675096660_5116571_2047293_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1217972345/61784_443669071660_675096660_5116571_2047293_n_normal.jpg", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/jZHhmPce", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:55 +0000", "from_user": "Infobright", "from_user_id": 16202088, "from_user_id_str": "16202088", "from_user_name": "Infobright", "geo": null, "id": 148827417165828100, "id_str": "148827417165828096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/349754703/infobright_twitterlogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/349754703/infobright_twitterlogo_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Row vs Column vs NoSQL: Sign up for the webinar http://t.co/jOENPIM1 #bigdata #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:55 +0000", "from_user": "manolovn", "from_user_id": 256645312, "from_user_id_str": "256645312", "from_user_name": "Manolo Vera", "geo": null, "id": 148826662153363460, "id_str": "148826662153363456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1252599174/fCTBHKm5_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1252599174/fCTBHKm5_normal", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL Databases and Security \\u2022 myNoSQL: http://t.co/nmARlWcv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:48 +0000", "from_user": "alespinoza", "from_user_id": 23696089, "from_user_id_str": "23696089", "from_user_name": "Alejandro Espinoza", "geo": null, "id": 148825372484583420, "id_str": "148825372484583424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1634815135/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634815135/image_normal.jpg", "source": "<a href="http://www.nibirutech.com/mobilerss-google-reader-iphone.html" rel="nofollow">MobileRSS</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) \\u2022 http://t.co/Wbu35kjL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:30 +0000", "from_user": "s_kunk", "from_user_id": 34025095, "from_user_id_str": "34025095", "from_user_name": "(\\u25E3(\\u25E3_(\\u25E3_\\u25E2)_\\u25E2)\\u25E2)", "geo": null, "id": 148825295506518000, "id_str": "148825295506518016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1402683690/isee_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1402683690/isee_normal.png", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/jZHhmPce", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:07 +0000", "from_user": "hkokko", "from_user_id": 24726686, "from_user_id_str": "24726686", "from_user_name": "Hannu Kokko", "geo": null, "id": 148824696245338100, "id_str": "148824696245338112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/100266288/hannu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/100266288/hannu_normal.jpg", "source": "<a href="http://stone.com/Twittelator" rel="nofollow">Twittelator</a>", "text": "RT @newsycombinator Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/je1x3522", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:37 +0000", "from_user": "JsonCulverhouse", "from_user_id": 46495292, "from_user_id_str": "46495292", "from_user_name": "Jason Culverhouse", "geo": null, "id": 148824569489268740, "id_str": "148824569489268737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1572968933/Adium_Icon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572968933/Adium_Icon_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) \\u2022 myNoSQL: http://t.co/a75Z7xVR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:44 +0000", "from_user": "frlinux", "from_user_id": 75149327, "from_user_id_str": "75149327", "from_user_name": "Fr Linux", "geo": null, "id": 148824098791890940, "id_str": "148824098791890945", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/422364215/deadtux_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/422364215/deadtux_normal.png", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/jZHhmPce", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:53:41 +0000", "from_user": "ronnykaram", "from_user_id": 18973882, "from_user_id_str": "18973882", "from_user_name": "Ronny Karam", "geo": null, "id": 148823331326533630, "id_str": "148823331326533632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1319841722/rkase-logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1319841722/rkase-logo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/LHpUBrHh @leviathan", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:29 +0000", "from_user": "megamda", "from_user_id": 19755562, "from_user_id_str": "19755562", "from_user_name": "Kumar Palaniappan", "geo": null, "id": 148823029705744400, "id_str": "148823029705744386", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627876492/kumar_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627876492/kumar_normal.jpeg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Meeting folks over lunch to talk about DATA #cloud #nosql #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:20 +0000", "from_user": "tanyaoziel", "from_user_id": 169636172, "from_user_id_str": "169636172", "from_user_name": "Tanya Oziel", "geo": null, "id": 148822988320546800, "id_str": "148822988320546816", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1083857154/Professional_photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1083857154/Professional_photo_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "NoSQL Engineer / DBA http://t.co/34rcJSYP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:56 +0000", "from_user": "yoinkz", "from_user_id": 36439899, "from_user_id_str": "36439899", "from_user_name": "ed ooi", "geo": null, "id": 148822388237275140, "id_str": "148822388237275136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/239433695/Image006_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/239433695/Image006_normal.jpg", "source": "<a href="http://news.ycombinator.com/" rel="nofollow">Hacker News Bot</a>", "text": "RT @hackernewsbot: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS)... http://t.co/C5vM00Bt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:24 +0000", "from_user": "webdesignStatio", "from_user_id": 115815649, "from_user_id_str": "115815649", "from_user_name": "webdesignStatio", "geo": null, "id": 148821243276165120, "id_str": "148821243276165121", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1280965646/icon_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1280965646/icon_normal.gif", "source": "<a href="http://statio.ohbatch.net/" rel="nofollow">webdesignStatio bot</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) \\u2022 myNoSQL Jeff Darcy has written a while back... http://t.co/rphHFsjY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:18 +0000", "from_user": "mynosql_popescu", "from_user_id": 197901055, "from_user_id_str": "197901055", "from_user_name": "myNoSQL", "geo": null, "id": 148821218638835700, "id_str": "148821218638835712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "MongoDB in Numbers: Foursquare, Wordnik, Disney: MongoDB in Numbers: Foursquare, Wordnik, Disney: Derrick Harris... http://t.co/2EWZV2lm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:48 +0000", "from_user": "corund", "from_user_id": 23738856, "from_user_id_str": "23738856", "from_user_name": "Jin Kim", "geo": null, "id": 148821094705541120, "id_str": "148821094705541120", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1421578742/quigon_jinn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1421578742/quigon_jinn_normal.jpg", "source": "<a href="http://www.nibirutech.com/mobilerss-google-reader-iphone.html" rel="nofollow">MobileRSS</a>", "text": "\\uC11C\\uBC84\\uCABD \\uC790\\uBC14\\uC2A4\\uD06C\\uB9BD\\uD2B8 \\uACF5\\uACA9 \\uAC00\\uB2A5\\uC131? Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/m82K4Iz3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:20 +0000", "from_user": "WebGeekPH", "from_user_id": 40914569, "from_user_id_str": "40914569", "from_user_name": "WebGeek Philippines", "geo": null, "id": 148820471654268930, "id_str": "148820471654268929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1266820555/webgeekph-logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266820555/webgeekph-logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Interesting read: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS)... http://t.co/wpWmQ7YV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:36:24 +0000", "from_user": "vgholkar", "from_user_id": 14203002, "from_user_id_str": "14203002", "from_user_name": "Vidhya Gholkar", "geo": null, "id": 148818980134588400, "id_str": "148818980134588416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1326321528/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1326321528/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @devongovett: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) \\u2022 myNoSQL: http://t.co/ShkzZHP5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:07 +0000", "from_user": "functionsource", "from_user_id": 279275657, "from_user_id_str": "279275657", "from_user_name": "FunctionSource", "geo": null, "id": 148817901883895800, "id_str": "148817901883895808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1306206357/Screen_shot_2011-03-31_at_Mar_31___11.15.50_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1306206357/Screen_shot_2011-03-31_at_Mar_31___11.15.50_AM_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @devongovett: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) \\u2022 myNoSQL: http://t.co/ShkzZHP5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:05 +0000", "from_user": "xpqz", "from_user_id": 17704355, "from_user_id_str": "17704355", "from_user_name": "Stefan Kruger", "geo": null, "id": 148817641186918400, "id_str": "148817641186918400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/81965212/stef_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/81965212/stef_normal.jpg", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/jZHhmPce", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:12 +0000", "from_user": "pageman", "from_user_id": 20503, "from_user_id_str": "20503", "from_user_name": "The Pageman", "geo": null, "id": 148817418913988600, "id_str": "148817418913988608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1284515509/168777_1556829198391_1165064203_31306760_1441759_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1284515509/168777_1556829198391_1165064203_31306760_1441759_n_normal.jpg", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/jZHhmPce", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:00 +0000", "from_user": "soaj1664ashar", "from_user_id": 277735240, "from_user_id_str": "277735240", "from_user_name": "Ashar Javed", "geo": null, "id": 148817368364220400, "id_str": "148817368364220416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1301332153/ashar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1301332153/ashar_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @johnwilander: Server-side JavaScript injection: Attacking #nosql and #nodejs (pdf from BH 2011) https://t.co/9FCnbLpg via @shreeraj & @hackernewsbot", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:28:32 +0000", "from_user": "reneneee", "from_user_id": 168447758, "from_user_id_str": "168447758", "from_user_name": "ren\\u00E9 neee", "geo": null, "id": 148816998820876300, "id_str": "148816998820876288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1082355196/27372_100000460088715_4822_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1082355196/27372_100000460088715_4822_q_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @joedevon: Blog post: http://t.co/9ONGiDXb You thought SQL injection was bad? Schema injection coming to a NoSQL site near you. #php #mongodb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:28:08 +0000", "from_user": "johnwilander", "from_user_id": 57622045, "from_user_id_str": "57622045", "from_user_name": "John Wilander", "geo": null, "id": 148816900594479100, "id_str": "148816900594479104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/341321376/john_sjunger_715_beskuren_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/341321376/john_sjunger_715_beskuren_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Server-side JavaScript injection: Attacking #nosql and #nodejs (pdf from BH 2011) https://t.co/9FCnbLpg via @shreeraj & @hackernewsbot", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:27:59 +0000", "from_user": "MaesSven", "from_user_id": 250230912, "from_user_id_str": "250230912", "from_user_name": "Sven Maes", "geo": null, "id": 148816861553893380, "id_str": "148816861553893377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1269051091/188270_10150132298004433_720189432_6183636_1414228_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1269051091/188270_10150132298004433_720189432_6183636_1414228_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#nosql #db seems promising, but needs a standard..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:27:37 +0000", "from_user": "houcemberrayana", "from_user_id": 18717488, "from_user_id_str": "18717488", "from_user_name": "Houcem Berrayana", "geo": null, "id": 148816768113188860, "id_str": "148816768113188865", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534490937/houcem_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534490937/houcem_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "I received an invitation to schedule a call with @couchdb engineers in order to discuss about #couchDB use cases #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:24:29 +0000", "from_user": "syhunt", "from_user_id": 12798532, "from_user_id_str": "12798532", "from_user_name": "Syhunt", "geo": null, "id": 148815979697274880, "id_str": "148815979697274880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1126720714/sandcat_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1126720714/sandcat_twitter_normal.png", "source": "<a href="http://splitweet.com" rel="nofollow">Splitweet</a>", "text": "Sandcat Pro 4.2.8 Released. First version with NoSQL & Server-Side JavaScript Injection checks", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:21:56 +0000", "from_user": "mehmetkut", "from_user_id": 151001357, "from_user_id_str": "151001357", "from_user_name": "mehmetkut", "geo": null, "id": 148815341626212350, "id_str": "148815341626212352", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1587870158/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587870158/avatar_normal.jpg", "source": "<a href="http://trillian.im/" rel="nofollow">Trillian</a>", "text": "CV b\\u00F6yle yaz\\u0131l\\u0131r... http://t.co/Wb8J16yi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:21:42 +0000", "from_user": "schestowitz", "from_user_id": 26603208, "from_user_id_str": "26603208", "from_user_name": "Schestowitz", "geo": null, "id": 148815281718960130, "id_str": "148815281718960129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1302257133/40262-198-20110406184844_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1302257133/40262-198-20110406184844_normal.jpeg", "source": "<a href="http://identi.ca" rel="nofollow">identica</a>", "text": "#Grails 2.0 with more cloud support and NoSQL connectivity http://t.co/ORbY89ud #db", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:21:21 +0000", "from_user": "dennycd", "from_user_id": 65432805, "from_user_id_str": "65432805", "from_user_name": "Denny C. D.", "geo": null, "id": 148815194632626180, "id_str": "148815194632626177", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1412030733/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1412030733/image_normal.jpg", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/jZHhmPce", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:21:20 +0000", "from_user": "AntoRimba", "from_user_id": 77787161, "from_user_id_str": "77787161", "from_user_name": "Antony Rimba", "geo": null, "id": 148815190216028160, "id_str": "148815190216028161", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674882568/Image0195a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674882568/Image0195a_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Very stupid, unafaa kuchapwa @samkariu: A NoSQL database walks into a bar,but leaves immediately because he can't find any tables #getalife", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:20:40 +0000", "from_user": "trevormcleod", "from_user_id": 14501518, "from_user_id_str": "14501518", "from_user_name": "Trevor McLeod", "geo": null, "id": 148815019176505340, "id_str": "148815019176505344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1464968161/Trevor_Profile_2_a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1464968161/Trevor_Profile_2_a_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@michaelmuse just FYI - http://t.co/IMGY5Ime", "to_user": "michaelmuse", "to_user_id": 14129087, "to_user_id_str": "14129087", "to_user_name": "Michael Muse"}, +{"created_at": "Mon, 19 Dec 2011 17:20:33 +0000", "from_user": "kaniartur", "from_user_id": 150333665, "from_user_id_str": "150333665", "from_user_name": "Artur Kania", "geo": null, "id": 148814993381531650, "id_str": "148814993381531650", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1395318915/adCrB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1395318915/adCrB_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @devongovett: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) \\u2022 myNoSQL: http://t.co/ShkzZHP5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:20:10 +0000", "from_user": "th0ma5", "from_user_id": 15506652, "from_user_id_str": "15506652", "from_user_name": "Thomas Winningham", "geo": null, "id": 148814896337928200, "id_str": "148814896337928192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1544731417/self_sept_2011_smaller_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544731417/self_sept_2011_smaller_normal.png", "source": "<a href="http://news.ycombinator.com/" rel="nofollow">Hacker News Bot</a>", "text": "RT @hackernewsbot: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS)... http://t.co/C5vM00Bt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:20:02 +0000", "from_user": "Pelshoff", "from_user_id": 347963273, "from_user_id_str": "347963273", "from_user_name": "Pim Elshoff", "geo": null, "id": 148814862414389250, "id_str": "148814862414389249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1476217527/IMG_0853_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1476217527/IMG_0853_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @joedevon: Blog post: http://t.co/9ONGiDXb You thought SQL injection was bad? Schema injection coming to a NoSQL site near you. #php #mongodb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:18:28 +0000", "from_user": "j_ham3", "from_user_id": 23580248, "from_user_id_str": "23580248", "from_user_name": "James Hamilton", "geo": null, "id": 148814465310265340, "id_str": "148814465310265345", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/723361847/DSCN2202_c_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/723361847/DSCN2202_c_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ideoforms: the next generation of database injection queries is looking pretty terrifying. remain vigilant. http://t.co/cgZ1lik1 (via @iamtef)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:18:19 +0000", "from_user": "TheDeathsMaster", "from_user_id": 109958262, "from_user_id_str": "109958262", "from_user_name": "Samuel A. D\\u00E1vila I. ", "geo": null, "id": 148814429281194000, "id_str": "148814429281193984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1234346595/South_Park_Avatar_Wallpaper1280x960_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1234346595/South_Park_Avatar_Wallpaper1280x960_normal.png", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "MongoDB in Numbers: Foursquare, Wordnik, Disney - nosql: http://t.co/s5dJWOkv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:15:16 +0000", "from_user": "Xogost", "from_user_id": 126010186, "from_user_id_str": "126010186", "from_user_name": "Juan Camilo Martinez", "geo": null, "id": 148813659920015360, "id_str": "148813659920015361", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699288836/akane_y_yop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699288836/akane_y_yop_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @davidtoca: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/Zjhlz4Qr cc @DragonJAR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:14:57 +0000", "from_user": "mitchellhislop", "from_user_id": 15315808, "from_user_id_str": "15315808", "from_user_name": "Mitchell Hislop", "geo": null, "id": 148813583273295870, "id_str": "148813583273295872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1597979061/mitch_new_profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1597979061/mitch_new_profile_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @devongovett: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) \\u2022 myNoSQL: http://t.co/ShkzZHP5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:14:45 +0000", "from_user": "llun", "from_user_id": 12981882, "from_user_id_str": "12981882", "from_user_name": "llun:/n\\u00E6t/ not /l\\u028An/", "geo": null, "id": 148813530110492670, "id_str": "148813530110492672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1607061202/222354_10150168776961707_696331706_7129266_1795075_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607061202/222354_10150168776961707_696331706_7129266_1795075_n_normal.jpg", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/jZHhmPce", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:13:21 +0000", "from_user": "ripienaar", "from_user_id": 46250388, "from_user_id_str": "46250388", "from_user_name": "ripienaar", "geo": null, "id": 148813181240868860, "id_str": "148813181240868865", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/257864204/ducks_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/257864204/ducks_normal.png", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/jZHhmPce", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:13:14 +0000", "from_user": "lluccipha", "from_user_id": 103246788, "from_user_id_str": "103246788", "from_user_name": "lluccipha", "geo": null, "id": 148813149112516600, "id_str": "148813149112516610", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697708417/BYbrkMru_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697708417/BYbrkMru_normal", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "newsycombinator: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/23Zn8BjW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:12:30 +0000", "from_user": "tautvidas", "from_user_id": 53696221, "from_user_id_str": "53696221", "from_user_name": "Tautvidas Sipavi\\u010Dius", "geo": null, "id": 148812964504403970, "id_str": "148812964504403968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1494819107/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1494819107/me_normal.jpg", "source": "<a href="http://news.ycombinator.com/" rel="nofollow">Hacker News Bot</a>", "text": "RT @hackernewsbot: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS)... http://t.co/C5vM00Bt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:11:55 +0000", "from_user": "taverneiro", "from_user_id": 17220027, "from_user_id_str": "17220027", "from_user_name": "Michael", "geo": null, "id": 148812820576866300, "id_str": "148812820576866304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1597868944/avatar_deitado_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1597868944/avatar_deitado_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @newsycombinator: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/nnFQ6QNB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:10:50 +0000", "from_user": "dcaliri", "from_user_id": 17303143, "from_user_id_str": "17303143", "from_user_name": "Diego Caliri", "geo": null, "id": 148812546328113150, "id_str": "148812546328113153", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694661227/Screen_shot_2011-12-15_at_11.06.22_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694661227/Screen_shot_2011-12-15_at_11.06.22_AM_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "http://t.co/JJzFl3mz <-- ServerSide Javascript injection", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:07:58 +0000", "from_user": "davidtoca", "from_user_id": 65556624, "from_user_id_str": "65556624", "from_user_name": "David Toca", "geo": null, "id": 148811825331437570, "id_str": "148811825331437568", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1655876314/zelda_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655876314/zelda_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/Zjhlz4Qr cc @DragonJAR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:07:42 +0000", "from_user": "quard", "from_user_id": 8421902, "from_user_id_str": "8421902", "from_user_name": "Irek Khasyanov", "geo": null, "id": 148811756964286460, "id_str": "148811756964286466", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/907939174/x_00c1a954_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/907939174/x_00c1a954_normal.jpg", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "RT @newsycombinator: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/jZHhmPce", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:07:21 +0000", "from_user": "favstar_pop", "from_user_id": 217046870, "from_user_id_str": "217046870", "from_user_name": "Favstar Pop", "geo": null, "id": 148811670570012670, "id_str": "148811670570012674", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1170017104/twitterAvatarWithHat_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1170017104/twitterAvatarWithHat_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @joedevon: Blog post: http://t.co/9ONGiDXb You thought SQL injection was bad? Schema injection coming to a NoSQL site near you. #php #mongodb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:07:17 +0000", "from_user": "TopDevTweets", "from_user_id": 194520782, "from_user_id_str": "194520782", "from_user_name": "TopDevTweets", "geo": null, "id": 148811652819726340, "id_str": "148811652819726337", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @joedevon: Blog post: http://t.co/9ONGiDXb You thought SQL injection was bad? Schema injection coming to a NoSQL site near you. #php #mongodb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:06:22 +0000", "from_user": "jinnli", "from_user_id": 18330621, "from_user_id_str": "18330621", "from_user_name": "\\u01C7", "geo": null, "id": 148811420337848320, "id_str": "148811420337848320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1579601171/_______normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1579601171/_______normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/uJmuONE8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:05:05 +0000", "from_user": "ajfeed", "from_user_id": 260762269, "from_user_id_str": "260762269", "from_user_name": "Ajinkya Feed", "geo": null, "id": 148811100203397120, "id_str": "148811100203397120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "CompSci How to Run a MapReduce Job Against Common Crawl Data Using Amazon Elastic MapReduce: How to Run a MapRed... http://t.co/0SkxXsxI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:05:04 +0000", "from_user": "newsycombinator", "from_user_id": 14335498, "from_user_id_str": "14335498", "from_user_name": "news.yc Popular", "geo": null, "id": 148811094432034800, "id_str": "148811094432034816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/52589204/y_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/52589204/y_normal.png", "source": "<a href="http://www.lomalogue.com" rel="nofollow">newsycombinator</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/jZHhmPce", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:03:56 +0000", "from_user": "mynosql_popescu", "from_user_id": 197901055, "from_user_id_str": "197901055", "from_user_name": "myNoSQL", "geo": null, "id": 148810811576549380, "id_str": "148810811576549377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "How to Run a MapReduce Job Against Common Crawl Data Using Amazon Elastic MapReduce: How to Run a MapReduce Job ... http://t.co/ebzHJbHV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:01:55 +0000", "from_user": "securityshell", "from_user_id": 43130563, "from_user_id_str": "43130563", "from_user_name": "d3v1l", "geo": null, "id": 148810301180084220, "id_str": "148810301180084224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1365830043/lol_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1365830043/lol_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @shreeraj Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS)... http://t.co/v8PfvGcP", "to_user": "shreeraj", "to_user_id": 15262068, "to_user_id_str": "15262068", "to_user_name": "shreeraj", "in_reply_to_status_id": 148808388472614900, "in_reply_to_status_id_str": "148808388472614912"}, +{"created_at": "Mon, 19 Dec 2011 17:01:52 +0000", "from_user": "carnotweat", "from_user_id": 225349488, "from_user_id_str": "225349488", "from_user_name": "sameer", "geo": null, "id": 148810289914200060, "id_str": "148810289914200065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1317089589/sg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317089589/sg_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/jnBkcHbb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:01:05 +0000", "from_user": "gabordemooij", "from_user_id": 43424305, "from_user_id_str": "43424305", "from_user_name": "Gabor", "geo": null, "id": 148810092773507070, "id_str": "148810092773507072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1633357620/4940_gabordemooij120_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633357620/4940_gabordemooij120_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @joedevon: Blog post: http://t.co/9ONGiDXb You thought SQL injection was bad? Schema injection coming to a NoSQL site near you. #php #mongodb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:00:37 +0000", "from_user": "zaiste", "from_user_id": 112849341, "from_user_id_str": "112849341", "from_user_name": "Zaiste!", "geo": null, "id": 148809976830378000, "id_str": "148809976830377984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1138873870/haut-de-forme_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1138873870/haut-de-forme_normal", "source": "<a href="http://itunes.apple.com/us/app/google-currents/id459182288?mt=8&uo=4" rel="nofollow">Google Currents on iOS</a>", "text": "GigaOM: NoSQL\\u2019s great, but bring your A game #cloud http://t.co/2GbVb3k1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:00:31 +0000", "from_user": "keniobats", "from_user_id": 140622262, "from_user_id_str": "140622262", "from_user_name": "Luciano Laporta ", "geo": null, "id": 148809951530319870, "id_str": "148809951530319872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1220950000/_DSC0517mod_resize_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1220950000/_DSC0517mod_resize_normal.jpg", "source": "<a href="http://news.ycombinator.com/" rel="nofollow">Hacker News Bot</a>", "text": "RT @hackernewsbot: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS)... http://t.co/C5vM00Bt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:00:24 +0000", "from_user": "lastknight", "from_user_id": 5464132, "from_user_id_str": "5464132", "from_user_name": "Matteo G.P. Flora", "geo": null, "id": 148809920404389900, "id_str": "148809920404389890", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1255914387/70448_502992052_537370_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1255914387/70448_502992052_537370_q_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "Cassandra, Zookeeper, Scribe, and Node.js Powering Rackspace Cloud Monitoring http://t.co/RPIgqA4Q", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:00:05 +0000", "from_user": "ideoforms", "from_user_id": 70773071, "from_user_id_str": "70773071", "from_user_name": "Daniel Jones", "geo": null, "id": 148809839122989060, "id_str": "148809839122989056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1218157896/entanglement-engine-avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218157896/entanglement-engine-avatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "the next generation of database injection queries is looking pretty terrifying. remain vigilant. http://t.co/cgZ1lik1 (via @iamtef)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:58:02 +0000", "from_user": "mattnowina", "from_user_id": 103869545, "from_user_id_str": "103869545", "from_user_name": "Matt Nowina", "geo": null, "id": 148809327153651700, "id_str": "148809327153651713", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1310193735/eightbit-9aa6f9af-a52d-4215-97f5-8ae5720906f1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1310193735/eightbit-9aa6f9af-a52d-4215-97f5-8ae5720906f1_normal.png", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "Neo4j and Spring Data for Configuration Management Database http://t.co/xhv5Gbep", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:56:59 +0000", "from_user": "alexboool", "from_user_id": 278443670, "from_user_id_str": "278443670", "from_user_name": "\\u0410\\u043B\\u0435\\u043A\\u0441\\u0430\\u043D\\u0434\\u0440 \\u0411\\u0443\\u043B\\u0430\\u0435\\u0432", "geo": null, "id": 148809060970536960, "id_str": "148809060970536960", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1536720708/z_18fe42a6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1536720708/z_18fe42a6_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Oracle \\u0432\\u0442\\u043E\\u0440\\u0433\\u0430\\u0435\\u0442\\u0441\\u044F \\u0432 \\u043C\\u0438\\u0440 #nosql http://t.co/qpVojWKC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:55:48 +0000", "from_user": "darkaico", "from_user_id": 21335960, "from_user_id_str": "21335960", "from_user_name": "Ariel Parra", "geo": null, "id": 148808764097695740, "id_str": "148808764097695745", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1089286508/e5438a0b-e39b-49d4-833f-d4b300ea6412_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1089286508/e5438a0b-e39b-49d4-833f-d4b300ea6412_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\\u00D1o\\u00F1ada de tarde http://t.co/D95qYDvz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:54:19 +0000", "from_user": "shreeraj", "from_user_id": 15262068, "from_user_id_str": "15262068", "from_user_name": "shreeraj", "geo": null, "id": 148808388472614900, "id_str": "148808388472614912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/79667965/shreeraj_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/79667965/shreeraj_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "RT @hackernewsbot: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS)... http://t.co/XMhylWKO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:53:22 +0000", "from_user": "iamtef", "from_user_id": 16681276, "from_user_id_str": "16681276", "from_user_name": "tef", "geo": null, "id": 148808151637037060, "id_str": "148808151637037057", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1567081510/325091_10150472042699546_506839545_11311187_1589281020_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1567081510/325091_10150472042699546_506839545_11311187_1589281020_o_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "hahahahaha http://t.co/MSWqJTAl hahahahahhahahahahahahhaha javascript hahahahaha node.js", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:53:17 +0000", "from_user": "jonriegel", "from_user_id": 19077601, "from_user_id_str": "19077601", "from_user_name": "Jon Riegel", "geo": null, "id": 148808128719355900, "id_str": "148808128719355905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/661431480/tongues2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/661431480/tongues2_normal.jpg", "source": "<a href="http://news.ycombinator.com/" rel="nofollow">Hacker News Bot</a>", "text": "RT @hackernewsbot: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS)... http://t.co/C5vM00Bt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:52:19 +0000", "from_user": "danmactough", "from_user_id": 1295411, "from_user_id_str": "1295411", "from_user_name": "Dan MacTough", "geo": null, "id": 148807885760102400, "id_str": "148807885760102400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/63375033/BenPullingDansHair128x128_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/63375033/BenPullingDansHair128x128_normal.png", "source": "<a href="http://scripting.com/stories/2011/03/26/aFractionalHorsepowerTwitt.html" rel="nofollow">Blork</a>", "text": "Panic! \"Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS).\" http://t.co/bNkf8hyE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:52:14 +0000", "from_user": "ccrsp", "from_user_id": 55604647, "from_user_id_str": "55604647", "from_user_name": "Rob", "geo": null, "id": 148807864062980100, "id_str": "148807864062980096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/307215336/kitteh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/307215336/kitteh_normal.jpg", "source": "<a href="http://news.ycombinator.com/" rel="nofollow">Hacker News Bot</a>", "text": "RT @hackernewsbot: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS)... http://t.co/C5vM00Bt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:51:13 +0000", "from_user": "Dj3bbZ", "from_user_id": 245791885, "from_user_id_str": "245791885", "from_user_name": "Khalid Jebbari", "geo": null, "id": 148807608386592770, "id_str": "148807608386592768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1341164960/photo_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1341164960/photo_normal.jpeg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @joedevon: Blog post: http://t.co/9ONGiDXb You thought SQL injection was bad? Schema injection coming to a NoSQL site near you. #php #mongodb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:49:30 +0000", "from_user": "pjbryant", "from_user_id": 20326673, "from_user_id_str": "20326673", "from_user_name": "P J Bryant", "geo": null, "id": 148807178927611900, "id_str": "148807178927611905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1642202640/munch_scream_head_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642202640/munch_scream_head_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @joedevon: Blog post: http://t.co/9ONGiDXb You thought SQL injection was bad? Schema injection coming to a NoSQL site near you. #php #mongodb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:48:54 +0000", "from_user": "vivekiyer87", "from_user_id": 31167749, "from_user_id_str": "31167749", "from_user_name": "Vivek Iyer", "geo": null, "id": 148807026754060300, "id_str": "148807026754060289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1348351107/209074_2044573999761_1406721034_2519048_1894810_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1348351107/209074_2044573999761_1406721034_2519048_1894810_o_normal.jpg", "source": "<a href="http://www.alphonsolabs.com/" rel="nofollow">Pulse News</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/8uHzqLPK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:48:42 +0000", "from_user": "mwessendorf", "from_user_id": 12287422, "from_user_id_str": "12287422", "from_user_name": "Matthias Wessendorf", "geo": null, "id": 148806977466806270, "id_str": "148806977466806272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1644899733/mw80s_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644899733/mw80s_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @al3xandru: On HackerNews: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/9nvIDy2m", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:45:39 +0000", "from_user": "RobTerp", "from_user_id": 314036289, "from_user_id_str": "314036289", "from_user_name": "Rob Terpilowski", "geo": null, "id": 148806208537624580, "id_str": "148806208537624577", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691239266/profileImage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691239266/profileImage_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Graph databases for #java developers. http://t.co/bDIJg8J9 #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:45:14 +0000", "from_user": "HatF2", "from_user_id": 265550190, "from_user_id_str": "265550190", "from_user_name": "HatF2", "geo": null, "id": 148806104657309700, "id_str": "148806104657309696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1271379428/hatf2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1271379428/hatf2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "New SOLR-powered TF2 item search at http://t.co/E8fHfDhq. Indexing over 1M items. Now with Craftability & Drop info. Say #NoSQL to #MySQL!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:42:03 +0000", "from_user": "hackernewsbot", "from_user_id": 19575586, "from_user_id_str": "19575586", "from_user_name": "Hacker News Bot", "geo": null, "id": 148805302526029820, "id_str": "148805302526029824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/73596050/yc500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/73596050/yc500_normal.jpg", "source": "<a href="http://news.ycombinator.com/" rel="nofollow">Hacker News Bot</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS)... http://t.co/C5vM00Bt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:41:31 +0000", "from_user": "matkeep", "from_user_id": 41140242, "from_user_id_str": "41140242", "from_user_name": "Mat Keep", "geo": null, "id": 148805168077615100, "id_str": "148805168077615104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/258637219/mat_photo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/258637219/mat_photo_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Interesting take on risk of schema injection on NoSQL-hosted web properties: http://t.co/dyGGKOYN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:39:59 +0000", "from_user": "masayh", "from_user_id": 83385970, "from_user_id_str": "83385970", "from_user_name": "Masayoshi Hagiwara", "geo": null, "id": 148804782897905660, "id_str": "148804782897905664", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/478025875/DSC_0079_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/478025875/DSC_0079_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u3067\\u30C8\\u30E9\\u30F3\\u30B6\\u30AF\\u30B7\\u30E7\\u30F3\\u30B9\\u30B3\\u30FC\\u30D7\\u3092\\u554F\\u984C\\u306B\\u3057\\u305F\\u30B9\\u30B1\\u30FC\\u30E9\\u30D3\\u30EA\\u30C6\\u30A3\\u306E\\u8B70\\u8AD6\\u304C\\u3042\\u308B\\u3051\\u308C\\u3069\\u3001\\u305D\\u308C\\u3088\\u308A\\u540C\\u6642\\u6027\\u5236\\u5FA1\\u306B\\u3088\\u308B\\u5F71\\u97FF\\u306E\\u65B9\\u304C\\u5927\\u304D\\u3044\\u3088\\u3002\\u540C\\u6642\\u6027\\u5236\\u5FA1\\u306F\\u307E\\u3058\\u3081\\u306B\\u8003\\u3048\\u305F\\u65B9\\u304C\\u3044\\u3044\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 16:37:35 +0000", "from_user": "PaulLomax", "from_user_id": 790734, "from_user_id_str": "790734", "from_user_name": "Paul Lomax", "geo": null, "id": 148804179303989250, "id_str": "148804179303989248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/825445648/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/825445648/twitterProfilePhoto_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @joedevon: Blog post: http://t.co/9ONGiDXb You thought SQL injection was bad? Schema injection coming to a NoSQL site near you. #php #mongodb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:36:31 +0000", "from_user": "Crell", "from_user_id": 21524871, "from_user_id_str": "21524871", "from_user_name": "Larry Garfield", "geo": null, "id": 148803909484429300, "id_str": "148803909484429312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @joedevon: Blog post: http://t.co/9ONGiDXb You thought SQL injection was bad? Schema injection coming to a NoSQL site near you. #php #mongodb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:33:57 +0000", "from_user": "tkdysk", "from_user_id": 81067870, "from_user_id_str": "81067870", "from_user_name": "Yusuke Takada \\uFF08\\u9AD8\\u7530\\u7950\\u8F14\\uFF09", "geo": null, "id": 148803264056541200, "id_str": "148803264056541184", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1525108517/Groovyist_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1525108517/Groovyist_normal.png", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "\\u3010InfoQ: James Phillips \\u6C0F\\u304C\\u8A9E\\u308B\\u300C\\u30EA\\u30EC\\u30FC\\u30B7\\u30E7\\u30CA\\u30EB\\u304B\\u3089 NoSQL \\u3078\\u306E\\u30C7\\u30FC\\u30BF\\u30D9\\u30FC\\u30B9\\u79FB\\u884C\\u300D http://t.co/bjn06vdH \\u3011", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:33:34 +0000", "from_user": "ajfeed", "from_user_id": 260762269, "from_user_id_str": "260762269", "from_user_name": "Ajinkya Feed", "geo": null, "id": 148803168170549250, "id_str": "148803168170549248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "CompSci Data Modeling for Document Databases: An Auction and Bids System: Staying with data modeling, but moving... http://t.co/RvDPH8NL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:33:03 +0000", "from_user": "arnaudsj", "from_user_id": 13253662, "from_user_id_str": "13253662", "from_user_name": "S\\u00E9bastien", "geo": null, "id": 148803036867854340, "id_str": "148803036867854337", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1225003048/Sebastien_250x250_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225003048/Sebastien_250x250_normal.png", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "noSQL & Machine Learning: http://t.co/Sjuc2CW3 #ai #mongodb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:32:54 +0000", "from_user": "tw_top_1z15el0", "from_user_id": 323506027, "from_user_id_str": "323506027", "from_user_name": "Top scientwitters", "geo": null, "id": 148802999886675970, "id_str": "148802999886675969", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @joedevon: Blog post: http://t.co/9ONGiDXb You thought SQL injection was bad? Schema injection coming to a NoSQL site near you. #php #mongodb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:31:36 +0000", "from_user": "lsmith", "from_user_id": 22903583, "from_user_id_str": "22903583", "from_user_name": "Lukas Kahwe Smith", "geo": null, "id": 148802672152150000, "id_str": "148802672152150018", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/734253815/n644648272_5107_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/734253815/n644648272_5107_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @joedevon: Blog post: http://t.co/9ONGiDXb You thought SQL injection was bad? Schema injection coming to a NoSQL site near you. #php #mongodb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:30:51 +0000", "from_user": "datacharmer", "from_user_id": 14670504, "from_user_id_str": "14670504", "from_user_name": "Giuseppe Maxia", "geo": null, "id": 148802483853074430, "id_str": "148802483853074432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/605169078/datacharmer_A_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/605169078/datacharmer_A_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @joedevon: Blog post: http://t.co/9ONGiDXb You thought SQL injection was bad? Schema injection coming to a NoSQL site near you. #php #mongodb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:28:59 +0000", "from_user": "toricky6", "from_user_id": 176677628, "from_user_id_str": "176677628", "from_user_name": "toricky", "geo": null, "id": 148802016183992320, "id_str": "148802016183992320", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1317222411/20110419163337_toricky_V98PXCFMR1WSJ0E3YK5UIN6ODLQ7BTZHGA24_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317222411/20110419163337_toricky_V98PXCFMR1WSJ0E3YK5UIN6ODLQ7BTZHGA24_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @masayh: \\u30BD\\u30D5\\u30C8\\u30A6\\u30A7\\u30A2\\u6280\\u8853\\u8005\\u306E\\u5BFF\\u547D\\u306F\\u77ED\\u3044\\u306E\\u3060\\u304B\\u3089\\u3002\\u7121\\u99C4\\u306A\\u6280\\u8853\\u306B\\u6642\\u9593\\u3092\\u8CBB\\u3084\\u3059\\u3079\\u304D\\u3067\\u306F\\u306A\\u3044\\u3057\\u3001\\u904E\\u3061\\u3092\\u7E70\\u308A\\u8FD4\\u3059\\u3079\\u304D\\u3067\\u306F\\u306A\\u3044\\u3001null pointer\\u3092\\u8A31\\u3059\\u3001\\u7121\\u6761\\u4EF6\\u306A\\u540C\\u6642\\u6027\\u5236\\u5FA1\\u304C\\u5FC5\\u8981\\u306A\\u30DE\\u30EB\\u30C1\\u30B9\\u30EC\\u30C3\\u30C9\\u3001\\u30D7\\u30ED\\u30B0\\u30E9\\u30DF\\u30F3\\u30B0\\u30D1\\u30E9\\u30C0\\u30A4\\u30E0\\u306B\\u4F9D\\u5B58\\u3059\\u308B\\u30C7\\u30B6\\u30A4\\u30F3\\u30D1\\u30BF\\u30FC\\u30F3\\u3001\\u8AA4\\u3063\\u305FRDB\\u3084NoSQL\\u306E\\u5229\\u7528\\u6CD5\\u306A\\u3069\\u306A\\u3069\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:26:37 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148801416738250750, "id_str": "148801416738250752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @suren_h: Most interesting companies in the #Hadoop ecosystem: http://t.co/wOx2OQrb #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:24:49 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 148800965032689660, "id_str": "148800965032689664", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @freshemployer1: http://t.co/7rUGweLC Java Engineer - Java, Map/Reduce, Spring, MySQL, Hadoop, NoSQL http://t.co/USBvWoPi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:24:00 +0000", "from_user": "javascriptalert", "from_user_id": 274501532, "from_user_id_str": "274501532", "from_user_name": "javascript", "geo": null, "id": 148800758668722180, "id_str": "148800758668722177", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1304350707/___normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1304350707/___normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) \\u2022 myNoSQL: http://t.co/UgogDvC8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:23:28 +0000", "from_user": "komlow", "from_user_id": 95929876, "from_user_id_str": "95929876", "from_user_name": "\\u8106\\u5F31\\u5148\\u8F29", "geo": null, "id": 148800625788989440, "id_str": "148800625788989440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1623137955/asgasdgqer_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1623137955/asgasdgqer_normal.png", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "\\u201CAttacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) \\u2022 myNoSQL\\u201D http://t.co/9Xn65DTk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:22:42 +0000", "from_user": "tuxtux", "from_user_id": 5663352, "from_user_id_str": "5663352", "from_user_name": "Joel Westerberg", "geo": null, "id": 148800431261368320, "id_str": "148800431261368320", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1268177999/Screen_shot_2011-03-10_at_22.29.06_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1268177999/Screen_shot_2011-03-10_at_22.29.06_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@hising helt klart http://t.co/x1p2livw man e ju inte target f\\u00F6r SSJS med ASP i bakfickan iaf.", "to_user": "hising", "to_user_id": 14235149, "to_user_id_str": "14235149", "to_user_name": "Mattias Hising", "in_reply_to_status_id": 148782699941871600, "in_reply_to_status_id_str": "148782699941871617"}, +{"created_at": "Mon, 19 Dec 2011 16:22:09 +0000", "from_user": "tim_krueger", "from_user_id": 147594253, "from_user_id_str": "147594253", "from_user_name": "Tim Kr\\u00FCger", "geo": null, "id": 148800295831482370, "id_str": "148800295831482368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1679444531/_DSC7606_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679444531/_DSC7606_2_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/newsblur/id463981119?mt=8&uo=4" rel="nofollow">NewsBlur on iOS</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/4XJeMhIz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:18:11 +0000", "from_user": "joedevon", "from_user_id": 21734113, "from_user_id_str": "21734113", "from_user_name": "Joe Devon \\u00AE", "geo": null, "id": 148799297838788600, "id_str": "148799297838788609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1225220068/joedevon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225220068/joedevon_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Blog post: http://t.co/9ONGiDXb You thought SQL injection was bad? Schema injection coming to a NoSQL site near you. #php #mongodb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:17:10 +0000", "from_user": "vameos", "from_user_id": 390068509, "from_user_id_str": "390068509", "from_user_name": "Tobias Weiss", "geo": null, "id": 148799039444488200, "id_str": "148799039444488193", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1586995581/greg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586995581/greg_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Gleich geht's weiter mit spaltenbasierten #DWH Systemen sowie #NoSQL als Zukunft des #Datawarehousing", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:16:10 +0000", "from_user": "TopDevTweets", "from_user_id": 194520782, "from_user_id_str": "194520782", "from_user_name": "TopDevTweets", "geo": null, "id": 148798788943888400, "id_str": "148798788943888384", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @emiliotorrens: Version de #MongoMapper para #dotNET _id es un long se puede definir como un un incremental (identity) http://t.co/fm6UwRR4 #NoSQL #MongoDB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:11:11 +0000", "from_user": "emiliotorrens", "from_user_id": 21764595, "from_user_id_str": "21764595", "from_user_name": "Emilio Torrens", "geo": null, "id": 148797536960917500, "id_str": "148797536960917505", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1628882941/PerfilTwitter_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628882941/PerfilTwitter_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Version de #MongoMapper para #dotNET _id es un long se puede definir como un un incremental (identity) http://t.co/fm6UwRR4 #NoSQL #MongoDB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:08:59 +0000", "from_user": "panaghia", "from_user_id": 62253471, "from_user_id_str": "62253471", "from_user_name": "Sergio Panagia", "geo": null, "id": 148796983124045820, "id_str": "148796983124045824", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1450247575/163783_139769382743085_100001300727003_184777_1566539_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1450247575/163783_139769382743085_100001300727003_184777_1566539_n_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Expert in NoSQL http://t.co/v0YAj0Lo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:08:42 +0000", "from_user": "lexx27", "from_user_id": 8923232, "from_user_id_str": "8923232", "from_user_name": "Lexx", "geo": null, "id": 148796909664997380, "id_str": "148796909664997376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1360035898/avatar511_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1360035898/avatar511_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) \\u2022 myNoSQL: http://t.co/1w4azB2F", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:08:38 +0000", "from_user": "beketa", "from_user_id": 55174326, "from_user_id_str": "55174326", "from_user_name": "\\u7AF9\\u8FBA\\u9756\\u662D", "geo": null, "id": 148796892787122180, "id_str": "148796892787122177", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/763876028/manga_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/763876028/manga_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @masayh: \\u30BD\\u30D5\\u30C8\\u30A6\\u30A7\\u30A2\\u6280\\u8853\\u8005\\u306E\\u5BFF\\u547D\\u306F\\u77ED\\u3044\\u306E\\u3060\\u304B\\u3089\\u3002\\u7121\\u99C4\\u306A\\u6280\\u8853\\u306B\\u6642\\u9593\\u3092\\u8CBB\\u3084\\u3059\\u3079\\u304D\\u3067\\u306F\\u306A\\u3044\\u3057\\u3001\\u904E\\u3061\\u3092\\u7E70\\u308A\\u8FD4\\u3059\\u3079\\u304D\\u3067\\u306F\\u306A\\u3044\\u3001null pointer\\u3092\\u8A31\\u3059\\u3001\\u7121\\u6761\\u4EF6\\u306A\\u540C\\u6642\\u6027\\u5236\\u5FA1\\u304C\\u5FC5\\u8981\\u306A\\u30DE\\u30EB\\u30C1\\u30B9\\u30EC\\u30C3\\u30C9\\u3001\\u30D7\\u30ED\\u30B0\\u30E9\\u30DF\\u30F3\\u30B0\\u30D1\\u30E9\\u30C0\\u30A4\\u30E0\\u306B\\u4F9D\\u5B58\\u3059\\u308B\\u30C7\\u30B6\\u30A4\\u30F3\\u30D1\\u30BF\\u30FC\\u30F3\\u3001\\u8AA4\\u3063\\u305FRDB\\u3084NoSQL\\u306E\\u5229\\u7528\\u6CD5\\u306A\\u3069\\u306A\\u3069\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:06:26 +0000", "from_user": "nickfloyd", "from_user_id": 1009941, "from_user_id_str": "1009941", "from_user_name": "Nick Floyd", "geo": null, "id": 148796340342751230, "id_str": "148796340342751232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/941854658/avitar9_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/941854658/avitar9_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) - http://t.co/8HVFjSOO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:06:03 +0000", "from_user": "codemonkeyism", "from_user_id": 17334287, "from_user_id_str": "17334287", "from_user_name": "Stephan Schmidt", "geo": null, "id": 148796241516560400, "id_str": "148796241516560384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/289074160/Avatar2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/289074160/Avatar2_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@sallamar The problem is, what does sanitze mean? It's different for SQL, JS, HTML, NOSQL, ... How does your server recognize \"active\" data", "to_user": "sallamar", "to_user_id": 14075246, "to_user_id_str": "14075246", "to_user_name": "Subbu Allamaraju", "in_reply_to_status_id": 148795370166698000, "in_reply_to_status_id_str": "148795370166697984"}, +{"created_at": "Mon, 19 Dec 2011 16:04:51 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 148795940260687870, "id_str": "148795940260687872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@sallamar have you checked the NoSQL+node.js posts? I'm sure there are tons of correct apps out there, but many are completely ignoring sec.", "to_user": "sallamar", "to_user_id": 14075246, "to_user_id_str": "14075246", "to_user_name": "Subbu Allamaraju", "in_reply_to_status_id": 148795370166698000, "in_reply_to_status_id_str": "148795370166697984"}, +{"created_at": "Mon, 19 Dec 2011 16:03:45 +0000", "from_user": "freshemployer1", "from_user_id": 362653052, "from_user_id_str": "362653052", "from_user_name": "freshemployer", "geo": null, "id": 148795664078356480, "id_str": "148795664078356480", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "http://t.co/7rUGweLC Java Engineer - Java, Map/Reduce, Spring, MySQL, Hadoop, NoSQL http://t.co/USBvWoPi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:03:26 +0000", "from_user": "panaghia", "from_user_id": 62253471, "from_user_id_str": "62253471", "from_user_name": "Sergio Panagia", "geo": null, "id": 148795584709533700, "id_str": "148795584709533696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1450247575/163783_139769382743085_100001300727003_184777_1566539_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1450247575/163783_139769382743085_100001300727003_184777_1566539_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @albertoornaghi: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/O8j89pp8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:02:53 +0000", "from_user": "eliasisrael", "from_user_id": 13182282, "from_user_id_str": "13182282", "from_user_name": "Eli Israel", "geo": null, "id": 148795444359741440, "id_str": "148795444359741440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/277531030/0H6Z4202_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/277531030/0H6Z4202_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/1pn5kMTe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:02:33 +0000", "from_user": "totox8", "from_user_id": 68276205, "from_user_id_str": "68276205", "from_user_name": "tawfiq zidi", "geo": null, "id": 148795361136345100, "id_str": "148795361136345088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1073827067/o_h9Y5xvf3KUNLaU3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1073827067/o_h9Y5xvf3KUNLaU3_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "NoSQL facts : the only thing in common is that there is nothing in common !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:01:21 +0000", "from_user": "technige", "from_user_id": 120269446, "from_user_id_str": "120269446", "from_user_name": "Nigel Small", "geo": null, "id": 148795058206949380, "id_str": "148795058206949377", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1666826531/dragon-white.200x200_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666826531/dragon-white.200x200_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "GEOFF Evolved: http://t.co/xsT5p0gf @neo4j @py2neo #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:00:20 +0000", "from_user": "sunaot", "from_user_id": 62968355, "from_user_id_str": "62968355", "from_user_name": "tanabe sunao/\\u305F\\u306A\\u3079\\u3059\\u306A\\u304A", "geo": null, "id": 148794804371849200, "id_str": "148794804371849217", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/348450316/unit051105_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/348450316/unit051105_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @masayh: \\u30BD\\u30D5\\u30C8\\u30A6\\u30A7\\u30A2\\u6280\\u8853\\u8005\\u306E\\u5BFF\\u547D\\u306F\\u77ED\\u3044\\u306E\\u3060\\u304B\\u3089\\u3002\\u7121\\u99C4\\u306A\\u6280\\u8853\\u306B\\u6642\\u9593\\u3092\\u8CBB\\u3084\\u3059\\u3079\\u304D\\u3067\\u306F\\u306A\\u3044\\u3057\\u3001\\u904E\\u3061\\u3092\\u7E70\\u308A\\u8FD4\\u3059\\u3079\\u304D\\u3067\\u306F\\u306A\\u3044\\u3001null pointer\\u3092\\u8A31\\u3059\\u3001\\u7121\\u6761\\u4EF6\\u306A\\u540C\\u6642\\u6027\\u5236\\u5FA1\\u304C\\u5FC5\\u8981\\u306A\\u30DE\\u30EB\\u30C1\\u30B9\\u30EC\\u30C3\\u30C9\\u3001\\u30D7\\u30ED\\u30B0\\u30E9\\u30DF\\u30F3\\u30B0\\u30D1\\u30E9\\u30C0\\u30A4\\u30E0\\u306B\\u4F9D\\u5B58\\u3059\\u308B\\u30C7\\u30B6\\u30A4\\u30F3\\u30D1\\u30BF\\u30FC\\u30F3\\u3001\\u8AA4\\u3063\\u305FRDB\\u3084NoSQL\\u306E\\u5229\\u7528\\u6CD5\\u306A\\u3069\\u306A\\u3069\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:00:04 +0000", "from_user": "newsyc20", "from_user_id": 148969874, "from_user_id_str": "148969874", "from_user_name": "Hacker News 20", "geo": null, "id": 148794735706898430, "id_str": "148794735706898432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1081970640/yclogo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1081970640/yclogo_normal.gif", "source": "<a href="http://news.ycombinator.com" rel="nofollow">newsyc</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/Rvto2Il4 (http://t.co/PypQlHk5) #trending", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:59:04 +0000", "from_user": "yutuki_r", "from_user_id": 16252456, "from_user_id_str": "16252456", "from_user_name": "\\u8C4A\\u6708", "geo": null, "id": 148794487613833200, "id_str": "148794487613833216", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1570998126/___normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1570998126/___normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @masayh: \\u30BD\\u30D5\\u30C8\\u30A6\\u30A7\\u30A2\\u6280\\u8853\\u8005\\u306E\\u5BFF\\u547D\\u306F\\u77ED\\u3044\\u306E\\u3060\\u304B\\u3089\\u3002\\u7121\\u99C4\\u306A\\u6280\\u8853\\u306B\\u6642\\u9593\\u3092\\u8CBB\\u3084\\u3059\\u3079\\u304D\\u3067\\u306F\\u306A\\u3044\\u3057\\u3001\\u904E\\u3061\\u3092\\u7E70\\u308A\\u8FD4\\u3059\\u3079\\u304D\\u3067\\u306F\\u306A\\u3044\\u3001null pointer\\u3092\\u8A31\\u3059\\u3001\\u7121\\u6761\\u4EF6\\u306A\\u540C\\u6642\\u6027\\u5236\\u5FA1\\u304C\\u5FC5\\u8981\\u306A\\u30DE\\u30EB\\u30C1\\u30B9\\u30EC\\u30C3\\u30C9\\u3001\\u30D7\\u30ED\\u30B0\\u30E9\\u30DF\\u30F3\\u30B0\\u30D1\\u30E9\\u30C0\\u30A4\\u30E0\\u306B\\u4F9D\\u5B58\\u3059\\u308B\\u30C7\\u30B6\\u30A4\\u30F3\\u30D1\\u30BF\\u30FC\\u30F3\\u3001\\u8AA4\\u3063\\u305FRDB\\u3084NoSQL\\u306E\\u5229\\u7528\\u6CD5\\u306A\\u3069\\u306A\\u3069\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:57:45 +0000", "from_user": "temojin", "from_user_id": 15003854, "from_user_id_str": "15003854", "from_user_name": "temojin", "geo": null, "id": 148794154611249150, "id_str": "148794154611249153", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1239533074/hqt-photoboth-20110114_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1239533074/hqt-photoboth-20110114_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "RT @joedevon: myNoSQL: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) - nosql: http://t.co/wvjvKvMP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:56:43 +0000", "from_user": "lse_epita", "from_user_id": 440373188, "from_user_id_str": "440373188", "from_user_name": "EPITA Systems Lab", "geo": null, "id": 148793892215586800, "id_str": "148793892215586816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700980135/logoLSE_normal.png", "profile_image_url_https": null, "source": "<a href="http://www.lse.epita.fr/" rel="nofollow">LinkBot</a>", "text": "Server-Side JavaScript Injection in MongoDB and Node.JS https://t.co/NKJKuaWE #security #paper #blackhat #js #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:54:33 +0000", "from_user": "lyxint", "from_user_id": 201169348, "from_user_id_str": "201169348", "from_user_name": "duyue", "geo": null, "id": 148793346880569340, "id_str": "148793346880569344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1142091888/ul4680714-4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1142091888/ul4680714-4_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "..NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/LmlZU0U1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:53:43 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 148793141154152450, "id_str": "148793141154152449", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "On HackerNews: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/9nvIDy2m", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:53:39 +0000", "from_user": "NAL_6295", "from_user_id": 14843656, "from_user_id_str": "14843656", "from_user_name": "Hiroaki OHASHI", "geo": null, "id": 148793120962785280, "id_str": "148793120962785282", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1572432759/avatar_normal.JPEG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572432759/avatar_normal.JPEG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @masayh: \\u30BD\\u30D5\\u30C8\\u30A6\\u30A7\\u30A2\\u6280\\u8853\\u8005\\u306E\\u5BFF\\u547D\\u306F\\u77ED\\u3044\\u306E\\u3060\\u304B\\u3089\\u3002\\u7121\\u99C4\\u306A\\u6280\\u8853\\u306B\\u6642\\u9593\\u3092\\u8CBB\\u3084\\u3059\\u3079\\u304D\\u3067\\u306F\\u306A\\u3044\\u3057\\u3001\\u904E\\u3061\\u3092\\u7E70\\u308A\\u8FD4\\u3059\\u3079\\u304D\\u3067\\u306F\\u306A\\u3044\\u3001null pointer\\u3092\\u8A31\\u3059\\u3001\\u7121\\u6761\\u4EF6\\u306A\\u540C\\u6642\\u6027\\u5236\\u5FA1\\u304C\\u5FC5\\u8981\\u306A\\u30DE\\u30EB\\u30C1\\u30B9\\u30EC\\u30C3\\u30C9\\u3001\\u30D7\\u30ED\\u30B0\\u30E9\\u30DF\\u30F3\\u30B0\\u30D1\\u30E9\\u30C0\\u30A4\\u30E0\\u306B\\u4F9D\\u5B58\\u3059\\u308B\\u30C7\\u30B6\\u30A4\\u30F3\\u30D1\\u30BF\\u30FC\\u30F3\\u3001\\u8AA4\\u3063\\u305FRDB\\u3084NoSQL\\u306E\\u5229\\u7528\\u6CD5\\u306A\\u3069\\u306A\\u3069\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:50:45 +0000", "from_user": "b_erb", "from_user_id": 34872179, "from_user_id_str": "34872179", "from_user_name": "Benjamin Erb", "geo": null, "id": 148792391187447800, "id_str": "148792391187447808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1216365359/twitter2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1216365359/twitter2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/ShBYS79S", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:50:32 +0000", "from_user": "hnbot", "from_user_id": 317653311, "from_user_id_str": "317653311", "from_user_name": "Hacker News", "geo": null, "id": 148792336741183500, "id_str": "148792336741183488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1405908372/1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1405908372/1_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) \\n(Discuss on HN - http://t.co/pN3saR09) http://t.co/yLtM0tz3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:50:16 +0000", "from_user": "OpenSource4Biz", "from_user_id": 170064380, "from_user_id_str": "170064380", "from_user_name": "OpenSource4Biz", "geo": null, "id": 148792269615538180, "id_str": "148792269615538176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1088764897/brad-stripped_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1088764897/brad-stripped_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Grails 2.0 with More Cloud Support and NoSQL Connectivity http://t.co/dYqYxqIQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:50:15 +0000", "from_user": "Linux4Business", "from_user_id": 170066184, "from_user_id_str": "170066184", "from_user_name": "Linux4Business", "geo": null, "id": 148792268944457730, "id_str": "148792268944457728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1088772083/brad-stripped_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1088772083/brad-stripped_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Grails 2.0 with More Cloud Support and NoSQL Connectivity http://t.co/XbJankiu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:49:41 +0000", "from_user": "alltop_java", "from_user_id": 191999280, "from_user_id_str": "191999280", "from_user_name": "Alltop Java", "geo": null, "id": 148792123611807740, "id_str": "148792123611807744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1128524576/IloveAlltop_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1128524576/IloveAlltop_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/Ju75qmKN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:49:39 +0000", "from_user": "suren_h", "from_user_id": 90256037, "from_user_id_str": "90256037", "from_user_name": "Suren Hiraman", "geo": null, "id": 148792117924335600, "id_str": "148792117924335616", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Understanding #hbase and schema design - http://t.co/FjpTVvPt #nosql #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:46:30 +0000", "from_user": "williewheeler", "from_user_id": 18665786, "from_user_id_str": "18665786", "from_user_name": "Willie Wheeler", "geo": null, "id": 148791321937723400, "id_str": "148791321937723392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/535188049/willie_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/535188049/willie_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: Neo4j Domain Modeling With Spring Data http://t.co/SCeXU3rL Solve this with a relational database :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:46:09 +0000", "from_user": "HNComments", "from_user_id": 103485823, "from_user_id_str": "103485823", "from_user_name": "HN Comments", "geo": null, "id": 148791233660194800, "id_str": "148791233660194816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/622735724/hncomments_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/622735724/hncomments_normal.png", "source": "<a href="https://twitter.com/HNComments" rel="nofollow">HNComments Poster</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/jvRX6P3T", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:41:04 +0000", "from_user": "thesp0nge", "from_user_id": 9677762, "from_user_id_str": "9677762", "from_user_name": "Paolo Perego", "geo": null, "id": 148789956486242300, "id_str": "148789956486242304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1652332854/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652332854/image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @albertoornaghi: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/O8j89pp8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:40:03 +0000", "from_user": "YCHackerNews", "from_user_id": 90440720, "from_user_id_str": "90440720", "from_user_name": "YC Hacker News", "geo": null, "id": 148789701183152130, "id_str": "148789701183152128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/529679802/y_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/529679802/y_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS): Comments:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:40:03 +0000", "from_user": "HackerNewsFP", "from_user_id": 378119541, "from_user_id_str": "378119541", "from_user_name": "HN Front Page", "geo": null, "id": 148789700889554940, "id_str": "148789700889554944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1554908894/yclogo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554908894/yclogo_normal.gif", "source": "<a href="http://no.such.site/" rel="nofollow">hnfp</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/mZhE9itV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:40:02 +0000", "from_user": "HNTweets", "from_user_id": 116276133, "from_user_id_str": "116276133", "from_user_name": "Hacker News", "geo": null, "id": 148789696720416770, "id_str": "148789696720416768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1369520630/HNTweets_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1369520630/HNTweets_normal.png", "source": "<a href="http://github.com/d4nt/HNTweets" rel="nofollow">HNTweets Bot</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS): http://t.co/IaOiwaja Comments: http://t.co/o7QHK5it", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:38:51 +0000", "from_user": "mynosql_popescu", "from_user_id": 197901055, "from_user_id_str": "197901055", "from_user_name": "myNoSQL", "geo": null, "id": 148789398295687170, "id_str": "148789398295687168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Data Modeling for Document Databases: An Auction and Bids System: Staying with data modeling, but moving to the ... http://t.co/8dj0JBrp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:38:12 +0000", "from_user": "albertoornaghi", "from_user_id": 186182794, "from_user_id_str": "186182794", "from_user_name": "Alberto Ornaghi", "geo": null, "id": 148789232876527600, "id_str": "148789232876527616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1288990137/11e30732c18268fecce204bc1f2bda6b_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1288990137/11e30732c18268fecce204bc1f2bda6b_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/O8j89pp8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:37:04 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 148788949928779780, "id_str": "148788949928779778", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "Document Databases and Data Migrations http://t.co/UCUT3gLu 1) no ORM 2) no schema 3) no data migrations #mongodb #couchdb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:35:54 +0000", "from_user": "dieswaytoofast", "from_user_id": 312604736, "from_user_id_str": "312604736", "from_user_name": "Mahesh P-Subramanya", "geo": null, "id": 148788653706067970, "id_str": "148788653706067968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1572400317/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572400317/Untitled_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @al3xandru: Neo4j Domain Modeling With Spring Data http://t.co/oVG9nlwI Solve this with a relational database :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:35:40 +0000", "from_user": "dieswaytoofast", "from_user_id": 312604736, "from_user_id_str": "312604736", "from_user_name": "Mahesh P-Subramanya", "geo": null, "id": 148788597850513400, "id_str": "148788597850513408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1572400317/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572400317/Untitled_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "TANSTAAFL - you always need to worry about security (if its relevant, of course :-) ) - http://t.co/2zVIL7ux", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:35:40 +0000", "from_user": "scalextremeinc", "from_user_id": 233724009, "from_user_id_str": "233724009", "from_user_name": "ScaleXtreme, Inc.", "geo": null, "id": 148788597779214340, "id_str": "148788597779214336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1206179421/logo-4-facebook-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1206179421/logo-4-facebook-2_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "HackerNews: Attacking NoSQL and Node.js: #server-Side JavaScript Injection (SSJS) http://t.co/lMSLuAMx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:34:59 +0000", "from_user": "cheapRoc", "from_user_id": 1386421, "from_user_id_str": "1386421", "from_user_name": "cheapRoc", "geo": null, "id": 148788423782711300, "id_str": "148788423782711296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1543514942/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543514942/me_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Note to Morons: http://t.co/rxAFtVyZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:34:07 +0000", "from_user": "hnfirehose", "from_user_id": 213117318, "from_user_id_str": "213117318", "from_user_name": "HN Firehose", "geo": null, "id": 148788206765219840, "id_str": "148788206765219842", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS): http://t.co/4EOUpOsK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:34:01 +0000", "from_user": "suren_h", "from_user_id": 90256037, "from_user_id_str": "90256037", "from_user_name": "Suren Hiraman", "geo": null, "id": 148788180177522700, "id_str": "148788180177522689", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Using #redis bitmaps to do fast, real-time metrics calculations. Pretty cool. http://t.co/bYewxPXn #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:31:38 +0000", "from_user": "neo4j", "from_user_id": 22467617, "from_user_id_str": "22467617", "from_user_name": "Neo4j", "geo": null, "id": 148787580459155460, "id_str": "148787580459155456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/195275920/square-logo-no-text-2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/195275920/square-logo-no-text-2_normal.png", "source": "<a href="http://kiwi-app.net" rel="nofollow">kiwi</a>", "text": "Thanks! RT @al3xandru: Neo4j Domain Modeling With Spring Data http://t.co/HSedXjdd Solve this with a relational database :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:30:49 +0000", "from_user": "rgielen", "from_user_id": 14371317, "from_user_id_str": "14371317", "from_user_name": "Rene Gielen", "geo": null, "id": 148787376368525300, "id_str": "148787376368525313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/468381074/golden_gate_portrait_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/468381074/golden_gate_portrait_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Nice & elegant! @al3xandru: Neo4j Domain Modeling With Spring Data http://t.co/y3esOsnj Solve this with a relational database :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:29:42 +0000", "from_user": "williewheeler", "from_user_id": 18665786, "from_user_id_str": "18665786", "from_user_name": "Willie Wheeler", "geo": null, "id": 148787093932482560, "id_str": "148787093932482560", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/535188049/willie_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/535188049/willie_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: Neo4j and Spring Data for Configuration Management Database http://t.co/inxF9jj8 #Neo4j #SpringData #PoweredbyNoSQL #Skybase", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:27:42 +0000", "from_user": "seclectech", "from_user_id": 225581432, "from_user_id_str": "225581432", "from_user_name": "Matt Franz", "geo": null, "id": 148786592746704900, "id_str": "148786592746704897", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1456070737/PICT0117_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1456070737/PICT0117_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "RT @joedevon: myNoSQL: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) - nosql: http://t.co/wvjvKvMP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:26:07 +0000", "from_user": "suren_h", "from_user_id": 90256037, "from_user_id_str": "90256037", "from_user_name": "Suren Hiraman", "geo": null, "id": 148786193193111550, "id_str": "148786193193111552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Most interesting companies in the #Hadoop ecosystem: http://t.co/wOx2OQrb #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:24:20 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 148785743458873340, "id_str": "148785743458873344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "Neo4j Domain Modeling With Spring Data http://t.co/SCeXU3rL Solve this with a relational database :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:23:04 +0000", "from_user": "sbobrovsky", "from_user_id": 42171480, "from_user_id_str": "42171480", "from_user_name": "Serge Bobrovsky", "geo": null, "id": 148785427225116670, "id_str": "148785427225116672", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/468856400/ya0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/468856400/ya0_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/0nZ0iLjf 2.0 -- \\u0432\\u0435\\u0431-\\u0440\\u0430\\u0437\\u0440\\u0430\\u0431\\u043E\\u0442\\u043A\\u0430 \\u0434\\u043B\\u044F Java \\u0438 JVM-\\u044F\\u0437\\u044B\\u043A\\u043E\\u0432 \\u043F\\u043E \\u043C\\u043E\\u0434\\u0435\\u043B\\u0438 MVC + Groove + Grails-Object-Relational-Mapper + NoSQL !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:20:41 +0000", "from_user": "nanderoo", "from_user_id": 39574483, "from_user_id_str": "39574483", "from_user_name": "Neal Anders", "geo": null, "id": 148784824604311550, "id_str": "148784824604311552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/208948704/neal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/208948704/neal_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "RT @joedevon: myNoSQL: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) - nosql: http://t.co/wvjvKvMP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:19:55 +0000", "from_user": "joedevon", "from_user_id": 21734113, "from_user_id_str": "21734113", "from_user_name": "Joe Devon \\u00AE", "geo": null, "id": 148784635306983420, "id_str": "148784635306983424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1225220068/joedevon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225220068/joedevon_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": ".@daschl LOL, well my little blog isn't really \"news\". & it's not a #li3 issue. Just a tut needs a minor fix & ppl using nosql need caution", "to_user": "daschl", "to_user_id": 15881666, "to_user_id_str": "15881666", "to_user_name": "Michael Nitschinger", "in_reply_to_status_id": 148738612031266800, "in_reply_to_status_id_str": "148738612031266816"}, +{"created_at": "Mon, 19 Dec 2011 15:18:35 +0000", "from_user": "sototan", "from_user_id": 99141263, "from_user_id_str": "99141263", "from_user_name": "Sergio Soto", "geo": null, "id": 148784299204821000, "id_str": "148784299204820992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1644983978/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644983978/avatar_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"A Survey on Graph Databases for Java Developers\" http://t.co/YuCinhit #Neo4j #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:16:54 +0000", "from_user": "scislaghi", "from_user_id": 6364342, "from_user_id_str": "6364342", "from_user_name": "Stefano Cislaghi", "geo": null, "id": 148783872270794750, "id_str": "148783872270794752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1472119034/twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1472119034/twitter_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "MySQL is Not ACID Compliant \\u2022 myNoSQL: http://t.co/cpStSskO via @AddThis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:15:30 +0000", "from_user": "joedevon", "from_user_id": 21734113, "from_user_id_str": "21734113", "from_user_name": "Joe Devon \\u00AE", "geo": null, "id": 148783522310668300, "id_str": "148783522310668288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1225220068/joedevon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225220068/joedevon_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @daschl: @joedevon http://t.co/V30Aftlc good news? bad news? anyway #li3 in the news ;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:15:04 +0000", "from_user": "joedevon", "from_user_id": 21734113, "from_user_id_str": "21734113", "from_user_name": "Joe Devon \\u00AE", "geo": null, "id": 148783414391210000, "id_str": "148783414391209985", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1225220068/joedevon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225220068/joedevon_normal.png", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "myNoSQL: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) - nosql: http://t.co/wvjvKvMP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:15:04 +0000", "from_user": "softartisans", "from_user_id": 50410463, "from_user_id_str": "50410463", "from_user_name": "SoftArtisans ", "geo": null, "id": 148783412747051000, "id_str": "148783412747051008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/292623405/SAtweet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/292623405/SAtweet_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#screencast: @cloudera's @larsgeorge breaks down the #hbase schema http://t.co/f3rGTNN1 @al3xandru", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:14:48 +0000", "from_user": "scislaghi", "from_user_id": 6364342, "from_user_id_str": "6364342", "from_user_name": "Stefano Cislaghi", "geo": null, "id": 148783345034215420, "id_str": "148783345034215426", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1472119034/twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1472119034/twitter_normal.png", "source": "<a href="http://twittercounter.com" rel="nofollow">The Visitor Widget</a>", "text": "#myNoSQL http://t.co/dwu6GmCt #giafattodaunmiocliente", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:11:26 +0000", "from_user": "BrighthubLinux", "from_user_id": 69991836, "from_user_id_str": "69991836", "from_user_name": "BrighthubLinux", "geo": null, "id": 148782498594308100, "id_str": "148782498594308097", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/388602893/Linux_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/388602893/Linux_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "[http://t.co/XFv5sgqM] Grails 2.0 with More Cloud Support and NoSQL Connectivity: \\n\\tThe Grails development team h... http://t.co/Gm8nJFpG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:09:19 +0000", "from_user": "keithkim", "from_user_id": 14881688, "from_user_id_str": "14881688", "from_user_name": "Keith Kim", "geo": null, "id": 148781966169354240, "id_str": "148781966169354240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1485820747/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1485820747/me_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"Neo4j and GWT Based Social News Feed Demo on Wikipedia Graph Running\" http://t.co/NT7vcWvl #Java #Neo4j #GWT #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:08:04 +0000", "from_user": "AppDynamics", "from_user_id": 22432302, "from_user_id_str": "22432302", "from_user_name": "AppDynamics", "geo": null, "id": 148781651395231740, "id_str": "148781651395231746", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692382555/AD_twitter_icon-121311_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692382555/AD_twitter_icon-121311_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "2012 Cloud, PaaS, NoSQL Predictions http://t.co/PIm0iezr << Nice blog from Nati @Gigaspaces", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:08:00 +0000", "from_user": "TopDevTweets", "from_user_id": 194520782, "from_user_id_str": "194520782", "from_user_name": "TopDevTweets", "geo": null, "id": 148781633657507840, "id_str": "148781633657507840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"A Survey on Graph Databases for Java Developers\" http://t.co/YuCinhit #Neo4j #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:07:16 +0000", "from_user": "keithkim", "from_user_id": 14881688, "from_user_id_str": "14881688", "from_user_name": "Keith Kim", "geo": null, "id": 148781450857164800, "id_str": "148781450857164801", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1485820747/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1485820747/me_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"A Survey on Graph Databases for Java Developers\" http://t.co/YuCinhit #Neo4j #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:06:11 +0000", "from_user": "samuelcharron", "from_user_id": 190333842, "from_user_id_str": "190333842", "from_user_name": "uo\\u0279\\u0279\\u0250\\u0265\\u0186 \\uA781\\u01DDn\\u026F\\u0250S", "geo": null, "id": 148781177594069000, "id_str": "148781177594068992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1283676531/futurama_fry_looking_squint2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1283676531/futurama_fry_looking_squint2_normal.jpg", "source": "Zite Personalized Magazine", "text": "RT @bduclaux: NoSQL's great, but bring your A game http://t.co/7yLqhq8L", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:00:46 +0000", "from_user": "softartisans", "from_user_id": 50410463, "from_user_id_str": "50410463", "from_user_name": "SoftArtisans ", "geo": null, "id": 148779814428475400, "id_str": "148779814428475392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/292623405/SAtweet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/292623405/SAtweet_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "If you're using #nosql databases, you need to read Bryan Sullivan's paper on server-side #js injection attacks http://t.co/tLu74Nys", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:55:45 +0000", "from_user": "alecsg77", "from_user_id": 346788932, "from_user_id_str": "346788932", "from_user_name": "Alessio Gogna", "geo": null, "id": 148778550261059600, "id_str": "148778550261059584", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1473956791/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1473956791/image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Database di documenti NoSQL: Integrazione di RavenDB in un'applicazione http://t.co/lOKtC1EW MVC 3 http://t.co/Hcnba76X", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:54:05 +0000", "from_user": "jingbay", "from_user_id": 58447675, "from_user_id_str": "58447675", "from_user_name": "\\u9AD8\\u68A8\\u9663\\u5E73", "geo": null, "id": 148778133326278660, "id_str": "148778133326278656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/322602576/JinpeiTakanashi_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/322602576/JinpeiTakanashi_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"A Survey on Graph Databases for Java Developers\" http://t.co/YuCinhit #Neo4j #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:53:27 +0000", "from_user": "neo4j", "from_user_id": 22467617, "from_user_id_str": "22467617", "from_user_name": "Neo4j", "geo": null, "id": 148777973166772220, "id_str": "148777973166772224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/195275920/square-logo-no-text-2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/195275920/square-logo-no-text-2_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"A Survey on Graph Databases for Java Developers\" http://t.co/YuCinhit #Neo4j #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:49:58 +0000", "from_user": "DZone", "from_user_id": 14782935, "from_user_id_str": "14782935", "from_user_name": "DZone", "geo": null, "id": 148777097849094140, "id_str": "148777097849094145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/258714549/dzone-square-256_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/258714549/dzone-square-256_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\"A Survey on Graph Databases for Java Developers\" http://t.co/YuCinhit #Neo4j #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:47:07 +0000", "from_user": "jamie_allen", "from_user_id": 16935750, "from_user_id_str": "16935750", "from_user_name": "Jamie Allen", "geo": null, "id": 148776378794381300, "id_str": "148776378794381313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1238432751/jlacubs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1238432751/jlacubs_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/gBf90Zzo #NoSQLdatabase #Node.js #JavaScript #security", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:45:21 +0000", "from_user": "100pZ", "from_user_id": 324010767, "from_user_id_str": "324010767", "from_user_name": "|\\u03B8\\u03B8\\u03C1 \\u2714", "geo": null, "id": 148775933443194880, "id_str": "148775933443194880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1484057937/loop_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1484057937/loop_2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Grails 2.0 with More Cloud Support and NoSQL Connectivity: \\n\\tThe Grails development team has released version 2.... http://t.co/N6iVrIcQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:45:21 +0000", "from_user": "maniyadv", "from_user_id": 90178528, "from_user_id_str": "90178528", "from_user_name": "Mani", "geo": null, "id": 148775932201680900, "id_str": "148775932201680896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1430504514/twitterme_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1430504514/twitterme_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Grails 2.0 with More Cloud Support and NoSQL Connectivity http://t.co/wOmXaf5J", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:45:20 +0000", "from_user": "tux_news", "from_user_id": 242429286, "from_user_id_str": "242429286", "from_user_name": "tux_news", "geo": null, "id": 148775929282433020, "id_str": "148775929282433024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1225334349/tux_news_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225334349/tux_news_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Grails 2.0 with More Cloud Support and NoSQL Connectivity http://t.co/tANr4oXE #linux", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:45:19 +0000", "from_user": "ESITechadvisors", "from_user_id": 127507205, "from_user_id_str": "127507205", "from_user_name": "ESI Techadvisors", "geo": null, "id": 148775927772495870, "id_str": "148775927772495872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/783724638/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/783724638/twitter_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Grails 2.0 with More Cloud Support and NoSQL Connectivity: \\n\\tThe Grails development team has released version 2.... http://t.co/zaPtHOVz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:45:18 +0000", "from_user": "linuxnewstoday", "from_user_id": 144271076, "from_user_id_str": "144271076", "from_user_name": "Linux News", "geo": null, "id": 148775923460734980, "id_str": "148775923460734976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/902836592/robot_tux_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/902836592/robot_tux_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Grails 2.0 with More Cloud Support and NoSQL Connectivity: \\n\\tThe Grails development team has released ver... http://t.co/GUFpRoDx #linux", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:45:18 +0000", "from_user": "freesource", "from_user_id": 19503616, "from_user_id_str": "19503616", "from_user_name": "Free Software Feeds", "geo": null, "id": 148775921954988030, "id_str": "148775921954988032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/73127416/twitter_j_03_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/73127416/twitter_j_03_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Grails 2.0 with More Cloud Support and NoSQL Connectivity http://t.co/KB1WU9kd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:38:44 +0000", "from_user": "syahrulOCHrmdhn", "from_user_id": 193239222, "from_user_id_str": "193239222", "from_user_name": "syahrul ramadhan", "geo": null, "id": 148774269030105100, "id_str": "148774269030105088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1618179662/digginguitar.gif_w_500_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618179662/digginguitar.gif_w_500_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Grails 2.0 with More Cloud Support and NoSQL Connectivity: \\n\\tThe Grails development team has released version 2.... http://t.co/XIrnTHrr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:37:54 +0000", "from_user": "bigdatajobs", "from_user_id": 343011637, "from_user_id_str": "343011637", "from_user_name": "Big Data Jobs", "geo": null, "id": 148774060560613380, "id_str": "148774060560613376", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#Job Sr Java Developer (Hadoop, Cassandra, NoSQL, MongoDB) at Mitchell Group (Los Angeles, CA) http://t.co/DZWVlMud #bigdata #cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:37:29 +0000", "from_user": "TechOnWrox", "from_user_id": 144453127, "from_user_id_str": "144453127", "from_user_name": "TechOnWrox", "geo": null, "id": 148773955031924740, "id_str": "148773955031924737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/904714651/techonwrox_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/904714651/techonwrox_normal.PNG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Grails 2.0 with More Cloud Support and NoSQL Connectivity: \\n\\tThe Grails development team has released version 2.... http://t.co/8CWHGsqn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:31:57 +0000", "from_user": "BrendanColeman1", "from_user_id": 310247344, "from_user_id_str": "310247344", "from_user_name": "Brendan Coleman", "geo": null, "id": 148772563248623600, "id_str": "148772563248623616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670774902/Screen_Shot_2011-11-07_at_2.07.08_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670774902/Screen_Shot_2011-11-07_at_2.07.08_PM_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/U1xMo08Y, #10gen #mongodb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:30:48 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 148772273699033100, "id_str": "148772273699033088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @FriendsOfNodeJS Nicollemip: mindstorms: NoSQL: Attacking NoSQL and Node.js: Server-Side JavaScript _Injection_ (SSJS) http://...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:28:52 +0000", "from_user": "nwjlyons", "from_user_id": 17298095, "from_user_id_str": "17298095", "from_user_name": "nwjlyons", "geo": null, "id": 148771784467021820, "id_str": "148771784467021824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1260989893/the_suburbs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1260989893/the_suburbs_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "brilliant http://t.co/3rQar94W", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:22:47 +0000", "from_user": "_sibudi", "from_user_id": 18154745, "from_user_id_str": "18154745", "from_user_name": "Shun Setiyabudi \\u2714", "geo": null, "id": 148770253353123840, "id_str": "148770253353123841", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1623678363/sty_7373_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1623678363/sty_7373_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "LAMP Replacement: The Jason Stack http://t.co/Le80Uzdg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:18:35 +0000", "from_user": "phaneeshn", "from_user_id": 78000743, "from_user_id_str": "78000743", "from_user_name": "Phaneesh Nagaraja", "geo": null, "id": 148769197365800960, "id_str": "148769197365800960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/789289885/0383_guitarist_heavy_metal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/789289885/0383_guitarist_heavy_metal_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"Neo4j and GWT Based Social News Feed Demo on Wikipedia Graph Running\" http://t.co/NT7vcWvl #Java #Neo4j #GWT #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 14:18:16 +0000", "from_user": "VoltDB", "from_user_id": 97716631, "from_user_id_str": "97716631", "from_user_name": "VoltDB", "geo": null, "id": 148769116856131600, "id_str": "148769116856131585", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1389280256/volt_db_logo_small_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1389280256/volt_db_logo_small_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "VoltDB for Digital Ad Tech apps: http://t.co/aOOSGsVa #mysql #nosql #newsql #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:17:51 +0000", "from_user": "ochawin", "from_user_id": 17104053, "from_user_id_str": "17104053", "from_user_name": "ochawin", "geo": null, "id": 148769014531891200, "id_str": "148769014531891200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1164246034/Untitled-1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1164246034/Untitled-1_normal.png", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "myNoSQL: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) - nosql: http://t.co/H0ZiGFhi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:10:28 +0000", "from_user": "fe_aragon", "from_user_id": 22362198, "from_user_id_str": "22362198", "from_user_name": "Felipe M. Aragon", "geo": null, "id": 148767157528969200, "id_str": "148767157528969216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1096112377/felipe_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1096112377/felipe_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @Trust_IT: Full Disclosure: Syhunt: Time-Based Blind NoSQL Injection http://t.co/f32DLj5b", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:06:46 +0000", "from_user": "mynosql_popescu", "from_user_id": 197901055, "from_user_id_str": "197901055", "from_user_name": "myNoSQL", "geo": null, "id": 148766222505357300, "id_str": "148766222505357312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS): Jeff Darcy has written a while back about ... http://t.co/SxyjClsq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:05:02 +0000", "from_user": "ttagit2", "from_user_id": 405446692, "from_user_id_str": "405446692", "from_user_name": "ttagit", "geo": null, "id": 148765788357136400, "id_str": "148765788357136386", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1667465890/Tumblr_lndioiz7js1qijsuuo1_500_large_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667465890/Tumblr_lndioiz7js1qijsuuo1_500_large_normal.jpeg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "The dark side of NoSQL http://t.co/yNWrlp90 via @codemonkeyism", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:56:07 +0000", "from_user": "mattnowina", "from_user_id": 103869545, "from_user_id_str": "103869545", "from_user_name": "Matt Nowina", "geo": null, "id": 148763544484184060, "id_str": "148763544484184065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1310193735/eightbit-9aa6f9af-a52d-4215-97f5-8ae5720906f1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1310193735/eightbit-9aa6f9af-a52d-4215-97f5-8ae5720906f1_normal.png", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "Cassandra, Zookeeper, Scribe, and Node.js Powering Rackspace Cloud Monitoring http://t.co/XXyYE3qo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:55:02 +0000", "from_user": "scroogy_choi", "from_user_id": 86291811, "from_user_id_str": "86291811", "from_user_name": "\\uCD5C\\uC601\\uBAA9", "geo": null, "id": 148763269912473600, "id_str": "148763269912473600", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1251201717/myPicture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1251201717/myPicture_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"Domain modeling with Spring Data Neo4j (code)\" http://t.co/lrgRuPxZ #Neo4j #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:51:00 +0000", "from_user": "Tarwn", "from_user_id": 656993, "from_user_id_str": "656993", "from_user_name": "Eli Weinstock-Herman", "geo": null, "id": 148762257520738300, "id_str": "148762257520738304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1512906051/Pic_MeanDL_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1512906051/Pic_MeanDL_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Twitter makes a great case for distributed NoSQL db's. Well, as long as you don't want the data back. #TwitterSearch #ArghChaos", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:48:26 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 148761609840492540, "id_str": "148761609840492544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @Nicollemip: mindstorms: NoSQL: Attacking NoSQL and Node.js: Server-Side JavaScript _Injection_ (SSJS) http://t.co/669ojHHz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:48:24 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148761601426722800, "id_str": "148761601426722816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "mindstorms: NoSQL: Attacking NoSQL and Node.js: Server-Side JavaScript _Injection_ (SSJS) http://t.co/Xtq3qFTq http://t.co/WQGvSBgC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:41:11 +0000", "from_user": "neo4j", "from_user_id": 22467617, "from_user_id_str": "22467617", "from_user_name": "Neo4j", "geo": null, "id": 148759787490910200, "id_str": "148759787490910208", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/195275920/square-logo-no-text-2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/195275920/square-logo-no-text-2_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"Domain modeling with Spring Data Neo4j (code)\" http://t.co/lrgRuPxZ #Neo4j #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:41:11 +0000", "from_user": "Nicollemip", "from_user_id": 386032728, "from_user_id_str": "386032728", "from_user_name": "Nicolle Place", "geo": null, "id": 148759786014519300, "id_str": "148759786014519296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1575428783/pr3lnd55oe_133437437-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575428783/pr3lnd55oe_133437437-2_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "mindstorms: NoSQL: Attacking NoSQL and Node.js: Server-Side JavaScript _Injection_ (SSJS) http://t.co/669ojHHz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:40:38 +0000", "from_user": "NetCleaner1", "from_user_id": 345353778, "from_user_id_str": "345353778", "from_user_name": "Net Cleaner", "geo": null, "id": 148759646956560400, "id_str": "148759646956560385", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1469554927/images__2__normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1469554927/images__2__normal.jpeg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Syhunt: Time-Based Blind NoSQL Injection http://t.co/lkhEdIoD #netcleaner", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:39:00 +0000", "from_user": "alltop_java", "from_user_id": 191999280, "from_user_id_str": "191999280", "from_user_name": "Alltop Java", "geo": null, "id": 148759238754308100, "id_str": "148759238754308097", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1128524576/IloveAlltop_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1128524576/IloveAlltop_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL: Cassandra, Zookeeper, Scribe, and Node.js Powering Rackspace Cloud Monitoring http://t.co/ebVV4oFx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:28:17 +0000", "from_user": "me_bx", "from_user_id": 357548180, "from_user_id_str": "357548180", "from_user_name": "Mehdi El Fadil", "geo": null, "id": 148756541254795260, "id_str": "148756541254795264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1627782844/photo_-_identite_-_square_-_300_x_300_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627782844/photo_-_identite_-_square_-_300_x_300_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @al3xandru: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/wfLe2z5q #NoSQLdatabase #Node.js...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:27:29 +0000", "from_user": "dieswaytoofast", "from_user_id": 312604736, "from_user_id_str": "312604736", "from_user_name": "Mahesh P-Subramanya", "geo": null, "id": 148756339768819700, "id_str": "148756339768819712", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1572400317/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572400317/Untitled_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @al3xandru: Cassandra, Zookeeper, Scribe, and Node.js Powering Rackspace Cloud Monitoring http://t.co/7Le3jHZR #Cassandra #Zookeeper", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:15:54 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 148753421883809800, "id_str": "148753421883809792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "No love/hat tip from @matkeep for my lead on the MySQL Cluster usage for Hadoop NodeName http://t.co/dhcpeEUA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:13:00 +0000", "from_user": "murRZilla", "from_user_id": 86591593, "from_user_id_str": "86591593", "from_user_name": "Mureri Zilla", "geo": null, "id": 148752694612459520, "id_str": "148752694612459520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691155961/haters_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691155961/haters_normal.gif", "source": "<a href="http://www.writelonger.com" rel="nofollow">Write Longer</a>", "text": "this-->RT @samkariu: A NoSQL database walks into a bar,but leaves immediately because he can't find any tables #programmingjokes #ineedalife", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:12:04 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 148752459781767170, "id_str": "148752459781767168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "MongoDB in Scala Using Casbah and Salat Object Document Mapping http://t.co/CLRK46TY #MongoDB #Scala #Casbah #Scalat #ODM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:11:42 +0000", "from_user": "tuomassalo", "from_user_id": 436140595, "from_user_id_str": "436140595", "from_user_name": "Tuomas Salo", "geo": null, "id": 148752367947481100, "id_str": "148752367947481088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691672814/Screen_shot_2011-12-13_at_23.51.52_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691672814/Screen_shot_2011-12-13_at_23.51.52_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Some interesting NoSQL experiences from Wordnik, Foursquare, Disney. \"NoSQL\\u2019s great, but bring your A\\u00A0game\" http://t.co/4rKrvT8S", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:10:53 +0000", "from_user": "klittle212", "from_user_id": 15635707, "from_user_id_str": "15635707", "from_user_name": "Ken Little", "geo": null, "id": 148752162606940160, "id_str": "148752162606940160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/57564486/Cropped-42282471_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/57564486/Cropped-42282471_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "myNoSQL: Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) - nosql: http://t.co/erqIntHx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:07:28 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 148751302942408700, "id_str": "148751302942408706", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "Cassandra, Zookeeper, Scribe, and Node.js Powering Rackspace Cloud Monitoring http://t.co/YFyNfrm7 #Cassandra #Zookeeper #Scribe #Node.js", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:07:25 +0000", "from_user": "matmosfera", "from_user_id": 26480445, "from_user_id_str": "26480445", "from_user_name": "Mervin Atmosfera", "geo": null, "id": 148751287264083970, "id_str": "148751287264083968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675553669/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675553669/image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/n6woehg2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:05:45 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 148750869901475840, "id_str": "148750869901475840", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "Neo4j and Spring Data for Configuration Management Database http://t.co/inxF9jj8 #Neo4j #SpringData #PoweredbyNoSQL #Skybase", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:02:53 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 148750149630435330, "id_str": "148750149630435328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "Attacking NoSQL and Node.js: Server-Side JavaScript Injection (SSJS) http://t.co/gBf90Zzo #NoSQLdatabase #Node.js #JavaScript #security", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:49:33 +0000", "from_user": "wernerkeil", "from_user_id": 50013926, "from_user_id_str": "50013926", "from_user_name": "Werner Keil", "geo": null, "id": 148746793348370430, "id_str": "148746793348370433", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1239138414/werner_Keil_2s_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1239138414/werner_Keil_2s_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"Domain modeling with Spring Data Neo4j (code)\" http://t.co/lrgRuPxZ #Neo4j #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:42:23 +0000", "from_user": "DZone", "from_user_id": 14782935, "from_user_id_str": "14782935", "from_user_name": "DZone", "geo": null, "id": 148744988870713340, "id_str": "148744988870713344", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/258714549/dzone-square-256_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/258714549/dzone-square-256_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\"Domain modeling with Spring Data Neo4j (code)\" http://t.co/lrgRuPxZ #Neo4j #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:26:43 +0000", "from_user": "yaymixer", "from_user_id": 263546351, "from_user_id_str": "263546351", "from_user_name": "yaymixer", "geo": null, "id": 148741044731785200, "id_str": "148741044731785216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1281882448/the_alhambra6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1281882448/the_alhambra6_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/sFGCrym7 JSR 107, JSR 347, Infinispan, NoSQL, Hot Rod, Memcached, CDI and Beyond - http://t.co/U8fIlHBO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:21:11 +0000", "from_user": "wernerkeil", "from_user_id": 50013926, "from_user_id_str": "50013926", "from_user_name": "Werner Keil", "geo": null, "id": 148739651727929340, "id_str": "148739651727929344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1239138414/werner_Keil_2s_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1239138414/werner_Keil_2s_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"Neo4j and GWT Based Social News Feed Demo on Wikipedia Graph Running\" http://t.co/NT7vcWvl #Java #Neo4j #GWT #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:20:54 +0000", "from_user": "csskarma", "from_user_id": 6997692, "from_user_id_str": "6997692", "from_user_name": "Tim Wright", "geo": null, "id": 148739582148624400, "id_str": "148739582148624386", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/92272281/tim-devils_punchbowl_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/92272281/tim-devils_punchbowl_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "Reading > You thought SQL injection was bad? Schema injection coming to a NoSQL site near you http://t.co/TFLZcVNP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:20:40 +0000", "from_user": "DZone", "from_user_id": 14782935, "from_user_id_str": "14782935", "from_user_name": "DZone", "geo": null, "id": 148739522274934800, "id_str": "148739522274934784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/258714549/dzone-square-256_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/258714549/dzone-square-256_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\"Neo4j and GWT Based Social News Feed Demo on Wikipedia Graph Running\" http://t.co/NT7vcWvl #Java #Neo4j #GWT #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:17:03 +0000", "from_user": "daschl", "from_user_id": 15881666, "from_user_id_str": "15881666", "from_user_name": "Michael Nitschinger", "geo": null, "id": 148738612031266800, "id_str": "148738612031266816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1170862042/photo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1170862042/photo_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@joedevon http://t.co/V30Aftlc good news? bad news? anyway #li3 in the news ;)", "to_user": "joedevon", "to_user_id": 21734113, "to_user_id_str": "21734113", "to_user_name": "Joe Devon \\u00AE"}, +{"created_at": "Mon, 19 Dec 2011 12:13:15 +0000", "from_user": "inyongwebid", "from_user_id": 324485660, "from_user_id_str": "324485660", "from_user_name": "Rachmat Hafidz", "geo": null, "id": 148737656703033340, "id_str": "148737656703033345", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1414298797/69073_152688678101738_100000818204398_223238_3422382_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1414298797/69073_152688678101738_100000818204398_223238_3422382_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Opo iku..?mbuh ra dong :D \"@adzymaniac: Cassandra vs MongoDB vs CouchDB vs Redis vs Riak vs HBase vs Membase vs Neo4j #NoSQL\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:10:21 +0000", "from_user": "ansonism", "from_user_id": 16527878, "from_user_id_str": "16527878", "from_user_name": "Anson Abraham", "geo": null, "id": 148736926537621500, "id_str": "148736926537621504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1583892138/Charactucture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583892138/Charactucture_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "NoSQL's great, but bring your A game http://t.co/FzogW44C", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:53:17 +0000", "from_user": "melihbirim", "from_user_id": 20923032, "from_user_id_str": "20923032", "from_user_name": "Melih Birim", "geo": null, "id": 148732633575194620, "id_str": "148732633575194624", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/772053658/snoopy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/772053658/snoopy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#NoSQL \\u00FCzerine \\u00E7al\\u0131\\u015Facak #Java bilen elemanlar ar\\u0131yoruz, ilgilenenler, arkada\\u015F\\u0131 i\\u015F arayanlar bana ula\\u015F\\u0131rlarsa sevinirim.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:51:31 +0000", "from_user": "melihbirim", "from_user_id": 20923032, "from_user_id_str": "20923032", "from_user_name": "Melih Birim", "geo": null, "id": 148732189075447800, "id_str": "148732189075447809", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/772053658/snoopy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/772053658/snoopy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "looking for developers to work on #java and #nosql.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:51:16 +0000", "from_user": "lukasafonov", "from_user_id": 418544298, "from_user_id_str": "418544298", "from_user_name": "Luka Safonov", "geo": null, "id": 148732123535249400, "id_str": "148732123535249408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1664063198/fuckyeah_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664063198/fuckyeah_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @d0znpp: Time-Based Blind NoSQL Injection http://t.co/GxlYsgav by Felipe Aragon", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:42:04 +0000", "from_user": "adsbringcust", "from_user_id": 80654241, "from_user_id_str": "80654241", "from_user_name": "david morgan", "geo": +{"coordinates": [33.982,-118.2365], "type": "Point"}, "id": 148729807625142270, "id_str": "148729807625142272", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/548706886/cj_-_Copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/548706886/cj_-_Copy_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "\\u270D US [contract] MySQL/NoSQL Data Administrator at http://t.co/n1qjBmAv \\u2714 #jobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:42:04 +0000", "from_user": "contractjob", "from_user_id": 93242849, "from_user_id_str": "93242849", "from_user_name": "david morgan", "geo": +{"coordinates": [33.982,-118.2365], "type": "Point"}, "id": 148729807553826800, "id_str": "148729807553826816", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/548511035/cj_-_Copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/548511035/cj_-_Copy_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "\\u270D US [contract] MySQL/NoSQL Data Administrator at http://t.co/Es6Olr6G \\u2714 #jobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:37:45 +0000", "from_user": "jacksonicson", "from_user_id": 14192906, "from_user_id_str": "14192906", "from_user_name": "Andreas Wolke", "geo": null, "id": 148728721556250620, "id_str": "148728721556250624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1164222240/50732250_N00_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1164222240/50732250_N00_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @styggiti: The problem with companies like IBM and Oracle baking NoSQL \"scalability\" into their products isn't the tech, it's the $$$ licensing.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:27:29 +0000", "from_user": "mmwesh21", "from_user_id": 271337937, "from_user_id_str": "271337937", "from_user_name": "Mary Mueni", "geo": null, "id": 148726137961451520, "id_str": "148726137961451520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1605709763/tw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1605709763/tw_normal.jpg", "source": "<a href="http://www.writelonger.com" rel="nofollow">Write Longer</a>", "text": "OhMyGod umebeat! RT @samkariu: A NoSQL database walks into a bar,but leaves immediately because he can't (cont) http://t.co/nHBrXqlp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:25:15 +0000", "from_user": "ronald131313", "from_user_id": 61864464, "from_user_id_str": "61864464", "from_user_name": "Ronald van Schaik", "geo": null, "id": 148725577199779840, "id_str": "148725577199779840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1172269627/SL380188_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1172269627/SL380188_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Hi nodes! Smth about queries, but not as you know them http://t.co/1hLm5Lqb #tocutashortstorylong #network #nosql #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:18:19 +0000", "from_user": "ajfeed", "from_user_id": 260762269, "from_user_id_str": "260762269", "from_user_name": "Ajinkya Feed", "geo": null, "id": 148723832637755400, "id_str": "148723832637755392", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "CompSci Cassandra, Zookeeper, Scribe, and Node.js Powering Rackspace Cloud Monitoring: Cassandra, Zookeeper, Scr... http://t.co/3JfdX71t", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:15:08 +0000", "from_user": "johtani", "from_user_id": 22106285, "from_user_id_str": "22106285", "from_user_name": "Jun Ohtani", "geo": null, "id": 148723031714435070, "id_str": "148723031714435072", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1124999827/1618939_92420970_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1124999827/1618939_92420970_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "#solrjp @hirotakaster: lucene 4.0\\u306E\\u304A\\u306F\\u306A\\u3057\\u3002\\u3053\\u3053\\u3089\\u8FBA\\u3068\\u304B\\u304B\\u306A\\u301C\\u3002 http://t.co/2jfXLK23\\n\\u300C\\u307E\\u305F Solr \\u306F\\uFF0C\\u5148\\u9032\\u7684\\u306A\\u5206\\u6563\\u30A4\\u30F3\\u30C7\\u30C3\\u30AF\\u30B9\\u6A5F\\u80FD\\u3092\\u6301\\u3064\\u3053\\u3068\\u3067\\uFF0CNoSQL \\u30C7\\u30FC\\u30BF\\u30B9\\u30C8\\u30A2\\u306B\\u5909\\u5BB9\\u3057\\u3064\\u3064\\u3042\\u308A\\u307E\\u3059\\u3002\\u300D\\u3068\\u304B\\u671F\\u5F85\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:14:36 +0000", "from_user": "samkariu", "from_user_id": 35271650, "from_user_id_str": "35271650", "from_user_name": "Sam Kariu", "geo": null, "id": 148722898411065340, "id_str": "148722898411065345", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1295717092/Photo0031_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1295717092/Photo0031_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "A NoSQL database walks into a bar,but leaves immediately because he can't find any tables #programmingjokes #ineedalife", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:14:29 +0000", "from_user": "hirotakaster", "from_user_id": 6160482, "from_user_id_str": "6160482", "from_user_name": "Hirotaka Niisato", "geo": null, "id": 148722867457097730, "id_str": "148722867457097728", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/255402187/fd6b1b8f5fbe55a836b7d91cd467e0c7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/255402187/fd6b1b8f5fbe55a836b7d91cd467e0c7_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "lucene 4.0\\u306E\\u304A\\u306F\\u306A\\u3057\\u3002\\u3053\\u3053\\u3089\\u8FBA\\u3068\\u304B\\u304B\\u306A\\u301C\\u3002 http://t.co/Dvrg2GoU\\n\\u300C\\u307E\\u305F Solr \\u306F\\uFF0C\\u5148\\u9032\\u7684\\u306A\\u5206\\u6563\\u30A4\\u30F3\\u30C7\\u30C3\\u30AF\\u30B9\\u6A5F\\u80FD\\u3092\\u6301\\u3064\\u3053\\u3068\\u3067\\uFF0CNoSQL \\u30C7\\u30FC\\u30BF\\u30B9\\u30C8\\u30A2\\u306B\\u5909\\u5BB9\\u3057\\u3064\\u3064\\u3042\\u308A\\u307E\\u3059\\u3002\\u300D\\u3068\\u304B\\u671F\\u5F85\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:12:37 +0000", "from_user": "somkiat", "from_user_id": 14053735, "from_user_id_str": "14053735", "from_user_name": "UP1", "geo": null, "id": 148722398345170940, "id_str": "148722398345170944", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/925551910/4db95ccd-33db-4d03-be01-292013d5abdb_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/925551910/4db95ccd-33db-4d03-be01-292013d5abdb_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "NoSQL Benchmarking http://t.co/73FQVnF1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:12:02 +0000", "from_user": "amorgaut", "from_user_id": 17018913, "from_user_id_str": "17018913", "from_user_name": "Alexandre Morgaut", "geo": null, "id": 148722253218066430, "id_str": "148722253218066432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1386942812/Photo_on_2011-06-08_at_12.11__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1386942812/Photo_on_2011-06-08_at_12.11__2_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "NoSQL, Server-Side JavaScript, Ajax, CSS3... All I love in one platform ;-) http://t.co/kdeKeTrd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:07:40 +0000", "from_user": "alex_knorr", "from_user_id": 70223223, "from_user_id_str": "70223223", "from_user_name": "alexander_knorr", "geo": null, "id": 148721150661369860, "id_str": "148721150661369857", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/485631635/mypictr_140x185_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/485631635/mypictr_140x185_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Java Engineer - Java, Map/Reduce, Spring, MySQL, Hadoop, NoSQL - monster: CA-San Francisco, CyberCoders - Be Sel... http://t.co/7mLruBJ6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:05:49 +0000", "from_user": "andriebamz", "from_user_id": 46189314, "from_user_id_str": "46189314", "from_user_name": "Bambang Andrie G", "geo": null, "id": 148720688428101630, "id_str": "148720688428101632", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687513201/gitar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687513201/gitar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @adzymaniac: Cassandra vs MongoDB vs CouchDB vs Redis vs Riak vs HBase vs Membase vs Neo4j #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:04:13 +0000", "from_user": "adzymaniac", "from_user_id": 80246884, "from_user_id_str": "80246884", "from_user_name": "Aji Kisworo Mukti", "geo": null, "id": 148720283665170430, "id_str": "148720283665170432", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1599098532/20768_1286042198610_1456819387_30792496_8162696_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599098532/20768_1286042198610_1456819387_30792496_8162696_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Cassandra vs MongoDB vs CouchDB vs Redis vs Riak vs HBase vs Membase vs Neo4j #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:02:25 +0000", "from_user": "mynosql_popescu", "from_user_id": 197901055, "from_user_id_str": "197901055", "from_user_name": "myNoSQL", "geo": null, "id": 148719831741513730, "id_str": "148719831741513728", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cassandra, Zookeeper, Scribe, and Node.js Powering Rackspace Cloud Monitoring: Cassandra, Zookeeper, Scribe, and... http://t.co/XZXenQjE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:01:24 +0000", "from_user": "KiteVC", "from_user_id": 1121181, "from_user_id_str": "1121181", "from_user_name": "Bill Tai", "geo": null, "id": 148719574072832000, "id_str": "148719574072832000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/296672253/twitter_avatar_btai_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/296672253/twitter_avatar_btai_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @satolone: Real-Time Log Collection with Fluentd and MongoDB. #nosql http://t.co/XO1fl8LQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:56:53 +0000", "from_user": "blackthorne", "from_user_id": 9874712, "from_user_id_str": "9874712", "from_user_name": "Francisco Gama T. R.", "geo": null, "id": 148718438934786050, "id_str": "148718438934786049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/286408472/owl_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/286408472/owl_normal.jpeg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @opexxx: Syhunt: Time-Based Blind NoSQL Injection http://t.co/SJn9qucL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:47:27 +0000", "from_user": "ajfeed", "from_user_id": 260762269, "from_user_id_str": "260762269", "from_user_name": "Ajinkya Feed", "geo": null, "id": 148716064350535680, "id_str": "148716064350535680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "CompSci MongoDB in Scala Using Casbah and Salat Object Document Mapping: MongoDB in Scala Using Casbah and Salat... http://t.co/Wv3hxARD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:28:09 +0000", "from_user": "mynosql_popescu", "from_user_id": 197901055, "from_user_id_str": "197901055", "from_user_name": "myNoSQL", "geo": null, "id": 148711205706539000, "id_str": "148711205706539008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "MongoDB in Scala Using Casbah and Salat Object Document Mapping: MongoDB in Scala Using Casbah and Salat Object ... http://t.co/IHJQU1pa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:27:21 +0000", "from_user": "pureflight", "from_user_id": 108616181, "from_user_id_str": "108616181", "from_user_name": "\\uD604\\uCCA0\\uBBFC", "geo": null, "id": 148711008381304830, "id_str": "148711008381304832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1179714913/70532_100001659583329_194372_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1179714913/70532_100001659583329_194372_q_normal.jpg", "source": "<a href="http://www.alphonsolabs.com/" rel="nofollow">Pulse News</a>", "text": "Nati Shalom's Blog: 2012 Cloud, PaaS, NoSQL Predictions http://t.co/1UsvumDt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:24:32 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 148710296645681150, "id_str": "148710296645681152", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL Screencast HBase Schema Design \\u2022 myNoSQL http://t.co/BqsfUNQp #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:22:25 +0000", "from_user": "kpy3", "from_user_id": 52630563, "from_user_id_str": "52630563", "from_user_name": "Sergey Yelin", "geo": null, "id": 148709763025338370, "id_str": "148709763025338369", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1031761848/syelin_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1031761848/syelin_normal.jpeg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @izs: Every sufficiently complicated NoSQL client program contains an ad-hoc, informally specified, bug-ridden, slow implementation of half of SQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:21:03 +0000", "from_user": "Zavidan", "from_user_id": 114202957, "from_user_id_str": "114202957", "from_user_name": "Zavidan", "geo": null, "id": 148709422653386750, "id_str": "148709422653386753", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1533050126/photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1533050126/photo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @d0znpp: Time-Based Blind NoSQL Injection http://t.co/GxlYsgav by Felipe Aragon", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:15:23 +0000", "from_user": "emedinam", "from_user_id": 14658093, "from_user_id_str": "14658093", "from_user_name": "emedinam", "geo": null, "id": 148707996074131460, "id_str": "148707996074131456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/504587573/careto_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/504587573/careto_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Auction and Bidding Applications with Document-Based NoSQL | .NET Zone: http://t.co/UBUl83wD via @AddThis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:08:28 +0000", "from_user": "lukkas35", "from_user_id": 109898948, "from_user_id_str": "109898948", "from_user_name": "lukkas magikk", "geo": null, "id": 148706255962247170, "id_str": "148706255962247169", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1165481660/Ficelle_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1165481660/Ficelle_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @lecolibrilibre: RT @sraymond38: #cassandra : explication de son fonctionnement http://t.co/4AufWt2Z #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:07:29 +0000", "from_user": "lecolibrilibre", "from_user_id": 131956085, "from_user_id_str": "131956085", "from_user_name": "dhoko", "geo": null, "id": 148706006204022800, "id_str": "148706006204022784", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1377814405/250dhokoJUNE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1377814405/250dhokoJUNE_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @sraymond38: #cassandra : explication de son fonctionnement http://t.co/4AufWt2Z #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:04:09 +0000", "from_user": "philjones88", "from_user_id": 72888516, "from_user_id_str": "72888516", "from_user_name": "Phil Jones", "geo": null, "id": 148705167209021440, "id_str": "148705167209021440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1599161702/20111021_094600_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599161702/20111021_094600_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @RavenDB: New video: Polymorphism and #RavenDB http://t.co/qKb84X1B #nosql #dotnet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:00:13 +0000", "from_user": "markwigmans", "from_user_id": 7527532, "from_user_id_str": "7527532", "from_user_name": "Mark Wigmans", "geo": null, "id": 148704178221482000, "id_str": "148704178221481985", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/837273831/MWI_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/837273831/MWI_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "RT @emadgeorgy: RT @dabuki: #NOSQL Patterns http://t.co/7ubvpOM4 via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:59:07 +0000", "from_user": "radekhub", "from_user_id": 378507528, "from_user_id_str": "378507528", "from_user_name": "Radek Hubner", "geo": null, "id": 148703901410013200, "id_str": "148703901410013184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1597693121/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1597693121/profile_normal.jpg", "source": "<a href="http://twitter.com" rel="nofollow">Tweetie for Mac</a>", "text": "RT @_dagi: Pondelni #czjug Lightning Talks rozdeleny do techto tracku: NoSQL/High scalability, REST/Web, Java a Tools http://t.co/vvrzzuq8 prosim RT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:55:15 +0000", "from_user": "soaj1664ashar", "from_user_id": 277735240, "from_user_id_str": "277735240", "from_user_name": "Ashar Javed", "geo": null, "id": 148702928444719100, "id_str": "148702928444719104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1301332153/ashar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1301332153/ashar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @d0znpp: Time-Based Blind NoSQL Injection http://t.co/GxlYsgav by Felipe Aragon", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:49:50 +0000", "from_user": "ucq", "from_user_id": 14949468, "from_user_id_str": "14949468", "from_user_name": "\\u52C7\\u58EBQ", "geo": null, "id": 148701564507402240, "id_str": "148701564507402240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1203331429/ucq2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1203331429/ucq2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @d0znpp: Time-Based Blind NoSQL Injection http://t.co/GxlYsgav by Felipe Aragon", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:49:27 +0000", "from_user": "tuchihan", "from_user_id": 167727325, "from_user_id_str": "167727325", "from_user_name": "tuchihan", "geo": null, "id": 148701470148141060, "id_str": "148701470148141056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1280330236/img_0262_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1280330236/img_0262_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @d0znpp: Time-Based Blind NoSQL Injection http://t.co/GxlYsgav by Felipe Aragon", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:40:14 +0000", "from_user": "stevestarges", "from_user_id": 216655995, "from_user_id_str": "216655995", "from_user_name": "Steve Starges", "geo": null, "id": 148699148948996100, "id_str": "148699148948996096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1498209216/275px-Manga_in_Jp.svg_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1498209216/275px-Manga_in_Jp.svg_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Search Analytics: Business Value & BigData NoSQL Backend: Search is increasingly the primary information access ... http://t.co/TbKHtpOE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:36:42 +0000", "from_user": "mbenlakhoua", "from_user_id": 20861609, "from_user_id_str": "20861609", "from_user_name": "Mourad Ben Lakhoua", "geo": null, "id": 148698260415066100, "id_str": "148698260415066112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662683223/IMG_0043_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662683223/IMG_0043_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @d0znpp: Time-Based Blind NoSQL Injection http://t.co/GxlYsgav by Felipe Aragon", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:35:54 +0000", "from_user": "d0znpp", "from_user_id": 136229524, "from_user_id_str": "136229524", "from_user_name": "Vladimir Vorontsov", "geo": null, "id": 148698059386265600, "id_str": "148698059386265600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1158251605/vasbl_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1158251605/vasbl_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Time-Based Blind NoSQL Injection http://t.co/GxlYsgav by Felipe Aragon", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:21:57 +0000", "from_user": "creativesuk", "from_user_id": 247378564, "from_user_id_str": "247378564", "from_user_name": "creativesonline.com", "geo": null, "id": 148694546136563700, "id_str": "148694546136563712", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1392454092/lkdnimage01_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1392454092/lkdnimage01_normal.png", "source": "<a href="http://www.creativesonline.com" rel="nofollow">Creativesonline</a>", "text": "nocompany: MySQL/NoSQL Data Administrator (Sunnyvale, California) http://t.co/26auBsxl\\n #Jobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:16:52 +0000", "from_user": "Driadan", "from_user_id": 69888556, "from_user_id_str": "69888556", "from_user_name": "Guillermo Vay\\u00E1", "geo": null, "id": 148693269059088400, "id_str": "148693269059088384", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/387935026/bomb_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/387935026/bomb_normal.png", "source": "<a href="http://code.google.com/p/qwit/" rel="nofollow">Qwit</a>", "text": "dia y pico leyendo sobre NoSQL y aun no se si me merece la pena el cambio => probablemente no", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:07:09 +0000", "from_user": "ReaktorNow", "from_user_id": 280949688, "from_user_id_str": "280949688", "from_user_name": "Reaktor", "geo": null, "id": 148690822647382000, "id_str": "148690822647382016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1609101118/reaktor_logo_big_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609101118/reaktor_logo_big_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/G2OASX3A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:58:11 +0000", "from_user": "kbucek", "from_user_id": 16308531, "from_user_id_str": "16308531", "from_user_name": "Karol Bucek", "geo": null, "id": 148688564828385280, "id_str": "148688564828385280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1185709496/boc_sqd_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1185709496/boc_sqd_small_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "my twitter interactions are incomplete, my github activity is missing an action or two ... guess this is what you'll get in the NoSQL world", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:42:10 +0000", "from_user": "adesousa", "from_user_id": 21821336, "from_user_id_str": "21821336", "from_user_name": "Antonio de Sousa", "geo": null, "id": 148684536304246800, "id_str": "148684536304246785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1286911782/Nobody_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1286911782/Nobody_normal.gif", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Auction and Bidding Applications with Document-Based NoSQL http://t.co/MRboxqme v\\u00EDa @dzone", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:40:55 +0000", "from_user": "adesousa", "from_user_id": 21821336, "from_user_id_str": "21821336", "from_user_name": "Antonio de Sousa", "geo": null, "id": 148684222327037950, "id_str": "148684222327037952", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1286911782/Nobody_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1286911782/Nobody_normal.gif", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Search Analytics: Business Value & BigData NoSQL Backend http://t.co/dtvMaQB5 v\\u00EDa @dzone", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:36:01 +0000", "from_user": "norman0818", "from_user_id": 248284796, "from_user_id_str": "248284796", "from_user_name": "Norman Chen", "geo": null, "id": 148682986760581120, "id_str": "148682986760581120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1236656213/41526_100000049291290_4387_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1236656213/41526_100000049291290_4387_q_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "The Hard Life Of A NoSQL Coder http://t.co/gMLwp3TK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:35:44 +0000", "from_user": "EldarSilver", "from_user_id": 240722531, "from_user_id_str": "240722531", "from_user_name": "Eldar", "geo": null, "id": 148682916082360320, "id_str": "148682916082360320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1228439341/20100804_011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1228439341/20100804_011_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @1nf0s3cpt: Syhunt: Time-Based Blind NoSQL Injection http://t.co/qDJ2bAR9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:24:37 +0000", "from_user": "BusinessAr", "from_user_id": 116773657, "from_user_id_str": "116773657", "from_user_name": "Business Articles", "geo": null, "id": 148680120717148160, "id_str": "148680120717148160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/713772241/writing_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/713772241/writing_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Search Analytics: Business Value & BigData NoSQL Backend http://t.co/5VFnPNvm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:20:13 +0000", "from_user": "adesousa", "from_user_id": 21821336, "from_user_id_str": "21821336", "from_user_name": "Antonio de Sousa", "geo": null, "id": 148679011491516400, "id_str": "148679011491516417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1286911782/Nobody_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1286911782/Nobody_normal.gif", "source": "<a href="http://tweetmeme.com" rel="nofollow">TweetMeme</a>", "text": "Nati Shalom's Blog: 2012 Cloud, PaaS, NoSQL Predictions http://t.co/Pi0GGe3J", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:01:02 +0000", "from_user": "jinnli", "from_user_id": 18330621, "from_user_id_str": "18330621", "from_user_name": "\\u01C7", "geo": null, "id": 148674184707457020, "id_str": "148674184707457024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1579601171/_______normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1579601171/_______normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Search Analytics: Business Value & BigData NoSQL Backend http://t.co/TI61bJgc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:01:01 +0000", "from_user": "icodenow", "from_user_id": 366706300, "from_user_id_str": "366706300", "from_user_name": "CODE IT", "geo": null, "id": 148674182081814530, "id_str": "148674182081814528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Search Analytics: Business Value & BigData NoSQL Backend: Search is increasingly the primary information... http://t.co/VPsmV1mJ #4geeks", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:59:51 +0000", "from_user": "mahdi", "from_user_id": 718993, "from_user_id_str": "718993", "from_user_name": "Mahdi Taghizadeh", "geo": null, "id": 148673887310323700, "id_str": "148673887310323712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697108280/violet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697108280/violet_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "Search Analytics: Business Value & BigData NoSQL Backend. http://t.co/MVJirEum #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:59:51 +0000", "from_user": "KaiWaehner", "from_user_id": 207673942, "from_user_id_str": "207673942", "from_user_name": "Kai W\\u00E4hner", "geo": null, "id": 148673885485793280, "id_str": "148673885485793280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1152411806/70768_702410504_6783159_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1152411806/70768_702410504_6783159_q_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Kingwulf: Apache Gora community has voted to graduate from incubator: http://t.co/JgOUbsKd #gora #nosql #orm #asf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:59:02 +0000", "from_user": "dev_links", "from_user_id": 309995604, "from_user_id_str": "309995604", "from_user_name": "Joe Fawzy", "geo": null, "id": 148673682385014800, "id_str": "148673682385014784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Search Analytics: Business Value & BigData NoSQL Backend http://t.co/Z9HJFd5R", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:57:34 +0000", "from_user": "godofthenetwork", "from_user_id": 427834340, "from_user_id_str": "427834340", "from_user_name": "Carlos Navarrete", "geo": null, "id": 148673313684729860, "id_str": "148673313684729856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Search Analytics: Business Value & BigData NoSQL Backend: Search is increasingly the primary information access ... http://t.co/OMfE3ZVW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:56:30 +0000", "from_user": "couchbase", "from_user_id": 237401623, "from_user_id_str": "237401623", "from_user_name": "Couchbase", "geo": null, "id": 148673044481720320, "id_str": "148673044481720320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1335620360/couchbase_couch_red_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335620360/couchbase_couch_red_twitter_normal.png", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "Great intro by Sharon, now Frank talking 2.0 - #CouchConf Israel has begun! #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:47:27 +0000", "from_user": "arichika", "from_user_id": 7707772, "from_user_id_str": "7707772", "from_user_name": "\\u8C37\\u53E3\\u6709\\u8FD1/\\u305F\\u306B\\u3050\\u3061\\u3042\\u308A\\u3061\\u304B", "geo": null, "id": 148670765770878980, "id_str": "148670765770878978", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1505137198/mussa4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505137198/mussa4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "SQL Azure (RDBMS) vs Azure Table (NoSQL) \\u306E\\u8996\\u70B9\\u3067\\u306E\\u697D\\u3057\\u3044\\u8A71\\u984C #azurecsv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:38:37 +0000", "from_user": "alak86", "from_user_id": 47793024, "from_user_id_str": "47793024", "from_user_name": "Alak Awesome", "geo": null, "id": 148668543532150800, "id_str": "148668543532150784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1151244551/41619_1265676292_5318_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1151244551/41619_1265676292_5318_q_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "*Should* be interesting: Time-Based Blind NoSQL Injection http://t.co/1yQIjLgH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:30:41 +0000", "from_user": "keoko", "from_user_id": 6192952, "from_user_id_str": "6192952", "from_user_name": "natxo cabr\\u00E9", "geo": null, "id": 148666544900157440, "id_str": "148666544900157440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/690250910/avatarnatxopeke_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/690250910/avatarnatxopeke_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @old_sound: RabbitMQ in Action is a book for hipsters. See this excerpt: \"Mnesia, the Erlang database that was there even before NoSQL was cool\".", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:29:15 +0000", "from_user": "florentsolt", "from_user_id": 7453512, "from_user_id_str": "7453512", "from_user_name": "Florent Solt", "geo": null, "id": 148666187130220540, "id_str": "148666187130220544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1237644468/5425226663_a228d6f5f6_m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1237644468/5425226663_a228d6f5f6_m_normal.jpg", "source": "Zite Personalized Magazine", "text": "NoSQL's great, but bring your A game http://t.co/rszM8hhU via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:24:32 +0000", "from_user": "markfermor1", "from_user_id": 180757899, "from_user_id_str": "180757899", "from_user_name": "Mark", "geo": null, "id": 148664998502211600, "id_str": "148664998502211584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1175418521/3_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1175418521/3_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Picking the Right NoSQL Database Tool - A good beginners introduction to that thing called NoSQL - http://t.co/bV67zs5o", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:12:34 +0000", "from_user": "GoodmanBryan", "from_user_id": 426722152, "from_user_id_str": "426722152", "from_user_name": "Bryan Goodman ", "geo": null, "id": 148661988535439360, "id_str": "148661988535439360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1669828500/avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669828500/avatar_normal.png", "source": "<a href="http://test.com/twitterapp/" rel="nofollow">Emilys Test App</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/z0qq0LRY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:08:04 +0000", "from_user": "s_kunk", "from_user_id": 34025095, "from_user_id_str": "34025095", "from_user_name": "(\\u25E3(\\u25E3_(\\u25E3_\\u25E2)_\\u25E2)\\u25E2)", "geo": null, "id": 148660855037362180, "id_str": "148660855037362176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1402683690/isee_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1402683690/isee_normal.png", "source": "<a href="http://www.egeektronic.com/" rel="nofollow">eGEEKtronic</a>", "text": "RT @egeektronic: Time-Based Blind NoSQL Injection http://t.co/mN4TsHbB #webappsec", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:04:37 +0000", "from_user": "emadgeorgy", "from_user_id": 231323969, "from_user_id_str": "231323969", "from_user_name": "Emad G.", "geo": null, "id": 148659988708077570, "id_str": "148659988708077568", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1200600558/EG_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1200600558/EG_normal.JPG", "source": "<a href="http://www.osfoora.com" rel="nofollow">Osfoora HD</a>", "text": "RT @dabuki: NOSQL Patterns http://t.co/CmM9zoyF via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:04:04 +0000", "from_user": "kisasondi", "from_user_id": 37629519, "from_user_id_str": "37629519", "from_user_name": "Tonimir Kisasondi", "geo": null, "id": 148659850157629440, "id_str": "148659850157629440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1279503325/ja2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1279503325/ja2_normal.jpg", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "RT @wollepb: NoSQL's great, but bring your A game http://t.co/4tZG5ihI via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:02:49 +0000", "from_user": "braoru", "from_user_id": 391628982, "from_user_id_str": "391628982", "from_user_name": "B", "geo": null, "id": 148659532736905200, "id_str": "148659532736905217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1590032365/dessin_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1590032365/dessin_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @opexxx: Syhunt: Time-Based Blind NoSQL Injection http://t.co/1C0AMtoL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:55:57 +0000", "from_user": "drypot", "from_user_id": 67624477, "from_user_id_str": "67624477", "from_user_name": "\\uBC15\\uADDC\\uD604", "geo": null, "id": 148657803962220540, "id_str": "148657803962220544", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1443294125/harry-potter-1x1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1443294125/harry-potter-1x1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Join \\uAE30\\uB2A5\\uC774 \\uC5C6\\uB294 NoSQL \\uC2DC\\uC2A4\\uD15C\\uC740 \\uC5B4\\uD50C\\uB9AC\\uCF00\\uC774\\uC158 \\uB2E8\\uC5D0 \\uC791\\uC5C5\\uC774 \\uBAB0\\uB9AC\\uAE30 \\uB54C\\uBB38\\uC5D0 \\uB3C4\\uBA54\\uC778 \\uBAA8\\uB378\\uC744 \\uC7A1\\uACE0 \\uAC00\\uB294 \\uBC29\\uC2DD\\uB4E4\\uC774 \\uC885\\uAD6D\\uC5D0\\uB294 \\uB354 \\uC720\\uB9AC\\uD560 \\uC218 \\uC788\\uB2E4. Join \\uC744 \\uC790\\uB3D9\\uC73C\\uB85C \\uD574\\uC904\\uD14C\\uB2C8.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 06:38:44 +0000", "from_user": "escan_sachin", "from_user_id": 270336633, "from_user_id_str": "270336633", "from_user_name": "sachin", "geo": null, "id": 148653471934070800, "id_str": "148653471934070784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @opexxx: Syhunt: Time-Based Blind NoSQL Injection http://t.co/1C0AMtoL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:32:19 +0000", "from_user": "QAJournal", "from_user_id": 268847164, "from_user_id_str": "268847164", "from_user_name": "IT Techy", "geo": null, "id": 148651856523042800, "id_str": "148651856523042816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/KRLrcfIs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:25:46 +0000", "from_user": "fakod", "from_user_id": 36150256, "from_user_id_str": "36150256", "from_user_name": "fakod", "geo": null, "id": 148650207956041730, "id_str": "148650207956041728", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/572535508/ich_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/572535508/ich_normal.jpg", "source": "Zite Personalized Magazine", "text": "RT @dabuki: NOSQL Patterns http://t.co/SfQBseBA via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:18:43 +0000", "from_user": "eldariof", "from_user_id": 192175898, "from_user_id_str": "192175898", "from_user_name": "Eldar Abdrazakov", "geo": null, "id": 148648435732590600, "id_str": "148648435732590592", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1432763188/eldar_abdrazakov_normal.jpe", "profile_image_url_https": "https://si0.twimg.com/profile_images/1432763188/eldar_abdrazakov_normal.jpe", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "RT @kumarshantanu: NoSQL Benchmarking http://t.co/MyAqNTmk /via @CUBRID", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:06:00 +0000", "from_user": "dabuki", "from_user_id": 16038866, "from_user_id_str": "16038866", "from_user_name": "buki", "geo": null, "id": 148645237106016260, "id_str": "148645237106016256", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1170602051/logo_head_white_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1170602051/logo_head_white_normal.png", "source": "Zite Personalized Magazine", "text": "NOSQL Patterns http://t.co/SfQBseBA via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:05:22 +0000", "from_user": "egeektronic", "from_user_id": 60040368, "from_user_id_str": "60040368", "from_user_name": "Teguh", "geo": null, "id": 148645077810552830, "id_str": "148645077810552832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1611536804/egeektronic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611536804/egeektronic_normal.jpg", "source": "<a href="http://www.egeektronic.com/" rel="nofollow">eGEEKtronic</a>", "text": "Time-Based Blind NoSQL Injection http://t.co/mN4TsHbB #webappsec", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:05:07 +0000", "from_user": "kumarshantanu", "from_user_id": 18362831, "from_user_id_str": "18362831", "from_user_name": "Shantanu Kumar", "geo": null, "id": 148645014224896000, "id_str": "148645014224896001", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1551932451/test-pic_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1551932451/test-pic_normal.JPG", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "NoSQL Benchmarking http://t.co/MyAqNTmk /via @CUBRID", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:03:36 +0000", "from_user": "tonivdv", "from_user_id": 24175097, "from_user_id_str": "24175097", "from_user_name": "Toni Van de Voorde", "geo": null, "id": 148644630236381200, "id_str": "148644630236381184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/444540494/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/444540494/me_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @old_sound: RabbitMQ in Action is a book for hipsters. See this excerpt: \"Mnesia, the Erlang database that was there even before NoSQL was cool\".", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:01:54 +0000", "from_user": "Edubeat", "from_user_id": 49025026, "from_user_id_str": "49025026", "from_user_name": "EDUBEAT", "geo": null, "id": 148644202090209280, "id_str": "148644202090209280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702346828/17a8f0e2a6b09d15ef80c4bcdf1c78341_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702346828/17a8f0e2a6b09d15ef80c4bcdf1c78341_normal.jpg", "source": "<a href="http://www.visibli.com" rel="nofollow">Visibli</a>", "text": "NoSQL\\u2019s great, but bring your A game \\u00AB mashtop - the top links, mashed up: \\n\\t\\thttp://t.co/mVy9hPka\\n\\t\\n\\t\\n\\t\\tMongoDB ... http://t.co/v2107g0X", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:40:37 +0000", "from_user": "madmongol", "from_user_id": 14371668, "from_user_id_str": "14371668", "from_user_name": "Altan Khendup", "geo": null, "id": 148638848308613120, "id_str": "148638848308613120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/79843945/thesteppesagain_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/79843945/thesteppesagain_normal.jpg", "source": "<a href="http://www.alphonsolabs.com/" rel="nofollow">Pulse News</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/CyORh81s", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:38:45 +0000", "from_user": "understeer", "from_user_id": 4451471, "from_user_id_str": "4451471", "from_user_name": "MATSUO Yasuhiro ", "geo": null, "id": 148638376306802700, "id_str": "148638376306802688", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1314550179/4451471_origin_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1314550179/4451471_origin_normal.gif", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Auction and Bidding Applications with Document-Based NoSQL http://t.co/n6HddVFa @dzone\\u3055\\u3093\\u304B\\u3089", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:31:18 +0000", "from_user": "Trust_IT", "from_user_id": 78572553, "from_user_id_str": "78572553", "from_user_name": "Trust-IT Security ", "geo": null, "id": 148636501125758980, "id_str": "148636501125758977", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/637910176/logo-white_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/637910176/logo-white_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Full Disclosure: Syhunt: Time-Based Blind NoSQL Injection http://t.co/f32DLj5b", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:21:12 +0000", "from_user": "the_toon", "from_user_id": 135405236, "from_user_id_str": "135405236", "from_user_name": "Sergei Plaxienko", "geo": null, "id": 148633959494983680, "id_str": "148633959494983680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1536129335/2782651_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1536129335/2782651_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @old_sound: RabbitMQ in Action is a book for hipsters. See this excerpt: \"Mnesia, the Erlang database that was there even before NoSQL was cool\".", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:12:02 +0000", "from_user": "p_toi", "from_user_id": 81106743, "from_user_id_str": "81106743", "from_user_name": "Peter Toi", "geo": null, "id": 148631656012591100, "id_str": "148631656012591104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1572541097/twitter-head_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572541097/twitter-head_normal.png", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "#NoSQL\\u2019s great, but bring your A game http://t.co/UGoExtzH #MongoDB #backtoschool", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:10:46 +0000", "from_user": "papulovskiy", "from_user_id": 117332131, "from_user_id_str": "117332131", "from_user_name": "Alexey S Papulovskiy", "geo": null, "id": 148631335639068670, "id_str": "148631335639068672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1370938934/transparent_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1370938934/transparent_normal.gif", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @old_sound: RabbitMQ in Action is a book for hipsters. See this excerpt: \"Mnesia, the Erlang database that was there even before NoSQL was cool\".", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:59:41 +0000", "from_user": "shadowc4t", "from_user_id": 60483638, "from_user_id_str": "60483638", "from_user_name": "shadowcat", "geo": null, "id": 148628546653392900, "id_str": "148628546653392897", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/333831136/computer_Don_t_Spy_on_Me_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/333831136/computer_Don_t_Spy_on_Me_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Full Disclosure: Syhunt: Time-Based Blind NoSQL Injection: http://t.co/PMs2FVkE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:49:54 +0000", "from_user": "1nf0s3cpt", "from_user_id": 219517617, "from_user_id_str": "219517617", "from_user_name": "infosecpt", "geo": null, "id": 148626083909074940, "id_str": "148626083909074944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1176163956/wallpaper-439252_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1176163956/wallpaper-439252_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Syhunt: Time-Based Blind NoSQL Injection http://t.co/qDJ2bAR9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:48:30 +0000", "from_user": "write2munish", "from_user_id": 19847332, "from_user_id_str": "19847332", "from_user_name": "Munish K Gupta", "geo": null, "id": 148625732409622530, "id_str": "148625732409622528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/949433271/munish_gupta_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/949433271/munish_gupta_normal.PNG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/uWMlxxXo <- interesting", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:38:30 +0000", "from_user": "danushkamenik", "from_user_id": 17956629, "from_user_id_str": "17956629", "from_user_name": "Danushka", "geo": null, "id": 148623215600738300, "id_str": "148623215600738305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/66709601/my_icon_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/66709601/my_icon_normal.JPG", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "RT @srinath_perera: NoSQL reading list http://t.co/0e7DIJgl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:38:12 +0000", "from_user": "i812ht", "from_user_id": 53246203, "from_user_id_str": "53246203", "from_user_name": "David Kramer", "geo": null, "id": 148623138689777660, "id_str": "148623138689777664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1288187126/ImageJPEG_6749_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1288187126/ImageJPEG_6749_normal.jpg", "source": "<a href="http://SkyGrid.com/" rel="nofollow">SkyGrid</a>", "text": "NoSQL's great, but bring your A game\\nhttp://t.co/8OzNElex", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:36:38 +0000", "from_user": "tecnox", "from_user_id": 10869762, "from_user_id_str": "10869762", "from_user_name": "Enrique Ortu\\u00F1o", "geo": null, "id": 148622745821921280, "id_str": "148622745821921280", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1116237115/dorsal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1116237115/dorsal_normal.jpg", "source": "<a href="http://www.twhirl.org" rel="nofollow">Seesmic twhirl</a>", "text": "Interesantes herramientas para administrar una MongoDB http://t.co/0lUG80WU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:21:09 +0000", "from_user": "mafazrox", "from_user_id": 69370559, "from_user_id_str": "69370559", "from_user_name": "Mafaz Ansar", "geo": null, "id": 148618850143973380, "id_str": "148618850143973376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1327724323/189903_192239740815593_100000887048797_462749_851113_s_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1327724323/189903_192239740815593_100000887048797_462749_851113_s_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @louiebaur: NoSQL\\u2019s great, but bring your A game http://t.co/tAHu1Nvc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:17:48 +0000", "from_user": "SainathDK", "from_user_id": 335859162, "from_user_id_str": "335859162", "from_user_name": "Sainath", "geo": null, "id": 148618004656160770, "id_str": "148618004656160769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1456806781/Twitter_profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1456806781/Twitter_profile_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "NoSQL's great, but bring your A game http://t.co/bLixDrNJ via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 04:08:18 +0000", "from_user": "belgort", "from_user_id": 6902482, "from_user_id_str": "6902482", "from_user_name": "Bruce Elgort", "geo": null, "id": 148615613814804480, "id_str": "148615613814804480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1103744224/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1103744224/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Our podcast with @stickfight on NoSQL is approaching 3,500 listens http://t.co/J1Yzs0To", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:56:14 +0000", "from_user": "Radarbot", "from_user_id": 231963930, "from_user_id_str": "231963930", "from_user_name": "Securityradarbot", "geo": null, "id": 148612576845107200, "id_str": "148612576845107200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Syhunt: Time-Based Blind NoSQL Injection: Posted by Felipe M. Aragon on Dec 18Time-Based Blind NoSQL Injection -... http://t.co/NxuqSZxd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:56:13 +0000", "from_user": "hacktalkblog", "from_user_id": 38467809, "from_user_id_str": "38467809", "from_user_name": "Hack Talk", "geo": null, "id": 148612575867846660, "id_str": "148612575867846656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/585291781/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/585291781/logo_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Full Disclosure Syhunt: Time-Based Blind NoSQL Injection: Posted by Felipe M. Aragon on Dec 18Time-Based Blind N... http://t.co/TPbPVPwa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:56:13 +0000", "from_user": "SecMailLists", "from_user_id": 92154392, "from_user_id_str": "92154392", "from_user_name": "SecMailLists", "geo": null, "id": 148612575012208640, "id_str": "148612575012208640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/540950019/Mail-envelope_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/540950019/Mail-envelope_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Full Disclosure: Syhunt: Time-Based Blind NoSQL Injection http://t.co/Y0NYRGnZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:50:55 +0000", "from_user": "thefrontend", "from_user_id": 95566127, "from_user_id_str": "95566127", "from_user_name": "The Frontend", "geo": null, "id": 148611239495467000, "id_str": "148611239495467008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/566109951/fe_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/566109951/fe_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Auction and Bidding Applications with Document-Based NoSQL http://t.co/AnPe1bjl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:50:21 +0000", "from_user": "opexxx", "from_user_id": 32839909, "from_user_id_str": "32839909", "from_user_name": "alexander knorr", "geo": null, "id": 148611098529112060, "id_str": "148611098529112064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/303774966/3124604_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/303774966/3124604_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Syhunt: Time-Based Blind NoSQL Injection http://t.co/1C0AMtoL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:45:07 +0000", "from_user": "mahdi", "from_user_id": 718993, "from_user_id_str": "718993", "from_user_name": "Mahdi Taghizadeh", "geo": null, "id": 148609782184550400, "id_str": "148609782184550400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697108280/violet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697108280/violet_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "Auction and Bidding Applications with Document-Based NoSQL. http://t.co/QifrBGH4 #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:43:57 +0000", "from_user": "DevelopMentor_", "from_user_id": 58955729, "from_user_id_str": "58955729", "from_user_name": "DevelopMentor", "geo": null, "id": 148609487744409600, "id_str": "148609487744409601", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/325399980/basic_dm_logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/325399980/basic_dm_logo_normal.png", "source": "<a href="http://www.develop.com/" rel="nofollow">DevelopMentor TweetBot</a>", "text": "@bobbeauch yes I did it's all good #DevelopMentor. I am working on #noSQL and #SQLServer2012 now, what about you? (via @lynnlangit)", "to_user": "bobbeauch", "to_user_id": 229214354, "to_user_id_str": "229214354", "to_user_name": "Bob Beauchemin", "in_reply_to_status_id": 148605832064536580, "in_reply_to_status_id_str": "148605832064536577"}, +{"created_at": "Mon, 19 Dec 2011 03:42:11 +0000", "from_user": "dev_links", "from_user_id": 309995604, "from_user_id_str": "309995604", "from_user_name": "Joe Fawzy", "geo": null, "id": 148609042066059260, "id_str": "148609042066059264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Auction and Bidding Applications with Document-Based NoSQL http://t.co/QskIDnB0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:39:58 +0000", "from_user": "lynnlangit", "from_user_id": 3105491, "from_user_id_str": "3105491", "from_user_name": "Lynn Langit", "geo": null, "id": 148608483506401280, "id_str": "148608483506401280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/125258306/meRed_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/125258306/meRed_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@bobbeauch yes I did it's all good #DevelopMentor. I am working on #noSQL and #SQLServer2012 now, what about you?", "to_user": "bobbeauch", "to_user_id": 229214354, "to_user_id_str": "229214354", "to_user_name": "Bob Beauchemin", "in_reply_to_status_id": 148605832064536580, "in_reply_to_status_id_str": "148605832064536577"}, +{"created_at": "Mon, 19 Dec 2011 03:31:28 +0000", "from_user": "oxytehehak", "from_user_id": 316989823, "from_user_id_str": "316989823", "from_user_name": "Marsland Bumpers", "geo": null, "id": 148606347435450370, "id_str": "148606347435450368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1446708114/1416_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1446708114/1416_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Definitive Guide to MongoDB: The NoSQL Database for Cloud and Desktop Computing (Paperback) http://t.co/JALNqDN4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:30:37 +0000", "from_user": "pinotblogger", "from_user_id": 1586961, "from_user_id_str": "1586961", "from_user_name": "Josh Hermsmeyer", "geo": null, "id": 148606133765025800, "id_str": "148606133765025793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1576903898/mug_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576903898/mug_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@cmastication you using NoSQL I take it. I'm not sold myself except for specific use cases. What's yours?", "to_user": "cmastication", "to_user_id": 43186378, "to_user_id_str": "43186378", "to_user_name": "Mister Long", "in_reply_to_status_id": 148582487541547000, "in_reply_to_status_id_str": "148582487541547008"}, +{"created_at": "Mon, 19 Dec 2011 03:17:02 +0000", "from_user": "prabath", "from_user_id": 10963912, "from_user_id_str": "10963912", "from_user_name": "prabath", "geo": null, "id": 148602713486266370, "id_str": "148602713486266369", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/58329054/prabath3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/58329054/prabath3_normal.jpg", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "RT @srinath_perera: NoSQL reading list http://t.co/0e7DIJgl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:00:49 +0000", "from_user": "jason_trost", "from_user_id": 121200611, "from_user_id_str": "121200611", "from_user_name": "Jason Trost", "geo": null, "id": 148598633053429760, "id_str": "148598633053429760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1305123182/graph4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1305123182/graph4_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @orenfalkowitz: #NoSQL is necessary but it\\u2019s not for companies afraid of hard work http://t.co/aQrVEjlk #Accumulo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:00:02 +0000", "from_user": "LeeWeiden", "from_user_id": 366446253, "from_user_id_str": "366446253", "from_user_name": "Lee Weiden", "geo": null, "id": 148598437431087100, "id_str": "148598437431087105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1679888188/Lee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679888188/Lee_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @louiebaur: NoSQL\\u2019s great, but bring your A game http://t.co/tAHu1Nvc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:59:31 +0000", "from_user": "yostar", "from_user_id": 14936911, "from_user_id_str": "14936911", "from_user_name": "Yoav Schwartz", "geo": null, "id": 148598307260874750, "id_str": "148598307260874752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1657102728/profile-pic-bw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657102728/profile-pic-bw_normal.jpg", "source": "Zite Personalized Magazine", "text": "RT @talshalit: NoSQL's great, but bring your A game http://t.co/psmiM0JY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:53:58 +0000", "from_user": "JasonWReid", "from_user_id": 366649622, "from_user_id_str": "366649622", "from_user_name": "Jason Reid", "geo": null, "id": 148596906791153660, "id_str": "148596906791153665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1679925414/Loud_Music_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679925414/Loud_Music_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @louiebaur: NoSQL\\u2019s great, but bring your A game http://t.co/tAHu1Nvc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:46:27 +0000", "from_user": "srinath_perera", "from_user_id": 66572848, "from_user_id_str": "66572848", "from_user_name": "Srinath Perera", "geo": null, "id": 148595016678379520, "id_str": "148595016678379520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/694359829/n746176070_5759_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/694359829/n746176070_5759_normal.jpg", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "NoSQL reading list http://t.co/0e7DIJgl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:46:04 +0000", "from_user": "mimura1018", "from_user_id": 7110632, "from_user_id_str": "7110632", "from_user_name": "Yoshiyuki Mimura", "geo": null, "id": 148594921786449920, "id_str": "148594921786449921", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1238038345/warai_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1238038345/warai_normal.png", "source": "<a href="http://app.gacha.net/sylfeed" rel="nofollow">Sylfeed</a>", "text": "\\u30C1\\u30A7\\u30C3\\u30AF | \"InfoQ.com Japan\" James Phillips \\u6C0F\\u304C\\u8A9E\\u308B\\u300C\\u30EA\\u30EC\\u30FC\\u30B7\\u30E7\\u30CA\\u30EB\\u304B\\u3089 NoSQL \\u3078\\u306E\\u30C7\\u30FC\\u30BF\\u30D9\\u30FC\\u30B9\\u79FB\\u884C\\u300D http://t.co/mYOsqLAb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:40:20 +0000", "from_user": "PurvisRobinson", "from_user_id": 367029069, "from_user_id_str": "367029069", "from_user_name": "Purvis Robinson", "geo": null, "id": 148593476790005760, "id_str": "148593476790005761", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1680150770/p_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680150770/p_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @louiebaur: NoSQL\\u2019s great, but bring your A game http://t.co/tAHu1Nvc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:37:18 +0000", "from_user": "jsreno", "from_user_id": 68602837, "from_user_id_str": "68602837", "from_user_name": "John Reno", "geo": null, "id": 148592714257141760, "id_str": "148592714257141761", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/690551394/JR_image_0210_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/690551394/JR_image_0210_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/yinF3RE5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:36:00 +0000", "from_user": "PeterSBurton", "from_user_id": 367209383, "from_user_id_str": "367209383", "from_user_name": "Peter Sidney Burton", "geo": null, "id": 148592388078710800, "id_str": "148592388078710784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680192532/Purvis_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680192532/Purvis_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @louiebaur: NoSQL\\u2019s great, but bring your A game http://t.co/tAHu1Nvc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:31:51 +0000", "from_user": "SearleMorris", "from_user_id": 370724877, "from_user_id_str": "370724877", "from_user_name": "Searle Morris", "geo": null, "id": 148591344447799300, "id_str": "148591344447799296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680254634/illustrated-face_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680254634/illustrated-face_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @louiebaur: NoSQL\\u2019s great, but bring your A game http://t.co/tAHu1Nvc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:26:01 +0000", "from_user": "RobertsChapman", "from_user_id": 371109006, "from_user_id_str": "371109006", "from_user_name": "Roberts Chapman", "geo": null, "id": 148589875401203700, "id_str": "148589875401203712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1686679800/Freedom_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686679800/Freedom_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @louiebaur: NoSQL\\u2019s great, but bring your A game http://t.co/tAHu1Nvc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:16:27 +0000", "from_user": "PeterAlexandrov", "from_user_id": 371615963, "from_user_id_str": "371615963", "from_user_name": "Peter Alexandrov", "geo": null, "id": 148587465391878140, "id_str": "148587465391878145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680289504/Dog_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680289504/Dog_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @louiebaur: NoSQL\\u2019s great, but bring your A game http://t.co/tAHu1Nvc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:14:11 +0000", "from_user": "theanti9", "from_user_id": 18149726, "from_user_id_str": "18149726", "from_user_name": "Ryan", "geo": null, "id": 148586897105629200, "id_str": "148586897105629184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1181955584/Photo_on_2010-11-30_at_19.49_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1181955584/Photo_on_2010-11-30_at_19.49_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Image Manipulation Server - C# and MongoDB - A venture into the world of NoSQL: http://t.co/gKmDTcjy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:13:55 +0000", "from_user": "JessiMinchincon", "from_user_id": 371647743, "from_user_id_str": "371647743", "from_user_name": "Jessica Minchincon", "geo": null, "id": 148586829669613570, "id_str": "148586829669613568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680310081/abstract-life-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680310081/abstract-life-1_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @louiebaur: NoSQL\\u2019s great, but bring your A game http://t.co/tAHu1Nvc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:12:04 +0000", "from_user": "konstblg", "from_user_id": 27557328, "from_user_id_str": "27557328", "from_user_name": "Konstantin Filatov", "geo": null, "id": 148586362449309700, "id_str": "148586362449309696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1516780868/IMG_2087_-_Version_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1516780868/IMG_2087_-_Version_2_normal.jpg", "source": "<a href="http://omz-software.com/newsstand" rel="nofollow">NewsRack</a>", "text": "RT @ferretgod: #NoSQL 's great, but bring your A game http://t.co/YCGapi9n", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 02:06:29 +0000", "from_user": "cmalbari", "from_user_id": 69732779, "from_user_id_str": "69732779", "from_user_name": "Miraz", "geo": null, "id": 148584957302931460, "id_str": "148584957302931456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1649429032/bkBn0s5u_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649429032/bkBn0s5u_normal", "source": "Zite Personalized Magazine", "text": "NoSQL's great, but bring your A game http://t.co/TxRGfbX0 @chazzuka", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:56:03 +0000", "from_user": "iBachue", "from_user_id": 125917459, "from_user_id_str": "125917459", "from_user_name": "Bachue Zhou", "geo": null, "id": 148582333337968640, "id_str": "148582333337968640", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1117487708/6e1d8011f8eff869f919b8ff_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1117487708/6e1d8011f8eff869f919b8ff_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\\u300AMySQL\\u4E0ENoSQL\\u2014\\u2014SQL\\u4E0ENoSQL\\u7684\\u878D\\u5408\\u300Bhttp://t.co/GpTuUeGc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:51:27 +0000", "from_user": "TimothyZachary", "from_user_id": 373425844, "from_user_id_str": "373425844", "from_user_name": "Timothy Zachary", "geo": null, "id": 148581176569892860, "id_str": "148581176569892865", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680354909/Yellow3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680354909/Yellow3_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @louiebaur: NoSQL\\u2019s great, but bring your A game http://t.co/tAHu1Nvc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:49:19 +0000", "from_user": "schida", "from_user_id": 19803427, "from_user_id_str": "19803427", "from_user_name": "Chida", "geo": null, "id": 148580640525266940, "id_str": "148580640525266944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1593780751/chida_FB_4_small_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593780751/chida_FB_4_small_twitter_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Good round up of mongoDB experience as NoSQL - http://t.co/N8iPuTUS #mongodb #10gen @mongoDC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:48:32 +0000", "from_user": "ferretgod", "from_user_id": 78959366, "from_user_id_str": "78959366", "from_user_name": "Sergey Katalichenka", "geo": null, "id": 148580441564250100, "id_str": "148580441564250114", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1155929269/HD_drawing_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1155929269/HD_drawing_normal.jpg", "source": "<a href="http://omz-software.com/newsstand" rel="nofollow">NewsRack</a>", "text": "#NoSQL 's great, but bring your A game http://t.co/YCGapi9n", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:44:25 +0000", "from_user": "lheritier", "from_user_id": 14337952, "from_user_id_str": "14337952", "from_user_name": "Romain Lheritier", "geo": null, "id": 148579404988166140, "id_str": "148579404988166144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1414899425/Lheritier_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1414899425/Lheritier_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/XQotRRFb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:42:51 +0000", "from_user": "ItTechnoNews", "from_user_id": 382914611, "from_user_id_str": "382914611", "from_user_name": "IT\\u30C6\\u30C3\\u30AF\\u307E\\u3068\\u3081\\u30CB\\u30E5\\u30FC\\u30B9", "geo": null, "id": 148579013407944700, "id_str": "148579013407944704", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.zepan.org/software/tweetly-updater/" rel="nofollow">Tweetly Updater</a>", "text": "\\u65B0\\u7740\\u8A18\\u4E8B : James Phillips \\u6C0F\\u304C\\u8A9E\\u308B\\u300C\\u30EA\\u30EC\\u30FC\\u30B7\\u30E7\\u30CA\\u30EB\\u304B\\u3089 NoSQL \\u3078\\u306E\\u30C7\\u30FC\\u30BF\\u30D9\\u30FC\\u30B9\\u79FB\\u884C\\u300D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:32:02 +0000", "from_user": "alessandroleite", "from_user_id": 11503692, "from_user_id_str": "11503692", "from_user_name": "alessandroleite", "geo": null, "id": 148576287521374200, "id_str": "148576287521374209", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1243715520/avatar-photo_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1243715520/avatar-photo_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lucabastos: Par\\u00F3dia da queda agora Hadoop e NoSQL \"The namenode metadata was corrupted when the machine failed\" http://t.co/rNFane6f via @fdelariva", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:28:14 +0000", "from_user": "mikecthompson", "from_user_id": 25213898, "from_user_id_str": "25213898", "from_user_name": "mike thompson", "geo": null, "id": 148575334885900300, "id_str": "148575334885900289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/N2Dy3g9g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:10:19 +0000", "from_user": "talshalit", "from_user_id": 178446490, "from_user_id_str": "178446490", "from_user_name": "Tal Shalit", "geo": null, "id": 148570825522548740, "id_str": "148570825522548736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1177083778/Tal_Head_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1177083778/Tal_Head_normal.JPG", "source": "Zite Personalized Magazine", "text": "NoSQL's great, but bring your A game http://t.co/psmiM0JY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 01:04:11 +0000", "from_user": "tatakaba", "from_user_id": 70071037, "from_user_id_str": "70071037", "from_user_name": "takahito takabayashi", "geo": null, "id": 148569282152898560, "id_str": "148569282152898560", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/555026214/___normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/555026214/___normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/yreader/id389733994" rel="nofollow">yReader</a>", "text": "InfoQ: James Phillips \\u6C0F\\u304C\\u8A9E\\u308B\\u300C\\u30EA\\u30EC\\u30FC\\u30B7\\u30E7\\u30CA\\u30EB\\u304B\\u3089 NoSQL \\u3078\\u306E\\u30C7\\u30FC\\u30BF\\u30D9\\u30FC\\u30B9\\u79FB\\u884C\\u300D http://t.co/FUJXdaHB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:54:02 +0000", "from_user": "rkttu", "from_user_id": 54143426, "from_user_id_str": "54143426", "from_user_name": "\\uB0A8\\uC815\\uD604 (Jung Hyun, Nam)", "geo": null, "id": 148566728597717000, "id_str": "148566728597716994", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1155870251/5577d0e7-1e4b-4fa1-b26e-d5b2b576c7e3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1155870251/5577d0e7-1e4b-4fa1-b26e-d5b2b576c7e3_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "[DEVPIA C# RSS] #Riak Quick Review: \\uC694\\uC998 \\uB300\\uADDC\\uBAA8 \\uBD84\\uC0B0 \\uD658\\uACBD\\uC774\\uB098 \\uBE45\\uB370\\uC774\\uD0C0 \\uAD00\\uB828\\uD574\\uC11C NoSQL\\uC911\\uC5D0\\uC11C Riak\\uC774 \\uB9CE\\uC774 \\uC5B8\\uAE09\\uB418\\uB294\\uB370... \\uC0DD\\uAC01\\uBCF4\\uB2E4\\u2026 http://t.co/B1U54SOC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:51:58 +0000", "from_user": "rkttu", "from_user_id": 54143426, "from_user_id_str": "54143426", "from_user_name": "\\uB0A8\\uC815\\uD604 (Jung Hyun, Nam)", "geo": null, "id": 148566208269127680, "id_str": "148566208269127680", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1155870251/5577d0e7-1e4b-4fa1-b26e-d5b2b576c7e3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1155870251/5577d0e7-1e4b-4fa1-b26e-d5b2b576c7e3_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "[Win-Azure RSS] Riak Quick Review: \\uC694\\uC998 \\uB300\\uADDC\\uBAA8 \\uBD84\\uC0B0 \\uD658\\uACBD\\uC774\\uB098 \\uBE45\\uB370\\uC774\\uD0C0 \\uAD00\\uB828\\uD574\\uC11C NoSQL\\uC911\\uC5D0\\uC11C Riak\\uC774 \\uB9CE\\uC774 \\uC5B8\\uAE09\\uB418\\uB294\\uB370... \\uC0DD\\uAC01\\uBCF4\\uB2E4\\u2026 http://t.co/2YaPwl7I", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:21:10 +0000", "from_user": "steveos", "from_user_id": 14120820, "from_user_id_str": "14120820", "from_user_name": "steveos", "geo": null, "id": 148558456222269440, "id_str": "148558456222269440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1127303959/me_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1127303959/me_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/p0JqYO9L", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:14:59 +0000", "from_user": "ThePigLA", "from_user_id": 15621574, "from_user_id_str": "15621574", "from_user_name": "The Pig", "geo": null, "id": 148556898638114800, "id_str": "148556898638114817", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1382356834/Photo_on_2011-01-11_at_08.29_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1382356834/Photo_on_2011-01-11_at_08.29_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dierken I think I want to skip SQL and move directly to NoSQL. Cassandra sounds appealing.", "to_user": "dierken", "to_user_id": 12933302, "to_user_id_str": "12933302", "to_user_name": "dierken", "in_reply_to_status_id": 148486337530576900, "in_reply_to_status_id_str": "148486337530576897"}, +{"created_at": "Mon, 19 Dec 2011 00:04:43 +0000", "from_user": "suttonr", "from_user_id": 6724622, "from_user_id_str": "6724622", "from_user_name": "Ryan Sutton", "geo": null, "id": 148554317098516480, "id_str": "148554317098516480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1366615612/Me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1366615612/Me_normal.jpg", "source": "<a href="http://ping.fm/" rel="nofollow">Ping.fm</a>", "text": "\"Virtual disks have virtual performance\" GigaOM: NoSQL\\u2019s great, but bring your A game http://t.co/ERRgt255", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:03:26 +0000", "from_user": "orenfalkowitz", "from_user_id": 24792160, "from_user_id_str": "24792160", "from_user_name": "Oren J. Falkowitz", "geo": null, "id": 148553993507966980, "id_str": "148553993507966976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1202759971/OrenWW_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1202759971/OrenWW_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "#NoSQL is necessary but it\\u2019s not for companies afraid of hard work http://t.co/aQrVEjlk #Accumulo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:03:25 +0000", "from_user": "newic500", "from_user_id": 36994148, "from_user_id_str": "36994148", "from_user_name": "Eric V", "geo": null, "id": 148553988365750270, "id_str": "148553988365750273", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/194281888/Me591_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/194281888/Me591_normal.jpg", "source": "Zite Personalized Magazine", "text": "NoSQL Benchmarking Cassandra/HBase/MongoDB... gloire a l'insert http://t.co/2YtoXskW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:02:26 +0000", "from_user": "abe_masanori", "from_user_id": 238525344, "from_user_id_str": "238525344", "from_user_name": "ABE Masanori \\u963F\\u90E8 \\u5C06\\u5178", "geo": null, "id": 148553742587928580, "id_str": "148553742587928576", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1263696578/myimg_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263696578/myimg_normal.png", "source": "<a href="http://twipple.jp/" rel="nofollow">Twipple for Android</a>", "text": "NoSQL\\u306E\\u30C8\\u30E9\\u30F3\\u30B6\\u30AF\\u30B7\\u30E7\\u30F3\\u7BA1\\u7406\\u6A5F\\u80FD\\u306E\\u6B20\\u5982\\u3092\\u88DC\\u3046\\u305F\\u3081\\u306B\\u3001\\u5916\\u90E8\\u306B\\u30C8\\u30E9\\u30F3\\u30B6\\u30AF\\u30B7\\u30E7\\u30F3\\u30E2\\u30CB\\u30BF\\u30FC\\u3092\\u7F6E\\u304F\\u3068\\u3044\\u3046\\u8003\\u3048\\u65B9\\u306F\\u3042\\u308A\\u306A\\u306E\\u304B\\uFF1F\\u3068\\u3066\\u3082\\u826F\\u3044\\u30A2\\u30A4\\u30C7\\u30A3\\u30A2\\u306B\\u306F\\u601D\\u3048\\u306A\\u3044\\u306E\\u3060\\u304C\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:00:22 +0000", "from_user": "ITjobsYP", "from_user_id": 431633759, "from_user_id_str": "431633759", "from_user_name": "ictjob.de", "geo": null, "id": 148553220778762240, "id_str": "148553220778762242", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688760510/Logo_Twitter_Channels_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688760510/Logo_Twitter_Channels_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "1&1 - OpenSource DB-Administrator (m/w) - Schwerpunkt NoSQL-Datenbanken/Datenspeicherung - 1&1 Internet #Jobs #IT #YP http://t.co/FgDEXExY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:46:42 +0000", "from_user": "understeer", "from_user_id": 4451471, "from_user_id_str": "4451471", "from_user_name": "MATSUO Yasuhiro ", "geo": null, "id": 148549782451925000, "id_str": "148549782451924992", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1314550179/4451471_origin_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1314550179/4451471_origin_normal.gif", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "InfoQ: James Phillips \\u6C0F\\u304C\\u8A9E\\u308B\\u300C\\u30EA\\u30EC\\u30FC\\u30B7\\u30E7\\u30CA\\u30EB\\u304B\\u3089 NoSQL \\u3078\\u306E\\u30C7\\u30FC\\u30BF\\u30D9\\u30FC\\u30B9\\u79FB\\u884C\\u300D: http://t.co/Un0U2vdG via @AddThis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:32:06 +0000", "from_user": "CraigCav", "from_user_id": 70438825, "from_user_id_str": "70438825", "from_user_name": "Craig Cavalier", "geo": null, "id": 148546105368514560, "id_str": "148546105368514560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1440989453/16345_540166941854_289300412_2363137_4860204_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1440989453/16345_540166941854_289300412_2363137_4860204_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @RavenDB: New video: Polymorphism and #RavenDB http://t.co/qKb84X1B #nosql #dotnet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:29:31 +0000", "from_user": "JeffMiller", "from_user_id": 124242545, "from_user_id_str": "124242545", "from_user_name": "Jeff Miller", "geo": null, "id": 148545455326887940, "id_str": "148545455326887936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1452026204/jeff_headshot_256x256_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1452026204/jeff_headshot_256x256_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/N2Dy3g9g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:26:32 +0000", "from_user": "techngfx", "from_user_id": 314888606, "from_user_id_str": "314888606", "from_user_name": "techngfx", "geo": null, "id": 148544708451381250, "id_str": "148544708451381248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1390609558/Logo_Techngfx_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1390609558/Logo_Techngfx_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/XKrDaF9v", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:24:25 +0000", "from_user": "arrch", "from_user_id": 19104094, "from_user_id_str": "19104094", "from_user_name": "Andrew Lum", "geo": null, "id": 148544174453555200, "id_str": "148544174453555201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/71673780/1099256_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/71673780/1099256_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "@michaelmelhem you might like the numbers quoted at the bottom of the article. NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/kmAvAiWs", "to_user": "michaelmelhem", "to_user_id": 19161107, "to_user_id_str": "19161107", "to_user_name": "Michael Melhem"}, +{"created_at": "Sun, 18 Dec 2011 23:12:09 +0000", "from_user": "bigdata_1topi", "from_user_id": 397130113, "from_user_id_str": "397130113", "from_user_name": "ONETOPI\\u300C\\u30D3\\u30C3\\u30B0\\u30C7\\u30FC\\u30BF\\u300D", "geo": null, "id": 148541085570961400, "id_str": "148541085570961408", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1605698365/OT_icon_111025_BIG2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1605698365/OT_icon_111025_BIG2_normal.jpg", "source": "<a href="http://www.modiphi.com" rel="nofollow">MODIPHI SM3</a>", "text": "James Phillips \\u6C0F\\u304C\\u8A9E\\u308B\\u300C\\u30EA\\u30EC\\u30FC\\u30B7\\u30E7\\u30CA\\u30EB\\u304B\\u3089 NoSQL \\u3078\\u306E\\u30C7\\u30FC\\u30BF\\u30D9\\u30FC\\u30B9\\u79FB\\u884C\\u300D http://t.co/GPgN8CIh\\n #1tp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:07:31 +0000", "from_user": "ted_gomez", "from_user_id": 428900167, "from_user_id_str": "428900167", "from_user_name": "Ted Gomez", "geo": null, "id": 148539920649162750, "id_str": "148539920649162752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1674988019/eightbit2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674988019/eightbit2_normal.png", "source": "<a href="http://test.com/twitterapp/" rel="nofollow">Emilys Test App</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/PMd6fyXm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:00:09 +0000", "from_user": "lucabastos", "from_user_id": 14911350, "from_user_id_str": "14911350", "from_user_name": "lucabastos", "geo": null, "id": 148538065453973500, "id_str": "148538065453973504", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1113432152/DevInSampa2010_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1113432152/DevInSampa2010_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Par\\u00F3dia da queda agora Hadoop e NoSQL \"The namenode metadata was corrupted when the machine failed\" http://t.co/rNFane6f via @fdelariva", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:59:38 +0000", "from_user": "ChumaLtd", "from_user_id": 428896544, "from_user_id_str": "428896544", "from_user_name": "\\u4E2D\\u99AC", "geo": null, "id": 148537938555310080, "id_str": "148537938555310080", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1675166923/2173340615_805fd360e1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675166923/2173340615_805fd360e1_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "James Phillips \\u6C0F\\u304C\\u8A9E\\u308B\\u300C\\u30EA\\u30EC\\u30FC\\u30B7\\u30E7\\u30CA\\u30EB\\u304B\\u3089 NoSQL \\u3078\\u306E\\u30C7\\u30FC\\u30BF\\u30D9\\u30FC\\u30B9\\u79FB\\u884C\\u300D http://t.co/CAySvCpZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:46:21 +0000", "from_user": "wollepb", "from_user_id": 15015126, "from_user_id_str": "15015126", "from_user_name": "Wolfgang Reinhardt", "geo": null, "id": 148534593543348220, "id_str": "148534593543348224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1333572768/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1333572768/avatar_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "NoSQL's great, but bring your A game http://t.co/Cyi56YEQ via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:32:51 +0000", "from_user": "MrtinTalbot", "from_user_id": 95974600, "from_user_id_str": "95974600", "from_user_name": "Martin Talbot", "geo": null, "id": 148531195599257600, "id_str": "148531195599257600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1684962681/C1CC027F-CA68-4FB7-83CC-18E51AED3D01_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684962681/C1CC027F-CA68-4FB7-83CC-18E51AED3D01_normal", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Slides: What You Need to Know to Move from a Relational to NoSQL Database http://t.co/gSm8erl1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:29:11 +0000", "from_user": "sanderhahn", "from_user_id": 137385974, "from_user_id_str": "137385974", "from_user_name": "Sander Hahn", "geo": null, "id": 148530275431878660, "id_str": "148530275431878656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1599364026/2011-05-30_13.05.43_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599364026/2011-05-30_13.05.43_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Schemaless NoSQL document databases take null pointer exceptions and dynamic type-errors to a whole new level.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:27:27 +0000", "from_user": "monadic", "from_user_id": 77293, "from_user_id_str": "77293", "from_user_name": "alexis richardson", "geo": null, "id": 148529838397988860, "id_str": "148529838397988864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/836600467/alexis4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/836600467/alexis4_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @old_sound: RabbitMQ in Action is a book for hipsters. See this excerpt: \"Mnesia, the Erlang database that was there even before NoSQL was cool\".", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:17:45 +0000", "from_user": "rahuljuneja", "from_user_id": 36554645, "from_user_id_str": "36554645", "from_user_name": "Rahul Juneja", "geo": null, "id": 148527397480824830, "id_str": "148527397480824835", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/248976046/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/248976046/images_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@kshyamsunder >>>>>>>> Just finished my talk on NOSQL vs RDBMS at #javaone11. House full.>>>>>>> Do you have the PPT for this ?", "to_user": "kshyamsunder", "to_user_id": 136282967, "to_user_id_str": "136282967", "to_user_name": "Karthik Shyamsunder", "in_reply_to_status_id": 121025007068516350, "in_reply_to_status_id_str": "121025007068516352"}, +{"created_at": "Sun, 18 Dec 2011 22:14:29 +0000", "from_user": "mstolk", "from_user_id": 16921180, "from_user_id_str": "16921180", "from_user_name": "Marco Stolk", "geo": null, "id": 148526575216885760, "id_str": "148526575216885760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1189392684/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1189392684/image_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "NoSQL's great, but bring your A game http://t.co/HUOeqRWY via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:07:20 +0000", "from_user": "JoshInHR", "from_user_id": 27459245, "from_user_id_str": "27459245", "from_user_name": "Joshua Barger", "geo": null, "id": 148524776980361200, "id_str": "148524776980361217", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1647833645/josh_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647833645/josh_normal.png", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "I'm hiring! Search / Big Data / NoSQL Engineer at http://t.co/Lf2QF2oH - San Francisco Bay Area #jobs http://t.co/hCZEO0dN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:56:59 +0000", "from_user": "andraz", "from_user_id": 14250157, "from_user_id_str": "14250157", "from_user_name": "Andraz Tori", "geo": null, "id": 148522171386433540, "id_str": "148522171386433536", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/52535596/crop-max_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/52535596/crop-max_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@svizec Sure, poglej si jih na Slideshareu http://t.co/52wN3pFI", "to_user": "svizec", "to_user_id": 14541647, "to_user_id_str": "14541647", "to_user_name": "Nejc Kostanj\\u0161ek", "in_reply_to_status_id": 147604723745308670, "in_reply_to_status_id_str": "147604723745308672"}, +{"created_at": "Sun, 18 Dec 2011 21:13:43 +0000", "from_user": "sanxxorr", "from_user_id": 155810759, "from_user_id_str": "155810759", "from_user_name": "Sami Yliharju", "geo": null, "id": 148511282469937150, "id_str": "148511282469937152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1565039749/vincent_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1565039749/vincent_normal.jpg", "source": "<a href="http://www.feedly.com" rel="nofollow">feedly</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/sRuYxPEr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 21:09:14 +0000", "from_user": "cccc4d", "from_user_id": 334495560, "from_user_id_str": "334495560", "from_user_name": "Milton Colwell", "geo": null, "id": 148510152927092740, "id_str": "148510152927092736", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1471512767/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1471512767/profile_normal.png", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "\\u201CWindows Azure\\u304CNoSQL\\u5BFE\\u5FDC\\u3092\\u63A8\\u9032\\u4E2D\\u3002MongoDB\\u3084Membase\\u306A\\u3069\\u5BFE\\u5FDC\\u3078 \\uFF0D Publickey\\u201D http://t.co/rDKTl5cG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:50:06 +0000", "from_user": "dierken", "from_user_id": 12933302, "from_user_id_str": "12933302", "from_user_name": "dierken", "geo": null, "id": 148505338772074500, "id_str": "148505338772074496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1254896557/mike_d__med__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1254896557/mike_d__med__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Some sys eng issues couched as NoSQL. i.e. \"Disney: More than 1,400 MongoDB instances.\" /Any/ 1,400 hosts is hard. http://t.co/MYU2VAgO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:48:13 +0000", "from_user": "SocialHabitat", "from_user_id": 244773106, "from_user_id_str": "244773106", "from_user_name": "Social Habitat", "geo": null, "id": 148504865893654530, "id_str": "148504865893654528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1229586190/tiny_shasta_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1229586190/tiny_shasta_normal.PNG", "source": "<a href="http://multwiple.com" rel="nofollow">multwiple</a>", "text": "NoSQL: What is it Good For? #cassandra http://t.co/w2AMcB6N", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:48:05 +0000", "from_user": "lukashasik", "from_user_id": 40207923, "from_user_id_str": "40207923", "from_user_name": "Lukas Hasik", "geo": null, "id": 148504832796409860, "id_str": "148504832796409856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/314905003/lukas_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/314905003/lukas_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @_dagi Pondelni #czjug Lightning Talks rozdeleny do tracku: NoSQL/High scalability, REST/Web, Java a Tools http://t.co/5MVBlph8 #missit", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:41:20 +0000", "from_user": "Nmaster64", "from_user_id": 14329137, "from_user_id_str": "14329137", "from_user_name": "David C.", "geo": null, "id": 148503132824027140, "id_str": "148503132824027137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1093236091/DarkLink_Headshot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1093236091/DarkLink_Headshot_normal.jpg", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "@Unaz I first read that w/ \"view query\" cut off and was highly amused by the thought of swapping some random guy's post w/ a block of NoSQL.", "to_user": "Unaz", "to_user_id": 16113206, "to_user_id_str": "16113206", "to_user_name": "Erik", "in_reply_to_status_id": 148501836708585470, "in_reply_to_status_id_str": "148501836708585472"}, +{"created_at": "Sun, 18 Dec 2011 20:41:15 +0000", "from_user": "si2w", "from_user_id": 232142129, "from_user_id_str": "232142129", "from_user_name": "si2w", "geo": null, "id": 148503112750080000, "id_str": "148503112750080000", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1653575968/3691829358_2d92e8b67a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653575968/3691829358_2d92e8b67a_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @jllachf: http://t.co/7npCzfZU nice job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:36:11 +0000", "from_user": "Unaz", "from_user_id": 16113206, "from_user_id_str": "16113206", "from_user_name": "Erik", "geo": null, "id": 148501836708585470, "id_str": "148501836708585472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/59355136/kross_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/59355136/kross_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Nmaster64 @ZeRootOfAllEvil The best part is what I did yesterday was write a 150 line nosql function to replace the forum thread view query", "to_user": "Nmaster64", "to_user_id": 14329137, "to_user_id_str": "14329137", "to_user_name": "David C.", "in_reply_to_status_id": 148500565226299400, "in_reply_to_status_id_str": "148500565226299392"}, +{"created_at": "Sun, 18 Dec 2011 20:35:15 +0000", "from_user": "asthukral", "from_user_id": 15422017, "from_user_id_str": "15422017", "from_user_name": "asthukral", "geo": null, "id": 148501599629754370, "id_str": "148501599629754368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/Zh1ik4Zb need to know your context", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:34:25 +0000", "from_user": "asthukral", "from_user_id": 15422017, "from_user_id_str": "15422017", "from_user_name": "asthukral", "geo": null, "id": 148501392997359600, "id_str": "148501392997359616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/N2Dy3g9g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:34:15 +0000", "from_user": "asthukral", "from_user_id": 15422017, "from_user_id_str": "15422017", "from_user_name": "asthukral", "geo": null, "id": 148501349590499330, "id_str": "148501349590499329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "@gigaom need to know your context before riding the noSQL bandwagon", "to_user": "gigaom", "to_user_id": 2893971, "to_user_id_str": "2893971", "to_user_name": "GigaOM", "in_reply_to_status_id": 148134036009787400, "in_reply_to_status_id_str": "148134036009787394"}, +{"created_at": "Sun, 18 Dec 2011 20:33:50 +0000", "from_user": "AxelTroike", "from_user_id": 287275135, "from_user_id_str": "287275135", "from_user_name": "Axel Troike", "geo": null, "id": 148501243076157440, "id_str": "148501243076157440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1323773278/at2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1323773278/at2_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @pbokelly: NoSQL: the Klingon rite of ascension of database management http://t.co/f7mhef1c", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Sun, 18 Dec 2011 20:32:27 +0000", "from_user": "geniusboywonder", "from_user_id": 17383891, "from_user_id_str": "17383891", "from_user_name": "geniusboywonder", "geo": null, "id": 148500895255113730, "id_str": "148500895255113728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1491645281/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1491645281/image_normal.jpg", "source": "Zite Personalized Magazine", "text": "NoSQL's great, but bring your A game http://t.co/RB1RCwLH via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:25:39 +0000", "from_user": "Han_Cholo", "from_user_id": 15436161, "from_user_id_str": "15436161", "from_user_name": "Andrew Rubalcaba", "geo": null, "id": 148499183790329860, "id_str": "148499183790329856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/461496225/marcoerikestrada3wb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/461496225/marcoerikestrada3wb_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @old_sound: RabbitMQ in Action is a book for hipsters. See this excerpt: \"Mnesia, the Erlang database that was there even before NoSQL was cool\".", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:12:03 +0000", "from_user": "Foritus", "from_user_id": 197887758, "from_user_id_str": "197887758", "from_user_name": "Richard Thorne", "geo": null, "id": 148495763738075140, "id_str": "148495763738075136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1600316160/House-Life_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600316160/House-Life_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Just watched @r39132 's fantastic qcon presentation about Netflix and SimpleDB, a reminder that NoSQL != NoProblems http://t.co/BVCeeupJ :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:10:59 +0000", "from_user": "strzalekk", "from_user_id": 19115131, "from_user_id_str": "19115131", "from_user_name": "\\u0141ukasz Strza\\u0142kowski", "geo": null, "id": 148495496665772030, "id_str": "148495496665772032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/915013407/e28434223c9c5d2ee0d7f7b7c887b36a_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/915013407/e28434223c9c5d2ee0d7f7b7c887b36a_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "@roidrage you better hurry up with NoSQL Handbook, I'm waiting!", "to_user": "roidrage", "to_user_id": 14658472, "to_user_id_str": "14658472", "to_user_name": "Mathias Meyer", "in_reply_to_status_id": 148495157518536700, "in_reply_to_status_id_str": "148495157518536704"}, +{"created_at": "Sun, 18 Dec 2011 20:09:27 +0000", "from_user": "HadoopNews", "from_user_id": 251816878, "from_user_id_str": "251816878", "from_user_name": "John Ching", "geo": null, "id": 148495108239663100, "id_str": "148495108239663104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1244235692/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1244235692/images_normal.jpg", "source": "Zite Personalized Magazine", "text": "#NoSQL's great, but bring your A game http://t.co/L4w16H6X", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:07:55 +0000", "from_user": "ijedouglas", "from_user_id": 20246682, "from_user_id_str": "20246682", "from_user_name": "Ian Douglas", "geo": null, "id": 148494723819122700, "id_str": "148494723819122688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1219595791/161422_607241248_1562486_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1219595791/161422_607241248_1562486_q_normal.jpg", "source": "<a href="http://www.alphonsolabs.com/" rel="nofollow">Pulse News</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/aFgx45t0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:03:50 +0000", "from_user": "benjochems", "from_user_id": 174597976, "from_user_id_str": "174597976", "from_user_name": "Ben Jochems", "geo": null, "id": 148493695736483840, "id_str": "148493695736483840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1179447647/18a0d9f_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1179447647/18a0d9f_1__normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @gigaom: #NoSQL\\u2019s great, but bring your A game http://t.co/AXk1D3PG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:02:03 +0000", "from_user": "enca64", "from_user_id": 418967392, "from_user_id_str": "418967392", "from_user_name": "encarna ", "geo": null, "id": 148493244588752900, "id_str": "148493244588752897", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "22 Dec. webinar : RDBMS and NoSQL, And Beyond http://t.co/8M8BOjTT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:58:21 +0000", "from_user": "vsouders", "from_user_id": 13965322, "from_user_id_str": "13965322", "from_user_name": "vsouders", "geo": null, "id": 148492314258571260, "id_str": "148492314258571264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/51111822/avatar_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/51111822/avatar_normal.gif", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/1kuAHz9P", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:35:02 +0000", "from_user": "gandalf0610", "from_user_id": 24872003, "from_user_id_str": "24872003", "from_user_name": "Patrick Whelan", "geo": null, "id": 148486447446495230, "id_str": "148486447446495232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "NoSQL's great, but bring your A game http://t.co/gpApxsZo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:25:28 +0000", "from_user": "d8Pit", "from_user_id": 264394701, "from_user_id_str": "264394701", "from_user_name": "The URL Popularizer", "geo": null, "id": 148484041828601860, "id_str": "148484041828601856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317284522/logo-header_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317284522/logo-header_normal.png", "source": "<a href="http://d8p.it" rel="nofollow">d8P</a>", "text": "RT @TechFanas: Introduction to Oracle's NoSQL Database #cloud #NoSql | http://t.co/6ClVY5eG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:24:23 +0000", "from_user": "TechFanas", "from_user_id": 353817699, "from_user_id_str": "353817699", "from_user_name": "TechFanas", "geo": null, "id": 148483766501912580, "id_str": "148483766501912576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1509977280/Logo-TechFanas_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509977280/Logo-TechFanas_normal.png", "source": "<a href="http://www.ajaymatharu.com/" rel="nofollow">Tweet Old Post</a>", "text": "Introduction to Oracle's NoSQL Database http://t.co/ezhSzRSl #cloud #NoSql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:23:35 +0000", "from_user": "_kulbir", "from_user_id": 192492245, "from_user_id_str": "192492245", "from_user_name": "Kulbir Saini", "geo": null, "id": 148483567402496000, "id_str": "148483567402496000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689392135/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689392135/profile_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @DEVOPS_BORAT: Attention devops: \"learn NoSQL\" is not same as \"learn no SQL\"!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:20:30 +0000", "from_user": "lukas_krecan", "from_user_id": 40662802, "from_user_id_str": "40662802", "from_user_name": "Lukas Krecan", "geo": null, "id": 148482791590473730, "id_str": "148482791590473729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1337533528/profil_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1337533528/profil_normal.jpg", "source": "<a href="http://twitter.com" rel="nofollow">Tweetie for Mac</a>", "text": "RT @_dagi: Pondelni #czjug Lightning Talks rozdeleny do techto tracku: NoSQL/High scalability, REST/Web, Java a Tools http://t.co/vvrzzuq8 prosim RT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:20:30 +0000", "from_user": "ches", "from_user_id": 790104, "from_user_id_str": "790104", "from_user_name": "Ches Martin \\u265E", "geo": null, "id": 148482789732384770, "id_str": "148482789732384769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/58213153/mr_pensive_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/58213153/mr_pensive_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @jonpierce: Check out @Basho on @Workvibe today. One of my fav deep tech co's in Boston. Great team, killer product in Riak. http://t.co/KsvmdGbq #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:19:01 +0000", "from_user": "old_sound", "from_user_id": 16484216, "from_user_id_str": "16484216", "from_user_name": "Alvaro Videla", "geo": null, "id": 148482416812634100, "id_str": "148482416812634112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1228830603/DSC05906_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1228830603/DSC05906_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RabbitMQ in Action is a book for hipsters. See this excerpt: \"Mnesia, the Erlang database that was there even before NoSQL was cool\".", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:11:23 +0000", "from_user": "fe_aragon", "from_user_id": 22362198, "from_user_id_str": "22362198", "from_user_name": "Felipe M. Aragon", "geo": null, "id": 148480494365974530, "id_str": "148480494365974528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1096112377/felipe_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1096112377/felipe_normal.png", "source": "<a href="http://splitweet.com" rel="nofollow">Splitweet</a>", "text": "RT @syhunt Sandcat Pro 4.2.8 adds NoSQL Injection detection http://t.co/z83bd5zi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:10:59 +0000", "from_user": "johnny723", "from_user_id": 13001002, "from_user_id_str": "13001002", "from_user_name": "Johnny Chan", "geo": null, "id": 148480394583486460, "id_str": "148480394583486464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1258068103/johnny__large__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1258068103/johnny__large__normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "RT @HackerNewsYC: NoSQL\\u2019s great, but bring your A game http://t.co/j0TqHDC3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:06:35 +0000", "from_user": "tim_yates", "from_user_id": 16680935, "from_user_id_str": "16680935", "from_user_name": "Tim Yates", "geo": null, "id": 148479289166266370, "id_str": "148479289166266368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/422071707/tweet2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/422071707/tweet2_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @dslevin: NoSQL's great, but bring your A game http://t.co/a2l9uo6x", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:05:28 +0000", "from_user": "pbokelly", "from_user_id": 26058258, "from_user_id_str": "26058258", "from_user_name": "Peter O'Kelly", "geo": null, "id": 148479007887851520, "id_str": "148479007887851520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/349219461/petero_kelly_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/349219461/petero_kelly_pic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL: the Klingon rite of ascension of database management http://t.co/MP4HPLo0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:02:13 +0000", "from_user": "syhunt", "from_user_id": 12798532, "from_user_id_str": "12798532", "from_user_name": "Syhunt", "geo": null, "id": 148478188601876480, "id_str": "148478188601876480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1126720714/sandcat_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1126720714/sandcat_twitter_normal.png", "source": "<a href="http://splitweet.com" rel="nofollow">Splitweet</a>", "text": "Time-Based Blind NoSQL Injection http://t.co/0y2oliQj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:57:47 +0000", "from_user": "molloycr", "from_user_id": 50644070, "from_user_id_str": "50644070", "from_user_name": "Chris Molloy", "geo": null, "id": 148477073659408400, "id_str": "148477073659408384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1211071240/Chris_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1211071240/Chris_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "NoSQL's great, but bring your A game http://t.co/pEnMyAKg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:52:17 +0000", "from_user": "daveof", "from_user_id": 44096146, "from_user_id_str": "44096146", "from_user_name": "Dave O'Flanagan", "geo": null, "id": 148475687228018700, "id_str": "148475687228018689", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1312614727/edit_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312614727/edit_normal.jpeg", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "RT @dermot_oc: NoSQL\\u2019s great, but bring your A game http://t.co/EA0Am6ZZ #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:47:07 +0000", "from_user": "syhunt", "from_user_id": 12798532, "from_user_id_str": "12798532", "from_user_name": "Syhunt", "geo": null, "id": 148474389590052860, "id_str": "148474389590052864", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1126720714/sandcat_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1126720714/sandcat_twitter_normal.png", "source": "<a href="http://splitweet.com" rel="nofollow">Splitweet</a>", "text": "Sandcat Pro 4.2.8 adds NoSQL Injection detection http://t.co/oPv3KQan", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:45:28 +0000", "from_user": "airjrdn", "from_user_id": 15394566, "from_user_id_str": "15394566", "from_user_name": "airjrdn", "geo": null, "id": 148473975163453440, "id_str": "148473975163453440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/89213431/Bill_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/89213431/Bill_normal.jpg", "source": "<a href="http://omz-software.com/newsstand" rel="nofollow">NewsRack</a>", "text": "NoSQL\\u2019s great, but bring your A game - http://t.co/zGKypG9Y", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:38:28 +0000", "from_user": "jessenoller", "from_user_id": 14100497, "from_user_id_str": "14100497", "from_user_name": "jessenoller", "geo": null, "id": 148472212540764160, "id_str": "148472212540764160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1263045963/Photo_on_2011-03-05_at_15.59_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263045963/Photo_on_2011-03-05_at_15.59_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@zzzeek @benbangert The question I have is how to get bigger publications to be interest in python stuff - that was a cloud/nosql fluffer", "to_user": "zzzeek", "to_user_id": 15088129, "to_user_id_str": "15088129", "to_user_name": "mike bayer"}, +{"created_at": "Sun, 18 Dec 2011 18:35:17 +0000", "from_user": "TechnoMile", "from_user_id": 89779407, "from_user_id_str": "89779407", "from_user_name": "TechnoMile LLC", "geo": null, "id": 148471411248349200, "id_str": "148471411248349184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1187113101/techomile_normal_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1187113101/techomile_normal_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL's great, but bring your A game \\u2014 Cloud Computing Newshttp://twitter.com/emilipattshivr: NoSQL's great, but... http://t.co/QhmtlYWK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:22:24 +0000", "from_user": "inSoftwareToday", "from_user_id": 259345366, "from_user_id_str": "259345366", "from_user_name": "LinkedIn Software", "geo": null, "id": 148468170636791800, "id_str": "148468170636791808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1260319814/thumbscompsci_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1260319814/thumbscompsci_normal.png", "source": "<a href="http://www.linkedin.com" rel="nofollow">linkedin_today</a>", "text": "NoSQL's great, but bring your A game (http://t.co/GRybKm75) http://t.co/ytArrXiu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:19:03 +0000", "from_user": "emilipattshivr", "from_user_id": 329430844, "from_user_id_str": "329430844", "from_user_name": "Emilio Patton", "geo": null, "id": 148467325178359800, "id_str": "148467325178359808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1426884044/1309832402_clouds_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1426884044/1309832402_clouds_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL's great, but bring your A game \\u2014 Cloud Computing News", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 18:14:19 +0000", "from_user": "partham", "from_user_id": 21061921, "from_user_id_str": "21061921", "from_user_name": "Partha Mukhopadhyay", "geo": null, "id": 148466135942168580, "id_str": "148466135942168577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1134989172/Image2243_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1134989172/Image2243_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "NoSQL's great, but bring your A game http://t.co/NMdhOVW3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:40:52 +0000", "from_user": "d6rkaiz", "from_user_id": 5948782, "from_user_id_str": "5948782", "from_user_name": "d6rkaiz", "geo": null, "id": 148457715130302460, "id_str": "148457715130302465", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1272155085/5948782_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1272155085/5948782_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\\u7B2C2\\u56DE MySQL5.6 - \\u3055\\u3089\\u306A\\u308B\\u6A5F\\u80FD\\u8FFD\\u52A0\\u3068NoSQL | Think IT: http://t.co/MWTn6Uai via @AddThis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:40:36 +0000", "from_user": "d6rkaiz", "from_user_id": 5948782, "from_user_id_str": "5948782", "from_user_name": "d6rkaiz", "geo": null, "id": 148457648298262530, "id_str": "148457648298262528", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1272155085/5948782_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1272155085/5948782_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\\u7B2C3\\u56DE NoSQL\\uFF06RDBMS\\u30AF\\u30E9\\u30B9\\u30BF MySQL Cluster | Think IT: http://t.co/GEEIh7p4 via @AddThis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:38:31 +0000", "from_user": "mikepluta", "from_user_id": 15150700, "from_user_id_str": "15150700", "from_user_name": "Mike Pluta", "geo": null, "id": 148457124463247360, "id_str": "148457124463247362", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1584807716/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584807716/image_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "10gen - MongoDB and NoSQL video, webcasts, presentations, and more http://t.co/jw7D4a9o #bigdata #mongodb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:36:53 +0000", "from_user": "mikepluta", "from_user_id": 15150700, "from_user_id_str": "15150700", "from_user_name": "Mike Pluta", "geo": null, "id": 148456713698295800, "id_str": "148456713698295810", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1584807716/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584807716/image_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/xTUnxogz #bigdata @gigaom", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:36:30 +0000", "from_user": "avkashchauhan", "from_user_id": 213118614, "from_user_id_str": "213118614", "from_user_name": "Avkash Chauhan", "geo": null, "id": 148456618651160580, "id_str": "148456618651160577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1615647152/asc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615647152/asc_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#MongoDB might be a popular choice in #NoSQL databases, but it\\u2019s not perfect - http://t.co/lkTJD60z @gigaom", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:36:07 +0000", "from_user": "jnape", "from_user_id": 240073274, "from_user_id_str": "240073274", "from_user_name": "John Napier", "geo": null, "id": 148456522282835970, "id_str": "148456522282835970", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1619370052/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619370052/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "It just occurred to me that our [immediate] future in NoSQL DBs may be phasing out conventional DBA as a profession. Q: Did we ever need it?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:15:58 +0000", "from_user": "hofri", "from_user_id": 11936592, "from_user_id_str": "11936592", "from_user_name": "yehuda hofri", "geo": null, "id": 148451450354286600, "id_str": "148451450354286592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/300504667/foto_yehuda_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/300504667/foto_yehuda_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "NoSQL 2.0 .. checking out RavenDB http://t.co/mmwm2JOT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:06:15 +0000", "from_user": "ashithraj", "from_user_id": 11663732, "from_user_id_str": "11663732", "from_user_name": "ashithraj", "geo": null, "id": 148449006316560400, "id_str": "148449006316560385", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1274205803/862634f9-1830-4c21-a3cc-37e9198b393f_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1274205803/862634f9-1830-4c21-a3cc-37e9198b393f_normal.png", "source": "<a href="http://bit.ly/g9oge9" rel="nofollow">Tech News Now</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/MPKtD50v", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:01:03 +0000", "from_user": "alsahh", "from_user_id": 207405374, "from_user_id_str": "207405374", "from_user_name": "Peter Thiel", "geo": null, "id": 148447695713992700, "id_str": "148447695713992704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1528753781/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1528753781/me_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"Auction and Bidding Applications with Document-Based NoSQL\" http://t.co/MO9aQshX #NoSQL #RavenDB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:59:48 +0000", "from_user": "jirifabian", "from_user_id": 15688167, "from_user_id_str": "15688167", "from_user_name": "Jiri Fabian \\u2622", "geo": null, "id": 148447382772785150, "id_str": "148447382772785152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1185013901/Screen_shot_2010-12-07_at_9.33.46_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1185013901/Screen_shot_2010-12-07_at_9.33.46_PM_normal.png", "source": "<a href="http://twitter.com" rel="nofollow">Tweetie for Mac</a>", "text": "RT @_dagi: Pondelni #czjug Lightning Talks rozdeleny do techto tracku: NoSQL/High scalability, REST/Web, Java a Tools http://t.co/vvrzzuq8 prosim RT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:49:37 +0000", "from_user": "syntheticzero", "from_user_id": 17917064, "from_user_id_str": "17917064", "from_user_name": "Mitsu Hadeishi", "geo": null, "id": 148444818811535360, "id_str": "148444818811535362", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1266244101/mitsuface3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266244101/mitsuface3_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "Valuable scalability tales RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/VAWHJSPs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:47:48 +0000", "from_user": "newblogkz", "from_user_id": 401373072, "from_user_id_str": "401373072", "from_user_name": "GM", "geo": null, "id": 148444361775005700, "id_str": "148444361775005696", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1613788736/new2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1613788736/new2_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\\u0421\\u0442\\u0430\\u0442\\u044C\\u044F: cassandra, \\u043F\\u0435\\u0440\\u0432\\u044B\\u0435 \\u0448\\u0430\\u0433\\u0438 \\u0432 NoSQL. (\\u0447\\u0430\\u0441\\u0442\\u044C 1. Debain, \\u0443\\u0441\\u0442\\u0430\\u043D\\u043E\\u0432\\u043A\\u0430) http://t.co/aK2dueg0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:42:23 +0000", "from_user": "mdaisuke", "from_user_id": 23722273, "from_user_id_str": "23722273", "from_user_name": "Daisuke Mori", "geo": null, "id": 148442998324199420, "id_str": "148442998324199424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1243093879/ore_with_macbook_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1243093879/ore_with_macbook_normal.JPG", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "RT @Sixeight: \\u201CPractical NoSQL - Solving a Real Problem with MongoDB and Redis\\u201D http://t.co/U3m8f1QP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:42:12 +0000", "from_user": "chrismckee", "from_user_id": 14406257, "from_user_id_str": "14406257", "from_user_name": "Chris McKee", "geo": null, "id": 148442952140734460, "id_str": "148442952140734464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/358802305/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/358802305/twitterProfilePhoto_normal.jpg", "source": "<a href="http://www.metrotwit.com/" rel="nofollow">MetroTwit</a>", "text": "Facebook Timeline shows mysql still has legs http://t.co/36Mz9HeB and that fb have resisted jumping on the nosql mines shinier bandwagon", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:33:29 +0000", "from_user": "somkiat", "from_user_id": 14053735, "from_user_id_str": "14053735", "from_user_name": "UP1", "geo": null, "id": 148440757244661760, "id_str": "148440757244661761", "iso_language_code": "th", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/925551910/4db95ccd-33db-4d03-be01-292013d5abdb_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/925551910/4db95ccd-33db-4d03-be01-292013d5abdb_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Search Analytics: Business Value & BigData NoSQL Backend http://t.co/ib6axh4d \\u0E1E\\u0E39\\u0E14\\u0E44\\u0E14\\u0E49\\u0E19\\u0E48\\u0E32\\u0E2A\\u0E19\\u0E43\\u0E08\\u0E40\\u0E01\\u0E35\\u0E48\\u0E22\\u0E27\\u0E01\\u0E32\\u0E23\\u0E27\\u0E34\\u0E40\\u0E04\\u0E23\\u0E32\\u0E30\\u0E2B\\u0E4C\\u0E01\\u0E32\\u0E23\\u0E04\\u0E49\\u0E19\\u0E2B\\u0E32\\u0E02\\u0E2D\\u0E07\\u0E1C\\u0E39\\u0E49\\u0E43\\u0E0A\\u0E49\\u0E07\\u0E32\\u0E19", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:32:36 +0000", "from_user": "Sixeight", "from_user_id": 6160692, "from_user_id_str": "6160692", "from_user_name": "Tomohiro Nishimura", "geo": null, "id": 148440536246796300, "id_str": "148440536246796288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1288962293/RIMG0079_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1288962293/RIMG0079_normal.jpeg", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "\\u201CPractical NoSQL - Solving a Real Problem with MongoDB and Redis\\u201D http://t.co/U3m8f1QP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:28:52 +0000", "from_user": "ayende", "from_user_id": 14454642, "from_user_id_str": "14454642", "from_user_name": "ayende", "geo": null, "id": 148439595120472060, "id_str": "148439595120472066", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/350174796/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/350174796/twitterProfilePhoto_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @RavenDB: New video: Polymorphism and #RavenDB http://t.co/qKb84X1B #nosql #dotnet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:27:11 +0000", "from_user": "HiberRhinos", "from_user_id": 331662346, "from_user_id_str": "331662346", "from_user_name": "Hibernating Rhinos", "geo": null, "id": 148439174113017860, "id_str": "148439174113017857", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1432331739/HR_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1432331739/HR_normal.PNG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @RavenDB: New video: Polymorphism and #RavenDB http://t.co/qKb84X1B #nosql #dotnet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:24:55 +0000", "from_user": "EenProgrammeur", "from_user_id": 239876283, "from_user_id_str": "239876283", "from_user_name": "EenProgrammeur", "geo": null, "id": 148438603641536500, "id_str": "148438603641536513", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1219654675/theme-xml_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1219654675/theme-xml_normal.gif", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"Cassandra for LOBS\" http://t.co/7pMwN8lU #NoSQL #Cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:24:18 +0000", "from_user": "RavenDB", "from_user_id": 331695242, "from_user_id_str": "331695242", "from_user_name": "RavenDB", "geo": null, "id": 148438449937072130, "id_str": "148438449937072128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1438347989/RavenDBliconBurgandy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1438347989/RavenDBliconBurgandy_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "New video: Polymorphism and #RavenDB http://t.co/qKb84X1B #nosql #dotnet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:19:31 +0000", "from_user": "danieldeluca", "from_user_id": 14715465, "from_user_id_str": "14715465", "from_user_name": "Daniel De Luca", "geo": +{"coordinates": [50.6537,4.5574], "type": "Point"}, "id": 148437244145971200, "id_str": "148437244145971200", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1210005546/dad-01_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1210005546/dad-01_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Introducing #hadoop (#NoSQL) in 20 pages. - http://t.co/hQuxmEMw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:17:26 +0000", "from_user": "supermem613", "from_user_id": 219014464, "from_user_id_str": "219014464", "from_user_name": "Marcus Markiewicz", "geo": null, "id": 148436718381563900, "id_str": "148436718381563904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1606070757/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606070757/image_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "#NoSQL\\u2019s great, but bring your A game. http://t.co/cRuxYf2Q", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:05:05 +0000", "from_user": "ITJobsinUSA", "from_user_id": 20668038, "from_user_id_str": "20668038", "from_user_name": "IT Jobs in the USA", "geo": null, "id": 148433612222631940, "id_str": "148433612222631937", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/79294538/20861781_21383609_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/79294538/20861781_21383609_normal.jpg", "source": "<a href="http://www.twitjobsearch.com/" rel="nofollow">TwitJobSearch.com Jobs</a>", "text": "PHP Developer - JavaScript, HTML, CSS, SQL, NoSQL, Large Scale - San Mateo - U... #jobs http://t.co/aKDpVLtR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:00:58 +0000", "from_user": "sunilvemuri", "from_user_id": 54229467, "from_user_id_str": "54229467", "from_user_name": "Sunil Vemuri", "geo": null, "id": 148432577710145540, "id_str": "148432577710145536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/761389512/Sunil_Vemuri-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/761389512/Sunil_Vemuri-1_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "NoSQL's great, but bring your A game http://t.co/ht5hysvm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:00:52 +0000", "from_user": "katox", "from_user_id": 17165319, "from_user_id_str": "17165319", "from_user_name": "Kamil Toman", "geo": null, "id": 148432552011628540, "id_str": "148432552011628544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/63586818/650720_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/63586818/650720_normal.jpg", "source": "<a href="http://twitter.com" rel="nofollow">Tweetie for Mac</a>", "text": "RT @_dagi: Pondelni #czjug Lightning Talks rozdeleny do techto tracku: NoSQL/High scalability, REST/Web, Java a Tools http://t.co/vvrzzuq8 prosim RT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:57:14 +0000", "from_user": "tom_nichols", "from_user_id": 18992617, "from_user_id_str": "18992617", "from_user_name": "Thom Nichols", "geo": null, "id": 148431634507640830, "id_str": "148431634507640832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/365347476/profile_picture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/365347476/profile_picture_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @dslevin: NoSQL's great, but bring your A game http://t.co/a2l9uo6x", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:51:41 +0000", "from_user": "abu07b_RSS", "from_user_id": 278047297, "from_user_id_str": "278047297", "from_user_name": "abu07b-RSS", "geo": null, "id": 148430241587662850, "id_str": "148430241587662848", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "InfoQ Japan: James Phillips \\u6C0F\\u304C\\u8A9E\\u308B\\u300C\\u30EA\\u30EC\\u30FC\\u30B7\\u30E7\\u30CA\\u30EB\\u304B\\u3089 NoSQL \\u3078\\u306E\\u30C7\\u30FC\\u30BF\\u30D9\\u30FC\\u30B9\\u79FB\\u884C\\u300D http://t.co/TGI8LHPG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:50:29 +0000", "from_user": "mekkaokereke", "from_user_id": 19847709, "from_user_id_str": "19847709", "from_user_name": "Mekka Okereke", "geo": null, "id": 148429938406596600, "id_str": "148429938406596609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/990000746/profile_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/990000746/profile_pic_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @chrismarin NoSQL's great, but bring your A game http://t.co/zQNECjeV via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:30:10 +0000", "from_user": "digg_m8y", "from_user_id": 389230394, "from_user_id_str": "389230394", "from_user_name": "Digg News", "geo": null, "id": 148424825726173200, "id_str": "148424825726173184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1626739141/digg_m8y_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626739141/digg_m8y_normal.png", "source": "<a href="http://atm8y.com" rel="nofollow">@m8y</a>", "text": "How Digg is Built? Using a Bunch of NoSQL technologies :: myNoSQL #digg http://t.co/106oP72D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:25:38 +0000", "from_user": "dwiardiirawan", "from_user_id": 20668782, "from_user_id_str": "20668782", "from_user_name": "d.a.i.licious \\u00AE ", "geo": null, "id": 148423682950316030, "id_str": "148423682950316032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1645389617/twitter02_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645389617/twitter02_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"Auction and Bidding Applications with Document-Based NoSQL\" http://t.co/MO9aQshX #NoSQL #RavenDB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:23:35 +0000", "from_user": "DZone", "from_user_id": 14782935, "from_user_id_str": "14782935", "from_user_name": "DZone", "geo": null, "id": 148423170167275520, "id_str": "148423170167275521", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/258714549/dzone-square-256_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/258714549/dzone-square-256_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\"Auction and Bidding Applications with Document-Based NoSQL\" http://t.co/MO9aQshX #NoSQL #RavenDB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:19:45 +0000", "from_user": "DZone", "from_user_id": 14782935, "from_user_id_str": "14782935", "from_user_name": "DZone", "geo": null, "id": 148422202939818000, "id_str": "148422202939817984", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/258714549/dzone-square-256_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/258714549/dzone-square-256_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\"Cassandra for LOBS\" http://t.co/7pMwN8lU #NoSQL #Cassandra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:19:17 +0000", "from_user": "DZone", "from_user_id": 14782935, "from_user_id_str": "14782935", "from_user_name": "DZone", "geo": null, "id": 148422086589812740, "id_str": "148422086589812737", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/258714549/dzone-square-256_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/258714549/dzone-square-256_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\"Search Analytics: Business Value & BigData NoSQL Backend\" http://t.co/s42CjF94 #BigData #Solr #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:18:39 +0000", "from_user": "adrianionel", "from_user_id": 11917312, "from_user_id_str": "11917312", "from_user_name": "Adrian Ionel", "geo": null, "id": 148421924983287800, "id_str": "148421924983287808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/54491752/adrian_3648_3_sq_medium_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/54491752/adrian_3648_3_sq_medium_2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "NoSQL is great but takes top talent. Disney, Foursquare and Wordnik share their MongoDB experience. http://t.co/mrOXnIKt #yam", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:05:05 +0000", "from_user": "yegle", "from_user_id": 14157249, "from_user_id_str": "14157249", "from_user_name": "\\u4E00\\u9601", "geo": null, "id": 148418514007498750, "id_str": "148418514007498752", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1122670876/gravatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1122670876/gravatar_normal.png", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@lfeng \\u6211\\u7684\\u76EE\\u6807\\u662F\\u628A\\u6570\\u636E\\u5E93\\u632A\\u5230GAE\\u4E0A\\u2026\\u5FC5\\u987B\\u8981\\u7814\\u7A76NoSQL\\u554A\\u2026", "to_user": "lfeng", "to_user_id": 8759082, "to_user_id_str": "8759082", "to_user_name": "lfeng", "in_reply_to_status_id": 148418155922993150, "in_reply_to_status_id_str": "148418155922993152"}, +{"created_at": "Sun, 18 Dec 2011 15:02:20 +0000", "from_user": "hfeeds", "from_user_id": 273857521, "from_user_id_str": "273857521", "from_user_name": "myfeeds", "geo": null, "id": 148417822425493500, "id_str": "148417822425493504", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "James Phillips \\u6C0F\\u304C\\u8A9E\\u308B\\u300C\\u30EA\\u30EC\\u30FC\\u30B7\\u30E7\\u30CA\\u30EB\\u304B\\u3089 NoSQL \\u3078\\u306E\\u30C7\\u30FC\\u30BF\\u30D9\\u30FC\\u30B9\\u79FB\\u884C\\u300D http://t.co/Mnd9MPM0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 15:00:32 +0000", "from_user": "patrickDurusau", "from_user_id": 152194866, "from_user_id_str": "152194866", "from_user_name": "Patrick Durusau", "geo": null, "id": 148417366278152200, "id_str": "148417366278152192", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/961579480/patrick_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/961579480/patrick_normal.jpeg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Cassandra - London Podcasts #topicmaps #Cassandra #NoSQL - http://t.co/5ZxrUp88", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:58:18 +0000", "from_user": "drune", "from_user_id": 14625984, "from_user_id_str": "14625984", "from_user_name": "Luis Marques", "geo": null, "id": 148416803700350980, "id_str": "148416803700350977", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1341257689/super-twitter-282x300_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1341257689/super-twitter-282x300_normal.JPG", "source": "<a href="http://www.metrotwit.com/" rel="nofollow">MetroTwit</a>", "text": "Enterprise Edition of Oracle NoSQL database is 14.3MB... #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:58:10 +0000", "from_user": "hnws", "from_user_id": 18449183, "from_user_id_str": "18449183", "from_user_name": "hnws", "geo": null, "id": 148416771915907070, "id_str": "148416771915907072", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/68892084/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/68892084/Untitled_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u5173\\u7CFB\\u578B\\u8DDF NoSQL \\u4E92\\u76F8\\u66FF\\u6362\\u4E4B\\u7C7B\\u7684\\uFF0C\\u67D0\\u5927\\u578B\\u5546\\u4E1A\\u673A\\u6784\\u91CC\\u8FD8\\u6709\\u6307\\u5BFC\\u6027\\u6587\\u6863\\u5462(ry", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:50:15 +0000", "from_user": "lfeng", "from_user_id": 8759082, "from_user_id_str": "8759082", "from_user_name": "lfeng", "geo": null, "id": 148414779621515260, "id_str": "148414779621515264", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1199249916/6a211233022b5bd51a4cffba_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1199249916/6a211233022b5bd51a4cffba_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@yegle \\u8150\\u72F8\\u554A\\uFF0CNoSQL\\u7684\\u7279\\u6027\\uFF0C\\u4F60\\u8981\\u60F3\\u5F53\\u5173\\u7CFB\\u578B\\u6765\\u7528\\uFF0C\\u5F88\\u96BE\\u54DF", "to_user": "yegle", "to_user_id": 14157249, "to_user_id_str": "14157249", "to_user_name": "\\u4E00\\u9601", "in_reply_to_status_id": 148401242455015420, "in_reply_to_status_id_str": "148401242455015425"}, +{"created_at": "Sun, 18 Dec 2011 14:40:12 +0000", "from_user": "sjc_mis_jobs", "from_user_id": 103815507, "from_user_id_str": "103815507", "from_user_name": "SanjoseTechJobs", "geo": null, "id": 148412250254872580, "id_str": "148412250254872576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1237875058/monster_tweets_avitar_reasonably_small_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1237875058/monster_tweets_avitar_reasonably_small_normal.png", "source": "<a href="http://jobview.monster.com" rel="nofollow">Monster Job View</a>", "text": "Check out our job opening for a NoSQL Engineer / DBA in Cupertino, CA! Tata Consultancy Ser #Jobs http://t.co/DJtRXnlj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:38:31 +0000", "from_user": "yegle", "from_user_id": 14157249, "from_user_id_str": "14157249", "from_user_name": "\\u4E00\\u9601", "geo": null, "id": 148411828404371460, "id_str": "148411828404371458", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1122670876/gravatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1122670876/gravatar_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "\\u88AB\\u4EBA\\u4E00\\u53E5\\u8BDD\\u70B9\\u9192\\uFF1Awhat is the point of an ORM for a document database that is not in any way relational? NoSQL\\u4E3A\\u5565\\u9700\\u8981ORM\\u5462\\uFF1F", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:38:23 +0000", "from_user": "anibalrojas", "from_user_id": 19025695, "from_user_id_str": "19025695", "from_user_name": "An\\u00EDbal Rojas (en)", "geo": null, "id": 148411791439958000, "id_str": "148411791439958018", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1314724471/anibal-posterized-01_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1314724471/anibal-posterized-01_normal.jpeg", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "Been there, fun never ends RT @ae_bm: RT \"@jordimirobruix NoSQL\\u2019s great, but bring your A game http://t.co/p9OB4RSQ /cc @rhoml \"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:38:21 +0000", "from_user": "anibal", "from_user_id": 812920, "from_user_id_str": "812920", "from_user_name": "An\\u00EDbal Rojas", "geo": null, "id": 148411786612322300, "id_str": "148411786612322305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1314726186/anibal-posterized-01_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1314726186/anibal-posterized-01_normal.jpeg", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "Been there, fun never ends RT @ae_bm: RT \"@jordimirobruix NoSQL\\u2019s great, but bring your A game http://t.co/d1JLZbeh /cc @rhoml \"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:36:08 +0000", "from_user": "marek_gerhart", "from_user_id": 355451279, "from_user_id_str": "355451279", "from_user_name": "Marek Gerhart", "geo": null, "id": 148411228216229900, "id_str": "148411228216229888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1497079708/40525_1580193673177_1485720672_1669288_1070604_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1497079708/40525_1580193673177_1485720672_1669288_1070604_n_normal.jpg", "source": "<a href="http://twitter.com" rel="nofollow">Tweetie for Mac</a>", "text": "RT @_dagi: Pondelni #czjug Lightning Talks rozdeleny do techto tracku: NoSQL/High scalability, REST/Web, Java a Tools http://t.co/vvrzzuq8 prosim RT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:30:08 +0000", "from_user": "777final777feed", "from_user_id": 81675924, "from_user_id_str": "81675924", "from_user_name": "777final777feed", "geo": null, "id": 148409715754401800, "id_str": "148409715754401792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL's great, but bring your A game \\u2014 Cloud Computing News: At last week's MongoSV conference in Santa Clara, C... http://t.co/qdEmxfLj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:25:42 +0000", "from_user": "wesleylong", "from_user_id": 21544956, "from_user_id_str": "21544956", "from_user_name": "Wesley Long", "geo": null, "id": 148408601520771070, "id_str": "148408601520771074", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/81265024/Wesley2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/81265024/Wesley2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL's great, but bring your A game \\u2014 Cloud Computing News http://t.co/ZLNYsLI9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:23:33 +0000", "from_user": "_dagi", "from_user_id": 16532750, "from_user_id_str": "16532750", "from_user_name": "Roman Pichl\\u00EDk", "geo": null, "id": 148408059474083840, "id_str": "148408059474083840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/61020998/fotosmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/61020998/fotosmall_normal.jpg", "source": "<a href="http://twitter.com" rel="nofollow">Tweetie for Mac</a>", "text": "Pondelni #czjug Lightning Talks rozdeleny do techto tracku: NoSQL/High scalability, REST/Web, Java a Tools http://t.co/vvrzzuq8 prosim RT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:15:47 +0000", "from_user": "d8Pit", "from_user_id": 264394701, "from_user_id_str": "264394701", "from_user_name": "The URL Popularizer", "geo": null, "id": 148406104169254900, "id_str": "148406104169254912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317284522/logo-header_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317284522/logo-header_normal.png", "source": "<a href="http://d8p.it" rel="nofollow">d8P</a>", "text": "RT @dermot_oc: NoSQL\\u2019s great, but bring your A game #bigdata | http://t.co/3f06VF78", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:10:02 +0000", "from_user": "MongoQuestion", "from_user_id": 233820847, "from_user_id_str": "233820847", "from_user_name": "Mongo Question", "geo": null, "id": 148404659793563650, "id_str": "148404659793563648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1207364137/mq_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1207364137/mq_normal.jpg", "source": "<a href="http://learnmongo.com" rel="nofollow">Mongo Question</a>", "text": "\"Any Python ORM make full use of NoSQL's schema-less feature?\" #MongoDB - http://t.co/yWredmYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:09:58 +0000", "from_user": "pythonatso", "from_user_id": 244462999, "from_user_id_str": "244462999", "from_user_name": "PythonAtSO", "geo": null, "id": 148404640311025660, "id_str": "148404640311025665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1228917593/Screen_shot_2011-01-29_at_7.25.02_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1228917593/Screen_shot_2011-01-29_at_7.25.02_PM_normal.png", "source": "<a href="http://pythonatso.appspot.com/" rel="nofollow">@PythonAtSO</a>", "text": "Any Python ORM make full use of NoSQL's schema-less feature? http://t.co/1pf5JeHY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:09:40 +0000", "from_user": "TopCloudHosting", "from_user_id": 170814667, "from_user_id_str": "170814667", "from_user_name": "CloudComputing", "geo": null, "id": 148404565732106240, "id_str": "148404565732106241", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1090310223/cloud_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1090310223/cloud_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @trollkarlnet #NoSQL\\u2019s great, but bring your A game \\u2014 Cloud Computing News http://t.co/WLi2H80h: #NoSQL\\u2019s great, but bring your A...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:08:11 +0000", "from_user": "dermot_oc", "from_user_id": 213812970, "from_user_id_str": "213812970", "from_user_name": "Dermot O'Connor", "geo": null, "id": 148404192762003460, "id_str": "148404192762003456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1163516449/me-hd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1163516449/me-hd_normal.jpg", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/EA0Am6ZZ #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 14:01:01 +0000", "from_user": "trollkarlnet", "from_user_id": 45505753, "from_user_id_str": "45505753", "from_user_name": "Greg Skafte", "geo": null, "id": 148402390939344900, "id_str": "148402390939344896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/254106512/Personal-2006-05-16-PENTAX_Optio_W20-0004_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/254106512/Personal-2006-05-16-PENTAX_Optio_W20-0004_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "#NoSQL\\u2019s great, but bring your A game \\u2014 Cloud Computing News http://t.co/OFm1jQ37", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:56:28 +0000", "from_user": "yegle", "from_user_id": 14157249, "from_user_id_str": "14157249", "from_user_name": "\\u4E00\\u9601", "geo": null, "id": 148401242455015420, "id_str": "148401242455015425", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1122670876/gravatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1122670876/gravatar_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "\\u6709\\u771F\\u6B63\\u5145\\u5206\\u4F7F\\u7528\\u4E86NoSQL\\u7279\\u6027\\u7684Python ORM\\u5417\\uFF1F\\u7279\\u6307\\u90A3\\u79CD\\u6D3E\\u751F\\u7C7B\\u548C\\u7236\\u7C7B\\u653E\\u5728\\u4E00\\u4E2Acollection/table\\u7684ORM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:53:24 +0000", "from_user": "jaminguy", "from_user_id": 11055372, "from_user_id_str": "11055372", "from_user_name": "Jamin Guy", "geo": null, "id": 148400472745705470, "id_str": "148400472745705472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1537339154/SwanBall2011Face_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1537339154/SwanBall2011Face_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "NoSQL\\u2019s great, but bring your A game | Cloud Computing News http://t.co/PrgnPq2h", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:39:01 +0000", "from_user": "TopCloudHosting", "from_user_id": 170814667, "from_user_id_str": "170814667", "from_user_name": "CloudComputing", "geo": null, "id": 148396851983425540, "id_str": "148396851983425537", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1090310223/cloud_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1090310223/cloud_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @TechnoMile NoSQL\\u2019s great, but bring your A game \\u2014 Cloud Computing News | http://t.co/MPbcWtgwhttp://twitter.com/vakulkumarm... h...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:34:37 +0000", "from_user": "TechnoMile", "from_user_id": 89779407, "from_user_id_str": "89779407", "from_user_name": "TechnoMile LLC", "geo": null, "id": 148395746226487300, "id_str": "148395746226487296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1187113101/techomile_normal_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1187113101/techomile_normal_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game \\u2014 Cloud Computing News | http://t.co/MPbcWtgwhttp://twitter.com/vakulkumarm... http://t.co/P4LvbjdU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:31:10 +0000", "from_user": "bretthoerner", "from_user_id": 638913, "from_user_id_str": "638913", "from_user_name": "Brett Hoerner", "geo": null, "id": 148394878928302080, "id_str": "148394878928302080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1218545267/brett2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218545267/brett2_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"My ORM doesn't work well with NoSQL, so it sucks.\" What is this, I don't even. http://t.co/SdY5qDRK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:30:13 +0000", "from_user": "dotnetsoul", "from_user_id": 20122975, "from_user_id_str": "20122975", "from_user_name": "Vakul Kumar More", "geo": null, "id": 148394639077023740, "id_str": "148394639077023744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1430063576/VakulKMore-Twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1430063576/VakulKMore-Twitter_normal.jpg", "source": "<a href="http://smartr.mobi" rel="nofollow">smartr</a>", "text": "NoSQL\\u2019s great, but bring your A game \\u2014 Cloud Computing News | http://t.co/MPbcWtgw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:25:24 +0000", "from_user": "w3lab", "from_user_id": 6183722, "from_user_id_str": "6183722", "from_user_name": "Tristan Thomas", "geo": null, "id": 148393427757838340, "id_str": "148393427757838338", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1655919292/DSC_2163__2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655919292/DSC_2163__2__normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @skion: Whoa 1400+ #mongo's at Disney \\u201C@filos: NoSQL\\u2019s great, but bring your A game http://t.co/8lwNK8bq\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:20:28 +0000", "from_user": "edgar", "from_user_id": 812868, "from_user_id_str": "812868", "from_user_name": "Edgar Gonz\\u00E1lez", "geo": null, "id": 148392184402558980, "id_str": "148392184402558976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1563370607/IMG_1799_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1563370607/IMG_1799_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@ae_bm: RT \"@jordimirobruix NoSQL\\u2019s great, but bring your A game http://t.co/MnXAOPM4 /cc @rhoml \" /cc @anibal @edgar @thimotyd\\u201D thx!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:19:15 +0000", "from_user": "blysscomputers", "from_user_id": 110210484, "from_user_id_str": "110210484", "from_user_name": "Blyss Computers", "geo": null, "id": 148391877731819520, "id_str": "148391877731819520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/668487429/smileprofile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/668487429/smileprofile_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL for us RDBMS folks - MongoDB 101 | Javalobby: http://t.co/kq1KKDuc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:06:51 +0000", "from_user": "romsson", "from_user_id": 14898705, "from_user_id_str": "14898705", "from_user_name": "Romain Vuillemot", "geo": null, "id": 148388760097263600, "id_str": "148388760097263616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1646789005/moi-id-tof-effects-600x600-gplus_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646789005/moi-id-tof-effects-600x600-gplus_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @NicolasMax: NoSQL\\u2019s great, but bring your A game http://t.co/aYeFbuus", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:04:56 +0000", "from_user": "dominiek", "from_user_id": 8620452, "from_user_id_str": "8620452", "from_user_name": "Dominiek ter Heide", "geo": null, "id": 148388276418523140, "id_str": "148388276418523136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1318014532/blink_215_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1318014532/blink_215_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/N2Dy3g9g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:59:26 +0000", "from_user": "Ivan_Debnar", "from_user_id": 148461671, "from_user_id_str": "148461671", "from_user_name": "Ivan Debn\\u00E1r", "geo": null, "id": 148386893078347780, "id_str": "148386893078347777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1580165037/n797574571_1211920_7793_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580165037/n797574571_1211920_7793_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/EnyVZ4uZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:43:23 +0000", "from_user": "ostaquet", "from_user_id": 130800387, "from_user_id_str": "130800387", "from_user_name": "Olivier Staquet", "geo": null, "id": 148382854244605950, "id_str": "148382854244605955", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/853329375/P1010191_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/853329375/P1010191_normal.jpeg", "source": "<a href="http://www.apple.com" rel="nofollow">Safari on iOS</a>", "text": "#NoSQL is useful for some use cases, but it\\u2019s not for companies afraid of hard work. (cases studies) http://t.co/y75OaGGw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:36:54 +0000", "from_user": "kerneltime", "from_user_id": 14139529, "from_user_id_str": "14139529", "from_user_name": "Ritesh", "geo": null, "id": 148381218784808960, "id_str": "148381218784808960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/766072638/twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/766072638/twitter_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @RichRogersHDS: \"NoSQL is necessary for a lot of use cases, but it\\u2019s not for companies afraid of hard work.\" - @derrickharris http://t.co/ZwSk2iq7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:34:31 +0000", "from_user": "Andrey_Lomakin", "from_user_id": 96553655, "from_user_id_str": "96553655", "from_user_name": "Andrey Lomakin", "geo": null, "id": 148380622619025400, "id_str": "148380622619025409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1263883395/a_a4af1b6e_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263883395/a_a4af1b6e_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lgarulli: #OrientDB 1.0rc8-SNAPSHOT: 300% faster importing IMDB db than 1.0rc7. New relationships mgmt scales up much better! #graphdb #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:34:25 +0000", "from_user": "Andrey_Lomakin", "from_user_id": 96553655, "from_user_id_str": "96553655", "from_user_name": "Andrey Lomakin", "geo": null, "id": 148380597616775170, "id_str": "148380597616775168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1263883395/a_a4af1b6e_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263883395/a_a4af1b6e_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lgarulli: How to plug a new command in #OrientDB console? https://t.co/Dy5KjvVu #graphdb #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Sun, 18 Dec 2011 12:30:32 +0000", "from_user": "geoguru", "from_user_id": 2609201, "from_user_id_str": "2609201", "from_user_name": "geoguru", "geo": null, "id": 148379620268441600, "id_str": "148379620268441600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/563107275/353_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/563107275/353_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "NoSQL\\u2019s great, but bring your A game | Cloud Computing News http://t.co/18it8cp9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:26:36 +0000", "from_user": "Bizzabo", "from_user_id": 218061205, "from_user_id_str": "218061205", "from_user_name": "Bizzabo", "geo": null, "id": 148378628412026880, "id_str": "148378628412026880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1534197723/bizzabo_SQ_Small_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534197723/bizzabo_SQ_Small_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @couchbase: Big day tomorrow! #CouchConf Israel! get your tix to this #nosql event here --> http://t.co/vfV6nTRk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:17:51 +0000", "from_user": "TopTecRecruiter", "from_user_id": 92369482, "from_user_id_str": "92369482", "from_user_name": "Avetis Antaplyan", "geo": null, "id": 148376426201096200, "id_str": "148376426201096193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Are you a good fit for this job? Sr Java Engineer (Hadoop, NoSQL, Memcache) in Los Angeles, CA http://t.co/hERrBf9c #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:12:39 +0000", "from_user": "NicolasMax", "from_user_id": 6054612, "from_user_id_str": "6054612", "from_user_name": "Nicolas Guillaume", "geo": null, "id": 148375117636972540, "id_str": "148375117636972544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1111995362/PhotoRefPortrait1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1111995362/PhotoRefPortrait1_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/aYeFbuus", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:08:46 +0000", "from_user": "KevinDGreer", "from_user_id": 28472258, "from_user_id_str": "28472258", "from_user_name": "Kevin Greer", "geo": null, "id": 148374141605642240, "id_str": "148374141605642240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1281867856/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1281867856/image_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/NgVGVmrM (via @gigaom)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:08:44 +0000", "from_user": "louiebaur", "from_user_id": 14429823, "from_user_id_str": "14429823", "from_user_name": "Louie Baur ", "geo": null, "id": 148374131778387970, "id_str": "148374131778387968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1334347647/louiefacesmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1334347647/louiefacesmall_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/tAHu1Nvc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:08:44 +0000", "from_user": "vasantk", "from_user_id": 9637002, "from_user_id_str": "9637002", "from_user_name": "Vasant Kumar", "geo": null, "id": 148374131639992320, "id_str": "148374131639992320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/211963559/vk4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/211963559/vk4_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/pJTgBW6p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:08:44 +0000", "from_user": "i_discover", "from_user_id": 35052997, "from_user_id_str": "35052997", "from_user_name": "i-Discover", "geo": null, "id": 148374130792726530, "id_str": "148374130792726528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1197013002/testlogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1197013002/testlogo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: MongoDB might be a popular choice in NoSQL databases, but it\\u2019s not perfect... http://t.co/d6mOerkg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:08:43 +0000", "from_user": "jbdcolley", "from_user_id": 20989396, "from_user_id_str": "20989396", "from_user_name": "John Colley", "geo": null, "id": 148374129857409020, "id_str": "148374129857409024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693229525/Colley11_073col_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693229525/Colley11_073col_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: MongoDB might be a popular choice in NoSQL databases, but it\\u2019s not perfect... http://t.co/gg0NcPu9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:08:42 +0000", "from_user": "_cmom_", "from_user_id": 89728883, "from_user_id_str": "89728883", "from_user_name": "Claudio M.O. Moura", "geo": null, "id": 148374126023815170, "id_str": "148374126023815168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1026177335/8916e1106e6334453657c181b468b8f6_1__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1026177335/8916e1106e6334453657c181b468b8f6_1__normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: MongoDB might be a popular choice in NoSQL databases, but it\\u2019s not pe... http://t.co/eYJpQRGm [GO]", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:08:36 +0000", "from_user": "Telletto", "from_user_id": 39851511, "from_user_id_str": "39851511", "from_user_name": "Telletto", "geo": null, "id": 148374098257510400, "id_str": "148374098257510400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/210683933/tell-twit_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/210683933/tell-twit_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: MongoDB might be a popular choice in NoSQL databases, but it\\u2019s not perfect... http://t.co/BIYJVK9k", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:07:03 +0000", "from_user": "torazuka", "from_user_id": 27420006, "from_user_id_str": "27420006", "from_user_name": "torazuka", "geo": null, "id": 148373708514398200, "id_str": "148373708514398208", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1112431716/torazuka_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1112431716/torazuka_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u5F97\\u4F53\\u306E\\u77E5\\u308C\\u306A\\u3044NoSQL\\u305D\\u308A\\u3085\\u30FC\\u3057\\u3087\\u3093\\u306B\\u30AB\\u30E2\\u3089\\u308C\\u306A\\u3044\\u3088\\u3046\\u306B\\u77E5\\u8B58\\u3092\\u8EAB\\u306B\\u3064\\u3051\\u308B\\u3063\\u3066\\u3001\\u308F\\u308A\\u3068\\u76F4\\u8FD1\\u306E\\u8AB2\\u984C\\u306A\\u3093\\u3060\\u3051\\u308C\\u3069\\u3082\\u3001\\u30B5\\u30C6\\u3002\\u3002\\u3002\\u77E5\\u3089\\u306A\\u3044\\u3053\\u3068\\u304C\\u591A\\u3059\\u304E\\u308B\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:06:18 +0000", "from_user": "jzedward", "from_user_id": 58768407, "from_user_id_str": "58768407", "from_user_name": "John Edwards", "geo": null, "id": 148373521280667650, "id_str": "148373521280667648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/324402850/jzedward360_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/324402850/jzedward360_normal.gif", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/N2Dy3g9g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:03:00 +0000", "from_user": "anrizal", "from_user_id": 54428352, "from_user_id_str": "54428352", "from_user_name": "anrizal", "geo": null, "id": 148372691655737340, "id_str": "148372691655737344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1205555041/photo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1205555041/photo_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Kingwulf: Apache Gora community has voted to graduate from incubator: http://t.co/JgOUbsKd #gora #nosql #orm #asf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:58:43 +0000", "from_user": "mwessendorf", "from_user_id": 12287422, "from_user_id_str": "12287422", "from_user_name": "Matthias Wessendorf", "geo": null, "id": 148371612767490050, "id_str": "148371612767490048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1644899733/mw80s_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644899733/mw80s_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Kingwulf: Apache Gora community has voted to graduate from incubator: http://t.co/JgOUbsKd #gora #nosql #orm #asf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:49:21 +0000", "from_user": "krishnanuli", "from_user_id": 30651051, "from_user_id_str": "30651051", "from_user_name": "Krishna Nuli", "geo": null, "id": 148369253853167600, "id_str": "148369253853167616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1108703905/Profile-Pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1108703905/Profile-Pic_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "NoSQL\\u2019s great, but bring your A game | Cloud Computing News http://t.co/0fwCsGOg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:43:03 +0000", "from_user": "delicerubyrails", "from_user_id": 186274683, "from_user_id_str": "186274683", "from_user_name": "Delicious Ruby Rails", "geo": null, "id": 148367668683079680, "id_str": "148367668683079680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "HandlerSocket: The NoSQL MySQL & Ruby - http://t.co/VGMRn4MF: http://t.co/198vsSmW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:39:14 +0000", "from_user": "KarlRanseier", "from_user_id": 15301646, "from_user_id_str": "15301646", "from_user_name": "Karl Ranseier", "geo": null, "id": 148366708095189000, "id_str": "148366708095188993", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1077034896/ranseier_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1077034896/ranseier_bigger_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @RichRogersHDS: \"NoSQL is necessary for a lot of use cases, but it\\u2019s not for companies afraid of hard work.\" - @derrickharris http://t.co/ZwSk2iq7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:35:08 +0000", "from_user": "GlennSallis", "from_user_id": 188079988, "from_user_id_str": "188079988", "from_user_name": "GlennSallis", "geo": null, "id": 148365676824895500, "id_str": "148365676824895488", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1553598726/SAlis01web_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553598726/SAlis01web_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "NoSQL Conferences: http://t.co/FbrvlLQU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:34:45 +0000", "from_user": "_entreprenerd", "from_user_id": 141852977, "from_user_id_str": "141852977", "from_user_name": "Arno Smit", "geo": null, "id": 148365579349270530, "id_str": "148365579349270528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1463374446/IMG_1453_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1463374446/IMG_1453_normal.jpeg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "Great read, why NoSQL is not for everybody. #mongodb #foursquare #disney http://t.co/Vq6tYVq0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:31:01 +0000", "from_user": "sergeikastrov", "from_user_id": 52012384, "from_user_id_str": "52012384", "from_user_name": "Sergei Kastrov", "geo": null, "id": 148364640345272320, "id_str": "148364640345272320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1189918170/best-replica-homer-simpson01_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1189918170/best-replica-homer-simpson01_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/jeWX7vJC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:28:46 +0000", "from_user": "RichRogersHDS", "from_user_id": 283053195, "from_user_id_str": "283053195", "from_user_name": "Rich Rogers", "geo": null, "id": 148364073535414270, "id_str": "148364073535414272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1599587043/Rich_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599587043/Rich_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"NoSQL is necessary for a lot of use cases, but it\\u2019s not for companies afraid of hard work.\" - @derrickharris http://t.co/ZwSk2iq7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 11:00:29 +0000", "from_user": "udilev", "from_user_id": 28398545, "from_user_id_str": "28398545", "from_user_name": "Udi Levin", "geo": null, "id": 148356956401303550, "id_str": "148356956401303552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1333963235/1206-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1333963235/1206-1_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "NoSQL's great, but bring your A game http://t.co/fwhF2I4M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:54:07 +0000", "from_user": "schmkr", "from_user_id": 9292262, "from_user_id_str": "9292262", "from_user_name": "Alwin Schoemaker", "geo": null, "id": 148355355611643900, "id_str": "148355355611643905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1429617800/instagram-profile-picture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1429617800/instagram-profile-picture_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "NoSQL's great, but bring your A game http://t.co/Zkrhjbtc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:52:12 +0000", "from_user": "stevenhsu", "from_user_id": 14157198, "from_user_id_str": "14157198", "from_user_name": "Steven Hsu", "geo": null, "id": 148354872104861700, "id_str": "148354872104861696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1188774622/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1188774622/image_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "RT @tzangms: NoSQL's great, but bring your A game http://t.co/RYy0qkUb via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:41:15 +0000", "from_user": "areaweb", "from_user_id": 53359864, "from_user_id_str": "53359864", "from_user_name": "Cristiano Rastelli", "geo": null, "id": 148352116531011600, "id_str": "148352116531011585", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/433489099/redneck_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/433489099/redneck_normal.png", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/ZaUqX6M7 /cc @nosqlday", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:35:59 +0000", "from_user": "xinu", "from_user_id": 10462732, "from_user_id_str": "10462732", "from_user_name": "Rodrigo A. de Campos", "geo": null, "id": 148350792292765700, "id_str": "148350792292765696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675132674/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675132674/image_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "NoSQL's great, but bring your A game http://t.co/0oYDw2Uy via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:29:37 +0000", "from_user": "broersa", "from_user_id": 15907577, "from_user_id_str": "15907577", "from_user_name": "broersa", "geo": null, "id": 148349189431103500, "id_str": "148349189431103488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1155983782/20091009_10132701-1_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1155983782/20091009_10132701-1_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/xd3DpzTP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:25:29 +0000", "from_user": "Teabeats", "from_user_id": 21852400, "from_user_id_str": "21852400", "from_user_name": "Piet Schrijver", "geo": null, "id": 148348148350328830, "id_str": "148348148350328832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/290697335/amiga1_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/290697335/amiga1_3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Kingwulf: Apache Gora community has voted to graduate from incubator: http://t.co/JgOUbsKd #gora #nosql #orm #asf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:23:52 +0000", "from_user": "shazrinjb", "from_user_id": 137771694, "from_user_id_str": "137771694", "from_user_name": "Sheik Hazrin", "geo": null, "id": 148347740500398080, "id_str": "148347740500398081", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1445689736/tw_9922234_1310838816_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1445689736/tw_9922234_1310838816_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Open Source Grails 2.0 with more cloud support and NoSQL connectivity: The Grails development te... http://t.co/O29UQYlE ... @jezrin.com", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:12:05 +0000", "from_user": "clhplus1", "from_user_id": 299018307, "from_user_id_str": "299018307", "from_user_name": "Hamish Dwight", "geo": null, "id": 148344775412682750, "id_str": "148344775412682752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/UhFLwhiB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:05:42 +0000", "from_user": "redeye", "from_user_id": 928941, "from_user_id_str": "928941", "from_user_name": "Mark P. ", "geo": null, "id": 148343168461570050, "id_str": "148343168461570048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639983245/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639983245/image_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/N2Dy3g9g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:45:16 +0000", "from_user": "nikmes", "from_user_id": 47760853, "from_user_id_str": "47760853", "from_user_name": "Nicholas Messaritis", "geo": null, "id": 148338026882408450, "id_str": "148338026882408448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/368104319/nik_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/368104319/nik_normal.JPG", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "NoSQL's great, but bring your A game http://t.co/6MvWtlyk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:44:28 +0000", "from_user": "aravindajad", "from_user_id": 1169681, "from_user_id_str": "1169681", "from_user_name": "Aravind Ajad", "geo": null, "id": 148337826583429120, "id_str": "148337826583429120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1299520026/avatar_normal.JPEG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1299520026/avatar_normal.JPEG", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/A9ZQRKXi #in", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:39:04 +0000", "from_user": "yenerm", "from_user_id": 27433411, "from_user_id_str": "27433411", "from_user_name": "Murat Yener", "geo": null, "id": 148336469331820540, "id_str": "148336469331820545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1583179863/148549_10150099677974880_622379879_7356841_1622959_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583179863/148549_10150099677974880_622379879_7356841_1622959_n_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "RT @nacidai: NoSQL's great, but bring your A game... http://t.co/bWkADz6w", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:38:48 +0000", "from_user": "currencytweetie", "from_user_id": 95452088, "from_user_id_str": "95452088", "from_user_name": "currencytweetie", "geo": null, "id": 148336399878336500, "id_str": "148336399878336512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/564993343/currencytweetie_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/564993343/currencytweetie_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @stocksradar: NoSQL\\u2019s great, but bring your A game http://t.co/6auFbqN6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:38:17 +0000", "from_user": "nessykalvo", "from_user_id": 16207251, "from_user_id_str": "16207251", "from_user_name": "nessykalvo", "geo": null, "id": 148336270123347970, "id_str": "148336270123347968", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/290201830/nessykalvo42_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/290201830/nessykalvo42_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "NoSql, No SQL ? .. http://t.co/aUBG2tXh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:26:52 +0000", "from_user": "commoditytree", "from_user_id": 95452478, "from_user_id_str": "95452478", "from_user_name": "commoditytree", "geo": null, "id": 148333398748954620, "id_str": "148333398748954624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/564996335/commoditytree_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/564996335/commoditytree_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @stocksradar: NoSQL\\u2019s great, but bring your A game http://t.co/6auFbqN6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:23:11 +0000", "from_user": "TomaszJaniczek", "from_user_id": 374186997, "from_user_id_str": "374186997", "from_user_name": "Tomasz Janiczek", "geo": null, "id": 148332470817918980, "id_str": "148332470817918976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1624457965/tomasz-janiczek_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624457965/tomasz-janiczek_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/hh1UV7p0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:21:36 +0000", "from_user": "michael_abraham", "from_user_id": 18367318, "from_user_id_str": "18367318", "from_user_name": "Michael Abraham", "geo": null, "id": 148332073109815300, "id_str": "148332073109815296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691975794/gdpit_com_96762788_6_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691975794/gdpit_com_96762788_6_normal.gif", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/N2Dy3g9g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:21:09 +0000", "from_user": "ae_bm", "from_user_id": 141272779, "from_user_id_str": "141272779", "from_user_name": "Alejandro E B M", "geo": null, "id": 148331959947493380, "id_str": "148331959947493376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1213776781/mu2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1213776781/mu2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT \"@jordimirobruix NoSQL\\u2019s great, but bring your A game http://t.co/CdB6XAor /cc @rhoml \" /cc @anibal @edgar @thimotyd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:21:01 +0000", "from_user": "vrinek", "from_user_id": 18434220, "from_user_id_str": "18434220", "from_user_name": "\\u039A\\u03CE\\u03C3\\u03C4\\u03B1\\u03C2 \\u039A\\u03B1\\u03C1\\u03B1\\u03C7\\u03AC\\u03BB\\u03B9\\u03BF\\u03C2", "geo": null, "id": 148331923863904260, "id_str": "148331923863904257", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/234907969/sonic_48px_hi_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/234907969/sonic_48px_hi_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @HackerNewsYC: NoSQL\\u2019s great, but bring your A game http://t.co/702fKy99", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:12:01 +0000", "from_user": "CraigEunson", "from_user_id": 38903928, "from_user_id_str": "38903928", "from_user_name": "Craig Eunson", "geo": null, "id": 148329659224961020, "id_str": "148329659224961024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1673831799/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673831799/image_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Examples of live nosql.. NoSQL\\u2019s great, but bring your A game http://t.co/RJIwCuG7: Examples of live nosql.. NoS... http://t.co/PaSFpfiS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:10:57 +0000", "from_user": "1Marc", "from_user_id": 14465898, "from_user_id_str": "14465898", "from_user_name": "Marc Grabanski", "geo": null, "id": 148329392089743360, "id_str": "148329392089743361", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1590274005/marcgrabanski_avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1590274005/marcgrabanski_avatar_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @couchbase: Big day tomorrow! #CouchConf Israel! get your tix to this #nosql event here --> http://t.co/tR4inCwx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 09:09:16 +0000", "from_user": "rajanmanick", "from_user_id": 205200705, "from_user_id_str": "205200705", "from_user_name": "Rajan Manickavasagam", "geo": null, "id": 148328969119346700, "id_str": "148328969119346688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698642028/Rajan_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698642028/Rajan_normal.jpg", "source": "<a href="http://news360.com/" rel="nofollow">News360</a>", "text": "Examples of live nosql.. NoSQL\\u2019s great, but bring your A game http://t.co/xvivL9qF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:59:49 +0000", "from_user": "javameme", "from_user_id": 234813052, "from_user_id_str": "234813052", "from_user_name": "Javameme", "geo": null, "id": 148326590953160700, "id_str": "148326590953160704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Search Analytics: Business Value & BigData NoSQL Backend: Search is increasingly the primary information access ... http://t.co/ZlEMLF1U", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:58:34 +0000", "from_user": "aquajach", "from_user_id": 64916606, "from_user_id_str": "64916606", "from_user_name": "Jack Chen S Y", "geo": null, "id": 148326276174843900, "id_str": "148326276174843905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1285171587/IMG_2394_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1285171587/IMG_2394_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "\"Virtual disks has virtual performance\" RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/x1dOYvaz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:47:48 +0000", "from_user": "timechanter", "from_user_id": 14290594, "from_user_id_str": "14290594", "from_user_name": "timechanter", "geo": null, "id": 148323567740792830, "id_str": "148323567740792833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/52619571/n649770846_4538_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/52619571/n649770846_4538_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/N2Dy3g9g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:47:44 +0000", "from_user": "jtenhunen", "from_user_id": 281165683, "from_user_id_str": "281165683", "from_user_name": "Jari Tenhunen", "geo": null, "id": 148323550284103680, "id_str": "148323550284103681", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1309862901/viikset2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1309862901/viikset2_normal.jpg", "source": "<a href="http://swipe.nokia.com/" rel="nofollow">Tweet from Nokia N9</a>", "text": "Dear Internet, which in-memory NoSQL database should I use? It should have a nice Python API.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:43:52 +0000", "from_user": "peerz", "from_user_id": 15734124, "from_user_id_str": "15734124", "from_user_name": "Peerz ", "geo": null, "id": 148322574437322750, "id_str": "148322574437322752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1132989116/only_p_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1132989116/only_p_normal.jpg", "source": "Zite Personalized Magazine", "text": "NoSQL's great, but bring your A game http://t.co/JnSk4xCX via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:36:40 +0000", "from_user": "bduclaux", "from_user_id": 14532362, "from_user_id_str": "14532362", "from_user_name": "Bastien Duclaux", "geo": null, "id": 148320763211022340, "id_str": "148320763211022336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1092404061/3a72f9d_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1092404061/3a72f9d_normal.jpg", "source": "Zite Personalized Magazine", "text": "NoSQL's great, but bring your A game http://t.co/7yLqhq8L", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:35:25 +0000", "from_user": "PanosJee", "from_user_id": 17865999, "from_user_id_str": "17865999", "from_user_name": "Panos Papadopoulos", "geo": null, "id": 148320448222998530, "id_str": "148320448222998528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/455901110/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/455901110/me_normal.jpg", "source": "<a href="http://www.alphonsolabs.com/" rel="nofollow">Pulse News</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/btd3ubXt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:32:46 +0000", "from_user": "aninditoyr", "from_user_id": 23914785, "from_user_id_str": "23914785", "from_user_name": "anindito yoga", "geo": null, "id": 148319783899758600, "id_str": "148319783899758592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/281329443/yogyes-small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/281329443/yogyes-small_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/EjZGJzbE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:30:49 +0000", "from_user": "AmrAttia", "from_user_id": 54157120, "from_user_id_str": "54157120", "from_user_name": "Amr Attia", "geo": null, "id": 148319292750958600, "id_str": "148319292750958592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1102523546/a6922_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1102523546/a6922_normal.jpg", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/6WPq0sq7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:30:06 +0000", "from_user": "Nicky_Rede", "from_user_id": 88729410, "from_user_id_str": "88729410", "from_user_name": "Nicky_Rede", "geo": null, "id": 148319109652815870, "id_str": "148319109652815872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1649491311/676108dc0e5c11e1abb01231381b65e3_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649491311/676108dc0e5c11e1abb01231381b65e3_7_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/ZnbZ5vxZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:24:44 +0000", "from_user": "TopCloudHosting", "from_user_id": 170814667, "from_user_id_str": "170814667", "from_user_name": "CloudComputing", "geo": null, "id": 148317760085176320, "id_str": "148317760085176320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1090310223/cloud_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1090310223/cloud_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @tguemes Interesting experiences on MongoDB: \"NoSQL\\u2019s great, but bring your A game \\u2014 Cloud Computing News\" http://t.co/fL4TLmhz: ...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:17:55 +0000", "from_user": "andreabalducci", "from_user_id": 16302044, "from_user_id_str": "16302044", "from_user_name": "andreabalducci", "geo": null, "id": 148316046359674880, "id_str": "148316046359674880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1391450977/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1391450977/image_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "NoSQL's great, but bring your A game http://t.co/CEpwGJf0 via @zite 1.400 mongodb instances?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:14:07 +0000", "from_user": "AdalineMcleoud", "from_user_id": 407707133, "from_user_id_str": "407707133", "from_user_name": "Adaline Mcleoud", "geo": null, "id": 148315088917508100, "id_str": "148315088917508096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1629084149/148851318745__2__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629084149/148851318745__2__normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/xKzNbHOp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:13:21 +0000", "from_user": "tguemes", "from_user_id": 23236293, "from_user_id_str": "23236293", "from_user_name": "Celestino G\\u00FCemes", "geo": null, "id": 148314896315056130, "id_str": "148314896315056128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/394198628/foto_oficial_tinog_a_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/394198628/foto_oficial_tinog_a_400_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Interesting experiences on MongoDB: \"NoSQL\\u2019s great, but bring your A game \\u2014 Cloud Computing News\" http://t.co/AjzWD4lC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:12:19 +0000", "from_user": "aliozgur", "from_user_id": 52377176, "from_user_id_str": "52377176", "from_user_name": "Ali \\u00D6zg\\u00FCr", "geo": null, "id": 148314634531770370, "id_str": "148314634531770368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1320985903/AO_Small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1320985903/AO_Small_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/N2Dy3g9g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:11:51 +0000", "from_user": "arashmilanii", "from_user_id": 17511291, "from_user_id_str": "17511291", "from_user_name": "Arash Milani", "geo": null, "id": 148314518093697020, "id_str": "148314518093697024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1460658634/IMG_1914_b_s_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1460658634/IMG_1914_b_s_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "RT @mahdi: Google Insights: Cassandra appear as the leading NoSQL solution. http://t.co/fjETAsGw #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:09:59 +0000", "from_user": "AuraJardine", "from_user_id": 407707848, "from_user_id_str": "407707848", "from_user_name": "Aura Jardine", "geo": null, "id": 148314050428796930, "id_str": "148314050428796929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1629085589/83166283470_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629085589/83166283470_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/Fg7ffW9M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:03:38 +0000", "from_user": "DanyellMorelle", "from_user_id": 407708423, "from_user_id_str": "407708423", "from_user_name": "Danyell Morelle", "geo": null, "id": 148312451782418430, "id_str": "148312451782418432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1629086207/1556331921colazero.com-female_1129_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629086207/1556331921colazero.com-female_1129_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/KCW8QCKG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:03:34 +0000", "from_user": "ElwandaLevy", "from_user_id": 407706960, "from_user_id_str": "407706960", "from_user_name": "Elwanda Levy", "geo": null, "id": 148312432455061500, "id_str": "148312432455061504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1629083993/604946924165_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629083993/604946924165_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/kKNQdvmn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:52:17 +0000", "from_user": "KatharineBerry", "from_user_id": 8178372, "from_user_id_str": "8178372", "from_user_name": "Katharine Berry", "geo": null, "id": 148309593397788670, "id_str": "148309593397788672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1010417949/Screen_shot_2010-06-21_at_12.33.41_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1010417949/Screen_shot_2010-06-21_at_12.33.41_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@PatchouliW @signpostmarv NoSQL (in some perhaps less generic forms) has entirely legitimate uses! Key-value stores are good sometimes, too!", "to_user": "PatchouliW", "to_user_id": 5854302, "to_user_id_str": "5854302", "to_user_name": "Patchouli Woollahra", "in_reply_to_status_id": 148308136925732860, "in_reply_to_status_id_str": "148308136925732865"}, +{"created_at": "Sun, 18 Dec 2011 07:51:44 +0000", "from_user": "CristyRobison", "from_user_id": 407706514, "from_user_id_str": "407706514", "from_user_name": "Cristy Robison", "geo": null, "id": 148309454348222460, "id_str": "148309454348222464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1630675895/flower_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630675895/flower_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/u1PcYoTP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:51:32 +0000", "from_user": "razisharir", "from_user_id": 18939089, "from_user_id_str": "18939089", "from_user_name": "Razi Sharir", "geo": null, "id": 148309404146602000, "id_str": "148309404146601984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1035296518/razisharir_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1035296518/razisharir_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/PZIG11Om", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:51:21 +0000", "from_user": "BrittnyGelzinis", "from_user_id": 407706515, "from_user_id_str": "407706515", "from_user_name": "Brittny Gelzinis", "geo": null, "id": 148309359175278600, "id_str": "148309359175278593", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1629083322/1602106896gjfjsfgj_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629083322/1602106896gjfjsfgj_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/aZWimyo0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:49:51 +0000", "from_user": "AddieHysell", "from_user_id": 407706803, "from_user_id_str": "407706803", "from_user_name": "Addie Hysell", "geo": null, "id": 148308983600513020, "id_str": "148308983600513024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1629103378/28214354314__4__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629103378/28214354314__4__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/bl4e99M1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:49:27 +0000", "from_user": "jordimirobruix", "from_user_id": 1657591, "from_user_id_str": "1657591", "from_user_name": "jordimirobruix", "geo": null, "id": 148308880949116930, "id_str": "148308880949116928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1197105290/AH0EGMJZBQ5ZO14O_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1197105290/AH0EGMJZBQ5ZO14O_normal.jpg", "source": "<a href="http://www.alphonsolabs.com/" rel="nofollow">Pulse News</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/9k3QaAjc /cc @rhoml", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:46:29 +0000", "from_user": "PatchouliW", "from_user_id": 5854302, "from_user_id_str": "5854302", "from_user_name": "Patchouli Woollahra", "geo": null, "id": 148308136925732860, "id_str": "148308136925732865", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1311001023/PatchiWildcat_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1311001023/PatchiWildcat_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SignpostMarv @KatharineBerry it makes even less sense than NoSQL. that's how bad MSSQL is. #runsAwayFromPitchforks", "to_user": "SignpostMarv", "to_user_id": 8435922, "to_user_id_str": "8435922", "to_user_name": "SignpostMarv", "in_reply_to_status_id": 148254824218116100, "in_reply_to_status_id_str": "148254824218116096"}, +{"created_at": "Sun, 18 Dec 2011 07:44:05 +0000", "from_user": "TonyaLorenzano", "from_user_id": 407707125, "from_user_id_str": "407707125", "from_user_name": "Tonya Lorenzano", "geo": null, "id": 148307533218590720, "id_str": "148307533218590720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1629084096/1780665661image1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629084096/1780665661image1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/jipV6VRX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:42:01 +0000", "from_user": "biomap", "from_user_id": 158380504, "from_user_id_str": "158380504", "from_user_name": "Amandeep Sidhu", "geo": null, "id": 148307011010965500, "id_str": "148307011010965506", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1649894835/pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649894835/pic_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "\\u201C@utollwi: NoSQL\\u2019s great, but bring your A game http://t.co/DZRCa6cT\\u201D - gr8 read I will definitely comment about it over holidays in my blog", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:36:20 +0000", "from_user": "HopeStevison", "from_user_id": 407707612, "from_user_id_str": "407707612", "from_user_name": "Hope Stevison", "geo": null, "id": 148305579461447680, "id_str": "148305579461447680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1629085018/439264211105_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629085018/439264211105_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/1Lse0KKI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:35:19 +0000", "from_user": "CindyTulk", "from_user_id": 407708058, "from_user_id_str": "407708058", "from_user_name": "Cindy Tulk", "geo": null, "id": 148305324791709700, "id_str": "148305324791709696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1629085776/101937036colazero.com-female_1043_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629085776/101937036colazero.com-female_1043_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/fjH5hfvB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:34:24 +0000", "from_user": "LynelleEpple", "from_user_id": 407706708, "from_user_id_str": "407706708", "from_user_name": "Lynelle Epple", "geo": null, "id": 148305094109175800, "id_str": "148305094109175808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1629083738/295001999166_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629083738/295001999166_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/8x9tBsbD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:34:11 +0000", "from_user": "AnitaNemer", "from_user_id": 407709709, "from_user_id_str": "407709709", "from_user_name": "Anita Nemer", "geo": null, "id": 148305038366871550, "id_str": "148305038366871553", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1629087320/117497933542__2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629087320/117497933542__2__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/ztFFZZyn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:31:49 +0000", "from_user": "JacalynWorsham", "from_user_id": 407707453, "from_user_id_str": "407707453", "from_user_name": "Jacalyn Worsham", "geo": null, "id": 148304443392270340, "id_str": "148304443392270336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1629084573/3523305932297_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629084573/3523305932297_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/9kGuZYCG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:30:57 +0000", "from_user": "hakanerdogan", "from_user_id": 46212796, "from_user_id_str": "46212796", "from_user_name": "Hakan ERDOGAN", "geo": null, "id": 148304227515629570, "id_str": "148304227515629568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1574968765/hakan_erdogan_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1574968765/hakan_erdogan_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@nacidai: NoSQL's great, but bring your A game... http://t.co/b2EltQ8q\\u201D @haqen", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:25:33 +0000", "from_user": "azataslanyan", "from_user_id": 25737136, "from_user_id_str": "25737136", "from_user_name": "azat aslanyan", "geo": null, "id": 148302869123186700, "id_str": "148302869123186688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/227425329/azat_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/227425329/azat_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/bOkwuY8f", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:25:07 +0000", "from_user": "AmieMillsap", "from_user_id": 407709127, "from_user_id_str": "407709127", "from_user_name": "Amie Millsap", "geo": null, "id": 148302757286264830, "id_str": "148302757286264832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1629087041/1729105613colazero.com-female_1199_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629087041/1729105613colazero.com-female_1199_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/VedD1XnF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:25:00 +0000", "from_user": "JolineMehtala", "from_user_id": 407708074, "from_user_id_str": "407708074", "from_user_name": "Joline Mehtala", "geo": null, "id": 148302727905165300, "id_str": "148302727905165312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1629085952/1229652563image50_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629085952/1229652563image50_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/rBRGuH1R", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:23:59 +0000", "from_user": "ArianeSahady", "from_user_id": 407708088, "from_user_id_str": "407708088", "from_user_name": "Ariane Sahady", "geo": null, "id": 148302474510479360, "id_str": "148302474510479360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1629085982/16127390212__2__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629085982/16127390212__2__normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/iAZJvDsB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:22:00 +0000", "from_user": "couchbase", "from_user_id": 237401623, "from_user_id_str": "237401623", "from_user_name": "Couchbase", "geo": null, "id": 148301974054518800, "id_str": "148301974054518784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1335620360/couchbase_couch_red_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335620360/couchbase_couch_red_twitter_normal.png", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "Big day tomorrow! #CouchConf Israel! get your tix to this #nosql event here --> http://t.co/tR4inCwx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:20:17 +0000", "from_user": "SoilaSteinkamp", "from_user_id": 407707618, "from_user_id_str": "407707618", "from_user_name": "Soila Steinkamp", "geo": null, "id": 148301542095732740, "id_str": "148301542095732736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1629085290/11123306037__3__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629085290/11123306037__3__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/rcSRONyy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:20:06 +0000", "from_user": "LinhPagliuca", "from_user_id": 407708575, "from_user_id_str": "407708575", "from_user_name": "Linh Pagliuca", "geo": null, "id": 148301496751112200, "id_str": "148301496751112192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1629086631/749151652colazero.com-female_1296_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629086631/749151652colazero.com-female_1296_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/w29cGQ74", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:17:22 +0000", "from_user": "seekingalphalfa", "from_user_id": 95452322, "from_user_id_str": "95452322", "from_user_name": "seekingalphalfa", "geo": null, "id": 148300808621002750, "id_str": "148300808621002752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/564995101/seekingalphalfa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/564995101/seekingalphalfa_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/1pXiEvZK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:16:40 +0000", "from_user": "EviaKominek", "from_user_id": 407707232, "from_user_id_str": "407707232", "from_user_name": "Evia Kominek", "geo": null, "id": 148300629884944400, "id_str": "148300629884944384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1629084246/16914594092830_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629084246/16914594092830_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/laL21Yfu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:16:26 +0000", "from_user": "JerleneCopa", "from_user_id": 407707414, "from_user_id_str": "407707414", "from_user_name": "Jerlene Copa", "geo": null, "id": 148300573593190400, "id_str": "148300573593190400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1629084561/22570407767_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629084561/22570407767_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/jPY9blPo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:16:25 +0000", "from_user": "nacidai", "from_user_id": 18124258, "from_user_id_str": "18124258", "from_user_name": "nacidai", "geo": null, "id": 148300568476123140, "id_str": "148300568476123137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1643832632/IMG_5915_-_Version_2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643832632/IMG_5915_-_Version_2_normal.JPG", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "NoSQL's great, but bring your A game... http://t.co/bWkADz6w", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:15:41 +0000", "from_user": "lianscr", "from_user_id": 32254853, "from_user_id_str": "32254853", "from_user_name": "willians caicedo", "geo": null, "id": 148300385600286720, "id_str": "148300385600286720", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/449979138/Yo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/449979138/Yo_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "base de datos NoSQL MongoDB http://t.co/giVye8PO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:15:32 +0000", "from_user": "garyhhdry", "from_user_id": 296997214, "from_user_id_str": "296997214", "from_user_name": "Gary", "geo": null, "id": 148300344881987600, "id_str": "148300344881987585", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1349507275/garyhhdry_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1349507275/garyhhdry_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/5BYovrE1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:14:37 +0000", "from_user": "DannieSchatzel", "from_user_id": 407707658, "from_user_id_str": "407707658", "from_user_name": "Dannie Schatzel", "geo": null, "id": 148300113616449540, "id_str": "148300113616449536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1629085298/17196894143_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629085298/17196894143_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/YCQs1Q2R", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:14:34 +0000", "from_user": "curationary", "from_user_id": 10989382, "from_user_id_str": "10989382", "from_user_name": "Curationary", "geo": null, "id": 148300103298465800, "id_str": "148300103298465792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1365955825/curationary_ico_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1365955825/curationary_ico_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "NoSQL's great, but bring your A game http://t.co/AgTHj4Yt via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:14:31 +0000", "from_user": "ToryGatch", "from_user_id": 407707542, "from_user_id_str": "407707542", "from_user_name": "Tory Gatch", "geo": null, "id": 148300092103852030, "id_str": "148300092103852032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1629084829/21382662103_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629084829/21382662103_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/4xlEtd7O", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:13:26 +0000", "from_user": "RivkaDrock", "from_user_id": 407706831, "from_user_id_str": "407706831", "from_user_name": "Rivka Drock", "geo": null, "id": 148299818526183420, "id_str": "148299818526183424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1629083926/52289840376_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629083926/52289840376_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/SRLNQ7ql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:12:03 +0000", "from_user": "AgripinaGawron", "from_user_id": 407706575, "from_user_id_str": "407706575", "from_user_name": "Agripina Gawron", "geo": null, "id": 148299470688358400, "id_str": "148299470688358400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1629083500/170573443326_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629083500/170573443326_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/Evf382zV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:09:11 +0000", "from_user": "MagdaMcguinnes", "from_user_id": 374112056, "from_user_id_str": "374112056", "from_user_name": "Magda Mcguinnes", "geo": null, "id": 148298749314220030, "id_str": "148298749314220032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1544858171/14301510081551_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544858171/14301510081551_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/d5kWxD7A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:09:06 +0000", "from_user": "TaReifel", "from_user_id": 374081497, "from_user_id_str": "374081497", "from_user_name": "Ta Reifel", "geo": null, "id": 148298727524810750, "id_str": "148298727524810753", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1544817293/14640097472706_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544817293/14640097472706_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/wKqBv7nL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:07:46 +0000", "from_user": "InstantOnWorld", "from_user_id": 298547006, "from_user_id_str": "298547006", "from_user_name": "Cloud Computing", "geo": null, "id": 148298393800818700, "id_str": "148298393800818688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1353157070/stars_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1353157070/stars_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL's great, but bring your A game \\u2014 Cloud Computing News: At last week's MongoSV conference in Santa Clara, C... http://t.co/8n8LSyLw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Sun, 18 Dec 2011 07:04:37 +0000", "from_user": "MalenaKoppel", "from_user_id": 374096032, "from_user_id_str": "374096032", "from_user_name": "Malena Koppel", "geo": null, "id": 148297597751271420, "id_str": "148297597751271425", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1544835016/95795802246_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544835016/95795802246_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/BWpbVawj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:04:27 +0000", "from_user": "LuClinkscale", "from_user_id": 369400202, "from_user_id_str": "369400202", "from_user_name": "Lu Clinkscale", "geo": null, "id": 148297558710693900, "id_str": "148297558710693888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1533348370/62212319407_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1533348370/62212319407_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/ssK1ooQ1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:04:25 +0000", "from_user": "SusannahWeems", "from_user_id": 374098312, "from_user_id_str": "374098312", "from_user_name": "Susannah Weems", "geo": null, "id": 148297550565359600, "id_str": "148297550565359617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1544838630/131824734324_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544838630/131824734324_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/fI6zXuHf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:04:16 +0000", "from_user": "GracieFrayre", "from_user_id": 374107200, "from_user_id_str": "374107200", "from_user_name": "Gracie Frayre", "geo": null, "id": 148297510878846980, "id_str": "148297510878846976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1544947522/14803127484_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544947522/14803127484_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/DqY24biF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:03:39 +0000", "from_user": "IbrahimMalick", "from_user_id": 21992449, "from_user_id_str": "21992449", "from_user_name": "Ibrahim Sajid Malick", "geo": null, "id": 148297354464866300, "id_str": "148297354464866305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1354126020/IbrahimMalick_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1354126020/IbrahimMalick_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@CarlNannie You need to know what you are doing with NoSQL - no use owning a Porsche if you don't know how to drive", "to_user": "CarlNannie", "to_user_id": 374131542, "to_user_id_str": "374131542", "to_user_name": "Carl Nannie", "in_reply_to_status_id": 148294888721629200, "in_reply_to_status_id_str": "148294888721629185"}, +{"created_at": "Sun, 18 Dec 2011 07:03:37 +0000", "from_user": "GinoRossi", "from_user_id": 26283439, "from_user_id_str": "26283439", "from_user_name": "Gino Rossi", "geo": null, "id": 148297348588638200, "id_str": "148297348588638208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686281006/Avatar_GinoRossi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686281006/Avatar_GinoRossi_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/R97dMnO8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:03:18 +0000", "from_user": "DomitilaMelusky", "from_user_id": 374112916, "from_user_id_str": "374112916", "from_user_name": "Domitila Melusky", "geo": null, "id": 148297267047186430, "id_str": "148297267047186432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1544843103/474390684841_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544843103/474390684841_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/CwHjbpFx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:03:09 +0000", "from_user": "hotrackr", "from_user_id": 404958426, "from_user_id_str": "404958426", "from_user_name": "hotrackr", "geo": null, "id": 148297228740595700, "id_str": "148297228740595712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1622351203/4de4912f2fc18_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622351203/4de4912f2fc18_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/hUKG8OER", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:02:36 +0000", "from_user": "ampstoeleven", "from_user_id": 297979757, "from_user_id_str": "297979757", "from_user_name": "ampstoeleven", "geo": null, "id": 148297090714435600, "id_str": "148297090714435584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1351879299/ampstoeleven_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1351879299/ampstoeleven_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game #gaming http://t.co/27Xofa08", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:01:47 +0000", "from_user": "SumikoStockinge", "from_user_id": 374079498, "from_user_id_str": "374079498", "from_user_name": "Sumiko Stockinger", "geo": null, "id": 148296885575229440, "id_str": "148296885575229440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1544939063/322120384colazero.com-female_1223_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544939063/322120384colazero.com-female_1223_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/eBueOqd2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:01:42 +0000", "from_user": "slashsoft", "from_user_id": 91886883, "from_user_id_str": "91886883", "from_user_name": "slashsoft", "geo": null, "id": 148296867069968400, "id_str": "148296867069968385", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1360174629/slashsoft_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1360174629/slashsoft_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/yL4pFY89", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:00:20 +0000", "from_user": "ShirlyGalletta", "from_user_id": 374097211, "from_user_id_str": "374097211", "from_user_name": "Shirly Galletta", "geo": null, "id": 148296519055974400, "id_str": "148296519055974400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1544920927/88306174575_resize_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544920927/88306174575_resize_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/Bs3MjGuP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:59:24 +0000", "from_user": "remonstrator", "from_user_id": 127706779, "from_user_id_str": "127706779", "from_user_name": "subrata chakraborty", "geo": null, "id": 148296286624428030, "id_str": "148296286624428032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Cloud - Dell and HP have started to offer the OpenStack based cloud to their customers, as has Citrix. http://t.co/7vF2KYHn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:59:11 +0000", "from_user": "AlishaEvinger", "from_user_id": 374405083, "from_user_id_str": "374405083", "from_user_name": "Alisha Evinger", "geo": null, "id": 148296233084129280, "id_str": "148296233084129280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1546285239/970911022155_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546285239/970911022155_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/ergCizAM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:57:56 +0000", "from_user": "RoseCorkery", "from_user_id": 369394687, "from_user_id_str": "369394687", "from_user_name": "Rose Corkery", "geo": null, "id": 148295916997189630, "id_str": "148295916997189632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1533382711/11781107426__3__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1533382711/11781107426__3__normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/EX8eJ0ui", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:57:05 +0000", "from_user": "SpinsJaclyn", "from_user_id": 367722654, "from_user_id_str": "367722654", "from_user_name": "jackie spins", "geo": null, "id": 148295702810869760, "id_str": "148295702810869760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1528087801/jackiespins_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1528087801/jackiespins_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/kidSXlhS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:54:52 +0000", "from_user": "JolandaSlinker", "from_user_id": 370440216, "from_user_id_str": "370440216", "from_user_name": "Jolanda Slinker", "geo": null, "id": 148295146545487870, "id_str": "148295146545487872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1535279381/814036204image2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1535279381/814036204image2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/iakizfGs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:53:59 +0000", "from_user": "MaeFuente", "from_user_id": 370437359, "from_user_id_str": "370437359", "from_user_name": "Mae Fuente", "geo": null, "id": 148294923861495800, "id_str": "148294923861495808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1535280665/19164834519__2__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1535280665/19164834519__2__normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/nU4ZhTbr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:53:54 +0000", "from_user": "GabrielDepue", "from_user_id": 374428317, "from_user_id_str": "374428317", "from_user_name": "Gabriel Depue", "geo": null, "id": 148294903355555840, "id_str": "148294903355555840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1545825915/1270454423bvnthfda_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545825915/1270454423bvnthfda_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/5mCX2r7z", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:53:51 +0000", "from_user": "CarlNannie", "from_user_id": 374131542, "from_user_id_str": "374131542", "from_user_name": "Carl Nannie", "geo": null, "id": 148294888721629200, "id_str": "148294888721629185", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1544870550/425045900colazero.com-female_1032_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544870550/425045900colazero.com-female_1032_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/OkAcKj5i", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:52:00 +0000", "from_user": "AmiraGoretti", "from_user_id": 374393515, "from_user_id_str": "374393515", "from_user_name": "Amira Goretti", "geo": null, "id": 148294423334240260, "id_str": "148294423334240258", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1545810239/1174043186image060_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545810239/1174043186image060_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/eYEim3I6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:51:59 +0000", "from_user": "smashinglinks", "from_user_id": 339221258, "from_user_id_str": "339221258", "from_user_name": "smashinglinks", "geo": null, "id": 148294419148320770, "id_str": "148294419148320769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1451997028/smashinglinks_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1451997028/smashinglinks_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/gZcAiOm0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:51:48 +0000", "from_user": "EladiaCrutch", "from_user_id": 374129494, "from_user_id_str": "374129494", "from_user_name": "Eladia Crutch", "geo": null, "id": 148294374239903740, "id_str": "148294374239903746", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1544916753/1987959422142_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544916753/1987959422142_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/sReOEgJO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:51:36 +0000", "from_user": "LovePeterka", "from_user_id": 374097875, "from_user_id_str": "374097875", "from_user_name": "Love Peterka", "geo": null, "id": 148294324378013700, "id_str": "148294324378013696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1544838271/14046083462509_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544838271/14046083462509_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/bLQSujeO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:50:29 +0000", "from_user": "DebroahShramek", "from_user_id": 374435247, "from_user_id_str": "374435247", "from_user_name": "Debroah Shramek", "geo": null, "id": 148294044089450500, "id_str": "148294044089450496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1545841548/162380557image013_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545841548/162380557image013_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/bvzyjlSR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:48:58 +0000", "from_user": "ThelmaAus", "from_user_id": 374119677, "from_user_id_str": "374119677", "from_user_name": "Thelma Aus", "geo": null, "id": 148293662617501700, "id_str": "148293662617501696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1544859740/285606814167_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544859740/285606814167_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/6Hmw8nJ3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:48:14 +0000", "from_user": "myrhaines87", "from_user_id": 419728439, "from_user_id_str": "419728439", "from_user_name": "myrhaines", "geo": null, "id": 148293476096806900, "id_str": "148293476096806913", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://ping.fm/" rel="nofollow">Ping.fm</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/X7Of5WpQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:47:22 +0000", "from_user": "alexis_romano", "from_user_id": 371051528, "from_user_id_str": "371051528", "from_user_name": "Alexis Romano", "geo": null, "id": 148293258857037820, "id_str": "148293258857037824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1536644901/Z_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1536644901/Z_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/1j5YIfqa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:47:12 +0000", "from_user": "CaterinaMirao", "from_user_id": 369396186, "from_user_id_str": "369396186", "from_user_name": "Caterina Mirao", "geo": null, "id": 148293215177547780, "id_str": "148293215177547777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1533382148/33394264859_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1533382148/33394264859_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/1b7el8WQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:47:02 +0000", "from_user": "DanilleRichner", "from_user_id": 369396609, "from_user_id_str": "369396609", "from_user_name": "Danille Richner", "geo": null, "id": 148293172391444480, "id_str": "148293172391444480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1533333555/17189129591549_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1533333555/17189129591549_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/IJL0Ny1p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:46:57 +0000", "from_user": "linkmeweb", "from_user_id": 339330555, "from_user_id_str": "339330555", "from_user_name": "linkmeweb", "geo": null, "id": 148293154666323970, "id_str": "148293154666323968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1452154725/linkmeweb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1452154725/linkmeweb_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/DEHfKqHP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:46:40 +0000", "from_user": "IsidraBarrete", "from_user_id": 369398366, "from_user_id_str": "369398366", "from_user_name": "Isidra Barrete", "geo": null, "id": 148293082012598270, "id_str": "148293082012598272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1533339682/206560706563_resize_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1533339682/206560706563_resize_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/9KB3EtKN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:46:39 +0000", "from_user": "FattyBoomBalaty", "from_user_id": 368857113, "from_user_id_str": "368857113", "from_user_name": "FattyBoomBalatty", "geo": null, "id": 148293078170611700, "id_str": "148293078170611713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1531180890/fatty_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1531180890/fatty_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/7vGbIIab", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:46:19 +0000", "from_user": "Sharethisdeal", "from_user_id": 185434655, "from_user_id_str": "185434655", "from_user_name": "Sharethisdeal", "geo": null, "id": 148292994703953920, "id_str": "148292994703953920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1437243014/346_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1437243014/346_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/Wps5ggT4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:44:38 +0000", "from_user": "tweetstech", "from_user_id": 403863283, "from_user_id_str": "403863283", "from_user_name": "Tweets on Technology", "geo": null, "id": 148292568197763070, "id_str": "148292568197763072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1619966800/techtweets_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619966800/techtweets_normal.png", "source": "<a href="http://www.infowebcentral.com/" rel="nofollow">Infowebcentral - Tech Tweets</a>", "text": "Auction and Bidding Applications with Document-Based NoSQL - http://t.co/C2gBUpCP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:44:26 +0000", "from_user": "LadonnaShuga", "from_user_id": 369396723, "from_user_id_str": "369396723", "from_user_name": "Ladonna Shuga", "geo": null, "id": 148292521670361100, "id_str": "148292521670361088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1533379326/69160067819__2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1533379326/69160067819__2__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/S6nNxMbF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:44:01 +0000", "from_user": "ShirleneFewell", "from_user_id": 374106569, "from_user_id_str": "374106569", "from_user_name": "Shirlene Fewell", "geo": null, "id": 148292416217157630, "id_str": "148292416217157634", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1544850470/1531719387134_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544850470/1531719387134_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/yTt3j0vC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:43:30 +0000", "from_user": "Pedroalexson", "from_user_id": 337152193, "from_user_id_str": "337152193", "from_user_name": "Pedro", "geo": null, "id": 148292284679602180, "id_str": "148292284679602176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1446961317/pedro_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1446961317/pedro_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/02fIOA9K", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:43:29 +0000", "from_user": "MarianelaGrav", "from_user_id": 374072755, "from_user_id_str": "374072755", "from_user_name": "Marianela Grav", "geo": null, "id": 148292282083315700, "id_str": "148292282083315713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1544807668/129551398190_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544807668/129551398190_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/HhQVFS4w", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:43:01 +0000", "from_user": "stocksradar", "from_user_id": 62584212, "from_user_id_str": "62584212", "from_user_name": "stocksradar", "geo": null, "id": 148292162524680200, "id_str": "148292162524680196", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/423516626/radar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/423516626/radar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/6auFbqN6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:42:35 +0000", "from_user": "socialmediaaaa", "from_user_id": 337413129, "from_user_id_str": "337413129", "from_user_name": "socialmediamaven", "geo": null, "id": 148292055309885440, "id_str": "148292055309885441", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1447707533/socialmediaaa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1447707533/socialmediaaa_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/d56Y9tGV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:41:34 +0000", "from_user": "JerilynEliason", "from_user_id": 369405209, "from_user_id_str": "369405209", "from_user_name": "Jerilyn Eliason", "geo": null, "id": 148291796601016320, "id_str": "148291796601016320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1533340634/25127512766__2__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1533340634/25127512766__2__normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/jpBiei8o", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:41:31 +0000", "from_user": "FreyNelly", "from_user_id": 368357191, "from_user_id_str": "368357191", "from_user_name": "Nelly Frey", "geo": null, "id": 148291787243520000, "id_str": "148291787243520000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1529890593/nelly_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1529890593/nelly_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/PxEGwJTs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:41:01 +0000", "from_user": "bartylboo", "from_user_id": 369208125, "from_user_id_str": "369208125", "from_user_name": "bartyboo", "geo": null, "id": 148291660323880960, "id_str": "148291660323880960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1532072626/boo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1532072626/boo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/ISGaSoz0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:37:59 +0000", "from_user": "SpectralCoreCEO", "from_user_id": 107380318, "from_user_id_str": "107380318", "from_user_name": "Damir Bulic", "geo": null, "id": 148290897145102340, "id_str": "148290897145102336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/713585324/ramo_majmun_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/713585324/ramo_majmun_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "NoSQL\\u2019s great, but bring your A game - At last week's MongoSV conference in Santa Clara, Calif., a number of users s... http://t.co/wPPcoqRk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:23:54 +0000", "from_user": "newitfarmer", "from_user_id": 109803082, "from_user_id_str": "109803082", "from_user_name": "newitfarmer", "geo": null, "id": 148287352756903940, "id_str": "148287352756903936", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1170140116/0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1170140116/0_normal.jpg", "source": "<a href="http://www.qiqiboy.com/products/plugins/social-medias-connect" rel="nofollow">Social Medias Connect</a>", "text": "\\u3010New Blog\\u3011[repost ]leveldb \\u8D44\\u6599 - http://t.co/v1NGRlpd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:17:56 +0000", "from_user": "lozanojavier", "from_user_id": 47095591, "from_user_id_str": "47095591", "from_user_name": "Javier Lozano", "geo": null, "id": 148285852605366270, "id_str": "148285852605366272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1260197832/DSC03209__800x793__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1260197832/DSC03209__800x793__normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT: NoSQL\\u2019s great, but bring your A game: MongoDB might be a popular choice in NoSQL databases, but it\\u2019s not... http://t.co/WJlEDlUv #in", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:15:12 +0000", "from_user": "eeagle630", "from_user_id": 14822482, "from_user_id_str": "14822482", "from_user_name": "Stephen Mayer", "geo": null, "id": 148285162730422270, "id_str": "148285162730422272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/54358520/Cleo_046_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/54358520/Cleo_046_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @aordring: NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/4Gv4HPgs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:12:03 +0000", "from_user": "matrzaska", "from_user_id": 292868269, "from_user_id_str": "292868269", "from_user_name": "Mariusz Trzaska", "geo": null, "id": 148284369256189950, "id_str": "148284369256189953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1640167089/DSCN3086-Mariusz_02_512x512_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640167089/DSCN3086-Mariusz_02_512x512_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "NoSQL's great, but bring your A game (MongoDB) http://t.co/pw0WZzzc via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:02:33 +0000", "from_user": "SwatantraKumar", "from_user_id": 93168741, "from_user_id_str": "93168741", "from_user_name": "Swatantra Verified \\u2714", "geo": null, "id": 148281980340019200, "id_str": "148281980340019200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1352218078/GoaSeminarCompressed_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1352218078/GoaSeminarCompressed_normal.JPG", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "NoSQL bring your A game http://t.co/lsNc06Cy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:53:45 +0000", "from_user": "rhm2k", "from_user_id": 14065215, "from_user_id_str": "14065215", "from_user_name": "Rich Miller", "geo": null, "id": 148279762790518800, "id_str": "148279762790518784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1178804758/Headshot4b_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1178804758/Headshot4b_normal.jpg", "source": "<a href="http://www.feedly.com" rel="nofollow">feedly</a>", "text": "Listening to: Enterprise Caches Versus Data Grids Versus NoSQL Databases http://t.co/LhOFJCb2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:47:18 +0000", "from_user": "DZoneDotNetZone", "from_user_id": 36052770, "from_user_id_str": "36052770", "from_user_name": "DZone .NET Zone", "geo": null, "id": 148278140647637000, "id_str": "148278140647636992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/188217096/mh_dzone_logo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/188217096/mh_dzone_logo_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "New Post: Auction and Bidding Applications with Document-Based NoSQL http://t.co/zWEZNoES", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:45:58 +0000", "from_user": "rohitbansal03", "from_user_id": 163458873, "from_user_id_str": "163458873", "from_user_name": "Rohit Bansal", "geo": null, "id": 148277808039329800, "id_str": "148277808039329792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1055167135/Rohit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1055167135/Rohit_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/ZB24W7TO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:35:14 +0000", "from_user": "ankurpshah", "from_user_id": 19602291, "from_user_id_str": "19602291", "from_user_name": "Ankur Shah", "geo": null, "id": 148275106085482500, "id_str": "148275106085482496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1244860886/android1297740766426_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1244860886/android1297740766426_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/3Rqh90D1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:22:51 +0000", "from_user": "aordring", "from_user_id": 60157628, "from_user_id_str": "60157628", "from_user_name": "Keith Brings", "geo": null, "id": 148271988639666180, "id_str": "148271988639666177", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1190235672/49294_1260949268_6539485_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1190235672/49294_1260949268_6539485_q_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/4Gv4HPgs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:21:48 +0000", "from_user": "PhilKrnjeu", "from_user_id": 326352838, "from_user_id_str": "326352838", "from_user_name": "Phil Krnjeu", "geo": null, "id": 148271725296103420, "id_str": "148271725296103424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1442211579/philCloseUp_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1442211579/philCloseUp_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @MirzaMB: NoSQL\\u2019s great, but bring your A game http://t.co/YqnlXjof", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:19:24 +0000", "from_user": "MHensleyJr", "from_user_id": 20474829, "from_user_id_str": "20474829", "from_user_name": "Mark E. Hensley Jr.", "geo": null, "id": 148271119210790900, "id_str": "148271119210790912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1463180584/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1463180584/image_normal.jpg", "source": "Zite Personalized Magazine", "text": "NoSQL's great, but bring your A game http://t.co/5O3zJNwU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:18:59 +0000", "from_user": "rhm2k", "from_user_id": 14065215, "from_user_id_str": "14065215", "from_user_name": "Rich Miller", "geo": null, "id": 148271013489156100, "id_str": "148271013489156096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1178804758/Headshot4b_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1178804758/Headshot4b_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Reading: NoSQL\\u2019s great, but bring your A game \\u2014 Cloud Computing News http://t.co/bES4gmzx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:17:44 +0000", "from_user": "javalobbyposts", "from_user_id": 147910377, "from_user_id_str": "147910377", "from_user_name": "Javalobby", "geo": null, "id": 148270702217269250, "id_str": "148270702217269248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/929194867/mh_dzone_logo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/929194867/mh_dzone_logo_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Search Analytics: Business Value & BigData NoSQL Backend: Search is increasingly the primary information access ... http://t.co/y4Pe4ARG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:11:24 +0000", "from_user": "Edisonsepulveda", "from_user_id": 36261974, "from_user_id_str": "36261974", "from_user_name": "Edison Sepulveda ", "geo": null, "id": 148269108964769800, "id_str": "148269108964769793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1431700259/Edison_Sepulveda_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1431700259/Edison_Sepulveda_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "El futuro de las Bases de datos - NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/9Sq2NTVZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:47:33 +0000", "from_user": "nmensah1", "from_user_id": 37041660, "from_user_id_str": "37041660", "from_user_name": "Nana Osafo-Mensah", "geo": null, "id": 148263104751468540, "id_str": "148263104751468544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/315308377/100_1880_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/315308377/100_1880_normal.JPG", "source": "<a href="http://www.alphonsolabs.com/" rel="nofollow">Pulse News</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/nySPwNic", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:47:13 +0000", "from_user": "lyxint", "from_user_id": 201169348, "from_user_id_str": "201169348", "from_user_name": "duyue", "geo": null, "id": 148263021586817020, "id_str": "148263021586817025", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1142091888/ul4680714-4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1142091888/ul4680714-4_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @zzzeek: \"NoSQL is necessary for a lot of use cases, but it\\u2019s not for co's afraid of hard work.\" http://t.co/ZAlpzZ8C", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:44:52 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 148262430181556220, "id_str": "148262430181556226", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "RT @mahdi: Google Insights: Cassandra appear as the leading NoSQL solution. http://t.co/fjETAsGw #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:43:21 +0000", "from_user": "Rdchris", "from_user_id": 161283468, "from_user_id_str": "161283468", "from_user_name": "Chris Richards", "geo": null, "id": 148262050018234370, "id_str": "148262050018234368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1613821341/Tiny_Profile_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1613821341/Tiny_Profile_pic_normal.jpg", "source": "<a href="http://www.alphonsolabs.com/" rel="nofollow">Pulse News</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/jnn7I6cB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:22:13 +0000", "from_user": "zzzeek", "from_user_id": 15088129, "from_user_id_str": "15088129", "from_user_name": "mike bayer", "geo": null, "id": 148256730927734800, "id_str": "148256730927734785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1422671211/Screen_shot_2011-07-01_at_1.20.37_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1422671211/Screen_shot_2011-07-01_at_1.20.37_PM_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "\"NoSQL is necessary for a lot of use cases, but it\\u2019s not for co's afraid of hard work.\" http://t.co/ZAlpzZ8C", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:20:47 +0000", "from_user": "mreunionlabs", "from_user_id": 186400392, "from_user_id_str": "186400392", "from_user_name": "mreunion labs", "geo": null, "id": 148256369609412600, "id_str": "148256369609412608", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1139042121/mrlabs-logo-border3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1139042121/mrlabs-logo-border3_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@md_ray dr dulu ikut monitor perkembangan NoSQL ini, tapi kalau ditanya sekarang pasti gw tetep rekomend MySQL dulu, gak berani lgsng NoSQL", "to_user": "md_ray", "to_user_id": 25480604, "to_user_id_str": "25480604", "to_user_name": "Muhammad Rayhan", "in_reply_to_status_id": 148212190762119170, "in_reply_to_status_id_str": "148212190762119168"}, +{"created_at": "Sun, 18 Dec 2011 04:08:59 +0000", "from_user": "MirzaMB", "from_user_id": 281734938, "from_user_id_str": "281734938", "from_user_name": "Mirza Mushtaq Baig", "geo": null, "id": 148253398762930180, "id_str": "148253398762930176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1432628857/head_shot_-_Mirza_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1432628857/head_shot_-_Mirza_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/YqnlXjof", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:08:59 +0000", "from_user": "lesindigenes", "from_user_id": 328917731, "from_user_id_str": "328917731", "from_user_name": "les indigenes", "geo": null, "id": 148253397437517820, "id_str": "148253397437517825", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1443642939/rss_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1443642939/rss_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: MongoDB might be a popular choice in NoSQL databases, but it\\u2019s... http://t.co/8BN5iQu5 via @gigaom", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 04:00:26 +0000", "from_user": "ecomso", "from_user_id": 28958317, "from_user_id_str": "28958317", "from_user_name": "Danny Lim", "geo": null, "id": 148251247294693380, "id_str": "148251247294693376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1677514441/danny-cube_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677514441/danny-cube_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/5WCFfsDD\\n#NoSQL #A-Game", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:59:57 +0000", "from_user": "robotvert", "from_user_id": 28258266, "from_user_id_str": "28258266", "from_user_name": "Julien", "geo": null, "id": 148251125039112200, "id_str": "148251125039112193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1673017970/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673017970/profile_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/N2Dy3g9g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:57:22 +0000", "from_user": "Kingwulf", "from_user_id": 16954778, "from_user_id_str": "16954778", "from_user_name": "Henry Saputra", "geo": null, "id": 148250474775183360, "id_str": "148250474775183360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/90754996/Letter_Jacket_Thumb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/90754996/Letter_Jacket_Thumb_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Apache Gora community has voted to graduate from incubator: http://t.co/JgOUbsKd #gora #nosql #orm #asf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:52:44 +0000", "from_user": "alespinoza", "from_user_id": 23696089, "from_user_id_str": "23696089", "from_user_name": "Alejandro Espinoza", "geo": null, "id": 148249309035503600, "id_str": "148249309035503618", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1634815135/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634815135/image_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "NoSQL's great, but bring your A game http://t.co/iLbSDUla", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:46:36 +0000", "from_user": "ssprasad", "from_user_id": 14904898, "from_user_id_str": "14904898", "from_user_name": "Sandeep S Prasad", "geo": null, "id": 148247764894105600, "id_str": "148247764894105600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1202270056/9feba6b7-1bc0-49c4-8f88-9b40f54b4c67_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1202270056/9feba6b7-1bc0-49c4-8f88-9b40f54b4c67_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/q7T7vYiE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:31:53 +0000", "from_user": "bzob", "from_user_id": 17750575, "from_user_id_str": "17750575", "from_user_name": "Brad Zobrist", "geo": null, "id": 148244064234508300, "id_str": "148244064234508288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1597376756/bzob_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1597376756/bzob_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @ITBlogs: NoSQL\\u2019s great, but bring your A game http://t.co/34zSxVgH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:31:51 +0000", "from_user": "jfpaschke", "from_user_id": 106886485, "from_user_id_str": "106886485", "from_user_name": "Jesse Paschke", "geo": null, "id": 148244053870391300, "id_str": "148244053870391296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1667164918/281955_2314254455230_1215489152_32855989_7600033_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667164918/281955_2314254455230_1215489152_32855989_7600033_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/H2OAL7T2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:31:03 +0000", "from_user": "montegibbs", "from_user_id": 21899209, "from_user_id_str": "21899209", "from_user_name": "Monte Gibbs", "geo": null, "id": 148243854225719300, "id_str": "148243854225719296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1452743098/MG_Bio_Photo_2010_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1452743098/MG_Bio_Photo_2010_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "NoSQL's great, but bring your A game http://t.co/M6g5E7Pe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:30:59 +0000", "from_user": "adriandantas", "from_user_id": 7492622, "from_user_id_str": "7492622", "from_user_name": "Adri\\u00E1n Dantas", "geo": null, "id": 148243838069243900, "id_str": "148243838069243904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1622697255/_MG_2532-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622697255/_MG_2532-1_normal.jpg", "source": "<a href="http://www.alphonsolabs.com/" rel="nofollow">Pulse News</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/qf1qyAaW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:20:42 +0000", "from_user": "BearDown_Devs", "from_user_id": 238761310, "from_user_id_str": "238761310", "from_user_name": "bear down", "geo": null, "id": 148241250531807230, "id_str": "148241250531807232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1216811968/345d1c57-1b30-4f4b-922f-503bd2ac22fe_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1216811968/345d1c57-1b30-4f4b-922f-503bd2ac22fe_normal.png", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "NoSQL's great, but bring your A game http://t.co/X31gBefN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:18:53 +0000", "from_user": "ghelleks", "from_user_id": 7373472, "from_user_id_str": "7373472", "from_user_name": "Gunnar Hellekson", "geo": null, "id": 148240789724598270, "id_str": "148240789724598272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/440288489/gh-headshot-rh-crop-tiny_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/440288489/gh-headshot-rh-crop-tiny_normal.png", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "\"NoSQL\\u2019s great, but bring your A game\" http://t.co/Mv3WGmyM < This makes being a sysadmin sound like fun. Kinda.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:15:27 +0000", "from_user": "megamda", "from_user_id": 19755562, "from_user_id_str": "19755562", "from_user_name": "Kumar Palaniappan", "geo": null, "id": 148239925823799300, "id_str": "148239925823799296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627876492/kumar_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627876492/kumar_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL is necessary for a lot of use cases,but it\\u2019s not for companies afraid of hard work. http://t.co/QjAx2DRh <means not for enterprise(?!)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:12:05 +0000", "from_user": "akaCarioca", "from_user_id": 101642089, "from_user_id_str": "101642089", "from_user_name": "Carlos", "geo": null, "id": 148239078415007740, "id_str": "148239078415007744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699426918/SantaFunny_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699426918/SantaFunny_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "NoSQL's great, but bring your A game http://t.co/GCZpTEvo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:06:13 +0000", "from_user": "sprusky", "from_user_id": 68478708, "from_user_id_str": "68478708", "from_user_name": "Sergio Prusky", "geo": null, "id": 148237603047612400, "id_str": "148237603047612416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1178737533/sergio_passport_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1178737533/sergio_passport_normal.jpg", "source": "Zite Personalized Magazine", "text": "MongoDB, NoSQL's great, but bring your A game http://t.co/lK87NScA via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 03:05:54 +0000", "from_user": "mgomezq", "from_user_id": 162098321, "from_user_id_str": "162098321", "from_user_name": "Mauricio Gomez", "geo": null, "id": 148237524127580160, "id_str": "148237524127580160", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1322674286/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1322674286/avatar_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @chalalo: Que buena es la base de datos Cache, soporta NoSQL y SQL sobre las mismas colecciones // +1 Cache Rulz!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:45:36 +0000", "from_user": "maddentw", "from_user_id": 268562163, "from_user_id_str": "268562163", "from_user_name": "Tim Madden", "geo": null, "id": 148232417226932220, "id_str": "148232417226932224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1287341921/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1287341921/image_normal.jpg", "source": "<a href="http://www.instapaper.com/" rel="nofollow">Instapaper</a>", "text": "NoSQL\\u2019s great, but bring your A game \\u2014 \\t\\tCloud Computing News\\t http://t.co/Nl0k7mne (via Instapaper)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:36:01 +0000", "from_user": "Kyoku57", "from_user_id": 133433582, "from_user_id_str": "133433582", "from_user_name": "S\\u00E9bastien DUPIRE", "geo": null, "id": 148230003392393200, "id_str": "148230003392393216", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1430731254/seb_anim_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1430731254/seb_anim_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @jedisct1: RT @OracleDatabase: Podcast: Introducing Oracle #NoSQL Database http://t.co/54mWKN1M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:33:24 +0000", "from_user": "chipchilders", "from_user_id": 14388078, "from_user_id_str": "14388078", "from_user_name": "chipchilders", "geo": null, "id": 148229343531896830, "id_str": "148229343531896832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/64446601/me_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/64446601/me_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/N2Dy3g9g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:32:57 +0000", "from_user": "uma_kanth", "from_user_id": 11984102, "from_user_id_str": "11984102", "from_user_name": "UK Gupta", "geo": null, "id": 148229231468490750, "id_str": "148229231468490753", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690514941/Copy__2__of_RFC_Mask_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690514941/Copy__2__of_RFC_Mask_normal.jpg", "source": "<a href="http://www.snaptu.com" rel="nofollow">Snaptu</a>", "text": "\"Facts & Figures about #NoSQL & #MongoDB.\" #CloudComputing http://t.co/qwuR5lof", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:28:55 +0000", "from_user": "yoshiks", "from_user_id": 130033802, "from_user_id_str": "130033802", "from_user_name": "S Yoshiks", "geo": null, "id": 148228216887320580, "id_str": "148228216887320577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1256661529/SP005_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1256661529/SP005_normal.jpg", "source": "<a href="http://posterous.com" rel="nofollow">Posterous</a>", "text": "NoSQL\\u2019s great, but...: http://t.co/2kl3ARdD ...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:26:55 +0000", "from_user": "tzangms", "from_user_id": 690663, "from_user_id_str": "690663", "from_user_name": "tzangms / \\u5C0F\\u6D77", "geo": null, "id": 148227713537294340, "id_str": "148227713537294337", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1377644692/100_2349_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1377644692/100_2349_normal.JPG", "source": "Zite Personalized Magazine", "text": "NoSQL's great, but bring your A game http://t.co/QRhc1iOF via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:15:54 +0000", "from_user": "mongodb_news", "from_user_id": 218710958, "from_user_id_str": "218710958", "from_user_name": "MongoDb", "geo": null, "id": 148224942251577340, "id_str": "148224942251577344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1173473945/imgres-1_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1173473945/imgres-1_normal.jpeg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @IT_Usability: NoSQL\\u2019s great, but bring your A game http://t.co/JTwVn1oO #Cloudcomputing", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:13:33 +0000", "from_user": "TopCloudHosting", "from_user_id": 170814667, "from_user_id_str": "170814667", "from_user_name": "CloudComputing", "geo": null, "id": 148224349906812930, "id_str": "148224349906812931", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1090310223/cloud_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1090310223/cloud_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @cloud_dennis Reading: NoSQL\\u2019s great, but bring your A game \\u2014 Cloud Computing News: http://t.co/fZBUGgLu: Reading: NoSQL\\u2019s great...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:06:00 +0000", "from_user": "schultkl", "from_user_id": 9063792, "from_user_id_str": "9063792", "from_user_name": "schultkl", "geo": null, "id": 148222448477806600, "id_str": "148222448477806592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/31459422/HPIM3194_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/31459422/HPIM3194_normal.jpg", "source": "<a href="http://gplus.sagg.im" rel="nofollow">Google+ Agent</a>", "text": "NoSQL's great, but bring your A game http://t.co/y7GSadxC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:05:10 +0000", "from_user": "pmferro", "from_user_id": 18579069, "from_user_id_str": "18579069", "from_user_name": "Pablo Ferro", "geo": null, "id": 148222240125751300, "id_str": "148222240125751296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/69445567/pabs_mexico_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/69445567/pabs_mexico_normal.jpg", "source": "Zite Personalized Magazine", "text": "NoSQL's great, but bring your A game http://t.co/9IJlyzSz via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 02:00:12 +0000", "from_user": "cloud_dennis", "from_user_id": 21062686, "from_user_id_str": "21062686", "from_user_name": "Dennis Plucinik", "geo": null, "id": 148220990248333300, "id_str": "148220990248333312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/588950473/servers_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/588950473/servers_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Reading: NoSQL\\u2019s great, but bring your A game \\u2014 Cloud Computing News: http://t.co/gsISuJvu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:59:10 +0000", "from_user": "SimonDarr", "from_user_id": 223436333, "from_user_id_str": "223436333", "from_user_name": "SimonD", "geo": null, "id": 148220729257754620, "id_str": "148220729257754624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1314507857/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1314507857/image_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @HackerNewsYC: NoSQL\\u2019s great, but bring your A game http://t.co/702fKy99", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:52:27 +0000", "from_user": "valigula", "from_user_id": 56190612, "from_user_id_str": "56190612", "from_user_name": "Andres Suarez Villa", "geo": null, "id": 148219038441545730, "id_str": "148219038441545728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1417790162/2UJ8Msm1_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1417790162/2UJ8Msm1_normal", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "NoSQL's great, but bring your A game http://t.co/6orMCNhO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:38:39 +0000", "from_user": "nycjobber", "from_user_id": 413991585, "from_user_id_str": "413991585", "from_user_name": "nycjobber", "geo": null, "id": 148215566577053700, "id_str": "148215566577053696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1642023980/1321452628_Job-Ready_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642023980/1321452628_Job-Ready_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Linux / NoSQL System Administrator for eCommerce Retail Site http://t.co/wtW980eP #jobs #NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:31:22 +0000", "from_user": "apistilli", "from_user_id": 14827230, "from_user_id_str": "14827230", "from_user_name": "Alessandro Pistilli", "geo": null, "id": 148213733620056060, "id_str": "148213733620056065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/774884798/apistilli_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/774884798/apistilli_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/VWsCooAk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:27:55 +0000", "from_user": "domenicosolazzo", "from_user_id": 127299744, "from_user_id_str": "127299744", "from_user_name": "Domenico Solazzo", "geo": null, "id": 148212866292523000, "id_str": "148212866292523008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1351558080/dome4_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1351558080/dome4_2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "NoSQL\\u2019s great, but bring your A game: http://t.co/q7yD0kab #nosql #mongodb #db", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:27:25 +0000", "from_user": "NYTIMESJOBZ", "from_user_id": 140543571, "from_user_id_str": "140543571", "from_user_name": "Alex Brown", "geo": null, "id": 148212739779735550, "id_str": "148212739779735552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Linux / NoSQL System Administrator for eCommerce Retail Site: NY-New York, CyberCoders - Be Selective Location N... http://t.co/zxEoVavp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Sun, 18 Dec 2011 01:27:55 +0000", "from_user": "domenicosolazzo", "from_user_id": 127299744, "from_user_id_str": "127299744", "from_user_name": "Domenico Solazzo", "geo": null, "id": 148212866292523000, "id_str": "148212866292523008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1351558080/dome4_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1351558080/dome4_2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "NoSQL\\u2019s great, but bring your A game: http://t.co/q7yD0kab #nosql #mongodb #db", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:27:25 +0000", "from_user": "NYTIMESJOBZ", "from_user_id": 140543571, "from_user_id_str": "140543571", "from_user_name": "Alex Brown", "geo": null, "id": 148212739779735550, "id_str": "148212739779735552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Linux / NoSQL System Administrator for eCommerce Retail Site: NY-New York, CyberCoders - Be Selective Location N... http://t.co/zxEoVavp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:26:21 +0000", "from_user": "tediscript", "from_user_id": 15878412, "from_user_id_str": "15878412", "from_user_name": "Tedi", "geo": null, "id": 148212472669671420, "id_str": "148212472669671424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668804161/semongko_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668804161/semongko_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @md_ray: NoSQL\\u2019s great, but bring your A game - http://t.co/MoYSczPp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:25:14 +0000", "from_user": "md_ray", "from_user_id": 25480604, "from_user_id_str": "25480604", "from_user_name": "Muhammad Rayhan", "geo": null, "id": 148212190762119170, "id_str": "148212190762119168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1594135858/Tresna_Cahya_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1594135858/Tresna_Cahya_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "NoSQL\\u2019s great, but bring your A game - http://t.co/MoYSczPp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:22:52 +0000", "from_user": "BirdJob", "from_user_id": 335393409, "from_user_id_str": "335393409", "from_user_name": "Bird Job", "geo": null, "id": 148211593493217280, "id_str": "148211593493217280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1442418464/Twitter-for-job-Seekers_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1442418464/Twitter-for-job-Seekers_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Needed Linux / NoSQL System Administrator for eCommerce Retail Site: NY-New York, CyberCoders - Be ... http://t.co/7yDecn88 #Retail #Ny", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:20:53 +0000", "from_user": "daulfingrey", "from_user_id": 61768284, "from_user_id_str": "61768284", "from_user_name": "Daulfin Grey", "geo": null, "id": 148211096006819840, "id_str": "148211096006819840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1210011798/coffee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1210011798/coffee_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "http://t.co/PX1XR0lZ Linux / NoSQL System Administrator for eCommerce Retail Site: NY-New York, CyberCo... http://t.co/wh2N4HsQ #monster", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:20:43 +0000", "from_user": "nuttyknot", "from_user_id": 5492972, "from_user_id_str": "5492972", "from_user_name": "NuttyKnot", "geo": null, "id": 148211055267557380, "id_str": "148211055267557376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/535285544/20091002_163130_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/535285544/20091002_163130_normal.JPG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "NoSQL is great, if you're willing too work on it! http://t.co/ExYFKvKM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:17:59 +0000", "from_user": "instanttechnews", "from_user_id": 390754287, "from_user_id_str": "390754287", "from_user_name": "technews", "geo": null, "id": 148210364134330370, "id_str": "148210364134330368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1589948185/5tqpdjmavdv097c64n51t219171318659855_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1589948185/5tqpdjmavdv097c64n51t219171318659855_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/mRdpY75V", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:17:34 +0000", "from_user": "eComjobs", "from_user_id": 21094743, "from_user_id_str": "21094743", "from_user_name": "Henry James", "geo": null, "id": 148210260191092740, "id_str": "148210260191092737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/198415503/deathstar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/198415503/deathstar_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Ecom Jobs USA Linux / NoSQL System Administrator for eCommerce Retail Site: NY-New York, CyberCoders -... http://t.co/p8iF1ZCy #ecomjobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:11:02 +0000", "from_user": "MythicTechno", "from_user_id": 138286178, "from_user_id_str": "138286178", "from_user_name": "Mythic Technologies", "geo": null, "id": 148208615055032320, "id_str": "148208615055032320", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1111710966/mythicbutton_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1111710966/mythicbutton_twitter_normal.png", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "NoSQL: Apache Cassandra 101 - http://t.co/WsDFUFBQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:03:01 +0000", "from_user": "mattnowina", "from_user_id": 103869545, "from_user_id_str": "103869545", "from_user_name": "Matt Nowina", "geo": null, "id": 148206601080287230, "id_str": "148206601080287232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1310193735/eightbit-9aa6f9af-a52d-4215-97f5-8ae5720906f1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1310193735/eightbit-9aa6f9af-a52d-4215-97f5-8ae5720906f1_normal.png", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "NoSQL Screencast: Building a StackOverflow Clone With RavenDB http://t.co/uhplr1Ak", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 01:00:51 +0000", "from_user": "dieswaytoofast", "from_user_id": 312604736, "from_user_id_str": "312604736", "from_user_name": "Mahesh P-Subramanya", "geo": null, "id": 148206052951867400, "id_str": "148206052951867394", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1572400317/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572400317/Untitled_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @justinsheehy: . @derrickharris I'm curious: why a headline and generalizations about \"NoSQL\" in an article ... just about one database?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:44:55 +0000", "from_user": "skion", "from_user_id": 11132192, "from_user_id_str": "11132192", "from_user_name": "Pieter Ennes", "geo": null, "id": 148202043528593400, "id_str": "148202043528593410", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/695079114/avatar-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/695079114/avatar-1_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Whoa 1400+ #mongo's at Disney \\u201C@filos: NoSQL\\u2019s great, but bring your A game http://t.co/8lwNK8bq\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:39:32 +0000", "from_user": "ramhv", "from_user_id": 11172632, "from_user_id_str": "11172632", "from_user_name": "Ram H. Viswanathan", "geo": +{"coordinates": [-36.8469,174.7615], "type": "Point"}, "id": 148200691154948100, "id_str": "148200691154948096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1448576035/01_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1448576035/01_normal.jpg", "source": "Zite Personalized Magazine", "text": "NoSQL's great, but bring your A game http://t.co/inKR8gbw & good luck when you start hitting disk IO issues!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:38:28 +0000", "from_user": "iWillByte", "from_user_id": 321963281, "from_user_id_str": "321963281", "from_user_name": "Will", "geo": null, "id": 148200422195200000, "id_str": "148200422195200000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1461591375/3A6DE3A1-40C4-47BE-81E5-12E1134A08C2_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1461591375/3A6DE3A1-40C4-47BE-81E5-12E1134A08C2_normal", "source": "<a href="http://itunes.apple.com/us/app/google-currents/id459182288?mt=8&uo=4" rel="nofollow">Google Currents on iOS</a>", "text": "GigaOM: NoSQL\\u2019s great, but bring your A game http://t.co/c5BKuEuF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:37:03 +0000", "from_user": "ITJobsinUSA", "from_user_id": 20668038, "from_user_id_str": "20668038", "from_user_name": "IT Jobs in the USA", "geo": null, "id": 148200064349765630, "id_str": "148200064349765632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/79294538/20861781_21383609_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/79294538/20861781_21383609_normal.jpg", "source": "<a href="http://www.twitjobsearch.com/" rel="nofollow">TwitJobSearch.com Jobs</a>", "text": "PHP Developer - JavaScript, HTML, CSS, SQL, NoSQL, Large Scale - Redwood City... #jobs http://t.co/Yhh1jnsC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:35:15 +0000", "from_user": "jay23jack", "from_user_id": 438655117, "from_user_id_str": "438655117", "from_user_name": "Jie Li", "geo": null, "id": 148199611486572540, "id_str": "148199611486572544", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": null, "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: 8 Most Interesting Companies for Hadoop's Future http://t.co/DGjsMLzh #Hadoop #Cloudera #Hortonworks #MapR #Hadapt #HPCC #DataStax #Zettaset", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:34:52 +0000", "from_user": "JusticeMitchell", "from_user_id": 2660761, "from_user_id_str": "2660761", "from_user_name": "Justice Mitchell", "geo": null, "id": 148199515357315070, "id_str": "148199515357315072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1339057414/JM_square_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1339057414/JM_square_sm_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game #gigaom http://t.co/C43Ho8XO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:27:11 +0000", "from_user": "yangcaosweeper", "from_user_id": 12425782, "from_user_id_str": "12425782", "from_user_name": "Yang Cao", "geo": null, "id": 148197580088684540, "id_str": "148197580088684545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1315579372/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1315579372/image_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "NoSQL's great, but bring your A game http://t.co/o6xGiLd6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:09:05 +0000", "from_user": "IntelligentD8a", "from_user_id": 15595196, "from_user_id_str": "15595196", "from_user_name": "Jon Zakaras", "geo": null, "id": 148193027943432200, "id_str": "148193027943432192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1279625100/image001_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1279625100/image001_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "NoSQL\\u2019s great, but bring your A game - http://t.co/XufLhUVG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:08:20 +0000", "from_user": "PhaleBlog", "from_user_id": 146253962, "from_user_id_str": "146253962", "from_user_name": "Jerry Phalen", "geo": null, "id": 148192838608371700, "id_str": "148192838608371712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/917216656/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/917216656/image_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/N2Dy3g9g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:07:21 +0000", "from_user": "bangkokdad", "from_user_id": 112373619, "from_user_id_str": "112373619", "from_user_name": "Vladimir", "geo": null, "id": 148192590418808830, "id_str": "148192590418808832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/682887713/IMG_6274-2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/682887713/IMG_6274-2_normal.JPG", "source": "<a href="http://www.alphonsolabs.com/" rel="nofollow">Pulse News</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/2uR8HxJJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:03:56 +0000", "from_user": "hermanjunge", "from_user_id": 270723897, "from_user_id_str": "270723897", "from_user_name": "Herman A. Junge", "geo": null, "id": 148191728875221000, "id_str": "148191728875220992", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680398755/20111208.Auto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680398755/20111208.Auto_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@chalalo la dura? Cuando sube ud los resultados maestro? Soy veterano de C # y seria bonito ver como opera con noSQL", "to_user": "chalalo", "to_user_id": 97229616, "to_user_id_str": "97229616", "to_user_name": "Gonzalo P\\u00E9rez C.", "in_reply_to_status_id": 148191085741613060, "in_reply_to_status_id_str": "148191085741613057"}, +{"created_at": "Sun, 18 Dec 2011 00:02:59 +0000", "from_user": "scrollinondubs", "from_user_id": 10337242, "from_user_id_str": "10337242", "from_user_name": "Sean Tierney", "geo": null, "id": 148191491402104830, "id_str": "148191491402104832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/36954142/ScrollinAvatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/36954142/ScrollinAvatar_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "good overview of pro's & con's of NoSQL db's and summary of diff flavors: http://t.co/qkn7zhoQ via @bryankirch", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:02:31 +0000", "from_user": "chrismarin", "from_user_id": 21202409, "from_user_id_str": "21202409", "from_user_name": "Christopher Marin", "geo": null, "id": 148191375710629900, "id_str": "148191375710629890", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1619537889/cmarin_profile_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619537889/cmarin_profile_pic_normal.jpg", "source": "Zite Personalized Magazine", "text": "NoSQL's great, but bring your A game http://t.co/taa1v7IR via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 00:01:55 +0000", "from_user": "l0s", "from_user_id": 17058600, "from_user_id_str": "17058600", "from_user_name": "Carlos Macasaet", "geo": null, "id": 148191221037277200, "id_str": "148191221037277184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1365426673/self-portrait-md_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1365426673/self-portrait-md_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "NoSQL's great, but bring your A game http://t.co/f8ekPjKr #MongoDB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:57:54 +0000", "from_user": "juan_diaz_diaz", "from_user_id": 17420951, "from_user_id_str": "17420951", "from_user_name": "juan_diaz_diaz", "geo": null, "id": 148190214345601020, "id_str": "148190214345601024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1414202955/newbackgroundimg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1414202955/newbackgroundimg_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Grails 2.0 with more cloud support and NoSQL connectivity: The Grails development team has released version 2.0 ... http://t.co/Dss0Ji0E", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:55:17 +0000", "from_user": "adrienthery", "from_user_id": 197447411, "from_user_id_str": "197447411", "from_user_name": "Adrien Thery", "geo": null, "id": 148189553201643520, "id_str": "148189553201643520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1168422182/photo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1168422182/photo_normal.JPG", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "RT @axelpavageau: NoSQL\\u2019s great, but bring your A game \\u2014 Cloud Computing News http://t.co/FkX2jdhW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:53:30 +0000", "from_user": "achuang0", "from_user_id": 267946179, "from_user_id_str": "267946179", "from_user_name": "Andy Huang", "geo": null, "id": 148189104293683200, "id_str": "148189104293683200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://www.visibli.com" rel="nofollow">Visibli</a>", "text": "NoSQL\\u2019s great, but bring your A game (42 points) http://t.co/qNV05wkR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:47:56 +0000", "from_user": "newic500", "from_user_id": 36994148, "from_user_id_str": "36994148", "from_user_name": "Eric V", "geo": null, "id": 148187702137851900, "id_str": "148187702137851905", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/194281888/Me591_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/194281888/Me591_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "HBase Schema Design -Webcast http://t.co/Pl3CNqYw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:41:57 +0000", "from_user": "theshah", "from_user_id": 6645822, "from_user_id_str": "6645822", "from_user_name": "Shawn", "geo": null, "id": 148186198907695100, "id_str": "148186198907695105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1257864880/eightbit-852e11fd-b52d-44b9-b89a-42838b429826_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1257864880/eightbit-852e11fd-b52d-44b9-b89a-42838b429826_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @HackerNewsYC: NoSQL\\u2019s great, but bring your A game http://t.co/702fKy99", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:40:55 +0000", "from_user": "pphanicareers", "from_user_id": 218695843, "from_user_id_str": "218695843", "from_user_name": "Phani", "geo": null, "id": 148185938093285380, "id_str": "148185938093285376", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: 8 Most Interesting Companies for Hadoop's Future http://t.co/DGjsMLzh #Hadoop #Cloudera #Hortonworks #MapR #Hadapt #HPCC #DataStax #Zettaset", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:33:38 +0000", "from_user": "DC_APP_", "from_user_id": 341465435, "from_user_id_str": "341465435", "from_user_name": "DC ALM", "geo": null, "id": 148184106457505800, "id_str": "148184106457505792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1694910133/DC_PICTURE_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694910133/DC_PICTURE_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/NXH0Qw8W via @DC_APP_", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:33:24 +0000", "from_user": "chalalo", "from_user_id": 97229616, "from_user_id_str": "97229616", "from_user_name": "Gonzalo P\\u00E9rez C.", "geo": null, "id": 148184046747402240, "id_str": "148184046747402240", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1089195366/e714ad01-6022-4d78-ab73-7d78af81986f_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1089195366/e714ad01-6022-4d78-ab73-7d78af81986f_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Que buena es la base de datos Cache, soporta NoSQL y SQL sobre las mismas colecciones", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:28:34 +0000", "from_user": "rodolfor", "from_user_id": 16690663, "from_user_id_str": "16690663", "from_user_name": "Rodolfo Rosini", "geo": null, "id": 148182829023510530, "id_str": "148182829023510529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1156959873/rodolfo_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1156959873/rodolfo_twitter_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @jasonh: Yes the shitty mystery IO on AWS must be the db's fault ==> RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/ZONs4kRy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:26:44 +0000", "from_user": "dslevin", "from_user_id": 21022068, "from_user_id_str": "21022068", "from_user_name": "David Levin", "geo": null, "id": 148182369805934600, "id_str": "148182369805934592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1161047841/David_Levin_Profile_Pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1161047841/David_Levin_Profile_Pic_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "NoSQL's great, but bring your A game http://t.co/a2l9uo6x", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:25:50 +0000", "from_user": "dadepo", "from_user_id": 9822792, "from_user_id_str": "9822792", "from_user_name": "dade!", "geo": null, "id": 148182143447744500, "id_str": "148182143447744513", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/736008027/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/736008027/twitterProfilePhoto_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "looking into MongoDB and just thinking about having a db with no schema seems almost sacrilegious :( #Nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:18:07 +0000", "from_user": "ktechblog", "from_user_id": 271936250, "from_user_id_str": "271936250", "from_user_name": "Karthi", "geo": null, "id": 148180199685632000, "id_str": "148180199685632001", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1286627399/ktb_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1286627399/ktb_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/5aOtWPYN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:16:25 +0000", "from_user": "byteee", "from_user_id": 185411958, "from_user_id_str": "185411958", "from_user_name": "Joan Art\\u00E9s \\uF8FF", "geo": null, "id": 148179770700603400, "id_str": "148179770700603393", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693712430/Foto_del_d_a_15-12-11_a_la_s__01.10_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693712430/Foto_del_d_a_15-12-11_a_la_s__01.10_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @devsidestory: Despu\\u00E9s del \\u00E9xito de NoSQL, hemos iniciado el movimiento NoOracle. Est\\u00E1 arrasando...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 23:08:58 +0000", "from_user": "rgaidot", "from_user_id": 1245801, "from_user_id_str": "1245801", "from_user_name": "R\\u00E9gis Gaidot", "geo": null, "id": 148177898984050700, "id_str": "148177898984050690", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1266738841/avatar-6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266738841/avatar-6_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/6HiSHulq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:45:54 +0000", "from_user": "troybeno", "from_user_id": 14200797, "from_user_id_str": "14200797", "from_user_name": "Troy Benohanian", "geo": null, "id": 148172090921582600, "id_str": "148172090921582592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/914140671/JulyAug09-Troy2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/914140671/JulyAug09-Troy2_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/KIgHzKxk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:43:29 +0000", "from_user": "runeroniek", "from_user_id": 75693595, "from_user_id_str": "75693595", "from_user_name": "Luiz Fonseca ", "geo": null, "id": 148171486497210370, "id_str": "148171486497210369", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1548189325/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1548189325/me_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Algum dos amigos tem experi\\u00EAncia com NoSQL (Redis/Riak)?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:41:49 +0000", "from_user": "aneelk", "from_user_id": 49139437, "from_user_id_str": "49139437", "from_user_name": "aneel kumar", "geo": null, "id": 148171063812030460, "id_str": "148171063812030464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/273648104/aneelkumar3_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/273648104/aneelkumar3_normal.gif", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/Bi7fn0vj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:31:24 +0000", "from_user": "YCHackerNews", "from_user_id": 90440720, "from_user_id_str": "90440720", "from_user_name": "YC Hacker News", "geo": null, "id": 148168445563904000, "id_str": "148168445563904000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/529679802/y_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/529679802/y_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: Comments:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:28:46 +0000", "from_user": "DataCenterBlogs", "from_user_id": 137312227, "from_user_id_str": "137312227", "from_user_name": "Data Center Blogs", "geo": null, "id": 148167782247313400, "id_str": "148167782247313408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/852678442/dcpavatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/852678442/dcpavatar_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: MongoDB might be a popular choice in NoSQL databases, but it's not perfect... http://t.co/irfnIPQ4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:26:14 +0000", "from_user": "aemadrid", "from_user_id": 7436122, "from_user_id_str": "7436122", "from_user_name": "aemadrid", "geo": null, "id": 148167142100058100, "id_str": "148167142100058113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1370236561/shot_1294018556793_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1370236561/shot_1294018556793_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lgarulli: #OrientDB 1.0rc8-SNAPSHOT: 300% faster importing IMDB db than 1.0rc7. New relationships mgmt scales up much better! #graphdb #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:26:00 +0000", "from_user": "shasta247", "from_user_id": 75019515, "from_user_id_str": "75019515", "from_user_name": "Scott Schommer", "geo": null, "id": 148167079432962050, "id_str": "148167079432962048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1550813457/ProfilePic_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1550813457/ProfilePic_normal.PNG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "These aren't the toys your looking for. Lora was a Star Wars Super Trooper with the kids! NOSQL for me today. #sql http://t.co/2Czlwqng", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:21:25 +0000", "from_user": "HackerNewsYC", "from_user_id": 15042473, "from_user_id_str": "15042473", "from_user_name": "Hacker News YC", "geo": null, "id": 148165930315288580, "id_str": "148165930315288576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/55176345/hackernewsfeed_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/55176345/hackernewsfeed_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/702fKy99", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:08:09 +0000", "from_user": "roxkur", "from_user_id": 358215236, "from_user_id_str": "358215236", "from_user_name": "Fernando", "geo": null, "id": 148162594014900220, "id_str": "148162594014900224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1566587658/TMQ_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566587658/TMQ_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL's great, but bring your A game http://t.co/glGP3Ur8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:07:54 +0000", "from_user": "rafa_callcenter", "from_user_id": 429840940, "from_user_id_str": "429840940", "from_user_name": "Rafa Esca\\u00F1o", "geo": null, "id": 148162529875607550, "id_str": "148162529875607552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677092620/rafael_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677092620/rafael_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "NoSQL\\u2019s great, but bring your A game | Cloud Computing News http://t.co/lMz78gDz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:06:03 +0000", "from_user": "mattnowina", "from_user_id": 103869545, "from_user_id_str": "103869545", "from_user_name": "Matt Nowina", "geo": null, "id": 148162063989092350, "id_str": "148162063989092353", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1310193735/eightbit-9aa6f9af-a52d-4215-97f5-8ae5720906f1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1310193735/eightbit-9aa6f9af-a52d-4215-97f5-8ae5720906f1_normal.png", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "NoSQL Screencast: HBase Schema Design http://t.co/Z5ictNhW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:04:45 +0000", "from_user": "RobTiffany", "from_user_id": 9767702, "from_user_id_str": "9767702", "from_user_name": "Rob Tiffany", "geo": null, "id": 148161735365378050, "id_str": "148161735365378049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1580132500/Rob88_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580132500/Rob88_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/FX6X0V33", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:04:13 +0000", "from_user": "densone", "from_user_id": 1480571, "from_user_id_str": "1480571", "from_user_name": "Sean Carey", "geo": null, "id": 148161603307704320, "id_str": "148161603307704320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1608193868/df586a470a47c7dfcbd3cd6fff23b807_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608193868/df586a470a47c7dfcbd3cd6fff23b807_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @justinsheehy: . @derrickharris I'm curious: why a headline and generalizations about \"NoSQL\" in an article that was all just about one database?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:01:19 +0000", "from_user": "x_cloudservices", "from_user_id": 246398555, "from_user_id_str": "246398555", "from_user_name": "XYDO Cloud Services", "geo": null, "id": 148160874505437200, "id_str": "148160874505437184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1232872070/XYDO_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1232872070/XYDO_normal.jpeg", "source": "<a href="http://www.xydo.com" rel="nofollow">XYDOhandles</a>", "text": "NoSQL\\u2019s great, but bring your A game #cloud #cloudservices http://t.co/RIFePX8G", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:00:02 +0000", "from_user": "HackerNewsFP", "from_user_id": 378119541, "from_user_id_str": "378119541", "from_user_name": "HN Front Page", "geo": null, "id": 148160552202534900, "id_str": "148160552202534912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1554908894/yclogo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554908894/yclogo_normal.gif", "source": "<a href="http://no.such.site/" rel="nofollow">hnfp</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/GZNvyNe4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:55:02 +0000", "from_user": "pogrebnyak", "from_user_id": 15761635, "from_user_id_str": "15761635", "from_user_name": "pogrebnyak", "geo": null, "id": 148159291512193020, "id_str": "148159291512193025", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/57869645/cth_hpl_lit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/57869645/cth_hpl_lit_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Reading: http://t.co/owEHF5xw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:49:11 +0000", "from_user": "BlueDoorLab", "from_user_id": 263999951, "from_user_id_str": "263999951", "from_user_name": "Gina Lujan", "geo": null, "id": 148157819034677250, "id_str": "148157819034677248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1268518286/back_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1268518286/back_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: Comments http://t.co/C50jlyVh #startups #coworking", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:47:36 +0000", "from_user": "shar1z", "from_user_id": 44580952, "from_user_id_str": "44580952", "from_user_name": "Sharone Zitzman", "geo": null, "id": 148157422530330620, "id_str": "148157422530330626", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1675824447/avatar_normal.JPEG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675824447/avatar_normal.JPEG", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "NoSQL\\u2019s great, but bring your A game | Cloud Computing News http://t.co/VGOCpKwX ~>FYI @natishalom @uri1803 #cloudify #nosql #scaling", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:46:32 +0000", "from_user": "CloudTopics", "from_user_id": 106687290, "from_user_id_str": "106687290", "from_user_name": "Olafur Ingthorsson", "geo": null, "id": 148157151242747900, "id_str": "148157151242747904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1208278264/OI-3-2010_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1208278264/OI-3-2010_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: At last week's MongoSV conference in Santa Clara, Cal... http://t.co/qkiTnT7b CloudComputingTopics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:44:21 +0000", "from_user": "axelpavageau", "from_user_id": 66305481, "from_user_id_str": "66305481", "from_user_name": "Axel Pavageau", "geo": null, "id": 148156602149646340, "id_str": "148156602149646336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1188791882/portrait_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1188791882/portrait_normal.png", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "NoSQL\\u2019s great, but bring your A game \\u2014 Cloud Computing News http://t.co/FkX2jdhW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:43:53 +0000", "from_user": "Vimalaranjan", "from_user_id": 45351976, "from_user_id_str": "45351976", "from_user_name": "Vimalaranjan", "geo": null, "id": 148156484604276740, "id_str": "148156484604276736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1210917729/DSC02808_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1210917729/DSC02808_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: At last week's MongoSV conference in Santa Clara, Calif., a number of user... http://t.co/BC8Tvrao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:43:52 +0000", "from_user": "PliddShare", "from_user_id": 250775915, "from_user_id_str": "250775915", "from_user_name": "Plidd.com", "geo": null, "id": 148156483664752640, "id_str": "148156483664752640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1391894711/Plidd_logofb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1391894711/Plidd_logofb_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: At last week's MongoSV conference in Santa Clara, Calif., a number of user... http://t.co/cb1RcxtR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:43:10 +0000", "from_user": "avalaxy", "from_user_id": 134939672, "from_user_id_str": "134939672", "from_user_name": "Leon Cullens", "geo": null, "id": 148156306501537800, "id_str": "148156306501537792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1652142062/3e5ff01_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652142062/3e5ff01_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/O4t3VLxM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:39:30 +0000", "from_user": "renatoLuna", "from_user_id": 15012618, "from_user_id_str": "15012618", "from_user_name": "Renato Luna", "geo": null, "id": 148155381242282000, "id_str": "148155381242281984", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682405190/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682405190/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@danielsarsi NoSQL geralmente \\u00E9 mais r\\u00E1pido, MySQL \\u00E9 mais seguro.", "to_user": "danielsarsi", "to_user_id": 14539290, "to_user_id_str": "14539290", "to_user_name": "Daniel Sarsi Orta", "in_reply_to_status_id": 148154720626806800, "in_reply_to_status_id_str": "148154720626806787"}, +{"created_at": "Sat, 17 Dec 2011 21:39:24 +0000", "from_user": "mhoegh", "from_user_id": 14019962, "from_user_id_str": "14019962", "from_user_name": "Martin H\\u00F8gh", "geo": null, "id": 148155359406718980, "id_str": "148155359406718977", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1596021362/e286784c-136a-44e0-adeb-77676c85ff02_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596021362/e286784c-136a-44e0-adeb-77676c85ff02_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/N2Dy3g9g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:39:23 +0000", "from_user": "Alan_Dill", "from_user_id": 400197767, "from_user_id_str": "400197767", "from_user_name": "Alan Dill", "geo": null, "id": 148155353039765500, "id_str": "148155353039765504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1610972594/iStock_000012743251XSmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610972594/iStock_000012743251XSmall_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:37:31 +0000", "from_user": "rjbrown99", "from_user_id": 16616784, "from_user_id_str": "16616784", "from_user_name": "Robert Brown", "geo": null, "id": 148154883747495940, "id_str": "148154883747495936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1332338070/RJBPROFILE-GCOGH-sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1332338070/RJBPROFILE-GCOGH-sm_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/N2Dy3g9g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:35:32 +0000", "from_user": "renatoLuna", "from_user_id": 15012618, "from_user_id_str": "15012618", "from_user_name": "Renato Luna", "geo": null, "id": 148154386256900100, "id_str": "148154386256900097", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682405190/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682405190/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@danielsarsi Se voc\\u00EA for macho consegue fazer em NoSQL, mas \\u00E9 bom saber MySQL :)", "to_user": "danielsarsi", "to_user_id": 14539290, "to_user_id_str": "14539290", "to_user_name": "Daniel Sarsi Orta", "in_reply_to_status_id": 148152981777416200, "in_reply_to_status_id_str": "148152981777416192"}, +{"created_at": "Sat, 17 Dec 2011 21:34:56 +0000", "from_user": "filos", "from_user_id": 788994, "from_user_id_str": "788994", "from_user_name": "Luca Filigheddu", "geo": null, "id": 148154234427293700, "id_str": "148154234427293696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1576460185/primopiano_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576460185/primopiano_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/uEj7w4vT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:34:49 +0000", "from_user": "Dakshinamurti", "from_user_id": 2847571, "from_user_id_str": "2847571", "from_user_name": "Salazar @ Teelook", "geo": null, "id": 148154204660318200, "id_str": "148154204660318208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/141017586/ANIM_TWITTER_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/141017586/ANIM_TWITTER_normal.gif", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/SpUngEuD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:34:36 +0000", "from_user": "ITBlogs", "from_user_id": 15858658, "from_user_id_str": "15858658", "from_user_name": "ITBlogs", "geo": null, "id": 148154149299699700, "id_str": "148154149299699713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/393514876/it_blogs_75x75_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/393514876/it_blogs_75x75_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/34zSxVgH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:33:02 +0000", "from_user": "RancuBorneo", "from_user_id": 389712425, "from_user_id_str": "389712425", "from_user_name": "Peter Stanley ", "geo": null, "id": 148153754368213000, "id_str": "148153754368212993", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668332819/387374_245444692181908_100001491369378_726063_72423067_n__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668332819/387374_245444692181908_100001491369378_726063_72423067_n__1__normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/vUgEMRQb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:32:32 +0000", "from_user": "beinwal", "from_user_id": 16920358, "from_user_id_str": "16920358", "from_user_name": "Bryan E.", "geo": null, "id": 148153628316807170, "id_str": "148153628316807170", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/634632948/beaker_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/634632948/beaker_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/N2Dy3g9g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:31:26 +0000", "from_user": "DataEco", "from_user_id": 286379953, "from_user_id_str": "286379953", "from_user_name": "Green IT", "geo": null, "id": 148153353854128130, "id_str": "148153353854128128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1321620623/data_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1321620623/data_normal.jpeg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "@earth2tech: NoSQL\\u2019s great, but bring your A game - At last week's MongoSV conference in Santa Clara, Calif., a numb... http://t.co/UxxHWsfB", "to_user": "Earth2Tech", "to_user_id": 15566998, "to_user_id_str": "15566998", "to_user_name": "Earth2Tech"}, +{"created_at": "Sat, 17 Dec 2011 21:30:02 +0000", "from_user": "HNTweets", "from_user_id": 116276133, "from_user_id_str": "116276133", "from_user_name": "Hacker News", "geo": null, "id": 148153001108963330, "id_str": "148153001108963328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1369520630/HNTweets_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1369520630/HNTweets_normal.png", "source": "<a href="http://github.com/d4nt/HNTweets" rel="nofollow">HNTweets Bot</a>", "text": "NoSQL\\u2019s great, but bring your A game: http://t.co/F0xtsN4P Comments: http://t.co/I7KkiUnE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:29:52 +0000", "from_user": "srustiranjan", "from_user_id": 35185036, "from_user_id_str": "35185036", "from_user_name": "Srusti Ranjan", "geo": null, "id": 148152959467921400, "id_str": "148152959467921408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1538611138/SR_Small_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538611138/SR_Small_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "NoSQL\\u2019s great, but bring your A game - At last week's MongoSV conference in Santa Clara, Calif., a number of users s... http://t.co/Js8F0VUi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:26:56 +0000", "from_user": "peakscale", "from_user_id": 20656014, "from_user_id_str": "20656014", "from_user_name": "Tim Freeman", "geo": null, "id": 148152220179906560, "id_str": "148152220179906560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/77520980/timf_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/77520980/timf_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @jasonh: Yes the shitty mystery IO on AWS must be the db's fault ==> RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/ZONs4kRy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:26:27 +0000", "from_user": "damangmedia", "from_user_id": 94989200, "from_user_id_str": "94989200", "from_user_name": "Matt Clark", "geo": null, "id": 148152096791863300, "id_str": "148152096791863296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1183631747/Matthew_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1183631747/Matthew_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "NoSQL\\u2019s great, but bring your A game - At last week's MongoSV conference in Santa Clara, Calif., a number of users s... http://t.co/NckCDBe8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:26:27 +0000", "from_user": "itstrue", "from_user_id": 9644622, "from_user_id_str": "9644622", "from_user_name": "Matt Clark", "geo": null, "id": 148152096565370880, "id_str": "148152096565370880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1201784466/Matt_Web_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1201784466/Matt_Web_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "NoSQL\\u2019s great, but bring your A game - At last week's MongoSV conference in Santa Clara, Calif., a number of users s... http://t.co/rnl79LmD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:26:08 +0000", "from_user": "frivoliti_com", "from_user_id": 23153945, "from_user_id_str": "23153945", "from_user_name": "Frivoliti.com", "geo": null, "id": 148152017674711040, "id_str": "148152017674711040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1342906234/Apple-Touch-Icon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1342906234/Apple-Touch-Icon_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "NoSQL\\u2019s great, but bring your A game - MongoDB might be a popular choice in NoSQL databases, but it's not perfect a... http://t.co/8YPLGkwX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:26:06 +0000", "from_user": "frivoliti", "from_user_id": 19374255, "from_user_id_str": "19374255", "from_user_name": "Frivoliti.com", "geo": null, "id": 148152012582817800, "id_str": "148152012582817792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1570711366/Apple-Touch-Icon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1570711366/Apple-Touch-Icon_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "NoSQL\\u2019s great, but bring your A game - MongoDB might be a popular choice in NoSQL databases, but it's not perfect a... http://t.co/fdd5mCga", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:26:05 +0000", "from_user": "frivoliti_tech", "from_user_id": 22586388, "from_user_id_str": "22586388", "from_user_name": "Frivoliti.com", "geo": null, "id": 148152007922950140, "id_str": "148152007922950144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1574323747/Apple-Touch-Icon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1574323747/Apple-Touch-Icon_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "NoSQL\\u2019s great, but bring your A game - MongoDB might be a popular choice in NoSQL databases, but it's not perfect a... http://t.co/1PaVP5rI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:25:09 +0000", "from_user": "agasthees", "from_user_id": 39697033, "from_user_id_str": "39697033", "from_user_name": "Agas", "geo": null, "id": 148151772983210000, "id_str": "148151772983209984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/235555339/Agas_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/235555339/Agas_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/kosX6llD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:22:39 +0000", "from_user": "dondecorleon", "from_user_id": 394874988, "from_user_id_str": "394874988", "from_user_name": "Silvio Roguljic", "geo": null, "id": 148151143695007740, "id_str": "148151143695007744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683792659/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683792659/image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "What the f*** (@crucially would say) there's only a handful A gamer outside: NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/s8VakdDX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:21:19 +0000", "from_user": "danielsarsi", "from_user_id": 14539290, "from_user_id_str": "14539290", "from_user_name": "Daniel Sarsi Orta", "geo": null, "id": 148150805495693300, "id_str": "148150805495693312", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695932206/Avatar_Quadrado_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695932206/Avatar_Quadrado_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "NoSQL ou MySQL?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:21:00 +0000", "from_user": "iowahawkeyedave", "from_user_id": 176743256, "from_user_id_str": "176743256", "from_user_name": "David Cornish", "geo": null, "id": 148150728924475400, "id_str": "148150728924475392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1364146193/n108700350_30141489_5015_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1364146193/n108700350_30141489_5015_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/wLC85vDL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:20:35 +0000", "from_user": "iTechNews21", "from_user_id": 428225985, "from_user_id_str": "428225985", "from_user_name": "iTechNews", "geo": null, "id": 148150623982989300, "id_str": "148150623982989312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1673382384/iTechNew21_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673382384/iTechNew21_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/N2Dy3g9g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:19:06 +0000", "from_user": "hnfirehose", "from_user_id": 213117318, "from_user_id_str": "213117318", "from_user_name": "HN Firehose", "geo": null, "id": 148150247850393600, "id_str": "148150247850393601", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL's great, but bring your A game: http://t.co/Ir9xSPm1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:16:39 +0000", "from_user": "AWSomeCloud", "from_user_id": 342249235, "from_user_id_str": "342249235", "from_user_name": "AWSomeCloud", "geo": null, "id": 148149630964744200, "id_str": "148149630964744192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1460849872/aws_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1460849872/aws_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game - http://t.co/X3qUmxhd: As he explained, Wordnik actually launch... http://t.co/HxJr053d #AWS #Cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:16:08 +0000", "from_user": "smite_me", "from_user_id": 73553273, "from_user_id_str": "73553273", "from_user_name": "Smite Me", "geo": null, "id": 148149502233165820, "id_str": "148149502233165824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/410588375/677507-48_super_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/410588375/677507-48_super_1__normal.jpg", "source": "<a href="http://friendfeed.com" rel="nofollow">FriendFeed</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/gIIHKXKS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:15:35 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 148149362608963600, "id_str": "148149362608963585", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/yfYJkBEa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:15:28 +0000", "from_user": "HeidiBullock", "from_user_id": 90743066, "from_user_id_str": "90743066", "from_user_name": "Heidi Bullock", "geo": null, "id": 148149336612683780, "id_str": "148149336612683778", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1144434185/Screen_shot_2010-10-13_at_9.46.34_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1144434185/Screen_shot_2010-10-13_at_9.46.34_PM_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/C4NGsyyF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:10:20 +0000", "from_user": "germcdonald", "from_user_id": 336610322, "from_user_id_str": "336610322", "from_user_name": "germcdonald", "geo": null, "id": 148148042900570100, "id_str": "148148042900570112", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1470859235/fbpic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1470859235/fbpic_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Data Jujitsu and Data Karate - nosql: http://t.co/5Xetg1BS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:08:44 +0000", "from_user": "justinsheehy", "from_user_id": 14317497, "from_user_id_str": "14317497", "from_user_name": "Justin Sheehy", "geo": null, "id": 148147641635700740, "id_str": "148147641635700736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1127160055/minna-square_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1127160055/minna-square_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": ". @derrickharris I'm curious: why a headline and generalizations about \"NoSQL\" in an article that was all just about one database?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:08:43 +0000", "from_user": "mjlefevre", "from_user_id": 16467040, "from_user_id_str": "16467040", "from_user_name": "Matthew Lefevre", "geo": null, "id": 148147636090830850, "id_str": "148147636090830848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/407240436/matt-pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/407240436/matt-pic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RedBeanPHP version 3 released - http://t.co/sibiCSs0 Combine the simplicity of NoSQL with the power of SQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:06:10 +0000", "from_user": "vergasta", "from_user_id": 24008798, "from_user_id_str": "24008798", "from_user_name": "Igor Vergasta", "geo": null, "id": 148146993758355460, "id_str": "148146993758355457", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/193245960/foto_LinkedIn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/193245960/foto_LinkedIn_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/N2Dy3g9g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:59:44 +0000", "from_user": "mahdi", "from_user_id": 718993, "from_user_id_str": "718993", "from_user_name": "Mahdi Taghizadeh", "geo": null, "id": 148145373498712060, "id_str": "148145373498712065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697108280/violet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697108280/violet_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "Google Insights: Cassandra appear as the leading NoSQL solution. http://t.co/fjETAsGw #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:55:50 +0000", "from_user": "gianlucacarrera", "from_user_id": 142426846, "from_user_id_str": "142426846", "from_user_name": "gianluca carrera", "geo": null, "id": 148144395504463870, "id_str": "148144395504463872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1561093622/gian_picture_jpg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1561093622/gian_picture_jpg_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game #socialmedia http://t.co/fG5sGeJZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:53:44 +0000", "from_user": "todayamerican", "from_user_id": 186930401, "from_user_id_str": "186930401", "from_user_name": "Today American", "geo": null, "id": 148143865386373120, "id_str": "148143865386373120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.todayamerican.com" rel="nofollow">Today American Log</a>", "text": "[374] NoSQL\\u2019s great, but bring your A game\\nhttp://t.co/7pDIGVp0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:53:17 +0000", "from_user": "LMDUK", "from_user_id": 208122735, "from_user_id_str": "208122735", "from_user_name": "LiveMarketingDirect", "geo": null, "id": 148143751548768260, "id_str": "148143751548768257", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1153245709/logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1153245709/logo_normal.jpg", "source": "<a href="http://www.twaitter.com" rel="nofollow">Twaitter</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/a2BKjpDs #livemarketingdirect #sales #success #business", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Sat, 17 Dec 2011 20:51:07 +0000", "from_user": "SourceLondon", "from_user_id": 220335761, "from_user_id_str": "220335761", "from_user_name": "Source Marketing Dir", "geo": null, "id": 148143205978865660, "id_str": "148143205978865664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1462012100/2011_Source_Logo_Full_tiny_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1462012100/2011_Source_Logo_Full_tiny_normal.jpg", "source": "<a href="http://www.twaitter.com" rel="nofollow">Twaitter</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/Mxh7yLkU #business #sourcemarketingdirect", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:49:38 +0000", "from_user": "HowieDragon", "from_user_id": 184442035, "from_user_id_str": "184442035", "from_user_name": "Howie", "geo": null, "id": 148142833575002100, "id_str": "148142833575002112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1412192196/IMG_2380_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1412192196/IMG_2380_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @jasonh: Yes the shitty mystery IO on AWS must be the db's fault ==> RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/ZONs4kRy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:49:05 +0000", "from_user": "SMSTechnology", "from_user_id": 108807772, "from_user_id_str": "108807772", "from_user_name": "SMS TECHNOLOGY", "geo": null, "id": 148142693313282050, "id_str": "148142693313282048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1513225223/Orange_twitter_profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1513225223/Orange_twitter_profile_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/Gl8ysF5C Via @gigaom", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:48:57 +0000", "from_user": "WebTech_update", "from_user_id": 361945158, "from_user_id_str": "361945158", "from_user_name": "Web Tech Update", "geo": null, "id": 148142659452674050, "id_str": "148142659452674048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1558404821/webtech_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1558404821/webtech_logo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: At last week's MongoSV conference in Santa Clara, Calif., a number of user... http://t.co/NYH7E9Xr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:48:56 +0000", "from_user": "itshumphrey", "from_user_id": 42976258, "from_user_id_str": "42976258", "from_user_name": "Humphrey", "geo": null, "id": 148142659263938560, "id_str": "148142659263938560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/831852130/n28115437_376_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/831852130/n28115437_376_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/AG9Dfl24", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:48:55 +0000", "from_user": "BrodysDadd", "from_user_id": 19249004, "from_user_id_str": "19249004", "from_user_name": "Chris Barnhart", "geo": null, "id": 148142652494319600, "id_str": "148142652494319616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1266119140/eightbit-498320f7-038e-42ef-909d-fab1e137a095_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266119140/eightbit-498320f7-038e-42ef-909d-fab1e137a095_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "[GigaOM] NoSQL\\u2019s great, but bring your A game: At last week's MongoSV conference in Santa Clara, Calif., a numbe... http://t.co/FxUzXpOq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:46:26 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 148142029069762560, "id_str": "148142029069762560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Yes the shitty mystery IO on AWS must be the db's fault ==> RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/ZONs4kRy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:41:38 +0000", "from_user": "nicomech", "from_user_id": 14320981, "from_user_id_str": "14320981", "from_user_name": "NicoMech", "geo": null, "id": 148140818107076600, "id_str": "148140818107076608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/138843469/photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/138843469/photo_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/N2Dy3g9g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:38:41 +0000", "from_user": "vraffy", "from_user_id": 391401600, "from_user_id_str": "391401600", "from_user_name": "Raffaella Ventaglio", "geo": null, "id": 148140078881972220, "id_str": "148140078881972224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lgarulli: How to plug a new command in #OrientDB console? https://t.co/Dy5KjvVu #graphdb #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:37:56 +0000", "from_user": "jessienuez", "from_user_id": 20348924, "from_user_id_str": "20348924", "from_user_name": "Jessie Nuez", "geo": null, "id": 148139888754167800, "id_str": "148139888754167808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1216441366/jess_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1216441366/jess_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#tech #news NoSQL\\u2019s great, but bring your A game - At last week's MongoSV conference in Santa Clara, Calif., a numbe... http://t.co/khjU2xCk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:36:02 +0000", "from_user": "nixgeek", "from_user_id": 37211927, "from_user_id_str": "37211927", "from_user_name": "Alex Howells", "geo": null, "id": 148139412914577400, "id_str": "148139412914577408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/193181492/3494053757_49f1ee5b4f_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/193181492/3494053757_49f1ee5b4f_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @wattersjames: RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/OvFApQnC <--summary of recent practical talks", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:35:40 +0000", "from_user": "cartmetrix", "from_user_id": 20680688, "from_user_id_str": "20680688", "from_user_name": "Cartmetrix", "geo": null, "id": 148139319184461820, "id_str": "148139319184461826", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1269192074/damonp_caracas_sq_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1269192074/damonp_caracas_sq_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/POKsUnrT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:35:40 +0000", "from_user": "ServerSecurity", "from_user_id": 274013798, "from_user_id_str": "274013798", "from_user_name": "Damon Parker", "geo": null, "id": 148139318676959230, "id_str": "148139318676959232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1291542754/damonp_caracas_sq_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1291542754/damonp_caracas_sq_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/bo3wb2dW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:34:25 +0000", "from_user": "CloudConnexion", "from_user_id": 366440661, "from_user_id_str": "366440661", "from_user_name": "CloudConnexion", "geo": null, "id": 148139002623574000, "id_str": "148139002623574016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1524708170/CloudConnexionProfilePic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1524708170/CloudConnexionProfilePic_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "NoSQL\\u2019s great, but bring your A game: MongoDB might be a popular choice in NoSQL databases\\u2026 http://t.co/wBi0ZOpC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:32:40 +0000", "from_user": "tim_maliyil", "from_user_id": 91243832, "from_user_id_str": "91243832", "from_user_name": "Tim Maliyil", "geo": null, "id": 148138564583030800, "id_str": "148138564583030784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/766801483/13849_208823055490_204226925490_4497717_5597259_s_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/766801483/13849_208823055490_204226925490_4497717_5597259_s_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#cloud NoSQL\\u2019s great, but bring your A game - At last week's MongoSV conference in Santa Clara, Calif., a number of ... http://t.co/DMs5wKTX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:31:21 +0000", "from_user": "networkreading", "from_user_id": 254722584, "from_user_id_str": "254722584", "from_user_name": "Network Reading", "geo": null, "id": 148138231463022600, "id_str": "148138231463022592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1367178073/network_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1367178073/network_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: At last week's MongoSV conference in Santa Clara, Calif., a number of user... http://t.co/mburEP22", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:30:27 +0000", "from_user": "Technology_om", "from_user_id": 333617580, "from_user_id_str": "333617580", "from_user_name": "Technology_om", "geo": null, "id": 148138007361355780, "id_str": "148138007361355776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1437358120/technology_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1437358120/technology_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/CnnxDEnQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:29:44 +0000", "from_user": "DenisseScoble", "from_user_id": 377248199, "from_user_id_str": "377248199", "from_user_name": "Denisse Scoble", "geo": null, "id": 148137825156599800, "id_str": "148137825156599808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1552797865/karineny_cr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552797865/karineny_cr_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/eaxfcRCA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:28:14 +0000", "from_user": "wattersjames", "from_user_id": 36093693, "from_user_id_str": "36093693", "from_user_name": "James Watters", "geo": null, "id": 148137448206118900, "id_str": "148137448206118912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1592323102/smile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592323102/smile_1_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/OvFApQnC <--summary of recent practical talks", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:27:40 +0000", "from_user": "OriginalSignal", "from_user_id": 9657882, "from_user_id_str": "9657882", "from_user_name": "OriginalSignal", "geo": null, "id": 148137306883244030, "id_str": "148137306883244033", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/34313992/avatar_roze_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/34313992/avatar_roze_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: At last week's MongoSV conference in Santa Clara, Calif., a number of user... http://t.co/8SsdU3nv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:27:32 +0000", "from_user": "EskoboNews", "from_user_id": 404819320, "from_user_id_str": "404819320", "from_user_name": "Eskobo News", "geo": null, "id": 148137269944000500, "id_str": "148137269944000512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1622047551/eskobo1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622047551/eskobo1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/WLyKinQ5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:25:57 +0000", "from_user": "d8Pit", "from_user_id": 264394701, "from_user_id_str": "264394701", "from_user_name": "The URL Popularizer", "geo": null, "id": 148136873213173760, "id_str": "148136873213173760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317284522/logo-header_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317284522/logo-header_normal.png", "source": "<a href="http://d8p.it" rel="nofollow">d8P</a>", "text": "RT @techielicous: NoSQL's great, but bring your A game - GigaOm #nosql #bigdata | http://t.co/s5CXr847", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:25:45 +0000", "from_user": "ImagraphicX", "from_user_id": 56958540, "from_user_id_str": "56958540", "from_user_name": "Deb Tech's Only", "geo": null, "id": 148136821459648500, "id_str": "148136821459648512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1082568175/icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1082568175/icon_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/52pcSwjk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:25:09 +0000", "from_user": "eaworldwideco", "from_user_id": 218776898, "from_user_id_str": "218776898", "from_user_name": "EA Worldwide", "geo": null, "id": 148136673027432450, "id_str": "148136673027432448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1192535816/untitled_8_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1192535816/untitled_8_normal.PNG", "source": "<a href="http://www.twaitter.com" rel="nofollow">Twaitter</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/PNyW9wyl #marketing #business #success #biztips", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:23:59 +0000", "from_user": "onlinewithalan", "from_user_id": 404942436, "from_user_id_str": "404942436", "from_user_name": "Alan D", "geo": null, "id": 148136376532082700, "id_str": "148136376532082688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1622298740/iStock_000003475840XSmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622298740/iStock_000003475840XSmall_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:23:14 +0000", "from_user": "geokoder", "from_user_id": 108086917, "from_user_id_str": "108086917", "from_user_name": "Markus Wuersch", "geo": null, "id": 148136191110287360, "id_str": "148136191110287360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1140456139/gkavatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1140456139/gkavatar_normal.png", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/LbEK15AG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:23:11 +0000", "from_user": "janpaul", "from_user_id": 13771912, "from_user_id_str": "13771912", "from_user_name": "Jan Paul \\uE12B", "geo": null, "id": 148136176639938560, "id_str": "148136176639938561", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1643530010/me_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643530010/me_normal.png", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/tsAEt7oq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:21:01 +0000", "from_user": "techielicous", "from_user_id": 240306053, "from_user_id_str": "240306053", "from_user_name": "Josette Rigsby", "geo": null, "id": 148135633372725250, "id_str": "148135633372725248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1250483015/Josette_character_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1250483015/Josette_character_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL's great, but bring your A game - GigaOm http://t.co/ZZM6XRkL #nosql #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:18:44 +0000", "from_user": "lluccipha", "from_user_id": 103246788, "from_user_id_str": "103246788", "from_user_name": "lluccipha", "geo": null, "id": 148135058845339650, "id_str": "148135058845339648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697708417/BYbrkMru_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697708417/BYbrkMru_normal", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/8fDiDeAy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:18:14 +0000", "from_user": "revmail", "from_user_id": 44439023, "from_user_id_str": "44439023", "from_user_name": "George T. Thibault", "geo": null, "id": 148134931812466700, "id_str": "148134931812466688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/248648135/IMG_0056_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/248648135/IMG_0056_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A\\u00A0game http://t.co/vKzZTJ8Y", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:17:42 +0000", "from_user": "Geoteq", "from_user_id": 32666259, "from_user_id_str": "32666259", "from_user_name": "Aparecido H. Leite", "geo": null, "id": 148134797808648200, "id_str": "148134797808648192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696264065/Screen_Shot_2011-11-23_at_6.54.14_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696264065/Screen_Shot_2011-11-23_at_6.54.14_AM_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @gigaom: NoSQL\\u2019s great, but bring your A game http://t.co/N2Dy3g9g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:17:37 +0000", "from_user": "techsqueeze", "from_user_id": 76108677, "from_user_id_str": "76108677", "from_user_name": "Tech Squeeze", "geo": null, "id": 148134777726304260, "id_str": "148134777726304258", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/5AgL42GJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:16:46 +0000", "from_user": "disktnk", "from_user_id": 103459580, "from_user_id_str": "103459580", "from_user_name": "disktnk", "geo": null, "id": 148134564194295800, "id_str": "148134564194295809", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1566618208/disktnk_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566618208/disktnk_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "How Does the Future of Computing Look Like? \\u2022 myNoSQL: http://t.co/BvSaAX7d \\uFF1C \\u3078\\u3047\\uFF0CSC2011\\u306E\\u3082\\u53D6\\u308A\\u4E0A\\u3052\\u308B\\u3093\\u3060", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:15:51 +0000", "from_user": "noodeeh", "from_user_id": 139661151, "from_user_id_str": "139661151", "from_user_name": "noodeeh", "geo": null, "id": 148134330202468350, "id_str": "148134330202468353", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL the Ruby Way: http://t.co/JGt3B2Yp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:15:14 +0000", "from_user": "Pacific_Typhoon", "from_user_id": 166858852, "from_user_id_str": "166858852", "from_user_name": "Yasbella Sebastian", "geo": null, "id": 148134177311698940, "id_str": "148134177311698944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1131023134/1__7__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1131023134/1__7__normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/I0x3EYGW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:15:14 +0000", "from_user": "marcx_hughes", "from_user_id": 368807816, "from_user_id_str": "368807816", "from_user_name": "marc_hughes", "geo": null, "id": 148134176015659000, "id_str": "148134176015659008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1652692293/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652692293/images_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/d6swG8pk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:15:06 +0000", "from_user": "DarcyBrookhart", "from_user_id": 424315664, "from_user_id_str": "424315664", "from_user_name": "Darcy Brookhart", "geo": null, "id": 148134143849537540, "id_str": "148134143849537536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1665510628/199359333622__3__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665510628/199359333622__3__normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:14:49 +0000", "from_user": "planetbigdata", "from_user_id": 305730903, "from_user_id_str": "305730903", "from_user_name": "Planet big data", "geo": null, "id": 148134071833333760, "id_str": "148134071833333760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1370033839/Planet_Big_Data_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1370033839/Planet_Big_Data_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: At last week's MongoSV conference in Santa Clara, Calif., a numbe... http://t.co/pyzOownT #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:14:45 +0000", "from_user": "gustavoriffo", "from_user_id": 20996232, "from_user_id_str": "20996232", "from_user_name": "Gustavo Riffo", "geo": null, "id": 148134056075329540, "id_str": "148134056075329537", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1643469992/white-back_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643469992/white-back_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "NoSQL\\u2019s great, but bring your A game", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:14:43 +0000", "from_user": "mshollymorris", "from_user_id": 226713678, "from_user_id_str": "226713678", "from_user_name": "Holly Morris", "geo": null, "id": 148134045761544200, "id_str": "148134045761544192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1191415444/picture1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1191415444/picture1_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/eI4gmG2E", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:14:43 +0000", "from_user": "mr_lotts", "from_user_id": 18281570, "from_user_id_str": "18281570", "from_user_name": "mr_lotts", "geo": null, "id": 148134045744775170, "id_str": "148134045744775168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1178539867/50099_707071805_544_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1178539867/50099_707071805_544_q_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/P1HadQXT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:14:41 +0000", "from_user": "myamazingdesign", "from_user_id": 221047346, "from_user_id_str": "221047346", "from_user_name": "amazinginteriors", "geo": null, "id": 148134038329237500, "id_str": "148134038329237504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1179378765/img-5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1179378765/img-5_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/csfqECr4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:14:41 +0000", "from_user": "gigaom", "from_user_id": 2893971, "from_user_id_str": "2893971", "from_user_name": "GigaOM", "geo": null, "id": 148134036009787400, "id_str": "148134036009787394", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1630819501/GigaOM.Social.200x200_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630819501/GigaOM.Social.200x200_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/N2Dy3g9g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:14:40 +0000", "from_user": "ElissaAngela", "from_user_id": 175642828, "from_user_id_str": "175642828", "from_user_name": "Elissa Angela", "geo": null, "id": 148134035619708930, "id_str": "148134035619708928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1099978988/n100000509731063_1641_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1099978988/n100000509731063_1641_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/nNWPNQoU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:14:26 +0000", "from_user": "disktnk", "from_user_id": 103459580, "from_user_id_str": "103459580", "from_user_name": "disktnk", "geo": null, "id": 148133976601665540, "id_str": "148133976601665537", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1566618208/disktnk_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566618208/disktnk_normal.jpg", "source": "<a href="http://www.soicha.com" rel="nofollow">SOICHA</a>", "text": "Redis Bitmaps for Real-Time Metrics at Spool \\u2022 myNoSQL: http://t.co/Il6e1Uws \\u30E1\\u30E2\\uFF0E", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:12:00 +0000", "from_user": "DocDoCc", "from_user_id": 399236859, "from_user_id_str": "399236859", "from_user_name": "RSS to Share", "geo": null, "id": 148133361494409200, "id_str": "148133361494409216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1608802751/Pear_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608802751/Pear_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "[DocDocc] NoSQL\\u2019s great, but bring your A game http://t.co/g5tZQqIQ via gigaOM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:11:51 +0000", "from_user": "DenisseScoble", "from_user_id": 377248199, "from_user_id_str": "377248199", "from_user_name": "Denisse Scoble", "geo": null, "id": 148133323863113730, "id_str": "148133323863113728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1552797865/karineny_cr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552797865/karineny_cr_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/nSrbYT51", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:10:12 +0000", "from_user": "utollwi", "from_user_id": 4807561, "from_user_id_str": "4807561", "from_user_name": "William Toll", "geo": null, "id": 148132911172960260, "id_str": "148132911172960256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/91496291/WilliamToll_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/91496291/WilliamToll_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/uEmENCEo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:10:04 +0000", "from_user": "mytechbuddy", "from_user_id": 172978429, "from_user_id_str": "172978429", "from_user_name": "Jeff Gibbard", "geo": null, "id": 148132874170806270, "id_str": "148132874170806273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1092009385/neo_bullets_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1092009385/neo_bullets_1_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/K0ybeQ8z", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:10:02 +0000", "from_user": "devevangelist", "from_user_id": 15330061, "from_user_id_str": "15330061", "from_user_name": "Robbie Jack", "geo": null, "id": 148132868818870270, "id_str": "148132868818870272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1603284835/in_the_screen_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1603284835/in_the_screen_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/ofu0FIdP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:09:29 +0000", "from_user": "All_Trends_IT", "from_user_id": 380329513, "from_user_id_str": "380329513", "from_user_name": "All Trends IT", "geo": null, "id": 148132728720719870, "id_str": "148132728720719873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1560812623/IMGP1596_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1560812623/IMGP1596_normal.JPG", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/vpwboTcm via Derrick Harris", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:03:53 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 148131321573679100, "id_str": "148131321573679104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/xviLOJUd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:02:18 +0000", "from_user": "Jeffrey_Blake", "from_user_id": 15531806, "from_user_id_str": "15531806", "from_user_name": "Jeffrey Blake", "geo": null, "id": 148130920061341700, "id_str": "148130920061341696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1193079363/OrcasIsland-square-01_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1193079363/OrcasIsland-square-01_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/DFzt1y8M @GigaOM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:02:10 +0000", "from_user": "structureblog", "from_user_id": 177272998, "from_user_id_str": "177272998", "from_user_name": "structureblog", "geo": null, "id": 148130887068950530, "id_str": "148130887068950528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "NoSQL\\u2019s great, but bring your A game: At last week's MongoSV conference in Santa Clara, Calif., a number of users... http://t.co/G0YB7wGg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:02:09 +0000", "from_user": "jm_jenkins", "from_user_id": 22333321, "from_user_id_str": "22333321", "from_user_name": "Jacquelyn Jenkins", "geo": null, "id": 148130884221026300, "id_str": "148130884221026305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/84923882/JJ_At_LostCoast_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/84923882/JJ_At_LostCoast_normal.JPG", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/eMl0kzvn #cloud #gigaom", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:02:05 +0000", "from_user": "MyNewsBot", "from_user_id": 435630833, "from_user_id_str": "435630833", "from_user_name": "My News Bot", "geo": null, "id": 148130867691266050, "id_str": "148130867691266049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "[GigaOM] NoSQL\\u2019s great, but bring your A game http://t.co/gnWlhvxZ #gigaom", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:02:05 +0000", "from_user": "andreseml", "from_user_id": 15908981, "from_user_id_str": "15908981", "from_user_name": "Andr\\u00E9s Mu\\u00F1oz", "geo": null, "id": 148130866386829300, "id_str": "148130866386829312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693906189/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693906189/image_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: MongoDB might be a popular choice in NoSQL databases, but it\\u2019s... http://t.co/HWytQbMi Via. GigaOM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:02:05 +0000", "from_user": "niteshkr6", "from_user_id": 91141226, "from_user_id_str": "91141226", "from_user_name": "Nitesh Kumar", "geo": null, "id": 148130865103376400, "id_str": "148130865103376384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: MongoDB might be a popular choice in NoSQL databases, but it\\u2019s not perfect... http://t.co/N1M2V9Pm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:02:04 +0000", "from_user": "nirajrajput88", "from_user_id": 209714167, "from_user_id_str": "209714167", "from_user_name": "Niraj Rajput", "geo": null, "id": 148130864813965300, "id_str": "148130864813965312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692390344/12122010272-002_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692390344/12122010272-002_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: MongoDB might be a popular choice in NoSQL databases, but it\\u2019s not perfect... http://t.co/FW1DUPca", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:02:04 +0000", "from_user": "megastuffs", "from_user_id": 235214801, "from_user_id_str": "235214801", "from_user_name": "Mitanshu Saini", "geo": null, "id": 148130863358545920, "id_str": "148130863358545920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1209356231/santang-rambo-tux-2036_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1209356231/santang-rambo-tux-2036_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: MongoDB might be a popular choice in NoSQL databases, but it\\u2019s not perfect... http://t.co/IivLBzVr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:02:04 +0000", "from_user": "AppleFanboyFTW", "from_user_id": 385265200, "from_user_id_str": "385265200", "from_user_name": "Apple Fanboy", "geo": null, "id": 148130861143953400, "id_str": "148130861143953408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1573490171/apple-fanboy-g4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1573490171/apple-fanboy-g4_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: MongoDB might be a popular choice in NoSQL databases, but it\\u2019s not perfect... http://t.co/5SukOd4S", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:02:03 +0000", "from_user": "PeterAlexandrov", "from_user_id": 371615963, "from_user_id_str": "371615963", "from_user_name": "Peter Alexandrov", "geo": null, "id": 148130857306161150, "id_str": "148130857306161152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680289504/Dog_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680289504/Dog_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: MongoDB might be a popular choice in NoSQL databases, but it\\u2019s not perfect... http://t.co/l8Mg5SbE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:02:00 +0000", "from_user": "RobertsChapman", "from_user_id": 371109006, "from_user_id_str": "371109006", "from_user_name": "Roberts Chapman", "geo": null, "id": 148130845067186180, "id_str": "148130845067186176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1686679800/Freedom_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686679800/Freedom_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: MongoDB might be a popular choice in NoSQL databases, but it\\u2019s not perfect... http://t.co/G0ofQfwj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:01:58 +0000", "from_user": "SearleMorris", "from_user_id": 370724877, "from_user_id_str": "370724877", "from_user_name": "Searle Morris", "geo": null, "id": 148130838406639600, "id_str": "148130838406639618", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680254634/illustrated-face_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680254634/illustrated-face_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: MongoDB might be a popular choice in NoSQL databases, but it\\u2019s not perfect... http://t.co/1o3om1uk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:01:58 +0000", "from_user": "Socialblogfeed", "from_user_id": 378825962, "from_user_id_str": "378825962", "from_user_name": "Percy Smith ", "geo": null, "id": 148130837731360770, "id_str": "148130837731360768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1556676188/Blogger_Button_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1556676188/Blogger_Button_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: MongoDB might be a popular choice in NoSQL databases, but it\\u2019s not perfect... http://t.co/UAMItHg7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:01:58 +0000", "from_user": "SusanBeame", "from_user_id": 370535742, "from_user_id_str": "370535742", "from_user_name": "Susan Beame", "geo": null, "id": 148130836934434800, "id_str": "148130836934434816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686701454/S_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686701454/S_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: MongoDB might be a popular choice in NoSQL databases, but it\\u2019s not perfect... http://t.co/wSe1roP4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:01:57 +0000", "from_user": "Socialsymphany", "from_user_id": 378816359, "from_user_id_str": "378816359", "from_user_name": "Marshall", "geo": null, "id": 148130835575472130, "id_str": "148130835575472128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1556668250/social-media_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1556668250/social-media_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: MongoDB might be a popular choice in NoSQL databases, but it\\u2019s not perfect... http://t.co/K7NbSOk9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:01:57 +0000", "from_user": "RayInformatics", "from_user_id": 369370241, "from_user_id_str": "369370241", "from_user_name": "Ray Informatics", "geo": null, "id": 148130835508375550, "id_str": "148130835508375552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1532579482/Ray_Informatics_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1532579482/Ray_Informatics_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: MongoDB might be a popular choice in NoSQL databases, but it\\u2019s not perfect... http://t.co/DzYm4ZNG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:01:57 +0000", "from_user": "Siliconshack", "from_user_id": 255127917, "from_user_id_str": "255127917", "from_user_name": "SiliconShack", "geo": null, "id": 148130833088258050, "id_str": "148130833088258048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1489735930/technology_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1489735930/technology_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/yzwBJHWH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:01:56 +0000", "from_user": "Techallo", "from_user_id": 345443662, "from_user_id_str": "345443662", "from_user_name": "Techallo", "geo": null, "id": 148130830890442750, "id_str": "148130830890442753", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1552713338/1683814995image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552713338/1683814995image_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/aqwELeFV @amarchugg #news", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:01:56 +0000", "from_user": "TechTweeties", "from_user_id": 375974178, "from_user_id_str": "375974178", "from_user_name": "TechTweeties", "geo": null, "id": 148130829900578800, "id_str": "148130829900578816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1549460610/technology_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1549460610/technology_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/JLdVthdK @amarchugg #news", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:01:54 +0000", "from_user": "Papr8tzi", "from_user_id": 32162450, "from_user_id_str": "32162450", "from_user_name": "Brandy Luscalzo", "geo": null, "id": 148130822753497100, "id_str": "148130822753497088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/141375179/DSC01023_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/141375179/DSC01023_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: MongoDB might be a popular choice in NoSQL databases, but it\\u2019s not... http://t.co/entLGaXL #gigaom", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:01:53 +0000", "from_user": "HuongHernon", "from_user_id": 234183283, "from_user_id_str": "234183283", "from_user_name": "Huong Hernon", "geo": null, "id": 148130817015689200, "id_str": "148130817015689216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1207244026/359664835fgjafjf_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1207244026/359664835fgjafjf_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game: MongoDB might be a popular choice in NoSQL databases, but it\\u2019s not perfect \\u2014 at least out of th...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:01:38 +0000", "from_user": "IT_Usability", "from_user_id": 314039651, "from_user_id_str": "314039651", "from_user_name": "IT Usability", "geo": null, "id": 148130753031581700, "id_str": "148130753031581697", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1388835454/ver5HomeLogoBar3_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1388835454/ver5HomeLogoBar3_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL\\u2019s great, but bring your A game http://t.co/JTwVn1oO #Cloudcomputing", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:43:20 +0000", "from_user": "RyuKurosaa", "from_user_id": 309989889, "from_user_id_str": "309989889", "from_user_name": "Ryu Kurosaa", "geo": null, "id": 148126146821754880, "id_str": "148126146821754880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "http://t.co/1N8fCkiL phpBB Discussion \\u2022 Re: phBB noSQL: utomo wrote:I just afraid if Oracle abandon the Free/ Op... http://t.co/dkC3GdRH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:27:17 +0000", "from_user": "ChrisFaw", "from_user_id": 58072509, "from_user_id_str": "58072509", "from_user_name": "Chris Fawcett \\uF8FF", "geo": null, "id": 148122107564404740, "id_str": "148122107564404736", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1324482780/Screen_shot_2011-04-25_at_1.33.30_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1324482780/Screen_shot_2011-04-25_at_1.33.30_AM_normal.png", "source": "<a href="http://www.ajaymatharu.com/" rel="nofollow">Tweet Old Post</a>", "text": "RT @estamosenlinea: Oracle anuncia que ya est\\u00E1 disponible Oracle NoSQL Database http://t.co/IJfF2SGh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:27:12 +0000", "from_user": "jcsirot", "from_user_id": 126661036, "from_user_id_str": "126661036", "from_user_name": "JeanChristophe Sirot", "geo": null, "id": 148122089419833340, "id_str": "148122089419833344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1191139262/Minus_cortex_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1191139262/Minus_cortex_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL Screencast: Building a StackOverflow Clone With RavenDB \\u2022 myNoSQL: http://t.co/2cbzNzL1 #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:14:43 +0000", "from_user": "roidrage", "from_user_id": 14658472, "from_user_id_str": "14658472", "from_user_name": "Mathias Meyer", "geo": null, "id": 148118947416375300, "id_str": "148118947416375298", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1505416860/5653514417_94976350b9_m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505416860/5653514417_94976350b9_m_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Sending errata in style, thanks @jarkko: https://t.co/a64l4lQr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:00:21 +0000", "from_user": "patrickDurusau", "from_user_id": 152194866, "from_user_id_str": "152194866", "from_user_name": "Patrick Durusau", "geo": null, "id": 148115332865867780, "id_str": "148115332865867778", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/961579480/patrick_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/961579480/patrick_normal.jpeg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Couchbase #topicmaps #NoSQL #Couchbase #CouchDB - http://t.co/05U3i3Gq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:52:07 +0000", "from_user": "SQLJOB", "from_user_id": 19657921, "from_user_id_str": "19657921", "from_user_name": "SQL JOBS", "geo": null, "id": 148113258568630270, "id_str": "148113258568630274", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/126654624/1160569_techeye_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/126654624/1160569_techeye_2_normal.jpg", "source": "<a href="http://www.twitjobsearch.com/" rel="nofollow">TwitJobSearch.com Jobs</a>", "text": "Linux Systems Administrator / DevOps -Ubuntu, MySQL Mongo noSQL - London - Unit... #job http://t.co/MufUkvkp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:39:14 +0000", "from_user": "SethAldini", "from_user_id": 18195354, "from_user_id_str": "18195354", "from_user_name": "Seth Aldini", "geo": null, "id": 148110016375832580, "id_str": "148110016375832577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1546292935/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546292935/images_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jamespmclachlan: I'm starting a #NoSequel movement. Database admins against movie franchises. #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:07:10 +0000", "from_user": "runggolfp", "from_user_id": 149853090, "from_user_id_str": "149853090", "from_user_name": "runggolfp", "geo": null, "id": 148101947587690500, "id_str": "148101947587690496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL the Ruby Way: http://t.co/UFHhuDgs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:48:47 +0000", "from_user": "gcard3", "from_user_id": 28898167, "from_user_id_str": "28898167", "from_user_name": "Gerry Cardinal III", "geo": null, "id": 148097322121826300, "id_str": "148097322121826305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/121987599/Picture_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/121987599/Picture_1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jamespmclachlan: I'm starting a #NoSequel movement. Database admins against movie franchises. #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:45:09 +0000", "from_user": "DhilipSiva_linx", "from_user_id": 151913719, "from_user_id_str": "151913719", "from_user_name": "DhilipSiva -CyberMan", "geo": null, "id": 148096406282965000, "id_str": "148096406282964992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1424456382/DhilipSiva__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1424456382/DhilipSiva__normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#linux #opensource Grails 2.0 with more cloud support and NoSQL connectivity http://t.co/mqaRZUBz #DhilipSiva", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:42:13 +0000", "from_user": "phil_nash", "from_user_id": 19881648, "from_user_id_str": "19881648", "from_user_name": "Phil Nash", "geo": null, "id": 148095667942862850, "id_str": "148095667942862848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1355857426/20110513046-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1355857426/20110513046-2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jamespmclachlan: I'm starting a #NoSequel movement. Database admins against movie franchises. #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:25:49 +0000", "from_user": "JLeeGhost", "from_user_id": 306117941, "from_user_id_str": "306117941", "from_user_name": "Johnneylee Rollins", "geo": null, "id": 148091541762748400, "id_str": "148091541762748418", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1370810672/SpaceGhost_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1370810672/SpaceGhost_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lgarulli: @JLeeGhost Thank you! Hope to have found a brand new contributor ;-) #OrientDB #nosql #graphdb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:24:51 +0000", "from_user": "dbelcham", "from_user_id": 14468939, "from_user_id_str": "14468939", "from_user_name": "Donald Belcham", "geo": null, "id": 148091298027536400, "id_str": "148091298027536385", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/53119721/igloocoder_twitterlogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/53119721/igloocoder_twitterlogo_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "anyone spent any significant time with Sterling NoSql db? www.sterlingdatabase.com", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:24:25 +0000", "from_user": "rajanmanick", "from_user_id": 205200705, "from_user_id_str": "205200705", "from_user_name": "Rajan Manickavasagam", "geo": +{"coordinates": [51.7851,-0.2046], "type": "Point"}, "id": 148091187201454080, "id_str": "148091187201454080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698642028/Rajan_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698642028/Rajan_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Tech - NOSQL Tutorial - Part 1 (Introduction) http://t.co/GifOXvNX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:09:00 +0000", "from_user": "kekline", "from_user_id": 22445912, "from_user_id_str": "22445912", "from_user_name": "Kevin Kline", "geo": null, "id": 148087309529657340, "id_str": "148087309529657344", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/388076294/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/388076294/twitterProfilePhoto_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @strataconf: Five Big Data predictions for 2012 http://t.co/Kq3ZxbYD via @radar #bigdata #visualization #hadoop #nosql #oreilly", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:08:48 +0000", "from_user": "oguzbilgener", "from_user_id": 65898204, "from_user_id_str": "65898204", "from_user_name": "O\\u011Fuz Bilgener", "geo": null, "id": 148087260456288260, "id_str": "148087260456288256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700222106/sea_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700222106/sea_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Scaling the Web: Databases & NoSQL http://t.co/32Tmx531 via @youtube", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 17:06:35 +0000", "from_user": "antiplastics", "from_user_id": 231141217, "from_user_id_str": "231141217", "from_user_name": "Koki Tsuyuzaki", "geo": null, "id": 148086701217161200, "id_str": "148086701217161216", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1201721741/tatikoma_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1201721741/tatikoma_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "SQL\\u3082\\u307E\\u3060\\u305D\\u308C\\u307B\\u3069\\u7406\\u89E3\\u3057\\u3066\\u3044\\u306A\\u3044\\u306E\\u306B\\u3001NOSQL\\u304C\\u308F\\u304B\\u308B\\u3060\\u308D\\u3046\\u304B\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:58:05 +0000", "from_user": "KelEnd", "from_user_id": 66813881, "from_user_id_str": "66813881", "from_user_name": "\\uF8FF Kelvis Finol \\u2714", "geo": null, "id": 148084562717720580, "id_str": "148084562717720576", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674719747/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674719747/image_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "RT @estamosenlinea: Oracle anuncia que ya est\\u00E1 disponible Oracle NoSQL Database http://t.co/GTHEsAw4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:51:41 +0000", "from_user": "sifutwit", "from_user_id": 183088601, "from_user_id_str": "183088601", "from_user_name": "Sifutwit", "geo": null, "id": 148082952981594100, "id_str": "148082952981594112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1134297247/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1134297247/image_normal.jpg", "source": "<a href="http://stone.com/Twittelator" rel="nofollow">Twittelator</a>", "text": "Grails 2.0 with more cloud support and NoSQL connectivity: The Grails development team has released version 2.0 ... http://t.co/WuJWCSO3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:39:29 +0000", "from_user": "estamosenlinea", "from_user_id": 37096554, "from_user_id_str": "37096554", "from_user_name": "Estamos en Linea", "geo": null, "id": 148079880205119500, "id_str": "148079880205119489", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1137622709/icono_fondo_blanco_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1137622709/icono_fondo_blanco_normal.jpg", "source": "<a href="http://www.ajaymatharu.com/" rel="nofollow">Tweet Old Post</a>", "text": "Oracle anuncia que ya est\\u00E1 disponible Oracle NoSQL Database http://t.co/IJfF2SGh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:30:04 +0000", "from_user": "cekicbaris", "from_user_id": 40089831, "from_user_id_str": "40089831", "from_user_name": "Baris Cekic", "geo": null, "id": 148077511572590600, "id_str": "148077511572590593", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1390014815/BarisCekic_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1390014815/BarisCekic_normal.gif", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@erhankeseli , are you sure? Cassandra which is main db for facebook is not an in-memory db. It is nosql and runs on commodity hardware.", "to_user": "erhankeseli", "to_user_id": 63464115, "to_user_id_str": "63464115", "to_user_name": "Erhan Keseli", "in_reply_to_status_id": 147970640270467070, "in_reply_to_status_id_str": "147970640270467073"}, +{"created_at": "Sat, 17 Dec 2011 16:27:20 +0000", "from_user": "sathpal", "from_user_id": 70186403, "from_user_id_str": "70186403", "from_user_name": "sathpal singh", "geo": null, "id": 148076822754635780, "id_str": "148076822754635777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "The Hard Life Of A NoSQL Coder http://t.co/G8Ab6RVj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:06:46 +0000", "from_user": "CompuwareJOBS", "from_user_id": 103014075, "from_user_id_str": "103014075", "from_user_name": "Compuware", "geo": null, "id": 148071649604927500, "id_str": "148071649604927488", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1357745731/twitter_icons_R-1_Compuware_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1357745731/twitter_icons_R-1_Compuware_normal.jpg", "source": "<a href="http://www.jobmagic.com" rel="nofollow">Jobmagic</a>", "text": "NoSQL Database Architect (US-MI-Detroit) http://t.co/4aO3iEv2 #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:00:03 +0000", "from_user": "MySQLBot_es", "from_user_id": 305268592, "from_user_id_str": "305268592", "from_user_name": "MySQLBot_es", "geo": null, "id": 148069958277013500, "id_str": "148069958277013505", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1369510701/mysql_100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1369510701/mysql_100_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @28ten2eight: #MySQL * #NoSQL * #HadoopHbase. #tech <3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:59:02 +0000", "from_user": "markswall", "from_user_id": 19688728, "from_user_id_str": "19688728", "from_user_name": "Mark Wall", "geo": null, "id": 148069700574785540, "id_str": "148069700574785536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676652683/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676652683/Untitled_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hadoop, HPCC, MapR and the TeraSort Benchmark \\u2022 myNoSQL http://t.co/q4Fs9u7o", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:46:14 +0000", "from_user": "28ten2eight", "from_user_id": 398652192, "from_user_id_str": "398652192", "from_user_name": "MsKrisyHan", "geo": null, "id": 148066481496789000, "id_str": "148066481496788993", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1607493431/khepredbeach_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607493431/khepredbeach_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "#MySQL * #NoSQL * #HadoopHbase. #tech <3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Sat, 17 Dec 2011 15:46:14 +0000", "from_user": "28ten2eight", "from_user_id": 398652192, "from_user_id_str": "398652192", "from_user_name": "MsKrisyHan", "geo": null, "id": 148066481496789000, "id_str": "148066481496788993", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1607493431/khepredbeach_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607493431/khepredbeach_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "#MySQL * #NoSQL * #HadoopHbase. #tech <3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:41:47 +0000", "from_user": "wadearnold", "from_user_id": 16250884, "from_user_id_str": "16250884", "from_user_name": "wadearnold", "geo": +{"coordinates": [42.5022,-92.4151], "type": "Point"}, "id": 148065360057344000, "id_str": "148065360057344001", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546226413/Wade-5939-TightSquareCrop-MedRes_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546226413/Wade-5939-TightSquareCrop-MedRes_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "http://t.co/FvmvFqEG Good webinar from @larsgeorge on #hbase schema design", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:11:43 +0000", "from_user": "medicalcumulus", "from_user_id": 98506206, "from_user_id_str": "98506206", "from_user_name": "Medical Cumulus", "geo": null, "id": 148057792303988740, "id_str": "148057792303988737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/587328926/MedicalCumulus_Twitter_Profile_Pic_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/587328926/MedicalCumulus_Twitter_Profile_Pic_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Grails 2.0 with more cloud support and NoSQL connectivity http://t.co/onAZiPpI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 15:07:34 +0000", "from_user": "satiromarra", "from_user_id": 21444368, "from_user_id_str": "21444368", "from_user_name": "satiro", "geo": null, "id": 148056748727615500, "id_str": "148056748727615491", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1606258042/satiro.es_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606258042/satiro.es_normal.png", "source": "<a href="http://www.greattweet.com/" rel="nofollow">GreatTweet</a>", "text": "[ENG] Bases de datos NoSQL, as\\u00ED podemos considerar redes sociales como #facebook o #twitter. Las bases de datos ... http://t.co/P1g51Svs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:54:28 +0000", "from_user": "datachick", "from_user_id": 15534499, "from_user_id_str": "15534499", "from_user_name": "Karen Lopez", "geo": null, "id": 148053454055686140, "id_str": "148053454055686145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1639614262/9a4f5b93-2599-40e2-820e-eed4a5d0ac1a_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639614262/9a4f5b93-2599-40e2-820e-eed4a5d0ac1a_normal.png", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "A Big List of Interesting Programming Books Released in 2011 http://t.co/6X8AQLU1 < Knuth, SemWeb, DataViz, NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:51:37 +0000", "from_user": "feedcatdemon", "from_user_id": 179782943, "from_user_id_str": "179782943", "from_user_name": "feedcatdemon", "geo": null, "id": 148052736284430340, "id_str": "148052736284430338", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1105469588/Feed_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1105469588/Feed_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The H - Grails 2.0 with more cloud support and NoSQL connectivity http://t.co/1RTotiYP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:46:55 +0000", "from_user": "phaneeshn", "from_user_id": 78000743, "from_user_id_str": "78000743", "from_user_name": "Phaneesh Nagaraja", "geo": null, "id": 148051551070588930, "id_str": "148051551070588928", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/789289885/0383_guitarist_heavy_metal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/789289885/0383_guitarist_heavy_metal_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "#HBase Schema Design http://t.co/GRSRupjj #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:32:09 +0000", "from_user": "Flavio58", "from_user_id": 17228282, "from_user_id_str": "17228282", "from_user_name": "Flavio58", "geo": null, "id": 148047838008446980, "id_str": "148047838008446978", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1558799380/File110908_103743_718_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1558799380/File110908_103743_718_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Grails 2.0 with more cloud support and NoSQL connectivity: The Grails development team has released version 2.0 ... http://t.co/iQ2NaXgi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:26:12 +0000", "from_user": "0fredla", "from_user_id": 256114966, "from_user_id_str": "256114966", "from_user_name": "Fred La", "geo": null, "id": 148046337718501380, "id_str": "148046337718501376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1430546574/01mageia.adrielhernandez-twittux-22215_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1430546574/01mageia.adrielhernandez-twittux-22215_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Grails 2.0 with more cloud support and NoSQL connectivity http://t.co/l8zOKaun via @addthis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:21:28 +0000", "from_user": "lmatteis", "from_user_id": 281950081, "from_user_id_str": "281950081", "from_user_name": "Luca Matteis", "geo": null, "id": 148045148394225660, "id_str": "148045148394225664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1311121600/me_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1311121600/me_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Why in-memory database are sometimes useful @nodejs http://t.co/MKEl09cE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:12:46 +0000", "from_user": "RobbertFrank", "from_user_id": 110953124, "from_user_id_str": "110953124", "from_user_name": "Robbert-Frank", "geo": null, "id": 148042957260468220, "id_str": "148042957260468224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/757967297/RF-twitt_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/757967297/RF-twitt_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Grails 2.0 with more cloud support and NoSQL connectivity: The Grails development team has released version 2.0 ... http://t.co/Egg43Fdb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:08:41 +0000", "from_user": "ExadataV2", "from_user_id": 85375436, "from_user_id_str": "85375436", "from_user_name": "Steve Dickson", "geo": null, "id": 148041929186222080, "id_str": "148041929186222080", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/491391360/Steve2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/491391360/Steve2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @OracleDatabase: Podcast: Introducing Oracle #NoSQL Database http://t.co/JuzGKz8h", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:08:02 +0000", "from_user": "markwigmans", "from_user_id": 7527532, "from_user_id_str": "7527532", "from_user_name": "Mark Wigmans", "geo": null, "id": 148041769479700480, "id_str": "148041769479700480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/837273831/MWI_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/837273831/MWI_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "#NoSQL Benchmarking, the differences between hbase, cassandra and mongodb http://t.co/RviI7bBI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:06:29 +0000", "from_user": "techielicous", "from_user_id": 240306053, "from_user_id_str": "240306053", "from_user_name": "Josette Rigsby", "geo": null, "id": 148041377098375170, "id_str": "148041377098375168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1250483015/Josette_character_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1250483015/Josette_character_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Grails 2.0 with more cloud support and NoSQL connectivity - The H http://t.co/22Ftweaf #nosql #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 14:00:09 +0000", "from_user": "patrickDurusau", "from_user_id": 152194866, "from_user_id_str": "152194866", "from_user_name": "Patrick Durusau", "geo": null, "id": 148039783464189950, "id_str": "148039783464189953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/961579480/patrick_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/961579480/patrick_normal.jpeg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Getting Started with CouchDB #topicmaps #NoSQL #CouchDB - http://t.co/wMUg73Rb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:44:10 +0000", "from_user": "OpenManiac", "from_user_id": 148128785, "from_user_id_str": "148128785", "from_user_name": "Openmaniac Meisopen", "geo": null, "id": 148035761499938800, "id_str": "148035761499938816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1008968707/mw_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1008968707/mw_normal.png", "source": "<a href="http://twetool.com" rel="nofollow">TweTool</a>", "text": "Grails 2.0 with more cloud support and NoSQL connectivity http://t.co/gAExhKxO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:42:34 +0000", "from_user": "imtrafficking", "from_user_id": 168238813, "from_user_id_str": "168238813", "from_user_name": "Traffic King", "geo": null, "id": 148035359568171000, "id_str": "148035359568171008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1081305757/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1081305757/images_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Grails 2.0 with more cloud support and NoSQL connectivity http://t.co/1F1zTJAg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:40:43 +0000", "from_user": "3DR", "from_user_id": 25687108, "from_user_id_str": "25687108", "from_user_name": "Dirk Reimer", "geo": null, "id": 148034891483852800, "id_str": "148034891483852801", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/105633073/Dirk-Reimer_July2008_NXP_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/105633073/Dirk-Reimer_July2008_NXP_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Grails 2.0 with more cloud support and NoSQL connectivity: The Grails development team has released version 2.0 ... http://t.co/M9zWbPlc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:38:55 +0000", "from_user": "lgarulli", "from_user_id": 74181214, "from_user_id_str": "74181214", "from_user_name": "Luca Garulli", "geo": null, "id": 148034441820897280, "id_str": "148034441820897280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1142225678/webcam_luca34_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1142225678/webcam_luca34_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@JLeeGhost Thank you! Hope to have found a brand new contributor ;-) #OrientDB #nosql #graphdb", "to_user": "JLeeGhost", "to_user_id": 306117941, "to_user_id_str": "306117941", "to_user_name": "Johnneylee Rollins", "in_reply_to_status_id": 147870649967329280, "in_reply_to_status_id_str": "147870649967329280"}, +{"created_at": "Sat, 17 Dec 2011 13:27:14 +0000", "from_user": "Cyb3r", "from_user_id": 150890388, "from_user_id_str": "150890388", "from_user_name": "Cyb3r CMG", "geo": null, "id": 148031501127270400, "id_str": "148031501127270400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/951859651/cy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/951859651/cy_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Grails 2.0 with more cloud support and NoSQL connectivity: The Grails development team has released version 2.0 ... http://t.co/Rc5TXFrc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:25:49 +0000", "from_user": "TechL0G", "from_user_id": 209734424, "from_user_id_str": "209734424", "from_user_name": "Tech Log", "geo": null, "id": 148031143697063940, "id_str": "148031143697063936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1155305767/tl_normalf1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1155305767/tl_normalf1_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#Open_Source \\u00B7Grails 2.0 with more cloud support and NoSQL connectivity: The Grails... http://t.co/qBEEa9oE |http://t.co/ne8OZiob", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:21:02 +0000", "from_user": "TibidyUS", "from_user_id": 313799444, "from_user_id_str": "313799444", "from_user_name": "Tibidy", "geo": null, "id": 148029941236244480, "id_str": "148029941236244481", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1458127887/tbd_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1458127887/tbd_normal.png", "source": "<a href="http://www.tibidy.com" rel="nofollow">Tibidy</a>", "text": "#Grails 2.0 with more cloud support and #NoSQL #connectivity: http://t.co/KbNOhPta | #IDE #development #experience #version", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:18:02 +0000", "from_user": "TibidyUS", "from_user_id": 313799444, "from_user_id_str": "313799444", "from_user_name": "Tibidy", "geo": null, "id": 148029186475442180, "id_str": "148029186475442176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1458127887/tbd_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1458127887/tbd_normal.png", "source": "<a href="http://www.tibidy.com" rel="nofollow">Tibidy</a>", "text": "All about #NoSQL. Tagged on http://t.co/VxLcOEOf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:16:40 +0000", "from_user": "DrTom21", "from_user_id": 265282023, "from_user_id_str": "265282023", "from_user_name": "Thomas Schank", "geo": null, "id": 148028840470528000, "id_str": "148028840470528000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1359272911/1095_-_Thomas_Schank_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1359272911/1095_-_Thomas_Schank_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL vs SQL for web applications, pretty good wrap-up by @strlen http://t.co/GhwhyNat", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:15:27 +0000", "from_user": "heiseonlinepl", "from_user_id": 52022635, "from_user_id_str": "52022635", "from_user_name": "heise online", "geo": null, "id": 148028535469117440, "id_str": "148028535469117442", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/288392396/ho_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/288392396/ho_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Grails 2.0 with more cloud support and NoSQL connectivity: The Grails development team has released version 2.0 ... http://t.co/HqLfFNAR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:14:47 +0000", "from_user": "infwonder", "from_user_id": 336539168, "from_user_id_str": "336539168", "from_user_name": "Jason Lin", "geo": null, "id": 148028365369114620, "id_str": "148028365369114624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1445373893/photo_mosaic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1445373893/photo_mosaic_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Grails 2.0 with more cloud support and NoSQL connectivity: The Grails development team has released version 2.0 ... http://t.co/DJiUiAXq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:10:34 +0000", "from_user": "RyuKurosaa", "from_user_id": 309989889, "from_user_id_str": "309989889", "from_user_name": "Ryu Kurosaa", "geo": null, "id": 148027304554135550, "id_str": "148027304554135552", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "http://t.co/1N8fCkiL phpBB Discussion \\u2022 Re: phpBB noSQL: utomo wrote:Kevin Clark wrote:utomo wrote:noSQL forum u... http://t.co/lQvvdhhP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:09:47 +0000", "from_user": "thinker0", "from_user_id": 27849933, "from_user_id_str": "27849933", "from_user_name": "thinker0", "geo": null, "id": 148027108608843780, "id_str": "148027108608843776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/741818694/buggie_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/741818694/buggie_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @PeterBell: RT @rgcoding: Looking at NOSQL? Then take a peek at Neo4j: Awesome. http://t.co/rPMupGFx http://t.co/QvGcqPfz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:09:26 +0000", "from_user": "ScalingNerd", "from_user_id": 362724902, "from_user_id_str": "362724902", "from_user_name": "Scaling News", "geo": null, "id": 148027019278549000, "id_str": "148027019278548992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1514940425/scalingnerd_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1514940425/scalingnerd_normal.png", "source": "<a href="http://ScalingNerd.com" rel="nofollow">ScalingNerd.com</a>", "text": "Grails 2.0 with more cloud support and NoSQL connectivity - The H http://t.co/oCBQG6sX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:03:48 +0000", "from_user": "neo4j", "from_user_id": 22467617, "from_user_id_str": "22467617", "from_user_name": "Neo4j", "geo": null, "id": 148025602480422900, "id_str": "148025602480422912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/195275920/square-logo-no-text-2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/195275920/square-logo-no-text-2_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @PeterBell: RT @rgcoding: Looking at NOSQL? Then take a peek at Neo4j: Awesome. http://t.co/rPMupGFx http://t.co/QvGcqPfz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:03:06 +0000", "from_user": "heiseonlineuk", "from_user_id": 15003788, "from_user_id_str": "15003788", "from_user_name": "News from The H", "geo": null, "id": 148025424524476400, "id_str": "148025424524476417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/79630431/vsmallhavatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/79630431/vsmallhavatar_normal.png", "source": "<a href="http://www.heise.de" rel="nofollow">heise Tweetfeeds</a>", "text": "RT @honlinenews: Grails 2.0 with more cloud support and NoSQL connectivity http://t.co/UBbWevOz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:03:05 +0000", "from_user": "honlinenews", "from_user_id": 20971642, "from_user_id_str": "20971642", "from_user_name": "The H - News", "geo": null, "id": 148025420644745200, "id_str": "148025420644745217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/83431811/theHmulti_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/83431811/theHmulti_normal.jpg", "source": "<a href="http://www.heise.de" rel="nofollow">heise Tweetfeeds</a>", "text": "Grails 2.0 with more cloud support and NoSQL connectivity http://t.co/UBbWevOz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 13:00:08 +0000", "from_user": "patrickDurusau", "from_user_id": 152194866, "from_user_id_str": "152194866", "from_user_name": "Patrick Durusau", "geo": null, "id": 148024681469984770, "id_str": "148024681469984768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/961579480/patrick_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/961579480/patrick_normal.jpeg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Redis, from the ground up #topicmaps #NoSQL #Redis - http://t.co/iy7UHlcF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:59:08 +0000", "from_user": "Hayato_Kapibara", "from_user_id": 107363660, "from_user_id_str": "107363660", "from_user_name": "\\u306F\\u3084\\u3068", "geo": null, "id": 148024426481451000, "id_str": "148024426481451008", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702377804/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702377804/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @jllachf: http://t.co/7npCzfZU nice job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:56:42 +0000", "from_user": "ekrTech", "from_user_id": 190163317, "from_user_id_str": "190163317", "from_user_name": "ekrTech", "geo": null, "id": 148023816654819330, "id_str": "148023816654819333", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1548191896/ekrtech_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1548191896/ekrtech_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Grails 2.0 with more cloud support and NoSQL connectivity: The Grails development team has released version ... http://t.co/gsORf4l8 #in", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:55:58 +0000", "from_user": "freesource", "from_user_id": 19503616, "from_user_id_str": "19503616", "from_user_name": "Free Software Feeds", "geo": null, "id": 148023632575209470, "id_str": "148023632575209474", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/73127416/twitter_j_03_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/73127416/twitter_j_03_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Grails 2.0 with more cloud support and NoSQL connectivity http://t.co/2KGH15fX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:44:39 +0000", "from_user": "gauravpaliwal", "from_user_id": 19814653, "from_user_id_str": "19814653", "from_user_name": "Gaurav Paliwal", "geo": null, "id": 148020782809874430, "id_str": "148020782809874432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/400786107/gaurav.paliwal1989_gmail.com_bcfc34fb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/400786107/gaurav.paliwal1989_gmail.com_bcfc34fb_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@smarty7 the time is of NoSQL :P", "to_user": "smarty7", "to_user_id": 15268706, "to_user_id_str": "15268706", "to_user_name": "Shailendra Paliwal", "in_reply_to_status_id": 148018549351383040, "in_reply_to_status_id_str": "148018549351383041"}, +{"created_at": "Sat, 17 Dec 2011 12:39:18 +0000", "from_user": "RyuKurosaa", "from_user_id": 309989889, "from_user_id_str": "309989889", "from_user_name": "Ryu Kurosaa", "geo": null, "id": 148019436975173630, "id_str": "148019436975173632", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "http://t.co/1N8fCkiL phpBB Discussion \\u2022 Re: phBB noSQL: utomo wrote:noSQL forum using phpBB http://t.co/N6ZFy6nM... http://t.co/SpGu88G0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:25:49 +0000", "from_user": "alltop_java", "from_user_id": 191999280, "from_user_id_str": "191999280", "from_user_name": "Alltop Java", "geo": null, "id": 148016044240412670, "id_str": "148016044240412673", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1128524576/IloveAlltop_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1128524576/IloveAlltop_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL: NoSQL Screencast: HBase Schema Design http://t.co/JLS4RnKz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:24:50 +0000", "from_user": "nodoherty", "from_user_id": 10439452, "from_user_id_str": "10439452", "from_user_name": "Niall O'Doherty", "geo": null, "id": 148015795971166200, "id_str": "148015795971166208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1230777742/31123e4e-388b-46dd-bd65-530032657350_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1230777742/31123e4e-388b-46dd-bd65-530032657350_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @PeterBell: RT @rgcoding: Looking at NOSQL? Then take a peek at Neo4j: Awesome. http://t.co/rPMupGFx http://t.co/QvGcqPfz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:17:08 +0000", "from_user": "PeterBell", "from_user_id": 804749, "from_user_id_str": "804749", "from_user_name": "Peter Bell", "geo": null, "id": 148013858601181200, "id_str": "148013858601181184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1017174968/Latest-headshot-130x130_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1017174968/Latest-headshot-130x130_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @rgcoding: Looking at NOSQL? Then take a peek at Neo4j: Awesome. http://t.co/rPMupGFx http://t.co/QvGcqPfz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:49:23 +0000", "from_user": "ruckiand", "from_user_id": 58284725, "from_user_id_str": "58284725", "from_user_name": "Andrej Ruckij", "geo": null, "id": 148006873562488830, "id_str": "148006873562488832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1267693504/Untitled_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1267693504/Untitled_normal.png", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "We have this in prod. Env. @cassandra: release of #cassandra 1.0.6, changes: http://t.co/sAjRuzgq (http://t.co/myzfgt3h) #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:46:24 +0000", "from_user": "ronnylt", "from_user_id": 14145543, "from_user_id_str": "14145543", "from_user_name": "Ronny L\\u00F3pez", "geo": null, "id": 148006123071483900, "id_str": "148006123071483904", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/66084714/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/66084714/profile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Colecci\\u00F3n de recursos para el aprendizaje de NoSQL, big data, data mining: http://t.co/QRJ4JcV2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:23:43 +0000", "from_user": "alltop_java", "from_user_id": 191999280, "from_user_id_str": "191999280", "from_user_name": "Alltop Java", "geo": null, "id": 148000414862815230, "id_str": "148000414862815232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1128524576/IloveAlltop_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1128524576/IloveAlltop_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL: NoSQL Screencast: Building a StackOverflow Clone With RavenDB http://t.co/L4WGcQtP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:12:07 +0000", "from_user": "roidrage", "from_user_id": 14658472, "from_user_id_str": "14658472", "from_user_name": "Mathias Meyer", "geo": null, "id": 147997497233653760, "id_str": "147997497233653760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1505416860/5653514417_94976350b9_m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505416860/5653514417_94976350b9_m_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@jedschmidt Twitter works, but also an email to riak@nosqlhandbook.com or https://t.co/GplXO4TE. Thanks!", "to_user": "jedschmidt", "to_user_id": 815114, "to_user_id_str": "815114", "to_user_name": "Jed Schmidt", "in_reply_to_status_id": 147922692975235070, "in_reply_to_status_id_str": "147922692975235072"}, +{"created_at": "Sat, 17 Dec 2011 11:11:05 +0000", "from_user": "coders_vzla", "from_user_id": 199569043, "from_user_id_str": "199569043", "from_user_name": "coders_vzla", "geo": null, "id": 147997236679290880, "id_str": "147997236679290880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1196821157/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1196821157/logo_normal.png", "source": "<a href="http://timely.is" rel="nofollow">Timely by Demandforce</a>", "text": "Schneems \\u2022 Scaling the Web: Databases & NoSQL http://t.co/rZKqYTGL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 11:02:09 +0000", "from_user": "ajfeed", "from_user_id": 260762269, "from_user_id_str": "260762269", "from_user_name": "Ajinkya Feed", "geo": null, "id": 147994987341156350, "id_str": "147994987341156352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "CompSci NoSQL Screencast: HBase Schema Design: In this O\\u2019Reilly webcast, long time HBase developer and Cloudera ... http://t.co/qQCU3JYE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:44:38 +0000", "from_user": "mynosql_popescu", "from_user_id": 197901055, "from_user_id_str": "197901055", "from_user_name": "myNoSQL", "geo": null, "id": 147990582118199300, "id_str": "147990582118199296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL Screencast: HBase Schema Design: In this O\\u2019Reilly webcast, long time HBase developer and Cloudera HBase/Ha... http://t.co/FCRDlf7K", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:34:59 +0000", "from_user": "nromanetti", "from_user_id": 11372422, "from_user_id_str": "11372422", "from_user_name": "nromanetti", "geo": null, "id": 147988150491430900, "id_str": "147988150491430912", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/73963531/jaxio-nicolas-romanetti_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/73963531/jaxio-nicolas-romanetti_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Pr\\u00E9sentation #cassandra #nosql en #corse #ajaccio d\\u00E9but janvier. http://t.co/aJ85oLv0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:34:17 +0000", "from_user": "diegomarino", "from_user_id": 3705121, "from_user_id_str": "3705121", "from_user_name": "Diego Mari\\u00F1o", "geo": null, "id": 147987977300213760, "id_str": "147987977300213760", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1194189604/dmarinoc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1194189604/dmarinoc_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@adrianmg el twitter de Jan es @wulczer... Pero solo lo utiliza para arremeter contra la gente de JS, Ruby y NoSQL :D", "to_user": "adrianmg", "to_user_id": 15727391, "to_user_id_str": "15727391", "to_user_name": "Adri\\u00E1n Mato", "in_reply_to_status_id": 147987440571924480, "in_reply_to_status_id_str": "147987440571924480"}, +{"created_at": "Sat, 17 Dec 2011 10:32:26 +0000", "from_user": "adPeGu", "from_user_id": 103245969, "from_user_id_str": "103245969", "from_user_name": "Adri\\u00E1n Pereira", "geo": null, "id": 147987510360948740, "id_str": "147987510360948736", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687635209/786687_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687635209/786687_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u00A1Buen\\u00EDsimo! http://t.co/vT6qj5C2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:30:34 +0000", "from_user": "ajfeed", "from_user_id": 260762269, "from_user_id_str": "260762269", "from_user_name": "Ajinkya Feed", "geo": null, "id": 147987040770859000, "id_str": "147987040770859008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "CompSci NoSQL Screencast: Building a StackOverflow Clone With RavenDB: Ayende and Justin pair to model a StackOv... http://t.co/puzjYqjj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:14:26 +0000", "from_user": "mynosql_popescu", "from_user_id": 197901055, "from_user_id_str": "197901055", "from_user_name": "myNoSQL", "geo": null, "id": 147982981741559800, "id_str": "147982981741559808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL Screencast: Building a StackOverflow Clone With RavenDB: Ayende and Justin pair to model a StackOverflow w... http://t.co/0rCJtzVx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:13:42 +0000", "from_user": "mongodb_news", "from_user_id": 218710958, "from_user_id_str": "218710958", "from_user_name": "MongoDb", "geo": null, "id": 147982796013572100, "id_str": "147982796013572096", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1173473945/imgres-1_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1173473945/imgres-1_normal.jpeg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @jllachf: http://t.co/7npCzfZU nice job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:45:09 +0000", "from_user": "dmakovec", "from_user_id": 14120044, "from_user_id_str": "14120044", "from_user_name": "Dan", "geo": null, "id": 147975608712970240, "id_str": "147975608712970240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1551095187/Photo_on_2011-09-20_at_13.00_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1551095187/Photo_on_2011-09-20_at_13.00_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jamespmclachlan: I'm starting a #NoSequel movement. Database admins against movie franchises. #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:07:54 +0000", "from_user": "ShoNakamura", "from_user_id": 101534058, "from_user_id_str": "101534058", "from_user_name": "\\u306A\\u304B\\u3080\\u3057\\u3087\\u3046", "geo": null, "id": 147966237861871600, "id_str": "147966237861871617", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/607831698/3834241_2352217911_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/607831698/3834241_2352217911_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u30AF\\u30E9\\u30A6\\u30C9\\u306E\\u57FA\\u672C\\u306E\\u77E5\\u8B58\\u30E1\\u30E2\\nIT\\u30B7\\u30B9\\u30C6\\u30E0\\u306B\\u5229\\u7528\\u3055\\u308C\\u308B\\u30B7\\u30B9\\u30C6\\u30E0\\u306F\\u3053\\u308C\\u307E\\u3067RDB \\u30EA\\u30EC\\u30FC\\u30B7\\u30E7\\u30CA\\u30EB\\u30C7\\u30FC\\u30BF\\u30D9\\u30FC\\u30B9\\u304C\\u4E3B\\u6D41\\u3060\\u3063\\u305F\\u304C\\u3001\\u30AF\\u30E9\\u30A6\\u30C9\\u306F\\u81EA\\u5728\\u306B\\u30B9\\u30B1\\u30FC\\u30EB\\u3067\\u304D\\u308B\\u3002\\u305D\\u3053\\u3067\\u8FD1\\u5E74\\u3001NoSQL\\u304C\\u6CE8\\u76EE\\u3055\\u308C\\u3066\\u3044\\u308B\\u3002RDB\\u306B\\u6BD4\\u3079\\u3066\\u51E6\\u7406\\u304C\\u9AD8\\u901F\\u3067\\u5206\\u6563\\u51E6\\u7406\\u306B\\u5F37\\u304F\\u3001\\u7528\\u9014\\u3084\\u30B3\\u30B9\\u30C8\\u3001\\u30B9\\u30B1\\u30FC\\u30EB\\u306B\\u5408\\u308F\\u305B\\u305F\\u6700\\u9069\\u5316\\u304C\\u3057\\u3084\\u3059\\u3044", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:45:03 +0000", "from_user": "MongoQuestion", "from_user_id": 233820847, "from_user_id_str": "233820847", "from_user_name": "Mongo Question", "geo": null, "id": 147960486779039740, "id_str": "147960486779039744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1207364137/mq_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1207364137/mq_normal.jpg", "source": "<a href="http://learnmongo.com" rel="nofollow">Mongo Question</a>", "text": "\"Rails microblog using (No)SQL\" #MongoDB - http://t.co/9S2KsLz6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:44:24 +0000", "from_user": "LabsXooFoo", "from_user_id": 181174051, "from_user_id_str": "181174051", "from_user_name": "XooFoo", "geo": null, "id": 147960320391000060, "id_str": "147960320391000064", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1107782194/logo_xoofoo_48_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1107782194/logo_xoofoo_48_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Mini Server Web NoSql - Version 2.1: Nous vous proposons une nouvelle version de notre mini server NoSql avec la... http://t.co/Bbsew2rD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:23:17 +0000", "from_user": "kris_fr", "from_user_id": 15236350, "from_user_id_str": "15236350", "from_user_name": "kris_fr", "geo": null, "id": 147955006715334660, "id_str": "147955006715334656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/689089611/Sans_titre-2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/689089611/Sans_titre-2_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Mini Server Web NoSql - Version 2.1 with MongoDB 2.0.2 - http://t.co/AZPhxnJ5 http://t.co/0v5ui0Tc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 08:00:18 +0000", "from_user": "azanetti", "from_user_id": 5650772, "from_user_id_str": "5650772", "from_user_name": "Antony Zanetti", "geo": null, "id": 147949226150723600, "id_str": "147949226150723585", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/53246295/me2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/53246295/me2_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"Building a Location-Based Web App w/ MongoDB\" http://t.co/xINEkBRH #MongoDB #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:57:09 +0000", "from_user": "bit_jammer", "from_user_id": 68004390, "from_user_id_str": "68004390", "from_user_name": "Francisco Calle", "geo": null, "id": 147948430742913020, "id_str": "147948430742913024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1258503285/ff0329c8-d442-4ffc-98f9-f1d73ca902aa_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1258503285/ff0329c8-d442-4ffc-98f9-f1d73ca902aa_normal.png", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Geek And Poke: The Hard Life Of A NoSQL Coder http://t.co/Xd8lYzlr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:48:06 +0000", "from_user": "OussamaLachiheb", "from_user_id": 106569324, "from_user_id_str": "106569324", "from_user_name": "Oussama Lachiheb", "geo": null, "id": 147946154179563520, "id_str": "147946154179563520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1389091367/tof_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1389091367/tof_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "technology is like human, it borns, one day it will die.. but it will have a child\\n( Relational models and nosql Databases relationship )", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:31:54 +0000", "from_user": "elithp", "from_user_id": 102653304, "from_user_id_str": "102653304", "from_user_name": "EL", "geo": null, "id": 147942077219606530, "id_str": "147942077219606528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Orthogonal design for product pricing and production planning with NoSQL database: I am in the process of develo... http://t.co/pZ7CQYMZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:31:54 +0000", "from_user": "johnniefeed", "from_user_id": 225491085, "from_user_id_str": "225491085", "from_user_name": "Johnnie Zhang", "geo": null, "id": 147942075470585860, "id_str": "147942075470585856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Orthogonal design for product pricing and production planning with NoSQL database: I am in the process of develo... http://t.co/Reosw3Nr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:30:14 +0000", "from_user": "amtindia", "from_user_id": 17646260, "from_user_id_str": "17646260", "from_user_name": "AMT", "geo": null, "id": 147941657533366270, "id_str": "147941657533366273", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/341107159/AMT_twi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/341107159/AMT_twi_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Five big data predictions for 2012 - By @Radar http://t.co/aEFdKfUy #NoSQL #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:15:01 +0000", "from_user": "QAJournal", "from_user_id": 268847164, "from_user_id_str": "268847164", "from_user_name": "IT Techy", "geo": null, "id": 147937829371133950, "id_str": "147937829371133952", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL: Apache Cassandra 101 http://t.co/TDGt6T7o via @AddThis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 06:59:30 +0000", "from_user": "bproctor1", "from_user_id": 353026850, "from_user_id_str": "353026850", "from_user_name": "Brad Proctor", "geo": null, "id": 147933923991756800, "id_str": "147933923991756800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1692087896/me-medium_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692087896/me-medium_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "To NoSQL or not to NoSQL: http://t.co/L5nCtWMq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 06:42:39 +0000", "from_user": "touchecomm", "from_user_id": 81461213, "from_user_id_str": "81461213", "from_user_name": "Touch\\u00E9 Comm", "geo": null, "id": 147929683105824770, "id_str": "147929683105824768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/463815634/default_profile_1_normal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/463815634/default_profile_1_normal_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Touch\\u00E9 Comm - Looking at NOSQL? Then take a peek at Neo4j http://t.co/uYtrkge7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 06:35:00 +0000", "from_user": "rgcoding", "from_user_id": 48980803, "from_user_id_str": "48980803", "from_user_name": "Renato Gomes", "geo": null, "id": 147927759178579970, "id_str": "147927759178579968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/718171630/logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/718171630/logo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Looking at NOSQL? Then take a peek at Neo4j: Awesome. http://t.co/ESd45imy http://t.co/tgFcTJcw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 06:08:52 +0000", "from_user": "FlexBloggers", "from_user_id": 267836050, "from_user_id_str": "267836050", "from_user_name": "Flex Bloggers", "geo": null, "id": 147921182056910850, "id_str": "147921182056910849", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1277077625/icon_128_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1277077625/icon_128_normal.png", "source": "<a href="http://www.flexbloggers.org" rel="nofollow">Flex Bloggers Bot</a>", "text": "Looking at NOSQL? Then take a peek at Neo4j - http://t.co/VFdAQJyy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:43:52 +0000", "from_user": "furthest_works", "from_user_id": 313799257, "from_user_id_str": "313799257", "from_user_name": "Furthest Works", "geo": null, "id": 147914891699814400, "id_str": "147914891699814400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1388620416/furthest_work1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1388620416/furthest_work1_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "#JavaScript Web Application by firemountain: This project is for someone who\\u2026 http://t.co/GGtcq4Pv #freelance #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:32:51 +0000", "from_user": "job4freelancetk", "from_user_id": 415541754, "from_user_id_str": "415541754", "from_user_name": "job4freelancetk", "geo": null, "id": 147912119013220350, "id_str": "147912119013220353", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1645181274/66small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645181274/66small_normal.jpg", "source": "<a href="http://www.linksalpha.com/" rel="nofollow">LinksAlpha</a>", "text": "JavaScript Web Application by firemountain http://t.co/FLvSAc1r", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:31:54 +0000", "from_user": "abe_masanori", "from_user_id": 238525344, "from_user_id_str": "238525344", "from_user_name": "ABE Masanori \\u963F\\u90E8 \\u5C06\\u5178", "geo": null, "id": 147911877006065660, "id_str": "147911877006065665", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1263696578/myimg_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263696578/myimg_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Oracle NoSQL Database, Community Edition\\u306F\\u300Cawaiting final license approval\\u300D\\u3068\\u3044\\u3046\\u72B6\\u614B\\u3067\\u306A\\u304B\\u306A\\u304B\\u30EA\\u30EA\\u30FC\\u30B9\\u3055\\u308C\\u306A\\u3044\\u3002\\u8A66\\u7528\\u3067\\u3042\\u308C\\u3070Enterprise Edition\\u3092OTN\\u30E9\\u30A4\\u30BB\\u30F3\\u30B9\\u3067\\u4F7F\\u3048\\u3070\\u826F\\u3044\\u3051\\u3069\\u3002\\u3002\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 05:18:36 +0000", "from_user": "estamosenlinea", "from_user_id": 37096554, "from_user_id_str": "37096554", "from_user_name": "Estamos en Linea", "geo": null, "id": 147908532493221900, "id_str": "147908532493221889", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1137622709/icono_fondo_blanco_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1137622709/icono_fondo_blanco_normal.jpg", "source": "<a href="http://www.ajaymatharu.com/" rel="nofollow">Tweet Old Post</a>", "text": "Oracle anuncia que ya est\\u00E1 disponible Oracle NoSQL Database http://t.co/IJfF2SGh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:52:45 +0000", "from_user": "Work__Freelance", "from_user_id": 240105001, "from_user_id_str": "240105001", "from_user_name": "Freelance Jobs", "geo": null, "id": 147902026460827650, "id_str": "147902026460827648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1219638828/freelancex200_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1219638828/freelancex200_normal.jpg", "source": "<a href="http://www.managetwit.com" rel="nofollow">ManageTwit</a>", "text": "Freelance Javascript Job - JavaScript Web Application http://t.co/srm9PF9H #freelance #jobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:49:13 +0000", "from_user": "StartWorkNow", "from_user_id": 336548162, "from_user_id_str": "336548162", "from_user_name": "Freelance Jobs", "geo": null, "id": 147901134873427970, "id_str": "147901134873427968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1445380382/programmer_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1445380382/programmer_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "JavaScript Web Application by firemountain: This project is for someone who is legitimately talented in th... http://t.co/NkqnSR00 #jobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:48:01 +0000", "from_user": "infogroova", "from_user_id": 101355095, "from_user_id_str": "101355095", "from_user_name": "INFOGROOVA", "geo": null, "id": 147900833021960200, "id_str": "147900833021960192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "RT @MySQL: Live webinar in #APAC time zone next Thur: Product Roadmap of #MySQL - RDBMS and #NoSQL, And Beyond: http://t.co/Pr2Sr8aC pls retweet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:46:29 +0000", "from_user": "reconnect_Job", "from_user_id": 281615923, "from_user_id_str": "281615923", "from_user_name": "Programming Job", "geo": null, "id": 147900448156827650, "id_str": "147900448156827648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#JavaScipt JavaScript Web Application by firemountain: This project is for someone who is legitimat... http://t.co/Pfbg0MrW #Programming", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:44:01 +0000", "from_user": "freelancesuper", "from_user_id": 304718129, "from_user_id_str": "304718129", "from_user_name": "freelancesucces", "geo": null, "id": 147899828658110460, "id_str": "147899828658110464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1623635476/Freelance_Succes_LOgo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1623635476/Freelance_Succes_LOgo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "JavaScript Web Application by firemountain: This project is for someone who is legitimately talented in the use ... http://t.co/NmOdWOEg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:42:42 +0000", "from_user": "FreelanceJobz4U", "from_user_id": 109293507, "from_user_id_str": "109293507", "from_user_name": "Freelance Jobz 4 U", "geo": null, "id": 147899495689093120, "id_str": "147899495689093121", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/661495065/bassetthoundpup_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/661495065/bassetthoundpup_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#freelance jobs: JavaScript Web Application by firemountain: This project is for someone who is legiti... http://t.co/oEgRgc7O #projects", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:41:19 +0000", "from_user": "UrFreelanceJobs", "from_user_id": 112100565, "from_user_id_str": "112100565", "from_user_name": "Your Freelance Jobs", "geo": null, "id": 147899149927460860, "id_str": "147899149927460865", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/680942151/money_tree_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/680942151/money_tree_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "JavaScript Web Application by firemountain http://t.co/C5VKEhCh #freelance", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:40:34 +0000", "from_user": "Blue_Bovine", "from_user_id": 17511965, "from_user_id_str": "17511965", "from_user_name": "Blue_Bovine", "geo": null, "id": 147898959719960580, "id_str": "147898959719960576", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "NoSQL Benchmarking http://t.co/2YwnX1ww via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:36:55 +0000", "from_user": "viswajithv", "from_user_id": 47445770, "from_user_id_str": "47445770", "from_user_name": "Viswajith V", "geo": null, "id": 147898042924793860, "id_str": "147898042924793856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/264421393/Viswa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/264421393/Viswa_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "JavaScript Web Application by firemountain http://t.co/IOseMq75", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:36:30 +0000", "from_user": "sem_jobs", "from_user_id": 39963740, "from_user_id_str": "39963740", "from_user_name": "SEM Jobs", "geo": null, "id": 147897936246865920, "id_str": "147897936246865920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/614197762/logo_sem_jobs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/614197762/logo_sem_jobs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "JavaScript Web Application by firemountain: This project is for someone who is legitimately talented ... http://t.co/0mslt2sp #sem #jobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:33:37 +0000", "from_user": "MediaSME", "from_user_id": 17631273, "from_user_id_str": "17631273", "from_user_name": "MediaSME", "geo": null, "id": 147897209000701950, "id_str": "147897209000701952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1542050534/mediasme-logo-2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542050534/mediasme-logo-2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hire or Be Hired_ JavaScript Web Application by firemountain http://t.co/ALvDQdTc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:32:05 +0000", "from_user": "NovyBarks", "from_user_id": 306674434, "from_user_id_str": "306674434", "from_user_name": "Novy Barks", "geo": null, "id": 147896824496275460, "id_str": "147896824496275457", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1371988055/1caa2656397_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1371988055/1caa2656397_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#forfreelancer JavaScript Web Application by firemountain http://t.co/eVrBOghS #dothatsjobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:32:05 +0000", "from_user": "MicheleBanks2", "from_user_id": 306673166, "from_user_id_str": "306673166", "from_user_name": "Michele Banks", "geo": null, "id": 147896823787434000, "id_str": "147896823787433984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1371989287/15ff16085262_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1371989287/15ff16085262_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#forfreelancer JavaScript Web Application by firemountain http://t.co/odnLqdyj #dothatsjobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:32:04 +0000", "from_user": "Rakadanda", "from_user_id": 225062421, "from_user_id_str": "225062421", "from_user_name": "heru nugraha", "geo": null, "id": 147896818989146100, "id_str": "147896818989146112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1187257049/Aing_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1187257049/Aing_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#forfreelancer JavaScript Web Application by firemountain http://t.co/rFBi4b2V #dothatsjobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:31:57 +0000", "from_user": "workfreelancer", "from_user_id": 95474694, "from_user_id_str": "95474694", "from_user_name": "Work Freelancer", "geo": null, "id": 147896791982026750, "id_str": "147896791982026752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/573379472/logofreelance_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/573379472/logofreelance_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "JavaScript Web Application by firemountain: This project is for someone who is legitimately tal... http://t.co/d3ReoYdY #Freelance #Jobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:23:34 +0000", "from_user": "kkodong", "from_user_id": 125886147, "from_user_id_str": "125886147", "from_user_name": "dongwook", "geo": null, "id": 147894680405803000, "id_str": "147894680405803008", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NoSQL\\uC744 \\uC5EC\\uD589\\uD558\\uB294 \\uD788\\uCE58\\uD558\\uC774\\uCEE4\\uB97C \\uC704\\uD55C \\uC548\\uB0B4\\uC11C, \\uC1A1\\uAE30\\uC120 http://t.co/6WfHX9WU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:23:33 +0000", "from_user": "freelancergigs", "from_user_id": 69451318, "from_user_id_str": "69451318", "from_user_name": "FreelancerGigs", "geo": null, "id": 147894677054558200, "id_str": "147894677054558208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1661246254/freelancergigs_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661246254/freelancergigs_normal.png", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "JavaScript Web Application by firemountain http://t.co/PUkn6Vak", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:46:16 +0000", "from_user": "vscarpenter", "from_user_id": 59223, "from_user_id_str": "59223", "from_user_name": "Vinny Carpenter", "geo": null, "id": 147870196575633400, "id_str": "147870196575633408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/48540942/vinny-thumbnail-rounded_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/48540942/vinny-thumbnail-rounded_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "InfoQ: JSR 107, JSR 347, Infinispan, NoSQL, Hot Rod, Memcached, CDI and Beyond http://t.co/3N00y2CU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:33:18 +0000", "from_user": "shankar303", "from_user_id": 15455186, "from_user_id_str": "15455186", "from_user_name": "shankar303", "geo": null, "id": 147866930815049730, "id_str": "147866930815049728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1219729299/face_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1219729299/face_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "New NOSQL based disturbed database >> Apache Cassandra. used by facebook, twitter.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:16:01 +0000", "from_user": "d8Pit", "from_user_id": 264394701, "from_user_id_str": "264394701", "from_user_name": "The URL Popularizer", "geo": null, "id": 147862580982067200, "id_str": "147862580982067202", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317284522/logo-header_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317284522/logo-header_normal.png", "source": "<a href="http://d8p.it" rel="nofollow">d8P</a>", "text": "RT @TheBigDataTrap: NoSQL Job of the Day: Hadoop Solution Architect #bigdata | http://t.co/6I30PoAP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 02:02:03 +0000", "from_user": "TheBigDataTrap", "from_user_id": 389163301, "from_user_id_str": "389163301", "from_user_name": "The Big Data Trap", "geo": null, "id": 147859066394394620, "id_str": "147859066394394625", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1584049409/twitter_prof_-big-data_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584049409/twitter_prof_-big-data_normal.jpg", "source": "<a href="http://trap.it" rel="nofollow">Trapit</a>", "text": "NoSQL Job of the Day: Hadoop Solution Architect http://t.co/sAkRRMIi #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:57:13 +0000", "from_user": "sweemeng", "from_user_id": 11877522, "from_user_id_str": "11877522", "from_user_name": "sweemeng", "geo": null, "id": 147857850180448260, "id_str": "147857850180448257", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1586374686/275543_671264318_115996077_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586374686/275543_671264318_115996077_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "must find chance to attempt this for @sinarproject #opendata http://t.co/JtxorDJL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:53:18 +0000", "from_user": "smithatlanta", "from_user_id": 14599342, "from_user_id_str": "14599342", "from_user_name": "Michael Smith \\u269B", "geo": null, "id": 147856864376389630, "id_str": "147856864376389632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1563331358/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1563331358/image_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Safari on iOS</a>", "text": "This is a little dated but I like how it gives different scenarios for the use of each type of nosql storage. http://t.co/Ti5CJiCP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:44:49 +0000", "from_user": "mongodb_news", "from_user_id": 218710958, "from_user_id_str": "218710958", "from_user_name": "MongoDb", "geo": null, "id": 147854731493126140, "id_str": "147854731493126144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1173473945/imgres-1_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1173473945/imgres-1_normal.jpeg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"Building a Location-Based Web App w/ MongoDB\" http://t.co/xINEkBRH #MongoDB #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:31:13 +0000", "from_user": "alonhorev", "from_user_id": 358053230, "from_user_id_str": "358053230", "from_user_name": "Alon Horev", "geo": null, "id": 147851308039286800, "id_str": "147851308039286785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1661119064/DSC_1549_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661119064/DSC_1549_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "nosql is so fun not because its schema-less, but because it doesn't require migrations, and if you want schema, coding a migration is easy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:15:26 +0000", "from_user": "owenheaps", "from_user_id": 148683115, "from_user_id_str": "148683115", "from_user_name": "Scotty ere nor there", "geo": null, "id": 147847336058564600, "id_str": "147847336058564609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701924911/owen_heaps_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701924911/owen_heaps_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jamespmclachlan: I'm starting a #NoSequel movement. Database admins against movie franchises. #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Sat, 17 Dec 2011 01:09:15 +0000", "from_user": "sjb351", "from_user_id": 33214971, "from_user_id_str": "33214971", "from_user_name": "Steven Black", "geo": null, "id": 147845779678179330, "id_str": "147845779678179328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1589071369/Janus_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1589071369/Janus_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jamespmclachlan: I'm starting a #NoSequel movement. Database admins against movie franchises. #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:04:58 +0000", "from_user": "tunaranch", "from_user_id": 15464944, "from_user_id_str": "15464944", "from_user_name": "Haikal Saadh", "geo": null, "id": 147844704258633730, "id_str": "147844704258633728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1102551115/e5657cc8-8b05-4385-ad98-44e6dd5e02a2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1102551115/e5657cc8-8b05-4385-ad98-44e6dd5e02a2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jamespmclachlan: I'm starting a #NoSequel movement. Database admins against movie franchises. #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 01:00:33 +0000", "from_user": "Veli_Bayar", "from_user_id": 438682020, "from_user_id_str": "438682020", "from_user_name": "Veli Bayar", "geo": null, "id": 147843589337128960, "id_str": "147843589337128961", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697159897/JacobsLadder_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697159897/JacobsLadder_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/jOkSzpNA a girerek, NoSQL veri tabanlar\\u0131na dair veriler bulunabilir. Bunlar \\u00F6nemli \\u015Feyler insanc\\u0131klar.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:56:29 +0000", "from_user": "joshdavey", "from_user_id": 2367691, "from_user_id_str": "2367691", "from_user_name": "Joshua Davey", "geo": null, "id": 147842566275084300, "id_str": "147842566275084288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1258256138/profile-picture-dmz_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1258256138/profile-picture-dmz_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jamespmclachlan: I'm starting a #NoSequel movement. Database admins against movie franchises. #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:36:35 +0000", "from_user": "keithkim", "from_user_id": 14881688, "from_user_id_str": "14881688", "from_user_name": "Keith Kim", "geo": null, "id": 147837559978991600, "id_str": "147837559978991616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1485820747/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1485820747/me_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"Building a Location-Based Web App w/ MongoDB\" http://t.co/xINEkBRH #MongoDB #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:32:27 +0000", "from_user": "TopDevTweets", "from_user_id": 194520782, "from_user_id_str": "194520782", "from_user_name": "TopDevTweets", "geo": null, "id": 147836517337935870, "id_str": "147836517337935873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "RT @doryokujin: many presentations at #mongosv are here! #mongodb / \\u201C10gen - MongoDB and NoSQL video, webcasts, presentations, and mo\\u2026\\u201D http://t.co/1X6UHcxx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:30:32 +0000", "from_user": "doryokujin", "from_user_id": 73622174, "from_user_id_str": "73622174", "from_user_name": "Takahiro Inoue", "geo": null, "id": 147836036993654800, "id_str": "147836036993654784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/620019651/runninng_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/620019651/runninng_normal.jpeg", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "many presentations at #mongosv are here! #mongodb / \\u201C10gen - MongoDB and NoSQL video, webcasts, presentations, and mo\\u2026\\u201D http://t.co/1X6UHcxx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:18:13 +0000", "from_user": "usul_", "from_user_id": 5528042, "from_user_id_str": "5528042", "from_user_name": "Fran\\u00E7ois Dussert", "geo": null, "id": 147832939298828300, "id_str": "147832939298828288", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1476077804/gravatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1476077804/gravatar_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @jedisct1: RT @OracleDatabase: Podcast: Introducing Oracle #NoSQL Database http://t.co/54mWKN1M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:14:49 +0000", "from_user": "jedisct1", "from_user_id": 17396038, "from_user_id_str": "17396038", "from_user_name": "Frank Denis", "geo": null, "id": 147832081442013200, "id_str": "147832081442013184", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/64543895/cv_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/64543895/cv_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @OracleDatabase: Podcast: Introducing Oracle #NoSQL Database http://t.co/54mWKN1M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:54:54 +0000", "from_user": "ar_farias", "from_user_id": 22497637, "from_user_id_str": "22497637", "from_user_name": "Anderson R. Farias", "geo": null, "id": 147827068464414720, "id_str": "147827068464414720", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/924915480/teste_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/924915480/teste_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @OracleDatabase: Podcast: Introducing Oracle #NoSQL Database http://t.co/JuzGKz8h", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:42:30 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 147823948879507460, "id_str": "147823948879507456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "HBase, mail # user - new to HBase/NoSQL, need some help with ... http://t.co/OOSXaPgH #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:36:59 +0000", "from_user": "daisuke_kawada", "from_user_id": 297712820, "from_user_id_str": "297712820", "from_user_name": "\\u5DDD\\u7530\\u5927\\u8F14 Daisuke Kawada", "geo": null, "id": 147822559692472320, "id_str": "147822559692472320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1351323088/____________2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1351323088/____________2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @wso2: Sumedha Rubasighe presenting \"Data in your SOA: From SQL to NoSQL and Beyond\" at #wso2con 2011 http://t.co/cMD4a3f0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:30:58 +0000", "from_user": "understeer", "from_user_id": 4451471, "from_user_id_str": "4451471", "from_user_name": "MATSUO Yasuhiro ", "geo": null, "id": 147821046291107840, "id_str": "147821046291107841", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1314550179/4451471_origin_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1314550179/4451471_origin_normal.gif", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "The 10gen Blog on MongoDB and NoSQL, Announcing the 2011 MongoDB Community Award Winners: http://t.co/IxGEepn7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:26:44 +0000", "from_user": "a_musing_moose", "from_user_id": 15658358, "from_user_id_str": "15658358", "from_user_name": "a_musing_moose", "geo": null, "id": 147819980287787000, "id_str": "147819980287787008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/630560005/me2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/630560005/me2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jamespmclachlan: I'm starting a #NoSequel movement. Database admins against movie franchises. #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:19:53 +0000", "from_user": "tswicegood", "from_user_id": 9478892, "from_user_id_str": "9478892", "from_user_name": "Travis Swicegood", "geo": null, "id": 147818255745167360, "id_str": "147818255745167360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1380831239/new-avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1380831239/new-avatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jamespmclachlan: I'm starting a #NoSequel movement. Database admins against movie franchises. #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:07:30 +0000", "from_user": "zbesiroglu", "from_user_id": 99265193, "from_user_id_str": "99265193", "from_user_name": "Zekeriya Be\\u015Firo\\u011Flu", "geo": null, "id": 147815139926749200, "id_str": "147815139926749185", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1631579037/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631579037/image_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @OracleDatabase: Podcast: Introducing Oracle #NoSQL Database http://t.co/JuzGKz8h", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:04:07 +0000", "from_user": "DBmxorg", "from_user_id": 261452842, "from_user_id_str": "261452842", "from_user_name": "DBmx.org", "geo": null, "id": 147814288336236540, "id_str": "147814288336236545", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1263199080/4395953684_419dff284f_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263199080/4395953684_419dff284f_normal.jpg", "source": "<a href="http://timely.is" rel="nofollow">Timely by Demandforce</a>", "text": "Hadoop puede vivir en Microsoft Azure http://t.co/zmcIi25R #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:39:12 +0000", "from_user": "zizzamia", "from_user_id": 25728571, "from_user_id_str": "25728571", "from_user_name": "Leonardo Zizzamia", "geo": null, "id": 147808018761920500, "id_str": "147808018761920512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1615599868/39f192b_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615599868/39f192b_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@bernarpa @giovannibajo cool cool! The next step is to use #MongoDB. Enough Sql, long live the #NoSQL. :-D", "to_user": "bernarpa", "to_user_id": 156004270, "to_user_id_str": "156004270", "to_user_name": "Paolo Bernardi", "in_reply_to_status_id": 147763577816756220, "in_reply_to_status_id_str": "147763577816756224"}, +{"created_at": "Fri, 16 Dec 2011 22:25:43 +0000", "from_user": "PursueMobile", "from_user_id": 369193926, "from_user_id_str": "369193926", "from_user_name": "Pursue Mobile", "geo": null, "id": 147804624135520260, "id_str": "147804624135520256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1532057433/PMSquareV2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1532057433/PMSquareV2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "How AOL Advertising Uses NoSQL to Make Millions of Smart Decisions Every Hour http://t.co/iuaFhtOX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:04:56 +0000", "from_user": "hnfirehose", "from_user_id": 213117318, "from_user_id_str": "213117318", "from_user_name": "HN Firehose", "geo": null, "id": 147799395818156030, "id_str": "147799395818156032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "How AOL Advertising Uses NoSQL to Make Millions of Smart Decisions Every Hour: http://t.co/LCnoTVr2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:28:52 +0000", "from_user": "techielicous", "from_user_id": 240306053, "from_user_id_str": "240306053", "from_user_name": "Josette Rigsby", "geo": null, "id": 147790320506109950, "id_str": "147790320506109952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1250483015/Josette_character_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1250483015/Josette_character_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloudant claims $2M funding - Mass High Tech http://t.co/u9yQEWyb #nosql #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:28:33 +0000", "from_user": "hmedney", "from_user_id": 18916747, "from_user_id_str": "18916747", "from_user_name": "hmedney", "geo": null, "id": 147790237614088200, "id_str": "147790237614088193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/70830095/twitter-face_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/70830095/twitter-face_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Enjoyed the Taking Notes 142 podcast - good intro to NoSQL and comparison to #lotusnotes NSF. http://t.co/PCoAhc5b", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:25:13 +0000", "from_user": "lintzston", "from_user_id": 15534230, "from_user_id_str": "15534230", "from_user_name": "Justin Lintz", "geo": null, "id": 147789398593904640, "id_str": "147789398593904640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1161127231/73884_742770040882_16100151_40343487_1377918_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1161127231/73884_742770040882_16100151_40343487_1377918_n_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "Facebook: There Are No Published Cases of NoSQL Databases Operating at the Scale of Facebook\\u2019s MySQL Database http://t.co/Ewf3AuSn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:22:32 +0000", "from_user": "b2berry", "from_user_id": 238645222, "from_user_id_str": "238645222", "from_user_name": "Brandon Berry", "geo": null, "id": 147788724321779700, "id_str": "147788724321779712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1653873598/ipadFace_Twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653873598/ipadFace_Twitter_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: \\u267B How Does the Future of Computing Look Like? http://t.co/XjqBDoNp #future", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:07:49 +0000", "from_user": "zippy1981", "from_user_id": 19685647, "from_user_id_str": "19685647", "from_user_name": "Justin Dearing", "geo": null, "id": 147785022982725630, "id_str": "147785022982725632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1672673440/Gravatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672673440/Gravatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@jamespmclachlan what about T2, empire strikes back TWOK? #nosequel #nosql", "to_user": "jamespmclachlan", "to_user_id": 219524685, "to_user_id_str": "219524685", "to_user_name": "James McLachlan", "in_reply_to_status_id": 147784335892819970, "in_reply_to_status_id_str": "147784335892819969"}, +{"created_at": "Fri, 16 Dec 2011 21:07:10 +0000", "from_user": "zippy1981", "from_user_id": 19685647, "from_user_id_str": "19685647", "from_user_name": "Justin Dearing", "geo": null, "id": 147784856909262850, "id_str": "147784856909262848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1672673440/Gravatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672673440/Gravatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jamespmclachlan: I'm starting a #NoSequel movement. Database admins against movie franchises. #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:06:42 +0000", "from_user": "kchodorow", "from_user_id": 31141896, "from_user_id_str": "31141896", "from_user_name": "kristina", "geo": null, "id": 147784739321954300, "id_str": "147784739321954304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/362414023/n809676_30991415_5620_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/362414023/n809676_30991415_5620_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jamespmclachlan: I'm starting a #NoSequel movement. Database admins against movie franchises. #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:05:06 +0000", "from_user": "jamespmclachlan", "from_user_id": 219524685, "from_user_id_str": "219524685", "from_user_name": "James McLachlan", "geo": null, "id": 147784335892819970, "id_str": "147784335892819969", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1663713323/JamesFace_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663713323/JamesFace_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I'm starting a #NoSequel movement. Database admins against movie franchises. #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:02:29 +0000", "from_user": "javazquez", "from_user_id": 15304140, "from_user_id_str": "15304140", "from_user_name": "javazquez", "geo": null, "id": 147783677529702400, "id_str": "147783677529702401", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1415946610/Photo_6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1415946610/Photo_6_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @graemerocher: Published an updated developer guide for folks interested in creating implementations of GORM http://t.co/a3FMxeuC #grails #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:01:25 +0000", "from_user": "gpuchawski", "from_user_id": 158722057, "from_user_id_str": "158722057", "from_user_name": "Grzegorz Puchawski", "geo": null, "id": 147783412353212400, "id_str": "147783412353212416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Or maybe this is like with NOSQL, that NO EMAILS means NOt only EMAILS?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:47:38 +0000", "from_user": "speedata", "from_user_id": 66168039, "from_user_id_str": "66168039", "from_user_name": "speedata", "geo": null, "id": 147779940144791550, "id_str": "147779940144791552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1425809224/twitter-logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1425809224/twitter-logo_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Awesome new project with the #speedata Publisher, #nodejs and some #nosql database. Sounds like lots of fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:42:37 +0000", "from_user": "bentrm", "from_user_id": 242676306, "from_user_id_str": "242676306", "from_user_name": "bt", "geo": null, "id": 147778679479603200, "id_str": "147778679479603200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1414110586/20110604_iPhone_00418_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1414110586/20110604_iPhone_00418_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "NoSQL makes me feel like I've missed something in the past.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:39:34 +0000", "from_user": "Gridflow", "from_user_id": 351754270, "from_user_id_str": "351754270", "from_user_name": "Erick Trolinger", "geo": null, "id": 147777912454643700, "id_str": "147777912454643712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1486637297/Gridflowlogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1486637297/Gridflowlogo_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "The NoSQL space has really expanded. There are over 120 projects in this area according to http://t.co/0R1QhZMf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:28:48 +0000", "from_user": "Innopplinc", "from_user_id": 266687201, "from_user_id_str": "266687201", "from_user_name": "Innoppl Technologies", "geo": null, "id": 147775203169153020, "id_str": "147775203169153024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691161011/74282_10150297601905467_490647825466_15474758_6725828_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691161011/74282_10150297601905467_490647825466_15474758_6725828_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "#BigData #NoSQL Atlanta LinkedIn group is now open for new members http://t.co/2TxZ0YUJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:12:53 +0000", "from_user": "nivertech", "from_user_id": 18736601, "from_user_id_str": "18736601", "from_user_name": "Zvi", "geo": null, "id": 147771198565130240, "id_str": "147771198565130241", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/297198891/0609_future_tv_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/297198891/0609_future_tv_normal.jpg", "source": "<a href="http://www.handmark.com" rel="nofollow">TweetCaster for iOS</a>", "text": "RT @CloudCompute: #NoSQL Benchmarking http://t.co/a6a3PGUO cassandra #mongodb #hbase", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:11:46 +0000", "from_user": "wso2", "from_user_id": 15594932, "from_user_id_str": "15594932", "from_user_name": "wso2", "geo": null, "id": 147770914921132030, "id_str": "147770914921132032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/57207794/wso2-logo-twitter_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/57207794/wso2-logo-twitter_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Sumedha Rubasighe presenting \"Data in your SOA: From SQL to NoSQL and Beyond\" at #wso2con 2011 http://t.co/cMD4a3f0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:09:16 +0000", "from_user": "CloudCompute", "from_user_id": 15457407, "from_user_id_str": "15457407", "from_user_name": "CloudCompute", "geo": null, "id": 147770286434037760, "id_str": "147770286434037760", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/178810177/Picture_9_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/178810177/Picture_9_normal.png", "source": "<a href="http://www.handmark.com" rel="nofollow">TweetCaster for iOS</a>", "text": "#NoSQL Benchmarking http://t.co/a6a3PGUO cassandra #mongodb #hbase", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:07:55 +0000", "from_user": "valleymobjobs", "from_user_id": 285217228, "from_user_id_str": "285217228", "from_user_name": "Valley Mobile Jobs", "geo": null, "id": 147769946972233730, "id_str": "147769946972233728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1318878831/localmobjobs_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1318878831/localmobjobs_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#sf Technical Evangelist for Couchbase and NoSQL http://t.co/CowQlX1D #mobile #jobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:05:20 +0000", "from_user": "cgrahamseven", "from_user_id": 100053478, "from_user_id_str": "100053478", "from_user_name": "Chris Graham", "geo": null, "id": 147769294984445950, "id_str": "147769294984445952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1550141943/maserati_tridente_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1550141943/maserati_tridente_normal.jpg", "source": "<a href="http://twitter.com" rel="nofollow">Tweetie for Mac</a>", "text": "RT @DBAHULK: HULK LAUGH RT @abrams @webtonull: A DBA walks into a NOSQL bar, but turns and leaves because he couldn't find a table", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:05:01 +0000", "from_user": "satolone", "from_user_id": 398507580, "from_user_id_str": "398507580", "from_user_name": "Scott Tolone", "geo": null, "id": 147769217540833280, "id_str": "147769217540833280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1683949662/GlobalBigData_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683949662/GlobalBigData_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "NoSQL does not mean no data model needed.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:03:29 +0000", "from_user": "seyhunak", "from_user_id": 21591510, "from_user_id_str": "21591510", "from_user_name": "Seyhun AKY\\u00DCREK", "geo": null, "id": 147768830071013380, "id_str": "147768830071013377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1437612555/amatorka_big_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1437612555/amatorka_big_normal.jpg", "source": "<a href="http://plusbounce.com/" rel="nofollow">PlusBounce</a>", "text": "Scaling the Web: Databases & NoSQL #nosql https://t.co/FLxup0c2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:55:32 +0000", "from_user": "devseo", "from_user_id": 37402072, "from_user_id_str": "37402072", "from_user_name": "Alex Hall", "geo": +{"coordinates": [54.0633,-2.8842], "type": "Point"}, "id": 147766832567296000, "id_str": "147766832567296000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/634743139/d-logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/634743139/d-logo_normal.jpg", "source": "<a href="http://www.tweetywall.com" rel="nofollow">Tweetywall</a>", "text": "#programming Working with ScaleBase and NOSQL - http://t.co/bmsGmA9g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:51:47 +0000", "from_user": "zoraslapen", "from_user_id": 44078594, "from_user_id_str": "44078594", "from_user_name": "Saroj Maharjan", "geo": null, "id": 147765888785985540, "id_str": "147765888785985537", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1419822259/3_small_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1419822259/3_small_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @millisami: I liked a @YouTube video http://t.co/KYf3ngpn Scaling the Web: Databases & NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:43:04 +0000", "from_user": "turtle2005", "from_user_id": 54184073, "from_user_id_str": "54184073", "from_user_name": "Hitoshi Kamezaki", "geo": null, "id": 147763694049296400, "id_str": "147763694049296386", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/351040572/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/351040572/twitterProfilePhoto_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "I think facebook gives up transfering from mysql to NoSQL on their system. http://t.co/DKH1EFNf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:37:50 +0000", "from_user": "peterneo", "from_user_id": 14993077, "from_user_id_str": "14993077", "from_user_name": "Peter Nedonosko", "geo": null, "id": 147762374957477900, "id_str": "147762374957477888", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/54994260/itpro1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/54994260/itpro1_normal.png", "source": "<a href="http://choqok.gnufolks.org/" rel="nofollow">Choqok</a>", "text": "Big List of Interesting Programming Books #2011 http://t.co/pksohzBE #java #html5 #amazon #gpu #nosql #android (via @jboner @planetclojure)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:28:19 +0000", "from_user": "ccnmtlDev", "from_user_id": 351868363, "from_user_id_str": "351868363", "from_user_name": "CCNMTL Developers", "geo": null, "id": 147759983172390900, "id_str": "147759983172390913", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1488903267/dev_icon_twitter_grey_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1488903267/dev_icon_twitter_grey_normal.jpg", "source": "<a href="http://ccnmtl.columbia.edu/compiled" rel="nofollow">ccnmtl-irc</a>", "text": "http://t.co/Jcs99iIC: Building Legal Language Explorer: Interactivity and drill-down, noSQL and SQL /via @thraxil", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:12:22 +0000", "from_user": "nicotourne", "from_user_id": 17189365, "from_user_id_str": "17189365", "from_user_name": "Nicol\\u00E1s Tourn\\u00E9", "geo": null, "id": 147755968715948030, "id_str": "147755968715948032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/702329176/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/702329176/profile_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "A #NoSQL joke: \"How to write a CV\" http://t.co/ztxNKiVq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:08:38 +0000", "from_user": "rugi", "from_user_id": 6753802, "from_user_id_str": "6753802", "from_user_name": "Isaac Ruiz Guerra", "geo": null, "id": 147755027807735800, "id_str": "147755027807735808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1389880431/15722_417097019282_539559282_5248112_3688748_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1389880431/15722_417097019282_539559282_5248112_3688748_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "I suggested: ElasticSearch out of the box as NoSQL database http://t.co/J6EMhhvR via @Jelastic", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:07:33 +0000", "from_user": "JLeeGhost", "from_user_id": 306117941, "from_user_id_str": "306117941", "from_user_name": "Johnneylee Rollins", "geo": null, "id": 147754756528537600, "id_str": "147754756528537600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1370810672/SpaceGhost_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1370810672/SpaceGhost_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lgarulli: How to plug a new command in #OrientDB console? https://t.co/Dy5KjvVu #graphdb #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:06:24 +0000", "from_user": "lgarulli", "from_user_id": 74181214, "from_user_id_str": "74181214", "from_user_name": "Luca Garulli", "geo": null, "id": 147754466744078340, "id_str": "147754466744078338", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1142225678/webcam_luca34_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1142225678/webcam_luca34_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "How to plug a new command in #OrientDB console? https://t.co/Dy5KjvVu #graphdb #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:01:05 +0000", "from_user": "rahulgchaudhary", "from_user_id": 93134027, "from_user_id_str": "93134027", "from_user_name": "Rahul Chaudhary", "geo": null, "id": 147753126957559800, "id_str": "147753126957559809", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1148856768/rahulchaudhary_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1148856768/rahulchaudhary_normal.jpg", "source": "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", "text": "Cypher - A view from a recovering SQL DBA via @nosqlweekly http://t.co/UbLhgsH8 #neo4j #nosql #cypher #sql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:39:31 +0000", "from_user": "TopDevTweets", "from_user_id": 194520782, "from_user_id_str": "194520782", "from_user_name": "TopDevTweets", "geo": null, "id": 147747700312506370, "id_str": "147747700312506368", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @OracleDatabase: Podcast: Introducing Oracle #NoSQL Database http://t.co/JuzGKz8h", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:36:58 +0000", "from_user": "BlkMarketEmpire", "from_user_id": 234149479, "from_user_id_str": "234149479", "from_user_name": "D-B\\u2200NKZ", "geo": null, "id": 147747059812925440, "id_str": "147747059812925441", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691763291/Thinking2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691763291/Thinking2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @OracleDatabase: Podcast: Introducing Oracle #NoSQL Database http://t.co/JuzGKz8h", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:35:47 +0000", "from_user": "andybuffington", "from_user_id": 186725149, "from_user_id_str": "186725149", "from_user_name": "Andy Buffington", "geo": null, "id": 147746762508075000, "id_str": "147746762508075008", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1503882196/1a4ad21_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1503882196/1a4ad21_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @OracleDatabase: Podcast: Introducing Oracle #NoSQL Database http://t.co/JuzGKz8h", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:35:03 +0000", "from_user": "OracleDatabase", "from_user_id": 21010243, "from_user_id_str": "21010243", "from_user_name": "Oracle Database", "geo": null, "id": 147746577233084400, "id_str": "147746577233084417", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/290915888/twitter_Database_avatar_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/290915888/twitter_Database_avatar_normal.gif", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Podcast: Introducing Oracle #NoSQL Database http://t.co/JuzGKz8h", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:24:20 +0000", "from_user": "csrakowski", "from_user_id": 225140009, "from_user_id_str": "225140009", "from_user_name": "Christiaan Rakowski", "geo": null, "id": 147743881247723520, "id_str": "147743881247723521", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1288157841/Headshot_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1288157841/Headshot_normal.png", "source": "<a href="http://twitter.com" rel="nofollow">Tweetie for Mac</a>", "text": "RT @DBAHULK: HULK LAUGH RT @abrams @webtonull: A DBA walks into a NOSQL bar, but turns and leaves because he couldn't find a table", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:07:00 +0000", "from_user": "kekline", "from_user_id": 22445912, "from_user_id_str": "22445912", "from_user_name": "Kevin Kline", "geo": null, "id": 147739518135574530, "id_str": "147739518135574529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/388076294/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/388076294/twitterProfilePhoto_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Dataversity: Check out our Dec #DATAVERSITY Digest: http://t.co/716JLSZ9 #mdm #nosql #bigdata #datagovernance #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 18:01:30 +0000", "from_user": "kodfejtok", "from_user_id": 425065563, "from_user_id_str": "425065563", "from_user_name": "K\\u00F3dfejt\\u0151k", "geo": null, "id": 147738131997802500, "id_str": "147738131997802496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1666022815/kodfejtok_square_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666022815/kodfejtok_square_logo_normal.jpg", "source": "<a href="http://www.ajaymatharu.com/" rel="nofollow">Tweet Old Post</a>", "text": "H\\u00EDrek,... http://t.co/tq1XBfp9 #adatb\\u00E1zis #android #bugs #gnome #hack #hib\\u00E1k #ice_cream_sandwich #instagram #lockpick #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:17:01 +0000", "from_user": "yaymixer", "from_user_id": 263546351, "from_user_id_str": "263546351", "from_user_name": "yaymixer", "geo": null, "id": 147726940537761800, "id_str": "147726940537761792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1281882448/the_alhambra6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1281882448/the_alhambra6_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "JSR 107, JSR 347, Infinispan, NoSQL, Hot Rod, Memcached, CDI and Beyond - http://t.co/U8fIlHBO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:03:55 +0000", "from_user": "riakhandbook", "from_user_id": 430739221, "from_user_id_str": "430739221", "from_user_name": "Riak Handbook", "geo": null, "id": 147723642413912060, "id_str": "147723642413912064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679701261/profile_riak_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679701261/profile_riak_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @roidrage: Added an errata file for @riakhandbook to the feedback repository: http://t.co/knynheER Thanks a lot for reporting these!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:03:46 +0000", "from_user": "roidrage", "from_user_id": 14658472, "from_user_id_str": "14658472", "from_user_name": "Mathias Meyer", "geo": null, "id": 147723606045102080, "id_str": "147723606045102080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1505416860/5653514417_94976350b9_m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505416860/5653514417_94976350b9_m_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Added an errata file for @riakhandbook to the feedback repository: http://t.co/knynheER Thanks a lot for reporting these!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:02:14 +0000", "from_user": "Dataversity", "from_user_id": 260472941, "from_user_id_str": "260472941", "from_user_name": "Dataversity", "geo": null, "id": 147723217765797900, "id_str": "147723217765797888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1286039423/DataversityIcon_300px_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1286039423/DataversityIcon_300px_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "In case you missed it, check out our Dec #DATAVERSITY Digest: http://t.co/lkrr0Jr2 #mdm #nosql #bigdata #datagovernance", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:47:50 +0000", "from_user": "millisami", "from_user_id": 4904081, "from_user_id_str": "4904081", "from_user_name": "Sachin Sagar Rai", "geo": null, "id": 147719596311453700, "id_str": "147719596311453696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/21502492/the-shot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/21502492/the-shot_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube video http://t.co/KYf3ngpn Scaling the Web: Databases & NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:41:13 +0000", "from_user": "TechFaq360", "from_user_id": 50019643, "from_user_id_str": "50019643", "from_user_name": "TechFaq360", "geo": null, "id": 147717929486659600, "id_str": "147717929486659587", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/304508253/TechFaq360_normal.JPG", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "RT @markwigmans: 8 Most Interesting Companies for #Hadoop's Future http://t.co/q0DntXhL #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:40:45 +0000", "from_user": "wear_here", "from_user_id": 17025934, "from_user_id_str": "17025934", "from_user_name": "Jeffrey Wear", "geo": null, "id": 147717812364910600, "id_str": "147717812364910594", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/790201937/jeff_scans_the_sepia_horizon__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/790201937/jeff_scans_the_sepia_horizon__normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @schwa: I know NoSQL is suffering lash back lately but I'd actually really like to see a schema-less CoreData-ish implementation.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:40:14 +0000", "from_user": "stevesandersonf", "from_user_id": 194307897, "from_user_id_str": "194307897", "from_user_name": "steve sanderson", "geo": null, "id": 147717679954935800, "id_str": "147717679954935809", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Building Legal Language Explorer: Interactivity and drill-down, noSQL and SQL http://t.co/dWgbS3jf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:34:32 +0000", "from_user": "YCHackerNews", "from_user_id": 90440720, "from_user_id_str": "90440720", "from_user_name": "YC Hacker News", "geo": null, "id": 147716246786412540, "id_str": "147716246786412545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/529679802/y_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/529679802/y_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Building Legal Language Explorer: Interactivity and drill-down, noSQL and SQL: Comments:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:32:56 +0000", "from_user": "MarlonRibunal", "from_user_id": 14358801, "from_user_id_str": "14358801", "from_user_name": "Marlon Ribunal", "geo": null, "id": 147715842770087940, "id_str": "147715842770087936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1254931977/47203_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1254931977/47203_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"Building Legal Language Explorer: Interactivity and drill-down, noSQL and SQL\" http://t.co/WmQa59kP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:30:08 +0000", "from_user": "HNTweets", "from_user_id": 116276133, "from_user_id_str": "116276133", "from_user_name": "Hacker News", "geo": null, "id": 147715141952213000, "id_str": "147715141952212992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1369520630/HNTweets_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1369520630/HNTweets_normal.png", "source": "<a href="http://github.com/d4nt/HNTweets" rel="nofollow">HNTweets Bot</a>", "text": "Building Legal Language Explorer: Interactivity and drill-down, noSQL and SQL: http://t.co/14cAS2ZD Comments: http://t.co/3T3NkOU5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:26:11 +0000", "from_user": "hnfirehose", "from_user_id": 213117318, "from_user_id_str": "213117318", "from_user_name": "HN Firehose", "geo": null, "id": 147714145138130940, "id_str": "147714145138130944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Building Legal Language Explorer: Interactivity and drill-down, noSQL and SQL: http://t.co/ckLaBZeg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:23:37 +0000", "from_user": "newsery9", "from_user_id": 245372623, "from_user_id_str": "245372623", "from_user_name": "newsery9", "geo": null, "id": 147713501757054980, "id_str": "147713501757054976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://www.twitter.com" rel="nofollow">RSSToHere</a>", "text": "Building Legal Language Explorer: Interactivity and drill-down, noSQL and SQL - http://t.co/OQeexaeI - [Hacker News FH]", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:09:08 +0000", "from_user": "achilued", "from_user_id": 150947743, "from_user_id_str": "150947743", "from_user_name": "Eduardo Aceituno", "geo": null, "id": 147709856084795400, "id_str": "147709856084795392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/987139612/achied_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/987139612/achied_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "Availability and Operational Stability of NoSQL | CUBRID Blog http://t.co/E4Xkw8ww", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:05:23 +0000", "from_user": "staffingpower", "from_user_id": 20834614, "from_user_id_str": "20834614", "from_user_name": "staffingpower", "geo": null, "id": 147708909703016450, "id_str": "147708909703016448", "iso_language_code": "eo", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/577138962/SP_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/577138962/SP_normal.png", "source": "<a href="http://staffingpower.com" rel="nofollow">Staffingpower</a>", "text": "JobG8: Senior JAVA/Hibernate/Spring Developer NoSQL (Atlanta, Georgia) MISSING_ARG_APIKEY #Jobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:58:03 +0000", "from_user": "markwigmans", "from_user_id": 7527532, "from_user_id_str": "7527532", "from_user_name": "Mark Wigmans", "geo": null, "id": 147707065085853700, "id_str": "147707065085853696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/837273831/MWI_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/837273831/MWI_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "8 Most Interesting Companies for #Hadoop's Future http://t.co/q0DntXhL #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:51:01 +0000", "from_user": "VoltDB", "from_user_id": 97716631, "from_user_id_str": "97716631", "from_user_name": "VoltDB", "geo": null, "id": 147705294359760900, "id_str": "147705294359760896", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1389280256/volt_db_logo_small_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1389280256/volt_db_logo_small_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "VoltDB for Capital Markets apps: http://t.co/emycuQx1 #sql #nosql #newsql #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:50:52 +0000", "from_user": "mujeeb_rahman", "from_user_id": 38413770, "from_user_id_str": "38413770", "from_user_name": "Mujeeb Rahman", "geo": null, "id": 147705257114341380, "id_str": "147705257114341377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1200605606/41391_1139906319_8108_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1200605606/41391_1139906319_8108_q_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Making slides for presenting #NoSQL @cabotsolutions tomorrow. not prepared well yet Errr....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:49:35 +0000", "from_user": "nuvolabase", "from_user_id": 249169811, "from_user_id_str": "249169811", "from_user_name": "nuvolabase", "geo": null, "id": 147704937349001200, "id_str": "147704937349001217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1240280657/nuvolabase-mini_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1240280657/nuvolabase-mini_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lgarulli: #OrientDB 1.0rc8-SNAPSHOT: 300% faster importing IMDB db than 1.0rc7. New relationships mgmt scales up much better! #graphdb #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:49:08 +0000", "from_user": "afocareta", "from_user_id": 231376137, "from_user_id_str": "231376137", "from_user_name": "Alfonso Focareta", "geo": null, "id": 147704823402336260, "id_str": "147704823402336257", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1200708967/0fcd6eb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1200708967/0fcd6eb_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lgarulli: #OrientDB 1.0rc8-SNAPSHOT: 300% faster importing IMDB db than 1.0rc7. New relationships mgmt scales up much better! #graphdb #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:47:30 +0000", "from_user": "dekt", "from_user_id": 16493708, "from_user_id_str": "16493708", "from_user_name": "dekt", "geo": null, "id": 147704413056811000, "id_str": "147704413056811008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1032739585/dekel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1032739585/dekel_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "stating my Friday with a nice read on #NoSQL - #mongodb vs #hbase vs #cassandra http://t.co/KzR7gxdI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:43:11 +0000", "from_user": "edward_ribeiro", "from_user_id": 12951512, "from_user_id_str": "12951512", "from_user_name": "Edward Ribeiro", "geo": null, "id": 147703324702027780, "id_str": "147703324702027776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/314665512/rasta_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/314665512/rasta_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @adinelchirita: \"NewSQL vs. NoSQL for New OLTP\", by Michael Stonebraker, MIT http://t.co/g8lXcAQr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:35:33 +0000", "from_user": "JLeeGhost", "from_user_id": 306117941, "from_user_id_str": "306117941", "from_user_name": "Johnneylee Rollins", "geo": null, "id": 147701403803074560, "id_str": "147701403803074560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1370810672/SpaceGhost_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1370810672/SpaceGhost_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lgarulli: #OrientDB 1.0rc8-SNAPSHOT: 300% faster importing IMDB db than 1.0rc7. New relationships mgmt scales up much better! #graphdb #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:32:08 +0000", "from_user": "ing33k", "from_user_id": 23810014, "from_user_id_str": "23810014", "from_user_name": "Vamsi Krishna", "geo": null, "id": 147700542611795970, "id_str": "147700542611795968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1579601165/cloud_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1579601165/cloud_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "I suggested: ElasticSearch out of the box as NoSQL database http://t.co/Yi2CQP7C via @Jelastic", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:27:19 +0000", "from_user": "Grandite", "from_user_id": 17717256, "from_user_id_str": "17717256", "from_user_name": "Grandite", "geo": null, "id": 147699331477151740, "id_str": "147699331477151745", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1373004005/G_2400dpi_at_red-tr_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1373004005/G_2400dpi_at_red-tr_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @AxelTroike: SQL vs. NoSQL > RT @pbokelly: [Why Facebook Uses MySQL for Timeline - .. [Mashable]: Still waiting to see a NoSQL\\u2026 http://t.co/aI1QqHYj ]", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:27:18 +0000", "from_user": "SILVERRUN_Tools", "from_user_id": 80282261, "from_user_id_str": "80282261", "from_user_name": "SILVERRUN Modeling", "geo": null, "id": 147699326368493570, "id_str": "147699326368493568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1487160482/sr-mid-plus-tr-2_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1487160482/sr-mid-plus-tr-2_normal.PNG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @AxelTroike: SQL vs. NoSQL > RT @pbokelly: [Why Facebook Uses MySQL for Timeline - .. [Mashable]: Still waiting to see a NoSQL\\u2026 http://t.co/aI1QqHYj ]", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:12:20 +0000", "from_user": "Rbaassi", "from_user_id": 308473256, "from_user_id_str": "308473256", "from_user_name": "Renata Bassi", "geo": null, "id": 147695560260976640, "id_str": "147695560260976640", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1607507985/foto_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607507985/foto_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @caelum: Novo curso Design Patterns online, NoSQL e Cloud no Blog da Caelum http://t.co/fIK8nlZd #newsletter #caelum", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:11:50 +0000", "from_user": "chadgross80", "from_user_id": 270602185, "from_user_id_str": "270602185", "from_user_name": "Chad Gross", "geo": null, "id": 147695433920159740, "id_str": "147695433920159744", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1284052825/untitled_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1284052825/untitled_normal.JPG", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "NoSQL vs NewSQL? http://t.co/gJ7CtHtl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:11:09 +0000", "from_user": "takahiro0220", "from_user_id": 70334370, "from_user_id_str": "70334370", "from_user_name": "takahiro0220", "geo": null, "id": 147695262528311300, "id_str": "147695262528311296", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/521061716/Forest_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/521061716/Forest_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\\u3053\\u308C\\u304C\\u3001\\u3069\\u3046\\u3044\\u3046\\u610F\\u5473\\u306A\\u306E\\u304B\\u304C\\u76F8\\u5909\\u308F\\u3089\\u305A\\u6C17\\u306B\\u306A\\u308B\\u30FB\\u30FB\\u30FB\\n\\nNoSQL\\u306ECouchbase\\u3068NTT\\u30C9\\u30B3\\u30E2\\u304C\\u6226\\u7565\\u7684\\u63D0\\u643A\\u3002NTT\\u30C9\\u30B3\\u30E2\\u306E\\u6B21\\u671F\\u30B5\\u30FC\\u30D3\\u30B9\\u306B\\u63A1\\u7528\\u691C\\u8A0E\\u304B\\uFF1F \\uFF0D Publickey http://t.co/vfAyeTQ8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 15:07:09 +0000", "from_user": "agencee", "from_user_id": 138325221, "from_user_id_str": "138325221", "from_user_name": "Agence-e", "geo": null, "id": 147694256285433860, "id_str": "147694256285433856", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/859540008/ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/859540008/ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@agencee recherche un D\\u00E9veloppeur PHP MVC NoSQL Mongo DB \\u2013 emarketing - H/F", "to_user": "agencee", "to_user_id": 138325221, "to_user_id_str": "138325221", "to_user_name": "Agence-e"}, +{"created_at": "Fri, 16 Dec 2011 15:05:37 +0000", "from_user": "dnugffm", "from_user_id": 241163740, "from_user_id_str": "241163740", "from_user_name": ".NET UG Frankfurt", "geo": null, "id": 147693872363995140, "id_str": "147693872363995136", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1222069231/dnugffm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1222069231/dnugffm_normal.jpg", "source": "<a href="http://www.metrotwit.com/" rel="nofollow">MetroTwit</a>", "text": "RT @JohannesHoppe: http://t.co/AgWbnkax - [GERMAN] NoSQL aus der Praxis \\u2013 Slides und Download #NoSQL #MongoDB #RavenDB @dnugffm @sqlpass_de", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:50:35 +0000", "from_user": "fnuabhishek", "from_user_id": 322040749, "from_user_id_str": "322040749", "from_user_name": "Abhishek", "geo": null, "id": 147690087520542720, "id_str": "147690087520542720", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1545389767/random_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545389767/random_normal.png", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "NoSQL Benchmarking http://t.co/6GAnfNZD via @zite #in", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:48:34 +0000", "from_user": "webeneer", "from_user_id": 88987030, "from_user_id_str": "88987030", "from_user_name": "c benson", "geo": null, "id": 147689581435830270, "id_str": "147689581435830272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1432854928/nyc2CB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1432854928/nyc2CB_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Diff between broad vs. narrow = data science vs. BI. #BigData #DevOps #BusinessIntelligence #DataQuality #noSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:40:29 +0000", "from_user": "jld", "from_user_id": 14125970, "from_user_id_str": "14125970", "from_user_name": "Jos\\u00E9 Devezas", "geo": null, "id": 147687543951994880, "id_str": "147687543951994880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1486128519/Avatar2011-Small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1486128519/Avatar2011-Small_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lgarulli: #OrientDB 1.0rc8-SNAPSHOT: 300% faster importing IMDB db than 1.0rc7. New relationships mgmt scales up much better! #graphdb #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:38:04 +0000", "from_user": "MaDaPHaKa", "from_user_id": 262796183, "from_user_id_str": "262796183", "from_user_name": "Luca Molino", "geo": null, "id": 147686938776846340, "id_str": "147686938776846336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1266029343/me_sp-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266029343/me_sp-2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lgarulli: #OrientDB 1.0rc8-SNAPSHOT: 300% faster importing IMDB db than 1.0rc7. New relationships mgmt scales up much better! #graphdb #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:37:12 +0000", "from_user": "_tamanm", "from_user_id": 259801174, "from_user_id_str": "259801174", "from_user_name": "Mohamed Taman", "geo": null, "id": 147686720073240580, "id_str": "147686720073240578", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1260412681/MT12-07-2010_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1260412681/MT12-07-2010_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "Oracle NoSQL Database is here! http://t.co/ZoAYaUsi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:32:02 +0000", "from_user": "tsubame959", "from_user_id": 32947843, "from_user_id_str": "32947843", "from_user_name": "Hokuto", "geo": null, "id": 147685419813834750, "id_str": "147685419813834752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lgarulli: #OrientDB 1.0rc8-SNAPSHOT: 300% faster importing IMDB db than 1.0rc7. New relationships mgmt scales up much better! #graphdb #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:30:57 +0000", "from_user": "the_mindflayer", "from_user_id": 25477483, "from_user_id_str": "25477483", "from_user_name": "Giorgio Salluzzo", "geo": null, "id": 147685146655596540, "id_str": "147685146655596544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/612245713/mindy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/612245713/mindy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lgarulli: #OrientDB 1.0rc8-SNAPSHOT: 300% faster importing IMDB db than 1.0rc7. New relationships mgmt scales up much better! #graphdb #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:30:28 +0000", "from_user": "kampees", "from_user_id": 73797545, "from_user_id_str": "73797545", "from_user_name": "Kampee", "geo": null, "id": 147685023414370300, "id_str": "147685023414370304", "iso_language_code": "th", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700631203/k1_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700631203/k1_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Upgrade firewall kernel, postfix+mysql+dovecot+spamassassin \\u0E41\\u0E25\\u0E30\\u0E40\\u0E14\\u0E35\\u0E4B\\u0E22\\u0E27\\u0E08\\u0E30\\u0E25\\u0E07\\u0E42\\u0E1B\\u0E23\\u0E41\\u0E01\\u0E23\\u0E21 NoSQL Server \\u0E14\\u0E39\\u0E2D\\u0E22\\u0E32\\u0E01\\u0E23\\u0E39\\u0E49 \\u0E2D\\u0E22\\u0E32\\u0E01\\u0E25\\u0E2D\\u0E07 \\u0E2D\\u0E22\\u0E32\\u0E01\\u0E40\\u0E2B\\u0E47\\u0E19 \\u0E40\\u0E02\\u0E32\\u0E27\\u0E48\\u0E32\\u0E14\\u0E35\\u0E01\\u0E31\\u0E19\\u0E19\\u0E31\\u0E01\\u0E2B\\u0E19\\u0E32", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:29:59 +0000", "from_user": "lgarulli", "from_user_id": 74181214, "from_user_id_str": "74181214", "from_user_name": "Luca Garulli", "geo": null, "id": 147684905155952640, "id_str": "147684905155952641", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1142225678/webcam_luca34_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1142225678/webcam_luca34_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#OrientDB 1.0rc8-SNAPSHOT: 300% faster importing IMDB db than 1.0rc7. New relationships mgmt scales up much better! #graphdb #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:29:40 +0000", "from_user": "AxelTroike", "from_user_id": 287275135, "from_user_id_str": "287275135", "from_user_name": "Axel Troike", "geo": null, "id": 147684823878746100, "id_str": "147684823878746112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1323773278/at2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1323773278/at2_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "SQL vs. NoSQL > RT @pbokelly: [Why Facebook Uses MySQL for Timeline - .. [Mashable]: Still waiting to see a NoSQL\\u2026 http://t.co/aI1QqHYj ]", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:24:23 +0000", "from_user": "Goldyvr", "from_user_id": 307527220, "from_user_id_str": "307527220", "from_user_name": "Suk Virdi", "geo": null, "id": 147683492900245500, "id_str": "147683492900245505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1673145437/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673145437/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "\\u201C@Oracle: View video and learn how #Oracle #NoSQL Database can help you meet your #BigData challenges: http://t.co/XtsNDsjK\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Fri, 16 Dec 2011 14:05:54 +0000", "from_user": "felixaverlant", "from_user_id": 26585636, "from_user_id_str": "26585636", "from_user_name": "F\\u00E9lix Averlant", "geo": null, "id": 147678843602346000, "id_str": "147678843602345987", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1155182036/1f31ece4-b0be-4818-80df-6e66bfadd721_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1155182036/1f31ece4-b0be-4818-80df-6e66bfadd721_normal.png", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "http://t.co/cfw2A7zi Hadoop and Cassandra in the Top 10 Most Important Open Source Projects of 2011", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:01:53 +0000", "from_user": "agajorte", "from_user_id": 29109476, "from_user_id_str": "29109476", "from_user_name": "Rodrigo HJORT", "geo": null, "id": 147677833400033280, "id_str": "147677833400033280", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1102473168/rodrigo-defense-303_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1102473168/rodrigo-defense-303_normal.jpg", "source": "<a href="http://splitweet.com" rel="nofollow">Splitweet</a>", "text": "Minha participa\\u00E7\\u00E3o pelo @SERPRO na \"Semana da Qualidade e Seguran\\u00E7a da Informa\\u00E7\\u00E3o - 2011\" da #PRODAM http://t.co/ADwLmn34 #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:32:11 +0000", "from_user": "renatoelias", "from_user_id": 12185172, "from_user_id_str": "12185172", "from_user_name": "Renato Elias", "geo": null, "id": 147670359062224900, "id_str": "147670359062224896", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1139353242/4142086130_1808405773_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1139353242/4142086130_1808405773_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @guilhermecaelum: RT @emguerra: Na verdade leitura obrigat\\u00F3ria para quem quer entender NoSQL! RT @pedrocavalero http://t.co/AYJDuQRf leitura recomendada!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:31:35 +0000", "from_user": "paulociecomp", "from_user_id": 58767887, "from_user_id_str": "58767887", "from_user_name": "Paulo Moura", "geo": null, "id": 147670207840796670, "id_str": "147670207840796673", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701286859/eu2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701286859/eu2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @guilhermecaelum: RT @emguerra: Na verdade leitura obrigat\\u00F3ria para quem quer entender NoSQL! RT @pedrocavalero http://t.co/AYJDuQRf leitura recomendada!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:31:23 +0000", "from_user": "NazaninSaadati", "from_user_id": 335330871, "from_user_id_str": "335330871", "from_user_name": "Nazanin Saadati", "geo": null, "id": 147670155957243900, "id_str": "147670155957243904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1442443889/264652_102083649890543_100002667245097_8053_2573047_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1442443889/264652_102083649890543_100002667245097_8053_2573047_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @D_E_Schneider: why was the software developer sad when he finished the 7th harry potter book? There was #NoSQL. #Badtechjokes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:30:06 +0000", "from_user": "guilhermecaelum", "from_user_id": 23954891, "from_user_id_str": "23954891", "from_user_name": "Guilherme Silveira", "geo": null, "id": 147669833260072960, "id_str": "147669833260072960", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/295990089/eu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/295990089/eu_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @emguerra: Na verdade leitura obrigat\\u00F3ria para quem quer entender NoSQL! RT @pedrocavalero http://t.co/AYJDuQRf leitura recomendada!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:30:03 +0000", "from_user": "D_E_Schneider", "from_user_id": 299723281, "from_user_id_str": "299723281", "from_user_name": "David Schneider", "geo": null, "id": 147669822396825600, "id_str": "147669822396825600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1358102917/225686_102692563155398_100002439641162_20642_5202945_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1358102917/225686_102692563155398_100002439641162_20642_5202945_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "why was the software developer sad when he finished the 7th harry potter book? There was #NoSQL. #Badtechjokes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:25:55 +0000", "from_user": "manuel_sejourne", "from_user_id": 110764316, "from_user_id_str": "110764316", "from_user_name": "Sejourne", "geo": null, "id": 147668780116492300, "id_str": "147668780116492288", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1151022010/Capture_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1151022010/Capture_normal.PNG", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @ltoinel: Cluster BDD vs Cache applicatif r\\u00E9parti vs NoSQL http://t.co/WV49p5oV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:17:30 +0000", "from_user": "rodolphoc", "from_user_id": 48720919, "from_user_id_str": "48720919", "from_user_name": "Rodolpho Carvalho", "geo": null, "id": 147666663435812860, "id_str": "147666663435812864", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/419180046/Video_Snapshot-1_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/419180046/Video_Snapshot-1_normal.jpeg", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "Especialista em NOSQL http://t.co/JVuHfIzf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:09:10 +0000", "from_user": "gedejong", "from_user_id": 24981669, "from_user_id_str": "24981669", "from_user_name": "Edwin de Jong", "geo": null, "id": 147664564920659970, "id_str": "147664564920659968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696595935/gravatar_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696595935/gravatar_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "#fascinating new #db technology: #nuodb. I wonder if it will take off and prove to be an ACID contender with #nosql (http://t.co/lMfm8e8o)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:46:22 +0000", "from_user": "TopDevTweets", "from_user_id": 194520782, "from_user_id_str": "194520782", "from_user_name": "TopDevTweets", "geo": null, "id": 147658829285425150, "id_str": "147658829285425152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"Building a Location-Based Web App w/ MongoDB\" http://t.co/xINEkBRH #MongoDB #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:42:42 +0000", "from_user": "somkiat", "from_user_id": 14053735, "from_user_id_str": "14053735", "from_user_name": "UP1", "geo": null, "id": 147657903967445000, "id_str": "147657903967444992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/925551910/4db95ccd-33db-4d03-be01-292013d5abdb_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/925551910/4db95ccd-33db-4d03-be01-292013d5abdb_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"Building a Location-Based Web App w/ MongoDB\" http://t.co/xINEkBRH #MongoDB #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:40:26 +0000", "from_user": "DZone", "from_user_id": 14782935, "from_user_id_str": "14782935", "from_user_name": "DZone", "geo": null, "id": 147657333407883260, "id_str": "147657333407883264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/258714549/dzone-square-256_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/258714549/dzone-square-256_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\"Building a Location-Based Web App w/ MongoDB\" http://t.co/xINEkBRH #MongoDB #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:03:50 +0000", "from_user": "bluedavy", "from_user_id": 15158779, "from_user_id_str": "15158779", "from_user_name": "bluedavy", "geo": null, "id": 147648124234629120, "id_str": "147648124234629120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1399283375/twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1399283375/twitter_normal.png", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "RT @natishalom: #NoSQL Benchmarking http://t.co/yBZqiCsA <- Excellent read #cassandra #mongodb #hbase", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 12:00:49 +0000", "from_user": "epiraces", "from_user_id": 11723252, "from_user_id_str": "11723252", "from_user_name": "epiraces", "geo": null, "id": 147647364373544960, "id_str": "147647364373544961", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/215196191/ScreenShot_7_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/215196191/ScreenShot_7_normal.png", "source": "<a href="http://www.socialflow.com" rel="nofollow">SocialFlow</a>", "text": "I have been working with #Varnish and #Drupal, they are awesome together. Mh, wonder if there is any way to use NoSql? http://t.co/HrBXAzM8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:56:55 +0000", "from_user": "xmlprague", "from_user_id": 15942706, "from_user_id_str": "15942706", "from_user_name": "xmlprague", "geo": null, "id": 147646381698457600, "id_str": "147646381698457600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/76985671/favicon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/76985671/favicon_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @28msec: It's that time of the year... http://t.co/JZKlgcXG #xmlprague #xquery #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:54:16 +0000", "from_user": "pbokelly", "from_user_id": 26058258, "from_user_id_str": "26058258", "from_user_name": "Peter O'Kelly", "geo": null, "id": 147645717249396740, "id_str": "147645717249396736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/349219461/petero_kelly_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/349219461/petero_kelly_pic_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Why Facebook Uses MySQL for Timeline - Yahoo! News [Mashable]: Still waiting to see a NoSQL\\u2026 http://t.co/dLG8iDxQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:50:06 +0000", "from_user": "grtjn", "from_user_id": 197173319, "from_user_id_str": "197173319", "from_user_name": "Geert", "geo": null, "id": 147644667373170700, "id_str": "147644667373170689", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1478737900/IMG_7433___-_Copy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1478737900/IMG_7433___-_Copy_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @28msec: It's that time of the year... http://t.co/JZKlgcXG #xmlprague #xquery #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:48:25 +0000", "from_user": "samuelrettore", "from_user_id": 57025296, "from_user_id_str": "57025296", "from_user_name": "Samuel Rettore", "geo": null, "id": 147644245237440500, "id_str": "147644245237440512", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/314849857/121607144347-00_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/314849857/121607144347-00_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Para quem esta acostumado com \"YesSQL\" mudar para NoSQL da um n\\u00F3 na muringa, mas \\u00E9 bem interessante.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:35:33 +0000", "from_user": "ochoa_marcelo", "from_user_id": 414166840, "from_user_id_str": "414166840", "from_user_name": "Marcelo F. Ochoa", "geo": null, "id": 147641004101615600, "id_str": "147641004101615616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1642383832/profileOchoa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642383832/profileOchoa_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Understanding a Big Data Implementation and its Components\\nhttp://t.co/UkLQMc2Y\\ngreat introductory post on using #Oracle and #NoSQL #in", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:23:48 +0000", "from_user": "dalvac", "from_user_id": 49849549, "from_user_id_str": "49849549", "from_user_name": "Diego Alvarez", "geo": null, "id": 147638050636300300, "id_str": "147638050636300288", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/418532052/diego_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/418532052/diego_normal.JPG", "source": "<a href="http://www.tweets60.com/" rel="nofollow">Tweets60dm</a>", "text": "RT @emguerra: Na verdade leitura obrigat\\u00F3ria para quem quer entender NoSQL! RT @pedrocavalero http://t.co/Ya0cKpnk leitura recomendada!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:22:26 +0000", "from_user": "regbac", "from_user_id": 25979479, "from_user_id_str": "25979479", "from_user_name": "R\\u00E9gis Baccaro", "geo": null, "id": 147637703859638270, "id_str": "147637703859638272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1277986366/n812574173_314152_3729_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1277986366/n812574173_314152_3729_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "SQL or NOSQL that is not the question....rather Not Only SQL. #hadoop #solidq http://t.co/7dhQ8TeI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:18:21 +0000", "from_user": "edouarda14", "from_user_id": 289509414, "from_user_id_str": "289509414", "from_user_name": "Edouard A.", "geo": +{"coordinates": [48.8637,2.35], "type": "Point"}, "id": 147636677890949120, "id_str": "147636677890949121", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1330722921/snake_charmer_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1330722921/snake_charmer_normal.png", "source": "<a href="http://www.twitter.com" rel="nofollow">Twitter for Windows Phone</a>", "text": "1.2 GiB/s that's the speed we achieved with our software. #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:08:31 +0000", "from_user": "adalbertozanata", "from_user_id": 16263932, "from_user_id_str": "16263932", "from_user_name": "Adalberto Zanata", "geo": null, "id": 147634203096383500, "id_str": "147634203096383489", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/278967121/nautilus_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/278967121/nautilus_normal.jpg", "source": "<a href="http://www.tweets60.com/" rel="nofollow">Tweets60dm</a>", "text": "RT @emguerra: Na verdade leitura obrigat\\u00F3ria para quem quer entender NoSQL! RT @pedrocavalero http://t.co/Ya0cKpnk leitura recomendada!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:03:39 +0000", "from_user": "vmische", "from_user_id": 140552229, "from_user_id_str": "140552229", "from_user_name": "Volker Mische", "geo": null, "id": 147632978401574900, "id_str": "147632978401574913", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/886369436/favicon007_73x73_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/886369436/favicon007_73x73_normal.png", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @couchbase: Just a few days til #CouchConf Israel in Tel Aviv! Still some tickets left - get them now while you can! http://t.co/tR4inCwx #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:59:23 +0000", "from_user": "emguerra", "from_user_id": 78590341, "from_user_id_str": "78590341", "from_user_name": "Eduardo Guerra", "geo": null, "id": 147631905062404100, "id_str": "147631905062404096", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1631348739/avatar_2011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631348739/avatar_2011_normal.jpg", "source": "<a href="http://www.tweets60.com/" rel="nofollow">Tweets60dm</a>", "text": "Na verdade leitura obrigat\\u00F3ria para quem quer entender NoSQL! RT @pedrocavalero http://t.co/Ya0cKpnk leitura recomendada!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:58:48 +0000", "from_user": "aravindajad", "from_user_id": 1169681, "from_user_id_str": "1169681", "from_user_name": "Aravind Ajad", "geo": null, "id": 147631757997510660, "id_str": "147631757997510656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1299520026/avatar_normal.JPEG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1299520026/avatar_normal.JPEG", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @natishalom #NoSQL Benchmarking http://t.co/IJJ4sBqj <- Excellent read #cassandra #mongodb #hbase", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:53:28 +0000", "from_user": "InterSystemsRU", "from_user_id": 105082155, "from_user_id_str": "105082155", "from_user_name": "InterSystems Russia", "geo": null, "id": 147630416541646850, "id_str": "147630416541646848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1230719229/isc-avatar-icon_reasonably_small_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1230719229/isc-avatar-icon_reasonably_small_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @InterSystems: Congratulations to @antoshalee, winner of the@InterSystems 2nd Globals Challenge! - http://t.co/aKuMAeiC - #NoSQL #DBMS #Java #Node.js", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:16:35 +0000", "from_user": "D0uDa", "from_user_id": 92761519, "from_user_id_str": "92761519", "from_user_name": "D0uDa", "geo": null, "id": 147621133468962800, "id_str": "147621133468962816", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/544965367/twitter_bird_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/544965367/twitter_bird_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ZenikaIT: Tout sur les nouveaut\\u00E9s de #grails 2.0 par @mboillod + retour experience : http://t.co/CKukr6dd @ZenikaIT #BlogZenika #nosql #plugin #spring", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:12:10 +0000", "from_user": "jorgeakanieves", "from_user_id": 15956209, "from_user_id_str": "15956209", "from_user_name": "jorgeakanieves", "geo": null, "id": 147620019944169470, "id_str": "147620019944169472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1241403473/27484_795446987_6836_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1241403473/27484_795446987_6836_q_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "another nosql solution: http://t.co/XlLZaRVq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:10:08 +0000", "from_user": "marcos_quesada", "from_user_id": 18081176, "from_user_id_str": "18081176", "from_user_name": "marcos.quesada", "geo": null, "id": 147619509065363460, "id_str": "147619509065363456", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1660518625/foto_perfil_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660518625/foto_perfil_2_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Redis, base de datos NoSQL clave-valor http://t.co/jeehNGHh v\\u00EDa @slideshare", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:01:27 +0000", "from_user": "TopDevTweets", "from_user_id": 194520782, "from_user_id_str": "194520782", "from_user_name": "TopDevTweets", "geo": null, "id": 147617325183541250, "id_str": "147617325183541248", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @emiliotorrens: Nueva version de #MongoMapper para #dotNET, he cambiado el tipo del _id de los documentos de Guid a int http://t.co/fm6UwRR4 #MongoDB #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:57:21 +0000", "from_user": "emiliotorrens", "from_user_id": 21764595, "from_user_id_str": "21764595", "from_user_name": "Emilio Torrens", "geo": null, "id": 147616294789849100, "id_str": "147616294789849088", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1628882941/PerfilTwitter_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628882941/PerfilTwitter_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Nueva version de #MongoMapper para #dotNET, he cambiado el tipo del _id de los documentos de Guid a int http://t.co/fm6UwRR4 #MongoDB #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:56:22 +0000", "from_user": "ShaggyBurton", "from_user_id": 302119425, "from_user_id_str": "302119425", "from_user_name": "Ivan Rubio Heras", "geo": null, "id": 147616045153263600, "id_str": "147616045153263616", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1362276140/174485_1203818896_3984809_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1362276140/174485_1203818896_3984809_q_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Testeando MongoDB una alternativa NoSQL interesante", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:50:22 +0000", "from_user": "BuildaCloud", "from_user_id": 388756611, "from_user_id_str": "388756611", "from_user_name": "BuildaCloud", "geo": null, "id": 147614536831217660, "id_str": "147614536831217664", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1611146315/Fotolia_17583250_S_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611146315/Fotolia_17583250_S_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "NoSQL: Apache Cassandra 101 http://t.co/hBiCHoAy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:48:25 +0000", "from_user": "julienvey", "from_user_id": 44668175, "from_user_id_str": "44668175", "from_user_name": "Julien Vey", "geo": null, "id": 147614045015515140, "id_str": "147614045015515136", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1491457013/moi_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1491457013/moi_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ZenikaIT: Tout sur les nouveaut\\u00E9s de #grails 2.0 par @mboillod + retour experience : http://t.co/CKukr6dd @ZenikaIT #BlogZenika #nosql #plugin #spring", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:45:07 +0000", "from_user": "MySQLBot_en", "from_user_id": 305160384, "from_user_id_str": "305160384", "from_user_name": "MySQLBot_en", "geo": null, "id": 147613212773330940, "id_str": "147613212773330944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1368954854/mysql_100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1368954854/mysql_100_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @jameslafa: #Facebook Uses #MySQL for Timeline because #noSQL was not appropriate for this data organization http://t.co/F2O1KD6l", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:44:02 +0000", "from_user": "wcandillon", "from_user_id": 14435226, "from_user_id_str": "14435226", "from_user_name": "wcandillon", "geo": null, "id": 147612942072946700, "id_str": "147612942072946688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/387152395/wcandillon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/387152395/wcandillon_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @28msec: It's that time of the year... http://t.co/qpVgXTjk #xmlprague #xquery #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:31:02 +0000", "from_user": "jameslafa", "from_user_id": 13583972, "from_user_id_str": "13583972", "from_user_name": "James Lafa", "geo": null, "id": 147609671027539970, "id_str": "147609671027539970", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1226144765/25649_1265842008603_1306364364_30620112_6436040_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1226144765/25649_1265842008603_1306364364_30620112_6436040_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "#Facebook Uses #MySQL for Timeline because #noSQL was not appropriate for this data organization http://t.co/F2O1KD6l", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:26:44 +0000", "from_user": "benorama", "from_user_id": 10273742, "from_user_id_str": "10273742", "from_user_name": "Benoit HEDIARD", "geo": null, "id": 147608589752746000, "id_str": "147608589752745984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/150150267/P1000467_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/150150267/P1000467_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "RT @natishalom: #NoSQL Benchmarking http://t.co/yBZqiCsA <- Excellent read #cassandra #mongodb #hbase", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:23:50 +0000", "from_user": "28msec", "from_user_id": 83566648, "from_user_id_str": "83566648", "from_user_name": "28msec Inc.", "geo": null, "id": 147607858840735740, "id_str": "147607858840735744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/632776423/twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/632776423/twitter_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "It's that time of the year... http://t.co/JZKlgcXG #xmlprague #xquery #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:22:38 +0000", "from_user": "AnnaSabryan", "from_user_id": 191349533, "from_user_id_str": "191349533", "from_user_name": "Anna", "geo": null, "id": 147607557937176580, "id_str": "147607557937176577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1363195298/Annn44_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1363195298/Annn44_normal.jpg", "source": "<a href="http://friendfeed.com" rel="nofollow">FriendFeed</a>", "text": "Apache Cassandra 101 http://t.co/WVCj0ziI via @AddThis http://t.co/EqoPRLJW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:22:37 +0000", "from_user": "AnnaSabryan", "from_user_id": 191349533, "from_user_id_str": "191349533", "from_user_name": "Anna", "geo": null, "id": 147607551444385800, "id_str": "147607551444385792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1363195298/Annn44_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1363195298/Annn44_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Apache Cassandra 101 http://t.co/WVCj0ziI via @AddThis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:22:35 +0000", "from_user": "natishalom", "from_user_id": 15245950, "from_user_id_str": "15245950", "from_user_name": "natishalom", "geo": null, "id": 147607541696839680, "id_str": "147607541696839680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/87048919/nati.IMG_2415_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/87048919/nati.IMG_2415_normal.JPG", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "#NoSQL Benchmarking http://t.co/yBZqiCsA <- Excellent read #cassandra #mongodb #hbase", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:22:19 +0000", "from_user": "djacques3", "from_user_id": 228313223, "from_user_id_str": "228313223", "from_user_name": "djacques3", "geo": null, "id": 147607477666594800, "id_str": "147607477666594816", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ZenikaIT: Tout sur les nouveaut\\u00E9s de #grails 2.0 par @mboillod + retour experience : http://t.co/CKukr6dd @ZenikaIT #BlogZenika #nosql #plugin #spring", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:19:12 +0000", "from_user": "olivierflebus", "from_user_id": 242669696, "from_user_id_str": "242669696", "from_user_name": "Olivier FLEBUS", "geo": null, "id": 147606692010524670, "id_str": "147606692010524672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1225516106/carre_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225516106/carre_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@LuxNoSQL @manumarchal the \"Cassandra\" you use is not only the NoSQL Solution ! Try with \"Apache Cassandra\" http://t.co/KKKeRBgR Hadoop 1st", "to_user": "LuxNoSQL", "to_user_id": 19330336, "to_user_id_str": "19330336", "to_user_name": "Nestor", "in_reply_to_status_id": 147577688230596600, "in_reply_to_status_id_str": "147577688230596608"}, +{"created_at": "Fri, 16 Dec 2011 09:15:49 +0000", "from_user": "OliviaHalimi", "from_user_id": 203174961, "from_user_id_str": "203174961", "from_user_name": "Olivia Halimi", "geo": null, "id": 147605841405677570, "id_str": "147605841405677568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1436689630/Photo_du_41080214-06-_a__11.24_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1436689630/Photo_du_41080214-06-_a__11.24_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rgaidot: wakanda public beta is now available! http://t.co/GI8tETeb good job @wakanda teams, Laurent R. & Luc H. /cc @abenkira #ssjs #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:14:22 +0000", "from_user": "benjaminhoudu", "from_user_id": 6829652, "from_user_id_str": "6829652", "from_user_name": "Benjamin Houdu", "geo": null, "id": 147605474995486720, "id_str": "147605474995486721", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1348449586/zen-kanji_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1348449586/zen-kanji_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ZenikaIT: Tout sur les nouveaut\\u00E9s de #grails 2.0 par @mboillod + retour experience : http://t.co/CKukr6dd @ZenikaIT #BlogZenika #nosql #plugin #spring", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:13:27 +0000", "from_user": "wakandasoft", "from_user_id": 66729934, "from_user_id_str": "66729934", "from_user_name": "Wakanda", "geo": null, "id": 147605245399269380, "id_str": "147605245399269376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1410804256/wakanda-avatar-72px_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1410804256/wakanda-avatar-72px_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rgaidot: wakanda public beta is now available! http://t.co/GI8tETeb good job @wakanda teams, Laurent R. & Luc H. /cc @abenkira #ssjs #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:11:23 +0000", "from_user": "svizec", "from_user_id": 14541647, "from_user_id_str": "14541647", "from_user_name": "Nejc Kostanj\\u0161ek", "geo": null, "id": 147604723745308670, "id_str": "147604723745308672", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1512630525/tw_12120621_1314269489_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1512630525/tw_12120621_1314269489_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@andraz Zdravo! Imam eno pro\\u0161njo - bi se dalo dobit \"slajde\" iz predavanja NoSQL na wwwh?", "to_user": "andraz", "to_user_id": 14250157, "to_user_id_str": "14250157", "to_user_name": "Andraz Tori"}, +{"created_at": "Fri, 16 Dec 2011 08:57:50 +0000", "from_user": "ZenikaIT", "from_user_id": 77093727, "from_user_id_str": "77093727", "from_user_name": "Zenika", "geo": null, "id": 147601314740830200, "id_str": "147601314740830208", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/434625740/logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/434625740/logo_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Tout sur les nouveaut\\u00E9s de #grails 2.0 par @mboillod + retour experience : http://t.co/CKukr6dd @ZenikaIT #BlogZenika #nosql #plugin #spring", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:49:31 +0000", "from_user": "antonkirillov", "from_user_id": 42834244, "from_user_id_str": "42834244", "from_user_name": "Anton Kirillov", "geo": null, "id": 147599224161312770, "id_str": "147599224161312768", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1544355479/IMG_20110701_143534_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544355479/IMG_20110701_143534_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Graph-based NoSQL \\u0432\\u043E\\u043E\\u0431\\u0449\\u0435 \\u043E\\u0442\\u043B\\u0438\\u0447\\u043D\\u0430\\u044F \\u0448\\u0442\\u0443\\u043A\\u0430 \\u0441 \\u0442\\u043E\\u0447\\u043A\\u0438 \\u0437\\u0440\\u0435\\u043D\\u0438\\u044F \\u043C\\u043E\\u0434\\u0435\\u043B\\u0438 \\u0434\\u0430\\u043D\\u043D\\u044B\\u0445. \\u041D\\u043E \\u0437\\u0430\\u0432\\u0438\\u0441\\u0438\\u0442 \\u043E\\u0442 \\u0437\\u0430\\u0434\\u0430\\u0447. \\u0414\\u043B\\u044F \\u0440\\u0430\\u0437\\u043B\\u0438\\u0447\\u043D\\u044B\\u0445 \\u0441\\u043E\\u0446\\u0438\\u0430\\u043B\\u043E\\u043A \\u0431\\u043E\\u043B\\u0435\\u0435 \\u0447\\u0435\\u043C \\u0443\\u0434\\u043E\\u0431\\u043D\\u043E.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:43:41 +0000", "from_user": "aleqs1", "from_user_id": 185207804, "from_user_id_str": "185207804", "from_user_name": "Aleksi K.", "geo": null, "id": 147597756150710270, "id_str": "147597756150710272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1269768440/Kolehmainen-Aleksi-1_83556d_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1269768440/Kolehmainen-Aleksi-1_83556d_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "InfoQ: James Phillips on Moving from Relational to NoSQL Databases: http://t.co/NftiDOVy via @AddThis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:38:33 +0000", "from_user": "jordimanuel", "from_user_id": 118495045, "from_user_id_str": "118495045", "from_user_name": "Jordi Manuel", "geo": null, "id": 147596461725589500, "id_str": "147596461725589504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1636930597/Foto_12_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1636930597/Foto_12_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @yapsee: Yapsee's #hiring a skilled and ambitious #developer. #HTML5 #CSS3 #Javascript #PHP #Python #Ruby #NoSQL #Startup #Jobs #hire #entrepreneur", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:34:19 +0000", "from_user": "b162love", "from_user_id": 158365227, "from_user_id_str": "158365227", "from_user_name": "HyunHo Lee", "geo": null, "id": 147595395835506700, "id_str": "147595395835506688", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "Zite Personalized Magazine", "text": "RT @zenithon: Cassandra, HBase, MongoDB \\uC7A5\\uC560 \\uB300\\uC751 \\uBA54\\uCEE4\\uB2C8\\uC998 http://t.co/ezjisNhP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:34:10 +0000", "from_user": "b162love", "from_user_id": 158365227, "from_user_id_str": "158365227", "from_user_name": "HyunHo Lee", "geo": null, "id": 147595359416365060, "id_str": "147595359416365056", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "Zite Personalized Magazine", "text": "RT @zenithon: 2012\\uB144 Cloud, BigData \\uAE30\\uC220 \\uC804\\uB9DD http://t.co/3W7DY8UA \\uC62C\\uD574\\uC5D0 \\uC774\\uC5B4 \\uB0B4\\uB144\\uC5D0\\uB3C4 BigData App. Platform\\uC758 \\uD544\\uC694\\uC131\\uC744 \\uC8FC\\uC7A5\\uD558\\uB294\\uAD70\\uC694", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:33:45 +0000", "from_user": "Monitis", "from_user_id": 17421289, "from_user_id_str": "17421289", "from_user_name": "monitis", "geo": null, "id": 147595252981698560, "id_str": "147595252981698561", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1491389208/Monitis-icon-72x72_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1491389208/Monitis-icon-72x72_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NoSQL: Apache Cassandra 101 http://t.co/ZFnLHAaA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:33:12 +0000", "from_user": "Driadan", "from_user_id": 69888556, "from_user_id_str": "69888556", "from_user_name": "Guillermo Vay\\u00E1", "geo": null, "id": 147595114716467200, "id_str": "147595114716467200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/387935026/bomb_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/387935026/bomb_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@LuxNoSQL cassandra is also a person's name, so it explains the big gap, try adding nosql or database to the search terms", "to_user": "LuxNoSQL", "to_user_id": 19330336, "to_user_id_str": "19330336", "to_user_name": "Nestor", "in_reply_to_status_id": 147577688230596600, "in_reply_to_status_id_str": "147577688230596608"}, +{"created_at": "Fri, 16 Dec 2011 08:30:03 +0000", "from_user": "EmploiHandicap", "from_user_id": 80315443, "from_user_id_str": "80315443", "from_user_name": "Emploi Handicap", "geo": null, "id": 147594323083530240, "id_str": "147594323083530240", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/457698992/missionhandicap_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/457698992/missionhandicap_avatar_normal.png", "source": "<a href="http://www.missionhandicap.com" rel="nofollow">Emploi Handicap</a>", "text": "#EMPLOI Stage Ing\\u00E9nieur- Big Data & NoSQL H/F http://t.co/azdoiT5e", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:20:00 +0000", "from_user": "couchbase", "from_user_id": 237401623, "from_user_id_str": "237401623", "from_user_name": "Couchbase", "geo": null, "id": 147591793934999550, "id_str": "147591793934999552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1335620360/couchbase_couch_red_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335620360/couchbase_couch_red_twitter_normal.png", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "Just a few days til #CouchConf Israel in Tel Aviv! Still some tickets left - get them now while you can! http://t.co/tR4inCwx #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:18:48 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 147591491844448260, "id_str": "147591491844448257", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "\\u267B Standalone Heroku Postgres' Unanswered Question http://t.co/VdrPL3u8 #PostgreSQL #Heroku #Data-as-a-Service #DaaS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:06:56 +0000", "from_user": "snowmeup", "from_user_id": 282536578, "from_user_id_str": "282536578", "from_user_name": "World Conqueror ", "geo": null, "id": 147588506657624060, "id_str": "147588506657624064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1526815171/BattleofIssus333BC-mosaic-detail1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1526815171/BattleofIssus333BC-mosaic-detail1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "View video and learn how #Oracle #NoSQL Database can help you meet your #BigData challenges: http://t.co/ejrQKuAK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:03:50 +0000", "from_user": "mikepluta", "from_user_id": 15150700, "from_user_id_str": "15150700", "from_user_name": "Mike Pluta", "geo": null, "id": 147587724298305540, "id_str": "147587724298305536", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1584807716/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584807716/image_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: 8 Most Interesting Companies for Hadoop's Future http://t.co/DGjsMLzh #Hadoop #Cloudera #Hortonworks #MapR #Hadapt #HPCC #DataStax #Zettaset", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:01:30 +0000", "from_user": "krismeukens", "from_user_id": 19177874, "from_user_id_str": "19177874", "from_user_name": "Kris Meukens", "geo": null, "id": 147587138119139330, "id_str": "147587138119139328", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1438654836/Kris_Meukens__2011.07.12_b_w_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1438654836/Kris_Meukens__2011.07.12_b_w_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @itworks: Big Data in 2012: Five Predictions - Forbes http://t.co/XLkS3IHz #bigdata #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:00:09 +0000", "from_user": "lastknight", "from_user_id": 5464132, "from_user_id_str": "5464132", "from_user_name": "Matteo G.P. Flora", "geo": null, "id": 147586796878954500, "id_str": "147586796878954496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1255914387/70448_502992052_537370_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1255914387/70448_502992052_537370_q_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "Centralized Logging With Amazon SimpleDB, Slf4j, and Logback http://t.co/40sVaztD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:45:01 +0000", "from_user": "IAmOnDemand", "from_user_id": 33486430, "from_user_id_str": "33486430", "from_user_name": "I Am OnDemand", "geo": null, "id": 147582988308316160, "id_str": "147582988308316160", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1465370566/IMG_4281__2___604x800__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1465370566/IMG_4281__2___604x800__normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: 8 Most Interesting Companies for Hadoop's Future http://t.co/DGjsMLzh #Hadoop #Cloudera #Hortonworks #MapR #Hadapt #HPCC #DataStax #Zettaset", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:30:04 +0000", "from_user": "MySQLBot_en", "from_user_id": 305160384, "from_user_id_str": "305160384", "from_user_name": "MySQLBot_en", "geo": null, "id": 147579227221401600, "id_str": "147579227221401600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1368954854/mysql_100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1368954854/mysql_100_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @somkiat: Product Roadmap of MySQL - RDBMS and NoSQL, And Beyond #mysql http://t.co/WmY5tomF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:28:44 +0000", "from_user": "techielicous", "from_user_id": 240306053, "from_user_id_str": "240306053", "from_user_name": "Josette Rigsby", "geo": null, "id": 147578894273359870, "id_str": "147578894273359872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1250483015/Josette_character_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1250483015/Josette_character_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Facebook Pulls Back Curtain on 'Timeline' - Wired News http://t.co/9UeYltQM #nosql #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:27:14 +0000", "from_user": "somkiat", "from_user_id": 14053735, "from_user_id_str": "14053735", "from_user_name": "UP1", "geo": null, "id": 147578515661922300, "id_str": "147578515661922304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/925551910/4db95ccd-33db-4d03-be01-292013d5abdb_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/925551910/4db95ccd-33db-4d03-be01-292013d5abdb_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Product Roadmap of MySQL - RDBMS and NoSQL, And Beyond #mysql http://t.co/WmY5tomF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:23:57 +0000", "from_user": "LuxNoSQL", "from_user_id": 19330336, "from_user_id_str": "19330336", "from_user_name": "Nestor", "geo": null, "id": 147577688230596600, "id_str": "147577688230596608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1123187681/logo_original4_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1123187681/logo_original4_normal.PNG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Google Insights: Cassandra as the leading NoSQL solution\\n\\nhttp://t.co/Jiew4xbd\\n\\n#nosql #google #cassandra #couchdb #mongodb #redis #hadoop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:17:39 +0000", "from_user": "trait_", "from_user_id": 418703316, "from_user_id_str": "418703316", "from_user_name": "trait", "geo": null, "id": 147576105027633150, "id_str": "147576105027633152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1652074133/trait_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652074133/trait_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "759 likes: Visual Guide to NoSQL Systems - Nathan Hurst's Blog: Visual Guide to NoSQL Systems\\u2026 http://t.co/9fqRJUjR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:15:08 +0000", "from_user": "Handi_IT", "from_user_id": 199710837, "from_user_id_str": "199710837", "from_user_name": "Handi-it", "geo": null, "id": 147575469682860030, "id_str": "147575469682860032", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1194866630/handi-it_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1194866630/handi-it_normal.png", "source": "<a href="http://www.handi-it.fr" rel="nofollow">Handi-IT</a>", "text": "#EMPLOI Stage Ing\\u00E9nieur- Big Data & NoSQL H/F http://t.co/fNro25UN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:04:16 +0000", "from_user": "ibrahim_bilgen", "from_user_id": 354264631, "from_user_id_str": "354264631", "from_user_name": "ibrahim bilgen", "geo": null, "id": 147572733461532670, "id_str": "147572733461532672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1645697242/2011-11-18_137_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645697242/2011-11-18_137_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "RT @MySQL: Live webinar in #APAC time zone next Thur: Product Roadmap of #MySQL - RDBMS and #NoSQL, And Beyond: http://t.co/Pr2Sr8aC pls retweet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:02:13 +0000", "from_user": "premsankar", "from_user_id": 9520862, "from_user_id_str": "9520862", "from_user_name": "Prem Sankar G", "geo": null, "id": 147572219860615170, "id_str": "147572219860615168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1246260239/prem3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1246260239/prem3_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "MongoDB Monitoring Service (MMS) - http://t.co/hcaxtgFV - tool to manage MongoDB apps #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:00:10 +0000", "from_user": "premsankar", "from_user_id": 9520862, "from_user_id_str": "9520862", "from_user_name": "Prem Sankar G", "geo": null, "id": 147571701801168900, "id_str": "147571701801168897", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1246260239/prem3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1246260239/prem3_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "List All of the Riak Keys http://t.co/wmfQCC1V #RIAK #Nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 06:40:00 +0000", "from_user": "Analton", "from_user_id": 2043051, "from_user_id_str": "2043051", "from_user_name": "Lord Analton Morion", "geo": null, "id": 147566629146984450, "id_str": "147566629146984448", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1511003495/294011_207767525943478_100001306958849_528790_125462_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1511003495/294011_207767525943478_100001306958849_528790_125462_n_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @natiblues: The Hard Life Of A NoSQL Coder http://t.co/eg2hksoY | Jajajajajajajajajajajajaja @focojoaco", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 06:39:01 +0000", "from_user": "natiblues", "from_user_id": 90462463, "from_user_id_str": "90462463", "from_user_name": "Nat Nat", "geo": null, "id": 147566382849073150, "id_str": "147566382849073153", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1679274436/leia3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679274436/leia3_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "The Hard Life Of A NoSQL Coder http://t.co/eg2hksoY | Jajajajajajajajajajajajaja @focojoaco", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 06:18:26 +0000", "from_user": "spicermatthews", "from_user_id": 21408687, "from_user_id_str": "21408687", "from_user_name": "Spicer Matthews", "geo": null, "id": 147561202728448000, "id_str": "147561202728448000", "iso_language_code": "eo", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1392017853/2011-02-26_14-49-35_515_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1392017853/2011-02-26_14-49-35_515_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Super funny!!! http://t.co/iueazQG8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 05:33:34 +0000", "from_user": "VForciniti", "from_user_id": 432885580, "from_user_id_str": "432885580", "from_user_name": "Vincenzo Forciniti", "geo": null, "id": 147549908256301060, "id_str": "147549908256301057", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1683922093/230708_2011156322427_1349318836_2420460_7595340_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683922093/230708_2011156322427_1349318836_2420460_7595340_n_normal.jpg", "source": "<a href="http://spredfast.com" rel="nofollow">Spredfast</a>", "text": "RT @Oracle: View video and learn how #Oracle #NoSQL Database can help you meet your #BigData challenges: http://t.co/ikumWT0g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 04:59:41 +0000", "from_user": "aabramkin", "from_user_id": 161584131, "from_user_id_str": "161584131", "from_user_name": "Alexei Abramkin", "geo": null, "id": 147541381966082050, "id_str": "147541381966082048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1042194880/sonic2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1042194880/sonic2_normal.JPG", "source": "<a href="http://spredfast.com" rel="nofollow">Spredfast</a>", "text": "RT @Oracle: View video and learn how #Oracle #NoSQL Database can help you meet your #BigData challenges: http://t.co/ikumWT0g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 04:55:13 +0000", "from_user": "JeongSoh", "from_user_id": 336436412, "from_user_id_str": "336436412", "from_user_name": "Soh, Jeong Ryong", "geo": null, "id": 147540259264151550, "id_str": "147540259264151552", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1643604257/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643604257/image_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: 8 Most Interesting Companies for Hadoop's Future http://t.co/DGjsMLzh #Hadoop #Cloudera #Hortonworks #MapR #Hadapt #HPCC #DataStax #Zettaset", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 04:33:00 +0000", "from_user": "isllei", "from_user_id": 90402485, "from_user_id_str": "90402485", "from_user_name": "liulei", "geo": null, "id": 147534666621124600, "id_str": "147534666621124609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1109893120/1c34a2954a570fe94684ff3682cb5c36_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1109893120/1c34a2954a570fe94684ff3682cb5c36_normal.png", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: \\u267B MySQL Cluster Used to Implement a Highly Available and Scalable Hadoop NodeName http://t.co/jd3lo3Dh #MySQLCluster #Hadoop #HDFS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 04:05:59 +0000", "from_user": "jug_c", "from_user_id": 196268474, "from_user_id_str": "196268474", "from_user_name": "JavaUserGroupChennai", "geo": null, "id": 147527867234926600, "id_str": "147527867234926592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1201287899/169627704_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1201287899/169627704_normal.png", "source": "<a href="http://spredfast.com" rel="nofollow">Spredfast</a>", "text": "RT @Oracle: View video and learn how #Oracle #NoSQL Database can help you meet your #BigData challenges: http://t.co/ikumWT0g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 04:00:18 +0000", "from_user": "patrickDurusau", "from_user_id": 152194866, "from_user_id_str": "152194866", "from_user_name": "Patrick Durusau", "geo": null, "id": 147526436436189200, "id_str": "147526436436189186", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/961579480/patrick_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/961579480/patrick_normal.jpeg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Raven DB - Stable Build - 573 #topicmaps #RavenDB #NoSQL #Windows #.Net - http://t.co/Tb8IKQP7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 03:34:44 +0000", "from_user": "kaiba", "from_user_id": 5580052, "from_user_id_str": "5580052", "from_user_name": "kaiba", "geo": null, "id": 147520004034793470, "id_str": "147520004034793473", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670953332/pureri_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670953332/pureri_normal.png", "source": "<a href="http://twipple.jp/" rel="nofollow">\\u3064\\u3044\\u3063\\u3077\\u308B/twipple</a>", "text": "\\u51AC\\u4F11\\u307F\\u306E\\u5BBF\\u984C : iPhone\\u30A2\\u30D7\\u30EA(\\u81EA\\u7531\\u7814\\u7A76), DI(\\u6570\\u5B66), symfony(\\u5BB6\\u5EAD\\u79D1), Clojure(\\u82F1\\u8A9E), Effective Java(\\u8AAD\\u66F8), HTML5(\\u56FD\\u8A9E), CSS3(\\u7F8E\\u8853), Phonegap(\\u7406\\u79D1), git(\\u793E\\u4F1A\\u5316), NoSQL(\\u4FDD\\u5065\\u4F53\\u80B2)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 03:30:05 +0000", "from_user": "MySQLBot_en", "from_user_id": 305160384, "from_user_id_str": "305160384", "from_user_name": "MySQLBot_en", "geo": null, "id": 147518834243403780, "id_str": "147518834243403777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1368954854/mysql_100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1368954854/mysql_100_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @PanosSer: Why Facebook Uses #MySQL for Timeline http://t.co/LAg9o8T1 #uncategorized #facebooktimeline #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 03:25:54 +0000", "from_user": "PanosSer", "from_user_id": 134741365, "from_user_id_str": "134741365", "from_user_name": "Panos", "geo": null, "id": 147517779635994620, "id_str": "147517779635994624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/995831209/icon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/995831209/icon_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Why Facebook Uses #MySQL for Timeline http://t.co/LAg9o8T1 #uncategorized #facebooktimeline #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 02:51:38 +0000", "from_user": "marcosluis2186", "from_user_id": 71701378, "from_user_id_str": "71701378", "from_user_name": "Marcos Ortiz ", "geo": null, "id": 147509158214766600, "id_str": "147509158214766592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1215605067/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1215605067/avatar_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Welcome to issue 55 of NoSQL Weekly http://t.co/xSwUoyyj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 02:44:48 +0000", "from_user": "matematicki", "from_user_id": 214891198, "from_user_id_str": "214891198", "from_user_name": "Matemati\\u010Dki fakultet", "geo": null, "id": 147507437157621760, "id_str": "147507437157621760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1166125043/matf-logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1166125043/matf-logo_normal.png", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "RT @MySQL: Live webinar in #APAC time zone next Thur: Product Roadmap of #MySQL - RDBMS and #NoSQL, And Beyond: http://t.co/Pr2Sr8aC pls retweet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 02:44:47 +0000", "from_user": "openstackcisco", "from_user_id": 384864243, "from_user_id_str": "384864243", "from_user_name": "Murali Raju", "geo": null, "id": 147507432040562700, "id_str": "147507432040562688", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: 8 Most Interesting Companies for Hadoop's Future http://t.co/DGjsMLzh #Hadoop #Cloudera #Hortonworks #MapR #Hadapt #HPCC #DataStax #Zettaset", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 02:31:03 +0000", "from_user": "shurupov", "from_user_id": 68659476, "from_user_id_str": "68659476", "from_user_name": "Dmitry Shurupov", "geo": null, "id": 147503979801223170, "id_str": "147503979801223168", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1543786967/20110618_iseegod_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543786967/20110618_iseegod_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@victordottir: nosql! :)", "to_user": "victordottir", "to_user_id": 85860937, "to_user_id_str": "85860937", "to_user_name": "Anna Shlyaeva", "in_reply_to_status_id": 147496002549587970, "in_reply_to_status_id_str": "147496002549587968"}, +{"created_at": "Fri, 16 Dec 2011 02:18:36 +0000", "from_user": "Anniceyli", "from_user_id": 431709244, "from_user_id_str": "431709244", "from_user_name": "Annice Treacy", "geo": null, "id": 147500845859209200, "id_str": "147500845859209216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681049886/aqgvsx454u_132334620-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681049886/aqgvsx454u_132334620-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Definitive Guide to MongoDB: The NoSQL Database for Cloud and Desktop Computing: MongoDB, a cross-platform N... http://t.co/BSjOJ8vu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 02:05:37 +0000", "from_user": "searless", "from_user_id": 197567981, "from_user_id_str": "197567981", "from_user_name": "Searle Oliveira", "geo": null, "id": 147497577397485570, "id_str": "147497577397485568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1694594917/370723_100003069040094_1724844995_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694594917/370723_100003069040094_1724844995_n_normal.jpg", "source": "<a href="http://spredfast.com" rel="nofollow">Spredfast</a>", "text": "RT @Oracle: View video and learn how #Oracle #NoSQL Database can help you meet your #BigData challenges: http://t.co/ikumWT0g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 02:04:56 +0000", "from_user": "maiko_rocha", "from_user_id": 28005487, "from_user_id_str": "28005487", "from_user_name": "Maiko Rocha", "geo": null, "id": 147497407054225400, "id_str": "147497407054225408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1180840211/f4a6b689-792f-4628-bd56-e72e9a586e15_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1180840211/f4a6b689-792f-4628-bd56-e72e9a586e15_normal.png", "source": "<a href="http://spredfast.com" rel="nofollow">Spredfast</a>", "text": "RT @Oracle: View video and learn how #Oracle #NoSQL Database can help you meet your #BigData challenges: http://t.co/ikumWT0g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:41:29 +0000", "from_user": "OsamaOracle", "from_user_id": 50257111, "from_user_id_str": "50257111", "from_user_name": "Osama Mustafa ", "geo": null, "id": 147491502703116300, "id_str": "147491502703116288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1526656933/P1207_10-03-11_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1526656933/P1207_10-03-11_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "View video and learn how #Oracle #NoSQL Database can help you meet your #BigData challenges: http://t.co/ucrRg7nr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:26:30 +0000", "from_user": "eddyleesinti", "from_user_id": 41144544, "from_user_id_str": "41144544", "from_user_name": "Eddy Lee", "geo": null, "id": 147487731998666750, "id_str": "147487731998666752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://spredfast.com" rel="nofollow">Spredfast</a>", "text": "RT @Oracle: View video and learn how #Oracle #NoSQL Database can help you meet your #BigData challenges: http://t.co/ikumWT0g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:23:04 +0000", "from_user": "heimusu", "from_user_id": 27903113, "from_user_id_str": "27903113", "from_user_name": "\\u308A\\u3063\\u3061\\u3083\\u3093\\u306B\\u9B45\\u5165\\u3089\\u308C\\u3057\\u8005", "geo": null, "id": 147486870618640400, "id_str": "147486870618640384", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1592851508/DSC01535_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592851508/DSC01535_normal.jpg", "source": "<a href="http://www.tweenapp.org/" rel="nofollow">Tween</a>", "text": "NoSQL\\u3068\\u306F", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:22:37 +0000", "from_user": "Lauren_Chang", "from_user_id": 54705325, "from_user_id_str": "54705325", "from_user_name": "Kyung-Ah Chang", "geo": null, "id": 147486758236471300, "id_str": "147486758236471298", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1142958569/chihochiahn-twt_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1142958569/chihochiahn-twt_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "RT @xguru: 2012 \\uD074\\uB77C\\uC6B0\\uB4DC,PaaS,NoSQL \\uC608\\uC0C1 http://t.co/8C9E6u0D \\uD074\\uB77C\\uC6B0\\uB4DC\\uB294 \\uC0AC\\uC6A9\\uC790\\uC5D0\\uAC8C iCloud/Dropbox\\uCC98\\uB7FC \\uC548\\uBCF4\\uC774\\uAC8C \\uB2E4\\uAC00\\uC624\\uACE0, \\uBAA8\\uBC14\\uC77C \\uAE30\\uAE30 \\uACE0\\uB3C4\\uD654\\uB97C \\uC704\\uD574 \\uD074\\uB77C\\uC6B0\\uB4DC\\uB97C \\uBC31\\uC5D4\\uB4DC\\uB85C \\uC0AC\\uC6A9\\uD558\\uB294 \\uBAA8\\uC2B5\\uC774 \\uB9CE\\uC544\\uC9C8\\uAC83", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:20:30 +0000", "from_user": "Arraisjr", "from_user_id": 56746526, "from_user_id_str": "56746526", "from_user_name": "Francisco Arrais", "geo": null, "id": 147486224234455040, "id_str": "147486224234455040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1215024451/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1215024451/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@Oracle: View video and learn how #Oracle #NoSQL Database can help you meet your #BigData challenges: http://t.co/Hlvoh4Nc\\u201D @rlljorge", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:16:52 +0000", "from_user": "joshprismon", "from_user_id": 45583998, "from_user_id_str": "45583998", "from_user_name": "Joshua Prismon", "geo": null, "id": 147485308399783940, "id_str": "147485308399783936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1285979072/IMG_0271_face1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1285979072/IMG_0271_face1_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "EMC Greenplum Database and Hadoop Distribution Puts a Social Spin on Big Data http://t.co/ygKlqY94", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Fri, 16 Dec 2011 01:16:29 +0000", "from_user": "MagnetoLab", "from_user_id": 364193634, "from_user_id_str": "364193634", "from_user_name": "kiwavi", "geo": null, "id": 147485212367007740, "id_str": "147485212367007744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1605446309/my_picture1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1605446309/my_picture1_normal.jpg", "source": "<a href="http://spredfast.com" rel="nofollow">Spredfast</a>", "text": "RT @Oracle: View video and learn how #Oracle #NoSQL Database can help you meet your #BigData challenges: http://t.co/ikumWT0g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:15:08 +0000", "from_user": "Oracle", "from_user_id": 809273, "from_user_id_str": "809273", "from_user_name": "Oracle", "geo": null, "id": 147484871667892220, "id_str": "147484871667892224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/251235104/twitterlogo_v1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/251235104/twitterlogo_v1_normal.png", "source": "<a href="http://spredfast.com" rel="nofollow">Spredfast</a>", "text": "View video and learn how #Oracle #NoSQL Database can help you meet your #BigData challenges: http://t.co/ikumWT0g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:06:28 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 147482692915695600, "id_str": "147482692915695619", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "\\u267B MySQL Cluster Used to Implement a Highly Available and Scalable Hadoop NodeName http://t.co/jd3lo3Dh #MySQLCluster #Hadoop #HDFS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:03:04 +0000", "from_user": "mattnowina", "from_user_id": 103869545, "from_user_id_str": "103869545", "from_user_name": "Matt Nowina", "geo": null, "id": 147481834928873470, "id_str": "147481834928873472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1310193735/eightbit-9aa6f9af-a52d-4215-97f5-8ae5720906f1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1310193735/eightbit-9aa6f9af-a52d-4215-97f5-8ae5720906f1_normal.png", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "8 Most Interesting Companies for Hadoop's Future http://t.co/V3bH2GZg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:48:56 +0000", "from_user": "sfsalesjobs", "from_user_id": 322856213, "from_user_id_str": "322856213", "from_user_name": "SF Sales Jobs", "geo": null, "id": 147478277550911500, "id_str": "147478277550911488", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1636340670/sjobs-logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1636340670/sjobs-logo_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#sf Sales Hunter/complex software sales/NoSQL http://t.co/mIFgbhp7 #sales #jobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:48:02 +0000", "from_user": "joe_hrmn", "from_user_id": 14989590, "from_user_id_str": "14989590", "from_user_name": "Hiromune Shishido", "geo": null, "id": 147478054078394370, "id_str": "147478054078394368", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1275627373/14989590_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1275627373/14989590_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\\u3053\\u308C\\u304B\\u3089\\u8AAD\\u3080\\u3002/ Availability and Operational Stability of NoSQL | CUBRID Blog: http://t.co/RjjxdUZx via @AddThis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:40:41 +0000", "from_user": "yapsee", "from_user_id": 402446711, "from_user_id_str": "402446711", "from_user_name": "Yapsee", "geo": null, "id": 147476203064926200, "id_str": "147476203064926208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1648044790/yapsee_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648044790/yapsee_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Yapsee's #hiring a skilled and ambitious #developer. #HTML5 #CSS3 #Javascript #PHP #Python #Ruby #NoSQL #Startup #Jobs #hire #entrepreneur", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:27:21 +0000", "from_user": "pedrocavalero", "from_user_id": 73974609, "from_user_id_str": "73974609", "from_user_name": "Pedro Caval\\u00E9ro", "geo": null, "id": 147472848217309200, "id_str": "147472848217309184", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/413724729/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/413724729/twitter_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "http://t.co/Ovo0lk47 leitura recomendada!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:17:03 +0000", "from_user": "likesky3", "from_user_id": 98395292, "from_user_id_str": "98395292", "from_user_name": "Soo-Yong Shin", "geo": null, "id": 147470254359056400, "id_str": "147470254359056384", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1462807106/________normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1462807106/________normal.jpg", "source": "Zite Personalized Magazine", "text": "RT @HadoopNews: #NoSQL Benchmarking http://t.co/C92wt7OF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:12:08 +0000", "from_user": "Winterpool", "from_user_id": 15397617, "from_user_id_str": "15397617", "from_user_name": "Winterpool", "geo": null, "id": 147469016443785200, "id_str": "147469016443785216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1655019692/miki01_110_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655019692/miki01_110_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": ".@AaronHEllis Is Twitter's NoSQL database any better at keeping 'favourites' than it is at keeping tweets in general?", "to_user": "AaronHEllis", "to_user_id": 155609096, "to_user_id_str": "155609096", "to_user_name": "AaronHEllis", "in_reply_to_status_id": 147468632572694530, "in_reply_to_status_id_str": "147468632572694528"}, +{"created_at": "Fri, 16 Dec 2011 00:10:35 +0000", "from_user": "stevestarges", "from_user_id": 216655995, "from_user_id_str": "216655995", "from_user_name": "Steve Starges", "geo": null, "id": 147468626289635330, "id_str": "147468626289635328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1498209216/275px-Manga_in_Jp.svg_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1498209216/275px-Manga_in_Jp.svg_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "A Reliable, Scalable, and (Kinda) Cheap Cloud Hosting Architecture for MongoDB: I did a talk at the Austin NoSQL... http://t.co/audGeM1b", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:02:38 +0000", "from_user": "timglabisch", "from_user_id": 110407647, "from_user_id_str": "110407647", "from_user_name": "Tim Glabisch", "geo": null, "id": 147466627418554370, "id_str": "147466627418554368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1215825992/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1215825992/me_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "RT @MySQL: Live webinar in #APAC time zone next Thur: Product Roadmap of #MySQL - RDBMS and #NoSQL, And Beyond: http://t.co/Pr2Sr8aC pls retweet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:57:50 +0000", "from_user": "alibabaie", "from_user_id": 43753223, "from_user_id_str": "43753223", "from_user_name": "Ali Babaie", "geo": null, "id": 147465419018612740, "id_str": "147465419018612736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701973281/DSC00155-ali_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701973281/DSC00155-ali_normal.jpg", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "Great article NoSQL and challenges: let's have a serious NoSQL discussion http://t.co/EKjBq6C4 #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:41:43 +0000", "from_user": "petetasker", "from_user_id": 72562996, "from_user_id_str": "72562996", "from_user_name": "Peter Tasker", "geo": null, "id": 147461365710323700, "id_str": "147461365710323712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1192350663/n537725614_4282789_9985_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1192350663/n537725614_4282789_9985_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "honestly I've had enough of this key value NoSQL bizness. Honestly, who the hell wants to deal with massive associative arrays? SQL anyone?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:33:33 +0000", "from_user": "usul_", "from_user_id": 5528042, "from_user_id_str": "5528042", "from_user_name": "Fran\\u00E7ois Dussert", "geo": null, "id": 147459309956104200, "id_str": "147459309956104192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1476077804/gravatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1476077804/gravatar_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "wakanda public beta is now available! http://t.co/tP2az9Pt #ssjs #nosql (via @rgaidot)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:23:47 +0000", "from_user": "nid777", "from_user_id": 108751911, "from_user_id_str": "108751911", "from_user_name": "A.Niida", "geo": null, "id": 147456850919559170, "id_str": "147456850919559168", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1221860464/161418_100002017657580_4219310_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1221860464/161418_100002017657580_4219310_q_normal.jpg", "source": "Zite Personalized Magazine", "text": "RT @HadoopNews: #NoSQL Benchmarking http://t.co/C92wt7OF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:11:58 +0000", "from_user": "Cloud_Prime", "from_user_id": 140715388, "from_user_id_str": "140715388", "from_user_name": "CloudPrime", "geo": null, "id": 147453875790675970, "id_str": "147453875790675968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/877523108/CloudPrimeGlobeLarge_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/877523108/CloudPrimeGlobeLarge_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Nati Shalom's Blog: 2012 Cloud, PaaS, NoSQL Predictions http://t.co/kMRT1jkX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:11:31 +0000", "from_user": "dehora", "from_user_id": 546313, "from_user_id_str": "546313", "from_user_name": "Bill de h\\u00D3ra", "geo": null, "id": 147453765757308930, "id_str": "147453765757308928", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1353302609/131466384_04bd6f5204_o_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1353302609/131466384_04bd6f5204_o_normal.png", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: 8 Most Interesting Companies for Hadoop's Future http://t.co/DGjsMLzh #Hadoop #Cloudera #Hortonworks #MapR #Hadapt #HPCC #DataStax #Zettaset", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:10:26 +0000", "from_user": "notkea", "from_user_id": 130785168, "from_user_id_str": "130785168", "from_user_name": "Notkea", "geo": null, "id": 147453492712312830, "id_str": "147453492712312832", "iso_language_code": "fi", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/824485375/notkea-logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/824485375/notkea-logo_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Riak Handbook: Yksi lupaavimmista NoSQL-tietokannoista on eitt\\u00E4m\\u00E4tt\\u00E4 Riak. Dynamo-ideaan perustuvaa tietokantaa ... http://t.co/PjWlrnMt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:06:51 +0000", "from_user": "AnaNobel", "from_user_id": 112244260, "from_user_id_str": "112244260", "from_user_name": "Ana Lopez de E", "geo": null, "id": 147452590614003700, "id_str": "147452590614003712", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695396230/nor_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695396230/nor_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Viroide: #couchDB aun no s\\u00E9 si lo amar\\u00E9 o lo odiar\\u00E9, habr\\u00E1 que hacer algunas pruebas #noSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:59:57 +0000", "from_user": "mahdi", "from_user_id": 718993, "from_user_id_str": "718993", "from_user_name": "Mahdi Taghizadeh", "geo": null, "id": 147450853668818940, "id_str": "147450853668818944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697108280/violet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697108280/violet_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "A Reliable, Scalable, and (Kinda) Cheap Cloud Hosting Architecture for MongoDB. http://t.co/a0rPAi3G #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:58:18 +0000", "from_user": "godofthenetwork", "from_user_id": 427834340, "from_user_id_str": "427834340", "from_user_name": "Carlos Navarrete", "geo": null, "id": 147450436524314620, "id_str": "147450436524314624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "A Reliable, Scalable, and (Kinda) Cheap Cloud Hosting Architecture for MongoDB: I did a talk at the Austin NoSQL... http://t.co/Hj1J4Afg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:58:11 +0000", "from_user": "xcoatl", "from_user_id": 28551844, "from_user_id_str": "28551844", "from_user_name": "Beto Borbolla", "geo": null, "id": 147450409831759870, "id_str": "147450409831759873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1244659079/bike_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1244659079/bike_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @markmadsen: Just read another nosql/Hadoop product's info with a new \"SQL-like language\". Let's create a WTFsql standard and be done with new standards", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:45:38 +0000", "from_user": "_tomorro", "from_user_id": 15443683, "from_user_id_str": "15443683", "from_user_name": "Daniele Moraschi", "geo": null, "id": 147447250497454080, "id_str": "147447250497454080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1223711459/IMG_2906_4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1223711459/IMG_2906_4_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "MySQL :: Product Roadmap of MySQL - RDBMS and NoSQL, And Beyond http://t.co/ZDAKj7xO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:45:36 +0000", "from_user": "wagnerbianchijr", "from_user_id": 233255853, "from_user_id_str": "233255853", "from_user_name": "Wagner Bianchi", "geo": null, "id": 147447242377273340, "id_str": "147447242377273345", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1582645499/wb-sea_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1582645499/wb-sea_normal.png", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "RT @MySQL: Live webinar in #APAC time zone next Thur: Product Roadmap of #MySQL - RDBMS and #NoSQL, And Beyond: http://t.co/Pr2Sr8aC pls retweet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:45:07 +0000", "from_user": "MySQLBot_en", "from_user_id": 305160384, "from_user_id_str": "305160384", "from_user_name": "MySQLBot_en", "geo": null, "id": 147447118125219840, "id_str": "147447118125219840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1368954854/mysql_100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1368954854/mysql_100_normal.png", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "RT @MySQL: Live webinar in #APAC time zone next Thur: Product Roadmap of #MySQL - RDBMS and #NoSQL, And Beyond: http://t.co/Pr2Sr8aC pls retweet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:44:12 +0000", "from_user": "apermuy", "from_user_id": 16869391, "from_user_id_str": "16869391", "from_user_name": "apermuy", "geo": null, "id": 147446887748870140, "id_str": "147446887748870144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1599288937/dmrlive_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599288937/dmrlive_normal.gif", "source": "<a href="http://twitter.com" rel="nofollow">Tweetie for Mac</a>", "text": "Live webinar in #APAC time zone next Thur: Product Roadmap of #MySQL - RDBMS and #NoSQL, And Beyond: http://t.co/EBOBOIgv (via @MySQL)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:43:38 +0000", "from_user": "MySQL", "from_user_id": 44932521, "from_user_id_str": "44932521", "from_user_name": "MySQL", "geo": null, "id": 147446745570361340, "id_str": "147446745570361344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1240079072/logo-mysql-170x170_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1240079072/logo-mysql-170x170_normal.png", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "Live webinar in #APAC time zone next Thur: Product Roadmap of #MySQL - RDBMS and #NoSQL, And Beyond: http://t.co/Pr2Sr8aC pls retweet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:33:46 +0000", "from_user": "bjorngranvik", "from_user_id": 25514609, "from_user_id_str": "25514609", "from_user_name": "Bj\\u00F6rn Granvik", "geo": null, "id": 147444265369341950, "id_str": "147444265369341952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/104606663/Bj\\u00F6rn_Granvik_Colour_green_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/104606663/Bj\\u00F6rn_Granvik_Colour_green_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT New JDBC Driver (yes that's right!) for @neo4j by @rickardoberg. Testing help needed! http://t.co/YnnQOJl3 #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:25:21 +0000", "from_user": "jupiterorbit", "from_user_id": 14156586, "from_user_id_str": "14156586", "from_user_name": "Kaustav Bhattacharya", "geo": null, "id": 147442147401023500, "id_str": "147442147401023489", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/57931383/Photo_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/57931383/Photo_1_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "Found this very thorough guide about what NoSQL is for. Goes in to NoSQL system standards and compares against RDBMS. http://t.co/Wk0poVmh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:18:42 +0000", "from_user": "victorpascual", "from_user_id": 11043372, "from_user_id_str": "11043372", "from_user_name": "victorpascual", "geo": null, "id": 147440471445225470, "id_str": "147440471445225472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1115026461/mr-monkey_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1115026461/mr-monkey_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nosqlmatters: Our new website is online! From now on you can find current information about the #nosql #conference #2012 here: http://t.co/aYrAfS7l", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:16:41 +0000", "from_user": "JoeChanNYC", "from_user_id": 155064900, "from_user_id_str": "155064900", "from_user_name": "Joseph Chan", "geo": null, "id": 147439963405955070, "id_str": "147439963405955072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694818259/Profile_Pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694818259/Profile_Pic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Are you an #Oracle #DBA Lead with #NoSQL looking for a managerial opportunity? #CheetahMail is hiring. Check it out. http://t.co/bwCujS2h", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:12:14 +0000", "from_user": "mongodb_news", "from_user_id": 218710958, "from_user_id_str": "218710958", "from_user_name": "MongoDb", "geo": null, "id": 147438845028335600, "id_str": "147438845028335616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1173473945/imgres-1_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1173473945/imgres-1_normal.jpeg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"HBase, Cassandra, and MongoDB - How They Recover From a Failure\" http://t.co/tVxBQJj5 #HBase #Cassandra #MongoDB #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:11:34 +0000", "from_user": "rgaidot", "from_user_id": 1245801, "from_user_id_str": "1245801", "from_user_name": "R\\u00E9gis Gaidot", "geo": null, "id": 147438678178926600, "id_str": "147438678178926592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1266738841/avatar-6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266738841/avatar-6_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "wakanda public beta is now available! http://t.co/GI8tETeb good job @wakanda teams, Laurent R. & Luc H. /cc @abenkira #ssjs #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:08:51 +0000", "from_user": "joprichard", "from_user_id": 87571658, "from_user_id_str": "87571658", "from_user_name": "Jo Prichard", "geo": null, "id": 147437992510890000, "id_str": "147437992510889985", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1586920069/5107CR3B_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586920069/5107CR3B_1__normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: 8 Most Interesting Companies for Hadoop's Future http://t.co/DGjsMLzh #Hadoop #Cloudera #Hortonworks #MapR #Hadapt #HPCC #DataStax #Zettaset", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:06:03 +0000", "from_user": "mattnowina", "from_user_id": 103869545, "from_user_id_str": "103869545", "from_user_name": "Matt Nowina", "geo": null, "id": 147437289772040200, "id_str": "147437289772040192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1310193735/eightbit-9aa6f9af-a52d-4215-97f5-8ae5720906f1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1310193735/eightbit-9aa6f9af-a52d-4215-97f5-8ae5720906f1_normal.png", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "Centralized Logging With Amazon SimpleDB, Slf4j, and Logback http://t.co/YdpAUAGn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:04:17 +0000", "from_user": "rahulgchaudhary", "from_user_id": 93134027, "from_user_id_str": "93134027", "from_user_name": "Rahul Chaudhary", "geo": null, "id": 147436844177571840, "id_str": "147436844177571840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1148856768/rahulchaudhary_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1148856768/rahulchaudhary_normal.jpg", "source": "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", "text": "NoSQL Support in Lift via @nosqlweekly http://t.co/JVp84Pdi #nosql #mongodb #couchdb #lift", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:04:05 +0000", "from_user": "lukewelling", "from_user_id": 14840808, "from_user_id_str": "14840808", "from_user_name": "Luke Welling", "geo": null, "id": 147436795318124540, "id_str": "147436795318124545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1588367966/elephant_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1588367966/elephant_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "I'm not a big fan of NoSQL databases for most tasks, but some days anything other than SQL seems pretty appealing", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:03:33 +0000", "from_user": "lpiot", "from_user_id": 22353012, "from_user_id_str": "22353012", "from_user_name": "Ludovic Piot", "geo": null, "id": 147436657874968580, "id_str": "147436657874968576", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/89454404/n1220121809_907363_4719_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/89454404/n1220121809_907363_4719_normal.jpg", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "RT @vhe74: Cassandra et Hadoop dans les \"10 Most Important Open Source Projects of 2011\" http://t.co/J7GMDVlo #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 21:58:12 +0000", "from_user": "jsalvachua", "from_user_id": 780336, "from_user_id_str": "780336", "from_user_name": "Joaquin salvachua", "geo": null, "id": 147435314108051460, "id_str": "147435314108051456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/255663970/Imagen_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/255663970/Imagen_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nosqlmatters: Our new website is online! From now on you can find current information about the #nosql #conference #2012 here: http://t.co/aYrAfS7l", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 21:56:44 +0000", "from_user": "post_relational", "from_user_id": 402513077, "from_user_id_str": "402513077", "from_user_name": "postrelational", "geo": null, "id": 147434941884538880, "id_str": "147434941884538880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://explore.live.com/windows-live-writer" rel="nofollow">Windows Live Writer</a>", "text": "Top 10 List of Changes in MongoDB 2.0.2 - http://t.co/Vpljb8Us #mongodb #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 21:19:40 +0000", "from_user": "X4F34r", "from_user_id": 130800499, "from_user_id_str": "130800499", "from_user_name": "418 Ima teapot", "geo": null, "id": 147425615149154300, "id_str": "147425615149154304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1617785733/meh_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1617785733/meh_normal.png", "source": "<a href="http://hotot.org" rel="nofollow">Hotot for Chrome</a>", "text": "@ddrmanxbxfr @j_lavoie Yes,but now i dont need that.And I really like nginx and PHP.I read a lot of things about noSQL DBs but I prefer SQL", "to_user": "ddrmanxbxfr", "to_user_id": 133566013, "to_user_id_str": "133566013", "to_user_name": "Mathieu", "in_reply_to_status_id": 147423434090090500, "in_reply_to_status_id_str": "147423434090090496"}, +{"created_at": "Thu, 15 Dec 2011 21:14:15 +0000", "from_user": "leandro_storoli", "from_user_id": 46277106, "from_user_id_str": "46277106", "from_user_name": "Leandro Storoli", "geo": null, "id": 147424253149585400, "id_str": "147424253149585408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1368141969/profile_image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1368141969/profile_image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"Learn Couchbase - Couchbase Server 2.0 Ruby Client\" http://t.co/p0o0z6Hf #Ruby #NoSQL #Couchbase", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 21:11:00 +0000", "from_user": "ddrmanxbxfr", "from_user_id": 133566013, "from_user_id_str": "133566013", "from_user_name": "Mathieu", "geo": null, "id": 147423434090090500, "id_str": "147423434090090496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@X4F34r @j_lavoie ever thinked about using a #erlang web server such as #cowboy or #mochiweb with Webmachine ? and a noSQL db ?", "to_user": "X4F34r", "to_user_id": 130800499, "to_user_id_str": "130800499", "to_user_name": "418 Ima teapot", "in_reply_to_status_id": 147370719372775420, "in_reply_to_status_id_str": "147370719372775424"}, +{"created_at": "Thu, 15 Dec 2011 21:01:36 +0000", "from_user": "josearcos_", "from_user_id": 225098820, "from_user_id_str": "225098820", "from_user_name": "Jos\\u00E9 Arcos", "geo": null, "id": 147421069245030400, "id_str": "147421069245030401", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1187396412/CIMG3985_1__normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1187396412/CIMG3985_1__normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @david_bonilla: Oracle #NoSQL: primeras impresiones http://t.co/YpSo3T2D O_o", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 21:00:01 +0000", "from_user": "DZone", "from_user_id": 14782935, "from_user_id_str": "14782935", "from_user_name": "DZone", "geo": null, "id": 147420669125201920, "id_str": "147420669125201920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/258714549/dzone-square-256_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/258714549/dzone-square-256_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\"Learn Couchbase - Couchbase Server 2.0 Ruby Client\" http://t.co/p0o0z6Hf #Ruby #NoSQL #Couchbase", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 20:58:48 +0000", "from_user": "EvansBI", "from_user_id": 304523605, "from_user_id_str": "304523605", "from_user_name": "Peter Evans", "geo": null, "id": 147420365692481540, "id_str": "147420365692481536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1368935952/Periscope_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1368935952/Periscope_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @markmadsen: nosql is a terrible term, you have to clearly think about the storage layer, data mgmt & execution, programming layers in db - @colinjwhite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 20:57:54 +0000", "from_user": "markmadsen", "from_user_id": 7648872, "from_user_id_str": "7648872", "from_user_name": "Mark Madsen", "geo": null, "id": 147420136574431230, "id_str": "147420136574431232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/85422990/mark_madsen_pr_1452_bw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/85422990/mark_madsen_pr_1452_bw_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "nosql is a terrible term, you have to clearly think about the storage layer, data mgmt & execution, programming layers in db - @colinjwhite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 20:45:05 +0000", "from_user": "satolone", "from_user_id": 398507580, "from_user_id_str": "398507580", "from_user_name": "Scott Tolone", "geo": null, "id": 147416912513605630, "id_str": "147416912513605632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1683949662/GlobalBigData_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683949662/GlobalBigData_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "SQL Schema management is a big reason why developers are looking at NoSQL databases as an alternative.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 20:42:57 +0000", "from_user": "mrjabba", "from_user_id": 2502591, "from_user_id_str": "2502591", "from_user_name": "Kevin Hutson", "geo": null, "id": 147416373881077760, "id_str": "147416373881077760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/493766507/minime_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/493766507/minime_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "We tried casting \"Dispel Oracle\" and \"Summon MongoDb\" today but we missed our saving throw. Not gonna give up. #nosql #iHateOracle", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 20:32:28 +0000", "from_user": "abdintarkmani", "from_user_id": 89257211, "from_user_id_str": "89257211", "from_user_name": "Abdin", "geo": null, "id": 147413738318868480, "id_str": "147413738318868481", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1578671840/IMG_0561_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1578671840/IMG_0561_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Amusing video to settle MongoDB vs. MySQL argument http://t.co/k5uYA7Rb #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 20:30:42 +0000", "from_user": "arcesino", "from_user_id": 145028614, "from_user_id_str": "145028614", "from_user_name": "Ignacio Arces Garc\\u00EDa", "geo": null, "id": 147413293177372670, "id_str": "147413293177372672", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1671787670/arcesino_gmail.com_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671787670/arcesino_gmail.com_normal.jpg", "source": "<a href="http://hotot.org" rel="nofollow">Hotot</a>", "text": "MySQL 5.6 prove\\u00E9 interfaz NoSQL basada en memcached para InnoDB: http://t.co/28NOLZSr <- Habr\\u00E1 que probarlo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 20:25:05 +0000", "from_user": "satolone", "from_user_id": 398507580, "from_user_id_str": "398507580", "from_user_name": "Scott Tolone", "geo": null, "id": 147411879361384450, "id_str": "147411879361384448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1683949662/GlobalBigData_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683949662/GlobalBigData_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "It's easy to forget when looking at NoSQL choices that Amazon SimpleDB is another choice for a scalable non-relational data store.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 20:14:20 +0000", "from_user": "wjdataguy", "from_user_id": 23024212, "from_user_id_str": "23024212", "from_user_name": "Chris Sorensen", "geo": null, "id": 147409173355823100, "id_str": "147409173355823104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1203515105/ChrisS_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1203515105/ChrisS_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @markmadsen: Just read another nosql/Hadoop product's info with a new \"SQL-like language\". Let's create a WTFsql standard and be done with new standards", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 20:13:33 +0000", "from_user": "mmntum", "from_user_id": 432709145, "from_user_id_str": "432709145", "from_user_name": "Momentum", "geo": null, "id": 147408977016262660, "id_str": "147408977016262656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1683752590/SquareLogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683752590/SquareLogo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": ".@MySQL is thriving... congrats to the team pushing through despite @Oracle http://t.co/PtGfUBhq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 20:13:01 +0000", "from_user": "jaymyers", "from_user_id": 14135365, "from_user_id_str": "14135365", "from_user_name": "jay myers", "geo": null, "id": 147408843947769860, "id_str": "147408843947769856", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/521280134/jaymyers-twitpic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/521280134/jaymyers-twitpic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@doylecentral @bsletten netkernel, spring, riak (or other nosql stores), cloud", "to_user": "doylecentral", "to_user_id": 17042418, "to_user_id_str": "17042418", "to_user_name": "doylecentral", "in_reply_to_status_id": 147398577700868100, "in_reply_to_status_id_str": "147398577700868097"}, +{"created_at": "Thu, 15 Dec 2011 20:05:05 +0000", "from_user": "satolone", "from_user_id": 398507580, "from_user_id_str": "398507580", "from_user_name": "Scott Tolone", "geo": null, "id": 147406846494384130, "id_str": "147406846494384130", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1683949662/GlobalBigData_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683949662/GlobalBigData_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Good look at failure characteristics of the major NoSQL databases. http://t.co/F0Bju0DD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 20:04:07 +0000", "from_user": "rahulgchaudhary", "from_user_id": 93134027, "from_user_id_str": "93134027", "from_user_name": "Rahul Chaudhary", "geo": null, "id": 147406600951431170, "id_str": "147406600951431168", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1148856768/rahulchaudhary_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1148856768/rahulchaudhary_normal.jpg", "source": "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", "text": "FoneDoktor, A WibiData Application via @nosqlweekly http://t.co/GjmZqj4B #hbase #hadoop #nosql #android", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:47:52 +0000", "from_user": "Tamsen_Creative", "from_user_id": 327035351, "from_user_id_str": "327035351", "from_user_name": "Teya Tamsen", "geo": null, "id": 147402513493143550, "id_str": "147402513493143552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1659755309/3004166359_0f6ef0051d_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659755309/3004166359_0f6ef0051d_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @techielicous: The New Microsoft-Hadoop Hosting Deal - Infoboom: The New Microsoft-Hadoop Hosting DealInfoboomH... http://t.co/6Q8XZaSk #nosql #bigData", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:47:14 +0000", "from_user": "techielicous", "from_user_id": 240306053, "from_user_id_str": "240306053", "from_user_name": "Josette Rigsby", "geo": null, "id": 147402355061694460, "id_str": "147402355061694465", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1250483015/Josette_character_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1250483015/Josette_character_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The New Microsoft-Hadoop Hosting Deal - Infoboom: The New Microsoft-Hadoop Hosting DealInfoboomH... http://t.co/6Q8XZaSk #nosql #bigData", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:46:44 +0000", "from_user": "dspettinga", "from_user_id": 27618508, "from_user_id_str": "27618508", "from_user_name": "Dennis Pettinga", "geo": null, "id": 147402230436343800, "id_str": "147402230436343809", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1659237503/Dennis_Pettinga_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659237503/Dennis_Pettinga_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @gjfmunneke: Iemand ervaring met Cassandra NoSQL database?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:45:20 +0000", "from_user": "php_wwwshop", "from_user_id": 143352881, "from_user_id_str": "143352881", "from_user_name": "phpdevelopers", "geo": null, "id": 147401878093836300, "id_str": "147401878093836289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/896383895/php_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/896383895/php_normal.png", "source": "<a href="http://www.phpdevelopers.com.au" rel="nofollow">PHP Developers</a>", "text": "Working with ScaleBase and NOSQL : http://t.co/AlukvMMP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:35:32 +0000", "from_user": "apivovarov", "from_user_id": 82060789, "from_user_id_str": "82060789", "from_user_name": "Andrey Pivovarov", "geo": null, "id": 147399410685456400, "id_str": "147399410685456384", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1522597920/dbbeer11_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1522597920/dbbeer11_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Safari on iOS</a>", "text": "NoSQL Benchmarking. \\u0418\\u043D\\u0442\\u0435\\u0440\\u0435\\u0441\\u043D\\u043E. http://t.co/hwKBV2vc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:33:51 +0000", "from_user": "eric_girouard", "from_user_id": 16877144, "from_user_id_str": "16877144", "from_user_name": "Eric Girouard", "geo": null, "id": 147398985261400060, "id_str": "147398985261400064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1145079950/5081722742_9b28cfee98_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1145079950/5081722742_9b28cfee98_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Facebook Pulls Back Curtain on #Timeline - Here's the engineer who designed it: \\nhttp://t.co/z92Y6xih #mysql #hadoop #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:29:12 +0000", "from_user": "datachick", "from_user_id": 15534499, "from_user_id_str": "15534499", "from_user_name": "Karen Lopez", "geo": null, "id": 147397815872655360, "id_str": "147397815872655360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1639614262/9a4f5b93-2599-40e2-820e-eed4a5d0ac1a_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639614262/9a4f5b93-2599-40e2-820e-eed4a5d0ac1a_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @markmadsen: Just read another nosql/Hadoop product's info with a new \"SQL-like language\". Let's create a WTFsql standard and be done with new standards", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:25:57 +0000", "from_user": "adrianco", "from_user_id": 13895242, "from_user_id_str": "13895242", "from_user_name": "adrian cockcroft", "geo": null, "id": 147396996511170560, "id_str": "147396996511170560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688583582/zappa_front_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688583582/zappa_front_normal.jpeg", "source": "<a href="http://www.feedly.com" rel="nofollow">feedly</a>", "text": "RT @rhm2k: MySQL Cluster for Highly Available & Scalable Hadoop NodeName http://t.co/B2rd2jI7 < MapR has addressed this. Hortonworks real soon.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:17:25 +0000", "from_user": "markmadsen", "from_user_id": 7648872, "from_user_id_str": "7648872", "from_user_name": "Mark Madsen", "geo": null, "id": 147394851716075520, "id_str": "147394851716075520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/85422990/mark_madsen_pr_1452_bw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/85422990/mark_madsen_pr_1452_bw_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Just read another nosql/Hadoop product's info with a new \"SQL-like language\". Let's create a WTFsql standard and be done with new standards", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:14:26 +0000", "from_user": "alibabaie", "from_user_id": 43753223, "from_user_id_str": "43753223", "from_user_name": "Ali Babaie", "geo": null, "id": 147394100973420540, "id_str": "147394100973420544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701973281/DSC00155-ali_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701973281/DSC00155-ali_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "RT @mahdi: A SMALL cross-section of BIG Data. http://t.co/LbLTtHIX #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:10:45 +0000", "from_user": "rhm2k", "from_user_id": 14065215, "from_user_id_str": "14065215", "from_user_name": "Rich Miller", "geo": null, "id": 147393172287397900, "id_str": "147393172287397888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1178804758/Headshot4b_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1178804758/Headshot4b_normal.jpg", "source": "<a href="http://www.feedly.com" rel="nofollow">feedly</a>", "text": "Reading: Spotify Architecture: The P2P Network http://t.co/OPToZmpx < Q:for FinTech & other low-latency problems, what to use for P2P?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:08:33 +0000", "from_user": "siaqodb", "from_user_id": 111045781, "from_user_id_str": "111045781", "from_user_name": "siaqodb", "geo": null, "id": 147392621168439300, "id_str": "147392621168439297", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1150374147/managerIcon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1150374147/managerIcon_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pwbattles: We've recently implemented #siaqodb in Patchwork. Great NoSQL db solution with native #Unity3D build (X-Platform). Devs should check it out!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:05:42 +0000", "from_user": "iC", "from_user_id": 7483052, "from_user_id_str": "7483052", "from_user_name": "cliveb", "geo": null, "id": 147391902700941300, "id_str": "147391902700941312", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1401754677/cliveb_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1401754677/cliveb_normal.png", "source": "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", "text": "RT @rahulgchaudhary: Heroku, Neo4j and Google Spreadsheet in 10min. Flat via @nosqlweekly http://t.co/bsgDtKB3 #neo4j #nosql #heroku", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:05:07 +0000", "from_user": "ThibArg", "from_user_id": 73433446, "from_user_id_str": "73433446", "from_user_name": "Thibaud Arguillere", "geo": null, "id": 147391755371823100, "id_str": "147391755371823105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1588190673/Thibaud_AP-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1588190673/Thibaud_AP-2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Wakanday: One step closer to a production version.. Wakanda public beta now available! http://t.co/4U1htADz #html5 #javascript #nosql via @wakandasoft", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:01:03 +0000", "from_user": "mahdi", "from_user_id": 718993, "from_user_id_str": "718993", "from_user_name": "Mahdi Taghizadeh", "geo": null, "id": 147390733085708300, "id_str": "147390733085708289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697108280/violet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697108280/violet_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "A SMALL cross-section of BIG Data. http://t.co/niejxhwa #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:52:16 +0000", "from_user": "SCLBase", "from_user_id": 148655629, "from_user_id_str": "148655629", "from_user_name": "ScaleBase", "geo": null, "id": 147388521777336320, "id_str": "147388521777336322", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1190321033/ScaleBaseLogo-facebook_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1190321033/ScaleBaseLogo-facebook_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Why we at ScaleBase love NOSQL solutions - http://t.co/m6zLiw0D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:51:20 +0000", "from_user": "alvaro_zabala", "from_user_id": 286178047, "from_user_id_str": "286178047", "from_user_name": "alvaro.zabala", "geo": null, "id": 147388284815945730, "id_str": "147388284815945728", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1508285834/8OL0FiQf_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1508285834/8OL0FiQf_normal", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @david_bonilla: Oracle #NoSQL: primeras impresiones http://t.co/YpSo3T2D O_o", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:44:36 +0000", "from_user": "spiffxp", "from_user_id": 1975851, "from_user_id_str": "1975851", "from_user_name": "Aaron Crickenberger", "geo": null, "id": 147386593714503680, "id_str": "147386593714503680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1645439159/acrickenberger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645439159/acrickenberger_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @argv0: Props to @roidrage on the @riakhandbook: http://t.co/KE0HzkOT #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:42:53 +0000", "from_user": "Dataversity", "from_user_id": 260472941, "from_user_id_str": "260472941", "from_user_name": "Dataversity", "geo": null, "id": 147386158064742400, "id_str": "147386158064742400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1286039423/DataversityIcon_300px_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1286039423/DataversityIcon_300px_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "#NoSQL Job of the Day: Online Development Manager http://t.co/5o4We5Dd #jobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:35:10 +0000", "from_user": "rahulgchaudhary", "from_user_id": 93134027, "from_user_id_str": "93134027", "from_user_name": "Rahul Chaudhary", "geo": null, "id": 147384218551459840, "id_str": "147384218551459840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1148856768/rahulchaudhary_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1148856768/rahulchaudhary_normal.jpg", "source": "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", "text": "RT @nosqlweekly: #NoSQL Weekly (Issue 55 - December 15, 2011) http://t.co/394mA7eC #riak #mongodb #redis #hadoop #cassandra #hbase #cql #graphdb #neo4j", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:32:13 +0000", "from_user": "klintron", "from_user_id": 3961541, "from_user_id_str": "3961541", "from_user_name": "Klint Finley", "geo": null, "id": 147383475475984400, "id_str": "147383475475984384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693418685/klint-cube_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693418685/klint-cube_normal.JPG", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "8 Most Interesting Companies for Hadoop\\u2019s Future http://t.co/pH49McJs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:28:35 +0000", "from_user": "ericmoritz", "from_user_id": 5972272, "from_user_id_str": "5972272", "from_user_name": "Eric Moritz", "geo": null, "id": 147382561625210880, "id_str": "147382561625210880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1422752129/Photo_on_2011-05-26_at_14.20_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1422752129/Photo_on_2011-05-26_at_14.20_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@roidrage You probably know this already but links in the Riak Handbook go to a 404, http://t.co/j1Zn6F3L", "to_user": "roidrage", "to_user_id": 14658472, "to_user_id_str": "14658472", "to_user_name": "Mathias Meyer", "in_reply_to_status_id": 147380852291145730, "in_reply_to_status_id_str": "147380852291145729"}, +{"created_at": "Thu, 15 Dec 2011 18:27:45 +0000", "from_user": "Wakanday", "from_user_id": 374570568, "from_user_id_str": "374570568", "from_user_name": "JS.everywhere()", "geo": null, "id": 147382350106476540, "id_str": "147382350106476544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1552888936/wakanday-twitter-avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552888936/wakanday-twitter-avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "One step closer to a production version.. Wakanda public beta now available! http://t.co/4U1htADz #html5 #javascript #nosql via @wakandasoft", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:22:41 +0000", "from_user": "pavithratg", "from_user_id": 203434572, "from_user_id_str": "203434572", "from_user_name": "Pavithra Gunasekara", "geo": null, "id": 147381076975816700, "id_str": "147381076975816704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1169916377/20102010115_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1169916377/20102010115_normal.jpg", "source": "<a href="http://www.shareaholic.com" rel="nofollow">shareaholic app</a>", "text": "Origin of NoSQL \\u2022 myNoSQL - http://t.co/gfq1HuVn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:17:30 +0000", "from_user": "nosqlweekly", "from_user_id": 217229304, "from_user_id_str": "217229304", "from_user_name": "NoSQL Weekly", "geo": null, "id": 147379770047479800, "id_str": "147379770047479808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1609431328/nosql-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609431328/nosql-2_normal.jpg", "source": "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", "text": "#NoSQL Weekly (Issue 55 - December 15, 2011) http://t.co/394mA7eC #riak #mongodb #redis #hadoop #cassandra #hbase #cql #graphdb #neo4j", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:17:20 +0000", "from_user": "amorgaut", "from_user_id": 17018913, "from_user_id_str": "17018913", "from_user_name": "Alexandre Morgaut", "geo": null, "id": 147379731224985600, "id_str": "147379731224985600", "iso_language_code": "is", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1386942812/Photo_on_2011-06-08_at_12.11__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1386942812/Photo_on_2011-06-08_at_12.11__2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ThibArg: Yeah! #Wakanda v1 beta is reaaaaady! wakanda.org #ssjs #javascript #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:14:00 +0000", "from_user": "edrendar", "from_user_id": 64034408, "from_user_id_str": "64034408", "from_user_name": "Eduardo Montes d Oca", "geo": null, "id": 147378891848298500, "id_str": "147378891848298498", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1507079853/obladi-762064_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1507079853/obladi-762064_normal.jpg", "source": "<a href="https://wiki.ubuntu.com/Gwibber" rel="nofollow">Ubuntu</a>", "text": "\\u267A @DBmxorg: El concepto \"ausencia de esquema\" implica que no hay \"CREATE TABLE ...\" #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:11:07 +0000", "from_user": "DBmxorg", "from_user_id": 261452842, "from_user_id_str": "261452842", "from_user_name": "DBmx.org", "geo": null, "id": 147378165713612800, "id_str": "147378165713612801", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1263199080/4395953684_419dff284f_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263199080/4395953684_419dff284f_normal.jpg", "source": "<a href="http://timely.is" rel="nofollow">Timely by Demandforce</a>", "text": "El concepto \"ausencia de esquema\" implica que no hay \"CREATE TABLE ...\" #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:07:46 +0000", "from_user": "cgorsline", "from_user_id": 15799729, "from_user_id_str": "15799729", "from_user_name": "Craig Gorsline", "geo": null, "id": 147377324604657660, "id_str": "147377324604657664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1607504361/TWers_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607504361/TWers_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @FrancisShanahan: Really nice summary of #NoSql space from @twthoughts http://t.co/4JSbdAQF @martinfowler", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:06:13 +0000", "from_user": "elharaty", "from_user_id": 22181432, "from_user_id_str": "22181432", "from_user_name": "Darreg Zoomtick", "geo": null, "id": 147376930981806080, "id_str": "147376930981806080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/132214486/emad20_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/132214486/emad20_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @argv0: Props to @roidrage on the @riakhandbook: http://t.co/KE0HzkOT #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:05:04 +0000", "from_user": "cj_account", "from_user_id": 386041966, "from_user_id_str": "386041966", "from_user_name": "Christian Jkr", "geo": null, "id": 147376641327370240, "id_str": "147376641327370241", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1634909448/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634909448/logo_normal.png", "source": "Zite Personalized Magazine", "text": "RT @HadoopNews: #NoSQL Benchmarking http://t.co/C92wt7OF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:57:26 +0000", "from_user": "argv0", "from_user_id": 6509982, "from_user_id_str": "6509982", "from_user_name": "Andy Gross", "geo": null, "id": 147374723553181700, "id_str": "147374723553181696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1599769542/lol_face_Your_MumMom_Jokes-s274x280-119842-535_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599769542/lol_face_Your_MumMom_Jokes-s274x280-119842-535_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Props to @roidrage on the @riakhandbook: http://t.co/KE0HzkOT #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:50:37 +0000", "from_user": "StevevdMerwe", "from_user_id": 38123663, "from_user_id_str": "38123663", "from_user_name": "StevevanderMerwe", "geo": null, "id": 147373006203797500, "id_str": "147373006203797504", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/202914367/steve_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/202914367/steve_normal.jpg", "source": "<a href="http://www.zite.com/" rel="nofollow">Zite</a>", "text": "NoSQL Benchmarking http://t.co/jonnwupY via @zite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:50:01 +0000", "from_user": "HadoopNews", "from_user_id": 251816878, "from_user_id_str": "251816878", "from_user_name": "John Ching", "geo": null, "id": 147372856479711230, "id_str": "147372856479711232", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1244235692/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1244235692/images_normal.jpg", "source": "Zite Personalized Magazine", "text": "#NoSQL Benchmarking http://t.co/C92wt7OF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:45:47 +0000", "from_user": "chichiwiya", "from_user_id": 73620302, "from_user_id_str": "73620302", "from_user_name": "Jeremiah Brusola", "geo": null, "id": 147371791847919600, "id_str": "147371791847919617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1270411639/34326_138005326210882_100000042472085_374899_4909914_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1270411639/34326_138005326210882_100000042472085_374899_4909914_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Having fun with MongoDB. Databases without SQL IS fun! HAHA. #NoSQL #MongoDB #NodeJS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:35:11 +0000", "from_user": "ahmedsiouani", "from_user_id": 29201704, "from_user_id_str": "29201704", "from_user_name": "Ahmed", "geo": null, "id": 147369121644949500, "id_str": "147369121644949505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1300838122/ahmed_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1300838122/ahmed_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @maslett : How to to provide a strongly consistent distributed database and not break CAP Theorem http://t.co/VjCx1PAY #nosql #newsql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:30:43 +0000", "from_user": "JCdelValle", "from_user_id": 8991552, "from_user_id_str": "8991552", "from_user_name": "JC Del Valle", "geo": null, "id": 147368000650096640, "id_str": "147368000650096641", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1656446650/180479_10150097959566794_528191793_6441798_6251849_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656446650/180479_10150097959566794_528191793_6441798_6251849_n_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Tutorial de Neo4j (NOSQL Enterprise database) + Heroku + Google Calc - [Video, ingl\\u00E9s] http://t.co/RUbhymQD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:30:11 +0000", "from_user": "datachick", "from_user_id": 15534499, "from_user_id_str": "15534499", "from_user_name": "Karen Lopez", "geo": null, "id": 147367863261466620, "id_str": "147367863261466624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1639614262/9a4f5b93-2599-40e2-820e-eed4a5d0ac1a_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639614262/9a4f5b93-2599-40e2-820e-eed4a5d0ac1a_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Fabulous IRMAC crowd today. Encouraged by strong turnout this close to holidays. We talked NoSQL, ERDs, hiring, data governance and space.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:26:05 +0000", "from_user": "_OmarGarrido", "from_user_id": 251339484, "from_user_id_str": "251339484", "from_user_name": "Omar Garrido", "geo": null, "id": 147366832720973820, "id_str": "147366832720973824", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1531794152/waghgood_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1531794152/waghgood_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Me lo has dicho todo con la carita O.o RT @david_bonilla \"Oracle #NoSQL: primeras impresiones http://t.co/fkMLFmNr O_o\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:24:20 +0000", "from_user": "olivergierke", "from_user_id": 16736130, "from_user_id_str": "16736130", "from_user_name": "Oliver Gierke", "geo": null, "id": 147366393350848500, "id_str": "147366393350848514", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/69836753/P1000914_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/69836753/P1000914_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @peterneubauer: New JDBC Driver (yes that's right!) for @neo4j by @rickardoberg. Testing help needed! http://t.co/b8XvGoph #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:19:44 +0000", "from_user": "dbouwman", "from_user_id": 2774911, "from_user_id_str": "2774911", "from_user_name": "Dave Bouwman", "geo": null, "id": 147365233458020350, "id_str": "147365233458020352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/96021046/dbouwman-twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/96021046/dbouwman-twitter_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@mclampy yeah - I like the nosql stuff but I'm still not grokkin the reporting/aggregation side of things... so much to say on top of!", "to_user": "mclampy", "to_user_id": 139811258, "to_user_id_str": "139811258", "to_user_name": "Darin Lampson", "in_reply_to_status_id": 147338914200432640, "in_reply_to_status_id_str": "147338914200432640"}, +{"created_at": "Thu, 15 Dec 2011 17:19:07 +0000", "from_user": "codemonkeyism", "from_user_id": 17334287, "from_user_id_str": "17334287", "from_user_name": "Stephan Schmidt", "geo": null, "id": 147365079581589500, "id_str": "147365079581589504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/289074160/Avatar2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/289074160/Avatar2_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @peterneubauer: New JDBC Driver (yes that's right!) for @neo4j by @rickardoberg. Testing help needed! http://t.co/b8XvGoph #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Thu, 15 Dec 2011 17:19:07 +0000", "from_user": "codemonkeyism", "from_user_id": 17334287, "from_user_id_str": "17334287", "from_user_name": "Stephan Schmidt", "geo": null, "id": 147365079581589500, "id_str": "147365079581589504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/289074160/Avatar2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/289074160/Avatar2_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @peterneubauer: New JDBC Driver (yes that's right!) for @neo4j by @rickardoberg. Testing help needed! http://t.co/b8XvGoph #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:14:57 +0000", "from_user": "CharlesFung", "from_user_id": 139343234, "from_user_id_str": "139343234", "from_user_name": "Charles Fung", "geo": null, "id": 147364029327880200, "id_str": "147364029327880193", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/898445247/DSC00661_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/898445247/DSC00661_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Schooner\\u9996\\u5E2D\\u6280\\u672F\\u5B98John Busch\\uFF1AMySQL\\u4F18\\u5316\\u7A7A\\u95F4\\u5E7F\\u9614 NoSQL\\u9769\\u547D\\u4ECD\\u9700\\u7B49\\u5F85: \\n[CSDN\\u4E13\\u8BBF\\u4E13\\u7A3F]\\u00A0 \\u5728\\u65E5\\u524D\\u4E3E\\u884C\\u7684Velocity\\u00A0China\\u00A02011(Web\\u6027\\u80FD\\u548C\\u8FD0\\u7EF4\\u5927\\u4F1A)\\u4E0A\\uFF0CCSDN\\u8BB0\\u8005\\u6709\\u5E78\\u5BF9\\u8BDD\\u4E86... http://t.co/yGVg5Aw9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:13:03 +0000", "from_user": "LuxNoSQL", "from_user_id": 19330336, "from_user_id_str": "19330336", "from_user_name": "Nestor", "geo": null, "id": 147363553509261300, "id_str": "147363553509261312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1123187681/logo_original4_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1123187681/logo_original4_normal.PNG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "MongoDB 2.0.2 has been released\\n\\nhttp://t.co/OWZtzvvE\\n\\n#nosql #bigdata #mongodb #release", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:08:29 +0000", "from_user": "emileifrem", "from_user_id": 14684110, "from_user_id_str": "14684110", "from_user_name": "Emil Eifrem", "geo": null, "id": 147362405494685700, "id_str": "147362405494685696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/53878772/emil-profile-arlanda-2007-08-18-cropped_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/53878772/emil-profile-arlanda-2007-08-18-cropped_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @peterneubauer: New JDBC Driver (yes that's right!) for @neo4j by @rickardoberg. Testing help needed! http://t.co/b8XvGoph #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:04:35 +0000", "from_user": "dsolsona", "from_user_id": 14072958, "from_user_id_str": "14072958", "from_user_name": "dsolsona", "geo": null, "id": 147361424052727800, "id_str": "147361424052727808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: \\u267B Muscula Architecture: Node.js, MongoDB, and CDN http://t.co/mIpiBZrk #Node.js #MongoDB #PoweredbyNoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:04:10 +0000", "from_user": "cbautista1986", "from_user_id": 46025986, "from_user_id_str": "46025986", "from_user_name": "Cristian Bautista ", "geo": null, "id": 147361317743890430, "id_str": "147361317743890432", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/964109810/n1092665553_30039436_1091_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/964109810/n1092665553_30039436_1091_normal.jpg", "source": "<a href="http://www.alphonsolabs.com/" rel="nofollow">Pulse News</a>", "text": "Tutorial de Neo4j (NOSQL Enterprise database) + Heroku + Google Calc - [Video, ingl\\u00E9s] http://t.co/CPXkwqh6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:01:56 +0000", "from_user": "RubyJobsEu", "from_user_id": 403337317, "from_user_id_str": "403337317", "from_user_name": "RubyJobsEu", "geo": +{"coordinates": [42.2708,83.8087], "type": "Point"}, "id": 147360753861664770, "id_str": "147360753861664768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1620564677/ruby_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620564677/ruby_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "AWARD Winning Company wants Ruby on Rails! at Cybercoders (Ann Arbor, MI): Ajax, NoSQL, MongoDB AWARD Winning Co... http://t.co/geaZHlhe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 16:59:29 +0000", "from_user": "dblockdotorg", "from_user_id": 210932450, "from_user_id_str": "210932450", "from_user_name": "Daniel Doubrovkine", "geo": null, "id": 147360137521278980, "id_str": "147360137521278977", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1157542777/13118-DSC_5535_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1157542777/13118-DSC_5535_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@sam_10gen @mongodb yes, we'll have a session on ActiveRecord and will use MongoDB as a NoSQL example", "to_user": "sam_10gen", "to_user_id": 293016538, "to_user_id_str": "293016538", "to_user_name": "Samantha", "in_reply_to_status_id": 147357344324530180, "in_reply_to_status_id_str": "147357344324530176"}, +{"created_at": "Thu, 15 Dec 2011 16:58:10 +0000", "from_user": "mattnowina", "from_user_id": 103869545, "from_user_id_str": "103869545", "from_user_name": "Matt Nowina", "geo": null, "id": 147359808398434300, "id_str": "147359808398434304", "iso_language_code": "eo", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1310193735/eightbit-9aa6f9af-a52d-4215-97f5-8ae5720906f1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1310193735/eightbit-9aa6f9af-a52d-4215-97f5-8ae5720906f1_normal.png", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "Redis Bitmaps for Real-Time Metrics at Spool http://t.co/E66vuKo6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 16:47:02 +0000", "from_user": "ThibArg", "from_user_id": 73433446, "from_user_id_str": "73433446", "from_user_name": "Thibaud Arguillere", "geo": null, "id": 147357007463202800, "id_str": "147357007463202816", "iso_language_code": "is", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1588190673/Thibaud_AP-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1588190673/Thibaud_AP-2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Yeah! #Wakanda v1 beta is reaaaaady! wakanda.org #ssjs #javascript #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 16:45:48 +0000", "from_user": "wso2", "from_user_id": 15594932, "from_user_id_str": "15594932", "from_user_name": "wso2", "geo": null, "id": 147356696015151100, "id_str": "147356696015151104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/57207794/wso2-logo-twitter_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/57207794/wso2-logo-twitter_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "WSO2Con 2011: Data in your SOA: From SQL to NoSQL and Beyond - Sumedha Rubasighe http://t.co/LRb7aeAe #wso2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 16:20:45 +0000", "from_user": "jaganadhg", "from_user_id": 100505040, "from_user_id_str": "100505040", "from_user_name": "Jaganadh G", "geo": null, "id": 147350389354807300, "id_str": "147350389354807296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1341146774/16042011044ngjhghj__copy__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1341146774/16042011044ngjhghj__copy__normal.jpg", "source": "<a href="https://launchpad.net/gwibber" rel="nofollow">Gwibber-Fedora</a>", "text": "\\u267A @mongodb: MongoDB 2.0.2 Released http://t.co/H3dMwzgj #MongoDB #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 16:17:08 +0000", "from_user": "dieswaytoofast", "from_user_id": 312604736, "from_user_id_str": "312604736", "from_user_name": "Mahesh P-Subramanya", "geo": null, "id": 147349481258631170, "id_str": "147349481258631168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1572400317/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572400317/Untitled_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Seriously, why *would* you do it? (Use Heroku's Postgres _outside_ Heroku) http://t.co/BEwJ6ncO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 16:05:10 +0000", "from_user": "Denise_Cornell", "from_user_id": 379150862, "from_user_id_str": "379150862", "from_user_name": "Denise Cornell", "geo": null, "id": 147346468255182850, "id_str": "147346468255182848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695358670/denise-0010_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695358670/denise-0010_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@solo_ifr is like my personal tech Google. I ask him things like What's the \"No\" in NoSQL? & What does it mean to normalize data?", "to_user": "solo_ifr", "to_user_id": 108155373, "to_user_id_str": "108155373", "to_user_name": "Charles Cornell"}, +{"created_at": "Thu, 15 Dec 2011 16:00:33 +0000", "from_user": "emilsit", "from_user_id": 13027552, "from_user_id_str": "13027552", "from_user_name": "Emil Sit", "geo": null, "id": 147345306827239420, "id_str": "147345306827239424", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/713084639/es_20100220_0016_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/713084639/es_20100220_0016_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: 8 Most Interesting Companies for Hadoop's Future http://t.co/DGjsMLzh #Hadoop #Cloudera #Hortonworks #MapR #Hadapt #HPCC #DataStax #Zettaset", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:56:27 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 147344276542595070, "id_str": "147344276542595072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "\\u201C@roidrage: @al3xandru aren't these Qs the same for any hosted DB service? <- they are, but I wanted to place'em in ctx http://t.co/ukppbjMU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:53:09 +0000", "from_user": "BigDataExpo", "from_user_id": 408440808, "from_user_id_str": "408440808", "from_user_name": "BigDataExpo\\u00A9", "geo": null, "id": 147343446653415420, "id_str": "147343446653415424", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1630353587/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630353587/image_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: 8 Most Interesting Companies for Hadoop's Future http://t.co/DGjsMLzh #Hadoop #Cloudera #Hortonworks #MapR #Hadapt #HPCC #DataStax #Zettaset", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:51:24 +0000", "from_user": "hpccsystems", "from_user_id": 136416356, "from_user_id_str": "136416356", "from_user_name": "HPCC Systems", "geo": null, "id": 147343005844647940, "id_str": "147343005844647936", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1385998591/hpccsystems_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1385998591/hpccsystems_twitter_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: 8 Most Interesting Companies for Hadoop's Future http://t.co/DGjsMLzh #Hadoop #Cloudera #Hortonworks #MapR #Hadapt #HPCC #DataStax #Zettaset", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:49:45 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 147342588167454720, "id_str": "147342588167454721", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "Standalone Heroku Postgres' Unanswered Question http://t.co/VdrPL3u8 #PostgreSQL #Heroku #Data-as-a-Service #DaaS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:41:34 +0000", "from_user": "FrancisShanahan", "from_user_id": 15757363, "from_user_id_str": "15757363", "from_user_name": "Francis Shanahan", "geo": null, "id": 147340530051842050, "id_str": "147340530051842049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/108638524/fs_sq_73_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/108638524/fs_sq_73_normal.png", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Really nice summary of #NoSql space from @twthoughts http://t.co/4JSbdAQF @martinfowler", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:38:05 +0000", "from_user": "itworks", "from_user_id": 12643712, "from_user_id_str": "12643712", "from_user_name": "I.T. Works (Patrick)", "geo": null, "id": 147339652544725000, "id_str": "147339652544724992", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1350509294/PATRICKVANRENTERGHEMsquare2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1350509294/PATRICKVANRENTERGHEMsquare2_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Big Data in 2012: Five Predictions - Forbes http://t.co/Qk7TVpnq #bigdata #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:35:09 +0000", "from_user": "mclampy", "from_user_id": 139811258, "from_user_id_str": "139811258", "from_user_name": "Darin Lampson", "geo": null, "id": 147338914200432640, "id_str": "147338914200432640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/879112263/images_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/879112263/images_normal.jpeg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@dbouwman EF makes it so easy to get going. However, I have just run into issues and missed NH. These days I am moving to nosql options", "to_user": "dbouwman", "to_user_id": 2774911, "to_user_id_str": "2774911", "to_user_name": "Dave Bouwman", "in_reply_to_status_id": 147337543153754100, "in_reply_to_status_id_str": "147337543153754113"}, +{"created_at": "Thu, 15 Dec 2011 15:34:50 +0000", "from_user": "robertfriberg", "from_user_id": 28348118, "from_user_id_str": "28348118", "from_user_name": "Robert Friberg", "geo": null, "id": 147338837708914700, "id_str": "147338837708914688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/119040694/robert_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/119040694/robert_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Best NoSQL article ever by @rickyphyllis http://t.co/bgsenbdX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:30:24 +0000", "from_user": "ajfeed", "from_user_id": 260762269, "from_user_id_str": "260762269", "from_user_name": "Ajinkya Feed", "geo": null, "id": 147337720472158200, "id_str": "147337720472158208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "CompSci Standalone Heroku Postgres' Unanswered Question: While the offer is clear and valuable in itself:\\n99.99%... http://t.co/k9qaNWjz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:24:25 +0000", "from_user": "7lucaseduardo", "from_user_id": 328646264, "from_user_id_str": "328646264", "from_user_name": "# lucas maksemovicz", "geo": null, "id": 147336214326951940, "id_str": "147336214326951936", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690039515/twwwittttttttttttttttttttttttt_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690039515/twwwittttttttttttttttttttttttt_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @fernaando: @danielvlopes estou procurando devs em rails, nivel mais avan\\u00E7ado, que ja estejam trabalhando com NoSQL e etc. Tem pra indicar? Abra\\u00E7os", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:20:26 +0000", "from_user": "mynosql_popescu", "from_user_id": 197901055, "from_user_id_str": "197901055", "from_user_name": "myNoSQL", "geo": null, "id": 147335212412583940, "id_str": "147335212412583936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Standalone Heroku Postgres' Unanswered Question: While the offer is clear and valuable in itself:\\n99.99% uptime\\n... http://t.co/0cfAAbVO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:08:48 +0000", "from_user": "techforn10", "from_user_id": 38720166, "from_user_id_str": "38720166", "from_user_name": "Ashwin Kumar Kayyoor", "geo": null, "id": 147332283991474180, "id_str": "147332283991474176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/203526996/manip_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/203526996/manip_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @andreisavu: MySQL Cluster Used to Implement a Highly Available and Scalable Hadoop NodeName http://t.co/5Wgqcu5O", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:08:25 +0000", "from_user": "Cristalmzo", "from_user_id": 434891724, "from_user_id_str": "434891724", "from_user_name": "Justin Lara", "geo": null, "id": 147332188529106940, "id_str": "147332188529106944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693189110/1037698932_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693189110/1037698932_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "InfoQ: Oracle Joins the NoSQL Club:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:05:39 +0000", "from_user": "StarcounterDB", "from_user_id": 117407475, "from_user_id_str": "117407475", "from_user_name": "Starcounter", "geo": null, "id": 147331492408852480, "id_str": "147331492408852480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1304542564/twsc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1304542564/twsc_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "An interesting look at the #NoSQL paradigm (via @sambit19) http://t.co/LWPTriUO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:04:52 +0000", "from_user": "clairedwillett", "from_user_id": 225147537, "from_user_id_str": "225147537", "from_user_name": "Claire Willett", "geo": null, "id": 147331295381434370, "id_str": "147331295381434368", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1617179992/profq_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1617179992/profq_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "\"8 Most Interesting Companies for #Hadoop\\u2019s Future\" @hadapt @datastax @cloudera @hstreaming @mapr @cloudera http://t.co/3K9JLaOG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 14:56:27 +0000", "from_user": "Viroide", "from_user_id": 6294472, "from_user_id_str": "6294472", "from_user_name": "Jon E. Eguiluz", "geo": null, "id": 147329177073352700, "id_str": "147329177073352704", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1560688479/avatar_new_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1560688479/avatar_new_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @dipina: Mi \\u00FAltimo curso (Curso NoSQL) publicado en slideshare: \"NoSQL: la siguiente generaci\\u00F3n de Base de Datos\", http://t.co/hZ92oi4R", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 14:45:09 +0000", "from_user": "mahdi", "from_user_id": 718993, "from_user_id_str": "718993", "from_user_name": "Mahdi Taghizadeh", "geo": null, "id": 147326333914071040, "id_str": "147326333914071040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697108280/violet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697108280/violet_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "EclipseLink JPA Proposal for Usage of NoSQL databases, incl. MongoDB, Hadoop, Cassandra, et al. http://t.co/nukHlixL #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 14:43:49 +0000", "from_user": "kampees", "from_user_id": 73797545, "from_user_id_str": "73797545", "from_user_name": "Kampee", "geo": null, "id": 147325998898221060, "id_str": "147325998898221058", "iso_language_code": "th", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700631203/k1_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700631203/k1_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "MongoDB 2.0.2 \\u0E40\\u0E1E\\u0E34\\u0E48\\u0E07\\u0E2D\\u0E31\\u0E1A\\u0E40\\u0E14\\u0E15\\u0E43\\u0E2B\\u0E21\\u0E48 \\u0E2A\\u0E33\\u0E2B\\u0E23\\u0E31\\u0E1A\\u0E42\\u0E1B\\u0E23\\u0E41\\u0E01\\u0E23\\u0E21\\u0E40\\u0E21\\u0E2D\\u0E23\\u0E4C\\u0E17\\u0E35\\u0E48\\u0E43\\u0E0A\\u0E49 NoSQL \\u0E2A\\u0E32\\u0E21\\u0E32\\u0E23\\u0E16\\u0E44\\u0E1B\\u0E2D\\u0E31\\u0E1A\\u0E40\\u0E01\\u0E23\\u0E14\\u0E44\\u0E14\\u0E49\\u0E41\\u0E25\\u0E49\\u0E27", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 14:39:06 +0000", "from_user": "dev_links", "from_user_id": 309995604, "from_user_id_str": "309995604", "from_user_name": "Joe Fawzy", "geo": null, "id": 147324808781234180, "id_str": "147324808781234176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "EclipseLink JPA Proposal for Usage of NoSQL databases, incl. MongoDB, Hadoop, Cassandra, et al http://t.co/omrevZBo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 14:33:04 +0000", "from_user": "elie_h", "from_user_id": 61969137, "from_user_id_str": "61969137", "from_user_name": "Elie Habib", "geo": null, "id": 147323292808785920, "id_str": "147323292808785921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1631821626/photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631821626/photo_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "NoSQL bad for startups - read till the end. Epic ! http://t.co/7gtbjpN3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 14:30:23 +0000", "from_user": "kodfejtok", "from_user_id": 425065563, "from_user_id_str": "425065563", "from_user_name": "K\\u00F3dfejt\\u0151k", "geo": null, "id": 147322616754090000, "id_str": "147322616754089984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1666022815/kodfejtok_square_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666022815/kodfejtok_square_logo_normal.jpg", "source": "<a href="http://www.ajaymatharu.com/" rel="nofollow">Tweet Old Post</a>", "text": "H\\u00EDrek,... http://t.co/tq1XBfp9 #adatb\\u00E1zis #android #bugs #gnome #hack #hib\\u00E1k #ice_cream_sandwich #instagram #lockpick #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 14:25:28 +0000", "from_user": "NateOsit", "from_user_id": 17974442, "from_user_id_str": "17974442", "from_user_name": "Nate Osit", "geo": null, "id": 147321378813640700, "id_str": "147321378813640705", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1372856436/nate_avatar_hcsmvac_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1372856436/nate_avatar_hcsmvac_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @InterSystems: Congratulations to @antoshalee, winner of the@InterSystems 2nd Globals Challenge! - http://t.co/aKuMAeiC - #NoSQL #DBMS #Java #Node.js", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 14:17:14 +0000", "from_user": "andreisavu", "from_user_id": 14943648, "from_user_id_str": "14943648", "from_user_name": "Andrei Savu", "geo": null, "id": 147319308970770430, "id_str": "147319308970770432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1488349563/IMG_0279_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1488349563/IMG_0279_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "MySQL Cluster Used to Implement a Highly Available and Scalable Hadoop NodeName http://t.co/5Wgqcu5O", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 14:08:38 +0000", "from_user": "mynosql_popescu", "from_user_id": 197901055, "from_user_id_str": "197901055", "from_user_name": "myNoSQL", "geo": null, "id": 147317141878734850, "id_str": "147317141878734849", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "8 Most Interesting Companies for Hadoop's Future: Filtering and augmenting a Q&A on Quora:\\nCloudera: Hadoop dist... http://t.co/3jQJMb1C", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 14:08:36 +0000", "from_user": "realtowz", "from_user_id": 17737123, "from_user_id_str": "17737123", "from_user_name": "Alex", "geo": null, "id": 147317133083291650, "id_str": "147317133083291648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694320075/dennis-the-menace-downloads-271_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694320075/dennis-the-menace-downloads-271_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "I have just seen the light #noSQL #mongodb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 14:05:38 +0000", "from_user": "zenithon", "from_user_id": 5204801, "from_user_id_str": "5204801", "from_user_name": "Joo Youl Lee", "geo": null, "id": 147316389286395900, "id_str": "147316389286395904", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/940608128/jylee4tw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/940608128/jylee4tw_normal.jpg", "source": "Zite Personalized Magazine", "text": "Cassandra, HBase, MongoDB \\uC7A5\\uC560 \\uB300\\uC751 \\uBA54\\uCEE4\\uB2C8\\uC998 http://t.co/ezjisNhP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 14:01:45 +0000", "from_user": "boom1492", "from_user_id": 109881232, "from_user_id_str": "109881232", "from_user_name": "\\uC774\\uC815\\uD604", "geo": null, "id": 147315411136954370, "id_str": "147315411136954368", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1554864133/7R309VOs_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554864133/7R309VOs_normal", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "RT @xguru: 2012 \\uD074\\uB77C\\uC6B0\\uB4DC,PaaS,NoSQL \\uC608\\uC0C1 http://t.co/8C9E6u0D \\uD074\\uB77C\\uC6B0\\uB4DC\\uB294 \\uC0AC\\uC6A9\\uC790\\uC5D0\\uAC8C iCloud/Dropbox\\uCC98\\uB7FC \\uC548\\uBCF4\\uC774\\uAC8C \\uB2E4\\uAC00\\uC624\\uACE0, \\uBAA8\\uBC14\\uC77C \\uAE30\\uAE30 \\uACE0\\uB3C4\\uD654\\uB97C \\uC704\\uD574 \\uD074\\uB77C\\uC6B0\\uB4DC\\uB97C \\uBC31\\uC5D4\\uB4DC\\uB85C \\uC0AC\\uC6A9\\uD558\\uB294 \\uBAA8\\uC2B5\\uC774 \\uB9CE\\uC544\\uC9C8\\uAC83", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 13:59:15 +0000", "from_user": "zenithon", "from_user_id": 5204801, "from_user_id_str": "5204801", "from_user_name": "Joo Youl Lee", "geo": null, "id": 147314782553387000, "id_str": "147314782553387009", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/940608128/jylee4tw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/940608128/jylee4tw_normal.jpg", "source": "Zite Personalized Magazine", "text": "2012\\uB144 Cloud, BigData \\uAE30\\uC220 \\uC804\\uB9DD http://t.co/3W7DY8UA \\uC62C\\uD574\\uC5D0 \\uC774\\uC5B4 \\uB0B4\\uB144\\uC5D0\\uB3C4 BigData App. Platform\\uC758 \\uD544\\uC694\\uC131\\uC744 \\uC8FC\\uC7A5\\uD558\\uB294\\uAD70\\uC694", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 13:59:12 +0000", "from_user": "COTOHA", "from_user_id": 20502974, "from_user_id_str": "20502974", "from_user_name": "COTOHA", "geo": null, "id": 147314766896042000, "id_str": "147314766896041985", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1621085935/cotoha_sad_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621085935/cotoha_sad_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@_TLK \\u043C\\u0434\\u0435... \\u0432\\u043E\\u0442 \\u0442\\u044B \\u0442\\u0430\\u043A \\u0436\\u0435 \\u0443 \\u043D\\u0430\\u0447\\u0430\\u043B\\u044C\\u0441\\u0442\\u0432\\u0430 \\u0431\\u0443\\u0434\\u0435\\u0448\\u044C \\u0440\\u0430\\u0437\\u0440\\u0435\\u0448\\u0435\\u043D\\u0438\\u044F \\u0441\\u043F\\u0440\\u0430\\u0448\\u0438\\u0432\\u0430\\u0442\\u044C \\u043D\\u0430 NoSQL? \\u0434\\u0435\\u043B\\u0430\\u0439, \\u0431\\u043B\\u0438\\u043D! \\u0430 \\u043F\\u043E\\u0442\\u043E\\u043C, \\u0435\\u0441\\u043B\\u0438 \\u0447\\u0442\\u043E, \\u0438\\u0437\\u0432\\u0438\\u043D\\u0438\\u0448\\u044C\\u0441\\u044F...", "to_user": "_TLK", "to_user_id": 111316503, "to_user_id_str": "111316503", "to_user_name": "Anatoliy Kolesnick", "in_reply_to_status_id": 147311253503754240, "in_reply_to_status_id_str": "147311253503754241"}, +{"created_at": "Thu, 15 Dec 2011 13:56:04 +0000", "from_user": "mattnowina", "from_user_id": 103869545, "from_user_id_str": "103869545", "from_user_name": "Matt Nowina", "geo": null, "id": 147313981126754300, "id_str": "147313981126754305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1310193735/eightbit-9aa6f9af-a52d-4215-97f5-8ae5720906f1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1310193735/eightbit-9aa6f9af-a52d-4215-97f5-8ae5720906f1_normal.png", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "Spotify Architecture: The Peer to Peer Network http://t.co/0PbfkdKi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 13:42:24 +0000", "from_user": "zucaritask", "from_user_id": 50553371, "from_user_id_str": "50553371", "from_user_name": "Mariano Valles", "geo": null, "id": 147310540862144500, "id_str": "147310540862144512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/281355691/foto3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/281355691/foto3_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "After a post by @lalithsuresh http://t.co/bEn3lulp, I can't believe the repercussions http://t.co/Acflc00J", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 13:37:53 +0000", "from_user": "OraTweets", "from_user_id": 90651613, "from_user_id_str": "90651613", "from_user_name": "Iggy Fernandez", "geo": null, "id": 147309402431561730, "id_str": "147309402431561728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/531065932/Iggy_Fernandez_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/531065932/Iggy_Fernandez_normal.JPG", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @atmanes: A DBA walks into a NOSQL bar, but turns and leaves because he couldn't find a table - via @cuttertweets and many others.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 13:29:04 +0000", "from_user": "mandubian", "from_user_id": 200653266, "from_user_id_str": "200653266", "from_user_name": "mandubian", "geo": null, "id": 147307185280520200, "id_str": "147307185280520193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1140994143/lampe_588x368_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1140994143/lampe_588x368_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Zenklys As usual, there will be modules for each NoSQL DB at least! Mongo already works with it afaik!", "to_user": "Zenklys", "to_user_id": 39550728, "to_user_id_str": "39550728", "to_user_name": "Michiel Missotten", "in_reply_to_status_id": 147306573507731460, "in_reply_to_status_id_str": "147306573507731456"}, +{"created_at": "Thu, 15 Dec 2011 13:26:38 +0000", "from_user": "Zenklys", "from_user_id": 39550728, "from_user_id_str": "39550728", "from_user_name": "Michiel Missotten", "geo": null, "id": 147306573507731460, "id_str": "147306573507731456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1164264095/Logo-lilweb_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1164264095/Logo-lilweb_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@mandubian Btw any news about NoSQL and Play2?", "to_user": "mandubian", "to_user_id": 200653266, "to_user_id_str": "200653266", "to_user_name": "mandubian", "in_reply_to_status_id": 147305437346275330, "in_reply_to_status_id_str": "147305437346275328"}, +{"created_at": "Thu, 15 Dec 2011 13:23:03 +0000", "from_user": "QuarkGluonHQ", "from_user_id": 360557721, "from_user_id_str": "360557721", "from_user_name": "QuarkGluon", "geo": null, "id": 147305671870775300, "id_str": "147305671870775297", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1510010027/twitter_logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1510010027/twitter_logo_normal.png", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: MySQL Cluster Used to Implement a Highly Available and Scalable Hadoop NodeName http://t.co/jd3lo3Dh #MySQLCluster #Hadoop #HDFS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 13:22:07 +0000", "from_user": "mandubian", "from_user_id": 200653266, "from_user_id_str": "200653266", "from_user_name": "mandubian", "geo": null, "id": 147305437346275330, "id_str": "147305437346275328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1140994143/lampe_588x368_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1140994143/lampe_588x368_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Zenklys NoSQL was fresh air injected into the stale SQL DB cartel! Only this argument makes it worth ;)", "to_user": "Zenklys", "to_user_id": 39550728, "to_user_id_str": "39550728", "to_user_name": "Michiel Missotten", "in_reply_to_status_id": 147303113227907070, "in_reply_to_status_id_str": "147303113227907072"}, +{"created_at": "Thu, 15 Dec 2011 13:12:53 +0000", "from_user": "Zenklys", "from_user_id": 39550728, "from_user_id_str": "39550728", "from_user_name": "Michiel Missotten", "geo": null, "id": 147303113227907070, "id_str": "147303113227907072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1164264095/Logo-lilweb_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1164264095/Logo-lilweb_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Very nice comments on this posts. The first two to be precise : http://t.co/q2HpCamm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 13:11:31 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 147302766858084350, "id_str": "147302766858084352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "MySQL Cluster Used to Implement a Highly Available and Scalable Hadoop NodeName http://t.co/jd3lo3Dh #MySQLCluster #Hadoop #HDFS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 13:07:26 +0000", "from_user": "joeharris76", "from_user_id": 18681946, "from_user_id_str": "18681946", "from_user_name": "Joe Harris", "geo": null, "id": 147301740016975870, "id_str": "147301740016975873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691544593/new_profile_square_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691544593/new_profile_square_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Hyder NoSQL DB \"The log is the database.\" http://t.co/ghsJ9d6J\\nLike! Uses binary search tree, rather than stratified b-tree a la @Acunu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 13:05:02 +0000", "from_user": "saltfactory", "from_user_id": 20606823, "from_user_id_str": "20606823", "from_user_name": "saltfactory", "geo": null, "id": 147301136934764540, "id_str": "147301136934764544", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1130313161/000001_140_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1130313161/000001_140_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@doortts \\u314B\\u314B \\uC800\\uB3C4 \\uBA70\\uCE60\\uC804\\uC5D0 \\uADF8 \\uACE0\\uBBFC\\uD558\\uB2E4\\uAC00 MySQL\\uB85C \\uC2DC\\uC791\\uD588\\uC2B5\\uB2C8\\uB2E4. \\uACB0\\uB860\\uC740 NoSQL\\uC774 \\uC4F0\\uC77C\\uACF3\\uC5D0 NoSQL\\uC744 \\uC4F0\\uBA74\\uB418\\uACE0 \\uAD73\\uC774 MySQL\\uB85C \\uC11C\\uBE44\\uC2A4\\uAC00 \\uBB38\\uC81C \\uC5C6\\uB294\\uB370 \\uBB34\\uB9AC\\uD574\\uC11C \\uC2DC\\uB3C4\\uD558\\uC9C0 \\uB9D0\\uC790\\uB294\\uAC8C \\uACB0\\uB860\\uC774\\uC600\\uC2B5\\uB2C8\\uB2E4~", "to_user": "doortts", "to_user_id": 53479782, "to_user_id_str": "53479782", "to_user_name": "\\uC5EC\\uB984\\uC73C\\uB85C \\uAC00\\uB294 \\uBB38"}, +{"created_at": "Thu, 15 Dec 2011 13:04:19 +0000", "from_user": "scroogy_choi", "from_user_id": 86291811, "from_user_id_str": "86291811", "from_user_name": "\\uCD5C\\uC601\\uBAA9", "geo": null, "id": 147300955845701630, "id_str": "147300955845701632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1251201717/myPicture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1251201717/myPicture_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"HBase, Cassandra, and MongoDB - How They Recover From a Failure\" http://t.co/tVxBQJj5 #HBase #Cassandra #MongoDB #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 13:01:16 +0000", "from_user": "Zenklys", "from_user_id": 39550728, "from_user_id_str": "39550728", "from_user_name": "Michiel Missotten", "geo": null, "id": 147300187721842700, "id_str": "147300187721842688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1164264095/Logo-lilweb_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1164264095/Logo-lilweb_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@clemherreman Check this out about the ChtiJug NoSQL : http://t.co/zW4lPie4", "to_user": "clemherreman", "to_user_id": 126346874, "to_user_id_str": "126346874", "to_user_name": "Cl\\u00E9ment Herreman"}, +{"created_at": "Thu, 15 Dec 2011 12:58:00 +0000", "from_user": "sshishkin", "from_user_id": 126725290, "from_user_id_str": "126725290", "from_user_name": "Sergey Shishkin", "geo": null, "id": 147299367550849020, "id_str": "147299367550849024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/777292604/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/777292604/me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nosqlmatters: Our new website is online! From now on you can find current information about the #nosql #conference #2012 here: http://t.co/aYrAfS7l", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 12:56:25 +0000", "from_user": "enterprise4c", "from_user_id": 426729470, "from_user_id_str": "426729470", "from_user_name": "enterprise4c", "geo": null, "id": 147298967556853760, "id_str": "147298967556853760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1669844035/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669844035/images_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"HBase, Cassandra, and MongoDB - How They Recover From a Failure\" http://t.co/tVxBQJj5 #HBase #Cassandra #MongoDB #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 12:56:24 +0000", "from_user": "beyond4ee", "from_user_id": 410516547, "from_user_id_str": "410516547", "from_user_name": "taeki.kim", "geo": null, "id": 147298964880883700, "id_str": "147298964880883712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1634760269/kimTK_reasonably_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634760269/kimTK_reasonably_small_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"HBase, Cassandra, and MongoDB - How They Recover From a Failure\" http://t.co/tVxBQJj5 #HBase #Cassandra #MongoDB #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 12:56:23 +0000", "from_user": "enterprise4j", "from_user_id": 236021267, "from_user_id_str": "236021267", "from_user_name": "Enterprise4J", "geo": null, "id": 147298959948394500, "id_str": "147298959948394496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1635237821/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635237821/logo_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"HBase, Cassandra, and MongoDB - How They Recover From a Failure\" http://t.co/tVxBQJj5 #HBase #Cassandra #MongoDB #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 12:56:20 +0000", "from_user": "beyondj2ee", "from_user_id": 57343233, "from_user_id_str": "57343233", "from_user_name": "Taeki Kim", "geo": null, "id": 147298945817788400, "id_str": "147298945817788416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690404774/kimTK_reasonably_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690404774/kimTK_reasonably_small_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"HBase, Cassandra, and MongoDB - How They Recover From a Failure\" http://t.co/tVxBQJj5 #HBase #Cassandra #MongoDB #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 12:53:02 +0000", "from_user": "paranoiase", "from_user_id": 30003059, "from_user_id_str": "30003059", "from_user_name": "\\uAC15\\uC131\\uD76C", "geo": null, "id": 147298117228834800, "id_str": "147298117228834816", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685286319/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685286319/profile_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @doortts: \\uC2E0\\uADDC \\uC11C\\uBE44\\uC2A4\\uC5D0 NoSQL\\uC744 \\uC4F8 \\uAC83\\uC778\\uAC00? \\uC544\\uB2C8\\uBA74 MySQL\\uAC19\\uC740 RDBMS\\uB97C \\uC4F8 \\uAC83\\uC778\\uAC00?\\uC5D0 \\uB300\\uD55C \\uACE0\\uBBFC\\uC740 \\uBCF8\\uC778\\uC758 \\uC11C\\uBE44\\uC2A4\\uAC00 \\uC0AC\\uB78C\\uB4E4\\uC5D0\\uAC8C (\\uBB34\\uC9C0)\\uB9CE\\uC774 \\uC4F0\\uC774\\uACE0 \\uB098\\uC11C \\uACE0\\uBBFC\\uD574\\uB3C4 \\uB2A6\\uC9C0 \\uC54A\\uB2E4. \\uADF8\\uB9AC\\uB2C8 \\uC6B0\\uC120\\uC740 \\uCF54\\uB4DC\\uBD80\\uD130 \\uC880 \\uC791\\uC131\\uC744...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 12:51:14 +0000", "from_user": "ewolff", "from_user_id": 15058614, "from_user_id_str": "15058614", "from_user_name": "Eberhard Wolff", "geo": null, "id": 147297664608907260, "id_str": "147297664608907264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/55233631/portraetminineu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/55233631/portraetminineu_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nosqlmatters: Our new website is online! From now on you can find current information about the #nosql #conference #2012 here: http://t.co/aYrAfS7l", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 12:50:41 +0000", "from_user": "pavlobaron", "from_user_id": 70747148, "from_user_id_str": "70747148", "from_user_name": "Pavlo Baron", "geo": null, "id": 147297528029777920, "id_str": "147297528029777920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1670021014/bad-santa-free_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670021014/bad-santa-free_3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nosqlmatters: Our new website is online! From now on you can find current information about the #nosql #conference #2012 here: http://t.co/aYrAfS7l", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 12:42:35 +0000", "from_user": "TopDevTweets", "from_user_id": 194520782, "from_user_id_str": "194520782", "from_user_name": "TopDevTweets", "geo": null, "id": 147295486167105540, "id_str": "147295486167105538", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DZone: \"HBase, Cassandra, and MongoDB - How They Recover From a Failure\" http://t.co/tVxBQJj5 #HBase #Cassandra #MongoDB #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 12:39:36 +0000", "from_user": "AyuuFebrina", "from_user_id": 105988800, "from_user_id_str": "105988800", "from_user_name": "Ayu Febrina", "geo": +{"coordinates": [0.5444,101.4177], "type": "Point"}, "id": 147294738716966900, "id_str": "147294738716966912", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674923827/ggggg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674923827/ggggg_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @INDOBARCELONA: FT: Bar\\u00E7a 4 - 0 Al-sadd (Adriano 2, keita, Maxwell. Next Final vs Santos #ViscaBarca #AnimsVilla http://t.co/To7mgJWf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 12:36:57 +0000", "from_user": "okiess", "from_user_id": 24673, "from_user_id_str": "24673", "from_user_name": "Oliver Kiessler", "geo": null, "id": 147294070476247040, "id_str": "147294070476247040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/15228652/oli128_128_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/15228652/oli128_128_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nosqlmatters: Our new website is online! From now on you can find current information about the #nosql #conference #2012 here: http://t.co/aYrAfS7l", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 12:35:08 +0000", "from_user": "belowski", "from_user_id": 14762518, "from_user_id_str": "14762518", "from_user_name": "Patrick Belowski", "geo": null, "id": 147293611527114750, "id_str": "147293611527114752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/569479575/cdc1f909a.3181454_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/569479575/cdc1f909a.3181454_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nosqlmatters: Our new website is online! From now on you can find current information about the #nosql #conference #2012 here: http://t.co/aYrAfS7l", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 12:34:06 +0000", "from_user": "nosqlmatters", "from_user_id": 356704483, "from_user_id_str": "356704483", "from_user_name": "NoSQL Conference CGN", "geo": null, "id": 147293350528172030, "id_str": "147293350528172032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694725716/F105300787_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694725716/F105300787_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Our new website is online! From now on you can find current information about the #nosql #conference #2012 here: http://t.co/aYrAfS7l", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 12:27:08 +0000", "from_user": "hstef", "from_user_id": 20662303, "from_user_id_str": "20662303", "from_user_name": "Hubert STEFANI", "geo": null, "id": 147291599859224580, "id_str": "147291599859224576", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/669885233/logoHbz_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/669885233/logoHbz_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "petit dej' @OCTOTechonlogy: tr\\u00E8s belle pr\\u00E9sentation des enjeux et paradigmes #NoSQL, puis SQLFire en solution performante et scalable.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 12:22:55 +0000", "from_user": "alessioalex", "from_user_id": 159135821, "from_user_id_str": "159135821", "from_user_name": "alessio alex", "geo": null, "id": 147290539170074620, "id_str": "147290539170074624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1020302694/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1020302694/avatar_normal.jpg", "source": "<a href="http://proxlet.com" rel="nofollow">Proxlet</a>", "text": "NoSQL is bad for startups? Read this article: http://t.co/YcyJXoJE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 12:19:40 +0000", "from_user": "raul_herranz", "from_user_id": 382547020, "from_user_id_str": "382547020", "from_user_name": "Ra\\u00FAl Herranz", "geo": null, "id": 147289719124922370, "id_str": "147289719124922368", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1566341389/herranz_serrano_raul_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566341389/herranz_serrano_raul_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Ut\\u00F3pica Inform\\u00E1tica: Veo que por alg\\u00FAn problema no se hab\\u00EDa publicado aqu\\u00ED en twitter mi post de introducci\\u00F3n a #NoSQL: http://t.co/0yNeNNbU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 12:04:07 +0000", "from_user": "technige", "from_user_id": 120269446, "from_user_id_str": "120269446", "from_user_name": "Nigel Small", "geo": null, "id": 147285805671530500, "id_str": "147285805671530499", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1666826531/dragon-white.200x200_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666826531/dragon-white.200x200_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_adell: #Neo4jPHP 0.0.6-beta released! Fulltext indexing, named Cypher/Gremlin parameters http://t.co/Z7d1Btf6 #neo4j #graphdb #nosql #php", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 12:03:34 +0000", "from_user": "chananb", "from_user_id": 21512594, "from_user_id_str": "21512594", "from_user_name": "Chanan Braunstein", "geo": null, "id": 147285670610731000, "id_str": "147285670610731008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/225231315/us_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/225231315/us_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @RavenDB: New stable build is out http://t.co/XodioVhN #dotnet #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 11:55:29 +0000", "from_user": "cuerty", "from_user_id": 14997220, "from_user_id_str": "14997220", "from_user_name": "Angel Freire", "geo": null, "id": 147283636125835260, "id_str": "147283636125835264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1143092774/14108_1177760464776_1851074858_338185_5849247_s_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1143092774/14108_1177760464776_1851074858_338185_5849247_s_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @eitikimura: NoSql Benchmarking\\nhttp://t.co/1k9MgsGf\\n#cassandra, #mongodb, #hbase very informative", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 11:46:43 +0000", "from_user": "nawroth", "from_user_id": 8653792, "from_user_id_str": "8653792", "from_user_name": "Anders Nawroth", "geo": null, "id": 147281430022602750, "id_str": "147281430022602752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/523474573/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/523474573/avatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_adell: #Neo4jPHP 0.0.6-beta released! Fulltext indexing, named Cypher/Gremlin parameters http://t.co/Z7d1Btf6 #neo4j #graphdb #nosql #php", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 11:44:54 +0000", "from_user": "eitikimura", "from_user_id": 143991167, "from_user_id_str": "143991167", "from_user_name": "Eiti Kimura", "geo": null, "id": 147280972059127800, "id_str": "147280972059127808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1236823590/174117_100002017854386_2247361_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1236823590/174117_100002017854386_2247361_q_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSql Benchmarking\\nhttp://t.co/1k9MgsGf\\n#cassandra, #mongodb, #hbase very informative", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 11:30:40 +0000", "from_user": "iordanis_g", "from_user_id": 95617311, "from_user_id_str": "95617311", "from_user_name": "Iordanis Giannakakis", "geo": null, "id": 147277387778883600, "id_str": "147277387778883584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/568594366/Jor2_ht_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/568594366/Jor2_ht_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Using MySQL as NoSQL: http://t.co/IswpmrpY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 10:50:33 +0000", "from_user": "philjones88", "from_user_id": 72888516, "from_user_id_str": "72888516", "from_user_name": "Phil Jones", "geo": null, "id": 147267294530248700, "id_str": "147267294530248705", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1599161702/20111021_094600_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599161702/20111021_094600_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @RavenDB: New stable build is out http://t.co/XodioVhN #dotnet #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 10:49:00 +0000", "from_user": "AtosWorldline", "from_user_id": 403727654, "from_user_id_str": "403727654", "from_user_name": "Atos Worldline", "geo": null, "id": 147266905328201730, "id_str": "147266905328201728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1619491938/logo_worldline-carre_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619491938/logo_worldline-carre_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @Atos: Atos\\u2019 Scientific Community #whitepaper Understanding the capabilities and limits of NoSQL and distributed-computing technologies...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 10:29:44 +0000", "from_user": "antonioalegria", "from_user_id": 25085130, "from_user_id_str": "25085130", "from_user_name": "Ant\\u00F3nio Alegria", "geo": null, "id": 147262056737947650, "id_str": "147262056737947648", "iso_language_code": "eo", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1544454254/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544454254/avatar_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: \\u267B Redis Bitmaps for Real-Time Metrics at Spool http://t.co/cAvum5MA #Redis #PoweredbyNoSQL #Spool", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 09:31:34 +0000", "from_user": "sebprunier", "from_user_id": 145972643, "from_user_id_str": "145972643", "from_user_name": "S\\u00E9bastien PRUNIER", "geo": null, "id": 147247415345430530, "id_str": "147247415345430528", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1653935042/large_226306_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653935042/large_226306_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Ca traine pas sur http://t.co/uhLbPtFZ :-) http://t.co/Bv7WcSjk #hibernate #cloud /cc @nantesjug", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 09:23:23 +0000", "from_user": "rickardoberg", "from_user_id": 27801862, "from_user_id_str": "27801862", "from_user_name": "Rickard \\u00D6berg", "geo": null, "id": 147245359209512960, "id_str": "147245359209512960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/115713860/rickardcityface_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/115713860/rickardcityface_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @peterneubauer: New JDBC Driver (yes that's right!) for @neo4j by @rickardoberg. Testing help needed! http://t.co/NE7oiahf #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 09:10:06 +0000", "from_user": "haqen", "from_user_id": 281439302, "from_user_id_str": "281439302", "from_user_name": "Hakan", "geo": null, "id": 147242014658932740, "id_str": "147242014658932736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1630985055/avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630985055/avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Availability and Operational Stability of NoSQL\\nhttp://t.co/KMcTytSZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 09:04:52 +0000", "from_user": "steveworkman", "from_user_id": 15452755, "from_user_id_str": "15452755", "from_user_name": "Steve Workman", "geo": null, "id": 147240699010617340, "id_str": "147240699010617344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701827605/399012_1000765022322_61103614_47848744_122399880_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701827605/399012_1000765022322_61103614_47848744_122399880_n_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @simondring: What I learnt about building NoSQL solutions on Google App Engine: http://t.co/yxYMaop1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 09:02:58 +0000", "from_user": "enpresadigitala", "from_user_id": 76150626, "from_user_id_str": "76150626", "from_user_name": "Enpresa Digitala", "geo": null, "id": 147240220973211650, "id_str": "147240220973211648", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1268770895/enpresadigitala_tw_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1268770895/enpresadigitala_tw_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @dipina: Mi \\u00FAltimo curso (Curso NoSQL) publicado en slideshare: \"NoSQL: la siguiente generaci\\u00F3n de Base de Datos\", http://t.co/hZ92oi4R", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 08:59:48 +0000", "from_user": "mattsches", "from_user_id": 8056252, "from_user_id_str": "8056252", "from_user_name": "Matthias Gutjahr", "geo": null, "id": 147239422163816450, "id_str": "147239422163816448", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/701268270/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/701268270/twitterProfilePhoto_normal.jpg", "source": "<a href="https://launchpad.net/polly" rel="nofollow">Polly</a>", "text": "Haha! RT @svenkaemper: The hard Life of a NoSQL Coder - http://t.co/wWMtYSwI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 08:59:08 +0000", "from_user": "edhgoose", "from_user_id": 249246227, "from_user_id_str": "249246227", "from_user_name": "Ed Hartwell Goose", "geo": null, "id": 147239255024992260, "id_str": "147239255024992256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1451862407/image_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1451862407/image_normal.PNG", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @simondring: What I learnt about building NoSQL solutions on Google App Engine: http://t.co/yxYMaop1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 08:54:12 +0000", "from_user": "svenkaemper", "from_user_id": 15258237, "from_user_id_str": "15258237", "from_user_name": "Sven Kaemper", "geo": null, "id": 147238014752534530, "id_str": "147238014752534528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1130142230/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1130142230/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "The hard Life of a NoSQL Coder - http://t.co/cPwcQajH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 08:37:53 +0000", "from_user": "sniffdk", "from_user_id": 109310519, "from_user_id_str": "109310519", "from_user_name": "Mads Levring Krohn", "geo": null, "id": 147233907379671040, "id_str": "147233907379671041", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1494644157/me_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1494644157/me_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @RavenDB: New stable build is out http://t.co/XodioVhN #dotnet #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 08:37:47 +0000", "from_user": "adrianco", "from_user_id": 13895242, "from_user_id_str": "13895242", "from_user_name": "adrian cockcroft", "geo": null, "id": 147233882683613200, "id_str": "147233882683613184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688583582/zappa_front_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688583582/zappa_front_normal.jpeg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: \\u267B Card Payment Sytems and the CAP Theorem http://t.co/KI9MXpsU #NoSQLtheory #CAP #distributed", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 08:25:59 +0000", "from_user": "emilcardell", "from_user_id": 14047724, "from_user_id_str": "14047724", "from_user_name": "Emil Cardell", "geo": null, "id": 147230913372225540, "id_str": "147230913372225536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1489581283/twitter-pic_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1489581283/twitter-pic_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @RavenDB: New stable build is out http://t.co/XodioVhN #dotnet #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 08:20:09 +0000", "from_user": "amithegde", "from_user_id": 80529596, "from_user_id_str": "80529596", "from_user_name": "Amit", "geo": null, "id": 147229443428061200, "id_str": "147229443428061184", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1397245937/fb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1397245937/fb_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Intro to NoSQL: http://t.co/wkq8iMhk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 08:16:53 +0000", "from_user": "cfmendible", "from_user_id": 84275426, "from_user_id_str": "84275426", "from_user_name": "Carlos Mendible", "geo": null, "id": 147228621461921800, "id_str": "147228621461921792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1355753737/CFM_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1355753737/CFM_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @RavenDB: New stable build is out http://t.co/XodioVhN #dotnet #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 08:16:45 +0000", "from_user": "luca_julian", "from_user_id": 327896271, "from_user_id_str": "327896271", "from_user_name": "Luca Zulian", "geo": null, "id": 147228590151438340, "id_str": "147228590151438336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1423199319/2PARIS_10marzo-16marzo_2011_043_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1423199319/2PARIS_10marzo-16marzo_2011_043_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @RavenDB: New stable build is out http://t.co/XodioVhN #dotnet #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 08:12:19 +0000", "from_user": "RavenDB", "from_user_id": 331695242, "from_user_id_str": "331695242", "from_user_name": "RavenDB", "geo": null, "id": 147227473644494850, "id_str": "147227473644494848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1438347989/RavenDBliconBurgandy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1438347989/RavenDBliconBurgandy_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "New stable build is out http://t.co/XodioVhN #dotnet #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 08:06:01 +0000", "from_user": "nexruby", "from_user_id": 23553828, "from_user_id_str": "23553828", "from_user_name": "\\uBC15\\uC0C1\\uC8FC(Sangju Park)", "geo": null, "id": 147225885840392200, "id_str": "147225885840392192", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697687104/image_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697687104/image_normal", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "RT @xguru: 2012 \\uD074\\uB77C\\uC6B0\\uB4DC,PaaS,NoSQL \\uC608\\uC0C1 http://t.co/8C9E6u0D \\uD074\\uB77C\\uC6B0\\uB4DC\\uB294 \\uC0AC\\uC6A9\\uC790\\uC5D0\\uAC8C iCloud/Dropbox\\uCC98\\uB7FC \\uC548\\uBCF4\\uC774\\uAC8C \\uB2E4\\uAC00\\uC624\\uACE0, \\uBAA8\\uBC14\\uC77C \\uAE30\\uAE30 \\uACE0\\uB3C4\\uD654\\uB97C \\uC704\\uD574 \\uD074\\uB77C\\uC6B0\\uB4DC\\uB97C \\uBC31\\uC5D4\\uB4DC\\uB85C \\uC0AC\\uC6A9\\uD558\\uB294 \\uBAA8\\uC2B5\\uC774 \\uB9CE\\uC544\\uC9C8\\uAC83", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 08:05:36 +0000", "from_user": "marceloverdijk", "from_user_id": 27459817, "from_user_id_str": "27459817", "from_user_name": "Marcel Overdijk", "geo": null, "id": 147225782186549250, "id_str": "147225782186549248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1608025728/marceloverdijk-twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608025728/marceloverdijk-twitter_normal.png", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "RT @sebastiangozin: I know it's for nosql support but #grails is doing what JPA/Hibernate should have done long ago.\\nhttp://t.co/LTmWAiFg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 08:04:06 +0000", "from_user": "markwigmans", "from_user_id": 7527532, "from_user_id_str": "7527532", "from_user_name": "Mark Wigmans", "geo": null, "id": 147225404145541120, "id_str": "147225404145541120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/837273831/MWI_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/837273831/MWI_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "Fast, easy, realtime metrics using Redis bitmaps \\u00AB http://t.co/JPqzcCiw #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Thu, 15 Dec 2011 08:01:17 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 147224696272850940, "id_str": "147224696272850945", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "\\u267B Card Payment Sytems and the CAP Theorem http://t.co/KI9MXpsU #NoSQLtheory #CAP #distributed", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 07:53:52 +0000", "from_user": "ArnaultJeanson", "from_user_id": 153337304, "from_user_id_str": "153337304", "from_user_name": "Arnault Jeanson", "geo": null, "id": 147222829815955460, "id_str": "147222829815955457", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1524129915/Arno-180_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1524129915/Arno-180_normal.jpg", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "RT @vhe74: Cassandra et Hadoop dans les \"10 Most Important Open Source Projects of 2011\" http://t.co/J7GMDVlo #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 07:50:12 +0000", "from_user": "tshanky", "from_user_id": 17313104, "from_user_id_str": "17313104", "from_user_name": "Shashank Tiwari", "geo": null, "id": 147221907148783600, "id_str": "147221907148783616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1335022623/st_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335022623/st_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @graemerocher: Published an updated developer guide for folks interested in creating implementations of GORM http://t.co/a3FMxeuC #grails #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 07:43:49 +0000", "from_user": "juliendubois", "from_user_id": 24742031, "from_user_id_str": "24742031", "from_user_name": "Julien Dubois", "geo": null, "id": 147220300029894660, "id_str": "147220300029894656", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/348313383/julien_dubois_picture240x299_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/348313383/julien_dubois_picture240x299_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ltoinel: @juliendubois merci pour cette intervention au #nantesjug ! http://t.co/q6y3M8cT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 07:43:17 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 147220164339957760, "id_str": "147220164339957760", "iso_language_code": "eo", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "\\u267B Redis Bitmaps for Real-Time Metrics at Spool http://t.co/cAvum5MA #Redis #PoweredbyNoSQL #Spool", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 07:42:21 +0000", "from_user": "cristinagutiu", "from_user_id": 25963959, "from_user_id_str": "25963959", "from_user_name": "Cristina Gutiu", "geo": null, "id": 147219930583023600, "id_str": "147219930583023616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/180299663/me1-small_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/180299663/me1-small_normal.PNG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @peterneubauer: New JDBC Driver (yes that's right!) for @neo4j by @rickardoberg. Testing help needed! http://t.co/b8XvGoph #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 07:42:18 +0000", "from_user": "cti97", "from_user_id": 14624389, "from_user_id_str": "14624389", "from_user_name": "Catalin Istratoiu", "geo": null, "id": 147219919119986700, "id_str": "147219919119986688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1217309563/cata1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1217309563/cata1_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: \\u267B How Does the Future of Computing Look Like? http://t.co/XjqBDoNp #future", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 07:35:16 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 147218148796547070, "id_str": "147218148796547072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "\\u267B How Does the Future of Computing Look Like? http://t.co/XjqBDoNp #future", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 07:16:14 +0000", "from_user": "cuwac1", "from_user_id": 14073470, "from_user_id_str": "14073470", "from_user_name": "Bill C", "geo": null, "id": 147213356896497660, "id_str": "147213356896497664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/95095399/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/95095399/me_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hadoop and Cassandra in the Top 10 Most Important Open Source Projects of 2011: Hadoop and ... http://t.co/44FrmvTe (from Google Reader)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 07:15:27 +0000", "from_user": "peterneubauer", "from_user_id": 14721805, "from_user_id_str": "14721805", "from_user_name": "Peter Neubauer", "geo": null, "id": 147213163786547200, "id_str": "147213163786547200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/348968437/MyPicture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/348968437/MyPicture_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "New JDBC Driver (yes that's right!) for @neo4j by @rickardoberg. Testing help needed! http://t.co/b8XvGoph #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 07:07:06 +0000", "from_user": "peicheng", "from_user_id": 6964482, "from_user_id_str": "6964482", "from_user_name": "peicheng", "geo": null, "id": 147211060695404540, "id_str": "147211060695404544", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/31002152/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/31002152/me_normal.jpg", "source": "<a href="http://plurk.com" rel="nofollow">Plurk</a>", "text": "\\u8AAA http://t.co/fHiOkUZf\\n(\\u4E3A\\u4EC0\\u4E48\\u8BF4\\u5F88\\u591ANoSQL\\u7684Benchmark\\u662F\\u626F\\u6DE1\\uFF1F \\u2013 \\u56DB\\u53F7\\u7A0B\\u5E8F\\u5458) http://t.co/in9tUBHL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 07:06:35 +0000", "from_user": "usul_", "from_user_id": 5528042, "from_user_id_str": "5528042", "from_user_name": "Fran\\u00E7ois Dussert", "geo": null, "id": 147210928289624060, "id_str": "147210928289624064", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1476077804/gravatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1476077804/gravatar_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "MongoDB, Geospatial Indexing, and Advanced Queries\\u2026 http://t.co/snvQpNSk #nosql (via @fauveauarmel)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 06:58:26 +0000", "from_user": "vikramdoctor", "from_user_id": 19016018, "from_user_id_str": "19016018", "from_user_name": "vikram", "geo": null, "id": 147208880743657470, "id_str": "147208880743657472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "A DBA walks into a NOSQL bar, but turns and leaves because he couldn't find a table http://t.co/O5CP8oEo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 06:56:56 +0000", "from_user": "rindai87", "from_user_id": 13677822, "from_user_id_str": "13677822", "from_user_name": "norihiro shimoda", "geo": null, "id": 147208500999757820, "id_str": "147208500999757824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1659014657/317090_311725905522220_100000544408846_1164285_73874304_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659014657/317090_311725905522220_100000544408846_1164285_73874304_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_adell: #Neo4jPHP 0.0.6-beta released! Fulltext indexing, named Cypher/Gremlin parameters http://t.co/Z7d1Btf6 #neo4j #graphdb #nosql #php", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 06:56:40 +0000", "from_user": "dora_kou", "from_user_id": 8914452, "from_user_id_str": "8914452", "from_user_name": "\\u30C9\\u30E9\\u3061\\u3083\\u3093(Dora-kou)", "geo": null, "id": 147208436210343940, "id_str": "147208436210343936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/64436177/DCP00129_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/64436177/DCP00129_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @josh_adell: #Neo4jPHP 0.0.6-beta released! Fulltext indexing, named Cypher/Gremlin parameters http://t.co/Z7d1Btf6 #neo4j #graphdb #nosql #php", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 06:55:25 +0000", "from_user": "neo4j", "from_user_id": 22467617, "from_user_id_str": "22467617", "from_user_name": "Neo4j", "geo": null, "id": 147208118592487420, "id_str": "147208118592487424", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/195275920/square-logo-no-text-2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/195275920/square-logo-no-text-2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @frankgreco: Dec 21 #NYJavaSIG Meeting - #Neo4J - High Performance NoSQL Graph Database - Peter Bell - CTO Skinnio - register at http://t.co/mVagPiVz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 05:43:39 +0000", "from_user": "dauber", "from_user_id": 14314245, "from_user_id_str": "14314245", "from_user_name": "Mike Dauber", "geo": null, "id": 147190059177746430, "id_str": "147190059177746432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/571903615/30syd_mike_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/571903615/30syd_mike_normal.JPG", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "How long before this is common? 5 yrs? \\u201C@elubow: NorthWestern offers masters in analytics with #Cassandra #NoSQL. http://t.co/SSQsFJ9k \\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 05:39:04 +0000", "from_user": "adrianco", "from_user_id": 13895242, "from_user_id_str": "13895242", "from_user_name": "adrian cockcroft", "geo": null, "id": 147188907182788600, "id_str": "147188907182788609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688583582/zappa_front_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688583582/zappa_front_normal.jpeg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "RT @elubow: NorthWestern offers masters in analytics with #Cassandra #NoSQL. http://t.co/rTjc1He3 Awesome on so many levels.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 05:29:25 +0000", "from_user": "gahea", "from_user_id": 40652982, "from_user_id_str": "40652982", "from_user_name": "August Shin", "geo": null, "id": 147186477183406080, "id_str": "147186477183406080", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/299434409/3331754597_b104e54515_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/299434409/3331754597_b104e54515_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "\\uBAA8\\uBC14\\uC77C \\uD3EC\\uD138 \\uD50C\\uB7AB\\uD3FC \\uB9CC\\uB4E4\\uAE30. \\uC624\\uB298\\uB85C\\uC11C \\uD3EC\\uAE30. \\uBE45\\uD14C\\uC774\\uBE14\\uACFC \\uD06C\\uB77C\\uC6B0\\uB4DC \\uB4F1\\uC758 \\uC804\\uBB38\\uC601\\uC5ED\\uC744 \\uB108\\uBB34 \\uC27D\\uAC8C \\uC0DD\\uAC01\\uD55C\\uB4EF. \\uB355\\uBD84\\uC5D0 aws, cluster, nosql, \\uAC80\\uC0C9\\uC5D4\\uC9C4\\uC5D0 \\uAC01\\uC885 php \\uD504\\uB808\\uC784\\uC6CD\\uC744 \\uB2E4 \\uC368\\uBD24\\uB124.. \\uB2E8\\uC9C0 \\uAE30\\uD68D\\uC790\\uAC00 \\uADF8\\uC9D3\\uC744 \\uD588\\uB2E4\\uB294\\uAC8C \\uC5D0\\uB7EC...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 05:22:22 +0000", "from_user": "oWretch", "from_user_id": 193983895, "from_user_id_str": "193983895", "from_user_name": "Jerome Brown", "geo": null, "id": 147184704267886600, "id_str": "147184704267886592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1129473264/Facebook_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1129473264/Facebook_normal.png", "source": "<a href="http://www.tweetings.net/" rel="nofollow">Tweetings for iPhone</a>", "text": "@jamesbannan @chrisbrownie @ibbers maybe he's a proponent of #NoSQL ?", "to_user": "jamesbannan", "to_user_id": 31350442, "to_user_id_str": "31350442", "to_user_name": "James Bannan", "in_reply_to_status_id": 147174815273463800, "in_reply_to_status_id_str": "147174815273463808"}, +{"created_at": "Thu, 15 Dec 2011 05:02:19 +0000", "from_user": "emileifrem", "from_user_id": 14684110, "from_user_id_str": "14684110", "from_user_name": "Emil Eifrem", "geo": null, "id": 147179655567392770, "id_str": "147179655567392769", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/53878772/emil-profile-arlanda-2007-08-18-cropped_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/53878772/emil-profile-arlanda-2007-08-18-cropped_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @frankgreco: Dec 21 #NYJavaSIG Meeting - #Neo4J - High Performance NoSQL Graph Database - Peter Bell - CTO Skinnio - register at http://t.co/mVagPiVz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 04:53:08 +0000", "from_user": "fadis_", "from_user_id": 163425786, "from_user_id_str": "163425786", "from_user_name": "Fadis", "geo": null, "id": 147177346485596160, "id_str": "147177346485596160", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1199796678/__3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1199796678/__3_normal.png", "source": "<a href="http://www.tweenapp.org/" rel="nofollow">Tween</a>", "text": "RT @akineko: NoSQL\\u30C7\\u30FC\\u30BF\\u30D9\\u30FC\\u30B9\\u306ERedis\\u3063\\u3066\\u3069\\u3046\\u306A\\u3093\\u3060\\u308D\\u3046\\uFF1F", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 04:37:11 +0000", "from_user": "9inningTech", "from_user_id": 161371365, "from_user_id_str": "161371365", "from_user_name": "9no Inning Technolog", "geo": null, "id": 147173333153222660, "id_str": "147173333153222657", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1045259455/9i_tech_logo_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1045259455/9i_tech_logo_2_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Oracle anuncia que ya est\\u00E1 disponible Oracle NoSQL Database http://t.co/S5RqaWe4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 04:24:54 +0000", "from_user": "http_web", "from_user_id": 203746274, "from_user_id_str": "203746274", "from_user_name": "WEB", "geo": null, "id": 147170241678557200, "id_str": "147170241678557184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1514607077/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1514607077/images_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Researching NoSQL Is No Different Than The Early RDBMS Market http://t.co/kwLD9ot8 #SocialMedia http://t.co/3oXKVtbw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 04:05:02 +0000", "from_user": "rakeshag", "from_user_id": 15173867, "from_user_id_str": "15173867", "from_user_name": "Rakesh Aggarwal", "geo": null, "id": 147165243204845570, "id_str": "147165243204845568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/360864641/beach_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/360864641/beach_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Technology seems to have a circular path for evolution, e.g. : \"No SQL-->SQL-->NoSql\" , \"(Desktop) apps --> Browser --> (Mobile) apps\". #in", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 04:00:26 +0000", "from_user": "scroogy_choi", "from_user_id": 86291811, "from_user_id_str": "86291811", "from_user_name": "\\uCD5C\\uC601\\uBAA9", "geo": null, "id": 147164084981342200, "id_str": "147164084981342208", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1251201717/myPicture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1251201717/myPicture_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "RT @xguru: 2012 \\uD074\\uB77C\\uC6B0\\uB4DC,PaaS,NoSQL \\uC608\\uC0C1 http://t.co/8C9E6u0D \\uD074\\uB77C\\uC6B0\\uB4DC\\uB294 \\uC0AC\\uC6A9\\uC790\\uC5D0\\uAC8C iCloud/Dropbox\\uCC98\\uB7FC \\uC548\\uBCF4\\uC774\\uAC8C \\uB2E4\\uAC00\\uC624\\uACE0, \\uBAA8\\uBC14\\uC77C \\uAE30\\uAE30 \\uACE0\\uB3C4\\uD654\\uB97C \\uC704\\uD574 \\uD074\\uB77C\\uC6B0\\uB4DC\\uB97C \\uBC31\\uC5D4\\uB4DC\\uB85C \\uC0AC\\uC6A9\\uD558\\uB294 \\uBAA8\\uC2B5\\uC774 \\uB9CE\\uC544\\uC9C8\\uAC83", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 03:42:51 +0000", "from_user": "frankgreco", "from_user_id": 53283114, "from_user_id_str": "53283114", "from_user_name": "Frank Greco", "geo": null, "id": 147159659369869300, "id_str": "147159659369869312", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1134151893/FrankG_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1134151893/FrankG_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Dec 21 #NYJavaSIG Meeting - #Neo4J - High Performance NoSQL Graph Database - Peter Bell - CTO Skinnio - register at http://t.co/mVagPiVz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 03:36:10 +0000", "from_user": "tas50", "from_user_id": 16125527, "from_user_id_str": "16125527", "from_user_name": "Tim Smith", "geo": null, "id": 147157979232350200, "id_str": "147157979232350209", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1271973872/Portland_Flag_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1271973872/Portland_Flag_sm_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @cassandra: Announcing the release of #cassandra 1.0.6 (maintenance release), changes: http://t.co/J56N2i4B (http://t.co/B6K04i71) #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 03:15:40 +0000", "from_user": "leandro_storoli", "from_user_id": 46277106, "from_user_id_str": "46277106", "from_user_name": "Leandro Storoli", "geo": null, "id": 147152818501976060, "id_str": "147152818501976065", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1368141969/profile_image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1368141969/profile_image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "http://t.co/w1V1jrvk \\o/", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 03:06:16 +0000", "from_user": "cmeik", "from_user_id": 6815762, "from_user_id_str": "6815762", "from_user_name": "Chris Meiklejohn", "geo": null, "id": 147150453757591550, "id_str": "147150453757591552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/64598958/icon_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/64598958/icon_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @jonpierce: Check out @Basho on @Workvibe today. One of my fav deep tech co's in Boston. Great team, killer product in Riak. http://t.co/KsvmdGbq #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 02:57:00 +0000", "from_user": "hguerreroo", "from_user_id": 101049181, "from_user_id_str": "101049181", "from_user_name": "Hugo Guerrero", "geo": null, "id": 147148118624964600, "id_str": "147148118624964609", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1474699101/twitter_profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1474699101/twitter_profile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "PostgreSQL usado como base NoSQL: http://t.co/V42tJuFw cc @pacocasmar", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 02:55:48 +0000", "from_user": "boushka", "from_user_id": 34294674, "from_user_id_str": "34294674", "from_user_name": "Anna Lee", "geo": null, "id": 147147820598689800, "id_str": "147147820598689792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1511373637/_____45_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1511373637/_____45_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @GlobalsDB: Congratulations to @antoshalee, winner of the @InterSystems 2nd Globals Challenge! - http://t.co/cf11mCWO - #NoSQL #DBMS #Java #Node.js", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 02:49:52 +0000", "from_user": "yunyongchoi", "from_user_id": 30826749, "from_user_id_str": "30826749", "from_user_name": "YunYong Choi (\\uCD5C\\uC724\\uC6A9)", "geo": null, "id": 147146327111905280, "id_str": "147146327111905282", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/135658242/mypic2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/135658242/mypic2_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "RT @xguru: 2012 \\uD074\\uB77C\\uC6B0\\uB4DC,PaaS,NoSQL \\uC608\\uC0C1 http://t.co/8C9E6u0D \\uD074\\uB77C\\uC6B0\\uB4DC\\uB294 \\uC0AC\\uC6A9\\uC790\\uC5D0\\uAC8C iCloud/Dropbox\\uCC98\\uB7FC \\uC548\\uBCF4\\uC774\\uAC8C \\uB2E4\\uAC00\\uC624\\uACE0, \\uBAA8\\uBC14\\uC77C \\uAE30\\uAE30 \\uACE0\\uB3C4\\uD654\\uB97C \\uC704\\uD574 \\uD074\\uB77C\\uC6B0\\uB4DC\\uB97C \\uBC31\\uC5D4\\uB4DC\\uB85C \\uC0AC\\uC6A9\\uD558\\uB294 \\uBAA8\\uC2B5\\uC774 \\uB9CE\\uC544\\uC9C8\\uAC83", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 02:30:06 +0000", "from_user": "MySQLBot_en", "from_user_id": 305160384, "from_user_id_str": "305160384", "from_user_name": "MySQLBot_en", "geo": null, "id": 147141350876397570, "id_str": "147141350876397568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1368954854/mysql_100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1368954854/mysql_100_normal.png", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: \\u267B MySQL MEMORY as Poor Man's Memcached Replacement http://t.co/ql2VnMYJ #MySQL #Memcached", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 02:24:08 +0000", "from_user": "fabianf74", "from_user_id": 181302635, "from_user_id_str": "181302635", "from_user_name": "Fabian Ferdgelis", "geo": null, "id": 147139851152658430, "id_str": "147139851152658432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1630673338/Primer_Plano_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630673338/Primer_Plano_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @marianocifre: NoSQL sessions with jetty7 and jetty8: http://t.co/ocgLjdgB #apache #tomcat #fail?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 02:21:32 +0000", "from_user": "marianocifre", "from_user_id": 15072836, "from_user_id_str": "15072836", "from_user_name": "Mariano Cifre", "geo": null, "id": 147139195289341950, "id_str": "147139195289341952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1127775264/Nano_beer_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1127775264/Nano_beer_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "NoSQL sessions with jetty7 and jetty8: http://t.co/ocgLjdgB #apache #tomcat #fail?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 02:09:26 +0000", "from_user": "cwestin63", "from_user_id": 162173507, "from_user_id_str": "162173507", "from_user_name": "Chris Westin", "geo": null, "id": 147136149427720200, "id_str": "147136149427720192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1125328797/headshot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1125328797/headshot_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: \\u267B MongoDB: With Adoption Comes... More Adoption http://t.co/vPSJfjAD #MongoDB #OpenShift #RedHat #Joyent #Jaspersoft", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 01:55:37 +0000", "from_user": "assidu", "from_user_id": 60289225, "from_user_id_str": "60289225", "from_user_name": "sangjin", "geo": null, "id": 147132673222119420, "id_str": "147132673222119424", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1480410981/sjbak_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1480410981/sjbak_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "RT @xguru: 2012 \\uD074\\uB77C\\uC6B0\\uB4DC,PaaS,NoSQL \\uC608\\uC0C1 http://t.co/8C9E6u0D \\uD074\\uB77C\\uC6B0\\uB4DC\\uB294 \\uC0AC\\uC6A9\\uC790\\uC5D0\\uAC8C iCloud/Dropbox\\uCC98\\uB7FC \\uC548\\uBCF4\\uC774\\uAC8C \\uB2E4\\uAC00\\uC624\\uACE0, \\uBAA8\\uBC14\\uC77C \\uAE30\\uAE30 \\uACE0\\uB3C4\\uD654\\uB97C \\uC704\\uD574 \\uD074\\uB77C\\uC6B0\\uB4DC\\uB97C \\uBC31\\uC5D4\\uB4DC\\uB85C \\uC0AC\\uC6A9\\uD558\\uB294 \\uBAA8\\uC2B5\\uC774 \\uB9CE\\uC544\\uC9C8\\uAC83", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 01:55:23 +0000", "from_user": "corund", "from_user_id": 23738856, "from_user_id_str": "23738856", "from_user_name": "Jin Kim", "geo": null, "id": 147132614476705800, "id_str": "147132614476705792", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1421578742/quigon_jinn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1421578742/quigon_jinn_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\uADF8\\uB9AC\\uACE0 nosql\\uC774\\uB77C\\uB294 \\uAC83\\uB3C4 redis\\uB97C \\uC81C\\uC678\\uD558\\uBA74 buzz \\uB610\\uB294 \\uC9C0\\uB098\\uCE58\\uAC8C \\uD2B9\\uD654\\uB41C \\uC194\\uB8E8\\uC158\\uC774\\uB77C \\uBCF4\\uC778\\uB2E4.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 01:34:33 +0000", "from_user": "benhyronde", "from_user_id": 40247759, "from_user_id_str": "40247759", "from_user_name": "hyronde benoit", "geo": null, "id": 147127373479940100, "id_str": "147127373479940096", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1266723575/IMG_6492g_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266723575/IMG_6492g_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Cluster BDD vs Cache applicatif r\\u00E9parti vs NoSQL - Alors que le Cloud Computing est en plein boom \"marketing\", le st... http://t.co/k32AXrma", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 01:34:29 +0000", "from_user": "kfalter", "from_user_id": 253578873, "from_user_id_str": "253578873", "from_user_name": "Kelsey Falter", "geo": null, "id": 147127354190348300, "id_str": "147127354190348288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690576937/photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690576937/photo_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: \\u267B MongoDB: With Adoption Comes... More Adoption http://t.co/vPSJfjAD #MongoDB #OpenShift #RedHat #Joyent #Jaspersoft", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 01:27:45 +0000", "from_user": "antoshalee", "from_user_id": 33976695, "from_user_id_str": "33976695", "from_user_name": "Anton Lee", "geo": null, "id": 147125660681379840, "id_str": "147125660681379840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/583592110/i_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/583592110/i_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @GlobalsDB: Congratulations to @antoshalee, winner of the @InterSystems 2nd Globals Challenge! - http://t.co/cf11mCWO - #NoSQL #DBMS #Java #Node.js", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 00:54:23 +0000", "from_user": "wizmusa", "from_user_id": 42998617, "from_user_id_str": "42998617", "from_user_name": "Sihyoung Jurn(\\uC804\\uC2DC\\uD615)", "geo": null, "id": 147117262954971140, "id_str": "147117262954971136", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/412803805/cherryblossom_____normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/412803805/cherryblossom_____normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "RT @xguru: 2012 \\uD074\\uB77C\\uC6B0\\uB4DC,PaaS,NoSQL \\uC608\\uC0C1 http://t.co/8C9E6u0D \\uD074\\uB77C\\uC6B0\\uB4DC\\uB294 \\uC0AC\\uC6A9\\uC790\\uC5D0\\uAC8C iCloud/Dropbox\\uCC98\\uB7FC \\uC548\\uBCF4\\uC774\\uAC8C \\uB2E4\\uAC00\\uC624\\uACE0, \\uBAA8\\uBC14\\uC77C \\uAE30\\uAE30 \\uACE0\\uB3C4\\uD654\\uB97C \\uC704\\uD574 \\uD074\\uB77C\\uC6B0\\uB4DC\\uB97C \\uBC31\\uC5D4\\uB4DC\\uB85C \\uC0AC\\uC6A9\\uD558\\uB294 \\uBAA8\\uC2B5\\uC774 \\uB9CE\\uC544\\uC9C8\\uAC83", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 00:52:08 +0000", "from_user": "elubow", "from_user_id": 26804085, "from_user_id_str": "26804085", "from_user_name": "Eric Lubow", "geo": null, "id": 147116694882631680, "id_str": "147116694882631680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1616306519/e_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616306519/e_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "NorthWestern offers masters in analytics with #Cassandra #NoSQL. http://t.co/rTjc1He3 Awesome on so many levels.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 00:49:32 +0000", "from_user": "hisern", "from_user_id": 19665587, "from_user_id_str": "19665587", "from_user_name": "Heidi K. Isern", "geo": null, "id": 147116041900793860, "id_str": "147116041900793857", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1252031962/profilebody2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1252031962/profilebody2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "geeking out in @DealmakerMedia offices with Ravi Mhatre and Avery Lyford talking about nosql...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 00:42:02 +0000", "from_user": "fauveauarmel", "from_user_id": 81747730, "from_user_id_str": "81747730", "from_user_name": "Armel FAUVEAU", "geo": null, "id": 147114154979897340, "id_str": "147114154979897344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1053733269/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1053733269/Untitled_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "MongoDB, Geospatial Indexing, and Advanced Queries\\u2026 http://t.co/XVOghVjl #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 00:36:58 +0000", "from_user": "jm95037", "from_user_id": 156421808, "from_user_id_str": "156421808", "from_user_name": "John McCauley", "geo": null, "id": 147112879424929800, "id_str": "147112879424929792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/996987652/IMG_0383ac_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/996987652/IMG_0383ac_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @BashoT: Best developers in the world are wanted at Basho! What it's like working here. http://t.co/KRzaCRCA very cool. #basho #NoSQL #bigdata", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 00:31:56 +0000", "from_user": "josh_adell", "from_user_id": 175481346, "from_user_id_str": "175481346", "from_user_name": "Josh Adell", "geo": null, "id": 147111614364135420, "id_str": "147111614364135424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1138021543/hobbes_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1138021543/hobbes_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Neo4jPHP 0.0.6-beta released! Fulltext indexing, named Cypher/Gremlin parameters http://t.co/Z7d1Btf6 #neo4j #graphdb #nosql #php", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 00:23:04 +0000", "from_user": "ar_farias", "from_user_id": 22497637, "from_user_id_str": "22497637", "from_user_name": "Anderson R. Farias", "geo": null, "id": 147109383078293500, "id_str": "147109383078293504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/924915480/teste_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/924915480/teste_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @OracleDatabase: Oracle #NoSQL Database Now Available for Download from #OTN http://t.co/HSo2ZMAA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 00:19:11 +0000", "from_user": "fcassia", "from_user_id": 13128922, "from_user_id_str": "13128922", "from_user_name": "Fernando Cassia", "geo": null, "id": 147108404610076670, "id_str": "147108404610076672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1649866860/fcassia-outdoor-tw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649866860/fcassia-outdoor-tw_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @monkchips: .@webmink apache still does a LOT of good work. the git thing has been an issue, but apache is still a force for good. and nosql.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 00:13:56 +0000", "from_user": "ltoinel", "from_user_id": 13645142, "from_user_id_str": "13645142", "from_user_name": "Ludovic Toinel", "geo": null, "id": 147107082322198530, "id_str": "147107082322198528", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1168849701/geeek-v4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1168849701/geeek-v4_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@juliendubois merci pour cette intervention au #nantesjug ! http://t.co/q6y3M8cT", "to_user": "juliendubois", "to_user_id": 24742031, "to_user_id_str": "24742031", "to_user_name": "Julien Dubois"}, +{"created_at": "Thu, 15 Dec 2011 00:10:26 +0000", "from_user": "monkchips", "from_user_id": 61233, "from_user_id_str": "61233", "from_user_name": "James Governor", "geo": null, "id": 147106203997188100, "id_str": "147106203997188096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627071088/hairstyle_oval_face_women-275x300_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627071088/hairstyle_oval_face_women-275x300_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": ".@webmink apache still does a LOT of good work. the git thing has been an issue, but apache is still a force for good. and nosql.", "to_user": "webmink", "to_user_id": 752133, "to_user_id_str": "752133", "to_user_name": "Simon Phipps", "in_reply_to_status_id": 147104857327796220, "in_reply_to_status_id_str": "147104857327796224"}, +{"created_at": "Thu, 15 Dec 2011 00:01:34 +0000", "from_user": "GlobalsDB", "from_user_id": 274534639, "from_user_id_str": "274534639", "from_user_name": "Globals Master", "geo": null, "id": 147103969309769730, "id_str": "147103969309769728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1292674003/Globals-snowboarder-v1b_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1292674003/Globals-snowboarder-v1b_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Congratulations to @antoshalee, winner of the @InterSystems 2nd Globals Challenge! - http://t.co/cf11mCWO - #NoSQL #DBMS #Java #Node.js", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 00:00:10 +0000", "from_user": "SocialCaster", "from_user_id": 159355874, "from_user_id_str": "159355874", "from_user_name": "\\uC18C\\uC15C\\uCE90\\uC2A4\\uD130", "geo": null, "id": 147103618447843330, "id_str": "147103618447843328", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696310815/image_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696310815/image_normal", "source": "<a href="http://www.foobar.com" rel="nofollow">socialcaster</a>", "text": "RT @xguru: 2012 \\uD074\\uB77C\\uC6B0\\uB4DC,PaaS,NoSQL \\uC608\\uC0C1 http://t.co/3cWjZgn4 \\uD074\\uB77C\\uC6B0\\uB4DC\\uB294 \\uC0AC\\uC6A9\\uC790\\uC5D0\\uAC8C iCloud/Dropbox\\uCC98\\uB7FC \\uC548\\uBCF4\\uC774\\uAC8C \\uB2E4\\uAC00\\uC624\\uACE0, \\uBAA8\\uBC14\\uC77C \\uAE30\\uAE30 \\uACE0\\uB3C4\\uD654\\uB97C \\uC704\\uD574 \\uD074\\uB77C\\uC6B0\\uB4DC\\uB97C \\uBC31\\uC5D4\\uB4DC\\uB85C \\uC0AC\\uC6A9\\uD558\\uB294 \\uBAA8\\uC2B5\\uC774 \\uB9CE\\uC544\\uC9C8\\uAC83", "to_user": "xguru", "to_user_id": 19699818, "to_user_id_str": "19699818", "to_user_name": "\\uAD8C\\uC815\\uD601/\\uAD6C\\uB8E8", "in_reply_to_status_id": 147103160895406080, "in_reply_to_status_id_str": "147103160895406081"}, +{"created_at": "Wed, 14 Dec 2011 23:58:21 +0000", "from_user": "xguru", "from_user_id": 19699818, "from_user_id_str": "19699818", "from_user_name": "\\uAD8C\\uC815\\uD601/\\uAD6C\\uB8E8", "geo": null, "id": 147103160895406080, "id_str": "147103160895406081", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699752595/20100328-IMG_6103-400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699752595/20100328-IMG_6103-400_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "2012 \\uD074\\uB77C\\uC6B0\\uB4DC,PaaS,NoSQL \\uC608\\uC0C1 http://t.co/8C9E6u0D \\uD074\\uB77C\\uC6B0\\uB4DC\\uB294 \\uC0AC\\uC6A9\\uC790\\uC5D0\\uAC8C iCloud/Dropbox\\uCC98\\uB7FC \\uC548\\uBCF4\\uC774\\uAC8C \\uB2E4\\uAC00\\uC624\\uACE0, \\uBAA8\\uBC14\\uC77C \\uAE30\\uAE30 \\uACE0\\uB3C4\\uD654\\uB97C \\uC704\\uD574 \\uD074\\uB77C\\uC6B0\\uB4DC\\uB97C \\uBC31\\uC5D4\\uB4DC\\uB85C \\uC0AC\\uC6A9\\uD558\\uB294 \\uBAA8\\uC2B5\\uC774 \\uB9CE\\uC544\\uC9C8\\uAC83", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 23:48:31 +0000", "from_user": "philip_schwarz", "from_user_id": 14684035, "from_user_id_str": "14684035", "from_user_name": "Philip Schwarz", "geo": null, "id": 147100686927142900, "id_str": "147100686927142912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/724078981/mugshot2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/724078981/mugshot2_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "RT @sebastiangozin: I know it's for nosql support but #grails is doing what JPA/Hibernate should have done long ago.\\nhttp://t.co/LTmWAiFg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 23:41:47 +0000", "from_user": "dieswaytoofast", "from_user_id": 312604736, "from_user_id_str": "312604736", "from_user_name": "Mahesh P-Subramanya", "geo": null, "id": 147098993896337400, "id_str": "147098993896337408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1572400317/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572400317/Untitled_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: Card Payment Sytems and the CAP Theorem http://t.co/KI9MXpsU #NoSQLtheory #CAP #distributed", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 23:36:46 +0000", "from_user": "adeelkh", "from_user_id": 146900694, "from_user_id_str": "146900694", "from_user_name": "Adeel Ahmad Khan", "geo": null, "id": 147097730173517820, "id_str": "147097730173517825", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1541887544/1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541887544/1_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "For me, NoSQL over SQL doesn't have anything to do with performance. It's an aesthetic choice.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 23:07:43 +0000", "from_user": "mattnowina", "from_user_id": 103869545, "from_user_id_str": "103869545", "from_user_name": "Matt Nowina", "geo": null, "id": 147090418142691330, "id_str": "147090418142691328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1310193735/eightbit-9aa6f9af-a52d-4215-97f5-8ae5720906f1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1310193735/eightbit-9aa6f9af-a52d-4215-97f5-8ae5720906f1_normal.png", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "Muscula Architecture: Node.js, MongoDB, and CDN http://t.co/mZPhNgTa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 23:05:56 +0000", "from_user": "rcastellow", "from_user_id": 14933058, "from_user_id_str": "14933058", "from_user_name": "rcastellow", "geo": null, "id": 147089971105366000, "id_str": "147089971105366016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/58311825/0011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/58311825/0011_normal.jpg", "source": "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", "text": "RT @developerworks: dW Knowledge Path - Using #NoSQL - Analyzing #Bigdata - Handle massive amounts of #data easily > http://t.co/Lhwg3pQZ #Database #DBA #SQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 22:31:12 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 147081229236318200, "id_str": "147081229236318208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "Card Payment Sytems and the CAP Theorem http://t.co/KI9MXpsU #NoSQLtheory #CAP #distributed", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 22:16:00 +0000", "from_user": "mulpat", "from_user_id": 25259411, "from_user_id_str": "25259411", "from_user_name": "Patrick Mulder", "geo": null, "id": 147077402852474880, "id_str": "147077402852474881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1544356598/pm_profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544356598/pm_profile_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "the #mongodb echo sample app shows some nice modeling issues when using models in #nosql, both has_many and embeds_many are interesting", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 22:11:12 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 147076194658041860, "id_str": "147076194658041856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "Centralized Logging With Amazon SimpleDB, Slf4j, and Logback http://t.co/ynKfnovl #AmazonSimpleDB #Java", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:57:55 +0000", "from_user": "Unaz", "from_user_id": 16113206, "from_user_id_str": "16113206", "from_user_name": "Erik", "geo": null, "id": 147072855463563260, "id_str": "147072855463563266", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/59355136/kross_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/59355136/kross_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Ok @percona, let's do this http://t.co/ALOnMa0u (early iteration) :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:29:40 +0000", "from_user": "gammadoradus", "from_user_id": 345682804, "from_user_id_str": "345682804", "from_user_name": "Phillip Warner", "geo": null, "id": 147065745262645250, "id_str": "147065745262645248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1539281896/rooster_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1539281896/rooster_normal.png", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "RT @sebastiangozin: I know it's for nosql support but #grails is doing what JPA/Hibernate should have done long ago.\\nhttp://t.co/LTmWAiFg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:29:33 +0000", "from_user": "ludofleury", "from_user_id": 47574527, "from_user_id_str": "47574527", "from_user_name": "Ludovic Fleury", "geo": null, "id": 147065714086383600, "id_str": "147065714086383616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1264063021/ludovic_fleury_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1264063021/ludovic_fleury_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rgaidot: RT @cassandra: Announcing the release of #cassandra 1.0.6 (maintenance release), changes: http://t.co/bUikZnfe (http://t.co/Q9VUUXqb) #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:29:20 +0000", "from_user": "rgaidot", "from_user_id": 1245801, "from_user_id_str": "1245801", "from_user_name": "R\\u00E9gis Gaidot", "geo": null, "id": 147065661376573440, "id_str": "147065661376573440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1266738841/avatar-6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266738841/avatar-6_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @cassandra: Announcing the release of #cassandra 1.0.6 (maintenance release), changes: http://t.co/bUikZnfe (http://t.co/Q9VUUXqb) #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:21:53 +0000", "from_user": "anthony_souquet", "from_user_id": 18048662, "from_user_id_str": "18048662", "from_user_name": "Anthony Souquet", "geo": null, "id": 147063784568135680, "id_str": "147063784568135680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "James Phillips on Moving from Relational to NoSQL Databases... http://t.co/UIMeRZMb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:12:40 +0000", "from_user": "neo4j", "from_user_id": 22467617, "from_user_id_str": "22467617", "from_user_name": "Neo4j", "geo": null, "id": 147061467387150340, "id_str": "147061467387150337", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/195275920/square-logo-no-text-2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/195275920/square-logo-no-text-2_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @isenbe: @Visitkard noSQL u kish premtu ma shum. neo4j, osht graph db, super pershtatet per natyren e projektit. Gjithsesi, suksese :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:10:55 +0000", "from_user": "AddisonSearchIT", "from_user_id": 397530267, "from_user_id_str": "397530267", "from_user_name": "Lauren Mowers", "geo": null, "id": 147061025508827140, "id_str": "147061025508827136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @mpron: \"Global vs. Local Graph Ranking\" http://t.co/J9quGDFB #GraphDB #Gremlin #neo4j #NoSQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:09:03 +0000", "from_user": "maltuna", "from_user_id": 53117343, "from_user_id_str": "53117343", "from_user_name": "Mikel Altuna", "geo": null, "id": 147060554480091140, "id_str": "147060554480091138", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1590024283/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1590024283/image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @dipina: Mi \\u00FAltimo curso (Curso NoSQL) publicado en slideshare: \"NoSQL: la siguiente generaci\\u00F3n de Base de Datos\", http://t.co/hZ92oi4R", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:07:23 +0000", "from_user": "jonpierce", "from_user_id": 186923, "from_user_id_str": "186923", "from_user_name": "Jon Pierce", "geo": null, "id": 147060138417725440, "id_str": "147060138417725440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/90727730/jonpierce_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/90727730/jonpierce_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Check out @Basho on @Workvibe today. One of my fav deep tech co's in Boston. Great team, killer product in Riak. http://t.co/KsvmdGbq #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 20:49:15 +0000", "from_user": "LuxNoSQL", "from_user_id": 19330336, "from_user_id_str": "19330336", "from_user_name": "Nestor", "geo": null, "id": 147055573425328130, "id_str": "147055573425328128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1123187681/logo_original4_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1123187681/logo_original4_normal.PNG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Did 2011 was the NoSQL year ?\\n\\nhttp://t.co/JKsUor2P\\n\\n#nosql #bigdata #hadoop #cassandra #nodejs #jquery #2011", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 20:43:18 +0000", "from_user": "dreguera", "from_user_id": 58756910, "from_user_id_str": "58756910", "from_user_name": "Dani Reguera", "geo": null, "id": 147054077669408770, "id_str": "147054077669408770", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701886315/danillovic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701886315/danillovic_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @dipina: Mi \\u00FAltimo curso (Curso NoSQL) publicado en slideshare: \"NoSQL: la siguiente generaci\\u00F3n de Base de Datos\", http://t.co/hZ92oi4R", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 20:38:02 +0000", "from_user": "JohannesHoppe", "from_user_id": 43859239, "from_user_id_str": "43859239", "from_user_name": "Johannes Hoppe", "geo": null, "id": 147052752164491260, "id_str": "147052752164491264", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1101539456/twitter_avatar_johannes_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1101539456/twitter_avatar_johannes_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @dnugffm: Gemeinschaftstreffen mit der @sqlpass_de RG Rhein/Main zu #NoSQL mit @pro_cessor und @JohannesHoppe ist ein cooler Jahresabschluss! #dnugffm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 20:25:41 +0000", "from_user": "MichaelAstreiko", "from_user_id": 43370659, "from_user_id_str": "43370659", "from_user_name": "Michael", "geo": null, "id": 147049644336226300, "id_str": "147049644336226304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/397786431/______________________________normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/397786431/______________________________normal.gif", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @graemerocher: Published an updated developer guide for folks interested in creating implementations of GORM http://t.co/a3FMxeuC #grails #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 20:24:56 +0000", "from_user": "olesovhcom", "from_user_id": 290971726, "from_user_id_str": "290971726", "from_user_name": "Octave alias Oles", "geo": null, "id": 147049455907123200, "id_str": "147049455907123202", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1334060030/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1334060030/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Jheberg si tu d\\u00E9veloppes des applications sous php, mysql, python, java, nosql, etc \\u00E7a ne t\\u2019int\\u00E9resse pas.", "to_user": "Jheberg", "to_user_id": 82116766, "to_user_id_str": "82116766", "to_user_name": "Th\\u00E9otime on Jheberg", "in_reply_to_status_id": 147048996534353920, "in_reply_to_status_id_str": "147048996534353920"}, +{"created_at": "Wed, 14 Dec 2011 20:20:04 +0000", "from_user": "graemerocher", "from_user_id": 15903390, "from_user_id_str": "15903390", "from_user_name": "Graeme Rocher", "geo": null, "id": 147048229874319360, "id_str": "147048229874319362", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/58510377/me-pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/58510377/me-pic_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "RT @sebastiangozin: I know it's for nosql support but #grails is doing what JPA/Hibernate should have done long ago.\\nhttp://t.co/LTmWAiFg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 20:15:41 +0000", "from_user": "jericevans", "from_user_id": 38885823, "from_user_id_str": "38885823", "from_user_name": "Eric Evans", "geo": null, "id": 147047127837704200, "id_str": "147047127837704193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/518157683/eevans_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/518157683/eevans_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @cassandra: Announcing the release of #cassandra 0.8.9 (maintenance release), changes: http://t.co/Y3Ai7rAw (http://t.co/B6K04i71) #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 20:12:03 +0000", "from_user": "TopDevTweets", "from_user_id": 194520782, "from_user_id_str": "194520782", "from_user_name": "TopDevTweets", "geo": null, "id": 147046212548296700, "id_str": "147046212548296704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1191139755/attachment.ashx__2__normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @cassandra: Announcing the release of #cassandra 0.8.9 (maintenance release), changes: http://t.co/Y3Ai7rAw (http://t.co/B6K04i71) #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 20:07:30 +0000", "from_user": "mynosql_popescu", "from_user_id": 197901055, "from_user_id_str": "197901055", "from_user_name": "myNoSQL", "geo": null, "id": 147045066375045120, "id_str": "147045066375045120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "How Does the Future of Computing Look Like?: We\\u2019ll get long lasting batteries and teraflops chips, Big Data on M... http://t.co/3Tj9aNad", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 20:05:30 +0000", "from_user": "mcsong", "from_user_id": 2236621, "from_user_id_str": "2236621", "from_user_name": "Justin Song", "geo": null, "id": 147044564694347780, "id_str": "147044564694347776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1419991788/justin.song_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1419991788/justin.song_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @cassandra: Announcing the release of #cassandra 0.8.9 (maintenance release), changes: http://t.co/Y3Ai7rAw (http://t.co/B6K04i71) #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 20:04:39 +0000", "from_user": "usul_", "from_user_id": 5528042, "from_user_id_str": "5528042", "from_user_name": "Fran\\u00E7ois Dussert", "geo": null, "id": 147044348507340800, "id_str": "147044348507340800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1476077804/gravatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1476077804/gravatar_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "RT @cassandra: Announcing the release of #cassandra 1.0.6 (maintenance release), changes: http://t.co/QJYmR0uW (http://t.co/2pQGFO7f) #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 20:02:59 +0000", "from_user": "cassandra", "from_user_id": 38971803, "from_user_id_str": "38971803", "from_user_name": "Cassandra Database", "geo": null, "id": 147043931803230200, "id_str": "147043931803230208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/519958997/cassandra_small_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/519958997/cassandra_small_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Announcing the release of #cassandra 0.8.9 (maintenance release), changes: http://t.co/Y3Ai7rAw (http://t.co/B6K04i71) #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 20:00:53 +0000", "from_user": "cwestin63", "from_user_id": 162173507, "from_user_id_str": "162173507", "from_user_name": "Chris Westin", "geo": null, "id": 147043401899061250, "id_str": "147043401899061248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1125328797/headshot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1125328797/headshot_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ameliamango: RT @10gen: Deputy CTO Paul Pederson will be presenting on NoSQL and MongoDB tomorrow (Thursday) at DAMA San Francisco", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 19:50:01 +0000", "from_user": "ameliamango", "from_user_id": 18517825, "from_user_id_str": "18517825", "from_user_name": "ameliamango", "geo": null, "id": 147040666902478850, "id_str": "147040666902478848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692201149/laugh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692201149/laugh_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @10gen: Deputy CTO Paul Pederson will be presenting on NoSQL and MongoDB tomorrow (Thursday) at DAMA San Francisco", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 19:47:04 +0000", "from_user": "rootsmith", "from_user_id": 19415769, "from_user_id_str": "19415769", "from_user_name": "Kevin J. Smith", "geo": null, "id": 147039922610638850, "id_str": "147039922610638849", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1577720933/kangyatzi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1577720933/kangyatzi_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Anybody know any postgreSQL (or MySQL) with some noSQL (MongoDB, couchDB) database admin/devs that are looking for work?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 19:45:47 +0000", "from_user": "harish11g", "from_user_id": 175766255, "from_user_id_str": "175766255", "from_user_name": "Harish Ganesan", "geo": null, "id": 147039601301798900, "id_str": "147039601301798912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1175262838/harish_profile_photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1175262838/harish_profile_photo_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @DEVOPS_BORAT: Attention devops: \"learn NoSQL\" is not same as \"learn no SQL\"!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 19:43:56 +0000", "from_user": "alexyakunin", "from_user_id": 58261179, "from_user_id_str": "58261179", "from_user_name": "Alex Yakunin", "geo": null, "id": 147039136791007230, "id_str": "147039136791007233", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/966018990/Ava_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/966018990/Ava_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Erik Meijer explains duality of SQL and noSQL (especially good if you know C#): http://t.co/m8e09F1L", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 19:31:32 +0000", "from_user": "mynosql_popescu", "from_user_id": 197901055, "from_user_id_str": "197901055", "from_user_name": "myNoSQL", "geo": null, "id": 147036015901671420, "id_str": "147036015901671424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Centralized Logging With Amazon SimpleDB, Slf4j, and Logback: Centralized Logging With Amazon SimpleDB, Slf4j, a... http://t.co/CuAXUIh9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 19:18:32 +0000", "from_user": "JensRantil", "from_user_id": 80839666, "from_user_id_str": "80839666", "from_user_name": "Jens Rantil", "geo": null, "id": 147032744172589060, "id_str": "147032744172589057", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/577732175/n719411625_1562483_1352_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/577732175/n719411625_1562483_1352_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "Licensing and Distribution Holding Back the Age of Data http://t.co/zHfwPu3v Welcome back data silos!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 18:55:54 +0000", "from_user": "nantesjug", "from_user_id": 47305034, "from_user_id_str": "47305034", "from_user_name": "Nantes JUG", "geo": null, "id": 147027047351468030, "id_str": "147027047351468032", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/474291096/img_1217255298194_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/474291096/img_1217255298194_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@juliendubois nous parle d'Hibernate, de cloud et de NoSQL au #nantesjug http://t.co/isDpnn1u", "to_user": "juliendubois", "to_user_id": 24742031, "to_user_id_str": "24742031", "to_user_name": "Julien Dubois"}, +{"created_at": "Wed, 14 Dec 2011 18:39:55 +0000", "from_user": "jedisct1", "from_user_id": 17396038, "from_user_id_str": "17396038", "from_user_name": "Frank Denis", "geo": null, "id": 147023026620334080, "id_str": "147023026620334081", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/64543895/cv_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/64543895/cv_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @cassandra: Announcing the release of #cassandra 1.0.6 (maintenance release), changes: http://t.co/5NZtlBvR (http://t.co/FvfNZTTd) #nosql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 17:49:13 +0000", "from_user": "ludofleury", "from_user_id": 47574527, "from_user_id_str": "47574527", "from_user_name": "Ludovic Fleury", "geo": null, "id": 147010265626574850, "id_str": "147010265626574850", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1264063021/ludovic_fleury_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1264063021/ludovic_fleury_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @10gen: Deputy CTO Paul Pederson will be presenting on NoSQL and MongoDB tomorrow (Thursday) at DAMA San Francisco", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 17:48:56 +0000", "from_user": "10gen", "from_user_id": 14474967, "from_user_id_str": "14474967", "from_user_name": "10gen", "geo": null, "id": 147010194768019460, "id_str": "147010194768019456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/53140716/Picture_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/53140716/Picture_1_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Deputy CTO Paul Pederson will be presenting on NoSQL and MongoDB tomorrow (Thursday) at DAMA San Francisco", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 17:46:35 +0000", "from_user": "mynosql_popescu", "from_user_id": 197901055, "from_user_id_str": "197901055", "from_user_name": "myNoSQL", "geo": null, "id": 147009603224346620, "id_str": "147009603224346625", "iso_language_code": "eo", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Redis Bitmaps for Real-Time Metrics at Spool: Redis Bitmaps for Real-Time Metrics at Spool: Chandra Patni:\\n\\nTrad... http://t.co/M3mcwul3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 17:22:43 +0000", "from_user": "meyersdc", "from_user_id": 36725165, "from_user_id_str": "36725165", "from_user_name": "David Meyers", "geo": null, "id": 147003596209266700, "id_str": "147003596209266690", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1286699794/wisconsin_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1286699794/wisconsin_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "RT @vscarpenter: A Look at the NoSQL Landscape | Javalobby http://t.co/yL6tLnyS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 16:24:58 +0000", "from_user": "redeskako", "from_user_id": 41999137, "from_user_id_str": "41999137", "from_user_name": "Carlos S. Bocanegra", "geo": null, "id": 146989063759597570, "id_str": "146989063759597568", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1151469684/kk_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1151469684/kk_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "#NoSQL: la siguiente generaci\\u00F3n de Base de Datos http://t.co/wOY8vKvB v\\u00EDa @slideshare", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 15:52:09 +0000", "from_user": "legallb", "from_user_id": 15307496, "from_user_id_str": "15307496", "from_user_name": "legallb", "geo": null, "id": 146980804201947140, "id_str": "146980804201947137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/673402162/photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/673402162/photo_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "10 Reasons Why You Should Consider NOSQL http://t.co/0BA78wIB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 15:09:11 +0000", "from_user": "phaneeshn", "from_user_id": 78000743, "from_user_id_str": "78000743", "from_user_name": "Phaneesh Nagaraja", "geo": null, "id": 146969992947171330, "id_str": "146969992947171329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/789289885/0383_guitarist_heavy_metal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/789289885/0383_guitarist_heavy_metal_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "#Hadoop Market Competition: #comScore From #Cloudera to #MapR: http://t.co/JjbOjQIu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} + +, +{"created_at": "Mon, 19 Dec 2011 18:59:14 +0000", "from_user": "LITTLE_JUICY", "from_user_id": 301155351, "from_user_id_str": "301155351", "from_user_name": "Karen Santamaria ", "geo": null, "id": 148839824835620860, "id_str": "148839824835620864", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1441251329/mTd2puLYY08_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1441251329/mTd2puLYY08_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @valladolor: \"Angry Birds Las Delicias\" en tu App Store, consiste en lanzar trozos de chatarra y cobre a Monchines, nunca les matas, se lo quedan todo.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:13 +0000", "from_user": "Bessieee801", "from_user_id": 379976799, "from_user_id_str": "379976799", "from_user_name": "Bessie Redd", "geo": null, "id": 148839822709112830, "id_str": "148839822709112832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1559829174/LPSS-3539_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1559829174/LPSS-3539_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Birds Bell Pull Counted Cross-Stitch Kit: Four varieties of colorful birds are recreated in fantastic detail by ... http://t.co/ljtEp8CV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:13 +0000", "from_user": "AKA_KyleWatson", "from_user_id": 41403263, "from_user_id_str": "41403263", "from_user_name": "kyle watson", "geo": +{"coordinates": [55.0674,-3.603], "type": "Point"}, "id": 148839821266268160, "id_str": "148839821266268161", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1640599057/scully_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640599057/scully_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@brogie10 @raffenator10 @rossybumpinsero As it happens Ive got 4 nice tickets to Noels high flying birds here , but I ain't going #cheif", "to_user": "brogie10", "to_user_id": 353107405, "to_user_id_str": "353107405", "to_user_name": "Stephen Brogan"}, +{"created_at": "Mon, 19 Dec 2011 18:59:13 +0000", "from_user": "ToPiXx626", "from_user_id": 192109834, "from_user_id_str": "192109834", "from_user_name": "Walter", "geo": null, "id": 148839819894734850, "id_str": "148839819894734849", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1126077718/1239070483584_edit0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1126077718/1239070483584_edit0_normal.jpg", "source": "<a href="http://www.myyearbook.com/" rel="nofollow">myYearbook Share</a>", "text": "Soo high, thee birds are jealous(x: http://t.co/0Z1t0ObH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:12 +0000", "from_user": "CREEZAYPHRESH", "from_user_id": 191350112, "from_user_id_str": "191350112", "from_user_name": "Christina \\u042Feid ", "geo": null, "id": 148839818921652220, "id_str": "148839818921652224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699376506/Photo_on_12-17-11_at_8.24_PM__4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699376506/Photo_on_12-17-11_at_8.24_PM__4_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "im a shark sorry \"@_KoolAde_: birds of a feather lol RT @CREEZAYPHRESH: @_KoolAde_ yuh fool enuh\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:09 +0000", "from_user": "ChickadeeSeed", "from_user_id": 227359440, "from_user_id_str": "227359440", "from_user_name": "Chickadee", "geo": null, "id": 148839806493921280, "id_str": "148839806493921280", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683714335/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683714335/image_normal.jpg", "source": "<a href="http://www.shareaholic.com" rel="nofollow">shareaholic app</a>", "text": "RT @Birding_Is_Fun: RT - Pied-billed Grebe \\u00AB Rich Ditch's Photography Blog - http://t.co/z0td08tc #birds #birding", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:08 +0000", "from_user": "_LoveTenisha", "from_user_id": 44808615, "from_user_id_str": "44808615", "from_user_name": "Tenisha Kyler", "geo": null, "id": 148839799481049100, "id_str": "148839799481049090", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1632600147/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632600147/image_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Lmbo!! \"@ERIN_coleman: This school shit is for the birds\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:07 +0000", "from_user": "Flutterbybybye", "from_user_id": 104797922, "from_user_id_str": "104797922", "from_user_name": "Jemma Stafford", "geo": null, "id": 148839795987189760, "id_str": "148839795987189760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/630676339/pic2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/630676339/pic2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I used to like birds. But the. I took a sparrow to the knee.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:05 +0000", "from_user": "SassyMsB", "from_user_id": 127691700, "from_user_id_str": "127691700", "from_user_name": "Simply MsB", "geo": null, "id": 148839789796392960, "id_str": "148839789796392960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1663697765/317486_2355438039689_1062351486_2689913_455170766_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663697765/317486_2355438039689_1062351486_2689913_455170766_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "My stomach is sounding like hungry baby birds. Weird ass noise its makin", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:04 +0000", "from_user": "x_DopeAssTEASE", "from_user_id": 161343915, "from_user_id_str": "161343915", "from_user_name": "Bad \\u2665", "geo": null, "id": 148839782129205250, "id_str": "148839782129205249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1678077192/290283_2182276086695_1540765217_31791211_2019058512_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678077192/290283_2182276086695_1540765217_31791211_2019058512_o_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "All that bull shit for the birds & she pigeon toed .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:03 +0000", "from_user": "milk707", "from_user_id": 175288501, "from_user_id_str": "175288501", "from_user_name": "Brenda Tan", "geo": null, "id": 148839779117699070, "id_str": "148839779117699073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1096719061/ayu_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1096719061/ayu_normal.jpeg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "It's 3am, n I'm still playing angry birds jz to get 3stars!! Got poison influence by BB !!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:02 +0000", "from_user": "teknobot", "from_user_id": 182753520, "from_user_id_str": "182753520", "from_user_name": "Brian", "geo": null, "id": 148839775309279230, "id_str": "148839775309279233", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1649274867/twit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649274867/twit_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @Gertatron: http://t.co/oGy6MCMY Migrating birds getting shot out of the sky. They call it sport, I call it sickening.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:58 +0000", "from_user": "scarlettgrace99", "from_user_id": 239912642, "from_user_id_str": "239912642", "from_user_name": "a", "geo": null, "id": 148839760541126660, "id_str": "148839760541126656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702355291/IMG01154-20110818-1235_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702355291/IMG01154-20110818-1235_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Its bad enough stuck over here without main land birds tweetering without me lol x", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:57 +0000", "from_user": "AngrySolutions", "from_user_id": 364178698, "from_user_id_str": "364178698", "from_user_name": "Angry Birds Solution", "geo": null, "id": 148839755579277300, "id_str": "148839755579277312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1518795105/286px-Angry_Birds_Icon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1518795105/286px-Angry_Birds_Icon_normal.png", "source": "<a href="http://www.zepan.org/software/tweetly-updater/" rel="nofollow">Tweetly Updater</a>", "text": "Angry Birds - 15 NEW Free Levels! A Golden Egg, Secret Level Hidden In Rio Movie Commercial! [1.5.1] http://t.co/6ZnMqMID #AngryBirds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:57 +0000", "from_user": "Alidasao", "from_user_id": 426261441, "from_user_id_str": "426261441", "from_user_name": "Alida Hartfield", "geo": null, "id": 148839753658277900, "id_str": "148839753658277888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668795613/LLCM-0715_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668795613/LLCM-0715_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Imamous Hey, download Pigeon Palooza (the next angry birds)- it is in Android Mktplce - will be in App Store next week.", "to_user": "Imamous", "to_user_id": 65617835, "to_user_id_str": "65617835", "to_user_name": "Imam ch", "in_reply_to_status_id": 148812854928224260, "in_reply_to_status_id_str": "148812854928224256"}, +{"created_at": "Mon, 19 Dec 2011 18:58:51 +0000", "from_user": "SUGA_SHAYY", "from_user_id": 234236069, "from_user_id_str": "234236069", "from_user_name": "SaMaNtHa LaShAy !", "geo": null, "id": 148839729050300400, "id_str": "148839729050300416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1682469050/156961_1249281049829_1763560146_476207_3957577_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682469050/156961_1249281049829_1763560146_476207_3957577_n_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "All the bs for the birds throw some bread out!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:48 +0000", "from_user": "___SNiiPER___", "from_user_id": 187259973, "from_user_id_str": "187259973", "from_user_name": "\\u2605'iSniiper Vl Sal ", "geo": null, "id": 148839716878426100, "id_str": "148839716878426112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701150924/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701150924/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I honestly think the best weeknd songs (top 3) are : Initiation , The Knowing , Birds part 1.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:46 +0000", "from_user": "m3wallace", "from_user_id": 101695920, "from_user_id_str": "101695920", "from_user_name": "Bwall", "geo": null, "id": 148839709496446980, "id_str": "148839709496446976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691843844/m3wallace_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691843844/m3wallace_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "man this greeting stuff is for the birds, hate this ish |m3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:41 +0000", "from_user": "lbitria", "from_user_id": 118831304, "from_user_id_str": "118831304", "from_user_name": "Lloren\\u00E7 Bitri\\u00E0", "geo": null, "id": 148839689099550720, "id_str": "148839689099550720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1684753230/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684753230/image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "'Angry Birds considera salir a Bolsa en Hong Kong' http://t.co/fbDbUVGW via @expansioncom", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:40 +0000", "from_user": "lazarushearts", "from_user_id": 294751229, "from_user_id_str": "294751229", "from_user_name": "Tanith Pyner", "geo": null, "id": 148839682053124100, "id_str": "148839682053124096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695347510/lurr_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695347510/lurr_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "'do birds of different species, like, hang out?' god sometimes i sound so stoned.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:38 +0000", "from_user": "JeremyMeade45", "from_user_id": 211872915, "from_user_id_str": "211872915", "from_user_name": "Jeremy Meade", "geo": null, "id": 148839674885062660, "id_str": "148839674885062657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1621551408/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621551408/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @Laurenbellalex: Shake it for the birds, shake it for the bees.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:38 +0000", "from_user": "grumpy1970", "from_user_id": 22869662, "from_user_id_str": "22869662", "from_user_name": "Susan ", "geo": null, "id": 148839673282826240, "id_str": "148839673282826240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1449097409/grumpy1970_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1449097409/grumpy1970_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@PopcornPalace ~ four calling (popping) birds #12dayspop", "to_user": "PopcornPalace", "to_user_id": 29562199, "to_user_id_str": "29562199", "to_user_name": "Popcorn Palace", "in_reply_to_status_id": 148839079130312700, "in_reply_to_status_id_str": "148839079130312704"}, +{"created_at": "Mon, 19 Dec 2011 18:58:37 +0000", "from_user": "J3aTuR", "from_user_id": 404692389, "from_user_id_str": "404692389", "from_user_name": "MerT J3aTTaL", "geo": null, "id": 148839672813068300, "id_str": "148839672813068288", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Crazy Birds Rio http://t.co/v0lhfmVx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:35 +0000", "from_user": "letsgolakers086", "from_user_id": 78384041, "from_user_id_str": "78384041", "from_user_name": "letsgolakers086", "geo": null, "id": 148839661660409860, "id_str": "148839661660409856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1336727966/CHAMPIONS_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1336727966/CHAMPIONS_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@PopcornPalace It's a bird, it's a plane, no it's even better. It's popcorn birds! #12dayspop", "to_user": "PopcornPalace", "to_user_id": 29562199, "to_user_id_str": "29562199", "to_user_name": "Popcorn Palace"}, +{"created_at": "Mon, 19 Dec 2011 18:58:31 +0000", "from_user": "nikuyasaidayo", "from_user_id": 222740205, "from_user_id_str": "222740205", "from_user_name": "\\u306B\\u304F", "geo": null, "id": 148839646028247040, "id_str": "148839646028247040", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1187855299/dari1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1187855299/dari1_normal.jpg", "source": "<a href="http://tbtwit.com" rel="nofollow">tbtwit</a>", "text": "\\u30E1\\u30EA\\u30FC\\u30DD\\u30D4\\u30F3\\u30BA\\u898B\\u3066\\u3001\\u3053\\u306E\\u5834\\u9762\\u306B\\u306A\\u308B\\u3068\\u6CE3\\u304D\\u305D\\u3046\\u306B\\u306A\\u308B\\u3002YouTube - Feed The Birds - Mary Poppins (Julie Andrews) http://t.co/DDoodXtt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:29 +0000", "from_user": "BhunaBhuna", "from_user_id": 228110623, "from_user_id_str": "228110623", "from_user_name": "Martin Shaw", "geo": null, "id": 148839638549794800, "id_str": "148839638549794817", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1599083947/Screen_20110407_073928_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599083947/Screen_20110407_073928_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Alright hairdresser / hairdressee birds? 'Yeah pretty much'. Sweet, sweet... I have a working fridge and four bottles of Bud from work so...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:28 +0000", "from_user": "YoGirlsFavKappa", "from_user_id": 166724970, "from_user_id_str": "166724970", "from_user_name": "Antonio Guevara", "geo": null, "id": 148839631222358000, "id_str": "148839631222358016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1534597726/334278_1948222741084_1108036448_31720231_1416687_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534597726/334278_1948222741084_1108036448_31720231_1416687_o_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Happy birthday @kay_loray !!! You and @NUPEologist have fun on yalls one year celebration lol...two.little love birds lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:24 +0000", "from_user": "BraveBoldNathan", "from_user_id": 375671996, "from_user_id_str": "375671996", "from_user_name": "Nathan Bone", "geo": null, "id": 148839616940736500, "id_str": "148839616940736513", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1548542874/249494_1543650531051_1828634700_937807_7381645_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1548542874/249494_1543650531051_1828634700_937807_7381645_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"I have a test tomorrow in birds suddenly appear....I mean English\" gotta love lisa #TheSimpsons", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:23 +0000", "from_user": "NomaGeeDiva", "from_user_id": 60005497, "from_user_id_str": "60005497", "from_user_name": "Nomagugu K. Moyo", "geo": null, "id": 148839613157486600, "id_str": "148839613157486592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702424289/331704466_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702424289/331704466_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": ":\"D RT @KiranYoliswa: And the mosquitos out here are like small birds!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:22 +0000", "from_user": "EugenaZeimantz5", "from_user_id": 437578495, "from_user_id_str": "437578495", "from_user_name": "Eugena Zeimantz", "geo": null, "id": 148839609307107330, "id_str": "148839609307107328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701210147/27569470522640_100415376656824_100000650857409_8543_964294_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701210147/27569470522640_100415376656824_100000650857409_8543_964294_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Good morninggggg sunshineee,,rainbow,,cloud, the birds and the bees, the air, the green leaf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:22 +0000", "from_user": "BlackwellAmy", "from_user_id": 418893945, "from_user_id_str": "418893945", "from_user_name": "Amy Blackwell", "geo": null, "id": 148839607344168960, "id_str": "148839607344168960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1652365050/Amy_at_DC_Capitol_Hill_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652365050/Amy_at_DC_Capitol_Hill_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @monumentpharm: Tips 4 finding the right #veterinary #pharmacy: http://t.co/PCglnydp #pets #animals #dogs #cats #horses #birds #reptiles #meds #medicine", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:21 +0000", "from_user": "Louracaux", "from_user_id": 426260722, "from_user_id_str": "426260722", "from_user_name": "Loura Emmert", "geo": null, "id": 148839601660899330, "id_str": "148839601660899329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668792937/LLCM-4006_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668792937/LLCM-4006_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Jevan54 Go get Pigeon Palooza (the next angry birds)- it's launched in Android Mktplce - will be in ITunes in a few days.", "to_user": "Jevan54", "to_user_id": 25535243, "to_user_id_str": "25535243", "to_user_name": "Joshua Caraway", "in_reply_to_status_id": 148833630901370880, "in_reply_to_status_id_str": "148833630901370881"}, +{"created_at": "Mon, 19 Dec 2011 18:58:19 +0000", "from_user": "Kid_DTK", "from_user_id": 301966487, "from_user_id_str": "301966487", "from_user_name": "dkyp", "geo": null, "id": 148839595822415870, "id_str": "148839595822415872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688073615/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688073615/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@JawsonsTweets: I rate guys on how many relationships they've held down, not on how birds they've banged.\\u201D looool #DPMO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:15 +0000", "from_user": "erkrosales", "from_user_id": 132967809, "from_user_id_str": "132967809", "from_user_name": "Erik Rosales", "geo": null, "id": 148839579800178700, "id_str": "148839579800178688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702188377/IMG00340-20110717-1710_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702188377/IMG00340-20110717-1710_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Dailymotion - Theme park creates real-life Angry Birds game http://t.co/qjTEUytN via @dailymotion_lat", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:10 +0000", "from_user": "imanazman", "from_user_id": 21068069, "from_user_id_str": "21068069", "from_user_name": "iman azman", "geo": null, "id": 148839557113192450, "id_str": "148839557113192448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1421843497/260393_10150285529773623_660063622_9229361_2991156_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1421843497/260393_10150285529773623_660063622_9229361_2991156_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "Wrote a long blog post about our day in #Vienna and lost it all when my baby cousin decided to play angry birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:10 +0000", "from_user": "Roxanefvj", "from_user_id": 426262051, "from_user_id_str": "426262051", "from_user_name": "Roxane Chafetz", "geo": null, "id": 148839555540332540, "id_str": "148839555540332545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668798016/LLCM-4894_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668798016/LLCM-4894_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@kyyman Hey, try out Pigeon Palooza (the next angry birds)- it is in Android Mktplce - will be in ITunes soon.", "to_user": "kyyman", "to_user_id": 257744730, "to_user_id_str": "257744730", "to_user_name": "Mickyle", "in_reply_to_status_id": 148824820707102720, "in_reply_to_status_id_str": "148824820707102720"}, +{"created_at": "Mon, 19 Dec 2011 18:58:07 +0000", "from_user": "JediBeadles", "from_user_id": 49422193, "from_user_id_str": "49422193", "from_user_name": "Nick Beadles", "geo": null, "id": 148839544475750400, "id_str": "148839544475750400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1219374496/Backflip_013_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1219374496/Backflip_013_normal.jpg", "source": "<a href="http://www.motorola.com" rel="nofollow">motoblur</a>", "text": "Pulling for the Jets this week & the Giants next week. 200 to 1 odds...I'll take it. After this season atleast the Birds still have a chance", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:06 +0000", "from_user": "MicahEgnater", "from_user_id": 72736588, "from_user_id_str": "72736588", "from_user_name": "Micah Egnater", "geo": null, "id": 148839541208395780, "id_str": "148839541208395776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1519720811/yo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1519720811/yo_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Birds flying high, you know how I feel", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:02 +0000", "from_user": "Justbirds1", "from_user_id": 291680688, "from_user_id_str": "291680688", "from_user_name": "Bev", "geo": null, "id": 148839522359189500, "id_str": "148839522359189505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1335631073/5261855304_0f68f9ba91_m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335631073/5261855304_0f68f9ba91_m_normal.jpg", "source": "<a href="http://www.twaitter.com" rel="nofollow">Twaitter</a>", "text": "Portrait of a Buzzard http://t.co/tXZzk3cH #birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:58 +0000", "from_user": "ShugaHud", "from_user_id": 115376442, "from_user_id_str": "115376442", "from_user_name": "ShugaHud", "geo": null, "id": 148839508333441020, "id_str": "148839508333441024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1683624961/134857_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683624961/134857_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "No one is free, Even the birds are chained to the sky", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:57 +0000", "from_user": "MissEp3", "from_user_id": 155083481, "from_user_id_str": "155083481", "from_user_name": "JESSICA S.", "geo": null, "id": 148839502062956540, "id_str": "148839502062956544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684484120/N3DQR4eS_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684484120/N3DQR4eS_normal", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "Thank you! Big ups to you for being man enough to agree! RT @DJJONEZNYC Lol true! RT @MissEp3: Men are birds too, just saying.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:57 +0000", "from_user": "Agnusnxw", "from_user_id": 426260297, "from_user_id_str": "426260297", "from_user_name": "Agnus Zumbach", "geo": null, "id": 148839501077299200, "id_str": "148839501077299201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668792048/LLCM-3852_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668792048/LLCM-3852_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Pardo_Lu Have to check out Pigeon Palooza (the next angry birds)- it is for sale in Android Mktplce - will be in App Store in a few days.", "to_user": "Pardo_Lu", "to_user_id": 357534768, "to_user_id_str": "357534768", "to_user_name": "Luc\\u00EDa Pardo", "in_reply_to_status_id": 148831608110198800, "in_reply_to_status_id_str": "148831608110198784"}, +{"created_at": "Mon, 19 Dec 2011 18:57:50 +0000", "from_user": "ahudal", "from_user_id": 82324184, "from_user_id_str": "82324184", "from_user_name": "Ahu", "geo": null, "id": 148839472941895680, "id_str": "148839472941895680", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1676004335/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676004335/image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "http://t.co/v9vtagWy birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:49 +0000", "from_user": "Chris_in_Dior", "from_user_id": 146400364, "from_user_id_str": "146400364", "from_user_name": "Christopher robinson", "geo": null, "id": 148839468235890700, "id_str": "148839468235890688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1656338229/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656338229/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "The Weeknd - The Birds Part 2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:49 +0000", "from_user": "____HateOnME", "from_user_id": 235864141, "from_user_id_str": "235864141", "from_user_name": "BallOrGetBalledOn :)", "geo": null, "id": 148839467812270080, "id_str": "148839467812270080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697478208/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697478208/image_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Sitting here with deangela india khrystal teara and marlon watching angry birds/rios", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:45 +0000", "from_user": "Janine_Rocka", "from_user_id": 24515512, "from_user_id_str": "24515512", "from_user_name": "Janine \\u24CB\\u24BA\\u24C7\\u24D8\\u24BB\\u24D8\\u24BA\\u24B9 \\u2714", "geo": null, "id": 148839452532408320, "id_str": "148839452532408320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689565289/331377352_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689565289/331377352_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "If you're avi pic is the size of a birds eye pea you're hiding uglyness", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:44 +0000", "from_user": "Cerpentol", "from_user_id": 246183842, "from_user_id_str": "246183842", "from_user_name": "cerpentol", "geo": null, "id": 148839448505876480, "id_str": "148839448505876480", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699541058/Mike_Patton_Mike_01_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699541058/Mike_Patton_Mike_01_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Neng emang mau ngapain? / Mau tamatin Angry birds dulu../ oh ya udah, jangan lupa besok belanja buat nyegik neng ya, jgn begadang mulu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:43 +0000", "from_user": "x_DhatsDonDoe_x", "from_user_id": 303589671, "from_user_id_str": "303589671", "from_user_name": "Tadonya Thomas", "geo": null, "id": 148839443552403460, "id_str": "148839443552403456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1676242979/ColorTouch-1320001765901_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676242979/ColorTouch-1320001765901_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "My Granny Tryin Talk Bout The Birds An The Bees and ummmmm #ItsALilToLateFaDhat!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:42 +0000", "from_user": "liobrien", "from_user_id": 46666884, "from_user_id_str": "46666884", "from_user_name": "Lisa O Brien", "geo": null, "id": 148839440637362180, "id_str": "148839440637362177", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1235927418/Cedars072_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1235927418/Cedars072_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "These Festive Angry Birds Decorations Are Really An Fun Interactive Game http://t.co/5pZ32Gk9 via @simplyzesty", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:41 +0000", "from_user": "LiZZO_13", "from_user_id": 208387098, "from_user_id_str": "208387098", "from_user_name": "Liz Patterson ", "geo": null, "id": 148839436942192640, "id_str": "148839436942192640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1545128346/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545128346/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "this 4am stuff is for the birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:39 +0000", "from_user": "DulceVita__", "from_user_id": 314075584, "from_user_id_str": "314075584", "from_user_name": "Elizabeth Pineda", "geo": null, "id": 148839428754907140, "id_str": "148839428754907136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685795435/2011-12-10_16-36-25_953c_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685795435/2011-12-10_16-36-25_953c_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "That shits for the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:35 +0000", "from_user": "BrianDingler", "from_user_id": 37454300, "from_user_id_str": "37454300", "from_user_name": "Brian Dingler", "geo": null, "id": 148839411310805000, "id_str": "148839411310804992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702246340/BrianDingler_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702246340/BrianDingler_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u00AB@someecards Angry Birds now available on iPhone, Droid, and completely insane man's Christmas lights display. http://t.co/tcfGNyl5\\u00BB\\u00BB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:35 +0000", "from_user": "Intellico_On", "from_user_id": 37151953, "from_user_id_str": "37151953", "from_user_name": "Anomaly Rho Esq.", "geo": null, "id": 148839410509692930, "id_str": "148839410509692928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1659882906/sali_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659882906/sali_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "This level of angry birds is pissing me off! they are cheating!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:31 +0000", "from_user": "kashmyl", "from_user_id": 161916864, "from_user_id_str": "161916864", "from_user_name": "Karen", "geo": null, "id": 148839393677942800, "id_str": "148839393677942784", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697503197/ouw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697503197/ouw_normal.jpg", "source": "<a href="http://hypem.com" rel="nofollow">The Hype Machine</a>", "text": "Just loved Wooden Birds - Believe In Love http://t.co/ETAdKM40 on @hypem", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:31 +0000", "from_user": "JuliaJups", "from_user_id": 16312353, "from_user_id_str": "16312353", "from_user_name": "J\\u00FAlia Jups", "geo": null, "id": 148839392990076930, "id_str": "148839392990076928", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1566047320/twinto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566047320/twinto_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "papai noel, apenas desejo: um angry birds infinito", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:25 +0000", "from_user": "liveyourdreamsc", "from_user_id": 228829293, "from_user_id_str": "228829293", "from_user_name": "emily chance", "geo": null, "id": 148839370143703040, "id_str": "148839370143703040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690492463/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690492463/image_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Been playing angry birds all morning #nolife", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:25 +0000", "from_user": "thatdiva87", "from_user_id": 40130722, "from_user_id_str": "40130722", "from_user_name": "Dark Skin Beauty", "geo": null, "id": 148839367383859200, "id_str": "148839367383859200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701572087/meeee_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701572087/meeee_normal.jpeg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I swear bitches r birds some of the shit these girls be saying is ridiculous....ok u f*cked u want a gold medal for it !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:21 +0000", "from_user": "ImRegiMendez", "from_user_id": 234112347, "from_user_id_str": "234112347", "from_user_name": "quien? yo?", "geo": null, "id": 148839351437107200, "id_str": "148839351437107200", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681161509/373790_283365395034666_100000836239782_709537_1583490129_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681161509/373790_283365395034666_100000836239782_709537_1583490129_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "quiero jugar angry birds\\u2665", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:22 +0000", "from_user": "maddie_heiar23", "from_user_id": 335054161, "from_user_id_str": "335054161", "from_user_name": "Madeline Heiar", "geo": null, "id": 148839348366884860, "id_str": "148839348366884864", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1441526133/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1441526133/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@annz_jochum6 #BIRDS http://t.co/FH41QJnl", "to_user": "annz_jochum6", "to_user_id": 395546630, "to_user_id_str": "395546630", "to_user_name": "Anna Jochum "}, +{"created_at": "Mon, 19 Dec 2011 18:57:20 +0000", "from_user": "2BeMe_", "from_user_id": 126812765, "from_user_id_str": "126812765", "from_user_name": "J. DeLana", "geo": null, "id": 148839347981008900, "id_str": "148839347981008897", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692061389/1213111533_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692061389/1213111533_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "first angry birds...ow temple run -____- #icant", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:17 +0000", "from_user": "MissEp3", "from_user_id": 155083481, "from_user_id_str": "155083481", "from_user_name": "JESSICA S.", "geo": null, "id": 148839336765427700, "id_str": "148839336765427713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684484120/N3DQR4eS_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684484120/N3DQR4eS_normal", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @DJJONEZNYC: Lol true! RT @MissEp3: Men are birds too, just saying.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:17 +0000", "from_user": "triggatimsongz", "from_user_id": 273596693, "from_user_id_str": "273596693", "from_user_name": "Tim Landock Jr", "geo": null, "id": 148839333577752580, "id_str": "148839333577752576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1290604082/timmy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1290604082/timmy_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Birds of a feather flock together !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:13 +0000", "from_user": "BraveBoldNathan", "from_user_id": 375671996, "from_user_id_str": "375671996", "from_user_name": "Nathan Bone", "geo": null, "id": 148839319132581900, "id_str": "148839319132581888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1548542874/249494_1543650531051_1828634700_937807_7381645_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1548542874/249494_1543650531051_1828634700_937807_7381645_n_normal.jpg", "source": "<a href="http://getglue.com" rel="nofollow">GetGlue.com</a>", "text": "\"I have a test tomorrow in birds suddenly appear....I mean english!\" http://t.co/zh4wqVMq @GetGlue #thesimpsons", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:13 +0000", "from_user": "erkrosales", "from_user_id": 132967809, "from_user_id_str": "132967809", "from_user_name": "Erik Rosales", "geo": null, "id": 148839318578925570, "id_str": "148839318578925568", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702188377/IMG00340-20110717-1710_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702188377/IMG00340-20110717-1710_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Hasta donde han llegado #angrybirds abren parque tem\\u00E1tico en China http://t.co/TMKCHxGT hahahahaha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:11 +0000", "from_user": "nathanleah", "from_user_id": 35303525, "from_user_id_str": "35303525", "from_user_name": "Nathan Leah", "geo": null, "id": 148839311054340100, "id_str": "148839311054340099", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1653487729/IMG00021-20111122-1657_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653487729/IMG00021-20111122-1657_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @WTFuckFacts: Over 1,000 birds a year die from smashing into windows.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:11 +0000", "from_user": "PrettyShanell21", "from_user_id": 145450828, "from_user_id_str": "145450828", "from_user_name": "Shiffon Neverson", "geo": null, "id": 148839309103996930, "id_str": "148839309103996929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702552405/PrettyShanell21_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702552405/PrettyShanell21_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "I don't like making love I leave that to the married ppl or the love birds ..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:11 +0000", "from_user": "VeroniicaLynn", "from_user_id": 195193252, "from_user_id_str": "195193252", "from_user_name": "Veronica Skittles", "geo": null, "id": 148839308437094400, "id_str": "148839308437094400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1634705065/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634705065/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "That awkward moment when you realize one level of angry birds lasts longer than your relationships", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:10 +0000", "from_user": "BossDre_", "from_user_id": 124734009, "from_user_id_str": "124734009", "from_user_name": "Andr\\u00E9 \\u2714", "geo": null, "id": 148839305945677820, "id_str": "148839305945677824", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700052319/Foto_68_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700052319/Foto_68_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ohnoitsafro: @BossDre_ ga niet suicide, kill gewoon die birds je mag niet dood :( - hihih yeah <3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:07 +0000", "from_user": "InsectTribe", "from_user_id": 66624452, "from_user_id_str": "66624452", "from_user_name": "Yo.", "geo": null, "id": 148839292121251840, "id_str": "148839292121251841", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668442590/388291_1992286026323_1818594261_1319840_1467390361_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668442590/388291_1992286026323_1818594261_1319840_1467390361_n_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Angry birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:06 +0000", "from_user": "ashlynochoy", "from_user_id": 305822181, "from_user_id_str": "305822181", "from_user_name": "ashlyn choy", "geo": null, "id": 148839291114622980, "id_str": "148839291114622976", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1682829555/Comforter_Sets_Twin_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682829555/Comforter_Sets_Twin_normal.jpg", "source": "<a href="http://comfortersetstwin.com" rel="nofollow">Comforter Sets Twin</a>", "text": "Q: Birds Butterflies and http://t.co/er4JP7It", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:06 +0000", "from_user": "Jannausld", "from_user_id": 426261581, "from_user_id_str": "426261581", "from_user_name": "Janna Cadorette", "geo": null, "id": 148839290556792830, "id_str": "148839290556792833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668795630/LLCM-2162_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668795630/LLCM-2162_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@xLOiiSBiiEBER Dude, get Pigeon Palooza (the next angry birds)- it's in Android Mktplce - will be in ITunes soon.", "to_user": "xLOiiSBiiEBER", "to_user_id": 254555340, "to_user_id_str": "254555340", "to_user_name": "a BELIEBER in BIEBER", "in_reply_to_status_id": 148838193637240830, "in_reply_to_status_id_str": "148838193637240832"}, +{"created_at": "Mon, 19 Dec 2011 18:57:05 +0000", "from_user": "NajeraTheBeast", "from_user_id": 198767448, "from_user_id_str": "198767448", "from_user_name": "Lidin Aaron Najera", "geo": null, "id": 148839283149635600, "id_str": "148839283149635584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689669071/NajeraTheBeast_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689669071/NajeraTheBeast_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Never fails. Fuckin morning branch every morning.. there's birds chilling on it and shit.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:04 +0000", "from_user": "dimdom", "from_user_id": 20195643, "from_user_id_str": "20195643", "from_user_name": "Dominic Langmead", "geo": null, "id": 148839279471235070, "id_str": "148839279471235072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1642361452/dom_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642361452/dom_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "just given my 10 year old niece a #WP7 within seconds she was in the marketplace downloading Angry Birds after never seeing it before.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:03 +0000", "from_user": "DJJONEZNYC", "from_user_id": 34871605, "from_user_id_str": "34871605", "from_user_name": "DJ JON\\u039EZ Bombita\\u2714", "geo": null, "id": 148839277713834000, "id_str": "148839277713833984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1663951011/387368_10150355991522676_510162675_8481253_878600325_n-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663951011/387368_10150355991522676_510162675_8481253_878600325_n-1_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Lol true! RT @MissEp3: Men are birds too, just saying.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:02 +0000", "from_user": "Lawannabm70", "from_user_id": 387913190, "from_user_id_str": "387913190", "from_user_name": "Lawanna Mazzeo", "geo": null, "id": 148839272894562300, "id_str": "148839272894562304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1580572099/PPK-3283_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580572099/PPK-3283_normal.jpg", "source": "<a href="http://bestdealsvk2.co.cc" rel="nofollow">bestdealsvk2.co.cc</a>", "text": "http://t.co/SyjFrxtv Angry Birds - Gaming Poster Angry Birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:58 +0000", "from_user": "tankababy01", "from_user_id": 266392500, "from_user_id_str": "266392500", "from_user_name": "Tanka B", "geo": null, "id": 148839256671010800, "id_str": "148839256671010816", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695962643/Picture0169_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695962643/Picture0169_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@KonvicB @MisFine89 immm joeeee hye u luv birds :)", "to_user": "KonvicB", "to_user_id": 92476914, "to_user_id_str": "92476914", "to_user_name": "#meagainsttheworld", "in_reply_to_status_id": 148838853019566080, "in_reply_to_status_id_str": "148838853019566080"}, +{"created_at": "Mon, 19 Dec 2011 18:56:57 +0000", "from_user": "_rondo38", "from_user_id": 263415746, "from_user_id_str": "263415746", "from_user_name": "Nine Rondo . !!", "geo": null, "id": 148839251465875460, "id_str": "148839251465875456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1551265518/brah-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1551265518/brah-1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @channyRICH: playing angry birds , this shit addicting !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:55 +0000", "from_user": "_vicKiUrSecRet", "from_user_id": 97718194, "from_user_id_str": "97718194", "from_user_name": "Jazzy Love", "geo": null, "id": 148839244461379600, "id_str": "148839244461379584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1427603554/3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1427603554/3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "aye she blowin me that shit is reckless bitch chill cuz all that talk is for the birds get over it all aint friends part ways #fuck", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:55 +0000", "from_user": "bw5599", "from_user_id": 239294392, "from_user_id_str": "239294392", "from_user_name": "Brandon", "geo": null, "id": 148839241642815500, "id_str": "148839241642815489", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1658603046/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658603046/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@JonPitman @ESPN_Colin bottom line if birds didn't have wings they couldn't fly!! #denverdelusion", "to_user": "ESPN_Colin", "to_user_id": 52529896, "to_user_id_str": "52529896", "to_user_name": "Colin Cowherd", "in_reply_to_status_id": 148835849184886800, "in_reply_to_status_id_str": "148835849184886784"}, +{"created_at": "Mon, 19 Dec 2011 18:56:53 +0000", "from_user": "Tony_O92", "from_user_id": 118245224, "from_user_id_str": "118245224", "from_user_name": "Tony Ortega ", "geo": null, "id": 148839236211183600, "id_str": "148839236211183616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1686224350/munch_2011_10_31_190745_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686224350/munch_2011_10_31_190745_normal.png", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@AlfonsoOrtixx blood and glory, angry birds, cut the rope, gunbros, infinity blade, zombieville, plants vs zombies, falling fred", "to_user": "AlfonsoOrtixx", "to_user_id": 123609142, "to_user_id_str": "123609142", "to_user_name": "Pedro Ortiz", "in_reply_to_status_id": 148804335499870200, "in_reply_to_status_id_str": "148804335499870211"}, +{"created_at": "Mon, 19 Dec 2011 18:56:52 +0000", "from_user": "nicolekayys", "from_user_id": 35506521, "from_user_id_str": "35506521", "from_user_name": "Nicole Spouge", "geo": null, "id": 148839232310493200, "id_str": "148839232310493184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1502631706/Vintage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1502631706/Vintage_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "The only things to keep me company right now are my birds. #loneliness", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:50 +0000", "from_user": "3LEGGED_DICKI", "from_user_id": 58128549, "from_user_id_str": "58128549", "from_user_name": "RICHARD A.K.A. DICKI", "geo": null, "id": 148839222743277570, "id_str": "148839222743277569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1514566843/261957_123300007757851_100002335572574_196180_854825_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1514566843/261957_123300007757851_100002335572574_196180_854825_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "LOL WHERES THE BIRDS *throws rice on dick*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:48 +0000", "from_user": "_YouABADDGirl", "from_user_id": 239551540, "from_user_id_str": "239551540", "from_user_name": "\\u2665\\u2665\\u2665", "geo": null, "id": 148839214782484480, "id_str": "148839214782484480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698539757/_123456_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698539757/_123456_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @JenJen_BadDoe: Jus downloaded angry birds :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:48 +0000", "from_user": "Luanahqp", "from_user_id": 431706462, "from_user_id_str": "431706462", "from_user_name": "Luana Edgerson", "geo": null, "id": 148839214375632900, "id_str": "148839214375632896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681043380/ikjwfl45yz_135321104-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681043380/ikjwfl45yz_135321104-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Avian Biochemistry and Molecular Biology: The biology of birds is diverse and frequently differs significantly f... http://t.co/AdZcQZEv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:46 +0000", "from_user": "loriahorton", "from_user_id": 210643292, "from_user_id_str": "210643292", "from_user_name": "Lori Horton", "geo": null, "id": 148839206809108480, "id_str": "148839206809108480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1661334493/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661334493/twitter_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "And a few minutes of angry birds before the kids come home from school? This MUST be my day!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:46 +0000", "from_user": "iTweet4Pesos", "from_user_id": 208654031, "from_user_id_str": "208654031", "from_user_name": "Pedro ", "geo": null, "id": 148839205907345400, "id_str": "148839205907345408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698926534/profile_image_1324157934270_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698926534/profile_image_1324157934270_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "And flippin them bricks RT @tstrong4 Thats cause mike was moving them birds RT @iTweet4Pesos: Smooth Criminal just came on Jeezy Pandora", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:44 +0000", "from_user": "RoeDent", "from_user_id": 52410631, "from_user_id_str": "52410631", "from_user_name": "Roe Dent", "geo": null, "id": 148839196340129800, "id_str": "148839196340129792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/639414532/roe_avatar_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/639414532/roe_avatar_normal.PNG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @harvardjames: 'Today's prize is perfect for anyone who want to keep nocturnal predatory birds warm on a cold night: it's this heated owl-rail.' #ISIHAC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:44 +0000", "from_user": "KaylaMarchee", "from_user_id": 242063362, "from_user_id_str": "242063362", "from_user_name": "Kayla Marchee'", "geo": null, "id": 148839195337687040, "id_str": "148839195337687041", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701202462/2011-08-08_20.36.20-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701202462/2011-08-08_20.36.20-1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "This training is 4 tha effn birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:38 +0000", "from_user": "Agnusidr", "from_user_id": 426264992, "from_user_id_str": "426264992", "from_user_name": "Marlin Osburne", "geo": null, "id": 148839170931040260, "id_str": "148839170931040256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668803895/LLCM-1660_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668803895/LLCM-1660_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@_ImSunnyAF Ya should try out Pigeon Palooza (the next angry birds)- it's for sale in Android Mktplce - will be in App Store soon.", "to_user": "_ImSunnyAF", "to_user_id": 173588622, "to_user_id_str": "173588622", "to_user_name": "Navier Nicole \\u2764", "in_reply_to_status_id": 148826291125239800, "in_reply_to_status_id_str": "148826291125239808"}, +{"created_at": "Mon, 19 Dec 2011 18:56:38 +0000", "from_user": "RaQueLHelena86", "from_user_id": 197892768, "from_user_id_str": "197892768", "from_user_name": "ShELL\\u2764\\u2764", "geo": null, "id": 148839170654212100, "id_str": "148839170654212096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702599370/IMG_9154_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702599370/IMG_9154_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@GarrettKlingel no myspace!!!...hah just tweetin wit the birds for now;)", "to_user": "GarrettKlingel", "to_user_id": 164729664, "to_user_id_str": "164729664", "to_user_name": "Garrett Klingel"}, +{"created_at": "Mon, 19 Dec 2011 18:56:36 +0000", "from_user": "Diannebrink", "from_user_id": 280662049, "from_user_id_str": "280662049", "from_user_name": "Dianne Brink", "geo": null, "id": 148839162332721150, "id_str": "148839162332721152", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1308792545/Naamloos_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1308792545/Naamloos_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Hahaha m'n moeder en zusjes zijn Angry Birds aan het spelen ^^", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:32 +0000", "from_user": "JosieMonteraJKS", "from_user_id": 428355695, "from_user_id_str": "428355695", "from_user_name": "Josie Montera", "geo": null, "id": 148839148285988860, "id_str": "148839148285988865", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674178556/16114177451195463_meghan_laughing_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674178556/16114177451195463_meghan_laughing_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@LisannePul Ya have to get Pigeon Palooza (the next angry birds)- it's live in Android Mktplce - will be in App Store next week.", "to_user": "LisannePul", "to_user_id": 377994681, "to_user_id_str": "377994681", "to_user_name": "Lisanne", "in_reply_to_status_id": 148818562289647600, "in_reply_to_status_id_str": "148818562289647616"}, +{"created_at": "Mon, 19 Dec 2011 18:56:32 +0000", "from_user": "WHOters_GiRl", "from_user_id": 213013421, "from_user_id_str": "213013421", "from_user_name": "DEViLiNa_BlUE DRESs", "geo": null, "id": 148839146885091330, "id_str": "148839146885091328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700726212/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700726212/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "killed two birds with one stone", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:28 +0000", "from_user": "TakeMyDicNFLOSS", "from_user_id": 73972269, "from_user_id_str": "73972269", "from_user_name": "\\u2605\\u2605 740 Shawtyyy \\u2605\\u2605", "geo": null, "id": 148839129067683840, "id_str": "148839129067683840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700508562/382170_2506028086041_1113202176_2747575_370355247_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700508562/382170_2506028086041_1113202176_2747575_370355247_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_StayyTrueee: All that beatin around the bush shit aint foreal , Shits for the birds !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:26 +0000", "from_user": "cute_lala99", "from_user_id": 196857788, "from_user_id_str": "196857788", "from_user_name": "Eyets weyinmi", "geo": null, "id": 148839121522147330, "id_str": "148839121522147328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691633760/331454995_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691633760/331454995_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "LolRT @dfixerr: As we celebrate Christmas. A lot of birds are in fear for their lives.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:23 +0000", "from_user": "godsonbates", "from_user_id": 274086871, "from_user_id_str": "274086871", "from_user_name": "d. Bates", "geo": null, "id": 148839108922454000, "id_str": "148839108922454016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693670663/331509268_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693670663/331509268_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Crazy wit the head, but she crazy in the head! Attract allotta birds cuz I got allotta bread!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:22 +0000", "from_user": "ShowMeMorr", "from_user_id": 172192066, "from_user_id_str": "172192066", "from_user_name": "Sean Morrissey", "geo": null, "id": 148839105315356670, "id_str": "148839105315356672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1682027161/Me_and_Chris_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682027161/Me_and_Chris_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "As more time goes by I would really like to see a 6' vegan powered afro launching pad standing on first base for the birds on the bat.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:16 +0000", "from_user": "_IDontCareee", "from_user_id": 216152809, "from_user_id_str": "216152809", "from_user_name": "Breea Nikol", "geo": null, "id": 148839081491701760, "id_str": "148839081491701761", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1653353436/Photo_on_2011-11-09_at_10.18__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653353436/Photo_on_2011-11-09_at_10.18__2_normal.jpg", "source": "<a href="http://www.twitter.com" rel="nofollow">Twitter for Windows Phone</a>", "text": "RT @TylerTheDebator: Birds of a feather flock together", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:16 +0000", "from_user": "EssaFrase_diz", "from_user_id": 302120462, "from_user_id_str": "302120462", "from_user_name": "Somente Frases \\u263A", "geo": null, "id": 148839079717507070, "id_str": "148839079717507073", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1364786129/folha_solta2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1364786129/folha_solta2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "P\\u00F4neis Malditos? Por que n\\u00E3o Angry Birds Malditos? #BigFollow: http://t.co/95g8W4rw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:15 +0000", "from_user": "MitzioDeSousa", "from_user_id": 388348407, "from_user_id_str": "388348407", "from_user_name": "Mitzio De Sousa", "geo": null, "id": 148839076798279680, "id_str": "148839076798279680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691556836/twitter_final_final_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691556836/twitter_final_final_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Cool old man who can barely walk, drives to the area i live in just to feed the birds every morning! never fails!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:56:13 +0000", "from_user": "dani_hendler", "from_user_id": 26655157, "from_user_id_str": "26655157", "from_user_name": "Dani Hendler", "geo": null, "id": 148839068527104000, "id_str": "148839068527104001", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1265223748/Eu_033he_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1265223748/Eu_033he_normal.jpg", "source": "<a href="http://www.tweekly.fm/" rel="nofollow">Tweekly.fm</a>", "text": "My Top 3 #lastfm Artists: Metallica (61), Arctic Monkeys (30) & Noel Gallagher's High Flying Birds (28) http://t.co/7GpP975k", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:11 +0000", "from_user": "bpfball75", "from_user_id": 73524561, "from_user_id_str": "73524561", "from_user_name": "philip gebbia ", "geo": null, "id": 148839056896294900, "id_str": "148839056896294912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697650314/Image_19_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697650314/Image_19_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "Bored playing angry birds and watching tv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:11 +0000", "from_user": "kindadodgy", "from_user_id": 21236808, "from_user_id_str": "21236808", "from_user_name": "S. Dodge", "geo": null, "id": 148839056585932800, "id_str": "148839056585932800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1134875591/7570017_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1134875591/7570017_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Ok, it seems Angry Birds is now my tool for keeping hyperactive young children busy. I don't even like the game much, but it sure is useful!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:10 +0000", "from_user": "elliemoffat", "from_user_id": 65797927, "from_user_id_str": "65797927", "from_user_name": "Ellie Moffat", "geo": null, "id": 148839053519896580, "id_str": "148839053519896579", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696780359/elliemoffat_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696780359/elliemoffat_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "my brother has spent the past hour playing angry birds on my phone. hey luke, since when did you become five again?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:09 +0000", "from_user": "sadiebaby9", "from_user_id": 249951142, "from_user_id_str": "249951142", "from_user_name": "Sadie Paddock", "geo": null, "id": 148839050319630340, "id_str": "148839050319630337", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1658204539/2011-11-17_13.44.29_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658204539/2011-11-17_13.44.29_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "My worst fear is getting kidnapped, birds are right there with it.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:09 +0000", "from_user": "Lorettekkq", "from_user_id": 426264025, "from_user_id_str": "426264025", "from_user_name": "Lorette Hanner", "geo": null, "id": 148839049212346370, "id_str": "148839049212346369", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668804985/LLCM-5202_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668804985/LLCM-5202_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Ssasyasha Hey, play Pigeon Palooza (the next angry birds)- it's in Android Mktplce - should be in ITunes soon.", "to_user": "Ssasyasha", "to_user_id": 146057069, "to_user_id_str": "146057069", "to_user_name": "Risala sati bumi", "in_reply_to_status_id": 148795609116196860, "in_reply_to_status_id_str": "148795609116196864"}, +{"created_at": "Mon, 19 Dec 2011 18:56:06 +0000", "from_user": "OMGomezx", "from_user_id": 227259171, "from_user_id_str": "227259171", "from_user_name": " Gelly \\u262E", "geo": null, "id": 148839037245984770, "id_str": "148839037245984769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702072165/tumblr_lriqbh6dRh1qe8z50o1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702072165/tumblr_lriqbh6dRh1qe8z50o1_500_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "My idols gives water to imaginary Blue birds . http://t.co/cwEwOipV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:05 +0000", "from_user": "fransiskanadia", "from_user_id": 67556878, "from_user_id_str": "67556878", "from_user_name": "Fransiska Nadia", "geo": null, "id": 148839031852109820, "id_str": "148839031852109824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1644316288/IMG-20110923-00541_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644316288/IMG-20110923-00541_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Stars shining bright above you. Night breezes seem to whisper I love you birds singing in the sycamore tree. Dream a little dream of me.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:03 +0000", "from_user": "blackgaidenx", "from_user_id": 287245019, "from_user_id_str": "287245019", "from_user_name": "Bill Austin", "geo": null, "id": 148839024684040200, "id_str": "148839024684040195", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1323705062/hank_hill-avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1323705062/hank_hill-avatar_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IM+ Adds Own In-App Messenger \"Beep\", Angry Birds Theme - Consumer Electronics Net", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:02 +0000", "from_user": "KarenatashaB", "from_user_id": 288458452, "from_user_id_str": "288458452", "from_user_name": "Karen Backstein", "geo": null, "id": 148839022121328640, "id_str": "148839022121328640", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1365468289/Karen_head_shot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1365468289/Karen_head_shot_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @SterlingBooks: True Tales & A Cherry On Top: Olivia's Birds http://t.co/XixmEMDA cc @BirdgirlLiv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:58 +0000", "from_user": "lolczarina", "from_user_id": 335491031, "from_user_id_str": "335491031", "from_user_name": "czarina", "geo": null, "id": 148839003880300540, "id_str": "148839003880300544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1663791419/Snapshot_20111117_5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663791419/Snapshot_20111117_5_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I always wonder why birds stay in the same place when they can fly anywhere on this earth. Then I ask myself the same question. -Harun Yahya", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:56 +0000", "from_user": "____AMM", "from_user_id": 248019492, "from_user_id_str": "248019492", "from_user_name": "Annie Mariah \\u2665", "geo": null, "id": 148838994636062720, "id_str": "148838994636062721", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1674575664/380352_2086932464359_1576609961_31665238_920572206_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674575664/380352_2086932464359_1576609961_31665238_920572206_n_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @_ImSunnyAF: RT @____AMM: Temple Run , Angry Birds , and Twitter take up my whole life", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:55 +0000", "from_user": "tylerberger410", "from_user_id": 371849015, "from_user_id_str": "371849015", "from_user_name": "Bow-ty Ya'self", "geo": null, "id": 148838991356104700, "id_str": "148838991356104705", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701580078/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701580078/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "Drop shits... Like birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:55 +0000", "from_user": "_xJayNeice", "from_user_id": 291966159, "from_user_id_str": "291966159", "from_user_name": " You See it .", "geo": null, "id": 148838990097821700, "id_str": "148838990097821696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699375038/2011-12-17_22.06.53_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699375038/2011-12-17_22.06.53_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for iPhone</a>", "text": "Since when they start putting the little things from Madagascar in Angry Birds .!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:55 +0000", "from_user": "Sunnylove0001", "from_user_id": 375120775, "from_user_id_str": "375120775", "from_user_name": "shaymyname:D ", "geo": null, "id": 148838989498032130, "id_str": "148838989498032129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700043152/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700043152/image_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @PrettyAxx_Che: \"I Smokee Trees Wiff Thee Birds Andd Thee Bees\" Thatt Fuckin Nashay !!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:49 +0000", "from_user": "Johannpee", "from_user_id": 328029398, "from_user_id_str": "328029398", "from_user_name": "Johannpee", "geo": null, "id": 148838966928478200, "id_str": "148838966928478208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1431733568/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1431733568/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Do birds get tired of flying? Goodnight. :]", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:47 +0000", "from_user": "Sunnylove0001", "from_user_id": 375120775, "from_user_id_str": "375120775", "from_user_name": "shaymyname:D ", "geo": null, "id": 148838957927505920, "id_str": "148838957927505922", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700043152/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700043152/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "i wanna smoke trees w.the birds & bees :) #daily tweet.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:46 +0000", "from_user": "iBlowPiNkClouds", "from_user_id": 218324153, "from_user_id_str": "218324153", "from_user_name": "Stoner, Ima___xoxoxo", "geo": null, "id": 148838955058593800, "id_str": "148838955058593792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697733825/bnash5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697733825/bnash5_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "if fine you fine to me you could purple and i wouldnt care as long as you attractive to me lol that color shit is for the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:44 +0000", "from_user": "foxy_c0de", "from_user_id": 27837759, "from_user_id_str": "27837759", "from_user_name": "c0de", "geo": null, "id": 148838945881460740, "id_str": "148838945881460737", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1612789583/avi-housepets-4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612789583/avi-housepets-4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@natev2 @SwirlyTails @JoltiWolfe birds are smexy", "to_user": "natev2", "to_user_id": 49526547, "to_user_id_str": "49526547", "to_user_name": "Nate", "in_reply_to_status_id": 148838701324173300, "in_reply_to_status_id_str": "148838701324173313"}, +{"created_at": "Mon, 19 Dec 2011 18:55:43 +0000", "from_user": "ABBarlow1", "from_user_id": 311509463, "from_user_id_str": "311509463", "from_user_name": "AB Barlow", "geo": null, "id": 148838939422236670, "id_str": "148838939422236672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1382930574/Drink_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1382930574/Drink_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "A #Photo of a #Tree with a lot of #Birds in it-#Crows\\thttp://t.co/88lKcfMk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:42 +0000", "from_user": "JayJohnsonbeatz", "from_user_id": 408560528, "from_user_id_str": "408560528", "from_user_name": "Jay Johnson", "geo": null, "id": 148838936041623550, "id_str": "148838936041623553", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681261525/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681261525/image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Jay Johnson (Prod. by Jay Johnson)preview\" by JAY JOHNSON ON THE BEATZ AKA MR. WHY DO BIRDS - http://t.co/UAHbkvN3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:41 +0000", "from_user": "Indiraqsu", "from_user_id": 426263021, "from_user_id_str": "426263021", "from_user_name": "Indira Muldrow", "geo": null, "id": 148838931914432500, "id_str": "148838931914432513", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668799239/LLCM-1135_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668799239/LLCM-1135_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@40thingsby40 Ya must try Pigeon Palooza (the next angry birds)- it's avail in Android Mktplce - should be in App Store soon.", "to_user": "40thingsby40", "to_user_id": 232711425, "to_user_id_str": "232711425", "to_user_name": "40thingsby40", "in_reply_to_status_id": 148831639823331330, "in_reply_to_status_id_str": "148831639823331328"}, +{"created_at": "Mon, 19 Dec 2011 18:55:40 +0000", "from_user": "Mr_Titanic", "from_user_id": 170544884, "from_user_id_str": "170544884", "from_user_name": "Anthony ", "geo": null, "id": 148838927724331000, "id_str": "148838927724331010", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699175535/191dba87_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699175535/191dba87_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Hey @Reuben_Wu were you really the one who remixed Birds of Prey? I downld'ed the remix attributed to you! Reply and make me feel special!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:40 +0000", "from_user": "UBinH8n_WatsNew", "from_user_id": 248485958, "from_user_id_str": "248485958", "from_user_name": "Sica IfUDidntKnew", "geo": null, "id": 148838926700904450, "id_str": "148838926700904449", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1678508945/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678508945/image_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Wat tip is ol head on in this electric wheel chair doin the birds done high st wit a snuggie on #FuckDaCityUp lmao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:34 +0000", "from_user": "c_melloyello", "from_user_id": 438054858, "from_user_id_str": "438054858", "from_user_name": "Carmen Janel", "geo": null, "id": 148838904135565300, "id_str": "148838904135565313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701299785/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701299785/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@DABOIGENIUS: Im looking 4wd to joining #TeamMac this PC ish for the birds\\u201D yes...come over to the Mac side....we have cookies. & faster OS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:33 +0000", "from_user": "MikeSimpson32", "from_user_id": 39678013, "from_user_id_str": "39678013", "from_user_name": "Michael Simpson", "geo": null, "id": 148838899295334400, "id_str": "148838899295334400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668072999/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668072999/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "The fat red bird is my favorite on angry birds hahaha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:31 +0000", "from_user": "PrettyAxx_Che", "from_user_id": 360328508, "from_user_id_str": "360328508", "from_user_name": "Tache' Sample", "geo": null, "id": 148838889623257100, "id_str": "148838889623257088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1509073312/_tachee_redoo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509073312/_tachee_redoo_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "\"I Smokee Trees Wiff Thee Birds Andd Thee Bees\" Thatt Fuckin Nashay !!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:29 +0000", "from_user": "xek", "from_user_id": 987541, "from_user_id_str": "987541", "from_user_name": "Josh Myer", "geo": null, "id": 148838883835133950, "id_str": "148838883835133952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1166675025/AIbEiAIAAABDCKDtn4XYkNuRByILdmNhcmRfcGhvdG8qKDdiYzI5OTRiODdjZmIxM2Y3YjZkZDhlZjVmMjVhMmVhN2I1MGI2ZGMwATgU5QHjcuW7ds9r1zFHGXAQ8Q5N_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1166675025/AIbEiAIAAABDCKDtn4XYkNuRByILdmNhcmRfcGhvdG8qKDdiYzI5OTRiODdjZmIxM2Y3YjZkZDhlZjVmMjVhMmVhN2I1MGI2ZGMwATgU5QHjcuW7ds9r1zFHGXAQ8Q5N_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/InpFldZV And then the NYT compared Lisbeth Salander (The Girl With the XYZ) to the birds in Angry Birds. So that happened.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:29 +0000", "from_user": "screamnRoSS", "from_user_id": 384239487, "from_user_id_str": "384239487", "from_user_name": "Sha'ee ", "geo": null, "id": 148838883302453250, "id_str": "148838883302453248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690763960/68mw7guY_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690763960/68mw7guY_normal", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "I'm I don't have time for the high school drama that shit for the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:29 +0000", "from_user": "KenNarahs_Mom", "from_user_id": 427721751, "from_user_id_str": "427721751", "from_user_name": "Jasmine Townes", "geo": null, "id": 148838880253181950, "id_str": "148838880253181952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693593034/nD319GLM_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693593034/nD319GLM_normal", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @ThsWht_iCallHer: Birds of a feather flock together. Hoes on the same shit chase after the same dick.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:26 +0000", "from_user": "kneehigh86", "from_user_id": 437567268, "from_user_id_str": "437567268", "from_user_name": "hate it or love it", "geo": null, "id": 148838871629692930, "id_str": "148838871629692928", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694858934/IMAG0055_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694858934/IMAG0055_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Bahaaaaa birds!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:23 +0000", "from_user": "zavele", "from_user_id": 109556393, "from_user_id_str": "109556393", "from_user_name": "maruta", "geo": null, "id": 148838858149212160, "id_str": "148838858149212160", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@LaurisReiniks Mhm ANGRY BIRDS ir super\\u012Bgi.", "to_user": "LaurisReiniks", "to_user_id": 44196684, "to_user_id_str": "44196684", "to_user_name": "Lauris Reiniks ", "in_reply_to_status_id": 148137173625999360, "in_reply_to_status_id_str": "148137173625999360"}, +{"created_at": "Mon, 19 Dec 2011 18:55:22 +0000", "from_user": "sarah_belhaj", "from_user_id": 311550280, "from_user_id_str": "311550280", "from_user_name": "sarah belhaj", "geo": null, "id": 148838853166374900, "id_str": "148838853166374913", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702607146/391037_2892221513172_1489296376_33039863_1210237176_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702607146/391037_2892221513172_1489296376_33039863_1210237176_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "angry birds is the only thing getting me through babysitting ahh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:22 +0000", "from_user": "SoCalMiracle", "from_user_id": 129582641, "from_user_id_str": "129582641", "from_user_name": "IV.XXVII.MCMXCIV \\u2665", "geo": null, "id": 148838852843413500, "id_str": "148838852843413504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1639195987/6260044323_f65d96ce95_z__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639195987/6260044323_f65d96ce95_z__1__normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@urFutureIDOL *Shoots Birds* Whatever.. Gay People ALWAYS Wanna Walk Away From A Fiqht.! Lol @DWill_PBE Handle This Fool.! Lol", "to_user": "urFutureIDOL", "to_user_id": 265106957, "to_user_id_str": "265106957", "to_user_name": "Alex Gardner", "in_reply_to_status_id": 148837800299597820, "in_reply_to_status_id_str": "148837800299597824"}, +{"created_at": "Mon, 19 Dec 2011 18:55:20 +0000", "from_user": "Tildaies", "from_user_id": 426262628, "from_user_id_str": "426262628", "from_user_name": "Tilda Heltzel", "geo": null, "id": 148838843058106370, "id_str": "148838843058106369", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668798045/LLCM-2344_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668798045/LLCM-2344_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@bmango77 Ya must check out Pigeon Palooza (the next angry birds)- it's avail in Android Mktplce - will be in ITunes next week.", "to_user": "bmango77", "to_user_id": 97357706, "to_user_id_str": "97357706", "to_user_name": "bekah", "in_reply_to_status_id": 148819524764971000, "in_reply_to_status_id_str": "148819524764971009"}, +{"created_at": "Mon, 19 Dec 2011 18:55:19 +0000", "from_user": "UmThePresident", "from_user_id": 154228783, "from_user_id_str": "154228783", "from_user_name": "Mrs. UnFCKWITable", "geo": null, "id": 148838836141690880, "id_str": "148838836141690880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1639316337/Green_Patron_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639316337/Green_Patron_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Camera on iOS</a>", "text": "Which one of you bitch ass birds shitted on Becky?? http://t.co/UQUJIpte", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:18 +0000", "from_user": "TheFukknJuice", "from_user_id": 413617583, "from_user_id_str": "413617583", "from_user_name": "Arland Woodruff", "geo": null, "id": 148838834929549300, "id_str": "148838834929549312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690839816/zrvD00Nj_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690839816/zrvD00Nj_normal", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Me an my girl both go be in the jail birds for domestic violence #tragic", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:18 +0000", "from_user": "JayJohnsonbeatz", "from_user_id": 408560528, "from_user_id_str": "408560528", "from_user_name": "Jay Johnson", "geo": null, "id": 148838834401050620, "id_str": "148838834401050624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681261525/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681261525/image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\"Weight Room - Jay Johnson (Prod. by Jay Johnson)preview\" by JAY JOHNSON ON THE BEATZ AKA MR. WHY DO BIRDS - http://t.co/UAHbkvN3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:16 +0000", "from_user": "Feleciavcj", "from_user_id": 431756494, "from_user_id_str": "431756494", "from_user_name": "Felecia Jaubert", "geo": null, "id": 148838826591268860, "id_str": "148838826591268864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681149924/3i2ten552a_130716018_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681149924/3i2ten552a_130716018_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Sequence of Plumages and Moults of the Passerine Birds of New York (Annals of The New York Academy of Scienc... http://t.co/VSBX4fKL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:16 +0000", "from_user": "Paletorra", "from_user_id": 183097477, "from_user_id_str": "183097477", "from_user_name": "Pale Torres", "geo": null, "id": 148838826364776450, "id_str": "148838826364776448", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670873935/IMG02200_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670873935/IMG02200_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @BelleMillaQEOG @Paletorra Hey, go get Pigeon Palooza (the next angry birds)...// pens\\u00E9 que era de @pacopalooza. No me importa entonces.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:14 +0000", "from_user": "I_am_Kungu", "from_user_id": 302811580, "from_user_id_str": "302811580", "from_user_name": "Samuel Kung'u ", "geo": null, "id": 148838820324966400, "id_str": "148838820324966400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680842310/II_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680842310/II_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@MMasha3 u sed am slow, see its birds of w feather \\u2193\\u2193checkYOURmentionB4mine\\u2193\\u2193", "to_user": "MMasha3", "to_user_id": 261230914, "to_user_id_str": "261230914", "to_user_name": "Masha Macharia", "in_reply_to_status_id": 148835356165414900, "in_reply_to_status_id_str": "148835356165414914"}, +{"created_at": "Mon, 19 Dec 2011 18:55:11 +0000", "from_user": "KiranYoliswa", "from_user_id": 274559968, "from_user_id_str": "274559968", "from_user_name": "Kiran M-Ray", "geo": null, "id": 148838808035667970, "id_str": "148838808035667969", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1292757077/171822_10150101858949194_507759193_6008342_6755413_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1292757077/171822_10150101858949194_507759193_6008342_6755413_o_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "And the mosquitos out here are like small birds!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:11 +0000", "from_user": "kissya_franco", "from_user_id": 72072387, "from_user_id_str": "72072387", "from_user_name": "Feliz Natal HOHO :{D", "geo": null, "id": 148838805221277700, "id_str": "148838805221277696", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695446583/Foto_A1013_Instant_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695446583/Foto_A1013_Instant_1_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "P\\u00F4neis Malditos? Por que n\\u00E3o Angry Birds Malditos? #BigFollow: http://t.co/pAt0bSnK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:10 +0000", "from_user": "iheartKay_", "from_user_id": 303489183, "from_user_id_str": "303489183", "from_user_name": "Kayla Hamilton", "geo": null, "id": 148838801253482500, "id_str": "148838801253482497", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1665105887/Picture_of_me_6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665105887/Picture_of_me_6_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "These birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:06 +0000", "from_user": "nossiac295", "from_user_id": 220015632, "from_user_id_str": "220015632", "from_user_name": "Jon Bozeman", "geo": null, "id": 148838785608724480, "id_str": "148838785608724480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702332600/imagesCAOR7003_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702332600/imagesCAOR7003_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Beat the Dirty Birds on #MNF #GoFans #NO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:04 +0000", "from_user": "mckinderegg", "from_user_id": 141736347, "from_user_id_str": "141736347", "from_user_name": "Emily mckinley", "geo": null, "id": 148838778226749440, "id_str": "148838778226749440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700378001/lglp1491_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700378001/lglp1491_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "if a couple in love are called love birds then a couple who are fighting should be called angry birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:04 +0000", "from_user": "WOAH_ItsLexie", "from_user_id": 33429958, "from_user_id_str": "33429958", "from_user_name": "Lexie `im not a star", "geo": null, "id": 148838776859398140, "id_str": "148838776859398144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1656629413/x2_97e334a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656629413/x2_97e334a_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "why do birds...suddenly appear....every time....you are near?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:00 +0000", "from_user": "TriceC12", "from_user_id": 281703270, "from_user_id_str": "281703270", "from_user_name": "Patrice Smith", "geo": null, "id": 148838759968948220, "id_str": "148838759968948225", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697029327/Snapshot_20111216_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697029327/Snapshot_20111216_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "When my little sister saw my iPhone the first thing she says is \"Yay! Now I can play Angry Birds!\" Ummm...no. Lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:59 +0000", "from_user": "Roxanefvj", "from_user_id": 426262051, "from_user_id_str": "426262051", "from_user_name": "Roxane Chafetz", "geo": null, "id": 148838755355197440, "id_str": "148838755355197440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668798016/LLCM-4894_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668798016/LLCM-4894_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@megancampbell16 Ya have to try out Pigeon Palooza (the next angry birds)- it's in Android Mktplce - should be in App Store next week.", "to_user": "megancampbell16", "to_user_id": 355034509, "to_user_id_str": "355034509", "to_user_name": "Megan Salvatore-Way", "in_reply_to_status_id": 148824878001299460, "in_reply_to_status_id_str": "148824878001299456"}, +{"created_at": "Mon, 19 Dec 2011 18:54:58 +0000", "from_user": "TylerTheDebator", "from_user_id": 101017433, "from_user_id_str": "101017433", "from_user_name": "mr.Nice guy", "geo": +{"coordinates": [39.2274,-76.8293], "type": "Point"}, "id": 148838751840370700, "id_str": "148838751840370690", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1674560016/tumblr_lvpnlzXvsD1qgre1io1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674560016/tumblr_lvpnlzXvsD1qgre1io1_500_normal.jpg", "source": "<a href="http://www.twitter.com" rel="nofollow">Twitter for Windows Phone</a>", "text": "Birds of a feather flock together", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:58 +0000", "from_user": "UltiMasTeratism", "from_user_id": 247450798, "from_user_id_str": "247450798", "from_user_name": "Thad", "geo": null, "id": 148838751534186500, "id_str": "148838751534186497", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1640272741/IMG00129-20110409-1150_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640272741/IMG00129-20110409-1150_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Fuck you angry birds! #toohard", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:57 +0000", "from_user": "zavele", "from_user_id": 109556393, "from_user_id_str": "109556393", "from_user_name": "maruta", "geo": null, "id": 148838748963090430, "id_str": "148838748963090433", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @LaurisReiniks: Liel\\u0101kais ieguvums no mana jaun\\u0101 MacBook Pro ir..... ANGRY BIRDS! Tie putni mani ir konkr\\u0113ti sag\\u016Bst\\u012Bju\\u0161i sav\\u0101 var\\u0101 :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:57 +0000", "from_user": "3stee", "from_user_id": 19024357, "from_user_id_str": "19024357", "from_user_name": "Estee!", "geo": null, "id": 148838748161982460, "id_str": "148838748161982466", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/841406590/l_dbda9c8a61e7b9d06c390fe9c6dd377f_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/841406590/l_dbda9c8a61e7b9d06c390fe9c6dd377f_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "If I don't get 3 stars on this angry birds level soon I'm going to lose it on everyone.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:54 +0000", "from_user": "Kellehlmh", "from_user_id": 426260155, "from_user_id_str": "426260155", "from_user_name": "Kelle Rayas", "geo": null, "id": 148838734098477060, "id_str": "148838734098477056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668791732/LLCM-1074_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668791732/LLCM-1074_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ForeverGucci128 Go try out Pigeon Palooza (the next angry birds)- it's launched in Android Mktplce - should be in App Store soon.", "to_user": "ForeverGucci128", "to_user_id": 384006227, "to_user_id_str": "384006227", "to_user_name": "Get DOWN Or Lay DOWN", "in_reply_to_status_id": 148835103085301760, "in_reply_to_status_id_str": "148835103085301760"}, +{"created_at": "Mon, 19 Dec 2011 18:54:51 +0000", "from_user": "Katerinoula_S", "from_user_id": 367268542, "from_user_id_str": "367268542", "from_user_name": "Katerina Spyridakis", "geo": null, "id": 148838722325061630, "id_str": "148838722325061632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700744051/Photo_on_2011-12-17_at_19.34__3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700744051/Photo_on_2011-12-17_at_19.34__3_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Angry birds is getting me so angry \\uD83D\\uDE21 I can't beat level 3 lmao!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:50 +0000", "from_user": "sbseventsvzw", "from_user_id": 405038103, "from_user_id_str": "405038103", "from_user_name": "sbsevents", "geo": null, "id": 148838718831210500, "id_str": "148838718831210496", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1622596159/logo_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622596159/logo_1__normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Goed nieuws voor de 'Early Birds'! Omdat we jullie graag zien krijgen de eerste 40 aanwezigen gratis vodka (of... http://t.co/mXPlYgHM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:49 +0000", "from_user": "Jaimeengql", "from_user_id": 426262582, "from_user_id_str": "426262582", "from_user_name": "Jaimee Goldman", "geo": null, "id": 148838715488346100, "id_str": "148838715488346112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668798708/LLCM-3633_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668798708/LLCM-3633_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@theganggy Ya should get Pigeon Palooza (the next angry birds)- it is avail in Android Mktplce - will be in App Store soon.", "to_user": "theganggy", "to_user_id": 289291927, "to_user_id_str": "289291927", "to_user_name": "\\u2603SH\\u03A3\\u03A3R \\u270C", "in_reply_to_status_id": 148808515035738100, "in_reply_to_status_id_str": "148808515035738112"}, +{"created_at": "Mon, 19 Dec 2011 18:54:46 +0000", "from_user": "natev2", "from_user_id": 49526547, "from_user_id_str": "49526547", "from_user_name": "Nate", "geo": null, "id": 148838701324173300, "id_str": "148838701324173313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1238596428/Sonic_The_Hedgehog_by_Deadklown_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1238596428/Sonic_The_Hedgehog_by_Deadklown_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@SwirlyTails @JoltiWolfe started talking about birds!", "to_user": "SwirlyTails", "to_user_id": 418332850, "to_user_id_str": "418332850", "to_user_name": "bluwehusky", "in_reply_to_status_id": 148838590980440060, "in_reply_to_status_id_str": "148838590980440064"}, +{"created_at": "Mon, 19 Dec 2011 18:54:46 +0000", "from_user": "ShonaSchlickerU", "from_user_id": 428329314, "from_user_id_str": "428329314", "from_user_name": "Shona Schlicker", "geo": null, "id": 148838701202546700, "id_str": "148838701202546690", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1674178618/15093392221209438_double_call_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674178618/15093392221209438_double_call_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@mrs_onix Ya have to try Pigeon Palooza (the next angry birds)- it is avail in Android Mktplce - will be in ITunes soon.", "to_user": "mrs_onix", "to_user_id": 431022675, "to_user_id_str": "431022675", "to_user_name": "Mrs. Onix", "in_reply_to_status_id": 148832356285939700, "in_reply_to_status_id_str": "148832356285939712"}, +{"created_at": "Mon, 19 Dec 2011 18:54:44 +0000", "from_user": "Jbenavidez3", "from_user_id": 187339110, "from_user_id_str": "187339110", "from_user_name": "Julia Benavidez", "geo": null, "id": 148838692084138000, "id_str": "148838692084137984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680135596/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680135596/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Walmart lady started trippin out cus i started throwing the angry birds at maria. :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:42 +0000", "from_user": "UnseenGreatness", "from_user_id": 176845036, "from_user_id_str": "176845036", "from_user_name": "keenan williams", "geo": null, "id": 148838685075443700, "id_str": "148838685075443713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1387148630/avatar_normal.JPEG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1387148630/avatar_normal.JPEG", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Lil drewie in the angry birds hit lol http://t.co/Rm0uj3EB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:41 +0000", "from_user": "promowestlive", "from_user_id": 17162659, "from_user_id_str": "17162659", "from_user_name": "PromoWest Live", "geo": null, "id": 148838680084234240, "id_str": "148838680084234240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/974877670/promowest_live_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/974877670/promowest_live_normal.png", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Video: Don\\u2019t miss A Lot Like Birds w/ Decoder and Just Like Vinyl - January 25 at The Basement! http://t.co/kutO3nZh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:37 +0000", "from_user": "_StayyTrueee", "from_user_id": 337244596, "from_user_id_str": "337244596", "from_user_name": "India Adrianna ", "geo": null, "id": 148838663319584770, "id_str": "148838663319584769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1666580852/meeeee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666580852/meeeee_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "All that beatin around the bush shit aint foreal , Shits for the birds !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:33 +0000", "from_user": "Kyoosh", "from_user_id": 278935118, "from_user_id_str": "278935118", "from_user_name": "just a lonely girl", "geo": null, "id": 148838647435763700, "id_str": "148838647435763712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1675865718/________________normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675865718/________________normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Stars shining bright above you.\\nNight breezes seem to whisper I love you\\nBirds singing in the sycamore tree.\\nDream a little dream of me. ~", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:30 +0000", "from_user": "joysunlove", "from_user_id": 147645702, "from_user_id_str": "147645702", "from_user_name": "nicole", "geo": null, "id": 148838634647326720, "id_str": "148838634647326720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1093805730/Snapshot_20100624_52_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1093805730/Snapshot_20100624_52_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Letting my cousins beat the levels on angry birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:27 +0000", "from_user": "ohnoitsafro", "from_user_id": 126572536, "from_user_id_str": "126572536", "from_user_name": "kekellie kwami", "geo": null, "id": 148838622689370100, "id_str": "148838622689370112", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683301553/Snapshot_20111209_5_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683301553/Snapshot_20111209_5_normal.JPG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@BossDre_ ga niet suicide, kill gewoon die birds je mag niet dood :(", "to_user": "BossDre_", "to_user_id": 124734009, "to_user_id_str": "124734009", "to_user_name": "Andr\\u00E9 \\u2714"}, +{"created_at": "Mon, 19 Dec 2011 18:54:22 +0000", "from_user": "tstrong4", "from_user_id": 127372030, "from_user_id_str": "127372030", "from_user_name": "Tweezy\\u2122", "geo": null, "id": 148838600727998460, "id_str": "148838600727998464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1564874063/____ntwan____normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1564874063/____ntwan____normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Thats cause mike was moving them birds RT @iTweet4Pesos: Smooth Criminal just came on Jeezy Pandora", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:22 +0000", "from_user": "Dr_Jaymz", "from_user_id": 86642937, "from_user_id_str": "86642937", "from_user_name": "Alberto J Gonz\\u00E1lez B", "geo": null, "id": 148838600702828540, "id_str": "148838600702828544", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1121727116/James_Hetfield_by_Keeji_d_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1121727116/James_Hetfield_by_Keeji_d_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@serson33 como lo actualizo? casi todos los dias entro n l market y no m sale actualizacion para ninguno d los angry birds...", "to_user": "serson33", "to_user_id": 103638855, "to_user_id_str": "103638855", "to_user_name": "andres gonzalez ", "in_reply_to_status_id": 148830230998548480, "in_reply_to_status_id_str": "148830230998548480"}, +{"created_at": "Mon, 19 Dec 2011 18:54:20 +0000", "from_user": "esha_mae26", "from_user_id": 290916294, "from_user_id_str": "290916294", "from_user_name": " Iesha\\u2122", "geo": null, "id": 148838594319089660, "id_str": "148838594319089664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692221930/20111213_45_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692221930/20111213_45_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Angry Birds Flow", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:20 +0000", "from_user": "NotShia", "from_user_id": 78412459, "from_user_id_str": "78412459", "from_user_name": "Dustin LeBoeuf", "geo": null, "id": 148838593312469000, "id_str": "148838593312468992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1419645676/stone_henge_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1419645676/stone_henge_twitter_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\"Birds on the roof used to shit in our water. It didn't kill us\". -Paw paw, re: life before running water.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:18 +0000", "from_user": "arjangommers", "from_user_id": 31079510, "from_user_id_str": "31079510", "from_user_name": "Arjan Gommers", "geo": +{"coordinates": [51.9924,4.3788], "type": "Point"}, "id": 148838585074851840, "id_str": "148838585074851841", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/719971157/Arjan_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/719971157/Arjan_normal.jpg", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "Altijd leuk alv..... (@ Blue Birds) http://t.co/Sbiw4J6x", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:18 +0000", "from_user": "Always_Vera", "from_user_id": 263464034, "from_user_id_str": "263464034", "from_user_name": "Vera ", "geo": null, "id": 148838583862693900, "id_str": "148838583862693888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1654051922/330282135_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654051922/330282135_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Aubrey is walking around saying she has angry birds in her stomach o_O", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:16 +0000", "from_user": "HAM_MAH23", "from_user_id": 171340867, "from_user_id_str": "171340867", "from_user_name": "M.Harris~ABB", "geo": null, "id": 148838577642545150, "id_str": "148838577642545152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695888139/2011-12-15_19.30.53-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695888139/2011-12-15_19.30.53-1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "http://t.co/t8qf8J7y lil pagitti wit da angry birds hat #fresh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:14 +0000", "from_user": "babystrollBW", "from_user_id": 399226634, "from_user_id_str": "399226634", "from_user_name": "babystrollBW", "geo": null, "id": 148838569287491600, "id_str": "148838569287491584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1610249380/1319753466_bj-mini-orange-big_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610249380/1319753466_bj-mini-orange-big_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "50% off: Birds of Paradise: A Novel", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:14 +0000", "from_user": "mllaurinha", "from_user_id": 86093415, "from_user_id_str": "86093415", "from_user_name": "maria laura cabral", "geo": null, "id": 148838568717062140, "id_str": "148838568717062144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687923549/new_031_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687923549/new_031_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "tem fase nova no angry birds, uhuuuuuuuul!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:13 +0000", "from_user": "RyanW1701", "from_user_id": 350948541, "from_user_id_str": "350948541", "from_user_name": "Ryan Wilson", "geo": null, "id": 148838562098454530, "id_str": "148838562098454528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1566437737/hehe_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566437737/hehe_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Finally listened to Noel Gallagher's High Flying Birds. Album is quality, Noel is definitely the better songwriter of the Gallagher's", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:12 +0000", "from_user": "iIgoruha", "from_user_id": 214605811, "from_user_id_str": "214605811", "from_user_name": "Igoruha", "geo": null, "id": 148838560865325060, "id_str": "148838560865325056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1549770633/Igoruha_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1549770633/Igoruha_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube video http://t.co/JXSjXbsj Angry Birds Wreck The Halls animation", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:10 +0000", "from_user": "TwerkOnMyFace", "from_user_id": 138632419, "from_user_id_str": "138632419", "from_user_name": "Mr.Flirtaholic", "geo": null, "id": 148838552132792320, "id_str": "148838552132792323", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685465638/331235440_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685465638/331235440_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "They ainn shit -_- RT @fckurTHOUGHTS: I hate birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:01 +0000", "from_user": "SMALL_Packagee", "from_user_id": 276781998, "from_user_id_str": "276781998", "from_user_name": "G6'Ridin Rudy ", "geo": null, "id": 148838511355772930, "id_str": "148838511355772929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687023968/IMAG0901_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687023968/IMAG0901_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Angry Birds shirts played out well it was never played in.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:59 +0000", "from_user": "sugareegirl", "from_user_id": 38275547, "from_user_id_str": "38275547", "from_user_name": "Shauna Smith", "geo": null, "id": 148838505605378050, "id_str": "148838505605378049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/260106812/s1204653791_307715_3544_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/260106812/s1204653791_307715_3544_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Damn you Angry Birds!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:56 +0000", "from_user": "DestroeW925", "from_user_id": 343795277, "from_user_id_str": "343795277", "from_user_name": "Ricky Enciso", "geo": null, "id": 148838492338790400, "id_str": "148838492338790400", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1585802154/_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585802154/_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Birds are pretty bitchmade", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:54 +0000", "from_user": "Agnusnxw", "from_user_id": 426260297, "from_user_id_str": "426260297", "from_user_name": "Agnus Zumbach", "geo": null, "id": 148838482247294980, "id_str": "148838482247294977", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668792048/LLCM-3852_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668792048/LLCM-3852_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dessa_zika2 Have to go get Pigeon Palooza (the next angry birds)- it's for sale in Android Mktplce - should be in ITunes in a few days.", "to_user": "dessa_zika2", "to_user_id": 402189775, "to_user_id_str": "402189775", "to_user_name": "Dessa", "in_reply_to_status_id": 148831678159274000, "in_reply_to_status_id_str": "148831678159273984"}, +{"created_at": "Mon, 19 Dec 2011 18:53:50 +0000", "from_user": "clay_deja", "from_user_id": 330012142, "from_user_id_str": "330012142", "from_user_name": "T A T", "geo": null, "id": 148838468036997120, "id_str": "148838468036997121", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1657201358/dejaclay_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657201358/dejaclay_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NP>>> The Weeknd- Birds Part 2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:47 +0000", "from_user": "WonderBread_45", "from_user_id": 330253889, "from_user_id_str": "330253889", "from_user_name": "Josh Lam", "geo": null, "id": 148838453650534400, "id_str": "148838453650534400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1674204150/1323041172561_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674204150/1323041172561_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @chase_____1: Subtweetin is for the birds! smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:40 +0000", "from_user": "Dashia2Sexy", "from_user_id": 356705517, "from_user_id_str": "356705517", "from_user_name": "Dashia Farrell", "geo": null, "id": 148838426303672320, "id_str": "148838426303672322", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693797099/Evq621ol_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693797099/Evq621ol_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "My swag to official thats why these birds jockin it. . . & coppin errthing i got. :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:39 +0000", "from_user": "KeithJonesJr", "from_user_id": 15896497, "from_user_id_str": "15896497", "from_user_name": "The Mayor", "geo": null, "id": 148838422478458880, "id_str": "148838422478458880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668036989/Snapshot_20110730_9_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668036989/Snapshot_20110730_9_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@campi3ell_soup Yea I was playing Angry Birds on Chrome one day and it kept acting up.", "to_user": "campi3ell_soup", "to_user_id": 32473821, "to_user_id_str": "32473821", "to_user_name": "Rich", "in_reply_to_status_id": 148836552863260670, "in_reply_to_status_id_str": "148836552863260672"}, +{"created_at": "Mon, 19 Dec 2011 18:53:35 +0000", "from_user": "Agnusidr", "from_user_id": 426264992, "from_user_id_str": "426264992", "from_user_name": "Marlin Osburne", "geo": null, "id": 148838403574730750, "id_str": "148838403574730752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668803895/LLCM-1660_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668803895/LLCM-1660_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Blessed_Booty Ya must try out Pigeon Palooza (the next angry birds)- it's in Android Mktplce - should be in ITunes in a few days.", "to_user": "Blessed_Booty", "to_user_id": 24283506, "to_user_id_str": "24283506", "to_user_name": "Amy ", "in_reply_to_status_id": 148826292224147460, "in_reply_to_status_id_str": "148826292224147457"}, +{"created_at": "Mon, 19 Dec 2011 18:53:35 +0000", "from_user": "kierstenhyvtosh", "from_user_id": 306014563, "from_user_id_str": "306014563", "from_user_name": "Kiersten Tosh", "geo": null, "id": 148838403104976900, "id_str": "148838403104976897", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1685426354/4a03b034abe39_m_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685426354/4a03b034abe39_m_1__normal.jpg", "source": "<a href="http://cybermondayorblackfriday.com" rel="nofollow">cybermondayorblackfridaydotcom</a>", "text": "Discounts Wall Accents-Flying Birds & Tree Removable Vinyl Home Wall Art Stick http://t.co/tsmaQkZ4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:34 +0000", "from_user": "Christinemiddl1", "from_user_id": 319270893, "from_user_id_str": "319270893", "from_user_name": "Christinemiddlechild", "geo": null, "id": 148838401632780300, "id_str": "148838401632780288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1400727820/me_at_moms_resized_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1400727820/me_at_moms_resized_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "Birds in Flight : RedGage - http://t.co/yD4spWRv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:34 +0000", "from_user": "slantyyz", "from_user_id": 16932050, "from_user_id_str": "16932050", "from_user_name": "Steven Ng", "geo": null, "id": 148838400068288500, "id_str": "148838400068288513", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/656923704/avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/656923704/avatar_normal.png", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "Video: The Interactive Angry Birds Christmas Lights Display | TechCrunch http://t.co/6xeW2pMC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:30 +0000", "from_user": "CMFC99", "from_user_id": 285309729, "from_user_id_str": "285309729", "from_user_name": "Writing Shotgun", "geo": null, "id": 148838383655981060, "id_str": "148838383655981057", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682797076/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682797076/profile_normal.png", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "RT @NottyChrissy: My hatred of birds definitely extends to flamingos. The physics of those things creeps me out.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:28 +0000", "from_user": "KING_MAMA_COLE", "from_user_id": 39641972, "from_user_id_str": "39641972", "from_user_name": "Britain Berry", "geo": null, "id": 148838376710221820, "id_str": "148838376710221825", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1565742098/profile_image_1317332435248_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1565742098/profile_image_1317332435248_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "Its squirrels thats shittin on my car not birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:22 +0000", "from_user": "cyncere23", "from_user_id": 35398114, "from_user_id_str": "35398114", "from_user_name": "James Hicks", "geo": null, "id": 148838351242395650, "id_str": "148838351242395648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1588152928/Cyncere_-_7_Days_-_II_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1588152928/Cyncere_-_7_Days_-_II_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@oompa03 good. Thx. My appt is tomorrow morning. Hopefully I can get some meds. This itching is for the birds!!!", "to_user": "oompa03", "to_user_id": 19634101, "to_user_id_str": "19634101", "to_user_name": "oompa", "in_reply_to_status_id": 148838061994811400, "in_reply_to_status_id_str": "148838061994811392"}, +{"created_at": "Mon, 19 Dec 2011 18:53:22 +0000", "from_user": "turnstilemusic", "from_user_id": 19721512, "from_user_id_str": "19721512", "from_user_name": "turnstilemusic", "geo": null, "id": 148838350466465800, "id_str": "148838350466465793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1392528579/6e97e6cb-cd2e-4ab0-b594-ba75cfdd8fb2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1392528579/6e97e6cb-cd2e-4ab0-b594-ba75cfdd8fb2_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Quick nap. Woke up in Reading. @gruffingtonpost is writing. @turnstiletame is playing angry birds.12 mins late #atheistxmasep", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:22 +0000", "from_user": "JawsonsTweets", "from_user_id": 431162490, "from_user_id_str": "431162490", "from_user_name": "Alex Dawson", "geo": null, "id": 148838347807277060, "id_str": "148838347807277057", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685407819/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685407819/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I rate guys on how many relationships they've held down, not on how birds they've banged.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:21 +0000", "from_user": "chase_____1", "from_user_id": 352081741, "from_user_id_str": "352081741", "from_user_name": "chase hensley", "geo": null, "id": 148838344506347520, "id_str": "148838344506347521", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1656701872/7U73dzip_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656701872/7U73dzip_normal", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Subtweetin is for the birds! smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:18 +0000", "from_user": "taymanjojo1", "from_user_id": 234263473, "from_user_id_str": "234263473", "from_user_name": "Tavan Harvey", "geo": null, "id": 148838332359643140, "id_str": "148838332359643136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699430831/picplz_2011-11-30_12.36.10_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699430831/picplz_2011-11-30_12.36.10_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "If u play wit them BIRDS long enough, u will find out wat it feel like to shit on niggas", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:17 +0000", "from_user": "Redcore", "from_user_id": 294005264, "from_user_id_str": "294005264", "from_user_name": "Jordan Severson", "geo": null, "id": 148838329578819600, "id_str": "148838329578819584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697020777/325190_309585785738451_100000610962222_1047367_114148879_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697020777/325190_309585785738451_100000610962222_1047367_114148879_o_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Angry birds. #hardinthepaint", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:17 +0000", "from_user": "raskoltf", "from_user_id": 47685753, "from_user_id_str": "47685753", "from_user_name": "Ra\\u00FAl", "geo": null, "id": 148838327683006460, "id_str": "148838327683006466", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1626977679/vbsECXV4_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626977679/vbsECXV4_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @valladolor: \"Angry Birds Las Delicias\" en tu App Store, consiste en lanzar trozos de chatarra y cobre a Monchines, nunca les matas, se lo quedan todo.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:16 +0000", "from_user": "MochaMoJia", "from_user_id": 266404580, "from_user_id_str": "266404580", "from_user_name": "Jasmine", "geo": null, "id": 148838326076583940, "id_str": "148838326076583936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1628674629/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628674629/image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Flock Of Birds Mistake Walmart Parking Lot For Pond | Care2 Causes http://t.co/EL9cmmnJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:53:17 +0000", "from_user": "Redcore", "from_user_id": 294005264, "from_user_id_str": "294005264", "from_user_name": "Jordan Severson", "geo": null, "id": 148838329578819600, "id_str": "148838329578819584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697020777/325190_309585785738451_100000610962222_1047367_114148879_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697020777/325190_309585785738451_100000610962222_1047367_114148879_o_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Angry birds. #hardinthepaint", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:17 +0000", "from_user": "raskoltf", "from_user_id": 47685753, "from_user_id_str": "47685753", "from_user_name": "Ra\\u00FAl", "geo": null, "id": 148838327683006460, "id_str": "148838327683006466", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1626977679/vbsECXV4_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626977679/vbsECXV4_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @valladolor: \"Angry Birds Las Delicias\" en tu App Store, consiste en lanzar trozos de chatarra y cobre a Monchines, nunca les matas, se lo quedan todo.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:16 +0000", "from_user": "MochaMoJia", "from_user_id": 266404580, "from_user_id_str": "266404580", "from_user_name": "Jasmine", "geo": null, "id": 148838326076583940, "id_str": "148838326076583936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1628674629/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628674629/image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Flock Of Birds Mistake Walmart Parking Lot For Pond | Care2 Causes http://t.co/EL9cmmnJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:15 +0000", "from_user": "llysabug", "from_user_id": 346839345, "from_user_id_str": "346839345", "from_user_name": "China Cat Sunflower.", "geo": null, "id": 148838321567698940, "id_str": "148838321567698944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1675832057/379567_10150593549214062_520074061_12037038_1619780927_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675832057/379567_10150593549214062_520074061_12037038_1619780927_n_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster</a>", "text": "Angry birds potty time.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:13 +0000", "from_user": "DiicaDiica", "from_user_id": 17259980, "from_user_id_str": "17259980", "from_user_name": "Diica", "geo": null, "id": 148838312663203840, "id_str": "148838312663203840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694688039/_am2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694688039/_am2_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Asshole birds.. stop auuuuuuuuing", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:13 +0000", "from_user": "MyTeam_Michigan", "from_user_id": 254275655, "from_user_id_str": "254275655", "from_user_name": "Vincent", "geo": null, "id": 148838310171779070, "id_str": "148838310171779073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1509131186/polo_polo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509131186/polo_polo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Ms_LaughAlott Birds Are Part Of Nature You Suppose To Love Them lol", "to_user": "Ms_LaughAlott", "to_user_id": 316128434, "to_user_id_str": "316128434", "to_user_name": "Gisselle Rosario"}, +{"created_at": "Mon, 19 Dec 2011 18:53:12 +0000", "from_user": "GPIINC", "from_user_id": 65445208, "from_user_id_str": "65445208", "from_user_name": "C'est Moi PINC\\u00A9", "geo": null, "id": 148838306745024500, "id_str": "148838306745024512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690364717/GPIINC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690364717/GPIINC_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "My new read: maya angelou I know why the caged birds sings", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:11 +0000", "from_user": "_JoJoBANKS", "from_user_id": 177664538, "from_user_id_str": "177664538", "from_user_name": "Lucy Smith", "geo": null, "id": 148838302999511040, "id_str": "148838302999511042", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698509851/IMG103_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698509851/IMG103_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @BIGBanks_: We just two love birds that's why we always tweetin lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:11 +0000", "from_user": "CrazyMaMonster", "from_user_id": 311763926, "from_user_id_str": "311763926", "from_user_name": "UniqueA.Herring", "geo": null, "id": 148838301711859700, "id_str": "148838301711859712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700871287/legs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700871287/legs_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I'm Scared Of Them Big Ass Birds That Be Flying To Dame Close To The Ground.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:10 +0000", "from_user": "bubbly_chicken", "from_user_id": 42095508, "from_user_id_str": "42095508", "from_user_name": "Hollie Archibald", "geo": null, "id": 148838298771660800, "id_str": "148838298771660800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1316234136/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1316234136/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Why do birds suddenly appear?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:09 +0000", "from_user": "sherylshaz", "from_user_id": 306631811, "from_user_id_str": "306631811", "from_user_name": "sh\\u0454\\u044Fy\\u2113\\u2570\\u2606\\u256E", "geo": null, "id": 148838296162795520, "id_str": "148838296162795521", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700651994/sherylshazme_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700651994/sherylshazme_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RTRTRT @TheBieberSoul: Omfg, I used to think Angry Birds was boring, now I'm sat here not being able to stop playing it.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:09 +0000", "from_user": "SimplySunShinne", "from_user_id": 99241833, "from_user_id_str": "99241833", "from_user_name": "HeeaatheerRoyal(;", "geo": null, "id": 148838294929670140, "id_str": "148838294929670144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699120525/ColorTouch_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699120525/ColorTouch_normal.jpeg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "#Goodmoring L\\u00EFddo Birds :) I mean TWITTER ! <3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:07 +0000", "from_user": "MrSoloRager", "from_user_id": 339151468, "from_user_id_str": "339151468", "from_user_name": "MSR.\\u2122", "geo": null, "id": 148838287094710270, "id_str": "148838287094710272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699709013/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699709013/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I feel like a little boy in my Angry Birds shirt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:07 +0000", "from_user": "fabs_alverca", "from_user_id": 63546671, "from_user_id_str": "63546671", "from_user_name": "Fabricio Alverca", "geo": null, "id": 148838285899333630, "id_str": "148838285899333632", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1559419934/eu_2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1559419934/eu_2_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "N\\u00C3O ACREDITO QUE EU CONSEGUI PASSAR DA FASE QUE EU TO H\\u00C1 3 DIAS PRA PASSAR NO ANGRY BIRDS AHHHHHHHHHHHHHHHHHHHHHHHH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:58 +0000", "from_user": "SuperTr3", "from_user_id": 78049917, "from_user_id_str": "78049917", "from_user_name": "Tevincredible", "geo": null, "id": 148838249547300860, "id_str": "148838249547300864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1683996497/best_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683996497/best_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Them angry birds really be looking angry", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:58 +0000", "from_user": "RickThe_Ruler", "from_user_id": 345823556, "from_user_id_str": "345823556", "from_user_name": "\\uE031Classico\\uE031", "geo": null, "id": 148838249387917300, "id_str": "148838249387917313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1648050335/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648050335/image_normal.jpg", "source": "<a href="http://tweetlogix.com" rel="nofollow">Tweetlogix</a>", "text": "\"but he told me he's falling for me\" #birds RT @Catalinaaaa_: Your personality is ugly. (cont) http://t.co/xkblA2AI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:58 +0000", "from_user": "ScreamInSpanish", "from_user_id": 159259735, "from_user_id_str": "159259735", "from_user_name": "III XXVI", "geo": null, "id": 148838247005560830, "id_str": "148838247005560833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695834114/Photo_on_2011-11-24_at_19.32__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695834114/Photo_on_2011-11-24_at_19.32__2_normal.jpg", "source": "<a href="http://www.twimbow.com" rel="nofollow">Twimbow</a>", "text": "in class eatin chips, playin Angry Birds and watching Home Alone", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:55 +0000", "from_user": "MYLOVE_jbfever", "from_user_id": 267549550, "from_user_id_str": "267549550", "from_user_name": "Jennifer:)", "geo": null, "id": 148838234351349760, "id_str": "148838234351349760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1470551821/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1470551821/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "If happy couples are called love birds,then couples that argue should be called angry birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:46 +0000", "from_user": "PLR_Franchesca", "from_user_id": 190102428, "from_user_id_str": "190102428", "from_user_name": "Pilare Simon \\uE32D", "geo": null, "id": 148838197961560060, "id_str": "148838197961560064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689647584/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689647584/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Fooling yourself. Grow up and take like real bitch. Cause that nonsense is for the birds #GirlSTOP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:45 +0000", "from_user": "xLOiiSBiiEBER", "from_user_id": 254555340, "from_user_id_str": "254555340", "from_user_name": "a BELIEBER in BIEBER", "geo": null, "id": 148838193637240830, "id_str": "148838193637240832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689102951/loisbieber__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689102951/loisbieber__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Loemiekje its like angry birds, but the birds ar cows, and the green pigs are steers LOL", "to_user": "Loemiekje", "to_user_id": 383312200, "to_user_id_str": "383312200", "to_user_name": "Gao Ling"}, +{"created_at": "Mon, 19 Dec 2011 18:52:45 +0000", "from_user": "FmRu_net", "from_user_id": 138503868, "from_user_id_str": "138503868", "from_user_name": "FmRu.net", "geo": null, "id": 148838193352032260, "id_str": "148838193352032256", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1307617413/fmru.net.square_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1307617413/fmru.net.square_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Angry Birds - \\u0438\\u043B\\u043B\\u044E\\u0441\\u0442\\u0440\\u0430\\u0446\\u0438\\u044F \\u043F\\u043E\\u0441\\u043B\\u043E\\u0432\\u0438\\u0446\\u044B \"\\u0413\\u0443\\u0441\\u044C \\u0441\\u0432\\u0438\\u043D\\u044C\\u0435 \\u043D\\u0435 \\u0442\\u043E\\u0432\\u0430\\u0440\\u0438\\u0449\". http://t.co/dg8igN7i", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:43 +0000", "from_user": "Theodosia_Rose", "from_user_id": 33112290, "from_user_id_str": "33112290", "from_user_name": "turqoise porter", "geo": null, "id": 148838187614224400, "id_str": "148838187614224384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695482421/r6q7hr4r_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695482421/r6q7hr4r_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Kissy_MzMickey BAHAHA!! Thought your hair was a birds nest..", "to_user": "Kissy_MzMickey", "to_user_id": 58329734, "to_user_id_str": "58329734", "to_user_name": "JaCara' Mickey", "in_reply_to_status_id": 148791501109985280, "in_reply_to_status_id_str": "148791501109985280"}, +{"created_at": "Mon, 19 Dec 2011 18:52:43 +0000", "from_user": "DeeMagicGurl", "from_user_id": 278755526, "from_user_id_str": "278755526", "from_user_name": "DeeMagicGurl", "geo": null, "id": 148838186372702200, "id_str": "148838186372702208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1325270095/IMG_3087_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1325270095/IMG_3087_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Angry Birds (noun) - How you kill two stones with one bird.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:43 +0000", "from_user": "gudzenov", "from_user_id": 389406042, "from_user_id_str": "389406042", "from_user_name": "Victor", "geo": null, "id": 148838186175569920, "id_str": "148838186175569921", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1584676895/Koki_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584676895/Koki_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\u0428\\u0443\\u0442\\u043A\\u0430 #7435: Angry Birds - \\u0438\\u043B\\u043B\\u044E\\u0441\\u0442\\u0440\\u0430\\u0446\\u0438\\u044F \\u043F\\u043E\\u0441\\u043B\\u043E\\u0432\\u0438\\u0446\\u044B \"\\u0413\\u0443\\u0441\\u044C \\u0441\\u0432\\u0438\\u043D\\u044C\\u0435 \\u043D\\u0435 \\u0442\\u043E\\u0432\\u0430\\u0440\\u0438\\u0449\". http://t.co/oSkyTh5f", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:43 +0000", "from_user": "link_kazan", "from_user_id": 339641184, "from_user_id_str": "339641184", "from_user_name": "\\u041B\\u0438\\u043D\\u043A", "geo": null, "id": 148838183990329340, "id_str": "148838183990329344", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1465379944/_MG_4617_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1465379944/_MG_4617_2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\u0428\\u0443\\u0442\\u043A\\u0430 #7435: Angry Birds - \\u0438\\u043B\\u043B\\u044E\\u0441\\u0442\\u0440\\u0430\\u0446\\u0438\\u044F \\u043F\\u043E\\u0441\\u043B\\u043E\\u0432\\u0438\\u0446\\u044B \"\\u0413\\u0443\\u0441\\u044C \\u0441\\u0432\\u0438\\u043D\\u044C\\u0435 \\u043D\\u0435 \\u0442\\u043E\\u0432\\u0430\\u0440\\u0438\\u0449\". http://t.co/SWSBgg7w http://t.co/ChkVEZuO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:42 +0000", "from_user": "petrovskaja_v", "from_user_id": 342596919, "from_user_id_str": "342596919", "from_user_name": "\\u0412\\u0438\\u0442\\u0430 \\u041F\\u0435\\u0442\\u0440\\u043E\\u0432\\u0441\\u043A\\u0430\\u044F", "geo": null, "id": 148838183457652740, "id_str": "148838183457652737", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1461466533/1111111111111111111111_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1461466533/1111111111111111111111_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Angry Birds - \\u0438\\u043B\\u043B\\u044E\\u0441\\u0442\\u0440\\u0430\\u0446\\u0438\\u044F \\u043F\\u043E\\u0441\\u043B\\u043E\\u0432\\u0438\\u0446\\u044B \"\\u0413\\u0443\\u0441\\u044C \\u0441\\u0432\\u0438\\u043D\\u044C\\u0435 \\u043D\\u0435 \\u0442\\u043E\\u0432\\u0430\\u0440\\u0438\\u0449\". http://t.co/KmQhXRqp #sledui", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:42 +0000", "from_user": "Gennadij_N", "from_user_id": 340887658, "from_user_id_str": "340887658", "from_user_name": "\\u0413\\u0435\\u043D\\u043D\\u0430\\u0434\\u0438\\u0439 \\u041D.", "geo": null, "id": 148838182396497920, "id_str": "148838182396497920", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1458101965/gennav_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1458101965/gennav_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Angry Birds - \\u0438\\u043B\\u043B\\u044E\\u0441\\u0442\\u0440\\u0430\\u0446\\u0438\\u044F \\u043F\\u043E\\u0441\\u043B\\u043E\\u0432\\u0438\\u0446\\u044B \"\\u0413\\u0443\\u0441\\u044C \\u0441\\u0432\\u0438\\u043D\\u044C\\u0435 \\u043D\\u0435 \\u0442\\u043E\\u0432\\u0430\\u0440\\u0438\\u0449\". http://t.co/yGOFe9GG #sledui", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:41 +0000", "from_user": "bartomartin", "from_user_id": 139010755, "from_user_id_str": "139010755", "from_user_name": "Martin P.", "geo": null, "id": 148838175740141570, "id_str": "148838175740141568", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1675879917/12a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675879917/12a_normal.jpg", "source": "<a href="http://hootsuite.com/hootbar" rel="nofollow">HootBar</a>", "text": "Noel Gallagher's High Flying Birds - If I Had a Gun #nowplaying #inloop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:40 +0000", "from_user": "The_DougieFresh", "from_user_id": 50117047, "from_user_id_str": "50117047", "from_user_name": "\\uE42A Doug Harper\\uE42A ", "geo": null, "id": 148838174007894000, "id_str": "148838174007894016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695415450/12489e2e276f11e1abb01231381b65e3_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695415450/12489e2e276f11e1abb01231381b65e3_7_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "2 BIRDS N THE KITCHEN ONE BRICK ONE DESERT EAGLE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:39 +0000", "from_user": "EatMy_PERRY", "from_user_id": 239692777, "from_user_id_str": "239692777", "from_user_name": "alyaT !", "geo": null, "id": 148838168710483970, "id_str": "148838168710483968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701788323/121911033736_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701788323/121911033736_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "so high up i got birds in the condo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:39 +0000", "from_user": "WickedMisery", "from_user_id": 350482256, "from_user_id_str": "350482256", "from_user_name": "Jack Martinelli", "geo": null, "id": 148838168035201020, "id_str": "148838168035201024", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694364826/Photo_on_2011-07kuyg-08_at_19.39_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694364826/Photo_on_2011-07kuyg-08_at_19.39_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I love birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:36 +0000", "from_user": "Dr_Shonzy", "from_user_id": 20243253, "from_user_id_str": "20243253", "from_user_name": "Shona Patel", "geo": null, "id": 148838155217403900, "id_str": "148838155217403904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685899776/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685899776/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I'm not sure bout Santa going down my chimney in Croydon.I'd be concerned about dead birds, rats and heroin needles being down there...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:34 +0000", "from_user": "sherylshaz", "from_user_id": 306631811, "from_user_id_str": "306631811", "from_user_name": "sh\\u0454\\u044Fy\\u2113\\u2570\\u2606\\u256E", "geo": null, "id": 148838149030821900, "id_str": "148838149030821888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700651994/sherylshazme_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700651994/sherylshazme_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @TheBieberSoul: Omfg, I used to think Angry Birds was boring, now I'm sat here not being able to stop playing it.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:29 +0000", "from_user": "Diegorioja94", "from_user_id": 280174230, "from_user_id_str": "280174230", "from_user_name": "Diego Rioja", "geo": null, "id": 148838126691958800, "id_str": "148838126691958784", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1649217956/EXIO1TXj_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649217956/EXIO1TXj_normal", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Angry Birds y las torres gemelas http://t.co/0ByLDSjL v\\u00EDa @cuantocabron", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:29 +0000", "from_user": "connorhibbert", "from_user_id": 23355592, "from_user_id_str": "23355592", "from_user_name": "connorhibbert", "geo": null, "id": 148838125999894530, "id_str": "148838125999894528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698385801/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698385801/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "most of the birds in hollyoaks are helfy!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:28 +0000", "from_user": "MatheusAthayde", "from_user_id": 290484918, "from_user_id_str": "290484918", "from_user_name": "matheusathayde", "geo": null, "id": 148838122510229500, "id_str": "148838122510229505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1335062311/OgAAALhZH6vAh_nGWaFXBkIVeX4x2bKUJU7NFnnIGo-2J_5Wg5R-ksgfXOUR9V9Hd6p9ha3mUFEfIL8Sjyb8IVjTSVUAm1T1UNAvQiICYWKdOPbCV9B9mbIHKtA5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335062311/OgAAALhZH6vAh_nGWaFXBkIVeX4x2bKUJU7NFnnIGo-2J_5Wg5R-ksgfXOUR9V9Hd6p9ha3mUFEfIL8Sjyb8IVjTSVUAm1T1UNAvQiICYWKdOPbCV9B9mbIHKtA5_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"Birds fly over the rainbow,why then, oh why can't I?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:22 +0000", "from_user": "Gertatron", "from_user_id": 321509486, "from_user_id_str": "321509486", "from_user_name": "Gert Corfield", "geo": null, "id": 148838100053925900, "id_str": "148838100053925890", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1636860773/Qvo41z6N_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1636860773/Qvo41z6N_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "http://t.co/oGy6MCMY Migrating birds getting shot out of the sky. They call it sport, I call it sickening.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:20 +0000", "from_user": "AshlanL", "from_user_id": 309222713, "from_user_id_str": "309222713", "from_user_name": "Ashlan Lang", "geo": null, "id": 148838088838352900, "id_str": "148838088838352897", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686186053/zzzzzzzCIMG0502_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686186053/zzzzzzzCIMG0502_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@nickolescharles the other day me & my mom were in town and saw THE BIRDS.. Sooo many like thousands", "to_user": "nickolescharles", "to_user_id": 103729926, "to_user_id_str": "103729926", "to_user_name": "Nick McDonald"}, +{"created_at": "Mon, 19 Dec 2011 18:52:18 +0000", "from_user": "RenoDeRuso", "from_user_id": 100093474, "from_user_id_str": "100093474", "from_user_name": "Never kiss & tell", "geo": null, "id": 148838079732523000, "id_str": "148838079732523008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1694146421/4-up_on_2011-07-03_at_09.57__9_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694146421/4-up_on_2011-07-03_at_09.57__9_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Angry birds >", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:15 +0000", "from_user": "BevPhotos", "from_user_id": 19466086, "from_user_id_str": "19466086", "from_user_name": "Bev ", "geo": null, "id": 148838067858452480, "id_str": "148838067858452480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1168019560/4450777546_c4c5f4ea6f_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1168019560/4450777546_c4c5f4ea6f_o_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @greenroofsuk: World's most threatened birds set up new nest in Gloucestershire -#Nature #biodiversity #Environment http://t.co/eOwO5xf5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:12 +0000", "from_user": "tomcomerfordnut", "from_user_id": 342211873, "from_user_id_str": "342211873", "from_user_name": "Thomas Comerford", "geo": null, "id": 148838057829859330, "id_str": "148838057829859329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1479756351/Ki_Josh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1479756351/Ki_Josh_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Dream on/High flying birds #chooon", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:12 +0000", "from_user": "Kukuachoo", "from_user_id": 71973443, "from_user_id_str": "71973443", "from_user_name": "I Am The Walrus", "geo": null, "id": 148838054159851520, "id_str": "148838054159851521", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1610226451/photo4_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610226451/photo4_normal.JPG", "source": "<a href="http://www.nibirutech.com" rel="nofollow">TwitBird</a>", "text": "I sneeze like my mother. It scares birds in the immediate vicinity.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:11 +0000", "from_user": "AyeeLilybeth", "from_user_id": 116976827, "from_user_id_str": "116976827", "from_user_name": "UNKNOWN", "geo": null, "id": 148838053635571700, "id_str": "148838053635571712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687459673/AyeeLilybeth_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687459673/AyeeLilybeth_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Sitting here .. Listening to the birds sing. Chirp chirp ..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:10 +0000", "from_user": "pdescendo", "from_user_id": 117999533, "from_user_id_str": "117999533", "from_user_name": "Pantaloon Descendo", "geo": null, "id": 148838048388481020, "id_str": "148838048388481024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1685541974/pdescendo-shoot_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685541974/pdescendo-shoot_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Turns out I'm better at Angry Birds when drunk. Like I am at Operation and, you know, life.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:09 +0000", "from_user": "MAF_Beto", "from_user_id": 372756753, "from_user_id_str": "372756753", "from_user_name": "Beto Dikgole", "geo": +{"coordinates": [-25.6301,27.2727], "type": "Point"}, "id": 148838044479397900, "id_str": "148838044479397888", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700745341/jc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700745341/jc_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Good night birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:09 +0000", "from_user": "Sober_Soper", "from_user_id": 95827925, "from_user_id_str": "95827925", "from_user_name": "Sober Soper", "geo": null, "id": 148838041660817400, "id_str": "148838041660817408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1146474323/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1146474323/me_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "\"How do Angry Birds get along with cats?\" \"They don't\". \"Good. Where do I get one?\" #papahatescats #angrybirds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:07 +0000", "from_user": "Tildaies", "from_user_id": 426262628, "from_user_id_str": "426262628", "from_user_name": "Tilda Heltzel", "geo": null, "id": 148838036967407600, "id_str": "148838036967407616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668798045/LLCM-2344_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668798045/LLCM-2344_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Moucha13 Go try Pigeon Palooza (the next angry birds)- it's in Android Mktplce - should be in ITunes next week.", "to_user": "Moucha13", "to_user_id": 122924561, "to_user_id_str": "122924561", "to_user_name": "Ond\\u0159ej Muchka", "in_reply_to_status_id": 148819528355282940, "in_reply_to_status_id_str": "148819528355282944"}, +{"created_at": "Mon, 19 Dec 2011 18:52:07 +0000", "from_user": "fckurTHOUGHTS", "from_user_id": 144011698, "from_user_id_str": "144011698", "from_user_name": "RLM\\u264C", "geo": null, "id": 148838033066692600, "id_str": "148838033066692608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699693479/newlook_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699693479/newlook_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I hate birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:04 +0000", "from_user": "juggmanRECKLESS", "from_user_id": 51142232, "from_user_id_str": "51142232", "from_user_name": "J\\u2206\\u00FF-\\u00AE\\u00EA\\u00E7k/\\u00E8\\u00A7\\u00A7\\u00D8G\\u00F4D \\u221A ", "geo": null, "id": 148838021251338240, "id_str": "148838021251338242", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688114976/388475_310133765666183_100000086855881_1366064_2078161906_a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688114976/388475_310133765666183_100000086855881_1366064_2078161906_a_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Birds Of Tha Same Feather Fly Tagetha..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:04 +0000", "from_user": "AReL013010", "from_user_id": 186683293, "from_user_id_str": "186683293", "from_user_name": "Ayrel \\u0394\\u03A3\\u03B8", "geo": null, "id": 148838020634775550, "id_str": "148838020634775552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699387015/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699387015/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "this unconditional love thing is for the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:01 +0000", "from_user": "calieagle7", "from_user_id": 348868472, "from_user_id_str": "348868472", "from_user_name": "tk ", "geo": null, "id": 148838007955398660, "id_str": "148838007955398656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1479668947/IMG-20110708-00010_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1479668947/IMG-20110708-00010_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "It's about time Eagles support the team instead of criticizing all the team. Got faith in tha Eagles. Go Birds!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:59 +0000", "from_user": "SmokahontasOGOD", "from_user_id": 233975877, "from_user_id_str": "233975877", "from_user_name": "Team Go Barbie !", "geo": null, "id": 148838003345854460, "id_str": "148838003345854464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1672239837/yreyu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672239837/yreyu_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "My dad just called angry birds mad birds that shit was funny", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:59 +0000", "from_user": "Aquarian_0214", "from_user_id": 229625264, "from_user_id_str": "229625264", "from_user_name": "2/14/95", "geo": null, "id": 148838002817380350, "id_str": "148838002817380352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695126551/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695126551/profile_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @ThsWht_iCallHer: Birds of a feather flock together. Hoes on the same shit chase after the same dick.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:56 +0000", "from_user": "MissEp3", "from_user_id": 155083481, "from_user_id_str": "155083481", "from_user_name": "JESSICA S.", "geo": null, "id": 148837987004850180, "id_str": "148837987004850176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684484120/N3DQR4eS_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684484120/N3DQR4eS_normal", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "Diablo you wasted no time on that! Huh. Lol RT @Og_Chris not more then bitches RT @MissEp3 Men are birds too, just saying.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:53 +0000", "from_user": "BIGBanks_", "from_user_id": 131338719, "from_user_id_str": "131338719", "from_user_name": "President Banks ", "geo": null, "id": 148837978305855500, "id_str": "148837978305855489", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700782475/IMG080_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700782475/IMG080_normal.jpeg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "We just two love birds that's why we always tweetin lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:52 +0000", "from_user": "nanarodriguees", "from_user_id": 174363727, "from_user_id_str": "174363727", "from_user_name": "Morgana Rodrigues", "geo": null, "id": 148837970273767420, "id_str": "148837970273767425", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1684275156/pag_20leo_203_20-_20Copy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684275156/pag_20leo_203_20-_20Copy_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "to ficando revoltada ja pq nao consigo passar de uma fase do angry birds!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:50 +0000", "from_user": "jevanmoore", "from_user_id": 295150350, "from_user_id_str": "295150350", "from_user_name": "JEvanMoore", "geo": null, "id": 148837964984754180, "id_str": "148837964984754176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1403043138/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1403043138/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Not sure why the Angry Birds are so angry! They're the ones crapping on MY car!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:50 +0000", "from_user": "greeno29", "from_user_id": 272585276, "from_user_id_str": "272585276", "from_user_name": "Andy Green", "geo": null, "id": 148837962929537020, "id_str": "148837962929537025", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1289750742/st._peters_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1289750742/st._peters_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @someecards: Angry Birds now available on iPhone, Droid, and completely insane man's Christmas lights display. http://t.co/mrfMU8Hl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:49 +0000", "from_user": "BelleMillaQEOG", "from_user_id": 428355696, "from_user_id_str": "428355696", "from_user_name": "Belle Milla", "geo": null, "id": 148837957971877900, "id_str": "148837957971877888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1674178599/7012289841192040_jo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674178599/7012289841192040_jo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Paletorra Hey, go get Pigeon Palooza (the next angry birds)- it is for sale in Android Mktplce - will be in ITunes soon.", "to_user": "Paletorra", "to_user_id": 183097477, "to_user_id_str": "183097477", "to_user_name": "Pale Torres", "in_reply_to_status_id": 148824887002279940, "in_reply_to_status_id_str": "148824887002279936"}, +{"created_at": "Mon, 19 Dec 2011 18:51:47 +0000", "from_user": "Dinosauriuz_SD", "from_user_id": 195819414, "from_user_id_str": "195819414", "from_user_name": "dinora rowLan", "geo": null, "id": 148837952372482050, "id_str": "148837952372482048", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1650570923/Dinora_G_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650570923/Dinora_G_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @garabatoAdan: @Dinosauriuz_SD es cuando te propongo, pasa este nivel de angry birds y te paso el de lolo xd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:43 +0000", "from_user": "orangezara", "from_user_id": 64736239, "from_user_id_str": "64736239", "from_user_name": "Zara Hussain", "geo": null, "id": 148837936253779970, "id_str": "148837936253779968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1484500323/264359_1660785418285_1796694280_1040092_7728430_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1484500323/264359_1660785418285_1796694280_1040092_7728430_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@LozzZol I mainly love the colours, they really match the mood of the song + the little things like candles & raindrops & birds are...", "to_user": "LozzZol", "to_user_id": 250704026, "to_user_id_str": "250704026", "to_user_name": "Lozz", "in_reply_to_status_id": 148836169692614660, "in_reply_to_status_id_str": "148836169692614656"}, +{"created_at": "Mon, 19 Dec 2011 18:51:38 +0000", "from_user": "PunithaNaidu", "from_user_id": 270481698, "from_user_id_str": "270481698", "from_user_name": "Punitha Naidu", "geo": null, "id": 148837914678272000, "id_str": "148837914678272000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681696071/xxx_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681696071/xxx_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Liam_Doyle_ NO, DONT BE PROUD OF THAT LIAM! you'll be pullin birds, and not the female kind! #kinkehh #peado", "to_user": "Liam_Doyle_", "to_user_id": 202165822, "to_user_id_str": "202165822", "to_user_name": "Liam Doyle", "in_reply_to_status_id": 148834762746888200, "in_reply_to_status_id_str": "148834762746888194"}, +{"created_at": "Mon, 19 Dec 2011 18:51:38 +0000", "from_user": "ben_champ", "from_user_id": 20691985, "from_user_id_str": "20691985", "from_user_name": "Ben Slack", "geo": null, "id": 148837912811802620, "id_str": "148837912811802625", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668783985/12b6cdc0112811e180c9123138016265_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668783985/12b6cdc0112811e180c9123138016265_7_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@b_molly_ better percentage of fit birds in Notts though.", "to_user": "b_molly_", "to_user_id": 44232745, "to_user_id_str": "44232745", "to_user_name": "B.Molly", "in_reply_to_status_id": 148833852448718850, "in_reply_to_status_id_str": "148833852448718851"}, +{"created_at": "Mon, 19 Dec 2011 18:51:38 +0000", "from_user": "Crag92", "from_user_id": 131448477, "from_user_id_str": "131448477", "from_user_name": "Craig Mullen", "geo": null, "id": 148837911482204160, "id_str": "148837911482204160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1344575934/Crag92_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1344575934/Crag92_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @morsey91: sick of fake fit birds following me on here! Stop getting my hopes up #Bellends", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:36 +0000", "from_user": "Keiseeey", "from_user_id": 255839213, "from_user_id_str": "255839213", "from_user_name": "Keiseeey", "geo": null, "id": 148837905459195900, "id_str": "148837905459195905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1638235583/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638235583/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Words can't explain how much I hate birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:35 +0000", "from_user": "RachiieeJayne", "from_user_id": 29069194, "from_user_id_str": "29069194", "from_user_name": "Rachael Jayne Bell", "geo": null, "id": 148837898983178240, "id_str": "148837898983178240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690529897/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690529897/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@RyanAllonby: @glennaggie did i get a taxi home with you and two fat birds? on saturday?\\u201D absolutely brilliant Ry!!!! Made me night hahaha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:35 +0000", "from_user": "BossyJohnson", "from_user_id": 325090972, "from_user_id_str": "325090972", "from_user_name": "CROUCHY T", "geo": null, "id": 148837898802839550, "id_str": "148837898802839553", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1683694549/DKgUoUhN_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683694549/DKgUoUhN_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @_BigPimpin1500: Me and my gurlfriend @BossyJohnson we like 2 love birds lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:34 +0000", "from_user": "bridgettblafoll", "from_user_id": 306014392, "from_user_id_str": "306014392", "from_user_name": "bridgett lafollette", "geo": null, "id": 148837896760209400, "id_str": "148837896760209408", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1678772376/Carat_Diamond_Earrings_Sale_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678772376/Carat_Diamond_Earrings_Sale_normal.jpg", "source": "<a href="http://caratdiamondearringssale.com" rel="nofollow">Carat Diamond Earrings Sale</a>", "text": ">: Brooke http://t.co/DhyUUp5Y", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:34 +0000", "from_user": "Ninja_eneje24", "from_user_id": 338458380, "from_user_id_str": "338458380", "from_user_name": "Nenna Eneje", "geo": null, "id": 148837895086673920, "id_str": "148837895086673921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1690187945/4CjTKSnk_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690187945/4CjTKSnk_normal", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @Miss_BWilliams: Mann, these cramps is for the birds \\uD83D\\uDC4E\\u274C\\uD83D\\uDE37", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:32 +0000", "from_user": "ThatJerseyNiqqa", "from_user_id": 238406520, "from_user_id_str": "238406520", "from_user_name": "Deion Romero ", "geo": null, "id": 148837888237371400, "id_str": "148837888237371392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1556790606/snapshot__20__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1556790606/snapshot__20__normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "#WhatHappened2 angry birds ? Now everyones playing Temple Run or w.e the fuck its called", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:31 +0000", "from_user": "Prada_J", "from_user_id": 63920742, "from_user_id_str": "63920742", "from_user_name": "Justin Davis", "geo": null, "id": 148837884433141760, "id_str": "148837884433141760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1471188914/PRADA_JOCCIN4_edited_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1471188914/PRADA_JOCCIN4_edited_1_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Why tha Hell are tha birds jus NOW headin south.. its mid December in Minnesota ! Lol Smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:30 +0000", "from_user": "iprada5150", "from_user_id": 191480806, "from_user_id_str": "191480806", "from_user_name": "lakeya elmore", "geo": null, "id": 148837881195143170, "id_str": "148837881195143170", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1667342806/IMG_20111201_004243-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667342806/IMG_20111201_004243-1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Des fckin birds down here <<<< I had like 5 heart attacks alrey..I dnt like shit flying by my head", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:30 +0000", "from_user": "KharleyJay", "from_user_id": 371515889, "from_user_id_str": "371515889", "from_user_name": "Kay'Jay!", "geo": null, "id": 148837879924273150, "id_str": "148837879924273153", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1638605992/zRRtHaAl_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638605992/zRRtHaAl_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "All I want for Christmas Is you. All this extra ish is for the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:29 +0000", "from_user": "Jess_Daniels90", "from_user_id": 40467172, "from_user_id_str": "40467172", "from_user_name": "Jessica Daniels", "geo": null, "id": 148837876493332480, "id_str": "148837876493332480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699840656/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699840656/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Got overly excited completing a level of angry birds and dropped my phone on my face #fatlip! :(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:28 +0000", "from_user": "minnieN_Omouse", "from_user_id": 301415219, "from_user_id_str": "301415219", "from_user_name": "Sha\\u2022Don\\u2022Asty \\u2661", "geo": null, "id": 148837871732785150, "id_str": "148837871732785152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698923634/ar08mdSN_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698923634/ar08mdSN_normal", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @The_Rebel: Birds of a feather flock together!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:27 +0000", "from_user": "JohnavonBV", "from_user_id": 401689510, "from_user_id_str": "401689510", "from_user_name": "Johnavon Williams", "geo": null, "id": 148837867664314370, "id_str": "148837867664314368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687562784/1fD2SMBv_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687562784/1fD2SMBv_normal", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "RT @YellaBoi_DMJ: Birds Part 2 > ....lyrically insane real shit..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:26 +0000", "from_user": "ecuadorrebel", "from_user_id": 228134822, "from_user_id_str": "228134822", "from_user_name": "Steve Herrmann", "geo": null, "id": 148837863436464130, "id_str": "148837863436464128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1224455765/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1224455765/me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Article on Blue-gray #Tanager of #Ecuador http://t.co/h1dw9Ap4 #birds #birding #nature #wildlife", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:26 +0000", "from_user": "PittFanAlli", "from_user_id": 29094217, "from_user_id_str": "29094217", "from_user_name": "Alli", "geo": null, "id": 148837863335804930, "id_str": "148837863335804929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1595349454/steelers_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1595349454/steelers_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@patmuldowney haha, you should probably be watching the road and not the birds.", "to_user": "patmuldowney", "to_user_id": 18971284, "to_user_id_str": "18971284", "to_user_name": "Patrick Muldowney", "in_reply_to_status_id": 148837639842308100, "in_reply_to_status_id_str": "148837639842308096"}, +{"created_at": "Mon, 19 Dec 2011 18:51:23 +0000", "from_user": "TheNamesChelly", "from_user_id": 77839713, "from_user_id_str": "77839713", "from_user_name": "Why Yes,Im Chelly\\u266C\\u266C", "geo": null, "id": 148837851310735360, "id_str": "148837851310735360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700803986/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700803986/profile_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @ThsWht_iCallHer: Birds of a feather flock together. Hoes on the same shit chase after the same dick.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:21 +0000", "from_user": "EmmanuelOfficer", "from_user_id": 388370015, "from_user_id_str": "388370015", "from_user_name": "Emmanuel Officer", "geo": null, "id": 148837843404455940, "id_str": "148837843404455936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1663714069/1213694_handycam_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663714069/1213694_handycam_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "In other words, it means taking the best lessons from games like FarmVille, World of Warcraft and Angry Birds, and using them in business", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:21 +0000", "from_user": "NoSeVolar_", "from_user_id": 209409788, "from_user_id_str": "209409788", "from_user_name": "J e s u s\\u262E", "geo": null, "id": 148837842355896320, "id_str": "148837842355896320", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1647890093/303987_267472369962594_100000994994610_816977_1229101951_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647890093/303987_267472369962594_100000994994610_816977_1229101951_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "P\\u00F4neis Malditos? Por que n\\u00E3o Angry Birds Malditos? #BigFollow: http://t.co/mvfGn6Tj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:20 +0000", "from_user": "Tonylean", "from_user_id": 162779142, "from_user_id_str": "162779142", "from_user_name": "Tony", "geo": null, "id": 148837836274139140, "id_str": "148837836274139137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1050290544/Le_Voyage_dans_la_Lune_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1050290544/Le_Voyage_dans_la_Lune_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Thousands of migratory birds crash land... after mistaking", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:18 +0000", "from_user": "Margrettgdl", "from_user_id": 431730033, "from_user_id_str": "431730033", "from_user_name": "Margrett Kennon", "geo": null, "id": 148837830066581500, "id_str": "148837830066581504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681093552/efqtiualdd_132938134_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681093552/efqtiualdd_132938134_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Sterling Silver 3/4\" Round St. Francis, Patron of Animals and Birds Medal on 20\" Chain: Sterling Silver 3/4\" Rou... http://t.co/oIiftrAc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:17 +0000", "from_user": "ohh_fahREALdoe", "from_user_id": 64318344, "from_user_id_str": "64318344", "from_user_name": "jazmine'baylor ", "geo": null, "id": 148837825020837900, "id_str": "148837825020837888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692198148/1a6BGUB8_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692198148/1a6BGUB8_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@MAdlY_UNiiQUE hahahahaha still don't know how to play Angry Birds after I showed yu yesterday smh", "to_user": "MAdlY_UNiiQUE", "to_user_id": 305159899, "to_user_id_str": "305159899", "to_user_name": "Chazah Carter", "in_reply_to_status_id": 148836653639806980, "in_reply_to_status_id_str": "148836653639806976"}, +{"created_at": "Mon, 19 Dec 2011 18:51:16 +0000", "from_user": "supersonicopop", "from_user_id": 57773904, "from_user_id_str": "57773904", "from_user_name": "Supers\\u00F4nico", "geo": null, "id": 148837822898503680, "id_str": "148837822898503680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/318817782/Super_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/318817782/Super_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Hole-For Once In Your Life//Noel Gallagher's High Flying Birds-The Death Of You And Me//Incubus-Promises,Promises//", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:16 +0000", "from_user": "Kaligigi", "from_user_id": 426265713, "from_user_id_str": "426265713", "from_user_name": "Kali Talsma", "geo": null, "id": 148837820801368060, "id_str": "148837820801368064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668805839/LLCM-2689_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668805839/LLCM-2689_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@StayWavyBabyYDG Ya should play Pigeon Palooza (the next angry birds)- it's launched in Android Mktplce - will be in ITunes next week.", "to_user": "StayWavyBabyYDG", "to_user_id": 377985529, "to_user_id_str": "377985529", "to_user_name": "Eric Garcia", "in_reply_to_status_id": 148805799395868670, "in_reply_to_status_id_str": "148805799395868672"}, +{"created_at": "Mon, 19 Dec 2011 18:51:11 +0000", "from_user": "hawaiianbabez", "from_user_id": 252916318, "from_user_id_str": "252916318", "from_user_name": "YESitsmeJAZZY", "geo": null, "id": 148837801339797500, "id_str": "148837801339797505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697323343/378981_304593979563379_100000383377595_1004762_1761085281_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697323343/378981_304593979563379_100000383377595_1004762_1761085281_n_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "All the bullshits for the birds, u aint nun but a volture....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:09 +0000", "from_user": "Og_Chris", "from_user_id": 38656448, "from_user_id_str": "38656448", "from_user_name": "Chriz", "geo": null, "id": 148837792775016450, "id_str": "148837792775016448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699212648/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699212648/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "not more then bitches RT @MissEp3 Men are birds too, just saying.", "to_user": "MissEp3", "to_user_id": 155083481, "to_user_id_str": "155083481", "to_user_name": "JESSICA S.", "in_reply_to_status_id": 148837689662242800, "in_reply_to_status_id_str": "148837689662242816"}, +{"created_at": "Mon, 19 Dec 2011 18:51:04 +0000", "from_user": "JustinBlake44", "from_user_id": 402978901, "from_user_id_str": "402978901", "from_user_name": "Justin Blake", "geo": null, "id": 148837768766832640, "id_str": "148837768766832640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "ANGRY BIRDS ANGRY BIRDS ANGRY BIRDS!!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:02 +0000", "from_user": "girasolitayo", "from_user_id": 130708080, "from_user_id_str": "130708080", "from_user_name": "Irlanda Garcia", "geo": null, "id": 148837764278915070, "id_str": "148837764278915073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/808353671/SDC103682_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/808353671/SDC103682_normal.JPG", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "I want to play angry birds!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:01 +0000", "from_user": "SlideAngryBirds", "from_user_id": 266094153, "from_user_id_str": "266094153", "from_user_name": "Angry Birds", "geo": null, "id": 148837756418785280, "id_str": "148837756418785280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1272442319/SlideAngryBirds_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1272442319/SlideAngryBirds_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @simmytimmy: They say the first step is admitting you have a problem.. Well I'm addicted to _angry_ _birds_.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:56 +0000", "from_user": "gurikmogumogu", "from_user_id": 235511242, "from_user_id_str": "235511242", "from_user_name": "clockworkpussy", "geo": null, "id": 148837737770917900, "id_str": "148837737770917889", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1210426976/ghost_in_the_shell_2_051006021922499_wideweb__375x500_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1210426976/ghost_in_the_shell_2_051006021922499_wideweb__375x500_1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MuratAykul: D\\u00FCn gece, hi\\u00E7 tan\\u0131mad\\u0131\\u011F\\u0131m bir tavu\\u011Fu, s\\u0131rf Angry Birds'e benziyor diye, usulca sokulup havaya f\\u0131rlatt\\u0131m.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:55 +0000", "from_user": "_BigPimpin1500", "from_user_id": 314808696, "from_user_id_str": "314808696", "from_user_name": "rome smith", "geo": null, "id": 148837733446594560, "id_str": "148837733446594560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693506452/n56mX30N_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693506452/n56mX30N_normal", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Me and my gurlfriend @BossyJohnson we like 2 love birds lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:54 +0000", "from_user": "ShonaSchlickerU", "from_user_id": 428329314, "from_user_id_str": "428329314", "from_user_name": "Shona Schlicker", "geo": null, "id": 148837728522481660, "id_str": "148837728522481664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1674178618/15093392221209438_double_call_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674178618/15093392221209438_double_call_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@msdorasanchez Hey, check out Pigeon Palooza (the next angry birds)- it is for sale in Android Mktplce - will be in ITunes next week.", "to_user": "msdorasanchez", "to_user_id": 87572092, "to_user_id_str": "87572092", "to_user_name": "Shaquita hunt", "in_reply_to_status_id": 148832398019268600, "in_reply_to_status_id_str": "148832398019268608"}, +{"created_at": "Mon, 19 Dec 2011 18:50:51 +0000", "from_user": "heartsinsf", "from_user_id": 114907105, "from_user_id_str": "114907105", "from_user_name": "Charise #NSN", "geo": null, "id": 148837717793443840, "id_str": "148837717793443840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1533491705/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1533491705/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "@minamaya13 \\nUnder-threat birds... That is GREAT", "to_user": "minamaya13", "to_user_id": 54182296, "to_user_id_str": "54182296", "to_user_name": "OriginalBADYOGAKITTY", "in_reply_to_status_id": 148836640910098430, "in_reply_to_status_id_str": "148836640910098432"}, +{"created_at": "Mon, 19 Dec 2011 18:50:50 +0000", "from_user": "soglamwright", "from_user_id": 37158520, "from_user_id_str": "37158520", "from_user_name": "Terrica Wright", "geo": null, "id": 148837713381036030, "id_str": "148837713381036032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1635309429/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635309429/profile_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "We just 2 love birds that's why we always tweeting", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:45 +0000", "from_user": "MissEp3", "from_user_id": 155083481, "from_user_id_str": "155083481", "from_user_name": "JESSICA S.", "geo": null, "id": 148837689662242800, "id_str": "148837689662242816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684484120/N3DQR4eS_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684484120/N3DQR4eS_normal", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "Men are birds too, just saying.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:45 +0000", "from_user": "Rosamondbnmq", "from_user_id": 426260430, "from_user_id_str": "426260430", "from_user_name": "Rosamond Wengel", "geo": null, "id": 148837689100218370, "id_str": "148837689100218368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668792505/LLCM-4623_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668792505/LLCM-4623_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@NathanBarclay Dude, play Pigeon Palooza (the next angry birds)- it's for sale in Android Mktplce - will be in App Store in a few days.", "to_user": "NathanBarclay", "to_user_id": 189242155, "to_user_id_str": "189242155", "to_user_name": "Nathan Barclay", "in_reply_to_status_id": 148828303090913280, "in_reply_to_status_id_str": "148828303090913280"}, +{"created_at": "Mon, 19 Dec 2011 18:50:44 +0000", "from_user": "Kishen_99", "from_user_id": 157489687, "from_user_id_str": "157489687", "from_user_name": "Kishen Lakhani", "geo": null, "id": 148837688605282300, "id_str": "148837688605282305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1551901087/kishen_rulez____normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1551901087/kishen_rulez____normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Lord_Voldemort7: #WhenIWasGrowingUp The only 'Angry Birds' were pissed off owls.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:44 +0000", "from_user": "tolgayavuz6", "from_user_id": 428140253, "from_user_id_str": "428140253", "from_user_name": "tolga yavuz", "geo": null, "id": 148837686034169860, "id_str": "148837686034169857", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Crazy Birds Rio http://t.co/GhaCqQCe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:50:44 +0000", "from_user": "tolgayavuz6", "from_user_id": 428140253, "from_user_id_str": "428140253", "from_user_name": "tolga yavuz", "geo": null, "id": 148837686034169860, "id_str": "148837686034169857", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Crazy Birds Rio http://t.co/GhaCqQCe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:37 +0000", "from_user": "NoDOPEnameHere_", "from_user_id": 72651774, "from_user_id_str": "72651774", "from_user_name": "Zuh-Knee-Yah\\u2122", "geo": null, "id": 148837657609371650, "id_str": "148837657609371648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699202640/IMAG0793_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699202640/IMAG0793_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @The_Rebel: Birds of a feather flock together!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:37 +0000", "from_user": "GeoAnche", "from_user_id": 334933006, "from_user_id_str": "334933006", "from_user_name": "polatje (:", "geo": null, "id": 148837656325914620, "id_str": "148837656325914625", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685979340/Picture_66_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685979340/Picture_66_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @xxxzoe96: Ik snap echt niet waarom iedereen angry birds zo geweldig vindt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:36 +0000", "from_user": "ianfuckinfarmer", "from_user_id": 26020726, "from_user_id_str": "26020726", "from_user_name": "Ian Farmer", "geo": null, "id": 148837652815282180, "id_str": "148837652815282176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1556448779/Photo_on_2011-09-23_at_14.17__3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1556448779/Photo_on_2011-09-23_at_14.17__3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@fuckcarmic I'm pretty sure baby birds aren't allowed to use ovens.", "to_user": "fuckcarmic", "to_user_id": 20348357, "to_user_id_str": "20348357", "to_user_name": "Carolyn McHugh", "in_reply_to_status_id": 148837046931296260, "in_reply_to_status_id_str": "148837046931296256"}, +{"created_at": "Mon, 19 Dec 2011 18:50:34 +0000", "from_user": "secretbones", "from_user_id": 74138607, "from_user_id_str": "74138607", "from_user_name": "\\u2625 \\u262F Jazlyn \\u264B \\u270C ", "geo": null, "id": 148837647022948350, "id_str": "148837647022948352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702595497/newtattoooyar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702595497/newtattoooyar_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "I LOVE BIRDS SIA HOW? BIRDS ARE SUCH AQTPIE \\u201C@Cursedwithsex: @secretbones Y U INK ANOTHER BIRD? queen of birds sia #salute\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:33 +0000", "from_user": "patmuldowney", "from_user_id": 18971284, "from_user_id_str": "18971284", "from_user_name": "Patrick Muldowney", "geo": +{"coordinates": [41.4799,-73.6524], "type": "Point"}, "id": 148837639842308100, "id_str": "148837639842308096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690074966/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690074966/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Flocking birds are so cool.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:32 +0000", "from_user": "DJWigidiWack", "from_user_id": 130750137, "from_user_id_str": "130750137", "from_user_name": "Salvador = Savior", "geo": null, "id": 148837634620395520, "id_str": "148837634620395520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1624808432/442198290_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624808432/442198290_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Mayberryband correction owls r noctunal animals n r only active at night so we're more like humming birds(The Office DWight). Lol", "to_user": "Mayberryband", "to_user_id": 313707028, "to_user_id_str": "313707028", "to_user_name": "Mayberry"}, +{"created_at": "Mon, 19 Dec 2011 18:50:31 +0000", "from_user": "ghettolushes", "from_user_id": 258400906, "from_user_id_str": "258400906", "from_user_name": "Amanda V.", "geo": null, "id": 148837630983929860, "id_str": "148837630983929858", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692984423/FbIG5tcx_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692984423/FbIG5tcx_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @DEPTR: My little brother is hooked on Angry Birds lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:24 +0000", "from_user": "OneandOnlyJarbu", "from_user_id": 314233534, "from_user_id_str": "314233534", "from_user_name": "Zack Jarbu", "geo": null, "id": 148837600990474240, "id_str": "148837600990474242", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664909386/ny_zack_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664909386/ny_zack_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "3 little birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:19 +0000", "from_user": "weekndjunkie", "from_user_id": 158942725, "from_user_id_str": "158942725", "from_user_name": "Bob Marley", "geo": null, "id": 148837580614541300, "id_str": "148837580614541312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700683072/loop1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700683072/loop1_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "The weeknd video for the birds pt 1 is to cute , the girl in it is beautiful and by next fall my hair gonna be just like that .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:16 +0000", "from_user": "irmanovianti20", "from_user_id": 184517197, "from_user_id_str": "184517197", "from_user_name": "irma novianti", "geo": null, "id": 148837571244458000, "id_str": "148837571244457985", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702603186/IMG_4077__E5_89_AF_E6_9C_AC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702603186/IMG_4077__E5_89_AF_E6_9C_AC_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "BoamRT @junialdi1: Permainan gue tuh RT @irmanovianti20: Point blankRT @GueMauTanya: Pilih (angry birds/ayo dance/mafia wars/point blank)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:15 +0000", "from_user": "Tabasco08", "from_user_id": 16935067, "from_user_id_str": "16935067", "from_user_name": "A Red Nosed Reindeer", "geo": null, "id": 148837564185456640, "id_str": "148837564185456640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1674074969/nkrOp_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674074969/nkrOp_normal.jpg", "source": "<a href="http://stone.com/Twittelator" rel="nofollow">Twittelator</a>", "text": "Angry Birds causes stress...let me go start cooking", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:13 +0000", "from_user": "_Paganoti", "from_user_id": 171112590, "from_user_id_str": "171112590", "from_user_name": "_Paganoti", "geo": null, "id": 148837556157562880, "id_str": "148837556157562880", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1414821527/DSC02084_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1414821527/DSC02084_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "La vou eu jogar um angry birds......", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:12 +0000", "from_user": "UberSurge1", "from_user_id": 391279883, "from_user_id_str": "391279883", "from_user_name": "UberSurgeClothing", "geo": null, "id": 148837553565470720, "id_str": "148837553565470720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1589228996/UBS2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1589228996/UBS2_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I favorited a @YouTube video http://t.co/BObJUEBm Noel Gallagher's High Flying Birds - AKA... What A Life", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:09 +0000", "from_user": "Justbirds1", "from_user_id": 291680688, "from_user_id_str": "291680688", "from_user_name": "Bev", "geo": null, "id": 148837539141255170, "id_str": "148837539141255169", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1335631073/5261855304_0f68f9ba91_m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335631073/5261855304_0f68f9ba91_m_normal.jpg", "source": "<a href="http://www.twaitter.com" rel="nofollow">Twaitter</a>", "text": "Kite Close Up http://t.co/nNNpJYPl #birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:08 +0000", "from_user": "Photobug52", "from_user_id": 90379242, "from_user_id_str": "90379242", "from_user_name": "Alan S Hochman Photo", "geo": null, "id": 148837537320939520, "id_str": "148837537320939520", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/741189496/P1010013crop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/741189496/P1010013crop_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Little Blue Heron juvenile http://t.co/op0IjsWA #birding #birds #heron Visit http://t.co/VdlG7gZ2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:08 +0000", "from_user": "Laurenbellalex", "from_user_id": 268036097, "from_user_id_str": "268036097", "from_user_name": "Lauren \\u271E", "geo": null, "id": 148837534120685570, "id_str": "148837534120685568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1684467114/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684467114/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Shake it for the birds, shake it for the bees.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:08 +0000", "from_user": "Candy_Tweet434", "from_user_id": 28630315, "from_user_id_str": "28630315", "from_user_name": "Tweet McLovin", "geo": null, "id": 148837534095507460, "id_str": "148837534095507457", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702516984/IMG_20111201_184128-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702516984/IMG_20111201_184128-1_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "This weather is for the birds. Make your mind mother nature!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:07 +0000", "from_user": "Shizueskep", "from_user_id": 426262224, "from_user_id_str": "426262224", "from_user_name": "Shizue Lautz", "geo": null, "id": 148837530731675650, "id_str": "148837530731675648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668797298/LLCM-4396_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668797298/LLCM-4396_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MissBrownn Ya have to try out Pigeon Palooza (the next angry birds)- it is launched in Android Mktplce - should be in App Store next week.", "to_user": "MissBrownn", "to_user_id": 128885818, "to_user_id_str": "128885818", "to_user_name": "' Miss Brown \\u2661", "in_reply_to_status_id": 148835716674224130, "in_reply_to_status_id_str": "148835716674224128"}, +{"created_at": "Mon, 19 Dec 2011 18:50:05 +0000", "from_user": "ThickyBrown", "from_user_id": 98746289, "from_user_id_str": "98746289", "from_user_name": "Black Stallion", "geo": null, "id": 148837523127402500, "id_str": "148837523127402496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692284214/xbTzsiU5_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692284214/xbTzsiU5_normal", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", "text": "RT @Rozaayyy_: Miss me wit the bullshit..... I let dat shit fly wit the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:02 +0000", "from_user": "POP_Agency", "from_user_id": 11056422, "from_user_id_str": "11056422", "from_user_name": "POP", "geo": null, "id": 148837512809418750, "id_str": "148837512809418752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/574558907/pop_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/574558907/pop_logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Angry Birds Christmas Light Game http://t.co/bERaW4Fw #WatchThis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:02 +0000", "from_user": "simmytimmy", "from_user_id": 100392929, "from_user_id_str": "100392929", "from_user_name": "Sim-one ", "geo": null, "id": 148837508996808700, "id_str": "148837508996808704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1652414948/Picture_2344_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652414948/Picture_2344_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "They say the first step is admitting you have a problem.. Well I'm addicted to angry birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:01 +0000", "from_user": "VsoWavy", "from_user_id": 353755324, "from_user_id_str": "353755324", "from_user_name": "V", "geo": null, "id": 148837508434767870, "id_str": "148837508434767873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1664940272/IMG-20101220-00167_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664940272/IMG-20101220-00167_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "Cosign..for some reason birds see my car as a target RT @domomodelesque Something i need to do !! \\u201C@KING_AOK1: Finally got my car washed !!\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:01 +0000", "from_user": "CameronDort", "from_user_id": 355183534, "from_user_id_str": "355183534", "from_user_name": "Cameron Dort", "geo": null, "id": 148837505066733570, "id_str": "148837505066733568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1495654634/dustin_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1495654634/dustin_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "I hope the girl in front of me has either a hair brush, or birds to fill the nest on her head on christmas list", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:59 +0000", "from_user": "queengerr954", "from_user_id": 304154382, "from_user_id_str": "304154382", "from_user_name": "gerian elizabeth (:", "geo": null, "id": 148837497110142980, "id_str": "148837497110142976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662605346/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662605346/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "TWITTER >>>>> ANGRY BIRDS >>>> SKYPE >>>> TEXTING >>>>> TALKING ON THE PHONE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:58 +0000", "from_user": "ldaugusto", "from_user_id": 14643922, "from_user_id_str": "14643922", "from_user_name": "Daniel Cre\\u00E3o", "geo": null, "id": 148837495931543550, "id_str": "148837495931543554", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1397607456/House-Stark-game-of-thrones-20596053-800-600_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1397607456/House-Stark-game-of-thrones-20596053-800-600_normal.jpg", "source": "<a href="http://www.tweekly.fm/" rel="nofollow">Tweekly.fm</a>", "text": "My Top 3 #lastfm Artists: Noel Gallagher's High Flying Birds (35), Nightwish (34) & Marilyn Manson (19) http://t.co/Y4DjjvLU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:56 +0000", "from_user": "RienkeSchilder", "from_user_id": 334846009, "from_user_id_str": "334846009", "from_user_name": "Rienke Schilder", "geo": null, "id": 148837486158807040, "id_str": "148837486158807040", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1640446473/P011111_17.06__01__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640446473/P011111_17.06__01__normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @RaadDezeTweet: - - - - - ( \\u00F2 )> (^(00)^) ANGRY BIRDS! Retweet als je het ziet! #RDT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:55 +0000", "from_user": "CalPrivacy", "from_user_id": 243836254, "from_user_id_str": "243836254", "from_user_name": "Privacy ", "geo": null, "id": 148837479573766140, "id_str": "148837479573766144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1227609928/Logo_Cropped2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1227609928/Logo_Cropped2_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Birds-eye view of 2011 Data Breaches:\\nhttp://t.co/kDI4oTzL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:51 +0000", "from_user": "JenJen_BadDoe", "from_user_id": 235764075, "from_user_id_str": "235764075", "from_user_name": "Jennifer Jemia", "geo": null, "id": 148837463618633730, "id_str": "148837463618633730", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700548145/2011-12-18_11.51.06_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700548145/2011-12-18_11.51.06_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Jus downloaded angry birds :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:49 +0000", "from_user": "TheTonyRam", "from_user_id": 281019533, "from_user_id_str": "281019533", "from_user_name": "Anthony Ramirez", "geo": null, "id": 148837457432018940, "id_str": "148837457432018944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1308988452/28814_406537072377_612312377_4259657_3491048_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1308988452/28814_406537072377_612312377_4259657_3491048_n_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Angry Birds is a fantastic game for passing the time. It's also great for pissing me off to no end.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:49 +0000", "from_user": "CoachMcCraySwag", "from_user_id": 317875207, "from_user_id_str": "317875207", "from_user_name": "Ashley McCray", "geo": null, "id": 148837454546341900, "id_str": "148837454546341889", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699472685/CoachMcCraySwag_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699472685/CoachMcCraySwag_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Hey birds, hey sun, hey clouds, hey stars, heeyyy!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:49 +0000", "from_user": "AyeJayWest", "from_user_id": 219814980, "from_user_id_str": "219814980", "from_user_name": "A.J. West", "geo": null, "id": 148837454181433340, "id_str": "148837454181433344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693625077/IMG_5556__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693625077/IMG_5556__1__normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Jeezy got me feelin like a dope boy..nigga lookin lame as hell in my da dukes red caviler..ain't no birds in the trunk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:45 +0000", "from_user": "kaygodd", "from_user_id": 174231163, "from_user_id_str": "174231163", "from_user_name": "Kimberly Godfrey", "geo": null, "id": 148837439165825020, "id_str": "148837439165825025", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701298300/Photo_on_2011-08-24_at_16.54__7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701298300/Photo_on_2011-08-24_at_16.54__7_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@stanleyspotts: @kaygodd ..too fly for them birds http://t.co/OME7diJc\\u201D what what !!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:44 +0000", "from_user": "MajhVilleda", "from_user_id": 256633373, "from_user_id_str": "256633373", "from_user_name": "Majh Villeda Snchz", "geo": null, "id": 148837436070445060, "id_str": "148837436070445058", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697843707/mah_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697843707/mah_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @OkamiV: Las indirectas en Twitter son como el juego de Angry Birds; Avientas un tweet al aire y le das en la madre a una puerca gorda.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:43 +0000", "from_user": "NeverGaveA_Fuck", "from_user_id": 260958511, "from_user_id_str": "260958511", "from_user_name": "\\u00A9a\\u03A0ad\\u00A1\\u00A1a\\u03A0 ' K\\u00A1\\u03A0G", "geo": null, "id": 148837433167974400, "id_str": "148837433167974400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1549234540/K8tgw6jT_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1549234540/K8tgw6jT_normal", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "amgry birds game . http://t.co/J22Mzuim", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:42 +0000", "from_user": "TruthOr_Rare", "from_user_id": 421265236, "from_user_id_str": "421265236", "from_user_name": "Rare Breed", "geo": null, "id": 148837426134126600, "id_str": "148837426134126592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702443265/IMG_20110913_203334_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702443265/IMG_20110913_203334_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "All that bullshit is for the birds throw some bread out !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:40 +0000", "from_user": "MsTaniD", "from_user_id": 80998038, "from_user_id_str": "80998038", "from_user_name": "\\uE32ETani D\\uE32E", "geo": null, "id": 148837419284828160, "id_str": "148837419284828160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1604557992/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1604557992/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Dear motivation, I need you back asaptually! I know, I know...this ish is for the birds but I can't without you man", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:40 +0000", "from_user": "_StareAtMyTweet", "from_user_id": 281763432, "from_user_id_str": "281763432", "from_user_name": "-iH y p e r HOE ! \\u2665", "geo": null, "id": 148837418223681540, "id_str": "148837418223681537", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701095230/IMG00693-20111218-1748-5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701095230/IMG00693-20111218-1748-5_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "We needa have a Talk about the birds & the bee's ,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:39 +0000", "from_user": "LatoyaJ_Iam", "from_user_id": 231622699, "from_user_id_str": "231622699", "from_user_name": "Latoya J Flowers", "geo": null, "id": 148837416382369800, "id_str": "148837416382369792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1592369492/profile_image_1318837249006_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592369492/profile_image_1318837249006_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">twidroyd</a>", "text": "RT @TSoulMusic: If couples who are in love are called \"love birds\", then couples who always argue should be called \"Angry birds.\" :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:39 +0000", "from_user": "aLiciaCaLidade", "from_user_id": 268820954, "from_user_id_str": "268820954", "from_user_name": "Alicia Vaca ", "geo": null, "id": 148837414868221950, "id_str": "148837414868221952", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1279260781/muere_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1279260781/muere_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @valladolor: \"Angry Birds Las Delicias\" en tu App Store, consiste en lanzar trozos de chatarra y cobre a Monchines, nunca les matas, se lo quedan todo.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:36 +0000", "from_user": "muhhkayla", "from_user_id": 277254493, "from_user_id_str": "277254493", "from_user_name": "mdapj.", "geo": null, "id": 148837402226606080, "id_str": "148837402226606081", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1672620818/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672620818/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Angry birds stresses me out when I can't beat the level.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:33 +0000", "from_user": "Johnhvt", "from_user_id": 116142671, "from_user_id_str": "116142671", "from_user_name": "John Otterspeer", "geo": null, "id": 148837387873697800, "id_str": "148837387873697792", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691432971/Hollywood__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691432971/Hollywood__normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Ik ga Angry Birds spelen, reageert laat x.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:25 +0000", "from_user": "Tee_2EXCLUSIVE", "from_user_id": 299978644, "from_user_id_str": "299978644", "from_user_name": "Tee\\u2665 \\n", "geo": null, "id": 148837354688360450, "id_str": "148837354688360448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700671083/ColorTouch-1324235970711_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700671083/ColorTouch-1324235970711_normal.jpeg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Angry birds>>>>", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:25 +0000", "from_user": "JMacGroup", "from_user_id": 83028562, "from_user_id_str": "83028562", "from_user_name": "James Mac McPartland", "geo": null, "id": 148837354218598400, "id_str": "148837354218598400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1520798919/Screen_shot_2011-08-30_at_9.56.45_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1520798919/Screen_shot_2011-08-30_at_9.56.45_AM_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Are you an angry birds fan? What video games can teach us about our #motivation at work http://t.co/SFZnRNCT #productivity", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:25 +0000", "from_user": "EdwardBibbey", "from_user_id": 391870389, "from_user_id_str": "391870389", "from_user_name": "Edward Bibbey", "geo": null, "id": 148837353681715200, "id_str": "148837353681715200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @UberSurge1: I liked a @YouTube video http://t.co/BObJUEBm @NoelGallagher High Flying Birds - AKA... What A Life!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:23 +0000", "from_user": "NottyChrissy", "from_user_id": 14343127, "from_user_id_str": "14343127", "from_user_name": " Chrissy ", "geo": null, "id": 148837347830677500, "id_str": "148837347830677504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693374960/205B9120-5E64-4DCD-A69C-DC6298682904_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693374960/205B9120-5E64-4DCD-A69C-DC6298682904_normal", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "My hatred of birds definitely extends to flamingos. The physics of those things creeps me out.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:23 +0000", "from_user": "Kha_DeDe", "from_user_id": 241709518, "from_user_id_str": "241709518", "from_user_name": "khadeja anthony", "geo": null, "id": 148837346836619260, "id_str": "148837346836619264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700833235/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700833235/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "When I cant get passed a level on angry birds <<<", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:22 +0000", "from_user": "Magalywbdq", "from_user_id": 426261624, "from_user_id_str": "426261624", "from_user_name": "Magaly Lankford", "geo": null, "id": 148837344055787520, "id_str": "148837344055787520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668796259/LLCM-0607_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668796259/LLCM-0607_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@tommykurniaji Ya have to try Pigeon Palooza (the next angry birds)- it is live in Android Mktplce - will be in App Store next week.", "to_user": "tommykurniaji", "to_user_id": 99939909, "to_user_id_str": "99939909", "to_user_name": "Tommy Tri Kurniaji", "in_reply_to_status_id": 148809330563629060, "in_reply_to_status_id_str": "148809330563629056"}, +{"created_at": "Mon, 19 Dec 2011 18:49:20 +0000", "from_user": "MCkaploow", "from_user_id": 431977551, "from_user_id_str": "431977551", "from_user_name": "MCkaploow", "geo": null, "id": 148837335440699400, "id_str": "148837335440699392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699437132/300447_243272062391440_100001259449422_762895_1648754432_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699437132/300447_243272062391440_100001259449422_762895_1648754432_n_normal.jpg", "source": "<a href="http://angrybirdstweets.com" rel="nofollow">Angry Birds Tweets</a>", "text": "just unlocked the angry birds seasons twitter levels, http://t.co/IQatfitE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:18 +0000", "from_user": "RaynDaddi", "from_user_id": 220602304, "from_user_id_str": "220602304", "from_user_name": "Rayn Daddi\\u2122", "geo": null, "id": 148837327031119870, "id_str": "148837327031119873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1608123233/HWN5YSuO_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608123233/HWN5YSuO_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Chief_Marley why do birds song so gay, & lovers await the break of day, why do fools fall in love", "to_user": "Chief_Marley", "to_user_id": 69393903, "to_user_id_str": "69393903", "to_user_name": "\\u2714 Verified Chiefer ", "in_reply_to_status_id": 148837128887992320, "in_reply_to_status_id_str": "148837128887992320"}, +{"created_at": "Mon, 19 Dec 2011 18:49:18 +0000", "from_user": "eBC_Pets_NE", "from_user_id": 126784945, "from_user_id_str": "126784945", "from_user_name": "eBC Pets Northeast", "geo": null, "id": 148837324980109300, "id_str": "148837324980109312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/786618773/eBayClassifiedsWeb_73x73_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/786618773/eBayClassifiedsWeb_73x73_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Pittsburgh: bird cage *NEW* - $75 (Uniontown) http://t.co/HnkPwAPg #eBC #Pets", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:17 +0000", "from_user": "BrinAllDay", "from_user_id": 39073155, "from_user_id_str": "39073155", "from_user_name": "Matt Brindisi", "geo": null, "id": 148837320555102200, "id_str": "148837320555102208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1231267903/19637_1243403528800_1340700006_30704208_6631096_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1231267903/19637_1243403528800_1340700006_30704208_6631096_n_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "This week is for the birds. Get me to Christmas", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:15 +0000", "from_user": "AnessaVayRose", "from_user_id": 279835376, "from_user_id_str": "279835376", "from_user_name": "vanessa rose", "geo": null, "id": 148837314460786700, "id_str": "148837314460786690", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694099303/nessie_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694099303/nessie_1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @MayBachMims: Dad: A bird told me you are doing drugs..... Me: You're talking with birds and I'm the one doing drugs?!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:14 +0000", "from_user": "TheTeflonJon_40", "from_user_id": 438475276, "from_user_id_str": "438475276", "from_user_name": "Jonathan Joseph", "geo": null, "id": 148837310815944700, "id_str": "148837310815944705", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696732690/JJ_TWITTER_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696732690/JJ_TWITTER_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@ChristinaDelano BIRDS DON'T PLAY TAG ON THE HIGHWAYS!", "to_user": "ChristinaDelano", "to_user_id": 403705318, "to_user_id_str": "403705318", "to_user_name": "Christina Delano", "in_reply_to_status_id": 148798340597948400, "in_reply_to_status_id_str": "148798340597948416"}, +{"created_at": "Mon, 19 Dec 2011 18:49:14 +0000", "from_user": "tkcapri", "from_user_id": 38818552, "from_user_id_str": "38818552", "from_user_name": "Chong Tai Khoon", "geo": null, "id": 148837308358082560, "id_str": "148837308358082560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1081727402/bffa49cd-70c5-4c1c-99f0-91075605339f_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1081727402/bffa49cd-70c5-4c1c-99f0-91075605339f_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Vote for me and you could win an Angry Birds Plush collection! http://t.co/p8EWOMp2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:13 +0000", "from_user": "paintbygretzky", "from_user_id": 98942966, "from_user_id_str": "98942966", "from_user_name": "Greta Hansen", "geo": null, "id": 148837306567114750, "id_str": "148837306567114752", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/619670492/Gretzky_painting_4-09_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/619670492/Gretzky_painting_4-09_sm_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Marsh Birds Fridge Magnet... http://t.co/1lGQ9iio", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:11 +0000", "from_user": "renatdashkin", "from_user_id": 300212555, "from_user_id_str": "300212555", "from_user_name": "Renat Dashkin", "geo": null, "id": 148837295049555970, "id_str": "148837295049555968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697954115/______normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697954115/______normal.jpg", "source": "<a href="http://vk.com" rel="nofollow">vk.com</a>", "text": "angry birds chrome :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:08 +0000", "from_user": "Flight_326", "from_user_id": 38104398, "from_user_id_str": "38104398", "from_user_name": "C.J.N d-_-b \\u266A \\u266B \\u266C ", "geo": null, "id": 148837286098903040, "id_str": "148837286098903040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662715882/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662715882/image_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @ThsWht_iCallHer: Birds of a feather flock together. Hoes on the same shit chase after the same dick.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:04 +0000", "from_user": "Miss_BWilliams", "from_user_id": 269582752, "from_user_id_str": "269582752", "from_user_name": "Briana Williams \\uE003", "geo": null, "id": 148837269401387000, "id_str": "148837269401387008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1613017092/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1613017092/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Mann, these cramps is for the birds \\uD83D\\uDC4E\\u274C\\uD83D\\uDE37", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:01 +0000", "from_user": "Based_Dan", "from_user_id": 244736851, "from_user_id_str": "244736851", "from_user_name": "Danny M.", "geo": null, "id": 148837254515785730, "id_str": "148837254515785728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1667366799/37723_1510076387862_1112936546_1442805_6126195_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667366799/37723_1510076387862_1112936546_1442805_6126195_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "i dont hunt birds but ill shoot you in yo mohawk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:00 +0000", "from_user": "natigori", "from_user_id": 54798348, "from_user_id_str": "54798348", "from_user_name": "Natalia Gori", "geo": null, "id": 148837249511981060, "id_str": "148837249511981056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1024401008/26590_10150176835545425_625250424_11614944_8070636_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1024401008/26590_10150176835545425_625250424_11614944_8070636_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Up with the birds \\u2600", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:00 +0000", "from_user": "Shark_DIVA", "from_user_id": 95887680, "from_user_id_str": "95887680", "from_user_name": "IrishaShurubova", "geo": null, "id": 148837249419722750, "id_str": "148837249419722753", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1484474033/IMG_3693__________normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1484474033/IMG_3693__________normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I favorited a @YouTube video http://t.co/DpzrgkaI Angry Birds Nail Tutorial", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:59 +0000", "from_user": "Shark_DIVA", "from_user_id": 95887680, "from_user_id_str": "95887680", "from_user_name": "IrishaShurubova", "geo": null, "id": 148837246353674240, "id_str": "148837246353674240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1484474033/IMG_3693__________normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1484474033/IMG_3693__________normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube video http://t.co/DpzrgkaI Angry Birds Nail Tutorial", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:57 +0000", "from_user": "King_Muh", "from_user_id": 343865825, "from_user_id_str": "343865825", "from_user_name": "Muhsin Abdullah", "geo": null, "id": 148837236379619330, "id_str": "148837236379619328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1465340966/148855_167538526598906_100000282782688_478628_8341211_n_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1465340966/148855_167538526598906_100000282782688_478628_8341211_n_1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@youngdour101 lol its the truth though. these birds go on here talkin all this super fly shit knowin they catch the jitney 2 work everyday!!", "to_user": "youngdour101", "to_user_id": 278358371, "to_user_id_str": "278358371", "to_user_name": "YoungDour", "in_reply_to_status_id": 148836870120419330, "in_reply_to_status_id_str": "148836870120419329"}, +{"created_at": "Mon, 19 Dec 2011 18:48:56 +0000", "from_user": "Dreaded_L10", "from_user_id": 426690731, "from_user_id_str": "426690731", "from_user_name": "L L Coolin..", "geo": null, "id": 148837234148245500, "id_str": "148837234148245504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694822191/5s1t2jcp_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694822191/5s1t2jcp_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "All dat bullshit fr da birds, n she ws pigeontoed.. #weezy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:53 +0000", "from_user": "KenderlynYasnel", "from_user_id": 119781487, "from_user_id_str": "119781487", "from_user_name": "Kenderlyn.", "geo": null, "id": 148837223092068350, "id_str": "148837223092068352", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1640958796/cfvghbjnfc__11__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640958796/cfvghbjnfc__11__normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "sii*-* RT @FuckYeahJoose: Descargaste el seasons? RT @KenderlynYasnel: Jugar\\u00E9 angry birds mientras pelissia ora por mi.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:51 +0000", "from_user": "AKACharlieB", "from_user_id": 25904977, "from_user_id_str": "25904977", "from_user_name": "Sharlynn Jeffery ", "geo": null, "id": 148837212677615600, "id_str": "148837212677615616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1122330231/IMG00022_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1122330231/IMG00022_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Going fishing today!!! And I just gave my lunch to birds. Hoopla!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:43 +0000", "from_user": "morsey91", "from_user_id": 187590322, "from_user_id_str": "187590322", "from_user_name": "Dan Morse", "geo": null, "id": 148837178686976000, "id_str": "148837178686976002", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691559295/ken-bates-sells-leeds-united_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691559295/ken-bates-sells-leeds-united_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "sick of fake fit birds following me on here! Stop getting my hopes up #Bellends", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:41 +0000", "from_user": "FuckYeahJoose", "from_user_id": 101394524, "from_user_id_str": "101394524", "from_user_name": "Joose.", "geo": null, "id": 148837169476276220, "id_str": "148837169476276224", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698995552/Sony_DigitaCamera_171211_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698995552/Sony_DigitaCamera_171211_normal.JPG", "source": "<a href="http://yfrog.com" rel="nofollow">Yfrog</a>", "text": "Descargaste el seasons? RT @KenderlynYasnel: Jugar\\u00E9 angry birds mientras pelissia ora por mi.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:40 +0000", "from_user": "Pinky_Dip", "from_user_id": 42314190, "from_user_id_str": "42314190", "from_user_name": "M.Priscilla *", "geo": null, "id": 148837168301875200, "id_str": "148837168301875201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701341640/qvBCLERk_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701341640/qvBCLERk_normal", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @_ashleymarieeee: - all that bullshit is for the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:37 +0000", "from_user": "ethicalifa", "from_user_id": 27850638, "from_user_id_str": "27850638", "from_user_name": "ethical partnership", "geo": null, "id": 148837155937071100, "id_str": "148837155937071107", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1657377053/my_photos_in_case_you_want_some_of_them_006_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657377053/my_photos_in_case_you_want_some_of_them_006_normal.JPG", "source": "<a href="http://www.independent.co.uk/" rel="nofollow">The Independent</a>", "text": "The world's most threatened birds set up new nest in Gloucestershire http://t.co/mnMTVxMa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:36 +0000", "from_user": "Arceliapty", "from_user_id": 440226728, "from_user_id_str": "440226728", "from_user_name": "Arcelia Golob", "geo": null, "id": 148837148144050180, "id_str": "148837148144050178", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700609583/large_RZRSBZHBASCF_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700609583/large_RZRSBZHBASCF_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Rare Birds of the World (First Edition With Dust Jacket): http://t.co/GoyqD29b", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:35 +0000", "from_user": "ImThatDude_Nick", "from_user_id": 235311185, "from_user_id_str": "235311185", "from_user_name": "\\u24D3\\u24D4\\u24D2 \\u30C4 XOXO", "geo": null, "id": 148837145895899140, "id_str": "148837145895899136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1682362431/Manila_tmp0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682362431/Manila_tmp0_normal.jpg", "source": "<a href="http://www.htc.com" rel="nofollow">HTC Peep</a>", "text": "Goodmorning early birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:32 +0000", "from_user": "FireZenk", "from_user_id": 54642878, "from_user_id_str": "54642878", "from_user_name": "Jorge Garrido Oval", "geo": null, "id": 148837134378340350, "id_str": "148837134378340352", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1582980212/414759598_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1582980212/414759598_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Angry Birds y las torres gemelas http://t.co/sfP7UOL9 v\\u00EDa @cuantocabron juas que bestia xDD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:32 +0000", "from_user": "On3ClassyChick", "from_user_id": 320447932, "from_user_id_str": "320447932", "from_user_name": "VICTORIA C. OUTLEY", "geo": null, "id": 148837133648543740, "id_str": "148837133648543745", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1660074465/13_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660074465/13_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @ThsWht_iCallHer: Birds of a feather flock together. Hoes on the same shit chase after the same dick.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:29 +0000", "from_user": "kaioticmodel7", "from_user_id": 338185786, "from_user_id_str": "338185786", "from_user_name": "Kailey Marie", "geo": +{"coordinates": [43.2153,-75.4552], "type": "Point"}, "id": 148837121405362180, "id_str": "148837121405362176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1688086960/149015_1750628246000_1247675789_31960703_5841030_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688086960/149015_1750628246000_1247675789_31960703_5841030_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@irishlove212 I agree..and I keep coming with different kinds of birds lol", "to_user": "irishlove212", "to_user_id": 368109366, "to_user_id_str": "368109366", "to_user_name": "liz finley", "in_reply_to_status_id": 148836759537598460, "in_reply_to_status_id_str": "148836759537598464"}, +{"created_at": "Mon, 19 Dec 2011 18:48:29 +0000", "from_user": "Elenorus", "from_user_id": 388986457, "from_user_id_str": "388986457", "from_user_name": "Eleanor Booton", "geo": null, "id": 148837120256118800, "id_str": "148837120256118784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://angrybirdstweets.com" rel="nofollow">Angry Birds Tweets</a>", "text": "Just unlocked the angry birds seasons twitter levels, http://t.co/bvOFZ3ur", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:29 +0000", "from_user": "DaaiTheo", "from_user_id": 49032666, "from_user_id_str": "49032666", "from_user_name": "Theo Van Rooyen", "geo": null, "id": 148837119304007680, "id_str": "148837119304007681", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1414766731/243202_137298153011744_113638838711009_246659_79213_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1414766731/243202_137298153011744_113638838711009_246659_79213_o_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "Birds on a wall... http://t.co/voDdogaS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:28 +0000", "from_user": "Misztitiz", "from_user_id": 38918312, "from_user_id_str": "38918312", "from_user_name": "Frikii :)", "geo": null, "id": 148837116284121100, "id_str": "148837116284121088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1650292500/Misztitiz_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650292500/Misztitiz_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "I don't fucks with bitchs in Danbury for a reason don't face me no nuttin birds I swear", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:24 +0000", "from_user": "emblaney", "from_user_id": 36692469, "from_user_id_str": "36692469", "from_user_name": "Emmy ", "geo": null, "id": 148837101151068160, "id_str": "148837101151068160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689350636/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689350636/profile_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "This shit is for theee BIRDS!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:23 +0000", "from_user": "ItsBeauty_Bitch", "from_user_id": 333093967, "from_user_id_str": "333093967", "from_user_name": "\\uE329J A S M I N E : )\\uE314", "geo": null, "id": 148837096482803700, "id_str": "148837096482803712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702597952/jasmine_13_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702597952/jasmine_13_normal", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @ThsWht_iCallHer: Birds of a feather flock together. Hoes on the same shit chase after the same dick.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:19 +0000", "from_user": "alberto_03_", "from_user_id": 299037720, "from_user_id_str": "299037720", "from_user_name": "Alberto Valdi", "geo": null, "id": 148837079063867400, "id_str": "148837079063867393", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1673914161/homer_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673914161/homer_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @valladolor: \"Angry Birds Las Delicias\" en tu App Store, consiste en lanzar trozos de chatarra y cobre a Monchines, nunca les matas, se lo quedan todo.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:18 +0000", "from_user": "EricaSmith46", "from_user_id": 401157467, "from_user_id_str": "401157467", "from_user_name": "Erica Smith", "geo": null, "id": 148837075481919500, "id_str": "148837075481919488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687602913/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687602913/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Caroline: Flamingos aren't animals they're birds! #wow @CarolineWeaver4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:17 +0000", "from_user": "KenderlynYasnel", "from_user_id": 119781487, "from_user_id_str": "119781487", "from_user_name": "Kenderlyn.", "geo": null, "id": 148837069681205250, "id_str": "148837069681205248", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1640958796/cfvghbjnfc__11__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640958796/cfvghbjnfc__11__normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Jugar\\u00E9 angry birds mientras pelissia ora por mi.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:15 +0000", "from_user": "RawPureTalent", "from_user_id": 259966889, "from_user_id_str": "259966889", "from_user_name": "Raw ", "geo": null, "id": 148837061934317570, "id_str": "148837061934317568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701660541/H517P8Yy_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701660541/H517P8Yy_normal", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @EEEEZZEEE: #SHOUTOUT to the birds who fuck and blow niggas just to get in the club for free. #FYI girls were free all night... But u knew that tho..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:15 +0000", "from_user": "UberSurge1", "from_user_id": 391279883, "from_user_id_str": "391279883", "from_user_name": "UberSurgeClothing", "geo": null, "id": 148837060390817800, "id_str": "148837060390817792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1589228996/UBS2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1589228996/UBS2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I liked a @YouTube video http://t.co/BObJUEBm @NoelGallagher High Flying Birds - AKA... What A Life!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:15 +0000", "from_user": "dat_longharold", "from_user_id": 95726808, "from_user_id_str": "95726808", "from_user_name": "ron-al-do", "geo": null, "id": 148837060134961150, "id_str": "148837060134961152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700415408/76LhX88J_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700415408/76LhX88J_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Angry birds > angry frogs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:13 +0000", "from_user": "xxTmGgxx", "from_user_id": 440263496, "from_user_id_str": "440263496", "from_user_name": "tatyana martinez", "geo": null, "id": 148837051977056260, "id_str": "148837051977056256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702604121/VKK3eJN9_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702604121/VKK3eJN9_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Woah! My mom plays angry birds now!? That game is dead to me all of a sudden..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:12 +0000", "from_user": "LeslieRamirezM", "from_user_id": 297124466, "from_user_id_str": "297124466", "from_user_name": "Leslie Ramirez", "geo": null, "id": 148837049556934660, "id_str": "148837049556934656", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695784420/389873_151712468265766_100002810427939_160844_2081342597_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695784420/389873_151712468265766_100002810427939_160844_2081342597_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Angry Birds navide\\u00F1o esta lento:(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:11 +0000", "from_user": "Ciroc_Alexander", "from_user_id": 65870195, "from_user_id_str": "65870195", "from_user_name": "Retro Kicks Jones", "geo": null, "id": 148837044955791360, "id_str": "148837044955791360", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683495637/Ciroc_Alexander_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683495637/Ciroc_Alexander_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", "text": "#NP Slangin' Birds- 2Chainz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:11 +0000", "from_user": "E_smaLLsz", "from_user_id": 69202081, "from_user_id_str": "69202081", "from_user_name": "Erica SmaLLsz", "geo": null, "id": 148837043399700480, "id_str": "148837043399700480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686124985/IMAG0014-1-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686124985/IMAG0014-1-1_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "LMAO OH RT @EEEEZZEEE #SHOUTOUT to the birds who fuck and blow niggas just to get in the club for free. #FYI girls were free all night...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:10 +0000", "from_user": "Mauradmv", "from_user_id": 426260348, "from_user_id_str": "426260348", "from_user_name": "Maura Loepp", "geo": null, "id": 148837042783129600, "id_str": "148837042783129601", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668792271/LLCM-4565_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668792271/LLCM-4565_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Me_And_My_Pros Ya have to go get Pigeon Palooza (the next angry birds)- it's avail in Android Mktplce - will be in App Store next week.", "to_user": "Me_And_My_Pros", "to_user_id": 321470818, "to_user_id_str": "321470818", "to_user_name": "#Free B #R.I.P. Kev", "in_reply_to_status_id": 148826782882201600, "in_reply_to_status_id_str": "148826782882201601"}, +{"created_at": "Mon, 19 Dec 2011 18:48:10 +0000", "from_user": "katolds", "from_user_id": 201925204, "from_user_id_str": "201925204", "from_user_name": "Kathleen Olds", "geo": null, "id": 148837041533227000, "id_str": "148837041533227008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1145076370/IMG_0477-1_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1145076370/IMG_0477-1_normal.JPG", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "Birds are desperately trying to get into the attic lately. Wonder if that means we'll finally get some winter weather soon.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:10 +0000", "from_user": "SheIsMona", "from_user_id": 30944153, "from_user_id_str": "30944153", "from_user_name": "M\\u00F3nica", "geo": null, "id": 148837041487101950, "id_str": "148837041487101952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698192247/IMG00192_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698192247/IMG00192_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Pinches Angry Birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:09 +0000", "from_user": "racingheartsx", "from_user_id": 314102114, "from_user_id_str": "314102114", "from_user_name": "rachel elizabeth.", "geo": null, "id": 148837037011767300, "id_str": "148837037011767297", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693031992/03402684-ee1e-44cf-a771-44bf16849722_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693031992/03402684-ee1e-44cf-a771-44bf16849722_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/Vg4j07LA pleeease let this be under the christmas tree on sunday <3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:05 +0000", "from_user": "TasteMy_Polo", "from_user_id": 363205189, "from_user_id_str": "363205189", "from_user_name": "StilLmakinUsayMyName", "geo": null, "id": 148837020511383550, "id_str": "148837020511383552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694444075/20111210234600_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694444075/20111210234600_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @PrettiFlow: My mother always said birds of a feather flock together. Not my cup of tea .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:04 +0000", "from_user": "DingDong_TLC", "from_user_id": 246098855, "from_user_id_str": "246098855", "from_user_name": "Terry Conerly", "geo": null, "id": 148837013880193020, "id_str": "148837013880193024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697789762/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697789762/image_normal.jpg", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "So I fuckin hate angry birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:00 +0000", "from_user": "ToToSaud19", "from_user_id": 363044916, "from_user_id_str": "363044916", "from_user_name": "\\u0627\\u0644\\u0623\\u0637\\u0640\\u0653\\u0644\\u0627\\u0644\\u064F \\u273F", "geo": null, "id": 148836999191740400, "id_str": "148836999191740416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1631929361/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631929361/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @Engliiiiiish: Birds: \\u0637\\u064A\\u0648\\u0631\\n\\nPigeon---\\u067E\\u064A\\u0686\\u064F\\u0646\\u0652---\\u062D\\u0645\\u0627\\u0645\\n\\nParrot---\\u067E\\u064E\\u0627\\u0631\\u064F\\u062A\\u0652---\\u0628\\u0628\\u063A\\u0627\\u0621\\n\\nPeacock--\\u067E\\u064A\\u0643\\u064F\\u0643\\u0652---\\u0637\\u0627\\u0648\\u0648\\u0633", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:00 +0000", "from_user": "Karol_killzzz", "from_user_id": 348129017, "from_user_id_str": "348129017", "from_user_name": "Karolynn Valdez\\uE13C", "geo": null, "id": 148836998986207230, "id_str": "148836998986207232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689440006/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689440006/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "We killed two birds with one stone #heckyes lol @Helen_Cee45", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:54 +0000", "from_user": "TCRED93581", "from_user_id": 379809451, "from_user_id_str": "379809451", "from_user_name": "TCRED United", "geo": null, "id": 148836971895197700, "id_str": "148836971895197697", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1559385048/ATT0001514151513_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1559385048/ATT0001514151513_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Make turbines safer for birds. But is there really such a thing?... http://t.co/ThII1n47", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:47:53 +0000", "from_user": "SheGetSoFly", "from_user_id": 123336796, "from_user_id_str": "123336796", "from_user_name": "It's Hamidaa. \\u2655", "geo": null, "id": 148836969609306100, "id_str": "148836969609306112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1677948757/Yuuupp_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677948757/Yuuupp_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @ThsWht_iCallHer: Birds of a feather flock together. Hoes on the same shit chase after the same dick.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:52 +0000", "from_user": "nickacousins", "from_user_id": 23784354, "from_user_id_str": "23784354", "from_user_name": "nick cousins", "geo": null, "id": 148836965859602430, "id_str": "148836965859602432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/186316596/nav_jobs_char_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/186316596/nav_jobs_char_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@adamrubins I think someone needs to have a quick word with you about the birds and bees my friend", "to_user": "adamrubins", "to_user_id": 21204951, "to_user_id_str": "21204951", "to_user_name": "Adam", "in_reply_to_status_id": 148798042454241280, "in_reply_to_status_id_str": "148798042454241281"}, +{"created_at": "Mon, 19 Dec 2011 18:47:51 +0000", "from_user": "TR_Home_Garden", "from_user_id": 151479202, "from_user_id_str": "151479202", "from_user_name": "Home & Garden News", "geo": null, "id": 148836961505914880, "id_str": "148836961505914880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/956247465/n54499120758_7522_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/956247465/n54499120758_7522_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Gardener: Feed birds in winter to guarantee a show http://t.co/MUzC3pdA #homegarden", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:50 +0000", "from_user": "belajarpsikolog", "from_user_id": 190535653, "from_user_id_str": "190535653", "from_user_name": "Belajar Psikologi", "geo": null, "id": 148836955587747840, "id_str": "148836955587747841", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1123461292/header_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1123461292/header_normal.jpg", "source": "<a href="http://www.blogtopsites.com" rel="nofollow">BlogTopSites - Blog Connect</a>", "text": "Video: The Interactive Angry Birds Christmas Lights Display http://t.co/LAqxdGGv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:47 +0000", "from_user": "Geralyndcf", "from_user_id": 426262070, "from_user_id_str": "426262070", "from_user_name": "Geralyn Aron", "geo": null, "id": 148836946146365440, "id_str": "148836946146365440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668797133/LLCM-1691_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668797133/LLCM-1691_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@mjlovely99 Go play Pigeon Palooza (the next angry birds)- it's live in Android Mktplce - will be in App Store next week.", "to_user": "mjlovely99", "to_user_id": 356719201, "to_user_id_str": "356719201", "to_user_name": "Mary-jayne", "in_reply_to_status_id": 148835862845730800, "in_reply_to_status_id_str": "148835862845730816"}, +{"created_at": "Mon, 19 Dec 2011 18:47:46 +0000", "from_user": "unadevotchka", "from_user_id": 14406356, "from_user_id_str": "14406356", "from_user_name": "Katy Callie", "geo": null, "id": 148836941163544580, "id_str": "148836941163544576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1670873432/Photo_on_2011-08-30_at_08.29_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670873432/Photo_on_2011-08-30_at_08.29_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Oh Jesus H. Christ, there's some kind of crazy bird orgy going on outside my window. SHUT UP, BIRDS!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:45 +0000", "from_user": "Sandraduc", "from_user_id": 246306569, "from_user_id_str": "246306569", "from_user_name": "Sandrau", "geo": null, "id": 148836935878713340, "id_str": "148836935878713344", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1585273065/422102000_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585273065/422102000_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @valladolor: \"Angry Birds Las Delicias\" en tu App Store, consiste en lanzar trozos de chatarra y cobre a Monchines, nunca les matas, se lo quedan todo.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:34 +0000", "from_user": "bellaalysia", "from_user_id": 317343758, "from_user_id_str": "317343758", "from_user_name": "Alysia C.\\u2764", "geo": null, "id": 148836888969617400, "id_str": "148836888969617408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1658314909/Image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658314909/Image_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @FastCarVettie: Social web-site should be used for net working, having fun catching up w/ old friends etc. All that other drama is for the #birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:33 +0000", "from_user": "hajaratheninja", "from_user_id": 127565933, "from_user_id_str": "127565933", "from_user_name": "\\u306F\\u3058\\u3083\\u3089", "geo": null, "id": 148836886650159100, "id_str": "148836886650159104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1685603007/103_1798_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685603007/103_1798_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "np - TheWeeknd : the birds part 2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:32 +0000", "from_user": "txter1407", "from_user_id": 367292494, "from_user_id_str": "367292494", "from_user_name": "Sam", "geo": null, "id": 148836880333541380, "id_str": "148836880333541376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1676522956/IMG_1603_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676522956/IMG_1603_normal.JPG", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "These birds starred at me for an hour! \\uD83D\\uDC26 #thebirds! http://t.co/69zwUtOo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:32 +0000", "from_user": "ncuriel", "from_user_id": 14960984, "from_user_id_str": "14960984", "from_user_name": "Nora", "geo": null, "id": 148836879842807800, "id_str": "148836879842807808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1671601806/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671601806/image_normal.jpg", "source": "<a href="http://timely.is" rel="nofollow">Timely by Demandforce</a>", "text": "RT @audubonsociety: What happens after #xmasbirdcount counters send their tallies? Audubon's scentists get to work. http://t.co/ptfZ3lbq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:28 +0000", "from_user": "SBylev", "from_user_id": 332757235, "from_user_id_str": "332757235", "from_user_name": "\\u0421\\u0435\\u0440\\u0433\\u0435\\u0439 \\u0411\\u044B\\u043B\\u044C\\u0435\\u0432", "geo": null, "id": 148836864206442500, "id_str": "148836864206442496", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1641631297/3GSiMOgC_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641631297/3GSiMOgC_normal", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @yeleleo: \\u0422\\u0435\\u043C, \\u043A\\u0442\\u043E \\u043D\\u0435 \\u0443\\u043C\\u0435\\u0435\\u0442 \\u0438\\u0433\\u0440\\u0430\\u0442\\u044C \\u0432 Angry Birds. http://t.co/X5vXZaQl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:26 +0000", "from_user": "LunaPrat", "from_user_id": 28202439, "from_user_id_str": "28202439", "from_user_name": "Vanessa Prat", "geo": null, "id": 148836858267316220, "id_str": "148836858267316224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1684440875/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684440875/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@MelissaG84 also, steak, no chicken no turkey, no birds (they \"scratch\" for food, so we will be \"scrapping by\")", "to_user": "MelissaG84", "to_user_id": 330287876, "to_user_id_str": "330287876", "to_user_name": "Melissa Grant", "in_reply_to_status_id": 148836341914931200, "in_reply_to_status_id_str": "148836341914931200"}, +{"created_at": "Mon, 19 Dec 2011 18:47:20 +0000", "from_user": "ActuallyBig", "from_user_id": 210714634, "from_user_id_str": "210714634", "from_user_name": "Kelz", "geo": null, "id": 148836831377633280, "id_str": "148836831377633281", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1645306980/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645306980/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Walking the lake pulling tree watching ppl\\nDogs chase the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:18 +0000", "from_user": "aFletch_23", "from_user_id": 316724078, "from_user_id_str": "316724078", "from_user_name": "Allen Fletcher", "geo": null, "id": 148836823320367100, "id_str": "148836823320367104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702609930/PART951321323662987_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702609930/PART951321323662987_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @CHS_footballKJ: 1 hand on my money 1 hand on my buddie that ak 47 make ya neighborhood love me bullets like birds yu can hear dem bitches humming #WAYNE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:17 +0000", "from_user": "GlendaTow1456", "from_user_id": 343902494, "from_user_id_str": "343902494", "from_user_name": "Glenda Tow", "geo": null, "id": 148836819432251400, "id_str": "148836819432251392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702446904/9571086375182952a438236108b240327459l_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702446904/9571086375182952a438236108b240327459l_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Why is politics for the birds? Because politiciands always parrot the same old lines!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:16 +0000", "from_user": "abc4", "from_user_id": 11321162, "from_user_id_str": "11321162", "from_user_name": "a-dum carlson", "geo": null, "id": 148836816529784830, "id_str": "148836816529784832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1633051510/x2_938100e_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633051510/x2_938100e_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@SmellyDanielly just imagining an origami remake of the birds", "to_user": "SmellyDanielly", "to_user_id": 19406467, "to_user_id_str": "19406467", "to_user_name": "Danielle Ciavarro", "in_reply_to_status_id": 148835600840130560, "in_reply_to_status_id_str": "148835600840130560"}, +{"created_at": "Mon, 19 Dec 2011 18:47:16 +0000", "from_user": "EEEEZZEEE", "from_user_id": 333682834, "from_user_id_str": "333682834", "from_user_name": "Benjamin Rackin", "geo": null, "id": 148836814260670460, "id_str": "148836814260670464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1641736103/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641736103/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#SHOUTOUT to the birds who fuck and blow niggas just to get in the club for free. #FYI girls were free all night... But u knew that tho..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:14 +0000", "from_user": "lovecmose", "from_user_id": 150013248, "from_user_id_str": "150013248", "from_user_name": "crystal mosley", "geo": null, "id": 148836805179998200, "id_str": "148836805179998209", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1659265046/lovecmose_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659265046/lovecmose_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Oh lord, now she's playing angry birds!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:13 +0000", "from_user": "Kellyexfs", "from_user_id": 431688975, "from_user_id_str": "431688975", "from_user_name": "Kellye Heinly", "geo": null, "id": 148836800633376770, "id_str": "148836800633376768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681005016/large_017_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681005016/large_017_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Schneider Cuckoo Clock-Feeding Birds and Music, Model #MT 6106/10: Chalet cuckoo clock with feeding birds that r... http://t.co/RThVjY49", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:11 +0000", "from_user": "PrettiFlow", "from_user_id": 223412436, "from_user_id_str": "223412436", "from_user_name": "PrettiMaccin", "geo": null, "id": 148836794912346100, "id_str": "148836794912346112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696002839/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696002839/profile_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "My mother always said birds of a feather flock together. Not my cup of tea .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:10 +0000", "from_user": "SundialCharters", "from_user_id": 272032080, "from_user_id_str": "272032080", "from_user_name": "Captain Rene", "geo": null, "id": 148836787517800450, "id_str": "148836787517800448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1291505521/head_01_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1291505521/head_01_normal.gif", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Regular guide and customer, check out her new book Diana Churchill Birds \\nhttp://t.co/GbdfJRZ2 I am... http://t.co/VsJRATrL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:08 +0000", "from_user": "MissKoolAid", "from_user_id": 17172741, "from_user_id_str": "17172741", "from_user_name": "MissKoolAid", "geo": null, "id": 148836781029195780, "id_str": "148836781029195776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/596989115/4153706444_95d9ac5bd5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/596989115/4153706444_95d9ac5bd5_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Hundreds of birds just flew by my window... Magical!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:00 +0000", "from_user": "Naomi_kibey", "from_user_id": 254218188, "from_user_id_str": "254218188", "from_user_name": "Ki", "geo": null, "id": 148836745394389000, "id_str": "148836745394388992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676490089/o66eeY0b_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676490089/o66eeY0b_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "@ButtaBaybeee That shit for the birds :/", "to_user": "ButtaBaybeee", "to_user_id": 227005385, "to_user_id_str": "227005385", "to_user_name": "PrettyGirlButta ", "in_reply_to_status_id": 148836349351432200, "in_reply_to_status_id_str": "148836349351432193"}, +{"created_at": "Mon, 19 Dec 2011 18:46:59 +0000", "from_user": "Particiamso", "from_user_id": 426263721, "from_user_id_str": "426263721", "from_user_name": "Particia Brun", "geo": null, "id": 148836744685559800, "id_str": "148836744685559808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668801396/LLCM-4961_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668801396/LLCM-4961_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@agm_andy Have to try Pigeon Palooza (the next angry birds)- it's for sale in Android Mktplce - will be in ITunes next week.", "to_user": "agm_andy", "to_user_id": 253687684, "to_user_id_str": "253687684", "to_user_name": "Andrea Garc\\u00EDa Montes", "in_reply_to_status_id": 148822179180576770, "in_reply_to_status_id_str": "148822179180576768"}, +{"created_at": "Mon, 19 Dec 2011 18:46:59 +0000", "from_user": "jesperbeunk", "from_user_id": 337280391, "from_user_id_str": "337280391", "from_user_name": "Jesper onbekend", "geo": null, "id": 148836744408731650, "id_str": "148836744408731648", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1675744953/330965492_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675744953/330965492_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "angry birds doen", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:57 +0000", "from_user": "Gabrieleqpf", "from_user_id": 430062538, "from_user_id_str": "430062538", "from_user_name": "Gabriele Cluff", "geo": null, "id": 148836734828941300, "id_str": "148836734828941312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1677551512/zculpy21ur_109638363-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677551512/zculpy21ur_109638363-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Black Forest Cuckoo Clock - Animated Cuckoo Clock, Model #1206: Model #1206 Feeding birds with grapes leaves, 12... http://t.co/QaWU9ApL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:55 +0000", "from_user": "natalieroska", "from_user_id": 124766846, "from_user_id_str": "124766846", "from_user_name": "Natalie Roska", "geo": null, "id": 148836726197075970, "id_str": "148836726197075968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1673973874/31_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673973874/31_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "all my birds are sooooooo hot!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:54 +0000", "from_user": "BenSlowLoris", "from_user_id": 407545194, "from_user_id_str": "407545194", "from_user_name": "Ng Khong Zien", "geo": null, "id": 148836721046466560, "id_str": "148836721046466560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1632676509/SlowLoris_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632676509/SlowLoris_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@amandafrancis37 that must be boring right? Seeing how the birds hitting objects that's it..", "to_user": "amandafrancis37", "to_user_id": 96078615, "to_user_id_str": "96078615", "to_user_name": "Amanda Francis \\uC544\\uB9CC\\uB2E4 ", "in_reply_to_status_id": 148836070652514300, "in_reply_to_status_id_str": "148836070652514305"}, +{"created_at": "Mon, 19 Dec 2011 18:46:47 +0000", "from_user": "_Sarah27", "from_user_id": 149694697, "from_user_id_str": "149694697", "from_user_name": "\\u2665 Sarah! \\u20AA \\u00F8 lll \\u00B7o.", "geo": null, "id": 148836694517493760, "id_str": "148836694517493761", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1609574234/938e7d0f-cd9b-4788-bcb4-5a57b2e55646_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609574234/938e7d0f-cd9b-4788-bcb4-5a57b2e55646_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Our life is just like Angry Birds. When you fail, there's always some pigs laughing at you...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:41 +0000", "from_user": "nivi_ms", "from_user_id": 94432064, "from_user_id_str": "94432064", "from_user_name": "Nivi Morales", "geo": null, "id": 148836667657170940, "id_str": "148836667657170944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1454204224/IMG_0343_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1454204224/IMG_0343_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@rythie @phuunet @robday @jdrydn there will be #cake of some description for the early birds ;) I'll be bringing it @leampack", "to_user": "rythie", "to_user_id": 14181142, "to_user_id_str": "14181142", "to_user_name": "Richard Cunningham", "in_reply_to_status_id": 148832406898606080, "in_reply_to_status_id_str": "148832406898606080"}, +{"created_at": "Mon, 19 Dec 2011 18:46:40 +0000", "from_user": "Shizueskep", "from_user_id": 426262224, "from_user_id_str": "426262224", "from_user_name": "Shizue Lautz", "geo": null, "id": 148836664041685000, "id_str": "148836664041684992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668797298/LLCM-4396_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668797298/LLCM-4396_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MusikBotTeamspe Hey, get Pigeon Palooza (the next angry birds)- it's in Android Mktplce - will be in ITunes next week.", "to_user": "MusikBotTeamspe", "to_user_id": 430937809, "to_user_id_str": "430937809", "to_user_name": "Musik Bot Teamspeak ", "in_reply_to_status_id": 148835749226229760, "in_reply_to_status_id_str": "148835749226229760"}, +{"created_at": "Mon, 19 Dec 2011 18:46:40 +0000", "from_user": "Magalywbdq", "from_user_id": 426261624, "from_user_id_str": "426261624", "from_user_name": "Magaly Lankford", "geo": null, "id": 148836664020713470, "id_str": "148836664020713473", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668796259/LLCM-0607_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668796259/LLCM-0607_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@_iAMyungBUTdope Hey, play Pigeon Palooza (the next angry birds)- it is launched in Android Mktplce - will be in ITunes in a few days.", "to_user": "_iAMyungBUTdope", "to_user_id": 163985111, "to_user_id_str": "163985111", "to_user_name": "dree, TheCreator \\u30C4 \\u2122", "in_reply_to_status_id": 148809405754908670, "in_reply_to_status_id_str": "148809405754908673"}, +{"created_at": "Mon, 19 Dec 2011 18:46:40 +0000", "from_user": "SelinahRaine", "from_user_id": 436915495, "from_user_id_str": "436915495", "from_user_name": "Selinah Newton", "geo": null, "id": 148836661743198200, "id_str": "148836661743198208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693335879/image_normal.jpg", "profile_image_url_https": null, "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Gabe: I hope you get stuck on a level of Angry Birds.\\nMe: I hope you fall off a cliff and fall forever\\nGabe: Thats a little extreme\\nMe: no(:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:38 +0000", "from_user": "MAdlY_UNiiQUE", "from_user_id": 305159899, "from_user_id_str": "305159899", "from_user_name": "Chazah Carter", "geo": null, "id": 148836653639806980, "id_str": "148836653639806976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1570372053/100201_1631_00__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1570372053/100201_1631_00__normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Somebody...anybody...help me get passed dis level in angry birds :(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:38 +0000", "from_user": "Gay210BigC", "from_user_id": 398271071, "from_user_id_str": "398271071", "from_user_name": "Gay Bigc", "geo": null, "id": 148836653325226000, "id_str": "148836653325225985", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1606563662/KOM-1224_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606563662/KOM-1224_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Birds of the Kruger National Park: http://t.co/niLGz9iT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:37 +0000", "from_user": "Pansyrap", "from_user_id": 426265387, "from_user_id_str": "426265387", "from_user_name": "Pansy Rickey", "geo": null, "id": 148836649797816320, "id_str": "148836649797816320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668806319/LLCM-4703_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668806319/LLCM-4703_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@DJFRANK_WHITE Ya should get Pigeon Palooza (the next angry birds)- it is in Android Mktplce - should be in ITunes in a few days.", "to_user": "DJFRANK_WHITE", "to_user_id": 182239856, "to_user_id_str": "182239856", "to_user_name": "FRANK WHITE", "in_reply_to_status_id": 148828429893107700, "in_reply_to_status_id_str": "148828429893107713"}, +{"created_at": "Mon, 19 Dec 2011 18:46:37 +0000", "from_user": "NibbleHacker", "from_user_id": 247908327, "from_user_id_str": "247908327", "from_user_name": "Nibble Hacker", "geo": null, "id": 148836649730711550, "id_str": "148836649730711552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1235846105/avatar_Martien_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1235846105/avatar_Martien_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "DIY Angry Birds Christmas Display is an Interactive Game [Video]: From the same guy that brought you the playabl... http://t.co/smsVeysQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:35 +0000", "from_user": "minamaya13", "from_user_id": 54182296, "from_user_id_str": "54182296", "from_user_name": "OriginalBADYOGAKITTY", "geo": null, "id": 148836640910098430, "id_str": "148836640910098432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1440650149/moon_cat_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1440650149/moon_cat_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "GREAT NEWS! #UK Most under-threat birds took up residence in Wildfowl & Wetlands Trust. Fewer than 100 pairs left\\nhttp://t.co/LljlV4B3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:32 +0000", "from_user": "lewis_aldridge", "from_user_id": 306701389, "from_user_id_str": "306701389", "from_user_name": "Lewis Aldridge", "geo": null, "id": 148836630931841020, "id_str": "148836630931841024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1660800523/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660800523/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@ryan_scott99 bye bye draco malfoy! He gets no birds anyway hes just a playa hater", "to_user": "ryan_scott99", "to_user_id": 262630415, "to_user_id_str": "262630415", "to_user_name": "Ryan Alexander", "in_reply_to_status_id": 148834670866481150, "in_reply_to_status_id_str": "148834670866481152"}, +{"created_at": "Mon, 19 Dec 2011 18:46:29 +0000", "from_user": "_OhreallyNow", "from_user_id": 81666737, "from_user_id_str": "81666737", "from_user_name": "Tyesha Reid \\u2665", "geo": null, "id": 148836616444723200, "id_str": "148836616444723200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1694043342/IMG_20111122_120105_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694043342/IMG_20111122_120105_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @DntBlowMy_Tweet: RT @JehmarNOtJamar: this being home shit is #dead and for the birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:29 +0000", "from_user": "UrBoss_Chick", "from_user_id": 226932484, "from_user_id_str": "226932484", "from_user_name": "da_CEO911", "geo": null, "id": 148836616268554240, "id_str": "148836616268554240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699206874/7Y3uq17M_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699206874/7Y3uq17M_normal", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @NotoriousLIZ: 2011 was a bad year for birds............The feather earrings trend.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:27 +0000", "from_user": "derekmahoney299", "from_user_id": 411121530, "from_user_id_str": "411121530", "from_user_name": "Derek Mahoney", "geo": null, "id": 148836607292747780, "id_str": "148836607292747777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668263564/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668263564/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@NormallyWasted pretty nice bull. Flawk of birds led right to it http://t.co/kjqAW1rs", "to_user": "NormallyWasted", "to_user_id": 315011156, "to_user_id_str": "315011156", "to_user_name": "Norm Bettencourt"}, +{"created_at": "Mon, 19 Dec 2011 18:46:25 +0000", "from_user": "Chungodp", "from_user_id": 426261931, "from_user_id_str": "426261931", "from_user_name": "Chung Knee", "geo": null, "id": 148836600430866430, "id_str": "148836600430866432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668796811/LLCM-5119_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668796811/LLCM-5119_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@tia_shiree Ya should check out Pigeon Palooza (the next angry birds)- it's in Android Mktplce - should be in ITunes in a few days.", "to_user": "tia_shiree", "to_user_id": 157012549, "to_user_id_str": "157012549", "to_user_name": "Tia Powell", "in_reply_to_status_id": 148821468296388600, "in_reply_to_status_id_str": "148821468296388609"}, +{"created_at": "Mon, 19 Dec 2011 18:46:22 +0000", "from_user": "cazygirl8", "from_user_id": 156348688, "from_user_id_str": "156348688", "from_user_name": "Calsie Burnside", "geo": null, "id": 148836587357208580, "id_str": "148836587357208576", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/996347381/29091_1282307468996_1569385604_30609343_3951953_s_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/996347381/29091_1282307468996_1569385604_30609343_3951953_s_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Photoset: fat-birds: http://t.co/wfnW0wIl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:21 +0000", "from_user": "emmymaeisaak", "from_user_id": 271262177, "from_user_id_str": "271262177", "from_user_name": "Emily Isaak", "geo": null, "id": 148836584660283400, "id_str": "148836584660283392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693701068/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693701068/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Why do birds suddenly appear every time you are near!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:21 +0000", "from_user": "dedeskaka", "from_user_id": 129143305, "from_user_id_str": "129143305", "from_user_name": "Deska Sulistia!", "geo": null, "id": 148836581921402880, "id_str": "148836581921402880", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701051218/dedeskaka_737341081782223144_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701051218/dedeskaka_737341081782223144_normal.jpg", "source": "<a href="http://twittanic.com" rel="nofollow">Twittanic\\u2122</a>", "text": "\\u00F4neis Malditos? Por que n\\u00E3o Angry Birds Malditos? #BigFollow: http://t.co/oK1Sb9Uw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:19 +0000", "from_user": "nauorneva", "from_user_id": 37707222, "from_user_id_str": "37707222", "from_user_name": "Nau or Neva!", "geo": null, "id": 148836575571230720, "id_str": "148836575571230721", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1159515338/ene_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1159515338/ene_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "Hungry birds http://t.co/H1vZNY75", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:18 +0000", "from_user": "FastCarVettie", "from_user_id": 280803411, "from_user_id_str": "280803411", "from_user_name": "Corvette Courtney", "geo": null, "id": 148836570101850100, "id_str": "148836570101850112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1637898390/503_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637898390/503_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Social web-site should be used for net working, having fun catching up w/ old friends etc. All that other drama is for the #birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:17 +0000", "from_user": "JUSTONEAMERICAN", "from_user_id": 38067927, "from_user_id_str": "38067927", "from_user_name": "ONEAMERICANLOOKING@U", "geo": null, "id": 148836565429399550, "id_str": "148836565429399553", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1273593109/spiralwound_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273593109/spiralwound_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "THE MOST BANNED VID ON YOUTUBE EVER! Strange bird formations\\birds dying all over earth PT. 6-9 http://t.co/8yui0EmG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:16 +0000", "from_user": "Phill022", "from_user_id": 299286193, "from_user_id_str": "299286193", "from_user_name": "Phill 02", "geo": null, "id": 148836564905103360, "id_str": "148836564905103360", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1423661716/Untitled_2_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1423661716/Untitled_2_normal.gif", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "Wood Birds\\thttp://t.co/ov33Mcoq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:15 +0000", "from_user": "Q103", "from_user_id": 18491062, "from_user_id_str": "18491062", "from_user_name": "Q103", "geo": null, "id": 148836559918071800, "id_str": "148836559918071810", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/69065069/Q103_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/69065069/Q103_normal.png", "source": "<a href="http://www.securenetsystems.net" rel="nofollow">Securenet Systems Radio Playlist Update</a>", "text": "THREE LITTLE BIRDS - BOB MARLEY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:15 +0000", "from_user": "CHS_footballKJ", "from_user_id": 326426979, "from_user_id_str": "326426979", "from_user_name": "Khalyll johnson", "geo": null, "id": 148836556772343800, "id_str": "148836556772343808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677941540/photo_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677941540/photo_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "1 hand on my money 1 hand on my buddie that ak 47 make ya neighborhood love me bullets like birds yu can hear dem bitches humming #WAYNE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:12 +0000", "from_user": "asegPL", "from_user_id": 319644456, "from_user_id_str": "319644456", "from_user_name": "Arek S.", "geo": null, "id": 148836546945093630, "id_str": "148836546945093632", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1590194037/IMG_8555_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1590194037/IMG_8555_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@Wooks_PL W Angry Birds nie grales?! TO PO CO CI SMARTFON?! =]", "to_user": "Wooks_PL", "to_user_id": 222460913, "to_user_id_str": "222460913", "to_user_name": "\\u0141ukasz Depko", "in_reply_to_status_id": 148836409829105660, "in_reply_to_status_id_str": "148836409829105665"}, +{"created_at": "Mon, 19 Dec 2011 18:46:11 +0000", "from_user": "randi_bugga", "from_user_id": 65846014, "from_user_id_str": "65846014", "from_user_name": "Jack Blackheart", "geo": null, "id": 148836542843076600, "id_str": "148836542843076609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1144027592/738e809c-1114-484b-9742-68e529028707_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1144027592/738e809c-1114-484b-9742-68e529028707_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Angry Birds maker now aims at Asian IPO http://t.co/ZQLTneKv via @regvulture", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:10 +0000", "from_user": "LiquorSexWeed", "from_user_id": 174607314, "from_user_id_str": "174607314", "from_user_name": "Prima Donna", "geo": null, "id": 148836536312528900, "id_str": "148836536312528896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1659931246/379734_111470165631741_100003062738346_78837_1144958359_n_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659931246/379734_111470165631741_100003062738346_78837_1144958359_n_normal.jpeg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "np: Gone, What You Need, Coming Down, The Birds (pt1 &2)- @theweekndxo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:03 +0000", "from_user": "socialwebinnova", "from_user_id": 318131732, "from_user_id_str": "318131732", "from_user_name": "SocialWebInnovation", "geo": null, "id": 148836510240735230, "id_str": "148836510240735232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1403545589/logo2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1403545589/logo2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "@simplyzesty These Festive Angry Birds Decorations Are Really An Fun Interactive... http://t.co/83povpNW #social #innovation", "to_user": "SimplyZesty", "to_user_id": 20886486, "to_user_id_str": "20886486", "to_user_name": "SimplyZesty"}, +{"created_at": "Mon, 19 Dec 2011 18:46:02 +0000", "from_user": "G_AlMohannadi", "from_user_id": 306279702, "from_user_id_str": "306279702", "from_user_name": "Ghada AlMohannadi", "geo": null, "id": 148836504603602940, "id_str": "148836504603602945", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702602190/Screen_Shot_2011-12-19_at_9.47.30_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702602190/Screen_Shot_2011-12-19_at_9.47.30_PM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "'No one is free, even the birds are chained to the sky.'", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:01 +0000", "from_user": "MistyKrissy", "from_user_id": 113392602, "from_user_id_str": "113392602", "from_user_name": "Kristen Hall\\u2122", "geo": null, "id": 148836500186992640, "id_str": "148836500186992640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1615641855/MistyKrissy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615641855/MistyKrissy_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @DoItLike_BErNie: I wonder how imma explain the birds and bees to my kids....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:00 +0000", "from_user": "NeverGaveA_Fuck", "from_user_id": 260958511, "from_user_id_str": "260958511", "from_user_name": "\\u00A9a\\u03A0ad\\u00A1\\u00A1a\\u03A0 ' K\\u00A1\\u03A0G", "geo": null, "id": 148836496684757000, "id_str": "148836496684756992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1549234540/K8tgw6jT_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1549234540/K8tgw6jT_normal", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "alright . bet ! && yu knoo dhey got angry birds at walmark. its a actual game.RT @TankDaGamer: @NeverGaveA_Fuck lmfao lemme see wat I can do", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:54 +0000", "from_user": "FuckingJuu", "from_user_id": 219798577, "from_user_id_str": "219798577", "from_user_name": "Jussara Prado", "geo": null, "id": 148836470277414900, "id_str": "148836470277414914", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1676457440/9d5c57dbc60327329_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676457440/9d5c57dbc60327329_normal.jpg", "source": "<a href="http://m.dabr.co.uk" rel="nofollow">Dabr</a>", "text": "Chega de Angry Birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:53 +0000", "from_user": "Alexiskds", "from_user_id": 401997454, "from_user_id_str": "401997454", "from_user_name": "Alex", "geo": null, "id": 148836467605643260, "id_str": "148836467605643266", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://www.ajaymatharu.com/" rel="nofollow">Tweet Old Post</a>", "text": "Tips For Attracting Birds To Your Back Yard http://t.co/Gd8DFJCO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:53 +0000", "from_user": "TomAtkinson23", "from_user_id": 321518283, "from_user_id_str": "321518283", "from_user_name": " Tom Atkinson", "geo": null, "id": 148836466162810880, "id_str": "148836466162810880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695406177/384880_2256472215152_1348765027_1856773_2110334398_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695406177/384880_2256472215152_1348765027_1856773_2110334398_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @jSimpson333: Fat birds only upload photos of their top half #conartists", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:52 +0000", "from_user": "xCindyfoREVer", "from_user_id": 322547266, "from_user_id_str": "322547266", "from_user_name": "Cindy ", "geo": null, "id": 148836460643098620, "id_str": "148836460643098625", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691326797/tumblr_lroxjtlwuq1qervbxo1_400_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691326797/tumblr_lroxjtlwuq1qervbxo1_400_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "@spiegelrand gare foto |:'3 angry birds ;'D", "to_user": "spiegelrand", "to_user_id": 370509736, "to_user_id_str": "370509736", "to_user_name": "ALEXEJ \\u2665 ZOEMAY :D", "in_reply_to_status_id": 148836182883704830, "in_reply_to_status_id_str": "148836182883704832"}, +{"created_at": "Mon, 19 Dec 2011 18:45:51 +0000", "from_user": "ccvancouver", "from_user_id": 42976344, "from_user_id_str": "42976344", "from_user_name": "Columbia College", "geo": null, "id": 148836459523227650, "id_str": "148836459523227648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/235171048/Dragon_Boat_Sleeves_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/235171048/Dragon_Boat_Sleeves_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Cool video. The Interactive Angry Birds Christmas Light Game\\nhttp://t.co/9ceIYkow", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:50 +0000", "from_user": "Datniggabizzy", "from_user_id": 367075812, "from_user_id_str": "367075812", "from_user_name": "Craig ", "geo": null, "id": 148836452258680830, "id_str": "148836452258680833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696429917/s8wuffUX_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696429917/s8wuffUX_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @SayWatCmarie88: Im addicted to angry birds seasons", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:48 +0000", "from_user": "TayThaTruth_", "from_user_id": 238782093, "from_user_id_str": "238782093", "from_user_name": "Taylor Simone", "geo": null, "id": 148836446432792580, "id_str": "148836446432792577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694020506/IMAG0053_wonder_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694020506/IMAG0053_wonder_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "that shit it for the birds...she was pigeon toed.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:42 +0000", "from_user": "harvardjames", "from_user_id": 85362602, "from_user_id_str": "85362602", "from_user_name": "James Harvard", "geo": null, "id": 148836418779742200, "id_str": "148836418779742208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1495426815/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1495426815/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "'Today's prize is perfect for anyone who want to keep nocturnal predatory birds warm on a cold night: it's this heated owl-rail.' #ISIHAC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:41 +0000", "from_user": "channyRICH", "from_user_id": 133986190, "from_user_id_str": "133986190", "from_user_name": "Chantice Richardson", "geo": null, "id": 148836416590319600, "id_str": "148836416590319616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688368713/p20111211-233705_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688368713/p20111211-233705_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "playing angry birds , this shit addicting !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:38 +0000", "from_user": "Matt_Omega_", "from_user_id": 41843733, "from_user_id_str": "41843733", "from_user_name": "muhanguzi omega", "geo": null, "id": 148836401633443840, "id_str": "148836401633443840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701921338/IMG00569-20111219-1343_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701921338/IMG00569-20111219-1343_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@Kanyenyeri_ go drink..then go home..see, two birds with one shot", "to_user": "Kanyenyeri_", "to_user_id": 224786739, "to_user_id_str": "224786739", "to_user_name": "Michele Munyabagisha", "in_reply_to_status_id": 148831038209134600, "in_reply_to_status_id_str": "148831038209134592"}, +{"created_at": "Mon, 19 Dec 2011 18:45:37 +0000", "from_user": "dakoksnr", "from_user_id": 237169341, "from_user_id_str": "237169341", "from_user_name": "OluwaDakok Snr", "geo": null, "id": 148836399540486140, "id_str": "148836399540486144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695279892/IMG01745-20111215-1027_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695279892/IMG01745-20111215-1027_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Birdz as in?\"@drewhizzy: @dakoksnr attention, how many birds did u kill today?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:36 +0000", "from_user": "lewis_aldridge", "from_user_id": 306701389, "from_user_id_str": "306701389", "from_user_name": "Lewis Aldridge", "geo": null, "id": 148836396457660400, "id_str": "148836396457660416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1660800523/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660800523/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I bet @chrisbrown loves listening to take you down whilst smashing birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:36 +0000", "from_user": "_av0cado", "from_user_id": 106180985, "from_user_id_str": "106180985", "from_user_name": "Carly Hamilton", "geo": null, "id": 148836393853009920, "id_str": "148836393853009920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1627861118/yay_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627861118/yay_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "theres a lyer bird outside my window, theyre the birds that imitate all other birds, its amazing!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:36 +0000", "from_user": "karinasoclassy", "from_user_id": 333578699, "from_user_id_str": "333578699", "from_user_name": "Karina Teresa", "geo": null, "id": 148836393706201100, "id_str": "148836393706201088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1689509152/nnj8b_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689509152/nnj8b_normal.jpg", "source": "<a href="http://stone.com/Twittelator" rel="nofollow">Twittelator</a>", "text": "\"!!!Birds of a feather Biatch!!!\" /via @CallmeHAIRSHOW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:33 +0000", "from_user": "FRD_KREW", "from_user_id": 306342571, "from_user_id_str": "306342571", "from_user_name": "FRD KREW ", "geo": null, "id": 148836383878950900, "id_str": "148836383878950913", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1371270478/FRD_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1371270478/FRD_logo_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Photo: gamefreaksnz: http://t.co/9KtC2iH2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:33 +0000", "from_user": "CaptinCrunch_", "from_user_id": 180419526, "from_user_id_str": "180419526", "from_user_name": "Captain Amb\\uE335", "geo": null, "id": 148836383795056640, "id_str": "148836383795056641", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686050002/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686050002/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I bet you Amb won't sleep cause imma put the heat to ya beak you birds like tweet tweet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:32 +0000", "from_user": "HoMoMuSicJuNkiE", "from_user_id": 47436685, "from_user_id_str": "47436685", "from_user_name": "I RoQ R@yn3bOws", "geo": null, "id": 148836379898544130, "id_str": "148836379898544128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692427504/befunky_artwork_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692427504/befunky_artwork_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Smgdh....birds of a feather...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:31 +0000", "from_user": "SYLVIABUBBLE", "from_user_id": 258613309, "from_user_id_str": "258613309", "from_user_name": "SYLVIA ", "geo": null, "id": 148836374802468860, "id_str": "148836374802468864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1638021376/302533_290440094312085_121638317858931_993804_202961968_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638021376/302533_290440094312085_121638317858931_993804_202961968_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Story of my life bro RT @JORDANNFLEMING: Fucking birds flying around islington station almost flew into my head -___-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:30 +0000", "from_user": "Pretty95Pink", "from_user_id": 291526231, "from_user_id_str": "291526231", "from_user_name": "Markia Marie", "geo": null, "id": 148836371270860800, "id_str": "148836371270860800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693035012/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693035012/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@ImPayneYOLO yea you right. So let's stop the arguing end this on a good note b/c this shit for the birds :)", "to_user": "ImPayneYOLO", "to_user_id": 274736123, "to_user_id_str": "274736123", "to_user_name": "\\u2714 Verified ", "in_reply_to_status_id": 148835692393414660, "in_reply_to_status_id_str": "148835692393414656"}, +{"created_at": "Mon, 19 Dec 2011 18:45:30 +0000", "from_user": "_tombarker", "from_user_id": 20074818, "from_user_id_str": "20074818", "from_user_name": "Tom Barker", "geo": null, "id": 148836369899327500, "id_str": "148836369899327488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1673745114/Picture_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673745114/Picture_2_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "And that fact I've met the 2 chinese birds once I can't imagine them coming in at 4am...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:30 +0000", "from_user": "ImInMonmouth", "from_user_id": 65162017, "from_user_id_str": "65162017", "from_user_name": "I'm In Monmouth", "geo": null, "id": 148836369735745540, "id_str": "148836369735745539", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1388928458/Button_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1388928458/Button_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#socialmedia These Festive Angry Birds Decorations Are Really An Fun Interactive Game http://t.co/aTbkifz8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:25 +0000", "from_user": "TomRoche15", "from_user_id": 404313433, "from_user_id_str": "404313433", "from_user_name": "Tom Roche", "geo": null, "id": 148836347828899840, "id_str": "148836347828899840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1664715864/........_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664715864/........_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "On new years eve I might just take a loaf of bread to a pond and rave with the ducks, then I can go into 2012 surrounded by birds #Player", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:23 +0000", "from_user": "Kareendmmg", "from_user_id": 426262455, "from_user_id_str": "426262455", "from_user_name": "Kareen Sicari", "geo": null, "id": 148836341323538430, "id_str": "148836341323538432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668798646/LLCM-2128_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668798646/LLCM-2128_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@rubencej Go get Pigeon Palooza (the next angry birds)- it's in Android Mktplce - should be in App Store soon.", "to_user": "rubencej", "to_user_id": 269837410, "to_user_id_str": "269837410", "to_user_name": "Rub\\u00E9n Ceja", "in_reply_to_status_id": 148830028728250370, "in_reply_to_status_id_str": "148830028728250368"}, +{"created_at": "Mon, 19 Dec 2011 18:45:22 +0000", "from_user": "RaulCortejoso", "from_user_id": 147369999, "from_user_id_str": "147369999", "from_user_name": "Ra\\u00FAl Cortejoso L\\u00F3pez", "geo": null, "id": 148836335594127360, "id_str": "148836335594127360", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1640071848/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640071848/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @valladolor: \"Angry Birds Las Delicias\" en tu App Store, consiste en lanzar trozos de chatarra y cobre a Monchines, nunca les matas, se lo quedan todo.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:22 +0000", "from_user": "manunaslandia", "from_user_id": 82147820, "from_user_id_str": "82147820", "from_user_name": "Emanuelle", "geo": null, "id": 148836335187275780, "id_str": "148836335187275776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702612860/a_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702612860/a_normal.JPG", "source": "<a href="http://twitpic.com" rel="nofollow">Twitpic</a>", "text": "angry birds http://t.co/QpaRtQvR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:22 +0000", "from_user": "bonesizzle", "from_user_id": 428368210, "from_user_id_str": "428368210", "from_user_name": "chris webster", "geo": null, "id": 148836334335827970, "id_str": "148836334335827968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701034897/IMG00144-20110426-1848_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701034897/IMG00144-20110426-1848_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Just illin listenin to \"the birds\" evil ebenezer. Man CoastPeakStudios is dope!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:21 +0000", "from_user": "OJPhilly", "from_user_id": 222161827, "from_user_id_str": "222161827", "from_user_name": "OJ Philly", "geo": null, "id": 148836332679069700, "id_str": "148836332679069696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694971079/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694971079/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@BlitzChics The Birds waited until now to rally\\u2026Please bring back the NY Sack Exchange from the 80s for this one. GET SHE-LI!!!", "to_user": "BlitzChics", "to_user_id": 137027648, "to_user_id_str": "137027648", "to_user_name": "Shawn", "in_reply_to_status_id": 148834256796389380, "in_reply_to_status_id_str": "148834256796389376"}, +{"created_at": "Mon, 19 Dec 2011 18:45:17 +0000", "from_user": "nialldevittSMI", "from_user_id": 113141293, "from_user_id_str": "113141293", "from_user_name": "Niall Devitt", "geo": null, "id": 148836315864117250, "id_str": "148836315864117248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1369997226/Niall_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1369997226/Niall_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @dmigroup These Festive Angry Birds Decorations Are Really An Fun Interactive Game http://t.co/EEao2q2K", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:16 +0000", "from_user": "Mylifeofart1", "from_user_id": 315315075, "from_user_id_str": "315315075", "from_user_name": "MyLifeofArt", "geo": null, "id": 148836310327623680, "id_str": "148836310327623680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1391507497/Blueprint_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1391507497/Blueprint_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "This is a #Photo of the #Sky full of #Seagulls-#Birds\\thttp://t.co/g0Ulq28G", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:16 +0000", "from_user": "Ontal92", "from_user_id": 225540330, "from_user_id_str": "225540330", "from_user_name": "Daniel Ontalvilla", "geo": null, "id": 148836309648150530, "id_str": "148836309648150528", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1669366122/Manucho-avi_n-_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669366122/Manucho-avi_n-_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @valladolor: \"Angry Birds Las Delicias\" en tu App Store, consiste en lanzar trozos de chatarra y cobre a Monchines, nunca les matas, se lo quedan todo.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:14 +0000", "from_user": "HattieTigerBoom", "from_user_id": 20816263, "from_user_id_str": "20816263", "from_user_name": "Hattie Crocker", "geo": null, "id": 148836301871919100, "id_str": "148836301871919104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1629236940/185485_10100138537064408_199701172_51448162_138203_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629236940/185485_10100138537064408_199701172_51448162_138203_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @adamtmason: I was hoping for two birds with one stone when i saw Kaiser Chiefs trending underneath Kim Jong.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:13 +0000", "from_user": "N0RMALIDADES", "from_user_id": 303518822, "from_user_id_str": "303518822", "from_user_name": "NORMALIDADES", "geo": null, "id": 148836298256416770, "id_str": "148836298256416768", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1365216810/cats_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1365216810/cats_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "P\\u00F4neis Malditos? Por que n\\u00E3o Angry Birds Malditos? #BigFollow: http://t.co/q9c2h7GM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:11 +0000", "from_user": "bookcheapcruise", "from_user_id": 333123919, "from_user_id_str": "333123919", "from_user_name": "Best Cruise Deals", "geo": null, "id": 148836290467594240, "id_str": "148836290467594240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1436055145/cruise-twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1436055145/cruise-twitter_normal.png", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "Exotic Birds on remote island preservations. Book a cruise and see the world at it's best http://t.co/fV8hKMpX #birdwatchers @wefollow", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:09 +0000", "from_user": "ohjunkitsemily", "from_user_id": 25588544, "from_user_id_str": "25588544", "from_user_name": "Emily Rose", "geo": null, "id": 148836281860886530, "id_str": "148836281860886529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1676624409/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676624409/image_normal.jpg", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "I just finished all my levels in Angry Birds...#nowwhat?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:09 +0000", "from_user": "Snucumz", "from_user_id": 136750996, "from_user_id_str": "136750996", "from_user_name": "Kea ", "geo": null, "id": 148836281416290300, "id_str": "148836281416290305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693496908/Temba-20111204-00931_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693496908/Temba-20111204-00931_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Lol first time on Twitter today ... Now that is unusual .. Good evening twit birds \\u2665...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:08 +0000", "from_user": "LBiggane", "from_user_id": 430163508, "from_user_id_str": "430163508", "from_user_name": "LaurenBiggane", "geo": null, "id": 148836278283145200, "id_str": "148836278283145217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696389337/166949_2801364790998_1164925317_33134225_1722883347_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696389337/166949_2801364790998_1164925317_33134225_1722883347_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "There's so many birds and I'm just a little bug @KevinNegDB11", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:08 +0000", "from_user": "ThaWorst_Skinny", "from_user_id": 431969686, "from_user_id_str": "431969686", "from_user_name": "Quezzzzzzzzzzzzz;)", "geo": null, "id": 148836276584460300, "id_str": "148836276584460289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702347200/VgHq8GzQ_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702347200/VgHq8GzQ_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Incorrect verbs, irks my moms nerves shes a language teacher, who taught & song to birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:05 +0000", "from_user": "GrandeWish", "from_user_id": 282827297, "from_user_id_str": "282827297", "from_user_name": "se\\u00F1ora INCREIBLE", "geo": null, "id": 148836265276608500, "id_str": "148836265276608512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686144804/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686144804/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Latin_luver 4 calling birds:]", "to_user": "Latin_luver", "to_user_id": 303338210, "to_user_id_str": "303338210", "to_user_name": "Paul ", "in_reply_to_status_id": 148835297512275970, "in_reply_to_status_id_str": "148835297512275968"}, +{"created_at": "Mon, 19 Dec 2011 18:45:04 +0000", "from_user": "JustEstrell", "from_user_id": 274260445, "from_user_id_str": "274260445", "from_user_name": "Estrell Young ", "geo": null, "id": 148836262961352700, "id_str": "148836262961352704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1292140539/All_i_got_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1292140539/All_i_got_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster</a>", "text": "I ain't got nuffin against deaf people but long ass conversations w/ interpreters are 4 the birds! (I'm sorry sir cud u repeat that? Damn)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:04 +0000", "from_user": "Justbirds1", "from_user_id": 291680688, "from_user_id_str": "291680688", "from_user_name": "Bev", "geo": null, "id": 148836259991781380, "id_str": "148836259991781377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1335631073/5261855304_0f68f9ba91_m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335631073/5261855304_0f68f9ba91_m_normal.jpg", "source": "<a href="http://www.twaitter.com" rel="nofollow">Twaitter</a>", "text": "Whoosh! http://t.co/BhlVvwl1 #birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:45:04 +0000", "from_user": "Justbirds1", "from_user_id": 291680688, "from_user_id_str": "291680688", "from_user_name": "Bev", "geo": null, "id": 148836259991781380, "id_str": "148836259991781377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1335631073/5261855304_0f68f9ba91_m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335631073/5261855304_0f68f9ba91_m_normal.jpg", "source": "<a href="http://www.twaitter.com" rel="nofollow">Twaitter</a>", "text": "Whoosh! http://t.co/BhlVvwl1 #birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:03 +0000", "from_user": "csulfarro", "from_user_id": 17798577, "from_user_id_str": "17798577", "from_user_name": "Craig", "geo": null, "id": 148836256061722620, "id_str": "148836256061722625", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1361171381/IMG00171-20100223-2351_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1361171381/IMG00171-20100223-2351_normal.jpg", "source": "<a href="http://www.webstore.com/" rel="nofollow">Webstore.com</a>", "text": "I'm selling 'M.C. Escher iPad 2 Fabric Wrapped Case - Plane with Birds' Click to see http://t.co/Yy1Pr32H", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:01 +0000", "from_user": "ItsChemiztry", "from_user_id": 18756974, "from_user_id_str": "18756974", "from_user_name": "Greg", "geo": null, "id": 148836247643766800, "id_str": "148836247643766784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1560904738/checkin2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1560904738/checkin2_normal.jpg", "source": "<a href="http://www.handmark.com" rel="nofollow">TweetCaster for iOS</a>", "text": "RT @JasmineGiselle: Early birds gets the worm - second mouse gets the cheese!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:57 +0000", "from_user": "valladolor", "from_user_id": 288644954, "from_user_id_str": "288644954", "from_user_name": "Valladolor", "geo": null, "id": 148836233035005950, "id_str": "148836233035005952", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1655990465/rrrrrr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655990465/rrrrrr_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"Angry Birds Las Delicias\" en tu App Store, consiste en lanzar trozos de chatarra y cobre a Monchines, nunca les matas, se lo quedan todo.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:56 +0000", "from_user": "JaackieRamireez", "from_user_id": 412006936, "from_user_id_str": "412006936", "from_user_name": "\\u30B8\\u30E3\\u30C3\\u30AD\\u30FC (:", "geo": null, "id": 148836227506901000, "id_str": "148836227506900992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699532387/kMlkM9UJ_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699532387/kMlkM9UJ_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I deleted my Angry Birds app because I couldn't pass level 7 so I got mad. I'm a failure.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:56 +0000", "from_user": "HappyBeeDayProd", "from_user_id": 139911919, "from_user_id_str": "139911919", "from_user_name": "HappyBirthdayProdigy", "geo": null, "id": 148836227070705660, "id_str": "148836227070705664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698316586/JJlMzR3N_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698316586/JJlMzR3N_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "OH EM GEEEEE!!!! Angry Birds Fruit Gummies!.!!!? I'M BUYING EM ALL OFF THA SHELF!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:53 +0000", "from_user": "junialdi1", "from_user_id": 416117623, "from_user_id_str": "416117623", "from_user_name": "junialdi", "geo": null, "id": 148836213032357900, "id_str": "148836213032357889", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Permainan gue tuh RT @irmanovianti20: Point blankRT @GueMauTanya: Pilih (angry birds/ayo dance/mafia wars/point blank)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:48 +0000", "from_user": "jessiejayjay13", "from_user_id": 279897094, "from_user_id_str": "279897094", "from_user_name": "Jessica Johnson", "geo": null, "id": 148836193709203460, "id_str": "148836193709203457", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1584525279/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584525279/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "That one mothafuckin pig that always stays alive in Angry Birds. Ahhhhh! <<<<<<<<", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:42 +0000", "from_user": "eurooscar", "from_user_id": 46246482, "from_user_id_str": "46246482", "from_user_name": "euro oscar", "geo": null, "id": 148836169721987070, "id_str": "148836169721987072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1678709098/eurooscar22_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678709098/eurooscar22_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "224 #pics: #leo, #cheeta, #elephant, #monkey, rhino, #bear, zebra, #birds. http://t.co/tGFEIECd - - - #Cats (176 pics): http://t.co/41LOKGPc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:42 +0000", "from_user": "chavolo_7", "from_user_id": 402651999, "from_user_id_str": "402651999", "from_user_name": "Javier Mart\\u00EDn", "geo": null, "id": 148836167951974400, "id_str": "148836167951974400", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1617034973/3G4htMCX_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1617034973/3G4htMCX_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Oscar_delapisa tu sin el angry birds friki asqueroso!", "to_user": "Oscar_delapisa", "to_user_id": 268514741, "to_user_id_str": "268514741", "to_user_name": "\\u00D3scar de la Pisa ", "in_reply_to_status_id": 148831907390570500, "in_reply_to_status_id_str": "148831907390570496"}, +{"created_at": "Mon, 19 Dec 2011 18:44:39 +0000", "from_user": "TobeyGorilla", "from_user_id": 441060165, "from_user_id_str": "441060165", "from_user_name": "Tobey Monkey Monster", "geo": null, "id": 148836157571072000, "id_str": "148836157571072000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702565630/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702565630/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@tobeymonster WITH AFRICAN BIRDS", "to_user": "tobeymonster", "to_user_id": 227568015, "to_user_id_str": "227568015", "to_user_name": "Tobey | Lady Gaga"}, +{"created_at": "Mon, 19 Dec 2011 18:44:36 +0000", "from_user": "KymryGroup", "from_user_id": 171559621, "from_user_id_str": "171559621", "from_user_name": "MardiWelchDickinson", "geo": null, "id": 148836143503384580, "id_str": "148836143503384577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1386516178/K_Logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1386516178/K_Logo_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "NEW Article Chris Bosak wrote on Westport CT CBC Time to count the birds: Local birdwatchers tackle annual census. \\rhttp://t.co/a7kCOn2s", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:35 +0000", "from_user": "MardiWD", "from_user_id": 144162954, "from_user_id_str": "144162954", "from_user_name": "MardiDickinson", "geo": null, "id": 148836139967582200, "id_str": "148836139967582211", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1464602793/019O9214_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1464602793/019O9214_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "NEW Article Chris Bosak wrote on Westport CT CBC Time to count the birds: Local birdwatchers tackle annual census. \\rhttp://t.co/XXAABcFv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:27 +0000", "from_user": "lindseyp1998", "from_user_id": 163421998, "from_user_id_str": "163421998", "from_user_name": "Lindsey Paters", "geo": null, "id": 148836104471195650, "id_str": "148836104471195648", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1673337113/Omdat_het_kan_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673337113/Omdat_het_kan_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Angry birds aan het spelen :d", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:26 +0000", "from_user": "SayWatCmarie88", "from_user_id": 104700477, "from_user_id_str": "104700477", "from_user_name": " \\u2605\\u2665CMarie\\u2665\\u2605", "geo": null, "id": 148836100520153100, "id_str": "148836100520153088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681175209/Camera_Effects-1323285064143_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681175209/Camera_Effects-1323285064143_normal.jpeg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Im addicted to angry birds seasons", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:25 +0000", "from_user": "softmutt", "from_user_id": 28555016, "from_user_id_str": "28555016", "from_user_name": "Vanessa Morriss", "geo": null, "id": 148836098733375500, "id_str": "148836098733375488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685580703/a62af43c-f408-42cf-bdef-9ab9b88d4736_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685580703/a62af43c-f408-42cf-bdef-9ab9b88d4736_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@Placepot Yes, all bird feed has shot up in price. Peanuts in particular. Birds round here demand I feed 'em. #birds #rspb", "to_user": "Placepot", "to_user_id": 28132444, "to_user_id_str": "28132444", "to_user_name": "Wayne the Gardener", "in_reply_to_status_id": 148835051138842620, "in_reply_to_status_id_str": "148835051138842624"}, +{"created_at": "Mon, 19 Dec 2011 18:44:23 +0000", "from_user": "Rozaayyy_", "from_user_id": 309606037, "from_user_id_str": "309606037", "from_user_name": "S.T.E.P.H", "geo": null, "id": 148836086964174850, "id_str": "148836086964174848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687895547/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687895547/image_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", "text": "Miss me wit the bullshit..... I let dat shit fly wit the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:20 +0000", "from_user": "SoftyxGunz", "from_user_id": 441080396, "from_user_id_str": "441080396", "from_user_name": "Softyx Gunz", "geo": null, "id": 148836076260306940, "id_str": "148836076260306944", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702587545/384389_113231412127255_100003211911936_66687_1480263212_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702587545/384389_113231412127255_100003211911936_66687_1480263212_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "P\\u00F4neis Malditos? Por que n\\u00E3o Angry Birds Malditos? #MaisFollowers: http://t.co/5vl0Ddpm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:18 +0000", "from_user": "passionatebirdr", "from_user_id": 286818361, "from_user_id_str": "286818361", "from_user_name": "Bill Saur", "geo": null, "id": 148836066156220400, "id_str": "148836066156220416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1322694459/headshotWalgCrop2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1322694459/headshotWalgCrop2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Ivory-Billed Woodpecker, from \"Birds of America,\" 1829 \\u2666 Framed \\u2666 http://t.co/0x2h4FR7 #art #birds #giftideas", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:17 +0000", "from_user": "TexasEcoFlower", "from_user_id": 213065208, "from_user_id_str": "213065208", "from_user_name": "Cynthia Cable", "geo": null, "id": 148836062268112900, "id_str": "148836062268112897", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1162057944/000001742719XS_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1162057944/000001742719XS_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Bad (and good) news for Costa Rican farmers: A 10-year walking census of Costa Rican birds proves that intensive... http://t.co/NzQbzel4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:16 +0000", "from_user": "hkmart3", "from_user_id": 34178325, "from_user_id_str": "34178325", "from_user_name": "Kim Martin", "geo": null, "id": 148836060292591600, "id_str": "148836060292591618", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/180279784/HKMface_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/180279784/HKMface_normal.jpg", "source": "<a href="http://www.youversion.com" rel="nofollow">Bible</a>", "text": "7If you want to learn,\\n then go and ask\\n the wild animals and the birds,\\n \\n 8the flowers and the fish. \\n 9Any o\\u2026 http://t.co/aoWCYtzz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:16 +0000", "from_user": "Particiamso", "from_user_id": 426263721, "from_user_id_str": "426263721", "from_user_name": "Particia Brun", "geo": null, "id": 148836057968947200, "id_str": "148836057968947200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668801396/LLCM-4961_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668801396/LLCM-4961_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@TyranasourusTom Have to try out Pigeon Palooza (the next angry birds)- it's live in Android Mktplce - will be in App Store in a few days.", "to_user": "TyranasourusTom", "to_user_id": 346320012, "to_user_id_str": "346320012", "to_user_name": "Thomas Robinson", "in_reply_to_status_id": 148822231789735940, "in_reply_to_status_id_str": "148822231789735936"}, +{"created_at": "Mon, 19 Dec 2011 18:44:13 +0000", "from_user": "mworch", "from_user_id": 117620953, "from_user_id_str": "117620953", "from_user_name": "Matthias Worch", "geo": null, "id": 148836047214751740, "id_str": "148836047214751744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1661535356/mworch_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661535356/mworch_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@eingy We use a mixture of Angry Birds and Elmo's ABCs.", "to_user": "eingy", "to_user_id": 9819432, "to_user_id_str": "9819432", "to_user_name": "eingy", "in_reply_to_status_id": 148834696401399800, "in_reply_to_status_id_str": "148834696401399808"}, +{"created_at": "Mon, 19 Dec 2011 18:44:13 +0000", "from_user": "fabs_alverca", "from_user_id": 63546671, "from_user_id_str": "63546671", "from_user_name": "Fabricio Alverca", "geo": null, "id": 148836046669488130, "id_str": "148836046669488129", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1559419934/eu_2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1559419934/eu_2_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "vou jogar mais um pouquinho de angry birds ent\\u00E3o", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:12 +0000", "from_user": "truepyt", "from_user_id": 242986627, "from_user_id_str": "242986627", "from_user_name": "Inhale My Tweets ;)", "geo": null, "id": 148836044274544640, "id_str": "148836044274544641", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1684022825/meme_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684022825/meme_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Can't get pass this level in angry birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:12 +0000", "from_user": "MrKn0wItAll23", "from_user_id": 26766225, "from_user_id_str": "26766225", "from_user_name": "Cap'M", "geo": null, "id": 148836043364376580, "id_str": "148836043364376576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1569747331/296581_10150783340800527_646380526_20729233_4655722_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1569747331/296581_10150783340800527_646380526_20729233_4655722_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "Cold as shit out. Why are there birds out let alone BIRD SHIT on my window smdh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:12 +0000", "from_user": "TyloMonroe", "from_user_id": 249938852, "from_user_id_str": "249938852", "from_user_name": "Tylo Monroe", "geo": null, "id": 148836042630373380, "id_str": "148836042630373376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1683771292/vXn2GivH_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683771292/vXn2GivH_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "My moms been playing angry birds for days..ughhh.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:07 +0000", "from_user": "Eviahxa", "from_user_id": 440171846, "from_user_id_str": "440171846", "from_user_name": "Evia Antal", "geo": null, "id": 148836020866121730, "id_str": "148836020866121728", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700479650/large_KMRMBYREHLLTFBT_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700479650/large_KMRMBYREHLLTFBT_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Birds - Wild Turkey Gobbler - Tile Pen Holders-5 inch tile pen holder: Wild Turkey Gobbler Tile Pen Holder is me... http://t.co/oTxId1uv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:05 +0000", "from_user": "wildaboutsussex", "from_user_id": 74112925, "from_user_id_str": "74112925", "from_user_name": "Rob Yarham", "geo": null, "id": 148836013026967550, "id_str": "148836013026967552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696661331/e079cee7-3c17-47d9-bcc8-b488eda62605_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696661331/e079cee7-3c17-47d9-bcc8-b488eda62605_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @charliemoores: Can't yet find words to describe seeing 13 SpbSands at @WWTslimbridge today. Such perfect birds. Am working on it tho...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:01 +0000", "from_user": "ZoZo1704", "from_user_id": 375627050, "from_user_id_str": "375627050", "from_user_name": "Zoe Smith", "geo": null, "id": 148835997700984830, "id_str": "148835997700984832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670132087/me_and_scotttt_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670132087/me_and_scotttt_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "home alone, steps on very loud, playing angry birds - my definition of perfect!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:58 +0000", "from_user": "Pansyrap", "from_user_id": 426265387, "from_user_id_str": "426265387", "from_user_name": "Pansy Rickey", "geo": null, "id": 148835983494885380, "id_str": "148835983494885376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668806319/LLCM-4703_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668806319/LLCM-4703_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ShaRmdjn Hey, download Pigeon Palooza (the next angry birds)- it is live in Android Mktplce - will be in App Store in a few days.", "to_user": "ShaRmdjn", "to_user_id": 103707774, "to_user_id_str": "103707774", "to_user_name": "Shamim Rmdjn", "in_reply_to_status_id": 148828430870380540, "in_reply_to_status_id_str": "148828430870380544"}, +{"created_at": "Mon, 19 Dec 2011 18:43:57 +0000", "from_user": "amberemma1909", "from_user_id": 146931633, "from_user_id_str": "146931633", "from_user_name": "Amberr'E.. ", "geo": null, "id": 148835979174748160, "id_str": "148835979174748161", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702601127/Beemster-20111218-00485_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702601127/Beemster-20111218-00485_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Papa speelt angry birds op zijn maccie:$", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:56 +0000", "from_user": "semenov2020", "from_user_id": 152658078, "from_user_id_str": "152658078", "from_user_name": "Alexander Semenov", "geo": null, "id": 148835977580904450, "id_str": "148835977580904448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "Angry Birds officially coming in-store in Russia. Finally. Been a while.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:55 +0000", "from_user": "Kristen__Myers", "from_user_id": 341827056, "from_user_id_str": "341827056", "from_user_name": "Kristen Myers", "geo": null, "id": 148835970706444300, "id_str": "148835970706444288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699244112/111209-182252_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699244112/111209-182252_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Great.. my fear of birds Is getting bigger.. #letsnottalkaboutthis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:51 +0000", "from_user": "DauiCudi", "from_user_id": 89416696, "from_user_id_str": "89416696", "from_user_name": "Daui Bitature", "geo": null, "id": 148835954260582400, "id_str": "148835954260582400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1588959826/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1588959826/image_normal.jpg", "source": "<a href="http://messaging.nokia.com/site/main.do" rel="nofollow"> Ovi by Nokia </a>", "text": "I can bet the ipads the ntv news anchors have are off or on pause after playing angry birds!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:50 +0000", "from_user": "csulfarro", "from_user_id": 17798577, "from_user_id_str": "17798577", "from_user_name": "Craig", "geo": null, "id": 148835952347971600, "id_str": "148835952347971585", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1361171381/IMG00171-20100223-2351_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1361171381/IMG00171-20100223-2351_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Check Out M.C. Escher iPad 2 Fabric Wrapped Case - Plane with Birds at http://t.co/YGFKzeNi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:50 +0000", "from_user": "juliito77", "from_user_id": 280224612, "from_user_id_str": "280224612", "from_user_name": "Julio Poll\\u00E1n", "geo": null, "id": 148835951047749630, "id_str": "148835951047749633", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1661458028/Sin_t_tulo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661458028/Sin_t_tulo_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Jugando al angry birds con @JesusNikki y @RaulGonzalez", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:50 +0000", "from_user": "AlexG3293", "from_user_id": 116567114, "from_user_id_str": "116567114", "from_user_name": "Alex Giordano", "geo": null, "id": 148835949248393200, "id_str": "148835949248393217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1571022725/saraaah_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1571022725/saraaah_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "My father is ADDICTED to Angry Birds #surprisingchangessincethanksgiving #thingsIneverthoughtIdsay", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:50 +0000", "from_user": "zoombiejoker", "from_user_id": 46970934, "from_user_id_str": "46970934", "from_user_name": "joker do batman", "geo": null, "id": 148835948698935300, "id_str": "148835948698935296", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1604996503/l_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1604996503/l_copy_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "s\\u00F3 faltam dois abacaxis pra eu completar os abacaxis do angry birds mas eu nao acho", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:49 +0000", "from_user": "511anna80", "from_user_id": 281510563, "from_user_id_str": "281510563", "from_user_name": "\\u3042\\u3093\\u306A", "geo": null, "id": 148835946295607300, "id_str": "148835946295607296", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://www.touchlive.jp/" rel="nofollow">JUNGLE BIRDS</a>", "text": "\\u3010JUNGLE BIRDS\\uFF1APlayer\\uFF1A337350pts #touchlive4i http://t.co/dITgIE5M \\u3011", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:48 +0000", "from_user": "MishanQue", "from_user_id": 91154661, "from_user_id_str": "91154661", "from_user_name": "Mishan Q. ", "geo": null, "id": 148835943548334080, "id_str": "148835943548334080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/623099786/images-21_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/623099786/images-21_normal.jpeg", "source": "<a href="http://www.visibli.com" rel="nofollow">Visibli</a>", "text": "Angry Birds\\u2019 \\u2018Wreck the Halls\\u2019 cartoon: Fun on the slopes, but I miss balloon bird http://t.co/VlIBMIW4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:47 +0000", "from_user": "Safadone", "from_user_id": 321765168, "from_user_id_str": "321765168", "from_user_name": "Jefferson felipe", "geo": null, "id": 148835936522878980, "id_str": "148835936522878977", "iso_language_code": "is", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701187780/Foto-0673__3__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701187780/Foto-0673__3__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Np Christina Aguilera - Birds of Prey", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:45 +0000", "from_user": "Sheld", "from_user_id": 14743926, "from_user_id_str": "14743926", "from_user_name": "Shel", "geo": null, "id": 148835928167817200, "id_str": "148835928167817216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1646517512/Sheld_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646517512/Sheld_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "The tree is up and it's in the front window. That's 2 birds one stone in my book.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:43 +0000", "from_user": "rlbocean", "from_user_id": 348857014, "from_user_id_str": "348857014", "from_user_name": "Riki Beck", "geo": null, "id": 148835921154932740, "id_str": "148835921154932736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1488829432/Dolphin_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1488829432/Dolphin_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @BBCNature: Some of the world's rarest birds have been moved to a special aviary @WWTslimbridge watch a film about their journey: http://t.co/maWMaPp1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:42 +0000", "from_user": "TRAPATHON1700", "from_user_id": 430561100, "from_user_id_str": "430561100", "from_user_name": "uptown_sour(~__~)", "geo": null, "id": 148835915165483000, "id_str": "148835915165483008", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1678709446/UPTOWN3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678709446/UPTOWN3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "2 #BIRDS N DA \"KITCHEN\" 1BRICK 1DESERT EAGLE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:34 +0000", "from_user": "Num1ChynaDoll", "from_user_id": 135648076, "from_user_id_str": "135648076", "from_user_name": "1TWEETNassBITCH ", "geo": null, "id": 148835885155233800, "id_str": "148835885155233792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668456818/profile_image_1322774905457_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668456818/profile_image_1322774905457_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "RT @G__MONI: RT @Num1ChynaDoll n ima need @G__MONI's Angry Birds t-shirt for Christmas too LLs \\u00AB ha!..ill dm u the location", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:32 +0000", "from_user": "qt_kt_lee", "from_user_id": 44605998, "from_user_id_str": "44605998", "from_user_name": "Katie Street", "geo": null, "id": 148835875156000770, "id_str": "148835875156000768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1496299785/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1496299785/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Birds cheeping at 5:30am #wideawake", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:30 +0000", "from_user": "PablitoNoguez", "from_user_id": 34843470, "from_user_id_str": "34843470", "from_user_name": "Pablito Noguez", "geo": null, "id": 148835867434291200, "id_str": "148835867434291200", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1576778203/PablitoNoguez_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576778203/PablitoNoguez_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "La nueva historia de Angry Birds!!! (via @elrompepepas ) http://t.co/ExJA9w31", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:29 +0000", "from_user": "mjlovely99", "from_user_id": 356719201, "from_user_id_str": "356719201", "from_user_name": "Mary-jayne", "geo": null, "id": 148835862845730800, "id_str": "148835862845730816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701047703/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701047703/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Just welcomed my mum to the world of technology..... She's been playing on angry birds for the past half hour \\uD83D\\uDE01", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:29 +0000", "from_user": "ZoeTorro", "from_user_id": 433833205, "from_user_id_str": "433833205", "from_user_name": "Zoey Torro", "geo": null, "id": 148835862682148860, "id_str": "148835862682148865", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Playing angry birds on a touch pad. It's cool :P", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:28 +0000", "from_user": "gugus8", "from_user_id": 106165879, "from_user_id_str": "106165879", "from_user_name": "Gustavo Mungu\\u00EDa", "geo": null, "id": 148835857967751170, "id_str": "148835857967751169", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1667300114/DSC083722_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667300114/DSC083722_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Angry Birds Movie Trailer | Kontraband http://t.co/ZSERUunp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:28 +0000", "from_user": "DynamiteMiley", "from_user_id": 41088671, "from_user_id_str": "41088671", "from_user_name": "Harry Potter \\uE13D\\uE52D", "geo": null, "id": 148835857393127420, "id_str": "148835857393127424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1675659535/5tumblr_lvqoj25vnO1r6s66vo1_500_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675659535/5tumblr_lvqoj25vnO1r6s66vo1_500_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Why do birds suddenly appear,everytime we are near?just like me,they long to be,close to you.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:27 +0000", "from_user": "Geralyndcf", "from_user_id": 426262070, "from_user_id_str": "426262070", "from_user_name": "Geralyn Aron", "geo": null, "id": 148835852833918980, "id_str": "148835852833918976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668797133/LLCM-1691_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668797133/LLCM-1691_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@adyaliam Go check out Pigeon Palooza (the next angry birds)- it is avail in Android Mktplce - should be in ITunes soon.", "to_user": "adyaliam", "to_user_id": 268418461, "to_user_id_str": "268418461", "to_user_name": "\\u0130layda y\\u0131ld\\u0131r\\u0131m", "in_reply_to_status_id": 148814987517886460, "in_reply_to_status_id_str": "148814987517886464"}, +{"created_at": "Mon, 19 Dec 2011 18:43:24 +0000", "from_user": "Jazzyog", "from_user_id": 19209080, "from_user_id_str": "19209080", "from_user_name": "Adina ", "geo": null, "id": 148835842226520060, "id_str": "148835842226520064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687327101/Photo_on_2011-12-08_at_13.19__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687327101/Photo_on_2011-12-08_at_13.19__2_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@BEEdntgivatweet stop hating thats why the ravens lost you never see steelers fan tweet about them birds", "to_user": "BEEdntgivatweet", "to_user_id": 96624023, "to_user_id_str": "96624023", "to_user_name": "King Bee", "in_reply_to_status_id": 148833463024353280, "in_reply_to_status_id_str": "148833463024353281"}, +{"created_at": "Mon, 19 Dec 2011 18:43:24 +0000", "from_user": "stanleyspotts", "from_user_id": 51471562, "from_user_id_str": "51471562", "from_user_name": "Stanley Spottswood", "geo": null, "id": 148835841526075400, "id_str": "148835841526075392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1489928365/new_twitcon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1489928365/new_twitcon_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "@kaygodd ..too fly for them birds http://t.co/sGUBKyDN", "to_user": "kaygodd", "to_user_id": 174231163, "to_user_id_str": "174231163", "to_user_name": "Kimberly Godfrey"}, +{"created_at": "Mon, 19 Dec 2011 18:43:24 +0000", "from_user": "AnJeeMariee", "from_user_id": 33658180, "from_user_id_str": "33658180", "from_user_name": "Anj \\u270C\\u2764", "geo": null, "id": 148835839957418000, "id_str": "148835839957417984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699589585/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699589585/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "My nana always makin me feed the birds with bread lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:23 +0000", "from_user": "Placepot", "from_user_id": 28132444, "from_user_id_str": "28132444", "from_user_name": "Wayne the Gardener", "geo": null, "id": 148835837608595460, "id_str": "148835837608595456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/543418371/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/543418371/twitterProfilePhoto_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "'Peanut butter' this goes a little way to explaining price hike for #birds ~ http://t.co/ZH5fIiVt #rspb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:22 +0000", "from_user": "VJSE2", "from_user_id": 376090915, "from_user_id_str": "376090915", "from_user_name": "VJSE Team", "geo": null, "id": 148835834295099400, "id_str": "148835834295099392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1646660147/vjse2011Holiday_winner_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646660147/vjse2011Holiday_winner_normal.jpg", "source": "<a href="http://www.DynamicTweets.com" rel="nofollow">Dynamic Tweets</a>", "text": "#vjse2 Vintage #jewelry #laurelburch Vintage Laurel Burch Love Dove Birds by thejewelseeker http://t.co/QgN0XmF7 via @Etsy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:22 +0000", "from_user": "thejewelseeker", "from_user_id": 150931151, "from_user_id_str": "150931151", "from_user_name": "Gayla & Alfred Esch", "geo": null, "id": 148835831598161920, "id_str": "148835831598161920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1419962837/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1419962837/avatar_normal.jpg", "source": "<a href="http://www.DynamicTweets.com" rel="nofollow">Dynamic Tweets</a>", "text": "#vjse2 Vintage #jewelry #laurelburch Vintage Laurel Burch Love Dove Birds by thejewelseeker http://t.co/BEficYVA via @Etsy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:19 +0000", "from_user": "ahdeenahslove", "from_user_id": 347678346, "from_user_id_str": "347678346", "from_user_name": "asdfghjkl :)", "geo": null, "id": 148835818600017920, "id_str": "148835818600017920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1683896040/lB5q0ww2_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683896040/lB5q0ww2_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I are squirrels and birds everywhere, in the middle of December.. how beautiful.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:18 +0000", "from_user": "rdonnalson", "from_user_id": 78296061, "from_user_id_str": "78296061", "from_user_name": "Rene Donnalson", "geo": null, "id": 148835817404645380, "id_str": "148835817404645377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1304339915/P1030136_cropped_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1304339915/P1030136_cropped_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "A #Photo of #Pelicans in the #Fishermen's #Boats-#Birds\\thttp://t.co/1hXWfMq1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:15 +0000", "from_user": "Jannausld", "from_user_id": 426261581, "from_user_id_str": "426261581", "from_user_name": "Janna Cadorette", "geo": null, "id": 148835805299875840, "id_str": "148835805299875840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668795630/LLCM-2162_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668795630/LLCM-2162_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MAdlY_UNiiQUE Ya should go get Pigeon Palooza (the next angry birds)- it is avail in Android Mktplce - will be in App Store in a few days.", "to_user": "MAdlY_UNiiQUE", "to_user_id": 305159899, "to_user_id_str": "305159899", "to_user_name": "Chazah Carter", "in_reply_to_status_id": 148825882298040320, "in_reply_to_status_id_str": "148825882298040321"}, +{"created_at": "Mon, 19 Dec 2011 18:43:13 +0000", "from_user": "charliemoores", "from_user_id": 84286320, "from_user_id_str": "84286320", "from_user_name": "Charlie Moores", "geo": null, "id": 148835795543916540, "id_str": "148835795543916544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691187374/Charlie_Moores_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691187374/Charlie_Moores_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Can't yet find words to describe seeing 13 SpbSands at @WWTslimbridge today. Such perfect birds. Am working on it tho...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:12 +0000", "from_user": "WTFISGOD", "from_user_id": 73286202, "from_user_id_str": "73286202", "from_user_name": "Trish", "geo": null, "id": 148835789898391550, "id_str": "148835789898391553", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1242567200/DSC08917_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1242567200/DSC08917_normal.JPG", "source": "<a href="http://yardsellr.com" rel="nofollow">Yardsellr</a>", "text": "1965 Familiar Birds Garden Birds of America By Collins Jr. #YARDSELLR http://t.co/OotM8F28", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:10 +0000", "from_user": "UKGrower", "from_user_id": 362710434, "from_user_id_str": "362710434", "from_user_name": "UKGrower", "geo": null, "id": 148835781639811070, "id_str": "148835781639811072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.ajaymatharu.com/" rel="nofollow">Tweet Old Post</a>", "text": "Rosewood Naturals Fabulous Fruit Sticks for Birds - \\u00A33.89 http://t.co/H8LBQTfB #birds #fabulous #fruit #naturals #rosewood #sticks", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:05 +0000", "from_user": "Kellehlmh", "from_user_id": 426260155, "from_user_id_str": "426260155", "from_user_name": "Kelle Rayas", "geo": null, "id": 148835761230319600, "id_str": "148835761230319617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668791732/LLCM-1074_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668791732/LLCM-1074_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@DENIISEJx Ya have to get Pigeon Palooza (the next angry birds)- it is launched in Android Mktplce - should be in ITunes in a few days.", "to_user": "DENIISEJx", "to_user_id": 143184301, "to_user_id_str": "143184301", "to_user_name": "Denise", "in_reply_to_status_id": 148835105610285060, "in_reply_to_status_id_str": "148835105610285058"}, +{"created_at": "Mon, 19 Dec 2011 18:43:04 +0000", "from_user": "Burris5000", "from_user_id": 105959881, "from_user_id_str": "105959881", "from_user_name": "Alex Portillo", "geo": null, "id": 148835757723893760, "id_str": "148835757723893760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IM+ Adds Own In-App Messenger \"Beep\", Angry Birds Theme: \"6.1 trillion SMS text messages were sent in 2010. We b... http://t.co/0IXELZTx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:02 +0000", "from_user": "MusikBotTeamspe", "from_user_id": 430937809, "from_user_id_str": "430937809", "from_user_name": "Musik Bot Teamspeak ", "geo": null, "id": 148835749226229760, "id_str": "148835749226229760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1679406222/bot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679406222/bot_normal.jpg", "source": "<a href="http://nowplayingplugin.com/" rel="nofollow">Now Playing</a>", "text": "London Philharmonic Orchestra & Andrew Skeet // Angry Birds: Main Theme", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:02 +0000", "from_user": "__CHOOSEYLover", "from_user_id": 154587051, "from_user_id_str": "154587051", "from_user_name": "CraZy Beautiful;*", "geo": null, "id": 148835748265721860, "id_str": "148835748265721858", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702559709/__CHOOSEYLover_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702559709/__CHOOSEYLover_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @ThsWht_iCallHer: Birds of a feather flock together. Hoes on the same shit chase after the same dick.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:01 +0000", "from_user": "heATE_breezy", "from_user_id": 373070833, "from_user_id_str": "373070833", "from_user_name": "bre - on - uh \\uF8FF", "geo": null, "id": 148835744981598200, "id_str": "148835744981598208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687622324/ad42a64a239b11e1a87612313804ec91_7-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687622324/ad42a64a239b11e1a87612313804ec91_7-1_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @ZayMane23: All that bullshit for da birds, u ain't nothin but a vulture", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:55 +0000", "from_user": "Duckie104", "from_user_id": 38887130, "from_user_id_str": "38887130", "from_user_name": "Duckie johnson", "geo": null, "id": 148835720482656260, "id_str": "148835720482656256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1618662779/QqMHWch5_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618662779/QqMHWch5_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@iiLoveSmooky I see it as killing two birds wit one stone", "to_user": "iiLoveSmooky", "to_user_id": 64088758, "to_user_id_str": "64088758", "to_user_name": "Teajya Way \\u2714"}, +{"created_at": "Mon, 19 Dec 2011 18:42:54 +0000", "from_user": "MissBrownn", "from_user_id": 128885818, "from_user_id_str": "128885818", "from_user_name": "' Miss Brown \\u2661", "geo": null, "id": 148835716674224130, "id_str": "148835716674224128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702357798/IMG01305-20111216-1856_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702357798/IMG01305-20111216-1856_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Angry birds..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:54 +0000", "from_user": "uLoveYouSomeMe", "from_user_id": 231521550, "from_user_id_str": "231521550", "from_user_name": "Kristie Crawford", "geo": null, "id": 148835714073759740, "id_str": "148835714073759744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701483390/4Ec18lXb_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701483390/4Ec18lXb_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "All that bullshit is fa the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:49 +0000", "from_user": "demetria_back", "from_user_id": 177762266, "from_user_id_str": "177762266", "from_user_name": "demetria[\\u2666]lofton", "geo": null, "id": 148835695421693950, "id_str": "148835695421693954", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697641626/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697641626/profile_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @ThsWht_iCallHer: Birds of a feather flock together. Hoes on the same shit chase after the same dick.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:49 +0000", "from_user": "delcotimes", "from_user_id": 74168324, "from_user_id_str": "74168324", "from_user_name": "Delco Times", "geo": null, "id": 148835694838677500, "id_str": "148835694838677504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/416431248/DailyTimes_square_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/416431248/DailyTimes_square_logo_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @PhilHeron: Reid plans to ignore key Giants game before Birds play Dallas - http://t.co/j5AnCPLk http://t.co/PgEPIhJN via @delcotimes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:41 +0000", "from_user": "Naattaaall", "from_user_id": 137642941, "from_user_id_str": "137642941", "from_user_name": "Nattieeeee", "geo": null, "id": 148835662395752450, "id_str": "148835662395752448", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1658935954/IMG-20111126-00074_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658935954/IMG-20111126-00074_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "Errrrr angry birds!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:36 +0000", "from_user": "nik_esco", "from_user_id": 283848457, "from_user_id_str": "283848457", "from_user_name": "Nikhil", "geo": null, "id": 148835640291754000, "id_str": "148835640291753984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680621513/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680621513/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Why do birds suddenly appearrrr, everytimeeeee you are neaarrrrr...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:35 +0000", "from_user": "Yankovich8269ap", "from_user_id": 433379909, "from_user_id_str": "433379909", "from_user_name": "Carlita Yankovich", "geo": null, "id": 148835634709151740, "id_str": "148835634709151744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685038347/18599330321168191_-_smiling_so_happy_-_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685038347/18599330321168191_-_smiling_so_happy_-_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Best-Ever Backyard Birding Tips: Hundreds of Easy Ways to Attract the Birds You Love to Watch (Rodale Organic Ga... http://t.co/5NDnDOnp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:34 +0000", "from_user": "HippiChickiNiki", "from_user_id": 73596168, "from_user_id_str": "73596168", "from_user_name": "Niki Grigsby Princip", "geo": null, "id": 148835633232748540, "id_str": "148835633232748544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1643302272/298848_765407764572_3110955_37872424_1581125378_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643302272/298848_765407764572_3110955_37872424_1581125378_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Angry-Birds Game in Christmas Lights from the Guitar Hero Lights guy - http://t.co/WN23RE3n", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:34 +0000", "from_user": "saintlanta88", "from_user_id": 401455544, "from_user_id_str": "401455544", "from_user_name": "markuia hurd", "geo": null, "id": 148835632272257020, "id_str": "148835632272257024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1667555167/sCw0n5N9_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667555167/sCw0n5N9_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "OOMF NEED TO TAKE HIS ASS TO SLEEP BECAUSE WHEN I GET BACK THAT SHIT IS FOR THE BIRDS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:34 +0000", "from_user": "Mendrala8928lif", "from_user_id": 431494227, "from_user_id_str": "431494227", "from_user_name": "Kam Mendrala", "geo": null, "id": 148835631500496900, "id_str": "148835631500496896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680600764/14018692011159804_miss_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680600764/14018692011159804_miss_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Best-Ever Backyard Birding Tips: Hundreds of Easy Ways to Attract the Birds You Love to Watch (Rodale Organic Ga... http://t.co/MjSfsvJP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:30 +0000", "from_user": "bosskwame", "from_user_id": 73743681, "from_user_id_str": "73743681", "from_user_name": "Kwame", "geo": null, "id": 148835613230112770, "id_str": "148835613230112768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1658502020/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658502020/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "I once cooked pasta and added some birds eye southern fried 100% chicken fillet to it. She seemed to like it.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:29 +0000", "from_user": "reneecars93", "from_user_id": 309299448, "from_user_id_str": "309299448", "from_user_name": "Renee Carsi", "geo": null, "id": 148835611581755400, "id_str": "148835611581755393", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700727000/OsNhVs7R_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700727000/OsNhVs7R_normal", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @MayBachMims: Dad: A bird told me you are doing drugs..... Me: You're talking with birds and I'm the one doing drugs?!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:29 +0000", "from_user": "monumentpharm", "from_user_id": 167445223, "from_user_id_str": "167445223", "from_user_name": "Monument Pharmacy", "geo": null, "id": 148835610688368640, "id_str": "148835610688368640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1079827885/Mt_Elbert_Colorado_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1079827885/Mt_Elbert_Colorado_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Tips 4 finding the right #veterinary #pharmacy: http://t.co/PCglnydp #pets #animals #dogs #cats #horses #birds #reptiles #meds #medicine", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:28 +0000", "from_user": "Kareendmmg", "from_user_id": 426262455, "from_user_id_str": "426262455", "from_user_name": "Kareen Sicari", "geo": null, "id": 148835604615004160, "id_str": "148835604615004160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668798646/LLCM-2128_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668798646/LLCM-2128_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@abreduardo Dude, go get Pigeon Palooza (the next angry birds)- it is avail in Android Mktplce - will be in ITunes soon.", "to_user": "abreduardo", "to_user_id": 38194576, "to_user_id_str": "38194576", "to_user_name": "Eduardo Baca", "in_reply_to_status_id": 148830081320632320, "in_reply_to_status_id_str": "148830081320632320"}, +{"created_at": "Mon, 19 Dec 2011 18:42:25 +0000", "from_user": "LesterDiamond28", "from_user_id": 180600314, "from_user_id_str": "180600314", "from_user_name": "Lester Diamond", "geo": null, "id": 148835594854866940, "id_str": "148835594854866944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1420764224/Dangar_Place_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1420764224/Dangar_Place_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@rickygervais to celebrate the holidays Ollie plans the murders of rodents and birds.", "to_user": "rickygervais", "to_user_id": 20015311, "to_user_id_str": "20015311", "to_user_name": "Ricky Gervais", "in_reply_to_status_id": 148835266633805820, "in_reply_to_status_id_str": "148835266633805824"}, +{"created_at": "Mon, 19 Dec 2011 18:42:24 +0000", "from_user": "LetsGo_GetLost", "from_user_id": 280907196, "from_user_id_str": "280907196", "from_user_name": "Jan", "geo": null, "id": 148835590991921150, "id_str": "148835590991921152", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1370081071/001_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1370081071/001_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Noel und seine High Flying Birds vers\\u00FC\\u00DFen mir den Feierabend.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:24 +0000", "from_user": "MarkHubbard14", "from_user_id": 313069341, "from_user_id_str": "313069341", "from_user_name": "Mark Hubbard", "geo": null, "id": 148835588450164740, "id_str": "148835588450164737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1386594554/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1386594554/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Makin' birds with @king_wyman_IV #hellayes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:24 +0000", "from_user": "PhilHeron", "from_user_id": 29771899, "from_user_id_str": "29771899", "from_user_name": "Philip Heron", "geo": null, "id": 148835588282400770, "id_str": "148835588282400768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/129539081/Heron_Phil_Color_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/129539081/Heron_Phil_Color_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Reid plans to ignore key Giants game before Birds play Dallas - http://t.co/j5AnCPLk http://t.co/PgEPIhJN via @delcotimes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:21 +0000", "from_user": "MoneyMurph02", "from_user_id": 342278980, "from_user_id_str": "342278980", "from_user_name": "Murph", "geo": null, "id": 148835578442551300, "id_str": "148835578442551296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1460487322/m_65b984797c614ac4afa5320f7e4717e6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1460487322/m_65b984797c614ac4afa5320f7e4717e6_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@DearOldPuchiex3 Lol Let Them Bee Birds Eventually They Will Go Away its That Timee Of Thee Season.", "to_user": "DearOldPuchiex3", "to_user_id": 132352718, "to_user_id_str": "132352718", "to_user_name": "Sharilyn Figueroa", "in_reply_to_status_id": 148835067509223420, "in_reply_to_status_id_str": "148835067509223424"}, +{"created_at": "Mon, 19 Dec 2011 18:42:18 +0000", "from_user": "Wardz_de_souzA", "from_user_id": 36481662, "from_user_id_str": "36481662", "from_user_name": "\\uE00DWanderson de souzA\\uF8FF", "geo": null, "id": 148835565326970880, "id_str": "148835565326970880", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702586737/d7b7a5237e4d53eeb9f48e754aca0f61_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702586737/d7b7a5237e4d53eeb9f48e754aca0f61_normal.jpeg", "source": "<a href="http://faixamobi.com" rel="nofollow">FaixaMobi</a>", "text": "RT @faixamobi: Angry Birds para os aparelhos Nokia C3-01 e X3-02: http://t.co/wxtyoMiW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:17 +0000", "from_user": "SosoSakar", "from_user_id": 440400898, "from_user_id_str": "440400898", "from_user_name": "sakar", "geo": null, "id": 148835558360227840, "id_str": "148835558360227841", "iso_language_code": "ar", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701153316/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701153316/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u2022\\u2022 \\n\\n\\u0645\\u0622 \\u0637\\u0622\\u0631 \\u0637\\u064A\\u0631(\\u0646) \\u0648\\u0622\\u0631\\u062A\\u0641\\u0639\\n\\u0622\\u0644\\u0622 \\u0643\\u0640\\u0640\\u0645\\u0622 \\u0637\\u0640\\u0640\\u0622\\u0631 \\u0648\\u0642\\u0640\\u0640\\u0639\\n\\n\\n\\u0633\\u062C\\u0644 \\u0639\\u0646\\u062F\\u0643 \\u0646\\u0641\\u0633\\u064A\\u0629 \\u0627\\u0646\\u0642\\u0631\\u064A \\u0628\\u064A\\u0631\\u062F Angry Birds =D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:16 +0000", "from_user": "American_Jesus", "from_user_id": 17004639, "from_user_id_str": "17004639", "from_user_name": "American_Jesus", "geo": null, "id": 148835555583594500, "id_str": "148835555583594498", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1268263307/American_Jesus120x120_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1268263307/American_Jesus120x120_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Angry Birds Christmas Lights http://t.co/No5Ov011", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:16 +0000", "from_user": "GreenKeithMEP", "from_user_id": 310221185, "from_user_id_str": "310221185", "from_user_name": "Keith Taylor", "geo": null, "id": 148835554526629900, "id_str": "148835554526629888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1380088021/KEITH_TAYLOR_Twitter_sq__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1380088021/KEITH_TAYLOR_Twitter_sq__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I call to end illegal Italian #wildbirdhunting. EU has 500 great wild bird species but 43% facing serious decline http://t.co/prqDiiOp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:15 +0000", "from_user": "jessversus", "from_user_id": 16464751, "from_user_id_str": "16464751", "from_user_name": "jess versus", "geo": null, "id": 148835553624854530, "id_str": "148835553624854529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1655231598/square-beach-profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655231598/square-beach-profile_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Chevron is so \"in\" this year. I dunno about fashion, but it's the first year I've noticed craft trends other than owls/birds/tentacles.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:15 +0000", "from_user": "_ButYuMadTho", "from_user_id": 240903251, "from_user_id_str": "240903251", "from_user_name": "Marquis Benton", "geo": null, "id": 148835551313793020, "id_str": "148835551313793025", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670882600/IMAG0382_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670882600/IMAG0382_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "this shit is for the birds! i dont wish this torture upon anyone!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:14 +0000", "from_user": "anyoldbooks", "from_user_id": 223076545, "from_user_id_str": "223076545", "from_user_name": "Jeremy LeLean", "geo": null, "id": 148835548826570750, "id_str": "148835548826570752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1182955215/Logo-AOB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1182955215/Logo-AOB_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Audubon's Birds of America for sale @ChristiesInc on 20/01/12 (http://t.co/Y6sKanBc). Second in a little over 12 months.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:10 +0000", "from_user": "LaurenisaL0ser", "from_user_id": 244131364, "from_user_id_str": "244131364", "from_user_name": "Lauren White", "geo": null, "id": 148835531470536700, "id_str": "148835531470536704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698281011/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698281011/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Why do birds suddenly appear every time you are near?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:10 +0000", "from_user": "Arlaifk", "from_user_id": 431718239, "from_user_id_str": "431718239", "from_user_name": "Arla Uzzle", "geo": null, "id": 148835530191278080, "id_str": "148835530191278080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681067885/hedqu44554_122771732_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681067885/hedqu44554_122771732_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Birds On A Wire 12X12 Love Birds Collection Paper (Fancy Pants): FANCY PANTS-Love Birds. This package contains t... http://t.co/5R7BW1gD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:09 +0000", "from_user": "ZayMane23", "from_user_id": 127257145, "from_user_id_str": "127257145", "from_user_name": "Xavier Chambers", "geo": null, "id": 148835527074918400, "id_str": "148835527074918400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701013955/91D0YCV9_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701013955/91D0YCV9_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "All that bullshit for da birds, u ain't nothin but a vulture", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:41:53 +0000", "from_user": "sergioquintero_", "from_user_id": 99825457, "from_user_id_str": "99825457", "from_user_name": "Sergio Quintero", "geo": null, "id": 148835461790572540, "id_str": "148835461790572544", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1394370219/eightbit-2eb1f30f-c514-482e-8df6-ea1afd5ceda4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1394370219/eightbit-2eb1f30f-c514-482e-8df6-ea1afd5ceda4_normal.png", "source": "<a href="http://www.tweekly.fm/" rel="nofollow">Tweekly.fm</a>", "text": "My Top 3 #lastfm Artists: The Fratellis (13), Noel Gallagher's High Flying Birds (7) & Miles Kane (6) http://t.co/ZxE7ubZW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:52 +0000", "from_user": "NikkiLiburd", "from_user_id": 392291133, "from_user_id_str": "392291133", "from_user_name": "nikki", "geo": null, "id": 148835457243942900, "id_str": "148835457243942912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702420191/nicki-minaj-roman-in-moscow-500x500_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702420191/nicki-minaj-roman-in-moscow-500x500_1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "bye tweeters and tweety birds. will b bak on really soon.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:52 +0000", "from_user": "Sabreezybr0", "from_user_id": 16303171, "from_user_id_str": "16303171", "from_user_name": "Beautiful Breeeezy.", "geo": null, "id": 148835455499124740, "id_str": "148835455499124737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693080096/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693080096/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Birds run away from me.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:51 +0000", "from_user": "CedThomas", "from_user_id": 49747703, "from_user_id_str": "49747703", "from_user_name": "Ask Your Neighbor", "geo": null, "id": 148835452621828100, "id_str": "148835452621828096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1207135391/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1207135391/image_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @DABOIGENIUS: Im looking 4wd to joining #TeamMac this PC ish for the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:51 +0000", "from_user": "DMoralesReyes", "from_user_id": 108430900, "from_user_id_str": "108430900", "from_user_name": "Diego Morales", "geo": null, "id": 148835450524663800, "id_str": "148835450524663808", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1097646872/pointy-haired_boss_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1097646872/pointy-haired_boss_bigger_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @exp_empresas: El creador de Angry Birds considera salir a Bolsa en Hong Kong: La compa\\u00F1\\u00EDa creadora de Angry Birds, el videojue... http://t.co/kGKL4LMR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:51 +0000", "from_user": "4yourpets", "from_user_id": 389380311, "from_user_id_str": "389380311", "from_user_name": "Marry", "geo": null, "id": 148835449610317820, "id_str": "148835449610317824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://www.ajaymatharu.com/" rel="nofollow">Tweet Old Post</a>", "text": "Pink Parrot\\u00AE Hawaiian Delights\\u00AE 10\" Hanging Cookies, Wheels & Blocks for Sm/Med/Lg Birds - PetAg\\u00AE Hawaiian... http://t.co/y8fbUVBa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:49 +0000", "from_user": "eileen_dover2", "from_user_id": 324705125, "from_user_id_str": "324705125", "from_user_name": "Eileen Dominguez", "geo": null, "id": 148835444661026800, "id_str": "148835444661026816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1594096599/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1594096599/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Discussing what birds talk about when they're all on a post hanging out #winterbeachtrips", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:48 +0000", "from_user": "Lorettekkq", "from_user_id": 426264025, "from_user_id_str": "426264025", "from_user_name": "Lorette Hanner", "geo": null, "id": 148835439866945540, "id_str": "148835439866945536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668804985/LLCM-5202_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668804985/LLCM-5202_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@erinlashae913 Ya must try out Pigeon Palooza (the next angry birds)- it's avail in Android Mktplce - will be in ITunes next week.", "to_user": "erinlashae913", "to_user_id": 295983240, "to_user_id_str": "295983240", "to_user_name": "Erin Davis :) ", "in_reply_to_status_id": 148795611980906500, "in_reply_to_status_id_str": "148795611980906496"}, +{"created_at": "Mon, 19 Dec 2011 18:41:46 +0000", "from_user": "nlnarayan", "from_user_id": 36915089, "from_user_id_str": "36915089", "from_user_name": "Lakshminarayan", "geo": null, "id": 148835431444774900, "id_str": "148835431444774912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1271532760/4848_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1271532760/4848_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Saudi Prince invests 300 m$ in Twitter...now that is what i call \"economics\" is smarter than birds..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:44 +0000", "from_user": "kuzderet", "from_user_id": 162352891, "from_user_id_str": "162352891", "from_user_name": "TolgaSion", "geo": null, "id": 148835420527009800, "id_str": "148835420527009792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1553397339/Photo_255_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553397339/Photo_255_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Not only in my country, but also here little kids follow birds hmm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:42 +0000", "from_user": "RoseKAnderson", "from_user_id": 85471123, "from_user_id_str": "85471123", "from_user_name": "Rose Anderson ", "geo": null, "id": 148835412788510720, "id_str": "148835412788510723", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1563733660/Rose-Tree_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1563733660/Rose-Tree_normal.jpg", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "Did I just get two ravens on camera? #birds , not football players (@ Music Fair Marsh) http://t.co/f6TAurH2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:42 +0000", "from_user": "KrzaKraig", "from_user_id": 437686041, "from_user_id_str": "437686041", "from_user_name": "Kraig Lasher", "geo": null, "id": 148835412775944200, "id_str": "148835412775944194", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695092838/me_phils_hat_normal.jpg", "profile_image_url_https": null, "source": "<a href="http://twitter.com/">web</a>", "text": "Getting crazy at the end of the NFL season. Go Birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:38 +0000", "from_user": "MarzGod_", "from_user_id": 24243598, "from_user_id_str": "24243598", "from_user_name": "Maria Lord", "geo": null, "id": 148835398632734720, "id_str": "148835398632734720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681509778/Photo_497_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681509778/Photo_497_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@LuciaBeeman I'm gonna txt you whether you like or not. Lol. This shit is for the birds.", "to_user": "LuciaBeeman", "to_user_id": 270703162, "to_user_id_str": "270703162", "to_user_name": "Lucia Beeman\\u26A1", "in_reply_to_status_id": 148833578204143600, "in_reply_to_status_id_str": "148833578204143619"}, +{"created_at": "Mon, 19 Dec 2011 18:41:35 +0000", "from_user": "iwandiary", "from_user_id": 82874075, "from_user_id_str": "82874075", "from_user_name": "Iwan Susanto", "geo": null, "id": 148835386188242940, "id_str": "148835386188242946", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1487849055/n703317961_830675_3915_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1487849055/n703317961_830675_3915_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Angry Birds v1.6.2 (latest version) Full \\u2013 Free Download http://t.co/T0pswZXP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:33 +0000", "from_user": "NashFenrir", "from_user_id": 400038141, "from_user_id_str": "400038141", "from_user_name": "nash fenrir", "geo": null, "id": 148835372615471100, "id_str": "148835372615471104", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1671976015/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671976015/image_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Photos on iOS</a>", "text": "Birds http://t.co/ZK6m8dbf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:31 +0000", "from_user": "Louracaux", "from_user_id": 426260722, "from_user_id_str": "426260722", "from_user_name": "Loura Emmert", "geo": null, "id": 148835369176137730, "id_str": "148835369176137728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668792937/LLCM-4006_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668792937/LLCM-4006_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@justNeta Dude, check out Pigeon Palooza (the next angry birds)- it is avail in Android Mktplce - will be in ITunes next week.", "to_user": "justNeta", "to_user_id": 121134761, "to_user_id_str": "121134761", "to_user_name": "Neta", "in_reply_to_status_id": 148833707912994800, "in_reply_to_status_id_str": "148833707912994818"}, +{"created_at": "Mon, 19 Dec 2011 18:41:30 +0000", "from_user": "lazyjeanius", "from_user_id": 204083642, "from_user_id_str": "204083642", "from_user_name": "Eddie King", "geo": null, "id": 148835362368794620, "id_str": "148835362368794624", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1606572608/P3221627_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606572608/P3221627_normal.JPG", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "Amillio got all da birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:27 +0000", "from_user": "bbo_p", "from_user_id": 287591376, "from_user_id_str": "287591376", "from_user_name": "\\u314D\\u315B\\u314D", "geo": null, "id": 148835352797380600, "id_str": "148835352797380608", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1324586293/15228d224ced52b30871e4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1324586293/15228d224ced52b30871e4_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "just another day \\uB2F5\\uB2F5\\uD574.. \\uC54C\\uC544\\uB4E3\\uACE0 \\uC2F6\\uC5B4... \\uC0C8\\uB294 \\uC6B8\\uACE0 \\uC232\\uC744 \\uB0A0\\uC544?! birds are singing, things are growing\\uAC00 \\uC800\\uB7F0 \\uAC00\\uC0AC\\uAC00 \\uB418\\uB098...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:22 +0000", "from_user": "DntBlowMy_Tweet", "from_user_id": 245054070, "from_user_id_str": "245054070", "from_user_name": "Destinee Miller", "geo": null, "id": 148835328986316800, "id_str": "148835328986316800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686368075/Snapshot_20111209_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686368075/Snapshot_20111209_3_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @JehmarNOtJamar: this being home shit is #dead and for the birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:19 +0000", "from_user": "MoxitoBandito", "from_user_id": 199068108, "from_user_id_str": "199068108", "from_user_name": "Mohssine Affane", "geo": null, "id": 148835318680928260, "id_str": "148835318680928256", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1560915761/n501444341_253593_5726_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1560915761/n501444341_253593_5726_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@HoudaZiou tu as la t\\u00EAte dial dak l'oiseau jaune f ANgry Birds HAHAHAHAHA", "to_user": "HoudaZiou", "to_user_id": 182918821, "to_user_id_str": "182918821", "to_user_name": "Houda Ziou", "in_reply_to_status_id": 148835151751819260, "in_reply_to_status_id_str": "148835151751819264"}, +{"created_at": "Mon, 19 Dec 2011 18:41:14 +0000", "from_user": "MarabeehkiLenem", "from_user_id": 405713864, "from_user_id_str": "405713864", "from_user_name": "Maraa_Been_Caakeed", "geo": null, "id": 148835297403211780, "id_str": "148835297403211776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1669946088/diggy-simmons-photo-of-the-day-2010-10-17-300x400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669946088/diggy-simmons-photo-of-the-day-2010-10-17-300x400_normal.jpg", "source": "<a href="http://www.panoramicsoft.com/mobileapps/motweets/moTweets.php" rel="nofollow">Panoramic moTweets</a>", "text": "RT @i_pull_dreadz: Everytime I see a dude with a big beard I imagine a family of birds living in there", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:14 +0000", "from_user": "The_Ivy_AnKAr", "from_user_id": 188968319, "from_user_id_str": "188968319", "from_user_name": "Candace SanDiego", "geo": null, "id": 148835294202957820, "id_str": "148835294202957824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1637009439/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637009439/image_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @NotoriousLIZ: 2011 was a bad year for birds............The feather earrings trend.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:14 +0000", "from_user": "ayunigifts", "from_user_id": 56043197, "from_user_id_str": "56043197", "from_user_name": "Ayuni Gifts", "geo": null, "id": 148835294135853060, "id_str": "148835294135853056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1584577497/pinkdog_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584577497/pinkdog_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "I'm selling I. Godinger Glass Plate Tray 10\" Square - Birds in Tree http://t.co/P1gE9Ncc @addoway", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:12 +0000", "from_user": "Christianentk", "from_user_id": 440188107, "from_user_id_str": "440188107", "from_user_name": "Christiane Naslund", "geo": null, "id": 148835289249497100, "id_str": "148835289249497088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700517925/large_OZNMBYEUADPE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700517925/large_OZNMBYEUADPE_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "About Birds (Turtleback School & Library Binding Edition): FOR USE IN SCHOOLS AND LIBRARIES ONLY. Text and illus... http://t.co/jIfu1AM4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:10 +0000", "from_user": "roostlondon", "from_user_id": 375638767, "from_user_id_str": "375638767", "from_user_name": "roost", "geo": null, "id": 148835280097513470, "id_str": "148835280097513472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1614222831/LogoSmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1614222831/LogoSmall_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Photo: Early birds tickets are moving fast for our event Jan 21st 2012... http://t.co/CaxJ9OB5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:07 +0000", "from_user": "MikaylaaKelly", "from_user_id": 228098322, "from_user_id_str": "228098322", "from_user_name": "Mikayla Kelly Martin", "geo": null, "id": 148835267418128400, "id_str": "148835267418128384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1597875901/EL7ydr0o_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1597875901/EL7ydr0o_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@rogerdoger70 whaddddddup(: I've been playing angry birds this whole time...", "to_user": "rogerdoger70", "to_user_id": 51203843, "to_user_id_str": "51203843", "to_user_name": "Pablo Kidd", "in_reply_to_status_id": 148834157458497540, "in_reply_to_status_id_str": "148834157458497537"}, +{"created_at": "Mon, 19 Dec 2011 18:41:07 +0000", "from_user": "Samd779", "from_user_id": 14634438, "from_user_id_str": "14634438", "from_user_name": "Sam Dixon", "geo": null, "id": 148835265748803600, "id_str": "148835265748803586", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1265183478/asd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1265183478/asd_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@GabeLudden As a journalist, I can tell you that the 'Angry Birds' have no interest in taking you down They just hate your pompous attitude", "to_user": "GabeLudden", "to_user_id": 359802782, "to_user_id_str": "359802782", "to_user_name": "Gabriel Ludden", "in_reply_to_status_id": 148822834574143500, "in_reply_to_status_id_str": "148822834574143490"}, +{"created_at": "Mon, 19 Dec 2011 18:41:04 +0000", "from_user": "Hoe_ISaid", "from_user_id": 195575328, "from_user_id_str": "195575328", "from_user_name": "[]L\\u00A3SA Is My Name[]", "geo": null, "id": 148835256248705020, "id_str": "148835256248705024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696753146/jOMkVl2x_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696753146/jOMkVl2x_normal", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @ThsWht_iCallHer: Birds of a feather flock together. Hoes on the same shit chase after the same dick.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:03 +0000", "from_user": "jSimpson333", "from_user_id": 311137894, "from_user_id_str": "311137894", "from_user_name": "Jonathan Simpson", "geo": null, "id": 148835251643351040, "id_str": "148835251643351040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1653841781/creeps_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653841781/creeps_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Fat birds only upload photos of their top half #conartists", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:03 +0000", "from_user": "olardarpo", "from_user_id": 377646559, "from_user_id_str": "377646559", "from_user_name": "oyenekan oladapo", "geo": null, "id": 148835250968076300, "id_str": "148835250968076288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686759208/331277831_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686759208/331277831_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Tell dat 2 d birds mr oga RT @SheunCrowther: Can't believe I havnt tasted food all day..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:02 +0000", "from_user": "BreitWerk", "from_user_id": 288840026, "from_user_id_str": "288840026", "from_user_name": "Deni Breitenbach", "geo": null, "id": 148835246887026700, "id_str": "148835246887026690", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1499000317/BreitWerk-logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1499000317/BreitWerk-logo_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "RT @jan4insight: Mini-Journal - Pink with Birds, on Zibbet http://t.co/1F0G5gQs Stocking stuffer! Last chance to get it by #Christmas!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:01 +0000", "from_user": "poison1313", "from_user_id": 412003339, "from_user_id_str": "412003339", "from_user_name": "poison", "geo": null, "id": 148835240322924540, "id_str": "148835240322924544", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://www.touchlive.jp/" rel="nofollow">JUNGLE BIRDS</a>", "text": "\\u3010JUNGLE BIRDS\\uFF1Abluedlug\\uFF1A280850pts #touchlive4i http://t.co/bGcyEcvb \\u3011", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:00 +0000", "from_user": "KlippinKrazy", "from_user_id": 314231043, "from_user_id_str": "314231043", "from_user_name": "Klippin' Krazy!", "geo": null, "id": 148835238242566140, "id_str": "148835238242566144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1389151177/klippin_krazy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1389151177/klippin_krazy_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Who doesn't LOVE Angry Birds? Especially ate 58% off on Lightening Deal.... http://t.co/mlL92RUq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:59 +0000", "from_user": "WalterKing1", "from_user_id": 430840158, "from_user_id_str": "430840158", "from_user_name": "Walter King", "geo": null, "id": 148835231523291140, "id_str": "148835231523291136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1679356694/walterking_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679356694/walterking_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Rovio\\u2019s CMO Peter Vesterbacka\\u2019s wife even wore an Angry Birds formal gown to a state gala", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:56 +0000", "from_user": "mitchfel", "from_user_id": 27960538, "from_user_id_str": "27960538", "from_user_name": "Mitch Feltsch", "geo": null, "id": 148835218806161400, "id_str": "148835218806161408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/744216290/lionman_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/744216290/lionman_normal.gif", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "All birds must die. KILL ALL BIRDFORM. #camping #its5am", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:50 +0000", "from_user": "_ChinkyRiChxO", "from_user_id": 352123941, "from_user_id_str": "352123941", "from_user_name": "\\u00BBKiss My T A T T S\\u2764", "geo": null, "id": 148835194605027330, "id_str": "148835194605027328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701185796/trEATthis_bitCh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701185796/trEATthis_bitCh_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "All That Talkin For The Birds.. Deliver That Beef , Bring It To My FRONT Door!! #Wassupp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:46 +0000", "from_user": "fReShPrince26", "from_user_id": 81183998, "from_user_id_str": "81183998", "from_user_name": "Alex", "geo": null, "id": 148835178519863300, "id_str": "148835178519863296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685518574/picplz_2011-11-17_23.00.58_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685518574/picplz_2011-11-17_23.00.58_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @Listentohersing RT @DJFRANK_WHITE LIFE IS LIKE AN IPHONE , ALL THESE ANGRY BIRDS .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:41 +0000", "from_user": "TheLifeOfNizzle", "from_user_id": 34976050, "from_user_id_str": "34976050", "from_user_name": "Captain Nizz", "geo": null, "id": 148835156659150850, "id_str": "148835156659150848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701597089/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701597089/image_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @NotoriousLIZ: 2011 was a bad year for birds............The feather earrings trend.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:39 +0000", "from_user": "g4ybar", "from_user_id": 104565670, "from_user_id_str": "104565670", "from_user_name": "Mila Kunis", "geo": null, "id": 148835150527086600, "id_str": "148835150527086594", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1663876100/310544_2219377927196_1330089194_31901953_1008177025_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663876100/310544_2219377927196_1330089194_31901953_1008177025_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Why do birds suddenly appear every time you are near", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:35 +0000", "from_user": "Lary_Bennington", "from_user_id": 236098684, "from_user_id_str": "236098684", "from_user_name": "\\u2620Larissa Bennington\\u2620", "geo": null, "id": 148835134102192130, "id_str": "148835134102192129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695322258/Tigress_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695322258/Tigress_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Mauradmv: @Lary_Bennington Ya have to try Pigeon Palooza (the next angry birds)- it's live in Android Mktplce - will be in ITunes next week.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:35 +0000", "from_user": "dkeown44", "from_user_id": 238043472, "from_user_id_str": "238043472", "from_user_name": "David Keown", "geo": null, "id": 148835132525125630, "id_str": "148835132525125632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1444593379/IMG000313_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1444593379/IMG000313_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@CoachNinoDBE323 that's what's up hope y'all had some fun for me cuz this factory work is for the birds lol", "to_user": "CoachNinoDBE323", "to_user_id": 38744039, "to_user_id_str": "38744039", "to_user_name": "Lil Nino", "in_reply_to_status_id": 148834814110334980, "in_reply_to_status_id_str": "148834814110334976"}, +{"created_at": "Mon, 19 Dec 2011 18:40:35 +0000", "from_user": "Keeeepy", "from_user_id": 364220852, "from_user_id_str": "364220852", "from_user_name": "Michael Keep", "geo": null, "id": 148835131963080700, "id_str": "148835131963080704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1580510722/you_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580510722/you_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Angry birds in HD is the closest I've been to heaven", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:31 +0000", "from_user": "Smattjack", "from_user_id": 36395325, "from_user_id_str": "36395325", "from_user_name": "Stu Jack", "geo": null, "id": 148835114296684540, "id_str": "148835114296684546", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1281471836/fitted_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1281471836/fitted_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Just saw the biggest flock of birds ever fly by...they were flying 2 million deep...used my iPhone compass to confirm they were flying south", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:29 +0000", "from_user": "Angelinamul", "from_user_id": 431731537, "from_user_id_str": "431731537", "from_user_name": "Angelina Furgison", "geo": null, "id": 148835106570772480, "id_str": "148835106570772480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681095955/large_4915e41264422-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681095955/large_4915e41264422-1_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Songbirds Tapestry Throw: Beautiful birds wake us each morning with heavenly song. Artist Sandy Clough has desig... http://t.co/jyxdvmto", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:29 +0000", "from_user": "DENIISEJx", "from_user_id": 143184301, "from_user_id_str": "143184301", "from_user_name": "Denise", "geo": null, "id": 148835105610285060, "id_str": "148835105610285058", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698287493/DENISE__PF_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698287493/DENISE__PF_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Haha ro & peet doen allebei angry birds xd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:28 +0000", "from_user": "xefrox", "from_user_id": 15193039, "from_user_id_str": "15193039", "from_user_name": "xefrox", "geo": null, "id": 148835103643144200, "id_str": "148835103643144192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1590515351/8bc3d32a-4d5b-4fcb-aff2-d2bf366e04ff_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1590515351/8bc3d32a-4d5b-4fcb-aff2-d2bf366e04ff_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@Nx_Her Did not know im living in a fantasy world where birds and ghost talks :P nd alien :P", "to_user": "Nx_Her", "to_user_id": 91365666, "to_user_id_str": "91365666", "to_user_name": "Nuzhah Naashidh", "in_reply_to_status_id": 148834679099891700, "in_reply_to_status_id_str": "148834679099891712"}, +{"created_at": "Mon, 19 Dec 2011 18:40:28 +0000", "from_user": "ForeverGucci128", "from_user_id": 384006227, "from_user_id_str": "384006227", "from_user_name": "Get DOWN Or Lay DOWN", "geo": null, "id": 148835103085301760, "id_str": "148835103085301760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701389224/lTgx2Gy8_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701389224/lTgx2Gy8_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Angry Birds >>>>>", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:27 +0000", "from_user": "Gabrieltrentin", "from_user_id": 39560499, "from_user_id_str": "39560499", "from_user_name": "Gabriel Trentin", "geo": null, "id": 148835097729175550, "id_str": "148835097729175552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1355160234/OgAAANS88bQlbTs38o0M6MD7ZIAy6bTHP5lGMJKvVXCGWPfmikcVWhR8nRcfrPUvi7CAoi_le5SjT9G9mu4FcIhuu04Am1T1UNJyElxyiRBRK_1cHFakC6HgIyYf_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1355160234/OgAAANS88bQlbTs38o0M6MD7ZIAy6bTHP5lGMJKvVXCGWPfmikcVWhR8nRcfrPUvi7CAoi_le5SjT9G9mu4FcIhuu04Am1T1UNJyElxyiRBRK_1cHFakC6HgIyYf_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "vou jogar angry birds pra tentar aliviar o stress", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:26 +0000", "from_user": "ufff_yaar", "from_user_id": 245386682, "from_user_id_str": "245386682", "from_user_name": "\\u2605Indu Barla\\u2605", "geo": null, "id": 148835094214348800, "id_str": "148835094214348800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1553357678/24072011330-4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553357678/24072011330-4_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "nyt y'all tweet birds! take care <33", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:24 +0000", "from_user": "_JU1C3_", "from_user_id": 354443437, "from_user_id_str": "354443437", "from_user_name": "Josh Akins", "geo": null, "id": 148835088434606080, "id_str": "148835088434606080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1493528903/2010-10-15_16.24.00_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1493528903/2010-10-15_16.24.00_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "2 of my teachers look like angry birds. 3rd mod = white one. 4th mod = yellow one. Lls", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:24 +0000", "from_user": "Adrienne65", "from_user_id": 20307527, "from_user_id_str": "20307527", "from_user_name": "Adrienne B", "geo": null, "id": 148835086488453120, "id_str": "148835086488453120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670105649/profile_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670105649/profile_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@JonathanAnsell That's a lot of birds! Have you devised a name for the recipe?", "to_user": "JonathanAnsell", "to_user_id": 34305448, "to_user_id_str": "34305448", "to_user_name": "Jonathan Ansell", "in_reply_to_status_id": 148834749157355520, "in_reply_to_status_id_str": "148834749157355520"}, +{"created_at": "Mon, 19 Dec 2011 18:40:23 +0000", "from_user": "SuperKidJunior", "from_user_id": 120433512, "from_user_id_str": "120433512", "from_user_name": "H\\u0394ikal Roks\\u2020arr", "geo": +{"coordinates": [1.329,103.8994], "type": "Point"}, "id": 148835082126364670, "id_str": "148835082126364672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690985918/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690985918/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#nowplaying You don't know me - Birds Escape #love this band too! \\uE041", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:22 +0000", "from_user": "iAbuseHoes", "from_user_id": 153820628, "from_user_id_str": "153820628", "from_user_name": "Aniishaa \\u2655", "geo": null, "id": 148835077244190720, "id_str": "148835077244190720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686931724/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686931724/image_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @ThsWht_iCallHer: Birds of a feather flock together. Hoes on the same shit chase after the same dick.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:19 +0000", "from_user": "xstitchschool", "from_user_id": 78137366, "from_user_id_str": "78137366", "from_user_name": "Carla", "geo": null, "id": 148835065806340100, "id_str": "148835065806340096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1678189831/Tulips_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678189831/Tulips_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@PopcornPalace tuxedo birds fly high for Popcorn Palace Double Chocolate Popcorn #12dayspop", "to_user": "PopcornPalace", "to_user_id": 29562199, "to_user_id_str": "29562199", "to_user_name": "Popcorn Palace", "in_reply_to_status_id": 147807974944018430, "in_reply_to_status_id_str": "147807974944018432"}, +{"created_at": "Mon, 19 Dec 2011 18:40:16 +0000", "from_user": "Placepot", "from_user_id": 28132444, "from_user_id_str": "28132444", "from_user_name": "Wayne the Gardener", "geo": null, "id": 148835051138842620, "id_str": "148835051138842624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/543418371/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/543418371/twitterProfilePhoto_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Bird peanuts are so pricey atm, paid \\u00A322.69 for 12.5kg today, 12m ago \\u00A312.19! Any other #birds #rspb folk noticed too?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:15 +0000", "from_user": "Melinda7Life", "from_user_id": 391672575, "from_user_id_str": "391672575", "from_user_name": "Melinda Grossman", "geo": null, "id": 148835049855393800, "id_str": "148835049855393792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1590093257/Melinda_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1590093257/Melinda_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Natural outdoor decorations might come with a few risks...\"#Christmas decorating is for the birds\" - http://t.co/clre5yDX #holiday", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:11 +0000", "from_user": "Liieeess", "from_user_id": 223488318, "from_user_id_str": "223488318", "from_user_name": "superwoman lisa. ", "geo": null, "id": 148835030830022660, "id_str": "148835030830022656", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1665726875/hey._normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665726875/hey._normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "ik zit nu al een uur angry birds op de ipad te spelen.. Dat spel is echt te verslavend", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:09 +0000", "from_user": "Evandrro", "from_user_id": 283633776, "from_user_id_str": "283633776", "from_user_name": "Evandro", "geo": null, "id": 148835022118465540, "id_str": "148835022118465536", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1402119920/Evandro2_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1402119920/Evandro2_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "eu tava jogando angry birds RIO ;-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:04 +0000", "from_user": "Kroketawoman", "from_user_id": 190961109, "from_user_id_str": "190961109", "from_user_name": "Me llaman Octubre", "geo": null, "id": 148835001763500030, "id_str": "148835001763500032", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1581290312/DSC09857_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1581290312/DSC09857_normal.JPG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Que alguien me borre el angry birds antes que sea demasiado tarde.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:01 +0000", "from_user": "MyLoveIsPoetic1", "from_user_id": 210662339, "from_user_id_str": "210662339", "from_user_name": "Torea Toombs", "geo": null, "id": 148834991437131780, "id_str": "148834991437131777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688092275/393712_1694629741033_1696527112_875657_1104355512_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688092275/393712_1694629741033_1696527112_875657_1104355512_n_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Smh. The birds got me thinking....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:56 +0000", "from_user": "Shilly_1871RFC", "from_user_id": 168333570, "from_user_id_str": "168333570", "from_user_name": "Sam Shillingford", "geo": null, "id": 148834970335588350, "id_str": "148834970335588352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1610843953/300790_10150879088955121_835830120_21339901_110625708_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610843953/300790_10150879088955121_835830120_21339901_110625708_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Willcox94: Can't wait for New Years eve. Knowing me I'll wake up somewhere like Poland with a swastika tattoo and some birds knickers on my head.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:56 +0000", "from_user": "_max_k_", "from_user_id": 403584758, "from_user_id_str": "403584758", "from_user_name": "Max", "geo": null, "id": 148834969920348160, "id_str": "148834969920348160", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1619170301/1407019691_6_Cwn4_1_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619170301/1407019691_6_Cwn4_1_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "@isabomm angry birds knuffel verzameling op kermis al je geld daaraan uitgeven:p", "to_user": "isabomm", "to_user_id": 228298848, "to_user_id_str": "228298848", "to_user_name": "Isa B ."}, +{"created_at": "Mon, 19 Dec 2011 18:39:55 +0000", "from_user": "ColorMehRed", "from_user_id": 267221512, "from_user_id_str": "267221512", "from_user_name": "...Krystal", "geo": null, "id": 148834966569095170, "id_str": "148834966569095168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698111421/IMAG0411_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698111421/IMAG0411_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "@me_Mocahontas are yuh throwinq up the birds in yuhr avi.? lol.!", "to_user": "me_Mocahontas", "to_user_id": 357131275, "to_user_id_str": "357131275", "to_user_name": "C. Nelay", "in_reply_to_status_id": 148834749044113400, "in_reply_to_status_id_str": "148834749044113409"}, +{"created_at": "Mon, 19 Dec 2011 18:39:53 +0000", "from_user": "foretnordique", "from_user_id": 205351413, "from_user_id_str": "205351413", "from_user_name": "Martin Filion", "geo": null, "id": 148834954598559740, "id_str": "148834954598559744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1148889035/logo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1148889035/logo_normal.gif", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @CdnBoreal: Save wild forests, save migratory birds http://t.co/rRdmxMcG #cnn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:50 +0000", "from_user": "SippenonCoLa", "from_user_id": 246315476, "from_user_id_str": "246315476", "from_user_name": "Ginelle Cola", "geo": null, "id": 148834943483658240, "id_str": "148834943483658240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698476384/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698476384/image_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Of coarse when I'm trying to save Rio in Angry Birds its time to leave. -___-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:50 +0000", "from_user": "jennxcimm", "from_user_id": 70385089, "from_user_id_str": "70385089", "from_user_name": "Jennifer Cimmaruta", "geo": null, "id": 148834942942593020, "id_str": "148834942942593024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1535089688/Photo_on_9-8-11_at_3.01_PM_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1535089688/Photo_on_9-8-11_at_3.01_PM_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@xoemilydeveau well thats because birds are ugly bastards", "to_user": "xoemilydeveau", "to_user_id": 295247866, "to_user_id_str": "295247866", "to_user_name": "Emily Deveau", "in_reply_to_status_id": 148830443628806140, "in_reply_to_status_id_str": "148830443628806145"}, +{"created_at": "Mon, 19 Dec 2011 18:39:49 +0000", "from_user": "jordanerror", "from_user_id": 39379440, "from_user_id_str": "39379440", "from_user_name": "jordan somersc", "geo": null, "id": 148834938362404860, "id_str": "148834938362404864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1214244239/7034_147552139521_549934521_2420480_187174_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1214244239/7034_147552139521_549934521_2420480_187174_n_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Two birds one stone: \"classic\" hitchens article on Kim's North Korea: Kim Jong-il's regime is even weirder and m... http://t.co/tpvhyjHz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:43 +0000", "from_user": "BrittanyChere", "from_user_id": 32828316, "from_user_id_str": "32828316", "from_user_name": "Brittany M.", "geo": null, "id": 148834912600997900, "id_str": "148834912600997888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1443554658/321251894_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1443554658/321251894_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I need to pick up a hobby.. this being at home during the day is for the birds!!! Idk what I'm going to do come Jan.! Ugh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:42 +0000", "from_user": "JustBeano", "from_user_id": 138074659, "from_user_id_str": "138074659", "from_user_name": "Beano French", "geo": null, "id": 148834911397216260, "id_str": "148834911397216256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664306622/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664306622/image_normal.jpg", "source": "<a href="http://www.nibirutech.com" rel="nofollow">TwitBird</a>", "text": "So I'll Be Cheering For The Jets This Saturday!!! Nd My Birds Gotta Win Out", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:42 +0000", "from_user": "purplekisskia", "from_user_id": 214542094, "from_user_id_str": "214542094", "from_user_name": "Shy Johnson", "geo": null, "id": 148834910264762370, "id_str": "148834910264762368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686785738/x2XwkrmD_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686785738/x2XwkrmD_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @2piecee: @purplekisskia Did Yu See Tht Eagles Game Yesterday? How Bout Those Birds! Lol We On Our Way!!\\n#EagleNation", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:42 +0000", "from_user": "BevPhotos", "from_user_id": 19466086, "from_user_id_str": "19466086", "from_user_name": "Bev ", "geo": null, "id": 148834909581094900, "id_str": "148834909581094912", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1168019560/4450777546_c4c5f4ea6f_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1168019560/4450777546_c4c5f4ea6f_o_normal.jpg", "source": "<a href="http://stone.com/Twittelator" rel="nofollow">Twittelator</a>", "text": "RT @simonscotland: RT @KerriFar Celebrate Today ~ http://t.co/jiSufiI9 #bluebird #birds #nature #outdoors", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:41 +0000", "from_user": "DatDudeNickT93", "from_user_id": 45289019, "from_user_id_str": "45289019", "from_user_name": "The Kid Frankie", "geo": null, "id": 148834904472420350, "id_str": "148834904472420353", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1618803544/DatDudeNickT93_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618803544/DatDudeNickT93_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Birds flyin high u kno how I feel", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:39 +0000", "from_user": "GodsGift_93", "from_user_id": 399748474, "from_user_id_str": "399748474", "from_user_name": "Jason Lewis", "geo": null, "id": 148834899741257730, "id_str": "148834899741257728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679880108/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679880108/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@Naturalle_KeMoe: Somebody was driving in front us and they slowed down and she said they slowed down fa some damn birds..hit them bitches", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:37 +0000", "from_user": "guero_pacquiao", "from_user_id": 66384844, "from_user_id_str": "66384844", "from_user_name": "david othon", "geo": null, "id": 148834888030765060, "id_str": "148834888030765057", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664844331/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664844331/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@andieochoa: Los pajaros rojos de angry birds son los mas chafos #winterbreak #nothingtodo // Vete a montaaaaaaar!!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:35 +0000", "from_user": "Thykst_Dym", "from_user_id": 124279961, "from_user_id_str": "124279961", "from_user_name": "Lucinda Damone ", "geo": null, "id": 148834881995149300, "id_str": "148834881995149312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696032734/331557579_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696032734/331557579_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "This a woman shit is for the birds. I'm extremely miserable right now n I wanna cry for no damn reason", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:35 +0000", "from_user": "BlueMark18", "from_user_id": 99015505, "from_user_id_str": "99015505", "from_user_name": "Mark", "geo": null, "id": 148834879205949440, "id_str": "148834879205949440", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691777224/LewisHamiltonHelmetBrazil_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691777224/LewisHamiltonHelmetBrazil_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@jkno87 \\u00BFPor qu\\u00E9 odias a los Angry Birds? Hahaha", "to_user": "jkno87", "to_user_id": 26190756, "to_user_id_str": "26190756", "to_user_name": "jose cano", "in_reply_to_status_id": 148834756463824900, "in_reply_to_status_id_str": "148834756463824896"}, +{"created_at": "Mon, 19 Dec 2011 18:39:34 +0000", "from_user": "CAPITALJD", "from_user_id": 103535117, "from_user_id_str": "103535117", "from_user_name": "CAPITAL JD", "geo": null, "id": 148834876441886720, "id_str": "148834876441886720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/624821979/l_dd1ad7730eaaa3d99aa2839506cb1c82_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/624821979/l_dd1ad7730eaaa3d99aa2839506cb1c82_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Tweet Tweet\\nTweet Tweet \\nBirds chirpin", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:33 +0000", "from_user": "whitneez_way", "from_user_id": 33368326, "from_user_id_str": "33368326", "from_user_name": " respect my THOUGHTS", "geo": null, "id": 148834871194812400, "id_str": "148834871194812418", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700322676/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700322676/image_normal.jpg", "source": "<a href="http://www.handmark.com" rel="nofollow">TweetCaster for iOS</a>", "text": "everything else is for the birds she has her friends and I have mine BUT our bond ... Pssshhhhh we've been thru too much !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:30 +0000", "from_user": "DABOIGENIUS", "from_user_id": 18998220, "from_user_id_str": "18998220", "from_user_name": "Kwame T. Hall", "geo": null, "id": 148834861430485000, "id_str": "148834861430484992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701325400/Dbg_lee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701325400/Dbg_lee_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Im looking 4wd to joining #TeamMac this PC ish for the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:29 +0000", "from_user": "aboutGardens", "from_user_id": 278086682, "from_user_id_str": "278086682", "from_user_name": "about garden", "geo": null, "id": 148834857080987650, "id_str": "148834857080987650", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1302094860/trowel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1302094860/trowel_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Peckish Table Seed Blend Bird Food 3kg http://t.co/XJ8SVMF7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:26 +0000", "from_user": "J_Word9", "from_user_id": 50515581, "from_user_id_str": "50515581", "from_user_name": "Jonathan Word", "geo": null, "id": 148834844883951600, "id_str": "148834844883951617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639777324/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639777324/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "music and angry birds kept me occupied during class first semester.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:25 +0000", "from_user": "Phenomenal_Ju", "from_user_id": 147642153, "from_user_id_str": "147642153", "from_user_name": "Julie-Anne Blanc", "geo": null, "id": 148834839246807040, "id_str": "148834839246807040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687612216/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687612216/me_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I really forgot how thugged out the birds were up here...and they no longer have all day metro cards.#losing", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:25 +0000", "from_user": "_DonDizzle_", "from_user_id": 104700828, "from_user_id_str": "104700828", "from_user_name": "Formerly QStorm19", "geo": null, "id": 148834838034661380, "id_str": "148834838034661377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1631520138/1320899465650_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631520138/1320899465650_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Yup \\u00AB@QuieroAmor_ :(\\nThat sucks. All 4 of em? RT @_DonDizzle_: Just got my wisdom teeth pulled smh this shit is for the birds\\u00BB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:23 +0000", "from_user": "BeezyFBaby23", "from_user_id": 297111471, "from_user_id_str": "297111471", "from_user_name": "Brandon McNeal", "geo": null, "id": 148834832519135230, "id_str": "148834832519135234", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687035714/DO5083oa_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687035714/DO5083oa_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Lookin for divine and a lil intervention but the birds dont fly.. without my permission", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:22 +0000", "from_user": "SonuNation", "from_user_id": 99115210, "from_user_id_str": "99115210", "from_user_name": "Rajvinder singh", "geo": null, "id": 148834828375179260, "id_str": "148834828375179265", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1613445301/sonunation_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1613445301/sonunation_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iTweetFunny_: Dad: A bird told me you are doing drugs..... Me: You're talking with birds and I'm the one doing drugs?!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:22 +0000", "from_user": "mommakarii", "from_user_id": 423543681, "from_user_id_str": "423543681", "from_user_name": "Karina Luna", "geo": null, "id": 148834826638721020, "id_str": "148834826638721024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670234835/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670234835/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\"@ABLozano19: 3 Months With @jadoreMaggie ! Best 3 Months Ever and still more to come (; #LovingHer\\u201D STFU!!! Jk congratulations love birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:20 +0000", "from_user": "Yung_Eazie", "from_user_id": 52622946, "from_user_id_str": "52622946", "from_user_name": "DatNugga", "geo": null, "id": 148834819730718720, "id_str": "148834819730718720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1647625320/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647625320/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Chilln where da birds be", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:17 +0000", "from_user": "Dewx222_BITCHH", "from_user_id": 310283806, "from_user_id_str": "310283806", "from_user_name": "T a m y a h h : )", "geo": null, "id": 148834807546249200, "id_str": "148834807546249216", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1656384247/PB9GoK3b_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656384247/PB9GoK3b_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Playingg Angryy Birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:17 +0000", "from_user": "stacygrows", "from_user_id": 15207364, "from_user_id_str": "15207364", "from_user_name": "Stacy Tornio", "geo": null, "id": 148834807273627650, "id_str": "148834807273627649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1408153183/Picture_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1408153183/Picture_5_normal.png", "source": "<a href="http://www.twhirl.org" rel="nofollow">Seesmic twhirl</a>", "text": "RT @birdorable: Enter to win $50 merch from Wild Birds Unlimited http://t.co/9mkDd71v Winner drawn tomorrow!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:17 +0000", "from_user": "_KaraNicole", "from_user_id": 336727149, "from_user_id_str": "336727149", "from_user_name": "Kara Scott", "geo": null, "id": 148834804559917060, "id_str": "148834804559917056", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1666031990/avatar_normal.JPEG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666031990/avatar_normal.JPEG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @_AlecBrooks_: The bird, bird, bird. The birds the word, get it!?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:16 +0000", "from_user": "fancyme1", "from_user_id": 39346756, "from_user_id_str": "39346756", "from_user_name": "sha Hollman", "geo": null, "id": 148834800696954880, "id_str": "148834800696954880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1430774349/K4M2adpr_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1430774349/K4M2adpr_normal", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @NotoriousLIZ: 2011 was a bad year for birds............The feather earrings trend.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:15 +0000", "from_user": "Roxanefvj", "from_user_id": 426262051, "from_user_id_str": "426262051", "from_user_name": "Roxane Chafetz", "geo": null, "id": 148834795047231500, "id_str": "148834795047231488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668798016/LLCM-4894_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668798016/LLCM-4894_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@DoOmiiPedrerOs Ya must try out Pigeon Palooza (the next angry birds)- it is in Android Mktplce - should be in App Store next week.", "to_user": "DoOmiiPedrerOs", "to_user_id": 212423577, "to_user_id_str": "212423577", "to_user_name": "TeamO\\u2661", "in_reply_to_status_id": 148824894547828740, "in_reply_to_status_id_str": "148824894547828736"}, +{"created_at": "Mon, 19 Dec 2011 18:39:14 +0000", "from_user": "Tildaies", "from_user_id": 426262628, "from_user_id_str": "426262628", "from_user_name": "Tilda Heltzel", "geo": null, "id": 148834793138819070, "id_str": "148834793138819073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668798045/LLCM-2344_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668798045/LLCM-2344_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@nyduece21 Ya have to try Pigeon Palooza (the next angry birds)- it is live in Android Mktplce - should be in ITunes soon.", "to_user": "nyduece21", "to_user_id": 159739191, "to_user_id_str": "159739191", "to_user_name": "derek", "in_reply_to_status_id": 148819584890314750, "in_reply_to_status_id_str": "148819584890314753"}, +{"created_at": "Mon, 19 Dec 2011 18:39:12 +0000", "from_user": "yasuhara_k", "from_user_id": 107780328, "from_user_id_str": "107780328", "from_user_name": "yasuhara kenta", "geo": null, "id": 148834782472716300, "id_str": "148834782472716288", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1554847041/11_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554847041/11_normal.jpg", "source": "<a href="http://apiwiki.twitter.com/" rel="nofollow">ROPELAND API</a>", "text": "RT @COIL_bot: \\u6709\\u7D42\\u306E\\u7F8E\\u98FE\\u308B\\u4EBA\\u751F\\u304C\\u50D5\\u3092\\u5F85\\u3063\\u3066\\u3044\\u308B\\u3000\\u5371\\u306A\\u3044\\u6A4B\\u6E21\\u308B\\u3053\\u306E\\u50D5\\u3092\\u8A31\\u3057\\u3066\\u306D \\u3010BIRDS\\u3011", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:09 +0000", "from_user": "Marcelinehhs", "from_user_id": 440217046, "from_user_id_str": "440217046", "from_user_name": "Marceline Fullford", "geo": null, "id": 148834773408821250, "id_str": "148834773408821250", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700584038/large_photo_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700584038/large_photo_1__normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Birds of Bahrain: http://t.co/9NSRA1hu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:08 +0000", "from_user": "LoVelli_DanNy", "from_user_id": 269513667, "from_user_id_str": "269513667", "from_user_name": "Danielle Sims", "geo": null, "id": 148834767981395970, "id_str": "148834767981395968", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702454487/1324313850096_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702454487/1324313850096_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Angry birds finna piss me off !!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:07 +0000", "from_user": "Call_Me_Goldo", "from_user_id": 395128559, "from_user_id_str": "395128559", "from_user_name": "Steven", "geo": null, "id": 148834762419744770, "id_str": "148834762419744768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691395677/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691395677/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "My tl is full of jail birds lmao. #YaTuSabe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:05 +0000", "from_user": "jkno87", "from_user_id": 26190756, "from_user_id_str": "26190756", "from_user_name": "jose cano", "geo": null, "id": 148834756463824900, "id_str": "148834756463824896", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1503828638/street_fighter_iii_3rd_strike_by_toshiharu-d3l6691_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1503828638/street_fighter_iii_3rd_strike_by_toshiharu-d3l6691_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Malditos sean angry birds!! tengo que verlos hasta en los cheetos. Ya no quiero vivir en este planeta", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:58 +0000", "from_user": "DakiyaC", "from_user_id": 312188576, "from_user_id_str": "312188576", "from_user_name": "Dakiya curtis", "geo": null, "id": 148834724318691330, "id_str": "148834724318691329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "I've been using Angry Birds and I think you might like it. Check it out from your Android phone:\\nhttp://t.co/Rn5diQOv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:56 +0000", "from_user": "SirBlazeBlaze", "from_user_id": 38514060, "from_user_id_str": "38514060", "from_user_name": "Prince De' Oscar", "geo": null, "id": 148834719344246800, "id_str": "148834719344246784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693217460/Zz_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693217460/Zz_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Tru il just play angry birds anyways RT @PinkPillPopper @SirBlazeBlaze Bring it for the hell of it", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:38:56 +0000", "from_user": "bdyerr", "from_user_id": 258020001, "from_user_id_str": "258020001", "from_user_name": "Brendan Dyer", "geo": null, "id": 148834716563406850, "id_str": "148834716563406848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1574177042/303941_10150344203559544_577039543_8029042_1145078606_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1574177042/303941_10150344203559544_577039543_8029042_1145078606_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "summer evening, birds are calling", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:55 +0000", "from_user": "_MirianLeal", "from_user_id": 284519578, "from_user_id_str": "284519578", "from_user_name": "Mirian Leal", "geo": null, "id": 148834714856329200, "id_str": "148834714856329218", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1317122438/Mirian_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317122438/Mirian_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "P\\u00F4neis Malditos? Por que n\\u00E3o Angry Birds Malditos? #BigFollow: http://t.co/3QBiaHXK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:51 +0000", "from_user": "08blasop", "from_user_id": 332986860, "from_user_id_str": "332986860", "from_user_name": "Sophie Blackwell", "geo": null, "id": 148834697831649280, "id_str": "148834697831649280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702582705/111215-184912_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702582705/111215-184912_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "no one is free, even the birds are chained to the sky", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:50 +0000", "from_user": "HelloTricey", "from_user_id": 32753037, "from_user_id_str": "32753037", "from_user_name": "Patrice Powell", "geo": null, "id": 148834694069366800, "id_str": "148834694069366784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702355194/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702355194/image_normal.jpg", "source": "<a href="http://www.handmark.com" rel="nofollow">TweetCaster for iOS</a>", "text": "This shit is for the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:49 +0000", "from_user": "Keoniaaaa_", "from_user_id": 33141302, "from_user_id_str": "33141302", "from_user_name": "Ricky Todd's \\u2764", "geo": null, "id": 148834689392721920, "id_str": "148834689392721920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1624627675/IMG_0514_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624627675/IMG_0514_normal.JPG", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "Everything that I got, I got from slanging birds..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:48 +0000", "from_user": "Mariia_Vidal", "from_user_id": 367067815, "from_user_id_str": "367067815", "from_user_name": "Maria Vidal", "geo": null, "id": 148834682782482430, "id_str": "148834682782482432", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1590983653/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1590983653/image_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@Crispecab x lo mns aora m va bn el interneet y ma\\u00F1ana en dibujo podre jugar a los sims o al angry birds jajajajajajajajajajaja", "to_user": "Crispecab", "to_user_id": 404499708, "to_user_id_str": "404499708", "to_user_name": "Cristina Pe\\u00F1as", "in_reply_to_status_id": 148832170276945920, "in_reply_to_status_id_str": "148832170276945920"}, +{"created_at": "Mon, 19 Dec 2011 18:38:46 +0000", "from_user": "Hollywood_GB", "from_user_id": 52901890, "from_user_id_str": "52901890", "from_user_name": "LaDrena Hollywood", "geo": null, "id": 148834674716839940, "id_str": "148834674716839936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692347292/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692347292/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Are you shooting doves in yo backyard too?!? Lol \\u201C@MrToo_LIVE: Let me blast these watching ass birds out my sky real quick\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:39 +0000", "from_user": "32wilson32", "from_user_id": 249375401, "from_user_id_str": "249375401", "from_user_name": "James Wilson", "geo": null, "id": 148834647990738940, "id_str": "148834647990738945", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697098821/387895_10150581765823345_532153344_11827824_672071667_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697098821/387895_10150581765823345_532153344_11827824_672071667_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@RoryJDevlin all the birds on sky sports news are tidy!", "to_user": "RoryJDevlin", "to_user_id": 201429079, "to_user_id_str": "201429079", "to_user_name": "*Rory Devlin", "in_reply_to_status_id": 148833517818744830, "in_reply_to_status_id_str": "148833517818744832"}, +{"created_at": "Mon, 19 Dec 2011 18:38:36 +0000", "from_user": "AustynNestor", "from_user_id": 346589775, "from_user_id_str": "346589775", "from_user_name": "Austyn Nestor", "geo": null, "id": 148834633612673020, "id_str": "148834633612673024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697804141/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697804141/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @Mav23lb: @maddi651 @joeyrosas39 gosh you two love birds!! (:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:36 +0000", "from_user": "any_fuckin_way", "from_user_id": 143281374, "from_user_id_str": "143281374", "from_user_name": "- unKnown.", "geo": null, "id": 148834632962547700, "id_str": "148834632962547713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696819389/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696819389/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Everybody I talk to have anger problems, i guess birds of a feather really flock together", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:34 +0000", "from_user": "DannDraper", "from_user_id": 321625762, "from_user_id_str": "321625762", "from_user_name": "Daniel Cruz Valle", "geo": null, "id": 148834626830475260, "id_str": "148834626830475264", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1408567147/mad_men_cd_cover_325x325_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1408567147/mad_men_cd_cover_325x325_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Angry Birds y las torres gemelas http://t.co/iFivoINX v\\u00EDa @cuantocabron \\n\\nVi\\u00F1eta bestia donde las haya. Pero me he reido, y mucho.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:29 +0000", "from_user": "RO_PRETTY_BAD", "from_user_id": 236482070, "from_user_id_str": "236482070", "from_user_name": " R O ", "geo": null, "id": 148834605875728400, "id_str": "148834605875728385", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699287341/RO_PRETTY_BAD_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699287341/RO_PRETTY_BAD_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @NotoriousLIZ: 2011 was a bad year for birds............The feather earrings trend.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:29 +0000", "from_user": "ORoutdoors", "from_user_id": 256739612, "from_user_id_str": "256739612", "from_user_name": "Oregon Outdoors", "geo": null, "id": 148834602985865200, "id_str": "148834602985865217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1550571929/Oregon_Outdoors_Logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1550571929/Oregon_Outdoors_Logo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Oregon Outdoors for December: A day for the birds, Pat Wray and last-minute gifts for people who love the outdoors. http://t.co/AUyc6SHv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:27 +0000", "from_user": "AmirHawk", "from_user_id": 267215353, "from_user_id_str": "267215353", "from_user_name": " \\u00ABAMIR\\u00BB", "geo": null, "id": 148834596522430460, "id_str": "148834596522430464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700194262/IMG-20110801-00121-11_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700194262/IMG-20110801-00121-11_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "#Igetsoangry when playing angry birds. Hahaha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:27 +0000", "from_user": "Louracaux", "from_user_id": 426260722, "from_user_id_str": "426260722", "from_user_name": "Loura Emmert", "geo": null, "id": 148834594127482880, "id_str": "148834594127482881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668792937/LLCM-4006_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668792937/LLCM-4006_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@A_Smooov Go check out Pigeon Palooza (the next angry birds)- it's live in Android Mktplce - will be in ITunes next week.", "to_user": "A_Smooov", "to_user_id": 385221295, "to_user_id_str": "385221295", "to_user_name": "Aeryonna Keeling", "in_reply_to_status_id": 148833723054432260, "in_reply_to_status_id_str": "148833723054432256"}, +{"created_at": "Mon, 19 Dec 2011 18:38:25 +0000", "from_user": "TranFaist9342", "from_user_id": 437576689, "from_user_id_str": "437576689", "from_user_name": "Tran Faist", "geo": null, "id": 148834588649725950, "id_str": "148834588649725952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701209412/88335514619558_100803529951629_100000659473727_21243_2619881_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701209412/88335514619558_100803529951629_100000659473727_21243_2619881_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Good morninggggg sunshineee,,rainbow,,cloud, the birds and the bees, the air, the green leaf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:23 +0000", "from_user": "wowitsnate", "from_user_id": 330135873, "from_user_id_str": "330135873", "from_user_name": "Nate Nate ", "geo": null, "id": 148834578122022900, "id_str": "148834578122022912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1659075262/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659075262/image_normal.jpg", "source": "<a href="http://tweetlogix.com" rel="nofollow">Tweetlogix</a>", "text": "U gotta stop messing with them birds it's pretty ones out there RT @JusG_Lyons: @wowitsnate foh nate lmaoo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:22 +0000", "from_user": "irmanovianti20", "from_user_id": 184517197, "from_user_id_str": "184517197", "from_user_name": "irma novianti", "geo": null, "id": 148834576825991170, "id_str": "148834576825991168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702603186/IMG_4077__E5_89_AF_E6_9C_AC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702603186/IMG_4077__E5_89_AF_E6_9C_AC_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Point blankRT @GueMauTanya: Pilih (angry birds/ayo dance/mafia wars/point blank)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:21 +0000", "from_user": "King_Muh", "from_user_id": 343865825, "from_user_id_str": "343865825", "from_user_name": "Muhsin Abdullah", "geo": null, "id": 148834569293004800, "id_str": "148834569293004800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1465340966/148855_167538526598906_100000282782688_478628_8341211_n_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1465340966/148855_167538526598906_100000282782688_478628_8341211_n_1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@youngdour101 cuz these birds r 2 busy tryin 2 impress other bitches instead of focusing on whats really important.", "to_user": "youngdour101", "to_user_id": 278358371, "to_user_id_str": "278358371", "to_user_name": "YoungDour", "in_reply_to_status_id": 148833852658434050, "in_reply_to_status_id_str": "148833852658434050"}, +{"created_at": "Mon, 19 Dec 2011 18:38:21 +0000", "from_user": "Bkxtcxhk", "from_user_id": 440615777, "from_user_id_str": "440615777", "from_user_name": "Bkxtcxhkx", "geo": null, "id": 148834568760340480, "id_str": "148834568760340480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MrKattWilliams: I was masturbating in a Tree, then my sperm dropped on somebody head, then the person said.....\"I HATE WHEN BIRDS SHIT ON ME!!!\" =)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:18 +0000", "from_user": "shelamvpersaud", "from_user_id": 277865338, "from_user_id_str": "277865338", "from_user_name": "shela persaud", "geo": null, "id": 148834558832414720, "id_str": "148834558832414720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1609129352/1142112_relaxing_girl_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609129352/1142112_relaxing_girl_2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Floral Friends - Humming Birds and Flowers: 3.5 Gallon tin filed with Popcorn World's original Vanilla Butter w/... http://t.co/LCqES5W4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:18 +0000", "from_user": "nickihwoolford", "from_user_id": 277702045, "from_user_id_str": "277702045", "from_user_name": "nicki woolford", "geo": null, "id": 148834557368602620, "id_str": "148834557368602624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1609136381/1149929_pet_wedding_2009_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609136381/1149929_pet_wedding_2009_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Floral Friends - Humming Birds and Flowers: 3.5 Gallon tin filed with Popcorn World's original Vanilla Butter w/... http://t.co/HecpS72b", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:18 +0000", "from_user": "brittapcwaldo", "from_user_id": 277702015, "from_user_id_str": "277702015", "from_user_name": "britta waldo", "geo": null, "id": 148834557104373760, "id_str": "148834557104373760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1609137232/1153964_red_pullover_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609137232/1153964_red_pullover_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Floral Friends - Humming Birds and Flowers: 3.5 Gallon tin filed with Popcorn World's original Vanilla Butter w/... http://t.co/3zQgfAP2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:17 +0000", "from_user": "sherrievlkeure", "from_user_id": 277925025, "from_user_id_str": "277925025", "from_user_name": "sherrie eure", "geo": null, "id": 148834554910736400, "id_str": "148834554910736384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1609138413/1159804_miss_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609138413/1159804_miss_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Floral Friends - Humming Birds and Flowers: 3.5 Gallon tin filed with Popcorn World's original Vanilla Butter w/... http://t.co/FDUqD3dZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:16 +0000", "from_user": "LablanchFanny", "from_user_id": 321335111, "from_user_id_str": "321335111", "from_user_name": "Lablanche Fanny", "geo": null, "id": 148834550317989900, "id_str": "148834550317989889", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1411130926/Photo_08_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1411130926/Photo_08_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "RT @KernRiverPrsrv: This Red-shouldered Hawk was spotted on the Bakersfield Christmas Bird Count. These birds are riparian obligates... http://t.co/65oNMpMa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:15 +0000", "from_user": "_DiiegoCamargo", "from_user_id": 319310772, "from_user_id_str": "319310772", "from_user_name": "Diego Camargo", "geo": null, "id": 148834545209319420, "id_str": "148834545209319424", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1400691428/Mor_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1400691428/Mor_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "carai hoje tem nada aqui no trampo to jogando angry birds dia todo kkk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:14 +0000", "from_user": "vtvolleygirl", "from_user_id": 248749820, "from_user_id_str": "248749820", "from_user_name": "Eva Zajkowski", "geo": null, "id": 148834539215659000, "id_str": "148834539215659008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "<%= encodeURIComponent(document.title) %> http://t.co/2F6I7xNz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:13 +0000", "from_user": "michael_hersh", "from_user_id": 251347199, "from_user_id_str": "251347199", "from_user_name": "Michael Hersh", "geo": null, "id": 148834538531987460, "id_str": "148834538531987456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1606400524/linked_in_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606400524/linked_in_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@benjaminwest11 I can't believe you stole all your dads birds! #iveseenyouplaybuckhunter @spawningsalmon @chaz9908", "to_user": "benjaminwest11", "to_user_id": 227196264, "to_user_id_str": "227196264", "to_user_name": "Benjamin Carroll"}, +{"created_at": "Mon, 19 Dec 2011 18:38:13 +0000", "from_user": "giagoesrawr", "from_user_id": 40433093, "from_user_id_str": "40433093", "from_user_name": "lord voldemort.", "geo": null, "id": 148834535193317380, "id_str": "148834535193317378", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1675877583/snapshot22_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675877583/snapshot22_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@flyingspagetti no, I didn't. But you did, so it's like killing two birds with one stone.....actually I don't even know what I said. okay.", "to_user": "flyingspagetti", "to_user_id": 54721369, "to_user_id_str": "54721369", "to_user_name": "Philip Thearle", "in_reply_to_status_id": 148833783452401660, "in_reply_to_status_id_str": "148833783452401664"}, +{"created_at": "Mon, 19 Dec 2011 18:38:10 +0000", "from_user": "brandyjackson", "from_user_id": 14147120, "from_user_id_str": "14147120", "from_user_name": "brandyjackson", "geo": null, "id": 148834526456586240, "id_str": "148834526456586241", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1565431521/finals-04_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1565431521/finals-04_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Love birds successfully moved to the winter pasture.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:08 +0000", "from_user": "Alidasao", "from_user_id": 426261441, "from_user_id_str": "426261441", "from_user_name": "Alida Hartfield", "geo": null, "id": 148834514364416000, "id_str": "148834514364416000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668795613/LLCM-0715_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668795613/LLCM-0715_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Kimbabe92 Ya must check out Pigeon Palooza (the next angry birds)- it's in Android Mktplce - will be in App Store next week.", "to_user": "Kimbabe92", "to_user_id": 296493749, "to_user_id_str": "296493749", "to_user_name": "Kimberly Irene \\u2665", "in_reply_to_status_id": 148812904290983940, "in_reply_to_status_id_str": "148812904290983937"}, +{"created_at": "Mon, 19 Dec 2011 18:38:06 +0000", "from_user": "HeelsOverSneaks", "from_user_id": 179865691, "from_user_id_str": "179865691", "from_user_name": "Sunshine Shante'", "geo": null, "id": 148834508223938560, "id_str": "148834508223938560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1632808146/sitedit_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632808146/sitedit_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @liloozie3: \\u201C@HeelsOverSneaks: Worrying is for the birds...\\u201D exactly", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:06 +0000", "from_user": "lucashit_", "from_user_id": 108970175, "from_user_id_str": "108970175", "from_user_name": "Lucas Tonatto ", "geo": null, "id": 148834506193907700, "id_str": "148834506193907712", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681954917/problem_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681954917/problem_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "acho que vou ir jogar angry birds............ rsrs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:58 +0000", "from_user": "haynes_amy", "from_user_id": 69233444, "from_user_id_str": "69233444", "from_user_name": "Amy-Lee Haynes", "geo": null, "id": 148834475093147650, "id_str": "148834475093147648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702597686/Picture_335_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702597686/Picture_335_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "birds by kate nash is a beautiful song.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:57 +0000", "from_user": "Justbirds1", "from_user_id": 291680688, "from_user_id_str": "291680688", "from_user_name": "Bev", "geo": null, "id": 148834470605238270, "id_str": "148834470605238273", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1335631073/5261855304_0f68f9ba91_m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335631073/5261855304_0f68f9ba91_m_normal.jpg", "source": "<a href="http://www.twaitter.com" rel="nofollow">Twaitter</a>", "text": "Immature Bald Eagle http://t.co/MmUxDVoR #birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:56 +0000", "from_user": "Kyle_DaGiant", "from_user_id": 167625419, "from_user_id_str": "167625419", "from_user_name": "Kyle Randolph ", "geo": null, "id": 148834465500770300, "id_str": "148834465500770306", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1370613593/dorm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1370613593/dorm_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Honestly this shit is for the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:55 +0000", "from_user": "QuieroAmor_", "from_user_id": 168745362, "from_user_id_str": "168745362", "from_user_name": "Quita Williams", "geo": null, "id": 148834463307145200, "id_str": "148834463307145216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1682569754/bamagrl_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682569754/bamagrl_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": ":(\\nThat sucks. All 4 of em? RT @_DonDizzle_: Just got my wisdom teeth pulled smh this shit is for the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:54 +0000", "from_user": "Photobug52", "from_user_id": 90379242, "from_user_id_str": "90379242", "from_user_name": "Alan S Hochman Photo", "geo": null, "id": 148834458236227600, "id_str": "148834458236227584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/741189496/P1010013crop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/741189496/P1010013crop_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Red-winged Blackbird at HoleyLand WMA http://t.co/3pdjsq2M #bird #birding #birds #blackbird Visit http://t.co/VdlG7gZ2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:53 +0000", "from_user": "NotoriousLIZ", "from_user_id": 102583149, "from_user_id_str": "102583149", "from_user_name": "Liz. That's All", "geo": null, "id": 148834452624244740, "id_str": "148834452624244736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698869669/Photo_on_2011-12-17_at_14.41__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698869669/Photo_on_2011-12-17_at_14.41__2_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "2011 was a bad year for birds............The feather earrings trend.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:49 +0000", "from_user": "ipreferEmily", "from_user_id": 225165934, "from_user_id_str": "225165934", "from_user_name": "Emma Campbell", "geo": null, "id": 148834435150790660, "id_str": "148834435150790657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1594318721/emma_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1594318721/emma_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Ashwaah you always pick up the old birds lmaox", "to_user": "Ashwaah", "to_user_id": 109073773, "to_user_id_str": "109073773", "to_user_name": "Ashley Campbell", "in_reply_to_status_id": 148834323305476100, "in_reply_to_status_id_str": "148834323305476097"}, +{"created_at": "Mon, 19 Dec 2011 18:37:47 +0000", "from_user": "QianRuisha", "from_user_id": 357651555, "from_user_id_str": "357651555", "from_user_name": "Ruisha Qian", "geo": null, "id": 148834428947406850, "id_str": "148834428947406848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1613303799/AnneGreenGables2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1613303799/AnneGreenGables2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@xiamer_a99 They have pigeons; we have a rooster! We both have birds...", "to_user": "xiamer_a99", "to_user_id": 351705075, "to_user_id_str": "351705075", "to_user_name": "Xia Jiang", "in_reply_to_status_id": 148807642666643460, "in_reply_to_status_id_str": "148807642666643456"}, +{"created_at": "Mon, 19 Dec 2011 18:37:45 +0000", "from_user": "TheRealMiffy", "from_user_id": 214829477, "from_user_id_str": "214829477", "from_user_name": "Thomas Highfield", "geo": null, "id": 148834420097433600, "id_str": "148834420097433600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1615480345/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615480345/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@benrobbo1989 @sarah_duffey @danallinson1 there would be pints and birds flying all over with robbo out #bigbackattack", "to_user": "benrobbo1989", "to_user_id": 196140233, "to_user_id_str": "196140233", "to_user_name": "Ben Robinson", "in_reply_to_status_id": 148834195685392400, "in_reply_to_status_id_str": "148834195685392385"}, +{"created_at": "Mon, 19 Dec 2011 18:37:44 +0000", "from_user": "DearOldPuchiex3", "from_user_id": 132352718, "from_user_id_str": "132352718", "from_user_name": "Sharilyn Figueroa", "geo": null, "id": 148834414573531140, "id_str": "148834414573531137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1628968345/Puchie_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628968345/Puchie_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for iPhone</a>", "text": "i swear i never seen soo many birds in my life !!!!!!!! -.-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:43 +0000", "from_user": "Joe_Odwyer11", "from_user_id": 332812240, "from_user_id_str": "332812240", "from_user_name": "Joey O'Dwyer.", "geo": null, "id": 148834411222286340, "id_str": "148834411222286337", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701247435/DSCF2712_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701247435/DSCF2712_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@MikeWilson95 where was you off? Getting ye birds present", "to_user": "MikeWilson95", "to_user_id": 316425980, "to_user_id_str": "316425980", "to_user_name": "Michael Wilson", "in_reply_to_status_id": 148833713944399870, "in_reply_to_status_id_str": "148833713944399872"}, +{"created_at": "Mon, 19 Dec 2011 18:37:33 +0000", "from_user": "asliiakkus", "from_user_id": 250741192, "from_user_id_str": "250741192", "from_user_name": "Asl\\u0131 Akku\\u015F", "geo": null, "id": 148834369954512900, "id_str": "148834369954512896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1492074549/makeover__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1492074549/makeover__1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Angry Birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:30 +0000", "from_user": "Raspberrih", "from_user_id": 120424576, "from_user_id_str": "120424576", "from_user_name": "Helen Raspberrih", "geo": null, "id": 148834357866528770, "id_str": "148834357866528768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1599292270/180720112378_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599292270/180720112378_normal.jpg", "source": "<a href="http://sgBEAT.com/" rel="nofollow">sgBEAT</a>", "text": "I hear birds chirping outside my window. It's not even 3 a.m.... It's abnormal. But I wouldn't know.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:29 +0000", "from_user": "PhiIipKross", "from_user_id": 362645563, "from_user_id_str": "362645563", "from_user_name": "Philip Kross", "geo": null, "id": 148834351898038270, "id_str": "148834351898038272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1618344844/NEW_Philip_Kross_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618344844/NEW_Philip_Kross_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Fuck yo\\u00FC birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:27 +0000", "from_user": "manuubritto", "from_user_id": 377075932, "from_user_id_str": "377075932", "from_user_name": "Manuela Britto", "geo": null, "id": 148834342033047550, "id_str": "148834342033047552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693614578/304026_2623892846129_1519493190_2769400_1395715431_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693614578/304026_2623892846129_1519493190_2769400_1395715431_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "genteee n sei jogos p. baixar no iphone!!! so tenho hellkid angry birds e kamikazeee race", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:26 +0000", "from_user": "CorpusTXDaily", "from_user_id": 193192262, "from_user_id_str": "193192262", "from_user_name": "Corpus Christi", "geo": null, "id": 148834339206082560, "id_str": "148834339206082560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1178881319/Corpus_Christi__TX_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1178881319/Corpus_Christi__TX_normal.jpg", "source": "<a href="http://www.snsanalytics.com" rel="nofollow">SNS Analytics</a>", "text": "Christmas time brings thankful thoughts of birds, friends, family http://t.co/O1chs7se", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:25 +0000", "from_user": "babyDollVIXENN", "from_user_id": 230637741, "from_user_id_str": "230637741", "from_user_name": "r.i.p. Gunnaaa!", "geo": null, "id": 148834336668516350, "id_str": "148834336668516352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1651865233/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651865233/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "everything I got I got frm slangin birds !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:25 +0000", "from_user": "ShootinStarHeta", "from_user_id": 202118593, "from_user_id_str": "202118593", "from_user_name": "Heta Bhuta", "geo": null, "id": 148834334831415300, "id_str": "148834334831415296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1143763009/46946_1602343745304_1437390687_1582738_5968243_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1143763009/46946_1602343745304_1437390687_1582738_5968243_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "#thatawkwardmoment when your mother knows how to play angry birds & fruit ninja! But she won't know how to check her mail!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:25 +0000", "from_user": "DREAMCHASERS911", "from_user_id": 400430924, "from_user_id_str": "400430924", "from_user_name": "Dominic Bonner", "geo": null, "id": 148834334705582080, "id_str": "148834334705582080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701481092/00GTC6pt_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701481092/00GTC6pt_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "(Birds eye view) second day n a row i seen a hawk swoop dwn on it's pray (mustmeansumthin).... @DrewLocOnIt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:19 +0000", "from_user": "AJj3311", "from_user_id": 394721487, "from_user_id_str": "394721487", "from_user_name": "Jake", "geo": null, "id": 148834308495376400, "id_str": "148834308495376384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1597928971/25372_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1597928971/25372_normal.JPG", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "A #Photo of #Two #Birds on the #Bank\\thttp://t.co/z0TgOBBZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:18 +0000", "from_user": "MatthewSlaney", "from_user_id": 107132185, "from_user_id_str": "107132185", "from_user_name": "Matthew Slaney", "geo": null, "id": 148834308054990850, "id_str": "148834308054990848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1660980394/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660980394/Untitled_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "My two favourite birds 'Don't put it on facebook' she cried 'twitter is ok' http://t.co/iQ041ii6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:10 +0000", "from_user": "BrookeSachaLove", "from_user_id": 258320462, "from_user_id_str": "258320462", "from_user_name": "SophLouise1D", "geo": null, "id": 148834272168525820, "id_str": "148834272168525824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700233294/Niallster.x_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700233294/Niallster.x_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Gonna get up early tomorrow and make sure that I'm ready for this morning to see the birds @SachaLParkinson and @BrookeLVincent :) xx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:07 +0000", "from_user": "auro_mendez", "from_user_id": 82730896, "from_user_id_str": "82730896", "from_user_name": "Aurora M\\u00E9ndez \\u2714", "geo": null, "id": 148834259891785730, "id_str": "148834259891785728", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702607721/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702607721/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Pensandolo bien, quien necesita amor cuando tienes un iPhone y angry birds en el!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:07 +0000", "from_user": "_giuliameneguci", "from_user_id": 238784211, "from_user_id_str": "238784211", "from_user_name": "Giulia Meneguci", "geo": null, "id": 148834258235039740, "id_str": "148834258235039745", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1658144998/sitio24_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658144998/sitio24_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "vou jogar agry birds e depois guitar hero", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:04 +0000", "from_user": "Dr_CorneliusZ16", "from_user_id": 417215494, "from_user_id_str": "417215494", "from_user_name": "Thomas Cornelius", "geo": null, "id": 148834247350820860, "id_str": "148834247350820864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700542265/2011-12-18_13.00.15_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700542265/2011-12-18_13.00.15_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Everything that I got I got from slangin birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:01 +0000", "from_user": "AmberLei_YaDigg", "from_user_id": 318458378, "from_user_id_str": "318458378", "from_user_name": "L.A's Very Own", "geo": null, "id": 148834233908084740, "id_str": "148834233908084736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688157496/Snapshot_20111209_3_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688157496/Snapshot_20111209_3_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "#NP Three Little Birds by: Bob Marley. This beat is frikken AMAZING!!! <3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:56 +0000", "from_user": "HOLLEYWOODSWING", "from_user_id": 233722732, "from_user_id_str": "233722732", "from_user_name": "Boss Holley", "geo": null, "id": 148834215423770620, "id_str": "148834215423770624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1657726369/2GITSBIT_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657726369/2GITSBIT_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@BeauDEEful_252 the birds duh slow ass", "to_user": "BeauDEEful_252", "to_user_id": 385814400, "to_user_id_str": "385814400", "to_user_name": "Deana Clayton", "in_reply_to_status_id": 148833090259787780, "in_reply_to_status_id_str": "148833090259787776"}, +{"created_at": "Mon, 19 Dec 2011 18:36:55 +0000", "from_user": "IDontKnowBro", "from_user_id": 241652458, "from_user_id_str": "241652458", "from_user_name": "Ck Rojas", "geo": null, "id": 148834211288195070, "id_str": "148834211288195074", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1578715524/295855_1925012854205_1508650348_31625903_6134396_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1578715524/295855_1925012854205_1508650348_31625903_6134396_n_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "The sub is talking to me about Fruit Ninja & Angry Birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:48 +0000", "from_user": "Thecoupongirlz", "from_user_id": 202482024, "from_user_id_str": "202482024", "from_user_name": "Michelle", "geo": null, "id": 148834181605109760, "id_str": "148834181605109760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1293729863/coupongirlz_design_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1293729863/coupongirlz_design_normal.JPG", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Free Angry Birds App http://t.co/Pnnmx3Gb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:48 +0000", "from_user": "BIGDIP730AFB", "from_user_id": 55632636, "from_user_id_str": "55632636", "from_user_name": "Dip ", "geo": null, "id": 148834179461808130, "id_str": "148834179461808128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681765931/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681765931/profile_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @ReginaRenea: Birds of a feather...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:44 +0000", "from_user": "kesterpoh", "from_user_id": 26999915, "from_user_id_str": "26999915", "from_user_name": "Kester Poh", "geo": null, "id": 148834161946398720, "id_str": "148834161946398720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702509331/k1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702509331/k1_normal.jpg", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "RT @TechCrunch: Video: The Interactive Angry Birds Christmas Lights Game http://t.co/LJDcavsv by @mjburnsy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:41 +0000", "from_user": "Alberteaux", "from_user_id": 16028797, "from_user_id_str": "16028797", "from_user_name": "Ordaz", "geo": null, "id": 148834151527755780, "id_str": "148834151527755776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1620054155/movember_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620054155/movember_normal.png", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Well nice besides the atmosphere being half JAWS, half The Birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:40 +0000", "from_user": "Renerucn", "from_user_id": 426261959, "from_user_id_str": "426261959", "from_user_name": "Rene Henao", "geo": null, "id": 148834145781547000, "id_str": "148834145781547009", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668797651/LLCM-0795_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668797651/LLCM-0795_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@RawaniiAQ Ya gotta get Pigeon Palooza (the next angry birds)- it's in Android Mktplce - should be in ITunes soon.", "to_user": "RawaniiAQ", "to_user_id": 425888203, "to_user_id_str": "425888203", "to_user_name": "Rawanii\\u03A8*", "in_reply_to_status_id": 148820061052866560, "in_reply_to_status_id_str": "148820061052866560"}, +{"created_at": "Mon, 19 Dec 2011 18:36:38 +0000", "from_user": "bcsanswers", "from_user_id": 17539105, "from_user_id_str": "17539105", "from_user_name": "BeachChair Scientist", "geo": null, "id": 148834140622557200, "id_str": "148834140622557187", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1408278138/bcssmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1408278138/bcssmall_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Flock Of Birds Mistake Walmart Parking Lot For Pond http://t.co/07ZKXNDn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:34 +0000", "from_user": "CKintheMJ", "from_user_id": 14361998, "from_user_id_str": "14361998", "from_user_name": "Cory K", "geo": null, "id": 148834123463667700, "id_str": "148834123463667712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1119214081/Cory_Vandy_hat_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1119214081/Cory_Vandy_hat_normal.JPG", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Birds, like humans, clearly prefer clean places to poop. My freshly-washed car is proof.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:30 +0000", "from_user": "BangzXReshia143", "from_user_id": 214809561, "from_user_id_str": "214809561", "from_user_name": "- Reshia's Husband \\u2665", "geo": null, "id": 148834105415577600, "id_str": "148834105415577600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1692543624/IMG244_-_Anne_Rain_Film_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692543624/IMG244_-_Anne_Rain_Film_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "All the birds peck my woody o_O", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:29 +0000", "from_user": "bwavey_617", "from_user_id": 438102308, "from_user_id_str": "438102308", "from_user_name": "billygana", "geo": null, "id": 148834102144016400, "id_str": "148834102144016384", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698955107/Photo_on_2011-10-18_at_19.25_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698955107/Photo_on_2011-10-18_at_19.25_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @PatrickPiff: Exx gfs = Angry Birds #hahahaha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:28 +0000", "from_user": "ReginaRenea", "from_user_id": 35067378, "from_user_id_str": "35067378", "from_user_name": "ReginaRenea", "geo": null, "id": 148834094673965060, "id_str": "148834094673965056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1570343484/profile_image_1317608162548_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1570343484/profile_image_1317608162548_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Birds of a feather...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:25 +0000", "from_user": "pablin_foster", "from_user_id": 340294447, "from_user_id_str": "340294447", "from_user_name": "Pablo Garcia Anton", "geo": null, "id": 148834084435669000, "id_str": "148834084435668993", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1479283818/chicholonso_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1479283818/chicholonso_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Jugando al Angry Birds con el ordenador podeis instalarlo con el #Chrome", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:25 +0000", "from_user": "jimmysujimmy26", "from_user_id": 261854120, "from_user_id_str": "261854120", "from_user_name": "northland ", "geo": null, "id": 148834083793936400, "id_str": "148834083793936384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1267023033/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1267023033/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Video: Angry Birds Chistmas Lights Game http://t.co/sOPiyIAf via @GeohotJailbreak\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:22 +0000", "from_user": "_BossManDouley", "from_user_id": 231961124, "from_user_id_str": "231961124", "from_user_name": "\\u2708OhSoSLUTTY\\u2708", "geo": null, "id": 148834070271496200, "id_str": "148834070271496192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694782246/redskins_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694782246/redskins_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Games like Temple runner , and angry birds are so addiciting moe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:18 +0000", "from_user": "zacaFK", "from_user_id": 208750320, "from_user_id_str": "208750320", "from_user_name": "@zaca", "geo": null, "id": 148834056241549300, "id_str": "148834056241549313", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679999786/Dup_1_Foto-0008_-_C_pia_-_C_pia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679999786/Dup_1_Foto-0008_-_C_pia_-_C_pia_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "P\\u00F4neis Malditos? Por que n\\u00E3o Angry Birds Malditos? #BigFollow: http://t.co/Z832IhDt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:17 +0000", "from_user": "Britton_Hunter", "from_user_id": 382857413, "from_user_id_str": "382857413", "from_user_name": "Britton Piatt", "geo": null, "id": 148834051267104770, "id_str": "148834051267104768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674313039/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674313039/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "@T_Thieman I finished the exam in 20 effin' minutes. Now We have to sit here for an hour, playing angry birds! #mylifesucks", "to_user": "T_Thieman", "to_user_id": 421987428, "to_user_id_str": "421987428", "to_user_name": "Taylor Thieman"}, +{"created_at": "Mon, 19 Dec 2011 18:36:16 +0000", "from_user": "RoO_Osornio", "from_user_id": 128390583, "from_user_id_str": "128390583", "from_user_name": "rodrigo osornio", "geo": null, "id": 148834046879866880, "id_str": "148834046879866880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1185260691/Foto0076_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1185260691/Foto0076_normal.jpg", "source": "<a href="http://twitpic.com" rel="nofollow">Twitpic</a>", "text": "angry birds!! http://t.co/dk9mqB5Z", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:13 +0000", "from_user": "Jaimeengql", "from_user_id": 426262582, "from_user_id_str": "426262582", "from_user_name": "Jaimee Goldman", "geo": null, "id": 148834035634937860, "id_str": "148834035634937857", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668798708/LLCM-3633_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668798708/LLCM-3633_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Wiekeehh Ya must check out Pigeon Palooza (the next angry birds)- it's avail in Android Mktplce - will be in App Store in a few days.", "to_user": "Wiekeehh", "to_user_id": 436810108, "to_user_id_str": "436810108", "to_user_name": "Wieke de Jager", "in_reply_to_status_id": 148808563219902460, "in_reply_to_status_id_str": "148808563219902464"}, +{"created_at": "Mon, 19 Dec 2011 18:36:13 +0000", "from_user": "zacaFK", "from_user_id": 208750320, "from_user_id_str": "208750320", "from_user_name": "@zaca", "geo": null, "id": 148834035521687550, "id_str": "148834035521687552", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679999786/Dup_1_Foto-0008_-_C_pia_-_C_pia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679999786/Dup_1_Foto-0008_-_C_pia_-_C_pia_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "P\\u00F4neis Malditos? Por que n\\u00E3o Angry Birds Malditos? #BigFollow: http://t.co/wBLmj9Me", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:13 +0000", "from_user": "AyliaMichelle", "from_user_id": 206959366, "from_user_id_str": "206959366", "from_user_name": "Aylia Lawyer", "geo": null, "id": 148834034884157440, "id_str": "148834034884157440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684548510/Picture_113_-_Copyedited_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684548510/Picture_113_-_Copyedited_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "my feet hurt ughhhhhhhhhhhh this wearing heels bit is for the BIRDS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:11 +0000", "from_user": "Kaligigi", "from_user_id": 426265713, "from_user_id_str": "426265713", "from_user_name": "Kali Talsma", "geo": null, "id": 148834026445221900, "id_str": "148834026445221889", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668805839/LLCM-2689_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668805839/LLCM-2689_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@maidy_rivera Ya must check out Pigeon Palooza (the next angry birds)- it's launched in Android Mktplce - will be in App Store next week.", "to_user": "maidy_rivera", "to_user_id": 353936763, "to_user_id_str": "353936763", "to_user_name": "maidylee\\u2122", "in_reply_to_status_id": 148805875879002100, "in_reply_to_status_id_str": "148805875879002114"}, +{"created_at": "Mon, 19 Dec 2011 18:36:10 +0000", "from_user": "auro_mendez", "from_user_id": 82730896, "from_user_id_str": "82730896", "from_user_name": "Aurora M\\u00E9ndez \\u2714", "geo": null, "id": 148834023194632200, "id_str": "148834023194632192", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702607721/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702607721/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "A mi conquistase teniendo angry birds en tu iPhone, tu amor que?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:08 +0000", "from_user": "KatherineFletch", "from_user_id": 233294134, "from_user_id_str": "233294134", "from_user_name": "Katherine Fletcher", "geo": null, "id": 148834014365614080, "id_str": "148834014365614080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1669986622/KLF_6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669986622/KLF_6_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @RachChilcatMEOW: So guys, lets talk turkeys. They lay eggs, right, cos' all birds do.. But who's ever heard of a turkey egg? Ponder this.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:08 +0000", "from_user": "steviem206", "from_user_id": 259934377, "from_user_id_str": "259934377", "from_user_name": "hugh jarse", "geo": null, "id": 148834011949703170, "id_str": "148834011949703168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1365615908/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1365615908/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Yaco1872 sound guy his birds dad is a good friend of mine \\n\\nThey're all going for a beer or 8 tonight I've got manflu so won't make it", "to_user": "Yaco1872", "to_user_id": 222273508, "to_user_id_str": "222273508", "to_user_name": "Ginga Ninja", "in_reply_to_status_id": 148832792615206900, "in_reply_to_status_id_str": "148832792615206914"}, +{"created_at": "Mon, 19 Dec 2011 18:36:08 +0000", "from_user": "RockyTopFan8", "from_user_id": 306298014, "from_user_id_str": "306298014", "from_user_name": "Paul Morrow", "geo": null, "id": 148834010821431300, "id_str": "148834010821431297", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1442897415/20091212225550_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1442897415/20091212225550_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Saints-all that bullshit is for the birds throw some bread out. GO FALCONS!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:07 +0000", "from_user": "wordsallowed", "from_user_id": 102754563, "from_user_id_str": "102754563", "from_user_name": "Susan Grossman", "geo": null, "id": 148834010389413900, "id_str": "148834010389413888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1609033480/SGMar_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609033480/SGMar_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "#Twitchers. Spoon billed sandpiper one of world's most threatened birds is now out of quarantine at Slimbridge Glos http://t.co/ENahNel7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:05 +0000", "from_user": "Frank140466", "from_user_id": 233160579, "from_user_id_str": "233160579", "from_user_name": "Frank de Heer", "geo": null, "id": 148833999693950980, "id_str": "148833999693950976", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1444300458/me_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1444300458/me_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@ericvanooijen 25000 angry birds .", "to_user": "ericvanooijen", "to_user_id": 116182050, "to_user_id_str": "116182050", "to_user_name": "eric van ooijen", "in_reply_to_status_id": 148798166144270340, "in_reply_to_status_id_str": "148798166144270338"}, +{"created_at": "Mon, 19 Dec 2011 18:35:56 +0000", "from_user": "britishbulldog", "from_user_id": 15352066, "from_user_id_str": "15352066", "from_user_name": "steve speirs", "geo": null, "id": 148833963773923330, "id_str": "148833963773923329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1632260639/steve_gibbet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632260639/steve_gibbet_normal.jpg", "source": "<a href="http://www.dailymile.com" rel="nofollow">dailymile</a>", "text": "Ran 6.23 miles in 45 mins and felt good. Nice little leg stretcher. A tad breezy, and the thousands of birds at the ... http://t.co/sdZeMgoW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:47 +0000", "from_user": "MrToo_LIVE", "from_user_id": 51924415, "from_user_id_str": "51924415", "from_user_name": "That LIVE #Rattler", "geo": null, "id": 148833926629171200, "id_str": "148833926629171200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1604799022/7rhDyBtX_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1604799022/7rhDyBtX_normal", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Let me blast these watching ass birds out my sky real quick", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:47 +0000", "from_user": "TFNY_", "from_user_id": 135092729, "from_user_id_str": "135092729", "from_user_name": "TfnyDllPrdn", "geo": null, "id": 148833923189833730, "id_str": "148833923189833728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696371852/IMG0002n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696371852/IMG0002n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Can not sleep.And still playing Angry Birds huahaha-_-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:44 +0000", "from_user": "RunBeanRun", "from_user_id": 127134990, "from_user_id_str": "127134990", "from_user_name": "Bean", "geo": null, "id": 148833911055720450, "id_str": "148833911055720449", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702195437/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702195437/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "18-8 on Angry Birds is going to lead to a heroin addiction. Been stuck on it for three days.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:43 +0000", "from_user": "nouvellevalery", "from_user_id": 268924821, "from_user_id_str": "268924821", "from_user_name": "Valeria Dmntvskaya", "geo": null, "id": 148833905892528130, "id_str": "148833905892528129", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681247966/___________2011-12-06___22.48_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681247966/___________2011-12-06___22.48_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "\\u0447\\u0442\\u043E\\u0431\\u044B \\u0432\\u0438\\u0434\\u0435\\u0442\\u044C\\u0441\\u044F \\u0447\\u0430\\u0449\\u0435 \\u0441 \\u043D\\u0435\\u043A\\u043E\\u0442\\u043E\\u0440\\u044B\\u043C\\u0438 \\u043B\\u044E\\u0434\\u044C\\u043C\\u0438, \\u043F\\u0440\\u0438\\u0445\\u043E\\u0434\\u0438\\u0442\\u0441\\u044F \\u0441\\u043A\\u0430\\u0447\\u0438\\u0432\\u0430\\u0442\\u044C angry birds \\u043D\\u0430 \\u0430\\u0439\\u0444\\u043E\\u043D. \\u0441\\u0443\\u0440\\u043E\\u0432\\u044B\\u0435 \\u0440\\u0435\\u0430\\u043B\\u0438\\u0438 \\u0436\\u0438\\u0437\\u043D\\u0438.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:42 +0000", "from_user": "Golfnut77777", "from_user_id": 368479708, "from_user_id_str": "368479708", "from_user_name": "Todd Holt", "geo": null, "id": 148833904063819780, "id_str": "148833904063819776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1530192049/PICT0047-800x600_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1530192049/PICT0047-800x600_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@CJAY92 Russman, Cathedral is across the street from me. Tell the road crew girls to stop in at Berry Flooring. Kill 2 birds with 1 stone", "to_user": "CJAY92", "to_user_id": 171657474, "to_user_id_str": "171657474", "to_user_name": "CJAY 92"}, +{"created_at": "Mon, 19 Dec 2011 18:35:40 +0000", "from_user": "MyWorkOfart1", "from_user_id": 321625240, "from_user_id_str": "321625240", "from_user_name": "MyWork Ofart", "geo": null, "id": 148833896195301380, "id_str": "148833896195301376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1406887810/Uncle_Sam_-_Cartoon_4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1406887810/Uncle_Sam_-_Cartoon_4_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "This is a #Photo of a #Cardinal and a #Blue #Bird in a #Yard-#Birds\\thttp://t.co/bWXR0qQF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:40 +0000", "from_user": "BartRossieau", "from_user_id": 71055234, "from_user_id_str": "71055234", "from_user_name": "Bart Rossieau", "geo": null, "id": 148833893745823740, "id_str": "148833893745823745", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1072409167/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1072409167/twitter_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@chrisbellekom @wvdeerenbeemt Jij maakt er weer een Birds-achtig, Hitchcock-ding van! :-)", "to_user": "chrisbellekom", "to_user_id": 50940718, "to_user_id_str": "50940718", "to_user_name": "Chris Bellekom", "in_reply_to_status_id": 148828527943360500, "in_reply_to_status_id_str": "148828527943360512"}, +{"created_at": "Mon, 19 Dec 2011 18:35:39 +0000", "from_user": "23cutie", "from_user_id": 39500968, "from_user_id_str": "39500968", "from_user_name": "dominique", "geo": null, "id": 148833892575617020, "id_str": "148833892575617024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1642635626/9sjxbH1z_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642635626/9sjxbH1z_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@sexipink1 yes it was packed lol I would def go back but not with tiff and trina lol their some early birds", "to_user": "sexipink1", "to_user_id": 349862693, "to_user_id_str": "349862693", "to_user_name": "Shay davis", "in_reply_to_status_id": 148833541831135230, "in_reply_to_status_id_str": "148833541831135232"}, +{"created_at": "Mon, 19 Dec 2011 18:35:39 +0000", "from_user": "emmybelle9", "from_user_id": 213873951, "from_user_id_str": "213873951", "from_user_name": "Emmy ", "geo": null, "id": 148833891912925200, "id_str": "148833891912925184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1303207318/ja_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1303207318/ja_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "Packed my movies away :/ now my biggest distraction is Angry Birds lol #worldsbestprocrastinator", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:35 +0000", "from_user": "DD072906AH", "from_user_id": 166859180, "from_user_id_str": "166859180", "from_user_name": "David D.", "geo": null, "id": 148833875454476300, "id_str": "148833875454476289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1388242484/Smiley_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1388242484/Smiley_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@BadWolfDre sounds good. Maybe if @ASHnairda could drop off her pc, two birds, one stone:)", "to_user": "BadWolfDre", "to_user_id": 33889526, "to_user_id_str": "33889526", "to_user_name": "iDre", "in_reply_to_status_id": 148832519096242180, "in_reply_to_status_id_str": "148832519096242176"}, +{"created_at": "Mon, 19 Dec 2011 18:35:33 +0000", "from_user": "dee_nice89", "from_user_id": 139255016, "from_user_id_str": "139255016", "from_user_name": "Dee", "geo": null, "id": 148833867812450300, "id_str": "148833867812450305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1618619881/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618619881/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Who the fuck are you?RT @Geralyndcf: @dee_nice89 Go download Pigeon Palooza (the next angry birds)- (cont) http://t.co/Ba6BNjuK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:33 +0000", "from_user": "2piecee", "from_user_id": 338804184, "from_user_id_str": "338804184", "from_user_name": "Damaris Albright", "geo": null, "id": 148833867627896830, "id_str": "148833867627896832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1451773409/2piece_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1451773409/2piece_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@purplekisskia Did Yu See Tht Eagles Game Yesterday? How Bout Those Birds! Lol We On Our Way!!\\n#EagleNation", "to_user": "purplekisskia", "to_user_id": 214542094, "to_user_id_str": "214542094", "to_user_name": "Shy Johnson"} +, +{"created_at": "Mon, 19 Dec 2011 18:35:30 +0000", "from_user": "Bug_TheGreat", "from_user_id": 428725600, "from_user_id_str": "428725600", "from_user_name": "Daroderick Sallie", "geo": null, "id": 148833853480501250, "id_str": "148833853480501248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692380240/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692380240/image_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "I WISH THESE TWO LOVE BIRDS WOULD STOP SAYING LOVE STUFF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:25 +0000", "from_user": "Doloreskdz", "from_user_id": 431724666, "from_user_id_str": "431724666", "from_user_name": "Dolores Roshak", "geo": null, "id": 148833834400616450, "id_str": "148833834400616448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681081938/ozv4aw2qih_129201295-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681081938/ozv4aw2qih_129201295-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Schneider 19 Inch Moving Birds 8 Day Movement Black Forest Cuckoo Clock: This delightful Schneider cuckoo clock ... http://t.co/n8xCh8eH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:25 +0000", "from_user": "HBIC_BL", "from_user_id": 277742592, "from_user_id_str": "277742592", "from_user_name": "Vontralla", "geo": +{"coordinates": [30.2234,-92.3717], "type": "Point"}, "id": 148833832743862270, "id_str": "148833832743862273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700629353/9GX9SvUb_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700629353/9GX9SvUb_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "That shit for the birds! So I'm.about to let it fly!!!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:25 +0000", "from_user": "safahfierce_", "from_user_id": 95235655, "from_user_id_str": "95235655", "from_user_name": "safah knowles-carter", "geo": null, "id": 148833830776741900, "id_str": "148833830776741889", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1634055171/b_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634055171/b_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Angry Birds is sooo over-rated", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:23 +0000", "from_user": "ayunigifts", "from_user_id": 56043197, "from_user_id_str": "56043197", "from_user_name": "Ayuni Gifts", "geo": null, "id": 148833821947740160, "id_str": "148833821947740160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1584577497/pinkdog_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584577497/pinkdog_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "I'm selling I. Godinger Glass Plate Tray 6\" Square - Birds in Tree http://t.co/Lzhcc1eK @addoway", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:22 +0000", "from_user": "Lelaaa_", "from_user_id": 61141986, "from_user_id_str": "61141986", "from_user_name": "Neala Stevenson", "geo": null, "id": 148833819833794560, "id_str": "148833819833794560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1543113508/neala_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543113508/neala_normal.JPG", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Youve been nothing but amazing &I never take that for granted. Half of these birds would have flew the coop but you, you truly understand it", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:20 +0000", "from_user": "Suet4Woodpecker", "from_user_id": 280536619, "from_user_id_str": "280536619", "from_user_name": "WoodpeckerFeeder Guy", "geo": null, "id": 148833809410957300, "id_str": "148833809410957312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1401856447/downy-woodpecker-crop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1401856447/downy-woodpecker-crop_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Suet feeders and suet-Christmas gift! We ship Priority USPS! Make a bunch of wild birds even happy! http://t.co/jY6n3vBg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:19 +0000", "from_user": "ILLIONARE", "from_user_id": 38640069, "from_user_id_str": "38640069", "from_user_name": "BETO", "geo": null, "id": 148833805472514050, "id_str": "148833805472514048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1257232440/Screen_shot_2011-02-27_at_6.54.16_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1257232440/Screen_shot_2011-02-27_at_6.54.16_PM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "LMAO at all the thirsty ass birds that went to the Drake after party and he didnt even show up!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:17 +0000", "from_user": "bostoncommag", "from_user_id": 191092917, "from_user_id_str": "191092917", "from_user_name": "Boston Common Mag", "geo": null, "id": 148833798195396600, "id_str": "148833798195396610", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668219568/cover_americanhoror_winter2011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668219568/cover_americanhoror_winter2011_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Bejeweled Birds of Paradise by Van Cleef & Arpels - http://t.co/zyCaV3e8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:13 +0000", "from_user": "StayInYour_LANA", "from_user_id": 238343642, "from_user_id_str": "238343642", "from_user_name": "lanaaaaaaaaaaa : ) ", "geo": null, "id": 148833783817306100, "id_str": "148833783817306113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700918183/McKGoFao_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700918183/McKGoFao_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Young_Brina: Arguin on sociial networks <<<<<<<<<<< that shit for the birds .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:09 +0000", "from_user": "genwhirl", "from_user_id": 26624944, "from_user_id_str": "26624944", "from_user_name": "Jennifer Worrell", "geo": null, "id": 148833766805225470, "id_str": "148833766805225473", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/502630790/n30509364_32609484_5876_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/502630790/n30509364_32609484_5876_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "I'm off on the countdown, but...4 Calling Birds! http://t.co/Kz5OFE5U", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:09 +0000", "from_user": "andreameijomil", "from_user_id": 88979834, "from_user_id_str": "88979834", "from_user_name": "Andrea Meijomil", "geo": null, "id": 148833765098127360, "id_str": "148833765098127360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/519842543/Dibujo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/519842543/Dibujo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "I always wonder why birds stay in the same place when they can fly anywhere on the earth http://t.co/WxUYqZID", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:09 +0000", "from_user": "lizbethsgarden", "from_user_id": 275317105, "from_user_id_str": "275317105", "from_user_name": "Elizabeth C", "geo": null, "id": 148833764200562700, "id_str": "148833764200562688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1295471115/tassel_avatar2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1295471115/tassel_avatar2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Pretty pink and green earrings with mother of pearl birds Clips are sterling silver by lizbethsgarden on #Etsy http://t.co/ZcwGifBl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:05 +0000", "from_user": "kmasson", "from_user_id": 16724707, "from_user_id_str": "16724707", "from_user_name": "kmasson", "geo": null, "id": 148833749864419330, "id_str": "148833749864419329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/857977443/20380_336820493328_508423328_3297698_543161_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/857977443/20380_336820493328_508423328_3297698_543161_n_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @TheEconomist iPhone app makes ordering up a private plane anywhere in world easy as playing Angry Birds http://t.co/iXC5FRI6 < Finally!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:02 +0000", "from_user": "rodtrent", "from_user_id": 7372952, "from_user_id_str": "7372952", "from_user_name": "Rod Trent", "geo": null, "id": 148833737520582660, "id_str": "148833737520582656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1335626870/Rod_Trent_mstag_vcard_2011211132719_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335626870/Rod_Trent_mstag_vcard_2011211132719_small_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Tips for a successful Birds of a Feather (BOF) http://t.co/ODbBN8ay via @myitforum", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:59 +0000", "from_user": "A_Smooov", "from_user_id": 385221295, "from_user_id_str": "385221295", "from_user_name": "Aeryonna Keeling", "geo": null, "id": 148833723054432260, "id_str": "148833723054432256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1674012570/WP_000034_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674012570/WP_000034_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "angry birds >>", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:59 +0000", "from_user": "akash_iem", "from_user_id": 64420940, "from_user_id_str": "64420940", "from_user_name": "Akash Bhattacharya", "geo": null, "id": 148833721867440130, "id_str": "148833721867440128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/630300222/Thats_me___fb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/630300222/Thats_me___fb_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "I posted 5 photos on Facebook in the album \"Bharatpur - Birds,Fort and City-life| December 2011\" http://t.co/CGbFLgnG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:55 +0000", "from_user": "justNeta", "from_user_id": 121134761, "from_user_id_str": "121134761", "from_user_name": "Neta", "geo": null, "id": 148833707912994800, "id_str": "148833707912994818", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696927457/stock-vector-vector-drawing-alphabet-letter-n-50649865_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696927457/stock-vector-vector-drawing-alphabet-letter-n-50649865_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "angry birds make me anger", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:53 +0000", "from_user": "JosieMonteraJKS", "from_user_id": 428355695, "from_user_id_str": "428355695", "from_user_name": "Josie Montera", "geo": null, "id": 148833697444016130, "id_str": "148833697444016128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674178556/16114177451195463_meghan_laughing_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674178556/16114177451195463_meghan_laughing_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Btw_hesmine_ Go download Pigeon Palooza (the next angry birds)- it is avail in Android Mktplce - will be in ITunes next week.", "to_user": "Btw_hesmine_", "to_user_id": 396829464, "to_user_id_str": "396829464", "to_user_name": "joy haley", "in_reply_to_status_id": 148818625652981760, "in_reply_to_status_id_str": "148818625652981761"}, +{"created_at": "Mon, 19 Dec 2011 18:34:50 +0000", "from_user": "ChrisGeiloGeils", "from_user_id": 46648088, "from_user_id_str": "46648088", "from_user_name": "Chris Geils", "geo": null, "id": 148833684303249400, "id_str": "148833684303249409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1541154831/HONEYMOON_PICS_1034_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541154831/HONEYMOON_PICS_1034_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Just had my car washed and a thousand birds shat on it! Damn you Murphey!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:48 +0000", "from_user": "yarak1", "from_user_id": 117786333, "from_user_id_str": "117786333", "from_user_name": "John Pitson", "geo": null, "id": 148833676862566400, "id_str": "148833676862566400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1064217282/n807450602_1047_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1064217282/n807450602_1047_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/fopmlH9W", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:41 +0000", "from_user": "txtisha", "from_user_id": 83685300, "from_user_id_str": "83685300", "from_user_name": "Tisha Clinkenbeard", "geo": null, "id": 148833646965563400, "id_str": "148833646965563393", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693700012/Thanksgiving_2011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693700012/Thanksgiving_2011_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "http://t.co/JgT12zwn Birds In Winter", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:40 +0000", "from_user": "MissRebeccaC", "from_user_id": 197720741, "from_user_id_str": "197720741", "from_user_name": "Rebecca Cawley", "geo": null, "id": 148833643895336960, "id_str": "148833643895336960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691919891/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691919891/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@cathnreon #blue #grey #birds #shitsignal #cost2much ur word #children xx", "to_user": "cathnreon", "to_user_id": 58555608, "to_user_id_str": "58555608", "to_user_name": "cath long", "in_reply_to_status_id": 148771373328773120, "in_reply_to_status_id_str": "148771373328773122"}, +{"created_at": "Mon, 19 Dec 2011 18:34:37 +0000", "from_user": "Jevan54", "from_user_id": 25535243, "from_user_id_str": "25535243", "from_user_name": "Joshua Caraway", "geo": null, "id": 148833630901370880, "id_str": "148833630901370881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1638167891/Picture_15_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638167891/Picture_15_normal.png", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", "text": "To ease my nerves, I broke down and it Angry Birds. Not addicted yet, but Michael Hodum would be proud.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:35 +0000", "from_user": "_DonDizzle_", "from_user_id": 104700828, "from_user_id_str": "104700828", "from_user_name": "Formerly QStorm19", "geo": null, "id": 148833621468397570, "id_str": "148833621468397568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1631520138/1320899465650_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631520138/1320899465650_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Just got my wisdom teeth pulled smh this shit is for the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:33 +0000", "from_user": "barntiques859", "from_user_id": 224653835, "from_user_id_str": "224653835", "from_user_name": "Paulasbarntiques", "geo": null, "id": 148833614862368770, "id_str": "148833614862368768", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1186436452/barnPaula_Hutchinson_logo_1__normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1186436452/barnPaula_Hutchinson_logo_1__normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Large Deep Oval Meat Platter 1900 German birds Butterflies\\t$80.00\\thttp://t.co/q0ZWr0LD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:33 +0000", "from_user": "gcculture", "from_user_id": 113473244, "from_user_id_str": "113473244", "from_user_name": "God.Country.Culture.", "geo": null, "id": 148833614862352400, "id_str": "148833614862352385", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1367834608/praying_hands_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1367834608/praying_hands_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Taking Angry Birds Love Too Far - This guy loves Angry Birds way too much. And is also amazing at Christmas light di... http://t.co/e1SHoe4u", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:33 +0000", "from_user": "_NoFebruary", "from_user_id": 348020594, "from_user_id_str": "348020594", "from_user_name": "24Hr SCHEDULE!", "geo": null, "id": 148833612865867780, "id_str": "148833612865867776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699022765/ColorTouch-1324150062947_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699022765/ColorTouch-1324150062947_normal.jpeg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Niggas anit Fly they jus a Bunch of Birds!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:30 +0000", "from_user": "eye_go_ham", "from_user_id": 291186084, "from_user_id_str": "291186084", "from_user_name": "Liu Kang", "geo": null, "id": 148833600513654800, "id_str": "148833600513654785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700235437/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700235437/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "this nigga breath smell like he ate the bottom of a birds cage", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:27 +0000", "from_user": "Bekah7726", "from_user_id": 50506644, "from_user_id_str": "50506644", "from_user_name": "rebekah shallow", "geo": null, "id": 148833589847535600, "id_str": "148833589847535617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687907760/lvGdmgap_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687907760/lvGdmgap_normal", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @1H3ART1L0V3: We are love birds call us doves #lilwaynevoice", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:27 +0000", "from_user": "HolsKnott", "from_user_id": 217152310, "from_user_id_str": "217152310", "from_user_name": "Holly Knott", "geo": null, "id": 148833587855228930, "id_str": "148833587855228928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1632099676/Chheeerr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632099676/Chheeerr_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@AmyEggg GIRLY! What are you and the birds doing for the big NY??", "to_user": "AmyEggg", "to_user_id": 239902546, "to_user_id_str": "239902546", "to_user_name": "Amy Eglin"}, +{"created_at": "Mon, 19 Dec 2011 18:34:23 +0000", "from_user": "Young_Brina", "from_user_id": 92538749, "from_user_id_str": "92538749", "from_user_name": "Sabrina FREE-MAN .", "geo": null, "id": 148833570281107460, "id_str": "148833570281107456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701267007/374200_263426490381166_100001414501491_766174_1167926869_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701267007/374200_263426490381166_100001414501491_766174_1167926869_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Arguin on sociial networks <<<<<<<<<<< that shit for the birds .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:22 +0000", "from_user": "stephanielevyy", "from_user_id": 424023740, "from_user_id_str": "424023740", "from_user_name": "Stephanie Levy", "geo": null, "id": 148833568083288060, "id_str": "148833568083288064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1663816815/25294_1412497988051_1100561879_1306216_4951107_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663816815/25294_1412497988051_1100561879_1306216_4951107_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "getting the birds & the bees talk from mr. paul.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:21 +0000", "from_user": "row_aint_shit", "from_user_id": 27594713, "from_user_id_str": "27594713", "from_user_name": "tyrone balone von do", "geo": null, "id": 148833565147267070, "id_str": "148833565147267072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1690446904/row_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690446904/row_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@killa_sammm lol it was. Im goin back to it bc this shit here nigga. Is for the birds!", "to_user": "killa_sammm", "to_user_id": 357864298, "to_user_id_str": "357864298", "to_user_name": "MRS.kLo \\uE32A", "in_reply_to_status_id": 148833313069596670, "in_reply_to_status_id_str": "148833313069596672"}, +{"created_at": "Mon, 19 Dec 2011 18:34:20 +0000", "from_user": "SimplyLisa1", "from_user_id": 193545945, "from_user_id_str": "193545945", "from_user_name": "Lisa", "geo": null, "id": 148833557987602430, "id_str": "148833557987602433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1659973312/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659973312/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "So Tt in here bout I said burn its cold an im like no it's birds it's cold. Then I rememberd @KaySchweetz tld me it was Burr lmbo #BringItOn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:19 +0000", "from_user": "WhoIsRachi", "from_user_id": 267259731, "from_user_id_str": "267259731", "from_user_name": "Geoffrey Burries", "geo": null, "id": 148833557220032500, "id_str": "148833557220032512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692371373/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692371373/image_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @HeelsOverSneaks: Worrying is for the birds...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:18 +0000", "from_user": "andieochoa", "from_user_id": 36477022, "from_user_id_str": "36477022", "from_user_name": "Andie Ochoa-Garcia", "geo": null, "id": 148833549942915070, "id_str": "148833549942915072", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1518652460/ScreenShot_2011-08-29_01-55-09_by_s4bb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1518652460/ScreenShot_2011-08-29_01-55-09_by_s4bb_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Los pajaros rojos de angry birds son los mas chafos #winterbreak #nothingtodo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:14 +0000", "from_user": "theFabz", "from_user_id": 140254652, "from_user_id_str": "140254652", "from_user_name": "the gawd...", "geo": null, "id": 148833536126894080, "id_str": "148833536126894080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692091337/profile_image_1323830308162_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692091337/profile_image_1323830308162_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for iPhone</a>", "text": "Silly guy wanna sell birds all your life... I gotta lot of nerve hitting curbs runnin lights", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:09 +0000", "from_user": "raffeg", "from_user_id": 60722320, "from_user_id_str": "60722320", "from_user_name": "Raffe Gold", "geo": null, "id": 148833511955120130, "id_str": "148833511955120128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1645577716/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645577716/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@neyne Oh absolutely. Though when it comes to Angry Birds I kind of get like that as well.", "to_user": "neyne", "to_user_id": 14213971, "to_user_id_str": "14213971", "to_user_name": "Branko Rihtman", "in_reply_to_status_id": 148832601958916100, "in_reply_to_status_id_str": "148832601958916097"}, +{"created_at": "Mon, 19 Dec 2011 18:34:08 +0000", "from_user": "DivaStyles_32", "from_user_id": 372743731, "from_user_id_str": "372743731", "from_user_name": "\\u2606*\\u2022\\uFF61\\u2605 Nhikko'l \\u2606*\\u2022\\uFF61\\u2605", "geo": null, "id": 148833507689508860, "id_str": "148833507689508864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1606826529/sexy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606826529/sexy_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "So i guess angry birds is the move bcuz we are doin NOTHING in class,matter of fact half the instructors arent here or students,smh #bored", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:07 +0000", "from_user": "Indiraqsu", "from_user_id": 426263021, "from_user_id_str": "426263021", "from_user_name": "Indira Muldrow", "geo": null, "id": 148833506586394620, "id_str": "148833506586394625", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668799239/LLCM-1135_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668799239/LLCM-1135_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Swiffy_YurpGang Ya have to get Pigeon Palooza (the next angry birds)- it is live in Android Mktplce - will be in App Store next week.", "to_user": "Swiffy_YurpGang", "to_user_id": 325985157, "to_user_id_str": "325985157", "to_user_name": "Swift Breeze", "in_reply_to_status_id": 148831762661900300, "in_reply_to_status_id_str": "148831762661900288"}, +{"created_at": "Mon, 19 Dec 2011 18:34:06 +0000", "from_user": "YungWild_Nigga", "from_user_id": 309714820, "from_user_id_str": "309714820", "from_user_name": "Malik Linthicum", "geo": null, "id": 148833501460959230, "id_str": "148833501460959233", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698870955/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698870955/profile_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "Everything that I got,I got from slangin birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:04 +0000", "from_user": "Creolaokd", "from_user_id": 431689006, "from_user_id_str": "431689006", "from_user_name": "Creola Oregel", "geo": null, "id": 148833493579857920, "id_str": "148833493579857920", "iso_language_code": "fi", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681009773/jsbc2t55tc_130916810-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681009773/jsbc2t55tc_130916810-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Kaytee Kay Kob 605 Cu In 8lb 4cs: Kaytee kay kob 605 cu in 8lb 4cs http://t.co/f4G8MeCK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:04 +0000", "from_user": "Peyton_Fortweng", "from_user_id": 417514418, "from_user_id_str": "417514418", "from_user_name": "Peyton Fortwengler", "geo": null, "id": 148833492153802750, "id_str": "148833492153802752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674547421/387601_167828203315924_100002662364007_263524_2088185373_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674547421/387601_167828203315924_100002662364007_263524_2088185373_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "My mom is obsessed with angry birds. Lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:03 +0000", "from_user": "MasterKush_er", "from_user_id": 317904904, "from_user_id_str": "317904904", "from_user_name": "Jordon Hailey", "geo": null, "id": 148833486550204400, "id_str": "148833486550204416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1632460641/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632460641/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@lil_luther38 hope it wasn't bout the birds and the bees haha", "to_user": "lil_luther38", "to_user_id": 233706315, "to_user_id_str": "233706315", "to_user_name": "Alesha Luther\\uE32D", "in_reply_to_status_id": 148832615825293300, "in_reply_to_status_id_str": "148832615825293312"}, +{"created_at": "Mon, 19 Dec 2011 18:33:56 +0000", "from_user": "MargotCity", "from_user_id": 197830080, "from_user_id_str": "197830080", "from_user_name": "Margot", "geo": null, "id": 148833458339323900, "id_str": "148833458339323904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702543297/DSC_0130_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702543297/DSC_0130_1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "If the birds were mine, I'd tell you what I'd do.. I'd teach the birds such lovely words and make 'em sing for you.. \\u2665", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:51 +0000", "from_user": "rasyidHS", "from_user_id": 128568156, "from_user_id_str": "128568156", "from_user_name": "Anwar Rasyid", "geo": null, "id": 148833437493637120, "id_str": "148833437493637120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1444104922/2396504453_ef645942c8_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1444104922/2396504453_ef645942c8_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @zefrank: what if there were three birds in the bush? #justblewyourfrigginmind", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:47 +0000", "from_user": "chalissberry", "from_user_id": 319677662, "from_user_id_str": "319677662", "from_user_name": "chaliss berry", "geo": null, "id": 148833422054408200, "id_str": "148833422054408192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694566974/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694566974/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "7th period consists of sleeping , playing angry birds, and checking twitter", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:46 +0000", "from_user": "TMCphotographs", "from_user_id": 141249819, "from_user_id_str": "141249819", "from_user_name": "Teresa Carleton", "geo": null, "id": 148833416639549440, "id_str": "148833416639549440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1316406017/for_web_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1316406017/for_web_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@Gary_UK1 no thats exactly what his stuff is like I can't think why he popped into my head, it may have been the flock of birds image? :\\", "to_user": "Gary_UK1", "to_user_id": 36367899, "to_user_id_str": "36367899", "to_user_name": "Gary", "in_reply_to_status_id": 148832917332828160, "in_reply_to_status_id_str": "148832917332828162"}, +{"created_at": "Mon, 19 Dec 2011 18:33:45 +0000", "from_user": "chiptycent", "from_user_id": 172781697, "from_user_id_str": "172781697", "from_user_name": "fer", "geo": null, "id": 148833414726959100, "id_str": "148833414726959104", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1119789478/mini_me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1119789478/mini_me_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@CptVico: Para los que les guste el juego Angry Birds, aqu\\u00ED el vestido que us\\u00F3 la esposa del CEO de Rovio. http://t.co/QfOe7B4d\\u201D @jaferic", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:43 +0000", "from_user": "icanhazmangu", "from_user_id": 18072928, "from_user_id_str": "18072928", "from_user_name": "Juice", "geo": null, "id": 148833405981818880, "id_str": "148833405981818881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700890525/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700890525/image_normal.jpg", "source": "<a href="http://tweetlogix.com" rel="nofollow">Tweetlogix</a>", "text": "i see them walk around brooklyn everyday. RT @YeahImAshley: Birds would look so stupid if they wore boots.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:43 +0000", "from_user": "NabilaEsmaralda", "from_user_id": 380882741, "from_user_id_str": "380882741", "from_user_name": "Secretly Zayn's .", "geo": null, "id": 148833402605408260, "id_str": "148833402605408256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702480512/p1DR5FxX_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702480512/p1DR5FxX_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Niddu_Hafizz: @NabilaEsmaralda i hear majong , hahaha , wait , do birds have ears ? D:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:42 +0000", "from_user": "LaudieXxMomo", "from_user_id": 377262686, "from_user_id_str": "377262686", "from_user_name": "LaurenLovesMowgli", "geo": null, "id": 148833401984651260, "id_str": "148833401984651264", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701879019/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701879019/image_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @RaadDezeTweet: - - - - - ( \\u00F2 )> (^(00)^) ANGRY BIRDS! Retweet als je het ziet! #RDT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:38 +0000", "from_user": "Agnusidr", "from_user_id": 426264992, "from_user_id_str": "426264992", "from_user_name": "Marlin Osburne", "geo": null, "id": 148833383441637380, "id_str": "148833383441637377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668803895/LLCM-1660_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668803895/LLCM-1660_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@_JoeyOliver Hey, try Pigeon Palooza (the next angry birds)- it's in Android Mktplce - should be in App Store in a few days.", "to_user": "_JoeyOliver", "to_user_id": 439655231, "to_user_id_str": "439655231", "to_user_name": "Joey Oliver", "in_reply_to_status_id": 148826312872706050, "in_reply_to_status_id_str": "148826312872706048"}, +{"created_at": "Mon, 19 Dec 2011 18:33:36 +0000", "from_user": "ShonaSchlickerU", "from_user_id": 428329314, "from_user_id_str": "428329314", "from_user_name": "Shona Schlicker", "geo": null, "id": 148833376818827260, "id_str": "148833376818827264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1674178618/15093392221209438_double_call_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674178618/15093392221209438_double_call_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@miss_sarahkita Hey, download Pigeon Palooza (the next angry birds)- it is launched in Android Mktplce - will be in App Store in a few days.", "to_user": "miss_sarahkita", "to_user_id": 243637808, "to_user_id_str": "243637808", "to_user_name": "sarah williams", "in_reply_to_status_id": 148832465350434800, "in_reply_to_status_id_str": "148832465350434816"}, +{"created_at": "Mon, 19 Dec 2011 18:33:36 +0000", "from_user": "LupieStardust", "from_user_id": 20631103, "from_user_id_str": "20631103", "from_user_name": "Mr Lucian", "geo": null, "id": 148833373488545800, "id_str": "148833373488545793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1673815487/Photo_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673815487/Photo_1_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Birds have just gone in the small, hot room.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:34 +0000", "from_user": "StephHowald", "from_user_id": 59149502, "from_user_id_str": "59149502", "from_user_name": "Stephanie Howald", "geo": null, "id": 148833368740597760, "id_str": "148833368740597760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/326495389/n500259153_583370_5057_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/326495389/n500259153_583370_5057_1__normal.jpg", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "Sitting by an adorable asian little girl and her grandma. She is playing angry birds on her ipad. Kids these days... :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:34 +0000", "from_user": "megaanbrittany", "from_user_id": 389808980, "from_user_id_str": "389808980", "from_user_name": "Megan Smith", "geo": null, "id": 148833367272599550, "id_str": "148833367272599553", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@LarissaaCaitlin okayyss! Get off at argyle kay? Its right after lyburn... And not soo scary without birds!", "to_user": "LarissaaCaitlin", "to_user_id": 132723925, "to_user_id_str": "132723925", "to_user_name": "Larissa Whitehead", "in_reply_to_status_id": 148831663747641340, "in_reply_to_status_id_str": "148831663747641344"}, +{"created_at": "Mon, 19 Dec 2011 18:33:33 +0000", "from_user": "leneea", "from_user_id": 76003955, "from_user_id_str": "76003955", "from_user_name": "elena.", "geo": null, "id": 148833360981147650, "id_str": "148833360981147648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1678972243/new_ava_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678972243/new_ava_normal.jpg", "source": "<a href="http://www.tweekly.fm/" rel="nofollow">Tweekly.fm</a>", "text": "My Top 3 #lastfm Artists: Marina & The Diamonds (14), Noel Gallagher's High Flying Birds (10) & Soap&Skin (8) http://t.co/TpjJGRpT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:31 +0000", "from_user": "priprapro1", "from_user_id": 311932645, "from_user_id_str": "311932645", "from_user_name": "JustinVLD", "geo": null, "id": 148833353662070800, "id_str": "148833353662070784", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691624185/e26JXvRA_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691624185/e26JXvRA_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@Barkey95: Iemand laat mij niet fatsoenlijk angry birds spelen!!!!!!!!!!!!!! #UCS!!!!!!!!!!!!!!\"ANGRY BIRDS FOR THE WIN!!!!! :P", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:28 +0000", "from_user": "TyTie1", "from_user_id": 263782964, "from_user_id_str": "263782964", "from_user_name": "Freakolicious", "geo": null, "id": 148833342186459140, "id_str": "148833342186459136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702096321/1321533190-picsay_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702096321/1321533190-picsay_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@travoloso lol then you've killed 2 birds with one stone", "to_user": "travoloso", "to_user_id": 18485036, "to_user_id_str": "18485036", "to_user_name": "TraVoloso ", "in_reply_to_status_id": 148819762904965120, "in_reply_to_status_id_str": "148819762904965120"}, +{"created_at": "Mon, 19 Dec 2011 18:33:28 +0000", "from_user": "_NoseInTheAir", "from_user_id": 261448954, "from_user_id_str": "261448954", "from_user_name": "PimpNamedSlickBack .", "geo": null, "id": 148833341901242370, "id_str": "148833341901242369", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683923925/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683923925/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Seven_isLegend: @_NoseInTheAir child please lol better go play angry birds or some talking like that", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:26 +0000", "from_user": "Jerzy_licious", "from_user_id": 136790373, "from_user_id_str": "136790373", "from_user_name": "MY MASTER!!!", "geo": null, "id": 148833331247718400, "id_str": "148833331247718402", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657143746/Vs93HD94_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657143746/Vs93HD94_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "This shit is for the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:24 +0000", "from_user": "TennisFanMark23", "from_user_id": 34914041, "from_user_id_str": "34914041", "from_user_name": "Mark", "geo": null, "id": 148833323676991500, "id_str": "148833323676991488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1666935643/390985_2615442183424_1176165985_33171188_839956796_n-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666935643/390985_2615442183424_1176165985_33171188_839956796_n-1_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Angry Birds is serious business - just missed one bird in Rio and it didn't go down well", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:22 +0000", "from_user": "cbellistweet", "from_user_id": 20506572, "from_user_id_str": "20506572", "from_user_name": "Chris Bellis", "geo": null, "id": 148833317725282300, "id_str": "148833317725282305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/76984369/100_2199_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/76984369/100_2199_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @GeekChicDaily: Win swag from Smallville, @StarWars, @bbcdoctorwho and more from our Holiday Gift Guide contest! http://t.co/8GRbSpRT RT for a 2nd try!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:21 +0000", "from_user": "youngdemoCat", "from_user_id": 41102327, "from_user_id_str": "41102327", "from_user_name": "Sarah Gross", "geo": null, "id": 148833310389452800, "id_str": "148833310389452800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1589813043/drunksarahwedding_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1589813043/drunksarahwedding_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\"My eyes feel like birds\"....should I call 911?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:20 +0000", "from_user": "_Stephaniecarol", "from_user_id": 326414114, "from_user_id_str": "326414114", "from_user_name": "StephanieCaroline :3", "geo": null, "id": 148833306836869120, "id_str": "148833306836869120", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690990792/Foto-0117_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690990792/Foto-0117_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "N\\u00E3o consigo passar da fase 102 no Angry Birds @:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:18 +0000", "from_user": "shellbbs", "from_user_id": 303479460, "from_user_id_str": "303479460", "from_user_name": "Shelby", "geo": null, "id": 148833301493325820, "id_str": "148833301493325824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693932899/Photo_on_2011-12-10_at_15.20_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693932899/Photo_on_2011-12-10_at_15.20_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "angry birds should be called angry people I get just as mad as the birds when I can't beat a level #addicted \\uD83D\\uDE21", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:18 +0000", "from_user": "noireka", "from_user_id": 362887488, "from_user_id_str": "362887488", "from_user_name": "Angel Sanders", "geo": null, "id": 148833297814921200, "id_str": "148833297814921217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1515449436/BlackupMainImage-0218_bd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515449436/BlackupMainImage-0218_bd_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @YeahImAshley: Birds would look so stupid if they wore boots.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:12 +0000", "from_user": "Mayesny", "from_user_id": 431707026, "from_user_id_str": "431707026", "from_user_name": "Maye Egger", "geo": null, "id": 148833274318438400, "id_str": "148833274318438402", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681044084/kcfvdt5530_98299362_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681044084/kcfvdt5530_98299362_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Birds of East Asia: China, Taiwan, Korea, Japan, and Russia (Princeton Field Guides): With 234 superb color plat... http://t.co/Fhe6VrEN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:09 +0000", "from_user": "Seven_isLegend", "from_user_id": 242059411, "from_user_id_str": "242059411", "from_user_name": "Rod Callaway", "geo": null, "id": 148833261991362560, "id_str": "148833261991362560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1652181592/rod_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652181592/rod_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@_NoseInTheAir child please lol better go play angry birds or some talking like that", "to_user": "_NoseInTheAir", "to_user_id": 261448954, "to_user_id_str": "261448954", "to_user_name": "PimpNamedSlickBack .", "in_reply_to_status_id": 148832859426258940, "in_reply_to_status_id_str": "148832859426258944"}, +{"created_at": "Mon, 19 Dec 2011 18:33:08 +0000", "from_user": "BabyDoll_Lay", "from_user_id": 374827608, "from_user_id_str": "374827608", "from_user_name": "Lashaa (:", "geo": null, "id": 148833256660406270, "id_str": "148833256660406272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1655609012/image__4__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655609012/image__4__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "time for some angry birds, ON MY BIRTHDAY(:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:07 +0000", "from_user": "Raiden00x", "from_user_id": 436795688, "from_user_id_str": "436795688", "from_user_name": "Raiden", "geo": null, "id": 148833255653781500, "id_str": "148833255653781504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693148717/thumbnail_normal.aspx", "profile_image_url_https": null, "source": "<a href="http://twitter.com/">web</a>", "text": "\\u201CThe key thing is people get flu from people, not the birds.\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:07 +0000", "from_user": "fe_nazelis", "from_user_id": 327038415, "from_user_id_str": "327038415", "from_user_name": "' Fern\\u03B1nd\\u03B1 \\u221E", "geo": null, "id": 148833255532134400, "id_str": "148833255532134400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694994027/pro_tt_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694994027/pro_tt_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "esse aplicativo tiny monster \\u00E9 mto plagio de Angry birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:07 +0000", "from_user": "Kaligigi", "from_user_id": 426265713, "from_user_id_str": "426265713", "from_user_name": "Kali Talsma", "geo": null, "id": 148833253363687420, "id_str": "148833253363687424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668805839/LLCM-2689_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668805839/LLCM-2689_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Laangg Ya gotta get Pigeon Palooza (the next angry birds)- it is avail in Android Mktplce - should be in ITunes next week.", "to_user": "Laangg", "to_user_id": 183081169, "to_user_id_str": "183081169", "to_user_name": "Sebastian Duro", "in_reply_to_status_id": 148805926281941000, "in_reply_to_status_id_str": "148805926281940992"}, +{"created_at": "Mon, 19 Dec 2011 18:33:07 +0000", "from_user": "Rosamondbnmq", "from_user_id": 426260430, "from_user_id_str": "426260430", "from_user_name": "Rosamond Wengel", "geo": null, "id": 148833252948459520, "id_str": "148833252948459522", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668792505/LLCM-4623_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668792505/LLCM-4623_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@RandyTandy Ya have to download Pigeon Palooza (the next angry birds)- it's avail in Android Mktplce - should be in ITunes soon.", "to_user": "RandyTandy", "to_user_id": 20172261, "to_user_id_str": "20172261", "to_user_name": "Randy Tandy", "in_reply_to_status_id": 148828323856920580, "in_reply_to_status_id_str": "148828323856920576"}, +{"created_at": "Mon, 19 Dec 2011 18:33:06 +0000", "from_user": "vivas_so_based", "from_user_id": 251859142, "from_user_id_str": "251859142", "from_user_name": "Alex Vivas", "geo": +{"coordinates": [26.1362,-81.7638], "type": "Point"}, "id": 148833250679336960, "id_str": "148833250679336960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664567845/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664567845/image_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster</a>", "text": "Wolf gang cuss birds never flock together but the wolfs going be fam forever", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:01 +0000", "from_user": "tipytoe_tipyTAY", "from_user_id": 242344468, "from_user_id_str": "242344468", "from_user_name": "realniggaTayluhhh", "geo": null, "id": 148833226734047230, "id_str": "148833226734047233", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693148234/Photo_on_2011-12-14_at_11.01__3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693148234/Photo_on_2011-12-14_at_11.01__3_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "The Birds Part 2 - The Weeknd >>", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:01 +0000", "from_user": "silverelefanfic", "from_user_id": 100815462, "from_user_id_str": "100815462", "from_user_name": "Andi", "geo": null, "id": 148833226499174400, "id_str": "148833226499174400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700933148/People_Always_Leave._normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700933148/People_Always_Leave._normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Angry birds doesn't half drain the battery :O @freddjones22 @bmango77", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:00 +0000", "from_user": "iDanielOficial", "from_user_id": 238815559, "from_user_id_str": "238815559", "from_user_name": "Daniel", "geo": null, "id": 148833225475764220, "id_str": "148833225475764224", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695668783/DF_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695668783/DF_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Saldr\\u00E1 la pel\\u00EDcula de Angry Birds en nickelodeon :-O", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:59 +0000", "from_user": "ThuulioN", "from_user_id": 124517442, "from_user_id_str": "124517442", "from_user_name": "Th\\u00FAlio Noslen", "geo": null, "id": 148833218265747460, "id_str": "148833218265747456", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1655514674/Image_1082_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655514674/Image_1082_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @complexogeek: Parque tem\\u00E1tico de Angry Birds.: O sucesso da franquia Angry Birds cresce a cada dia e a Rovio,... http://t.co/AEo5KC7y (via @nerddisse)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:58 +0000", "from_user": "jordanrdean", "from_user_id": 430950118, "from_user_id_str": "430950118", "from_user_name": "Jordan Dean", "geo": null, "id": 148833216596422660, "id_str": "148833216596422658", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679467174/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679467174/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Love birds #happytweet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:58 +0000", "from_user": "kensley_marie15", "from_user_id": 171314077, "from_user_id_str": "171314077", "from_user_name": "Kensley Hill", "geo": null, "id": 148833215287799800, "id_str": "148833215287799809", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695049648/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695049648/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Willcox94: Can't wait for New Years eve. Knowing me I'll wake up somewhere like Poland with a swastika tattoo and some birds knickers on my head.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:55 +0000", "from_user": "AmorTiffani", "from_user_id": 305787445, "from_user_id_str": "305787445", "from_user_name": "Shadow", "geo": null, "id": 148833204554579970, "id_str": "148833204554579969", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1618933180/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618933180/image_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "When ppl say birds of a feather flock together believe it and if you disagree w/ sum actions of the birds you flyin with #FLYAWAY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:55 +0000", "from_user": "Barkey95", "from_user_id": 50690951, "from_user_id_str": "50690951", "from_user_name": "Brian", "geo": null, "id": 148833202650365950, "id_str": "148833202650365952", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1543058952/326556154_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543058952/326556154_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Iemand laat mij niet fatsoenlijk angry birds spelen!!!!!!!!!!!!!! #UCS!!!!!!!!!!!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:52 +0000", "from_user": "dfixerr", "from_user_id": 205771194, "from_user_id_str": "205771194", "from_user_name": "Ik", "geo": null, "id": 148833191329931260, "id_str": "148833191329931265", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1669326210/330763172_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669326210/330763172_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "As we celebrate Christmas. A lot of birds are in fear for their lives.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:51 +0000", "from_user": "noticiasmercado", "from_user_id": 153040012, "from_user_id_str": "153040012", "from_user_name": "Noticias de Mercado", "geo": null, "id": 148833184816173060, "id_str": "148833184816173056", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://www.fusiontech.me/wordpress/wordpress-tweeter/" rel="nofollow">WPTweeter</a>", "text": "Noticias de Mercado Nueva Entrada - El creador de Angry Birds considera salir a Bolsa en Hong Kong. Leela en http://t.co/QLbx7vEf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:50 +0000", "from_user": "Teamsagegrouse", "from_user_id": 90448578, "from_user_id_str": "90448578", "from_user_name": "CSR Inc", "geo": null, "id": 148833183490768900, "id_str": "148833183490768897", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1508493126/167175_494037082609_325608592609_6830238_6948232_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1508493126/167175_494037082609_325608592609_6830238_6948232_n_normal.jpg", "source": "<a href="http://timely.is" rel="nofollow">Timely by Demandforce</a>", "text": "RT @audubonsociety: What happens after #xmasbirdcount counters send their tallies? Audubon's scentists get to work. http://t.co/ptfZ3lbq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:50 +0000", "from_user": "1caramelkissez", "from_user_id": 393687875, "from_user_id_str": "393687875", "from_user_name": "caramel kissez", "geo": null, "id": 148833182005985280, "id_str": "148833182005985280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1641234805/Photo0512_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641234805/Photo0512_1__normal.jpg", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "Birds of a feather flock together, I have become more understanding to that phrase.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:48 +0000", "from_user": "lknrodriguez", "from_user_id": 359650447, "from_user_id_str": "359650447", "from_user_name": "e ai manolo :3", "geo": null, "id": 148833173793542140, "id_str": "148833173793542144", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702524029/251144_116485068439233_100002332201299_152564_7006974_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702524029/251144_116485068439233_100002332201299_152564_7006974_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "P\\u00F4neis Malditos? Por que n\\u00E3o Angry Birds Malditos? #BigFollow: http://t.co/g46rE5VK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:46 +0000", "from_user": "BirdsBooksCold", "from_user_id": 363431257, "from_user_id_str": "363431257", "from_user_name": "Jay", "geo": null, "id": 148833163676885000, "id_str": "148833163676884993", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693366168/tumblr_lfa36oieDu1qajnsxo1_500_large_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693366168/tumblr_lfa36oieDu1qajnsxo1_500_large_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Photo: thefieldjournal: http://t.co/o7uRJF85", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:44 +0000", "from_user": "Latashiamau", "from_user_id": 431682736, "from_user_id_str": "431682736", "from_user_name": "Latashia Dejarnett", "geo": null, "id": 148833158064914430, "id_str": "148833158064914432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680992357/ffsnqfnsjb_130521752-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680992357/ffsnqfnsjb_130521752-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Birds of Prey of Africa & Its Islands: Covering the raptors and owls of Africa and its islands, this reference p... http://t.co/r9HGSSQU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:44 +0000", "from_user": "MissDivaD87", "from_user_id": 74027359, "from_user_id_str": "74027359", "from_user_name": "Denyda", "geo": null, "id": 148833156257169400, "id_str": "148833156257169409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693681566/Brooklyn-20111118-00747_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693681566/Brooklyn-20111118-00747_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @BooshieBella: I really do love fellow bad chicks, fly amazons, a Tru #6inchwalker, n stylish chica's,birds of a feather look damn good flocking together", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:43 +0000", "from_user": "Mecia_F_Baby", "from_user_id": 215769899, "from_user_id_str": "215769899", "from_user_name": "Kiss begin wit (K)ay", "geo": null, "id": 148833151593086980, "id_str": "148833151593086976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1666205796/kimbulls_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666205796/kimbulls_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "All the bs 4 the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:38 +0000", "from_user": "JosieMonteraJKS", "from_user_id": 428355695, "from_user_id_str": "428355695", "from_user_name": "Josie Montera", "geo": null, "id": 148833133977018370, "id_str": "148833133977018369", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674178556/16114177451195463_meghan_laughing_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674178556/16114177451195463_meghan_laughing_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@anggunmrz Ya should check out Pigeon Palooza (the next angry birds)- it's launched in Android Mktplce - will be in ITunes in a few days.", "to_user": "anggunmrz", "to_user_id": 234298659, "to_user_id_str": "234298659", "to_user_name": "Anggun (\\u02D8\\u2323\\u02D8) ", "in_reply_to_status_id": 148818690324955140, "in_reply_to_status_id_str": "148818690324955136"}, +{"created_at": "Mon, 19 Dec 2011 18:32:38 +0000", "from_user": "ThisIsJuiceE", "from_user_id": 365036390, "from_user_id_str": "365036390", "from_user_name": "Lastname:Gaddis", "geo": null, "id": 148833131980521470, "id_str": "148833131980521473", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698445460/-JuiceE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698445460/-JuiceE_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@MustBeMack @Official_Speedy bahahahahaha there where birds lions bears n squirrels all around us last night", "to_user": "MustBeMack", "to_user_id": 285909792, "to_user_id_str": "285909792", "to_user_name": "Mack Gaddis", "in_reply_to_status_id": 148832903810383870, "in_reply_to_status_id_str": "148832903810383874"}, +{"created_at": "Mon, 19 Dec 2011 18:32:37 +0000", "from_user": "iloveminigame", "from_user_id": 257059652, "from_user_id_str": "257059652", "from_user_name": "I love mini games", "geo": null, "id": 148833129711411200, "id_str": "148833129711411201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1306724512/eightbit-5a7b1663-2245-442d-9594-565632084afd_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1306724512/eightbit-5a7b1663-2245-442d-9594-565632084afd_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Angry Birds Christmas Lights Insanity That You Can Play [Video] http://t.co/hqu5Eboh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:33 +0000", "from_user": "LazyeOne", "from_user_id": 232956980, "from_user_id_str": "232956980", "from_user_name": "LazyeLove\\u2764", "geo": null, "id": 148833109264175100, "id_str": "148833109264175104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701693566/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701693566/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @DEPTR: My little brother is hooked on Angry Birds lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:31 +0000", "from_user": "JR3N33", "from_user_id": 18068104, "from_user_id_str": "18068104", "from_user_name": "Renee", "geo": null, "id": 148833101974478850, "id_str": "148833101974478848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1643917016/300323_236514573058857_100001009490180_680932_6201363_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643917016/300323_236514573058857_100001009490180_680932_6201363_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "these two love birds. Lance & Portia Lmfao.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:29 +0000", "from_user": "shianturner", "from_user_id": 75910624, "from_user_id_str": "75910624", "from_user_name": "shian turner", "geo": null, "id": 148833092512137200, "id_str": "148833092512137218", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680164194/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680164194/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#igetsoangry when I'm playing angry birds ..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:32:38 +0000", "from_user": "ThisIsJuiceE", "from_user_id": 365036390, "from_user_id_str": "365036390", "from_user_name": "Lastname:Gaddis", "geo": null, "id": 148833131980521470, "id_str": "148833131980521473", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698445460/-JuiceE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698445460/-JuiceE_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@MustBeMack @Official_Speedy bahahahahaha there where birds lions bears n squirrels all around us last night", "to_user": "MustBeMack", "to_user_id": 285909792, "to_user_id_str": "285909792", "to_user_name": "Mack Gaddis", "in_reply_to_status_id": 148832903810383870, "in_reply_to_status_id_str": "148832903810383874"}, +{"created_at": "Mon, 19 Dec 2011 18:32:37 +0000", "from_user": "iloveminigame", "from_user_id": 257059652, "from_user_id_str": "257059652", "from_user_name": "I love mini games", "geo": null, "id": 148833129711411200, "id_str": "148833129711411201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1306724512/eightbit-5a7b1663-2245-442d-9594-565632084afd_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1306724512/eightbit-5a7b1663-2245-442d-9594-565632084afd_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Angry Birds Christmas Lights Insanity That You Can Play [Video] http://t.co/hqu5Eboh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:33 +0000", "from_user": "LazyeOne", "from_user_id": 232956980, "from_user_id_str": "232956980", "from_user_name": "LazyeLove\\u2764", "geo": null, "id": 148833109264175100, "id_str": "148833109264175104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701693566/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701693566/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @DEPTR: My little brother is hooked on Angry Birds lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:31 +0000", "from_user": "JR3N33", "from_user_id": 18068104, "from_user_id_str": "18068104", "from_user_name": "Renee", "geo": null, "id": 148833101974478850, "id_str": "148833101974478848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1643917016/300323_236514573058857_100001009490180_680932_6201363_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643917016/300323_236514573058857_100001009490180_680932_6201363_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "these two love birds. Lance & Portia Lmfao.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:29 +0000", "from_user": "shianturner", "from_user_id": 75910624, "from_user_id_str": "75910624", "from_user_name": "shian turner", "geo": null, "id": 148833092512137200, "id_str": "148833092512137218", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680164194/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680164194/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#igetsoangry when I'm playing angry birds ..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:27 +0000", "from_user": "Jacks076", "from_user_id": 211544178, "from_user_id_str": "211544178", "from_user_name": "Jacks 076", "geo": null, "id": 148833083876057100, "id_str": "148833083876057089", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701546085/nigert33_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701546085/nigert33_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Angry Birds Soundtrack - Theme Song http://t.co/48iz5jpc #onokad", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:23 +0000", "from_user": "GRE8TBLACKSHARK", "from_user_id": 376565512, "from_user_id_str": "376565512", "from_user_name": "KILLUMINATI EMPEROR", "geo": null, "id": 148833070638829570, "id_str": "148833070638829569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1603295320/C1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1603295320/C1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@OUenvyME S/O 2U 4 showing Lil B respect. #Based birds of a feather should flock 2gether. lol Follow 4 follow? :^)", "to_user": "OUenvyME", "to_user_id": 172538229, "to_user_id_str": "172538229", "to_user_name": "KAY STIVERS \\u2713"}, +{"created_at": "Mon, 19 Dec 2011 18:32:20 +0000", "from_user": "Jaimeengql", "from_user_id": 426262582, "from_user_id_str": "426262582", "from_user_name": "Jaimee Goldman", "geo": null, "id": 148833057963651070, "id_str": "148833057963651073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668798708/LLCM-3633_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668798708/LLCM-3633_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@arinsinghx Ya must check out Pigeon Palooza (the next angry birds)- it's for sale in Android Mktplce - will be in ITunes soon.", "to_user": "arinsinghx", "to_user_id": 342921694, "to_user_id_str": "342921694", "to_user_name": "Arin Singh", "in_reply_to_status_id": 148808577245650940, "in_reply_to_status_id_str": "148808577245650944"}, +{"created_at": "Mon, 19 Dec 2011 18:32:18 +0000", "from_user": "Earth_NewsRT", "from_user_id": 173469798, "from_user_id_str": "173469798", "from_user_name": "Earth News ReTweeted", "geo": null, "id": 148833045980524540, "id_str": "148833045980524544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1093196933/fg_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1093196933/fg_copy_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @Natural_Matters RT @greenroofsuk: Exciting bird news - World's most threatened #birds set up new nest in Glo... http://t.co/Ab840OTK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:17 +0000", "from_user": "nhlphil", "from_user_id": 28431822, "from_user_id_str": "28431822", "from_user_name": "Phil Geary", "geo": null, "id": 148833045091328000, "id_str": "148833045091328000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/119249536/phil_boy_lightness_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/119249536/phil_boy_lightness_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @YeahImAshley: Birds would look so stupid if they wore boots.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:09 +0000", "from_user": "BJFernand", "from_user_id": 371700907, "from_user_id_str": "371700907", "from_user_name": "Fernand Julian", "geo": null, "id": 148833009905307650, "id_str": "148833009905307648", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1565587695/thedeathofyouandme_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1565587695/thedeathofyouandme_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Noel Gallagher's High Flying Birds @ Rome. Can't wait", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:55 +0000", "from_user": "lil_dougie_", "from_user_id": 49158912, "from_user_id_str": "49158912", "from_user_name": "NuNu", "geo": +{"coordinates": [41.6583,-91.5337], "type": "Point"}, "id": 148832951294111740, "id_str": "148832951294111744", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668572701/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668572701/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Np- slangin' birds ->> 2 chainz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:53 +0000", "from_user": "jt_ayres", "from_user_id": 346137655, "from_user_id_str": "346137655", "from_user_name": "Mr. Ranger, Sir", "geo": null, "id": 148832941177442300, "id_str": "148832941177442304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702326122/rooney_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702326122/rooney_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MaireadFromBray LOL, no kidding. Everyone talks about lady birds which is lady bugs for us.", "to_user": "MaireadFromBray", "to_user_id": 311507335, "to_user_id_str": "311507335", "to_user_name": "Mairead Turner", "in_reply_to_status_id": 148830057262092300, "in_reply_to_status_id_str": "148830057262092288"}, +{"created_at": "Mon, 19 Dec 2011 18:31:50 +0000", "from_user": "AceBoom", "from_user_id": 16174314, "from_user_id_str": "16174314", "from_user_name": "AceBoom", "geo": null, "id": 148832929190129660, "id_str": "148832929190129665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1659978683/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659978683/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "I beg to differ RT @YeahImAshley: Birds would look so stupid if they wore boots.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:48 +0000", "from_user": "TommiGal7", "from_user_id": 269154124, "from_user_id_str": "269154124", "from_user_name": "Tasneem Adams", "geo": null, "id": 148832924232454140, "id_str": "148832924232454144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1577861214/8ea4028ffe8cb2ff2f1ab6e8568760dd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1577861214/8ea4028ffe8cb2ff2f1ab6e8568760dd_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Three little birds - Bob Marley #thatisall", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:45 +0000", "from_user": "Agnusnxw", "from_user_id": 426260297, "from_user_id_str": "426260297", "from_user_name": "Agnus Zumbach", "geo": null, "id": 148832911267860480, "id_str": "148832911267860481", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668792048/LLCM-3852_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668792048/LLCM-3852_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@parttimesoldier Go check out Pigeon Palooza (the next angry birds)- it's live in Android Mktplce - will be in App Store next week.", "to_user": "parttimesoldier", "to_user_id": 90375376, "to_user_id_str": "90375376", "to_user_name": "Will", "in_reply_to_status_id": 148831935731474430, "in_reply_to_status_id_str": "148831935731474432"}, +{"created_at": "Mon, 19 Dec 2011 18:31:45 +0000", "from_user": "StaceyPegg", "from_user_id": 336530182, "from_user_id_str": "336530182", "from_user_name": "Stacey Pegg", "geo": null, "id": 148832910508703740, "id_str": "148832910508703744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697999885/230027_10150188708371220_732681219_7452309_7846759_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697999885/230027_10150188708371220_732681219_7452309_7846759_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@JesusChristFTM bet you're raging with jealousy at Noah, smelling nice and getting all the birds on the Lynx ad. #outdone", "to_user": "JesusChristFTM", "to_user_id": 338305554, "to_user_id_str": "338305554", "to_user_name": "JesusChristFTM"}, +{"created_at": "Mon, 19 Dec 2011 18:31:41 +0000", "from_user": "Laureelulu", "from_user_id": 276047129, "from_user_id_str": "276047129", "from_user_name": "Laury Lulu", "geo": null, "id": 148832891474939900, "id_str": "148832891474939905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689320638/nu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689320638/nu_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I cannot stop playing Angry Birds!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:38 +0000", "from_user": "Indiraqsu", "from_user_id": 426263021, "from_user_id_str": "426263021", "from_user_name": "Indira Muldrow", "geo": null, "id": 148832880854966270, "id_str": "148832880854966273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668799239/LLCM-1135_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668799239/LLCM-1135_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@levien_043 Go get Pigeon Palooza (the next angry birds)- it's launched in Android Mktplce - will be in ITunes in a few days.", "to_user": "levien_043", "to_user_id": 223272020, "to_user_id_str": "223272020", "to_user_name": "levien ", "in_reply_to_status_id": 148831790080069630, "in_reply_to_status_id_str": "148831790080069632"}, +{"created_at": "Mon, 19 Dec 2011 18:31:36 +0000", "from_user": "emilianoprzdo", "from_user_id": 86614275, "from_user_id_str": "86614275", "from_user_name": "Emily Emiliano ", "geo": null, "id": 148832873665929200, "id_str": "148832873665929217", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700719236/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700719236/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Yo si juntare los tazos de Angry Birds,FIN.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:34 +0000", "from_user": "06ChocolateDrop", "from_user_id": 59381291, "from_user_id_str": "59381291", "from_user_name": "Chocolate Thunder", "geo": null, "id": 148832863201148930, "id_str": "148832863201148930", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1690184507/mail1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690184507/mail1_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "This Charlotte Pike traffic is for the birds!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:30 +0000", "from_user": "Willcox94", "from_user_id": 161031975, "from_user_id_str": "161031975", "from_user_name": "Jack Willcox", "geo": null, "id": 148832848118427650, "id_str": "148832848118427649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1442083285/me_20and_20chittick_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1442083285/me_20and_20chittick_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Can't wait for New Years eve. Knowing me I'll wake up somewhere like Poland with a swastika tattoo and some birds knickers on my head.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:29 +0000", "from_user": "Shizueskep", "from_user_id": 426262224, "from_user_id_str": "426262224", "from_user_name": "Shizue Lautz", "geo": null, "id": 148832844104470530, "id_str": "148832844104470529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668797298/LLCM-4396_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668797298/LLCM-4396_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@megeplok Ya gotta get Pigeon Palooza (the next angry birds)- it is avail in Android Mktplce - will be in App Store soon.", "to_user": "megeplok", "to_user_id": 250229654, "to_user_id_str": "250229654", "to_user_name": "Miggy Marcelo", "in_reply_to_status_id": 148792371881054200, "in_reply_to_status_id_str": "148792371881054208"}, +{"created_at": "Mon, 19 Dec 2011 18:31:28 +0000", "from_user": "Agnusidr", "from_user_id": 426264992, "from_user_id_str": "426264992", "from_user_name": "Marlin Osburne", "geo": null, "id": 148832837653635070, "id_str": "148832837653635073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668803895/LLCM-1660_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668803895/LLCM-1660_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@StanleyShane Ya must play Pigeon Palooza (the next angry birds)- it is live in Android Mktplce - will be in App Store in a few days.", "to_user": "StanleyShane", "to_user_id": 279820737, "to_user_id_str": "279820737", "to_user_name": "Stanley Shane", "in_reply_to_status_id": 148826338889957380, "in_reply_to_status_id_str": "148826338889957376"}, +{"created_at": "Mon, 19 Dec 2011 18:31:27 +0000", "from_user": "eewaroach", "from_user_id": 252283484, "from_user_id_str": "252283484", "from_user_name": "Jackie R", "geo": null, "id": 148832833950060540, "id_str": "148832833950060545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1438387408/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1438387408/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "5 days, 13 hours, and 30 min... til I can play angry birds seasons christmas level number 25", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:25 +0000", "from_user": "Rosescold", "from_user_id": 85919512, "from_user_id_str": "85919512", "from_user_name": "Nanny P. Cascaes", "geo": null, "id": 148832826463223800, "id_str": "148832826463223808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677191242/ifhfd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677191242/ifhfd_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Andry Birds \\u00E9 muito lecal. :3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:22 +0000", "from_user": "alex7ask", "from_user_id": 92949490, "from_user_id_str": "92949490", "from_user_name": "Alex Tudor", "geo": null, "id": 148832814144561150, "id_str": "148832814144561154", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1234917733/TheONE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1234917733/TheONE_normal.jpg", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "Angry.Birds.Rio.v1.3.2.MacOSX.Cracked-CORE http://t.co/7xYuP4FA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:22 +0000", "from_user": "MichelleBrowell", "from_user_id": 393773196, "from_user_id_str": "393773196", "from_user_name": "Michelle Browell", "geo": null, "id": 148832811644760060, "id_str": "148832811644760067", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1624682937/Picture0022_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624682937/Picture0022_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@AlexaMyrdal got a picture of him posing with an angry birds plushie #priceless", "to_user": "AlexaMyrdal", "to_user_id": 348179371, "to_user_id_str": "348179371", "to_user_name": "Alexa Myrdal", "in_reply_to_status_id": 148828526580211700, "in_reply_to_status_id_str": "148828526580211712"}, +{"created_at": "Mon, 19 Dec 2011 18:31:18 +0000", "from_user": "Jus10Jonez", "from_user_id": 117295687, "from_user_id_str": "117295687", "from_user_name": "Justin Jones", "geo": null, "id": 148832797501554700, "id_str": "148832797501554688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1542080793/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542080793/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@ShaunPhillips95 great win last night! Y'all SHOCKED the black birds. Bolt up!!!", "to_user": "ShaunPhillips95", "to_user_id": 28692568, "to_user_id_str": "28692568", "to_user_name": "Shaun Phillips", "in_reply_to_status_id": 148831771608354800, "in_reply_to_status_id_str": "148831771608354817"}, +{"created_at": "Mon, 19 Dec 2011 18:31:17 +0000", "from_user": "Emi__lie", "from_user_id": 101037588, "from_user_id_str": "101037588", "from_user_name": "Emi-lie_", "geo": null, "id": 148832791193325570, "id_str": "148832791193325569", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699879984/ava_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699879984/ava_3_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Soon, it'll be mine ! #Bambi http://t.co/VYoQXx7n via @Etsy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:11 +0000", "from_user": "TheaBerggreen", "from_user_id": 354973677, "from_user_id_str": "354973677", "from_user_name": "Thea Berggreen", "geo": null, "id": 148832766467899400, "id_str": "148832766467899392", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681068185/_pkojlh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681068185/_pkojlh_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "jeez, mor og stefar har f\\u00E5tt ny tlf. s\\u00E5 n\\u00E5 sitter de \\u00E5 spiller angry birds #lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:11 +0000", "from_user": "Mikeyjizlejones", "from_user_id": 419636608, "from_user_id_str": "419636608", "from_user_name": "Shane Codrington", "geo": null, "id": 148832765134114800, "id_str": "148832765134114816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691605894/Picture_0132_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691605894/Picture_0132_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Not only urs RT @miss_sarahkita I think angry birds is sending my mother mad..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:10 +0000", "from_user": "OneManos_", "from_user_id": 218478427, "from_user_id_str": "218478427", "from_user_name": "Wauwww", "geo": null, "id": 148832762596565000, "id_str": "148832762596564993", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1603642387/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1603642387/image_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:09 +0000", "from_user": "jules_5447", "from_user_id": 441063934, "from_user_id_str": "441063934", "from_user_name": "Julie Cunha", "geo": null, "id": 148832757349498880, "id_str": "148832757349498880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702555601/007_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702555601/007_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@curtassjtweeting is for the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:09 +0000", "from_user": "PhilDolinger", "from_user_id": 30578035, "from_user_id_str": "30578035", "from_user_name": "Phil Dolinger", "geo": null, "id": 148832757026525200, "id_str": "148832757026525184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/141057169/Profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/141057169/Profile_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @someecards: Angry Birds now available on iPhone, Droid, and completely insane man's Christmas lights display. http://t.co/mrfMU8Hl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:05 +0000", "from_user": "InhaleMyKush", "from_user_id": 29575149, "from_user_id_str": "29575149", "from_user_name": "I-XXIV-XCV", "geo": null, "id": 148832741679562750, "id_str": "148832741679562754", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701394311/image_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701394311/image_normal", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @ThsWht_iCallHer: Birds of a feather flock together. Hoes on the same shit chase after the same dick.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:04 +0000", "from_user": "fearlessGSMITTY", "from_user_id": 34009753, "from_user_id_str": "34009753", "from_user_name": "@Gaston Smith", "geo": null, "id": 148832737191665660, "id_str": "148832737191665664", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702507607/image_reasonably_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702507607/image_reasonably_small_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @SimplyAyeJae: #iGetsoAngry playing angry birds >.< lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:03 +0000", "from_user": "JussGucci", "from_user_id": 34420820, "from_user_id_str": "34420820", "from_user_name": "AMAZING_Grace \\u2661", "geo": null, "id": 148832729893568500, "id_str": "148832729893568512", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694193442/zRiXyHEo_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694193442/zRiXyHEo_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Her birds eye ! <3 http://t.co/JMh1Ty8M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:00 +0000", "from_user": "HippiChickiNiki", "from_user_id": 73596168, "from_user_id_str": "73596168", "from_user_name": "Niki Grigsby Princip", "geo": null, "id": 148832720729018370, "id_str": "148832720729018368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1643302272/298848_765407764572_3110955_37872424_1581125378_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643302272/298848_765407764572_3110955_37872424_1581125378_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @someecards: Angry Birds now available on iPhone, Droid, and completely insane man's Christmas lights display. http://t.co/mrfMU8Hl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:57 +0000", "from_user": "TheSansMan", "from_user_id": 163290628, "from_user_id_str": "163290628", "from_user_name": "Michael", "geo": null, "id": 148832708238389250, "id_str": "148832708238389249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1523758490/293503_10150257133921927_681921926_8195473_2060233_n__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1523758490/293503_10150257133921927_681921926_8195473_2060233_n__1__normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @YeahImAshley: Birds would look so stupid if they wore boots.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:51 +0000", "from_user": "CptVico", "from_user_id": 65086505, "from_user_id_str": "65086505", "from_user_name": "Victor Fuentes", "geo": null, "id": 148832681319342080, "id_str": "148832681319342080", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693316476/X-Mas_2011_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693316476/X-Mas_2011_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Para todas las que les guste el juego Angry Birds, aqu\\u00ED el vestido que us\\u00F3 la esposa del CEO de Rovio. http://t.co/peB7vRZu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:46 +0000", "from_user": "ALoyalMan716", "from_user_id": 28289878, "from_user_id_str": "28289878", "from_user_name": "Marcus", "geo": null, "id": 148832660649820160, "id_str": "148832660649820160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694160277/Me_on_my_birthday_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694160277/Me_on_my_birthday_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "smh...this shit is for the birds....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:44 +0000", "from_user": "designs_by_debi", "from_user_id": 241452842, "from_user_id_str": "241452842", "from_user_name": "Debi Auger", "geo": null, "id": 148832652533825540, "id_str": "148832652533825537", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1222520913/debi_avatar_300x317_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1222520913/debi_avatar_300x317_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Any Angry Birds lovers out there? Look at this incredible set of beads Nikki over at Bastille Bleu Lampwork just... http://t.co/vc35EcKM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:43 +0000", "from_user": "Mike_Ford12", "from_user_id": 295498064, "from_user_id_str": "295498064", "from_user_name": "Michael Ford ", "geo": null, "id": 148832651535585280, "id_str": "148832651535585282", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1565919734/l0n3NEfl_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1565919734/l0n3NEfl_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Seeing birds trying to fly into the wind never fails to make me laugh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:43 +0000", "from_user": "Marinabel1824", "from_user_id": 162710549, "from_user_id_str": "162710549", "from_user_name": "Marina Belyakov", "geo": null, "id": 148832650122117120, "id_str": "148832650122117120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1049815138/_MG_6283-2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1049815138/_MG_6283-2_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "The world through my eyes: Paris.Birds http://t.co/4sKAA7nX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:43 +0000", "from_user": "_AlecBrooks_", "from_user_id": 182954571, "from_user_id_str": "182954571", "from_user_name": "Alec Brooks", "geo": null, "id": 148832649555886080, "id_str": "148832649555886080", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699448232/Ag6zFswCAAEMcKw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699448232/Ag6zFswCAAEMcKw_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "The bird, bird, bird. The birds the word, get it!?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:43 +0000", "from_user": "Magalywbdq", "from_user_id": 426261624, "from_user_id_str": "426261624", "from_user_name": "Magaly Lankford", "geo": null, "id": 148832649505550340, "id_str": "148832649505550336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668796259/LLCM-0607_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668796259/LLCM-0607_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@EmmaCassady179 Hey, go get Pigeon Palooza (the next angry birds)- it's avail in Android Mktplce - should be in App Store next week.", "to_user": "EmmaCassady179", "to_user_id": 397643325, "to_user_id_str": "397643325", "to_user_name": "Emma Cassady(:", "in_reply_to_status_id": 148809420296568830, "in_reply_to_status_id_str": "148809420296568833"}, +{"created_at": "Mon, 19 Dec 2011 18:30:43 +0000", "from_user": "Avaldss", "from_user_id": 402001540, "from_user_id_str": "402001540", "from_user_name": "Ava", "geo": null, "id": 148832647945269250, "id_str": "148832647945269248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://www.ajaymatharu.com/" rel="nofollow">Tweet Old Post</a>", "text": "Tips For Attracting Birds To Your Back Yard http://t.co/hGmVhqWP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:36 +0000", "from_user": "SterlingBooks", "from_user_id": 17161347, "from_user_id_str": "17161347", "from_user_name": "Sterling Publishing", "geo": null, "id": 148832621428867070, "id_str": "148832621428867072", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1563785139/SterlingTwitterLogo_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1563785139/SterlingTwitterLogo_bigger_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "True Tales & A Cherry On Top: Olivia's Birds http://t.co/XixmEMDA cc @BirdgirlLiv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:34 +0000", "from_user": "LORDKAY2", "from_user_id": 282189544, "from_user_id_str": "282189544", "from_user_name": "chikelue-mbonu kosy", "geo": null, "id": 148832611664539650, "id_str": "148832611664539648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691609100/kay_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691609100/kay_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@AquaKeli yeah it really would....but d kiss was ment 4u and not d birds or chicken either...", "to_user": "AquaKeli", "to_user_id": 262197577, "to_user_id_str": "262197577", "to_user_name": "Edi", "in_reply_to_status_id": 148831739777794050, "in_reply_to_status_id_str": "148831739777794048"}, +{"created_at": "Mon, 19 Dec 2011 18:30:33 +0000", "from_user": "RyanAllonby", "from_user_id": 357073486, "from_user_id_str": "357073486", "from_user_name": "Ryan Allonby", "geo": null, "id": 148832605700231170, "id_str": "148832605700231168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687858345/a0xwg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687858345/a0xwg_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@glennaggie did i get a taxi home with you and two fat birds? on saturday?", "to_user": "glennaggie", "to_user_id": 111614721, "to_user_id_str": "111614721", "to_user_name": "Glenn Agnew"}, +{"created_at": "Mon, 19 Dec 2011 18:30:32 +0000", "from_user": "neyne", "from_user_id": 14213971, "from_user_id_str": "14213971", "from_user_name": "Branko Rihtman", "geo": null, "id": 148832601958916100, "id_str": "148832601958916097", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1271623578/bio-thinkvis_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1271623578/bio-thinkvis_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@raffeg come on, tell me this doesn't invite a \"I couldn't finish the 47th level on Angry Birds\" comment http://t.co/I2i1igiN", "to_user": "raffeg", "to_user_id": 60722320, "to_user_id_str": "60722320", "to_user_name": "Raffe Gold", "in_reply_to_status_id": 148830895837675520, "in_reply_to_status_id_str": "148830895837675522"}, +{"created_at": "Mon, 19 Dec 2011 18:30:30 +0000", "from_user": "Ni4iporkoff", "from_user_id": 232255878, "from_user_id_str": "232255878", "from_user_name": "Illya Nichiporkov", "geo": null, "id": 148832595428380670, "id_str": "148832595428380672", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1665892701/IMG_0002______________normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665892701/IMG_0002______________normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u041D\\u0423 \\u041F\\u041E\\u0427\\u0415\\u041C\\u0423 \\u0412 ANGRY BIRDS F \\u043D\\u0435 \\u0440\\u0430\\u0432\\u043D\\u043E mg???????? \\u0432\\u0441\\u0435 \\u0431\\u044B\\u043B\\u043E \\u0431\\u044B \\u043F\\u0440\\u043E\\u0449\\u0435", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:29 +0000", "from_user": "ASerrate", "from_user_id": 17839243, "from_user_id_str": "17839243", "from_user_name": "Ashley Serrate", "geo": null, "id": 148832589640253440, "id_str": "148832589640253441", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1221791198/ash_with_yama_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1221791198/ash_with_yama_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @MrBelal: @ASerrate Just a typical day at NBC Miami... chillin with wild birds. http://t.co/9YTZVvTs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:25 +0000", "from_user": "AntiqueBeak", "from_user_id": 409383234, "from_user_id_str": "409383234", "from_user_name": "Antique Beak Vintage", "geo": null, "id": 148832575769677820, "id_str": "148832575769677824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1640473304/antiquebeakstore_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640473304/antiquebeakstore_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "\\u2603 \\u2603 \\u2603 You'll find beautiful hard-to-find bird trinkets and antiques at http://t.co/YqIBCZjK #Birds #Antiques \\u2603 \\u2603 \\u2603", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:25 +0000", "from_user": "Rosamondbnmq", "from_user_id": 426260430, "from_user_id_str": "426260430", "from_user_name": "Rosamond Wengel", "geo": null, "id": 148832574410723330, "id_str": "148832574410723328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668792505/LLCM-4623_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668792505/LLCM-4623_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@vicki1512 Ya gotta try out Pigeon Palooza (the next angry birds)- it is live in Android Mktplce - should be in ITunes next week.", "to_user": "vicki1512", "to_user_id": 343727579, "to_user_id_str": "343727579", "to_user_name": "vicki pelan", "in_reply_to_status_id": 148828332597841920, "in_reply_to_status_id_str": "148828332597841920"}, +{"created_at": "Mon, 19 Dec 2011 18:30:25 +0000", "from_user": "DolaSola", "from_user_id": 441034044, "from_user_id_str": "441034044", "from_user_name": "Miss. Sola Dola", "geo": null, "id": 148832574393950200, "id_str": "148832574393950208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702589125/168749_181312048570134_100000740198431_470801_1630945_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702589125/168749_181312048570134_100000740198431_470801_1630945_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Birds seen flying around, you never see them too long on the ground. You wanna be one of them. #followback", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:25 +0000", "from_user": "Every1HateKarma", "from_user_id": 364626414, "from_user_id_str": "364626414", "from_user_name": "Everyone Hates Karma", "geo": null, "id": 148832574293295100, "id_str": "148832574293295104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701672695/Every1HateKarma_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701672695/Every1HateKarma_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "birds of a feather flock together", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:22 +0000", "from_user": "jobondi", "from_user_id": 24113474, "from_user_id_str": "24113474", "from_user_name": "jo grogan ", "geo": null, "id": 148832560997339140, "id_str": "148832560997339136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1649795337/Photo_on_2011-05-28_at_18.13_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649795337/Photo_on_2011-05-28_at_18.13_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "no daylight saving in qld = all the freaking birds wake up early!my dad's house feels like it's in the middle of a bird sanctuary #hello5am", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:20 +0000", "from_user": "rinielenika", "from_user_id": 23968427, "from_user_id_str": "23968427", "from_user_name": "Chamille / Rin", "geo": null, "id": 148832553640529920, "id_str": "148832553640529921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1629269185/derpedme_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629269185/derpedme_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "WHY IS BOB MARLEY \"THREE LITTLE BIRDS\" IN MY PENDULUM RADIO?!?!?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:16 +0000", "from_user": "JAMBMom", "from_user_id": 47674753, "from_user_id_str": "47674753", "from_user_name": "Susan Schmidt", "geo": null, "id": 148832536305483780, "id_str": "148832536305483776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1263234466/2011_Flower_Susan_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263234466/2011_Flower_Susan_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"Carol of the Birds\" on electric bass -not so good.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:11 +0000", "from_user": "KjarDno", "from_user_id": 98752892, "from_user_id_str": "98752892", "from_user_name": "kristen ", "geo": null, "id": 148832515178762240, "id_str": "148832515178762241", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688303205/Picture_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688303205/Picture_6_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Kill2 birds RT @big_maaack: \"i jus take prenatal vitamins for my hair. and then if i get knocked up, i'll have a healthy baby, too\" @KjarDno", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:11 +0000", "from_user": "MFrost3", "from_user_id": 404064505, "from_user_id_str": "404064505", "from_user_name": "MFrost", "geo": null, "id": 148832513631072260, "id_str": "148832513631072256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1620316286/P1090503_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620316286/P1090503_normal.JPG", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "This is a #Photo of a #Seagull and some #Blackbirds-#Birds\\thttp://t.co/FtsrKuyv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:10 +0000", "from_user": "PrinceBreezyy_", "from_user_id": 249998887, "from_user_id_str": "249998887", "from_user_name": "TaylorGang..", "geo": null, "id": 148832509164130300, "id_str": "148832509164130306", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701717515/90zt4eoN_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701717515/90zt4eoN_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ataaa_: i got so much honey, the bees envy me. :b haha RT @PrinceBreezyy_ I got a sweeter song, then the birds in the trees", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:09 +0000", "from_user": "PaulByrneUK", "from_user_id": 141560817, "from_user_id_str": "141560817", "from_user_name": "Paul Byrne", "geo": null, "id": 148832505951293440, "id_str": "148832505951293440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1262739762/n862740354_6049378_3767721a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1262739762/n862740354_6049378_3767721a_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@mcfarlandalison they seem to forget that part and that video games like angry birds are built around behaviourism http://t.co/fodaTAxI", "to_user": "mcfarlandalison", "to_user_id": 406869728, "to_user_id_str": "406869728", "to_user_name": "Alison McFarland", "in_reply_to_status_id": 148829469539434500, "in_reply_to_status_id_str": "148829469539434496"}, +{"created_at": "Mon, 19 Dec 2011 18:30:07 +0000", "from_user": "Justbirds1", "from_user_id": 291680688, "from_user_id_str": "291680688", "from_user_name": "Bev", "geo": null, "id": 148832498930028540, "id_str": "148832498930028544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1335631073/5261855304_0f68f9ba91_m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335631073/5261855304_0f68f9ba91_m_normal.jpg", "source": "<a href="http://www.twaitter.com" rel="nofollow">Twaitter</a>", "text": "Horned Owl Takes Flight http://t.co/lUPbvzYl #birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:04 +0000", "from_user": "_duuhfc", "from_user_id": 263810442, "from_user_id_str": "263810442", "from_user_name": "Eduardinha", "geo": null, "id": 148832485957054460, "id_str": "148832485957054464", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1586594360/PAAAAN51n0L1RNBxxr1nGLF9dMpfSpQfjMhUvUDGUJfetE3Kq5N5C488EbKjR9wSeoAugOFwquOYl_Uu8HdguXqYcaEAm1T1UGpvgl6YYu5WW5rXuHBc5KL7bpb5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586594360/PAAAAN51n0L1RNBxxr1nGLF9dMpfSpQfjMhUvUDGUJfetE3Kq5N5C488EbKjR9wSeoAugOFwquOYl_Uu8HdguXqYcaEAm1T1UGpvgl6YYu5WW5rXuHBc5KL7bpb5_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "P\\u00F4neis Malditos? Por que n\\u00E3o Angry Birds Malditos? #MaisFollowers: http://t.co/E18b1C7I", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:04 +0000", "from_user": "elisasouza", "from_user_id": 21268951, "from_user_id_str": "21268951", "from_user_name": "Elisa Souza", "geo": null, "id": 148832484195450880, "id_str": "148832484195450880", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1436193518/elisasouza2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1436193518/elisasouza2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "t\\u00F4 presa numa fase de angry birds eagora", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:02 +0000", "from_user": "SimplyAyeJae", "from_user_id": 164671468, "from_user_id_str": "164671468", "from_user_name": "Aye Jae\\uE303", "geo": null, "id": 148832477899800580, "id_str": "148832477899800576", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700795115/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700795115/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "#iGetsoAngry playing angry birds >.< lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:59 +0000", "from_user": "miss_sarahkita", "from_user_id": 243637808, "from_user_id_str": "243637808", "from_user_name": "sarah williams", "geo": null, "id": 148832465350434800, "id_str": "148832465350434816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692940413/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692940413/image_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "I think angry birds is sending my mother mad..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:57 +0000", "from_user": "j_Goldss", "from_user_id": 334417837, "from_user_id_str": "334417837", "from_user_name": "Jon", "geo": null, "id": 148832458551459840, "id_str": "148832458551459840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693302014/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693302014/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@chrisZerfass @d_irz if the GMEN choke then must b better than da #birds because u need 2 b #contenders 2 b considered #chokers...", "to_user": "chrisZerfass", "to_user_id": 360866535, "to_user_id_str": "360866535", "to_user_name": "Chris Zerfass", "in_reply_to_status_id": 148829275867447300, "in_reply_to_status_id_str": "148829275867447296"}, +{"created_at": "Mon, 19 Dec 2011 18:29:57 +0000", "from_user": "tinuh_ROSE52", "from_user_id": 46803450, "from_user_id_str": "46803450", "from_user_name": "t i n u h h", "geo": null, "id": 148832456475287550, "id_str": "148832456475287552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702577107/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702577107/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "This shit is for the birds! #imhungry", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:56 +0000", "from_user": "idkwhatooput", "from_user_id": 421514092, "from_user_id_str": "421514092", "from_user_name": "i like the name carl", "geo": null, "id": 148832452721389570, "id_str": "148832452721389570", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700415500/DSCF5852_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700415500/DSCF5852_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@x_HGO_LOUDED watch you gonna be a zoo keepper in the bird section. ugly birds. lololol, you gonnna look STANK. <3", "to_user": "x_HGO_LOUDED", "to_user_id": 144220483, "to_user_id_str": "144220483", "to_user_name": "J\\u0394Vii\\u03A3R ", "in_reply_to_status_id": 148832193769242620, "in_reply_to_status_id_str": "148832193769242624"}, +{"created_at": "Mon, 19 Dec 2011 18:29:48 +0000", "from_user": "NathDeNatal", "from_user_id": 235726970, "from_user_id_str": "235726970", "from_user_name": "Nathalia Silva", "geo": null, "id": 148832417623441400, "id_str": "148832417623441409", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691166508/perfil_orkut_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691166508/perfil_orkut_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "P\\u00F4neis Malditos? Por que n\\u00E3o Angry Birds Malditos? #MaisFollowers: http://t.co/RV8bRSvl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:47 +0000", "from_user": "JAMBMom", "from_user_id": 47674753, "from_user_id_str": "47674753", "from_user_name": "Susan Schmidt", "geo": null, "id": 148832413332672500, "id_str": "148832413332672513", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1263234466/2011_Flower_Susan_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263234466/2011_Flower_Susan_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Jeremy is perfecting \"Carol of the Birds\" on recorder today...At least he's good.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:45 +0000", "from_user": "BNTheadhuncho", "from_user_id": 265888019, "from_user_id_str": "265888019", "from_user_name": "B.N.T Lil Randy", "geo": null, "id": 148832406315610100, "id_str": "148832406315610112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688517921/alLDS2R5_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688517921/alLDS2R5_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "MAN nothing to tweet about so I'm gone birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:44 +0000", "from_user": "E_N_Jay", "from_user_id": 152539428, "from_user_id_str": "152539428", "from_user_name": "Ian J", "geo": null, "id": 148832403958411260, "id_str": "148832403958411264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1585607602/buddyn-banner_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585607602/buddyn-banner_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "This one is for @paigeyri - Over 1,000 birds a year die from smashing into windows.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:43 +0000", "from_user": "msdorasanchez", "from_user_id": 87572092, "from_user_id_str": "87572092", "from_user_name": "Shaquita hunt", "geo": null, "id": 148832398019268600, "id_str": "148832398019268608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1416749233/264488_1808031362502_1291470292_31489392_4569088_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1416749233/264488_1808031362502_1291470292_31489392_4569088_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Guess ill play angry birds til i fall asleep", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:43 +0000", "from_user": "court_rene", "from_user_id": 396768343, "from_user_id_str": "396768343", "from_user_name": "Courtney", "geo": null, "id": 148832397234933760, "id_str": "148832397234933760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694064027/381266_2332251020984_1091010107_31890737_48461642_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694064027/381266_2332251020984_1091010107_31890737_48461642_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "falling in love is for the birds...#truefact never will i let love capture me.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:39 +0000", "from_user": "L_C__", "from_user_id": 104209539, "from_user_id_str": "104209539", "from_user_name": "\\u26A1\\u26A1\\u26A1\\u26A1\\u26A1", "geo": null, "id": 148832383129493500, "id_str": "148832383129493505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699745194/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699745194/image_normal.jpg", "source": "<a href="http://tweetlogix.com" rel="nofollow">Tweetlogix</a>", "text": "\"you watch for the birds cause they're gonna help you those birds\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:37 +0000", "from_user": "meeklabs", "from_user_id": 46413526, "from_user_id_str": "46413526", "from_user_name": "Meeklabs", "geo": null, "id": 148832371783909380, "id_str": "148832371783909376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/876932502/flask_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/876932502/flask_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Oh boy! An #Angrybirds lights display! If only I could get that barking dog down the street with the same effect. http://t.co/76ZNENnP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:37 +0000", "from_user": "Sophiiiee16", "from_user_id": 221526322, "from_user_id_str": "221526322", "from_user_name": "Sophie", "geo": null, "id": 148832371716796400, "id_str": "148832371716796417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1251637813/twitterpic_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1251637813/twitterpic_normal.JPG", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I favorited a @YouTube video http://t.co/cMm3g2Uk The Cinematic Orchestra Arrival of the Birds & Transformati", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:33 +0000", "from_user": "mrs_onix", "from_user_id": 431022675, "from_user_id_str": "431022675", "from_user_name": "Mrs. Onix", "geo": null, "id": 148832356285939700, "id_str": "148832356285939712", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1679582743/0231_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679582743/0231_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Pues nada, voy a jugar un poquito a Angry Birds...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:31 +0000", "from_user": "capriowyjelb8", "from_user_id": 376831491, "from_user_id_str": "376831491", "from_user_name": "Caprio Kay", "geo": null, "id": 148832349344366600, "id_str": "148832349344366592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1551695369/imagesCAQKHHPT_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1551695369/imagesCAQKHHPT_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "6 cats, 2 dogs and 3 birds found new homes today!eLtjWk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:31 +0000", "from_user": "Hannakhj", "from_user_id": 191921623, "from_user_id_str": "191921623", "from_user_name": "Hanna K. Hjardar", "geo": null, "id": 148832345619824640, "id_str": "148832345619824643", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1406726919/IMG_0134_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1406726919/IMG_0134_normal.JPG", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube video http://t.co/XfjpKEEx Angry Birds: The Movie (Trailer)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:28 +0000", "from_user": "Borrell7217shel", "from_user_id": 433254238, "from_user_id_str": "433254238", "from_user_name": "Mirella Borrell", "geo": null, "id": 148832333628321800, "id_str": "148832333628321792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1684774546/17235587091135062_smiling_beauty_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684774546/17235587091135062_smiling_beauty_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Birds: Birds\\n\\n\\n Birds come in all sizes, shapes, and colors. Birds are magic. Birds are everywhere. If you liste... http://t.co/ZSLpdPSm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:27 +0000", "from_user": "Nordmark7746bar", "from_user_id": 430012755, "from_user_id_str": "430012755", "from_user_name": "Nguyet Nordmark", "geo": null, "id": 148832331266916350, "id_str": "148832331266916352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677450077/18391580171197819_blondie_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677450077/18391580171197819_blondie_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Birds: Birds\\n\\n\\n Birds come in all sizes, shapes, and colors. Birds are magic. Birds are everywhere. If you liste... http://t.co/Xf8BfTpk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:26 +0000", "from_user": "jessemariababe", "from_user_id": 312179006, "from_user_id_str": "312179006", "from_user_name": "jessica morales", "geo": null, "id": 148832328318324740, "id_str": "148832328318324737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1684516432/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684516432/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "yay angry birds toy <3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:26 +0000", "from_user": "Dost_Ivan", "from_user_id": 153153871, "from_user_id_str": "153153871", "from_user_name": "Ivan Garcia", "geo": null, "id": 148832325105491970, "id_str": "148832325105491968", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701607194/sepia_diciembre_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701607194/sepia_diciembre_2_normal.jpg", "source": "<a href="http://www.tweets60.com/" rel="nofollow">Tweets60dm</a>", "text": "Musica y mas musica pa alegrar el alma\"High Flying Birds\" Noel Gallaghers http://t.co/E3LehwAa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:24 +0000", "from_user": "BGMoNeyTalK_FMB", "from_user_id": 61115369, "from_user_id_str": "61115369", "from_user_name": "Ant", "geo": null, "id": 148832316859498500, "id_str": "148832316859498497", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1565967818/Who_20Look_20Better_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1565967818/Who_20Look_20Better_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@MamaCashnOut_08 Smh.. Them Jail Birds.", "to_user": "MamaCashnOut_08", "to_user_id": 306414693, "to_user_id_str": "306414693", "to_user_name": "Adrianne "}, +{"created_at": "Mon, 19 Dec 2011 18:29:24 +0000", "from_user": "dieblougevaar", "from_user_id": 269375231, "from_user_id_str": "269375231", "from_user_name": "Johann Kruger", "geo": null, "id": 148832316851109900, "id_str": "148832316851109888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://vip.wordpress.com/hosting" rel="nofollow">WordPress.com VIP</a>", "text": "RT @TechCrunch: Video: The Interactive Angry Birds Christmas Lights Game http://t.co/cDrhsoV3 by @mjburnsy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:23 +0000", "from_user": "davidhwheeler", "from_user_id": 209735838, "from_user_id_str": "209735838", "from_user_name": "David Wheeler", "geo": null, "id": 148832313483075600, "id_str": "148832313483075584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1320066226/dave.headshot.small_4-11_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1320066226/dave.headshot.small_4-11_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Linda's For the Birds: The Maurice National Scenic and Recreational River, Cumberland County: Maur... http://t.co/CELkU1SI #njenviro #nj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:22 +0000", "from_user": "Mauradmv", "from_user_id": 426260348, "from_user_id_str": "426260348", "from_user_name": "Maura Loepp", "geo": null, "id": 148832311071354880, "id_str": "148832311071354880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668792271/LLCM-4565_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668792271/LLCM-4565_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Lary_Bennington Ya have to try Pigeon Palooza (the next angry birds)- it's live in Android Mktplce - will be in ITunes next week.", "to_user": "Lary_Bennington", "to_user_id": 236098684, "to_user_id_str": "236098684", "to_user_name": "\\u2620Larissa Bennington\\u2620", "in_reply_to_status_id": 148826799424552960, "in_reply_to_status_id_str": "148826799424552960"}, +{"created_at": "Mon, 19 Dec 2011 18:29:16 +0000", "from_user": "MollyyyBeee_", "from_user_id": 250990724, "from_user_id_str": "250990724", "from_user_name": "R.i.pDominiqueCurry.", "geo": null, "id": 148832282906591230, "id_str": "148832282906591232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692364906/6nrkHh2q_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692364906/6nrkHh2q_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "But about to text one of my jail birds that I meet last night lol.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:14 +0000", "from_user": "Particiamso", "from_user_id": 426263721, "from_user_id_str": "426263721", "from_user_name": "Particia Brun", "geo": null, "id": 148832276392845300, "id_str": "148832276392845312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668801396/LLCM-4961_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668801396/LLCM-4961_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@khairulnidzam Go try out Pigeon Palooza (the next angry birds)- it's launched in Android Mktplce - will be in App Store in a few days.", "to_user": "khairulnidzam", "to_user_id": 230221801, "to_user_id_str": "230221801", "to_user_name": "KhairulNidzam Othman", "in_reply_to_status_id": 148822267105779700, "in_reply_to_status_id_str": "148822267105779712"}, +{"created_at": "Mon, 19 Dec 2011 18:29:14 +0000", "from_user": "vitious", "from_user_id": 107035075, "from_user_id_str": "107035075", "from_user_name": "Alessandro Vit", "geo": null, "id": 148832275612696580, "id_str": "148832275612696579", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/645700588/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/645700588/avatar_normal.jpg", "source": "<a href="http://path.com/" rel="nofollow">Path 2.0</a>", "text": "Mah \\u266B Three Little Birds by @bobmarley \\u2014 http://t.co/7jZRS8zl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:12 +0000", "from_user": "Jay_B28", "from_user_id": 244128792, "from_user_id_str": "244128792", "from_user_name": "Jesse Beato", "geo": null, "id": 148832269803593730, "id_str": "148832269803593728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696483654/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696483654/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@DJFRANK_WHITE: LIFE IS LIKE AN IPHONE , ALL THESE ANGRY BIRDS .\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:09 +0000", "from_user": "_RStokes_", "from_user_id": 385116933, "from_user_id_str": "385116933", "from_user_name": "Rikayla", "geo": null, "id": 148832255165476860, "id_str": "148832255165476864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1694120837/180457_10150177811599062_743349061_8837791_8205231_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694120837/180457_10150177811599062_743349061_8837791_8205231_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "probably just the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:07 +0000", "from_user": "JCScruggs", "from_user_id": 28253912, "from_user_id_str": "28253912", "from_user_name": "Carlos Spicywiener", "geo": null, "id": 148832244964917250, "id_str": "148832244964917248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697804007/1324103845289_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697804007/1324103845289_normal.jpg", "source": "<a href="http://www.motorola.com" rel="nofollow">motoblur</a>", "text": "Im more addicted to Fruit Ninja then Angry Birds and Temple Run.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:06 +0000", "from_user": "LizGuarniery", "from_user_id": 143856234, "from_user_id_str": "143856234", "from_user_name": "\\u0AEA Liz Guarn\\u00EDery.", "geo": null, "id": 148832243073286140, "id_str": "148832243073286144", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700911820/DSC_0000023_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700911820/DSC_0000023_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "P\\u00F4neis Malditos? Por que n\\u00E3o Angry Birds Malditos? #BigFollow: http://t.co/kX21sGnX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:28:59 +0000", "from_user": "RadLanda", "from_user_id": 400087105, "from_user_id_str": "400087105", "from_user_name": "Radha Landa", "geo": null, "id": 148832214241652740, "id_str": "148832214241652738", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1625443391/315003_2365208891092_1276492736_2847767_7848413_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1625443391/315003_2365208891092_1276492736_2847767_7848413_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MollieMcHenry classy birds ;) I finish college tomorrow afternoon so I'm started the celebrations now. Got Black Mirror on, you watched it?", "to_user": "MollieMcHenry", "to_user_id": 71606719, "to_user_id_str": "71606719", "to_user_name": "Mollie McHenry", "in_reply_to_status_id": 148831375737364480, "in_reply_to_status_id_str": "148831375737364481"}, +{"created_at": "Mon, 19 Dec 2011 18:28:59 +0000", "from_user": "Niddu_Hafizz", "from_user_id": 367762066, "from_user_id_str": "367762066", "from_user_name": "\\u0438 \\u043D\\u0454\\u044F\\u0438\\u03B1\\u0438\\u2202\\u0454z", "geo": null, "id": 148832213553774600, "id_str": "148832213553774593", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685484536/me__2_D_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685484536/me__2_D_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@NabilaEsmaralda i hear majong , hahaha , wait , do birds have ears ? D:", "to_user": "NabilaEsmaralda", "to_user_id": 380882741, "to_user_id_str": "380882741", "to_user_name": "Secretly Zayn's .", "in_reply_to_status_id": 148831681409843200, "in_reply_to_status_id_str": "148831681409843200"}, +{"created_at": "Mon, 19 Dec 2011 18:28:59 +0000", "from_user": "Skatebder4ever", "from_user_id": 326962727, "from_user_id_str": "326962727", "from_user_name": "Josh torres", "geo": null, "id": 148832212912058370, "id_str": "148832212912058370", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1573264268/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1573264268/image_normal.jpg", "source": "<a href="http://angrybirdstweets.com" rel="nofollow">Angry Birds Tweets</a>", "text": "Just unlocked the angry birds seasons twitter levels, http://t.co/hqFZ0EMZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:55 +0000", "from_user": "paviblogs", "from_user_id": 96503720, "from_user_id_str": "96503720", "from_user_name": "Pavithran blogs", "geo": null, "id": 148832197950967800, "id_str": "148832197950967808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/576010547/creativenerds-fav-icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/576010547/creativenerds-fav-icon_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "TOI Blogs Birds of then: Sifting through the daily barrage of trash mail and such, I hit upon somewhat of a trea... http://t.co/hw1Mlfjq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:54 +0000", "from_user": "magchola", "from_user_id": 231122984, "from_user_id_str": "231122984", "from_user_name": "maggie lane", "geo": null, "id": 148832193647611900, "id_str": "148832193647611904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1674524894/magchola_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674524894/magchola_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Hes right. Emotions are for the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:53 +0000", "from_user": "JuanCortes_", "from_user_id": 152680294, "from_user_id_str": "152680294", "from_user_name": "Juan Cort\\u00E9s Gonz\\u00E1lez", "geo": null, "id": 148832187859484670, "id_str": "148832187859484672", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702474700/Sin_t_tulo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702474700/Sin_t_tulo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @DexterSecs: En Angry Birds, la expresi\\u00F3n \"Matar dos p\\u00E1jaros de un tiro\" se ve modificada a: \"Matar dos cerdos de un p\\u00E1jaro\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:48 +0000", "from_user": "SneedAndWeed", "from_user_id": 42160862, "from_user_id_str": "42160862", "from_user_name": "Sneedenhiemer\\u2122 \\u2714 ", "geo": null, "id": 148832169089974270, "id_str": "148832169089974272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1666892309/tumblr_lvi0hnmwmM1qlc6juo1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666892309/tumblr_lvi0hnmwmM1qlc6juo1_500_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "They only after your bread , them fucking birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:48 +0000", "from_user": "inHOTpursuit", "from_user_id": 19727052, "from_user_id_str": "19727052", "from_user_name": "Alex Michael May", "geo": +{"coordinates": [33.9909,-118.4639], "type": "Point"}, "id": 148832166443352060, "id_str": "148832166443352064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1680206392/Picture_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680206392/Picture_5_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "A 2 year old just creamed me in angry birds. And can navigate the iPad better than me.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:45 +0000", "from_user": "RaptorCentre", "from_user_id": 71678578, "from_user_id_str": "71678578", "from_user_name": "Mountsberg", "geo": null, "id": 148832155462668300, "id_str": "148832155462668288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/432572957/teddyface_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/432572957/teddyface_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @olsondotinfo: A photo of Phoenix, a 22 year old bald eagle at Mountsberg @raptorcentre http://t.co/sWoMxLBI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:41 +0000", "from_user": "veronicasage", "from_user_id": 19777875, "from_user_id_str": "19777875", "from_user_name": "Veronica Sage", "geo": null, "id": 148832137418780670, "id_str": "148832137418780673", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/233342190/IMG_0208_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/233342190/IMG_0208_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "The little birds that visit my window And chirp their way from tree to tree--home to home--delight me to no end", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:35 +0000", "from_user": "TukieTheOUTkast", "from_user_id": 160751809, "from_user_id_str": "160751809", "from_user_name": "Tukie Rox'ann Tywoun", "geo": null, "id": 148832114081665020, "id_str": "148832114081665024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687789872/tukie1234_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687789872/tukie1234_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "#Sorry doesnt make the sun come up or the birds sing, GOD does. . . so start by telling him cuz, that word is fucking overrated.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:32 +0000", "from_user": "_jeazyy", "from_user_id": 280201229, "from_user_id_str": "280201229", "from_user_name": "Your Name Here ", "geo": null, "id": 148832102064988160, "id_str": "148832102064988160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668414277/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668414277/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Them nachos from Free Birds gave me life.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:32 +0000", "from_user": "Sofianechachoua", "from_user_id": 115473763, "from_user_id_str": "115473763", "from_user_name": "Sofian\\u00EA\\u2665Power\\u263BKing", "geo": null, "id": 148832101272256500, "id_str": "148832101272256513", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1337420044/180188_143369135726425_100001600170381_268016_2744377_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1337420044/180188_143369135726425_100001600170381_268016_2744377_n_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube video http://t.co/gekdR6w2 The Weeknd - The Birds (Part 1)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:29 +0000", "from_user": "Lucas_A_Mann", "from_user_id": 223927920, "from_user_id_str": "223927920", "from_user_name": "Lucas A Mann", "geo": null, "id": 148832088928419840, "id_str": "148832088928419840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1611257786/5KNxwbly_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611257786/5KNxwbly_normal", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @someecards: Angry Birds now available on iPhone, Droid, and completely insane man's Christmas lights display. http://t.co/mrfMU8Hl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:29 +0000", "from_user": "deenay10", "from_user_id": 149683615, "from_user_id_str": "149683615", "from_user_name": "yvonne barry", "geo": null, "id": 148832087741435900, "id_str": "148832087741435904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1040359847/Untitled_-_1.jpgMR_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1040359847/Untitled_-_1.jpgMR_normal.jpg", "source": "<a href="http://www.news-republic.com" rel="nofollow">News Republic</a>", "text": "IM+ Adds Own In-App Messenger \"Beep\", Angry Birds Theme http://t.co/V3X45t3m", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:28 +0000", "from_user": "Dank_T", "from_user_id": 422791450, "from_user_id_str": "422791450", "from_user_name": "Daniel Thompson", "geo": null, "id": 148832083031236600, "id_str": "148832083031236608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1661961419/oGxw5O7U_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661961419/oGxw5O7U_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Lunch was legit now time for some angry birds. #lovemyjob", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:28 +0000", "from_user": "euando_roberto", "from_user_id": 316072822, "from_user_id_str": "316072822", "from_user_name": "Euan", "geo": null, "id": 148832081563230200, "id_str": "148832081563230211", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700789306/248542_1679232155370_1674517579_1225275_1581750_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700789306/248542_1679232155370_1674517579_1225275_1581750_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "some of the wee third year birds wear so much blusher stuff they look like lobsters.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:28 +0000", "from_user": "SamBircham", "from_user_id": 40892108, "from_user_id_str": "40892108", "from_user_name": "Sam Bircham", "geo": null, "id": 148832081353519100, "id_str": "148832081353519105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1373869678/225006_187900627929357_100001282626721_519921_4906120_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1373869678/225006_187900627929357_100001282626721_519921_4906120_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "What's so great about penguins? They're the clowns of the birds. How I loathe them!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:28 +0000", "from_user": "kaylakangaroo", "from_user_id": 60925835, "from_user_id_str": "60925835", "from_user_name": "Kayla Mann", "geo": null, "id": 148832079533195260, "id_str": "148832079533195264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1643651086/66324_440833385769_595310769_5890338_5976578_n_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643651086/66324_440833385769_595310769_5890338_5976578_n_1__normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Birds nests :) http://t.co/eJDny87Q", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:25 +0000", "from_user": "Misscoolfinds", "from_user_id": 30348296, "from_user_id_str": "30348296", "from_user_name": "Misscoolfinds ", "geo": null, "id": 148832069240369150, "id_str": "148832069240369152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1476663529/shopping-8376_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1476663529/shopping-8376_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Red Angry Bird Bag Clip & Angry Birds Decorative Decals Removeable Free Shipping http://t.co/ZctHBnCM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:21 +0000", "from_user": "just_steven", "from_user_id": 31274220, "from_user_id_str": "31274220", "from_user_name": "steven oriee", "geo": null, "id": 148832054740660220, "id_str": "148832054740660224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1655976537/1322168286201_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655976537/1322168286201_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Shit-tastic day! Running away... high into the hills... fly with the birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:21 +0000", "from_user": "iiAMnotJASMINE", "from_user_id": 227698341, "from_user_id_str": "227698341", "from_user_name": "Jasmine Herbert", "geo": null, "id": 148832053687877630, "id_str": "148832053687877633", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1582295332/4vS07OH8_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1582295332/4vS07OH8_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @blker_the_berri: i cant make anymore C, that ish is for the birds now", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:21 +0000", "from_user": "PlayaaaKP", "from_user_id": 163617693, "from_user_id_str": "163617693", "from_user_name": "PlayaaaKP ", "geo": null, "id": 148832053679493120, "id_str": "148832053679493120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699077167/A4Ld82lR_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699077167/A4Ld82lR_normal", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @Mpala_: Keep a diva never fuck with the birds talking models with coke bottles see I fuck with the curves", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:20 +0000", "from_user": "Sanjuanitaniz", "from_user_id": 415409086, "from_user_id_str": "415409086", "from_user_name": "Sha Kuritz", "geo": null, "id": 148832048784752640, "id_str": "148832048784752640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1692697866/3un3g345zy_129228258-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692697866/3un3g345zy_129228258-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Ospreys (Really Wild Life of Birds of Prey): http://t.co/39czfikt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:19 +0000", "from_user": "Leeo_Says", "from_user_id": 80437546, "from_user_id_str": "80437546", "from_user_name": "Leeo Ricco (:", "geo": null, "id": 148832046939254800, "id_str": "148832046939254784", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1516667917/l_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1516667917/l_o_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "ZEREI O JOGUINHO D ANGRY BIRDS *-* KKKKKKKKKKKKKKK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:16 +0000", "from_user": "ThinkFastToys", "from_user_id": 38702027, "from_user_id_str": "38702027", "from_user_name": "ThinkFastToys.com", "geo": null, "id": 148832031734894600, "id_str": "148832031734894593", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1497690730/IMG_6063_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1497690730/IMG_6063_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "We dunno #WhatHappened2 our turtle doves and pear tree but.. Christmas is Sunday so get 3 Angry Birds and a PearHead! http://t.co/hYxlkbyQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:15 +0000", "from_user": "KRNaturalPhoto", "from_user_id": 29227935, "from_user_id_str": "29227935", "from_user_name": "Kyle Reynolds", "geo": null, "id": 148832026919833600, "id_str": "148832026919833600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/133438085/Chemung_River_Dec272008_0062_Standard_e-mail_view_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/133438085/Chemung_River_Dec272008_0062_Standard_e-mail_view_normal.jpg", "source": "<a href="http://timely.is" rel="nofollow">Timely by Demandforce</a>", "text": "RT @audubonsociety: What happens after #xmasbirdcount counters send their tallies? Audubon's scentists get to work. http://t.co/ptfZ3lbq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:14 +0000", "from_user": "viloja", "from_user_id": 42786926, "from_user_id_str": "42786926", "from_user_name": "v\\u00EDctorl\\u00F3pezjaramillo", "geo": null, "id": 148832023971246080, "id_str": "148832023971246082", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1596959025/724fddac-7342-4f01-8d33-18a67a43a281_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596959025/724fddac-7342-4f01-8d33-18a67a43a281_normal.png", "source": "<a href="http://www.tweekly.fm/" rel="nofollow">Tweekly.fm</a>", "text": "#lastfm Artists: Arctic Monkeys (129), Noel Gallagher's High Flying Birds (98) & Enrique Bunbury (78) http://t.co/xdG17mwT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:13 +0000", "from_user": "Agnusnxw", "from_user_id": 426260297, "from_user_id_str": "426260297", "from_user_name": "Agnus Zumbach", "geo": null, "id": 148832021324636160, "id_str": "148832021324636160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668792048/LLCM-3852_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668792048/LLCM-3852_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Thaina_Motta Ya have to download Pigeon Palooza (the next angry birds)- it's avail in Android Mktplce - should be in App Store next week.", "to_user": "Thaina_Motta", "to_user_id": 131294445, "to_user_id_str": "131294445", "to_user_name": "Nobody's Perfect", "in_reply_to_status_id": 148802291716194300, "in_reply_to_status_id_str": "148802291716194307"}, +{"created_at": "Mon, 19 Dec 2011 18:28:12 +0000", "from_user": "Shizueskep", "from_user_id": 426262224, "from_user_id_str": "426262224", "from_user_name": "Shizue Lautz", "geo": null, "id": 148832017247768580, "id_str": "148832017247768576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668797298/LLCM-4396_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668797298/LLCM-4396_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@datkidkuko Have to check out Pigeon Palooza (the next angry birds)- it is avail in Android Mktplce - should be in App Store soon.", "to_user": "datkidkuko", "to_user_id": 77809392, "to_user_id_str": "77809392", "to_user_name": " Manny Gonzalez", "in_reply_to_status_id": 148792438398525440, "in_reply_to_status_id_str": "148792438398525440"}, +{"created_at": "Mon, 19 Dec 2011 18:28:12 +0000", "from_user": "jdizz_DOMO", "from_user_id": 149101254, "from_user_id_str": "149101254", "from_user_name": "James Domineck", "geo": null, "id": 148832016455057400, "id_str": "148832016455057409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689502111/jwd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689502111/jwd_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "you ever wounder what birds do or say while sitting on top of a tall as building looking at people below #makesyouthink", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:04 +0000", "from_user": "BelleMillaQEOG", "from_user_id": 428355696, "from_user_id_str": "428355696", "from_user_name": "Belle Milla", "geo": null, "id": 148831981466157060, "id_str": "148831981466157056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1674178599/7012289841192040_jo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674178599/7012289841192040_jo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Im_that_DUDEo_O Have to play Pigeon Palooza (the next angry birds)- it is in Android Mktplce - will be in App Store in a few days.", "to_user": "Im_that_DUDEo_O", "to_user_id": 338139360, "to_user_id_str": "338139360", "to_user_name": ":::Raina Baina:::", "in_reply_to_status_id": 148824898855374850, "in_reply_to_status_id_str": "148824898855374849"}, +{"created_at": "Mon, 19 Dec 2011 18:28:03 +0000", "from_user": "Evelyn785469213", "from_user_id": 405400412, "from_user_id_str": "405400412", "from_user_name": "Evelyn", "geo": null, "id": 148831980212064260, "id_str": "148831980212064256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1623359669/p12_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1623359669/p12_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "OCEAN BIRDS.: http://t.co/n4Y5G18i", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:02 +0000", "from_user": "Black_Bear_69", "from_user_id": 269461573, "from_user_id_str": "269461573", "from_user_name": "Mr.Parker", "geo": null, "id": 148831974117752830, "id_str": "148831974117752832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668124598/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668124598/me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@BrothaSam22 lol life is expensive shit for the birds lol", "to_user": "BrothaSam22", "to_user_id": 286409032, "to_user_id_str": "286409032", "to_user_name": "Samuel David", "in_reply_to_status_id": 148831765631479800, "in_reply_to_status_id_str": "148831765631479808"}, +{"created_at": "Mon, 19 Dec 2011 18:27:59 +0000", "from_user": "Neptunestarbaby", "from_user_id": 127257252, "from_user_id_str": "127257252", "from_user_name": "Lil Bobby\\u21223ENT", "geo": null, "id": 148831960339456000, "id_str": "148831960339456000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688288982/IMG_0005_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688288982/IMG_0005_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Studying is for the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:58 +0000", "from_user": "ataaa_", "from_user_id": 84751135, "from_user_id_str": "84751135", "from_user_name": ". . . \\u2665", "geo": null, "id": 148831959005659140, "id_str": "148831959005659137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702565092/faaaaame_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702565092/faaaaame_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "i got so much honey, the bees envy me. :b haha RT @PrinceBreezyy_ I got a sweeter song, then the birds in the trees", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:56 +0000", "from_user": "taidos", "from_user_id": 184360604, "from_user_id_str": "184360604", "from_user_name": "Carlos Faustino", "geo": null, "id": 148831948352126980, "id_str": "148831948352126977", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1306519814/41492_100001408658673_806_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1306519814/41492_100001408658673_806_n_normal.jpg", "source": "<a href="http://www.visibli.com" rel="nofollow">Visibli</a>", "text": "DIY Angry Birds Christmas Display is an Interactive Game [Video] http://t.co/gWW24xx1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:53 +0000", "from_user": "parttimesoldier", "from_user_id": 90375376, "from_user_id_str": "90375376", "from_user_name": "Will", "geo": null, "id": 148831935731474430, "id_str": "148831935731474432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1608107068/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608107068/image_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@EXNavyGirl only so much angry birds i can take, gets difficult and annoying lol", "to_user": "EXNavyGirl", "to_user_id": 134047327, "to_user_id_str": "134047327", "to_user_name": "Sam Mia Fields", "in_reply_to_status_id": 148830591733858300, "in_reply_to_status_id_str": "148830591733858304"}, +{"created_at": "Mon, 19 Dec 2011 18:27:51 +0000", "from_user": "adrianrocaperez", "from_user_id": 404029645, "from_user_id_str": "404029645", "from_user_name": "adrian roca perez", "geo": null, "id": 148831928060100600, "id_str": "148831928060100608", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1677904195/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677904195/images_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @exp_empresas: El creador de Angry Birds considera salir a Bolsa en Hong Kong: La compa\\u00F1\\u00EDa creadora de Angry Birds, el videojue... http://t.co/kGKL4LMR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:50 +0000", "from_user": "vaughnsghaep1", "from_user_id": 376836565, "from_user_id_str": "376836565", "from_user_name": "Vaughns Gotter", "geo": null, "id": 148831924859838460, "id_str": "148831924859838464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1551709048/imagesCAJF7J2Q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1551709048/imagesCAJF7J2Q_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "THOUSANDS of blackbirds landed in our meadow. Looks like the Hitchcock \"Birds\" movie. I'm stay indooj4t", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:41 +0000", "from_user": "qufeqarile", "from_user_id": 296502057, "from_user_id_str": "296502057", "from_user_name": "Kuzma", "geo": null, "id": 148831886796537860, "id_str": "148831886796537856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1356566495/187_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1356566495/187_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/EyF4Ldx2 Birds of ocean and estuary (The Orbis encyclopedia of birds of Britain and Europe) (978085613350", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:38 +0000", "from_user": "Briie_Loves_Yuh", "from_user_id": 97695278, "from_user_id_str": "97695278", "from_user_name": "\\u2122 \\(\\u2022_\\u2022\\) Random", "geo": null, "id": 148831872984682500, "id_str": "148831872984682496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1690201481/jgmWG7GR_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690201481/jgmWG7GR_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@EightPacKiid But ion wanna play wit em.....dey sum big birds.! -__-", "to_user": "EightPacKiid", "to_user_id": 440542518, "to_user_id_str": "440542518", "to_user_name": "Rashad", "in_reply_to_status_id": 148831480121008130, "in_reply_to_status_id_str": "148831480121008128"}, +{"created_at": "Mon, 19 Dec 2011 18:27:37 +0000", "from_user": "Glenn_W_Bush", "from_user_id": 35260133, "from_user_id_str": "35260133", "from_user_name": "Glenn Bush", "geo": null, "id": 148831868450635780, "id_str": "148831868450635776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690129241/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690129241/image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @someecards: Angry Birds now available on iPhone, Droid, and completely insane man's Christmas lights display. http://t.co/mrfMU8Hl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:35 +0000", "from_user": "Rick50cc", "from_user_id": 410161656, "from_user_id_str": "410161656", "from_user_name": "Rick", "geo": null, "id": 148831862410854400, "id_str": "148831862410854402", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1636877029/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1636877029/image_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @RaadDezeTweet: - - - - - ( \\u00F2 )> (^(00)^) ANGRY BIRDS! Retweet als je het ziet! #RDT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:32 +0000", "from_user": "KING_MONTANA_IV", "from_user_id": 50933486, "from_user_id_str": "50933486", "from_user_name": "KING MONTANA IV", "geo": null, "id": 148831850171875330, "id_str": "148831850171875328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698878359/PicsArt1324155702941_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698878359/PicsArt1324155702941_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "That love shit is for the birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:30 +0000", "from_user": "nicoleanna19", "from_user_id": 407257852, "from_user_id_str": "407257852", "from_user_name": "Nicole Van Nuland", "geo": null, "id": 148831838729814000, "id_str": "148831838729814016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688174044/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688174044/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "big birds voice sounds like a pedo. #js", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:27 +0000", "from_user": "liloozie3", "from_user_id": 86208785, "from_user_id_str": "86208785", "from_user_name": "Lil OOzie", "geo": null, "id": 148831829447811070, "id_str": "148831829447811072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691769821/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691769821/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@HeelsOverSneaks: Worrying is for the birds...\\u201D exactly", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:22 +0000", "from_user": "SweetOlMini", "from_user_id": 28270001, "from_user_id_str": "28270001", "from_user_name": "Parental Advisory", "geo": null, "id": 148831808446922750, "id_str": "148831808446922752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695105661/securedownload1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695105661/securedownload1_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "All that bullshit is for the birds & all the money is for the hustler's.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:22 +0000", "from_user": "MorganeGB", "from_user_id": 112840201, "from_user_id_str": "112840201", "from_user_name": "Morgane GB", "geo": null, "id": 148831808199475200, "id_str": "148831808199475200", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1654135869/Phototwitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654135869/Phototwitter_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @manenti_boris: \"Angry Birds, le jeu le plus t\\u00E9l\\u00E9charg\\u00E9 de l'histoire\" http://t.co/nMxxrkYp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:18 +0000", "from_user": "trashBaggGANG", "from_user_id": 195246841, "from_user_id_str": "195246841", "from_user_name": "...LOADING\\uF8FF", "geo": null, "id": 148831790826655740, "id_str": "148831790826655744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695283215/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695283215/image_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @MeeeeeeeeZy: \\u201C@Mr_124 \\u201C@MeeeeeeeeZy: Angry Birds Kids Hoody I de$igned/Painted! http://t.co/LZbs8IEJ\\u201D\\u201D dope shit\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:18 +0000", "from_user": "levien_043", "from_user_id": 223272020, "from_user_id_str": "223272020", "from_user_name": "levien ", "geo": null, "id": 148831790080069630, "id_str": "148831790080069632", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1573954519/327560972_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1573954519/327560972_normal.jpg", "source": "<a href="http://globalgrind.com" rel="nofollow">UncleUber for Blackberry</a>", "text": "Asus tablet gekocht yeahh straks meteen angry birds bouwen", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:18 +0000", "from_user": "eBC_Pets_NE", "from_user_id": 126784945, "from_user_id_str": "126784945", "from_user_name": "eBC Pets Northeast", "geo": null, "id": 148831789983612930, "id_str": "148831789983612929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/786618773/eBayClassifiedsWeb_73x73_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/786618773/eBayClassifiedsWeb_73x73_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "New York: RUSSIAN RUSSIAN CANARIES GET OUT OF HOBBY EVERYTHING FOR SALE - Please Contact (Brooklyn) http://t.co/p3H8GFWF #eBC #Pets", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:18 +0000", "from_user": "eBC_Pets_NE", "from_user_id": 126784945, "from_user_id_str": "126784945", "from_user_name": "eBC Pets Northeast", "geo": null, "id": 148831788423315460, "id_str": "148831788423315457", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/786618773/eBayClassifiedsWeb_73x73_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/786618773/eBayClassifiedsWeb_73x73_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "New York: 2 playful conures parrots w/cage - Please Contact (Brooklyn) http://t.co/3Ydhaag8 #eBC #Pets", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:17 +0000", "from_user": "chiafiesta", "from_user_id": 336732735, "from_user_id_str": "336732735", "from_user_name": "GET IN MA BELLY.", "geo": null, "id": 148831787475419140, "id_str": "148831787475419137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1673209867/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673209867/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Bella: look the birds are dancing... \\nMe: bella they're fighting", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:14 +0000", "from_user": "_iMJustKrystaal", "from_user_id": 367380031, "from_user_id_str": "367380031", "from_user_name": "Krystal Encinas", "geo": null, "id": 148831774250774530, "id_str": "148831774250774528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694900169/Pic-1112201_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694900169/Pic-1112201_1__normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Dad: A bird told me you are doing drugs... Boy: You're talking with birds and I'm the one doing drugs?! o_O", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:14 +0000", "from_user": "DavBaynga", "from_user_id": 143937809, "from_user_id_str": "143937809", "from_user_name": "\\u266C\\u266A Luke Flywalker \\u266A\\u266C", "geo": null, "id": 148831773302857730, "id_str": "148831773302857728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693637803/PicsArt1323886287862_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693637803/PicsArt1323886287862_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "Birds of a feather", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:12 +0000", "from_user": "Swiffy_YurpGang", "from_user_id": 325985157, "from_user_id_str": "325985157", "from_user_name": "Swift Breeze", "geo": null, "id": 148831762661900300, "id_str": "148831762661900288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1667125658/113011212515_wonder_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667125658/113011212515_wonder_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "i think i wanna get one of them angry birds tatted", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:11 +0000", "from_user": "jeanwadier", "from_user_id": 87441261, "from_user_id_str": "87441261", "from_user_name": "jeanwadier", "geo": null, "id": 148831761944678400, "id_str": "148831761944678401", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1647281537/Login_Icon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647281537/Login_Icon_normal.png", "source": "<a href="http://publicize.wp.com/" rel="nofollow">WordPress.com</a>", "text": "Quote of the Day: \" \" Birds in flight ... are not between places, they carry their places with them ...\" quoted by P\\u2026 http://t.co/k7zAv9RQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:08 +0000", "from_user": "JehmarNOtJamar", "from_user_id": 243014265, "from_user_id_str": "243014265", "from_user_name": "Jehmar McCauley", "geo": null, "id": 148831747566600200, "id_str": "148831747566600192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696939524/ColorTouch-1322121288296_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696939524/ColorTouch-1322121288296_normal.jpeg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "this being home shit is #dead and for the birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:02 +0000", "from_user": "Press1forHeze", "from_user_id": 112213379, "from_user_id_str": "112213379", "from_user_name": "HEZE (Heezee)", "geo": null, "id": 148831724695072770, "id_str": "148831724695072769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679746132/ProfilePhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679746132/ProfilePhoto_normal.png", "source": "<a href="http://www.osfoora.com" rel="nofollow">Osfoora for iPhone</a>", "text": "Tell him I need a whole chicken RT @CBake229: My cousin got dem birds out yo way RT @Press1forHeze: Can anybody put me on to a PT gig?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:59 +0000", "from_user": "Earth_NewsRT", "from_user_id": 173469798, "from_user_id_str": "173469798", "from_user_name": "Earth News ReTweeted", "geo": null, "id": 148831710786764800, "id_str": "148831710786764800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1093196933/fg_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1093196933/fg_copy_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @Aisne2011 Slimbridge's Spoonbilled sandpipers on the news. Gorgeous little birds; hope it's not too late for... http://t.co/mmt6L85T", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:58 +0000", "from_user": "_CharlieBrownn", "from_user_id": 228514504, "from_user_id_str": "228514504", "from_user_name": "Martinique ", "geo": null, "id": 148831705766174720, "id_str": "148831705766174720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1665085556/nik_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665085556/nik_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "and wild turkeys lmao RT @KenJ_19 dis shit is for da birds. Lmao feel like deres only deers n raccoons to hang out wit out here. Lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:57 +0000", "from_user": "moosamoose", "from_user_id": 19047560, "from_user_id_str": "19047560", "from_user_name": "Anna Incs Lantsman", "geo": null, "id": 148831700003209200, "id_str": "148831700003209216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/71364157/Mo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/71364157/Mo_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "http://t.co/1RqZBOnz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:56 +0000", "from_user": "Ryan_Horsburgh", "from_user_id": 70944051, "from_user_id_str": "70944051", "from_user_name": "Ryan Horsburgh", "geo": null, "id": 148831698677809150, "id_str": "148831698677809152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691882597/the_just_up_dead_look_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691882597/the_just_up_dead_look_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "birds of prey always look fucking evil ;s", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:52 +0000", "from_user": "HeelsOverSneaks", "from_user_id": 179865691, "from_user_id_str": "179865691", "from_user_name": "Sunshine Shante'", "geo": null, "id": 148831680726171650, "id_str": "148831680726171648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1632808146/sitedit_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632808146/sitedit_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "Worrying is for the birds...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:51 +0000", "from_user": "dessa_zika2", "from_user_id": 402189775, "from_user_id_str": "402189775", "from_user_name": "Dessa", "geo": null, "id": 148831678159274000, "id_str": "148831678159273984", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677724767/Foto3106Tw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677724767/Foto3106Tw_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "P\\u00F4neis Malditos? Por que n\\u00E3o Angry Birds Malditos? #BigFollow:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:51 +0000", "from_user": "HollyCasee", "from_user_id": 264306816, "from_user_id_str": "264306816", "from_user_name": "Holly Case\\u2740\\u273F", "geo": null, "id": 148831677697888260, "id_str": "148831677697888256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1554805899/hollly_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554805899/hollly_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iTweetFunny_: Any time a bird craps on my car, I eat an entire plate of scrambled eggs on my porch, just to show the birds what I'm capable of.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:43 +0000", "from_user": "EmRenan", "from_user_id": 292454172, "from_user_id_str": "292454172", "from_user_name": "Emerson Renan", "geo": null, "id": 148831643900198900, "id_str": "148831643900198912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1678529051/u_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678529051/u_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial</a>", "text": "Whit birds i share this lonely view", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:42 +0000", "from_user": "40thingsby40", "from_user_id": 232711425, "from_user_id_str": "232711425", "from_user_name": "40thingsby40", "geo": null, "id": 148831639823331330, "id_str": "148831639823331328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1225971179/logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225971179/logo_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", "text": "My youngest keeps telling me he wants angry birds for Christmas. Any tips in how I can make birds angry I get from the pet store for him?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:42 +0000", "from_user": "WTFISGOD", "from_user_id": 73286202, "from_user_id_str": "73286202", "from_user_name": "Trish", "geo": null, "id": 148831638128836600, "id_str": "148831638128836608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1242567200/DSC08917_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1242567200/DSC08917_normal.JPG", "source": "<a href="http://yardsellr.com" rel="nofollow">Yardsellr</a>", "text": "1965 Familiar Birds Garden Birds of America By Collins Jr. #YARDSELLR http://t.co/KxuRZZVT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:37 +0000", "from_user": "HazyyDaze", "from_user_id": 441061064, "from_user_id_str": "441061064", "from_user_name": "Mary Jane", "geo": null, "id": 148831619636133900, "id_str": "148831619636133888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702542451/trippy-man-tree_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702542451/trippy-man-tree_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "WTF... TWITTER OVER CAPACITY, so there is a picture of a whale being carried by birds... how the FUCK does that add up #toostoned", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:36 +0000", "from_user": "moosamoose", "from_user_id": 19047560, "from_user_id_str": "19047560", "from_user_name": "Anna Incs Lantsman", "geo": null, "id": 148831615370526720, "id_str": "148831615370526721", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/71364157/Mo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/71364157/Mo_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "http://t.co/m9lASTj9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:35 +0000", "from_user": "Pardo_Lu", "from_user_id": 357534768, "from_user_id_str": "357534768", "from_user_name": "Luc\\u00EDa Pardo", "geo": null, "id": 148831608110198800, "id_str": "148831608110198784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702610634/IMG02151-20111210-1729_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702610634/IMG02151-20111210-1729_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@Ronald_MacKay Todav\\u00EDa tenes Angry Birds??", "to_user": "Ronald_MacKay", "to_user_id": 41252345, "to_user_id_str": "41252345", "to_user_name": "Ronald MacKay", "in_reply_to_status_id": 148814864788357120, "in_reply_to_status_id_str": "148814864788357120"}, +{"created_at": "Mon, 19 Dec 2011 18:26:35 +0000", "from_user": "Manda_Minaj", "from_user_id": 353724994, "from_user_id_str": "353724994", "from_user_name": "Amanda Gecaj", "geo": null, "id": 148831607338434560, "id_str": "148831607338434560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697042134/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697042134/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "These birds all over partridge are giving me anxiety \\uD83D\\uDE32\\uD83D\\uDE37", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:33 +0000", "from_user": "ItsRaniaBieber", "from_user_id": 275638701, "from_user_id_str": "275638701", "from_user_name": "i Adore Jelena....\\u2665\\u2665", "geo": null, "id": 148831601206378500, "id_str": "148831601206378497", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702587709/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702587709/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@SelGomez200 awwwe, my love birds :) hahaha", "to_user": "SelGomez200", "to_user_id": 379735857, "to_user_id_str": "379735857", "to_user_name": "$ELEN@ G0M3Z", "in_reply_to_status_id": 148830213567033340, "in_reply_to_status_id_str": "148830213567033344"}, +{"created_at": "Mon, 19 Dec 2011 18:26:32 +0000", "from_user": "Richdatdude", "from_user_id": 19374100, "from_user_id_str": "19374100", "from_user_name": "Cat Daddy!", "geo": null, "id": 148831596043186180, "id_str": "148831596043186176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699289065/2011-12-17_14.37.09_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699289065/2011-12-17_14.37.09_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "I have my cookie to the birds and they swarmed me!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:30 +0000", "from_user": "EatMyFireBox", "from_user_id": 312180919, "from_user_id_str": "312180919", "from_user_name": "\\u6C49\\u5B57/\\u6F22\\u5B57", "geo": null, "id": 148831588220801020, "id_str": "148831588220801025", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1659132001/Snapshot_20111017_9_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659132001/Snapshot_20111017_9_normal.JPG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "lmao . I will be saying the same thing when the birds trash you @Steve_Stagner", "to_user": "Steve_Stagner", "to_user_id": 275266932, "to_user_id_str": "275266932", "to_user_name": "Steve Stagner", "in_reply_to_status_id": 148829449834598400, "in_reply_to_status_id_str": "148829449834598400"}, +{"created_at": "Mon, 19 Dec 2011 18:26:28 +0000", "from_user": "exp_empresas", "from_user_id": 14942767, "from_user_id_str": "14942767", "from_user_name": "exp_empresas", "geo": null, "id": 148831580893360130, "id_str": "148831580893360129", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/54807729/E_empresas_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/54807729/E_empresas_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "El creador de Angry Birds considera salir a Bolsa en Hong Kong: La compa\\u00F1\\u00EDa creadora de Angry Birds, el videojue... http://t.co/kGKL4LMR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:24 +0000", "from_user": "d307lastfm", "from_user_id": 273914115, "from_user_id_str": "273914115", "from_user_name": "d307lastfm", "geo": null, "id": 148831564028051460, "id_str": "148831564028051456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1291334234/last-fm_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1291334234/last-fm_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "2 Chainz Ft. Young Jeezy, Yo Gotti, & Birdman \\u2013 Slangin Birds (Prod. By Drumma Boy): http://t.co/O7Jfh7uD%... http://t.co/E8FCsbXn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:23 +0000", "from_user": "Murielnpa", "from_user_id": 431714874, "from_user_id_str": "431714874", "from_user_name": "Muriel Kazan", "geo": null, "id": 148831560228024320, "id_str": "148831560228024320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681060915/large_205442_10150163633982290_663277289_6677396_52_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681060915/large_205442_10150163633982290_663277289_6677396_52_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Field Guide to the Birds of Western Africa (Helm Field Guides): This new field guide uses all of the plates from... http://t.co/Q3EawKOd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:15 +0000", "from_user": "Jannausld", "from_user_id": 426261581, "from_user_id_str": "426261581", "from_user_name": "Janna Cadorette", "geo": null, "id": 148831524744200200, "id_str": "148831524744200193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668795630/LLCM-2162_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668795630/LLCM-2162_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@signedvc Go go get Pigeon Palooza (the next angry birds)- it's launched in Android Mktplce - will be in ITunes in a few days.", "to_user": "signedvc", "to_user_id": 237419114, "to_user_id_str": "237419114", "to_user_name": "Marissa Peterson", "in_reply_to_status_id": 148826056864968700, "in_reply_to_status_id_str": "148826056864968705"}, +{"created_at": "Mon, 19 Dec 2011 18:26:14 +0000", "from_user": "Cesmi_Nergis", "from_user_id": 251631550, "from_user_id_str": "251631550", "from_user_name": "Cesmi_Nergis", "geo": null, "id": 148831519522291700, "id_str": "148831519522291713", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1679474907/DSC01397_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679474907/DSC01397_normal.JPG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "ahahahayy cok guldummm Angara birds :))))))) http://t.co/8442uTep", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:11 +0000", "from_user": "jamrfirdaus", "from_user_id": 153702207, "from_user_id_str": "153702207", "from_user_name": "Jamar Firdaus", "geo": null, "id": 148831506939396100, "id_str": "148831506939396096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/973485883/jamr2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/973485883/jamr2_normal.jpg", "source": "<a href="http://publicize.wp.com/" rel="nofollow">WordPress.com</a>", "text": "[Share] Angry Birds Portable http://t.co/svATe4e8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:07 +0000", "from_user": "fernandes_leo", "from_user_id": 59210709, "from_user_id_str": "59210709", "from_user_name": "leonardo fernandes", "geo": null, "id": 148831493261766660, "id_str": "148831493261766656", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/326813790/leo1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/326813790/leo1_normal.jpg", "source": "<a href="http://www.tweekly.fm/" rel="nofollow">Tweekly.fm</a>", "text": "My Top 3 #lastfm Artists: MGMT (10), Noel Gallagher's High Flying Birds (4) & Blondie (2) #mm http://t.co/1OOv1AYo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:07 +0000", "from_user": "scarahhhh", "from_user_id": 91899926, "from_user_id_str": "91899926", "from_user_name": "Scarahhhh", "geo": null, "id": 148831491529510900, "id_str": "148831491529510912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1665582789/laughing_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665582789/laughing_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\"Why would you ask me that question? Me? The falcon. Because everyone knows that falcons are notoriously monogamous birds!\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:02 +0000", "from_user": "ItsLilBeezy", "from_user_id": 51661207, "from_user_id_str": "51661207", "from_user_name": "B(ilal)", "geo": null, "id": 148831472130854900, "id_str": "148831472130854913", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/311681541/2642_511874776967_28601029_30767263_1586486_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/311681541/2642_511874776967_28601029_30767263_1586486_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "If you feed the birds in any of the boroughs, you can go to hell. #Shitshow", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:02 +0000", "from_user": "coe_lette", "from_user_id": 331670920, "from_user_id_str": "331670920", "from_user_name": "Collette Angelle", "geo": null, "id": 148831470918701060, "id_str": "148831470918701057", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701538229/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701538229/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@Drayy7: bouta check out\\u201D check out and come to the levee with a shotgun me and Sarah wanna shoot birds lmao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:01 +0000", "from_user": "DaveyWonder23", "from_user_id": 86140316, "from_user_id_str": "86140316", "from_user_name": "Dave Presocki", "geo": null, "id": 148831466674065400, "id_str": "148831466674065408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1283435689/38818_10150238695160574_898015573_14129599_7573014_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1283435689/38818_10150238695160574_898015573_14129599_7573014_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@reyman1218 @ElizabethMay926 @raekayleigh The birds are back", "to_user": "reyman1218", "to_user_id": 88234155, "to_user_id_str": "88234155", "to_user_name": "Stephen Rey"}, +{"created_at": "Mon, 19 Dec 2011 18:26:01 +0000", "from_user": "LRob83", "from_user_id": 282209277, "from_user_id_str": "282209277", "from_user_name": "LynseyR83", "geo": null, "id": 148831465721966600, "id_str": "148831465721966592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675899378/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675899378/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @B6_illest: Gotta love a bit of angry birds on the bog at work!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:58 +0000", "from_user": "HubofJD", "from_user_id": 258466559, "from_user_id_str": "258466559", "from_user_name": "JDHub", "geo": null, "id": 148831455122960400, "id_str": "148831455122960384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1258035344/My_two_cents_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1258035344/My_two_cents_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "A #Photo of a #Spoonbill #Bird and #Two other Birds\\thttp://t.co/XNyovDsd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:59 +0000", "from_user": "Dumbinican", "from_user_id": 188607015, "from_user_id_str": "188607015", "from_user_name": "Esteban Perez", "geo": null, "id": 148831454485413900, "id_str": "148831454485413889", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701965600/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701965600/image_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Photos on iOS</a>", "text": "Isle 13 cake mix, flour, and birds http://t.co/F8GF9qKa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:57 +0000", "from_user": "RedCapeGhost", "from_user_id": 346151470, "from_user_id_str": "346151470", "from_user_name": "Fantasma Capa Roja", "geo": null, "id": 148831450999963650, "id_str": "148831450999963648", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1471410036/manta_polarvide_ikea_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1471410036/manta_polarvide_ikea_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @AntonioRull: Molar\\u00EDa ver, en tiempo real, la fase a la que van llegando los diputados en el Angry Birds del iPad mientras Rajoy habla", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:57 +0000", "from_user": "Ellyikg", "from_user_id": 430047525, "from_user_id_str": "430047525", "from_user_name": "Elly Wakley", "geo": null, "id": 148831448097501200, "id_str": "148831448097501184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1677521726/dm1ism45my_123530396-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677521726/dm1ism45my_123530396-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Life Cycle of Birds: From Egg to Adult: Discusses how birds differ from other animals, their habitat, what t... http://t.co/a3yaQgsM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:55 +0000", "from_user": "CBake229", "from_user_id": 137185411, "from_user_id_str": "137185411", "from_user_name": "Wally West ", "geo": null, "id": 148831440388362240, "id_str": "148831440388362240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1667832290/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667832290/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "My cousin got dem birds out yo way RT @Press1forHeze: Can anybody put me on to a PT gig?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:52 +0000", "from_user": "myzerowaste", "from_user_id": 15842266, "from_user_id_str": "15842266", "from_user_name": "myzerowaste", "geo": null, "id": 148831430720503800, "id_str": "148831430720503810", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1259444442/twit2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1259444442/twit2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @greenroofsuk: World's most threatened birds set up new nest in Gloucestershire -#Nature #biodiversity #Environment http://t.co/eOwO5xf5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:50 +0000", "from_user": "RFMobilePages", "from_user_id": 24207452, "from_user_id_str": "24207452", "from_user_name": "RockFishMobilePages", "geo": null, "id": 148831419005808640, "id_str": "148831419005808640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1476838356/All_In__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1476838356/All_In__normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Video: The Interactive Angry Birds Christmas Lights\\u00A0Display http://t.co/v005txa0 via @techcrunch", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:50 +0000", "from_user": "Allgamers_fr", "from_user_id": 131220234, "from_user_id_str": "131220234", "from_user_name": "Allgamers.fr", "geo": null, "id": 148831418947080200, "id_str": "148831418947080192", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1256452526/space_invaders_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1256452526/space_invaders_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Angry Birds Christmas Light Game http://t.co/dYhtKs7q #Noel #AngryBirds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:45 +0000", "from_user": "MeGTheRebellion", "from_user_id": 125476086, "from_user_id_str": "125476086", "from_user_name": "Magda Bologna", "geo": null, "id": 148831398441123840, "id_str": "148831398441123840", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1180220778/likeFirenze_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1180220778/likeFirenze_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "vorrei affacciarmi e vedere \"blue birds\" in the skie", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:44 +0000", "from_user": "joseesol", "from_user_id": 64085790, "from_user_id_str": "64085790", "from_user_name": "jose solares ", "geo": null, "id": 148831396453040130, "id_str": "148831396453040129", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699615438/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699615438/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Angry birds jaja http://t.co/MTsWJCTc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:44 +0000", "from_user": "PrinceBreezyy_", "from_user_id": 249998887, "from_user_id_str": "249998887", "from_user_name": "TaylorGang..", "geo": null, "id": 148831394913722370, "id_str": "148831394913722368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701717515/90zt4eoN_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701717515/90zt4eoN_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I got a sweeter song, then the birds in the trees", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:25:43 +0000", "from_user": "Katves", "from_user_id": 54902917, "from_user_id_str": "54902917", "from_user_name": "Kat Ves", "geo": null, "id": 148831390560034800, "id_str": "148831390560034816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1676578904/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676578904/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "My phone was just hijacked by a three year old; he completed four levels of angry birds before I got it back.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:41 +0000", "from_user": "TuNegroFavorito", "from_user_id": 196062270, "from_user_id_str": "196062270", "from_user_name": "Carlos Barrios.", "geo": null, "id": 148831382230151170, "id_str": "148831382230151168", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695159642/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695159642/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "JAJAJAJAJAJAJAJJAJAA MALDITA SEAAAAA! JAJAKSJLDHQWOUFGQWVCSWUH0QWODH http://t.co/dRVFcyob", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:40 +0000", "from_user": "KandiceXChanel", "from_user_id": 40364837, "from_user_id_str": "40364837", "from_user_name": "Kandice McMillian", "geo": null, "id": 148831377402494980, "id_str": "148831377402494976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701166228/FOadwHKR_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701166228/FOadwHKR_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "Yo, my horoscope aint never right, Shits for the birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:39 +0000", "from_user": "AIRWICK_FRESH", "from_user_id": 25608405, "from_user_id_str": "25608405", "from_user_name": "Ai-Rick Coleman", "geo": null, "id": 148831373233373200, "id_str": "148831373233373184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1227765325/11060_105621589453193_100000160578066_153284_3210405_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1227765325/11060_105621589453193_100000160578066_153284_3210405_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "angry birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:35 +0000", "from_user": "porracohen", "from_user_id": 87725238, "from_user_id_str": "87725238", "from_user_name": "COHEN C-O-H-E-N", "geo": null, "id": 148831359069196300, "id_str": "148831359069196288", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1430942899/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1430942899/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "ok @esteves_ana tu me deixou viciado em agry birds, obg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:32 +0000", "from_user": "BelleMillaQEOG", "from_user_id": 428355696, "from_user_id_str": "428355696", "from_user_name": "Belle Milla", "geo": null, "id": 148831344531742720, "id_str": "148831344531742720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1674178599/7012289841192040_jo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674178599/7012289841192040_jo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@KilUWitKindness Ya gotta check out Pigeon Palooza (the next angry birds)- it's avail in Android Mktplce - will be in App Store soon.", "to_user": "KilUWitKindness", "to_user_id": 195082103, "to_user_id_str": "195082103", "to_user_name": "Maudie Amos", "in_reply_to_status_id": 148825163264311300, "in_reply_to_status_id_str": "148825163264311296"}, +{"created_at": "Mon, 19 Dec 2011 18:25:29 +0000", "from_user": "andrew_haws", "from_user_id": 387493283, "from_user_id_str": "387493283", "from_user_name": "andrew", "geo": null, "id": 148831334582845440, "id_str": "148831334582845440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1587053525/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587053525/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "The whole angry birds craze needed to stop a year or two ago!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:29 +0000", "from_user": "tremoloid", "from_user_id": 91665729, "from_user_id_str": "91665729", "from_user_name": "\\u30C8\\u30EC\\u30E2\\u30ED\\u30A4\\u30C9\\uFF5CTREMOLOID", "geo": null, "id": 148831331659415550, "id_str": "148831331659415552", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1249777608/MTCA_5025_Tremololoop_JP_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1249777608/MTCA_5025_Tremololoop_JP_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "12/19\\u306E\\u30C8\\u30EC\\u30E2\\u30ED\\u30A4\\u30C9\\u4F01\\u753B\\u300C\\u591C\\u660E\\u3051\\u524D\\u300D\\u306B\\u6765\\u3066\\u304F\\u308C\\u305F\\u7686\\u69D8\\u3042\\u308A\\u304C\\u3068\\u3046\\uFF01\\u50D5\\u3089\\u3060\\u3051\\u3067\\u306F\\u306A\\u304F\\u3001\\u30CB\\u30E5\\u30FC\\u30E8\\u30FC\\u30AF\\u3068\\u81EA\\u8EE2\\u8ECA\\u3001birds melt sky,\\u5C0F\\u5CF6\\u30B1\\u30A4\\u30BF\\u30CB\\u30FC\\u30E9\\u30D6\\u3002\\u30CD\\u30B4\\u30F3\\u30DC\\u306E\\u30AB\\u30EC\\u30FC\\u306E\\u611F\\u60F3\\u306A\\u3069\\u3092\\u3000#yoakemae\\u3000\\u306E\\u30CF\\u30C3\\u30B7\\u30E5\\u30BF\\u30B0\\u3092\\u4ED8\\u3051\\u3066\\u3064\\u3076\\u3084\\u3044\\u3066\\u3082\\u3089\\u3048\\u308B\\u3068\\u5B09\\u3057\\u3044\\u3067\\u3059\\uFF01\\u307E\\u305F\\u660E\\u65E5\\uFF01\\uFF01\\u30BD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:29 +0000", "from_user": "i_make_em_say", "from_user_id": 188632010, "from_user_id_str": "188632010", "from_user_name": "Dee H.", "geo": null, "id": 148831330938011650, "id_str": "148831330938011648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669962824/profile_image_1322848519183_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669962824/profile_image_1322848519183_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "I really really really hate when birds fly over my head!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:28 +0000", "from_user": "vanessanoguti", "from_user_id": 128921942, "from_user_id_str": "128921942", "from_user_name": "vanessa noguti", "geo": null, "id": 148831327553208320, "id_str": "148831327553208322", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696325686/DSC00016_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696325686/DSC00016_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "P\\u00F4neis Malditos? Por que n\\u00E3o Angry Birds Malditos? #BigFollow:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:23 +0000", "from_user": "V4DIO", "from_user_id": 170887014, "from_user_id_str": "170887014", "from_user_name": "otac\\u00EDlio", "geo": null, "id": 148831308364267520, "id_str": "148831308364267521", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694220204/111214-002435_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694220204/111214-002435_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @whysouseless: daora n\\u00E3o ter angry birds no itunes brasil", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:23 +0000", "from_user": "jean_suzuki", "from_user_id": 21148770, "from_user_id_str": "21148770", "from_user_name": "Jean Suzuki", "geo": null, "id": 148831305415667700, "id_str": "148831305415667712", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685478672/DSC_7546__2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685478672/DSC_7546__2__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Uma lista com os 50 melhores \\u00E1lbuns de 2011, ouvi incr\\u00EDveis 1. High Flying Birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:22 +0000", "from_user": "t_garner", "from_user_id": 45786839, "from_user_id_str": "45786839", "from_user_name": "Tommy Garner", "geo": null, "id": 148831304807497730, "id_str": "148831304807497729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1516326542/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1516326542/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@CarmelaCubbie2 not a fan of the Birds? Whys that? And I wouldn't want you to fight anyone! #badfirstdate", "to_user": "CarmelaCubbie2", "to_user_id": 49621178, "to_user_id_str": "49621178", "to_user_name": "Carmela Wassmer", "in_reply_to_status_id": 148830091466637300, "in_reply_to_status_id_str": "148830091466637313"}, +{"created_at": "Mon, 19 Dec 2011 18:25:22 +0000", "from_user": "AkiraHitsugaya", "from_user_id": 259640720, "from_user_id_str": "259640720", "from_user_name": "ibrahim edward \\u2611", "geo": null, "id": 148831303251394560, "id_str": "148831303251394561", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690919438/314905_10150386055627241_548512240_8169653_1215959487_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690919438/314905_10150386055627241_548512240_8169653_1215959487_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Good night tweeter birds and sweet dream pls wish me luck for final paper 2moro ... I'm bluff wey haha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:22 +0000", "from_user": "Angelyncie", "from_user_id": 440169631, "from_user_id_str": "440169631", "from_user_name": "Angelyn Cobell", "geo": null, "id": 148831302261555200, "id_str": "148831302261555201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700472808/large_8129_1197522349032_1557705399_30536231_820065_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700472808/large_8129_1197522349032_1557705399_30536231_820065_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "SET OF 3 REPLACEMENT BIRDS - for Kyjen Hide-a-Bird: Set of Three replacement squeaky squirrels for the Kyjen Hid... http://t.co/3z5HoF6X", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:21 +0000", "from_user": "Rowenah661", "from_user_id": 400986038, "from_user_id_str": "400986038", "from_user_name": "Noreen Bryan", "geo": null, "id": 148831300034379780, "id_str": "148831300034379776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1663267759/163266488Steffanie_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663267759/163266488Steffanie_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I bet the guy who programs Angry Birds can't walk into a building without thinking about exactly where he'd hit it to make it fall down", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:19 +0000", "from_user": "DipsyFTM", "from_user_id": 439615252, "from_user_id_str": "439615252", "from_user_name": "Dipsy", "geo": null, "id": 148831289406009340, "id_str": "148831289406009346", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699172956/image_normal.jpg", "profile_image_url_https": null, "source": "<a href="http://twitter.com/">web</a>", "text": "havin a house party tomorra any1 comin? get smashed on j2os an we can have wankin sessions over da birds till our knobs hurt, GONNA BE MESSY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:18 +0000", "from_user": "sant_gr", "from_user_id": 58646480, "from_user_id_str": "58646480", "from_user_name": "sant g.r.", "geo": null, "id": 148831281302601730, "id_str": "148831281302601729", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1552980923/IaTrDXuC_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552980923/IaTrDXuC_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@SarahLoSh mis esferas de angry birds terminadas!:D http://t.co/CroKjw2V", "to_user": "SarahLoSh", "to_user_id": 253780167, "to_user_id_str": "253780167", "to_user_name": "Sarah*"}, +{"created_at": "Mon, 19 Dec 2011 18:25:14 +0000", "from_user": "Wouterzoet", "from_user_id": 257496574, "from_user_id_str": "257496574", "from_user_name": "Wouter Zoet", "geo": null, "id": 148831270980435970, "id_str": "148831270980435969", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1583213338/cDcxR0Pv_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583213338/cDcxR0Pv_normal", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @RaadDezeTweet: - - - - - ( \\u00F2 )> (^(00)^) ANGRY BIRDS! Retweet als je het ziet! #RDT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:14 +0000", "from_user": "Sonny_Caruso", "from_user_id": 52947280, "from_user_id_str": "52947280", "from_user_name": "Sonny Caruso", "geo": null, "id": 148831270795882500, "id_str": "148831270795882496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1641463219/twitfb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641463219/twitfb_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Best thing since angry birds http://t.co/QDBqsJz5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:14 +0000", "from_user": "seedpodpub", "from_user_id": 27533289, "from_user_id_str": "27533289", "from_user_name": "Seedpod Publishing", "geo": null, "id": 148831269940240400, "id_str": "148831269940240384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1113438101/seedpodtwitter_200x200_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1113438101/seedpodtwitter_200x200_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @motkedapp: The birds flitted & nibbled on seeds until A WEREWOLF ATE THEM. Afterwards, the werewolf watched a film about a ghost...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:11 +0000", "from_user": "garden_alley", "from_user_id": 233824600, "from_user_id_str": "233824600", "from_user_name": "Garden Alley", "geo": null, "id": 148831258921811970, "id_str": "148831258921811968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1206338810/garden_twitter_sml_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1206338810/garden_twitter_sml_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#uk-garden You could always move to the Mumbles :-)) BTW there's a shortage of birds here too. My Niger see http://t.co/IqCr4VkB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:09 +0000", "from_user": "AngieGeli22", "from_user_id": 175659821, "from_user_id_str": "175659821", "from_user_name": "AngelineyJellyBeanie", "geo": null, "id": 148831249019043840, "id_str": "148831249019043841", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687686404/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687686404/profile_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "It's cold and raining... Is it ominous that the only birds flying near my neighborhood are crows? ._.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:08 +0000", "from_user": "johntwitchen", "from_user_id": 82178376, "from_user_id_str": "82178376", "from_user_name": "John Twitchen", "geo": null, "id": 148831243771981820, "id_str": "148831243771981824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1427998439/042_one-handed_wheelie_after_70_miles_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1427998439/042_one-handed_wheelie_after_70_miles_normal.jpg", "source": "<a href="http://www.independent.co.uk/" rel="nofollow">The Independent</a>", "text": "The world's most threatened birds set up new nest in #Gloucestershire http://t.co/xOj6KkeO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:06 +0000", "from_user": "MudRat53", "from_user_id": 397967657, "from_user_id_str": "397967657", "from_user_name": "Mud Rat", "geo": null, "id": 148831237027532800, "id_str": "148831237027532801", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1605903530/P1080026_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1605903530/P1080026_normal.JPG", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "This is a #Photo of some #Birds searching the #Grass for #Food\\thttp://t.co/Bq1UoD8m", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:06 +0000", "from_user": "BenMurf901", "from_user_id": 205141492, "from_user_id_str": "205141492", "from_user_name": "Ben Murphy", "geo": null, "id": 148831236650057730, "id_str": "148831236650057728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1364976736/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1364976736/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Three birds just hit my car while I was....parked #dumbbirds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:04 +0000", "from_user": "MidnightDBA", "from_user_id": 55133764, "from_user_id_str": "55133764", "from_user_name": "Jen & Sean McCown", "geo": null, "id": 148831228391464960, "id_str": "148831228391464960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1105715146/SeanJen_crop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1105715146/SeanJen_crop_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @sqlpass: Early birds get the great rate at #SQLRally Dallas - register by Jan. 14 & submit sessions by Jan. 22 http://t.co/U11nqCLx #sqlpass", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:04 +0000", "from_user": "Justbirds1", "from_user_id": 291680688, "from_user_id_str": "291680688", "from_user_name": "Bev", "geo": null, "id": 148831227686821900, "id_str": "148831227686821888", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1335631073/5261855304_0f68f9ba91_m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335631073/5261855304_0f68f9ba91_m_normal.jpg", "source": "<a href="http://www.twaitter.com" rel="nofollow">Twaitter</a>", "text": "Baby Burrowing Owl http://t.co/rXROHY74 #birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:03 +0000", "from_user": "fahy99", "from_user_id": 351003929, "from_user_id_str": "351003929", "from_user_name": "Fahad Alobaid", "geo": null, "id": 148831223333138430, "id_str": "148831223333138432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1545463903/308643_2438489805093_1337212045_2892023_2133195404_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545463903/308643_2438489805093_1337212045_2892023_2133195404_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "today I've heard the best conversation between 2 nurses: blo bla ble blo (iphone) ble bla cla cle (angry birds) blo ble bla blo (touch).. :P", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:03 +0000", "from_user": "Bellafcq", "from_user_id": 431694875, "from_user_id_str": "431694875", "from_user_name": "Bella Wohlfahrt", "geo": null, "id": 148831222653665280, "id_str": "148831222653665280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681019441/ddkevw55uz_112990808-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681019441/ddkevw55uz_112990808-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Birds of East Asia: This is the first single volume guide ever devoted to the eastern Asianavifauna. The eastern... http://t.co/i5VWgo8A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:00 +0000", "from_user": "naty_csii", "from_user_id": 334144840, "from_user_id_str": "334144840", "from_user_name": "Nathalia Cristina ''", "geo": null, "id": 148831210678927360, "id_str": "148831210678927360", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702403087/Foto2771_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702403087/Foto2771_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "P\\u00F4neis Malditos? Por que n\\u00E3o Angry Birds Malditos? #MaisFollowers: http://t.co/WMs26fAe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:56 +0000", "from_user": "Chungodp", "from_user_id": 426261931, "from_user_id_str": "426261931", "from_user_name": "Chung Knee", "geo": null, "id": 148831195558461440, "id_str": "148831195558461441", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668796811/LLCM-5119_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668796811/LLCM-5119_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MYRONINGURL Hey, go get Pigeon Palooza (the next angry birds)- it is in Android Mktplce - will be in App Store next week.", "to_user": "MYRONINGURL", "to_user_id": 176901410, "to_user_id_str": "176901410", "to_user_name": "myra miera", "in_reply_to_status_id": 148821472113213440, "in_reply_to_status_id_str": "148821472113213442"}, +{"created_at": "Mon, 19 Dec 2011 18:24:56 +0000", "from_user": "Fidel7_", "from_user_id": 150363007, "from_user_id_str": "150363007", "from_user_name": "Koni $L400$", "geo": null, "id": 148831193620680700, "id_str": "148831193620680704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700405158/photo-4_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700405158/photo-4_normal.jpeg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "He wasn't talking bout coke and birds more like spoken words", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:56 +0000", "from_user": "iAMPoppaSmurf", "from_user_id": 20319049, "from_user_id_str": "20319049", "from_user_name": "Reese NO Chocolate", "geo": null, "id": 148831192374968320, "id_str": "148831192374968320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1595090599/73004_450576824927_507389927_5175245_4622794_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1595090599/73004_450576824927_507389927_5175245_4622794_n_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Angry birds is such a stress reliever lol feeling better already", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:55 +0000", "from_user": "steven_britt", "from_user_id": 103634774, "from_user_id_str": "103634774", "from_user_name": "Steven Britt", "geo": null, "id": 148831189791289340, "id_str": "148831189791289344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/826329805/Photo_on_2010-04-15_at_19.39_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/826329805/Photo_on_2010-04-15_at_19.39_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @BibleStudyGuide: God reveals which animals\\u2014including fish and birds\\u2014are suitable and unsuitable for human consumption in Leviticus 11 & Deuteronomy 14....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:54 +0000", "from_user": "TECNOCO", "from_user_id": 54761166, "from_user_id_str": "54761166", "from_user_name": "GrupoTECNOCO", "geo": null, "id": 148831187228569600, "id_str": "148831187228569600", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1455809214/profileimage_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1455809214/profileimage_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Los \"angry birds\" podr\\u00EDan sobrevolar el parqu\\u00E9 asi\\u00E1tico: Una tecnolandoacute;gica mandaacute;s que estandaacute;... http://t.co/xhhsgMza", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:53 +0000", "from_user": "NESSAP00H88", "from_user_id": 44658922, "from_user_id_str": "44658922", "from_user_name": "AntwansLOver ", "geo": null, "id": 148831183260749820, "id_str": "148831183260749825", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1649153360/7gzFDPxv_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649153360/7gzFDPxv_normal", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @Betty21Trim: Hey Ladies.. Put some Toothpaste on his Penis.. Kill 2 Birds with 1 Stone this morning!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:49 +0000", "from_user": "BananaSplit_08", "from_user_id": 224349955, "from_user_id_str": "224349955", "from_user_name": "Brianna E. Sanchez", "geo": null, "id": 148831163002265600, "id_str": "148831163002265601", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699076583/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699076583/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "If I'm addicting to loving you, and your addicted to my love to, we can be two birds of a feather, and just fly together :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:46 +0000", "from_user": "birdsunlimited", "from_user_id": 45355307, "from_user_id_str": "45355307", "from_user_name": "Wild Birds Unlimited", "geo": null, "id": 148831152797523970, "id_str": "148831152797523969", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1113305824/WildBirdsUnlimited_logo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1113305824/WildBirdsUnlimited_logo_normal.gif", "source": "<a href="http://www.ning.com" rel="nofollow">a Ning Network</a>", "text": "Fun Facts About Juncos http://t.co/rIGlg4TS \\u2744 Wild Birds Unlimited #Lansing #Michigan #birds #nature #loveLansing #pureMichigan", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:45 +0000", "from_user": "laurikiviniemi", "from_user_id": 12262492, "from_user_id_str": "12262492", "from_user_name": "Lauri Kiviniemi", "geo": null, "id": 148831149077176320, "id_str": "148831149077176320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1503788939/19082011122_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1503788939/19082011122_normal.jpg", "source": "<a href="http://paper.li" rel="nofollow">Paper.li</a>", "text": "Angry birds is out! http://t.co/gOk4UoRH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:45 +0000", "from_user": "julionettuno", "from_user_id": 46115803, "from_user_id_str": "46115803", "from_user_name": "julio nettuno", "geo": null, "id": 148831148754223100, "id_str": "148831148754223105", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/980469540/images_37__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/980469540/images_37__normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Que ortivas los del banco Itau,no me dejaron jugar al Angry Birds!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:44 +0000", "from_user": "jbrinkley32", "from_user_id": 403719622, "from_user_id_str": "403719622", "from_user_name": "Jantsen Brinkley", "geo": null, "id": 148831144425689100, "id_str": "148831144425689088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691694314/Aggxy2GCAAASNqs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691694314/Aggxy2GCAAASNqs_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "When I drive- if you beep your horn 1 second after the light changes green I will shut off my car, lay on the hood & feed birds for an hour.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:41 +0000", "from_user": "Kareendmmg", "from_user_id": 426262455, "from_user_id_str": "426262455", "from_user_name": "Kareen Sicari", "geo": null, "id": 148831132811657200, "id_str": "148831132811657216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668798646/LLCM-2128_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668798646/LLCM-2128_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MafiaWarsStrtgy Go try out Pigeon Palooza (the next angry birds)- it's live in Android Mktplce - will be in ITunes soon.", "to_user": "MafiaWarsStrtgy", "to_user_id": 78134924, "to_user_id_str": "78134924", "to_user_name": "Mafia Wars Strategy", "in_reply_to_status_id": 148830133569073150, "in_reply_to_status_id_str": "148830133569073153"}, +{"created_at": "Mon, 19 Dec 2011 18:24:41 +0000", "from_user": "DjMrIncredible", "from_user_id": 32066630, "from_user_id_str": "32066630", "from_user_name": "Samibaby Chomba", "geo": null, "id": 148831132413214720, "id_str": "148831132413214720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680726726/samie_smoke_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680726726/samie_smoke_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @CamillaMillz: Eh love birds!!! RT @MrsChomba: @DjMrIncredible i miss u more my king...so much! #addicted", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:40 +0000", "from_user": "whysouseless", "from_user_id": 65762345, "from_user_id_str": "65762345", "from_user_name": "brullshit", "geo": null, "id": 148831126507622400, "id_str": "148831126507622400", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691144045/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691144045/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "daora n\\u00E3o ter angry birds no itunes brasil", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:37 +0000", "from_user": "DigitalMktgGirl", "from_user_id": 207849105, "from_user_id_str": "207849105", "from_user_name": "Ashley Deas", "geo": null, "id": 148831116562939900, "id_str": "148831116562939904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1664603772/ash_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664603772/ash_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @SonyElectronics: #AngryBirds in holiday lights? See for yourself http://t.co/eqd6oXXf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:37 +0000", "from_user": "MJLaFlare_", "from_user_id": 239464323, "from_user_id_str": "239464323", "from_user_name": "Anayancy B. \\u2665 ", "geo": null, "id": 148831112918073340, "id_str": "148831112918073344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700953258/L5M4IFY4_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700953258/L5M4IFY4_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT\"@SOBER_FREE: No one understands how terrified I am of birds!!!\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:28 +0000", "from_user": "BigdaddyHoke", "from_user_id": 211267472, "from_user_id_str": "211267472", "from_user_name": "Dillion Hoke", "geo": null, "id": 148831077404901380, "id_str": "148831077404901378", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1613128774/33541_1401728083318_1235790265_30896312_4073764_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1613128774/33541_1401728083318_1235790265_30896312_4073764_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "buggin at all the kids wearing those angry birds hats. you all look stupid as fuck haha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:28 +0000", "from_user": "K_Cookie0611", "from_user_id": 358847484, "from_user_id_str": "358847484", "from_user_name": "Kyra Cook", "geo": null, "id": 148831076591222800, "id_str": "148831076591222784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1555519044/t8F1Ai8H_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555519044/t8F1Ai8H_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "How about them birds!? :D Im sorry I had to! @LoveU4Life", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:26 +0000", "from_user": "flyygirrl12", "from_user_id": 345677519, "from_user_id_str": "345677519", "from_user_name": "Put Your Name Here", "geo": null, "id": 148831067929985020, "id_str": "148831067929985024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696835205/kitty_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696835205/kitty_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Angry Birds for Xbox and Angry Birds for the Wii. I would get that", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:26 +0000", "from_user": "applecreate", "from_user_id": 414395329, "from_user_id_str": "414395329", "from_user_name": "applecreate", "geo": null, "id": 148831066562629630, "id_str": "148831066562629632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1642835223/applecreate_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642835223/applecreate_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Angry Birds Seasons Wreck the Halls 1 - 19 (3 Sterne): http://t.co/5wZxfiEs #apple #sougofollow", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:24 +0000", "from_user": "oasisillusion", "from_user_id": 28373240, "from_user_id_str": "28373240", "from_user_name": "Benny The Jet", "geo": null, "id": 148831059503620100, "id_str": "148831059503620096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697285501/Picture_004_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697285501/Picture_004_1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@BisonGuru my lil sis wants to know if @IPOLifestyle is gonna re up on the birds of a feather crews for females.. shes a Small", "to_user": "BisonGuru", "to_user_id": 29093251, "to_user_id_str": "29093251", "to_user_name": "J.Coles", "in_reply_to_status_id": 148825953609584640, "in_reply_to_status_id_str": "148825953609584640"}, +{"created_at": "Mon, 19 Dec 2011 18:24:22 +0000", "from_user": "blazingbuy", "from_user_id": 235303259, "from_user_id_str": "235303259", "from_user_name": "Blazing Buy", "geo": null, "id": 148831050288738300, "id_str": "148831050288738305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1209657189/1-1204463487cJKy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1209657189/1-1204463487cJKy_normal.jpg", "source": "<a href="http://www.froo.com" rel="nofollow">Froo! Smart Social</a>", "text": "Check out this great item: NEW Angry Birds Knock on Wood Game Mattel Hot Toy Christmas 2011 http://t.co/yqOztp72", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:18 +0000", "from_user": "Willeneua98", "from_user_id": 387913450, "from_user_id_str": "387913450", "from_user_name": "Willene Shorts", "geo": null, "id": 148831036527230980, "id_str": "148831036527230976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1580573910/PPK-3361_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580573910/PPK-3361_normal.jpg", "source": "<a href="http://bestdealsvn8.co.cc" rel="nofollow">bestdealsvn8.co.cc</a>", "text": "http://t.co/ZoJx5MHM Angry Birds game desk/wall Clock 12 colorful pictures Angry Birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:18 +0000", "from_user": "togrown4yuh", "from_user_id": 133071479, "from_user_id_str": "133071479", "from_user_name": "Tan Tan", "geo": null, "id": 148831035361214460, "id_str": "148831035361214464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686275911/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686275911/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Good Afternoon my tweety birds!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:17 +0000", "from_user": "SonicFields", "from_user_id": 165697968, "from_user_id_str": "165697968", "from_user_name": "Sonic Fields", "geo": null, "id": 148831030290296830, "id_str": "148831030290296833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1523594794/Waveform02_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1523594794/Waveform02_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Audio #fieldrecording Totoro Forest birds in heavy rain http://t.co/hlOqj8dL #album #track #newage - you'll need an umbrella for this one!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:12 +0000", "from_user": "LORDKAY2", "from_user_id": 282189544, "from_user_id_str": "282189544", "from_user_name": "chikelue-mbonu kosy", "geo": null, "id": 148831007636860930, "id_str": "148831007636860928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691609100/kay_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691609100/kay_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@AquaKeli u mean giving it2 d birds?", "to_user": "AquaKeli", "to_user_id": 262197577, "to_user_id_str": "262197577", "to_user_name": "Edi", "in_reply_to_status_id": 148830601603072000, "in_reply_to_status_id_str": "148830601603072000"}, +{"created_at": "Mon, 19 Dec 2011 18:24:10 +0000", "from_user": "HolUpBro_O", "from_user_id": 316634428, "from_user_id_str": "316634428", "from_user_name": "ITweetYouUnfollowO_o", "geo": null, "id": 148831001764827140, "id_str": "148831001764827136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1665155838/oCVCcx6D_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665155838/oCVCcx6D_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "#NP Birds part 2 - The Weeknd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:09 +0000", "from_user": "redsoles12", "from_user_id": 34979282, "from_user_id_str": "34979282", "from_user_name": "Rachel Adams", "geo": null, "id": 148830997541171200, "id_str": "148830997541171203", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1663075453/IMG-20111127-01608_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663075453/IMG-20111127-01608_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Even the birds are chained to the sky", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:08 +0000", "from_user": "Briie_Loves_Yuh", "from_user_id": 97695278, "from_user_id_str": "97695278", "from_user_name": "\\u2122 \\(\\u2022_\\u2022\\) Random", "geo": null, "id": 148830992461873150, "id_str": "148830992461873152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1690201481/jgmWG7GR_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690201481/jgmWG7GR_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "ii aint finna b out her long.....all dese Damn birds ^_^", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:04 +0000", "from_user": "MrFame23", "from_user_id": 318891887, "from_user_id_str": "318891887", "from_user_name": "David Datil Mercado ", "geo": null, "id": 148830975638507520, "id_str": "148830975638507520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681703524/KEGQ73FS_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681703524/KEGQ73FS_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "These birds in my house <<<", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:04 +0000", "from_user": "MAXIB0Y3", "from_user_id": 85754176, "from_user_id_str": "85754176", "from_user_name": "max quintus", "geo": null, "id": 148830974233411600, "id_str": "148830974233411584", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1373726891/Max_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1373726891/Max_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Andreas1332 die angry birds op de achtergrond zijn cool :p", "to_user": "Andreas1332", "to_user_id": 235519469, "to_user_id_str": "235519469", "to_user_name": "Andrew Madden", "in_reply_to_status_id": 148139478748364800, "in_reply_to_status_id_str": "148139478748364800"}, +{"created_at": "Mon, 19 Dec 2011 18:23:59 +0000", "from_user": "kay_thai", "from_user_id": 332626739, "from_user_id_str": "332626739", "from_user_name": "K'Ehleyr Thai", "geo": null, "id": 148830956856410100, "id_str": "148830956856410112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1633976558/111111-135854_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633976558/111111-135854_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @TeeRue6: Aw hearing the birds outside my window reminds me of summer #takemethere", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:59 +0000", "from_user": "Per__Ardua", "from_user_id": 384301089, "from_user_id_str": "384301089", "from_user_name": "Kirsten McIntyre", "geo": null, "id": 148830955690405900, "id_str": "148830955690405888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Become addicted to Angry Birds. RAGIN' BIRDS. There's a chance me and Adam could fall out over who is the bird master haha.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:59 +0000", "from_user": "itsJustme8701", "from_user_id": 240480851, "from_user_id_str": "240480851", "from_user_name": "Tyra Jae\\u2122", "geo": +{"coordinates": [32.7773,-97.0851], "type": "Point"}, "id": 148830955392610300, "id_str": "148830955392610304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701823664/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701823664/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "mom: A bird told me you are doing drugs... girl: You're talking with birds and I'm the one doing drugs?! o_O", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:55 +0000", "from_user": "mjvartorg", "from_user_id": 296908035, "from_user_id_str": "296908035", "from_user_name": "mjv-art.org", "geo": null, "id": 148830940288917500, "id_str": "148830940288917505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1366926902/MJV-ART.ORG_-_115442-1200x900-thigh_boots-curly_hair-girl-long_hair_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1366926902/MJV-ART.ORG_-_115442-1200x900-thigh_boots-curly_hair-girl-long_hair_normal.jpg", "source": "<a href="http://twitpic.com" rel="nofollow">Twitpic</a>", "text": "http://t.co/KpcWTBFq 1500x1000 bird (birds), eva 02, evangelion: 2.0 you can (not) advance, from behind, girl, gun http://t.co/Cjr1vQmR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:52 +0000", "from_user": "KEYLOofAC", "from_user_id": 30563353, "from_user_id_str": "30563353", "from_user_name": "KEYLO", "geo": null, "id": 148830927152357380, "id_str": "148830927152357376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700483669/Photo_on_12-17-11_at_10.02_PM__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700483669/Photo_on_12-17-11_at_10.02_PM__2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @_DomDiddy: @KEYLOofAC Real Talk I use to be Tight Tweety delisha Shameka Jazzy they use to be by my window Like early birds early birds lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:52 +0000", "from_user": "GabiScussiatto", "from_user_id": 218163996, "from_user_id_str": "218163996", "from_user_name": "Gabriela Scussiatto", "geo": null, "id": 148830926619680770, "id_str": "148830926619680768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1514917195/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1514917195/twitter_normal.jpg", "source": "<a href="http://www.tweekly.fm/" rel="nofollow">Tweekly.fm</a>", "text": "My Top 3 #lastfm Artists: Pearl Jam (29), Noel Gallagher's High Flying Birds (20) & Metallica (15) http://t.co/JeM2zVwC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:51 +0000", "from_user": "_Stephaniecarol", "from_user_id": 326414114, "from_user_id_str": "326414114", "from_user_name": "StephanieCaroline :3", "geo": null, "id": 148830922463133700, "id_str": "148830922463133696", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690990792/Foto-0117_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690990792/Foto-0117_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "#ocupada, jogando Angry Birds :b", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:47 +0000", "from_user": "MikeBianchi360", "from_user_id": 389066119, "from_user_id_str": "389066119", "from_user_name": "Michael Bianchi ", "geo": null, "id": 148830903613927420, "id_str": "148830903613927424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1656198061/60MBO8i5_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656198061/60MBO8i5_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Twitter twitter twitter let those birds tweet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:46 +0000", "from_user": "EatMyKushh", "from_user_id": 304159076, "from_user_id_str": "304159076", "from_user_name": "ColeWord", "geo": null, "id": 148830899260231680, "id_str": "148830899260231680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1634566111/tiff_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634566111/tiff_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "playing angry birds with my lil brother", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:45 +0000", "from_user": "SeifoneeeV", "from_user_id": 366774841, "from_user_id_str": "366774841", "from_user_name": "Seifone", "geo": null, "id": 148830895741222900, "id_str": "148830895741222912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1529469957/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1529469957/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Well goodmorning my tweety birds! Why is it so cold?!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:45 +0000", "from_user": "GittieBang", "from_user_id": 221502561, "from_user_id_str": "221502561", "from_user_name": "BriMcHam", "geo": +{"coordinates": [43.0597,-70.798], "type": "Point"}, "id": 148830894717804540, "id_str": "148830894717804544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685650707/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685650707/image_normal.jpg", "source": "<a href="http://www.handmark.com" rel="nofollow">TweetCaster for iOS</a>", "text": "Angry birds <<<<<", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:43 +0000", "from_user": "animalarkclinic", "from_user_id": 441041424, "from_user_id_str": "441041424", "from_user_name": "Animal Ark Vet Clini", "geo": null, "id": 148830889302966270, "id_str": "148830889302966272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702536271/animalark_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702536271/animalark_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Lots of loud birds here at Ark today", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:43 +0000", "from_user": "_forevertexas", "from_user_id": 51188887, "from_user_id_str": "51188887", "from_user_name": "Aimee Waters", "geo": null, "id": 148830886035599360, "id_str": "148830886035599360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1436905507/me_guitar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1436905507/me_guitar_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "My Cousin Daisy is absolute pro at Angry Birds. Love this kid.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:35 +0000", "from_user": "wildharry33", "from_user_id": 229421806, "from_user_id_str": "229421806", "from_user_name": "\\uE52D Jazzy Harry ", "geo": null, "id": 148830853378736130, "id_str": "148830853378736129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1674654118/loudmouth_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674654118/loudmouth_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Good Morning early birds \\uE055", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:33 +0000", "from_user": "MarcDreiNull", "from_user_id": 332883587, "from_user_id_str": "332883587", "from_user_name": "Marc.", "geo": null, "id": 148830846365872130, "id_str": "148830846365872129", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1679637963/MarcDreiNull_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679637963/MarcDreiNull_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @Husti: Meine Freundin gestern total theatralisch zu mir: \"Ich muss dich was fragen.\" Nach 5 Minuten rumgestammel sollte ich bei Angry Birds helfen.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:32 +0000", "from_user": "flintStoner_", "from_user_id": 240479178, "from_user_id_str": "240479178", "from_user_name": "\\u1DA0\\u1DB8\\u1D9C\\u1D4F\\u1D67\\u2092\\u1D64, Im Paris\\u2601", "geo": null, "id": 148830843085914100, "id_str": "148830843085914113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695179913/DOyJBCuz_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695179913/DOyJBCuz_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @HolUpBro_O: #NP Birds part 1 - The Weeknd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:31 +0000", "from_user": "Lorettekkq", "from_user_id": 426264025, "from_user_id_str": "426264025", "from_user_name": "Lorette Hanner", "geo": null, "id": 148830839239749630, "id_str": "148830839239749632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668804985/LLCM-5202_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668804985/LLCM-5202_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@C_Maynardx Go try out Pigeon Palooza (the next angry birds)- it is launched in Android Mktplce - will be in App Store next week.", "to_user": "C_Maynardx", "to_user_id": 417176941, "to_user_id_str": "417176941", "to_user_name": "Charlie Maynard", "in_reply_to_status_id": 148795628946866180, "in_reply_to_status_id_str": "148795628946866177"}, +{"created_at": "Mon, 19 Dec 2011 18:23:30 +0000", "from_user": "Chynaa_McLovenn", "from_user_id": 304798413, "from_user_id_str": "304798413", "from_user_name": "_LizzieSAIDFackkyou", "geo": null, "id": 148830834089144320, "id_str": "148830834089144321", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700332227/t5VsjN7Y_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700332227/t5VsjN7Y_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "_ S/o to them birds who find disrespect and ignorrant actions to be acceptable ... let's see how far you get?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:29 +0000", "from_user": "YmTrill_YungN", "from_user_id": 253372296, "from_user_id_str": "253372296", "from_user_name": "Slick Mula", "geo": null, "id": 148830830888878080, "id_str": "148830830888878080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700569259/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700569259/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Everything that I got I got from slagin birds !!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:27 +0000", "from_user": "NIQUE13BCHILLIN", "from_user_id": 33927923, "from_user_id_str": "33927923", "from_user_name": "Nique ..", "geo": null, "id": 148830821279744000, "id_str": "148830821279744001", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1592041356/IMAG0236-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592041356/IMAG0236-1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Lights blamed as thousands of migrating birds crash in Utah - http://t.co/WEPOTHZ1 - http://t.co/tMo5RSfu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:25 +0000", "from_user": "tudspac", "from_user_id": 234145231, "from_user_id_str": "234145231", "from_user_name": "tudor sopterian", "geo": null, "id": 148830812593324030, "id_str": "148830812593324032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1653504956/LOL_20_231_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653504956/LOL_20_231_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @Mobbie_OMG: Don't let the money deceive you... a rat is still a rat, and birds of a feather flock together. #RealTalk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:24 +0000", "from_user": "myrxins", "from_user_id": 384558579, "from_user_id_str": "384558579", "from_user_name": "No, it's mai-ra.", "geo": null, "id": 148830806633234430, "id_str": "148830806633234432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698119787/re3rf_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698119787/re3rf_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Satubudakk nope, not at all. but who cares. birds still flying what.", "to_user": "Satubudakk", "to_user_id": 256995490, "to_user_id_str": "256995490", "to_user_name": "Akid", "in_reply_to_status_id": 148830534062182400, "in_reply_to_status_id_str": "148830534062182400"}, +{"created_at": "Mon, 19 Dec 2011 18:23:22 +0000", "from_user": "katieratkiewicz", "from_user_id": 157009642, "from_user_id_str": "157009642", "from_user_name": "Katie Ratkiewicz", "geo": null, "id": 148830799251251200, "id_str": "148830799251251200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1002022539/linkedin_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1002022539/linkedin_pic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@mcrat - birds w/ friends? RT@businessinsider How Will Angry Birds Continue To Grow? http://t.co/or2zvngD", "to_user": "McRat", "to_user_id": 43016654, "to_user_id_str": "43016654", "to_user_name": "Robert Rattray"}, +{"created_at": "Mon, 19 Dec 2011 18:23:21 +0000", "from_user": "DaPussySlayerr", "from_user_id": 300550537, "from_user_id_str": "300550537", "from_user_name": "Justyna Bondaruk", "geo": null, "id": 148830794532667400, "id_str": "148830794532667392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700588637/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700588637/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I hate when these mother fuckin birds shit on my car #angrytweet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:20 +0000", "from_user": "tickled_pink08", "from_user_id": 263988665, "from_user_id_str": "263988665", "from_user_name": "Ayesha", "geo": null, "id": 148830789986029570, "id_str": "148830789986029568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1669170403/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669170403/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "This overtime stuff is for the birds\\uD83D\\uDC24", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:19 +0000", "from_user": "Lareesia_Kia", "from_user_id": 228545748, "from_user_id_str": "228545748", "from_user_name": " Kia Solomon", "geo": null, "id": 148830785615560700, "id_str": "148830785615560704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1647099502/5rlO530k_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647099502/5rlO530k_normal", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Angry birds.!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:16 +0000", "from_user": "truebluetrojan", "from_user_id": 78798475, "from_user_id_str": "78798475", "from_user_name": "S. Garcia", "geo": null, "id": 148830776228716540, "id_str": "148830776228716544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/446268253/Coliseum_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/446268253/Coliseum_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@ScottEnyeart 6 day schedule is for the birds... *shakes fist*", "to_user": "ScottEnyeart", "to_user_id": 18093476, "to_user_id_str": "18093476", "to_user_name": "Scott Enyeart", "in_reply_to_status_id": 148829488027942900, "in_reply_to_status_id_str": "148829488027942913"}, +{"created_at": "Mon, 19 Dec 2011 18:23:10 +0000", "from_user": "apistilli", "from_user_id": 14827230, "from_user_id_str": "14827230", "from_user_name": "Alessandro Pistilli", "geo": null, "id": 148830750882541570, "id_str": "148830750882541568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/774884798/apistilli_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/774884798/apistilli_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "When Santa meets Angry Birds :-) http://t.co/wvRNSxYu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:05 +0000", "from_user": "isaacabs", "from_user_id": 64077910, "from_user_id_str": "64077910", "from_user_name": "Isaac Oliveira", "geo": null, "id": 148830729495777280, "id_str": "148830729495777280", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1495634745/162898_155378274509324_100001114562461_246095_3874028_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1495634745/162898_155378274509324_100001114562461_246095_3874028_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "campe\\u00E3o nacional na categoria angry birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:05 +0000", "from_user": "Boltengzg", "from_user_id": 395398760, "from_user_id_str": "395398760", "from_user_name": "Melina Bolten", "geo": null, "id": 148830729470607360, "id_str": "148830729470607360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1599619822/MFC-0938_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599619822/MFC-0938_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "North American Birds: The worlds most definitive bird guide is now available on CD-ROM! You will fully explore t... http://t.co/6C1sJqQm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:04 +0000", "from_user": "s_saxon26", "from_user_id": 425604035, "from_user_id_str": "425604035", "from_user_name": "Shanard Saxon", "geo": null, "id": 148830726094204930, "id_str": "148830726094204929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669032231/IMG_20111130_143634_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669032231/IMG_20111130_143634_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "They call them things birds but idk y cuz u can take em out the cage and they still won't fly", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:04 +0000", "from_user": "Brownloather", "from_user_id": 27414505, "from_user_id_str": "27414505", "from_user_name": "Roger Ledger", "geo": null, "id": 148830725846741000, "id_str": "148830725846740992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1176694913/3fa3b3be-1992-42bc-92ee-c53f9b73ce67_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1176694913/3fa3b3be-1992-42bc-92ee-c53f9b73ce67_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @Shyman33: #OccupyLSX #Occupy They even mentioned Mary Poppins feeding the birds on St Pauls steps.But she only stayed until the wind changed. #BBCnews", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:04 +0000", "from_user": "TEFMO", "from_user_id": 437951396, "from_user_id_str": "437951396", "from_user_name": "Thomas Moore ", "geo": null, "id": 148830725804785660, "id_str": "148830725804785665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": null, "source": "<a href="http://angrybirdstweets.com" rel="nofollow">Angry Birds Tweets</a>", "text": "just unlocked the angry birds seasons twitter levels, http://t.co/3tzabS8U", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:04 +0000", "from_user": "KayleeFoxUP", "from_user_id": 298719086, "from_user_id_str": "298719086", "from_user_name": "Kaylee Fox", "geo": null, "id": 148830724622008320, "id_str": "148830724622008320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682433529/314730_10150396392262349_693352348_10533285_517477491_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682433529/314730_10150396392262349_693352348_10533285_517477491_n_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Photo: #kaz #wiccan #unrelentingpositivity #nature #birds (Taken with instagram) http://t.co/xcATL19o", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:02 +0000", "from_user": "SelfMade0_o", "from_user_id": 351958349, "from_user_id_str": "351958349", "from_user_name": "Tashanna Harris", "geo": null, "id": 148830715528757250, "id_str": "148830715528757248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1541748775/addias_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541748775/addias_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @JaszzRozay: Birds Donn Fly Without My Permission .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:02 +0000", "from_user": "KayleeFoxUP", "from_user_id": 298719086, "from_user_id_str": "298719086", "from_user_name": "Kaylee Fox", "geo": null, "id": 148830715092549630, "id_str": "148830715092549632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682433529/314730_10150396392262349_693352348_10533285_517477491_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682433529/314730_10150396392262349_693352348_10533285_517477491_n_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "#kaz #wiccan #unrelentingpositivity #nature #birds http://t.co/SSZ13jtz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:59 +0000", "from_user": "Airblazer", "from_user_id": 299689423, "from_user_id_str": "299689423", "from_user_name": "Airblazer", "geo": null, "id": 148830703449157630, "id_str": "148830703449157632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1406707148/AirB_v1_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1406707148/AirB_v1_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Video: The Interactive Angry Birds Christmas Lights Display: Eat your heart out, Clark Griswold. \\nThis fully int... http://t.co/gGpS90o0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:57 +0000", "from_user": "SPiTelecomsNews", "from_user_id": 330847694, "from_user_id_str": "330847694", "from_user_name": "SPiTelecomsNews", "geo": null, "id": 148830693240217600, "id_str": "148830693240217602", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1430345230/spi_logo_02_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1430345230/spi_logo_02_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IM+ Adds Own In-App Messenger \"Beep\", Angry Birds Theme: BOSTON and STUTTGART, Germany, Dec. 19, 2011 /PRNewswir... http://t.co/Zkyt67PV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:22:57 +0000", "from_user": "SPiTelecomsNews", "from_user_id": 330847694, "from_user_id_str": "330847694", "from_user_name": "SPiTelecomsNews", "geo": null, "id": 148830693240217600, "id_str": "148830693240217602", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1430345230/spi_logo_02_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1430345230/spi_logo_02_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IM+ Adds Own In-App Messenger \"Beep\", Angry Birds Theme: BOSTON and STUTTGART, Germany, Dec. 19, 2011 /PRNewswir... http://t.co/Zkyt67PV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:56 +0000", "from_user": "lexxdemedeiros", "from_user_id": 352480659, "from_user_id_str": "352480659", "from_user_name": "\\u0251lexis demedeiros", "geo": null, "id": 148830692187439100, "id_str": "148830692187439104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1684523033/FacebookHomescreenImage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684523033/FacebookHomescreenImage_normal.jpg", "source": "<a href="http://twuffer.com" rel="nofollow">Twuffer</a>", "text": "RT @SincerelyTumblr: I like birds, they can fly away when things get too crazy.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:56 +0000", "from_user": "alhasanadnan90", "from_user_id": 373526079, "from_user_id_str": "373526079", "from_user_name": "hasan", "geo": null, "id": 148830691377938430, "id_str": "148830691377938432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698265165/twitter_icon_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698265165/twitter_icon_1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@AngryBirds these birds best birds in the world ever", "to_user": "AngryBirds", "to_user_id": 17337554, "to_user_id_str": "17337554", "to_user_name": "Angry Birds"}, +{"created_at": "Mon, 19 Dec 2011 18:22:55 +0000", "from_user": "C__P__3", "from_user_id": 371625518, "from_user_id_str": "371625518", "from_user_name": "\\u00A9o\\u00AEy \\u2117o\\u2117e\\u00AE\\u2122", "geo": null, "id": 148830687833751550, "id_str": "148830687833751552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1688640519/alwaysgaming_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688640519/alwaysgaming_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@_MR_23 haha true shit. the weekend we get back will be wild card round of playoffs. Birds to the bowl! Ha", "to_user": "_MR_23", "to_user_id": 188122685, "to_user_id_str": "188122685", "to_user_name": "\\uE21D\\uE21ELekan Ajibade \\uE42B\\uE41D\\uE104", "in_reply_to_status_id": 148829968896491520, "in_reply_to_status_id_str": "148829968896491521"}, +{"created_at": "Mon, 19 Dec 2011 18:22:55 +0000", "from_user": "sant_sanu", "from_user_id": 332903734, "from_user_id_str": "332903734", "from_user_name": "Sohra", "geo": null, "id": 148830687204605950, "id_str": "148830687204605952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695088577/IMG_4332_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695088577/IMG_4332_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @csikyj: Birds eye blow job http://t.co/sqM8HXVN via @twitpic", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:54 +0000", "from_user": "Jannausld", "from_user_id": 426261581, "from_user_id_str": "426261581", "from_user_name": "Janna Cadorette", "geo": null, "id": 148830681504550900, "id_str": "148830681504550913", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668795630/LLCM-2162_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668795630/LLCM-2162_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@PaulOgata Dude, try Pigeon Palooza (the next angry birds)- it's avail in Android Mktplce - should be in App Store soon.", "to_user": "PaulOgata", "to_user_id": 19064485, "to_user_id_str": "19064485", "to_user_name": "Paul Ogata", "in_reply_to_status_id": 148826184715747330, "in_reply_to_status_id_str": "148826184715747328"}, +{"created_at": "Mon, 19 Dec 2011 18:22:53 +0000", "from_user": "roundderby", "from_user_id": 425791871, "from_user_id_str": "425791871", "from_user_name": "@round", "geo": null, "id": 148830677800988670, "id_str": "148830677800988672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1667756115/Picture_348_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667756115/Picture_348_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@KieranHarrod Birds destroys all it's rivals in every category! ...Pasties, bread, meat, cakes... You name it!!", "to_user": "KieranHarrod", "to_user_id": 312015303, "to_user_id_str": "312015303", "to_user_name": "Kieran Harrod", "in_reply_to_status_id": 148785113919008770, "in_reply_to_status_id_str": "148785113919008768"}, +{"created_at": "Mon, 19 Dec 2011 18:22:53 +0000", "from_user": "BrittSoOfficial", "from_user_id": 306931188, "from_user_id_str": "306931188", "from_user_name": "YOLO \\u2665", "geo": null, "id": 148830677171843070, "id_str": "148830677171843072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1601787093/Picture0005_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601787093/Picture0005_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "@_DaddyJay haha , that birds stupid ! >.<", "to_user": "_DaddyJay", "to_user_id": 233416443, "to_user_id_str": "233416443", "to_user_name": "Verified Account \\u2611"}, +{"created_at": "Mon, 19 Dec 2011 18:22:52 +0000", "from_user": "BeautyFr0mPain", "from_user_id": 296915854, "from_user_id_str": "296915854", "from_user_name": "Chlobear", "geo": null, "id": 148830672914612220, "id_str": "148830672914612224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698921582/111217-210520_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698921582/111217-210520_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "We have to be 'birds' and flap our arms like wings. He looks like a prick. I look like a prick. It's all good.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:48 +0000", "from_user": "SirKendallEvans", "from_user_id": 37172262, "from_user_id_str": "37172262", "from_user_name": "THE Swaverer.", "geo": null, "id": 148830659048255500, "id_str": "148830659048255488", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689713130/IMAG0047_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689713130/IMAG0047_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "birds!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:42 +0000", "from_user": "yoboseiyo", "from_user_id": 17174446, "from_user_id_str": "17174446", "from_user_name": "Miss B, apparantly.", "geo": null, "id": 148830630417932300, "id_str": "148830630417932288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1560296589/sunshine__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1560296589/sunshine__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@RightAsRain panic is for the birds.", "to_user": "RightAsRain", "to_user_id": 14099445, "to_user_id_str": "14099445", "to_user_name": "RightAsRainCreations", "in_reply_to_status_id": 148818331812638720, "in_reply_to_status_id_str": "148818331812638720"}, +{"created_at": "Mon, 19 Dec 2011 18:22:41 +0000", "from_user": "dorthaggeorges", "from_user_id": 305932002, "from_user_id_str": "305932002", "from_user_name": "dortha georges", "geo": null, "id": 148830627976851460, "id_str": "148830627976851457", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1682943346/Comforter_Ideas_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682943346/Comforter_Ideas_normal.jpg", "source": "<a href="http://comforterideas.com" rel="nofollow">Comforter Ideas</a>", "text": "q: Birds Butterflies and Flo http://t.co/4YDwrb6V", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:39 +0000", "from_user": "B_CANSIN", "from_user_id": 76279338, "from_user_id_str": "76279338", "from_user_name": "Cansin Ozer", "geo": null, "id": 148830619210743800, "id_str": "148830619210743808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1388832146/cp1_finalistHM_1280_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1388832146/cp1_finalistHM_1280_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I favorited a @YouTube video http://t.co/KTgLtw39 REAL LIFE PISSED-OFF ANGRY BIRDS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:37 +0000", "from_user": "TreyOnlyWife", "from_user_id": 371548701, "from_user_id_str": "371548701", "from_user_name": "Lucy", "geo": null, "id": 148830610968940540, "id_str": "148830610968940545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688054579/photo_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688054579/photo_normal", "source": "<a href="http://www.lg.com" rel="nofollow">LG Phone</a>", "text": "All Dat BullShit Was For The Birds, She Was Pigeon Toedd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:33 +0000", "from_user": "drewhizzy", "from_user_id": 245915284, "from_user_id_str": "245915284", "from_user_name": "Dre ", "geo": null, "id": 148830595299029000, "id_str": "148830595299028992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701698806/IMG-20111123-00351_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701698806/IMG-20111123-00351_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@dakoksnr attention, how many birds did u kill today?", "to_user": "dakoksnr", "to_user_id": 237169341, "to_user_id_str": "237169341", "to_user_name": "OluwaDakok Snr", "in_reply_to_status_id": 148829962286272500, "in_reply_to_status_id_str": "148829962286272513"}, +{"created_at": "Mon, 19 Dec 2011 18:22:32 +0000", "from_user": "EXNavyGirl", "from_user_id": 134047327, "from_user_id_str": "134047327", "from_user_name": "Sam Mia Fields", "geo": null, "id": 148830591733858300, "id_str": "148830591733858304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702196333/Sam_Mia_Arty_AV_5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702196333/Sam_Mia_Arty_AV_5_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@parttimesoldier Footie? Oh dear lol I am sure there is something better to do lol even if it's angry birds lol.", "to_user": "parttimesoldier", "to_user_id": 90375376, "to_user_id_str": "90375376", "to_user_name": "Will", "in_reply_to_status_id": 148830007186300930, "in_reply_to_status_id_str": "148830007186300929"}, +{"created_at": "Mon, 19 Dec 2011 18:22:32 +0000", "from_user": "Husti", "from_user_id": 35885519, "from_user_id_str": "35885519", "from_user_name": "Herzjunge ", "geo": null, "id": 148830590282629120, "id_str": "148830590282629120", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1669628650/weihnachten_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669628650/weihnachten_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "Meine Freundin gestern total theatralisch zu mir: \"Ich muss dich was fragen.\" Nach 5 Minuten rumgestammel sollte ich bei Angry Birds helfen.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:30 +0000", "from_user": "bobbinsleak", "from_user_id": 176048275, "from_user_id_str": "176048275", "from_user_name": "Bob Leak", "geo": null, "id": 148830582988746750, "id_str": "148830582988746752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1568382717/6fb94cde-8f66-472a-bd95-db2911db0f46_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1568382717/6fb94cde-8f66-472a-bd95-db2911db0f46_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @kaityxx: @bobbinsleak it'll be the gay pride cake to our gay pride birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:29 +0000", "from_user": "thestephyp", "from_user_id": 45079643, "from_user_id_str": "45079643", "from_user_name": "Stephanie", "geo": null, "id": 148830577439674370, "id_str": "148830577439674368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1623153164/317769_2259924629850_1600440067_32341880_128586384_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1623153164/317769_2259924629850_1600440067_32341880_128586384_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @someecards: Angry Birds now available on iPhone, Droid, and completely insane man's Christmas lights display. http://t.co/mrfMU8Hl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:28 +0000", "from_user": "Jmesworld", "from_user_id": 282141489, "from_user_id_str": "282141489", "from_user_name": "KUSHTIAN_SLATER", "geo": null, "id": 148830574155538430, "id_str": "148830574155538432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699637765/DSC_0315-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699637765/DSC_0315-1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Kaligigi: @Jmesworld I feel Pigeon Palooza is more fun than Angry Birds. Its a fun, new app in Google Mktplce. ITunes next week.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:27 +0000", "from_user": "analitica", "from_user_id": 40461089, "from_user_id_str": "40461089", "from_user_name": "Analitica.com", "geo": null, "id": 148830569294331900, "id_str": "148830569294331904", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/663371990/M_NIMO_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/663371990/M_NIMO_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Los \"angry birds\" podr\\u00EDan sobrevolar el parqu\\u00E9 asi\\u00E1tico http://t.co/TBBB9VwK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:25 +0000", "from_user": "elimparcialcom", "from_user_id": 37796310, "from_user_id_str": "37796310", "from_user_name": "EL IMPARCIAL", "geo": null, "id": 148830560926707700, "id_str": "148830560926707712", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/199434428/ph_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/199434428/ph_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Angry Birds quiere volar en Hong Kong http://t.co/pGoH63qV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:24 +0000", "from_user": "QtpieTay10", "from_user_id": 236693568, "from_user_id_str": "236693568", "from_user_name": "Octavia A.", "geo": null, "id": 148830557617389570, "id_str": "148830557617389568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1647940635/QtpieTay10_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647940635/QtpieTay10_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "That shit for the birds!! RT @beautynef: i dont feed n2 bs anymore!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:23 +0000", "from_user": "Shyman33", "from_user_id": 134543073, "from_user_id_str": "134543073", "from_user_name": "Jakey", "geo": null, "id": 148830552152215550, "id_str": "148830552152215553", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1665649329/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665649329/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#OccupyLSX #Occupy They even mentioned Mary Poppins feeding the birds on St Pauls steps.But she only stayed until the wind changed. #BBCnews", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:21 +0000", "from_user": "PACMAN_BAPPIN", "from_user_id": 178171514, "from_user_id_str": "178171514", "from_user_name": "Ryan", "geo": null, "id": 148830542413037570, "id_str": "148830542413037568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1630830644/IMG00425-20111109-1426_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630830644/IMG00425-20111109-1426_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MJay_Tea lol u jumping off shit trying save Christmas trees and birds coming out of them", "to_user": "MJay_Tea", "to_user_id": 60058464, "to_user_id_str": "60058464", "to_user_name": "\\u2665 EST. Jan. 5th \\u2665", "in_reply_to_status_id": 148830141278195700, "in_reply_to_status_id_str": "148830141278195713"}, +{"created_at": "Mon, 19 Dec 2011 18:22:20 +0000", "from_user": "Faeriegemini", "from_user_id": 214194342, "from_user_id_str": "214194342", "from_user_name": "Heather Anderson", "geo": null, "id": 148830540072615940, "id_str": "148830540072615936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1465343243/profile_image_1311834264521_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1465343243/profile_image_1311834264521_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "My cat chirps at birds like Predator!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:18 +0000", "from_user": "LoveOnACloud", "from_user_id": 231958616, "from_user_id_str": "231958616", "from_user_name": "Kirry :)", "geo": null, "id": 148830533399494660, "id_str": "148830533399494657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700969045/Meeee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700969045/Meeee_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @HolUpBro_O: #NP Birds part 1 - The Weeknd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:14 +0000", "from_user": "TechTSP", "from_user_id": 141156310, "from_user_id_str": "141156310", "from_user_name": "Tanmay Patange", "geo": null, "id": 148830514609004540, "id_str": "148830514609004545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698936536/chrome_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698936536/chrome_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#GoogleChrome #Tech Play Latest Updated Angry Birds On Google Chrome http://t.co/VZy7hqPZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:13 +0000", "from_user": "Chungodp", "from_user_id": 426261931, "from_user_id_str": "426261931", "from_user_name": "Chung Knee", "geo": null, "id": 148830509869445120, "id_str": "148830509869445120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668796811/LLCM-5119_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668796811/LLCM-5119_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Amie_Thompson Go try out Pigeon Palooza (the next angry birds)- it is in Android Mktplce - will be in App Store next week.", "to_user": "Amie_Thompson", "to_user_id": 164243419, "to_user_id_str": "164243419", "to_user_name": "Ann-marie Thompson", "in_reply_to_status_id": 148821507383115780, "in_reply_to_status_id_str": "148821507383115776"}, +{"created_at": "Mon, 19 Dec 2011 18:22:13 +0000", "from_user": "Mrcuntdeville", "from_user_id": 107370545, "from_user_id_str": "107370545", "from_user_name": "Mrcuntdeville", "geo": null, "id": 148830508745359360, "id_str": "148830508745359360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700630587/Mrcuntdeville_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700630587/Mrcuntdeville_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@chrisanna4real why? It's just my phone.. Thought you'd like to link up & play Angry Birds.", "to_user": "chrisanna4real", "to_user_id": 274724514, "to_user_id_str": "274724514", "to_user_name": "ChrisAnna4real", "in_reply_to_status_id": 148829845017722880, "in_reply_to_status_id_str": "148829845017722880"}, +{"created_at": "Mon, 19 Dec 2011 18:22:09 +0000", "from_user": "TwtrZen", "from_user_id": 42189574, "from_user_id_str": "42189574", "from_user_name": "Twtr Zen", "geo": null, "id": 148830495772385280, "id_str": "148830495772385280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/228011975/zen1_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/228011975/zen1_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Video: The Interactive Angry Birds Christmas Lights Display: Eat your heart out, Clark Griswold. \\nThis... http://t.co/PCrBHUlz RT Please", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:09 +0000", "from_user": "kaityxx", "from_user_id": 50994893, "from_user_id_str": "50994893", "from_user_name": "kaity", "geo": null, "id": 148830494572810240, "id_str": "148830494572810240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1610847363/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610847363/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@bobbinsleak it'll be the gay pride cake to our gay pride birds.", "to_user": "bobbinsleak", "to_user_id": 176048275, "to_user_id_str": "176048275", "to_user_name": "Bob Leak", "in_reply_to_status_id": 148830255791079420, "in_reply_to_status_id_str": "148830255791079425"}, +{"created_at": "Mon, 19 Dec 2011 18:22:06 +0000", "from_user": "there_are", "from_user_id": 82029177, "from_user_id_str": "82029177", "from_user_name": "There Are", "geo": null, "id": 148830480807116800, "id_str": "148830480807116800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/468006524/anarchy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/468006524/anarchy_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @morgaangraay: THERE ARE literally like thousands of birds in my front yard right now... #thereare http://t.co/19FzqHfU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:06 +0000", "from_user": "JaszzRozay", "from_user_id": 375758322, "from_user_id_str": "375758322", "from_user_name": "JaszR.", "geo": null, "id": 148830479406219260, "id_str": "148830479406219264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1666705642/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666705642/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Birds Donn Fly Without My Permission .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:04 +0000", "from_user": "Ben_Morgan_", "from_user_id": 44175137, "from_user_id_str": "44175137", "from_user_name": "Ben Morgan", "geo": null, "id": 148830472867282940, "id_str": "148830472867282944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1673031096/meee_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673031096/meee_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "DID YOU KNOW that if you combine two of the greatest things ever; Birds and Christmas, you get Hermione Manger.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:02 +0000", "from_user": "iAmbition_", "from_user_id": 87087382, "from_user_id_str": "87087382", "from_user_name": "melly mels", "geo": null, "id": 148830463748870140, "id_str": "148830463748870144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670339975/9pL153RV_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670339975/9pL153RV_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@WhoaThere_Ty lol yea ima b the girl at birds prom with the most swag hahaha n my date wearing his wit a white suit ;)", "to_user": "WhoaThere_Ty", "to_user_id": 326288694, "to_user_id_str": "326288694", "to_user_name": "Tahjeer Who ?", "in_reply_to_status_id": 148830150941884400, "in_reply_to_status_id_str": "148830150941884418"}, +{"created_at": "Mon, 19 Dec 2011 18:22:01 +0000", "from_user": "DEPTR", "from_user_id": 91753607, "from_user_id_str": "91753607", "from_user_name": "DEPTRxJETS:.", "geo": null, "id": 148830461861437440, "id_str": "148830461861437440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681079084/QLLycw38_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681079084/QLLycw38_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "My little brother is hooked on Angry Birds lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:01 +0000", "from_user": "Brittany_AMM", "from_user_id": 239552826, "from_user_id_str": "239552826", "from_user_name": "Brittany McNamara", "geo": null, "id": 148830460749942800, "id_str": "148830460749942785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1627437643/Picnick1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627437643/Picnick1_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Ohhh fuck, I'm turning into Shaun.. Playing angry birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:01 +0000", "from_user": "Aisne2011", "from_user_id": 15588400, "from_user_id_str": "15588400", "from_user_name": "Aisne", "geo": null, "id": 148830459726544900, "id_str": "148830459726544896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1383245768/blankpage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1383245768/blankpage_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Slimbridge's Spoonbilled sandpipers on the news. Gorgeous little birds; hope it's not too late for the species #wildlife", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:57 +0000", "from_user": "xoemilydeveau", "from_user_id": 295247866, "from_user_id_str": "295247866", "from_user_name": "Emily Deveau", "geo": null, "id": 148830443628806140, "id_str": "148830443628806145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1447986780/322173069_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1447986780/322173069_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "I'm so afraid of birds its not even funny", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:53 +0000", "from_user": "SunnyMitchell1", "from_user_id": 291953048, "from_user_id_str": "291953048", "from_user_name": "Sunny Mitchell", "geo": null, "id": 148830427401031680, "id_str": "148830427401031680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701605920/tumblr_lns8h3SKWL1qayqvfo1_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701605920/tumblr_lns8h3SKWL1qayqvfo1_400_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "RT @KernRiverPrsrv: This Red-shouldered Hawk was spotted on the Bakersfield Christmas Bird Count. These birds are riparian obligates... http://t.co/65oNMpMa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:53 +0000", "from_user": "larsvdl", "from_user_id": 292364053, "from_user_id_str": "292364053", "from_user_name": "Lars Van Der Laan", "geo": null, "id": 148830425589092350, "id_str": "148830425589092352", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1425231295/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1425231295/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@RaadDezeTweet: - - - - - ( \\u00F2 )> (^(00)^) ANGRY BIRDS! Retweet als je het ziet! #RDT\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:51 +0000", "from_user": "Photobug52", "from_user_id": 90379242, "from_user_id_str": "90379242", "from_user_name": "Alan S Hochman Photo", "geo": null, "id": 148830418630746100, "id_str": "148830418630746112", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/741189496/P1010013crop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/741189496/P1010013crop_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Blue Heron (Juvenile) at HoleyLand WMA http://t.co/HVv61UhG #bird #birding #birds #heron Visit http://t.co/VdlG7gZ2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:46 +0000", "from_user": "GuySmoothingtin", "from_user_id": 38537133, "from_user_id_str": "38537133", "from_user_name": "Justin Glass", "geo": null, "id": 148830397122355200, "id_str": "148830397122355200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690709571/dsaa_B_w_4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690709571/dsaa_B_w_4_normal.jpg", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "RT @PacinaSantana: Who else listens to 2 chainz slanging birds? Me", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:46 +0000", "from_user": "JosieMonteraJKS", "from_user_id": 428355695, "from_user_id_str": "428355695", "from_user_name": "Josie Montera", "geo": null, "id": 148830395692101630, "id_str": "148830395692101632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674178556/16114177451195463_meghan_laughing_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674178556/16114177451195463_meghan_laughing_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@JuniorMartins03 Ya must try out Pigeon Palooza (the next angry birds)- it's in Android Mktplce - will be in ITunes next week.", "to_user": "JuniorMartins03", "to_user_id": 69449296, "to_user_id_str": "69449296", "to_user_name": "JUNIOR MARTINS", "in_reply_to_status_id": 148818707785854980, "in_reply_to_status_id_str": "148818707785854976"}, +{"created_at": "Mon, 19 Dec 2011 18:21:44 +0000", "from_user": "muiss97", "from_user_id": 412357050, "from_user_id_str": "412357050", "from_user_name": "Marco Muis", "geo": null, "id": 148830390625382400, "id_str": "148830390625382400", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1638795071/__schatje_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638795071/__schatje_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "kut angry birds deuntje", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:44 +0000", "from_user": "Miss_Nicole84", "from_user_id": 72286518, "from_user_id_str": "72286518", "from_user_name": "Nicole G. ", "geo": null, "id": 148830389929115650, "id_str": "148830389929115649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1501007208/325212616_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1501007208/325212616_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "I have to find one of these angry birds shirts in Myah's size! She LOVES that game! And at 2 she can play it better than most adults!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:43 +0000", "from_user": "Madisaaaaan", "from_user_id": 276148434, "from_user_id_str": "276148434", "from_user_name": "Madison Leeper", "geo": null, "id": 148830383474085900, "id_str": "148830383474085890", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1660919151/casie_and_madison_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660919151/casie_and_madison_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Madison is super cool and likes fuzzy socks. (: she also enjoys dressing small birds in holiday sweaters.(:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:41 +0000", "from_user": "xnatashaperry", "from_user_id": 57490396, "from_user_id_str": "57490396", "from_user_name": "Natasha Perry", "geo": null, "id": 148830378143125500, "id_str": "148830378143125506", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698270945/Snapshot_20111203_675_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698270945/Snapshot_20111203_675_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Angry birds in english #notbad", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:37 +0000", "from_user": "erintheinvader", "from_user_id": 132051144, "from_user_id_str": "132051144", "from_user_name": "erin hawkins", "geo": null, "id": 148830361474957300, "id_str": "148830361474957312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1661948813/hurrrrrrrrrrrr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661948813/hurrrrrrrrrrrr_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "1 hour. Apparently that's all it takes for birds to cover my car with poop.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:37 +0000", "from_user": "PapuhBoss", "from_user_id": 28675614, "from_user_id_str": "28675614", "from_user_name": "Da Paper Boi", "geo": null, "id": 148830359063248900, "id_str": "148830359063248896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668613591/fib_pape_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668613591/fib_pape_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Juh got thu tLkn w/ my Daughter abt Life n da birds&Bees...sucha Dirty job as a Father but it HAd tu be Done :\\ ..... #ThankyouGod", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:37 +0000", "from_user": "volcheckt", "from_user_id": 22368996, "from_user_id_str": "22368996", "from_user_name": "TJ Volcheck", "geo": null, "id": 148830357737836540, "id_str": "148830357737836544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1202160547/IMG_0041_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1202160547/IMG_0041_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Angry Birds Seasons on the Mac? I think yes ;) #AngryBirds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:36 +0000", "from_user": "RandomDreamer_", "from_user_id": 385018093, "from_user_id_str": "385018093", "from_user_name": "Naranjito \\u03DF", "geo": null, "id": 148830355137372160, "id_str": "148830355137372160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687311739/FGASDGT_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687311739/FGASDGT_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Angry birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:35 +0000", "from_user": "BabyImDatB0Y", "from_user_id": 246075242, "from_user_id_str": "246075242", "from_user_name": "Beezie F. (iPh.D)", "geo": null, "id": 148830349772853250, "id_str": "148830349772853250", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1583482104/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583482104/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Damn..... Birds are fuckin flockin", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:34 +0000", "from_user": "bcastagna", "from_user_id": 15379758, "from_user_id_str": "15379758", "from_user_name": "Brandon Castagna", "geo": +{"coordinates": [35.3589,-80.9602], "type": "Point"}, "id": 148830347252084740, "id_str": "148830347252084738", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/57581573/brandon_castagna_20040806_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/57581573/brandon_castagna_20040806_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Wrapping presents is for the birds!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:33 +0000", "from_user": "candrison009", "from_user_id": 151406356, "from_user_id_str": "151406356", "from_user_name": "Cristina Andrison", "geo": null, "id": 148830344576110600, "id_str": "148830344576110592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/955843990/Christy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/955843990/Christy_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Tech News: Video: The Interactive Angry Birds Christmas Lights Display: Eat your heart out,... http://t.co/L2LsX159 http://t.co/r969U0Ds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:33 +0000", "from_user": "carolinEichhorn", "from_user_id": 386214754, "from_user_id_str": "386214754", "from_user_name": "Caroline Eichhorn", "geo": null, "id": 148830344261546000, "id_str": "148830344261545984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1654182920/30885_1488380730393_1260197918_1383566_1745772_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654182920/30885_1488380730393_1260197918_1383566_1745772_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @FactsOnGirlz: If couples who are in love are called \"love birds\", then couples who always argue should be called \"angry birds\"?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:33 +0000", "from_user": "Geralyndcf", "from_user_id": 426262070, "from_user_id_str": "426262070", "from_user_name": "Geralyn Aron", "geo": null, "id": 148830341619126270, "id_str": "148830341619126272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668797133/LLCM-1691_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668797133/LLCM-1691_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@HannahCyrusBR Hey, try out Pigeon Palooza (the next angry birds)- it's avail in Android Mktplce - should be in ITunes in a few days.", "to_user": "HannahCyrusBR", "to_user_id": 90031902, "to_user_id_str": "90031902", "to_user_name": "Smurfette da Colina", "in_reply_to_status_id": 148814988776177660, "in_reply_to_status_id_str": "148814988776177664"}, +{"created_at": "Mon, 19 Dec 2011 18:21:31 +0000", "from_user": "dylanoneill", "from_user_id": 269817400, "from_user_id_str": "269817400", "from_user_name": "Dylan O'Neill", "geo": null, "id": 148830334572707840, "id_str": "148830334572707840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1298102520/71656_481103660756_703605756_6859719_3286293_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1298102520/71656_481103660756_703605756_6859719_3286293_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "RT @simonjamesgreen: Directed by me! Come see it! \\u201C@digitalspyent: 'Birds of A Feather' reunion tour dates announced http://t.co/8tQY1n7s\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:28 +0000", "from_user": "kaah_harumi", "from_user_id": 334986880, "from_user_id_str": "334986880", "from_user_name": "tchutchukarina *-*", "geo": null, "id": 148830323495542800, "id_str": "148830323495542784", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697064280/IMG_0841_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697064280/IMG_0841_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "vou jogar Angry Birds HAUSHAUSHUASHUA ta m\\u00F3 t\\u00E9\\u00E9\\u00E9dio akii ))=", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:27 +0000", "from_user": "StePhyx0x", "from_user_id": 345526610, "from_user_id_str": "345526610", "from_user_name": "Stephanie Muir", "geo": null, "id": 148830316306513920, "id_str": "148830316306513921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701292970/382575_10151062874270263_642105262_22158894_1248385341_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701292970/382575_10151062874270263_642105262_22158894_1248385341_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@Mobbie_OMG Don't let the money deceive you...a rat is still a rat, and birds of a feather flock together.#RealTalk#mobwives @reneegraziano", "to_user": "Mobbie_OMG", "to_user_id": 101842491, "to_user_id_str": "101842491", "to_user_name": "Mobbie Moe"}, +{"created_at": "Mon, 19 Dec 2011 18:21:26 +0000", "from_user": "junksz", "from_user_id": 55425708, "from_user_id_str": "55425708", "from_user_name": "Meow. ", "geo": null, "id": 148830312179310600, "id_str": "148830312179310592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699327145/iU0405Y8_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699327145/iU0405Y8_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "all thats bullshxt for the birds, you aint nothing but a volcher.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:21 +0000", "from_user": "Mack11Maalik", "from_user_id": 206717542, "from_user_id_str": "206717542", "from_user_name": "Huey P", "geo": null, "id": 148830293032321020, "id_str": "148830293032321024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699083260/Mack11Maalik_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699083260/Mack11Maalik_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Huh?! RT @MissFawaz: I dont flock wit birds that cant fly", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:10 +0000", "from_user": "amersons", "from_user_id": 20184226, "from_user_id_str": "20184226", "from_user_name": "Amy Nantkes", "geo": null, "id": 148830246811086850, "id_str": "148830246811086848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1245531483/41620_1337259822_6726_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1245531483/41620_1337259822_6726_q_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "How did my toddler develop such a deep love for animals? Esp considering how I don't dig them. Fish/birds/cats/dogs are his jam.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:10 +0000", "from_user": "TaylerrIsKING", "from_user_id": 200778493, "from_user_id_str": "200778493", "from_user_name": "taylerr. & you?", "geo": null, "id": 148830244634234880, "id_str": "148830244634234880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1589879234/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1589879234/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "i've never played angry birds. seems boring.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:09 +0000", "from_user": "tarahdactil", "from_user_id": 171207510, "from_user_id_str": "171207510", "from_user_name": "Tarah Radke", "geo": null, "id": 148830242625167360, "id_str": "148830242625167360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1303680358/brew_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1303680358/brew_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@AjaBriley yep, still gay... RT: \"Enjoying the birds chirping and the sun shinning through the window.\"", "to_user": "AjaBriley", "to_user_id": 332406783, "to_user_id_str": "332406783", "to_user_name": "Aja Briley", "in_reply_to_status_id": 148805911073390600, "in_reply_to_status_id_str": "148805911073390593"}, +{"created_at": "Mon, 19 Dec 2011 18:21:09 +0000", "from_user": "chermst", "from_user_id": 48517417, "from_user_id_str": "48517417", "from_user_name": "Cheryl Chartier", "geo": null, "id": 148830241903755260, "id_str": "148830241903755264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/871522722/17049_222119454518_520424518_2976879_2561227_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/871522722/17049_222119454518_520424518_2976879_2561227_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @BlackFridaysav: Check out this Amazon deal: 'Angry Birds 16\" Plush Black Bird With Sound' by Commonwealth Toy http://t.co/TkStqUZw via @amazon", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:06 +0000", "from_user": "AldewereldJ", "from_user_id": 351481137, "from_user_id_str": "351481137", "from_user_name": "Justin", "geo": null, "id": 148830229966753800, "id_str": "148830229966753792", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1486048346/IMG00021-20110809-1152_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1486048346/IMG00021-20110809-1152_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Nu ff angry birds spelen op papa's samsung galaxy s 2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:03 +0000", "from_user": "CockY_but_CuTe", "from_user_id": 234936452, "from_user_id_str": "234936452", "from_user_name": "Rai Antedra", "geo": null, "id": 148830215873896450, "id_str": "148830215873896448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695760238/CockY_but_CuTe_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695760238/CockY_but_CuTe_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Good Afternoon Tweet Birds ..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:01 +0000", "from_user": "iAdoreThyself", "from_user_id": 236073725, "from_user_id_str": "236073725", "from_user_name": "Azzy-A", "geo": null, "id": 148830209922179070, "id_str": "148830209922179072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701041724/IMG_183467_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701041724/IMG_183467_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Lol at the birds squaking outside", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:59 +0000", "from_user": "SharqBaitHuHaHa", "from_user_id": 203373083, "from_user_id_str": "203373083", "from_user_name": "chelle ", "geo": null, "id": 148830198635298800, "id_str": "148830198635298816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682415172/pic1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682415172/pic1_normal.jpg", "source": "<a href="http://www.twitter.com" rel="nofollow">Twitter for Windows Phone</a>", "text": "This whole not feeling good thing is for the birds -_-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:58 +0000", "from_user": "ZomBrian86", "from_user_id": 58571626, "from_user_id_str": "58571626", "from_user_name": "Brian", "geo": null, "id": 148830195888046080, "id_str": "148830195888046081", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/323256929/briansaurus_rex_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/323256929/briansaurus_rex_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @StephenBloomIA: Front page of today's @presscitizen blares \"The Birds!!\" Goes against all I teach my journalism students: fueling Hitchcockian fear of birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:57 +0000", "from_user": "_Katt_Williams_", "from_user_id": 344352191, "from_user_id_str": "344352191", "from_user_name": "KattWilliams", "geo": null, "id": 148830192696172540, "id_str": "148830192696172544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1466566947/7790_katt_20williams_0_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1466566947/7790_katt_20williams_0_normal.gif", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "I wonder what would happen if angry birds was real life...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:55 +0000", "from_user": "MandresRod", "from_user_id": 171646517, "from_user_id_str": "171646517", "from_user_name": "Marlon Andr\\u00E9s Rod.", "geo": null, "id": 148830183892320260, "id_str": "148830183892320256", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1578650299/1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1578650299/1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Parodia de \"Angry Birds\" en \"Los Simpsons\": http://t.co/jtrnkpbM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:55 +0000", "from_user": "Alejandro17r", "from_user_id": 60126050, "from_user_id_str": "60126050", "from_user_name": "Alejandro Rodr\\u00EDguez", "geo": null, "id": 148830182839549950, "id_str": "148830182839549952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690328735/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690328735/image_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube video http://t.co/GAd8AEtE Angry Birds Wreck The Halls animation", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:54 +0000", "from_user": "mayorofauburn", "from_user_id": 199961237, "from_user_id_str": "199961237", "from_user_name": "Marquez Reed", "geo": null, "id": 148830178267770880, "id_str": "148830178267770880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1443485147/76107_1211059152657_1114080215_30800556_7486968_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1443485147/76107_1211059152657_1114080215_30800556_7486968_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Im all for animals rights but im about to kill these fucking birds in my house... they woke me up at the butt crack of noon #tooearly!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:54 +0000", "from_user": "gedankenfrei_", "from_user_id": 250537211, "from_user_id_str": "250537211", "from_user_name": "Annikaa", "geo": null, "id": 148830175642124300, "id_str": "148830175642124288", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1548724861/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1548724861/image_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Photos on iOS</a>", "text": "Angry Birds bei IM+! *-* http://t.co/yiA0gACf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:53 +0000", "from_user": "Petrileh", "from_user_id": 75234234, "from_user_id_str": "75234234", "from_user_name": "Petri Lehmuskoski", "geo": null, "id": 148830173544988670, "id_str": "148830173544988672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698410144/2010_05_16_5746_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698410144/2010_05_16_5746_normal.jpg", "source": "<a href="http://www.businessinsider.com" rel="nofollow">Business Insider</a>", "text": "RT @businessinsider: How Will Angry Birds Continue To Grow? http://t.co/iDwaKeh0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:52 +0000", "from_user": "JTLT_mommy28", "from_user_id": 323994315, "from_user_id_str": "323994315", "from_user_name": "suck me slow \\u261C ", "geo": null, "id": 148830170558640130, "id_str": "148830170558640128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697152007/PicsIn_1324072986789-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697152007/PicsIn_1324072986789-1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "All that shits for the birds and ya other bitches", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:45 +0000", "from_user": "IronHead201", "from_user_id": 23030572, "from_user_id_str": "23030572", "from_user_name": "iRonhe@d Kenny", "geo": null, "id": 148830142255472640, "id_str": "148830142255472641", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698391944/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698391944/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@govannito: RT @IronHead201: birds fly souf for the winter, not far east to europe!!! <~ only pigeons fly south!\\u201D Same shit!!! N*gga Please", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:44 +0000", "from_user": "LauShadowhunter", "from_user_id": 303676090, "from_user_id_str": "303676090", "from_user_name": "_\\u201CMus\\u201D de chocolate ", "geo": null, "id": 148830138337984500, "id_str": "148830138337984512", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696950412/pinkpinkpink_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696950412/pinkpinkpink_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Boats and Birds - Gregory and the Hawk. Si alguien la quiere escuchar, ale. Es preciosa. La letra me encanta.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:43 +0000", "from_user": "MafiaWarsStrtgy", "from_user_id": 78134924, "from_user_id_str": "78134924", "from_user_name": "Mafia Wars Strategy", "geo": null, "id": 148830133569073150, "id_str": "148830133569073153", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/441713569/images_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/441713569/images_normal.jpeg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @chikacikeeh GatauuuuRT @GueMauTanya: Pilih (angry birds/ayo dance/mafia wars/point blank)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:41 +0000", "from_user": "Chug51", "from_user_id": 279732893, "from_user_id_str": "279732893", "from_user_name": "C Rock Hard", "geo": null, "id": 148830123452416000, "id_str": "148830123452416000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702103835/TweetLandPhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702103835/TweetLandPhoto_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @Betty21Trim: Hey Ladies.. Put some Toothpaste on his Penis.. Kill 2 Birds with 1 Stone this morning!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:40 +0000", "from_user": "Kareendmmg", "from_user_id": 426262455, "from_user_id_str": "426262455", "from_user_name": "Kareen Sicari", "geo": null, "id": 148830122248650750, "id_str": "148830122248650753", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668798646/LLCM-2128_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668798646/LLCM-2128_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@giovanaticianel Ya must try out Pigeon Palooza (the next angry birds)- it is in Android Mktplce - will be in App Store next week.", "to_user": "giovanaticianel", "to_user_id": 159647484, "to_user_id_str": "159647484", "to_user_name": "Giovana Ticianel", "in_reply_to_status_id": 148799092867346430, "in_reply_to_status_id_str": "148799092867346432"}, +{"created_at": "Mon, 19 Dec 2011 18:20:38 +0000", "from_user": "Megan_Howell95", "from_user_id": 238438114, "from_user_id_str": "238438114", "from_user_name": "Megan Howell", "geo": null, "id": 148830112140378100, "id_str": "148830112140378112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1621898285/REAL_tiwtta_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621898285/REAL_tiwtta_pic_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@elliegoulding singing Sleepyhead sounds like a flock of birds chirpalirpin and I love it :)", "to_user": "elliegoulding", "to_user_id": 20565284, "to_user_id_str": "20565284", "to_user_name": "Elena Jane Goulding"}, +{"created_at": "Mon, 19 Dec 2011 18:20:36 +0000", "from_user": "KTBennett83", "from_user_id": 27510599, "from_user_id_str": "27510599", "from_user_name": "Katie Bennett", "geo": null, "id": 148830104167006200, "id_str": "148830104167006208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1200899121/49295_706513223_5907151_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1200899121/49295_706513223_5907151_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Phones4u: Angry Birds is taking over the world! Check out this interactive Angry Birds Christmas Lights Display! http://t.co/mM7yMYbI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:35 +0000", "from_user": "CURTWOOD_TV", "from_user_id": 245228090, "from_user_id_str": "245228090", "from_user_name": "Smash Adams", "geo": null, "id": 148830100622819330, "id_str": "148830100622819328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692096469/331467166_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692096469/331467166_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "\"Kick sweet pimpin to deez birds, n now they pecking me!\" #MARSmonday", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:34 +0000", "from_user": "WizKhalifaHiqh", "from_user_id": 40483824, "from_user_id_str": "40483824", "from_user_name": "Srumptiouz '*| ^.* ", "geo": null, "id": 148830094465572860, "id_str": "148830094465572864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698225500/004J054dgcc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698225500/004J054dgcc_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @RandyFloss: You still playing Angry Birds? #OHYOUFANCYHUH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:31 +0000", "from_user": "abreduardo", "from_user_id": 38194576, "from_user_id_str": "38194576", "from_user_name": "Eduardo Baca", "geo": null, "id": 148830081320632320, "id_str": "148830081320632320", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1526108449/foto1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1526108449/foto1_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Para navidad quiero una playera de angry birds!! Ahh y una tablet! Jeje #fb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:30 +0000", "from_user": "Clannibal", "from_user_id": 228130479, "from_user_id_str": "228130479", "from_user_name": "lostlittlemind", "geo": null, "id": 148830079718395900, "id_str": "148830079718395905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1663718790/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663718790/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "That is a lot of birds... ._.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:29 +0000", "from_user": "MissTyga_Breezy", "from_user_id": 110822719, "from_user_id_str": "110822719", "from_user_name": "GENESIS", "geo": null, "id": 148830076279078900, "id_str": "148830076279078912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702543702/1UM9G8XF_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702543702/1UM9G8XF_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MISSBR33ZY_19: 'All That Bullshit's For The Birds, You Aint Nothing But A Vulture' #TeamBreezy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:28 +0000", "from_user": "shakes_37", "from_user_id": 423180076, "from_user_id_str": "423180076", "from_user_name": "James", "geo": null, "id": 148830072059605000, "id_str": "148830072059604992", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1676041711/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676041711/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @langintin: I can start a pet store w deez birds..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:24 +0000", "from_user": "GodzillaGraff", "from_user_id": 33545590, "from_user_id_str": "33545590", "from_user_name": "Captain Zills.", "geo": null, "id": 148830053143289860, "id_str": "148830053143289856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1608435160/ECP_00073_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608435160/ECP_00073_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "This Man Ere Said He \"Shed A Tear When He Saw The Birds Hatch\".....What A Prick In Life.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:23 +0000", "from_user": "SOBER_FREE", "from_user_id": 259044943, "from_user_id_str": "259044943", "from_user_name": "Dasi bonds", "geo": null, "id": 148830047090905100, "id_str": "148830047090905088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692779458/Pec212Iv_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692779458/Pec212Iv_normal", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "No one understands how terrified I am of birds!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:18 +0000", "from_user": "rubencej", "from_user_id": 269837410, "from_user_id_str": "269837410", "from_user_name": "Rub\\u00E9n Ceja", "geo": null, "id": 148830028728250370, "id_str": "148830028728250368", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686523528/07082011486_-_copia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686523528/07082011486_-_copia_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@AlAtZu nooo en serio? Jajajaja eres una vaga pa esos jueguitos ya me di cuenta oye ya tengo todos los de angry birds te los mando vale!", "to_user": "AlAtZu", "to_user_id": 100112605, "to_user_id_str": "100112605", "to_user_name": "karina lira", "in_reply_to_status_id": 148829663790235650, "in_reply_to_status_id_str": "148829663790235649"}, +{"created_at": "Mon, 19 Dec 2011 18:20:17 +0000", "from_user": "joshua_ann", "from_user_id": 134677645, "from_user_id_str": "134677645", "from_user_name": "Josh K", "geo": null, "id": 148830023753809920, "id_str": "148830023753809921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1477286023/Photo_on_2011-03-09_at_20.40_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1477286023/Photo_on_2011-03-09_at_20.40_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "\"What is with all these mean birds?\" - Mom\\n#angrybirds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:11 +0000", "from_user": "mherrerooficial", "from_user_id": 282147923, "from_user_id_str": "282147923", "from_user_name": "Manuel Herrero", "geo": null, "id": 148830000781606900, "id_str": "148830000781606912", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687026555/Dibujo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687026555/Dibujo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "En dos dias, me he pasado el Angry Birds en el movil mientras deberia estar estudiando...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:11 +0000", "from_user": "LeuhhRae", "from_user_id": 23332029, "from_user_id_str": "23332029", "from_user_name": "LeahRaeODell", "geo": null, "id": 148830000727076860, "id_str": "148830000727076864", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1576929873/Snapshot_20111001_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576929873/Snapshot_20111001_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @dangerouslyem: @daniellejonas @kevinjonas Happy Anniversary you love birds! <3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:11 +0000", "from_user": "treysrealangel", "from_user_id": 77072501, "from_user_id_str": "77072501", "from_user_name": "Lexi 11201\\u2665", "geo": null, "id": 148830000257306620, "id_str": "148830000257306624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695352832/2011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695352832/2011_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Igetsoangry are not straight up with me... like be serious!! all that beating around the bush bull s for the birds!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:11 +0000", "from_user": "manthony11", "from_user_id": 89756380, "from_user_id_str": "89756380", "from_user_name": "martin anthony", "geo": null, "id": 148829996989956100, "id_str": "148829996989956097", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679963390/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679963390/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "its only monday and im dumb fired up for this weekend Birds vs bitches game..need a beat down in big d.. #hatethecowboyswithapassion", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:20:04 +0000", "from_user": "sqlpass", "from_user_id": 14639667, "from_user_id_str": "14639667", "from_user_name": "PASS", "geo": null, "id": 148829968602898430, "id_str": "148829968602898432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/234882971/pass_logo50_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/234882971/pass_logo50_normal.JPG", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "Early birds get the great rate at #SQLRally Dallas - register by Jan. 14 & submit sessions by Jan. 22 http://t.co/U11nqCLx #sqlpass", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:03 +0000", "from_user": "Kellehlmh", "from_user_id": 426260155, "from_user_id_str": "426260155", "from_user_name": "Kelle Rayas", "geo": null, "id": 148829967004860400, "id_str": "148829967004860416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668791732/LLCM-1074_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668791732/LLCM-1074_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@cymbreqlw Ya should check out Pigeon Palooza (the next angry birds)- it is launched in Android Mktplce - will be in App Store next week.", "to_user": "cymbreqlw", "to_user_id": 407304294, "to_user_id_str": "407304294", "to_user_name": "Cymbre Cooperman", "in_reply_to_status_id": 148821157100011520, "in_reply_to_status_id_str": "148821157100011521"}, +{"created_at": "Mon, 19 Dec 2011 18:20:03 +0000", "from_user": "RandyFloss", "from_user_id": 28252297, "from_user_id_str": "28252297", "from_user_name": "Mr Twitta", "geo": null, "id": 148829964781895680, "id_str": "148829964781895680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1492320486/new_twitpic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1492320486/new_twitpic_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "You still playing Angry Birds? #OHYOUFANCYHUH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:02 +0000", "from_user": "CozyCot", "from_user_id": 20518641, "from_user_id_str": "20518641", "from_user_name": "CozyCot.com", "geo": null, "id": 148829962844123140, "id_str": "148829962844123137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1430359895/cozycot_twitter_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1430359895/cozycot_twitter_normal.gif", "source": "<a href="http://www.cozycot.com" rel="nofollow">CozyCot WebFeed</a>", "text": "Johansson scared of birds http://t.co/2SMGgsuk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:51 +0000", "from_user": "Roxanefvj", "from_user_id": 426262051, "from_user_id_str": "426262051", "from_user_name": "Roxane Chafetz", "geo": null, "id": 148829916836802560, "id_str": "148829916836802561", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668798016/LLCM-4894_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668798016/LLCM-4894_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@sesharina Hey, go get Pigeon Palooza (the next angry birds)- it's in Android Mktplce - will be in App Store soon.", "to_user": "sesharina", "to_user_id": 46724527, "to_user_id_str": "46724527", "to_user_name": "sesarina puspita", "in_reply_to_status_id": 148824910511353860, "in_reply_to_status_id_str": "148824910511353856"}, +{"created_at": "Mon, 19 Dec 2011 18:19:47 +0000", "from_user": "Meat_AintSHIT", "from_user_id": 68465418, "from_user_id_str": "68465418", "from_user_name": "jametraaaa*", "geo": null, "id": 148829900067962880, "id_str": "148829900067962880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1621130809/IMAG5372_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621130809/IMAG5372_normal.jpg", "source": "<a href="http://www.nibirutech.com/" rel="nofollow">TwitBird iPad</a>", "text": "Infatuation with the birds, I watch Animal Planet.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:47 +0000", "from_user": "BlackFridaysav", "from_user_id": 384726972, "from_user_id_str": "384726972", "from_user_name": "Black Friday Save", "geo": null, "id": 148829896557342720, "id_str": "148829896557342720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1573098631/BlackFridayHotDealHeaderImage14_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1573098631/BlackFridayHotDealHeaderImage14_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Check out this Amazon deal: 'Angry Birds 16\" Plush Black Bird With Sound' by Commonwealth Toy http://t.co/TkStqUZw via @amazon", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:43 +0000", "from_user": "sheasy4", "from_user_id": 254982174, "from_user_id_str": "254982174", "from_user_name": "Ciaran Mc Parland", "geo": null, "id": 148829880279244800, "id_str": "148829880279244800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701768494/47090_1595238358844_1172500598_1692959_1661292_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701768494/47090_1595238358844_1172500598_1692959_1661292_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@PGILL89 get some birds around gill!", "to_user": "PGILL89", "to_user_id": 269495951, "to_user_id_str": "269495951", "to_user_name": "Paul Thomas Gill", "in_reply_to_status_id": 148825407888695300, "in_reply_to_status_id_str": "148825407888695296"}, +{"created_at": "Mon, 19 Dec 2011 18:19:38 +0000", "from_user": "Cwisssss", "from_user_id": 377467691, "from_user_id_str": "377467691", "from_user_name": "Chris le-thoong", "geo": null, "id": 148829859773292540, "id_str": "148829859773292544", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677955203/377917_248322498555614_100001335968877_696437_240334706_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677955203/377917_248322498555614_100001335968877_696437_240334706_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Igetsoangry over angry birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:35 +0000", "from_user": "ElmiSoSo", "from_user_id": 35330767, "from_user_id_str": "35330767", "from_user_name": "L-Me 'Hontas'", "geo": null, "id": 148829849178484740, "id_str": "148829849178484736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691672437/swag1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691672437/swag1_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "#NowPlaying The Weeknd - The Birds Part 1...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:34 +0000", "from_user": "meganfrommpls", "from_user_id": 15803515, "from_user_id_str": "15803515", "from_user_name": "Megan", "geo": null, "id": 148829843952381950, "id_str": "148829843952381952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/897718132/meganedicrop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/897718132/meganedicrop_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Since living in NYC, I have developed an irrational fear of birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:33 +0000", "from_user": "mlp_JayB", "from_user_id": 439706797, "from_user_id_str": "439706797", "from_user_name": "Jay Bass", "geo": null, "id": 148829840504664060, "id_str": "148829840504664064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699560157/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699560157/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "These twitter birds are a marvel aren't they miss @MLP_SweetKiss?", "to_user": "MLP_SweetKiss", "to_user_id": 382551196, "to_user_id_str": "382551196", "to_user_name": "MLP_SweetKiss", "in_reply_to_status_id": 148829517857832960, "in_reply_to_status_id_str": "148829517857832960"}, +{"created_at": "Mon, 19 Dec 2011 18:19:32 +0000", "from_user": "carlosnrv", "from_user_id": 85575709, "from_user_id_str": "85575709", "from_user_name": "Carlos Vel\\u00E1squez", "geo": null, "id": 148829834213203970, "id_str": "148829834213203968", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1576860720/123_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576860720/123_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@DanielZabaletaL callate viejo trabajando con todo, intensa jornada de Angry Birds y Youtube entre otros.... hahaha", "to_user": "DanielZabaletaL", "to_user_id": 92575770, "to_user_id_str": "92575770", "to_user_name": "Daniel Zabaleta", "in_reply_to_status_id": 148829417987248130, "in_reply_to_status_id_str": "148829417987248129"}, +{"created_at": "Mon, 19 Dec 2011 18:19:30 +0000", "from_user": "justindeteun", "from_user_id": 256621882, "from_user_id_str": "256621882", "from_user_name": "Justin teunissen ", "geo": null, "id": 148829826457927680, "id_str": "148829826457927680", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1384577201/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1384577201/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@nickAKAgibby angry birds rio , maar het geld is van me broertje dus ik mag niks kopen en we konde een tijdje niks kopen(geen internet)", "to_user": "nickAKAgibby", "to_user_id": 221421143, "to_user_id_str": "221421143", "to_user_name": "Nick v/d Klundert", "in_reply_to_status_id": 148487142631415800, "in_reply_to_status_id_str": "148487142631415808"}, +{"created_at": "Mon, 19 Dec 2011 18:19:28 +0000", "from_user": "MISSBR33ZY_19", "from_user_id": 394836599, "from_user_id_str": "394836599", "from_user_name": "Abida Uddin", "geo": null, "id": 148829816416776200, "id_str": "148829816416776192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1635233154/teambreezy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635233154/teambreezy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "'All That Bullshit's For The Birds, You Aint Nothing But A Vulture' #TeamBreezy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:27 +0000", "from_user": "Betty21Trim", "from_user_id": 41305578, "from_user_id_str": "41305578", "from_user_name": "B.Trimble", "geo": null, "id": 148829812352487420, "id_str": "148829812352487424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1678198214/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678198214/profile_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "Hey Ladies.. Put some Toothpaste on his Penis.. Kill 2 Birds with 1 Stone this morning!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:26 +0000", "from_user": "Doreen_Moran", "from_user_id": 6119852, "from_user_id_str": "6119852", "from_user_name": "Doreen Moran", "geo": null, "id": 148829808497917950, "id_str": "148829808497917953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/518481537/st_m_crop_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/518481537/st_m_crop_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "This Christmas light display based on Angry Birds is actually a playable game! http://t.co/Unx0wUL4 via @DigitalTrends", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:25 +0000", "from_user": "AJj3311", "from_user_id": 394721487, "from_user_id_str": "394721487", "from_user_name": "Jake", "geo": null, "id": 148829805591273470, "id_str": "148829805591273472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1597928971/25372_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1597928971/25372_normal.JPG", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "A #Photo of some #Pelicans-#Birds\\thttp://t.co/ArhS7WEW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:20 +0000", "from_user": "AnvyZhang", "from_user_id": 256228417, "from_user_id_str": "256228417", "from_user_name": "Anvy.Zhang", "geo": null, "id": 148829785919991800, "id_str": "148829785919991809", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1678203103/psu2342332534_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678203103/psu2342332534_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@movingbrands Yeah I love Angry Birds", "to_user": "movingbrands", "to_user_id": 10900412, "to_user_id_str": "10900412", "to_user_name": "movingbrands", "in_reply_to_status_id": 148815620262203400, "in_reply_to_status_id_str": "148815620262203392"}, +{"created_at": "Mon, 19 Dec 2011 18:19:19 +0000", "from_user": "kelhenrique05", "from_user_id": 423670802, "from_user_id_str": "423670802", "from_user_name": "Kelvin Henrique !", "geo": null, "id": 148829781432090620, "id_str": "148829781432090624", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664746529/of_021_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664746529/of_021_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "P\\u00F4neis Malditos? Por que n\\u00E3o Angry Birds Malditos? #BigFollow:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:18 +0000", "from_user": "_iQoyQoy", "from_user_id": 242596761, "from_user_id_str": "242596761", "from_user_name": "Downloading.........", "geo": null, "id": 148829777661399040, "id_str": "148829777661399040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1621177708/440983529_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621177708/440983529_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MJ__Fadeaway: @_iQoyQoy Lol , We Gone Be Some Working Asses 9am -5pm . Its Cool Kill Two Birds In One Stone", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:13 +0000", "from_user": "KaceO_DaMondaze", "from_user_id": 26938707, "from_user_id_str": "26938707", "from_user_name": "Nancy", "geo": null, "id": 148829753883889660, "id_str": "148829753883889664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1622776676/Capture_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622776676/Capture_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@CovinoandRich Make sure your potential woman doesn't have pet birds. ;)", "to_user": "CovinoandRich", "to_user_id": 17873794, "to_user_id_str": "17873794", "to_user_name": "Covino And Rich Show"}, +{"created_at": "Mon, 19 Dec 2011 18:19:12 +0000", "from_user": "CudiTaughtME", "from_user_id": 248896906, "from_user_id_str": "248896906", "from_user_name": "Isabella", "geo": null, "id": 148829751501525000, "id_str": "148829751501524992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698860778/CudiTaughtME_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698860778/CudiTaughtME_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "I can't get past this level on angry birds >_<", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:09 +0000", "from_user": "PacinaSantana", "from_user_id": 251672169, "from_user_id_str": "251672169", "from_user_name": "Magnum ", "geo": null, "id": 148829738708893700, "id_str": "148829738708893696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701695381/CQ54t2Us_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701695381/CQ54t2Us_normal", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Who else listens to 2 chainz slanging birds?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:08 +0000", "from_user": "ShoboatNYC", "from_user_id": 20952756, "from_user_id_str": "20952756", "from_user_name": "JVP Swiftly", "geo": +{"coordinates": [28.2571,-81.3192], "type": "Point"}, "id": 148829735617691650, "id_str": "148829735617691648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701435199/307066_10150333145169350_606844349_7779069_1110711595_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701435199/307066_10150333145169350_606844349_7779069_1110711595_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Lizzle428 come join me! Playing with exotic birds, cats and monkeys! Lol", "to_user": "Lizzle428", "to_user_id": 20076192, "to_user_id_str": "20076192", "to_user_name": "Elizabeth Castillo", "in_reply_to_status_id": 148791065921593340, "in_reply_to_status_id_str": "148791065921593344"}, +{"created_at": "Mon, 19 Dec 2011 18:19:07 +0000", "from_user": "Lixxiee", "from_user_id": 98254821, "from_user_id_str": "98254821", "from_user_name": "Lixx Alc\\u00E1ntara", "geo": null, "id": 148829730496450560, "id_str": "148829730496450561", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657133341/DSC_0037_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657133341/DSC_0037_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Oh yeah, I wanna say thank you to girl who gave me the Angry Birds Bin, Lanyard, and Silicone Case! Sweet of her to include 2 more gifts!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:07 +0000", "from_user": "chomin_boi", "from_user_id": 178101619, "from_user_id_str": "178101619", "from_user_name": "Chomin", "geo": null, "id": 148829730043465730, "id_str": "148829730043465728", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1653615448/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653615448/twitter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Ya me pas\\u00E9 el Angry Birds del chrome... Necesito m\\u00E1s retos :p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:05 +0000", "from_user": "kozeni_", "from_user_id": 24553265, "from_user_id_str": "24553265", "from_user_name": "Carlos", "geo": null, "id": 148829720455299070, "id_str": "148829720455299072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681078188/ran8_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681078188/ran8_normal.jpg", "source": "<a href="http://janetter.net/" rel="nofollow">Janetter</a>", "text": "@bapeonion Personally, I'm waiting for the sequel: Angsty Birds. That or the spin-off: Passive-Aggressive Birds.", "to_user": "bapeonion", "to_user_id": 14261797, "to_user_id_str": "14261797", "to_user_name": "heathcliff marmaduke", "in_reply_to_status_id": 148826210632343550, "in_reply_to_status_id_str": "148826210632343554"}, +{"created_at": "Mon, 19 Dec 2011 18:19:04 +0000", "from_user": "_JoeyOliver", "from_user_id": 439655231, "from_user_id_str": "439655231", "from_user_name": "Joey Oliver", "geo": null, "id": 148829718903394300, "id_str": "148829718903394305", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699270692/Joey_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699270692/Joey_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "P\\u00F4neis Malditos? Por que n\\u00E3o Angry Birds Malditos? #BigFollow: http://t.co/W8DzDqhg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:02 +0000", "from_user": "_JoeyOliver", "from_user_id": 439655231, "from_user_id_str": "439655231", "from_user_name": "Joey Oliver", "geo": null, "id": 148829709986304000, "id_str": "148829709986304000", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699270692/Joey_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699270692/Joey_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "P\\u00F4neis Malditos? Por que n\\u00E3o Angry Birds Malditos? #BigFollow: http://t.co/N7wlJLhq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:02 +0000", "from_user": "iJETSETonJACOB", "from_user_id": 258471721, "from_user_id_str": "258471721", "from_user_name": "MRS.Latimore/S.SMIFF", "geo": null, "id": 148829709596229630, "id_str": "148829709596229634", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681614244/389492_295392750491317_100000617823957_972972_424646285_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681614244/389492_295392750491317_100000617823957_972972_424646285_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "RT @DIGGYJUNIOR_HOE: Me and my girlfriend we go out err weekend we just 2 love birds thats why we always tweetin <33 http://t.co/gzgXvwMR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:01 +0000", "from_user": "LouettaTrichel", "from_user_id": 250097291, "from_user_id_str": "250097291", "from_user_name": "Louetta Trichel", "geo": null, "id": 148829704542097400, "id_str": "148829704542097409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1240278908/145568498145_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1240278908/145568498145_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Where do birds invest their money? In the stork market!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:00 +0000", "from_user": "brittnnneyannn", "from_user_id": 298172727, "from_user_id_str": "298172727", "from_user_name": "Brittney", "geo": null, "id": 148829701945823230, "id_str": "148829701945823232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698518302/brittnnneyannn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698518302/brittnnneyannn_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Maybe I'll take up playing angry birds again \\uD83D\\uDE0A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:57 +0000", "from_user": "HeFlyFirstClass", "from_user_id": 296703915, "from_user_id_str": "296703915", "from_user_name": "TreyVon Bernard", "geo": null, "id": 148829688326930430, "id_str": "148829688326930433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675180875/1320939662-picsay_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675180875/1320939662-picsay_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "S/O to the birds that shited on my car when I just got it washed...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:54 +0000", "from_user": "RichieRich_247", "from_user_id": 24997460, "from_user_id_str": "24997460", "from_user_name": "Richie Rich ", "geo": null, "id": 148829675727241200, "id_str": "148829675727241216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687546562/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687546562/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@_iDirectUFollow yea i smell you on that one that standin u pwhole shifts is for the birds im str8 on that lol", "to_user": "_iDirectUFollow", "to_user_id": 52835749, "to_user_id_str": "52835749", "to_user_name": "Sharron Airel", "in_reply_to_status_id": 148829202198700030, "in_reply_to_status_id_str": "148829202198700032"}, +{"created_at": "Mon, 19 Dec 2011 18:18:53 +0000", "from_user": "nerd_wars", "from_user_id": 250354454, "from_user_id_str": "250354454", "from_user_name": "Vinicius In\\u00E1cio", "geo": null, "id": 148829669628719100, "id_str": "148829669628719104", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1659274343/1212121_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659274343/1212121_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Ta explicado - angry birds!: \\nEssa eu tive que postar!\\nVia Me-Gustando\\n http://t.co/W5kzWYB6 via @agoraficouserio", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:49 +0000", "from_user": "thebrianmcc", "from_user_id": 85854538, "from_user_id_str": "85854538", "from_user_name": "Brian McCarty", "geo": null, "id": 148829654348873730, "id_str": "148829654348873728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/496854763/brian_fish.final_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/496854763/brian_fish.final_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "The Angry Birds game is being spun off into Angry Birds' Wives.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:49 +0000", "from_user": "AMusicalGenius_", "from_user_id": 27197394, "from_user_id_str": "27197394", "from_user_name": "Southern Ave Tay!", "geo": null, "id": 148829653933629440, "id_str": "148829653933629441", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690622324/23971_10150145693870527_604510526_11751979_102602_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690622324/23971_10150145693870527_604510526_11751979_102602_n_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "#Np The Birds Part 2 - The Weeknd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:47 +0000", "from_user": "FLGRooney", "from_user_id": 186608170, "from_user_id_str": "186608170", "from_user_name": "Josh Dickerson", "geo": null, "id": 148829648346812400, "id_str": "148829648346812416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1642356103/329899388_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642356103/329899388_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Its no wonder the south end of the MS flyway has hardly any birds, there is absolutely nothing frozen or snow covered up here", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:46 +0000", "from_user": "j0sethetruth", "from_user_id": 157399153, "from_user_id_str": "157399153", "from_user_name": "Omar Villafa\\u00F1e", "geo": null, "id": 148829640427962370, "id_str": "148829640427962369", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692330628/j0sethetruth_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692330628/j0sethetruth_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "The birds http://t.co/hjUHeM3D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:45 +0000", "from_user": "seabird_11", "from_user_id": 233240015, "from_user_id_str": "233240015", "from_user_name": "Christopher Williams", "geo": null, "id": 148829639475859460, "id_str": "148829639475859456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1498728562/215138_10150255667644722_829404721_7097127_1693071_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1498728562/215138_10150255667644722_829404721_7097127_1693071_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "one thing that coldplay has taught me: Birds do not fly faster than the speed of sound", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:45 +0000", "from_user": "Brownstonecow", "from_user_id": 251121520, "from_user_id_str": "251121520", "from_user_name": " Tony Brown", "geo": null, "id": 148829636179140600, "id_str": "148829636179140608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1242158259/Sherrif_Badge_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1242158259/Sherrif_Badge_normal.jpeg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@p4rus @paulhawky when I use to watch east tilbury a few of the sea birds especially the skuas would gain height & go inland", "to_user": "p4rus", "to_user_id": 168257511, "to_user_id_str": "168257511", "to_user_name": "James Astley", "in_reply_to_status_id": 148815087526871040, "in_reply_to_status_id_str": "148815087526871040"}, +{"created_at": "Mon, 19 Dec 2011 18:18:44 +0000", "from_user": "WildBirdsUnlmtd", "from_user_id": 30051181, "from_user_id_str": "30051181", "from_user_name": "Wild Birds Unlimited", "geo": null, "id": 148829632265859070, "id_str": "148829632265859072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1330753974/nclg_0411_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1330753974/nclg_0411_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Got a caption for Poor Mr. Snowman? enter our Caption Contest http://t.co/wwl6xgrm #birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:43 +0000", "from_user": "Lyd_Danielle", "from_user_id": 345162527, "from_user_id_str": "345162527", "from_user_name": "Lydia Rea", "geo": null, "id": 148829630567157760, "id_str": "148829630567157760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1530470850/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1530470850/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@jtketch88: @Lyd_Danielle I know!! I've also hit 3 birds and a dog. But the dog lived lol\\u201D \\uD83D\\uDE32that aweful haha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:39 +0000", "from_user": "TyriceDeShaun", "from_user_id": 416771629, "from_user_id_str": "416771629", "from_user_name": "Tyrice Wells", "geo": null, "id": 148829613173379070, "id_str": "148829613173379072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680217610/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680217610/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @Mic_Ah_Jwalk: When u finally beat that level on Angry Birds>>>>>>> #Winning", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:38 +0000", "from_user": "filmoreclark", "from_user_id": 106853971, "from_user_id_str": "106853971", "from_user_name": "Filmore Clark", "geo": null, "id": 148829607771119600, "id_str": "148829607771119617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1149566221/twitter_avatar_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1149566221/twitter_avatar_normal.JPG", "source": "<a href="http://pinterest.com" rel="nofollow">Pinterest</a>", "text": "Beautiful sculpted birds! Found thanks to @unclebeefy http://t.co/5gijKDba", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:37 +0000", "from_user": "Tosyne31", "from_user_id": 50971914, "from_user_id_str": "50971914", "from_user_name": "Tosyne", "geo": null, "id": 148829605569101820, "id_str": "148829605569101826", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694608854/photo54_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694608854/photo54_normal.JPG", "source": "<a href="http://getsocialscope.com" rel="nofollow">SocialScope</a>", "text": "Lol RT @HexyDre: No ordinary peacocks, those are \"birds for Christ\". RT @exschoolnerd: Cn peacocks fly dis high? Dey r ontop the bloody roof", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:33 +0000", "from_user": "1KewlSOB", "from_user_id": 232292707, "from_user_id_str": "232292707", "from_user_name": "SupaFly\\u2022HighGuy\\u2022O_o\\u2022", "geo": null, "id": 148829588401831940, "id_str": "148829588401831936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701527838/IMG_20111104_222557_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701527838/IMG_20111104_222557_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "No GM texts, tweets birds with a GM letter on its leg NOTHIN!<<<<<", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:31 +0000", "from_user": "MissFawaz", "from_user_id": 433366333, "from_user_id_str": "433366333", "from_user_name": "Miss Fawaz", "geo": null, "id": 148829580361351170, "id_str": "148829580361351168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685105018/319632_2080390445406_1114407051_31820396_78265194_n_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685105018/319632_2080390445406_1114407051_31820396_78265194_n_normal.jpeg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I dont flock wit birds that cant fly", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:31 +0000", "from_user": "Demi_SoRandom", "from_user_id": 28536138, "from_user_id_str": "28536138", "from_user_name": "Killl_Yurself \\u2665", "geo": null, "id": 148829580331982850, "id_str": "148829580331982848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699301588/0928111539_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699301588/0928111539_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @CheckMy_DOPEE: All the bullshit is for the birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:29 +0000", "from_user": "DacotahL", "from_user_id": 422194188, "from_user_id_str": "422194188", "from_user_name": "dacotah lowrance", "geo": null, "id": 148829572954193920, "id_str": "148829572954193920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668692117/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668692117/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@smoshanthony what is your favorite angry birds???", "to_user": "smoshanthony", "to_user_id": 19748674, "to_user_id_str": "19748674", "to_user_name": "Anthony Padilla", "in_reply_to_status_id": 148123724435030000, "in_reply_to_status_id_str": "148123724435030016"}, +{"created_at": "Mon, 19 Dec 2011 18:18:29 +0000", "from_user": "HolUpBro_O", "from_user_id": 316634428, "from_user_id_str": "316634428", "from_user_name": "ITweetYouUnfollowO_o", "geo": null, "id": 148829570466975740, "id_str": "148829570466975744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1665155838/oCVCcx6D_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665155838/oCVCcx6D_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "#NP Birds part 1 - The Weeknd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:27 +0000", "from_user": "johnmarkivey", "from_user_id": 17324951, "from_user_id_str": "17324951", "from_user_name": "John Mark Ivey", "geo": null, "id": 148829560950099970, "id_str": "148829560950099968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697911655/149192_1685592869608_1531240015_31673411_2076426_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697911655/149192_1685592869608_1531240015_31673411_2076426_n_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Angry Birds Short http://t.co/tLzOFOeZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:25 +0000", "from_user": "KbELL_bihhhh", "from_user_id": 74054693, "from_user_id_str": "74054693", "from_user_name": "[ No User Found ]", "geo": null, "id": 148829552246931460, "id_str": "148829552246931457", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695505356/twimg_AgrgDKACMAEkh6w.jpg_527_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695505356/twimg_AgrgDKACMAEkh6w.jpg_527_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Chris brown just said it \"Allat bulllshit is forr the birds\" fly awayyy!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:23 +0000", "from_user": "AlishaaAzhar", "from_user_id": 152642882, "from_user_id_str": "152642882", "from_user_name": "\\u25B2lishaaaa (: ", "geo": null, "id": 148829545347301380, "id_str": "148829545347301376", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690719268/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690719268/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Piu piu piu angry birds ~", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:22 +0000", "from_user": "DontLetMegDown", "from_user_id": 70972630, "from_user_id_str": "70972630", "from_user_name": "Megan Gayer", "geo": null, "id": 148829543342419970, "id_str": "148829543342419968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1679551162/Kurt_1_Brushing_Teeth_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679551162/Kurt_1_Brushing_Teeth_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "So let's do it, just get on a plane and just do it. Like the birds and the bees and get to it, just get out of town and forever be free.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:21 +0000", "from_user": "Pansyrap", "from_user_id": 426265387, "from_user_id_str": "426265387", "from_user_name": "Pansy Rickey", "geo": null, "id": 148829538124693500, "id_str": "148829538124693504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668806319/LLCM-4703_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668806319/LLCM-4703_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@oddfuckingshay Go go get Pigeon Palooza (the next angry birds)- it is live in Android Mktplce - will be in App Store next week.", "to_user": "oddfuckingshay", "to_user_id": 260364452, "to_user_id_str": "260364452", "to_user_name": "Deshaye Collins", "in_reply_to_status_id": 148828538345230340, "in_reply_to_status_id_str": "148828538345230336"}, +{"created_at": "Mon, 19 Dec 2011 18:18:20 +0000", "from_user": "Lady_HeartBr8k", "from_user_id": 103908792, "from_user_id_str": "103908792", "from_user_name": "Likah", "geo": null, "id": 148829533246722050, "id_str": "148829533246722049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1626214720/1320620535271_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626214720/1320620535271_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @iAm_Will4: Shits def for the birds. My answer is no from now on. And if you're persistent the answer becomes fuck no.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:15 +0000", "from_user": "amanda_ximena", "from_user_id": 29785346, "from_user_id_str": "29785346", "from_user_name": "Amanda Jimenez", "geo": null, "id": 148829511688003600, "id_str": "148829511688003584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/133030893/DSC00549_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/133030893/DSC00549_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SteveMartinToGo: Trying to get American Airlines to turn off the engine while I finish this game of Angry Birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:13 +0000", "from_user": "Geralyndcf", "from_user_id": 426262070, "from_user_id_str": "426262070", "from_user_name": "Geralyn Aron", "geo": null, "id": 148829505077780480, "id_str": "148829505077780481", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668797133/LLCM-1691_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668797133/LLCM-1691_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@hsoandso Have to try Pigeon Palooza (the next angry birds)- it's avail in Android Mktplce - will be in ITunes soon.", "to_user": "hsoandso", "to_user_id": 270859049, "to_user_id_str": "270859049", "to_user_name": "Henry S", "in_reply_to_status_id": 148815004437725200, "in_reply_to_status_id_str": "148815004437725185"}, +{"created_at": "Mon, 19 Dec 2011 18:18:11 +0000", "from_user": "xxxzoe96", "from_user_id": 270036582, "from_user_id_str": "270036582", "from_user_name": "zoe schnyder", "geo": null, "id": 148829493673467900, "id_str": "148829493673467905", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697123475/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697123475/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Ik snap echt niet waarom iedereen angry birds zo geweldig vindt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:10 +0000", "from_user": "acfilm", "from_user_id": 24086829, "from_user_id_str": "24086829", "from_user_name": "Amy Sandberg", "geo": null, "id": 148829492410990600, "id_str": "148829492410990593", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/385627471/n1296045062_76222_9329_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/385627471/n1296045062_76222_9329_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "I guess the wild creatures are hungry.. Refilled all the feaders this am.. Skye chased away the turkeys, 5 squirrels .. 7 birds now snacking", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:09 +0000", "from_user": "thanx4dpleasure", "from_user_id": 420896257, "from_user_id_str": "420896257", "from_user_name": "shakira", "geo": null, "id": 148829487147139070, "id_str": "148829487147139073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1656733201/kirajms_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656733201/kirajms_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "all dat BS is for the birds..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:09 +0000", "from_user": "Mic_Ah_Jwalk", "from_user_id": 325694950, "from_user_id_str": "325694950", "from_user_name": "Micah Walker", "geo": null, "id": 148829485708480500, "id_str": "148829485708480512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1654877352/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654877352/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "When u finally beat that level on Angry Birds>>>>>>> #Winning", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:05 +0000", "from_user": "Louracaux", "from_user_id": 426260722, "from_user_id_str": "426260722", "from_user_name": "Loura Emmert", "geo": null, "id": 148829470382493700, "id_str": "148829470382493696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668792937/LLCM-4006_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668792937/LLCM-4006_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ilpanda89 Ya should play Pigeon Palooza (the next angry birds)- it's for sale in Android Mktplce - will be in ITunes in a few days.", "to_user": "ilpanda89", "to_user_id": 398105142, "to_user_id_str": "398105142", "to_user_name": "panda89", "in_reply_to_status_id": 148810100734300160, "in_reply_to_status_id_str": "148810100734300160"}, +{"created_at": "Mon, 19 Dec 2011 18:18:05 +0000", "from_user": "CheckMy_DOPEE", "from_user_id": 401396670, "from_user_id_str": "401396670", "from_user_name": "Ambitious Beezay \\u2714", "geo": null, "id": 148829470030168060, "id_str": "148829470030168064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702578008/qrChl2v0_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702578008/qrChl2v0_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "All the bullshit is for the birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:03 +0000", "from_user": "JasonSKovacs", "from_user_id": 59654868, "from_user_id_str": "59654868", "from_user_name": "Jason Kovacs", "geo": null, "id": 148829460580405250, "id_str": "148829460580405249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1396649999/BM1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1396649999/BM1_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "Just had birds attack the chips and salsa on my plate #worstnightmaresrealized #again #leggomyfoodbitchesss", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:02 +0000", "from_user": "datboiheller", "from_user_id": 412698124, "from_user_id_str": "412698124", "from_user_name": "jake heller", "geo": null, "id": 148829458864939000, "id_str": "148829458864939009", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695719498/IMG02335-20111130-1803_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695719498/IMG02335-20111130-1803_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Angry birds. (Y)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:57 +0000", "from_user": "Justbirds1", "from_user_id": 291680688, "from_user_id_str": "291680688", "from_user_name": "Bev", "geo": null, "id": 148829435255210000, "id_str": "148829435255209985", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1335631073/5261855304_0f68f9ba91_m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335631073/5261855304_0f68f9ba91_m_normal.jpg", "source": "<a href="http://www.twaitter.com" rel="nofollow">Twaitter</a>", "text": "King Vulture - http://t.co/z8UWcWW4 #birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:56 +0000", "from_user": "jackmcmahon94", "from_user_id": 278649253, "from_user_id_str": "278649253", "from_user_name": "Jack McMahon", "geo": null, "id": 148829432575045630, "id_str": "148829432575045633", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1632271371/385841_10150381637707171_724142170_8269296_1972120528_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632271371/385841_10150381637707171_724142170_8269296_1972120528_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MikeRutterford in bed with 2 thai birds was like winning the lottery 6 balls matching , im here all week", "to_user": "MikeRutterford", "to_user_id": 127318531, "to_user_id_str": "127318531", "to_user_name": "mikeruttz"}, +{"created_at": "Mon, 19 Dec 2011 18:17:56 +0000", "from_user": "AleksaTartygina", "from_user_id": 397388276, "from_user_id_str": "397388276", "from_user_name": "Aleksandra Tartygina", "geo": null, "id": 148829431773937660, "id_str": "148829431773937665", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1604609211/IMG_7082_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1604609211/IMG_7082_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/NOlqRMjD \\u043D\\u0443 \\u044F \\u0434\\u0443\\u043C\\u0430\\u044E \\u0443 \\u043D\\u0438\\u0445 \\u0432\\u0441\\u0435 \\u043C\\u043E\\u0436\\u0435\\u0442 \\u043F\\u043E\\u043B\\u0443\\u0447\\u0438\\u0442\\u0441\\u044F :) \\u043A\\u0442\\u043E \\u043D\\u0435 \\u0438\\u0433\\u0440\\u0430\\u043B \\u0432 \\u044D\\u0442\\u0443 \\u0438\\u0433\\u0440\\u0443 \\u0438 \\u0443 \\u043A\\u043E\\u0433\\u043E \\u0435\\u0435 \\u043D\\u0435\\u0442 \\u043D\\u0430 \\u0442\\u0435\\u043B\\u0435\\u0444\\u043E\\u043D\\u0435? \\u043F\\u043E\\u043A\\u0430\\u0436\\u0438\\u0442\\u0435 \\u043C\\u043D\\u0435 \\u044D\\u0442\\u0438\\u0445 \\u043B\\u044E\\u0434\\u0435\\u0439)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:52 +0000", "from_user": "thebeadedpillow", "from_user_id": 36656159, "from_user_id_str": "36656159", "from_user_name": "Karen", "geo": null, "id": 148829416804462600, "id_str": "148829416804462593", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/550471777/Karens_birthday_2008_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/550471777/Karens_birthday_2008_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Awesome! @melodylealamb Remember the little birds this winter! Backyard Birds-The Artist's View http://t.co/CdZJv7Aa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:51 +0000", "from_user": "melihbayramdede", "from_user_id": 12280682, "from_user_id_str": "12280682", "from_user_name": "Melih Bayram Dede", "geo": null, "id": 148829411150536700, "id_str": "148829411150536704", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694403972/pfr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694403972/pfr_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Angry Birds oyuncaklar\\u0131 http://t.co/P7TbJZZS\\u2019da http://t.co/Hk89zzlz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:47 +0000", "from_user": "RawPureTalent", "from_user_id": 259966889, "from_user_id_str": "259966889", "from_user_name": "Raw ", "geo": null, "id": 148829394260070400, "id_str": "148829394260070400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701660541/H517P8Yy_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701660541/H517P8Yy_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Shoutout to da birds who \\uE231\\uE420 for \\uE13E", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:47 +0000", "from_user": "karinafacanha", "from_user_id": 20242783, "from_user_id_str": "20242783", "from_user_name": "Karina Fa\\u00E7anha", "geo": null, "id": 148829394058756100, "id_str": "148829394058756096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1586716210/karina_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586716210/karina_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Photo: letrollcollection: http://t.co/WnbS5k2Y", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:45 +0000", "from_user": "Kaligigi", "from_user_id": 426265713, "from_user_id_str": "426265713", "from_user_name": "Kali Talsma", "geo": null, "id": 148829385590448130, "id_str": "148829385590448128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668805839/LLCM-2689_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668805839/LLCM-2689_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Dvadillo91 Go get Pigeon Palooza (the next angry birds)- it's launched in Android Mktplce - should be in ITunes soon.", "to_user": "Dvadillo91", "to_user_id": 379230763, "to_user_id_str": "379230763", "to_user_name": "Daniel Vadillo", "in_reply_to_status_id": 148805937975668740, "in_reply_to_status_id_str": "148805937975668736"}, +{"created_at": "Mon, 19 Dec 2011 18:17:43 +0000", "from_user": "realYoungBeater", "from_user_id": 390656729, "from_user_id_str": "390656729", "from_user_name": "Young Beater", "geo": null, "id": 148829376006455300, "id_str": "148829376006455298", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1661247582/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661247582/image_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "RT @PrettyLadyTipp: Talking shit just to be sorry about it later < for the birds !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:37 +0000", "from_user": "sirogers", "from_user_id": 19164752, "from_user_id_str": "19164752", "from_user_name": "Sheenah Rogers", "geo": null, "id": 148829353239785470, "id_str": "148829353239785472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1623160190/SR_Good_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1623160190/SR_Good_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @welikewelove: I'm over at @CoreShopping (#YYC) this morning sharing a few last-minute gift ideas for those love-birds in your life: http://t.co/lovRpAja", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:36 +0000", "from_user": "EyeRuleTheFly", "from_user_id": 47837523, "from_user_id_str": "47837523", "from_user_name": " Sweet Baby Sam ", "geo": +{"coordinates": [40.7056,-73.8069], "type": "Point"}, "id": 148829348164681730, "id_str": "148829348164681728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1530606704/IMG00482-20110828-1540_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1530606704/IMG00482-20110828-1540_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Birds keep flying by my window man. Annoying. \\uD83D\\uDC26", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:34 +0000", "from_user": "Swizz2Funny", "from_user_id": 39164480, "from_user_id_str": "39164480", "from_user_name": "Blake Swain", "geo": null, "id": 148829340149358600, "id_str": "148829340149358593", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1641754184/Photo_on_2011-11-16_at_01.52_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641754184/Photo_on_2011-11-16_at_01.52_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "Never choose to b an #OPTION.. That shit is for the birds....#Period", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:33 +0000", "from_user": "Carl1toss", "from_user_id": 44079139, "from_user_id_str": "44079139", "from_user_name": "Carlitos\\u00A9", "geo": null, "id": 148829335107809280, "id_str": "148829335107809280", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698241209/331609115_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698241209/331609115_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Angry Birds en luces navide\\u00F1as http://t.co/xQwIwGZm #Nokia", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:30 +0000", "from_user": "AshleyNicholex7", "from_user_id": 247097576, "from_user_id_str": "247097576", "from_user_name": "Ashley Phillips", "geo": null, "id": 148829322919149570, "id_str": "148829322919149569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702551415/Photo_20Pro_1__normal.bmp", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702551415/Photo_20Pro_1__normal.bmp", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Playing angry birds on my nook color and relaxing,Can't wait til Sunday!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:29 +0000", "from_user": "jtketch88", "from_user_id": 260512188, "from_user_id_str": "260512188", "from_user_name": "JT Ketch", "geo": null, "id": 148829318791958530, "id_str": "148829318791958528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1561690701/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1561690701/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Lyd_Danielle I know!! I've also hit 3 birds and a dog. But the dog lived lol", "to_user": "Lyd_Danielle", "to_user_id": 345162527, "to_user_id_str": "345162527", "to_user_name": "Lydia Rea", "in_reply_to_status_id": 148828988054323200, "in_reply_to_status_id_str": "148828988054323202"}, +{"created_at": "Mon, 19 Dec 2011 18:17:28 +0000", "from_user": "BenjiDaCableGuy", "from_user_id": 30903382, "from_user_id_str": "30903382", "from_user_name": "David Ruffin", "geo": null, "id": 148829314710904830, "id_str": "148829314710904833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701230198/DSCN0603_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701230198/DSCN0603_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "iHad a redbone but she be trippin tho. all that bullshit for the birds. she was pigeon toed", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:28 +0000", "from_user": "aylinaksoy13", "from_user_id": 147533177, "from_user_id_str": "147533177", "from_user_name": "Aylin", "geo": null, "id": 148829313519714300, "id_str": "148829313519714304", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696997485/293914_2095388260561_1120963803_31749557_700613811_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696997485/293914_2095388260561_1120963803_31749557_700613811_n_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Hahaha \\u00E7ok iyi ya babam\\u0131 da art\\u0131k Angry Birds ba\\u011F\\u0131ml\\u0131s\\u0131 yapt\\u0131m bana kafa tutuyo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:27 +0000", "from_user": "QianaMonei", "from_user_id": 170508399, "from_user_id_str": "170508399", "from_user_name": "Qiana Monei ", "geo": null, "id": 148829312676667400, "id_str": "148829312676667392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1631357555/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631357555/image_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "I love how I'm playing line runner & my mother goes is that angry birds ... um do you see any fucking birds ?!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:25 +0000", "from_user": "MsCJFierce", "from_user_id": 270294324, "from_user_id_str": "270294324", "from_user_name": "C J", "geo": null, "id": 148829300802584580, "id_str": "148829300802584576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1621997377/DSCF0397_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621997377/DSCF0397_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@thatguylyon Ok you need to get sky sports, sky news/bbc news, waterslide, angry birds, connect 4, google, flixster, emoji free...", "to_user": "thatguylyon", "to_user_id": 266713835, "to_user_id_str": "266713835", "to_user_name": "Modern Daze\\u265B", "in_reply_to_status_id": 148826560449884160, "in_reply_to_status_id_str": "148826560449884161"}, +{"created_at": "Mon, 19 Dec 2011 18:17:24 +0000", "from_user": "Rosamondbnmq", "from_user_id": 426260430, "from_user_id_str": "426260430", "from_user_name": "Rosamond Wengel", "geo": null, "id": 148829296436330500, "id_str": "148829296436330499", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668792505/LLCM-4623_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668792505/LLCM-4623_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@jonathanmozes Dude, play Pigeon Palooza (the next angry birds)- it is for sale in Android Mktplce - should be in ITunes soon.", "to_user": "jonathanmozes", "to_user_id": 63625946, "to_user_id_str": "63625946", "to_user_name": "J. Mozes Mandagi", "in_reply_to_status_id": 148828416903364600, "in_reply_to_status_id_str": "148828416903364608"}, +{"created_at": "Mon, 19 Dec 2011 18:17:18 +0000", "from_user": "_JonnyJETSon", "from_user_id": 238347513, "from_user_id_str": "238347513", "from_user_name": "Jonathan", "geo": null, "id": 148829271257911300, "id_str": "148829271257911296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1685753347/1323449220-picsay_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685753347/1323449220-picsay_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Been in the cut playing Angry Birds for a half hour already...#timeismoney haha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:13 +0000", "from_user": "yntehekje", "from_user_id": 268935227, "from_user_id_str": "268935227", "from_user_name": "ynte", "geo": null, "id": 148829252421292030, "id_str": "148829252421292032", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1398733787/Picture0007_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1398733787/Picture0007_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Angry birds op broertje ipod #lief", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:11 +0000", "from_user": "dijama", "from_user_id": 47114730, "from_user_id_str": "47114730", "from_user_name": "Adam Majid", "geo": null, "id": 148829242619211780, "id_str": "148829242619211776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1063398536/somethingsneverchange_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1063398536/somethingsneverchange_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "you always go to the parties, to pluck the feathers off all the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:10 +0000", "from_user": "pauldupuy", "from_user_id": 38517116, "from_user_id_str": "38517116", "from_user_name": "Paul Dupuy", "geo": null, "id": 148829238378774530, "id_str": "148829238378774528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1396839819/n560485391_1528350_9922_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1396839819/n560485391_1528350_9922_normal.jpeg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Video: The Interactive Angry Birds Christmas Lights\\u00A0Display http://t.co/MMOxi46v via @techcrunch", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:05 +0000", "from_user": "LatrellMyke", "from_user_id": 341159504, "from_user_id_str": "341159504", "from_user_name": " Latrell", "geo": null, "id": 148829219818967040, "id_str": "148829219818967040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1602184204/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1602184204/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "All that b.s. Is for the birds\\n-Chris Brown\\n\\nChuck chuckin up the DEUCES! LOL haha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:04 +0000", "from_user": "Alidasao", "from_user_id": 426261441, "from_user_id_str": "426261441", "from_user_name": "Alida Hartfield", "geo": null, "id": 148829213200359420, "id_str": "148829213200359424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668795613/LLCM-0715_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668795613/LLCM-0715_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Take_Flight2 Dude, play Pigeon Palooza (the next angry birds)- it is for sale in Android Mktplce - should be in ITunes in a few days.", "to_user": "Take_Flight2", "to_user_id": 55267644, "to_user_id_str": "55267644", "to_user_name": "Dontra Matthews", "in_reply_to_status_id": 148812913862393860, "in_reply_to_status_id_str": "148812913862393856"}, +{"created_at": "Mon, 19 Dec 2011 18:17:01 +0000", "from_user": "AllEyesOnMarley", "from_user_id": 241277026, "from_user_id_str": "241277026", "from_user_name": "Who Am I?", "geo": null, "id": 148829202244833280, "id_str": "148829202244833280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1617676865/tickets._normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1617676865/tickets._normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "that jealous shit is for the birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:00 +0000", "from_user": "kristuh13", "from_user_id": 59265533, "from_user_id_str": "59265533", "from_user_name": "krista mcguire", "geo": null, "id": 148829199577260030, "id_str": "148829199577260032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1665393433/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665393433/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @DannyThompson23: How appropriate that three little birds came on right before my exam #dontworry", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:58 +0000", "from_user": "lesjenkins", "from_user_id": 20599794, "from_user_id_str": "20599794", "from_user_name": "Les Jenkins", "geo": null, "id": 148829188047110140, "id_str": "148829188047110144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696353019/SantaLes_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696353019/SantaLes_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube video http://t.co/zF3zz2HF Angry Birds Christmas Light Game", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:54 +0000", "from_user": "guesswhatsPINK", "from_user_id": 243877578, "from_user_id_str": "243877578", "from_user_name": "Error. .", "geo": null, "id": 148829171550924800, "id_str": "148829171550924800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702496849/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702496849/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "somebody called friends these birds flocking -_-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:53 +0000", "from_user": "0_oTeamBRiTTanY", "from_user_id": 55417988, "from_user_id_str": "55417988", "from_user_name": "Brittany Kimbrough", "geo": null, "id": 148829167495028740, "id_str": "148829167495028738", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1656556564/Snapshot_20111124_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656556564/Snapshot_20111124_1_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Why it aint that cold outside the shit cray and scary dont want no long winter that shit fa da birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:50 +0000", "from_user": "dmanero", "from_user_id": 15913331, "from_user_id_str": "15913331", "from_user_name": "dmanero", "geo": null, "id": 148829154794668030, "id_str": "148829154794668032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1652172923/w10_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652172923/w10_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Great twitter has gone to the birds now that saudi's own a large share. can nothing stay in american hands & out of thiers.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:16:54 +0000", "from_user": "guesswhatsPINK", "from_user_id": 243877578, "from_user_id_str": "243877578", "from_user_name": "Error. .", "geo": null, "id": 148829171550924800, "id_str": "148829171550924800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702496849/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702496849/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "somebody called friends these birds flocking -_-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:53 +0000", "from_user": "0_oTeamBRiTTanY", "from_user_id": 55417988, "from_user_id_str": "55417988", "from_user_name": "Brittany Kimbrough", "geo": null, "id": 148829167495028740, "id_str": "148829167495028738", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1656556564/Snapshot_20111124_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656556564/Snapshot_20111124_1_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Why it aint that cold outside the shit cray and scary dont want no long winter that shit fa da birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:50 +0000", "from_user": "dmanero", "from_user_id": 15913331, "from_user_id_str": "15913331", "from_user_name": "dmanero", "geo": null, "id": 148829154794668030, "id_str": "148829154794668032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1652172923/w10_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652172923/w10_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Great twitter has gone to the birds now that saudi's own a large share. can nothing stay in american hands & out of thiers.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:40 +0000", "from_user": "howtogeeknews", "from_user_id": 117004644, "from_user_id_str": "117004644", "from_user_name": "How-To Geek News", "geo": null, "id": 148829114059587600, "id_str": "148829114059587584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/715229294/geek-204x204_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/715229294/geek-204x204_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "DIY Angry Birds Christmas Display is an Interactive Game [Video] http://t.co/y9nuaJmM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:37 +0000", "from_user": "Gilipollas_", "from_user_id": 299108893, "from_user_id_str": "299108893", "from_user_name": "Pepe", "geo": null, "id": 148829100180639740, "id_str": "148829100180639744", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662164847/corte-de-mangas_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662164847/corte-de-mangas_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Bien, ya me ha llegado mi BlackBerry, !!\\u00BF\\u00BFpero ahora como co\\u00F1o me paso las puntuaciones del Angry Birds del viejo a la BlackBerry??!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:37 +0000", "from_user": "DayneJoe", "from_user_id": 70790016, "from_user_id_str": "70790016", "from_user_name": "D.B. DeGaud", "geo": null, "id": 148829099962548220, "id_str": "148829099962548225", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690250719/imagejpeg_2_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690250719/imagejpeg_2_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Man...this shits for the birds...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:36 +0000", "from_user": "lil_T83", "from_user_id": 94344832, "from_user_id_str": "94344832", "from_user_name": "Terry Welch", "geo": null, "id": 148829095403331600, "id_str": "148829095403331584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1632919792/22741_283290809260_501059260_3496117_7903577_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632919792/22741_283290809260_501059260_3496117_7903577_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I just taught a 4 year old how to play Angry Birds. There goes his future.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:33 +0000", "from_user": "MeganHanlin", "from_user_id": 105709776, "from_user_id_str": "105709776", "from_user_name": "Megan Hanlin", "geo": null, "id": 148829085026619400, "id_str": "148829085026619392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1473305672/akcuua_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1473305672/akcuua_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @FactsOnGirlz: If couples who are in love are called \"love birds\", then couples who always argue should be called \"angry birds\"?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:30 +0000", "from_user": "On_The_Sly", "from_user_id": 104892020, "from_user_id_str": "104892020", "from_user_name": "Kevin S. Sylvester", "geo": null, "id": 148829073840406530, "id_str": "148829073840406529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1178080913/40876_152698824772330_100000966416811_237674_1112406_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1178080913/40876_152698824772330_100000966416811_237674_1112406_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "When Life gives ME lemons, I make raspberry iced tea, and then I sit back and enjoy it while all you birds wonder how the fuck I did it.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:30 +0000", "from_user": "psazon", "from_user_id": 35016853, "from_user_id_str": "35016853", "from_user_name": "Paulo Guagliano", "geo": null, "id": 148829071885864960, "id_str": "148829071885864960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1666423033/313174_2407155303103_1377804631_2762462_1796879508_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666423033/313174_2407155303103_1377804631_2762462_1796879508_n_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube video http://t.co/Moxt3VdL Angry Birds Wreck The Halls animation", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:29 +0000", "from_user": "Keidis", "from_user_id": 35294344, "from_user_id_str": "35294344", "from_user_name": "misirlikedi", "geo": null, "id": 148829068429762560, "id_str": "148829068429762560", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1608756922/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608756922/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MuratAykul: D\\u00FCn gece, hi\\u00E7 tan\\u0131mad\\u0131\\u011F\\u0131m bir tavu\\u011Fu, s\\u0131rf Angry Birds'e benziyor diye, usulca sokulup havaya f\\u0131rlatt\\u0131m.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:27 +0000", "from_user": "kikkuin", "from_user_id": 206013148, "from_user_id_str": "206013148", "from_user_name": "krishnakumar", "geo": null, "id": 148829057675567100, "id_str": "148829057675567104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1230592820/01_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1230592820/01_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "DIY Angry Birds Christmas Display is an Interactive Game [Video]: From the same guy that brought you the playabl... http://t.co/jpxLNjEN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:26 +0000", "from_user": "sharespot", "from_user_id": 395858776, "from_user_id_str": "395858776", "from_user_name": "Share Spot", "geo": null, "id": 148829053242187780, "id_str": "148829053242187776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1606027618/pi_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606027618/pi_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "DIY Angry Birds Christmas Display is an Interactive Game [Video]: From the same guy that brought you the playabl... http://t.co/OgT56eER", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:22 +0000", "from_user": "TheAaronHogan", "from_user_id": 130909314, "from_user_id_str": "130909314", "from_user_name": "Aaron Hogan", "geo": null, "id": 148829038583103500, "id_str": "148829038583103488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1410566441/Photo_on_2011-06-07_at_19.15_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1410566441/Photo_on_2011-06-07_at_19.15_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "No Angry Birds were harmed in the making of this hat, but the pigs suffered more than you can imagine. http://t.co/CWZLMwsr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:21 +0000", "from_user": "myeasymoney", "from_user_id": 103518221, "from_user_id_str": "103518221", "from_user_name": "invest", "geo": null, "id": 148829032283254800, "id_str": "148829032283254784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "DIY Angry Birds Christmas Display is an Interactive Game [Video]: From the same guy that brought you the playable Guitar Hero Christm...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:21 +0000", "from_user": "yuvrajsinghcric", "from_user_id": 105443733, "from_user_id_str": "105443733", "from_user_name": "yuvraj", "geo": null, "id": 148829032094498800, "id_str": "148829032094498816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "DIY Angry Birds Christmas Display is an Interactive Game [Video]: From the same guy that brought you the playable Guitar Hero Christm...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:20 +0000", "from_user": "Msdhonicricket", "from_user_id": 105441907, "from_user_id_str": "105441907", "from_user_name": "Dhoni", "geo": null, "id": 148829031935115260, "id_str": "148829031935115265", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "DIY Angry Birds Christmas Display is an Interactive Game [Video]: From the same guy that brought you the playable Guitar Hero Christm...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:14 +0000", "from_user": "Mic_Ah_Jwalk", "from_user_id": 325694950, "from_user_id_str": "325694950", "from_user_name": "Micah Walker", "geo": null, "id": 148829004626014200, "id_str": "148829004626014210", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1654877352/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654877352/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "When u cant beat that level on Angry Birds <<<<<<<", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:09 +0000", "from_user": "DevonianGuy", "from_user_id": 81925699, "from_user_id_str": "81925699", "from_user_name": "John Temple", "geo": null, "id": 148828983784513540, "id_str": "148828983784513536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @BBCNature: Some of the world's rarest birds have been moved to a special aviary @WWTslimbridge watch a film about their journey: http://t.co/maWMaPp1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:06 +0000", "from_user": "ClaytonWaldie", "from_user_id": 424909675, "from_user_id_str": "424909675", "from_user_name": "Clayton Waldie", "geo": null, "id": 148828972694765570, "id_str": "148828972694765569", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1665732204/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665732204/image_normal.jpg", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "I'm at Wild Birds Unlimited (3849 S Campbell Ave, Springfield) http://t.co/ZxAbRY8E", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:59 +0000", "from_user": "MeeeeeeeeZy", "from_user_id": 24743775, "from_user_id_str": "24743775", "from_user_name": "$hawlot Mike ll", "geo": null, "id": 148828943452082180, "id_str": "148828943452082176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702486932/mduck-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702486932/mduck-1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@Mr_124 \\u201C@MeeeeeeeeZy: Angry Birds Kids Hoody I de$igned/Painted! http://t.co/LZbs8IEJ\\u201D\\u201D dope shit\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:51 +0000", "from_user": "Tea_El_Sea", "from_user_id": 25772836, "from_user_id_str": "25772836", "from_user_name": "Tanner Christopher", "geo": null, "id": 148828908186382340, "id_str": "148828908186382337", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1282178294/3YQQN9iG_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1282178294/3YQQN9iG_normal", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Some birds aren't meant to be caged, their feathers are just to bright. #shawshank", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:14 +0000", "from_user": "tjbraude", "from_user_id": 337761974, "from_user_id_str": "337761974", "from_user_name": "tjb", "geo": null, "id": 148828752896475140, "id_str": "148828752896475136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://www.socialflow.com" rel="nofollow">SocialFlow</a>", "text": "RT @TheEconomist: A new iPhone app makes ordering up a private plane anywhere in the world is as easy as playing a round of Angry Birds http://t.co/3zO2g1ka", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:06 +0000", "from_user": "Eros_Styx", "from_user_id": 211538583, "from_user_id_str": "211538583", "from_user_name": "Rali", "geo": null, "id": 148828721615339520, "id_str": "148828721615339521", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1635076703/water_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635076703/water_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", "text": "Hunting for a house is for the birds... #moving", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:05 +0000", "from_user": "cmmack526", "from_user_id": 32215646, "from_user_id_str": "32215646", "from_user_name": "Christie Mack", "geo": null, "id": 148828714191429630, "id_str": "148828714191429632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1662960354/Capture_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662960354/Capture_normal.PNG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Lissa_48 and kissing birds and releasing them. Omg I just remembered something about the game that I wanted to tell you about!", "to_user": "Lissa_48", "to_user_id": 50684553, "to_user_id_str": "50684553", "to_user_name": "Melissa Culbreth", "in_reply_to_status_id": 148828358724161540, "in_reply_to_status_id_str": "148828358724161536"}, +{"created_at": "Mon, 19 Dec 2011 18:14:55 +0000", "from_user": "Danielle_TBO", "from_user_id": 22836368, "from_user_id_str": "22836368", "from_user_name": "Danielle Massam", "geo": null, "id": 148828672957235200, "id_str": "148828672957235200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1568337259/Photo_on_2011-09-29_at_12_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1568337259/Photo_on_2011-09-29_at_12_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Why are birds so fucking hard to draw.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:52 +0000", "from_user": "Mak_pk", "from_user_id": 90333649, "from_user_id_str": "90333649", "from_user_name": "Akram Khan", "geo": null, "id": 148828662647635970, "id_str": "148828662647635968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1665453063/mak_-_pp_picture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665453063/mak_-_pp_picture_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "LOL RT @faisalqureshi: I do that every weeknight at 11 \\u201C@ZaynubMahmood: u need to get off Twitter and play angry birds\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:52 +0000", "from_user": "lukariosa", "from_user_id": 269632529, "from_user_id_str": "269632529", "from_user_name": "Karime Osorio ", "geo": null, "id": 148828661905244160, "id_str": "148828661905244162", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1651488569/330203063_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651488569/330203063_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "#YoQuieroUnPapaNoelSecreto pero para que me pague todo el sueldo de un a\\u00F1o y as\\u00ED yo me dedico a jugar Angry Birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:44 +0000", "from_user": "Squadcars42", "from_user_id": 20828438, "from_user_id_str": "20828438", "from_user_name": "Tommy Sokolis", "geo": null, "id": 148828628057210880, "id_str": "148828628057210881", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1646188379/new054_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646188379/new054_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@edanco55 Thanks pal. GO BIRDS!!", "to_user": "edanco55", "to_user_id": 53578177, "to_user_id_str": "53578177", "to_user_name": "Edward Colon", "in_reply_to_status_id": 148828234434347000, "in_reply_to_status_id_str": "148828234434347008"}, +{"created_at": "Mon, 19 Dec 2011 18:14:36 +0000", "from_user": "johny_epleseed", "from_user_id": 44079295, "from_user_id_str": "44079295", "from_user_name": "Michael Eplee", "geo": null, "id": 148828593735204860, "id_str": "148828593735204864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1635404062/208428_10150550005200696_505070695_18132465_7768482_n_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635404062/208428_10150550005200696_505070695_18132465_7768482_n_normal.jpeg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @someecards: Angry Birds now available on iPhone, Droid, and completely insane man's Christmas lights display. http://t.co/mrfMU8Hl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:34 +0000", "from_user": "JokezForDayz", "from_user_id": 421479081, "from_user_id_str": "421479081", "from_user_name": "Lucky Luke", "geo": null, "id": 148828583832453120, "id_str": "148828583832453120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1657997692/imagesCAK96OHU_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657997692/imagesCAK96OHU_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Any time a bird craps on my car, I eat an entire plate of scrambled eggs on my porch, just to show the birds what I'm capable of....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:32 +0000", "from_user": "Riley0123658958", "from_user_id": 440861389, "from_user_id_str": "440861389", "from_user_name": "Riley", "geo": null, "id": 148828577452924930, "id_str": "148828577452924928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702141572/beautiful-girls-picture__9__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702141572/beautiful-girls-picture__9__normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Southern African Birds: A Photographic Guide: The well-known guide to Southern African birds has been updated to... http://t.co/sW6Gdxnd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:31 +0000", "from_user": "DarkyZzzzz", "from_user_id": 421715427, "from_user_id_str": "421715427", "from_user_name": "\\u0421\\u0435\\u0440\\u0433\\u0435\\u0439 \\u0414\\u0440\\u0443\\u0433\\u043E\\u0432", "geo": null, "id": 148828574198145020, "id_str": "148828574198145024", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691160023/metrofoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691160023/metrofoto_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "7 \\u0447\\u0430\\u0441\\u0442\\u044C \\u043A\\u043E\\u043C\\u0438\\u043A\\u0441\\u043E\\u0432 \\u0441 \\u043F\\u0442\\u0438\\u0447\\u043A\\u0430\\u043C\\u0438!^^ http://t.co/MkObcUED \\u0441 \\u043F\\u043E\\u043C\\u043E\\u0449\\u044C\\u044E @AppleInsider_ru", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:31 +0000", "from_user": "sneaksvp24", "from_user_id": 91682008, "from_user_id_str": "91682008", "from_user_name": "Hilary Van Praag", "geo": null, "id": 148828571798994940, "id_str": "148828571798994945", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1655060719/IMG-20111105-00020_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655060719/IMG-20111105-00020_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Love birds http://t.co/MQAmcAVE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:27 +0000", "from_user": "margaretpirendo", "from_user_id": 305769241, "from_user_id_str": "305769241", "from_user_name": "margaret rendon", "geo": null, "id": 148828556028420100, "id_str": "148828556028420097", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1663933072/Storage_Bench_Designs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663933072/Storage_Bench_Designs_normal.jpg", "source": "<a href="http://storagebenchdesigns.com" rel="nofollow">Storage Bench Designs2</a>", "text": "> Three Birds Casual http://t.co/7lCOc89h", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:27 +0000", "from_user": "Listentohersing", "from_user_id": 63387416, "from_user_id_str": "63387416", "from_user_name": "Amanda Marquez", "geo": null, "id": 148828554354901000, "id_str": "148828554354900992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697848868/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697848868/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @DJFRANK_WHITE: LIFE IS LIKE AN IPHONE , ALL THESE ANGRY BIRDS .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:26 +0000", "from_user": "Shizueskep", "from_user_id": 426262224, "from_user_id_str": "426262224", "from_user_name": "Shizue Lautz", "geo": null, "id": 148828551385333760, "id_str": "148828551385333760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668797298/LLCM-4396_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668797298/LLCM-4396_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MunMun96 Hey, get Pigeon Palooza (the next angry birds)- it's for sale in Android Mktplce - should be in App Store next week.", "to_user": "MunMun96", "to_user_id": 326989258, "to_user_id_str": "326989258", "to_user_name": "Manal", "in_reply_to_status_id": 148792438897655800, "in_reply_to_status_id_str": "148792438897655808"}, +{"created_at": "Mon, 19 Dec 2011 18:14:26 +0000", "from_user": "Bnarsty", "from_user_id": 271796557, "from_user_id_str": "271796557", "from_user_name": "Becky Gonzalez", "geo": null, "id": 148828551070744580, "id_str": "148828551070744576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1306816794/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1306816794/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "That shit's for the birds... #thanksbutnothanks", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:20 +0000", "from_user": "kennalisbeth", "from_user_id": 399874142, "from_user_id_str": "399874142", "from_user_name": "kennalisbeth", "geo": null, "id": 148828527544897540, "id_str": "148828527544897536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1650794081/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650794081/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Lawl gina doesn't know what angry birds is", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:19 +0000", "from_user": "empresapedia", "from_user_id": 394544302, "from_user_id_str": "394544302", "from_user_name": "empresapedia", "geo": null, "id": 148828524432723970, "id_str": "148828524432723968", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668206090/logo-empresapedia-com-002_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668206090/logo-empresapedia-com-002_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "El creador de Angry Birds considera salir a Bolsa en Hong Kong http://t.co/o4sjNKfE #empresa #economia", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:13 +0000", "from_user": "sesharina", "from_user_id": 46724527, "from_user_id_str": "46724527", "from_user_name": "sesarina puspita", "geo": null, "id": 148828497056497660, "id_str": "148828497056497664", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696184644/4wl39xhn_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696184644/4wl39xhn_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": ":''''''') @arirusyadi: Ikutaaan RT @sesharina: Empuuukkk...:p @dinamazing: Hug sesha so tight \"@sesharina: we're no longer love birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:13 +0000", "from_user": "countachlpsx", "from_user_id": 108214636, "from_user_id_str": "108214636", "from_user_name": "BC", "geo": null, "id": 148828495487844350, "id_str": "148828495487844352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1405288590/5649_942117481930_7932454_54271678_3136470_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1405288590/5649_942117481930_7932454_54271678_3136470_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @someecards: Angry Birds now available on iPhone, Droid, and completely insane man's Christmas lights display. http://t.co/mrfMU8Hl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:05 +0000", "from_user": "dunhill_azrag", "from_user_id": 322763428, "from_user_id_str": "322763428", "from_user_name": "Flai7an L7babey", "geo": null, "id": 148828465498554370, "id_str": "148828465498554368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689369490/IMG_1906blikkkk_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689369490/IMG_1906blikkkk_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Thanks for twitter now birds always remind me of something :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:05 +0000", "from_user": "MiaMphotography", "from_user_id": 207043580, "from_user_id_str": "207043580", "from_user_name": "Mia McPherson", "geo": null, "id": 148828463611125760, "id_str": "148828463611125761", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1539067214/mia-profile-9517_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1539067214/mia-profile-9517_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Thank you for the RT @Birding_Is_Fun: RT - Ring-billed Gulls | on the wing photography - http://t.co/V6gK70HI #birds #birding", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:01 +0000", "from_user": "WoahhAlysha_B", "from_user_id": 370774270, "from_user_id_str": "370774270", "from_user_name": "\\u261E Alysha Brewer \\u261C ", "geo": null, "id": 148828447039422460, "id_str": "148828447039422464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1661363576/movies_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661363576/movies_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @FactsOnGirlz: If couples who are in love are called \"love birds\", then couples who always argue should be called \"angry birds\"?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:01 +0000", "from_user": "teesipes", "from_user_id": 53145139, "from_user_id_str": "53145139", "from_user_name": "taylor sipes.", "geo": null, "id": 148828444900339700, "id_str": "148828444900339713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670570729/Photo_on_2011-12-02_at_20.31_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670570729/Photo_on_2011-12-02_at_20.31_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @FactsOnGirlz: If couples who are in love are called \"love birds\", then couples who always argue should be called \"angry birds\"?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:54 +0000", "from_user": "jonathanmozes", "from_user_id": 63625946, "from_user_id_str": "63625946", "from_user_name": "J. Mozes Mandagi", "geo": null, "id": 148828416903364600, "id_str": "148828416903364608", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1204303933/236336292_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1204303933/236336292_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@farifarifari bikin suara jadi kyk angry birds sih mitosnya, tapi trbukti ampe skrg.", "to_user": "farifarifari", "to_user_id": 90343779, "to_user_id_str": "90343779", "to_user_name": "faridah zahra", "in_reply_to_status_id": 148825921695133700, "in_reply_to_status_id_str": "148825921695133697"}, +{"created_at": "Mon, 19 Dec 2011 18:13:48 +0000", "from_user": "Particiamso", "from_user_id": 426263721, "from_user_id_str": "426263721", "from_user_name": "Particia Brun", "geo": null, "id": 148828394291867650, "id_str": "148828394291867648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668801396/LLCM-4961_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668801396/LLCM-4961_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@veezieYDG Ya gotta go get Pigeon Palooza (the next angry birds)- it's launched in Android Mktplce - will be in App Store in a few days.", "to_user": "veezieYDG", "to_user_id": 101290964, "to_user_id_str": "101290964", "to_user_name": "Der Kommissar.", "in_reply_to_status_id": 148822275964157950, "in_reply_to_status_id_str": "148822275964157954"}, +{"created_at": "Mon, 19 Dec 2011 18:13:42 +0000", "from_user": "iRideCoupe", "from_user_id": 366755314, "from_user_id_str": "366755314", "from_user_name": "No s\\u00E8", "geo": +{"coordinates": [32.7407,-97.6453], "type": "Point"}, "id": 148828366387167230, "id_str": "148828366387167232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1594741086/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1594741086/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I whip tha stang like I whip tha birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:34 +0000", "from_user": "vicki1512", "from_user_id": 343727579, "from_user_id_str": "343727579", "from_user_name": "vicki pelan", "geo": null, "id": 148828332597841920, "id_str": "148828332597841920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1547352411/FacebookHomescreenImage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1547352411/FacebookHomescreenImage_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "If couples who are in love are called \"love birds\", then couples who always argue should be called \"Angry birds.\" :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:29 +0000", "from_user": "TrynaGetItRite", "from_user_id": 262965670, "from_user_id_str": "262965670", "from_user_name": "Ms. Hunt", "geo": null, "id": 148828312528105470, "id_str": "148828312528105472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701600590/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701600590/image_normal.jpg", "source": "<a href="http://www.handmark.com" rel="nofollow">TweetCaster for iOS</a>", "text": "My day has just been shot to hell. Hurry up workout time. Cause this shit is for the birds. #eating cookie #4 #allbad", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:28 +0000", "from_user": "MySweetzUrTooth", "from_user_id": 418130930, "from_user_id_str": "418130930", "from_user_name": "Miss Adams ", "geo": null, "id": 148828309097160700, "id_str": "148828309097160704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699367378/Photo_128_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699367378/Photo_128_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SopranoQueen93 from that there sky above ur head.. the whole \"FAKE THUG\" ish is for the birds... errbody wanna be a thug nd nobody wanna b", "to_user": "SopranoQueen93", "to_user_id": 164550231, "to_user_id_str": "164550231", "to_user_name": "Yasmin Bradshaw", "in_reply_to_status_id": 148827296889974800, "in_reply_to_status_id_str": "148827296889974785"}, +{"created_at": "Mon, 19 Dec 2011 18:13:28 +0000", "from_user": "gabifidelis2011", "from_user_id": 432515765, "from_user_id_str": "432515765", "from_user_name": "gaby fidelis", "geo": null, "id": 148828306702217200, "id_str": "148828306702217217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692614133/132_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692614133/132_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Play the new Angry Birds Advent Challenge! Visit http://t.co/NMP5dgYX!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:27 +0000", "from_user": "Phill022", "from_user_id": 299286193, "from_user_id_str": "299286193", "from_user_name": "Phill 02", "geo": null, "id": 148828304890273800, "id_str": "148828304890273792", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1423661716/Untitled_2_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1423661716/Untitled_2_normal.gif", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "Literate Birds \\thttp://t.co/GZQz8BiS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:21 +0000", "from_user": "MariangelDp", "from_user_id": 53777104, "from_user_id_str": "53777104", "from_user_name": "Mariangel", "geo": null, "id": 148828281087606800, "id_str": "148828281087606786", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1557120512/326967585_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1557120512/326967585_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Bueno, jugare angri birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:17 +0000", "from_user": "TechTSP", "from_user_id": 141156310, "from_user_id_str": "141156310", "from_user_name": "Tanmay Patange", "geo": null, "id": 148828263744151550, "id_str": "148828263744151552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698936536/chrome_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698936536/chrome_normal.jpg", "source": "<a href="http://manageflitter.com" rel="nofollow">ManageFlitter</a>", "text": "Chrome Inside: Play Latest Updated Angry Birds On Google Chrome https://t.co/GzJnysqu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:15 +0000", "from_user": "_morozoff", "from_user_id": 328127388, "from_user_id_str": "328127388", "from_user_name": "lexandr", "geo": null, "id": 148828255057739780, "id_str": "148828255057739776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702573170/angry-birds-picture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702573170/angry-birds-picture_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Angry Birds Online: Angry Birds Real Life Game http://t.co/rO6KgncN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:14 +0000", "from_user": "Nivelxnet", "from_user_id": 417359450, "from_user_id_str": "417359450", "from_user_name": "Nivel-x.net", "geo": null, "id": 148828249735176200, "id_str": "148828249735176192", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1649201018/nivelxlogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649201018/nivelxlogo_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Angry Birds Rio PC GAME 2011 http://t.co/WHgJa85C", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:09 +0000", "from_user": "Fakhre_Alam", "from_user_id": 69783606, "from_user_id_str": "69783606", "from_user_name": "Fakhr-E-Alam", "geo": null, "id": 148828228759470080, "id_str": "148828228759470080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1127349197/Alam_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1127349197/Alam_copy_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @Symbiantweet: #AngryBirds game ripped from #Nokia Asha ROM, Working fine on other #S40 Touch & Type phones - http://t.co/tIewiEQ0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:07 +0000", "from_user": "Cybermyk", "from_user_id": 313485390, "from_user_id_str": "313485390", "from_user_name": "Cybermyk", "geo": null, "id": 148828222262489100, "id_str": "148828222262489088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1399377818/eye_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1399377818/eye_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@Shazia_Donachie only the toughest birds get medals, I'm getting a cowardly one that found comfort in food :)", "to_user": "Shazia_Donachie", "to_user_id": 106779633, "to_user_id_str": "106779633", "to_user_name": "Shazia Donachie", "in_reply_to_status_id": 148821996476706800, "in_reply_to_status_id_str": "148821996476706816"}, +{"created_at": "Mon, 19 Dec 2011 18:13:05 +0000", "from_user": "Jaimeengql", "from_user_id": 426262582, "from_user_id_str": "426262582", "from_user_name": "Jaimee Goldman", "geo": null, "id": 148828213299257340, "id_str": "148828213299257344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668798708/LLCM-3633_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668798708/LLCM-3633_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@szCelebHotSpots Dude, play Pigeon Palooza (the next angry birds)- it is avail in Android Mktplce - will be in App Store in a few days.", "to_user": "szCelebHotSpots", "to_user_id": 15868607, "to_user_id_str": "15868607", "to_user_name": "Susan Zechter", "in_reply_to_status_id": 148808593649569800, "in_reply_to_status_id_str": "148808593649569792"}, +{"created_at": "Mon, 19 Dec 2011 18:13:05 +0000", "from_user": "LISN2DABEAT", "from_user_id": 91703887, "from_user_id_str": "91703887", "from_user_name": "Mario Rowland", "geo": null, "id": 148828211491516400, "id_str": "148828211491516416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1601855778/Me_4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601855778/Me_4_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Bitterness is for the birds, and I ain't no damn bird. :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:04 +0000", "from_user": "rcpphoto", "from_user_id": 47446539, "from_user_id_str": "47446539", "from_user_name": "Ramon Purcell", "geo": null, "id": 148828206491893760, "id_str": "148828206491893760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1426163145/RCP_LAubergeLodge_v3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1426163145/RCP_LAubergeLodge_v3_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Killing 2 birds with 1 stone, footage for an automotive video, on the drive to Sedona http://t.co/P4g8E2zQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:33 +0000", "from_user": "projectnoah", "from_user_id": 94202251, "from_user_id_str": "94202251", "from_user_name": "Project Noah", "geo": null, "id": 148828076376199170, "id_str": "148828076376199168", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1227788796/Noah-Icon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1227788796/Noah-Icon_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @12mm: Acabo de ganar el Mission Creator patch en @projectnoah, por haber creado la misi\\u00F3n de Birds of Colombia! - http://t.co/CXjRk8zm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:31 +0000", "from_user": "Julia__Madrid", "from_user_id": 60615912, "from_user_id_str": "60615912", "from_user_name": "Julia Madrid", "geo": null, "id": 148828071322066940, "id_str": "148828071322066945", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693225662/Img705C0604_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693225662/Img705C0604_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Tem angry birds pra Ipad?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:31 +0000", "from_user": "Indiraqsu", "from_user_id": 426263021, "from_user_id_str": "426263021", "from_user_name": "Indira Muldrow", "geo": null, "id": 148828069375901700, "id_str": "148828069375901696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668799239/LLCM-1135_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668799239/LLCM-1135_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@DistrictOfAris Ya have to try Pigeon Palooza (the next angry birds)- it is in Android Mktplce - will be in ITunes soon.", "to_user": "DistrictOfAris", "to_user_id": 15160233, "to_user_id_str": "15160233", "to_user_name": "Aris Kyriakopoulos", "in_reply_to_status_id": 148809556494004220, "in_reply_to_status_id_str": "148809556494004225"}, +{"created_at": "Mon, 19 Dec 2011 18:12:24 +0000", "from_user": "peterhorvath", "from_user_id": 9800962, "from_user_id_str": "9800962", "from_user_name": "Peter Horvath", "geo": null, "id": 148828040326164480, "id_str": "148828040326164480", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1541406164/Screen_Shot_2011-09-13_at_3.13.50_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541406164/Screen_Shot_2011-09-13_at_3.13.50_PM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @12mm: Acabo de ganar el Mission Creator patch en @projectnoah, por haber creado la misi\\u00F3n de Birds of Colombia! - http://t.co/CXjRk8zm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:23 +0000", "from_user": "Uncle_Dre", "from_user_id": 185327067, "from_user_id_str": "185327067", "from_user_name": "Se\\u00F1or Derecha", "geo": null, "id": 148828036668723200, "id_str": "148828036668723200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702532959/Uncle_Dre_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702532959/Uncle_Dre_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Temple Run has to be the best iPhone game since angry birds! Straight Up!\\u2122", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:16 +0000", "from_user": "marinae502", "from_user_id": 205940159, "from_user_id_str": "205940159", "from_user_name": "Marina Orellana", "geo": null, "id": 148828006901743600, "id_str": "148828006901743617", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694943790/IMG00672-20101224-0257_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694943790/IMG00672-20101224-0257_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Angry birds es lo maximo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:54 +0000", "from_user": "Justbirds1", "from_user_id": 291680688, "from_user_id_str": "291680688", "from_user_name": "Bev", "geo": null, "id": 148827914836783100, "id_str": "148827914836783105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1335631073/5261855304_0f68f9ba91_m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335631073/5261855304_0f68f9ba91_m_normal.jpg", "source": "<a href="http://www.twaitter.com" rel="nofollow">Twaitter</a>", "text": "Locked on Target http://t.co/2DDPafwr #birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:42 +0000", "from_user": "joriqtr", "from_user_id": 146273810, "from_user_id_str": "146273810", "from_user_name": "joriqtr.com", "geo": null, "id": 148827865167839230, "id_str": "148827865167839232", "iso_language_code": "ar", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1389586316/Rawan_-_pic__72__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1389586316/Rawan_-_pic__72__normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "▁▂▃▅▆▇\\u0623\\u0643\\u0648\\u0627\\u0628 \\u0648\\u0645\\u062C\\u0627\\u062A \\u0623\\u0646\\u062C\\u0631\\u064A \\u0628\\u064A\\u0631\\u062F\\u0632 Angry Birds \\u0644\\u0644\\u062A\\u0633\\u0644\\u064A\\u0645 \\u0627\\u0644\\u0641\\u0648\\u0631\\u064A\\u2026 http://t.co/DespynLb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:38 +0000", "from_user": "RedstoneLiquors", "from_user_id": 109292604, "from_user_id_str": "109292604", "from_user_name": "Redstone Liquors", "geo": null, "id": 148827846083756030, "id_str": "148827846083756033", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/783106591/twitterLogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/783106591/twitterLogo_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Gotta love the holidays. Jut got in a surprise case of @TheBruery 4 calling birds incase you missed out the first time around.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:17 +0000", "from_user": "jovempansjc", "from_user_id": 65361763, "from_user_id_str": "65361763", "from_user_name": "Jovem Pan SJC", "geo": null, "id": 148827758531850240, "id_str": "148827758531850240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1679567746/jp_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679567746/jp_logo_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "#Vish! Angry Birds vers\\u00E3o \\u00C1frica HUAHAUHUA http://t.co/tUyfAN0n", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:53 +0000", "from_user": "YZFRStew", "from_user_id": 122790154, "from_user_id_str": "122790154", "from_user_name": "Immigration", "geo": null, "id": 148827658300571650, "id_str": "148827658300571649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690216970/028_cropped_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690216970/028_cropped_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "All this sticking around stuff is for the birds. It's to much else out here to do than stay at Tuskegee", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:50 +0000", "from_user": "Mauradmv", "from_user_id": 426260348, "from_user_id_str": "426260348", "from_user_name": "Maura Loepp", "geo": null, "id": 148827646824939520, "id_str": "148827646824939520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668792271/LLCM-4565_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668792271/LLCM-4565_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@nicolefitton_X Ya gotta go get Pigeon Palooza (the next angry birds)- it is in Android Mktplce - should be in ITunes next week.", "to_user": "nicolefitton_X", "to_user_id": 40700963, "to_user_id_str": "40700963", "to_user_name": "nicole fitton", "in_reply_to_status_id": 148826872560631800, "in_reply_to_status_id_str": "148826872560631808"}, +{"created_at": "Mon, 19 Dec 2011 18:10:49 +0000", "from_user": "jvdbz", "from_user_id": 291933199, "from_user_id_str": "291933199", "from_user_name": "Valmir Neto", "geo": null, "id": 148827639765925900, "id_str": "148827639765925891", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1462038438/Valmir_002_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1462038438/Valmir_002_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "se vc ainda nao percebeu no angry birds eles falam \" \\u00E9 o bill!!!?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:37 +0000", "from_user": "BaharBuyukgunes", "from_user_id": 80067268, "from_user_id_str": "80067268", "from_user_name": "BaharBuyukgunes", "geo": null, "id": 148827591560798200, "id_str": "148827591560798210", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1338413233/218706_10150164832286731_517631730_7017249_4051289_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1338413233/218706_10150164832286731_517631730_7017249_4051289_o_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MuratAykul: D\\u00FCn gece, hi\\u00E7 tan\\u0131mad\\u0131\\u011F\\u0131m bir tavu\\u011Fu, s\\u0131rf Angry Birds'e benziyor diye, usulca sokulup havaya f\\u0131rlatt\\u0131m.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:31 +0000", "from_user": "Loppie123", "from_user_id": 407926607, "from_user_id_str": "407926607", "from_user_name": "Loppie123", "geo": null, "id": 148827566743109630, "id_str": "148827566743109632", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694987927/Afbeelding_313_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694987927/Afbeelding_313_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "aaaaah Angry birds spelen.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:22 +0000", "from_user": "Jannriw", "from_user_id": 431716389, "from_user_id_str": "431716389", "from_user_name": "Jann Kiper", "geo": null, "id": 148827529162141700, "id_str": "148827529162141696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681065345/3i2ten552a_130716684_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681065345/3i2ten552a_130716684_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Birds of Florida Field Guide and Audio CD Set: Everything you need to enjoy the birds in your state is right her... http://t.co/FpMBUicn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:21 +0000", "from_user": "TheoStander", "from_user_id": 242655378, "from_user_id_str": "242655378", "from_user_name": "The O", "geo": null, "id": 148827525139795970, "id_str": "148827525139795968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1649291221/IMG-20110611-00003_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649291221/IMG-20110611-00003_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @someecards: Angry Birds now available on iPhone, Droid, and completely insane man's Christmas lights display. http://t.co/mrfMU8Hl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:18 +0000", "from_user": "BrianaK_PERRY", "from_user_id": 93950407, "from_user_id_str": "93950407", "from_user_name": "Briana Norton", "geo": null, "id": 148827511449587700, "id_str": "148827511449587715", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675283105/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675283105/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @EllisBennetttt: @harry_dolan half polish , quarter Maltese , Im continental , birds love it", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:17 +0000", "from_user": "MoniGeo", "from_user_id": 26444662, "from_user_id_str": "26444662", "from_user_name": "Monica Manzanares", "geo": null, "id": 148827508022845440, "id_str": "148827508022845440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698621289/Photo_152_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698621289/Photo_152_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Apparently wearing a Angry Birds hat to work makes u the clown @ work. #callcenterlife", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:10 +0000", "from_user": "MikaylaHess17", "from_user_id": 289129553, "from_user_id_str": "289129553", "from_user_name": "Mikayla Hess", "geo": null, "id": 148827478125854720, "id_str": "148827478125854720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697297652/310701_1646950391665_1774088532_852937_1400861549_a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697297652/310701_1646950391665_1774088532_852937_1400861549_a_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "4 humming birds.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:03 +0000", "from_user": "USFWSRefuges", "from_user_id": 39633235, "from_user_id_str": "39633235", "from_user_name": "USFWS Refuge System", "geo": null, "id": 148827448371458050, "id_str": "148827448371458049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1039511846/twitterlogorefuges_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1039511846/twitterlogorefuges_normal.gif", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "CO\\u2014Thurs 12/22, Winter Raptors, 10am-noon, Rocky Mtn Arsenal Refuge. Learn to ID birds of prey http://t.co/dgQdOiE3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:02 +0000", "from_user": "BooshieBella", "from_user_id": 176173723, "from_user_id_str": "176173723", "from_user_name": "Dat_Yeyo_{B}ella", "geo": null, "id": 148827445024407550, "id_str": "148827445024407552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701500824/13242690343260_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701500824/13242690343260_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "I really do love fellow bad chicks, fly amazons, a Tru #6inchwalker, n stylish chica's,birds of a feather look damn good flocking together", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:52 +0000", "from_user": "DollaANDaDream9", "from_user_id": 117520550, "from_user_id_str": "117520550", "from_user_name": "Machine Gun Kelly", "geo": null, "id": 148827401504309250, "id_str": "148827401504309249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700707032/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700707032/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @keepitstr8up: Birds got em itchin every where call it chickenpox", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:44 +0000", "from_user": "Indiraqsu", "from_user_id": 426263021, "from_user_id_str": "426263021", "from_user_name": "Indira Muldrow", "geo": null, "id": 148827368197333000, "id_str": "148827368197332992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668799239/LLCM-1135_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668799239/LLCM-1135_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@chamitameza Have to play Pigeon Palooza (the next angry birds)- it is launched in Android Mktplce - will be in ITunes soon.", "to_user": "chamitameza", "to_user_id": 304777803, "to_user_id_str": "304777803", "to_user_name": "Chamita Meza \\u2122\\u00AE", "in_reply_to_status_id": 148809567051055100, "in_reply_to_status_id_str": "148809567051055104"}, +{"created_at": "Mon, 19 Dec 2011 18:09:43 +0000", "from_user": "JulianaPerez", "from_user_id": 30944557, "from_user_id_str": "30944557", "from_user_name": "Juliana Perez", "geo": null, "id": 148827363537461250, "id_str": "148827363537461248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1190732055/155100_10150096930698179_573268178_7373532_3360268_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1190732055/155100_10150096930698179_573268178_7373532_3360268_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@ShrinkingFoodie Hey the Angry Birds one says it's over already? Or is it? Inquiring minds would like to know. :p", "to_user": "ShrinkingFoodie", "to_user_id": 16529258, "to_user_id_str": "16529258", "to_user_name": "Jessica Elizarraras", "in_reply_to_status_id": 148823974980239360, "in_reply_to_status_id_str": "148823974980239360"}, +{"created_at": "Mon, 19 Dec 2011 18:09:32 +0000", "from_user": "alucardSystem", "from_user_id": 167092310, "from_user_id_str": "167092310", "from_user_name": "HugoQJ", "geo": null, "id": 148827319727960060, "id_str": "148827319727960064", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1634101195/I8wBpwBb_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634101195/I8wBpwBb_normal", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Angry Birds y las torres gemelas http://t.co/CkDYhyMU v\\u00EDa @cuantocabron jajajaja rifado!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:23 +0000", "from_user": "keepitstr8up", "from_user_id": 34814970, "from_user_id_str": "34814970", "from_user_name": "Knowledge \\u00AE", "geo": null, "id": 148827280297312260, "id_str": "148827280297312256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1670129144/northface_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670129144/northface_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Birds got em itchin every where call it chickenpox", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:14 +0000", "from_user": "geekprojectnews", "from_user_id": 38352453, "from_user_id_str": "38352453", "from_user_name": "Geek Project News", "geo": null, "id": 148827241130889200, "id_str": "148827241130889216", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Parque tem\\u00E1tico de Angry Birds. http://t.co/yOIuU27H Via @nerddisse", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:13 +0000", "from_user": "geek_project", "from_user_id": 228146262, "from_user_id_str": "228146262", "from_user_name": "Geek Project", "geo": null, "id": 148827240409477120, "id_str": "148827240409477122", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1202927391/favicon-geek-project_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1202927391/favicon-geek-project_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Parque tem\\u00E1tico de Angry Birds. http://t.co/XBaRE3jR Via @nerddisse", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:13 +0000", "from_user": "Rebaoe18", "from_user_id": 387914878, "from_user_id_str": "387914878", "from_user_name": "Reba Odore", "geo": null, "id": 148827239302180860, "id_str": "148827239302180865", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1580577001/PPK-4398_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580577001/PPK-4398_normal.jpg", "source": "<a href="http://bestsaleslw0.co.cc" rel="nofollow">bestsaleslw0.co.cc</a>", "text": "http://t.co/UanwvokA Angry Birds Wire-O Journal Red Angry Birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:13 +0000", "from_user": "Ambitious_ATH", "from_user_id": 415845116, "from_user_id_str": "415845116", "from_user_name": "Aneesha Howell", "geo": null, "id": 148827238559776770, "id_str": "148827238559776769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662847931/oooo_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662847931/oooo_normal", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "all the bullshxt is for the birds , he was pigeon toe'd ! #HowToHate", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:07 +0000", "from_user": "Matinez3636rumb", "from_user_id": 433015589, "from_user_id_str": "433015589", "from_user_name": "Maura Matinez", "geo": null, "id": 148827215818264580, "id_str": "148827215818264576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1684188187/9927166251268859_girl_on_orange_sofa_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684188187/9927166251268859_girl_on_orange_sofa_3_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Birds, Nests & Eggs (Take Along Guides) Reviews: Birds, Nests & Eggs (Take Along Guides)\\n\\nISBN13: 9781559716246C... http://t.co/BppxH37V", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:06 +0000", "from_user": "Jannausld", "from_user_id": 426261581, "from_user_id_str": "426261581", "from_user_name": "Janna Cadorette", "geo": null, "id": 148827210902548480, "id_str": "148827210902548480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668795630/LLCM-2162_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668795630/LLCM-2162_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@bapeonion Go go get Pigeon Palooza (the next angry birds)- it is avail in Android Mktplce - should be in ITunes soon.", "to_user": "bapeonion", "to_user_id": 14261797, "to_user_id_str": "14261797", "to_user_name": "heathcliff marmaduke", "in_reply_to_status_id": 148826210632343550, "in_reply_to_status_id_str": "148826210632343554"}, +{"created_at": "Mon, 19 Dec 2011 18:08:33 +0000", "from_user": "SAYyourmaJESty", "from_user_id": 197867319, "from_user_id_str": "197867319", "from_user_name": "Girl, Interrupted ", "geo": null, "id": 148827072641511420, "id_str": "148827072641511424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692417580/331476881_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692417580/331476881_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Ill be glad when christmas is Over. This ish is over rated and for the birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:05:40 +0000", "from_user": "timbit777", "from_user_id": 49415744, "from_user_id_str": "49415744", "from_user_name": "Freedom First", "geo": null, "id": 148826346355830800, "id_str": "148826346355830784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1288995082/arizona-flag1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1288995082/arizona-flag1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@DailyRushbo Birds of a feather!!", "to_user": "DailyRushbo", "to_user_id": 168705627, "to_user_id_str": "168705627", "to_user_name": "Daily Rushbo", "in_reply_to_status_id": 148823373185687550, "in_reply_to_status_id_str": "148823373185687553"}, +{"created_at": "Mon, 19 Dec 2011 18:05:27 +0000", "from_user": "_ImSunnyAF", "from_user_id": 173588622, "from_user_id_str": "173588622", "from_user_name": "Navier Nicole \\u2764", "geo": null, "id": 148826291125239800, "id_str": "148826291125239808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1661003557/_ImSunnyAF_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661003557/_ImSunnyAF_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @____AMM: Temple Run , Angry Birds , and Twitter take up my whole life", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:05:22 +0000", "from_user": "L_i_am_Somers", "from_user_id": 320933440, "from_user_id_str": "320933440", "from_user_name": "LiamSomers", "geo": null, "id": 148826268123676670, "id_str": "148826268123676672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702467108/black___white_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702467108/black___white_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@BLowe_x higher than the birds, #richardbranson - quote from @Dappy_Official", "to_user": "BLowe_x", "to_user_id": 40695285, "to_user_id_str": "40695285", "to_user_name": "BethanyEmilyLowe", "in_reply_to_status_id": 148826058509131780, "in_reply_to_status_id_str": "148826058509131777"} + +, +{"created_at": "Mon, 19 Dec 2011 18:59:33 +0000", "from_user": "iruvsoshi", "from_user_id": 83800588, "from_user_id_str": "83800588", "from_user_name": "\\uFF4A \\uFF41 \\uFF52 \\uFF45 \\uFF44 \\u3002", "geo": null, "id": 148839904053428220, "id_str": "148839904053428224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694431266/crop2-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694431266/crop2-1_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@Saradolimz OMG I BOUGHT TOO ITS DAMN FUN!!! I LOVE THE FIRST ONE LOL ZOO TYCOON WITH DINOSAURS AND STUFF", "to_user": "Saradolimz", "to_user_id": 53036970, "to_user_id_str": "53036970", "to_user_name": "Sarah \\u30DB\\u30DD ", "in_reply_to_status_id": 148839679200985100, "in_reply_to_status_id_str": "148839679200985088"}, +{"created_at": "Mon, 19 Dec 2011 18:58:54 +0000", "from_user": "booberry_xXx", "from_user_id": 436046008, "from_user_id_str": "436046008", "from_user_name": "Lauren :)", "geo": null, "id": 148839742065213440, "id_str": "148839742065213440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691429197/MEEE_and_maceyy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691429197/MEEE_and_maceyy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#ThingsWeAllHate - When websites ask, \"Are you human?\" Well, no, we're obviously dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:40 +0000", "from_user": "mafergz96", "from_user_id": 64559285, "from_user_id_str": "64559285", "from_user_name": "maria fernanda garza", "geo": null, "id": 148839683558883330, "id_str": "148839683558883328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695618533/388894_337401609619391_100000486631578_1396084_464626709_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695618533/388894_337401609619391_100000486631578_1396084_464626709_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @bieberadris: Kiss me if im wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:37 +0000", "from_user": "OutlawPurdyGirl", "from_user_id": 268736462, "from_user_id_str": "268736462", "from_user_name": "Sexual Vampire ", "geo": null, "id": 148839670820782080, "id_str": "148839670820782080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681715762/Ashley_Purdy_High_Danger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681715762/Ashley_Purdy_High_Danger_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@JohnnyRickfield Nobody belongs on this earth. Dinosaurs belong here. :) <3 Feel better... don't know what's up but Dino's make it all good!", "to_user": "JohnnyRickfield", "to_user_id": 284299872, "to_user_id_str": "284299872", "to_user_name": "Abby-JohnnyRickfield", "in_reply_to_status_id": 148838921067966460, "in_reply_to_status_id_str": "148838921067966464"}, +{"created_at": "Mon, 19 Dec 2011 18:56:19 +0000", "from_user": "ssasquatch", "from_user_id": 35803698, "from_user_id_str": "35803698", "from_user_name": "Sophia Danger", "geo": null, "id": 148839092711456770, "id_str": "148839092711456768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1637172837/6999278_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637172837/6999278_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Humans are the next era's dinosaurs. #thinkaboutit", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:17 +0000", "from_user": "luvapman", "from_user_id": 135980533, "from_user_id_str": "135980533", "from_user_name": "Anna Cohen", "geo": null, "id": 148839083697897470, "id_str": "148839083697897472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687412732/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687412732/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Eleven-\\n\\nmy past stopped with dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:09 +0000", "from_user": "iTrine", "from_user_id": 28558909, "from_user_id_str": "28558909", "from_user_name": "Johnny Depp's wife", "geo": null, "id": 148839051431133200, "id_str": "148839051431133184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696323933/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696323933/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Dinosaurs go rawr, everybody knows that~", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:12 +0000", "from_user": "patriciaab98", "from_user_id": 344547924, "from_user_id_str": "344547924", "from_user_name": "p\\u00AAtriciaa\\u10E6", "geo": null, "id": 148838812758442000, "id_str": "148838812758441985", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686355463/248399_194700367247172_110972012286675_598227_3732272_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686355463/248399_194700367247172_110972012286675_598227_3732272_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @bieberadris: Kiss me if im wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:00 +0000", "from_user": "Ariath", "from_user_id": 50713477, "from_user_id_str": "50713477", "from_user_name": "Elizabeth Guerra", "geo": null, "id": 148838762384867330, "id_str": "148838762384867329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697979653/2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697979653/2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @photonstorm: \"Daddy, a fireball from space hit earth and killed all the dinosaurs. Do you remember that?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:50 +0000", "from_user": "photonstorm", "from_user_id": 21861033, "from_user_id_str": "21861033", "from_user_name": "Richard Davey", "geo": null, "id": 148838719686852600, "id_str": "148838719686852609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1276871116/twitter-icon-transparent_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1276871116/twitter-icon-transparent_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\"Daddy, a fireball from space hit earth and killed all the dinosaurs. Do you remember that?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:40 +0000", "from_user": "_MissBex_", "from_user_id": 260723242, "from_user_id_str": "260723242", "from_user_name": "bex. ", "geo": null, "id": 148838671855001600, "id_str": "148838671855001600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1679411576/IMG_2051_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679411576/IMG_2051_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Turkey dinosaurs for dinner, yummy! http://t.co/agusGkbF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:49 +0000", "from_user": "bieberadris", "from_user_id": 46254307, "from_user_id_str": "46254307", "from_user_name": "Adriana Maria\\u2665", "geo": null, "id": 148838461565186050, "id_str": "148838461565186048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1659444915/Copia_20de_20adriana_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659444915/Copia_20de_20adriana_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Kiss me if im wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:30 +0000", "from_user": "Mandyjfs", "from_user_id": 415408974, "from_user_id_str": "415408974", "from_user_name": "Glory Loach", "geo": null, "id": 148838381890179070, "id_str": "148838381890179073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692697004/d2fmjceb5d_132173893-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692697004/d2fmjceb5d_132173893-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Dinosaurs of Australia and New Zealand: And Other Animals of the Mesozoic: http://t.co/UarE2I8V", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:29 +0000", "from_user": "imfamousBree", "from_user_id": 158451935, "from_user_id_str": "158451935", "from_user_name": "Breanna Nashay \\u2661", "geo": null, "id": 148838380803866620, "id_str": "148838380803866624", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702230580/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702230580/profile_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "i dont hug dinosaurs :D LMFAOOOOO !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:25 +0000", "from_user": "_LaFawn_Duh", "from_user_id": 148229493, "from_user_id_str": "148229493", "from_user_name": "jade hinds", "geo": null, "id": 148838363925970940, "id_str": "148838363925970944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694182473/z8rvbRCcy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694182473/z8rvbRCcy_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Hahah wtf? I had a dream that I wore @Dillongrap baseball jersey to the fair, and got chased by the grinch, and dinosaurs? #imonsomething", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:16 +0000", "from_user": "NoahQ", "from_user_id": 40148586, "from_user_id_str": "40148586", "from_user_name": "Noah Quisenberry", "geo": null, "id": 148838323148959740, "id_str": "148838323148959744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1632523251/noahk_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632523251/noahk_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Grr kids these days don't know how lucky they have it. In the 90's I had to deal with purple flaming dinosaurs & equally flaming boy bands.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:00 +0000", "from_user": "shelby_lynn94", "from_user_id": 378290125, "from_user_id_str": "378290125", "from_user_name": "shelby evans", "geo": null, "id": 148838259382947840, "id_str": "148838259382947840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1555360783/215280_217117351638617_100000210606048_1051624_5864701_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555360783/215280_217117351638617_100000210606048_1051624_5864701_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @cadyeimer: Kiss me if im wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:08 +0000", "from_user": "haileighT", "from_user_id": 293289249, "from_user_id_str": "293289249", "from_user_name": "Haileigh Tomlinson", "geo": null, "id": 148838040104730620, "id_str": "148838040104730624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1672849186/kk_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672849186/kk_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Kiss me if I'm wrong, but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:52 +0000", "from_user": "Everyday_Info", "from_user_id": 283357364, "from_user_id_str": "283357364", "from_user_name": "Everyday Info", "geo": null, "id": 148837973419503600, "id_str": "148837973419503616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1314315267/info_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1314315267/info_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "Short guide to dinosaurs - http://t.co/ddSyLPOc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:36 +0000", "from_user": "_Thesius", "from_user_id": 117273171, "from_user_id_str": "117273171", "from_user_name": "Theseus*", "geo": null, "id": 148837904888766460, "id_str": "148837904888766465", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702535098/Snapshot_20111219_2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702535098/Snapshot_20111219_2_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "I wish some of you all will get eaten by the dinosaurs brought back to life because of akmun ra's special tablet in the museum.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:33 +0000", "from_user": "marklane74", "from_user_id": 213022898, "from_user_id_str": "213022898", "from_user_name": "Mark Lane", "geo": null, "id": 148837642585374720, "id_str": "148837642585374721", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675681194/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675681194/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@AndrewB2 Chiek Tiote had a barbecue. Then the dinosaurs were extinct\\n#tiotefacts", "to_user": "AndrewB2", "to_user_id": 20387791, "to_user_id_str": "20387791", "to_user_name": "Andrew Brownlee", "in_reply_to_status_id": 148832208096997380, "in_reply_to_status_id_str": "148832208096997377"}, +{"created_at": "Mon, 19 Dec 2011 18:50:22 +0000", "from_user": "ehkayfourseven", "from_user_id": 269913052, "from_user_id_str": "269913052", "from_user_name": "AK Fourtyseven", "geo": null, "id": 148837593130352640, "id_str": "148837593130352640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1529681232/207420_10150561470265304_628175303_18234995_2449365_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1529681232/207420_10150561470265304_628175303_18234995_2449365_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Kids coughing like they dinosaurs ot some shit cover your mouths. Bitch!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:27 +0000", "from_user": "imageswebsites", "from_user_id": 27708398, "from_user_id_str": "27708398", "from_user_name": "Images Websites", "geo": null, "id": 148837365727764480, "id_str": "148837365727764480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/128611599/Honey-Glazed-Donut_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/128611599/Honey-Glazed-Donut_normal.jpg", "source": "<a href="http://www.ajaymatharu.com/" rel="nofollow">Tweet Old Post</a>", "text": "Dinosaurs Unleashed http://t.co/vYswiZfl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:46 +0000", "from_user": "TRAJKOVICNEWS", "from_user_id": 363094283, "from_user_id_str": "363094283", "from_user_name": "TRAJKOVIC NEWS", "geo": null, "id": 148837191022411780, "id_str": "148837191022411776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1515881451/s1_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515881451/s1_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "First-ever evidence of giant plant-eating dinosaurs found in Antarctica - from a time when it would have been gr... http://t.co/LNgwkQNu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:46 +0000", "from_user": "IvanTrajkovicVr", "from_user_id": 335461141, "from_user_id_str": "335461141", "from_user_name": "Ivan Trajkovic", "geo": null, "id": 148837190766559230, "id_str": "148837190766559233", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1524849110/Avatar_normal_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1524849110/Avatar_normal_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "First-ever evidence of giant plant-eating dinosaurs found in Antarctica - from a time when it would have been gr... http://t.co/9S1InrKa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:45 +0000", "from_user": "DTNUK", "from_user_id": 219213094, "from_user_id_str": "219213094", "from_user_name": "DTN UK", "geo": null, "id": 148837189055287300, "id_str": "148837189055287298", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696304922/DTN_UK_DEC_16_2011_CORRECTED_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696304922/DTN_UK_DEC_16_2011_CORRECTED_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "DTN UK: First-ever evidence of giant plant-eating dinosaurs found in Antarctica - from a time when it would have... http://t.co/DfDoLmcz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:45 +0000", "from_user": "guideofscience", "from_user_id": 217583792, "from_user_id_str": "217583792", "from_user_name": "snape", "geo": null, "id": 148837186899410940, "id_str": "148837186899410944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1171081577/100px-PrirodneNauke.svg_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1171081577/100px-PrirodneNauke.svg_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "First-ever evidence of giant plant-eating dinosaurs found in Antarctica - from a time when it would have been gr... http://t.co/ieDddTH7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:45 +0000", "from_user": "shoeinabox", "from_user_id": 74186069, "from_user_id_str": "74186069", "from_user_name": "Mia Taylor", "geo": null, "id": 148837185863430140, "id_str": "148837185863430144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/427883340/1237973547_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/427883340/1237973547_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "First-ever evidence of giant plant-eating dinosaurs found in Antarctica - from a time when it would have been gr... http://t.co/O1Gs6UlK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:30 +0000", "from_user": "anjabelieber", "from_user_id": 258013638, "from_user_id_str": "258013638", "from_user_name": "anja", "geo": null, "id": 148837125419319300, "id_str": "148837125419319296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1465464656/4UpAvatar_reasonably_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1465464656/4UpAvatar_reasonably_small_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/nfVQVleK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:10 +0000", "from_user": "BlasianSpiffy", "from_user_id": 289174712, "from_user_id_str": "289174712", "from_user_name": "Oh Lawd !", "geo": null, "id": 148837042137210880, "id_str": "148837042137210880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1649779735/avatar_normal.JPEG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649779735/avatar_normal.JPEG", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "RT @TechieRuss: How the hell do we have mobile phones that can make calls, play movies, games; but our cars run by burning decomposed dinosaurs?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:33 +0000", "from_user": "cfl_baws", "from_user_id": 253664641, "from_user_id_str": "253664641", "from_user_name": "jordan hamilton", "geo": null, "id": 148836632328536060, "id_str": "148836632328536065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688221881/SHbG6f4E_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688221881/SHbG6f4E_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Aizenn95 i though dinosaurs were extinct!? Your fuking HUUUUGGGGGEEEE!", "to_user": "Aizenn95", "to_user_id": 424845089, "to_user_id_str": "424845089", "to_user_name": "Abdelrahman Fawzi"}, +{"created_at": "Mon, 19 Dec 2011 18:46:19 +0000", "from_user": "ChrisDolemeth", "from_user_id": 167225609, "from_user_id_str": "167225609", "from_user_name": "Brandon Noel", "geo": null, "id": 148836576590430200, "id_str": "148836576590430208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689789126/4Pcr1Ncq_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689789126/4Pcr1Ncq_normal", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "RT @TechieRuss: How the hell do we have mobile phones that can make calls, play movies, games; but our cars run by burning decomposed dinosaurs?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:34 +0000", "from_user": "awriterswindow", "from_user_id": 14458795, "from_user_id_str": "14458795", "from_user_name": "Ashley Nicole", "geo": null, "id": 148836386475221000, "id_str": "148836386475220993", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/133301056/232251619-M_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/133301056/232251619-M_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @mattf917: #TebowBookTitles Dinosaurs, a history of Mythology", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:47 +0000", "from_user": "SummerMuir", "from_user_id": 220628119, "from_user_id_str": "220628119", "from_user_name": "Summer Muir", "geo": null, "id": 148836187568750600, "id_str": "148836187568750592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1612927575/Image127_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612927575/Image127_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @meganrobles: Yes I'm 15 and I'm playing with toy dinosaurs with a 5 year old http://t.co/bTT8EJB9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:16 +0000", "from_user": "higoorsilva_", "from_user_id": 178904416, "from_user_id_str": "178904416", "from_user_name": ". higoor silvaa;*", "geo": null, "id": 148836060238053380, "id_str": "148836060238053377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699633255/rrr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699633255/rrr_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/H7JtIcre", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:06 +0000", "from_user": "vivalaphoebz", "from_user_id": 414188329, "from_user_id_str": "414188329", "from_user_name": "Phoebe Spooner", "geo": null, "id": 148836017976246270, "id_str": "148836017976246273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1643150413/381001_2205761111555_1473232631_32089499_1984951_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643150413/381001_2205761111555_1473232631_32089499_1984951_n_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Hollis Allen on evolution: Adam & Eve must have birthed baby dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:45 +0000", "from_user": "mattf917", "from_user_id": 385666046, "from_user_id_str": "385666046", "from_user_name": "The 420 Kid", "geo": null, "id": 148835929476448260, "id_str": "148835929476448256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1669559411/IMG01053-20111109-1509_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669559411/IMG01053-20111109-1509_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "#TebowBookTitles Dinosaurs, a history of Mythology", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:43 +0000", "from_user": "skyymemoiRS___", "from_user_id": 282687836, "from_user_id_str": "282687836", "from_user_name": "\\u043Ciss \\u043C\\u03B1r\\u03B3 ", "geo": null, "id": 148835922702647300, "id_str": "148835922702647296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689863191/PicsIn1323466794134-1-3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689863191/PicsIn1323466794134-1-3_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @xo_Nicoleeee_xo: RT @skyymemoiRS___: @xo_Nicoleeee_xo lmaoo ikr! extinct like the dinosaurs smhhh // haha could not agree more!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:33 +0000", "from_user": "vland", "from_user_id": 36703, "from_user_id_str": "36703", "from_user_name": "vland", "geo": null, "id": 148835879354511360, "id_str": "148835879354511360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/763990221/P1010411head_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/763990221/P1010411head_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/deu2UFtJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:46 +0000", "from_user": "BobbieMoorhouse", "from_user_id": 224589225, "from_user_id_str": "224589225", "from_user_name": "Bobbie Moorhouse", "geo": null, "id": 148835682431934460, "id_str": "148835682431934464", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1679750512/385146_2523668424232_1629001181_2336935_1510094884_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679750512/385146_2523668424232_1629001181_2336935_1510094884_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@hollierowe spirit??? Dinosaurs???", "to_user": "hollierowe", "to_user_id": 90674182, "to_user_id_str": "90674182", "to_user_name": "h o l l i e"}, +{"created_at": "Mon, 19 Dec 2011 18:42:35 +0000", "from_user": "wewill_laugh", "from_user_id": 29544142, "from_user_id_str": "29544142", "from_user_name": "Becky Peters", "geo": null, "id": 148835637540290560, "id_str": "148835637540290561", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1683906454/bwtwitpic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683906454/bwtwitpic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "watching jurassic park 2, and it's making me really sad :( i no like when they's hunting and catching the dinosaurs! poor bbs. :(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:33 +0000", "from_user": "Lavonneuba", "from_user_id": 440203340, "from_user_id_str": "440203340", "from_user_name": "Lavonne Gunder", "geo": null, "id": 148835629583704060, "id_str": "148835629583704064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700553944/large_Picture_004_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700553944/large_Picture_004_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Standard Deviants: Dinosaurs [VHS]: http://t.co/tdcuNtNn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:21 +0000", "from_user": "MomoD_19", "from_user_id": 50447571, "from_user_id_str": "50447571", "from_user_name": "Morgannnn", "geo": null, "id": 148835575863050240, "id_str": "148835575863050240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701127601/Photo_00001__9__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701127601/Photo_00001__9__normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "Dinosaurs chicken nuggets , French fries , & iced tea .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:08 +0000", "from_user": "didUknow_ID", "from_user_id": 413919101, "from_user_id_str": "413919101", "from_user_name": "Cakrawala Dunia", "geo": null, "id": 148835522998042620, "id_str": "148835522998042625", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682668142/Did_You_Know_Logo._normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682668142/Did_You_Know_Logo._normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#didUknow First-ever evidence of giant plant-eating dinosaurs found in Antarctica - from a time when... http://t.co/KQ0c8YkJ (DailyMail)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:07 +0000", "from_user": "GiantPandaDub", "from_user_id": 26154358, "from_user_id_str": "26154358", "from_user_name": "Giant Panda G.D.S.", "geo": null, "id": 148835519386755070, "id_str": "148835519386755073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1119150572/GPGDS-LiveUp2-Art_Front_200_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1119150572/GPGDS-LiveUp2-Art_Front_200_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @real_mike_hacku: I thought the best band name of all time was Giant Panda Guerilla Dub Squad until I found Totally Enormous Extinct Dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:50 +0000", "from_user": "Blankchan_", "from_user_id": 321023054, "from_user_id_str": "321023054", "from_user_name": "HiiEN", "geo": null, "id": 148835448666595330, "id_str": "148835448666595328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1670060876/k9ya_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670060876/k9ya_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @OkuuTheEngineer: @tenfootfangs @blankchan_ Listen to this guy. He can't live in the past anymore. Watching dinosaurs evolve was bad enough.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:48 +0000", "from_user": "meganrobles", "from_user_id": 144204100, "from_user_id_str": "144204100", "from_user_name": "2888CDD4", "geo": null, "id": 148835437748817920, "id_str": "148835437748817920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1666253685/10xyn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666253685/10xyn_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Yes I'm 15 and I'm playing with toy dinosaurs with a 5 year old http://t.co/bTT8EJB9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:37 +0000", "from_user": "Lakiaetl", "from_user_id": 431680304, "from_user_id_str": "431680304", "from_user_name": "Lakia Brickel", "geo": null, "id": 148835393482133500, "id_str": "148835393482133504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680985077/4mjksvvq5c_132561633-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680985077/4mjksvvq5c_132561633-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Discovering Dinosaurs in the Old West: The Field Journals of Arthur Lakes: Dominated by two talented and competi... http://t.co/769HV7SJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:22 +0000", "from_user": "xLydialovesJBx", "from_user_id": 105826736, "from_user_id_str": "105826736", "from_user_name": "LydiaMarie\\u2600", "geo": null, "id": 148835331414827000, "id_str": "148835331414827008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1637046477/xLydialovesJBx_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637046477/xLydialovesJBx_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@justinbieber kiss me if im wrong, dinosaurs still exsist right? ;) xx", "to_user": "justinbieber", "to_user_id": 27260086, "to_user_id_str": "27260086", "to_user_name": "Justin Bieber"}, +{"created_at": "Mon, 19 Dec 2011 18:41:16 +0000", "from_user": "OkuuTheEngineer", "from_user_id": 150757646, "from_user_id_str": "150757646", "from_user_name": "Okuu the Engineer", "geo": null, "id": 148835303522709500, "id_str": "148835303522709504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688414844/Licksuho_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688414844/Licksuho_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@tenfootfangs @blankchan_ Listen to this guy. He can't live in the past anymore. Watching dinosaurs evolve was bad enough.", "to_user": "tenfootfangs", "to_user_id": 22337789, "to_user_id_str": "22337789", "to_user_name": "\\u30B1\\u30FC\\u30CD", "in_reply_to_status_id": 148834833592881150, "in_reply_to_status_id_str": "148834833592881152"}, +{"created_at": "Mon, 19 Dec 2011 18:40:52 +0000", "from_user": "FUCKCRUZ", "from_user_id": 137079659, "from_user_id_str": "137079659", "from_user_name": "Maybach Landaulet", "geo": null, "id": 148835205472460800, "id_str": "148835205472460800", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682590079/Photo_on_11-17-11_at_11.02_AM__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682590079/Photo_on_11-17-11_at_11.02_AM__2_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:44 +0000", "from_user": "amandajean16760", "from_user_id": 252747036, "from_user_id_str": "252747036", "from_user_name": "Amanda Rust", "geo": null, "id": 148835172207431680, "id_str": "148835172207431680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1285519374/heart3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1285519374/heart3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:16 +0000", "from_user": "ChabotSpace", "from_user_id": 19928678, "from_user_id_str": "19928678", "from_user_name": "ChabotSpace (CSSC)", "geo": null, "id": 148835052346806270, "id_str": "148835052346806272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/747238644/Domes_at_Night_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/747238644/Domes_at_Night_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Science for Preschoolers @ChabotSpace Tue. 12/20 10a OR 12noon. What happened 65 mil year ago to the Dinosaurs? \\nhttp://t.co/w904L62R", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:07 +0000", "from_user": "RAAEEEEE", "from_user_id": 22844374, "from_user_id_str": "22844374", "from_user_name": "Rachel Dean", "geo": null, "id": 148835013151047680, "id_str": "148835013151047680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1670512028/lemon_head_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670512028/lemon_head_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I had turkey dinosaurs for dinner, you jealous?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:00 +0000", "from_user": "paulinewong", "from_user_id": 30703659, "from_user_id_str": "30703659", "from_user_name": "pauline wong", "geo": null, "id": 148834986185854980, "id_str": "148834986185854977", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1231500200/Copy_of_IMG_4525_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1231500200/Copy_of_IMG_4525_normal.JPG", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "I just noticed that b.j. and his sister are dinosaurs like barney.. I always thought they were something else. Hahaah", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:47 +0000", "from_user": "ZoeeAnn_X", "from_user_id": 103041461, "from_user_id_str": "103041461", "from_user_name": "Zoe Fitzgerald", "geo": null, "id": 148834931513098240, "id_str": "148834931513098240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702376356/DSC01352_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702376356/DSC01352_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "I like dinosaurs. I like Olly Murs. I like Jedward. I like chocolate. <- Just some of the things I like :3 completely random mood!:L", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:15 +0000", "from_user": "RC____", "from_user_id": 138735582, "from_user_id_str": "138735582", "from_user_name": "Raheen Chauhan\\u2122 \\u2714", "geo": null, "id": 148834547050618880, "id_str": "148834547050618880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668271071/HHHHH_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668271071/HHHHH_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @M4ria_khan: Awwiii :P RT @RC____ Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:12 +0000", "from_user": "Dominqueisj", "from_user_id": 440175013, "from_user_id_str": "440175013", "from_user_name": "Dominque Berthiaume", "geo": null, "id": 148834532936777730, "id_str": "148834532936777728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700486643/large_IMG_2204_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700486643/large_IMG_2204_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Handy Dinosaur Answer Book (Handy Answer Books): Featuring more than 600 questions about dinosaurs\\u2014such as W... http://t.co/kInQJTpK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:51 +0000", "from_user": "skyymemoiRS___", "from_user_id": 282687836, "from_user_id_str": "282687836", "from_user_name": "\\u043Ciss \\u043C\\u03B1r\\u03B3 ", "geo": null, "id": 148834442742480900, "id_str": "148834442742480896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689863191/PicsIn1323466794134-1-3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689863191/PicsIn1323466794134-1-3_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "@xo_Nicoleeee_xo lmaoo ikr! extinct like the dinosaurs smhhh", "to_user": "xo_Nicoleeee_xo", "to_user_id": 108269862, "to_user_id_str": "108269862", "to_user_name": "Nicole \\u2665", "in_reply_to_status_id": 148833959881605120, "in_reply_to_status_id_str": "148833959881605120"}, +{"created_at": "Mon, 19 Dec 2011 18:37:26 +0000", "from_user": "colonelbrandone", "from_user_id": 6814542, "from_user_id_str": "6814542", "from_user_name": "Brandon", "geo": null, "id": 148834341416476670, "id_str": "148834341416476672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1533702936/Profile_Pictwitter3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1533702936/Profile_Pictwitter3_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @JustSomeCoffee: Just brewed a fresh cup. It answers the age old question, \"How did dinosaurs enforce laws?\" www.justsomecoffee.com", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:04 +0000", "from_user": "OutrageousAutie", "from_user_id": 109432949, "from_user_id_str": "109432949", "from_user_name": "Autie ;)) (A.Wills) ", "geo": null, "id": 148834248030289920, "id_str": "148834248030289920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1673722133/2qB8n7OV_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673722133/2qB8n7OV_normal", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/gIy8G5aV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:58 +0000", "from_user": "yougotrossed", "from_user_id": 15207487, "from_user_id_str": "15207487", "from_user_name": "Sherri Ross", "geo": null, "id": 148834223745269760, "id_str": "148834223745269760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1618293648/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618293648/image_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/ooshLLsF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:48 +0000", "from_user": "UhhhSean", "from_user_id": 284186869, "from_user_id_str": "284186869", "from_user_name": "Sean Maillet", "geo": null, "id": 148834181399592960, "id_str": "148834181399592961", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1497279084/sean_keg_cottage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1497279084/sean_keg_cottage_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "If you are scared of dinosaurs don't read this book http://t.co/9URNvM4J", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:43 +0000", "from_user": "Heartbreak_Casi", "from_user_id": 380510307, "from_user_id_str": "380510307", "from_user_name": "Missy\\u266B\\u2665", "geo": null, "id": 148834161124311040, "id_str": "148834161124311040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701740272/8JO4MPaY_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701740272/8JO4MPaY_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:28 +0000", "from_user": "M4ria_khan", "from_user_id": 248764563, "from_user_id_str": "248764563", "from_user_name": " \\u2514\\u2661\\u0328\\u0310\\u221A\\u01BA, U\\u0305\\u0332\\u0336\\u0325\\u030A ", "geo": null, "id": 148834095873527800, "id_str": "148834095873527809", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702572169/images_36__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702572169/images_36__normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Awwiii :P RT @RC____ Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:12 +0000", "from_user": "thedailywitness", "from_user_id": 380510294, "from_user_id_str": "380510294", "from_user_name": "Jonas Kane", "geo": null, "id": 148834031050559500, "id_str": "148834031050559488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1564230685/burnsy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1564230685/burnsy_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Christianity is a social engineering tool that has no place in politics. If you believe dinosaurs walked the earth 2000 yrs ago, vote GOP.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:46 +0000", "from_user": "scrib", "from_user_id": 15416531, "from_user_id_str": "15416531", "from_user_name": "scrib", "geo": null, "id": 148833918441893900, "id_str": "148833918441893888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/797310949/peek_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/797310949/peek_normal.JPG", "source": "<a href="http://www.twittergadget.com" rel="nofollow">tGadget</a>", "text": "@neiltyson Alien: How do you power your planet? Man: First, get some dinosaurs and a big-assed asteroid... #fb", "to_user": "neiltyson", "to_user_id": 19725644, "to_user_id_str": "19725644", "to_user_name": "Neil deGrasse Tyson"}, +{"created_at": "Mon, 19 Dec 2011 18:34:47 +0000", "from_user": "RC____", "from_user_id": 138735582, "from_user_id_str": "138735582", "from_user_name": "Raheen Chauhan\\u2122 \\u2714", "geo": null, "id": 148833671523217400, "id_str": "148833671523217408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668271071/HHHHH_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668271071/HHHHH_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:38 +0000", "from_user": "Islingtonboys", "from_user_id": 21296508, "from_user_id_str": "21296508", "from_user_name": "Andy Lovelee", "geo": null, "id": 148833379515760640, "id_str": "148833379515760640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1610439703/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610439703/twitter_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Camera on iOS</a>", "text": "Chicken dinosaurs 1 pound http://t.co/qGskSkDN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:36 +0000", "from_user": "YoimDoobs", "from_user_id": 135552403, "from_user_id_str": "135552403", "from_user_name": "DOOBS", "geo": null, "id": 148833373631168500, "id_str": "148833373631168512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1679486695/331072733_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679486695/331072733_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/gH8WXyTn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:58 +0000", "from_user": "guillaumevende", "from_user_id": 15132395, "from_user_id_str": "15132395", "from_user_name": "Guillaume Vend\\u00E9", "geo": null, "id": 148832965693157380, "id_str": "148832965693157377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1556693607/avatar-normal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1556693607/avatar-normal_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/soundtracking/id414323798?mt=8&uo=4" rel="nofollow">SoundTracking on iOS</a>", "text": "Nokia Lumia 800 TV ads music!!! \\u266B \"Garden (Jesse Rose Remix)\" by Totally Enormous Extinct Dinosaurs (@ Le Carr\\u00E9) http://t.co/9glWBZPJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:58 +0000", "from_user": "Rock_City_Notts", "from_user_id": 22508884, "from_user_id_str": "22508884", "from_user_name": "Rock City", "geo": null, "id": 148832965617655800, "id_str": "148832965617655810", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/85978575/Rock_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/85978575/Rock_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@matthewtdrew Doors: 7pm\\nChad Valley: 7.30 \\u2013 8pm\\nTotally Enormous Extinct Dinosaurs: 8.15 \\u2013 8.45pm\\nFriendly Fires: 9.15pm", "to_user": "matthewtdrew", "to_user_id": 35863900, "to_user_id_str": "35863900", "to_user_name": "Matthew Drew", "in_reply_to_status_id": 148828127156641800, "in_reply_to_status_id_str": "148828127156641792"}, +{"created_at": "Mon, 19 Dec 2011 18:31:39 +0000", "from_user": "Rock_City_Notts", "from_user_id": 22508884, "from_user_id_str": "22508884", "from_user_name": "Rock City", "geo": null, "id": 148832884940226560, "id_str": "148832884940226560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/85978575/Rock_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/85978575/Rock_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@laurenvdp Doors: 7pm\\nChad Valley: 7.30 \\u2013 8pm\\nTotally Enormous Extinct Dinosaurs: 8.15 \\u2013 8.45pm\\nFriendly Fires: 9.15pm", "to_user": "laurenvdp", "to_user_id": 30009409, "to_user_id_str": "30009409", "to_user_name": "Lauren Vanderplank", "in_reply_to_status_id": 148819355105366000, "in_reply_to_status_id_str": "148819355105366016"}, +{"created_at": "Mon, 19 Dec 2011 18:31:32 +0000", "from_user": "Rock_City_Notts", "from_user_id": 22508884, "from_user_id_str": "22508884", "from_user_name": "Rock City", "geo": null, "id": 148832854879633400, "id_str": "148832854879633408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/85978575/Rock_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/85978575/Rock_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@phoenixdarkness Doors: 7pm\\nChad Valley: 7.30 \\u2013 8pm\\nTotally Enormous Extinct Dinosaurs: 8.15 \\u2013 8.45pm\\nFriendly Fires: 9.15pm", "to_user": "phoenixdarkness", "to_user_id": 83599590, "to_user_id_str": "83599590", "to_user_name": "Peter Moylan", "in_reply_to_status_id": 148801461457915900, "in_reply_to_status_id_str": "148801461457915904"}, +{"created_at": "Mon, 19 Dec 2011 18:31:24 +0000", "from_user": "Rock_City_Notts", "from_user_id": 22508884, "from_user_id_str": "22508884", "from_user_name": "Rock City", "geo": null, "id": 148832820444401660, "id_str": "148832820444401664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/85978575/Rock_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/85978575/Rock_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@BenJackson09 Doors: 7pm\\nChad Valley: 7.30 \\u2013 8pm\\nTotally Enormous Extinct Dinosaurs: 8.15 \\u2013 8.45pm\\nFriendly Fires: 9.15pm", "to_user": "BenJackson09", "to_user_id": 76384151, "to_user_id_str": "76384151", "to_user_name": "Ben Jackson", "in_reply_to_status_id": 148800988671774720, "in_reply_to_status_id_str": "148800988671774720"}, +{"created_at": "Mon, 19 Dec 2011 18:31:20 +0000", "from_user": "mylenabarth_p", "from_user_id": 218174341, "from_user_id_str": "218174341", "from_user_name": "Mylena Barth Putti", "geo": null, "id": 148832804199858180, "id_str": "148832804199858176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701218028/IMG0230A_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701218028/IMG0230A_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/SdgiewBr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:12 +0000", "from_user": "Rock_City_Notts", "from_user_id": 22508884, "from_user_id_str": "22508884", "from_user_name": "Rock City", "geo": null, "id": 148832769496199170, "id_str": "148832769496199169", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/85978575/Rock_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/85978575/Rock_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Badgemanbrown Doors: 7pm\\nChad Valley: 7.30 \\u2013 8pm\\nTotally Enormous Extinct Dinosaurs: 8.15 \\u2013 8.45pm\\nFriendly Fires: 9.15pm", "to_user": "Badgemanbrown", "to_user_id": 21238902, "to_user_id_str": "21238902", "to_user_name": "Neil Smith", "in_reply_to_status_id": 148792943363366900, "in_reply_to_status_id_str": "148792943363366912"}, +{"created_at": "Mon, 19 Dec 2011 18:31:07 +0000", "from_user": "creativemoore", "from_user_id": 20880122, "from_user_id_str": "20880122", "from_user_name": "Craig Thompson", "geo": null, "id": 148832749661323260, "id_str": "148832749661323265", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1634662405/200px_CROPPED_twitter_profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634662405/200px_CROPPED_twitter_profile_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Brilliant: light graffiti dinosaurs - http://t.co/2pPErsSi #photography", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:02 +0000", "from_user": "Ball_Fiend", "from_user_id": 68569063, "from_user_id_str": "68569063", "from_user_name": "Hannah Mark", "geo": null, "id": 148832728412979200, "id_str": "148832728412979200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1678386890/_40Ball_Fiend_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678386890/_40Ball_Fiend_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Kiss me if i'm wrong but dinosaurs still exist right ?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:53 +0000", "from_user": "hydo", "from_user_id": 2111931, "from_user_id_str": "2111931", "from_user_name": "Clint Moore", "geo": null, "id": 148832689603096580, "id_str": "148832689603096576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1215453467/584c6b62ddeefc7e61789ceb786c485f_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1215453467/584c6b62ddeefc7e61789ceb786c485f_normal.png", "source": "<a href="http://twmode.sf.net/" rel="nofollow">twmode</a>", "text": "@neiltyson A species that relies completely on refined liquified dinosaurs will be the clear choice for slave labor.", "to_user": "neiltyson", "to_user_id": 19725644, "to_user_id_str": "19725644", "to_user_name": "Neil deGrasse Tyson", "in_reply_to_status_id": 148827351818575870, "in_reply_to_status_id_str": "148827351818575873"}, +{"created_at": "Mon, 19 Dec 2011 18:30:02 +0000", "from_user": "SalsaChoicer", "from_user_id": 121968669, "from_user_id_str": "121968669", "from_user_name": "Salsa Choicer", "geo": null, "id": 148832476096249860, "id_str": "148832476096249856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://google.com" rel="nofollow">SalsaChoicer</a>", "text": "did you know? dinosaurs hug squirels in the morning", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:58 +0000", "from_user": "alegrande", "from_user_id": 26910587, "from_user_id_str": "26910587", "from_user_name": "Audrey LeGrande", "geo": null, "id": 148832459629412350, "id_str": "148832459629412352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1268996455/Audrey_Pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1268996455/Audrey_Pic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@briankornell Brianosaurus Rex? (the most badass of all the dinosaurs!)", "to_user": "briankornell", "to_user_id": 14229479, "to_user_id_str": "14229479", "to_user_name": "Brian Kornell", "in_reply_to_status_id": 148826715894980600, "in_reply_to_status_id_str": "148826715894980608"}, +{"created_at": "Mon, 19 Dec 2011 18:29:51 +0000", "from_user": "TanyaDashh", "from_user_id": 120842626, "from_user_id_str": "120842626", "from_user_name": "Tanya M", "geo": null, "id": 148832429803704320, "id_str": "148832429803704320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691367830/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691367830/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:42 +0000", "from_user": "dinosaurs", "from_user_id": 14277305, "from_user_id_str": "14277305", "from_user_name": "dinosaurs", "geo": null, "id": 148832394764484600, "id_str": "148832394764484608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1585179573/dflogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585179573/dflogo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@terrafossil Oh come on. What about the refrigerator one? If you have any better jokes let me know and I'll add them. :)", "to_user": "terrafossil", "to_user_id": 22167301, "to_user_id_str": "22167301", "to_user_name": "Terra Fossil Wine", "in_reply_to_status_id": 148810366594461700, "in_reply_to_status_id_str": "148810366594461697"}, +{"created_at": "Mon, 19 Dec 2011 18:29:32 +0000", "from_user": "_EviE1", "from_user_id": 53059640, "from_user_id_str": "53059640", "from_user_name": "EviE Dawson", "geo": null, "id": 148832353781952500, "id_str": "148832353781952512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1674591980/nsh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674591980/nsh_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "dinosaurs are cool af. wish i could've had one as a pet.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:54 +0000", "from_user": "DeeFock", "from_user_id": 335672037, "from_user_id_str": "335672037", "from_user_name": "danielle poopinson", "geo": null, "id": 148832193622458370, "id_str": "148832193622458368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1554065621/ELMMOOOO_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554065621/ELMMOOOO_normal.png", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Math without @doloreszboros is like the world without dinosaurs....#pointless", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:04 +0000", "from_user": "HannaRepasky1", "from_user_id": 439274892, "from_user_id_str": "439274892", "from_user_name": "Hanna Repasky", "geo": null, "id": 148831983198421000, "id_str": "148831983198420992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698411509/gfbf_normal.jpg", "profile_image_url_https": null, "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Fantastic Dinosaurs of the Movies: http://t.co/UdirkTu1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:50 +0000", "from_user": "imrel0ad", "from_user_id": 213762816, "from_user_id_str": "213762816", "from_user_name": "Phil", "geo": null, "id": 148831673314836480, "id_str": "148831673314836480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693931657/8C01D2BC-0C40-4E19-9454-764F17B18AFD_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693931657/8C01D2BC-0C40-4E19-9454-764F17B18AFD_normal", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "RT @TechieRuss: How the hell do we have mobile phones that can make calls, play movies, games; but our cars run by burning decomposed dinosaurs?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:45 +0000", "from_user": "djvanness", "from_user_id": 35789947, "from_user_id_str": "35789947", "from_user_name": "Dave Vanness", "geo": null, "id": 148831650057437200, "id_str": "148831650057437184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1595443751/DJV_headshot_20111012_twitter2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1595443751/DJV_headshot_20111012_twitter2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Especially if they look like dinosaurs. That would be really awkward. \"@neiltyson ...embarrassed to tell them we still dig fossil fuels...\"", "to_user": "neiltyson", "to_user_id": 19725644, "to_user_id_str": "19725644", "to_user_name": "Neil deGrasse Tyson", "in_reply_to_status_id": 148827351818575870, "in_reply_to_status_id_str": "148827351818575873"}, +{"created_at": "Mon, 19 Dec 2011 18:26:14 +0000", "from_user": "THE_ONLY_MRMURO", "from_user_id": 271693327, "from_user_id_str": "271693327", "from_user_name": "No No Noah", "geo": null, "id": 148831520956751870, "id_str": "148831520956751873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701413914/lTae9IS0_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701413914/lTae9IS0_normal", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @Geo_MacDaddy: I remember when I used to eat those little vitamins made out of dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:42 +0000", "from_user": "AV_Narros94", "from_user_id": 242469207, "from_user_id_str": "242469207", "from_user_name": "Alex Villa Narros", "geo": null, "id": 148831388018290700, "id_str": "148831388018290688", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675536371/f1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675536371/f1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Esta bien la cancion Garden del grupo Totally enourmous extinct dinosaurs. Es de un anuncio de Nokia", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:42 +0000", "from_user": "eghenry", "from_user_id": 22043042, "from_user_id_str": "22043042", "from_user_name": "Ethan Henry", "geo": null, "id": 148831387301052400, "id_str": "148831387301052416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/83611185/icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/83611185/icon_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@isaach fear FORTRAN? In the same way I fear DINOSAURS I suppose. Sadly, I did briefly learn FORTRAN in my teens.", "to_user": "isaach", "to_user_id": 7852612, "to_user_id_str": "7852612", "to_user_name": "Isaac Hepworth", "in_reply_to_status_id": 148829659725963260, "in_reply_to_status_id_str": "148829659725963264"}, +{"created_at": "Mon, 19 Dec 2011 18:25:27 +0000", "from_user": "TechieRuss", "from_user_id": 105058222, "from_user_id_str": "105058222", "from_user_name": "Russ Feferman", "geo": null, "id": 148831324642344960, "id_str": "148831324642344960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1587023355/me_as_a_simpson_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587023355/me_as_a_simpson_2_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "How the hell do we have mobile phones that can make calls, play movies, games; but our cars run by burning decomposed dinosaurs?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:27 +0000", "from_user": "Eduardutz", "from_user_id": 143104771, "from_user_id_str": "143104771", "from_user_name": "Eduardo Alonzo", "geo": null, "id": 148831323279204350, "id_str": "148831323279204352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1574307720/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1574307720/image_normal.jpg", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "I'm at World's Largest Dinosaurs Exhibit at the American Museum of Natural History (Central Park West, New York) http://t.co/gnsLaiii", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:21 +0000", "from_user": "bazingainc", "from_user_id": 210708762, "from_user_id_str": "210708762", "from_user_name": "Irene", "geo": null, "id": 148831297521983500, "id_str": "148831297521983488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1564859285/BUFFY_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1564859285/BUFFY_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@CraigyCricket Lol! So right! :) I've been told by faithful that dinosaurs' bones were spread on Earth by devil and his army of atheists.", "to_user": "CraigyCricket", "to_user_id": 145596498, "to_user_id_str": "145596498", "to_user_name": "pi = 3.1415926", "in_reply_to_status_id": 148830096705339400, "in_reply_to_status_id_str": "148830096705339393"}, +{"created_at": "Mon, 19 Dec 2011 18:25:14 +0000", "from_user": "CrystalTheGun", "from_user_id": 68468336, "from_user_id_str": "68468336", "from_user_name": "Crystal Gan", "geo": null, "id": 148831271542456320, "id_str": "148831271542456322", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1679301917/rsz_1dsc08777_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679301917/rsz_1dsc08777_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", "text": "@tipsychivas sorta. Except these dinosaurs are made of diamonds.", "to_user": "tipsychivas", "to_user_id": 73337101, "to_user_id_str": "73337101", "to_user_name": "Bryan Ong", "in_reply_to_status_id": 148831045259755520, "in_reply_to_status_id_str": "148831045259755521"}, +{"created_at": "Mon, 19 Dec 2011 18:24:49 +0000", "from_user": "DMAILscitech", "from_user_id": 111557141, "from_user_id_str": "111557141", "from_user_name": "Daily Mail Sci Tech", "geo": null, "id": 148831163023237120, "id_str": "148831163023237120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/744234716/science_icon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/744234716/science_icon_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "First-ever evidence of giant plant-eating dinosaurs found in Antarctica - from a time when it would have been gr... http://t.co/vGXYkIGM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:21 +0000", "from_user": "terrbear_legit", "from_user_id": 343082978, "from_user_id_str": "343082978", "from_user_name": "Terry Ward ", "geo": null, "id": 148831048493576200, "id_str": "148831048493576193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1621487886/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621487886/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\"see see. Hot girl, Volkswagen Jetta. It a law like... Water... Or dinosaurs.\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:20 +0000", "from_user": "tipsychivas", "from_user_id": 73337101, "from_user_id_str": "73337101", "from_user_name": "Bryan Ong", "geo": null, "id": 148831045259755520, "id_str": "148831045259755521", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1032118885/polaroid_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1032118885/polaroid_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@CrystalTheGun is it like a collection of extinct dinosaurs?", "to_user": "CrystalTheGun", "to_user_id": 68468336, "to_user_id_str": "68468336", "to_user_name": "Crystal Gan", "in_reply_to_status_id": 148830833720041470, "in_reply_to_status_id_str": "148830833720041472"}, +{"created_at": "Mon, 19 Dec 2011 18:24:08 +0000", "from_user": "TheManwife", "from_user_id": 16208245, "from_user_id_str": "16208245", "from_user_name": "David Kaa", "geo": null, "id": 148830994131206140, "id_str": "148830994131206144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1672424551/Profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672424551/Profile_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I played a game of fighting ninja dinosaurs with the girl. My High School guidance counselor warned me this would happen.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:24:03 +0000", "from_user": "G33KPRON", "from_user_id": 216765228, "from_user_id_str": "216765228", "from_user_name": "G33KPRON", "geo": null, "id": 148830971221913600, "id_str": "148830971221913600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1601326371/g33kpron_icon_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601326371/g33kpron_icon_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "#dinotweet RT @TdotComics If you dig #DinosaurComics check out our review: http://t.co/TSRmORh9", "to_user": "TdotComics", "to_user_id": 75476072, "to_user_id_str": "75476072", "to_user_name": "Alice Quinn", "in_reply_to_status_id": 148830026308124670, "in_reply_to_status_id_str": "148830026308124672"}, +{"created_at": "Mon, 19 Dec 2011 18:24:00 +0000", "from_user": "RossCargill4", "from_user_id": 236071135, "from_user_id_str": "236071135", "from_user_name": "Ross Cargill", "geo": null, "id": 148830958706110460, "id_str": "148830958706110465", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687797301/11122011223_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687797301/11122011223_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "eating yer turkey dinosaurs in the living room cos yer a big boy noo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:50 +0000", "from_user": "AnnaLangridge_", "from_user_id": 269573128, "from_user_id_str": "269573128", "from_user_name": "Anna Langridge", "geo": null, "id": 148830919220920320, "id_str": "148830919220920320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1622775125/PP_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622775125/PP_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@_SarahHastings im gonna attempt to cook christmas dinner, my mum will help so no chicken dinosaurs :P up for it?", "to_user": "_SarahHastings", "to_user_id": 293704091, "to_user_id_str": "293704091", "to_user_name": "Sarah Hastings", "in_reply_to_status_id": 148826005329551360, "in_reply_to_status_id_str": "148826005329551361"}, +{"created_at": "Mon, 19 Dec 2011 18:23:03 +0000", "from_user": "Tennieujp", "from_user_id": 440184023, "from_user_id_str": "440184023", "from_user_name": "Tennie Standafer", "geo": null, "id": 148830721451114500, "id_str": "148830721451114497", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700509324/large_DSC_0961_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700509324/large_DSC_0961_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Saber Rider:Oh Boy Dinosaurs [VHS]: http://t.co/mZvobiX2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:13 +0000", "from_user": "Rubyewkn", "from_user_id": 431725672, "from_user_id_str": "431725672", "from_user_name": "Rubye Cane", "geo": null, "id": 148830258727092220, "id_str": "148830258727092224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681084353/2ooc0xa452_128359117_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681084353/2ooc0xa452_128359117_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Konami Kids Playground: Dinosaurs, Shapes & Colors: Konami Kids Playground is an innovative new series of PlaySt... http://t.co/WMXVlOoL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:55 +0000", "from_user": "marklane74", "from_user_id": 213022898, "from_user_id_str": "213022898", "from_user_name": "Mark Lane", "geo": null, "id": 148830182181048320, "id_str": "148830182181048320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675681194/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675681194/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@AndrewB2 yeah! U didn't think I'd waste my time on bernard fucking Matthews' turkey dinosaurs did u?", "to_user": "AndrewB2", "to_user_id": 20387791, "to_user_id_str": "20387791", "to_user_name": "Andrew Brownlee", "in_reply_to_status_id": 148827060142489600, "in_reply_to_status_id_str": "148827060142489601"}, +{"created_at": "Mon, 19 Dec 2011 18:20:31 +0000", "from_user": "Krimstecher", "from_user_id": 350334913, "from_user_id_str": "350334913", "from_user_name": "Krimstecher", "geo": null, "id": 148830082029457400, "id_str": "148830082029457408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1482949770/Tim7406_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1482949770/Tim7406_normal.jpg", "source": "<a href="http://soundcloud.com" rel="nofollow">SoundCloud</a>", "text": "My new sounds: Krimson Tide - Cadillacs & Dinosaurs http://t.co/vulM87JI on #SoundCloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:18 +0000", "from_user": "TdotComics", "from_user_id": 75476072, "from_user_id_str": "75476072", "from_user_name": "Alice Quinn", "geo": null, "id": 148830026308124670, "id_str": "148830026308124672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1538459551/Alice_thumbnail_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538459551/Alice_thumbnail_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "If you dig #DinosaurComics check out our review: http://t.co/yTXYkE0E + the Dinosaur Comics & @TheBeguiling holiday party...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:04 +0000", "from_user": "bewhite93", "from_user_id": 339473492, "from_user_id_str": "339473492", "from_user_name": "Brittany White", "geo": null, "id": 148829968107962370, "id_str": "148829968107962368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696640346/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696640346/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Pretended to be dinosaurs. #IWasThatKid", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:00 +0000", "from_user": "amenavore", "from_user_id": 321055170, "from_user_id_str": "321055170", "from_user_name": "Amena Imran", "geo": null, "id": 148829951204917250, "id_str": "148829951204917248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682252098/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682252098/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:17 +0000", "from_user": "HeyItsChellzxx", "from_user_id": 38907071, "from_user_id_str": "38907071", "from_user_name": "MichelleRosinaaWoods", "geo": null, "id": 148829770317185020, "id_str": "148829770317185024", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700660490/Untitled_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700660490/Untitled_normal.png", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "Dinosaurs! :) http://t.co/NQvFz5V5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:19 +0000", "from_user": "itsBieberella", "from_user_id": 253266496, "from_user_id_str": "253266496", "from_user_name": "\\u2112\\u03B9\\u03BD\\u212F \\u2112\\u2134\\u03BD\\u212F \\u212C\\u212F\\u2113\\u03B9\\u212F\\u044A\\u2665", "geo": null, "id": 148829527215308800, "id_str": "148829527215308801", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700932558/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700932558/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\"Kiss me if I'm wrong but dinosaurs still exist right? ;) \"\\n- @LittlecBeadles \\n\\nYOU'RE WRONG BABE, COME TO MOMMAAA...!!\\n\\nHahah", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:10 +0000", "from_user": "Official1DSC", "from_user_id": 384638725, "from_user_id_str": "384638725", "from_user_name": "Bridget", "geo": null, "id": 148828989622988800, "id_str": "148828989622988801", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1671918230/1dscstate.5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671918230/1dscstate.5_normal.jpg", "source": "<a href="http://www.panoramicsoft.com/mobileapps/motweets/moTweets.php" rel="nofollow">Panoramic moTweets</a>", "text": "@Harry_Styles @savan_kotecha don't worry, i'll get you some dinosaurs.", "to_user": "Harry_Styles", "to_user_id": 181561712, "to_user_id_str": "181561712", "to_user_name": "Harry Styles", "in_reply_to_status_id": 148827215927316480, "in_reply_to_status_id_str": "148827215927316480"}, +{"created_at": "Mon, 19 Dec 2011 18:15:48 +0000", "from_user": "Chasing_Tasko", "from_user_id": 386037573, "from_user_id_str": "386037573", "from_user_name": "ChasingTasko", "geo": null, "id": 148828895192416260, "id_str": "148828895192416260", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1592625973/336907_221744671218572_207930112600028_605012_1527758387_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592625973/336907_221744671218572_207930112600028_605012_1527758387_o_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/tcwrPyeA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:21 +0000", "from_user": "Mylifeofart1", "from_user_id": 315315075, "from_user_id_str": "315315075", "from_user_name": "MyLifeofArt", "geo": null, "id": 148828780834721800, "id_str": "148828780834721793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1391507497/Blueprint_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1391507497/Blueprint_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "#Photo of some #Dinosaurs Fighting Over a Stuffed #Animal\\thttp://t.co/0tTZtLsS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:30 +0000", "from_user": "Chris_Randall", "from_user_id": 15650346, "from_user_id_str": "15650346", "from_user_name": "Chris_Randall", "geo": null, "id": 148828569848647680, "id_str": "148828569848647680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1201216747/ad_bot_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1201216747/ad_bot_2_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "@neiltyson It'd be way more embarrassing if the aliens were dinosaurs.", "to_user": "neiltyson", "to_user_id": 19725644, "to_user_id_str": "19725644", "to_user_name": "Neil deGrasse Tyson", "in_reply_to_status_id": 148827351818575870, "in_reply_to_status_id_str": "148827351818575873"}, +{"created_at": "Mon, 19 Dec 2011 18:14:25 +0000", "from_user": "Musscle", "from_user_id": 39523754, "from_user_id_str": "39523754", "from_user_name": "Catherine ", "geo": null, "id": 148828547090366460, "id_str": "148828547090366465", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/210399356/thumbnail2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/210399356/thumbnail2_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@Andriana1016 I went 10 years ago next week, so I don't remember the end. The dinosaurs were freakin' awesome.", "to_user": "Andriana1016", "to_user_id": 201380394, "to_user_id_str": "201380394", "to_user_name": "Andriana", "in_reply_to_status_id": 148826260162887680, "in_reply_to_status_id_str": "148826260162887680"}, +{"created_at": "Mon, 19 Dec 2011 18:13:44 +0000", "from_user": "Kelvin_TBB", "from_user_id": 242401203, "from_user_id_str": "242401203", "from_user_name": "Kelvin Vazquetelles", "geo": null, "id": 148828374582820860, "id_str": "148828374582820864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1224673322/me_and_carl2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1224673322/me_and_carl2_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I favorited a @YouTube video from @CanPOREOTICS http://t.co/K7ouTRWb Totally Enormous Extinct Dinosaurs - Dream", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:32 +0000", "from_user": "abigailcasson", "from_user_id": 343549716, "from_user_id_str": "343549716", "from_user_name": "abigail casson", "geo": null, "id": 148828323542335500, "id_str": "148828323542335488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668174411/asdfghjkrfsed_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668174411/asdfghjkrfsed_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Savan_Kotecha @Harry_Styles I am with Savan on this.. WE WANT DINOSAURS! ;L", "to_user": "Savan_Kotecha", "to_user_id": 102872654, "to_user_id_str": "102872654", "to_user_name": "Savan Kotecha", "in_reply_to_status_id": 148802222170456060, "in_reply_to_status_id_str": "148802222170456065"}, +{"created_at": "Mon, 19 Dec 2011 18:13:13 +0000", "from_user": "Kelvin_TBB", "from_user_id": 242401203, "from_user_id_str": "242401203", "from_user_name": "Kelvin Vazquetelles", "geo": null, "id": 148828245175959550, "id_str": "148828245175959552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1224673322/me_and_carl2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1224673322/me_and_carl2_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube video from @CanPOREOTICS http://t.co/K7ouTRWb Totally Enormous Extinct Dinosaurs - Dream On", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:01 +0000", "from_user": "handahbt64", "from_user_id": 245268131, "from_user_id_str": "245268131", "from_user_name": "Don Handah", "geo": null, "id": 148827942632439800, "id_str": "148827942632439808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1230657472/etro_shoe_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1230657472/etro_shoe_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Last Dinosaurs- Honolulu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:16 +0000", "from_user": "_theLegitMisfit", "from_user_id": 247093111, "from_user_id_str": "247093111", "from_user_name": "noodleBoodle\\u2665", "geo": null, "id": 148827753465135100, "id_str": "148827753465135104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687835769/ColorTouch-1323614142400-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687835769/ColorTouch-1323614142400-1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Indian grave , where the dinosaurs grazed.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:46 +0000", "from_user": "whyyradiotimes", "from_user_id": 100002112, "from_user_id_str": "100002112", "from_user_name": "Radio Times", "geo": null, "id": 148827627933810700, "id_str": "148827627933810689", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/597045921/radiotimes-button_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/597045921/radiotimes-button_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Did you miss Paleontologist Peter Dodson @pennvet & \"Dino Don\" Lessem on #Dinosaurs? Here's MP3: http://t.co/tmd61V0O", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:45 +0000", "from_user": "usearubber", "from_user_id": 98683355, "from_user_id_str": "98683355", "from_user_name": "James Ridgley", "geo": null, "id": 148827626142830600, "id_str": "148827626142830592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697825989/avatar_normal.JPEG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697825989/avatar_normal.JPEG", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "Making baby dinosaurs RT @BiGFiNEBitCH: \\u201C@usearubber: #DOH\\u201D but where is the qrex @KushAndCondoms", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:01 +0000", "from_user": "SalsaChoicer", "from_user_id": 121968669, "from_user_id_str": "121968669", "from_user_name": "Salsa Choicer", "geo": null, "id": 148827439676665860, "id_str": "148827439676665856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://google.com" rel="nofollow">SalsaChoicer</a>", "text": "did you know? dinosaurs kisse light sabers when happy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:52 +0000", "from_user": "katiebarnes92", "from_user_id": 427157876, "from_user_id_str": "427157876", "from_user_name": "Katie Barnes", "geo": null, "id": 148827401051308030, "id_str": "148827401051308033", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1676190236/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676190236/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@storma24 yessss they are so good! smiley faces and turkey dinosaurs is one of my favourite meals! :) #mmm", "to_user": "storma24", "to_user_id": 16966022, "to_user_id_str": "16966022", "to_user_name": "Prathiv Kholia", "in_reply_to_status_id": 148826068080525300, "in_reply_to_status_id_str": "148826068080525313"}, +{"created_at": "Mon, 19 Dec 2011 18:08:37 +0000", "from_user": "mabanham", "from_user_id": 61431097, "from_user_id_str": "61431097", "from_user_name": "Matthew Banham", "geo": null, "id": 148827087229288450, "id_str": "148827087229288448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693593488/Da_crew_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693593488/Da_crew_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Strudelburg_IV omg hiiiiiiii gahasoasdoas miss u guys and jack is the one who smells of dinosaurs", "to_user": "Strudelburg_IV", "to_user_id": 263775833, "to_user_id_str": "263775833", "to_user_name": "Jack Lewis", "in_reply_to_status_id": 148826561951440900, "in_reply_to_status_id_str": "148826561951440896"}, +{"created_at": "Mon, 19 Dec 2011 18:08:30 +0000", "from_user": "AndrewB2", "from_user_id": 20387791, "from_user_id_str": "20387791", "from_user_name": "Andrew Brownlee", "geo": null, "id": 148827060142489600, "id_str": "148827060142489601", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1599417018/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599417018/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@marklane74 real dinosaurs?", "to_user": "marklane74", "to_user_id": 213022898, "to_user_id_str": "213022898", "to_user_name": "Mark Lane", "in_reply_to_status_id": 148826042650468350, "in_reply_to_status_id_str": "148826042650468352"}, +{"created_at": "Mon, 19 Dec 2011 18:07:42 +0000", "from_user": "fractalica", "from_user_id": 124586780, "from_user_id_str": "124586780", "from_user_name": "Francisca Concha", "geo": null, "id": 148826859235311600, "id_str": "148826859235311616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1626019958/avatar2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626019958/avatar2_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Kiss me if I'm wrong, but dinosaurs still exist, right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:07:20 +0000", "from_user": "NacyLovesYou", "from_user_id": 320404832, "from_user_id_str": "320404832", "from_user_name": "Nacine Hamrick", "geo": null, "id": 148826766738329600, "id_str": "148826766738329600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692142482/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692142482/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Kiss me if I'm wrong, but dinosaurs still exist right? (;", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:27 +0000", "from_user": "JuliaWM", "from_user_id": 16801632, "from_user_id_str": "16801632", "from_user_name": "JuliaWM", "geo": null, "id": 148826542636670980, "id_str": "148826542636670976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1160635094/Photo_59_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1160635094/Photo_59_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "I've just learned that the actress who played Lucille Bluth also voiced the mom on Dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:04:28 +0000", "from_user": "marklane74", "from_user_id": 213022898, "from_user_id_str": "213022898", "from_user_name": "Mark Lane", "geo": null, "id": 148826042650468350, "id_str": "148826042650468352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675681194/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675681194/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Dinosaurs, chips and beans for tea! \\n#schooldinners\\nMight have jam roly poly for pud!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:03:56 +0000", "from_user": "Scarletstand", "from_user_id": 27274545, "from_user_id_str": "27274545", "from_user_name": "Emma Burnell", "geo": null, "id": 148825907929432060, "id_str": "148825907929432064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687945406/Emma_Burnell_Headshot_300dpi_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687945406/Emma_Burnell_Headshot_300dpi_normal.jpeg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Markfergusonuk @bengoldacre @sunny_hundal @misselliemae tbh the dinosaurs weren't very dino-like. Just a search & replace for burly bloke.", "to_user": "Markfergusonuk", "to_user_id": 28079313, "to_user_id_str": "28079313", "to_user_name": "Mark Ferguson", "in_reply_to_status_id": 148819295726608400, "in_reply_to_status_id_str": "148819295726608384"}, +{"created_at": "Mon, 19 Dec 2011 18:03:42 +0000", "from_user": "CaylaPridee", "from_user_id": 73735313, "from_user_id_str": "73735313", "from_user_name": "Cayla Pride", "geo": null, "id": 148825851436347400, "id_str": "148825851436347393", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1615764412/cp_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615764412/cp_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "I'm created by my love for dinosaurs and my overwhelming intentions of becoming a distinct animal , or a disease !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:03:37 +0000", "from_user": "MilesPEdgeworth", "from_user_id": 15348894, "from_user_id_str": "15348894", "from_user_name": "Eric Dziadzio", "geo": null, "id": 148825828753547260, "id_str": "148825828753547264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1424602703/snapshot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1424602703/snapshot_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\"What if Kim Jong-Il didn't die? What if he was sent to another dimension... where people evolved... from dinosaurs...\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:03:18 +0000", "from_user": "lisellebailey", "from_user_id": 18341751, "from_user_id_str": "18341751", "from_user_name": "Liselle Bailey", "geo": null, "id": 148825749049196540, "id_str": "148825749049196544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1253241059/liselle118e_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1253241059/liselle118e_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "Friendly Fires were the best band I've seen in ages.amazing show.support from CHAD VALLEY & Totally Enormous Extinct Dinosaurs were ace 2!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:03:10 +0000", "from_user": "AskingAlexs", "from_user_id": 417079943, "from_user_id_str": "417079943", "from_user_name": "LittleRedHidingHood\\u25B2", "geo": null, "id": 148825716040015870, "id_str": "148825716040015872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1648579329/asas_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648579329/asas_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@fir3works They are allright. Dinosaurs go rawr. ;D", "to_user": "fir3works", "to_user_id": 346665351, "to_user_id_str": "346665351", "to_user_name": "gemma redpath \\uFF61\\u25D5\\u203F\\u25D5\\uFF61", "in_reply_to_status_id": 148825314171158530, "in_reply_to_status_id_str": "148825314171158528"}, +{"created_at": "Mon, 19 Dec 2011 18:03:00 +0000", "from_user": "becki_says_rawr", "from_user_id": 45601482, "from_user_id_str": "45601482", "from_user_name": "Becki", "geo": null, "id": 148825675825025020, "id_str": "148825675825025024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1621083716/P4180098_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621083716/P4180098_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ShmittenKitten: \"Kiss me if I'm wrong, but dinosaurs still exist, right?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:02:12 +0000", "from_user": "jakekennedy54", "from_user_id": 248376173, "from_user_id_str": "248376173", "from_user_name": "Jake Kennedy", "geo": null, "id": 148825472111869950, "id_str": "148825472111869952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1292546466/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1292546466/me_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @tomtheminx: @Schwarzenegger the pavement was his enemy. What killed all the dinosaurs..the ice age. #onelinerlegend", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:46 +0000", "from_user": "vociferous_girl", "from_user_id": 49612263, "from_user_id_str": "49612263", "from_user_name": "Ana Sta Sia", "geo": null, "id": 148825364376989700, "id_str": "148825364376989700", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1316458430/LHCn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1316458430/LHCn_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "This might beat, \"Nice shoes, wanna...\" for best line ever. RT @ShmittenKitten \"Kiss me if I'm wrong, but dinosaurs still exist, right?\"", "to_user": "ShmittenKitten", "to_user_id": 15927393, "to_user_id_str": "15927393", "to_user_name": "Anna Goldfarb", "in_reply_to_status_id": 148822143096987650, "in_reply_to_status_id_str": "148822143096987648"}, +{"created_at": "Mon, 19 Dec 2011 18:01:22 +0000", "from_user": "BtwoEs1NanothaE", "from_user_id": 184601961, "from_user_id_str": "184601961", "from_user_name": " Randall KaShod ", "geo": null, "id": 148825262044352500, "id_str": "148825262044352512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686388206/BtwoEs1NanothaE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686388206/BtwoEs1NanothaE_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@Peyton_CHANNING I meant ta say best thing since dinosaurs", "to_user": "Peyton_CHANNING", "to_user_id": 229546825, "to_user_id_str": "229546825", "to_user_name": "Channing ", "in_reply_to_status_id": 148824904412831740, "in_reply_to_status_id_str": "148824904412831745"}, +{"created_at": "Mon, 19 Dec 2011 18:01:19 +0000", "from_user": "DINO_FUN", "from_user_id": 393354538, "from_user_id_str": "393354538", "from_user_name": "Dinner For Dinosaurs", "geo": null, "id": 148825248857460740, "id_str": "148825248857460737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1594391469/286433_274639612561722_274091102616573_1162428_7746211_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1594391469/286433_274639612561722_274091102616573_1162428_7746211_o_normal.jpg", "source": "<a href="http://www.paywithatweet.com" rel="nofollow">Pay with a Tweet</a>", "text": "Have you heard Dinner For Dinosaurs - Lets Get it on? CHECK IT OUT! http://t.co/yh3cYNtF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:00 +0000", "from_user": "SalsaChoicer", "from_user_id": 121968669, "from_user_id_str": "121968669", "from_user_name": "Salsa Choicer", "geo": null, "id": 148824921202622460, "id_str": "148824921202622465", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://google.com" rel="nofollow">SalsaChoicer</a>", "text": "did you know? dinosaurs love lazers randomly", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:56 +0000", "from_user": "Peyton_CHANNING", "from_user_id": 229546825, "from_user_id_str": "229546825", "from_user_name": "Channing ", "geo": null, "id": 148824904412831740, "id_str": "148824904412831745", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686366728/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686366728/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "\\u2026\\u2026. what that mean? \\u201C@BtwoEs1NanothaE: Twitter the best since dinosaurs\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:46 +0000", "from_user": "Wow_its_Stevie", "from_user_id": 376767443, "from_user_id_str": "376767443", "from_user_name": "Stevie Harrison", "geo": null, "id": 148824860167127040, "id_str": "148824860167127040", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691882705/386652_10150420726292120_701102119_8958609_7667849_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691882705/386652_10150420726292120_701102119_8958609_7667849_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Turkey dinosaurs for dinner. So much swag.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:35 +0000", "from_user": "sexypartyanimal", "from_user_id": 62326409, "from_user_id_str": "62326409", "from_user_name": "kristina birkhof", "geo": null, "id": 148824813018939400, "id_str": "148824813018939392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698608358/kristina_b_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698608358/kristina_b_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/0p9Es0x1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:17 +0000", "from_user": "BtwoEs1NanothaE", "from_user_id": 184601961, "from_user_id_str": "184601961", "from_user_name": " Randall KaShod ", "geo": null, "id": 148824739916427260, "id_str": "148824739916427264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686388206/BtwoEs1NanothaE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686388206/BtwoEs1NanothaE_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Twitter the best since dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:04 +0000", "from_user": "LuieFig", "from_user_id": 320396126, "from_user_id_str": "320396126", "from_user_name": "Luis G. Figueroa", "geo": null, "id": 148824683662417920, "id_str": "148824683662417923", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1491324616/SCAN0001-1_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1491324616/SCAN0001-1_normal.JPG", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "I'm at World's Largest Dinosaurs Exhibit at the American Museum of Natural History (Central Park West, New York) http://t.co/t7Wju5nh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:58 +0000", "from_user": "carisagar", "from_user_id": 210569234, "from_user_id_str": "210569234", "from_user_name": "Cari Sagar", "geo": null, "id": 148824657968115700, "id_str": "148824657968115713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1672109255/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672109255/image_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@JordanOster your perfect pick up line? \"@ShmittenKitten: \"Kiss me if I'm wrong, but dinosaurs still exist, right?\"\"", "to_user": "JordanOster", "to_user_id": 259917701, "to_user_id_str": "259917701", "to_user_name": "Jordan Oster"}, +{"created_at": "Mon, 19 Dec 2011 17:58:24 +0000", "from_user": "WestFour", "from_user_id": 14628702, "from_user_id_str": "14628702", "from_user_name": "Jonathan Simnett", "geo": null, "id": 148824518004195330, "id_str": "148824518004195329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1052460961/Team-RC_202009_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1052460961/Team-RC_202009_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @redluker: \\u201C@PerveenAkhtar: Anyone got any ideas on what to buy 4 yr old boy for Xmas?\\u201D Lego - everyone loves Lego < Dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:52 +0000", "from_user": "arc23", "from_user_id": 16668895, "from_user_id_str": "16668895", "from_user_name": "ADAM COHOON", "geo": null, "id": 148824383786450940, "id_str": "148824383786450946", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/61602572/arc23lgo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/61602572/arc23lgo_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/IuaYg2Rk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:20 +0000", "from_user": "AlexaMarisa", "from_user_id": 26908450, "from_user_id_str": "26908450", "from_user_name": "Alexa Marisa", "geo": null, "id": 148824248507580400, "id_str": "148824248507580416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1684594027/316843_187514047999973_100002241370641_396628_819286593_n-1_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684594027/316843_187514047999973_100002241370641_396628_819286593_n-1_normal.jpeg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#IWasThatKid who would be found playing with the boys in the dirt with hot wheels and dinosaurs than with the girls playing dress up.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:15 +0000", "from_user": "emelynshaharir", "from_user_id": 25780205, "from_user_id_str": "25780205", "from_user_name": "Green Pea \\u2605", "geo": null, "id": 148824227364089860, "id_str": "148824227364089856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702482930/DSC00681_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702482930/DSC00681_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@ainjasmani Barney is a dinosaur. Dinosaurs remind me of Jjong. Jjong reminds me of SHINee. SHINee reminds me of you. AND YOU! I miss you :(", "to_user": "ainjasmani", "to_user_id": 220550344, "to_user_id_str": "220550344", "to_user_name": "Ain Jasmani \\u265B", "in_reply_to_status_id": 148822846339158000, "in_reply_to_status_id_str": "148822846339158017"}, +{"created_at": "Mon, 19 Dec 2011 17:57:01 +0000", "from_user": "NGAThA_", "from_user_id": 63410317, "from_user_id_str": "63410317", "from_user_name": "Ngata Holele ", "geo": null, "id": 148824170631933950, "id_str": "148824170631933952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1690907847/331433744_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690907847/331433744_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Lol... RT @Fifi_McCaype: :') \\u2661 RT @LAMA_WOLF: Kiss Me If I'm wrong ,But Dinosaurs still exist right :')", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:43 +0000", "from_user": "MindlessJordan", "from_user_id": 317802749, "from_user_id_str": "317802749", "from_user_name": "\\uE420\\uE420PW GANG\\uE420\\uE420", "geo": null, "id": 148824092592717820, "id_str": "148824092592717824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697605330/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697605330/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@MindlessBhavior Kiss me if I'm wrong but, dinosaurs are still alive, right??", "to_user": "MindlessBhavior", "to_user_id": 116325068, "to_user_id_str": "116325068", "to_user_name": "Mindless Behavior"}, +{"created_at": "Mon, 19 Dec 2011 17:56:21 +0000", "from_user": "ToysDiscountPri", "from_user_id": 416180527, "from_user_id_str": "416180527", "from_user_name": "ToysDiscountPrices", "geo": null, "id": 148824002729742340, "id_str": "148824002729742336", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1646543511/41dhfd6AF0L._SL500_AA300__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646543511/41dhfd6AF0L._SL500_AA300__normal.jpg", "source": "<a href="http://toysdiscountprices.com/" rel="nofollow">ToysDiscountPrices</a>", "text": "http://t.co/G4dhVaas Discount dinosaurs toys toddlers - Dinosaur Toddler Costume", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:12 +0000", "from_user": "Tynaflasaurus", "from_user_id": 354612456, "from_user_id_str": "354612456", "from_user_name": "Nafla Poff", "geo": null, "id": 148823964230234100, "id_str": "148823964230234113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1494057730/Photo_11_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1494057730/Photo_11_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ShmittenKitten: \"Kiss me if I'm wrong, but dinosaurs still exist, right?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:10 +0000", "from_user": "briannaoneill", "from_user_id": 61496881, "from_user_id_str": "61496881", "from_user_name": "Brianna O'Neill", "geo": null, "id": 148823956579819520, "id_str": "148823956579819520", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1598164219/Photo_on_2011-10-19_at_15.19__3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598164219/Photo_on_2011-10-19_at_15.19__3_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Can't escape dinosaurs ever #ahhh http://t.co/diwYnqGX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:16 +0000", "from_user": "hometoolorg", "from_user_id": 370018427, "from_user_id_str": "370018427", "from_user_name": "HomeTool Reviews", "geo": null, "id": 148823728342564860, "id_str": "148823728342564864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1534179655/Bee-256_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534179655/Bee-256_normal.png", "source": "<a href="http://hometool.org" rel="nofollow">hommetool.org</a>", "text": "RoomMates RMK1043SCS Dinosaurs Peel & Stick Wall Deca http://t.co/ERN2eldn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:54:11 +0000", "from_user": "MaggieDraksler", "from_user_id": 411914490, "from_user_id_str": "411914490", "from_user_name": "Maggie Draksler", "geo": null, "id": 148823454022516740, "id_str": "148823454022516736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668781286/imm455uF_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668781286/imm455uF_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:53:46 +0000", "from_user": "TheCuriousCase", "from_user_id": 23875046, "from_user_id_str": "23875046", "from_user_name": "Katherine Ismyname", "geo": null, "id": 148823351387893760, "id_str": "148823351387893760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1098742387/twitpiccrazy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1098742387/twitpiccrazy_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @SethMacFarlane: There\\u2019s a decent chance our next president will believe that humans once kept dinosaurs as pets.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:57 +0000", "from_user": "TormentedToys", "from_user_id": 394055931, "from_user_id_str": "394055931", "from_user_name": "Tormented Toys", "geo": null, "id": 148823144277356540, "id_str": "148823144277356544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1596258069/chickensesame_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596258069/chickensesame_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @JeepersMedia: Look at this! I'm in a Walmart RIGHT NOW! Suck on the Dinosaurs Tail sippy bottle! Win or FAIL? http://t.co/1vqKGgBV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:51 +0000", "from_user": "kara4454", "from_user_id": 84149687, "from_user_id_str": "84149687", "from_user_name": "Karolajna A.", "geo": null, "id": 148823118889238530, "id_str": "148823118889238529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1587861451/blonde-gerard-way--large-msg-122886576591_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587861451/blonde-gerard-way--large-msg-122886576591_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#np Eris Is My Homegirl - Scarlett Goes To the Dinosaurs' Theme Park", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:30 +0000", "from_user": "ClindtEastwood", "from_user_id": 53109836, "from_user_id_str": "53109836", "from_user_name": "Cillin Mc Mahon", "geo": null, "id": 148823031941304320, "id_str": "148823031941304321", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1683791797/AgLm3IDCMAEhWQZ_normal.jpg-large", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683791797/AgLm3IDCMAEhWQZ_normal.jpg-large", "source": "<a href="http://twitter.com/">web</a>", "text": "Dream dictionaried dinosaurs. Not a very good thing to dream about, apparently.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:23 +0000", "from_user": "BrynerTan", "from_user_id": 21845855, "from_user_id_str": "21845855", "from_user_name": "Bryner", "geo": null, "id": 148823002400829440, "id_str": "148823002400829440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1664339112/384422_282787628429902_250748498300482_822200_867950188_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664339112/384422_282787628429902_250748498300482_822200_867950188_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ssempit jom! crew name is dinosaurs jaw", "to_user": "ssempit", "to_user_id": 40149684, "to_user_id_str": "40149684", "to_user_name": "saiful rosmadi\\uE30E\\uE30C\\uE113\\uE016\\uE13B", "in_reply_to_status_id": 148822587189891070, "in_reply_to_status_id_str": "148822587189891072"}, +{"created_at": "Mon, 19 Dec 2011 17:52:08 +0000", "from_user": "loveyouforewer", "from_user_id": 307268148, "from_user_id_str": "307268148", "from_user_name": ".", "geo": null, "id": 148822941348528130, "id_str": "148822941348528128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662418227/bff-cute-friends-girl-love-Favim.com-207901_large_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662418227/bff-cute-friends-girl-love-Favim.com-207901_large_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Kiss me if i'm wrong, but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:52 +0000", "from_user": "DerrRachel", "from_user_id": 186414762, "from_user_id_str": "186414762", "from_user_name": "Rachel Koh", "geo": null, "id": 148822874080296960, "id_str": "148822874080296960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1660270359/crap_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660270359/crap_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I wonder how dinosaurs extinct.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:15 +0000", "from_user": "Kid_Ramsey", "from_user_id": 298385848, "from_user_id_str": "298385848", "from_user_name": "Full Rebel K. Byrams", "geo": null, "id": 148822717834084350, "id_str": "148822717834084352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691728994/331457413_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691728994/331457413_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Fuck dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:10 +0000", "from_user": "1e11_DTB", "from_user_id": 291441454, "from_user_id_str": "291441454", "from_user_name": "Waliq Gonzalez ", "geo": null, "id": 148822696149532670, "id_str": "148822696149532672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670095708/n-hood_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670095708/n-hood_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Downtwn bitch im on my dwntwn shxtt lookin for a badd bitch igive her dinosaurs dicc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:04 +0000", "from_user": "DnMJsph", "from_user_id": 348040039, "from_user_id_str": "348040039", "from_user_name": "Dana J", "geo": null, "id": 148822672661422080, "id_str": "148822672661422080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1614617512/Photo_38_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1614617512/Photo_38_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ShmittenKitten: \"Kiss me if I'm wrong, but dinosaurs still exist, right?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:19 +0000", "from_user": "Stiviz", "from_user_id": 74437430, "from_user_id_str": "74437430", "from_user_name": "Kanuri", "geo": null, "id": 148822483464749060, "id_str": "148822483464749056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1669609484/l4Pu8x6B_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669609484/l4Pu8x6B_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Just like the dinosaurs, go out with a BANG!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:33 +0000", "from_user": "BenCarter96", "from_user_id": 298659367, "from_user_id_str": "298659367", "from_user_name": "Ben Carter ", "geo": null, "id": 148822289792778240, "id_str": "148822289792778240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1359917056/190079_10150116154848328_566543327_6160451_8176817_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1359917056/190079_10150116154848328_566543327_6160451_8176817_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Watching Crystal Maze from when to dinosaurs existed #old", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:30 +0000", "from_user": "DNSRMedia", "from_user_id": 436361902, "from_user_id_str": "436361902", "from_user_name": "James Nichols", "geo": null, "id": 148822275997712400, "id_str": "148822275997712385", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692276870/cover_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692276870/cover_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "For all those that think dinosaurs are extinct: http://t.co/mQBdgkxn you KNOW it's true because its from Berkeley! Or is it the other way??", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:05 +0000", "from_user": "katewong", "from_user_id": 17905977, "from_user_id_str": "17905977", "from_user_name": "Kate Wong", "geo": null, "id": 148822173715410940, "id_str": "148822173715410945", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/253947185/head_shot_lo_res_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/253947185/head_shot_lo_res_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@gracechua @sciam Yes. Dinosaurs were almond-flavored ;)", "to_user": "gracechua", "to_user_id": 18495936, "to_user_id_str": "18495936", "to_user_name": "gracechua", "in_reply_to_status_id": 148788022475890700, "in_reply_to_status_id_str": "148788022475890688"}, +{"created_at": "Mon, 19 Dec 2011 17:48:58 +0000", "from_user": "ShmittenKitten", "from_user_id": 15927393, "from_user_id_str": "15927393", "from_user_name": "Anna Goldfarb", "geo": null, "id": 148822143096987650, "id_str": "148822143096987648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1372051035/Photo_on_2011-05-04_at_14.42__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1372051035/Photo_on_2011-05-04_at_14.42__2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"Kiss me if I'm wrong, but dinosaurs still exist, right?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:56 +0000", "from_user": "MisterChase", "from_user_id": 279183553, "from_user_id_str": "279183553", "from_user_name": "Mister Chase", "geo": null, "id": 148822133571715070, "id_str": "148822133571715072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702575520/bubbletwit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702575520/bubbletwit_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "that's a very large poop. \\u201C@ErikNoren: @MisterChase Dinosaurs laid eggs. You've pooped before, haven't you? Same thing.\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:28 +0000", "from_user": "OfficialGraysan", "from_user_id": 440947838, "from_user_id_str": "440947838", "from_user_name": "Graysan", "geo": null, "id": 148822018291281920, "id_str": "148822018291281921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702508065/695517b6236311e1abb01231381b65e3_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702508065/695517b6236311e1abb01231381b65e3_7_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/oi9UIwNF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:01 +0000", "from_user": "ErikNoren", "from_user_id": 14905359, "from_user_id_str": "14905359", "from_user_name": "Erik Noren", "geo": null, "id": 148821903333785600, "id_str": "148821903333785603", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1618240127/P8030055_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618240127/P8030055_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MisterChase Dinosaurs laid eggs. You've pooped before, haven't you? Same thing.", "to_user": "MisterChase", "to_user_id": 279183553, "to_user_id_str": "279183553", "to_user_name": "Mister Chase", "in_reply_to_status_id": 148821477460938750, "in_reply_to_status_id_str": "148821477460938752"}, +{"created_at": "Mon, 19 Dec 2011 17:47:51 +0000", "from_user": "SachaMapletoft", "from_user_id": 382900060, "from_user_id_str": "382900060", "from_user_name": "Sach\\u2206", "geo": null, "id": 148821861638221820, "id_str": "148821861638221824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668588835/IMG_2484_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668588835/IMG_2484_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Mums only gone and bought some turkey dinosaurs,my childhood memories are running back to me", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:31 +0000", "from_user": "theda_barra", "from_user_id": 340383216, "from_user_id_str": "340383216", "from_user_name": "Ginny", "geo": null, "id": 148821779371147260, "id_str": "148821779371147264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1675638169/Paper-moon-014_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675638169/Paper-moon-014_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @markm1962: According to the GOPgelicals, cavemen & dinosaurs lived at the same time. And they're right. Look at their nominees. #p2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:30 +0000", "from_user": "nospacespleasev", "from_user_id": 316738733, "from_user_id_str": "316738733", "from_user_name": "Janeth ", "geo": null, "id": 148821774069534720, "id_str": "148821774069534720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1652826333/190764_175978205786083_100001217135035_467579_2519331_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652826333/190764_175978205786083_100001217135035_467579_2519331_n_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Hector is so funny, he's over here singing, \"All dinosaurs poop, all dinosaurs poop!\" lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:17 +0000", "from_user": "ClindtEastwood", "from_user_id": 53109836, "from_user_id_str": "53109836", "from_user_name": "Cillin Mc Mahon", "geo": null, "id": 148821719711350800, "id_str": "148821719711350785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1683791797/AgLm3IDCMAEhWQZ_normal.jpg-large", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683791797/AgLm3IDCMAEhWQZ_normal.jpg-large", "source": "<a href="http://twitter.com/">web</a>", "text": "Actually, I've been dreaming a lot about seeing dinosaurs. I wonder what that means.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:31 +0000", "from_user": "ClindtEastwood", "from_user_id": 53109836, "from_user_id_str": "53109836", "from_user_name": "Cillin Mc Mahon", "geo": null, "id": 148821527792594940, "id_str": "148821527792594944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1683791797/AgLm3IDCMAEhWQZ_normal.jpg-large", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683791797/AgLm3IDCMAEhWQZ_normal.jpg-large", "source": "<a href="http://twitter.com/">web</a>", "text": "@f0reskin I had a dream last night that I saw dinosaurs. I don't know how that's related, but piglets made me think of dinosaurs.", "to_user": "f0reskin", "to_user_id": 134837134, "to_user_id_str": "134837134", "to_user_name": "no", "in_reply_to_status_id": 148821225022554100, "in_reply_to_status_id_str": "148821225022554112"}, +{"created_at": "Mon, 19 Dec 2011 17:46:26 +0000", "from_user": "zaswadosaze", "from_user_id": 63202029, "from_user_id_str": "63202029", "from_user_name": "zoli osaze", "geo": null, "id": 148821507085303800, "id_str": "148821507085303808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1466524850/photo-47_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1466524850/photo-47_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @markm1962: Refusing to acknowledge climate change can be dangerous. Ask the dinosaurs. #p2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:08 +0000", "from_user": "markm1962", "from_user_id": 17171286, "from_user_id_str": "17171286", "from_user_name": "mm62", "geo": null, "id": 148821429859794940, "id_str": "148821429859794945", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1622695939/greenhornetkato_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622695939/greenhornetkato_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "According to the GOPgelicals, cavemen & dinosaurs lived at the same time. And they're right. Look at their nominees. #p2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:39 +0000", "from_user": "galiacardona", "from_user_id": 304107491, "from_user_id_str": "304107491", "from_user_name": "Galia Cardona", "geo": null, "id": 148821308522766340, "id_str": "148821308522766337", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1690298304/Snapshot_20111102_55_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690298304/Snapshot_20111102_55_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Kiss me if I'm wrong; but dinosaurs still exist right ?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:39 +0000", "from_user": "mzjeanmarie", "from_user_id": 20973843, "from_user_id_str": "20973843", "from_user_name": "Jean Marie Jingco", "geo": null, "id": 148821058512896000, "id_str": "148821058512896000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691936620/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691936620/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @LLoroncita: I found a picture of dinosaurs inside of a library book and it reminded me of @diplo http://t.co/buDimTCv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:17 +0000", "from_user": "_AlexisReneeee", "from_user_id": 262899720, "from_user_id_str": "262899720", "from_user_name": "10.30.11 ((: 33 ", "geo": null, "id": 148820965500002300, "id_str": "148820965500002304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1661749374/pretty_meee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661749374/pretty_meee_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @_ThatsSOJALYNN: Kiss me if i'm wrong but dinosaurs still exist right ?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:15 +0000", "from_user": "jefffffffle", "from_user_id": 14291771, "from_user_id_str": "14291771", "from_user_name": "Jeff Le", "geo": null, "id": 148820955261702140, "id_str": "148820955261702144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1271903268/Screen_shot_2011-03-14_at_1.17.29_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1271903268/Screen_shot_2011-03-14_at_1.17.29_AM_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "kids love dinosaurs, but not really", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:36 +0000", "from_user": "GayAss123", "from_user_id": 68989898, "from_user_id_str": "68989898", "from_user_name": "Rosie Scott", "geo": null, "id": 148820794242383870, "id_str": "148820794242383872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1659757307/L3ym7f36_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659757307/L3ym7f36_normal", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "RT @mikehollyman: @rickygervais I believe in dinosaurs.there's proof of there existence!! RT.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:29 +0000", "from_user": "_ThatsSOJALYNN", "from_user_id": 300472016, "from_user_id_str": "300472016", "from_user_name": "booo.yahhh", "geo": null, "id": 148820761115754500, "id_str": "148820761115754497", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1656418995/455385377_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656418995/455385377_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Kiss me if i'm wrong but dinosaurs still exist right ?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:46 +0000", "from_user": "peggiebennett", "from_user_id": 38529762, "from_user_id_str": "38529762", "from_user_name": "Peggie Bennett", "geo": null, "id": 148820330243301380, "id_str": "148820330243301376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1275454872/fd200c40-2141-48eb-98f2-05d3931ce1ed_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1275454872/fd200c40-2141-48eb-98f2-05d3931ce1ed_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@katewong @sciam That's why the dinosaurs went extinct, they looked too delicious!", "to_user": "sciam", "to_user_id": 14647570, "to_user_id_str": "14647570", "to_user_name": "Scientific American", "in_reply_to_status_id": 148783968215498750, "in_reply_to_status_id_str": "148783968215498752"}, +{"created_at": "Mon, 19 Dec 2011 17:41:37 +0000", "from_user": "Fifi_McCaype", "from_user_id": 228448245, "from_user_id_str": "228448245", "from_user_name": "iAmRandom", "geo": null, "id": 148820292565872640, "id_str": "148820292565872640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1639661297/Nnete__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639661297/Nnete__normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": ":') \\u2661 RT @LAMA_WOLF: Kiss Me If I'm wrong ,But Dinosaurs still exist right :')", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:09 +0000", "from_user": "GaryM", "from_user_id": 2224271, "from_user_id_str": "2224271", "from_user_name": "Gary McFarlane", "geo": null, "id": 148820176173928450, "id_str": "148820176173928448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1202138431/22673_391983215342_795875342_10317320_1620682_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1202138431/22673_391983215342_795875342_10317320_1620682_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Plant-eating dinosaur discovered in Antarctica: http://t.co/R89QmPL3 #scichat #evolution #dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:13 +0000", "from_user": "jefffffffle", "from_user_id": 14291771, "from_user_id_str": "14291771", "from_user_name": "Jeff Le", "geo": null, "id": 148819938818265100, "id_str": "148819938818265088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1271903268/Screen_shot_2011-03-14_at_1.17.29_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1271903268/Screen_shot_2011-03-14_at_1.17.29_AM_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "All these dinosaurs are artists #PBS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:10 +0000", "from_user": "LauraOBrien7", "from_user_id": 408347183, "from_user_id_str": "408347183", "from_user_name": "\\uE328 laur \\uE328", "geo": null, "id": 148819927581728770, "id_str": "148819927581728768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694991906/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694991906/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @joshualane92: I have sex with dinosaurs #RossGeller", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:39:37 +0000", "from_user": "xxnerminsalemxx", "from_user_id": 260353553, "from_user_id_str": "260353553", "from_user_name": "Nermiin Salem", "geo": null, "id": 148819790725779460, "id_str": "148819790725779457", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682744809/311280_136663213094122_100002513316167_211117_7027863_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682744809/311280_136663213094122_100002513316167_211117_7027863_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Kiss me if i'm wrong but dinosaurs still exist right? xP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:38:49 +0000", "from_user": "crazy_nasty", "from_user_id": 324540640, "from_user_id_str": "324540640", "from_user_name": "\\u041D\\u0430\\u0441\\u0442\\u044F \\u0412\\u043E\\u043B\\u043A\\u043E\\u0432\\u0430", "geo": null, "id": 148819587151052800, "id_str": "148819587151052800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1637252105/_51_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637252105/_51_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/enw9oIUN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:38:32 +0000", "from_user": "SmartyPots", "from_user_id": 216028344, "from_user_id_str": "216028344", "from_user_name": "SmartyPots", "geo": null, "id": 148819516061786100, "id_str": "148819516061786112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1500403801/Galileo_shot_Proffessor_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1500403801/Galileo_shot_Proffessor_3_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "I am always wondering this! What if dinosaurs were alive today? http://t.co/smQkhpvY (How Stuff Works) #scichat #science", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:41 +0000", "from_user": "itzelgallegos", "from_user_id": 28891167, "from_user_id_str": "28891167", "from_user_name": "Itzel Gallegos", "geo": null, "id": 148819302034833400, "id_str": "148819302034833409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1566069166/sec_662_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566069166/sec_662_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @Geo_MacDaddy: I remember when I used to eat those little vitamins made out of dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 17:38:32 +0000", "from_user": "SmartyPots", "from_user_id": 216028344, "from_user_id_str": "216028344", "from_user_name": "SmartyPots", "geo": null, "id": 148819516061786100, "id_str": "148819516061786112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1500403801/Galileo_shot_Proffessor_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1500403801/Galileo_shot_Proffessor_3_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "I am always wondering this! What if dinosaurs were alive today? http://t.co/smQkhpvY (How Stuff Works) #scichat #science", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:41 +0000", "from_user": "itzelgallegos", "from_user_id": 28891167, "from_user_id_str": "28891167", "from_user_name": "Itzel Gallegos", "geo": null, "id": 148819302034833400, "id_str": "148819302034833409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1566069166/sec_662_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566069166/sec_662_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @Geo_MacDaddy: I remember when I used to eat those little vitamins made out of dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:22 +0000", "from_user": "AshleyCarlson11", "from_user_id": 336186695, "from_user_id_str": "336186695", "from_user_name": "Ashley Carlson", "geo": null, "id": 148819223081263100, "id_str": "148819223081263105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701126779/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701126779/me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:11 +0000", "from_user": "GoodDealDivas", "from_user_id": 61517005, "from_user_id_str": "61517005", "from_user_name": "Nichole Smith", "geo": null, "id": 148819176620965900, "id_str": "148819176620965888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1425381402/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1425381402/profile_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Amazon: Megablocks Dinosaurs Only $12.99 Shipped (reg. $34.99)! http://t.co/cwlDRLvh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:36:56 +0000", "from_user": "joshualane92", "from_user_id": 399697934, "from_user_id_str": "399697934", "from_user_name": "Fuck The World Yo!", "geo": null, "id": 148819113249214460, "id_str": "148819113249214466", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1609802121/35142_406524780753_508110753_5075605_5804158_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609802121/35142_406524780753_508110753_5075605_5804158_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I have sex with dinosaurs #RossGeller", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:36:36 +0000", "from_user": "stevenrayflores", "from_user_id": 180153662, "from_user_id_str": "180153662", "from_user_name": "Steven flores", "geo": null, "id": 148819031250579460, "id_str": "148819031250579456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690616156/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690616156/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I wanna go to the ZOO!\\n#Dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:36:19 +0000", "from_user": "skyyylerr", "from_user_id": 359803266, "from_user_id_str": "359803266", "from_user_name": "Skyler Young", "geo": null, "id": 148818961302171650, "id_str": "148818961302171648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686398632/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686398632/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "kiss me if I'm wrong, but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:36:14 +0000", "from_user": "john_muddy", "from_user_id": 428021693, "from_user_id_str": "428021693", "from_user_name": "Giovanni Modugno", "geo": null, "id": 148818937759535100, "id_str": "148818937759535104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1676067916/DSC00557_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676067916/DSC00557_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Totally Enormous Extinct Dinosaurs - Garden http://t.co/1WWX62FM via @youtube", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:35:44 +0000", "from_user": "MotorCityRob", "from_user_id": 22359358, "from_user_id_str": "22359358", "from_user_name": "Robert Kitchen", "geo": null, "id": 148818814136623100, "id_str": "148818814136623104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/593309248/9535_1128565339604_1391335470_30365583_36309_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/593309248/9535_1128565339604_1391335470_30365583_36309_n_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube video http://t.co/bKmgMfMA Battlefield 3 Wake Island Easter Eggs - 5 Dinosaurs - Backgroun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:35:13 +0000", "from_user": "vabrix", "from_user_id": 363138790, "from_user_id_str": "363138790", "from_user_name": "Lat\\u00E9fa Al-Mejrad. \\u221E", "geo": null, "id": 148818682456449020, "id_str": "148818682456449024", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696302765/331564675_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696302765/331564675_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @Xyrenus__: nrou7 elmdrsa 3la T-rex's or hatchling dragons *.* RT @vabrix: T5ylo law ela el7een fee dinosaurs w kitha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:59 +0000", "from_user": "DinosaurGeorge", "from_user_id": 51272471, "from_user_id_str": "51272471", "from_user_name": "Dinosaur George", "geo": null, "id": 148818623572623360, "id_str": "148818623572623360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/284633710/G7_normal.bmp", "profile_image_url_https": "https://si0.twimg.com/profile_images/284633710/G7_normal.bmp", "source": "<a href="http://twitter.com/">web</a>", "text": "Budgets, projections and more paperwork. I HATE this part of my job. But then again, I'm budgeting for new dinosaurs so..... :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:57 +0000", "from_user": "LAMA_WOLF", "from_user_id": 144853960, "from_user_id_str": "144853960", "from_user_name": "Lulama Wolf", "geo": null, "id": 148818613871198200, "id_str": "148818613871198208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691185955/minahmlmabooi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691185955/minahmlmabooi_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Kiss Me If I'm wrong ,But Dinosaurs still exist right :')", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:32 +0000", "from_user": "Tardisphere", "from_user_id": 216374965, "from_user_id_str": "216374965", "from_user_name": "Alex Dunnaker", "geo": null, "id": 148818511769243650, "id_str": "148818511769243648", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1682656829/40366_479312633988_635173988_6871891_3233196_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682656829/40366_479312633988_635173988_6871891_3233196_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@LizzleFizzle92 Dinosaurs are badass", "to_user": "LizzleFizzle92", "to_user_id": 177266375, "to_user_id_str": "177266375", "to_user_name": "Elizabeth Farnell", "in_reply_to_status_id": 148817823102271500, "in_reply_to_status_id_str": "148817823102271489"}, +{"created_at": "Mon, 19 Dec 2011 17:34:06 +0000", "from_user": "Xyrenus__", "from_user_id": 283597701, "from_user_id_str": "283597701", "from_user_name": "\\u2654", "geo": null, "id": 148818403518455800, "id_str": "148818403518455811", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701450941/Photo_on_11-29-11_at_9.04_PM__5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701450941/Photo_on_11-29-11_at_9.04_PM__5_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "nrou7 elmdrsa 3la T-rex's or hatchling dragons *.* RT @vabrix: T5ylo law ela el7een fee dinosaurs w kitha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:33:37 +0000", "from_user": "Shaden__", "from_user_id": 236439804, "from_user_id_str": "236439804", "from_user_name": "Shaden alSul\\u0637an.", "geo": null, "id": 148818278263959550, "id_str": "148818278263959553", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702609125/331708177_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702609125/331708177_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Yd3sona mthl mand3s elnml=)) RT @Raininess: Wanasa! RT @vabrix: T5ylo law ela el7een fee dinosaurs w kitha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:33:35 +0000", "from_user": "MsAthenaRae", "from_user_id": 26953805, "from_user_id_str": "26953805", "from_user_name": "Ms Athena Rae", "geo": null, "id": 148818273369198600, "id_str": "148818273369198592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689700571/331381017_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689700571/331381017_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "The Dinosaurs lead to Gene Simmons, Gene lead to Kim and Kourt, and they lead to Anne Frank! @JuicieeFruit Really Kills Me!! #LMAO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:33:22 +0000", "from_user": "mafransoze", "from_user_id": 200170809, "from_user_id_str": "200170809", "from_user_name": "MAR", "geo": null, "id": 148818218008580100, "id_str": "148818218008580097", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687810460/203329_100002179097112_6869266_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687810460/203329_100002179097112_6869266_n_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/MmwEHDiQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:33:20 +0000", "from_user": "ShaurieeBabyy", "from_user_id": 175755769, "from_user_id_str": "175755769", "from_user_name": "Shauri Bieber \\u2665", "geo": null, "id": 148818209150214140, "id_str": "148818209150214144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689939754/annoyed_010_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689939754/annoyed_010_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @Geo_MacDaddy: I remember when I used to eat those little vitamins made out of dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:33:06 +0000", "from_user": "Geo_MacDaddy", "from_user_id": 216877263, "from_user_id_str": "216877263", "from_user_name": "Damien.", "geo": null, "id": 148818151138799600, "id_str": "148818151138799617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689749381/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689749381/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I remember when I used to eat those little vitamins made out of dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:05 +0000", "from_user": "HannahWilkins8", "from_user_id": 382604976, "from_user_id_str": "382604976", "from_user_name": "Hannah Wilkins", "geo": null, "id": 148817893570789380, "id_str": "148817893570789376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1631438654/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631438654/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @solisjesse: Dinosaurs and bosco sticks for lunch. WINNING", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:53 +0000", "from_user": "Raininess", "from_user_id": 251631787, "from_user_id_str": "251631787", "from_user_name": "ARE-AI-IN-AI :3 ", "geo": null, "id": 148817843465621500, "id_str": "148817843465621504", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695140617/rana234d567_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695140617/rana234d567_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Wanasa! RT @vabrix: T5ylo law ela el7een fee dinosaurs w kitha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:11 +0000", "from_user": "ShahmiCarlo", "from_user_id": 227354950, "from_user_id_str": "227354950", "from_user_name": "Amir Shahmi", "geo": null, "id": 148817666306613250, "id_str": "148817666306613248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1645407971/popo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645407971/popo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#SometimesIWonder how the world would be like if there were still dinosaurs around.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:44 +0000", "from_user": "PoloDaRonnie", "from_user_id": 19011714, "from_user_id_str": "19011714", "from_user_name": "Veronica Jones", "geo": null, "id": 148817554650054660, "id_str": "148817554650054657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1684936441/fUoYHhpd_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684936441/fUoYHhpd_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @charis_webb: Kiss me if im wrong, but dinosaurs still exist, right? #cheesypickuplines", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:42 +0000", "from_user": "elemarras28", "from_user_id": 359917497, "from_user_id_str": "359917497", "from_user_name": "Elena Marras \\u2714", "geo": null, "id": 148817547767185400, "id_str": "148817547767185409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695316814/p_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695316814/p_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/eEu21MXX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:39 +0000", "from_user": "oosanders", "from_user_id": 45522684, "from_user_id_str": "45522684", "from_user_name": "Lee Sanders", "geo": null, "id": 148817533594640400, "id_str": "148817533594640387", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691170328/DSC03670-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691170328/DSC03670-1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Totally Enormous Extinct Dinosaurs - Household goods #np", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:38 +0000", "from_user": "brewerjlz", "from_user_id": 272673325, "from_user_id_str": "272673325", "from_user_name": "Jason Brewer", "geo": null, "id": 148817277796622340, "id_str": "148817277796622336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1288374214/40750_1569081823782_1137553327_31676964_7652125_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1288374214/40750_1569081823782_1137553327_31676964_7652125_n_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/FrRZ1xaK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:19 +0000", "from_user": "davemoules", "from_user_id": 123005086, "from_user_id_str": "123005086", "from_user_name": "David Moules", "geo": null, "id": 148817196045451260, "id_str": "148817196045451264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686291525/davemoules_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686291525/davemoules_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@Natalie_Jade88 dinosaurs are real! Have you not scene Jurassic park? it's based on a true story ask @jasoncoward13", "to_user": "Natalie_Jade88", "to_user_id": 150327264, "to_user_id_str": "150327264", "to_user_name": "Natalie Jade", "in_reply_to_status_id": 148813127096598530, "in_reply_to_status_id_str": "148813127096598529"}, +{"created_at": "Mon, 19 Dec 2011 17:28:31 +0000", "from_user": "Nouiee", "from_user_id": 251581280, "from_user_id_str": "251581280", "from_user_name": "Nour Youssef", "geo": null, "id": 148816997919100930, "id_str": "148816997919100928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1631041636/318484_303203176374843_100000554905006_1161105_154363177_n1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631041636/318484_303203176374843_100000554905006_1161105_154363177_n1_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:28:23 +0000", "from_user": "vabrix", "from_user_id": 363138790, "from_user_id_str": "363138790", "from_user_name": "Lat\\u00E9fa Al-Mejrad. \\u221E", "geo": null, "id": 148816963676803070, "id_str": "148816963676803072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696302765/331564675_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696302765/331564675_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "T5ylo law ela el7een fee dinosaurs w kitha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:28:10 +0000", "from_user": "Kiaraohu", "from_user_id": 421457610, "from_user_id_str": "421457610", "from_user_name": "Yen Klis", "geo": null, "id": 148816909335404540, "id_str": "148816909335404545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691914716/1408130539profile70_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691914716/1408130539profile70_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I'm a funny girl! has u can see i can take a good laff! i love hugs!!! Also i play the guitar and dinosaurs rule the world!!!! RAWR ( ;", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:27:23 +0000", "from_user": "k0t0feyska", "from_user_id": 251178807, "from_user_id_str": "251178807", "from_user_name": "Evgeniya Luk'yanova", "geo": null, "id": 148816711192281100, "id_str": "148816711192281090", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1655655617/x_91a24b49_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655655617/x_91a24b49_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/clxmrtpJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:27:20 +0000", "from_user": "YouTAZ_WebRadio", "from_user_id": 204304568, "from_user_id_str": "204304568", "from_user_name": "YouTAZ", "geo": null, "id": 148816696726134800, "id_str": "148816696726134784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1147294040/7298617_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1147294040/7298617_normal.jpg", "source": "<a href="http://www.youtaz.net/" rel="nofollow">Youtaz_auto_submit</a>", "text": "You Listen: Totally Enormous Extinct Dinosaurs - Garden", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:27:10 +0000", "from_user": "RaghibD_", "from_user_id": 383710326, "from_user_id_str": "383710326", "from_user_name": "Raghib Darr", "geo": null, "id": 148816656771194880, "id_str": "148816656771194880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1569266293/barca11_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1569266293/barca11_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@EA_DICE : What is the reason behind the dinosaurs in BF3? They look like the one in Thunder Run...", "to_user": "EA_DICE", "to_user_id": 378186136, "to_user_id_str": "378186136", "to_user_name": "EA_DICE"}, +{"created_at": "Mon, 19 Dec 2011 17:27:03 +0000", "from_user": "WeKnowAwesome", "from_user_id": 115786779, "from_user_id_str": "115786779", "from_user_name": "We Know Awesome", "geo": null, "id": 148816625922097150, "id_str": "148816625922097152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1548572750/WKA-green-star-medium-blue_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1548572750/WKA-green-star-medium-blue_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Stupid dinosaurs missed the boat. \\n\\nvia Awesome friend, Allison Z http://t.co/MGAUQUmt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:25:50 +0000", "from_user": "bustermoody", "from_user_id": 24262090, "from_user_id_str": "24262090", "from_user_name": "M\\u00BA\\u00BAd33", "geo": null, "id": 148816319863734270, "id_str": "148816319863734272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1478051427/Picture_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1478051427/Picture_2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "peep out this dude dancing to this Totally Enormous Extinct Dinosaurs track: http://t.co/mzlhrMdA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:25:45 +0000", "from_user": "JSetts", "from_user_id": 420724841, "from_user_id_str": "420724841", "from_user_name": "Jamie Setts", "geo": null, "id": 148816300939026430, "id_str": "148816300939026433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1656289081/money_stack_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656289081/money_stack_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Dinosaurs: The Monsters Emerge [VHS]: Discover the startling facts and dramatic new theories currently revol... http://t.co/z3AgrLzi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:25:09 +0000", "from_user": "jAzZlaLli2013", "from_user_id": 129926553, "from_user_id_str": "129926553", "from_user_name": "Jazz Lalli", "geo": null, "id": 148816147322650620, "id_str": "148816147322650626", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1640982350/hjklhh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640982350/hjklhh_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @charis_webb: Kiss me if im wrong, but dinosaurs still exist, right? #cheesypickuplines", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:24:54 +0000", "from_user": "ugleenakedguy", "from_user_id": 170351586, "from_user_id_str": "170351586", "from_user_name": "Gerard Young", "geo": null, "id": 148816087708999680, "id_str": "148816087708999680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1171180140/100_0084__2___800x600__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1171180140/100_0084__2___800x600__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@CollegeHumor will the dinosaurs be having an office christmas partyyyyyy?", "to_user": "CollegeHumor", "to_user_id": 16825289, "to_user_id_str": "16825289", "to_user_name": "CollegeHumor"}, +{"created_at": "Mon, 19 Dec 2011 17:24:39 +0000", "from_user": "whatnopie", "from_user_id": 23509542, "from_user_id_str": "23509542", "from_user_name": "William Reid", "geo": null, "id": 148816021933920260, "id_str": "148816021933920256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668612931/Mii_Batman_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668612931/Mii_Batman_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "They really should've followed up on Sherlock Holmes meets dinosaurs, the Kraken, Iron Man and giant robot steampunk dragons", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:24:19 +0000", "from_user": "linn_ray", "from_user_id": 401202335, "from_user_id_str": "401202335", "from_user_name": "Lindsay Ray", "geo": null, "id": 148815939801063420, "id_str": "148815939801063424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1614780402/kissy_kiss_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1614780402/kissy_kiss_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "i dont care if you call me a child but i like my chicken tenders shaped as dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:24:13 +0000", "from_user": "charis_webb", "from_user_id": 354925475, "from_user_id_str": "354925475", "from_user_name": "Charis Webb", "geo": null, "id": 148815913246933000, "id_str": "148815913246932992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1663084084/2011-10-25_06-46-37_448_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663084084/2011-10-25_06-46-37_448_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Kiss me if im wrong, but dinosaurs still exist, right? #cheesypickuplines", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:23:42 +0000", "from_user": "guyyatheery", "from_user_id": 51700491, "from_user_id_str": "51700491", "from_user_name": "\\u262E", "geo": null, "id": 148815784217542660, "id_str": "148815784217542656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1663795433/309889_2740432437786_1466670541_32884930_924180248_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663795433/309889_2740432437786_1466670541_32884930_924180248_n_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @afflictedluv: My kids no shame. Asking presents from me. Lions, dragons, dinosaurs. Lego's fine for you guys? @guyyatheery @Nicfong_kimchi @FiqBEINGbatman", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:23:22 +0000", "from_user": "SPdaCoolKid", "from_user_id": 60152978, "from_user_id_str": "60152978", "from_user_name": "The Cool ", "geo": null, "id": 148815700520210430, "id_str": "148815700520210432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1692443693/IMAG0086_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692443693/IMAG0086_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "LMAO RT @MSBlueJay86 @SPdaCoolKid People say the same thing about dinosaurs though and im still scared lol", "to_user": "MSBlueJay86", "to_user_id": 27575782, "to_user_id_str": "27575782", "to_user_name": "Judy Jetson", "in_reply_to_status_id": 148815080774041600, "in_reply_to_status_id_str": "148815080774041600"}, +{"created_at": "Mon, 19 Dec 2011 17:23:08 +0000", "from_user": "swizzle_tooth", "from_user_id": 94309960, "from_user_id_str": "94309960", "from_user_name": "Dan", "geo": null, "id": 148815642777227260, "id_str": "148815642777227265", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702587622/dsdssdsds_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702587622/dsdssdsds_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@TylerScruggs Dawson's Creek with dinosaurs.", "to_user": "TylerScruggs", "to_user_id": 14313382, "to_user_id_str": "14313382", "to_user_name": "Tyler Scruggs", "in_reply_to_status_id": 148815362287349760, "in_reply_to_status_id_str": "148815362287349760"}, +{"created_at": "Mon, 19 Dec 2011 17:22:54 +0000", "from_user": "markm1962", "from_user_id": 17171286, "from_user_id_str": "17171286", "from_user_name": "mm62", "geo": null, "id": 148815581561360400, "id_str": "148815581561360385", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1622695939/greenhornetkato_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622695939/greenhornetkato_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Refusing to acknowledge climate change can be dangerous. Ask the dinosaurs. #p2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:21:30 +0000", "from_user": "ItsCarmenB", "from_user_id": 140225565, "from_user_id_str": "140225565", "from_user_name": "Carmen Borges\\u2665", "geo": null, "id": 148815232213581820, "id_str": "148815232213581824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1624101792/DSC015722_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624101792/DSC015722_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/mm846NuY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:21:29 +0000", "from_user": "saraornstrand", "from_user_id": 418768019, "from_user_id_str": "418768019", "from_user_name": "Sara \\u00D6rnstrand", "geo": null, "id": 148815227742453760, "id_str": "148815227742453761", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677714567/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677714567/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Baby we're just heter to play - DINNER FOR DINOSAURS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:20:54 +0000", "from_user": "MSBlueJay86", "from_user_id": 27575782, "from_user_id_str": "27575782", "from_user_name": "Judy Jetson", "geo": null, "id": 148815080774041600, "id_str": "148815080774041600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687827117/MSBlueJay86_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687827117/MSBlueJay86_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SPdaCoolKid People say the same thing about dinosaurs though and im still scared lol", "to_user": "SPdaCoolKid", "to_user_id": 60152978, "to_user_id_str": "60152978", "to_user_name": "The Cool ", "in_reply_to_status_id": 148814901996036100, "in_reply_to_status_id_str": "148814901996036096"}, +{"created_at": "Mon, 19 Dec 2011 17:20:45 +0000", "from_user": "1DsHarryStyles", "from_user_id": 173934633, "from_user_id_str": "173934633", "from_user_name": "\\u2654", "geo": null, "id": 148815043314716670, "id_str": "148815043314716672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1671169971/harryicon1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671169971/harryicon1_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/8fo5Dsyi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:20:39 +0000", "from_user": "katiespeake", "from_user_id": 249281157, "from_user_id_str": "249281157", "from_user_name": "Katie Speake", "geo": null, "id": 148815014797647870, "id_str": "148815014797647872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685550304/IMG-20110514-01368_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685550304/IMG-20110514-01368_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@mtspeake2310 hahaa im having turkey dinosaurs and chips xx", "to_user": "mtspeake2310", "to_user_id": 315278929, "to_user_id_str": "315278929", "to_user_name": "Martin Speake", "in_reply_to_status_id": 148813977462374400, "in_reply_to_status_id_str": "148813977462374400"}, +{"created_at": "Mon, 19 Dec 2011 17:20:24 +0000", "from_user": "carolineputman", "from_user_id": 159688532, "from_user_id_str": "159688532", "from_user_name": "Caroline Putman", "geo": null, "id": 148814953686638600, "id_str": "148814953686638594", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1602995134/84U0lioJ_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1602995134/84U0lioJ_normal", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @erb_13: Kiss me if I'm wrong, but dinosaurs still exist, right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:20:18 +0000", "from_user": "lgilchrist1", "from_user_id": 320170270, "from_user_id_str": "320170270", "from_user_name": "lachlan gilchrist", "geo": null, "id": 148814927879082000, "id_str": "148814927879081984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1402829184/249581_10150659022980157_550795156_19137863_5721384_n_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1402829184/249581_10150659022980157_550795156_19137863_5721384_n_1__normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Could have done without that bit with the dinosaurs though", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:19:42 +0000", "from_user": "Oh_ZNAP", "from_user_id": 367993539, "from_user_id_str": "367993539", "from_user_name": "Krump King", "geo": null, "id": 148814778394095600, "id_str": "148814778394095617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701076551/yfrog_mmex6fj_300_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701076551/yfrog_mmex6fj_300_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@HeyLuke dinosaurs still exist. We seen one on inkster!", "to_user": "HeyLuke", "to_user_id": 53620716, "to_user_id_str": "53620716", "to_user_name": "Luke Burnham", "in_reply_to_status_id": 148814573443620860, "in_reply_to_status_id_str": "148814573443620864"}, +{"created_at": "Mon, 19 Dec 2011 17:19:30 +0000", "from_user": "joeycomeau", "from_user_id": 8858632, "from_user_id_str": "8858632", "from_user_name": "Joey Comeau", "geo": null, "id": 148814727194230800, "id_str": "148814727194230784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/97366425/joeytwitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/97366425/joeytwitter_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "This is a great review of Dinosaur Comics by @TdotComics http://t.co/lkLmfVg7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:19:24 +0000", "from_user": "GetMeSumBieber", "from_user_id": 164126675, "from_user_id_str": "164126675", "from_user_name": "a\\u0274\\u0274i\\u03B5\\u00A0", "geo": null, "id": 148814701508309000, "id_str": "148814701508308993", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683596684/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683596684/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "\"kiss me if I'm wrong but... Dinosaurs still exist right?\" LOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:18:15 +0000", "from_user": "bananoorangeent", "from_user_id": 410675002, "from_user_id_str": "410675002", "from_user_name": "Nam YoHyun", "geo": null, "id": 148814412562698240, "id_str": "148814412562698240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675103467/wohyunniethepig_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675103467/wohyunniethepig_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@InfinSpirit Yea! Dinosaurs are!!! ^^ or gorilla i dunoo she makes alot of noise", "to_user": "InfinSpirit", "to_user_id": 416395371, "to_user_id_str": "416395371", "to_user_name": "Inspirits Lovable", "in_reply_to_status_id": 148813931077574660, "in_reply_to_status_id_str": "148813931077574657"}, +{"created_at": "Mon, 19 Dec 2011 17:17:40 +0000", "from_user": "LudvigMartenson", "from_user_id": 365690433, "from_user_id_str": "365690433", "from_user_name": "Ludvig M\\u00E5rtensson", "geo": null, "id": 148814265720119300, "id_str": "148814265720119296", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1542511010/tweet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542511010/tweet_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Taggar Totally Enormous Extinct Dinosaurs med Lillefot #emmabodadadada", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:17:22 +0000", "from_user": "Billionaird1", "from_user_id": 195259951, "from_user_id_str": "195259951", "from_user_name": "Steve Billionaird", "geo": null, "id": 148814192483373060, "id_str": "148814192483373056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1648212059/IMG00112-20110613-1823_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648212059/IMG00112-20110613-1823_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Wht has Playedout...Major Labels aka Dinosaurs. The Comeup is the Internet ur Own Label/Partner up not being Occupied by Labels ask Artists.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:17:08 +0000", "from_user": "SexmondDesmond", "from_user_id": 311136639, "from_user_id_str": "311136639", "from_user_name": "Donkey Kong ", "geo": null, "id": 148814131728875520, "id_str": "148814131728875520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693939064/KKmG439h_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693939064/KKmG439h_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Do dinosaurs have boobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:16:19 +0000", "from_user": "iLittleGirl_", "from_user_id": 258329747, "from_user_id_str": "258329747", "from_user_name": "' \\u2665 Michelle ", "geo": null, "id": 148813921908826100, "id_str": "148813921908826112", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698820506/1450493155_6_ykBR_BBB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698820506/1450493155_6_ykBR_BBB_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "dinosaurs :D hoop dat je het kan lezen allemaal xd http://t.co/GTlDHjKn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:15:55 +0000", "from_user": "LOV3LOV3_", "from_user_id": 324938006, "from_user_id_str": "324938006", "from_user_name": "Quantely \\u2661", "geo": null, "id": 148813827138531330, "id_str": "148813827138531329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702389190/SAM_0775_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702389190/SAM_0775_normal.JPG", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/2ZNjzG40", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:15:53 +0000", "from_user": "SeriousRabble", "from_user_id": 286274009, "from_user_id_str": "286274009", "from_user_name": "Matt Lipton-Schwartz", "geo": null, "id": 148813817336438800, "id_str": "148813817336438785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1379827597/Mattls_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1379827597/Mattls_normal.png", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/CUTekrgr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:15:41 +0000", "from_user": "Lorinekji", "from_user_id": 431686086, "from_user_id_str": "431686086", "from_user_name": "Lorine Crooks", "geo": null, "id": 148813768762200060, "id_str": "148813768762200064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681002318/sbtkhrrt12_128582992_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681002318/sbtkhrrt12_128582992_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dinosaur Coin Banks Ceramic Piggy Banks - Set of 2: Two different banks in the shape of dinosaurs http://t.co/Dzq4xNM4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:14:18 +0000", "from_user": "Lilliamsvg", "from_user_id": 431713277, "from_user_id_str": "431713277", "from_user_name": "Lilliam Hudek", "geo": null, "id": 148813417271136260, "id_str": "148813417271136256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681056863/large_BSSQGQRDNNBN_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681056863/large_BSSQGQRDNNBN_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hatley Boys 2-7 Dinosaurs Graphic Tee,Brown,7: http://t.co/JYVRqAUO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:12:53 +0000", "from_user": "crazycraven", "from_user_id": 20249420, "from_user_id_str": "20249420", "from_user_name": "Mark Craven", "geo": null, "id": 148813062214914050, "id_str": "148813062214914049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1234009880/photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1234009880/photo_normal.jpg", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "@weefz I feed dinosaurs to my car.", "to_user": "weefz", "to_user_id": 8358972, "to_user_id_str": "8358972", "to_user_name": "Debbie Timmins", "in_reply_to_status_id": 148809224271568900, "in_reply_to_status_id_str": "148809224271568896"}, +{"created_at": "Mon, 19 Dec 2011 17:12:45 +0000", "from_user": "JCundiff52", "from_user_id": 365160799, "from_user_id_str": "365160799", "from_user_name": "Jeremy Cundiff", "geo": null, "id": 148813029461606400, "id_str": "148813029461606400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1682329830/297659_294906313870518_100000534542080_1139707_330857356_a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682329830/297659_294906313870518_100000534542080_1139707_330857356_a_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Really wish this school had better computers, dinosaurs are extinct for a reason!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:11:31 +0000", "from_user": "BriBrown5", "from_user_id": 348652408, "from_user_id_str": "348652408", "from_user_name": "Bri Brown", "geo": null, "id": 148812718252638200, "id_str": "148812718252638208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639737066/111011-202715_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639737066/111011-202715_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @solisjesse: Dinosaurs and bosco sticks for lunch. WINNING", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:10:42 +0000", "from_user": "jamezky23", "from_user_id": 299561077, "from_user_id_str": "299561077", "from_user_name": "James Ludin Pueyo", "geo": null, "id": 148812511188238340, "id_str": "148812511188238336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1543041060/274808_1414638865_1305545935_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543041060/274808_1414638865_1305545935_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@allynthewicked it's Arrrrr! Rawr is for lions.... and dinosaurs.. (i think)", "to_user": "allynthewicked", "to_user_id": 16755210, "to_user_id_str": "16755210", "to_user_name": "allyn may canja", "in_reply_to_status_id": 148812144480235520, "in_reply_to_status_id_str": "148812144480235521"}, +{"created_at": "Mon, 19 Dec 2011 17:10:36 +0000", "from_user": "Lay_f", "from_user_id": 105597690, "from_user_id_str": "105597690", "from_user_name": "Lais.", "geo": null, "id": 148812488094400500, "id_str": "148812488094400514", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680129781/01-12-11_1505_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680129781/01-12-11_1505_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Bruuh_Breezy: Dinosaurs Go Rawr nao sai mais da minha cabe\\u00E7a, culpa de quem? @Lay_f", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:10:01 +0000", "from_user": "SalsaChoicer", "from_user_id": 121968669, "from_user_id_str": "121968669", "from_user_name": "Salsa Choicer", "geo": null, "id": 148812340404555780, "id_str": "148812340404555776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://google.com" rel="nofollow">SalsaChoicer</a>", "text": "did you know? dinosaurs eat lazers recursively", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:10:00 +0000", "from_user": "FancyScheibe", "from_user_id": 52898260, "from_user_id_str": "52898260", "from_user_name": "Fancy Noble", "geo": null, "id": 148812336206065660, "id_str": "148812336206065665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1576353817/HeyHaHeyHa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576353817/HeyHaHeyHa_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "When I was younger I thought there was body glue that held all our ligaments together...I also thought dinosaurs sharpend my pencils...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:09:37 +0000", "from_user": "GO_CHUBBYBOY305", "from_user_id": 424836900, "from_user_id_str": "424836900", "from_user_name": "Wilson", "geo": null, "id": 148812242002001920, "id_str": "148812242002001921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1665572286/wilson1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665572286/wilson1_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Son u look like DUCKIE OF LAND BEFORE TIME RT @dougie_frsh89: @GO_CHUBBYBOY305 aye u one of dem big ass dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:07:39 +0000", "from_user": "EnglishFolkfan", "from_user_id": 14797165, "from_user_id_str": "14797165", "from_user_name": "Lesley", "geo": null, "id": 148811745685803000, "id_str": "148811745685803008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/780918181/use_for_my_new_twit_pic_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/780918181/use_for_my_new_twit_pic_normal.JPG", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "US dinosaurs still roam the capitol @daringfireball Dear Congress, It\\u2019s No Longer OK to Not Know How the Internet Works http://t.co/ChgeZ4cU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:07:13 +0000", "from_user": "GalenSchultz", "from_user_id": 80529904, "from_user_id_str": "80529904", "from_user_name": "Galen Schultz", "geo": null, "id": 148811634150875140, "id_str": "148811634150875137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1361949463/CV_pic_4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1361949463/CV_pic_4_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "The world needs more chicks in bikinis riding dinosaurs ... (@YouTube http://t.co/WaT0ANM9)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:07:05 +0000", "from_user": "TdotComics", "from_user_id": 75476072, "from_user_id_str": "75476072", "from_user_name": "Alice Quinn", "geo": null, "id": 148811604677509120, "id_str": "148811604677509121", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1538459551/Alice_thumbnail_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538459551/Alice_thumbnail_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Thoughts, theories as told by Dinosaurs, a #DinosaurComics review by @ryanburgess29 on TdotComics http://t.co/X3Gaw5Pp @ryanqnorth", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:06:57 +0000", "from_user": "Vaydre", "from_user_id": 16013792, "from_user_id_str": "16013792", "from_user_name": "Vaydre", "geo": null, "id": 148811567922806800, "id_str": "148811567922806784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1494674783/IMG_0854_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1494674783/IMG_0854_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @sixthformpoet: I worry that my life's a Choose Your Own Adventure story, in which I make a series of wrong decisions and eventually get eaten by dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:05:17 +0000", "from_user": "Tardisphere", "from_user_id": 216374965, "from_user_id_str": "216374965", "from_user_name": "Alex Dunnaker", "geo": null, "id": 148811149830402050, "id_str": "148811149830402051", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1682656829/40366_479312633988_635173988_6871891_3233196_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682656829/40366_479312633988_635173988_6871891_3233196_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@LizzleFizzle92 great film (most films with dinosaurs are great)", "to_user": "LizzleFizzle92", "to_user_id": 177266375, "to_user_id_str": "177266375", "to_user_name": "Elizabeth Farnell", "in_reply_to_status_id": 148804344517632000, "in_reply_to_status_id_str": "148804344517632001"}, +{"created_at": "Mon, 19 Dec 2011 17:05:10 +0000", "from_user": "pearapple", "from_user_id": 15255806, "from_user_id_str": "15255806", "from_user_name": "pearapple", "geo": null, "id": 148811121976025100, "id_str": "148811121976025088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/455073357/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/455073357/twitterProfilePhoto_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "RT @JustinTEarle: What's the worst that could happen? Dinosaurs, that's what!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:05:08 +0000", "from_user": "Dessienpup", "from_user_id": 426264540, "from_user_id_str": "426264540", "from_user_name": "Dessie Eggimann", "geo": null, "id": 148811109904810000, "id_str": "148811109904809984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668803060/LLCM-5130_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668803060/LLCM-5130_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Sun Kidz Dinosaurs T-Shirt BLACK 5/6: http://t.co/cJi94uFx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:04:39 +0000", "from_user": "Bedrockness", "from_user_id": 22190606, "from_user_id_str": "22190606", "from_user_name": "John Lee", "geo": null, "id": 148810991067607040, "id_str": "148810991067607040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1619157504/196330_786357052162_16116713_41148031_2787631_a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619157504/196330_786357052162_16116713_41148031_2787631_a_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@TylerWasieleski Natural History. Who doesn't like dinosaurs?? Why are you in NYC??", "to_user": "TylerWasieleski", "to_user_id": 252750461, "to_user_id_str": "252750461", "to_user_name": "Tyler Wasieleski", "in_reply_to_status_id": 148049798015094800, "in_reply_to_status_id_str": "148049798015094784"}, +{"created_at": "Mon, 19 Dec 2011 17:03:17 +0000", "from_user": "biancascarpat", "from_user_id": 60616571, "from_user_id_str": "60616571", "from_user_name": "Bianca Scarpat", "geo": null, "id": 148810645586972670, "id_str": "148810645586972672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685756627/DSC06681_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685756627/DSC06681_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Photoset: dinosaurs-roaming-the-earth: http://t.co/8AeHwTym", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:03:03 +0000", "from_user": "LablanchFanny", "from_user_id": 321335111, "from_user_id_str": "321335111", "from_user_name": "Lablanche Fanny", "geo": null, "id": 148810588078870530, "id_str": "148810588078870528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1411130926/Photo_08_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1411130926/Photo_08_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @hmns: Parents! Does your child love dinosaurs? Mummies? Weird insects? Book their birthday party at HMNS: http://t.co/YduBiU0p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:02:40 +0000", "from_user": "Elwandangi", "from_user_id": 431684016, "from_user_id_str": "431684016", "from_user_name": "Elwanda Kolash", "geo": null, "id": 148810491341438980, "id_str": "148810491341438976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1680993096/large_100_2022_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680993096/large_100_2022_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dinosaurs: Science & Maths: Learn about the science and history of Dinosaurs with iMindsJNR learning series for ... http://t.co/Si2QZzbK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:02:37 +0000", "from_user": "lastgoodnerve", "from_user_id": 15884097, "from_user_id_str": "15884097", "from_user_name": "Moi", "geo": null, "id": 148810477902888960, "id_str": "148810477902888960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1448052849/2e403632-6239-4861-abe4-7a8b94f761d4_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1448052849/2e403632-6239-4861-abe4-7a8b94f761d4_normal.jpeg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@mrsF5 @ArtChicinTX Don't forget the dinosaurs! We had giant ones. K used to play dress up w/them. Must look fancy before crushing the town.", "to_user": "mrsF5", "to_user_id": 14444534, "to_user_id_str": "14444534", "to_user_name": "amy f5", "in_reply_to_status_id": 148792407989813250, "in_reply_to_status_id_str": "148792407989813249"}, +{"created_at": "Mon, 19 Dec 2011 17:02:36 +0000", "from_user": "fillysusanemma", "from_user_id": 116055028, "from_user_id_str": "116055028", "from_user_name": "Felicity Waller", "geo": null, "id": 148810475524722700, "id_str": "148810475524722688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1679743493/Snapshot_20111207_18_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679743493/Snapshot_20111207_18_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I had a dream I bought jeans with dinosaurs on them.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:02:26 +0000", "from_user": "iLittleGirl_", "from_user_id": 258329747, "from_user_id_str": "258329747", "from_user_name": "' \\u2665 Michelle ", "geo": null, "id": 148810431828467700, "id_str": "148810431828467712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698820506/1450493155_6_ykBR_BBB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698820506/1450493155_6_ykBR_BBB_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "OMG ahaha bij eentje schreef ik \"Then the question is, is this a dinosaur? no! dinosaurs do not have lips!\" x'D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:02:10 +0000", "from_user": "terrafossil", "from_user_id": 22167301, "from_user_id_str": "22167301", "from_user_name": "Terra Fossil Wine", "geo": null, "id": 148810366594461700, "id_str": "148810366594461697", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1124426780/BANNER_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1124426780/BANNER_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Dinosaur jokes so bad... they're good! http://t.co/DRymgqWy @dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:01:17 +0000", "from_user": "tkjblackt", "from_user_id": 382378779, "from_user_id_str": "382378779", "from_user_name": "Faustino Aragon", "geo": null, "id": 148810144728363000, "id_str": "148810144728363008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1565877601/299_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1565877601/299_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "My idea of a romantic dinner for two involves a surprising amount of papier-mache dinosaurs.How many more spills do you think parents in pap", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:01:09 +0000", "from_user": "sbamizerj", "from_user_id": 381098741, "from_user_id_str": "381098741", "from_user_name": "Alphonse Piper", "geo": null, "id": 148810110842581000, "id_str": "148810110842580993", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1562776805/278_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1562776805/278_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "\"Yeah let's clone some sheep cause dinosaurs would be too awesome.\" - Scientists.If a black dude tweets the N-word... Can I RT that? What th", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:00:48 +0000", "from_user": "NewsDetroit", "from_user_id": 104938477, "from_user_id_str": "104938477", "from_user_name": "Detroit News", "geo": null, "id": 148810021940109300, "id_str": "148810021940109313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/768830974/facbeook_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/768830974/facbeook_twitter_normal.png", "source": "<a href="http://fwix.com" rel="nofollow">Fwix</a>", "text": "'Lincoln,' robots, dinosaurs and more - http://t.co/44Zb0Yz1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:00:23 +0000", "from_user": "trkravtin", "from_user_id": 33185662, "from_user_id_str": "33185662", "from_user_name": "Teresa Rolfe Kravtin", "geo": null, "id": 148809915023114240, "id_str": "148809915023114240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1652447446/f179f1db-a7a0-41bd-a676-13c59e0b2f66_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652447446/f179f1db-a7a0-41bd-a676-13c59e0b2f66_normal.png", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": ".@MrSchuReads: #Bookaday Dinosaur Dig! by Penny Dale http://t.co/WzhcESnE . Perfect for kids who love dinosaurs, digging, and counting. :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:00:22 +0000", "from_user": "GigaTools", "from_user_id": 65345619, "from_user_id_str": "65345619", "from_user_name": "GigaTools", "geo": null, "id": 148809912552652800, "id_str": "148809912552652800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/746396343/GT_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/746396343/GT_normal.png", "source": "<a href="http://www.gigatools.com" rel="nofollow">GigaTools</a>", "text": "New Totally Enormous Extinct Dinosaurs Gigs Announced! http://t.co/RHVsYAKV #gigs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:59:32 +0000", "from_user": "elainewrightx", "from_user_id": 66155230, "from_user_id_str": "66155230", "from_user_name": "Elaine Wright", "geo": null, "id": 148809702543859700, "id_str": "148809702543859712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1644319113/IMG01199-20111116-1742_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644319113/IMG01199-20111116-1742_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@andrewcurren having chicken dinosaurs for dinner ;) don't hate me cause u aint me xox", "to_user": "andrewcurren", "to_user_id": 53453165, "to_user_id_str": "53453165", "to_user_name": "Andrew Curren"}, +{"created_at": "Mon, 19 Dec 2011 16:58:29 +0000", "from_user": "kthryndumas", "from_user_id": 35510896, "from_user_id_str": "35510896", "from_user_name": "Katie Dumas", "geo": null, "id": 148809437820358660, "id_str": "148809437820358656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1659429045/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659429045/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @OhhhBlakeee: Kiss me if I'm wrong, but dinosaurs still exist, right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:58:16 +0000", "from_user": "Lakeishagcm", "from_user_id": 440187715, "from_user_id_str": "440187715", "from_user_name": "Lakeisha Brumit", "geo": null, "id": 148809382786895870, "id_str": "148809382786895874", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700527443/large_aha_007_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700527443/large_aha_007_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Oshkosh B'gosh Boys 8-20 Dinosaur Briefs 3Pair Pack, Multi, 8: Oshkosh b'gosh boys 3 pair pack briefs are made f... http://t.co/FQ0cZjdg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:58:02 +0000", "from_user": "b_skinner12", "from_user_id": 306864997, "from_user_id_str": "306864997", "from_user_name": "Becca Skinner", "geo": null, "id": 148809324649656320, "id_str": "148809324649656320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1678387592/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678387592/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I don't like dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:57:38 +0000", "from_user": "weefz", "from_user_id": 8358972, "from_user_id_str": "8358972", "from_user_name": "Debbie Timmins", "geo": null, "id": 148809224271568900, "id_str": "148809224271568896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1676276317/Debbie_Avatar_Christmas_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676276317/Debbie_Avatar_Christmas_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "Humans fed on dinosaurs RT @c_kahler: Common Misconceptions in the US. http://t.co/LYzpuvi6 via @qriously", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:57:34 +0000", "from_user": "_RoxyJohnson", "from_user_id": 42413576, "from_user_id_str": "42413576", "from_user_name": "Rox", "geo": null, "id": 148809209436311550, "id_str": "148809209436311552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701859753/N493QGFt_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701859753/N493QGFt_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@LFCWAC :O there were real dinosaurs in jurassic park! :L", "to_user": "LFCWAC", "to_user_id": 142089971, "to_user_id_str": "142089971", "to_user_name": "William Crosby", "in_reply_to_status_id": 148808879613034500, "in_reply_to_status_id_str": "148808879613034496"}, +{"created_at": "Mon, 19 Dec 2011 16:57:13 +0000", "from_user": "sakyant", "from_user_id": 21071788, "from_user_id_str": "21071788", "from_user_name": "spencer littlewood", "geo": null, "id": 148809121087488000, "id_str": "148809121087488002", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/89397415/DSC02807_f-v_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/89397415/DSC02807_f-v_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "latest additions Clash of the Dinosaurs: This show is all about dinosaurs inside and out to\\u2026 http://t.co/tihhSxLK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:57:07 +0000", "from_user": "darealestballer", "from_user_id": 380915766, "from_user_id_str": "380915766", "from_user_name": "Damien Smith", "geo": null, "id": 148809095657439230, "id_str": "148809095657439232", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1647462905/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647462905/profile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "macasaurus piimpadactal those are ghetto dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 16:56:46 +0000", "from_user": "Erictga", "from_user_id": 431683572, "from_user_id_str": "431683572", "from_user_name": "Eric Beinlich", "geo": null, "id": 148809004229996540, "id_str": "148809004229996544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680993073/large_255_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680993073/large_255_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dinosaurs of All Sizes (World of Dinosaurs): Describes the various sizes of dinosaurs, including Tyrannosaurus R... http://t.co/GK0QqrEL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:56:41 +0000", "from_user": "xxmaiarockzxx", "from_user_id": 158107243, "from_user_id_str": "158107243", "from_user_name": "maiaa :)", "geo": null, "id": 148808986425167870, "id_str": "148808986425167874", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1228657624/newnew_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1228657624/newnew_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/dLVdT7Xf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:56:22 +0000", "from_user": "shandikchendric", "from_user_id": 305939050, "from_user_id_str": "305939050", "from_user_name": "Shandi Hendrickson", "geo": null, "id": 148808905672237060, "id_str": "148808905672237057", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685417946/eva-mendes-nude-jane-magazine-tm_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685417946/eva-mendes-nude-jane-magazine-tm_1__normal.jpg", "source": "<a href="http://dealsretailstore.info" rel="nofollow">dealsretailstoredotinfo</a>", "text": "BrewsterBrewster Nat Geo Kids NG94615 Pre-p..Only $ 45.08 http://t.co/Gd47Dl1U", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:56:16 +0000", "from_user": "LFCWAC", "from_user_id": 142089971, "from_user_id_str": "142089971", "from_user_name": "William Crosby", "geo": null, "id": 148808879613034500, "id_str": "148808879613034496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1183352949/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1183352949/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@_RoxyJohnson yeah :L Imagine the money they could have saved if they had hired you instead of real dinosaurs for Jurassic Park. :L", "to_user": "_RoxyJohnson", "to_user_id": 42413576, "to_user_id_str": "42413576", "to_user_name": "Rox", "in_reply_to_status_id": 148808298387353600, "in_reply_to_status_id_str": "148808298387353600"}, +{"created_at": "Mon, 19 Dec 2011 16:56:03 +0000", "from_user": "CookeriNDEED", "from_user_id": 290023949, "from_user_id_str": "290023949", "from_user_name": "Jonathan Cook(er)", "geo": null, "id": 148808826240516100, "id_str": "148808826240516097", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1654991370/Cooker__20Ernest_Andy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654991370/Cooker__20Ernest_Andy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@azizansari just listened \"Walking with Dinosaurs.\" Was that at the museum in Charleston? That exhibit scared the bejesus out of 5yo me.", "to_user": "azizansari", "to_user_id": 6480682, "to_user_id_str": "6480682", "to_user_name": "Aziz Ansari"}, +{"created_at": "Mon, 19 Dec 2011 16:56:02 +0000", "from_user": "faalyafa", "from_user_id": 286096947, "from_user_id_str": "286096947", "from_user_name": "Qayyum \\u2665", "geo": null, "id": 148808821777776640, "id_str": "148808821777776641", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697229926/379484_199499753466590_100002197008527_461861_1810643863_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697229926/379484_199499753466590_100002197008527_461861_1810643863_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "#IWasThatKid who had a tons of dinosaurs' collections :B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:55:41 +0000", "from_user": "youngleebj", "from_user_id": 57095106, "from_user_id_str": "57095106", "from_user_name": "Josh Lee", "geo": null, "id": 148808732283912200, "id_str": "148808732283912193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1236375070/IMG_0309_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1236375070/IMG_0309_normal.JPG", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "I'm at World's Largest Dinosaurs Exhibit at the American Museum of Natural History (Central Park West, New York) http://t.co/M4Eu45bK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:55:18 +0000", "from_user": "Margyfoo", "from_user_id": 431762201, "from_user_id_str": "431762201", "from_user_name": "Margy Timmins", "geo": null, "id": 148808637324861440, "id_str": "148808637324861440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681168519/2poqinzs54_129668058-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681168519/2poqinzs54_129668058-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "BIO-BYTES Game Base - T-Rex (Brown): Tyrannosaurus Rex (Tyrant Lizard King) are fearsome dinosaurs from earth's ... http://t.co/cXJslg0d", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:54:25 +0000", "from_user": "greatGABINO", "from_user_id": 208704666, "from_user_id_str": "208704666", "from_user_name": "Heavy Toker. \\u263A", "geo": null, "id": 148808414234021900, "id_str": "148808414234021888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1607199150/lunapic_131960359632341_33_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607199150/lunapic_131960359632341_33_normal.gif", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @taylor_renae_: @greatGABINO dinosaurs these days lmfao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:54:15 +0000", "from_user": "poynterbabe", "from_user_id": 372374710, "from_user_id_str": "372374710", "from_user_name": "Poynter.", "geo": null, "id": 148808374941794300, "id_str": "148808374941794304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702373315/ranitaaaa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702373315/ranitaaaa_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/eqAig1kh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:53:36 +0000", "from_user": "jane2485", "from_user_id": 420206810, "from_user_id_str": "420206810", "from_user_name": "jane", "geo": null, "id": 148808209812041730, "id_str": "148808209812041728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1655186844/01_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655186844/01_normal.jpeg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dinosaurs Prepasted Wall Border by Borde: Dinosaurs prepasted wall border. Measure http://t.co/Ur1W2BdG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:51:34 +0000", "from_user": "Infamist92", "from_user_id": 355665985, "from_user_id_str": "355665985", "from_user_name": "jo\\u0438\\u03B1\\u0442\\u043D\\u03B1\\u0438", "geo": null, "id": 148807697888849920, "id_str": "148807697888849920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1648409657/INFAMISTNOWWW_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648409657/INFAMISTNOWWW_normal.png", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Photo: \\u203A God Creates Dinosaurs. God Destroys Dinosaurs. God Creates Man. Man Destorys God. Man Creates... http://t.co/EU3cs7Kr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:51:03 +0000", "from_user": "cianopep", "from_user_id": 330320297, "from_user_id_str": "330320297", "from_user_name": "kojo peprah", "geo": null, "id": 148807568502964220, "id_str": "148807568502964224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1429201885/31049_1464558372366_1185690132_31343642_5876549_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1429201885/31049_1464558372366_1185690132_31343642_5876549_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @kofif13: Hahahahaha~RT @edemkeith: May god forgive u\"@_freakynerd_: Ewes are the reason why dinosaurs are extinct. That was ... http://t.co/uG7EaasB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:50:14 +0000", "from_user": "taylor_renae_", "from_user_id": 43984553, "from_user_id_str": "43984553", "from_user_name": "Taylor R.H", "geo": null, "id": 148807362948497400, "id_str": "148807362948497408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695666601/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695666601/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@greatGABINO dinosaurs these days lmfao", "to_user": "greatGABINO", "to_user_id": 208704666, "to_user_id_str": "208704666", "to_user_name": "Heavy Toker. \\u263A", "in_reply_to_status_id": 148807006189400060, "in_reply_to_status_id_str": "148807006189400065"}, +{"created_at": "Mon, 19 Dec 2011 16:50:09 +0000", "from_user": "sashaboersma", "from_user_id": 15325961, "from_user_id_str": "15325961", "from_user_name": "Sasha Boersma", "geo": null, "id": 148807342312538100, "id_str": "148807342312538113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1093024945/9764edae-5c53-4b09-abbd-efdf5ab423c4_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1093024945/9764edae-5c53-4b09-abbd-efdf5ab423c4_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Ha! IDM pros have been calling 'em that for years and told to cut it out!! RT @klashton27: @sashaboersma because they're dinosaurs!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:48:28 +0000", "from_user": "WolfgangBaldwin", "from_user_id": 245074875, "from_user_id_str": "245074875", "from_user_name": "Terrence Baldwin", "geo": null, "id": 148806916645195780, "id_str": "148806916645195776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1676080682/profile_image_1323125663138_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676080682/profile_image_1323125663138_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">TwidroydPRO</a>", "text": "Remember when the speaker phone was the bluetooth. We are dinosaurs. SMH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:48:26 +0000", "from_user": "ryanegeez", "from_user_id": 333536696, "from_user_id_str": "333536696", "from_user_name": "ryane", "geo": null, "id": 148806910412460030, "id_str": "148806910412460032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1624732454/geezyfg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624732454/geezyfg_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @Trustme_Imma_Dr: I havnt talked to @ryanegeez since dinosaurs roamed..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:48:15 +0000", "from_user": "9pymitsurv", "from_user_id": 368847874, "from_user_id_str": "368847874", "from_user_name": "Rickey Tackett", "geo": null, "id": 148806863776002050, "id_str": "148806863776002048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1531159472/923_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1531159472/923_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "My idea of a romantic dinner for two involves a surprising amount of papier-mache dinosaurs.If you want us to know how much you love biking,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:48:13 +0000", "from_user": "Trustme_Imma_Dr", "from_user_id": 158204905, "from_user_id_str": "158204905", "from_user_name": "Error Code: 69", "geo": null, "id": 148806855932653570, "id_str": "148806855932653569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1644457201/IMG00048-20111117-1655_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644457201/IMG00048-20111117-1655_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "I havnt talked to @ryanegeez since dinosaurs roamed..", "to_user": "ryanegeez", "to_user_id": 333536696, "to_user_id_str": "333536696", "to_user_name": "ryane", "in_reply_to_status_id": 148805804663910400, "in_reply_to_status_id_str": "148805804663910401"}, +{"created_at": "Mon, 19 Dec 2011 16:47:26 +0000", "from_user": "JohnRondina", "from_user_id": 214261959, "from_user_id_str": "214261959", "from_user_name": "John Rondina", "geo": null, "id": 148806659215589380, "id_str": "148806659215589376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1178635887/ed3b93b1ceaadf18d1d151ef0ac933c8_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1178635887/ed3b93b1ceaadf18d1d151ef0ac933c8_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "Touch screens may soon be dinosaurs #touchless #iPhone http://t.co/1fP5U41Y", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:47:10 +0000", "from_user": "lisa1281", "from_user_id": 46656189, "from_user_id_str": "46656189", "from_user_name": "Lisa", "geo": null, "id": 148806589841809400, "id_str": "148806589841809408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687938420/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687938420/image_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @hmns: Parents! Does your child love dinosaurs? Mummies? Weird insects? Book their birthday party at HMNS: http://t.co/YduBiU0p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:46:53 +0000", "from_user": "SeanCaron148", "from_user_id": 398488062, "from_user_id_str": "398488062", "from_user_name": "Sean Caron", "geo": null, "id": 148806519318777860, "id_str": "148806519318777856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1607166846/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607166846/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:46:31 +0000", "from_user": "skinflower14", "from_user_id": 275763921, "from_user_id_str": "275763921", "from_user_name": "Kneha Kc", "geo": null, "id": 148806428864413700, "id_str": "148806428864413698", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1300012011/fgt_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1300012011/fgt_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Herbivorous dinosaurs? Wow!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:46:22 +0000", "from_user": "David_Bressan", "from_user_id": 278168522, "from_user_id_str": "278168522", "from_user_name": "David Bressan", "geo": null, "id": 148806391149232130, "id_str": "148806391149232128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1302280430/BRESSAN_DAVID_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1302280430/BRESSAN_DAVID_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "If earth-history~1 year: There are now dinosaurs that we would call birds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:46:09 +0000", "from_user": "EpicHumor95", "from_user_id": 342155455, "from_user_id_str": "342155455", "from_user_name": "Dust!n Sm!th", "geo": null, "id": 148806335763451900, "id_str": "148806335763451904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670780691/384309_329854023707145_100000476496276_1412252_418106293_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670780691/384309_329854023707145_100000476496276_1412252_418106293_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "You should never live in the past. Unless you\\u2019re a time traveler. Cause dinosaurs rule....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:45:48 +0000", "from_user": "hiennessy", "from_user_id": 44407624, "from_user_id_str": "44407624", "from_user_name": "Hien Tran", "geo": null, "id": 148806245745303550, "id_str": "148806245745303552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1564598680/254603_2375774720653_1439149979_2792369_6189122_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1564598680/254603_2375774720653_1439149979_2792369_6189122_n_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "http://t.co/LKqnTTWv TOTALLY ENORMOUS EXTINCT DINOSAURS, F YEAH!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:45:43 +0000", "from_user": "HotStockCafe", "from_user_id": 217580886, "from_user_id_str": "217580886", "from_user_name": "Penny HotStocks", "geo": null, "id": 148806224245309440, "id_str": "148806224245309440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1171074806/hsc_logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1171074806/hsc_logo_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "$NGMC \\u2013 Since the Dinosaurs are gone... Next Generation Energy Corp.\\u2019s asset life for producing natural gas wells may be decades long.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:45:42 +0000", "from_user": "DaddyHotStocks", "from_user_id": 217658468, "from_user_id_str": "217658468", "from_user_name": "Carl", "geo": null, "id": 148806222760517630, "id_str": "148806222760517632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1187987835/mcp_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1187987835/mcp_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "$NGMC \\u2013 Since the Dinosaurs are gone... Next Generation Energy Corp.\\u2019s asset life for producing natural gas wells may be decades long.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:45:42 +0000", "from_user": "JayBugster", "from_user_id": 170804666, "from_user_id_str": "170804666", "from_user_name": "Jay Bugster", "geo": null, "id": 148806221544161280, "id_str": "148806221544161281", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "$NGMC \\u2013 Since the Dinosaurs are gone... Next Generation Energy Corp.\\u2019s asset life for producing natural gas wells may be decades long.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:45:42 +0000", "from_user": "Penny_Hotstocks", "from_user_id": 196136720, "from_user_id_str": "196136720", "from_user_name": "Penny Hotstocks", "geo": null, "id": 148806220336209920, "id_str": "148806220336209920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1150088359/vmac2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1150088359/vmac2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "$NGMC \\u2013 Since the Dinosaurs are gone... Next Generation Energy Corp.\\u2019s asset life for producing natural gas wells may be decades long.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:45:41 +0000", "from_user": "StockShocks", "from_user_id": 373489572, "from_user_id_str": "373489572", "from_user_name": "Stock Shocks", "geo": null, "id": 148806219145035780, "id_str": "148806219145035777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1542815545/stock-shocks3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542815545/stock-shocks3_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "$NGMC \\u2013 Since the Dinosaurs are gone... Next Generation Energy Corp.\\u2019s asset life for producing natural gas wells may be decades long.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:45:41 +0000", "from_user": "stocktalk101", "from_user_id": 67735266, "from_user_id_str": "67735266", "from_user_name": "stock talk", "geo": null, "id": 148806217366634500, "id_str": "148806217366634498", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/506663184/LOGO_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/506663184/LOGO_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "$NGMC \\u2013 Since the Dinosaurs are gone... Next Generation Energy Corp.\\u2019s asset life for producing natural gas wells may be decades long.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:45:41 +0000", "from_user": "PennystockEmpor", "from_user_id": 334114733, "from_user_id_str": "334114733", "from_user_name": "PennystockEmporium", "geo": null, "id": 148806216141905920, "id_str": "148806216141905921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1438723359/favicon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1438723359/favicon_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "$NGMC \\u2013 Since the Dinosaurs are gone... Next Generation Energy Corp.\\u2019s asset life for producing natural gas wells may be decades long.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:45:40 +0000", "from_user": "StockUltraman", "from_user_id": 196026134, "from_user_id_str": "196026134", "from_user_name": "Stock Ultraman", "geo": null, "id": 148806214418042880, "id_str": "148806214418042880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1171058207/stock_ultraman_150_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1171058207/stock_ultraman_150_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "$NGMC \\u2013 Since the Dinosaurs are gone... Next Generation Energy Corp.\\u2019s asset life for producing natural gas wells may be decades long.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:45:40 +0000", "from_user": "Virmmac", "from_user_id": 122376894, "from_user_id_str": "122376894", "from_user_name": "D Graef", "geo": null, "id": 148806213218471940, "id_str": "148806213218471936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1132117148/V_new_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1132117148/V_new_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "$NGMC \\u2013 Since the Dinosaurs are gone... Next Generation Energy Corp.\\u2019s asset life for producing natural gas wells may be decades long.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:45:27 +0000", "from_user": "fuuck_yuu", "from_user_id": 195369323, "from_user_id_str": "195369323", "from_user_name": "\\uE32Dryryryryryry\\uE32D", "geo": null, "id": 148806157203537920, "id_str": "148806157203537921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668428610/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668428610/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#CoolStoryBro.. Just add some more dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:45:18 +0000", "from_user": "hmns", "from_user_id": 16013208, "from_user_id_str": "16013208", "from_user_name": "hmns", "geo": null, "id": 148806120281083900, "id_str": "148806120281083907", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/59059717/dino_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/59059717/dino_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Parents! Does your child love dinosaurs? Mummies? Weird insects? Book their birthday party at HMNS: http://t.co/YduBiU0p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:44:39 +0000", "from_user": "LJ_Putzier20", "from_user_id": 399591902, "from_user_id_str": "399591902", "from_user_name": "LJ Putzier", "geo": null, "id": 148805958179631100, "id_str": "148805958179631104", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1683837299/RpgcVmID_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683837299/RpgcVmID_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Birds are dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:43:59 +0000", "from_user": "20_liveitup_12", "from_user_id": 440116102, "from_user_id_str": "440116102", "from_user_name": "Beautifully me", "geo": null, "id": 148805787916050430, "id_str": "148805787916050432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700615418/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700615418/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:43:59 +0000", "from_user": "CEOJakeDillard", "from_user_id": 417454072, "from_user_id_str": "417454072", "from_user_name": "Jake Dillard", "geo": null, "id": 148805787844755460, "id_str": "148805787844755457", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1649407706/vodafone_mclaren_mercedes_mp4-24_-_side_view_-_a4__300dpi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649407706/vodafone_mclaren_mercedes_mp4-24_-_side_view_-_a4__300dpi_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "I like my women like I like my oatmeal. Quick, easy, and covered in facts about dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:41:56 +0000", "from_user": "nashasaurus", "from_user_id": 51570869, "from_user_id_str": "51570869", "from_user_name": "Jessie Nash", "geo": null, "id": 148805271379120130, "id_str": "148805271379120129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699416820/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699416820/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @OhhhBlakeee: Kiss me if I'm wrong, but dinosaurs still exist, right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:41:41 +0000", "from_user": "LandOfBricks", "from_user_id": 405208431, "from_user_id_str": "405208431", "from_user_name": "Land of Bricks", "geo": null, "id": 148805210196811780, "id_str": "148805210196811776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1622890624/images_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622890624/images_normal.jpeg", "source": "<a href="http://landofbricks.com" rel="nofollow">LandOfBricksAPP</a>", "text": "100% Lego Duplo Bricks Blocks Figures Dinosaurs Trains Huge Lot 550+ Pcs 16 Lbs http://t.co/WlzdkIxt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:41:38 +0000", "from_user": "BigUpsCammy", "from_user_id": 97247509, "from_user_id_str": "97247509", "from_user_name": "Cammy-G", "geo": null, "id": 148805198096240640, "id_str": "148805198096240640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1623137298/Snapshot_new_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1623137298/Snapshot_new_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@AJAndrew83 dude, when I come to Pittsburgh..we shall see dinosaurs together lol. Drinks on me aha", "to_user": "AJAndrew83", "to_user_id": 71626076, "to_user_id_str": "71626076", "to_user_name": "andrew schaffer", "in_reply_to_status_id": 148803065745645570, "in_reply_to_status_id_str": "148803065745645568"}, +{"created_at": "Mon, 19 Dec 2011 16:41:34 +0000", "from_user": "Orie0", "from_user_id": 291359756, "from_user_id_str": "291359756", "from_user_name": "Orie Davis", "geo": null, "id": 148805179695837200, "id_str": "148805179695837187", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657878627/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657878627/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @OhhhBlakeee: Kiss me if I'm wrong, but dinosaurs still exist, right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:41:21 +0000", "from_user": "MyPapaya_", "from_user_id": 316165007, "from_user_id_str": "316165007", "from_user_name": "maya hampton", "geo": null, "id": 148805125299912700, "id_str": "148805125299912706", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1678030485/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678030485/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Aaron D Lee & the D aint for Dinosaurs .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:40:52 +0000", "from_user": "TheOneFifteen", "from_user_id": 346977849, "from_user_id_str": "346977849", "from_user_name": "SamKilledKennedy", "geo": null, "id": 148805006366220300, "id_str": "148805006366220288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657849639/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657849639/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@_MeganStevenson Dinosaurs could take up to 3 days in the post, sorry :/x", "to_user": "_MeganStevenson", "to_user_id": 285910013, "to_user_id_str": "285910013", "to_user_name": "Harry Potter ", "in_reply_to_status_id": 148803493312995330, "in_reply_to_status_id_str": "148803493312995328"}, +{"created_at": "Mon, 19 Dec 2011 16:40:23 +0000", "from_user": "TomBendall", "from_user_id": 104275540, "from_user_id_str": "104275540", "from_user_name": "Tom Bendall", "geo": null, "id": 148804885226340350, "id_str": "148804885226340353", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1642061578/318364_2383151350862_1613092135_2322798_2100587467_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642061578/318364_2383151350862_1613092135_2322798_2100587467_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Middle Jurassic (169-156mya). Life diversifies and dinosaurs become more recognisable. Ichthyosaurs are particularly common #GeologyAdvent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:40:20 +0000", "from_user": "nem0zburd", "from_user_id": 344468189, "from_user_id_str": "344468189", "from_user_name": "Lawrin.", "geo": null, "id": 148804871552901120, "id_str": "148804871552901121", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680844808/Picture_0016_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680844808/Picture_0016_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I like dinosaurs http://t.co/xeaNeJHF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:40:05 +0000", "from_user": "jjjjhollie", "from_user_id": 75816363, "from_user_id_str": "75816363", "from_user_name": "Jess Smith", "geo": null, "id": 148804807518470140, "id_str": "148804807518470144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695163006/twitterpic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695163006/twitterpic_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "yes, got tickets for next years gazastock festival:') hoping to see the origami dinosaurs again (yn)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:40:01 +0000", "from_user": "SalsaChoicer", "from_user_id": 121968669, "from_user_id_str": "121968669", "from_user_name": "Salsa Choicer", "geo": null, "id": 148804790481203200, "id_str": "148804790481203200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://google.com" rel="nofollow">SalsaChoicer</a>", "text": "did you know? dinosaurs hate lazers in the morning", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:39:54 +0000", "from_user": "Dixieqfx", "from_user_id": 431766508, "from_user_id_str": "431766508", "from_user_name": "Dixie Haith", "geo": null, "id": 148804760865214460, "id_str": "148804760865214465", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681172193/eg1eji453q_131690635-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681172193/eg1eji453q_131690635-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dinosaurs! (Turtleback School & Library Binding Edition) (DK Reader - Level 4): FOR USE IN SCHOOLS AND LIBRARIES... http://t.co/ejO6PfAY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:39:44 +0000", "from_user": "staceharrowerx", "from_user_id": 357094583, "from_user_id_str": "357094583", "from_user_name": "Stacey harrower", "geo": null, "id": 148804721099014140, "id_str": "148804721099014145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1596209206/twitter_pictureeeeeeee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596209206/twitter_pictureeeeeeee_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Turkey dinosaurs are the shit", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:39:36 +0000", "from_user": "x667", "from_user_id": 254435005, "from_user_id_str": "254435005", "from_user_name": "Sam Sand", "geo": null, "id": 148804687485874180, "id_str": "148804687485874176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "ScDa: For the first time, the presence of large bodied herbivorous dinosaurs in Antarctica has been recorded. Until now, remains of s...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:39:17 +0000", "from_user": "StallingsM", "from_user_id": 101869258, "from_user_id_str": "101869258", "from_user_name": "MaryAnn Stallings", "geo": null, "id": 148804607475318800, "id_str": "148804607475318784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/610231152/Me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/610231152/Me_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @hdiblasi: Videos - Dinosaurs Through History and Walking With Dinosaurs http://t.co/0vNLiATz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:38:56 +0000", "from_user": "uCream_4Scoobii", "from_user_id": 178614097, "from_user_id_str": "178614097", "from_user_name": "\\u26A2Silent Movement\\u26A2", "geo": null, "id": 148804516807061500, "id_str": "148804516807061504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1654047424/uCream_4Scoobii_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654047424/uCream_4Scoobii_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Yoo ii need ta call sumbody && tell em bout my dream so it dont kum tru . even tho ion see dinosaurs cumn bak no tyme soon :) still ...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:38:54 +0000", "from_user": "Alicedeeney", "from_user_id": 165218618, "from_user_id_str": "165218618", "from_user_name": "alice deeney", "geo": null, "id": 148804510263939070, "id_str": "148804510263939072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679746902/Picture_570_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679746902/Picture_570_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Went to Narnia full of dinosaurs with George Bush in my dream, was about to get ate until @dougiemcfly rode on a unicorn to save us... lolol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:38:51 +0000", "from_user": "DJSoExquisite", "from_user_id": 23485801, "from_user_id_str": "23485801", "from_user_name": "Devoir Johnson", "geo": null, "id": 148804495474819070, "id_str": "148804495474819073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657506950/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657506950/image_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "@Shanieceprice lol Idk abt the dinosaurs", "to_user": "Shanieceprice", "to_user_id": 150209296, "to_user_id_str": "150209296", "to_user_name": "shaniece", "in_reply_to_status_id": 148744686536888320, "in_reply_to_status_id_str": "148744686536888320"}, +{"created_at": "Mon, 19 Dec 2011 16:38:14 +0000", "from_user": "waitatiri", "from_user_id": 71996755, "from_user_id_str": "71996755", "from_user_name": "\\u0434\\u0432\\u0430 \\u0442\\u0440\\u0438", "geo": null, "id": 148804342097510400, "id_str": "148804342097510400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702195233/webcam-toy-photo8_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702195233/webcam-toy-photo8_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@chrisvisconti which one do you prefer, gummy bears or dinosaurs?", "to_user": "chrisvisconti", "to_user_id": 22599099, "to_user_id_str": "22599099", "to_user_name": "Christopher Visconti", "in_reply_to_status_id": 148803116685475840, "in_reply_to_status_id_str": "148803116685475841"}, +{"created_at": "Mon, 19 Dec 2011 16:37:57 +0000", "from_user": "solisjesse", "from_user_id": 157792425, "from_user_id_str": "157792425", "from_user_name": "Jesse Solis", "geo": null, "id": 148804272274944000, "id_str": "148804272274944000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1499154230/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1499154230/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Dinosaurs and bosco sticks for lunch. WINNING", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:37:46 +0000", "from_user": "Sophie_Compres", "from_user_id": 281256566, "from_user_id_str": "281256566", "from_user_name": "Sophie C'\\u2661", "geo": null, "id": 148804226875789300, "id_str": "148804226875789313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702298325/379906_2657056218389_1015357104_32837743_631743411_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702298325/379906_2657056218389_1015357104_32837743_631743411_n_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/Ewi6B2F9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:36:29 +0000", "from_user": "BigBOOTYNeezie", "from_user_id": 165695299, "from_user_id_str": "165695299", "from_user_name": "XII.VIII. XI \\u10E6", "geo": null, "id": 148803901041287170, "id_str": "148803901041287168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693551796/webcam-toy-photo8_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693551796/webcam-toy-photo8_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Reading this dinosaurs book in Spanish lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:36:17 +0000", "from_user": "80Ian80", "from_user_id": 292178339, "from_user_id_str": "292178339", "from_user_name": "Ian D", "geo": null, "id": 148803852848730100, "id_str": "148803852848730112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1339283075/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1339283075/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@rickygervais if hell existed it would be brilliant, just a load of us atheists standing around chatting about dinosaurs.", "to_user": "rickygervais", "to_user_id": 20015311, "to_user_id_str": "20015311", "to_user_name": "Ricky Gervais"}, +{"created_at": "Mon, 19 Dec 2011 16:36:02 +0000", "from_user": "RebekahFawcett", "from_user_id": 292499282, "from_user_id_str": "292499282", "from_user_name": "Rebekah Fawcett", "geo": null, "id": 148803790299086850, "id_str": "148803790299086848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1337565178/FACE_CARD_PICS_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1337565178/FACE_CARD_PICS_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@kkdietitian - love it! We do this with our kids, although they usually choose dinosaurs or kitty cats for their pancake shapes.", "to_user": "kkdietitian", "to_user_id": 63162911, "to_user_id_str": "63162911", "to_user_name": "Kim Kirchherr", "in_reply_to_status_id": 148755385107484670, "in_reply_to_status_id_str": "148755385107484672"}, +{"created_at": "Mon, 19 Dec 2011 16:35:58 +0000", "from_user": "_jazzybooo", "from_user_id": 212805003, "from_user_id_str": "212805003", "from_user_name": "Jazmin Perez\\u270C\\u2122", "geo": null, "id": 148803772364238850, "id_str": "148803772364238849", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700728067/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700728067/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "That girl knows a lot about dinosaurs!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:35:47 +0000", "from_user": "lyndonroberts", "from_user_id": 31096873, "from_user_id_str": "31096873", "from_user_name": "Lyndon Roberts", "geo": null, "id": 148803727048970240, "id_str": "148803727048970241", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/658781936/untitled_normal.bmp", "profile_image_url_https": "https://si0.twimg.com/profile_images/658781936/untitled_normal.bmp", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@rickygervais There are no dinosaurs in the bible......", "to_user": "rickygervais", "to_user_id": 20015311, "to_user_id_str": "20015311", "to_user_name": "Ricky Gervais"}, +{"created_at": "Mon, 19 Dec 2011 16:35:34 +0000", "from_user": "_jazzybooo", "from_user_id": 212805003, "from_user_id_str": "212805003", "from_user_name": "Jazmin Perez\\u270C\\u2122", "geo": null, "id": 148803671013081100, "id_str": "148803671013081088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700728067/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700728067/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Haha, my niece was all telling Edgar about dinosaurs. :b", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:35:25 +0000", "from_user": "turnupthesound", "from_user_id": 27071535, "from_user_id_str": "27071535", "from_user_name": "Leah Lovecat", "geo": null, "id": 148803632509362180, "id_str": "148803632509362178", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1568474302/blonde_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1568474302/blonde_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @statesidemenace: @turnupthesound I have to play a show tonight...so are dinosaurs more suited to look after the park or play in my band?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:35:24 +0000", "from_user": "its_imogennn", "from_user_id": 434521437, "from_user_id_str": "434521437", "from_user_name": "imogen mansfield", "geo": null, "id": 148803629640462340, "id_str": "148803629640462336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1688654634/428637253_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688654634/428637253_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@TheOneFifteen followback? Don't know what you're on about with these dinosaurs ahaha!", "to_user": "TheOneFifteen", "to_user_id": 346977849, "to_user_id_str": "346977849", "to_user_name": "SamKilledKennedy", "in_reply_to_status_id": 148803163812667400, "in_reply_to_status_id_str": "148803163812667392"}, +{"created_at": "Mon, 19 Dec 2011 16:34:27 +0000", "from_user": "tennysonestead", "from_user_id": 22547660, "from_user_id_str": "22547660", "from_user_name": "Tennyson E. Stead", "geo": null, "id": 148803389495578620, "id_str": "148803389495578624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1497644212/Tenny_Hat_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1497644212/Tenny_Hat_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@DeneenMelody The project itself is about 10 year old space commandoes battling giant alien dinosaurs and robots and such. Keep you posted!", "to_user": "DeneenMelody", "to_user_id": 19327027, "to_user_id_str": "19327027", "to_user_name": "Deneen Melody", "in_reply_to_status_id": 148784592239861760, "in_reply_to_status_id_str": "148784592239861760"}, +{"created_at": "Mon, 19 Dec 2011 16:34:25 +0000", "from_user": "Tiff06king", "from_user_id": 348068888, "from_user_id_str": "348068888", "from_user_name": "Tiffany King", "geo": null, "id": 148803379764805630, "id_str": "148803379764805632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1513295104/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1513295104/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:34:22 +0000", "from_user": "statesidemenace", "from_user_id": 95150233, "from_user_id_str": "95150233", "from_user_name": "The Stateside Menace", "geo": null, "id": 148803367177687040, "id_str": "148803367177687040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/562827790/m_82ad0bc0c699a8b0387ab6f6e8f4b69f_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/562827790/m_82ad0bc0c699a8b0387ab6f6e8f4b69f_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@turnupthesound I have to play a show tonight...so are dinosaurs more suited to look after the park or play in my band?", "to_user": "turnupthesound", "to_user_id": 27071535, "to_user_id_str": "27071535", "to_user_name": "Leah Lovecat", "in_reply_to_status_id": 148800915456016400, "in_reply_to_status_id_str": "148800915456016384"}, +{"created_at": "Mon, 19 Dec 2011 16:33:10 +0000", "from_user": "AJAndrew83", "from_user_id": 71626076, "from_user_id_str": "71626076", "from_user_name": "andrew schaffer", "geo": null, "id": 148803065745645570, "id_str": "148803065745645568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1538023845/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538023845/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@BigUpsCammy wat up bro u still seeing #dinosaurs lmao!!", "to_user": "BigUpsCammy", "to_user_id": 97247509, "to_user_id_str": "97247509", "to_user_name": "Cammy-G"}, +{"created_at": "Mon, 19 Dec 2011 16:32:27 +0000", "from_user": "TheSundayIndo", "from_user_id": 33178673, "from_user_id_str": "33178673", "from_user_name": "Sunday Independent", "geo": null, "id": 148802886560792580, "id_str": "148802886560792578", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/146439345/ireland-flag.jpg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/146439345/ireland-flag.jpg_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Titanosaur bone found in Antartica: LONG before the arrival of penguins, giant plant-eating dinosaurs roamed Ant... http://t.co/OPsqp1yc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:32:11 +0000", "from_user": "RawrxxTori", "from_user_id": 144937431, "from_user_id_str": "144937431", "from_user_name": "Tori Cox", "geo": null, "id": 148802819372232700, "id_str": "148802819372232704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1205429743/Photo_on_2011-01-02_at_13.44__4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1205429743/Photo_on_2011-01-02_at_13.44__4_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "I GOT A B- IN DINOSAURS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:32:07 +0000", "from_user": "udokovaba", "from_user_id": 275149590, "from_user_id_str": "275149590", "from_user_name": "Igor", "geo": null, "id": 148802802771181570, "id_str": "148802802771181569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1357382784/310_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1357382784/310_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/QxyDHcOY Magic Tree House Boxed Set, 1-4 Dinosaurs Before Dark, The Knight at Dawn, Mummies in the Morni", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:31:26 +0000", "from_user": "sharonsandia", "from_user_id": 432720761, "from_user_id_str": "432720761", "from_user_name": "sharon", "geo": null, "id": 148802632000086000, "id_str": "148802632000086016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696470569/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696470569/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@xLiChi is because I love dinosaurs yay :D!!!, I like your pic", "to_user": "xLiChi", "to_user_id": 433222472, "to_user_id_str": "433222472", "to_user_name": ".\\u2022'\\u2022.\\u2606\\u266ALiNnEa\\u2606\\u266A.\\u2022'\\u2022.", "in_reply_to_status_id": 148798630722142200, "in_reply_to_status_id_str": "148798630722142208"}, +{"created_at": "Mon, 19 Dec 2011 16:30:33 +0000", "from_user": "jloro92", "from_user_id": 247543087, "from_user_id_str": "247543087", "from_user_name": "Jordyn Loro", "geo": null, "id": 148802407617409020, "id_str": "148802407617409026", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1585443928/298549_10150407668040491_516385490_10594395_1087193222_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585443928/298549_10150407668040491_516385490_10594395_1087193222_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"@melwestwood: I'm quoting mean girls for the rest of my life. #bestmovieever\" \"and on the third day god killed the dinosaurs...\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:29:25 +0000", "from_user": "_KodeineSweet", "from_user_id": 152828049, "from_user_id_str": "152828049", "from_user_name": "\\u311A\\u03B1\\u1E49\\u03B1\\u03B1 uu\\u028E\\u05DF \\u0438\\u0455\\u043D\\u03B9\\u0442 \\u2661", "geo": null, "id": 148802124212482050, "id_str": "148802124212482048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701053627/389431_214714121936514_100001937845413_483991_1028002348_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701053627/389431_214714121936514_100001937845413_483991_1028002348_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @TattedNdFooling: \"@_KodeineSweet: Those dinosaurs on jurassic park is mean /:\"Lol They Not Suppose To Be Nice", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:28:40 +0000", "from_user": "klashton27", "from_user_id": 14241069, "from_user_id_str": "14241069", "from_user_name": "Kelly Lynne Ashton", "geo": null, "id": 148801935590428670, "id_str": "148801935590428672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1262054012/KLA_by_KW_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1262054012/KLA_by_KW_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@sashaboersma because they're dinosaurs!!!!", "to_user": "sashaboersma", "to_user_id": 15325961, "to_user_id_str": "15325961", "to_user_name": "Sasha Boersma", "in_reply_to_status_id": 148799653683535870, "in_reply_to_status_id_str": "148799653683535872"}, +{"created_at": "Mon, 19 Dec 2011 16:27:03 +0000", "from_user": "captainzeo", "from_user_id": 69006523, "from_user_id_str": "69006523", "from_user_name": "captainzeo", "geo": null, "id": 148801528973635600, "id_str": "148801528973635587", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1611664492/Untitled-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611664492/Untitled-1_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/cb6oaBcH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:26:59 +0000", "from_user": "tFFMrPink", "from_user_id": 270175716, "from_user_id_str": "270175716", "from_user_name": "Stefan Hartwig", "geo": null, "id": 148801511776993280, "id_str": "148801511776993281", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1282295585/k_helge_schneider_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1282295585/k_helge_schneider_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube video http://t.co/cmJLaX44 Battlefield 3 Wake Island Easter Eggs - 5 Dinosaurs - Backgr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:26:51 +0000", "from_user": "jvillaroman", "from_user_id": 755484, "from_user_id_str": "755484", "from_user_name": "Jeremy Villaroman", "geo": null, "id": 148801477723439100, "id_str": "148801477723439104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1133801549/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1133801549/avatar_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Now that I know about the Spielberg Face, I can make blockbuster movies about Dinosaurs and Aliens. http://t.co/MWvUyJFr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:26:03 +0000", "from_user": "iGBeezy", "from_user_id": 290852212, "from_user_id_str": "290852212", "from_user_name": "\\u00A4 Gunnar Brown \\u00A4 ", "geo": null, "id": 148801274723311600, "id_str": "148801274723311617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685983082/MNPsq0a5_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685983082/MNPsq0a5_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @OhhhBlakeee: Kiss me if I'm wrong, but dinosaurs still exist, right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:25:37 +0000", "from_user": "hdiblasi", "from_user_id": 7700432, "from_user_id_str": "7700432", "from_user_name": "Howie DiBlasi", "geo": null, "id": 148801166908727300, "id_str": "148801166908727298", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1120366703/2_PR_Crop3_327_SQ_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1120366703/2_PR_Crop3_327_SQ_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Videos - Dinosaurs Through History and Walking With Dinosaurs http://t.co/0vNLiATz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:24:34 +0000", "from_user": "KevBaz11", "from_user_id": 413188131, "from_user_id_str": "413188131", "from_user_name": "Kev Bailey", "geo": null, "id": 148800904471126000, "id_str": "148800904471126016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1642652690/kevv_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642652690/kevv_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@JesusChristFTM Hahaha your blogs get funnier all the fuckin time lad! Mary's made me dinosaurs, smiley faces and waffles so, INABIT, haha!!", "to_user": "JesusChristFTM", "to_user_id": 338305554, "to_user_id_str": "338305554", "to_user_name": "JesusChristFTM"}, +{"created_at": "Mon, 19 Dec 2011 16:24:18 +0000", "from_user": "mikehollyman", "from_user_id": 175845940, "from_user_id_str": "175845940", "from_user_name": "michael hollyman", "geo": null, "id": 148800834854060030, "id_str": "148800834854060032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1210313902/23115_587905410_194_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1210313902/23115_587905410_194_n_normal.jpg", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "@rickygervais I believe in dinosaurs.there's proof of there existence!! RT.", "to_user": "rickygervais", "to_user_id": 20015311, "to_user_id_str": "20015311", "to_user_name": "Ricky Gervais", "in_reply_to_status_id": 148790516744585200, "in_reply_to_status_id_str": "148790516744585216"}, +{"created_at": "Mon, 19 Dec 2011 16:23:24 +0000", "from_user": "mszsheilabby", "from_user_id": 26929759, "from_user_id_str": "26929759", "from_user_name": "Thuy Trang Nguyen", "geo": null, "id": 148800607673782270, "id_str": "148800607673782273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688118271/IMG_7473_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688118271/IMG_7473_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "then one crazy drunk/high night we would try to hop over the fence and touch the dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:22:52 +0000", "from_user": "mszsheilabby", "from_user_id": 26929759, "from_user_id_str": "26929759", "from_user_name": "Thuy Trang Nguyen", "geo": null, "id": 148800476115238900, "id_str": "148800476115238913", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688118271/IMG_7473_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688118271/IMG_7473_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "what if the dinosaurs were still alive.. we would have to live in fenced areas and shit. lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:22:41 +0000", "from_user": "RobinRiviera", "from_user_id": 206736428, "from_user_id_str": "206736428", "from_user_name": "\\u2661D", "geo": null, "id": 148800430049206270, "id_str": "148800430049206272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1590239770/IMG-20111016-00106_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1590239770/IMG-20111016-00106_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Totally Enormous Extinct Dinosaurs - Graden #Np (nokia reclame soundtrack). \\u2665___\\u2665", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:22:32 +0000", "from_user": "NathanSamuel", "from_user_id": 18602828, "from_user_id_str": "18602828", "from_user_name": "NathanSamuel", "geo": null, "id": 148800392367575040, "id_str": "148800392367575042", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/611667399/Nathan_CV_Pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/611667399/Nathan_CV_Pic_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Finally a new talk radio in GP to challenge @702 and its aging expat dinosaurs- New radio stations in 3 metros http://t.co/lymvDPd1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:22:23 +0000", "from_user": "SuhManThuh45", "from_user_id": 258616495, "from_user_id_str": "258616495", "from_user_name": "Samantha :)", "geo": null, "id": 148800351368257540, "id_str": "148800351368257536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693412081/2wXNkvl9_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693412081/2wXNkvl9_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@kanebrantley And on the 3rd day, God created the Remington boltaction rifle, so that Man could fight the dinosaurs And the homosexuals Amen", "to_user": "kanebrantley", "to_user_id": 278380047, "to_user_id_str": "278380047", "to_user_name": "Kane Brantley"}, +{"created_at": "Mon, 19 Dec 2011 16:22:20 +0000", "from_user": "k1i2a3", "from_user_id": 112857749, "from_user_id_str": "112857749", "from_user_name": "kiandra rivera", "geo": null, "id": 148800340253356030, "id_str": "148800340253356034", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1505324894/DSC03167new_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505324894/DSC03167new_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/aQ0fGiZN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:22:15 +0000", "from_user": "GaBbYSwAnZy", "from_user_id": 166598282, "from_user_id_str": "166598282", "from_user_name": "PrOmOaLLdAy", "geo": null, "id": 148800321240567800, "id_str": "148800321240567808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693087097/252496_10150269699261189_529361188_9278245_2109449_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693087097/252496_10150269699261189_529361188_9278245_2109449_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Former MLB player Carl Everett doesn't believe dinosaurs ever existed! http://t.co/NaLsJyEQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:22:10 +0000", "from_user": "astronomycqp", "from_user_id": 331942773, "from_user_id_str": "331942773", "from_user_name": "Tara August", "geo": null, "id": 148800301003059200, "id_str": "148800301003059200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1433004646/1310169362_250px-astronomy_amateur_3_v2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1433004646/1310169362_250px-astronomy_amateur_3_v2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "The Second International Workshop on the Biology of Sauropod Dinosaurs (part I) - Scientific American (blog)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:21:59 +0000", "from_user": "AndreayValen", "from_user_id": 181407650, "from_user_id_str": "181407650", "from_user_name": "Andrea Platero", "geo": null, "id": 148800253716480000, "id_str": "148800253716480000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1648561451/munch_2011_11_20_085636_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648561451/munch_2011_11_20_085636_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:21:58 +0000", "from_user": "Mysticyogi67", "from_user_id": 24117397, "from_user_id_str": "24117397", "from_user_name": "Randy Dublo", "geo": null, "id": 148800250323283970, "id_str": "148800250323283968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1616909266/1320139247452_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616909266/1320139247452_normal.jpg", "source": "<a href="http://www.myyearbook.com/" rel="nofollow">myYearbook Share</a>", "text": "Q: How do you think the dinosaurs died?A: Every great age is accompanied by globa...: http://t.co/MVky4SCH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:21:37 +0000", "from_user": "bryanmero", "from_user_id": 30221654, "from_user_id_str": "30221654", "from_user_name": "Bryan Mero", "geo": null, "id": 148800158849695740, "id_str": "148800158849695747", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/131933863/bryan_skyranchreelfan_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/131933863/bryan_skyranchreelfan_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Looking forward to Terra Nova's finale tonight. Glad I stuck with it, I like the characters better than I do the dinosaurs. #terranova.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:21:16 +0000", "from_user": "lindseywiebe", "from_user_id": 10004672, "from_user_id_str": "10004672", "from_user_name": "Lindsey Wiebe", "geo": null, "id": 148800072468021250, "id_str": "148800072468021248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1179314840/7933_167192775015_638660015_4171368_1776929_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1179314840/7933_167192775015_638660015_4171368_1776929_n_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@ianmcc dinosaurs were actually a disappointment, I thought. Jurassic park's were more convincing, and how old is that movie by now?", "to_user": "ianmcc", "to_user_id": 6302912, "to_user_id_str": "6302912", "to_user_name": "Ian McCausland", "in_reply_to_status_id": 148644450246201340, "in_reply_to_status_id_str": "148644450246201344"}, +{"created_at": "Mon, 19 Dec 2011 16:20:52 +0000", "from_user": "MFrost3", "from_user_id": 404064505, "from_user_id_str": "404064505", "from_user_name": "MFrost", "geo": null, "id": 148799970668056580, "id_str": "148799970668056577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1620316286/P1090503_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620316286/P1090503_normal.JPG", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "A #Photo of some #Dinosaurs at a Gift Shop at the #Zoo\\thttp://t.co/9IdhpiVb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:20:45 +0000", "from_user": "AloiahAloha", "from_user_id": 18283235, "from_user_id_str": "18283235", "from_user_name": "Aliah", "geo": null, "id": 148799944118120450, "id_str": "148799944118120449", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1640286570/329834966_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640286570/329834966_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "And on the third day, God created the Remington-bull action rifle, so that man can fight the dinosaurs... And the homosexuals.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 16:20:20 +0000", "from_user": "bball7cat", "from_user_id": 236151671, "from_user_id_str": "236151671", "from_user_name": "Cat Lane", "geo": null, "id": 148799836815237120, "id_str": "148799836815237120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693181229/IMG00153-20110810-2018_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693181229/IMG00153-20110810-2018_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "The day the dinosaurs died #bestshow #discoverychannel #paleontologistinmyfuture ?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:20:15 +0000", "from_user": "TattedNdFooling", "from_user_id": 244770167, "from_user_id_str": "244770167", "from_user_name": "White Boy Mike", "geo": null, "id": 148799818066706430, "id_str": "148799818066706433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1689335671/IMG00040-20111212-1231_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689335671/IMG00040-20111212-1231_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"@_KodeineSweet: Those dinosaurs on jurassic park is mean /:\"Lol They Not Suppose To Be Nice", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:19:26 +0000", "from_user": "_KodeineSweet", "from_user_id": 152828049, "from_user_id_str": "152828049", "from_user_name": "\\u311A\\u03B1\\u1E49\\u03B1\\u03B1 uu\\u028E\\u05DF \\u0438\\u0455\\u043D\\u03B9\\u0442 \\u2661", "geo": null, "id": 148799611543367680, "id_str": "148799611543367680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701053627/389431_214714121936514_100001937845413_483991_1028002348_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701053627/389431_214714121936514_100001937845413_483991_1028002348_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Those dinosaurs on jurassic park is mean /:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:19:17 +0000", "from_user": "quingdom", "from_user_id": 15532425, "from_user_id_str": "15532425", "from_user_name": "Quing Obillos", "geo": null, "id": 148799572708294660, "id_str": "148799572708294656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1542838889/IMG_4550_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542838889/IMG_4550_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Scary! \"@_midnightshade: Comforting my bleeding heart with my love for dinosaurs and other dead things. :p\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:18:21 +0000", "from_user": "Albertyzp", "from_user_id": 440165913, "from_user_id_str": "440165913", "from_user_name": "Albert Zink", "geo": null, "id": 148799337902768130, "id_str": "148799337902768128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700464120/large_gffgfphoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700464120/large_gffgfphoto_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Wildlife of Gondwana: Dinosaurs and Other Vertebrates from the Ancient Supercontinent (Life of the Past): \"This ... http://t.co/beG5AIcI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:17:43 +0000", "from_user": "6Ted", "from_user_id": 105687150, "from_user_id_str": "105687150", "from_user_name": "Terry McDonald", "geo": null, "id": 148799178393387000, "id_str": "148799178393387008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698990420/285347_10150258078509635_542534634_7694256_1158580_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698990420/285347_10150258078509635_542534634_7694256_1158580_n_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "I find it staggering that birds are descended from dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:17:39 +0000", "from_user": "CaroLesmes2", "from_user_id": 287332296, "from_user_id_str": "287332296", "from_user_name": "Carolina Lesmes", "geo": null, "id": 148799161972695040, "id_str": "148799161972695040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1665053933/DSC03732edited_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665053933/DSC03732edited_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/qRmwlOGt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:17:36 +0000", "from_user": "supperbenjii", "from_user_id": 147726042, "from_user_id_str": "147726042", "from_user_name": "Benjamyn Lyall", "geo": null, "id": 148799148014043140, "id_str": "148799148014043136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686947781/IMG_3273_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686947781/IMG_3273_normal.JPG", "source": "<a href="http://www.thefancy.com" rel="nofollow"> Fancy</a>", "text": "Light Graffiti Dinosaurs http://t.co/QG5714tW via @thefancy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:17:35 +0000", "from_user": "_LovelyVee_", "from_user_id": 375454215, "from_user_id_str": "375454215", "from_user_name": "Luz Vee", "geo": null, "id": 148799145090625540, "id_str": "148799145090625536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689831922/66JXFwFg_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689831922/66JXFwFg_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:17:14 +0000", "from_user": "olwebster", "from_user_id": 190001837, "from_user_id_str": "190001837", "from_user_name": "Oliver Webster", "geo": null, "id": 148799056578228220, "id_str": "148799056578228224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699178680/Snapshot_20111218_14_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699178680/Snapshot_20111218_14_normal.jpg", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "RT @IdalinaMDOD: RT @Ellie_Boh i wish dinosaurs were still alive.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:16:45 +0000", "from_user": "BaileleMiCo", "from_user_id": 76052130, "from_user_id_str": "76052130", "from_user_name": "Josu\\u00E9", "geo": null, "id": 148798936595968000, "id_str": "148798936595968001", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702356178/Foto_del_d_a_03-12-11_a_la_s__19.57_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702356178/Foto_del_d_a_03-12-11_a_la_s__19.57_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/mkFsHSVg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:16:22 +0000", "from_user": "IdalinaMDOD", "from_user_id": 32369997, "from_user_id_str": "32369997", "from_user_name": "Idalina Domingos", "geo": null, "id": 148798837887217660, "id_str": "148798837887217665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662657598/IMAG0812-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662657598/IMAG0812-1_normal.jpg", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "RT @Ellie_Boh i wish dinosaurs were still alive.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:15:01 +0000", "from_user": "QuiqueLee", "from_user_id": 192334770, "from_user_id_str": "192334770", "from_user_name": "Quique Lee", "geo": null, "id": 148798498714828800, "id_str": "148798498714828801", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1532826244/Quique_ardilla_copia_baja_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1532826244/Quique_ardilla_copia_baja_normal.jpg", "source": "<a href="http://soundcloud.com" rel="nofollow">SoundCloud</a>", "text": "La #SantaArdillaAtropellada dice que escuchen Last Dinosaurs - Zoom by dewprocess http://t.co/YUNAYiwv on #SoundCloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:14:59 +0000", "from_user": "angiemanuelax", "from_user_id": 160678480, "from_user_id_str": "160678480", "from_user_name": "Angie Manuela", "geo": null, "id": 148798490384932860, "id_str": "148798490384932865", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702237500/Imagen_002_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702237500/Imagen_002_normal.jpg", "source": "<a href="http://www.piccsy.com" rel="nofollow">Piccsy</a>", "text": "I've just uploaded a new Picc at http://t.co/SA7zdpeE. Check it out at http://t.co/uGc3O9F3\\n!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:13:53 +0000", "from_user": "DocumentaryTube", "from_user_id": 364794173, "from_user_id_str": "364794173", "from_user_name": "Documentary Tube", "geo": null, "id": 148798215989379070, "id_str": "148798215989379073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1520393294/twitter-profile-photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1520393294/twitter-profile-photo_normal.jpg", "source": "<a href="http://www.documentarytube.com" rel="nofollow">Latest from DocumentaryTube.com</a>", "text": "Fresh on http://t.co/APxPPqM9 : Clash of the Dinosaurs - http://t.co/aB1i8Wo6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:13:50 +0000", "from_user": "Saoirse_TDCC", "from_user_id": 120805593, "from_user_id_str": "120805593", "from_user_name": "Finn the Human", "geo": null, "id": 148798199908413440, "id_str": "148798199908413441", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1678032461/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678032461/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Here lads,go follow @TheOneFifteen,he has dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:13:49 +0000", "from_user": "GeekSlant", "from_user_id": 410117577, "from_user_id_str": "410117577", "from_user_name": "GeekSlant", "geo": null, "id": 148798197656068100, "id_str": "148798197656068096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1633861223/expand_noplacelikehome_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633861223/expand_noplacelikehome_normal.gif", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Some pretty awesome posts are coming your way today from Geek Slant. Dinosaurs, custom shirts... and dancing stormtroopers.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:13:48 +0000", "from_user": "Uday360", "from_user_id": 380627880, "from_user_id_str": "380627880", "from_user_name": "Udaykumar", "geo": null, "id": 148798192383836160, "id_str": "148798192383836160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1612385427/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612385427/image_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Safari on iOS</a>", "text": "Dhjjh http://t.co/Mj2AnSfq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:13:09 +0000", "from_user": "NuggatronLy", "from_user_id": 116952016, "from_user_id_str": "116952016", "from_user_name": "L.N.Y.L", "geo": null, "id": 148798027929366530, "id_str": "148798027929366529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684277903/peuf_20111210_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684277903/peuf_20111210_7_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:12:52 +0000", "from_user": "zabou007", "from_user_id": 149945940, "from_user_id_str": "149945940", "from_user_name": "Isabelle W.", "geo": null, "id": 148797959146962940, "id_str": "148797959146962945", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693052275/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693052275/image_normal.jpg", "source": "Free App Magic - Christmas", "text": "Je viens de d\\u00E9couvrir Pocket Dinosaurs 2 avec Free App Magic sp\\u00E9cial No\\u00EBl sur mon iPhone http://t.co/7NNt4rEN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:12:49 +0000", "from_user": "xLeBloodiful", "from_user_id": 380918575, "from_user_id_str": "380918575", "from_user_name": "Carmen.\\u2122", "geo": null, "id": 148797945343508480, "id_str": "148797945343508480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699235067/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699235067/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:12:29 +0000", "from_user": "naveen_sharma", "from_user_id": 15147087, "from_user_id_str": "15147087", "from_user_name": "naveen sharma", "geo": null, "id": 148797864137592830, "id_str": "148797864137592833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1248818180/180847_10150113982466838_519796837_6438095_2708503_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1248818180/180847_10150113982466838_519796837_6438095_2708503_n_normal.jpg", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "The \\u201CDinosaurs\\u201D are dying, as big companies realize they need the cloud to survive. Going to be an exciting year for cloud computing", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:12:09 +0000", "from_user": "AhMaD_RuZa1n1", "from_user_id": 360579324, "from_user_id_str": "360579324", "from_user_name": "Ahmad Ruzaini", "geo": null, "id": 148797777751703550, "id_str": "148797777751703552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1572296279/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572296279/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@syzanazeirah a girl who likes dinosaurs,sum 41 and A7X......hot", "to_user": "syzanazeirah", "to_user_id": 98361000, "to_user_id_str": "98361000", "to_user_name": "Syaza Nazeirah \\u25B2", "in_reply_to_status_id": 148797267707559940, "in_reply_to_status_id_str": "148797267707559937"}, +{"created_at": "Mon, 19 Dec 2011 16:11:52 +0000", "from_user": "ZomBIIEUniCORnX", "from_user_id": 98210086, "from_user_id_str": "98210086", "from_user_name": "Sneaky Tampon", "geo": null, "id": 148797708084314100, "id_str": "148797708084314112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700646658/babez_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700646658/babez_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I love asking catholics \"if god created the earth and everything in it.. why were there dinosaurs millions of year before the human race!?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:11:47 +0000", "from_user": "WorldJustin_BR", "from_user_id": 389694391, "from_user_id_str": "389694391", "from_user_name": "Brasileiras do JB \\u2661", "geo": null, "id": 148797687205081100, "id_str": "148797687205081089", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1602436661/tumblr_lt0wey1YBc1qiklgbo1_250_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1602436661/tumblr_lt0wey1YBc1qiklgbo1_250_normal.gif", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/KUfTXnxp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:10:51 +0000", "from_user": "FALDIIY", "from_user_id": 427375181, "from_user_id_str": "427375181", "from_user_name": "@_faldi \\u263A", "geo": null, "id": 148797451434856450, "id_str": "148797451434856448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696016383/FALDIIY_2514304754495957004_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696016383/FALDIIY_2514304754495957004_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Titanosaur bone found in Antartica: LONG before the arrival of penguins, giant plant-eating dinosaurs roamed Ant... http://t.co/5NDnpZpz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:10:29 +0000", "from_user": "_MatthewTurner_", "from_user_id": 246276196, "from_user_id_str": "246276196", "from_user_name": "Matthew Turner", "geo": null, "id": 148797359361495040, "id_str": "148797359361495040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685481246/Kasabian_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685481246/Kasabian_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Totally Enormous Extinct Dinosaurs trust me rude boyyy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:09:56 +0000", "from_user": "theevildrsin", "from_user_id": 87836452, "from_user_id_str": "87836452", "from_user_name": "theevildrsin", "geo": null, "id": 148797221633130500, "id_str": "148797221633130496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1359626644/TADCAT__WinCE__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1359626644/TADCAT__WinCE__normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Sic semper tyrannosaurus. Thus always to dinosaurs. #kimjongil", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:09:09 +0000", "from_user": "itsemilywalker", "from_user_id": 20522902, "from_user_id_str": "20522902", "from_user_name": "EMILY :-)", "geo": null, "id": 148797022118486000, "id_str": "148797022118486016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687613766/185104_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687613766/185104_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "chips and turkey dinosaurs, life can't get better", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:09:08 +0000", "from_user": "jackie____chan", "from_user_id": 43550898, "from_user_id_str": "43550898", "from_user_name": "Jacqueline Hernandez", "geo": null, "id": 148797017915789300, "id_str": "148797017915789312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1347751536/IMG000505_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1347751536/IMG000505_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I don't believe in dinosaurs they were all giant dogs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:08:36 +0000", "from_user": "ege_ertem", "from_user_id": 348293446, "from_user_id_str": "348293446", "from_user_name": "Ege", "geo": null, "id": 148796883664502800, "id_str": "148796883664502785", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686035056/5088-ozerk-eg_article_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686035056/5088-ozerk-eg_article_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Sanal ger\\u00E7eklikle, leoparlar al\\u0131\\u015Fveri\\u015F merkezinde! http://t.co/H5qRQNms National Geographic'ten harika pazarlama kampanyas\\u0131.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:05:48 +0000", "from_user": "timef0rplanB_", "from_user_id": 228111347, "from_user_id_str": "228111347", "from_user_name": "Danny Worsnop \\u2020", "geo": null, "id": 148796181009534980, "id_str": "148796181009534977", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702335876/IMAG2033dsfjklllolol_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702335876/IMAG2033dsfjklllolol_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @_MatthewTurner_: Newcastle Other Rooms 7th of Feb, Totally Enormous Extinct Dinosaurs. I'm there.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:05:46 +0000", "from_user": "Tarshaoxt", "from_user_id": 431724585, "from_user_id_str": "431724585", "from_user_name": "Tarsha Dunfee", "geo": null, "id": 148796170897080320, "id_str": "148796170897080320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681085216/large_ASNZHROVLXQE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681085216/large_ASNZHROVLXQE_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Jurassic Park: Chaos Effect - Raptor Alpha: Colorful Chaos Effect Series Dinosaurs.\\nRaptor measures approx. 6.5\"... http://t.co/FWkT0qv5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:05:18 +0000", "from_user": "_becomeahippie", "from_user_id": 426586590, "from_user_id_str": "426586590", "from_user_name": "Individual rebel.", "geo": null, "id": 148796054433841150, "id_str": "148796054433841152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700289752/KDsI7jz4_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700289752/KDsI7jz4_normal", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @FuckinBOSSx: If I could I would live with the fucking dinosaurs .. People fucking annoy me!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:04:42 +0000", "from_user": "smizer53", "from_user_id": 286299011, "from_user_id_str": "286299011", "from_user_name": "Hunter Schmeisser", "geo": null, "id": 148795902289653760, "id_str": "148795902289653760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @corndog_11: \"And on the third day, God created the Remington bolt-action rifle, so that Man could fight the dinosaurs. And the homosexuals.\" #meangirls", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:04:33 +0000", "from_user": "the_left_overs", "from_user_id": 291848002, "from_user_id_str": "291848002", "from_user_name": "Batmatt", "geo": null, "id": 148795867346898940, "id_str": "148795867346898944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693943499/android1322946028785_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693943499/android1322946028785_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@bbertling99 sidenote: it also captures pictures of ghosts and dinosaurs your should let @Ereneda and Jason know", "to_user": "bbertling99", "to_user_id": 16915723, "to_user_id_str": "16915723", "to_user_name": "w. bradley", "in_reply_to_status_id": 148626452559036400, "in_reply_to_status_id_str": "148626452559036417"}, +{"created_at": "Mon, 19 Dec 2011 16:03:28 +0000", "from_user": "zombiezimos", "from_user_id": 185770692, "from_user_id_str": "185770692", "from_user_name": "Jwess Ailes", "geo": null, "id": 148795591206514700, "id_str": "148795591206514688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1598720506/110916-121619_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598720506/110916-121619_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/8gE0jVHZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:03:21 +0000", "from_user": "YourNewsChannel", "from_user_id": 425271701, "from_user_id_str": "425271701", "from_user_name": "Mister News", "geo": null, "id": 148795562316148740, "id_str": "148795562316148736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698835153/YOUR_NEWS_CHANNEL_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698835153/YOUR_NEWS_CHANNEL_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Titanosaur bone found in Antarctica: Long before the arrival of penguins, giant plant-eating dinosaurs roamed An... http://t.co/ckA0znzf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:02:37 +0000", "from_user": "LDoggyStyles", "from_user_id": 337382540, "from_user_id_str": "337382540", "from_user_name": "Lawrence Hopkins", "geo": null, "id": 148795378089738240, "id_str": "148795378089738240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1464730817/Untitled_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1464730817/Untitled_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "That mark is an 89% in Discovering Dinosaurs, FYI. #win", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:02:28 +0000", "from_user": "_MatthewTurner_", "from_user_id": 246276196, "from_user_id_str": "246276196", "from_user_name": "Matthew Turner", "geo": null, "id": 148795341779636220, "id_str": "148795341779636225", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685481246/Kasabian_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685481246/Kasabian_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Newcastle Other Rooms 7th of Feb, Totally Enormous Extinct Dinosaurs. I'm there.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:01:46 +0000", "from_user": "JulesBTV", "from_user_id": 38226327, "from_user_id_str": "38226327", "from_user_name": "Jules", "geo": null, "id": 148795164511576060, "id_str": "148795164511576064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680259983/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680259983/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I imagine that baby humans and dinosaurs sound alike.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:00:00 +0000", "from_user": "SalsaChoicer", "from_user_id": 121968669, "from_user_id_str": "121968669", "from_user_name": "Salsa Choicer", "geo": null, "id": 148794720745832450, "id_str": "148794720745832449", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://google.com" rel="nofollow">SalsaChoicer</a>", "text": "did you know? dinosaurs love beavers to de-stress", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:59:26 +0000", "from_user": "BoraZ", "from_user_id": 17567533, "from_user_id_str": "17567533", "from_user_name": "Bora Zivkovic", "geo": null, "id": 148794579573948400, "id_str": "148794579573948417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1210768773/BoraZ191124_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1210768773/BoraZ191124_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "The Second International Workshop on the Biology of Sauropod Dinosaurs (part I) http://t.co/jmSe6nBK by @TetZoo at #SciAmBlogs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:59:25 +0000", "from_user": "sciamblogs", "from_user_id": 200219772, "from_user_id_str": "200219772", "from_user_name": "SciAm Blogs", "geo": null, "id": 148794575358668800, "id_str": "148794575358668802", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1140189944/SAtwitterLogo_bigger_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1140189944/SAtwitterLogo_bigger_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "The Second International Workshop on the Biology of Sauropod Dinosaurs (part I) http://t.co/looNUIih by @TetZoo at #SciAmBlogs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:58:41 +0000", "from_user": "PostApocInfo", "from_user_id": 239254711, "from_user_id_str": "239254711", "from_user_name": "Megaton", "geo": null, "id": 148794387659374600, "id_str": "148794387659374592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1218655682/radiation_100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218655682/radiation_100_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Geek Art Gallery: Artist: Scott Listfield: His site, the Astronaut Dinosaur is devoted to paintings of dinosaurs and... http://t.co/M0A5RIR2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:58:19 +0000", "from_user": "_MatthewTurner_", "from_user_id": 246276196, "from_user_id_str": "246276196", "from_user_name": "Matthew Turner", "geo": null, "id": 148794298391990270, "id_str": "148794298391990272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685481246/Kasabian_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685481246/Kasabian_normal.gif", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "BBC - Music - Totally Enormous Extinct Dinosaurs http://t.co/I6taIBjL if you've not seen it go watch.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:58:00 +0000", "from_user": "chinks__", "from_user_id": 435250616, "from_user_id_str": "435250616", "from_user_name": "paul heaton", "geo": null, "id": 148794216062005250, "id_str": "148794216062005248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "RT @MaddieJarvis: Just found out about the ice rink at Natural History Museum\\u2026 Dinosaurs, mulled wine and skating! Bring on my little London holiday!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:56:41 +0000", "from_user": "Erictga", "from_user_id": 431683572, "from_user_id_str": "431683572", "from_user_name": "Eric Beinlich", "geo": null, "id": 148793884389023740, "id_str": "148793884389023744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680993073/large_255_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680993073/large_255_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "A World Of Imagination Rectangle 5'5'' X 7'8'': A World of Imagination - Pirates, Dinosaurs, Mermaids and More, ... http://t.co/dqBW450H", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:56:28 +0000", "from_user": "Sean_Hansen", "from_user_id": 236101918, "from_user_id_str": "236101918", "from_user_name": "Sean Hansen", "geo": null, "id": 148793831171686400, "id_str": "148793831171686400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1386139609/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1386139609/me_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@JesusChristFTM why block me lad? Go an eat ye dinosaurs and waffles mate ill leave ye alone now #zzzzzz #boringcunt #shitbanter", "to_user": "JesusChristFTM", "to_user_id": 338305554, "to_user_id_str": "338305554", "to_user_name": "JesusChristFTM"}, +{"created_at": "Mon, 19 Dec 2011 15:55:59 +0000", "from_user": "gillpea", "from_user_id": 20885084, "from_user_id_str": "20885084", "from_user_name": "Gillian Pearce", "geo": null, "id": 148793709146804220, "id_str": "148793709146804224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702011989/Puffer_Xmas_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702011989/Puffer_Xmas_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@wowser Interviewer eaten by dinosaurs?", "to_user": "wowser", "to_user_id": 10199112, "to_user_id_str": "10199112", "to_user_name": "Mr Wowser", "in_reply_to_status_id": 148792065382289400, "in_reply_to_status_id_str": "148792065382289408"}, +{"created_at": "Mon, 19 Dec 2011 15:55:49 +0000", "from_user": "jrogasm", "from_user_id": 140263851, "from_user_id_str": "140263851", "from_user_name": "Jeffrey Echeverri", "geo": null, "id": 148793669753913340, "id_str": "148793669753913345", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657365478/ProfilePhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657365478/ProfilePhoto_normal.png", "source": "<a href="http://favstar.fm" rel="nofollow">Favstar.FM</a>", "text": "RT @IamEnidColeslaw: Kirk Cameron just told me that dinosaurs became extinct because they were \"heathens and sodomites.\" (???)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:55:18 +0000", "from_user": "JeffKeuss", "from_user_id": 14538615, "from_user_id_str": "14538615", "from_user_name": "Jeff Keuss", "geo": null, "id": 148793537176154100, "id_str": "148793537176154113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/281245414/jeff_with_stoll_-_wedding_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/281245414/jeff_with_stoll_-_wedding_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "watched \"Tree of Life\" - Now whisper metaphysical aphorisms under my breath & point at pictures of sunflowers with dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:55:12 +0000", "from_user": "fluxfm_berlin", "from_user_id": 58404520, "from_user_id_str": "58404520", "from_user_name": "FluxFM Playlist", "geo": null, "id": 148793512115187700, "id_str": "148793512115187713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1510122863/fluxfm-quadrat_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1510122863/fluxfm-quadrat_normal.png", "source": "<a href="http://www.motor.de" rel="nofollow">motor.de</a>", "text": "19.12. 16:55 Uhr: Totally Enormous Extinct Dinosaurs \"Garden.\" http://t.co/tSCpy6Nd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:54:59 +0000", "from_user": "Reginezza", "from_user_id": 431684782, "from_user_id_str": "431684782", "from_user_name": "Regine Helman", "geo": null, "id": 148793457153024000, "id_str": "148793457153024002", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680997010/5m0sbj55vo_112919698_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680997010/5m0sbj55vo_112919698_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Dinosaur Heresies: New Theories Unlocking the Mystery of the Dinosaurs and Their Extinction: For over a cent... http://t.co/Xkf32LPr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:54:15 +0000", "from_user": "_nickqueiroz", "from_user_id": 203607830, "from_user_id_str": "203607830", "from_user_name": "Liar com Z", "geo": null, "id": 148793275355107330, "id_str": "148793275355107328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1657009026/DSC01509_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657009026/DSC01509_normal.JPG", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/wZ1fpHCj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:53:44 +0000", "from_user": "miadevic", "from_user_id": 212205514, "from_user_id_str": "212205514", "from_user_name": "Mia Devic", "geo": null, "id": 148793143159046140, "id_str": "148793143159046144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Second International Workshop on the Biology of Sauropod Dinosaurs (part I) http://t.co/992HbyRB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:53:43 +0000", "from_user": "BeccaLyte", "from_user_id": 312731481, "from_user_id_str": "312731481", "from_user_name": "Becca Lake", "geo": null, "id": 148793138381717500, "id_str": "148793138381717504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1675677837/nicky_and_me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675677837/nicky_and_me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@RachaelRose104 nice retweet...i realy needed to know about cat urine... interesteing ? like...dinosaurs and chickens that r green?", "to_user": "RachaelRose104", "to_user_id": 392952489, "to_user_id_str": "392952489", "to_user_name": "Rachael Wells", "in_reply_to_status_id": 148792544153714700, "in_reply_to_status_id_str": "148792544153714689"}, +{"created_at": "Mon, 19 Dec 2011 15:52:27 +0000", "from_user": "Power0fThatP", "from_user_id": 47725167, "from_user_id_str": "47725167", "from_user_name": "Paris Hilton", "geo": null, "id": 148792822093455360, "id_str": "148792822093455360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702406651/profile_image_1324312970024_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702406651/profile_image_1324312970024_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "And whose to say whatever they teach us in school actually happened? Ex: Dinosaurs, Indians, Christopher Columbus, God etc HOW Y'ALL KNOW!?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:52:01 +0000", "from_user": "_MatthewTurner_", "from_user_id": 246276196, "from_user_id_str": "246276196", "from_user_name": "Matthew Turner", "geo": null, "id": 148792711271563260, "id_str": "148792711271563264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685481246/Kasabian_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685481246/Kasabian_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "I can guarantee not many people will have heard of Totally Enormous Extinct Dinosaurs before the last 3 months or so. I have for ages now.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:49:18 +0000", "from_user": "Midna_", "from_user_id": 23752440, "from_user_id_str": "23752440", "from_user_name": "Tamika Glover", "geo": null, "id": 148792026459152400, "id_str": "148792026459152385", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1593094408/tumblr_lt0lj5zdVo1qgylxno1_500_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593094408/tumblr_lt0lj5zdVo1qgylxno1_500_normal.png", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Photo: Oh god, just the other day I found some toy dinosaurs at the shops, and did this. My friend looked at... http://t.co/panAhwgt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:48:57 +0000", "from_user": "ArchaeoNewsNet", "from_user_id": 99501583, "from_user_id_str": "99501583", "from_user_name": "ArchaeoNewsNet", "geo": null, "id": 148791941256056830, "id_str": "148791941256056832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/593360913/Gorgon_560_BC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/593360913/Gorgon_560_BC_normal.jpg", "source": "<a href="http://tweetmeme.com" rel="nofollow">TweetMeme</a>", "text": "The Archaeology News Network: Dinosaurs with killer claws yield new theory about flight http://t.co/XwbiwGXZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:48:52 +0000", "from_user": "Margcsd", "from_user_id": 431680455, "from_user_id_str": "431680455", "from_user_name": "Marg Boggiano", "geo": null, "id": 148791919546335230, "id_str": "148791919546335233", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680986812/large_156611_1717139893071_1375459296_1833687_77950_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680986812/large_156611_1717139893071_1375459296_1833687_77950_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dinosaurs (Easy to Read! Easy to Draw!): Now even the youngest readers can learn to draw like the big kids! Foll... http://t.co/ryeMFaIr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:48:48 +0000", "from_user": "CyberBlackDeals", "from_user_id": 403804182, "from_user_id_str": "403804182", "from_user_name": "Chris Sams", "geo": null, "id": 148791900021854200, "id_str": "148791900021854208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://www.bravenewcode.com/products/wordtwit" rel="nofollow">WordTwit Plugin</a>", "text": "Playground Ball - Dinosaurs - http://t.co/NiFSmphD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:45:03 +0000", "from_user": "whyyradiotimes", "from_user_id": 100002112, "from_user_id_str": "100002112", "from_user_name": "Radio Times", "geo": null, "id": 148790960116080640, "id_str": "148790960116080640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/597045921/radiotimes-button_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/597045921/radiotimes-button_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "11-12, It\\u2019s not only kids who are captivated by #Dinosaurs. Peter Dodson @pennvet & Don Lessem aka Dino Don join us. http://t.co/OH5FLXw1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:44:52 +0000", "from_user": "RememberToCher", "from_user_id": 292542230, "from_user_id_str": "292542230", "from_user_name": "Cheryl Lynn ", "geo": null, "id": 148790913223761920, "id_str": "148790913223761920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680064675/Photo_118_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680064675/Photo_118_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@DanaNickel come to the coffee. leave the dinosaurs behind they are extinct.", "to_user": "DanaNickel", "to_user_id": 283240744, "to_user_id_str": "283240744", "to_user_name": "Dana Nickel", "in_reply_to_status_id": 148785124211830800, "in_reply_to_status_id_str": "148785124211830784"}, +{"created_at": "Mon, 19 Dec 2011 15:44:39 +0000", "from_user": "Bcurl11", "from_user_id": 387182831, "from_user_id_str": "387182831", "from_user_name": "Brittany Curl", "geo": null, "id": 148790858190303230, "id_str": "148790858190303232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1606471591/momma_-_Copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606471591/momma_-_Copy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:44:34 +0000", "from_user": "MaddieJarvis", "from_user_id": 61179301, "from_user_id_str": "61179301", "from_user_name": "Madeleine Jarvis", "geo": null, "id": 148790837726298100, "id_str": "148790837726298112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1642527228/CSC_1068_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642527228/CSC_1068_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "Just found out about the ice rink at Natural History Museum\\u2026 Dinosaurs, mulled wine and skating! Bring on my little London holiday!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:44:07 +0000", "from_user": "AnnaBelleFavors", "from_user_id": 113809065, "from_user_id_str": "113809065", "from_user_name": "Hermoine", "geo": null, "id": 148790722680733700, "id_str": "148790722680733696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1680108169/IMAG0282-1-1-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680108169/IMAG0282-1-1-1_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "If I could go back to any time period it would be when all the dinosaurs were on earth .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:43:59 +0000", "from_user": "Bananennoob", "from_user_id": 218559165, "from_user_id_str": "218559165", "from_user_name": "Rianne van Vuuren", "geo": null, "id": 148790689038204930, "id_str": "148790689038204929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681159604/smile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681159604/smile_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @InsaneTweets_: Parent: \"Well when I was your age...\" Me: STFU WHEN YOU WERE MY AGE, YOU RODE DINOSAURS!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:42:32 +0000", "from_user": "_shelbyyeary", "from_user_id": 129571456, "from_user_id_str": "129571456", "from_user_name": "Shelby Yeary", "geo": null, "id": 148790325673078800, "id_str": "148790325673078786", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1659635413/Snapshot_20111125_4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659635413/Snapshot_20111125_4_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Men looked a little like awkwardly shaped dinosaurs when they walk around pants-less. Women just look cute. -shrug-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:42:06 +0000", "from_user": "NewZealandNewsV", "from_user_id": 350024921, "from_user_id_str": "350024921", "from_user_name": "NewZealandNewsV", "geo": null, "id": 148790214607900670, "id_str": "148790214607900673", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1526135593/icon025_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1526135593/icon025_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Titanosaur bone found in Antarctica (AAP): Scientists have found that giant plant-eating dinosaurs roamed Antarc... http://t.co/OglGaXza", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:41:42 +0000", "from_user": "kalimbacloud", "from_user_id": 31255192, "from_user_id_str": "31255192", "from_user_name": "Jason Haughn", "geo": null, "id": 148790114389200900, "id_str": "148790114389200896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/139085184/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/139085184/me_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Dinosaurs moving around or something", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:41:28 +0000", "from_user": "FuckinBOSSx", "from_user_id": 293760475, "from_user_id_str": "293760475", "from_user_name": "Precious Valerie \\u2764 ", "geo": null, "id": 148790054842662900, "id_str": "148790054842662912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1578372547/1315151290075_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1578372547/1315151290075_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "If I could I would live with the fucking dinosaurs .. People fucking annoy me!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:41:21 +0000", "from_user": "fluxfm_stuggi", "from_user_id": 58408700, "from_user_id_str": "58408700", "from_user_name": "FluxFM Playlist", "geo": null, "id": 148790025583198200, "id_str": "148790025583198208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1510125481/fluxfm-quadrat_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1510125481/fluxfm-quadrat_normal.png", "source": "<a href="http://www.motor.de" rel="nofollow">motor.de Playlist Stuggi</a>", "text": "19.12. 16:41 Uhr: Totally Enormous Extinct Dinosaurs \"Garden.\" http://t.co/gBfsngDr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:40:23 +0000", "from_user": "Telesaurtise", "from_user_id": 127428646, "from_user_id_str": "127428646", "from_user_name": "Nur amirah hamzah", "geo": null, "id": 148789782552653820, "id_str": "148789782552653824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1561106223/Telesaurtise_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1561106223/Telesaurtise_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Dinosaurs live exhibition good? @myvaledictions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:40:01 +0000", "from_user": "SalsaChoicer", "from_user_id": 121968669, "from_user_id_str": "121968669", "from_user_name": "Salsa Choicer", "geo": null, "id": 148789690928087040, "id_str": "148789690928087040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://google.com" rel="nofollow">SalsaChoicer</a>", "text": "did you know? dinosaurs play with beavers randomly", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:38:39 +0000", "from_user": "ayoHoldMYPoodle", "from_user_id": 206566998, "from_user_id_str": "206566998", "from_user_name": "skylar blair", "geo": null, "id": 148789348001775600, "id_str": "148789348001775617", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681910410/IMG00585-20111208-1850_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681910410/IMG00585-20111208-1850_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Omg baby dinosaurs! http://t.co/FXXuB7SW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:37:59 +0000", "from_user": "bizzy_brainz", "from_user_id": 274872967, "from_user_id_str": "274872967", "from_user_name": "Adeyera olajide", "geo": null, "id": 148789181735387140, "id_str": "148789181735387137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701003938/Image1037_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701003938/Image1037_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Who wrote the bible, who wrote the quran... And was it a lightening star dat gave birth 2 d den dinosaurs...#Questionsbegging4ans", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:37:47 +0000", "from_user": "bonatron9000", "from_user_id": 248440801, "from_user_id_str": "248440801", "from_user_name": "bonbon ", "geo": null, "id": 148789130610999300, "id_str": "148789130610999296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1236987442/bonnie2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1236987442/bonnie2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@molliejohanson I <3 the glittler dinosaurs...is that a t-rex or a velociraptor? :P", "to_user": "molliejohanson", "to_user_id": 309861066, "to_user_id_str": "309861066", "to_user_name": "wild olive", "in_reply_to_status_id": 148788502593683460, "in_reply_to_status_id_str": "148788502593683456"}, +{"created_at": "Mon, 19 Dec 2011 15:36:06 +0000", "from_user": "ivanovic", "from_user_id": 4031571, "from_user_id_str": "4031571", "from_user_name": "Iv\\u00E1n Arcos", "geo": null, "id": 148788705417629700, "id_str": "148788705417629697", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1620792719/Yo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620792719/Yo_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "#nowplaying Totally Enormous Extinct Dinosaurs - Trouble", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:35:25 +0000", "from_user": "aaronwhitbain", "from_user_id": 371546985, "from_user_id_str": "371546985", "from_user_name": "LOVE @ChrisGooch19", "geo": null, "id": 148788535749652480, "id_str": "148788535749652480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700731359/gb-en-ys_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700731359/gb-en-ys_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @JD_Strachan: Some people like the word bell end dont they, or as they spell it belend. Homophobic limited banter belongs with the dinosaurs. Yawn. Jog on", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:34:59 +0000", "from_user": "los1019", "from_user_id": 126439042, "from_user_id_str": "126439042", "from_user_name": "carlos saula", "geo": null, "id": 148788423405223940, "id_str": "148788423405223936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.myyearbook.com/" rel="nofollow">myYearbook Share</a>", "text": "Q: How do you think the dinosaurs died? A: Idk and idc: http://t.co/9Uo2ptbq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:34:41 +0000", "from_user": "YessicaTheGreat", "from_user_id": 97822637, "from_user_id_str": "97822637", "from_user_name": "Yessica Ramirez\\uE314", "geo": null, "id": 148788349270896640, "id_str": "148788349270896641", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1629623953/securedownload_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629623953/securedownload_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@marywraycyrus i like dinosaurs", "to_user": "marywraycyrus", "to_user_id": 289137690, "to_user_id_str": "289137690", "to_user_name": "Mary Wray "}, +{"created_at": "Mon, 19 Dec 2011 15:34:22 +0000", "from_user": "Shylapwk", "from_user_id": 430044059, "from_user_id_str": "430044059", "from_user_name": "Shyla Reams", "geo": null, "id": 148788270921289730, "id_str": "148788270921289728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1677514021/kz4eat453h_111545399_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677514021/kz4eat453h_111545399_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Turok, Son of Stone Archives Volume 6: Lost in a strange jungle world where dinosaurs and cavemen from earth's p... http://t.co/H6busRZw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:33:56 +0000", "from_user": "AikoCelestine", "from_user_id": 436360477, "from_user_id_str": "436360477", "from_user_name": "Aiko Celestine", "geo": null, "id": 148788162251067400, "id_str": "148788162251067392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692136855/fgjkjhygjk_normal.JPG", "profile_image_url_https": null, "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dinosaurs, Dinosaurs, Dinosaurs: An entertaining and fascinating journey into the world of dinosaurs! Is it poss... http://t.co/C1D6rZUB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:33:27 +0000", "from_user": "pmontero1", "from_user_id": 266694803, "from_user_id_str": "266694803", "from_user_name": "Paulette Montero", "geo": null, "id": 148788038686867460, "id_str": "148788038686867457", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1380217718/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1380217718/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Father_Flech Dinosaurs are making a comeback!! Better you than me!!", "to_user": "Father_Flech", "to_user_id": 177388971, "to_user_id_str": "177388971", "to_user_name": "Jay Flechas", "in_reply_to_status_id": 148787368961392640, "in_reply_to_status_id_str": "148787368961392640"}, +{"created_at": "Mon, 19 Dec 2011 15:32:44 +0000", "from_user": "Regina_Yo", "from_user_id": 128405777, "from_user_id_str": "128405777", "from_user_name": "Regina Yo!", "geo": null, "id": 148787857757179900, "id_str": "148787857757179904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1418303298/2011-06-24_17.07.40__2_edited_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1418303298/2011-06-24_17.07.40__2_edited_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:32:33 +0000", "from_user": "RichardKingg", "from_user_id": 20313727, "from_user_id_str": "20313727", "from_user_name": "Richard King", "geo": null, "id": 148787811955392500, "id_str": "148787811955392513", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1344544022/Screen_shot_2011-04-20_at_15.17.00_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1344544022/Screen_shot_2011-04-20_at_15.17.00_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@wall_of_arms \"Totally Enormous Extinct Dinosaurs, been looking for this song for ages, heard it \" sounds as if you're talking about a song.", "to_user": "wall_of_arms", "to_user_id": 102985297, "to_user_id_str": "102985297", "to_user_name": "ben.", "in_reply_to_status_id": 148787147099484160, "in_reply_to_status_id_str": "148787147099484160"}, +{"created_at": "Mon, 19 Dec 2011 15:31:53 +0000", "from_user": "tomtheminx", "from_user_id": 377039036, "from_user_id_str": "377039036", "from_user_name": "tom light", "geo": null, "id": 148787643747012600, "id_str": "148787643747012608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1552213971/223682_10150263666655785_557650784_7866754_1043800_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552213971/223682_10150263666655785_557650784_7866754_1043800_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@Schwarzenegger the pavement was his enemy. What killed all the dinosaurs..the ice age. #onelinerlegend", "to_user": "Schwarzenegger", "to_user_id": 12044602, "to_user_id_str": "12044602", "to_user_name": "Arnold"}, +{"created_at": "Mon, 19 Dec 2011 15:31:15 +0000", "from_user": "PDUDDYofficial", "from_user_id": 213357345, "from_user_id_str": "213357345", "from_user_name": "jung bourbon", "geo": null, "id": 148787486640975870, "id_str": "148787486640975872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1642318279/skull_lizard_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642318279/skull_lizard_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @LLoroncita: I found a picture of dinosaurs inside of a library book and it reminded me of @diplo http://t.co/buDimTCv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:30:39 +0000", "from_user": "iyptigeb", "from_user_id": 338527987, "from_user_id_str": "338527987", "from_user_name": "Atwater Patterson", "geo": null, "id": 148787332575793150, "id_str": "148787332575793152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1451203068/494_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1451203068/494_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "For my birthday I'm going somewhere with no internet access. Pretty sure this will involve time travel and possibly dinosaurs.Just thinking.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:30:14 +0000", "from_user": "Deedrapdr", "from_user_id": 430055328, "from_user_id_str": "430055328", "from_user_name": "Deedra Marolt", "geo": null, "id": 148787228867436540, "id_str": "148787228867436544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677537223/zc50bdyepy_121051728_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677537223/zc50bdyepy_121051728_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dinosaurs (First Drawings): http://t.co/6JQ41ymN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:29:55 +0000", "from_user": "Mayexiz", "from_user_id": 415409617, "from_user_id_str": "415409617", "from_user_name": "Madaline Tagg", "geo": null, "id": 148787151855829000, "id_str": "148787151855828992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1692696662/jloyie45ir_111979585-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692696662/jloyie45ir_111979585-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Giants & Dinosaurs [VHS]: http://t.co/SPTu8Xoq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:29:12 +0000", "from_user": "Jammmail", "from_user_id": 277590718, "from_user_id_str": "277590718", "from_user_name": "James Moore", "geo": null, "id": 148786968627642370, "id_str": "148786968627642368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1301049371/47080_462055476014_732666014_6575795_3139073_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1301049371/47080_462055476014_732666014_6575795_3139073_n_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @Luminouslondon: drawings + dinosaurs + cityscapes = some amazing illustrations http://t.co/AwGhLvww", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:29:06 +0000", "from_user": "wall_of_arms", "from_user_id": 102985297, "from_user_id_str": "102985297", "from_user_name": "ben.", "geo": null, "id": 148786945407979520, "id_str": "148786945407979520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681652787/Screen_Shot_2011-12-08_at_21.29.32_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681652787/Screen_Shot_2011-12-08_at_21.29.32_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@RichardKingg Totally Enormous Extinct Dinosaurs, been looking for this song for ages, heard it on tv, love it so mcuh", "to_user": "RichardKingg", "to_user_id": 20313727, "to_user_id_str": "20313727", "to_user_name": "Richard King", "in_reply_to_status_id": 148786797864951800, "in_reply_to_status_id_str": "148786797864951808"}, +{"created_at": "Mon, 19 Dec 2011 15:28:38 +0000", "from_user": "Rybel67", "from_user_id": 242478695, "from_user_id_str": "242478695", "from_user_name": "Beryl Sheppard", "geo": null, "id": 148786827116027900, "id_str": "148786827116027905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1528437037/Adonis_Baths_08_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1528437037/Adonis_Baths_08_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@fstead @Pete_Stead I still watch Terra Nova too mainly for the dinosaurs but the \"plot\" is full of holes", "to_user": "fstead", "to_user_id": 19713709, "to_user_id_str": "19713709", "to_user_name": "Frank Stead"}, +{"created_at": "Mon, 19 Dec 2011 15:28:37 +0000", "from_user": "Csoya", "from_user_id": 370797330, "from_user_id_str": "370797330", "from_user_name": "Christine Soya", "geo": null, "id": 148786822300975100, "id_str": "148786822300975104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1551781101/weekender_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1551781101/weekender_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Blackberrys are the dinosaurs of the tech world @AMP_Agency @ReutersMedia: Americans losing addiction to \"CrackBerrys\" http://t.co/zlPpzVg6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:28:32 +0000", "from_user": "ChrisBakerTown", "from_user_id": 350403062, "from_user_id_str": "350403062", "from_user_name": "Chris", "geo": null, "id": 148786801182646270, "id_str": "148786801182646272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691716930/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691716930/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@megnic_ but I like turkey dinosaurs?! X", "to_user": "megnic_", "to_user_id": 46473607, "to_user_id_str": "46473607", "to_user_name": "Megan Nicholson", "in_reply_to_status_id": 148783712451035140, "in_reply_to_status_id_str": "148783712451035137"}, +{"created_at": "Mon, 19 Dec 2011 15:28:28 +0000", "from_user": "JD_Strachan", "from_user_id": 339283792, "from_user_id_str": "339283792", "from_user_name": "Jamie Strachan", "geo": null, "id": 148786786758430720, "id_str": "148786786758430720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687161568/222086_8342703022_771378022_525710_3597_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687161568/222086_8342703022_771378022_525710_3597_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Some people like the word bell end dont they, or as they spell it belend. Homophobic limited banter belongs with the dinosaurs. Yawn. Jog on", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:27:31 +0000", "from_user": "roseofarcadia", "from_user_id": 141239584, "from_user_id_str": "141239584", "from_user_name": "Ashtin Rybat", "geo": null, "id": 148786547691503600, "id_str": "148786547691503618", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690987888/norman-judas_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690987888/norman-judas_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/JPGrI8DQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 15:26:38 +0000", "from_user": "Luminouslondon", "from_user_id": 281493697, "from_user_id_str": "281493697", "from_user_name": "Luminous ", "geo": null, "id": 148786322029547520, "id_str": "148786322029547520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1573813270/Hello3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1573813270/Hello3_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "drawings + dinosaurs + cityscapes = some amazing illustrations http://t.co/AwGhLvww", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:26:36 +0000", "from_user": "JamieEllen_UK", "from_user_id": 45818296, "from_user_id_str": "45818296", "from_user_name": "Jamie Goodman", "geo": null, "id": 148786313506721800, "id_str": "148786313506721792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1654474756/IMG00864-20111122-2046_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654474756/IMG00864-20111122-2046_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@x_Tarraa yes but my dinosaur can eat people we hate ;) aha but tbf we have got too many ducks ( duck race ;) )ahah lol! Not many dinosaurs!", "to_user": "x_Tarraa", "to_user_id": 258027975, "to_user_id_str": "258027975", "to_user_name": "Tara walker"}, +{"created_at": "Mon, 19 Dec 2011 15:26:16 +0000", "from_user": "_FeeSampaio", "from_user_id": 283821152, "from_user_id_str": "283821152", "from_user_name": "Para me ter, segue \\u2714", "geo": null, "id": 148786230904102900, "id_str": "148786230904102912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691376232/nbhj__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691376232/nbhj__normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/6gHO9Ebd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:26:12 +0000", "from_user": "bccahill82", "from_user_id": 218004016, "from_user_id_str": "218004016", "from_user_name": "Bailey Cahill", "geo": null, "id": 148786213023784960, "id_str": "148786213023784960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1637976537/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637976537/image_normal.jpg", "source": "<a href="http://www.twitter.com" rel="nofollow">Twitter for Windows Phone</a>", "text": "RT @kiley_kinnison: why are dinosaurs so attractive?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:25:46 +0000", "from_user": "VictoriaACS", "from_user_id": 130211345, "from_user_id_str": "130211345", "from_user_name": "Vict\\u00F3ria Cipriano ", "geo": null, "id": 148786104122867700, "id_str": "148786104122867714", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1670312104/IOASJ_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670312104/IOASJ_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "EU TINHA UMA ASK, AI EU FUI OLHAR: tumblrbot asked you:\\nROBOTS OR DINOSAURS?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:25:34 +0000", "from_user": "RichardKingg", "from_user_id": 20313727, "from_user_id_str": "20313727", "from_user_name": "Richard King", "geo": null, "id": 148786054525231100, "id_str": "148786054525231104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1344544022/Screen_shot_2011-04-20_at_15.17.00_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1344544022/Screen_shot_2011-04-20_at_15.17.00_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Everyone go listen to Totally Enormous Extinct Dinosaurs right now! SO GOOD.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:24:50 +0000", "from_user": "x_Tarraa", "from_user_id": 258027975, "from_user_id_str": "258027975", "from_user_name": "Tara walker", "geo": null, "id": 148785872416940030, "id_str": "148785872416940033", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682578344/296668_2047154867778_1511619704_31762921_1169642499_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682578344/296668_2047154867778_1511619704_31762921_1169642499_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@JamieEllen_UK. Aww then my duck will die :( ducks r cute than dinosaurs :L Xx", "to_user": "JamieEllen_UK", "to_user_id": 45818296, "to_user_id_str": "45818296", "to_user_name": "Jamie Goodman"}, +{"created_at": "Mon, 19 Dec 2011 15:24:49 +0000", "from_user": "SuperdupaET", "from_user_id": 194222708, "from_user_id_str": "194222708", "from_user_name": "Elisa Taylor", "geo": null, "id": 148785865173385200, "id_str": "148785865173385216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697618513/image4325_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697618513/image4325_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Watching over @NaomiScott & Shelley Conn interview #TerraNova ''Dinosaurs are divas'' Naomi is so naturally beautiful, no make up needed :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:23:29 +0000", "from_user": "FocusingOnKela", "from_user_id": 232123989, "from_user_id_str": "232123989", "from_user_name": "Kela Ocran OBAS ", "geo": null, "id": 148785530505666560, "id_str": "148785530505666560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1677709503/WkDbv9G5_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677709503/WkDbv9G5_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "flip fones are extinct... they're like dinosaurs... My great grand mother got a android nd she texts...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:22:58 +0000", "from_user": "ohdangshadia", "from_user_id": 276293102, "from_user_id_str": "276293102", "from_user_name": "Shadia Bowie", "geo": null, "id": 148785398963912700, "id_str": "148785398963912705", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1407181279/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1407181279/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:22:05 +0000", "from_user": "dorthaggeorges", "from_user_id": 305932002, "from_user_id_str": "305932002", "from_user_name": "dortha georges", "geo": null, "id": 148785180188999680, "id_str": "148785180188999681", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1682943346/Comforter_Ideas_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682943346/Comforter_Ideas_normal.jpg", "source": "<a href="http://comforterideas.com" rel="nofollow">Comforter Ideas</a>", "text": "q: Dinosaurs B http://t.co/wCah3QG3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:17:44 +0000", "from_user": "Little_Harry", "from_user_id": 257424090, "from_user_id_str": "257424090", "from_user_name": "Harry Steven Pond", "geo": null, "id": 148784082443182080, "id_str": "148784082443182080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698965461/iaza14638635227900_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698965461/iaza14638635227900_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", "text": "@LittleTimelord *grips him tightly as the dinosaurs head the other way*", "to_user": "LittleTimelord", "to_user_id": 158016689, "to_user_id_str": "158016689", "to_user_name": "Jackson Pond", "in_reply_to_status_id": 148778430572404740, "in_reply_to_status_id_str": "148778430572404736"}, +{"created_at": "Mon, 19 Dec 2011 15:16:40 +0000", "from_user": "laurenbeckwith", "from_user_id": 19728948, "from_user_id_str": "19728948", "from_user_name": "Lauren Beckwith", "geo": null, "id": 148783810174132220, "id_str": "148783810174132226", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1672742792/eightbit-97a96b66-1fcd-4958-bfa3-32b597ffb458_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672742792/eightbit-97a96b66-1fcd-4958-bfa3-32b597ffb458_normal.png", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "dinosaurs! on Gates! http://t.co/aNXzsh9I", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:16:33 +0000", "from_user": "Jitt_YouSleepxD", "from_user_id": 54692408, "from_user_id_str": "54692408", "from_user_name": "K . =)", "geo": null, "id": 148783785083797500, "id_str": "148783785083797504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691830150/7lQzzgk7_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691830150/7lQzzgk7_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:16:28 +0000", "from_user": "shanique_nino", "from_user_id": 212921938, "from_user_id_str": "212921938", "from_user_name": "shanique brophy", "geo": null, "id": 148783763395055600, "id_str": "148783763395055616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1666298297/Screen_20111123_152544_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666298297/Screen_20111123_152544_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "I miss those days when we all loved each other. Before Barney was accused of giving you HIV & we didn't kick purple dinosaurs in the balls..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:16:00 +0000", "from_user": "Muchandi", "from_user_id": 390590243, "from_user_id_str": "390590243", "from_user_name": "Athul johnson", "geo": null, "id": 148783646126522370, "id_str": "148783646126522368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1587614233/kWGH8sNf_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587614233/kWGH8sNf_normal", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @kiduva: According to Feminists , Men evolved from dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:15:32 +0000", "from_user": "merylecorbett", "from_user_id": 44068358, "from_user_id_str": "44068358", "from_user_name": "Meryle Corbett", "geo": null, "id": 148783530057543680, "id_str": "148783530057543681", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/322252581/meryle_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/322252581/meryle_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Blogging for Dinosaurs- the 1st 30 days - http://t.co/HKNjgp9N", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:15:08 +0000", "from_user": "Shirey7031secre", "from_user_id": 421676688, "from_user_id_str": "421676688", "from_user_name": "Jesica Shirey", "geo": null, "id": 148783427703939070, "id_str": "148783427703939072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1658395535/439960351208757_tree_shade_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658395535/439960351208757_tree_shade_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Ice Age: Dawn of the Dinosaurs: Ice Age: Dawn of the Dinosaurs\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nPrice: $ 2.99\\n http://t.co/9FMVNW1Z", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:15:07 +0000", "from_user": "Doughman6510sen", "from_user_id": 421017735, "from_user_id_str": "421017735", "from_user_name": "Ai Doughman", "geo": null, "id": 148783423182483460, "id_str": "148783423182483456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1656927941/9670560321171215_where_are_you_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656927941/9670560321171215_where_are_you_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Ice Age: Dawn of the Dinosaurs: Ice Age: Dawn of the Dinosaurs\\n\\n\\n\\n\\n\\n\\n\\n\\n\\nPrice: $ 2.99\\n http://t.co/p7Ex9ll3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:14:59 +0000", "from_user": "tcande", "from_user_id": 28954032, "from_user_id_str": "28954032", "from_user_name": "Scout Finch ", "geo": null, "id": 148783392354340860, "id_str": "148783392354340865", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1616468131/Photo_on_2011-05-03_at_16.01__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616468131/Photo_on_2011-05-03_at_16.01__2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @___step: i just woke up from a nightmare.. about dinosaurs. i'm 5.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:14:39 +0000", "from_user": "JediJewlie", "from_user_id": 250003316, "from_user_id_str": "250003316", "from_user_name": "Julie Mandelbaumberg", "geo": null, "id": 148783307662966800, "id_str": "148783307662966784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1393825961/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1393825961/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@creationliberty @impressfx The #Bible does talk about #Dinosaurs. \\n\\nAhh that would be soo cool!!!!", "to_user": "creationliberty", "to_user_id": 302078063, "to_user_id_str": "302078063", "to_user_name": "Creation Liberty", "in_reply_to_status_id": 148761830804819970, "in_reply_to_status_id_str": "148761830804819968"}, +{"created_at": "Mon, 19 Dec 2011 15:14:35 +0000", "from_user": "darindadans", "from_user_id": 124886886, "from_user_id_str": "124886886", "from_user_name": "Darinda Dans", "geo": null, "id": 148783292408283140, "id_str": "148783292408283138", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1490708526/20101009_Jefferson07_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1490708526/20101009_Jefferson07_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "#Dinosaurs with killer claws yield new theory about flight: http://t.co/eEsotdCY #paleontology", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:13:34 +0000", "from_user": "Kareyhtz", "from_user_id": 431757216, "from_user_id_str": "431757216", "from_user_name": "Karey Yago", "geo": null, "id": 148783033208672260, "id_str": "148783033208672257", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681154158/large_41018_1377232112211_1274100057_30918221_69976_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681154158/large_41018_1377232112211_1274100057_30918221_69976_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Draw 50 Dinosaurs and Other Prehistoric Animals: http://t.co/pBHTeWXy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:10:56 +0000", "from_user": "Mykayak", "from_user_id": 112915074, "from_user_id_str": "112915074", "from_user_name": "Myke", "geo": null, "id": 148782371251032060, "id_str": "148782371251032064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/688746097/Still_1_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/688746097/Still_1_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "Just heard dinosaurs referred to as \"Jesus horses.\" What fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:10:38 +0000", "from_user": "BenAchtabowski", "from_user_id": 278613639, "from_user_id_str": "278613639", "from_user_name": "Ben Achtabowski", "geo": null, "id": 148782295275409400, "id_str": "148782295275409408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1494010948/175730_10101114713447134_2312444_74941472_5925956_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1494010948/175730_10101114713447134_2312444_74941472_5925956_o_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Watched 'Tree of Life' last night... was not expecting dinosaurs in that movie. But they were there.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:10:01 +0000", "from_user": "SalsaChoicer", "from_user_id": 121968669, "from_user_id_str": "121968669", "from_user_name": "Salsa Choicer", "geo": null, "id": 148782139947745280, "id_str": "148782139947745280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://google.com" rel="nofollow">SalsaChoicer</a>", "text": "did you know? dinosaurs kisse light sabers at night", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:09:57 +0000", "from_user": "amanav_com", "from_user_id": 161724315, "from_user_id_str": "161724315", "from_user_name": "amanav.com", "geo": null, "id": 148782125649367040, "id_str": "148782125649367040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1042598287/amanav_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1042598287/amanav_normal.jpg", "source": "<a href="http://www.amanav.com" rel="nofollow">amanav.com</a>", "text": "ProX Style 3D Glasses - Magenta / Green Plastic 3D Glasses The U... Price 0,26 USD #bargain #All #Categories http://t.co/oEQcakRw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:09:18 +0000", "from_user": "NoveltyAnPTI", "from_user_id": 399349723, "from_user_id_str": "399349723", "from_user_name": "NoveltyAnPTI", "geo": null, "id": 148781961647882240, "id_str": "148781961647882240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1610368113/1319755746_6-inch-squawkin-chicken-classic-novelty-gag-toy-gift-idea-sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610368113/1319755746_6-inch-squawkin-chicken-classic-novelty-gag-toy-gift-idea-sm_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "75% off: Ten Little Dinosaurs Picture Book (Wiggle Eyes) http://t.co/cosKOIdz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:09:08 +0000", "from_user": "MorningJoe", "from_user_id": 15436633, "from_user_id_str": "15436633", "from_user_name": "Morning Joe", "geo": null, "id": 148781919084085250, "id_str": "148781919084085253", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1246392245/Screen_shot_2011-02-16_at_11.07.33_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1246392245/Screen_shot_2011-02-16_at_11.07.33_AM_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Video: 'Terra Nova' star: Show is 'Swiss Family Robinson' with dinosaurs http://t.co/KQ75zpR3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:08:13 +0000", "from_user": "Z0mbieWaffle", "from_user_id": 141213416, "from_user_id_str": "141213416", "from_user_name": "alis\\u00F8nbuscus [\\u266B]", "geo": null, "id": 148781688447705100, "id_str": "148781688447705088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699245312/009small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699245312/009small_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @antikris77: @Z0mbieWaffle Dinosaurs don't eat humans. They eat huge meteorites.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:07:58 +0000", "from_user": "waitatiri", "from_user_id": 71996755, "from_user_id_str": "71996755", "from_user_name": "\\u0434\\u0432\\u0430 \\u0442\\u0440\\u0438", "geo": null, "id": 148781625071779840, "id_str": "148781625071779840", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702195233/webcam-toy-photo8_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702195233/webcam-toy-photo8_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@chrisvisconti i miss gummy dinosaurs :(", "to_user": "chrisvisconti", "to_user_id": 22599099, "to_user_id_str": "22599099", "to_user_name": "Christopher Visconti", "in_reply_to_status_id": 148779344058253300, "in_reply_to_status_id_str": "148779344058253313"}, +{"created_at": "Mon, 19 Dec 2011 15:07:20 +0000", "from_user": "vendeezy", "from_user_id": 25746920, "from_user_id_str": "25746920", "from_user_name": "Luke vendutty ", "geo": null, "id": 148781467919593470, "id_str": "148781467919593472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1615922477/381646_10150894451680300_593340299_21531824_327024527_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615922477/381646_10150894451680300_593340299_21531824_327024527_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Dizzy dinosaurs was not the best idea. #littleboys", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:07:19 +0000", "from_user": "chesterfieldpst", "from_user_id": 180471031, "from_user_id_str": "180471031", "from_user_name": "Chesterfield Post", "geo": null, "id": 148781464228610050, "id_str": "148781464228610048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1106669098/cp_twitter_avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1106669098/cp_twitter_avatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Long before the arrival of penguins, giant plant-eating dinosaurs roamed Antarctica. #worldnews #showbiz http://t.co/J0TgnyDp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:07:11 +0000", "from_user": "rushilawasthi24", "from_user_id": 63892074, "from_user_id_str": "63892074", "from_user_name": "rushil awasthi", "geo": null, "id": 148781428052733950, "id_str": "148781428052733953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1155054102/england-beckham_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1155054102/england-beckham_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @iYatinGupta: And women ? RT @kiduva: According to Feminists , Men evolved from dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:06:38 +0000", "from_user": "_iAFIQAAAH", "from_user_id": 123879379, "from_user_id_str": "123879379", "from_user_name": "AFIQAH/\\uC544\\uD53C\\uCE74 \\u2605", "geo": null, "id": 148781292312469500, "id_str": "148781292312469504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701524570/1317502761-picsay_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701524570/1317502761-picsay_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "why are we talking about dinosaurs exhibition at science centre... do you know how much i miss working there and the people...............", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:06:34 +0000", "from_user": "marcin4055", "from_user_id": 361328478, "from_user_id_str": "361328478", "from_user_name": "Ryszard Marciniak", "geo": null, "id": 148781273576521730, "id_str": "148781273576521729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1603656950/EmpireBackround_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1603656950/EmpireBackround_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "What if dinosaurs were alive today? http://t.co/K4rKDHNc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:06:33 +0000", "from_user": "ToysDiscountPri", "from_user_id": 416180527, "from_user_id_str": "416180527", "from_user_name": "ToysDiscountPrices", "geo": null, "id": 148781270866997250, "id_str": "148781270866997248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1646543511/41dhfd6AF0L._SL500_AA300__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646543511/41dhfd6AF0L._SL500_AA300__normal.jpg", "source": "<a href="http://toysdiscountprices.com/" rel="nofollow">ToysDiscountPrices</a>", "text": "http://t.co/jWhix4zb Discount fisher price dinosaur toys - Fisher-Price SMART CYCLE Software - Dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:06:08 +0000", "from_user": "cravenmavenblog", "from_user_id": 130616569, "from_user_id_str": "130616569", "from_user_name": "craven maven", "geo": null, "id": 148781166021980160, "id_str": "148781166021980162", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1271928218/CM_Logo_Morsel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1271928218/CM_Logo_Morsel_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @sixthformpoet: I worry that my life's a Choose Your Own Adventure story, in which I make a series of wrong decisions and eventually get eaten by dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:05:18 +0000", "from_user": "VaranusSalvator", "from_user_id": 12191962, "from_user_id_str": "12191962", "from_user_name": "Ivan Kwan", "geo": null, "id": 148780953899245570, "id_str": "148780953899245569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1554840373/TwitterAvatar__2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554840373/TwitterAvatar__2__normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "The Second International Workshop on the Biology of Sauropod Dinosaurs (part I) http://t.co/nbMEDPpb by @TetZoo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:05:07 +0000", "from_user": "_Squirtlee", "from_user_id": 220861966, "from_user_id_str": "220861966", "from_user_name": "St\\u00FCssy Janee", "geo": null, "id": 148780909351534600, "id_str": "148780909351534592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1675969605/378697_2818872713902_1321423529_33166026_1630056191_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675969605/378697_2818872713902_1321423529_33166026_1630056191_n_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "So did CaveMen nd Dinosaurs co-exist with one another ? #AskTwitter", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:04:46 +0000", "from_user": "kayyshane", "from_user_id": 42525666, "from_user_id_str": "42525666", "from_user_name": "Kayla Shane", "geo": null, "id": 148780820079980540, "id_str": "148780820079980544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1473482431/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1473482431/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT \\u201C@QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?\\u201D hahah someone please use this line.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:04:33 +0000", "from_user": "TristonGrove", "from_user_id": 402417195, "from_user_id_str": "402417195", "from_user_name": "Triston Grove", "geo": null, "id": 148780766577442800, "id_str": "148780766577442816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1656112515/qqqqqqqqqqq_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656112515/qqqqqqqqqqq_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "A dinosaur just ate another dinosaurs head off. Cool movie", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:04:18 +0000", "from_user": "musik_zeitung", "from_user_id": 440095486, "from_user_id_str": "440095486", "from_user_name": "musik magazin", "geo": null, "id": 148780702073237500, "id_str": "148780702073237504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": null, "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "19.12.2011 | Totally Enormous Extinct Dinosaurs, T.E.E.D bringen Nokia in Fahrt: Mit seinem Projekt Totally Enor... http://t.co/2zUG8qHs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:03:38 +0000", "from_user": "iwatch3d", "from_user_id": 83695497, "from_user_id_str": "83695497", "from_user_name": "iWATCH3D", "geo": null, "id": 148780534066196480, "id_str": "148780534066196481", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1490417177/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1490417177/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Visit this YT channel for BBC 3D productions like Strictly,Wimbledon 2011and Planet Dinosaurs, while it's there http://t.co/33EAPqCw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:03:31 +0000", "from_user": "BornThisHappy_", "from_user_id": 106080081, "from_user_id_str": "106080081", "from_user_name": "\\u03B1\\u0274\\u025B\\u2665", "geo": null, "id": 148780505633009660, "id_str": "148780505633009664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700507668/miamicon13_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700507668/miamicon13_normal.png", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/e1px60L5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:02:55 +0000", "from_user": "Bridgetsmiddy1", "from_user_id": 439771455, "from_user_id_str": "439771455", "from_user_name": "Bridget Smiddy", "geo": null, "id": 148780353451073540, "id_str": "148780353451073536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Brottary orrrrr I just wanted an excuse to hang 10 wif ya and watch dinosaurs tonight #raaaaaawr", "to_user": "Brottary", "to_user_id": 259981210, "to_user_id_str": "259981210", "to_user_name": "John Bottary"}, +{"created_at": "Mon, 19 Dec 2011 15:02:18 +0000", "from_user": "hebiflux", "from_user_id": 14704085, "from_user_id_str": "14704085", "from_user_name": "Galdric Pons", "geo": null, "id": 148780199880818700, "id_str": "148780199880818689", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1158279506/photo_122_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1158279506/photo_122_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Light painting, j veux bien mais \\u00E0 ce niveau l\\u00E0... wow : http://t.co/6FzvWvGj #photo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:02:17 +0000", "from_user": "buhrito", "from_user_id": 361821112, "from_user_id_str": "361821112", "from_user_name": "Brjen Rito", "geo": null, "id": 148780194818297860, "id_str": "148780194818297856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1671945351/Picture0004_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671945351/Picture0004_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Woke up too early. Can't sleep. Went on a random channel french channel and now watching French Kung Fu fighting Dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:02:10 +0000", "from_user": "LariiSpeaks", "from_user_id": 104063821, "from_user_id_str": "104063821", "from_user_name": "Larii Leonardo", "geo": null, "id": 148780164417994750, "id_str": "148780164417994754", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687789970/331309370_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687789970/331309370_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Hahahaha RT @smokeybones_: Dinosaurs used to eat weed plants so you know they got high", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:01:21 +0000", "from_user": "Emmygirlgotswag", "from_user_id": 357257392, "from_user_id_str": "357257392", "from_user_name": "Emily Paige", "geo": null, "id": 148779961388503040, "id_str": "148779961388503040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699444119/310987_2707105240823_1352577397_33006926_1541835419_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699444119/310987_2707105240823_1352577397_33006926_1541835419_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @Matt_Herrald: @Emmygirlgotswag #comet is named after something that killed the dinosaurs! #prancer is named after\\nprancing.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:01:05 +0000", "from_user": "Matt_Herrald", "from_user_id": 32707192, "from_user_id_str": "32707192", "from_user_name": "Matt Herrald", "geo": null, "id": 148779892459311100, "id_str": "148779892459311105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1549457612/229128_208123955877422_100000394571264_651263_7559315_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1549457612/229128_208123955877422_100000394571264_651263_7559315_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Emmygirlgotswag #comet is named after something that killed the dinosaurs! #prancer is named after\\nprancing.", "to_user": "Emmygirlgotswag", "to_user_id": 357257392, "to_user_id_str": "357257392", "to_user_name": "Emily Paige", "in_reply_to_status_id": 148779618189590530, "in_reply_to_status_id_str": "148779618189590528"}, +{"created_at": "Mon, 19 Dec 2011 15:00:49 +0000", "from_user": "BelTel_World", "from_user_id": 40487586, "from_user_id_str": "40487586", "from_user_name": "Belfast Telegraph", "geo": null, "id": 148779825111375870, "id_str": "148779825111375874", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/214649322/bt-clock_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/214649322/bt-clock_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Titanosaur bone found in Antarctica: Long before the arrival of penguins, giant plant-eating dinosaurs roamed An... http://t.co/xSynZ6ip", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:59:33 +0000", "from_user": "Maddieegy", "from_user_id": 431737617, "from_user_id_str": "431737617", "from_user_name": "Maddie Sprosty", "geo": null, "id": 148779507757752320, "id_str": "148779507757752321", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681109018/peamr33lyq_123087335_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681109018/peamr33lyq_123087335_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dinosaurs - 8 Inch Porcelain Plate: Dinosaurs Plate is new and handcrafted utilizing a unique process resulting ... http://t.co/pEErB1sH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:59:06 +0000", "from_user": "Stekachev_Oleg", "from_user_id": 400406118, "from_user_id_str": "400406118", "from_user_name": "Spectralman", "geo": null, "id": 148779395694342140, "id_str": "148779395694342144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1612151981/spectral_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612151981/spectral_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "You make me happy... \"Totally Enormous Extinct Dinosaurs - Trouble [Soundcloud edit]\" http://t.co/oFs0FW3G", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:58:54 +0000", "from_user": "chrisvisconti", "from_user_id": 22599099, "from_user_id_str": "22599099", "from_user_name": "Christopher Visconti", "geo": null, "id": 148779344058253300, "id_str": "148779344058253313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1661201103/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661201103/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Gummy dinosaurs and water = breakfast of champions", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:58:21 +0000", "from_user": "hunterhalbrucke", "from_user_id": 340741060, "from_user_id_str": "340741060", "from_user_name": "Hunter Halbrucker", "geo": null, "id": 148779205302300670, "id_str": "148779205302300672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1461152354/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1461152354/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Will you alway make me laugh lmao! dinosaurs!!! Lmao! Bro!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:58:07 +0000", "from_user": "BriceVillalouos", "from_user_id": 400697832, "from_user_id_str": "400697832", "from_user_name": "Brice Villalouos", "geo": null, "id": 148779148171673600, "id_str": "148779148171673603", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dinosaurs!: http://t.co/FhZ7BG5H", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:56:55 +0000", "from_user": "TheSundayIndo", "from_user_id": 33178673, "from_user_id_str": "33178673", "from_user_name": "Sunday Independent", "geo": null, "id": 148778843380006900, "id_str": "148778843380006912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/146439345/ireland-flag.jpg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/146439345/ireland-flag.jpg_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Titanosaur bone found in Antarctica: Long before the arrival of penguins, giant plant-eating dinosaurs roamed An... http://t.co/eD19yE6s", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:56:40 +0000", "from_user": "bburnsbell", "from_user_id": 19505595, "from_user_id_str": "19505595", "from_user_name": "Brandon Bell", "geo": null, "id": 148778781312688130, "id_str": "148778781312688128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639785285/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639785285/image_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/4m3gM14V", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:56:11 +0000", "from_user": "ToysDiscountPri", "from_user_id": 416180527, "from_user_id_str": "416180527", "from_user_name": "ToysDiscountPrices", "geo": null, "id": 148778662131548160, "id_str": "148778662131548160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1646543511/41dhfd6AF0L._SL500_AA300__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646543511/41dhfd6AF0L._SL500_AA300__normal.jpg", "source": "<a href="http://toysdiscountprices.com/" rel="nofollow">ToysDiscountPrices</a>", "text": "http://t.co/eLavfSYE Discount large toy dinosaurs - Big Mouth Toys Inflatable Dino Head", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:55:08 +0000", "from_user": "kacidb615", "from_user_id": 207274534, "from_user_id_str": "207274534", "from_user_name": "Kaci Bartlett", "geo": null, "id": 148778394794999800, "id_str": "148778394794999808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1633131102/IMG_1716_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633131102/IMG_1716_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @austinpstewart: Seriously so glad that dinosaurs are extinct. We would be super screwed if they weren't.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:55:05 +0000", "from_user": "Creolaokd", "from_user_id": 431689006, "from_user_id_str": "431689006", "from_user_name": "Creola Oregel", "geo": null, "id": 148778383399071740, "id_str": "148778383399071745", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681009773/jsbc2t55tc_130916810-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681009773/jsbc2t55tc_130916810-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "THE MAGIC SCHOOL BUS ADVENTURE SERIES DELUXE EDITION VOLUME 2: SCHOLASTIC'S THE MAGIC SCHOOL BUS ADVENTURE SERIE... http://t.co/Z2ZPnAnG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:54:58 +0000", "from_user": "stevebrookstein", "from_user_id": 175153531, "from_user_id_str": "175153531", "from_user_name": "steve brookstein", "geo": null, "id": 148778353443340300, "id_str": "148778353443340288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1533335814/grumpy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1533335814/grumpy_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@devilfish10 he's 3.5 dinosaurs are fine but fisherman taking Nemo is too much.", "to_user": "devilfish10", "to_user_id": 201862839, "to_user_id_str": "201862839", "to_user_name": "Jenny Frankfurt", "in_reply_to_status_id": 148777368138420220, "in_reply_to_status_id_str": "148777368138420224"}, +{"created_at": "Mon, 19 Dec 2011 14:54:46 +0000", "from_user": "missmaunda", "from_user_id": 25812818, "from_user_id_str": "25812818", "from_user_name": "Maunda Pegahmagabow", "geo": null, "id": 148778305808633860, "id_str": "148778305808633856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693271389/Parry_20Sound-20111214-00272_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693271389/Parry_20Sound-20111214-00272_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "That's it!! No more \"last day of the dinosaurs\" before bed.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:54:02 +0000", "from_user": "berniefolan", "from_user_id": 16935394, "from_user_id_str": "16935394", "from_user_name": "berniefolan", "geo": null, "id": 148778120193912830, "id_str": "148778120193912833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1165462169/1ce489f9-5d0c-4ecc-93f3-7eb9cfdeaa75_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1165462169/1ce489f9-5d0c-4ecc-93f3-7eb9cfdeaa75_normal.png", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "Interesting incl comments. RT @LibGoddess: Fascinating: 'Why journals are the dinosaurs of academia' http://t.co/qveApovz via @thesiswhispe\\u2026", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:53:54 +0000", "from_user": "Suzannaqfe", "from_user_id": 431755791, "from_user_id_str": "431755791", "from_user_name": "Suzanna Pieffer", "geo": null, "id": 148778086442352640, "id_str": "148778086442352640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681147744/2i1jhoi3uz_134367539_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681147744/2i1jhoi3uz_134367539_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Tracking Those Incredible Dinosaurs-- And the People Who Knew Them: http://t.co/nMIMu0yt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:53:27 +0000", "from_user": "zakarina98", "from_user_id": 419544224, "from_user_id_str": "419544224", "from_user_name": "\\u0417\\u0430\\u043A\\u0430\\u0440\\u0438\\u043D\\u0430 \\u0420\\u0430\\u0439\\u0445\\u0430\\u043D", "geo": null, "id": 148777970838933500, "id_str": "148777970838933505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1676843524/24102011426_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676843524/24102011426_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/FHR7db4f", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:53:11 +0000", "from_user": "coolwhipyo", "from_user_id": 80123821, "from_user_id_str": "80123821", "from_user_name": "(mad-dee-son) \\uE314", "geo": null, "id": 148777907093909500, "id_str": "148777907093909504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701080164/profileImage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701080164/profileImage_normal.jpg", "source": "<a href="http://bit.ly/fVzRUd" rel="nofollow">TwitPal</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:52:55 +0000", "from_user": "smokeybones_", "from_user_id": 30666774, "from_user_id_str": "30666774", "from_user_name": "Chris\\uE105Medeiros", "geo": null, "id": 148777837845950460, "id_str": "148777837845950466", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687215236/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687215236/profile_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Dinosaurs used to eat weed plants so you know they got high", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:52:46 +0000", "from_user": "Little_Harry", "from_user_id": 257424090, "from_user_id_str": "257424090", "from_user_name": "Harry Steven Pond", "geo": null, "id": 148777800755724300, "id_str": "148777800755724290", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698965461/iaza14638635227900_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698965461/iaza14638635227900_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", "text": "@LittleTimelord *the anomaly appears practically 2 minutes away from them...But there's dinosaurs near it...And Harrys size of a 9 year old*", "to_user": "LittleTimelord", "to_user_id": 158016689, "to_user_id_str": "158016689", "to_user_name": "Jackson Pond", "in_reply_to_status_id": 148742187121786880, "in_reply_to_status_id_str": "148742187121786881"}, +{"created_at": "Mon, 19 Dec 2011 14:51:55 +0000", "from_user": "SheEatsGlitter", "from_user_id": 187540539, "from_user_id_str": "187540539", "from_user_name": "Dances With Wolves", "geo": null, "id": 148777584853909500, "id_str": "148777584853909504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1692928009/akE4d3Qr_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692928009/akE4d3Qr_normal", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "i wish dinosaurs were real :(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:51:20 +0000", "from_user": "antikris77", "from_user_id": 81806873, "from_user_id_str": "81806873", "from_user_name": "Kristiaan", "geo": null, "id": 148777440783773700, "id_str": "148777440783773696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1479002272/ship_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1479002272/ship_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@Z0mbieWaffle Dinosaurs don't eat humans. They eat huge meteorites.", "to_user": "Z0mbieWaffle", "to_user_id": 141213416, "to_user_id_str": "141213416", "to_user_name": "alis\\u00F8nbuscus [\\u266B]", "in_reply_to_status_id": 148773534494244860, "in_reply_to_status_id_str": "148773534494244865"}, +{"created_at": "Mon, 19 Dec 2011 14:51:03 +0000", "from_user": "devilfish10", "from_user_id": 201862839, "from_user_id_str": "201862839", "from_user_name": "Jenny Frankfurt", "geo": null, "id": 148777368138420220, "id_str": "148777368138420224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1354583358/IMG_2450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1354583358/IMG_2450_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@stevebrookstein How old is he now? My son had no fears at all about the dinosaurs when he was 3. Now at 4...it could be an issue.", "to_user": "stevebrookstein", "to_user_id": 175153531, "to_user_id_str": "175153531", "to_user_name": "steve brookstein", "in_reply_to_status_id": 148776389171085300, "in_reply_to_status_id_str": "148776389171085313"}, +{"created_at": "Mon, 19 Dec 2011 14:50:00 +0000", "from_user": "SalsaChoicer", "from_user_id": 121968669, "from_user_id_str": "121968669", "from_user_name": "Salsa Choicer", "geo": null, "id": 148777104857767940, "id_str": "148777104857767936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://google.com" rel="nofollow">SalsaChoicer</a>", "text": "did you know? dinosaurs hate lazers at night", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:49:40 +0000", "from_user": "HannahMiriam", "from_user_id": 238778875, "from_user_id_str": "238778875", "from_user_name": "HannahMiriam", "geo": null, "id": 148777020585807870, "id_str": "148777020585807872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698908569/IMG00645-20111217-1218_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698908569/IMG00645-20111217-1218_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Just saw the cutest thing in the world a baby dinosaur onesie. Cannot wait to start popping out babies so I can dress them like Dinosaurs!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:49:10 +0000", "from_user": "Special_Kaaayyy", "from_user_id": 265611648, "from_user_id_str": "265611648", "from_user_name": "K.Ridley", "geo": null, "id": 148776892969922560, "id_str": "148776892969922561", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677165666/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677165666/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "I think she dreaming bout dinosaurs, cause she jus woke up and asked me were they real? WTF o_O", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:47:32 +0000", "from_user": "_thainanlopes", "from_user_id": 428325243, "from_user_id_str": "428325243", "from_user_name": " tha :}", "geo": null, "id": 148776485656858620, "id_str": "148776485656858624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702306400/125_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702306400/125_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/UYZWcblB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:46:54 +0000", "from_user": "iYatinGupta", "from_user_id": 155140444, "from_user_id_str": "155140444", "from_user_name": "Thats My Name", "geo": null, "id": 148776324364898300, "id_str": "148776324364898304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702360599/war_on_christmas_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702360599/war_on_christmas_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "And women ? RT @kiduva: According to Feminists , Men evolved from dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:46:34 +0000", "from_user": "o_OBEYmeTho", "from_user_id": 301763896, "from_user_id_str": "301763896", "from_user_name": "*Determination\\u2665", "geo": null, "id": 148776239648342000, "id_str": "148776239648342016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1659703693/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659703693/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @spiffed_up: Kiss me if I'm wrong... But dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:46:31 +0000", "from_user": "kiduva", "from_user_id": 359215276, "from_user_id_str": "359215276", "from_user_name": "\\u044F\\u0454\\u0438\\u05E0\\u03B9\\u0442\\u043D \\u2714", "geo": null, "id": 148776228395028480, "id_str": "148776228395028480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1685315462/simpsons_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685315462/simpsons_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "According to Feminists , Men evolved from dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:46:31 +0000", "from_user": "harrioakland", "from_user_id": 364955269, "from_user_id_str": "364955269", "from_user_name": "Male HeartBeat!", "geo": null, "id": 148776227287736320, "id_str": "148776227287736320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662999198/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662999198/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@GeorgePig_Offic DO YOU LIKE DINOSAURS :)", "to_user": "GeorgePig_Offic", "to_user_id": 440379152, "to_user_id_str": "440379152", "to_user_name": "George Pig"}, +{"created_at": "Mon, 19 Dec 2011 14:46:11 +0000", "from_user": "Robarrbeverage", "from_user_id": 273503081, "from_user_id_str": "273503081", "from_user_name": "RoBarr ", "geo": null, "id": 148776142894145540, "id_str": "148776142894145538", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "MT Fact:\\tAt Egg Mountain near Choteau dinosaur eggs have been discovered supporting the theory some dinosaurs... http://t.co/RwwJIg9B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:45:47 +0000", "from_user": "eserei27", "from_user_id": 23307173, "from_user_id_str": "23307173", "from_user_name": "Sara ", "geo": null, "id": 148776041907884030, "id_str": "148776041907884032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690362676/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690362676/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@dref22 cos you're afraid of dinosaurs...", "to_user": "dref22", "to_user_id": 17604455, "to_user_id_str": "17604455", "to_user_name": "dref22", "in_reply_to_status_id": 148775862081302530, "in_reply_to_status_id_str": "148775862081302528"}, +{"created_at": "Mon, 19 Dec 2011 14:45:25 +0000", "from_user": "olyjyze", "from_user_id": 361843612, "from_user_id_str": "361843612", "from_user_name": "Adon Britt", "geo": null, "id": 148775951508058100, "id_str": "148775951508058112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Free online dating site: Ladies, 2 Rock'n'Roll Dinosaurs visiting your town, Hamgout tonight 15351 young girls... http://t.co/jefUbFso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:45:11 +0000", "from_user": "dinosaur_denier", "from_user_id": 270013555, "from_user_id_str": "270013555", "from_user_name": "dinosaur conspiracy", "geo": null, "id": 148775892146069500, "id_str": "148775892146069504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1342019011/1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1342019011/1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@jwildeboer @nfm dinosaurs never existed and sun revolves around the Earth!", "to_user": "jwildeboer", "to_user_id": 16185413, "to_user_id_str": "16185413", "to_user_name": "jwildeboer", "in_reply_to_status_id": 148761917010346000, "in_reply_to_status_id_str": "148761917010345984"}, +{"created_at": "Mon, 19 Dec 2011 14:44:52 +0000", "from_user": "ghosthugs", "from_user_id": 29343854, "from_user_id_str": "29343854", "from_user_name": "Alex", "geo": null, "id": 148775811237945340, "id_str": "148775811237945344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691009698/da2fba05-d835-48d8-8aa2-f665e7924833_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691009698/da2fba05-d835-48d8-8aa2-f665e7924833_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "I wouldn't kick her out of bed, if you know what I mean. Cause that would be rude. Especially if we were mid convo about dinosaurs and space", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:44:43 +0000", "from_user": "Jakkrith", "from_user_id": 16600625, "from_user_id_str": "16600625", "from_user_name": "Jakkrit H.", "geo": null, "id": 148775774009311230, "id_str": "148775774009311233", "iso_language_code": "th", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1630217501/aek-at-sea-1s_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630217501/aek-at-sea-1s_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u0E2D\\u0E22\\u0E32\\u0E01\\u0E14\\u0E39 \\u0E2A\\u0E32\\u0E23\\u0E04\\u0E14\\u0E35 BBC \\u0E0A\\u0E38\\u0E14 Life before Dinosaurs. Walking with Monsters. \\u0E1A\\u0E23\\u0E23\\u0E22\\u0E32\\u0E22\\u0E44\\u0E17\\u0E22 \\u0E42\\u0E14\\u0E22 \\u0E2A\\u0E31\\u0E0D\\u0E0D\\u0E32 \\u0E04\\u0E38\\u0E13\\u0E32\\u0E01\\u0E23", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:43:27 +0000", "from_user": "markm1962", "from_user_id": 17171286, "from_user_id_str": "17171286", "from_user_name": "mm62", "geo": null, "id": 148775454537560060, "id_str": "148775454537560064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1622695939/greenhornetkato_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622695939/greenhornetkato_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Ironic that conservatives don\\u2019t believe in dinosaurs since they\\u2019ll both meet the same fate. #p2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:43:06 +0000", "from_user": "MorningJoeVideo", "from_user_id": 82944239, "from_user_id_str": "82944239", "from_user_name": "Morning Joe", "geo": null, "id": 148775368722100220, "id_str": "148775368722100224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://msnbc.com/" rel="nofollow">msnbc.com feeds</a>", "text": "Video: 'Terra Nova' star: Show is 'Swiss Family Robinson' with dinosaurs http://t.co/dkjuswEt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:42:56 +0000", "from_user": "AnnyRoose", "from_user_id": 181149431, "from_user_id_str": "181149431", "from_user_name": "Carolina C.Gon\\u00E7alves", "geo": null, "id": 148775326820999170, "id_str": "148775326820999168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698965200/thumbail0_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698965200/thumbail0_normal.png", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/U6lTI4b7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:42:18 +0000", "from_user": "Fahalmudhaf", "from_user_id": 65290988, "from_user_id_str": "65290988", "from_user_name": "\\u0641\\u0647\\u062F \\u0639\\u0644\\u064A \\u0627\\u0644\\u0645\\u0636\\u0641", "geo": null, "id": 148775164610486270, "id_str": "148775164610486273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1659224690/Fahalmudhaf_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659224690/Fahalmudhaf_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "I heard @Skrillex was created when chuck norris roundhouse kicked the dinosaurs into extinction...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:40:54 +0000", "from_user": "Diacratical", "from_user_id": 399478492, "from_user_id_str": "399478492", "from_user_name": "Callum - Diacratical", "geo": null, "id": 148774816281935870, "id_str": "148774816281935872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682979834/eightbit-d9486275-918e-46f9-9ed0-cd560b390a26_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682979834/eightbit-d9486275-918e-46f9-9ed0-cd560b390a26_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@Battlefield DINOSAURS! ;)", "to_user": "Battlefield", "to_user_id": 27855118, "to_user_id_str": "27855118", "to_user_name": "Battlefield", "in_reply_to_status_id": 148774165317554180, "in_reply_to_status_id_str": "148774165317554176"}, +{"created_at": "Mon, 19 Dec 2011 14:40:00 +0000", "from_user": "SalsaChoicer", "from_user_id": 121968669, "from_user_id_str": "121968669", "from_user_name": "Salsa Choicer", "geo": null, "id": 148774589424607230, "id_str": "148774589424607232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://google.com" rel="nofollow">SalsaChoicer</a>", "text": "did you know? dinosaurs love light sabers when happy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:39:57 +0000", "from_user": "owykicyr", "from_user_id": 410875505, "from_user_id_str": "410875505", "from_user_name": "Krishnah Fichter", "geo": null, "id": 148774576447434750, "id_str": "148774576447434752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1636852420/102_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1636852420/102_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "How Do Dinosaurs Play with Their Friends? (Board book) http://t.co/fkSCzLZ2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:39:14 +0000", "from_user": "katelynMarie_33", "from_user_id": 353399911, "from_user_id_str": "353399911", "from_user_name": "katelyn caffarelli", "geo": null, "id": 148774394712424450, "id_str": "148774394712424449", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688330330/Jt4T1hRA_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688330330/Jt4T1hRA_normal", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @CassieLovesAhha: I'm not watching shitty ass dinosaurs that don't roam the earth anymore.....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:39:13 +0000", "from_user": "dograd", "from_user_id": 16907646, "from_user_id_str": "16907646", "from_user_name": "Cat Clark", "geo": null, "id": 148774384109236220, "id_str": "148774384109236224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695029900/Untitled-2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695029900/Untitled-2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "New ducky pyjamas. Needed something without arms that was easier to put on.. will be ordering dinosaurs after xmas http://t.co/jM5ZphEl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:38:17 +0000", "from_user": "Croxus", "from_user_id": 19152393, "from_user_id_str": "19152393", "from_user_name": "Ac klingenberg", "geo": null, "id": 148774157172215800, "id_str": "148774157172215809", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1593082834/hipster_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593082834/hipster_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "At the natural history museum, seen the giant squid. Now a rest, sandwhich and pot of tea before the dinosaurs http://t.co/01Qddg5s", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:38:10 +0000", "from_user": "brruunaaaa", "from_user_id": 440299436, "from_user_id_str": "440299436", "from_user_name": "bruna dasilva", "geo": null, "id": 148774124687331330, "id_str": "148774124687331328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700806089/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700806089/profile_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "\"@QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:38:01 +0000", "from_user": "WardanTurner", "from_user_id": 76899309, "from_user_id_str": "76899309", "from_user_name": "Wardan Adi Wibisono", "geo": null, "id": 148774090013024260, "id_str": "148774090013024256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693216758/ProfilePhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693216758/ProfilePhoto_normal.png", "source": "<a href="http://lastfmlovetweet.com/" rel="nofollow">LastfmLoveTweet</a>", "text": "♥ Oh, it is Love by Hellogoodbye #lastfm: http://t.co/Bi9sfK60 amazon: http://t.co/lV6RRCVx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:35:02 +0000", "from_user": "bostinoo", "from_user_id": 367224641, "from_user_id_str": "367224641", "from_user_name": "bostino", "geo": null, "id": 148773338829946880, "id_str": "148773338829946880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1526733701/P1050509_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1526733701/P1050509_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@BibsNBots I designed and made a fabric bag for my two year old daughter... With pink dinosaurs.. She loved it", "to_user": "BibsNBots", "to_user_id": 21285640, "to_user_id_str": "21285640", "to_user_name": "Carley Brierley", "in_reply_to_status_id": 148771099902087170, "in_reply_to_status_id_str": "148771099902087168"} +, +{"created_at": "Mon, 19 Dec 2011 14:35:02 +0000", "from_user": "bostinoo", "from_user_id": 367224641, "from_user_id_str": "367224641", "from_user_name": "bostino", "geo": null, "id": 148773338829946880, "id_str": "148773338829946880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1526733701/P1050509_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1526733701/P1050509_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@BibsNBots I designed and made a fabric bag for my two year old daughter... With pink dinosaurs.. She loved it", "to_user": "BibsNBots", "to_user_id": 21285640, "to_user_id_str": "21285640", "to_user_name": "Carley Brierley", "in_reply_to_status_id": 148771099902087170, "in_reply_to_status_id_str": "148771099902087168"}, +{"created_at": "Mon, 19 Dec 2011 14:33:29 +0000", "from_user": "xjusts0megirl", "from_user_id": 347087727, "from_user_id_str": "347087727", "from_user_name": "\\u0391 girl\\u2665 ", "geo": null, "id": 148772949674041340, "id_str": "148772949674041344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686907979/331283476_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686907979/331283476_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Kiss me if I'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:33:05 +0000", "from_user": "x_ClGlovesWbB_x", "from_user_id": 378373371, "from_user_id_str": "378373371", "from_user_name": "Casey Lea", "geo": null, "id": 148772845458161660, "id_str": "148772845458161664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691964459/308350_214644615268425_100001686655546_552699_736500768_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691964459/308350_214644615268425_100001686655546_552699_736500768_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Lookin at Dinosaurs with Haley & Danielle (:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:32:37 +0000", "from_user": "CassieLovesAhha", "from_user_id": 354057468, "from_user_id_str": "354057468", "from_user_name": "CassandraAshleyGreen", "geo": null, "id": 148772731318583300, "id_str": "148772731318583297", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1651330651/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651330651/image_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "I'm not watching shitty ass dinosaurs that don't roam the earth anymore.....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:32:19 +0000", "from_user": "CLJordan88", "from_user_id": 288533379, "from_user_id_str": "288533379", "from_user_name": "Crystal Jordan", "geo": null, "id": 148772655909183500, "id_str": "148772655909183488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1337993434/084_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1337993434/084_normal.JPG", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @SamCassese: \"When I was little, I thought AD was After Dinosaurs. I'm talking about up to my freshman year...at Zion.\" -Zach Wable", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:29:49 +0000", "from_user": "blewskie", "from_user_id": 62217809, "from_user_id_str": "62217809", "from_user_name": "Dong Vera Cruz", "geo": null, "id": 148772026201546750, "id_str": "148772026201546754", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662309964/217233_1342213890920_1698415060_588758_3951744_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662309964/217233_1342213890920_1698415060_588758_3951744_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Kiss me if I'm wrong. But dinosaurs do exist right? :DD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:29:42 +0000", "from_user": "queendryice", "from_user_id": 48140685, "from_user_id_str": "48140685", "from_user_name": "C\\u03B1mill\\u03B1 Nascimento", "geo": null, "id": 148771996279377920, "id_str": "148771996279377923", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1690175560/100E378444444444444444444444444_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690175560/100E378444444444444444444444444_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@hinanofromglory This pic reminded me the cover of the album My Dinosaur Life by Motion City Soundtrack. I have a passion for cute dinosaurs", "to_user": "hinanofromglory", "to_user_id": 147554268, "to_user_id_str": "147554268", "to_user_name": "hinano goes rawr", "in_reply_to_status_id": 148771249470976000, "in_reply_to_status_id_str": "148771249470976000"}, +{"created_at": "Mon, 19 Dec 2011 14:29:42 +0000", "from_user": "Tanatvi", "from_user_id": 431684090, "from_user_id_str": "431684090", "from_user_name": "Tana Corkran", "geo": null, "id": 148771994526167040, "id_str": "148771994526167040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680993211/large_100_0135_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680993211/large_100_0135_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Songs for My Dog and Other Wry Rhymes: Dinosaurs, nutty nursery rhymes, crafty creatures, merry mishaps, random ... http://t.co/gHO8zwaD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:28:15 +0000", "from_user": "TeenQuote4Girlz", "from_user_id": 410822885, "from_user_id_str": "410822885", "from_user_name": "TeenQuote4Girlz", "geo": null, "id": 148771629755924480, "id_str": "148771629755924481", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697416592/R8_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697416592/R8_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "So out of all the dinosaurs to go extinct, why the fuck did Barney have to survive?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:26:46 +0000", "from_user": "spacecatz", "from_user_id": 25605323, "from_user_id_str": "25605323", "from_user_name": "Soph", "geo": null, "id": 148771258237071360, "id_str": "148771258237071361", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1156914992/Photo_on_2010-09-27_at_04.11__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1156914992/Photo_on_2010-09-27_at_04.11__2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @DongBag_Darrell: Kim Jong Il was best know for playing the grandma dinosaur on Dinosaurs. RIP.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:25:58 +0000", "from_user": "tuazon_cj", "from_user_id": 141937391, "from_user_id_str": "141937391", "from_user_name": "christian tuazon", "geo": null, "id": 148771057631899650, "id_str": "148771057631899649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1678340939/dougie_dance_domo_normal.mp3", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678340939/dougie_dance_domo_normal.mp3", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube video http://t.co/1V8SkpNX Dinosaurs alive! : tarbosaurus", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:24:20 +0000", "from_user": "Aragosaurus", "from_user_id": 242258580, "from_user_id_str": "242258580", "from_user_name": "Aragosaurus", "geo": null, "id": 148770646753673200, "id_str": "148770646753673216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1270926971/equipo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1270926971/equipo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "The Second International Workshop on the Biology of Sauropod Dinosaurs (part I). http://t.co/4tDZYSpU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:23:38 +0000", "from_user": "Anarchisthosts", "from_user_id": 179972968, "from_user_id_str": "179972968", "from_user_name": "Anarchist Hosting", "geo": null, "id": 148770469997318140, "id_str": "148770469997318144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1121859514/logo_done_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1121859514/logo_done_normal.png", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Photo: dinosaurs-and-boobs: Sauron is one of my favorite villains, when he\\u2019s feeling\\u2026intelligent. http://t.co/ZTpAOSlu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:23:28 +0000", "from_user": "JonnyStarchild", "from_user_id": 21518217, "from_user_id_str": "21518217", "from_user_name": "Jonathan Broderick", "geo": null, "id": 148770427097980930, "id_str": "148770427097980928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1584650316/297620_291538547527167_100000130710329_1300359_978532999_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584650316/297620_291538547527167_100000130710329_1300359_978532999_n_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/geRIJjjC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:23:15 +0000", "from_user": "LiLiMagz", "from_user_id": 208453179, "from_user_id_str": "208453179", "from_user_name": "Lili McBride", "geo": null, "id": 148770373251506180, "id_str": "148770373251506176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687743548/331308031_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687743548/331308031_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @IamLethabo: Kiss me if I'm wrong but dinosaurs still exist right? ;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:22:33 +0000", "from_user": "afarooqy", "from_user_id": 309614076, "from_user_id_str": "309614076", "from_user_name": "farooqy", "geo": null, "id": 148770194674814980, "id_str": "148770194674814976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684943215/photo__6__normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684943215/photo__6__normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@ehsanashraf Awww yay science museum is just the best! Go to the Attenborough showings. Also don't forget the history museum! Dinosaurs rawr", "to_user": "ehsanashraf", "to_user_id": 84026729, "to_user_id_str": "84026729", "to_user_name": "Ehsan Ashraf", "in_reply_to_status_id": 148765138466504700, "in_reply_to_status_id_str": "148765138466504705"}, +{"created_at": "Mon, 19 Dec 2011 14:21:50 +0000", "from_user": "RT1138", "from_user_id": 287535483, "from_user_id_str": "287535483", "from_user_name": "Rolling Thunder", "geo": null, "id": 148770014583980030, "id_str": "148770014583980032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1324461464/Mon-Shon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1324461464/Mon-Shon_normal.jpg", "source": "<a href="http://www.twhirl.org" rel="nofollow">Seesmic twhirl</a>", "text": "RT @CBSNews: Almanac: We remember the 19th C. UK scientist who gave dinosaurs their name, and look back at what we've learned since http://t.co/0prHuKoX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:21:41 +0000", "from_user": "tuazon_cj", "from_user_id": 141937391, "from_user_id_str": "141937391", "from_user_name": "christian tuazon", "geo": null, "id": 148769979989360640, "id_str": "148769979989360640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1678340939/dougie_dance_domo_normal.mp3", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678340939/dougie_dance_domo_normal.mp3", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube video http://t.co/4uZafPtY March Of The Dinosaurs: Edmontosaurus Versus Albe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:21:38 +0000", "from_user": "Bruuh_Breezy", "from_user_id": 178553380, "from_user_id_str": "178553380", "from_user_name": "742671000027!", "geo": null, "id": 148769965095391230, "id_str": "148769965095391232", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691645117/SDC11389_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691645117/SDC11389_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Dinosaurs go rawr, dinosaurs go rawr ~vou matar a Lais~", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:21:25 +0000", "from_user": "IamLethabo", "from_user_id": 190957977, "from_user_id_str": "190957977", "from_user_name": "L. Mona\\u00E9", "geo": null, "id": 148769913035685900, "id_str": "148769913035685889", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689998737/331390895_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689998737/331390895_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Kiss me if I'm wrong but dinosaurs still exist right? ;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:21:18 +0000", "from_user": "JenJenM49037", "from_user_id": 364886320, "from_user_id_str": "364886320", "from_user_name": "Jennifer McLeod", "geo": null, "id": 148769882681507840, "id_str": "148769882681507840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1520626436/Jen_s_pics_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1520626436/Jen_s_pics_2_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "What Happened to the Dinosaurs? http://t.co/4rcvfsKC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:21:02 +0000", "from_user": "marilucolfer", "from_user_id": 124027816, "from_user_id_str": "124027816", "from_user_name": "Maril\\u00FA Maldonado", "geo": null, "id": 148769815056756740, "id_str": "148769815056756737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682429554/331146821_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682429554/331146821_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @AdmireMyQuote: RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:19:49 +0000", "from_user": "VahidinSwag", "from_user_id": 366958824, "from_user_id_str": "366958824", "from_user_name": "VahidinSwag\\u2122", "geo": null, "id": 148769507329064960, "id_str": "148769507329064961", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1570336400/406_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1570336400/406_normal.JPG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@YummyTacos lol. You guys should be doing this project not talking about dinosaurs", "to_user": "YummyTacos", "to_user_id": 271058255, "to_user_id_str": "271058255", "to_user_name": "Luis Castellanos", "in_reply_to_status_id": 148767297681637380, "in_reply_to_status_id_str": "148767297681637376"}, +{"created_at": "Mon, 19 Dec 2011 14:19:15 +0000", "from_user": "Goblinhaley", "from_user_id": 436641814, "from_user_id_str": "436641814", "from_user_name": "haadeeeeee", "geo": null, "id": 148769365356068860, "id_str": "148769365356068864", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702490666/ny6jP3nk_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702490666/ny6jP3nk_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "triceratops, dinosaurs dick", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:17:58 +0000", "from_user": "Adeliasqt", "from_user_id": 431695337, "from_user_id_str": "431695337", "from_user_name": "Adelia Macartney", "geo": null, "id": 148769043942350850, "id_str": "148769043942350848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681019813/mdkryfqqiy_135290208-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681019813/mdkryfqqiy_135290208-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "More about Dinosaurs - Pbk (Now I Know): Simple text and illustrations describe the environment and the characte... http://t.co/t0VMTxxe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:16:48 +0000", "from_user": "Vinay_fet", "from_user_id": 141296716, "from_user_id_str": "141296716", "from_user_name": "Vinay Pratap Singh", "geo": null, "id": 148768749615464450, "id_str": "148768749615464448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1522487796/twitter-followers_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1522487796/twitter-followers_normal.png", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/B2lVjoHl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:15:16 +0000", "from_user": "iamADATAN", "from_user_id": 301750540, "from_user_id_str": "301750540", "from_user_name": "ADATAN", "geo": null, "id": 148768362116288500, "id_str": "148768362116288514", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682716065/neos_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682716065/neos_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "I wonder how did dinosaurs get extinct uh...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:15:11 +0000", "from_user": "ToysDiscountPri", "from_user_id": 416180527, "from_user_id_str": "416180527", "from_user_name": "ToysDiscountPrices", "geo": null, "id": 148768341476130800, "id_str": "148768341476130816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1646543511/41dhfd6AF0L._SL500_AA300__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646543511/41dhfd6AF0L._SL500_AA300__normal.jpg", "source": "<a href="http://toysdiscountprices.com/" rel="nofollow">ToysDiscountPrices</a>", "text": "http://t.co/8GbisGpz Discount stuffed toy dinosaurs - Webkinz Stegosaurus", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:15:00 +0000", "from_user": "iamADATAN", "from_user_id": 301750540, "from_user_id_str": "301750540", "from_user_name": "ADATAN", "geo": null, "id": 148768294579609600, "id_str": "148768294579609600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682716065/neos_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682716065/neos_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Dinosaurs are scary::", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:14:52 +0000", "from_user": "LottieRose_xox", "from_user_id": 402110748, "from_user_id_str": "402110748", "from_user_name": "Lottie Rose Mann", "geo": null, "id": 148768261675298800, "id_str": "148768261675298816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1620903303/261552_201053926607912_132525636794075_520510_2498070_nA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620903303/261552_201053926607912_132525636794075_520510_2498070_nA_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "I like dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:14:34 +0000", "from_user": "MCgetting", "from_user_id": 273042317, "from_user_id_str": "273042317", "from_user_name": "Craig Getting", "geo": null, "id": 148768189147385860, "id_str": "148768189147385856", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1289285495/panda_with_a_ball_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1289285495/panda_with_a_ball_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Dinosaurs!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:14:31 +0000", "from_user": "djaycoholyc", "from_user_id": 34886146, "from_user_id_str": "34886146", "from_user_name": "Mas Djay\\u2122", "geo": null, "id": 148768173120962560, "id_str": "148768173120962562", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1643292877/djay2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643292877/djay2_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@ocheex earth in 2149, evolution started again with... Dinosaurs era and advance future :D. Spielberg's", "to_user": "ocheex", "to_user_id": 215466430, "to_user_id_str": "215466430", "to_user_name": "Ochik Danti", "in_reply_to_status_id": 148767782786449400, "in_reply_to_status_id_str": "148767782786449408"}, +{"created_at": "Mon, 19 Dec 2011 14:13:30 +0000", "from_user": "ISlappedUrBitch", "from_user_id": 170928308, "from_user_id_str": "170928308", "from_user_name": "Ryan Parasram", "geo": null, "id": 148767918325374980, "id_str": "148767918325374976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690192397/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690192397/image_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @itssamanduhh: RT @PrincessVane_: Kiss me if i'm wrong, but Dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:13:25 +0000", "from_user": "Kutuwangbowo", "from_user_id": 218091223, "from_user_id_str": "218091223", "from_user_name": "Mustafa Rahman", "geo": null, "id": 148767896309465100, "id_str": "148767896309465090", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1442691484/281750_10150241645463892_645578891_7437789_1970909_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1442691484/281750_10150241645463892_645578891_7437789_1970909_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Under the ominous green moonlight. The Vagiant lay, content. His belly full of the blood of dinosaurs and their dino-kids.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:13:07 +0000", "from_user": "babyandtoTK", "from_user_id": 399304744, "from_user_id_str": "399304744", "from_user_name": "babyandtoTK", "geo": null, "id": 148767824142274560, "id_str": "148767824142274560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1610359234/1319755024_top-baby-and-toddler-toys-for-christmas_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610359234/1319755024_top-baby-and-toddler-toys-for-christmas_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "75% off: Ten Little Dinosaurs Picture Book (Wiggle Eyes) http://t.co/iusWngdH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:12:23 +0000", "from_user": "Trinavkj", "from_user_id": 431776569, "from_user_id_str": "431776569", "from_user_name": "Trina Elting", "geo": null, "id": 148767638984724480, "id_str": "148767638984724480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681192481/large_100_1075_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681192481/large_100_1075_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "A-Z - Dinosaurs: An alphabetical survey of various dinosaurs and other prehistoric reptiles and amphibians, from... http://t.co/cDET1Dw1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:11:31 +0000", "from_user": "verbose485", "from_user_id": 180276463, "from_user_id_str": "180276463", "from_user_name": "tw conroy", "geo": null, "id": 148767420897697800, "id_str": "148767420897697792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "http://t.co/noqz5sJH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:11:02 +0000", "from_user": "YummyTacos", "from_user_id": 271058255, "from_user_id_str": "271058255", "from_user_name": "Luis Castellanos", "geo": null, "id": 148767297681637380, "id_str": "148767297681637376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1626389917/5lSm8gu1_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626389917/5lSm8gu1_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"There was no dinosaurs!\" (Edson)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:09:53 +0000", "from_user": "ScrapbookJournl", "from_user_id": 49543667, "from_user_id_str": "49543667", "from_user_name": "Scrapbook Journaling", "geo": null, "id": 148767008396283900, "id_str": "148767008396283904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/275911870/ist1_9300006-scrapbooker-retro-cartoon-smiling-woman-with-scissors-making-a-scrapbook_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/275911870/ist1_9300006-scrapbooker-retro-cartoon-smiling-woman-with-scissors-making-a-scrapbook_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @helloheliotrope I have the day off work tomorrow. I am spending it doing art things like painting dinosaurs and editing photos an...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:09:15 +0000", "from_user": "Larewyvn", "from_user_id": 395347759, "from_user_id_str": "395347759", "from_user_name": "Maxine Vance", "geo": null, "id": 148766848362610700, "id_str": "148766848362610688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1663307367/652194739profile64_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663307367/652194739profile64_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I'm a funny girl! has u can see i can take a good laff! i love hugs!!! Also i play the guitar and dinosaurs rule the world!!!! RAWR ( ;", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:08:48 +0000", "from_user": "MEF920", "from_user_id": 423122191, "from_user_id_str": "423122191", "from_user_name": "Meagan Fischer", "geo": null, "id": 148766735644889100, "id_str": "148766735644889088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1661817403/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661817403/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "just found out Evan LOVES dinosaurs!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:06:42 +0000", "from_user": "DetailMedic", "from_user_id": 70292431, "from_user_id_str": "70292431", "from_user_name": "Detail Medic", "geo": null, "id": 148766206122405900, "id_str": "148766206122405888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1243070161/memento_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1243070161/memento_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "So a guy I know was shot down by a girl because he \"may not believe in dinosaurs\". He's shocked. What do y'all think? Would you date him?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:05:58 +0000", "from_user": "rareresource", "from_user_id": 420883947, "from_user_id_str": "420883947", "from_user_name": "Shawn Mike", "geo": null, "id": 148766022399303680, "id_str": "148766022399303680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657006608/Dinosaur-profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657006608/Dinosaur-profile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Dinosaurs Around the World\\nhttp://t.co/vwwfC9cO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:05:47 +0000", "from_user": "rareresource", "from_user_id": 420883947, "from_user_id_str": "420883947", "from_user_name": "Shawn Mike", "geo": null, "id": 148765975876083700, "id_str": "148765975876083713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657006608/Dinosaur-profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657006608/Dinosaur-profile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Life Cycle of Dinosaurs \\nhttp://t.co/wbubiqo7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:04:24 +0000", "from_user": "Killspammer", "from_user_id": 195809979, "from_user_id_str": "195809979", "from_user_name": "Tom Richardson", "geo": null, "id": 148765629183307780, "id_str": "148765629183307776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@notch @Kappische @ShamsJorjani How bout' them dinosaurs back then?", "to_user": "notch", "to_user_id": 63485337, "to_user_id_str": "63485337", "to_user_name": "Markus Persson", "in_reply_to_status_id": 148765105759334400, "in_reply_to_status_id_str": "148765105759334400"}, +{"created_at": "Mon, 19 Dec 2011 14:02:44 +0000", "from_user": "vikazaika", "from_user_id": 106877559, "from_user_id_str": "106877559", "from_user_name": "Viktoriya Zaikina", "geo": null, "id": 148765208658186240, "id_str": "148765208658186241", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687610387/4213314554_8d706a2fb4_b_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687610387/4213314554_8d706a2fb4_b_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u0432\\u0441\\u043F\\u043E\\u043C\\u043D\\u0438\\u043B\\u0430 \\u043F\\u0440\\u043E Hellogoodbye, \\u0441\\u0438\\u0436\\u0443 \\u043D\\u043E\\u0441\\u0442\\u0430\\u043B\\u044C\\u0433\\u0438\\u0440\\u0443\\u044E \\u043F\\u043E \\u0430\\u043B\\u044C\\u0431\\u043E\\u043C \"Zombies! Aliens! Vampires! Dinosaurs!\". \\u0431\\u044B\\u043B\\u043E \\u0436\\u0435 \\u0432\\u0440\\u0435\\u043C\\u044F", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:02:17 +0000", "from_user": "paycovela1987", "from_user_id": 350423088, "from_user_id_str": "350423088", "from_user_name": "paycovela1987", "geo": null, "id": 148765098234757120, "id_str": "148765098234757122", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Dinosaurs and reading http://t.co/tquokxFD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:00:49 +0000", "from_user": "EmmieJBandie", "from_user_id": 53472018, "from_user_id_str": "53472018", "from_user_name": "Emilee Jones", "geo": null, "id": 148764727030448130, "id_str": "148764727030448128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1295217366/190665_10150130920063447_505398446_6496313_3980113_nedit2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1295217366/190665_10150130920063447_505398446_6496313_3980113_nedit2_normal.jpg", "source": "<a href="http://www.myyearbook.com/" rel="nofollow">myYearbook Share</a>", "text": "Q: How do you think the dinosaurs died? A: Idk. however they died?: http://t.co/xFtDpOSQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:00:39 +0000", "from_user": "PurpleParadox", "from_user_id": 135236930, "from_user_id_str": "135236930", "from_user_name": "O.o", "geo": null, "id": 148764683657154560, "id_str": "148764683657154560", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696166351/225026_10150582316265657_607195656_18455348_3349772_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696166351/225026_10150582316265657_607195656_18455348_3349772_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@lady_gabbar *tummy main dinosaurs hain! :p @Gauribee", "to_user": "lady_gabbar", "to_user_id": 144026920, "to_user_id_str": "144026920", "to_user_name": "Switty Switty Switty", "in_reply_to_status_id": 148764515528482800, "in_reply_to_status_id_str": "148764515528482818"}, +{"created_at": "Mon, 19 Dec 2011 13:59:48 +0000", "from_user": "maevely", "from_user_id": 171593903, "from_user_id_str": "171593903", "from_user_name": "Maeve Magill", "geo": null, "id": 148764472465563650, "id_str": "148764472465563650", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701890457/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701890457/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Cillian_Fitz never played dizzy dinosaurs #sqaurehead.", "to_user": "Cillian_Fitz", "to_user_id": 288659978, "to_user_id_str": "288659978", "to_user_name": "Cillian Fitzgerald"}, +{"created_at": "Mon, 19 Dec 2011 13:57:43 +0000", "from_user": "itv_digital", "from_user_id": 19924799, "from_user_id_str": "19924799", "from_user_name": "\\uAE30\\uC601", "geo": null, "id": 148763946881527800, "id_str": "148763946881527810", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1560841744/50x50_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1560841744/50x50_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "@youcantgoback It sells waffles, turey dinosaurs and memories of simpler times. #KKwik", "to_user": "youcantgoback", "to_user_id": 21567492, "to_user_id_str": "21567492", "to_user_name": "william sanderson", "in_reply_to_status_id": 148763205496344580, "in_reply_to_status_id_str": "148763205496344576"}, +{"created_at": "Mon, 19 Dec 2011 13:57:42 +0000", "from_user": "Ichnologist", "from_user_id": 226011566, "from_user_id_str": "226011566", "from_user_name": "Anthony (Tony)Martin", "geo": null, "id": 148763943026950140, "id_str": "148763943026950144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1189232502/DSCN6497_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1189232502/DSCN6497_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TetZoo: Pt I of thoughts on German #sauropod biology meeting: http://t.co/35uofNmt Nutrition, diet, fighting, locomotion #dinosaurs #SauroBonn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:57:15 +0000", "from_user": "fathinaeila", "from_user_id": 125003378, "from_user_id_str": "125003378", "from_user_name": "Fathin Naeila Sholeh", "geo": null, "id": 148763830376337400, "id_str": "148763830376337408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699742773/page_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699742773/page_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/ewH9zWq1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:56:55 +0000", "from_user": "carebear_rocks", "from_user_id": 402854986, "from_user_id_str": "402854986", "from_user_name": "carrie lanham", "geo": null, "id": 148763745324236800, "id_str": "148763745324236801", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1663743927/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663743927/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:56:50 +0000", "from_user": "Sofietje", "from_user_id": 14175602, "from_user_id_str": "14175602", "from_user_name": "Sofie Pelmelay", "geo": null, "id": 148763725262893060, "id_str": "148763725262893056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682606883/aad-2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682606883/aad-2_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Nokia Lumia 800 right? Totally Enormous Extinct Dinosaurs \\u2013 Garden http://t.co/INMBnTTl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:56:39 +0000", "from_user": "JonathanAxfeldt", "from_user_id": 64206553, "from_user_id_str": "64206553", "from_user_name": "Jonathan Axfeldt", "geo": null, "id": 148763680190890000, "id_str": "148763680190889984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1655158175/185507_10150254925669930_530039929_7573921_3872297_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655158175/185507_10150254925669930_530039929_7573921_3872297_n_normal.jpg", "source": "<a href="http://www.tweekly.fm/" rel="nofollow">Tweekly.fm</a>", "text": "My Top 3 #lastfm Artists: Totally Enormous Extinct Dinosaurs (28), Bj\\u00F6rk (1) & Planningtorock (1) http://t.co/15Zs48bi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:54:57 +0000", "from_user": "papaman357", "from_user_id": 323790664, "from_user_id_str": "323790664", "from_user_name": "Raymond Decker", "geo": null, "id": 148763247804301300, "id_str": "148763247804301313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1430825383/100_0198_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1430825383/100_0198_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Watch, in 2013 the same dinosaurs will b roaming d halls of Congress..U have 2 be hit in d head with a 2X4..Vote out. http://t.co/xko5cfPD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:53:48 +0000", "from_user": "ChloeLovesLou1D", "from_user_id": 136601549, "from_user_id_str": "136601549", "from_user_name": "Chloe H (Tomlinson)", "geo": null, "id": 148762960016326660, "id_str": "148762960016326656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691252610/299503_2017502284102_1440220592_31625001_1477106463_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691252610/299503_2017502284102_1440220592_31625001_1477106463_n_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/R299Awgz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:53:20 +0000", "from_user": "jam2885", "from_user_id": 17884385, "from_user_id_str": "17884385", "from_user_name": "A", "geo": null, "id": 148762845822197760, "id_str": "148762845822197760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1601308798/comicontwitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601308798/comicontwitter_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "@MissTweet25 @BdwayDiva1 @musicpoet1 @Iceni_Queen for reasons unknown they r treating Kelly like gaga #dinosaurs", "to_user": "MissTweet25", "to_user_id": 96431140, "to_user_id_str": "96431140", "to_user_name": "MissTweet", "in_reply_to_status_id": 148762379449147400, "in_reply_to_status_id_str": "148762379449147392"}, +{"created_at": "Mon, 19 Dec 2011 13:53:20 +0000", "from_user": "Texar1", "from_user_id": 364719131, "from_user_id_str": "364719131", "from_user_name": "Chris Black", "geo": null, "id": 148762844832346100, "id_str": "148762844832346113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1638214069/Texar_V3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638214069/Texar_V3_normal.png", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/UAt6Uhzh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:52:48 +0000", "from_user": "OusmaneDogo", "from_user_id": 383562556, "from_user_id_str": "383562556", "from_user_name": "playboy", "geo": null, "id": 148762708546826240, "id_str": "148762708546826241", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701453753/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701453753/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Who believe in dinosaurs???????", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:52:45 +0000", "from_user": "JohnRHutchinson", "from_user_id": 323754242, "from_user_id_str": "323754242", "from_user_name": "John R. Hutchinson", "geo": null, "id": 148762696530145280, "id_str": "148762696530145281", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1600664447/John-pic-elefoot-sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600664447/John-pic-elefoot-sm_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TetZoo: Pt I of thoughts on German #sauropod biology meeting: http://t.co/35uofNmt Nutrition, diet, fighting, locomotion #dinosaurs #SauroBonn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:52:37 +0000", "from_user": "l0stsoulforever", "from_user_id": 92809807, "from_user_id_str": "92809807", "from_user_name": "megan \\u2655", "geo": null, "id": 148762662501752830, "id_str": "148762662501752833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698369783/Photo0108_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698369783/Photo0108_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "And on the third day, God created the Remington bolt-action rifle, so that man could fight the dinosaurs. And the homoesexuals. Amen.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:52:00 +0000", "from_user": "DavidKerrThe3rd", "from_user_id": 152937814, "from_user_id_str": "152937814", "from_user_name": "David Kerr", "geo": null, "id": 148762507203461120, "id_str": "148762507203461120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1323300920/IMGP1196_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1323300920/IMGP1196_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@amybear85 Ever wondered what happened to the dinosaurs? They all dug their own graves when they heard he was coming...#CHUCKNORRIS", "to_user": "amybear85", "to_user_id": 97009077, "to_user_id_str": "97009077", "to_user_name": "amy darling"}, +{"created_at": "Mon, 19 Dec 2011 13:51:53 +0000", "from_user": "RealMattShaf", "from_user_id": 193578554, "from_user_id_str": "193578554", "from_user_name": "Matt", "geo": null, "id": 148762476928958460, "id_str": "148762476928958466", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1644773520/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644773520/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Do extinctions occur from anything other then humans? According to leftist nuts the answer is \"no.\" How bout the dinosaurs? #tcot #nuts", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:51:16 +0000", "from_user": "helloheliotrope", "from_user_id": 216316484, "from_user_id_str": "216316484", "from_user_name": "Santa Monica", "geo": null, "id": 148762325158076400, "id_str": "148762325158076416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1587820989/avsunflower_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587820989/avsunflower_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I have the day off work tomorrow. I am spending it doing art things like painting dinosaurs and editing photos and scrapbooking.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:51:04 +0000", "from_user": "BeforeDinosaurs", "from_user_id": 309255479, "from_user_id_str": "309255479", "from_user_name": "BeforeDinosaurs", "geo": null, "id": 148762274255998980, "id_str": "148762274255998976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1377904396/paleozoic-era-cambrian-pikia-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1377904396/paleozoic-era-cambrian-pikia-2_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Life Before the Dinosaurs blog: Titanichthys. http://t.co/lMKqfvut #latedevonian #placoderm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:50:55 +0000", "from_user": "RealBizMarkie", "from_user_id": 184457104, "from_user_id_str": "184457104", "from_user_name": "Markie", "geo": null, "id": 148762235160903680, "id_str": "148762235160903680", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692211586/mank_jimi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692211586/mank_jimi_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:50:17 +0000", "from_user": "HeyItsUniika", "from_user_id": 174217491, "from_user_id_str": "174217491", "from_user_name": "\\u0455\\u0454\\u2113\\u0454\\u0438\\u03B1 f\\u03B1\\u0438 Forever \\u2714", "geo": null, "id": 148762075232088060, "id_str": "148762075232088064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698266696/tonight_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698266696/tonight_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/dD0A4rKB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:50:15 +0000", "from_user": "creationliberty", "from_user_id": 302078063, "from_user_id_str": "302078063", "from_user_name": "Creation Liberty", "geo": null, "id": 148762066289827840, "id_str": "148762066289827840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1436354916/logo01_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1436354916/logo01_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@GLStreety The #Bible does talk about #Dinosaurs. http://t.co/AsluJx1R", "to_user": "GLStreety", "to_user_id": 88589393, "to_user_id_str": "88589393", "to_user_name": "Lola M Streety ", "in_reply_to_status_id": 147594981052387330, "in_reply_to_status_id_str": "147594981052387328"}, +{"created_at": "Mon, 19 Dec 2011 13:50:06 +0000", "from_user": "austinpstewart", "from_user_id": 273581204, "from_user_id_str": "273581204", "from_user_name": "Austin Stewart", "geo": null, "id": 148762031858782200, "id_str": "148762031858782210", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1620453789/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620453789/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Seriously so glad that dinosaurs are extinct. We would be super screwed if they weren't.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:49:59 +0000", "from_user": "hoola", "from_user_id": 14567006, "from_user_id_str": "14567006", "from_user_name": "laura heaps", "geo": null, "id": 148762000917409800, "id_str": "148762000917409792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1528990894/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1528990894/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "me, talking dinos @ Ted's nursery: 'I saw some people dressed as dinosaurs doing music and dancing' kid: 'yup. That was me.' @TEEDinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:49:39 +0000", "from_user": "jwildeboer", "from_user_id": 16185413, "from_user_id_str": "16185413", "from_user_name": "jwildeboer", "geo": null, "id": 148761917010346000, "id_str": "148761917010345984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1675001927/Jwildeboer-default_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675001927/Jwildeboer-default_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@nfm and the earth is flat, the sun is just a big lamp and dinosaurs never existed? </sarcasm>", "to_user": "nfm", "to_user_id": 14368903, "to_user_id_str": "14368903", "to_user_name": "Nancy Messieh", "in_reply_to_status_id": 148761178909315070, "in_reply_to_status_id_str": "148761178909315072"}, +{"created_at": "Mon, 19 Dec 2011 13:49:18 +0000", "from_user": "creationliberty", "from_user_id": 302078063, "from_user_id_str": "302078063", "from_user_name": "Creation Liberty", "geo": null, "id": 148761830804819970, "id_str": "148761830804819968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1436354916/logo01_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1436354916/logo01_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ImpressFX @MzKristiMiller @neilbris75 The #Bible does talk about #Dinosaurs. http://t.co/AsluJx1R", "to_user": "ImpressFX", "to_user_id": 53294088, "to_user_id_str": "53294088", "to_user_name": "ImpressFX", "in_reply_to_status_id": 148703622581059600, "in_reply_to_status_id_str": "148703622581059584"}, +{"created_at": "Mon, 19 Dec 2011 13:48:27 +0000", "from_user": "TweetNoEvo", "from_user_id": 20596168, "from_user_id_str": "20596168", "from_user_name": "Evo D. Clown", "geo": null, "id": 148761615490228220, "id_str": "148761615490228224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1643174232/profile_image_1321507212105_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643174232/profile_image_1321507212105_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "...that's when I'm not running away from dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:47:05 +0000", "from_user": "westwilli", "from_user_id": 314724892, "from_user_id_str": "314724892", "from_user_name": "Weston Willis", "geo": null, "id": 148761269686640640, "id_str": "148761269686640641", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1390233154/1307730123_genetics_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1390233154/1307730123_genetics_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "The Second International Workshop on the Biology of Sauropod Dinosaurs (part I) - Scientific American (blog)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:45:15 +0000", "from_user": "austinpstewart", "from_user_id": 273581204, "from_user_id_str": "273581204", "from_user_name": "Austin Stewart", "geo": null, "id": 148760810548768770, "id_str": "148760810548768768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1620453789/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620453789/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "SIKE! There's a show about dinosaurs on, my morning just got soooooo much better.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:44:46 +0000", "from_user": "12nosleNttaM", "from_user_id": 259475769, "from_user_id_str": "259475769", "from_user_name": "Matt Nelson", "geo": null, "id": 148760689048162300, "id_str": "148760689048162304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1647655484/pinhead_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647655484/pinhead_normal.png", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "\"Why did all the dinosaurs die out?\" \"Cuz you touch yourself at night.\" #FamilyGuy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:44:16 +0000", "from_user": "morgastevvega", "from_user_id": 338671274, "from_user_id_str": "338671274", "from_user_name": "Morgan Stevens", "geo": null, "id": 148760561289658370, "id_str": "148760561289658368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/MtyOOHTC The Creation and Dinosaurs | http://t.co/oLTEWaGt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:43:17 +0000", "from_user": "Shawnnawio", "from_user_id": 431765447, "from_user_id_str": "431765447", "from_user_name": "Shawnna Mannella", "geo": null, "id": 148760313016238080, "id_str": "148760313016238080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681171315/large_93_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681171315/large_93_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Boneyard Earth.(TIME TRAVELER: IN SEARCH OF DINOSAURS AND OTHER FOSSILS FROM MONTANA TO MONGOLIA ): An article f... http://t.co/tSDAQ0eG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:42:16 +0000", "from_user": "Erictga", "from_user_id": 431683572, "from_user_id_str": "431683572", "from_user_name": "Eric Beinlich", "geo": null, "id": 148760058065461250, "id_str": "148760058065461249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680993073/large_255_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680993073/large_255_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Digging For Dinosaurs [VHS]: Pick up your shovel, grab a brush and help put together a 65 million-year-old puzzl... http://t.co/KH3c8xAu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:41:54 +0000", "from_user": "rroora", "from_user_id": 155839788, "from_user_id_str": "155839788", "from_user_name": "\\u30ED\\u30AA\\u30E9 laura", "geo": null, "id": 148759966633820160, "id_str": "148759966633820161", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700124902/lol_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700124902/lol_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "oh my the Dream Eaters are so cute \\u2665 they're colorful animals; elephants, dinosaurs, cats...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:40:21 +0000", "from_user": "paxxman", "from_user_id": 23853647, "from_user_id_str": "23853647", "from_user_name": "Paul Martin", "geo": null, "id": 148759575204605950, "id_str": "148759575204605952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1292531638/img_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1292531638/img_normal.jpeg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/UT4vYo9Q", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:40:14 +0000", "from_user": "KylahhsAPirate", "from_user_id": 421329240, "from_user_id_str": "421329240", "from_user_name": "Kylah Stone", "geo": null, "id": 148759548822421500, "id_str": "148759548822421506", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701445094/VP73EmrL_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701445094/VP73EmrL_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:40:07 +0000", "from_user": "Elinaqqo", "from_user_id": 440199975, "from_user_id_str": "440199975", "from_user_name": "Elina Witters", "geo": null, "id": 148759516329148400, "id_str": "148759516329148417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700544811/rxpt5045su_120594672_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700544811/rxpt5045su_120594672_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Magnetic Dinosaurs: Move the graceful brontosaurus through the meadow, watch the duck-billed dino roam in the wa... http://t.co/Yad7nGdM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:39:53 +0000", "from_user": "Eunicenke", "from_user_id": 431695127, "from_user_id_str": "431695127", "from_user_name": "Eunice Jess", "geo": null, "id": 148759457680195600, "id_str": "148759457680195584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681020262/uxb1l055qn_123091553-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681020262/uxb1l055qn_123091553-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "El vuelo de la serpiente alada / Flight of the Winged Serpent (Bahia Dinosaurios / Dinosaurs Cove) (Spanish Edition): http://t.co/PVfOXV1M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:39:38 +0000", "from_user": "virgitapir", "from_user_id": 86701362, "from_user_id_str": "86701362", "from_user_name": "virgiawan aditya", "geo": null, "id": 148759397764567040, "id_str": "148759397764567040", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1660750531/virgitapir_1230727915510162100_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660750531/virgitapir_1230727915510162100_normal.jpg", "source": "<a href="http://m.dabr.co.uk" rel="nofollow">Dabr</a>", "text": "Jwawet jwawet jwawet RT @bayuratsetyo: #NowPlaying 16Bit - Dinosaurs. Jwawet Juwawet Juawet Cc: virgitapir", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:38:51 +0000", "from_user": "Typicalgurlshet", "from_user_id": 429071016, "from_user_id_str": "429071016", "from_user_name": "Girl", "geo": null, "id": 148759199373987840, "id_str": "148759199373987842", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677129772/Screen_20111022_224448_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677129772/Screen_20111022_224448_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@comedyortruth hmmm I'm pretty sure that dinosaurs became extinct milllions of years ago!", "to_user": "comedyortruth", "to_user_id": 93167589, "to_user_id_str": "93167589", "to_user_name": "comedyortruth\\u2122", "in_reply_to_status_id": 148742945045086200, "in_reply_to_status_id_str": "148742945045086208"}, +{"created_at": "Mon, 19 Dec 2011 13:38:42 +0000", "from_user": "Kirsten2035", "from_user_id": 101596807, "from_user_id_str": "101596807", "from_user_name": "Kirsten Robertson", "geo": null, "id": 148759163261034500, "id_str": "148759163261034496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683420307/390316_10150451945273630_838473629_8460649_561318014_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683420307/390316_10150451945273630_838473629_8460649_561318014_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "some stupid year 7s pretending to be dinosaurs #areyouserious", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:37:23 +0000", "from_user": "Ang42", "from_user_id": 17677236, "from_user_id_str": "17677236", "from_user_name": "Angela Broomberg", "geo": null, "id": 148758828815622140, "id_str": "148758828815622144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680335859/IMG00607-20110911-1807.jpg_normal.rem", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680335859/IMG00607-20110911-1807.jpg_normal.rem", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@danielcoleman75.My little cousins are here, and they acting like Dinosaurs.#ifonly they had you here to teach them how a REAL dinosaur acts", "to_user": "danielcoleman75", "to_user_id": 230269009, "to_user_id_str": "230269009", "to_user_name": "Daniel Coleman"}, +{"created_at": "Mon, 19 Dec 2011 13:36:34 +0000", "from_user": "BHallsaysBreal", "from_user_id": 30042956, "from_user_id_str": "30042956", "from_user_name": "B. Hall", "geo": null, "id": 148758625194745860, "id_str": "148758625194745857", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695962126/304_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695962126/304_1_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "I dreamt of dinosaurs and our city being demolished O_o", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:36:27 +0000", "from_user": "bayuratsetyo", "from_user_id": 36082840, "from_user_id_str": "36082840", "from_user_name": "Bayu Ratsetyo Putro", "geo": null, "id": 148758595008335870, "id_str": "148758595008335872", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691668145/Untitled-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691668145/Untitled-2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "#NowPlaying 16Bit - Dinosaurs. Jwawet Juwawet Juawet Cc: @virgitapir", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:36:15 +0000", "from_user": "_HelloKittayx3", "from_user_id": 40547376, "from_user_id_str": "40547376", "from_user_name": "`\\u2764", "geo": null, "id": 148758543141580800, "id_str": "148758543141580800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697750761/376021_307398272615905_100000372043283_1024730_1901787495_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697750761/376021_307398272615905_100000372043283_1024730_1901787495_n_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "This girl got her dinosaurs out, its too cold for all that. She need to hide them critters.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:35:00 +0000", "from_user": "itssamanduhh", "from_user_id": 188074790, "from_user_id_str": "188074790", "from_user_name": "Amanda Ryan", "geo": null, "id": 148758230150025200, "id_str": "148758230150025217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700698518/imagejpeg_2_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700698518/imagejpeg_2_1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @PrincessVane_: Kiss me if i'm wrong, but Dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:33:31 +0000", "from_user": "ter6an", "from_user_id": 324634342, "from_user_id_str": "324634342", "from_user_name": "Teran Barnitz", "geo": null, "id": 148757855258935300, "id_str": "148757855258935296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687136150/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687136150/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#IWasThatKid who was obsessed with dinosaurs and WWE wrestling. #crazylilkid", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:33:18 +0000", "from_user": "510bryan", "from_user_id": 244158483, "from_user_id_str": "244158483", "from_user_name": "Bryan Baer", "geo": null, "id": 148757801974505470, "id_str": "148757801974505472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1614510545/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1614510545/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I like to steal plastic baby Jesus's and replace them with small plastic dinosaurs to fuck with ppl that say evolution never happened", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:32:30 +0000", "from_user": "GypsyDesert", "from_user_id": 63366408, "from_user_id_str": "63366408", "from_user_name": "GypsyDesert", "geo": null, "id": 148757601864253440, "id_str": "148757601864253440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1673262467/ghashghai-qashqay-qashqai-tribe-weaving-5-250_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673262467/ghashghai-qashqay-qashqai-tribe-weaving-5-250_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@MotherJones:D time Gingrich debated a famed paleontologist on D feeding habits of DT-Rex, using puppets: http://t.co/5sC3oVAU #DailyNewt\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:31:47 +0000", "from_user": "AdenGardnShake", "from_user_id": 339079132, "from_user_id_str": "339079132", "from_user_name": "Aden Gardner", "geo": null, "id": 148757419835670530, "id_str": "148757419835670528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/1pFSFR98 The Second International Workshop on the Biology of Sauropod Dinosaurs (part I) - Scientific American (blog)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:31:29 +0000", "from_user": "TerenceBaddest", "from_user_id": 185459579, "from_user_id_str": "185459579", "from_user_name": "Terence Tiglao", "geo": null, "id": 148757343851659260, "id_str": "148757343851659265", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1671488543/Freeze_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671488543/Freeze_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@kaffykaffykaffy yeah I will but when dinosaurs live again", "to_user": "kaffykaffykaffy", "to_user_id": 251835421, "to_user_id_str": "251835421", "to_user_name": "Kathy D. Truong", "in_reply_to_status_id": 148754785259106300, "in_reply_to_status_id_str": "148754785259106304"}, +{"created_at": "Mon, 19 Dec 2011 13:30:47 +0000", "from_user": "HotStockCafe", "from_user_id": 217580886, "from_user_id_str": "217580886", "from_user_name": "Penny HotStocks", "geo": null, "id": 148757167141425150, "id_str": "148757167141425156", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1171074806/hsc_logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1171074806/hsc_logo_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "$NGMC \\u2013 Since the Dinosaurs are gone... Next Generation Energy Corp.\\u2019s asset life for producing natural gas wells may be decades long.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 13:30:46 +0000", "from_user": "JayBugster", "from_user_id": 170804666, "from_user_id_str": "170804666", "from_user_name": "Jay Bugster", "geo": null, "id": 148757165623087100, "id_str": "148757165623087104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "$NGMC \\u2013 Since the Dinosaurs are gone... Next Generation Energy Corp.\\u2019s asset life for producing natural gas wells may be decades long.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:30:46 +0000", "from_user": "PennystockEmpor", "from_user_id": 334114733, "from_user_id_str": "334114733", "from_user_name": "PennystockEmporium", "geo": null, "id": 148757163861487600, "id_str": "148757163861487618", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1438723359/favicon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1438723359/favicon_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "$NGMC \\u2013 Since the Dinosaurs are gone... Next Generation Energy Corp.\\u2019s asset life for producing natural gas wells may be decades long.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:30:45 +0000", "from_user": "Penny_Hotstocks", "from_user_id": 196136720, "from_user_id_str": "196136720", "from_user_name": "Penny Hotstocks", "geo": null, "id": 148757161688842240, "id_str": "148757161688842240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1150088359/vmac2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1150088359/vmac2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "$NGMC \\u2013 Since the Dinosaurs are gone... Next Generation Energy Corp.\\u2019s asset life for producing natural gas wells may be decades long.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:30:45 +0000", "from_user": "DaddyHotStocks", "from_user_id": 217658468, "from_user_id_str": "217658468", "from_user_name": "Carl", "geo": null, "id": 148757159751061500, "id_str": "148757159751061505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1187987835/mcp_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1187987835/mcp_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "$NGMC \\u2013 Since the Dinosaurs are gone... Next Generation Energy Corp.\\u2019s asset life for producing natural gas wells may be decades long.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:30:44 +0000", "from_user": "PlanetPennyS", "from_user_id": 358560851, "from_user_id_str": "358560851", "from_user_name": "PlanetPennyStocks", "geo": null, "id": 148757158106902530, "id_str": "148757158106902528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1504445847/Planet_Penny_Stocks_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1504445847/Planet_Penny_Stocks_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "$NGMC \\u2013 Since the Dinosaurs are gone... Next Generation Energy Corp.\\u2019s asset life for producing natural gas wells may be decades long.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:30:43 +0000", "from_user": "Virmmac", "from_user_id": 122376894, "from_user_id_str": "122376894", "from_user_name": "D Graef", "geo": null, "id": 148757151597334530, "id_str": "148757151597334528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1132117148/V_new_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1132117148/V_new_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "$NGMC \\u2013 Since the Dinosaurs are gone... Next Generation Energy Corp.\\u2019s asset life for producing natural gas wells may be decades long.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:30:35 +0000", "from_user": "rosesharman", "from_user_id": 67364066, "from_user_id_str": "67364066", "from_user_name": "RoseSharman_cb\\u2665", "geo": null, "id": 148757118915317760, "id_str": "148757118915317760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1582067921/Snapshot_20120326_235_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1582067921/Snapshot_20120326_235_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"So that man could fight the dinosaurs and the homosexuals\" #meangirls", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:30:31 +0000", "from_user": "LewisEbsworth", "from_user_id": 348800405, "from_user_id_str": "348800405", "from_user_name": "Lewis Ebsworth", "geo": null, "id": 148757099764125700, "id_str": "148757099764125697", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1509971837/7Month_Anniversary__8__normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509971837/7Month_Anniversary__8__normal.JPG", "source": "Pocket Dinosaurs 2", "text": "@kongiphone Pocket Dinosaurs 2 is Insanely Addictive! http://t.co/jo5wuMMy", "to_user": "kongiphone", "to_user_id": 142926929, "to_user_id_str": "142926929", "to_user_name": "KongZhong Corp"}, +{"created_at": "Mon, 19 Dec 2011 13:29:19 +0000", "from_user": "leecohnelly", "from_user_id": 322555676, "from_user_id_str": "322555676", "from_user_name": "lee Cohnelly", "geo": null, "id": 148756798684409860, "id_str": "148756798684409857", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1646589304/IMG03543-20111118-1308_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646589304/IMG03543-20111118-1308_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @Vuyo_Himself: Global Warming!! Who cares if my Grand kids won' t see a Polar bear??? I didn' t see Dinosaurs either !! Grow up", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:26:49 +0000", "from_user": "GkbrkB", "from_user_id": 305631468, "from_user_id_str": "305631468", "from_user_name": "g\\u00F6kberk bakkalo\\u011Flu", "geo": null, "id": 148756168737685500, "id_str": "148756168737685504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1369822249/228317_1781464448686_1001689671_31630036_896614_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1369822249/228317_1781464448686_1001689671_31630036_896614_n_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "\\u0130f the dinosaurs can all disappear,so can we :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:26:30 +0000", "from_user": "_onelastmoment", "from_user_id": 205704467, "from_user_id_str": "205704467", "from_user_name": "Nameera Ashley", "geo": null, "id": 148756091252125700, "id_str": "148756091252125696", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695270101/Stereo_hearts._normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695270101/Stereo_hearts._normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @AtiqahAdeenan: Are dinosaurs real?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:25:42 +0000", "from_user": "AkselNuredin", "from_user_id": 120513169, "from_user_id_str": "120513169", "from_user_name": "\\u0623\\u0643\\u0633\\u0644 \\u0627\\u0628\\u0646 \\u0627\\u0645\\u064A\\u0646", "geo": null, "id": 148755888876949500, "id_str": "148755888876949504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1311201762/aki_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1311201762/aki_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@huseinmusli @BBLiman Play Cadillacs and Dinosaurs online for Free - http://t.co/65Iyl0uI: http://t.co/FwJ4oSTf =)hatirlaysiniz?", "to_user": "huseinmusli", "to_user_id": 256082692, "to_user_id_str": "256082692", "to_user_name": "Hussein Musli"}, +{"created_at": "Mon, 19 Dec 2011 13:25:31 +0000", "from_user": "danikalhoye", "from_user_id": 218886475, "from_user_id_str": "218886475", "from_user_name": "Danika Hoye", "geo": null, "id": 148755842022375420, "id_str": "148755842022375424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1202036016/111_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1202036016/111_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "They Shoot Dinosaurs Don't They [VHS]: http://t.co/JF2yiBzl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:25:29 +0000", "from_user": "suzanneisimoll", "from_user_id": 218840938, "from_user_id_str": "218840938", "from_user_name": "Suzanne Moll", "geo": null, "id": 148755834472632320, "id_str": "148755834472632321", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1201510244/2e518146-7f00-0001-19c4-5413edb433f1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1201510244/2e518146-7f00-0001-19c4-5413edb433f1_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "They Shoot Dinosaurs Don't They [VHS]: http://t.co/QnkhMuPp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:24:56 +0000", "from_user": "AtiqahAdeenan", "from_user_id": 371062555, "from_user_id_str": "371062555", "from_user_name": "nuratiqah", "geo": null, "id": 148755695901229060, "id_str": "148755695901229056", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702110639/kp1z7IyV_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702110639/kp1z7IyV_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Are dinosaurs real?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:24:44 +0000", "from_user": "pavbariana", "from_user_id": 163574151, "from_user_id_str": "163574151", "from_user_name": "PKB", "geo": null, "id": 148755646517485570, "id_str": "148755646517485568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1631081845/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631081845/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Turkey dinosaurs oh yeahhhhh!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:24:03 +0000", "from_user": "kellygangstaaa", "from_user_id": 54260745, "from_user_id_str": "54260745", "from_user_name": "kelly strange", "geo": null, "id": 148755472764252160, "id_str": "148755472764252160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697038542/Snapshot_20111210_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697038542/Snapshot_20111210_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "we have no food in the house and the only food we had was turkey dinosaurs and they got burnt cos i was arguing with dad", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:23:15 +0000", "from_user": "Doretheacda", "from_user_id": 431678462, "from_user_id_str": "431678462", "from_user_name": "Shane Lapar", "geo": null, "id": 148755271248916480, "id_str": "148755271248916480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1680986451/dpw5zn55tn_107540912_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680986451/dpw5zn55tn_107540912_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Gnash, Gnaw, Dinosaur!: Future palaeontologists will love discovering the dinosaurs in this fun-filled picture b... http://t.co/Wne37u92", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:22:57 +0000", "from_user": "TicTicThailand", "from_user_id": 437003290, "from_user_id_str": "437003290", "from_user_name": "TicTicThailand", "geo": null, "id": 148755196078592000, "id_str": "148755196078592001", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694874765/067_normal.jpg", "profile_image_url_https": null, "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @CanPOREOTICS: I uploaded a @YouTube video http://t.co/qNhkJztX Totally Enormous Extinct Dinosaurs - Dream On", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:22:23 +0000", "from_user": "Mariasvo", "from_user_id": 426245085, "from_user_id_str": "426245085", "from_user_name": "Maria Megee", "geo": null, "id": 148755054868959230, "id_str": "148755054868959232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668756285/LLCM-3974_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668756285/LLCM-3974_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Weird Dinosaurs Deluxe Laminated Poster: Weird Dinosaurs\\n These are some really strange critters. Although wel... http://t.co/3fDljiHN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:21:03 +0000", "from_user": "dvivast", "from_user_id": 344058379, "from_user_id_str": "344058379", "from_user_name": "Daniela Vivas Toro", "geo": null, "id": 148754720582934530, "id_str": "148754720582934530", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1467510027/munch_2011_07_26_153751_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1467510027/munch_2011_07_26_153751_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:20:59 +0000", "from_user": "robolollycop", "from_user_id": 98627870, "from_user_id_str": "98627870", "from_user_name": "craig stone", "geo": null, "id": 148754702996213760, "id_str": "148754702996213760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1617057618/twitterpic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1617057618/twitterpic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Terrainysaurus Trex - if dinosaurs were public footpaths.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:19:59 +0000", "from_user": "stephennaron", "from_user_id": 143298503, "from_user_id_str": "143298503", "from_user_name": "Stephen Naron ", "geo": null, "id": 148754452415905800, "id_str": "148754452415905792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700084076/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700084076/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "@TXCleaver strangely enough you can't find them anymore. Like dinosaurs they've disappeared. #TitansFans", "to_user": "TXCleaver", "to_user_id": 23242733, "to_user_id_str": "23242733", "to_user_name": "TX Cleaver", "in_reply_to_status_id": 148754000068608000, "in_reply_to_status_id_str": "148754000068608001"}, +{"created_at": "Mon, 19 Dec 2011 13:19:24 +0000", "from_user": "jeope", "from_user_id": 112523436, "from_user_id_str": "112523436", "from_user_name": "Jeope Wolfe", "geo": null, "id": 148754302679269380, "id_str": "148754302679269377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1555533160/ookpik_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555533160/ookpik_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@ianmcc We saw it in the theatre. Made me wish I was a stoner. Liked the dinosaurs, though.", "to_user": "ianmcc", "to_user_id": 6302912, "to_user_id_str": "6302912", "to_user_name": "Ian McCausland", "in_reply_to_status_id": 148640480157110270, "in_reply_to_status_id_str": "148640480157110272"}, +{"created_at": "Mon, 19 Dec 2011 13:19:17 +0000", "from_user": "ChrisAllmey", "from_user_id": 332319927, "from_user_id_str": "332319927", "from_user_name": "Chris Allmey", "geo": +{"coordinates": [50.821,-0.1355], "type": "Point"}, "id": 148754274262847500, "id_str": "148754274262847488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693182277/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693182277/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@IamEnidColeslaw: Kirk Cameron just told me that dinosaurs became extinct because they were \"heathens and sodomites.\" (???)\\u201D > did he watch", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:18:30 +0000", "from_user": "ninoriano", "from_user_id": 40005447, "from_user_id_str": "40005447", "from_user_name": "Riano Nino", "geo": null, "id": 148754079743614980, "id_str": "148754079743614976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1550112817/68380_1423550516466_1463847781_30987999_119165_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1550112817/68380_1423550516466_1463847781_30987999_119165_n_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "he directed Gandhi, he cloned Dinosaurs on Jurassic Park, he played Santa Claus, he is Sir Richard Attenborough", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:17:35 +0000", "from_user": "Heartpixa", "from_user_id": 427861061, "from_user_id_str": "427861061", "from_user_name": "Heartpixa", "geo": null, "id": 148753845705646080, "id_str": "148753845705646081", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://ping.fm/" rel="nofollow">Ping.fm</a>", "text": "http://t.co/krU8vdeC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:16:38 +0000", "from_user": "Ayakoiov", "from_user_id": 431719405, "from_user_id_str": "431719405", "from_user_name": "Ayako Navia", "geo": null, "id": 148753609889284100, "id_str": "148753609889284096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681072134/aixzir451u_130497934-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681072134/aixzir451u_130497934-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Caveman Mask with Hair: From a time when dinosaurs roamed the earth! Caveman Mask With Hair includes latex cavem... http://t.co/3sgILjMg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:16:34 +0000", "from_user": "Alejandra95_", "from_user_id": 28470400, "from_user_id_str": "28470400", "from_user_name": "Alejandra", "geo": null, "id": 148753590087983100, "id_str": "148753590087983105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697292185/YgTAX4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697292185/YgTAX4_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:15:54 +0000", "from_user": "ReezyTuffGong", "from_user_id": 84914673, "from_user_id_str": "84914673", "from_user_name": "\\u05E8'\\u05D0\\u05E0\\u05D4", "geo": null, "id": 148753423943217150, "id_str": "148753423943217152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662782459/smoke_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662782459/smoke_normal.jpg", "source": "<a href="http://www.lg.com" rel="nofollow">LG Phone</a>", "text": "Feathers helped dinosaurs make it to the top of the food chain? .. whaaat.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:15:04 +0000", "from_user": "MeeuRotaru", "from_user_id": 30107910, "from_user_id_str": "30107910", "from_user_name": "Meeu Rotaru", "geo": null, "id": 148753215624724480, "id_str": "148753215624724481", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1606611618/Orosi_-_Wendy3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606611618/Orosi_-_Wendy3_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "Dinosaurs' claws lead to new theory on how some overcame prey\\u00A0http://t.co/etmTtNyq\\u00A0Via @EvolutionReview #paleontology\\u00A0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:14:40 +0000", "from_user": "animal", "from_user_id": 930881, "from_user_id_str": "930881", "from_user_name": "Recruiting Animal", "geo": null, "id": 148753111710842880, "id_str": "148753111710842880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/271025035/Animal_Avatar_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/271025035/Animal_Avatar_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Warnex is famous 4 getting DNA from dinosaurs and lost tribes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:14:28 +0000", "from_user": "ReezyTuffGong", "from_user_id": 84914673, "from_user_id_str": "84914673", "from_user_name": "\\u05E8'\\u05D0\\u05E0\\u05D4", "geo": null, "id": 148753063711219700, "id_str": "148753063711219712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662782459/smoke_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662782459/smoke_normal.jpg", "source": "<a href="http://www.lg.com" rel="nofollow">LG Phone</a>", "text": "I didn't know there were feathered dinosaurs..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:13:01 +0000", "from_user": "imagine_me15", "from_user_id": 277303693, "from_user_id_str": "277303693", "from_user_name": "D'Ambra Kruger", "geo": null, "id": 148752696235659260, "id_str": "148752696235659264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1665295674/oops_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665295674/oops_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:12:20 +0000", "from_user": "cantsiaweiner", "from_user_id": 430706095, "from_user_id_str": "430706095", "from_user_name": "Cantsia Weiner", "geo": null, "id": 148752527066796030, "id_str": "148752527066796032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691748167/sf-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691748167/sf-1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @griffinballs: \"Young Why did all the dinosaurs die out?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:12:12 +0000", "from_user": "alyssamaree92", "from_user_id": 137143923, "from_user_id_str": "137143923", "from_user_name": "Alyssa Maree", "geo": null, "id": 148752494036656130, "id_str": "148752494036656128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657879752/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657879752/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#randomthoughts imagine dinosaurs did exist.. Now imagine rocking up to formal in your ferrari-saurous-rex! Haha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:11:08 +0000", "from_user": "griffinballs", "from_user_id": 428527123, "from_user_id_str": "428527123", "from_user_name": "Peter Griffin", "geo": null, "id": 148752222862319600, "id_str": "148752222862319616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674032846/griffinchin_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674032846/griffinchin_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"Young Why did all the dinosaurs die out?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:09:04 +0000", "from_user": "Eusebiabox", "from_user_id": 431701373, "from_user_id_str": "431701373", "from_user_name": "Eusebia Hyche", "geo": null, "id": 148751704161136640, "id_str": "148751704161136641", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681032060/cyxaa4v1t3_131623720-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681032060/cyxaa4v1t3_131623720-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dinosaurs at the Ends of the Earth: A mystery, vistas, camels, a sandstorm, and dinosaurs...what more could a yo... http://t.co/bFFiItfQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:07:04 +0000", "from_user": "jimmyward_", "from_user_id": 21005057, "from_user_id_str": "21005057", "from_user_name": "Jimmy Ward", "geo": null, "id": 148751197636018180, "id_str": "148751197636018177", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1599406234/906c32cf-0cd0-477d-be01-cc8bc6abf763_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599406234/906c32cf-0cd0-477d-be01-cc8bc6abf763_normal.png", "source": "<a href="http://www.apple.com" rel="nofollow">Photos on iOS</a>", "text": "Anna's first trip to London. First stop - dinosaurs! Hamleys next... http://t.co/LoUmYnk0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:05:26 +0000", "from_user": "austinhenry17", "from_user_id": 305828630, "from_user_id_str": "305828630", "from_user_name": "Austin Ogden", "geo": null, "id": 148750787403722750, "id_str": "148750787403722752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1571242845/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1571242845/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Learning about Dinosaurs! #APbiotweet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:05:03 +0000", "from_user": "Edubeat", "from_user_id": 49025026, "from_user_id_str": "49025026", "from_user_name": "EDUBEAT", "geo": null, "id": 148750692763435000, "id_str": "148750692763435008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702346828/17a8f0e2a6b09d15ef80c4bcdf1c78341_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702346828/17a8f0e2a6b09d15ef80c4bcdf1c78341_normal.jpg", "source": "<a href="http://www.visibli.com" rel="nofollow">Visibli</a>", "text": "Videos - Dinosaurs Through History and Walking With Dinosaurs: This morning's CBS News Sunday Morning Almanac wa... http://t.co/0owoFGDV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:04:58 +0000", "from_user": "ValterGouveia", "from_user_id": 26487442, "from_user_id_str": "26487442", "from_user_name": "Valter Gouveia", "geo": null, "id": 148750673058611200, "id_str": "148750673058611201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1459304927/tw_10892243_1311562909_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1459304927/tw_10892243_1311562909_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#eLearning Videos - Dinosaurs Through History and Walking With Dinosaurs: This morning's CBS News Sunday Morning... http://t.co/ffgcfE36", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:04:58 +0000", "from_user": "dmoerland", "from_user_id": 79795057, "from_user_id_str": "79795057", "from_user_name": "Dr. Deborah Moerland", "geo": null, "id": 148750672064561150, "id_str": "148750672064561153", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1250662245/PuppiesnMe_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1250662245/PuppiesnMe_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Videos - Dinosaurs Through History and Walking With Dinosaurs: This morning's CBS News Sunday Morning Almanac wa... http://t.co/j8N1WJMf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:04:57 +0000", "from_user": "kevcreutz", "from_user_id": 52068247, "from_user_id_str": "52068247", "from_user_name": "Kevin Creutz", "geo": null, "id": 148750668390346750, "id_str": "148750668390346752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1495907714/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1495907714/image_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Videos - Dinosaurs Through History and Walking With Dinosaurs http://t.co/QxQwF6xl via @rmbyrne #edtech", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:04:57 +0000", "from_user": "fredsheadfeeds", "from_user_id": 96795017, "from_user_id_str": "96795017", "from_user_name": "Fred's Head Feeds", "geo": null, "id": 148750666494517250, "id_str": "148750666494517248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Tech for Teachers: Videos - Dinosaurs Through History and Walking With Dinosaurs: This morning's CBS News Sunday... http://t.co/s37M6pvM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:04:54 +0000", "from_user": "gwidianto", "from_user_id": 13630852, "from_user_id_str": "13630852", "from_user_name": "gwidianto", "geo": null, "id": 148750655425757200, "id_str": "148750655425757184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/59369729/GW_PasFoto_03_E_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/59369729/GW_PasFoto_03_E_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Videos - Dinosaurs Through History and Walking With Dinosaurs: This morning's CBS News Sunday Morning Almanac wa... http://t.co/ZoD5nqmX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:02:52 +0000", "from_user": "Littleauty86", "from_user_id": 28543397, "from_user_id_str": "28543397", "from_user_name": "Michelle Auty", "geo": null, "id": 148750142449782800, "id_str": "148750142449782785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/883529579/24690_1352228962077_1121975195_1083679_3045771_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/883529579/24690_1352228962077_1121975195_1083679_3045771_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "A bowl of turkey dinosaurs covered in ketchup. Bon appetite.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:02:19 +0000", "from_user": "ClayModen", "from_user_id": 59081465, "from_user_id_str": "59081465", "from_user_name": "Clay Moden", "geo": null, "id": 148750004381687800, "id_str": "148750004381687808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1678878706/cm1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678878706/cm1_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "We couldn't find a single listener to name 5 dinosaurs in 20 seconds!!!! Crazy right???", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:01:48 +0000", "from_user": "D_alelsheikh", "from_user_id": 322541272, "from_user_id_str": "322541272", "from_user_name": "\\u062F\\u0627\\u0646\\u064A\\u0627 \\u0622\\u0644 \\u0627\\u0644\\u0634\\u064A\\u062E", "geo": null, "id": 148749873456492540, "id_str": "148749873456492544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1683304642/331171345_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683304642/331171345_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:00:09 +0000", "from_user": "aboleyn", "from_user_id": 16074587, "from_user_id_str": "16074587", "from_user_name": "aboleyn", "geo": null, "id": 148749460137189380, "id_str": "148749460137189376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696392694/charlieBrownTree_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696392694/charlieBrownTree_1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "If on the finale of #TerraNove they harness and ride dinosaurs to attack those coming through the portal it will still suck.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:59:42 +0000", "from_user": "AssJustRight", "from_user_id": 220090704, "from_user_id_str": "220090704", "from_user_name": "Angaleen Rivera", "geo": null, "id": 148749347918594050, "id_str": "148749347918594048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1645158602/kApbl3KC_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645158602/kApbl3KC_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:59:28 +0000", "from_user": "wellbarreto10", "from_user_id": 285934244, "from_user_id_str": "285934244", "from_user_name": "Wellington Barreto", "geo": null, "id": 148749286740475900, "id_str": "148749286740475904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1520557003/DSC01320_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1520557003/DSC01320_normal.JPG", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/9piMLntT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:58:20 +0000", "from_user": "lenkvfbma5", "from_user_id": 389494039, "from_user_id_str": "389494039", "from_user_name": "Lenk Nixon", "geo": null, "id": 148749003494932480, "id_str": "148749003494932480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1584880512/imagesCAB6EUV0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584880512/imagesCAB6EUV0_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "jeremymacfadyen bigpapabdc Dinosaurs aren't on this map because humans arrived on east coast 1st thehrsb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:58:03 +0000", "from_user": "___step", "from_user_id": 204193450, "from_user_id_str": "204193450", "from_user_name": "Roseanna Ziggy Lane", "geo": null, "id": 148748933127094270, "id_str": "148748933127094272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1618456551/roseannasonny_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618456551/roseannasonny_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "i just woke up from a nightmare.. about dinosaurs. i'm 5.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:57:33 +0000", "from_user": "DNLee5", "from_user_id": 174847568, "from_user_id_str": "174847568", "from_user_name": "DNLee", "geo": null, "id": 148748804177403900, "id_str": "148748804177403904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1100792393/_MG_8174_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1100792393/_MG_8174_normal.jpg", "source": "<a href="http://www.networkedblogs.com/" rel="nofollow">NetworkedBlogs</a>", "text": "The Second International Workshop on the Biology of Sauropod Dinosaurs (part I) http://t.co/5XLJd7jH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:57:18 +0000", "from_user": "Garsha97", "from_user_id": 335766381, "from_user_id_str": "335766381", "from_user_name": "Lakeisha Kelkar", "geo": null, "id": 148748743070584830, "id_str": "148748743070584832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687030263/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687030263/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:56:52 +0000", "from_user": "monalisa_lgp", "from_user_id": 109057658, "from_user_id_str": "109057658", "from_user_name": "Diana", "geo": null, "id": 148748632290627600, "id_str": "148748632290627584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1600553301/a75f8812-b8d4-4784-af38-68d3409a8dfa_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600553301/a75f8812-b8d4-4784-af38-68d3409a8dfa_normal.png", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "What if dinosaurs were alive today? http://t.co/5dtTlMqH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:56:51 +0000", "from_user": "Pete_Stead", "from_user_id": 212743450, "from_user_id_str": "212743450", "from_user_name": "Pete", "geo": null, "id": 148748630881341440, "id_str": "148748630881341440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1170288192/DSCN1472_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1170288192/DSCN1472_normal.JPG", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "@fstead @Rybel67 its basically star trek with dinosaurs", "to_user": "fstead", "to_user_id": 19713709, "to_user_id_str": "19713709", "to_user_name": "Frank Stead", "in_reply_to_status_id": 148748389411065860, "in_reply_to_status_id_str": "148748389411065856"}, +{"created_at": "Mon, 19 Dec 2011 12:56:51 +0000", "from_user": "THEdavelentz", "from_user_id": 91146600, "from_user_id_str": "91146600", "from_user_name": "David Lentz", "geo": null, "id": 148748630776492030, "id_str": "148748630776492032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/534278127/dave_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/534278127/dave_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/tnitgl5o", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:56:39 +0000", "from_user": "GigaTools", "from_user_id": 65345619, "from_user_id_str": "65345619", "from_user_name": "GigaTools", "geo": null, "id": 148748577739509760, "id_str": "148748577739509760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/746396343/GT_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/746396343/GT_normal.png", "source": "<a href="http://www.gigatools.com" rel="nofollow">GigaTools</a>", "text": "Totally Enormous Extinct Dinosaurs is playing @ #Emmaboda Festival / #Rasslebygd Sweden, Thu 26 Jul 2012 http://t.co/nfz3YuSD #gigs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:53:33 +0000", "from_user": "JujuLoves1D", "from_user_id": 282310455, "from_user_id_str": "282310455", "from_user_name": "Juliette Styles", "geo": null, "id": 148747798681108480, "id_str": "148747798681108481", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1645074530/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645074530/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Natloves1Dxoxo <------ didn't know dinosaurs were real! she thought they were fake! and didn't know why they were in the musem!", "to_user": "Natloves1Dxoxo", "to_user_id": 289191145, "to_user_id_str": "289191145", "to_user_name": "Nat styles"}, +{"created_at": "Mon, 19 Dec 2011 12:51:49 +0000", "from_user": "bowleskjks", "from_user_id": 427118318, "from_user_id_str": "427118318", "from_user_name": "bowles.kjks", "geo": null, "id": 148747363270397950, "id_str": "148747363270397953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Dozen Jumbo Dinosaurs up to 6 inches long http://t.co/2dAjFTEp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:50:14 +0000", "from_user": "JamesOfSuburbia", "from_user_id": 42195756, "from_user_id_str": "42195756", "from_user_name": "East James Nowhere", "geo": null, "id": 148746964761194500, "id_str": "148746964761194496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1671160320/IMG00030_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671160320/IMG00030_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "I hope I don't get scared playing Dino Crisis later. It's not natural for me to be scared of dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:50:06 +0000", "from_user": "JakeNavon", "from_user_id": 182640470, "from_user_id_str": "182640470", "from_user_name": "Jake Navon", "geo": null, "id": 148746929013145600, "id_str": "148746929013145600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1679546181/FacebookHomescreenImage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679546181/FacebookHomescreenImage_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @PrincessVane_: Kiss me if i'm wrong, but Dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:46:00 +0000", "from_user": "ItsAnkolika", "from_user_id": 95182808, "from_user_id_str": "95182808", "from_user_name": "Ank\\u00F8lika\\u265B", "geo": null, "id": 148745896966893570, "id_str": "148745896966893568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702145588/156980_171153319584860_100000705789052_393542_2072268_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702145588/156980_171153319584860_100000705789052_393542_2072268_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @Oliverrr__: Kiss me if I'm wrong, but dinosaurs still exist, right..?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:45:37 +0000", "from_user": "LittleJimmmy", "from_user_id": 76002765, "from_user_id_str": "76002765", "from_user_name": "Rachel McDonnell", "geo": null, "id": 148745802838319100, "id_str": "148745802838319104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695589768/Screen_20111215_195727_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695589768/Screen_20111215_195727_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "I would have dreams about dinosaurs :$ I'm honestly in loooove", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:45:08 +0000", "from_user": "JBiebsLilRocker", "from_user_id": 241427443, "from_user_id_str": "241427443", "from_user_name": "Emma Nagelkerke", "geo": null, "id": 148745680620503040, "id_str": "148745680620503041", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695583225/cute-_reece-_flag_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695583225/cute-_reece-_flag_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @TheeSickestGirl: Parent: \"Well when I was your age...\" Me: STFU WHEN YOU WERE MY AGE, YOU RODE DINOSAURS!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:44:47 +0000", "from_user": "xBieberUK", "from_user_id": 122479581, "from_user_id_str": "122479581", "from_user_name": "bhumiiii (:", "geo": null, "id": 148745591067914240, "id_str": "148745591067914243", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695126562/tumblr_lve017MTKZ1qjbcfco2_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695126562/tumblr_lve017MTKZ1qjbcfco2_500_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @em_biebsy: @xBieberUK roar at eachother like dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:44:01 +0000", "from_user": "em_biebsy", "from_user_id": 280162139, "from_user_id_str": "280162139", "from_user_name": "bieber's elf", "geo": null, "id": 148745397819547650, "id_str": "148745397819547648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1647040342/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647040342/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@xBieberUK roar at eachother like dinosaurs.", "to_user": "xBieberUK", "to_user_id": 122479581, "to_user_id_str": "122479581", "to_user_name": "bhumiiii (:", "in_reply_to_status_id": 148745186002993150, "in_reply_to_status_id_str": "148745186002993152"}, +{"created_at": "Mon, 19 Dec 2011 12:43:19 +0000", "from_user": "vendelinrqiru2", "from_user_id": 366931522, "from_user_id_str": "366931522", "from_user_name": "Vendelin Reed", "geo": null, "id": 148745223130972160, "id_str": "148745223130972160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1525951236/imagesCA3X9Y71_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1525951236/imagesCA3X9Y71_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "jeremymacfadyen bigpapabdc Dinosaurs aren't on this map because humans arrived on east coast 1st theYkOt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:41:50 +0000", "from_user": "JieberFeverLove", "from_user_id": 142001998, "from_user_id_str": "142001998", "from_user_name": "Me", "geo": null, "id": 148744848797736960, "id_str": "148744848797736960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1474636692/a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1474636692/a_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:41:30 +0000", "from_user": "C0ME_AG41N", "from_user_id": 360069630, "from_user_id_str": "360069630", "from_user_name": "LillieeLaye;", "geo": null, "id": 148744768405508100, "id_str": "148744768405508099", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1689612047/_meeee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689612047/_meeee_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "if you dont like turkey dinosaurs we cannot be friends", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:41:14 +0000", "from_user": "ZozKpopCrazy", "from_user_id": 245527290, "from_user_id_str": "245527290", "from_user_name": "Zahra'a", "geo": null, "id": 148744699425980400, "id_str": "148744699425980416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700515034/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700515034/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "During trainee times, Leeteuk got scared of Yuri because she once imitated the sound of dinosaurs.\\nLMAO!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:41:06 +0000", "from_user": "stair71", "from_user_id": 20934315, "from_user_id_str": "20934315", "from_user_name": "Alastair Baker", "geo": null, "id": 148744666043518980, "id_str": "148744666043518976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1121466413/alprof_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1121466413/alprof_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ERN_Malleyscrub: The terror-didactical - a winged beast who lectured all the dinosaurs while flying. This is the real reason dinosaurs died out. #artwiculate", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:41:01 +0000", "from_user": "OhmyLaurd", "from_user_id": 337129711, "from_user_id_str": "337129711", "from_user_name": "Lauren Aguilar", "geo": null, "id": 148744646422577150, "id_str": "148744646422577152", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1458298216/Guitar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1458298216/Guitar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@RoanneAraneta Ga wonder gd ko bala nga-a wala nila gn domesticate ang dinosaurs sa Terra Nova", "to_user": "RoanneAraneta", "to_user_id": 60277863, "to_user_id_str": "60277863", "to_user_name": "Roanne"}, +{"created_at": "Mon, 19 Dec 2011 12:38:45 +0000", "from_user": "DToTheEZ", "from_user_id": 203042016, "from_user_id_str": "203042016", "from_user_name": "Dez", "geo": null, "id": 148744073635827700, "id_str": "148744073635827712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1530233523/ucla1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1530233523/ucla1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#MovieTagLinesYoullNeverSee Jurassic Park: Fucking Dinosaurs!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:38:14 +0000", "from_user": "Jordysmiith", "from_user_id": 256558414, "from_user_id_str": "256558414", "from_user_name": "Jordy Smith", "geo": null, "id": 148743943780184060, "id_str": "148743943780184064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1673465838/sdfsdf_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673465838/sdfsdf_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "documentary on dinosaurs? go on then.. #geekytimes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:38:04 +0000", "from_user": "Kierstenugp", "from_user_id": 430052056, "from_user_id_str": "430052056", "from_user_name": "Kiersten Visconti", "geo": null, "id": 148743901430292480, "id_str": "148743901430292480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677529797/p1mws345bf_109312977-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677529797/p1mws345bf_109312977-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dinosaur World: Mary and her father visit the \"one-of-a-kind\" theme park where dinosaurs rule. They meet a giant... http://t.co/P1I2NLuP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:36:45 +0000", "from_user": "TeensLikeYou_", "from_user_id": 159207822, "from_user_id_str": "159207822", "from_user_name": "Wanjiku(( ;", "geo": null, "id": 148743570340331520, "id_str": "148743570340331520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695380411/388402_255458167849382_100001556030908_758254_301265777_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695380411/388402_255458167849382_100001556030908_758254_301265777_n_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Dinosaurs are all like \"IMA EAT OUT YOUR FUCKING GUTS AND SHIT.\" Turtles are like \"cool story bro,\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:36:36 +0000", "from_user": "CeliaPedroso", "from_user_id": 20505532, "from_user_id_str": "20505532", "from_user_name": "C\\u00E9lia Pedroso", "geo": null, "id": 148743533170409470, "id_str": "148743533170409472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1677621457/ME_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677621457/ME_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "I'm really SAD. Another brilliant journo friend was made redundant. Are journalists the new dinosaurs?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:34:05 +0000", "from_user": "jazz_burns", "from_user_id": 169625042, "from_user_id_str": "169625042", "from_user_name": "Jasmine Burns", "geo": null, "id": 148742900031832060, "id_str": "148742900031832064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1675816307/P011211_17.03_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675816307/P011211_17.03_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:32:55 +0000", "from_user": "Mydinosaurnews", "from_user_id": 73539244, "from_user_id_str": "73539244", "from_user_name": "Dinosaur News", "geo": null, "id": 148742606413766660, "id_str": "148742606413766656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/410489903/logo3_th_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/410489903/logo3_th_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "DINOS-LIVE The Second International Workshop on the Biology of Sauropod Dinosaurs (part I): Diplodocid sauropods... http://t.co/0VPkTmh4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:32:45 +0000", "from_user": "MJSpice", "from_user_id": 19325917, "from_user_id_str": "19325917", "from_user_name": "MJSpice", "geo": null, "id": 148742563615080450, "id_str": "148742563615080449", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1628562750/credit_to_mymjjtribute_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628562750/credit_to_mymjjtribute_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@akai_ringo09 Even more awkward that after finding it, other dinosaurs find you unappetizing. XD #JurassicPark3", "to_user": "akai_ringo09", "to_user_id": 128856102, "to_user_id_str": "128856102", "to_user_name": "Heza", "in_reply_to_status_id": 148738450449903600, "in_reply_to_status_id_str": "148738450449903616"}, +{"created_at": "Mon, 19 Dec 2011 12:31:01 +0000", "from_user": "Bipolar_Issues", "from_user_id": 339369551, "from_user_id_str": "339369551", "from_user_name": "Danira :D", "geo": null, "id": 148742128795783170, "id_str": "148742128795783168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1685356640/Bipolar_Issues_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685356640/Bipolar_Issues_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:27:40 +0000", "from_user": "josephg5", "from_user_id": 147938510, "from_user_id_str": "147938510", "from_user_name": "Joseph George", "geo": null, "id": 148741284138455040, "id_str": "148741284138455040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1089602225/AIbEiAIAAABECPD7-u7in4-20QEiC3ZjYXJkX3Bob3RvKig2ZmQ5YmM4YjczNjdhNmI1MWE1MjhiMjljN2VjNmJkNzk3MjRjYmFmMAG41wWsbg7zXnMDajd2LouM4VzNSA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1089602225/AIbEiAIAAABECPD7-u7in4-20QEiC3ZjYXJkX3Bob3RvKig2ZmQ5YmM4YjczNjdhNmI1MWE1MjhiMjljN2VjNmJkNzk3MjRjYmFmMAG41wWsbg7zXnMDajd2LouM4VzNSA_normal.jpg", "source": "<a href="http://jacobo.tarrio.org/cheepcheep" rel="nofollow">CheepCheep</a>", "text": "We need smaller #gov not #SuperStates, smaller #banks not #TooBig2Fail #dinosaurs, productive & proactive #citizenry not ticking #timebombs!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:27:34 +0000", "from_user": "zilters", "from_user_id": 295713342, "from_user_id_str": "295713342", "from_user_name": "Zilters O'mniscient", "geo": null, "id": 148741259622752260, "id_str": "148741259622752256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1671749827/1298070941529_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671749827/1298070941529_normal.jpg", "source": "<a href="http://favstar.fm" rel="nofollow">Favstar.FM</a>", "text": "RT @IamEnidColeslaw: Kirk Cameron just told me that dinosaurs became extinct because they were \"heathens and sodomites.\" (???)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:27:27 +0000", "from_user": "shasachille", "from_user_id": 220663580, "from_user_id_str": "220663580", "from_user_name": "Shasa Pratiwie", "geo": null, "id": 148741231025991680, "id_str": "148741231025991680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699744738/CIMG1625_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699744738/CIMG1625_normal.JPG", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/083RFwGD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:26:39 +0000", "from_user": "rizardouz", "from_user_id": 118436987, "from_user_id_str": "118436987", "from_user_name": "j.richardvaldeavilla", "geo": null, "id": 148741027962953730, "id_str": "148741027962953728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1427609851/baby_jr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1427609851/baby_jr_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"Giant Humans and Dinosaurs\" http://t.co/uTdgSS3z", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:26:28 +0000", "from_user": "nessie_79", "from_user_id": 211217184, "from_user_id_str": "211217184", "from_user_name": "Vanessa Trickett", "geo": null, "id": 148740982475722750, "id_str": "148740982475722753", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1607636463/296550_278396008860210_100000694387140_878801_1097600980_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607636463/296550_278396008860210_100000694387140_878801_1097600980_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Totally Enormous Extinct Dinosaurs - Household Goods [OFFICIAL VIDEO] http://t.co/E8b2d5Us via @youtube", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:25:54 +0000", "from_user": "BonfireAgency", "from_user_id": 347971454, "from_user_id_str": "347971454", "from_user_name": "Bonfire Agency", "geo": null, "id": 148740841240920060, "id_str": "148740841240920064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1476364755/Picture_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1476364755/Picture_2_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "It's the Season Finale of Terra Nova? Can that be right? I keep meaning to watch that show. #Fox #TV #Dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:25:53 +0000", "from_user": "IQuoteDope_", "from_user_id": 438795933, "from_user_id_str": "438795933", "from_user_name": "LOADING...", "geo": null, "id": 148740836912398340, "id_str": "148740836912398337", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699065406/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699065406/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:24:59 +0000", "from_user": "kmathisss", "from_user_id": 335386356, "from_user_id_str": "335386356", "from_user_name": "kelsey dawn mathis", "geo": null, "id": 148740600986996740, "id_str": "148740600986996738", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1636968184/05DW6UbB_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1636968184/05DW6UbB_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I want one of these cute little dinosaurs as a pet (: http://t.co/Qp2mIafL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:24:54 +0000", "from_user": "Scottbamber", "from_user_id": 179161969, "from_user_id_str": "179161969", "from_user_name": "Scott Bamber", "geo": null, "id": 148740589368770560, "id_str": "148740589368770560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1637048021/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637048021/image_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "RT @blueroombpl: GOONIES NEVER SAY DIE | MAKERS OF VENICE | DINOSAURS ARE SHIT DRAGONS | ESCAPE ARTIST - Live at The Blue Room this Thursday. \\u00A31 8:30pm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:22:20 +0000", "from_user": "Ziltoidia", "from_user_id": 14422798, "from_user_id_str": "14422798", "from_user_name": "Eli [Eh-lee]", "geo": null, "id": 148739943404023800, "id_str": "148739943404023809", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1403238990/203206_869815354_4728421_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1403238990/203206_869815354_4728421_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dvntownsend Did you know that if you speed up 'Dinosaurs' just a little, it sounds like the nuttiest Aqua song ever?! :D Epic.", "to_user": "dvntownsend", "to_user_id": 32202200, "to_user_id_str": "32202200", "to_user_name": "Devin Townsend"}, +{"created_at": "Mon, 19 Dec 2011 12:22:19 +0000", "from_user": "procondog432", "from_user_id": 188594782, "from_user_id_str": "188594782", "from_user_name": "thomas conroy", "geo": null, "id": 148739937020289020, "id_str": "148739937020289024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "How to make paper craft dinosaurs http://t.co/psz4bjpI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:22:03 +0000", "from_user": "beardbot", "from_user_id": 166954536, "from_user_id_str": "166954536", "from_user_name": "Andy Beard", "geo": null, "id": 148739871362650100, "id_str": "148739871362650112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1078965537/beard_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1078965537/beard_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Woke up an hour ago, managed to shave my 2 week beard off but not wash my hair, now at a community meal with a million dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:19:04 +0000", "from_user": "GimmeThaTing", "from_user_id": 19814176, "from_user_id_str": "19814176", "from_user_name": "Gary Bourbage", "geo": null, "id": 148739119768535040, "id_str": "148739119768535041", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1537629458/Gart_20_nerd__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1537629458/Gart_20_nerd__normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Woke up an hour ago, managed to shave my 2 week beard off but not wash my hair, now at a community meal with a million dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:18:32 +0000", "from_user": "chungsham", "from_user_id": 26682918, "from_user_id_str": "26682918", "from_user_name": "Chung Sham", "geo": null, "id": 148738986221903870, "id_str": "148738986221903872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1202153247/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1202153247/me_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Inside the World of Dinosaurs\\u2122: A comprehensive interactive dinosaur encyclopedia with narration by Stephen Fry. http://t.co/Vxnho0f7 #ipad", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:17:41 +0000", "from_user": "ListyaLin", "from_user_id": 110437554, "from_user_id_str": "110437554", "from_user_name": "Listya Lin", "geo": null, "id": 148738774694772740, "id_str": "148738774694772738", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692121040/swath3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692121040/swath3_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I have a backbone like a dinosaurs.. Very ugly aaa.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:16:47 +0000", "from_user": "voicesinyahead", "from_user_id": 61649190, "from_user_id_str": "61649190", "from_user_name": "Voices In Your Head", "geo": null, "id": 148738544465227780, "id_str": "148738544465227776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/340423667/l_3b634827f54ec0650885c31357514f3a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/340423667/l_3b634827f54ec0650885c31357514f3a_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@meganphelps I see. But...dinosaurs are real...right?", "to_user": "meganphelps", "to_user_id": 15920243, "to_user_id_str": "15920243", "to_user_name": "Megan Phelps-Roper"} +, +{"created_at": "Mon, 19 Dec 2011 12:15:28 +0000", "from_user": "ChrissChung", "from_user_id": 398680719, "from_user_id_str": "398680719", "from_user_name": "Christian Chung", "geo": null, "id": 148738215354966000, "id_str": "148738215354966016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1609376900/twitter_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609376900/twitter_pic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#SometimesIWonder if dinosaurs were just a cover up for Pokemon :/ HAHA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:15:06 +0000", "from_user": "alexgc1980", "from_user_id": 422044253, "from_user_id_str": "422044253", "from_user_name": "alessio taranto @ *", "geo": null, "id": 148738123466154000, "id_str": "148738123466153985", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1660802118/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660802118/image_normal.jpg", "source": "<a href="http://www.freeappmagic.com/" rel="nofollow">Free App Magic *</a>", "text": "Ho proprio scoperto Pocket Dinosaurs 2 con Free App Magic nel mio iPhone http://t.co/dQG6M62V", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:14:34 +0000", "from_user": "MEGALOVEMUSIC", "from_user_id": 79030835, "from_user_id_str": "79030835", "from_user_name": "MEGALOVE", "geo": null, "id": 148737986664730620, "id_str": "148737986664730624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1588318657/Cover_Art_800_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1588318657/Cover_Art_800_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Here's some dinosaurs at the last Megalove gig! http://t.co/sHYpswMq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:13:19 +0000", "from_user": "RebeccaMuse20", "from_user_id": 381650026, "from_user_id_str": "381650026", "from_user_name": "Rebecca Yates", "geo": null, "id": 148737673471860740, "id_str": "148737673471860736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1567627372/Snapshot_20110527_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1567627372/Snapshot_20110527_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Photoset: dinosaurs-roaming-the-earth: http://t.co/ke1vE8x3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:10:48 +0000", "from_user": "crazygal_priya", "from_user_id": 200040101, "from_user_id_str": "200040101", "from_user_name": "priya jain", "geo": null, "id": 148737040090017800, "id_str": "148737040090017792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1597666243/273276_100000060648922_765577096_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1597666243/273276_100000060648922_765577096_q_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:10:09 +0000", "from_user": "Timothyxlp", "from_user_id": 359320950, "from_user_id_str": "359320950", "from_user_name": "Timothy Kraham", "geo": null, "id": 148736875073507330, "id_str": "148736875073507328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1506378120/CPLL-2587_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1506378120/CPLL-2587_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "ScooterBees Dinosaurs First Walker (Infant/Toddler), Sunshine (18-24 Months) 6.5 M US Toddler,18-24 Months (6.5 ... http://t.co/UmcvmZhC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:09:14 +0000", "from_user": "Tari_Soulchild", "from_user_id": 404302156, "from_user_id_str": "404302156", "from_user_name": "Tarryn Brony", "geo": null, "id": 148736644990775300, "id_str": "148736644990775296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1620834316/Hot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620834316/Hot_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:08:50 +0000", "from_user": "clockopera", "from_user_id": 22346644, "from_user_id_str": "22346644", "from_user_name": "Clock Opera", "geo": null, "id": 148736544713351170, "id_str": "148736544713351168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/852329339/APOS_250px_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/852329339/APOS_250px_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ESNSnl: Due to studio commitments Totally Enormous Extinct Dinosaurs cancelled their showcase at #ESNS12, but @ClockOpera is added to the bill!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:08:06 +0000", "from_user": "jagan520", "from_user_id": 96737209, "from_user_id_str": "96737209", "from_user_name": "jagannath", "geo": null, "id": 148736361283850240, "id_str": "148736361283850240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1144033300/jagan_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1144033300/jagan_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "JESUS TITTIE CHRIST! Finally, I'm watching MI:4. I'm bad at these dinosaurs' genus. Which one am I?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:06:14 +0000", "from_user": "Aubrey24243366", "from_user_id": 394794257, "from_user_id_str": "394794257", "from_user_name": "kfdssdkfa", "geo": null, "id": 148735893065306100, "id_str": "148735893065306112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1598108090/p2_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598108090/p2_normal.jpeg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "What Really Happened to the Dinosaurs? [VHS]: http://t.co/uZaWiKKB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:05:08 +0000", "from_user": "ixysuleku", "from_user_id": 316963932, "from_user_id_str": "316963932", "from_user_name": "Hiltan Birnbaum", "geo": null, "id": 148735616027340800, "id_str": "148735616027340800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1423379674/1727_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1423379674/1727_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Jumbo Inflatable Dinosaurs ( 6 count) (Toy) http://t.co/qE0C5LvO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:00:30 +0000", "from_user": "MauriceAlmighty", "from_user_id": 164121464, "from_user_id_str": "164121464", "from_user_name": "Big Mo Mo", "geo": null, "id": 148734447708151800, "id_str": "148734447708151808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668802289/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668802289/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @DustinEatsTacos: after today, I'm making myself throw up so I don't have to go to school until break. fuck dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:00:05 +0000", "from_user": "Imogenejdm", "from_user_id": 440177688, "from_user_id_str": "440177688", "from_user_name": "Imogene Boyarsky", "geo": null, "id": 148734343467114500, "id_str": "148734343467114496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700491626/large_EZBESSGLVXTM_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700491626/large_EZBESSGLVXTM_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "S&S Worldwide Dinosaurs Learning Wall\\u00AE: Detailed illustrations are easy to color with crayons, markers or paint.... http://t.co/lYxKNlp4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:59:18 +0000", "from_user": "DustinEatsTacos", "from_user_id": 327811344, "from_user_id_str": "327811344", "from_user_name": "Rodney Awesome", "geo": null, "id": 148734144640319500, "id_str": "148734144640319492", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664662636/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664662636/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "after today, I'm making myself throw up so I don't have to go to school until break. fuck dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:57:32 +0000", "from_user": "aymKatryn", "from_user_id": 410755642, "from_user_id_str": "410755642", "from_user_name": "katryn mondres", "geo": null, "id": 148733701814108160, "id_str": "148733701814108160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1667836067/pp_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667836067/pp_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Kiss me if I'm wrong. but dinosaurs do exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:53:10 +0000", "from_user": "ninovanherpen", "from_user_id": 104891064, "from_user_id_str": "104891064", "from_user_name": "Nino van Herpen", "geo": null, "id": 148732603783057400, "id_str": "148732603783057408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1557756456/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1557756456/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Garden - Totally Enormous Extinct Dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:50:49 +0000", "from_user": "Bebektf", "from_user_id": 431745050, "from_user_id_str": "431745050", "from_user_name": "Bebe Visco", "geo": null, "id": 148732010997882880, "id_str": "148732010997882880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681132295/large_207253_10150542170805648_731350647_18125278_6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681132295/large_207253_10150542170805648_731350647_18125278_6_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Biggies WS-ZAL-50 Wall Stickies-Dinosaurs-50: Delight children of all ages! Transform ordinary walls instantly w... http://t.co/SUpUkr6Y", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:50:18 +0000", "from_user": "VikramBhatnagar", "from_user_id": 30237001, "from_user_id_str": "30237001", "from_user_name": "Vikram Bhatnagar", "geo": null, "id": 148731881033170940, "id_str": "148731881033170944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/626360454/qq32jR8_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/626360454/qq32jR8_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Some people belive that dinosaurs were lies, fed to us only to cover up the existence of Pokemon.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:50:03 +0000", "from_user": "Visitkarte", "from_user_id": 84685398, "from_user_id_str": "84685398", "from_user_name": "Kathrina Maier", "geo": null, "id": 148731819678908400, "id_str": "148731819678908416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1670063534/Visitkarte_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670063534/Visitkarte_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @Stathies: @tracyhepburnfan I know!! Another missed opportunity. Instead we get two hours of dumb dinosaurs! Bah humbug :(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:49:49 +0000", "from_user": "NikitaJanieD", "from_user_id": 436868597, "from_user_id_str": "436868597", "from_user_name": "Nikita Janie Davis", "geo": null, "id": 148731760774086660, "id_str": "148731760774086657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693256973/382587_107511666034064_100003256929844_33126_129168960_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693256973/382587_107511666034064_100003256929844_33126_129168960_n_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/W2v32G6z", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:48:50 +0000", "from_user": "Stathies", "from_user_id": 191567917, "from_user_id_str": "191567917", "from_user_name": "DSM IV", "geo": null, "id": 148731513482133500, "id_str": "148731513482133504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1671264974/wilson_thinks_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671264974/wilson_thinks_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@tracyhepburnfan I know!! Another missed opportunity. Instead we get two hours of dumb dinosaurs! Bah humbug :(", "to_user": "tracyhepburnfan", "to_user_id": 82218170, "to_user_id_str": "82218170", "to_user_name": "filmlover", "in_reply_to_status_id": 148729846254673920, "in_reply_to_status_id_str": "148729846254673920"}, +{"created_at": "Mon, 19 Dec 2011 11:48:07 +0000", "from_user": "glenwith1n", "from_user_id": 37377130, "from_user_id_str": "37377130", "from_user_name": "Glen Mackay", "geo": null, "id": 148731332460167170, "id_str": "148731332460167168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/731110239/Photo_54_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/731110239/Photo_54_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Watching dinosaurs. \"not the mamma\" sooo funny", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:47:34 +0000", "from_user": "melodywesternfa", "from_user_id": 328940907, "from_user_id_str": "328940907", "from_user_name": "Melody Western", "geo": null, "id": 148731192802410500, "id_str": "148731192802410496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1425819383/1309771262_350px-haeckel_drawings_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1425819383/1309771262_350px-haeckel_drawings_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Dinosaurs with killer claws yield new theory about flight - Billings Gazette http://t.co/X96NEt73", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:46:31 +0000", "from_user": "floorcake", "from_user_id": 122395798, "from_user_id_str": "122395798", "from_user_name": "\\u314B\\u314B\\u314Bkhema", "geo": null, "id": 148730930184462340, "id_str": "148730930184462336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1628409931/happy_____applebloom_MLP_icon_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628409931/happy_____applebloom_MLP_icon_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "@inconversant @minakissykissy always more dinosaurs. And fairy lights.", "to_user": "inconversant", "to_user_id": 265325017, "to_user_id_str": "265325017", "to_user_name": "gelignite it", "in_reply_to_status_id": 148730038957781000, "in_reply_to_status_id_str": "148730038957780992"}, +{"created_at": "Mon, 19 Dec 2011 11:46:31 +0000", "from_user": "sabele26", "from_user_id": 14085864, "from_user_id_str": "14085864", "from_user_name": "sabele26", "geo": null, "id": 148730928540303360, "id_str": "148730928540303360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1149041918/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1149041918/image_normal.jpg", "source": "<a href="http://twipple.jp/" rel="nofollow">\\u3064\\u3044\\u3063\\u3077\\u308B for iPad</a>", "text": "@NadaYPuesNada Tree of Life? Didn't get it. I laughed out loud when the dinosaurs showed up!", "to_user": "NadaYPuesNada", "to_user_id": 384912821, "to_user_id_str": "384912821", "to_user_name": "C.", "in_reply_to_status_id": 148721324771123200, "in_reply_to_status_id_str": "148721324771123201"}, +{"created_at": "Mon, 19 Dec 2011 11:46:23 +0000", "from_user": "NewsDetroit", "from_user_id": 104938477, "from_user_id_str": "104938477", "from_user_name": "Detroit News", "geo": null, "id": 148730896646815740, "id_str": "148730896646815744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/768830974/facbeook_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/768830974/facbeook_twitter_normal.png", "source": "<a href="http://fwix.com" rel="nofollow">Fwix</a>", "text": "'Lincoln,' robots, dinosaurs and more - http://t.co/44Zb0Yz1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:45:46 +0000", "from_user": "dominicvatovec", "from_user_id": 324916747, "from_user_id_str": "324916747", "from_user_name": "Dominic Vatovec", "geo": null, "id": 148730741675659260, "id_str": "148730741675659265", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1415486900/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1415486900/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@Montberte ...I like the tweet on dinosaurs useful stuff", "to_user": "Montberte", "to_user_id": 193318094, "to_user_id_str": "193318094", "to_user_name": "Steve Cushing", "in_reply_to_status_id": 148682215558103040, "in_reply_to_status_id_str": "148682215558103040"}, +{"created_at": "Mon, 19 Dec 2011 11:45:11 +0000", "from_user": "fabfabfeb", "from_user_id": 25027040, "from_user_id_str": "25027040", "from_user_name": "Febrina Aryani Li", "geo": null, "id": 148730594812104700, "id_str": "148730594812104704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1666826855/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666826855/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Today raining cats and dogs and crocodiles and dinosaurs -_________-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:45:10 +0000", "from_user": "thezombeetle", "from_user_id": 96499324, "from_user_id_str": "96499324", "from_user_name": "zombeetle", "geo": null, "id": 148730588558405630, "id_str": "148730588558405634", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701852398/zombeetlesmall_copy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701852398/zombeetlesmall_copy_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @inconversant: @minakissykissy needs more dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:44:07 +0000", "from_user": "dothebadthing_", "from_user_id": 56466504, "from_user_id_str": "56466504", "from_user_name": "steph murtagh x", "geo": null, "id": 148730325072228350, "id_str": "148730325072228352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677112925/me_062_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677112925/me_062_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Sex on the beach. Oh wait Fuck its cold. Dinosaurs < lol ok Malcolm.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:43:27 +0000", "from_user": "catmaster436", "from_user_id": 14278899, "from_user_id_str": "14278899", "from_user_name": "catmaster436", "geo": null, "id": 148730158239592450, "id_str": "148730158239592449", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/375515442/62_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/375515442/62_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Photo: sciencecenter: http://t.co/FGH8xJYJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:43:27 +0000", "from_user": "blueroombpl", "from_user_id": 160566664, "from_user_id_str": "160566664", "from_user_name": "the blue room", "geo": null, "id": 148730157799194620, "id_str": "148730157799194625", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1032551359/blueroomwhite_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1032551359/blueroomwhite_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "GOONIES NEVER SAY DIE | MAKERS OF VENICE | DINOSAURS ARE SHIT DRAGONS | ESCAPE ARTIST - Live at The Blue Room this Thursday. \\u00A31 8:30pm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:43:12 +0000", "from_user": "Domiisugarx_D", "from_user_id": 220212424, "from_user_id_str": "220212424", "from_user_name": "Dominique Doughty", "geo": null, "id": 148730094075121660, "id_str": "148730094075121664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1539641091/IMG00315_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1539641091/IMG00315_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @AdmireMyQuote: RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:42:59 +0000", "from_user": "inconversant", "from_user_id": 265325017, "from_user_id_str": "265325017", "from_user_name": "gelignite it", "geo": null, "id": 148730038957781000, "id_str": "148730038957780992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701640225/twitticon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701640225/twitticon_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@minakissykissy needs more dinosaurs", "to_user": "minakissykissy", "to_user_id": 316487899, "to_user_id_str": "316487899", "to_user_name": "Mina Rosenrot", "in_reply_to_status_id": 148729867624661000, "in_reply_to_status_id_str": "148729867624660992"}, +{"created_at": "Mon, 19 Dec 2011 11:42:26 +0000", "from_user": "HollyMayesx", "from_user_id": 155831391, "from_user_id_str": "155831391", "from_user_name": "Holly Mayes", "geo": null, "id": 148729903578230800, "id_str": "148729903578230784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1666610104/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666610104/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@kerrieannewallx I fucking hate turkey dinosaurs !!!!!!!!!!!", "to_user": "kerrieannewallx", "to_user_id": 397163785, "to_user_id_str": "397163785", "to_user_name": "Kerrie Anne Wall"}, +{"created_at": "Mon, 19 Dec 2011 11:40:36 +0000", "from_user": "victoriablogger", "from_user_id": 238484165, "from_user_id_str": "238484165", "from_user_name": "Bill Stenson", "geo": null, "id": 148729442276089860, "id_str": "148729442276089856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1216170451/Bill_for_Bio_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1216170451/Bill_for_Bio_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Second International Workshop on the Biology of Sauropod Dinosaurs (part I) http://t.co/1paZhVyA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:40:00 +0000", "from_user": "Loverickykaka", "from_user_id": 165048369, "from_user_id_str": "165048369", "from_user_name": "\\u2714 Kakazete", "geo": null, "id": 148729289750224900, "id_str": "148729289750224896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1572836677/ajaxam2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572836677/ajaxam2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:39:25 +0000", "from_user": "kerrieannewallx", "from_user_id": 397163785, "from_user_id_str": "397163785", "from_user_name": "Kerrie Anne Wall", "geo": null, "id": 148729141737435140, "id_str": "148729141737435136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701965670/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701965670/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@HollyMayesx come round mine we can play out and drink tea I'll make us turkey dinosaurs xxxxxxxxx", "to_user": "HollyMayesx", "to_user_id": 155831391, "to_user_id_str": "155831391", "to_user_name": "Holly Mayes"}, +{"created_at": "Mon, 19 Dec 2011 11:39:01 +0000", "from_user": "OpalDyewgzvp797", "from_user_id": 410519473, "from_user_id_str": "410519473", "from_user_name": "Opal Dye", "geo": null, "id": 148729042294677500, "id_str": "148729042294677504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1669046452/818378867Ivana_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669046452/818378867Ivana_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I'm a funny girl! has u can see i can take a good laff! i love hugs!!! Also i play the guitar and dinosaurs rule the world!!!! RAWR ( ;", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:36:09 +0000", "from_user": "KylahONeal", "from_user_id": 41703104, "from_user_id_str": "41703104", "from_user_name": "Kylah O'Neal", "geo": null, "id": 148728320295575550, "id_str": "148728320295575552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1667246293/72J9SjwW_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667246293/72J9SjwW_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:35:30 +0000", "from_user": "diaaanaaasaur", "from_user_id": 273894209, "from_user_id_str": "273894209", "from_user_name": "Diana ", "geo": null, "id": 148728156138897400, "id_str": "148728156138897409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1632466761/11-11-fsdgf_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632466761/11-11-fsdgf_normal.gif", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@joiepoppy woots. inspired from my love of dinosaurs.", "to_user": "joiepoppy", "to_user_id": 288106093, "to_user_id_str": "288106093", "to_user_name": "WanLing Soh", "in_reply_to_status_id": 148677021864697860, "in_reply_to_status_id_str": "148677021864697856"}, +{"created_at": "Mon, 19 Dec 2011 11:33:19 +0000", "from_user": "Kiaraichu", "from_user_id": 290897725, "from_user_id_str": "290897725", "from_user_name": "~*~kawaii queen~*~", "geo": null, "id": 148727609361043460, "id_str": "148727609361043456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699837473/Photo_on_2011-12-15_at_15.48_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699837473/Photo_on_2011-12-15_at_15.48_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@JordanTheW0lf my favorite animals are dogs... Do dinosaurs count...?", "to_user": "JordanTheW0lf", "to_user_id": 345752449, "to_user_id_str": "345752449", "to_user_name": "Jordan", "in_reply_to_status_id": 148727138760138750, "in_reply_to_status_id_str": "148727138760138752"}, +{"created_at": "Mon, 19 Dec 2011 11:30:45 +0000", "from_user": "Berrii86", "from_user_id": 275025050, "from_user_id_str": "275025050", "from_user_name": "Abrar Al-D", "geo": null, "id": 148726961768898560, "id_str": "148726961768898561", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700813717/IMG-20111111-02863_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700813717/IMG-20111111-02863_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Fi 5aleeji ba3 '9aab 3ala amreeki eb 4 million dollars gayela hatha noo3 men anwa3 el dinosaurs eli nqarthaw =)) #9aydaa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:30:44 +0000", "from_user": "Madelioo", "from_user_id": 170899555, "from_user_id_str": "170899555", "from_user_name": "Cardel", "geo": null, "id": 148726959139065860, "id_str": "148726959139065856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1598615267/IMG_60099999953_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598615267/IMG_60099999953_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:27:36 +0000", "from_user": "jayk21", "from_user_id": 54913160, "from_user_id_str": "54913160", "from_user_name": "Jake Huneau", "geo": null, "id": 148726166897967100, "id_str": "148726166897967104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1320650134/16455_1071185718889_1803528090_148994_6208689_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1320650134/16455_1071185718889_1803528090_148994_6208689_n_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Dinosaurs scare the shit out of me #theyrarefuckinghuge. #humansallwoulddie", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:27:06 +0000", "from_user": "ScienceEnabled", "from_user_id": 387514741, "from_user_id_str": "387514741", "from_user_name": "Science Enabled", "geo": null, "id": 148726044130689020, "id_str": "148726044130689025", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1579522693/scienceenabled-star_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1579522693/scienceenabled-star_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "The Second International Workshop on the Biology of Sauropod Dinosaurs (part I) http://t.co/1LPNOmIN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:26:53 +0000", "from_user": "Echo_Issa", "from_user_id": 86917841, "from_user_id_str": "86917841", "from_user_name": "Melissa", "geo": null, "id": 148725989185294340, "id_str": "148725989185294336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1533398817/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1533398817/image_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "Wholly monocle! Sophisticated alco drinking dinosaurs in formal clothes flying fighter jets #DinoYatchClub @TotallySketch @SteveGreeneCOM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:26:00 +0000", "from_user": "yoahlee17", "from_user_id": 304199331, "from_user_id_str": "304199331", "from_user_name": "Yoaly ", "geo": null, "id": 148725766400647170, "id_str": "148725766400647168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1672628667/2011-09-23-69411_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672628667/2011-09-23-69411_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @CanPOREOTICS: I uploaded a @YouTube video http://t.co/qNhkJztX Totally Enormous Extinct Dinosaurs - Dream On", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:24:41 +0000", "from_user": "TOMBREAKS", "from_user_id": 17895114, "from_user_id_str": "17895114", "from_user_name": "Tom Kirkby", "geo": null, "id": 148725434325020670, "id_str": "148725434325020673", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1694770073/lacoste-3982_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694770073/lacoste-3982_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@harrybenson I love this shit, dinosaurs are amazing", "to_user": "harrybenson", "to_user_id": 19733201, "to_user_id_str": "19733201", "to_user_name": "Picture House", "in_reply_to_status_id": 148725269404979200, "in_reply_to_status_id_str": "148725269404979200"}, +{"created_at": "Mon, 19 Dec 2011 11:24:12 +0000", "from_user": "Gabriella012563", "from_user_id": 425050884, "from_user_id_str": "425050884", "from_user_name": "Gabriella", "geo": null, "id": 148725311289298940, "id_str": "148725311289298944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1665989013/p18_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665989013/p18_normal.jpeg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dinosaurs: The Encyclopedia (Dinosaurs the Encyclopedia): For the layperson and the paleontologist, this is the ... http://t.co/N8AgB10I", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:23:49 +0000", "from_user": "Tiffany_Kulp", "from_user_id": 234256058, "from_user_id_str": "234256058", "from_user_name": "Tiffany Kulp", "geo": null, "id": 148725215181017100, "id_str": "148725215181017089", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1211702442/tiffanykulpnewFACE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1211702442/tiffanykulpnewFACE_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Second International Workshop on the Biology of Sauropod Dinosaurs (part I): There are some other ideas that are not exactly univ...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:23:27 +0000", "from_user": "TOMBREAKS", "from_user_id": 17895114, "from_user_id_str": "17895114", "from_user_name": "Tom Kirkby", "geo": null, "id": 148725125607460860, "id_str": "148725125607460865", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1694770073/lacoste-3982_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694770073/lacoste-3982_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "Hanging out with some dinosaurs at the natural history museum @ Natural History Museum http://t.co/vp0HwK0e", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:22:44 +0000", "from_user": "BanTshirts", "from_user_id": 16946047, "from_user_id_str": "16946047", "from_user_name": "Ban T-shirts", "geo": null, "id": 148724944795217920, "id_str": "148724944795217920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1368294727/twitter-portrait_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1368294727/twitter-portrait_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "Anti-creationism T-shirt http://t.co/JI3jwUil", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:22:21 +0000", "from_user": "drgeorgemorley", "from_user_id": 216661315, "from_user_id_str": "216661315", "from_user_name": "George Morley", "geo": null, "id": 148724848359776260, "id_str": "148724848359776256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1509555719/IMG00072-20110720-1100_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509555719/IMG00072-20110720-1100_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @oschaplaincy: @SallyHitchiner i was thinking about this... dinosaurs and aliens in Nativity scenes speaks of incarnation reaching through time + space!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:21:44 +0000", "from_user": "Alexa2366", "from_user_id": 364357114, "from_user_id_str": "364357114", "from_user_name": "AlexandraGreen", "geo": null, "id": 148724692163887100, "id_str": "148724692163887104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664365786/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664365786/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "A LITTLE KNOWN FACT: @HarryMandichz CAUSED THE EXTINCTION OF DINOSAURS. ONE #MANLY SHOUT AND THE REST IS HISTORY.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:20:51 +0000", "from_user": "rozakthegoon", "from_user_id": 16145156, "from_user_id_str": "16145156", "from_user_name": "oliver armstrong", "geo": null, "id": 148724469215662080, "id_str": "148724469215662080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1363039761/pic_for_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1363039761/pic_for_twitter_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @oschaplaincy: @SallyHitchiner i was thinking about this... dinosaurs and aliens in Nativity scenes speaks of incarnation reaching through time + space!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:18:54 +0000", "from_user": "Aimi1997", "from_user_id": 115663828, "from_user_id_str": "115663828", "from_user_name": "Nur aimi", "geo": null, "id": 148723978029121540, "id_str": "148723978029121536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1689102310/bunny_wallpaper_1280x1024_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689102310/bunny_wallpaper_1280x1024_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @CanPOREOTICS: I uploaded a @YouTube video http://t.co/qNhkJztX Totally Enormous Extinct Dinosaurs - Dream On", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:18:28 +0000", "from_user": "poreochics", "from_user_id": 257743896, "from_user_id_str": "257743896", "from_user_name": "Leah Zhang", "geo": null, "id": 148723870604595200, "id_str": "148723870604595200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695414391/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695414391/image_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @CanPOREOTICS: I uploaded a @YouTube video http://t.co/qNhkJztX Totally Enormous Extinct Dinosaurs - Dream On", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:17:58 +0000", "from_user": "StephWooWoo", "from_user_id": 140428087, "from_user_id_str": "140428087", "from_user_name": "Mrs S WooWoo", "geo": null, "id": 148723743328444400, "id_str": "148723743328444417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1615255495/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615255495/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Arranging a day at natural history museum as Jude's obsession with dinosaurs is mad!! George from peppa pig! #dinosaur rrraah", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:17:53 +0000", "from_user": "Jenny_Dilts", "from_user_id": 235752318, "from_user_id_str": "235752318", "from_user_name": "Jenny Dilts", "geo": null, "id": 148723723799773200, "id_str": "148723723799773184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1210520514/amber_morrison_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1210520514/amber_morrison_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Second International Workshop on the Biology of Sauropod Dinosaurs (part I): There are some other ideas that are not exactly univ...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:17:36 +0000", "from_user": "joannemottram", "from_user_id": 44009699, "from_user_id_str": "44009699", "from_user_name": "Joanne Mottram \\u2654", "geo": null, "id": 148723652312047600, "id_str": "148723652312047616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1599507574/264656_10150299583746418_507196417_9416766_1070904_n_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599507574/264656_10150299583746418_507196417_9416766_1070904_n_1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"Anyway, Mary's made me dinosaurs, smiley faces and waffles so, INABIT\" haha love the new blog Jee #NiceSwan @JesusChristFTM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:17:26 +0000", "from_user": "SallyHitchiner", "from_user_id": 63672414, "from_user_id_str": "63672414", "from_user_name": "Sally Hitchiner", "geo": null, "id": 148723608833896450, "id_str": "148723608833896448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1279689389/c217b704487b427ab19ed1823201b959_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1279689389/c217b704487b427ab19ed1823201b959_7_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @oschaplaincy: @SallyHitchiner i was thinking about this... dinosaurs and aliens in Nativity scenes speaks of incarnation reaching through time + space!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:17:21 +0000", "from_user": "CDRead", "from_user_id": 87540877, "from_user_id_str": "87540877", "from_user_name": "Catherine Read", "geo": null, "id": 148723590748049400, "id_str": "148723590748049408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1222916225/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1222916225/me_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@jenny_meggs @gomez_josea probably because you were too concerned with the dinosaurs having hay fever Jen!", "to_user": "jenny_meggs", "to_user_id": 245141020, "to_user_id_str": "245141020", "to_user_name": "Jenny Megan Read", "in_reply_to_status_id": 148699830032674800, "in_reply_to_status_id_str": "148699830032674817"}, +{"created_at": "Mon, 19 Dec 2011 11:17:13 +0000", "from_user": "TicTicReunion", "from_user_id": 370144802, "from_user_id_str": "370144802", "from_user_name": "Mrs. Devera \\u2665", "geo": null, "id": 148723556337987600, "id_str": "148723556337987584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683036630/2011-09-17-194508_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683036630/2011-09-17-194508_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @CanPOREOTICS: I uploaded a @YouTube video http://t.co/qNhkJztX Totally Enormous Extinct Dinosaurs - Dream On", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:17:10 +0000", "from_user": "helvindot", "from_user_id": 352777586, "from_user_id_str": "352777586", "from_user_name": "Helvin Toy Reviews", "geo": null, "id": 148723544514240500, "id_str": "148723544514240512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1489180290/FireToy_128x128_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1489180290/FireToy_128x128_normal.png", "source": "<a href="http://www.helvin.net" rel="nofollow">Helvin.net</a>", "text": "Prehistoric Dinosaurs Postcard Invitations 8ct Reviews http://t.co/bJxg2Lvp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:16:57 +0000", "from_user": "CanPOREOTICS", "from_user_id": 159219605, "from_user_id_str": "159219605", "from_user_name": "Can Trong Nguyen", "geo": null, "id": 148723486918049800, "id_str": "148723486918049792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1453113433/Photo_on_2011-07-20_at_16.35_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1453113433/Photo_on_2011-07-20_at_16.35_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I uploaded a @YouTube video http://t.co/qNhkJztX Totally Enormous Extinct Dinosaurs - Dream On", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:15:46 +0000", "from_user": "lucyjanemoore", "from_user_id": 27542764, "from_user_id_str": "27542764", "from_user_name": "Lucy", "geo": null, "id": 148723188929540100, "id_str": "148723188929540096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1225328575/me_glasses_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225328575/me_glasses_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Anxious mother has just been on to say that she's forgotten to order a bird. Turkey dinosaurs for lunch then. #xmas", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:13:57 +0000", "from_user": "conneelysharon", "from_user_id": 220652950, "from_user_id_str": "220652950", "from_user_name": "sharon conneely", "geo": null, "id": 148722733289705470, "id_str": "148722733289705472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686089221/062_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686089221/062_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Watching Harry and his bucket full of dinosaurs.That, and Toy Story,are making me seriously suspicious about my toys.I May hide a camera. .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:13:31 +0000", "from_user": "anthonybrommhea", "from_user_id": 415098008, "from_user_id_str": "415098008", "from_user_name": "anthony brommhead", "geo": null, "id": 148722624460095500, "id_str": "148722624460095488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1665898631/Hydrangeas_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665898631/Hydrangeas_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:13:05 +0000", "from_user": "Phyllisydb", "from_user_id": 431755441, "from_user_id_str": "431755441", "from_user_name": "Phyllis Auge", "geo": null, "id": 148722515282374660, "id_str": "148722515282374656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681147996/hsff5345it_134150760-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681147996/hsff5345it_134150760-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Magic Grow Dinosaurs: Magic Grow Dinosaurs Grows 400% 1 each of Tyrannasaurus, Brontosaurus, Dimetrodon, Triceratops http://t.co/LBDocJkp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:12:41 +0000", "from_user": "TheOneZn", "from_user_id": 432749315, "from_user_id_str": "432749315", "from_user_name": "shaylen johnson ", "geo": null, "id": 148722415680229380, "id_str": "148722415680229376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702338768/m33_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702338768/m33_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Kiss me if I'm wrong but dinosaurs still exist right????#LOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:10:46 +0000", "from_user": "oschaplaincy", "from_user_id": 305079714, "from_user_id_str": "305079714", "from_user_name": "Jonathan Green", "geo": null, "id": 148721931326193660, "id_str": "148721931326193664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1376030496/bluefish_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1376030496/bluefish_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@SallyHitchiner i was thinking about this... dinosaurs and aliens in Nativity scenes speaks of incarnation reaching through time + space!", "to_user": "SallyHitchiner", "to_user_id": 63672414, "to_user_id_str": "63672414", "to_user_name": "Sally Hitchiner"}, +{"created_at": "Mon, 19 Dec 2011 11:10:05 +0000", "from_user": "WeARENYC", "from_user_id": 305041486, "from_user_id_str": "305041486", "from_user_name": "WE R NYC", "geo": null, "id": 148721759519117300, "id_str": "148721759519117312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1368521381/nyc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1368521381/nyc_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Hall of Ornithischian Dinosaurs The Hall of Ornithischian Dinosaurs examines the branches of dinosaurs that possess a backward pointing p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:10:00 +0000", "from_user": "SalsaChoicer", "from_user_id": 121968669, "from_user_id_str": "121968669", "from_user_name": "Salsa Choicer", "geo": null, "id": 148721739214487550, "id_str": "148721739214487552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://google.com" rel="nofollow">SalsaChoicer</a>", "text": "did you know? dinosaurs play with legos recursively", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:09:08 +0000", "from_user": "lainierenee_97", "from_user_id": 308685172, "from_user_id_str": "308685172", "from_user_name": "Lainie(:", "geo": null, "id": 148721522838736900, "id_str": "148721522838736896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694042058/i2F9vD5E_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694042058/i2F9vD5E_normal", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#iwasthatkid that never played with barbie dolls, i played with dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:08:56 +0000", "from_user": "EmileeAdubb", "from_user_id": 369185595, "from_user_id_str": "369185595", "from_user_name": "Just Emilee[:", "geo": null, "id": 148721472372867070, "id_str": "148721472372867072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696199593/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696199593/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@SrishAllStar terra nova is so AMAZAYN! And so was/is Jurassic park <3 even though I'm terrified of dinosaurs...", "to_user": "SrishAllStar", "to_user_id": 58160023, "to_user_id_str": "58160023", "to_user_name": "\\u0455\\u044F\\u03B9\\u0455\\u043D\\u0442\\u03B9 \\u043A\\u043D\\u03B9\\u03B7\\u2202\\u03B1\\u044F\\u03B9\\u03B1 =)", "in_reply_to_status_id": 148720511101313020, "in_reply_to_status_id_str": "148720511101313026"}, +{"created_at": "Mon, 19 Dec 2011 11:08:43 +0000", "from_user": "melomelz", "from_user_id": 49638993, "from_user_id_str": "49638993", "from_user_name": "Melodyyyyyyy", "geo": null, "id": 148721418564145150, "id_str": "148721418564145152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1667074058/Photo_on_2011-11-30_at_19.23__3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667074058/Photo_on_2011-11-30_at_19.23__3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "As Told by Ginger.Hercules.Dinosaurs.Recess.CatDog.All That.Hey Arnold.Amanda Show.Kenan and Kel.Rugrats.Rocket Power.Fresh Prince.#90sShows", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:08:21 +0000", "from_user": "killerartists", "from_user_id": 19109432, "from_user_id_str": "19109432", "from_user_name": "Killer", "geo": null, "id": 148721324062281730, "id_str": "148721324062281729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/71599678/killer_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/71599678/killer_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ESNSnl: Due to studio commitments Totally Enormous Extinct Dinosaurs cancelled their showcase at #ESNS12, but @ClockOpera is added to the bill!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:07:15 +0000", "from_user": "linesacrossmaps", "from_user_id": 150239972, "from_user_id_str": "150239972", "from_user_name": "lines across maps", "geo": null, "id": 148721048018358270, "id_str": "148721048018358272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1189682125/twitter_ipc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1189682125/twitter_ipc_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube video http://t.co/JPnXn5Oc Dinosaurs by Colour Drum Cover by Karinadrums", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:06:24 +0000", "from_user": "Genkizombie", "from_user_id": 158232676, "from_user_id_str": "158232676", "from_user_name": "Airabanana", "geo": null, "id": 148720834196934660, "id_str": "148720834196934656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1012952848/gg_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1012952848/gg_normal.png", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/33pNp9xF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:06:15 +0000", "from_user": "justbiglee", "from_user_id": 19438147, "from_user_id_str": "19438147", "from_user_name": "Lee Williams", "geo": null, "id": 148720795726782460, "id_str": "148720795726782464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1637042891/cpt-price_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637042891/cpt-price_normal", "source": "<a href="http://www.WindowsPhone.com/" rel="nofollow">WindowsLive</a>", "text": "@weefz its the promise of bad cgi dinosaurs that keep me going I think.", "to_user": "weefz", "to_user_id": 8358972, "to_user_id_str": "8358972", "to_user_name": "Debbie Timmins", "in_reply_to_status_id": 148547367296188400, "in_reply_to_status_id_str": "148547367296188416"}, +{"created_at": "Mon, 19 Dec 2011 11:05:34 +0000", "from_user": "_nymph0", "from_user_id": 35443169, "from_user_id_str": "35443169", "from_user_name": "Carlton Banks", "geo": null, "id": 148720625358344200, "id_str": "148720625358344193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1685278093/IMG-20111210-00728_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685278093/IMG-20111210-00728_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "the crazy squirrel thing in ice age 3 that lives with the dinosaurs aw crazy littler fuuuuucker", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:05:07 +0000", "from_user": "keitheadams", "from_user_id": 193252755, "from_user_id_str": "193252755", "from_user_name": "Keith Adams", "geo": null, "id": 148720511248117760, "id_str": "148720511248117761", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1632321467/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632321467/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Dinosaurs science or science fiction. There are some idiots out there. You couldn't make this up but they did! http://t.co/wXd8w1mN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:04:42 +0000", "from_user": "mr_clark", "from_user_id": 22554938, "from_user_id_str": "22554938", "from_user_name": "Matthew Clark", "geo": null, "id": 148720406679912450, "id_str": "148720406679912448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1242543554/6734_244857120493_731925493_8404315_7696615_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1242543554/6734_244857120493_731925493_8404315_7696615_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @BBCPolarBears: Of course, ironically, Dickie Attenborough's film \"The Jurassic Park\" featured footage of real dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:04:29 +0000", "from_user": "Strnks", "from_user_id": 81227663, "from_user_id_str": "81227663", "from_user_name": "Gareth Stranks", "geo": null, "id": 148720351843590140, "id_str": "148720351843590144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1586243900/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586243900/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @BBCPolarBears: Of course, ironically, Dickie Attenborough's film \"The Jurassic Park\" featured footage of real dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:03:53 +0000", "from_user": "Marawvo", "from_user_id": 431717088, "from_user_id_str": "431717088", "from_user_name": "Mara Whitesell", "geo": null, "id": 148720201452634100, "id_str": "148720201452634112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681065978/0kwccgyhfv_133481041-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681065978/0kwccgyhfv_133481041-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dinosaur Magic Capsules: Have some super size fun with magic caps and fun capsules! This pack of Dinosaurs Magic... http://t.co/IdMNng3I", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:03:15 +0000", "from_user": "mycatisahipster", "from_user_id": 173971562, "from_user_id_str": "173971562", "from_user_name": "\\u03AC\\u03C0\\u03B5\\u03B9\\u03C1\\u03BF\\u03BF\\u03BF", "geo": null, "id": 148720040735289340, "id_str": "148720040735289344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1352197805/IMGP0270_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1352197805/IMGP0270_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:02:50 +0000", "from_user": "prudiepie", "from_user_id": 100453553, "from_user_id_str": "100453553", "from_user_name": "Pru :)", "geo": null, "id": 148719936309706750, "id_str": "148719936309706752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1592426499/Screen_Shot_2011-10-17_at_7.54.35_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592426499/Screen_Shot_2011-10-17_at_7.54.35_PM_normal.png", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/irH7VKws", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:02:25 +0000", "from_user": "Leila_5_97", "from_user_id": 432614634, "from_user_id_str": "432614634", "from_user_name": "Leila Christensen", "geo": null, "id": 148719832311934980, "id_str": "148719832311934976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688383748/DSCF2177_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688383748/DSCF2177_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:02:10 +0000", "from_user": "nabellion_", "from_user_id": 129441109, "from_user_id_str": "129441109", "from_user_name": "Verified 2PMHOTTEST", "geo": null, "id": 148719767556075520, "id_str": "148719767556075520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689052412/nabellion__1975727114562838569_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689052412/nabellion__1975727114562838569_normal.jpg", "source": "<a href="http://www.writelonger.com" rel="nofollow">Write Longer</a>", "text": "RT @Blackalogy: Kiss me if I'm wrong... But dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:01:40 +0000", "from_user": "realrantercom", "from_user_id": 40745779, "from_user_id_str": "40745779", "from_user_name": "Realranter.com", "geo": null, "id": 148719642561626100, "id_str": "148719642561626112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/980873294/ranter_favicon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/980873294/ranter_favicon_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Union Dinosaurs Completely Out Of Touch - (Conservatives) - http://t.co/XMUgeazc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:00:16 +0000", "from_user": "Jess_R_Lee", "from_user_id": 324328476, "from_user_id_str": "324328476", "from_user_name": "I'm a little teapot ", "geo": null, "id": 148719289090834430, "id_str": "148719289090834432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699946964/4U9g56OT_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699946964/4U9g56OT_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:59:05 +0000", "from_user": "maniatoys", "from_user_id": 434918712, "from_user_id_str": "434918712", "from_user_name": "maniatoys", "geo": null, "id": 148718991978938370, "id_str": "148718991978938370", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688963697/maniatoys_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688963697/maniatoys_normal.png", "source": "<a href="http://maniatoys.com" rel="nofollow">maniatoys</a>", "text": "Melissa & Doug Dinosaurs Extra Large Floor Puzzle http://t.co/NOBoZs2b", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:54:00 +0000", "from_user": "srimonami", "from_user_id": 105395233, "from_user_id_str": "105395233", "from_user_name": "Srinivasan V", "geo": null, "id": 148717715035652100, "id_str": "148717715035652098", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1410961148/Srini_22June2011_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1410961148/Srini_22June2011_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "For the dinosaurs, it was meteorites; For us it would be Religion #Extinction", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:53:18 +0000", "from_user": "asian_angel", "from_user_id": 17359038, "from_user_id_str": "17359038", "from_user_name": "Asian Angel (Akemi)", "geo": null, "id": 148717537641766900, "id_str": "148717537641766912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1610349223/winking-anime-girl-at-the-beach-icon-_421__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610349223/winking-anime-girl-at-the-beach-icon-_421__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Doctor_P21 Hey, no need to insult dinosaurs themselves by associating them with IE6 ha ha. :P", "to_user": "Doctor_P21", "to_user_id": 271132955, "to_user_id_str": "271132955", "to_user_name": "Kevin P", "in_reply_to_status_id": 148698170094915600, "in_reply_to_status_id_str": "148698170094915585"}, +{"created_at": "Mon, 19 Dec 2011 10:51:33 +0000", "from_user": "Jegasaurus", "from_user_id": 282703861, "from_user_id_str": "282703861", "from_user_name": "Jess Gregory", "geo": null, "id": 148717097281794050, "id_str": "148717097281794049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1606506894/Cherwell-20110831-00104_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606506894/Cherwell-20110831-00104_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:50:59 +0000", "from_user": "Mr_Sambo", "from_user_id": 57389339, "from_user_id_str": "57389339", "from_user_name": "Nsovo Sambo", "geo": null, "id": 148716952356003840, "id_str": "148716952356003841", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1595994739/Image0394_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1595994739/Image0394_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "eh, Swlo yin kam @IAmMulo \"Fuck me if i'm wrong but dinosaurs still\\nexist right?\"", "to_user": "IAmMulo", "to_user_id": 38149585, "to_user_id_str": "38149585", "to_user_name": "Cliff NhlaMulo ", "in_reply_to_status_id": 148714878234931200, "in_reply_to_status_id_str": "148714878234931200"}, +{"created_at": "Mon, 19 Dec 2011 10:50:41 +0000", "from_user": "JabuNdaba", "from_user_id": 234794161, "from_user_id_str": "234794161", "from_user_name": "Jabu Ndaba\\u2122", "geo": null, "id": 148716880373358600, "id_str": "148716880373358592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692557914/331482118_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692557914/331482118_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "O_o RT @Barman2dj: No, bring a Condom and let me fuck you RT @IAmMulo: \"Fuck me if i'm wrong but dinosaurs still exist right?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:50:34 +0000", "from_user": "xtremestace", "from_user_id": 426114376, "from_user_id_str": "426114376", "from_user_name": "dubsteppah", "geo": null, "id": 148716847460659200, "id_str": "148716847460659201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694889487/twitter2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694889487/twitter2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @guywriter: #Trump debate won't happen. Also, the sun is hot, the ocean is wet and dinosaurs are extinct. #Thatsnotnews", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:50:13 +0000", "from_user": "DJ_Sabby", "from_user_id": 43297973, "from_user_id_str": "43297973", "from_user_name": "DJ Sabby", "geo": null, "id": 148716762781847550, "id_str": "148716762781847552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662055218/330546291_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662055218/330546291_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Okay...... TMI RT @Barman2dj: No, bring a Condom and let me fuck you RT @IAmMulo: \"Fuck me if i'm wrong but dinosaurs still exist right?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 10:50:41 +0000", "from_user": "JabuNdaba", "from_user_id": 234794161, "from_user_id_str": "234794161", "from_user_name": "Jabu Ndaba\\u2122", "geo": null, "id": 148716880373358600, "id_str": "148716880373358592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692557914/331482118_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692557914/331482118_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "O_o RT @Barman2dj: No, bring a Condom and let me fuck you RT @IAmMulo: \"Fuck me if i'm wrong but dinosaurs still exist right?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:50:34 +0000", "from_user": "xtremestace", "from_user_id": 426114376, "from_user_id_str": "426114376", "from_user_name": "dubsteppah", "geo": null, "id": 148716847460659200, "id_str": "148716847460659201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694889487/twitter2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694889487/twitter2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @guywriter: #Trump debate won't happen. Also, the sun is hot, the ocean is wet and dinosaurs are extinct. #Thatsnotnews", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:50:13 +0000", "from_user": "DJ_Sabby", "from_user_id": 43297973, "from_user_id_str": "43297973", "from_user_name": "DJ Sabby", "geo": null, "id": 148716762781847550, "id_str": "148716762781847552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662055218/330546291_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662055218/330546291_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Okay...... TMI RT @Barman2dj: No, bring a Condom and let me fuck you RT @IAmMulo: \"Fuck me if i'm wrong but dinosaurs still exist right?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:50:06 +0000", "from_user": "girLike_sophie", "from_user_id": 251606527, "from_user_id_str": "251606527", "from_user_name": "Rusher. :)", "geo": null, "id": 148716731379093500, "id_str": "148716731379093505", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675737108/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675737108/image_normal.jpg", "source": "<a href="http://www.freeappmagic.com/" rel="nofollow">Free App Magic *</a>", "text": "Ich habe gerade Pocket Dinosaurs 2 entdeckt mit Free App Magic auf meinem iPod touch http://t.co/BXgs62Fn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:49:30 +0000", "from_user": "Dani_Farenga", "from_user_id": 371884605, "from_user_id_str": "371884605", "from_user_name": "Daniele Farenga", "geo": +{"coordinates": [45.4481,9.1249], "type": "Point"}, "id": 148716578987458560, "id_str": "148716578987458560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1610404320/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610404320/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I hate when Jesus rides dinosaurs in my house!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:48:33 +0000", "from_user": "TheCityOfRome", "from_user_id": 18200691, "from_user_id_str": "18200691", "from_user_name": "Romeel ", "geo": null, "id": 148716340725825540, "id_str": "148716340725825537", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1651351863/hmmmm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651351863/hmmmm_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/zLqZwbDQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:47:56 +0000", "from_user": "Barman2dj", "from_user_id": 255129940, "from_user_id_str": "255129940", "from_user_name": "BarmaN", "geo": null, "id": 148716185540767740, "id_str": "148716185540767744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1688891458/Bar_2dj_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688891458/Bar_2dj_normal.jpg", "source": "<a href="http://www.writelonger.com" rel="nofollow">Write Longer</a>", "text": "No, bring a Condom and let me fuck you RT @IAmMulo: \"Fuck me if i'm wrong but dinosaurs still exist right?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:47:50 +0000", "from_user": "BananaWitch13", "from_user_id": 429231015, "from_user_id_str": "429231015", "from_user_name": "Elena Simpson", "geo": null, "id": 148716160878264320, "id_str": "148716160878264320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696215659/IMG00219-20111130-1922_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696215659/IMG00219-20111130-1922_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:47:24 +0000", "from_user": "ch_owais", "from_user_id": 207479265, "from_user_id_str": "207479265", "from_user_name": "ch owais", "geo": null, "id": 148716054103863300, "id_str": "148716054103863297", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1674820926/374864_327079640651108_100000472242118_1286516_678118859_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674820926/374864_327079640651108_100000472242118_1286516_678118859_n_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "http://t.co/2JBVgVR7 http://t.co/OjFWMOVx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:47:23 +0000", "from_user": "Bee_Utee", "from_user_id": 279671887, "from_user_id_str": "279671887", "from_user_name": "Bonolo So'Jane", "geo": null, "id": 148716049632735230, "id_str": "148716049632735233", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700552063/0Tweeta_205___normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700552063/0Tweeta_205___normal.jpg", "source": "<a href="http://m.dabr.co.uk" rel="nofollow">Dabr</a>", "text": "RT in the form of crocodiles, lizards, tortoises nd stuff @IAmMulo: \"Fuck me if i'm wrong but dinosaurs still exist right?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:47:20 +0000", "from_user": "maaaarz97", "from_user_id": 344121433, "from_user_id_str": "344121433", "from_user_name": "marrri", "geo": null, "id": 148716034831036400, "id_str": "148716034831036416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1650366031/twmVhJp3_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650366031/twmVhJp3_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:46:33 +0000", "from_user": "TiffyyyandCO", "from_user_id": 86989111, "from_user_id_str": "86989111", "from_user_name": "Tiffany Odom", "geo": null, "id": 148715836851490800, "id_str": "148715836851490816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680498279/391873_10150358118673199_564423198_8431764_648465528_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680498279/391873_10150358118673199_564423198_8431764_648465528_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:46:32 +0000", "from_user": "Jordibro", "from_user_id": 292278401, "from_user_id_str": "292278401", "from_user_name": "Mayhem\\u2605", "geo": null, "id": 148715835823886340, "id_str": "148715835823886336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685206019/x_401fc9f6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685206019/x_401fc9f6_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "i hate it when Jesus rides dinosaurs in my house", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:46:20 +0000", "from_user": "blufire23", "from_user_id": 273500546, "from_user_id_str": "273500546", "from_user_name": "Alice sharp", "geo": null, "id": 148715783512522750, "id_str": "148715783512522752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679485969/me_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679485969/me_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:45:50 +0000", "from_user": "EmmaLangman", "from_user_id": 40985817, "from_user_id_str": "40985817", "from_user_name": "Emma Langman", "geo": null, "id": 148715658253844480, "id_str": "148715658253844481", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1169940219/Face_shot_for_profiles_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1169940219/Face_shot_for_profiles_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@kit2kat Not all schools are failing. Reading has suddenly taken off. Penny dropped abt freedom & choice it gives (esp Ben10 & dinosaurs) :)", "to_user": "kit2kat", "to_user_id": 19181496, "to_user_id_str": "19181496", "to_user_name": "Kate (Baker) King", "in_reply_to_status_id": 148693446536863740, "in_reply_to_status_id_str": "148693446536863745"}, +{"created_at": "Mon, 19 Dec 2011 10:45:41 +0000", "from_user": "Cass_IOM", "from_user_id": 188701130, "from_user_id_str": "188701130", "from_user_name": "Catherine Cassidy", "geo": null, "id": 148715618059829250, "id_str": "148715618059829248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1563758912/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1563758912/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @napickles: New Scientist - male ostriches and other evolutionary ancient birds can only maintain an erection for a few seconds. Probably dinosaurs also", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:45:14 +0000", "from_user": "Arrsome", "from_user_id": 165021413, "from_user_id_str": "165021413", "from_user_name": "Arlette Who", "geo": null, "id": 148715506684280830, "id_str": "148715506684280832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1683512663/Picture_12_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683512663/Picture_12_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:44:52 +0000", "from_user": "ferwen", "from_user_id": 33123688, "from_user_id_str": "33123688", "from_user_name": "fernanda castano", "geo": null, "id": 148715413088378880, "id_str": "148715413088378880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676456807/228101_7991428167_601253167_314838_6559_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676456807/228101_7991428167_601253167_314838_6559_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "The Second International Workshop on the Biology of Sauropod Dinosaurs (part I) RT @SciAm http://t.co/GXDKsE8V", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:44:51 +0000", "from_user": "Lemonka", "from_user_id": 33466126, "from_user_id_str": "33466126", "from_user_name": "Nthibane", "geo": null, "id": 148715411532296200, "id_str": "148715411532296192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701590486/331685744_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701590486/331685744_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Yah just saw 1 right now RT @IAmMulo: \"Fuck me if i'm wrong but dinosaurs still exist right?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:43:49 +0000", "from_user": "AnUsH4C", "from_user_id": 400347474, "from_user_id_str": "400347474", "from_user_name": "Anushka Cloete", "geo": null, "id": 148715149149220860, "id_str": "148715149149220864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702156435/peuf_20111212_61.jpg_normal.rem", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702156435/peuf_20111212_61.jpg_normal.rem", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:43:03 +0000", "from_user": "hotdeals4all", "from_user_id": 77851578, "from_user_id_str": "77851578", "from_user_name": "Hotdeals4all", "geo": null, "id": 148714956374806530, "id_str": "148714956374806528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/454808915/GuaranteeSignRed_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/454808915/GuaranteeSignRed_normal.png", "source": "<a href="http://myarticlemall.com" rel="nofollow">MyArticleMall</a>", "text": "The Creation and Dinosaurs http://t.co/D9FVHvp2 #Science #articles", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:42:44 +0000", "from_user": "IAmMulo", "from_user_id": 38149585, "from_user_id_str": "38149585", "from_user_name": "Cliff NhlaMulo ", "geo": null, "id": 148714878234931200, "id_str": "148714878234931200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1338314733/291666317_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1338314733/291666317_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "\"Fuck me if i'm wrong but dinosaurs still exist right?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:42:31 +0000", "from_user": "i_am_bagel", "from_user_id": 198977953, "from_user_id_str": "198977953", "from_user_name": "Sophy Lena Bage", "geo": null, "id": 148714822685560830, "id_str": "148714822685560832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681558033/Durham-20111015-00240_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681558033/Durham-20111015-00240_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "I havn't had turkey dinosaurs in years :( something to do before new years :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:42:04 +0000", "from_user": "HerbTatts_420", "from_user_id": 430680796, "from_user_id_str": "430680796", "from_user_name": "Fiesty.Lil.Azn", "geo": null, "id": 148714709087043600, "id_str": "148714709087043584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692707653/b09br881_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692707653/b09br881_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:41:57 +0000", "from_user": "mrsbiebzcullen", "from_user_id": 129673742, "from_user_id_str": "129673742", "from_user_name": "Nicole Manzano", "geo": null, "id": 148714678791569400, "id_str": "148714678791569408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698249110/tumblr_lsgkryzfdv1qfr4exo1_500_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698249110/tumblr_lsgkryzfdv1qfr4exo1_500_normal.gif", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @briannalannan: #SometimesIWonder what it would be like to be alive with the dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:41:31 +0000", "from_user": "creamyteen1604", "from_user_id": 240775315, "from_user_id_str": "240775315", "from_user_name": "Idara Nta", "geo": null, "id": 148714571488702460, "id_str": "148714571488702464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684619355/girly_Wallpaper_cfdb1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684619355/girly_Wallpaper_cfdb1_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Kiss me if i'm wrong but dinosaurs still exist right? *wink*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:40:52 +0000", "from_user": "briannalannan", "from_user_id": 116890299, "from_user_id_str": "116890299", "from_user_name": "narnias biiitch", "geo": null, "id": 148714409978630140, "id_str": "148714409978630144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681574749/3dJMdnw9_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681574749/3dJMdnw9_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "#SometimesIWonder what it would be like to be alive with the dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:40:24 +0000", "from_user": "tangledfeet", "from_user_id": 38192801, "from_user_id_str": "38192801", "from_user_name": "Tangled Feet", "geo": null, "id": 148714291036565500, "id_str": "148714291036565504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1376543194/241006_10150182834883026_52084053025_6903504_5562216_o-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1376543194/241006_10150182834883026_52084053025_6903504_5562216_o-1_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "http://t.co/kXsOpmJy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:40:13 +0000", "from_user": "Missi_Ellie", "from_user_id": 415768793, "from_user_id_str": "415768793", "from_user_name": "Ellie Forrester", "geo": null, "id": 148714246459494400, "id_str": "148714246459494400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1645747965/file5686t4826372866628352_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645747965/file5686t4826372866628352_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:40:08 +0000", "from_user": "dinasaur93", "from_user_id": 406591351, "from_user_id_str": "406591351", "from_user_name": "Dina Gayanova", "geo": null, "id": 148714225345380350, "id_str": "148714225345380352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1626183754/profile_picture__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626183754/profile_picture__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:40:00 +0000", "from_user": "SalsaChoicer", "from_user_id": 121968669, "from_user_id_str": "121968669", "from_user_name": "Salsa Choicer", "geo": null, "id": 148714190608154620, "id_str": "148714190608154624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://google.com" rel="nofollow">SalsaChoicer</a>", "text": "did you know? dinosaurs play with squirels in the morning", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:39:02 +0000", "from_user": "yesteryearkidx", "from_user_id": 325879506, "from_user_id_str": "325879506", "from_user_name": "Hannah Ashlee Gill", "geo": null, "id": 148713948684877820, "id_str": "148713948684877824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1658468370/IMG_3572_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658468370/IMG_3572_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:38:42 +0000", "from_user": "_LovelyRocio", "from_user_id": 231237924, "from_user_id_str": "231237924", "from_user_name": "Rocio Hernandez", "geo": null, "id": 148713863485980670, "id_str": "148713863485980672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1659492406/319517_232738103444339_100001244547186_699370_1187628016_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659492406/319517_232738103444339_100001244547186_699370_1187628016_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:37:54 +0000", "from_user": "Tzar_Ivan", "from_user_id": 203952185, "from_user_id_str": "203952185", "from_user_name": "Ivan Limanjaya", "geo": null, "id": 148713659835744260, "id_str": "148713659835744257", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1572455305/IMG_0489_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572455305/IMG_0489_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @AdmireMyQuote: RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:37:48 +0000", "from_user": "TetZoo", "from_user_id": 303804147, "from_user_id_str": "303804147", "from_user_name": "Darren Naish", "geo": null, "id": 148713637706608640, "id_str": "148713637706608640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1365796113/Naish-quetz-humerus-150-px_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1365796113/Naish-quetz-humerus-150-px_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Pt I of thoughts on German #sauropod biology meeting: http://t.co/35uofNmt Nutrition, diet, fighting, locomotion #dinosaurs #SauroBonn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:37:39 +0000", "from_user": "AubreyNicoleXO", "from_user_id": 289782718, "from_user_id_str": "289782718", "from_user_name": "AubreyNicole Mariano", "geo": null, "id": 148713596799553540, "id_str": "148713596799553537", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688524426/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688524426/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:37:28 +0000", "from_user": "KarenRgz", "from_user_id": 129102546, "from_user_id_str": "129102546", "from_user_name": "Karen Rodriguez", "geo": null, "id": 148713551266189300, "id_str": "148713551266189313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682015112/aaa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682015112/aaa_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:36:31 +0000", "from_user": "sanster08", "from_user_id": 338916390, "from_user_id_str": "338916390", "from_user_name": "Sanisha Muniram\\u2606\\u5F61", "geo": null, "id": 148713311486230530, "id_str": "148713311486230528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1690539010/S5000899_-_Copy_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690539010/S5000899_-_Copy_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:36:28 +0000", "from_user": "dibyajyoti1588", "from_user_id": 121365764, "from_user_id_str": "121365764", "from_user_name": "dibyajyoti das", "geo": null, "id": 148713298890723330, "id_str": "148713298890723328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:36:17 +0000", "from_user": "ItsMeMarlyn_", "from_user_id": 246644757, "from_user_id_str": "246644757", "from_user_name": "marlyn \\u265A", "geo": null, "id": 148713252820488200, "id_str": "148713252820488192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701780203/me___ben_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701780203/me___ben_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "kiss me if im wrong but dinosaurs still exist right? LOL, jkjkjk.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:36:12 +0000", "from_user": "chamilomartt", "from_user_id": 255872778, "from_user_id_str": "255872778", "from_user_name": "Camilo M.", "geo": null, "id": 148713233300201470, "id_str": "148713233300201472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1553225413/FacebookHomescreenImage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553225413/FacebookHomescreenImage_normal.jpg", "source": "<a href="http://www.tweekly.fm/" rel="nofollow">Tweekly.fm</a>", "text": "My Top 3 #lastfm Artists: Amy Winehouse (9), She Wants Revenge (3) & Totally Enormous Extinct Dinosaurs (3) http://t.co/bHMHdgoM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:36:10 +0000", "from_user": "emileh_salt", "from_user_id": 288626400, "from_user_id_str": "288626400", "from_user_name": "Emily Salter", "geo": null, "id": 148713226929061900, "id_str": "148713226929061889", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1546737954/26258914_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546737954/26258914_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:34:39 +0000", "from_user": "hayleyboychuk", "from_user_id": 143690871, "from_user_id_str": "143690871", "from_user_name": "hayley boychuk \\u2714", "geo": null, "id": 148712841829031940, "id_str": "148712841829031936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696536873/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696536873/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:34:13 +0000", "from_user": "PrincesaMary276", "from_user_id": 202854191, "from_user_id_str": "202854191", "from_user_name": "Mairel E.", "geo": null, "id": 148712732701634560, "id_str": "148712732701634560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1153938408/PrincesaMary276_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1153938408/PrincesaMary276_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:33:58 +0000", "from_user": "mitchpne", "from_user_id": 69551359, "from_user_id_str": "69551359", "from_user_name": "Mitch Walmsley.", "geo": null, "id": 148712670252634100, "id_str": "148712670252634113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1614136545/206624_123927441015545_100001948686518_173206_3041143_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1614136545/206624_123927441015545_100001948686518_173206_3041143_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:33:49 +0000", "from_user": "Ayachanx", "from_user_id": 185161337, "from_user_id_str": "185161337", "from_user_name": "Fiona Adolphe", "geo": null, "id": 148712634508779520, "id_str": "148712634508779520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682868734/302321_2287098984278_1453028923_2513951_978781305_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682868734/302321_2287098984278_1453028923_2513951_978781305_n_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/wpSGDOmH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:33:29 +0000", "from_user": "Kisha_Luv", "from_user_id": 382500579, "from_user_id_str": "382500579", "from_user_name": "Jenny Luv", "geo": null, "id": 148712549469274100, "id_str": "148712549469274112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1650345855/Bildschirmfoto_2011-11-21_um_15.54.03_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650345855/Bildschirmfoto_2011-11-21_um_15.54.03_normal.png", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:33:23 +0000", "from_user": "DoctorWhoToyz", "from_user_id": 362657515, "from_user_id_str": "362657515", "from_user_name": "Doctor Who Collector", "geo": null, "id": 148712522797686800, "id_str": "148712522797686785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1514774915/twatter_2_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1514774915/twatter_2_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "DVD: UNIT Files. Contains episodes Invasion of the Dinosaurs and The Android Invasion. RRP: \\u00A3TBA. Released 2nd January 2012.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:32:55 +0000", "from_user": "givernygrace", "from_user_id": 258893193, "from_user_id_str": "258893193", "from_user_name": "GivernyD'Auriol", "geo": null, "id": 148712406179250180, "id_str": "148712406179250176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1622870701/IMG-20110803-00510_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622870701/IMG-20110803-00510_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Kiss me if i'm wrong, but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:32:40 +0000", "from_user": "SarahRyan_", "from_user_id": 47481152, "from_user_id_str": "47481152", "from_user_name": "Sarah Ryan", "geo": null, "id": 148712342295805950, "id_str": "148712342295805952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1612580350/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612580350/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@ollyofficial : Kiss me if i'm wrong but dinosaurs still exist right?\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:32:25 +0000", "from_user": "Aloysius_Ho", "from_user_id": 283497909, "from_user_id_str": "283497909", "from_user_name": "\\u13AF\\u03B9\\u0398\\u03D3\\u0218\\u03AF\\u01B2\\u0218 \\u0127\\u0398", "geo": null, "id": 148712282199818240, "id_str": "148712282199818240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1594210107/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1594210107/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:32:05 +0000", "from_user": "chrishtinehui", "from_user_id": 72204788, "from_user_id_str": "72204788", "from_user_name": "Christine Hui :D", "geo": null, "id": 148712195620999170, "id_str": "148712195620999168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657254018/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657254018/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:31:59 +0000", "from_user": "mariatherese15", "from_user_id": 221328462, "from_user_id_str": "221328462", "from_user_name": "therese montinola", "geo": null, "id": 148712172049022980, "id_str": "148712172049022976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1423119551/248803_1694399609972_1537284392_31296517_158273_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1423119551/248803_1694399609972_1537284392_31296517_158273_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:31:21 +0000", "from_user": "Moreforpets", "from_user_id": 237025113, "from_user_id_str": "237025113", "from_user_name": "More For Pets Ltd", "geo": null, "id": 148712010601865200, "id_str": "148712010601865218", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1638374923/More_For_Pets_Limited_Twitter_Cheap_Pet_Supplies_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638374923/More_For_Pets_Limited_Twitter_Cheap_Pet_Supplies_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Fun plush dinosaurs great detail, fun colours & squeaker you and your dogs will adore! http://t.co/WOq2fiJe just \\u00A34.25 http://t.co/bSJbLDWl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:30:49 +0000", "from_user": "AbithaAnandh", "from_user_id": 38144181, "from_user_id_str": "38144181", "from_user_name": "Abitha Anandh", "geo": null, "id": 148711879026544640, "id_str": "148711879026544640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1336868533/booo_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1336868533/booo_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "Son doesn't believe me when i say Dinosaurs evolved from human beings. Alas! no room for magic...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:30:49 +0000", "from_user": "Salah_MUFC", "from_user_id": 73718608, "from_user_id_str": "73718608", "from_user_name": "SaLah", "geo": null, "id": 148711878682615800, "id_str": "148711878682615808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692726037/IMG00174-20110812-2227_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692726037/IMG00174-20110812-2227_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:30:41 +0000", "from_user": "LannaLoveee", "from_user_id": 39011103, "from_user_id_str": "39011103", "from_user_name": "Alanna Rosee", "geo": null, "id": 148711844830392320, "id_str": "148711844830392320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1578055199/7LooK9mx_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1578055199/7LooK9mx_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:30:33 +0000", "from_user": "Oliverrr__", "from_user_id": 367231545, "from_user_id_str": "367231545", "from_user_name": "Bambi/Shady", "geo": null, "id": 148711809950552060, "id_str": "148711809950552065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1619017942/0_normal.GIF", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619017942/0_normal.GIF", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Kiss me if I'm wrong, but dinosaurs still exist, right..?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:30:32 +0000", "from_user": "yahhneli_mataah", "from_user_id": 419740724, "from_user_id_str": "419740724", "from_user_name": "Yelesey Burciaga", "geo": null, "id": 148711806532190200, "id_str": "148711806532190209", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1663650727/Capture_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663650727/Capture_normal.PNG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Kiss me if i'm wrong but dinosaurs still exist right? C:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:30:15 +0000", "from_user": "xsaaabine", "from_user_id": 44370806, "from_user_id_str": "44370806", "from_user_name": "Sabine ", "geo": null, "id": 148711736378273800, "id_str": "148711736378273793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1669907835/Snapshot_20110207_12_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669907835/Snapshot_20110207_12_normal.JPG", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @natalieabels: "@QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:30:03 +0000", "from_user": "Ftrrzkyml", "from_user_id": 440689887, "from_user_id_str": "440689887", "from_user_name": "Awesome Girl\\u2665", "geo": null, "id": 148711686222778370, "id_str": "148711686222778368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701823673/Ftrrzkyml_742832218844849000_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701823673/Ftrrzkyml_742832218844849000_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:29:55 +0000", "from_user": "ohits_salsa", "from_user_id": 123210457, "from_user_id_str": "123210457", "from_user_name": "Oh it's Salsa ", "geo": null, "id": 148711654329290750, "id_str": "148711654329290752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1646257135/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646257135/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:29:50 +0000", "from_user": "natalieabels", "from_user_id": 425011454, "from_user_id_str": "425011454", "from_user_name": "Natalie Abels", "geo": null, "id": 148711630853767170, "id_str": "148711630853767168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686724765/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686724765/image_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": ""@QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:29:48 +0000", "from_user": "Lady_TMorgan", "from_user_id": 379991448, "from_user_id_str": "379991448", "from_user_name": "Tammy Morgan", "geo": null, "id": 148711623719256060, "id_str": "148711623719256064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1647525282/Tam_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647525282/Tam_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:29:37 +0000", "from_user": "vuisMOi", "from_user_id": 23524452, "from_user_id_str": "23524452", "from_user_name": "Andrew Vuu", "geo": null, "id": 148711576751456260, "id_str": "148711576751456256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1619964008/twitpic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619964008/twitpic_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "The only #dinosaurs I know are the ones mentioned in #JurassicPark #childhoodmemories", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:29:31 +0000", "from_user": "MeidaSubiantoro", "from_user_id": 81556153, "from_user_id_str": "81556153", "from_user_name": "Meida Padma C. S. \\u2655", "geo": null, "id": 148711549870145540, "id_str": "148711549870145536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694403272/331524995_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694403272/331524995_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @AdmireMyQuote: RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:29:27 +0000", "from_user": "liliekeenx", "from_user_id": 187970510, "from_user_id_str": "187970510", "from_user_name": "lilieeee_xxx", "geo": null, "id": 148711533747257340, "id_str": "148711533747257344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693671185/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693671185/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:29:26 +0000", "from_user": "x_MadeForYOU", "from_user_id": 238766436, "from_user_id_str": "238766436", "from_user_name": ", Mookieeee (:", "geo": null, "id": 148711531578798080, "id_str": "148711531578798081", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1675126992/GosmsPhoto1323038095686_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675126992/GosmsPhoto1323038095686_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:28:45 +0000", "from_user": "Seasonowu", "from_user_id": 440188992, "from_user_id_str": "440188992", "from_user_name": "Season Ziska", "geo": null, "id": 148711358718947330, "id_str": "148711358718947328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700522150/rxpt5045su_120594672_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700522150/rxpt5045su_120594672_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Drawing Dinosaurs (Drawing Is Fun): http://t.co/LoGHecAE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:28:40 +0000", "from_user": "nathaniel880", "from_user_id": 31479976, "from_user_id_str": "31479976", "from_user_name": "Nathan Hayward", "geo": null, "id": 148711337235714050, "id_str": "148711337235714049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1658672992/FB_profile_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658672992/FB_profile_pic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:28:25 +0000", "from_user": "1D97luver", "from_user_id": 374178900, "from_user_id_str": "374178900", "from_user_name": "Orlagh Nolan", "geo": null, "id": 148711272748285950, "id_str": "148711272748285953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698013522/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698013522/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:28:24 +0000", "from_user": "SarahRyan_", "from_user_id": 47481152, "from_user_id_str": "47481152", "from_user_name": "Sarah Ryan", "geo": null, "id": 148711271846514700, "id_str": "148711271846514688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1612580350/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612580350/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@Harry_Styles : Kiss me if i'm wrong but dinosaurs still exist right?\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:27:51 +0000", "from_user": "ChinaaRodriguez", "from_user_id": 297967274, "from_user_id_str": "297967274", "from_user_name": "Tania Rodriguez \\u2606", "geo": null, "id": 148711130162933760, "id_str": "148711130162933760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1656640682/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656640682/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:27:48 +0000", "from_user": "ArwaaEmm", "from_user_id": 395466595, "from_user_id_str": "395466595", "from_user_name": "Arwa IsjustPurple", "geo": null, "id": 148711120285347840, "id_str": "148711120285347840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1599816316/Zaros_8D_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599816316/Zaros_8D_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:27:42 +0000", "from_user": "leslie_fey", "from_user_id": 74687711, "from_user_id_str": "74687711", "from_user_name": "kyle leslie celino", "geo": null, "id": 148711093114642430, "id_str": "148711093114642432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1688778242/X8tVCnuo_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688778242/X8tVCnuo_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:27:37 +0000", "from_user": "emilyjowsey8", "from_user_id": 399498471, "from_user_id_str": "399498471", "from_user_name": "Emily Jowsey", "geo": null, "id": 148711073091043330, "id_str": "148711073091043328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686703045/South_20Aurora-20111209-00081_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686703045/South_20Aurora-20111209-00081_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:27:27 +0000", "from_user": "Chiadaa", "from_user_id": 431714667, "from_user_id_str": "431714667", "from_user_name": "Chia Halloran", "geo": null, "id": 148711032364351500, "id_str": "148711032364351488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681061287/gmur3555b2_129653474_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681061287/gmur3555b2_129653474_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "American Museum of Natural History's Book of Dinosaurs and Other Ancient Creatures: A beautiful, informative vol... http://t.co/bkf5Angc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:27:08 +0000", "from_user": "Junkielovebirds", "from_user_id": 82133481, "from_user_id_str": "82133481", "from_user_name": "Slim Shady", "geo": null, "id": 148710950973882370, "id_str": "148710950973882368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687468520/Photo_on_2011-12-12_at_02.11__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687468520/Photo_on_2011-12-12_at_02.11__2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:26:58 +0000", "from_user": "DillysTwittys", "from_user_id": 172638967, "from_user_id_str": "172638967", "from_user_name": "Dyl\\u0394nDoucheB\\u0394g$W\\u2206GG\\u2122", "geo": null, "id": 148710910133932030, "id_str": "148710910133932032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701157848/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701157848/profile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:26:57 +0000", "from_user": "N3loow7", "from_user_id": 371424582, "from_user_id_str": "371424582", "from_user_name": "Arneles", "geo": null, "id": 148710907273424900, "id_str": "148710907273424896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1643047801/Neloooow02_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643047801/Neloooow02_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:26:56 +0000", "from_user": "MelC271989", "from_user_id": 78086717, "from_user_id_str": "78086717", "from_user_name": "Melissa Carrigan", "geo": null, "id": 148710901170704400, "id_str": "148710901170704384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689590865/PhotoChooser-b8614326-8533-4e18-a237-a70132b33e3d_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689590865/PhotoChooser-b8614326-8533-4e18-a237-a70132b33e3d_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:26:51 +0000", "from_user": "Sumerakhanxx", "from_user_id": 234542405, "from_user_id_str": "234542405", "from_user_name": "sumera*NAFEES*khan", "geo": null, "id": 148710880975126530, "id_str": "148710880975126529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699101832/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699101832/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:26:43 +0000", "from_user": "the_best_1rules", "from_user_id": 316748519, "from_user_id_str": "316748519", "from_user_name": "Jasmine *__* smile", "geo": null, "id": 148710846032388100, "id_str": "148710846032388096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685606164/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685606164/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:26:42 +0000", "from_user": "Joeylikewoah", "from_user_id": 170183144, "from_user_id_str": "170183144", "from_user_name": "JOEY CHIA \\u2655", "geo": null, "id": 148710842911834100, "id_str": "148710842911834112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687560444/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687560444/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:26:42 +0000", "from_user": "sabrinaaxbabyyx", "from_user_id": 67925316, "from_user_id_str": "67925316", "from_user_name": "sabrina bates", "geo": null, "id": 148710842152648700, "id_str": "148710842152648705", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1655772132/fhdbsh_001_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655772132/fhdbsh_001_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:26:40 +0000", "from_user": "janinerscn", "from_user_id": 287537953, "from_user_id_str": "287537953", "from_user_name": "Janine Roscano", "geo": null, "id": 148710832908406800, "id_str": "148710832908406784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686820542/IMG_1874_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686820542/IMG_1874_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:26:39 +0000", "from_user": "Finnevangeline", "from_user_id": 300739827, "from_user_id_str": "300739827", "from_user_name": "Finn Evangeline", "geo": null, "id": 148710829523603460, "id_str": "148710829523603456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695878993/Photo_on_2011-12-04_at_03.29__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695878993/Photo_on_2011-12-04_at_03.29__2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:26:33 +0000", "from_user": "KatieAnnaFree", "from_user_id": 289513331, "from_user_id_str": "289513331", "from_user_name": "'Katie-Anna", "geo": null, "id": 148710803506348030, "id_str": "148710803506348032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686775471/_gickr.com__4ce1b9ff-f65e-6594-7955-b4005b00012b_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686775471/_gickr.com__4ce1b9ff-f65e-6594-7955-b4005b00012b_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:26:31 +0000", "from_user": "143OfficialSay", "from_user_id": 354709839, "from_user_id_str": "354709839", "from_user_name": "! ", "geo": null, "id": 148710798175383550, "id_str": "148710798175383552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1667594275/tumblr_lq1dj9Zyla1qib0oxo1_500_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667594275/tumblr_lq1dj9Zyla1qib0oxo1_500_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:26:29 +0000", "from_user": "iLonKa0000", "from_user_id": 275228407, "from_user_id_str": "275228407", "from_user_name": "Ilona Marais", "geo": null, "id": 148710787106603000, "id_str": "148710787106603008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698610841/peuf_20111216_33_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698610841/peuf_20111216_33_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:26:22 +0000", "from_user": "JeyAh05", "from_user_id": 187064035, "from_user_id_str": "187064035", "from_user_name": "Jan Elise Antonio", "geo": null, "id": 148710758933467140, "id_str": "148710758933467137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699875987/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699875987/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:26:18 +0000", "from_user": "rgreyn98", "from_user_id": 289775192, "from_user_id_str": "289775192", "from_user_name": "Rojhel Mae Espeja", "geo": null, "id": 148710742856699900, "id_str": "148710742856699904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1669429836/313048_240429595993580_100000796253573_605046_6852343_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669429836/313048_240429595993580_100000796253573_605046_6852343_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:26:18 +0000", "from_user": "steph_aniieey", "from_user_id": 114853356, "from_user_id_str": "114853356", "from_user_name": "Stephanie Hyacinth \\u2665", "geo": null, "id": 148710740298186750, "id_str": "148710740298186753", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1516613969/IMG-20110807-01114_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1516613969/IMG-20110807-01114_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:26:15 +0000", "from_user": "TheLittleWombat", "from_user_id": 174234764, "from_user_id_str": "174234764", "from_user_name": "Samy.", "geo": null, "id": 148710730504470530, "id_str": "148710730504470528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701846564/LOVE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701846564/LOVE_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:26:09 +0000", "from_user": "alfais4real", "from_user_id": 109341753, "from_user_id_str": "109341753", "from_user_name": "Alfais", "geo": null, "id": 148710704910835700, "id_str": "148710704910835712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670995680/IMG-20111129-01666_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670995680/IMG-20111129-01666_1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:26:07 +0000", "from_user": "JianaJRusher", "from_user_id": 269851321, "from_user_id_str": "269851321", "from_user_name": "Jiana Reyes", "geo": null, "id": 148710696316715000, "id_str": "148710696316715008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1638563878/Best_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638563878/Best_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:26:03 +0000", "from_user": "ReeSykesRaval", "from_user_id": 229492386, "from_user_id_str": "229492386", "from_user_name": "Ree \\u2665", "geo": null, "id": 148710680458039300, "id_str": "148710680458039296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1666134855/Photo0004_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666134855/Photo0004_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:26:03 +0000", "from_user": "immktel", "from_user_id": 99916261, "from_user_id_str": "99916261", "from_user_name": "kristel quinto", "geo": null, "id": 148710680009256960, "id_str": "148710680009256960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662015639/profile_image_1322461311122_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662015639/profile_image_1322461311122_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:26:01 +0000", "from_user": "AishaAlDhaherii", "from_user_id": 358540466, "from_user_id_str": "358540466", "from_user_name": "Aisha Al Dhaheri\\u2661 ", "geo": null, "id": 148710670823718900, "id_str": "148710670823718912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702322997/Photo_on_2011-12-14_at_22.53__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702322997/Photo_on_2011-12-14_at_22.53__2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:25:53 +0000", "from_user": "caterpillarplz", "from_user_id": 402346806, "from_user_id_str": "402346806", "from_user_name": "chloe viiperi x", "geo": null, "id": 148710636455604220, "id_str": "148710636455604225", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702073597/tumblr_lv6h6zDH7V1qllzzco1_500_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702073597/tumblr_lv6h6zDH7V1qllzzco1_500_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 10:25:51 +0000", "from_user": "gurlsnote", "from_user_id": 435778497, "from_user_id_str": "435778497", "from_user_name": "isabella \\u221E", "geo": null, "id": 148710627379130370, "id_str": "148710627379130368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699313208/tumblr_lthugcmm8E1qbcq0uo1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699313208/tumblr_lthugcmm8E1qbcq0uo1_500_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:25:50 +0000", "from_user": "michannelle04", "from_user_id": 260716212, "from_user_id_str": "260716212", "from_user_name": "mich", "geo": null, "id": 148710624711553020, "id_str": "148710624711553024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699930365/untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699930365/untitled_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:25:49 +0000", "from_user": "JellyBeanJess14", "from_user_id": 382093172, "from_user_id_str": "382093172", "from_user_name": "Jessica Chappell", "geo": null, "id": 148710621729394700, "id_str": "148710621729394688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1565683397/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1565683397/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:25:49 +0000", "from_user": "AjeenAlex", "from_user_id": 241073093, "from_user_id_str": "241073093", "from_user_name": "Azreena A. (\\u25D5\\u203F\\u25D5\\u273F)", "geo": null, "id": 148710621301571600, "id_str": "148710621301571584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700537422/336795_321602764525038_100000259509860_1222002_1711650309_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700537422/336795_321602764525038_100000259509860_1222002_1711650309_o_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:25:48 +0000", "from_user": "Checkmatebitchs", "from_user_id": 341509043, "from_user_id_str": "341509043", "from_user_name": "SoraYa. SMOD ;)", "geo": null, "id": 148710614716530700, "id_str": "148710614716530688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1656649850/AfE01-0CQAAIv6g_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656649850/AfE01-0CQAAIv6g_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:25:42 +0000", "from_user": "prescyllakiok", "from_user_id": 412307587, "from_user_id_str": "412307587", "from_user_name": "Prescylla Kiok", "geo": null, "id": 148710593187164160, "id_str": "148710593187164161", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695964349/crop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695964349/crop_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:25:35 +0000", "from_user": "realsameerkhan", "from_user_id": 314707346, "from_user_id_str": "314707346", "from_user_name": "SAMEER KHAN\\u2714Verified", "geo": null, "id": 148710561541128200, "id_str": "148710561541128192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1545209749/299771_268235999866699_100000409048355_973539_1789183030_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545209749/299771_268235999866699_100000409048355_973539_1789183030_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:25:32 +0000", "from_user": "jsheeran_x", "from_user_id": 360632559, "from_user_id_str": "360632559", "from_user_name": "Joanna Sheeran+", "geo": null, "id": 148710549209882620, "id_str": "148710549209882624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689799609/373853_160082377426809_126963587405355_192117_435933381_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689799609/373853_160082377426809_126963587405355_192117_435933381_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:25:28 +0000", "from_user": "1clickten", "from_user_id": 413178444, "from_user_id_str": "413178444", "from_user_name": "1clickten", "geo": null, "id": 148710533892284400, "id_str": "148710533892284416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "eBook of Dinosaurs: Everything you could possibly want to know about dinosaurs are explained in this book in a f... http://t.co/cf6TMLym", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:22:55 +0000", "from_user": "HistoryMeister", "from_user_id": 20555580, "from_user_id_str": "20555580", "from_user_name": "Chris Lascelles", "geo": null, "id": 148709889924005900, "id_str": "148709889924005888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/77164823/Christopher_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/77164823/Christopher_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Dinosaurs around for c. 150 million years. Homo Sapiens c. 200,000 years and first civilisations only c. 6,000 yrs ago. Will we last?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:20:34 +0000", "from_user": "MFrost3", "from_user_id": 404064505, "from_user_id_str": "404064505", "from_user_name": "MFrost", "geo": null, "id": 148709297520517120, "id_str": "148709297520517120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1620316286/P1090503_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620316286/P1090503_normal.JPG", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "#Photo of some #Dinosaurs Fighting Over a Stuffed #Animal\\thttp://t.co/Kxs6YJ15", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:19:30 +0000", "from_user": "Dustpiggies", "from_user_id": 169233086, "from_user_id_str": "169233086", "from_user_name": "Mike Bromage", "geo": null, "id": 148709032276926460, "id_str": "148709032276926464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1083100680/dpavatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1083100680/dpavatar_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@schneberry I believe in dinosaurs too.", "to_user": "schneberry", "to_user_id": 289097558, "to_user_id_str": "289097558", "to_user_name": "Mike Schneberg"}, +{"created_at": "Mon, 19 Dec 2011 10:17:36 +0000", "from_user": "MuZiQmAnIaC", "from_user_id": 26915676, "from_user_id_str": "26915676", "from_user_name": "Alden Kirkland", "geo": null, "id": 148708551978790900, "id_str": "148708551978790912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1643243994/320574_2301573420629_1287990219_32028097_833670116_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643243994/320574_2301573420629_1287990219_32028097_833670116_n_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/a3V2i0BQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:17:31 +0000", "from_user": "chiarabantiling", "from_user_id": 153326820, "from_user_id_str": "153326820", "from_user_name": "chiara bantiling \\u2655", "geo": null, "id": 148708529795117060, "id_str": "148708529795117056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697882117/384740_343644165651329_100000172465653_1586731_1140198987_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697882117/384740_343644165651329_100000172465653_1586731_1140198987_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @Wynonalamata: RT \\u201C@jappyCuaycong35: I want to see real live dinosaurs before I die.\\u201D yesyes.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:17:03 +0000", "from_user": "Natashiarmp", "from_user_id": 431750407, "from_user_id_str": "431750407", "from_user_name": "Natashia Feller", "geo": null, "id": 148708414795685900, "id_str": "148708414795685888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681135718/v3vlto45mr_134237295_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681135718/v3vlto45mr_134237295_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Kid's Craze Dinosaurs: http://t.co/JvwQRGIT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:15:33 +0000", "from_user": "NatuARodriguez", "from_user_id": 150152183, "from_user_id_str": "150152183", "from_user_name": "SomeoneCalledNatalia", "geo": null, "id": 148708035647373300, "id_str": "148708035647373312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1669120527/dibujo_de_mi_bebito_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669120527/dibujo_de_mi_bebito_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/FnHOfysW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:13:27 +0000", "from_user": "ergungundogar", "from_user_id": 184452180, "from_user_id_str": "184452180", "from_user_name": "Erg\\u00FCn G\\u00FCndo\\u011Far", "geo": null, "id": 148707510134648830, "id_str": "148707510134648832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1113234970/Erg_nG_ndo_arYeni6_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1113234970/Erg_nG_ndo_arYeni6_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @gameinformer: Dinosaurs Invade Battlefield 3 DLC (Kind Of) http://t.co/13iAP0Cr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:11:24 +0000", "from_user": "Wynonalamata", "from_user_id": 387040360, "from_user_id_str": "387040360", "from_user_name": "Wynona Lamata", "geo": null, "id": 148706993887117300, "id_str": "148706993887117312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692882661/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692882661/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT \\u201C@jappyCuaycong35: I want to see real live dinosaurs before I die.\\u201D yesyes.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:10:25 +0000", "from_user": "shutupno1cares", "from_user_id": 125272413, "from_user_id_str": "125272413", "from_user_name": "get over yourself", "geo": null, "id": 148706744724500480, "id_str": "148706744724500480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1520383213/runawayhotdog_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1520383213/runawayhotdog_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "i heard dinosaurs were all the rage. final stage *is a t-rex and kills you* insert coins", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:09:01 +0000", "from_user": "ChanelleSanchez", "from_user_id": 314720328, "from_user_id_str": "314720328", "from_user_name": "Ryce Chanelle ", "geo": null, "id": 148706392570728450, "id_str": "148706392570728449", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676953161/392594_304506489580012_100000619890556_999355_1231013169_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676953161/392594_304506489580012_100000619890556_999355_1231013169_n_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/sZmeDb7D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:07:23 +0000", "from_user": "paulinecatalan", "from_user_id": 40200379, "from_user_id_str": "40200379", "from_user_name": "PJC \\u10E6", "geo": null, "id": 148705980128047100, "id_str": "148705980128047104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664054826/Snapshot_20111129_116_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664054826/Snapshot_20111129_116_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jappyCuaycong35: I want to see real live dinosaurs before I die.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:06:03 +0000", "from_user": "Imma_Swifties", "from_user_id": 346440256, "from_user_id_str": "346440256", "from_user_name": "YRahmadina", "geo": null, "id": 148705645338705920, "id_str": "148705645338705920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676931437/ts2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676931437/ts2_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @iSwizzling: Rawr means I love you in dinosaurs language. #realfact", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:05:21 +0000", "from_user": "jappyCuaycong35", "from_user_id": 235567110, "from_user_id_str": "235567110", "from_user_name": "Jappy Cuaycong", "geo": null, "id": 148705471212167170, "id_str": "148705471212167168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1618269099/poker_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618269099/poker_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I want to see real live dinosaurs before I die.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:04:40 +0000", "from_user": "Trulatya", "from_user_id": 431757289, "from_user_id_str": "431757289", "from_user_name": "Trula Pavel", "geo": null, "id": 148705296603291650, "id_str": "148705296603291648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681152741/large_AUERBZOVPMQG_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681152741/large_AUERBZOVPMQG_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Draw 50 Dinosaurs and Other Prehistoric Animals: Step-by-step instructions for drawing fifty different dinosaurs... http://t.co/8z5UvBHA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:04:09 +0000", "from_user": "jehanjehanjehan", "from_user_id": 88879767, "from_user_id_str": "88879767", "from_user_name": "Jehan Maglasang", "geo": null, "id": 148705166458232830, "id_str": "148705166458232832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1625657682/tumblr_lu8zioiywC1qier52o1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1625657682/tumblr_lu8zioiywC1qier52o1_500_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#SometimesIWonder about the things I never had the chance to see. Like dinosaurs and everything.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:04:01 +0000", "from_user": "Reitabnw", "from_user_id": 430067666, "from_user_id_str": "430067666", "from_user_name": "Reita Demetriou", "geo": null, "id": 148705133923012600, "id_str": "148705133923012608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677560532/bc5dmdvshl_129669710-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677560532/bc5dmdvshl_129669710-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Incrediline W-0011-2436 Mad Libs Dinosaurs Mural - Incrediwall - 24 Inches x 36 Inches: Combining the Incredilin... http://t.co/8NU2wqqL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:03:37 +0000", "from_user": "urmumlol", "from_user_id": 440288983, "from_user_id_str": "440288983", "from_user_name": "urmumlol", "geo": null, "id": 148705031829458940, "id_str": "148705031829458944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700771513/samp_yourmom_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700771513/samp_yourmom_normal.gif", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Ur mum is so old she is proof that dinosaurs existed lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:01:19 +0000", "from_user": "piratedemtl", "from_user_id": 13333842, "from_user_id_str": "13333842", "from_user_name": "unfuckwithable", "geo": null, "id": 148704453460103170, "id_str": "148704453460103168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699497833/twitter_icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699497833/twitter_icon_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Real Talk: The grandma from Family Matters or the baby from the show Dinosaurs? Discuss.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:00:25 +0000", "from_user": "gradiate", "from_user_id": 9779082, "from_user_id_str": "9779082", "from_user_name": "gradiate", "geo": null, "id": 148704228246962180, "id_str": "148704228246962178", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1629505160/Twit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629505160/Twit_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@bojkowski There's lot of dinosaurs in business that don't get the modern world.", "to_user": "bojkowski", "to_user_id": 798730, "to_user_id_str": "798730", "to_user_name": "Michael Bojkowski", "in_reply_to_status_id": 148703828676583420, "in_reply_to_status_id_str": "148703828676583424"}, +{"created_at": "Mon, 19 Dec 2011 09:59:32 +0000", "from_user": "StanBayBee", "from_user_id": 94277667, "from_user_id_str": "94277667", "from_user_name": "Stanley baby", "geo": null, "id": 148704007244890100, "id_str": "148704007244890112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1226438977/baobao07_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1226438977/baobao07_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @HelloJasons_: Wah rain until dinosaurs also come out ah! Zzz... Wet toms soon..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:57:52 +0000", "from_user": "CarolDicarlo", "from_user_id": 393962285, "from_user_id_str": "393962285", "from_user_name": "Carol Dicarlo", "geo": null, "id": 148703587281801200, "id_str": "148703587281801216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "In The Beginning There Were Dinosaurs: They're big, they're bad, they sing and dance, they're dinosaurs! Take a ... http://t.co/gT9F1jGc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:57:34 +0000", "from_user": "Angeleaeg", "from_user_id": 431710428, "from_user_id_str": "431710428", "from_user_name": "Angele Deed", "geo": null, "id": 148703511721410560, "id_str": "148703511721410561", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681051330/kz4eat453h_111545399_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681051330/kz4eat453h_111545399_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Ecology and Behaviour of Mesozoic Reptiles: This richly illustrated book clothes the skeletons of dinosaurs and ... http://t.co/R0KP8n7m", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:57:12 +0000", "from_user": "whvholst", "from_user_id": 20069736, "from_user_id_str": "20069736", "from_user_name": "Walter van Holst", "geo": null, "id": 148703416946925570, "id_str": "148703416946925569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/918123796/Nouvelle_vague_bw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/918123796/Nouvelle_vague_bw_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", "text": "@glynmoody I am in favour of dinosaurs going after individuals, let's see how much public support for 'IPR' there really is.", "to_user": "glynmoody", "to_user_id": 18525497, "to_user_id_str": "18525497", "to_user_name": "Glyn Moody", "in_reply_to_status_id": 148701849933975550, "in_reply_to_status_id_str": "148701849933975552"}, +{"created_at": "Mon, 19 Dec 2011 09:56:57 +0000", "from_user": "Hannah_McKenney", "from_user_id": 412488211, "from_user_id_str": "412488211", "from_user_name": "Hannah McKenney", "geo": null, "id": 148703354611171330, "id_str": "148703354611171328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701970639/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701970639/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:56:10 +0000", "from_user": "JacopsLadder", "from_user_id": 390962736, "from_user_id_str": "390962736", "from_user_name": "Jacop's Ladder", "geo": null, "id": 148703160016437250, "id_str": "148703160016437248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1588390213/324234324324698568__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1588390213/324234324324698568__1__normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "16bit - Dinosaurs (Official Video) http://t.co/WEslTUG4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:55:58 +0000", "from_user": "KendallMullins1", "from_user_id": 358650138, "from_user_id_str": "358650138", "from_user_name": "Kendall Mullins", "geo": null, "id": 148703106958495740, "id_str": "148703106958495744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1669119368/298698_10150343115910286_559480285_8645707_151023592_n_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669119368/298698_10150343115910286_559480285_8645707_151023592_n_1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:52:37 +0000", "from_user": "Joankarenina", "from_user_id": 81326586, "from_user_id_str": "81326586", "from_user_name": "Beliebers\\u2661", "geo": null, "id": 148702267091062800, "id_str": "148702267091062785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701904353/meandddddddd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701904353/meandddddddd_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @jessicaMrp: if 2 dinosaurs are in love, so how can they hug each other? :/", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:51:20 +0000", "from_user": "JoannHentonxphp", "from_user_id": 97401827, "from_user_id_str": "97401827", "from_user_name": "Gwyn Montesdeoca", "geo": null, "id": 148701942414184450, "id_str": "148701942414184449", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Scientists aren't sure what color dinosaurs were. Good to know :)#teamfollowback", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:51:18 +0000", "from_user": "iSwizzling", "from_user_id": 363427653, "from_user_id_str": "363427653", "from_user_name": "Miley's lil sister\\u262E", "geo": null, "id": 148701935304839170, "id_str": "148701935304839168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701595239/lmao132023_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701595239/lmao132023_normal.gif", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Rawr means I love you in dinosaurs language. #realfact", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:51:17 +0000", "from_user": "fatinecah", "from_user_id": 440039828, "from_user_id_str": "440039828", "from_user_name": "Fatinecah Alinskie", "geo": null, "id": 148701930770792450, "id_str": "148701930770792449", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701719126/Picture_028_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701719126/Picture_028_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/Dbd1sOk9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:51:12 +0000", "from_user": "_GoAwayJess", "from_user_id": 394204516, "from_user_id_str": "394204516", "from_user_name": "Jess Chetland", "geo": null, "id": 148701908616478720, "id_str": "148701908616478720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694820226/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694820226/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:51:06 +0000", "from_user": "ceicilliadita", "from_user_id": 88309867, "from_user_id_str": "88309867", "from_user_name": "Ceicilli\\u0251 Dit\\u0251\\u2654", "geo": null, "id": 148701883660382200, "id_str": "148701883660382208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698332763/DSC_0670tw_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698332763/DSC_0670tw_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @jessicaMrp: if 2 dinosaurs are in love, so how can they hug each other? :/", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:50:00 +0000", "from_user": "SalsaChoicer", "from_user_id": 121968669, "from_user_id_str": "121968669", "from_user_name": "Salsa Choicer", "geo": null, "id": 148701608157523970, "id_str": "148701608157523969", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://google.com" rel="nofollow">SalsaChoicer</a>", "text": "did you know? dinosaurs jungle with lazers in the morning", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:49:42 +0000", "from_user": "Miiilovesyou", "from_user_id": 146798412, "from_user_id_str": "146798412", "from_user_name": "Mara Gomez De guia", "geo": null, "id": 148701530739060740, "id_str": "148701530739060736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1660401819/Photo4146dsa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660401819/Photo4146dsa_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:47:38 +0000", "from_user": "_SincerelyDanny", "from_user_id": 116987447, "from_user_id_str": "116987447", "from_user_name": "Dannyyy", "geo": null, "id": 148701009751978000, "id_str": "148701009751977984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701948637/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701948637/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:41:47 +0000", "from_user": "hausofjakeh", "from_user_id": 254481576, "from_user_id_str": "254481576", "from_user_name": "jakeh driscoll \\u2020", "geo": null, "id": 148699539463880700, "id_str": "148699539463880704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701173774/386480_2320451815300_1369689744_32135802_1055882538_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701173774/386480_2320451815300_1369689744_32135802_1055882538_n_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/SDUhjcub", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:41:07 +0000", "from_user": "imageswebsites", "from_user_id": 27708398, "from_user_id_str": "27708398", "from_user_name": "Images Websites", "geo": null, "id": 148699371653963780, "id_str": "148699371653963777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/128611599/Honey-Glazed-Donut_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/128611599/Honey-Glazed-Donut_normal.jpg", "source": "<a href="http://www.ajaymatharu.com/" rel="nofollow">Tweet Old Post</a>", "text": "Calgary Zoo Dinosaurs http://t.co/4O1AwuoM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:40:00 +0000", "from_user": "SalsaChoicer", "from_user_id": 121968669, "from_user_id_str": "121968669", "from_user_name": "Salsa Choicer", "geo": null, "id": 148699089847070720, "id_str": "148699089847070720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://google.com" rel="nofollow">SalsaChoicer</a>", "text": "did you know? dinosaurs jungle with lazers recursively", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:38:44 +0000", "from_user": "Chinkerrific", "from_user_id": 160620347, "from_user_id_str": "160620347", "from_user_name": "C r y s t a l \\u2661", "geo": null, "id": 148698772250173440, "id_str": "148698772250173440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1570184096/let_s_flyyyyy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1570184096/let_s_flyyyyy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I love how @DinoKid_Yvette is just soo into drawing dinosaurs (:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:37:28 +0000", "from_user": "posy13", "from_user_id": 255738121, "from_user_id_str": "255738121", "from_user_name": "Carole Preston", "geo": null, "id": 148698454166736900, "id_str": "148698454166736896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1327963954/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1327963954/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "My mum is wondering if dinosaurs ever actually existed! Omg!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:35:39 +0000", "from_user": "mdandybk", "from_user_id": 103180296, "from_user_id_str": "103180296", "from_user_name": "Andy B K", "geo": null, "id": 148697995116941300, "id_str": "148697995116941312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1507552524/profile2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1507552524/profile2_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "I ate... #comics #webcomics #dinosaurs Photo: http://t.co/aljMpLMp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:35:12 +0000", "from_user": "natalee_love", "from_user_id": 230949875, "from_user_id_str": "230949875", "from_user_name": "cold'hearted", "geo": null, "id": 148697881988173820, "id_str": "148697881988173824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697747893/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697747893/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@OhhYeahJaniece I don't even mess with anybody ! ahaha . I haven't kissed or anything with anybody since dinosaurs were alive . ahaha", "to_user": "OhhYeahJaniece", "to_user_id": 152441686, "to_user_id_str": "152441686", "to_user_name": "janiece martin", "in_reply_to_status_id": 148697398779191300, "in_reply_to_status_id_str": "148697398779191296"}, +{"created_at": "Mon, 19 Dec 2011 09:35:10 +0000", "from_user": "worldisalive", "from_user_id": 406916112, "from_user_id_str": "406916112", "from_user_name": "World is Alive", "geo": null, "id": 148697873423417340, "id_str": "148697873423417344", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://worldisalive.com" rel="nofollow">World is Alive</a>", "text": "Glenn L. Wilson Explores Di http://t.co/fd6ANrVu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:35:08 +0000", "from_user": "Menageabro", "from_user_id": 383509112, "from_user_id_str": "383509112", "from_user_name": "Bff Forev", "geo": null, "id": 148697864510517250, "id_str": "148697864510517249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1672738922/Menage_a_claus_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672738922/Menage_a_claus_3_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\"remember when jurassic park came out and it looked so real? ...yeah, it's because they used real dinosaurs!\"\\n\\n-tucker", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:35:08 +0000", "from_user": "jessicaMrp", "from_user_id": 81071961, "from_user_id_str": "81071961", "from_user_name": "Jessica Marpaung", "geo": null, "id": 148697864342736900, "id_str": "148697864342736896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699323461/jessanne_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699323461/jessanne_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "if 2 dinosaurs are in love, so how can they hug each other? :/", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:34:44 +0000", "from_user": "Kayywinn", "from_user_id": 331655901, "from_user_id_str": "331655901", "from_user_name": "The Real Kevin \\u2714", "geo": null, "id": 148697766288293900, "id_str": "148697766288293888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1667760617/900455438_l2.png_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667760617/900455438_l2.png_normal.gif", "source": "<a href="http://stone.com/Twittelator" rel="nofollow">Twittelator</a>", "text": "@Liqintada island with dinosaurs... Lol is that very early part?", "to_user": "Liqintada", "to_user_id": 49610490, "to_user_id_str": "49610490", "to_user_name": "Liqin", "in_reply_to_status_id": 148695021183447040, "in_reply_to_status_id_str": "148695021183447040"}, +{"created_at": "Mon, 19 Dec 2011 09:33:59 +0000", "from_user": "hannahmayea", "from_user_id": 197673068, "from_user_id_str": "197673068", "from_user_name": "Hannah Abalayan", "geo": null, "id": 148697577628516350, "id_str": "148697577628516353", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1545459012/moi1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545459012/moi1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Last Dinosaurs. \\u2665 #nowplaying", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:33:11 +0000", "from_user": "FarheenZafar1", "from_user_id": 388859862, "from_user_id_str": "388859862", "from_user_name": "Farheen Zafar", "geo": null, "id": 148697375932817400, "id_str": "148697375932817408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700326949/77127_1625716917091_1061559261_1792681_4114001_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700326949/77127_1625716917091_1061559261_1792681_4114001_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "#SometimesIWonder if dinosaurs really existed", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:30:55 +0000", "from_user": "kunstgkpebu8", "from_user_id": 395530317, "from_user_id_str": "395530317", "from_user_name": "Kunst John", "geo": null, "id": 148696806270832640, "id_str": "148696806270832640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1599916495/imagesCALZU15C_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599916495/imagesCALZU15C_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "ethanpage89 what main event was that? the dinosaurs vs bumping match?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:30:53 +0000", "from_user": "kuhmeal", "from_user_id": 21426008, "from_user_id_str": "21426008", "from_user_name": "Kamille D.", "geo": null, "id": 148696794002501630, "id_str": "148696794002501632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688616661/kuhmeal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688616661/kuhmeal_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@TinaYuuup Lol! \"Food or dinosaurs? \\uD83D\\uDE14 \" \"I want both! I want girls on bread!\" \\uD83D\\uDE04\\uD83D\\uDE02 I love Friends!", "to_user": "TinaYuuup", "to_user_id": 121971408, "to_user_id_str": "121971408", "to_user_name": "Tina", "in_reply_to_status_id": 148692722369314800, "in_reply_to_status_id_str": "148692722369314816"}, +{"created_at": "Mon, 19 Dec 2011 09:30:34 +0000", "from_user": "katie_brennan", "from_user_id": 23660182, "from_user_id_str": "23660182", "from_user_name": "Katie Brennan", "geo": null, "id": 148696718366609400, "id_str": "148696718366609408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698296314/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698296314/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I have a date this morning with some ice skates and some dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:30:27 +0000", "from_user": "ABBarlow1", "from_user_id": 311509463, "from_user_id_str": "311509463", "from_user_name": "AB Barlow", "geo": null, "id": 148696687123247100, "id_str": "148696687123247104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1382930574/Drink_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1382930574/Drink_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "A #Photo of some #Dinosaurs at a Gift Shop at the #Zoo\\thttp://t.co/bdnbnODO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:29:31 +0000", "from_user": "DonaShynee", "from_user_id": 310191439, "from_user_id_str": "310191439", "from_user_name": "Dona Shyne Bautista", "geo": null, "id": 148696452623900670, "id_str": "148696452623900672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692588462/DSC05917_VintageColors_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692588462/DSC05917_VintageColors_1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:28:28 +0000", "from_user": "robbiemdya1", "from_user_id": 395524652, "from_user_id_str": "395524652", "from_user_name": "Robbie Norris", "geo": null, "id": 148696188487610370, "id_str": "148696188487610368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1599903010/imagesCAOETTG3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599903010/imagesCAOETTG3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "ethanpage89 what main event was that? the dinosaurs vs bumping match?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:28:06 +0000", "from_user": "mrsbracknell", "from_user_id": 58757062, "from_user_id_str": "58757062", "from_user_name": "Mrs Bracknell", "geo": null, "id": 148696094497456130, "id_str": "148696094497456128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1324383690/13022011068_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1324383690/13022011068_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ERN_Malleyscrub: The terror-didactical - a winged beast who lectured all the dinosaurs while flying. This is the real reason dinosaurs died out. #artwiculate", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:28:02 +0000", "from_user": "Krystinivo", "from_user_id": 431696325, "from_user_id_str": "431696325", "from_user_name": "Krystin Layer", "geo": null, "id": 148696079284699140, "id_str": "148696079284699137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681025084/501zybqwjx_121188472-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681025084/501zybqwjx_121188472-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "When Dinosaurs Ruled - 5 Tape Set [VHS]: http://t.co/Xisn8RNH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:26:50 +0000", "from_user": "Waitwhoschris", "from_user_id": 52336319, "from_user_id_str": "52336319", "from_user_name": "chris ibanez", "geo": null, "id": 148695777831690240, "id_str": "148695777831690240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697946185/4jE4mNwt_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697946185/4jE4mNwt_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Wouldnt you wanna go back to interact with dinosaurs and watch there ways of living? I would.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:24:34 +0000", "from_user": "eileenHarman977", "from_user_id": 411247648, "from_user_id_str": "411247648", "from_user_name": "eileen Harman", "geo": null, "id": 148695207158878200, "id_str": "148695207158878208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1636389266/14771610771195618_sunbath_jpg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1636389266/14771610771195618_sunbath_jpg_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@qerodikarop Panasonic has offered Coraline and Ice Age: Dawn of the Dinosaurs with the purchase of its 3D TVs http://t.co/GHsSBkB0", "to_user": "qerodikarop", "to_user_id": 391508565, "to_user_id_str": "391508565", "to_user_name": "Jennis Challes", "in_reply_to_status_id": 148692321871990800, "in_reply_to_status_id_str": "148692321871990784"}, +{"created_at": "Mon, 19 Dec 2011 09:24:08 +0000", "from_user": "CarmelaMcLean", "from_user_id": 169749667, "from_user_id_str": "169749667", "from_user_name": "Carmela", "geo": null, "id": 148695098308304900, "id_str": "148695098308304896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696228574/455445_089_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696228574/455445_089_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:23:35 +0000", "from_user": "Pope_Sativa", "from_user_id": 236606141, "from_user_id_str": "236606141", "from_user_name": "MR.420\\u00A9 ", "geo": null, "id": 148694958851899400, "id_str": "148694958851899392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693809315/SAM_4916_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693809315/SAM_4916_normal.JPG", "source": "<a href="http://aplus-app.com" rel="nofollow">A.plus for BlackBerry</a>", "text": "Sperm + egg #biology ... What you mean forget dinosaurs?? RT @BaybiiMommii: @Pope_Sativa Forget dinosaurs. Explain how u came to be.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:23:07 +0000", "from_user": "taylakidrauhl", "from_user_id": 374774618, "from_user_id_str": "374774618", "from_user_name": "Tayla Ellis", "geo": null, "id": 148694841474301950, "id_str": "148694841474301952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700904139/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700904139/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Kiss me if I'm wrong but dinosaurs still exist, right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:22:59 +0000", "from_user": "MorbidPlus", "from_user_id": 160787347, "from_user_id_str": "160787347", "from_user_name": "Andrew Wray", "geo": null, "id": 148694806623813630, "id_str": "148694806623813632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1675146824/294885_546990650594_140301648_30994778_857023078_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675146824/294885_546990650594_140301648_30994778_857023078_n_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "An orgy of dinosaurs. TriShareACock.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:22:50 +0000", "from_user": "AlleyLuppy", "from_user_id": 108346048, "from_user_id_str": "108346048", "from_user_name": "Alice Lupton", "geo": null, "id": 148694772226334720, "id_str": "148694772226334721", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1601057756/munch_2011_07_10_181206_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601057756/munch_2011_07_10_181206_normal.png", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Only @5taceySolomon would talk about turkey/ham dinosaurs on @BBCRadio1 :') #EssexFtw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:21:43 +0000", "from_user": "CHUBU_SLICE", "from_user_id": 26110354, "from_user_id_str": "26110354", "from_user_name": "Chubu Slice", "geo": null, "id": 148694488502632450, "id_str": "148694488502632449", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1654168468/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654168468/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "#SometimesIWonder Dinosaurs.. Really?? Gtfoh!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:21:35 +0000", "from_user": "SarahSkizzle", "from_user_id": 312805114, "from_user_id_str": "312805114", "from_user_name": "Sarah Kennedy", "geo": null, "id": 148694454964977660, "id_str": "148694454964977664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1630706331/316570_10150528747882942_713262941_11638936_385653706_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630706331/316570_10150528747882942_713262941_11638936_385653706_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @selomaba: Why your booty look like oatmeal with the dinosaurs in it?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:21:08 +0000", "from_user": "BaybiiMommii", "from_user_id": 291656923, "from_user_id_str": "291656923", "from_user_name": "Mosetsana Senne", "geo": null, "id": 148694344164057100, "id_str": "148694344164057088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698838267/331623014_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698838267/331623014_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@Pope_Sativa Forget dinosaurs. Explain how u came to be.", "to_user": "Pope_Sativa", "to_user_id": 236606141, "to_user_id_str": "236606141", "to_user_name": "MR.420\\u00A9 ", "in_reply_to_status_id": 148693034077392900, "in_reply_to_status_id_str": "148693034077392898"}, +{"created_at": "Mon, 19 Dec 2011 09:20:36 +0000", "from_user": "damonayoung", "from_user_id": 361182963, "from_user_id_str": "361182963", "from_user_name": "Damon Young", "geo": null, "id": 148694206515384320, "id_str": "148694206515384320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1539168195/blue_shirt_200_x_200_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1539168195/blue_shirt_200_x_200_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ERN_Malleyscrub: The terror-didactical - a winged beast who lectured all the dinosaurs while flying. This is the real reason dinosaurs died out. #artwiculate", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:20:01 +0000", "from_user": "wwwfmrinfo", "from_user_id": 222762849, "from_user_id_str": "222762849", "from_user_name": "FM-R Info", "geo": null, "id": 148694060205490180, "id_str": "148694060205490176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1182244881/fmr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1182244881/fmr_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ESNSnl: Due to studio commitments Totally Enormous Extinct Dinosaurs cancelled their showcase at #ESNS12, but @ClockOpera is added to the bill!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:19:20 +0000", "from_user": "ERN_Malleyscrub", "from_user_id": 22607317, "from_user_id_str": "22607317", "from_user_name": "David B Johnston", "geo": null, "id": 148693888763306000, "id_str": "148693888763305984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1552936262/ern_malley_iphone_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552936262/ern_malley_iphone_pic_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "The terror-didactical - a winged beast who lectured all the dinosaurs while flying. This is the real reason dinosaurs died out. #artwiculate", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:19:11 +0000", "from_user": "jquiabby_96", "from_user_id": 327043884, "from_user_id_str": "327043884", "from_user_name": "Jquia Watson", "geo": null, "id": 148693850247004160, "id_str": "148693850247004161", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1616495844/WS0w6H7v_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616495844/WS0w6H7v_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Rawr does not mean I love you in dinosaur .. Have u watched jurassic park? When the dinosaurs come and say rawr they not saying I love you", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:18:58 +0000", "from_user": "hana_nached", "from_user_id": 261760764, "from_user_id_str": "261760764", "from_user_name": "HanaNached ", "geo": null, "id": 148693797742718980, "id_str": "148693797742718976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699580610/613_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699580610/613_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:18:47 +0000", "from_user": "MateCapodeferro", "from_user_id": 59653559, "from_user_id_str": "59653559", "from_user_name": "Mateus Capodeferro", "geo": null, "id": 148693750175121400, "id_str": "148693750175121409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1622245866/215993_178384998878675_100001215273632_438540_3329159_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622245866/215993_178384998878675_100001215273632_438540_3329159_n_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/Qs9hFQPY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:18:34 +0000", "from_user": "productof1970", "from_user_id": 165855816, "from_user_id_str": "165855816", "from_user_name": "debz saunders", "geo": null, "id": 148693696240549900, "id_str": "148693696240549888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1572436481/P1000148_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572436481/P1000148_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Do not have fear of peoples ignorance. Our children with PDA are the future - the ignorant ones r the dinosaurs, we know wot happend 2 them", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:18:03 +0000", "from_user": "SirDewie", "from_user_id": 313850250, "from_user_id_str": "313850250", "from_user_name": "Lewis Mcquaid", "geo": null, "id": 148693566200356860, "id_str": "148693566200356866", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Demize99 more maps, dinosaurs, a capture the flag game mode, more co-op missions :)", "to_user": "Demize99", "to_user_id": 50000478, "to_user_id_str": "50000478", "to_user_name": "Alan Kertz", "in_reply_to_status_id": 148685595944824830, "in_reply_to_status_id_str": "148685595944824832"}, +{"created_at": "Mon, 19 Dec 2011 09:17:31 +0000", "from_user": "mediocrecity", "from_user_id": 426479977, "from_user_id_str": "426479977", "from_user_name": "Richard Helder", "geo": null, "id": 148693433857490940, "id_str": "148693433857490944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1684468758/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684468758/avatar_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "RT @thecairos: Last Dinosaurs video clip for \"Zoom\" is almost Channel V's ripe clip of the week!! Click on the link and like it... http://t.co/4j9EG8tU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:17:29 +0000", "from_user": "Catcch", "from_user_id": 19241776, "from_user_id_str": "19241776", "from_user_name": "Catcch", "geo": null, "id": 148693425812807680, "id_str": "148693425812807681", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1653171701/c4t_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653171701/c4t_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@basvanduren RT @ESNSnl Due to studio commitments Totally Enormous Extinct Dinosaurs cancelled their showcase at #ESNS12", "to_user": "basvanduren", "to_user_id": 15258856, "to_user_id_str": "15258856", "to_user_name": "Bas van Duren"}, +{"created_at": "Mon, 19 Dec 2011 09:16:34 +0000", "from_user": "napickles", "from_user_id": 254165541, "from_user_id_str": "254165541", "from_user_name": "Dr Neil Pickles", "geo": null, "id": 148693194400477200, "id_str": "148693194400477184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1469927585/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1469927585/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "New Scientist - male ostriches and other evolutionary ancient birds can only maintain an erection for a few seconds. Probably dinosaurs also", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:16:20 +0000", "from_user": "meowy24", "from_user_id": 50029869, "from_user_id_str": "50029869", "from_user_name": "Semper", "geo": null, "id": 148693133343981570, "id_str": "148693133343981568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1583296564/Raptor_Kitten_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583296564/Raptor_Kitten_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/fNkFQWae but i want Ben and Jerry's to have dinosaurs in again :(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:15:28 +0000", "from_user": "Discredia", "from_user_id": 401303616, "from_user_id_str": "401303616", "from_user_name": "Florian Varga", "geo": null, "id": 148692916389429250, "id_str": "148692916389429249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1614072443/Getting_my_hair_cut_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1614072443/Getting_my_hair_cut_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@CHRISDJMOYLES I cant believe you havent had smileys or dinosaurs! Listening to radio1. Love @5taceySolomon", "to_user": "CHRISDJMOYLES", "to_user_id": 19982092, "to_user_id_str": "19982092", "to_user_name": "Chris Moyles"}, +{"created_at": "Mon, 19 Dec 2011 09:14:23 +0000", "from_user": "ElectronicsFLNW", "from_user_id": 399875912, "from_user_id_str": "399875912", "from_user_name": "ElectronicsFLNW", "geo": null, "id": 148692643596087300, "id_str": "148692643596087296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1610397295/1319779743_1282113943_114358898_3-learn-science-while-u-have-fun-robotics-mechanics-and-electronics-for-kids-7-14yrs-delhi-1282113943_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610397295/1319779743_1282113943_114358898_3-learn-science-while-u-have-fun-robotics-mechanics-and-electronics-for-kids-7-14yrs-delhi-1282113943_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "75% off: Ten Little Dinosaurs Picture Book (Wiggle Eyes)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:13:30 +0000", "from_user": "NewtonRosie543", "from_user_id": 372424086, "from_user_id_str": "372424086", "from_user_name": "Rosie Newton", "geo": null, "id": 148692421071474700, "id_str": "148692421071474688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700514288/pizap.com13242285422871_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700514288/pizap.com13242285422871_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "todaya friend andihad a discussion about dinosaurs anddecided that t-Rex were only angry because there arms were too short to hug eachother", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:12:38 +0000", "from_user": "devinatriw", "from_user_id": 101149687, "from_user_id_str": "101149687", "from_user_name": "Devin\\u0251 Tri Wul\\u0251nd\\u0251ri", "geo": null, "id": 148692201789063170, "id_str": "148692201789063168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701847296/IMG_0891_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701847296/IMG_0891_normal.JPG", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/nz0l1UaR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:10:25 +0000", "from_user": "foresthorn", "from_user_id": 22530827, "from_user_id_str": "22530827", "from_user_name": "Forest Horn", "geo": +{"coordinates": [45.3237,-107.3541], "type": "Point"}, "id": 148691645662117900, "id_str": "148691645662117888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699166693/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699166693/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@TheKidJesus: Missing the days when buffalo roamed free\\u201D #missingthedays when dinosaurs roamed Pangea", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:09:51 +0000", "from_user": "mattthomsom", "from_user_id": 328022052, "from_user_id_str": "328022052", "from_user_name": "Matt Thomson", "geo": null, "id": 148691503202578430, "id_str": "148691503202578433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1587653554/XBEC8ohT_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587653554/XBEC8ohT_normal", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @courtypeach: So I just found vans... WITH DINOSAURS ON! http://t.co/mCo0pX7D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:07:27 +0000", "from_user": "Neno_Tha_Don", "from_user_id": 153128627, "from_user_id_str": "153128627", "from_user_name": "Neno Gambino", "geo": null, "id": 148690900623704060, "id_str": "148690900623704065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694058977/imagejpeg_2_4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694058977/imagejpeg_2_4_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "The myth of \"bigfoot\" .... Shit if there were dinosaurs, what u think", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:05:06 +0000", "from_user": "_yuriix3", "from_user_id": 261623347, "from_user_id_str": "261623347", "from_user_name": "CianaRuss\\u2661", "geo": null, "id": 148690307356168200, "id_str": "148690307356168192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697903278/390831_2285066296072_1531335661_31864202_2042965970_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697903278/390831_2285066296072_1531335661_31864202_2042965970_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:04:30 +0000", "from_user": "CharlieReeder", "from_user_id": 44681657, "from_user_id_str": "44681657", "from_user_name": "SydneyRoseDesigns", "geo": null, "id": 148690155715301380, "id_str": "148690155715301376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1559432028/Photo_on_2011-09-24_at_15.19_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1559432028/Photo_on_2011-09-24_at_15.19_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", "text": "And the ones is covered in dinosaurs!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:03:16 +0000", "from_user": "tiepmasheen", "from_user_id": 113099225, "from_user_id_str": "113099225", "from_user_name": "S. Hartlooper", "geo": null, "id": 148689848134402050, "id_str": "148689848134402048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700012100/Foto_op_30-11-2011_om_20.22_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700012100/Foto_op_30-11-2011_om_20.22_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ESNSnl: Due to studio commitments Totally Enormous Extinct Dinosaurs cancelled their showcase at #ESNS12, but @ClockOpera is added to the bill!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:02:38 +0000", "from_user": "zwar", "from_user_id": 18803207, "from_user_id_str": "18803207", "from_user_name": "Alex van der Hulst", "geo": null, "id": 148689688507592700, "id_str": "148689688507592704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1634973114/alex_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634973114/alex_bigger_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Totally Enormous Extinct Dinosaurs gecancelled op ESNS, maar Clock Opera is een sterke vervanger", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:00:05 +0000", "from_user": "_filemon_", "from_user_id": 171081694, "from_user_id_str": "171081694", "from_user_name": "Filemon Godam Lexa", "geo": null, "id": 148689044732264450, "id_str": "148689044732264450", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684760452/Capture16_51_51_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684760452/Capture16_51_51_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @time2skate: Deck on eBay PRO COMPLETE Skate Board Dinosaurs Stickers Maple Deck 7.75\": US $29.99 (0 Bid) End Date: Monday D... http://t.co/OTr9STlu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 08:59:12 +0000", "from_user": "iamkiahlahorra", "from_user_id": 413840633, "from_user_id_str": "413840633", "from_user_name": "kirstene lahorra", "geo": null, "id": 148688821020655600, "id_str": "148688821020655616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1641779208/309400_257976580911796_100000983689927_786289_1963780528_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641779208/309400_257976580911796_100000983689927_786289_1963780528_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Kiss me if I'm wrong. but dinosaurs do exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:58:07 +0000", "from_user": "radjazz_f77", "from_user_id": 37570127, "from_user_id_str": "37570127", "from_user_name": "Radiante Frank", "geo": null, "id": 148688549212983300, "id_str": "148688549212983296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1676042951/IMG00288-20111205-1749_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676042951/IMG00288-20111205-1749_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:57:03 +0000", "from_user": "M4dDud3", "from_user_id": 83850307, "from_user_id_str": "83850307", "from_user_name": "Mohannad Sweity", "geo": null, "id": 148688280471347200, "id_str": "148688280471347200", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1381510929/0c662f94-ee56-49a7-9002-d5dbdd2c91ef_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1381510929/0c662f94-ee56-49a7-9002-d5dbdd2c91ef_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@Demize99 Dinosaurs ?", "to_user": "Demize99", "to_user_id": 50000478, "to_user_id_str": "50000478", "to_user_name": "Alan Kertz", "in_reply_to_status_id": 148685595944824830, "in_reply_to_status_id_str": "148685595944824832"}, +{"created_at": "Mon, 19 Dec 2011 08:57:03 +0000", "from_user": "tmart856", "from_user_id": 24336941, "from_user_id_str": "24336941", "from_user_name": "Taylor Martin", "geo": null, "id": 148688279645065200, "id_str": "148688279645065216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693715098/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693715098/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@cwatt7 kiss me if I'm wrong, but dinosaurs still exist right? #badpickuplines", "to_user": "cwatt7", "to_user_id": 211566749, "to_user_id_str": "211566749", "to_user_name": "Chase Watterson", "in_reply_to_status_id": 148684107658965000, "in_reply_to_status_id_str": "148684107658964992"}, +{"created_at": "Mon, 19 Dec 2011 08:56:57 +0000", "from_user": "ToysDiscountPri", "from_user_id": 416180527, "from_user_id_str": "416180527", "from_user_name": "ToysDiscountPrices", "geo": null, "id": 148688254407942140, "id_str": "148688254407942144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1646543511/41dhfd6AF0L._SL500_AA300__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646543511/41dhfd6AF0L._SL500_AA300__normal.jpg", "source": "<a href="http://toysdiscountprices.com/" rel="nofollow">ToysDiscountPrices</a>", "text": "http://t.co/VYuihvrY Discount toy dinosaurs kids - Magnetic Dinosaur Bingo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:55:21 +0000", "from_user": "Seritartv", "from_user_id": 431702449, "from_user_id_str": "431702449", "from_user_name": "Serita Zoch", "geo": null, "id": 148687852681699330, "id_str": "148687852681699329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681034464/hssnkcjt25_134660913-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681034464/hssnkcjt25_134660913-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dinosaurs Next Exit - Prehistoric Parks [VHS]: http://t.co/UAUMwZmH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:54:34 +0000", "from_user": "FairSkined_Vick", "from_user_id": 156010916, "from_user_id_str": "156010916", "from_user_name": "Victor Russell", "geo": null, "id": 148687658040836100, "id_str": "148687658040836096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1673766359/2011-09-16_17.30.20_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673766359/2011-09-16_17.30.20_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@Quashei I ain't no dinosaurs got sick", "to_user": "Quashei", "to_user_id": 141758493, "to_user_id_str": "141758493", "to_user_name": "[Q] \\u2665 ", "in_reply_to_status_id": 148687272609460220, "in_reply_to_status_id_str": "148687272609460224"}, +{"created_at": "Mon, 19 Dec 2011 08:53:22 +0000", "from_user": "ironincdance", "from_user_id": 406427469, "from_user_id_str": "406427469", "from_user_name": "Jennifer", "geo": null, "id": 148687355912523780, "id_str": "148687355912523777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1625781784/Jen_headshot_b_w_by_Mark_Demeny_small_size_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1625781784/Jen_headshot_b_w_by_Mark_Demeny_small_size_normal.jpg", "source": "<a href="http://www.mailchimp.com" rel="nofollow">MailChimp</a>", "text": "Jennifer Irons Dance News - Best Choreography Award, Dinosaurs and ACE Funding - http://t.co/ZHHmRkZp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:53:06 +0000", "from_user": "ptoadstool", "from_user_id": 35147423, "from_user_id_str": "35147423", "from_user_name": "Andrew Stuiber", "geo": null, "id": 148687288820449280, "id_str": "148687288820449280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697183638/GentaPickerchu_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697183638/GentaPickerchu_normal.png", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "@GigaBeetle Movie is NOTHING like the TV Show. Like, not even remotely related apart from having dinosaurs as main characters.", "to_user": "GigaBeetle", "to_user_id": 26590084, "to_user_id_str": "26590084", "to_user_name": "\\u2714 Verified Wizard", "in_reply_to_status_id": 148686516594540540, "in_reply_to_status_id_str": "148686516594540544"}, +{"created_at": "Mon, 19 Dec 2011 08:52:42 +0000", "from_user": "bijzondereblik", "from_user_id": 299043965, "from_user_id_str": "299043965", "from_user_name": "judith de jonge", "geo": null, "id": 148687182868131840, "id_str": "148687182868131840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701759963/14082009451_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701759963/14082009451_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "They are like dinosaurs! http://t.co/zS7qp4wS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:49:03 +0000", "from_user": "ToysDiscountPri", "from_user_id": 416180527, "from_user_id_str": "416180527", "from_user_name": "ToysDiscountPrices", "geo": null, "id": 148686268107210750, "id_str": "148686268107210753", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1646543511/41dhfd6AF0L._SL500_AA300__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646543511/41dhfd6AF0L._SL500_AA300__normal.jpg", "source": "<a href="http://toysdiscountprices.com/" rel="nofollow">ToysDiscountPrices</a>", "text": "http://t.co/bCR7UAUr Discount dinosaur toys kids - Crocodile Creek 7 inch Playball - Dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:48:58 +0000", "from_user": "rickycatto", "from_user_id": 14112439, "from_user_id_str": "14112439", "from_user_name": "Ricky Catto", "geo": null, "id": 148686248138117120, "id_str": "148686248138117120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1599666548/ace_of_clubs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599666548/ace_of_clubs_normal.jpg", "source": "<a href="http://ping.fm/" rel="nofollow">Ping.fm</a>", "text": "Thesaurus - The most synonymous of all the dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:48:46 +0000", "from_user": "Louanneqnt", "from_user_id": 440226334, "from_user_id_str": "440226334", "from_user_name": "Louanne Scahill", "geo": null, "id": 148686196355239940, "id_str": "148686196355239936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700601706/large_00lK051xCFe_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700601706/large_00lK051xCFe_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "LEGO Dino Attack Iron Predator vs. T-Rex: Iron Predator takes on the T-Rex! The king of the mutant dinosaurs is ... http://t.co/D9pO5mLL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:48:32 +0000", "from_user": "Uncle_Nan", "from_user_id": 218270107, "from_user_id_str": "218270107", "from_user_name": "Josh Mullins", "geo": null, "id": 148686136670289920, "id_str": "148686136670289920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1597004383/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1597004383/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @Haylisandyshoes: Dinosaurs are cool", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:47:17 +0000", "from_user": "vintagebonfire", "from_user_id": 63859750, "from_user_id_str": "63859750", "from_user_name": "Mama Reefa ~", "geo": null, "id": 148685822244306940, "id_str": "148685822244306944", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701478298/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701478298/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "#TeamCalibrook, Unicorns & Dinosaurs Do it!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:46:32 +0000", "from_user": "emilyC3claire", "from_user_id": 399260959, "from_user_id_str": "399260959", "from_user_name": "Emily Blewett", "geo": null, "id": 148685633790021630, "id_str": "148685633790021632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693762815/IMG-20111211-00168_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693762815/IMG-20111211-00168_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @JanelleFeltz5: ''And on the 3rd day, god invented the remington full action rifle, so man could fight the dinosaurs... And the homosexuals.'' :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:46:27 +0000", "from_user": "rachett_89", "from_user_id": 355244979, "from_user_id_str": "355244979", "from_user_name": "Jessica mccabe", "geo": null, "id": 148685612579426300, "id_str": "148685612579426304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686676834/46078_1585640565006_1355545903_31577144_6205063_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686676834/46078_1585640565006_1355545903_31577144_6205063_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:45:33 +0000", "from_user": "poeticenigma", "from_user_id": 16335781, "from_user_id_str": "16335781", "from_user_name": "poeticenigma", "geo": null, "id": 148685386116366340, "id_str": "148685386116366336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/761552610/1203568_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/761552610/1203568_normal.jpg", "source": "<a href="http://www.DynamicTweets.com" rel="nofollow">Dynamic Tweets</a>", "text": "Dinasaurs in Space - http://t.co/01mKXtX6 #art #abstract #photoshop #graphic design #dinosaurs #RT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:44:15 +0000", "from_user": "Linocc", "from_user_id": 89995953, "from_user_id_str": "89995953", "from_user_name": "Lino C\\u00E1ceres", "geo": null, "id": 148685058709004300, "id_str": "148685058709004288", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690070742/388158_10150406682672032_537522031_8836537_1389343975_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690070742/388158_10150406682672032_537522031_8836537_1389343975_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "El set tiene desde Edith Piaff hasta Illya Kuryaki pasando por Totally Enormous Extinct Dinosaurs :) #Linohaceunset", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:43:42 +0000", "from_user": "Irregularcog", "from_user_id": 26572792, "from_user_id_str": "26572792", "from_user_name": "ScoL", "geo": null, "id": 148684923392360450, "id_str": "148684923392360448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1134051910/termekip_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1134051910/termekip_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@GigaBeetle freaky human faced expresive dinosaurs (I never actually saw it)", "to_user": "GigaBeetle", "to_user_id": 26590084, "to_user_id_str": "26590084", "to_user_name": "\\u2714 Verified Wizard", "in_reply_to_status_id": 148684212520751100, "in_reply_to_status_id_str": "148684212520751104"}, +{"created_at": "Mon, 19 Dec 2011 08:43:29 +0000", "from_user": "Xman_718", "from_user_id": 222648374, "from_user_id_str": "222648374", "from_user_name": "Xavier Blackman", "geo": null, "id": 148684866966401020, "id_str": "148684866966401024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1596471652/catch_GMU_Vs_VCU_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596471652/catch_GMU_Vs_VCU_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @debonair_pierre: LIES!!! I'm one of the surviving Boifrannasaurus Bests...#boo ha RT@toolegit2quitt I think good boyfriends went extinct with the dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:42:54 +0000", "from_user": "debonair_pierre", "from_user_id": 301260585, "from_user_id_str": "301260585", "from_user_name": "Pierre Durant", "geo": null, "id": 148684722585878530, "id_str": "148684722585878528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1667456656/DreamyDebonair_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667456656/DreamyDebonair_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "LIES!!! I'm one of the surviving Boifrannasaurus Bests...#boo ha RT@toolegit2quitt I think good boyfriends went extinct with the dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:41:56 +0000", "from_user": "ToysDiscountPri", "from_user_id": 416180527, "from_user_id_str": "416180527", "from_user_name": "ToysDiscountPrices", "geo": null, "id": 148684479387533300, "id_str": "148684479387533312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1646543511/41dhfd6AF0L._SL500_AA300__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646543511/41dhfd6AF0L._SL500_AA300__normal.jpg", "source": "<a href="http://toysdiscountprices.com/" rel="nofollow">ToysDiscountPrices</a>", "text": "http://t.co/X4jIyaVM Discount toddler bath toy - Edushape Magic Creations Bath Playset - Dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:40:21 +0000", "from_user": "preannounce", "from_user_id": 146114076, "from_user_id_str": "146114076", "from_user_name": "PreFeed | Unfiltered", "geo": null, "id": 148684078869254140, "id_str": "148684078869254144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/918994044/tech_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/918994044/tech_normal.jpg", "source": "<a href="http://null.edu/" rel="nofollow">PreFeed Updater</a>", "text": "[MVID] 16Bit-Dinosaurs-DDC-x264-2011-FRAY [36.4MB/1F][56s ago]", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:39:18 +0000", "from_user": "dino_claire", "from_user_id": 33480802, "from_user_id_str": "33480802", "from_user_name": "Claire Leong", "geo": null, "id": 148683813260771330, "id_str": "148683813260771329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683484140/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683484140/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@NicholasRedLam HAHAH a bit too late for that! I'm already obsessed with dinosaurs!!", "to_user": "NicholasRedLam", "to_user_id": 31424229, "to_user_id_str": "31424229", "to_user_name": "Nicholas 'Red' Lam", "in_reply_to_status_id": 148683652367253500, "in_reply_to_status_id_str": "148683652367253504"}, +{"created_at": "Mon, 19 Dec 2011 08:38:44 +0000", "from_user": "Niza_Club", "from_user_id": 20470260, "from_user_id_str": "20470260", "from_user_name": "Niza Club Radio", "geo": null, "id": 148683672290205700, "id_str": "148683672290205696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1529729228/logo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1529729228/logo_normal.gif", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Last Dinosaurs - Zoom http://t.co/s5tRCdkQ v\\u00EDa @youtube", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:38:39 +0000", "from_user": "NicholasRedLam", "from_user_id": 31424229, "from_user_id_str": "31424229", "from_user_name": "Nicholas 'Red' Lam", "geo": null, "id": 148683652367253500, "id_str": "148683652367253504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1665557999/317007_10150490430721393_719326392_10835953_1368621121_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665557999/317007_10150490430721393_719326392_10835953_1368621121_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@dino_claire DO IT. OR YOU WILL GROW UP OBSESSED WITH DINOSAURS BUT TOO AFRAID TO PURSUE YOUR LOVE FOR THEM.", "to_user": "dino_claire", "to_user_id": 33480802, "to_user_id_str": "33480802", "to_user_name": "Claire Leong", "in_reply_to_status_id": 148683086039748600, "in_reply_to_status_id_str": "148683086039748608"}, +{"created_at": "Mon, 19 Dec 2011 08:38:13 +0000", "from_user": "TurkiBdr", "from_user_id": 249228134, "from_user_id_str": "249228134", "from_user_name": "Turki Badr", "geo": null, "id": 148683542073835520, "id_str": "148683542073835520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1587432198/5e5bdad5-1dc3-4254-a915-53d6b7d2343b_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587432198/5e5bdad5-1dc3-4254-a915-53d6b7d2343b_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Montberte: Videos - Dinosaurs Through History and Walking With Dinosaurs http://t.co/qiBIhBoT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:36:47 +0000", "from_user": "ElijahGorham1", "from_user_id": 418505362, "from_user_id_str": "418505362", "from_user_name": "Elijah Gorham", "geo": null, "id": 148683181795721200, "id_str": "148683181795721216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699188773/310716_189132954503646_100002208284458_397600_1101965358_n__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699188773/310716_189132954503646_100002208284458_397600_1101965358_n__1__normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Watchin Walking with Dinosaurs wit my bros? This shows wack...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:36:40 +0000", "from_user": "irhamhadi", "from_user_id": 96298328, "from_user_id_str": "96298328", "from_user_name": "News Update", "geo": null, "id": 148683152683057150, "id_str": "148683152683057152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1174139252/danautoba_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1174139252/danautoba_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dinosaurs In The Bible: \\n\\n\\n\\nDonald asks\\u2026\\n\\n\\nDo you think men lived at the same time as dinosaurs?\\nPersonally I do... http://t.co/lDakVHlB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:35:33 +0000", "from_user": "Boo_No_Fugazi", "from_user_id": 378350334, "from_user_id_str": "378350334", "from_user_name": "\\u265BBoo Daniels\\u2122", "geo": null, "id": 148682869584314370, "id_str": "148682869584314368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684566799/468832343_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684566799/468832343_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @jfuckingweb: Watching Jurassic park cause dinosaurs are cool.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:35:01 +0000", "from_user": "jfuckingweb", "from_user_id": 314387288, "from_user_id_str": "314387288", "from_user_name": "Jason Webster", "geo": null, "id": 148682735941197820, "id_str": "148682735941197824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1678378350/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678378350/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Watching Jurassic park cause dinosaurs are cool.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:34:02 +0000", "from_user": "jurylady5", "from_user_id": 425580734, "from_user_id_str": "425580734", "from_user_name": "gail simmons", "geo": null, "id": 148682489613922300, "id_str": "148682489613922304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Montberte: Videos - Dinosaurs Through History and Walking With Dinosaurs http://t.co/qiBIhBoT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:32:57 +0000", "from_user": "Montberte", "from_user_id": 193318094, "from_user_id_str": "193318094", "from_user_name": "Steve Cushing", "geo": null, "id": 148682215558103040, "id_str": "148682215558103040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1491421052/steve_august_2011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1491421052/steve_august_2011_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Videos - Dinosaurs Through History and Walking With Dinosaurs http://t.co/qiBIhBoT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:32:10 +0000", "from_user": "T_Kai_10", "from_user_id": 315056944, "from_user_id_str": "315056944", "from_user_name": "Travis Korn", "geo": null, "id": 148682018157375500, "id_str": "148682018157375489", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670383071/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670383071/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @kandyyykoated: And on the 3rd day, God created the Remington bolt action rifle...to fight off the dinosaurs and the homosexuals", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:30:26 +0000", "from_user": "evansthan", "from_user_id": 205397950, "from_user_id_str": "205397950", "from_user_name": "Jonathan Evans", "geo": null, "id": 148681583392587780, "id_str": "148681583392587776", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698597464/bones_love_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698597464/bones_love_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Zombies aliens vampires dinosaurs \\u2665", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:29:37 +0000", "from_user": "rottenlilmonstr", "from_user_id": 393058868, "from_user_id_str": "393058868", "from_user_name": "Jasmine Hernandez", "geo": null, "id": 148681377846542340, "id_str": "148681377846542336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699619603/Jon99B2n_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699619603/Jon99B2n_normal", "source": "<a href="http://www.myyearbook.com/" rel="nofollow">myYearbook Share</a>", "text": "Q: How do you think the dinosaurs died?A: they didn't, they just transported to...: http://t.co/bZQCcFsr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:29:31 +0000", "from_user": "OohCrystal", "from_user_id": 45295127, "from_user_id_str": "45295127", "from_user_name": "miss g ", "geo": null, "id": 148681352747810800, "id_str": "148681352747810816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1670755583/OohCrystal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670755583/OohCrystal_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "an asteroid hit earth 165 million years ago causing dinosaurs to become extinct", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:28:33 +0000", "from_user": "maniatoys", "from_user_id": 434918712, "from_user_id_str": "434918712", "from_user_name": "maniatoys", "geo": null, "id": 148681109016809470, "id_str": "148681109016809473", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688963697/maniatoys_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688963697/maniatoys_normal.png", "source": "<a href="http://maniatoys.com" rel="nofollow">maniatoys</a>", "text": "Melissa & Doug Dinosaurs 48 pcs Floor Puzzle http://t.co/Q75t8oV3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:28:16 +0000", "from_user": "MattSchonert", "from_user_id": 14967279, "from_user_id_str": "14967279", "from_user_name": "Matt (Econ) Schonert", "geo": null, "id": 148681036119818240, "id_str": "148681036119818240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1644807776/desk_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644807776/desk_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Gingrich and Romney are \"Limo Liberals at best and in reality, Big Government Dinosaurs\" http://t.co/BoAQU4hf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:28:09 +0000", "from_user": "widardf", "from_user_id": 218069038, "from_user_id_str": "218069038", "from_user_name": "Wida Rosyidah", "geo": null, "id": 148681007829237760, "id_str": "148681007829237760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1592890473/s_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592890473/s_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Photo: dinosaurs-roaming-the-earth: http://t.co/Wq8ZpKc0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:25:38 +0000", "from_user": "Latashiacti", "from_user_id": 431718746, "from_user_id_str": "431718746", "from_user_name": "Latashia Kluver", "geo": null, "id": 148680374602567680, "id_str": "148680374602567681", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681070207/eoffkevsdx_122939152-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681070207/eoffkevsdx_122939152-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The king of the dinosaurs: This book is for children who love dinosaurs and my 5 years old son who drew the dino... http://t.co/m2VeIl55", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:25:06 +0000", "from_user": "WadeJess", "from_user_id": 339398403, "from_user_id_str": "339398403", "from_user_name": "Jessica Wade", "geo": null, "id": 148680243203424260, "id_str": "148680243203424256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1667551263/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667551263/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Friends, coworkers, and last day of the dinosaurs made my life a lot better today", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:24:53 +0000", "from_user": "fluxfm_stuggi", "from_user_id": 58408700, "from_user_id_str": "58408700", "from_user_name": "FluxFM Playlist", "geo": null, "id": 148680186647425020, "id_str": "148680186647425024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1510125481/fluxfm-quadrat_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1510125481/fluxfm-quadrat_normal.png", "source": "<a href="http://www.motor.de" rel="nofollow">motor.de Playlist Stuggi</a>", "text": "19.12. 09:24 Uhr: Totally Enormous Extinct Dinosaurs \"Garden.\" http://t.co/gBfsngDr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:24:13 +0000", "from_user": "dlreloader", "from_user_id": 176045704, "from_user_id_str": "176045704", "from_user_name": "Anna Orlossi", "geo": null, "id": 148680019865108480, "id_str": "148680019865108480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Ice Age 3 Dawn of the Dinosaurs Movie Wallpaper: Ice Age 3 Dawn of the Dinosaurs Movie\\u2026 http://t.co/vsGKOn2N", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:24:10 +0000", "from_user": "dlreloader", "from_user_id": 176045704, "from_user_id_str": "176045704", "from_user_name": "Anna Orlossi", "geo": null, "id": 148680007361904640, "id_str": "148680007361904640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Ice Age 3 Dawn of the Dinosaurs Movie Wallpaper: Ice Age 3 Dawn of the Dinosaurs Movie\\u2026 http://t.co/PbsG9OuZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:23:21 +0000", "from_user": "Minus777", "from_user_id": 139631790, "from_user_id_str": "139631790", "from_user_name": "Peter", "geo": null, "id": 148679802293981200, "id_str": "148679802293981184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1080959962/Minus777-Sign_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1080959962/Minus777-Sign_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Stevewillhite So, you expect me to believe everyone is a descendant of Adam & Eve? Even though dinosaurs existed first? That's nonsense.", "to_user": "Stevewillhite", "to_user_id": 91191989, "to_user_id_str": "91191989", "to_user_name": "Steve Willhite", "in_reply_to_status_id": 148678235125841920, "in_reply_to_status_id_str": "148678235125841920"}, +{"created_at": "Mon, 19 Dec 2011 08:23:10 +0000", "from_user": "fluxfm_berlin", "from_user_id": 58404520, "from_user_id_str": "58404520", "from_user_name": "FluxFM Playlist", "geo": null, "id": 148679755435229200, "id_str": "148679755435229184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1510122863/fluxfm-quadrat_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1510122863/fluxfm-quadrat_normal.png", "source": "<a href="http://www.motor.de" rel="nofollow">motor.de</a>", "text": "19.12. 09:23 Uhr: Totally Enormous Extinct Dinosaurs \"Garden.\" http://t.co/tSCpy6Nd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:23:00 +0000", "from_user": "Tawnyaaft", "from_user_id": 431774089, "from_user_id_str": "431774089", "from_user_name": "Tawnya Bella", "geo": null, "id": 148679712674299900, "id_str": "148679712674299904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681183832/fhmf4o45cs_133208500-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681183832/fhmf4o45cs_133208500-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Thing in the Tub and Other Poems: Monsters, dinosaurs, fairies and superheroes: find them all in THE THING I... http://t.co/NhBNo6EX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:20:46 +0000", "from_user": "HannahFrames", "from_user_id": 49872362, "from_user_id_str": "49872362", "from_user_name": "Hannah Frames", "geo": null, "id": 148679149282791420, "id_str": "148679149282791424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1689327570/orange_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689327570/orange_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "This 40 year old virgin on \"Bad Sex\" is talking to the stripper about dinosaurs while getting a lap dance. Baaaaah!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:19:39 +0000", "from_user": "LouieGolk1", "from_user_id": 436368042, "from_user_id_str": "436368042", "from_user_name": "Louie Golk", "geo": null, "id": 148678871267553280, "id_str": "148678871267553280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692153000/ghf_normal.jpg", "profile_image_url_https": null, "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Death of the Dinosaurs [Earth Story]: http://t.co/0coFNCPb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:18:19 +0000", "from_user": "__TwatchMeShine", "from_user_id": 298612513, "from_user_id_str": "298612513", "from_user_name": "\\u2714 Verified Account", "geo": null, "id": 148678533059854340, "id_str": "148678533059854336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1537210273/denard_nd_me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1537210273/denard_nd_me_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "#SometimesIWonder\\tWhat Life Would Be Like If Dinosaurs Still Existed.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:17:57 +0000", "from_user": "mariahh02", "from_user_id": 126545552, "from_user_id_str": "126545552", "from_user_name": "maria munoz", "geo": null, "id": 148678440659320830, "id_str": "148678440659320832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1643094366/1317778439050_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643094366/1317778439050_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:17:32 +0000", "from_user": "Inspire_A_Life", "from_user_id": 404280824, "from_user_id_str": "404280824", "from_user_name": "Demontae Thompson", "geo": null, "id": 148678339010371600, "id_str": "148678339010371584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1637829295/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637829295/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "What would happen if we lived with the dinosaurs!??? :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:16:39 +0000", "from_user": "Kimberlocks", "from_user_id": 42059229, "from_user_id_str": "42059229", "from_user_name": "Kim Cardoso \\u2651", "geo": null, "id": 148678113377779700, "id_str": "148678113377779712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670490931/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670490931/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I wonder what the next era in life will be. Dinosaurs, caveman, Romans and Greeks, royals, western , modern and technology. #mindblown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:16:26 +0000", "from_user": "CorsetsNlace", "from_user_id": 333370537, "from_user_id_str": "333370537", "from_user_name": "Sexy Bitch", "geo": null, "id": 148678059028004860, "id_str": "148678059028004864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701779775/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701779775/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:14:11 +0000", "from_user": "drewalonto", "from_user_id": 248935511, "from_user_id_str": "248935511", "from_user_name": "Andrew Alonto", "geo": null, "id": 148677495045111800, "id_str": "148677495045111808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1684761523/Superman-sad_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684761523/Superman-sad_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#IWasThatKid who was always borrowing books about dinosaurs and the solar system at the library.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:12:50 +0000", "from_user": "MsBrownMouse", "from_user_id": 11594092, "from_user_id_str": "11594092", "from_user_name": "Ms Brown-Mouse", "geo": null, "id": 148677154924789760, "id_str": "148677154924789760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691670898/mouse-ears_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691670898/mouse-ears_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "Still looking for a teach yourself to play chess AP without dinosaurs #helpmeTwitter", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:12:39 +0000", "from_user": "NichKeasey", "from_user_id": 384049869, "from_user_id_str": "384049869", "from_user_name": "Nich Keasey", "geo": null, "id": 148677107831152640, "id_str": "148677107831152640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dinosaurs And Wild Animals are every kid's favourite at Christmas: Wildcat & Dinohistoria, two different fun and... http://t.co/GFAKev1G", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:12:26 +0000", "from_user": "OohCrystal", "from_user_id": 45295127, "from_user_id_str": "45295127", "from_user_name": "miss g ", "geo": null, "id": 148677055184240640, "id_str": "148677055184240640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1670755583/OohCrystal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670755583/OohCrystal_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "but seriously.... dinosaurs once existed!!! thats crazy to me.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:11:47 +0000", "from_user": "Tamarvwi", "from_user_id": 440202384, "from_user_id_str": "440202384", "from_user_name": "Tamar Murawski", "geo": null, "id": 148676890729787400, "id_str": "148676890729787392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700548646/lu4swzzbdy_124769521_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700548646/lu4swzzbdy_124769521_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Man Dinosaurs and the Bible [VHS]: http://t.co/8KiNOFDF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:11:11 +0000", "from_user": "shayneylovesyou", "from_user_id": 270232448, "from_user_id_str": "270232448", "from_user_name": "shayne hunter", "geo": null, "id": 148676740061999100, "id_str": "148676740061999104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1286144746/DSC01441_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1286144746/DSC01441_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:10:08 +0000", "from_user": "frannfrannb", "from_user_id": 423753815, "from_user_id_str": "423753815", "from_user_name": "Francisco Torres", "geo": null, "id": 148676473618841600, "id_str": "148676473618841600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1663273150/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663273150/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "And on the third day god created the Remington bolt-action rifle so that men could fight the dinosaurs... And the #homosexual... #amen", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:10:05 +0000", "from_user": "saraaahxoo", "from_user_id": 265104977, "from_user_id_str": "265104977", "from_user_name": "sarah shepeski", "geo": null, "id": 148676464060018700, "id_str": "148676464060018688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1656136553/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656136553/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @idkmybffjaamie: kiss me if I'm wrong, but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:08:04 +0000", "from_user": "stoptia", "from_user_id": 99819121, "from_user_id_str": "99819121", "from_user_name": "Christina", "geo": null, "id": 148675952707244030, "id_str": "148675952707244033", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/595764790/nastolatki_24_20091031_1772729348_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/595764790/nastolatki_24_20091031_1772729348_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Newborn Boys' JUST ONE YOU Made by Carter s \\u00AE 3pc Brown/Green Dinosaurs Cardigan Set 3M: http://t.co/Te1hVqKC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:07:53 +0000", "from_user": "Kate_Elizabeth_", "from_user_id": 217918996, "from_user_id_str": "217918996", "from_user_name": "Kate E Campbell", "geo": null, "id": 148675910533529600, "id_str": "148675910533529600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683921414/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683921414/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:07:29 +0000", "from_user": "_NoSuitForNana_", "from_user_id": 358157753, "from_user_id_str": "358157753", "from_user_name": "Sid Baker", "geo": null, "id": 148675809807319040, "id_str": "148675809807319040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1592265208/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592265208/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@tenaiyastweets what do you call a blind dinosaurs dog? Doyouthinkhesawysrex", "to_user": "tenaiyastweets", "to_user_id": 173041505, "to_user_id_str": "173041505", "to_user_name": "Tenaiya", "in_reply_to_status_id": 148593277627678720, "in_reply_to_status_id_str": "148593277627678720"}, +{"created_at": "Mon, 19 Dec 2011 08:06:58 +0000", "from_user": "toolegit2quitt", "from_user_id": 293875463, "from_user_id_str": "293875463", "from_user_name": "Stephanie Vazquez", "geo": null, "id": 148675676071931900, "id_str": "148675676071931904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670197961/Snapshot_20110509_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670197961/Snapshot_20110509_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "I think good boyfriends went extinct with the dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:05:24 +0000", "from_user": "Kimberlocks", "from_user_id": 42059229, "from_user_id_str": "42059229", "from_user_name": "Kim Cardoso \\u2651", "geo": null, "id": 148675283745128450, "id_str": "148675283745128448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670490931/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670490931/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "God I've never felt so sad! I want to cry!! poor Dinosaurs. Last day of the dinosaur is amazing. The earth is FASCINATING #ScienceRules", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:04:44 +0000", "from_user": "moviedb", "from_user_id": 45759584, "from_user_id_str": "45759584", "from_user_name": "Best selling movies", "geo": null, "id": 148675114672730100, "id_str": "148675114672730112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/455709160/film-reel-32x32_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/455709160/film-reel-32x32_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "SAVE $11.09 - Ice Age: Dawn of the Dinosaurs [Blu-ray] $18.90 http://t.co/UuosiUGU #sale #animation", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:04:40 +0000", "from_user": "U_Clever", "from_user_id": 414523054, "from_user_id_str": "414523054", "from_user_name": "U-Clever", "geo": null, "id": 148675098201698300, "id_str": "148675098201698305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1646165577/aa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646165577/aa_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Strange of Animals Which Life Before Dinosaurs (Permian Period) http://t.co/0VhGEfuz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:04:00 +0000", "from_user": "xSutera", "from_user_id": 412132428, "from_user_id_str": "412132428", "from_user_name": "StellaBelle\\u2605\\uC18C\\uC544", "geo": null, "id": 148674930354032640, "id_str": "148674930354032640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697939394/1C4p49Lj_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697939394/1C4p49Lj_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @CutiePieAri: @xSutera ~hugs you back and says in a choked-up voice~ It's sad cuz it's true, all the dinosaurs really are dead!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:03:53 +0000", "from_user": "yensuin", "from_user_id": 103674340, "from_user_id_str": "103674340", "from_user_name": "Audrey Yen-Suin", "geo": null, "id": 148674902432559100, "id_str": "148674902432559104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676711847/bitty_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676711847/bitty_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "I feel so bad for the dinosaurs :( stupid asteroids", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:03:51 +0000", "from_user": "Lara_Disco", "from_user_id": 20915465, "from_user_id_str": "20915465", "from_user_name": "Lara Disco", "geo": null, "id": 148674894236880900, "id_str": "148674894236880897", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1537169248/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1537169248/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Probably the best weekend ever... Totley planks, dewaele drumsticks and huge dinosaurs... #winning", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:03:08 +0000", "from_user": "timbrandon94", "from_user_id": 122636539, "from_user_id_str": "122636539", "from_user_name": "Tim Brandon", "geo": null, "id": 148674712401227780, "id_str": "148674712401227777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1534168951/Tim_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534168951/Tim_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "welcome to Terranova RT @CharlesSetia I thought Terranova was 85% about dinosaurs but it is actually the other way round.", "to_user": "CharlesSetia", "to_user_id": 267723759, "to_user_id_str": "267723759", "to_user_name": "Charles Setia", "in_reply_to_status_id": 148672793523912700, "in_reply_to_status_id_str": "148672793523912704"}, +{"created_at": "Mon, 19 Dec 2011 08:02:15 +0000", "from_user": "CutiePieAri", "from_user_id": 416707529, "from_user_id_str": "416707529", "from_user_name": "Ariele Soo", "geo": null, "id": 148674490270892030, "id_str": "148674490270892032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1647816654/anime-child_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647816654/anime-child_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@xSutera ~hugs you back and says in a choked-up voice~ It's sad cuz it's true, all the dinosaurs really are dead!", "to_user": "xSutera", "to_user_id": 412132428, "to_user_id_str": "412132428", "to_user_name": "StellaBelle\\u2605\\uC18C\\uC544", "in_reply_to_status_id": 148674019590287360, "in_reply_to_status_id_str": "148674019590287360"}, +{"created_at": "Mon, 19 Dec 2011 08:01:41 +0000", "from_user": "krissyfied", "from_user_id": 16752063, "from_user_id_str": "16752063", "from_user_name": "Kristel Ann Cruz", "geo": null, "id": 148674349493260300, "id_str": "148674349493260288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1660373542/krissy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660373542/krissy_normal.jpg", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "Home! It's raining lobsters and dinosaurs x_x (@ The Familia) http://t.co/ulxsgpao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:01:05 +0000", "from_user": "readertotz", "from_user_id": 23627490, "from_user_id_str": "23627490", "from_user_name": "readertotz", "geo": null, "id": 148674198175363070, "id_str": "148674198175363072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/92046197/B-w_baby_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/92046197/B-w_baby_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "readertotz: How Do Dinosaurs Eat Cookies? Jane Yolen & Mark Teague http://t.co/sWCgTe4D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:01:01 +0000", "from_user": "sinecta", "from_user_id": 102498803, "from_user_id_str": "102498803", "from_user_name": "sinecta", "geo": null, "id": 148674180328587260, "id_str": "148674180328587264", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://sinecta.com" rel="nofollow">sinecta</a>", "text": "http://t.co/x3Jgn6zq: Almanac: Dinosaurs http://t.co/R1SCnNf6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:59:41 +0000", "from_user": "Ella36257415987", "from_user_id": 417913466, "from_user_id_str": "417913466", "from_user_name": "Ella", "geo": null, "id": 148673844629078000, "id_str": "148673844629078016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1650310240/p17_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650310240/p17_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The World of the Dinosaurs: Whether you've got a free afternoon, you're on a long trip or you're ill in bed, it ... http://t.co/kVFBOY7C", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:58:45 +0000", "from_user": "Kimberlocks", "from_user_id": 42059229, "from_user_id_str": "42059229", "from_user_name": "Kim Cardoso \\u2651", "geo": null, "id": 148673609727082500, "id_str": "148673609727082496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670490931/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670490931/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Tired but I won't go to sleep until I finish the Last Day of the Dinosaurs. I'm so sad. I can't fathom that taking place. I'm so humbled", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:58:04 +0000", "from_user": "TheMarphy", "from_user_id": 171454866, "from_user_id_str": "171454866", "from_user_name": "Paul Whelan", "geo": null, "id": 148673436225515520, "id_str": "148673436225515520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1090510805/q736408684_8046_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1090510805/q736408684_8046_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MKPS001 @abcnews Absplutely awesome posting Princess Mindy....Ponting is a Dinosaur...but being to kind to Dinosaurs....", "to_user": "MKPS001", "to_user_id": 254438271, "to_user_id_str": "254438271", "to_user_name": "Mindy Pawsey", "in_reply_to_status_id": 148673053465915400, "in_reply_to_status_id_str": "148673053465915392"}, +{"created_at": "Mon, 19 Dec 2011 07:57:29 +0000", "from_user": "Kayyy_Dee", "from_user_id": 54459671, "from_user_id_str": "54459671", "from_user_name": "'\\u0C8C DreammCatchersss.", "geo": null, "id": 148673291064848400, "id_str": "148673291064848384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1309800956/CLHFF-A1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1309800956/CLHFF-A1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:56:06 +0000", "from_user": "LEiiGHx3UH", "from_user_id": 27490038, "from_user_id_str": "27490038", "from_user_name": "Leah Crowell", "geo": null, "id": 148672943176695800, "id_str": "148672943176695809", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/344623896/Me1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/344623896/Me1_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @StormyyRoss: Kiss me if I'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:53:52 +0000", "from_user": "brandileii", "from_user_id": 124082979, "from_user_id_str": "124082979", "from_user_name": "Brandi-Lei Smith", "geo": null, "id": 148672381890740220, "id_str": "148672381890740224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1260368563/Photo_on_2010-12-24_at_14.44_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1260368563/Photo_on_2010-12-24_at_14.44_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:53:38 +0000", "from_user": "nima1203", "from_user_id": 415281884, "from_user_id_str": "415281884", "from_user_name": "nima", "geo": null, "id": 148672323078201340, "id_str": "148672323078201344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1647962515/FacebookHomescreenImage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647962515/FacebookHomescreenImage_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Am watching the discovery channel OMG how the dinosaurs died and there world was destroyed", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:53:31 +0000", "from_user": "filmy_seriale", "from_user_id": 197400664, "from_user_id_str": "197400664", "from_user_name": "Filmy i Seriale", "geo": null, "id": 148672293881647100, "id_str": "148672293881647104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1135067546/reklama_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1135067546/reklama_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Film, #Serial: Epoka lodowcowa 3: Era dinozaur\\u00F3w - Ice Age: Dawn of the Dinosaurs (2009) [Dubbing] http://t.co/UPeBaJIs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:53:12 +0000", "from_user": "elinehulspas", "from_user_id": 211790397, "from_user_id_str": "211790397", "from_user_name": "Eline Hulspas", "geo": null, "id": 148672215318147070, "id_str": "148672215318147072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697055540/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697055540/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:53:10 +0000", "from_user": "linusallen", "from_user_id": 343048543, "from_user_id_str": "343048543", "from_user_name": "Linus", "geo": null, "id": 148672206937923600, "id_str": "148672206937923584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1462699052/Photo_on_2010-10-16_at_23.03_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1462699052/Photo_on_2010-10-16_at_23.03_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "liquids gone and now dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:52:34 +0000", "from_user": "nadyasamantha", "from_user_id": 416236222, "from_user_id_str": "416236222", "from_user_name": "Samantha", "geo": null, "id": 148672054500130800, "id_str": "148672054500130816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701813128/tumblr_luwddbg61g1r6gejwo1_250_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701813128/tumblr_luwddbg61g1r6gejwo1_250_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Human really never knew what colours dinosaurs were.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:52:03 +0000", "from_user": "jithinjb", "from_user_id": 55528394, "from_user_id_str": "55528394", "from_user_name": "JB", "geo": null, "id": 148671925005189120, "id_str": "148671925005189120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/874980008/100_7554new_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/874980008/100_7554new_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#IWasThatKid who thought that Dinosaurs shown in the film #JurassicPark wr real!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:51:25 +0000", "from_user": "PDS22", "from_user_id": 30323482, "from_user_id_str": "30323482", "from_user_name": "Paula Scott", "geo": null, "id": 148671766502440960, "id_str": "148671766502440960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1585906842/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585906842/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Watching Last Day of Dinosaurs on Discovery. #yepimanerd #learningstuff", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:51:18 +0000", "from_user": "abbarroo", "from_user_id": 83910691, "from_user_id_str": "83910691", "from_user_name": "alaa abbar", "geo": +{"coordinates": [21.5902,39.1247], "type": "Point"}, "id": 148671735665917950, "id_str": "148671735665917952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/664044117/CIMG0331_2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/664044117/CIMG0331_2_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@NoufHakeem @yarajazzy only that she was one person who ruled 4 only 2 yeas.. Them #hay2a min fa9eelat al dinosaurs...", "to_user": "NoufHakeem", "to_user_id": 95694312, "to_user_id_str": "95694312", "to_user_name": "NHakeem", "in_reply_to_status_id": 148531425044463600, "in_reply_to_status_id_str": "148531425044463618"}, +{"created_at": "Mon, 19 Dec 2011 07:51:06 +0000", "from_user": "ARGENTIlNA", "from_user_id": 118522860, "from_user_id_str": "118522860", "from_user_name": "Argentina Martinez", "geo": null, "id": 148671685736935420, "id_str": "148671685736935425", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697199297/ywer_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697199297/ywer_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:50:40 +0000", "from_user": "LADYHIGHTOWER", "from_user_id": 18591374, "from_user_id_str": "18591374", "from_user_name": "Cathy Parker", "geo": null, "id": 148671573904207870, "id_str": "148671573904207872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/141092668/AB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/141092668/AB_normal.jpg", "source": "<a href="http://www.listia.com" rel="nofollow">Listia</a>", "text": "I'm giving away: Dinosaurs Before Dark~Magic Tree House Series~Book 1 Age 7+. Check it out - http://t.co/UC9HfVeo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:50:03 +0000", "from_user": "MeylSeesStars", "from_user_id": 83075163, "from_user_id_str": "83075163", "from_user_name": "Meylin Dwini", "geo": null, "id": 148671419922911230, "id_str": "148671419922911232", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696575098/kinda_20dramatic_20huh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696575098/kinda_20dramatic_20huh_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Oh iya (\\u2323\\u0301_\\u2323\\u0300). Tapi kan dinosaurs kereeen \\u2665 RT @lani_wulanjani: Ntar pepohonan abis dong? RT MeylSeesStars: Coba aja masih ada dinosaurs d", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:49:39 +0000", "from_user": "WadeJess", "from_user_id": 339398403, "from_user_id_str": "339398403", "from_user_name": "Jessica Wade", "geo": null, "id": 148671321843314700, "id_str": "148671321843314688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1667551263/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667551263/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Is pretty much obsessed with dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:48:42 +0000", "from_user": "BilllCosby", "from_user_id": 185442030, "from_user_id_str": "185442030", "from_user_name": "R.I.P D. Lewis.", "geo": null, "id": 148671082289836030, "id_str": "148671082289836032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697591875/x2_9dd670a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697591875/x2_9dd670a_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "FUCK DINOSAURS. EAT A DICK BITCHES.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:47:42 +0000", "from_user": "YourHeroPali", "from_user_id": 71531141, "from_user_id_str": "71531141", "from_user_name": "Aubrey Maloisane", "geo": null, "id": 148670827439730700, "id_str": "148670827439730689", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693219271/tumblr_lvp6y2fNVU1r2stjio1_500_large_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693219271/tumblr_lvp6y2fNVU1r2stjio1_500_large_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "'Kiss me if i'm wrong but dinosaurs still exist right?'", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:47:11 +0000", "from_user": "pimonb", "from_user_id": 149513801, "from_user_id_str": "149513801", "from_user_name": "pimonb", "geo": null, "id": 148670700088070140, "id_str": "148670700088070144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "8 Piece Discover Dinosaurs Rubbing Plates Set: http://t.co/aDzECmM0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 07:47:42 +0000", "from_user": "YourHeroPali", "from_user_id": 71531141, "from_user_id_str": "71531141", "from_user_name": "Aubrey Maloisane", "geo": null, "id": 148670827439730700, "id_str": "148670827439730689", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693219271/tumblr_lvp6y2fNVU1r2stjio1_500_large_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693219271/tumblr_lvp6y2fNVU1r2stjio1_500_large_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "'Kiss me if i'm wrong but dinosaurs still exist right?'", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:47:11 +0000", "from_user": "pimonb", "from_user_id": 149513801, "from_user_id_str": "149513801", "from_user_name": "pimonb", "geo": null, "id": 148670700088070140, "id_str": "148670700088070144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "8 Piece Discover Dinosaurs Rubbing Plates Set: http://t.co/aDzECmM0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:45:35 +0000", "from_user": "kiinkkykiillz", "from_user_id": 397569372, "from_user_id_str": "397569372", "from_user_name": "amy;; ", "geo": null, "id": 148670298240188400, "id_str": "148670298240188416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1685851018/D861HytC_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685851018/D861HytC_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:44:08 +0000", "from_user": "Veronarcz", "from_user_id": 431766567, "from_user_id_str": "431766567", "from_user_name": "Verona Rancatti", "geo": null, "id": 148669930638815230, "id_str": "148669930638815232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681169690/00b1mw3ze3_134225183-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681169690/00b1mw3ze3_134225183-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "I Can Draw Dinosaurs: Learn how to draw dinosaurs of all shapes and sizes with these easy-to-follow instructions... http://t.co/jIi7kzho", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:43:58 +0000", "from_user": "Erictga", "from_user_id": 431683572, "from_user_id_str": "431683572", "from_user_name": "Eric Beinlich", "geo": null, "id": 148669889580773380, "id_str": "148669889580773377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680993073/large_255_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680993073/large_255_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "THE SLANKET BLANKET KIDS SLANKESAURAS DINOSAURS (NEW FOR 2010/2011): The Slanket Blanket Slanketsauras Dinosaurs... http://t.co/5gEJvp4t", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:43:46 +0000", "from_user": "lotsofhugznkiss", "from_user_id": 203828037, "from_user_id_str": "203828037", "from_user_name": "Allison ", "geo": null, "id": 148669837479120900, "id_str": "148669837479120896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1522104373/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1522104373/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:43:23 +0000", "from_user": "GloshaBabko", "from_user_id": 311631764, "from_user_id_str": "311631764", "from_user_name": "Glosha Babko", "geo": null, "id": 148669741979017200, "id_str": "148669741979017216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1383234580/result_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1383234580/result_1__normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/zWwUGDb9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:43:00 +0000", "from_user": "MeylSeesStars", "from_user_id": 83075163, "from_user_id_str": "83075163", "from_user_name": "Meylin Dwini", "geo": null, "id": 148669644318846980, "id_str": "148669644318846976", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696575098/kinda_20dramatic_20huh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696575098/kinda_20dramatic_20huh_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Coba aja masih ada dinosaurs di dunia. Pasti keren lah. Tapi yang vegetarian. Waaaawww (*o*)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:42:13 +0000", "from_user": "MandiWoodruff", "from_user_id": 114908332, "from_user_id_str": "114908332", "from_user_name": "Mandisaurus", "geo": null, "id": 148669447819886600, "id_str": "148669447819886592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701774084/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701774084/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I hope there's dinosaurs in heaven.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:41:44 +0000", "from_user": "SmookeyChance", "from_user_id": 367550105, "from_user_id_str": "367550105", "from_user_name": "Grexy Spy", "geo": null, "id": 148669327434985470, "id_str": "148669327434985472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702213692/475291083_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702213692/475291083_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:40:50 +0000", "from_user": "HellaSickBro", "from_user_id": 440640923, "from_user_id_str": "440640923", "from_user_name": "Adam Whitney", "geo": null, "id": 148669101332635650, "id_str": "148669101332635648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701720286/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701720286/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Chicken nuggets taste better when they're shaped like dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:40:38 +0000", "from_user": "Moenisha", "from_user_id": 237434094, "from_user_id_str": "237434094", "from_user_name": "Mona Haq", "geo": null, "id": 148669050480898050, "id_str": "148669050480898048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700746684/Bild_96_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700746684/Bild_96_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ThatDudeMCFLY: Kiss me if I'm wrong but Dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:40:26 +0000", "from_user": "FranMorgan88", "from_user_id": 387161282, "from_user_id_str": "387161282", "from_user_name": "Fran Morgan", "geo": null, "id": 148668999482351600, "id_str": "148668999482351616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1578437661/a141jq0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1578437661/a141jq0_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Jungle Girl & Lost Island of Dinosaurs [VHS]: http://t.co/Jiseo5bJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:40:26 +0000", "from_user": "Shelbie_3", "from_user_id": 39663718, "from_user_id_str": "39663718", "from_user_name": "Shelbie Phelps", "geo": null, "id": 148668998404423680, "id_str": "148668998404423680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694431661/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694431661/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Z_Wooly #childhoodmemories running into you in McDonald's. \"can I play with you?\" \"Rawrrrrr I like dinosaurs!!\" #weirdkid", "to_user": "Z_Wooly", "to_user_id": 18122406, "to_user_id_str": "18122406", "to_user_name": "Zachary Wooldridge", "in_reply_to_status_id": 148662247646965760, "in_reply_to_status_id_str": "148662247646965760"}, +{"created_at": "Mon, 19 Dec 2011 07:38:42 +0000", "from_user": "MohammedAli__", "from_user_id": 230227937, "from_user_id_str": "230227937", "from_user_name": "Mohammed Ali", "geo": null, "id": 148668564260392960, "id_str": "148668564260392961", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699662464/vg54878_like_a_boss_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699662464/vg54878_like_a_boss_normal.png", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @i_am_AbbaTumsah: RT @M_Tumsah: RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:37:33 +0000", "from_user": "bobsagetgmh", "from_user_id": 219069939, "from_user_id_str": "219069939", "from_user_name": "Ross Geller", "geo": null, "id": 148668273951649800, "id_str": "148668273951649792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1676350025/photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676350025/photo_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Hello I am Dr. Ross Geller. I enjoy paleontology and I can't choose between sex and dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:37:32 +0000", "from_user": "i_am_AbbaTumsah", "from_user_id": 165892239, "from_user_id_str": "165892239", "from_user_name": "\\u2022Abba TumsiR\\u2022", "geo": null, "id": 148668272458477570, "id_str": "148668272458477568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699896969/Abuja-20111109-00393_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699896969/Abuja-20111109-00393_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @M_Tumsah: RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:37:00 +0000", "from_user": "S_ephen", "from_user_id": 43799189, "from_user_id_str": "43799189", "from_user_name": "Stephen Hines", "geo": null, "id": 148668138127499260, "id_str": "148668138127499264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1588993718/kkk293540_267937233238619_100000670337427_917634_1538627709_n-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1588993718/kkk293540_267937233238619_100000670337427_917634_1538627709_n-1_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/ivYxYFT4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:35:34 +0000", "from_user": "darrennnLiu", "from_user_id": 63240871, "from_user_id_str": "63240871", "from_user_name": "Darren L", "geo": null, "id": 148667775102107650, "id_str": "148667775102107649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1659626690/IMG_5050_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659626690/IMG_5050_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "#nw Last Day of Dinosaurs. So cool.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:35:29 +0000", "from_user": "xandria_jdw", "from_user_id": 27182009, "from_user_id_str": "27182009", "from_user_name": "Maria Van Tine", "geo": null, "id": 148667756550684670, "id_str": "148667756550684672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1684621751/IMG-20111103-00572_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684621751/IMG-20111103-00572_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:34:18 +0000", "from_user": "JasminGeeDGAF_", "from_user_id": 236092998, "from_user_id_str": "236092998", "from_user_name": "ThtChick Jasmin", "geo": null, "id": 148667457438097400, "id_str": "148667457438097408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670436652/snapshot-4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670436652/snapshot-4_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:33:56 +0000", "from_user": "Hamda_AlHashemi", "from_user_id": 131757852, "from_user_id_str": "131757852", "from_user_name": "\\u062D\\u0645\\u062F\\u0629 \\u0627\\u0644\\u0647\\u0627\\u0634\\u0645\\u064A \\u2655", "geo": null, "id": 148667364915941380, "id_str": "148667364915941376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689532651/7b79ef52-49c6-41d0-9e8e-ea8dd4646c58_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689532651/7b79ef52-49c6-41d0-9e8e-ea8dd4646c58_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Birds are considered to be dinosaurs.. #fact ._.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:33:24 +0000", "from_user": "IHeardISSUE", "from_user_id": 167303523, "from_user_id_str": "167303523", "from_user_name": "ISSUE", "geo": null, "id": 148667230861803520, "id_str": "148667230861803520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696031590/PIG_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696031590/PIG_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@praveenoar \"it's so amazing, I love dinosaurs.\"", "to_user": "praveenoar", "to_user_id": 26967895, "to_user_id_str": "26967895", "to_user_name": "Praveen Rao ", "in_reply_to_status_id": 148666298065358850, "in_reply_to_status_id_str": "148666298065358849"}, +{"created_at": "Mon, 19 Dec 2011 07:32:43 +0000", "from_user": "YingRuu_Weeeeet", "from_user_id": 349585408, "from_user_id_str": "349585408", "from_user_name": "\\u00A5\\u00A1NG\\u0413U\\u00A9", "geo": null, "id": 148667057062412300, "id_str": "148667057062412288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1672991570/MLM79BfK_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672991570/MLM79BfK_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:32:36 +0000", "from_user": "xtranoise", "from_user_id": 16989390, "from_user_id_str": "16989390", "from_user_name": "Sonia", "geo": null, "id": 148667030118207500, "id_str": "148667030118207488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1470062073/Imagen000-1__8__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1470062073/Imagen000-1__8__normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/Fih0U22D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:32:33 +0000", "from_user": "KevinLi89", "from_user_id": 15804997, "from_user_id_str": "15804997", "from_user_name": "KevinLi89", "geo": null, "id": 148667015333298180, "id_str": "148667015333298176", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688279282/bDRzoADO_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688279282/bDRzoADO_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@eequilibrium dinosaurs", "to_user": "eequilibrium", "to_user_id": 53286779, "to_user_id_str": "53286779", "to_user_name": "Irene M", "in_reply_to_status_id": 148657972514521100, "in_reply_to_status_id_str": "148657972514521088"}, +{"created_at": "Mon, 19 Dec 2011 07:31:50 +0000", "from_user": "krystinalau", "from_user_id": 26832369, "from_user_id_str": "26832369", "from_user_name": "Krystina Lau", "geo": null, "id": 148666835934527500, "id_str": "148666835934527488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701889800/JiffyScreenShotFree-04-15-2011_23-22-08_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701889800/JiffyScreenShotFree-04-15-2011_23-22-08_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@LJehman they have a super sweet airport though. Go look for the dinosaurs they always make me happy.", "to_user": "LJehman", "to_user_id": 38358564, "to_user_id_str": "38358564", "to_user_name": "Luke Ehman", "in_reply_to_status_id": 148664988591063040, "in_reply_to_status_id_str": "148664988591063040"}, +{"created_at": "Mon, 19 Dec 2011 07:30:46 +0000", "from_user": "Jana_Waly", "from_user_id": 225816805, "from_user_id_str": "225816805", "from_user_name": "Jana Waly", "geo": null, "id": 148666568774135800, "id_str": "148666568774135808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690602214/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690602214/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:30:07 +0000", "from_user": "wandaDMC", "from_user_id": 188075302, "from_user_id_str": "188075302", "from_user_name": "wanda", "geo": null, "id": 148666405011726340, "id_str": "148666405011726336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676079400/Afbeelding140_1w_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676079400/Afbeelding140_1w_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:29:38 +0000", "from_user": "Callie_Bells", "from_user_id": 174718748, "from_user_id_str": "174718748", "from_user_name": "Callie Shepherd", "geo": null, "id": 148666283792154620, "id_str": "148666283792154624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1660330734/peuf_20111126_123_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660330734/peuf_20111126_123_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:28:44 +0000", "from_user": "ImmaQlt", "from_user_id": 270010643, "from_user_id_str": "270010643", "from_user_name": "Renee", "geo": null, "id": 148666056293093380, "id_str": "148666056293093376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696136955/ImmaQlt_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696136955/ImmaQlt_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:27:52 +0000", "from_user": "Stallz_InyoJawz", "from_user_id": 235756135, "from_user_id_str": "235756135", "from_user_name": "CHICAGOxMade", "geo": null, "id": 148665838814236670, "id_str": "148665838814236672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1655711081/IMG_9732_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655711081/IMG_9732_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster</a>", "text": "I was so fucked up one time I thought errbody was dragons and dinosaurs n shit. I was sooo scared g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:27:35 +0000", "from_user": "Monica_y23", "from_user_id": 292932852, "from_user_id_str": "292932852", "from_user_name": "Monica Romero", "geo": null, "id": 148665767443963900, "id_str": "148665767443963904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684206954/2011-02-27_15.42.26_edit0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684206954/2011-02-27_15.42.26_edit0_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:27:02 +0000", "from_user": "pinoypj", "from_user_id": 337345630, "from_user_id_str": "337345630", "from_user_name": "PJ Quinto", "geo": null, "id": 148665628117577730, "id_str": "148665628117577728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1448697860/mee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1448697860/mee_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/aWzFDh6l", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:26:15 +0000", "from_user": "EstefiSoda96", "from_user_id": 329512666, "from_user_id_str": "329512666", "from_user_name": "Estefania Gonzalez", "geo": null, "id": 148665431010455550, "id_str": "148665431010455552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680610303/images3333_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680610303/images3333_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:26:10 +0000", "from_user": "Belle_Afrique", "from_user_id": 40819476, "from_user_id_str": "40819476", "from_user_name": "Nik\\u00E9, not the shoe", "geo": null, "id": 148665409103597570, "id_str": "148665409103597568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699896160/1hwf12_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699896160/1hwf12_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#IWasThatKid that screamed in excited for anything that had to do with dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:25:40 +0000", "from_user": "beLaniful", "from_user_id": 368506745, "from_user_id_str": "368506745", "from_user_name": "thulani ndzishe", "geo": null, "id": 148665282871824400, "id_str": "148665282871824384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695335039/IMG01778-20111215-1640_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695335039/IMG01778-20111215-1640_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:25:15 +0000", "from_user": "Dixieqfx", "from_user_id": 431766508, "from_user_id_str": "431766508", "from_user_name": "Dixie Haith", "geo": null, "id": 148665180090404860, "id_str": "148665180090404864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681172193/eg1eji453q_131690635-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681172193/eg1eji453q_131690635-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Lost Dinosaurs of Egypt / Documentary [VHS]: http://t.co/Auh0n38f", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:24:10 +0000", "from_user": "SoniaCabano2", "from_user_id": 348951998, "from_user_id_str": "348951998", "from_user_name": "Sonia Cabano", "geo": null, "id": 148664906999279600, "id_str": "148664906999279616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1661711103/IMG00451-20111117-1427_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661711103/IMG00451-20111117-1427_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "When I say 'Give me exciting dreams' I mean George Clooney, not dinosaurs in my kitchen", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:22:33 +0000", "from_user": "holidaytoysorg", "from_user_id": 437480450, "from_user_id_str": "437480450", "from_user_name": "Holiday Toys Reviews", "geo": null, "id": 148664501460402180, "id_str": "148664501460402176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694604988/1_normal.jpg", "profile_image_url_https": null, "source": "<a href="http://www.holidaytoys.org" rel="nofollow">Holiday Toy Lists & Reviews</a>", "text": "http://t.co/Wg6DPjO4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:21:14 +0000", "from_user": "limansk", "from_user_id": 188763893, "from_user_id_str": "188763893", "from_user_name": "\\u041C\\u0430\\u043A\\u0441\\u0438\\u043C \\u0420\\u0435\\u0441\\u043D\\u044F\\u043D\\u0441\\u043A\\u0438\\u0439", "geo": null, "id": 148664168961163260, "id_str": "148664168961163264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669704290/Admin_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669704290/Admin_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I favorited a @YouTube videofrom @ukf http://t.co/pCOd79kd 16bit - Dinosaurs (Official Video)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:21:04 +0000", "from_user": "ClaireRainbow", "from_user_id": 49412150, "from_user_id_str": "49412150", "from_user_name": "Claire Cottingham", "geo": null, "id": 148664127919890430, "id_str": "148664127919890433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700353975/ClaireRainbow_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700353975/ClaireRainbow_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @Maddie28: @ClaireRainbow '...god destroys dinosaurs, god creates man, man creates dinosaurs..' 'dinosaurs... eat man... woman inherits the earth!'", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:20:44 +0000", "from_user": "natalee_love", "from_user_id": 230949875, "from_user_id_str": "230949875", "from_user_name": "cold'hearted", "geo": null, "id": 148664043224317950, "id_str": "148664043224317952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697747893/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697747893/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@LazyPhotog ahahaha . nahhh really I haven't had sex since dinosaurs were alive . ahaha", "to_user": "LazyPhotog", "to_user_id": 215406701, "to_user_id_str": "215406701", "to_user_name": "Auto-Bot \\u00B0___\\u00B0 ", "in_reply_to_status_id": 148663659789422600, "in_reply_to_status_id_str": "148663659789422592"}, +{"created_at": "Mon, 19 Dec 2011 07:20:02 +0000", "from_user": "PearlDrumsEuro", "from_user_id": 312521062, "from_user_id_str": "312521062", "from_user_name": "Pearl Drums Europe", "geo": null, "id": 148663866971267070, "id_str": "148663866971267072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1385461627/Twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1385461627/Twitter_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Tonight: Pearl Artist Moritz M\\u00FCller with Aura Dione before the Dinosaurs in #Kopenhagen @auradione : http://t.co/lUGYY0nb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:19:10 +0000", "from_user": "turbohat", "from_user_id": 19993896, "from_user_id_str": "19993896", "from_user_name": "Darryl Ellson", "geo": null, "id": 148663648724848640, "id_str": "148663648724848641", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1576425257/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576425257/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "It's Ice Age 3 Dawn of the Dinosaurs........ Again.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:18:31 +0000", "from_user": "MookChamberlin", "from_user_id": 335349034, "from_user_id_str": "335349034", "from_user_name": "MOOK", "geo": null, "id": 148663484962451460, "id_str": "148663484962451456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702430053/IMAG0228-1-1-1-1-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702430053/IMAG0228-1-1-1-1-1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Lmao \\u00AB@TopFlyghtEnt_G Dis nigga @I_am_the_partee old ass dinosaurs\\u00BB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:18:20 +0000", "from_user": "Will_ACA", "from_user_id": 49693404, "from_user_id_str": "49693404", "from_user_name": "Will \\u2611", "geo": null, "id": 148663439210987520, "id_str": "148663439210987520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1669911581/Will_ACA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669911581/Will_ACA_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@TopFlyghtEnt_G Dis nigga @I_am_the_partee old ass dinosaurs\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:18:06 +0000", "from_user": "McShady41", "from_user_id": 246993362, "from_user_id_str": "246993362", "from_user_name": "Michael S. A Mbwambo", "geo": null, "id": 148663380394262530, "id_str": "148663380394262528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1685187890/h_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685187890/h_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "do u know that Tanzania have dinosaurs remains#costech", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:18:05 +0000", "from_user": "TopFlyghtEnt_G", "from_user_id": 227345710, "from_user_id_str": "227345710", "from_user_name": "TFE HOTSHIT", "geo": null, "id": 148663374044078080, "id_str": "148663374044078082", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1656551181/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656551181/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Dis nigga @I_am_the_partee old ass dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:18:04 +0000", "from_user": "schemingbites", "from_user_id": 89358821, "from_user_id_str": "89358821", "from_user_name": "Cherjaine Bites", "geo": null, "id": 148663370134986750, "id_str": "148663370134986752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1678484864/2011-12-06_12.59_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678484864/2011-12-06_12.59_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:17:01 +0000", "from_user": "Rachelisbosss", "from_user_id": 181703792, "from_user_id_str": "181703792", "from_user_name": "Rachel Deleon", "geo": null, "id": 148663107244408830, "id_str": "148663107244408832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691888743/8e8dd51f43b1__1319776553000_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691888743/8e8dd51f43b1__1319776553000_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:16:25 +0000", "from_user": "SoyLora", "from_user_id": 249799495, "from_user_id_str": "249799495", "from_user_name": "khalifa ", "geo": null, "id": 148662954538172400, "id_str": "148662954538172416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1666922190/IMG-20111201-00231_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666922190/IMG-20111201-00231_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:16:22 +0000", "from_user": "khurtubisee", "from_user_id": 346395734, "from_user_id_str": "346395734", "from_user_name": "Kiersten Hurtubise", "geo": null, "id": 148662944383766530, "id_str": "148662944383766528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698077950/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698077950/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:16:07 +0000", "from_user": "StoreDaily", "from_user_id": 334978587, "from_user_id_str": "334978587", "from_user_name": "StoreDaily", "geo": null, "id": 148662879703408640, "id_str": "148662879703408640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1441292205/1-3-54_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1441292205/1-3-54_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Best Magic Tree House Boxed Set, Books 1-4: Dinosaurs Before Dark, The Knight at Dawn, Mummies in the Morning, a... http://t.co/4IMrRRiF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:15:31 +0000", "from_user": "halshamaileh", "from_user_id": 26365674, "from_user_id_str": "26365674", "from_user_name": "hannah alshamaileh", "geo": null, "id": 148662729052401660, "id_str": "148662729052401665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1503012287/IMG_20110721_180051-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1503012287/IMG_20110721_180051-1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:14:49 +0000", "from_user": "Fukinn_Jennknee", "from_user_id": 256720595, "from_user_id_str": "256720595", "from_user_name": "hakuna matata \\u263C", "geo": null, "id": 148662552006631420, "id_str": "148662552006631425", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697217173/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697217173/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "from where ? D; RT @Fukinn_Pookyy: Dinosaurs are comingggg! @Fukinn_jennknee", "to_user": "Fukinn_Pookyy", "to_user_id": 306453310, "to_user_id_str": "306453310", "to_user_name": "WeMurderFloors' \\u2665", "in_reply_to_status_id": 148662333810556930, "in_reply_to_status_id_str": "148662333810556928"}, +{"created_at": "Mon, 19 Dec 2011 07:14:48 +0000", "from_user": "kezzy_wezzy29", "from_user_id": 324233549, "from_user_id_str": "324233549", "from_user_name": "Kasey Wester (:", "geo": null, "id": 148662548269514750, "id_str": "148662548269514752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1664603093/Snapshot_20111105_4_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664603093/Snapshot_20111105_4_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "i wish dinosaurs were still alive.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:14:22 +0000", "from_user": "LouiseLoserface", "from_user_id": 170040007, "from_user_id_str": "170040007", "from_user_name": "Louise Ye", "geo": null, "id": 148662440450736130, "id_str": "148662440450736130", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1609731015/Face150_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609731015/Face150_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Last Day of the Dinosaurs is on #DiscoveryChannel right now! #BestNightEver! Hahah.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:14:11 +0000", "from_user": "vannuhh217", "from_user_id": 327139058, "from_user_id_str": "327139058", "from_user_name": "Savannah Wagner", "geo": null, "id": 148662395353579520, "id_str": "148662395353579521", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693118587/v3gUB6HK_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693118587/v3gUB6HK_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:14:10 +0000", "from_user": "dejasdead", "from_user_id": 190417785, "from_user_id_str": "190417785", "from_user_name": "Daniel Ramirez", "geo": null, "id": 148662388193902600, "id_str": "148662388193902593", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699194440/bday_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699194440/bday_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "And all these dinosaurs is crashin' at my place tonight", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:13:57 +0000", "from_user": "Fukinn_Pookyy", "from_user_id": 306453310, "from_user_id_str": "306453310", "from_user_name": "WeMurderFloors' \\u2665", "geo": null, "id": 148662333810556930, "id_str": "148662333810556928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1591794141/construction_worker_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591794141/construction_worker_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Dinosaurs are comingggg! @Fukinn_jennknee", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:13:52 +0000", "from_user": "dejasdead", "from_user_id": 190417785, "from_user_id_str": "190417785", "from_user_name": "Daniel Ramirez", "geo": null, "id": 148662315833761800, "id_str": "148662315833761792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699194440/bday_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699194440/bday_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I smoke a spliff tonight\\nMe and these dinosaurs is gettin' freakin' ripped tonight\\nWe gettin' faced tonight", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:13:10 +0000", "from_user": "Kimberlocks", "from_user_id": 42059229, "from_user_id_str": "42059229", "from_user_name": "Kim Cardoso \\u2651", "geo": null, "id": 148662136657293300, "id_str": "148662136657293313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670490931/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670490931/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Watching the discovery channel Last day of the dinosaurs. So breathtaking and interesting but I'm sad about what happened to the #dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:12:25 +0000", "from_user": "astoldby_Bria", "from_user_id": 436098907, "from_user_id_str": "436098907", "from_user_name": "Alana Zilla Scrilla.", "geo": null, "id": 148661951394877440, "id_str": "148661951394877440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693987819/331515416_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693987819/331515416_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "I remember the heated debate me & @Trexxx1LOVETO had about dinosaurs one night lmao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:12:24 +0000", "from_user": "SwizzleBro", "from_user_id": 351932244, "from_user_id_str": "351932244", "from_user_name": "Collin Lightfoot", "geo": null, "id": 148661945740967940, "id_str": "148661945740967936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1605584175/7wedE6IJ_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1605584175/7wedE6IJ_normal", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#Oomf doesn't believe in dinosaurs-__- ThaFreak!? But it doesn't matter cause she's sexy.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:12:17 +0000", "from_user": "thedasophasath", "from_user_id": 49802869, "from_user_id_str": "49802869", "from_user_name": "Thida Sophasath", "geo": null, "id": 148661916011733000, "id_str": "148661916011732993", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688248478/thedasophasath_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688248478/thedasophasath_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/rmHL1rOn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:12:09 +0000", "from_user": "PaleontologIcoo", "from_user_id": 373095382, "from_user_id_str": "373095382", "from_user_name": "Casey Lee", "geo": null, "id": 148661883698814980, "id_str": "148661883698814977", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1541873404/1315964343_nautilus_home2_08_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541873404/1315964343_nautilus_home2_08_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/dP4u5luU Dec 19, 2011: Exhibit Case: Dinosaurs in Our Backyard at National ...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:11:33 +0000", "from_user": "Jay24yadigg", "from_user_id": 271089956, "from_user_id_str": "271089956", "from_user_name": "Jimberto Pulido \\uF8EB", "geo": null, "id": 148661731223281660, "id_str": "148661731223281664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700895949/IMG00026-20111218-1417_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700895949/IMG00026-20111218-1417_1_normal.jpg", "source": "<a href="http://newsforward.org" rel="nofollow">NewsForward for BlackBerry</a>", "text": "My little cousin is in 4th grade & is color blind yet he knows so much about dinosaurs & space things I would've never learned !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:11:22 +0000", "from_user": "OneShot_BANG", "from_user_id": 233122705, "from_user_id_str": "233122705", "from_user_name": "Jamal Zetino", "geo": null, "id": 148661684830085120, "id_str": "148661684830085120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679907150/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679907150/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "RT @DizzleKang: kiss me if i'm wrong, but dinosaurs exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:11:06 +0000", "from_user": "RAWRFAYCE", "from_user_id": 30809199, "from_user_id_str": "30809199", "from_user_name": "Squid", "geo": null, "id": 148661617868029950, "id_str": "148661617868029952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1641735482/hai_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641735482/hai_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Sitting here reading Zombies vs. Unicorns while watching a show on dinosaurs? Yeah, you know I'm cool :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:10:40 +0000", "from_user": "mojomonkey_12", "from_user_id": 29913693, "from_user_id_str": "29913693", "from_user_name": "Jeremy M. Brown", "geo": null, "id": 148661507855622140, "id_str": "148661507855622144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1672813552/2110_Santasized_jpg-300x0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672813552/2110_Santasized_jpg-300x0_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Kyledk05 well i don't think the dinosaurs were shooting, and it didn't review well, but it was made", "to_user": "Kyledk05", "to_user_id": 269309979, "to_user_id_str": "269309979", "to_user_name": "Kyle D.K. ", "in_reply_to_status_id": 148660449603362800, "in_reply_to_status_id_str": "148660449603362816"}, +{"created_at": "Mon, 19 Dec 2011 07:10:09 +0000", "from_user": "cyrusrogie", "from_user_id": 150572028, "from_user_id_str": "150572028", "from_user_name": "Cyrus Rogie Batayan", "geo": null, "id": 148661378301964300, "id_str": "148661378301964289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1631891164/photo1077_001_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631891164/photo1077_001_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Kiss me if I'm wrong. but dinosaurs do exist right? :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:10:06 +0000", "from_user": "lizlikeswaffles", "from_user_id": 305866414, "from_user_id_str": "305866414", "from_user_name": "Elizabeth", "geo": null, "id": 148661367132536830, "id_str": "148661367132536832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686143664/686317693_2454236446_0_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686143664/686317693_2454236446_0_normal.jpeg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/OTaTCHzQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:09:46 +0000", "from_user": "markyymarkkk", "from_user_id": 167626237, "from_user_id_str": "167626237", "from_user_name": "Mark Anthony Miranda", "geo": null, "id": 148661284156604400, "id_str": "148661284156604416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693915562/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693915562/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "RT @DizzleKang: kiss me if i'm wrong, but dinosaurs exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:09:24 +0000", "from_user": "Yasminx0x0x0", "from_user_id": 360845890, "from_user_id_str": "360845890", "from_user_name": "yasminnndawg", "geo": null, "id": 148661188643930100, "id_str": "148661188643930112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1510317261/295924_227765253935797_100001069732099_608833_6389619_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1510317261/295924_227765253935797_100001069732099_608833_6389619_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"@TheeSickestGirl: Parent: \"Well when I was your age...\" Me: STFU WHEN YOU WERE MY AGE, YOU RODE DINOSAURS!\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:08:57 +0000", "from_user": "Orelys_x", "from_user_id": 284681697, "from_user_id_str": "284681697", "from_user_name": "Orelys", "geo": null, "id": 148661079189360640, "id_str": "148661079189360640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697847344/Image749_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697847344/Image749_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:08:55 +0000", "from_user": "allie_camp", "from_user_id": 410345968, "from_user_id_str": "410345968", "from_user_name": "Allie Camp", "geo": null, "id": 148661067231404030, "id_str": "148661067231404033", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688404417/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688404417/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Hahah what two tweets in a row about dinosaurs :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:08:23 +0000", "from_user": "l0v3_notes", "from_user_id": 440110752, "from_user_id_str": "440110752", "from_user_name": "Love Notes", "geo": null, "id": 148660936578842620, "id_str": "148660936578842624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700337574/LOVE_PIC_25_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700337574/LOVE_PIC_25_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT if you used to think those construction cranes were metal dinosaurs :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:07:22 +0000", "from_user": "M_Tumsah", "from_user_id": 144366928, "from_user_id_str": "144366928", "from_user_name": "M\\u03C5\\u06AA\\u03B1 \\u2020\\u03C5\\u043C\\u06AA\\u03B1h", "geo": null, "id": 148660678998229000, "id_str": "148660678998228992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698531022/331615875_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698531022/331615875_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:06:46 +0000", "from_user": "Mountain_BikeUK", "from_user_id": 327869466, "from_user_id_str": "327869466", "from_user_name": "Mountain Bike UK", "geo": null, "id": 148660529462902800, "id_str": "148660529462902784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1423117344/Mountain-Bike_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1423117344/Mountain-Bike_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#10: Doctor Who - U.N.I.T Files (Invasion of the Dinosaurs and the Android Invasion) [DVD] http://t.co/vlJAbGwM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:06:44 +0000", "from_user": "TweetMichaelFan", "from_user_id": 53858501, "from_user_id_str": "53858501", "from_user_name": "TweetMichaelFan", "geo": null, "id": 148660519597916160, "id_str": "148660519597916160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/297970793/capture16_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/297970793/capture16_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "DVD : #10: Doctor Who - U.N.I.T Files (Invasion of the Dinosaurs and the Android Invasion) [DVD] http://t.co/EBwVmJ6z", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:06:42 +0000", "from_user": "GamesnGadgets09", "from_user_id": 88325238, "from_user_id_str": "88325238", "from_user_name": "GamesnGadgets", "geo": null, "id": 148660511028949000, "id_str": "148660511028948992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1434376858/capture5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1434376858/capture5_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "DVD : #10: Doctor Who - U.N.I.T Files (Invasion of the Dinosaurs and the Android Invasion) [DVD] http://t.co/CkY4bMq9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:06:41 +0000", "from_user": "SuperFastSixPac", "from_user_id": 54584816, "from_user_id_str": "54584816", "from_user_name": "SuperFastSixPac", "geo": null, "id": 148660507883221000, "id_str": "148660507883220992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/301883238/capture7__2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/301883238/capture7__2__normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "DVD : #10: Doctor Who - U.N.I.T Files (Invasion of the Dinosaurs and the Android Invasion) [DVD] http://t.co/MsJ4I2lD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:06:40 +0000", "from_user": "Amazon_Store_UK", "from_user_id": 327426419, "from_user_id_str": "327426419", "from_user_name": "AmazonStoreUK", "geo": null, "id": 148660504771051520, "id_str": "148660504771051520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1422036315/Amazon_Shop_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1422036315/Amazon_Shop_normal.gif", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "DVD : #10: Doctor Who - U.N.I.T Files (Invasion of the Dinosaurs and the Android Invasion) [DVD] http://t.co/gFUmwlNi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:06:40 +0000", "from_user": "TweetLottoWins", "from_user_id": 85085464, "from_user_id_str": "85085464", "from_user_name": "tweetlottowins", "geo": null, "id": 148660503760220160, "id_str": "148660503760220161", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/489361296/case_of_money_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/489361296/case_of_money_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "DVD : #10: Doctor Who - U.N.I.T Files (Invasion of the Dinosaurs and the Android Invasion) [DVD] http://t.co/LalQXvun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:06:37 +0000", "from_user": "AmazonDVDShop1", "from_user_id": 405402728, "from_user_id_str": "405402728", "from_user_name": "AmazonDVDShop", "geo": null, "id": 148660490413932540, "id_str": "148660490413932544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1623485222/Amazon_DVD_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1623485222/Amazon_DVD_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "DVD : #10: Doctor Who - U.N.I.T Files (Invasion of the Dinosaurs and the Android Invasion) [DVD] http://t.co/wQKMOdmc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:06:30 +0000", "from_user": "iam_Foolish", "from_user_id": 189328460, "from_user_id_str": "189328460", "from_user_name": "Richard Schwartz", "geo": null, "id": 148660458746937340, "id_str": "148660458746937344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693802329/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693802329/image_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @StillSweet_Doll: bwhaaa #poorLilTinkTink @iam_Foolish @StillSweet_Doll haha chill... People had gushers and pop tarts... I had dinosaurs and toast ems...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:06:18 +0000", "from_user": "thealannahshow", "from_user_id": 272264029, "from_user_id_str": "272264029", "from_user_name": "Alannah Jones", "geo": null, "id": 148660412508942340, "id_str": "148660412508942337", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695968653/230126_131275170280198_100001931474019_221462_7204594_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695968653/230126_131275170280198_100001931474019_221462_7204594_n_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/E2dorzsF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:06:12 +0000", "from_user": "RM_Ika", "from_user_id": 330126783, "from_user_id_str": "330126783", "from_user_name": "Garcia Merit", "geo": null, "id": 148660385224994800, "id_str": "148660385224994816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1428580378/Waterfall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1428580378/Waterfall_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:06:03 +0000", "from_user": "HelloKittyAnime", "from_user_id": 155396557, "from_user_id_str": "155396557", "from_user_name": "~", "geo": null, "id": 148660342594084860, "id_str": "148660342594084866", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687522119/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687522119/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Went back in time and met some dinosaurs. Rawrr! http://t.co/kWgOidSy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:04:31 +0000", "from_user": "deja_raconte", "from_user_id": 328647599, "from_user_id_str": "328647599", "from_user_name": "scherezadey", "geo": null, "id": 148659960870469630, "id_str": "148659960870469632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1640599459/kinking_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640599459/kinking_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "dinosaurs. wheeee --> http://t.co/wxOEYbqL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:03:46 +0000", "from_user": "L0Dick", "from_user_id": 323567028, "from_user_id_str": "323567028", "from_user_name": "Keisha Munoz", "geo": null, "id": 148659771799642100, "id_str": "148659771799642112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700775180/KEKE123_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700775180/KEKE123_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:03:35 +0000", "from_user": "daLUISTRO", "from_user_id": 100130355, "from_user_id_str": "100130355", "from_user_name": "dluistro", "geo": null, "id": 148659724995395600, "id_str": "148659724995395584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697763272/IMG00053-20111216-1914_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697763272/IMG00053-20111216-1914_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Would be live if dinosaurs still were alive todaay.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:03:05 +0000", "from_user": "Aidesce", "from_user_id": 430043935, "from_user_id_str": "430043935", "from_user_name": "Aide Foose", "geo": null, "id": 148659600512659460, "id_str": "148659600512659457", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1677513819/c4lg4v45m3_132459583_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677513819/c4lg4v45m3_132459583_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "View-Master 3D Reels Ice Age Dawn of the Dinosaurs: http://t.co/uyOmSXbe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:02:57 +0000", "from_user": "FlawlessCenzo", "from_user_id": 170924517, "from_user_id_str": "170924517", "from_user_name": "Scott McCall \\u2654", "geo": null, "id": 148659566056443900, "id_str": "148659566056443904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687783628/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687783628/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "last day of the dinosaurs is on and I'm so tempted to watch it. I'VE SEEN IT LIKE 25 TIMES AND I WANT TO GO TO BED BUT ITS SO GOOD.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:02:53 +0000", "from_user": "DizzleKang", "from_user_id": 21698373, "from_user_id_str": "21698373", "from_user_name": "Daisy Kang", "geo": null, "id": 148659549790945280, "id_str": "148659549790945280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685562537/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685562537/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "kiss me if i'm wrong, but dinosaurs exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:02:51 +0000", "from_user": "StillSweet_Doll", "from_user_id": 184673805, "from_user_id_str": "184673805", "from_user_name": "crystalDaDoll", "geo": null, "id": 148659544241868800, "id_str": "148659544241868800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686527542/2011-07-22_15.56.56-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686527542/2011-07-22_15.56.56-2_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "bwhaaa #poorLilTinkTink @iam_Foolish @StillSweet_Doll haha chill... People had gushers and pop tarts... I had dinosaurs and toast ems...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:02:45 +0000", "from_user": "tshipka", "from_user_id": 364673981, "from_user_id_str": "364673981", "from_user_name": "Teagan Shipka", "geo": null, "id": 148659517805170700, "id_str": "148659517805170688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688491264/26990_418184517024_650667024_5422159_659270_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688491264/26990_418184517024_650667024_5422159_659270_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Watching a documentary about dinosaurs in drumheller #suitable", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:02:14 +0000", "from_user": "lissybluebell", "from_user_id": 45690697, "from_user_id_str": "45690697", "from_user_name": "Elisabeth Blue", "geo": null, "id": 148659385533595650, "id_str": "148659385533595648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686575613/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686575613/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Oh! Last Day of the Dinosaurs is starting again!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:02:01 +0000", "from_user": "Jillloww", "from_user_id": 214145564, "from_user_id_str": "214145564", "from_user_name": "Jill H.", "geo": null, "id": 148659331385143300, "id_str": "148659331385143298", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1599083739/DNgzjpw3_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599083739/DNgzjpw3_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 07:01:53 +0000", "from_user": "MadiAguirre", "from_user_id": 375692819, "from_user_id_str": "375692819", "from_user_name": "Madison Aguirre", "geo": null, "id": 148659298573099000, "id_str": "148659298573099008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1663761644/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663761644/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "#IWasThatKid that played with dinosaurs&cars.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:01:23 +0000", "from_user": "Kyledk05", "from_user_id": 269309979, "from_user_id_str": "269309979", "from_user_name": "Kyle D.K. ", "geo": null, "id": 148659172643319800, "id_str": "148659172643319808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1670850916/Gir2Waffles_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670850916/Gir2Waffles_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "I still think an FPS with dragons would be awesome. Hell, why don't we throw in dinosaurs too? An FPS where you shoot dinosaurs and dragons.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:01:11 +0000", "from_user": "Arimy21", "from_user_id": 255317161, "from_user_id_str": "255317161", "from_user_name": "Dellie Ponce", "geo": null, "id": 148659121573478400, "id_str": "148659121573478400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1498738986/emo_love_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1498738986/emo_love_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 07:01:04 +0000", "from_user": "_Scorch_", "from_user_id": 89646548, "from_user_id_str": "89646548", "from_user_name": "The Human Scorch", "geo": null, "id": 148659095103225860, "id_str": "148659095103225856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700935012/human_torch_flame_on_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700935012/human_torch_flame_on_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@lissybluebell I never heard a satisfactory one. All I ever heard was \"dinosaurs aren't in the Bible.\" .....Ummmmmm..........", "to_user": "lissybluebell", "to_user_id": 45690697, "to_user_id_str": "45690697", "to_user_name": "Elisabeth Blue", "in_reply_to_status_id": 148658330242519040, "in_reply_to_status_id_str": "148658330242519041"}, +{"created_at": "Mon, 19 Dec 2011 07:00:51 +0000", "from_user": "iam_Foolish", "from_user_id": 189328460, "from_user_id_str": "189328460", "from_user_name": "Richard Schwartz", "geo": null, "id": 148659039516098560, "id_str": "148659039516098560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693802329/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693802329/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@StillSweet_Doll haha chill... People had gushers and pop tarts... I had dinosaurs and toast ems...", "to_user": "StillSweet_Doll", "to_user_id": 184673805, "to_user_id_str": "184673805", "to_user_name": "crystalDaDoll", "in_reply_to_status_id": 148658484605493250, "in_reply_to_status_id_str": "148658484605493248"}, +{"created_at": "Mon, 19 Dec 2011 07:00:14 +0000", "from_user": "kristenlayman", "from_user_id": 265878907, "from_user_id_str": "265878907", "from_user_name": "Kristen Blair Layman", "geo": null, "id": 148658883102130180, "id_str": "148658883102130176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1272035336/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1272035336/image_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @TheeSickestGirl: Parent: \"Well when I was your age...\" Me: STFU WHEN YOU WERE MY AGE, YOU RODE DINOSAURS!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:58:59 +0000", "from_user": "AlexTchernaya", "from_user_id": 221427274, "from_user_id_str": "221427274", "from_user_name": "AlexandraTchernaya", "geo": null, "id": 148658568852275200, "id_str": "148658568852275200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1182472617/profff_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1182472617/profff_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Everything is so magical,any second now they'll be unicorns cantering all over the place and dinosaurs giving out free pizza!I had no sleep", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:58:31 +0000", "from_user": "adrie_leroux", "from_user_id": 243774367, "from_user_id_str": "243774367", "from_user_name": "Adrie le Roux", "geo": null, "id": 148658452451954700, "id_str": "148658452451954688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1636561876/a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1636561876/a_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Dinosaurs also have high tea at the Mt Nelson :) http://t.co/fogGNhLK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:58:16 +0000", "from_user": "rakmovie", "from_user_id": 382954751, "from_user_id_str": "382954751", "from_user_name": "rakmovie", "geo": null, "id": 148658387310231550, "id_str": "148658387310231552", "iso_language_code": "th", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1567829636/2011-09-30_234028_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1567829636/2011-09-30_234028_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Ice Age Dawn of the Dinosaurs \\u0E40\\u0E08\\u0E32\\u0E30\\u0E22\\u0E38\\u0E04\\u0E19\\u0E49\\u0E33\\u0E41\\u0E02\\u0E47\\u0E07\\u0E21\\u0E2B\\u0E31\\u0E28\\u0E08\\u0E23\\u0E23\\u0E22\\u0E4C 3 http://t.co/Xd2BXoIL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:58:03 +0000", "from_user": "RoosNeumann", "from_user_id": 325174786, "from_user_id_str": "325174786", "from_user_name": "Roos Neumann", "geo": null, "id": 148658335036612600, "id_str": "148658335036612608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698100801/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698100801/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:58:02 +0000", "from_user": "jurovich", "from_user_id": 18159265, "from_user_id_str": "18159265", "from_user_name": "Vern Jurovich", "geo": null, "id": 148658330246725630, "id_str": "148658330246725632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/112688681/033_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/112688681/033_normal.JPG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @FoxMe: A sausagefest made out of old guys in glasses and hats and jeans and t-shirts.... dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:56:52 +0000", "from_user": "daltonhealey", "from_user_id": 247143494, "from_user_id_str": "247143494", "from_user_name": "Dalton Healey", "geo": null, "id": 148658036779659260, "id_str": "148658036779659264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1661502084/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661502084/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#IWasThatKid who was obsessed with dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:56:17 +0000", "from_user": "Rossanasmq", "from_user_id": 431693877, "from_user_id_str": "431693877", "from_user_name": "Rossana Waldie", "geo": null, "id": 148657891346362370, "id_str": "148657891346362368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681025531/large_100_1096_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681025531/large_100_1096_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dinosaurs! (Turtleback School & Library Binding Edition) (DK Reader - Level 4): FOR USE IN SCHOOLS AND LIBRARIES... http://t.co/ZEphrUYM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:54:30 +0000", "from_user": "Sabrinay9", "from_user_id": 400979747, "from_user_id_str": "400979747", "from_user_name": "Hylda Gilbertson", "geo": null, "id": 148657441641480200, "id_str": "148657441641480193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1663262865/1004170288Nisean_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663262865/1004170288Nisean_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I'm a funny girl! has u can see i can take a good laff! i love hugs!!! Also i play the guitar and dinosaurs rule the world!!!! RAWR ( ;", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:53:04 +0000", "from_user": "GracieRebecca97", "from_user_id": 338795745, "from_user_id_str": "338795745", "from_user_name": "gracie toledo", "geo": null, "id": 148657082265112580, "id_str": "148657082265112576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1685747289/andrew_066_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685747289/andrew_066_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:52:20 +0000", "from_user": "MWalker1992", "from_user_id": 407062935, "from_user_id_str": "407062935", "from_user_name": "Matthew Walker", "geo": null, "id": 148656894540660740, "id_str": "148656894540660737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694737643/3VnN8XdU_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694737643/3VnN8XdU_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Maybe my manager will let me take half day of i let him play with dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:52:05 +0000", "from_user": "mixchan26", "from_user_id": 229740430, "from_user_id_str": "229740430", "from_user_name": "angela lumyeb", "geo": null, "id": 148656834578882560, "id_str": "148656834578882562", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1287675952/190768_1598593725282_1249181607_31257290_7134707_n_-_Copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1287675952/190768_1598593725282_1249181607_31257290_7134707_n_-_Copy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:51:57 +0000", "from_user": "sillysampi", "from_user_id": 89709462, "from_user_id_str": "89709462", "from_user_name": "Paramita Mohamad", "geo": null, "id": 148656799627743230, "id_str": "148656799627743232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690657896/IMG00668-20111206-1531_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690657896/IMG00668-20111206-1531_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@GraceAstari I can smell the desperation oozing from some dinosaurs agencies, trying to keep up with technology.", "to_user": "GraceAstari", "to_user_id": 36608482, "to_user_id_str": "36608482", "to_user_name": "Grace Italiaander", "in_reply_to_status_id": 148656468776849400, "in_reply_to_status_id_str": "148656468776849409"}, +{"created_at": "Mon, 19 Dec 2011 06:51:17 +0000", "from_user": "NoBetterName96", "from_user_id": 388330117, "from_user_id_str": "388330117", "from_user_name": "Cheryl Ong", "geo": null, "id": 148656630110756860, "id_str": "148656630110756864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699747414/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699747414/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:50:49 +0000", "from_user": "itsellibabe", "from_user_id": 284327263, "from_user_id_str": "284327263", "from_user_name": "Elli", "geo": null, "id": 148656515241357300, "id_str": "148656515241357313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1686508680/61lBD3YH_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686508680/61lBD3YH_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:50:01 +0000", "from_user": "schmabster", "from_user_id": 63411640, "from_user_id_str": "63411640", "from_user_name": "Tabatha Beiser", "geo": null, "id": 148656314556485630, "id_str": "148656314556485632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1610015778/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610015778/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @SamCassese: \"When I was little, I thought AD was After Dinosaurs. I'm talking about up to my freshman year...at Zion.\" -Zach Wable", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:49:59 +0000", "from_user": "askingdave", "from_user_id": 308309997, "from_user_id_str": "308309997", "from_user_name": "David Chrem", "geo": null, "id": 148656304582434800, "id_str": "148656304582434816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1375777952/227879_10100216654549391_5014384_51561261_5357096_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1375777952/227879_10100216654549391_5014384_51561261_5357096_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@TheBethPhoenix no karma? That's sorta scary... So are you the kind of person who doesn't believe in dinosaurs cause its not in the bible?", "to_user": "TheBethPhoenix", "to_user_id": 97690357, "to_user_id_str": "97690357", "to_user_name": "Beth Phoenix", "in_reply_to_status_id": 148650687658602500, "in_reply_to_status_id_str": "148650687658602496"}, +{"created_at": "Mon, 19 Dec 2011 06:49:12 +0000", "from_user": "_BOSSvsMODEL", "from_user_id": 105288118, "from_user_id_str": "105288118", "from_user_name": "\\uE230yourTRENDINGtopic", "geo": null, "id": 148656109190787070, "id_str": "148656109190787072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1659794266/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659794266/image_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@QuotesForGirlz Kiss me if i'm wrong but dinosaurs still exist right?\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:48:44 +0000", "from_user": "cposey49", "from_user_id": 31054166, "from_user_id_str": "31054166", "from_user_name": "Call Posey", "geo": null, "id": 148655989871218700, "id_str": "148655989871218689", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1434648126/Photo_on_2011-06-13_at_00.15_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1434648126/Photo_on_2011-06-13_at_00.15_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Killed some dinosaurs, watched Land of the Lost, and Jackass 3 with @ThtCuntHolSteve", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:48:21 +0000", "from_user": "marizelizabeth", "from_user_id": 107582987, "from_user_id_str": "107582987", "from_user_name": "Mariz Taytay", "geo": null, "id": 148655894186573820, "id_str": "148655894186573824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699911694/Picture0771_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699911694/Picture0771_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:47:14 +0000", "from_user": "Larainewuf", "from_user_id": 431707099, "from_user_id_str": "431707099", "from_user_name": "Laraine Eisenbrandt", "geo": null, "id": 148655610865524740, "id_str": "148655610865524736", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681047599/large_1272562755_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681047599/large_1272562755_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Pachyrhinosaurus (Procon): CollectA / Procon Dinosaurs http://t.co/Bkj1QjkY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:46:40 +0000", "from_user": "fortimsakeBGRDY", "from_user_id": 361107285, "from_user_id_str": "361107285", "from_user_name": "Tim Chaos", "geo": null, "id": 148655470352154620, "id_str": "148655470352154624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692379327/p20111213-221557_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692379327/p20111213-221557_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "I have no idea where these dinosaurs came from. #lefthandwonders", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:45:18 +0000", "from_user": "MitchKWong", "from_user_id": 239124350, "from_user_id_str": "239124350", "from_user_name": "Mitchell Wong", "geo": null, "id": 148655125416775680, "id_str": "148655125416775680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1572047630/mitchell_coke_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572047630/mitchell_coke_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@thewillchow lol. nothing beats when nathan thinks people lived with the dinosaurs.", "to_user": "thewillchow", "to_user_id": 161779130, "to_user_id_str": "161779130", "to_user_name": "William Chow", "in_reply_to_status_id": 148653555321028600, "in_reply_to_status_id_str": "148653555321028612"}, +{"created_at": "Mon, 19 Dec 2011 06:43:40 +0000", "from_user": "ROCKA_FELLA_", "from_user_id": 268595527, "from_user_id_str": "268595527", "from_user_name": "REBEL ROUSER", "geo": null, "id": 148654714928640000, "id_str": "148654714928640001", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701634401/DOPE2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701634401/DOPE2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#IWasThatKid who loved dinosaurs over everything, #JURASSICPARK was my #SHIT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:42:07 +0000", "from_user": "SkylarJade94", "from_user_id": 391819577, "from_user_id_str": "391819577", "from_user_name": "Skylar Syrnyk", "geo": null, "id": 148654324069826560, "id_str": "148654324069826560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690324069/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690324069/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:42:00 +0000", "from_user": "_CutieePatootie", "from_user_id": 203394366, "from_user_id_str": "203394366", "from_user_name": "Robin Christian", "geo": null, "id": 148654295921864700, "id_str": "148654295921864704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674824801/rob_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674824801/rob_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Me & Ekco are having some real serious conversations about life right now. Dinosaurs and all lllls , drunknesss smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:41:57 +0000", "from_user": "smallinfinities", "from_user_id": 40413222, "from_user_id_str": "40413222", "from_user_name": "Amber", "geo": null, "id": 148654281610887170, "id_str": "148654281610887169", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/518538226/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/518538226/twitterProfilePhoto_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Megrrrs Yeah, gluten free sugar cookies. With nommy frosting. :D Some in the shape of Christmas dinosaurs. :)", "to_user": "Megrrrs", "to_user_id": 47526647, "to_user_id_str": "47526647", "to_user_name": "Meggars", "in_reply_to_status_id": 148650517822844930, "in_reply_to_status_id_str": "148650517822844928"}, +{"created_at": "Mon, 19 Dec 2011 06:40:37 +0000", "from_user": "JediMasterSam", "from_user_id": 299247665, "from_user_id_str": "299247665", "from_user_name": "White Lightnin'", "geo": null, "id": 148653947236790270, "id_str": "148653947236790272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1620093749/twitterpic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620093749/twitterpic_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "What if Dinosaurs were created by the CIA as a means of discouraging time travel? #ConspiracyTheorySam", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:39:54 +0000", "from_user": "NouraHun", "from_user_id": 247773067, "from_user_id_str": "247773067", "from_user_name": "Noura *\\u2323\\u030A\\u2508\\u0325-\\u0336\\u032F\\u0361.\\u0338* ", "geo": null, "id": 148653764998471680, "id_str": "148653764998471680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1671883211/6000873099_9541cfc2c5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671883211/6000873099_9541cfc2c5_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Hahahahaa =)) RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:39:35 +0000", "from_user": "GabiBaby010", "from_user_id": 124977054, "from_user_id_str": "124977054", "from_user_name": "Gabriella Gaxiola", "geo": null, "id": 148653687034748930, "id_str": "148653687034748928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1640421142/SpYUYkeU_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640421142/SpYUYkeU_normal", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @heytheremo: kiss me if i'm wrong, but dinosaurs still exist right? ;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:39:11 +0000", "from_user": "Ispeaknoengrish", "from_user_id": 409048427, "from_user_id_str": "409048427", "from_user_name": "Angel Ochoa", "geo": null, "id": 148653586182705150, "id_str": "148653586182705152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1647564611/Up0Fxn4E_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647564611/Up0Fxn4E_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "@kaeteevee How did that get there!? And how did that rail get in my dinosaurs mouth!?!?!", "to_user": "kaeteevee", "to_user_id": 164399986, "to_user_id_str": "164399986", "to_user_name": "Karen \\u2652", "in_reply_to_status_id": 148653026515763200, "in_reply_to_status_id_str": "148653026515763200"}, +{"created_at": "Mon, 19 Dec 2011 06:38:36 +0000", "from_user": "heytheremo", "from_user_id": 434381393, "from_user_id_str": "434381393", "from_user_name": "morgannnn\\uE528", "geo": null, "id": 148653438404792320, "id_str": "148653438404792321", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687562434/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687562434/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "kiss me if i'm wrong, but dinosaurs still exist right? ;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:38:35 +0000", "from_user": "GabbyBruce", "from_user_id": 353578636, "from_user_id_str": "353578636", "from_user_name": "Gabby Bruce", "geo": null, "id": 148653435884015600, "id_str": "148653435884015617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1571037699/320084_10150368011020804_722780803_10258468_1739902828_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1571037699/320084_10150368011020804_722780803_10258468_1739902828_n_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/BirVl8bL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:38:04 +0000", "from_user": "KingTutSwagg", "from_user_id": 311659953, "from_user_id_str": "311659953", "from_user_name": "MeRK", "geo": null, "id": 148653303478235140, "id_str": "148653303478235136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701640273/302469_272995562725302_100000445805797_1054832_803863131_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701640273/302469_272995562725302_100000445805797_1054832_803863131_n_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @KlockwithaK: @KingTutSwagg lmaoo dinosaurs, gotta cop that Lion-O Thundercats sword too", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:37:43 +0000", "from_user": "KlockwithaK", "from_user_id": 20295847, "from_user_id_str": "20295847", "from_user_name": "Klock", "geo": null, "id": 148653215460769800, "id_str": "148653215460769792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1451970204/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1451970204/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "@KingTutSwagg lmaoo dinosaurs, gotta cop that Lion-O Thundercats sword too", "to_user": "KingTutSwagg", "to_user_id": 311659953, "to_user_id_str": "311659953", "to_user_name": "MeRK", "in_reply_to_status_id": 148652730297237500, "in_reply_to_status_id_str": "148652730297237504"}, +{"created_at": "Mon, 19 Dec 2011 06:37:24 +0000", "from_user": "ill_pr0paganda", "from_user_id": 341319430, "from_user_id_str": "341319430", "from_user_name": "tone williams", "geo": null, "id": 148653139120238600, "id_str": "148653139120238592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688246571/JMWC9LVE_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688246571/JMWC9LVE_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "#iWasThatKid wen i always watched early tv show, Dinosaurs! just a good mins before a yellow bus comes..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:37:19 +0000", "from_user": "Gabrieleqpf", "from_user_id": 430062538, "from_user_id_str": "430062538", "from_user_name": "Gabriele Cluff", "geo": null, "id": 148653116399693820, "id_str": "148653116399693825", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1677551512/zculpy21ur_109638363-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677551512/zculpy21ur_109638363-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Ice Age Dawn of the Dinosaurs Napkins 16ct: Kids will love these beautiful Ice Age themed napkins at their next ... http://t.co/Qm4bUCVN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:36:58 +0000", "from_user": "Bug_Prince", "from_user_id": 15054149, "from_user_id_str": "15054149", "from_user_name": "Prince", "geo": null, "id": 148653029082660860, "id_str": "148653029082660864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1395284779/prince_charles_funny_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1395284779/prince_charles_funny_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @uncannybal: Dinosaurs were made up by the CIA to discourage time travel.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:36:39 +0000", "from_user": "TheWorldofWomen", "from_user_id": 439885399, "from_user_id_str": "439885399", "from_user_name": "Girls Girls Girls", "geo": null, "id": 148652946962386940, "id_str": "148652946962386945", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699880851/images_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699880851/images_normal.jpeg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/abPf5Y5b", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:35:38 +0000", "from_user": "inconversant", "from_user_id": 265325017, "from_user_id_str": "265325017", "from_user_name": "gelignite it", "geo": null, "id": 148652692951154700, "id_str": "148652692951154688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701640225/twitticon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701640225/twitticon_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@thezombeetle tho you're pretty passable at dinosaurs soooooo http://t.co/dRg4bGB2", "to_user": "thezombeetle", "to_user_id": 96499324, "to_user_id_str": "96499324", "to_user_name": "zombeetle", "in_reply_to_status_id": 148651948692881400, "in_reply_to_status_id_str": "148651948692881408"}, +{"created_at": "Mon, 19 Dec 2011 06:35:26 +0000", "from_user": "sterreceleste", "from_user_id": 208690891, "from_user_id_str": "208690891", "from_user_name": "Sterre van Wanrooij", "geo": null, "id": 148652643269615600, "id_str": "148652643269615617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685385862/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685385862/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:34:55 +0000", "from_user": "Dayana_Sabrina", "from_user_id": 50886844, "from_user_id_str": "50886844", "from_user_name": "dayana martinez", "geo": null, "id": 148652514449948670, "id_str": "148652514449948673", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1468092549/IMG002332_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1468092549/IMG002332_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "kiss me if im wrong , but dinosaurs still exist right ?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:34:52 +0000", "from_user": "dinolove_kenzie", "from_user_id": 312842638, "from_user_id_str": "312842638", "from_user_name": "McKenzie!(:", "geo": null, "id": 148652498092163070, "id_str": "148652498092163072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701668676/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701668676/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@SGLandrum hey... Dinosaurs are haute!(;", "to_user": "SGLandrum", "to_user_id": 383887944, "to_user_id_str": "383887944", "to_user_name": "Samantha Landrum", "in_reply_to_status_id": 148652283146670080, "in_reply_to_status_id_str": "148652283146670080"}, +{"created_at": "Mon, 19 Dec 2011 06:34:10 +0000", "from_user": "Rump_Shaker14", "from_user_id": 315780931, "from_user_id_str": "315780931", "from_user_name": "Sydney McCullough", "geo": null, "id": 148652322568941570, "id_str": "148652322568941568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697738043/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697738043/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MeanGirlQuotes: \"And on the third day, God created the Remington bolt-action rifle, so that Man could fight the dinosaurs. And the homosexuals. Amen.\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:33:13 +0000", "from_user": "TakaVodkaFlame", "from_user_id": 38849284, "from_user_id_str": "38849284", "from_user_name": "\\uE10ETaka\\uE10E", "geo": null, "id": 148652084030476300, "id_str": "148652084030476288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694292179/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694292179/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Do Virgins Exist Or Are They Playing The Ultimate Game Of Hide & Seek With The Dinosaurs???", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:32:35 +0000", "from_user": "MorganLeah_", "from_user_id": 280707904, "from_user_id_str": "280707904", "from_user_name": "morgan evans", "geo": null, "id": 148651924353331200, "id_str": "148651924353331201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701507947/290_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701507947/290_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Kiss me if i'm wrong but dinosaurs still exist right ... ?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:31:44 +0000", "from_user": "mahbelle06", "from_user_id": 109155754, "from_user_id_str": "109155754", "from_user_name": "Mabel Cortes", "geo": null, "id": 148651710984884220, "id_str": "148651710984884225", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1536133261/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1536133261/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:31:14 +0000", "from_user": "BrittanyMich1", "from_user_id": 340786198, "from_user_id_str": "340786198", "from_user_name": "Brittany Michelle", "geo": null, "id": 148651587659767800, "id_str": "148651587659767809", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693755671/IMG_1059_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693755671/IMG_1059_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:31:07 +0000", "from_user": "macoolbeans", "from_user_id": 331453381, "from_user_id_str": "331453381", "from_user_name": "Christine Makhoul", "geo": null, "id": 148651556542230530, "id_str": "148651556542230528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1591534531/IMG955763_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591534531/IMG955763_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:30:35 +0000", "from_user": "ChuLinForMayor", "from_user_id": 248609839, "from_user_id_str": "248609839", "from_user_name": "I ain't \\uE05A\\uE00E", "geo": null, "id": 148651422311911420, "id_str": "148651422311911424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1667371583/ChuLinForMayor_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667371583/ChuLinForMayor_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @MissViickyy: I can only imagine how some of these guys couches smell.. N their feet dangling off their twin bed wit dinosaurs on their bed sheets", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:29:23 +0000", "from_user": "Genovevawgv", "from_user_id": 431762809, "from_user_id_str": "431762809", "from_user_name": "Justa Lamfers", "geo": null, "id": 148651122201071600, "id_str": "148651122201071616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681162767/hhfwvb55a2_132258137_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681162767/hhfwvb55a2_132258137_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Wooden Dinosaur Magnets: Twenty magnetic dinosaurs eager to play in the twenty-first century! Bright colors add ... http://t.co/CvMs9U2g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:29:20 +0000", "from_user": "NinoGino", "from_user_id": 54183215, "from_user_id_str": "54183215", "from_user_name": "Hind Galadari", "geo": null, "id": 148651108485693440, "id_str": "148651108485693440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1468530897/7mada_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1468530897/7mada_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Photo: Best explanation to dinosaurs\\u2019 extinction yet! http://t.co/X6Xvcm0O", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:29:16 +0000", "from_user": "MissViickyy", "from_user_id": 378401291, "from_user_id_str": "378401291", "from_user_name": "Vicky ", "geo": null, "id": 148651091985301500, "id_str": "148651091985301504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1684606149/MissViickyy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684606149/MissViickyy_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "I can only imagine how some of these guys couches smell.. N their feet dangling off their twin bed wit dinosaurs on their bed sheets", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:29:13 +0000", "from_user": "mcrlove614", "from_user_id": 264901143, "from_user_id_str": "264901143", "from_user_name": "GabiCakes!", "geo": null, "id": 148651079297540100, "id_str": "148651079297540098", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1643548326/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643548326/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @SethMacFarlane: There\\u2019s a decent chance our next president will believe that humans once kept dinosaurs as pets.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:28:44 +0000", "from_user": "_Fashionisha", "from_user_id": 199303751, "from_user_id_str": "199303751", "from_user_name": "tanisha", "geo": null, "id": 148650955519442940, "id_str": "148650955519442945", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701644823/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701644823/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Lol look at the dinosaurs !! http://t.co/knutidIn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:28:40 +0000", "from_user": "Conchas_choncha", "from_user_id": 392873774, "from_user_id_str": "392873774", "from_user_name": "concha", "geo": null, "id": 148650939232956400, "id_str": "148650939232956416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670461816/og186tKr_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670461816/og186tKr_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@pacificoceanjoh 2,009?....what fuck u roaming with dinosaurs....u freaking look like a caveman, all hairy, smelly and ugly!!", "to_user": "pacificoceanjoh", "to_user_id": 339880454, "to_user_id_str": "339880454", "to_user_name": "john patrick rogers", "in_reply_to_status_id": 148648120702603260, "in_reply_to_status_id_str": "148648120702603264"}, +{"created_at": "Mon, 19 Dec 2011 06:28:00 +0000", "from_user": "thecairos", "from_user_id": 23168687, "from_user_id_str": "23168687", "from_user_name": "THE CAIROS", "geo": null, "id": 148650771322380300, "id_str": "148650771322380289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1494700447/167802_477270281665_59637491665_6256342_6002810_n-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1494700447/167802_477270281665_59637491665_6256342_6002810_n-1_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Last Dinosaurs video clip for \"Zoom\" is almost Channel V's ripe clip of the week!! Click on the link and like it... http://t.co/4j9EG8tU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:27:11 +0000", "from_user": "ExclusivelyME_", "from_user_id": 122963389, "from_user_id_str": "122963389", "from_user_name": ". . Neicy's Speaking", "geo": null, "id": 148650564417368060, "id_str": "148650564417368064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695249802/Twitcon2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695249802/Twitcon2_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "#IWasThatKid that saw pink dinosaurs in the trees.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:26:52 +0000", "from_user": "Megan_MACKemup", "from_user_id": 394860227, "from_user_id_str": "394860227", "from_user_name": "KushandSunshine", "geo": null, "id": 148650488102010880, "id_str": "148650488102010880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701505477/MNJJC-A1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701505477/MNJJC-A1_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Dinosaurs just robbed me :(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:26:28 +0000", "from_user": "kimorenoo", "from_user_id": 336197054, "from_user_id_str": "336197054", "from_user_name": "kimorenoo", "geo": null, "id": 148650387954610180, "id_str": "148650387954610176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699605893/IMG_2655_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699605893/IMG_2655_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:26:21 +0000", "from_user": "GangsterOfL0ve", "from_user_id": 325892873, "from_user_id_str": "325892873", "from_user_name": "Seanbob Squarepants", "geo": null, "id": 148650356350525440, "id_str": "148650356350525440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1622712595/4Q8Vpgv3_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622712595/4Q8Vpgv3_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @kreid_c: #IWasThatKid that would get those plastic pills from Walgreens that would melt when you put them in hot water and dinosaurs came out", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:25:59 +0000", "from_user": "Hannahrji", "from_user_id": 431764032, "from_user_id_str": "431764032", "from_user_name": "Hannah Govindeisami", "geo": null, "id": 148650263048232960, "id_str": "148650263048232961", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681168822/d1qq4h455h_129973180_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681168822/d1qq4h455h_129973180_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NOVA Dinosaurs of the Gobi: vhs - museum expedition http://t.co/dsg2wvb0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:25:56 +0000", "from_user": "_RememberEmber", "from_user_id": 273590667, "from_user_id_str": "273590667", "from_user_name": "danya ember \\u2665", "geo": null, "id": 148650252319199230, "id_str": "148650252319199232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686515903/IMG_2983kd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686515903/IMG_2983kd_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @InsaneTweets_: Parent: \"Well when I was your age...\" Me: STFU WHEN YOU WERE MY AGE, YOU RODE DINOSAURS!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:25:19 +0000", "from_user": "havoctrusse8199", "from_user_id": 435697096, "from_user_id_str": "435697096", "from_user_name": "gudrun Obrien", "geo": null, "id": 148650094718226430, "id_str": "148650094718226432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691142645/75453387photo__2511__normal.jpg", "profile_image_url_https": null, "source": "<a href="http://twitter.com/">web</a>", "text": "I bet the dinosaurs all died out in the velocirapture", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:25:15 +0000", "from_user": "DezDaGenius", "from_user_id": 254708316, "from_user_id_str": "254708316", "from_user_name": "Desz\\u00E9 Adams", "geo": null, "id": 148650081694920700, "id_str": "148650081694920705", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1649934189/376637_199378416807535_100002061348180_431899_850984331_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649934189/376637_199378416807535_100002061348180_431899_850984331_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@x__Cola_ her ass look like she rape dinosaurs", "to_user": "x__Cola_", "to_user_id": 87555353, "to_user_id_str": "87555353", "to_user_name": "Tiffany Randle", "in_reply_to_status_id": 148649315315875840, "in_reply_to_status_id_str": "148649315315875840"}, +{"created_at": "Mon, 19 Dec 2011 06:25:10 +0000", "from_user": "Norcottqm", "from_user_id": 395410961, "from_user_id_str": "395410961", "from_user_name": "Krissy Norcott", "geo": null, "id": 148650058240368640, "id_str": "148650058240368640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1599648054/MFC-2013_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599648054/MFC-2013_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hatley Boys 2-7 Dinosaurs Two Pairs Socks,Multi,L 4-7: http://t.co/NR6R2BAt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:25:09 +0000", "from_user": "Perelmanhb", "from_user_id": 395388504, "from_user_id_str": "395388504", "from_user_name": "Eddie Perelman", "geo": null, "id": 148650055459545100, "id_str": "148650055459545088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1599594693/MFC-4424_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599594693/MFC-4424_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Hatley Boys 2-7 Dinosaurs Two Pairs Socks,Multi,L 4-7: http://t.co/UyxQsJJf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:24:59 +0000", "from_user": "newyorklove95", "from_user_id": 405101371, "from_user_id_str": "405101371", "from_user_name": "cassie malouta", "geo": null, "id": 148650011482259460, "id_str": "148650011482259458", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1622643966/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622643966/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:24:54 +0000", "from_user": "magoogle93", "from_user_id": 30189843, "from_user_id_str": "30189843", "from_user_name": "Magaly Ramirez", "geo": null, "id": 148649993048293380, "id_str": "148649993048293376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1616076834/678A0265_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616076834/678A0265_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:24:28 +0000", "from_user": "kstrosnider", "from_user_id": 171461316, "from_user_id_str": "171461316", "from_user_name": "Kelly Strosnider", "geo": null, "id": 148649883719573500, "id_str": "148649883719573505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1566984196/64902_863817984800_12932425_45594981_2297901_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566984196/64902_863817984800_12932425_45594981_2297901_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "the most peaceful and intellectual of all the dinosaurs was the thesaurus", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:24:01 +0000", "from_user": "EvelynArcasi", "from_user_id": 124602253, "from_user_id_str": "124602253", "from_user_name": "Elly Arcasi'", "geo": null, "id": 148649768443322370, "id_str": "148649768443322368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1591347832/ayyyyy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591347832/ayyyyy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:23:59 +0000", "from_user": "sarahromero2502", "from_user_id": 138160222, "from_user_id_str": "138160222", "from_user_name": "sarah romero", "geo": null, "id": 148649762709708800, "id_str": "148649762709708800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1460778600/2011-07-18_12-43-31.387_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1460778600/2011-07-18_12-43-31.387_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:23:26 +0000", "from_user": "kreid_c", "from_user_id": 178432523, "from_user_id_str": "178432523", "from_user_name": "Keith R-C", "geo": null, "id": 148649622842257400, "id_str": "148649622842257408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1663187656/Photo_on_2011-11-28_at_16.43__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663187656/Photo_on_2011-11-28_at_16.43__2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#IWasThatKid that would get those plastic pills from Walgreens that would melt when you put them in hot water and dinosaurs came out", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:21:56 +0000", "from_user": "KeshikaRocks", "from_user_id": 94307737, "from_user_id_str": "94307737", "from_user_name": "Keshika Gounden", "geo": null, "id": 148649245761744900, "id_str": "148649245761744896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700844559/155211_182421548441830_100000219596898_685171_4704840_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700844559/155211_182421548441830_100000219596898_685171_4704840_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:21:21 +0000", "from_user": "_LUCKY_YOU_", "from_user_id": 98173247, "from_user_id_str": "98173247", "from_user_name": "Sarah Wesler", "geo": null, "id": 148649098466164740, "id_str": "148649098466164737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695769282/2011-11-02_09-16-31_80-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695769282/2011-11-02_09-16-31_80-1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:21:08 +0000", "from_user": "Marylouisety91", "from_user_id": 388926642, "from_user_id_str": "388926642", "from_user_name": "Marylouise Grinnan", "geo": null, "id": 148649044854583300, "id_str": "148649044854583296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1583388128/GJHL-3749_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583388128/GJHL-3749_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dawn of the Dinosaurs Poster Laminated: Beautifully illustrated poster detailing the age of the dinosaurs. Inclu... http://t.co/UNgg9QEp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:20:05 +0000", "from_user": "Candiops", "from_user_id": 431695140, "from_user_id_str": "431695140", "from_user_name": "Candi Delgatto", "geo": null, "id": 148648778293977100, "id_str": "148648778293977089", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681019731/iglvx3yp1b_135506071-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681019731/iglvx3yp1b_135506071-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Mystery of the Missing Dinosaurs ((Real Kids, Real Places)): An ordinary trip to see the dinosaurs at Chicag... http://t.co/lG0KVIkU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:20:05 +0000", "from_user": "KeriKhaos", "from_user_id": 319312356, "from_user_id_str": "319312356", "from_user_name": "ImaNinja\\u2122", "geo": null, "id": 148648778054893570, "id_str": "148648778054893568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670088912/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670088912/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I wonder if dinosaurs were really green", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:20:04 +0000", "from_user": "Brophuss", "from_user_id": 58301213, "from_user_id_str": "58301213", "from_user_name": "Bonny", "geo": null, "id": 148648773814464500, "id_str": "148648773814464512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1644543224/Photo_on_11-14-11_at_9.19_PM_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644543224/Photo_on_11-14-11_at_9.19_PM_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @InsaneTweets_: Parent: \"Well when I was your age...\" Me: STFU WHEN YOU WERE MY AGE, YOU RODE DINOSAURS!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:19:57 +0000", "from_user": "shhannaan", "from_user_id": 78318624, "from_user_id_str": "78318624", "from_user_name": "SillyFaceSayHey", "geo": null, "id": 148648748220817400, "id_str": "148648748220817408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680519057/DSC00177_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680519057/DSC00177_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:19:55 +0000", "from_user": "Creestfu", "from_user_id": 235725894, "from_user_id_str": "235725894", "from_user_name": "BrendonUrie\\u25B2\\u25B2", "geo": null, "id": 148648737282080770, "id_str": "148648737282080768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701705785/creestfu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701705785/creestfu_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "\"...and on the third day, God created the remington bull action rifle, so that man could fight the dinosaurs\\u2026and the ho-mo-sex-uals. AMEN!\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:19:29 +0000", "from_user": "Bonita1TaYFoXx", "from_user_id": 346201643, "from_user_id_str": "346201643", "from_user_name": "rejuvenated.muy", "geo": null, "id": 148648628888678400, "id_str": "148648628888678400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692487324/aa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692487324/aa_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @akilzbennett: #IWasThatKid that liked Airplanes and Dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:19:11 +0000", "from_user": "cassandraKLMS", "from_user_id": 423494608, "from_user_id_str": "423494608", "from_user_name": "Cassandra Lim", "geo": null, "id": 148648551893839870, "id_str": "148648551893839872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695153546/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695153546/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:18:46 +0000", "from_user": "ATLAfanatic", "from_user_id": 162563875, "from_user_id_str": "162563875", "from_user_name": "ATLAfanatic", "geo": null, "id": 148648449234055170, "id_str": "148648449234055168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1259133884/imagesCACAPBWU_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1259133884/imagesCACAPBWU_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:18:32 +0000", "from_user": "HARVARD_B0UND", "from_user_id": 391501353, "from_user_id_str": "391501353", "from_user_name": "Corey Carter", "geo": null, "id": 148648387670065150, "id_str": "148648387670065152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697417162/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697417162/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "This girl saw my dick and thought dinosaurs came back to life", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:18:31 +0000", "from_user": "DJSUNKISS", "from_user_id": 35505280, "from_user_id_str": "35505280", "from_user_name": "kisstian brown", "geo": null, "id": 148648385673564160, "id_str": "148648385673564161", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1638040327/2__8_of_142__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638040327/2__8_of_142__normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Dats not niceeeee lol RT @MzNina216: So my Ex's Ex resembles baby sinclair from that old tv show Dinosaurs. O_o *sigh*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:18:20 +0000", "from_user": "Element_62", "from_user_id": 314862403, "from_user_id_str": "314862403", "from_user_name": "Tressa Martinez", "geo": null, "id": 148648341234909200, "id_str": "148648341234909184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1663390562/fairy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663390562/fairy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "whoever thought of chicken nuggets the shape of dinosaurs is a genius :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:18:08 +0000", "from_user": "ErikaTorales", "from_user_id": 415921262, "from_user_id_str": "415921262", "from_user_name": "Erika Torales", "geo": null, "id": 148648288982278140, "id_str": "148648288982278144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685544443/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685544443/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Dinosaurs aren't extinct, I've seen them -Preslie #NotLying", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:18:03 +0000", "from_user": "akilzbennett", "from_user_id": 230222881, "from_user_id_str": "230222881", "from_user_name": "Akil Bennett", "geo": null, "id": 148648269650731000, "id_str": "148648269650731008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668682133/111130-174545_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668682133/111130-174545_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#IWasThatKid that liked Airplanes and Dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:18:00 +0000", "from_user": "Linnab00", "from_user_id": 433686506, "from_user_id_str": "433686506", "from_user_name": "Lindsey Sexton", "geo": null, "id": 148648256866492400, "id_str": "148648256866492416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690210910/Photo_on_2011-09-18_at_13.34__7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690210910/Photo_on_2011-09-18_at_13.34__7_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:17:53 +0000", "from_user": "punkienugget", "from_user_id": 131940718, "from_user_id_str": "131940718", "from_user_name": "stephanie christine", "geo": null, "id": 148648228131323900, "id_str": "148648228131323904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701644040/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701644040/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:17:49 +0000", "from_user": "AudreyMChance", "from_user_id": 181356655, "from_user_id_str": "181356655", "from_user_name": "Audrey Drew Michael\\u2665", "geo": null, "id": 148648209667981300, "id_str": "148648209667981312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691193703/audreyjpg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691193703/audreyjpg_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:17:27 +0000", "from_user": "Sharilynqnok", "from_user_id": 426265044, "from_user_id_str": "426265044", "from_user_name": "Sharilyn Marnell", "geo": null, "id": 148648118651592700, "id_str": "148648118651592704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668804347/LLCM-2335_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668804347/LLCM-2335_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dinosaurs: Death of the Dinosaur [VHS]: Brand new factory sealed - In stock and ready to ship! http://t.co/32Z5w3sP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:17:27 +0000", "from_user": "Scalaluo", "from_user_id": 395427386, "from_user_id_str": "395427386", "from_user_name": "Sharyn Scala", "geo": null, "id": 148648116130820100, "id_str": "148648116130820096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1599684462/MFC-0605_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599684462/MFC-0605_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dinosaurs: Death of the Dinosaur [VHS]: Brand new factory sealed - In stock and ready to ship! http://t.co/g2wocBVM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:16:58 +0000", "from_user": "SaydeeB_00", "from_user_id": 380695575, "from_user_id_str": "380695575", "from_user_name": "Saydee Brighton", "geo": null, "id": 148647993346752500, "id_str": "148647993346752512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1672761593/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672761593/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 06:16:42 +0000", "from_user": "riley_bethh", "from_user_id": 25762904, "from_user_id_str": "25762904", "from_user_name": "Riley Couch", "geo": null, "id": 148647929501061120, "id_str": "148647929501061120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1564788088/tweetpic2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1564788088/tweetpic2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:16:38 +0000", "from_user": "kassijean_", "from_user_id": 334873008, "from_user_id_str": "334873008", "from_user_name": "Kassi Huotari", "geo": null, "id": 148647910651867140, "id_str": "148647910651867137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686313868/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686313868/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:16:35 +0000", "from_user": "asma_chiyochan", "from_user_id": 83334417, "from_user_id_str": "83334417", "from_user_name": "asma chan", "geo": null, "id": 148647897662111740, "id_str": "148647897662111745", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690433538/jio_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690433538/jio_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Bugginn: #iwasthatkid that played with dinosaurs and toy-cars instead of barbies", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:16:10 +0000", "from_user": "packersfan86", "from_user_id": 245059088, "from_user_id_str": "245059088", "from_user_name": "\\u2714n\\u0250\\u025F \\u0279\\u01DD\\u029E\\u0254\\u0250d d\\u01DD\\u0131\\u025F\\u0131\\u0279\\u01DD\\u028C", "geo": null, "id": 148647793584640000, "id_str": "148647793584640000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1633096964/daddyandbailee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633096964/daddyandbailee_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@Selene_333 My favorite show back in the day was Dinosaurs!", "to_user": "Selene_333", "to_user_id": 55461458, "to_user_id_str": "55461458", "to_user_name": "Selene Castillo", "in_reply_to_status_id": 148645239685513200, "in_reply_to_status_id_str": "148645239685513217"}, +{"created_at": "Mon, 19 Dec 2011 06:15:27 +0000", "from_user": "jo2mazaki", "from_user_id": 315435798, "from_user_id_str": "315435798", "from_user_name": "Heath Rocha", "geo": null, "id": 148647615049900030, "id_str": "148647615049900032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1391760090/803_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1391760090/803_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Encyclopedia of Dinosaurs 8211 Philip J. Currie Kevin Padian download, read, buy online http://t.co/Lit5B65N", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:15:27 +0000", "from_user": "CourtneyLabe", "from_user_id": 304715642, "from_user_id_str": "304715642", "from_user_name": "Courtney Labe", "geo": null, "id": 148647612868870140, "id_str": "148647612868870144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687820861/IMG002066_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687820861/IMG002066_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#IWasThatKid that played with dinosaurs while all the other girls had barbies & bratz.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:14:52 +0000", "from_user": "Fckkn_Eddie", "from_user_id": 267360947, "from_user_id_str": "267360947", "from_user_name": "\\u2190 yo its eddie! :D", "geo": null, "id": 148647466168893440, "id_str": "148647466168893440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1538059759/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538059759/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#IWasThatKid That loved dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:14:35 +0000", "from_user": "TheJayMovement", "from_user_id": 226626798, "from_user_id_str": "226626798", "from_user_name": "Jay De'Sean Cherry ", "geo": null, "id": 148647394983153660, "id_str": "148647394983153665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701523627/picsay-1324269001__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701523627/picsay-1324269001__1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#IWasThatKid that loved dinosaurs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:14:33 +0000", "from_user": "Hot_Cald_oh", "from_user_id": 246521990, "from_user_id_str": "246521990", "from_user_name": "Aldo ", "geo": null, "id": 148647387563425800, "id_str": "148647387563425792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668808099/IMG_6432_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668808099/IMG_6432_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "How amazing this world would be if dinosaurs never went extinct, just imagine the insanity! :]", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:14:07 +0000", "from_user": "jakegw", "from_user_id": 47255341, "from_user_id_str": "47255341", "from_user_name": "Jake Warren", "geo": null, "id": 148647279153262600, "id_str": "148647279153262592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/263441016/n1293060453_30177991_4956_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/263441016/n1293060453_30177991_4956_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "There are about 7 things I hate more than runny noses, and one of them is that meteor that killed the dinosaurs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:14:01 +0000", "from_user": "107caro", "from_user_id": 123030346, "from_user_id_str": "123030346", "from_user_name": "Carolina magdaleno", "geo": null, "id": 148647251059810300, "id_str": "148647251059810304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1549132301/profile_image_1316384383671_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1549132301/profile_image_1316384383671_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:13:47 +0000", "from_user": "_confringo", "from_user_id": 190052941, "from_user_id_str": "190052941", "from_user_name": "miss granger", "geo": null, "id": 148647194138902530, "id_str": "148647194138902529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697362971/em_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697362971/em_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:13:31 +0000", "from_user": "davidnicolopogi", "from_user_id": 277753464, "from_user_id_str": "277753464", "from_user_name": "Nico Dela Cruz", "geo": null, "id": 148647126468014080, "id_str": "148647126468014080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692599790/225388_10150199181987229_640782228_6749485_7858596_n_reasonably_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692599790/225388_10150199181987229_640782228_6749485_7858596_n_reasonably_small_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I'd rather expect a Suchomimus haha http://t.co/Xpl8LYHT RT @theairprince And what do you expect? Pterodactly?", "to_user": "theairprince", "to_user_id": 43861066, "to_user_id_str": "43861066", "to_user_name": "Toney", "in_reply_to_status_id": 148646212587880450, "in_reply_to_status_id_str": "148646212587880449"}, +{"created_at": "Mon, 19 Dec 2011 06:12:13 +0000", "from_user": "burgersforme", "from_user_id": 188232474, "from_user_id_str": "188232474", "from_user_name": "zQ_lOvEs_Eu\\u2122\\u2764", "geo": null, "id": 148646800188907520, "id_str": "148646800188907522", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697627597/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697627597/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:11:46 +0000", "from_user": "Bugginn", "from_user_id": 281127086, "from_user_id_str": "281127086", "from_user_name": "Carmen Sandiego ", "geo": null, "id": 148646685411782660, "id_str": "148646685411782656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1633199189/gabzbetch_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633199189/gabzbetch_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#iwasthatkid that played with dinosaurs and toy-cars instead of barbies", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:11:22 +0000", "from_user": "CatarinaDeMetal", "from_user_id": 93971447, "from_user_id_str": "93971447", "from_user_name": "SARA\\u00CD", "geo": null, "id": 148646588166832130, "id_str": "148646588166832128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1654963968/imagesCAZAY6OJ_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654963968/imagesCAZAY6OJ_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "For you, boy, I've reserved the worst... scourges and torments, dinosaurs and volcanoes!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:10:22 +0000", "from_user": "mackb123", "from_user_id": 196382762, "from_user_id_str": "196382762", "from_user_name": "Macky Brown", "geo": null, "id": 148646333031526400, "id_str": "148646333031526400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1548876671/00000297384_272779422747289_100000456997903_967575_968323909_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1548876671/00000297384_272779422747289_100000456997903_967575_968323909_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:09:47 +0000", "from_user": "pogsandjello", "from_user_id": 17825828, "from_user_id_str": "17825828", "from_user_name": "Christian Palmer", "geo": null, "id": 148646189015900160, "id_str": "148646189015900160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1651074684/pogsandjello_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651074684/pogsandjello_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @YWIR: Why don't we get those robot dinosaurs some museums have to fight our wars for us?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:09:19 +0000", "from_user": "Tamrandk", "from_user_id": 431706038, "from_user_id_str": "431706038", "from_user_name": "Tamra Styron", "geo": null, "id": 148646070761685000, "id_str": "148646070761684992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681042544/prynbcuied_128590165-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681042544/prynbcuied_128590165-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dinosaurs - Complete Seasons One Thru Four: All four seasons of Disneys tv show http://t.co/1Fui1aX6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:07:13 +0000", "from_user": "DONasaurous", "from_user_id": 283764016, "from_user_id_str": "283764016", "from_user_name": "Don Le", "geo": null, "id": 148645539674730500, "id_str": "148645539674730496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1656071131/289841_2719126257826_1247101835_33256720_338087360_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656071131/289841_2719126257826_1247101835_33256720_338087360_o_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#IWasThatKid who would draw dinosaurs all day with @dushaun7 haha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:06:24 +0000", "from_user": "KashNOChange", "from_user_id": 293086847, "from_user_id_str": "293086847", "from_user_name": "Moee \\u2665", "geo": null, "id": 148645337572192260, "id_str": "148645337572192257", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701618752/Photo_00009_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701618752/Photo_00009_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Ambrieee Doesnt Love Me Anymore. Like Where Have You Been? Playing With Dinosaurs nShit ?!", "to_user": "Ambrieee", "to_user_id": 203149193, "to_user_id_str": "203149193", "to_user_name": "Ambrie", "in_reply_to_status_id": 148645044453257200, "in_reply_to_status_id_str": "148645044453257216"}, +{"created_at": "Mon, 19 Dec 2011 06:05:56 +0000", "from_user": "jlrv94", "from_user_id": 35473687, "from_user_id_str": "35473687", "from_user_name": "Jorge Ram\\u00EDrez", "geo": null, "id": 148645218252627970, "id_str": "148645218252627969", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676430478/388139_2683143235132_1152883167_33025864_893174340_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676430478/388139_2683143235132_1152883167_33025864_893174340_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "#IWasThatKid who loved DINOSAURS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:05:07 +0000", "from_user": "abbigayle_leigh", "from_user_id": 233407873, "from_user_id_str": "233407873", "from_user_name": "Abbey Brennan ", "geo": null, "id": 148645014329757700, "id_str": "148645014329757697", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1678394832/shendz-photo-app-2011-10-05-15-25-0_1_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678394832/shendz-photo-app-2011-10-05-15-25-0_1_1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:03:28 +0000", "from_user": "DeenaStrunk", "from_user_id": 355285223, "from_user_id_str": "355285223", "from_user_name": "Deena Strunk", "geo": null, "id": 148644598460321800, "id_str": "148644598460321793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1625724421/389004_230192263710773_100001600024607_628302_177364414_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1625724421/389004_230192263710773_100001600024607_628302_177364414_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:03:22 +0000", "from_user": "DaisyLeonn", "from_user_id": 400547199, "from_user_id_str": "400547199", "from_user_name": "Daisy Leon", "geo": null, "id": 148644573713936400, "id_str": "148644573713936384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1665634210/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665634210/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:02:18 +0000", "from_user": "NaisLol", "from_user_id": 429159576, "from_user_id_str": "429159576", "from_user_name": "GiveNiallSomeFood", "geo": null, "id": 148644303722393600, "id_str": "148644303722393600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693464129/LOLL_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693464129/LOLL_normal.gif", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @CantForgetHarry: \"I've seen dinosaurs younger then Caroline.\" OMFG A+++++", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:02:17 +0000", "from_user": "_tayylorrr_", "from_user_id": 343026632, "from_user_id_str": "343026632", "from_user_name": "Taylorr(:", "geo": null, "id": 148644299540672500, "id_str": "148644299540672512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699355637/474938337_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699355637/474938337_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:01:56 +0000", "from_user": "_lizard12", "from_user_id": 161018520, "from_user_id_str": "161018520", "from_user_name": "elizabeth A. marez ", "geo": null, "id": 148644211250565120, "id_str": "148644211250565121", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701330234/Hp16Dnnn_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701330234/Hp16Dnnn_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:01:35 +0000", "from_user": "Leoniepxt", "from_user_id": 431726609, "from_user_id_str": "431726609", "from_user_name": "Leonie Macmaster", "geo": null, "id": 148644122729783300, "id_str": "148644122729783298", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681086237/hwk5r3fow1_128919525_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681086237/hwk5r3fow1_128919525_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dinosaurs of Australia and New Zealand and Other Animals of the Mesozoic Era: Beginning in the 1990s, fossils un... http://t.co/vqO9G7MM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:01:02 +0000", "from_user": "dinochecker", "from_user_id": 166994970, "from_user_id_str": "166994970", "from_user_name": "DailyDinosaur", "geo": null, "id": 148643985232101380, "id_str": "148643985232101376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1625760435/twitter-profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1625760435/twitter-profile_normal.png", "source": "<a href="http://www.dinochecker.com" rel="nofollow">DinoChecker.com</a>", "text": "Monday is our new favourite day for dinosaurs. We lurve GENYODECTES: http://t.co/6yox5rsw #fb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:59:33 +0000", "from_user": "ClaudiaKambo", "from_user_id": 100424363, "from_user_id_str": "100424363", "from_user_name": "Claudia K", "geo": null, "id": 148643611234414600, "id_str": "148643611234414592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1167316892/Photo_on_2009-10-29_at_18.05__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1167316892/Photo_on_2009-10-29_at_18.05__2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#IWasThatKid whose favorite outfit was a really cool red sweater with a huge picture of dinosaurs, and the matching red sweatpants.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:59:03 +0000", "from_user": "soyimpuntual", "from_user_id": 143612554, "from_user_id_str": "143612554", "from_user_name": "Elizabeth M\\u00E1rquez \\u2611", "geo": null, "id": 148643488127393800, "id_str": "148643488127393792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686170917/100_5461_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686170917/100_5461_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/fT4mXCqa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:58:42 +0000", "from_user": "rhiannajanine", "from_user_id": 362673021, "from_user_id_str": "362673021", "from_user_name": "\\u0930\\u093F\\u0939\\u093E\\u0928\\u093E", "geo": null, "id": 148643398939709440, "id_str": "148643398939709440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691697211/DSCN0838_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691697211/DSCN0838_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "#IWasTheKid that saw Jurassic Park and believed dinosaurs were real, nobody could tell me differently.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:58:42 +0000", "from_user": "Kathysshh", "from_user_id": 18740525, "from_user_id_str": "18740525", "from_user_name": "Kathy ", "geo": null, "id": 148643396372803600, "id_str": "148643396372803585", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1440087697/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1440087697/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Days like this when I question what planet I'm from and if I should return back there. And also dinosaurs. Why are their arms so tiny?!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:58:34 +0000", "from_user": "samidysam", "from_user_id": 196113355, "from_user_id_str": "196113355", "from_user_name": "sami", "geo": null, "id": 148643364911317000, "id_str": "148643364911316992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1639696928/better_20one_20cutay_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639696928/better_20one_20cutay_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:58:18 +0000", "from_user": "Jake_Buddyyy", "from_user_id": 279405375, "from_user_id_str": "279405375", "from_user_name": "Jake :)", "geo": null, "id": 148643296359612400, "id_str": "148643296359612416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1658238341/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658238341/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:57:04 +0000", "from_user": "brodestheeace", "from_user_id": 399680168, "from_user_id_str": "399680168", "from_user_name": "Brody Nelson", "geo": null, "id": 148642988787122180, "id_str": "148642988787122176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689265294/kjhluhfda_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689265294/kjhluhfda_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @nibslovescats: #IWasThatKid that was obsessed with dinosaurs, big foot, aliens and ghosts.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:56:27 +0000", "from_user": "strayney", "from_user_id": 29416777, "from_user_id_str": "29416777", "from_user_name": "David Michel Ney", "geo": null, "id": 148642831685271550, "id_str": "148642831685271553", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1242431309/twitpic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1242431309/twitpic_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@juliusseizure just know- cloning dinosaurs can lead to disastrous consequences. I think they made a movie about it or something...", "to_user": "juliusseizure", "to_user_id": 28944227, "to_user_id_str": "28944227", "to_user_name": "Nicky A", "in_reply_to_status_id": 148564184806866940, "in_reply_to_status_id_str": "148564184806866945"}, +{"created_at": "Mon, 19 Dec 2011 05:56:12 +0000", "from_user": "nibslovescats", "from_user_id": 396127475, "from_user_id_str": "396127475", "from_user_name": "Lydia Noble", "geo": +{"coordinates": [44.8716,-91.9274], "type": "Point"}, "id": 148642769190133760, "id_str": "148642769190133761", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1601475597/228202_1949460625446_1510527788_2067814_8196876_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601475597/228202_1949460625446_1510527788_2067814_8196876_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#IWasThatKid that was obsessed with dinosaurs, big foot, aliens and ghosts.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:54:07 +0000", "from_user": "nataaliemp", "from_user_id": 142045618, "from_user_id_str": "142045618", "from_user_name": "Natalie Moll", "geo": null, "id": 148642247007670270, "id_str": "148642247007670272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682513906/foto1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682513906/foto1_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:53:56 +0000", "from_user": "NickyWitsillini", "from_user_id": 245711524, "from_user_id_str": "245711524", "from_user_name": "Nicky Witsillini", "geo": null, "id": 148642199393927170, "id_str": "148642199393927168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1231579664/18083170761206156_the_beach_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1231579664/18083170761206156_the_beach_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "DSOGaming writes: \"Damn, it seems that every BF3 player has been looking for all those easter-egged dinosaurs th... http://t.co/e1rJlumF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:53:35 +0000", "from_user": "CarlyBrown14", "from_user_id": 383326886, "from_user_id_str": "383326886", "from_user_name": "Carly Brown", "geo": null, "id": 148642112676704260, "id_str": "148642112676704256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698707852/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698707852/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:53:27 +0000", "from_user": "TaylorMacRae08", "from_user_id": 228673074, "from_user_id_str": "228673074", "from_user_name": "Taylor MacRae", "geo": null, "id": 148642076182061060, "id_str": "148642076182061056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1672169504/kP3yQt1w_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672169504/kP3yQt1w_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:53:18 +0000", "from_user": "joeyuwj", "from_user_id": 156173576, "from_user_id_str": "156173576", "from_user_name": "Joey Jing", "geo": null, "id": 148642038198444030, "id_str": "148642038198444032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1568866511/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1568866511/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:52:42 +0000", "from_user": "brad_40", "from_user_id": 330766267, "from_user_id_str": "330766267", "from_user_name": "Bradee (:", "geo": null, "id": 148641888524709900, "id_str": "148641888524709888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701500921/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701500921/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @x0swagger: Kiss me, if I'm wrong, but dinosaurs still exist, right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:52:13 +0000", "from_user": "jeanpaulfung", "from_user_id": 49622357, "from_user_id_str": "49622357", "from_user_name": "Jean-Paul Fung", "geo": null, "id": 148641767166713860, "id_str": "148641767166713858", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1596816671/JPFung_Website_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596816671/JPFung_Website_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "'Like' this link on Facebook for Last Dinosaurs' - Zoom to be Channel V's Ripe Clip the week!!! https://t.co/BmNa6ZI2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:52:06 +0000", "from_user": "roachel915", "from_user_id": 52388871, "from_user_id_str": "52388871", "from_user_name": "rachel", "geo": null, "id": 148641739526246400, "id_str": "148641739526246401", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687779930/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687779930/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:51:41 +0000", "from_user": "JustinDrewFlu__", "from_user_id": 169615151, "from_user_id_str": "169615151", "from_user_name": "Olivia!! :D", "geo": null, "id": 148641631392907260, "id_str": "148641631392907264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682431182/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682431182/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:51:28 +0000", "from_user": "Kristinnuendo", "from_user_id": 17968946, "from_user_id_str": "17968946", "from_user_name": "The Baroness Lady K", "geo": null, "id": 148641576892117000, "id_str": "148641576892116992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681238437/df178e79783d336043e02b5123442d589abcdefg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681238437/df178e79783d336043e02b5123442d589abcdefg_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @YWIR: Why don't we get those robot dinosaurs some museums have to fight our wars for us?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:50:49 +0000", "from_user": "babykeb69", "from_user_id": 406041536, "from_user_id_str": "406041536", "from_user_name": "Kevin Conroy", "geo": null, "id": 148641415658881020, "id_str": "148641415658881025", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698296316/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698296316/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@ActuallyNPH maybe next time you go through a ride program you'll see dinosaurs #munchthosemushrooms #H&Kwashilarious", "to_user": "ActuallyNPH", "to_user_id": 90420314, "to_user_id_str": "90420314", "to_user_name": "Neil Patrick Harris", "in_reply_to_status_id": 148639859182022660, "in_reply_to_status_id_str": "148639859182022657"}, +{"created_at": "Mon, 19 Dec 2011 05:50:34 +0000", "from_user": "HiRa___", "from_user_id": 114104459, "from_user_id_str": "114104459", "from_user_name": "Hira", "geo": null, "id": 148641350538108930, "id_str": "148641350538108928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1626810061/IMG-2011029-00137_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626810061/IMG-2011029-00137_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Clash of the Dinosaurs : Videos : Discovery Channel http://t.co/ZB3g91iR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:50:15 +0000", "from_user": "k_mann7", "from_user_id": 414033699, "from_user_id_str": "414033699", "from_user_name": "Kelsey Mann", "geo": null, "id": 148641272838635520, "id_str": "148641272838635520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1642096744/385006_10150368721059398_657219397_8406023_1895804303_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642096744/385006_10150368721059398_657219397_8406023_1895804303_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:48:16 +0000", "from_user": "deyanira1209", "from_user_id": 111662047, "from_user_id_str": "111662047", "from_user_name": "Deyanira' Qui\\u00F1ones", "geo": null, "id": 148640771229224960, "id_str": "148640771229224960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1216676988/BBYO2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1216676988/BBYO2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:48:12 +0000", "from_user": "UnicornTrinidad", "from_user_id": 318034910, "from_user_id_str": "318034910", "from_user_name": "Lauren Trinidad", "geo": null, "id": 148640754288439300, "id_str": "148640754288439296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1684324206/anjfaghsdf_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684324206/anjfaghsdf_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "1932-Beavis:I wonder if we're going to see dinosaurs that would be cool Butthead:\"Dumbass dinosaurs werent invented yet\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:47:41 +0000", "from_user": "marriah1021", "from_user_id": 391234022, "from_user_id_str": "391234022", "from_user_name": "Marriah Alcantara", "geo": null, "id": 148640627029049340, "id_str": "148640627029049344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1615388530/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615388530/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:47:04 +0000", "from_user": "_Evahhh", "from_user_id": 337041681, "from_user_id_str": "337041681", "from_user_name": "Eva Villa", "geo": null, "id": 148640470115946500, "id_str": "148640470115946497", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699255696/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699255696/profile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:46:41 +0000", "from_user": "Salunltd", "from_user_id": 30783261, "from_user_id_str": "30783261", "from_user_name": "Salvador Rodriguez", "geo": null, "id": 148640374196412400, "id_str": "148640374196412417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1632971180/salunltdtwitter_copy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632971180/salunltdtwitter_copy_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@yaarilovee LOL smh, jk I like dinosaurs c: , anyways..I was thinking of just painting the superman logo c: but idk :x", "to_user": "yaarilovee", "to_user_id": 253826697, "to_user_id_str": "253826697", "to_user_name": "y a r i \\u2665", "in_reply_to_status_id": 148639978203774980, "in_reply_to_status_id_str": "148639978203774976"}, +{"created_at": "Mon, 19 Dec 2011 05:45:00 +0000", "from_user": "officialprodigy", "from_user_id": 218738561, "from_user_id_str": "218738561", "from_user_name": "Aliou D", "geo": null, "id": 148639949711867900, "id_str": "148639949711867904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1174358426/Photo_du_77425870-10-___21.30_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1174358426/Photo_du_77425870-10-___21.30_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/DaOf5XmQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:44:46 +0000", "from_user": "DhifaAzzahra", "from_user_id": 161685116, "from_user_id_str": "161685116", "from_user_name": "dhifa.", "geo": null, "id": 148639892241522700, "id_str": "148639892241522688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686941629/DHsXNXmy.jpg_effected_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686941629/DHsXNXmy.jpg_effected_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:43:45 +0000", "from_user": "UnknownKailey", "from_user_id": 255833846, "from_user_id_str": "255833846", "from_user_name": "Kailey DeLeon", "geo": null, "id": 148639637055864830, "id_str": "148639637055864833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1672729984/LGaw3aXs_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672729984/LGaw3aXs_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:43:03 +0000", "from_user": "floespinoza", "from_user_id": 295367535, "from_user_id_str": "295367535", "from_user_name": "Flora Espinoza", "geo": null, "id": 148639459343208450, "id_str": "148639459343208449", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1641504053/IMG_3928_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641504053/IMG_3928_1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:42:59 +0000", "from_user": "BabyLyss", "from_user_id": 308087209, "from_user_id_str": "308087209", "from_user_name": "Alyssa Bearce \\u2665", "geo": null, "id": 148639443564245000, "id_str": "148639443564244992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1689812179/gob_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689812179/gob_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:42:57 +0000", "from_user": "GriseldaBeth943", "from_user_id": 409007259, "from_user_id_str": "409007259", "from_user_name": "Griselda Bethel", "geo": null, "id": 148639435649593340, "id_str": "148639435649593344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1664987834/378508219Lona1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664987834/378508219Lona1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I'm a funny girl! has u can see i can take a good laff! i love hugs!!! Also i play the guitar and dinosaurs rule the world!!!! RAWR ( ;", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:42:45 +0000", "from_user": "jasongroh", "from_user_id": 38569090, "from_user_id_str": "38569090", "from_user_name": "Jason Groh", "geo": null, "id": 148639383497609200, "id_str": "148639383497609217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/624728734/meebo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/624728734/meebo_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/9f1uv7GZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:42:29 +0000", "from_user": "YWIR", "from_user_id": 100897614, "from_user_id_str": "100897614", "from_user_name": "Philip", "geo": null, "id": 148639316808175600, "id_str": "148639316808175616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670334189/YWIR_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670334189/YWIR_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Why don't we get those robot dinosaurs some museums have to fight our wars for us?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:42:18 +0000", "from_user": "victoriashley10", "from_user_id": 424650412, "from_user_id_str": "424650412", "from_user_name": "Ashley Victoria", "geo": null, "id": 148639269907468300, "id_str": "148639269907468288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685616771/propic_perhaps_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685616771/propic_perhaps_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "And on the third day, God created the Remington bolt-action rifle, so that Man could fight the dinosaurs. And the homosexuals.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:41:55 +0000", "from_user": "lydzzard", "from_user_id": 141041098, "from_user_id_str": "141041098", "from_user_name": "Lydia", "geo": null, "id": 148639176189943800, "id_str": "148639176189943808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1598907269/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598907269/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:41:33 +0000", "from_user": "AlexBinkley96", "from_user_id": 312169675, "from_user_id_str": "312169675", "from_user_name": "Alex Binkley", "geo": null, "id": 148639082505969660, "id_str": "148639082505969664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1596428915/318621_2506351902392_1360886075_32923634_155636666_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596428915/318621_2506351902392_1360886075_32923634_155636666_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:40:15 +0000", "from_user": "Emmayy10", "from_user_id": 275841011, "from_user_id_str": "275841011", "from_user_name": "Emily Martinez", "geo": null, "id": 148638756705021950, "id_str": "148638756705021952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1574341451/283586_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1574341451/283586_1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:40:11 +0000", "from_user": "SamSarmiento", "from_user_id": 98865331, "from_user_id_str": "98865331", "from_user_name": "Samantha Joyce", "geo": null, "id": 148638739047006200, "id_str": "148638739047006208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685174860/381081_2496942117407_1668500353_2257731_661702403_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685174860/381081_2496942117407_1668500353_2257731_661702403_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT \"@QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:39:42 +0000", "from_user": "IRachaelElliott", "from_user_id": 242420973, "from_user_id_str": "242420973", "from_user_name": "Rachael Elliott \\u2665", "geo": null, "id": 148638615981932540, "id_str": "148638615981932545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1666812080/McKellar-20111130-00756_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666812080/McKellar-20111130-00756_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:39:31 +0000", "from_user": "DinaHansen2", "from_user_id": 221569318, "from_user_id_str": "221569318", "from_user_name": "Dina Hansen", "geo": null, "id": 148638569731330050, "id_str": "148638569731330048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697560815/IMG-20111215-01664_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697560815/IMG-20111215-01664_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:38:07 +0000", "from_user": "tayx33baby", "from_user_id": 401785539, "from_user_id_str": "401785539", "from_user_name": "Taylor Ann", "geo": null, "id": 148638218668089340, "id_str": "148638218668089344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702310955/IMG-20111216-00423_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702310955/IMG-20111216-00423_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:37:16 +0000", "from_user": "nalagoesraawr", "from_user_id": 68086394, "from_user_id_str": "68086394", "from_user_name": "Nalalalala\\u2665", "geo": null, "id": 148638004112654340, "id_str": "148638004112654336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688476176/331327972_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688476176/331327972_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @yokatieispimpin: RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:36:40 +0000", "from_user": "mkk59", "from_user_id": 32120672, "from_user_id_str": "32120672", "from_user_name": "Melissa King", "geo": null, "id": 148637854405365760, "id_str": "148637854405365760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670046361/PmYkSr80_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670046361/PmYkSr80_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @vandercapellen: \"@QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?\" Hee hee", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:36:34 +0000", "from_user": "hy_lusilva", "from_user_id": 205399299, "from_user_id_str": "205399299", "from_user_name": "luciana silva * \\u2650", "geo": null, "id": 148637828287438850, "id_str": "148637828287438848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1676516479/PQAAABx9rTexNEmqag7_jTDTeCKEJ2bn4AcPcvTjUDfjXEZieVBJI3PA8qMVp2vMgCnhquR2Szxh-R-U4U7u5_uQzN8Am1T1UBemwDpgRJagv5snaA8AroXhObVb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676516479/PQAAABx9rTexNEmqag7_jTDTeCKEJ2bn4AcPcvTjUDfjXEZieVBJI3PA8qMVp2vMgCnhquR2Szxh-R-U4U7u5_uQzN8Am1T1UBemwDpgRJagv5snaA8AroXhObVb_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "tumblrbot asked: ROBOTS OR DINOSAURS? http://t.co/LIR8hu6U", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:35:32 +0000", "from_user": "_Kayaax3", "from_user_id": 79842218, "from_user_id_str": "79842218", "from_user_name": "Kayaa Cullen", "geo": null, "id": 148637569582768130, "id_str": "148637569582768128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688361406/298641_2608825668273_1483893451_2921376_1888191893_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688361406/298641_2608825668273_1483893451_2921376_1888191893_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:34:21 +0000", "from_user": "_chanhuifen", "from_user_id": 294389505, "from_user_id_str": "294389505", "from_user_name": "SarahChan\\u2122", "geo": null, "id": 148637271237734400, "id_str": "148637271237734400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698064649/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698064649/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:34:19 +0000", "from_user": "farrahmohamed", "from_user_id": 174609892, "from_user_id_str": "174609892", "from_user_name": "farrah mohamed", "geo": null, "id": 148637262400339970, "id_str": "148637262400339968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696697795/Photo_on_12-16-11_at_6.20_PM_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696697795/Photo_on_12-16-11_at_6.20_PM_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?\\u201D @yomnamadkour", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:33:56 +0000", "from_user": "EmilayNicole", "from_user_id": 54651822, "from_user_id_str": "54651822", "from_user_name": "Emilie Holland", "geo": null, "id": 148637167684562940, "id_str": "148637167684562944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699491945/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699491945/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:33:33 +0000", "from_user": "jordanlehtola", "from_user_id": 235658292, "from_user_id_str": "235658292", "from_user_name": "Jordan Lehtola", "geo": null, "id": 148637069563011070, "id_str": "148637069563011073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1520102843/KeepTrolllin__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1520102843/KeepTrolllin__normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "When I make my money...I'm bringing dinosaurs back.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:33:27 +0000", "from_user": "KSkell11", "from_user_id": 334341625, "from_user_id_str": "334341625", "from_user_name": "Katie Skelly", "geo": null, "id": 148637045676458000, "id_str": "148637045676457985", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696796192/aaaaaaaaaaaaa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696796192/aaaaaaaaaaaaa_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:33:15 +0000", "from_user": "Swaggalicious_6", "from_user_id": 129978774, "from_user_id_str": "129978774", "from_user_name": "Hey it's Layla :D", "geo": null, "id": 148636992857571330, "id_str": "148636992857571328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1614271402/305846_293350367342496_100000026043666_1227689_223352564_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1614271402/305846_293350367342496_100000026043666_1227689_223352564_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:33:08 +0000", "from_user": "ShylaMoNsTeR", "from_user_id": 412695008, "from_user_id_str": "412695008", "from_user_name": "\\u0455\\u043D\\u0443\\u2113\\u03B1 \\u03B9\\u0455\\u0454\\u03B7\\u0432\\u03C5\\u044Fg", "geo": null, "id": 148636962985750530, "id_str": "148636962985750528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700885815/snapshot__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700885815/snapshot__1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:33:01 +0000", "from_user": "dream_create_", "from_user_id": 321575313, "from_user_id_str": "321575313", "from_user_name": "Ashley Wolf ", "geo": null, "id": 148636934217011200, "id_str": "148636934217011200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1580344669/80lpi0Ym_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580344669/80lpi0Ym_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:32:56 +0000", "from_user": "Audrieedl", "from_user_id": 430062789, "from_user_id_str": "430062789", "from_user_name": "Audrie Millette", "geo": null, "id": 148636913115471870, "id_str": "148636913115471872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1677551197/hsff5345it_134150760-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677551197/hsff5345it_134150760-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Magic Tree House #1: Dinosaurs Before Dark Teaching Unit CD: This a custom written CD-ROM containing the literat... http://t.co/PoYi3gjm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:32:41 +0000", "from_user": "keeeToYourHeart", "from_user_id": 135305258, "from_user_id_str": "135305258", "from_user_name": "la puchinetta.", "geo": null, "id": 148636852629422080, "id_str": "148636852629422080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1678064899/photo__haaaaa__normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678064899/photo__haaaaa__normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:32:28 +0000", "from_user": "evelynwxteo", "from_user_id": 51643638, "from_user_id_str": "51643638", "from_user_name": "Jasey Teo", "geo": null, "id": 148636797105209340, "id_str": "148636797105209344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696676382/evelynwxteo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696676382/evelynwxteo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:32:27 +0000", "from_user": "iSkelly87", "from_user_id": 171339632, "from_user_id_str": "171339632", "from_user_name": "Steven Kelly", "geo": null, "id": 148636791560343550, "id_str": "148636791560343552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1616121028/iSkelly87_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616121028/iSkelly87_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@SteveS13F dinosaurs.", "to_user": "SteveS13F", "to_user_id": 17797129, "to_user_id_str": "17797129", "to_user_name": "Steve", "in_reply_to_status_id": 148592836927946750, "in_reply_to_status_id_str": "148592836927946752"}, +{"created_at": "Mon, 19 Dec 2011 05:32:17 +0000", "from_user": "AriaMaee", "from_user_id": 339261848, "from_user_id_str": "339261848", "from_user_name": "Aria Bangkok-Sanders", "geo": null, "id": 148636748631638000, "id_str": "148636748631638017", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690900406/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690900406/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:31:54 +0000", "from_user": "HannahBiebsWood", "from_user_id": 239668962, "from_user_id_str": "239668962", "from_user_name": "Hannah Bieber \\u2020", "geo": null, "id": 148636652296871940, "id_str": "148636652296871938", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692485365/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692485365/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @katycat_gracee: That awkward moment when you and @HannahBiebsWood break a dinosaurs head off.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:31:39 +0000", "from_user": "B3TYBLAcK", "from_user_id": 127379284, "from_user_id_str": "127379284", "from_user_name": "Bety Cabrera ", "geo": null, "id": 148636592322510850, "id_str": "148636592322510848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1552482221/sonrie_y_deja_que..._normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552482221/sonrie_y_deja_que..._normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:31:12 +0000", "from_user": "NerdsofCody", "from_user_id": 401757618, "from_user_id_str": "401757618", "from_user_name": "Cody's Nerd ", "geo": null, "id": 148636476815573000, "id_str": "148636476815572992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1626851602/tumblr_ltdhtyjiD01r1daqso1_500_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626851602/tumblr_ltdhtyjiD01r1daqso1_500_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:31:01 +0000", "from_user": "skkelly13", "from_user_id": 320536184, "from_user_id_str": "320536184", "from_user_name": "Sabina Kelly", "geo": null, "id": 148636429889703940, "id_str": "148636429889703936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699530980/Photo_on_2011-11-22_at_19.22__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699530980/Photo_on_2011-11-22_at_19.22__2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:30:52 +0000", "from_user": "_ImAManiac", "from_user_id": 282778077, "from_user_id_str": "282778077", "from_user_name": "_Cristal\\u2665", "geo": null, "id": 148636395857121280, "id_str": "148636395857121280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691971357/IMG_0851_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691971357/IMG_0851_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:30:36 +0000", "from_user": "Darby_Adams", "from_user_id": 290644303, "from_user_id_str": "290644303", "from_user_name": "Darby Adams", "geo": null, "id": 148636324763680770, "id_str": "148636324763680769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699686048/Image1697_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699686048/Image1697_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:30:04 +0000", "from_user": "modelPINK_", "from_user_id": 250874974, "from_user_id_str": "250874974", "from_user_name": "Shanicee *", "geo": null, "id": 148636193825882100, "id_str": "148636193825882112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1654801155/330303013_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654801155/330303013_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:29:52 +0000", "from_user": "DobbinsDiemeary", "from_user_id": 420596107, "from_user_id_str": "420596107", "from_user_name": "Diemeary Dobbins", "geo": null, "id": 148636140801507330, "id_str": "148636140801507328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696453576/302384_105080689596417_100002834598070_23603_3022668_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696453576/302384_105080689596417_100002834598070_23603_3022668_n_normal.jpg", "source": "<a href="http://www.nibirutech.com" rel="nofollow">TwitBird</a>", "text": "RT @QuotesForGirlz Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:29:26 +0000", "from_user": "SusanaLoveee", "from_user_id": 410066399, "from_user_id_str": "410066399", "from_user_name": "Susana(:", "geo": null, "id": 148636031871229950, "id_str": "148636031871229953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1684387559/SusanaLoveee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684387559/SusanaLoveee_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 05:29:05 +0000", "from_user": "younmeh", "from_user_id": 107782522, "from_user_id_str": "107782522", "from_user_name": "stephanie leann obe", "geo": null, "id": 148635946336796670, "id_str": "148635946336796672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1665411646/LLMdVUil_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665411646/LLMdVUil_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @QuotesForGirlz: Kiss me if i'm wrong but dinosaurs still exist right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} + +, +{"created_at": "Mon, 19 Dec 2011 18:59:53 +0000", "from_user": "xforeverchanged", "from_user_id": 382361792, "from_user_id_str": "382361792", "from_user_name": "David Marshall", "geo": null, "id": 148839988736438270, "id_str": "148839988736438272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1663609465/IMG_0497_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663609465/IMG_0497_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Have fun babysitting a fifteen year-old while you walk away from the most amazing girl you'll ever meet. #ararepassiveaggressivetweetappears", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:53 +0000", "from_user": "RebeccaE_x", "from_user_id": 89537395, "from_user_id_str": "89537395", "from_user_name": "Rebecca English", "geo": null, "id": 148839988254085120, "id_str": "148839988254085121", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676764218/eHkwybmQ_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676764218/eHkwybmQ_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "@stephbruce96 yeah only thing is its short and bouncy haha so dancing could be fun.....", "to_user": "stephbruce96", "to_user_id": 310860061, "to_user_id_str": "310860061", "to_user_name": "stephaniebruce", "in_reply_to_status_id": 148839664118267900, "in_reply_to_status_id_str": "148839664118267904"}, +{"created_at": "Mon, 19 Dec 2011 18:59:53 +0000", "from_user": "katiemitch94", "from_user_id": 144603510, "from_user_id_str": "144603510", "from_user_name": "katie mitchell", "geo": null, "id": 148839987834662900, "id_str": "148839987834662912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1569314732/IMG01381-20110707-0133_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1569314732/IMG01381-20110707-0133_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Ice skating was really fun today with everyone! @laurabardsley95 @The_Lewb @staffordS1994 kit, em & joe\\u2665 never laughed so much!\\u263A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:52 +0000", "from_user": "imKhandiiSweetz", "from_user_id": 406522049, "from_user_id_str": "406522049", "from_user_name": "Khandii Sweetz", "geo": null, "id": 148839987012571140, "id_str": "148839987012571136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697520005/7QQCTrA9_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697520005/7QQCTrA9_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iSexstrology: #Sagittarius controls the freedom and fun in a relationship. The opposite spells doom.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:52 +0000", "from_user": "Sarah_LAx", "from_user_id": 47382159, "from_user_id_str": "47382159", "from_user_name": "Sarah Allsop", "geo": null, "id": 148839986760912900, "id_str": "148839986760912896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1655431623/384335_10150384940156510_529766509_8761927_1759004922_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655431623/384335_10150384940156510_529766509_8761927_1759004922_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@Sophie_CW free santa hats, crackers and beers! Balls of bowling fun ;) #strike \\u2665", "to_user": "Sophie_CW", "to_user_id": 51005471, "to_user_id_str": "51005471", "to_user_name": "Sophie Weightman"}, +{"created_at": "Mon, 19 Dec 2011 18:59:52 +0000", "from_user": "gatorgrrl123", "from_user_id": 151238113, "from_user_id_str": "151238113", "from_user_name": "Heather", "geo": null, "id": 148839986207272960, "id_str": "148839986207272960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688268821/zeze_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688268821/zeze_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "waking up every hour with your sick child is not fun when you are also sick. Being a mom is not easy....at all.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:52 +0000", "from_user": "JayyMartina", "from_user_id": 357296762, "from_user_id_str": "357296762", "from_user_name": "Miss Clardy", "geo": null, "id": 148839985766875140, "id_str": "148839985766875136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691414031/P160911_09.58__01__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691414031/P160911_09.58__01__normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Deleting contacts. Fun fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:52 +0000", "from_user": "RandomOlLexiaaa", "from_user_id": 316309039, "from_user_id_str": "316309039", "from_user_name": "Lexia J.!", "geo": null, "id": 148839985091588100, "id_str": "148839985091588096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1638179237/317123_308689169143672_100000077754805_1269171_1459484352_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638179237/317123_308689169143672_100000077754805_1269171_1459484352_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @AyannaIman: @RandomOlLexiaaa @JayKayRenee lmao I love yall to death I SWEAR! But yeah we gon have some fun tonighhhht!!!(:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:51 +0000", "from_user": "phounmie", "from_user_id": 143921858, "from_user_id_str": "143921858", "from_user_name": "Maymounah", "geo": null, "id": 148839983007019000, "id_str": "148839983007019009", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701038500/331674543_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701038500/331674543_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "What part of the world are you?RT @LieselotteDatza: Have fun, it's Friday night!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:51 +0000", "from_user": "Joyuna", "from_user_id": 15209190, "from_user_id_str": "15209190", "from_user_name": "Joy Gerhardt", "geo": null, "id": 148839982746972160, "id_str": "148839982746972160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1586874899/Headshotsquare_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586874899/Headshotsquare_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "My student loan repayment schedule came today. Total payments are more than twice my rent. Fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:51 +0000", "from_user": "Malanga10", "from_user_id": 405489633, "from_user_id_str": "405489633", "from_user_name": "Malanga", "geo": null, "id": 148839981966835700, "id_str": "148839981966835712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698810240/images-2_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698810240/images-2_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MrsMotilo @bortelle Wow Mrs ! I guess Bordelle is for my xmas gifts! great fun all..... as usual!", "to_user": "MrsMotilo", "to_user_id": 21642006, "to_user_id_str": "21642006", "to_user_name": "Sofia Barattieri", "in_reply_to_status_id": 148505474180980740, "in_reply_to_status_id_str": "148505474180980736"}, +{"created_at": "Mon, 19 Dec 2011 18:59:51 +0000", "from_user": "Nunu_91", "from_user_id": 154902472, "from_user_id_str": "154902472", "from_user_name": "I'm An A**hole", "geo": null, "id": 148839981769703420, "id_str": "148839981769703424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1679860979/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679860979/profile_normal.png", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Last night was different but fun :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:51 +0000", "from_user": "brettpeppe3", "from_user_id": 257179205, "from_user_id_str": "257179205", "from_user_name": "Brett Peppe", "geo": null, "id": 148839981740339200, "id_str": "148839981740339200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1660010560/FacebookHomescreenImage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660010560/FacebookHomescreenImage_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@MOST_DoPeMikeyJ haha where were you todaya? Boces wasn't fun", "to_user": "MOST_DoPeMikeyJ", "to_user_id": 296495945, "to_user_id_str": "296495945", "to_user_name": "mike pires", "in_reply_to_status_id": 148813378335412220, "in_reply_to_status_id_str": "148813378335412224"}, +{"created_at": "Mon, 19 Dec 2011 18:59:51 +0000", "from_user": "magnum_pg", "from_user_id": 142180097, "from_user_id_str": "142180097", "from_user_name": "Paul G. II ", "geo": null, "id": 148839981660639230, "id_str": "148839981660639232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1650639880/magnum_pg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650639880/magnum_pg_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Sorry but I won't be waiting in line for no shoes I'm good on that y'all have fun though", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:51 +0000", "from_user": "johvniek", "from_user_id": 55546021, "from_user_id_str": "55546021", "from_user_name": "Johan", "geo": +{"coordinates": [-25.7568,28.2406], "type": "Point"}, "id": 148839981367050240, "id_str": "148839981367050240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680646232/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680646232/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@Jean05Jean: Gay\\u201D thats fun...! :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:51 +0000", "from_user": "xDopetressx", "from_user_id": 186876686, "from_user_id_str": "186876686", "from_user_name": "Esther ", "geo": null, "id": 148839981329289200, "id_str": "148839981329289216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695370195/Fuck_With_Me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695370195/Fuck_With_Me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#IWasThatKid that got made fun of a lot cause i was mad different.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:51 +0000", "from_user": "oh_you_qtt", "from_user_id": 251183322, "from_user_id_str": "251183322", "from_user_name": "urfaceizsnazzy", "geo": null, "id": 148839980859535360, "id_str": "148839980859535360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702410813/rlymhd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702410813/rlymhd_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "going round my dads is so boring, you'd of thought that because he lives on a farm and everything that'd it be fun:(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:50 +0000", "from_user": "femicruz", "from_user_id": 117250894, "from_user_id_str": "117250894", "from_user_name": "Femi Soprano", "geo": null, "id": 148839976501649400, "id_str": "148839976501649408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1553927986/femi__45__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553927986/femi__45__normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Twitter +bbm+sexting=madt fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:50 +0000", "from_user": "Lucy_Yaanez", "from_user_id": 406078557, "from_user_id_str": "406078557", "from_user_name": "lucy yanez", "geo": null, "id": 148839976367435780, "id_str": "148839976367435776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1654970874/7YhYshRC_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654970874/7YhYshRC_normal", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Photoshhooot tmmrw -.- not as fun anymore soon to quuuit this modelingg caareer ;O", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:49 +0000", "from_user": "HUDZZY", "from_user_id": 37912454, "from_user_id_str": "37912454", "from_user_name": "Huda Moh'd", "geo": null, "id": 148839974719070200, "id_str": "148839974719070210", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1640889243/hhh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640889243/hhh_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Had so much fun at the tweetup today .. Thank u guys .. @ehsankooheji @baderkamal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:49 +0000", "from_user": "EyesOnKStew", "from_user_id": 346041690, "from_user_id_str": "346041690", "from_user_name": "Olivia Chanel", "geo": null, "id": 148839974677118980, "id_str": "148839974677118976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1684657530/RPD1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684657530/RPD1_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Maybe they should add that in BD just for the fun of it hahah.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:49 +0000", "from_user": "Jennaskyyy", "from_user_id": 419044979, "from_user_id_str": "419044979", "from_user_name": "lol no", "geo": null, "id": 148839974043795460, "id_str": "148839974043795456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1672107748/6237364493_931b73ba3e_z_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672107748/6237364493_931b73ba3e_z_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iSexstrology: #Sagittarius controls the freedom and fun in a relationship. The opposite spells doom.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:49 +0000", "from_user": "Pakistantime", "from_user_id": 300755659, "from_user_id_str": "300755659", "from_user_name": "Pakistantime.net", "geo": null, "id": 148839973561446400, "id_str": "148839973561446400", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1359409202/222373_171356699588806_170900339634442_420060_1422688_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1359409202/222373_171356699588806_170900339634442_420060_1422688_n_normal.jpg", "source": "<a href="http://fun.ly" rel="nofollow">fun.ly</a>", "text": "Score-December 19, 2011 http://t.co/qpHY1kfW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:49 +0000", "from_user": "sweetflagtweet", "from_user_id": 316042091, "from_user_id_str": "316042091", "from_user_name": "sweetflag", "geo": null, "id": 148839973540474880, "id_str": "148839973540474880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1393157037/24_34_percent_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1393157037/24_34_percent_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "a fun way to use an old @grazedotcom box... http://t.co/fO18MYsg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:49 +0000", "from_user": "JuJubee_22", "from_user_id": 250224788, "from_user_id_str": "250224788", "from_user_name": "Jaleesa Harris", "geo": null, "id": 148839972378656770, "id_str": "148839972378656768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1414701169/fuck_u_Pinhole_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1414701169/fuck_u_Pinhole_1_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@OfficialQueenD how much longer u gonna be in Atlanta? Girl u should have fun a lil while u up there. Glad school ova so I can just relax", "to_user": "OfficialQueenD", "to_user_id": 146855013, "to_user_id_str": "146855013", "to_user_name": "Tashira Hampton"}, +{"created_at": "Mon, 19 Dec 2011 18:59:49 +0000", "from_user": "AlfieLau", "from_user_id": 28821307, "from_user_id_str": "28821307", "from_user_name": "Alfie Lau", "geo": null, "id": 148839971875328000, "id_str": "148839971875328000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/150872191/photoweb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/150872191/photoweb_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@newsleaderfotog - Yup, STREETERS are fun, aren't they - did my share last week so I'm in the clubhouse, done already!", "to_user": "newsleaderfotog", "to_user_id": 435323037, "to_user_id_str": "435323037", "to_user_name": "newsleaderfotog", "in_reply_to_status_id": 148833865685942270, "in_reply_to_status_id_str": "148833865685942273"}, +{"created_at": "Mon, 19 Dec 2011 18:59:49 +0000", "from_user": "SILURDS", "from_user_id": 196207559, "from_user_id_str": "196207559", "from_user_name": "ABIODUN B.OKOROAFOR", "geo": +{"coordinates": [9.1533,7.3206], "type": "Point"}, "id": 148839971359424500, "id_str": "148839971359424514", "iso_language_code": "el", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1534014860/326251094_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534014860/326251094_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @Wyna22: CALABAR STAND UP, TONIGHT IS GONNA BE FUN WITH @eLDeeTheDon. a\\u0305\\u0332\\u0336\\u0325\\u030Ar\\u03B5\\u0332\\u0323\\u0323\\u0323\\u0325 you cally?broda. http://t.co/ASWFLlH8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:49 +0000", "from_user": "DBrickerz", "from_user_id": 60314017, "from_user_id_str": "60314017", "from_user_name": "Brickerz", "geo": null, "id": 148839970856116220, "id_str": "148839970856116224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1486868200/JESUS_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1486868200/JESUS_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@skysports_bryan: @DBrickerz it's great fun.. #TransferDeadlineDay\\u201D and the 10 day wait is over #xmasspirit", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:48 +0000", "from_user": "GlobeChadFinn", "from_user_id": 19968995, "from_user_id_str": "19968995", "from_user_name": "Chad Finn", "geo": null, "id": 148839968880590850, "id_str": "148839968880590848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1571950356/5649_268682095397_689225397_8518838_3783276_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1571950356/5649_268682095397_689225397_8518838_3783276_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@drewmagary 's \"Fun with Peter King\" column today is an absolute tour de force. (I think that means \"interesting\" in French.)", "to_user": "drewmagary", "to_user_id": 16246688, "to_user_id_str": "16246688", "to_user_name": "Drew Magary"}, +{"created_at": "Mon, 19 Dec 2011 18:59:49 +0000", "from_user": "Gertie_Birdie", "from_user_id": 300457124, "from_user_id_str": "300457124", "from_user_name": "Kimberley :)", "geo": null, "id": 148839968545054720, "id_str": "148839968545054721", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1584816316/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584816316/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "BDay \"drink\" from ladies @work! #bday are fun! Flower #martinis at work #dirtymartini in #Vegas had by @KOLcharmer <3 http://t.co/KSp13hkE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:48 +0000", "from_user": "ElenaRevello", "from_user_id": 434849526, "from_user_id_str": "434849526", "from_user_name": "Elena Revello", "geo": null, "id": 148839968045940740, "id_str": "148839968045940736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688810555/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688810555/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @BloodyBeetroots: Never had so much fun in Italy! Thank you ciccios! Sir Bob http://t.co/IA4kLgpW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:47 +0000", "from_user": "thekerrminator", "from_user_id": 32097088, "from_user_id_str": "32097088", "from_user_name": "Justin Kerr", "geo": null, "id": 148839966053646340, "id_str": "148839966053646336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/367101557/ME______normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/367101557/ME______normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@BBWGigi Well I love being there, ur a lot of fun", "to_user": "BBWGigi", "to_user_id": 369171962, "to_user_id_str": "369171962", "to_user_name": "BBWGigi", "in_reply_to_status_id": 148839792950525950, "in_reply_to_status_id_str": "148839792950525952"}, +{"created_at": "Mon, 19 Dec 2011 18:59:47 +0000", "from_user": "morestreetz", "from_user_id": 69106482, "from_user_id_str": "69106482", "from_user_name": "Darryl ", "geo": null, "id": 148839964006809600, "id_str": "148839964006809601", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670831593/330808382_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670831593/330808382_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @PuffNotorious: #Lunchflo ...,kinda excited about the Billboard Mag Christmas party tonight!;) should be fun ...sounds like it will enjoy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:47 +0000", "from_user": "Datrigs", "from_user_id": 347455024, "from_user_id_str": "347455024", "from_user_name": "Lance tetzlaff", "geo": null, "id": 148839963809681400, "id_str": "148839963809681408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1485614772/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1485614772/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@LilBeccaLew it was fun hanging with u in Dallas?", "to_user": "LilBeccaLew", "to_user_id": 434832033, "to_user_id_str": "434832033", "to_user_name": "Rebecca Davis"}, +{"created_at": "Mon, 19 Dec 2011 18:59:47 +0000", "from_user": "johnMarshallS11", "from_user_id": 208041436, "from_user_id_str": "208041436", "from_user_name": "Marshall Sullivan", "geo": null, "id": 148839963251851260, "id_str": "148839963251851264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694342764/384550_2257002390133_1400552815_31930315_1001638229_n_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694342764/384550_2257002390133_1400552815_31930315_1001638229_n_normal.jpeg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@graceernst @cmann3597 hope y'all are having fun!!!", "to_user": "graceernst", "to_user_id": 359672003, "to_user_id_str": "359672003", "to_user_name": "Grace ernst", "in_reply_to_status_id": 148838969247940600, "in_reply_to_status_id_str": "148838969247940608"}, +{"created_at": "Mon, 19 Dec 2011 18:59:46 +0000", "from_user": "thefakestfake", "from_user_id": 280612570, "from_user_id_str": "280612570", "from_user_name": "Team Breezy.", "geo": null, "id": 148839961829978100, "id_str": "148839961829978112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689946189/tumblr_lw2uzobPvx1qbqi0eo1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689946189/tumblr_lw2uzobPvx1qbqi0eo1_500_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "It's so much fun being mean to Lisa.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:46 +0000", "from_user": "KadyDeliah", "from_user_id": 233775732, "from_user_id_str": "233775732", "from_user_name": "Kad\\u03B5nc\\u03B5 R\\u03B5ckl\\u03B5ss", "geo": null, "id": 148839961561534460, "id_str": "148839961561534465", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1667123818/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667123818/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@TheWantedWorld that sounds fun! I wish I could travel, but I rarely get the chance to leave home. I can't wait til I can travel on my own.", "to_user": "TheWantedWorld", "to_user_id": 177625495, "to_user_id_str": "177625495", "to_user_name": "Char!", "in_reply_to_status_id": 148839512070561800, "in_reply_to_status_id_str": "148839512070561792"}, +{"created_at": "Mon, 19 Dec 2011 18:59:46 +0000", "from_user": "xlindseeeey", "from_user_id": 337209549, "from_user_id_str": "337209549", "from_user_name": "Lindsey", "geo": null, "id": 148839960420683780, "id_str": "148839960420683777", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698466225/fbpic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698466225/fbpic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "savanne vind dit dus wel bij me passen.. http://t.co/7VWspbGL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:46 +0000", "from_user": "Sky_LaRay", "from_user_id": 315782351, "from_user_id_str": "315782351", "from_user_name": "Sammi !", "geo": null, "id": 148839959355342850, "id_str": "148839959355342850", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1673937168/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673937168/image_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @ashybone1: #coolkids love Jesus and aren't ashamed to tell Ppl even if they get made fun of", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:45 +0000", "from_user": "rizci_toasters", "from_user_id": 406720547, "from_user_id_str": "406720547", "from_user_name": "Rizci Akbar", "geo": null, "id": 148839958088658940, "id_str": "148839958088658944", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639671635/macco_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639671635/macco_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">twidroyd</a>", "text": "RT @my_supersoccer Yang udah maen, mana suaranya? Yang belum, sekali lagi, ini link-nya: http://t.co/5v0VhuvM #SuperSoccerFantasyFootball", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:45 +0000", "from_user": "Ms5letters", "from_user_id": 126851499, "from_user_id_str": "126851499", "from_user_name": "Angela gordon", "geo": null, "id": 148839957560176640, "id_str": "148839957560176641", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702561462/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702561462/image_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @ThisShytCray: RT @Ms5letters: i need more followers ! I wanna have some fun on here today", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:45 +0000", "from_user": "mimmix_", "from_user_id": 270418145, "from_user_id_str": "270418145", "from_user_name": "I'm a Jovatic", "geo": null, "id": 148839955513344000, "id_str": "148839955513344000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698894011/nickji_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698894011/nickji_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Yep I'm a beginner in trying to trend something but it's fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:45 +0000", "from_user": "CTyxxxx", "from_user_id": 214855266, "from_user_id_str": "214855266", "from_user_name": "Peter W", "geo": null, "id": 148839954355724300, "id_str": "148839954355724288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1165472983/staff_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1165472983/staff_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@FakeFifthDriver Sundays race was fun looking forward to next weekends. Not sure I'll remember to turn up as it's Christmas though", "to_user": "FakeFifthDriver", "to_user_id": 272477693, "to_user_id_str": "272477693", "to_user_name": "Fake McLaren", "in_reply_to_status_id": 148825046515855360, "in_reply_to_status_id_str": "148825046515855362"}, +{"created_at": "Mon, 19 Dec 2011 18:59:45 +0000", "from_user": "AdamHarrisbox", "from_user_id": 74837974, "from_user_id_str": "74837974", "from_user_name": "Adam Harris", "geo": null, "id": 148839954183761920, "id_str": "148839954183761921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1642665697/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642665697/image_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @TheBoweryTO: Our pride and joy!! RT @LauraFremont: Absolutely love the fun and whimsical neon sign @TheBoweryTO! http://t.co/S84RZzPL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:44 +0000", "from_user": "TMA7", "from_user_id": 95658219, "from_user_id_str": "95658219", "from_user_name": "Tom Marcinko", "geo": null, "id": 148839952891916300, "id_str": "148839952891916288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/568521012/eye_of_god_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/568521012/eye_of_god_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @MiltShook: Would a brokered GOP convention be fun or what? You know that's what Trump is waiting for. He thinks he'll sweep in, save day.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:44 +0000", "from_user": "beeautiful_soul", "from_user_id": 333726720, "from_user_id_str": "333726720", "from_user_name": "Maggie\\u2655", "geo": null, "id": 148839952602501120, "id_str": "148839952602501120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1680077733/Picture_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680077733/Picture_1_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @WizKhalllifa: #IWasThatKid that covered my hands in glue , let it dry , and then peeled it off for fun...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:44 +0000", "from_user": "PaigeSykes_TWx", "from_user_id": 295291389, "from_user_id_str": "295291389", "from_user_name": "Paige Sykes \\u2665 ", "geo": null, "id": 148839952476672000, "id_str": "148839952476672001", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698464691/IMG00666-20110918-1147_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698464691/IMG00666-20110918-1147_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@MarcuscollinsUK have fun babe :) any chance of a follow ? I was gutted when you didn't win :'( xx", "to_user": "MarcuscollinsUK", "to_user_id": 370448015, "to_user_id_str": "370448015", "to_user_name": "Marcus Collins", "in_reply_to_status_id": 148839438309527550, "in_reply_to_status_id_str": "148839438309527553"}, +{"created_at": "Mon, 19 Dec 2011 18:59:44 +0000", "from_user": "caitlin_lemaire", "from_user_id": 324166630, "from_user_id_str": "324166630", "from_user_name": "Caitlin Lemaire\\uE314", "geo": null, "id": 148839950484385800, "id_str": "148839950484385792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701721891/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701721891/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@Emily_Williams7: I want to meet some new, fun people(: #hmu #tiredofthesamestuffeveryday\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:43 +0000", "from_user": "tweepsocial", "from_user_id": 273361327, "from_user_id_str": "273361327", "from_user_name": "Tweet Social", "geo": null, "id": 148839948936675330, "id_str": "148839948936675328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1290062548/internet_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1290062548/internet_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "These Festive Angry Birds Decorations Are Really An Fun Interactive Game http://t.co/bnWHi2af", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:43 +0000", "from_user": "MotherfuckenTim", "from_user_id": 403098305, "from_user_id_str": "403098305", "from_user_name": "Tim Caballero", "geo": null, "id": 148839948026519550, "id_str": "148839948026519552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1678502911/378114_252739714785468_100001483254110_695539_1025304607_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678502911/378114_252739714785468_100001483254110_695539_1025304607_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@_dria__ a lot of things but I am going to do my work in school and have fun. Do you still think your better then me in black ops??", "to_user": "_dria__", "to_user_id": 436532281, "to_user_id_str": "436532281", "to_user_name": "alexandria", "in_reply_to_status_id": 148839315491917820, "in_reply_to_status_id_str": "148839315491917825"}, +{"created_at": "Mon, 19 Dec 2011 18:59:43 +0000", "from_user": "rizkirado", "from_user_id": 114418608, "from_user_id_str": "114418608", "from_user_name": "Rizki Rado Manita", "geo": null, "id": 148839947774853120, "id_str": "148839947774853120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686757878/Image_002__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686757878/Image_002__normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @girlsproverbs: People can always make fun of me and tell me \"You can't\". All I have to do is keep strong and show them I\\u2019m better than them.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:43 +0000", "from_user": "abbiewarrenxx", "from_user_id": 392846938, "from_user_id_str": "392846938", "from_user_name": "#devlinator", "geo": null, "id": 148839947036672000, "id_str": "148839947036672001", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698405033/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698405033/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @JanetJealousy: Dublin tonight :) busy busy. Havn't been in a while so it should be great fun apart from the early start tomorrow ;.;", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:42 +0000", "from_user": "hunterhender23", "from_user_id": 230039664, "from_user_id_str": "230039664", "from_user_name": "Hunter Henderson", "geo": null, "id": 148839943081439230, "id_str": "148839943081439232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1576045031/me_and_sammypoo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576045031/me_and_sammypoo_normal.jpg", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "I'm never growing up. Grown ups are no fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:42 +0000", "from_user": "welcome2allah", "from_user_id": 255801536, "from_user_id_str": "255801536", "from_user_name": "Jay Vanhoose", "geo": null, "id": 148839942867533820, "id_str": "148839942867533824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695145132/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695145132/profile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "SELLING DOPE IS NOT FOR FUN ITS TO SURVIVE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:42 +0000", "from_user": "shanicem0rgan", "from_user_id": 132684300, "from_user_id_str": "132684300", "from_user_name": "shanice morgan", "geo": +{"coordinates": [55.0508,-1.4563], "type": "Point"}, "id": 148839942733316100, "id_str": "148839942733316097", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702308260/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702308260/image_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Mad rush round town tomorrow to find mother gooses Christmas presents #fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:42 +0000", "from_user": "StevieSilver", "from_user_id": 316040401, "from_user_id_str": "316040401", "from_user_name": "Stevie Silver", "geo": null, "id": 148839942406160400, "id_str": "148839942406160385", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1605744961/328637072_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1605744961/328637072_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@TitsNsass Hahaha. Sounds like it would be fun working with you tho. BBM..? Pin: 28B0B81C if you wanna random chat.", "to_user": "TitsNsass", "to_user_id": 287017108, "to_user_id_str": "287017108", "to_user_name": "Valerie", "in_reply_to_status_id": 148839359804743680, "in_reply_to_status_id_str": "148839359804743681"}, +{"created_at": "Mon, 19 Dec 2011 18:59:42 +0000", "from_user": "mzrhondaline", "from_user_id": 24623707, "from_user_id_str": "24623707", "from_user_name": "MzRhondaline", "geo": null, "id": 148839941961555970, "id_str": "148839941961555969", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1642875936/FacebookHomescreenImage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642875936/FacebookHomescreenImage_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Money making is fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:41 +0000", "from_user": "Elsa_Shibley", "from_user_id": 368722883, "from_user_id_str": "368722883", "from_user_name": "Elsa _Shibley", "geo": null, "id": 148839940363534340, "id_str": "148839940363534336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1530891338/710433717a021c453-1d9e-11df-b70b-0902030bcd6a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1530891338/710433717a021c453-1d9e-11df-b70b-0902030bcd6a_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Crazy is just another name for someone who knows how to have fun. ;) #TeamFollowBack", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:41 +0000", "from_user": "meowitslucy", "from_user_id": 22045397, "from_user_id_str": "22045397", "from_user_name": "Lucy Evenden", "geo": null, "id": 148839939012964350, "id_str": "148839939012964352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1555084503/new1lol_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555084503/new1lol_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@joehinky I would, but for once I have a social life. Have fun! (:", "to_user": "joehinky", "to_user_id": 37734071, "to_user_id_str": "37734071", "to_user_name": "Joseph Hinckes", "in_reply_to_status_id": 148827028945252350, "in_reply_to_status_id_str": "148827028945252352"}, +{"created_at": "Mon, 19 Dec 2011 18:59:41 +0000", "from_user": "bbbrad", "from_user_id": 626673, "from_user_id_str": "626673", "from_user_name": "Brad Eshbach", "geo": null, "id": 148839938937466880, "id_str": "148839938937466881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1364690570/Photo_on_2011-04-17_at_12.08__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1364690570/Photo_on_2011-04-17_at_12.08__2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Animals would make fun of us so hard if they knew we take pills to grow better eyelashes. #ifanimalsweresmarttoo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:41 +0000", "from_user": "Steph_Lord12", "from_user_id": 347701224, "from_user_id_str": "347701224", "from_user_name": "Stephanie", "geo": null, "id": 148839938098602000, "id_str": "148839938098601984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1571946112/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1571946112/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "It's all fun & games watching the fights on twitter, until you get tagged in them!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:40 +0000", "from_user": "picturejunkee", "from_user_id": 105307055, "from_user_id_str": "105307055", "from_user_name": "Justin", "geo": null, "id": 148839937054220300, "id_str": "148839937054220289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700452429/me_borla_hat-0537_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700452429/me_borla_hat-0537_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Rotel_Tomatoes I do lots of photography but pets is pretty fun. similar to a baby without all the yelling and screaming. :D", "to_user": "Rotel_Tomatoes", "to_user_id": 192608936, "to_user_id_str": "192608936", "to_user_name": "Raquel Broussard", "in_reply_to_status_id": 148839081747562500, "in_reply_to_status_id_str": "148839081747562497"}, +{"created_at": "Mon, 19 Dec 2011 18:59:40 +0000", "from_user": "neetswriter", "from_user_id": 382816720, "from_user_id_str": "382816720", "from_user_name": "Anita Chapman", "geo": null, "id": 148839936521543680, "id_str": "148839936521543680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1572356311/Twitter_pic2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572356311/Twitter_pic2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@DeeBee47 how exciting! Blogging is great fun-started in Oct and am bit addicted, also with Twitter! Good luck.", "to_user": "DeeBee47", "to_user_id": 72067912, "to_user_id_str": "72067912", "to_user_name": "Denise White", "in_reply_to_status_id": 148833787592196100, "in_reply_to_status_id_str": "148833787592196096"}, +{"created_at": "Mon, 19 Dec 2011 18:59:40 +0000", "from_user": "M_MAGAZlNE", "from_user_id": 129154768, "from_user_id_str": "129154768", "from_user_name": "M Magazine", "geo": null, "id": 148839935842074620, "id_str": "148839935842074625", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701750274/M02cover_240px_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701750274/M02cover_240px_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "So great talking to @onedirection bright and early this morning! Such fun guys! Look for the exclusive interview deets in next issue of M!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:40 +0000", "from_user": "elluxion", "from_user_id": 120164928, "from_user_id_str": "120164928", "from_user_name": "Samantha Tung", "geo": null, "id": 148839935829479420, "id_str": "148839935829479424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668938645/jyj_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668938645/jyj_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@charrleneee did she say if turkey is fun?", "to_user": "charrleneee", "to_user_id": 108039015, "to_user_id_str": "108039015", "to_user_name": "Charlene Shannon", "in_reply_to_status_id": 148839352817041400, "in_reply_to_status_id_str": "148839352817041411"}, +{"created_at": "Mon, 19 Dec 2011 18:59:40 +0000", "from_user": "beezromone123", "from_user_id": 390832381, "from_user_id_str": "390832381", "from_user_name": "romone townsel", "geo": null, "id": 148839935259058180, "id_str": "148839935259058177", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1634062443/9R2eUAr3_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634062443/9R2eUAr3_normal", "source": "<a href="http://golauncher.goforandroid.com" rel="nofollow">GO Launcher EX</a>", "text": "art class is fun we you have free time", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:40 +0000", "from_user": "luciatherine", "from_user_id": 74234144, "from_user_id_str": "74234144", "from_user_name": "Lucia Purcell", "geo": null, "id": 148839934189510660, "id_str": "148839934189510656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1553915681/meeeee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553915681/meeeee_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Almost passing out in Environmental fun stuff", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:40 +0000", "from_user": "lizzum09", "from_user_id": 438934371, "from_user_id_str": "438934371", "from_user_name": "Elizabeth Snedeker", "geo": null, "id": 148839934004957200, "id_str": "148839934004957184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": null, "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@amiohe @fgorgis def do!! It's a great app, so much fun too!! But it does freeze, I actually had to restart my phone this morning.", "to_user": "amiohe", "to_user_id": 249333513, "to_user_id_str": "249333513", "to_user_name": "Ami Ohe", "in_reply_to_status_id": 148838829082681340, "in_reply_to_status_id_str": "148838829082681344"}, +{"created_at": "Mon, 19 Dec 2011 18:59:39 +0000", "from_user": "baileydonell", "from_user_id": 146591997, "from_user_id_str": "146591997", "from_user_name": "Bailey Donell", "geo": null, "id": 148839932956385280, "id_str": "148839932956385280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639271131/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639271131/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @pb_and_CELLY: I wanna say sorry to anyone I've hurt/made fun of/lied to/unintentionally or intentionlly pissed off & to people who hate me for no reason.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:39 +0000", "from_user": "ERAplaceable", "from_user_id": 123836957, "from_user_id_str": "123836957", "from_user_name": "Era Cruz ", "geo": null, "id": 148839932000083970, "id_str": "148839932000083970", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1514376479/cow_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1514376479/cow_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Baking Peppermint chocolate chip cookies! Having soooo much fun. Want some?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:39 +0000", "from_user": "De_yelle", "from_user_id": 158532069, "from_user_id_str": "158532069", "from_user_name": "Deann Rogers \\uE418", "geo": null, "id": 148839931589034000, "id_str": "148839931589033984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685149218/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685149218/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @IamRicoLove: Pretty girls have the most fun..... #TTLO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:39 +0000", "from_user": "AneliesseR", "from_user_id": 439404485, "from_user_id_str": "439404485", "from_user_name": "aneliesse rodriguez", "geo": null, "id": 148839931505147900, "id_str": "148839931505147906", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698709472/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698709472/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@FuckingArturo sounds fun(:", "to_user": "FuckingArturo", "to_user_id": 130956899, "to_user_id_str": "130956899", "to_user_name": "Arturo Rivera!"}, +{"created_at": "Mon, 19 Dec 2011 18:59:39 +0000", "from_user": "CollegeBoy365", "from_user_id": 120048410, "from_user_id_str": "120048410", "from_user_name": "Ish The CollegeBoy", "geo": null, "id": 148839931379326980, "id_str": "148839931379326976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1465088393/k6Ekkmum_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1465088393/k6Ekkmum_normal", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "PLAYHOUSE was so turnt up last night....... I haven't had that much fun @ a club in a while.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:39 +0000", "from_user": "nicole_cassano", "from_user_id": 398338157, "from_user_id_str": "398338157", "from_user_name": "Nicole Cassano", "geo": null, "id": 148839930758578180, "id_str": "148839930758578176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1606735871/260483_10150291577406934_675386933_9302192_842959_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606735871/260483_10150291577406934_675386933_9302192_842959_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@jessicacaviglia after everyone makes fun now they want one \\uD83D\\uDE20", "to_user": "jessicacaviglia", "to_user_id": 411121174, "to_user_id_str": "411121174", "to_user_name": "jessica caviglia", "in_reply_to_status_id": 148839354511536130, "in_reply_to_status_id_str": "148839354511536128"}, +{"created_at": "Mon, 19 Dec 2011 18:59:39 +0000", "from_user": "_NorthmanEric", "from_user_id": 420575553, "from_user_id_str": "420575553", "from_user_name": "Eric Northman", "geo": null, "id": 148839930146201600, "id_str": "148839930146201601", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698466634/5kpbkax2hhu0k5bh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698466634/5kpbkax2hhu0k5bh_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@Ms_Ravenscroft miss shoes *bows* naughty is a fun word and way to be", "to_user": "Ms_Ravenscroft", "to_user_id": 340303609, "to_user_id_str": "340303609", "to_user_name": "Pam Ravenscroft", "in_reply_to_status_id": 148838272674709500, "in_reply_to_status_id_str": "148838272674709504"}, +{"created_at": "Mon, 19 Dec 2011 18:59:39 +0000", "from_user": "yzzapamienta", "from_user_id": 249658622, "from_user_id_str": "249658622", "from_user_name": "alyzza pamienta", "geo": null, "id": 148839928942428160, "id_str": "148839928942428161", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1670989699/IMG_0516_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670989699/IMG_0516_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @DianeJamero: So tired! Anyway, had so much fun naman playing monopoly deal with @yzzapamienta @jeunkristin & master yuts.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:39 +0000", "from_user": "lostiegirl78", "from_user_id": 22976330, "from_user_id_str": "22976330", "from_user_name": "Amber Pruitt", "geo": null, "id": 148839928925650940, "id_str": "148839928925650944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687534554/kXqLqUNw_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687534554/kXqLqUNw_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "@John_AKA_Becker I went and picked up Bri for the afternoon so she is at work with me. She is having great fun with the copy stamp. :)", "to_user": "John_AKA_Becker", "to_user_id": 222021574, "to_user_id_str": "222021574", "to_user_name": "John Campbell", "in_reply_to_status_id": 148825857195118600, "in_reply_to_status_id_str": "148825857195118592"}, +{"created_at": "Mon, 19 Dec 2011 18:59:38 +0000", "from_user": "tollios29", "from_user_id": 321841485, "from_user_id_str": "321841485", "from_user_name": "Steven Tollios", "geo": null, "id": 148839928506236930, "id_str": "148839928506236928", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1646286875/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646286875/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "So lunch was fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:38 +0000", "from_user": "MariaOussi", "from_user_id": 342882298, "from_user_id_str": "342882298", "from_user_name": "Maria", "geo": null, "id": 148839927591870460, "id_str": "148839927591870464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1678009138/_lkjhjklkjhgf_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678009138/_lkjhjklkjhgf_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Been christmas shopping in the city today with @HannaRashiid !! FUN FUN FUN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:38 +0000", "from_user": "ZulmanMunoz", "from_user_id": 403877487, "from_user_id_str": "403877487", "from_user_name": "Zuzu Berry", "geo": null, "id": 148839927575093250, "id_str": "148839927575093248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1678272275/cedes_20and_20me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678272275/cedes_20and_20me_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @AriesDailyScope: #Aries don't deal with stupid people, unless we are in the mood for a little fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:37 +0000", "from_user": "kailee80emmure", "from_user_id": 439592959, "from_user_id_str": "439592959", "from_user_name": "kailee", "geo": null, "id": 148839924190281730, "id_str": "148839924190281729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702320363/6tVx2O08_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702320363/6tVx2O08_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Being sick is OFFICIALLY no fun. Can't wait for school tomorrow(:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:37 +0000", "from_user": "re3s3e_pi3ces", "from_user_id": 228966328, "from_user_id_str": "228966328", "from_user_name": "Sharisse Dreher", "geo": null, "id": 148839922999115780, "id_str": "148839922999115776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1325387535/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1325387535/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "super excited to see my babes tonight ! @brittnaynay856 @HollsKM @NotSoNiceNikki :)) gonna have too much fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:37 +0000", "from_user": "JodiR04", "from_user_id": 31085678, "from_user_id_str": "31085678", "from_user_name": "Jodi ", "geo": null, "id": 148839922491605000, "id_str": "148839922491604992", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1364701863/110522-171631_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1364701863/110522-171631_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@tashalouise6 fun fun fun!", "to_user": "tashalouise6", "to_user_id": 41167377, "to_user_id_str": "41167377", "to_user_name": "Natasha Louise Sporn", "in_reply_to_status_id": 148839324845211650, "in_reply_to_status_id_str": "148839324845211648"}, +{"created_at": "Mon, 19 Dec 2011 18:59:37 +0000", "from_user": "alexis32lislej", "from_user_id": 441068599, "from_user_id_str": "441068599", "from_user_name": "alexis", "geo": null, "id": 148839921292025860, "id_str": "148839921292025858", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702578398/Snapshot_20111219_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702578398/Snapshot_20111219_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "vous saviez que ce soir sur fun radio il y passe les plus grand dj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:36 +0000", "from_user": "ilovemustashes1", "from_user_id": 310783155, "from_user_id_str": "310783155", "from_user_name": "Ellaa :{) 16", "geo": null, "id": 148839919480090620, "id_str": "148839919480090626", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680533591/Victoriayaya_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680533591/Victoriayaya_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@beth_pineapple hehe have fun x", "to_user": "beth_pineapple", "to_user_id": 397127138, "to_user_id_str": "397127138", "to_user_name": "Beth Whitehead :P", "in_reply_to_status_id": 148827343979413500, "in_reply_to_status_id_str": "148827343979413504"}, +{"created_at": "Mon, 19 Dec 2011 18:59:36 +0000", "from_user": "SocialNetNanny", "from_user_id": 51418905, "from_user_id_str": "51418905", "from_user_name": "Lanae", "geo": null, "id": 148839918754467840, "id_str": "148839918754467840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/740724997/lenae_pink_avatar_crop_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/740724997/lenae_pink_avatar_crop_copy_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@jhiscock @ccstcloud Fun!", "to_user": "jhiscock", "to_user_id": 26158226, "to_user_id_str": "26158226", "to_user_name": "Jillian Hiscock", "in_reply_to_status_id": 148838698241368060, "in_reply_to_status_id_str": "148838698241368064"}, +{"created_at": "Mon, 19 Dec 2011 18:59:36 +0000", "from_user": "jordanjhamilton", "from_user_id": 228494431, "from_user_id_str": "228494431", "from_user_name": "Jordan Hamilton", "geo": null, "id": 148839917114503170, "id_str": "148839917114503168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1519276339/Screen_shot_2011-08-29_at_18.38.55_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1519276339/Screen_shot_2011-08-29_at_18.38.55_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "all the things you hate are fun fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:36 +0000", "from_user": "LisaMBregman", "from_user_id": 12793902, "from_user_id_str": "12793902", "from_user_name": "Lisa Bregman", "geo": null, "id": 148839916518916100, "id_str": "148839916518916096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1283657532/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1283657532/me_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Fun fact: apparently its statistically harder to get a job at an apple store than to get into Harvard. (didn't say #northwestern though!) :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:35 +0000", "from_user": "garabe", "from_user_id": 44605065, "from_user_id_str": "44605065", "from_user_name": "Garry", "geo": null, "id": 148839916162383870, "id_str": "148839916162383872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1522688469/AW5JS7mCQAI-NJM_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1522688469/AW5JS7mCQAI-NJM_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@bethanyrutter i make literally the worst choices when it comes to people i develop a crush for. perennially no chance. ITS ALL FUN.", "to_user": "bethanyrutter", "to_user_id": 83918119, "to_user_id_str": "83918119", "to_user_name": "Bets."}, +{"created_at": "Mon, 19 Dec 2011 18:59:35 +0000", "from_user": "ChrisHardCock", "from_user_id": 407244894, "from_user_id_str": "407244894", "from_user_name": "Christian Rovert", "geo": null, "id": 148839915696820220, "id_str": "148839915696820225", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681498983/2011-11-24_07.20.57_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681498983/2011-11-24_07.20.57_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@ShaiiJackson Haha ok, well have fun looking ;)", "to_user": "ShaiiJackson", "to_user_id": 25105621, "to_user_id_str": "25105621", "to_user_name": "\\u00BBJanet.Jackson.Fan\\u00AB", "in_reply_to_status_id": 148839689426714620, "in_reply_to_status_id_str": "148839689426714624"}, +{"created_at": "Mon, 19 Dec 2011 18:59:35 +0000", "from_user": "D1Tunechi", "from_user_id": 110716722, "from_user_id_str": "110716722", "from_user_name": "Toogie\\u2122", "geo": null, "id": 148839915571003400, "id_str": "148839915571003392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692059161/Tuenchi_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692059161/Tuenchi_normal", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @FollowVSG_: You say west bloomfield is boring but everyday you tweet about fun stuff that you do at school that is in WEST BLOOMFIELD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:35 +0000", "from_user": "barbchamberlain", "from_user_id": 14565808, "from_user_id_str": "14565808", "from_user_name": "Barb Chamberlain", "geo": null, "id": 148839913419313150, "id_str": "148839913419313152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1271948744/Barb_Oct2010_smallerfile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1271948744/Barb_Oct2010_smallerfile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Kudos to @CarlsonSchool at U Minn for beautiful/fun holiday card concept & execution. http://t.co/AYFdgchy #highered. Love the security guy.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:35 +0000", "from_user": "groundhogxp", "from_user_id": 77164199, "from_user_id_str": "77164199", "from_user_name": "Anderson Chen", "geo": null, "id": 148839912433651700, "id_str": "148839912433651712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1249556384/games_phoenixWright-chibiMaya_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1249556384/games_phoenixWright-chibiMaya_normal.gif", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@bobatea123 Have fun!", "to_user": "bobatea123", "to_user_id": 92556984, "to_user_id_str": "92556984", "to_user_name": "Cindy Mo", "in_reply_to_status_id": 148839845882634240, "in_reply_to_status_id_str": "148839845882634240"}, +{"created_at": "Mon, 19 Dec 2011 18:59:35 +0000", "from_user": "LatrellTellsIt", "from_user_id": 245875037, "from_user_id_str": "245875037", "from_user_name": "Coco Bean :)", "geo": null, "id": 148839912345579520, "id_str": "148839912345579520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1686540175/kenzie_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686540175/kenzie_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Frank_Ocean_: Playing with someone's feelings is all fun and games until karma sets in.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:35 +0000", "from_user": "Myatunbi", "from_user_id": 86018853, "from_user_id_str": "86018853", "from_user_name": "Moyo Fatunbi", "geo": null, "id": 148839912282669060, "id_str": "148839912282669056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680466676/IMG_1739_20-_20Copy_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680466676/IMG_1739_20-_20Copy_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Lolzz...hope uve eaten dinner tho\"@boy_wondar: :* RT@Myatunbi: Today was fun tho...thankx tew @boy_wondar. And @mishaq007\"\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:35 +0000", "from_user": "Trust_Issues93", "from_user_id": 258566130, "from_user_id_str": "258566130", "from_user_name": "\\u00DF\\u00AEiannaM.", "geo": null, "id": 148839912127463420, "id_str": "148839912127463424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699102520/n4xqcw8a_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699102520/n4xqcw8a_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "This Fun Aint It ( :", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:34 +0000", "from_user": "MINUS_Stl", "from_user_id": 40580577, "from_user_id_str": "40580577", "from_user_name": "Travis Balke", "geo": null, "id": 148839911645122560, "id_str": "148839911645122560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677755417/tumblr_l8lu6t2LJJ1qba9rro1_500_thumb_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677755417/tumblr_l8lu6t2LJJ1qba9rro1_500_thumb_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@JG_CHEFS Well, 4 days including today. :) I'm in the high 60's of my 1st prestige, but stopping at 80. Xmas noobs will be fun!", "to_user": "JG_CHEFS", "to_user_id": 19563357, "to_user_id_str": "19563357", "to_user_name": "Jeremy Greiner", "in_reply_to_status_id": 148838847894130700, "in_reply_to_status_id_str": "148838847894130688"}, +{"created_at": "Mon, 19 Dec 2011 18:59:34 +0000", "from_user": "NYCbeliebers", "from_user_id": 93331380, "from_user_id_str": "93331380", "from_user_name": "\\u2661\\u2661\\u2661\\u2665\\u2661\\u2661\\u2661", "geo": null, "id": 148839908864303100, "id_str": "148839908864303104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1591973889/Miley-Cyrus-Liam-Hemsworth_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591973889/Miley-Cyrus-Liam-Hemsworth_normal.jpg", "source": "<a href="http://www.nibirutech.com" rel="nofollow">TwitBird</a>", "text": "About to be stuck in a machine for a while! At least I can take a few breaks! Not gonna be fun!!!! :( going to a spa in 4 days:D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:34 +0000", "from_user": "CourtneyCashh_", "from_user_id": 376334456, "from_user_id_str": "376334456", "from_user_name": "CourtneyBrianna", "geo": null, "id": 148839908671365120, "id_str": "148839908671365121", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1659865935/IMG_20111126_201723_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659865935/IMG_20111126_201723_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "RT @TNealBALLisLIFE: 6/18/09\\n\"our graduation was yesterday it was cool we all had fun gone miss all you people(Courtney had tears)love u\" @CourtneyCashh_ lmao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:34 +0000", "from_user": "bigkelv", "from_user_id": 32673304, "from_user_id_str": "32673304", "from_user_name": "Sir McDouglas", "geo": null, "id": 148839908222574600, "id_str": "148839908222574592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702296300/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702296300/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "sat was fun as hell so u kno wat ... we doin the same thing again TONIGHT! lmao (k. hart v)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:59:33 +0000", "from_user": "Daaaaaanish_", "from_user_id": 263622587, "from_user_id_str": "263622587", "from_user_name": "\\u24D3\\u24D0\\u24DD\\u24D8\\u24E2\\u24D7\\u2762", "geo": null, "id": 148839906867818500, "id_str": "148839906867818496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701641362/Daaaaaanish__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701641362/Daaaaaanish__normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "yeap . Can't stop raping . \\u201C@syzxiwxni: Having fun. Still raping the keypad? \"@Daaaaaanish_: @syzxiwxni best ?\"\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:33 +0000", "from_user": "whitegyr", "from_user_id": 41840062, "from_user_id_str": "41840062", "from_user_name": "WhiteGyr Web Design", "geo": null, "id": 148839904913268740, "id_str": "148839904913268736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1167754716/WhiteGyrFace_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1167754716/WhiteGyrFace_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @mattcutts: In case you missed it: search on Google for \"let it snow\" to see a fun easter egg. :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:33 +0000", "from_user": "TwinkleDinosaur", "from_user_id": 92858098, "from_user_id_str": "92858098", "from_user_name": ".\\u2665'Maria Westergaard", "geo": null, "id": 148839904841961470, "id_str": "148839904841961472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1669286580/Snapshot_20111202_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669286580/Snapshot_20111202_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TheFireSigns: #Leo here to learn what they want, how to have fun and be happy. And how to make it all happen.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:33 +0000", "from_user": "AyokaBerry", "from_user_id": 195172847, "from_user_id_str": "195172847", "from_user_name": "Berry", "geo": null, "id": 148839904338653200, "id_str": "148839904338653184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702536958/Ibadan-20111219-00681_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702536958/Ibadan-20111219-00681_1_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Ma binu! \"@Beesberry: U no kuku dey ask for person,oga fun e o. RT\"@AyokaBerry: I v bn around \"@Beesberry: @AyokaBerry : sup wif u nau,where", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:33 +0000", "from_user": "MarryTheUnicorn", "from_user_id": 91581243, "from_user_id_str": "91581243", "from_user_name": "Not ur ordinary fag", "geo": null, "id": 148839904338640900, "id_str": "148839904338640896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688840698/tumblr_luoc0poevP1qza4gto1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688840698/tumblr_luoc0poevP1qza4gto1_500_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "OMG this is so fun, i'm actually losing sleep.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:33 +0000", "from_user": "AndyChalton", "from_user_id": 419122830, "from_user_id_str": "419122830", "from_user_name": "Andy Chalton", "geo": null, "id": 148839904225411070, "id_str": "148839904225411073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1652891481/twit_dpp_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652891481/twit_dpp_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Gym later with @jackooboulton this should be fun #beenawhile", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:33 +0000", "from_user": "iruvsoshi", "from_user_id": 83800588, "from_user_id_str": "83800588", "from_user_name": "\\uFF4A \\uFF41 \\uFF52 \\uFF45 \\uFF44 \\u3002", "geo": null, "id": 148839904053428220, "id_str": "148839904053428224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694431266/crop2-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694431266/crop2-1_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@Saradolimz OMG I BOUGHT TOO ITS DAMN FUN!!! I LOVE THE FIRST ONE LOL ZOO TYCOON WITH DINOSAURS AND STUFF", "to_user": "Saradolimz", "to_user_id": 53036970, "to_user_id_str": "53036970", "to_user_name": "Sarah \\u30DB\\u30DD ", "in_reply_to_status_id": 148839679200985100, "in_reply_to_status_id_str": "148839679200985088"}, +{"created_at": "Mon, 19 Dec 2011 18:59:33 +0000", "from_user": "rylandR5", "from_user_id": 154591004, "from_user_id_str": "154591004", "from_user_name": "Ryland Lynch", "geo": null, "id": 148839903927603200, "id_str": "148839903927603200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1206179834/LynchFam-95_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1206179834/LynchFam-95_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "Had so much Fun at disneyland with @Raini_Rodriguez @rossR5 @rockyR5 @rikerR5 @rydelR5 @CalumWorthy @StarringRico and Laura lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:32 +0000", "from_user": "SassyHotBabe", "from_user_id": 427713304, "from_user_id_str": "427713304", "from_user_name": "Sexy Babe", "geo": null, "id": 148839901004169200, "id_str": "148839901004169216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700296169/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700296169/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Horny_n_hung if u dm me we can have some fun :)) xx", "to_user": "Horny_n_hung", "to_user_id": 398235418, "to_user_id_str": "398235418", "to_user_name": "John smith", "in_reply_to_status_id": 148838959340994560, "in_reply_to_status_id_str": "148838959340994561"}, +{"created_at": "Mon, 19 Dec 2011 18:59:32 +0000", "from_user": "LadyB_2015", "from_user_id": 381821464, "from_user_id_str": "381821464", "from_user_name": "Brianna Moore", "geo": null, "id": 148839900794458100, "id_str": "148839900794458115", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700830667/its_me__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700830667/its_me__normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @ashybone1: #coolkids love Jesus and aren't ashamed to tell Ppl even if they get made fun of", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:31 +0000", "from_user": "01Bubbles01", "from_user_id": 302165537, "from_user_id_str": "302165537", "from_user_name": "davina coursey", "geo": null, "id": 148839899364196350, "id_str": "148839899364196353", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1665703646/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665703646/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "so it was deff poppin lastnite =) nvr wearin heels again but it was still fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:31 +0000", "from_user": "ItsMsCoCo2u", "from_user_id": 107352662, "from_user_id_str": "107352662", "from_user_name": "Lois Lane", "geo": null, "id": 148839898919612400, "id_str": "148839898919612417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699388768/ProfilePhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699388768/ProfilePhoto_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#storyofmylife \\u201C@EyePunchPuppies: my dms are never fun unless its night time\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:31 +0000", "from_user": "Alefiyahzxs", "from_user_id": 93847814, "from_user_id_str": "93847814", "from_user_name": "Alefiyah Joeb \\u2605 \\u262E", "geo": null, "id": 148839898533724160, "id_str": "148839898533724160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694652369/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694652369/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@DacieImapinkbee why sad face? Lol okay have fun!!!", "to_user": "DacieImapinkbee", "to_user_id": 293414586, "to_user_id_str": "293414586", "to_user_name": "DACIE_DOLPHIN !", "in_reply_to_status_id": 148815786574749700, "in_reply_to_status_id_str": "148815786574749696"}, +{"created_at": "Mon, 19 Dec 2011 18:59:31 +0000", "from_user": "Da_CoolKey", "from_user_id": 29518967, "from_user_id_str": "29518967", "from_user_name": "Kashaun", "geo": null, "id": 148839895580946430, "id_str": "148839895580946432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1582900432/profile_image_1318316341294_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1582900432/profile_image_1318316341294_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "@IndiaNaiJae it would be fun... cant judge tho haha", "to_user": "IndiaNaiJae", "to_user_id": 56634161, "to_user_id_str": "56634161", "to_user_name": "India Richardson"}, +{"created_at": "Mon, 19 Dec 2011 18:59:30 +0000", "from_user": "DC_Needs_1D", "from_user_id": 424510934, "from_user_id_str": "424510934", "from_user_name": "Paris", "geo": null, "id": 148839895211843600, "id_str": "148839895211843584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679953970/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679953970/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @m_magazine: So great talking to @onedirection bright and early this morning! Such fun guys! Look for the exclusive interview deets in next issue of M!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:30 +0000", "from_user": "maneee_EDDU", "from_user_id": 310470057, "from_user_id_str": "310470057", "from_user_name": "K E E D Y!", "geo": null, "id": 148839894171648000, "id_str": "148839894171648000", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677794047/.prettyME__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677794047/.prettyME__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": ".okae so skool was fun todae ig!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:30 +0000", "from_user": "kthechosenone", "from_user_id": 78089588, "from_user_id_str": "78089588", "from_user_name": "Kwaku S", "geo": null, "id": 148839893139861500, "id_str": "148839893139861504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681868971/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681868971/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@CruzOchocinco oh ok have fun getting pretty at the salon :)", "to_user": "CruzOchocinco", "to_user_id": 130378297, "to_user_id_str": "130378297", "to_user_name": "FUCK SCHOOL.", "in_reply_to_status_id": 148839010264039420, "in_reply_to_status_id_str": "148839010264039424"}, +{"created_at": "Mon, 19 Dec 2011 18:59:30 +0000", "from_user": "iPreciousLee", "from_user_id": 168531310, "from_user_id_str": "168531310", "from_user_name": "PreciousLee Mashiane", "geo": null, "id": 148839893131468800, "id_str": "148839893131468801", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701982650/331695153_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701982650/331695153_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Nkekolo braa RT @Palesa_Illbliss: What is it? Lol RT @iPreciousLee: Its all fun and games until you laugh at my second/pedi name!! Lmao hao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:30 +0000", "from_user": "_chinaCHINA", "from_user_id": 271154462, "from_user_id_str": "271154462", "from_user_name": "China ", "geo": null, "id": 148839892858843140, "id_str": "148839892858843136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689982801/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689982801/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@lovelyjordiee lol sure well just have fun w/o you !", "to_user": "lovelyjordiee", "to_user_id": 168892679, "to_user_id_str": "168892679", "to_user_name": "Jordyn Sam", "in_reply_to_status_id": 148839259997089800, "in_reply_to_status_id_str": "148839259997089793"}, +{"created_at": "Mon, 19 Dec 2011 18:59:30 +0000", "from_user": "Yummy_Redd", "from_user_id": 245560930, "from_user_id_str": "245560930", "from_user_name": "Yamz*\\uE418\\uE022\\uE31C", "geo": null, "id": 148839891214680060, "id_str": "148839891214680064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697984381/zE6ighK9_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697984381/zE6ighK9_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Ice skating tonight w/da gurlz this gon be soo fun & funny!*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:29 +0000", "from_user": "SoCo_0lShadesON", "from_user_id": 127856341, "from_user_id_str": "127856341", "from_user_name": "\\u2605__Britanie\\u2714", "geo": null, "id": 148839890031874050, "id_str": "148839890031874048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686894245/profile_image_1323608816331_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686894245/profile_image_1323608816331_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@iBeTweeTIN_ Will be w/ @Ms_Dakia on Thursday night bringing in her Bday! Shit is gonna be fun af!\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:29 +0000", "from_user": "HYFR_itsLeshan", "from_user_id": 66045454, "from_user_id_str": "66045454", "from_user_name": "Sierra Thompson", "geo": null, "id": 148839889847336960, "id_str": "148839889847336960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697857401/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697857401/profile_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "@makayyyykayyyy who had fun at winterball was me", "to_user": "makayyyykayyyy", "to_user_id": 374864186, "to_user_id_str": "374864186", "to_user_name": "KayyyyllllahhhhMae", "in_reply_to_status_id": 148839156473278460, "in_reply_to_status_id_str": "148839156473278464"}, +{"created_at": "Mon, 19 Dec 2011 18:59:29 +0000", "from_user": "_badaxxStallion", "from_user_id": 262901876, "from_user_id_str": "262901876", "from_user_name": "Leah's Mommy\\u2661", "geo": null, "id": 148839889255923700, "id_str": "148839889255923712", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1630620468/profile_image_1320856461598_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630620468/profile_image_1320856461598_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "\"@_imYummiie: I had fun lastnite mayne ..... #Motions ..\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:29 +0000", "from_user": "SenorMalcolm", "from_user_id": 88311544, "from_user_id_str": "88311544", "from_user_name": "\\u2714Verified Packer Fan", "geo": null, "id": 148839888891031550, "id_str": "148839888891031552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1657407823/456060096_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657407823/456060096_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@VolWench Wait, what's now fun?", "to_user": "VolWench", "to_user_id": 364476496, "to_user_id_str": "364476496", "to_user_name": "VolWench", "in_reply_to_status_id": 148838896069910530, "in_reply_to_status_id_str": "148838896069910529"}, +{"created_at": "Mon, 19 Dec 2011 18:59:29 +0000", "from_user": "Switzer67", "from_user_id": 440576682, "from_user_id_str": "440576682", "from_user_name": "Travis Switzer", "geo": null, "id": 148839888433844220, "id_str": "148839888433844224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702491762/313378_176081592469602_100002032886630_350709_1170308184_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702491762/313378_176081592469602_100002032886630_350709_1170308184_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Z_Tenuta13. It should have been! But you fags. Woulda made fun of me for callin myself my nickname haha so fuck off", "to_user": "Z_Tenuta13", "to_user_id": 132562879, "to_user_id_str": "132562879", "to_user_name": "Zach Tenuta", "in_reply_to_status_id": 148830092137730050, "in_reply_to_status_id_str": "148830092137730048"}, +{"created_at": "Mon, 19 Dec 2011 18:59:29 +0000", "from_user": "1Dsimpsonizers_", "from_user_id": 379881916, "from_user_id_str": "379881916", "from_user_name": "cody simpson", "geo": null, "id": 148839887452389380, "id_str": "148839887452389376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696591860/twitterrrrr_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696591860/twitterrrrr_normal", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @1DCarrotSwag: Still holding my hand. 'so, what's your name?' 'Faye' 'thats a pretty name. So faye, did you have fun on stage?' 'yes! It was amazing!' he", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:28 +0000", "from_user": "showm3", "from_user_id": 420230557, "from_user_id_str": "420230557", "from_user_name": "showme", "geo": null, "id": 148839884340203520, "id_str": "148839884340203520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1656020999/2H6KyvqT_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656020999/2H6KyvqT_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@hornySlut1 bathroom finger fun ;)", "to_user": "hornySlut1", "to_user_id": 437923958, "to_user_id_str": "437923958", "to_user_name": "dirty whore ;)", "in_reply_to_status_id": 148839436271095800, "in_reply_to_status_id_str": "148839436271095808"}, +{"created_at": "Mon, 19 Dec 2011 18:59:28 +0000", "from_user": "beadpucontgrad", "from_user_id": 322955860, "from_user_id_str": "322955860", "from_user_name": "\\u042D\\u0432\\u0435\\u043B\\u0438\\u043D\\u0430 \\u041B\\u0443\\u043A\\u043E\\u044F\\u043D\\u043E\\u0432\\u0430", "geo": null, "id": 148839883476185100, "id_str": "148839883476185088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1410346928/avatar1143_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1410346928/avatar1143_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "As you will see these two have a whole lot of fun together http://t.co/MBrzDLT2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:28 +0000", "from_user": "LegitJayJay", "from_user_id": 215028330, "from_user_id_str": "215028330", "from_user_name": "J\\u25B3YJ\\u25B3Y \\u2020", "geo": null, "id": 148839883417456640, "id_str": "148839883417456640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1673805672/twiter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673805672/twiter_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @pfftmartha: We miss you jayjay </3 RT@LegitJayJay: Hope you guys have fun at the tea party @mitzyfoo @pfftmartha @bekka_thug :b w/o me /: .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:28 +0000", "from_user": "JonathanEMartin", "from_user_id": 16396585, "from_user_id_str": "16396585", "from_user_name": "Jonathan Martin", "geo": null, "id": 148839883216125950, "id_str": "148839883216125952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1611239656/SSphoto__10.28_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611239656/SSphoto__10.28_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Fun, Supportive, Critical, Innovative, Humble, Present, Trustworthy: 7 Things My (Principal) Gets Right: @johntspencer http://t.co/riG3Hsuu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:28 +0000", "from_user": "NothingUsual_", "from_user_id": 134169918, "from_user_id_str": "134169918", "from_user_name": "Ashalee Ocean.", "geo": null, "id": 148839882993831940, "id_str": "148839882993831936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657757770/4-up_on_2011-10-03_at_18.25__10_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657757770/4-up_on_2011-10-03_at_18.25__10_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @MING_LeeXx: Love im not searching for it, iont expect to find it this young, im only 17 ima GIRL Ii Just Wanna have fun\\n:)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:27 +0000", "from_user": "Fabulous_Helen", "from_user_id": 434056577, "from_user_id_str": "434056577", "from_user_name": "Helen Stephens", "geo": null, "id": 148839882570215420, "id_str": "148839882570215424", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686764492/helen_wedding_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686764492/helen_wedding_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Had so much fun today :D xx <3 x", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:27 +0000", "from_user": "MomoDunGoofed", "from_user_id": 117588614, "from_user_id_str": "117588614", "from_user_name": "Mercedes Murderous~", "geo": null, "id": 148839882264027140, "id_str": "148839882264027138", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695498828/16KDpxSm_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695498828/16KDpxSm_normal", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "I forgot to tell Devyn to have fun in the shower. :o Damn.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:27 +0000", "from_user": "Sonic_Ambulance", "from_user_id": 198400956, "from_user_id_str": "198400956", "from_user_name": "Sonic Ambulance", "geo": null, "id": 148839881576161280, "id_str": "148839881576161281", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1137072933/sonicambulance_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1137072933/sonicambulance_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "this was soo much fun live (@YouTube http://t.co/mG32he1I)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:27 +0000", "from_user": "KB_Britta", "from_user_id": 124780633, "from_user_id_str": "124780633", "from_user_name": "B", "geo": null, "id": 148839879499972600, "id_str": "148839879499972608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687890188/Birthday_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687890188/Birthday_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Don't care how old you get, it's still always fun to blow bubbles in your chocolate milk.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:27 +0000", "from_user": "kaveerr", "from_user_id": 18709330, "from_user_id_str": "18709330", "from_user_name": "kaveer rai \\u2602", "geo": null, "id": 148839879369953280, "id_str": "148839879369953280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701700832/Santa-hitting-bag-graphic_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701700832/Santa-hitting-bag-graphic_normal.gif", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@krystynchong iam good. .His the christmas fun. ...how have u been?", "to_user": "krystynchong", "to_user_id": 17281885, "to_user_id_str": "17281885", "to_user_name": "Krys", "in_reply_to_status_id": 148836078621696000, "in_reply_to_status_id_str": "148836078621696000"}, +{"created_at": "Mon, 19 Dec 2011 18:59:26 +0000", "from_user": "Ev_Crump", "from_user_id": 381860041, "from_user_id_str": "381860041", "from_user_name": "Everette Crump", "geo": null, "id": 148839876962430980, "id_str": "148839876962430976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1564692210/Grh0bl0z_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1564692210/Grh0bl0z_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@anastasiadanawi well have fun in there with the frenchies. Peace", "to_user": "anastasiadanawi", "to_user_id": 381703509, "to_user_id_str": "381703509", "to_user_name": "Anastasia Danawi"}, +{"created_at": "Mon, 19 Dec 2011 18:59:26 +0000", "from_user": "GlayerJ", "from_user_id": 252049138, "from_user_id_str": "252049138", "from_user_name": "\\u2665Jessica Maulid\\u2665", "geo": null, "id": 148839876274552830, "id_str": "148839876274552832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1686749120/IMG00987-20111210-1747_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686749120/IMG00987-20111210-1747_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "__ I don't give my heart out easily, so until I know for sure you love me, I can't let the world know I'm yours. Finding out is the fun part", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:26 +0000", "from_user": "LeviTedd_TME", "from_user_id": 144785623, "from_user_id_str": "144785623", "from_user_name": "Take Money Tedd", "geo": null, "id": 148839874886238200, "id_str": "148839874886238208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696947796/profile_image_1324063749033_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696947796/profile_image_1324063749033_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Had fun was trippin wit da team lastnite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:25 +0000", "from_user": "crystullos", "from_user_id": 29130760, "from_user_id_str": "29130760", "from_user_name": "Crystal Tullos", "geo": null, "id": 148839873774764030, "id_str": "148839873774764032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1202697200/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1202697200/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Fun Family Tullos in NYC today...Dylan's candy bar, ice skating at Rockefeller, and FAO Swartz next...I love spoiling my boys!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:25 +0000", "from_user": "CantBeCuffed_x", "from_user_id": 406529908, "from_user_id_str": "406529908", "from_user_name": "\\u2605 Ms.Idgaf \\u30C5", "geo": null, "id": 148839873678278660, "id_str": "148839873678278657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1672249475/AfeD1VgCAAEl2nM_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672249475/AfeD1VgCAAEl2nM_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Hadd Fun lastnght", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:25 +0000", "from_user": "Just_DieBitch", "from_user_id": 290337870, "from_user_id_str": "290337870", "from_user_name": "Ronald Brothers", "geo": null, "id": 148839872575193100, "id_str": "148839872575193089", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686332259/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686332259/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Alright lol 3 ppl don't caught a rude tweet just for fun so im done lol!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:25 +0000", "from_user": "john_mcguirk", "from_user_id": 23949317, "from_user_id_str": "23949317", "from_user_name": "John McGuirk", "geo": null, "id": 148839872105418750, "id_str": "148839872105418752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700895844/me3_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700895844/me3_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @guypbenson: \"Women\" and \"men.\" RT @RasmussenPoll: 39% see holiday gift shopping as fun experience, 38% consider it an unpleasant chore...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:25 +0000", "from_user": "MFsethh", "from_user_id": 48727527, "from_user_id_str": "48727527", "from_user_name": "Seth Hall", "geo": null, "id": 148839871761498100, "id_str": "148839871761498112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698341223/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698341223/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@ehhitsjohn lol I suck but have fun! Get in the hole!! Haha", "to_user": "ehhitsjohn", "to_user_id": 57543190, "to_user_id_str": "57543190", "to_user_name": "John Kennedy", "in_reply_to_status_id": 148839488230146050, "in_reply_to_status_id_str": "148839488230146049"}, +{"created_at": "Mon, 19 Dec 2011 18:59:25 +0000", "from_user": "taylor_ainsley", "from_user_id": 24974345, "from_user_id_str": "24974345", "from_user_name": "Taylor Brooks", "geo": null, "id": 148839870524178430, "id_str": "148839870524178433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1399441342/img043_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1399441342/img043_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@TheDavidBlaise I got mine done a week ago today, thankfully I didn't swell but it was no fun.", "to_user": "TheDavidBlaise", "to_user_id": 18111446, "to_user_id_str": "18111446", "to_user_name": "David Blaise", "in_reply_to_status_id": 148838952055488500, "in_reply_to_status_id_str": "148838952055488512"}, +{"created_at": "Mon, 19 Dec 2011 18:59:25 +0000", "from_user": "khetz_m", "from_user_id": 38832036, "from_user_id_str": "38832036", "from_user_name": "Khetani Sexabella", "geo": null, "id": 148839870108942340, "id_str": "148839870108942337", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700927372/331672217_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700927372/331672217_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "This mosquito had fun wif me maobane. -__- sherbet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:25 +0000", "from_user": "Peace_Love_Liz", "from_user_id": 213781709, "from_user_id_str": "213781709", "from_user_name": "Lindzy Glen", "geo": null, "id": 148839870083760130, "id_str": "148839870083760128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1583509568/243348_10150616895410252_871345251_19102450_8209417_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583509568/243348_10150616895410252_871345251_19102450_8209417_o_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Photo: afternoonsnoozebutton: http://t.co/8y4tC0eF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:24 +0000", "from_user": "morganxmarie10", "from_user_id": 323893610, "from_user_id_str": "323893610", "from_user_name": "Morgan Myers", "geo": null, "id": 148839869274275840, "id_str": "148839869274275840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685301608/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685301608/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@Emily_Williams7: I want to meet some new, fun people(: #hmu #tiredofthesamestuffeveryday\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:24 +0000", "from_user": "missarahnicole", "from_user_id": 27049676, "from_user_id_str": "27049676", "from_user_name": "Miss Sarah", "geo": null, "id": 148839869106495500, "id_str": "148839869106495488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685344450/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685344450/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@kawaiimanko: @missarahnicole definitely! hope there's one tonight ^^ & thankyous~ you have fun today too~!\\u201D Kaw calls for TC tonight!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:24 +0000", "from_user": "SenidaTrucks022", "from_user_id": 437043883, "from_user_id_str": "437043883", "from_user_name": "Senida Trucks", "geo": null, "id": 148839867319722000, "id_str": "148839867319721984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": null, "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "http://t.co/gj08do8V Window Tiger Woods Nintendo Fishing Department Stores Silver Hawaii", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:24 +0000", "from_user": "MrB_24_Dexter", "from_user_id": 189244568, "from_user_id_str": "189244568", "from_user_name": "Mr. Matthew Brown", "geo": null, "id": 148839866547961860, "id_str": "148839866547961856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698266451/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698266451/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "The game is afoot!- Sherlock Holmes: A Game of Shadow. Long, but fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:24 +0000", "from_user": "Mollier12", "from_user_id": 60672988, "from_user_id_str": "60672988", "from_user_name": "Unique Redgrave ", "geo": null, "id": 148839866074021900, "id_str": "148839866074021888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1689607908/Photo_on_2011-12-08_at_19.07__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689607908/Photo_on_2011-12-08_at_19.07__2_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Not fun when you trip down the stairs of a bus", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:23 +0000", "from_user": "MisguidedDevil", "from_user_id": 415011002, "from_user_id_str": "415011002", "from_user_name": "Emiley Ellen", "geo": null, "id": 148839865541337100, "id_str": "148839865541337088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657369843/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657369843/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Have fun in ireland @GetOffOfMyTits .. And have a nice Christmas:Dx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:23 +0000", "from_user": "BellezaForAshes", "from_user_id": 233743915, "from_user_id_str": "233743915", "from_user_name": "di\\u02C8n\\u0113s \\u264F ", "geo": null, "id": 148839865461653500, "id_str": "148839865461653505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1632695597/149734HD.mp4_20111103184703_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632695597/149734HD.mp4_20111103184703_normal.jpeg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Wonder what ima do over break ? I hope whatever it is, that its FUN and makes my break nice (:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:23 +0000", "from_user": "prettieSTALLION", "from_user_id": 65482566, "from_user_id_str": "65482566", "from_user_name": "Kiara Diamante'", "geo": null, "id": 148839864832491520, "id_str": "148839864832491520", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688520764/6QLF1Vgf_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688520764/6QLF1Vgf_normal", "source": "<a href="http://phnxapp.com" rel="nofollow">phnx</a>", "text": "Had Fun Wit My #Guapo Niggas Yesterday.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:23 +0000", "from_user": "richardpeacock", "from_user_id": 17683480, "from_user_id_str": "17683480", "from_user_name": "Richard Peacock", "geo": null, "id": 148839864014606340, "id_str": "148839864014606336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694950229/RPXmas_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694950229/RPXmas_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "yay, after a day of 'forced-fun' Christmassybollocks I'm now at home catching up on all the work I would've got done during the day... pfff", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:23 +0000", "from_user": "ThaRealChels", "from_user_id": 182214456, "from_user_id_str": "182214456", "from_user_name": "chelsea ", "geo": null, "id": 148839863888789500, "id_str": "148839863888789504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696690288/DSC05567_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696690288/DSC05567_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ayyo_shebadd have fun with that. lmao .", "to_user": "ayyo_shebadd", "to_user_id": 314331256, "to_user_id_str": "314331256", "to_user_name": "shayana massey", "in_reply_to_status_id": 148837345674788860, "in_reply_to_status_id_str": "148837345674788864"}, +{"created_at": "Mon, 19 Dec 2011 18:59:23 +0000", "from_user": "CatCollins4", "from_user_id": 413457546, "from_user_id_str": "413457546", "from_user_name": "Cat Collins", "geo": null, "id": 148839862496280580, "id_str": "148839862496280576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680770590/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680770590/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@cNik9: @CatCollins4 ohh gosh.. That sounds HORRIBLE\\u201D--haha no,not horrible. Was with Mikey and @JE9485 ..it was fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:23 +0000", "from_user": "DVOXO_XII_XXVII", "from_user_id": 229983961, "from_user_id_str": "229983961", "from_user_name": "john", "geo": null, "id": 148839862106198000, "id_str": "148839862106198016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1584337726/Photo_on_9-7-11_at_2.12_AM_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584337726/Photo_on_9-7-11_at_2.12_AM_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "At the airport new York in my future...it was fun Atl. Oh and that lame nigga lucky he ain't get his ass beat selling weak buds", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:23 +0000", "from_user": "Rapscallion__", "from_user_id": 763979, "from_user_id_str": "763979", "from_user_name": "John", "geo": null, "id": 148839862047473660, "id_str": "148839862047473664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696177837/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696177837/image_normal.jpg", "source": "<a href="http://www.twittergadget.com" rel="nofollow">tGadget</a>", "text": "@HauntedRockCake oh that train is always fun :( x", "to_user": "HauntedRockCake", "to_user_id": 43146008, "to_user_id_str": "43146008", "to_user_name": "Sandra Kelley", "in_reply_to_status_id": 148839521339973630, "in_reply_to_status_id_str": "148839521339973632"}, +{"created_at": "Mon, 19 Dec 2011 18:59:23 +0000", "from_user": "xPerfectMistake", "from_user_id": 199027714, "from_user_id_str": "199027714", "from_user_name": "Arminda Tario", "geo": null, "id": 148839861992964100, "id_str": "148839861992964096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1642733538/us6642KJ_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642733538/us6642KJ_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@_ValletThaBenz is jusf fun to be with be making me laugh!", "to_user": "_ValletThaBenz", "to_user_id": 244133648, "to_user_id_str": "244133648", "to_user_name": "Kerrigan Smith"}, +{"created_at": "Mon, 19 Dec 2011 18:59:23 +0000", "from_user": "Captinsavaheaux", "from_user_id": 270618486, "from_user_id_str": "270618486", "from_user_name": "DICK-FIL-A", "geo": null, "id": 148839861971980300, "id_str": "148839861971980289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698896735/oolala_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698896735/oolala_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "Having fun theses days...cuzz ill Neva getem back...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:22 +0000", "from_user": "WeLoveLoganBR", "from_user_id": 232630453, "from_user_id_str": "232630453", "from_user_name": "L3RM4N14C, B1TCH", "geo": null, "id": 148839861082796030, "id_str": "148839861082796032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699363710/63_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699363710/63_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @NiallOfficial: Legooo! Southend! Gona be fun, get involved!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:22 +0000", "from_user": "BABY_TONIQUE", "from_user_id": 339385519, "from_user_id_str": "339385519", "from_user_name": "DIANA TONIQUE EARLY", "geo": null, "id": 148839861074411520, "id_str": "148839861074411520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702612874/Picture0021_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702612874/Picture0021_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "i went to the movies saturday it was to FUN LOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:22 +0000", "from_user": "K1_Sauce", "from_user_id": 346783978, "from_user_id_str": "346783978", "from_user_name": "Eleanor Rigby", "geo": null, "id": 148839859975499780, "id_str": "148839859975499776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687214868/Snapshot_20111209_29_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687214868/Snapshot_20111209_29_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Horoscopes are really general and could apply to anybody regardless of when you were born. But still, it's fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:22 +0000", "from_user": "Mis_Swag", "from_user_id": 155809320, "from_user_id_str": "155809320", "from_user_name": "Liz Atong", "geo": null, "id": 148839859296022530, "id_str": "148839859296022528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1683981902/liz.a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683981902/liz.a_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iEnriqueSays: Living Single may seem fun while it lasts but at the end of the day everyone wants someone to love.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:22 +0000", "from_user": "DrDang", "from_user_id": 25814161, "from_user_id_str": "25814161", "from_user_name": "Muhammed Deshmukh", "geo": null, "id": 148839858918535170, "id_str": "148839858918535168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1608962393/150512_10150340433920454_717455453_15931143_f3293221_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608962393/150512_10150340433920454_717455453_15931143_f3293221_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@gyandeep4a @invokeanand don't think it's a contest... not sure we'll even be notified if we get in... but fun!", "to_user": "gyandeep4a", "to_user_id": 43440687, "to_user_id_str": "43440687", "to_user_name": "Gyandeep Pattnayak"}, +{"created_at": "Mon, 19 Dec 2011 18:59:21 +0000", "from_user": "lindsaycampagna", "from_user_id": 321837541, "from_user_id_str": "321837541", "from_user_name": "Lindsay Nicole", "geo": null, "id": 148839857077235700, "id_str": "148839857077235712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679386794/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679386794/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@tgriff209 did you have fun yesterday? I don't remember the game at all lol. I stayed awake this time though \\uD83D\\uDC4D", "to_user": "tgriff209", "to_user_id": 137928999, "to_user_id_str": "137928999", "to_user_name": "Tommy G."}, +{"created_at": "Mon, 19 Dec 2011 18:59:21 +0000", "from_user": "boutSickOf_kels", "from_user_id": 218355753, "from_user_id_str": "218355753", "from_user_name": "kels Rashad", "geo": null, "id": 148839856242569200, "id_str": "148839856242569216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700474331/ColorTouch-1324228704319_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700474331/ColorTouch-1324228704319_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @Yeah_imTHATgirl Drama is always fun to watch when it doesn have shit to do with me", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:21 +0000", "from_user": "g5theflyguy", "from_user_id": 325959424, "from_user_id_str": "325959424", "from_user_name": "Mr. Wrong", "geo": null, "id": 148839856049635330, "id_str": "148839856049635328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697937921/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697937921/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@BabyKillinIt: Fun-sized \\uD83D\\uDE1C\\u201D #datpart", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:21 +0000", "from_user": "Mwhit33", "from_user_id": 421462884, "from_user_id_str": "421462884", "from_user_name": "Michael Whitney", "geo": null, "id": 148839855701504000, "id_str": "148839855701504002", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1657877481/Mi_mama_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657877481/Mi_mama_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@C_Quinn3 haha nah were fun", "to_user": "C_Quinn3", "to_user_id": 135369215, "to_user_id_str": "135369215", "to_user_name": "Carly", "in_reply_to_status_id": 148721885830582270, "in_reply_to_status_id_str": "148721885830582274"}, +{"created_at": "Mon, 19 Dec 2011 18:59:21 +0000", "from_user": "CincoDe_Mayo", "from_user_id": 34566189, "from_user_id_str": "34566189", "from_user_name": "Esteban Raul Chavez", "geo": null, "id": 148839855542120450, "id_str": "148839855542120449", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1669769805/CincoDe_Mayo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669769805/CincoDe_Mayo_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Aint tht sweet lol RT @Ali_Naturally: Got our puppy yesterday now headed to the coast to find a place.. its been a long few days but fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:21 +0000", "from_user": "Natural2ArtiZte", "from_user_id": 100880100, "from_user_id_str": "100880100", "from_user_name": "Brandi Broughton", "geo": null, "id": 148839854476759040, "id_str": "148839854476759040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1679032221/IMG_8509crop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679032221/IMG_8509crop_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "This should be fun...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:20 +0000", "from_user": "REGGIEMINAJ", "from_user_id": 55981852, "from_user_id_str": "55981852", "from_user_name": "\\u2714 Verified Ken", "geo": null, "id": 148839853214269440, "id_str": "148839853214269443", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1674368643/IMAG1409-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674368643/IMAG1409-1_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "@PretttyBoyTroy hahaha, its fun tho. Just try it :)", "to_user": "PretttyBoyTroy", "to_user_id": 197449311, "to_user_id_str": "197449311", "to_user_name": "Troy Peron", "in_reply_to_status_id": 148839726625996800, "in_reply_to_status_id_str": "148839726625996800"}, +{"created_at": "Mon, 19 Dec 2011 18:59:20 +0000", "from_user": "TheSamSmithShow", "from_user_id": 195615694, "from_user_id_str": "195615694", "from_user_name": "Samantha", "geo": null, "id": 148839853180719100, "id_str": "148839853180719104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685470064/383039_2076820779203_1805493174_1446102_249505446_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685470064/383039_2076820779203_1805493174_1446102_249505446_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#whathappened2 the fun bubble", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:20 +0000", "from_user": "dorianrachel", "from_user_id": 36834817, "from_user_id_str": "36834817", "from_user_name": "Dorian Rachel", "geo": null, "id": 148839849720414200, "id_str": "148839849720414209", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702317486/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702317486/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I really wish that @__D_Squared was here to make fun of my brother for me. He's so annoying.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:20 +0000", "from_user": "TCKemp", "from_user_id": 92093128, "from_user_id_str": "92093128", "from_user_name": "Tom Kemp", "geo": null, "id": 148839849175171070, "id_str": "148839849175171073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1012019223/465e691e-c5cc-48d9-b24e-6668d515eaee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1012019223/465e691e-c5cc-48d9-b24e-6668d515eaee_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", "text": "@wossy You were fun with Maths on the Prof. Brian Cox prog. Great prog.", "to_user": "wossy", "to_user_id": 17753033, "to_user_id_str": "17753033", "to_user_name": "jonathan ross", "in_reply_to_status_id": 148827716857233400, "in_reply_to_status_id_str": "148827716857233408"}, +{"created_at": "Mon, 19 Dec 2011 18:59:19 +0000", "from_user": "O_OiNERD", "from_user_id": 43639990, "from_user_id_str": "43639990", "from_user_name": "iAndroid#143", "geo": null, "id": 148839849045147650, "id_str": "148839849045147649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697367762/2011-12-14_22-57-13_618_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697367762/2011-12-14_22-57-13_618_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "#workflow is goin very smooth & fun #AdPCallCenter", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:19 +0000", "from_user": "iSexstrology", "from_user_id": 252959698, "from_user_id_str": "252959698", "from_user_name": "iSexstrology", "geo": null, "id": 148839848629899260, "id_str": "148839848629899264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682055995/22ofrfw3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682055995/22ofrfw3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Sagittarius controls the freedom and fun in a relationship. The opposite spells doom.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:19 +0000", "from_user": "MickiMichelle3", "from_user_id": 25768473, "from_user_id_str": "25768473", "from_user_name": "Michelle Rahilly", "geo": null, "id": 148839847623278600, "id_str": "148839847623278592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1561324721/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1561324721/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "FUN!! -- \\u201C@mashable: TIP: Type \"Let it snow\" and \"Hanukkah\" into http://t.co/Wtmh1ssz for a special surprise - http://t.co/xCEoOoyv\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:19 +0000", "from_user": "xDERYA_", "from_user_id": 294096962, "from_user_id_str": "294096962", "from_user_name": "DERYA' ", "geo": null, "id": 148839846176243700, "id_str": "148839846176243712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1669898635/330782124_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669898635/330782124_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @RebeccaVlaming: Have fun schat @xDERYA_ \\u00BB thankyou babby .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:19 +0000", "from_user": "_StrangeDanger", "from_user_id": 284216236, "from_user_id_str": "284216236", "from_user_name": "vanitra braud (bro)", "geo": null, "id": 148839845802938370, "id_str": "148839845802938370", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1674207556/vinny_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674207556/vinny_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "i cnt wait to have fun with my Sugarettes tmrw!., :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:19 +0000", "from_user": "GoodMedEnt", "from_user_id": 409190923, "from_user_id_str": "409190923", "from_user_name": "Tirrell", "geo": +{"coordinates": [42.4821,-83.2462], "type": "Point"}, "id": 148839845752606720, "id_str": "148839845752606721", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1631904746/staff_color_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631904746/staff_color_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@JayLott3: @EricCTaylor @goodmedent Haaaa... Don't ruin my fun please! LOL\" Well Geek Squad, it just seemed that way. I've moved to Galaxy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:19 +0000", "from_user": "McGreenface", "from_user_id": 264958004, "from_user_id_str": "264958004", "from_user_name": "Chloe Green", "geo": null, "id": 148839845136048130, "id_str": "148839845136048128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1638937094/008_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638937094/008_normal.JPG", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @coollike: Radio 1 are currently interviewing @thatalexday in our office about Forever Yours. This is fun ^_^", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:18 +0000", "from_user": "IIASMAAII", "from_user_id": 174007861, "from_user_id_str": "174007861", "from_user_name": "Little Monster", "geo": null, "id": 148839843902926850, "id_str": "148839843902926848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1621979313/tumblr_llks94vKs21qcgl1no1_500_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621979313/tumblr_llks94vKs21qcgl1no1_500_normal.png", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @Lotta_Monster: Why is everybody tweeting about #GagasPassword ?? I mean HELLO! GAGA GOT HACKED AND YOU'RE MAKING FUN OF IT?! #StopHackingGaga", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:18 +0000", "from_user": "ThnkGOD4makn_ME", "from_user_id": 231181598, "from_user_id_str": "231181598", "from_user_name": "Kekyra Taylor", "geo": null, "id": 148839842715942900, "id_str": "148839842715942912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1630801282/329507302_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630801282/329507302_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Conhrats :-) \\u00AB@ALLinTheMIRROR_ my good boy is PLENTY of fun ... ha ! :)\\u00BB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:18 +0000", "from_user": "liestria", "from_user_id": 25801431, "from_user_id_str": "25801431", "from_user_name": "Lies Tria Permana", "geo": null, "id": 148839842430722050, "id_str": "148839842430722048", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1410352563/IMG_0539_599x600_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1410352563/IMG_0539_599x600_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @my_supersoccer: Yang udah maen, mana suaranya? Yang belum, sekali lagi, ini link-nya: http://t.co/EH2eaaHh #SuperSoccerFantasyFootball", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:18 +0000", "from_user": "sugahunneeicedt", "from_user_id": 159241116, "from_user_id_str": "159241116", "from_user_name": "Allyn Schulbaum", "geo": null, "id": 148839841935786000, "id_str": "148839841935785984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1645522412/2011-09-19_16-38-24.005_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645522412/2011-09-19_16-38-24.005_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "shit im not complainin though this is gonna be fun lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:18 +0000", "from_user": "J_LopSter", "from_user_id": 358340543, "from_user_id_str": "358340543", "from_user_name": "John Lopilato", "geo": null, "id": 148839841730277380, "id_str": "148839841730277376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1571245985/7d7RmpwU_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1571245985/7d7RmpwU_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Ready to get out of work and have some fun. Hmu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:18 +0000", "from_user": "NickyMauge", "from_user_id": 123364080, "from_user_id_str": "123364080", "from_user_name": "Mrs. Payne", "geo": null, "id": 148839841226965000, "id_str": "148839841226964992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676198321/one_direction_move_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676198321/one_direction_move_normal.gif", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @NiallOfficial: Legooo! Southend! Gona be fun, get involved!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:18 +0000", "from_user": "Aamal_E", "from_user_id": 94762293, "from_user_id_str": "94762293", "from_user_name": "ENTEKUME MICHAEL", "geo": null, "id": 148839840975302660, "id_str": "148839840975302656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687969374/3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687969374/3_normal.jpg", "source": "<a href="http://tuitwit.com" rel="nofollow">TuiTwit</a>", "text": "Ama stick 2 readin dem tweets! More fun dat way :))", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:18 +0000", "from_user": "pogigames", "from_user_id": 421835087, "from_user_id_str": "421835087", "from_user_name": "pogi games", "geo": null, "id": 148839840824303600, "id_str": "148839840824303616", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1658733495/rally-online-game1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658733495/rally-online-game1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "fun pc games - Fruttiland - http://t.co/kgeeH7Eo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:17 +0000", "from_user": "NowTwatchMeWurk", "from_user_id": 325553840, "from_user_id_str": "325553840", "from_user_name": "RainnyaForecast", "geo": null, "id": 148839839826059260, "id_str": "148839839826059264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1675355294/avatar_normal.JPEG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675355294/avatar_normal.JPEG", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "Damn I don't know his name he be in all the Tyler Perry plays but OMG he look so yummy DAMN we could have all kinds of fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:17 +0000", "from_user": "jen_ireland", "from_user_id": 82248533, "from_user_id_str": "82248533", "from_user_name": "Jennifer Ireland", "geo": null, "id": 148839838832005120, "id_str": "148839838832005120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1460466614/25329_1224505885392_1011330514_31155098_3331751_n-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1460466614/25329_1224505885392_1011330514_31155098_3331751_n-1_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Incredibly awesome Christmas lights interactive Angry Birds game http://t.co/gNcikqFZ #in", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:17 +0000", "from_user": "Wild_Mane", "from_user_id": 208935321, "from_user_id_str": "208935321", "from_user_name": "Jonthan Marks", "geo": null, "id": 148839838538399740, "id_str": "148839838538399744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1652629067/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652629067/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Da_Realist06 had 2 much fun year round", "to_user": "Da_Realist06", "to_user_id": 179568409, "to_user_id_str": "179568409", "to_user_name": "Deante' Thomas", "in_reply_to_status_id": 148831675873361920, "in_reply_to_status_id_str": "148831675873361922"}, +{"created_at": "Mon, 19 Dec 2011 18:59:17 +0000", "from_user": "effigyfarm", "from_user_id": 12584742, "from_user_id_str": "12584742", "from_user_name": "effigyfarm", "geo": null, "id": 148839838509051900, "id_str": "148839838509051904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1311512755/nicole_patrice_johnson_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1311512755/nicole_patrice_johnson_2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I am using @karmaScience (download the app) for the rest of my holiday shopping // a co-founder is from #Detroit this will be way more fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:17 +0000", "from_user": "Ayo_ItsAshleyy", "from_user_id": 86463349, "from_user_id_str": "86463349", "from_user_name": "Est. *Jan.11th*", "geo": null, "id": 148839837997338620, "id_str": "148839837997338624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700692706/Photo_on_2011-10-31_at_14.14__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700692706/Photo_on_2011-10-31_at_14.14__2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @_Preslynn_: @Ayo_ItsAshleyy bahaha, you made that class fun :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:17 +0000", "from_user": "rexxie13", "from_user_id": 37319948, "from_user_id_str": "37319948", "from_user_name": "sarah ", "geo": null, "id": 148839836713893900, "id_str": "148839836713893888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1113901162/18qq4zg4_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1113901162/18qq4zg4_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Yes yes back on this should be fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:17 +0000", "from_user": "Vandana_99", "from_user_id": 417761129, "from_user_id_str": "417761129", "from_user_name": "Vandana Patel", "geo": null, "id": 148839836709699600, "id_str": "148839836709699585", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@akshaykumar From South Africa-watched Desi Boyz yesterday-really enjoyed it! Great fun!! Well done guys:)", "to_user": "akshaykumar", "to_user_id": 31348594, "to_user_id_str": "31348594", "to_user_name": "Akshay Kumar", "in_reply_to_status_id": 148742477623472130, "in_reply_to_status_id_str": "148742477623472128"}, +{"created_at": "Mon, 19 Dec 2011 18:59:16 +0000", "from_user": "KeehLicioUs_eLL", "from_user_id": 171784739, "from_user_id_str": "171784739", "from_user_name": "Keeh Xychie Dy", "geo": null, "id": 148839835707248640, "id_str": "148839835707248640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685468085/331235526_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685468085/331235526_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Just had a fun talk with JAM SANCHOOOOOO! #BlueBoyBitesBack w/ @ZoFneSs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:59:19 +0000", "from_user": "McGreenface", "from_user_id": 264958004, "from_user_id_str": "264958004", "from_user_name": "Chloe Green", "geo": null, "id": 148839845136048130, "id_str": "148839845136048128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1638937094/008_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638937094/008_normal.JPG", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @coollike: Radio 1 are currently interviewing @thatalexday in our office about Forever Yours. This is fun ^_^", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:18 +0000", "from_user": "IIASMAAII", "from_user_id": 174007861, "from_user_id_str": "174007861", "from_user_name": "Little Monster", "geo": null, "id": 148839843902926850, "id_str": "148839843902926848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1621979313/tumblr_llks94vKs21qcgl1no1_500_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621979313/tumblr_llks94vKs21qcgl1no1_500_normal.png", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @Lotta_Monster: Why is everybody tweeting about #GagasPassword ?? I mean HELLO! GAGA GOT HACKED AND YOU'RE MAKING FUN OF IT?! #StopHackingGaga", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:18 +0000", "from_user": "ThnkGOD4makn_ME", "from_user_id": 231181598, "from_user_id_str": "231181598", "from_user_name": "Kekyra Taylor", "geo": null, "id": 148839842715942900, "id_str": "148839842715942912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1630801282/329507302_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630801282/329507302_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Conhrats :-) \\u00AB@ALLinTheMIRROR_ my good boy is PLENTY of fun ... ha ! :)\\u00BB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:18 +0000", "from_user": "liestria", "from_user_id": 25801431, "from_user_id_str": "25801431", "from_user_name": "Lies Tria Permana", "geo": null, "id": 148839842430722050, "id_str": "148839842430722048", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1410352563/IMG_0539_599x600_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1410352563/IMG_0539_599x600_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @my_supersoccer: Yang udah maen, mana suaranya? Yang belum, sekali lagi, ini link-nya: http://t.co/EH2eaaHh #SuperSoccerFantasyFootball", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:18 +0000", "from_user": "sugahunneeicedt", "from_user_id": 159241116, "from_user_id_str": "159241116", "from_user_name": "Allyn Schulbaum", "geo": null, "id": 148839841935786000, "id_str": "148839841935785984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1645522412/2011-09-19_16-38-24.005_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645522412/2011-09-19_16-38-24.005_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "shit im not complainin though this is gonna be fun lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:18 +0000", "from_user": "J_LopSter", "from_user_id": 358340543, "from_user_id_str": "358340543", "from_user_name": "John Lopilato", "geo": null, "id": 148839841730277380, "id_str": "148839841730277376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1571245985/7d7RmpwU_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1571245985/7d7RmpwU_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Ready to get out of work and have some fun. Hmu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:18 +0000", "from_user": "NickyMauge", "from_user_id": 123364080, "from_user_id_str": "123364080", "from_user_name": "Mrs. Payne", "geo": null, "id": 148839841226965000, "id_str": "148839841226964992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676198321/one_direction_move_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676198321/one_direction_move_normal.gif", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @NiallOfficial: Legooo! Southend! Gona be fun, get involved!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:18 +0000", "from_user": "Aamal_E", "from_user_id": 94762293, "from_user_id_str": "94762293", "from_user_name": "ENTEKUME MICHAEL", "geo": null, "id": 148839840975302660, "id_str": "148839840975302656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687969374/3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687969374/3_normal.jpg", "source": "<a href="http://tuitwit.com" rel="nofollow">TuiTwit</a>", "text": "Ama stick 2 readin dem tweets! More fun dat way :))", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:18 +0000", "from_user": "pogigames", "from_user_id": 421835087, "from_user_id_str": "421835087", "from_user_name": "pogi games", "geo": null, "id": 148839840824303600, "id_str": "148839840824303616", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1658733495/rally-online-game1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658733495/rally-online-game1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "fun pc games - Fruttiland - http://t.co/kgeeH7Eo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:17 +0000", "from_user": "NowTwatchMeWurk", "from_user_id": 325553840, "from_user_id_str": "325553840", "from_user_name": "RainnyaForecast", "geo": null, "id": 148839839826059260, "id_str": "148839839826059264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1675355294/avatar_normal.JPEG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675355294/avatar_normal.JPEG", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "Damn I don't know his name he be in all the Tyler Perry plays but OMG he look so yummy DAMN we could have all kinds of fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:17 +0000", "from_user": "jen_ireland", "from_user_id": 82248533, "from_user_id_str": "82248533", "from_user_name": "Jennifer Ireland", "geo": null, "id": 148839838832005120, "id_str": "148839838832005120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1460466614/25329_1224505885392_1011330514_31155098_3331751_n-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1460466614/25329_1224505885392_1011330514_31155098_3331751_n-1_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Incredibly awesome Christmas lights interactive Angry Birds game http://t.co/gNcikqFZ #in", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:17 +0000", "from_user": "Wild_Mane", "from_user_id": 208935321, "from_user_id_str": "208935321", "from_user_name": "Jonthan Marks", "geo": null, "id": 148839838538399740, "id_str": "148839838538399744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1652629067/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652629067/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Da_Realist06 had 2 much fun year round", "to_user": "Da_Realist06", "to_user_id": 179568409, "to_user_id_str": "179568409", "to_user_name": "Deante' Thomas", "in_reply_to_status_id": 148831675873361920, "in_reply_to_status_id_str": "148831675873361922"}, +{"created_at": "Mon, 19 Dec 2011 18:59:17 +0000", "from_user": "effigyfarm", "from_user_id": 12584742, "from_user_id_str": "12584742", "from_user_name": "effigyfarm", "geo": null, "id": 148839838509051900, "id_str": "148839838509051904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1311512755/nicole_patrice_johnson_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1311512755/nicole_patrice_johnson_2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I am using @karmaScience (download the app) for the rest of my holiday shopping // a co-founder is from #Detroit this will be way more fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:17 +0000", "from_user": "Ayo_ItsAshleyy", "from_user_id": 86463349, "from_user_id_str": "86463349", "from_user_name": "Est. *Jan.11th*", "geo": null, "id": 148839837997338620, "id_str": "148839837997338624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700692706/Photo_on_2011-10-31_at_14.14__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700692706/Photo_on_2011-10-31_at_14.14__2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @_Preslynn_: @Ayo_ItsAshleyy bahaha, you made that class fun :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:17 +0000", "from_user": "rexxie13", "from_user_id": 37319948, "from_user_id_str": "37319948", "from_user_name": "sarah ", "geo": null, "id": 148839836713893900, "id_str": "148839836713893888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1113901162/18qq4zg4_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1113901162/18qq4zg4_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Yes yes back on this should be fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:17 +0000", "from_user": "Vandana_99", "from_user_id": 417761129, "from_user_id_str": "417761129", "from_user_name": "Vandana Patel", "geo": null, "id": 148839836709699600, "id_str": "148839836709699585", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@akshaykumar From South Africa-watched Desi Boyz yesterday-really enjoyed it! Great fun!! Well done guys:)", "to_user": "akshaykumar", "to_user_id": 31348594, "to_user_id_str": "31348594", "to_user_name": "Akshay Kumar", "in_reply_to_status_id": 148742477623472130, "in_reply_to_status_id_str": "148742477623472128"}, +{"created_at": "Mon, 19 Dec 2011 18:59:16 +0000", "from_user": "KeehLicioUs_eLL", "from_user_id": 171784739, "from_user_id_str": "171784739", "from_user_name": "Keeh Xychie Dy", "geo": null, "id": 148839835707248640, "id_str": "148839835707248640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685468085/331235526_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685468085/331235526_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Just had a fun talk with JAM SANCHOOOOOO! #BlueBoyBitesBack w/ @ZoFneSs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:16 +0000", "from_user": "iconicgirl156", "from_user_id": 255737263, "from_user_id_str": "255737263", "from_user_name": "caitlin lacey!", "geo": null, "id": 148839835145224200, "id_str": "148839835145224192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1639076905/vinny__normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639076905/vinny__normal", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @ICONspikeymike: Shutout to my man @LaneNapper had a great class today, so much fun. Hope to see u again soon!! On my way to Long Island now :))Gonna be sick", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:16 +0000", "from_user": "ZachMorrell", "from_user_id": 31029264, "from_user_id_str": "31029264", "from_user_name": "Zachery Morrell", "geo": null, "id": 148839834436386800, "id_str": "148839834436386816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1554874768/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554874768/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @MODSUN: Dude, my life is so fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:16 +0000", "from_user": "dneijenhuis", "from_user_id": 275561596, "from_user_id_str": "275561596", "from_user_name": "Dani\\u00EBlle", "geo": null, "id": 148839833710772220, "id_str": "148839833710772224", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1574013301/CIMG0232_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1574013301/CIMG0232_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@xcharity dat zal best wel ja! Naar welke film ben je? Have fun!", "to_user": "xcharity", "to_user_id": 275565573, "to_user_id_str": "275565573", "to_user_name": "Charity Johannes", "in_reply_to_status_id": 148832949045956600, "in_reply_to_status_id_str": "148832949045956611"}, +{"created_at": "Mon, 19 Dec 2011 18:59:16 +0000", "from_user": "_UnderD0g", "from_user_id": 212719054, "from_user_id_str": "212719054", "from_user_name": "Ramona Flowers \\u262E", "geo": null, "id": 148839833677205500, "id_str": "148839833677205504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1628919944/jur6gjY9_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628919944/jur6gjY9_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "god last night was so.fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:16 +0000", "from_user": "xNext2You", "from_user_id": 107107107, "from_user_id_str": "107107107", "from_user_name": "Wendy,\\u262E", "geo": null, "id": 148839833480073200, "id_str": "148839833480073216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1684739405/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684739405/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@MarcuscollinsUK woo have fun Marcus, don't get too drunk!!!", "to_user": "MarcuscollinsUK", "to_user_id": 370448015, "to_user_id_str": "370448015", "to_user_name": "Marcus Collins", "in_reply_to_status_id": 148839438309527550, "in_reply_to_status_id_str": "148839438309527553"}, +{"created_at": "Mon, 19 Dec 2011 18:59:16 +0000", "from_user": "Rikk16", "from_user_id": 227818470, "from_user_id_str": "227818470", "from_user_name": "Rik", "geo": null, "id": 148839832993546240, "id_str": "148839832993546240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1600723916/328468419_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600723916/328468419_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@Jimpjuh @trangaboyfly go zipp and have fun", "to_user": "Jimpjuh", "to_user_id": 155332949, "to_user_id_str": "155332949", "to_user_name": "Jim", "in_reply_to_status_id": 148839514146750460, "in_reply_to_status_id_str": "148839514146750464"}, +{"created_at": "Mon, 19 Dec 2011 18:59:15 +0000", "from_user": "_BatmansRaccoon", "from_user_id": 232986892, "from_user_id_str": "232986892", "from_user_name": "Ohai Batman", "geo": null, "id": 148839829105418240, "id_str": "148839829105418240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679929083/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679929083/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Lunch will be fun -.e", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:14 +0000", "from_user": "tashasuri", "from_user_id": 144541740, "from_user_id_str": "144541740", "from_user_name": "Tasha Suri", "geo": null, "id": 148839824663658500, "id_str": "148839824663658496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1383255276/Photo_8_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1383255276/Photo_8_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Lizzie89x It's your hair! Besides, short could be a fun change - and you've got the face to pull it off", "to_user": "Lizzie89x", "to_user_id": 186909702, "to_user_id_str": "186909702", "to_user_name": "Lizzie"}, +{"created_at": "Mon, 19 Dec 2011 18:59:14 +0000", "from_user": "Trace_MyFace", "from_user_id": 322218633, "from_user_id_str": "322218633", "from_user_name": "D E C E M B E R 18 !", "geo": null, "id": 148839823975780350, "id_str": "148839823975780352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702461092/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702461092/image_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Photos on iOS</a>", "text": "I had fun on my birthday , yesterday :) http://t.co/UL8RoBmp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:13 +0000", "from_user": "DesmondTheDog", "from_user_id": 285061887, "from_user_id_str": "285061887", "from_user_name": "Lauren & Desmond", "geo": null, "id": 148839823862534140, "id_str": "148839823862534145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1318463430/IMG_4262_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1318463430/IMG_4262_normal.JPG", "source": "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", "text": "does your dog sleep in a funny position? mine does. http://t.co/GXpwT0dC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:13 +0000", "from_user": "vintageglamG", "from_user_id": 373731600, "from_user_id_str": "373731600", "from_user_name": "rachel brean maynard", "geo": null, "id": 148839822864293900, "id_str": "148839822864293888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1626251374/vintage-arch_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626251374/vintage-arch_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT@coolsara51: I love all u #Rushers we really r a family and I LOVE having ppl who don't make fun of me for fangirling and love BTR as ...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:13 +0000", "from_user": "H3lloH3ath3rXx", "from_user_id": 96037408, "from_user_id_str": "96037408", "from_user_name": "Heather Konvicka", "geo": null, "id": 148839822851715070, "id_str": "148839822851715073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689870295/rli8H5EH_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689870295/rli8H5EH_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@HelloOlive havent decided yet :) probably somewhere close. Tis gonna be fun", "to_user": "HelloOlive", "to_user_id": 169012286, "to_user_id_str": "169012286", "to_user_name": "Olivia Nicole", "in_reply_to_status_id": 148834470156451840, "in_reply_to_status_id_str": "148834470156451842"}, +{"created_at": "Mon, 19 Dec 2011 18:59:13 +0000", "from_user": "follypimpz", "from_user_id": 208703073, "from_user_id_str": "208703073", "from_user_name": "raphael ola", "geo": null, "id": 148839822478417920, "id_str": "148839822478417921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1686985768/IMG-20110819-00216_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686985768/IMG-20110819-00216_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Home,finally phewww. shoppin was quite fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:13 +0000", "from_user": "peachsouth09", "from_user_id": 68271562, "from_user_id_str": "68271562", "from_user_name": "Gayle ", "geo": null, "id": 148839821010419700, "id_str": "148839821010419712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1616006542/DSCN1291_-_Copy_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616006542/DSCN1291_-_Copy_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@nathinbutler Have fun!! Thanks for tweeting the pictures the other night!!", "to_user": "nathinbutler", "to_user_id": 319379850, "to_user_id_str": "319379850", "to_user_name": "Nathin Art Butler", "in_reply_to_status_id": 148834110041882620, "in_reply_to_status_id_str": "148834110041882624"}, +{"created_at": "Mon, 19 Dec 2011 18:59:12 +0000", "from_user": "young1_lj12", "from_user_id": 255364196, "from_user_id_str": "255364196", "from_user_name": "jessica mayo", "geo": null, "id": 148839819508850700, "id_str": "148839819508850688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "@SincerelyNell_ lol yeah u was n talkin bout driving i had fun though....", "to_user": "SincerelyNell_", "to_user_id": 90265801, "to_user_id_str": "90265801", "to_user_name": "Janelle Knights"}, +{"created_at": "Mon, 19 Dec 2011 18:59:12 +0000", "from_user": "Yomsdale", "from_user_id": 189515119, "from_user_id_str": "189515119", "from_user_name": "Osiyemi Oluwayomi", "geo": null, "id": 148839818720329730, "id_str": "148839818720329728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1572116611/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572116611/image_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "I want to leave benin but there is too much fun,no lekki traffic,no lekki to gate to pay...**im confused**but can I miss rhythm unplugged", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:12 +0000", "from_user": "badsparkplug1", "from_user_id": 386818502, "from_user_id_str": "386818502", "from_user_name": "palmateer", "geo": null, "id": 148839818305085440, "id_str": "148839818305085440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "In All Kinds of Weather, Kids Make Music Sunny, Stormy, and Always Fun Music Activities for\\u2026 http://t.co/NqoazD1i", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:12 +0000", "from_user": "820cham", "from_user_id": 169720359, "from_user_id_str": "169720359", "from_user_name": "820CHAM", "geo": null, "id": 148839817919205380, "id_str": "148839817919205376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1084004168/820chamlogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1084004168/820chamlogo_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Look at how much fun we are having with these Red Solo Cups in the office! :) http://t.co/JI0ydA8K", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:12 +0000", "from_user": "SoWhatIfWe", "from_user_id": 441068639, "from_user_id_str": "441068639", "from_user_name": "So What", "geo": null, "id": 148839817306837000, "id_str": "148839817306836993", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702570128/2454154428_So20What_answer_3_xlarge_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702570128/2454154428_So20What_answer_3_xlarge_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "So What If Someone is Slow, Don't Make Fun Of Them.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:12 +0000", "from_user": "lizDUHfriz", "from_user_id": 34823555, "from_user_id_str": "34823555", "from_user_name": "liz n", "geo": null, "id": 148839817126490100, "id_str": "148839817126490112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1592796549/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592796549/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@MrChrisRene love you Chris!!! Have fun at the press conference!!!!", "to_user": "MrChrisRene", "to_user_id": 389155479, "to_user_id_str": "389155479", "to_user_name": "Chris Rene", "in_reply_to_status_id": 148839332311072770, "in_reply_to_status_id_str": "148839332311072768"}, +{"created_at": "Mon, 19 Dec 2011 18:59:12 +0000", "from_user": "OoOLaLaAlynaaa", "from_user_id": 168041106, "from_user_id_str": "168041106", "from_user_name": "Alyna S.", "geo": null, "id": 148839816673501200, "id_str": "148839816673501187", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693792051/IBdom5Lm_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693792051/IBdom5Lm_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "@DOPEITSKAY ; Lol Shoot Id Be Excited Too, Have Fun!", "to_user": "DOPEITSKAY", "to_user_id": 77843042, "to_user_id_str": "77843042", "to_user_name": "Kaylin Christina E.", "in_reply_to_status_id": 148839434303963140, "in_reply_to_status_id_str": "148839434303963138"}, +{"created_at": "Mon, 19 Dec 2011 18:59:12 +0000", "from_user": "JoBrezzy", "from_user_id": 223637483, "from_user_id_str": "223637483", "from_user_name": "Jojo Ac", "geo": null, "id": 148839816518307840, "id_str": "148839816518307840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690335960/ECdoc7j6_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690335960/ECdoc7j6_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@BlowMyTweetss and you guys were making fun of me over the summer ;", "to_user": "BlowMyTweetss", "to_user_id": 347610723, "to_user_id_str": "347610723", "to_user_name": "Thug Life :#", "in_reply_to_status_id": 148836478569549820, "in_reply_to_status_id_str": "148836478569549824"}, +{"created_at": "Mon, 19 Dec 2011 18:59:11 +0000", "from_user": "_LifeOfAmbition", "from_user_id": 235848358, "from_user_id_str": "235848358", "from_user_name": "DAV0NTA PRICE", "geo": null, "id": 148839813221593100, "id_str": "148839813221593088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697520725/gw9Kp11O_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697520725/gw9Kp11O_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Me and dro walking with the college girls at the mall lol we havin fun yo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:11 +0000", "from_user": "luna26062000", "from_user_id": 440068009, "from_user_id_str": "440068009", "from_user_name": "luna26062000", "geo": null, "id": 148839813074784260, "id_str": "148839813074784256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702615302/herze_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702615302/herze_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Big Time Rush was full of fun today. : D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:11 +0000", "from_user": "KrissyLewie", "from_user_id": 440081777, "from_user_id_str": "440081777", "from_user_name": "Kristin Lewis", "geo": null, "id": 148839812839899140, "id_str": "148839812839899136", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700258595/5078453162_81f69cd2ae_normal.jpg", "profile_image_url_https": null, "source": "<a href="http://twitter.com/">web</a>", "text": "innuendos are fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:10 +0000", "from_user": "FuntasticChicka", "from_user_id": 439646746, "from_user_id_str": "439646746", "from_user_name": "Martine Guitard", "geo": null, "id": 148839811271241730, "id_str": "148839811271241730", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702479396/263090_10150284769161413_709356412_9596969_5922339_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702479396/263090_10150284769161413_709356412_9596969_5922339_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@goldstaarr oufff, god to complicated for me lol I just want to build or do something for fun.", "to_user": "goldstaarr", "to_user_id": 352409570, "to_user_id_str": "352409570", "to_user_name": "sammy", "in_reply_to_status_id": 148839224047714300, "in_reply_to_status_id_str": "148839224047714305"}, +{"created_at": "Mon, 19 Dec 2011 18:59:10 +0000", "from_user": "juelzx84", "from_user_id": 368459146, "from_user_id_str": "368459146", "from_user_name": "Juelz Xavi", "geo": null, "id": 148839811044749300, "id_str": "148839811044749314", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690851422/IMG00295-20110813-1753_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690851422/IMG00295-20110813-1753_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @realcormega: yo life is real somebody got robbed outside the grocery store for $150 worth of groceries everything aint popping bottles and fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:10 +0000", "from_user": "plocekpedlq2", "from_user_id": 377177265, "from_user_id_str": "377177265", "from_user_name": "Plocek Reed", "geo": null, "id": 148839811027963900, "id_str": "148839811027963905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1552621017/imagesCAJ4V6SJ_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552621017/imagesCAJ4V6SJ_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "fabledpantheon Haha! That sounds cute. As much fun that would be, I can't make any promises. No idea4RPmQt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:10 +0000", "from_user": "temibiggs", "from_user_id": 193628471, "from_user_id_str": "193628471", "from_user_name": "Temitope ", "geo": null, "id": 148839810491093000, "id_str": "148839810491092992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1665060809/330639488_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665060809/330639488_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "it was fun all d way RT @Joyellie: RT it was great, urs? @biggs: am over happy, ow was ur wkend RT @Joyellie: RT. Lool now I'm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:10 +0000", "from_user": "CliffsEsport", "from_user_id": 388088647, "from_user_id_str": "388088647", "from_user_name": "Cliff'sEsportCorner", "geo": null, "id": 148839809954230270, "id_str": "148839809954230272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1582149814/IMG-20111010-00185_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1582149814/IMG-20111010-00185_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @csn_johnclark: New School Mondays S2#1 StarCraft II Amateur Cup http://t.co/pwpBVaGc via @cybersportsnet - More $, Better Odds & more fun then other Dailys", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:10 +0000", "from_user": "brianrobles6", "from_user_id": 367600465, "from_user_id_str": "367600465", "from_user_name": "brian robles", "geo": null, "id": 148839809434136580, "id_str": "148839809434136576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1661869800/Picture0055_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661869800/Picture0055_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @weEKendproblms: I wonder #WhatHappened2 being young and having fun, not being young and having kids", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:10 +0000", "from_user": "SpaceCadetJay", "from_user_id": 133389396, "from_user_id_str": "133389396", "from_user_name": "J-Kidd \\u00D8\\u0192W6K\\u253C\\u25B2", "geo": null, "id": 148839809312493570, "id_str": "148839809312493571", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1648936448/spacecadetjay_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648936448/spacecadetjay_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @AriesDailyScope: #Aries don't deal with stupid people, unless we are in the mood for a little fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:10 +0000", "from_user": "The__Prototype", "from_user_id": 49787995, "from_user_id_str": "49787995", "from_user_name": "Tevin Byrd", "geo": null, "id": 148839807211151360, "id_str": "148839807211151360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680102596/Proto_in_Versailles_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680102596/Proto_in_Versailles_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "The kind of lives they live are not for me. They're miserable, shady, grimy, full of drama, and hateful. Have fun with that.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:09 +0000", "from_user": "CMB_Rohan", "from_user_id": 353835876, "from_user_id_str": "353835876", "from_user_name": "Luke Rohan", "geo": null, "id": 148839806804312060, "id_str": "148839806804312066", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1610085046/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610085046/image_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Nobody should take twitter that serious \\nIt's just a fun thing", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:09 +0000", "from_user": "MiraSovietha", "from_user_id": 436768721, "from_user_id_str": "436768721", "from_user_name": "Miranda Onix Sovieth", "geo": null, "id": 148839805873168400, "id_str": "148839805873168386", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692997148/BLUE_Is_My_Favorite_Color_by_elrothiel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692997148/BLUE_Is_My_Favorite_Color_by_elrothiel_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Bros: Make fun of him and he\\u2019ll punch you in the face - guidos bros douchebags fratboys - Bros: Make... http://t.co/Qdy9UC9C #TeamFollowBack", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:09 +0000", "from_user": "A_TrackFiend", "from_user_id": 372080321, "from_user_id_str": "372080321", "from_user_name": "Alfredo Chavez Jr", "geo": null, "id": 148839805483098100, "id_str": "148839805483098112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700787561/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700787561/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "On my way to practice this should be fun!! #dedication", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:09 +0000", "from_user": "mkmfum_", "from_user_id": 347104624, "from_user_id_str": "347104624", "from_user_name": "\\u221A Mich\\u00E5el Mfum", "geo": null, "id": 148839805055283200, "id_str": "148839805055283201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1561331991/Photo_on_26-09-2011_at_21.16_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1561331991/Photo_on_26-09-2011_at_21.16_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@jadevousaime lool.. i just know how 2. incase of emergency but i dont drive for fun and all.. they think its cool to drive . :)", "to_user": "jadevousaime", "to_user_id": 390151105, "to_user_id_str": "390151105", "to_user_name": "Jade Kankam", "in_reply_to_status_id": 148839315064098800, "in_reply_to_status_id_str": "148839315064098816"}, +{"created_at": "Mon, 19 Dec 2011 18:59:08 +0000", "from_user": "Luna_Cake", "from_user_id": 330580674, "from_user_id_str": "330580674", "from_user_name": "Deniza \\u03DF", "geo": null, "id": 148839802949734400, "id_str": "148839802949734400", "iso_language_code": "is", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682922209/IMG_7325_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682922209/IMG_7325_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "fun fun fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:08 +0000", "from_user": "SamOliver2904", "from_user_id": 25905841, "from_user_id_str": "25905841", "from_user_name": "Sam Oliver", "geo": null, "id": 148839802358337540, "id_str": "148839802358337536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1663163445/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663163445/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@WholeLottaUna @nvsofficial @thesaturdays have fun babygirl!!! Miss you! Xxx", "to_user": "WholeLottaUna", "to_user_id": 82679109, "to_user_id_str": "82679109", "to_user_name": "Nicci\\u2665", "in_reply_to_status_id": 148838465306505200, "in_reply_to_status_id_str": "148838465306505216"}, +{"created_at": "Mon, 19 Dec 2011 18:59:08 +0000", "from_user": "girloman13", "from_user_id": 278722972, "from_user_id_str": "278722972", "from_user_name": "zahraa sultan", "geo": null, "id": 148839802203148300, "id_str": "148839802203148288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1618679002/water_fountain_acrylic_painting_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618679002/water_fountain_acrylic_painting_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@innocentbullet oooh ok have fun downloading (lol)", "to_user": "innocentbullet", "to_user_id": 141262314, "to_user_id_str": "141262314", "to_user_name": "\\uBBF8\\uACBD \\u25AA \\uFF4D\\uFF49\\uFF4B\\uFF49", "in_reply_to_status_id": 148839375193653250, "in_reply_to_status_id_str": "148839375193653248"}, +{"created_at": "Mon, 19 Dec 2011 18:59:08 +0000", "from_user": "LorInBigD", "from_user_id": 20262504, "from_user_id_str": "20262504", "from_user_name": "Laura Schulte", "geo": null, "id": 148839801515282430, "id_str": "148839801515282432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1663068305/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663068305/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@stopthewave I hope so! Those are always fun!", "to_user": "stopthewave", "to_user_id": 38671135, "to_user_id_str": "38671135", "to_user_name": "Greg", "in_reply_to_status_id": 148833279812964350, "in_reply_to_status_id_str": "148833279812964354"}, +{"created_at": "Mon, 19 Dec 2011 18:59:07 +0000", "from_user": "LighterKick", "from_user_id": 302957810, "from_user_id_str": "302957810", "from_user_name": "Tyler Kicklighter", "geo": null, "id": 148839798147268600, "id_str": "148839798147268608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1420813285/Prairie_20Grove-20110625-00091_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1420813285/Prairie_20Grove-20110625-00091_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Don't make fun of a fat guy with a lisp, he's probably thick and tired of it. Hah.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:07 +0000", "from_user": "LauraBarajas1", "from_user_id": 288513217, "from_user_id_str": "288513217", "from_user_name": "Laura Barajas", "geo": null, "id": 148839797211922430, "id_str": "148839797211922432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1644862615/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644862615/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I actually ran yesterday , for fun :o", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:07 +0000", "from_user": "AmeliaBardot", "from_user_id": 358080978, "from_user_id_str": "358080978", "from_user_name": "Amelia Bardot", "geo": null, "id": 148839796419215360, "id_str": "148839796419215361", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1637065109/IMG00043-20110626-1603_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637065109/IMG00043-20110626-1603_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@KLM1 thank you(!!)to you and those other Sherbrooke road girls for the festive fun on Saturday eve. NOW! I am warmed up for Christmas!xx", "to_user": "KLM1", "to_user_id": 259424371, "to_user_id_str": "259424371", "to_user_name": "x k i r s t y x"}, +{"created_at": "Mon, 19 Dec 2011 18:59:07 +0000", "from_user": "MrsEmaBaby", "from_user_id": 435161429, "from_user_id_str": "435161429", "from_user_name": "Nyema Hameed", "geo": null, "id": 148839795949441020, "id_str": "148839795949441024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702606713/images-11_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702606713/images-11_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "Im in skool having fun in computers", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:07 +0000", "from_user": "KiviaFlorencio_", "from_user_id": 63859733, "from_user_id_str": "63859733", "from_user_name": "K\\u00EDvia Mendon\\u00E7a", "geo": null, "id": 148839795660038140, "id_str": "148839795660038144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676294979/tt_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676294979/tt_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Oh, girls just wanna have fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:07 +0000", "from_user": "HannahWalter79", "from_user_id": 348747154, "from_user_id_str": "348747154", "from_user_name": "Hannah Walter", "geo": null, "id": 148839795135754240, "id_str": "148839795135754240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700674123/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700674123/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@ConnorCallison that would be so fun! But I think it's full for 10th-12th graders :(", "to_user": "ConnorCallison", "to_user_id": 149959755, "to_user_id_str": "149959755", "to_user_name": "Connor Callison"}, +{"created_at": "Mon, 19 Dec 2011 18:59:07 +0000", "from_user": "IamLatoyaD", "from_user_id": 225865068, "from_user_id_str": "225865068", "from_user_name": "Toyaa! xx", "geo": null, "id": 148839795043471360, "id_str": "148839795043471361", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1663894192/447860416_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663894192/447860416_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@MarcuscollinsUK Have fun! :) xx", "to_user": "MarcuscollinsUK", "to_user_id": 370448015, "to_user_id_str": "370448015", "to_user_name": "Marcus Collins", "in_reply_to_status_id": 148839438309527550, "in_reply_to_status_id_str": "148839438309527553"}, +{"created_at": "Mon, 19 Dec 2011 18:59:07 +0000", "from_user": "stoutemeiden", "from_user_id": 396769140, "from_user_id_str": "396769140", "from_user_name": "Stoute Meiden", "geo": null, "id": 148839794762461200, "id_str": "148839794762461184", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1603085534/girls_kissing_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1603085534/girls_kissing_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#stout bamby (25) uit Laren - Lief, zacht, af en toe een beetje ondeugend, meelevend, sociaal, fun to be with. Dat... http://t.co/A7w4cT8p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:06 +0000", "from_user": "tin_ashley", "from_user_id": 310913586, "from_user_id_str": "310913586", "from_user_name": "tinashe mlambo", "geo": null, "id": 148839794254954500, "id_str": "148839794254954496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1666288410/DSC00043_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666288410/DSC00043_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@TeeEnWhy it aint fun wen every one of ur players are ike 85+ nd u still can't win...", "to_user": "TeeEnWhy", "to_user_id": 235681474, "to_user_id_str": "235681474", "to_user_name": "Tia TimCash Nyakabau", "in_reply_to_status_id": 148828332111310850, "in_reply_to_status_id_str": "148828332111310848"}, +{"created_at": "Mon, 19 Dec 2011 18:59:06 +0000", "from_user": "no0ony1325", "from_user_id": 241195615, "from_user_id_str": "241195615", "from_user_name": "noor ", "geo": null, "id": 148839793554505730, "id_str": "148839793554505729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1589609281/Maryam_20alansari-_20dp_3Bnoor_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1589609281/Maryam_20alansari-_20dp_3Bnoor_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Had fun with @Al_MaKnToShA. And @Shaikha_MRM. <3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:06 +0000", "from_user": "ImACES21", "from_user_id": 35375451, "from_user_id_str": "35375451", "from_user_name": "Aces", "geo": null, "id": 148839793290264580, "id_str": "148839793290264576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1637984734/ImACES21_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637984734/ImACES21_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@Miss_Steffy_Bby Vegas was fun, left a whole lot of money there but hey \"you only live once\". Any plans for today?", "to_user": "Miss_Steffy_Bby", "to_user_id": 198624240, "to_user_id_str": "198624240", "to_user_name": "...", "in_reply_to_status_id": 148836885014392830, "in_reply_to_status_id_str": "148836885014392832"}, +{"created_at": "Mon, 19 Dec 2011 18:59:06 +0000", "from_user": "covernewsinfo", "from_user_id": 20792440, "from_user_id_str": "20792440", "from_user_name": "CoverNews.info", "geo": null, "id": 148839792564637700, "id_str": "148839792564637696", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1616724484/logoconredes_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616724484/logoconredes_normal.jpg", "source": "<a href="http://fun.ly" rel="nofollow">fun.ly</a>", "text": "Aulas Abiertas Virtuales de Nueva Escuela de Dise\\u00F1o y Comunicaci\\u00F3n http://t.co/BTpnSf4U", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:06 +0000", "from_user": "MPWhaley", "from_user_id": 321665488, "from_user_id_str": "321665488", "from_user_name": "Michael Whaley", "geo": null, "id": 148839792514310140, "id_str": "148839792514310144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1534391811/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534391811/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Cold and rainy is my least favorite weather. On the #brightside it's fun to drive in. #fishtail @cjray2293 know what I'm talking about?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:06 +0000", "from_user": "TheStudioBPhoto", "from_user_id": 58306363, "from_user_id_str": "58306363", "from_user_name": "Rebecca Enslein", "geo": null, "id": 148839791293775870, "id_str": "148839791293775873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1312433263/DSC_0084_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312433263/DSC_0084_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Had a mailbox filled with only Christmas cards today! What fun!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:06 +0000", "from_user": "iLoveMissBri", "from_user_id": 378143779, "from_user_id_str": "378143779", "from_user_name": "\\u265BKing B\\u265B", "geo": null, "id": 148839791033724930, "id_str": "148839791033724930", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674203296/267260_10150257794900669_504585668_7608445_3103961_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674203296/267260_10150257794900669_504585668_7608445_3103961_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@FacetStudio lol we had fun...kinda scared to c what the videographer recorded on that lil camera he was runnin around with : /", "to_user": "FacetStudio", "to_user_id": 76266867, "to_user_id_str": "76266867", "to_user_name": "Suliman Facet Hasan", "in_reply_to_status_id": 148838493609668600, "in_reply_to_status_id_str": "148838493609668608"}, +{"created_at": "Mon, 19 Dec 2011 18:59:05 +0000", "from_user": "domemeuppp", "from_user_id": 223203939, "from_user_id_str": "223203939", "from_user_name": "dominique tinoco \\u0950 ", "geo": null, "id": 148839790266167300, "id_str": "148839790266167296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688132761/dominique_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688132761/dominique_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @desiraetinoco: Last night was fun with the homies @Ann_theReal @_YoungVeggies_ @domemeuppp @esMEECHO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:05 +0000", "from_user": "KarliGlitter", "from_user_id": 274201135, "from_user_id_str": "274201135", "from_user_name": "Karli Anne Sherman", "geo": null, "id": 148839789506998270, "id_str": "148839789506998273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1292019670/IMG_0255_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1292019670/IMG_0255_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@KatieLetcher: Getting my oil changed & there are some verrry cute country boys just walked in\\u201D Steal them! What a fun \"how we met\" story..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:05 +0000", "from_user": "kaylindal", "from_user_id": 19292556, "from_user_id_str": "19292556", "from_user_name": "Kaylin Dalrymple", "geo": null, "id": 148839788487778300, "id_str": "148839788487778304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1614790389/me2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1614790389/me2_normal.png", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @DisneyParks: Fun Fact: Walt Disney World is decorated with 1,314 wreaths this year! #DisneyHolidays", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:05 +0000", "from_user": "mumoffunkids", "from_user_id": 314398235, "from_user_id_str": "314398235", "from_user_name": "Katherine Aitken", "geo": null, "id": 148839788085129200, "id_str": "148839788085129216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Jelly Baby Giveaway @findmeagift fun stuff for little tums #competition #win http://t.co/JjyIiE5b", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:05 +0000", "from_user": "MADDLYinlove17", "from_user_id": 350608072, "from_user_id_str": "350608072", "from_user_name": "Maddy Mitchell", "geo": null, "id": 148839787716018180, "id_str": "148839787716018176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662490283/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662490283/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @WizKhalllifa: #IWasThatKid that covered my hands in glue , let it dry , and then peeled it off for fun...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:05 +0000", "from_user": "Laprimapagina", "from_user_id": 225872290, "from_user_id_str": "225872290", "from_user_name": "La Prima Pagina", "geo": null, "id": 148839786747133950, "id_str": "148839786747133953", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1612472331/laprimapagina_nuovo_logo_mini_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612472331/laprimapagina_nuovo_logo_mini_normal.jpg", "source": "<a href="http://fun.ly" rel="nofollow">fun.ly</a>", "text": "Sotto l'albero il primato sfida diretta tra Juve e Udinese http://t.co/ghdf6qBo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:05 +0000", "from_user": "Ashleighlench1", "from_user_id": 286939255, "from_user_id_str": "286939255", "from_user_name": "Ashleigh lench", "geo": null, "id": 148839786671644670, "id_str": "148839786671644672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1578064541/IMG00346-20111007-1427_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1578064541/IMG00346-20111007-1427_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@eloiseJLS_1D have fun tonight even though I'm hating on you right now! Haha x x", "to_user": "eloiseJLS_1D", "to_user_id": 184048981, "to_user_id_str": "184048981", "to_user_name": "eloise styles."}, +{"created_at": "Mon, 19 Dec 2011 18:59:04 +0000", "from_user": "LadyJanis", "from_user_id": 50688363, "from_user_id_str": "50688363", "from_user_name": "Lady Janis", "geo": null, "id": 148839785715347460, "id_str": "148839785715347456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/932309086/MDH-Bild_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/932309086/MDH-Bild_normal.jpg", "source": "<a href="http://fun.ly" rel="nofollow">fun.ly</a>", "text": "MAKE a WISH! http://t.co/INH4YmQz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:04 +0000", "from_user": "mattpoole5", "from_user_id": 287923742, "from_user_id_str": "287923742", "from_user_name": "Matt Poole", "geo": null, "id": 148839784297668600, "id_str": "148839784297668608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1580201533/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580201533/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I was heftily eating my way through a big bag of Haribo during my gym session, fun stuff but...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:04 +0000", "from_user": "ImGlenda", "from_user_id": 56293774, "from_user_id_str": "56293774", "from_user_name": "Glenda Micu ", "geo": null, "id": 148839783676903420, "id_str": "148839783676903425", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1620096610/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620096610/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Waiting isn't as fun as I thought... #tastingmyownmedicine =\\ @PGJReyes hurry upppp!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:03 +0000", "from_user": "Emb3rSil", "from_user_id": 18568639, "from_user_id_str": "18568639", "from_user_name": "DanteDouglas", "geo": null, "id": 148839779134484480, "id_str": "148839779134484480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1383562310/Mal_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1383562310/Mal_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Also, if you don't have it yet, Orcs Must Die is a very fun Tower Defense/Horde Mode type game, incredibly fun. Go buy it.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:02 +0000", "from_user": "ILikePieAndMcr", "from_user_id": 180898153, "from_user_id_str": "180898153", "from_user_name": "Geezy Way", "geo": null, "id": 148839777674866700, "id_str": "148839777674866690", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1602532104/Chlidiss_shorty_ey_frank__x_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1602532104/Chlidiss_shorty_ey_frank__x_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@WorldGayPride http://t.co/dw15MXe3 Please read this. This is a disgusting, about making fun f gays, and everything. :(", "to_user": "WorldGayPride", "to_user_id": 266655138, "to_user_id_str": "266655138", "to_user_name": "GayPrideQuotes"}, +{"created_at": "Mon, 19 Dec 2011 18:59:02 +0000", "from_user": "suzie_kennedy", "from_user_id": 28565249, "from_user_id_str": "28565249", "from_user_name": "Suzanne Kennedy", "geo": null, "id": 148839777335115780, "id_str": "148839777335115777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701305281/Photo_on_09-12-2011_at_19_Instant_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701305281/Photo_on_09-12-2011_at_19_Instant_1_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @MODSUN: Dude, my life is so fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:02 +0000", "from_user": "Butterfly_bi", "from_user_id": 411867707, "from_user_id_str": "411867707", "from_user_name": "foxy", "geo": null, "id": 148839775971971070, "id_str": "148839775971971072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1637743696/mariposaazul_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637743696/mariposaazul_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "42%OFF #deal $5.79 Think Fun Math Dice #toys #xmas http://t.co/tTCGTKvR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:02 +0000", "from_user": "NeuroticCare", "from_user_id": 392091480, "from_user_id_str": "392091480", "from_user_name": "Caroline Forbes", "geo": null, "id": 148839775888093200, "id_str": "148839775888093184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693999731/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693999731/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I'm gonna cry :( all those good times making fun of Damon..and a drop in the ocean playing nonstop.. :'( I'll miss you shorty :( a whole lot", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:02 +0000", "from_user": "reece_cookieee", "from_user_id": 308254247, "from_user_id_str": "308254247", "from_user_name": "Amber Reece", "geo": null, "id": 148839775237980160, "id_str": "148839775237980160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664117348/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664117348/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @ratedRSR: had a fun morning ..i have some great friends hehe ..jealous?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:02 +0000", "from_user": "Isaiahs_Bff", "from_user_id": 104890351, "from_user_id_str": "104890351", "from_user_name": "Reagan :)", "geo": null, "id": 148839774688509950, "id_str": "148839774688509953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1629417082/4lGBrpTm_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629417082/4lGBrpTm_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@HAYB3KiLLiN3M I wanna play with y'all...its fun playing with people that I can actually kill", "to_user": "HAYB3KiLLiN3M", "to_user_id": 319254980, "to_user_id_str": "319254980", "to_user_name": "Haley Elizabeth Rice", "in_reply_to_status_id": 148838786095263740, "in_reply_to_status_id_str": "148838786095263744"}, +{"created_at": "Mon, 19 Dec 2011 18:59:02 +0000", "from_user": "luvbabyb", "from_user_id": 22092979, "from_user_id_str": "22092979", "from_user_name": "Wan-nabe", "geo": null, "id": 148839774663360500, "id_str": "148839774663360513", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657269278/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657269278/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Tosatot haha! Well, your project was a lot more complicated than plain ol' cookies! I bet it was fun though :)", "to_user": "Tosatot", "to_user_id": 188370685, "to_user_id_str": "188370685", "to_user_name": "Tosatot", "in_reply_to_status_id": 148839488364363780, "in_reply_to_status_id_str": "148839488364363776"}, +{"created_at": "Mon, 19 Dec 2011 18:59:01 +0000", "from_user": "dirtyROSEWOOD", "from_user_id": 345089040, "from_user_id_str": "345089040", "from_user_name": "Mike BallGreezy", "geo": null, "id": 148839773413457920, "id_str": "148839773413457920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699791119/AZ5GCZVCMAEZOFo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699791119/AZ5GCZVCMAEZOFo_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "That Saturday night in BankHead >>>> Most fun ive ever had", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:01 +0000", "from_user": "LanceAPetersen", "from_user_id": 14233339, "from_user_id_str": "14233339", "from_user_name": "Lance A Petersen", "geo": null, "id": 148839773031768060, "id_str": "148839773031768064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1478208651/221771_1897091101865_1079236263_2160508_7101396_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1478208651/221771_1897091101865_1079236263_2160508_7101396_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Is still on air . Stream in and have some fun with ... www.viberadiosa.com", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:01 +0000", "from_user": "swirlymurphy", "from_user_id": 93636370, "from_user_id_str": "93636370", "from_user_name": "Amanda Perry", "geo": null, "id": 148839769651154940, "id_str": "148839769651154944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1604964441/zU4y92nb_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1604964441/zU4y92nb_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "Off to Sainsbury's this evening for The Big Food Shop....taking the teenagers to push trollies. Oh this will be such fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:00 +0000", "from_user": "BoppinTots", "from_user_id": 234446956, "from_user_id_str": "234446956", "from_user_name": "Siobhan Barr", "geo": null, "id": 148839768749383680, "id_str": "148839768749383681", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1208345440/Boppintotslogo_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1208345440/Boppintotslogo_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "@localbuilderuk Ha, no winding down for Xmas for you then Mr! Have fun, think of the joy you will bring them for Xmas day :-)", "to_user": "localbuilderuk", "to_user_id": 58433056, "to_user_id_str": "58433056", "to_user_name": "John Harrington", "in_reply_to_status_id": 148809338973200400, "in_reply_to_status_id_str": "148809338973200384"}, +{"created_at": "Mon, 19 Dec 2011 18:59:00 +0000", "from_user": "SDGemmill", "from_user_id": 136590052, "from_user_id_str": "136590052", "from_user_name": "Scott Gemmill", "geo": null, "id": 148839767889559550, "id_str": "148839767889559552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/903706513/s_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/903706513/s_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Started a fun project with the kids last night, writing a page on each day of our summer vacation. Encourages kids to do cool stuff...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:00 +0000", "from_user": "BasmaAlnamlah", "from_user_id": 252871445, "from_user_id_str": "252871445", "from_user_name": "Basma Alnamlah", "geo": null, "id": 148839767763722240, "id_str": "148839767763722240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702546889/BasmaAlnamlah_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702546889/BasmaAlnamlah_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@Ishaq_Ishaq for fun ? what fun exactly the only place I see Bahrainis are at Ikea .. Where's the fun in that ? :p", "to_user": "Ishaq_Ishaq", "to_user_id": 289575553, "to_user_id_str": "289575553", "to_user_name": "Ishaq Ishaq", "in_reply_to_status_id": 148839350472413200, "in_reply_to_status_id_str": "148839350472413184"}, +{"created_at": "Mon, 19 Dec 2011 18:58:59 +0000", "from_user": "adamwo96", "from_user_id": 51031261, "from_user_id_str": "51031261", "from_user_name": "Adam Wolstenholme", "geo": +{"coordinates": [53.7827,-3.0318], "type": "Point"}, "id": 148839764949340160, "id_str": "148839764949340160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1667967685/tumblr_lvj681CVMN1qh9km5o1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667967685/tumblr_lvj681CVMN1qh9km5o1_500_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@bomec_whatelse you never get a break?! Je mourais D: It would be fun to do modelling in Paris though! Tu doit \\u00EAtre pro \\u00E0 travailler l\\u00E0!", "to_user": "bomec_whatelse", "to_user_id": 399306250, "to_user_id_str": "399306250", "to_user_name": "Julien a le Swag \\u2665\\u2020", "in_reply_to_status_id": 148838813257572350, "in_reply_to_status_id_str": "148838813257572352"}, +{"created_at": "Mon, 19 Dec 2011 18:58:59 +0000", "from_user": "TayyyMeritheww", "from_user_id": 281932370, "from_user_id_str": "281932370", "from_user_name": "Taylor Merithew ", "geo": null, "id": 148839764131463170, "id_str": "148839764131463168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681535513/g0ixuvtG_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681535513/g0ixuvtG_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@A_Wagss i gotcha now haha well have fun be safe (: drink one for me!", "to_user": "A_Wagss", "to_user_id": 358849758, "to_user_id_str": "358849758", "to_user_name": "Alisha Wagner ", "in_reply_to_status_id": 148833300352483330, "in_reply_to_status_id_str": "148833300352483328"}, +{"created_at": "Mon, 19 Dec 2011 18:58:58 +0000", "from_user": "GetMoreAutos", "from_user_id": 280328916, "from_user_id_str": "280328916", "from_user_name": "Get More Autos", "geo": null, "id": 148839757437349900, "id_str": "148839757437349888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1553370016/1w_640_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553370016/1w_640_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "FUN FACT: \\nThe first automobile law was passed by the state of CT in 1901. The speed limit was set at 12 miles per hour", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:58:59 +0000", "from_user": "adamwo96", "from_user_id": 51031261, "from_user_id_str": "51031261", "from_user_name": "Adam Wolstenholme", "geo": +{"coordinates": [53.7827,-3.0318], "type": "Point"}, "id": 148839764949340160, "id_str": "148839764949340160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1667967685/tumblr_lvj681CVMN1qh9km5o1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667967685/tumblr_lvj681CVMN1qh9km5o1_500_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@bomec_whatelse you never get a break?! Je mourais D: It would be fun to do modelling in Paris though! Tu doit \\u00EAtre pro \\u00E0 travailler l\\u00E0!", "to_user": "bomec_whatelse", "to_user_id": 399306250, "to_user_id_str": "399306250", "to_user_name": "Julien a le Swag \\u2665\\u2020", "in_reply_to_status_id": 148838813257572350, "in_reply_to_status_id_str": "148838813257572352"}, +{"created_at": "Mon, 19 Dec 2011 18:58:59 +0000", "from_user": "TayyyMeritheww", "from_user_id": 281932370, "from_user_id_str": "281932370", "from_user_name": "Taylor Merithew ", "geo": null, "id": 148839764131463170, "id_str": "148839764131463168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681535513/g0ixuvtG_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681535513/g0ixuvtG_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@A_Wagss i gotcha now haha well have fun be safe (: drink one for me!", "to_user": "A_Wagss", "to_user_id": 358849758, "to_user_id_str": "358849758", "to_user_name": "Alisha Wagner ", "in_reply_to_status_id": 148833300352483330, "in_reply_to_status_id_str": "148833300352483328"}, +{"created_at": "Mon, 19 Dec 2011 18:58:58 +0000", "from_user": "GetMoreAutos", "from_user_id": 280328916, "from_user_id_str": "280328916", "from_user_name": "Get More Autos", "geo": null, "id": 148839757437349900, "id_str": "148839757437349888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1553370016/1w_640_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553370016/1w_640_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "FUN FACT: \\nThe first automobile law was passed by the state of CT in 1901. The speed limit was set at 12 miles per hour", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:57 +0000", "from_user": "JustinSteeele", "from_user_id": 343582072, "from_user_id_str": "343582072", "from_user_name": "Justin Steele", "geo": null, "id": 148839756640423940, "id_str": "148839756640423936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674496663/IMG_2364_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674496663/IMG_2364_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@LindsaySaker aww poo that sounds like so much fun!!!!", "to_user": "LindsaySaker", "to_user_id": 290111104, "to_user_id_str": "290111104", "to_user_name": "Lindsay Saker"}, +{"created_at": "Mon, 19 Dec 2011 18:58:57 +0000", "from_user": "DaeDaeC9M", "from_user_id": 52386447, "from_user_id_str": "52386447", "from_user_name": "BAIT \\uE522 BAIT \\uE019 BAIT \\uE054", "geo": null, "id": 148839756330057730, "id_str": "148839756330057728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699506208/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699506208/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @_AshinKusherrr: Im quite an ignorant (insert racial slur) in public too. Thats how I have fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:57 +0000", "from_user": "TushAgbero", "from_user_id": 101958367, "from_user_id_str": "101958367", "from_user_name": "\\u2022S\\u2022O\\u2022Y\\u2022E\\u2022M\\u2022M\\u2022\\u2122", "geo": null, "id": 148839755721871360, "id_str": "148839755721871360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702529760/oyedepo_slap_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702529760/oyedepo_slap_normal.jpg", "source": "<a href="http://www.twitter.com" rel="nofollow">\\u0422witter for i\\u03A1hone</a>", "text": "RT @Switestberry: LoOOOOL! U must be fun den! RT @TushAgbero: She mentions me ONLY wen shez bored.. I guess I'm JUST a cure for boredom", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:57 +0000", "from_user": "LucieDrabinova", "from_user_id": 62347876, "from_user_id_str": "62347876", "from_user_name": "Lucie Drabinova", "geo": null, "id": 148839755361157120, "id_str": "148839755361157123", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1587040552/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587040552/image_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Go to Google and type: let it snow :-) so much fun :-) #smallThings #happy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:57 +0000", "from_user": "GThreads", "from_user_id": 153794751, "from_user_id_str": "153794751", "from_user_name": "Golden Threads", "geo": null, "id": 148839754866237440, "id_str": "148839754866237440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687178968/GThreads_logoETSY_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687178968/GThreads_logoETSY_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @Best_Of_Etsy: RT @customknitting2 Still time to knit up some gifts... check our knitting patterns http://t.co/s2gu11TJ #handmadebot #etsy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:57 +0000", "from_user": "chrisvandergaag", "from_user_id": 15699279, "from_user_id_str": "15699279", "from_user_name": "Side Mission Chris", "geo": +{"coordinates": [49.0308,-123.0703], "type": "Point"}, "id": 148839754522308600, "id_str": "148839754522308608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1641584480/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641584480/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Fun fact: it's 'il', not 2. As in \"the illest muthafuckin' dictata in the Pacific Rim, yo.\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:57 +0000", "from_user": "Jeanette_Lo", "from_user_id": 126495293, "from_user_id_str": "126495293", "from_user_name": "Jeanette Lopez", "geo": null, "id": 148839754169987070, "id_str": "148839754169987073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1673933834/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673933834/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "How fun was it seeing my favorite red-headed bombshell this weekend @FakeItFlawless :) You are a riot love!", "to_user": "FakeItFlawless", "to_user_id": 223642730, "to_user_id_str": "223642730", "to_user_name": "Faking it Flawless ", "in_reply_to_status_id": 148838592230334460, "in_reply_to_status_id_str": "148838592230334464"}, +{"created_at": "Mon, 19 Dec 2011 18:58:56 +0000", "from_user": "bbbreanna", "from_user_id": 321811341, "from_user_id_str": "321811341", "from_user_name": "breanna lopez", "geo": null, "id": 148839751934410750, "id_str": "148839751934410753", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697195449/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697195449/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "This guys telling me stories about how English was fun last year. I've never seen this kid in my life?!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:56 +0000", "from_user": "Warsameee", "from_user_id": 205562953, "from_user_id_str": "205562953", "from_user_name": "Dougley The Dragon", "geo": null, "id": 148839751561117700, "id_str": "148839751561117697", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691597583/King-20110725-00117_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691597583/King-20110725-00117_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @kaylovee_xo: i wish it was socially acceptable to fart in public and not get made fun of lol.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:56 +0000", "from_user": "LostN_TheMoment", "from_user_id": 223677518, "from_user_id_str": "223677518", "from_user_name": "malik brown", "geo": null, "id": 148839751384961020, "id_str": "148839751384961024", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700219701/IMG00201-20111212-2151_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700219701/IMG00201-20111212-2151_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@_KidNextDoor yay fun", "to_user": "_KidNextDoor", "to_user_id": 305253725, "to_user_id_str": "305253725", "to_user_name": "Serena.", "in_reply_to_status_id": 148839104375832580, "in_reply_to_status_id_str": "148839104375832576"}, +{"created_at": "Mon, 19 Dec 2011 18:58:56 +0000", "from_user": "CandaceJee", "from_user_id": 27363865, "from_user_id_str": "27363865", "from_user_name": "Candace", "geo": null, "id": 148839751246553100, "id_str": "148839751246553088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1653995914/Snapshot_20111122_1_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653995914/Snapshot_20111122_1_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@craysfa lmaooo, I'm guessing the appt wasn't fun?", "to_user": "craysfa", "to_user_id": 324121073, "to_user_id_str": "324121073", "to_user_name": "Chelsea Raymond", "in_reply_to_status_id": 148837958206763000, "in_reply_to_status_id_str": "148837958206763008"}, +{"created_at": "Mon, 19 Dec 2011 18:58:56 +0000", "from_user": "MickieRabil9045", "from_user_id": 439451076, "from_user_id_str": "439451076", "from_user_name": "Mickie Rabil", "geo": null, "id": 148839751225589760, "id_str": "148839751225589760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@concertchk 104 degrees outside?!? This calls for a Starbucks doubleshot good thing I have a $500 gift card http://t.co/CBiQtHo4", "to_user": "concertchk", "to_user_id": 269518169, "to_user_id_str": "269518169", "to_user_name": "Marjeana ", "in_reply_to_status_id": 148838961933062140, "in_reply_to_status_id_str": "148838961933062144"}, +{"created_at": "Mon, 19 Dec 2011 18:58:56 +0000", "from_user": "_uhmitsme", "from_user_id": 307155751, "from_user_id_str": "307155751", "from_user_name": "Kayla", "geo": null, "id": 148839750671941630, "id_str": "148839750671941632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701035894/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701035894/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@AEsp69 sounds fun ^__^", "to_user": "AEsp69", "to_user_id": 347097129, "to_user_id_str": "347097129", "to_user_name": "Amber Espinoza\\u2122\\t", "in_reply_to_status_id": 148839551551537150, "in_reply_to_status_id_str": "148839551551537152"}, +{"created_at": "Mon, 19 Dec 2011 18:58:56 +0000", "from_user": "zadreeko510", "from_user_id": 408202348, "from_user_id_str": "408202348", "from_user_name": "Zadran Ahmadzai", "geo": null, "id": 148839749040349200, "id_str": "148839749040349185", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1638231330/zandar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638231330/zandar_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "@on_quack haha eww come on! There has to be one fun thing. I wanna do walnut creek but thats still too much driving for me lol", "to_user": "on_quack", "to_user_id": 29626211, "to_user_id_str": "29626211", "to_user_name": "Hilay "}, +{"created_at": "Mon, 19 Dec 2011 18:58:56 +0000", "from_user": "tkilbournn", "from_user_id": 355984458, "from_user_id_str": "355984458", "from_user_name": "Tori Kilbourn", "geo": null, "id": 148839748566392830, "id_str": "148839748566392833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1641182286/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641182286/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Shopping later with dad this should be fun ha!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:55 +0000", "from_user": "kevbattleblood", "from_user_id": 128927626, "from_user_id_str": "128927626", "from_user_name": "Kevin Battleblood", "geo": null, "id": 148839747941445630, "id_str": "148839747941445632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1655796429/887fc42f-7da7-4b04-a796-e2247cc20e20_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655796429/887fc42f-7da7-4b04-a796-e2247cc20e20_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@cardmonglobal Loving the Billboard's Rewards system, and that one instance with 102 mobs was so much fun to play solo, though exhausting!", "to_user": "cardmonglobal", "to_user_id": 202976040, "to_user_id_str": "202976040", "to_user_name": "CardMon Hero Global"}, +{"created_at": "Mon, 19 Dec 2011 18:58:55 +0000", "from_user": "SonyChai", "from_user_id": 257807512, "from_user_id_str": "257807512", "from_user_name": "Sony Chai", "geo": null, "id": 148839746569900030, "id_str": "148839746569900033", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1260842215/IMG00020-20110227-2242_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1260842215/IMG00020-20110227-2242_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @my_supersoccer: Yang udah maen, mana suaranya? Yang belum, sekali lagi, ini link-nya: http://t.co/EH2eaaHh #SuperSoccerFantasyFootball", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:55 +0000", "from_user": "PROV31DeAndrea", "from_user_id": 25495329, "from_user_id_str": "25495329", "from_user_name": "De'Andrea", "geo": null, "id": 148839746414723070, "id_str": "148839746414723072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682296665/bday2011_crop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682296665/bday2011_crop_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "@DallasInThaH I'm talking about your previous tweet. \"It was fun while it lasted.\"", "to_user": "DallasInThaH", "to_user_id": 170135740, "to_user_id_str": "170135740", "to_user_name": "jason", "in_reply_to_status_id": 148834811887357950, "in_reply_to_status_id_str": "148834811887357952"}, +{"created_at": "Mon, 19 Dec 2011 18:58:55 +0000", "from_user": "Brinn688", "from_user_id": 366693153, "from_user_id_str": "366693153", "from_user_name": "Brinneth ", "geo": null, "id": 148839745835905020, "id_str": "148839745835905026", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686984645/IMG-20111209-00084_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686984645/IMG-20111209-00084_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Thatswhathesaid I am just fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:55 +0000", "from_user": "majomerlano", "from_user_id": 184008506, "from_user_id_str": "184008506", "from_user_name": "M\\u03B1jo\\u2665 \\u32E1", "geo": null, "id": 148839745429057540, "id_str": "148839745429057537", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688252100/100_006u0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688252100/100_006u0_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @britneyspears: Still glowing! About to jump on a plane to Planet Hollywood in Vegas. Throwing a Bday Party for Jason at Chateau Night Club. So fun. Xxoo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:55 +0000", "from_user": "aaronmatcham_", "from_user_id": 293503882, "from_user_id_str": "293503882", "from_user_name": "Aaron James", "geo": +{"coordinates": [51.352,-0.1332], "type": "Point"}, "id": 148839745047367680, "id_str": "148839745047367680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702617875/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702617875/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Last day off before the FUN begins :-/ 5 days of work!!! Let's get ready to rumble...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:55 +0000", "from_user": "AD_NICOLE", "from_user_id": 376928366, "from_user_id_str": "376928366", "from_user_name": "AdNicole", "geo": null, "id": 148839744690855940, "id_str": "148839744690855937", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1625391407/k1ivcAjz_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1625391407/k1ivcAjz_normal", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @IamRicoLove: Pretty girls have the most fun..... #TTLO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:55 +0000", "from_user": "Smexy_Vampire_", "from_user_id": 364453337, "from_user_id_str": "364453337", "from_user_name": "FireBlaster Raoby`n", "geo": null, "id": 148839744414023680, "id_str": "148839744414023681", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691675256/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691675256/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@RedRobinWayne Belive what you wanna belive bird boy.-turns around- Even Batmans more nice and fun than you-flies up with a red light trail-", "to_user": "RedRobinWayne", "to_user_id": 363927992, "to_user_id_str": "363927992", "to_user_name": "Timothy Wayne", "in_reply_to_status_id": 148839348299767800, "in_reply_to_status_id_str": "148839348299767809"}, +{"created_at": "Mon, 19 Dec 2011 18:58:54 +0000", "from_user": "xHeyItsAlly", "from_user_id": 285817340, "from_user_id_str": "285817340", "from_user_name": "Ally Lucas", "geo": null, "id": 148839743281573900, "id_str": "148839743281573888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695473670/Ally__Maddy__Meagan_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695473670/Ally__Maddy__Meagan_pic_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Shopping groups! Fun! Not! :(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:54 +0000", "from_user": "IamTeslim", "from_user_id": 230844410, "from_user_id_str": "230844410", "from_user_name": "AminuTeslim *Sleem9*", "geo": null, "id": 148839742790840320, "id_str": "148839742790840321", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701597792/331685926_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701597792/331685926_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Bcuz e neva slap n kick yu inside guta b4 abi. Hez fun tho RT @michelleogo: Y'all shuld plz Ff @TWEETORACLE! ... http://t.co/1BMGmgfT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:54 +0000", "from_user": "Guccii_2", "from_user_id": 411772951, "from_user_id_str": "411772951", "from_user_name": "Lauren main", "geo": null, "id": 148839742723723260, "id_str": "148839742723723264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1642351438/310733_10150302602448240_658753239_8100141_1627402820_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642351438/310733_10150302602448240_658753239_8100141_1627402820_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@unofficialharpz might not be yet, then again its not a fun night if im not collapsed on the stairs wheeeeey!", "to_user": "unofficialharpz", "to_user_id": 107034156, "to_user_id_str": "107034156", "to_user_name": "James Harper \\u2603", "in_reply_to_status_id": 148839232801214460, "in_reply_to_status_id_str": "148839232801214464"}, +{"created_at": "Mon, 19 Dec 2011 18:58:54 +0000", "from_user": "amy_bolen", "from_user_id": 352414897, "from_user_id_str": "352414897", "from_user_name": "Amy Katelyn Bolen", "geo": null, "id": 148839741662564350, "id_str": "148839741662564352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682295094/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682295094/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Dude we're havin fun!! We're on an adventure!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:54 +0000", "from_user": "Vale8396", "from_user_id": 123905822, "from_user_id_str": "123905822", "from_user_name": "Vale*", "geo": null, "id": 148839741503184900, "id_str": "148839741503184897", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1637266143/vale_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637266143/vale_1_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "RT @onedirection: Include some fun messages to the boys (aswell as the # and seat info) they are looking at them!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:54 +0000", "from_user": "Cliffrost", "from_user_id": 250517677, "from_user_id_str": "250517677", "from_user_name": "Bad Azz Frost", "geo": null, "id": 148839741150871550, "id_str": "148839741150871552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697810163/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697810163/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@_JaRielise homework is fun. Just need help wit it", "to_user": "_JaRielise", "to_user_id": 373449198, "to_user_id_str": "373449198", "to_user_name": "JaRieliSeluvzTyShawn", "in_reply_to_status_id": 148839194834374660, "in_reply_to_status_id_str": "148839194834374656"}, +{"created_at": "Mon, 19 Dec 2011 18:58:54 +0000", "from_user": "vesde", "from_user_id": 94478533, "from_user_id_str": "94478533", "from_user_name": "Josh O'Brien", "geo": null, "id": 148839740811120640, "id_str": "148839740811120640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1616019258/pretty_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616019258/pretty_normal.PNG", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @MODSUN: Dude, my life is so fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:54 +0000", "from_user": "RasmussenPoll", "from_user_id": 19553409, "from_user_id_str": "19553409", "from_user_name": "Scott Rasmussen", "geo": null, "id": 148839740681097200, "id_str": "148839740681097217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/730492124/Scott_Twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/730492124/Scott_Twitter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "39% see holiday gift shopping as fun experience, 38% consider it an unpleasant chore... http://t.co/Xh8ESdmP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:54 +0000", "from_user": "BakedZAY_Tee", "from_user_id": 171634172, "from_user_id_str": "171634172", "from_user_name": "DOPE_deMeanor\\u2122", "geo": null, "id": 148839740186165250, "id_str": "148839740186165248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701304126/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701304126/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @Beautiful_JoJo1: Soo Wat We Get Drunk, Soo Wat We Smoke Weed, We're Just Havinq Fun, We Dnt Care Who Sees! -Young, Wild &'d Free!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:53 +0000", "from_user": "BwareofmyMeow", "from_user_id": 301630421, "from_user_id_str": "301630421", "from_user_name": "Olivia Amir~", "geo": null, "id": 148839738621693950, "id_str": "148839738621693953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702577059/BwareofmyMeow_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702577059/BwareofmyMeow_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@BirdyB1 lol right.. Have fun for us.! \\uD83D\\uDE1A", "to_user": "BirdyB1", "to_user_id": 123378348, "to_user_id_str": "123378348", "to_user_name": "Renita", "in_reply_to_status_id": 148839525458771970, "in_reply_to_status_id_str": "148839525458771968"}, +{"created_at": "Mon, 19 Dec 2011 18:58:53 +0000", "from_user": "baroo2_", "from_user_id": 391205298, "from_user_id_str": "391205298", "from_user_name": " \\u00DFara\\u00E2 \\u00DFint\\u00C2 \\u2665", "geo": null, "id": 148839736088346620, "id_str": "148839736088346624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698328117/IMG-20111217-WA019_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698328117/IMG-20111217-WA019_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Yestardy amazing day @Almseera I have to much fun there with my family \\u2665\\u2122", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:52 +0000", "from_user": "Romanuva", "from_user_id": 266332563, "from_user_id_str": "266332563", "from_user_name": "Ryan Watkins", "geo": null, "id": 148839735358529540, "id_str": "148839735358529536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://fun.ly" rel="nofollow">fun.ly</a>", "text": "Mitt Romney, establishment candidate http://t.co/9mHC7gjW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:52 +0000", "from_user": "_SwallowMyBirds", "from_user_id": 324663631, "from_user_id_str": "324663631", "from_user_name": "&u canEAT'myTWEET ", "geo": null, "id": 148839735102685200, "id_str": "148839735102685184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701281079/PhotoChooser-791e0970-caf5-4d74-a44a-e702015c5609_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701281079/PhotoChooser-791e0970-caf5-4d74-a44a-e702015c5609_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Can't for get g'killb- rip we use to have fun at Ryan house", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:52 +0000", "from_user": "StaggaSays", "from_user_id": 40018680, "from_user_id_str": "40018680", "from_user_name": "Ralph Williams III ", "geo": null, "id": 148839735069130750, "id_str": "148839735069130752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696357424/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696357424/profile_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "Its all fun games n laughter on the table til the bill comes n niggas act like someone just died.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:52 +0000", "from_user": "ShadBoi_1Da", "from_user_id": 368701289, "from_user_id_str": "368701289", "from_user_name": "Rashad Williams", "geo": null, "id": 148839733978607600, "id_str": "148839733978607617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1654864737/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654864737/image_normal.jpg", "source": "<a href="http://www.tweet-r.com" rel="nofollow">Tweetr</a>", "text": "RT @Thugniificent: If small girls are fun sized, are fat chicks king sized?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:52 +0000", "from_user": "GarrettKlingel", "from_user_id": 164729664, "from_user_id_str": "164729664", "from_user_name": "Garrett Klingel", "geo": null, "id": 148839733890523140, "id_str": "148839733890523138", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700377917/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700377917/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@RaQueLHelena86 hahahah just playin. Have fun today. Miss you.", "to_user": "RaQueLHelena86", "to_user_id": 197892768, "to_user_id_str": "197892768", "to_user_name": "ShELL\\u2764\\u2764", "in_reply_to_status_id": 148839170654212100, "in_reply_to_status_id_str": "148839170654212096"}, +{"created_at": "Mon, 19 Dec 2011 18:58:52 +0000", "from_user": "chaotic_ali", "from_user_id": 187696961, "from_user_id_str": "187696961", "from_user_name": "chaotic ali", "geo": null, "id": 148839733781471230, "id_str": "148839733781471232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698049035/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698049035/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I love how everyone is poking fun at @ladygaga these days!!!\\n#GagasPassword BritneySpearsIsTheQueenOfPop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:52 +0000", "from_user": "MarticaHolmes", "from_user_id": 331975246, "from_user_id_str": "331975246", "from_user_name": "Martha Holmes", "geo": null, "id": 148839733395599360, "id_str": "148839733395599360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1433098919/c1_year3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1433098919/c1_year3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "About to be a panelist #FocusST. Wow great fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:52 +0000", "from_user": "PiCassieO", "from_user_id": 21362577, "from_user_id_str": "21362577", "from_user_name": "Beth Stafford", "geo": null, "id": 148839732456062980, "id_str": "148839732456062976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/91321072/beth_stafford_001_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/91321072/beth_stafford_001_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Fun shoes! \"Line Dance\" Pro-Keds Royal Hi by PiCassieO Pro Keds Hi-top Sneaker from http://t.co/OPjXPDmW http://t.co/U0DaXOwj via @addthis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:52 +0000", "from_user": "OMGHeisperfect", "from_user_id": 172005029, "from_user_id_str": "172005029", "from_user_name": "BelieberL.Monster", "geo": null, "id": 148839732296691700, "id_str": "148839732296691712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677733013/386001_2274338537427_1217585362_31958135_498515950_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677733013/386001_2274338537427_1217585362_31958135_498515950_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @imSerayBelieber: If you cant laugh at yourself you cant have fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:52 +0000", "from_user": "B_Lasha90", "from_user_id": 247631200, "from_user_id_str": "247631200", "from_user_name": "Bernita Williams", "geo": null, "id": 148839732149878800, "id_str": "148839732149878785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1678346735/eLWnpfjA_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678346735/eLWnpfjA_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@daZZliNgIrL_09 Girl we be having fun together he always keeping me active.. we just ready for that baby to.come", "to_user": "daZZliNgIrL_09", "to_user_id": 162868720, "to_user_id_str": "162868720", "to_user_name": "Tyena Smith", "in_reply_to_status_id": 148835550814679040, "in_reply_to_status_id_str": "148835550814679041"}, +{"created_at": "Mon, 19 Dec 2011 18:58:51 +0000", "from_user": "sassy24", "from_user_id": 21176132, "from_user_id_str": "21176132", "from_user_name": "Thelma Azolukwam ", "geo": null, "id": 148839731206176770, "id_str": "148839731206176770", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/252152955/flow_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/252152955/flow_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@BrianBrock1 I'm sure we'll have fun stilll Looking forward to all of us hanging out over Christmas... :-) Will call u later x", "to_user": "BrianBrock1", "to_user_id": 33992058, "to_user_id_str": "33992058", "to_user_name": "Brian Brock"}, +{"created_at": "Mon, 19 Dec 2011 18:58:51 +0000", "from_user": "KimberlyCaseyy", "from_user_id": 157782730, "from_user_id_str": "157782730", "from_user_name": "Kimberly Pena", "geo": null, "id": 148839730098864130, "id_str": "148839730098864129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1674744049/21MiqQ7i_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674744049/21MiqQ7i_normal", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I only get on Facebook to like a few statuses, see what I've missed and that's about it. Facebook isn't fun at all.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:51 +0000", "from_user": "LaurenJLSOritse", "from_user_id": 177570682, "from_user_id_str": "177570682", "from_user_name": "Lauren Gardner", "geo": null, "id": 148839730006593540, "id_str": "148839730006593537", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1683612859/me_danielle_olly_murs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683612859/me_danielle_olly_murs_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@MarcuscollinsUK hope you have fun! Miss you! When will I see u again?! :( please follow me xxx", "to_user": "MarcuscollinsUK", "to_user_id": 370448015, "to_user_id_str": "370448015", "to_user_name": "Marcus Collins", "in_reply_to_status_id": 148839438309527550, "in_reply_to_status_id_str": "148839438309527553"}, +{"created_at": "Mon, 19 Dec 2011 18:58:51 +0000", "from_user": "jynacide", "from_user_id": 18444936, "from_user_id_str": "18444936", "from_user_name": "jyn radakovits", "geo": null, "id": 148839729272594430, "id_str": "148839729272594433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1173653376/c832fdb4-f899-4431-81ca-5d853dcab56c_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1173653376/c832fdb4-f899-4431-81ca-5d853dcab56c_normal.png", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@NinjaKnees22 omg.sooo under rated.I see em all the time in chicago.amazing music,amazing guys that are so fun to hang with.one of my favs", "to_user": "NinjaKnees22", "to_user_id": 27199288, "to_user_id_str": "27199288", "to_user_name": "Hannah Shobaky", "in_reply_to_status_id": 148836823177760770, "in_reply_to_status_id_str": "148836823177760768"}, +{"created_at": "Mon, 19 Dec 2011 18:58:50 +0000", "from_user": "Selenators2011", "from_user_id": 401989154, "from_user_id_str": "401989154", "from_user_name": "Selena Gomez Fan ", "geo": null, "id": 148839727213195260, "id_str": "148839727213195264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699629645/469437191_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699629645/469437191_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@Selenators2011 haha idk it's fun :P <3", "to_user": "Selenators2011", "to_user_id": 401989154, "to_user_id_str": "401989154", "to_user_name": "Selena Gomez Fan ", "in_reply_to_status_id": 148839593213562880, "in_reply_to_status_id_str": "148839593213562880"}, +{"created_at": "Mon, 19 Dec 2011 18:58:50 +0000", "from_user": "Savannah059844", "from_user_id": 441023001, "from_user_id_str": "441023001", "from_user_name": "Savannah", "geo": null, "id": 148839726818930700, "id_str": "148839726818930688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702471208/xJoJo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702471208/xJoJo_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Meanie Genie: Little Genie has made Ali the same size as she is! It\\u2019s so much fun . . . until Genie\\u2019s hourglass ... http://t.co/ZUR6DgC2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:50 +0000", "from_user": "RatedR_CEO", "from_user_id": 363600649, "from_user_id_str": "363600649", "from_user_name": "416Uzi", "geo": null, "id": 148839726378520580, "id_str": "148839726378520576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1554574901/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554574901/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @RosaAcosta: Had fun in Toronto like always! S/o to @creamworldmag and @harveystripes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:50 +0000", "from_user": "Im_ALL_You_CEE", "from_user_id": 318087390, "from_user_id_str": "318087390", "from_user_name": "Yours Truly. . . ", "geo": null, "id": 148839725199921150, "id_str": "148839725199921152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697054289/K1cnAIcm_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697054289/K1cnAIcm_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Allie_IsBetter: @Im_ALL_You_CEE its fun to be by yo self so yu can do wtf yu wanna=)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:50 +0000", "from_user": "sarah___baby", "from_user_id": 300684256, "from_user_id_str": "300684256", "from_user_name": "Sarah Stocker", "geo": null, "id": 148839724600147970, "id_str": "148839724600147968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1682419545/387646_10150416846316033_624526032_8644222_1868962494_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682419545/387646_10150416846316033_624526032_8644222_1868962494_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@DickemDownnn haha have fun playing it :)", "to_user": "DickemDownnn", "to_user_id": 52472337, "to_user_id_str": "52472337", "to_user_name": "Derek Brown", "in_reply_to_status_id": 148835866574471170, "in_reply_to_status_id_str": "148835866574471168"}, +{"created_at": "Mon, 19 Dec 2011 18:58:50 +0000", "from_user": "kc8hgg", "from_user_id": 56675565, "from_user_id_str": "56675565", "from_user_name": "Samuel Russell", "geo": null, "id": 148839724000354300, "id_str": "148839724000354304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1521629409/Russell_samuel_00406775_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1521629409/Russell_samuel_00406775_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Mid-December-Michigan golf! 9 holes of fun. Merry Christmas Michigan! #puremichigan", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:49 +0000", "from_user": "UaintFCKINw_ASH", "from_user_id": 231876067, "from_user_id_str": "231876067", "from_user_name": "Ashley GivesNOfcks", "geo": null, "id": 148839722024841200, "id_str": "148839722024841216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680027254/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680027254/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I need to be tryin to price my books for next semester. Spending money on books...YAY HOW FUN -_-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:49 +0000", "from_user": "JizzleMarley_wL", "from_user_id": 99025603, "from_user_id_str": "99025603", "from_user_name": "Jizzle Man Montana", "geo": null, "id": 148839722003861500, "id_str": "148839722003861504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699680541/N3kczaIP_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699680541/N3kczaIP_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@THEREALKINGG aight yall niggaz have fun and be safe", "to_user": "THEREALKINGG", "to_user_id": 47756325, "to_user_id_str": "47756325", "to_user_name": "KINGG ", "in_reply_to_status_id": 148839154053156860, "in_reply_to_status_id_str": "148839154053156865"}, +{"created_at": "Mon, 19 Dec 2011 18:58:49 +0000", "from_user": "GalPalStrong", "from_user_id": 54455933, "from_user_id_str": "54455933", "from_user_name": "Jaime Strong", "geo": null, "id": 148839721659940860, "id_str": "148839721659940864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/304839721/Dock_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/304839721/Dock_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@RICKatFOX Costa Mesa FD is delivering gifts for Santa Letters on Friday Dec 23rd at 8am! Fly by to see the fun!", "to_user": "RICKatFOX", "to_user_id": 37226256, "to_user_id_str": "37226256", "to_user_name": "Rick Dickert"}, +{"created_at": "Mon, 19 Dec 2011 18:58:49 +0000", "from_user": "Ljay7M", "from_user_id": 25114118, "from_user_id_str": "25114118", "from_user_name": "El F*cking Capitan", "geo": null, "id": 148839721412460540, "id_str": "148839721412460544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689991549/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689991549/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@jasyno162 hahaha that Shit brings me back 2 when we used 2 do house parties. They were the most fun! fuck a club I wanna go 2 a #houseparty", "to_user": "jasyno162", "to_user_id": 369186510, "to_user_id_str": "369186510", "to_user_name": "jasyno", "in_reply_to_status_id": 148832448032149500, "in_reply_to_status_id_str": "148832448032149504"}, +{"created_at": "Mon, 19 Dec 2011 18:58:49 +0000", "from_user": "Cbannister32", "from_user_id": 247379145, "from_user_id_str": "247379145", "from_user_name": "chelsey bannister \\uF0FC", "geo": null, "id": 148839721198555140, "id_str": "148839721198555136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695971893/IMG950358_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695971893/IMG950358_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@SarahB_thePYT lol ok! This shall be fun", "to_user": "SarahB_thePYT", "to_user_id": 141770967, "to_user_id_str": "141770967", "to_user_name": "\\u265BBruno\\u265B", "in_reply_to_status_id": 148839625513893900, "in_reply_to_status_id_str": "148839625513893888"}, +{"created_at": "Mon, 19 Dec 2011 18:58:49 +0000", "from_user": "Cremzinc", "from_user_id": 20544061, "from_user_id_str": "20544061", "from_user_name": "EC", "geo": null, "id": 148839720288403460, "id_str": "148839720288403456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/268797470/cremzinc_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/268797470/cremzinc_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Gorgeous Babes Have Fun in the Snow: Stunning and busty UK girls play with snowballs and show boobs http://t.co/wH45A9XX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:49 +0000", "from_user": "maddieebabiee", "from_user_id": 319708082, "from_user_id_str": "319708082", "from_user_name": "maddiee turner", "geo": null, "id": 148839719919288320, "id_str": "148839719919288320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1667299803/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667299803/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "shopping was supposed to be fun.. not a \"I wanna kill everyone I see\" kinna thing.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:49 +0000", "from_user": "JimRoton", "from_user_id": 31475986, "from_user_id_str": "31475986", "from_user_name": "Jim Roton", "geo": null, "id": 148839719856377860, "id_str": "148839719856377856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627895362/windows.7.profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627895362/windows.7.profile_normal.jpg", "source": "<a href="http://www.metrotwit.com/" rel="nofollow">MetroTwit</a>", "text": "RT @BenThePCGuy: Check out the entire list of crazy awesome emoticons that are hiding on your #windowsphone : http://t.co/BbPRHEG0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:49 +0000", "from_user": "SuchAn_Oreo", "from_user_id": 93251049, "from_user_id_str": "93251049", "from_user_name": "\\uE414 -- so gonee \\uE04B", "geo": null, "id": 148839719399211000, "id_str": "148839719399211008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702168696/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702168696/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TheFireSigns: #Leo here to learn what they want, how to have fun and be happy. And how to make it all happen.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:48 +0000", "from_user": "lilytheKILL21", "from_user_id": 54314924, "from_user_id_str": "54314924", "from_user_name": "lily pichardo", "geo": null, "id": 148839718501629950, "id_str": "148839718501629953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1661677584/330534584_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661677584/330534584_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for iPhone</a>", "text": "Someone full of fun do me till I'm well done. Little bo peep coming' from my stun gun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:48 +0000", "from_user": "emhahne", "from_user_id": 365676743, "from_user_id_str": "365676743", "from_user_name": "emelie hahne", "geo": null, "id": 148839718208028670, "id_str": "148839718208028672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1622241825/20111102117__640x480__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622241825/20111102117__640x480__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "playing the vampire diaries game on facebook ,, hahah it really fun cant stop playing;))", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:48 +0000", "from_user": "AK47aaryn", "from_user_id": 58711429, "from_user_id_str": "58711429", "from_user_name": "Aaryn Christine \\uE12F", "geo": null, "id": 148839718174461950, "id_str": "148839718174461953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1666804610/AK47aaryn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666804610/AK47aaryn_normal.jpg", "source": "<a href="http://tweetlogix.com" rel="nofollow">Tweetlogix</a>", "text": "@TammyVogue it was fun, just really hot and ratchet.", "to_user": "TammyVogue", "to_user_id": 351186527, "to_user_id_str": "351186527", "to_user_name": "Tamura Davis", "in_reply_to_status_id": 148839490021097470, "in_reply_to_status_id_str": "148839490021097472"}, +{"created_at": "Mon, 19 Dec 2011 18:58:48 +0000", "from_user": "Rainabo7", "from_user_id": 392215494, "from_user_id_str": "392215494", "from_user_name": "Raina Neal", "geo": null, "id": 148839716169596930, "id_str": "148839716169596928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675167175/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675167175/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#thatsweetmoment when a guy texts you about his ex talking about how amazing she is and all the fun they had together", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:48 +0000", "from_user": "SheInked_TSOD", "from_user_id": 50107140, "from_user_id_str": "50107140", "from_user_name": "Shameka \\uE235\\uE235\\uE214", "geo": null, "id": 148839715896963070, "id_str": "148839715896963073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1663644331/slide_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663644331/slide_normal.jpg", "source": "<a href="http://www.handmark.com" rel="nofollow">TweetCaster for iOS</a>", "text": "\"@HighAssTee: High School Basketball was fun af\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:47 +0000", "from_user": "erreaku", "from_user_id": 254955929, "from_user_id_str": "254955929", "from_user_name": "Raquel Echeverr\\u00EDa", "geo": null, "id": 148839713267134460, "id_str": "148839713267134464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1250351832/Raquel_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1250351832/Raquel_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Saatchi Bangkok A space that inspires, is fun to come to everyday, and that doesn't take itself too seriously http://t.co/eDFSJR4l", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:47 +0000", "from_user": "TiniLae", "from_user_id": 131296606, "from_user_id_str": "131296606", "from_user_name": "LiL EL", "geo": null, "id": 148839712143052800, "id_str": "148839712143052802", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691988675/DMPBmgpP_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691988675/DMPBmgpP_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "It isn't as much fun watching Phineas and Ferb without my dad. Its one of his favorite shows.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:47 +0000", "from_user": "KaYBello_11", "from_user_id": 90048726, "from_user_id_str": "90048726", "from_user_name": "KeHanna Thompson", "geo": null, "id": 148839711513907200, "id_str": "148839711513907200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1555524581/matthew_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555524581/matthew_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "ok ,, another person added to the fun !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:47 +0000", "from_user": "__jkatrina", "from_user_id": 331098731, "from_user_id_str": "331098731", "from_user_name": "jg", "geo": null, "id": 148839711216111600, "id_str": "148839711216111616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1648801265/Screen_20111119_114720_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648801265/Screen_20111119_114720_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "THE MALLS SMELL. HAVE FUN SHOPPING", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:47 +0000", "from_user": "Luvly_Gemini", "from_user_id": 63858245, "from_user_id_str": "63858245", "from_user_name": "\\uE32DShay\\uE32D", "geo": null, "id": 148839710914117630, "id_str": "148839710914117632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1657733241/Luvly_Gemini_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657733241/Luvly_Gemini_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @Love_dreads: So lastnight was fun as shit aint been out n long time and we was all on a level!!!! @Luvly_Gemini @lil_miss_ann", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:46 +0000", "from_user": "Troy_sARGEanT", "from_user_id": 343549511, "from_user_id_str": "343549511", "from_user_name": "Troy Sargeant", "geo": null, "id": 148839709991370750, "id_str": "148839709991370752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674418797/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674418797/image_normal.jpg", "source": "<a href="http://www.gourmetpixel.co.uk" rel="nofollow">Christmas!! iPhone App</a>", "text": "6 days till Christmas!!! Sent from my free Christmas app - http://t.co/5XMAzBb0 #ChristmasApp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:46 +0000", "from_user": "pampam0710", "from_user_id": 286112742, "from_user_id_str": "286112742", "from_user_name": "wendy P", "geo": null, "id": 148839709794246660, "id_str": "148839709794246658", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1652079115/IMG_2742_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652079115/IMG_2742_normal.JPG", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@scarlettgrace99 @n1na__p @giryak nah,we don't have fun without ya A :)", "to_user": "scarlettgrace99", "to_user_id": 239912642, "to_user_id_str": "239912642", "to_user_name": "a", "in_reply_to_status_id": 148838719976259600, "in_reply_to_status_id_str": "148838719976259585"}, +{"created_at": "Mon, 19 Dec 2011 18:58:46 +0000", "from_user": "THEREALTASTY", "from_user_id": 72941045, "from_user_id_str": "72941045", "from_user_name": "ASK ME", "geo": null, "id": 148839708821176320, "id_str": "148839708821176320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695291887/THEREALTASTY_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695291887/THEREALTASTY_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "So i know u be bored BB!!RT @BB_FIERCE: RT @IamRicoLove: Pretty girls have the most fun..... #TTLO!!!!!!!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:46 +0000", "from_user": "jess_whelan", "from_user_id": 190323503, "from_user_id_str": "190323503", "from_user_name": "\\u2661 Jessica Whelan \\u2661", "geo": null, "id": 148839706749186050, "id_str": "148839706749186048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1657685835/302129_255363974509928_100001089810583_688515_1033219962_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657685835/302129_255363974509928_100001089810583_688515_1033219962_n_normal.jpg", "source": "<a href="http://twuffer.com" rel="nofollow">Twuffer</a>", "text": "RT @girlposts: Life is too precious to worry about stupid things. Have fun and fall in love. Regret nothing and don\\u2019t let people bring you down.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:45 +0000", "from_user": "1DCarrotSwag", "from_user_id": 417921395, "from_user_id_str": "417921395", "from_user_name": "Bebs and Carrot ", "geo": null, "id": 148839706153594880, "id_str": "148839706153594880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1671957166/AfejUjUCAAE6z05_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671957166/AfejUjUCAAE6z05_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Still holding my hand. 'so, what's your name?' 'Faye' 'thats a pretty name. So faye, did you have fun on stage?' 'yes! It was amazing!' he", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:45 +0000", "from_user": "SteAdragna", "from_user_id": 378230885, "from_user_id_str": "378230885", "from_user_name": "Stefano", "geo": null, "id": 148839705528635400, "id_str": "148839705528635392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1666950081/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666950081/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Gorgeous_Barb your mom is pretty cool to hang out with. Don't worry next will have more fun.", "to_user": "Gorgeous_Barb", "to_user_id": 68858843, "to_user_id_str": "68858843", "to_user_name": "NAOMI", "in_reply_to_status_id": 148837925919010800, "in_reply_to_status_id_str": "148837925919010816"}, +{"created_at": "Mon, 19 Dec 2011 18:58:45 +0000", "from_user": "RickNwanso", "from_user_id": 333688223, "from_user_id_str": "333688223", "from_user_name": "Rick Nwanso", "geo": null, "id": 148839705339887600, "id_str": "148839705339887616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1690583461/331416396_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690583461/331416396_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @AllyRiri: LoL.. Thanks muchhh for 2day.. Had awesome fun..muah your welcome :)RT @RickNwanso: Yaaay!!! I'm ... http://t.co/qh1f4pr5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:45 +0000", "from_user": "aly72894", "from_user_id": 73401107, "from_user_id_str": "73401107", "from_user_name": "aly", "geo": null, "id": 148839704534585340, "id_str": "148839704534585346", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1677146231/ring_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677146231/ring_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @La_Wlooo: Teacher: \"Where's your book?!\" Student: \"At home.\" Teacher: \"What's it doing there?! Student: \"Having more fun than me.\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:45 +0000", "from_user": "This_ThatChick", "from_user_id": 250265064, "from_user_id_str": "250265064", "from_user_name": "Anjhane Aminah", "geo": null, "id": 148839704522010620, "id_str": "148839704522010626", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1644226741/new_avi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644226741/new_avi_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@_LilMissDejah For The Fun", "to_user": "_LilMissDejah", "to_user_id": 259416507, "to_user_id_str": "259416507", "to_user_name": "Light Bright Dejah", "in_reply_to_status_id": 148839408802594800, "in_reply_to_status_id_str": "148839408802594818"}, +{"created_at": "Mon, 19 Dec 2011 18:58:45 +0000", "from_user": "saslagle", "from_user_id": 23360446, "from_user_id_str": "23360446", "from_user_name": "Sarah Elaine", "geo": null, "id": 148839703574085630, "id_str": "148839703574085633", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/434530524/sarah3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/434530524/sarah3_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @mindykaling: For fun, and to remind ourselves that romance is alive, let's name great couples. I'll start: Amy Poehler and Will Arnett.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:44 +0000", "from_user": "FunOneStation", "from_user_id": 96987735, "from_user_id_str": "96987735", "from_user_name": "FunOneStation", "geo": null, "id": 148839702206758900, "id_str": "148839702206758912", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1393300986/tw_8937280_1307921756_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1393300986/tw_8937280_1307921756_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "M\\u00E1te r\\u00E1di devades\\u00E1tky? Tak se d\\u00EDvejte, tak jako ka\\u017Ed\\u00E9 pond\\u011Bl\\u00ED, i dnes na FUN 1 po 20:00 na \"Funny 90's\" :) http://t.co/mLX3f7jg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:44 +0000", "from_user": "valerieelston", "from_user_id": 16809329, "from_user_id_str": "16809329", "from_user_name": "Valerie Elston", "geo": null, "id": 148839701246263300, "id_str": "148839701246263296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1100619497/IMG_1613_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1100619497/IMG_1613_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @easyeatsmag: More great Gift GIveaway fun with @SoyJoyUS - enter today for your chance to win. http://t.co/LVUBSiqA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:44 +0000", "from_user": "brocklove", "from_user_id": 77910354, "from_user_id_str": "77910354", "from_user_name": "Brandon Lovelace", "geo": null, "id": 148839699698565120, "id_str": "148839699698565120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1126021451/45107_418393822123_611862123_4841439_660078_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1126021451/45107_418393822123_611862123_4841439_660078_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@NickMajors I was wearing those Toms today that you gave me... and Kem made fun of me.", "to_user": "NickMajors", "to_user_id": 205835075, "to_user_id_str": "205835075", "to_user_name": "Nick Majors"}, +{"created_at": "Mon, 19 Dec 2011 18:58:44 +0000", "from_user": "Miss_Montano", "from_user_id": 403595654, "from_user_id_str": "403595654", "from_user_name": "Raquel Montano", "geo": null, "id": 148839699664994300, "id_str": "148839699664994304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701694544/25XdJ65p_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701694544/25XdJ65p_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@maddymcgann @Aliyahh_Amiraa Its not fun. I'm hungry and there is nothing to eat in this house.", "to_user": "maddymcgann", "to_user_id": 344526357, "to_user_id_str": "344526357", "to_user_name": "Maddy McGann", "in_reply_to_status_id": 148838149156634620, "in_reply_to_status_id_str": "148838149156634624"}, +{"created_at": "Mon, 19 Dec 2011 18:58:44 +0000", "from_user": "Et_Ella", "from_user_id": 50754179, "from_user_id_str": "50754179", "from_user_name": "Ella H", "geo": null, "id": 148839698855497730, "id_str": "148839698855497729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1608952506/IMG_2725_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608952506/IMG_2725_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Merry Christmas everybody's having fun, look to the future now it's only just began...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:43 +0000", "from_user": "Britt_Brat41", "from_user_id": 256533372, "from_user_id_str": "256533372", "from_user_name": "*Brittany\\u2022Johnson\\u2122", "geo": null, "id": 148839698029219840, "id_str": "148839698029219840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1619847217/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619847217/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Jo_Summie: Had so much fun snorkling today with the team @MSmith_14 @Britt_Brat41 @KLong_10 @lanaabanaa @Sade_Means24 @GrannyPanther", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:43 +0000", "from_user": "Candi_Yamm", "from_user_id": 91650759, "from_user_id_str": "91650759", "from_user_name": "Tessica J .", "geo": null, "id": 148839697781760000, "id_str": "148839697781760000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690035343/331392392_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690035343/331392392_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Days like this I wish the mTA still made 1day metrocard fun passes ! ;(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:43 +0000", "from_user": "kathy_vang", "from_user_id": 94924068, "from_user_id_str": "94924068", "from_user_name": "kathyvang", "geo": null, "id": 148839697362333700, "id_str": "148839697362333696", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702095235/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702095235/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "being sick is not fun... :(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:43 +0000", "from_user": "Jsill92", "from_user_id": 428809044, "from_user_id_str": "428809044", "from_user_name": "Joshua Ryan Sill I", "geo": null, "id": 148839696674467840, "id_str": "148839696674467840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1675498679/K84jb642_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675498679/K84jb642_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@lailaannk hell yeah gonna be fun haha", "to_user": "lailaannk", "to_user_id": 245640418, "to_user_id_str": "245640418", "to_user_name": "Laila Keliani", "in_reply_to_status_id": 148837659266125820, "in_reply_to_status_id_str": "148837659266125825"}, +{"created_at": "Mon, 19 Dec 2011 18:58:43 +0000", "from_user": "daisyharriet91", "from_user_id": 337869902, "from_user_id_str": "337869902", "from_user_name": "oh hiyuh, i'm dais.", "geo": null, "id": 148839695915298800, "id_str": "148839695915298816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693387808/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693387808/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@edgejames it was fun :3", "to_user": "edgejames", "to_user_id": 24579797, "to_user_id_str": "24579797", "to_user_name": "James Edge", "in_reply_to_status_id": 148838941905256450, "in_reply_to_status_id_str": "148838941905256448"}, +{"created_at": "Mon, 19 Dec 2011 18:58:43 +0000", "from_user": "funnyman310", "from_user_id": 407229941, "from_user_id_str": "407229941", "from_user_name": "Damian Bowers", "geo": null, "id": 148839695781068800, "id_str": "148839695781068800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1627712725/hollywood_undead_band_new_masks_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627712725/hollywood_undead_band_new_masks_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "im really borde right now in mr thomas class o so fun lol right", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:43 +0000", "from_user": "timrosario", "from_user_id": 39727006, "from_user_id_str": "39727006", "from_user_name": "Timothy Rosario", "geo": null, "id": 148839695554584580, "id_str": "148839695554584576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1671845768/darkness_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671845768/darkness_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Gears with @CJ_WORLD_PEACE was fun... Just like old days... He still better than me. @Eddie_Tayag too.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:43 +0000", "from_user": "wineyczo", "from_user_id": 419766363, "from_user_id_str": "419766363", "from_user_name": "Laura Ann", "geo": null, "id": 148839695126761470, "id_str": "148839695126761473", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1654851075/308822_10101002459115710_1913689_67594408_403346403_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654851075/308822_10101002459115710_1913689_67594408_403346403_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Have fun with those teeth @KaitlynFish #goodluck", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:43 +0000", "from_user": "Bigfish821", "from_user_id": 234858768, "from_user_id_str": "234858768", "from_user_name": "hayden florez ", "geo": null, "id": 148839694552137730, "id_str": "148839694552137728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1465061341/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1465061341/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster</a>", "text": "Have fun in the big city let's kick it when you get back :)@CackAttack_2", "to_user": "CackAttack_2", "to_user_id": 272837045, "to_user_id_str": "272837045", "to_user_name": "Charlie Caccamo", "in_reply_to_status_id": 148838761504063500, "in_reply_to_status_id_str": "148838761504063489"} +, +{"created_at": "Mon, 19 Dec 2011 18:58:43 +0000", "from_user": "Jsill92", "from_user_id": 428809044, "from_user_id_str": "428809044", "from_user_name": "Joshua Ryan Sill I", "geo": null, "id": 148839696674467840, "id_str": "148839696674467840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1675498679/K84jb642_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675498679/K84jb642_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@lailaannk hell yeah gonna be fun haha", "to_user": "lailaannk", "to_user_id": 245640418, "to_user_id_str": "245640418", "to_user_name": "Laila Keliani", "in_reply_to_status_id": 148837659266125820, "in_reply_to_status_id_str": "148837659266125825"}, +{"created_at": "Mon, 19 Dec 2011 18:58:43 +0000", "from_user": "daisyharriet91", "from_user_id": 337869902, "from_user_id_str": "337869902", "from_user_name": "oh hiyuh, i'm dais.", "geo": null, "id": 148839695915298800, "id_str": "148839695915298816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693387808/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693387808/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@edgejames it was fun :3", "to_user": "edgejames", "to_user_id": 24579797, "to_user_id_str": "24579797", "to_user_name": "James Edge", "in_reply_to_status_id": 148838941905256450, "in_reply_to_status_id_str": "148838941905256448"}, +{"created_at": "Mon, 19 Dec 2011 18:58:43 +0000", "from_user": "funnyman310", "from_user_id": 407229941, "from_user_id_str": "407229941", "from_user_name": "Damian Bowers", "geo": null, "id": 148839695781068800, "id_str": "148839695781068800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1627712725/hollywood_undead_band_new_masks_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627712725/hollywood_undead_band_new_masks_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "im really borde right now in mr thomas class o so fun lol right", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:43 +0000", "from_user": "timrosario", "from_user_id": 39727006, "from_user_id_str": "39727006", "from_user_name": "Timothy Rosario", "geo": null, "id": 148839695554584580, "id_str": "148839695554584576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1671845768/darkness_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671845768/darkness_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Gears with @CJ_WORLD_PEACE was fun... Just like old days... He still better than me. @Eddie_Tayag too.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:43 +0000", "from_user": "wineyczo", "from_user_id": 419766363, "from_user_id_str": "419766363", "from_user_name": "Laura Ann", "geo": null, "id": 148839695126761470, "id_str": "148839695126761473", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1654851075/308822_10101002459115710_1913689_67594408_403346403_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654851075/308822_10101002459115710_1913689_67594408_403346403_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Have fun with those teeth @KaitlynFish #goodluck", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:43 +0000", "from_user": "Bigfish821", "from_user_id": 234858768, "from_user_id_str": "234858768", "from_user_name": "hayden florez ", "geo": null, "id": 148839694552137730, "id_str": "148839694552137728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1465061341/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1465061341/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster</a>", "text": "Have fun in the big city let's kick it when you get back :)@CackAttack_2", "to_user": "CackAttack_2", "to_user_id": 272837045, "to_user_id_str": "272837045", "to_user_name": "Charlie Caccamo", "in_reply_to_status_id": 148838761504063500, "in_reply_to_status_id_str": "148838761504063489"}, +{"created_at": "Mon, 19 Dec 2011 18:58:43 +0000", "from_user": "osaxy", "from_user_id": 355082098, "from_user_id_str": "355082098", "from_user_name": "Sheri Duff", "geo": null, "id": 148839694241771520, "id_str": "148839694241771520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1618291492/146dbe91-43d2-4d8a-8aff-88f1dca3974d_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618291492/146dbe91-43d2-4d8a-8aff-88f1dca3974d_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@BanterAndQuotes Glad u had fun and get some good rest!!! ((Hugs))", "to_user": "BanterAndQuotes", "to_user_id": 327492925, "to_user_id_str": "327492925", "to_user_name": "Shanaz Arshed", "in_reply_to_status_id": 148758032292122620, "in_reply_to_status_id_str": "148758032292122624"}, +{"created_at": "Mon, 19 Dec 2011 18:58:42 +0000", "from_user": "KimberleyKnox", "from_user_id": 46885402, "from_user_id_str": "46885402", "from_user_name": "Kimberley Knox", "geo": null, "id": 148839692870225920, "id_str": "148839692870225920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1684131305/IMG_2802_copy_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684131305/IMG_2802_copy_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Hey @WSRS961, how about playing some @SNCmusic christmas songs. Could use some #StraightNoChaser to fun up my week. :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:42 +0000", "from_user": "Chappystax", "from_user_id": 201988176, "from_user_id_str": "201988176", "from_user_name": "Christian", "geo": null, "id": 148839692849250300, "id_str": "148839692849250304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1612567377/profile_image_1319911314164_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612567377/profile_image_1319911314164_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "25miles from state line fun day at work but had enough #luvmyjob", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:42 +0000", "from_user": "DreamzTink", "from_user_id": 216577079, "from_user_id_str": "216577079", "from_user_name": "Krystina King", "geo": null, "id": 148839692635353100, "id_str": "148839692635353088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1670400847/Picture1939_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670400847/Picture1939_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Ah snap, it feels good out here!\\n\\nIt might be the 17 layers of fun I have on.\\n\\n\\nWork out and then strip for the neighbors....I THINK SO! LOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:42 +0000", "from_user": "misssetty2k", "from_user_id": 331124579, "from_user_id_str": "331124579", "from_user_name": "MissSetty ♥", "geo": null, "id": 148839691918118900, "id_str": "148839691918118913", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679920408/take_care_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679920408/take_care_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@MzNyJaB he didnt & now he's makin fun of me -__- ..", "to_user": "MzNyJaB", "to_user_id": 143489255, "to_user_id_str": "143489255", "to_user_name": "Ny-Ja Herod", "in_reply_to_status_id": 148836875178754050, "in_reply_to_status_id_str": "148836875178754049"}, +{"created_at": "Mon, 19 Dec 2011 18:58:42 +0000", "from_user": "RefrshDonovan", "from_user_id": 193849723, "from_user_id_str": "193849723", "from_user_name": "Mr. Green ", "geo": null, "id": 148839691683233800, "id_str": "148839691683233792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699568656/RefrshDonovan_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699568656/RefrshDonovan_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "had to make sure all my brother did well this semester we all did work and had fun a the same time!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:42 +0000", "from_user": "history11maker", "from_user_id": 286956200, "from_user_id_str": "286956200", "from_user_name": "d.g", "geo": null, "id": 148839691192500220, "id_str": "148839691192500224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1680083131/wlXgBvV3_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680083131/wlXgBvV3_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Hr of fun. Back to work. BBL:-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:42 +0000", "from_user": "iAMRAYTYLER", "from_user_id": 100395712, "from_user_id_str": "100395712", "from_user_name": "\\u221A Verified RayTyler\\u2122", "geo": null, "id": 148839690290728960, "id_str": "148839690290728960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1661936315/Ray3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661936315/Ray3_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT \"@MzJada_Flyhi: I live my life and I have fun doin it!!\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:42 +0000", "from_user": "LizzLoves1D", "from_user_id": 239587308, "from_user_id_str": "239587308", "from_user_name": "OneDirection\\u2665\\u27A1", "geo": null, "id": 148839689971970050, "id_str": "148839689971970049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693199747/a17fcc7a-ffc3-4fe0-a974-6defaa3000d9_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693199747/a17fcc7a-ffc3-4fe0-a974-6defaa3000d9_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @JanetJealousy: Dublin tonight :) busy busy. Havn't been in a while so it should be great fun apart from the early start tomorrow ;.;", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:41 +0000", "from_user": "murilo212", "from_user_id": 38074271, "from_user_id_str": "38074271", "from_user_name": "Murilo Campos", "geo": null, "id": 148839689053413380, "id_str": "148839689053413376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1481342959/6010973995_fd121f27ab_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1481342959/6010973995_fd121f27ab_o_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "so what we get drunk, so what we smoke weed, we're just having fun... aushaushauhsahsa #np", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:41 +0000", "from_user": "lactualaloupe", "from_user_id": 90369334, "from_user_id_str": "90369334", "from_user_name": "diane saint-r\\u00E9quier", "geo": null, "id": 148839688516542460, "id_str": "148839688516542464", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702615848/P10009572_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702615848/P10009572_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@blackhells1 j'ai choisi le Yooo, un coup de coeur depuis qu'on me l'a pr\\u00E9sent\\u00E9 : http://t.co/wi3MFQm1", "to_user": "blackhells1", "to_user_id": 378096970, "to_user_id_str": "378096970", "to_user_name": "Sebastien", "in_reply_to_status_id": 148838239581646850, "in_reply_to_status_id_str": "148838239581646848"}, +{"created_at": "Mon, 19 Dec 2011 18:58:41 +0000", "from_user": "Allwhite_rob", "from_user_id": 216194380, "from_user_id_str": "216194380", "from_user_name": "Robert lodge", "geo": null, "id": 148839687933526000, "id_str": "148839687933526016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694971461/Allwhite_rob_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694971461/Allwhite_rob_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Tryna do something fun this weekend", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:41 +0000", "from_user": "Banks224", "from_user_id": 365207887, "from_user_id_str": "365207887", "from_user_name": "Jeremy Banks", "geo": null, "id": 148839687711240200, "id_str": "148839687711240193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677433089/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677433089/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "The only reason I still follow you is cause I have something to laugh at an make fun of.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:41 +0000", "from_user": "KidConrad", "from_user_id": 108218953, "from_user_id_str": "108218953", "from_user_name": "Sean Baker", "geo": null, "id": 148839687698649100, "id_str": "148839687698649089", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1572189565/thumbs_dreads3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572189565/thumbs_dreads3_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@Dj_IceBreak of course my man, its gonna be a fun night!", "to_user": "Dj_IceBreak", "to_user_id": 72717729, "to_user_id_str": "72717729", "to_user_name": "Curtis B. Brass", "in_reply_to_status_id": 148839277017567230, "in_reply_to_status_id_str": "148839277017567233"}, +{"created_at": "Mon, 19 Dec 2011 18:58:41 +0000", "from_user": "brookekelley14", "from_user_id": 109954825, "from_user_id_str": "109954825", "from_user_name": "Brooke Werskey", "geo": null, "id": 148839687623155700, "id_str": "148839687623155712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695839395/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695839395/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "When people make fun of God<<<", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:41 +0000", "from_user": "RspctNoRspct", "from_user_id": 81245926, "from_user_id_str": "81245926", "from_user_name": "Respect~No~Respect", "geo": null, "id": 148839687367299070, "id_str": "148839687367299072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1625714826/document-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1625714826/document-2_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@MushiPanda no.... :( tequila just makes me fun :( :( ..... Vodka makes me crazzzzzzzzzzy .... Nothing makes me ruthless! NOTHING!", "to_user": "MushiPanda", "to_user_id": 46901900, "to_user_id_str": "46901900", "to_user_name": "Mushi Panda", "in_reply_to_status_id": 148838238537261060, "in_reply_to_status_id_str": "148838238537261056"}, +{"created_at": "Mon, 19 Dec 2011 18:58:41 +0000", "from_user": "syzxiwxni", "from_user_id": 384225377, "from_user_id_str": "384225377", "from_user_name": "Syaza iwani", "geo": null, "id": 148839687170170880, "id_str": "148839687170170881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696118561/M3j6xe3w_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696118561/M3j6xe3w_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Having fun. Still raping the keypad? \"@Daaaaaanish_: @syzxiwxni best ?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:41 +0000", "from_user": "rossyr0zay", "from_user_id": 82280837, "from_user_id_str": "82280837", "from_user_name": "Rosalyn", "geo": null, "id": 148839686113214460, "id_str": "148839686113214464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1690505441/2011-12-07_16-30-33_504_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690505441/2011-12-07_16-30-33_504_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "I've been sober& dd this past weekend. Very proud of myself :) don't gotta get drunk to enjoy yourself cuhs I still had fun w/my girls!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:41 +0000", "from_user": "qasim_ashraf", "from_user_id": 278286036, "from_user_id_str": "278286036", "from_user_name": "Qasim", "geo": null, "id": 148839685983182850, "id_str": "148839685983182849", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1676526071/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676526071/image_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@Priiyaaaa there better be:p anyways did ya have fun?", "to_user": "Priiyaaaa", "to_user_id": 123610489, "to_user_id_str": "123610489", "to_user_name": "Priya Kaur", "in_reply_to_status_id": 148831786082897920, "in_reply_to_status_id_str": "148831786082897920"}, +{"created_at": "Mon, 19 Dec 2011 18:58:41 +0000", "from_user": "JuliaHelenaa_", "from_user_id": 228767990, "from_user_id_str": "228767990", "from_user_name": "Julia Helena", "geo": null, "id": 148839685899288580, "id_str": "148839685899288577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1683308354/Making_of__40__normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683308354/Making_of__40__normal.JPG", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @katyperry: We had so much fun on this 1! Craziness did ensue! RT @PerezHilton: UK Tweethearts! Watch @KatyPerry w/me on #PerezSuperfan NOW on @ITV2!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:40 +0000", "from_user": "JDawnOfficial", "from_user_id": 65748080, "from_user_id_str": "65748080", "from_user_name": "Sonrisa Bonita", "geo": null, "id": 148839683168813060, "id_str": "148839683168813056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1666217275/JD_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666217275/JD_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "Fun weekend at 778 & Bentleys. Met a lot of my facebook friends at 778..Lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:40 +0000", "from_user": "Scottyy_P", "from_user_id": 97774896, "from_user_id_str": "97774896", "from_user_name": "Scott Penland", "geo": null, "id": 148839682812280830, "id_str": "148839682812280832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699551693/30114_396407580527_692185527_4654008_325349_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699551693/30114_396407580527_692185527_4654008_325349_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Going to work later after I stop by the school then going to chill with my crew have a little fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:40 +0000", "from_user": "__TiffanyChanel", "from_user_id": 219556819, "from_user_id_str": "219556819", "from_user_name": "Holly is Awsome! Duh", "geo": null, "id": 148839682506096640, "id_str": "148839682506096640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698960038/Snapshot_20111214_5_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698960038/Snapshot_20111214_5_normal.JPG", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Awh he said im Fun Sized! :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:39 +0000", "from_user": "WithPalestineFE", "from_user_id": 250893932, "from_user_id_str": "250893932", "from_user_name": "SolidaritePalestine", "geo": null, "id": 148839681340096500, "id_str": "148839681340096512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1241699965/174654_128748730495663_4262257_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1241699965/174654_128748730495663_4262257_n_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Just fot Fun !!!!! hahahahaha http://t.co/niJCXeDC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:39 +0000", "from_user": "Belieber3113", "from_user_id": 287353333, "from_user_id_str": "287353333", "from_user_name": "Belieber4ever", "geo": null, "id": 148839680895496200, "id_str": "148839680895496192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1613969971/320771_267826706587677_156590811044601_717315_1481157837_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1613969971/320771_267826706587677_156590811044601_717315_1481157837_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @justinbieber: Feeling good. Just had some fun at rehearsals and now we r ready. Time to sing for the President. #canadianrepresenter", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:39 +0000", "from_user": "lynnsherwood", "from_user_id": 16454610, "from_user_id_str": "16454610", "from_user_name": "Lynn Sherwood", "geo": null, "id": 148839680459284480, "id_str": "148839680459284480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1296506720/me.venice_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1296506720/me.venice_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@awanderingwino Now that sounds like a better deal! Have fun :", "to_user": "awanderingwino", "to_user_id": 228663242, "to_user_id_str": "228663242", "to_user_name": "Shawn Burgert", "in_reply_to_status_id": 148828280840142850, "in_reply_to_status_id_str": "148828280840142849"}, +{"created_at": "Mon, 19 Dec 2011 18:58:39 +0000", "from_user": "tbear_shabx", "from_user_id": 269030689, "from_user_id_str": "269030689", "from_user_name": "Aly Shahbaz", "geo": null, "id": 148839680228593660, "id_str": "148839680228593664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1690898647/Aly_tonight__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690898647/Aly_tonight__1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SyedAliRazaShah Umm nothing - I just wanna have fun on New Year's night. lol", "to_user": "SyedAliRazaShah", "to_user_id": 136185214, "to_user_id_str": "136185214", "to_user_name": "Syed Ali Raza", "in_reply_to_status_id": 148839202547695600, "in_reply_to_status_id_str": "148839202547695616"}, +{"created_at": "Mon, 19 Dec 2011 18:58:39 +0000", "from_user": "kens_maliceAQW", "from_user_id": 206277554, "from_user_id_str": "206277554", "from_user_name": "ken", "geo": null, "id": 148839680186662900, "id_str": "148839680186662912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1649233613/katanas_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649233613/katanas_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@Emo_AE @CameronTheWise yo guys lets make a private server for the fun of it", "to_user": "Emo_AE", "to_user_id": 332577370, "to_user_id_str": "332577370", "to_user_name": "Mr.Emo", "in_reply_to_status_id": 148838563226714100, "in_reply_to_status_id_str": "148838563226714114"}, +{"created_at": "Mon, 19 Dec 2011 18:58:39 +0000", "from_user": "Exuberant_One", "from_user_id": 237134647, "from_user_id_str": "237134647", "from_user_name": "Relax_yaself\\u00AB", "geo": null, "id": 148839679683342340, "id_str": "148839679683342337", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695422905/XH5Li9lt_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695422905/XH5Li9lt_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Had fun Lastnight chillin @NaudiaTimeless ...bout time she linked uo with me again, I missed her <3", "to_user": "NaudiaTimeless", "to_user_id": 98013194, "to_user_id_str": "98013194", "to_user_name": "LOOK@HER!\\u2122\\u221A", "in_reply_to_status_id": 148837099834056700, "in_reply_to_status_id_str": "148837099834056704"}, +{"created_at": "Mon, 19 Dec 2011 18:58:39 +0000", "from_user": "sunshineangiee", "from_user_id": 315567467, "from_user_id_str": "315567467", "from_user_name": "Angela Colon", "geo": null, "id": 148839678961913860, "id_str": "148839678961913856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688509687/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688509687/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@MikeSurpriseYou You lucky butt! Lol have fun tho(:", "to_user": "MikeSurpriseYou", "to_user_id": 244274806, "to_user_id_str": "244274806", "to_user_name": "Michael Guerra", "in_reply_to_status_id": 148839384265932800, "in_reply_to_status_id_str": "148839384265932800"}, +{"created_at": "Mon, 19 Dec 2011 18:58:39 +0000", "from_user": "Jack_Mullis", "from_user_id": 183343528, "from_user_id_str": "183343528", "from_user_name": "jack mullis", "geo": null, "id": 148839678953525250, "id_str": "148839678953525248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1446026142/129144614332424537_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1446026142/129144614332424537_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube video from @PheonixMMO http://t.co/r8ssHLxh IVIystical vs B0aty - Bringing 'Fun' into 'Runesc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:39 +0000", "from_user": "CJsMaui", "from_user_id": 109085110, "from_user_id_str": "109085110", "from_user_name": "Chef CJ", "geo": null, "id": 148839677582000130, "id_str": "148839677582000130", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/802508326/Maui-Chef-Christian-Jorgensen-150x150_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/802508326/Maui-Chef-Christian-Jorgensen-150x150_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Looking for tickets to the 2012 Hyundai Tournament of Champions? Later today, we'll announce details of our fun... http://t.co/771pCAVW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:39 +0000", "from_user": "CuteDutchess1", "from_user_id": 178102451, "from_user_id_str": "178102451", "from_user_name": "Adeloye Oyindamola", "geo": null, "id": 148839677368086530, "id_str": "148839677368086529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699009378/DSCN1605_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699009378/DSCN1605_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@Ausedah sorry.. Cudnt cme.. Unda haus arrest!!!... :(.. Hpe u had fun!!", "to_user": "Ausedah", "to_user_id": 279144130, "to_user_id_str": "279144130", "to_user_name": "ADESUA", "in_reply_to_status_id": 148839257497288700, "in_reply_to_status_id_str": "148839257497288704"}, +{"created_at": "Mon, 19 Dec 2011 18:58:38 +0000", "from_user": "HHHWendyHarris", "from_user_id": 419338450, "from_user_id_str": "419338450", "from_user_name": "Wendy Harris", "geo": null, "id": 148839676944457730, "id_str": "148839676944457728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694311038/hat_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694311038/hat_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@CheeringMegan (DM) Are you at least having some fun? (?-?) @BatmanRocks01 (IA) Hopefully her night gets better.", "to_user": "CheeringMegan", "to_user_id": 419795317, "to_user_id_str": "419795317", "to_user_name": "Megan Morse", "in_reply_to_status_id": 148814873986469900, "in_reply_to_status_id_str": "148814873986469888"}, +{"created_at": "Mon, 19 Dec 2011 18:58:38 +0000", "from_user": "_SunnysBaby", "from_user_id": 237748146, "from_user_id_str": "237748146", "from_user_name": "Lily Mae Moye \\u2665 \\u263A", "geo": null, "id": 148839676592132100, "id_str": "148839676592132096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701431001/IMG00323-20111215-1615_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701431001/IMG00323-20111215-1615_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @IAMJRoddyRod: I cant click up wit no stuck up bitch .. I like them pretty kinda goofy girls who love to have fun and got a sense of humor", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:38 +0000", "from_user": "frontierruckus", "from_user_id": 20338485, "from_user_id_str": "20338485", "from_user_name": "frontier ruckus", "geo": null, "id": 148839675140898800, "id_str": "148839675140898816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/348613541/n2310947_43314966_4614_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/348613541/n2310947_43314966_4614_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "fun game: random line, cummings or Seuss? also, listening exclusively to popcountry on morning drives to studio\\u2014should help shift some units", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:38 +0000", "from_user": "BryceParkers_", "from_user_id": 440618511, "from_user_id_str": "440618511", "from_user_name": "Bryce Parkers", "geo": null, "id": 148839674734059520, "id_str": "148839674734059520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701669041/tweet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701669041/tweet_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@kelseywilcox_ I wish you'd cheer up, that would make me happier. You didn't think that lunch was fun?", "to_user": "kelseywilcox_", "to_user_id": 433873438, "to_user_id_str": "433873438", "to_user_name": "Kelsey Wilcox", "in_reply_to_status_id": 148839113951416320, "in_reply_to_status_id_str": "148839113951416320"}, +{"created_at": "Mon, 19 Dec 2011 18:58:38 +0000", "from_user": "CorNEILiuZ", "from_user_id": 17371961, "from_user_id_str": "17371961", "from_user_name": "Neil Langley", "geo": null, "id": 148839674226552830, "id_str": "148839674226552832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1574974932/photo__1__normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1574974932/photo__1__normal.JPG", "source": "<a href="http://www.apple.com" rel="nofollow">iOS</a>", "text": "If climber brothers is still free in ios app store definitely pick it up. Fun little game.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:37 +0000", "from_user": "kristina_spin", "from_user_id": 249739262, "from_user_id_str": "249739262", "from_user_name": "Kristina Spinelli", "geo": null, "id": 148839672280391680, "id_str": "148839672280391680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1591857771/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591857771/me_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @officialjaden: Waking Up Is Not Fun http://t.co/E5cy8dZX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:37 +0000", "from_user": "MichelleHughes_", "from_user_id": 76866234, "from_user_id_str": "76866234", "from_user_name": "Michelle Hughes", "geo": null, "id": 148839671806443520, "id_str": "148839671806443520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1554668599/backgroundANTOC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554668599/backgroundANTOC_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "*smoochie* I am having tooooo much fun with this RT list *giggling* @scoutfinch75", "to_user": "ScoutFinch75", "to_user_id": 248295434, "to_user_id_str": "248295434", "to_user_name": "Anna", "in_reply_to_status_id": 148838718101401600, "in_reply_to_status_id_str": "148838718101401600"}, +{"created_at": "Mon, 19 Dec 2011 18:58:37 +0000", "from_user": "FollowVSG_", "from_user_id": 157724032, "from_user_id_str": "157724032", "from_user_name": "#TeamSingle", "geo": null, "id": 148839670967570430, "id_str": "148839670967570432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700278427/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700278427/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "You say west bloomfield is boring but everyday you tweet about fun stuff that you do at school that is in WEST BLOOMFIELD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:37 +0000", "from_user": "tomtom2194", "from_user_id": 25733255, "from_user_id_str": "25733255", "from_user_name": "Tom Waterland", "geo": null, "id": 148839669570863100, "id_str": "148839669570863104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1170024292/e044b350-7f5a-451e-a99f-b80464260aa2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1170024292/e044b350-7f5a-451e-a99f-b80464260aa2_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Watching The Killers bacause it's the only film in the house I havnt seen. Fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:36 +0000", "from_user": "pEpSz_AMG", "from_user_id": 372572963, "from_user_id_str": "372572963", "from_user_name": "Fuck you ", "geo": null, "id": 148839668685873150, "id_str": "148839668685873152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701507006/IMG00066-20111218-0037_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701507006/IMG00066-20111218-0037_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@chrismula1991 werd u out to DR my son..you already kno have fun and be safe", "to_user": "chrismula1991", "to_user_id": 110596243, "to_user_id_str": "110596243", "to_user_name": "$CAMPEE$", "in_reply_to_status_id": 148839060746682370, "in_reply_to_status_id_str": "148839060746682368"}, +{"created_at": "Mon, 19 Dec 2011 18:58:36 +0000", "from_user": "iamnotJUKE", "from_user_id": 59866419, "from_user_id_str": "59866419", "from_user_name": "Mr. Tolu Savage", "geo": null, "id": 148839667435966460, "id_str": "148839667435966465", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694346819/IMG-20111214-00909_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694346819/IMG-20111214-00909_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"Ah u...its not good o..wt u did to me...u just left me alone. \"@Dorchess: RT datteboy: Ah u...ko da o..nko ti o shey fun mi..o kan fimi le", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:36 +0000", "from_user": "lizzybethyx", "from_user_id": 149252537, "from_user_id_str": "149252537", "from_user_name": "Liz Goaley", "geo": null, "id": 148839666089603070, "id_str": "148839666089603074", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691304542/IMG02100-20111213-1728_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691304542/IMG02100-20111213-1728_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "double your pleasure, double your fun ..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:36 +0000", "from_user": "MadHatter180", "from_user_id": 152576959, "from_user_id_str": "152576959", "from_user_name": "Michael Smith", "geo": null, "id": 148839665363976200, "id_str": "148839665363976193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@TheLameGear Hell yes, my brother! Shadow sent me a message that damage is worth the pain, though. Fun, fun, fun tonight!", "to_user": "TheLameGear", "to_user_id": 413554752, "to_user_id_str": "413554752", "to_user_name": "Adam Bennett", "in_reply_to_status_id": 148829153658015740, "in_reply_to_status_id_str": "148829153658015744"}, +{"created_at": "Mon, 19 Dec 2011 18:58:35 +0000", "from_user": "pittfan58", "from_user_id": 263445060, "from_user_id_str": "263445060", "from_user_name": "LatinoPapi", "geo": null, "id": 148839664290242560, "id_str": "148839664290242560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1395007814/y5xOwAD8_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1395007814/y5xOwAD8_normal", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @TweetKissKara: Having a little reindeer fun with @KatieBanksDD \\uD83D\\uDC8B\\uD83C\\uDF84\\uD83C\\uDF85 http://t.co/Ae0VXZZk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:35 +0000", "from_user": "LookitsKeith", "from_user_id": 15910794, "from_user_id_str": "15910794", "from_user_name": "LookitsKeith", "geo": null, "id": 148839664084713470, "id_str": "148839664084713474", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1655942722/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655942722/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Just Tokyo drifted through an S bend in a small town.. I guess blizzards can be deadly AND fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:35 +0000", "from_user": "ErikaaDSmith", "from_user_id": 383224790, "from_user_id_str": "383224790", "from_user_name": "Erikaa D' Smith", "geo": null, "id": 148839663975677950, "id_str": "148839663975677952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1603525167/Mil_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1603525167/Mil_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @officialjaden: Waking Up Is Not Fun http://t.co/E5cy8dZX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:35 +0000", "from_user": "gricima", "from_user_id": 87395027, "from_user_id_str": "87395027", "from_user_name": "gricima anggarahani", "geo": null, "id": 148839663694651400, "id_str": "148839663694651392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1672309223/330855546_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672309223/330855546_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Couple who have gud music taste RT @ielegabr: indeed, they r fun :D \"gricima: Not yet ser, I'm too excited to watch endah N resha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:35 +0000", "from_user": "YewandeFashola", "from_user_id": 132972964, "from_user_id_str": "132972964", "from_user_name": " Wendy \\u2020", "geo": null, "id": 148839662721572860, "id_str": "148839662721572864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677767850/331023300_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677767850/331023300_normal.jpg", "source": "Tweet for iPhone and iPad", "text": "@shikemie Awww thanks for coming dearie,had fun :*", "to_user": "shikemie", "to_user_id": 132971543, "to_user_id_str": "132971543", "to_user_name": "Sikemi Ifederu "}, +{"created_at": "Mon, 19 Dec 2011 18:58:35 +0000", "from_user": "XLil_CurlettX", "from_user_id": 45488190, "from_user_id_str": "45488190", "from_user_name": "Ray MoNoRe", "geo": null, "id": 148839662339895300, "id_str": "148839662339895296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701211415/IMG_20111218_140122_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701211415/IMG_20111218_140122_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Was wit my boo thang til 5:30 this morning we had fun laughing at each other", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:35 +0000", "from_user": "MashriqR", "from_user_id": 358748393, "from_user_id_str": "358748393", "from_user_name": "abdullah S", "geo": null, "id": 148839662105010180, "id_str": "148839662105010176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670803059/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670803059/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@SanaTheBawsss I am sad for you just go out and get fun", "to_user": "SanaTheBawsss", "to_user_id": 378610578, "to_user_id_str": "378610578", "to_user_name": "Sana Tayyib", "in_reply_to_status_id": 148839247875543040, "in_reply_to_status_id_str": "148839247875543041"}, +{"created_at": "Mon, 19 Dec 2011 18:58:35 +0000", "from_user": "Haute_Luxuries_", "from_user_id": 327730993, "from_user_id_str": "327730993", "from_user_name": " Tee ", "geo": null, "id": 148839661819793400, "id_str": "148839661819793408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1647899468/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647899468/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @Lab3LM3FLY: Had fun wit my Bitch @Haute_Luxuries_ :-) we need to do it again girlie / Repeat w/ dinner?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:35 +0000", "from_user": "iamJammyTiczon", "from_user_id": 383745127, "from_user_id_str": "383745127", "from_user_name": "Jammy Ticzon", "geo": +{"coordinates": [14.726,121.0668], "type": "Point"}, "id": 148839661580714000, "id_str": "148839661580713984", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1678981656/WUosuwkr_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678981656/WUosuwkr_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@iamstanshady it was fun-filled. Sakit ng mga paa ko at malat ako. Hahaha =)", "to_user": "iamstanshady", "to_user_id": 61134444, "to_user_id_str": "61134444", "to_user_name": "Stan Shady", "in_reply_to_status_id": 148836819730055170, "in_reply_to_status_id_str": "148836819730055169"}, +{"created_at": "Mon, 19 Dec 2011 18:58:35 +0000", "from_user": "AiichaLew", "from_user_id": 34244691, "from_user_id_str": "34244691", "from_user_name": "Fergalicious Aiicha", "geo": null, "id": 148839660993515520, "id_str": "148839660993515520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676185685/TdjwX2vS_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676185685/TdjwX2vS_normal", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "My TL is dry! Where are my fun people?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:35 +0000", "from_user": "hansonquotes", "from_user_id": 174520729, "from_user_id_str": "174520729", "from_user_name": "Hanson Quotes", "geo": null, "id": 148839660444061700, "id_str": "148839660444061696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1653602928/1321997763164_132515_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653602928/1321997763164_132515_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "\"Life isn't about just forgetting serious stuff & having fun. U've just got to do it all & make it happen while u're there.\" - Taylor Hanson", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:34 +0000", "from_user": "LouFuszToyota", "from_user_id": 288873433, "from_user_id_str": "288873433", "from_user_name": "Lou Fusz Toyota", "geo": null, "id": 148839660267913200, "id_str": "148839660267913216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1508616433/IMG_8910_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1508616433/IMG_8910_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@mofkntep Mine was pretty fun. Although not quite \"whirlwind\" worthy! Think I'm overdue for another road trip.Haven't been to Nashville yet!", "to_user": "mofkntep", "to_user_id": 20684656, "to_user_id_str": "20684656", "to_user_name": "tep", "in_reply_to_status_id": 148824562501550080, "in_reply_to_status_id_str": "148824562501550080"}, +{"created_at": "Mon, 19 Dec 2011 18:58:34 +0000", "from_user": "JoleneScreams", "from_user_id": 429316511, "from_user_id_str": "429316511", "from_user_name": "Jolene Silva", "geo": null, "id": 148839659932360700, "id_str": "148839659932360704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1684270822/Jolene_Red_Shirt_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684270822/Jolene_Red_Shirt_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "i feel so much better today last night wasnt fun:/", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:34 +0000", "from_user": "Reaper_ZA", "from_user_id": 47710996, "from_user_id_str": "47710996", "from_user_name": "Hilton", "geo": null, "id": 148839659684904960, "id_str": "148839659684904960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/716374747/Reaper_ZA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/716374747/Reaper_ZA_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Ruby_Knox @futanaria hope u have fun and \"take it to the base\" \\uD83D\\uDE01", "to_user": "Ruby_Knox", "to_user_id": 34159256, "to_user_id_str": "34159256", "to_user_name": "\\u2605 Ruby Knox \\u2605", "in_reply_to_status_id": 148837165051285500, "in_reply_to_status_id_str": "148837165051285504"}, +{"created_at": "Mon, 19 Dec 2011 18:58:34 +0000", "from_user": "x_PussInBOOTS", "from_user_id": 44448917, "from_user_id_str": "44448917", "from_user_name": "C.Shontae", "geo": null, "id": 148839658720215040, "id_str": "148839658720215041", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691294464/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691294464/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@eff_yuu i have , its soooo FUN\\n!", "to_user": "eff_yuu", "to_user_id": 78040139, "to_user_id_str": "78040139", "to_user_name": "Tae.", "in_reply_to_status_id": 148838982548066300, "in_reply_to_status_id_str": "148838982548066304"}, +{"created_at": "Mon, 19 Dec 2011 18:58:34 +0000", "from_user": "_iLove_Candy", "from_user_id": 312729181, "from_user_id_str": "312729181", "from_user_name": "Guetty", "geo": null, "id": 148839657814237200, "id_str": "148839657814237184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1689766495/0629_BOB_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689766495/0629_BOB_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "Flirting with people is fun :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:34 +0000", "from_user": "MissesTomlinson", "from_user_id": 97490937, "from_user_id_str": "97490937", "from_user_name": "\\u0432\\u03B1\\u2202\\u0454 \\u0442\\u03C3\\u043C\\u2113\\u03B9\\u03B7\\u0455\\u03C3\\u03B7. \\u03B5\\u0457\\u0437", "geo": null, "id": 148839656673394700, "id_str": "148839656673394688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700807542/lthot_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700807542/lthot_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Who thinks im funny enough??You should see me in the class, aha! I always ask silly questions or make fun of teachers. shhh... EVERY1 LAUGH!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:34 +0000", "from_user": "Bambangpoerbo", "from_user_id": 35029825, "from_user_id_str": "35029825", "from_user_name": "Bambang Tutuko", "geo": null, "id": 148839656614662140, "id_str": "148839656614662144", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1430385472/batuk11_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1430385472/batuk11_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Jadi tidak bisa tidur. Untung tulisan sudah rampung. THX a lot. Have fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:33 +0000", "from_user": "ingridkimura1", "from_user_id": 429613633, "from_user_id_str": "429613633", "from_user_name": "ingrid kimura", "geo": null, "id": 148839655410901000, "id_str": "148839655410900992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1676631787/274805_1482174867_1164012600_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676631787/274805_1482174867_1164012600_n_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "@structx yeah fun ah starbucks http://t.co/PjUHPx4M", "to_user": "structx", "to_user_id": 272890761, "to_user_id_str": "272890761", "to_user_name": "Fee"}, +{"created_at": "Mon, 19 Dec 2011 18:58:33 +0000", "from_user": "allie_eastburn", "from_user_id": 359760204, "from_user_id_str": "359760204", "from_user_name": "Alexandra Eastburn", "geo": null, "id": 148839655146663940, "id_str": "148839655146663937", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1659770509/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659770509/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@CKinnan6 maybe haha just Maybe ! Well have fun and dont kill yourself !", "to_user": "CKinnan6", "to_user_id": 68042311, "to_user_id_str": "68042311", "to_user_name": "Cory Kinnan", "in_reply_to_status_id": 148837651573772300, "in_reply_to_status_id_str": "148837651573772289"}, +{"created_at": "Mon, 19 Dec 2011 18:58:33 +0000", "from_user": "destinyzac", "from_user_id": 438569925, "from_user_id_str": "438569925", "from_user_name": "destiny robinson", "geo": null, "id": 148839653972254720, "id_str": "148839653972254720", "iso_language_code": "is", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "im having fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:33 +0000", "from_user": "jcummens925", "from_user_id": 388009769, "from_user_id_str": "388009769", "from_user_name": "Jessica Cummens", "geo": null, "id": 148839653296971780, "id_str": "148839653296971778", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1595002923/profpic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1595002923/profpic_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @jilllalumiere: @JillGrzesiuk have fun at the house alone tonight!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:33 +0000", "from_user": "Life_In_Black", "from_user_id": 113754862, "from_user_id_str": "113754862", "from_user_name": "Carson Butz", "geo": null, "id": 148839653288579070, "id_str": "148839653288579073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1265421667/P1000097_CUTOUT_TWITTER_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1265421667/P1000097_CUTOUT_TWITTER_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Sitting here listening to Siberia, and remembering all the fun I had at the awesome Vancouver concert. :) @lights", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:33 +0000", "from_user": "iainhayton", "from_user_id": 285771259, "from_user_id_str": "285771259", "from_user_name": "iain hayton", "geo": null, "id": 148839652319707140, "id_str": "148839652319707136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1428119597/FacebookHomescreenImage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1428119597/FacebookHomescreenImage_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Masebomb @kevj91 @chrisjparkinson hmmmmm it could be fun!!!!", "to_user": "Masebomb", "to_user_id": 197505816, "to_user_id_str": "197505816", "to_user_name": "Chris Mason", "in_reply_to_status_id": 148838896447397900, "in_reply_to_status_id_str": "148838896447397888"}, +{"created_at": "Mon, 19 Dec 2011 18:58:32 +0000", "from_user": "jimmydan29", "from_user_id": 25466305, "from_user_id_str": "25466305", "from_user_name": "James Kitchen", "geo": null, "id": 148839651208200200, "id_str": "148839651208200192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1592048129/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592048129/avatar_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@JohnFryett cool! Have fun!!!!", "to_user": "JohnFryett", "to_user_id": 408634883, "to_user_id_str": "408634883", "to_user_name": "John Fryett", "in_reply_to_status_id": 148839593867870200, "in_reply_to_status_id_str": "148839593867870208"}, +{"created_at": "Mon, 19 Dec 2011 18:58:32 +0000", "from_user": "JustifiedJoker", "from_user_id": 168847778, "from_user_id_str": "168847778", "from_user_name": "Marissa Myers", "geo": null, "id": 148839649387884540, "id_str": "148839649387884544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696463870/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696463870/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "How fun. I would mention him but then his phone would go off..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:32 +0000", "from_user": "oneclassicgent", "from_user_id": 28820146, "from_user_id_str": "28820146", "from_user_name": "Philippe E. C. Andal", "geo": null, "id": 148839648628703230, "id_str": "148839648628703232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1673603523/2cc8lLLP_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673603523/2cc8lLLP_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "Well that Living Social place wasn't that bad. It was actually kind of fun,esp when that white woman started talking about Jefferson St. LOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:32 +0000", "from_user": "cassiema93", "from_user_id": 64485512, "from_user_id_str": "64485512", "from_user_name": "\\u2605\\u2606Cassie\\u2606\\u2605", "geo": null, "id": 148839648326725630, "id_str": "148839648326725633", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1523325397/GWyht0gL_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1523325397/GWyht0gL_normal", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Girls just wanna have fun! \\uD83D\\uDC8B\\uD83D\\uDC6F\\uD83D\\uDC59\\uD83C\\uDF80\\uD83D\\uDC51\\uD83D\\uDC8E\\uD83D\\uDC8D\\uD83D\\uDC84\\uD83D\\uDC60\\uD83C\\uDF89\\uD83D\\uDEBA\\uD83D\\uDC83", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:31 +0000", "from_user": "Arc_1o1", "from_user_id": 93289768, "from_user_id_str": "93289768", "from_user_name": "kevin ferris", "geo": null, "id": 148839647185866750, "id_str": "148839647185866752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1593545034/5628635058824783410_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593545034/5628635058824783410_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "my brother hid my walking stick, when he was here the other day. Was great fun trying to find it when i needed to go out \\u00AC\\u00AC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:31 +0000", "from_user": "emmma_reneee", "from_user_id": 247447930, "from_user_id_str": "247447930", "from_user_name": "emma cram", "geo": null, "id": 148839646258933760, "id_str": "148839646258933760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697260688/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697260688/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "A bunch of people kept making fun of how short my arms are today it hurt my feelings \\uD83D\\uDE14", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:31 +0000", "from_user": "SetangonaJonas", "from_user_id": 76933208, "from_user_id_str": "76933208", "from_user_name": "His Slayer", "geo": null, "id": 148839645604618240, "id_str": "148839645604618241", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1615966427/rtzerz_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615966427/rtzerz_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@SwagxLandx so not fair >.< sounds....chilling trololol enjoy & have fun ;D I'm going to visit my fam with my mom in India, so excited!", "to_user": "SwagxLandx", "to_user_id": 257643692, "to_user_id_str": "257643692", "to_user_name": "Mariannah. ~", "in_reply_to_status_id": 148838494255583230, "in_reply_to_status_id_str": "148838494255583232"}, +{"created_at": "Mon, 19 Dec 2011 18:58:31 +0000", "from_user": "ozelyxe", "from_user_id": 282530989, "from_user_id_str": "282530989", "from_user_name": "Taras", "geo": null, "id": 148839643725565950, "id_str": "148839643725565952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1356482358/487_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1356482358/487_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/grYFMvtg Have Fun Playing the Market (9780805936216) Rex Miller", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:30 +0000", "from_user": "Neion79", "from_user_id": 180364006, "from_user_id_str": "180364006", "from_user_name": "Neion Aleister", "geo": null, "id": 148839642328862720, "id_str": "148839642328862722", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662378726/cheshire_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662378726/cheshire_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@AI_DEATHGAZE me too! in my country~ it's fun~", "to_user": "AI_DEATHGAZE", "to_user_id": 412561646, "to_user_id_str": "412561646", "to_user_name": "\\u85CD", "in_reply_to_status_id": 148839148151779330, "in_reply_to_status_id_str": "148839148151779329"}, +{"created_at": "Mon, 19 Dec 2011 18:58:30 +0000", "from_user": "Griselnat", "from_user_id": 431745240, "from_user_id_str": "431745240", "from_user_name": "Grisel Lian", "geo": null, "id": 148839641380950000, "id_str": "148839641380950016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681125704/kc1iisiuis_133244000-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681125704/kc1iisiuis_133244000-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Bits and Pieces Hot Dog Vendor Bank: This nostalgic cast iron bank makes it fun to save some cash. Just turn the... http://t.co/NvHQP2Cm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:30 +0000", "from_user": "Britt_Brat41", "from_user_id": 256533372, "from_user_id_str": "256533372", "from_user_name": "*Brittany\\u2022Johnson\\u2122", "geo": null, "id": 148839640445624320, "id_str": "148839640445624320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1619847217/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619847217/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@MarqieMarq loving it marq, we went snorkeling yesterday and that was too much fun... It threw me off when I first looked down tho...", "to_user": "MarqieMarq", "to_user_id": 141337362, "to_user_id_str": "141337362", "to_user_name": "Marques Johnson", "in_reply_to_status_id": 148513768463269900, "in_reply_to_status_id_str": "148513768463269890"}, +{"created_at": "Mon, 19 Dec 2011 18:58:29 +0000", "from_user": "_thesim", "from_user_id": 317345360, "from_user_id_str": "317345360", "from_user_name": "Simran Sagoo", "geo": null, "id": 148839636939194370, "id_str": "148839636939194368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697117184/Picture_529hh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697117184/Picture_529hh_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @HumzaProduction: Just head butted the wall... Was a shit idea... Wasnt fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:29 +0000", "from_user": "ItzJelllyyBean", "from_user_id": 241348944, "from_user_id_str": "241348944", "from_user_name": "Sammi Moore", "geo": null, "id": 148839635295014900, "id_str": "148839635295014912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701578289/profile_image_1324272450974_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701578289/profile_image_1324272450974_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "Had tons of fun in The D but im ready to be home! Lil dribblers Bball draft today! Aayyee!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:28 +0000", "from_user": "__Bessie", "from_user_id": 195556700, "from_user_id_str": "195556700", "from_user_name": "K\\u00E9lan . ", "geo": null, "id": 148839634548428800, "id_str": "148839634548428800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1690706057/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690706057/profile_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "I guess I look for fun first , and let love just .. happen .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:28 +0000", "from_user": "texassunny2009", "from_user_id": 66463313, "from_user_id_str": "66463313", "from_user_name": "Kelly ", "geo": null, "id": 148839633638264830, "id_str": "148839633638264832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1390492942/kelly_ass__part_2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1390492942/kelly_ass__part_2_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Want me to make your Monday better??? lol...I'm here early this afternoon, let's have some fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:28 +0000", "from_user": "Samjam_Cbreezy", "from_user_id": 323488607, "from_user_id_str": "323488607", "from_user_name": "Samjam,\\u2661", "geo": null, "id": 148839632178659330, "id_str": "148839632178659328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691644977/DSC00997_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691644977/DSC00997_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "wow im fucking weird! Im excited to be revising tomorow; ..:| someone needs to smack some fun into me! :-(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:28 +0000", "from_user": "YoGirlsFavKappa", "from_user_id": 166724970, "from_user_id_str": "166724970", "from_user_name": "Antonio Guevara", "geo": null, "id": 148839631222358000, "id_str": "148839631222358016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1534597726/334278_1948222741084_1108036448_31720231_1416687_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534597726/334278_1948222741084_1108036448_31720231_1416687_o_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Happy birthday @kay_loray !!! You and @NUPEologist have fun on yalls one year celebration lol...two.little love birds lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:28 +0000", "from_user": "TweetN_ass_Tate", "from_user_id": 292738824, "from_user_id_str": "292738824", "from_user_name": "Doug sso Funny ", "geo": null, "id": 148839631163621380, "id_str": "148839631163621376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1391730074/083tV_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1391730074/083tV_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@ThatsSoMendes Good to see you following your dreams @TweetN_ass_Tate ! Have fun, be safe, & (cont) http://t.co/IDMSWjI0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:27 +0000", "from_user": "fauxbehati", "from_user_id": 275135616, "from_user_id_str": "275135616", "from_user_name": "Behati Prinsloo.", "geo": null, "id": 148839630974885900, "id_str": "148839630974885888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702387005/tumblr_lvsdayOav91qm8f4m_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702387005/tumblr_lvsdayOav91qm8f4m_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@fakestyles Because I'm 100% right, of course you have nothing else to say haha. Looks like you're having fun with other girls as it is so", "to_user": "fakestyles", "to_user_id": 374683143, "to_user_id_str": "374683143", "to_user_name": "Harry.", "in_reply_to_status_id": 148838589147516930, "in_reply_to_status_id_str": "148838589147516928"}, +{"created_at": "Mon, 19 Dec 2011 18:58:27 +0000", "from_user": "Allie_IsBetter", "from_user_id": 231653845, "from_user_id_str": "231653845", "from_user_name": "Tish Allie", "geo": null, "id": 148839629016141820, "id_str": "148839629016141824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701681419/11_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701681419/11_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Im_ALL_You_CEE its fun to be by yo self so yu can do wtf yu wanna=)", "to_user": "Im_ALL_You_CEE", "to_user_id": 318087390, "to_user_id_str": "318087390", "to_user_name": "Yours Truly. . . ", "in_reply_to_status_id": 148839397771591680, "in_reply_to_status_id_str": "148839397771591680"}, +{"created_at": "Mon, 19 Dec 2011 18:58:27 +0000", "from_user": "JB_Nicholson", "from_user_id": 189871951, "from_user_id_str": "189871951", "from_user_name": "Juliana Nicholson", "geo": null, "id": 148839628336676860, "id_str": "148839628336676864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1583773338/COM_and_Me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583773338/COM_and_Me_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @HubSpot: Not as fun as tweeting, but important: 5 Noteworthy Examples of Corporate Social Media Policies - http://t.co/bsI8n0ac", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:26 +0000", "from_user": "Hussam_farrash", "from_user_id": 327055890, "from_user_id_str": "327055890", "from_user_name": "Mr.brightside ", "geo": null, "id": 148839626486984700, "id_str": "148839626486984706", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676845742/hus___malek_scrubs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676845742/hus___malek_scrubs_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SaraAlAqeel hhhhhhhhhhhhh wallah last year kaanat mo3aana nafseyyah bas i had fun :D , enty masaar 9e77y ?", "to_user": "SaraAlAqeel", "to_user_id": 134886681, "to_user_id_str": "134886681", "to_user_name": "Saoirse", "in_reply_to_status_id": 148839396924334080, "in_reply_to_status_id_str": "148839396924334080"}, +{"created_at": "Mon, 19 Dec 2011 18:58:26 +0000", "from_user": "ExcelWords", "from_user_id": 438370981, "from_user_id_str": "438370981", "from_user_name": "Natalie Faiman", "geo": null, "id": 148839625119637500, "id_str": "148839625119637504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699331601/excel_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699331601/excel_logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @WeAreTeachers: Creative Ways Teachers Use Games to Make Learning Fun http://t.co/7DiSnf0c", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:26 +0000", "from_user": "rectenwaldyajf9", "from_user_id": 390314297, "from_user_id_str": "390314297", "from_user_name": "Rectenwald Reeves", "geo": null, "id": 148839624616321020, "id_str": "148839624616321024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@j_bloodworth http://t.co/Q2EdTGCZ", "to_user": "j_bloodworth", "to_user_id": 316664748, "to_user_id_str": "316664748", "to_user_name": "John Bloodworth", "in_reply_to_status_id": 148698349216858100, "in_reply_to_status_id_str": "148698349216858112"} +, +{"created_at": "Mon, 19 Dec 2011 18:58:28 +0000", "from_user": "Samjam_Cbreezy", "from_user_id": 323488607, "from_user_id_str": "323488607", "from_user_name": "Samjam,\\u2661", "geo": null, "id": 148839632178659330, "id_str": "148839632178659328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691644977/DSC00997_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691644977/DSC00997_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "wow im fucking weird! Im excited to be revising tomorow; ..:| someone needs to smack some fun into me! :-(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:28 +0000", "from_user": "YoGirlsFavKappa", "from_user_id": 166724970, "from_user_id_str": "166724970", "from_user_name": "Antonio Guevara", "geo": null, "id": 148839631222358000, "id_str": "148839631222358016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1534597726/334278_1948222741084_1108036448_31720231_1416687_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534597726/334278_1948222741084_1108036448_31720231_1416687_o_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Happy birthday @kay_loray !!! You and @NUPEologist have fun on yalls one year celebration lol...two.little love birds lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:28 +0000", "from_user": "TweetN_ass_Tate", "from_user_id": 292738824, "from_user_id_str": "292738824", "from_user_name": "Doug sso Funny ", "geo": null, "id": 148839631163621380, "id_str": "148839631163621376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1391730074/083tV_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1391730074/083tV_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@ThatsSoMendes Good to see you following your dreams @TweetN_ass_Tate ! Have fun, be safe, & (cont) http://t.co/IDMSWjI0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:27 +0000", "from_user": "fauxbehati", "from_user_id": 275135616, "from_user_id_str": "275135616", "from_user_name": "Behati Prinsloo.", "geo": null, "id": 148839630974885900, "id_str": "148839630974885888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702387005/tumblr_lvsdayOav91qm8f4m_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702387005/tumblr_lvsdayOav91qm8f4m_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@fakestyles Because I'm 100% right, of course you have nothing else to say haha. Looks like you're having fun with other girls as it is so", "to_user": "fakestyles", "to_user_id": 374683143, "to_user_id_str": "374683143", "to_user_name": "Harry.", "in_reply_to_status_id": 148838589147516930, "in_reply_to_status_id_str": "148838589147516928"}, +{"created_at": "Mon, 19 Dec 2011 18:58:27 +0000", "from_user": "Allie_IsBetter", "from_user_id": 231653845, "from_user_id_str": "231653845", "from_user_name": "Tish Allie", "geo": null, "id": 148839629016141820, "id_str": "148839629016141824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701681419/11_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701681419/11_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Im_ALL_You_CEE its fun to be by yo self so yu can do wtf yu wanna=)", "to_user": "Im_ALL_You_CEE", "to_user_id": 318087390, "to_user_id_str": "318087390", "to_user_name": "Yours Truly. . . ", "in_reply_to_status_id": 148839397771591680, "in_reply_to_status_id_str": "148839397771591680"}, +{"created_at": "Mon, 19 Dec 2011 18:58:27 +0000", "from_user": "JB_Nicholson", "from_user_id": 189871951, "from_user_id_str": "189871951", "from_user_name": "Juliana Nicholson", "geo": null, "id": 148839628336676860, "id_str": "148839628336676864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1583773338/COM_and_Me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583773338/COM_and_Me_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @HubSpot: Not as fun as tweeting, but important: 5 Noteworthy Examples of Corporate Social Media Policies - http://t.co/bsI8n0ac", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:26 +0000", "from_user": "Hussam_farrash", "from_user_id": 327055890, "from_user_id_str": "327055890", "from_user_name": "Mr.brightside ", "geo": null, "id": 148839626486984700, "id_str": "148839626486984706", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676845742/hus___malek_scrubs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676845742/hus___malek_scrubs_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SaraAlAqeel hhhhhhhhhhhhh wallah last year kaanat mo3aana nafseyyah bas i had fun :D , enty masaar 9e77y ?", "to_user": "SaraAlAqeel", "to_user_id": 134886681, "to_user_id_str": "134886681", "to_user_name": "Saoirse", "in_reply_to_status_id": 148839396924334080, "in_reply_to_status_id_str": "148839396924334080"}, +{"created_at": "Mon, 19 Dec 2011 18:58:26 +0000", "from_user": "ExcelWords", "from_user_id": 438370981, "from_user_id_str": "438370981", "from_user_name": "Natalie Faiman", "geo": null, "id": 148839625119637500, "id_str": "148839625119637504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699331601/excel_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699331601/excel_logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @WeAreTeachers: Creative Ways Teachers Use Games to Make Learning Fun http://t.co/7DiSnf0c", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:26 +0000", "from_user": "rectenwaldyajf9", "from_user_id": 390314297, "from_user_id_str": "390314297", "from_user_name": "Rectenwald Reeves", "geo": null, "id": 148839624616321020, "id_str": "148839624616321024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@j_bloodworth http://t.co/Q2EdTGCZ", "to_user": "j_bloodworth", "to_user_id": 316664748, "to_user_id_str": "316664748", "to_user_name": "John Bloodworth", "in_reply_to_status_id": 148698349216858100, "in_reply_to_status_id_str": "148698349216858112"}, +{"created_at": "Mon, 19 Dec 2011 18:58:26 +0000", "from_user": "VNESSAx", "from_user_id": 228346270, "from_user_id_str": "228346270", "from_user_name": "Vanessa -", "geo": null, "id": 148839624029110270, "id_str": "148839624029110272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1530167478/dddddddgsgsgs_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1530167478/dddddddgsgsgs_normal.PNG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @JASMINEVILLEGAS: @JASMINEVILLEGAS haha this is fun jasmine", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:26 +0000", "from_user": "Yeah_imTHATgirl", "from_user_id": 203654610, "from_user_id_str": "203654610", "from_user_name": "You're Ugly t(\\u2022_\\u2022t)", "geo": null, "id": 148839623890698240, "id_str": "148839623890698240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700371506/4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700371506/4_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Drama is always fun to watch when it doesn have shit to do with me", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:26 +0000", "from_user": "gabiisilvaaa", "from_user_id": 373168650, "from_user_id_str": "373168650", "from_user_name": "Gabriella Silva", "geo": null, "id": 148839623349649400, "id_str": "148839623349649409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1574401786/38291_145837315430614_100000130388078_438226_318244_n__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1574401786/38291_145837315430614_100000130388078_438226_318244_n__1__normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@kevzuniga @tayross_xoxo @klysmann01 @KalebSilvax not gunna be the same without youu !! Have fun and lovee you \\u2665", "to_user": "kevzuniga", "to_user_id": 298679030, "to_user_id_str": "298679030", "to_user_name": "Kevin Zuniga", "in_reply_to_status_id": 148813069672398850, "in_reply_to_status_id_str": "148813069672398848"}, +{"created_at": "Mon, 19 Dec 2011 18:58:26 +0000", "from_user": "TalithaSpinn907", "from_user_id": 439420448, "from_user_id_str": "439420448", "from_user_name": "Talitha Spinn", "geo": null, "id": 148839622816972800, "id_str": "148839622816972800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@emmmilyyy_ Don't you wish you had this $500 starbucks card http://t.co/GTLCTgwm", "to_user": "emmmilyyy_", "to_user_id": 21294218, "to_user_id_str": "21294218", "to_user_name": "Emily Elizabeth", "in_reply_to_status_id": 148838199182106620, "in_reply_to_status_id_str": "148838199182106627"}, +{"created_at": "Mon, 19 Dec 2011 18:58:25 +0000", "from_user": "KTMarie027", "from_user_id": 181065671, "from_user_id_str": "181065671", "from_user_name": "Katie Marie", "geo": +{"coordinates": [42.2356,-87.9843], "type": "Point"}, "id": 148839622103928830, "id_str": "148839622103928832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1560127057/myface_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1560127057/myface_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "my mother is yelling at construction workers for fun...#soembarrased", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:25 +0000", "from_user": "sorndum", "from_user_id": 122463230, "from_user_id_str": "122463230", "from_user_name": "\\u2665 Looksorn (*-oo-*)", "geo": null, "id": 148839621814517760, "id_str": "148839621814517761", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1594655813/3444_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1594655813/3444_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "I am fat >< \\n Have fun eating ^___^\\n (-00-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:25 +0000", "from_user": "Scar_Ohara", "from_user_id": 49022356, "from_user_id_str": "49022356", "from_user_name": "Sheri Nicole", "geo": null, "id": 148839619918700540, "id_str": "148839619918700544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699631574/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699631574/profile_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "This is gonna be fun!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:25 +0000", "from_user": "GretchenGary", "from_user_id": 97797901, "from_user_id_str": "97797901", "from_user_name": "Gretchen Gary", "geo": null, "id": 148839619163725820, "id_str": "148839619163725824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/582764853/GretchenGary_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/582764853/GretchenGary_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Starbucks Holiday Cups Come to Life With Augmented Reality App http://t.co/tWGx90CY [just tried this - a little slow to load, but fun]", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:25 +0000", "from_user": "_Britt_Renee_", "from_user_id": 411799813, "from_user_id_str": "411799813", "from_user_name": "Brittney Foster", "geo": null, "id": 148839619096616960, "id_str": "148839619096616960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1638691261/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638691261/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TheFireSigns: #Leo here to learn what they want, how to have fun and be happy. And how to make it all happen.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:25 +0000", "from_user": "MiSs_LaDyGreeNe", "from_user_id": 405625254, "from_user_id_str": "405625254", "from_user_name": "courtney greene", "geo": null, "id": 148839618891104260, "id_str": "148839618891104256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676254898/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676254898/profile_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "@reddrosie LMFAO!!! I'll pass!!! I want the full effect! Memories of mkn a baby! Lol... Thts the fun part!", "to_user": "reddrosie", "to_user_id": 27731107, "to_user_id_str": "27731107", "to_user_name": "Red Rose.", "in_reply_to_status_id": 148839036742668300, "in_reply_to_status_id_str": "148839036742668289"}, +{"created_at": "Mon, 19 Dec 2011 18:58:24 +0000", "from_user": "aimeecrackhouse", "from_user_id": 273479200, "from_user_id_str": "273479200", "from_user_name": "Aimee Victoria", "geo": null, "id": 148839617506979840, "id_str": "148839617506979840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687768062/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687768062/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@TFLN: (586): It was fun until the stripper told me it was her first day and started crying.\\u201D lmfao @__jackieq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:24 +0000", "from_user": "Malousak", "from_user_id": 48035190, "from_user_id_str": "48035190", "from_user_name": "Malousak Salvatore \\u2665", "geo": null, "id": 148839616663928830, "id_str": "148839616663928832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700018152/delena_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700018152/delena_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@JovannaCarolyn OOOOO I can see where this conversation is leading, lol! :)) Well at least #Nian are having fun every night :))", "to_user": "JovannaCarolyn", "to_user_id": 376432078, "to_user_id_str": "376432078", "to_user_name": "Jovanna Carolyn", "in_reply_to_status_id": 148837427010748400, "in_reply_to_status_id_str": "148837427010748416"}, +{"created_at": "Mon, 19 Dec 2011 18:58:24 +0000", "from_user": "aidahsulaiman", "from_user_id": 432685957, "from_user_id_str": "432685957", "from_user_name": "Aid\\u039Eng \\u2655", "geo": null, "id": 148839616462594050, "id_str": "148839616462594049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700863729/295473_1896088367722_1406996640_31661238_1321185_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700863729/295473_1896088367722_1406996640_31661238_1321185_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Islam Gives 5 Solutions 2 Bring Unity\\n1 Avoid Useless Talk\\n2 Avoid Pet Names\\n3 Avoid Making Fun Of Others\\n4 Avoid Anger\\n5 Speak Truth.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:24 +0000", "from_user": "SimoRoth", "from_user_id": 141209614, "from_user_id_str": "141209614", "from_user_name": "Simon Roth", "geo": null, "id": 148839616097693700, "id_str": "148839616097693697", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1637572094/SimonRoth_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637572094/SimonRoth_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ek6891 Doooo ittt. The bullet time mechanic is fun enough to make it through 1 and then 2 will be a great crescendo!", "to_user": "ek6891", "to_user_id": 19341973, "to_user_id_str": "19341973", "to_user_name": "Emily King", "in_reply_to_status_id": 148838143804719100, "in_reply_to_status_id_str": "148838143804719105"}, +{"created_at": "Mon, 19 Dec 2011 18:58:24 +0000", "from_user": "RunninBY_FAITH", "from_user_id": 236458019, "from_user_id_str": "236458019", "from_user_name": "Ashton kush", "geo": null, "id": 148839615636320260, "id_str": "148839615636320257", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695564340/RunninBY_FAITH_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695564340/RunninBY_FAITH_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @ambyytoopoppin: had so much fun with my Cus @RunninBY_FAITH & sisters last nite , had a slumber now on the way to the mall , love them \\uD83D\\uDC93", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:24 +0000", "from_user": "betwonder99", "from_user_id": 275533309, "from_user_id_str": "275533309", "from_user_name": "bethan mcr wonderley", "geo": null, "id": 148839615443374080, "id_str": "148839615443374081", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1650474850/xsvds_059_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650474850/xsvds_059_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MarcuscollinsUK have fun marcus<3", "to_user": "MarcuscollinsUK", "to_user_id": 370448015, "to_user_id_str": "370448015", "to_user_name": "Marcus Collins", "in_reply_to_status_id": 148839438309527550, "in_reply_to_status_id_str": "148839438309527553"}, +{"created_at": "Mon, 19 Dec 2011 18:58:24 +0000", "from_user": "Ricardaore", "from_user_id": 386034026, "from_user_id_str": "386034026", "from_user_name": "Ricarda Bartimus", "geo": null, "id": 148839615367888900, "id_str": "148839615367888896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1575438083/5tq1tjm55h_122437433_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575438083/5tq1tjm55h_122437433_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Merry frigging Mithras) has probably walked into a toy store, looked at the pink section full of \\u0093_girl_ stuff\\u0094 and... http://t.co/Hlm29l2e", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:24 +0000", "from_user": "Sue_Nahmi", "from_user_id": 381293869, "from_user_id_str": "381293869", "from_user_name": "Chick Jagger", "geo": null, "id": 148839614524817400, "id_str": "148839614524817408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680409484/PicsIn_1323326544874_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680409484/PicsIn_1323326544874_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "@SiMpliCity_S that's great. I'm glad you had fun. Idk, I'm gonna gonna celebrate karina bday, u going?", "to_user": "SiMpliCity_S", "to_user_id": 217180200, "to_user_id_str": "217180200", "to_user_name": "Sheena Da Diamond", "in_reply_to_status_id": 148837318848032770, "in_reply_to_status_id_str": "148837318848032768"}, +{"created_at": "Mon, 19 Dec 2011 18:58:24 +0000", "from_user": "xPerfectMistake", "from_user_id": 199027714, "from_user_id_str": "199027714", "from_user_name": "Arminda Tario", "geo": null, "id": 148839614319304700, "id_str": "148839614319304704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1642733538/us6642KJ_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642733538/us6642KJ_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "So if @_ValletThaBenz @Skate_nBake come through it will be the most fun (:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:24 +0000", "from_user": "HijackHibaq", "from_user_id": 324322794, "from_user_id_str": "324322794", "from_user_name": "Hibaq Osman", "geo": null, "id": 148839614273175550, "id_str": "148839614273175553", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1650776727/shorter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650776727/shorter_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "i go through company like it's nothing. no bitterness. i just move on. meeting people is so fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:23 +0000", "from_user": "arabswag33", "from_user_id": 340669205, "from_user_id_str": "340669205", "from_user_name": "Fahad Yousif", "geo": null, "id": 148839612930994180, "id_str": "148839612930994176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688191510/229243_1990891768414_1126968466_32329007_7941970_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688191510/229243_1990891768414_1126968466_32329007_7941970_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @AlexChopjian: @arabswag33 thanks, have fun in the swag capital of the world!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:23 +0000", "from_user": "Rungo2200", "from_user_id": 30195469, "from_user_id_str": "30195469", "from_user_name": "Necro Phoenix ", "geo": null, "id": 148839612687728640, "id_str": "148839612687728640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1132733435/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1132733435/profile_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Alyssa_Milano Happy Birthday lady! Hope its fun and full blessings!", "to_user": "Alyssa_Milano", "to_user_id": 26642006, "to_user_id_str": "26642006", "to_user_name": "Alyssa Milano", "in_reply_to_status_id": 148836474232651780, "in_reply_to_status_id_str": "148836474232651776"}, +{"created_at": "Mon, 19 Dec 2011 18:58:23 +0000", "from_user": "IM_Kinqq_Nee", "from_user_id": 247577028, "from_user_id_str": "247577028", "from_user_name": "Kinqq Nee Irdaf!!!", "geo": null, "id": 148839610364067840, "id_str": "148839610364067841", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702594464/meeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702594464/meeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@iceses_ayanna oh.! you suckd we had fun.! wyd.?!", "to_user": "iceses_ayanna", "to_user_id": 299444610, "to_user_id_str": "299444610", "to_user_name": "Dance is my life :)", "in_reply_to_status_id": 148839362707197950, "in_reply_to_status_id_str": "148839362707197952"}, +{"created_at": "Mon, 19 Dec 2011 18:58:23 +0000", "from_user": "OJ_1207", "from_user_id": 369084751, "from_user_id_str": "369084751", "from_user_name": "Miss J", "geo": null, "id": 148839610078871550, "id_str": "148839610078871552", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680643504/IMG00265-20110623-0749_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680643504/IMG00265-20110623-0749_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@Alyssa_Milano Happy Birthday :) glad u enjoying it! #fun #party #joy", "to_user": "Alyssa_Milano", "to_user_id": 26642006, "to_user_id_str": "26642006", "to_user_name": "Alyssa Milano", "in_reply_to_status_id": 148836474232651780, "in_reply_to_status_id_str": "148836474232651776"}, +{"created_at": "Mon, 19 Dec 2011 18:58:22 +0000", "from_user": "ZoneBritneyS", "from_user_id": 378555068, "from_user_id_str": "378555068", "from_user_name": "Fashion Victim.", "geo": null, "id": 148839609839779840, "id_str": "148839609839779842", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688910673/374853_276305005746192_182324651810895_772879_677508060_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688910673/374853_276305005746192_182324651810895_772879_677508060_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @britneyspears: Still glowing! About to jump on a plane to Planet Hollywood in Vegas. Throwing a Bday Party for Jason at Chateau Night Club. So fun. Xxoo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:22 +0000", "from_user": "Cherrimocha", "from_user_id": 44673667, "from_user_id_str": "44673667", "from_user_name": "Cherri \\u2661", "geo": null, "id": 148839609818808320, "id_str": "148839609818808320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1684923144/331218484_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684923144/331218484_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@TeaAndRedVelvet yh boo,thai silks fun!always have a good night there!\\u263A", "to_user": "TeaAndRedVelvet", "to_user_id": 422469709, "to_user_id_str": "422469709", "to_user_name": "ChorleySocialite", "in_reply_to_status_id": 148838455940624400, "in_reply_to_status_id_str": "148838455940624384"}, +{"created_at": "Mon, 19 Dec 2011 18:58:22 +0000", "from_user": "MarvinAvacado", "from_user_id": 312377866, "from_user_id_str": "312377866", "from_user_name": "Marvin Alvarado.", "geo": null, "id": 148839609000919040, "id_str": "148839609000919040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694073256/Photo0012_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694073256/Photo0012_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "#IWasThatKid that made fun of others because I was hurting.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:22 +0000", "from_user": "EileneMac", "from_user_id": 274740477, "from_user_id_str": "274740477", "from_user_name": "Eilene Maclaskeyyy", "geo": null, "id": 148839608115929100, "id_str": "148839608115929088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701029180/IMG_9742_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701029180/IMG_9742_normal.JPG", "source": "<a href="http://www.htc.com" rel="nofollow">HTC Peep</a>", "text": "Ew. Finals. This is gonna be fun. :(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:21 +0000", "from_user": "veijeish", "from_user_id": 340802351, "from_user_id_str": "340802351", "from_user_name": "jasinth veijeish", "geo": null, "id": 148839602927583230, "id_str": "148839602927583232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1532650513/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1532650513/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I wish to celebrate lik I did it in ma childhood! Wif momma & dadda! Crackers! Fun!!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:21 +0000", "from_user": "JanetArmyUK", "from_user_id": 381618574, "from_user_id_str": "381618574", "from_user_name": "the name's annieee \\u2729", "geo": null, "id": 148839602009026560, "id_str": "148839602009026563", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698741012/469474605_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698741012/469474605_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @JanetJealousy: Dublin tonight :) busy busy. Havn't been in a while so it should be great fun apart from the early start tomorrow ;.;", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:20 +0000", "from_user": "Rachsilverstein", "from_user_id": 107091958, "from_user_id_str": "107091958", "from_user_name": "Rachel Silverstein", "geo": null, "id": 148839601258242050, "id_str": "148839601258242049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695098926/313694_10150302992492117_615432116_8538045_1295546739_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695098926/313694_10150302992492117_615432116_8538045_1295546739_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "My shoulders are so boney. So fun to tap them. My entertainment for the night", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:20 +0000", "from_user": "komigolmi", "from_user_id": 189225839, "from_user_id_str": "189225839", "from_user_name": "martin komarek", "geo": null, "id": 148839601224683520, "id_str": "148839601224683520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1164770346/prof_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1164770346/prof_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube video http://t.co/QPg93TVQ Okresn\\u00ED p\\u0159ebor - Fun Din Dung", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:20 +0000", "from_user": "toyotta_KAMRI", "from_user_id": 39149742, "from_user_id_str": "39149742", "from_user_name": "Kamri ; toyottaCamry", "geo": null, "id": 148839600729767940, "id_str": "148839600729767936", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1672434885/ka_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672434885/ka_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "dev today <<<he's no fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:20 +0000", "from_user": "ThongBoyyy", "from_user_id": 439749231, "from_user_id_str": "439749231", "from_user_name": "REAL MEN WEAR THONGS", "geo": null, "id": 148839600541024260, "id_str": "148839600541024256", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699546148/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699546148/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Kayla_MaeBiotch haha sounds fun", "to_user": "Kayla_MaeBiotch", "to_user_id": 230902023, "to_user_id_str": "230902023", "to_user_name": "Kayla J", "in_reply_to_status_id": 148838810833264640, "in_reply_to_status_id_str": "148838810833264641"}, +{"created_at": "Mon, 19 Dec 2011 18:58:20 +0000", "from_user": "thicketysplit", "from_user_id": 29561946, "from_user_id_str": "29561946", "from_user_name": "p00kie", "geo": null, "id": 148839600134160400, "id_str": "148839600134160384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1671941534/halloweeeeeeen_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671941534/halloweeeeeeen_2_normal.jpg", "source": "<a href="http://www.osfoora.com" rel="nofollow">Osfoora for iPhone</a>", "text": "@TheLookoutDiary lol I was being sarcastic and making fun of the fake deaf dude iRespectFemales", "to_user": "TheLookoutDiary", "to_user_id": 37553086, "to_user_id_str": "37553086", "to_user_name": "Derrick ", "in_reply_to_status_id": 148839072696238080, "in_reply_to_status_id_str": "148839072696238081"}, +{"created_at": "Mon, 19 Dec 2011 18:58:20 +0000", "from_user": "SlobOnMyHobbs", "from_user_id": 313753037, "from_user_id_str": "313753037", "from_user_name": "Big Blue", "geo": null, "id": 148839599123337200, "id_str": "148839599123337217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1523207140/haha_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1523207140/haha_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Driving forklifts is fun as shit man", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:20 +0000", "from_user": "JACattaaackkk", "from_user_id": 330794511, "from_user_id_str": "330794511", "from_user_name": "Jaclyn Rentschler", "geo": null, "id": 148839598922010620, "id_str": "148839598922010624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1600500704/5aklr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600500704/5aklr_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Macauley culkin makes staying home alone look a lot more fun than it really is.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:20 +0000", "from_user": "LotteVmusic", "from_user_id": 141550965, "from_user_id_str": "141550965", "from_user_name": "Dirty Minded Fangirl", "geo": null, "id": 148839598804574200, "id_str": "148839598804574208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1655613492/pixel_hanami_v2_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655613492/pixel_hanami_v2_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "It started of as a crack RP for fun, just to laugh our asses off to, and now...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:20 +0000", "from_user": "petescottoline", "from_user_id": 52452253, "from_user_id_str": "52452253", "from_user_name": "Pete Scottoline", "geo": null, "id": 148839597722447870, "id_str": "148839597722447873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680440542/379748_2534228307778_1015661800_2936135_1331923214_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680440542/379748_2534228307778_1015661800_2936135_1331923214_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Don't you wish time didn't fly when you were having fun?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:20 +0000", "from_user": "SexyBiebzSwag", "from_user_id": 165201635, "from_user_id_str": "165201635", "from_user_name": "Sarah Wax", "geo": null, "id": 148839597533708300, "id_str": "148839597533708288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1626158458/hotblackandwhitejustin_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626158458/hotblackandwhitejustin_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@iJever #iLoveBeliebersBecause no matter what, they got your back when a bitch hater makes fun of you. We're a family thats united by 1 boy.", "to_user": "iJever", "to_user_id": 59365623, "to_user_id_str": "59365623", "to_user_name": "JamieSquareLaouPants", "in_reply_to_status_id": 148839292561666050, "in_reply_to_status_id_str": "148839292561666048"}, +{"created_at": "Mon, 19 Dec 2011 18:58:19 +0000", "from_user": "sydneykbittle", "from_user_id": 66729687, "from_user_id_str": "66729687", "from_user_name": "Sydney Kellams", "geo": null, "id": 148839596510285820, "id_str": "148839596510285824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1606617620/05b8773fe1cec9aaebb350202591f6f4ca20292d_wmeg_00001_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606617620/05b8773fe1cec9aaebb350202591f6f4ca20292d_wmeg_00001_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Lunch with @EmSCreech @TheJoeRoy and @sarahkurtz was fun ((: now to babysitt!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:19 +0000", "from_user": "FAHNATIC", "from_user_id": 104062838, "from_user_id_str": "104062838", "from_user_name": "L I L B O J A C K", "geo": null, "id": 148839596103450620, "id_str": "148839596103450625", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1464535469/NickMcCoy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1464535469/NickMcCoy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Had Fun Yesterdai", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:19 +0000", "from_user": "Beautiful_JoJo1", "from_user_id": 53087361, "from_user_id_str": "53087361", "from_user_name": "-J o r d a n \\u30C4 ", "geo": null, "id": 148839596090859520, "id_str": "148839596090859521", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1655056611/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655056611/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Soo Wat We Get Drunk, Soo Wat We Smoke Weed, We're Just Havinq Fun, We Dnt Care Who Sees! -Young, Wild &'d Free!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:19 +0000", "from_user": "simba31", "from_user_id": 20665601, "from_user_id_str": "20665601", "from_user_name": "J@$pEr RiNK\\u2122", "geo": null, "id": 148839595423969280, "id_str": "148839595423969283", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/363728013/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/363728013/twitterProfilePhoto_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@IxAMdaReaLCD10R haha. Have fun my boi", "to_user": "IxAMdaReaLCD10R", "to_user_id": 181460303, "to_user_id_str": "181460303", "to_user_name": "DIOR", "in_reply_to_status_id": 148802913509195780, "in_reply_to_status_id_str": "148802913509195776"}, +{"created_at": "Mon, 19 Dec 2011 18:58:19 +0000", "from_user": "jamesTC23", "from_user_id": 441090178, "from_user_id_str": "441090178", "from_user_name": "James", "geo": null, "id": 148839594870325250, "id_str": "148839594870325248", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702605445/248688_1595091136347_1808032630_981302_1072359_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702605445/248688_1595091136347_1808032630_981302_1072359_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Drivings mad fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:19 +0000", "from_user": "KaraBercovitch", "from_user_id": 209865492, "from_user_id_str": "209865492", "from_user_name": "Kara Bercovitch", "geo": null, "id": 148839594652205060, "id_str": "148839594652205057", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1621216859/kim-kardashian-ronaldo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621216859/kim-kardashian-ronaldo_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Omg best friend is leaving I'm gonna miSs the bitch that makes fun of my tweets :(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:19 +0000", "from_user": "PastorTreCool", "from_user_id": 368048044, "from_user_id_str": "368048044", "from_user_name": "Pastor Tr\\u00E9", "geo": null, "id": 148839594618667000, "id_str": "148839594618667009", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684023323/HAPPYBIRTHDAYTRECOOL_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684023323/HAPPYBIRTHDAYTRECOOL_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "OLHA ISSO: (msn do meu amg) diz:\\n nem aquele site mais tem gra\\u00E7a\\nLivia diz:\\n ah\\n ai vc ta no Longview\\n \"when masturbation lost his fun...\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:19 +0000", "from_user": "BestUpNet", "from_user_id": 439108696, "from_user_id_str": "439108696", "from_user_name": "Best Up", "geo": null, "id": 148839593649766400, "id_str": "148839593649766400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698071124/logo_normal.png", "profile_image_url_https": null, "source": "<a href="http://fun.ly" rel="nofollow">fun.ly</a>", "text": "Operation Flashpoint : Red River http://t.co/Oqf6VV7F", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:19 +0000", "from_user": "Rufuscatpiss", "from_user_id": 213332842, "from_user_id_str": "213332842", "from_user_name": "Gordon Robertson", "geo": null, "id": 148839593423274000, "id_str": "148839593423273985", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1519620934/Toshiba_pics_1_349_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1519620934/Toshiba_pics_1_349_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "I've just been to a charity fun run for the 'Brittle Bone association'... It was a cracking day out.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:18 +0000", "from_user": "OhHeyyyyKrystal", "from_user_id": 296573268, "from_user_id_str": "296573268", "from_user_name": "Krystal Ramos", "geo": null, "id": 148839592789942270, "id_str": "148839592789942272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701552687/r0QmXxJb_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701552687/r0QmXxJb_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Watching true life: I'm addicted to video games.. Wow these people r too much! V.games arent even that fun SMH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:18 +0000", "from_user": "HHarppp", "from_user_id": 351441885, "from_user_id_str": "351441885", "from_user_name": "Hannah Harp", "geo": null, "id": 148839590290141200, "id_str": "148839590290141184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695481768/318433_2395952624065_1408447681_2946744_549324147_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695481768/318433_2395952624065_1408447681_2946744_549324147_n_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "had fun w/ one of my favorite people, now nap time :) #happy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:18 +0000", "from_user": "_prettigirl_rea", "from_user_id": 300457761, "from_user_id_str": "300457761", "from_user_name": "sirea gordon", "geo": null, "id": 148839589845532670, "id_str": "148839589845532674", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699639915/3BsR4h7n_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699639915/3BsR4h7n_normal", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @its_brittneyyyy: Happy birthday girly! Hope u have fun :) @_prettigirl_rea", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:18 +0000", "from_user": "goontings", "from_user_id": 335019921, "from_user_id_str": "335019921", "from_user_name": "Turba Mandem ", "geo": null, "id": 148839589459656700, "id_str": "148839589459656704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675892380/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675892380/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\" it's high school, just have fun \" I will but I won't disappoint you!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:18 +0000", "from_user": "Izzatilurun", "from_user_id": 371712721, "from_user_id_str": "371712721", "from_user_name": "Izzati Omar", "geo": null, "id": 148839589392551940, "id_str": "148839589392551936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1584798971/photo_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584798971/photo_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "@HANMINGSHAN how fun!!!!! with hue??", "to_user": "HANMINGSHAN", "to_user_id": 22129633, "to_user_id_str": "22129633", "to_user_name": "Mingshan Han", "in_reply_to_status_id": 148839443376250880, "in_reply_to_status_id_str": "148839443376250880"}, +{"created_at": "Mon, 19 Dec 2011 18:58:17 +0000", "from_user": "angelaperry", "from_user_id": 16523356, "from_user_id_str": "16523356", "from_user_name": "Angela Perry", "geo": null, "id": 148839588625006600, "id_str": "148839588625006592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1157455624/me_cropped_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1157455624/me_cropped_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Geeky Christmas fun: go type \"let it snow\" (without the quotes) into Google and hit enter.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:17 +0000", "from_user": "Ms_Ruthless", "from_user_id": 45167118, "from_user_id_str": "45167118", "from_user_name": "Sydney Raven Morris ", "geo": null, "id": 148839588033605630, "id_str": "148839588033605632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1509227222/325455516_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509227222/325455516_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@Jay_adore aww! Well have fun!", "to_user": "Jay_adore", "to_user_id": 154421382, "to_user_id_str": "154421382", "to_user_name": "Jade Michel", "in_reply_to_status_id": 148835875671904260, "in_reply_to_status_id_str": "148835875671904257"}, +{"created_at": "Mon, 19 Dec 2011 18:58:17 +0000", "from_user": "KatyCharlton98", "from_user_id": 214984842, "from_user_id_str": "214984842", "from_user_name": "Katy.", "geo": null, "id": 148839587949715460, "id_str": "148839587949715456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687857980/381361_2440233798454_1030059184_2791260_526400598_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687857980/381361_2440233798454_1030059184_2791260_526400598_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "i eat for fun/when i'm bored..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:18 +0000", "from_user": "ABundage19", "from_user_id": 37666451, "from_user_id_str": "37666451", "from_user_name": "Mr Aric B II", "geo": null, "id": 148839587853246460, "id_str": "148839587853246464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697596837/2011-10-31_11.43.48-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697596837/2011-10-31_11.43.48-1_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @shyralocc: Did everyone have fun last night at the Kappa Party ?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:17 +0000", "from_user": "garyhendry2107", "from_user_id": 83816771, "from_user_id_str": "83816771", "from_user_name": "gary hendry", "geo": null, "id": 148839587609972740, "id_str": "148839587609972736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1606639702/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606639702/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Naughty_Twinkle @lovelyfilth r u 2 naughties wanting any Male company involved in this sordid but fun twittering ;-) xx", "to_user": "Naughty_Twinkle", "to_user_id": 407989926, "to_user_id_str": "407989926", "to_user_name": "Twinkle", "in_reply_to_status_id": 148835044599930880, "in_reply_to_status_id_str": "148835044599930880"}, +{"created_at": "Mon, 19 Dec 2011 18:58:17 +0000", "from_user": "foxchelsey", "from_user_id": 439769001, "from_user_id_str": "439769001", "from_user_name": "chelseyfox", "geo": null, "id": 148839587391877120, "id_str": "148839587391877120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699562703/image_normal.jpg", "profile_image_url_https": null, "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@kaylaturner03 heck yeah ! We had so much fun !", "to_user": "kaylaturner03", "to_user_id": 345145747, "to_user_id_str": "345145747", "to_user_name": "Kayla Turner"}, +{"created_at": "Mon, 19 Dec 2011 18:58:17 +0000", "from_user": "JackGoodwin17", "from_user_id": 279246932, "from_user_id_str": "279246932", "from_user_name": "Jack Goodwin \\uE011", "geo": null, "id": 148839586913722370, "id_str": "148839586913722368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1634191042/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634191042/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Northerners arguing on PS3 is always fun. Apparently this one kid raped the others boy whole family cause he stole his care package #SICK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:17 +0000", "from_user": "BridalMusings", "from_user_id": 209903151, "from_user_id_str": "209903151", "from_user_name": "Elizabeth ", "geo": null, "id": 148839586347483140, "id_str": "148839586347483136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1463326400/headshot_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1463326400/headshot_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@TheVintageVeil ooooh Christmukkah! How fun!!! What are your plans? My knowledge of Hanukkah is pretty limited. xx", "to_user": "TheVintageVeil", "to_user_id": 317861977, "to_user_id_str": "317861977", "to_user_name": "Sara", "in_reply_to_status_id": 148838901719633920, "in_reply_to_status_id_str": "148838901719633920"}, +{"created_at": "Mon, 19 Dec 2011 18:58:17 +0000", "from_user": "Amarido7", "from_user_id": 107711523, "from_user_id_str": "107711523", "from_user_name": "Senti ", "geo": null, "id": 148839585944842240, "id_str": "148839585944842241", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1640203067/kamasutra_mehndi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640203067/kamasutra_mehndi_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "need to watch 300 this holiday it shall be fun and weird knowing Gerald went and starred in the ugly truth.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:17 +0000", "from_user": "Smartieddy7", "from_user_id": 363646643, "from_user_id_str": "363646643", "from_user_name": "Edna Assiradoo :D", "geo": null, "id": 148839585881931780, "id_str": "148839585881931776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1650664672/WWG1oocc_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650664672/WWG1oocc_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@yau_andrew Lol i was watching the news but stopped its boring for me come on watch something fun :D", "to_user": "yau_andrew", "to_user_id": 399681720, "to_user_id_str": "399681720", "to_user_name": "Andrew Yau ", "in_reply_to_status_id": 148839117302673400, "in_reply_to_status_id_str": "148839117302673408"}, +{"created_at": "Mon, 19 Dec 2011 18:58:17 +0000", "from_user": "FALHULI", "from_user_id": 84573326, "from_user_id_str": "84573326", "from_user_name": "FHH \\u2661", "geo": null, "id": 148839585877737470, "id_str": "148839585877737472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1658676108/330435540_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658676108/330435540_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Much more 7yate ;** RT @SSAlMukhaizeem: Had so much fun today thank u @FALHULI @Lalyaqout I love u both;***", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:17 +0000", "from_user": "silk2stone", "from_user_id": 147369757, "from_user_id_str": "147369757", "from_user_name": "Shannon Stone", "geo": null, "id": 148839585575731200, "id_str": "148839585575731202", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699332851/IMG276_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699332851/IMG276_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@ManOfYr I hope my next gf like to jus suck me off for fun lol\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:17 +0000", "from_user": "darrinhutson", "from_user_id": 34737096, "from_user_id_str": "34737096", "from_user_name": "darrin hutson", "geo": null, "id": 148839585487654900, "id_str": "148839585487654912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1652205327/l__2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652205327/l__2__normal.jpg", "source": "<a href="http://www.myspace.com/sync" rel="nofollow">MySpace</a>", "text": "I am looking for someone to help coordinate a singles night in Arlington. It will be a lot of fun and you can make s\\u2026 http://t.co/eMycyiHf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:17 +0000", "from_user": "ALLinTheMIRROR_", "from_user_id": 96278038, "from_user_id_str": "96278038", "from_user_name": "\\uE230 Desz-Ooh-Rae", "geo": null, "id": 148839585244397570, "id_str": "148839585244397568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695920156/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695920156/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "my good boy is PLENTY of fun ... ha ! :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:16 +0000", "from_user": "darrinhutson", "from_user_id": 34737096, "from_user_id_str": "34737096", "from_user_name": "darrin hutson", "geo": null, "id": 148839584854323200, "id_str": "148839584854323200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1652205327/l__2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652205327/l__2__normal.jpg", "source": "<a href="http://www.tagged.com" rel="nofollow">Tagged.com</a>", "text": "I am looking for someone to help coordinate a singles night in Arlington. It will be a lot of fun and you can make s\\u2026 http://t.co/JSrgLoAx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:16 +0000", "from_user": "kenziealexand14", "from_user_id": 305621768, "from_user_id_str": "305621768", "from_user_name": "kenziealexander", "geo": null, "id": 148839584292286460, "id_str": "148839584292286465", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701965579/IMG00368-20110212-1755_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701965579/IMG00368-20110212-1755_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@l_rhodes11 but you'll have fun", "to_user": "l_rhodes11", "to_user_id": 235800824, "to_user_id_str": "235800824", "to_user_name": "Lindsey Rhodes", "in_reply_to_status_id": 148838686736388100, "in_reply_to_status_id_str": "148838686736388096"}, +{"created_at": "Mon, 19 Dec 2011 18:58:16 +0000", "from_user": "MexicanPlug", "from_user_id": 98259413, "from_user_id_str": "98259413", "from_user_name": "Julian Demetri", "geo": null, "id": 148839583239507970, "id_str": "148839583239507968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702614053/IMG-20111211-00028_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702614053/IMG-20111211-00028_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @__Shelbz__: Yo, #VICETEAMPARTY is 12 days away DEC31ST from 8-1am, in dearborn @ the maltese club, $5 before 9. SO BE THERE GET/GIVE DANCES AND HAVE FUN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:16 +0000", "from_user": "Kheeoma", "from_user_id": 225155163, "from_user_id_str": "225155163", "from_user_name": "Chioma Udora", "geo": null, "id": 148839582719410180, "id_str": "148839582719410176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1257073582/164086_180385428658123_100000600024809_542347_1047622_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1257073582/164086_180385428658123_100000600024809_542347_1047622_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "I miss the times when life was so simple, so free, so fun and so kind.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:16 +0000", "from_user": "jenjentrixie", "from_user_id": 42738935, "from_user_id_str": "42738935", "from_user_name": "jennifer hadfield", "geo": null, "id": 148839581876371460, "id_str": "148839581876371457", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1249457118/jennifer_i_heart_faces_profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1249457118/jennifer_i_heart_faces_profile_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Check out these free printable tags that Amy at Living Locurto made for The Pioneer Woman Cooks. So fun! http://t.co/0epnkyQl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:16 +0000", "from_user": "O__ItsMISSYxX", "from_user_id": 220770688, "from_user_id_str": "220770688", "from_user_name": "I'm MISSY ;D", "geo": null, "id": 148839581289168900, "id_str": "148839581289168896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1672788509/classy2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672788509/classy2_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Bad boys ain't no good! Good boys ain't no fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:16 +0000", "from_user": "Khairisubhan", "from_user_id": 62896863, "from_user_id_str": "62896863", "from_user_name": "rizki khairisubhan", "geo": null, "id": 148839581087842300, "id_str": "148839581087842304", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1401743215/308827929_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1401743215/308827929_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @my_supersoccer: Yang udah maen, mana suaranya? Yang belum, sekali lagi, ini link-nya: http://t.co/ECftqIC6 #SuperSoccerFantasyFootball", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:16 +0000", "from_user": "matteusebio", "from_user_id": 72440484, "from_user_id_str": "72440484", "from_user_name": "Matthew Eusebio", "geo": null, "id": 148839580861349900, "id_str": "148839580861349889", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1684533439/Photo_on_2011-12-06_at_21.13_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684533439/Photo_on_2011-12-06_at_21.13_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @AyoIceMonkey: @matteusebio having fun with your oil change", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:15 +0000", "from_user": "emmadonnellyxo", "from_user_id": 383483505, "from_user_id_str": "383483505", "from_user_name": "Emma Donnelly", "geo": null, "id": 148839580139925500, "id_str": "148839580139925504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687543840/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687543840/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Wah my mom just said I can't have my phone until Christmas so giving it to me is \"more fun\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:15 +0000", "from_user": "renee_iidance", "from_user_id": 176927309, "from_user_id_str": "176927309", "from_user_name": "Evelyn Renee", "geo": null, "id": 148839579410108400, "id_str": "148839579410108416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1456233608/Picture_5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1456233608/Picture_5_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Ahh have fun!!! And take lots of pictures(: RT @Im_Soo_Blessed My first UNC game today...", "to_user": "Im_Soo_Blessed", "to_user_id": 81478111, "to_user_id_str": "81478111", "to_user_name": "Olivia Anita", "in_reply_to_status_id": 148834660988882940, "in_reply_to_status_id_str": "148834660988882945"}, +{"created_at": "Mon, 19 Dec 2011 18:58:15 +0000", "from_user": "RaeannLyke3192", "from_user_id": 439433262, "from_user_id_str": "439433262", "from_user_name": "Raeann Lyke", "geo": null, "id": 148839579305259000, "id_str": "148839579305259009", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@JaclynSiemons Please RT this FREE $500 STARBUCKS card http://t.co/hnrqBbQK", "to_user": "JaclynSiemons", "to_user_id": 24868325, "to_user_id_str": "24868325", "to_user_name": "Jaclyn Siemons", "in_reply_to_status_id": 148839072880803840, "in_reply_to_status_id_str": "148839072880803840"}, +{"created_at": "Mon, 19 Dec 2011 18:58:15 +0000", "from_user": "its_MRashed", "from_user_id": 358377508, "from_user_id_str": "358377508", "from_user_name": "M\\u0251ith\\u0251\\u2661`\\u0328", "geo": null, "id": 148839577824669700, "id_str": "148839577824669696", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700067952/_CB_87_C4_B1_5B_20_D1_8F_CC_80_CF_91e_CC_A8_D0_BC_CE_B7_CC_B5_CC_8C_D0_BF_CC_9B_D1_9F_20_E2_9C_BD_CC_B6_C2_B8_7E_20_AE__20_D1_87o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700067952/_CB_87_C4_B1_5B_20_D1_8F_CC_80_CF_91e_CC_A8_D0_BC_CE_B7_CC_B5_CC_8C_D0_BF_CC_9B_D1_9F_20_E2_9C_BD_CC_B6_C2_B8_7E_20_AE__20_D1_87o_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Had fun @Latameeh \\u2665", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:14 +0000", "from_user": "monkeygroove", "from_user_id": 15797687, "from_user_id_str": "15797687", "from_user_name": "Gary Oswald", "geo": null, "id": 148839575421337600, "id_str": "148839575421337600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1511869048/Picture0001_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1511869048/Picture0001_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Brad_Joyc3: Pls follow @WeighedDown It's my new comic (starts Jan 2nd) in which I poke fun of being middle aged and having to lose weight.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:14 +0000", "from_user": "Ac_chelsea", "from_user_id": 339681677, "from_user_id_str": "339681677", "from_user_name": "Amanda Chelsea", "geo": null, "id": 148839574775398400, "id_str": "148839574775398400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675671785/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675671785/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @hipsterproblems: Fun: Talk about a fake band and watch your friends pretend they know them. #hipsterproblems", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:14 +0000", "from_user": "gossyxx", "from_user_id": 22517614, "from_user_id_str": "22517614", "from_user_name": "ronnie radke's eyes", "geo": null, "id": 148839574146252800, "id_str": "148839574146252800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1557647140/we_are_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1557647140/we_are_1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@EchelonFamily18 woo ! ikr it's so fun ^^() whatcha want for it?", "to_user": "EchelonFamily18", "to_user_id": 38488790, "to_user_id_str": "38488790", "to_user_name": "EchelonFamily FTW \\u265B ", "in_reply_to_status_id": 148838074904875000, "in_reply_to_status_id_str": "148838074904875008"}, +{"created_at": "Mon, 19 Dec 2011 18:58:14 +0000", "from_user": "KTBaller567", "from_user_id": 186235745, "from_user_id_str": "186235745", "from_user_name": "Kenny Tollett", "geo": null, "id": 148839574066577400, "id_str": "148839574066577408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691789942/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691789942/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Girls are like airplanes. They are fun to be in, but can ruin your life in a second.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:14 +0000", "from_user": "oceandeepsoul", "from_user_id": 33866719, "from_user_id_str": "33866719", "from_user_name": "sara lewis", "geo": null, "id": 148839574041407500, "id_str": "148839574041407488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695483499/249600_1689272525523_1649034357_1370347_3919776_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695483499/249600_1689272525523_1649034357_1370347_3919776_n_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@MarcBoland pizza was fun good day with sian and my best mate adam", "to_user": "MarcBoland", "to_user_id": 31908062, "to_user_id_str": "31908062", "to_user_name": "Marc Boland \\u2122", "in_reply_to_status_id": 148838923597123600, "in_reply_to_status_id_str": "148838923597123584"}, +{"created_at": "Mon, 19 Dec 2011 18:58:14 +0000", "from_user": "annyogurt", "from_user_id": 176050010, "from_user_id_str": "176050010", "from_user_name": "Ana P\\u00E9rez Fern\\u00E1ndez\\u2714", "geo": null, "id": 148839573017985020, "id_str": "148839573017985027", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1573943164/cuadra_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1573943164/cuadra_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@clauyogurt woooo :) fun fun fun :) pues la sem siguiente hemos de quedar para chapar y vernos por navidad :) jajajaja", "to_user": "clauyogurt", "to_user_id": 119789812, "to_user_id_str": "119789812", "to_user_name": "Claudia", "in_reply_to_status_id": 148838847319519230, "in_reply_to_status_id_str": "148838847319519233"}, +{"created_at": "Mon, 19 Dec 2011 18:58:13 +0000", "from_user": "verdanacassidy", "from_user_id": 122018652, "from_user_id_str": "122018652", "from_user_name": "Fool for Christ :)", "geo": null, "id": 148839572208500740, "id_str": "148839572208500736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1550057447/z_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1550057447/z_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @nashia_m: Party's over... Had fun though", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:13 +0000", "from_user": "MicaCarballeira", "from_user_id": 142081878, "from_user_id_str": "142081878", "from_user_name": "micaela carballeira", "geo": null, "id": 148839571675807740, "id_str": "148839571675807744", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697077553/8_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697077553/8_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "La evangelizaci\\u00F3n de los abor\\u00EDgenes #FUN !!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:13 +0000", "from_user": "NouraTash", "from_user_id": 88551712, "from_user_id_str": "88551712", "from_user_name": "Noura Tashkandi", "geo": null, "id": 148839571197665280, "id_str": "148839571197665280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1486109477/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1486109477/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Watching \"Kourtney and Kim take NY\" with @Anoud6 and dissing the shit out of them. \\n\\nThis is fun! Should be an everyday activity.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:13 +0000", "from_user": "12Blondig12", "from_user_id": 174610612, "from_user_id_str": "174610612", "from_user_name": "Alexandra Hayes", "geo": null, "id": 148839570438504450, "id_str": "148839570438504450", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1514613488/269978_10150310889421271_531316270_9634696_2226779_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1514613488/269978_10150310889421271_531316270_9634696_2226779_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I'm at a weird chiropractic meeting with my mother. This should be fun. I wonder if they'll teach me how to heal with the mind or whatever.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:13 +0000", "from_user": "BrittneyNewsom", "from_user_id": 403010806, "from_user_id_str": "403010806", "from_user_name": "sMiLeS", "geo": null, "id": 148839570128117760, "id_str": "148839570128117761", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694757393/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694757393/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Sick nd tired of people makin fun of my dislexia :(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:58:15 +0000", "from_user": "renee_iidance", "from_user_id": 176927309, "from_user_id_str": "176927309", "from_user_name": "Evelyn Renee", "geo": null, "id": 148839579410108400, "id_str": "148839579410108416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1456233608/Picture_5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1456233608/Picture_5_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Ahh have fun!!! And take lots of pictures(: RT @Im_Soo_Blessed My first UNC game today...", "to_user": "Im_Soo_Blessed", "to_user_id": 81478111, "to_user_id_str": "81478111", "to_user_name": "Olivia Anita", "in_reply_to_status_id": 148834660988882940, "in_reply_to_status_id_str": "148834660988882945"}, +{"created_at": "Mon, 19 Dec 2011 18:58:15 +0000", "from_user": "RaeannLyke3192", "from_user_id": 439433262, "from_user_id_str": "439433262", "from_user_name": "Raeann Lyke", "geo": null, "id": 148839579305259000, "id_str": "148839579305259009", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@JaclynSiemons Please RT this FREE $500 STARBUCKS card http://t.co/hnrqBbQK", "to_user": "JaclynSiemons", "to_user_id": 24868325, "to_user_id_str": "24868325", "to_user_name": "Jaclyn Siemons", "in_reply_to_status_id": 148839072880803840, "in_reply_to_status_id_str": "148839072880803840"}, +{"created_at": "Mon, 19 Dec 2011 18:58:15 +0000", "from_user": "its_MRashed", "from_user_id": 358377508, "from_user_id_str": "358377508", "from_user_name": "M\\u0251ith\\u0251\\u2661`\\u0328", "geo": null, "id": 148839577824669700, "id_str": "148839577824669696", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700067952/_CB_87_C4_B1_5B_20_D1_8F_CC_80_CF_91e_CC_A8_D0_BC_CE_B7_CC_B5_CC_8C_D0_BF_CC_9B_D1_9F_20_E2_9C_BD_CC_B6_C2_B8_7E_20_AE__20_D1_87o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700067952/_CB_87_C4_B1_5B_20_D1_8F_CC_80_CF_91e_CC_A8_D0_BC_CE_B7_CC_B5_CC_8C_D0_BF_CC_9B_D1_9F_20_E2_9C_BD_CC_B6_C2_B8_7E_20_AE__20_D1_87o_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Had fun @Latameeh \\u2665", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:14 +0000", "from_user": "monkeygroove", "from_user_id": 15797687, "from_user_id_str": "15797687", "from_user_name": "Gary Oswald", "geo": null, "id": 148839575421337600, "id_str": "148839575421337600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1511869048/Picture0001_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1511869048/Picture0001_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Brad_Joyc3: Pls follow @WeighedDown It's my new comic (starts Jan 2nd) in which I poke fun of being middle aged and having to lose weight.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:14 +0000", "from_user": "Ac_chelsea", "from_user_id": 339681677, "from_user_id_str": "339681677", "from_user_name": "Amanda Chelsea", "geo": null, "id": 148839574775398400, "id_str": "148839574775398400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675671785/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675671785/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @hipsterproblems: Fun: Talk about a fake band and watch your friends pretend they know them. #hipsterproblems", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:14 +0000", "from_user": "gossyxx", "from_user_id": 22517614, "from_user_id_str": "22517614", "from_user_name": "ronnie radke's eyes", "geo": null, "id": 148839574146252800, "id_str": "148839574146252800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1557647140/we_are_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1557647140/we_are_1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@EchelonFamily18 woo ! ikr it's so fun ^^() whatcha want for it?", "to_user": "EchelonFamily18", "to_user_id": 38488790, "to_user_id_str": "38488790", "to_user_name": "EchelonFamily FTW \\u265B ", "in_reply_to_status_id": 148838074904875000, "in_reply_to_status_id_str": "148838074904875008"}, +{"created_at": "Mon, 19 Dec 2011 18:58:14 +0000", "from_user": "KTBaller567", "from_user_id": 186235745, "from_user_id_str": "186235745", "from_user_name": "Kenny Tollett", "geo": null, "id": 148839574066577400, "id_str": "148839574066577408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691789942/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691789942/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Girls are like airplanes. They are fun to be in, but can ruin your life in a second.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:14 +0000", "from_user": "oceandeepsoul", "from_user_id": 33866719, "from_user_id_str": "33866719", "from_user_name": "sara lewis", "geo": null, "id": 148839574041407500, "id_str": "148839574041407488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695483499/249600_1689272525523_1649034357_1370347_3919776_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695483499/249600_1689272525523_1649034357_1370347_3919776_n_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@MarcBoland pizza was fun good day with sian and my best mate adam", "to_user": "MarcBoland", "to_user_id": 31908062, "to_user_id_str": "31908062", "to_user_name": "Marc Boland \\u2122", "in_reply_to_status_id": 148838923597123600, "in_reply_to_status_id_str": "148838923597123584"}, +{"created_at": "Mon, 19 Dec 2011 18:58:14 +0000", "from_user": "annyogurt", "from_user_id": 176050010, "from_user_id_str": "176050010", "from_user_name": "Ana P\\u00E9rez Fern\\u00E1ndez\\u2714", "geo": null, "id": 148839573017985020, "id_str": "148839573017985027", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1573943164/cuadra_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1573943164/cuadra_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@clauyogurt woooo :) fun fun fun :) pues la sem siguiente hemos de quedar para chapar y vernos por navidad :) jajajaja", "to_user": "clauyogurt", "to_user_id": 119789812, "to_user_id_str": "119789812", "to_user_name": "Claudia", "in_reply_to_status_id": 148838847319519230, "in_reply_to_status_id_str": "148838847319519233"}, +{"created_at": "Mon, 19 Dec 2011 18:58:13 +0000", "from_user": "verdanacassidy", "from_user_id": 122018652, "from_user_id_str": "122018652", "from_user_name": "Fool for Christ :)", "geo": null, "id": 148839572208500740, "id_str": "148839572208500736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1550057447/z_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1550057447/z_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @nashia_m: Party's over... Had fun though", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:13 +0000", "from_user": "MicaCarballeira", "from_user_id": 142081878, "from_user_id_str": "142081878", "from_user_name": "micaela carballeira", "geo": null, "id": 148839571675807740, "id_str": "148839571675807744", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697077553/8_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697077553/8_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "La evangelizaci\\u00F3n de los abor\\u00EDgenes #FUN !!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:13 +0000", "from_user": "NouraTash", "from_user_id": 88551712, "from_user_id_str": "88551712", "from_user_name": "Noura Tashkandi", "geo": null, "id": 148839571197665280, "id_str": "148839571197665280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1486109477/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1486109477/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Watching \"Kourtney and Kim take NY\" with @Anoud6 and dissing the shit out of them. \\n\\nThis is fun! Should be an everyday activity.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:13 +0000", "from_user": "12Blondig12", "from_user_id": 174610612, "from_user_id_str": "174610612", "from_user_name": "Alexandra Hayes", "geo": null, "id": 148839570438504450, "id_str": "148839570438504450", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1514613488/269978_10150310889421271_531316270_9634696_2226779_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1514613488/269978_10150310889421271_531316270_9634696_2226779_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I'm at a weird chiropractic meeting with my mother. This should be fun. I wonder if they'll teach me how to heal with the mind or whatever.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:13 +0000", "from_user": "BrittneyNewsom", "from_user_id": 403010806, "from_user_id_str": "403010806", "from_user_name": "sMiLeS", "geo": null, "id": 148839570128117760, "id_str": "148839570128117761", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694757393/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694757393/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Sick nd tired of people makin fun of my dislexia :(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:13 +0000", "from_user": "cantufeelicks", "from_user_id": 30976991, "from_user_id_str": "30976991", "from_user_name": "Ana C. Cantu Felix", "geo": null, "id": 148839568236490750, "id_str": "148839568236490752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1662043507/ACSIT_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662043507/ACSIT_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "So fun!Get me into shows!Where are you summer training?RT @SawyerMadHatter: wish we can do some shows together soon! Last year was a blast.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:13 +0000", "from_user": "Breelyy", "from_user_id": 28490545, "from_user_id_str": "28490545", "from_user_name": "Breanne Batson", "geo": null, "id": 148839568202924030, "id_str": "148839568202924032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1657667924/4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657667924/4_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "When people make fun of you, right in front of your face and you're just like ajxjxjsjjs what the heck.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:12 +0000", "from_user": "Angel_Whorezz", "from_user_id": 362291524, "from_user_id_str": "362291524", "from_user_name": "Angel Juarez", "geo": null, "id": 148839568039346180, "id_str": "148839568039346176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1640847483/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640847483/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Well it was fun while it lasted I guess..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:12 +0000", "from_user": "XelaFierce", "from_user_id": 29983533, "from_user_id_str": "29983533", "from_user_name": "Alexandria Danielle", "geo": null, "id": 148839567087239170, "id_str": "148839567087239168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1639948807/suubtw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639948807/suubtw_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@CottonCandii_ haha, well its fun. as long as you're having fun.", "to_user": "CottonCandii_", "to_user_id": 33265455, "to_user_id_str": "33265455", "to_user_name": "Cici Watson", "in_reply_to_status_id": 148839390695792640, "in_reply_to_status_id_str": "148839390695792640"}, +{"created_at": "Mon, 19 Dec 2011 18:58:12 +0000", "from_user": "_iAM_Unwritten", "from_user_id": 248084226, "from_user_id_str": "248084226", "from_user_name": "Britt-Brat \\u30C4", "geo": null, "id": 148839567007547400, "id_str": "148839567007547392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693396897/Snapshot_20111214_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693396897/Snapshot_20111214_3_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "i'd rather look for fun first, then just let love happen.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:12 +0000", "from_user": "killa_key08", "from_user_id": 292719267, "from_user_id_str": "292719267", "from_user_name": "akilah mason", "geo": null, "id": 148839566600708100, "id_str": "148839566600708096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693480878/profile_image_1323896037851_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693480878/profile_image_1323896037851_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "@TheQueenBee0324 have fun! neisha live put in the boonies", "to_user": "TheQueenBee0324", "to_user_id": 41744353, "to_user_id_str": "41744353", "to_user_name": "lykia Boatman", "in_reply_to_status_id": 148839069726670850, "in_reply_to_status_id_str": "148839069726670848"}, +{"created_at": "Mon, 19 Dec 2011 18:58:12 +0000", "from_user": "chelswilson55", "from_user_id": 306120091, "from_user_id_str": "306120091", "from_user_name": "chelsey lynn wilson", "geo": null, "id": 148839566151925760, "id_str": "148839566151925760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693049190/babyyy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693049190/babyyy_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@gingyging it will be fun (: and that's coming from someone who hates shopping...but I love you (: and ur tweet pic!", "to_user": "gingyging", "to_user_id": 304543837, "to_user_id_str": "304543837", "to_user_name": "Alicia Scott", "in_reply_to_status_id": 148800819456782340, "in_reply_to_status_id_str": "148800819456782336"}, +{"created_at": "Mon, 19 Dec 2011 18:58:12 +0000", "from_user": "EdMorrissey", "from_user_id": 16787084, "from_user_id_str": "16787084", "from_user_name": "EdMorrissey", "geo": null, "id": 148839565266923520, "id_str": "148839565266923520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1642559420/ed-cigar-hs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642559420/ed-cigar-hs_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @guypbenson: \"Women\" and \"men.\" RT @RasmussenPoll: 39% see holiday gift shopping as fun experience, 38% consider it an unpleasant chore...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:12 +0000", "from_user": "jmgospel", "from_user_id": 145347933, "from_user_id_str": "145347933", "from_user_name": "Jornal Mundo Gospel", "geo": null, "id": 148839565136896000, "id_str": "148839565136896002", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1119106111/LOGO_MUNDO_GOSPEL_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1119106111/LOGO_MUNDO_GOSPEL_normal.jpg", "source": "<a href="http://fun.ly" rel="nofollow">fun.ly</a>", "text": "Maioria dos brasileiros n\\u00E3o sabe o significado do Natal http://t.co/XtUE1L8G", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:11 +0000", "from_user": "bayhosh", "from_user_id": 11609762, "from_user_id_str": "11609762", "from_user_name": "Shoaib A. Farooqui", "geo": null, "id": 148839561403961340, "id_str": "148839561403961344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1448216390/269670_2155072592569_1119088187_32485311_2796569_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1448216390/269670_2155072592569_1119088187_32485311_2796569_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Peshawar\\u2019s open secret: Hardcore fun for a hard-line city http://t.co/GipLSjS0 via @etribune", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:11 +0000", "from_user": "its_SPD", "from_user_id": 118576647, "from_user_id_str": "118576647", "from_user_name": "Sarah P Davis", "geo": null, "id": 148839560950972400, "id_str": "148839560950972416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1603715599/sd2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1603715599/sd2_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "This should be fun... Shopping with @nbair21 and #nontwitterryan", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:11 +0000", "from_user": "cocostjohn", "from_user_id": 215735138, "from_user_id_str": "215735138", "from_user_name": "Colette St. John", "geo": null, "id": 148839560552529920, "id_str": "148839560552529923", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698547105/331616302_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698547105/331616302_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Caroling at auborn manor was so fun:) #oldpeoplerock", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:11 +0000", "from_user": "timcanoot", "from_user_id": 264450937, "from_user_id_str": "264450937", "from_user_name": "Tim Canoot", "geo": null, "id": 148839560321843200, "id_str": "148839560321843200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1283157822/Untitled_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1283157822/Untitled_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @mattcutts: In case you missed it: search on Google for \"let it snow\" to see a fun easter egg. :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:10 +0000", "from_user": "lucyhubbard_", "from_user_id": 260737895, "from_user_id_str": "260737895", "from_user_name": "lucyhubbard", "geo": null, "id": 148839559369728000, "id_str": "148839559369728000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1677974402/385421_10151003892700542_702790541_21870042_1954116431_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677974402/385421_10151003892700542_702790541_21870042_1954116431_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "If it rains tomorrow evening I will not be happy, source queue's not fun at the best of times.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:10 +0000", "from_user": "belletjeXD", "from_user_id": 429891250, "from_user_id_str": "429891250", "from_user_name": "Isabelle Courtial", "geo": null, "id": 148839556916060160, "id_str": "148839556916060161", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1677518722/973941297_5_XUNl_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677518722/973941297_5_XUNl_1__normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Broertje en ik deden net heel raar en fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:09 +0000", "from_user": "giocanato", "from_user_id": 48103770, "from_user_id_str": "48103770", "from_user_name": "Giovanna C. ", "geo": null, "id": 148839555200589820, "id_str": "148839555200589824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699011529/o-matic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699011529/o-matic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Never take it seriously, cause if you never take it seriously, you never get hurt, and if you never get hurt, you always have fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:10 +0000", "from_user": "nabounassar", "from_user_id": 395952956, "from_user_id_str": "395952956", "from_user_name": "nedine a", "geo": null, "id": 148839553959084030, "id_str": "148839553959084034", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677131326/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677131326/image_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Camera on iOS</a>", "text": "\"Peacock\" nail stickers can be kinda fun http://t.co/LdPph7xf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:09 +0000", "from_user": "NewLawyersPost", "from_user_id": 357609873, "from_user_id_str": "357609873", "from_user_name": "ALPS Corp", "geo": null, "id": 148839553329934340, "id_str": "148839553329934336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1519546903/ALPSNewLawyersLogoBadgeLrg_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1519546903/ALPSNewLawyersLogoBadgeLrg_normal.gif", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "Just for holiday fun - A Second-By-Second Breakdown of the Worst Christmas Music Video Ever Made http://t.co/QwuTFVMG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:09 +0000", "from_user": "iJaszy_Fresh", "from_user_id": 325700077, "from_user_id_str": "325700077", "from_user_name": "Eff Bwords", "geo": null, "id": 148839553040523260, "id_str": "148839553040523264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701097048/7dr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701097048/7dr_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@BRIxKAYY lol why? I think it would be fun", "to_user": "BRIxKAYY", "to_user_id": 69151528, "to_user_id_str": "69151528", "to_user_name": "Brianna King", "in_reply_to_status_id": 148839171925090300, "in_reply_to_status_id_str": "148839171925090304"}, +{"created_at": "Mon, 19 Dec 2011 18:58:09 +0000", "from_user": "middlesexlounge", "from_user_id": 87357028, "from_user_id_str": "87357028", "from_user_name": "middlesex lounge", "geo": null, "id": 148839552600125440, "id_str": "148839552600125440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/508279830/MSEXiconSQ_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/508279830/MSEXiconSQ_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MrWright0523 SO FUN", "to_user": "MrWright0523", "to_user_id": 316560315, "to_user_id_str": "316560315", "to_user_name": "Marvin Wright", "in_reply_to_status_id": 148751689783066620, "in_reply_to_status_id_str": "148751689783066624"}, +{"created_at": "Mon, 19 Dec 2011 18:58:08 +0000", "from_user": "MUSE_REBEL", "from_user_id": 23837570, "from_user_id_str": "23837570", "from_user_name": "D'Angelo Ferguson", "geo": null, "id": 148839551073386500, "id_str": "148839551073386496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1590270198/Photo00016_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1590270198/Photo00016_normal.jpg", "source": "<a href="http://www.handmark.com" rel="nofollow">TweetCaster for iOS</a>", "text": "So youre a rapist??? RT @Si3RRA3LAiNE: Rapin mi gma gift :) she gonna have so much fun unrapin it", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:08 +0000", "from_user": "Notably_Divine", "from_user_id": 137207682, "from_user_id_str": "137207682", "from_user_name": "Beauty is a Virtue", "geo": null, "id": 148839550133862400, "id_str": "148839550133862400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694341354/Notably_Divine_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694341354/Notably_Divine_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @CashNCodes: Bad guys ain't no good, good guys ain't no fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:08 +0000", "from_user": "chacha2b96", "from_user_id": 273518453, "from_user_id_str": "273518453", "from_user_name": "Chacha Mingalon", "geo": null, "id": 148839548682633200, "id_str": "148839548682633216", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1630853013/303751_155941024495994_100002402922460_283263_1294885472_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630853013/303751_155941024495994_100002402922460_283263_1294885472_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"Et tout de suite sur Autoroute FM, \"A la queuleuleu\", c'est parti !\" C plut\\u00F4t fun lorsque tu es dans un embouteillage", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:08 +0000", "from_user": "BB_FIERCE", "from_user_id": 78798995, "from_user_id_str": "78798995", "from_user_name": "BIANCA", "geo": null, "id": 148839548032524300, "id_str": "148839548032524288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699382347/BB_FIERCE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699382347/BB_FIERCE_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @IamRicoLove: Pretty girls have the most fun..... #TTLO!!!!!!!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:08 +0000", "from_user": "Lui_T_Newton", "from_user_id": 255786725, "from_user_id_str": "255786725", "from_user_name": "@\\u262E x YG&B x OPMG", "geo": null, "id": 148839548019945470, "id_str": "148839548019945472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674048658/197627_187240497984100_100000944527810_412155_2315440_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674048658/197627_187240497984100_100000944527810_412155_2315440_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MIDI_Fingers 4 awhile i think co. Gonna be a fun ass summer.", "to_user": "MIDI_Fingers", "to_user_id": 95590698, "to_user_id_str": "95590698", "to_user_name": "Cal", "in_reply_to_status_id": 148838166164549630, "in_reply_to_status_id_str": "148838166164549632"}, +{"created_at": "Mon, 19 Dec 2011 18:58:07 +0000", "from_user": "NadNutsNajiha", "from_user_id": 424786302, "from_user_id_str": "424786302", "from_user_name": "Nadiah Najihah", "geo": null, "id": 148839546363187200, "id_str": "148839546363187200", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668057062/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668057062/me_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Makan maggi tgahtgah malam is fun. With twi anak dare yg tk pass pun msak maggi. Hadoii :/", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:07 +0000", "from_user": "_Plain_Jane_", "from_user_id": 38578064, "from_user_id_str": "38578064", "from_user_name": "\\uE10E A. Simms", "geo": null, "id": 148839545943769100, "id_str": "148839545943769089", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1592147171/_Plain_Jane__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592147171/_Plain_Jane__normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@QuanieGoodGood lol yes but more fun for us next semester... We have to get closer", "to_user": "QuanieGoodGood", "to_user_id": 67009835, "to_user_id_str": "67009835", "to_user_name": "mrs. right \\u2665", "in_reply_to_status_id": 148838932489060350, "in_reply_to_status_id_str": "148838932489060352"}, +{"created_at": "Mon, 19 Dec 2011 18:58:07 +0000", "from_user": "ClareColeman92", "from_user_id": 337354485, "from_user_id_str": "337354485", "from_user_name": "Clare Coleman", "geo": null, "id": 148839544970686460, "id_str": "148839544970686465", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695952671/i_love_my_momma__-_Version_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695952671/i_love_my_momma__-_Version_2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "This is no fun #ihateallthingsmedical", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:06 +0000", "from_user": "diary_tweeting", "from_user_id": 196565481, "from_user_id_str": "196565481", "from_user_name": "Diary Pribadi Rizal", "geo": null, "id": 148839542210838530, "id_str": "148839542210838529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1599237092/veve_copy_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599237092/veve_copy_2_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@liuveinaa Liuveinalism live on YouTube. Please rate & comment! :) (just for fun, nothing's personal) diintip ya buu :P http://t.co/a4GYWIwv", "to_user": "liuveinaa", "to_user_id": 77739572, "to_user_id_str": "77739572", "to_user_name": "Liuveina Adhella"}, +{"created_at": "Mon, 19 Dec 2011 18:58:06 +0000", "from_user": "riekecntl", "from_user_id": 56622869, "from_user_id_str": "56622869", "from_user_name": "Rieke Pasela", "geo": null, "id": 148839540117876740, "id_str": "148839540117876736", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1630470670/329496292_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630470670/329496292_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Happy birthday dedek kecil @liandrayuwenka :* have fun in bali! \\u263A\\u2665 GBU!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:06 +0000", "from_user": "bmcguire33", "from_user_id": 39923040, "from_user_id_str": "39923040", "from_user_name": "Brian M", "geo": null, "id": 148839539438387200, "id_str": "148839539438387200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693324039/ronda_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693324039/ronda_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ESPN_Colin: Tebow time was a lot more fun against Caleb Hanie.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:04 +0000", "from_user": "Enje_AL", "from_user_id": 311886670, "from_user_id_str": "311886670", "from_user_name": "Didi\\u2122 \\u2665", "geo": null, "id": 148839533612503040, "id_str": "148839533612503040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702609596/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702609596/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "There is no pleasure in having nothing to do; the fun is in having lots to do and not doing it. :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:04 +0000", "from_user": "Shannonpratt8", "from_user_id": 394775524, "from_user_id_str": "394775524", "from_user_name": "shannon pratt", "geo": null, "id": 148839532408746000, "id_str": "148839532408745985", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1598065918/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598065918/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@abbiejessup yeahh, that would be fun!!", "to_user": "abbiejessup", "to_user_id": 61289163, "to_user_id_str": "61289163", "to_user_name": "Abigail Jessup", "in_reply_to_status_id": 148806809157771260, "in_reply_to_status_id_str": "148806809157771264"}, +{"created_at": "Mon, 19 Dec 2011 18:58:04 +0000", "from_user": "First5Sac", "from_user_id": 106201241, "from_user_id_str": "106201241", "from_user_name": "First 5 Sacramento", "geo": null, "id": 148839532320665600, "id_str": "148839532320665601", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/655382866/First_5_Twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/655382866/First_5_Twitter_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Looking for some FREE Christmas Eve fun??? The Sacramento Zoo AND Fairytale Town are offering FREE admission on... http://t.co/FguQGsUq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:04 +0000", "from_user": "ThatOneTay_Me", "from_user_id": 374872179, "from_user_id_str": "374872179", "from_user_name": "Talaya ", "geo": null, "id": 148839532186443780, "id_str": "148839532186443777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701142683/p_nk_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701142683/p_nk_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "practice was actually fun 2day :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:04 +0000", "from_user": "alittleumbrella", "from_user_id": 38357234, "from_user_id_str": "38357234", "from_user_name": "Lesli", "geo": null, "id": 148839531972526080, "id_str": "148839531972526081", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1368720399/leslogo-for-social-media_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1368720399/leslogo-for-social-media_normal.gif", "source": "<a href="http://triberr.com" rel="nofollow">Triberr</a>", "text": "10 Cute Snowman Sweet Treat Ideas For Christmas or Winter Holiday Fun! http://t.co/VUCthMFD via @Linetteg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:04 +0000", "from_user": "Wave_TheSwallow", "from_user_id": 215291335, "from_user_id_str": "215291335", "from_user_name": "Wave The Swallow", "geo": null, "id": 148839531934789630, "id_str": "148839531934789632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1375036372/Waveavvie_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1375036372/Waveavvie_normal.JPG", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": ">It wouldn't be fun if I did, Jet...<", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:04 +0000", "from_user": "kuffyschoolteam", "from_user_id": 114265580, "from_user_id_str": "114265580", "from_user_name": "kuforiji .. K.O.P", "geo": null, "id": 148839531616022530, "id_str": "148839531616022528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689498210/331375380_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689498210/331375380_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "0_oRT @IfyKush: Girls jus wann' have fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:04 +0000", "from_user": "mkosoff", "from_user_id": 81965252, "from_user_id_str": "81965252", "from_user_name": "maya", "geo": null, "id": 148839531196592130, "id_str": "148839531196592129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1643281111/Photo_on_2011-09-23_at_08.41_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643281111/Photo_on_2011-09-23_at_08.41_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@toricote YES! So fun to listen to! I always sleep on the best bands for so long!", "to_user": "toricote", "to_user_id": 72192408, "to_user_id_str": "72192408", "to_user_name": "Tori Cote", "in_reply_to_status_id": 148839064022417400, "in_reply_to_status_id_str": "148839064022417408"}, +{"created_at": "Mon, 19 Dec 2011 18:58:04 +0000", "from_user": "ZionTheChamp", "from_user_id": 372123223, "from_user_id_str": "372123223", "from_user_name": "Zion Harvey", "geo": null, "id": 148839530907185150, "id_str": "148839530907185153", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1540807264/9D1jxH7f_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1540807264/9D1jxH7f_normal", "source": "<a href="http://www.tweet-r.com" rel="nofollow">Tweetr</a>", "text": "RT @Thugniificent: If small girls are fun sized, are fat chicks king sized?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:03 +0000", "from_user": "RomeroPinedaGF", "from_user_id": 312515199, "from_user_id_str": "312515199", "from_user_name": "fernando romero", "geo": null, "id": 148839529455960060, "id_str": "148839529455960064", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689975309/in_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689975309/in_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@LaryReyes jajjajaja nombe!! is too much damn fun!!! capaz y me kiere verguear si le digo q lo estan viviendo!", "to_user": "LaryReyes", "to_user_id": 170139395, "to_user_id_str": "170139395", "to_user_name": "Gina Larissa Reyes", "in_reply_to_status_id": 148839311297609730, "in_reply_to_status_id_str": "148839311297609728"}, +{"created_at": "Mon, 19 Dec 2011 18:58:03 +0000", "from_user": "babyitsliz_", "from_user_id": 256856448, "from_user_id_str": "256856448", "from_user_name": "elizabethh\\u2665[;", "geo": null, "id": 148839527891472400, "id_str": "148839527891472384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1645966407/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645966407/profile_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "people always make fun of the way i say rude and seriously >.<", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:03 +0000", "from_user": "iDoItBiGsTeVe", "from_user_id": 429394435, "from_user_id_str": "429394435", "from_user_name": "Swag King", "geo": null, "id": 148839527606255600, "id_str": "148839527606255616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1676712254/lookin_fly_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676712254/lookin_fly_normal.jpg", "source": "<a href="http://www.samsungmobile.com" rel="nofollow">Samsung Mobile</a>", "text": "@Nikaaa_Please i had a lot of fun! It was like 7 girls and one other guy in our booth! I brought everyone drinks so it was fun!", "to_user": "Nikaaa_Please", "to_user_id": 402858075, "to_user_id_str": "402858075", "to_user_name": "Nicole Marie Roland"}, +{"created_at": "Mon, 19 Dec 2011 18:58:03 +0000", "from_user": "_AngieKnowsBest", "from_user_id": 89227090, "from_user_id_str": "89227090", "from_user_name": "AngelaJanaee ;)", "geo": null, "id": 148839526641565700, "id_str": "148839526641565696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662276818/Snapshot_20111128_7_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662276818/Snapshot_20111128_7_normal.JPG", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@unBRE_lievable have fun mija", "to_user": "unBRE_lievable", "to_user_id": 178671779, "to_user_id_str": "178671779", "to_user_name": "Susie Carmicheal", "in_reply_to_status_id": 148839429321146370, "in_reply_to_status_id_str": "148839429321146369"}, +{"created_at": "Mon, 19 Dec 2011 18:58:02 +0000", "from_user": "gogocomm", "from_user_id": 14164216, "from_user_id_str": "14164216", "from_user_name": "Erin Lumley", "geo": null, "id": 148839525651718140, "id_str": "148839525651718144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1550729345/Erin_Lumley_3096_Edit_Edit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1550729345/Erin_Lumley_3096_Edit_Edit_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@billbarhydt @mvia_Mobile @PETER_KELLY had so much fun at the m-Via holiday party- 2012 is going to be a great year for you guys!", "to_user": "billbarhydt", "to_user_id": 896141, "to_user_id_str": "896141", "to_user_name": "Bill Barhydt"}, +{"created_at": "Mon, 19 Dec 2011 18:58:02 +0000", "from_user": "NIK00_jadee", "from_user_id": 328020702, "from_user_id_str": "328020702", "from_user_name": "(J)ust (B)elieve", "geo": null, "id": 148839524330504200, "id_str": "148839524330504192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700587676/XogUlXxB_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700587676/XogUlXxB_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Awww, Wakey Wakey Jaden(: RT \"@officialjaden: Waking Up Is Not Fun http://t.co/ZQsHoMzG\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:02 +0000", "from_user": "KCnelly", "from_user_id": 194470455, "from_user_id_str": "194470455", "from_user_name": "Kevin Cornell", "geo": null, "id": 148839522401136640, "id_str": "148839522401136641", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1516397183/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1516397183/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@erynnnnxox ahh bein sick is no fun I dnt have time to be sick lol", "to_user": "erynnnnxox", "to_user_id": 413478281, "to_user_id_str": "413478281", "to_user_name": "erynn suzanne", "in_reply_to_status_id": 148817297337892860, "in_reply_to_status_id_str": "148817297337892864"}, +{"created_at": "Mon, 19 Dec 2011 18:58:01 +0000", "from_user": "VroomSkurr", "from_user_id": 433902658, "from_user_id_str": "433902658", "from_user_name": "$", "geo": null, "id": 148839521918783500, "id_str": "148839521918783490", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691494457/vstv_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691494457/vstv_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@LaToyaMaureen: MAKING LOVE vs. GREAT SEX? What do you prefer and WHY? #LMquestion #RTthis\\u201D great sex it's jus more fun to me", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:01 +0000", "from_user": "MonikaAllstar", "from_user_id": 84454561, "from_user_id_str": "84454561", "from_user_name": "Monica (:", "geo": null, "id": 148839521470001150, "id_str": "148839521470001153", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686141191/IMG_0270_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686141191/IMG_0270_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@ZachAllStar Hahahahaha have fun (:", "to_user": "ZachAllStar", "to_user_id": 41272427, "to_user_id_str": "41272427", "to_user_name": "Zach Porter"}, +{"created_at": "Mon, 19 Dec 2011 18:58:01 +0000", "from_user": "HauntedRockCake", "from_user_id": 43146008, "from_user_id_str": "43146008", "from_user_name": "Sandra Kelley", "geo": null, "id": 148839521339973630, "id_str": "148839521339973632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696841936/09122011527_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696841936/09122011527_2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@Rapscallion__ Sounds like fun :)", "to_user": "Rapscallion__", "to_user_id": 763979, "to_user_id_str": "763979", "to_user_name": "John", "in_reply_to_status_id": 148839424912916480, "in_reply_to_status_id_str": "148839424912916480"}, +{"created_at": "Mon, 19 Dec 2011 18:58:01 +0000", "from_user": "shontuck", "from_user_id": 282170056, "from_user_id_str": "282170056", "from_user_name": "Swag'dUpMoney", "geo": null, "id": 148839521226719230, "id_str": "148839521226719232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698855452/skeMDd02_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698855452/skeMDd02_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "It was Fun while it Lasted :Youve been Exposed #TebowBookTitles", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:01 +0000", "from_user": "Kelz_da_Best", "from_user_id": 375077819, "from_user_id_str": "375077819", "from_user_name": "Kelz ", "geo": null, "id": 148839520551448580, "id_str": "148839520551448577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1656312178/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656312178/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Strip by @chrisbrown is crazy he look like he having mad fun which is what i love about him he wildnfree n always living life to the fullest", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:01 +0000", "from_user": "rip_dq01", "from_user_id": 314085701, "from_user_id_str": "314085701", "from_user_name": "Andrew Henderson", "geo": null, "id": 148839520312373250, "id_str": "148839520312373248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689368669/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689368669/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "If I was home alone like he was I would had too much fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:01 +0000", "from_user": "sarUHruska", "from_user_id": 373460819, "from_user_id_str": "373460819", "from_user_name": "sarah hruska", "geo": null, "id": 148839519121178620, "id_str": "148839519121178624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681868723/4ifO61vN_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681868723/4ifO61vN_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "hahaha we should not be having this much fun @cassidi_dye & @BrandyFamuliner", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:01 +0000", "from_user": "dommyavalanche", "from_user_id": 29369423, "from_user_id_str": "29369423", "from_user_name": "Dominick Russo", "geo": null, "id": 148839518043250700, "id_str": "148839518043250688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702487691/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702487691/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@_lisaerin being a bar slave is fun though.", "to_user": "_lisaerin", "to_user_id": 21450823, "to_user_id_str": "21450823", "to_user_name": "lisa erin", "in_reply_to_status_id": 148839143823249400, "in_reply_to_status_id_str": "148839143823249408"}, +{"created_at": "Mon, 19 Dec 2011 18:58:01 +0000", "from_user": "Salsaking3", "from_user_id": 328533838, "from_user_id_str": "328533838", "from_user_name": "Craig ", "geo": null, "id": 148839517812559870, "id_str": "148839517812559872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1425585473/Salsaking_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1425585473/Salsaking_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ThePumpMassage @metalmatt79 Layla's pix look great. She is a real bundle of fun. Think I know who I will be seeing tomorrow lol xx", "to_user": "ThePumpMassage", "to_user_id": 196536812, "to_user_id_str": "196536812", "to_user_name": "ThePump", "in_reply_to_status_id": 148808592798134270, "in_reply_to_status_id_str": "148808592798134272"}, +{"created_at": "Mon, 19 Dec 2011 18:58:00 +0000", "from_user": "erominzy", "from_user_id": 67652957, "from_user_id_str": "67652957", "from_user_name": "virginekljfdksmfkdel", "geo": null, "id": 148839515144994800, "id_str": "148839515144994816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695282638/tumblr_lvkx5uf91r1r2m0tjfesfe_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695282638/tumblr_lvkx5uf91r1r2m0tjfesfe_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @DANJAER: @erominzy I WAS THE FIRST ONE TO WISH YOU?!?!?! I FEEL SO NOSS RN YYYYAAY I HOPE YOU HAVE FUN TAKE LOADS OF QT PICS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:00 +0000", "from_user": "AmoOwNii", "from_user_id": 327592066, "from_user_id_str": "327592066", "from_user_name": "\\u2654 \\u00C0l \\u00C1mn\\u00E0 \\u2654", "geo": null, "id": 148839513932828670, "id_str": "148839513932828673", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1676878252/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676878252/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "To girls, shopping isn't fun. It's a mission", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:59 +0000", "from_user": "onemanvariety", "from_user_id": 40818059, "from_user_id_str": "40818059", "from_user_name": "Chris Ruggiero", "geo": null, "id": 148839512477413380, "id_str": "148839512477413377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1531564631/chris_for_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1531564631/chris_for_twitter_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Thanks for a fun weekend! #GKholiday", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:59 +0000", "from_user": "GFVeganGrandma", "from_user_id": 22562338, "from_user_id_str": "22562338", "from_user_name": "Michelle Lippe", "geo": null, "id": 148839511852453900, "id_str": "148839511852453888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1633278895/100x100_Fifi_and_Michelle_June_2011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633278895/100x100_Fifi_and_Michelle_June_2011_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Common herbs and spices that can heal you! Won't it be fun trying to incorporate them all everyday for better health? http://t.co/RBcH8DcO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:59 +0000", "from_user": "YouHoesAintSafe", "from_user_id": 85739924, "from_user_id_str": "85739924", "from_user_name": "Incredible Hulk", "geo": null, "id": 148839511802126340, "id_str": "148839511802126336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701191902/avatar_normal.JPEG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701191902/avatar_normal.JPEG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @SirJuiceALot: As I thought they would..They slandered Tebow on SNL cause of his faith..Media always twistin & makin fun of religion..smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:01 +0000", "from_user": "kendraslove", "from_user_id": 53261910, "from_user_id_str": "53261910", "from_user_name": "Kendra Johnson \\n", "geo": null, "id": 148839511529496580, "id_str": "148839511529496576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1677449069/EGf853kD_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677449069/EGf853kD_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I had so much fun http://t.co/SvR12Djh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:59 +0000", "from_user": "MrsLilyPotter", "from_user_id": 330523876, "from_user_id_str": "330523876", "from_user_name": "Jily Limes Evotter", "geo": null, "id": 148839511525310460, "id_str": "148839511525310465", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697960555/James__Harry_and_Lily007_Christmas_4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697960555/James__Harry_and_Lily007_Christmas_4_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Carowling GOOD FOR YOU. HAVE FUN SMILING AND LAUGHING. No, really, Imma go off and make myself a new Twitter background xD laters", "to_user": "Carowling", "to_user_id": 71887240, "to_user_id_str": "71887240", "to_user_name": "Carofly", "in_reply_to_status_id": 148839287335567360, "in_reply_to_status_id_str": "148839287335567360"}, +{"created_at": "Mon, 19 Dec 2011 18:57:59 +0000", "from_user": "idaluv", "from_user_id": 48621123, "from_user_id_str": "48621123", "from_user_name": "ida munoz", "geo": null, "id": 148839509633675260, "id_str": "148839509633675264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1692071453/Miami_20Beach-20111213-00473_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692071453/Miami_20Beach-20111213-00473_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @IamRicoLove: Pretty girls have the most fun..... #TTLO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:58 +0000", "from_user": "Lizzie222", "from_user_id": 20805710, "from_user_id_str": "20805710", "from_user_name": "Lizzie Wiles", "geo": null, "id": 148839508580904960, "id_str": "148839508580904960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1422375479/Picture2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1422375479/Picture2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "Had a go on my nana's stair lift! Was fun! \\uD83D\\uDCBA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:58 +0000", "from_user": "lyncake", "from_user_id": 246026298, "from_user_id_str": "246026298", "from_user_name": "\\u2113yn\\u2661", "geo": null, "id": 148839507742031870, "id_str": "148839507742031872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1684165243/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684165243/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@chloebooxoxo have fun at Disneyland lovely! c:", "to_user": "chloebooxoxo", "to_user_id": 417559340, "to_user_id_str": "417559340", "to_user_name": "Chloe", "in_reply_to_status_id": 148838379235188740, "in_reply_to_status_id_str": "148838379235188736"}, +{"created_at": "Mon, 19 Dec 2011 18:57:58 +0000", "from_user": "angianowvpu3", "from_user_id": 384099608, "from_user_id_str": "384099608", "from_user_name": "Angiano Slater", "geo": null, "id": 148839507351961600, "id_str": "148839507351961600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1570353595/f_30_w_0016_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1570353595/f_30_w_0016_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SourCherry_Dark http://t.co/9AxyqSMv", "to_user": "SourCherry_Dark", "to_user_id": 191610169, "to_user_id_str": "191610169", "to_user_name": "Mady ou Vick ", "in_reply_to_status_id": 148737673245372400, "in_reply_to_status_id_str": "148737673245372417"}, +{"created_at": "Mon, 19 Dec 2011 18:57:58 +0000", "from_user": "tllinley", "from_user_id": 353940493, "from_user_id_str": "353940493", "from_user_name": "Timothy Linley II", "geo": null, "id": 148839506760572930, "id_str": "148839506760572928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700895720/393254_2874640468062_1321441377_3165562_1142640686_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700895720/393254_2874640468062_1321441377_3165562_1142640686_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I want to have some fun today. Bored!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:58 +0000", "from_user": "JackMizanin", "from_user_id": 160314696, "from_user_id_str": "160314696", "from_user_name": "Jack", "geo": null, "id": 148839506462781440, "id_str": "148839506462781440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702586718/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702586718/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@CMPunkDODfan moaning is fun whore -_-", "to_user": "CMPunkDODfan", "to_user_id": 117133860, "to_user_id_str": "117133860", "to_user_name": "Stephen. ", "in_reply_to_status_id": 148839126848897020, "in_reply_to_status_id_str": "148839126848897025"}, +{"created_at": "Mon, 19 Dec 2011 18:57:58 +0000", "from_user": "jo1foster", "from_user_id": 22113670, "from_user_id_str": "22113670", "from_user_name": "Jo Foster", "geo": null, "id": 148839505573576700, "id_str": "148839505573576704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1672708409/jo1foster_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672708409/jo1foster_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@carolduncan sooo cool! I'm jealous. And how fun for your boys too! (am off to listen to the i/v now...)", "to_user": "carolduncan", "to_user_id": 20032587, "to_user_id_str": "20032587", "to_user_name": "Carol Duncan", "in_reply_to_status_id": 148721282450591740, "in_reply_to_status_id_str": "148721282450591745"}, +{"created_at": "Mon, 19 Dec 2011 18:57:57 +0000", "from_user": "Official_HollyA", "from_user_id": 310511243, "from_user_id_str": "310511243", "from_user_name": "Holly Ashby", "geo": null, "id": 148839504445308930, "id_str": "148839504445308928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1569822219/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1569822219/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "You know why I know your sick and all. And your pissed off that you can't do all the fun stuff I do, BUT DON'T. DO NOT TAKE IT OUT ON ME", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:57 +0000", "from_user": "Innate_Beauty_", "from_user_id": 382166086, "from_user_id_str": "382166086", "from_user_name": "Monty Monroe", "geo": null, "id": 148839504415965200, "id_str": "148839504415965184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674841213/k9HN1aMa_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674841213/k9HN1aMa_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "That was... Fun lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:57 +0000", "from_user": "shyralocc", "from_user_id": 83988587, "from_user_id_str": "83988587", "from_user_name": "shyra", "geo": null, "id": 148839503690342400, "id_str": "148839503690342400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699755381/331645756_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699755381/331645756_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Did everyone have fun last night at the Kappa Party ?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:57 +0000", "from_user": "sydnee_xo", "from_user_id": 282397913, "from_user_id_str": "282397913", "from_user_name": "Sydnee", "geo": null, "id": 148839503619035140, "id_str": "148839503619035136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1671003839/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671003839/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "lots of fun things to do :) what to do first?!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:57 +0000", "from_user": "MsAshliKiaraPLZ", "from_user_id": 127040414, "from_user_id_str": "127040414", "from_user_name": "Southern \\u03B2ellaMafia", "geo": null, "id": 148839502616600580, "id_str": "148839502616600576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1679215143/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679215143/profile_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@JuicyBlackBerry i mean REALLLLLLL fun lol dm !", "to_user": "JuicyBlackBerry", "to_user_id": 151540217, "to_user_id_str": "151540217", "to_user_name": "JAZZY LATOYE", "in_reply_to_status_id": 148839200643493900, "in_reply_to_status_id_str": "148839200643493888"}, +{"created_at": "Mon, 19 Dec 2011 18:57:57 +0000", "from_user": "Merthh", "from_user_id": 23543766, "from_user_id_str": "23543766", "from_user_name": "Matthew Robitaille", "geo": null, "id": 148839502507552770, "id_str": "148839502507552768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1398110046/twitpic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1398110046/twitpic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "oh my. FL studio, my new love. I'm going to have some FUN with this.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:57 +0000", "from_user": "Bailey_Wilkins_", "from_user_id": 384354343, "from_user_id_str": "384354343", "from_user_name": "Bailey Wilkins", "geo": null, "id": 148839501463162880, "id_str": "148839501463162880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687555798/VkbPNqA1_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687555798/VkbPNqA1_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Today has been a very boring but fun day. #happpyyyy :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:57 +0000", "from_user": "laureldenise", "from_user_id": 19831681, "from_user_id_str": "19831681", "from_user_name": "laurel denise smith", "geo": null, "id": 148839501186342900, "id_str": "148839501186342912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1324714924/facebook_apr2011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1324714924/facebook_apr2011_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@lucyOphoto don't have one. cut felt in circle shapes and pin them in styrofoam cones. so easy peasy and fun!", "to_user": "lucyOphoto", "to_user_id": 110230043, "to_user_id_str": "110230043", "to_user_name": "Lucy Taylor", "in_reply_to_status_id": 148595135465267200, "in_reply_to_status_id_str": "148595135465267200"}, +{"created_at": "Mon, 19 Dec 2011 18:57:56 +0000", "from_user": "DhaWAY_iiMTHUGn", "from_user_id": 385719131, "from_user_id_str": "385719131", "from_user_name": "bitch\\CHECK MaTE\\u221A", "geo": null, "id": 148839500653666300, "id_str": "148839500653666304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690457265/Ky94XwOW_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690457265/Ky94XwOW_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@AqiaBestfrenn: School was fun because for the first time to me!\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:56 +0000", "from_user": "vallpreciado", "from_user_id": 233439459, "from_user_id_str": "233439459", "from_user_name": "Valerie Preciado", "geo": null, "id": 148839500494274560, "id_str": "148839500494274560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1362735832/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1362735832/image_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for iPhone</a>", "text": "Hung over Blllla can I just lay in bed all day -______- but last night was too much fun !!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:56 +0000", "from_user": "FeliciRose", "from_user_id": 15723433, "from_user_id_str": "15723433", "from_user_name": "Fe :)) ", "geo": null, "id": 148839499902885900, "id_str": "148839499902885888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688019727/FU_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688019727/FU_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@WeirdSid So do I. It's so much fun to raise them. I'm going to order some runner ducks this spring. I can't wait.", "to_user": "WeirdSid", "to_user_id": 42195950, "to_user_id_str": "42195950", "to_user_name": "Liza Radley", "in_reply_to_status_id": 148839148936118270, "in_reply_to_status_id_str": "148839148936118272"}, +{"created_at": "Mon, 19 Dec 2011 18:57:56 +0000", "from_user": "leesutton", "from_user_id": 5512872, "from_user_id_str": "5512872", "from_user_name": "Lee Sutton", "geo": null, "id": 148839499609276400, "id_str": "148839499609276416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1346904708/40322_457546810309_584160309_6703348_8303014_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1346904708/40322_457546810309_584160309_6703348_8303014_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Finished the kids #xmas shopping at @RobotShop. Some great fun and educational (but who really cares about that) gifts for the kids!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:56 +0000", "from_user": "HRHmojie", "from_user_id": 349619541, "from_user_id_str": "349619541", "from_user_name": "moji", "geo": null, "id": 148839499475066880, "id_str": "148839499475066881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1611870853/328842507_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611870853/328842507_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Again!lola retweets.yaay!RT @ajewealth: :D RT @Loladipo: RTIt was fun hanging out with @bhabolu, @Loladipo nd @tola_moyo.. love u babes :*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:56 +0000", "from_user": "Seun_J_Ayeni", "from_user_id": 302282854, "from_user_id_str": "302282854", "from_user_name": "\\u00A4Seun\\u00A4 Ayeni\\u263A\\u2665", "geo": null, "id": 148839498443268100, "id_str": "148839498443268096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698648874/africa_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698648874/africa_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Fun Day with Feyikemi today :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:55 +0000", "from_user": "ReporterLois", "from_user_id": 429554664, "from_user_id_str": "429554664", "from_user_name": "Lois Lane", "geo": null, "id": 148839496744583170, "id_str": "148839496744583168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701276898/happy_lolo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701276898/happy_lolo_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "@Gotham_Catwoman Haha! I don't why I suddenly decided to fly around Metropolis! It was fun.", "to_user": "Gotham_Catwoman", "to_user_id": 382325981, "to_user_id_str": "382325981", "to_user_name": "Selina Kyle"}, +{"created_at": "Mon, 19 Dec 2011 18:57:55 +0000", "from_user": "guypbenson", "from_user_id": 16193222, "from_user_id_str": "16193222", "from_user_name": "Guy Benson", "geo": null, "id": 148839496018960400, "id_str": "148839496018960384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1531997685/GBheadshotmed1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1531997685/GBheadshotmed1_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\"Women\" and \"men.\" RT @RasmussenPoll: 39% see holiday gift shopping as fun experience, 38% consider it an unpleasant chore...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:57:58 +0000", "from_user": "tllinley", "from_user_id": 353940493, "from_user_id_str": "353940493", "from_user_name": "Timothy Linley II", "geo": null, "id": 148839506760572930, "id_str": "148839506760572928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700895720/393254_2874640468062_1321441377_3165562_1142640686_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700895720/393254_2874640468062_1321441377_3165562_1142640686_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I want to have some fun today. Bored!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:58 +0000", "from_user": "JackMizanin", "from_user_id": 160314696, "from_user_id_str": "160314696", "from_user_name": "Jack", "geo": null, "id": 148839506462781440, "id_str": "148839506462781440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702586718/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702586718/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@CMPunkDODfan moaning is fun whore -_-", "to_user": "CMPunkDODfan", "to_user_id": 117133860, "to_user_id_str": "117133860", "to_user_name": "Stephen. ", "in_reply_to_status_id": 148839126848897020, "in_reply_to_status_id_str": "148839126848897025"}, +{"created_at": "Mon, 19 Dec 2011 18:57:58 +0000", "from_user": "jo1foster", "from_user_id": 22113670, "from_user_id_str": "22113670", "from_user_name": "Jo Foster", "geo": null, "id": 148839505573576700, "id_str": "148839505573576704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1672708409/jo1foster_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672708409/jo1foster_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@carolduncan sooo cool! I'm jealous. And how fun for your boys too! (am off to listen to the i/v now...)", "to_user": "carolduncan", "to_user_id": 20032587, "to_user_id_str": "20032587", "to_user_name": "Carol Duncan", "in_reply_to_status_id": 148721282450591740, "in_reply_to_status_id_str": "148721282450591745"}, +{"created_at": "Mon, 19 Dec 2011 18:57:57 +0000", "from_user": "Official_HollyA", "from_user_id": 310511243, "from_user_id_str": "310511243", "from_user_name": "Holly Ashby", "geo": null, "id": 148839504445308930, "id_str": "148839504445308928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1569822219/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1569822219/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "You know why I know your sick and all. And your pissed off that you can't do all the fun stuff I do, BUT DON'T. DO NOT TAKE IT OUT ON ME", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:57 +0000", "from_user": "Innate_Beauty_", "from_user_id": 382166086, "from_user_id_str": "382166086", "from_user_name": "Monty Monroe", "geo": null, "id": 148839504415965200, "id_str": "148839504415965184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674841213/k9HN1aMa_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674841213/k9HN1aMa_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "That was... Fun lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:57 +0000", "from_user": "shyralocc", "from_user_id": 83988587, "from_user_id_str": "83988587", "from_user_name": "shyra", "geo": null, "id": 148839503690342400, "id_str": "148839503690342400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699755381/331645756_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699755381/331645756_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Did everyone have fun last night at the Kappa Party ?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:57 +0000", "from_user": "sydnee_xo", "from_user_id": 282397913, "from_user_id_str": "282397913", "from_user_name": "Sydnee", "geo": null, "id": 148839503619035140, "id_str": "148839503619035136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1671003839/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671003839/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "lots of fun things to do :) what to do first?!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:57 +0000", "from_user": "MsAshliKiaraPLZ", "from_user_id": 127040414, "from_user_id_str": "127040414", "from_user_name": "Southern \\u03B2ellaMafia", "geo": null, "id": 148839502616600580, "id_str": "148839502616600576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1679215143/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679215143/profile_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@JuicyBlackBerry i mean REALLLLLLL fun lol dm !", "to_user": "JuicyBlackBerry", "to_user_id": 151540217, "to_user_id_str": "151540217", "to_user_name": "JAZZY LATOYE", "in_reply_to_status_id": 148839200643493900, "in_reply_to_status_id_str": "148839200643493888"}, +{"created_at": "Mon, 19 Dec 2011 18:57:57 +0000", "from_user": "Merthh", "from_user_id": 23543766, "from_user_id_str": "23543766", "from_user_name": "Matthew Robitaille", "geo": null, "id": 148839502507552770, "id_str": "148839502507552768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1398110046/twitpic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1398110046/twitpic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "oh my. FL studio, my new love. I'm going to have some FUN with this.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:57 +0000", "from_user": "Bailey_Wilkins_", "from_user_id": 384354343, "from_user_id_str": "384354343", "from_user_name": "Bailey Wilkins", "geo": null, "id": 148839501463162880, "id_str": "148839501463162880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687555798/VkbPNqA1_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687555798/VkbPNqA1_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Today has been a very boring but fun day. #happpyyyy :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:57 +0000", "from_user": "laureldenise", "from_user_id": 19831681, "from_user_id_str": "19831681", "from_user_name": "laurel denise smith", "geo": null, "id": 148839501186342900, "id_str": "148839501186342912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1324714924/facebook_apr2011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1324714924/facebook_apr2011_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@lucyOphoto don't have one. cut felt in circle shapes and pin them in styrofoam cones. so easy peasy and fun!", "to_user": "lucyOphoto", "to_user_id": 110230043, "to_user_id_str": "110230043", "to_user_name": "Lucy Taylor", "in_reply_to_status_id": 148595135465267200, "in_reply_to_status_id_str": "148595135465267200"}, +{"created_at": "Mon, 19 Dec 2011 18:57:56 +0000", "from_user": "DhaWAY_iiMTHUGn", "from_user_id": 385719131, "from_user_id_str": "385719131", "from_user_name": "bitch\\CHECK MaTE\\u221A", "geo": null, "id": 148839500653666300, "id_str": "148839500653666304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690457265/Ky94XwOW_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690457265/Ky94XwOW_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@AqiaBestfrenn: School was fun because for the first time to me!\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:56 +0000", "from_user": "vallpreciado", "from_user_id": 233439459, "from_user_id_str": "233439459", "from_user_name": "Valerie Preciado", "geo": null, "id": 148839500494274560, "id_str": "148839500494274560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1362735832/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1362735832/image_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for iPhone</a>", "text": "Hung over Blllla can I just lay in bed all day -______- but last night was too much fun !!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:56 +0000", "from_user": "FeliciRose", "from_user_id": 15723433, "from_user_id_str": "15723433", "from_user_name": "Fe :)) ", "geo": null, "id": 148839499902885900, "id_str": "148839499902885888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688019727/FU_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688019727/FU_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@WeirdSid So do I. It's so much fun to raise them. I'm going to order some runner ducks this spring. I can't wait.", "to_user": "WeirdSid", "to_user_id": 42195950, "to_user_id_str": "42195950", "to_user_name": "Liza Radley", "in_reply_to_status_id": 148839148936118270, "in_reply_to_status_id_str": "148839148936118272"}, +{"created_at": "Mon, 19 Dec 2011 18:57:56 +0000", "from_user": "leesutton", "from_user_id": 5512872, "from_user_id_str": "5512872", "from_user_name": "Lee Sutton", "geo": null, "id": 148839499609276400, "id_str": "148839499609276416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1346904708/40322_457546810309_584160309_6703348_8303014_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1346904708/40322_457546810309_584160309_6703348_8303014_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Finished the kids #xmas shopping at @RobotShop. Some great fun and educational (but who really cares about that) gifts for the kids!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:56 +0000", "from_user": "HRHmojie", "from_user_id": 349619541, "from_user_id_str": "349619541", "from_user_name": "moji", "geo": null, "id": 148839499475066880, "id_str": "148839499475066881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1611870853/328842507_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611870853/328842507_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Again!lola retweets.yaay!RT @ajewealth: :D RT @Loladipo: RTIt was fun hanging out with @bhabolu, @Loladipo nd @tola_moyo.. love u babes :*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:56 +0000", "from_user": "Seun_J_Ayeni", "from_user_id": 302282854, "from_user_id_str": "302282854", "from_user_name": "\\u00A4Seun\\u00A4 Ayeni\\u263A\\u2665", "geo": null, "id": 148839498443268100, "id_str": "148839498443268096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698648874/africa_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698648874/africa_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Fun Day with Feyikemi today :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:55 +0000", "from_user": "ReporterLois", "from_user_id": 429554664, "from_user_id_str": "429554664", "from_user_name": "Lois Lane", "geo": null, "id": 148839496744583170, "id_str": "148839496744583168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701276898/happy_lolo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701276898/happy_lolo_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "@Gotham_Catwoman Haha! I don't why I suddenly decided to fly around Metropolis! It was fun.", "to_user": "Gotham_Catwoman", "to_user_id": 382325981, "to_user_id_str": "382325981", "to_user_name": "Selina Kyle"}, +{"created_at": "Mon, 19 Dec 2011 18:57:55 +0000", "from_user": "guypbenson", "from_user_id": 16193222, "from_user_id_str": "16193222", "from_user_name": "Guy Benson", "geo": null, "id": 148839496018960400, "id_str": "148839496018960384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1531997685/GBheadshotmed1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1531997685/GBheadshotmed1_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\"Women\" and \"men.\" RT @RasmussenPoll: 39% see holiday gift shopping as fun experience, 38% consider it an unpleasant chore...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:55 +0000", "from_user": "SpaceCakeGurl", "from_user_id": 267670654, "from_user_id_str": "267670654", "from_user_name": "Inja", "geo": null, "id": 148839495947657200, "id_str": "148839495947657216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1671994733/P0S55iQy_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671994733/P0S55iQy_normal", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @hansonquotes: "Life is not about just forgetting serious stuff and having fun." - Taylor Hanson", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:55 +0000", "from_user": "babyluvv94", "from_user_id": 30300857, "from_user_id_str": "30300857", "from_user_name": "Amani :)", "geo": null, "id": 148839495662444540, "id_str": "148839495662444544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701634880/hmm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701634880/hmm_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @_MICROSNREEBOKS If you broke...Atlanta isn't any fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:55 +0000", "from_user": "CinhaBreezy", "from_user_id": 236492195, "from_user_id_str": "236492195", "from_user_name": "@ChrisBrown \\u2665", "geo": null, "id": 148839494592892930, "id_str": "148839494592892928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702489085/Eu_MeuChris___normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702489085/Eu_MeuChris___normal.JPG", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @Wale: #slightwork video .. Directed by @chrisbrown.... Had a lot of fun there! Video comin soon http://t.co/oWseZBSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:55 +0000", "from_user": "R_Yucha", "from_user_id": 307110754, "from_user_id_str": "307110754", "from_user_name": "Ryan Yucha", "geo": null, "id": 148839494341242880, "id_str": "148839494341242881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1372973068/246786_10150267776167433_774862432_8861576_742397_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1372973068/246786_10150267776167433_774862432_8861576_742397_n_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Working allll day. #fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:55 +0000", "from_user": "BaboGum", "from_user_id": 153459937, "from_user_id_str": "153459937", "from_user_name": "Samuel Lim Wei Siang", "geo": null, "id": 148839494064406530, "id_str": "148839494064406529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662660601/w459_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662660601/w459_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Jojofonggg Very!! HAHA. Very fun to see first timer play code red", "to_user": "Jojofonggg", "to_user_id": 63139785, "to_user_id_str": "63139785", "to_user_name": "Joreen Emelda (:", "in_reply_to_status_id": 148839002433265660, "in_reply_to_status_id_str": "148839002433265664"}, +{"created_at": "Mon, 19 Dec 2011 18:57:54 +0000", "from_user": "_nouraaly", "from_user_id": 422308326, "from_user_id_str": "422308326", "from_user_name": "Maricella Dominguez", "geo": null, "id": 148839492487348220, "id_str": "148839492487348224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700819858/Snapshot_20111217_52_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700819858/Snapshot_20111217_52_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "FUN FACT OF THE DAY: CPW was established due to a distribution based strategic alliance between Nestle and General Mills in 1991 !!! -____-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:54 +0000", "from_user": "denisseacr", "from_user_id": 271977038, "from_user_id_str": "271977038", "from_user_name": "denisse ", "geo": null, "id": 148839491816259600, "id_str": "148839491816259584", "iso_language_code": "is", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1675843369/DSC00758_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675843369/DSC00758_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Not fun. http://t.co/21AP9aZ1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:54 +0000", "from_user": "LittleCamomille", "from_user_id": 241285568, "from_user_id_str": "241285568", "from_user_name": "Camille Duquesne", "geo": null, "id": 148839490864168960, "id_str": "148839490864168961", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1616319338/Kevin_and_Danielle_Bass_ball_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616319338/Kevin_and_Danielle_Bass_ball_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @sugarscape: New Pics! One Direction photoshoot for Nintendo: It's One Direction having fun in their role as ambassadors for ... http://t.co/zmQgFJWU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:54 +0000", "from_user": "hazeleyze16", "from_user_id": 40931271, "from_user_id_str": "40931271", "from_user_name": "Hazeleyze", "geo": null, "id": 148839490310504450, "id_str": "148839490310504448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1609969968/Mypictures128-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609969968/Mypictures128-1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Good, MorTink TweetHearts!! Today is a good day! Enjoy & Have fun~Stay outta Trouble~Trouble~Trouble (Bernie Mac Voice) LOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:54 +0000", "from_user": "leggomybego", "from_user_id": 298261475, "from_user_id_str": "298261475", "from_user_name": "Grace Begovich", "geo": null, "id": 148839488787988480, "id_str": "148839488787988480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1661853566/flowererer_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661853566/flowererer_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@NoAverageMonday you do for fun, then you need to find a new hobby.it's not cool or entertaining. You're pathetic.", "to_user": "NoAverageMonday", "to_user_id": 326447391, "to_user_id_str": "326447391", "to_user_name": "Austin Monday", "in_reply_to_status_id": 148811641880973300, "in_reply_to_status_id_str": "148811641880973313"}, +{"created_at": "Mon, 19 Dec 2011 18:57:53 +0000", "from_user": "marrettvxkbs2", "from_user_id": 395831971, "from_user_id_str": "395831971", "from_user_name": "Marrett Sherman", "geo": null, "id": 148839488074956800, "id_str": "148839488074956800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1600732771/imagesCAI68RH7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600732771/imagesCAI68RH7_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"PRICEJAYY: Finnally have a job! dollar\" have fun dressing up as an elf in webbs! ;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:53 +0000", "from_user": "K_Scizzzy", "from_user_id": 321567636, "from_user_id_str": "321567636", "from_user_name": "Kelsey Scott :)", "geo": null, "id": 148839488062369800, "id_str": "148839488062369793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1619106273/111007_200513_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619106273/111007_200513_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "So glad you're having fun with her.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:53 +0000", "from_user": "1DGuatemalaOff", "from_user_id": 437548226, "from_user_id_str": "437548226", "from_user_name": "1D Guatemala", "geo": null, "id": 148839487777153020, "id_str": "148839487777153024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694755351/310670_241598082566872_210180192375328_704868_2071179998_n_normal.jpg", "profile_image_url_https": null, "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "I'm working with my dad :( its not fun. My dad doesn't let me get on twitter. NOOOOTTT! I want one direction always and no :(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:53 +0000", "from_user": "Es_Vanee", "from_user_id": 373160185, "from_user_id_str": "373160185", "from_user_name": "Vanessa Reyes", "geo": null, "id": 148839487261261820, "id_str": "148839487261261825", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675835419/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675835419/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I had a fun night :p .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:53 +0000", "from_user": "TomlinsonsSwag", "from_user_id": 136497872, "from_user_id_str": "136497872", "from_user_name": "\\u221A \\u03DC\\u01A6\\u03B1\\u03B7o", "geo": null, "id": 148839486145576960, "id_str": "148839486145576962", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700279957/tumblr_lwcqb311Ep1r785rdo1_500_large_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700279957/tumblr_lwcqb311Ep1r785rdo1_500_large_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @NiallOfficial: Legooo! Southend! Gona be fun, get involved!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:53 +0000", "from_user": "CassieBoo", "from_user_id": 36519465, "from_user_id_str": "36519465", "from_user_name": "CeeThizzle (:", "geo": null, "id": 148839485839392770, "id_str": "148839485839392768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692189700/315937_151329588293923_100002506490023_253793_3335045_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692189700/315937_151329588293923_100002506490023_253793_3335045_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Tonights bout to be fun :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:53 +0000", "from_user": "IAmReynolds", "from_user_id": 299670468, "from_user_id_str": "299670468", "from_user_name": "Steve Reynolds", "geo": null, "id": 148839485357035520, "id_str": "148839485357035521", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1599166266/7BB40DF9-DB85-45D4-B26B-9445ECBADBCF_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599166266/7BB40DF9-DB85-45D4-B26B-9445ECBADBCF_normal", "source": "<a href="http://itunes.apple.com/us/app/chirpie-2.0/id488586627?mt=8&uo=4" rel="nofollow">Chirpie 2.0 on iOS</a>", "text": "I might be the new King of Succailure\\u2122 taken the crown from @millsustwo after this little fun ditty http://t.co/ZbsZoCBm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:53 +0000", "from_user": "adrianjejeps", "from_user_id": 143304358, "from_user_id_str": "143304358", "from_user_name": "Adrian Ram\\u00EDrez", "geo": null, "id": 148839484681760770, "id_str": "148839484681760768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686540252/211280_525956184_5463757_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686540252/211280_525956184_5463757_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Te los vai a hacer? :o RT @ilancaballero: Ready for dreadlocks! haha, this is gonna b fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:53 +0000", "from_user": "PRceo", "from_user_id": 19559747, "from_user_id_str": "19559747", "from_user_name": "Matt Russell", "geo": null, "id": 148839484669177860, "id_str": "148839484669177856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/148528119/headshots_005_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/148528119/headshots_005_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "This was a fun one! MT @RussellPublic A 10th anvrsry reflection, from '07! What did we do w/Carl's Jr & the Today Show? http://t.co/woMUJR3c", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:52 +0000", "from_user": "Bitch_ImAmber", "from_user_id": 168311260, "from_user_id_str": "168311260", "from_user_name": "Amber Lives Life", "geo": null, "id": 148839483725455360, "id_str": "148839483725455360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680347268/me__jania__and_ki_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680347268/me__jania__and_ki_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SchoolOfRocky: Had soooo much fun with @MAJORpayne_ @Merry_KRYSmass @BottlesOf_Hen @Caleeb523 @Rapidity856 @SirAlimo_III @Bitch_ImAmber love those guys!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:52 +0000", "from_user": "imSerayBelieber", "from_user_id": 274158416, "from_user_id_str": "274158416", "from_user_name": "Seray Oztek", "geo": null, "id": 148839482664300540, "id_str": "148839482664300544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1671867854/c442d3ce163511e1abb01231381b65e3_7-tile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671867854/c442d3ce163511e1abb01231381b65e3_7-tile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "If you cant laugh at yourself you cant have fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:52 +0000", "from_user": "AlexChopjian", "from_user_id": 36764415, "from_user_id_str": "36764415", "from_user_name": "Chop", "geo": null, "id": 148839481766723600, "id_str": "148839481766723585", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701238266/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701238266/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@arabswag33 thanks, have fun in the swag capital of the world!", "to_user": "arabswag33", "to_user_id": 340669205, "to_user_id_str": "340669205", "to_user_name": "Fahad Yousif", "in_reply_to_status_id": 148839122205818880, "in_reply_to_status_id_str": "148839122205818880"}, +{"created_at": "Mon, 19 Dec 2011 18:57:52 +0000", "from_user": "Lex_Forever", "from_user_id": 419043592, "from_user_id_str": "419043592", "from_user_name": "Alexis \\u2665", "geo": null, "id": 148839480655216640, "id_str": "148839480655216640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702441382/twit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702441382/twit_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @WizKhalllifa: #IWasThatKid that covered my hands in glue , let it dry , and then peeled it off for fun...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:52 +0000", "from_user": "mackenziemunoz3", "from_user_id": 240072141, "from_user_id_str": "240072141", "from_user_name": "mackenzie munoz", "geo": null, "id": 148839480231596030, "id_str": "148839480231596033", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1506704791/dddd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1506704791/dddd_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MorganKegley really... :( and its fun!", "to_user": "MorganKegley", "to_user_id": 358379469, "to_user_id_str": "358379469", "to_user_name": "Morgan18", "in_reply_to_status_id": 148797474444820480, "in_reply_to_status_id_str": "148797474444820480"}, +{"created_at": "Mon, 19 Dec 2011 18:57:51 +0000", "from_user": "taywas", "from_user_id": 222335804, "from_user_id_str": "222335804", "from_user_name": "Taylor Wasylk", "geo": null, "id": 148839478843289600, "id_str": "148839478843289600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1306929850/232323232_fp733_2_nu_3344_-52___9_WSNRCG_3638943735337nu0mrj_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1306929850/232323232_fp733_2_nu_3344_-52___9_WSNRCG_3638943735337nu0mrj_normal.jpeg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "forgot how much fun it is to bench with @jonesygirl13 . this should be fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:51 +0000", "from_user": "Broskiona_OP", "from_user_id": 123097806, "from_user_id_str": "123097806", "from_user_name": "Brandie.Ward", "geo": null, "id": 148839478650351600, "id_str": "148839478650351617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1679769197/P1080474_pi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679769197/P1080474_pi_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Nicole_zamora Had a crap load of fun at the party and wish you could of came to the movies.", "to_user": "Nicole_zamora", "to_user_id": 165479543, "to_user_id_str": "165479543", "to_user_name": "karen Nicole zamora ", "in_reply_to_status_id": 148200373176381440, "in_reply_to_status_id_str": "148200373176381440"}, +{"created_at": "Mon, 19 Dec 2011 18:57:51 +0000", "from_user": "JamesCulvinator", "from_user_id": 303973925, "from_user_id_str": "303973925", "from_user_name": "James Culverhouse", "geo": null, "id": 148839477886976000, "id_str": "148839477886976000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1688814770/newf_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688814770/newf_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@megcakes Just hold on to tomorrow night, there'll be tons of random, drama filled fun :D", "to_user": "megcakes", "to_user_id": 23428860, "to_user_id_str": "23428860", "to_user_name": "Megan Vaughan-Ellis", "in_reply_to_status_id": 148831943662899200, "in_reply_to_status_id_str": "148831943662899201"}, +{"created_at": "Mon, 19 Dec 2011 18:57:51 +0000", "from_user": "LoveThisDayEvnt", "from_user_id": 385718364, "from_user_id_str": "385718364", "from_user_name": "Kara Delay", "geo": null, "id": 148839477786312700, "id_str": "148839477786312704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1574622597/IMG_1936-1_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1574622597/IMG_1936-1_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Mad libs wedding fun! http://t.co/aTitLKtW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:51 +0000", "from_user": "C_lairen", "from_user_id": 25084734, "from_user_id_str": "25084734", "from_user_name": "Claire", "geo": null, "id": 148839477496909820, "id_str": "148839477496909825", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1549745253/84471337d3a040149e940789b3d44089_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1549745253/84471337d3a040149e940789b3d44089_7_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "@josnowflake @babykatesss Have fun!", "to_user": "josnowflake", "to_user_id": 55224353, "to_user_id_str": "55224353", "to_user_name": "Jo Winter"}, +{"created_at": "Mon, 19 Dec 2011 18:57:51 +0000", "from_user": "emmyrogo", "from_user_id": 44837632, "from_user_id_str": "44837632", "from_user_name": "Emilee Rose Gore", "geo": null, "id": 148839476679016450, "id_str": "148839476679016448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696144654/331560488_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696144654/331560488_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @ZodiacZone: #Sagittarius live life by their own rules. Full of fun, laughs and lots of good sex.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:51 +0000", "from_user": "Manon_deVinck", "from_user_id": 261179949, "from_user_id_str": "261179949", "from_user_name": "Manon de Vinck \\u2654", "geo": null, "id": 148839476553203700, "id_str": "148839476553203712", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697050863/Photo_du_74469796-12-___20.41_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697050863/Photo_du_74469796-12-___20.41_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MllxWendy Il faut s'habituer.. Sinon il est fun :)", "to_user": "MllxWendy", "to_user_id": 67640707, "to_user_id_str": "67640707", "to_user_name": "Wendy R \\u2714", "in_reply_to_status_id": 148839209216647170, "in_reply_to_status_id_str": "148839209216647168"}, +{"created_at": "Mon, 19 Dec 2011 18:57:51 +0000", "from_user": "JJeevz", "from_user_id": 94087545, "from_user_id_str": "94087545", "from_user_name": "Jeffrey Jeevz ", "geo": null, "id": 148839476154728450, "id_str": "148839476154728448", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662543877/IMG_1332_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662543877/IMG_1332_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Demo_LBM: Ik kijk nu pas Dizaster vs DNA// have fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:50 +0000", "from_user": "FreeFunInAustin", "from_user_id": 21874395, "from_user_id_str": "21874395", "from_user_name": "Heidi ", "geo": null, "id": 148839475743694850, "id_str": "148839475743694849", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1467630433/Picture_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1467630433/Picture_1_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Fun With Shipping Paper and Gift Wrap Tubes http://t.co/PzXtQOdJ #Austin", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:50 +0000", "from_user": "BMWLand", "from_user_id": 28082751, "from_user_id_str": "28082751", "from_user_name": "BMWLand", "geo": null, "id": 148839473558462460, "id_str": "148839473558462465", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/133464249/bmwland_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/133464249/bmwland_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#bmwland Re: POP QUIZ! go on have a go! it's a bit of fun for BMWLand: Shadow of the Hierophant. Steve Hackett... http://t.co/qrMgK6Hn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:50 +0000", "from_user": "AdoraLavidoca", "from_user_id": 174166544, "from_user_id_str": "174166544", "from_user_name": "Husna Anith", "geo": null, "id": 148839473436831740, "id_str": "148839473436831744", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701673277/DSC8910_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701673277/DSC8910_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "Everytime saya beli Pringles, saya akan masukkan dua pringles dlm mulut saya and pretend i'm a duck. IT'S FUN! :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:50 +0000", "from_user": "SheriSaskatoon", "from_user_id": 25334163, "from_user_id_str": "25334163", "from_user_name": "Sheri Saskatoon", "geo": null, "id": 148839473155805200, "id_str": "148839473155805184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1692876005/888_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692876005/888_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@DincTeam We're visiting in at the end of Jan! Any Scottsdale-area tips on fun stuff to do?", "to_user": "DincTeam", "to_user_id": 299879810, "to_user_id_str": "299879810", "to_user_name": "Dinc"}, +{"created_at": "Mon, 19 Dec 2011 18:57:50 +0000", "from_user": "XxSLWxX", "from_user_id": 182833698, "from_user_id_str": "182833698", "from_user_name": "Sarah Whistler ", "geo": null, "id": 148839472556015600, "id_str": "148839472556015616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1643397534/329930746_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643397534/329930746_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Princess all tucked up in bed now! She's had a very busy fun day! :D hope she has a good nits sleep #FingersCrossed :) \\u2665", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:49 +0000", "from_user": "NateBerkusShow", "from_user_id": 106585620, "from_user_id_str": "106585620", "from_user_name": "TheNateShow.com", "geo": null, "id": 148839470748270600, "id_str": "148839470748270595", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1367387800/_DC_6357_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1367387800/_DC_6357_copy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @InsideMizrahi: Don't forget - Isaac is on the @NateBerkusShow w/ fun & fresh holiday party outfit ideas! 2pm in NYC, check local listings for time & chanl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:49 +0000", "from_user": "itsMadisonM", "from_user_id": 32733714, "from_user_id_str": "32733714", "from_user_name": "Madison McFarland", "geo": null, "id": 148839469431259140, "id_str": "148839469431259136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697658619/Photo_on_2011-12-16_at_19.23__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697658619/Photo_on_2011-12-16_at_19.23__2_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@lynzeekeith awe it does look cool!! Have fun on vacation!! :)", "to_user": "lynzeekeith", "to_user_id": 168403167, "to_user_id_str": "168403167", "to_user_name": "Lynzee Keith", "in_reply_to_status_id": 148775533805707260, "in_reply_to_status_id_str": "148775533805707264"}, +{"created_at": "Mon, 19 Dec 2011 18:57:49 +0000", "from_user": "NEAL_DownToMe", "from_user_id": 374506907, "from_user_id_str": "374506907", "from_user_name": "Spooch O'Neal \\u2714", "geo": null, "id": 148839467908730880, "id_str": "148839467908730881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1654686187/spooch_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654686187/spooch_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "so what we get drunk ? so what we smoke weed ? were juaa havin fun . we dnt care who sees .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:49 +0000", "from_user": "court_nelson23", "from_user_id": 392359621, "from_user_id_str": "392359621", "from_user_name": "courtney nelson", "geo": null, "id": 148839467879378940, "id_str": "148839467879378944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1667153033/555_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667153033/555_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @sfalkowskii: @court_nelson23 mMmMm, I found these black sparkley mini dresses #owow (; it's going to be toOo fun(;", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:48 +0000", "from_user": "MRS_GORGEOUS1", "from_user_id": 205556483, "from_user_id_str": "205556483", "from_user_name": "Nikki B Me", "geo": null, "id": 148839467417993200, "id_str": "148839467417993218", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683906902/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683906902/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@RichbergENT LOL I do it for fun I dnt ever chase anything wht God has for me it is for me! I'm not tryin to be an artist tho. ;)", "to_user": "RichbergENT", "to_user_id": 27102351, "to_user_id_str": "27102351", "to_user_name": "RichbergEnt", "in_reply_to_status_id": 148838466426376200, "in_reply_to_status_id_str": "148838466426376192"}, +{"created_at": "Mon, 19 Dec 2011 18:57:48 +0000", "from_user": "ShydJustGotReal", "from_user_id": 111470720, "from_user_id_str": "111470720", "from_user_name": "iSayRudeThings&Shitt", "geo": null, "id": 148839465601867780, "id_str": "148839465601867776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700782965/179808_1867597648350_1193310274_32297829_2834356_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700782965/179808_1867597648350_1193310274_32297829_2834356_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@PLAING0RGE0US i mad it fun ... it was #lowkey Weak", "to_user": "PLAING0RGE0US", "to_user_id": 86630930, "to_user_id_str": "86630930", "to_user_name": "Gorgeous :))", "in_reply_to_status_id": 148839344680079360, "in_reply_to_status_id_str": "148839344680079360"}, +{"created_at": "Mon, 19 Dec 2011 18:57:48 +0000", "from_user": "Evenn_Steven", "from_user_id": 357269902, "from_user_id_str": "357269902", "from_user_name": "Stevie Burja", "geo": null, "id": 148839465316655100, "id_str": "148839465316655104", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675879448/image201108180007_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675879448/image201108180007_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @askalllski: Dentist isn't fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:48 +0000", "from_user": "ThatBradleyR", "from_user_id": 134201583, "from_user_id_str": "134201583", "from_user_name": "Bradley Robinson", "geo": null, "id": 148839465039839230, "id_str": "148839465039839234", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1608496483/scene_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608496483/scene_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@claremurrayxx it was fun, im at home so no, i will not paint anymore, no school is better than school, regardless", "to_user": "claremurrayxx", "to_user_id": 420584239, "to_user_id_str": "420584239", "to_user_name": "claremurray", "in_reply_to_status_id": 148839145194786800, "in_reply_to_status_id_str": "148839145194786817"}, +{"created_at": "Mon, 19 Dec 2011 18:57:48 +0000", "from_user": "devilishbeautii", "from_user_id": 227466099, "from_user_id_str": "227466099", "from_user_name": "raven swinger", "geo": null, "id": 148839464939171840, "id_str": "148839464939171840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1389449564/145-001__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1389449564/145-001__1__normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@Blakk_Beautyy: @devilishbeautii yess mam?\" What you doing I got some pictures to make fun of", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:48 +0000", "from_user": "chinoyv", "from_user_id": 47222578, "from_user_id_str": "47222578", "from_user_name": "Yvette Chino", "geo": null, "id": 148839464779792400, "id_str": "148839464779792384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1615725938/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615725938/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I had fun too!!! Eliza dragged me all the way to the top!! and Eric was everywhere! Lol \\n@mely_hurtado", "to_user": "mely_hurtado", "to_user_id": 80885190, "to_user_id_str": "80885190", "to_user_name": "Mely Hurtado ", "in_reply_to_status_id": 148837735183040500, "in_reply_to_status_id_str": "148837735183040512"}, +{"created_at": "Mon, 19 Dec 2011 18:57:48 +0000", "from_user": "AMotherhoodBlog", "from_user_id": 25093130, "from_user_id_str": "25093130", "from_user_name": "Alyssa", "geo": null, "id": 148839464444243970, "id_str": "148839464444243968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1657270174/07aad7d7-c83d-42fe-b2db-f3cbcc8b787d_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657270174/07aad7d7-c83d-42fe-b2db-f3cbcc8b787d_normal.png", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@LookWhosGrowing Good! Back home now...I was 1 of 3 parents who showed up :-S It was fun tho :)", "to_user": "LookWhosGrowing", "to_user_id": 143205071, "to_user_id_str": "143205071", "to_user_name": "Teresa Reid", "in_reply_to_status_id": 148836613307375600, "in_reply_to_status_id_str": "148836613307375616"}, +{"created_at": "Mon, 19 Dec 2011 18:57:48 +0000", "from_user": "sonarsquirrel", "from_user_id": 335897828, "from_user_id_str": "335897828", "from_user_name": "FUCK YEAHHH", "geo": null, "id": 148839464301629440, "id_str": "148839464301629440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700641015/__________2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700641015/__________2_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I uploaded a @YouTube video http://t.co/T1TkR1qC Sonar fun home trening", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:47 +0000", "from_user": "garyjudy1965", "from_user_id": 262310902, "from_user_id_str": "262310902", "from_user_name": "Beth Bue", "geo": null, "id": 148839461642444800, "id_str": "148839461642444801", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Dress warm on Wednesday night as we are adding Caroling to our fun evening!!! See note below about a game we will... http://t.co/6L5R6eIv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:47 +0000", "from_user": "kawaiimanko", "from_user_id": 53302911, "from_user_id_str": "53302911", "from_user_name": "fucking Niki", "geo": null, "id": 148839461227212800, "id_str": "148839461227212800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1678356173/lunapic_132323063294115_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678356173/lunapic_132323063294115_2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@missarahnicole definitely! hope there's one tonight ^^ & thankyous~ you have fun today too~!", "to_user": "missarahnicole", "to_user_id": 27049676, "to_user_id_str": "27049676", "to_user_name": "Miss Sarah", "in_reply_to_status_id": 148839039083089920, "in_reply_to_status_id_str": "148839039083089920"}, +{"created_at": "Mon, 19 Dec 2011 18:57:47 +0000", "from_user": "MichelleHughes_", "from_user_id": 76866234, "from_user_id_str": "76866234", "from_user_name": "Michelle Hughes", "geo": null, "id": 148839460426104830, "id_str": "148839460426104833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1554668599/backgroundANTOC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554668599/backgroundANTOC_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "WOOT I love some #Christmas fun @aaronmarcusson", "to_user": "aaronmarcusson", "to_user_id": 49799851, "to_user_id_str": "49799851", "to_user_name": "Aaron Marcusson", "in_reply_to_status_id": 148837469784252400, "in_reply_to_status_id_str": "148837469784252416"}, +{"created_at": "Mon, 19 Dec 2011 18:57:46 +0000", "from_user": "xoxo_LoveStar", "from_user_id": 165833049, "from_user_id_str": "165833049", "from_user_name": "Aaliyah (: $$$", "geo": null, "id": 148839458844844030, "id_str": "148839458844844033", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702248703/387457_262997303753874_100001308182336_658062_463652368_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702248703/387457_262997303753874_100001308182336_658062_463652368_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@NotUrAvgJyne_ awww, thank you kuda :) i miss you! we had fun togetha tha times we hung out lol", "to_user": "NotUrAvgJyne_", "to_user_id": 270672382, "to_user_id_str": "270672382", "to_user_name": "NotYourAveragedJayne", "in_reply_to_status_id": 148839278699491330, "in_reply_to_status_id_str": "148839278699491328"}, +{"created_at": "Mon, 19 Dec 2011 18:57:46 +0000", "from_user": "AccioJoeJonas", "from_user_id": 160642248, "from_user_id_str": "160642248", "from_user_name": "Andrea JonasWeasley\\u2665", "geo": null, "id": 148839458387673100, "id_str": "148839458387673088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692450070/tumblr_lw659a7N8u1r08r0to5_250_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692450070/tumblr_lw659a7N8u1r08r0to5_250_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @NiallOfficial: Legooo! Southend! Gona be fun, get involved!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:46 +0000", "from_user": "EdisLoud", "from_user_id": 364191559, "from_user_id_str": "364191559", "from_user_name": "Edward Chhun", "geo": null, "id": 148839457892745200, "id_str": "148839457892745216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1667269995/307276_10150400077646318_504286317_9740987_881707434_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667269995/307276_10150400077646318_504286317_9740987_881707434_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@AMDeeva hahah agreed! hope you're havin fun in Vegas!", "to_user": "AMDeeva", "to_user_id": 393481227, "to_user_id_str": "393481227", "to_user_name": "Amanda DeAngelo", "in_reply_to_status_id": 148839193374765060, "in_reply_to_status_id_str": "148839193374765056"}, +{"created_at": "Mon, 19 Dec 2011 18:57:46 +0000", "from_user": "__LeaveItToMe", "from_user_id": 430362256, "from_user_id_str": "430362256", "from_user_name": "January22th_MyDay!!", "geo": null, "id": 148839455757828100, "id_str": "148839455757828096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695300891/385929_2899703853925_1300262870_33208590_61992694_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695300891/385929_2899703853925_1300262870_33208590_61992694_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@__LeaveItToMe Okay...have fun", "to_user": "__LeaveItToMe", "to_user_id": 430362256, "to_user_id_str": "430362256", "to_user_name": "January22th_MyDay!!", "in_reply_to_status_id": 148838666427564030, "in_reply_to_status_id_str": "148838666427564032"}, +{"created_at": "Mon, 19 Dec 2011 18:57:45 +0000", "from_user": "tyde_xo", "from_user_id": 266930590, "from_user_id_str": "266930590", "from_user_name": "Tyde", "geo": null, "id": 148839454814117900, "id_str": "148839454814117891", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699106232/share_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699106232/share_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "lol, that was fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:45 +0000", "from_user": "Buttermore", "from_user_id": 19476511, "from_user_id_str": "19476511", "from_user_name": "Robert J. Buttermore", "geo": null, "id": 148839454294016000, "id_str": "148839454294016001", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1671537097/228680_10100696552599925_12406872_63694501_556564_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671537097/228680_10100696552599925_12406872_63694501_556564_n_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "@Twalkz would be fun to run together. 17:40 is the goal!", "to_user": "Twalkz", "to_user_id": 284744598, "to_user_id_str": "284744598", "to_user_name": "Tyler walker"}, +{"created_at": "Mon, 19 Dec 2011 18:57:45 +0000", "from_user": "Feek_YimZayne", "from_user_id": 144911646, "from_user_id_str": "144911646", "from_user_name": "#YimZayne", "geo": null, "id": 148839453992030200, "id_str": "148839453992030208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698918053/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698918053/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @BrittneyPatrese: \"@Feek_YimZayne: Damn Y'all...Da Big Boss/Wife @MrsFeek_Yim Told Me Chill Smh Lol\" *fun ends*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:45 +0000", "from_user": "aarif234", "from_user_id": 98825591, "from_user_id_str": "98825591", "from_user_name": "M Aarif Khan", "geo": null, "id": 148839453660676100, "id_str": "148839453660676097", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1135848811/Snapshot_20100227_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1135848811/Snapshot_20100227_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@InheritanceCP Ok. Type Google gravity and hit 'I'm feeling lucky'. Now watch the fun. Also now do a search, it'll keep amazing you.", "to_user": "InheritanceCP", "to_user_id": 404283614, "to_user_id_str": "404283614", "to_user_name": "Christopher Paolini", "in_reply_to_status_id": 148838705673674750, "in_reply_to_status_id_str": "148838705673674756"}, +{"created_at": "Mon, 19 Dec 2011 18:57:45 +0000", "from_user": "5berto", "from_user_id": 85306942, "from_user_id_str": "85306942", "from_user_name": "HumberCarvajalChitty", "geo": null, "id": 148839451584499700, "id_str": "148839451584499713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/704138364/hicc2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/704138364/hicc2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Alyssa_Milano Happy Happy life anniversary, have fun share your joy and happiness with other is the best way to celebrate, Cheers", "to_user": "Alyssa_Milano", "to_user_id": 26642006, "to_user_id_str": "26642006", "to_user_name": "Alyssa Milano", "in_reply_to_status_id": 148836474232651780, "in_reply_to_status_id_str": "148836474232651776"}, +{"created_at": "Mon, 19 Dec 2011 18:57:44 +0000", "from_user": "budgetbabe", "from_user_id": 14513082, "from_user_id_str": "14513082", "from_user_name": "The Budget Babe", "geo": null, "id": 148839449848061950, "id_str": "148839449848061952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1640706670/twitter-newbride_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640706670/twitter-newbride_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Thanks! Its been fun so far RT @JaneWatch2: @budgetbabe Good luck on your Jane by Design challenges!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:44 +0000", "from_user": "MrsParker___", "from_user_id": 103389988, "from_user_id_str": "103389988", "from_user_name": "Whit\\uE418\\uE31C\\uE314\\uE13E\\uE113", "geo": null, "id": 148839449286029300, "id_str": "148839449286029312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1672741390/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672741390/image_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @__Shelbz__: Yo, #VICETEAMPARTY is 12 days away DEC31ST from 8-1am, in dearborn @ the maltese club, $5 before 9. SO BE THERE GET/GIVE DANCES AND HAVE FUN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:44 +0000", "from_user": "robertballew", "from_user_id": 23795800, "from_user_id_str": "23795800", "from_user_name": "Robert Ballew", "geo": null, "id": 148839449126641660, "id_str": "148839449126641664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1158269351/Super_Hero_02_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1158269351/Super_Hero_02_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Old Navy's don't seem to be as FUN as when I was manager. What happened to smiling employees & happy customers? :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:44 +0000", "from_user": "bkaTinaBina", "from_user_id": 41243490, "from_user_id_str": "41243490", "from_user_name": "AKT", "geo": null, "id": 148839449034362880, "id_str": "148839449034362880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699330778/cropped_307152_275692589120731_100000399753708_934834_1962054507_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699330778/cropped_307152_275692589120731_100000399753708_934834_1962054507_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "@JuiceDatThangJG welp glad you had fun.", "to_user": "JuiceDatThangJG", "to_user_id": 88772247, "to_user_id_str": "88772247", "to_user_name": "Cashmere Gordon", "in_reply_to_status_id": 148839001229508600, "in_reply_to_status_id_str": "148839001229508609"}, +{"created_at": "Mon, 19 Dec 2011 18:57:44 +0000", "from_user": "EliotGates", "from_user_id": 238546075, "from_user_id_str": "238546075", "from_user_name": "Eliot John Gates", "geo": null, "id": 148839448145170430, "id_str": "148839448145170433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1612379110/Oct_2011_005_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612379110/Oct_2011_005_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@AdamJBaker97 What can i say? It's proven that bad guys have all the fun. >:)", "to_user": "AdamJBaker97", "to_user_id": 244877239, "to_user_id_str": "244877239", "to_user_name": "Adam Joseph Baker", "in_reply_to_status_id": 148836820866695170, "in_reply_to_status_id_str": "148836820866695168"}, +{"created_at": "Mon, 19 Dec 2011 18:57:44 +0000", "from_user": "CEOLaCoty", "from_user_id": 35295507, "from_user_id_str": "35295507", "from_user_name": "AAHH IMMA CRAZY HOE", "geo": null, "id": 148839447356653570, "id_str": "148839447356653568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1672307388/coty_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672307388/coty_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @Skinnyboi_ROC: @CEOLaCoty we had fun lastnight", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:44 +0000", "from_user": "ahh_shad", "from_user_id": 265442368, "from_user_id_str": "265442368", "from_user_name": "Mohammed Arshad", "geo": null, "id": 148839447251787780, "id_str": "148839447251787776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1621050280/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621050280/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@structx yeah fun ah starbucks \\uD83D\\uDE03", "to_user": "structx", "to_user_id": 272890761, "to_user_id_str": "272890761", "to_user_name": "Fee", "in_reply_to_status_id": 148801179013480450, "in_reply_to_status_id_str": "148801179013480448"}, +{"created_at": "Mon, 19 Dec 2011 18:57:43 +0000", "from_user": "rustilyn", "from_user_id": 16428001, "from_user_id_str": "16428001", "from_user_name": "rusti", "geo": null, "id": 148839445775396860, "id_str": "148839445775396864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1670611335/edited_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670611335/edited_pic_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@PrettyAllTrue have fun and good luck!! :) @BrandonPDuncan", "to_user": "PrettyAllTrue", "to_user_id": 117567840, "to_user_id_str": "117567840", "to_user_name": "Kris", "in_reply_to_status_id": 148839236467048450, "in_reply_to_status_id_str": "148839236467048450"}, +{"created_at": "Mon, 19 Dec 2011 18:57:43 +0000", "from_user": "NeAsHa_DGAF", "from_user_id": 188448256, "from_user_id_str": "188448256", "from_user_name": "Roneasha Douglas", "geo": null, "id": 148839445238517760, "id_str": "148839445238517761", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701669621/PicsArt1324187087159_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701669621/PicsArt1324187087159_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "bt im still goin 2 hve fun becuz i hve someone 2 entertain me dhA WHOLE TIME teehee.*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:43 +0000", "from_user": "rawr2ari", "from_user_id": 298764457, "from_user_id_str": "298764457", "from_user_name": "Ari Dean", "geo": null, "id": 148839444781342720, "id_str": "148839444781342722", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685370027/rawr2ari8_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685370027/rawr2ari8_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @WizKhalllifa: #IWasThatKid that covered my hands in glue , let it dry , and then peeled it off for fun...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:43 +0000", "from_user": "ImBeverlyBTW", "from_user_id": 204004844, "from_user_id_str": "204004844", "from_user_name": "Beverly Rogers", "geo": null, "id": 148839444328349700, "id_str": "148839444328349696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700637661/beverlysenior_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700637661/beverlysenior_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Markeya said I'm no fun to be around .... true.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:43 +0000", "from_user": "GotMUNCHHH", "from_user_id": 221885271, "from_user_id_str": "221885271", "from_user_name": "nojaR.srM", "geo": null, "id": 148839444231888900, "id_str": "148839444231888897", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1683491329/120911124506_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683491329/120911124506_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@Tasha_Miller Lmfaoooooo! ! Done with u , have fun", "to_user": "Tasha_Miller", "to_user_id": 86545670, "to_user_id_str": "86545670", "to_user_name": "Natasha Miller", "in_reply_to_status_id": 148838811298832400, "in_reply_to_status_id_str": "148838811298832384"}, +{"created_at": "Mon, 19 Dec 2011 18:57:43 +0000", "from_user": "emmalivpowell", "from_user_id": 51699702, "from_user_id_str": "51699702", "from_user_name": "Emma Powell", "geo": null, "id": 148839443703402500, "id_str": "148839443703402496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1577008085/fdfdfdfd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1577008085/fdfdfdfd_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I need sun, cocktails, pool, party, fun all day, all night. I need tenerife now! 7 weeks.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:43 +0000", "from_user": "MissSliim", "from_user_id": 334466218, "from_user_id_str": "334466218", "from_user_name": "tish", "geo": null, "id": 148839442642251780, "id_str": "148839442642251776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1640906653/MissSliim_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640906653/MissSliim_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@_BlkDahlia lol that's no fun....don't forget about my trick I told u about....it's gon b so tight", "to_user": "_BlkDahlia", "to_user_id": 111051026, "to_user_id_str": "111051026", "to_user_name": "Cora Graves", "in_reply_to_status_id": 148838811810541570, "in_reply_to_status_id_str": "148838811810541568"}, +{"created_at": "Mon, 19 Dec 2011 18:57:43 +0000", "from_user": "Honey_Bunny_", "from_user_id": 58098796, "from_user_id_str": "58098796", "from_user_name": " Honey Bunny", "geo": null, "id": 148839442579341300, "id_str": "148839442579341313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/320794241/picture1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/320794241/picture1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@JensonButton ...You practise the fun looks that are good in fun advertising(like the teamradio ad style) =0P", "to_user": "JensonButton", "to_user_id": 23440052, "to_user_id_str": "23440052", "to_user_name": "Jenson Button"}, +{"created_at": "Mon, 19 Dec 2011 18:57:43 +0000", "from_user": "TimDoyle19", "from_user_id": 58992245, "from_user_id_str": "58992245", "from_user_name": "Tim Doyle", "geo": null, "id": 148839442306707460, "id_str": "148839442306707456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1609938891/369969_780225569_355664012_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609938891/369969_780225569_355664012_n_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "RT @WyattGooden: Interview tonight with the guys at Race Talk Radio, gonna be fun! Show starts at 8pmEST, I'll be on at around... http://t.co/QgqdYify", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:42 +0000", "from_user": "Valerie_J_GG", "from_user_id": 190069997, "from_user_id_str": "190069997", "from_user_name": "Valerie ", "geo": null, "id": 148839441824354300, "id_str": "148839441824354304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695943159/Auburn_Hair_Fall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695943159/Auburn_Hair_Fall_normal.jpg", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "Did I mention I love December in FL? Gorgeous weather & scenery for sun, fun, & run. (@ Hollis Gardens) [pic]: http://t.co/Vu6r5liJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:42 +0000", "from_user": "liobrien", "from_user_id": 46666884, "from_user_id_str": "46666884", "from_user_name": "Lisa O Brien", "geo": null, "id": 148839440637362180, "id_str": "148839440637362177", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1235927418/Cedars072_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1235927418/Cedars072_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "These Festive Angry Birds Decorations Are Really An Fun Interactive Game http://t.co/5pZ32Gk9 via @simplyzesty", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:42 +0000", "from_user": "smaknificent", "from_user_id": 102116847, "from_user_id_str": "102116847", "from_user_name": "Smaknificent ", "geo": null, "id": 148839440075333630, "id_str": "148839440075333632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1649925110/Smak_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649925110/Smak_normal.jpeg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "Man facebook aint fun at all. everyone takes the shit too fuckin serious.they seem all extra boring.Lighten UP will ya! #DRINK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:42 +0000", "from_user": "JoshDua", "from_user_id": 132016760, "from_user_id_str": "132016760", "from_user_name": "Josh Dua", "geo": null, "id": 148839440066945020, "id_str": "148839440066945024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1320199045/188598_101628719921966_100002245146677_10960_5704278_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1320199045/188598_101628719921966_100002245146677_10960_5704278_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@FOREALPro have fun with the fam!", "to_user": "FOREALPro", "to_user_id": 20177656, "to_user_id_str": "20177656", "to_user_name": "Steen Hunter", "in_reply_to_status_id": 148838899588923400, "in_reply_to_status_id_str": "148838899588923392"} +, +{"created_at": "Mon, 19 Dec 2011 18:57:42 +0000", "from_user": "haleysheram", "from_user_id": 35589080, "from_user_id_str": "35589080", "from_user_name": "Haley Sheram", "geo": null, "id": 148839438989013000, "id_str": "148839438989012993", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1659601841/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659601841/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@kristenbooty have fun at the doctor ;)", "to_user": "kristenbooty", "to_user_id": 370206301, "to_user_id_str": "370206301", "to_user_name": "Kristen Bailey"}, +{"created_at": "Mon, 19 Dec 2011 18:57:42 +0000", "from_user": "Awesome_bby", "from_user_id": 161446281, "from_user_id_str": "161446281", "from_user_name": "CassieLove\\u2665", "geo": null, "id": 148839438133362700, "id_str": "148839438133362688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1606754610/Photo41j_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606754610/Photo41j_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Your gonna be the one, while im out having fun .. Your gonna be the one thats broken ;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:41 +0000", "from_user": "brunggg", "from_user_id": 88975903, "from_user_id_str": "88975903", "from_user_name": "Brittany Rung", "geo": null, "id": 148839437978185730, "id_str": "148839437978185728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697718171/twit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697718171/twit_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "today was so fun until about 4 minutes ago -__-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:41 +0000", "from_user": "tlrpm", "from_user_id": 12254302, "from_user_id_str": "12254302", "from_user_name": "Beau Dean", "geo": null, "id": 148839437940441100, "id_str": "148839437940441088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1545629765/avatar_normal.JPEG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545629765/avatar_normal.JPEG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@ThePluckyCharms Does the mispelling take you anywhere fun?", "to_user": "ThePluckyCharms", "to_user_id": 35202959, "to_user_id_str": "35202959", "to_user_name": "Plucky Charms", "in_reply_to_status_id": 148836907986599940, "in_reply_to_status_id_str": "148836907986599936"}, +{"created_at": "Mon, 19 Dec 2011 18:57:41 +0000", "from_user": "Josh_Davis_37", "from_user_id": 333097160, "from_user_id_str": "333097160", "from_user_name": "Josh Davis", "geo": null, "id": 148839436984135680, "id_str": "148839436984135680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1591807895/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591807895/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@_HauptToooIt_ coming from a future hillbilly, have fun trying to get service up here lol", "to_user": "_HauptToooIt_", "to_user_id": 346005099, "to_user_id_str": "346005099", "to_user_name": "Caroline Haupt", "in_reply_to_status_id": 148829180992303100, "in_reply_to_status_id_str": "148829180992303107"}, +{"created_at": "Mon, 19 Dec 2011 18:57:41 +0000", "from_user": "Redd_Swishaa", "from_user_id": 412688575, "from_user_id_str": "412688575", "from_user_name": "Black Diva", "geo": null, "id": 148839434006167550, "id_str": "148839434006167553", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694851174/2011-12-14_21.32.24_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694851174/2011-12-14_21.32.24_normal.png", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@LV_4rm_Da_WV It ain't no fun unless we all get some\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:40 +0000", "from_user": "Shadowcms", "from_user_id": 167565648, "from_user_id_str": "167565648", "from_user_name": "obrien scott", "geo": null, "id": 148839431917416450, "id_str": "148839431917416448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1214145294/19972-bigthumbnail_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1214145294/19972-bigthumbnail_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@CallofDuty I survived 40 rounds with just me and friend on Kino Der Toten. It was fun but we were both tired so we could have gone further.", "to_user": "CallofDuty", "to_user_id": 290097288, "to_user_id_str": "290097288", "to_user_name": "Call of Duty", "in_reply_to_status_id": 148521748307001340, "in_reply_to_status_id_str": "148521748307001345"}, +{"created_at": "Mon, 19 Dec 2011 18:57:40 +0000", "from_user": "College_boy17", "from_user_id": 35270105, "from_user_id_str": "35270105", "from_user_name": "Anderson Youte", "geo": null, "id": 148839431758037000, "id_str": "148839431758036992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689948249/657_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689948249/657_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "I went to the liquor store just for fun and ask the guy to be a ciroc and he asked if I am 21. I said I am 18.he said you have to be 21.wtf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:40 +0000", "from_user": "Elinaqqo", "from_user_id": 440199975, "from_user_id_str": "440199975", "from_user_name": "Elina Witters", "geo": null, "id": 148839430965297150, "id_str": "148839430965297153", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700544811/rxpt5045su_120594672_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700544811/rxpt5045su_120594672_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Stephen Joseph Beach Totes With Sand Toy Play Set Turtle: Get ready to take in some sand and surf with this fun ... http://t.co/RlgoqQPi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:40 +0000", "from_user": "MAEshizzle", "from_user_id": 33559780, "from_user_id_str": "33559780", "from_user_name": "Beautiful Savage", "geo": null, "id": 148839430931759100, "id_str": "148839430931759104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699699812/mm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699699812/mm_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Stop right there thank you very much.I need somebody w/ a human touch.Hey you, always on the run gotta slow it down baby gotta hav some fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:40 +0000", "from_user": "ThnkGOD4makn_ME", "from_user_id": 231181598, "from_user_id_str": "231181598", "from_user_name": "Kekyra Taylor", "geo": null, "id": 148839430910775300, "id_str": "148839430910775296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1630801282/329507302_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630801282/329507302_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Mary J didnt say nun wrong when she said \"bad boys aint no good... Good boys aint no fun\" well wit exception to da grammar part.. of cou ...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:40 +0000", "from_user": "tamarita27", "from_user_id": 30348363, "from_user_id_str": "30348363", "from_user_name": "Tamara Hilmes", "geo": null, "id": 148839430122242050, "id_str": "148839430122242050", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1258777086/pic_for_twitter_new_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1258777086/pic_for_twitter_new_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "if ever you are offered a kumquat, just say no. or throw it across the room. that would be fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:39 +0000", "from_user": "biebersona", "from_user_id": 119896537, "from_user_id_str": "119896537", "from_user_name": "Kidrauhl ;]", "geo": null, "id": 148839427563733000, "id_str": "148839427563732994", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1575499927/Abuja-20111006-00325_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575499927/Abuja-20111006-00325_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @ItsOhMonna: single bells,\\nsingle bells,\\nsingle all the way..\\noh how fun it is to watch cute couples every day -.-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:39 +0000", "from_user": "MuSiC_MaNiAc_19", "from_user_id": 69422394, "from_user_id_str": "69422394", "from_user_name": "Jeremy Coleman", "geo": null, "id": 148839426590638080, "id_str": "148839426590638080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1628049945/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628049945/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I had fun ringing the bell this morning. :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:39 +0000", "from_user": "andikeptwalking", "from_user_id": 117686766, "from_user_id_str": "117686766", "from_user_name": "Sahil M. Bansal", "geo": null, "id": 148839426573873150, "id_str": "148839426573873152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1599091275/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599091275/Untitled_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "And then people wonder why does the rest of the world make fun of Americans for being ignorant. (re: last tweet) #KimJong not #LilKim", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:39 +0000", "from_user": "First48_208", "from_user_id": 287406156, "from_user_id_str": "287406156", "from_user_name": "SYN_WORLD Eno ", "geo": null, "id": 148839426242527230, "id_str": "148839426242527232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702554539/FUdbO0c1_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702554539/FUdbO0c1_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Im going to Vegas in May that shit gone B fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:38 +0000", "from_user": "Rani_AF", "from_user_id": 23833658, "from_user_id_str": "23833658", "from_user_name": "Rani Vampyress", "geo": null, "id": 148839425487552500, "id_str": "148839425487552512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1487402478/273058_10150238019201570_580391569_8018992_6045624_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1487402478/273058_10150238019201570_580391569_8018992_6045624_o_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Sounds fun! @XoxoxKee RT @KarenWalkerBot: Let's take pictures of us eating all this food and then show it to some homeless person", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:38 +0000", "from_user": "SWMplsPatch", "from_user_id": 209641840, "from_user_id_str": "209641840", "from_user_name": "SW Minneapolis Patch", "geo": null, "id": 148839425131020300, "id_str": "148839425131020288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1545607948/Photo_on_2011-08-14_at_14.03_face0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545607948/Photo_on_2011-08-14_at_14.03_face0_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @wagsbrew: I wonder if Krampus is at Macy's? Seems more fun & appropriate for my style...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:38 +0000", "from_user": "CallMeEmilyB", "from_user_id": 271656071, "from_user_id_str": "271656071", "from_user_name": "EmilyB; duhh.", "geo": null, "id": 148839424640294900, "id_str": "148839424640294912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1655311067/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655311067/image_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"@chrisB_swag: I'm going to France tomorrow!! :)\"- I live in england, right next to it:). Have fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:38 +0000", "from_user": "Beesberry", "from_user_id": 222661157, "from_user_id_str": "222661157", "from_user_name": "Beesoyeh Ologbenla", "geo": null, "id": 148839423885328400, "id_str": "148839423885328386", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1688791671/IMG-20111126-01064_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688791671/IMG-20111126-01064_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "U no kuku dey ask for person,oga fun e o. RT\"@AyokaBerry: I v bn around \"@Beesberry: @AyokaBerry : sup wif u nau,where have u been?\"\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:38 +0000", "from_user": "K_KBONEZY", "from_user_id": 372804314, "from_user_id_str": "372804314", "from_user_name": "Omokehinde", "geo": null, "id": 148839423520423940, "id_str": "148839423520423937", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698404714/331612851_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698404714/331612851_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Mad fun tonight!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:38 +0000", "from_user": "AqiaBestfrenn", "from_user_id": 289642881, "from_user_id_str": "289642881", "from_user_name": "Rastafarian\\u2122", "geo": null, "id": 148839423344254980, "id_str": "148839423344254976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699165268/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699165268/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "School was fun because for the first time to me!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:38 +0000", "from_user": "_kimmiej", "from_user_id": 237891718, "from_user_id_str": "237891718", "from_user_name": "kimberly", "geo": null, "id": 148839421813329920, "id_str": "148839421813329920", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1669926356/1269663315_4_Xn9I_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669926356/1269663315_4_Xn9I_1_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @justabudding: Mannen doen vies voor fun\"/ deepthroat(a) #bof", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:38 +0000", "from_user": "TaraW88", "from_user_id": 40064778, "from_user_id_str": "40064778", "from_user_name": "Tara Wheeler", "geo": null, "id": 148839421704290300, "id_str": "148839421704290305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688634954/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688634954/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@AIAseanjacoby @dennisrodman have fun!!!! Hopefully see ya soon.", "to_user": "AIAseanjacoby", "to_user_id": 75944628, "to_user_id_str": "75944628", "to_user_name": "Sean Jacoby", "in_reply_to_status_id": 148837573219983360, "in_reply_to_status_id_str": "148837573219983360"}, +{"created_at": "Mon, 19 Dec 2011 18:57:37 +0000", "from_user": "DefineMe_Crazy", "from_user_id": 96024565, "from_user_id_str": "96024565", "from_user_name": "-Riddick", "geo": null, "id": 148839420609572860, "id_str": "148839420609572865", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687815349/DA5Qq0Q6_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687815349/DA5Qq0Q6_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@rickyrozay92 suckerr have fun last night??", "to_user": "rickyrozay92", "to_user_id": 320442610, "to_user_id_str": "320442610", "to_user_name": "Ricky McCloud"}, +{"created_at": "Mon, 19 Dec 2011 18:57:37 +0000", "from_user": "fhinrymughni", "from_user_id": 325000504, "from_user_id_str": "325000504", "from_user_name": "Fin\\u263A\\u2665", "geo": null, "id": 148839420576014340, "id_str": "148839420576014336", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1646223454/330025364_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646223454/330025364_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Yak #Madam \\u2611 #OrangBijak \\u2611 #Singer \\u2611 HAHA sorry just for fun ;;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:37 +0000", "from_user": "fuzztester", "from_user_id": 172725404, "from_user_id_str": "172725404", "from_user_name": "Dan King", "geo": null, "id": 148839417535139840, "id_str": "148839417535139840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1107239655/Warm-Fuzzy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1107239655/Warm-Fuzzy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dlitchfield I was thinking it looks more like Swordfish. Either way, looks like a fun time :)", "to_user": "dlitchfield", "to_user_id": 117931480, "to_user_id_str": "117931480", "to_user_name": "David Litchfield", "in_reply_to_status_id": 148811961998643200, "in_reply_to_status_id_str": "148811961998643201"}, +{"created_at": "Mon, 19 Dec 2011 18:57:36 +0000", "from_user": "chelbell24", "from_user_id": 50545356, "from_user_id_str": "50545356", "from_user_name": "Chelsea", "geo": null, "id": 148839416809537540, "id_str": "148839416809537537", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1516692755/Photo_174_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1516692755/Photo_174_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@21Kmarsh tooooo much fun!!!!", "to_user": "21Kmarsh", "to_user_id": 177118126, "to_user_id_str": "177118126", "to_user_name": "Kyle Marshall", "in_reply_to_status_id": 148726092214173700, "in_reply_to_status_id_str": "148726092214173696"}, +{"created_at": "Mon, 19 Dec 2011 18:57:36 +0000", "from_user": "Briiiinana", "from_user_id": 246356938, "from_user_id_str": "246356938", "from_user_name": "Briana Williams", "geo": null, "id": 148839416151023600, "id_str": "148839416151023616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1626495475/NEWNEWNEW_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626495475/NEWNEWNEW_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I can't wait for the rest of my family to get here; these next two weeks are gonna be soooo much fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:36 +0000", "from_user": "DanReynishCBC", "from_user_id": 371213827, "from_user_id_str": "371213827", "from_user_name": "Dan Reynish", "geo": null, "id": 148839416041963520, "id_str": "148839416041963522", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690148608/Danny_Mom_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690148608/Danny_Mom_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "Have some fun, type LET IT SNOW into the Google search engine...do we still call them search engines?!?!...and enjoy!! http://t.co/wQKkTj8h", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:36 +0000", "from_user": "Ladee_Z", "from_user_id": 35661108, "from_user_id_str": "35661108", "from_user_name": "Emma Yuzuki ", "geo": null, "id": 148839415966474240, "id_str": "148839415966474241", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699593338/Ladee_Z_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699593338/Ladee_Z_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@chriscanfly I bet it'd be the most fun job ever", "to_user": "chriscanfly", "to_user_id": 23028876, "to_user_id_str": "23028876", "to_user_name": "Christian Rodriguez", "in_reply_to_status_id": 148834985934200830, "in_reply_to_status_id_str": "148834985934200832"}, +{"created_at": "Mon, 19 Dec 2011 18:57:36 +0000", "from_user": "RobesInAction", "from_user_id": 40399006, "from_user_id_str": "40399006", "from_user_name": "Robespierre ", "geo": null, "id": 148839415454777340, "id_str": "148839415454777344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1499068345/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1499068345/image_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "Woooooo this game is mad fun! #JetPackJoyRide http://t.co/QRnWzWzf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:36 +0000", "from_user": "katymmac", "from_user_id": 265572539, "from_user_id_str": "265572539", "from_user_name": "Katy McDaniel", "geo": null, "id": 148839414594940930, "id_str": "148839414594940929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1584470462/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584470462/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Have fun in London @caitlincor and @annmarcor!! #bringmebackabrit", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:36 +0000", "from_user": "kinikia007", "from_user_id": 9078212, "from_user_id_str": "9078212", "from_user_name": "kinikia007", "geo": null, "id": 148839414167109630, "id_str": "148839414167109633", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/95752032/CieCie_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/95752032/CieCie_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@taniz Have way too much fun! After all, it is your birthday so you call the rules.", "to_user": "taniz", "to_user_id": 802898, "to_user_id_str": "802898", "to_user_name": "Pete Norton", "in_reply_to_status_id": 148826901765566460, "in_reply_to_status_id_str": "148826901765566465"}, +{"created_at": "Mon, 19 Dec 2011 18:57:35 +0000", "from_user": "meghanoharaxx", "from_user_id": 107704132, "from_user_id_str": "107704132", "from_user_name": "meghan.", "geo": null, "id": 148839412824936450, "id_str": "148839412824936448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687358605/tumblr_lw1w4so44C1r1mrcso1_500_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687358605/tumblr_lw1w4so44C1r1mrcso1_500_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "i love to do acting i think it would be so fun :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:35 +0000", "from_user": "Simply_Merica", "from_user_id": 34233391, "from_user_id_str": "34233391", "from_user_name": "\\u2600Merica Monamodi\\u2600", "geo": null, "id": 148839412028026880, "id_str": "148839412028026880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695218619/Sebokeng-20111215-01473_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695218619/Sebokeng-20111215-01473_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Do yol understand that I was in Mpumalanga..and I didn't even know Hahahaha yho I was living, stranded there! Toooo much fun thou \\u263A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:35 +0000", "from_user": "Switestberry", "from_user_id": 199630070, "from_user_id_str": "199630070", "from_user_name": "1stLady!!!", "geo": null, "id": 148839411893796860, "id_str": "148839411893796864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699801241/Switestberry_1359429260075320581_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699801241/Switestberry_1359429260075320581_normal.jpg", "source": "<a href="http://www.twitter.com" rel="nofollow">\\u0422witter for i\\u03A1hone</a>", "text": "LoOOOOL! U must be fun den! RT @TushAgbero: She mentions me ONLY wen shez bored.. I guess I'm JUST a cure for boredom", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:35 +0000", "from_user": "DanielFlynn5", "from_user_id": 391040553, "from_user_id_str": "391040553", "from_user_name": "Daniel Flynn", "geo": null, "id": 148839411843473400, "id_str": "148839411843473409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1673804466/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673804466/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@issycorby get your ass to Bristol this week please. Fun starts from tomorrow!", "to_user": "issycorby", "to_user_id": 19133828, "to_user_id_str": "19133828", "to_user_name": "Issy Corby"}, +{"created_at": "Mon, 19 Dec 2011 18:57:35 +0000", "from_user": "Jake_R_G", "from_user_id": 53778749, "from_user_id_str": "53778749", "from_user_name": "Robin van der Ploeg", "geo": null, "id": 148839410908147700, "id_str": "148839410908147712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/298068977/Yellow_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/298068977/Yellow_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "BEST #STEAM DEAL EVER http://t.co/9DEFitdi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:35 +0000", "from_user": "FrigginLexie", "from_user_id": 261945091, "from_user_id_str": "261945091", "from_user_name": "Lexie Williams", "geo": null, "id": 148839410815860740, "id_str": "148839410815860737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699707137/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699707137/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "yea, so I just think that it'd be sweet if @justinbieber sang his Christmas song \"All I Want Is You\" to me(: that'd be fun:D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:35 +0000", "from_user": "wegianshooter", "from_user_id": 409571920, "from_user_id_str": "409571920", "from_user_name": "Mark Erickson", "geo": null, "id": 148839410715209730, "id_str": "148839410715209729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1633710694/gravatar_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633710694/gravatar_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@davidsirota: A must-watch video: http://t.co/Jf8Rce0n\\u201D about electoral college and voting! Fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:35 +0000", "from_user": "megan_lucy", "from_user_id": 155952005, "from_user_id_str": "155952005", "from_user_name": "Meg Jones", "geo": null, "id": 148839410446762000, "id_str": "148839410446761985", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1678984295/305156_2194126446020_1032949396_32376509_1749325138_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678984295/305156_2194126446020_1032949396_32376509_1749325138_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "sade; (throwing a egg) its so fun I like the danger init", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:35 +0000", "from_user": "drawyourdestiny", "from_user_id": 409416041, "from_user_id_str": "409416041", "from_user_name": "Mrs. Forever Alone\\u03DF.", "geo": null, "id": 148839410123808770, "id_str": "148839410123808768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702596181/476188171_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702596181/476188171_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @NiallOfficial: Legooo! Southend! Gona be fun, get involved!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:35 +0000", "from_user": "lorennaa88", "from_user_id": 198891281, "from_user_id_str": "198891281", "from_user_name": "Loren Gomez", "geo": null, "id": 148839409951834100, "id_str": "148839409951834112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1660124365/1pwWEpkU_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660124365/1pwWEpkU_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "We're just having fun, we don't care who sees. #youngwildandfreeeeee", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:34 +0000", "from_user": "AfricanboySwagg", "from_user_id": 349467189, "from_user_id_str": "349467189", "from_user_name": "Emmanuel Freeman ", "geo": null, "id": 148839408446087170, "id_str": "148839408446087170", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1482027698/IMAG0460_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1482027698/IMAG0460_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@whoUfinnatryyyy ight cool its gon be so fun", "to_user": "whoUfinnatryyyy", "to_user_id": 246589736, "to_user_id_str": "246589736", "to_user_name": "Tikytikywandah Smith", "in_reply_to_status_id": 148839240757809150, "in_reply_to_status_id_str": "148839240757809152"}, +{"created_at": "Mon, 19 Dec 2011 18:57:34 +0000", "from_user": "chynnatamarah", "from_user_id": 314982436, "from_user_id_str": "314982436", "from_user_name": "Chynna Danne", "geo": null, "id": 148839408311865340, "id_str": "148839408311865345", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1628112570/Snapshot_20110604_15_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628112570/Snapshot_20110604_15_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I had fun at practice", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:34 +0000", "from_user": "ittibittinz", "from_user_id": 65800260, "from_user_id_str": "65800260", "from_user_name": "itti bitti NZ", "geo": null, "id": 148839407607226370, "id_str": "148839407607226368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/870881615/ib150x1503_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/870881615/ib150x1503_normal.gif", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Yawn! - last night was so much fun I am still smiling this morning :0). I hope your babies slept well for you!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:34 +0000", "from_user": "CSouquette80", "from_user_id": 428852330, "from_user_id_str": "428852330", "from_user_name": "Cathy Souquette", "geo": null, "id": 148839407280070660, "id_str": "148839407280070656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681941218/098_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681941218/098_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Had way too much fun last night.. #hungover", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:34 +0000", "from_user": "covernewsinfo", "from_user_id": 20792440, "from_user_id_str": "20792440", "from_user_name": "CoverNews.info", "geo": null, "id": 148839406546071550, "id_str": "148839406546071552", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1616724484/logoconredes_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616724484/logoconredes_normal.jpg", "source": "<a href="http://fun.ly" rel="nofollow">fun.ly</a>", "text": "Claro presente un a\\u00F1o m\\u00E1s en Mar del Plata http://t.co/sXPAianc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:34 +0000", "from_user": "OliviaLloyd_x", "from_user_id": 290550514, "from_user_id_str": "290550514", "from_user_name": "ll0yd \\u2020", "geo": null, "id": 148839405870776320, "id_str": "148839405870776323", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1684884061/P1013207_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684884061/P1013207_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@Hazel_Crawford that's good hazzio, yes it was thanks, was it fun in biology with the creature from jurassic park?xx", "to_user": "Hazel_Crawford", "to_user_id": 415760794, "to_user_id_str": "415760794", "to_user_name": "Hazel Crawford", "in_reply_to_status_id": 148839053989658620, "in_reply_to_status_id_str": "148839053989658624"}, +{"created_at": "Mon, 19 Dec 2011 18:57:34 +0000", "from_user": "Remmsss", "from_user_id": 396633610, "from_user_id_str": "396633610", "from_user_name": "Remi Aridegbe", "geo": null, "id": 148839405807869950, "id_str": "148839405807869953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694371180/remi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694371180/remi_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@YooItsSeyilogzz I actually had fun today.", "to_user": "YooItsSeyilogzz", "to_user_id": 167382211, "to_user_id_str": "167382211", "to_user_name": "Seyilogo #LOUD"}, +{"created_at": "Mon, 19 Dec 2011 18:57:34 +0000", "from_user": "BrandonPDuncan", "from_user_id": 128833363, "from_user_id_str": "128833363", "from_user_name": "Brandon P. Duncan", "geo": null, "id": 148839404557975550, "id_str": "148839404557975552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1204106667/melexcrop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1204106667/melexcrop_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@PrettyAllTrue @rustilyn Have fun with that.", "to_user": "PrettyAllTrue", "to_user_id": 117567840, "to_user_id_str": "117567840", "to_user_name": "Kris", "in_reply_to_status_id": 148839236467048450, "in_reply_to_status_id_str": "148839236467048450"}, +{"created_at": "Mon, 19 Dec 2011 18:57:33 +0000", "from_user": "cbarty13", "from_user_id": 389797290, "from_user_id_str": "389797290", "from_user_name": "Chelsea Bartholomew", "geo": null, "id": 148839403391950850, "id_str": "148839403391950848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692081232/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692081232/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "leave me for some ugly ass girl. hahahah have fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:33 +0000", "from_user": "aniskurnia", "from_user_id": 118654621, "from_user_id_str": "118654621", "from_user_name": "Anis Anindya Kurnia ", "geo": null, "id": 148839401986850800, "id_str": "148839401986850816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686361549/anisssssss_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686361549/anisssssss_normal.jpg", "source": "<a href="http://www.snaptu.com" rel="nofollow">Snaptu</a>", "text": "RT @justinbieber: In vegas feeling good. Time to make some fun happen.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:33 +0000", "from_user": "FabricsUK", "from_user_id": 433281596, "from_user_id_str": "433281596", "from_user_name": "fabricsuk", "geo": null, "id": 148839401559040000, "id_str": "148839401559040001", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1684827372/flowerfabric_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684827372/flowerfabric_normal.jpg", "source": "<a href="http://www.fabricbuy.co.uk/" rel="nofollow">Fabric Shop UK</a>", "text": "Anna Maria Horner LouLouthi Laminated Cotton Curated Bloom Fun Blue http://t.co/sgx0OuX8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:33 +0000", "from_user": "FFTunes", "from_user_id": 206412650, "from_user_id_str": "206412650", "from_user_name": "FFTunes", "geo": null, "id": 148839400971829250, "id_str": "148839400971829248", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1157311489/72213_158172590886480_158165247553881_269698_7614577_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1157311489/72213_158172590886480_158165247553881_269698_7614577_n_normal.jpg", "source": "<a href="http://www.fftunes.com" rel="nofollow">FFTunes</a>", "text": "@sercanvirlan sent gift for @AnasonKokarken Anason http://t.co/IcLvnAMR have fun!", "to_user": "sercanvirlan", "to_user_id": 18251149, "to_user_id_str": "18251149", "to_user_name": "Sercan Virlan", "in_reply_to_status_id": 148839385696178180, "in_reply_to_status_id_str": "148839385696178177"}, +{"created_at": "Mon, 19 Dec 2011 18:57:32 +0000", "from_user": "The_JennyLee", "from_user_id": 439257585, "from_user_id_str": "439257585", "from_user_name": "Jenn", "geo": null, "id": 148839399340245000, "id_str": "148839399340244992", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698377631/209051236_af7bd19c61_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698377631/209051236_af7bd19c61_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "innuendos are fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:32 +0000", "from_user": "CheyMH", "from_user_id": 130342866, "from_user_id_str": "130342866", "from_user_name": "Cheyenne ", "geo": null, "id": 148839399038267400, "id_str": "148839399038267392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1675855918/330968203_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675855918/330968203_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@methodtomymalja damnnn that sound rachet...but fun as hell", "to_user": "methodtomymalja", "to_user_id": 20609879, "to_user_id_str": "20609879", "to_user_name": "MOWL-JUH", "in_reply_to_status_id": 148838841715929100, "in_reply_to_status_id_str": "148838841715929088"}, +{"created_at": "Mon, 19 Dec 2011 18:57:32 +0000", "from_user": "rinarox3", "from_user_id": 44473151, "from_user_id_str": "44473151", "from_user_name": "*rina star*", "geo": null, "id": 148839398593667070, "id_str": "148839398593667072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1552464372/beWhzD08_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552464372/beWhzD08_normal", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@AdryNevaeh7 awe how fun!!!! Thx Girly!", "to_user": "AdryNevaeh7", "to_user_id": 204424946, "to_user_id_str": "204424946", "to_user_name": "Adriana A", "in_reply_to_status_id": 148831634328789000, "in_reply_to_status_id_str": "148831634328788992"}, +{"created_at": "Mon, 19 Dec 2011 18:57:32 +0000", "from_user": "IlluminShell", "from_user_id": 273698515, "from_user_id_str": "273698515", "from_user_name": "\\u8C9D\\u6BBB\\u3059\\u3089\\u3044\\u3080k", "geo": null, "id": 148839398270701570, "id_str": "148839398270701568", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1290889254/indexk231_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1290889254/indexk231_normal.jpg", "source": "<a href="http://illuminbot.appspot.com/" rel="nofollow">illuminBot</a>", "text": "\\u904A\\u3073\\u5FC3\\u3092\\u5FD8\\u308C\\u305A\\u306B\\u3002/Sense of fun makes your life happy!\\u3000 #kokoro 2011/12/20, 3:57:31", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:32 +0000", "from_user": "caseyhewlett", "from_user_id": 227839938, "from_user_id_str": "227839938", "from_user_name": "Casey Hewlett", "geo": null, "id": 148839397775781900, "id_str": "148839397775781888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1337038268/2011-04-20_08-58-20_401_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1337038268/2011-04-20_08-58-20_401_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Writing the #TermsofService for the #WebVellumNetwork. Not very fun at all.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:32 +0000", "from_user": "ACILnacamara", "from_user_id": 197109323, "from_user_id_str": "197109323", "from_user_name": "Acil Londrina", "geo": null, "id": 148839397150834700, "id_str": "148839397150834689", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1134666908/logo_fundos_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1134666908/logo_fundos_normal.jpg", "source": "<a href="http://fun.ly" rel="nofollow">fun.ly</a>", "text": "Novo sal\\u00E1rio dos vereadores pode superar R$ 15 mil http://t.co/XwvGYWz8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:31 +0000", "from_user": "NotDesmondsBoat", "from_user_id": 260877564, "from_user_id_str": "260877564", "from_user_name": "Natasha.", "geo": null, "id": 148839396014170100, "id_str": "148839396014170112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687990670/webcam1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687990670/webcam1_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "@electriccandles Have fun!", "to_user": "electriccandles", "to_user_id": 16729840, "to_user_id_str": "16729840", "to_user_name": "\\u03DF Emma \\u03DF"}, +{"created_at": "Mon, 19 Dec 2011 18:57:31 +0000", "from_user": "Olgayhq", "from_user_id": 440153948, "from_user_id_str": "440153948", "from_user_name": "Olga Michelin", "geo": null, "id": 148839395586351100, "id_str": "148839395586351104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700433849/large_EZBESSGUUXNU_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700433849/large_EZBESSGUUXNU_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Tinkerbelly: Who knew taking some time off to sit around and catch up on soaps could be so devastating! Amuse a... http://t.co/AUyChb9D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:31 +0000", "from_user": "BrentR7", "from_user_id": 21351422, "from_user_id_str": "21351422", "from_user_name": "Brent Reser", "geo": null, "id": 148839394659405820, "id_str": "148839394659405824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/247377499/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/247377499/me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "It was fun! RT @NickBatista82 Cannot believe how many people @BrentR7 made Tebow while in vegas! #newtrend #winning\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:31 +0000", "from_user": "takymomo", "from_user_id": 400213100, "from_user_id_str": "400213100", "from_user_name": "bouzourene", "geo": null, "id": 148839393879269380, "id_str": "148839393879269378", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1649060694/Image_008_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649060694/Image_008_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "How to Ruin a Grilled Cheese | More Family Fun - Yahoo! Shine http://t.co/ZdvzVsg9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:31 +0000", "from_user": "TAF_Forum", "from_user_id": 228586987, "from_user_id_str": "228586987", "from_user_name": "TAF", "geo": null, "id": 148839393858289660, "id_str": "148839393858289665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1194606910/Untitled_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1194606910/Untitled_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Forum | Ask a Theist \\u2022 Christ mass trees: Found some more fun today that I thought was lulzy.http://gma... http://t.co/Ewd0xKRN #atheist", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:31 +0000", "from_user": "kelmccrack054", "from_user_id": 318831952, "from_user_id_str": "318831952", "from_user_name": "Kelly McCracken", "geo": null, "id": 148839393623420930, "id_str": "148839393623420928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1661387489/twitpic3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661387489/twitpic3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Have fun trying to get a job w/ all of those drunken pics/tweets! #theycheckforthatshit #yourescrewed", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:31 +0000", "from_user": "Mahomie4life4", "from_user_id": 321608233, "from_user_id_str": "321608233", "from_user_name": "Kayla Mahone", "geo": null, "id": 148839393325625340, "id_str": "148839393325625344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701331762/334092_331503976866490_100000206715981_1569966_914195206_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701331762/334092_331503976866490_100000206715981_1569966_914195206_o_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@DaRbYfRoSt7 Have Fun @AustinMahone 's Concert.(:", "to_user": "DaRbYfRoSt7", "to_user_id": 336071747, "to_user_id_str": "336071747", "to_user_name": "Darby\\u2665"}, +{"created_at": "Mon, 19 Dec 2011 18:57:31 +0000", "from_user": "lotannaokafor", "from_user_id": 150239828, "from_user_id_str": "150239828", "from_user_name": "lotanna okafor", "geo": null, "id": 148839392662913020, "id_str": "148839392662913024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693218787/IMG00074-20110823-2047_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693218787/IMG00074-20110823-2047_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Good Basketball day! Had fun with @mocha_dleverage @chinonso_NWA @Samuelnwawolo Good day in General! (Y)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:30 +0000", "from_user": "Emily___x3", "from_user_id": 165503480, "from_user_id_str": "165503480", "from_user_name": "Emily.", "geo": null, "id": 148839391547228160, "id_str": "148839391547228160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1565320140/Snapshot_20110929_3_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1565320140/Snapshot_20110929_3_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@stewartm99 indeed I did! :D it wasn't fun but yes it is all done so that's a good thing :P xxx", "to_user": "stewartm99", "to_user_id": 227767421, "to_user_id_str": "227767421", "to_user_name": "Mark Stewart", "in_reply_to_status_id": 148838260725125120, "in_reply_to_status_id_str": "148838260725125120"}, +{"created_at": "Mon, 19 Dec 2011 18:57:30 +0000", "from_user": "SLYMCNUTT", "from_user_id": 204033503, "from_user_id_str": "204033503", "from_user_name": "Sly", "geo": null, "id": 148839391345901570, "id_str": "148839391345901570", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697911194/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697911194/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@Azn_Mami23: @SLYMCNUTT Lmao did yall have fun?\\u201D(no call/no show)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:30 +0000", "from_user": "CHLOE_MARTINN", "from_user_id": 291786497, "from_user_id_str": "291786497", "from_user_name": "Chloe Martin\\u2665", "geo": null, "id": 148839388254699520, "id_str": "148839388254699521", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685881970/MONKEEEEY_20JUMPA_20BITCHEZ_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685881970/MONKEEEEY_20JUMPA_20BITCHEZ_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Iphone 4's are fucking fun as!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:30 +0000", "from_user": "LuvleeLyons", "from_user_id": 74845075, "from_user_id_str": "74845075", "from_user_name": "Marqui L. ", "geo": null, "id": 148839388053381120, "id_str": "148839388053381120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699416913/LuvleeLyons_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699416913/LuvleeLyons_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@V_Nasty22 so jealous! Have fun!", "to_user": "V_Nasty22", "to_user_id": 289670022, "to_user_id_str": "289670022", "to_user_name": "Vanessa Rivera", "in_reply_to_status_id": 148838338013569020, "in_reply_to_status_id_str": "148838338013569024"}, +{"created_at": "Mon, 19 Dec 2011 18:57:29 +0000", "from_user": "kendalljacmason", "from_user_id": 154438216, "from_user_id_str": "154438216", "from_user_name": "Kendall Mason ", "geo": null, "id": 148839385377423360, "id_str": "148839385377423361", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686074389/1323567276-picsay_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686074389/1323567276-picsay_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "RT @Im__RickJames: Voxer is fun lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:29 +0000", "from_user": "chlo1238", "from_user_id": 54694323, "from_user_id_str": "54694323", "from_user_name": "Chloe Townsend", "geo": null, "id": 148839384433692670, "id_str": "148839384433692673", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702196635/284369_10150754099885019_796800018_20382502_6159243_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702196635/284369_10150754099885019_796800018_20382502_6159243_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @FunkyTeeMaestro: Being broke ain't fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:29 +0000", "from_user": "RasenMail", "from_user_id": 380971190, "from_user_id_str": "380971190", "from_user_name": "Market Rasen Mail", "geo": null, "id": 148839383796154370, "id_str": "148839383796154369", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1641931633/market-rasen-mail-twitter-icon_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641931633/market-rasen-mail-twitter-icon_normal.gif", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Technicolor fun in church http://t.co/iEv18Iw6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:29 +0000", "from_user": "25F874A3", "from_user_id": 345641153, "from_user_id_str": "345641153", "from_user_name": "\\u2022 R.aaachell", "geo": null, "id": 148839383729049600, "id_str": "148839383729049600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1690890142/1433901319_6_uuDX_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690890142/1433901319_6_uuDX_1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "roll one , smoke one and we all just having fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:28 +0000", "from_user": "PretendKing", "from_user_id": 397668008, "from_user_id_str": "397668008", "from_user_name": "Jessica King", "geo": null, "id": 148839383297048580, "id_str": "148839383297048576", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1605290328/FLOWER_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1605290328/FLOWER_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@malloriehart Have fun!", "to_user": "malloriehart", "to_user_id": 111124619, "to_user_id_str": "111124619", "to_user_name": "Mallorie Hart", "in_reply_to_status_id": 148837488226603000, "in_reply_to_status_id_str": "148837488226603008"}, +{"created_at": "Mon, 19 Dec 2011 18:57:28 +0000", "from_user": "Brain_of_Blonde", "from_user_id": 322825270, "from_user_id_str": "322825270", "from_user_name": "L", "geo": null, "id": 148839383187992580, "id_str": "148839383187992576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698073374/331605106_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698073374/331605106_normal.jpg", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "@heres_johnnie Sounds like lots of fun actually. Could iron amusing shapes into your shirts.", "to_user": "heres_johnnie", "to_user_id": 46230271, "to_user_id_str": "46230271", "to_user_name": "Johnnie Walker", "in_reply_to_status_id": 148837892045815800, "in_reply_to_status_id_str": "148837892045815808"}, +{"created_at": "Mon, 19 Dec 2011 18:57:28 +0000", "from_user": "skysports_bryan", "from_user_id": 150677438, "from_user_id_str": "150677438", "from_user_name": "Bryan Swanson", "geo": null, "id": 148839383036985340, "id_str": "148839383036985345", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1550301899/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1550301899/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@DBrickerz it's great fun.. #TransferDeadlineDay", "to_user": "DBrickerz", "to_user_id": 60314017, "to_user_id_str": "60314017", "to_user_name": "Brickerz"}, +{"created_at": "Mon, 19 Dec 2011 18:57:28 +0000", "from_user": "liesavmusic", "from_user_id": 63724284, "from_user_id_str": "63724284", "from_user_name": "Liesa Marie \\u221A", "geo": null, "id": 148839382768562180, "id_str": "148839382768562177", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1661034011/concert_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661034011/concert_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@OmnomnomLouisT yeah :) whoever it's going to be, she's one lucky girl :) hope you'll have fun at the concert :) xo", "to_user": "OmnomnomLouisT", "to_user_id": 245066383, "to_user_id_str": "245066383", "to_user_name": "CourtneyLouise", "in_reply_to_status_id": 148838663499952130, "in_reply_to_status_id_str": "148838663499952129"}, +{"created_at": "Mon, 19 Dec 2011 18:57:28 +0000", "from_user": "bdcooper77", "from_user_id": 225615284, "from_user_id_str": "225615284", "from_user_name": "Brian", "geo": null, "id": 148839381090832400, "id_str": "148839381090832387", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1216052852/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1216052852/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@undeux those bastards! Those fun, partying bastards! Lol", "to_user": "undeux", "to_user_id": 32498911, "to_user_id_str": "32498911", "to_user_name": "April O'Neil", "in_reply_to_status_id": 148838760195432450, "in_reply_to_status_id_str": "148838760195432448"}, +{"created_at": "Mon, 19 Dec 2011 18:57:28 +0000", "from_user": "shtoopidTHICK", "from_user_id": 76828768, "from_user_id_str": "76828768", "from_user_name": "COCKadile Dundee", "geo": null, "id": 148839380633661440, "id_str": "148839380633661440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1390916473/Photo_on_2011-01-18_at_00.08_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1390916473/Photo_on_2011-01-18_at_00.08_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "@BALLZbitch @TheShadaeShow that WOULD be fun if you lived close lol", "to_user": "BALLZbitch", "to_user_id": 81280340, "to_user_id_str": "81280340", "to_user_name": "Czech KKK", "in_reply_to_status_id": 148834744711389200, "in_reply_to_status_id_str": "148834744711389184"}, +{"created_at": "Mon, 19 Dec 2011 18:57:28 +0000", "from_user": "MewMew34", "from_user_id": 36800916, "from_user_id_str": "36800916", "from_user_name": "Mew Mew", "geo": null, "id": 148839380084211700, "id_str": "148839380084211712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/193568353/mewicon1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/193568353/mewicon1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#ThisChristmas is going to be the first one ever that I don't go to my Grandparents' house in the morning. Will be a strange day, but fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:27 +0000", "from_user": "MartyBMckeever", "from_user_id": 304614407, "from_user_id_str": "304614407", "from_user_name": "Marty B. Mckeever", "geo": null, "id": 148839378188382200, "id_str": "148839378188382208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1367555420/large_IMG000009_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1367555420/large_IMG000009_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "@/fetterolfklcz2 Making my own music is so fun.I make my beats with this machine.Check out http://t.co/BkvZgJfo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:27 +0000", "from_user": "X_Dha_X", "from_user_id": 295962791, "from_user_id_str": "295962791", "from_user_name": "Darwin L Merino", "geo": null, "id": 148839376976228350, "id_str": "148839376976228352", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1346159801/391994592_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1346159801/391994592_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @anjabayari: \\u201C@X_Dha_X: watching http://t.co/SRyBIHuW - @anjabayari.\\u201D Great video ! Fun times!\\uD83D\\uDE0A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:27 +0000", "from_user": "Feministe", "from_user_id": 16378267, "from_user_id_str": "16378267", "from_user_name": "Feministe", "geo": null, "id": 148839376372248580, "id_str": "148839376372248576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/60400110/feministe_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/60400110/feministe_2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "It\\u2019s fun for a girl or a boy: Conspicuous consumption edition: Anyone engaged in consumerist big-box shopping th... http://t.co/xdKHJrk8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:27 +0000", "from_user": "MartyBMckeever", "from_user_id": 304614407, "from_user_id_str": "304614407", "from_user_name": "Marty B. Mckeever", "geo": null, "id": 148839376133169150, "id_str": "148839376133169152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1367555420/large_IMG000009_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1367555420/large_IMG000009_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "@/jessicaFYOG Making my own music is so fun.I make my beats with this machine.Check out http://t.co/BkvZgJfo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:27 +0000", "from_user": "NaturesWells", "from_user_id": 159000886, "from_user_id_str": "159000886", "from_user_name": "Levi Burrow", "geo": null, "id": 148839375432720400, "id_str": "148839375432720384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1313139454/DSCN1747_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1313139454/DSCN1747_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Check Your DM Box....I may have sent you an e-card! p.s. It's ok to open it. Have Fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:26 +0000", "from_user": "MartyBMckeever", "from_user_id": 304614407, "from_user_id_str": "304614407", "from_user_name": "Marty B. Mckeever", "geo": null, "id": 148839374438662140, "id_str": "148839374438662145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1367555420/large_IMG000009_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1367555420/large_IMG000009_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "@/illl_material Making my own music is so fun.I make my beats with this machine.Check out http://t.co/BkvZgJfo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:26 +0000", "from_user": "deejay_eeyan", "from_user_id": 236364550, "from_user_id_str": "236364550", "from_user_name": "ian", "geo": null, "id": 148839374358974460, "id_str": "148839374358974465", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1563969875/deejay_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1563969875/deejay_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@crisfranciajr @mistahLu @haringpula that was fun! char! we miss you @fartydoodle and @pat ... see you sa xmas party! hahaha", "to_user": "crisfranciajr", "to_user_id": 52319767, "to_user_id_str": "52319767", "to_user_name": "Cris Francia Jr.", "in_reply_to_status_id": 148836514120482800, "in_reply_to_status_id_str": "148836514120482817"}, +{"created_at": "Mon, 19 Dec 2011 18:57:26 +0000", "from_user": "MartyBMckeever", "from_user_id": 304614407, "from_user_id_str": "304614407", "from_user_name": "Marty B. Mckeever", "geo": null, "id": 148839372878385150, "id_str": "148839372878385152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1367555420/large_IMG000009_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1367555420/large_IMG000009_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "@/PurpleClouds_02 Making my own music is so fun.I make my beats with this machine.Check out http://t.co/BkvZgJfo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:26 +0000", "from_user": "Ciara2cute2care", "from_user_id": 117630478, "from_user_id_str": "117630478", "from_user_name": "Ciara Carr", "geo": null, "id": 148839372870000640, "id_str": "148839372870000640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1633033057/imagejpeg_2_4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633033057/imagejpeg_2_4_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@CertifiedMvp_RL Yoo stop DMing Me I not gone exposed ur ass its just a lil fun to see yall (cont) http://t.co/EaKTabDT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:26 +0000", "from_user": "COVERGIRL_NELLZ", "from_user_id": 127892039, "from_user_id_str": "127892039", "from_user_name": "CHANEL\\u02DA5\\u2661 ", "geo": null, "id": 148839372689641470, "id_str": "148839372689641473", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685929485/2011-12-10_02-37-07.712_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685929485/2011-12-10_02-37-07.712_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @REALSHEEKLOUCH: RT @MsBossLadyPink: @REALSHEEKLOUCH killed that shit last night in PETERBOROUGH, ON. never had so much fun in a ... http://t.co/iXfH7C9x", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:26 +0000", "from_user": "MarcellusCain", "from_user_id": 84472641, "from_user_id_str": "84472641", "from_user_name": "Cellmo's World", "geo": null, "id": 148839371154534400, "id_str": "148839371154534400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695090213/331540950_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695090213/331540950_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@iamgodiva on this road I meet women who complain about the dick the funds and the fun. yet I'm single lol", "to_user": "iamgodiva", "to_user_id": 100382689, "to_user_id_str": "100382689", "to_user_name": "Charlie G.", "in_reply_to_status_id": 148838915527278600, "in_reply_to_status_id_str": "148838915527278593"}, +{"created_at": "Mon, 19 Dec 2011 18:57:25 +0000", "from_user": "Bubu_Dotcom", "from_user_id": 316340670, "from_user_id_str": "316340670", "from_user_name": "BUBU.COM", "geo": null, "id": 148839370659594240, "id_str": "148839370659594242", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1436648010/BUBU-Twitter-Pic__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1436648010/BUBU-Twitter-Pic__1__normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "RT @lurino: the most enjoyable experience of 2011 is working with the #woofers at @Bubu_Dotcom. lots of new stuff to learn. fun indeed.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:25 +0000", "from_user": "SimbaReturns", "from_user_id": 49026927, "from_user_id_str": "49026927", "from_user_name": "Lorenzo McNeil", "geo": null, "id": 148839369430663170, "id_str": "148839369430663168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701440185/331682498_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701440185/331682498_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Today should be fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:25 +0000", "from_user": "ThatsSoMendes", "from_user_id": 425430264, "from_user_id_str": "425430264", "from_user_name": "Jasmine Mendes", "geo": null, "id": 148839368616976400, "id_str": "148839368616976385", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702587168/happy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702587168/happy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Good to see you following your dreams @TweetN_ass_Tate ! Have fun, be safe, & dont forget about me :) Lol Stay blessed, & keep in touch !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:25 +0000", "from_user": "itsmealreadyBry", "from_user_id": 24339627, "from_user_id_str": "24339627", "from_user_name": "Bryan Tayko", "geo": null, "id": 148839368453394430, "id_str": "148839368453394432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1650039170/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650039170/image_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">YouTube on iOS</a>", "text": "Cool! The 2 top artists of 2011 having fun :) http://t.co/EufGnTM3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:57:26 +0000", "from_user": "COVERGIRL_NELLZ", "from_user_id": 127892039, "from_user_id_str": "127892039", "from_user_name": "CHANEL\\u02DA5\\u2661 ", "geo": null, "id": 148839372689641470, "id_str": "148839372689641473", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685929485/2011-12-10_02-37-07.712_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685929485/2011-12-10_02-37-07.712_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @REALSHEEKLOUCH: RT @MsBossLadyPink: @REALSHEEKLOUCH killed that shit last night in PETERBOROUGH, ON. never had so much fun in a ... http://t.co/iXfH7C9x", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:26 +0000", "from_user": "MarcellusCain", "from_user_id": 84472641, "from_user_id_str": "84472641", "from_user_name": "Cellmo's World", "geo": null, "id": 148839371154534400, "id_str": "148839371154534400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695090213/331540950_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695090213/331540950_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@iamgodiva on this road I meet women who complain about the dick the funds and the fun. yet I'm single lol", "to_user": "iamgodiva", "to_user_id": 100382689, "to_user_id_str": "100382689", "to_user_name": "Charlie G.", "in_reply_to_status_id": 148838915527278600, "in_reply_to_status_id_str": "148838915527278593"}, +{"created_at": "Mon, 19 Dec 2011 18:57:25 +0000", "from_user": "Bubu_Dotcom", "from_user_id": 316340670, "from_user_id_str": "316340670", "from_user_name": "BUBU.COM", "geo": null, "id": 148839370659594240, "id_str": "148839370659594242", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1436648010/BUBU-Twitter-Pic__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1436648010/BUBU-Twitter-Pic__1__normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "RT @lurino: the most enjoyable experience of 2011 is working with the #woofers at @Bubu_Dotcom. lots of new stuff to learn. fun indeed.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:25 +0000", "from_user": "SimbaReturns", "from_user_id": 49026927, "from_user_id_str": "49026927", "from_user_name": "Lorenzo McNeil", "geo": null, "id": 148839369430663170, "id_str": "148839369430663168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701440185/331682498_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701440185/331682498_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Today should be fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:25 +0000", "from_user": "ThatsSoMendes", "from_user_id": 425430264, "from_user_id_str": "425430264", "from_user_name": "Jasmine Mendes", "geo": null, "id": 148839368616976400, "id_str": "148839368616976385", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702587168/happy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702587168/happy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Good to see you following your dreams @TweetN_ass_Tate ! Have fun, be safe, & dont forget about me :) Lol Stay blessed, & keep in touch !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:25 +0000", "from_user": "itsmealreadyBry", "from_user_id": 24339627, "from_user_id_str": "24339627", "from_user_name": "Bryan Tayko", "geo": null, "id": 148839368453394430, "id_str": "148839368453394432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1650039170/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650039170/image_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">YouTube on iOS</a>", "text": "Cool! The 2 top artists of 2011 having fun :) http://t.co/EufGnTM3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:25 +0000", "from_user": "xunbrokenbieber", "from_user_id": 382006065, "from_user_id_str": "382006065", "from_user_name": "\\u2654\\u2202\\u0454\\u044F\\u0454\\u043As \\u03C3\\u2113\\u2113vi\\u044Fgi\\u0438\\u2654", "geo": null, "id": 148839368302395400, "id_str": "148839368302395393", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698322158/1324107459414_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698322158/1324107459414_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@BelieveItShawty yeah but its fun sometimes :P :D", "to_user": "BelieveItShawty", "to_user_id": 405362283, "to_user_id_str": "405362283", "to_user_name": "Arianator/Belieber \\u2665", "in_reply_to_status_id": 148839196742791170, "in_reply_to_status_id_str": "148839196742791169"}, +{"created_at": "Mon, 19 Dec 2011 18:57:24 +0000", "from_user": "BigRigTees", "from_user_id": 377957460, "from_user_id_str": "377957460", "from_user_name": "BigRigTees.com", "geo": null, "id": 148839364401709060, "id_str": "148839364401709056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1554560525/triplex_680web_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554560525/triplex_680web_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Evil Kenevil just having too much fun in Temecula, CA today!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:24 +0000", "from_user": "heyitsLISAhere", "from_user_id": 29678171, "from_user_id_str": "29678171", "from_user_name": "\\u029F\\u026A\\u0282\\u03B1 \\u30C4", "geo": null, "id": 148839364338794500, "id_str": "148839364338794496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686980835/tumblr_luvg74gmDp1r1v49to1_500_large_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686980835/tumblr_luvg74gmDp1r1v49to1_500_large_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SanneBiebz oh woww! why nervous? are u guys like having a competition? lol xD or just for fun? xDD", "to_user": "SanneBiebz", "to_user_id": 116745829, "to_user_id_str": "116745829", "to_user_name": "Awesomeness. ", "in_reply_to_status_id": 148839063879823360, "in_reply_to_status_id_str": "148839063879823360"}, +{"created_at": "Mon, 19 Dec 2011 18:57:24 +0000", "from_user": "savvylea711", "from_user_id": 252347637, "from_user_id_str": "252347637", "from_user_name": "Savannah Fletcher", "geo": null, "id": 148839364129075200, "id_str": "148839364129075200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699260245/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699260245/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "bad boys ain't no good, good boys ain't no fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:24 +0000", "from_user": "TheArtsyMe", "from_user_id": 253537978, "from_user_id_str": "253537978", "from_user_name": "MT", "geo": null, "id": 148839363437010940, "id_str": "148839363437010944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697231306/tagc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697231306/tagc_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @mykoupie: Reindeer fun includes free Reindeer poop ideas and free printable http://t.co/QjLXv7m2 @addthis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:24 +0000", "from_user": "davidsowers", "from_user_id": 16064273, "from_user_id_str": "16064273", "from_user_name": "DASO Photo", "geo": null, "id": 148839363428618240, "id_str": "148839363428618242", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670463160/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670463160/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Can't wait for my friends @JRiveiro @hannahriveiro to arrive on Friday. It's gonna be fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:24 +0000", "from_user": "Lon_Day", "from_user_id": 169361776, "from_user_id_str": "169361776", "from_user_name": "Alonda Daniels", "geo": null, "id": 148839363420241920, "id_str": "148839363420241920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1678241245/Alexia_and_I_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678241245/Alexia_and_I_normal.jpeg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Once it pops the fun don't stop #cherry lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:24 +0000", "from_user": "SimplyHawaiian", "from_user_id": 267679590, "from_user_id_str": "267679590", "from_user_name": "PA'A KANAKA", "geo": null, "id": 148839362824646660, "id_str": "148839362824646656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1370780859/Simply_Hawaiian_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1370780859/Simply_Hawaiian_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Take yor 25 Free Bids! Win cool stuff, an iPod! Get a DEAL & have fun too! See Video http://t.co/Vshs5LCz Please RT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:23 +0000", "from_user": "hello_sabrinaa", "from_user_id": 237128947, "from_user_id_str": "237128947", "from_user_name": "Sabrina", "geo": null, "id": 148839361981587460, "id_str": "148839361981587456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1490313312/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1490313312/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Sitting and waiting #how fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:23 +0000", "from_user": "AliahKamaruddin", "from_user_id": 33449739, "from_user_id_str": "33449739", "from_user_name": "Aliah Kamaruddin", "geo": null, "id": 148839361323085820, "id_str": "148839361323085825", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1176745132/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1176745132/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "This thursday, i'll be away from malaysia..it's gonna be so much fun :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:23 +0000", "from_user": "Williegomez32", "from_user_id": 334341519, "from_user_id_str": "334341519", "from_user_name": "William Gomez", "geo": null, "id": 148839360752656400, "id_str": "148839360752656384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1553970445/P44MPzVl_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553970445/P44MPzVl_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @realcormega: yo life is real somebody got robbed outside the grocery store for $150 worth of groceries everything aint popping bottles and fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:23 +0000", "from_user": "StephanieGrant8", "from_user_id": 384437967, "from_user_id_str": "384437967", "from_user_name": "Stephanie Grant", "geo": null, "id": 148839360601665540, "id_str": "148839360601665536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1583642579/Photo_on_2010-10-29_at_14.58__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583642579/Photo_on_2010-10-29_at_14.58__2_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Going to the library for fun. It is a nice change from going there to study!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:23 +0000", "from_user": "SoulG_", "from_user_id": 50993902, "from_user_id_str": "50993902", "from_user_name": "***", "geo": null, "id": 148839360110931970, "id_str": "148839360110931968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689424203/331373153_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689424203/331373153_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @VannesaAmusan: so what we get drunk, so what we smoke weed, were just having fun. We don't care who see's", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:23 +0000", "from_user": "casey_stoker", "from_user_id": 334207141, "from_user_id_str": "334207141", "from_user_name": "Casey Stoker \\u2764", "geo": null, "id": 148839360098353150, "id_str": "148839360098353153", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685890302/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685890302/image_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @fullerfuck: @casey_stoker hahahaha exactly!!! I always get made fun of :/ lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:23 +0000", "from_user": "JaredCurrier", "from_user_id": 143574921, "from_user_id_str": "143574921", "from_user_name": "Jared Currier", "geo": null, "id": 148839359758602240, "id_str": "148839359758602240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1030473822/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1030473822/Untitled_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Well there you go: RT @MatthewKnell: Re: Roosevelt Island, fun fact about how people got there pre-tram: http://t.co/271ebFMH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:23 +0000", "from_user": "AMiRO_", "from_user_id": 99590792, "from_user_id_str": "99590792", "from_user_name": "Amiro.", "geo": null, "id": 148839359548887040, "id_str": "148839359548887040", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698740978/331620835_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698740978/331620835_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @DG96_: RT @AMiRO_: RT @DG96_: Wat doen jullie ? < Straks fifa? - Ben maccie, we playen vanavond < Cool have fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:23 +0000", "from_user": "Vally_Girrl", "from_user_id": 431043716, "from_user_id_str": "431043716", "from_user_name": "Valeriaa\\u2665", "geo": null, "id": 148839359439843330, "id_str": "148839359439843328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680226064/cUdN5H_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680226064/cUdN5H_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@nofkn_clue hahaha yay! :DD This shall be fun!! :))", "to_user": "nofkn_clue", "to_user_id": 407132588, "to_user_id_str": "407132588", "to_user_name": "Cindy Marie", "in_reply_to_status_id": 148838185437380600, "in_reply_to_status_id_str": "148838185437380608"}, +{"created_at": "Mon, 19 Dec 2011 18:57:23 +0000", "from_user": "kEEp_itOn_dlO", "from_user_id": 40792364, "from_user_id_str": "40792364", "from_user_name": "\\u2764DSTructive 1913\\u2764", "geo": null, "id": 148839358970069000, "id_str": "148839358970068992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1661493518/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661493518/image_normal.jpg", "source": "<a href="http://www.handmark.com" rel="nofollow">TweetCaster for iOS</a>", "text": "I had fun though ...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:22 +0000", "from_user": "Badreyh", "from_user_id": 274302483, "from_user_id_str": "274302483", "from_user_name": "Badrayh AL Sheikh", "geo": null, "id": 148839357409796100, "id_str": "148839357409796096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1650666128/__reasonably_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650666128/__reasonably_small_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@siwon407 goodnight dream sweet and day new tomorrow full by happy and fun take care yourself good saranghae ^-^", "to_user": "siwon407", "to_user_id": 125603760, "to_user_id_str": "125603760", "to_user_name": "SiwonChoi", "in_reply_to_status_id": 148819682156220400, "in_reply_to_status_id_str": "148819682156220417"}, +{"created_at": "Mon, 19 Dec 2011 18:57:22 +0000", "from_user": "ServantLeader12", "from_user_id": 142374929, "from_user_id_str": "142374929", "from_user_name": "Carlos L. Martinez", "geo": null, "id": 148839356889702400, "id_str": "148839356889702400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/896058368/P90X_20BUISNESS_20CARD_20006_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/896058368/P90X_20BUISNESS_20CARD_20006_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @HubSpot: Not as fun as tweeting, but important: 5 Noteworthy Examples of Corporate Social Media Policies - http://t.co/bsI8n0ac", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:22 +0000", "from_user": "jillolivarria", "from_user_id": 351084689, "from_user_id_str": "351084689", "from_user_name": "Jilliinn", "geo": null, "id": 148839355430092800, "id_str": "148839355430092800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693683559/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693683559/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "3 more days and my winter break fun will be at a whole nother level \\u2764\\uD83D\\uDE03", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:22 +0000", "from_user": "ormainy", "from_user_id": 147521416, "from_user_id_str": "147521416", "from_user_name": "Omawumi O", "geo": null, "id": 148839354930966530, "id_str": "148839354930966528", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1684713239/IMG-20111209-02711_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684713239/IMG-20111209-02711_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Dynamic duo... @Wajemusik & @Omawumi looking good n having fun! \\u2665 http://t.co/sqBiVwIH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:21 +0000", "from_user": "THE_REALmrsBANK", "from_user_id": 269578688, "from_user_id_str": "269578688", "from_user_name": "JAKYE'S MOMMY", "geo": null, "id": 148839350896033800, "id_str": "148839350896033792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1621291867/iTgDgimG_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621291867/iTgDgimG_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Lol I gave em a lap dance to that song my love is the shh we have fun together I miss his life", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:21 +0000", "from_user": "jensinkoe", "from_user_id": 184605842, "from_user_id_str": "184605842", "from_user_name": "Jenny Sinkoe", "geo": null, "id": 148839350736662530, "id_str": "148839350736662528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1616596531/twitter_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616596531/twitter_normal.PNG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I had so much fun @studiodionne this weekend. I'm going to miss my girls over break! #soadorable http://t.co/LPi5LbX9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:21 +0000", "from_user": "QuarlesSt_BLAK", "from_user_id": 331247856, "from_user_id_str": "331247856", "from_user_name": "QuarlesSt_BLAK", "geo": null, "id": 148839350514364400, "id_str": "148839350514364416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685407482/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685407482/image_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "@Pink_PumpsNKush naw yu aint in da mood yu no fun", "to_user": "Pink_PumpsNKush", "to_user_id": 227561042, "to_user_id_str": "227561042", "to_user_name": "DaQueen_November2", "in_reply_to_status_id": 148838456364240900, "in_reply_to_status_id_str": "148838456364240897"}, +{"created_at": "Mon, 19 Dec 2011 18:57:21 +0000", "from_user": "Ishaq_Ishaq", "from_user_id": 289575553, "from_user_id_str": "289575553", "from_user_name": "Ishaq Ishaq", "geo": null, "id": 148839350472413200, "id_str": "148839350472413184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699700541/pompey_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699700541/pompey_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@BasmaAlnamlah laaa shd3waa don't say that! Hahaha el deera deertkom! A7na b3d enyeey 3ndkom for fun :p", "to_user": "BasmaAlnamlah", "to_user_id": 252871445, "to_user_id_str": "252871445", "to_user_name": "Basma Alnamlah", "in_reply_to_status_id": 148837528227676160, "in_reply_to_status_id_str": "148837528227676160"}, +{"created_at": "Mon, 19 Dec 2011 18:57:21 +0000", "from_user": "Shanaemadison", "from_user_id": 187820065, "from_user_id_str": "187820065", "from_user_name": "Shanae Scott", "geo": null, "id": 148839350019424260, "id_str": "148839350019424256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1663732950/Photo_on_2011-11-23_at_16.59__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663732950/Photo_on_2011-11-23_at_16.59__2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@KeyTo_My_Heart yup yup ! This goin be fun", "to_user": "KeyTo_My_Heart", "to_user_id": 260054244, "to_user_id_str": "260054244", "to_user_name": "LaTwanya Johnson", "in_reply_to_status_id": 148839126014246900, "in_reply_to_status_id_str": "148839126014246912"}, +{"created_at": "Mon, 19 Dec 2011 18:57:22 +0000", "from_user": "pascalhopman", "from_user_id": 92353278, "from_user_id_str": "92353278", "from_user_name": "Pascal Hopman", "geo": null, "id": 148839349088292860, "id_str": "148839349088292864", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1498161094/DSC01720_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1498161094/DSC01720_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Vandaag veel Driving Fun beleefd met deze #MINI John Cooper Works!\\n211 zeer welwillende paardenkrachten. Nice! http://t.co/5ET3ryHl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:20 +0000", "from_user": "iTweetHoesTwerk", "from_user_id": 196845279, "from_user_id_str": "196845279", "from_user_name": "Jordan HendriX", "geo": null, "id": 148839348584972300, "id_str": "148839348584972288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1684169384/iTweetHoesTwerk_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684169384/iTweetHoesTwerk_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Temple run RT @dedrain_roars: What fun apps can I download ?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:20 +0000", "from_user": "Emily_Williams7", "from_user_id": 98076970, "from_user_id_str": "98076970", "from_user_name": "Emily Williams", "geo": null, "id": 148839347578355700, "id_str": "148839347578355712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682285941/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682285941/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I want to meet some new, fun people(: #hmu #tiredofthesamestuffeveryday", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:22 +0000", "from_user": "Edudemic", "from_user_id": 131035262, "from_user_id_str": "131035262", "from_user_name": "Edudemic", "geo": null, "id": 148839347528007680, "id_str": "148839347528007680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1091648898/jeff_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1091648898/jeff_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Nice! Path 2 has arrived. Fun app for micro-social networks. Email from Path: http://t.co/Bqbph777", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:20 +0000", "from_user": "rheedrizzy", "from_user_id": 317268415, "from_user_id_str": "317268415", "from_user_name": "\\u2661 Ambitious Girl \\u30C4", "geo": null, "id": 148839346957582340, "id_str": "148839346957582336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1685330166/rhee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685330166/rhee_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ceemonroee Hell Yeahhhh EVERY Weekend ; then we use to have fun going home at 5 o'clock in the morning lol", "to_user": "ceemonroee", "to_user_id": 219776367, "to_user_id_str": "219776367", "to_user_name": "\\u2022 iSQUIRTonDICKs \\u2022", "in_reply_to_status_id": 148838618922889200, "in_reply_to_status_id_str": "148838618922889216"}, +{"created_at": "Mon, 19 Dec 2011 18:57:20 +0000", "from_user": "Mewi__", "from_user_id": 237803420, "from_user_id_str": "237803420", "from_user_name": "Princess-E\\u0645\\u0652\\u2661-", "geo": null, "id": 148839346756263940, "id_str": "148839346756263936", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688878050/IMG_1220_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688878050/IMG_1220_normal.PNG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Had fun *o*!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:19 +0000", "from_user": "GranDemiSmiles", "from_user_id": 328100861, "from_user_id_str": "328100861", "from_user_name": "\\u2763 Nastya \\u2763", "geo": null, "id": 148839345447645200, "id_str": "148839345447645184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685246374/o-matic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685246374/o-matic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@BTRMonster HI:] So Love your username! so fun:] Follow back sweetie?", "to_user": "BTRMonster", "to_user_id": 363213745, "to_user_id_str": "363213745", "to_user_name": "Lady Gaga | BTR"}, +{"created_at": "Mon, 19 Dec 2011 18:57:19 +0000", "from_user": "MiSz_HighClass", "from_user_id": 330484194, "from_user_id_str": "330484194", "from_user_name": "Kierra", "geo": null, "id": 148839345112100860, "id_str": "148839345112100864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1661947069/MsHighClass_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661947069/MsHighClass_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Lastnight= TOO MUCH FUN!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:19 +0000", "from_user": "_SoloOutcast", "from_user_id": 233788653, "from_user_id_str": "233788653", "from_user_name": "Wheres My Liver ", "geo": null, "id": 148839345032396800, "id_str": "148839345032396800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696659641/ice_bath_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696659641/ice_bath_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@DaPhenomDae RT @JasMean_xoxo: It ain't no fun, if my homies can't have none.\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:19 +0000", "from_user": "PLAING0RGE0US", "from_user_id": 86630930, "from_user_id_str": "86630930", "from_user_name": "Gorgeous :))", "geo": null, "id": 148839344680079360, "id_str": "148839344680079360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1676430144/Snapshot_20111204_11_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676430144/Snapshot_20111204_11_normal.JPG", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@ShydJustGotReal had fun", "to_user": "ShydJustGotReal", "to_user_id": 111470720, "to_user_id_str": "111470720", "to_user_name": "iSayRudeThings&Shitt", "in_reply_to_status_id": 148838417118150660, "in_reply_to_status_id_str": "148838417118150656"}, +{"created_at": "Mon, 19 Dec 2011 18:57:19 +0000", "from_user": "__LipGloss__", "from_user_id": 139428536, "from_user_id_str": "139428536", "from_user_name": "\\u02A4\\u0268\\u0256\\u0281\\u01DF", "geo": null, "id": 148839343677644800, "id_str": "148839343677644800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700144786/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700144786/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Had a ice cream party in Choir class todaaaay. Fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:19 +0000", "from_user": "_AshinKusherrr", "from_user_id": 221966026, "from_user_id_str": "221966026", "from_user_name": "Justice B.", "geo": null, "id": 148839343509876740, "id_str": "148839343509876736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668388669/HaJ4eGgC_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668388669/HaJ4eGgC_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Im quite an ignorant (insert racial slur) in public too. Thats how I have fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:19 +0000", "from_user": "StillUnfinished", "from_user_id": 267882387, "from_user_id_str": "267882387", "from_user_name": "Notorious ;)", "geo": null, "id": 148839342998163460, "id_str": "148839342998163458", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702612364/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702612364/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@sheeCOLE girl I been having fun lol \" when u gonna take your finals from Friday", "to_user": "sheeCOLE", "to_user_id": 162556863, "to_user_id_str": "162556863", "to_user_name": "C E E D Y B \\u2122", "in_reply_to_status_id": 148839142539804670, "in_reply_to_status_id_str": "148839142539804674"}, +{"created_at": "Mon, 19 Dec 2011 18:57:19 +0000", "from_user": "MerriLege7959", "from_user_id": 437567980, "from_user_id_str": "437567980", "from_user_name": "Merri Lege", "geo": null, "id": 148839342457106430, "id_str": "148839342457106433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701205518/15331662720632_104826426203742_100000291564251_121863_3932299_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701205518/15331662720632_104826426203742_100000291564251_121863_3932299_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "having too much fun drinkin with these clownz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:19 +0000", "from_user": "AGHAZSMS", "from_user_id": 400308072, "from_user_id_str": "400308072", "from_user_name": "AGHAZ SMS", "geo": null, "id": 148839341790212100, "id_str": "148839341790212097", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696512792/372907_329288220419875_989305596_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696512792/372907_329288220419875_989305596_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "zillat me dafan kardia murda Yazeed (l.a) ka\\nphele na is jahan me taa'fun paleed ka...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:19 +0000", "from_user": "maaudjj", "from_user_id": 228354902, "from_user_id_str": "228354902", "from_user_name": "maud", "geo": null, "id": 148839341752451070, "id_str": "148839341752451073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1671249711/Nijmegen-20111201-00064_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671249711/Nijmegen-20111201-00064_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "So what we get drunk, so what we smoke weed, were just having fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:18 +0000", "from_user": "JMMZHerrera", "from_user_id": 380975829, "from_user_id_str": "380975829", "from_user_name": "Juan Miguel Herrera", "geo": null, "id": 148839338799673340, "id_str": "148839338799673345", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1562491975/s640x480_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1562491975/s640x480_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Christmas doesn't end for us until Jan 6. That's kind of fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:18 +0000", "from_user": "MilersIsBeast", "from_user_id": 168895492, "from_user_id_str": "168895492", "from_user_name": "Emily Trevizo", "geo": null, "id": 148839337956618240, "id_str": "148839337956618240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1651692257/milerse.e.ee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651692257/milerse.e.ee_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "IM HAVING SO MUCH FUN WITH THE CURSOR ON MY TUMBLR..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:17 +0000", "from_user": "abbbbbbey", "from_user_id": 375301253, "from_user_id_str": "375301253", "from_user_name": "Abbey Stewart ", "geo": null, "id": 148839337046454270, "id_str": "148839337046454272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1558051188/1bP8LD0u_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1558051188/1bP8LD0u_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ThatDudeMCFLY: It's all fun and games until someone steals a tweet lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:17 +0000", "from_user": "politicalline", "from_user_id": 402911205, "from_user_id_str": "402911205", "from_user_name": "Donny S", "geo": null, "id": 148839337029668860, "id_str": "148839337029668865", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1617635293/obama-toys-e1310607155530_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1617635293/obama-toys-e1310607155530_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Match-o-Matic pretty fun give it a try! - ABC News http://t.co/evrkgfek via @abc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:17 +0000", "from_user": "SirJuiceALot", "from_user_id": 155102930, "from_user_id_str": "155102930", "from_user_name": "Raps Skip Bayless", "geo": null, "id": 148839335893024770, "id_str": "148839335893024768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686024567/SNAPBACKP251_60_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686024567/SNAPBACKP251_60_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "As I thought they would..They slandered Tebow on SNL cause of his faith..Media always twistin & makin fun of religion..smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:17 +0000", "from_user": "danny4tis", "from_user_id": 274490697, "from_user_id_str": "274490697", "from_user_name": "Danny Fortis", "geo": +{"coordinates": [53.803,-1.5762], "type": "Point"}, "id": 148839334710226940, "id_str": "148839334710226945", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692580205/63492112057555375_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692580205/63492112057555375_normal.jpg", "source": "<a href="http://mobileways.de/gravity" rel="nofollow">Gravity!</a>", "text": "@SciFiNow OMAC has been my favourite, the Kirby-esque art and fun simple story make it a real fun read", "to_user": "SciFiNow", "to_user_id": 28321749, "to_user_id_str": "28321749", "to_user_name": "SciFiNow", "in_reply_to_status_id": 148828593844264960, "in_reply_to_status_id_str": "148828593844264961"}, +{"created_at": "Mon, 19 Dec 2011 18:57:16 +0000", "from_user": "gcpettit", "from_user_id": 316594505, "from_user_id_str": "316594505", "from_user_name": "GCPettit", "geo": null, "id": 148839331493199870, "id_str": "148839331493199873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1413294350/10529_1104905676501_1642549953_30306581_8338654_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1413294350/10529_1104905676501_1642549953_30306581_8338654_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Being a Sith Warrior is more fun than being a computer technician. Is it 5:00 yet? @bioware @SWTOR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:16 +0000", "from_user": "SenselessDope_", "from_user_id": 309857713, "from_user_id_str": "309857713", "from_user_name": "Ask. ", "geo": null, "id": 148839330578829300, "id_str": "148839330578829312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695160349/IMAG1549-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695160349/IMAG1549-1_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "@__SallyMckeever ; Ion even remember , lol . It was just fun , we were getting at each other the whole night", "to_user": "__SallyMckeever", "to_user_id": 321700510, "to_user_id_str": "321700510", "to_user_name": "Abomination.", "in_reply_to_status_id": 148839024197513200, "in_reply_to_status_id_str": "148839024197513216"}, +{"created_at": "Mon, 19 Dec 2011 18:57:16 +0000", "from_user": "britney8622", "from_user_id": 87632374, "from_user_id_str": "87632374", "from_user_name": "Britney Jarae Holt", "geo": null, "id": 148839330025189380, "id_str": "148839330025189376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1499525002/RyqbPtBs_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1499525002/RyqbPtBs_normal", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "S/O to Jersey! I know she having fun @ home!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:16 +0000", "from_user": "kdanahenry", "from_user_id": 345488739, "from_user_id_str": "345488739", "from_user_name": "Dana Henry", "geo": null, "id": 148839329446375420, "id_str": "148839329446375424", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1608608113/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608608113/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Y'all have fun @MeganHenry10211 @SavannaKlocke @laurenpodraza #takepics!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:15 +0000", "from_user": "Kelseys_Gay", "from_user_id": 395008216, "from_user_id_str": "395008216", "from_user_name": "Kelsey Current", "geo": null, "id": 148839328544587780, "id_str": "148839328544587776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1648701476/4HX7SG4K_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648701476/4HX7SG4K_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ChaseDeezNuts: @AlexisYeahCantu im not making fun of him... i just think he looks like the joker", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:15 +0000", "from_user": "carleysokie", "from_user_id": 349271588, "from_user_id_str": "349271588", "from_user_name": "Carley Sokol", "geo": null, "id": 148839326808162300, "id_str": "148839326808162304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1479660809/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1479660809/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@PaigeHeagle24 just look mine up www.calibounddd.tumblr.com you post photography pics and you follow people and people follow you! It's fun", "to_user": "PaigeHeagle24", "to_user_id": 339514062, "to_user_id_str": "339514062", "to_user_name": "Paige Heagle"}, +{"created_at": "Mon, 19 Dec 2011 18:57:15 +0000", "from_user": "icelemongirl", "from_user_id": 116821810, "from_user_id_str": "116821810", "from_user_name": "\\uE030\\uE204\\uBC15\\uD790\\uD790\\uE204\\uE32E", "geo": null, "id": 148839325675696130, "id_str": "148839325675696128", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689251667/ProfilePhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689251667/ProfilePhoto_normal.png", "source": "<a href="http://www.osfoora.com" rel="nofollow">Osfoora for iPhone</a>", "text": "@Heedictator goodnight and have fun with your chocoball \\uBFCC\\uC789\\uBFCC\\uC591\\uE409", "to_user": "Heedictator", "to_user_id": 135600392, "to_user_id_str": "135600392", "to_user_name": "\\uD76C\\uB2D8"}, +{"created_at": "Mon, 19 Dec 2011 18:57:15 +0000", "from_user": "triciamjohnson", "from_user_id": 172229709, "from_user_id_str": "172229709", "from_user_name": "Tricia Marie Johnson", "geo": null, "id": 148839325428232200, "id_str": "148839325428232192", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1663565611/trishi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663565611/trishi_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@alischippel @KileyCunn have fun Ali :)", "to_user": "alischippel", "to_user_id": 286735603, "to_user_id_str": "286735603", "to_user_name": "Ali Schippel", "in_reply_to_status_id": 148834963532419070, "in_reply_to_status_id_str": "148834963532419073"}, +{"created_at": "Mon, 19 Dec 2011 18:57:15 +0000", "from_user": "Hailey585698745", "from_user_id": 434929910, "from_user_id_str": "434929910", "from_user_name": "Hailey", "geo": null, "id": 148839325201739780, "id_str": "148839325201739777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688980054/Full200811031550464915123_kamasutraFull.jpgx_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688980054/Full200811031550464915123_kamasutraFull.jpgx_normal.jpeg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Kathe Kruse Ikibab Miau - Soft Kitty Toy: This Ikibab Miau is a bright, fun kitty that is sure to be a hit with ... http://t.co/DeCQ6Stm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:14 +0000", "from_user": "Shantayywb", "from_user_id": 431771780, "from_user_id_str": "431771780", "from_user_name": "Shantay Gartrell", "geo": null, "id": 148839324824248320, "id_str": "148839324824248320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681180104/large_1272562767_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681180104/large_1272562767_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Soda Slip On Flats Black Sz 7.5: Zipper-trimmed bow offer a fun update to a classic flat. Cushioned footbed with... http://t.co/y7xMXZnF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:14 +0000", "from_user": "britshcouncilmx", "from_user_id": 44284199, "from_user_id_str": "44284199", "from_user_name": "BritishCouncilMexico", "geo": null, "id": 148839324006359040, "id_str": "148839324006359040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/481838291/logobc-small_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/481838291/logobc-small_normal.gif", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "There are lots of fun Christmas activities on LearnEnglish Kids for your children to do over the holidays.... http://t.co/sKCmAPbE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:14 +0000", "from_user": "Christarius", "from_user_id": 84707246, "from_user_id_str": "84707246", "from_user_name": "Christian Magno", "geo": null, "id": 148839322894860300, "id_str": "148839322894860288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/602066854/spam-special_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/602066854/spam-special_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Who knew phone unboxing vids could be this much fun! Ninja's Unboxing 3 - 8bit epicness! http://t.co/5ETJZ9nE via @youtube", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:14 +0000", "from_user": "Koko_FitClub", "from_user_id": 74911869, "from_user_id_str": "74911869", "from_user_name": "Koko FitClub", "geo": null, "id": 148839321976311800, "id_str": "148839321976311808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/419634902/kfc_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/419634902/kfc_twitter_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Who is going to be the 1,500th person to like us? How can we have fun marking the occasion? Hmmm...turn them into... http://t.co/4ieulgYO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:13 +0000", "from_user": "Cindymealer", "from_user_id": 85453034, "from_user_id_str": "85453034", "from_user_name": "Cindy Mealer", "geo": null, "id": 148839319933689860, "id_str": "148839319933689856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1170989838/189758774_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1170989838/189758774_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Hehe. Cool, huh? ;D \\u201C@snthomson: Just had so much fun typing Let it Snow into http://t.co/ReUrua0G #yay\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:13 +0000", "from_user": "LV_4rm_Da_WV", "from_user_id": 201488728, "from_user_id_str": "201488728", "from_user_name": "LV Alix", "geo": null, "id": 148839319866589200, "id_str": "148839319866589184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697508705/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697508705/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "It ain't no fun unless we all get some", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:14 +0000", "from_user": "cc_lesperance", "from_user_id": 440464352, "from_user_id_str": "440464352", "from_user_name": "Clarissa L'Esperance", "geo": null, "id": 148839318830579700, "id_str": "148839318830579712", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701252769/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701252769/image_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Camera on iOS</a>", "text": "Eating fun nuggets :)\\nDino style http://t.co/o6qKq9gL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:13 +0000", "from_user": "DownForTheRide", "from_user_id": 242459801, "from_user_id_str": "242459801", "from_user_name": "Joyce Cuaycong", "geo": null, "id": 148839316737630200, "id_str": "148839316737630209", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1690263705/IMG_20111202_155420_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690263705/IMG_20111202_155420_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Lighters are actually fun to play with!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:12 +0000", "from_user": "fuck_nikki", "from_user_id": 409829303, "from_user_id_str": "409829303", "from_user_name": "Nicole Indell", "geo": null, "id": 148839315991040000, "id_str": "148839315991040000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695472247/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695472247/me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Paint balling is surprisingly fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:12 +0000", "from_user": "PsimonSez", "from_user_id": 141380425, "from_user_id_str": "141380425", "from_user_name": "Patrick Coffey", "geo": null, "id": 148839315491917820, "id_str": "148839315491917824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1607275631/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607275631/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@JonahHill Seen Liley's latest, Angry Boys? SHH<Angry Boys yet fun. The Sims twins from We Can Be Heroes are back. You killed in Moneyball!", "to_user": "JonahHill", "to_user_id": 256573865, "to_user_id_str": "256573865", "to_user_name": "Jonah Hill", "in_reply_to_status_id": 145754644856053760, "in_reply_to_status_id_str": "145754644856053761"}, +{"created_at": "Mon, 19 Dec 2011 18:57:12 +0000", "from_user": "Astra_Denny", "from_user_id": 29684168, "from_user_id_str": "29684168", "from_user_name": "Astra Denny", "geo": null, "id": 148839314141360130, "id_str": "148839314141360128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1584671948/af_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584671948/af_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@emilyjane333 Sounds great! Have fun tomorrow!! :) Imogen seems like such a nice person, I take it she's a real good cook? xx", "to_user": "emilyjane333", "to_user_id": 179132947, "to_user_id_str": "179132947", "to_user_name": "Emily Jane \\u262E", "in_reply_to_status_id": 148837590387273730, "in_reply_to_status_id_str": "148837590387273728"}, +{"created_at": "Mon, 19 Dec 2011 18:57:12 +0000", "from_user": "Angel14meg", "from_user_id": 193124546, "from_user_id_str": "193124546", "from_user_name": "Meg Thedford", "geo": null, "id": 148839314036502530, "id_str": "148839314036502528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1607772048/meghan1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607772048/meghan1_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Mother and daughter outing. Enjoying some time with my mom! So much fun! :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:12 +0000", "from_user": "gracehidog", "from_user_id": 52313742, "from_user_id_str": "52313742", "from_user_name": "Grace Heidig", "geo": null, "id": 148839313067606000, "id_str": "148839313067606016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1669604423/furry_hat_friends-23_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669604423/furry_hat_friends-23_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Everything's all fun and games until you realize you're wearing denim on denim", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:12 +0000", "from_user": "BlackAnnaNicole", "from_user_id": 64913844, "from_user_id_str": "64913844", "from_user_name": "CaT StizzY (-_~.)\\n", "geo": null, "id": 148839312463642620, "id_str": "148839312463642624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685266237/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685266237/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Yayyy Stormi works today!! I swear she brings out the fun in me loll", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:11 +0000", "from_user": "HollyBellMummy", "from_user_id": 31507501, "from_user_id_str": "31507501", "from_user_name": "Holly Bell", "geo": null, "id": 148839311440220160, "id_str": "148839311440220162", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1537383743/34114_holly_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1537383743/34114_holly_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@Tarb2010 It was such fun. x", "to_user": "Tarb2010", "to_user_id": 283653899, "to_user_id_str": "283653899", "to_user_name": "Paul J White", "in_reply_to_status_id": 148838874100138000, "in_reply_to_status_id_str": "148838874100137985"}, +{"created_at": "Mon, 19 Dec 2011 18:57:11 +0000", "from_user": "DarkSpider999", "from_user_id": 352150505, "from_user_id_str": "352150505", "from_user_name": "Kenneth Seares", "geo": null, "id": 148839311226318850, "id_str": "148839311226318848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697649733/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697649733/image_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", "text": "Playing The Sims FreePlay on iPhone. Get it for free and have a LOT of fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:11 +0000", "from_user": "ddeeaarr_nutti", "from_user_id": 107871160, "from_user_id_str": "107871160", "from_user_name": "ddeeaarr.", "geo": null, "id": 148839310995619840, "id_str": "148839310995619840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1594005175/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1594005175/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Mission impossible w/friends were fun!! <3. Dec19th,2011", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:11 +0000", "from_user": "TheZRoberts", "from_user_id": 222685832, "from_user_id_str": "222685832", "from_user_name": "Zachariah Roberts", "geo": null, "id": 148839309791866880, "id_str": "148839309791866880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1663526379/holiday_pistol_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663526379/holiday_pistol_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "That would be fun. RT @outsidethenba: I would like the Clippers to sign Peja Stojakovic.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:11 +0000", "from_user": "_CokesCityLAZER", "from_user_id": 362633889, "from_user_id_str": "362633889", "from_user_name": "Sequoia Smith \\u2665", "geo": null, "id": 148839309628289020, "id_str": "148839309628289024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700897767/swcsz_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700897767/swcsz_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "This week SHOULD be fun .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:10 +0000", "from_user": "taylornicole12c", "from_user_id": 183738378, "from_user_id_str": "183738378", "from_user_name": "taylor collins", "geo": null, "id": 148839307862487040, "id_str": "148839307862487040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1607902510/321680_1987238375420_1677142043_1484822_782368190_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607902510/321680_1987238375420_1677142043_1484822_782368190_n_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "I know what you mean its no fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:10 +0000", "from_user": "dreamzsou", "from_user_id": 64149151, "from_user_id_str": "64149151", "from_user_name": "soumya kurup", "geo": null, "id": 148839306818101250, "id_str": "148839306818101248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1676715235/IMG_2336_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676715235/IMG_2336_normal.JPG", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Looked smashing,danced uninhibitedly,ate to heart's content.....what a fun fun evening.:-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:10 +0000", "from_user": "TweetMe_Kayla", "from_user_id": 320507931, "from_user_id_str": "320507931", "from_user_name": "\\uE246\\uE30A\\uE32DKayla\\uE42A\\uE418\\uE409", "geo": null, "id": 148839306696470530, "id_str": "148839306696470528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702404184/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702404184/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@SunnySiide_Up Lmaoooo I Can't Wait Until Friday When We Go Bowling We All Have So Much Fun I Love The Girls Bballl Group We Fam Ahah", "to_user": "SunnySiide_Up", "to_user_id": 393794794, "to_user_id_str": "393794794", "to_user_name": "Tati Sanchez", "in_reply_to_status_id": 148838858224713730, "in_reply_to_status_id_str": "148838858224713728"}, +{"created_at": "Mon, 19 Dec 2011 18:57:10 +0000", "from_user": "jpar0", "from_user_id": 8650422, "from_user_id_str": "8650422", "from_user_name": "Justin Parlette", "geo": null, "id": 148839306457395200, "id_str": "148839306457395200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700789446/jpar0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700789446/jpar0_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Fun list, and some stuff that was new to me. Scope it, Tweeps. RT @SamsMyth: My 8 favorite Christmas records. http://t.co/RP4EVwD6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:10 +0000", "from_user": "ayboodayyy", "from_user_id": 372494004, "from_user_id_str": "372494004", "from_user_name": "Elizabeth ", "geo": null, "id": 148839305694027780, "id_str": "148839305694027777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1552122974/319603_2189813417272_1005184947_31985988_1427450121_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552122974/319603_2189813417272_1005184947_31985988_1427450121_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "S/O to @R_Amato215 hope your having a fun time in NYC! #jealous! Can't wait till you get back", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:10 +0000", "from_user": "dwilhite23", "from_user_id": 41583519, "from_user_id_str": "41583519", "from_user_name": "Derrick Wilhite", "geo": null, "id": 148839305014554620, "id_str": "148839305014554624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702387365/Di5H88LO_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702387365/Di5H88LO_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@creoleReDDbone lol. You should be having fun in cali..", "to_user": "creoleReDDbone", "to_user_id": 70879066, "to_user_id_str": "70879066", "to_user_name": "Dar'Shay Bieber ", "in_reply_to_status_id": 148838767707426800, "in_reply_to_status_id_str": "148838767707426816"}, +{"created_at": "Mon, 19 Dec 2011 18:57:10 +0000", "from_user": "LCampbellGDZ", "from_user_id": 423737875, "from_user_id_str": "423737875", "from_user_name": "Lewis Campbell", "geo": null, "id": 148839304813219840, "id_str": "148839304813219840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1663114741/tumblr_luy2meG4Ku1qf0j3io1_1280_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663114741/tumblr_luy2meG4Ku1qf0j3io1_1280_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "New blog: Dating on a budget: \\When you\\u2019re searching for a partner online, whether it\\u2019s for some fun ... http://t.co/BpJB6RKe Please RT!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:10 +0000", "from_user": "IselaScullark10", "from_user_id": 438871376, "from_user_id_str": "438871376", "from_user_name": "Isela Scullark", "geo": null, "id": 148839304670617600, "id_str": "148839304670617600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": null, "source": "<a href="http://twitter.com/">web</a>", "text": "@Semraaa_ \"Wow! I just won this for free, Free STARBUCKS drink gift card. Any drink any size http://t.co/JDI3A018 \"", "to_user": "Semraaa_", "to_user_id": 104888813, "to_user_id_str": "104888813", "to_user_name": "Semra", "in_reply_to_status_id": 148838782605594620, "in_reply_to_status_id_str": "148838782605594624"}, +{"created_at": "Mon, 19 Dec 2011 18:57:10 +0000", "from_user": "XoJackieSpice", "from_user_id": 165508262, "from_user_id_str": "165508262", "from_user_name": "\\u0BB0\\u0BBE\\u0B95\\u0BCD\\u0B95\\u0BC1\\u0BB5\\u0BC6\\u0BB2\\u0BCD", "geo": null, "id": 148839304603516930, "id_str": "148839304603516928", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695735314/260439_10150699868920074_523995073_19831408_949742_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695735314/260439_10150699868920074_523995073_19831408_949742_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MsSantanarose :), it's fun !", "to_user": "MsSantanarose", "to_user_id": 234380532, "to_user_id_str": "234380532", "to_user_name": "Rose Santana", "in_reply_to_status_id": 148838288382373900, "in_reply_to_status_id_str": "148838288382373888"}, +{"created_at": "Mon, 19 Dec 2011 18:57:10 +0000", "from_user": "6_lovebritneyyy", "from_user_id": 199330683, "from_user_id_str": "199330683", "from_user_name": "no, this is patrick", "geo": null, "id": 148839304142131200, "id_str": "148839304142131201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701687369/AgAksRfCAAEK9v8_normal.jpg-large", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701687369/AgAksRfCAAEK9v8_normal.jpg-large", "source": "<a href="http://twitter.com/">web</a>", "text": "driving around on a Saturday night , you made fun of me for singing my song .. </3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:09 +0000", "from_user": "evanpatten", "from_user_id": 197619741, "from_user_id_str": "197619741", "from_user_name": "Evan patten", "geo": null, "id": 148839302804152320, "id_str": "148839302804152320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1135452085/portmouthcrit2010041-EP_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1135452085/portmouthcrit2010041-EP_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Fun day @sundayriver with glen and marc http://t.co/hy3P0mxp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:09 +0000", "from_user": "KillaFromTha3", "from_user_id": 254104500, "from_user_id_str": "254104500", "from_user_name": "insert name ", "geo": null, "id": 148839302552502270, "id_str": "148839302552502273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696901171/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696901171/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "you have a twin? double the fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:09 +0000", "from_user": "fullerfuck", "from_user_id": 271137351, "from_user_id_str": "271137351", "from_user_name": "ambuhh", "geo": null, "id": 148839301164179460, "id_str": "148839301164179456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1598668365/lol2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598668365/lol2_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@casey_stoker hahahaha exactly!!! I always get made fun of :/ lol", "to_user": "casey_stoker", "to_user_id": 334207141, "to_user_id_str": "334207141", "to_user_name": "Casey Stoker \\u2764", "in_reply_to_status_id": 148839156070621200, "in_reply_to_status_id_str": "148839156070621184"}, +{"created_at": "Mon, 19 Dec 2011 18:57:09 +0000", "from_user": "lovelyone501", "from_user_id": 124204758, "from_user_id_str": "124204758", "from_user_name": "mona", "geo": null, "id": 148839300077858800, "id_str": "148839300077858816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697327947/W7n8uvs4_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697327947/W7n8uvs4_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@MomokoNingyou oh i hope your life will be fun and good ^^.btw hows the weather in japan ?", "to_user": "MomokoNingyou", "to_user_id": 438180087, "to_user_id_str": "438180087", "to_user_name": "Momoko Chan", "in_reply_to_status_id": 148818961130205200, "in_reply_to_status_id_str": "148818961130205184"}, +{"created_at": "Mon, 19 Dec 2011 18:57:09 +0000", "from_user": "TShirts_eCrater", "from_user_id": 101516217, "from_user_id_str": "101516217", "from_user_name": "Miss Anne", "geo": null, "id": 148839299712946180, "id_str": "148839299712946176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/607693940/Prince2004TShirtFront1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/607693940/Prince2004TShirtFront1_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Quick Gift Pick of the Day! NEW! Spaced Out Smurf T-Shirt Size XXL Just one of 100s of Tees! Follow for FUN! http://t.co/cy1bYaeq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:08 +0000", "from_user": "1stlove143", "from_user_id": 310067296, "from_user_id_str": "310067296", "from_user_name": "1stlove143", "geo": null, "id": 148839299494850560, "id_str": "148839299494850560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1379736581/jamyrah_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1379736581/jamyrah_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@YoFaceAhh_15 @MyUnique_Tweets and William and Donnie......we had fun lastnite lol...the facial expressions were the funniest", "to_user": "YoFaceAhh_15", "to_user_id": 368101793, "to_user_id_str": "368101793", "to_user_name": "JaMarcus Sanders"}, +{"created_at": "Mon, 19 Dec 2011 18:57:08 +0000", "from_user": "DeJanee_Fennell", "from_user_id": 33500561, "from_user_id_str": "33500561", "from_user_name": "DeJanee Fennell ", "geo": null, "id": 148839299280928770, "id_str": "148839299280928769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670909031/384920_2275074396034_1223910395_31795789_1606929241_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670909031/384920_2275074396034_1223910395_31795789_1606929241_n_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "Coco had fun on her walk! \\uD83D\\uDE0A http://t.co/BeRcqz5W", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:57:09 +0000", "from_user": "fullerfuck", "from_user_id": 271137351, "from_user_id_str": "271137351", "from_user_name": "ambuhh", "geo": null, "id": 148839301164179460, "id_str": "148839301164179456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1598668365/lol2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598668365/lol2_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@casey_stoker hahahaha exactly!!! I always get made fun of :/ lol", "to_user": "casey_stoker", "to_user_id": 334207141, "to_user_id_str": "334207141", "to_user_name": "Casey Stoker \\u2764", "in_reply_to_status_id": 148839156070621200, "in_reply_to_status_id_str": "148839156070621184"}, +{"created_at": "Mon, 19 Dec 2011 18:57:09 +0000", "from_user": "lovelyone501", "from_user_id": 124204758, "from_user_id_str": "124204758", "from_user_name": "mona", "geo": null, "id": 148839300077858800, "id_str": "148839300077858816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697327947/W7n8uvs4_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697327947/W7n8uvs4_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@MomokoNingyou oh i hope your life will be fun and good ^^.btw hows the weather in japan ?", "to_user": "MomokoNingyou", "to_user_id": 438180087, "to_user_id_str": "438180087", "to_user_name": "Momoko Chan", "in_reply_to_status_id": 148818961130205200, "in_reply_to_status_id_str": "148818961130205184"}, +{"created_at": "Mon, 19 Dec 2011 18:57:09 +0000", "from_user": "TShirts_eCrater", "from_user_id": 101516217, "from_user_id_str": "101516217", "from_user_name": "Miss Anne", "geo": null, "id": 148839299712946180, "id_str": "148839299712946176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/607693940/Prince2004TShirtFront1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/607693940/Prince2004TShirtFront1_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Quick Gift Pick of the Day! NEW! Spaced Out Smurf T-Shirt Size XXL Just one of 100s of Tees! Follow for FUN! http://t.co/cy1bYaeq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:08 +0000", "from_user": "1stlove143", "from_user_id": 310067296, "from_user_id_str": "310067296", "from_user_name": "1stlove143", "geo": null, "id": 148839299494850560, "id_str": "148839299494850560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1379736581/jamyrah_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1379736581/jamyrah_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@YoFaceAhh_15 @MyUnique_Tweets and William and Donnie......we had fun lastnite lol...the facial expressions were the funniest", "to_user": "YoFaceAhh_15", "to_user_id": 368101793, "to_user_id_str": "368101793", "to_user_name": "JaMarcus Sanders"}, +{"created_at": "Mon, 19 Dec 2011 18:57:08 +0000", "from_user": "DeJanee_Fennell", "from_user_id": 33500561, "from_user_id_str": "33500561", "from_user_name": "DeJanee Fennell ", "geo": null, "id": 148839299280928770, "id_str": "148839299280928769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670909031/384920_2275074396034_1223910395_31795789_1606929241_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670909031/384920_2275074396034_1223910395_31795789_1606929241_n_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "Coco had fun on her walk! \\uD83D\\uDE0A http://t.co/BeRcqz5W", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:08 +0000", "from_user": "kiittn", "from_user_id": 48387894, "from_user_id_str": "48387894", "from_user_name": "\\u2605Kiittn", "geo": null, "id": 148839298983145470, "id_str": "148839298983145472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1635278639/photo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635278639/photo_normal.JPG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Nahnewkuh lol that sounds awesome! It's been YEARS since i've had that much fun. I'm happy for you and wish I could've had fun with ya! :)", "to_user": "Nahnewkuh", "to_user_id": 95922303, "to_user_id_str": "95922303", "to_user_name": "Nanuka Takashi", "in_reply_to_status_id": 148838550106947600, "in_reply_to_status_id_str": "148838550106947584"}, +{"created_at": "Mon, 19 Dec 2011 18:57:08 +0000", "from_user": "SaiPhifer", "from_user_id": 22706803, "from_user_id_str": "22706803", "from_user_name": "Sai Phif\\u00E9r", "geo": null, "id": 148839298941194240, "id_str": "148839298941194240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1667331090/330702369_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667331090/330702369_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Sanaa Lathan Slams Kobe Bryant Rumors: \\u201CI\\u2019m Not His Type\\u201D - \"Can A Girl Have Some Fun At A Jay Z, Kanye Concert...?\" - http://t.co/J0phv9B9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:08 +0000", "from_user": "SashaBaxy", "from_user_id": 26836335, "from_user_id_str": "26836335", "from_user_name": "\\u266BSashaBaxy\\u266B", "geo": null, "id": 148839298572103680, "id_str": "148839298572103680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690540417/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690540417/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@EzekielUglyboy lol have fun with that!! I'm slothing tonight", "to_user": "EzekielUglyboy", "to_user_id": 147364699, "to_user_id_str": "147364699", "to_user_name": "Ezekiel Uglyboy", "in_reply_to_status_id": 148839089804820480, "in_reply_to_status_id_str": "148839089804820480"}, +{"created_at": "Mon, 19 Dec 2011 18:57:08 +0000", "from_user": "IsthatSamBone", "from_user_id": 24553156, "from_user_id_str": "24553156", "from_user_name": "Sam Bone", "geo": null, "id": 148839297716465660, "id_str": "148839297716465664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1632414235/me2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632414235/me2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @FATTREL: \\u201C@smoothpercrushn: @FATTREL last nite was fun fool ... Good Shit\\u201D--LLS DA CROWD WENT WILD!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:08 +0000", "from_user": "SwiftySparkles", "from_user_id": 218668015, "from_user_id_str": "218668015", "from_user_name": "Savannah Swift ", "geo": null, "id": 148839296172949500, "id_str": "148839296172949504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681912262/savannahalice_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681912262/savannahalice_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Charlie_Rowe Have fun, & i love you too! \\u2665 :)", "to_user": "Charlie_Rowe", "to_user_id": 172055186, "to_user_id_str": "172055186", "to_user_name": "Charlie Rowe"}, +{"created_at": "Mon, 19 Dec 2011 18:57:06 +0000", "from_user": "SaviorLexi", "from_user_id": 400443245, "from_user_id_str": "400443245", "from_user_name": "Alexia Branson", "geo": null, "id": 148839291143983100, "id_str": "148839291143983106", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1661516354/770412600_1377337_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661516354/770412600_1377337_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "@Poisens_Promise Don't you do anything else for fun? Other than killing pretty things and sex?", "to_user": "Poisens_Promise", "to_user_id": 295070602, "to_user_id_str": "295070602", "to_user_name": "Damon Salvatore", "in_reply_to_status_id": 148838156526039040, "in_reply_to_status_id_str": "148838156526039040"}, +{"created_at": "Mon, 19 Dec 2011 18:57:06 +0000", "from_user": "itweetsoSWAG", "from_user_id": 165851586, "from_user_id_str": "165851586", "from_user_name": "forever alone \\u2654", "geo": null, "id": 148839289105547260, "id_str": "148839289105547264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698988605/15953255_large_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698988605/15953255_large_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Keep making me laugh,\\nLet's go get high\\nThe road is long, we carry on\\nTry to have fun in the meantime", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:06 +0000", "from_user": "pixiangel101", "from_user_id": 335637047, "from_user_id_str": "335637047", "from_user_name": "Angel", "geo": null, "id": 148839288006656000, "id_str": "148839288006656000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1556382791/165759_10150091873213679_822513678_6065783_2665300_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1556382791/165759_10150091873213679_822513678_6065783_2665300_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@ellie_luisa yeah was fun although jackson looked a little like wow when him & ben walked in lol but was still fun had a good talk", "to_user": "ellie_luisa", "to_user_id": 22859757, "to_user_id_str": "22859757", "to_user_name": "Quasimodo", "in_reply_to_status_id": 148838066159763460, "in_reply_to_status_id_str": "148838066159763458"}, +{"created_at": "Mon, 19 Dec 2011 18:57:06 +0000", "from_user": "catconnor", "from_user_id": 16060628, "from_user_id_str": "16060628", "from_user_name": "Cat Connor", "geo": null, "id": 148839287599792130, "id_str": "148839287599792128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687372744/Snapshot_20111009_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687372744/Snapshot_20111009_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@LornaSuzuki Oh I shall! Love my editor - she makes this so much fun!", "to_user": "LornaSuzuki", "to_user_id": 46544514, "to_user_id_str": "46544514", "to_user_name": "Lorna Suzuki", "in_reply_to_status_id": 148838990269792260, "in_reply_to_status_id_str": "148838990269792256"}, +{"created_at": "Mon, 19 Dec 2011 18:57:06 +0000", "from_user": "sardonicvixxen", "from_user_id": 354214721, "from_user_id_str": "354214721", "from_user_name": "Charlotte :) x", "geo": +{"coordinates": [53.345,-1.4236], "type": "Point"}, "id": 148839287142617100, "id_str": "148839287142617090", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1673073837/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673073837/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@LordJasonAlex lol sounds fun :) xx", "to_user": "LordJasonAlex", "to_user_id": 124779847, "to_user_id_str": "124779847", "to_user_name": "Jason Alexander\\u2122", "in_reply_to_status_id": 148839099187470340, "in_reply_to_status_id_str": "148839099187470336"}, +{"created_at": "Mon, 19 Dec 2011 18:57:05 +0000", "from_user": "AngelaGiaramita", "from_user_id": 376220419, "from_user_id_str": "376220419", "from_user_name": "angela_giaramita ", "geo": null, "id": 148839285280354300, "id_str": "148839285280354305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695061487/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695061487/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Chriineeex3 I have too much fun with you lmao.. hit me up biotch", "to_user": "Chriineeex3", "to_user_id": 435355013, "to_user_id_str": "435355013", "to_user_name": "Chrine\\u2606", "in_reply_to_status_id": 148620444424085500, "in_reply_to_status_id_str": "148620444424085504"}, +{"created_at": "Mon, 19 Dec 2011 18:57:05 +0000", "from_user": "shazzziiieee", "from_user_id": 112203792, "from_user_id_str": "112203792", "from_user_name": "Shannon Crossland :)", "geo": null, "id": 148839285230026750, "id_str": "148839285230026752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698964089/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698964089/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@texfisher do you wanna fuck off and stop making fun of my teacher!:@", "to_user": "texfisher", "to_user_id": 234488960, "to_user_id_str": "234488960", "to_user_name": "tex fisher", "in_reply_to_status_id": 148838864885260300, "in_reply_to_status_id_str": "148838864885260288"}, +{"created_at": "Mon, 19 Dec 2011 18:57:05 +0000", "from_user": "astrong1", "from_user_id": 16870884, "from_user_id_str": "16870884", "from_user_name": "astrong1", "geo": null, "id": 148839285125160960, "id_str": "148839285125160961", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1585170612/234086_1314139711_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585170612/234086_1314139711_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Errin_Nelson TONIGHT @ 8pm out to Off The Hook Bar & Grill on 11201 E. 7 Mile 48205 friends, food, fun!!! E-NEAL I need u there!!!", "to_user": "Errin_Nelson", "to_user_id": 151276879, "to_user_id_str": "151276879", "to_user_name": "Errin Nelson"}, +{"created_at": "Mon, 19 Dec 2011 18:57:05 +0000", "from_user": "Trend_bot", "from_user_id": 359753420, "from_user_id_str": "359753420", "from_user_name": "Trendbot", "geo": null, "id": 148839283128676350, "id_str": "148839283128676352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1507601566/1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1507601566/1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iEnriqueSays: Living Single may seem fun while it lasts but at the end of the day everyone wants someone to love.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:05 +0000", "from_user": "Scotty_Doeeee", "from_user_id": 375777025, "from_user_id_str": "375777025", "from_user_name": "Chloe Scott", "geo": null, "id": 148839283120283650, "id_str": "148839283120283648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695674964/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695674964/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Who knew that baking Christmas cookies w/your gma could be so fun :) . \\n\\n#GottaLoveThemHolidays", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:04 +0000", "from_user": "Jeckamore", "from_user_id": 101740643, "from_user_id_str": "101740643", "from_user_name": "Jessica Stout", "geo": null, "id": 148839282260455420, "id_str": "148839282260455424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534610909/IMG_6780_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534610909/IMG_6780_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@ymasophieX no -_- it was... A fun journey...", "to_user": "ymasophieX", "to_user_id": 139425415, "to_user_id_str": "139425415", "to_user_name": "crash bandicoot", "in_reply_to_status_id": 148836319496372220, "in_reply_to_status_id_str": "148836319496372224"}, +{"created_at": "Mon, 19 Dec 2011 18:57:04 +0000", "from_user": "dickmakeucum", "from_user_id": 434366917, "from_user_id_str": "434366917", "from_user_name": "bigdickmike", "geo": null, "id": 148839281132183550, "id_str": "148839281132183552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687524115/470307798_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687524115/470307798_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Ms5letters im following. Can we have fun?", "to_user": "Ms5letters", "to_user_id": 126851499, "to_user_id_str": "126851499", "to_user_name": "Angela gordon", "in_reply_to_status_id": 148838894601895940, "in_reply_to_status_id_str": "148838894601895936"}, +{"created_at": "Mon, 19 Dec 2011 18:57:04 +0000", "from_user": "online_gsmegypt", "from_user_id": 330648835, "from_user_id_str": "330648835", "from_user_name": "online", "geo": null, "id": 148839280196845570, "id_str": "148839280196845570", "iso_language_code": "ar", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1429793359/254851_213650801999458_183109598386912_706633_4184070_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1429793359/254851_213650801999458_183109598386912_706633_4184070_n_normal.jpg", "source": "<a href="http://fun.ly" rel="nofollow">fun.ly</a>", "text": "\\u0645\\u0646\\u0638\\u0631 \\u0645\\u0647\\u064A\\u0628 \\u062C\\u062F\\u0627 \\u0644\\u062A\\u0634\\u064A\\u064A\\u0639 \\u0627\\u0644\\u0634\\u0647\\u064A\\u062F \\u0631\\u0645\\u0632\\u064A \\u062C\\u0631\\u064A \\u0641\\u064A \\u0627\\u062F\\u0644\\u0628 \\u0638\\u0647\\u0631 \\u0627\\u0644\\u064A\\u0648\\u0645 http://t.co/y6kPomLN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:04 +0000", "from_user": "brenda_judy2010", "from_user_id": 333826290, "from_user_id_str": "333826290", "from_user_name": "Brenda (:", "geo": null, "id": 148839280188461060, "id_str": "148839280188461057", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1658290108/P06GJ6Ex_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658290108/P06GJ6Ex_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Rubyyluu it was so much fun booby I recorded a lot so I'll show you(: just sucked I didn't get to see u at the bbyshower!", "to_user": "Rubyyluu", "to_user_id": 424785544, "to_user_id_str": "424785544", "to_user_name": "Rubyy Munoz", "in_reply_to_status_id": 148835457499807740, "in_reply_to_status_id_str": "148835457499807744"}, +{"created_at": "Mon, 19 Dec 2011 18:57:04 +0000", "from_user": "ItsMeStewe", "from_user_id": 31152465, "from_user_id_str": "31152465", "from_user_name": "Stewe ", "geo": null, "id": 148839279374778370, "id_str": "148839279374778368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1676676684/stewe_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676676684/stewe_twitter_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @__Shelbz__: Yo, #VICETEAMPARTY is 12 days away DEC31ST from 8-1am, in dearborn @ the maltese club, $5 before 9. SO BE THERE GET/GIVE DANCES AND HAVE FUN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:03 +0000", "from_user": "angelwings202", "from_user_id": 172880938, "from_user_id_str": "172880938", "from_user_name": "Angela", "geo": null, "id": 148839278154219520, "id_str": "148839278154219521", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1623126782/IMG_20110718_101045_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1623126782/IMG_20110718_101045_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@RenaeHallinan exciting have fun :)", "to_user": "RenaeHallinan", "to_user_id": 98392080, "to_user_id_str": "98392080", "to_user_name": "Renae Hallinan", "in_reply_to_status_id": 148736721553596400, "in_reply_to_status_id_str": "148736721553596416"}, +{"created_at": "Mon, 19 Dec 2011 18:57:03 +0000", "from_user": "brippy20", "from_user_id": 388636058, "from_user_id_str": "388636058", "from_user_name": "Brittany Rippy", "geo": null, "id": 148839277659303940, "id_str": "148839277659303936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701575878/preds_20game_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701575878/preds_20game_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @WizKhalllifa: #IWasThatKid that covered my hands in glue , let it dry , and then peeled it off for fun...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:03 +0000", "from_user": "wiriamu", "from_user_id": 15461751, "from_user_id_str": "15461751", "from_user_name": "wiriamu", "geo": null, "id": 148839276954660860, "id_str": "148839276954660864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/84904144/IMG00144_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/84904144/IMG00144_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "@tazigo yeah, I recall. Those were fun weeks...", "to_user": "tazigo", "to_user_id": 17774584, "to_user_id_str": "17774584", "to_user_name": "tazigo"}, +{"created_at": "Mon, 19 Dec 2011 18:57:03 +0000", "from_user": "evesoulreal_", "from_user_id": 209431976, "from_user_id_str": "209431976", "from_user_name": "eve", "geo": null, "id": 148839276514258940, "id_str": "148839276514258944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1675489866/eve_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675489866/eve_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@piscesbabyy oh yea !!! ahh have fun ! sounds so fun !", "to_user": "piscesbabyy", "to_user_id": 128924858, "to_user_id_str": "128924858", "to_user_name": "Lene", "in_reply_to_status_id": 148838878625796100, "in_reply_to_status_id_str": "148838878625796097"}, +{"created_at": "Mon, 19 Dec 2011 18:57:03 +0000", "from_user": "SanyHerrera", "from_user_id": 308729760, "from_user_id_str": "308729760", "from_user_name": "Sandra Herrera", "geo": null, "id": 148839276363264000, "id_str": "148839276363264000", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697667388/respeeto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697667388/respeeto_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Jugando con mis hermanitas y @ValeriaOlalde #Fun =D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:03 +0000", "from_user": "rushmz96", "from_user_id": 386256777, "from_user_id_str": "386256777", "from_user_name": "Rashad Zain", "geo": null, "id": 148839275675398140, "id_str": "148839275675398145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1612278584/309609_10150498189303943_734758942_11308376_445148229_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612278584/309609_10150498189303943_734758942_11308376_445148229_n_normal.jpg", "source": "<a href="http://rockmelt.com" rel="nofollow">RockMelt</a>", "text": "@Aventador99 yoooooo, have fun in india =) oh and merry christmas and a happy new year =D", "to_user": "Aventador99", "to_user_id": 289435739, "to_user_id_str": "289435739", "to_user_name": "Craig Gonsalves"}, +{"created_at": "Mon, 19 Dec 2011 18:57:03 +0000", "from_user": "MemOwliie", "from_user_id": 243520685, "from_user_id_str": "243520685", "from_user_name": "Maryaam\\u2665xo", "geo": null, "id": 148839275323080700, "id_str": "148839275323080704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1648531291/tumblr_lscbgfSsqr1qfvouao1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648531291/tumblr_lscbgfSsqr1qfvouao1_500_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I HAD SO MUCH FUN ;$! (L)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:03 +0000", "from_user": "Konscious_Mind", "from_user_id": 38899452, "from_user_id_str": "38899452", "from_user_name": "Saul Hicks", "geo": null, "id": 148839274500984830, "id_str": "148839274500984833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1647853959/Photo_on_2011-11-19_at_22.55_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647853959/Photo_on_2011-11-19_at_22.55_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Omg I like that keep on we gone have lots of fun I can see that already", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:02 +0000", "from_user": "rasga", "from_user_id": 14731797, "from_user_id_str": "14731797", "from_user_name": "Neil", "geo": null, "id": 148839274148671500, "id_str": "148839274148671488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1530433132/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1530433132/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "Gym time! Then maybe Duck Soup time, or some other fun restaurant.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:02 +0000", "from_user": "LoveWokeMeUp", "from_user_id": 17792824, "from_user_id_str": "17792824", "from_user_name": "Emmy", "geo": null, "id": 148839273884434430, "id_str": "148839273884434432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1679136340/59da3d6ad3a5__1309274447000_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679136340/59da3d6ad3a5__1309274447000_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@grrrzevske isn't that always fun and exciting? I love it! :)", "to_user": "grrrzevske", "to_user_id": 243966358, "to_user_id_str": "243966358", "to_user_name": "Brianne E. Gerzevske", "in_reply_to_status_id": 148838254853111800, "in_reply_to_status_id_str": "148838254853111808"}, +{"created_at": "Mon, 19 Dec 2011 18:57:02 +0000", "from_user": "daqitaha", "from_user_id": 365275742, "from_user_id_str": "365275742", "from_user_name": "Thedric Glatt", "geo": null, "id": 148839273808932860, "id_str": "148839273808932864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Adult forum: Wed me today!. seeking an individual fun., late/early ski. then lying in the actual forest, Interac... http://t.co/H0Y1dBsP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:02 +0000", "from_user": "RuddsRecords", "from_user_id": 69371673, "from_user_id_str": "69371673", "from_user_name": "Stevie McCoy", "geo": null, "id": 148839272978464770, "id_str": "148839272978464768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/572773143/Leroy_Van_Coy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/572773143/Leroy_Van_Coy_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "What an amazing weekend :-) two fantastic gigs on Friday then fun times at Quest on Saturday all toped of with an... http://t.co/ddBgbTxM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:02 +0000", "from_user": "DaLifeofKatrina", "from_user_id": 165152221, "from_user_id_str": "165152221", "from_user_name": "Katrina Kropp", "geo": null, "id": 148839272403845120, "id_str": "148839272403845120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699619770/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699619770/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Had a lot of fun in gym...we went in the weightroom and we threw those workout balls at eachother", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:02 +0000", "from_user": "EktaRawal", "from_user_id": 74950218, "from_user_id_str": "74950218", "from_user_name": "EktaRawal", "geo": null, "id": 148839270986158080, "id_str": "148839270986158080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1261805950/IMG0019B_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1261805950/IMG0019B_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Travelling is sooooooo much fun in winter..I just love it!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:02 +0000", "from_user": "jazzsatchwell", "from_user_id": 282596879, "from_user_id_str": "282596879", "from_user_name": "Jazz Satchwell", "geo": null, "id": 148839270742888450, "id_str": "148839270742888449", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1596946391/182852_1730326351354_1634341937_1616039_2109303_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596946391/182852_1730326351354_1634341937_1616039_2109303_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Just watched #CriminalMinds with mother, and now I'm educating her in season 6 of #Supernatural . Shes squeamish so this is fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:01 +0000", "from_user": "Pr7Kris", "from_user_id": 408618419, "from_user_id_str": "408618419", "from_user_name": "kris", "geo": null, "id": 148839270172475400, "id_str": "148839270172475393", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1630721927/tatuaje_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630721927/tatuaje_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @chrissyboy27: Girls wanna ave fun #twitterafterdark http://t.co/THqy9ceT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:01 +0000", "from_user": "camdenhoover", "from_user_id": 349538153, "from_user_id_str": "349538153", "from_user_name": "Camden Hoover", "geo": null, "id": 148839269975334900, "id_str": "148839269975334913", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1666060603/Photo_on_2011-09-28_at_08.52__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666060603/Photo_on_2011-09-28_at_08.52__2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "we're just havin fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:01 +0000", "from_user": "SexynEducated3", "from_user_id": 38664328, "from_user_id_str": "38664328", "from_user_name": "Colombian Princess", "geo": null, "id": 148839269463621630, "id_str": "148839269463621632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695978514/312547_2292077538969_1159922409_32209001_477800311_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695978514/312547_2292077538969_1159922409_32209001_477800311_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@Ms5letters: i need more followers ! I wanna have some fun on here today\" me too!!! #TeamFollowBack", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:01 +0000", "from_user": "Rotaract2420", "from_user_id": 26568030, "from_user_id_str": "26568030", "from_user_name": "Rotaract 2420. B\\u00F6lge", "geo": null, "id": 148839266905112580, "id_str": "148839266905112576", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1424660453/1112_tr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1424660453/1112_tr_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Trinidad'dan E\\u011Flenceli bir UHK Proje Fikri!\\n\\n\"Fun Language Music Video Exchange Project\"\\n\\nProje dahilinde anadili... http://t.co/ELxVOUfj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:01 +0000", "from_user": "yellowmoonderry", "from_user_id": 217569884, "from_user_id_str": "217569884", "from_user_name": "yellowmoonderry", "geo": null, "id": 148839266385014800, "id_str": "148839266385014784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1369910442/26356_100432033329211_100000872434381_11219_5960298_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1369910442/26356_100432033329211_100000872434381_11219_5960298_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "PAVON cool, funky with a fresh unique New York touch...its colourful and its fun, collection instore at YELLOWMOON, check our facebook", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:00 +0000", "from_user": "fresh_my_dougi", "from_user_id": 376543451, "from_user_id_str": "376543451", "from_user_name": "leelee mari", "geo": null, "id": 148839266070446080, "id_str": "148839266070446080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700418101/382919_311520035535552_100000326741302_1058211_1635352691_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700418101/382919_311520035535552_100000326741302_1058211_1635352691_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "wuts a fuckin life with no fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:00 +0000", "from_user": "Ms_Miesha35", "from_user_id": 387382603, "from_user_id_str": "387382603", "from_user_name": "Miesha", "geo": null, "id": 148839265965580300, "id_str": "148839265965580288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1653124444/YhoPvGpP_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653124444/YhoPvGpP_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Company Christmas party tonight with my babies!!! Great food and fun I can't wait!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:00 +0000", "from_user": "MamiPrettyEyez", "from_user_id": 31623632, "from_user_id_str": "31623632", "from_user_name": "La Bori::)", "geo": null, "id": 148839265709731840, "id_str": "148839265709731840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702470736/PhotoChooser-9734fac6-45a9-40bd-aec0-0ec091da6154_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702470736/PhotoChooser-9734fac6-45a9-40bd-aec0-0ec091da6154_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@Professor_ACE ** fun.. There's eye candy everywhere", "to_user": "Professor_ACE", "to_user_id": 231539558, "to_user_id_str": "231539558", "to_user_name": "Ace Martin", "in_reply_to_status_id": 148835586717909000, "in_reply_to_status_id_str": "148835586717908992"}, +{"created_at": "Mon, 19 Dec 2011 18:57:00 +0000", "from_user": "poniess", "from_user_id": 400704627, "from_user_id_str": "400704627", "from_user_name": "Teri. ", "geo": null, "id": 148839265453875200, "id_str": "148839265453875200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696895651/poniess_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696895651/poniess_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@sophiehoo I know right!!!!! It's so fun here :-) people are so friendly", "to_user": "sophiehoo", "to_user_id": 182379121, "to_user_id_str": "182379121", "to_user_name": "Sophie Hoo", "in_reply_to_status_id": 148724755825041400, "in_reply_to_status_id_str": "148724755825041408"}, +{"created_at": "Mon, 19 Dec 2011 18:57:00 +0000", "from_user": "Youknowyouasian", "from_user_id": 359667671, "from_user_id_str": "359667671", "from_user_name": "Melina Dhaliwally(:", "geo": null, "id": 148839265147682800, "id_str": "148839265147682817", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1593373414/Love_Music_Hate_Racism-1-250-250-85-nocrop_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593373414/Love_Music_Hate_Racism-1-250-250-85-nocrop_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @m_magazine: So great talking to @onedirection bright and early this morning! Such fun guys! Look for the exclusive interview deets in next issue of M!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:59 +0000", "from_user": "Knightrider593", "from_user_id": 335558127, "from_user_id_str": "335558127", "from_user_name": "Najee Gabay-knight", "geo": null, "id": 148839260768829440, "id_str": "148839260768829440", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700309636/NPQBodBz_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700309636/NPQBodBz_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@NicoleMystica12 it's fun :)", "to_user": "NicoleMystica12", "to_user_id": 407118463, "to_user_id_str": "407118463", "to_user_name": "Nicole Errico", "in_reply_to_status_id": 148838492238131200, "in_reply_to_status_id_str": "148838492238131200"}, +{"created_at": "Mon, 19 Dec 2011 18:56:59 +0000", "from_user": "frelted", "from_user_id": 223164734, "from_user_id_str": "223164734", "from_user_name": "Natalie Allen", "geo": null, "id": 148839260601065470, "id_str": "148839260601065472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1500642418/Photo_on_2011-08-17_at_12.30_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1500642418/Photo_on_2011-08-17_at_12.30_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "@Sierra_Boggess I'm in Vegas for the week. What's some fun stuff to do here?", "to_user": "sierra_boggess", "to_user_id": 213599299, "to_user_id_str": "213599299", "to_user_name": "Sierra Boggess"}, +{"created_at": "Mon, 19 Dec 2011 18:56:59 +0000", "from_user": "uncishott", "from_user_id": 32154754, "from_user_id_str": "32154754", "from_user_name": "Brianna Shea Geeslin", "geo": null, "id": 148839260122918900, "id_str": "148839260122918912", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/875662469/4352733960_264129d486_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/875662469/4352733960_264129d486_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@zestesdemode the most fun ;)", "to_user": "zestesdemode", "to_user_id": 259573778, "to_user_id_str": "259573778", "to_user_name": "Melissa Burriss", "in_reply_to_status_id": 148436407604621300, "in_reply_to_status_id_str": "148436407604621312"}, +{"created_at": "Mon, 19 Dec 2011 18:56:59 +0000", "from_user": "Vale8396", "from_user_id": 123905822, "from_user_id_str": "123905822", "from_user_name": "Vale*", "geo": null, "id": 148839258008993800, "id_str": "148839258008993793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1637266143/vale_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637266143/vale_1_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @NiallOfficial: Legooo! Southend! Gona be fun, get involved!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:59 +0000", "from_user": "fayBEEian", "from_user_id": 311941323, "from_user_id_str": "311941323", "from_user_name": "fuckfabian", "geo": +{"coordinates": [34.1142,-117.5576], "type": "Point"}, "id": 148839257878958080, "id_str": "148839257878958080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1614246079/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1614246079/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#ThisChristmas is going to be pretty fun. #EXCITED", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:58 +0000", "from_user": "Sprynt_Matthews", "from_user_id": 41046618, "from_user_id_str": "41046618", "from_user_name": "Key to Everything", "geo": null, "id": 148839254955536400, "id_str": "148839254955536385", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696259874/profile_image_1324032610410_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696259874/profile_image_1324032610410_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">TwidroydPRO</a>", "text": "Painting this apartment is fun lol now I'm just waiting for this shit to dry so I can get out lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:58 +0000", "from_user": "dj_alphi", "from_user_id": 433639581, "from_user_id_str": "433639581", "from_user_name": "DJ Alphi", "geo": null, "id": 148839254481575940, "id_str": "148839254481575936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://carbonwebos.com" rel="nofollow">Carbon for WebOS</a>", "text": "Cya DC, it was fun...back to v beach for the week. Small show this thursday then home for the holidays.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:58 +0000", "from_user": "hoffwell", "from_user_id": 16699776, "from_user_id_str": "16699776", "from_user_name": "hoffwell", "geo": null, "id": 148839253588193280, "id_str": "148839253588193281", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @saltneytoffee: Those making fun of Ed Balls' stilted speech should instead concentrate on the fact that he's a moron. #edballs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:57 +0000", "from_user": "ndzengeleski", "from_user_id": 356845682, "from_user_id_str": "356845682", "from_user_name": "Nicole Dzengeleski", "geo": null, "id": 148839251994349570, "id_str": "148839251994349568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687913906/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687913906/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@RealDanJohnson just wanted to day sorry for making fun of your cough.. i had a cough attack last period #karma", "to_user": "RealDanJohnson", "to_user_id": 131655692, "to_user_id_str": "131655692", "to_user_name": "Dan Johnson"}, +{"created_at": "Mon, 19 Dec 2011 18:56:57 +0000", "from_user": "WebCamAddict", "from_user_id": 381985340, "from_user_id_str": "381985340", "from_user_name": "Kristen Carlton", "geo": null, "id": 148839251784646660, "id_str": "148839251784646657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1565019857/BUH8BEBPWRTF_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1565019857/BUH8BEBPWRTF_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "I wish I lived when there was no cell phones, facebook, twitter. Everything seemed so much more fun, relaxed, and waayyy less drama.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:57 +0000", "from_user": "__mariaignacia", "from_user_id": 268521041, "from_user_id_str": "268521041", "from_user_name": "maria ignacia \\u264C", "geo": null, "id": 148839250266292220, "id_str": "148839250266292224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700769859/tumblr_ltu8zfpIX51r0v7z5o1_500_large_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700769859/tumblr_ltu8zfpIX51r0v7z5o1_500_large_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @NiallOfficial: Legooo! Southend! Gona be fun, get involved!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:57 +0000", "from_user": "merhanelmassry", "from_user_id": 83178905, "from_user_id_str": "83178905", "from_user_name": "Merhan El Massry", "geo": null, "id": 148839249901400060, "id_str": "148839249901400064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1648159323/Merio_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648159323/Merio_normal.JPG", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "RT @AltamashUrooj: DJ Sabrina Terence - portraits are fun again ! http://t.co/t8rGk17d", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:57 +0000", "from_user": "breelee_1117", "from_user_id": 362011191, "from_user_id_str": "362011191", "from_user_name": "brianna lukhard", "geo": null, "id": 148839249788149760, "id_str": "148839249788149760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1632592923/Snapshot_20111107_18_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632592923/Snapshot_20111107_18_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "we're to young to know what love is. I mean this is when we can make mistakes and have fun in life, not worry about our relationships..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:56 +0000", "from_user": "PuchtaOla", "from_user_id": 54654305, "from_user_id_str": "54654305", "from_user_name": "Aleksandra Puchta", "geo": null, "id": 148839247187689470, "id_str": "148839247187689473", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1500668662/ola1grono_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1500668662/ola1grono_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@rockyoo about startups: finally have fun & enjoy - great presention #openreaktor", "to_user": "rockyoo", "to_user_id": 13360052, "to_user_id_str": "13360052", "to_user_name": "Barbara Nowacka"}, +{"created_at": "Mon, 19 Dec 2011 18:56:56 +0000", "from_user": "cyndigreat", "from_user_id": 135570687, "from_user_id_str": "135570687", "from_user_name": "Cyndi Buhr", "geo": null, "id": 148839246793416700, "id_str": "148839246793416705", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1106669097/blue-poison-dart-frog-two_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1106669097/blue-poison-dart-frog-two_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SwagBucks ME! Makes the day fun. Love them bucks!", "to_user": "SwagBucks", "to_user_id": 18747993, "to_user_id_str": "18747993", "to_user_name": "SwagBucks.com", "in_reply_to_status_id": 148838242614116350, "in_reply_to_status_id_str": "148838242614116352"}, +{"created_at": "Mon, 19 Dec 2011 18:56:56 +0000", "from_user": "tipsychivas", "from_user_id": 73337101, "from_user_id_str": "73337101", "from_user_name": "Bryan Ong", "geo": null, "id": 148839246248157200, "id_str": "148839246248157184", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1032118885/polaroid_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1032118885/polaroid_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Night is no fun imma sleep", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:56 +0000", "from_user": "CMPrettyOdd", "from_user_id": 430173156, "from_user_id_str": "430173156", "from_user_name": "claudiaa! martin", "geo": null, "id": 148839245740654600, "id_str": "148839245740654592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677855256/056_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677855256/056_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@ladylydbug wow that's seems weird its nearly 7 o clock here and I'm having my tea :p are you having fun at school? :)", "to_user": "ladylydbug", "to_user_id": 293195488, "to_user_id_str": "293195488", "to_user_name": "Lydia Bangura", "in_reply_to_status_id": 148838621024235520, "in_reply_to_status_id_str": "148838621024235520"}, +{"created_at": "Mon, 19 Dec 2011 18:56:56 +0000", "from_user": "itsyaboyaron", "from_user_id": 62224592, "from_user_id_str": "62224592", "from_user_name": "Aaron Robert Floyd", "geo": null, "id": 148839245312827400, "id_str": "148839245312827393", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1126884856/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1126884856/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Well last night was fun with all of our good friends. Drinking beer and playing games it was fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:55 +0000", "from_user": "biteMEbxtch11", "from_user_id": 176659126, "from_user_id_str": "176659126", "from_user_name": "princess v o n i ", "geo": null, "id": 148839244847251460, "id_str": "148839244847251456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1631636323/biteMEbxtch11_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631636323/biteMEbxtch11_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @WonderTrendy: I like weed...Sex with beautiful woman...and Having dangerous fun..Im a fucking rebel.. Sue Me", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:55 +0000", "from_user": "sukeyeo", "from_user_id": 202169735, "from_user_id_str": "202169735", "from_user_name": "Jide Sokeye", "geo": null, "id": 148839244612374530, "id_str": "148839244612374529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1505611956/Brain_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505611956/Brain_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Traffic is kinda fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:55 +0000", "from_user": "ScottW_51", "from_user_id": 177161474, "from_user_id_str": "177161474", "from_user_name": "Scotttt.", "geo": null, "id": 148839243739971600, "id_str": "148839243739971584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696831113/Photo_on_2011-12-15_at_18.58__3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696831113/Photo_on_2011-12-15_at_18.58__3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@LEGOHOUSE__ I know ew, it's pretty fun celebrating infront of them all, the last derby when Temps scored I got abused because of it!", "to_user": "LEGOHOUSE__", "to_user_id": 51789805, "to_user_id_str": "51789805", "to_user_name": "Sophie Balsillie", "in_reply_to_status_id": 148838827631456260, "in_reply_to_status_id_str": "148838827631456256"}, +{"created_at": "Mon, 19 Dec 2011 18:56:55 +0000", "from_user": "Isaa_Bellz", "from_user_id": 278722823, "from_user_id_str": "278722823", "from_user_name": "Isabella Jordan", "geo": null, "id": 148839243026931700, "id_str": "148839243026931712", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687548259/_EE_9A_81_20_EE_9D_88_EE_99_BAO_CE_B7ik_CE_B1_20_EE_9A_81_20_EE_9D_88_EE_99_BA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687548259/_EE_9A_81_20_EE_9D_88_EE_99_BAO_CE_B7ik_CE_B1_20_EE_9A_81_20_EE_9D_88_EE_99_BA_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "2dae was so fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:55 +0000", "from_user": "STSRAMOS", "from_user_id": 81624303, "from_user_id_str": "81624303", "from_user_name": "Steven Ramos", "geo": null, "id": 148839242452303870, "id_str": "148839242452303873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697873950/STSRAMOS_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697873950/STSRAMOS_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I had to teach some sluts how to play beer pong last night , it was fun meeting new people and destroying their moral", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:55 +0000", "from_user": "Feek_YimZayne", "from_user_id": 144911646, "from_user_id_str": "144911646", "from_user_name": "#YimZayne", "geo": null, "id": 148839241126903800, "id_str": "148839241126903808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698918053/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698918053/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@BrittneyPatrese: \"@Feek_YimZayne: Damn Y'all...Da Big Boss/Wife @MrsFeek_Yim Told Me Chill Smh Lol\" *fun ends*\"<<Haha Right!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:55 +0000", "from_user": "Taailorrr", "from_user_id": 325860898, "from_user_id_str": "325860898", "from_user_name": "December 19th !", "geo": null, "id": 148839241072386050, "id_str": "148839241072386049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693943966/Taailorrr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693943966/Taailorrr_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @bonitaSTEPHANIE: happy birthday to my cousin @Taailorrr I Loveeee and miss you \\uD83C\\uDF89\\uD83C\\uDF89hope you have fun \\uD83D\\uDC9D- aww thank you I love you too :*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:54 +0000", "from_user": "travelmiamitour", "from_user_id": 362073105, "from_user_id_str": "362073105", "from_user_name": "michael brown", "geo": null, "id": 148839238434177020, "id_str": "148839238434177024", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://ping.fm/" rel="nofollow">Ping.fm</a>", "text": "fun activities http://t.co/eK8jNugT in Miami", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:54 +0000", "from_user": "Evopete123", "from_user_id": 57522744, "from_user_id_str": "57522744", "from_user_name": "Peter villamil", "geo": null, "id": 148839238241226750, "id_str": "148839238241226752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1544625879/Photo_on_2011-09-10_at_13.36__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544625879/Photo_on_2011-09-10_at_13.36__2_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Breaks been fun drinken and chillen with some homies coffebshops and sutch but im going to big bear snowboarding count me in ill be back oc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:54 +0000", "from_user": "Ferris__Bueller", "from_user_id": 59306055, "from_user_id_str": "59306055", "from_user_name": "\\u2654Stefvonn Robinson\\u2654", "geo": null, "id": 148839236781608960, "id_str": "148839236781608960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701594904/GosmsPhoto1324217055693_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701594904/GosmsPhoto1324217055693_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Havin fun on the mic", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:52 +0000", "from_user": "djmarkryman", "from_user_id": 385769098, "from_user_id_str": "385769098", "from_user_name": "Mark Ryman", "geo": null, "id": 148839231995904000, "id_str": "148839231995904000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693181002/Joe_King_CD_139_crop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693181002/Joe_King_CD_139_crop_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Just one location for me this week for Christmas fun, at The Wellington in Knightsbridge London on Friday. NEW YEARS EVE I'm at Morton's", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:52 +0000", "from_user": "kimmy_rockwell", "from_user_id": 233282862, "from_user_id_str": "233282862", "from_user_name": "KimmyRockwell", "geo": null, "id": 148839231052202000, "id_str": "148839231052201985", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1633013177/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633013177/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@Yenii_29 have fun!!!", "to_user": "Yenii_29", "to_user_id": 36585496, "to_user_id_str": "36585496", "to_user_name": "J\\u03B5\\u03B7\\u03B7\\u00EFf\\u03B5\\u044F \\u044F\\u03C3\\u03F3\\u03B1sz!;*\\u265A\\u2693", "in_reply_to_status_id": 148837802228989950, "in_reply_to_status_id_str": "148837802228989952"}, +{"created_at": "Mon, 19 Dec 2011 18:56:52 +0000", "from_user": "KimberHadeen19", "from_user_id": 440461081, "from_user_id_str": "440461081", "from_user_name": "Kimber Hadeen", "geo": null, "id": 148839230095884300, "id_str": "148839230095884288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@BlondeSkillz Misss youuu!! Hope you have fun at home! #loveyou", "to_user": "BlondeSkillz", "to_user_id": 326935147, "to_user_id_str": "326935147", "to_user_name": "Shanice Malone"}, +{"created_at": "Mon, 19 Dec 2011 18:56:51 +0000", "from_user": "glenndiddy", "from_user_id": 373198958, "from_user_id_str": "373198958", "from_user_name": "Glendy...", "geo": null, "id": 148839228338470900, "id_str": "148839228338470913", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691693056/381961_311920288835837_100000536045010_1214623_387457952_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691693056/381961_311920288835837_100000536045010_1214623_387457952_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@Dearcariina yeah I'm GABBING fun. Did you notice @Power106LA gave you a birthday S/O. Now say thank you. Lol", "to_user": "Dearcariina", "to_user_id": 93329467, "to_user_id_str": "93329467", "to_user_name": "Carina", "in_reply_to_status_id": 148838768873455600, "in_reply_to_status_id_str": "148838768873455616"}, +{"created_at": "Mon, 19 Dec 2011 18:56:51 +0000", "from_user": "Dynamyte617", "from_user_id": 21305704, "from_user_id_str": "21305704", "from_user_name": "Chrystyan Dynamyte", "geo": null, "id": 148839226241335300, "id_str": "148839226241335296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691409908/199434_152512748145564_100001605181144_328037_5864531_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691409908/199434_152512748145564_100001605181144_328037_5864531_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Vegas has been fun. But if there's ANYONE countin down the hours to get outta here its me. Good morning! (West coast time!)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:50 +0000", "from_user": "unknowingyou", "from_user_id": 122482894, "from_user_id_str": "122482894", "from_user_name": "Rebecca Bruce", "geo": null, "id": 148839223296925700, "id_str": "148839223296925696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1577093464/Profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1577093464/Profile_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "I'm just on another useless information kick today. Fun times had by all. #jokes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:49 +0000", "from_user": "WhteWaterWomen", "from_user_id": 240641260, "from_user_id_str": "240641260", "from_user_name": "WhiteWaterWomen", "geo": null, "id": 148839219601747970, "id_str": "148839219601747968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1220806589/WWW_LOGO_RGB_72dpi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1220806589/WWW_LOGO_RGB_72dpi_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "19th December: Have fun\\n\\nMany people seem to have cut back on spending money on cards preferring to give the... http://t.co/eMtUVe8h", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:49 +0000", "from_user": "MoreeKushhin", "from_user_id": 23673226, "from_user_id_str": "23673226", "from_user_name": "indyaaaa [:", "geo": null, "id": 148839219471712260, "id_str": "148839219471712256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688323236/4OjHlaK1_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688323236/4OjHlaK1_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ODGAF: So what if we drink? So what if we smoke weed? We just having fun...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:49 +0000", "from_user": "TomasWoppenkamp", "from_user_id": 163223249, "from_user_id_str": "163223249", "from_user_name": "Tomas Woppenkamp", "geo": null, "id": 148839218708353020, "id_str": "148839218708353024", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1629498810/STH74354_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629498810/STH74354_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Kellypalmaa Dat is wel weer het voordeel dat ik ze nu niet meer hoef te kijken met der! haha kidding. Have fun. =)", "to_user": "Kellypalmaa", "to_user_id": 291249593, "to_user_id_str": "291249593", "to_user_name": "Kelly Palma", "in_reply_to_status_id": 148838912515776500, "in_reply_to_status_id_str": "148838912515776512"}, +{"created_at": "Mon, 19 Dec 2011 18:56:49 +0000", "from_user": "gwalsh94", "from_user_id": 280201358, "from_user_id_str": "280201358", "from_user_name": "Gerard Walsh", "geo": null, "id": 148839218616078340, "id_str": "148839218616078336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1569575036/IMG00057-20110927-2146_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1569575036/IMG00057-20110927-2146_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Yakubu_24: We've all heard the jokes that us Nigerians don't know our ages. Its all fun and games unless your the U21's manager. Then its a nightmare.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:49 +0000", "from_user": "AriAddictedx3", "from_user_id": 337860747, "from_user_id_str": "337860747", "from_user_name": "AriAddicted\\u2665", "geo": null, "id": 148839218033070080, "id_str": "148839218033070080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694862563/425485763_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694862563/425485763_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Doophnee Haha yeah the breaks ^^ being with your friends is fun \\u2665", "to_user": "Doophnee", "to_user_id": 426238918, "to_user_id_str": "426238918", "to_user_name": "@xodaphyduckxo", "in_reply_to_status_id": 148838806366330880, "in_reply_to_status_id_str": "148838806366330880"}, +{"created_at": "Mon, 19 Dec 2011 18:56:49 +0000", "from_user": "duhon_aint_shit", "from_user_id": 224315993, "from_user_id_str": "224315993", "from_user_name": "Jake. from StateFarm", "geo": null, "id": 148839217567510530, "id_str": "148839217567510528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687730519/imagejpeg_2_38-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687730519/imagejpeg_2_38-1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @cotton_candy89 Rubber duckie...you're the one! You make bath time lots of fun! ~ this one? http://t.co/dhE4hJa7", "to_user": "cotton_candy89", "to_user_id": 76252666, "to_user_id_str": "76252666", "to_user_name": "T i F F A N Y", "in_reply_to_status_id": 148837656854396930, "in_reply_to_status_id_str": "148837656854396928"}, +{"created_at": "Mon, 19 Dec 2011 18:56:49 +0000", "from_user": "the_vogster", "from_user_id": 69565186, "from_user_id_str": "69565186", "from_user_name": "Steve Donaldson", "geo": null, "id": 148839217433296900, "id_str": "148839217433296896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1586376167/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586376167/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Plan for the week. Birmingham,home,Uni work,Xmas,Awkward family gatherings. Fun fun fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:48 +0000", "from_user": "MartaJurkowska", "from_user_id": 26533737, "from_user_id_str": "26533737", "from_user_name": "Marta Jurkowska", "geo": null, "id": 148839214853791740, "id_str": "148839214853791744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1549006003/IMG01244-20110812-2339_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1549006003/IMG01244-20110812-2339_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @TBDofficial: Here's another fun holiday hair tutorial. Part bun, part braid! Check it out\\u2026 and Happy Monday!! http://t.co/jpJU0Puj XO!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:48 +0000", "from_user": "radromity", "from_user_id": 51293015, "from_user_id_str": "51293015", "from_user_name": "cal siz", "geo": null, "id": 148839214245617660, "id_str": "148839214245617664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Game development is one of the most fun, and time expensive things I have found so far.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:48 +0000", "from_user": "spcb", "from_user_id": 19185415, "from_user_id_str": "19185415", "from_user_name": "Simon Baldwin", "geo": null, "id": 148839213087993860, "id_str": "148839213087993856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1666741717/Screen_shot_2011-11-30_at_22.34.17_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666741717/Screen_shot_2011-11-30_at_22.34.17_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "\"@BAIRDSTRAVEL: What is #Scotlandhour? http://t.co/KpDuKT0i\" its the night to get involved & chat about Scotland! < and it is great fun too!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:48 +0000", "from_user": "KingSethos", "from_user_id": 171901481, "from_user_id_str": "171901481", "from_user_name": "The King", "geo": null, "id": 148839212358180860, "id_str": "148839212358180864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1677994062/Cheers_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677994062/Cheers_normal.jpg", "source": "<a href="http://getsocialscope.com" rel="nofollow">SocialScope</a>", "text": "@samiamadison @MissHustleRose @A_3000 I'm glad we could share this moment of reflection on the classic \"Aint no fun\"... Makes me smile", "to_user": "samiamadison", "to_user_id": 22703207, "to_user_id_str": "22703207", "to_user_name": "Samia Ayoubi"}, +{"created_at": "Mon, 19 Dec 2011 18:56:47 +0000", "from_user": "iAMBASED_ROD", "from_user_id": 418883966, "from_user_id_str": "418883966", "from_user_name": "Rod C \\u00A9", "geo": null, "id": 148839210902749200, "id_str": "148839210902749184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1652851920/IMG_0091_1__normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652851920/IMG_0091_1__normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Yesterday died, put the past in a casket. Having fun w| the present while my bitch Life in labor w| my future", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:47 +0000", "from_user": "MAEGANBELLE", "from_user_id": 69992539, "from_user_id_str": "69992539", "from_user_name": "MAEGAN BELLE LLC. \\u2714", "geo": null, "id": 148839209724162050, "id_str": "148839209724162048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700868878/900_MG_3914_tu_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700868878/900_MG_3914_tu_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "heading to le city. shout out to @drdre keeping my subway ride fun with these detox <3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:47 +0000", "from_user": "ThisShytCray", "from_user_id": 382922954, "from_user_id_str": "382922954", "from_user_name": "Da Man Right Chea ", "geo": null, "id": 148839209346662400, "id_str": "148839209346662401", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1567258399/profile_image_1317429337548_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1567258399/profile_image_1317429337548_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @Ms5letters: i need more followers ! I wanna have some fun on here today", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:47 +0000", "from_user": "MahoneSwagYee", "from_user_id": 295829029, "from_user_id_str": "295829029", "from_user_name": "\\u2764\\u03B1\\u2113\\u03B1\\u0438\\u03B1 \\u043C\\u03B1hon\\u03B5.\\u2764", "geo": null, "id": 148839208155480060, "id_str": "148839208155480064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1625564955/efh_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1625564955/efh_normal.PNG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @heyitsmadison: @MahoneSwagYee have fun today(;", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:47 +0000", "from_user": "margiepanda", "from_user_id": 17613653, "from_user_id_str": "17613653", "from_user_name": "margarita pando.", "geo": null, "id": 148839207811555330, "id_str": "148839207811555329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1474755327/mpaxdance_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1474755327/mpaxdance_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@thesuperM lol. Look up foodinspace, that's always fun...it's two cool things in one food and space :D", "to_user": "thesuperM", "to_user_id": 19215208, "to_user_id_str": "19215208", "to_user_name": "Monica Jerez", "in_reply_to_status_id": 148835108776984580, "in_reply_to_status_id_str": "148835108776984577"} +, +{"created_at": "Mon, 19 Dec 2011 18:56:48 +0000", "from_user": "KingSethos", "from_user_id": 171901481, "from_user_id_str": "171901481", "from_user_name": "The King", "geo": null, "id": 148839212358180860, "id_str": "148839212358180864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1677994062/Cheers_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677994062/Cheers_normal.jpg", "source": "<a href="http://getsocialscope.com" rel="nofollow">SocialScope</a>", "text": "@samiamadison @MissHustleRose @A_3000 I'm glad we could share this moment of reflection on the classic \"Aint no fun\"... Makes me smile", "to_user": "samiamadison", "to_user_id": 22703207, "to_user_id_str": "22703207", "to_user_name": "Samia Ayoubi"}, +{"created_at": "Mon, 19 Dec 2011 18:56:47 +0000", "from_user": "iAMBASED_ROD", "from_user_id": 418883966, "from_user_id_str": "418883966", "from_user_name": "Rod C \\u00A9", "geo": null, "id": 148839210902749200, "id_str": "148839210902749184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1652851920/IMG_0091_1__normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652851920/IMG_0091_1__normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Yesterday died, put the past in a casket. Having fun w| the present while my bitch Life in labor w| my future", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:47 +0000", "from_user": "MAEGANBELLE", "from_user_id": 69992539, "from_user_id_str": "69992539", "from_user_name": "MAEGAN BELLE LLC. \\u2714", "geo": null, "id": 148839209724162050, "id_str": "148839209724162048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700868878/900_MG_3914_tu_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700868878/900_MG_3914_tu_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "heading to le city. shout out to @drdre keeping my subway ride fun with these detox <3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:47 +0000", "from_user": "ThisShytCray", "from_user_id": 382922954, "from_user_id_str": "382922954", "from_user_name": "Da Man Right Chea ", "geo": null, "id": 148839209346662400, "id_str": "148839209346662401", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1567258399/profile_image_1317429337548_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1567258399/profile_image_1317429337548_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @Ms5letters: i need more followers ! I wanna have some fun on here today", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:47 +0000", "from_user": "MahoneSwagYee", "from_user_id": 295829029, "from_user_id_str": "295829029", "from_user_name": "\\u2764\\u03B1\\u2113\\u03B1\\u0438\\u03B1 \\u043C\\u03B1hon\\u03B5.\\u2764", "geo": null, "id": 148839208155480060, "id_str": "148839208155480064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1625564955/efh_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1625564955/efh_normal.PNG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @heyitsmadison: @MahoneSwagYee have fun today(;", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:47 +0000", "from_user": "margiepanda", "from_user_id": 17613653, "from_user_id_str": "17613653", "from_user_name": "margarita pando.", "geo": null, "id": 148839207811555330, "id_str": "148839207811555329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1474755327/mpaxdance_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1474755327/mpaxdance_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@thesuperM lol. Look up foodinspace, that's always fun...it's two cool things in one food and space :D", "to_user": "thesuperM", "to_user_id": 19215208, "to_user_id_str": "19215208", "to_user_name": "Monica Jerez", "in_reply_to_status_id": 148835108776984580, "in_reply_to_status_id_str": "148835108776984577"}, +{"created_at": "Mon, 19 Dec 2011 18:56:46 +0000", "from_user": "mcolympiababa", "from_user_id": 368808311, "from_user_id_str": "368808311", "from_user_name": "mc olympia baba", "geo": null, "id": 148839206884610050, "id_str": "148839206884610048", "iso_language_code": "is", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693623961/3_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693623961/3_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Fun ra ee ni brain", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:46 +0000", "from_user": "ProjectSHAREpa", "from_user_id": 240744768, "from_user_id_str": "240744768", "from_user_name": "Project SHARE", "geo": null, "id": 148839206075121660, "id_str": "148839206075121664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312609257/Project-Share-Logo-2011_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312609257/Project-Share-Logo-2011_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "http://t.co/77T2yXGT Join us tonight for the Fiddler's Festive Family Fun 1 Mile Walk/Run in Mayapple. Enjoy... http://t.co/YgPz7seu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:46 +0000", "from_user": "DawnWarbler", "from_user_id": 184221143, "from_user_id_str": "184221143", "from_user_name": "Dawn Coco", "geo": null, "id": 148839205081055230, "id_str": "148839205081055232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702599593/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702599593/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@IssyPortmann okay!! Have fun!", "to_user": "IssyPortmann", "to_user_id": 406115916, "to_user_id_str": "406115916", "to_user_name": "miss\\u2022chris\\u2022colfer", "in_reply_to_status_id": 148839021374746620, "in_reply_to_status_id_str": "148839021374746626"}, +{"created_at": "Mon, 19 Dec 2011 18:56:46 +0000", "from_user": "Tatibabe7", "from_user_id": 316552938, "from_user_id_str": "316552938", "from_user_name": "Tati realcute", "geo": null, "id": 148839204980408320, "id_str": "148839204980408322", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685545812/IMG_20111204_180020-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685545812/IMG_20111204_180020-1_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @WizKhalllifa: #IWasThatKid that covered my hands in glue , let it dry , and then peeled it off for fun...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:46 +0000", "from_user": "LuuuGetsWavy", "from_user_id": 277294383, "from_user_id_str": "277294383", "from_user_name": "Living life !", "geo": null, "id": 148839203483029500, "id_str": "148839203483029506", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693990837/166903_247059275361103_100001710966155_616337_1837119516_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693990837/166903_247059275361103_100001710966155_616337_1837119516_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @Ishawalters: Had so much fun partying sat with my boo @LunaIrv & my marvel beauties! Have to do it again on new yrs!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:45 +0000", "from_user": "daldino", "from_user_id": 136079224, "from_user_id_str": "136079224", "from_user_name": "Activist Btgrw", "geo": null, "id": 148839199120957440, "id_str": "148839199120957441", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700661012/Thany_20Al_20Qahera_20Al_20Gadida-20111214-00447_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700661012/Thany_20Al_20Qahera_20Al_20Gadida-20111214-00447_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"@Fa_DiL: Soccer was Fun #M.A.P\" sure say na ball u go play?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:44 +0000", "from_user": "AJPaterson1987", "from_user_id": 61168102, "from_user_id_str": "61168102", "from_user_name": "Amy ", "geo": null, "id": 148839198277894140, "id_str": "148839198277894144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1572982221/252720_114816135272926_100002336217684_142190_4394007_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572982221/252720_114816135272926_100002336217684_142190_4394007_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@TwiztedSVUsista Should so let us add words to the dictionary, not fun when ya can't play an SVU reference!", "to_user": "TwiztedSVUsista", "to_user_id": 79810374, "to_user_id_str": "79810374", "to_user_name": "Ally A.k.A Twizted", "in_reply_to_status_id": 148838985442144260, "in_reply_to_status_id_str": "148838985442144256"}, +{"created_at": "Mon, 19 Dec 2011 18:56:44 +0000", "from_user": "Will_Sportto", "from_user_id": 306398327, "from_user_id_str": "306398327", "from_user_name": "Will Ramirez", "geo": null, "id": 148839197128667140, "id_str": "148839197128667136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1371405137/IMG_1264_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1371405137/IMG_1264_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @SporttoNet: @bilalv87 wants you stop making fun of his @CMPunk pajamas. #WWE http://t.co/5SpsPH4q", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:44 +0000", "from_user": "SB_Nicholas", "from_user_id": 361208003, "from_user_id_str": "361208003", "from_user_name": "Samuel Nicholas ", "geo": null, "id": 148839196767944700, "id_str": "148839196767944704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697362510/331587528_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697362510/331587528_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @ClaraLoso: RT @Myself_Lexx: I will never send a naked pic to whoever I'm dating. Sorry babes. << Why? Its fun! :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:44 +0000", "from_user": "Oyinda_", "from_user_id": 320721663, "from_user_id_str": "320721663", "from_user_name": "oyinda ogunleye\\u2122", "geo": null, "id": 148839196218503170, "id_str": "148839196218503168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698374705/Oyinda__1069209962630384386_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698374705/Oyinda__1069209962630384386_normal.JPG", "source": "<a href="http://tuitwit.com" rel="nofollow">TuiTwit</a>", "text": "Yh,ryt!u shud try it sumtym..u noe,jst 4 ''fun''?? RT @dayoslides: Lazy bones....RT Oyinda_: The idea of making pounded yam", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:44 +0000", "from_user": "Septwocainta", "from_user_id": 421788757, "from_user_id_str": "421788757", "from_user_name": "September Cainta", "geo": null, "id": 148839195727757300, "id_str": "148839195727757314", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1658628438/50_off_circle_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658628438/50_off_circle_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "A business has to be involving, it has to be fun, and it has to exercise your creative instincts.-Richard Branson", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:44 +0000", "from_user": "_JaRielise", "from_user_id": 373449198, "from_user_id_str": "373449198", "from_user_name": "JaRieliSeluvzTyShawn", "geo": null, "id": 148839194834374660, "id_str": "148839194834374656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1662507620/ertyuio6yui_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662507620/ertyuio6yui_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Cliffrost do my work & do laundry nuttin fun", "to_user": "Cliffrost", "to_user_id": 250517677, "to_user_id_str": "250517677", "to_user_name": "Bad Azz Frost", "in_reply_to_status_id": 148838738280194050, "in_reply_to_status_id_str": "148838738280194048"}, +{"created_at": "Mon, 19 Dec 2011 18:56:43 +0000", "from_user": "CashNCodes", "from_user_id": 64785336, "from_user_id_str": "64785336", "from_user_name": "Dayna Henderson", "geo": null, "id": 148839193940983800, "id_str": "148839193940983809", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1639161612/imagejpeg_9_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639161612/imagejpeg_9_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Bad guys ain't no good, good guys ain't no fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:43 +0000", "from_user": "AMDeeva", "from_user_id": 393481227, "from_user_id_str": "393481227", "from_user_name": "Amanda DeAngelo", "geo": null, "id": 148839193374765060, "id_str": "148839193374765056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1594713645/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1594713645/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@EdisLoud lol well at least I'm fun and not boring! :)", "to_user": "EdisLoud", "to_user_id": 364191559, "to_user_id_str": "364191559", "to_user_name": "Edward Chhun", "in_reply_to_status_id": 148837360036093950, "in_reply_to_status_id_str": "148837360036093952"}, +{"created_at": "Mon, 19 Dec 2011 18:56:43 +0000", "from_user": "TheRealTed", "from_user_id": 27092500, "from_user_id_str": "27092500", "from_user_name": "Ted", "geo": null, "id": 148839193076965380, "id_str": "148839193076965376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "[Ted's Take] Dagger: A fun read here. Thank you Steve. The voice of the Washington Wizards. http://t.co/GPSSfL7p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:43 +0000", "from_user": "singingfolife", "from_user_id": 59867210, "from_user_id_str": "59867210", "from_user_name": "Mike Canty", "geo": null, "id": 148839192984682500, "id_str": "148839192984682496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1180336184/e2e7eb0f-74ee-4ace-900a-3d10e1d41b63_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1180336184/e2e7eb0f-74ee-4ace-900a-3d10e1d41b63_normal.png", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@PhyllisStickney follow me back on this id& @MoviesMusicTV_ & @TodayOnThisDay for fun, entertainment updates & spiritual wisdom", "to_user": "PhyllisStickney", "to_user_id": 403525454, "to_user_id_str": "403525454", "to_user_name": "Phyllis Stickney"}, +{"created_at": "Mon, 19 Dec 2011 18:56:43 +0000", "from_user": "CharisJoy777", "from_user_id": 396273264, "from_user_id_str": "396273264", "from_user_name": "Charis Joy", "geo": null, "id": 148839192858853380, "id_str": "148839192858853376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1601847949/254393_10150620164625527_519205526_18930570_2100549_n__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601847949/254393_10150620164625527_519205526_18930570_2100549_n__1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "mmmm wraps are delicious and so easy to make...more fun then my daily sandwich", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:43 +0000", "from_user": "YoungDunnyz", "from_user_id": 188930171, "from_user_id_str": "188930171", "from_user_name": "Young Dunnyz", "geo": null, "id": 148839192779173900, "id_str": "148839192779173890", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1437624566/YoungDunnyz_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1437624566/YoungDunnyz_normal.jpg", "source": "<a href="http://www.lg.com" rel="nofollow">LG Phone</a>", "text": "RT @CDubbGeneral_yD: @DnG_ATNT IM PRETTY SURE THE KIDS WERE HAPPY N HAD FUN TO MEET YOU N THE @youngdunnyz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:43 +0000", "from_user": "Agentmg17", "from_user_id": 151556996, "from_user_id_str": "151556996", "from_user_name": "Agentmg17", "geo": null, "id": 148839191839645700, "id_str": "148839191839645696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/957060286/mom_2kids_lg_normal.GIF", "profile_image_url_https": "https://si0.twimg.com/profile_images/957060286/mom_2kids_lg_normal.GIF", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @PurpleGimp: I'm gimp limping out the door! Tune in @ 11 on http://t.co/7ikv01PA for #OPDX Fun at St. Francis 11-1 w/ @Kat_ryn & I! #OccupyPortland MWAH!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:43 +0000", "from_user": "_hollister_swaq", "from_user_id": 380035891, "from_user_id_str": "380035891", "from_user_name": "tyrik holiday", "geo": null, "id": 148839190883352580, "id_str": "148839190883352576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1635817388/299821_299241016759246_100000200517395_1443669_935898091_n_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635817388/299821_299241016759246_100000200517395_1443669_935898091_n_1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "today was fun with no tention in the room", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:42 +0000", "from_user": "Emmmaa003", "from_user_id": 23010775, "from_user_id_str": "23010775", "from_user_name": "Emma Gomez", "geo": null, "id": 148839190493278200, "id_str": "148839190493278209", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695893356/Photo_on_2011-09-04_at_18.07__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695893356/Photo_on_2011-09-04_at_18.07__2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@AlexJoseWiggins @colbyasmithwick sounds fun!! I'll come", "to_user": "AlexJoseWiggins", "to_user_id": 213277666, "to_user_id_str": "213277666", "to_user_name": "Alex Wiggins", "in_reply_to_status_id": 148837689825837060, "in_reply_to_status_id_str": "148837689825837056"}, +{"created_at": "Mon, 19 Dec 2011 18:56:42 +0000", "from_user": "Nigella_Lawson", "from_user_id": 173195708, "from_user_id_str": "173195708", "from_user_name": "Nigella Lawson", "geo": null, "id": 148839189943812100, "id_str": "148839189943812096", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1640630951/JP-Nigella-with-dingles_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640630951/JP-Nigella-with-dingles_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Eating4England: @LATimesfood Christmas Chocolate Biscuits (cookies!) a la @Nigella_Lawson. Festive, chocolate-y. Fun! http://t.co/53tfgeqI #weekendeats", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:42 +0000", "from_user": "Maze_City_Chulo", "from_user_id": 211152149, "from_user_id_str": "211152149", "from_user_name": "Clayton Bigsby", "geo": null, "id": 148839188144467970, "id_str": "148839188144467968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1620137114/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620137114/profile_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "This is gonna be fun lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:42 +0000", "from_user": "momonsteriawck", "from_user_id": 181384707, "from_user_id_str": "181384707", "from_user_name": "tomo hartoyo", "geo": null, "id": 148839188081549300, "id_str": "148839188081549313", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1676982652/CaptureIt-24-09-2011-01-03-23_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676982652/CaptureIt-24-09-2011-01-03-23_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @my_supersoccer: Yang udah maen, mana suaranya? Yang belum, sekali lagi, ini link-nya: http://t.co/EH2eaaHh #SuperSoccerFantasyFootball", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:42 +0000", "from_user": "itCandi", "from_user_id": 430979966, "from_user_id_str": "430979966", "from_user_name": "It! Candi", "geo": null, "id": 148839187209142270, "id_str": "148839187209142272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701733762/peppermint-candy-clip-art_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701733762/peppermint-candy-clip-art_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Is Auburn ready for the sweet, fun, and juicy talk that IT!Candi is sending your way next month?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:42 +0000", "from_user": "MissElviraPink", "from_user_id": 275680193, "from_user_id_str": "275680193", "from_user_name": "Elvira", "geo": null, "id": 148839186575786000, "id_str": "148839186575785984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1417816291/twot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1417816291/twot_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "London was way too much fun. I'm going to have to leave it another three years before I go back.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:41 +0000", "from_user": "online_gsmegypt", "from_user_id": 330648835, "from_user_id_str": "330648835", "from_user_name": "online", "geo": null, "id": 148839184432500740, "id_str": "148839184432500736", "iso_language_code": "ar", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1429793359/254851_213650801999458_183109598386912_706633_4184070_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1429793359/254851_213650801999458_183109598386912_706633_4184070_n_normal.jpg", "source": "<a href="http://fun.ly" rel="nofollow">fun.ly</a>", "text": "\\u0647\\u0627\\u0645: \\u0645\\u0646\\u0634\\u0648\\u0631 \\u0627\\u0644\\u0645\\u0631\\u062D\\u0644\\u0629 \\u0627\\u0644\\u062B\\u0627\\u0644\\u062B\\u0629 \\u0645\\u0646 \\u0627\\u0636\\u0631\\u0627\\u0628 \\u0627\\u0644\\u0643\\u0631\\u0627\\u0645\\u0629.. \\n\\u064A\\u0631\\u062C\\u0649 \\u0646\\u0634\\u0631\\u0647 \\u0648\\u062A\\u0648\\u0632\\u064A\\u0639\\u0647 \\u0641...http://fun.ly/198au", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:41 +0000", "from_user": "RhianneMclinden", "from_user_id": 40529821, "from_user_id_str": "40529821", "from_user_name": "IHATEMYNAME", "geo": +{"coordinates": [56.0633,-3.4086], "type": "Point"}, "id": 148839183354560500, "id_str": "148839183354560512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702415555/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702415555/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Cookie dough fight would be so much fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:41 +0000", "from_user": "itsmichael_meow", "from_user_id": 54328300, "from_user_id_str": "54328300", "from_user_name": "Michael \\u25D5\\u203F\\u25D5", "geo": null, "id": 148839182918357000, "id_str": "148839182918356993", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1183672254/Photo_on_2010-10-11_at_19.58_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1183672254/Photo_on_2010-10-11_at_19.58_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@penis_monster herp derp maybe :3 that sounds fun!", "to_user": "penis_monster", "to_user_id": 187747516, "to_user_id_str": "187747516", "to_user_name": "Jessica", "in_reply_to_status_id": 148838771016728580, "in_reply_to_status_id_str": "148838771016728576"}, +{"created_at": "Mon, 19 Dec 2011 18:56:40 +0000", "from_user": "Palesa_Illbliss", "from_user_id": 200431745, "from_user_id_str": "200431745", "from_user_name": "Palesa Mosia", "geo": null, "id": 148839182092075000, "id_str": "148839182092075008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702035702/Q8C7nYlO_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702035702/Q8C7nYlO_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "What is it? Lol RT @iPreciousLee: Its all fun and games until you laugh at my second/pedi name!! Lmao hao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:40 +0000", "from_user": "tomblox_9", "from_user_id": 118293850, "from_user_id_str": "118293850", "from_user_name": "TomyRibutArummawardi", "geo": null, "id": 148839179323838460, "id_str": "148839179323838464", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1542084946/tomz_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542084946/tomz_1_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @my_supersoccer: Yang udah maen, mana suaranya? Yang belum, sekali lagi, ini link-nya: http://t.co/EH2eaaHh #SuperSoccerFantasyFootball", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:40 +0000", "from_user": "graaaceanne", "from_user_id": 233026429, "from_user_id_str": "233026429", "from_user_name": "GraceAnne\\u2665", "geo": null, "id": 148839178724065280, "id_str": "148839178724065280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1614245704/338181_274452629242164_100000322861902_911853_1550972018_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1614245704/338181_274452629242164_100000322861902_911853_1550972018_o_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "\"@micaylayoder: people who judge you for having fun <<<\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:40 +0000", "from_user": "sassy24", "from_user_id": 21176132, "from_user_id_str": "21176132", "from_user_name": "Thelma Azolukwam ", "geo": null, "id": 148839178216546300, "id_str": "148839178216546304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/252152955/flow_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/252152955/flow_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT Sort this!! @BrianBrock1bad news - no internet for you over xmas. You'll b needing Ellie's password lol. Long story...have fun though ;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:39 +0000", "from_user": "stevebeal", "from_user_id": 26140050, "from_user_id_str": "26140050", "from_user_name": "Steve Beal", "geo": null, "id": 148839177860034560, "id_str": "148839177860034561", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1495482286/20110610-IMG_2453-Edit_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1495482286/20110610-IMG_2453-Edit_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Having Fun In Ten Stops | Scott Wyden Imagery http://t.co/hhm25K4Y via @scottwyden - ND for life! Love it man!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:39 +0000", "from_user": "paTelthemitsNP", "from_user_id": 303009455, "from_user_id_str": "303009455", "from_user_name": "Nicole Patel", "geo": null, "id": 148839176828227600, "id_str": "148839176828227584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700719343/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700719343/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@kennedygrant25 Lmao sure was.. You are CRAZY. Hope you're having fun on your date. :)", "to_user": "kennedygrant25", "to_user_id": 164005258, "to_user_id_str": "164005258", "to_user_name": "kennedy grant", "in_reply_to_status_id": 148786326584557570, "in_reply_to_status_id_str": "148786326584557569"}, +{"created_at": "Mon, 19 Dec 2011 18:56:39 +0000", "from_user": "SBRNZYM", "from_user_id": 145655021, "from_user_id_str": "145655021", "from_user_name": "Sabrina1D", "geo": null, "id": 148839176253603840, "id_str": "148839176253603840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1677364606/Picture_096_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677364606/Picture_096_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Okay gonna sleep now have fun boys @onedirection @zaynmalik @niallofficial @louis_tomlinson @harry_styles n @real_liam_payne love you guys!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:39 +0000", "from_user": "SylviaDeMarco", "from_user_id": 23499368, "from_user_id_str": "23499368", "from_user_name": "Sylvia", "geo": null, "id": 148839176115195900, "id_str": "148839176115195905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1273072501/DSC_0205_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273072501/DSC_0205_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Celebrated Christmas a week early! Beautiful & fun time. Now looking fwd to the encore Dec 24th & 25th!! Lucky me ;) <3 Friends & Fam", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:39 +0000", "from_user": "IHUMAN24", "from_user_id": 279045224, "from_user_id_str": "279045224", "from_user_name": "IHUMAN24", "geo": null, "id": 148839176031322100, "id_str": "148839176031322112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1647078870/HD_WALLPAPERS__76__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647078870/HD_WALLPAPERS__76__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "But at the same time,it's also healing to make movies that are entertaining,that are a lot of fun,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:39 +0000", "from_user": "KorVeldman", "from_user_id": 177301436, "from_user_id_str": "177301436", "from_user_name": "\\uF8FF Kor Veldman", "geo": null, "id": 148839175704150000, "id_str": "148839175704150016", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681017424/icon_KorVeldman_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681017424/icon_KorVeldman_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@MTPMarieke @martijnvrij have fun!", "to_user": "MTPMarieke", "to_user_id": 114463257, "to_user_id_str": "114463257", "to_user_name": "MTPMarieke", "in_reply_to_status_id": 148837523882393600, "in_reply_to_status_id_str": "148837523882393602"}, +{"created_at": "Mon, 19 Dec 2011 18:56:38 +0000", "from_user": "baileymcarroll", "from_user_id": 213914498, "from_user_id_str": "213914498", "from_user_name": "Bailey Carroll", "geo": null, "id": 148839171845402620, "id_str": "148839171845402624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1626065619/composite_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626065619/composite_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "Integrate shopping for Women's shelter in your holiday parties! I did this weekend and it was so fun to give back with friends! #BraveWoman", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:38 +0000", "from_user": "Emmaloumarie", "from_user_id": 254591839, "from_user_id_str": "254591839", "from_user_name": "Emma Pickess", "geo": null, "id": 148839171417571330, "id_str": "148839171417571329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677752972/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677752972/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@VickiHellett92 @LouiseTT_THS_FH hehe it is fun god we have a laugh hehe xxx", "to_user": "VickiHellett92", "to_user_id": 59565955, "to_user_id_str": "59565955", "to_user_name": "Vicki Hellett", "in_reply_to_status_id": 148838631287693300, "in_reply_to_status_id_str": "148838631287693313"}, +{"created_at": "Mon, 19 Dec 2011 18:56:38 +0000", "from_user": "iadoreSARA", "from_user_id": 251124655, "from_user_id_str": "251124655", "from_user_name": "\\u200E\\u200B\\u200B \\u200E\\u200B\\u200B", "geo": null, "id": 148839169811161100, "id_str": "148839169811161088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689356819/331370900_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689356819/331370900_normal.jpg", "source": "<a href="http://aplus-app.com" rel="nofollow">A.plus for BlackBerry</a>", "text": "RT @YungGioSays_: RT @DiEGEKKEBOY: Young, wild & free, so shut the fuck up and have some fun !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:37 +0000", "from_user": "Ishtiakalvi1", "from_user_id": 423372050, "from_user_id_str": "423372050", "from_user_name": "Ishtiak alvi", "geo": null, "id": 148839169022623740, "id_str": "148839169022623744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@ShawnMichaels_ big fan of urs , wrestling is no fun without the showstoper.", "to_user": "ShawnMichaels_", "to_user_id": 139848744, "to_user_id_str": "139848744", "to_user_name": "Shawn Michaels"}, +{"created_at": "Mon, 19 Dec 2011 18:56:37 +0000", "from_user": "deirdremolloy", "from_user_id": 47474829, "from_user_id_str": "47474829", "from_user_name": "Deirdre Molloy", "geo": null, "id": 148839168666112000, "id_str": "148839168666112002", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1410102810/151011_1734562524886_1263250732_1931314_2090493_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1410102810/151011_1734562524886_1263250732_1931314_2090493_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @fucktyler: Everyone, Go Outside. Sitting in The House High As Fuck On Tumblr Reblogging Shit All Day Seems Boring. Unless You Fap Alot, Thats FUN!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:37 +0000", "from_user": "ebszmonique", "from_user_id": 33065846, "from_user_id_str": "33065846", "from_user_name": "si vive una volta so", "geo": null, "id": 148839168011804670, "id_str": "148839168011804672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702453272/ebss_duhh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702453272/ebss_duhh_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Mrwavyswag lol its pretty fun and easy .", "to_user": "Mrwavyswag", "to_user_id": 59967060, "to_user_id_str": "59967060", "to_user_name": "Mark B.", "in_reply_to_status_id": 148838777937342460, "in_reply_to_status_id_str": "148838777937342465"}, +{"created_at": "Mon, 19 Dec 2011 18:56:37 +0000", "from_user": "DeeMofoBby", "from_user_id": 338029770, "from_user_id_str": "338029770", "from_user_name": "Ly'Deara Frazier", "geo": null, "id": 148839167072280580, "id_str": "148839167072280577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1582197669/Snapshot_20111010_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1582197669/Snapshot_20111010_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Ima have hella fun #ThisChristmas though.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:37 +0000", "from_user": "MichellesCharmW", "from_user_id": 16875225, "from_user_id_str": "16875225", "from_user_name": "MichellesCharmW", "geo": null, "id": 148839166849986560, "id_str": "148839166849986562", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1019210476/chj_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1019210476/chj_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Today we learned the art of folding notes in fun ways! http://t.co/TZD7puPS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:37 +0000", "from_user": "Nkululeko22", "from_user_id": 292822508, "from_user_id_str": "292822508", "from_user_name": "Nkululeko moloi", "geo": null, "id": 148839166128554000, "id_str": "148839166128553984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1675742845/Nicki-minaj-roman-in-moscow-cover_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675742845/Nicki-minaj-roman-in-moscow-cover_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "i'm really #sick from all the fun i've been having,my coming out party was of the chain #wow i love my friends #damn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:36 +0000", "from_user": "dedrain_roars", "from_user_id": 150089305, "from_user_id_str": "150089305", "from_user_name": "the lion king ", "geo": +{"coordinates": [44.9524,-93.1407], "type": "Point"}, "id": 148839165285507070, "id_str": "148839165285507073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694105726/IMG_7525_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694105726/IMG_7525_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "What fun apps can I download ?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:36 +0000", "from_user": "AnikaSchostak", "from_user_id": 319708202, "from_user_id_str": "319708202", "from_user_name": "Anika Schostak", "geo": null, "id": 148839163238694900, "id_str": "148839163238694912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1401819049/Foto2460_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1401819049/Foto2460_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Now I must tweet more. I have fun in writting tweets :)\\nLast school day today. :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:36 +0000", "from_user": "_moniquebrandao", "from_user_id": 112203921, "from_user_id_str": "112203921", "from_user_name": "Monique Brand\\u00E3o", "geo": null, "id": 148839162651484160, "id_str": "148839162651484160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682154593/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682154593/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\"You never know if you don't go!! dont make sense not to live for fun!\" smash mounth", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:36 +0000", "from_user": "TyJordanHart", "from_user_id": 275023007, "from_user_id_str": "275023007", "from_user_name": "Tyler Hartrick", "geo": null, "id": 148839162496303100, "id_str": "148839162496303104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692163986/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692163986/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Fun nights tough mornings", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:35 +0000", "from_user": "bear_stories", "from_user_id": 239899814, "from_user_id_str": "239899814", "from_user_name": "Julia Bass", "geo": null, "id": 148839161107984400, "id_str": "148839161107984384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1246708018/IMG_3169-pola_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1246708018/IMG_3169-pola_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Feeling left out of all the #ForeverYours fun just coz itunes is an hates south africans", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:35 +0000", "from_user": "DevonDuhDudee", "from_user_id": 322948153, "from_user_id_str": "322948153", "from_user_name": "McLovin\\u2122", "geo": null, "id": 148839161011507200, "id_str": "148839161011507200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681001260/dxGl28O5_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681001260/dxGl28O5_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Thinking about being a dick for the rest of the day for fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:35 +0000", "from_user": "e_kLeCTic", "from_user_id": 263483325, "from_user_id_str": "263483325", "from_user_name": "Eden Boyd", "geo": null, "id": 148839160550133760, "id_str": "148839160550133762", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686035085/e_kLeCTic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686035085/e_kLeCTic_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@creshiaboo what u been up to u having fun", "to_user": "creshiaboo", "to_user_id": 369744984, "to_user_id_str": "369744984", "to_user_name": "Creshia", "in_reply_to_status_id": 148836280241881100, "in_reply_to_status_id_str": "148836280241881089"}, +{"created_at": "Mon, 19 Dec 2011 18:56:35 +0000", "from_user": "HHHWendyHarris", "from_user_id": 419338450, "from_user_id_str": "419338450", "from_user_name": "Wendy Harris", "geo": null, "id": 148839159128260600, "id_str": "148839159128260608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694311038/hat_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694311038/hat_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@BatmanRocks01 (IA) ~smiles~ ~cellphone beeps~ Sorry.~sheepishly checks phone~ Hmm looks like Megan's not having much fun in Gotham.", "to_user": "BatmanRocks01", "to_user_id": 422357194, "to_user_id_str": "422357194", "to_user_name": "Marvin White", "in_reply_to_status_id": 148803775333802000, "in_reply_to_status_id_str": "148803775333801984"}, +{"created_at": "Mon, 19 Dec 2011 18:56:35 +0000", "from_user": "LoisLaneee_", "from_user_id": 192711378, "from_user_id_str": "192711378", "from_user_name": "Call Me Rox! =)", "geo": null, "id": 148839158419427330, "id_str": "148839158419427328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693415098/1BVdC4O5_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693415098/1BVdC4O5_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @theeLOVEJunkie: Tomorrow should be fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:34 +0000", "from_user": "vickii_NoSecret", "from_user_id": 189001333, "from_user_id_str": "189001333", "from_user_name": "12.29", "geo": null, "id": 148839155626020860, "id_str": "148839155626020864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1632084822/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632084822/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@FantaNot_Sprite going to the ultra bar. I hear it's really fun.", "to_user": "FantaNot_Sprite", "to_user_id": 211721732, "to_user_id_str": "211721732", "to_user_name": "f a n t a \\u30C4", "in_reply_to_status_id": 148838890650873860, "in_reply_to_status_id_str": "148838890650873857"}, +{"created_at": "Mon, 19 Dec 2011 18:56:34 +0000", "from_user": "MartineHaugen", "from_user_id": 401021536, "from_user_id_str": "401021536", "from_user_name": "Martine", "geo": null, "id": 148839153528872960, "id_str": "148839153528872960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1652618085/1d_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652618085/1d_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@kirstylowless amazing! I really want to meet you, had been insanely fun! You seem like a very nice girl<3\"VIP ticket here I come\" haha:):)", "to_user": "kirstylowless", "to_user_id": 235269446, "to_user_id_str": "235269446", "to_user_name": "kirsty lowless", "in_reply_to_status_id": 148837509223297020, "in_reply_to_status_id_str": "148837509223297024"}, +{"created_at": "Mon, 19 Dec 2011 18:56:34 +0000", "from_user": "Beaconfire", "from_user_id": 153086057, "from_user_id_str": "153086057", "from_user_name": " Beaconfire", "geo": null, "id": 148839153453379600, "id_str": "148839153453379585", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1265907071/new-twitter-av_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1265907071/new-twitter-av_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @scottlenger: RT @mattcutts: In case you missed it: search on Google for \"let it snow\" to see a fun easter egg. :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:33 +0000", "from_user": "LetitiaMonreal", "from_user_id": 67430636, "from_user_id_str": "67430636", "from_user_name": "Letitia Monreal", "geo": null, "id": 148839152228630530, "id_str": "148839152228630528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669124776/330756135_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669124776/330756135_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @Jhanee_nay: Last night was fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:33 +0000", "from_user": "shawnshannon11", "from_user_id": 143235074, "from_user_id_str": "143235074", "from_user_name": "Shawn Shannon", "geo": null, "id": 148839151108767740, "id_str": "148839151108767744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681098384/IMG00512-20110910-2017_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681098384/IMG00512-20110910-2017_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Well that was fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:33 +0000", "from_user": "jesswills013", "from_user_id": 437770265, "from_user_id_str": "437770265", "from_user_name": "Jessica Williams", "geo": null, "id": 148839150697721860, "id_str": "148839150697721856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695209901/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695209901/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@NoneLikeDemMays yaaaay :) tonight should be fun does court close or does she work till ten?", "to_user": "NoneLikeDemMays", "to_user_id": 243982864, "to_user_id_str": "243982864", "to_user_name": "jasmine mays", "in_reply_to_status_id": 148835651901595650, "in_reply_to_status_id_str": "148835651901595648"}, +{"created_at": "Mon, 19 Dec 2011 18:56:32 +0000", "from_user": "SelinaAng", "from_user_id": 18274915, "from_user_id_str": "18274915", "from_user_name": "Selina Ang", "geo": null, "id": 148839147723960320, "id_str": "148839147723960320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1136711751/SelinaAng_2667619_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1136711751/SelinaAng_2667619_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @CornellCALS: How many grapes are in a bottle of wine? Fun analysis by viticulture expert in new issue of Appellation Cornell http://t.co/y5ct8ILl #wine", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:32 +0000", "from_user": "holneversleeps", "from_user_id": 185569370, "from_user_id_str": "185569370", "from_user_name": "potato dawson", "geo": null, "id": 148839146511802370, "id_str": "148839146511802368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687250643/Na3W3EAX_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687250643/Na3W3EAX_normal", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @wedoexist: @holneversleeps haha. Yes, you really do. People see alcohol as something fun when in reality it's dangerous and tears lives apart.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:32 +0000", "from_user": "sucsoubonbon", "from_user_id": 34791326, "from_user_id_str": "34791326", "from_user_name": "Judith Julien", "geo": null, "id": 148839146230784000, "id_str": "148839146230784000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1684174078/FacebookHomescreenImage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684174078/FacebookHomescreenImage_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Christmas is not going to be so fun for me this year, I just need it to be over with.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:32 +0000", "from_user": "jygisyjys", "from_user_id": 409065483, "from_user_id_str": "409065483", "from_user_name": "Kashi Maryin", "geo": null, "id": 148839146037850100, "id_str": "148839146037850112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1631704109/1805_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631704109/1805_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @dowofuzodoj: free online casino slots for fun http://t.co/o0O74YGs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:32 +0000", "from_user": "staywithmeforev", "from_user_id": 371405291, "from_user_id_str": "371405291", "from_user_name": "B\\u00E1rbara \\u262E", "geo": null, "id": 148839144653729800, "id_str": "148839144653729792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699417503/jessie_j_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699417503/jessie_j_2_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @NiallOfficial: Legooo! Southend! Gona be fun, get involved!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:31 +0000", "from_user": "maddieisawk", "from_user_id": 379998203, "from_user_id_str": "379998203", "from_user_name": "Maddie Pospisil", "geo": null, "id": 148839143441575940, "id_str": "148839143441575937", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1614262736/Photo_on_2011-10-09_at_21.55__3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1614262736/Photo_on_2011-10-09_at_21.55__3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"don't come here just to have fun and be friends, take this seriously\" ...it is CHRISTMAS BREAK no one here is having fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:31 +0000", "from_user": "daviesda", "from_user_id": 3803951, "from_user_id_str": "3803951", "from_user_name": "David Davies", "geo": null, "id": 148839141503807500, "id_str": "148839141503807490", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/20560592/daviddavies_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/20560592/daviddavies_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Perhaps to soften the public image of the new N Korean leadership, Kim Jong-un should change his name to Kim Jong-fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:31 +0000", "from_user": "jeighlyntillman", "from_user_id": 377549528, "from_user_id_str": "377549528", "from_user_name": "DizNutz\\u2022Com :)", "geo": null, "id": 148839141348618240, "id_str": "148839141348618240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1617896310/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1617896310/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "@followthisthug oh Sounds fun", "to_user": "FollowThisThug", "to_user_id": 103427474, "to_user_id_str": "103427474", "to_user_name": "Chelsea Williams "}, +{"created_at": "Mon, 19 Dec 2011 18:56:31 +0000", "from_user": "ambyytoopoppin", "from_user_id": 335614157, "from_user_id_str": "335614157", "from_user_name": "amber marie", "geo": null, "id": 148839141323456500, "id_str": "148839141323456512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694172921/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694172921/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "had so much fun with my Cus @RunninBY_FAITH & sisters last nite , had a slumber now on the way to the mall , love them \\uD83D\\uDC93", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:31 +0000", "from_user": "CarlosPenaGurl", "from_user_id": 227139989, "from_user_id_str": "227139989", "from_user_name": "Raevin Cruz", "geo": null, "id": 148839140425863170, "id_str": "148839140425863170", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692203580/alwaysblameniallhoransirharrystylesI_could_stare_at_this_all_day_They_all_look_like_their_wearing_red_eyeshadow_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692203580/alwaysblameniallhoransirharrystylesI_could_stare_at_this_all_day_They_all_look_like_their_wearing_red_eyeshadow_normal.gif", "source": "<a href="http://www.osfoora.com" rel="nofollow">Osfoora for iPhone</a>", "text": "RT @jamesmaslow: @taylorswift13 Sorry for almost lighting you on fire with the firework show...though you have to admit it was a lot of fun! haha ;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:30 +0000", "from_user": "Espiinozaaa", "from_user_id": 68066146, "from_user_id_str": "68066146", "from_user_name": "Stephanie Espinoza", "geo": null, "id": 148839138802663420, "id_str": "148839138802663424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676174780/Snapshot_20111205_19_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676174780/Snapshot_20111205_19_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@_KirkWest okieeees! :D Have fun there thenn! Say hi to Erika for meeee! :D", "to_user": "_KirkWest", "to_user_id": 147032985, "to_user_id_str": "147032985", "to_user_name": "Caillou .", "in_reply_to_status_id": 148838847453732860, "in_reply_to_status_id_str": "148838847453732864"}, +{"created_at": "Mon, 19 Dec 2011 18:56:30 +0000", "from_user": "BobbyDoherty4", "from_user_id": 127397103, "from_user_id_str": "127397103", "from_user_name": "bobby doherty", "geo": null, "id": 148839136860712960, "id_str": "148839136860712960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1254510314/mee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1254510314/mee_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Krissyhunt hey me too, its not very fun", "to_user": "Krissyhunt", "to_user_id": 30586069, "to_user_id_str": "30586069", "to_user_name": "Krissyhunt", "in_reply_to_status_id": 148827777905332220, "in_reply_to_status_id_str": "148827777905332224"}, +{"created_at": "Mon, 19 Dec 2011 18:56:29 +0000", "from_user": "NiallIgnoresMe", "from_user_id": 103348526, "from_user_id_str": "103348526", "from_user_name": "vas happenin", "geo": null, "id": 148839135619198980, "id_str": "148839135619198976", "iso_language_code": "bo", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1658871785/tumblr_lv4dthTSx91r4hc7vo1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658871785/tumblr_lv4dthTSx91r4hc7vo1_500_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Ortal_x @e_poller have fun \\u0F3D\\u0F3C \\u0F15\\u0F28\\u0F27\\u0F29\\u0F20\\u0F26\\u0F24\\u0F22\\u0F22", "to_user": "Ortal_x", "to_user_id": 127183599, "to_user_id_str": "127183599", "to_user_name": "Orti :)", "in_reply_to_status_id": 148838857226461200, "in_reply_to_status_id_str": "148838857226461184"}, +{"created_at": "Mon, 19 Dec 2011 18:56:29 +0000", "from_user": "PINKkP___", "from_user_id": 170863249, "from_user_id_str": "170863249", "from_user_name": "MyNameeTay: )", "geo": null, "id": 148839134646112260, "id_str": "148839134646112256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699261455/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699261455/profile_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @Ambitious_Kickz: Lokk At Dese Fools Trent&Ausar Doin Push Up In DC History Js Fr Fun Deyy #Lame x2 :) Lls http://t.co/Ie2LZnVB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:29 +0000", "from_user": "ayeitsmara", "from_user_id": 113742692, "from_user_id_str": "113742692", "from_user_name": "_beautifulsoul", "geo": null, "id": 148839134184751100, "id_str": "148839134184751105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1683608510/a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683608510/a_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @presstigious: Bad boys aint no good ' good boys aint no fun -MARY'J <33", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:29 +0000", "from_user": "leeshawilliams", "from_user_id": 56927055, "from_user_id_str": "56927055", "from_user_name": "Aleshia Williams", "geo": null, "id": 148839132859342850, "id_str": "148839132859342848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1497161345/Aleshia-Williams_Head_Shot2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1497161345/Aleshia-Williams_Head_Shot2_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @Cre8tiveKingdom: weekend of performances, photoshoots, \\tXmas parties, secret Santas & fun! Holidays are here but the snow isn't. let's cross our fingers.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:28 +0000", "from_user": "LTreu", "from_user_id": 55061547, "from_user_id_str": "55061547", "from_user_name": "Lukas Treu", "geo": null, "id": 148839130875445250, "id_str": "148839130875445249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1557805719/tw_12669776_1316881597_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1557805719/tw_12669776_1316881597_normal.jpg", "source": "<a href="http://tweetmeme.com" rel="nofollow">TweetMeme</a>", "text": "Wonder if his son will be so easy to make fun of? 5 bizarre tales about Kim Jong-Il http://t.co/PiFYvBcS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:28 +0000", "from_user": "CMB_Wasted", "from_user_id": 119708096, "from_user_id_str": "119708096", "from_user_name": "TaniaChunny", "geo": null, "id": 148839130678300670, "id_str": "148839130678300672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699098236/3l76pe3x_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699098236/3l76pe3x_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Double your pleasure, double your fun and dance forever-ever-ever\\nForever-ever-ever", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:28 +0000", "from_user": "DB_Financial", "from_user_id": 90480584, "from_user_id_str": "90480584", "from_user_name": "Doug Bennett", "geo": null, "id": 148839128853778430, "id_str": "148839128853778432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1187761284/Doug_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1187761284/Doug_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I have finally succumbed, my IPAD 2 is being delivered tomorrow. A good friend of mine said it is good fun, how can I use it as a work tool?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:28 +0000", "from_user": "FoolieTootedHer", "from_user_id": 111821183, "from_user_id_str": "111821183", "from_user_name": "Foolie CFi REPPiN'", "geo": null, "id": 148839128832815100, "id_str": "148839128832815104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1643258405/369893_100001315596638_1115265109_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643258405/369893_100001315596638_1115265109_n_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Bein Single Is Fun , But Not All The Tyme .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:28 +0000", "from_user": "xMarloeslove", "from_user_id": 233127482, "from_user_id_str": "233127482", "from_user_name": "Marloes(ll).", "geo": null, "id": 148839128392417280, "id_str": "148839128392417280", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1523345830/IMG-20110813-00389_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1523345830/IMG-20110813-00389_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@hermijntje94 oooh dat is leuk alles verlicht enzo!! Nu wil ik ook weer ahhah have fun nog!\\u2665", "to_user": "hermijntje94", "to_user_id": 322570434, "to_user_id_str": "322570434", "to_user_name": "Hermijntje"}, +{"created_at": "Mon, 19 Dec 2011 18:56:28 +0000", "from_user": "CherrylBehne", "from_user_id": 436666692, "from_user_id_str": "436666692", "from_user_name": "Cherryl Behne", "geo": null, "id": 148839128023318530, "id_str": "148839128023318528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692738685/hgjmhgm_normal.jpg", "profile_image_url_https": null, "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Brown Sheep Burly Spun Yarn - BS320 Sandy Dune: Burly Spun is thick, bulky yarn that looks kind of like fun colo... http://t.co/fwqIyYbU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:28 +0000", "from_user": "sharedpaper", "from_user_id": 242663208, "from_user_id_str": "242663208", "from_user_name": "Shared Paper", "geo": null, "id": 148839127943626750, "id_str": "148839127943626752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1491376575/iTunesArtWork-Rounded_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1491376575/iTunesArtWork-Rounded_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@iPadHandbook free Xmas app for new iPad - fun and useful: Shared Paper Lite, sketch/draw on vast scrollable whiteboard http://t.co/4wDpOyu9", "to_user": "iPadHandbook", "to_user_id": 163841733, "to_user_id_str": "163841733", "to_user_name": "iPad Handbook"}, +{"created_at": "Mon, 19 Dec 2011 18:56:27 +0000", "from_user": "J_Christie", "from_user_id": 25827351, "from_user_id_str": "25827351", "from_user_name": "Jennifer Hewitt", "geo": null, "id": 148839127570333700, "id_str": "148839127570333697", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1618729907/BeachyMe_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618729907/BeachyMe_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@RichHallsworth Check out my last retweet..You should go along after work! Same street as Cargo bar, not far from you. Looks like fun x x", "to_user": "RichHallsworth", "to_user_id": 19446016, "to_user_id_str": "19446016", "to_user_name": "Rich Hallsworth"}, +{"created_at": "Mon, 19 Dec 2011 18:56:27 +0000", "from_user": "Stevoste", "from_user_id": 216335728, "from_user_id_str": "216335728", "from_user_name": "Stephen kariuki", "geo": null, "id": 148839126706294800, "id_str": "148839126706294786", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1633827089/r3n6YGwq_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633827089/r3n6YGwq_normal", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@HarajukuBerbie a've bin relaxing enjoying ma holiday upto Jan.I cn say nimekuwa busy tis tym around on the fun side nt the stressing one", "to_user": "HarajukuBerbie", "to_user_id": 234343645, "to_user_id_str": "234343645", "to_user_name": "Harajuku Maraj", "in_reply_to_status_id": 148830844595879940, "in_reply_to_status_id_str": "148830844595879936"}, +{"created_at": "Mon, 19 Dec 2011 18:56:27 +0000", "from_user": "IsThatMyGirlO_o", "from_user_id": 175820030, "from_user_id_str": "175820030", "from_user_name": "The Runner Up\\u00AE", "geo": null, "id": 148839126463025150, "id_str": "148839126463025152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702608985/v6mtGQY0_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702608985/v6mtGQY0_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "now following @yoTONGUE_NtMiNE @LaLANGUE_Unique @sounique711 yall follow back last night was fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:27 +0000", "from_user": "Oh_oK_OC", "from_user_id": 189048749, "from_user_id_str": "189048749", "from_user_name": "Ossie LeJeune", "geo": null, "id": 148839126442057730, "id_str": "148839126442057728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1666826825/Oh_oK_OC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666826825/Oh_oK_OC_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Had a fun night wit da brusly ppl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:27 +0000", "from_user": "Glitter_Chel", "from_user_id": 306402086, "from_user_id_str": "306402086", "from_user_name": "Chel", "geo": null, "id": 148839126194593800, "id_str": "148839126194593792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693410814/tumblr_lia29bQ0941qh262so1_1280_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693410814/tumblr_lia29bQ0941qh262so1_1280_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@Kat__DelVec @ItsJakeTheBeast looking for the fun kind of trouble *peers around*", "to_user": "Kat__DelVec", "to_user_id": 313011744, "to_user_id_str": "313011744", "to_user_name": "Kat Black", "in_reply_to_status_id": 148836091699535870, "in_reply_to_status_id_str": "148836091699535872"}, +{"created_at": "Mon, 19 Dec 2011 18:56:27 +0000", "from_user": "little_theatre", "from_user_id": 386645886, "from_user_id_str": "386645886", "from_user_name": "Little Theatre", "geo": null, "id": 148839126010044400, "id_str": "148839126010044417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1580319115/DLT_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580319115/DLT_logo_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Get your panto tickets now, only a few left, great fun for all the family! Aladdin runs till 30th December. http://t.co/21OJCieU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:27 +0000", "from_user": "27311siaan", "from_user_id": 405026685, "from_user_id_str": "405026685", "from_user_name": "SiaaanLewwseey", "geo": null, "id": 148839125712252930, "id_str": "148839125712252928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670221439/Peter_Andre_png_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670221439/Peter_Andre_png_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@meganholmesx awww! Sooo cuteee, same as bruces, daughters, name:)! Aww, hope you have fun together, have you fed her yet?! Xxxx", "to_user": "meganholmesx", "to_user_id": 258017626, "to_user_id_str": "258017626", "to_user_name": "cher'lloyd idol", "in_reply_to_status_id": 148838473099517950, "in_reply_to_status_id_str": "148838473099517952"}, +{"created_at": "Mon, 19 Dec 2011 18:56:27 +0000", "from_user": "sophshappers", "from_user_id": 58453654, "from_user_id_str": "58453654", "from_user_name": "Sophie Shapcott", "geo": null, "id": 148839124009369600, "id_str": "148839124009369600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691547574/Yeeee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691547574/Yeeee_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "already bored but hope everyone is having lots of fun in the cold, will be on later have fun don't unfollow love love xxxx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:56:28 +0000", "from_user": "xMarloeslove", "from_user_id": 233127482, "from_user_id_str": "233127482", "from_user_name": "Marloes(ll).", "geo": null, "id": 148839128392417280, "id_str": "148839128392417280", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1523345830/IMG-20110813-00389_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1523345830/IMG-20110813-00389_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@hermijntje94 oooh dat is leuk alles verlicht enzo!! Nu wil ik ook weer ahhah have fun nog!\\u2665", "to_user": "hermijntje94", "to_user_id": 322570434, "to_user_id_str": "322570434", "to_user_name": "Hermijntje"}, +{"created_at": "Mon, 19 Dec 2011 18:56:28 +0000", "from_user": "CherrylBehne", "from_user_id": 436666692, "from_user_id_str": "436666692", "from_user_name": "Cherryl Behne", "geo": null, "id": 148839128023318530, "id_str": "148839128023318528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692738685/hgjmhgm_normal.jpg", "profile_image_url_https": null, "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Brown Sheep Burly Spun Yarn - BS320 Sandy Dune: Burly Spun is thick, bulky yarn that looks kind of like fun colo... http://t.co/fwqIyYbU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:28 +0000", "from_user": "sharedpaper", "from_user_id": 242663208, "from_user_id_str": "242663208", "from_user_name": "Shared Paper", "geo": null, "id": 148839127943626750, "id_str": "148839127943626752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1491376575/iTunesArtWork-Rounded_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1491376575/iTunesArtWork-Rounded_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@iPadHandbook free Xmas app for new iPad - fun and useful: Shared Paper Lite, sketch/draw on vast scrollable whiteboard http://t.co/4wDpOyu9", "to_user": "iPadHandbook", "to_user_id": 163841733, "to_user_id_str": "163841733", "to_user_name": "iPad Handbook"}, +{"created_at": "Mon, 19 Dec 2011 18:56:27 +0000", "from_user": "J_Christie", "from_user_id": 25827351, "from_user_id_str": "25827351", "from_user_name": "Jennifer Hewitt", "geo": null, "id": 148839127570333700, "id_str": "148839127570333697", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1618729907/BeachyMe_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618729907/BeachyMe_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@RichHallsworth Check out my last retweet..You should go along after work! Same street as Cargo bar, not far from you. Looks like fun x x", "to_user": "RichHallsworth", "to_user_id": 19446016, "to_user_id_str": "19446016", "to_user_name": "Rich Hallsworth"}, +{"created_at": "Mon, 19 Dec 2011 18:56:27 +0000", "from_user": "Stevoste", "from_user_id": 216335728, "from_user_id_str": "216335728", "from_user_name": "Stephen kariuki", "geo": null, "id": 148839126706294800, "id_str": "148839126706294786", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1633827089/r3n6YGwq_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633827089/r3n6YGwq_normal", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@HarajukuBerbie a've bin relaxing enjoying ma holiday upto Jan.I cn say nimekuwa busy tis tym around on the fun side nt the stressing one", "to_user": "HarajukuBerbie", "to_user_id": 234343645, "to_user_id_str": "234343645", "to_user_name": "Harajuku Maraj", "in_reply_to_status_id": 148830844595879940, "in_reply_to_status_id_str": "148830844595879936"}, +{"created_at": "Mon, 19 Dec 2011 18:56:27 +0000", "from_user": "IsThatMyGirlO_o", "from_user_id": 175820030, "from_user_id_str": "175820030", "from_user_name": "The Runner Up\\u00AE", "geo": null, "id": 148839126463025150, "id_str": "148839126463025152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702608985/v6mtGQY0_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702608985/v6mtGQY0_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "now following @yoTONGUE_NtMiNE @LaLANGUE_Unique @sounique711 yall follow back last night was fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:27 +0000", "from_user": "Oh_oK_OC", "from_user_id": 189048749, "from_user_id_str": "189048749", "from_user_name": "Ossie LeJeune", "geo": null, "id": 148839126442057730, "id_str": "148839126442057728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1666826825/Oh_oK_OC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666826825/Oh_oK_OC_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Had a fun night wit da brusly ppl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:27 +0000", "from_user": "Glitter_Chel", "from_user_id": 306402086, "from_user_id_str": "306402086", "from_user_name": "Chel", "geo": null, "id": 148839126194593800, "id_str": "148839126194593792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693410814/tumblr_lia29bQ0941qh262so1_1280_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693410814/tumblr_lia29bQ0941qh262so1_1280_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@Kat__DelVec @ItsJakeTheBeast looking for the fun kind of trouble *peers around*", "to_user": "Kat__DelVec", "to_user_id": 313011744, "to_user_id_str": "313011744", "to_user_name": "Kat Black", "in_reply_to_status_id": 148836091699535870, "in_reply_to_status_id_str": "148836091699535872"}, +{"created_at": "Mon, 19 Dec 2011 18:56:27 +0000", "from_user": "little_theatre", "from_user_id": 386645886, "from_user_id_str": "386645886", "from_user_name": "Little Theatre", "geo": null, "id": 148839126010044400, "id_str": "148839126010044417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1580319115/DLT_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580319115/DLT_logo_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Get your panto tickets now, only a few left, great fun for all the family! Aladdin runs till 30th December. http://t.co/21OJCieU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:27 +0000", "from_user": "27311siaan", "from_user_id": 405026685, "from_user_id_str": "405026685", "from_user_name": "SiaaanLewwseey", "geo": null, "id": 148839125712252930, "id_str": "148839125712252928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670221439/Peter_Andre_png_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670221439/Peter_Andre_png_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@meganholmesx awww! Sooo cuteee, same as bruces, daughters, name:)! Aww, hope you have fun together, have you fed her yet?! Xxxx", "to_user": "meganholmesx", "to_user_id": 258017626, "to_user_id_str": "258017626", "to_user_name": "cher'lloyd idol", "in_reply_to_status_id": 148838473099517950, "in_reply_to_status_id_str": "148838473099517952"}, +{"created_at": "Mon, 19 Dec 2011 18:56:27 +0000", "from_user": "sophshappers", "from_user_id": 58453654, "from_user_id_str": "58453654", "from_user_name": "Sophie Shapcott", "geo": null, "id": 148839124009369600, "id_str": "148839124009369600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691547574/Yeeee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691547574/Yeeee_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "already bored but hope everyone is having lots of fun in the cold, will be on later have fun don't unfollow love love xxxx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:27 +0000", "from_user": "JSlugg", "from_user_id": 42309012, "from_user_id_str": "42309012", "from_user_name": "Jason Clericuzio\\u2122", "geo": null, "id": 148839123568959500, "id_str": "148839123568959489", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699128116/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699128116/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @realcormega: yo life is real somebody got robbed outside the grocery store for $150 worth of groceries everything aint popping bottles and fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:26 +0000", "from_user": "TheRealTyera", "from_user_id": 299977835, "from_user_id_str": "299977835", "from_user_name": "Tyera Breeze ", "geo": null, "id": 148839123078230000, "id_str": "148839123078230016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1686028990/n5T5o1rS_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686028990/n5T5o1rS_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@lOVEKatieG_ thats how it is smh younger siblings kill the fun", "to_user": "lOVEKatieG_", "to_user_id": 339808883, "to_user_id_str": "339808883", "to_user_name": "Katie !", "in_reply_to_status_id": 148838946250559500, "in_reply_to_status_id_str": "148838946250559488"}, +{"created_at": "Mon, 19 Dec 2011 18:56:26 +0000", "from_user": "_JordanQueen_", "from_user_id": 52220416, "from_user_id_str": "52220416", "from_user_name": "Helica . \\uF8FF", "geo": null, "id": 148839122323247100, "id_str": "148839122323247104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677383119/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677383119/image_normal.jpg", "source": "<a href="http://tweetlogix.com" rel="nofollow">Tweetlogix</a>", "text": "Why fit it in when it's more fun to stand out !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:26 +0000", "from_user": "PhlyAhhSlim", "from_user_id": 216321774, "from_user_id_str": "216321774", "from_user_name": "\\u2708Slimm Phlyte\\u2708", "geo": null, "id": 148839121610223600, "id_str": "148839121610223616", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699252610/L4q58e0T_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699252610/L4q58e0T_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Ghetto_Barbie You had fun last night love ?", "to_user": "Ghetto_Barbie", "to_user_id": 24998445, "to_user_id_str": "24998445", "to_user_name": "THICKY ROZAI\\u2122 ", "in_reply_to_status_id": 148838122963206140, "in_reply_to_status_id_str": "148838122963206144"}, +{"created_at": "Mon, 19 Dec 2011 18:56:26 +0000", "from_user": "PofParsimony", "from_user_id": 33298883, "from_user_id_str": "33298883", "from_user_name": "Marisa Monier", "geo": null, "id": 148839121475993600, "id_str": "148839121475993600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676351113/Picture_11_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676351113/Picture_11_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Sometimes love is enough and the road gets tough...idk why. The roads long we carry on, try to have fun in the meantime.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:26 +0000", "from_user": "scrappylilmama", "from_user_id": 217614674, "from_user_id_str": "217614674", "from_user_name": "Scrappy Mama", "geo": null, "id": 148839119416594430, "id_str": "148839119416594432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1192366600/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1192366600/image_normal.jpg", "source": "<a href="http://www.samsungmobile.com" rel="nofollow">Samsung Mobile</a>", "text": "Mississippi is fun to say fast. Its a different story to type it.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:25 +0000", "from_user": "Dutchy_Mcchilly", "from_user_id": 126829380, "from_user_id_str": "126829380", "from_user_name": "Von Doe\\u2122", "geo": null, "id": 148839119064272900, "id_str": "148839119064272896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694070884/Dutchy_Mcchilly_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694070884/Dutchy_Mcchilly_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "RT @PrimaDonna_1908: I love this man @Dutchy_Mcchilly http://t.co/tvrBQ72r had fun at the grad party!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:25 +0000", "from_user": "bella_lauraxxxx", "from_user_id": 25125310, "from_user_id_str": "25125310", "from_user_name": "laura harrison", "geo": null, "id": 148839118997168130, "id_str": "148839118997168128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1661245308/photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661245308/photo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@angellicabell have fun xxxx", "to_user": "angellicabell", "to_user_id": 44239911, "to_user_id_str": "44239911", "to_user_name": "Angellica Bell", "in_reply_to_status_id": 148838950478422000, "in_reply_to_status_id_str": "148838950478422016"}, +{"created_at": "Mon, 19 Dec 2011 18:56:25 +0000", "from_user": "Steve_Clements", "from_user_id": 17067299, "from_user_id_str": "17067299", "from_user_name": "Steve Clements", "geo": null, "id": 148839118808432640, "id_str": "148839118808432640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/434794570/Screen_shot_2009-09-24_at_10.05.15_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/434794570/Screen_shot_2009-09-24_at_10.05.15_PM_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I love doing spontaneous/fun things with the kids. I love seeing their excitement! #ParentingIsFun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:25 +0000", "from_user": "Kush_Ken", "from_user_id": 25533930, "from_user_id_str": "25533930", "from_user_name": "Ken Jones", "geo": null, "id": 148839118326071300, "id_str": "148839118326071297", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698157536/profile_image_1324125451396_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698157536/profile_image_1324125451396_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "But u had fun all weekend without me", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:25 +0000", "from_user": "RugbyPippen_", "from_user_id": 104676387, "from_user_id_str": "104676387", "from_user_name": "Oh, I'm Just Aubrey", "geo": null, "id": 148839117768237060, "id_str": "148839117768237056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695235608/ColorTouch-1323981977202_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695235608/ColorTouch-1323981977202_normal.jpeg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Girls Just wanna have fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:25 +0000", "from_user": "DarthVadon", "from_user_id": 88756274, "from_user_id_str": "88756274", "from_user_name": "Nat.", "geo": null, "id": 148839117667581950, "id_str": "148839117667581953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701273431/gf0L86h5_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701273431/gf0L86h5_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "It just hit me I haven't talked to him in ages. I've been too busy having fun. Guess I'll keep it that way too", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:25 +0000", "from_user": "welsh_ci", "from_user_id": 34536928, "from_user_id_str": "34536928", "from_user_name": "Welsh da God", "geo": null, "id": 148839117134901250, "id_str": "148839117134901248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691663227/331455805_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691663227/331455805_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @ayo0keishhh: Young && dumb was fun..but niggas gotta grow up one day", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:25 +0000", "from_user": "Heyiamvalentina", "from_user_id": 157730058, "from_user_id_str": "157730058", "from_user_name": "\\u221A A L E N T I N A \\u266C", "geo": null, "id": 148839115150995460, "id_str": "148839115150995457", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1658802258/IMSEXYANDKNOWIT__21__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658802258/IMSEXYANDKNOWIT__21__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @JASMINEVILLEGAS: @JASMINEVILLEGAS haha this is fun jasmine", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:24 +0000", "from_user": "futuristic225", "from_user_id": 249479037, "from_user_id_str": "249479037", "from_user_name": "D JAY_live!", "geo": +{"coordinates": [35.1168,-89.908], "type": "Point"}, "id": 148839115041947650, "id_str": "148839115041947649", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693836673/cp4CzX2G_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693836673/cp4CzX2G_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@MissLil_Booty yall had fun.last nite", "to_user": "MissLil_Booty", "to_user_id": 311685085, "to_user_id_str": "311685085", "to_user_name": "MissBreon(:", "in_reply_to_status_id": 148838905943306240, "in_reply_to_status_id_str": "148838905943306240"}, +{"created_at": "Mon, 19 Dec 2011 18:56:24 +0000", "from_user": "_iAmShelly", "from_user_id": 286387597, "from_user_id_str": "286387597", "from_user_name": "Shelly Btc", "geo": null, "id": 148839114605740030, "id_str": "148839114605740033", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1585809050/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585809050/profile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @_TinyCOLD: I love @_iAmShelly so much :) I miss her too we better have fun this weekend :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:24 +0000", "from_user": "kelseywilcox_", "from_user_id": 433873438, "from_user_id_str": "433873438", "from_user_name": "Kelsey Wilcox", "geo": null, "id": 148839113951416320, "id_str": "148839113951416320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701174441/b116273cca58b95a1f6280a91e2b94fa_large_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701174441/b116273cca58b95a1f6280a91e2b94fa_large_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@BryceParkers_ it left me this morning. trust me, life isn't always as fun as it seems.", "to_user": "BryceParkers_", "to_user_id": 440618511, "to_user_id_str": "440618511", "to_user_name": "Bryce Parkers", "in_reply_to_status_id": 148838842701590530, "in_reply_to_status_id_str": "148838842701590528"}, +{"created_at": "Mon, 19 Dec 2011 18:56:24 +0000", "from_user": "theovandaele", "from_user_id": 286635161, "from_user_id_str": "286635161", "from_user_name": "Theo van Daele", "geo": null, "id": 148839113909469200, "id_str": "148839113909469184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1455023814/wide001_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1455023814/wide001_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@nilerodgers Cleveland!!! Just kidding. What a month it was eh. I know, fun, but also, hard work.", "to_user": "nilerodgers", "to_user_id": 19997751, "to_user_id_str": "19997751", "to_user_name": "Nile Rodgers", "in_reply_to_status_id": 148831795872411650, "in_reply_to_status_id_str": "148831795872411648"}, +{"created_at": "Mon, 19 Dec 2011 18:56:24 +0000", "from_user": "Ess_screwdriver", "from_user_id": 227551985, "from_user_id_str": "227551985", "from_user_name": "Sergio sanchez", "geo": null, "id": 148839113125150720, "id_str": "148839113125150720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1288516548/photo108_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1288516548/photo108_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@awsomeaddy lmao ok if you fall I'll fall with you. And vice versa! It looks like fun haha yeah I'm down to go!", "to_user": "awsomeaddy", "to_user_id": 81210284, "to_user_id_str": "81210284", "to_user_name": "Addy Rose .", "in_reply_to_status_id": 148838805112225800, "in_reply_to_status_id_str": "148838805112225792"}, +{"created_at": "Mon, 19 Dec 2011 18:56:24 +0000", "from_user": "online_gsmegypt", "from_user_id": 330648835, "from_user_id_str": "330648835", "from_user_name": "online", "geo": null, "id": 148839112789590000, "id_str": "148839112789590016", "iso_language_code": "ar", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1429793359/254851_213650801999458_183109598386912_706633_4184070_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1429793359/254851_213650801999458_183109598386912_706633_4184070_n_normal.jpg", "source": "<a href="http://fun.ly" rel="nofollow">fun.ly</a>", "text": "\\u0639\\u0646\\u062F\\u0645\\u0627 \\u0646\\u062A\\u062D\\u062F\\u062B \\u0639\\u0646 \\u062D\\u0645\\u0635 \\u064A\\u0639\\u062C\\u0632 \\u0627\\u0644\\u0644\\u0633\\u0627\\u0646 \\u0639\\u0646 \\u0648\\u0635\\u0641 \\u0627\\u0644\\u062A\\u0636\\u062D\\u064A\\u0627\\u062A \\n\\u0643\\u0645\\u0627 \\u0627\\u0644\\u062D\\u0627\\u0644 \\u0641\\u064A \\u0643\\u0644 \\u0633\\u0648...http://fun.ly/198at", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:23 +0000", "from_user": "tylerrGANG", "from_user_id": 232363841, "from_user_id_str": "232363841", "from_user_name": "yall know my name.", "geo": null, "id": 148839110688251900, "id_str": "148839110688251904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687934655/profileImage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687934655/profileImage_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @ceeSPEAKS_stfu: .bad boys aint no good & good boys are no fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:23 +0000", "from_user": "Talk_HowMi_FeeL", "from_user_id": 53304730, "from_user_id_str": "53304730", "from_user_name": "MISTADON_FSS718", "geo": null, "id": 148839110113640450, "id_str": "148839110113640448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700700749/african-lions-nuzzling_10887_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700700749/african-lions-nuzzling_10887_600x450_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "U TOO HUN HV FUN IN BELIZE RT @sexicoolie Happy Holidays to mi lion dem @Talk_HowMi_FeeL and @tracey_xquizit c yall for new yrs *bbm hugs*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:23 +0000", "from_user": "onlinebiztools", "from_user_id": 440293535, "from_user_id_str": "440293535", "from_user_name": "Online Biz Tools", "geo": null, "id": 148839109895524350, "id_str": "148839109895524354", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700763044/images_normal.jpg", "profile_image_url_https": null, "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @HubSpot: Not as fun as tweeting, but important: 5 Noteworthy Examples of Corporate Social Media Policies - h... http://t.co/su2cjmzU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:23 +0000", "from_user": "theotherTAC", "from_user_id": 104029776, "from_user_id_str": "104029776", "from_user_name": "T", "geo": null, "id": 148839109782290430, "id_str": "148839109782290432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702154323/DSCF0417_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702154323/DSCF0417_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @Yokickz88: Who am I kidding I NEVER CARED! it was a fun #game lmfao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:23 +0000", "from_user": "kanleighmirz", "from_user_id": 144946587, "from_user_id_str": "144946587", "from_user_name": "KMirz", "geo": +{"coordinates": [29.9785,-95.5095], "type": "Point"}, "id": 148839109308325900, "id_str": "148839109308325888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694585765/IMG_03066_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694585765/IMG_03066_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Taking a shower while starving is not fun..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:23 +0000", "from_user": "MandiLorissa", "from_user_id": 347502409, "from_user_id_str": "347502409", "from_user_name": "Mandi Jaime", "geo": null, "id": 148839108515610620, "id_str": "148839108515610624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1682325215/hyk6A7Qx_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682325215/hyk6A7Qx_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@AmiCherii lol I know! I love it! They look like they are having fun lol", "to_user": "AmiCherii", "to_user_id": 220928436, "to_user_id_str": "220928436", "to_user_name": "Ami Morris", "in_reply_to_status_id": 148838491961298940, "in_reply_to_status_id_str": "148838491961298944"}, +{"created_at": "Mon, 19 Dec 2011 18:56:23 +0000", "from_user": "Ane1k", "from_user_id": 219007454, "from_user_id_str": "219007454", "from_user_name": "Ane\\u25CF", "geo": null, "id": 148839107206975500, "id_str": "148839107206975488", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700560884/Snapshot_20111215_12_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700560884/Snapshot_20111215_12_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@boramkis_ aha!~tumblr .. is it fun?", "to_user": "boramkis_", "to_user_id": 65323125, "to_user_id_str": "65323125", "to_user_name": "; Orison", "in_reply_to_status_id": 148837203416588300, "in_reply_to_status_id_str": "148837203416588289"}, +{"created_at": "Mon, 19 Dec 2011 18:56:22 +0000", "from_user": "AWElearning", "from_user_id": 140427141, "from_user_id_str": "140427141", "from_user_name": "AWE", "geo": null, "id": 148839106292617200, "id_str": "148839106292617217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1476543100/AWE-Library_3-26-2011_60_4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1476543100/AWE-Library_3-26-2011_60_4_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "\"Personal finance experts always say #earlyed is crucial for money management success later in life...\" http://t.co/kFe6Lvuc via @TheStreet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:22 +0000", "from_user": "sonyamoonz", "from_user_id": 231854214, "from_user_id_str": "231854214", "from_user_name": "Sonya E-licious", "geo": null, "id": 148839105571209200, "id_str": "148839105571209217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1671739053/846EA8D0-8FB3-49CC-9367-370D4B98917F_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671739053/846EA8D0-8FB3-49CC-9367-370D4B98917F_normal", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @ImHopel3ss: I just blocked 1 of my real life friends on here and reported them for spam, that was fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:22 +0000", "from_user": "xiroxoneradio2", "from_user_id": 328429092, "from_user_id_str": "328429092", "from_user_name": "USA, Formula1 & Fun ", "geo": null, "id": 148839105487314940, "id_str": "148839105487314944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1429986037/flag_USA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1429986037/flag_USA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Panel discussion on Changes, Challenges, and the Sustainability of Formula One Racing. Friendly, fun, informative. To join us reply or DM.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:22 +0000", "from_user": "SFCHarris_1", "from_user_id": 239456649, "from_user_id_str": "239456649", "from_user_name": "James Harris", "geo": null, "id": 148839104963031040, "id_str": "148839104963031040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1496692807/268408_2118791017048_1463943720_2319082_5868413_n_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1496692807/268408_2118791017048_1463943720_2319082_5868413_n_1__normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "He found a six -shooter gun in his dad's closet in the box of fun things, I don't even know what. but he's coming for you (8)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:22 +0000", "from_user": "CalluMacgregor", "from_user_id": 101858543, "from_user_id_str": "101858543", "from_user_name": "Callum Macgregor", "geo": null, "id": 148839104388399100, "id_str": "148839104388399104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1511839462/Photo_on_2011-04-20_at_14.50_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1511839462/Photo_on_2011-04-20_at_14.50_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@HeyItsRowan Oh fun times...", "to_user": "HeyItsRowan", "to_user_id": 308060448, "to_user_id_str": "308060448", "to_user_name": "Rowan Phelps", "in_reply_to_status_id": 148838594788868100, "in_reply_to_status_id_str": "148838594788868097"}, +{"created_at": "Mon, 19 Dec 2011 18:56:22 +0000", "from_user": "Carl_808", "from_user_id": 303892751, "from_user_id_str": "303892751", "from_user_name": "Carl Tu'itavuki", "geo": null, "id": 148839104208056320, "id_str": "148839104208056323", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1676493459/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676493459/image_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "7117837 is my friends lunch number. Everyone have fun and go get sum food :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:22 +0000", "from_user": "DeemaJSaidi", "from_user_id": 23218251, "from_user_id_str": "23218251", "from_user_name": "Deema J. Al Saidi", "geo": +{"coordinates": [33.8953,35.4835], "type": "Point"}, "id": 148839102756818940, "id_str": "148839102756818944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702476445/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702476445/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I love mysel fcause I swear their life ain't as much as fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:22 +0000", "from_user": "nongling", "from_user_id": 23278552, "from_user_id_str": "23278552", "from_user_name": "Nong Sakura Watanabe", "geo": null, "id": 148839102538723330, "id_str": "148839102538723328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690550173/n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690550173/n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@iarumis You are such a clever chap! cc:@simurai p.s.I've been having too much fun with Kinect. hahahahahaha! BoomBoomPow ;D", "to_user": "iarumis", "to_user_id": 369466737, "to_user_id_str": "369466737", "to_user_name": "iarumis", "in_reply_to_status_id": 148797147268124670, "in_reply_to_status_id_str": "148797147268124672"}, +{"created_at": "Mon, 19 Dec 2011 18:56:21 +0000", "from_user": "sly_killz", "from_user_id": 124926338, "from_user_id_str": "124926338", "from_user_name": "odu sylvester", "geo": null, "id": 148839101028761600, "id_str": "148839101028761601", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1677712994/IMG00298-20111206-1000_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677712994/IMG00298-20111206-1000_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @seunwills: So wt if we smoke weed,we jst having fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:21 +0000", "from_user": "AWetTurtleHead", "from_user_id": 20089576, "from_user_id_str": "20089576", "from_user_name": "AWetTurtleHead", "geo": null, "id": 148839100982632450, "id_str": "148839100982632448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1616151846/avatarpic-l_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616151846/avatarpic-l_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Glad i made the decision to buy Joe danger after being a bit hesitant about it, great fun :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:21 +0000", "from_user": "_dearMakia", "from_user_id": 221203117, "from_user_id_str": "221203117", "from_user_name": "Makia Mone't", "geo": null, "id": 148839100726775800, "id_str": "148839100726775809", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689525536/Snapshot_20111107_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689525536/Snapshot_20111107_3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @AsToldByDesmoe: I had fun yesterday with @SINcerelyKeo_ @_dearMakia @KeepingUpWithLB and @1800_Tellit2Tia. :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:21 +0000", "from_user": "AyeLovely_Ash21", "from_user_id": 63911410, "from_user_id_str": "63911410", "from_user_name": "Ash_\\u266A \\u266B \\u2669 \\u266CFYM..duh", "geo": null, "id": 148839099845967870, "id_str": "148839099845967873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700638782/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700638782/profile_normal.jpg", "source": "<a href="http://www.handmark.com" rel="nofollow">TweetCaster for WP7</a>", "text": "@aye_SCARJAY lmfaooo.. My hoeeee !!! We was on all of that!! We've been knowing each other for 2yrs.. That's ish crayyyy ! Lololol fun times", "to_user": "aye_SCARJAY", "to_user_id": 125842315, "to_user_id_str": "125842315", "to_user_name": "Boss Scarlett Jean.", "in_reply_to_status_id": 148838149722877950, "in_reply_to_status_id_str": "148838149722877952"}, +{"created_at": "Mon, 19 Dec 2011 18:56:20 +0000", "from_user": "ShaQuitaJana", "from_user_id": 93772531, "from_user_id_str": "93772531", "from_user_name": "ShaQuita", "geo": null, "id": 148839097945956350, "id_str": "148839097945956352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1677502555/avatar_normal.JPEG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677502555/avatar_normal.JPEG", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Hmmm...Wednesday is gonna be fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:19 +0000", "from_user": "chris_arian13", "from_user_id": 381877606, "from_user_id_str": "381877606", "from_user_name": "Chris Arian", "geo": null, "id": 148839093575483400, "id_str": "148839093575483392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1564740172/chris_swag_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1564740172/chris_swag_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Steven_Amoroso7 have fun in health buddy", "to_user": "Steven_Amoroso7", "to_user_id": 292676189, "to_user_id_str": "292676189", "to_user_name": "Steven Amoroso", "in_reply_to_status_id": 148832884449476600, "in_reply_to_status_id_str": "148832884449476609"}, +{"created_at": "Mon, 19 Dec 2011 18:56:19 +0000", "from_user": "GoDJBishopp", "from_user_id": 131052874, "from_user_id_str": "131052874", "from_user_name": "G\\u0398 DJ \\u03B2ISH\\u0398PP", "geo": null, "id": 148839093378363400, "id_str": "148839093378363392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680478805/330198572_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680478805/330198572_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SerafiaRae: BLAH #MansionParty on 4404 Allison Road Dec23 <-- go! 2 Live DJs Safe and will be FUN AF AGAIN!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:19 +0000", "from_user": "FUKCYOFEELINGS", "from_user_id": 382224241, "from_user_id_str": "382224241", "from_user_name": "ShaynaMarie", "geo": null, "id": 148839090261991420, "id_str": "148839090261991424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1676476477/330983363_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676476477/330983363_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @HighAssTee: High School Basketball was fun af", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:18 +0000", "from_user": "GroteKarst", "from_user_id": 378809624, "from_user_id_str": "378809624", "from_user_name": "Carlo Hankel", "geo": null, "id": 148839089934831600, "id_str": "148839089934831616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1557435763/DSC_8135__Kopie_2__1024x768__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1557435763/DSC_8135__Kopie_2__1024x768__normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "@hilliekrist leuke film, have fun! #hortonhearsawho", "to_user": "hilliekrist", "to_user_id": 132997002, "to_user_id_str": "132997002", "to_user_name": "Hillie Krist", "in_reply_to_status_id": 148837951281963000, "in_reply_to_status_id_str": "148837951281963008"}, +{"created_at": "Mon, 19 Dec 2011 18:56:18 +0000", "from_user": "MchelleMc", "from_user_id": 87396035, "from_user_id_str": "87396035", "from_user_name": "Michelle Lim \\u2665", "geo": null, "id": 148839089737703420, "id_str": "148839089737703424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1646104006/IMG05628-20111113-1228_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646104006/IMG05628-20111113-1228_normal.jpg", "source": "<a href="http://twuffer.com" rel="nofollow">Twuffer</a>", "text": "RT @EpicTweets_: Wishing your pets could talk is fun until you remember everything you've ever done in front of your pets.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:18 +0000", "from_user": "wjb13", "from_user_id": 23883459, "from_user_id_str": "23883459", "from_user_name": "Jonathan Belcher", "geo": null, "id": 148839089347629060, "id_str": "148839089347629057", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1605424145/6278134510_fefa202fa1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1605424145/6278134510_fefa202fa1_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Sean_Braisted: Its so sad that Gingrich is cratering in Iowa, stuff like this would've been so much fun in the general. http://t.co/z96D288X #WarOnJudges", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:18 +0000", "from_user": "_BeLlaDoNna__", "from_user_id": 300388527, "from_user_id_str": "300388527", "from_user_name": "Emere Aisha Hill", "geo": null, "id": 148839087640547330, "id_str": "148839087640547328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677991722/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677991722/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "My weekend involved alot of fun with @Kall_ME_IVY @Yolanda_Norman and others..... Besides the bacteria that invaded my eyes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:18 +0000", "from_user": "Ms_Imani", "from_user_id": 39034699, "from_user_id_str": "39034699", "from_user_name": "\\uE32EImani Keyann\\uE32E", "geo": null, "id": 148839087476969470, "id_str": "148839087476969472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688061336/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688061336/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Heading to the city. This should be fun -_-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:18 +0000", "from_user": "TreonTHEBEAST", "from_user_id": 52856397, "from_user_id_str": "52856397", "from_user_name": "te'no mas :* ", "geo": null, "id": 148839087313391600, "id_str": "148839087313391616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699574238/2010-04-07_20-35-46.168_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699574238/2010-04-07_20-35-46.168_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "my oldtimes was fun but now I'm good", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:18 +0000", "from_user": "TwEATmy_Tweets", "from_user_id": 339022188, "from_user_id_str": "339022188", "from_user_name": "Kira 'Shari", "geo": null, "id": 148839087007203330, "id_str": "148839087007203328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691447218/PhotoChooser-5c5d349f-bc71-428a-b134-c4a95a035509_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691447218/PhotoChooser-5c5d349f-bc71-428a-b134-c4a95a035509_normal.jpg", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "Whats A Life With No Fun ?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:18 +0000", "from_user": "SS_Dal", "from_user_id": 228432756, "from_user_id_str": "228432756", "from_user_name": "SS Dal", "geo": null, "id": 148839086466150400, "id_str": "148839086466150401", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1620589072/rohan_arora_boots_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620589072/rohan_arora_boots_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@DrPaulNassif Fun prize giveaway. Retweet & Follow me for a chance to a win a Fenix Skincare Gift Pack! Winner chosen when I get to 50k!", "to_user": "DrPaulNassif", "to_user_id": 46875439, "to_user_id_str": "46875439", "to_user_name": "Paul Nassif, MD"}, +{"created_at": "Mon, 19 Dec 2011 18:56:17 +0000", "from_user": "TheArctic_Mel", "from_user_id": 231615399, "from_user_id_str": "231615399", "from_user_name": "Freddy Krueger", "geo": null, "id": 148839084687769600, "id_str": "148839084687769600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1678343157/mel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678343157/mel_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "My sister made fun of my dimple....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:17 +0000", "from_user": "AllyRiri", "from_user_id": 113137560, "from_user_id_str": "113137560", "from_user_name": "Alero Arafiena ", "geo": null, "id": 148839083467214850, "id_str": "148839083467214848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700928794/Ikeja-20111218-02062_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700928794/Ikeja-20111218-02062_normal.jpg", "source": "<a href="http://www.towerheist.net/" rel="nofollow">Tower Heist Takeover, BlackBerry</a>", "text": "LoL.. Thanks muchhh for 2day.. Had awesome fun..muah your welcome :)RT @RickNwanso: Yaaay!!! I'm feeling like ... http://t.co/ROqyymVP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:17 +0000", "from_user": "JayMeelz", "from_user_id": 42532421, "from_user_id_str": "42532421", "from_user_name": "DADDY", "geo": null, "id": 148839082909368320, "id_str": "148839082909368320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695405536/383143_2204848211115_1544674793_31626318_1765293992_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695405536/383143_2204848211115_1544674793_31626318_1765293992_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@COCAINEJAYNE I had fun too", "to_user": "COCAINEJAYNE", "to_user_id": 30280577, "to_user_id_str": "30280577", "to_user_name": "Amanda Jayne Jackson", "in_reply_to_status_id": 148838009041719300, "in_reply_to_status_id_str": "148838009041719296"}, +{"created_at": "Mon, 19 Dec 2011 18:56:17 +0000", "from_user": "kim_bah_lee14", "from_user_id": 211393252, "from_user_id_str": "211393252", "from_user_name": "KimberlyAnn Cantu", "geo": null, "id": 148839082791931900, "id_str": "148839082791931905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1561994543/Photo_on_9-20-11_at_4.30_PM__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1561994543/Photo_on_9-20-11_at_4.30_PM__2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@HomeroSolis10 hahah naw. you won't. everyones really friendly and welcoming :D you'll have fun. i'm glad you're going.(:", "to_user": "HomeroSolis10", "to_user_id": 307684086, "to_user_id_str": "307684086", "to_user_name": "homer.homer.homer", "in_reply_to_status_id": 148838793280102400, "in_reply_to_status_id_str": "148838793280102401"}, +{"created_at": "Mon, 19 Dec 2011 18:56:17 +0000", "from_user": "CaliSwaggGurl", "from_user_id": 33927610, "from_user_id_str": "33927610", "from_user_name": "Khadijah", "geo": null, "id": 148839082125041660, "id_str": "148839082125041665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1663780947/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663780947/image_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@TheChristelle_S Fashooo sis!and have fun ice skating today!(:", "to_user": "TheChristelle_S", "to_user_id": 354938143, "to_user_id_str": "354938143", "to_user_name": "Christelle Sylvain \\u2713", "in_reply_to_status_id": 148828463921512450, "in_reply_to_status_id_str": "148828463921512448"}, +{"created_at": "Mon, 19 Dec 2011 18:56:16 +0000", "from_user": "Lifewidd_Redd", "from_user_id": 367805481, "from_user_id_str": "367805481", "from_user_name": "Jan 3, -\\u2665!", "geo": null, "id": 148839081344897020, "id_str": "148839081344897024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696308851/SchoolGirl___normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696308851/SchoolGirl___normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "It Be Fun , Over Theaa Widd Poke Nem , Urghh . She blew me man .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:16 +0000", "from_user": "kevinwayneyoung", "from_user_id": 438489230, "from_user_id_str": "438489230", "from_user_name": "Kevin W Young", "geo": null, "id": 148839080967409660, "id_str": "148839080967409664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": null, "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "I think \"Holy Snazzberries\" would be a fun catchphrase.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:16 +0000", "from_user": "iLoVeMeSoMeMoNi", "from_user_id": 111986427, "from_user_id_str": "111986427", "from_user_name": "Monica Rowland", "geo": null, "id": 148839080602505200, "id_str": "148839080602505218", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1477220941/monicaaa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1477220941/monicaaa_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @WizKhalllifa: #IWasThatKid that covered my hands in glue , let it dry , and then peeled it off for fun...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:16 +0000", "from_user": "AmBITCHion", "from_user_id": 347425847, "from_user_id_str": "347425847", "from_user_name": ".FearLESS.", "geo": null, "id": 148839078446641150, "id_str": "148839078446641153", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702537436/I_Am_FearLESS_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702537436/I_Am_FearLESS_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Had fun with daddy... And now Im bored all over again.. My phone dead as hell... #TeamNoLove", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:16 +0000", "from_user": "BAILEYepperson", "from_user_id": 294747951, "from_user_id_str": "294747951", "from_user_name": "bailey \\u262E", "geo": null, "id": 148839078383726600, "id_str": "148839078383726592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1684958778/DSCI0050__478x640__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684958778/DSCI0050__478x640__normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @MODSUN: Dude, my life is so fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:15 +0000", "from_user": "1337Pikachu", "from_user_id": 279888029, "from_user_id_str": "279888029", "from_user_name": "stephen", "geo": null, "id": 148839077351931900, "id_str": "148839077351931906", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1306467384/ap1Prh56_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1306467384/ap1Prh56_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@PonyPMS :) its gravy I had fun u cant get better by playing people less skilled u get better by playing more skilled people", "to_user": "PonyPMS", "to_user_id": 269814612, "to_user_id_str": "269814612", "to_user_name": "Heather", "in_reply_to_status_id": 148837189520855040, "in_reply_to_status_id_str": "148837189520855042"}, +{"created_at": "Mon, 19 Dec 2011 18:56:15 +0000", "from_user": "loveexSlim", "from_user_id": 380011807, "from_user_id_str": "380011807", "from_user_name": "Shanice Witts", "geo": null, "id": 148839077221896200, "id_str": "148839077221896192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695909434/331554546_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695909434/331554546_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Uh yes she is! You don't run nothing around here! We gone have fun! RT @RealSoreLoser: @loveexSlim Ki ain't going", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:15 +0000", "from_user": "Gemma007xx", "from_user_id": 89480333, "from_user_id_str": "89480333", "from_user_name": "Gemma ", "geo": null, "id": 148839075602903040, "id_str": "148839075602903041", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1213034892/me_L_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1213034892/me_L_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "@WeRTheBrits i went there in year 9 it was beautiful :) aha okay,speak to soon have fun :) xx", "to_user": "WeRTheBrits", "to_user_id": 344101889, "to_user_id_str": "344101889", "to_user_name": "We Are The Brits"}, +{"created_at": "Mon, 19 Dec 2011 18:56:15 +0000", "from_user": "TaylorAHumphrey", "from_user_id": 425471565, "from_user_id_str": "425471565", "from_user_name": "Taylor A. Humphrey ", "geo": null, "id": 148839073249898500, "id_str": "148839073249898497", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1667037403/9035_1205195763848_1047240178_30899226_2155878_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667037403/9035_1205195763848_1047240178_30899226_2155878_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"The road is long, we carry on...Try to have fun in the meantime\" #borntodie @LanaDelReyDaily", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:14 +0000", "from_user": "WinObs", "from_user_id": 15434432, "from_user_id_str": "15434432", "from_user_name": "Richard Hay", "geo": null, "id": 148839072771739650, "id_str": "148839072771739650", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1628961587/Three_Months_After_Retirement_-_Twitter_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628961587/Three_Months_After_Retirement_-_Twitter_normal.JPG", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Buzzwords bringing word-finding fun and lots of honey to Windows Phone http://t.co/CK2tSu9H", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:14 +0000", "from_user": "josephakol", "from_user_id": 73845815, "from_user_id_str": "73845815", "from_user_name": "Jigs Akol", "geo": null, "id": 148839072713027600, "id_str": "148839072713027584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694263065/josephakol_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694263065/josephakol_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Thank you for the night teammates! Hopefully not my last Christmas party with the team! Fun @_lancelim @iamnikko09 @timouy @MigiArce", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:14 +0000", "from_user": "BeverlyKlein", "from_user_id": 105347758, "from_user_id_str": "105347758", "from_user_name": "Bev ", "geo": null, "id": 148839072339734530, "id_str": "148839072339734528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1631555768/BeverlyKlein_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631555768/BeverlyKlein_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@kelsea_beth so jealous! have fun!", "to_user": "kelsea_beth", "to_user_id": 271543280, "to_user_id_str": "271543280", "to_user_name": "Kelsea", "in_reply_to_status_id": 148834770367942660, "in_reply_to_status_id_str": "148834770367942656"}, +{"created_at": "Mon, 19 Dec 2011 18:56:14 +0000", "from_user": "DorindaTS", "from_user_id": 298625059, "from_user_id_str": "298625059", "from_user_name": "Dorinda T. Stallings", "geo": null, "id": 148839072276819970, "id_str": "148839072276819969", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1353422479/295707483_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1353422479/295707483_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@Meika78 @ArdentBee honey we had too much fun that night.", "to_user": "Meika78", "to_user_id": 30450323, "to_user_id_str": "30450323", "to_user_name": "The Chosen One", "in_reply_to_status_id": 148834504344211460, "in_reply_to_status_id_str": "148834504344211456"}, +{"created_at": "Mon, 19 Dec 2011 18:56:14 +0000", "from_user": "THEREAL_Kris", "from_user_id": 426261544, "from_user_id_str": "426261544", "from_user_name": "Kristen Mays", "geo": null, "id": 148839072205508600, "id_str": "148839072205508608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688382458/3dPM6jku_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688382458/3dPM6jku_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@BeautyNBlonde_: Subtweet shxt, mention me!\"..STFU and text them tenders lol did u have fun the other day??", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:14 +0000", "from_user": "dhxoxo", "from_user_id": 254468276, "from_user_id_str": "254468276", "from_user_name": "\\u2764delllllllll dukuu.", "geo": null, "id": 148839072046137340, "id_str": "148839072046137344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691209759/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691209759/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MelisaDuku: Starbucks time. Have fun all of you at Dappys London show", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:14 +0000", "from_user": "Tana_ThaCreator", "from_user_id": 196749070, "from_user_id_str": "196749070", "from_user_name": "(\\u22A5)ana(M)an(O)r(D)ie", "geo": null, "id": 148839071786082300, "id_str": "148839071786082305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1657965414/taanaman_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657965414/taanaman_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @Kaay_ThaCreator: @Tana_ThaCreator ion give ah fxck im having fun with my 28 followers nd rachelle ca eat my jumbo sausage", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:14 +0000", "from_user": "Yakubu_24", "from_user_id": 427695041, "from_user_id_str": "427695041", "from_user_name": "Yakubu Aiyegbeni", "geo": null, "id": 148839070796218370, "id_str": "148839070796218368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1672055156/yakk_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672055156/yakk_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "We've all heard the jokes that us Nigerians don't know our ages. Its all fun and games unless your the U21's manager. Then its a nightmare.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:14 +0000", "from_user": "IAm_Me253", "from_user_id": 74201328, "from_user_id_str": "74201328", "from_user_name": "Sydnee ", "geo": null, "id": 148839069785403400, "id_str": "148839069785403392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693908207/T06exPfM_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693908207/T06exPfM_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Had fun last night! Haven't had fun like that in a long time!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:13 +0000", "from_user": "DoraDaExploraa_", "from_user_id": 246292153, "from_user_id_str": "246292153", "from_user_name": "Andreaa(:", "geo": null, "id": 148839068514517000, "id_str": "148839068514516992", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698944598/CHr847hR_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698944598/CHr847hR_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "christmas eve is gonna be soo fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:13 +0000", "from_user": "Peytonk18", "from_user_id": 333932998, "from_user_id_str": "333932998", "from_user_name": "Peyton Kelley", "geo": null, "id": 148839068321579000, "id_str": "148839068321579008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1446326405/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1446326405/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@crystalhndz hell yeah that sounds fun!!:D Let me know when it is and how much.", "to_user": "crystalhndz", "to_user_id": 343199906, "to_user_id_str": "343199906", "to_user_name": "Crystal Hernandez", "in_reply_to_status_id": 148640184857149440, "in_reply_to_status_id_str": "148640184857149440"}, +{"created_at": "Mon, 19 Dec 2011 18:56:13 +0000", "from_user": "HeelsOnHigh", "from_user_id": 92110556, "from_user_id_str": "92110556", "from_user_name": "Simply Tyra....", "geo": null, "id": 148839065297502200, "id_str": "148839065297502208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697782576/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697782576/image_normal.jpg", "source": "<a href="http://www.tweetings.net/" rel="nofollow">Tweetings for iPhone</a>", "text": "@MzSassy_J Lmao! That takes the fun out of it! **Hmph**", "to_user": "MzSassy_J", "to_user_id": 20827693, "to_user_id_str": "20827693", "to_user_name": "Lovely Lady", "in_reply_to_status_id": 148838348256055300, "in_reply_to_status_id_str": "148838348256055297"}, +{"created_at": "Mon, 19 Dec 2011 18:56:13 +0000", "from_user": "amanda_nash25", "from_user_id": 263901788, "from_user_id_str": "263901788", "from_user_name": "Amanda Nash", "geo": null, "id": 148839065268142080, "id_str": "148839065268142080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1666976238/FqGbb23Q_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666976238/FqGbb23Q_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "It would be kinda fun to work at a pawn shop #pawnstars", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:12 +0000", "from_user": "ys_boardgames", "from_user_id": 179252666, "from_user_id_str": "179252666", "from_user_name": "Yardsellr Board Game", "geo": null, "id": 148839064165023740, "id_str": "148839064165023744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1104489828/logo-304x304_bigger_bigger_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1104489828/logo-304x304_bigger_bigger_normal.png", "source": "<a href="http://yardsellr.com" rel="nofollow">Yardsellr</a>", "text": "DORA CANDYLAND BOARD GAME.GREAT FUN PLAY EITHER DORA DIEGO BACKPACK AND BOOTS http://t.co/WNFrHo3N", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:12 +0000", "from_user": "LexsSee", "from_user_id": 311283661, "from_user_id_str": "311283661", "from_user_name": "Lexie Stimmell", "geo": null, "id": 148839062063681540, "id_str": "148839062063681537", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698610173/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698610173/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Let go,Have fun,Give in to Curiosity", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:12 +0000", "from_user": "eCatalin", "from_user_id": 27740026, "from_user_id_str": "27740026", "from_user_name": "d.c", "geo": null, "id": 148839061975605250, "id_str": "148839061975605248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1288302990/The_Best_-_Copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1288302990/The_Best_-_Copy_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Photo: eCatalin.ro - fun. just fun. http://t.co/yMgoDzma", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:11 +0000", "from_user": "1DOffice", "from_user_id": 368991397, "from_user_id_str": "368991397", "from_user_name": "\\u2654", "geo": null, "id": 148839060478234620, "id_str": "148839060478234624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1637100336/doffice_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637100336/doffice_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@HuggingLouis it wasn't as fun or interesting this year :( x", "to_user": "HuggingLouis", "to_user_id": 399672193, "to_user_id_str": "399672193", "to_user_name": "Bitches be crazy. ", "in_reply_to_status_id": 148838175203266560, "in_reply_to_status_id_str": "148838175203266562"}, +{"created_at": "Mon, 19 Dec 2011 18:56:11 +0000", "from_user": "iDream__Big", "from_user_id": 62935282, "from_user_id_str": "62935282", "from_user_name": "James Ramseur", "geo": null, "id": 148839059895238660, "id_str": "148839059895238656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702078937/d_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702078937/d_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MissAdeeBaby: While on this Christmas Break I would love for all my classmates to get together and do something fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:11 +0000", "from_user": "xkellykins", "from_user_id": 72155541, "from_user_id_str": "72155541", "from_user_name": "Kelly Nguyen.\\u2122", "geo": null, "id": 148839059660357630, "id_str": "148839059660357635", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701697828/__20_20_20_20Kellynguyen_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701697828/__20_20_20_20Kellynguyen_3_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @Klopez_28: @xkellykins she havin fun though!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:11 +0000", "from_user": "FadyShounia", "from_user_id": 291914208, "from_user_id_str": "291914208", "from_user_name": "Fady Shounia", "geo": null, "id": 148839057458343940, "id_str": "148839057458343936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1619452723/wolverine1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619452723/wolverine1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@RonzaDawood you are fun to mess with thats all :)", "to_user": "RonzaDawood", "to_user_id": 177007098, "to_user_id_str": "177007098", "to_user_name": "RonzaDawood", "in_reply_to_status_id": 148838633762328580, "in_reply_to_status_id_str": "148838633762328577"}, +{"created_at": "Mon, 19 Dec 2011 18:56:11 +0000", "from_user": "C0ryRyan", "from_user_id": 340113860, "from_user_id_str": "340113860", "from_user_name": "Cory Ryan", "geo": null, "id": 148839056950837250, "id_str": "148839056950837248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1482809027/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1482809027/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@jweikel29 @mylohimself. @Adam_paul_goff. What a fun game u all have been playing lmao", "to_user": "jweikel29", "to_user_id": 180256530, "to_user_id_str": "180256530", "to_user_name": "Josh Weikel"}, +{"created_at": "Mon, 19 Dec 2011 18:56:11 +0000", "from_user": "DaveThePedo", "from_user_id": 235413843, "from_user_id_str": "235413843", "from_user_name": "David Cronin", "geo": null, "id": 148839056392990720, "id_str": "148839056392990720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682057643/tweak_d_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682057643/tweak_d_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "You call this shit rape but I think rapes fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:10 +0000", "from_user": "Cherellewvl", "from_user_id": 440151989, "from_user_id_str": "440151989", "from_user_name": "Cherelle Volpicelli", "geo": null, "id": 148839056309096450, "id_str": "148839056309096448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700430626/large_DSC_0955_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700430626/large_DSC_0955_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Brown Tropical Floral Patterned Fun Looking Fedora: The tropics can't be far away when wearing this fun looking ... http://t.co/G2t1pP0L", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:10 +0000", "from_user": "MissChanelSweet", "from_user_id": 420842968, "from_user_id_str": "420842968", "from_user_name": "Chanel sweets ", "geo": null, "id": 148839054845284350, "id_str": "148839054845284352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694014773/img_1212bw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694014773/img_1212bw_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @hipsterproblems: Fun: Talk about a fake band and watch your friends pretend they know them. #hipsterproblems", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:56:11 +0000", "from_user": "1DOffice", "from_user_id": 368991397, "from_user_id_str": "368991397", "from_user_name": "\\u2654", "geo": null, "id": 148839060478234620, "id_str": "148839060478234624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1637100336/doffice_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637100336/doffice_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@HuggingLouis it wasn't as fun or interesting this year :( x", "to_user": "HuggingLouis", "to_user_id": 399672193, "to_user_id_str": "399672193", "to_user_name": "Bitches be crazy. ", "in_reply_to_status_id": 148838175203266560, "in_reply_to_status_id_str": "148838175203266562"}, +{"created_at": "Mon, 19 Dec 2011 18:56:11 +0000", "from_user": "iDream__Big", "from_user_id": 62935282, "from_user_id_str": "62935282", "from_user_name": "James Ramseur", "geo": null, "id": 148839059895238660, "id_str": "148839059895238656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702078937/d_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702078937/d_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MissAdeeBaby: While on this Christmas Break I would love for all my classmates to get together and do something fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:11 +0000", "from_user": "xkellykins", "from_user_id": 72155541, "from_user_id_str": "72155541", "from_user_name": "Kelly Nguyen.\\u2122", "geo": null, "id": 148839059660357630, "id_str": "148839059660357635", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701697828/__20_20_20_20Kellynguyen_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701697828/__20_20_20_20Kellynguyen_3_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @Klopez_28: @xkellykins she havin fun though!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:11 +0000", "from_user": "FadyShounia", "from_user_id": 291914208, "from_user_id_str": "291914208", "from_user_name": "Fady Shounia", "geo": null, "id": 148839057458343940, "id_str": "148839057458343936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1619452723/wolverine1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619452723/wolverine1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@RonzaDawood you are fun to mess with thats all :)", "to_user": "RonzaDawood", "to_user_id": 177007098, "to_user_id_str": "177007098", "to_user_name": "RonzaDawood", "in_reply_to_status_id": 148838633762328580, "in_reply_to_status_id_str": "148838633762328577"}, +{"created_at": "Mon, 19 Dec 2011 18:56:11 +0000", "from_user": "C0ryRyan", "from_user_id": 340113860, "from_user_id_str": "340113860", "from_user_name": "Cory Ryan", "geo": null, "id": 148839056950837250, "id_str": "148839056950837248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1482809027/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1482809027/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@jweikel29 @mylohimself. @Adam_paul_goff. What a fun game u all have been playing lmao", "to_user": "jweikel29", "to_user_id": 180256530, "to_user_id_str": "180256530", "to_user_name": "Josh Weikel"}, +{"created_at": "Mon, 19 Dec 2011 18:56:11 +0000", "from_user": "DaveThePedo", "from_user_id": 235413843, "from_user_id_str": "235413843", "from_user_name": "David Cronin", "geo": null, "id": 148839056392990720, "id_str": "148839056392990720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682057643/tweak_d_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682057643/tweak_d_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "You call this shit rape but I think rapes fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:10 +0000", "from_user": "Cherellewvl", "from_user_id": 440151989, "from_user_id_str": "440151989", "from_user_name": "Cherelle Volpicelli", "geo": null, "id": 148839056309096450, "id_str": "148839056309096448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700430626/large_DSC_0955_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700430626/large_DSC_0955_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Brown Tropical Floral Patterned Fun Looking Fedora: The tropics can't be far away when wearing this fun looking ... http://t.co/G2t1pP0L", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:10 +0000", "from_user": "MissChanelSweet", "from_user_id": 420842968, "from_user_id_str": "420842968", "from_user_name": "Chanel sweets ", "geo": null, "id": 148839054845284350, "id_str": "148839054845284352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694014773/img_1212bw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694014773/img_1212bw_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @hipsterproblems: Fun: Talk about a fake band and watch your friends pretend they know them. #hipsterproblems", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:10 +0000", "from_user": "alexhandley12", "from_user_id": 264031660, "from_user_id_str": "264031660", "from_user_name": "Alex Handley", "geo": null, "id": 148839054790758400, "id_str": "148839054790758400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1625898861/aagJ1sQR_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1625898861/aagJ1sQR_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Last night was fun but dang I'm tired! @_blackbearrr @CatherineJPenn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:10 +0000", "from_user": "_CrimsonRegret_", "from_user_id": 31359710, "from_user_id_str": "31359710", "from_user_name": "Crimson Regret", "geo": null, "id": 148839053196922880, "id_str": "148839053196922880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1608750617/white3-6-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608750617/white3-6-2_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "@casness fun times!", "to_user": "casness", "to_user_id": 256636558, "to_user_id_str": "256636558", "to_user_name": "yaro", "in_reply_to_status_id": 148836630894092300, "in_reply_to_status_id_str": "148836630894092289"}, +{"created_at": "Mon, 19 Dec 2011 18:56:09 +0000", "from_user": "___DeeNicole", "from_user_id": 22114937, "from_user_id_str": "22114937", "from_user_name": "DeniseNicole", "geo": null, "id": 148839050940399600, "id_str": "148839050940399616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697375353/photo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697375353/photo_normal.JPG", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@808snShxt put the fun in fundraising", "to_user": "808snShxt", "to_user_id": 237441989, "to_user_id_str": "237441989", "to_user_name": "Parker", "in_reply_to_status_id": 148838463540695040, "in_reply_to_status_id_str": "148838463540695042"}, +{"created_at": "Mon, 19 Dec 2011 18:56:09 +0000", "from_user": "MissPryor", "from_user_id": 39421796, "from_user_id_str": "39421796", "from_user_name": "Charlotte Pryor", "geo": null, "id": 148839050743259140, "id_str": "148839050743259137", "iso_language_code": "is", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/287298910/blackberry_029_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/287298910/blackberry_029_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Fun,Fun,Fun....... http://t.co/VEBD9R0A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:09 +0000", "from_user": "kickboxfitness", "from_user_id": 18579679, "from_user_id_str": "18579679", "from_user_name": "kickboxfitness", "geo": null, "id": 148839050646790140, "id_str": "148839050646790144", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/217344353/KBF_Icon_mit_Logo_ohne_Rahmen_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/217344353/KBF_Icon_mit_Logo_ohne_Rahmen_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Wulin Wushu - Family Fitness Fun, Kung Fu, Self Defense Kickboxing, & TaiChi relaxation! http://t.co/8M5vS65n - ... http://t.co/5wRFDZG9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:09 +0000", "from_user": "T3LLY_MONSTER", "from_user_id": 100269604, "from_user_id_str": "100269604", "from_user_name": "\\u2654Limited Edition\\u2654", "geo": null, "id": 148839049786966000, "id_str": "148839049786966017", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1570196403/day_ooff_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1570196403/day_ooff_2_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Bad boys ain't no good.. Good boys ain't no fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:09 +0000", "from_user": "youngkass1", "from_user_id": 93078006, "from_user_id_str": "93078006", "from_user_name": "Kassim Jenom", "geo": null, "id": 148839048876802050, "id_str": "148839048876802048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1474527049/324451410_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1474527049/324451410_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "How fun will it be if there was a show bout Koko mansion girls vs playboy mansion girls", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:09 +0000", "from_user": "cyncyNAYA", "from_user_id": 46221355, "from_user_id_str": "46221355", "from_user_name": "Cynthia Rivera \\u2665", "geo": null, "id": 148839048386068480, "id_str": "148839048386068480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693927968/tumblr_lskeeye7Ji1qjob6co1_500_large_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693927968/tumblr_lskeeye7Ji1qjob6co1_500_large_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@rikerR5 oof, have fun. meanwhile i will head off to my dress rehearsal hoping no one loses their voices! #fingerscrossed feel better soon!", "to_user": "rikerR5", "to_user_id": 17951326, "to_user_id_str": "17951326", "to_user_name": "riker lynch", "in_reply_to_status_id": 148837039343812600, "in_reply_to_status_id_str": "148837039343812608"}, +{"created_at": "Mon, 19 Dec 2011 18:56:09 +0000", "from_user": "jessyrocks", "from_user_id": 37020659, "from_user_id_str": "37020659", "from_user_name": "Jessyca Alencar", "geo": null, "id": 148839048134393860, "id_str": "148839048134393856", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1356898732/P160511_00.08_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1356898732/P160511_00.08_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Alyssa_Milano Happy Bday Alyssa!!!! Have fun today!!!!! Luv ya.", "to_user": "Alyssa_Milano", "to_user_id": 26642006, "to_user_id_str": "26642006", "to_user_name": "Alyssa Milano"}, +{"created_at": "Mon, 19 Dec 2011 18:56:08 +0000", "from_user": "AlwaysStayReal", "from_user_id": 212472072, "from_user_id_str": "212472072", "from_user_name": "\\u2206ce ||\\u272F", "geo": null, "id": 148839047735947260, "id_str": "148839047735947264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700906736/tweet_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700906736/tweet_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "It's not as fun as it looks", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:08 +0000", "from_user": "EhtsmeBEASTy", "from_user_id": 131369665, "from_user_id_str": "131369665", "from_user_name": "hi daddy\\u2665", "geo": null, "id": 148839047526223870, "id_str": "148839047526223872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688382382/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688382382/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "@TheyLoveIndy girl same here. I aint been too a party in 30 years! Maaan it was hella hella hot bt yeee i had fun.", "to_user": "TheyLoveIndy", "to_user_id": 157223114, "to_user_id_str": "157223114", "to_user_name": "INDIA =)", "in_reply_to_status_id": 148838274201432060, "in_reply_to_status_id_str": "148838274201432064"}, +{"created_at": "Mon, 19 Dec 2011 18:56:08 +0000", "from_user": "revive85KC", "from_user_id": 243968947, "from_user_id_str": "243968947", "from_user_name": "Michael James Foos", "geo": null, "id": 148839047354257400, "id_str": "148839047354257408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1653226277/securedownload_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653226277/securedownload_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "TebowCenter is offended because Saturday Night Live made fun of their goldenchild over the weekend.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:08 +0000", "from_user": "AlKayeAlKaye", "from_user_id": 369977168, "from_user_id_str": "369977168", "from_user_name": "Alex Kanefsky", "geo": null, "id": 148839047110991870, "id_str": "148839047110991872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1534285237/alkayealkaye_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534285237/alkayealkaye_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@RickBeenham @hansguntersson @nikleson well have fun, I look forward to seeing some wrongness...", "to_user": "RickBeenham", "to_user_id": 44376580, "to_user_id_str": "44376580", "to_user_name": "Richard Beenham", "in_reply_to_status_id": 148825233862832130, "in_reply_to_status_id_str": "148825233862832129"}, +{"created_at": "Mon, 19 Dec 2011 18:56:08 +0000", "from_user": "jmpatsou", "from_user_id": 86991345, "from_user_id_str": "86991345", "from_user_name": "Jim", "geo": null, "id": 148839046184058880, "id_str": "148839046184058880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687148733/377567_2862574529404_1410939421_33165375_740431376_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687148733/377567_2862574529404_1410939421_33165375_740431376_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Being mean is fun #true_story", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:08 +0000", "from_user": "aeon_jeni", "from_user_id": 244081372, "from_user_id_str": "244081372", "from_user_name": "Jenn Belieber ", "geo": null, "id": 148839045785591800, "id_str": "148839045785591808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695804462/IMG00542-20111209-1808_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695804462/IMG00542-20111209-1808_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @justinbieber: In vegas feeling good. Time to make some fun happen.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:08 +0000", "from_user": "ChevieA2014", "from_user_id": 247933391, "from_user_id_str": "247933391", "from_user_name": "Chevonne Abrams", "geo": null, "id": 148839044988669950, "id_str": "148839044988669952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1650851144/new_pic1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650851144/new_pic1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@J_Pickman awe thats cool. im sorry i didn't reply back to your text message the last time. but yea just hit me up. have fun at your job", "to_user": "J_Pickman", "to_user_id": 160338770, "to_user_id_str": "160338770", "to_user_name": "Jenna", "in_reply_to_status_id": 148838710119637000, "in_reply_to_status_id_str": "148838710119636993"}, +{"created_at": "Mon, 19 Dec 2011 18:56:07 +0000", "from_user": "SeriousJest", "from_user_id": 26754657, "from_user_id_str": "26754657", "from_user_name": "Serious Jest", "geo": null, "id": 148839043751346180, "id_str": "148839043751346176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1163529224/Julio_in_Field_Expedient_Surgical_Unit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1163529224/Julio_in_Field_Expedient_Surgical_Unit_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Agree 200%! RT @MsNiikkiiB Waiting game is no fun!", "to_user": "MsNiikkiiB", "to_user_id": 35301364, "to_user_id_str": "35301364", "to_user_name": "Nikki.Beeee", "in_reply_to_status_id": 148837687758028800, "in_reply_to_status_id_str": "148837687758028800"}, +{"created_at": "Mon, 19 Dec 2011 18:56:07 +0000", "from_user": "bobolaoyeleke", "from_user_id": 54501249, "from_user_id_str": "54501249", "from_user_name": "B.O.B.O", "geo": null, "id": 148839043533250560, "id_str": "148839043533250560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1387703387/Lagos-20110608-00453_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1387703387/Lagos-20110608-00453_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "This christmas was already planned!!!!!!!!!.......watevr happnd to \"us\"....I'l just have fun my way then....and alone too!!!!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:07 +0000", "from_user": "_KiaBoo", "from_user_id": 197707323, "from_user_id_str": "197707323", "from_user_name": "Kia:)", "geo": null, "id": 148839041499009020, "id_str": "148839041499009024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674547923/7G6Gg987_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674547923/7G6Gg987_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "So I Watched @_90sKid Drink HALF HER WEIGHT In Sprite.! And The Other Half In Macaroni.! hahaha Skyped Her Ass Last Night:) It Was Fun.!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:07 +0000", "from_user": "QuirkyBean", "from_user_id": 56167650, "from_user_id_str": "56167650", "from_user_name": "Hazel", "geo": null, "id": 148839040114896900, "id_str": "148839040114896896", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1619146883/HazelFletcher_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619146883/HazelFletcher_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@andypiper Have fun :)", "to_user": "andypiper", "to_user_id": 786491, "to_user_id_str": "786491", "to_user_name": "Andy Piper", "in_reply_to_status_id": 148838837819416580, "in_reply_to_status_id_str": "148838837819416576"}, +{"created_at": "Mon, 19 Dec 2011 18:56:07 +0000", "from_user": "KeyloveSG", "from_user_id": 295175823, "from_user_id_str": "295175823", "from_user_name": "Kim Kibum (\\uAE40\\uAE30\\uBC94)", "geo": null, "id": 148839040089726980, "id_str": "148839040089726977", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1623265457/keylovesg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1623265457/keylovesg_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@enogercha @minholovesg alrights ^~^ have fun !", "to_user": "enogercha", "to_user_id": 80528399, "to_user_id_str": "80528399", "to_user_name": "RETNO WULANNINGSIH D", "in_reply_to_status_id": 148838097541541900, "in_reply_to_status_id_str": "148838097541541888"}, +{"created_at": "Mon, 19 Dec 2011 18:56:06 +0000", "from_user": "emzyxx__", "from_user_id": 243765780, "from_user_id_str": "243765780", "from_user_name": "Emma Clinton", "geo": null, "id": 148839039192145920, "id_str": "148839039192145920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1660395180/312590_2162548939772_1128041795_31945737_1935148389_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660395180/312590_2162548939772_1128041795_31945737_1935148389_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @tiahcollison: when a girl says \"have fun\", she really means \"have a horrible time without me\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:06 +0000", "from_user": "__BrownSuga", "from_user_id": 34079639, "from_user_id_str": "34079639", "from_user_name": "K-RAWWW ^_^", "geo": null, "id": 148839038789492740, "id_str": "148839038789492736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697133662/2011-12-16_11.14.56-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697133662/2011-12-16_11.14.56-1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@__PinkLIPSTICK HAPPY BIRTHDAY BRI! AYEEEEE TWERK SOMETHING ITS YOUR BIRTHDAY WHOOT WHOOT ! :) LOVE YA HAVE FUN. \\uE056\\uE056", "to_user": "__PinkLIPSTICK", "to_user_id": 215714537, "to_user_id_str": "215714537", "to_user_name": "December19", "in_reply_to_status_id": 148836071545896960, "in_reply_to_status_id_str": "148836071545896960"}, +{"created_at": "Mon, 19 Dec 2011 18:56:06 +0000", "from_user": "WonderTrendy", "from_user_id": 47129512, "from_user_id_str": "47129512", "from_user_name": "WonDer ThE RaSTA", "geo": null, "id": 148839038336507900, "id_str": "148839038336507905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691518079/NYC_trendy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691518079/NYC_trendy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I like weed...Sex with beautiful woman...and Having dangerous fun..Im a fucking rebel.. Sue Me", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:06 +0000", "from_user": "AlexWakeen", "from_user_id": 224521681, "from_user_id_str": "224521681", "from_user_name": "alex chumley", "geo": null, "id": 148839038223261700, "id_str": "148839038223261698", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1647111341/crespi_football_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647111341/crespi_football_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @BianchiMarino: Everyone's talking about how fun your night was. Shut up, It probably sucked.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:06 +0000", "from_user": "Shanti_Babi", "from_user_id": 120333909, "from_user_id_str": "120333909", "from_user_name": "Mermaid Chic", "geo": null, "id": 148839038160347140, "id_str": "148839038160347136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1672563518/Snapshot_20111126_15_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672563518/Snapshot_20111126_15_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "I bored now, working never fun jred", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:06 +0000", "from_user": "welsh_ci", "from_user_id": 34536928, "from_user_id_str": "34536928", "from_user_name": "Welsh da God", "geo": null, "id": 148839038114213900, "id_str": "148839038114213888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691663227/331455805_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691663227/331455805_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @Quada_NLovE: Girls just wanna have FUN \\u2665", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:06 +0000", "from_user": "scottt96", "from_user_id": 256827279, "from_user_id_str": "256827279", "from_user_name": "Joshua Martiez", "geo": null, "id": 148839038013542400, "id_str": "148839038013542400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1253976587/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1253976587/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@YourrJessica have Fun at your new school ;)", "to_user": "YourrJessica", "to_user_id": 207727361, "to_user_id_str": "207727361", "to_user_name": "Jessica Graciano", "in_reply_to_status_id": 148838674027655170, "in_reply_to_status_id_str": "148838674027655168"}, +{"created_at": "Mon, 19 Dec 2011 18:56:05 +0000", "from_user": "Professor__J", "from_user_id": 123957499, "from_user_id_str": "123957499", "from_user_name": "SmoKA\\uF8FF", "geo": null, "id": 148839035123662850, "id_str": "148839035123662848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682266043/310298_10150861255005858_617220857_21356410_1992112800_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682266043/310298_10150861255005858_617220857_21356410_1992112800_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@mclyte just joined the site !! Approve me so I can get in on the fun !! lol", "to_user": "mclyte", "to_user_id": 15122826, "to_user_id_str": "15122826", "to_user_name": "MC Lyte", "in_reply_to_status_id": 148837576466378750, "in_reply_to_status_id_str": "148837576466378752"}, +{"created_at": "Mon, 19 Dec 2011 18:56:05 +0000", "from_user": "FLGemini67", "from_user_id": 246004350, "from_user_id_str": "246004350", "from_user_name": "Tom Allen", "geo": null, "id": 148839034553241600, "id_str": "148839034553241602", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1654428188/IMGP2733_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654428188/IMGP2733_normal.JPG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@TheLisaSparks looks like fun!", "to_user": "TheLisaSparks", "to_user_id": 23172950, "to_user_id_str": "23172950", "to_user_name": "Lisa Sparks", "in_reply_to_status_id": 148837065121992700, "in_reply_to_status_id_str": "148837065121992704"}, +{"created_at": "Mon, 19 Dec 2011 18:56:05 +0000", "from_user": "MeliB78", "from_user_id": 440928674, "from_user_id_str": "440928674", "from_user_name": "Melissa Bull", "geo": null, "id": 148839033160740860, "id_str": "148839033160740866", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@mccordalex that's never fun! i have been needing to do that an more but not alot of energy to do it!", "to_user": "mccordalex", "to_user_id": 43627602, "to_user_id_str": "43627602", "to_user_name": "Alex McCord", "in_reply_to_status_id": 148838180467118080, "in_reply_to_status_id_str": "148838180467118081"}, +{"created_at": "Mon, 19 Dec 2011 18:56:05 +0000", "from_user": "Follow_Dimpz", "from_user_id": 151304351, "from_user_id_str": "151304351", "from_user_name": "Pablito Jimenez", "geo": null, "id": 148839032258957300, "id_str": "148839032258957312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1628428473/009_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628428473/009_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I'm sorry too all the people I made fun of for being sick -.- fuck man Karmas a B I T C H :// now I'm sick grrr ...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:04 +0000", "from_user": "priest_morgan", "from_user_id": 435361012, "from_user_id_str": "435361012", "from_user_name": "Morgan Priest", "geo": null, "id": 148839030325395460, "id_str": "148839030325395456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694012426/WkQC37mI_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694012426/WkQC37mI_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I think I have to much fun home alone .....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:04 +0000", "from_user": "cathymcfly", "from_user_id": 27951352, "from_user_id_str": "27951352", "from_user_name": "Winkie The House Elf", "geo": null, "id": 148839030052753400, "id_str": "148839030052753409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702444774/6U5V9zxr_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702444774/6U5V9zxr_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "English test tomorrow. Should be fun! (not really :/..)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:04 +0000", "from_user": "theTaanZie", "from_user_id": 158388079, "from_user_id_str": "158388079", "from_user_name": "Bitch I'm TAYLOR'D", "geo": null, "id": 148839029524271100, "id_str": "148839029524271105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1683531201/IMG00608-20110907-1606_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683531201/IMG00608-20110907-1606_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Rampz LOL nooo. Search fun*dmental - playground on YouTube.", "to_user": "Rampz", "to_user_id": 25394959, "to_user_id_str": "25394959", "to_user_name": "Carl \\uE326", "in_reply_to_status_id": 148837843790340100, "in_reply_to_status_id_str": "148837843790340096"}, +{"created_at": "Mon, 19 Dec 2011 18:56:04 +0000", "from_user": "_davlian", "from_user_id": 139408581, "from_user_id_str": "139408581", "from_user_name": "DAVid yuLIAN", "geo": null, "id": 148839028995784700, "id_str": "148839028995784705", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1562728668/David_and_..._normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1562728668/David_and_..._normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "I know what i should do with my story. It will be fun. :)))", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:03 +0000", "from_user": "queenbreanna9", "from_user_id": 226670926, "from_user_id_str": "226670926", "from_user_name": "breanna sturdivant", "geo": null, "id": 148839026802163700, "id_str": "148839026802163713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691445805/1L7KY8JY_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691445805/1L7KY8JY_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@shove09: I think I had too much fun @ #STATIK last night back hurting and all\" we all did :))", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:03 +0000", "from_user": "MeghanDubuc", "from_user_id": 301045630, "from_user_id_str": "301045630", "from_user_name": "Meghan Dubuc", "geo": null, "id": 148839026764427260, "id_str": "148839026764427264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680793865/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680793865/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Joanna_banana95 @aLAXis05 love you girls:) had fun today!!!", "to_user": "Joanna_banana95", "to_user_id": 369601147, "to_user_id_str": "369601147", "to_user_name": "Joanna Nylander"}, +{"created_at": "Mon, 19 Dec 2011 18:56:03 +0000", "from_user": "hutripamungkas", "from_user_id": 107396685, "from_user_id_str": "107396685", "from_user_name": "Happy Hutri P.\\n", "geo": null, "id": 148839026210770940, "id_str": "148839026210770945", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1600456833/328457281_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600456833/328457281_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @my_supersoccer: Yang udah maen, mana suaranya? Yang belum, sekali lagi, ini link-nya: http://t.co/X3Ar4UyV #SuperSoccerFantasyFootball", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:03 +0000", "from_user": "AndyMizerowski", "from_user_id": 305702244, "from_user_id_str": "305702244", "from_user_name": "Andy Mizerowski", "geo": null, "id": 148839025543876600, "id_str": "148839025543876610", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695250659/FtC8Gu9p_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695250659/FtC8Gu9p_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "#fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:03 +0000", "from_user": "soozeypooze152", "from_user_id": 262967017, "from_user_id_str": "262967017", "from_user_name": "Susan So", "geo": null, "id": 148839023757107200, "id_str": "148839023757107200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1266393975/coo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266393975/coo_normal.jpg", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "@tstambaugh24 bc you do something fun and relaxing all the time and I read these tweets while at work wanting to die. Sigh, switch me", "to_user": "tstambaugh24", "to_user_id": 315198646, "to_user_id_str": "315198646", "to_user_name": "Tiff Stambaugh", "in_reply_to_status_id": 148836324227547140, "in_reply_to_status_id_str": "148836324227547136"}, +{"created_at": "Mon, 19 Dec 2011 18:56:02 +0000", "from_user": "K_JuneBug", "from_user_id": 247443075, "from_user_id_str": "247443075", "from_user_name": "Katelyn June Hailey", "geo": null, "id": 148839021865476100, "id_str": "148839021865476096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1611054684/khailey_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611054684/khailey_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "MT @ThePacificOcean Check out these fun, hands-on ocean-themed events coming up at @Birch_Aquarium : http://t.co/E2krPhVL #ocean", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:02 +0000", "from_user": "suzirooo", "from_user_id": 101024191, "from_user_id_str": "101024191", "from_user_name": "Suzi Roocroft", "geo": null, "id": 148839021529939970, "id_str": "148839021529939968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1383322662/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1383322662/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ProfBrianCox sometimes think the schedulers underestimate our thirst 4 knowledge ..you did #wonders with the subject and made it fun!", "to_user": "ProfBrianCox", "to_user_id": 17939037, "to_user_id_str": "17939037", "to_user_name": "Brian Cox", "in_reply_to_status_id": 148531254772514800, "in_reply_to_status_id_str": "148531254772514816"}, +{"created_at": "Mon, 19 Dec 2011 18:56:02 +0000", "from_user": "chanchanDIOR", "from_user_id": 83667310, "from_user_id_str": "83667310", "from_user_name": "Chanel Dior", "geo": null, "id": 148839021446037500, "id_str": "148839021446037505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701239556/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701239556/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@_Riiches: Don't worry yur invited!! We need a drinking night!! RT @chanchanDIOR: @_Riiches sounds like fun : )\\u201D. Yippie!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:02 +0000", "from_user": "Bitch_itsAngie", "from_user_id": 350008406, "from_user_id_str": "350008406", "from_user_name": "Angie Berrelleza ", "geo": null, "id": 148839020808507400, "id_str": "148839020808507392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1638188383/IMG00396-20111111-1912_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638188383/IMG00396-20111111-1912_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Yesterday was fun :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:02 +0000", "from_user": "Nafizaa", "from_user_id": 62152289, "from_user_id_str": "62152289", "from_user_name": "Nafiza Azad", "geo": null, "id": 148839020762374140, "id_str": "148839020762374144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1443391524/vh_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1443391524/vh_copy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@being_rida @Eden_PtC @bee_muses @aleezarauf I would take umbrage at the label but I'm feeling nice today. Besides, getting older is fun.", "to_user": "being_rida", "to_user_id": 257691725, "to_user_id_str": "257691725", "to_user_name": "Rida", "in_reply_to_status_id": 148838386164183040, "in_reply_to_status_id_str": "148838386164183040"}, +{"created_at": "Mon, 19 Dec 2011 18:56:02 +0000", "from_user": "ItsOhMonna", "from_user_id": 213004527, "from_user_id_str": "213004527", "from_user_name": "Monaaa Artner", "geo": null, "id": 148839020070314000, "id_str": "148839020070313984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699019651/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699019651/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "single bells,\\nsingle bells,\\nsingle all the way..\\noh how fun it is to watch cute couples every day -.-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:01 +0000", "from_user": "Shaikha_MRM", "from_user_id": 215894702, "from_user_id_str": "215894702", "from_user_name": "Shaikha Al Maktoum", "geo": null, "id": 148839017356591100, "id_str": "148839017356591104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1420844810/shaikha_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1420844810/shaikha_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Had fun with @Al_MaKnToShA and @no0ony1325 <3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:01 +0000", "from_user": "Lou4fun", "from_user_id": 32614065, "from_user_id_str": "32614065", "from_user_name": "Lou4Fun \\u2714", "geo": null, "id": 148839016823918600, "id_str": "148839016823918592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694633206/Lou4fun_Logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694633206/Lou4fun_Logo_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Never spend too long in front of a mirror it can only hold disappointment. It is my belief my mirror may of been purchased from a fun fair", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:00 +0000", "from_user": "abweato", "from_user_id": 351050953, "from_user_id_str": "351050953", "from_user_name": "ab ", "geo": null, "id": 148839014336700400, "id_str": "148839014336700417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1665942140/me_rhiannaaaa_156_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665942140/me_rhiannaaaa_156_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@lyamwilliams97 aw:-(( they look quite fun doe", "to_user": "lyamwilliams97", "to_user_id": 439177866, "to_user_id_str": "439177866", "to_user_name": "Lyam Williams", "in_reply_to_status_id": 148838294636081150, "in_reply_to_status_id_str": "148838294636081152"}, +{"created_at": "Mon, 19 Dec 2011 18:56:00 +0000", "from_user": "BeesKneesSweets", "from_user_id": 140097891, "from_user_id_str": "140097891", "from_user_name": "Bee's Knees Sweets", "geo": null, "id": 148839013317492740, "id_str": "148839013317492736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1457357706/BK_logo_bright_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1457357706/BK_logo_bright_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "We had so much fun yesterday that we decided to return to Stardust Video & Coffee from 6-10pm for the lovely... http://t.co/v15UB601", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:00 +0000", "from_user": "Aleksanderpherp", "from_user_id": 260826135, "from_user_id_str": "260826135", "from_user_name": "\\u00AF\\_(\\u30C4)_/\\u00AF", "geo": null, "id": 148839013225201660, "id_str": "148839013225201665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702421212/cropped_snapshot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702421212/cropped_snapshot_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@itsmeghyo x'D Some of it is actually fun though, like mechanics", "to_user": "itsmeghyo", "to_user_id": 279663469, "to_user_id_str": "279663469", "to_user_name": "Dumbledork.", "in_reply_to_status_id": 148838490682040320, "in_reply_to_status_id_str": "148838490682040320"}, +{"created_at": "Mon, 19 Dec 2011 18:56:00 +0000", "from_user": "Aakash_2108", "from_user_id": 347774908, "from_user_id_str": "347774908", "from_user_name": "Aakash Sarraf ", "geo": null, "id": 148839011102883840, "id_str": "148839011102883840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1532691563/IMG-20110907-00626_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1532691563/IMG-20110907-00626_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@Sakshikumar Ua Too too funny..as I hav been watching 4 so many days..keep it up n hav gr8 fun..hope u njoying weather out dere in #Delhi", "to_user": "Sakshikumar", "to_user_id": 39961479, "to_user_id_str": "39961479", "to_user_name": "Sakshi Kumar", "in_reply_to_status_id": 148838613218635780, "in_reply_to_status_id_str": "148838613218635776"}, +{"created_at": "Mon, 19 Dec 2011 18:55:59 +0000", "from_user": "MissKhalila", "from_user_id": 138203932, "from_user_id_str": "138203932", "from_user_name": "Khalila", "geo": null, "id": 148839009953652740, "id_str": "148839009953652736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687234701/MissKhalila_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687234701/MissKhalila_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "RT @RosaB213: Eaves dropping on people speaking other languages is always fun for me. #multilingual", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:59 +0000", "from_user": "ultra_violet7", "from_user_id": 264329498, "from_user_id_str": "264329498", "from_user_name": "Mubanga mweemba", "geo": null, "id": 148839009072840700, "id_str": "148839009072840704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1679260543/377781_157592681007190_100002693781370_176129_1223684341_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679260543/377781_157592681007190_100002693781370_176129_1223684341_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@roro_rosiie saturday was so much fun still doing signals and pocket full of sunshine is stuck in my head :')", "to_user": "roro_rosiie", "to_user_id": 411721484, "to_user_id_str": "411721484", "to_user_name": "Roisin Donnelly"}, +{"created_at": "Mon, 19 Dec 2011 18:55:59 +0000", "from_user": "rev313", "from_user_id": 158779335, "from_user_id_str": "158779335", "from_user_name": "Aidden Keli", "geo": null, "id": 148839008099774460, "id_str": "148839008099774464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1428048829/twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1428048829/twitter_normal.png", "source": "<a href="http://fun.ly" rel="nofollow">fun.ly</a>", "text": "Fresh From http://t.co/ycaphLqM today http://t.co/26blXpHf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:59 +0000", "from_user": "pmr_name", "from_user_id": 241871853, "from_user_id_str": "241871853", "from_user_name": "Satis Sirius", "geo": null, "id": 148839007126700030, "id_str": "148839007126700034", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1571555653/Transnistria2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1571555653/Transnistria2_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "For All - Fun & Free ; Photo - \\u041F\\u0440\\u043E\\u0441\\u0442\\u043E \\u0437\\u0430\\u043C\\u0435\\u0442\\u043A\\u0438: \\u041B\\u044E\\u0431\\u043B\\u044E \\u0444\\u043E\\u0442\\u043E - love http://t.co/CUmTnaNO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:58 +0000", "from_user": "Jojofonggg", "from_user_id": 63139785, "from_user_id_str": "63139785", "from_user_name": "Joreen Emelda (:", "geo": null, "id": 148839002433265660, "id_str": "148839002433265664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702604186/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702604186/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@BaboGum aiya I never jailbreak. I know the code red one fun right :(", "to_user": "BaboGum", "to_user_id": 153459937, "to_user_id_str": "153459937", "to_user_name": "Samuel Lim Wei Siang", "in_reply_to_status_id": 148838741883109380, "in_reply_to_status_id_str": "148838741883109377"}, +{"created_at": "Mon, 19 Dec 2011 18:55:57 +0000", "from_user": "kallel_3Fs", "from_user_id": 241819758, "from_user_id_str": "241819758", "from_user_name": "lucas kallel", "geo": null, "id": 148839001791545340, "id_str": "148839001791545344", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691990571/IMG10092_-_C_pia__2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691990571/IMG10092_-_C_pia__2__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "O corinthians n\\u00E3o ganhou um mundial, ganhou um torneio de ver\\u00E3o...Quase uma \"SEMANA FUN\" by: Joedis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:57 +0000", "from_user": "JuiceDatThangJG", "from_user_id": 88772247, "from_user_id_str": "88772247", "from_user_name": "Cashmere Gordon", "geo": null, "id": 148839001229508600, "id_str": "148839001229508609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687683112/jggg_foolin_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687683112/jggg_foolin_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "ummmmmm no @bkaTinaBina i had fun tho..", "to_user": "bkaTinaBina", "to_user_id": 41243490, "to_user_id_str": "41243490", "to_user_name": "AKT", "in_reply_to_status_id": 148837273964781570, "in_reply_to_status_id_str": "148837273964781569"}, +{"created_at": "Mon, 19 Dec 2011 18:55:57 +0000", "from_user": "riRinVil", "from_user_id": 127667700, "from_user_id_str": "127667700", "from_user_name": "RinRin ViLoL", "geo": null, "id": 148838999740518400, "id_str": "148838999740518400", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1648789714/316172_2129325994299_1280444365_2829895_1296529887_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648789714/316172_2129325994299_1280444365_2829895_1296529887_n_normal.jpg", "source": "<a href="http://tuitwit.com" rel="nofollow">TuiTwit</a>", "text": "nah 30% na Lg bru deh tmn cwe.. itu pun msh bs k itung brp yg bs gw ajak sharing,, curhat n have fun..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:57 +0000", "from_user": "pretty_girl_cae", "from_user_id": 281774930, "from_user_id_str": "281774930", "from_user_name": "luneira jackson", "geo": null, "id": 148838999673405440, "id_str": "148838999673405440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1659613225/Snapshot_20111126_10_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659613225/Snapshot_20111126_10_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iEnriqueSays: Living Single may seem fun while it lasts but at the end of the day everyone wants someone to love.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:57 +0000", "from_user": "Sarimqe", "from_user_id": 430056373, "from_user_id_str": "430056373", "from_user_name": "Sari Graf", "geo": null, "id": 148838999476285440, "id_str": "148838999476285441", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1677539834/qul54p554t_130872286-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677539834/qul54p554t_130872286-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Fun Flamingo Boppers: Fun Flamingo Boppers. Fun tropical pink flamingo headband boppers. Wear them with our Flam... http://t.co/Jxrwmzdd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:57 +0000", "from_user": "FishyCrackerzzz", "from_user_id": 316685791, "from_user_id_str": "316685791", "from_user_name": "BREElicious", "geo": null, "id": 148838999065235460, "id_str": "148838999065235456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698712391/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698712391/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@MsClaudiaCG lmaooo it was fun,I have a screenshot from it http://t.co/vDJh1aoP", "to_user": "MsClaudiaCG", "to_user_id": 350608821, "to_user_id_str": "350608821", "to_user_name": "Cl\\u00E1udia Yaw Hecox :)", "in_reply_to_status_id": 148838818676617200, "in_reply_to_status_id_str": "148838818676617216"}, +{"created_at": "Mon, 19 Dec 2011 18:55:56 +0000", "from_user": "DJfizzlemix", "from_user_id": 284566865, "from_user_id_str": "284566865", "from_user_name": "iria osagie", "geo": null, "id": 148838997475598340, "id_str": "148838997475598336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1548211365/wanna_20shoot_20masef2go_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1548211365/wanna_20shoot_20masef2go_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @tegaking: Had madt fun @ my place today..tnks to @DJfizzlemix @kingkolombo hadiza issac.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:56 +0000", "from_user": "Ariannahnf", "from_user_id": 440161454, "from_user_id_str": "440161454", "from_user_name": "Arianna Quattrocchi", "geo": null, "id": 148838997412679680, "id_str": "148838997412679682", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700452703/large_KMKZRQRLLCBLE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700452703/large_KMKZRQRLLCBLE_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Networking Success: How to Turn Business & Financial Relationships into Fun & Profit: Networking is the key to o... http://t.co/KHubosCN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:56 +0000", "from_user": "Delilaheqt", "from_user_id": 431771204, "from_user_id_str": "431771204", "from_user_name": "Delilah Ryerson", "geo": null, "id": 148838997291057150, "id_str": "148838997291057153", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681178560/eq5duz55si_103673847_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681178560/eq5duz55si_103673847_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "CLINTON SCALE TABLES Zoo bus scale table Item# 7822: Clinton Industries Fun Series Pediatric Scale Tables featur... http://t.co/hBGHOPle", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:56 +0000", "from_user": "Ernie4Pres", "from_user_id": 143695147, "from_user_id_str": "143695147", "from_user_name": "Ernie Child", "geo": null, "id": 148838996691271680, "id_str": "148838996691271681", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1302705913/IMG_0316_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1302705913/IMG_0316_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "it's all fun and games till someone gets pregnant...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:56 +0000", "from_user": "xAmberLeighx", "from_user_id": 27489828, "from_user_id_str": "27489828", "from_user_name": "Amber-Leigh Jones", "geo": null, "id": 148838996041150460, "id_str": "148838996041150464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1578874658/MEEE_red_lippy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1578874658/MEEE_red_lippy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "i miss bein young n having fun, lifes so borin these days!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:56 +0000", "from_user": "_jamieshepherd_", "from_user_id": 282722958, "from_user_id_str": "282722958", "from_user_name": "Jamie Shepherd", "geo": null, "id": 148838993700720640, "id_str": "148838993700720640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1528711356/sja_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1528711356/sja_normal.jpg", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "RT @MarahCAR: I wish I lived when there was no cell phones, facebook, twitter. Everything seemed so much more fun, relaxed, and waayyy less drama.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:55 +0000", "from_user": "BLuE_EsPaDA", "from_user_id": 376279076, "from_user_id_str": "376279076", "from_user_name": "ESPADA", "geo": null, "id": 148838993205796860, "id_str": "148838993205796864", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701699735/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701699735/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@itsmeezayed same here had fun w/ U =D !!!", "to_user": "itsmeezayed", "to_user_id": 317229364, "to_user_id_str": "317229364", "to_user_name": "zayed bin desmal", "in_reply_to_status_id": 148836053682360320, "in_reply_to_status_id_str": "148836053682360320"}, +{"created_at": "Mon, 19 Dec 2011 18:55:55 +0000", "from_user": "AyyYo_itsbreezy", "from_user_id": 190424000, "from_user_id_str": "190424000", "from_user_name": "sabrina perez", "geo": null, "id": 148838992962535420, "id_str": "148838992962535424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697573886/brinabobinabitch_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697573886/brinabobinabitch_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@ENCsunshine @MichaelJIsaac yessss that would be so much fun(:", "to_user": "ENCsunshine", "to_user_id": 128937859, "to_user_id_str": "128937859", "to_user_name": "Emerald Contreras", "in_reply_to_status_id": 148830453531541500, "in_reply_to_status_id_str": "148830453531541504"}, +{"created_at": "Mon, 19 Dec 2011 18:55:55 +0000", "from_user": "graizie69", "from_user_id": 361849385, "from_user_id_str": "361849385", "from_user_name": "Agono Grace", "geo": null, "id": 148838992832495600, "id_str": "148838992832495616", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1534409322/244160_220651897962748_100000538192882_851520_6375541_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534409322/244160_220651897962748_100000538192882_851520_6375541_o_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@Rockshield99 kk....av fun", "to_user": "Rockshield99", "to_user_id": 237724460, "to_user_id_str": "237724460", "to_user_name": "Rockshield Kurtzman", "in_reply_to_status_id": 148837667822518270, "in_reply_to_status_id_str": "148837667822518273"}, +{"created_at": "Mon, 19 Dec 2011 18:55:55 +0000", "from_user": "Penny_Charlie", "from_user_id": 224898252, "from_user_id_str": "224898252", "from_user_name": "Lindsey", "geo": null, "id": 148838992731844600, "id_str": "148838992731844608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1338109861/Twitter1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1338109861/Twitter1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Wrapped up some work, now on to the fun stuff! Gathering up ingredients for cookies and cinnamon rolls! :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:55 +0000", "from_user": "mamoma2", "from_user_id": 431832226, "from_user_id_str": "431832226", "from_user_name": "Maryam al-Qaffas", "geo": null, "id": 148838992513740800, "id_str": "148838992513740800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702061432/CaptureNux_202011-12-19_2015_3B43_3B43_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702061432/CaptureNux_202011-12-19_2015_3B43_3B43_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Had Fun with\\u2665@D_ashkanani @Fatma_Dashtii @HayaAlsheikh. Love u Girls and thnxxx ;***", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:55 +0000", "from_user": "KANG_Moe", "from_user_id": 353447718, "from_user_id_str": "353447718", "from_user_name": "Moe", "geo": null, "id": 148838992442433540, "id_str": "148838992442433536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1509235356/me_in_shades_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509235356/me_in_shades_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@KtotheG21 well let's bring back the summer time fun and hit sac together", "to_user": "KtotheG21", "to_user_id": 299310809, "to_user_id_str": "299310809", "to_user_name": "Kevin Grant", "in_reply_to_status_id": 148830338737635330, "in_reply_to_status_id_str": "148830338737635328"}, +{"created_at": "Mon, 19 Dec 2011 18:55:55 +0000", "from_user": "_ConcreteRose1", "from_user_id": 304834408, "from_user_id_str": "304834408", "from_user_name": "BeautyNSneakers", "geo": null, "id": 148838991381274620, "id_str": "148838991381274624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701108183/399819_10150466991542731_180830147730_8562355_1560027901_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701108183/399819_10150466991542731_180830147730_8562355_1560027901_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "HAPPY 21st @PWILDDD HOPE YOU HAVE FUN!!!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:55 +0000", "from_user": "LornaSuzuki", "from_user_id": 46544514, "from_user_id_str": "46544514", "from_user_name": "Lorna Suzuki", "geo": null, "id": 148838990269792260, "id_str": "148838990269792256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/259416885/Lorna_Suzuki_COLOUR_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/259416885/Lorna_Suzuki_COLOUR_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@catconnor Enjoy this 1/2 hour & have fun tackling the edits!", "to_user": "catconnor", "to_user_id": 16060628, "to_user_id_str": "16060628", "to_user_name": "Cat Connor"}, +{"created_at": "Mon, 19 Dec 2011 18:55:55 +0000", "from_user": "Ciara13x", "from_user_id": 25585204, "from_user_id_str": "25585204", "from_user_name": "Ciara ", "geo": null, "id": 148838989800017920, "id_str": "148838989800017922", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1659585891/Ciara13x_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659585891/Ciara13x_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "had fun ice skating with the school:)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:54 +0000", "from_user": "discocarol", "from_user_id": 21820721, "from_user_id_str": "21820721", "from_user_name": "Carol McLovin", "geo": null, "id": 148838988613038080, "id_str": "148838988613038080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1319060640/v3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1319060640/v3_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@IamRicoLove: Pretty girls have the most fun..... #TTLO\\u201D <--- Truth :))", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:54 +0000", "from_user": "EmilyNave12", "from_user_id": 14836138, "from_user_id_str": "14836138", "from_user_name": "Emily Nave", "geo": null, "id": 148838987593814000, "id_str": "148838987593814016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1447599853/emily_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1447599853/emily_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "End of the year lists are always fun to read -> 10 buzzwords that need to vanish in 2012 \\n http://t.co/X8KzVxj5 #resolution", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:54 +0000", "from_user": "thebradking", "from_user_id": 1176551, "from_user_id_str": "1176551", "from_user_name": "Brad King", "geo": null, "id": 148838987052748800, "id_str": "148838987052748800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1607759930/Brad_web_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607759930/Brad_web_normal.JPG", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Having arguments abt ideas I didn't write is always fun: \"yes, I agree if someone wrote that they would be wrong. Where did you read that?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:54 +0000", "from_user": "bellemakinano", "from_user_id": 360454276, "from_user_id_str": "360454276", "from_user_name": "Belle Tambis. \\u2665", "geo": null, "id": 148838985970614270, "id_str": "148838985970614272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689108849/7b2a3c7f58b3c410af88ad66fb98ff9217a64421_wmeg_00001_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689108849/7b2a3c7f58b3c410af88ad66fb98ff9217a64421_wmeg_00001_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @HeyItsMeGelli_A: Had fun today with @bellemakinano @mary_joy18 and @Atun_Ky ! Too bad wala si Kaye.. Super fun... :))", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:53 +0000", "from_user": "bleexox", "from_user_id": 206424404, "from_user_id_str": "206424404", "from_user_name": "Brittney Vaughan", "geo": null, "id": 148838984573915140, "id_str": "148838984573915136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1311443100/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1311443100/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Real couples can make fun of eachother like @EvelynLozada & @ochocinco & still be completely in love. They crack me up!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:53 +0000", "from_user": "ebb_and_flo", "from_user_id": 279401453, "from_user_id_str": "279401453", "from_user_name": "ebony...the tall one", "geo": null, "id": 148838983248523260, "id_str": "148838983248523264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1657426178/picnik_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657426178/picnik_3_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "so you think im crazy? oh ok. thts fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:53 +0000", "from_user": "SeibertRealEst", "from_user_id": 223127420, "from_user_id_str": "223127420", "from_user_name": "Dagmar Seibert", "geo": null, "id": 148838983160430600, "id_str": "148838983160430592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1496257134/hseibert_01_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1496257134/hseibert_01_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Overwhelming Villa! Quail West Grotto Estate w/ private fun-time backyard. Reduced by $301,000 - http://t.co/MRi0BKVg Call: (239)-265-5755", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:53 +0000", "from_user": "michikohoriuchi", "from_user_id": 388129159, "from_user_id_str": "388129159", "from_user_name": "Inna Horiuchi", "geo": null, "id": 148838981340110850, "id_str": "148838981340110848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693076283/michikohoriuchi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693076283/michikohoriuchi_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Had fun with @antonettedngca and @DorothyBelamide! \\u2665", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:53 +0000", "from_user": "_MyNameIsKARMA_", "from_user_id": 133979252, "from_user_id_str": "133979252", "from_user_name": "\\u2661 OVOXO \\u2661", "geo": null, "id": 148838981008760830, "id_str": "148838981008760832", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1686504708/profile_image_1323586635176_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686504708/profile_image_1323586635176_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @eatMyLays_: we Had Fun @imHER_GIRL @SmokeME_Rite @dropTOP_lexus @KanubyIsKixxx_ @_MyNameIsKARMA_ @troy_bestfriend @simplyXmunchie_ @EriniqueMia_!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:52 +0000", "from_user": "Down4Whatevr", "from_user_id": 28426526, "from_user_id_str": "28426526", "from_user_name": "LJ ", "geo": null, "id": 148838978840305660, "id_str": "148838978840305665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1665413417/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665413417/profile_normal.png", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @ImHopel3ss: I just blocked 1 of my real life friends on here and reported them for spam, that was fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:52 +0000", "from_user": "D0MINIQU3MARI3", "from_user_id": 128623118, "from_user_id_str": "128623118", "from_user_name": "Dominique Gonzalez", "geo": null, "id": 148838978395717630, "id_str": "148838978395717632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1676207997/D0MINIQU3MARI3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676207997/D0MINIQU3MARI3_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@WhitneyFranze how dare you make fun of him, then quote him", "to_user": "WhitneyFranze", "to_user_id": 316763955, "to_user_id_str": "316763955", "to_user_name": "Whitney Franze", "in_reply_to_status_id": 148838260758683650, "in_reply_to_status_id_str": "148838260758683648"}, +{"created_at": "Mon, 19 Dec 2011 18:55:52 +0000", "from_user": "Twex_him_good", "from_user_id": 378200054, "from_user_id_str": "378200054", "from_user_name": "chelley", "geo": null, "id": 148838977913368580, "id_str": "148838977913368576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679424992/TInEzs63_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679424992/TInEzs63_normal", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @TRINArockstarr: Bad boys ain't no good.. Good boys ain't no fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:51 +0000", "from_user": "Mari_belle91", "from_user_id": 374309084, "from_user_id_str": "374309084", "from_user_name": "Mariama Barry", "geo": null, "id": 148838972938911740, "id_str": "148838972938911744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1544894861/photo_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544894861/photo_normal", "source": "<a href="http://www.lg.com" rel="nofollow">LG Phone</a>", "text": "All I can do is to laugh at your ass cause its really fun that u talking shit n the people u tell dnt give a fuck wat u say so pathetic ....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:55:50 +0000", "from_user": "leggomybego", "from_user_id": 298261475, "from_user_id_str": "298261475", "from_user_name": "Grace Begovich", "geo": null, "id": 148838970392969200, "id_str": "148838970392969216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1661853566/flowererer_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661853566/flowererer_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@NoAverageMonday he's a really nice kid. You on the other hand... wow. If finding pictures of people to make fun if on the internet is what", "to_user": "NoAverageMonday", "to_user_id": 326447391, "to_user_id_str": "326447391", "to_user_name": "Austin Monday", "in_reply_to_status_id": 148811641880973300, "in_reply_to_status_id_str": "148811641880973313"}, +{"created_at": "Mon, 19 Dec 2011 18:55:50 +0000", "from_user": "nokemono42", "from_user_id": 15887391, "from_user_id_str": "15887391", "from_user_name": "Joey", "geo": null, "id": 148838968664928260, "id_str": "148838968664928256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1343393143/IMG_0125_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1343393143/IMG_0125_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "People who text fast is fun to watch, but after playing with the Japanese kana input on my keyboard I am blow way by its genius.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:48 +0000", "from_user": "Loui_BABY", "from_user_id": 183864942, "from_user_id_str": "183864942", "from_user_name": "Lou\\u270C", "geo": null, "id": 148838963661115400, "id_str": "148838963661115392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1672472185/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672472185/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @CanibusBeauty: @Loui_BABY @hbic45th Lol ok :-) Yay!!! This is going to be fuN!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:48 +0000", "from_user": "TasteMiThoughtx", "from_user_id": 250451681, "from_user_id_str": "250451681", "from_user_name": "Fanay Tyler", "geo": null, "id": 148838962818060300, "id_str": "148838962818060289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699127108/1324166932073_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699127108/1324166932073_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u00AB@GrevyGrey Things are more fun to do when your not supposed to be doing it!\\u00BB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:48 +0000", "from_user": "CarleenBohnsack", "from_user_id": 389434702, "from_user_id_str": "389434702", "from_user_name": "Carleen Bohnsack", "geo": null, "id": 148838961207451650, "id_str": "148838961207451648", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699444752/13_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699444752/13_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "- #porn #porno #sex #video #videos #pussy #tits #milf #teen - Retro Lesbian Girls Fun Ek8VBBAR http://t.co/xBfeRchm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:48 +0000", "from_user": "BombGirl", "from_user_id": 23476388, "from_user_id_str": "23476388", "from_user_name": "BombGirl", "geo": null, "id": 148838960418930700, "id_str": "148838960418930689", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1126191392/bomb100av_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1126191392/bomb100av_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "that was a long track name ^^ it's a great fun track", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:48 +0000", "from_user": "Radiochum", "from_user_id": 433821639, "from_user_id_str": "433821639", "from_user_name": "Radio Chum", "geo": null, "id": 148838960225976320, "id_str": "148838960225976320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1686901085/radio-sup-chum_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686901085/radio-sup-chum_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "It's more fun to SHARE Chum with your friends...one more makes 100 CHUM FRIENDS!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:47 +0000", "from_user": "cakeforbrkfst", "from_user_id": 116026486, "from_user_id_str": "116026486", "from_user_name": "vonlajuan.", "geo": null, "id": 148838959710089200, "id_str": "148838959710089216", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701246146/456394243_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701246146/456394243_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Niisa_bitchhh have fun (:", "to_user": "Niisa_bitchhh", "to_user_id": 145816788, "to_user_id_str": "145816788", "to_user_name": "Neezy.", "in_reply_to_status_id": 148838341595512830, "in_reply_to_status_id_str": "148838341595512832"}, +{"created_at": "Mon, 19 Dec 2011 18:55:47 +0000", "from_user": "EscapeSurfSkool", "from_user_id": 135904348, "from_user_id_str": "135904348", "from_user_name": "Will Hinton", "geo": null, "id": 148838958707654660, "id_str": "148838958707654657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/842995817/IMG_2310_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/842995817/IMG_2310_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Just launched our new blog, cheers to Matt Rodwell for setting it all up. The waves have been super fun and it's mild down here !!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:47 +0000", "from_user": "Thani_AlSuwaidi", "from_user_id": 285219689, "from_user_id_str": "285219689", "from_user_name": "Thani Al Suwaidi", "geo": null, "id": 148838957638090750, "id_str": "148838957638090753", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700972984/Dubai-20111021-00723_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700972984/Dubai-20111021-00723_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Had Fun . . Salamaaat @3lawy100 !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:47 +0000", "from_user": "TheWinterWitch", "from_user_id": 301140689, "from_user_id_str": "301140689", "from_user_name": "Lauren Lanni", "geo": null, "id": 148838956451119100, "id_str": "148838956451119106", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1370070467/Lauren_Photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1370070467/Lauren_Photo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ABLiterary @notnotdave You should! We had so much fun and it's only 45 miles from our house. So it was a really quick trip.", "to_user": "ABLiterary", "to_user_id": 351861227, "to_user_id_str": "351861227", "to_user_name": "Annie Bomke", "in_reply_to_status_id": 148838390643687420, "in_reply_to_status_id_str": "148838390643687425"}, +{"created_at": "Mon, 19 Dec 2011 18:55:46 +0000", "from_user": "alyssa_alz", "from_user_id": 183845684, "from_user_id_str": "183845684", "from_user_name": "Alyssa Alzate", "geo": null, "id": 148838954844700670, "id_str": "148838954844700672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691457697/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691457697/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@EliseDhamodhara have fun in indiaaaaa <333333 bring me back a souvenier ;)", "to_user": "EliseDhamodhara", "to_user_id": 381279810, "to_user_id_str": "381279810", "to_user_name": "Elise Dhamodharan", "in_reply_to_status_id": 148838632659222530, "in_reply_to_status_id_str": "148838632659222529"}, +{"created_at": "Mon, 19 Dec 2011 18:55:46 +0000", "from_user": "pOoLiLtInKtInK", "from_user_id": 172606279, "from_user_id_str": "172606279", "from_user_name": "Avery", "geo": null, "id": 148838953846444030, "id_str": "148838953846444032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698143980/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698143980/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Nina_MadeULook true true but a break and some fun is good for you", "to_user": "Nina_MadeULook", "to_user_id": 250962463, "to_user_id_str": "250962463", "to_user_name": "{ Juss\\u2022 Teen\\u2022 Nahh }", "in_reply_to_status_id": 148837511546941440, "in_reply_to_status_id_str": "148837511546941441"}, +{"created_at": "Mon, 19 Dec 2011 18:55:46 +0000", "from_user": "grampacrafty", "from_user_id": 32691103, "from_user_id_str": "32691103", "from_user_name": "Grampa Crafty", "geo": null, "id": 148838953041137660, "id_str": "148838953041137665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/143704191/AdamAvatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/143704191/AdamAvatar_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Family Fun Craft Night - Williams-Grand Canyon Chamber of ... http://t.co/2VFFmMmQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:45 +0000", "from_user": "AalayANiggaOut_", "from_user_id": 314003821, "from_user_id_str": "314003821", "from_user_name": "aalayih adams", "geo": null, "id": 148838950667161600, "id_str": "148838950667161600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1566008566/c3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566008566/c3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "good boys aint no fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:44 +0000", "from_user": "EloContreras", "from_user_id": 318224595, "from_user_id_str": "318224595", "from_user_name": "Elo Contreras", "geo": null, "id": 148838945470418940, "id_str": "148838945470418945", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1661674056/DSC03027_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661674056/DSC03027_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "have fun with your life every day!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:44 +0000", "from_user": "emtpueblo", "from_user_id": 14634519, "from_user_id_str": "14634519", "from_user_name": "emtpueblo", "geo": null, "id": 148838944946139140, "id_str": "148838944946139137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1320663882/akit11_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1320663882/akit11_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@HSO83 @w00dsfire wow I'm missing out on all the fun.", "to_user": "HSO83", "to_user_id": 157397847, "to_user_id_str": "157397847", "to_user_name": "Joshua Johnson", "in_reply_to_status_id": 148833901970862080, "in_reply_to_status_id_str": "148833901970862080"}, +{"created_at": "Mon, 19 Dec 2011 18:55:44 +0000", "from_user": "NYCmaeven", "from_user_id": 17314820, "from_user_id_str": "17314820", "from_user_name": "NYCmaeven", "geo": null, "id": 148838944472182800, "id_str": "148838944472182784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/64520981/Maeve_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/64520981/Maeve_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@NewBrunsNJ heard good things about Elficon in Hoboken this Friday! So sorry to be missing. Have fun!", "to_user": "NewBrunsNJ", "to_user_id": 38473327, "to_user_id_str": "38473327", "to_user_name": "New Brunswick, NJ"}, +{"created_at": "Mon, 19 Dec 2011 18:55:43 +0000", "from_user": "DeGee23", "from_user_id": 164535185, "from_user_id_str": "164535185", "from_user_name": "~Delaney Here!~", "geo": null, "id": 148838940881854460, "id_str": "148838940881854464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700986424/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700986424/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": ":) last night was amazing minus the drama! Fun dance #mylife", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:42 +0000", "from_user": "kittykatcath", "from_user_id": 256096175, "from_user_id_str": "256096175", "from_user_name": "Cat", "geo": null, "id": 148838938851811330, "id_str": "148838938851811328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1652790696/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652790696/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@mrsphantos.... Ya know I luv ur babies!!! Lol.... Have fun... X x", "to_user": "mrsphantos", "to_user_id": 242883051, "to_user_id_str": "242883051", "to_user_name": "Shazza", "in_reply_to_status_id": 148819871520653300, "in_reply_to_status_id_str": "148819871520653312"}, +{"created_at": "Mon, 19 Dec 2011 18:55:42 +0000", "from_user": "retraite", "from_user_id": 17488777, "from_user_id_str": "17488777", "from_user_name": "retraite", "geo": null, "id": 148838938302349300, "id_str": "148838938302349313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/65846987/Picture_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/65846987/Picture_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Of you can have as much fun with this as you want! here: par elibigninly (Publi\\u00E9 Lun, 19 D\\u00E9c 2011 14:49:40 GMT)T... http://t.co/zHRrLbce", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:42 +0000", "from_user": "Shadowchoul", "from_user_id": 431833727, "from_user_id_str": "431833727", "from_user_name": "Stijn Van der Laan", "geo": null, "id": 148838938012958720, "id_str": "148838938012958720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693250812/1388195935_4_UId3_1_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693250812/1388195935_4_UId3_1_normal.jpeg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@marshmallowAO hey marshmallow i dont want to disturb your fun but it was the real Midget apple ehh i mean Litlle apple.", "to_user": "marshmallowAO", "to_user_id": 206401971, "to_user_id_str": "206401971", "to_user_name": "Marshmallow"}, +{"created_at": "Mon, 19 Dec 2011 18:55:42 +0000", "from_user": "SporttoNet", "from_user_id": 304180780, "from_user_id_str": "304180780", "from_user_name": "SporttoNet", "geo": null, "id": 148838937853575170, "id_str": "148838937853575168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1519303426/sportto_branding_twit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1519303426/sportto_branding_twit_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "@bilalv87 wants you stop making fun of his @CMPunk pajamas. #WWE http://t.co/NMYtRZM6", "to_user": "bilalv87", "to_user_id": 227793700, "to_user_id_str": "227793700", "to_user_name": "Bilal Vakani"}, +{"created_at": "Mon, 19 Dec 2011 18:55:42 +0000", "from_user": "Lrbcn", "from_user_id": 47921167, "from_user_id_str": "47921167", "from_user_name": "Laura", "geo": null, "id": 148838937186668540, "id_str": "148838937186668544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1662764114/beckett_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662764114/beckett_normal.png", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "@cpt__hook I feel this stupid impulse sometimes to just shake my head... it's ridiculously fun", "to_user": "cpt__hook", "to_user_id": 244657391, "to_user_id_str": "244657391", "to_user_name": "rachel", "in_reply_to_status_id": 148838638711615500, "in_reply_to_status_id_str": "148838638711615488"}, +{"created_at": "Mon, 19 Dec 2011 18:55:42 +0000", "from_user": "SlimAssParis_", "from_user_id": 131386789, "from_user_id_str": "131386789", "from_user_name": "Paris )", "geo": null, "id": 148838936922435600, "id_str": "148838936922435584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697696426/ColorTouch-1323800818727_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697696426/ColorTouch-1323800818727_normal.jpeg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Them Was Deadass The Fun Days", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:41 +0000", "from_user": "SerafiaRae", "from_user_id": 35509241, "from_user_id_str": "35509241", "from_user_name": "oh you knoww", "geo": null, "id": 148838933013331970, "id_str": "148838933013331968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692095882/467895047_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692095882/467895047_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "BLAH #MansionParty on 4404 Allison Road Dec23 <-- go! 2 Live DJs Safe and will be FUN AF AGAIN!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:41 +0000", "from_user": "localsportscom", "from_user_id": 271713766, "from_user_id_str": "271713766", "from_user_name": "localsports.com", "geo": null, "id": 148838932497440770, "id_str": "148838932497440769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1303597942/localsports.com_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1303597942/localsports.com_twitter_normal.jpg", "source": "<a href="http://fun.ly" rel="nofollow">fun.ly</a>", "text": "Sunday best for Kev http://t.co/raQ0Qi32", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:41 +0000", "from_user": "MisssRileyJ", "from_user_id": 216785991, "from_user_id_str": "216785991", "from_user_name": "'AlexRiley-J", "geo": null, "id": 148838932380008450, "id_str": "148838932380008448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686867256/moi_et_ursi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686867256/moi_et_ursi_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@shaniAhector aww awesome! Well hope your having fun! And oooo :') I'm sure it is!", "to_user": "shaniAhector", "to_user_id": 351169477, "to_user_id_str": "351169477", "to_user_name": "Shani Anita Hector", "in_reply_to_status_id": 148836778130948100, "in_reply_to_status_id_str": "148836778130948097"}, +{"created_at": "Mon, 19 Dec 2011 18:55:41 +0000", "from_user": "namyeoja", "from_user_id": 61409705, "from_user_id_str": "61409705", "from_user_name": "\\uC9F1 B", "geo": null, "id": 148838931323031550, "id_str": "148838931323031552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693331526/BVa5p6j4_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693331526/BVa5p6j4_normal", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "(-_-)(_ _)(-_-)(_ _) RT @Blood_types: Blood type B won't let anything ruin their fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:41 +0000", "from_user": "_ConceitedMUCH", "from_user_id": 47433126, "from_user_id_str": "47433126", "from_user_name": "Chanel Ar'Manda", "geo": null, "id": 148838930781978620, "id_str": "148838930781978624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697306148/mUDER_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697306148/mUDER_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "we see what them li fuckers in china do for fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:40 +0000", "from_user": "ShareBestClub", "from_user_id": 298062738, "from_user_id_str": "298062738", "from_user_name": "Share The Best Club", "geo": null, "id": 148838930110873600, "id_str": "148838930110873600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1352102401/71135_140848289302967_4045897_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1352102401/71135_140848289302967_4045897_n_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Snyder's of Hanover Pretzel Snaps are a great way to add a fun and festive treat to your holiday goodie... http://t.co/BZiBUR8w", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:40 +0000", "from_user": "MistaKunan", "from_user_id": 77971231, "from_user_id_str": "77971231", "from_user_name": "Kunan", "geo": null, "id": 148838928789680130, "id_str": "148838928789680128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/837536107/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/837536107/me_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@VJohl have fun boss?? Its 3am now..must make sure this go inside my performance appraisal.hehehhehehehhe", "to_user": "VJohl", "to_user_id": 322411027, "to_user_id_str": "322411027", "to_user_name": "Venu Johl", "in_reply_to_status_id": 148835219401744400, "in_reply_to_status_id_str": "148835219401744384"}, +{"created_at": "Mon, 19 Dec 2011 18:55:40 +0000", "from_user": "vowelsehjik3", "from_user_id": 373163030, "from_user_id_str": "373163030", "from_user_name": "Vowels Henry", "geo": null, "id": 148838928328302600, "id_str": "148838928328302592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1541981602/f_36_w_0005_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541981602/f_36_w_0005_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "At the mall spending money, having fun payDay", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:40 +0000", "from_user": "PurpPandaNinja", "from_user_id": 400228918, "from_user_id_str": "400228918", "from_user_name": "Alex Juan", "geo": null, "id": 148838927627857920, "id_str": "148838927627857921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1614704691/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1614704691/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I get yelled at for making fun of people's voices, but then get made fun of about everything I does!! -_- ;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:40 +0000", "from_user": "SaleemOfficial", "from_user_id": 440917823, "from_user_id_str": "440917823", "from_user_name": "Saleem Ahmed", "geo": null, "id": 148838927552360450, "id_str": "148838927552360448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702270408/374713_333067916720470_100000517926147_1404053_218779549_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702270408/374713_333067916720470_100000517926147_1404053_218779549_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@chovenJJ LOL makin me feel Embarrased On Here :P :/ U Goo Have Fun Ill Speak 2 You Later xx", "to_user": "chovenJJ", "to_user_id": 439624960, "to_user_id_str": "439624960", "to_user_name": "choven JJ", "in_reply_to_status_id": 148836235383799800, "in_reply_to_status_id_str": "148836235383799811"}, +{"created_at": "Mon, 19 Dec 2011 18:55:40 +0000", "from_user": "AlexandraSvardh", "from_user_id": 393338060, "from_user_id_str": "393338060", "from_user_name": "Alexandra Sv\\u00E4rdh \\u2661", "geo": null, "id": 148838926839316480, "id_str": "148838926839316480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681184467/Photo_on_2011-10-09_at_11.28_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681184467/Photo_on_2011-10-09_at_11.28_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Living Single may seem fun while it lasts but at the end of the day everyone wants someone to love.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:39 +0000", "from_user": "Bambi_Baby18", "from_user_id": 331348179, "from_user_id_str": "331348179", "from_user_name": "Brandie Mae(:", "geo": null, "id": 148838924201111550, "id_str": "148838924201111552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1654306668/M2Sy609n_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654306668/M2Sy609n_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @elegant_allure: Bad boys aint no good, good boys aint no fun.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:39 +0000", "from_user": "FreshPrinceFel", "from_user_id": 46432207, "from_user_id_str": "46432207", "from_user_name": "Felix Emmanuel", "geo": null, "id": 148838923190280200, "id_str": "148838923190280192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689269131/383728_2392019154239_1063706181_32360015_685902872_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689269131/383728_2392019154239_1063706181_32360015_685902872_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Last night was horrible apart form da fun i had", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:38 +0000", "from_user": "M7mdanyMJ", "from_user_id": 405498013, "from_user_id_str": "405498013", "from_user_name": "Moochilico", "geo": null, "id": 148838920724033540, "id_str": "148838920724033536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702310088/hyrefksdsjbhsbsbx_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702310088/hyrefksdsjbhsbsbx_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "here to learn what they want, how to have fun and be happy. And how to make it all happen.\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:38 +0000", "from_user": "lrxmonroe", "from_user_id": 344196618, "from_user_id_str": "344196618", "from_user_name": "LearningRx of Monroe", "geo": null, "id": 148838920287817730, "id_str": "148838920287817729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1466257854/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1466257854/image_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Fun Fact: In 1936, England became the first country in the world to provide regular public broadcasting on television.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:38 +0000", "from_user": "CremeDeLaKim", "from_user_id": 98259846, "from_user_id_str": "98259846", "from_user_name": "Kimberly", "geo": null, "id": 148838918203248640, "id_str": "148838918203248640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1600331231/Snapshot_20111021_17_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600331231/Snapshot_20111021_17_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "What's the fun without a little teasing?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:37 +0000", "from_user": "rev313", "from_user_id": 158779335, "from_user_id_str": "158779335", "from_user_name": "Aidden Keli", "geo": null, "id": 148838914617131000, "id_str": "148838914617131008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1428048829/twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1428048829/twitter_normal.png", "source": "<a href="http://fun.ly" rel="nofollow">fun.ly</a>", "text": "Fresh From http://t.co/O3llhfsG today http://t.co/bUXmP5Ra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:35 +0000", "from_user": "JAE_ontheTRACK", "from_user_id": 116899533, "from_user_id_str": "116899533", "from_user_name": "JAdElyn Dyson:)", "geo": null, "id": 148838909483302900, "id_str": "148838909483302912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681595917/JAE_ontheTRACK_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681595917/JAE_ontheTRACK_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@Chad2thebone_: Living Single might seem fun while it lasts but at the end of the day everyone wants someone ..\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:35 +0000", "from_user": "kelseymrice17", "from_user_id": 360799311, "from_user_id_str": "360799311", "from_user_name": "Kelsey Rice", "geo": null, "id": 148838906027196400, "id_str": "148838906027196416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699631948/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699631948/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@HMcF I'm in the office now, poor thing. I deal with asthma when I'm sick and exercising, it's no fun", "to_user": "HMcF", "to_user_id": 30956174, "to_user_id_str": "30956174", "to_user_name": "Heather McFetters", "in_reply_to_status_id": 148838291091898370, "in_reply_to_status_id_str": "148838291091898369"}, +{"created_at": "Mon, 19 Dec 2011 18:55:34 +0000", "from_user": "IfyKush", "from_user_id": 409390132, "from_user_id_str": "409390132", "from_user_name": "Ify Okonma", "geo": null, "id": 148838904945049600, "id_str": "148838904945049600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1665066038/077_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665066038/077_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Girls jus wann' have fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:32 +0000", "from_user": "BillyeCanario90", "from_user_id": 438889773, "from_user_id_str": "438889773", "from_user_name": "Billye Canario", "geo": null, "id": 148838896359309300, "id_str": "148838896359309312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": null, "source": "<a href="http://twitter.com/">web</a>", "text": "@GretchenWhitee Don't you wish you had this $500 starbucks card http://t.co/0q1GwvAs", "to_user": "GretchenWhitee", "to_user_id": 311718826, "to_user_id_str": "311718826", "to_user_name": "Gretchen\\u2600\\u264C", "in_reply_to_status_id": 148838089752707070, "in_reply_to_status_id_str": "148838089752707072"}, +{"created_at": "Mon, 19 Dec 2011 18:55:32 +0000", "from_user": "spoiledLO", "from_user_id": 429135384, "from_user_id_str": "429135384", "from_user_name": "lodecia ", "geo": null, "id": 148838893259722750, "id_str": "148838893259722752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690465416/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690465416/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I'm at work now. Fun ends...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:31 +0000", "from_user": "sfalkowskii", "from_user_id": 398192198, "from_user_id_str": "398192198", "from_user_name": "Sarah Falkowski", "geo": null, "id": 148838890818633730, "id_str": "148838890818633728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1650778776/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650778776/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@court_nelson23 mMmMm, I found these black sparkley mini dresses #owow (; it's going to be toOo fun(;", "to_user": "court_nelson23", "to_user_id": 392359621, "to_user_id_str": "392359621", "to_user_name": "courtney nelson"}, +{"created_at": "Mon, 19 Dec 2011 18:55:31 +0000", "from_user": "wongwongwongys", "from_user_id": 327567195, "from_user_id_str": "327567195", "from_user_name": "Wong Yu Shan", "geo": null, "id": 148838889170280450, "id_str": "148838889170280450", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1510061128/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1510061128/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@tan_wei_rong @mathiwaldorf @lihui94 hey!!! How's everything! Are you having fun?! Are you thinking of us who're stuck in singapore?!", "to_user": "tan_wei_rong", "to_user_id": 53905057, "to_user_id_str": "53905057", "to_user_name": "Tan Wei Rong", "in_reply_to_status_id": 148818805823516670, "in_reply_to_status_id_str": "148818805823516672"}, +{"created_at": "Mon, 19 Dec 2011 18:55:30 +0000", "from_user": "ZulemaZavala", "from_user_id": 405001835, "from_user_id_str": "405001835", "from_user_name": "Zulema Zavala", "geo": null, "id": 148838884799811600, "id_str": "148838884799811584", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701736953/snap_16_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701736953/snap_16_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@AmandaSharonXu oh fun! :D", "to_user": "AmandaSharonXu", "to_user_id": 430284264, "to_user_id_str": "430284264", "to_user_name": "Amanda Xu", "in_reply_to_status_id": 148838328907726850, "in_reply_to_status_id_str": "148838328907726851"}, +{"created_at": "Mon, 19 Dec 2011 18:55:28 +0000", "from_user": "nFaithPhoto", "from_user_id": 216419396, "from_user_id_str": "216419396", "from_user_name": "N Faith Productions", "geo": null, "id": 148838879775039500, "id_str": "148838879775039488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1168662284/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1168662284/twitter_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Just wanted to share a wonderful session...I loved all the colors and textures, plus a fun family that was up for... http://t.co/AxmEsTz2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:28 +0000", "from_user": "YoGabbaGabba_x0", "from_user_id": 316825271, "from_user_id_str": "316825271", "from_user_name": "Gabrielle Dugan =)", "geo": null, "id": 148838877069713400, "id_str": "148838877069713408", "iso_language_code": "is", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692186632/35195_145242008821024_100000056770050_428475_6312470_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692186632/35195_145242008821024_100000056770050_428475_6312470_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@chloooxoxo lmfao aaah , itl b fun :D", "to_user": "chloooxoxo", "to_user_id": 347492065, "to_user_id_str": "347492065", "to_user_name": "chloe honaker", "in_reply_to_status_id": 148837082570297340, "in_reply_to_status_id_str": "148837082570297344"}, +{"created_at": "Mon, 19 Dec 2011 18:55:27 +0000", "from_user": "Lourieevm", "from_user_id": 386035447, "from_user_id_str": "386035447", "from_user_name": "Lourie Appelman", "geo": null, "id": 148838875807219700, "id_str": "148838875807219713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1575437011/zifso0551t_131062600_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575437011/zifso0551t_131062600_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Homemade playdough makes a wonderful gift, and the girls and I had fun making _candy_ cane playdough for their... http://t.co/akWrhxTw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:26 +0000", "from_user": "YeahImChill", "from_user_id": 348173082, "from_user_id_str": "348173082", "from_user_name": "Derrick Terrell ", "geo": null, "id": 148838869251526660, "id_str": "148838869251526656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694594120/LEEYURRRR_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694594120/LEEYURRRR_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @CHRISSY_Ayo: Lmaoo, tubing is fun affff! We should all go!\\n*thinks about my summers in the countries*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:26 +0000", "from_user": "RaeannLyke3192", "from_user_id": 439433262, "from_user_id_str": "439433262", "from_user_name": "Raeann Lyke", "geo": null, "id": 148838868462997500, "id_str": "148838868462997506", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@jamiexskoops Please retweet this you followers will love it http://t.co/egV6K3IW", "to_user": "jamiexskoops", "to_user_id": 22493373, "to_user_id_str": "22493373", "to_user_name": "Jamie Skupien", "in_reply_to_status_id": 148838123911127040, "in_reply_to_status_id_str": "148838123911127040"}, +{"created_at": "Mon, 19 Dec 2011 18:55:25 +0000", "from_user": "ChemicallySweet", "from_user_id": 86412156, "from_user_id_str": "86412156", "from_user_name": "Safia", "geo": null, "id": 148838867397644300, "id_str": "148838867397644288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1672402741/P1030402_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672402741/P1030402_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @cuteypie5412: @ChemicallySweet ad i had soooo much fun :D needs to happen again", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:25 +0000", "from_user": "andou0007", "from_user_id": 431419258, "from_user_id_str": "431419258", "from_user_name": "andou0007", "geo": null, "id": 148838863874433020, "id_str": "148838863874433024", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "rast67 decap @le mcoins fun fmat taktil nenrw...ha3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:24 +0000", "from_user": "its_10iola", "from_user_id": 173406867, "from_user_id_str": "173406867", "from_user_name": "Sir jonz alot", "geo": null, "id": 148838862188326900, "id_str": "148838862188326913", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702032272/mi_20nd_20mima_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702032272/mi_20nd_20mima_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Chronic 2mao its gonna be mad fun", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:23 +0000", "from_user": "YUUUPitsKatie", "from_user_id": 176592909, "from_user_id_str": "176592909", "from_user_name": "Katie :)", "geo": null, "id": 148838859122282500, "id_str": "148838859122282496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698694921/yuuup_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698694921/yuuup_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Currently giving my dog a bath in the bathtub........let's just say I'm soaking wet and there are bubbles everywhere. SO fun!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:23 +0000", "from_user": "MakeupDolls", "from_user_id": 198658333, "from_user_id_str": "198658333", "from_user_name": "The Makeup Dolls", "geo": null, "id": 148838856463101950, "id_str": "148838856463101952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1552072092/420_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552072092/420_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TBDofficial: Here's another fun holiday hair tutorial. Part bun, part braid! Check it out\\u2026 and Happy Monday!! http://t.co/Tmj6mrZj XO!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:22 +0000", "from_user": "Indyman70", "from_user_id": 34843238, "from_user_id_str": "34843238", "from_user_name": "Bill Bowsman", "geo": null, "id": 148838852046503940, "id_str": "148838852046503936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691677733/93b24776-ab2c-4bc9-b350-194c526ed8f7_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691677733/93b24776-ab2c-4bc9-b350-194c526ed8f7_normal.png", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Time to fight the fun Louisville traffic", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:22 +0000", "from_user": "AriGrandesXoxos", "from_user_id": 272453654, "from_user_id_str": "272453654", "from_user_name": "Sarah Grande \\u2661", "geo": null, "id": 148838851564158980, "id_str": "148838851564158976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699797114/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699797114/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ArianaGrande I have to do homework ... But if I listen to your cover \"last dance\" it's much more fun then before. \\u2665 xoxo #cyberhug", "to_user": "ArianaGrande", "to_user_id": 34507480, "to_user_id_str": "34507480", "to_user_name": "Ariana Grande"}, +{"created_at": "Mon, 19 Dec 2011 18:55:20 +0000", "from_user": "jeenny_jimenez", "from_user_id": 243015491, "from_user_id_str": "243015491", "from_user_name": "Jeeny' Jim\\u00E9nez", "geo": null, "id": 148838844492554240, "id_str": "148838844492554242", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689856669/womaninvintagesunglasses_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689856669/womaninvintagesunglasses_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @m_magazine: So great talking to @onedirection bright and early this morning! Such fun guys! Look for the exclusive interview deets in next issue of M!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:20 +0000", "from_user": "gigs4NYC", "from_user_id": 432221780, "from_user_id_str": "432221780", "from_user_name": "New York City gigs", "geo": null, "id": 148838843016163330, "id_str": "148838843016163329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1682411666/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682411666/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#gigs4u #gigs Pantyhose-Nylon-Stockings fun gig with open minded gal today (New York) http://t.co/aihFhdGj #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:17 +0000", "from_user": "jhaydelprado", "from_user_id": 41085017, "from_user_id_str": "41085017", "from_user_name": "J. A. del Prado", "geo": null, "id": 148838833822248960, "id_str": "148838833822248960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1460135813/3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1460135813/3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @myckearcano: @LeicaG6 @TrishYap @rhodelsazon @jhaydelprado @itssoMELicious @KnicoleLovesYou SUPER FUN EVE MAH BABIES! THANK YOUU!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:17 +0000", "from_user": "jbstoryteller", "from_user_id": 122129067, "from_user_id_str": "122129067", "from_user_name": "Joanna Ballard ", "geo": null, "id": 148838831209193470, "id_str": "148838831209193472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/746716072/MeBySM_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/746716072/MeBySM_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"Creativity is inventing, experimenting, growing, taking risks, breaking rules, making mistakes, and having fun.\" ~ Mary Lou Cook", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:15 +0000", "from_user": "CynthiaChebultz", "from_user_id": 25297244, "from_user_id_str": "25297244", "from_user_name": "Cynthia Chebultz", "geo": null, "id": 148838825366519800, "id_str": "148838825366519808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/103129678/DSC_0527bw_sq_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/103129678/DSC_0527bw_sq_sm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Bros: Make fun of him and he\\u2019ll punch you in the face: guidos bros douchebags fratboys - Bros: Make fun of him a... http://t.co/6JhFxFXf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:14 +0000", "from_user": "Wubu_Bubu", "from_user_id": 36025384, "from_user_id_str": "36025384", "from_user_name": "Clifford War", "geo": null, "id": 148838820404662270, "id_str": "148838820404662272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1638554100/IMG00341-20111104-2038_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638554100/IMG00341-20111104-2038_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "#Journal tweeting about @Whoopyboogly is fun. Meanwhile, hi @BenKipgen @Leshre @swatidraik @cynthiafeegrade @AslLikeIt :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:13 +0000", "from_user": "LKNlove", "from_user_id": 30711971, "from_user_id_str": "30711971", "from_user_name": "LKN", "geo": null, "id": 148838813895114750, "id_str": "148838813895114754", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1614178918/HCBBM__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1614178918/HCBBM__1__normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "The picture I sent @AdeSnooki of @TraceThisOne was too fun-nay. I was too sick for that, but who cares! #Boom", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:12 +0000", "from_user": "omowunzy", "from_user_id": 250095341, "from_user_id_str": "250095341", "from_user_name": "Adewunmi Dominic", "geo": null, "id": 148838813018505200, "id_str": "148838813018505216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702048615/IMG02011-20111204-1034_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702048615/IMG02011-20111204-1034_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @IAM_PURPLE: If ya havin fun goin out Dis Festive season make sure dont drink much!saw 3 car accidents at 3rd mainland yesterday!but sha I tipsy!Lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:12 +0000", "from_user": "SweetAsPie21", "from_user_id": 414561212, "from_user_id_str": "414561212", "from_user_name": "jazmin nichols", "geo": null, "id": 148838809293950980, "id_str": "148838809293950976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1675810130/jasmine2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675810130/jasmine2_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Rain rain come my way, i just wanna have some fun today!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:11 +0000", "from_user": "PrincessIveyy", "from_user_id": 209872940, "from_user_id_str": "209872940", "from_user_name": "Princess Iveyy", "geo": null, "id": 148838808182464500, "id_str": "148838808182464512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686096738/mail_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686096738/mail_normal.jpg", "source": "<a href="http://www.handmark.com" rel="nofollow">TweetCaster for iOS</a>", "text": "RT RT @REGGIEMINAJ: Everyone download Voxer from your market. Fun app :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:11 +0000", "from_user": "Paul_PJPhoto", "from_user_id": 65762750, "from_user_id_str": "65762750", "from_user_name": "Paul Clapperton", "geo": null, "id": 148838805502304260, "id_str": "148838805502304256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1312954211/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312954211/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@ferjuaristi lenses are backward compatible then? Was thinking canon A1 or maybe a holga. It's just for fun really", "to_user": "ferjuaristi", "to_user_id": 14861508, "to_user_id_str": "14861508", "to_user_name": "ferjuaristi", "in_reply_to_status_id": 148836031091847170, "in_reply_to_status_id_str": "148836031091847170"}, +{"created_at": "Mon, 19 Dec 2011 18:55:09 +0000", "from_user": "akareilly", "from_user_id": 18023171, "from_user_id_str": "18023171", "from_user_name": "akareilly", "geo": null, "id": 148838799995174900, "id_str": "148838799995174913", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1184186432/akareilly_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1184186432/akareilly_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @RepZoeLofgren: AMA over. That was fun. #SOPA http://t.co/Ra7Aulu1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:08 +0000", "from_user": "DNBFirst", "from_user_id": 154598856, "from_user_id_str": "154598856", "from_user_name": "DNB First", "geo": null, "id": 148838794412572670, "id_str": "148838794412572673", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/980792343/MH_logo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/980792343/MH_logo_normal.gif", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Looking for something fun and festive to do this week? How about a carriage ride in Media this Wednesday http://t.co/Ln0yffEj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:07 +0000", "from_user": "OnSomeNUish", "from_user_id": 235042935, "from_user_id_str": "235042935", "from_user_name": "\\u2640Jana\\u00E9\\u2122", "geo": null, "id": 148838790633488400, "id_str": "148838790633488384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697723971/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697723971/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I think I'm going to drink today and finally bake that fun fetti cake...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:07 +0000", "from_user": "croncemuhueo9", "from_user_id": 397950076, "from_user_id_str": "397950076", "from_user_name": "Cronce Madrox", "geo": null, "id": 148838788880273400, "id_str": "148838788880273408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1605865420/imagesCA7GNJHX_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1605865420/imagesCA7GNJHX_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "1st hour was so fun today i love dance class", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:06 +0000", "from_user": "SwaddleDesigns", "from_user_id": 29858496, "from_user_id_str": "29858496", "from_user_name": "SwaddleDesigns", "geo": null, "id": 148838784308494340, "id_str": "148838784308494336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1172051238/Lynette_with_Swaddle_Kaia_-_Compressed_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1172051238/Lynette_with_Swaddle_Kaia_-_Compressed_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @helloterumi: @SeattleMonorail @seattlecenter and there's also #seesanta at @tcmseattle this morning! So many fun things to do #Winterfest", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:05 +0000", "from_user": "SarahMartinByrd", "from_user_id": 166239938, "from_user_id_str": "166239938", "from_user_name": "Sarah Martin Byrd", "geo": null, "id": 148838781393436670, "id_str": "148838781393436672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1078027554/guardian-spirit-night-GIF_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1078027554/guardian-spirit-night-GIF_normal.gif", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Have some fun with this weeks blog post, \"Old Sayings.\"\\nhttp://t.co/sQa9GO6D http://t.co/q2D4d27Q", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:05 +0000", "from_user": "sarasteward", "from_user_id": 160351449, "from_user_id_str": "160351449", "from_user_name": "Sara Steward", "geo": null, "id": 148838780936257540, "id_str": "148838780936257536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@SwagBucks Kinda too much thinking, it starts to lose the \"fun\" when I'm on vacation working my brain! lol", "to_user": "SwagBucks", "to_user_id": 18747993, "to_user_id_str": "18747993", "to_user_name": "SwagBucks.com", "in_reply_to_status_id": 148838242614116350, "in_reply_to_status_id_str": "148838242614116352"}, +{"created_at": "Mon, 19 Dec 2011 18:55:04 +0000", "from_user": "MsTeeTee82", "from_user_id": 163608566, "from_user_id_str": "163608566", "from_user_name": "Tonya", "geo": null, "id": 148838776230248450, "id_str": "148838776230248448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1510619208/te_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1510619208/te_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@abe_mr1night oh yea? I went there yesterday..have fun..lol", "to_user": "abe_mr1night", "to_user_id": 149293545, "to_user_id_str": "149293545", "to_user_name": "Mr1night", "in_reply_to_status_id": 148838423678042100, "in_reply_to_status_id_str": "148838423678042114"}, +{"created_at": "Mon, 19 Dec 2011 18:55:04 +0000", "from_user": "TVDFamilyFrench", "from_user_id": 50990213, "from_user_id_str": "50990213", "from_user_name": "Madi*Esme*Nat", "geo": null, "id": 148838775966023680, "id_str": "148838775966023681", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685307061/377802_315934365103317_191178384245583_1205548_1620825586_n__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685307061/377802_315934365103317_191178384245583_1205548_1620825586_n__1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@KatiedelaiDE bof de toute fa\\u00E7on c'est juste pour le fun \\u00E7a dura pas!", "to_user": "KatiedelaiDE", "to_user_id": 268244206, "to_user_id_str": "268244206", "to_user_name": "Ian Somerhalder \\u2665", "in_reply_to_status_id": 148837434719870980, "in_reply_to_status_id_str": "148837434719870976"}, +{"created_at": "Mon, 19 Dec 2011 18:55:02 +0000", "from_user": "RuntWolfJunior", "from_user_id": 270327914, "from_user_id_str": "270327914", "from_user_name": "lauren vellucci", "geo": null, "id": 148838768995082240, "id_str": "148838768995082241", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1550952594/317601_259514184073699_100000453578672_923110_7458693_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1550952594/317601_259514184073699_100000453578672_923110_7458693_n_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@rararach okayyy have fun! Ill get a hold of you tommorrow pretty women (:", "to_user": "rararach", "to_user_id": 137142071, "to_user_id_str": "137142071", "to_user_name": "rachel"}, +{"created_at": "Mon, 19 Dec 2011 18:55:00 +0000", "from_user": "Adore_Brittany", "from_user_id": 232738959, "from_user_id_str": "232738959", "from_user_name": "\\u2654 Britt Bratt \\u2654", "geo": null, "id": 148838759188791300, "id_str": "148838759188791296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685811462/_adore_brittany_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685811462/_adore_brittany_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Your welcome lol I had fun even tho my drunk ass screamed in drakes face lmao RT @AngelicaGuzma19: @Adore_Brittany Thankss :) \\nIt was nice s", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:58 +0000", "from_user": "TooThickTooQuit", "from_user_id": 348694630, "from_user_id_str": "348694630", "from_user_name": "TeamEthiopiaBadBitch", "geo": null, "id": 148838752628912130, "id_str": "148838752628912128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676280835/IwTVm1Qb_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676280835/IwTVm1Qb_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iEnriqueSays: Living Single may seem fun while it lasts but at the end of the day everyone wants someone to love.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:56 +0000", "from_user": "geegettnmny", "from_user_id": 103751368, "from_user_id_str": "103751368", "from_user_name": "gee", "geo": null, "id": 148838744957534200, "id_str": "148838744957534208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1442951752/Picture0454_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1442951752/Picture0454_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@Thugniificent If small girls are fun sized, are fat chicks king sized?\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:53 +0000", "from_user": "Marcooo732", "from_user_id": 221583836, "from_user_id_str": "221583836", "from_user_name": "Marcus Cummings", "geo": null, "id": 148838732039069700, "id_str": "148838732039069696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1648765150/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648765150/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@RealGreggBarber snowboard, it's mad fun dude.", "to_user": "RealGreggBarber", "to_user_id": 230078007, "to_user_id_str": "230078007", "to_user_name": "G", "in_reply_to_status_id": 148785276335034370, "in_reply_to_status_id_str": "148785276335034368"}, +{"created_at": "Mon, 19 Dec 2011 18:54:52 +0000", "from_user": "jjozzahSBH", "from_user_id": 227278723, "from_user_id_str": "227278723", "from_user_name": "Josefine Evans", "geo": null, "id": 148838728096419840, "id_str": "148838728096419840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1647249048/Picture_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647249048/Picture_7_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Isn't it fun that I actually gets surprised if someone talks to me in school?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:50 +0000", "from_user": "KINGDINGALING_1", "from_user_id": 28588178, "from_user_id_str": "28588178", "from_user_name": "KINGDINGALING", "geo": null, "id": 148838720177569800, "id_str": "148838720177569793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1652912196/eatinit_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652912196/eatinit_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@mathechr that Lego game is the best one they created...shit is fun..enjoy...", "to_user": "mathechr", "to_user_id": 58474685, "to_user_id_str": "58474685", "to_user_name": "mathechr", "in_reply_to_status_id": 148838556822028300, "in_reply_to_status_id_str": "148838556822028288"}, +{"created_at": "Mon, 19 Dec 2011 18:54:50 +0000", "from_user": "2flamey", "from_user_id": 283152699, "from_user_id_str": "283152699", "from_user_name": "Sarah ", "geo": null, "id": 148838716847292400, "id_str": "148838716847292417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668463641/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668463641/me_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@kim_copeland I am now jealous. Have fun :)", "to_user": "kim_copeland", "to_user_id": 233288030, "to_user_id_str": "233288030", "to_user_name": "kim copeland", "in_reply_to_status_id": 148837583596687360, "in_reply_to_status_id_str": "148837583596687360"}, +{"created_at": "Mon, 19 Dec 2011 18:54:48 +0000", "from_user": "Mildavu99", "from_user_id": 388846968, "from_user_id_str": "388846968", "from_user_name": "Milda Garnica", "geo": null, "id": 148838708689383420, "id_str": "148838708689383424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1583189099/GJHL-1452_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583189099/GJHL-1452_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Eye-D Picture Challenge Grades 3 & 4 edition: 125 Pictures & 625 Challenging Questions: The fun way to learn by ... http://t.co/jEJUF5al", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:46 +0000", "from_user": "Mones14", "from_user_id": 222287510, "from_user_id_str": "222287510", "from_user_name": "Ramon Macias", "geo": null, "id": 148838703450689540, "id_str": "148838703450689537", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684655872/G31xDuoe_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684655872/G31xDuoe_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Chrisesco14 @Seize14 what a beach. We should drink cheladas later...and not invite him. And record how much fun we have without him.", "to_user": "Chrisesco14", "to_user_id": 429651522, "to_user_id_str": "429651522", "to_user_name": "Chris Escobedo", "in_reply_to_status_id": 148837962040348670, "in_reply_to_status_id_str": "148837962040348673"}, +{"created_at": "Mon, 19 Dec 2011 18:54:45 +0000", "from_user": "DaBieberMoney", "from_user_id": 120564022, "from_user_id_str": "120564022", "from_user_name": "amber", "geo": null, "id": 148838698174267400, "id_str": "148838698174267392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698938461/385145_248238745236414_100001508726363_694547_2068218434_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698938461/385145_248238745236414_100001508726363_694547_2068218434_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @NiallOfficial: Legooo! Southend! Gona be fun, get involved!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:41 +0000", "from_user": "bbbsnwwa", "from_user_id": 48508793, "from_user_id_str": "48508793", "from_user_name": "BBBS NW WA", "geo": null, "id": 148838682764390400, "id_str": "148838682764390400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/843980024/Purple_Figure_Logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/843980024/Purple_Figure_Logo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Happy Monday everyone! What fun things are going on in Bellingham this week?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} + +, +{"created_at": "Mon, 19 Dec 2011 18:40:10 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": +{"coordinates": [41.443,-8.2933], "type": "Point"}, "id": 148835026933526530, "id_str": "148835026933526528", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Geofweet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:20 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 148829028416098300, "id_str": "148829028416098304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "current status: downloading twitter, moar data", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:37:02 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 148804040023736320, "id_str": "148804040023736320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@kstirman i meant :)", "to_user": "kstirman", "to_user_id": 8723762, "to_user_id_str": "8723762", "to_user_name": "Kelly Stirman"}, +{"created_at": "Mon, 19 Dec 2011 16:36:56 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 148804015558377470, "id_str": "148804015558377472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "fun to watch http://t.co/3B5rWoUy /thanks #kstirman", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:22:38 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 148785316419997700, "id_str": "148785316419997696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@kstirman xml with xquery. much easier. escaping in json is pain", "to_user": "kstirman", "to_user_id": 8723762, "to_user_id_str": "8723762", "to_user_name": "Kelly Stirman", "in_reply_to_status_id": 148785142872289280, "in_reply_to_status_id_str": "148785142872289280"}, +{"created_at": "Mon, 19 Dec 2011 15:21:57 +0000", "from_user": "kstirman", "from_user_id": 8723762, "from_user_id_str": "8723762", "from_user_name": "Kelly Stirman", "geo": null, "id": 148785142872289280, "id_str": "148785142872289280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/210467530/244.mr.t.092806_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/210467530/244.mr.t.092806_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dscape Is it easier to create JSON with javascript or XML with XQuery?", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 148723956344561660, "in_reply_to_status_id_str": "148723956344561664"}, +{"created_at": "Mon, 19 Dec 2011 11:34:09 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 148727818627457020, "id_str": "148727818627457024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@vmische thanks :)", "to_user": "vmische", "to_user_id": 140552229, "to_user_id_str": "140552229", "to_user_name": "Volker Mische", "in_reply_to_status_id": 148727641497808900, "in_reply_to_status_id_str": "148727641497808896"}, +{"created_at": "Mon, 19 Dec 2011 11:33:27 +0000", "from_user": "vmische", "from_user_id": 140552229, "from_user_id_str": "140552229", "from_user_name": "Volker Mische", "geo": null, "id": 148727641497808900, "id_str": "148727641497808896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/886369436/favicon007_73x73_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/886369436/favicon007_73x73_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@dscape For huge shp files, try e.g. netherlands.shp.zip from http://t.co/ZCWq6MmJ", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job"}, +{"created_at": "Mon, 19 Dec 2011 11:28:49 +0000", "from_user": "vmische", "from_user_id": 140552229, "from_user_id_str": "140552229", "from_user_name": "Volker Mische", "geo": null, "id": 148726473585471500, "id_str": "148726473585471488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/886369436/favicon007_73x73_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/886369436/favicon007_73x73_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@dscape Either use https://t.co/CZrGyYkd and the OSM planet file. Or any SHP file and convert it with ogr2ogr.", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 148723956344561660, "in_reply_to_status_id_str": "148723956344561664"}, +{"created_at": "Mon, 19 Dec 2011 11:23:28 +0000", "from_user": "luismreis", "from_user_id": 16416919, "from_user_id_str": "16416919", "from_user_name": "luismreis", "geo": null, "id": 148725127566209020, "id_str": "148725127566209024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/539006194/IMG_0670twitter_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/539006194/IMG_0670twitter_normal.JPG", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@dscape Not really, just use a XSLT. #trollollollol", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 148724787571732480, "in_reply_to_status_id_str": "148724787571732481"}, +{"created_at": "Mon, 19 Dec 2011 11:22:07 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 148724787571732480, "id_str": "148724787571732481", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@luismreis if you can convert a file easily from xml to json then i probably think the file is too small :)", "to_user": "luismreis", "to_user_id": 16416919, "to_user_id_str": "16416919", "to_user_name": "luismreis", "in_reply_to_status_id": 148724597011918850, "in_reply_to_status_id_str": "148724597011918848"}, +{"created_at": "Mon, 19 Dec 2011 11:21:21 +0000", "from_user": "luismreis", "from_user_id": 16416919, "from_user_id_str": "16416919", "from_user_name": "luismreis", "geo": null, "id": 148724597011918850, "id_str": "148724597011918848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/539006194/IMG_0670twitter_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/539006194/IMG_0670twitter_normal.JPG", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@dscape That's easy: just find a XML to JSON converter and search for maven .pom files", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 148723956344561660, "in_reply_to_status_id_str": "148723956344561664"}, +{"created_at": "Mon, 19 Dec 2011 11:18:49 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 148723956344561660, "id_str": "148723956344561664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "dear #lazyweb where can i find the largest json files in the world? :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 08:32:02 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 148681986112888830, "id_str": "148681986112888832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @substack: I like turtles: http://t.co/uoswx4E5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 20:45:21 +0000", "from_user": "PatrickHeneise", "from_user_id": 18073349, "from_user_id_str": "18073349", "from_user_name": "Patrick Heneise", "geo": null, "id": 148504145047978000, "id_str": "148504145047977985", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1462247153/CIMG2411_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1462247153/CIMG2411_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@dscape I've got a cool json file. ;) DM me.", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job"}, +{"created_at": "Sun, 18 Dec 2011 17:54:15 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 148461085236805630, "id_str": "148461085236805633", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@3rdEden check dscape/clarinet", "to_user": "3rdEden", "to_user_id": 14350255, "to_user_id_str": "14350255", "to_user_name": "Arnout Kazemier", "in_reply_to_status_id": 148460764053774340, "in_reply_to_status_id_str": "148460764053774336"}, +{"created_at": "Sun, 18 Dec 2011 17:54:04 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 148461039938310140, "id_str": "148461039938310145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@3rdEden yup, check. including docs and all.", "to_user": "3rdEden", "to_user_id": 14350255, "to_user_id_str": "14350255", "to_user_name": "Arnout Kazemier", "in_reply_to_status_id": 148460764053774340, "in_reply_to_status_id_str": "148460764053774336"}, +{"created_at": "Sun, 18 Dec 2011 17:52:59 +0000", "from_user": "3rdEden", "from_user_id": 14350255, "from_user_id_str": "14350255", "from_user_name": "Arnout Kazemier", "geo": null, "id": 148460764053774340, "id_str": "148460764053774336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@dscape try parsing out the NPM registry ?", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 148458745419149300, "in_reply_to_status_id_str": "148458745419149312"}, +{"created_at": "Sun, 18 Dec 2011 17:44:57 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 148458745419149300, "id_str": "148458745419149312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "anyone got cool json files that are hard to parse? send them my way", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 13:30:12 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 148394632328392700, "id_str": "148394632328392704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@creationix s/docs/code/", "to_user": "creationix", "to_user_id": 70596949, "to_user_id_str": "70596949", "to_user_name": "Tim Caswell", "in_reply_to_status_id": 148393889156431870, "in_reply_to_status_id_str": "148393889156431873"}, +{"created_at": "Sun, 18 Dec 2011 13:29:56 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 148394567421538300, "id_str": "148394567421538304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@creationix would rather have worked on yours if i knew - some docs would have helped finding what scanning the docs didn't :)", "to_user": "creationix", "to_user_id": 70596949, "to_user_id_str": "70596949", "to_user_name": "Tim Caswell", "in_reply_to_status_id": 148393889156431870, "in_reply_to_status_id_str": "148393889156431873"}, +{"created_at": "Sun, 18 Dec 2011 13:28:13 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 148394134988783600, "id_str": "148394134988783616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@creationix i was under the impression that yours was not streaming? that's why I'm doing it :)", "to_user": "creationix", "to_user_id": 70596949, "to_user_id_str": "70596949", "to_user_name": "Tim Caswell", "in_reply_to_status_id": 148393889156431870, "in_reply_to_status_id_str": "148393889156431873"}, +{"created_at": "Sun, 18 Dec 2011 13:27:14 +0000", "from_user": "creationix", "from_user_id": 70596949, "from_user_id_str": "70596949", "from_user_name": "Tim Caswell", "geo": null, "id": 148393889156431870, "id_str": "148393889156431873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/774817444/c953ddd239707998340e1a6fbb3eeb46_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/774817444/c953ddd239707998340e1a6fbb3eeb46_normal.jpeg", "source": "<a href="http://swipe.nokia.com/" rel="nofollow">Tweet from Nokia N9</a>", "text": "@dscape if your's ends up faster or better than mine, let me know. Good luck.", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 148392305622126600, "in_reply_to_status_id_str": "148392305622126592"}, +{"created_at": "Sun, 18 Dec 2011 13:20:57 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 148392305622126600, "id_str": "148392305622126592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@creationix now doing unicode :) working on a sax like parser for json. looked at your code for tests :)", "to_user": "creationix", "to_user_id": 70596949, "to_user_id_str": "70596949", "to_user_name": "Tim Caswell", "in_reply_to_status_id": 148388780531920900, "in_reply_to_status_id_str": "148388780531920896"}, +{"created_at": "Sun, 18 Dec 2011 13:06:56 +0000", "from_user": "creationix", "from_user_id": 70596949, "from_user_id_str": "70596949", "from_user_name": "Tim Caswell", "geo": null, "id": 148388780531920900, "id_str": "148388780531920896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/774817444/c953ddd239707998340e1a6fbb3eeb46_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/774817444/c953ddd239707998340e1a6fbb3eeb46_normal.jpeg", "source": "<a href="http://swipe.nokia.com/" rel="nofollow">Tweet from Nokia N9</a>", "text": "@dscape not any worse than Unicode, but yeah, it's a pain.", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 148372763080523780, "in_reply_to_status_id_str": "148372763080523776"}, +{"created_at": "Sun, 18 Dec 2011 12:22:24 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 148377572315643900, "id_str": "148377572315643904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@NuckChorris mongo is ok if you are chuck norris. after all anything will bend to your will. than there's us mere mortals", "to_user": "NuckChorris", "to_user_id": 18070528, "to_user_id_str": "18070528", "to_user_name": "Peter Lejeck", "in_reply_to_status_id": 148377328681103360, "in_reply_to_status_id_str": "148377328681103360"}, +{"created_at": "Sun, 18 Dec 2011 12:21:26 +0000", "from_user": "NuckChorris", "from_user_id": 18070528, "from_user_id_str": "18070528", "from_user_name": "Peter Lejeck", "geo": null, "id": 148377328681103360, "id_str": "148377328681103360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1621810033/nuckchorris0_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621810033/nuckchorris0_normal.png", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@dscape if couch is the future, I'll keep the present. #mongo 4 lyfe", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 148376118569873400, "in_reply_to_status_id_str": "148376118569873409"}, +{"created_at": "Sun, 18 Dec 2011 12:16:38 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 148376118569873400, "id_str": "148376118569873409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "couchdb is a database from the future. why the community stalled innovating taking advantage of this is something I'm yet to understand", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 12:03:18 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 148372763080523780, "id_str": "148372763080523776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "adding numbers to json was a terrible decision. nightmare to parse /cc @creationix", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 19:10:22 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 148117851050479600, "id_str": "148117851050479616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "really love @izs fast-list. `array = FastList || Array` allows to code without adding fast list to source but still allow people to use it", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:21:54 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 148015057882710000, "id_str": "148015057882710016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@jnelas it's not mine per se, all resumes suck by definition", "to_user": "jnelas", "to_user_id": 13775652, "to_user_id_str": "13775652", "to_user_name": "Jo\\u00E3o Nelas", "in_reply_to_status_id": 147772114085228540, "in_reply_to_status_id_str": "147772114085228544"}, +{"created_at": "Fri, 16 Dec 2011 20:16:32 +0000", "from_user": "jnelas", "from_user_id": 13775652, "from_user_id_str": "13775652", "from_user_name": "Jo\\u00E3o Nelas", "geo": null, "id": 147772114085228540, "id_str": "147772114085228544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/103220999/EU_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/103220999/EU_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@dscape Your resume can't be that bad! :)", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147645647477145600, "in_reply_to_status_id_str": "147645647477145600"}, +{"created_at": "Fri, 16 Dec 2011 19:56:54 +0000", "from_user": "ramitos", "from_user_id": 15085633, "from_user_id_str": "15085633", "from_user_name": "S\\u00E9rgio Ramos", "geo": null, "id": 147767173283184640, "id_str": "147767173283184642", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1369166593/hd2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1369166593/hd2_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@dscape the all OST is great. But Yann Tiersen is incredibly awesome outside the OST. I saw one live show and it was epic.", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147765202107117570, "in_reply_to_status_id_str": "147765202107117568"}, +{"created_at": "Fri, 16 Dec 2011 19:56:33 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147767084745633800, "id_str": "147767084745633792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "judy wrote the saddest song :) /cc @janl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:55:04 +0000", "from_user": "gnat", "from_user_id": 898691, "from_user_id_str": "898691", "from_user_name": "Nat Torkington", "geo": null, "id": 147766711817478140, "id_str": "147766711817478145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668363440/right_looking_evil_grin_for_Twitter_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668363440/right_looking_evil_grin_for_Twitter_normal.gif", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@dscape aw shucks, thanks!", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147639567091105800, "in_reply_to_status_id_str": "147639567091105792"}, +{"created_at": "Fri, 16 Dec 2011 19:49:04 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147765202107117570, "id_str": "147765202107117568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "La Valse de Am\\u00E9lie is such an amazing song. The cats love it too :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 19:43:38 +0000", "from_user": "trodrigues", "from_user_id": 6477652, "from_user_id_str": "6477652", "from_user_name": "Tiago Rodrigues", "geo": null, "id": 147763836177485820, "id_str": "147763836177485824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1180079115/Tiago_Rodrigues_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1180079115/Tiago_Rodrigues_normal.jpeg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@dscape not sure about the second part :p", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147754858240413700, "in_reply_to_status_id_str": "147754858240413696"}, +{"created_at": "Fri, 16 Dec 2011 19:07:58 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147754858240413700, "id_str": "147754858240413696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "if you are a technical javascript guy with a head for business from london reply to this tweet so i remember you :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:43:52 +0000", "from_user": "rolandbouman", "from_user_id": 51754021, "from_user_id_str": "51754021", "from_user_name": "Roland Bouman", "geo": null, "id": 147718598012571650, "id_str": "147718598012571648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/287001025/roland_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/287001025/roland_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@mjasay Open source is turning out as an advantage in this space, esp. multi-node apps. Like I said to @dscape earlier today:", "to_user": "mjasay", "to_user_id": 7617702, "to_user_id_str": "7617702", "to_user_name": "Matt Asay", "in_reply_to_status_id": 147717576791830530, "in_reply_to_status_id_str": "147717576791830528"}, +{"created_at": "Fri, 16 Dec 2011 15:00:14 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147692515506651140, "id_str": "147692515506651136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@trodrigues they give a whole new meaning to the word clueless", "to_user": "trodrigues", "to_user_id": 6477652, "to_user_id_str": "6477652", "to_user_name": "Tiago Rodrigues", "in_reply_to_status_id": 147692408816156670, "in_reply_to_status_id_str": "147692408816156676"}, +{"created_at": "Fri, 16 Dec 2011 14:59:48 +0000", "from_user": "trodrigues", "from_user_id": 6477652, "from_user_id_str": "6477652", "from_user_name": "Tiago Rodrigues", "geo": null, "id": 147692408816156670, "id_str": "147692408816156676", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1180079115/Tiago_Rodrigues_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1180079115/Tiago_Rodrigues_normal.jpeg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@dscape ah yes, that interesting and annoying species", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147692170109911040, "in_reply_to_status_id_str": "147692170109911040"}, +{"created_at": "Fri, 16 Dec 2011 14:58:22 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147692045866250240, "id_str": "147692045866250241", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@trodrigues yeah right :P", "to_user": "trodrigues", "to_user_id": 6477652, "to_user_id_str": "6477652", "to_user_name": "Tiago Rodrigues", "in_reply_to_status_id": 147691853377048580, "in_reply_to_status_id_str": "147691853377048579"}, +{"created_at": "Fri, 16 Dec 2011 14:57:36 +0000", "from_user": "trodrigues", "from_user_id": 6477652, "from_user_id_str": "6477652", "from_user_name": "Tiago Rodrigues", "geo": null, "id": 147691853377048580, "id_str": "147691853377048579", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1180079115/Tiago_Rodrigues_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1180079115/Tiago_Rodrigues_normal.jpeg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@dscape just to clarify, it was suspended because it was unusual to make US payments with this card", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147688489096445950, "in_reply_to_status_id_str": "147688489096445955"}, +{"created_at": "Fri, 16 Dec 2011 14:57:19 +0000", "from_user": "trodrigues", "from_user_id": 6477652, "from_user_id_str": "6477652", "from_user_name": "Tiago Rodrigues", "geo": null, "id": 147691781901918200, "id_str": "147691781901918209", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1180079115/Tiago_Rodrigues_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1180079115/Tiago_Rodrigues_normal.jpeg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@dscape my credit card was suspended when i made a payment to github. girl from the bank \"there's a payment to G I T hub?\"", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147688489096445950, "in_reply_to_status_id_str": "147688489096445955"}, +{"created_at": "Fri, 16 Dec 2011 14:45:23 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147688780189536260, "id_str": "147688780189536256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@jvduf Like A Boss http://t.co/9m3vD2Xq", "to_user": "jvduf", "to_user_id": 41679937, "to_user_id_str": "41679937", "to_user_name": "Jeroen van Duffelen", "in_reply_to_status_id": 147688520788615170, "in_reply_to_status_id_str": "147688520788615170"}, +{"created_at": "Fri, 16 Dec 2011 14:44:21 +0000", "from_user": "jvduf", "from_user_id": 41679937, "from_user_id_str": "41679937", "from_user_name": "Jeroen van Duffelen", "geo": null, "id": 147688520788615170, "id_str": "147688520788615170", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1251159750/Jeroen_van_Duffelen_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1251159750/Jeroen_van_Duffelen_normal.jpeg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@dscape yea lol, just playing with his camera while doing some hefty roll overs.", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147687460908974080, "in_reply_to_status_id_str": "147687460908974080"}, +{"created_at": "Fri, 16 Dec 2011 14:40:09 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147687460908974080, "id_str": "147687460908974080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@jvduf love it how anyone in that situation would be like throwing up with the high Gs and the guy is like \"whatever\" :)", "to_user": "jvduf", "to_user_id": 41679937, "to_user_id_str": "41679937", "to_user_name": "Jeroen van Duffelen", "in_reply_to_status_id": 147662873064255500, "in_reply_to_status_id_str": "147662873064255488"}, +{"created_at": "Fri, 16 Dec 2011 14:34:54 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147686139493486600, "id_str": "147686139493486592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @kstirman: @dscape #msft is all-in on javascript in win8 and going forward.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:31:48 +0000", "from_user": "kstirman", "from_user_id": 8723762, "from_user_id_str": "8723762", "from_user_name": "Kelly Stirman", "geo": null, "id": 147670262979117060, "id_str": "147670262979117057", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/210467530/244.mr.t.092806_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/210467530/244.mr.t.092806_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dscape #msft is all-in on javascript in win8 and going forward.", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147602150057451520, "in_reply_to_status_id_str": "147602150057451520"}, +{"created_at": "Fri, 16 Dec 2011 11:54:00 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147645647477145600, "id_str": "147645647477145600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "finished updating resume. feel like killing myself", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:36:48 +0000", "from_user": "raki", "from_user_id": 3918531, "from_user_id_str": "3918531", "from_user_name": "\\u3089\\u304D", "geo": null, "id": 147641318565347330, "id_str": "147641318565347329", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/192510397/196520_825773351_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/192510397/196520_825773351_normal.jpg", "source": "<a href="http://paper.li" rel="nofollow">Paper.li</a>", "text": "\\u3089\\u304D\\u306E\\u95A2\\u5FC3\\u4E8B \\u7D19\\u304C\\u66F4\\u65B0\\u3055\\u308C\\u307E\\u3057\\u305F\\uFF01 http://t.co/o5IZk1Sv \\u25B8 \\u672C\\u65E5\\u30C8\\u30C3\\u30D7\\u30CB\\u30E5\\u30FC\\u30B9\\u3092\\u63D0\\u4F9B\\u3057\\u3066\\u304F\\u308C\\u305F\\u307F\\u306A\\u3055\\u3093\\uFF1A @dscape @johnmaxnl @yoursbangaru @estrellaodosmel @pride_of_dream", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:29:50 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147639567091105800, "id_str": "147639567091105792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "Also How To go Mo http://t.co/AHu8fOXj /also via @gnat - awesome links today", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 11:24:24 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147638199555067900, "id_str": "147638199555067904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "Subway Map Visualization jQuery Plugin /at http://t.co/P2MKXkv1 /via @gnat", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:37:21 +0000", "from_user": "d3x7r0", "from_user_id": 8941692, "from_user_id_str": "8941692", "from_user_name": "Lu\\u00EDs Nabais", "geo": null, "id": 147626360377049100, "id_str": "147626360377049088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1638347843/me_avatar-strokes-flipped_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638347843/me_avatar-strokes-flipped_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@trodrigues @dscape you moving?", "to_user": "trodrigues", "to_user_id": 6477652, "to_user_id_str": "6477652", "to_user_name": "Tiago Rodrigues"}, +{"created_at": "Fri, 16 Dec 2011 10:35:22 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147625859698798600, "id_str": "147625859698798592", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@trodrigues good luck :)", "to_user": "trodrigues", "to_user_id": 6477652, "to_user_id_str": "6477652", "to_user_name": "Tiago Rodrigues", "in_reply_to_status_id": 147623354784944130, "in_reply_to_status_id_str": "147623354784944130"}, +{"created_at": "Fri, 16 Dec 2011 10:35:16 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147625836021948400, "id_str": "147625836021948416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "RT @trodrigues: Last day (@ Playfish HQ) http://t.co/HyMupOq3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:37:52 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147611391757533200, "id_str": "147611391757533184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "If anyone had any doubt @LeaVerou is a css wizard with amazing powers check out http://t.co/lFjtUh21 #win", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:21:57 +0000", "from_user": "rolandbouman", "from_user_id": 51754021, "from_user_id_str": "51754021", "from_user_name": "Roland Bouman", "geo": null, "id": 147607385928765440, "id_str": "147607385928765440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/287001025/roland_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/287001025/roland_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dscape I was sloppily throwing that all in one word. I haven't considered that distinction much.", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147607085440450560, "in_reply_to_status_id_str": "147607085440450560"}, +{"created_at": "Fri, 16 Dec 2011 09:21:51 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147607360423211000, "id_str": "147607360423211008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@rolandbouman depending on AWS is not always a good deal. e.g. heroku and their huge monthly bills. ask their investors about it :)", "to_user": "rolandbouman", "to_user_id": 51754021, "to_user_id_str": "51754021", "to_user_name": "Roland Bouman", "in_reply_to_status_id": 147607194177781760, "in_reply_to_status_id_str": "147607194177781760"}, +{"created_at": "Fri, 16 Dec 2011 09:21:12 +0000", "from_user": "rolandbouman", "from_user_id": 51754021, "from_user_id_str": "51754021", "from_user_name": "Roland Bouman", "geo": null, "id": 147607194177781760, "id_str": "147607194177781760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/287001025/roland_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/287001025/roland_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dscape Well it's not all bad for customers either. If they can for example offer better stability, uptime and ease of use than AWS.", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147606739062243330, "in_reply_to_status_id_str": "147606739062243328"}, +{"created_at": "Fri, 16 Dec 2011 09:20:46 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147607085440450560, "id_str": "147607085440450560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@rolandbouman there's the selling the platform vs. selling the infrastructure. they seem to be on different s-curves #paas #saas #iaas", "to_user": "rolandbouman", "to_user_id": 51754021, "to_user_id_str": "51754021", "to_user_name": "Roland Bouman", "in_reply_to_status_id": 147606856611794940, "in_reply_to_status_id_str": "147606856611794945"}, +{"created_at": "Fri, 16 Dec 2011 09:19:51 +0000", "from_user": "rolandbouman", "from_user_id": 51754021, "from_user_id_str": "51754021", "from_user_name": "Roland Bouman", "geo": null, "id": 147606856611794940, "id_str": "147606856611794945", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/287001025/roland_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/287001025/roland_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dscape Yeah. I just meant that MS finally found a way to make money on open source software: selling the platform on which it runs.", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147606293983662080, "in_reply_to_status_id_str": "147606293983662081"}, +{"created_at": "Fri, 16 Dec 2011 09:19:23 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147606739062243330, "id_str": "147606739062243328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@rolandbouman solid point. then again that is catastrophic to software quality. one should go for cheap and quality in software.or you loose", "to_user": "rolandbouman", "to_user_id": 51754021, "to_user_id_str": "51754021", "to_user_name": "Roland Bouman", "in_reply_to_status_id": 147606292364660740, "in_reply_to_status_id_str": "147606292364660736"}, +{"created_at": "Fri, 16 Dec 2011 09:17:51 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147606351848284160, "id_str": "147606351848284160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rolandbouman: @dscape If you're in the cloud business, making it as easy as possible for people to burn more CPU, disk and bandwidth is an excellent idea", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:17:37 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147606293983662080, "id_str": "147606293983662081", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@rolandbouman well there's a lot of space for things that aren't hadoop but can do large scale like @hadapt. but thats a whole new topic :)", "to_user": "rolandbouman", "to_user_id": 51754021, "to_user_id_str": "51754021", "to_user_name": "Roland Bouman", "in_reply_to_status_id": 147605887140380670, "in_reply_to_status_id_str": "147605887140380672"}, +{"created_at": "Fri, 16 Dec 2011 09:17:37 +0000", "from_user": "rolandbouman", "from_user_id": 51754021, "from_user_id_str": "51754021", "from_user_name": "Roland Bouman", "geo": null, "id": 147606292364660740, "id_str": "147606292364660736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/287001025/roland_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/287001025/roland_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dscape If you're in the cloud business, making it as easy as possible for people to burn more CPU, disk and bandwidth is an excellent idea", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147604614257188860, "in_reply_to_status_id_str": "147604614257188864"}, +{"created_at": "Fri, 16 Dec 2011 09:16:48 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147606088794120200, "id_str": "147606088794120193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "phone calls from bank of america. call them back they ask for my phone number. once entered they say I'm now on the \"do not call list\" #fail", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:16:00 +0000", "from_user": "rolandbouman", "from_user_id": 51754021, "from_user_id_str": "51754021", "from_user_name": "Roland Bouman", "geo": null, "id": 147605887140380670, "id_str": "147605887140380672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/287001025/roland_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/287001025/roland_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dscape ...more nodes. Preferably, on Azure. And where do most people stuff the data coming out of hadoop? Right, in a RDBMS data mart.", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147604614257188860, "in_reply_to_status_id_str": "147604614257188864"}, +{"created_at": "Fri, 16 Dec 2011 09:15:18 +0000", "from_user": "rolandbouman", "from_user_id": 51754021, "from_user_id_str": "51754021", "from_user_name": "Roland Bouman", "geo": null, "id": 147605709431914500, "id_str": "147605709431914496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/287001025/roland_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/287001025/roland_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dscape Well, the surprising thing to me is MS finally got it right :) To them, Hadoop is just a vector that makes people want to run...", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147604614257188860, "in_reply_to_status_id_str": "147604614257188864"}, +{"created_at": "Fri, 16 Dec 2011 09:10:57 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147604614257188860, "id_str": "147604614257188864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@rolandbouman the integration with hadoop is surprising though. at least in my experience working in db companies", "to_user": "rolandbouman", "to_user_id": 51754021, "to_user_id_str": "51754021", "to_user_name": "Roland Bouman", "in_reply_to_status_id": 147604017206403070, "in_reply_to_status_id_str": "147604017206403072"}, +{"created_at": "Fri, 16 Dec 2011 09:08:39 +0000", "from_user": "dampeebe", "from_user_id": 47422110, "from_user_id_str": "47422110", "from_user_name": "Damiaan Peeters", "geo": null, "id": 147604038068875260, "id_str": "147604038068875264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1325422170/42c8f255-7d06-4665-af5d-60eba23a538c_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1325422170/42c8f255-7d06-4665-af5d-60eba23a538c_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@dscape I don't know anything on NodeJS... Not yet that is :-)", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147603629514309630, "in_reply_to_status_id_str": "147603629514309632"}, +{"created_at": "Fri, 16 Dec 2011 09:08:34 +0000", "from_user": "rolandbouman", "from_user_id": 51754021, "from_user_id_str": "51754021", "from_user_name": "Roland Bouman", "geo": null, "id": 147604017206403070, "id_str": "147604017206403072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/287001025/roland_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/287001025/roland_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dscape Yes. MS is fighting hard to get developers back on their patch so the can sell more Azure. (which will strengthen Windows)", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147602150057451520, "in_reply_to_status_id_str": "147602150057451520"}, +{"created_at": "Fri, 16 Dec 2011 09:07:02 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147603629514309630, "id_str": "147603629514309632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dampeebe oh, super cool. im following you for the latest updates on node and windows then :)", "to_user": "dampeebe", "to_user_id": 47422110, "to_user_id_str": "47422110", "to_user_name": "Damiaan Peeters", "in_reply_to_status_id": 147603474199220220, "in_reply_to_status_id_str": "147603474199220224"}, +{"created_at": "Fri, 16 Dec 2011 09:06:25 +0000", "from_user": "dampeebe", "from_user_id": 47422110, "from_user_id_str": "47422110", "from_user_name": "Damiaan Peeters", "geo": null, "id": 147603474199220220, "id_str": "147603474199220224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1325422170/42c8f255-7d06-4665-af5d-60eba23a538c_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1325422170/42c8f255-7d06-4665-af5d-60eba23a538c_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@dscape Ah ok. Windows 8 will be launced (probably) next year, there is a new interface. It's called metro. http://t.co/BDhsDozB", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147602502680973300, "in_reply_to_status_id_str": "147602502680973312"}, +{"created_at": "Fri, 16 Dec 2011 09:02:37 +0000", "from_user": "ajlopez", "from_user_id": 14567622, "from_user_id_str": "14567622", "from_user_name": "ajlopez", "geo": null, "id": 147602519856644100, "id_str": "147602519856644096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/53769404/spiral_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/53769404/spiral_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @dscape: i ... don't give a shit about #microsoft but they seem pretty serious on javascript http://t.co/9ElGMYhv #nodejs #hadoop #azure", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:02:33 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147602502680973300, "id_str": "147602502680973312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@dampeebe what does this mean? sorry i don't use windows since I'm 18 years old :)", "to_user": "dampeebe", "to_user_id": 47422110, "to_user_id_str": "47422110", "to_user_name": "Damiaan Peeters", "in_reply_to_status_id": 147602356312354800, "in_reply_to_status_id_str": "147602356312354816"}, +{"created_at": "Fri, 16 Dec 2011 09:01:58 +0000", "from_user": "dampeebe", "from_user_id": 47422110, "from_user_id_str": "47422110", "from_user_name": "Damiaan Peeters", "geo": null, "id": 147602356312354800, "id_str": "147602356312354816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1325422170/42c8f255-7d06-4665-af5d-60eba23a538c_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1325422170/42c8f255-7d06-4665-af5d-60eba23a538c_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@dscape You can develop metro apps for windows 8 using Html & Javascript", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147602150057451520, "in_reply_to_status_id_str": "147602150057451520"}, +{"created_at": "Fri, 16 Dec 2011 09:01:09 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147602150057451520, "id_str": "147602150057451520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "i normally don't give a shit about #microsoft but they seem pretty serious on javascript http://t.co/zypyHHMb #nodejs #hadoop #azure", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:04:40 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147587935754125300, "id_str": "147587935754125312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @LeaVerou: Introducing dabblet: An interactive CSS playground (a.k.a. what I've been working on for the past 3 weeks) http://t.co/QOEAcWHk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 20:02:11 +0000", "from_user": "saadiq", "from_user_id": 5240, "from_user_id_str": "5240", "from_user_name": "Saadiq Rodgers-King", "geo": null, "id": 147406117650173950, "id_str": "147406117650173952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1593056981/IMG_0291_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593056981/IMG_0291_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@dscape For a while I didn't even have it installed on safari and would switch to chrome if I needed it. Got annoying. Annoying either way.", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147403304765370370, "in_reply_to_status_id_str": "147403304765370368"}, +{"created_at": "Thu, 15 Dec 2011 19:51:01 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147403304765370370, "id_str": "147403304765370368", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@saadiq flashblock :)", "to_user": "saadiq", "to_user_id": 5240, "to_user_id_str": "5240", "to_user_name": "Saadiq Rodgers-King", "in_reply_to_status_id": 147400025859821570, "in_reply_to_status_id_str": "147400025859821568"}, +{"created_at": "Thu, 15 Dec 2011 19:36:53 +0000", "from_user": "ramitos", "from_user_id": 15085633, "from_user_id_str": "15085633", "from_user_name": "S\\u00E9rgio Ramos", "geo": null, "id": 147399747630669820, "id_str": "147399747630669824", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1369166593/hd2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1369166593/hd2_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@dscape apanham-se muitas tradu\\u00E7\\u00F5es assim na tv. \\u00C9 triste...", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147395522855059460, "in_reply_to_status_id_str": "147395522855059456"}, +{"created_at": "Thu, 15 Dec 2011 19:26:33 +0000", "from_user": "pedrogte", "from_user_id": 16401507, "from_user_id_str": "16401507", "from_user_name": "Pedro Teixeira", "geo": null, "id": 147397148017836030, "id_str": "147397148017836032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1591778458/DSC02359-2_copy_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591778458/DSC02359-2_copy_normal.JPG", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@dscape portuguese subtitle translators never translate slang properly, they're just erm... bananas. /cc @mikeal", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147395522855059460, "in_reply_to_status_id_str": "147395522855059456"}, +{"created_at": "Thu, 15 Dec 2011 19:20:05 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147395522855059460, "id_str": "147395522855059456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "portuguese tv just translated douchebag for banana. this. is. epic. @mikeal @pedrogte", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:46:37 +0000", "from_user": "joelklabo", "from_user_id": 16474253, "from_user_id_str": "16474253", "from_user_name": "Joel Klabo", "geo": +{"coordinates": [37.7585,-122.4136], "type": "Point"}, "id": 147387101141405700, "id_str": "147387101141405696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1483338025/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1483338025/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@dscape yeah Verizon is better. Congrats on the job!", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147386562211094530, "in_reply_to_status_id_str": "147386562211094528"}, +{"created_at": "Thu, 15 Dec 2011 18:44:29 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147386562211094530, "id_str": "147386562211094528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@joelklabo wishing there was a SIM card alternative though", "to_user": "joelklabo", "to_user_id": 16474253, "to_user_id_str": "16474253", "to_user_name": "Joel Klabo", "in_reply_to_status_id": 147384881930969100, "in_reply_to_status_id_str": "147384881930969088"}, +{"created_at": "Thu, 15 Dec 2011 18:44:16 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147386509652279300, "id_str": "147386509652279296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @joelklabo: AT&T, we're over.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 14:24:59 +0000", "from_user": "ramitos", "from_user_id": 15085633, "from_user_id_str": "15085633", "from_user_name": "S\\u00E9rgio Ramos", "geo": null, "id": 147321256482574340, "id_str": "147321256482574336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1369166593/hd2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1369166593/hd2_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@dscape @pedrogte I think thins are changing. Apple's posture over the last 5 years: it changed too", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147320906585354240, "in_reply_to_status_id_str": "147320906585354240"}, +{"created_at": "Thu, 15 Dec 2011 14:23:35 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147320906585354240, "id_str": "147320906585354240", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@pedrogte no", "to_user": "pedrogte", "to_user_id": 16401507, "to_user_id_str": "16401507", "to_user_name": "Pedro Teixeira", "in_reply_to_status_id": 147317664329629700, "in_reply_to_status_id_str": "147317664329629697"}, +{"created_at": "Thu, 15 Dec 2011 13:03:45 +0000", "from_user": "zelandscape", "from_user_id": 84779359, "from_user_id_str": "84779359", "from_user_name": "Zelan Noviandi", "geo": null, "id": 147300814120173570, "id_str": "147300814120173569", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1098891019/andi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1098891019/andi_normal.jpg", "source": "<a href="http://m.tweete.net" rel="nofollow">m.tweete.net</a>", "text": "tanda2 apa ray? RT @rayagungsp: Tanda 2 tu kom! @zelandscape dscape lah ini kok kekirim ke email gw sendiri", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 12:56:35 +0000", "from_user": "rayagungsp", "from_user_id": 148736939, "from_user_id_str": "148736939", "from_user_name": "Ray Agung", "geo": null, "id": 147299009155960830, "id_str": "147299009155960832", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1653795345/b_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653795345/b_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Tanda 2 tu kom! @zelandscape dscape lah ini kok kekirim ke email gw sendiri", "to_user": "zelandscape", "to_user_id": 84779359, "to_user_id_str": "84779359", "to_user_name": "Zelan Noviandi", "in_reply_to_status_id": 147298215962738700, "in_reply_to_status_id_str": "147298215962738689"}, +{"created_at": "Thu, 15 Dec 2011 12:05:27 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147286144659374080, "id_str": "147286144659374080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@pedrogte Is \"Im on a bus\" the new \"I'm on a boat\" ? :)", "to_user": "pedrogte", "to_user_id": 16401507, "to_user_id_str": "16401507", "to_user_name": "Pedro Teixeira", "in_reply_to_status_id": 147283150433820670, "in_reply_to_status_id_str": "147283150433820672"}, +{"created_at": "Thu, 15 Dec 2011 12:04:05 +0000", "from_user": "DomKepska", "from_user_id": 418755278, "from_user_id_str": "418755278", "from_user_name": "Dominika", "geo": null, "id": 147285798071447550, "id_str": "147285798071447554", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694526887/Screen_shot_2011-11-25_at_2.52.09_PM_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694526887/Screen_shot_2011-11-25_at_2.52.09_PM_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@dscape i agree, although found a great and reliable tool, have you tried clickmeeting.com?", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147260068415545340, "in_reply_to_status_id_str": "147260068415545344"}, +{"created_at": "Thu, 15 Dec 2011 11:16:51 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147273911120310270, "id_str": "147273911120310272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @antirez: max limit of 10k clients in Redis removed: http://t.co/BFe3pDcs (this feature will get into 2.6)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 11:16:45 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147273886004813820, "id_str": "147273886004813824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @einaros: With the NodeSummit agenda up, and another colleague tricked into coming along, the end of January is starting to look very good! #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 10:27:12 +0000", "from_user": "dshaw", "from_user_id": 806757, "from_user_id_str": "806757", "from_user_name": "Daniel Shaw", "geo": null, "id": 147261416771026940, "id_str": "147261416771026944", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1552591406/angry_unicorn_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552591406/angry_unicorn_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@dscape Interesting.", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147259769126785020, "in_reply_to_status_id_str": "147259769126785024"}, +{"created_at": "Thu, 15 Dec 2011 10:21:50 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147260068415545340, "id_str": "147260068415545344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "google is going strong with hangouts to replace webex!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 10:20:39 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147259769126785020, "id_str": "147259769126785024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@dshaw you were right yesterday!! http://t.co/LX0ieOeA", "to_user": "dshaw", "to_user_id": 806757, "to_user_id_str": "806757", "to_user_name": "Daniel Shaw"}, +{"created_at": "Thu, 15 Dec 2011 10:18:30 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147259229546364930, "id_str": "147259229546364928", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@pedrogte yuppy :)", "to_user": "pedrogte", "to_user_id": 16401507, "to_user_id_str": "16401507", "to_user_name": "Pedro Teixeira", "in_reply_to_status_id": 147258623666556930, "in_reply_to_status_id_str": "147258623666556928"}, +{"created_at": "Thu, 15 Dec 2011 10:15:47 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147258543819595780, "id_str": "147258543819595776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@grtjn @joemfb thank you :)", "to_user": "grtjn", "to_user_id": 197173319, "to_user_id_str": "197173319", "to_user_name": "Geert", "in_reply_to_status_id": 147212450327048200, "in_reply_to_status_id_str": "147212450327048193"} +, +{"created_at": "Thu, 15 Dec 2011 10:15:38 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147258508121882620, "id_str": "147258508121882624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@anthonyallen left like two months ago :) Will be in new york soon :)", "to_user": "anthonyallen", "to_user_id": 18137639, "to_user_id_str": "18137639", "to_user_name": "anthonyallen", "in_reply_to_status_id": 147118777232924670, "in_reply_to_status_id_str": "147118777232924672"}, +{"created_at": "Thu, 15 Dec 2011 10:15:22 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147258439633084400, "id_str": "147258439633084417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@joelklabo not for now, Something Like Portugal -> London -> Maybe NY", "to_user": "joelklabo", "to_user_id": 16474253, "to_user_id_str": "16474253", "to_user_name": "Joel Klabo", "in_reply_to_status_id": 147094544956129280, "in_reply_to_status_id_str": "147094544956129280"}, +{"created_at": "Thu, 15 Dec 2011 08:02:13 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147224931665575940, "id_str": "147224931665575936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@pedrogte RT @al3xandru \\u267B Redis Bitmaps for Real-Time Metrics at Spool http://t.co/ldS2A47N #Redis #PoweredbyNoSQL #Spool", "to_user": "pedrogte", "to_user_id": 16401507, "to_user_id_str": "16401507", "to_user_name": "Pedro Teixeira"}, +{"created_at": "Thu, 15 Dec 2011 07:12:37 +0000", "from_user": "grtjn", "from_user_id": 197173319, "from_user_id_str": "197173319", "from_user_name": "Geert", "geo": null, "id": 147212450327048200, "id_str": "147212450327048193", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1478737900/IMG_7433___-_Copy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1478737900/IMG_7433___-_Copy_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@dscape congrats.. ;)", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job"}, +{"created_at": "Thu, 15 Dec 2011 07:11:07 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147212071254237200, "id_str": "147212071254237184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "RT @trodrigues: this probably means i am finally brain dead. i always said i wouldn't make it to 30.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 06:32:47 +0000", "from_user": "indutny", "from_user_id": 92915570, "from_user_id_str": "92915570", "from_user_name": "Fedor Indutny", "geo": null, "id": 147202425240035330, "id_str": "147202425240035329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1342629236/e474c72a97af94dd27feb53be98ceab9_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1342629236/e474c72a97af94dd27feb53be98ceab9_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: A big welcome to @dscape, the latest addition to Team Nodejitsu! #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 01:43:38 +0000", "from_user": "joemfb", "from_user_id": 352494697, "from_user_id_str": "352494697", "from_user_name": "Joseph Bryan", "geo": null, "id": 147129657077153800, "id_str": "147129657077153793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1652610111/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652610111/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@dscape Congrats on the new gig!", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job"}, +{"created_at": "Thu, 15 Dec 2011 01:00:24 +0000", "from_user": "anthonyallen", "from_user_id": 18137639, "from_user_id_str": "18137639", "from_user_name": "anthonyallen", "geo": null, "id": 147118777232924670, "id_str": "147118777232924672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1466748993/anthony-allen_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1466748993/anthony-allen_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dscape are you no longer at ML?", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job"}, +{"created_at": "Thu, 15 Dec 2011 00:36:00 +0000", "from_user": "nunoveloso", "from_user_id": 19092476, "from_user_id_str": "19092476", "from_user_name": "Nuno Veloso", "geo": null, "id": 147112638038548480, "id_str": "147112638038548480", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1144969164/06824303-001b-4657-9184-2886f9efc3d9_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1144969164/06824303-001b-4657-9184-2886f9efc3d9_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@dscape n\\u00E3o tenho tido vida nestes \\u00FAltimos tempos, estou atolado de projectos! Vida de freelancer, I suppose :-)", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147011058064818180, "in_reply_to_status_id_str": "147011058064818176"}, +{"created_at": "Wed, 14 Dec 2011 23:36:37 +0000", "from_user": "jvduf", "from_user_id": 41679937, "from_user_id_str": "41679937", "from_user_name": "Jeroen van Duffelen", "geo": null, "id": 147097691099373570, "id_str": "147097691099373568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1251159750/Jeroen_van_Duffelen_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1251159750/Jeroen_van_Duffelen_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: A big welcome to @dscape, the latest addition to Team Nodejitsu! #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 23:24:07 +0000", "from_user": "joelklabo", "from_user_id": 16474253, "from_user_id_str": "16474253", "from_user_name": "Joel Klabo", "geo": null, "id": 147094544956129280, "id_str": "147094544956129280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1483338025/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1483338025/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dscape you moving to NYC?", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147070132664008700, "in_reply_to_status_id_str": "147070132664008705"}, +{"created_at": "Wed, 14 Dec 2011 21:49:29 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147070732046831600, "id_str": "147070732046831617", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@_alejandromg ty :)", "to_user": "_alejandromg", "to_user_id": 53717698, "to_user_id_str": "53717698", "to_user_name": "Alejandro Morales", "in_reply_to_status_id": 147070661137940480, "in_reply_to_status_id_str": "147070661137940480"}, +{"created_at": "Wed, 14 Dec 2011 21:49:12 +0000", "from_user": "_alejandromg", "from_user_id": 53717698, "from_user_id_str": "53717698", "from_user_name": "Alejandro Morales", "geo": null, "id": 147070661137940480, "id_str": "147070661137940480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1473584095/2011-07-27-214648m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1473584095/2011-07-27-214648m_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dscape Awesome news for nodejitsu! ;) Congrats.", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147070132664008700, "in_reply_to_status_id_str": "147070132664008705"}, +{"created_at": "Wed, 14 Dec 2011 21:45:49 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147069809220272130, "id_str": "147069809220272128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: A big welcome to @dscape, the latest addition to Team Nodejitsu! #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:37:59 +0000", "from_user": "ddtrejo", "from_user_id": 58248334, "from_user_id_str": "58248334", "from_user_name": "David Trejo", "geo": null, "id": 147067837222105100, "id_str": "147067837222105088", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/343749589/davidsculpture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/343749589/davidsculpture_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@nodejitsu @dscape congrats dscape!", "to_user": "nodejitsu", "to_user_id": 157442008, "to_user_id_str": "157442008", "to_user_name": "Nodejitsu", "in_reply_to_status_id": 147060300984758270, "in_reply_to_status_id_str": "147060300984758272"}, +{"created_at": "Wed, 14 Dec 2011 21:33:39 +0000", "from_user": "NeCkEr", "from_user_id": 14176673, "from_user_id_str": "14176673", "from_user_name": "NeCkEr", "geo": null, "id": 147066746371702800, "id_str": "147066746371702784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1656954487/imgSnow_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656954487/imgSnow_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "congratz RT @nodejitsu A big welcome to @dscape, the latest addition to Team Nodejitsu! #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:25:58 +0000", "from_user": "indexzero", "from_user_id": 13696102, "from_user_id_str": "13696102", "from_user_name": "Charlie Robbins", "geo": null, "id": 147064812956950530, "id_str": "147064812956950529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1179850399/P1000093bw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1179850399/P1000093bw_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: A big welcome to @dscape, the latest addition to Team Nodejitsu! #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:22:42 +0000", "from_user": "ramitos", "from_user_id": 15085633, "from_user_id_str": "15085633", "from_user_name": "S\\u00E9rgio Ramos", "geo": null, "id": 147063989426331650, "id_str": "147063989426331648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1369166593/hd2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1369166593/hd2_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@dscape congratulations :)", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job"}, +{"created_at": "Wed, 14 Dec 2011 21:15:14 +0000", "from_user": "cronopio2", "from_user_id": 14474239, "from_user_id_str": "14474239", "from_user_name": "D\\u24B6niel \\u24B6ristizabal \\u2622", "geo": null, "id": 147062110952755200, "id_str": "147062110952755200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1587000370/DennisRitchie_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587000370/DennisRitchie_normal.gif", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "GREAT!! More hands for awesome tools!! RT @nodejitsu: A big welcome to @dscape, the latest addition to Team Nodejitsu! #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:14:38 +0000", "from_user": "_alejandromg", "from_user_id": 53717698, "from_user_id_str": "53717698", "from_user_name": "Alejandro Morales", "geo": null, "id": 147061960943472640, "id_str": "147061960943472640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1473584095/2011-07-27-214648m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1473584095/2011-07-27-214648m_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: A big welcome to @dscape, the latest addition to Team Nodejitsu! #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:12:32 +0000", "from_user": "3rdEden", "from_user_id": 14350255, "from_user_id_str": "14350255", "from_user_name": "Arnout Kazemier", "geo": null, "id": 147061431228039170, "id_str": "147061431228039168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Congratulations @dscape! RT \\u201C@nodejitsu: A big welcome to @dscape, the latest addition to Team Nodejitsu! #nodejs\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:12:25 +0000", "from_user": "TheDeveloper", "from_user_id": 18001569, "from_user_id_str": "18001569", "from_user_name": "Geoff Wagstaff", "geo": null, "id": 147061404787150850, "id_str": "147061404787150848", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1413195938/the_developer_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1413195938/the_developer_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@nodejitsu @dscape congrats!", "to_user": "nodejitsu", "to_user_id": 157442008, "to_user_id_str": "157442008", "to_user_name": "Nodejitsu", "in_reply_to_status_id": 147060300984758270, "in_reply_to_status_id_str": "147060300984758272"}, +{"created_at": "Wed, 14 Dec 2011 21:09:07 +0000", "from_user": "mikeal", "from_user_id": 668423, "from_user_id_str": "668423", "from_user_name": "Mikeal", "geo": null, "id": 147060574549835780, "id_str": "147060574549835777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1554648053/avatar-bw_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554648053/avatar-bw_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: A big welcome to @dscape, the latest addition to Team Nodejitsu! #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:08:42 +0000", "from_user": "marak", "from_user_id": 110465841, "from_user_id_str": "110465841", "from_user_name": "marak squires", "geo": null, "id": 147060467318259700, "id_str": "147060467318259713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1387685536/maraknormal_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1387685536/maraknormal_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejitsu: A big welcome to @dscape, the latest addition to Team Nodejitsu! #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:08:02 +0000", "from_user": "nodejitsu", "from_user_id": 157442008, "from_user_id_str": "157442008", "from_user_name": "Nodejitsu", "geo": null, "id": 147060300984758270, "id_str": "147060300984758272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505894756/header-logo-grey_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "A big welcome to @dscape, the latest addition to Team Nodejitsu! #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 20:53:11 +0000", "from_user": "dshaw", "from_user_id": 806757, "from_user_id_str": "806757", "from_user_name": "Daniel Shaw", "geo": null, "id": 147056563662749700, "id_str": "147056563662749696", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1552591406/angry_unicorn_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552591406/angry_unicorn_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@dscape Congrats!", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147009691636088830, "in_reply_to_status_id_str": "147009691636088833"}, +{"created_at": "Wed, 14 Dec 2011 19:38:20 +0000", "from_user": "Zamith", "from_user_id": 24297915, "from_user_id_str": "24297915", "from_user_name": "Lu\\u00EDs Ferreira", "geo": null, "id": 147037726217211900, "id_str": "147037726217211904", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676984519/foto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676984519/foto_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@dscape Ai est\\u00E1 o novo trabalho. Parab\\u00E9ns! ;)", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147010294290464770, "in_reply_to_status_id_str": "147010294290464768"}, +{"created_at": "Wed, 14 Dec 2011 18:58:59 +0000", "from_user": "pedrogte", "from_user_id": 16401507, "from_user_id_str": "16401507", "from_user_name": "Pedro Teixeira", "geo": null, "id": 147027825399037950, "id_str": "147027825399037952", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1591778458/DSC02359-2_copy_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591778458/DSC02359-2_copy_normal.JPG", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@dscape congrats dood! =D", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147009691636088830, "in_reply_to_status_id_str": "147009691636088833"}, +{"created_at": "Wed, 14 Dec 2011 18:46:07 +0000", "from_user": "NodeKohai", "from_user_id": 299396879, "from_user_id_str": "299396879", "from_user_name": "Ko Hai", "geo": null, "id": 147024586989502460, "id_str": "147024586989502464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1357415286/saupload_happy_robot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1357415286/saupload_happy_robot_normal.jpg", "source": "<a href="http://github.com/nodejitsu/kohai" rel="nofollow">NodeKohai</a>", "text": ".@dscape Welcome!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 18:45:43 +0000", "from_user": "booyaa", "from_user_id": 719673, "from_user_id_str": "719673", "from_user_name": "booyaa", "geo": null, "id": 147024486489788400, "id_str": "147024486489788417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/640332281/boo-sm-avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/640332281/boo-sm-avatar_normal.png", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": ".@dscape you just joined the @nodejitsu team?!?", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147009691636088830, "in_reply_to_status_id_str": "147009691636088833"}, +{"created_at": "Wed, 14 Dec 2011 18:00:05 +0000", "from_user": "grechaw", "from_user_id": 15186837, "from_user_id_str": "15186837", "from_user_name": "Charles Greer", "geo": null, "id": 147013002850349060, "id_str": "147013002850349056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1643886259/edgehead_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643886259/edgehead_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@dscape Yes, absolutely.", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147012367627190270, "in_reply_to_status_id_str": "147012367627190272"}, +{"created_at": "Wed, 14 Dec 2011 17:57:34 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147012367627190270, "id_str": "147012367627190272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@grechaw ahaha :D btw ill be in sfo in the end of jan. :) drinks?", "to_user": "grechaw", "to_user_id": 15186837, "to_user_id_str": "15186837", "to_user_name": "Charles Greer", "in_reply_to_status_id": 147011597288751100, "in_reply_to_status_id_str": "147011597288751105"}, +{"created_at": "Wed, 14 Dec 2011 17:54:30 +0000", "from_user": "grechaw", "from_user_id": 15186837, "from_user_id_str": "15186837", "from_user_name": "Charles Greer", "geo": null, "id": 147011597288751100, "id_str": "147011597288751105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1643886259/edgehead_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643886259/edgehead_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@dscape \"New Job for Nuno Job\" does have a lot of possibilities. I'll see what I can do.", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job"}, +{"created_at": "Wed, 14 Dec 2011 17:52:22 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147011058064818180, "id_str": "147011058064818176", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@nunoveloso ja tweetavas mais. tnho visto pouco de ti :)", "to_user": "nunoveloso", "to_user_id": 19092476, "to_user_id_str": "19092476", "to_user_name": "Nuno Veloso", "in_reply_to_status_id": 147010790627622900, "in_reply_to_status_id_str": "147010790627622913"}, +{"created_at": "Wed, 14 Dec 2011 17:51:18 +0000", "from_user": "nunoveloso", "from_user_id": 19092476, "from_user_id_str": "19092476", "from_user_name": "Nuno Veloso", "geo": null, "id": 147010790627622900, "id_str": "147010790627622913", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1144969164/06824303-001b-4657-9184-2886f9efc3d9_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1144969164/06824303-001b-4657-9184-2886f9efc3d9_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@dscape Parab\\u00E9ns, senhor! :-)", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147009691636088830, "in_reply_to_status_id_str": "147009691636088833"}, +{"created_at": "Wed, 14 Dec 2011 17:50:50 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147010673476509700, "id_str": "147010673476509696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@grechaw I want a rap song for it :P", "to_user": "grechaw", "to_user_id": 15186837, "to_user_id_str": "15186837", "to_user_name": "Charles Greer", "in_reply_to_status_id": 147010577640861700, "in_reply_to_status_id_str": "147010577640861697"}, +{"created_at": "Wed, 14 Dec 2011 17:50:27 +0000", "from_user": "grechaw", "from_user_id": 15186837, "from_user_id_str": "15186837", "from_user_name": "Charles Greer", "geo": null, "id": 147010577640861700, "id_str": "147010577640861697", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1643886259/edgehead_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643886259/edgehead_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@dscape Congratulations!", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 147009691636088830, "in_reply_to_status_id_str": "147009691636088833"}, +{"created_at": "Wed, 14 Dec 2011 17:49:20 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147010294290464770, "id_str": "147010294290464768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "cheap air travel, no longer jobless. overall good day", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 17:46:56 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 147009691636088830, "id_str": "147009691636088833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "WOOP! \"Nuno, looks like you're all good. Welcome to Nodejitsu.\" @saadiq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 16:29:15 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 146990144145207300, "id_str": "146990144145207296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "booked some travel for #nodesummit :) see you there? friends interested in attending feel free to ping me for possible discount codes :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 16:27:00 +0000", "from_user": "saadiq", "from_user_id": 5240, "from_user_id_str": "5240", "from_user_name": "Saadiq Rodgers-King", "geo": null, "id": 146989574021849100, "id_str": "146989574021849088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1593056981/IMG_0291_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593056981/IMG_0291_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@dscape @louisck I've been looking for an excuse to use @stripe on something. http://t.co/18CZp4eh", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 146974688046886900, "in_reply_to_status_id_str": "146974688046886912"}, +{"created_at": "Wed, 14 Dec 2011 16:23:36 +0000", "from_user": "saadiq", "from_user_id": 5240, "from_user_id_str": "5240", "from_user_name": "Saadiq Rodgers-King", "geo": null, "id": 146988722167095300, "id_str": "146988722167095296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1593056981/IMG_0291_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593056981/IMG_0291_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@dscape @louisck I thought the exact same thing. But for such a wonderful endeavor, I was willing to overlook it.", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 146974688046886900, "in_reply_to_status_id_str": "146974688046886912"}, +{"created_at": "Wed, 14 Dec 2011 15:32:54 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 146975959696932860, "id_str": "146975959696932864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@louisck check http://t.co/BbL9ql3Y for the reasons why no one wants to give a single cent to paypal. ever. it was hard for me to press buy", "to_user": "louisck", "to_user_id": 22027186, "to_user_id_str": "22027186", "to_user_name": "Louis C.K."}, +{"created_at": "Wed, 14 Dec 2011 15:31:03 +0000", "from_user": "nebiros", "from_user_id": 36046575, "from_user_id_str": "36046575", "from_user_name": "Juan Felipe Alvarez", "geo": null, "id": 146975494846423040, "id_str": "146975494846423040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1639261759/e8a237c9c023bbf01735d0d333ec8ef8_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639261759/e8a237c9c023bbf01735d0d333ec8ef8_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "\\u201C@dscape: Current Status: An @npm xmas http://t.co/tOavYGgJ\\u201D <= awesome! =^.^=~~~", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 15:30:07 +0000", "from_user": "landeiro", "from_user_id": 14819457, "from_user_id_str": "14819457", "from_user_name": "Pedro Landeiro", "geo": null, "id": 146975262704287740, "id_str": "146975262704287744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/106454968/00042_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/106454968/00042_1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dscape Louis Rocks! :)", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 146974688046886900, "in_reply_to_status_id_str": "146974688046886912"}, +{"created_at": "Wed, 14 Dec 2011 15:16:38 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 146971865510981630, "id_str": "146971865510981632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "reading http://t.co/0vvkpYC8 /cc @hij1nx @jvduf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 13:33:34 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 146945929549844480, "id_str": "146945929549844480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "so people seemed to have liked the `npm xmas` easter egg /cc @izs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 12:03:12 +0000", "from_user": "grtjn", "from_user_id": 197173319, "from_user_id_str": "197173319", "from_user_name": "Geert", "geo": null, "id": 146923187341500400, "id_str": "146923187341500417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1478737900/IMG_7433___-_Copy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1478737900/IMG_7433___-_Copy_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@dscape :) Pity you can't run that code.. ;-)", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 146922820558000130, "in_reply_to_status_id_str": "146922820558000129"}, +{"created_at": "Wed, 14 Dec 2011 12:01:44 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 146922820558000130, "id_str": "146922820558000129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "Current Status: An @npm xmas http://t.co/UspbWM6o", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 08:54:27 +0000", "from_user": "kriesse", "from_user_id": 11531602, "from_user_id_str": "11531602", "from_user_name": "kriesse", "geo": +{"coordinates": [37.7525,-122.4081], "type": "Point"}, "id": 146875688715173900, "id_str": "146875688715173888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/613818147/triangle_kriesse_01_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/613818147/triangle_kriesse_01_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@dscape Ha, that's awesome news! I'll be just back from my Berlin visit then!", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 146870621807185920, "in_reply_to_status_id_str": "146870621807185920"}, +{"created_at": "Wed, 14 Dec 2011 08:34:19 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 146870621807185920, "id_str": "146870621807185920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@kriesse its been two months already? Wow. Will be visiting on the last week of January. I \\nSee you 2012! :)", "to_user": "kriesse", "to_user_id": 11531602, "to_user_id_str": "11531602", "to_user_name": "kriesse", "in_reply_to_status_id": 146855087371857920, "in_reply_to_status_id_str": "146855087371857920"}, +{"created_at": "Tue, 13 Dec 2011 15:48:05 +0000", "from_user": "davefinton", "from_user_id": 257070163, "from_user_id_str": "257070163", "from_user_name": "Dave Finton", "geo": null, "id": 146617393072963600, "id_str": "146617393072963584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1513632812/Photo_on_2011-08-25_at_20.28__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1513632812/Photo_on_2011-08-25_at_20.28__2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dscape @adamretter A cat that licks the air like that usually means it was weened too early as a kitten. Otherwise, the cat is fine. :^D", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 146544021769158660, "in_reply_to_status_id_str": "146544021769158656"}, +{"created_at": "Tue, 13 Dec 2011 15:12:17 +0000", "from_user": "plnkeholdemot", "from_user_id": 267775856, "from_user_id_str": "267775856", "from_user_name": "sjtnev", "geo": null, "id": 146608384928522240, "id_str": "146608384928522241", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1604121040/bang_copy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1604121040/bang_copy_normal.png", "source": "<a href="http://kitahei.cocolog-nifty.com/youyou/2007/04/foo_custominfo__6ab8.html" rel="nofollow">foo_twit_post</a>", "text": "#nowplaying On DScape Mix - Aphex Twin - [On No.01] http://t.co/WIFJ9Jmi #Electronic http://t.co/T9QgeNO1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 10:56:32 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 146544021769158660, "id_str": "146544021769158656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "cat starts licking my air. turns out i had cat food in my air.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 19:11:05 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 146306092119494660, "id_str": "146306092119494657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: I got a new grown-up style website!\\nhttp://t.co/3HN8iCl3\\nThanks to @glass and @mle_tanaka and all others who were involved.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 12:51:11 +0000", "from_user": "DesignScapeArch", "from_user_id": 169002472, "from_user_id_str": "169002472", "from_user_name": "Design Scape", "geo": null, "id": 146210490031423500, "id_str": "146210490031423488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1160069451/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1160069451/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Check out our website and Facebook page for project updates, Turfhall Stadium, http://t.co/D8MGhr9i, http://t.co/DqJfXSl5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 10:33:04 +0000", "from_user": "mathias", "from_user_id": 532923, "from_user_id_str": "532923", "from_user_name": "Mathias Bynens \\uE00D", "geo": null, "id": 146175730726862850, "id_str": "146175730726862848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1255767431/kung-fu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1255767431/kung-fu_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@dscape To be honest, these days @jdalton does all the work ;) +@3rdeden", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 146141874145607680, "in_reply_to_status_id_str": "146141874145607680"}, +{"created_at": "Mon, 12 Dec 2011 08:19:38 +0000", "from_user": "3rdEden", "from_user_id": 14350255, "from_user_id_str": "14350255", "from_user_name": "Arnout Kazemier", "geo": null, "id": 146142150827048960, "id_str": "146142150827048960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@dscape it's that module :p, see the first link in the tweet ;) @mathias", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 146141874145607680, "in_reply_to_status_id_str": "146141874145607680"}, +{"created_at": "Mon, 12 Dec 2011 08:18:32 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 146141874145607680, "id_str": "146141874145607680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "@3rdEden why not http://t.co/UkCwnwy9 by @mathias?", "to_user": "3rdEden", "to_user_id": 14350255, "to_user_id_str": "14350255", "to_user_name": "Arnout Kazemier", "in_reply_to_status_id": 146141673745944580, "in_reply_to_status_id_str": "146141673745944576"}, +{"created_at": "Mon, 12 Dec 2011 08:17:44 +0000", "from_user": "3rdEden", "from_user_id": 14350255, "from_user_id_str": "14350255", "from_user_name": "Arnout Kazemier", "geo": null, "id": 146141673745944580, "id_str": "146141673745944576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@dscape For socket.io we started using http://t.co/iqkJgkSw and our own benchmark `driver`: http://t.co/A8QY68Me", "to_user": "dscape", "to_user_id": 9279552, "to_user_id_str": "9279552", "to_user_name": "Nuno Job", "in_reply_to_status_id": 146132665605689340, "in_reply_to_status_id_str": "146132665605689345"}, +{"created_at": "Mon, 12 Dec 2011 07:41:57 +0000", "from_user": "dscape", "from_user_id": 9279552, "from_user_id_str": "9279552", "from_user_name": "Nuno Job", "geo": null, "id": 146132665605689340, "id_str": "146132665605689345", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312002435/36ff6d3_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "dear #lazyweb who got tips on performance testing node.js modules?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} + +, +{"created_at": "Mon, 19 Dec 2011 19:00:11 +0000", "from_user": "cheer420", "from_user_id": 367192211, "from_user_id_str": "367192211", "from_user_name": "Francheska Burneo", "geo": null, "id": 148840065517355000, "id_str": "148840065517355010", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702450364/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702450364/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@goldennVixen_ @iam_majestee NO THAT BABY WAS A CLOWN WITH THAT BAD BAD HAIR !!", "to_user": "goldennVixen_", "to_user_id": 200873305, "to_user_id_str": "200873305", "to_user_name": "Heavyn Arianna .", "in_reply_to_status_id": 148839936894832640, "in_reply_to_status_id_str": "148839936894832640"}, +{"created_at": "Mon, 19 Dec 2011 19:00:06 +0000", "from_user": "moliidolli", "from_user_id": 301137206, "from_user_id_str": "301137206", "from_user_name": "DS...", "geo": null, "id": 148840042155081730, "id_str": "148840042155081729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1690725147/261206_10150689911340487_524100486_19362969_760242_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690725147/261206_10150689911340487_524100486_19362969_760242_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "#iwasthatkid who was the class clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:03 +0000", "from_user": "faatiihaa", "from_user_id": 290426785, "from_user_id_str": "290426785", "from_user_name": "Fa", "geo": null, "id": 148840032789209100, "id_str": "148840032789209088", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Je bent de zekere weg in mijn labyrint. Je bent de clown die steeds mijn glimlach vindt..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:58 +0000", "from_user": "LaurenAkainyah", "from_user_id": 96433836, "from_user_id_str": "96433836", "from_user_name": "Laur\\u00E8n Akainyah ", "geo": null, "id": 148840008864903170, "id_str": "148840008864903168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1632983418/375980_10101083873056569_6854173_69927073_2076810231_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632983418/375980_10101083873056569_6854173_69927073_2076810231_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@RealColdMusic lmao. you are a clown!!!", "to_user": "RealColdMusic", "to_user_id": 84937845, "to_user_id_str": "84937845", "to_user_name": "Travis Bruce", "in_reply_to_status_id": 148837072625598460, "in_reply_to_status_id_str": "148837072625598464"}, +{"created_at": "Mon, 19 Dec 2011 18:59:52 +0000", "from_user": "prettylittletay", "from_user_id": 281784310, "from_user_id_str": "281784310", "from_user_name": "tayler kratsas \\u2655", "geo": null, "id": 148839985120944130, "id_str": "148839985120944128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701558474/J7PFUp04_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701558474/J7PFUp04_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I wish I NEVER met that fucking clown.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:52 +0000", "from_user": "cheer420", "from_user_id": 367192211, "from_user_id_str": "367192211", "from_user_name": "Francheska Burneo", "geo": null, "id": 148839985083187200, "id_str": "148839985083187200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702450364/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702450364/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @goldennVixen_: @cheer420 @iAm_Majestee ; ahahaha , Francheska youre a clown . THAT BAD BAD .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:51 +0000", "from_user": "FckAhTwittaNAME", "from_user_id": 229286728, "from_user_id_str": "229286728", "from_user_name": "Berke Side ", "geo": null, "id": 148839981975216130, "id_str": "148839981975216130", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700695627/profile_image_1324237173771_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700695627/profile_image_1324237173771_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "IF Yu Gotta Nigga,.Why Yu Geekin For Me To Call Yu? .Dis Da Time Yu Suppose To Be Talkin To Him.#Clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:49 +0000", "from_user": "sa2ny2004", "from_user_id": 18785182, "from_user_id_str": "18785182", "from_user_name": "sa2ny2004", "geo": null, "id": 148839973142011900, "id_str": "148839973142011905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/418838882/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/418838882/twitterProfilePhoto_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Ex #Spurs forward Dennis Rodman is a clown on the court, literally: http://t.co/yJZqghY3 via @projectspurs @kyleboenitz #gospursgo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:40 +0000", "from_user": "goldennVixen_", "from_user_id": 200873305, "from_user_id_str": "200873305", "from_user_name": "Heavyn Arianna .", "geo": null, "id": 148839936894832640, "id_str": "148839936894832640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691759725/RJQoP081_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691759725/RJQoP081_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@cheer420 @iAm_Majestee ; ahahaha , Francheska youre a clown . THAT BAD BAD .", "to_user": "cheer420", "to_user_id": 367192211, "to_user_id_str": "367192211", "to_user_name": "Francheska Burneo", "in_reply_to_status_id": 148839682455773200, "in_reply_to_status_id_str": "148839682455773184"}, +{"created_at": "Mon, 19 Dec 2011 18:59:36 +0000", "from_user": "Hes_DatGuy", "from_user_id": 262191218, "from_user_id_str": "262191218", "from_user_name": "Jarrelle Dixon", "geo": null, "id": 148839919744331780, "id_str": "148839919744331776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1670659626/Snapshot_20111116_10_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670659626/Snapshot_20111116_10_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@Mulatto_Chick_: @Hes_DatGuy Lmao your a clown\" ^_^", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:32 +0000", "from_user": "fuckfollowingme", "from_user_id": 99126536, "from_user_id_str": "99126536", "from_user_name": "Stacia Rtm", "geo": null, "id": 148839900211449860, "id_str": "148839900211449857", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689287373/DSC00612_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689287373/DSC00612_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "LOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOL WARREN YOU CLOWN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:17 +0000", "from_user": "mari_escobar12", "from_user_id": 235977475, "from_user_id_str": "235977475", "from_user_name": "Mari Escobar \\uE056\\uE328\\uE314\\uE018\\uE035", "geo": null, "id": 148839838802640900, "id_str": "148839838802640896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700980644/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700980644/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @navayekita: You wear more makeup than a clown.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:17 +0000", "from_user": "Rave2Crave", "from_user_id": 80165577, "from_user_id_str": "80165577", "from_user_name": "Raven Ingram", "geo": null, "id": 148839837338837000, "id_str": "148839837338836992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692799447/XIf9JBT2_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692799447/XIf9JBT2_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@arieparker09: \"@Rave2Crave: My circle small..&& lil Raven like it like that\" ARE YOU PREGNANT? ?? >>> NOOO U CLOWN...LOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:03 +0000", "from_user": "YOitsharaexoxo", "from_user_id": 174107618, "from_user_id_str": "174107618", "from_user_name": "sha-rae ", "geo": null, "id": 148839778564050940, "id_str": "148839778564050944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696039472/331557725_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696039472/331557725_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_shesBRI_lliant: I'm never mad , I'm just laughing at a clown.. who else wanna join the circus wave ?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:48 +0000", "from_user": "GrittyGentleman", "from_user_id": 330407206, "from_user_id_str": "330407206", "from_user_name": "The Gritty Gentleman", "geo": null, "id": 148839717004247040, "id_str": "148839717004247040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1429307183/264289_10150301169456357_694371356_9661943_7622606_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1429307183/264289_10150301169456357_694371356_9661943_7622606_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Kim Jong Il: North Korea Dictator/Clown Dies of "Fatigue Caused By Train Ride" - @Gizmodo http://t.co/GT0zzd4E", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:46 +0000", "from_user": "Troyvul", "from_user_id": 126450180, "from_user_id_str": "126450180", "from_user_name": "Troybert ", "geo": null, "id": 148839708716314620, "id_str": "148839708716314624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690183597/Middle_Finger_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690183597/Middle_Finger_2_normal.jpg", "source": "<a href="http://getsocialscope.com" rel="nofollow">SocialScope</a>", "text": "@ZipSquad_JihaD @Remixznflow82 you better clown a lot more teams before you get to my bills", "to_user": "ZipSquad_JihaD", "to_user_id": 263474444, "to_user_id_str": "263474444", "to_user_name": "Notorious B.I.Gamist", "in_reply_to_status_id": 148837735313051650, "in_reply_to_status_id_str": "148837735313051648"}, +{"created_at": "Mon, 19 Dec 2011 18:58:45 +0000", "from_user": "xxxj_leexxx", "from_user_id": 111043497, "from_user_id_str": "111043497", "from_user_name": "Jamie~Lee Cunningham", "geo": null, "id": 148839703360180220, "id_str": "148839703360180224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1609455599/mobile_pix_336_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609455599/mobile_pix_336_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @RichardOBarry: Dolphins are free-ranging, intelligent, & complex wild animals, and they belong in the oceans, not playing the clown in our human schemes.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:42 +0000", "from_user": "BadAsz_Ke", "from_user_id": 57461567, "from_user_id_str": "57461567", "from_user_name": "Ke Bitch", "geo": null, "id": 148839690307518460, "id_str": "148839690307518465", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695802670/ke_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695802670/ke_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Lol diss hoe is soooo illiterate but she tryna clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:40 +0000", "from_user": "cheer420", "from_user_id": 367192211, "from_user_id_str": "367192211", "from_user_name": "Francheska Burneo", "geo": null, "id": 148839682455773200, "id_str": "148839682455773184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702450364/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702450364/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@iAm_Majestee @goldennvixen_ no bittie HEAVYN IS THE ONLY CLOWN HERE !", "to_user": "iAm_Majestee", "to_user_id": 323558564, "to_user_id_str": "323558564", "to_user_name": "Majestee_Payton \\u2661 ", "in_reply_to_status_id": 148839494580310000, "in_reply_to_status_id_str": "148839494580310016"}, +{"created_at": "Mon, 19 Dec 2011 18:58:37 +0000", "from_user": "PrettyGurls_Roc", "from_user_id": 261438784, "from_user_id_str": "261438784", "from_user_name": "Brittany Levi", "geo": null, "id": 148839665766641660, "id_str": "148839665766641664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700279349/P17MW7oM_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700279349/P17MW7oM_normal", "source": "<a href="http://www.apple.com" rel="nofollow">Camera on iOS</a>", "text": "He a whole clown that nappy head boy next to the girl that's doing here hair in the red @Allabtmonet yea that's youlol http://t.co/MCPHYHag", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:20 +0000", "from_user": "Mr_Kohen", "from_user_id": 256156272, "from_user_id_str": "256156272", "from_user_name": "Donald Lee Moore Jr", "geo": null, "id": 148839598578085900, "id_str": "148839598578085888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1633333610/155750_154370291275382_100001072369226_260448_2468998_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633333610/155750_154370291275382_100001072369226_260448_2468998_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Nothing but a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:53 +0000", "from_user": "PatdaRock5", "from_user_id": 396224629, "from_user_id_str": "396224629", "from_user_name": "Pat White", "geo": null, "id": 148839484232962050, "id_str": "148839484232962048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1679456026/PatdaRock5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679456026/PatdaRock5_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Oh_Bitchie_One Lol I bet Wayne wasn't a clown when he said it", "to_user": "Oh_Bitchie_One", "to_user_id": 24136473, "to_user_id_str": "24136473", "to_user_name": "Ms. Jackson", "in_reply_to_status_id": 148839003104358400, "in_reply_to_status_id_str": "148839003104358400"}, +{"created_at": "Mon, 19 Dec 2011 18:57:47 +0000", "from_user": "_partyworld", "from_user_id": 151372636, "from_user_id_str": "151372636", "from_user_name": "\\u3010\\u30D1\\u30FC\\u30C6\\u30A3\\u30EF\\u30FC\\u30EB\\u30C9\\u3011\\u30D1\\u30FC\\u30C6\\u30A3\\u30FC\\u30B0\\u30C3\\u30BA\\u901A\\u8CA9", "geo": null, "id": 148839462879772670, "id_str": "148839462879772672", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546408457/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546408457/image_normal.jpg", "source": "<a href="http://www.party-world.jp/" rel="nofollow">UNI-SUPPLY</a>", "text": "Adult Clown Shoes 802386 \\u901A\\u8CA9 http://t.co/BI2JB2lm | \\u30D4\\u30A8\\u30ED\\u30B9\\u30FC\\u30C4\\u30FB\\u30A4\\u30D9\\u30F3\\u30C8\\u8863\\u88C5 | \\u30A4\\u30D9\\u30F3\\u30C8\\u30B0\\u30C3\\u30BA | \\u30D1\\u30FC\\u30C6\\u30A3\\u30FC\\u30B0\\u30C3\\u30BA | \\u30D1\\u30FC\\u30C6\\u30A3\\u30EF\\u30FC\\u30EB\\u30C9 | \\u30E6\\u30CB\\u30B5\\u30D7\\u30E9\\u30A4\\u30BA\\u306E\\u30AA\\u30F3\\u30E9\\u30A4\\u30F3\\u30B7\\u30E7\\u30C3\\u30D7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:40 +0000", "from_user": "_June30th", "from_user_id": 110093903, "from_user_id_str": "110093903", "from_user_name": "Shayy Carter", "geo": null, "id": 148839433582542850, "id_str": "148839433582542848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689198470/384396_270683146315256_100001207179195_850737_356641092_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689198470/384396_270683146315256_100001207179195_850737_356641092_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Boobs_n_Vodka LMao Nope I Havent Talked Too Your BestFriend. Yall Mine As Well Get Over It Sooo We Clown Fr New Years As The #TRIO", "to_user": "Boobs_n_Vodka", "to_user_id": 32554308, "to_user_id_str": "32554308", "to_user_name": "London Dior \\u2653", "in_reply_to_status_id": 148838592528125950, "in_reply_to_status_id_str": "148838592528125952"}, +{"created_at": "Mon, 19 Dec 2011 18:57:36 +0000", "from_user": "WaynieFukinPooh", "from_user_id": 294356806, "from_user_id_str": "294356806", "from_user_name": "Wayne", "geo": null, "id": 148839416255889400, "id_str": "148839416255889408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1682371447/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682371447/me_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Disrespect me and I clown I'm the type of bitch to throw down", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:35 +0000", "from_user": "larmanius", "from_user_id": 14271513, "from_user_id_str": "14271513", "from_user_name": "larmanius", "geo": null, "id": 148839410673258500, "id_str": "148839410673258497", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/52298886/dr_manhattan_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/52298886/dr_manhattan_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iowahawkblog: First Al Davis, then Kim Jong-Il; bad year for insane clown-haired dictators in novelty Elvis sunglasses", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:34 +0000", "from_user": "hattiepearson", "from_user_id": 148128032, "from_user_id_str": "148128032", "from_user_name": "Hattie Pearson", "geo": null, "id": 148839408332840960, "id_str": "148839408332840960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1552763055/226198_10150304244963868_505338867_9627751_555882_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552763055/226198_10150304244963868_505338867_9627751_555882_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@EdwardUsher it's Barrington right? Met a clown called that the other week. Yeah sure - would be a pleasure :) x", "to_user": "EdwardUsher", "to_user_id": 90703872, "to_user_id_str": "90703872", "to_user_name": "Edward Usher", "in_reply_to_status_id": 148838471220461570, "in_reply_to_status_id_str": "148838471220461569"}, +{"created_at": "Mon, 19 Dec 2011 18:57:31 +0000", "from_user": "RAkO2One", "from_user_id": 375108507, "from_user_id_str": "375108507", "from_user_name": "Raquel Chavez", "geo": null, "id": 148839393908637700, "id_str": "148839393908637696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1685395112/Bqnd4dWC_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685395112/Bqnd4dWC_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "you got me sheddin tears of a clown .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:29 +0000", "from_user": "KIDDD_SWAGG", "from_user_id": 271435333, "from_user_id_str": "271435333", "from_user_name": "Markus Macklin", "geo": null, "id": 148839386430189570, "id_str": "148839386430189568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695326115/SWAGG_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695326115/SWAGG_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "shxt chillen waitin for dem to get out of scool and den iama clown wit clown wit da nikkas", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:18 +0000", "from_user": "_shesBRI_lliant", "from_user_id": 277187099, "from_user_id_str": "277187099", "from_user_name": "\\u2661 B r i a n n a \\u2661", "geo": null, "id": 148839340838101000, "id_str": "148839340838100993", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691874561/_shesBRI_lliant_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691874561/_shesBRI_lliant_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "I'm never mad , I'm just laughing at a clown.. who else wanna join the circus wave ?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:11 +0000", "from_user": "heathshing", "from_user_id": 322781009, "from_user_id_str": "322781009", "from_user_name": "Heather Shingleton", "geo": null, "id": 148839311360532480, "id_str": "148839311360532481", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697083705/jlk_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697083705/jlk_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "congrats to @rensant19 for getting accepted to clown collegeee(; #loveyouuuuuuu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:08 +0000", "from_user": "willwork4_SHOES", "from_user_id": 74232890, "from_user_id_str": "74232890", "from_user_name": "Young, Fly & Fla$hy", "geo": null, "id": 148839296537866240, "id_str": "148839296537866240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700162034/IMG_20111217_232243-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700162034/IMG_20111217_232243-1_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "That awkward moment when u talk to a dude & his man try go at you...that's clown shit where's the loyalty? smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:59 +0000", "from_user": "MusicLovingKita", "from_user_id": 387676947, "from_user_id_str": "387676947", "from_user_name": "Markita Wilkins ", "geo": null, "id": 148839261708365820, "id_str": "148839261708365824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691797571/scarf_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691797571/scarf_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Thurt530 clown follow back!", "to_user": "Thurt530", "to_user_id": 361270008, "to_user_id_str": "361270008", "to_user_name": "Uuuuu Knoooo"}, +{"created_at": "Mon, 19 Dec 2011 18:56:57 +0000", "from_user": "Cnote_8", "from_user_id": 41796786, "from_user_id_str": "41796786", "from_user_name": "Cnote", "geo": null, "id": 148839252392820740, "id_str": "148839252392820736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1657184563/0Y2H6t7Q_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657184563/0Y2H6t7Q_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@MnyGrpFkd @mzphilly215 @mimladen29 @KingDAVIDda4th Smfh clown shit Cdfu", "to_user": "MnyGrpFkd", "to_user_id": 99964426, "to_user_id_str": "99964426", "to_user_name": "Mike Brown", "in_reply_to_status_id": 148839064664145920, "in_reply_to_status_id_str": "148839064664145920"}, +{"created_at": "Mon, 19 Dec 2011 18:56:47 +0000", "from_user": "MrsMoon2B2012", "from_user_id": 231957426, "from_user_id_str": "231957426", "from_user_name": "Marquita Anderson", "geo": null, "id": 148839207811551230, "id_str": "148839207811551232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696528486/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696528486/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "<<<Currently in the lab making a BUG SPRAY TO KEEP CLOWN ASS NIGGAS AWAY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:46 +0000", "from_user": "ThugOf_DaYear", "from_user_id": 262920335, "from_user_id_str": "262920335", "from_user_name": "Daren Coleman", "geo": null, "id": 148839203906662400, "id_str": "148839203906662400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1678317920/ThugOf_DaYear_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678317920/ThugOf_DaYear_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Ole clown ass nigga", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:40 +0000", "from_user": "TheRealSkeet", "from_user_id": 31576801, "from_user_id_str": "31576801", "from_user_name": "Skeety Pablo", "geo": null, "id": 148839179592286200, "id_str": "148839179592286208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1659057325/TheRealSkeet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659057325/TheRealSkeet_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "this nigga E a fuccin clown lmao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:36 +0000", "from_user": "JoStallion", "from_user_id": 213931550, "from_user_id_str": "213931550", "from_user_name": "Josef Tolliver", "geo": null, "id": 148839163242885120, "id_str": "148839163242885121", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1673908766/a84pK3sA_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673908766/a84pK3sA_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "5 mo days til I touchdown me and my crew know we gone clown!!!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:33 +0000", "from_user": "KennyBdHURDLER", "from_user_id": 278865136, "from_user_id_str": "278865136", "from_user_name": "KennyB", "geo": +{"coordinates": [32.766,-97.3499], "type": "Point"}, "id": 148839150064377860, "id_str": "148839150064377856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688742857/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688742857/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Lmao HATER RT @ExcellenceJr: RT @KennyBdHURDLER: I am tired of been Fort Worth fast I wanna be COLLEGE fast.---- hahahaha clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:27 +0000", "from_user": "yaboyCP23", "from_user_id": 64335994, "from_user_id_str": "64335994", "from_user_name": "Christian Parlato", "geo": null, "id": 148839125372502000, "id_str": "148839125372502018", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1265995198/6534_119828636482_532661482_2508474_224129_s_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1265995198/6534_119828636482_532661482_2508474_224129_s_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@msoevyn9 he's such a clown haha", "to_user": "msoevyn9", "to_user_id": 170109778, "to_user_id_str": "170109778", "to_user_name": "Marc Soevyn"}, +{"created_at": "Mon, 19 Dec 2011 18:56:26 +0000", "from_user": "RazB32", "from_user_id": 88661589, "from_user_id_str": "88661589", "from_user_name": "\\u042F\\u2654\\u212C", "geo": null, "id": 148839121769611260, "id_str": "148839121769611264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1435961917/BBBBBBBBBB_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1435961917/BBBBBBBBBB_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@MandaFierce hahaha i was thinking \"hmm i better say on youtube\" LOL clown :D x", "to_user": "MandaFierce", "to_user_id": 32370524, "to_user_id_str": "32370524", "to_user_name": "Amanda Jellyman", "in_reply_to_status_id": 148839007688728580, "in_reply_to_status_id_str": "148839007688728576"}, +{"created_at": "Mon, 19 Dec 2011 18:56:24 +0000", "from_user": "EducatedAfrican", "from_user_id": 24629490, "from_user_id_str": "24629490", "from_user_name": "Terrence Taylor", "geo": null, "id": 148839110935724030, "id_str": "148839110935724033", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1669383136/34772_1433875700566_1643139839_1059608_520921_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669383136/34772_1433875700566_1643139839_1059608_520921_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@CoachRoni @JRACK89 @kthehitman @moneysteph Soccer sounds like the move.. lets meet up somewhere so I can clown on yall niggas", "to_user": "CoachRoni", "to_user_id": 338041488, "to_user_id_str": "338041488", "to_user_name": "Coach Roni", "in_reply_to_status_id": 148838864449044480, "in_reply_to_status_id_str": "148838864449044480"}, +{"created_at": "Mon, 19 Dec 2011 18:56:21 +0000", "from_user": "JeremiahTweet", "from_user_id": 380511689, "from_user_id_str": "380511689", "from_user_name": "Eric Enfield Gerarde", "geo": null, "id": 148839101230100480, "id_str": "148839101230100481", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1561264595/320976_2207188054267_1084381477_33781900_4466797_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1561264595/320976_2207188054267_1084381477_33781900_4466797_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@_WebMeister you're gonna die clown! #I'mcomingforyou", "to_user": "_WebMeister", "to_user_id": 218664255, "to_user_id_str": "218664255", "to_user_name": "Jimmy Webster", "in_reply_to_status_id": 148625835975381000, "in_reply_to_status_id_str": "148625835975380992"}, +{"created_at": "Mon, 19 Dec 2011 18:56:17 +0000", "from_user": "_partyworld", "from_user_id": 151372636, "from_user_id_str": "151372636", "from_user_name": "\\u3010\\u30D1\\u30FC\\u30C6\\u30A3\\u30EF\\u30FC\\u30EB\\u30C9\\u3011\\u30D1\\u30FC\\u30C6\\u30A3\\u30FC\\u30B0\\u30C3\\u30BA\\u901A\\u8CA9", "geo": null, "id": 148839082871627780, "id_str": "148839082871627777", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546408457/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546408457/image_normal.jpg", "source": "<a href="http://www.party-world.jp/" rel="nofollow">UNI-SUPPLY</a>", "text": "\\u301025%OFF\\u301115346 Snazzy Clown \\u901A\\u8CA9 http://t.co/lbKbKrt3 | \\u30D4\\u30A8\\u30ED\\u30B9\\u30FC\\u30C4\\u30FB\\u30A4\\u30D9\\u30F3\\u30C8\\u8863\\u88C5 | \\u30A4\\u30D9\\u30F3\\u30C8\\u30B0\\u30C3\\u30BA | \\u30D1\\u30FC\\u30C6\\u30A3\\u30FC\\u30B0\\u30C3\\u30BA | \\u30D1\\u30FC\\u30C6\\u30A3\\u30EF\\u30FC\\u30EB\\u30C9 | \\u30E6\\u30CB\\u30B5\\u30D7\\u30E9\\u30A4\\u30BA\\u306E\\u30AA\\u30F3\\u30E9\\u30A4\\u30F3\\u30B7\\u30E7\\u30C3\\u30D7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:13 +0000", "from_user": "GiorgiaWoods", "from_user_id": 30645690, "from_user_id_str": "30645690", "from_user_name": "giorgia woods ", "geo": null, "id": 148839067503706100, "id_str": "148839067503706112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1689637563/ScreenShot_2011-12-12_20-52-01_by_s4bb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689637563/ScreenShot_2011-12-12_20-52-01_by_s4bb_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Its nice that in the 'Mistletoe' video Bieber sign's his 'girlfriends' card with his full name. As if she didn't know who he is. #clown.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:10 +0000", "from_user": "will_WILDfire", "from_user_id": 265761468, "from_user_id_str": "265761468", "from_user_name": "Will Hoggard", "geo": null, "id": 148839053356314620, "id_str": "148839053356314624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701274566/Picture_of_me_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701274566/Picture_of_me_2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@EimanHenson haha, thank you! you really don't know how much that means, seeing as you guys just clown the hell outta me all the time. *tear", "to_user": "EimanHenson", "to_user_id": 71075577, "to_user_id_str": "71075577", "to_user_name": "Eiman Henson", "in_reply_to_status_id": 148838285358268400, "in_reply_to_status_id_str": "148838285358268417"}, +{"created_at": "Mon, 19 Dec 2011 18:56:07 +0000", "from_user": "RishiRamdien", "from_user_id": 255708974, "from_user_id_str": "255708974", "from_user_name": "RishiRamdienn'", "geo": null, "id": 148839039984877570, "id_str": "148839039984877569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1663973737/22_203_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663973737/22_203_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"@thijskoerntjes: @RishiRamdien nee clown. ook jij hebt pw.\" // oh, thanks mann", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:05 +0000", "from_user": "TamzDoll", "from_user_id": 205846969, "from_user_id_str": "205846969", "from_user_name": "Lucy Lupac \\uD0C0\\uBBF8 \\uB9AC ", "geo": null, "id": 148839033877962750, "id_str": "148839033877962752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697909728/TamzDoll_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697909728/TamzDoll_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "lmaoooo now my mom AND @KiKivonSeoul mom just gon clown my nose!!", "to_user": "KiKivonSeoul", "to_user_id": 276971171, "to_user_id_str": "276971171", "to_user_name": "\\uC81C\\uB2C8 J.Gotti", "in_reply_to_status_id": 148837530429685760, "in_reply_to_status_id_str": "148837530429685760"}, +{"created_at": "Mon, 19 Dec 2011 18:56:05 +0000", "from_user": "Itz_ALLGuuD", "from_user_id": 374018116, "from_user_id_str": "374018116", "from_user_name": "That 80's Babe", "geo": null, "id": 148839031311052800, "id_str": "148839031311052800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683135968/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683135968/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@CandyLadii_13 sup clown", "to_user": "CandyLadii_13", "to_user_id": 335461130, "to_user_id_str": "335461130", "to_user_name": "Kaniesha Greer"}, +{"created_at": "Mon, 19 Dec 2011 18:56:02 +0000", "from_user": "Msindepedent22", "from_user_id": 301160812, "from_user_id_str": "301160812", "from_user_name": "nephtali", "geo": null, "id": 148839020846260220, "id_str": "148839020846260224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1644264966/Photo_on_2011-11-17_at_17.31__3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644264966/Photo_on_2011-11-17_at_17.31__3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @YasmineAkib: Ochocino is oneee clown assss nigggaaaa BAHAHAHAHAAA!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:58 +0000", "from_user": "Oh_Bitchie_One", "from_user_id": 24136473, "from_user_id_str": "24136473", "from_user_name": "Ms. Jackson", "geo": null, "id": 148839003104358400, "id_str": "148839003104358400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1659123495/photo-1_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659123495/photo-1_normal.JPG", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Clown. RT @PatdaRock5: Sit your Five Dollar ass down before I make Change", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:55 +0000", "from_user": "Bri_MostWanted", "from_user_id": 155925547, "from_user_id_str": "155925547", "from_user_name": "Bri_DafuckinREALEST", "geo": null, "id": 148838992924786700, "id_str": "148838992924786688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627313937/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627313937/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@DaFashionMONSTA: @Bri_MostWanted MEET ME N DA MALL ITS GOING DWNNNNN! LOL!\\u201D/slick pulla off probation bout to clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:53 +0000", "from_user": "MrsMoon2B2012", "from_user_id": 231957426, "from_user_id_str": "231957426", "from_user_name": "Marquita Anderson", "geo": null, "id": 148838984385175550, "id_str": "148838984385175552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696528486/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696528486/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "# # #THEY SHOULD HAVE BUG SPRAY FOR CLOWN ASS NIGGAS!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:49 +0000", "from_user": "D_Beal", "from_user_id": 32119865, "from_user_id_str": "32119865", "from_user_name": "Sega", "geo": null, "id": 148838965271732220, "id_str": "148838965271732224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682693960/2011-12-06_14.52.50-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682693960/2011-12-06_14.52.50-1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "but the one i had earlier included gay black clown kids on crack hiding out in a purple cab", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:41 +0000", "from_user": "Snezzy_N", "from_user_id": 360283556, "from_user_id_str": "360283556", "from_user_name": "\\u273DLil Miss Sunshine\\u273D", "geo": null, "id": 148838933554409470, "id_str": "148838933554409472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697815831/peuf_20111217_237_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697815831/peuf_20111217_237_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Your boss? RT @FUNDI_PMB: So this clown replaced me lol fast kanje?! Owkay :-) hahaha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:36 +0000", "from_user": "xAirForce_GIRLx", "from_user_id": 398746092, "from_user_id_str": "398746092", "from_user_name": "Nisha'RaShawn", "geo": null, "id": 148838913392381950, "id_str": "148838913392381952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702281015/nisha8_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702281015/nisha8_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@_xAn0ther_R0und haha love you to shanikerrrrrrrr #InMYCountryVoice and u being a clown for tomah?", "to_user": "_xAn0ther_R0und", "to_user_id": 50162259, "to_user_id_str": "50162259", "to_user_name": "Shanika'", "in_reply_to_status_id": 148838679085977600, "in_reply_to_status_id_str": "148838679085977601"}, +{"created_at": "Mon, 19 Dec 2011 18:55:36 +0000", "from_user": "oonanana", "from_user_id": 224062542, "from_user_id_str": "224062542", "from_user_name": "Nubian Gem", "geo": null, "id": 148838912473829380, "id_str": "148838912473829376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688754933/2011-11-10_14-18-58_347_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688754933/2011-11-10_14-18-58_347_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@_EricReynolds @dat_negro_chico pullllllease eric..ur the only clown so shut that shit up -_- .", "to_user": "_EricReynolds", "to_user_id": 428703645, "to_user_id_str": "428703645", "to_user_name": "Eric Reynolds", "in_reply_to_status_id": 148810323036606460, "in_reply_to_status_id_str": "148810323036606464"}, +{"created_at": "Mon, 19 Dec 2011 18:55:33 +0000", "from_user": "ExcellenceJr", "from_user_id": 243053982, "from_user_id_str": "243053982", "from_user_name": "Ej", "geo": null, "id": 148838899328876540, "id_str": "148838899328876544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1572698529/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572698529/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @KennyBdHURDLER: I am tired of been Fort Worth fast I wanna be COLLEGE fast.---- hahahaha clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:31 +0000", "from_user": "WoodsLounge", "from_user_id": 330397275, "from_user_id_str": "330397275", "from_user_name": "The Wood", "geo": null, "id": 148838889996558340, "id_str": "148838889996558337", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1634363288/yeahhh_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634363288/yeahhh_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MATHHOFFA: @CHARLIECLIPS whatever \"rapper\" .... i know it wont be the same talk in person so ima end the show... dont say my name no more. ur a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:28 +0000", "from_user": "goldennVixen_", "from_user_id": 200873305, "from_user_id_str": "200873305", "from_user_name": "Heavyn Arianna .", "geo": null, "id": 148838879716311040, "id_str": "148838879716311040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691759725/RJQoP081_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691759725/RJQoP081_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@cheer420 @iAm_Majestee ; how am i a clown , lmfaoo ,", "to_user": "cheer420", "to_user_id": 367192211, "to_user_id_str": "367192211", "to_user_name": "Francheska Burneo", "in_reply_to_status_id": 148838625126264830, "in_reply_to_status_id_str": "148838625126264832"}, +{"created_at": "Mon, 19 Dec 2011 18:55:28 +0000", "from_user": "iAmChellyJames", "from_user_id": 237051235, "from_user_id_str": "237051235", "from_user_name": "chelly", "geo": null, "id": 148838877027762180, "id_str": "148838877027762177", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1603137855/Photo_00031_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1603137855/Photo_00031_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@shesFLAWLESSS i guess its on that Chris Paul shit to then , CLOWN .", "to_user": "shesFLAWLESSS", "to_user_id": 199165878, "to_user_id_str": "199165878", "to_user_name": "Shan\\u2665", "in_reply_to_status_id": 148838132241018880, "in_reply_to_status_id_str": "148838132241018880"}, +{"created_at": "Mon, 19 Dec 2011 18:55:19 +0000", "from_user": "BarryMurphy89", "from_user_id": 311711125, "from_user_id_str": "311711125", "from_user_name": "Barry 'Brick' Murphy", "geo": null, "id": 148838841401360400, "id_str": "148838841401360386", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1585346159/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585346159/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@UnitedLoyalists you're a sad sectarian clown", "to_user": "UnitedLoyalists", "to_user_id": 398831975, "to_user_id_str": "398831975", "to_user_name": "Mainland Loyalists ", "in_reply_to_status_id": 145875157678956540, "in_reply_to_status_id_str": "145875157678956544"}, +{"created_at": "Mon, 19 Dec 2011 18:55:13 +0000", "from_user": "moneypowerink", "from_user_id": 287693563, "from_user_id_str": "287693563", "from_user_name": "\\u272AGabriel\\u272A", "geo": null, "id": 148838814499082240, "id_str": "148838814499082242", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1690956415/sam_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690956415/sam_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "i wana command a whole army of demons and set them on some angels i wana swing it out with jesus one bang drop that clown wna splash him out", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:04 +0000", "from_user": "PrettiNik23", "from_user_id": 35425638, "from_user_id_str": "35425638", "from_user_name": "Simply Nicole", "geo": null, "id": 148838775756308480, "id_str": "148838775756308480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1657805102/nik24_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657805102/nik24_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "This clown said camp out for them concords so i'll know its real...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:00 +0000", "from_user": "KawaiiLovesLife", "from_user_id": 377162552, "from_user_id_str": "377162552", "from_user_name": "Kawaii Love\\uE324\\uE313", "geo": null, "id": 148838762309353470, "id_str": "148838762309353472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700694057/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700694057/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "So This Guy Rashad Just Called Me CLOWN!!*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:54 +0000", "from_user": "TeeBake23", "from_user_id": 113850673, "from_user_id_str": "113850673", "from_user_name": "Dawg , I'm Tiara \\uE42A", "geo": null, "id": 148838735641972740, "id_str": "148838735641972736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686680224/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686680224/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@_AdotB lmfao . you tryna clown on twitter ! you aint gone stall me out ?", "to_user": "_AdotB", "to_user_id": 231132850, "to_user_id_str": "231132850", "to_user_name": "Aaron Baysdon", "in_reply_to_status_id": 148838394779287550, "in_reply_to_status_id_str": "148838394779287552"}, +{"created_at": "Mon, 19 Dec 2011 18:54:47 +0000", "from_user": "thijskoerntjes", "from_user_id": 101534024, "from_user_id_str": "101534024", "from_user_name": "Thijs", "geo": null, "id": 148838707959578620, "id_str": "148838707959578624", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1310562006/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1310562006/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@RishiRamdien nee clown. ook jij hebt pw.", "to_user": "RishiRamdien", "to_user_id": 255708974, "to_user_id_str": "255708974", "to_user_name": "RishiRamdienn'", "in_reply_to_status_id": 148838511863271420, "in_reply_to_status_id_str": "148838511863271424"}, +{"created_at": "Mon, 19 Dec 2011 18:54:43 +0000", "from_user": "_partyworld", "from_user_id": 151372636, "from_user_id_str": "151372636", "from_user_name": "\\u3010\\u30D1\\u30FC\\u30C6\\u30A3\\u30EF\\u30FC\\u30EB\\u30C9\\u3011\\u30D1\\u30FC\\u30C6\\u30A3\\u30FC\\u30B0\\u30C3\\u30BA\\u901A\\u8CA9", "geo": null, "id": 148838690343489540, "id_str": "148838690343489536", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546408457/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546408457/image_normal.jpg", "source": "<a href="http://www.party-world.jp/" rel="nofollow">UNI-SUPPLY</a>", "text": "55023 Clown \\u901A\\u8CA9 http://t.co/CowiNjIQ | \\u30D4\\u30A8\\u30ED\\u30B9\\u30FC\\u30C4\\u30FB\\u30A4\\u30D9\\u30F3\\u30C8\\u8863\\u88C5 | \\u30A4\\u30D9\\u30F3\\u30C8\\u30B0\\u30C3\\u30BA | \\u30D1\\u30FC\\u30C6\\u30A3\\u30FC\\u30B0\\u30C3\\u30BA | \\u30D1\\u30FC\\u30C6\\u30A3\\u30EF\\u30FC\\u30EB\\u30C9 | \\u30E6\\u30CB\\u30B5\\u30D7\\u30E9\\u30A4\\u30BA\\u306E\\u30AA\\u30F3\\u30E9\\u30A4\\u30F3\\u30B7\\u30E7\\u30C3\\u30D7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:39 +0000", "from_user": "RedPlanetWoman", "from_user_id": 143150768, "from_user_id_str": "143150768", "from_user_name": "Elizabeth (not Liz!)", "geo": null, "id": 148838670974201860, "id_str": "148838670974201857", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701579522/npDnA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701579522/npDnA_normal.jpg", "source": "<a href="http://stone.com/Twittelator" rel="nofollow">Twittelator</a>", "text": "He's our silly little clown:) RT @ShannonLetoArmy @RedPlanetWoman Bwahahahah xD I love this song really XD Perfect for Shan xD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:38 +0000", "from_user": "PNPinkNastyPN", "from_user_id": 274200594, "from_user_id_str": "274200594", "from_user_name": "Pink Nasty", "geo": null, "id": 148838669170638850, "id_str": "148838669170638849", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1291976434/20054646-3737006_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1291976434/20054646-3737006_normal.jpg", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "Something about Kansas brings out your inner fan-boy status for Insane Clown Posse. #DrivingAroundKsAmongstMethHeads", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:32 +0000", "from_user": "DivaDria", "from_user_id": 60569760, "from_user_id_str": "60569760", "from_user_name": "Dria aka The Boobs", "geo": null, "id": 148838642855583740, "id_str": "148838642855583745", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693053622/DivaDria_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693053622/DivaDria_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "This convo is done. Lol clown \\u201C@blessthefall101 @DivaDria that argument does not apply to what I said #uhavefailed\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:27 +0000", "from_user": "temptingtrouble", "from_user_id": 34946543, "from_user_id_str": "34946543", "from_user_name": "Priceless Trouble ", "geo": null, "id": 148838622974578700, "id_str": "148838622974578688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693070767/red7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693070767/red7_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Some gyal clown a pour out liquor for a next man what left as the man get invited to cum watch the gal clown poppi show. Some man shameless.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:17 +0000", "from_user": "TheRealist_434", "from_user_id": 34824049, "from_user_id_str": "34824049", "from_user_name": "Tan Norwood", "geo": null, "id": 148838578330415100, "id_str": "148838578330415104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691296871/Asap_DontTrap_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691296871/Asap_DontTrap_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "What goes on in our house should stay in our house but no it's been carried across the street #clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:16 +0000", "from_user": "ChrisAziz21", "from_user_id": 207190462, "from_user_id_str": "207190462", "from_user_name": "Chris Aziz", "geo": null, "id": 148838575893516300, "id_str": "148838575893516288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1661284624/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661284624/image_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">YouTube on iOS</a>", "text": "Haha they clown Tim Tebow @mossisontop http://t.co/TD6r3AaF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:15 +0000", "from_user": "xAirForce_GIRLx", "from_user_id": 398746092, "from_user_id_str": "398746092", "from_user_name": "Nisha'RaShawn", "geo": null, "id": 148838571745349630, "id_str": "148838571745349633", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702281015/nisha8_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702281015/nisha8_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@TeamCrankOnYou o and u being a clown and i got the new black and white one its pretty", "to_user": "TeamCrankOnYou", "to_user_id": 60322405, "to_user_id_str": "60322405", "to_user_name": "Tia Dozier", "in_reply_to_status_id": 148837429485375500, "in_reply_to_status_id_str": "148837429485375488"}, +{"created_at": "Mon, 19 Dec 2011 18:54:10 +0000", "from_user": "ShaQuira_Monroe", "from_user_id": 338404049, "from_user_id_str": "338404049", "from_user_name": "Charleste ShaQuira(:", "geo": null, "id": 148838551717548030, "id_str": "148838551717548034", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702389002/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702389002/image_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@kaeDope_ llf it was too boring...,you know im a clown! And that #rollingCHAIR", "to_user": "kaeDope_", "to_user_id": 100057667, "to_user_id_str": "100057667", "to_user_name": "Kaee Folarin", "in_reply_to_status_id": 148837595957305340, "in_reply_to_status_id_str": "148837595957305346"}, +{"created_at": "Mon, 19 Dec 2011 18:54:10 +0000", "from_user": "TheRealMrsEKP", "from_user_id": 355083910, "from_user_id_str": "355083910", "from_user_name": "Jane Doe", "geo": null, "id": 148838549616205820, "id_str": "148838549616205825", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1638555233/kMu3PkX1_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638555233/kMu3PkX1_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@tonedog89 lls u a clown", "to_user": "tonedog89", "to_user_id": 240361219, "to_user_id_str": "240361219", "to_user_name": "Tony Foster", "in_reply_to_status_id": 148838192223752200, "in_reply_to_status_id_str": "148838192223752192"}, +{"created_at": "Mon, 19 Dec 2011 18:54:07 +0000", "from_user": "Ayzee_92", "from_user_id": 350177728, "from_user_id_str": "350177728", "from_user_name": "Ayanda Mthimkhulu", "geo": null, "id": 148838537624686600, "id_str": "148838537624686592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699684936/IMG-20111117-00848_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699684936/IMG-20111117-00848_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Who's this clown on fb who thinks he has the right to message me & say I have a \"reverse yom hlaba\" no guy ! Where's my pink boxing glove ?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:01 +0000", "from_user": "40VirginSteve", "from_user_id": 280811319, "from_user_id_str": "280811319", "from_user_name": "Steve Carell", "geo": null, "id": 148838512442085380, "id_str": "148838512442085376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1308527366/40VirginSteve_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1308527366/40VirginSteve_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @4RocsB4theBeat: _Steve_ _Carell_ is a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:48 +0000", "from_user": "tdrucker32", "from_user_id": 233427049, "from_user_id_str": "233427049", "from_user_name": "Taylor Rucker", "geo": null, "id": 148838457593180160, "id_str": "148838457593180161", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681931903/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681931903/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@_OhSoCozayyy LMAO clown", "to_user": "_OhSoCozayyy", "to_user_id": 169143587, "to_user_id_str": "169143587", "to_user_name": "Miranda Marie \\u270C", "in_reply_to_status_id": 148836388652056580, "in_reply_to_status_id_str": "148836388652056577"}, +{"created_at": "Mon, 19 Dec 2011 18:53:42 +0000", "from_user": "KASHOUTorSTFU", "from_user_id": 106515928, "from_user_id_str": "106515928", "from_user_name": "Lanay", "geo": +{"coordinates": [41.7006,-87.6498], "type": "Point"}, "id": 148838435615023100, "id_str": "148838435615023104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702610293/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702610293/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@MyHeadGameSick hes a fucking clown now he about to be a broke clown.. Haha", "to_user": "MyHeadGameSick", "to_user_id": 364460197, "to_user_id_str": "364460197", "to_user_name": "Jordan Haynes", "in_reply_to_status_id": 148837578286706700, "in_reply_to_status_id_str": "148837578286706688"}, +{"created_at": "Mon, 19 Dec 2011 18:53:42 +0000", "from_user": "flappie2602", "from_user_id": 275481729, "from_user_id_str": "275481729", "from_user_name": "Johan Kuiper", "geo": null, "id": 148838432838389760, "id_str": "148838432838389760", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1636502776/5mQE8x58_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1636502776/5mQE8x58_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Hicham023 @OficialDickHead ja man maar nu met die clown derbij", "to_user": "Hicham023", "to_user_id": 246957518, "to_user_id_str": "246957518", "to_user_name": "HiCH\\u25B3M", "in_reply_to_status_id": 148836765397041150, "in_reply_to_status_id_str": "148836765397041152"}, +{"created_at": "Mon, 19 Dec 2011 18:53:41 +0000", "from_user": "MsVanityQT", "from_user_id": 171538434, "from_user_id_str": "171538434", "from_user_name": "Ena Marie Solice", "geo": null, "id": 148838427289325570, "id_str": "148838427289325568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1656402223/MsEna_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656402223/MsEna_normal.JPG", "source": "<a href="http://stone.com/Twittelator" rel="nofollow">Twittelator</a>", "text": "I don't touch the makeup cause I'll turn myself into a clown lol so I just wear lip gloss n keep it pushin", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:29 +0000", "from_user": "K_B7", "from_user_id": 271233306, "from_user_id_str": "271233306", "from_user_name": "Kurt Bonet", "geo": null, "id": 148838378232741900, "id_str": "148838378232741888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1395909527/malcolm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1395909527/malcolm_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@HarveyLevinTMZ Curse them. The snitch (kbryant) tried to throw Shaq under the bus to the cops yrs ago in vail colorado. Clown", "to_user": "HarveyLevinTMZ", "to_user_id": 36098990, "to_user_id_str": "36098990", "to_user_name": "Harvey Levin ", "in_reply_to_status_id": 148837708175917060, "in_reply_to_status_id_str": "148837708175917056"}, +{"created_at": "Mon, 19 Dec 2011 18:53:28 +0000", "from_user": "chloeann12", "from_user_id": 109640718, "from_user_id_str": "109640718", "from_user_name": "Chloe Proctor\\u2665", "geo": null, "id": 148838376672464900, "id_str": "148838376672464896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1602502689/227603_198051663572122_193044964072792_494720_2500553_s_mee_xx_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1602502689/227603_198051663572122_193044964072792_494720_2500553_s_mee_xx_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Nadiia_1D: Whenever I see a clown fish I immediately think, \"OMG IT'S NEMO!\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:14 +0000", "from_user": "myTweets_KILL", "from_user_id": 38910099, "from_user_id_str": "38910099", "from_user_name": "hawaia lacinett", "geo": null, "id": 148838316933005300, "id_str": "148838316933005312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692068355/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692068355/profile_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @Smooth_Operatr: Back in the cut..Ppl Use To Clown My Lips..But Now They Be Loving Them Lips.. << trust the plus! Lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:07 +0000", "from_user": "_MrsJanuary", "from_user_id": 41871664, "from_user_id_str": "41871664", "from_user_name": "erica queen", "geo": null, "id": 148838285295362050, "id_str": "148838285295362049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1636241863/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1636241863/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@lifeofmackbell fool? never that but iight i gotchu clown", "to_user": "lifeofmackbell", "to_user_id": 279583885, "to_user_id_str": "279583885", "to_user_name": "Janar Bell", "in_reply_to_status_id": 148837723480920060, "in_reply_to_status_id_str": "148837723480920064"}, +{"created_at": "Mon, 19 Dec 2011 18:52:58 +0000", "from_user": "iamj_rockafella", "from_user_id": 92350009, "from_user_id_str": "92350009", "from_user_name": "Johnny F Rockafella", "geo": null, "id": 148838247714394100, "id_str": "148838247714394112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686173477/Photo_11_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686173477/Photo_11_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#dead at me signing into atrl & seeing this clown tryna pass off this song as \"va va voom\" #sit", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:56 +0000", "from_user": "Charzard_8", "from_user_id": 384544234, "from_user_id_str": "384544234", "from_user_name": "Charlie Ronan", "geo": null, "id": 148838238759555070, "id_str": "148838238759555072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697158594/Photoon2011-12-16at14573-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697158594/Photoon2011-12-16at14573-1_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I'm down like a fucking clown.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:50 +0000", "from_user": "VA_Is_4_Lovers", "from_user_id": 42478050, "from_user_id_str": "42478050", "from_user_name": "Rog Stanton", "geo": null, "id": 148838216408117250, "id_str": "148838216408117248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696916243/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696916243/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Knee_Moh LMAO that can't be ur real number n social u a clown :)", "to_user": "Knee_Moh", "to_user_id": 61406107, "to_user_id_str": "61406107", "to_user_name": "Nemo Elkhebri", "in_reply_to_status_id": 148837188916871170, "in_reply_to_status_id_str": "148837188916871168"}, +{"created_at": "Mon, 19 Dec 2011 18:52:48 +0000", "from_user": "myTweets_KILL", "from_user_id": 38910099, "from_user_id_str": "38910099", "from_user_name": "hawaia lacinett", "geo": null, "id": 148838207721701380, "id_str": "148838207721701376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692068355/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692068355/profile_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @Smooth_Operatr: Back in the cut..Ppl Use To Clown My Lips..But Now They Be Loving Them Lips..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:44 +0000", "from_user": "PamWells3", "from_user_id": 405552961, "from_user_id_str": "405552961", "from_user_name": "Pam", "geo": null, "id": 148838191649132540, "id_str": "148838191649132544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696165080/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696165080/me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@RealKevinNash haha TRIPLE H FCKED YOU UP!!!! SERVES YA RIGHT YA ASS-CLOWN =)\\nooppss!!", "to_user": "RealKevinNash", "to_user_id": 23494080, "to_user_id_str": "23494080", "to_user_name": "Kevin Nash"}, +{"created_at": "Mon, 19 Dec 2011 18:52:42 +0000", "from_user": "So_exquisiteBAM", "from_user_id": 266190745, "from_user_id_str": "266190745", "from_user_name": "Kiana Smalls", "geo": null, "id": 148838181893181440, "id_str": "148838181893181442", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1674416999/0000000_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674416999/0000000_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "too bad Omf Pregnant ass cant clown with me!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:34 +0000", "from_user": "_Hbanana", "from_user_id": 58844829, "from_user_id_str": "58844829", "from_user_name": "Hannah Hastings", "geo": null, "id": 148838148502327300, "id_str": "148838148502327297", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1602451737/IMG00011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1602451737/IMG00011_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Clown by KoRn is on TV! #FUCKYES", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:31 +0000", "from_user": "GwhopBoys", "from_user_id": 242569849, "from_user_id_str": "242569849", "from_user_name": "Trell", "geo": null, "id": 148838134120062980, "id_str": "148838134120062977", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1664578549/profile_image_1322593500076_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664578549/profile_image_1322593500076_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "RT @_GOLDBERG13 lol.. that one go hurt ? lol u a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:27 +0000", "from_user": "El_Presidente85", "from_user_id": 81702188, "from_user_id_str": "81702188", "from_user_name": "O_o A.Hall", "geo": null, "id": 148838119892987900, "id_str": "148838119892987904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700402554/z6TRXva7_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700402554/z6TRXva7_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@DashDollFace: 2chaaaaaaainz.\" Oh god... not you too with that clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:26 +0000", "from_user": "Luv_Me_07", "from_user_id": 401143086, "from_user_id_str": "401143086", "from_user_name": "Rashanda", "geo": null, "id": 148838113962229760, "id_str": "148838113962229760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1647693244/0u6jmRCF_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647693244/0u6jmRCF_normal", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "U really r a clown I changed my mind", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:25 +0000", "from_user": "GoodTimeGibby33", "from_user_id": 259115990, "from_user_id_str": "259115990", "from_user_name": "Zack Gibson", "geo": null, "id": 148838110392877060, "id_str": "148838110392877056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676594790/392000_307003449321386_100000351990084_1032525_782934073_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676594790/392000_307003449321386_100000351990084_1032525_782934073_n_normal.jpg", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "RT @hunter_cooke: No highschooler should stress over finals. That's like a clown taking his job seriously.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:08 +0000", "from_user": "2FingersUpBruh", "from_user_id": 382452789, "from_user_id_str": "382452789", "from_user_name": "Fre$hDaddyNch.", "geo": null, "id": 148838040008278000, "id_str": "148838040008278016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695971905/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695971905/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@lorenag11 uh, I'm not a clown sweetie. Let's do something today!", "to_user": "lorenag11", "to_user_id": 333896773, "to_user_id_str": "333896773", "to_user_name": "Lorena Garcia", "in_reply_to_status_id": 148837838459383800, "in_reply_to_status_id_str": "148837838459383808"}, +{"created_at": "Mon, 19 Dec 2011 18:52:03 +0000", "from_user": "vanilla_kath", "from_user_id": 51058338, "from_user_id_str": "51058338", "from_user_name": "KathyAnn Dillane", "geo": null, "id": 148838016654381060, "id_str": "148838016654381058", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1684971327/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684971327/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Ok I've decided that my favourite Simpsons episode is the one where Homer becomes a clown!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:52:02 +0000", "from_user": "kaceeyferguson", "from_user_id": 254178765, "from_user_id_str": "254178765", "from_user_name": "Kacey Ferguson", "geo": null, "id": 148838015941349380, "id_str": "148838015941349378", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699197507/Photo_on_2011-10-15_at_22.32__4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699197507/Photo_on_2011-10-15_at_22.32__4_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Im on a miini school bus :$ feel like im in a clown car", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:02 +0000", "from_user": "LKNlove", "from_user_id": 30711971, "from_user_id_str": "30711971", "from_user_name": "LKN", "geo": null, "id": 148838015576449020, "id_str": "148838015576449024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1614178918/HCBBM__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1614178918/HCBBM__1__normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "I'm driving home and I see a smart car with the licenses plates \"Smrt4Fn\". People are so obnoxious. Driving clown cars!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:02 +0000", "from_user": "Joey0492", "from_user_id": 176551238, "from_user_id_str": "176551238", "from_user_name": "Joey", "geo": null, "id": 148838013743530000, "id_str": "148838013743529984", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1608243660/328717288_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608243660/328717288_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @xLaraaaa: Jongens, jullie maken een grapje dat het morgen gaat sneeuwen toch?! \\u00AB Ben toch zeker clown Bassie niet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:59 +0000", "from_user": "KEIlotte26", "from_user_id": 240231985, "from_user_id_str": "240231985", "from_user_name": "\\u3051\\uFF5E\\u3059\\u3051", "geo": null, "id": 148838002892869630, "id_str": "148838002892869634", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1625490609/Adj7sopCMAMYV5g_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1625490609/Adj7sopCMAMYV5g_normal.jpg", "source": "<a href="http://twittbot.net/" rel="nofollow">twittbot.net</a>", "text": "\\u3010\\u5BA3\\u4F1D\\u3011Clown's Pavilion2\\u3092\\u5B9F\\u6CC1\\u3057\\u307E\\u3057\\u305F(\\uFF4B\\uFF40\\uFF45\\u03C9\\uFF45\\u00B4\\uFF49)\\u30CE\\n\\u3088\\u304B\\u3063\\u305F\\u3089\\u6687\\u3064\\u3076\\u3057\\u306B\\u3069\\u3046\\u305E\\uFF5E\\n\\u21D2http://t.co/dxPczvMD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:57 +0000", "from_user": "BossyJohnson", "from_user_id": 325090972, "from_user_id_str": "325090972", "from_user_name": "CROUCHY T", "geo": null, "id": 148837994500075520, "id_str": "148837994500075521", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1683694549/DKgUoUhN_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683694549/DKgUoUhN_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@_BigPimpin1500 lol you a clown", "to_user": "_BigPimpin1500", "to_user_id": 314808696, "to_user_id_str": "314808696", "to_user_name": "rome smith", "in_reply_to_status_id": 148837733446594560, "in_reply_to_status_id_str": "148837733446594560"}, +{"created_at": "Mon, 19 Dec 2011 18:51:55 +0000", "from_user": "CIROCNROLL", "from_user_id": 154228691, "from_user_id_str": "154228691", "from_user_name": "Frank Simmons", "geo": null, "id": 148837984672821250, "id_str": "148837984672821248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1683789034/christmas_party_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683789034/christmas_party_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u00AB@RawGutsNoCondom #NW American Gun. soon as I starting rolling in more money, my collection will be killing @CIROCNROLL collection. clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:53 +0000", "from_user": "_BobbyMarie", "from_user_id": 166601258, "from_user_id_str": "166601258", "from_user_name": "Brooke Ponstein", "geo": null, "id": 148837977131458560, "id_str": "148837977131458560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1642189215/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642189215/image_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @RichardOBarry: Dolphins are free-ranging, intelligent, & complex wild animals, and they belong in the oceans, not playing the clown in our human schemes.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:53 +0000", "from_user": "HarryantoBuasan", "from_user_id": 177650181, "from_user_id_str": "177650181", "from_user_name": "Harryanto Buasan", "geo": null, "id": 148837976854630400, "id_str": "148837976854630400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680416710/331096669_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680416710/331096669_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Love you too baby :) RT @eugeniabellfb: hey, my clown \\u01AA(\\u02C7\\u25BD\\u02C7)-c<^\\u2323^) I love you! ♥ RT ... http://t.co/1qAqOEC3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:50 +0000", "from_user": "AvonleaAmelia", "from_user_id": 147640729, "from_user_id_str": "147640729", "from_user_name": "Avonlea Pye", "geo": null, "id": 148837965353857020, "id_str": "148837965353857024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1608024275/Photo_on_10-26-11_at_2.46_PM_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608024275/Photo_on_10-26-11_at_2.46_PM_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Why is there a clown in Goodwill? #scary", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:48 +0000", "from_user": "Matt2Niskanen", "from_user_id": 389710721, "from_user_id_str": "389710721", "from_user_name": "NotMatt Niskanen", "geo": null, "id": 148837954977136640, "id_str": "148837954977136640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1645738172/nisky_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645738172/nisky_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Eenie meeny miny moe, catch a tiger by the toe... Ahhhh fuck it. I'm gonna pick on you. Yah you. @Jaromir_Jagr you clown. Fuckin guy.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:41 +0000", "from_user": "Thabiso_R", "from_user_id": 111315788, "from_user_id_str": "111315788", "from_user_name": "Thabiso Ramolefe", "geo": null, "id": 148837925973528580, "id_str": "148837925973528576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686850327/Me_20and_20Mami_201_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686850327/Me_20and_20Mami_201_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Maybe its just a stunt. After all, he's a clown right? Lol. RT @FUNDI_PMB: So this clown replaced me lol fast kanje?! Owkay :-) hahaha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:41 +0000", "from_user": "kentrod", "from_user_id": 18015940, "from_user_id_str": "18015940", "from_user_name": "kentrod", "geo": null, "id": 148837925218549760, "id_str": "148837925218549760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1585966278/ProfilePhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585966278/ProfilePhoto_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iowahawkblog: First Al Davis, then Kim Jong-Il; bad year for insane clown-haired dictators in novelty Elvis sunglasses", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:32 +0000", "from_user": "NubianBookstore", "from_user_id": 47782381, "from_user_id_str": "47782381", "from_user_name": "marcus williams", "geo": null, "id": 148837888170266620, "id_str": "148837888170266624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1677793754/2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677793754/2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MATHHOFFA: @CHARLIECLIPS whatever \"rapper\" .... i know it wont be the same talk in person so ima end the show... dont say my name no more. ur a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:30 +0000", "from_user": "TomDowty", "from_user_id": 47146097, "from_user_id_str": "47146097", "from_user_name": "Tom Dowty", "geo": null, "id": 148837877902610430, "id_str": "148837877902610432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662713888/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662713888/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@lewis_sexton18 2 hours until the clown has no penis", "to_user": "lewis_sexton18", "to_user_id": 381481415, "to_user_id_str": "381481415", "to_user_name": "Lewis Sexton", "in_reply_to_status_id": 148837529213345800, "in_reply_to_status_id_str": "148837529213345793"}, +{"created_at": "Mon, 19 Dec 2011 18:51:26 +0000", "from_user": "Cameron_Cole18", "from_user_id": 338178354, "from_user_id_str": "338178354", "from_user_name": "Cameron Rogers", "geo": null, "id": 148837864287895550, "id_str": "148837864287895552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1597078603/me_me_me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1597078603/me_me_me_normal.jpg", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "RT @hunter_cooke: No highschooler should stress over finals. That's like a clown taking his job seriously.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:23 +0000", "from_user": "LykeReally09", "from_user_id": 171448976, "from_user_id_str": "171448976", "from_user_name": "katrice", "geo": null, "id": 148837851759521800, "id_str": "148837851759521792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1672594543/profile_image_1322970845893_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672594543/profile_image_1322970845893_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "Clown !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:16 +0000", "from_user": "freddyjani", "from_user_id": 304841034, "from_user_id_str": "304841034", "from_user_name": "Freddy", "geo": null, "id": 148837820692299780, "id_str": "148837820692299778", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694325710/154213_1719592516121_1427522255_31759609_301751_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694325710/154213_1719592516121_1427522255_31759609_301751_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@pleasemebitch_ suruh drg jadi clown suda", "to_user": "pleasemebitch_", "to_user_id": 203447822, "to_user_id_str": "203447822", "to_user_name": "Ashrah Kit Richie", "in_reply_to_status_id": 148837594313142270, "in_reply_to_status_id_str": "148837594313142272"}, +{"created_at": "Mon, 19 Dec 2011 18:51:13 +0000", "from_user": "JayDeLise", "from_user_id": 383056015, "from_user_id_str": "383056015", "from_user_name": "Jayyyy \\uE333\\uE332\\uE333\\uE332\\uE011", "geo": null, "id": 148837808323309570, "id_str": "148837808323309568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701108337/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701108337/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Your a fuckin clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:12 +0000", "from_user": "gocookmefood", "from_user_id": 224823794, "from_user_id_str": "224823794", "from_user_name": "Enmanuel ", "geo": null, "id": 148837805760577540, "id_str": "148837805760577538", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1556065146/330141_10150267131126994_580361993_8209998_4090089_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1556065146/330141_10150267131126994_580361993_8209998_4090089_o_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "BORIS JOHNSON LOOKS LIKE A CLOWN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:08 +0000", "from_user": "Pete302Suth", "from_user_id": 160420966, "from_user_id_str": "160420966", "from_user_name": "Pete Sutherland", "geo": null, "id": 148837787792183300, "id_str": "148837787792183296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1651019834/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651019834/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Immebitch_heny clown lol", "to_user": "Immebitch_heny", "to_user_id": 397633356, "to_user_id_str": "397633356", "to_user_name": "heny hendricks"}, +{"created_at": "Mon, 19 Dec 2011 18:51:07 +0000", "from_user": "navayekita", "from_user_id": 27113704, "from_user_id_str": "27113704", "from_user_name": "LoveisLouder.\\u2665", "geo": null, "id": 148837781920170000, "id_str": "148837781920169984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687290012/001_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687290012/001_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "You wear more makeup than a clown.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:00 +0000", "from_user": "Br00keBerry", "from_user_id": 415026858, "from_user_id_str": "415026858", "from_user_name": "Brooke Bradbury", "geo": null, "id": 148837756062273540, "id_str": "148837756062273537", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1644099560/009_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644099560/009_normal.PNG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "So tired of having a tiny clown car \\uD83D\\uDD2B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:00 +0000", "from_user": "taaaaylur", "from_user_id": 35029676, "from_user_id_str": "35029676", "from_user_name": "TaylorMay", "geo": null, "id": 148837754158055420, "id_str": "148837754158055424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687621930/IMG_0062_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687621930/IMG_0062_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@goldenstofmind hahaha you clown", "to_user": "goldenstofmind", "to_user_id": 23561749, "to_user_id_str": "23561749", "to_user_name": "Shelby", "in_reply_to_status_id": 148837062412480500, "in_reply_to_status_id_str": "148837062412480512"}, +{"created_at": "Mon, 19 Dec 2011 18:50:59 +0000", "from_user": "Emer89wl", "from_user_id": 175142604, "from_user_id_str": "175142604", "from_user_name": "Emer", "geo": null, "id": 148837748692881400, "id_str": "148837748692881409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685681072/Emer89wl_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685681072/Emer89wl_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@aay_esha fiiiiiit! Might get em in Londontown. I still can't find any work shoes that fit my clown feet :(", "to_user": "aay_esha", "to_user_id": 22246503, "to_user_id_str": "22246503", "to_user_name": "Aayesha Mohammed ", "in_reply_to_status_id": 148768211658219520, "in_reply_to_status_id_str": "148768211658219522"}, +{"created_at": "Mon, 19 Dec 2011 18:50:56 +0000", "from_user": "ZipSquad_JihaD", "from_user_id": 263474444, "from_user_id_str": "263474444", "from_user_name": "Notorious B.I.Gamist", "geo": null, "id": 148837735313051650, "id_str": "148837735313051648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1678759924/phpcjPFUNAM_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678759924/phpcjPFUNAM_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "He canadian. Nuff said. JihaD RT@Remixznflow82 i dont know whether to clown this nigga @Troyvul and his bills... or offer my condolences...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:48 +0000", "from_user": "iLoveeee_Pink", "from_user_id": 242824083, "from_user_id_str": "242824083", "from_user_name": "Tiffany ", "geo": null, "id": 148837701947375600, "id_str": "148837701947375616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699272804/IMAG0839_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699272804/IMAG0839_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Lil sis tryna clown me!! lmao She got dwn with that", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:42 +0000", "from_user": "Kareyhtz", "from_user_id": 431757216, "from_user_id_str": "431757216", "from_user_name": "Karey Yago", "geo": null, "id": 148837676718637060, "id_str": "148837676718637056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681154158/large_41018_1377232112211_1274100057_30918221_69976_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681154158/large_41018_1377232112211_1274100057_30918221_69976_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "HD91 Insane Clown Posse ICP Wraith Glow In The Dark Zip Up Hoodie Select Shirt Size: Small: Insane Clown Posse I... http://t.co/6j2PWMG9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:38 +0000", "from_user": "Baddasx3", "from_user_id": 397855241, "from_user_id_str": "397855241", "from_user_name": "AintYahhNmeRedd?\\uE32A", "geo": null, "id": 148837660801237000, "id_str": "148837660801236992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701104204/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701104204/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Savage_4_Pres Lmao clown Asx gtf !", "to_user": "Savage_4_Pres", "to_user_id": 243859481, "to_user_id_str": "243859481", "to_user_name": "\\u2718..YUNG-SAVAGE..\\u2714", "in_reply_to_status_id": 148837463559901200, "in_reply_to_status_id_str": "148837463559901184"}, +{"created_at": "Mon, 19 Dec 2011 18:50:36 +0000", "from_user": "SayThaDon", "from_user_id": 326536067, "from_user_id_str": "326536067", "from_user_name": "Say", "geo": null, "id": 148837653763203070, "id_str": "148837653763203073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1660263193/H2tyRiG4_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660263193/H2tyRiG4_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Lol my step sister is a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:36 +0000", "from_user": "elsupanova", "from_user_id": 130139644, "from_user_id_str": "130139644", "from_user_name": "ELL.", "geo": null, "id": 148837651334696960, "id_str": "148837651334696961", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680536144/1602199bjjkjn0e32425_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680536144/1602199bjjkjn0e32425_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Chances are some clown at production wrote it for her but she read it out anyway since she can\\u2019t reason! Ain\\u2019t surprised tho, it\\u2019s Btv!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:30 +0000", "from_user": "ojay2121", "from_user_id": 248434187, "from_user_id_str": "248434187", "from_user_name": "Olivia Julian", "geo": null, "id": 148837627309735940, "id_str": "148837627309735936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1610017269/Snapshot_of_me_9_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610017269/Snapshot_of_me_9_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@Madeline_Lovee tell him I say hi!! Gotta love that #twitterless graham such a clown:p", "to_user": "Madeline_Lovee", "to_user_id": 48228876, "to_user_id_str": "48228876", "to_user_name": "Maddie Williams", "in_reply_to_status_id": 148837192960196600, "in_reply_to_status_id_str": "148837192960196608"}, +{"created_at": "Mon, 19 Dec 2011 18:50:27 +0000", "from_user": "bellamiamour", "from_user_id": 348898285, "from_user_id_str": "348898285", "from_user_name": "AtirolMarieee :-*", "geo": null, "id": 148837617033691140, "id_str": "148837617033691137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701610940/IMAG0488-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701610940/IMAG0488-1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Clown ass hoes ain't nothing but jokes !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:26 +0000", "from_user": "msicandy14", "from_user_id": 30588809, "from_user_id_str": "30588809", "from_user_name": "Taste My Candy", "geo": null, "id": 148837610398294000, "id_str": "148837610398294016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1683651374/376449_10150422534507713_514692712_8462336_1539795812_n_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683651374/376449_10150422534507713_514692712_8462336_1539795812_n_normal.jpeg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@MissingCHUCHI Cnt believe the nerve of this CLOWN\\u201D...who", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:25 +0000", "from_user": "JustWacine", "from_user_id": 37526975, "from_user_id_str": "37526975", "from_user_name": "Wacine", "geo": null, "id": 148837608083038200, "id_str": "148837608083038208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691434782/331450172_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691434782/331450172_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Never get somebody a christmas gift just cause u want something in return. That aint genuine at all. Bout to clown somebody", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:24 +0000", "from_user": "XOsmoochesOX", "from_user_id": 47840590, "from_user_id_str": "47840590", "from_user_name": "\\uE314Jemyra Calais\\uE314", "geo": null, "id": 148837602060021760, "id_str": "148837602060021760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1632058648/XOsmoochesOX_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632058648/XOsmoochesOX_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Lol my daddy really in here singin to me.. Clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:24 +0000", "from_user": "TheProphet_KG", "from_user_id": 282134739, "from_user_id_str": "282134739", "from_user_name": "\\uE517Josh\\uE517", "geo": null, "id": 148837601464426500, "id_str": "148837601464426496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696532059/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696532059/profile_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "Straight dog a bitch out like Mike Vick..... lmao Dorrough is a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:16 +0000", "from_user": "iChefChalee", "from_user_id": 59360127, "from_user_id_str": "59360127", "from_user_name": "Sour Patch Kid", "geo": null, "id": 148837569256357900, "id_str": "148837569256357889", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1631318335/295955_2304331326730_1202647748_32237641_2081146510_n__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631318335/295955_2304331326730_1202647748_32237641_2081146510_n__1__normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "beat your feet like a bicycle clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:14 +0000", "from_user": "Mr_TParks", "from_user_id": 215740708, "from_user_id_str": "215740708", "from_user_name": "Tony Parks", "geo": null, "id": 148837561253642240, "id_str": "148837561253642240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1677584294/snapshot__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677584294/snapshot__1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Nigga a clown cuh...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:08 +0000", "from_user": "eugeniabellfb", "from_user_id": 53351059, "from_user_id_str": "53351059", "from_user_name": "Eugenia Fernanda B.", "geo": null, "id": 148837537165750270, "id_str": "148837537165750273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700157749/331655770_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700157749/331655770_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "hey, my clown \\u01AA(\\u02C7\\u25BD\\u02C7)-c<^\\u2323^) I love you! \\u2665 RT @HarryantoBuasan: Hey @eugeniabellfb don't be sad. I am your Clown and we are happy family :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:00 +0000", "from_user": "hunter_cooke", "from_user_id": 252361319, "from_user_id_str": "252361319", "from_user_name": "Hunter Cooke ", "geo": null, "id": 148837504487931900, "id_str": "148837504487931906", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1560157440/profile_image_1317001586131_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1560157440/profile_image_1317001586131_normal.jpg", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "No highschooler should stress over finals. That's like a clown taking his job seriously.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:00 +0000", "from_user": "SexySykes_TW_", "from_user_id": 373568791, "from_user_id_str": "373568791", "from_user_name": "Lauren\\u2665", "geo": null, "id": 148837501170225150, "id_str": "148837501170225152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695469758/37285907_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695469758/37285907_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Nadiia_1D: Whenever I see a clown fish I immediately think, \"OMG IT'S NEMO!\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:57 +0000", "from_user": "WriteWithDee", "from_user_id": 117850354, "from_user_id_str": "117850354", "from_user_name": "David Wurie", "geo": null, "id": 148837488767676400, "id_str": "148837488767676416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662550652/384802_10150995482435553_771320552_21887870_736312735_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662550652/384802_10150995482435553_771320552_21887870_736312735_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Round the town..Funky clown...LOOOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:57 +0000", "from_user": "MorganeCintrat", "from_user_id": 103261263, "from_user_id_str": "103261263", "from_user_name": "Morgane C.", "geo": null, "id": 148837488461496320, "id_str": "148837488461496320", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1330074632/37705_1532481589312_1152951155_31581160_7354963_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1330074632/37705_1532481589312_1152951155_31581160_7354963_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"Et n'oubliez pas de skier petit, parce que skier petit est mignon !\" Oh oh mais, dis moi, t'as mang\\u00E9 un clown Monsieur m\\u00E9t\\u00E9o?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:49 +0000", "from_user": "blatta_in_al", "from_user_id": 16350070, "from_user_id_str": "16350070", "from_user_name": "BLatta", "geo": null, "id": 148837454940614660, "id_str": "148837454940614657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1633020195/IMG_0811_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633020195/IMG_0811_normal.JPG", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", "text": "FTW!! RT @iowahawkblog First Al Davis, then Kim Jong-Il; bad year for insane clown-haired dictators in novelty Elvis sunglasses", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:46 +0000", "from_user": "Robbynvro", "from_user_id": 431770408, "from_user_id_str": "431770408", "from_user_name": "Robbyn Tom", "geo": null, "id": 148837445268553730, "id_str": "148837445268553728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681177851/1eqg5045rk_130632415-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681177851/1eqg5045rk_130632415-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Halloween Horror Scary Table Tot Clown Animatronic Prop: http://t.co/pdfZsk30", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:38 +0000", "from_user": "juddydaBOSS__", "from_user_id": 310720547, "from_user_id_str": "310720547", "from_user_name": "lightdaDRO", "geo": null, "id": 148837411609251840, "id_str": "148837411609251842", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700654465/3T4yLJI3_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700654465/3T4yLJI3_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "i said \" seth chill out , uu clown too much ! \"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:30 +0000", "from_user": "klew24", "from_user_id": 25860633, "from_user_id_str": "25860633", "from_user_name": "Kev ", "geo": null, "id": 148837374539989000, "id_str": "148837374539988993", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696161876/klewwwwwwwwwwwwwwwwwwwwwwww_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696161876/klewwwwwwwwwwwwwwwwwwwwwwww_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "@LBoogieFab5 baron Davis isn't any good though. Its understandable why niggas would clown sir", "to_user": "LBoogieFab5", "to_user_id": 21643095, "to_user_id_str": "21643095", "to_user_name": "Master Swami Tsu Suh", "in_reply_to_status_id": 148837021702561800, "in_reply_to_status_id_str": "148837021702561792"}, +{"created_at": "Mon, 19 Dec 2011 18:49:28 +0000", "from_user": "Bankrollchan11", "from_user_id": 278824717, "from_user_id_str": "278824717", "from_user_name": "Chandler Echols", "geo": null, "id": 148837368701530100, "id_str": "148837368701530112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674604144/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674604144/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "If a nigga play wit that cash Ima act a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:22 +0000", "from_user": "Jeneephaa", "from_user_id": 166630062, "from_user_id_str": "166630062", "from_user_name": "jennifer bih", "geo": null, "id": 148837344332611600, "id_str": "148837344332611586", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693313438/318590_10150336727330636_554985635_8634419_320592366_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693313438/318590_10150336727330636_554985635_8634419_320592366_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Western_Wizzy dts gud tho cause i love the way he dances & think he is a gud clown :P buh he's new tracks are in the simplest terms \"silly\"", "to_user": "Western_Wizzy", "to_user_id": 143873832, "to_user_id_str": "143873832", "to_user_name": "Adetola Adewale ", "in_reply_to_status_id": 148836646224281600, "in_reply_to_status_id_str": "148836646224281600"}, +{"created_at": "Mon, 19 Dec 2011 18:49:21 +0000", "from_user": "HannahRie7", "from_user_id": 307674503, "from_user_id_str": "307674503", "from_user_name": "Hannah Huffman", "geo": null, "id": 148837338322178050, "id_str": "148837338322178049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697723594/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697723594/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Ayoooo_RED what a clown.", "to_user": "Ayoooo_RED", "to_user_id": 366727511, "to_user_id_str": "366727511", "to_user_name": "Chasity Richardson", "in_reply_to_status_id": 148836247744417800, "in_reply_to_status_id_str": "148836247744417793"}, +{"created_at": "Mon, 19 Dec 2011 18:49:14 +0000", "from_user": "GottaLoveBrian_", "from_user_id": 70049945, "from_user_id_str": "70049945", "from_user_name": "Briannn P ^_^", "geo": null, "id": 148837308500672500, "id_str": "148837308500672512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1678443116/SWAG_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678443116/SWAG_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Taa Aubs be clown these bitches", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:06 +0000", "from_user": "BruniinhooSP", "from_user_id": 437018181, "from_user_id_str": "437018181", "from_user_name": "Bruninho sp", "geo": null, "id": 148837277206986750, "id_str": "148837277206986752", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": null, "source": "<a href="http://twitter.com/">web</a>", "text": "@Clown_Luizinho SAFADINHO Clown_Luizinho 'Cl\\u03C3w\\u0438 [ L\\u03C5izi\\u0438\\u043D\\u03C3 ]\\u2655 \\nE n\\u00E3o \\u00E9 que deu certo? #BigFollow: http://t.co/mgvjPILs RS*", "to_user": "Clown_Luizinho", "to_user_id": 185241399, "to_user_id_str": "185241399", "to_user_name": "'Cl\\u03C3w\\u0438 [ L\\u03C5izi\\u0438\\u043D\\u03C3 ]\\u2655"}, +{"created_at": "Mon, 19 Dec 2011 18:49:04 +0000", "from_user": "newnewsh_t1", "from_user_id": 380703308, "from_user_id_str": "380703308", "from_user_name": "Sweet Miek", "geo": null, "id": 148837269606907900, "id_str": "148837269606907904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701740589/newnewsh_t1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701740589/newnewsh_t1_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Lol clown RT @FOX_Le_ROC: Lmao boogie wooogie woogie RT @newnewsh_t1 Electric slide?? RT @FOX_Le_ROC: Ooooooo they playing my shyt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:04 +0000", "from_user": "breakingmorgan", "from_user_id": 46710414, "from_user_id_str": "46710414", "from_user_name": "Morgan Swan.", "geo": null, "id": 148837269187477500, "id_str": "148837269187477504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1626240793/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626240793/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@youaremydreamx aw i can't wait to see yours! ahhhh, excitement! just finished my trial run for my hair, i look like a clown ahah :')<3", "to_user": "youaremydreamx", "to_user_id": 216023491, "to_user_id_str": "216023491", "to_user_name": "Lauren Inglis\\u2665", "in_reply_to_status_id": 148837015566295040, "in_reply_to_status_id_str": "148837015566295040"}, +{"created_at": "Mon, 19 Dec 2011 18:48:59 +0000", "from_user": "iGot_AsS_4DaYs", "from_user_id": 386271553, "from_user_id_str": "386271553", "from_user_name": "-- Mari :)) --", "geo": null, "id": 148837245607084030, "id_str": "148837245607084032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702583237/376974_2001069644960_1790157357_1297664_16201902_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702583237/376974_2001069644960_1790157357_1297664_16201902_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @HotSexNCldWine: @iGot_AsS_4DaYs NIGGA I LIVE W/U!& going 2 fa the next 2 years!! WE ALWAYS CLOWN WAT DO U MEAN?! Lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:51 +0000", "from_user": "MsTiffRenee", "from_user_id": 174703660, "from_user_id_str": "174703660", "from_user_name": "Tiffany Renee'", "geo": null, "id": 148837214871232500, "id_str": "148837214871232512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1392296752/Picture_12_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1392296752/Picture_12_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Stop drawing your eyebrows on, it looks awful lol something like a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:46 +0000", "from_user": "j34nk0h", "from_user_id": 303329480, "from_user_id_str": "303329480", "from_user_name": "Jean Franco G.", "geo": null, "id": 148837193828401150, "id_str": "148837193828401152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1670774073/tumblr_lu9ipyZ6eC1qhlet0o1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670774073/tumblr_lu9ipyZ6eC1qhlet0o1_500_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#GagasPassword: I WAS BORN TO BE A CLOWN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:46 +0000", "from_user": "Ajsoti", "from_user_id": 169211465, "from_user_id_str": "169211465", "from_user_name": "Alex Soti", "geo": null, "id": 148837191718670340, "id_str": "148837191718670336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668456748/alex_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668456748/alex_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@santonio10 Clown & Out", "to_user": "santonio10", "to_user_id": 62373285, "to_user_id_str": "62373285", "to_user_name": "Santonio Holmes"}, +{"created_at": "Mon, 19 Dec 2011 18:48:44 +0000", "from_user": "KevonTweets", "from_user_id": 340113947, "from_user_id_str": "340113947", "from_user_name": "Primetime", "geo": null, "id": 148837184152154100, "id_str": "148837184152154112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696665019/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696665019/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@Escalade15: @KevonTweets u a clown yo lmao\\u201D Real shit tho lmao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:42 +0000", "from_user": "yasminaaax", "from_user_id": 124737432, "from_user_id_str": "124737432", "from_user_name": "Yasmin\\u00E0\\u00E0\\u00E0 !", "geo": null, "id": 148837173146288130, "id_str": "148837173146288128", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695253656/webcam-toy-photo11_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695253656/webcam-toy-photo11_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @DaphneJ_: RT @DaphneJ_: Ik heb ze trouwens al gevonden hoor=$ - clown / ik vind jou ook lief hoor Rayna/limonade - ik ben yas schat", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:33 +0000", "from_user": "rontrae17", "from_user_id": 437065610, "from_user_id_str": "437065610", "from_user_name": "DevontayWilliams", "geo": null, "id": 148837139419893760, "id_str": "148837139419893760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696929516/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696929516/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Ima mothafuckin made nicca how u love dat clown.,$$$", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:30 +0000", "from_user": "FanaThePurp", "from_user_id": 61425517, "from_user_id_str": "61425517", "from_user_name": "Shitshembiso Mabasa ", "geo": null, "id": 148837124853071870, "id_str": "148837124853071873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1666035311/d06f9f2ae05759c3f1892d60f1d795965abcdefg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666035311/d06f9f2ae05759c3f1892d60f1d795965abcdefg_normal.jpg", "source": "<a href="http://getsocialscope.com" rel="nofollow">SocialScope</a>", "text": "Listening to Beyonce thinking u irreplaceable RT @FUNDI_PMB: So this clown replaced me lol fast kanje?! Owkay :-) hahaha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:30 +0000", "from_user": "Makayla01236588", "from_user_id": 440990691, "from_user_id_str": "440990691", "from_user_name": "Makayla", "geo": null, "id": 148837123791917060, "id_str": "148837123791917056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702402358/beauti-girl_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702402358/beauti-girl_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Music Skins MS-CHET20004 iPod Touch- 2nd-3rd Gen- Chet Zar- Clown of Doom Skin: MusicSkins LLC is the industry l... http://t.co/fnbKXsMP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:28 +0000", "from_user": "PamWells3", "from_user_id": 405552961, "from_user_id_str": "405552961", "from_user_name": "Pam", "geo": null, "id": 148837115487199230, "id_str": "148837115487199233", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696165080/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696165080/me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@RealKevinNash haha TRIPLE H FCKED UP!!!! SERVES YA RIGHT YA ASS-CLOWN =)", "to_user": "RealKevinNash", "to_user_id": 23494080, "to_user_id_str": "23494080", "to_user_name": "Kevin Nash"}, +{"created_at": "Mon, 19 Dec 2011 18:48:24 +0000", "from_user": "MS_JACKSON_BADD", "from_user_id": 114682594, "from_user_id_str": "114682594", "from_user_name": "AINT NOBODY BETTA!", "geo": null, "id": 148837098655453200, "id_str": "148837098655453185", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693258861/profile_image_1323886584912_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693258861/profile_image_1323886584912_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "Muthafuckas get on Twitter nd clown for the people....stop wit that nonsense nd get ya paper!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:13 +0000", "from_user": "nopennopadflow", "from_user_id": 262903647, "from_user_id_str": "262903647", "from_user_name": "Muthafucka Jones", "geo": null, "id": 148837053436661760, "id_str": "148837053436661760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688939688/parental_advisory_explicit_content_lge_logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688939688/parental_advisory_explicit_content_lge_logo_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@DaFakeSamHart. Fix ya fly dog u r presentin front of a class u clown #zipit", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:11 +0000", "from_user": "iMKELTAiNM", "from_user_id": 134219208, "from_user_id_str": "134219208", "from_user_name": "THOMAs . JETsON", "geo": null, "id": 148837044259528700, "id_str": "148837044259528704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699917612/iMKELTAiNM_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699917612/iMKELTAiNM_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @basicallyBAY: Lmaoo at the last tweet keltain wrote , boy is a #Clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:55 +0000", "from_user": "Escalade15", "from_user_id": 66345660, "from_user_id_str": "66345660", "from_user_name": "Phil ", "geo": null, "id": 148836978027282430, "id_str": "148836978027282432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702506272/ps_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702506272/ps_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@KevonTweets u a clown yo lmao", "to_user": "KevonTweets", "to_user_id": 340113947, "to_user_id_str": "340113947", "to_user_name": "Primetime", "in_reply_to_status_id": 148836456209715200, "in_reply_to_status_id_str": "148836456209715200"}, +{"created_at": "Mon, 19 Dec 2011 18:47:54 +0000", "from_user": "TTashaaaaa_", "from_user_id": 26112970, "from_user_id_str": "26112970", "from_user_name": "TTasha", "geo": null, "id": 148836975468744700, "id_str": "148836975468744705", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699140135/IMAG2176...2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699140135/IMAG2176...2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "!!! RT @BONITAJASS i hate clown's -.-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:49 +0000", "from_user": "TheReaLMissBeBe", "from_user_id": 123012375, "from_user_id_str": "123012375", "from_user_name": "\\u2650MissBeBe", "geo": null, "id": 148836952311988220, "id_str": "148836952311988224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701163095/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701163095/image_normal.jpg", "source": "<a href="http://tweetlogix.com" rel="nofollow">Tweetlogix</a>", "text": "Yas clown ass hatin on my boots", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:47 +0000", "from_user": "AzhariAzmir", "from_user_id": 424096419, "from_user_id_str": "424096419", "from_user_name": "Muhammad Azhari", "geo": null, "id": 148836942975467520, "id_str": "148836942975467520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689318363/302992_2034881164893_1630122465_1797584_565502752_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689318363/302992_2034881164893_1630122465_1797584_565502752_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Syaf_D i hate clowns too. Especially ronald the mcdonald. Lol. Aiyo syaf nanti ade clown diri pat pintu holding a knife.", "to_user": "Syaf_D", "to_user_id": 114474893, "to_user_id_str": "114474893", "to_user_name": "Cristie Montero.", "in_reply_to_status_id": 148836643988713470, "in_reply_to_status_id_str": "148836643988713472"}, +{"created_at": "Mon, 19 Dec 2011 18:47:39 +0000", "from_user": "ChichanQu", "from_user_id": 52965542, "from_user_id_str": "52965542", "from_user_name": "Janelle Andrea", "geo": null, "id": 148836910402514940, "id_str": "148836910402514945", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1493243363/user_icon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1493243363/user_icon_normal.png", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "I have the Clown Lady as a supply! #WTF!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:36 +0000", "from_user": "So_xXxquisite", "from_user_id": 317501482, "from_user_id_str": "317501482", "from_user_name": "Darius Coleman", "geo": null, "id": 148836897727328260, "id_str": "148836897727328257", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1647654297/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647654297/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Nate I could see your midget ass in a big ass jersey. Clown ass got a small shirt with a 4XL jersey. Big ass shoulders lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:33 +0000", "from_user": "MissingCHUCHI", "from_user_id": 112783301, "from_user_id_str": "112783301", "from_user_name": "\\uE023", "geo": null, "id": 148836886914412540, "id_str": "148836886914412544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700682223/MissingCHUCHI_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700682223/MissingCHUCHI_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Cnt believe the nerve of this CLOWN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:32 +0000", "from_user": "SophiaLaBelle", "from_user_id": 57273415, "from_user_id_str": "57273415", "from_user_name": "Sophia", "geo": null, "id": 148836881738629120, "id_str": "148836881738629121", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691331180/SophiaLaBelle_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691331180/SophiaLaBelle_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@KevinMBarlow holy shit Im lmfao with my friend right now over that one. Your such a clown Kevin, your timeline keeps me laughing!", "to_user": "KevinMBarlow", "to_user_id": 66616763, "to_user_id_str": "66616763", "to_user_name": "Kevin (Opium Group)", "in_reply_to_status_id": 148834504314851330, "in_reply_to_status_id_str": "148834504314851328"}, +{"created_at": "Mon, 19 Dec 2011 18:47:32 +0000", "from_user": "Super_Lamps", "from_user_id": 205684985, "from_user_id_str": "205684985", "from_user_name": "Prince Ademuyiwa ", "geo": null, "id": 148836881365348350, "id_str": "148836881365348353", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696924623/331578568_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696924623/331578568_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "E don tay naw! Mr Ibu & dat oda clown... RT @Ms_Lumcy: So there is a Nigerian movie called 'Chelsea and liverpool'. this life!\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:29 +0000", "from_user": "jeanwyse", "from_user_id": 20142138, "from_user_id_str": "20142138", "from_user_name": "jean wyse", "geo": null, "id": 148836868342026240, "id_str": "148836868342026240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/240582578/t_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/240582578/t_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", "text": "This day was already going bad before I dropped me iPhone in the toilet. #clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:25 +0000", "from_user": "_LRStar", "from_user_id": 42873972, "from_user_id_str": "42873972", "from_user_name": "Rodney H.", "geo": null, "id": 148836850394611700, "id_str": "148836850394611712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670701168/1ba282d4059411e1abb01231381b65e3_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670701168/1ba282d4059411e1abb01231381b65e3_7_normal.jpg", "source": "<a href="http://tweetli.st/" rel="nofollow">TweetList!</a>", "text": "Lmaooo why would you put that you #clown RT @Ming_Wagstaff: @_LRStar lol fuck,u... sooo did @B_aMUSEd & @SwisherMeech really break up lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:24 +0000", "from_user": "4RYALTY_JC_GBII", "from_user_id": 343111699, "from_user_id_str": "343111699", "from_user_name": "KYMMYE CARTER", "geo": null, "id": 148836847479558140, "id_str": "148836847479558144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1609958048/6AnF7WC7_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609958048/6AnF7WC7_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "This damn Myrre a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:23 +0000", "from_user": "BruniinhooSP", "from_user_id": 437018181, "from_user_id_str": "437018181", "from_user_name": "Bruninho sp", "geo": null, "id": 148836844396744700, "id_str": "148836844396744704", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": null, "source": "<a href="http://twitter.com/">web</a>", "text": "Clown_Luizinho 'Cl\\u03C3w\\u0438 [ L\\u03C5izi\\u0438\\u043D\\u03C3 ]\\u2655 \\nE n\\u00E3o \\u00E9 que deu certo? #BigFollow: http://t.co/mgvjPILs uiaa peguei no flagra HAHAHAH SEU HACKER (HHH*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:16 +0000", "from_user": "BuxomBeauty90", "from_user_id": 227421274, "from_user_id_str": "227421274", "from_user_name": "Richie Wimbo", "geo": null, "id": 148836814524919800, "id_str": "148836814524919808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1393467988/coronation_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1393467988/coronation_normal.jpg", "source": "<a href="http://www.twitter.com" rel="nofollow">Twitter for Windows Phone</a>", "text": "@Destined_Dr right cause id clown if they sold me a fake", "to_user": "Destined_Dr", "to_user_id": 66251273, "to_user_id_str": "66251273", "to_user_name": "Danyle Awesome", "in_reply_to_status_id": 148836562946375680, "in_reply_to_status_id_str": "148836562946375680"}, +{"created_at": "Mon, 19 Dec 2011 18:47:13 +0000", "from_user": "carralesgeoomz7", "from_user_id": 391354195, "from_user_id_str": "391354195", "from_user_name": "Carrales Samson", "geo": null, "id": 148836803292573700, "id_str": "148836803292573696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "If you download clubusic to your iPod....your a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:10 +0000", "from_user": "SickNiggaSay", "from_user_id": 237028088, "from_user_id_str": "237028088", "from_user_name": "Say", "geo": null, "id": 148836790583828480, "id_str": "148836790583828482", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692408694/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692408694/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I dont ever cath feelins . Cuz its always some clown shit goin on .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:54 +0000", "from_user": "EmmettKellyJr_F", "from_user_id": 409675702, "from_user_id_str": "409675702", "from_user_name": "Emmett Kelly Jr Gift", "geo": null, "id": 148836721851772930, "id_str": "148836721851772929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1674139183/EKJ1101_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674139183/EKJ1101_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "☁ Emmett Kelly Jr Clown Framed Again Figurine Made in the USA Buy at http://t.co/vElCyHMJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:51 +0000", "from_user": "basicallyBAY", "from_user_id": 123016389, "from_user_id_str": "123016389", "from_user_name": "BrittanyANAY ", "geo": null, "id": 148836711135330300, "id_str": "148836711135330304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699496749/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699496749/profile_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "Lmaoo at the last tweet keltain wrote , boy is a #Clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:51 +0000", "from_user": "xheyikbenIRIS", "from_user_id": 228137741, "from_user_id_str": "228137741", "from_user_name": "Iris de Waard", "geo": null, "id": 148836709973495800, "id_str": "148836709973495808", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702128860/__--_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702128860/__--_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @JongerenSwag_: Ik:\"Ik word de nieuwe hitler, ik vermoord alle joden en 1 clown\" \"Waarom een clown\"\"Niemand geeft om die joden eh?!\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:50 +0000", "from_user": "cebondulini", "from_user_id": 181122807, "from_user_id_str": "181122807", "from_user_name": "Cebo Ndulini", "geo": null, "id": 148836705368150000, "id_str": "148836705368150016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1690508308/331411902_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690508308/331411902_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "<\\u2639> RT @FUNDI_PMB: So this clown replaced me lol fast kanje?! Owkay :-) hahaha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:50 +0000", "from_user": "itsm0m0", "from_user_id": 240414985, "from_user_id_str": "240414985", "from_user_name": "M0 Lizbeth", "geo": null, "id": 148836704269242370, "id_str": "148836704269242368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693224774/xcN6nt06_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693224774/xcN6nt06_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "*clown walk*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:43 +0000", "from_user": "Araba_Money", "from_user_id": 30071970, "from_user_id_str": "30071970", "from_user_name": "Adede, Triple A", "geo": null, "id": 148836677857718270, "id_str": "148836677857718272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695893087/love_me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695893087/love_me_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "My brother is such a clown he said I have too many shoes and when I go to sleep they are going to eat me.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:40 +0000", "from_user": "CqClown", "from_user_id": 277291881, "from_user_id_str": "277291881", "from_user_name": "Consequences Clown", "geo": null, "id": 148836661910974460, "id_str": "148836661910974465", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1309267731/aah_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1309267731/aah_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@xoxo_catherinee what do you work as? and not much is up with the ol clown.. im just clowning around!! you truly are blessed.. you met miz!!", "to_user": "xoxo_catherinee", "to_user_id": 39184639, "to_user_id_str": "39184639", "to_user_name": "Catherine Andrade", "in_reply_to_status_id": 148819876876795900, "in_reply_to_status_id_str": "148819876876795904"}, +{"created_at": "Mon, 19 Dec 2011 18:46:32 +0000", "from_user": "inlovew__LAUREN", "from_user_id": 292102843, "from_user_id_str": "292102843", "from_user_name": "Noah Turley", "geo": null, "id": 148836629103124480, "id_str": "148836629103124480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697484293/Ag0i-jOCIAA2ZRs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697484293/Ag0i-jOCIAA2ZRs_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@shakeyourtitts you the clown :P", "to_user": "shakeyourtitts", "to_user_id": 346159919, "to_user_id_str": "346159919", "to_user_name": "I XII XCV \\u2665", "in_reply_to_status_id": 148822778546626560, "in_reply_to_status_id_str": "148822778546626560"}, +{"created_at": "Mon, 19 Dec 2011 18:46:28 +0000", "from_user": "anothaLEVEL_810", "from_user_id": 97580147, "from_user_id_str": "97580147", "from_user_name": "Mz Jasmine", "geo": null, "id": 148836611625451520, "id_str": "148836611625451521", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1515119412/profile_image_1314406192335_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515119412/profile_image_1314406192335_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Smh its always a clown in dere", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:21 +0000", "from_user": "Jeens_YourBoss", "from_user_id": 46802782, "from_user_id_str": "46802782", "from_user_name": "Jeen The Dream\\u21D2\\u265A\\u21D0", "geo": null, "id": 148836585071321100, "id_str": "148836585071321089", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690136050/IMG_20111212_210228-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690136050/IMG_20111212_210228-1_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @440BoyRiqBubz: Fuckin All These CLOWN Niggaz , Now u Known as WHACK Pussy !!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:17 +0000", "from_user": "DHPLover", "from_user_id": 65052733, "from_user_id_str": "65052733", "from_user_name": "Kelly", "geo": null, "id": 148836566767370240, "id_str": "148836566767370240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1638380751/60501_658443866664_61306670_40470069_747995_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638380751/60501_658443866664_61306670_40470069_747995_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "Carson couldn't go to a fayre after a nasty experience with a clown and a rather large watermelon #DowntonAbbey 1.4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:12 +0000", "from_user": "TheRollmaster", "from_user_id": 173249200, "from_user_id_str": "173249200", "from_user_name": "Thinkin Thowed", "geo": null, "id": 148836547574239230, "id_str": "148836547574239232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677210333/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677210333/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Hahaha that last tweet was a clown! Gtfoh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:12 +0000", "from_user": "JBAR469", "from_user_id": 41922954, "from_user_id_str": "41922954", "from_user_name": "Justin Barnes", "geo": null, "id": 148836544013283330, "id_str": "148836544013283329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1493878292/226213_2070734805546_1160143321_32491943_5432057_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1493878292/226213_2070734805546_1160143321_32491943_5432057_n_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "You can never make a clown out of yourself for being faithful, unless you're being faithful to a hoe.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:11 +0000", "from_user": "itsAshleytho", "from_user_id": 83152843, "from_user_id_str": "83152843", "from_user_name": "The REAL her ", "geo": null, "id": 148836540271951870, "id_str": "148836540271951872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702583594/itsAshleytho_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702583594/itsAshleytho_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "lol you a clown \\uD83D\\uDE1DRT @maribabiii: @itsAshleytho \\uD83D\\uDE02bahahahaha \\uD83D\\uDE1C", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:00 +0000", "from_user": "la3pna", "from_user_id": 75143005, "from_user_id_str": "75143005", "from_user_name": "Thomas S Knutsen", "geo": null, "id": 148836495443247100, "id_str": "148836495443247104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iowahawkblog: First Al Davis, then Kim Jong-Il; bad year for insane clown-haired dictators in novelty Elvis sunglasses", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:54 +0000", "from_user": "Remixznflow82", "from_user_id": 69318201, "from_user_id_str": "69318201", "from_user_name": "Remixznflow", "geo": null, "id": 148836469287559170, "id_str": "148836469287559168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1630670451/310443_295205780498331_265400186812224_1223484_1032348054_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630670451/310443_295205780498331_265400186812224_1223484_1032348054_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "i dont know whether to clown this nigga @Troyvul and his bills... or offer my condolences...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:52 +0000", "from_user": "Vonte10_03Kalii", "from_user_id": 392776901, "from_user_id_str": "392776901", "from_user_name": "#TEAM 10/03", "geo": null, "id": 148836461913964540, "id_str": "148836461913964544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697019557/1320787126750_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697019557/1320787126750_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "READY 4 DIS BREAK BOUT 2 CLOWN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:45:50 +0000", "from_user": "PicturesqueTiff", "from_user_id": 230581346, "from_user_id_str": "230581346", "from_user_name": "\\u315C\\u00EFff\\u03B1\\u0E17\\u03B3 \\u2113\\u03B1\\u044F\\u03B1\\u00EF ", "geo": null, "id": 148836454192263170, "id_str": "148836454192263169", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698707898/IMAG0302_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698707898/IMAG0302_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "@xoxo_lingling I ain't say nothin but yu and I both kno . She need some philly Dick and she will leave that clown alone . I promise yu that", "to_user": "xoxo_lingling", "to_user_id": 45049130, "to_user_id_str": "45049130", "to_user_name": "LingLing\\u2661"}, +{"created_at": "Mon, 19 Dec 2011 18:45:49 +0000", "from_user": "demiralpinar", "from_user_id": 330661523, "from_user_id_str": "330661523", "from_user_name": "P\\u0131nar Demiral", "geo": null, "id": 148836450509651970, "id_str": "148836450509651968", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695476452/318580_10150348500262866_519672865_8098610_1473114128_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695476452/318580_10150348500262866_519672865_8098610_1473114128_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Hakan Yava\\u015F ile Clown Sanat\\u0131 Program\\u0131 : 24 Aral\\u0131k Cumartesi Dancentrum' da ba\\u015Fl\\u0131yor!!!!!!!! http://t.co/n3y2D7uw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:46 +0000", "from_user": "JagSingh96", "from_user_id": 243832762, "from_user_id_str": "243832762", "from_user_name": "Jag Singh", "geo": null, "id": 148836435737317380, "id_str": "148836435737317378", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1629015786/391401_2555884103586_1448468488_32912686_157903989_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629015786/391401_2555884103586_1448468488_32912686_157903989_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MaccaLaywood no it dont you clown! bro watch your mouth otherwise your getting frimpong'd!", "to_user": "MaccaLaywood", "to_user_id": 241267896, "to_user_id_str": "241267896", "to_user_name": "Macauley Laywood", "in_reply_to_status_id": 148835630657454080, "in_reply_to_status_id_str": "148835630657454080"}, +{"created_at": "Mon, 19 Dec 2011 18:45:45 +0000", "from_user": "LadySevene", "from_user_id": 161957394, "from_user_id_str": "161957394", "from_user_name": "Tiffany W.", "geo": null, "id": 148836433036193800, "id_str": "148836433036193792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691332658/j6Pi44X9_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691332658/j6Pi44X9_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@SociallyAware91 Lmaoo!!! Damn clown", "to_user": "SociallyAware91", "to_user_id": 84216299, "to_user_id_str": "84216299", "to_user_name": "Annesha Carter", "in_reply_to_status_id": 148835345516081150, "in_reply_to_status_id_str": "148835345516081153"}, +{"created_at": "Mon, 19 Dec 2011 18:45:36 +0000", "from_user": "_Jip_", "from_user_id": 220112904, "from_user_id_str": "220112904", "from_user_name": "Jipp", "geo": null, "id": 148836396080168960, "id_str": "148836396080168960", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1304605267/Foto0083_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1304605267/Foto0083_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@SilHerwijnen kempi - Bob du clown die is veel leuker", "to_user": "SilHerwijnen", "to_user_id": 223901667, "to_user_id_str": "223901667", "to_user_name": "Sil van Herwijnen", "in_reply_to_status_id": 148836121319714800, "in_reply_to_status_id_str": "148836121319714816"}, +{"created_at": "Mon, 19 Dec 2011 18:45:36 +0000", "from_user": "alexholat", "from_user_id": 51128793, "from_user_id_str": "51128793", "from_user_name": "Alex Holat", "geo": null, "id": 148836393085452300, "id_str": "148836393085452290", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1102841045/0b314807-d25b-4fa3-a2ae-9492414a9ebc_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1102841045/0b314807-d25b-4fa3-a2ae-9492414a9ebc_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@tbauschek haha you're a clown. Is Shannon home this week?", "to_user": "tbauschek", "to_user_id": 53421932, "to_user_id_str": "53421932", "to_user_name": "Ty Bauschek", "in_reply_to_status_id": 148835059279990800, "in_reply_to_status_id_str": "148835059279990786"}, +{"created_at": "Mon, 19 Dec 2011 18:45:31 +0000", "from_user": "KinGJuDADDY", "from_user_id": 107265436, "from_user_id_str": "107265436", "from_user_name": "Julian Diaz", "geo": null, "id": 148836372080377860, "id_str": "148836372080377857", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1566058920/KinGJuDADDY_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566058920/KinGJuDADDY_normal.jpg", "source": "<a href="http://tweetlogix.com" rel="nofollow">Tweetlogix</a>", "text": "@OGMaJik @Settintrends @JustSmp7 @NESS_IZZIE @itsCaro_o lmao I'm in class and I see \"we met on MySpace\" lmao you a clown", "to_user": "OGMaJik", "to_user_id": 50571075, "to_user_id_str": "50571075", "to_user_name": "Docta Greyhairs", "in_reply_to_status_id": 148822860742393860, "in_reply_to_status_id_str": "148822860742393856"}, +{"created_at": "Mon, 19 Dec 2011 18:45:26 +0000", "from_user": "MeLighty", "from_user_id": 95387562, "from_user_id_str": "95387562", "from_user_name": "Lighty Makhaye", "geo": null, "id": 148836354145525760, "id_str": "148836354145525761", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700320130/331659416_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700320130/331659416_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Aw! Sorry RT @FUNDI_PMB: So this clown replaced me lol fast kanje?! Owkay :-) hahaha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:25 +0000", "from_user": "Musa_Souled", "from_user_id": 33513526, "from_user_id_str": "33513526", "from_user_name": "Musa MrSouled Ndlovu", "geo": null, "id": 148836347036188670, "id_str": "148836347036188673", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701770210/Musa_Souled_1966012881148485428_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701770210/Musa_Souled_1966012881148485428_normal.jpg", "source": "<a href="http://www.writelonger.com" rel="nofollow">Write Longer</a>", "text": ":\"D RT @FUNDI_PMB: So this clown replaced me lol fast kanje?! Owkay :-) hahaha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:17 +0000", "from_user": "BluDissertation", "from_user_id": 22816158, "from_user_id_str": "22816158", "from_user_name": "Koury", "geo": null, "id": 148836317483106300, "id_str": "148836317483106305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1617191368/Halloween_1small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1617191368/Halloween_1small_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "@slimcreed51 HEY. I'm not here for you to clown my eating habits thankyouverymuch. ;-P", "to_user": "slimcreed51", "to_user_id": 101088174, "to_user_id_str": "101088174", "to_user_name": "s.ellis", "in_reply_to_status_id": 148826800351490050, "in_reply_to_status_id_str": "148826800351490048"}, +{"created_at": "Mon, 19 Dec 2011 18:45:11 +0000", "from_user": "KaiInThisBitch", "from_user_id": 319957366, "from_user_id_str": "319957366", "from_user_name": "Shakai McCarthan\\u00A9\\u2122", "geo": +{"coordinates": [32.4094,-80.6121], "type": "Point"}, "id": 148836289691652100, "id_str": "148836289691652096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679620399/5pCnauhb_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679620399/5pCnauhb_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@its_keeraa hah yu Ay clown", "to_user": "its_keeraa", "to_user_id": 131929689, "to_user_id_str": "131929689", "to_user_name": "` My funny ass.", "in_reply_to_status_id": 148836122540249100, "in_reply_to_status_id_str": "148836122540249089"}, +{"created_at": "Mon, 19 Dec 2011 18:45:09 +0000", "from_user": "Kivore", "from_user_id": 101098611, "from_user_id_str": "101098611", "from_user_name": "\\u2190 Call Her Love 22", "geo": null, "id": 148836279956684800, "id_str": "148836279956684800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698060028/profile_image_1324120007820_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698060028/profile_image_1324120007820_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @Mon_Solo_: Damn, I remember having class with Kevin he was always the class clown. R.I.P man.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:04 +0000", "from_user": "DearKylah", "from_user_id": 219132595, "from_user_id_str": "219132595", "from_user_name": "Dom", "geo": null, "id": 148836262189608960, "id_str": "148836262189608960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1662099296/avatar_normal.JPEG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662099296/avatar_normal.JPEG", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Oomf just tweeted some real shit but I cnt RT it cause im a clown ctfu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:01 +0000", "from_user": "DCPlod", "from_user_id": 28654635, "from_user_id_str": "28654635", "from_user_name": "Danielle Blake", "geo": null, "id": 148836246800699400, "id_str": "148836246800699392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1634069679/eyeshootfireballs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634069679/eyeshootfireballs_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "It's official: I could be a journalist. Because I'm infinitely more informed than that clown in the Guardian.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:59 +0000", "from_user": "UWish_IGAF", "from_user_id": 371357158, "from_user_id_str": "371357158", "from_user_name": "Josh Wright", "geo": null, "id": 148836239582314500, "id_str": "148836239582314496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1679472068/Kg08cRM7_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679472068/Kg08cRM7_normal", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @Tsu_Surf: I clearly can't clown u niggas and teach u .... So with that being said.. Don't ask me NOOOO FUCCIN QUESTIONS... Dead ass", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:57 +0000", "from_user": "Mommy0fa_Prince", "from_user_id": 336774804, "from_user_id_str": "336774804", "from_user_name": "Chase's Mommy", "geo": null, "id": 148836233362157570, "id_str": "148836233362157568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1678130283/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678130283/image_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "ive decided not to clown the fat bitch crew anymore.. them hoes jealous &mad kus they all broke, ugly & lives fucked up, so yea im DONE!! :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:51 +0000", "from_user": "cashclown", "from_user_id": 28302335, "from_user_id_str": "28302335", "from_user_name": "Cash Clown", "geo": null, "id": 148836207575564300, "id_str": "148836207575564288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1676613942/Yp55Q6KD_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676613942/Yp55Q6KD_normal", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Check out \"MILK & COOKIES\" by CASH CLOWN - http://t.co/j7Bwsoao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:40 +0000", "from_user": "QuintusJansen", "from_user_id": 21421756, "from_user_id_str": "21421756", "from_user_name": "Quintus Jansen", "geo": null, "id": 148836162067374080, "id_str": "148836162067374081", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1575512005/327614916_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575512005/327614916_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Do you mind that your face make-up doesn't match your neck? When I squint, you look like a circus clown. #Community", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:40 +0000", "from_user": "Nx_Her", "from_user_id": 91365666, "from_user_id_str": "91365666", "from_user_name": "Nuzhah Naashidh", "geo": null, "id": 148836160888774660, "id_str": "148836160888774657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1651762318/DSC016715_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651762318/DSC016715_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @RichardOBarry: Dolphins are free-ranging, intelligent, & complex wild animals, and they belong in the oceans, not playing the clown in our human schemes.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:38 +0000", "from_user": "ZaBeast409", "from_user_id": 374697133, "from_user_id_str": "374697133", "from_user_name": "Zach Villemez", "geo": null, "id": 148836151015374850, "id_str": "148836151015374848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1568225714/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1568225714/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "\"You're gonna die, clown!\" #HappyGilmore #classic", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:25 +0000", "from_user": "iBoneThugs_xoxo", "from_user_id": 105696023, "from_user_id_str": "105696023", "from_user_name": " BluntlySpeakin ", "geo": null, "id": 148836096900468740, "id_str": "148836096900468737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693950047/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693950047/image_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @440BoyRiqBubz: Fuckin All These CLOWN Niggaz , Now u Known as WHACK Pussy !!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:20 +0000", "from_user": "FUNDI_PMB", "from_user_id": 148753146, "from_user_id_str": "148753146", "from_user_name": "FUNDI MCHUNU", "geo": null, "id": 148836078265184260, "id_str": "148836078265184258", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1590034926/328121430_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1590034926/328121430_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "So this clown replaced me lol fast kanje?! Owkay :-) hahaha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:17 +0000", "from_user": "TheReaLMissBeBe", "from_user_id": 123012375, "from_user_id_str": "123012375", "from_user_name": "\\u2650MissBeBe", "geo": null, "id": 148836061940940800, "id_str": "148836061940940800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701163095/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701163095/image_normal.jpg", "source": "<a href="http://tweetlogix.com" rel="nofollow">Tweetlogix</a>", "text": "Clown RT @MooLo_Lo: @TheReaLMissBeBe I kno lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:16 +0000", "from_user": "shemypic", "from_user_id": 318162987, "from_user_id_str": "318162987", "from_user_name": "maysha blackwell", "geo": null, "id": 148836059676024830, "id_str": "148836059676024832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1419884498/PRETTYME_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1419884498/PRETTYME_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "SHE A CLOWN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:16 +0000", "from_user": "JadoreNiquee", "from_user_id": 229266179, "from_user_id_str": "229266179", "from_user_name": "AmorVincitOmnia ( :", "geo": null, "id": 148836058036051970, "id_str": "148836058036051969", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685036565/390920_322126304466680_100000079392813_1291219_1936876939_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685036565/390920_322126304466680_100000079392813_1291219_1936876939_n_normal.jpg", "source": "<a href="http://bbnation.com/182399.207145" rel="nofollow">Tweeker</a>", "text": "Clown Tendenciessss ,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:16 +0000", "from_user": "xAirForce_GIRLx", "from_user_id": 398746092, "from_user_id_str": "398746092", "from_user_name": "Nisha'RaShawn", "geo": null, "id": 148836057910231040, "id_str": "148836057910231040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702281015/nisha8_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702281015/nisha8_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Glad sneak and colonel Found my black nose imma be thE prettiest clown haha imma have my prison black and white on ;)) #Jrotc #TEAMCLOWN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:15 +0000", "from_user": "ShakeTheVixen", "from_user_id": 58160918, "from_user_id_str": "58160918", "from_user_name": "QUEEN OF VIXENS ", "geo": null, "id": 148836056857456640, "id_str": "148836056857456640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695596752/o0o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695596752/o0o_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "What u gotta say clown what u gotta say now", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:08 +0000", "from_user": "_partyworld", "from_user_id": 151372636, "from_user_id_str": "151372636", "from_user_name": "\\u3010\\u30D1\\u30FC\\u30C6\\u30A3\\u30EF\\u30FC\\u30EB\\u30C9\\u3011\\u30D1\\u30FC\\u30C6\\u30A3\\u30FC\\u30B0\\u30C3\\u30BA\\u901A\\u8CA9", "geo": null, "id": 148836025697976320, "id_str": "148836025697976320", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546408457/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546408457/image_normal.jpg", "source": "<a href="http://www.party-world.jp/" rel="nofollow">UNI-SUPPLY</a>", "text": "15521 JINGLES THE SUPER CLOWN \\u901A\\u8CA9 http://t.co/sDVBgHED | \\u30D4\\u30A8\\u30ED\\u30B9\\u30FC\\u30C4\\u30FB\\u30A4\\u30D9\\u30F3\\u30C8\\u8863\\u88C5 | \\u30A4\\u30D9\\u30F3\\u30C8\\u30B0\\u30C3\\u30BA | \\u30D1\\u30FC\\u30C6\\u30A3\\u30FC\\u30B0\\u30C3\\u30BA | \\u30D1\\u30FC\\u30C6\\u30A3\\u30EF\\u30FC\\u30EB\\u30C9 | \\u30E6\\u30CB\\u30B5\\u30D7\\u30E9\\u30A4\\u30BA\\u306E\\u30AA\\u30F3\\u30E9\\u30A4\\u30F3\\u30B7\\u30E7\\u30C3\\u30D7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:08 +0000", "from_user": "BONITAJASS", "from_user_id": 166039426, "from_user_id_str": "166039426", "from_user_name": "SUCK MY DICK BITCH !", "geo": null, "id": 148836024171237380, "id_str": "148836024171237376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691647862/snapshot__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691647862/snapshot__1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "i hate clown's -.-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:07 +0000", "from_user": "m17blp", "from_user_id": 57410656, "from_user_id_str": "57410656", "from_user_name": "Mike Lord", "geo": null, "id": 148836022812282880, "id_str": "148836022812282881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1600235771/284388_10150744592695514_577640513_20344092_2855781_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600235771/284388_10150744592695514_577640513_20344092_2855781_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "5 grand for a clown. THE BIG VERDICT: was it worth it? @Tom_gosling02 @Rushie1986 @smudger268 @nickbaxter @ako_7 @mattwood00 @Hedgo85", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:04 +0000", "from_user": "DJCOOP410", "from_user_id": 362241430, "from_user_id_str": "362241430", "from_user_name": "Eric Cooper", "geo": null, "id": 148836007914123260, "id_str": "148836007914123265", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688655288/2011-03-25_01-47-11_808_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688655288/2011-03-25_01-47-11_808_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "I cnt say im from the #dmv n person it dnt sound rite cause my city clown on both the #v an #d #baltimore is the only good from it", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:03 +0000", "from_user": "JDotSmiles", "from_user_id": 47675910, "from_user_id_str": "47675910", "from_user_name": "I Warned Y'all About", "geo": null, "id": 148836006794235900, "id_str": "148836006794235904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687477041/photo6-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687477041/photo6-1_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @itsDevRun: Niggas that suppose to have a Samsung 300 or some shit got iPhones now, wit a big clown ass case smh - lmaoooo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:55 +0000", "from_user": "SoFla_Wolverine", "from_user_id": 292980235, "from_user_id_str": "292980235", "from_user_name": "G", "geo": null, "id": 148835971176206340, "id_str": "148835971176206336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695662688/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695662688/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Hail2MI clown!!", "to_user": "Hail2MI", "to_user_id": 314770528, "to_user_id_str": "314770528", "to_user_name": "Nathanial Hornblower", "in_reply_to_status_id": 148832700671864830, "in_reply_to_status_id_str": "148832700671864832"}, +{"created_at": "Mon, 19 Dec 2011 18:43:54 +0000", "from_user": "GiannaGraham", "from_user_id": 247371905, "from_user_id_str": "247371905", "from_user_name": "GeeAwnUhh GrayUhm\\u2661", "geo": null, "id": 148835968265355260, "id_str": "148835968265355264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695975400/IMAG0293_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695975400/IMAG0293_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u00AB@mb_staybased RT @xgreenawaltx: @cthug69 is a clown.\\u00BB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:53 +0000", "from_user": "DaphneJ_", "from_user_id": 167139229, "from_user_id_str": "167139229", "from_user_name": "Daphne Jordan", "geo": null, "id": 148835961764200450, "id_str": "148835961764200449", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1450417356/322606802_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1450417356/322606802_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @yasminaaax: RT @DaphneJ_: Ik heb ze trouwens al gevonden hoor=$ - clown / ik vind jou ook lief hoor Rayna/limonade", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:51 +0000", "from_user": "NajMorn2", "from_user_id": 213826859, "from_user_id_str": "213826859", "from_user_name": "Najee Morning", "geo": null, "id": 148835954352848900, "id_str": "148835954352848896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701742059/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701742059/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "you a copycat homes you a clown a #synonom", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:49 +0000", "from_user": "Brucee_Jones", "from_user_id": 436282984, "from_user_id_str": "436282984", "from_user_name": "Bruce Jones", "geo": null, "id": 148835946916356100, "id_str": "148835946916356097", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691950723/DSC04397_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691950723/DSC04397_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "How many times is @SheSoClassic gonna clown on me!? #trick", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:44 +0000", "from_user": "PJ_JBF", "from_user_id": 328389457, "from_user_id_str": "328389457", "from_user_name": "aaliyah winfield", "geo": null, "id": 148835924535554050, "id_str": "148835924535554048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1647209196/webcam-toy-photo10_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647209196/webcam-toy-photo10_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@TatyanaLiShae05 clown i was WE as in US used to get in troublee.", "to_user": "TatyanaLiShae05", "to_user_id": 431941525, "to_user_id_str": "431941525", "to_user_name": "Tatyana Jackson", "in_reply_to_status_id": 148835445839638530, "in_reply_to_status_id_str": "148835445839638528"}, +{"created_at": "Mon, 19 Dec 2011 18:43:44 +0000", "from_user": "440BoyRiqBubz", "from_user_id": 274014051, "from_user_id_str": "274014051", "from_user_name": "Ink Me AnyWhere\\u2122", "geo": null, "id": 148835924288090100, "id_str": "148835924288090113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702459963/IMAG0003_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702459963/IMAG0003_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Fuckin All These CLOWN Niggaz , Now u Known as WHACK Pussy !!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:37 +0000", "from_user": "SqueezYOnipples", "from_user_id": 231260195, "from_user_id_str": "231260195", "from_user_name": "Yasming Bullock", "geo": null, "id": 148835896786038800, "id_str": "148835896786038784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693699073/314650_280422745323111_100000661635349_939212_208009364_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693699073/314650_280422745323111_100000661635349_939212_208009364_n_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @_longJONsilvers: \\u00AB@SqueezYOnipples @_longJONsilvers @billy_baddaz lmao dey wacc Cus dey aint ME....aint i Cant be dat much of \\u00E0 clown u still around...#foh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:36 +0000", "from_user": "marleenhuisman", "from_user_id": 187916786, "from_user_id_str": "187916786", "from_user_name": "Marleen Huisman", "geo": null, "id": 148835891060817920, "id_str": "148835891060817920", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691415933/316782056_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691415933/316782056_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@Robiinnxxx ja die kan ik ook niet. ik heb alleen dead girl en evil clown", "to_user": "Robiinnxxx", "to_user_id": 308453316, "to_user_id_str": "308453316", "to_user_name": "Robin.", "in_reply_to_status_id": 148835518430445570, "in_reply_to_status_id_str": "148835518430445569"}, +{"created_at": "Mon, 19 Dec 2011 18:43:34 +0000", "from_user": "PrettyBrwnNay", "from_user_id": 56540234, "from_user_id_str": "56540234", "from_user_name": "Santi M. Zenon", "geo": null, "id": 148835881925611520, "id_str": "148835881925611520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1661401873/PrettyBrwnNay_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661401873/PrettyBrwnNay_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@WhoDisNiggaBAve lmmfao!!! Right.. We use to clown!!!! You gettin them 11's ??", "to_user": "WhoDisNiggaBAve", "to_user_id": 123334973, "to_user_id_str": "123334973", "to_user_name": "B-Ave", "in_reply_to_status_id": 148835320211832830, "in_reply_to_status_id_str": "148835320211832834"}, +{"created_at": "Mon, 19 Dec 2011 18:43:28 +0000", "from_user": "Adamtheboss", "from_user_id": 312201261, "from_user_id_str": "312201261", "from_user_name": "Adam Yepez", "geo": null, "id": 148835860194930700, "id_str": "148835860194930688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690384361/YE7jh7Lx_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690384361/YE7jh7Lx_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@yummyvale yup she's a clown lol", "to_user": "yummyvale", "to_user_id": 331194436, "to_user_id_str": "331194436", "to_user_name": "Valeria Miranda", "in_reply_to_status_id": 148831062741614600, "in_reply_to_status_id_str": "148831062741614593"}, +{"created_at": "Mon, 19 Dec 2011 18:43:22 +0000", "from_user": "KreedleA", "from_user_id": 135321382, "from_user_id_str": "135321382", "from_user_name": "\\uF8FF Kristoffer \\uF8FF ", "geo": null, "id": 148835832172781570, "id_str": "148835832172781569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702058280/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702058280/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@iTz_Renato: http://t.co/WWeoaOty - He's so stupid that shoud've be 2012 Champions, as 2011 Barcelona won it\\u201D biggest clown ever \\uD83D\\uDE04 #fag", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:14 +0000", "from_user": "Tsu_Surf", "from_user_id": 89787221, "from_user_id_str": "89787221", "from_user_name": "Tsunami Surf", "geo": null, "id": 148835800027643900, "id_str": "148835800027643905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702471226/Tsu_Surf_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702471226/Tsu_Surf_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "I clearly can't clown u niggas and teach u .... So with that being said.. Don't ask me NOOOO FUCCIN QUESTIONS... Dead ass", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:12 +0000", "from_user": "KDubb2014", "from_user_id": 166360638, "from_user_id_str": "166360638", "from_user_name": "Brittney Kimble", "geo": null, "id": 148835790020018180, "id_str": "148835790020018176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1582829926/Beautiful_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1582829926/Beautiful_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "I love Tia! She a clown..lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:10 +0000", "from_user": "AyyoItsSmoove_", "from_user_id": 319695766, "from_user_id_str": "319695766", "from_user_name": "Mr.Kodak\\u2122", "geo": null, "id": 148835780775780350, "id_str": "148835780775780352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1673262397/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673262397/profile_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "Ima fuckin clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:08 +0000", "from_user": "i_seebeauty", "from_user_id": 255732121, "from_user_id_str": "255732121", "from_user_name": "Lucia ", "geo": null, "id": 148835775054741500, "id_str": "148835775054741504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700816678/IMAG0904_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700816678/IMAG0904_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Who_datWILL lmfaooooooo hahahahahaha clown", "to_user": "Who_datWILL", "to_user_id": 355768778, "to_user_id_str": "355768778", "to_user_name": "williams thomas", "in_reply_to_status_id": 148835294001635330, "in_reply_to_status_id_str": "148835294001635328"}, +{"created_at": "Mon, 19 Dec 2011 18:43:03 +0000", "from_user": "Daisybelll", "from_user_id": 43061572, "from_user_id_str": "43061572", "from_user_name": "Daisybell", "geo": null, "id": 148835753881911300, "id_str": "148835753881911296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1519677212/earth_heart_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1519677212/earth_heart_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @RichardOBarry: Dolphins are free-ranging, intelligent, & complex wild animals, and they belong in the oceans, not playing the clown in our human schemes.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:02 +0000", "from_user": "dreammya", "from_user_id": 173549811, "from_user_id_str": "173549811", "from_user_name": "'myamya", "geo": null, "id": 148835750027341820, "id_str": "148835750027341824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1635066270/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635066270/profile_normal.jpg", "source": "<a href="http://bit.ly/fVzRUd" rel="nofollow">TwitPal</a>", "text": "I can clown niggahs my ass fat and yo bitch I can take that", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:02 +0000", "from_user": "theraveneffect", "from_user_id": 23890115, "from_user_id_str": "23890115", "from_user_name": "Raven", "geo": null, "id": 148835749683396600, "id_str": "148835749683396608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697115808/Image_9_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697115808/Image_9_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @justjohn2x: @theraveneffect why is insane clown posse neither insane nor a posse?/\\n\\nActually they r both. Tardtard", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:58 +0000", "from_user": "DJGhostDogg", "from_user_id": 313008688, "from_user_id_str": "313008688", "from_user_name": "Turntable Samurai", "geo": null, "id": 148835731656282100, "id_str": "148835731656282112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1386469083/220364_166130216779848_100001486112045_388684_260204_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1386469083/220364_166130216779848_100001486112045_388684_260204_o_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "If @ActionBronson don't get in the XXL freshman class 2011 over sum skinny jean wearn clown,I'm going 2 be pissed #he got lyrics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:49 +0000", "from_user": "VRavencroft", "from_user_id": 109348521, "from_user_id_str": "109348521", "from_user_name": "Vanessa Ravencroft", "geo": null, "id": 148835694427643900, "id_str": "148835694427643904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/661424167/vr1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/661424167/vr1_normal.jpg", "source": "<a href="http://www.yahoo.com" rel="nofollow">Yahoo!</a>", "text": "gave a thumbs up to Clown's comment: I am not sure what is more disturbing, the fact that he believes this, or ... http://t.co/VrV1bdhZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:46 +0000", "from_user": "G_Allen10", "from_user_id": 43780277, "from_user_id_str": "43780277", "from_user_name": "Garey Allen", "geo": null, "id": 148835684055126000, "id_str": "148835684055126016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687409682/284011_2306997954642_1240081898_3772194_7370000_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687409682/284011_2306997954642_1240081898_3772194_7370000_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@JeromeHarris_23: I hate fat girls with skinny chick mentalities.\\u201Dlmaoo u a clown my niqqa lmaoo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:46 +0000", "from_user": "2nd2nunn_", "from_user_id": 360970857, "from_user_id_str": "360970857", "from_user_name": "Dylan Jerome Nunn", "geo": null, "id": 148835683035922430, "id_str": "148835683035922432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1510657043/dylan_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1510657043/dylan_normal.jpg", "source": "<a href="http://www.motorola.com" rel="nofollow">DROID</a>", "text": "@tobieblake18 that awkward moment when u try to hug that hot person and u run into the mirror haha to clown nigga", "to_user": "TobieBlake18", "to_user_id": 411988850, "to_user_id_str": "411988850", "to_user_name": "Tobie Blake Wilkins"}, +{"created_at": "Mon, 19 Dec 2011 18:42:37 +0000", "from_user": "_partyworld", "from_user_id": 151372636, "from_user_id_str": "151372636", "from_user_name": "\\u3010\\u30D1\\u30FC\\u30C6\\u30A3\\u30EF\\u30FC\\u30EB\\u30C9\\u3011\\u30D1\\u30FC\\u30C6\\u30A3\\u30FC\\u30B0\\u30C3\\u30BA\\u901A\\u8CA9", "geo": null, "id": 148835645673062400, "id_str": "148835645673062400", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546408457/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546408457/image_normal.jpg", "source": "<a href="http://www.party-world.jp/" rel="nofollow">UNI-SUPPLY</a>", "text": "16983STD BUBBLES THE CLOWN \\u901A\\u8CA9 http://t.co/u2rInEoV | \\u30D4\\u30A8\\u30ED\\u30B9\\u30FC\\u30C4\\u30FB\\u30A4\\u30D9\\u30F3\\u30C8\\u8863\\u88C5 | \\u30A4\\u30D9\\u30F3\\u30C8\\u30B0\\u30C3\\u30BA | \\u30D1\\u30FC\\u30C6\\u30A3\\u30FC\\u30B0\\u30C3\\u30BA | \\u30D1\\u30FC\\u30C6\\u30A3\\u30EF\\u30FC\\u30EB\\u30C9 | \\u30E6\\u30CB\\u30B5\\u30D7\\u30E9\\u30A4\\u30BA\\u306E\\u30AA\\u30F3\\u30E9\\u30A4\\u30F3\\u30B7\\u30E7\\u30C3\\u30D7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:34 +0000", "from_user": "mws4ua", "from_user_id": 156693481, "from_user_id_str": "156693481", "from_user_name": "Matt S.", "geo": null, "id": 148835632389697540, "id_str": "148835632389697536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1526530758/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1526530758/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@ClayTravisBGID What's a 'nationa title'? Ass clown.", "to_user": "ClayTravisBGID", "to_user_id": 50772918, "to_user_id_str": "50772918", "to_user_name": "Clay Travis"}, +{"created_at": "Mon, 19 Dec 2011 18:42:24 +0000", "from_user": "Myfemisn2012", "from_user_id": 56129112, "from_user_id_str": "56129112", "from_user_name": "919Twizzy336", "geo": null, "id": 148835591830773760, "id_str": "148835591830773761", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702031394/YYaKNroO_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702031394/YYaKNroO_normal.jpeg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@Misz_BHaving @Myfemisn2012 me clown.\\u201Doohh yea, jus checkn didnt knw homie...i slept great too!!!!!!! #win", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:21 +0000", "from_user": "FreddyFUCKHoes", "from_user_id": 431990094, "from_user_id_str": "431990094", "from_user_name": "L'Freddy Gambler ", "geo": null, "id": 148835577981181950, "id_str": "148835577981181952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681822555/fred_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681822555/fred_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Time to head out n clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:18 +0000", "from_user": "JuanitaOviedo", "from_user_id": 216093371, "from_user_id_str": "216093371", "from_user_name": "Juanita Oviedo", "geo": null, "id": 148835565863829500, "id_str": "148835565863829505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1643683314/035_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643683314/035_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "And when I'm sad you're a clown and if I get scared you're always around and then they say your hair's too long but I don't care with you\\u2665 8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:13 +0000", "from_user": "SouthSMASH", "from_user_id": 175961334, "from_user_id_str": "175961334", "from_user_name": "Sean South", "geo": null, "id": 148835542795157500, "id_str": "148835542795157504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1339023707/seansounth23041b_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1339023707/seansounth23041b_copy_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @stephenpocock: That's it! I'm going to clown college", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:11 +0000", "from_user": "LYNNEE_20", "from_user_id": 355647284, "from_user_id_str": "355647284", "from_user_name": "ERICA LYNN ", "geo": null, "id": 148835534142308350, "id_str": "148835534142308353", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1629869465/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629869465/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Yea bestie @fuckyeahIMJAZ ..young definitely not on my time... True Clown !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:01 +0000", "from_user": "DizzyDGAF_", "from_user_id": 25268995, "from_user_id_str": "25268995", "from_user_name": "Mrs. Hernandez", "geo": null, "id": 148835493805699070, "id_str": "148835493805699072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701496640/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701496640/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "This is dr hot nuts from drippy medical center. Cthu shizz a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:59 +0000", "from_user": "_dIVineFORTE_", "from_user_id": 94840815, "from_user_id_str": "94840815", "from_user_name": "Sevyn ", "geo": null, "id": 148835484708245500, "id_str": "148835484708245504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1686401161/imagejpeg_2_3-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686401161/imagejpeg_2_3-1_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "RT @Eye_Master This clown slipped on butter! #Dead! Someone always does something stupid in this house haha | lmaooo!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:57 +0000", "from_user": "mb_staybased", "from_user_id": 199697422, "from_user_id_str": "199697422", "from_user_name": "Beuoy Mark", "geo": null, "id": 148835474914545660, "id_str": "148835474914545664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1598518528/big_boo15_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598518528/big_boo15_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @xgreenawaltx: @cthug69 is a clown.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:48 +0000", "from_user": "Myoungfan3200", "from_user_id": 252992244, "from_user_id_str": "252992244", "from_user_name": "sarah", "geo": null, "id": 148835438881288200, "id_str": "148835438881288192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1323715958/AlexHeartman08_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1323715958/AlexHeartman08_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@BrendanKJMeyer @JBfan3200 are you a serious person or more a clown ?? i guess i am on the clown side but serious is not fun", "to_user": "BrendanKJMeyer", "to_user_id": 205909523, "to_user_id_str": "205909523", "to_user_name": "Brendan Meyer", "in_reply_to_status_id": 148829377952624640, "in_reply_to_status_id_str": "148829377952624642"}, +{"created_at": "Mon, 19 Dec 2011 18:41:48 +0000", "from_user": "smoerschell", "from_user_id": 155917839, "from_user_id_str": "155917839", "from_user_name": "Shelly Thomas", "geo": null, "id": 148835437291634700, "id_str": "148835437291634688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1588322028/IMG_1016_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1588322028/IMG_1016_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @RichardOBarry: Dolphins are free-ranging, intelligent, & complex wild animals, and they belong in the oceans, not playing the clown in our human schemes.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:47 +0000", "from_user": "MANOSCLOWN", "from_user_id": 286277822, "from_user_id_str": "286277822", "from_user_name": "M MANOS CLOWN", "geo": null, "id": 148835432682106880, "id_str": "148835432682106880", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1348183937/fotis_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1348183937/fotis_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube video http://t.co/4LCIUYhL ministerio manos clown la importancia de el perd\\u00F3n", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:44 +0000", "from_user": "PRETTiMentality", "from_user_id": 314214555, "from_user_id_str": "314214555", "from_user_name": "Deanna ", "geo": null, "id": 148835421579784200, "id_str": "148835421579784193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1686271269/166914_315948258429196_100000420745796_1116519_1582690769_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686271269/166914_315948258429196_100000420745796_1116519_1582690769_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Mr.Gladston is a clown lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:44 +0000", "from_user": "dreammya", "from_user_id": 173549811, "from_user_id_str": "173549811", "from_user_name": "'myamya", "geo": null, "id": 148835420787056640, "id_str": "148835420787056640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1635066270/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635066270/profile_normal.jpg", "source": "<a href="http://bit.ly/fVzRUd" rel="nofollow">TwitPal</a>", "text": "You need to get a grip and hop off your a clown ass niggah never been down ass niggah I spent more money then you been a round ass niggah", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:43 +0000", "from_user": "_Str8Texas", "from_user_id": 124372079, "from_user_id_str": "124372079", "from_user_name": "Maine S.", "geo": null, "id": 148835417976868860, "id_str": "148835417976868864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1640747921/maine10_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640747921/maine10_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "Before i met you you was just a musty hoe fuckin with them clown niggas like crusty doe.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:41 +0000", "from_user": "MsKayla05", "from_user_id": 145856837, "from_user_id_str": "145856837", "from_user_name": "Kayla Wilkerson", "geo": null, "id": 148835409957359600, "id_str": "148835409957359616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1656254712/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656254712/profile_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @TAkeme2CHINA: I got ish to lose I don't wana clown!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:41 +0000", "from_user": "MrsClassy_Ass", "from_user_id": 358313136, "from_user_id_str": "358313136", "from_user_name": "$d.town$", "geo": null, "id": 148835408074121200, "id_str": "148835408074121216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1656697048/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656697048/profile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "MADE chick. how u love dat clown? check my background.!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:40 +0000", "from_user": "itsDevRun", "from_user_id": 47687025, "from_user_id_str": "47687025", "from_user_name": "money hungry", "geo": null, "id": 148835406346059780, "id_str": "148835406346059777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1656557284/securedownload_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656557284/securedownload_normal.jpeg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Niggas that suppose to have a Samsung 300 or some shit got iPhones now, wit a big clown ass case smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:36 +0000", "from_user": "roosadmiraal17", "from_user_id": 231865885, "from_user_id_str": "231865885", "from_user_name": "Roos Admiraal", "geo": null, "id": 148835387857575940, "id_str": "148835387857575937", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1673399599/JvxDKa6y_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673399599/JvxDKa6y_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@maxje12 clown", "to_user": "maxje12", "to_user_id": 78323560, "to_user_id_str": "78323560", "to_user_name": "Max Admiraal"}, +{"created_at": "Mon, 19 Dec 2011 18:41:32 +0000", "from_user": "gerrinDtrier", "from_user_id": 341808447, "from_user_id_str": "341808447", "from_user_name": "terrindgrier \\uE330\\uE00F\\uE049 \\u272A", "geo": null, "id": 148835373194297340, "id_str": "148835373194297345", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679568517/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679568517/image_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @McPherson__: Kool-aid no sugar, toast no jelly, chips no dip, xbox no controller, guys no girls, love no hate, calvin no chipmunks, clown no smile", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:25 +0000", "from_user": "_longJONsilvers", "from_user_id": 292928030, "from_user_id_str": "292928030", "from_user_name": "jontaz$$$moore", "geo": null, "id": 148835341149806600, "id_str": "148835341149806596", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1586442056/taz2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586442056/taz2_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u00AB@SqueezYOnipples @_longJONsilvers @billy_baddaz lmao dey wacc Cus dey aint ME....aint i Cant be dat much of \\u00E0 clown u still around...#foh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:23 +0000", "from_user": "brickked2", "from_user_id": 294952779, "from_user_id_str": "294952779", "from_user_name": "#TheSportsGuyNHarlem", "geo": +{"coordinates": [40.7567,-73.9714], "type": "Point"}, "id": 148835333025435650, "id_str": "148835333025435648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697069980/IMG00082-20110615-1320_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697069980/IMG00082-20110615-1320_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"@Steve_Morin: Why did Santonio Holmes wear a Superman shirt to his post-game conference? HE BLEW THE GAME!!\"#Because he's a CLOWN. Overated", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:10 +0000", "from_user": "Misz_BHaving", "from_user_id": 233761863, "from_user_id_str": "233761863", "from_user_name": "BeRrIUnique.", "geo": null, "id": 148835277346045950, "id_str": "148835277346045952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1656520975/Strawberri336_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656520975/Strawberri336_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "@Myfemisn2012 me clown.", "to_user": "Myfemisn2012", "to_user_id": 56129112, "to_user_id_str": "56129112", "to_user_name": "919Twizzy336", "in_reply_to_status_id": 148835154662670340, "in_reply_to_status_id_str": "148835154662670336"}, +{"created_at": "Mon, 19 Dec 2011 18:41:06 +0000", "from_user": "nickfan1", "from_user_id": 18978753, "from_user_id_str": "18978753", "from_user_name": "Gemma Cripps", "geo": null, "id": 148835261730664450, "id_str": "148835261730664448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1474278443/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1474278443/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Fd4x4 ha that's how every pic turns out in my house...basically Lincoln the attention seeking clown haha", "to_user": "Fd4x4", "to_user_id": 61169570, "to_user_id_str": "61169570", "to_user_name": "Dave Harley", "in_reply_to_status_id": 148834617523322880, "in_reply_to_status_id_str": "148834617523322881"}, +{"created_at": "Mon, 19 Dec 2011 18:41:04 +0000", "from_user": "TAkeme2CHINA", "from_user_id": 70310678, "from_user_id_str": "70310678", "from_user_name": "Miss Frazier", "geo": null, "id": 148835256080932860, "id_str": "148835256080932865", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1649671507/tmp_image_file_profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649671507/tmp_image_file_profile_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I got ish to lose I don't wana clown!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:03 +0000", "from_user": "DOING_ME2010", "from_user_id": 370804968, "from_user_id_str": "370804968", "from_user_name": "taylor washington", "geo": null, "id": 148835251186188300, "id_str": "148835251186188288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1587675976/111014-003457_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587675976/111014-003457_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "I was about to clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:56 +0000", "from_user": "rannylovesmac09", "from_user_id": 379466964, "from_user_id_str": "379466964", "from_user_name": "Miranda Rohleder", "geo": null, "id": 148835220903301120, "id_str": "148835220903301120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699660458/8pagHO30_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699660458/8pagHO30_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "#SometimesIWonder why the hell you aren't a circus clown with all that makeup on ?! #unnecessary", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:51 +0000", "from_user": "earthisland", "from_user_id": 22984215, "from_user_id_str": "22984215", "from_user_name": "EarthIslandInstitute", "geo": null, "id": 148835197863993340, "id_str": "148835197863993344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/125805235/EIILogoBlack2x2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/125805235/EIILogoBlack2x2_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @RichardOBarry: Dolphins are free-ranging, intelligent, & complex wild animals, and they belong in the oceans, not playing the clown in our human schemes.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:32 +0000", "from_user": "superstar2five", "from_user_id": 277215468, "from_user_id_str": "277215468", "from_user_name": "Kerry Hoskins", "geo": null, "id": 148835121527652350, "id_str": "148835121527652352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1300147936/DSXv7a29_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1300147936/DSXv7a29_normal", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "shawty got on to much make up this bih look like a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:32 +0000", "from_user": "haworthtweets", "from_user_id": 366659490, "from_user_id_str": "366659490", "from_user_name": "Samuel Sam", "geo": null, "id": 148835117987667970, "id_str": "148835117987667968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1615017480/IMG00004-20110407-1339_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615017480/IMG00004-20110407-1339_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@zulfikaralikhan You are either high or a clown if u believe Zardari is your saviour (BB may be but AAZ never).Your hero is a mad criminal.", "to_user": "zulfikaralikhan", "to_user_id": 91730696, "to_user_id_str": "91730696", "to_user_name": "zulfiqar khan", "in_reply_to_status_id": 148832502721691650, "in_reply_to_status_id_str": "148832502721691648"}, +{"created_at": "Mon, 19 Dec 2011 18:40:31 +0000", "from_user": "V_Meech", "from_user_id": 62953660, "from_user_id_str": "62953660", "from_user_name": "Vanessa (Folarin) W.", "geo": null, "id": 148835117715034100, "id_str": "148835117715034113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1676434393/black_dress_new_avi_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676434393/black_dress_new_avi_normal.gif", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @HynesHummer2015 I love @V_Meech we just clown about relationships for no reason lmao --- <3333333", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:31 +0000", "from_user": "OpenKitchen1", "from_user_id": 333535020, "from_user_id_str": "333535020", "from_user_name": "Open Kitchen ", "geo": null, "id": 148835117102661630, "id_str": "148835117102661633", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1580146117/Senza_titolo-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580146117/Senza_titolo-1_normal.jpg", "source": "<a href="http://www.networkedblogs.com/" rel="nofollow">NetworkedBlogs</a>", "text": "Un clown di verdure per i bimbi http://t.co/r4meTfyS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:31 +0000", "from_user": "S0fiaElizabeth", "from_user_id": 30555058, "from_user_id_str": "30555058", "from_user_name": "sofie yohannes", "geo": null, "id": 148835116255428600, "id_str": "148835116255428608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688318437/sofa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688318437/sofa_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@SteamyStevey you are a damn clown hermanO you are ethnic too homie don't forget", "to_user": "SteamyStevey", "to_user_id": 319272205, "to_user_id_str": "319272205", "to_user_name": "Steven Beran", "in_reply_to_status_id": 148832808385781760, "in_reply_to_status_id_str": "148832808385781760"}, +{"created_at": "Mon, 19 Dec 2011 18:40:27 +0000", "from_user": "E_Beesy4", "from_user_id": 397716686, "from_user_id_str": "397716686", "from_user_name": "Ebony Burnside", "geo": null, "id": 148835097842429950, "id_str": "148835097842429952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691227513/v2G5WhE2_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691227513/v2G5WhE2_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "U ever watch a hood moneky try n dress up....its like a clown in heels #notattractive", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:24 +0000", "from_user": "DNA2K10", "from_user_id": 76479319, "from_user_id_str": "76479319", "from_user_name": "D.N.A", "geo": null, "id": 148835085603454980, "id_str": "148835085603454976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1661056521/DNA2K10_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661056521/DNA2K10_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@BrooklynBeazyy so stop mentioning my name u clown", "to_user": "BrooklynBeazyy", "to_user_id": 64618842, "to_user_id_str": "64618842", "to_user_name": "Bryann", "in_reply_to_status_id": 148834346634194940, "in_reply_to_status_id_str": "148834346634194944"}, +{"created_at": "Mon, 19 Dec 2011 18:40:18 +0000", "from_user": "Hollielavender", "from_user_id": 42120213, "from_user_id_str": "42120213", "from_user_name": "hollie lavender", "geo": null, "id": 148835063008722940, "id_str": "148835063008722944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1523306137/IMG-20110812-00821_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1523306137/IMG-20110812-00821_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Kids bathed iorning done gonna put the clothes away then sit down and eat spag bowl mmm clown town 2morow hope it ant a let down!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:13 +0000", "from_user": "foreverpink08", "from_user_id": 437090440, "from_user_id_str": "437090440", "from_user_name": "dinangely", "geo": null, "id": 148835041621979140, "id_str": "148835041621979138", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696035898/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696035898/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@wiseguyruben @3leggedkelz lmaoooo clown", "to_user": "wiseguyruben", "to_user_id": 367436123, "to_user_id_str": "367436123", "to_user_name": "Ruben Espinal", "in_reply_to_status_id": 148833829782695940, "in_reply_to_status_id_str": "148833829782695936"}, +{"created_at": "Mon, 19 Dec 2011 18:40:10 +0000", "from_user": "YOUNG_MONEY5", "from_user_id": 88536206, "from_user_id_str": "88536206", "from_user_name": "HURRIxANE MON ", "geo": null, "id": 148835027906600960, "id_str": "148835027906600962", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1611828810/328840676_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611828810/328840676_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "I kno this clown aint say imma text yu cuz her boo thang came over", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:08 +0000", "from_user": "hirshi", "from_user_id": 23308566, "from_user_id_str": "23308566", "from_user_name": "dan", "geo": null, "id": 148835019052417020, "id_str": "148835019052417024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1617493722/photo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1617493722/photo_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "ride that ___ like a rodeo clown @doctajeep", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:05 +0000", "from_user": "RUNWAY_GODDESS", "from_user_id": 239561898, "from_user_id_str": "239561898", "from_user_name": "BOMBCHICK", "geo": null, "id": 148835006398218240, "id_str": "148835006398218240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693154478/10msrql6_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693154478/10msrql6_normal", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "THIS GIRL JUST SAID SHE WANNA BE MUSLIM CUZ SHE WANNA WEAR ALL THE BEST KHIMARS(SP) SMH CLOWN MOVE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:00 +0000", "from_user": "old_darthsheelf", "from_user_id": 251783005, "from_user_id_str": "251783005", "from_user_name": "hannaH Rowton", "geo": null, "id": 148834987205079040, "id_str": "148834987205079041", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677903474/santa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677903474/santa_normal.jpg", "source": "<a href="http://batcomputer.heroku.com" rel="nofollow">Batcomputer</a>", "text": "RT @God_Damn_Batman: Anyone know how to get blood and white clown makeup stains out of tri-weave titanium-dipped Kevlar?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:51 +0000", "from_user": "ChiTownGuevara", "from_user_id": 206855235, "from_user_id_str": "206855235", "from_user_name": "S. Ali", "geo": null, "id": 148834949674434560, "id_str": "148834949674434561", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693320784/IMG-20111213-00140_ImitateHDR_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693320784/IMG-20111213-00140_ImitateHDR_1_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@mechacontext @Saadath @rizwan_k @Imad_Shamsuddin down like a clown with an upside down frown", "to_user": "mechacontext", "to_user_id": 245679184, "to_user_id_str": "245679184", "to_user_name": "Faraaz Saiduzzaman", "in_reply_to_status_id": 148833819686998000, "in_reply_to_status_id_str": "148833819686998017"}, +{"created_at": "Mon, 19 Dec 2011 18:39:47 +0000", "from_user": "Seeyalatta", "from_user_id": 228563311, "from_user_id_str": "228563311", "from_user_name": "Jalila ", "geo": null, "id": 148834930997211140, "id_str": "148834930997211138", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1690102282/1323553184135_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690102282/1323553184135_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Finally watched 'Laugh At My Pain\" Kevin Hart is a clown !!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:42 +0000", "from_user": "atomicrocket", "from_user_id": 156154995, "from_user_id_str": "156154995", "from_user_name": "Jim Milligan", "geo": null, "id": 148834908515737600, "id_str": "148834908515737600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/994663631/fop1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/994663631/fop1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@AgentFoo It's like someone took a clown car, filled it up with cute, and then blew it up all over my heart.", "to_user": "AgentFoo", "to_user_id": 14530209, "to_user_id_str": "14530209", "to_user_name": "Foo", "in_reply_to_status_id": 148833969813729280, "in_reply_to_status_id_str": "148833969813729282"} +, +{"created_at": "Mon, 19 Dec 2011 18:39:51 +0000", "from_user": "ChiTownGuevara", "from_user_id": 206855235, "from_user_id_str": "206855235", "from_user_name": "S. Ali", "geo": null, "id": 148834949674434560, "id_str": "148834949674434561", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693320784/IMG-20111213-00140_ImitateHDR_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693320784/IMG-20111213-00140_ImitateHDR_1_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@mechacontext @Saadath @rizwan_k @Imad_Shamsuddin down like a clown with an upside down frown", "to_user": "mechacontext", "to_user_id": 245679184, "to_user_id_str": "245679184", "to_user_name": "Faraaz Saiduzzaman", "in_reply_to_status_id": 148833819686998000, "in_reply_to_status_id_str": "148833819686998017"}, +{"created_at": "Mon, 19 Dec 2011 18:39:47 +0000", "from_user": "Seeyalatta", "from_user_id": 228563311, "from_user_id_str": "228563311", "from_user_name": "Jalila ", "geo": null, "id": 148834930997211140, "id_str": "148834930997211138", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1690102282/1323553184135_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690102282/1323553184135_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Finally watched 'Laugh At My Pain\" Kevin Hart is a clown !!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:42 +0000", "from_user": "atomicrocket", "from_user_id": 156154995, "from_user_id_str": "156154995", "from_user_name": "Jim Milligan", "geo": null, "id": 148834908515737600, "id_str": "148834908515737600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/994663631/fop1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/994663631/fop1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@AgentFoo It's like someone took a clown car, filled it up with cute, and then blew it up all over my heart.", "to_user": "AgentFoo", "to_user_id": 14530209, "to_user_id_str": "14530209", "to_user_name": "Foo", "in_reply_to_status_id": 148833969813729280, "in_reply_to_status_id_str": "148833969813729282"}, +{"created_at": "Mon, 19 Dec 2011 18:39:35 +0000", "from_user": "C_Harris82", "from_user_id": 43046446, "from_user_id_str": "43046446", "from_user_name": "Carl Harris", "geo": null, "id": 148834882003546100, "id_str": "148834882003546112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1644928367/rozel_photo_shoot_2012_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644928367/rozel_photo_shoot_2012_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@540Boss lmao u a clown!.....ima be dyin when we get back", "to_user": "540Boss", "to_user_id": 170098452, "to_user_id_str": "170098452", "to_user_name": "Davie Crockett \\u2714", "in_reply_to_status_id": 148834187124809730, "in_reply_to_status_id_str": "148834187124809729"}, +{"created_at": "Mon, 19 Dec 2011 18:39:35 +0000", "from_user": "Kristanjqr", "from_user_id": 431735186, "from_user_id_str": "431735186", "from_user_name": "Kristan Bate", "geo": null, "id": 148834880812367870, "id_str": "148834880812367872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681103169/jugpckq3po_128720590_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681103169/jugpckq3po_128720590_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Insane Clown Posse: Juggalo Championshit Wrestling, Vol. 1: JCW VOLUME 1 - DVD Movie http://t.co/Lb7LUgJn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:34 +0000", "from_user": "stephenpocock", "from_user_id": 272460067, "from_user_id_str": "272460067", "from_user_name": "Stephen Pocock", "geo": null, "id": 148834874957119500, "id_str": "148834874957119490", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1530375189/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1530375189/twitter_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "That's it! I'm going to clown college", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:27 +0000", "from_user": "BWinning1", "from_user_id": 400465023, "from_user_id_str": "400465023", "from_user_name": "The Alpha...", "geo": null, "id": 148834846762999800, "id_str": "148834846762999808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689858011/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689858011/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@dirtyjeeper 20 bud lights and I found myself waking up on my porch wearing only clown shoes and a jock strap made out of a tube sock.", "to_user": "dirtyjeeper", "to_user_id": 150503949, "to_user_id_str": "150503949", "to_user_name": "zevon wornski", "in_reply_to_status_id": 148833664917176320, "in_reply_to_status_id_str": "148833664917176320"}, +{"created_at": "Mon, 19 Dec 2011 18:39:25 +0000", "from_user": "XsemMylife", "from_user_id": 317353095, "from_user_id_str": "317353095", "from_user_name": "Semmy van den Bergh", "geo": null, "id": 148834839792058370, "id_str": "148834839792058368", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685883159/IMG01567-20111210-2348_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685883159/IMG01567-20111210-2348_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@koenbigmeloen OMFGGGG AAAH EEN CLOWN IK SCHOK ME DOOOOD ;O #BANGVOORCLOWNS #LIJKTTOCHNIETOPTHAMAR:$?", "to_user": "koenbigmeloen", "to_user_id": 323883877, "to_user_id_str": "323883877", "to_user_name": "koenbigmeloen", "in_reply_to_status_id": 148833796786094080, "in_reply_to_status_id_str": "148833796786094080"}, +{"created_at": "Mon, 19 Dec 2011 18:39:25 +0000", "from_user": "imTHEish21", "from_user_id": 377141662, "from_user_id_str": "377141662", "from_user_name": "Ishhh \\u270C", "geo": null, "id": 148834837409697800, "id_str": "148834837409697792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1671051040/imTHEish21_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671051040/imTHEish21_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:17 +0000", "from_user": "liyahngoma", "from_user_id": 241678549, "from_user_id_str": "241678549", "from_user_name": "Liyah N'goma", "geo": null, "id": 148834805809819650, "id_str": "148834805809819650", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1658602231/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658602231/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "je suis triste comme le clown Zavatta #Docgyneco", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:16 +0000", "from_user": "Martayq", "from_user_id": 395410417, "from_user_id_str": "395410417", "from_user_name": "Sheridan Marta", "geo": null, "id": 148834801489686530, "id_str": "148834801489686528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1599646006/MFC-2529_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599646006/MFC-2529_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Insane Clown Posse - Bmr Characters Adult T-Shirt In Black, Size: Large, Color: Black: Insane Clown Posse - Bmr ... http://t.co/Mp37xmft", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:13 +0000", "from_user": "yasminaaax", "from_user_id": 124737432, "from_user_id_str": "124737432", "from_user_name": "Yasmin\\u00E0\\u00E0\\u00E0 !", "geo": null, "id": 148834787480707070, "id_str": "148834787480707073", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695253656/webcam-toy-photo11_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695253656/webcam-toy-photo11_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @DaphneJ_: Ik heb ze trouwens al gevonden hoor=$ - clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:10 +0000", "from_user": "marasdesserts", "from_user_id": 30338827, "from_user_id_str": "30338827", "from_user_name": "Mara's Cafe", "geo": null, "id": 148834776906858500, "id_str": "148834776906858498", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/326234978/logo_200_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/326234978/logo_200_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Tweedles the Clown entertains at Mara's every Monday night. Join us from 6-8 pm for balloon art fun and... http://t.co/JMkMG9Q4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:05 +0000", "from_user": "SqueezYOnipples", "from_user_id": 231260195, "from_user_id_str": "231260195", "from_user_name": "Yasming Bullock", "geo": null, "id": 148834755171987460, "id_str": "148834755171987456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693699073/314650_280422745323111_100000661635349_939212_208009364_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693699073/314650_280422745323111_100000661635349_939212_208009364_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@_longJONsilvers @billy_baddaz shut yo ass up ... so they wack how ? I never associated myself with a clown ass nigga until you came. thanks", "to_user": "_longJONsilvers", "to_user_id": 292928030, "to_user_id_str": "292928030", "to_user_name": "jontaz$$$moore", "in_reply_to_status_id": 148834421309575170, "in_reply_to_status_id_str": "148834421309575168"}, +{"created_at": "Mon, 19 Dec 2011 18:39:02 +0000", "from_user": "AlexTheKiddd", "from_user_id": 38238552, "from_user_id_str": "38238552", "from_user_name": "Alex Dixon", "geo": null, "id": 148834742744264700, "id_str": "148834742744264705", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1538795497/mePNG_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538795497/mePNG_normal.PNG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@chrislen123 @robmorris85 he might try it now uve said that u clown!!!lol U joker #NotBotheredStar #ScrapingTheBarrell", "to_user": "chrislen123", "to_user_id": 196117583, "to_user_id_str": "196117583", "to_user_name": "Chris Lenehan", "in_reply_to_status_id": 148833023658438660, "in_reply_to_status_id_str": "148833023658438656"}, +{"created_at": "Mon, 19 Dec 2011 18:38:55 +0000", "from_user": "Insanely_yours", "from_user_id": 373522952, "from_user_id_str": "373522952", "from_user_name": "Lisa j.", "geo": null, "id": 148834712750796800, "id_str": "148834712750796800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701312093/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701312093/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@MEG_nificenttt yea same here :(.. He's a clown do you want him lol .. He's currently spinning around talking about I'm dizzy lol", "to_user": "MEG_nificenttt", "to_user_id": 117238713, "to_user_id_str": "117238713", "to_user_name": "megan", "in_reply_to_status_id": 148834307421634560, "in_reply_to_status_id_str": "148834307421634560"}, +{"created_at": "Mon, 19 Dec 2011 18:38:43 +0000", "from_user": "HarryantoBuasan", "from_user_id": 177650181, "from_user_id_str": "177650181", "from_user_name": "Harryanto Buasan", "geo": null, "id": 148834663547408400, "id_str": "148834663547408384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680416710/331096669_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680416710/331096669_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Hey @eugeniabellfb don't be sad. I am your Clown and we are happy family :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:41 +0000", "from_user": "lirch44", "from_user_id": 407487984, "from_user_id_str": "407487984", "from_user_name": "James Roberts", "geo": null, "id": 148834653862756350, "id_str": "148834653862756354", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702557717/shanna_097_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702557717/shanna_097_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Check this video out -- Insane Clown Posse - Piggy Pie (UnCensored) http://t.co/il5AFBSi via @youtube", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:40 +0000", "from_user": "Mr_Basajj", "from_user_id": 266431829, "from_user_id_str": "266431829", "from_user_name": "allan basa", "geo": null, "id": 148834648800231420, "id_str": "148834648800231425", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670237911/2011-11-14_20-_20End_20of_20Term_20Adventures-17_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670237911/2011-11-14_20-_20End_20of_20Term_20Adventures-17_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@remythequill: says the clown looking like a hobo washed up from the grimy streets of rwanda...", "to_user": "remythequill", "to_user_id": 67092269, "to_user_id_str": "67092269", "to_user_name": "R\\u00E9my, The Quill ", "in_reply_to_status_id": 148834276035674100, "in_reply_to_status_id_str": "148834276035674112"}, +{"created_at": "Mon, 19 Dec 2011 18:38:38 +0000", "from_user": "LiaSkevofilax", "from_user_id": 33043613, "from_user_id_str": "33043613", "from_user_name": "Lia Skevofilax", "geo": null, "id": 148834641225326600, "id_str": "148834641225326593", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692399326/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692399326/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#PetPeeve when guys clown on other guys and focus on nothing but their clothes. Get new material, bro.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:25 +0000", "from_user": "SqueezYOnipples", "from_user_id": 231260195, "from_user_id_str": "231260195", "from_user_name": "Yasming Bullock", "geo": null, "id": 148834587110424580, "id_str": "148834587110424577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693699073/314650_280422745323111_100000661635349_939212_208009364_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693699073/314650_280422745323111_100000661635349_939212_208009364_n_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @_longJONsilvers: \\u00AB@SqueezYOnipples @billy_baddaz & tellem bout all dem clown ass fake ass soft ass wacc ass niggas u talk to up hea,on da phone,Facebook etc.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:22 +0000", "from_user": "Lyl_BootySussie", "from_user_id": 270567598, "from_user_id_str": "270567598", "from_user_name": "AziaDoesIt\\uE314\\uE035\\uE113", "geo": null, "id": 148834575026630660, "id_str": "148834575026630656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1639265458/Lyl_BootySussie_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639265458/Lyl_BootySussie_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "I wanna clown wit Jabian right now but he at work! Blahhh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:22 +0000", "from_user": "ComebacksFTW", "from_user_id": 437257363, "from_user_id_str": "437257363", "from_user_name": "Dr.Dbag", "geo": null, "id": 148834572963029000, "id_str": "148834572963028992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": null, "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:14 +0000", "from_user": "Scream_Dro", "from_user_id": 323286687, "from_user_id_str": "323286687", "from_user_name": "p e y t o n. \\u30C4", "geo": null, "id": 148834542092959740, "id_str": "148834542092959744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700800838/401149_10150417333291053_715066052_8862572_7179937_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700800838/401149_10150417333291053_715066052_8862572_7179937_n_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@FuckYoSIDELINES you got ISS for two days for tweeting?! Clown ass!", "to_user": "FuckYoSIDELINES", "to_user_id": 315538773, "to_user_id_str": "315538773", "to_user_name": "#BitchImPRETTY.", "in_reply_to_status_id": 148834029385433100, "in_reply_to_status_id_str": "148834029385433089"}, +{"created_at": "Mon, 19 Dec 2011 18:38:13 +0000", "from_user": "SauceDaddy31", "from_user_id": 216880472, "from_user_id_str": "216880472", "from_user_name": "Dan Sherman", "geo": null, "id": 148834538926260220, "id_str": "148834538926260225", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1616692060/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616692060/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@CammyWammy35 I can't wait to clown you today!!!", "to_user": "CammyWammy35", "to_user_id": 384996839, "to_user_id_str": "384996839", "to_user_name": "nicholas cameron", "in_reply_to_status_id": 148832893563699200, "in_reply_to_status_id_str": "148832893563699200"}, +{"created_at": "Mon, 19 Dec 2011 18:38:10 +0000", "from_user": "shaddnastyy", "from_user_id": 169972877, "from_user_id_str": "169972877", "from_user_name": "\\u0279\\u01DD\\u026F\\u026F\\u0131\\u028DS u\\u01DDpp\\u0250\\u0265S", "geo": null, "id": 148834525152157700, "id_str": "148834525152157697", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681746473/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681746473/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:10 +0000", "from_user": "Imdat__FOOL", "from_user_id": 249964239, "from_user_id_str": "249964239", "from_user_name": "Mo'_Money!!!", "geo": null, "id": 148834522799153150, "id_str": "148834522799153152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1678836924/my_broo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678836924/my_broo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "swear i ilmost followed dis clown dat supposed to be a yunger verson of my manz...lls", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:09 +0000", "from_user": "ComedyByTuRae", "from_user_id": 134420428, "from_user_id_str": "134420428", "from_user_name": "Tu Rae", "geo": null, "id": 148834518827147260, "id_str": "148834518827147264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1612538464/TuRaePromo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612538464/TuRaePromo_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Money, that's the loser's bracket!!lmao!->RT @ClintColey: @ComedyByTuRae I'm in the playoffs and I just offed this clown----->@Evan Polk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:08 +0000", "from_user": "WillardDinero", "from_user_id": 281059053, "from_user_id_str": "281059053", "from_user_name": "Dat Nigga Will.....", "geo": null, "id": 148834517740822530, "id_str": "148834517740822530", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1665909090/253575_10150287951644913_506094912_8818696_3895506_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665909090/253575_10150287951644913_506094912_8818696_3895506_n_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @_TheOtherKevin \"Silly Ass Clown\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:05 +0000", "from_user": "ayyeelizabetha", "from_user_id": 375244767, "from_user_id_str": "375244767", "from_user_name": "Elizabeth Aranda\\u2654", "geo": null, "id": 148834505489264640, "id_str": "148834505489264640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1638227790/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638227790/me_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "My mom told me i looked like a clown cos of my eyeliner... oh ok. -______-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:04 +0000", "from_user": "_MarcoZooAnimal", "from_user_id": 39106856, "from_user_id_str": "39106856", "from_user_name": "Marco got em biteing", "geo": null, "id": 148834497729798140, "id_str": "148834497729798144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1666699310/Kye0QILu_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666699310/Kye0QILu_normal", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @DewwBaby_Mook: @_MarcoZooAnimal I'm Hippryy Ii Tld Yhu Lil Brah Its Gettin Cold Ndd Doin Da Summer Wen Yhu Be Att My Joint Pick Yhu Set Ndd No Clown Niggas", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:59 +0000", "from_user": "NeiceyRene", "from_user_id": 29270481, "from_user_id_str": "29270481", "from_user_name": "NeiceyRene\\uE329\\uE41C\\uE31C\\uE31D", "geo": null, "id": 148834479031582720, "id_str": "148834479031582722", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695562618/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695562618/image_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @24stSlickTalker: Sum clown jus ask me how many calories was in the salad dressing. I jus pointed to the sign ... http://t.co/BCKZFqv6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:57 +0000", "from_user": "GrapeFKNJelly", "from_user_id": 143740188, "from_user_id_str": "143740188", "from_user_name": "Chocolate!!!", "geo": null, "id": 148834469133037570, "id_str": "148834469133037569", "iso_language_code": "vi", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701769739/photo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701769739/photo_normal.JPG", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@JuanHusane look at chu phone clown", "to_user": "JuanHusane", "to_user_id": 139584322, "to_user_id_str": "139584322", "to_user_name": "Mr.Deez", "in_reply_to_status_id": 148832352494293000, "in_reply_to_status_id_str": "148832352494292992"}, +{"created_at": "Mon, 19 Dec 2011 18:37:45 +0000", "from_user": "_longJONsilvers", "from_user_id": 292928030, "from_user_id_str": "292928030", "from_user_name": "jontaz$$$moore", "geo": null, "id": 148834421309575170, "id_str": "148834421309575168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1586442056/taz2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586442056/taz2_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u00AB@SqueezYOnipples @billy_baddaz & tellem bout all dem clown ass fake ass soft ass wacc ass niggas u talk to up hea,on da phone,Facebook etc.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:38 +0000", "from_user": "miss_AmazinAsh", "from_user_id": 420844860, "from_user_id_str": "420844860", "from_user_name": "Ashley", "geo": null, "id": 148834389923594240, "id_str": "148834389923594240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701844308/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701844308/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Two clown ass niggas got using all these bad words diz morning an I dnt do dat", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:36 +0000", "from_user": "BrookBakMountin", "from_user_id": 224152327, "from_user_id_str": "224152327", "from_user_name": "Brooke knows best.", "geo": null, "id": 148834383888003070, "id_str": "148834383888003072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1669082741/securedownload_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669082741/securedownload_normal.jpeg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "lmaoo :pRT @OhQueenMonroe: brooke is a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:36 +0000", "from_user": "CraziSexiCool17", "from_user_id": 382516066, "from_user_id_str": "382516066", "from_user_name": "\\u0118\\u0157\\u012F\\u014B \\u0136\\u0119\\u014Bd\\u0105\\u026D\\u026D", "geo": null, "id": 148834380457050100, "id_str": "148834380457050112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685250271/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685250271/image_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", "text": "Negro please aint nobody on u clown lmaoooo RT @ThaRealVonte Man GTF off me Ahaha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:35 +0000", "from_user": "YoungVanTunechi", "from_user_id": 113469340, "from_user_id_str": "113469340", "from_user_name": "Je'vante McIntosh", "geo": null, "id": 148834379102298100, "id_str": "148834379102298112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1631188445/IMG00162-20111107-2222_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631188445/IMG00162-20111107-2222_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@nEikO11 dwl she a clown man", "to_user": "nEikO11", "to_user_id": 151742538, "to_user_id_str": "151742538", "to_user_name": "Neiko Ozzii Dennis", "in_reply_to_status_id": 148833963153162240, "in_reply_to_status_id_str": "148833963153162240"}, +{"created_at": "Mon, 19 Dec 2011 18:37:34 +0000", "from_user": "AlexAngbo", "from_user_id": 91622801, "from_user_id_str": "91622801", "from_user_name": "AlexAlexander", "geo": null, "id": 148834371456086000, "id_str": "148834371456086018", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697688715/jj_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697688715/jj_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@NoraOliix meuuuh noon sa me plait je dis. tai pa mon clown tai tantie 12 enfants :D", "to_user": "NoraOliix", "to_user_id": 330053344, "to_user_id_str": "330053344", "to_user_name": "N'ora Roxanne", "in_reply_to_status_id": 148833917095510000, "in_reply_to_status_id_str": "148833917095510016"}, +{"created_at": "Mon, 19 Dec 2011 18:37:33 +0000", "from_user": "MA_Albloushi", "from_user_id": 256851165, "from_user_id_str": "256851165", "from_user_name": "Mohamed Albloushi", "geo": null, "id": 148834370134872060, "id_str": "148834370134872064", "iso_language_code": "ar", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696564191/166736a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696564191/166736a_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Poormanfree: \\u0627\\u0644\\u0634\\u0627\\u062A\\u0645 \\u0645\\u062B\\u0644 \\u0627\\u0644\\u062F\\u062E\\u0627\\u0646 \\u0627\\u0644\\u0633\\u064A\\u0626 \\u0644\\u062E\\u0634\\u0628 \\u0627\\u0644\\u0623\\u0634\\u062E\\u0631(\\u0627\\u0644\\u0639\\u0634\\u0631)\\u0641\\u0647\\u0648 \\u064A\\u062D\\u062A\\u0631\\u0642 \\u0623\\u0648\\u0644\\u0627 \\u0628\\u063A\\u064A\\u0638\\u0647 \\u062B\\u0645 \\u064A\\u0646\\u0641\\u062B \\u062F\\u062E\\u0627\\u0646\\u0647 \\u0628\\u0627\\u0644\\u0633\\u0628\\u0627\\u0628\\u060C\\u0641\\u062F\\u0639\\u0629 \\u064A\\u062D\\u062A\\u0631\\u0642 \\u0648\\u0644\\u0627\\u062A\\u0643\\u062A\\u0631\\u062B\\n#UAE #CLOWN #polite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:15 +0000", "from_user": "ross_pearle", "from_user_id": 23127145, "from_user_id_str": "23127145", "from_user_name": "Ross Pearle", "geo": null, "id": 148834290774454270, "id_str": "148834290774454272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1654450272/Charlie_George_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654450272/Charlie_George_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Is this bant? Please tell me people don't associate this clown with football and buy the DVD? #mug #bargainbucket http://t.co/Mfytn8qP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:13 +0000", "from_user": "_ShAwdYSh00teR", "from_user_id": 253668593, "from_user_id_str": "253668593", "from_user_name": "Just Call me BOO!!!!", "geo": null, "id": 148834283438616580, "id_str": "148834283438616576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1663052577/ErOBQnIm_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663052577/ErOBQnIm_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "This nigha gone say \"das my homegurl, she don't even like dark skinned nighas\" bitch neither did i ... SHUTUP! LMAO CLOWN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:10 +0000", "from_user": "LevyDhinze", "from_user_id": 406679804, "from_user_id_str": "406679804", "from_user_name": "Levi Hinze", "geo": null, "id": 148834272244023300, "id_str": "148834272244023296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1667451072/gIH9rG01_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667451072/gIH9rG01_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "well come now people lets clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:01 +0000", "from_user": "PeacePineapple", "from_user_id": 388775050, "from_user_id_str": "388775050", "from_user_name": "Georgina ", "geo": null, "id": 148834234260394000, "id_str": "148834234260393984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1583341720/Joe_Cool_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583341720/Joe_Cool_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Krusty the Clown \"My house is dirty: buy me a clean one\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:57 +0000", "from_user": "Flips_Hair", "from_user_id": 228164354, "from_user_id_str": "228164354", "from_user_name": "\\u2665 Shanise \\u2665", "geo": null, "id": 148834220268191740, "id_str": "148834220268191745", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1647345020/re_re_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647345020/re_re_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Bxtch Arguin' On Twitter Dnt Make It No Better Lmfao.! #Clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:55 +0000", "from_user": "Barelist", "from_user_id": 54576377, "from_user_id_str": "54576377", "from_user_name": "Barelist", "geo": null, "id": 148834211468546050, "id_str": "148834211468546049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/578169466/KaydenBL_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/578169466/KaydenBL_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SlyinSC man I hope not... him and the eel were hanging out last night... think the clown feels the tank is his lol", "to_user": "SlyinSC", "to_user_id": 397023397, "to_user_id_str": "397023397", "to_user_name": "Sly in SC", "in_reply_to_status_id": 148831795738189820, "in_reply_to_status_id_str": "148831795738189824"}, +{"created_at": "Mon, 19 Dec 2011 18:36:48 +0000", "from_user": "A_MrBoombastic", "from_user_id": 29627355, "from_user_id_str": "29627355", "from_user_name": "Juan Pablo ", "geo": null, "id": 148834182137774080, "id_str": "148834182137774080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691325323/331447298_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691325323/331447298_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Naomi.sub RT @dotNaomi: Every now and then you have to tell someone - if your argument was actually relevant it would still be weak, clown!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:33 +0000", "from_user": "757nickwangVA", "from_user_id": 238733755, "from_user_id_str": "238733755", "from_user_name": "nick wengler", "geo": null, "id": 148834115544821760, "id_str": "148834115544821762", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1591923982/Snapshot_20110710_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591923982/Snapshot_20110710_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "i was the class clown that always had you laughing", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:20 +0000", "from_user": "husshyourlipss", "from_user_id": 218118108, "from_user_id_str": "218118108", "from_user_name": "AL\\u2206NIS ", "geo": null, "id": 148834064500129800, "id_str": "148834064500129792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1685048696/kristen_stewart_vampire_by_xxcrisiscorefreakxx-d349q0j_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685048696/kristen_stewart_vampire_by_xxcrisiscorefreakxx-d349q0j_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "\"We want heavy, we wanted sick, and we wanted a disease-ridden thought process.\" - CLOWN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:18 +0000", "from_user": "fancyballa3", "from_user_id": 343850079, "from_user_id_str": "343850079", "from_user_name": "dominique", "geo": null, "id": 148834056631623680, "id_str": "148834056631623682", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1689421107/d_001_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689421107/d_001_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@JewlzBG lmao ur a clown", "to_user": "JewlzBG", "to_user_id": 157307255, "to_user_id_str": "157307255", "to_user_name": "PacK Man K.O.D", "in_reply_to_status_id": 148833533958430720, "in_reply_to_status_id_str": "148833533958430720"}, +{"created_at": "Mon, 19 Dec 2011 18:36:04 +0000", "from_user": "re_glz22", "from_user_id": 306247924, "from_user_id_str": "306247924", "from_user_name": "Re Gonzalez", "geo": null, "id": 148833993901604860, "id_str": "148833993901604865", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1415959227/yop_servicios_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1415959227/yop_servicios_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@andy_farah happy beer day!!! disfruta tu dia como clown!!! :o) te quierooo!!!", "to_user": "andy_farah", "to_user_id": 101157174, "to_user_id_str": "101157174", "to_user_name": "Andy Farah"}, +{"created_at": "Mon, 19 Dec 2011 18:36:02 +0000", "from_user": "MeessMann", "from_user_id": 159091688, "from_user_id_str": "159091688", "from_user_name": "Mees Lebbink", "geo": null, "id": 148833989203988480, "id_str": "148833989203988480", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698445226/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698445226/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Soms ben je lelijk, soms knap, maar zonder die make up en kleren ben je een clown die vergeet te acteren", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:00 +0000", "from_user": "___Boyd", "from_user_id": 236656000, "from_user_id_str": "236656000", "from_user_name": "OutHere_Solo", "geo": null, "id": 148833978055524350, "id_str": "148833978055524352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680240796/IMG0741_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680240796/IMG0741_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "Clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:58 +0000", "from_user": "ShortieDo0wOp", "from_user_id": 32163324, "from_user_id_str": "32163324", "from_user_name": "Shortie McBoobs", "geo": null, "id": 148833972376453120, "id_str": "148833972376453121", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692290188/471539482_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692290188/471539482_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "I think if I didn't give head . My boyfriend would break up with me & clown me >.<", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:57 +0000", "from_user": "Lundy1970", "from_user_id": 89218989, "from_user_id_str": "89218989", "from_user_name": "Tom Lundberg", "geo": null, "id": 148833965996904450, "id_str": "148833965996904448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1332111954/Tom___Norm_2008_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1332111954/Tom___Norm_2008_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iowahawkblog: First Al Davis, then Kim Jong-Il; bad year for insane clown-haired dictators in novelty Elvis sunglasses", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:50 +0000", "from_user": "CrackLand_Dot", "from_user_id": 289623373, "from_user_id_str": "289623373", "from_user_name": "Gramz F.H.G CEO ", "geo": null, "id": 148833938780078080, "id_str": "148833938780078080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1598125821/profile_image_1319130352793_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598125821/profile_image_1319130352793_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "Boa u a swagga jacka... I really think u wana b me clown... And I aint got shit... (insider)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:46 +0000", "from_user": "Lilkim_Navy", "from_user_id": 270147709, "from_user_id_str": "270147709", "from_user_name": "IRS FAMILY ", "geo": null, "id": 148833920333512700, "id_str": "148833920333512704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693718126/rihanna-hard2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693718126/rihanna-hard2_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@ihate2minaj @guillotineMERCE meeka y rihanna got this Ronald isley clone clown pressed", "to_user": "ihate2minaj", "to_user_id": 70015649, "to_user_id_str": "70015649", "to_user_name": "Mz. Meeka\\u2122 ", "in_reply_to_status_id": 148832060264558600, "in_reply_to_status_id_str": "148832060264558593"}, +{"created_at": "Mon, 19 Dec 2011 18:35:45 +0000", "from_user": "NoraOliix", "from_user_id": 330053344, "from_user_id_str": "330053344", "from_user_name": "N'ora Roxanne", "geo": null, "id": 148833917095510000, "id_str": "148833917095510016", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701070568/IMG-20111218-00447_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701070568/IMG-20111218-00447_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@AlexAngbo C'est moi ton clown non ?", "to_user": "AlexAngbo", "to_user_id": 91622801, "to_user_id_str": "91622801", "to_user_name": "AlexAlexander", "in_reply_to_status_id": 148833683133038600, "in_reply_to_status_id_str": "148833683133038592"}, +{"created_at": "Mon, 19 Dec 2011 18:35:33 +0000", "from_user": "arlistotle", "from_user_id": 81689989, "from_user_id_str": "81689989", "from_user_name": "Arlingthon Sillie", "geo": null, "id": 148833867481096200, "id_str": "148833867481096192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1543294508/IMG00669-20110829-1541_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543294508/IMG00669-20110829-1541_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"@BUbul4sh1: I don't wanna be the clown tho\"< but you areeeee..... Bo mes ta buska swa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:24 +0000", "from_user": "VickneshRai", "from_user_id": 96722814, "from_user_id_str": "96722814", "from_user_name": "Priyanka Chopra Fan\\u2611", "geo": null, "id": 148833830265032700, "id_str": "148833830265032704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696782582/Photo_on_2011-12-17_at_01.09_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696782582/Photo_on_2011-12-17_at_01.09_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@nammyluvzranbir ROFL XD you clown. Oh well, just tell him love from singapore & how he feels about singapore :)", "to_user": "nammyluvzranbir", "to_user_id": 159237191, "to_user_id_str": "159237191", "to_user_name": "Namrita \\u2605", "in_reply_to_status_id": 148833580276121600, "in_reply_to_status_id_str": "148833580276121600"}, +{"created_at": "Mon, 19 Dec 2011 18:35:23 +0000", "from_user": "RollSUNNYUp", "from_user_id": 137847953, "from_user_id_str": "137847953", "from_user_name": "SOULJA SUNNY", "geo": null, "id": 148833825059913730, "id_str": "148833825059913728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696965160/RollSUNNYUp_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696965160/RollSUNNYUp_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @Dylan_sheCOLE: @RollSUNNYUp jtfo lmfao you a clown man but thankss , *rolls up blunt put it ina air rise it to the SUN-NY*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:22 +0000", "from_user": "dotNaomi", "from_user_id": 19739290, "from_user_id_str": "19739290", "from_user_name": "Naomi", "geo": null, "id": 148833817707282430, "id_str": "148833817707282433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685786896/IMG_20111203_024851_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685786896/IMG_20111203_024851_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Every now and then you have to tell someone - if your argument was actually relevant it would still be weak, clown!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:21 +0000", "from_user": "chann_", "from_user_id": 26253490, "from_user_id_str": "26253490", "from_user_name": "Chann S", "geo": +{"coordinates": [39.2879,-76.731], "type": "Point"}, "id": 148833815069065200, "id_str": "148833815069065218", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668645867/2OdgIf8p_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668645867/2OdgIf8p_normal", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "This dude is really a fuckin clown!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:16 +0000", "from_user": "diekinab", "from_user_id": 230124611, "from_user_id_str": "230124611", "from_user_name": "dieter kind", "geo": null, "id": 148833795552976900, "id_str": "148833795552976897", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Clown Topa,Kinderschminken,Spa\\u00DF und Zauberei: Berlin | Schenken sie sich und ihre(n) Kind(ern) einen sch\\u00F6nen Tag... http://t.co/O4P2ZrhP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:14 +0000", "from_user": "LovelyLourdes22", "from_user_id": 173691157, "from_user_id_str": "173691157", "from_user_name": "Pascale Lourdes Anty", "geo": null, "id": 148833785612480500, "id_str": "148833785612480512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695350237/Snapshot_20111215_21_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695350237/Snapshot_20111215_21_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "omg lol this man is a clown!!! smh Haitians lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:10 +0000", "from_user": "MotherFuckinJay", "from_user_id": 400240155, "from_user_id_str": "400240155", "from_user_name": "MotherFuckinJason", "geo": null, "id": 148833770995326980, "id_str": "148833770995326976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692193980/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692193980/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "RT @Juggalo001: Insane Clown Posse - Its All Over http://t.co/A9C0tIrt via @youtube\\u201D Here you go you fuckin haters. This is tha shit! #fuckoff", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:09 +0000", "from_user": "UHOH_GORGEOUS", "from_user_id": 302764184, "from_user_id_str": "302764184", "from_user_name": "Your Main Attraction", "geo": null, "id": 148833764183785470, "id_str": "148833764183785472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699762195/ColorTouch-1324180384631_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699762195/ColorTouch-1324180384631_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "lmaoooo your a clown \\u00AB@AOLiss_01 Dip & dots almost caused an earthquake.\\u00BB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:08 +0000", "from_user": "ClintColey", "from_user_id": 28473477, "from_user_id_str": "28473477", "from_user_name": "Clint Coley", "geo": null, "id": 148833759398076400, "id_str": "148833759398076417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698636157/ClintColey_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698636157/ClintColey_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@ComedyByTuRae I'm in the playoffs and I just offed this clown----->@EvanPolk", "to_user": "ComedyByTuRae", "to_user_id": 134420428, "to_user_id_str": "134420428", "to_user_name": "Tu Rae", "in_reply_to_status_id": 148833388881657860, "in_reply_to_status_id_str": "148833388881657857"}, +{"created_at": "Mon, 19 Dec 2011 18:35:05 +0000", "from_user": "russell_ganesh", "from_user_id": 94078531, "from_user_id_str": "94078531", "from_user_name": "Russell", "geo": null, "id": 148833747805016060, "id_str": "148833747805016064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699389224/384944_200762160011763_100002339418162_432156_813883729_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699389224/384944_200762160011763_100002339418162_432156_813883729_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@itskristal if I wanted to date a clown or my aunt,I would. :p", "to_user": "itskristal", "to_user_id": 20859557, "to_user_id_str": "20859557", "to_user_name": "Kristal Ho", "in_reply_to_status_id": 148832504235819000, "in_reply_to_status_id_str": "148832504235819008"}, +{"created_at": "Mon, 19 Dec 2011 18:35:02 +0000", "from_user": "MichaelMy666rs", "from_user_id": 319227551, "from_user_id_str": "319227551", "from_user_name": "Michael My666rs", "geo": null, "id": 148833735486341120, "id_str": "148833735486341121", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1651160773/babessgif_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651160773/babessgif_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "*mikey throws down juice box and steps on it...picks up machete...pulls the clown mask down...*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:58 +0000", "from_user": "MANOSCLOWN", "from_user_id": 286277822, "from_user_id_str": "286277822", "from_user_name": "M MANOS CLOWN", "geo": null, "id": 148833720571396100, "id_str": "148833720571396096", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1348183937/fotis_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1348183937/fotis_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I uploaded a @YouTube video http://t.co/4LCIUYhL ministerio manos clown la importancia de el perd\\u00F3n", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:49 +0000", "from_user": "rob_kadlec", "from_user_id": 20522203, "from_user_id_str": "20522203", "from_user_name": "Rob Kadlec", "geo": null, "id": 148833681895735300, "id_str": "148833681895735296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/366409317/3rd_place_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/366409317/3rd_place_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iowahawkblog: First Al Davis, then Kim Jong-Il; bad year for insane clown-haired dictators in novelty Elvis sunglasses", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:47 +0000", "from_user": "_SpanishRice", "from_user_id": 54734621, "from_user_id_str": "54734621", "from_user_name": "Jalieee \\u2665", "geo": null, "id": 148833673255469060, "id_str": "148833673255469056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1674380632/004-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674380632/004-1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SirMagic22 @kman_swagg_ Serg, i made the Ron Stoppable comment clown :P", "to_user": "SirMagic22", "to_user_id": 20999626, "to_user_id_str": "20999626", "to_user_name": "Sergio Leeper", "in_reply_to_status_id": 148833396498509820, "in_reply_to_status_id_str": "148833396498509825"}, +{"created_at": "Mon, 19 Dec 2011 18:34:46 +0000", "from_user": "xgreenawaltx", "from_user_id": 348259722, "from_user_id_str": "348259722", "from_user_name": "Hannah Greenawalt", "geo": null, "id": 148833670424313860, "id_str": "148833670424313856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1684622451/Photo_on_2011-12-09_at_19.25__3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684622451/Photo_on_2011-12-09_at_19.25__3_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "@cthug69 is a clown.", "to_user": "CThug69", "to_user_id": 226787508, "to_user_id_str": "226787508", "to_user_name": "corbin da bitch"}, +{"created_at": "Mon, 19 Dec 2011 18:34:43 +0000", "from_user": "BitchsNOPanties", "from_user_id": 189737582, "from_user_id_str": "189737582", "from_user_name": "Shelby FMOT", "geo": null, "id": 148833657258393600, "id_str": "148833657258393600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693871780/shelby_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693871780/shelby_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @SayThaDon: @BitchsNOPanties clown lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:43 +0000", "from_user": "Tyb_AndYoHoe_", "from_user_id": 227726370, "from_user_id_str": "227726370", "from_user_name": "Smack_Daddy_Mezia", "geo": null, "id": 148833657245802500, "id_str": "148833657245802496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702251490/FAHSHO_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702251490/FAHSHO_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @KOedbyLove: i clown too much in public...no shame.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:39 +0000", "from_user": "Astrologyzodiac", "from_user_id": 440694705, "from_user_id_str": "440694705", "from_user_name": "Astrology", "geo": null, "id": 148833639277404160, "id_str": "148833639277404160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702024654/astro_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702024654/astro_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "a SAGITTARIUS child is a little clown,loves greeting people,usually adores animals, asks endless questions, rarely sits still,enjoys company", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:37 +0000", "from_user": "Boopa10_16Bean", "from_user_id": 35249631, "from_user_id_str": "35249631", "from_user_name": "\\u2661 me some BEAN", "geo": null, "id": 148833629227843600, "id_str": "148833629227843584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702215102/2011-12-16_22.51.30-1-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702215102/2011-12-16_22.51.30-1-1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "LMMFAOO. Fucking clown \\u201C@SHH_IMlowKEY Idk if this lady had get pants pulled up to her titties or her titties pulled down to her pants\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:36 +0000", "from_user": "eLWeaverdinchi", "from_user_id": 322365452, "from_user_id_str": "322365452", "from_user_name": "Matthew Weaver", "geo": null, "id": 148833625876602880, "id_str": "148833625876602880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1408837838/Picture_16_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1408837838/Picture_16_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ChuuweeTUS damn that some fucked up shit my dude i remember u talkin bout it a few months back, fuck that clown ass over biter", "to_user": "ChuuweeTUS", "to_user_id": 29798142, "to_user_id_str": "29798142", "to_user_name": "Chez Charlie SHREEM"}, +{"created_at": "Mon, 19 Dec 2011 18:34:34 +0000", "from_user": "ELTigre04", "from_user_id": 35498998, "from_user_id_str": "35498998", "from_user_name": "Tony Nguyen", "geo": null, "id": 148833620327542800, "id_str": "148833620327542784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1601587116/Tony_senior_yr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601587116/Tony_senior_yr_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I Love this bracelet ... Best gift ever so far ??? I think so ... only cause its from this clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:22 +0000", "from_user": "sweetestgirl217", "from_user_id": 229672551, "from_user_id_str": "229672551", "from_user_name": "KeIra Kidd Layton", "geo": null, "id": 148833569047982080, "id_str": "148833569047982080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701572778/HttL81M9_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701572778/HttL81M9_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @monty_luv06: \"@sweetestgirl217: Hit me from the back but don't put your finger in my booty hole....lmao\" Do u have 2 clown on these people site. Lmao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:22 +0000", "from_user": "LibTooTrill", "from_user_id": 265252206, "from_user_id_str": "265252206", "from_user_name": "Liberty Willis", "geo": null, "id": 148833566099390460, "id_str": "148833566099390464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699738614/tumblr_lwbgymgqlt1qdryvy_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699738614/tumblr_lwbgymgqlt1qdryvy_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "@:0) thats my clown face!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:12 +0000", "from_user": "KOedbyLove", "from_user_id": 216531883, "from_user_id_str": "216531883", "from_user_name": "\\u2113auren the \\u2113o rocker", "geo": null, "id": 148833527750864900, "id_str": "148833527750864897", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702486137/meatxmas2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702486137/meatxmas2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "i clown too much in public...no shame.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:12 +0000", "from_user": "RugbyALG", "from_user_id": 417893215, "from_user_id_str": "417893215", "from_user_name": "Flock Gang", "geo": null, "id": 148833526903611400, "id_str": "148833526903611392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699254068/npdpg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699254068/npdpg_normal.jpg", "source": "<a href="http://stone.com/Twittelator" rel="nofollow">Twittelator</a>", "text": "@SmooveALG stay out my mentions rolling up pinner blunts clown shoes", "to_user": "SmooveALG", "to_user_id": 35828840, "to_user_id_str": "35828840", "to_user_name": "G-Wellington", "in_reply_to_status_id": 148832769672347650, "in_reply_to_status_id_str": "148832769672347649"}, +{"created_at": "Mon, 19 Dec 2011 18:34:07 +0000", "from_user": "creativityxplrd", "from_user_id": 59629328, "from_user_id_str": "59629328", "from_user_name": "Creativity Explored", "geo": null, "id": 148833506561241100, "id_str": "148833506561241089", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1467015023/fb_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1467015023/fb_logo_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Remembering Gordon Shepard, CE Studio Artist and beloved clown... http://t.co/spDXfcEh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:58 +0000", "from_user": "BeRanDone", "from_user_id": 120954924, "from_user_id_str": "120954924", "from_user_name": "B. Gillespie", "geo": null, "id": 148833467415789570, "id_str": "148833467415789568", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1242227266/wedding_photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1242227266/wedding_photo_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@bnoonies Lol Bennett is a clown", "to_user": "bnoonies", "to_user_id": 137388511, "to_user_id_str": "137388511", "to_user_name": "BNoone"}, +{"created_at": "Mon, 19 Dec 2011 18:33:57 +0000", "from_user": "miss_AmazinAsh", "from_user_id": 420844860, "from_user_id_str": "420844860", "from_user_name": "Ashley", "geo": null, "id": 148833464240713730, "id_str": "148833464240713728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701844308/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701844308/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Wild_magnolia2 u a clown wen I cum down next week ima have to whoop yo ass again", "to_user": "Wild_magnolia2", "to_user_id": 373204004, "to_user_id_str": "373204004", "to_user_name": "Young & Wild", "in_reply_to_status_id": 148832823044882430, "in_reply_to_status_id_str": "148832823044882434"}, +{"created_at": "Mon, 19 Dec 2011 18:33:54 +0000", "from_user": "kissJUICYprints", "from_user_id": 313414779, "from_user_id_str": "313414779", "from_user_name": "prettyBADDass", "geo": null, "id": 148833449850060800, "id_str": "148833449850060800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698730155/Img_002731_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698730155/Img_002731_normal.JPG", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "yu knew ma tweets was about yu thass y yu clickd UNFOLLOW ctfu clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:51 +0000", "from_user": "COGIC_KEY15", "from_user_id": 370884983, "from_user_id_str": "370884983", "from_user_name": "Keydareon Graham ", "geo": null, "id": 148833438248611840, "id_str": "148833438248611840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1575876875/me_442_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575876875/me_442_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "I think I'M about to go get me some Chinese food while I'M waiting ON this CLOWN to come ON...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:50 +0000", "from_user": "HynesHummer2015", "from_user_id": 161349132, "from_user_id_str": "161349132", "from_user_name": "Mcgyver Williams III", "geo": null, "id": 148833433324490750, "id_str": "148833433324490752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701375970/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701375970/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "I love @V_Meech we just clown about relationships for no reason lmao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:48 +0000", "from_user": "iMA__BAWSE", "from_user_id": 36569387, "from_user_id_str": "36569387", "from_user_name": "Antisocial", "geo": null, "id": 148833425707634700, "id_str": "148833425707634688", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693874377/photo-2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693874377/photo-2_normal.JPG", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@KoolAzzRayBans Ya ya ya im a clown i see ta", "to_user": "KoolAzzRayBans", "to_user_id": 334026152, "to_user_id_str": "334026152", "to_user_name": "Ray Tucker", "in_reply_to_status_id": 148830229559910400, "in_reply_to_status_id_str": "148830229559910400"}, +{"created_at": "Mon, 19 Dec 2011 18:33:47 +0000", "from_user": "atribecallscoob", "from_user_id": 317461263, "from_user_id_str": "317461263", "from_user_name": "They Know", "geo": null, "id": 148833421924376580, "id_str": "148833421924376576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668050819/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668050819/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "dam #TM103 drop tomorrow what ever happened to this clown droppin God forgives he dont i thought MMG dont push dates back ijs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:46 +0000", "from_user": "projectzeroent", "from_user_id": 26175739, "from_user_id_str": "26175739", "from_user_name": "Candy CandyGirl", "geo": null, "id": 148833416773767170, "id_str": "148833416773767168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1567422341/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1567422341/image_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @MS_NAQUAY: @projectzeroent ur sister is cracking me up!!! Lol (she's a bigger clown than ME", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:46 +0000", "from_user": "xMisteRViciouSx", "from_user_id": 155354384, "from_user_id_str": "155354384", "from_user_name": "Mr. Blanchard", "geo": null, "id": 148833416039768060, "id_str": "148833416039768065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680293575/xMisteRViciouSx_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680293575/xMisteRViciouSx_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "So here I am. Do I go backwards or forwards. Lol. I want to clown so bad but I'm better than that", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:31 +0000", "from_user": "Jade_Goodie", "from_user_id": 327558435, "from_user_id_str": "327558435", "from_user_name": "FuckYouPayMe", "geo": null, "id": 148833352290533380, "id_str": "148833352290533376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1650931687/IMG01137-20111121-0832_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650931687/IMG01137-20111121-0832_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "listen you little Jade clone clown all this baffonary shit stops now.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:29 +0000", "from_user": "IgboSocratesMD", "from_user_id": 246361365, "from_user_id_str": "246361365", "from_user_name": "Ekene D'Lion", "geo": null, "id": 148833345843900400, "id_str": "148833345843900416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702588784/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702588784/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@HOLLYandherEGO Lmbo. You clown", "to_user": "HOLLYandherEGO", "to_user_id": 19956027, "to_user_id_str": "19956027", "to_user_name": "Holly We$T ", "in_reply_to_status_id": 148832559936176130, "in_reply_to_status_id_str": "148832559936176128"}, +{"created_at": "Mon, 19 Dec 2011 18:33:20 +0000", "from_user": "JasperDrijfhout", "from_user_id": 241062377, "from_user_id_str": "241062377", "from_user_name": "Jasper Drijfhout", "geo": null, "id": 148833307977719800, "id_str": "148833307977719808", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1496111618/IMG_0411_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1496111618/IMG_0411_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@fredjeRitzema pipo de clown?", "to_user": "fredjeRitzema", "to_user_id": 120420821, "to_user_id_str": "120420821", "to_user_name": "wilfred", "in_reply_to_status_id": 148830974095007740, "in_reply_to_status_id_str": "148830974095007744"}, +{"created_at": "Mon, 19 Dec 2011 18:33:16 +0000", "from_user": "claudmrcvas8", "from_user_id": 368042598, "from_user_id_str": "368042598", "from_user_name": "Claud Tilly", "geo": null, "id": 148833291640905730, "id_str": "148833291640905729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "DeiionJ_18 omg u a clown. Who I got in mind??hahac7w", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:13 +0000", "from_user": "iHateCockatiels", "from_user_id": 19005209, "from_user_id_str": "19005209", "from_user_name": "Surly E", "geo": null, "id": 148833280236584960, "id_str": "148833280236584961", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/71199644/Icon02_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/71199644/Icon02_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "6 Ripoff Dead GiveAways: Don\\u2019t let that Marketer Make a Clown outof You http://t.co/QqnJxCSk via @oz2designs #SEO #SEM #SocialMedia #Content", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:03 +0000", "from_user": "CiciRoscoe", "from_user_id": 339161954, "from_user_id_str": "339161954", "from_user_name": "My Stylez Seattle ", "geo": null, "id": 148833237958000640, "id_str": "148833237958000640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1565764669/IMAG0050_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1565764669/IMAG0050_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Class Clown... Always cracking jokes on everybody yet the nicest girl if you got to know me #IWasThatKid", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:32:53 +0000", "from_user": "littlemsboss", "from_user_id": 241408781, "from_user_id_str": "241408781", "from_user_name": "Dee", "geo": null, "id": 148833195234836480, "id_str": "148833195234836480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639333559/180896_10150134892272990_547627989_8025612_1775945_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639333559/180896_10150134892272990_547627989_8025612_1775945_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@CanibusBeauty lmao clown", "to_user": "CanibusBeauty", "to_user_id": 267907610, "to_user_id_str": "267907610", "to_user_name": "Tellz", "in_reply_to_status_id": 148832925327171600, "in_reply_to_status_id_str": "148832925327171584"}, +{"created_at": "Mon, 19 Dec 2011 18:32:53 +0000", "from_user": "nuttytart83", "from_user_id": 104571289, "from_user_id_str": "104571289", "from_user_name": "Zania ", "geo": null, "id": 148833194827976700, "id_str": "148833194827976704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1648406314/chris_at_RAH_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648406314/chris_at_RAH_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Bisley28: @JustCira I'd prefer to have it chopped off by Adrian Scarborough in a botched operation and then become a bitter and angry clown.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:52 +0000", "from_user": "monty_luv06", "from_user_id": 194612101, "from_user_id_str": "194612101", "from_user_name": "ClassyChick", "geo": null, "id": 148833192013594620, "id_str": "148833192013594624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687527587/975sOw8K_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687527587/975sOw8K_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@sweetestgirl217: Hit me from the back but don't put your finger in my booty hole....lmao\" Do u have 2 clown on these people site. Lmao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:51 +0000", "from_user": "OnHerkNEes", "from_user_id": 155301681, "from_user_id_str": "155301681", "from_user_name": "OveLay, ateHay. \\uE057\\uE40A\\uE32F", "geo": null, "id": 148833185101381630, "id_str": "148833185101381632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699146401/peuf_20111214_416_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699146401/peuf_20111214_416_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@lessTlkMoreQuia: @OnHerkNEes lmmfaooo \"lap stop\" DFL;!\\u201D clown!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:46 +0000", "from_user": "MetriWadi", "from_user_id": 40586670, "from_user_id_str": "40586670", "from_user_name": "Demetrius Cox", "geo": null, "id": 148833163760771070, "id_str": "148833163760771072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1571842479/CIMG0132_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1571842479/CIMG0132_normal.jpg", "source": "<a href="http://getspaz.com" rel="nofollow">Spaz</a>", "text": "Lames crying over hoes, that's tears of a clown.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:44 +0000", "from_user": "Alassja", "from_user_id": 365029278, "from_user_id_str": "365029278", "from_user_name": "Larissa Schwarz", "geo": null, "id": 148833155124695040, "id_str": "148833155124695041", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1678671449/Larissa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678671449/Larissa_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@lynncurtis1 @SQ1982 @DavidCaruso_ have you eaten a clown?", "to_user": "lynncurtis1", "to_user_id": 336768178, "to_user_id_str": "336768178", "to_user_name": "lynn curtis", "in_reply_to_status_id": 148829347216764930, "in_reply_to_status_id_str": "148829347216764930"}, +{"created_at": "Mon, 19 Dec 2011 18:32:43 +0000", "from_user": "Retweet_BreSHIT", "from_user_id": 319778676, "from_user_id_str": "319778676", "from_user_name": "QueenBee`Bre ", "geo": null, "id": 148833151685378050, "id_str": "148833151685378048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1655911041/MyBoo_Loves_ME_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655911041/MyBoo_Loves_ME_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @UrNiggaPayRENT: oh no, bre got that clown a present but not me -___- Lls", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:41 +0000", "from_user": "feel_the_byrnee", "from_user_id": 432046819, "from_user_id_str": "432046819", "from_user_name": "Meg Byrne", "geo": null, "id": 148833142646644740, "id_str": "148833142646644737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695735970/IMG950499_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695735970/IMG950499_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "insane clown posse is so freakkyy. #strangeshit", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:39 +0000", "from_user": "Don_Perione", "from_user_id": 143323204, "from_user_id_str": "143323204", "from_user_name": "@SCSU_CAB President", "geo": null, "id": 148833136434888700, "id_str": "148833136434888704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692492696/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692492696/me_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@mizz_tav sup clown", "to_user": "mizz_tav", "to_user_id": 239907836, "to_user_id_str": "239907836", "to_user_name": "Jetavia Walker"}, +{"created_at": "Mon, 19 Dec 2011 18:32:23 +0000", "from_user": "eusk_l", "from_user_id": 61920002, "from_user_id_str": "61920002", "from_user_name": "Euskal Herrera Ayala", "geo": null, "id": 148833067459543040, "id_str": "148833067459543040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696950067/asdfghjk_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696950067/asdfghjk_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Just laughing and gay like a clown.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:08 +0000", "from_user": "_ViolateYaBitch", "from_user_id": 300133849, "from_user_id_str": "300133849", "from_user_name": "Dashawn .. To Yall \\uE427", "geo": null, "id": 148833005648089100, "id_str": "148833005648089088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1610347984/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610347984/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@BossnBeauty_ i know thats why you hopped on my dick though . clown", "to_user": "BossnBeauty_", "to_user_id": 283617990, "to_user_id_str": "283617990", "to_user_name": "- Mrs. Hopkins", "in_reply_to_status_id": 148832842745528320, "in_reply_to_status_id_str": "148832842745528321"}, +{"created_at": "Mon, 19 Dec 2011 18:32:08 +0000", "from_user": "JoshRobbo11", "from_user_id": 211482165, "from_user_id_str": "211482165", "from_user_name": "Josh Robinson", "geo": null, "id": 148833004238807040, "id_str": "148833004238807041", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1323291310/IMG-20110422-00614_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1323291310/IMG-20110422-00614_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Bolton r a tasty 11/4 to win Away at Blackburn 2moro night!!! Heap more misery on that Clown of a boss Steve Kean. Tempting", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:07 +0000", "from_user": "G_STONE13", "from_user_id": 281301481, "from_user_id_str": "281301481", "from_user_name": "andrew garman", "geo": null, "id": 148833000677851140, "id_str": "148833000677851136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686017193/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686017193/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@acv1213 lol your a clown. We for real playing tho?", "to_user": "acv1213", "to_user_id": 142134403, "to_user_id_str": "142134403", "to_user_name": "Aaron Valentine", "in_reply_to_status_id": 148829374676873200, "in_reply_to_status_id_str": "148829374676873216"}, +{"created_at": "Mon, 19 Dec 2011 18:32:05 +0000", "from_user": "PussyAssWorld", "from_user_id": 184812804, "from_user_id_str": "184812804", "from_user_name": "Pussy Ass World", "geo": null, "id": 148832993249726460, "id_str": "148832993249726464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "The Monday Stumble: X-Men Hangover, Clown Bukkake, Hipster Dog [PHOTOS] http://t.co/rEQa4GCz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:01 +0000", "from_user": "dudedaw1", "from_user_id": 266925235, "from_user_id_str": "266925235", "from_user_name": "Jennifer Eliyas", "geo": null, "id": 148832977080688640, "id_str": "148832977080688640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697354972/Photo_on_2011-12-15_at_13.16__6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697354972/Photo_on_2011-12-15_at_13.16__6_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "A girl with too much make up is like a clown :/", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:46 +0000", "from_user": "spinal_tapp", "from_user_id": 119640814, "from_user_id_str": "119640814", "from_user_name": "Pump Jack", "geo": null, "id": 148832913583116300, "id_str": "148832913583116288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1310409186/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1310409186/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Misery really does breed company. I told this clown I was in a good mood... Of course, there had to be something that I wasn't doing right.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:46 +0000", "from_user": "marquinhos_tsbr", "from_user_id": 201452555, "from_user_id_str": "201452555", "from_user_name": "Marcos Brito", "geo": null, "id": 148832912173838340, "id_str": "148832912173838336", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1628794586/Imagem_196_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628794586/Imagem_196_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @camilandreussi: ah descobri um maquiador de clown, n\\u00E9 @marquinhos_tsbr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:41 +0000", "from_user": "ToddRichardson2", "from_user_id": 307709487, "from_user_id_str": "307709487", "from_user_name": "Todd Richardson", "geo": null, "id": 148832894092189700, "id_str": "148832894092189696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1375272581/Todd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1375272581/Todd_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iowahawkblog: First Al Davis, then Kim Jong-Il; bad year for insane clown-haired dictators in novelty Elvis sunglasses", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:41 +0000", "from_user": "CammyWammy35", "from_user_id": 384996839, "from_user_id_str": "384996839", "from_user_name": "nicholas cameron", "geo": null, "id": 148832893563699200, "id_str": "148832893563699200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1638046231/x4mfCqPl_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638046231/x4mfCqPl_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@SauceDaddy31 and making you look like a clown", "to_user": "SauceDaddy31", "to_user_id": 216880472, "to_user_id_str": "216880472", "to_user_name": "Dan Sherman", "in_reply_to_status_id": 148817592826593280, "in_reply_to_status_id_str": "148817592826593280"}, +{"created_at": "Mon, 19 Dec 2011 18:31:39 +0000", "from_user": "MissBrownskin87", "from_user_id": 326871598, "from_user_id_str": "326871598", "from_user_name": "Kim Walker", "geo": null, "id": 148832882717237250, "id_str": "148832882717237248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1684468052/MissBrownskin87_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684468052/MissBrownskin87_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@_RiSSAPOOOHh_ My TL not too much booming no more @Sir_PoloRL12 @TE_2turnt_UP @Cum_B_aMAYSed me & Kim need y'all to clown with again\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:38 +0000", "from_user": "JoeWinfield91", "from_user_id": 18559436, "from_user_id_str": "18559436", "from_user_name": "Joe Winfield", "geo": null, "id": 148832878631981060, "id_str": "148832878631981056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639499317/Joe1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639499317/Joe1_normal.png", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "Now. Rte2. Simpsons. Homer goes to clown college. Nuf said.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:35 +0000", "from_user": "Mila_Smilez", "from_user_id": 292484271, "from_user_id_str": "292484271", "from_user_name": "Miss Little Bits", "geo": null, "id": 148832867756163070, "id_str": "148832867756163072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702395154/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702395154/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Your really a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:33 +0000", "from_user": "OnSum_NewIsh", "from_user_id": 49738698, "from_user_id_str": "49738698", "from_user_name": "Aint goin Nowhere ", "geo": null, "id": 148832859413688320, "id_str": "148832859413688320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1620787448/373981_2540102139029_1147944115_33047542_1810148407_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620787448/373981_2540102139029_1147944115_33047542_1810148407_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "i wonder if these ppl u run talkn shit too, the same mf u talk shit bou bahahaha clown bitch there...now we all sitn talkn bou ur dumb ass", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:26 +0000", "from_user": "ClaudeBanks32", "from_user_id": 51925208, "from_user_id_str": "51925208", "from_user_name": "STAY HOLDIN!!", "geo": null, "id": 148832828396797950, "id_str": "148832828396797954", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688325747/ClaudeBanks32_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688325747/ClaudeBanks32_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "My lil nephews is some bad lil clown I swear dey got lik at least 8 whoopin this mornin lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:24 +0000", "from_user": "Wild_magnolia2", "from_user_id": 373204004, "from_user_id_str": "373204004", "from_user_name": "Young & Wild", "geo": null, "id": 148832823044882430, "id_str": "148832823044882434", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1669871284/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669871284/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@miss_AmazinAsh bill Cosby ass nigga you a clown", "to_user": "miss_AmazinAsh", "to_user_id": 420844860, "to_user_id_str": "420844860", "to_user_name": "Ashley", "in_reply_to_status_id": 148832700323737600, "in_reply_to_status_id_str": "148832700323737600"}, +{"created_at": "Mon, 19 Dec 2011 18:31:20 +0000", "from_user": "True_Beauty_89", "from_user_id": 146097895, "from_user_id_str": "146097895", "from_user_name": "\\uE328tyquana morris\\uE32B", "geo": null, "id": 148832806003408900, "id_str": "148832806003408896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1641677070/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641677070/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@risa2real4ya well I can clown", "to_user": "risa2real4ya", "to_user_id": 126129228, "to_user_id_str": "126129228", "to_user_name": "Marisa Swinton", "in_reply_to_status_id": 148823801088589820, "in_reply_to_status_id_str": "148823801088589824"}, +{"created_at": "Mon, 19 Dec 2011 18:31:20 +0000", "from_user": "DourJones", "from_user_id": 344487043, "from_user_id_str": "344487043", "from_user_name": "Jersey breed", "geo": null, "id": 148832803184836600, "id_str": "148832803184836609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1466969810/15715_115467855147789_100000537250985_188989_1470248_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1466969810/15715_115467855147789_100000537250985_188989_1470248_n_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@flockave tight as pants lil as shirt big as feet. Lol looking like a clown skinny jeans don't me ya as shoot it mean ya booty clap haha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:17 +0000", "from_user": "UrNiggaPayRENT", "from_user_id": 64945477, "from_user_id_str": "64945477", "from_user_name": "\\u2655 January19th__", "geo": null, "id": 148832794158706700, "id_str": "148832794158706688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701257090/1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701257090/1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "oh no, bre got that clown a present but not me -___- Lls", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:17 +0000", "from_user": "TonyBlack85", "from_user_id": 272064267, "from_user_id_str": "272064267", "from_user_name": "Tony Black", "geo": null, "id": 148832793852510200, "id_str": "148832793852510208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690307420/IMG-20111212-00738_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690307420/IMG-20111212-00738_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Brick_James: Clown niggas willing to trick off for box are so common, chicks begin to expect this desperation from real niggas too. Nah.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:16 +0000", "from_user": "_CoolStoryDee", "from_user_id": 46148882, "from_user_id_str": "46148882", "from_user_name": "Roll That BOMB Shit;", "geo": null, "id": 148832788848717820, "id_str": "148832788848717825", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692231259/SANY0171__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692231259/SANY0171__1__normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @Aye_Daddyy: @_CoolStoryDee ctfu yous a clown , ,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:13 +0000", "from_user": "YoUnGQweezy803", "from_user_id": 268994083, "from_user_id_str": "268994083", "from_user_name": "Senquan Alls", "geo": null, "id": 148832776702001150, "id_str": "148832776702001152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674791176/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674791176/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:05 +0000", "from_user": "Immebitch_heny", "from_user_id": 397633356, "from_user_id_str": "397633356", "from_user_name": "heny hendricks", "geo": null, "id": 148832743365681150, "id_str": "148832743365681152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1640985706/Desert_Landscape_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640985706/Desert_Landscape_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@mfreccia i was tryna go clown", "to_user": "mfreccia", "to_user_id": 262776409, "to_user_id_str": "262776409", "to_user_name": "Mike Freccia", "in_reply_to_status_id": 148832117768458240, "in_reply_to_status_id_str": "148832117768458240"}, +{"created_at": "Mon, 19 Dec 2011 18:30:45 +0000", "from_user": "IB_TheKid", "from_user_id": 159196780, "from_user_id_str": "159196780", "from_user_name": "I say uhhh", "geo": null, "id": 148832659005648900, "id_str": "148832659005648896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700549635/IB_TheKid_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700549635/IB_TheKid_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ShawtyEllo: U a pretty girl w a clown suit on so really u ugly dirt bag", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:45 +0000", "from_user": "ross_dullaghan", "from_user_id": 343821939, "from_user_id_str": "343821939", "from_user_name": "ross dullaghan", "geo": null, "id": 148832657323737100, "id_str": "148832657323737088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668112326/junior_b_cup_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668112326/junior_b_cup_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@G_Malone @Finneganegan wat game you on about you clown", "to_user": "G_Malone", "to_user_id": 192659134, "to_user_id_str": "192659134", "to_user_name": "Gerry Malone", "in_reply_to_status_id": 148822607536455680, "in_reply_to_status_id_str": "148822607536455680"}, +{"created_at": "Mon, 19 Dec 2011 18:30:44 +0000", "from_user": "owenbrfc", "from_user_id": 409392075, "from_user_id_str": "409392075", "from_user_name": "owen weatherhead", "geo": null, "id": 148832655100755970, "id_str": "148832655100755968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@itsRENTON hope your coming 2 rugby on boxing day pal its at berwick this year bring that clown @gazzamaclfc1892 with you", "to_user": "itsRENTON", "to_user_id": 267409339, "to_user_id_str": "267409339", "to_user_name": "RENTON", "in_reply_to_status_id": 148823955925508100, "in_reply_to_status_id_str": "148823955925508096"}, +{"created_at": "Mon, 19 Dec 2011 18:30:44 +0000", "from_user": "kominekwzjch3", "from_user_id": 373587487, "from_user_id_str": "373587487", "from_user_name": "Kominek Barrymore", "geo": null, "id": 148832653964099600, "id_str": "148832653964099584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1543040708/imagesCA2KQMB0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543040708/imagesCA2KQMB0_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "My mama up at her job clown'n she finna beat some woman ass...LOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:41 +0000", "from_user": "JulieGriffet", "from_user_id": 148512871, "from_user_id_str": "148512871", "from_user_name": "Julie", "geo": null, "id": 148832643054710800, "id_str": "148832643054710784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1045482377/00drcgfq_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1045482377/00drcgfq_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Monday Stumble: X-Men Hangover, Clown Bukkake, Hipster Dog [PHOTOS]: No matter how positive you are, Mondays... http://t.co/CWwLIk2V", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:41 +0000", "from_user": "ManAfterDark", "from_user_id": 69907178, "from_user_id_str": "69907178", "from_user_name": "Man After Dark", "geo": null, "id": 148832641393770500, "id_str": "148832641393770496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/388037602/stripper-pole_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/388037602/stripper-pole_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Monday Stumble: X-Men Hangover, Clown Bukkake, Hipster Dog [PHOTOS] http://t.co/GONezmVs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:41 +0000", "from_user": "joellakris", "from_user_id": 83403377, "from_user_id_str": "83403377", "from_user_name": "Joella Kris", "geo": null, "id": 148832640961753100, "id_str": "148832640961753089", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/479516279/joella_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/479516279/joella_normal.PNG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Monday Stumble: X-Men Hangover, Clown Bukkake, Hipster Dog [PHOTOS]: No matter how positive you are, Mondays... http://t.co/zZJDp98k", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:35 +0000", "from_user": "ssfashion", "from_user_id": 112905618, "from_user_id_str": "112905618", "from_user_name": "StyleSalt NewsFeed", "geo": null, "id": 148832614692827140, "id_str": "148832614692827136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/775389459/stylesaltlogopng_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/775389459/stylesaltlogopng_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Monday Stumble: X-Men Hangover, Clown Bukkake, Hipster Dog [PHOTOS]: No matter how positive you are, Mondays... http://t.co/6fzozQcn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:27 +0000", "from_user": "SayThaDon", "from_user_id": 326536067, "from_user_id_str": "326536067", "from_user_name": "Say", "geo": null, "id": 148832581104828400, "id_str": "148832581104828416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1660263193/H2tyRiG4_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660263193/H2tyRiG4_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@BitchsNOPanties clown lol", "to_user": "BitchsNOPanties", "to_user_id": 189737582, "to_user_id_str": "189737582", "to_user_name": "Shelby FMOT", "in_reply_to_status_id": 148827214413185020, "in_reply_to_status_id_str": "148827214413185027"}, +{"created_at": "Mon, 19 Dec 2011 18:30:24 +0000", "from_user": "Scream_Dro", "from_user_id": 323286687, "from_user_id_str": "323286687", "from_user_name": "p e y t o n. \\u30C4", "geo": null, "id": 148832571210481660, "id_str": "148832571210481664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700800838/401149_10150417333291053_715066052_8862572_7179937_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700800838/401149_10150417333291053_715066052_8862572_7179937_n_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Everybody is a clown ass. It's not one individual. Stop acting salty when I'm not talking about you. Clown ass.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:23 +0000", "from_user": "CornerStoreCapo", "from_user_id": 280272740, "from_user_id_str": "280272740", "from_user_name": "Bodega The God", "geo": null, "id": 148832563698475000, "id_str": "148832563698475008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1640330284/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640330284/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @SNORKINGTON: @CornerStoreCapo word! I love picking up unknown calls, alwayssssssss some clown on the other side lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:17 +0000", "from_user": "Dr_WudiWoo", "from_user_id": 329349460, "from_user_id_str": "329349460", "from_user_name": "Latia A.", "geo": null, "id": 148832541460279300, "id_str": "148832541460279296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1656473764/Dr_WudiWoo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656473764/Dr_WudiWoo_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Co-Dependent shit show... This boy is a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:15 +0000", "from_user": "Jordan_e_b", "from_user_id": 397192142, "from_user_id_str": "397192142", "from_user_name": "Jordan(Mr.E)Bennett", "geo": null, "id": 148832531230367740, "id_str": "148832531230367744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694848227/Big_20Three_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694848227/Big_20Three_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@StefanMarkovic4. He's a fkn clown a god dkm", "to_user": "StefanMarkovic4", "to_user_id": 399818608, "to_user_id_str": "399818608", "to_user_name": "Stefan Markovic"}, +{"created_at": "Mon, 19 Dec 2011 18:30:14 +0000", "from_user": "LookABlackMan", "from_user_id": 33337638, "from_user_id_str": "33337638", "from_user_name": "Buffering.....still", "geo": null, "id": 148832529674276860, "id_str": "148832529674276864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699288915/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699288915/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:14 +0000", "from_user": "caraballoINC", "from_user_id": 58864575, "from_user_id_str": "58864575", "from_user_name": "mariah caraballo", "geo": null, "id": 148832526268502000, "id_str": "148832526268502016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687624819/3HqGqol4_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687624819/3HqGqol4_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "#Igetsoangry when people try to clown me", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:12 +0000", "from_user": "Opeyone2000", "from_user_id": 33536895, "from_user_id_str": "33536895", "from_user_name": "Michael Oosterhouse", "geo": null, "id": 148832518370623500, "id_str": "148832518370623489", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1661660730/Opeyone2000_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661660730/Opeyone2000_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Duh RT @SpikeEskin: Michael Beasley seems like he's a real clown.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:07 +0000", "from_user": "GiveThatAssUp", "from_user_id": 229726485, "from_user_id_str": "229726485", "from_user_name": "Brit Reed", "geo": null, "id": 148832499815026700, "id_str": "148832499815026688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1649987201/ColorTouch-1321805642059-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649987201/ColorTouch-1321805642059-2_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "It's 1:30 haven't spoke too this clown yet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:06 +0000", "from_user": "BxtchIm_Shae", "from_user_id": 366786854, "from_user_id_str": "366786854", "from_user_name": "Lashae Argullard", "geo": null, "id": 148832496371515400, "id_str": "148832496371515392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695872892/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695872892/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Doppie317_los Kmsl yu gone clown all Yur life.,! Yu Better chill Los yu Goin get Yur dude in trouble", "to_user": "Doppie317_los", "to_user_id": 301840401, "to_user_id_str": "301840401", "to_user_name": "Keep_It\\uE023317", "in_reply_to_status_id": 148832100576006140, "in_reply_to_status_id_str": "148832100576006144"}, +{"created_at": "Mon, 19 Dec 2011 18:30:04 +0000", "from_user": "KERRYbaby412", "from_user_id": 49421233, "from_user_id_str": "49421233", "from_user_name": "___#10\\uE42A\\uE204", "geo": null, "id": 148832485315325950, "id_str": "148832485315325952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697217132/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697217132/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Garbage_PailKid lmfaooo you're a clown....but thanks big guy, appreciate that!", "to_user": "Garbage_PailKid", "to_user_id": 180086024, "to_user_id_str": "180086024", "to_user_name": "J. Moore", "in_reply_to_status_id": 148822544827428860, "in_reply_to_status_id_str": "148822544827428864"}, +{"created_at": "Mon, 19 Dec 2011 18:29:52 +0000", "from_user": "eliburriss", "from_user_id": 336790110, "from_user_id_str": "336790110", "from_user_name": "Elizabeth Burriss", "geo": null, "id": 148832433662459900, "id_str": "148832433662459904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1601609863/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601609863/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MrWordsWorth: If you build a snowman and can only imagine him as a parson or circus clown, you have a very sad imagination.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:51 +0000", "from_user": "sanay908", "from_user_id": 97021376, "from_user_id_str": "97021376", "from_user_name": "blah_blah", "geo": null, "id": 148832430592241660, "id_str": "148832430592241664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1349601624/sanay1234_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1349601624/sanay1234_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "@briah_shtlegit lmfaooooooooooooo delete that clown !", "to_user": "briah_shtlegit", "to_user_id": 231620944, "to_user_id_str": "231620944", "to_user_name": ", why bother ? ", "in_reply_to_status_id": 148832211808948220, "in_reply_to_status_id_str": "148832211808948226"}, +{"created_at": "Mon, 19 Dec 2011 18:29:41 +0000", "from_user": "templetoesss", "from_user_id": 307169184, "from_user_id_str": "307169184", "from_user_name": "Payton Templeton", "geo": null, "id": 148832389509025800, "id_str": "148832389509025792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685547740/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685547740/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\"You know who could be a clown?\" \"Shnauzy over there\" @BitchyBails #lmfao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:38 +0000", "from_user": "JulianHuijbers", "from_user_id": 436772450, "from_user_id_str": "436772450", "from_user_name": "Julian Huijbers", "geo": null, "id": 148832378679341060, "id_str": "148832378679341057", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692994533/image_normal.jpg", "profile_image_url_https": null, "source": "<a href="http://twitter.com/">web</a>", "text": "RT @JongerenSwag_: Ik: \"Ik word de nieuwe hitler, ik vermoord alle joden en 1 clown\"\\nHij: \"waarom een clown\"\\nIk: \"Zie je, niemand geeft om die joden!\" #JSW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:38 +0000", "from_user": "FlawlessB_iisMe", "from_user_id": 260182261, "from_user_id_str": "260182261", "from_user_name": "imari parker ", "geo": null, "id": 148832377412657150, "id_str": "148832377412657153", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693444578/rra1603u_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693444578/rra1603u_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I still can't believe my mama dropped it ike its hott and picked it back up on Tommy the clown lmaoooo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:38 +0000", "from_user": "WarEagle1994", "from_user_id": 368158699, "from_user_id_str": "368158699", "from_user_name": "Exgar Casarrubias", "geo": null, "id": 148832377345540100, "id_str": "148832377345540097", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1667211202/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667211202/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:36 +0000", "from_user": "Aye_Daddyy", "from_user_id": 237548985, "from_user_id_str": "237548985", "from_user_name": "Aisha", "geo": null, "id": 148832367287611400, "id_str": "148832367287611392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1637320364/rtert_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637320364/rtert_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@_CoolStoryDee ctfu yous a clown , ,", "to_user": "_CoolStoryDee", "to_user_id": 46148882, "to_user_id_str": "46148882", "to_user_name": "Roll That BOMB Shit;", "in_reply_to_status_id": 148832065612300300, "in_reply_to_status_id_str": "148832065612300291"}, +{"created_at": "Mon, 19 Dec 2011 18:29:35 +0000", "from_user": "vibe215", "from_user_id": 23202279, "from_user_id_str": "23202279", "from_user_name": "Kim Jong Ill Clinton", "geo": null, "id": 148832365924454400, "id_str": "148832365924454401", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701387826/y00VNj6m_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701387826/y00VNj6m_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@terry_ruggles your mother looks like crusty the clown.", "to_user": "terry_ruggles", "to_user_id": 262324288, "to_user_id_str": "262324288", "to_user_name": "T", "in_reply_to_status_id": 148830206252171260, "in_reply_to_status_id_str": "148830206252171264"}, +{"created_at": "Mon, 19 Dec 2011 18:29:33 +0000", "from_user": "Superpaid_J", "from_user_id": 291974892, "from_user_id_str": "291974892", "from_user_name": "Justin Sweeting", "geo": null, "id": 148832354419474430, "id_str": "148832354419474432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1580103518/swagg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580103518/swagg_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "what I need a next girl for , if all you gettin is action on skype chat and i getitn the real thing ? FUCKIN CLOWN !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:26 +0000", "from_user": "Gary_TV", "from_user_id": 401656200, "from_user_id_str": "401656200", "from_user_name": "Gary Toliver", "geo": null, "id": 148832328066678800, "id_str": "148832328066678784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702543113/gary_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702543113/gary_1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Starting the week of right!!! MUBU MONDAYS...so u know whats going down...but if u dont then uz a clown!!! #PaperChasing", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:24 +0000", "from_user": "lennertuqmznt9", "from_user_id": 374336178, "from_user_id_str": "374336178", "from_user_name": "Lennert Wentworth", "geo": null, "id": 148832317065015300, "id_str": "148832317065015296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1544965252/imagesCAPIRVA7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544965252/imagesCAPIRVA7_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "DeiionJ_18 omg u a clown. Who I got in mind??haha3Txsnh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:19 +0000", "from_user": "lirch44", "from_user_id": 407487984, "from_user_id_str": "407487984", "from_user_name": "James Roberts", "geo": null, "id": 148832295514673150, "id_str": "148832295514673152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702557717/shanna_097_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702557717/shanna_097_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Check this video out -- Insane Clown Posse - In Yo Face (Juggalo Edition) http://t.co/JqGg1Pkc via @youtube", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:18 +0000", "from_user": "supreme170", "from_user_id": 30177264, "from_user_id_str": "30177264", "from_user_name": "KEVIN", "geo": null, "id": 148832294050869250, "id_str": "148832294050869248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699130333/IMAG1092-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699130333/IMAG1092-1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "You a clown Lmao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:08 +0000", "from_user": "OluDeinde", "from_user_id": 436694386, "from_user_id_str": "436694386", "from_user_name": "Denzel W.", "geo": null, "id": 148832252720189440, "id_str": "148832252720189441", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692802444/_EE_9A_84usssystrydurrr_20_EE_9A_84_normal.jpg", "profile_image_url_https": null, "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Marriage at age 25 z a very smart idea @KushSwaq dat'll be in 9 yrz tym u fuckin clown READ UR BOOKS!! If u brought dem home 4 hollz :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:04 +0000", "from_user": "MissInThis", "from_user_id": 394096921, "from_user_id_str": "394096921", "from_user_name": "NO Thanks", "geo": null, "id": 148832233334112260, "id_str": "148832233334112257", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1599441907/tw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599441907/tw_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ochocinco tell him/her to find a hobby PATHETIC lil varmint -hacking is for losers with NO life who need to live thru others 2b happy CLOWN", "to_user": "ochocinco", "to_user_id": 40519997, "to_user_id_str": "40519997", "to_user_name": "Chad Ochocinco", "in_reply_to_status_id": 148831794257596400, "in_reply_to_status_id_str": "148831794257596416"}, +{"created_at": "Mon, 19 Dec 2011 18:28:51 +0000", "from_user": "penisqueefer", "from_user_id": 19295343, "from_user_id_str": "19295343", "from_user_name": "Chandler Bing", "geo": null, "id": 148832180154540030, "id_str": "148832180154540032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1670172052/Snapshot_20111201_2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670172052/Snapshot_20111201_2_normal.JPG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @aidsisbad: Watched a weird ass movie with @penisqueefer last night that had midget clown demons and some hot bitch killed people with an axe. #fuckedup", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:48 +0000", "from_user": "tierep", "from_user_id": 216305997, "from_user_id_str": "216305997", "from_user_name": "tie rep", "geo": null, "id": 148832169278709760, "id_str": "148832169278709762", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Ghost, Pinstripe, Vanilla, Lemonblast, Clown Python regius NZ 2011: Walld\\u00FCrn | Ghost, Pinstripe, Vanilla, Lemonb... http://t.co/fp6I0Ku0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:32 +0000", "from_user": "n4taSliaH", "from_user_id": 93906658, "from_user_id_str": "93906658", "from_user_name": "Hope Simpson", "geo": null, "id": 148832102123712500, "id_str": "148832102123712513", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700705201/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700705201/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Down wit duh clown till I'm dead in duh ground whoopwhoop! @ginjabeardfox", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:27 +0000", "from_user": "GiveEmSprite_TG", "from_user_id": 35596969, "from_user_id_str": "35596969", "from_user_name": "Mister Clutch\\u2122", "geo": null, "id": 148832079851954180, "id_str": "148832079851954176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701407596/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701407596/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@T3_9 @supa_ugly91 mane get y'all clown axx on", "to_user": "T3_9", "to_user_id": 85688844, "to_user_id_str": "85688844", "to_user_name": "CrazyLegs Talton ", "in_reply_to_status_id": 148828930403614720, "in_reply_to_status_id_str": "148828930403614720"}, +{"created_at": "Mon, 19 Dec 2011 18:28:27 +0000", "from_user": "LeighBryan", "from_user_id": 27933597, "from_user_id_str": "27933597", "from_user_name": "Leigh V-B", "geo": null, "id": 148832078656581630, "id_str": "148832078656581632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1670199247/330790158_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670199247/330790158_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@markk91 @LloydDanielsUK that wasn't Lloyd you clown!", "to_user": "markk91", "to_user_id": 29533751, "to_user_id_str": "29533751", "to_user_name": "Mark J McGuire", "in_reply_to_status_id": 148830747556458500, "in_reply_to_status_id_str": "148830747556458497"}, +{"created_at": "Mon, 19 Dec 2011 18:28:17 +0000", "from_user": "EastsideDc12", "from_user_id": 430034978, "from_user_id_str": "430034978", "from_user_name": "Darrell Jaqua Carter", "geo": null, "id": 148832038382866430, "id_str": "148832038382866433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696055335/ink_kid_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696055335/ink_kid_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Hw u luv dat clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:07 +0000", "from_user": "chrisponteri", "from_user_id": 110115781, "from_user_id_str": "110115781", "from_user_name": "Chris Ponteri", "geo": null, "id": 148831995525476350, "id_str": "148831995525476353", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1302998776/adventure_juggling_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1302998776/adventure_juggling_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iowahawkblog: First Al Davis, then Kim Jong-Il; bad year for insane clown-haired dictators in novelty Elvis sunglasses", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:03 +0000", "from_user": "lirch44", "from_user_id": 407487984, "from_user_id_str": "407487984", "from_user_name": "James Roberts", "geo": null, "id": 148831979629056000, "id_str": "148831979629056000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702557717/shanna_097_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702557717/shanna_097_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Check this video out -- Insane Clown Posse - Its All Over http://t.co/A9v5k3RN via @youtube", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:00 +0000", "from_user": "sophiegeldard", "from_user_id": 83347194, "from_user_id_str": "83347194", "from_user_name": "Sophie Geldard", "geo": null, "id": 148831965779468300, "id_str": "148831965779468289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1243018647/Photo_on_2011-02-01_at_12.23_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1243018647/Photo_on_2011-02-01_at_12.23_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@rosierothwell LOLLLLLL he looks like a fucking ginger clown!! what a waste.", "to_user": "rosierothwell", "to_user_id": 39072208, "to_user_id_str": "39072208", "to_user_name": "Rosie Rothwell", "in_reply_to_status_id": 148831458549694460, "in_reply_to_status_id_str": "148831458549694464"}, +{"created_at": "Mon, 19 Dec 2011 18:27:59 +0000", "from_user": "GirlyGirl_ki", "from_user_id": 372335402, "from_user_id_str": "372335402", "from_user_name": "kiara", "geo": null, "id": 148831961304154100, "id_str": "148831961304154112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1667351399/33JIfjT1_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667351399/33JIfjT1_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@HB357: @GirlyGirl_ki hey kierston lol\">>>U a clown...shut up!! Lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:56 +0000", "from_user": "ShawtyEllo", "from_user_id": 217279123, "from_user_id_str": "217279123", "from_user_name": "Ello", "geo": null, "id": 148831950881304580, "id_str": "148831950881304576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1667122827/photo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667122827/photo_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "You a ugly girl w a clown suit on............. #bye", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:53 +0000", "from_user": "Amir_TheBaddGuy", "from_user_id": 196299242, "from_user_id_str": "196299242", "from_user_name": "The Badd Guy", "geo": null, "id": 148831937706987520, "id_str": "148831937706987520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1641071602/weedy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641071602/weedy_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@ShortyDip wyd clown?", "to_user": "ShortyDip", "to_user_id": 23723384, "to_user_id_str": "23723384", "to_user_name": "\\uE337SHORTY\\uE337", "in_reply_to_status_id": 148831452686069760, "in_reply_to_status_id_str": "148831452686069761"}, +{"created_at": "Mon, 19 Dec 2011 18:27:46 +0000", "from_user": "ZEEKFROMWEST", "from_user_id": 181755753, "from_user_id_str": "181755753", "from_user_name": "AMERICAN ASSHOLE ", "geo": null, "id": 148831908221030400, "id_str": "148831908221030400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701262168/ZEEKFROMWEST_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701262168/ZEEKFROMWEST_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@thunderthighz87 Them 49th st ole heads b on sum clown shit! The only one who stay the same is @ZEEKFROMWEST\\u201D awww thinks dreamgirl !!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:38 +0000", "from_user": "beOVERshxtiHOOP", "from_user_id": 184148947, "from_user_id_str": "184148947", "from_user_name": "Phiiilllyyyy duh#24", "geo": null, "id": 148831873416704000, "id_str": "148831873416704001", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1663818253/330600224_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663818253/330600224_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "BH chilllout!!!!!it was a joke..don't mean she is...clown#LMAO #SUBTWEET!!!!!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:26 +0000", "from_user": "7clowncircus", "from_user_id": 16154173, "from_user_id_str": "16154173", "from_user_name": "Angie Lee", "geo": null, "id": 148831822283943940, "id_str": "148831822283943937", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/481994256/November_22nd__2008_648bw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/481994256/November_22nd__2008_648bw_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "If my kids could make New Years Resolutions for me, they'd look something like this: http://t.co/zZZJYv3o", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:25 +0000", "from_user": "Note_to_CMO", "from_user_id": 16563452, "from_user_id_str": "16563452", "from_user_name": "StephenDenny", "geo": null, "id": 148831820585246720, "id_str": "148831820585246720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1468257288/bnet_interview_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1468257288/bnet_interview_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iowahawkblog: First Al Davis, then Kim Jong-Il; bad year for insane clown-haired dictators in novelty Elvis sunglasses", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:20 +0000", "from_user": "Always4everpll", "from_user_id": 387139654, "from_user_id_str": "387139654", "from_user_name": "Pretty Little Liars", "geo": null, "id": 148831799328514050, "id_str": "148831799328514048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691518386/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691518386/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @BieberMarmalade: & Whenever i see a clown fish, I automatically think \"OMG, it's Nemo.\" \\u2665", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:20 +0000", "from_user": "arlasko", "from_user_id": 134547925, "from_user_id_str": "134547925", "from_user_name": "Allen Lasko", "geo": null, "id": 148831797218775040, "id_str": "148831797218775043", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687945253/9d00812a-a0ae-40fe-9b8a-80370bafc564_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687945253/9d00812a-a0ae-40fe-9b8a-80370bafc564_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iowahawkblog: First Al Davis, then Kim Jong-Il; bad year for insane clown-haired dictators in novelty Elvis sunglasses", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:16 +0000", "from_user": "bigE_walam", "from_user_id": 248766538, "from_user_id_str": "248766538", "from_user_name": "EazyE", "geo": null, "id": 148831779820814340, "id_str": "148831779820814338", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1557818010/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1557818010/me_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@SameOle_Yah: \\u201C@bigE_walam @SameOle_Yah clown, sup\\u201D wyaa ?\" School, imu young", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:15 +0000", "from_user": "teewiize", "from_user_id": 43264319, "from_user_id_str": "43264319", "from_user_name": "teewiize", "geo": null, "id": 148831777488773120, "id_str": "148831777488773120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1671717429/IMAG0635_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671717429/IMAG0635_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Tha clown uses the money his momma gives him to take care of this old ass women", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:14 +0000", "from_user": "PlayBoyBarbiee", "from_user_id": 271720174, "from_user_id_str": "271720174", "from_user_name": "Olympia ", "geo": null, "id": 148831773642596350, "id_str": "148831773642596352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698790296/btlr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698790296/btlr_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#oomf didnt answer my call lastnight cause she got her girlfriend back LMAO #clown , you know you talk to me when she not there .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:14 +0000", "from_user": "iBeEnStAtUs", "from_user_id": 80124484, "from_user_id_str": "80124484", "from_user_name": "iBeEnStAtUs", "geo": null, "id": 148831772602404860, "id_str": "148831772602404865", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696763596/36_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696763596/36_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@IrisDerion @iBeEnStAtUs Yea whatevA like ii said nigga (in my G voice)\\u201D #CLOWN LOL U SO CONFUSED HUH?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:06 +0000", "from_user": "CoCoCherrelle", "from_user_id": 33742294, "from_user_id_str": "33742294", "from_user_name": "E&J", "geo": null, "id": 148831738775355400, "id_str": "148831738775355392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1673716090/CoCoCherrelle_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673716090/CoCoCherrelle_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Folks sending these forwarded messages talking about I just wanted to say hey... Clown please you text 40 other bishes the same thing!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:02 +0000", "from_user": "TheReal_SEY", "from_user_id": 286990057, "from_user_id_str": "286990057", "from_user_name": "Sey", "geo": null, "id": 148831722526605300, "id_str": "148831722526605314", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698914362/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698914362/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@TJTibbs lol charlie murphy hahaha u a clown", "to_user": "TJTibbs", "to_user_id": 147124361, "to_user_id_str": "147124361", "to_user_name": "T.J. Tibbs", "in_reply_to_status_id": 148831397283495940, "in_reply_to_status_id_str": "148831397283495936"}, +{"created_at": "Mon, 19 Dec 2011 18:27:02 +0000", "from_user": "onlyLESwood", "from_user_id": 193443021, "from_user_id_str": "193443021", "from_user_name": "MonsterLES", "geo": null, "id": 148831721297690620, "id_str": "148831721297690624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701608349/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701608349/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@POPgoesTT clown \\uE415\\uE412", "to_user": "POPgoesTT", "to_user_id": 265275719, "to_user_id_str": "265275719", "to_user_name": "aiTaL ", "in_reply_to_status_id": 148831563994509300, "in_reply_to_status_id_str": "148831563994509312"}, +{"created_at": "Mon, 19 Dec 2011 18:26:59 +0000", "from_user": "Brooke_Monet", "from_user_id": 189594846, "from_user_id_str": "189594846", "from_user_name": "Brooke ", "geo": null, "id": 148831709729792000, "id_str": "148831709729792000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1674043654/AfzeVSECQAIkpYz_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674043654/AfzeVSECQAIkpYz_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "Why must the people always clown with us in the drive thru tho!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:56 +0000", "from_user": "sanay908", "from_user_id": 97021376, "from_user_id_str": "97021376", "from_user_name": "blah_blah", "geo": null, "id": 148831697725702140, "id_str": "148831697725702144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1349601624/sanay1234_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1349601624/sanay1234_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "@briah_shtlegit lmfaoooooooooooooooooooooooooooo you a clown", "to_user": "briah_shtlegit", "to_user_id": 231620944, "to_user_id_str": "231620944", "to_user_name": ", why bother ? ", "in_reply_to_status_id": 148831304820076540, "in_reply_to_status_id_str": "148831304820076544"}, +{"created_at": "Mon, 19 Dec 2011 18:26:55 +0000", "from_user": "chrisbagby", "from_user_id": 169787153, "from_user_id_str": "169787153", "from_user_name": "christopher bagby", "geo": null, "id": 148831694944874500, "id_str": "148831694944874497", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1084134293/37628_1528441059221_1480541644_31343393_5775006_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1084134293/37628_1528441059221_1480541644_31343393_5775006_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iowahawkblog: First Al Davis, then Kim Jong-Il; bad year for insane clown-haired dictators in novelty Elvis sunglasses", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:55 +0000", "from_user": "BCS__", "from_user_id": 30965161, "from_user_id_str": "30965161", "from_user_name": "Britt. =]", "geo": null, "id": 148831693820805120, "id_str": "148831693820805121", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702383167/2011-12-19_11.08.51_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702383167/2011-12-19_11.08.51_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u00AB@TonTon___ \\u201C@BCS__ Lmaooo Me and Anton clown in here.\\u201Dman yes lol\\u00BB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:52 +0000", "from_user": "VicGrandeQueen", "from_user_id": 97439515, "from_user_id_str": "97439515", "from_user_name": "Shelly, Cat Vega \\u2654", "geo": null, "id": 148831681745391600, "id_str": "148831681745391617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699935751/tumblr_lvoqagmhar1r61ts6o1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699935751/tumblr_lvoqagmhar1r61ts6o1_500_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @BieberMarmalade: & Whenever i see a clown fish, I automatically think \"OMG, it's Nemo.\" \\u2665", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:47 +0000", "from_user": "TrueBlueLiberal", "from_user_id": 100987374, "from_user_id_str": "100987374", "from_user_name": "TrueBlue Liberal", "geo": null, "id": 148831660765495300, "id_str": "148831660765495296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/645215421/twittermap_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/645215421/twittermap_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "True Blue Liberal: Christmas Week in the GOP Clown Circus ---> http://t.co/mJyTFxGi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:46 +0000", "from_user": "Beg_4_BRI", "from_user_id": 237939560, "from_user_id_str": "237939560", "from_user_name": "BeatITbitch!", "geo": null, "id": 148831657531670530, "id_str": "148831657531670528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681271164/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681271164/me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "but i @'d him no response.. clown told yu yung bull i kno da game,, nd i play it well!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:43 +0000", "from_user": "stephanyedenise", "from_user_id": 110519985, "from_user_id_str": "110519985", "from_user_name": "STEPHANIE DENISE", "geo": null, "id": 148831644722266100, "id_str": "148831644722266112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682055581/74654_489322829536_506574536_6016695_3143503_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682055581/74654_489322829536_506574536_6016695_3143503_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "I just spoke to my ex *smh* what a clown!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:42 +0000", "from_user": "ManIsNotReady", "from_user_id": 374432463, "from_user_id_str": "374432463", "from_user_name": "Mani Babii", "geo": null, "id": 148831640712519680, "id_str": "148831640712519680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700207530/a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700207530/a_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I should put #oomf clown ass on blast, but Imma be a lady on my birthday... Tomorrow I'm ratchet! And he gon catch a swift one #KnowThat", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:26:43 +0000", "from_user": "stephanyedenise", "from_user_id": 110519985, "from_user_id_str": "110519985", "from_user_name": "STEPHANIE DENISE", "geo": null, "id": 148831644722266100, "id_str": "148831644722266112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682055581/74654_489322829536_506574536_6016695_3143503_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682055581/74654_489322829536_506574536_6016695_3143503_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "I just spoke to my ex *smh* what a clown!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:42 +0000", "from_user": "ManIsNotReady", "from_user_id": 374432463, "from_user_id_str": "374432463", "from_user_name": "Mani Babii", "geo": null, "id": 148831640712519680, "id_str": "148831640712519680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700207530/a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700207530/a_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I should put #oomf clown ass on blast, but Imma be a lady on my birthday... Tomorrow I'm ratchet! And he gon catch a swift one #KnowThat", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:38 +0000", "from_user": "MacKenkie14", "from_user_id": 353512664, "from_user_id_str": "353512664", "from_user_name": "MacKenzie Clayton", "geo": null, "id": 148831620680527870, "id_str": "148831620680527873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674031232/1323034779624_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674031232/1323034779624_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "mr. pearson is subbing for mr. murray today aka no work, all jokes #clown #loudandproud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:36 +0000", "from_user": "jaune_loves_u", "from_user_id": 281820972, "from_user_id_str": "281820972", "from_user_name": "jaune", "geo": null, "id": 148831614686867460, "id_str": "148831614686867456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697579379/1324092738238_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697579379/1324092738238_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster</a>", "text": "I miss him callin me a clown! Awww good times", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:32 +0000", "from_user": "secondazampa", "from_user_id": 90904978, "from_user_id_str": "90904978", "from_user_name": "secondazampa", "geo": null, "id": 148831595929931780, "id_str": "148831595929931776", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/532696592/canetto_sedutolow_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/532696592/canetto_sedutolow_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "GLI ANIMALI AL CIRCO NON SI DIVERTONO...PROPRIO NO! NON SONO MICA I NOSTRI CLOWN!!\\nECCO PERCHE' IL 26 DICEMBRE CI... http://t.co/jxTPhY35", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:31 +0000", "from_user": "BieberMarmalade", "from_user_id": 186861792, "from_user_id_str": "186861792", "from_user_name": "Cupcake princess. \\u2654", "geo": null, "id": 148831593308487680, "id_str": "148831593308487680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691405130/3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691405130/3_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "& Whenever i see a clown fish, I automatically think \"OMG, it's Nemo.\" \\u2665", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:27 +0000", "from_user": "LADYJOE210", "from_user_id": 194786705, "from_user_id_str": "194786705", "from_user_name": "MRS. BROWN", "geo": null, "id": 148831574404763650, "id_str": "148831574404763648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696247886/profile_image_1324031857687_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696247886/profile_image_1324031857687_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "I WONDER IF ALL THESE CLOWN NIGGAS IS ON SUM 1 PAYROLL.....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:25 +0000", "from_user": "Bisley28", "from_user_id": 15058721, "from_user_id_str": "15058721", "from_user_name": "Sarah May", "geo": null, "id": 148831567291224060, "id_str": "148831567291224064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685417612/photo_1_0d7b54153e21a8d05c3354eb5e938e5f_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685417612/photo_1_0d7b54153e21a8d05c3354eb5e938e5f_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@JustCira I'd prefer to have it chopped off by Adrian Scarborough in a botched operation and then become a bitter and angry clown.", "to_user": "JustCira", "to_user_id": 51402030, "to_user_id_str": "51402030", "to_user_name": "Cira", "in_reply_to_status_id": 148831247295197200, "in_reply_to_status_id_str": "148831247295197184"}, +{"created_at": "Mon, 19 Dec 2011 18:26:21 +0000", "from_user": "kaitlinjulia", "from_user_id": 88764190, "from_user_id_str": "88764190", "from_user_name": "Kaitlin Hann", "geo": null, "id": 148831551860383740, "id_str": "148831551860383744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1651197068/388768_10150375465682312_563252311_8921516_909641963_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651197068/388768_10150375465682312_563252311_8921516_909641963_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @CanadianProbz: the clown from Toy Castle that gave you nightmares #canadianprobz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:12 +0000", "from_user": "HeavenSENTasha", "from_user_id": 25588960, "from_user_id_str": "25588960", "from_user_name": "Natasha", "geo": null, "id": 148831511238553600, "id_str": "148831511238553600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687852313/profile_image_1323644663214_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687852313/profile_image_1323644663214_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "he doesnt want mi around..... hes got something to hide........ i think he wants a clown someone to take for a ride", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:08 +0000", "from_user": "_RiSSAPOOOHh_", "from_user_id": 146229675, "from_user_id_str": "146229675", "from_user_name": "\\u2606\\u2605C L A R I S S A\\u2606\\u2605", "geo": null, "id": 148831494545219600, "id_str": "148831494545219585", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677780954/_RiSSAPOOOHh__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677780954/_RiSSAPOOOHh__normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "My TL not too much booming no more @Sir_PoloRL12 @TE_2turnt_UP @Cum_B_aMAYSed me & Kim need y'all to clown with again", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:06 +0000", "from_user": "_OneColdBITCH", "from_user_id": 235812288, "from_user_id_str": "235812288", "from_user_name": "Ashlee", "geo": null, "id": 148831485691047940, "id_str": "148831485691047936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701389163/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701389163/profile_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "I cant wait for these concords to come out , & the clown feet females to be walkin around in them. #PureComedy lmao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:02 +0000", "from_user": "Denis_Bossman5", "from_user_id": 311725623, "from_user_id_str": "311725623", "from_user_name": "Denis Zimero", "geo": null, "id": 148831470167924740, "id_str": "148831470167924736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699686842/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699686842/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "I'll paint your face you a clown homie", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:00 +0000", "from_user": "Beg_4_BRI", "from_user_id": 237939560, "from_user_id_str": "237939560", "from_user_name": "BeatITbitch!", "geo": null, "id": 148831460734926850, "id_str": "148831460734926848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681271164/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681271164/me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "so bull had on a armani jacket nd was hype as shit killin dem maxes,, lol #clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:59 +0000", "from_user": "Chas_lovesMONEY", "from_user_id": 289670335, "from_user_id_str": "289670335", "from_user_name": "Chasity Banks", "geo": null, "id": 148831459162062850, "id_str": "148831459162062849", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700275926/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700275926/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "A true clown(:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:56 +0000", "from_user": "_LarryHoover", "from_user_id": 135541468, "from_user_id_str": "135541468", "from_user_name": "BE STUPID!'", "geo": null, "id": 148831444796571650, "id_str": "148831444796571648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1641360354/_LarryHoover_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641360354/_LarryHoover_normal.jpg", "source": "<a href="http://www.nibirutech.com" rel="nofollow">TwitBird</a>", "text": "RT @TwoMuch_TwoSee: Why\\uD83D\\uDE33RT @_LarryHoover @TwoMuch_TwoSee I can't wait to see you ima clown on yo ass\\uD83D\\uDE20", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:50 +0000", "from_user": "Jdore_CLorrix3", "from_user_id": 236272981, "from_user_id_str": "236272981", "from_user_name": "Chelse with an A\\u2122", "geo": null, "id": 148831421539168260, "id_str": "148831421539168257", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696007639/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696007639/image_normal.jpg", "source": "<a href="http://tweetlogix.com" rel="nofollow">Tweetlogix</a>", "text": "K.I.D.S. >> Best day ever >> Prelude to class clown << I love life, thank you >> blue slide park.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:47 +0000", "from_user": "NT7S", "from_user_id": 16308483, "from_user_id_str": "16308483", "from_user_name": "Jason Milldrum", "geo": null, "id": 148831406108311550, "id_str": "148831406108311553", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1651665890/Image-1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651665890/Image-1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iowahawkblog: First Al Davis, then Kim Jong-Il; bad year for insane clown-haired dictators in novelty Elvis sunglasses", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:46 +0000", "from_user": "Yella_Hawtie", "from_user_id": 265190171, "from_user_id_str": "265190171", "from_user_name": "J a i' m e", "geo": null, "id": 148831402346033150, "id_str": "148831402346033153", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679877959/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679877959/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "lol twitter world I would love for you to met @MrTurner_licks he is a true clown.. \\uD83D\\uDE0A", "to_user": "MrTurner_licks", "to_user_id": 196475302, "to_user_id_str": "196475302", "to_user_name": "Jonathan Turner", "in_reply_to_status_id": 148831060812234750, "in_reply_to_status_id_str": "148831060812234754"}, +{"created_at": "Mon, 19 Dec 2011 18:25:45 +0000", "from_user": "tricochee", "from_user_id": 162506855, "from_user_id_str": "162506855", "from_user_name": "Michael Tricochee", "geo": null, "id": 148831398436937730, "id_str": "148831398436937729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1550757972/250731_2078851257878_1442929052_2411327_1704185_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1550757972/250731_2078851257878_1442929052_2411327_1704185_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Lmfao i love wen my dad tells my brother he found rolling papers in my bag @John_0fficial lmfaoo clown #Gotchya", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:38 +0000", "from_user": "TonTon___", "from_user_id": 438121064, "from_user_id_str": "438121064", "from_user_name": "Anton", "geo": null, "id": 148831371320758270, "id_str": "148831371320758273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696028368/2011-11-29_09-42-42_416-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696028368/2011-11-29_09-42-42_416-1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@BCS__ Lmaooo Me and Anton clown in here.\\u201Dman yes lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:32 +0000", "from_user": "USTPoliSciProf", "from_user_id": 171601052, "from_user_id_str": "171601052", "from_user_name": "Jon Taylor, PhD", "geo": null, "id": 148831346788278270, "id_str": "148831346788278272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1498182945/In_front_of_Tiananmen_Gate________Beijing__PR_China._normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1498182945/In_front_of_Tiananmen_Gate________Beijing__PR_China._normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iowahawkblog: First Al Davis, then Kim Jong-Il; bad year for insane clown-haired dictators in novelty Elvis sunglasses", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:28 +0000", "from_user": "2Sexi4MyClothes", "from_user_id": 146135590, "from_user_id_str": "146135590", "from_user_name": "Bre'Shea Gibson", "geo": null, "id": 148831330287882240, "id_str": "148831330287882240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695779141/woah____normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695779141/woah____normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@_PrettyBLOWED @_MyFabLife @RatedM_Bxtch @Ladii_CB Cant wait til you get here. you know we about to clown", "to_user": "_PrettyBLOWED", "to_user_id": 144733766, "to_user_id_str": "144733766", "to_user_name": "ThisBITCH\\u2665", "in_reply_to_status_id": 148734598543704060, "in_reply_to_status_id_str": "148734598543704066"}, +{"created_at": "Mon, 19 Dec 2011 18:25:25 +0000", "from_user": "Romello_", "from_user_id": 157712335, "from_user_id_str": "157712335", "from_user_name": "QMoney ", "geo": null, "id": 148831315607826430, "id_str": "148831315607826432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702543064/Romello__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702543064/Romello__normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Haha RT @ShawtyEllo: U a pretty girl w a clown suit on so really u ugly dirt bag", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:14 +0000", "from_user": "_BoogieDown_", "from_user_id": 176701201, "from_user_id_str": "176701201", "from_user_name": "Boogie Humes \\uF8FF", "geo": null, "id": 148831270896545800, "id_str": "148831270896545793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677515448/658_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677515448/658_normal.JPG", "source": "<a href="http://stone.com/Twittelator" rel="nofollow">Twittelator</a>", "text": "Clown niggas RT @GottaLuvLexci_ Niggas eating ass is the new trend now?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:13 +0000", "from_user": "BCS__", "from_user_id": 30965161, "from_user_id_str": "30965161", "from_user_name": "Britt. =]", "geo": null, "id": 148831266731593730, "id_str": "148831266731593728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702383167/2011-12-19_11.08.51_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702383167/2011-12-19_11.08.51_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Lmaooo Me and Anton clown in here.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:12 +0000", "from_user": "5StarHB", "from_user_id": 208131302, "from_user_id_str": "208131302", "from_user_name": "Millz", "geo": null, "id": 148831261178331140, "id_str": "148831261178331136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1663975266/082211083517-1-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663975266/082211083517-1-1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "me n my ol girl b trippin on facebook .. i c whea i get my sense of humor frm da woman a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:10 +0000", "from_user": "goodingtontweet", "from_user_id": 374107082, "from_user_id_str": "374107082", "from_user_name": "What's Goodington", "geo": null, "id": 148831254970765300, "id_str": "148831254970765312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1625686677/original_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1625686677/original_normal.jpeg", "source": "<a href="http://www.linksalpha.com/" rel="nofollow">LinksAlpha</a>", "text": "Thom Brennaman calls Jerome Boyd a clown after a bad hit to the helmet http://t.co/wXA3rK5p #whatsgoodington", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:09 +0000", "from_user": "Koolin_OG", "from_user_id": 359727117, "from_user_id_str": "359727117", "from_user_name": "GP", "geo": null, "id": 148831250302513150, "id_str": "148831250302513152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1638050269/329760854_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638050269/329760854_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@NeshaJashawn u the clown lls fuck wrong wit u", "to_user": "NeshaJashawn", "to_user_id": 438114831, "to_user_id_str": "438114831", "to_user_name": "Nesha JaShawn", "in_reply_to_status_id": 148825801377329150, "in_reply_to_status_id_str": "148825801377329152"}, +{"created_at": "Mon, 19 Dec 2011 18:25:04 +0000", "from_user": "christosAL", "from_user_id": 425511775, "from_user_id_str": "425511775", "from_user_name": "christos liapopoulos", "geo": null, "id": 148831228336939000, "id_str": "148831228336939008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675586933/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675586933/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Mr lopes is a fucking clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:03 +0000", "from_user": "beckiscott", "from_user_id": 20051479, "from_user_id_str": "20051479", "from_user_name": "Becki Scott", "geo": null, "id": 148831224775979000, "id_str": "148831224775979009", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/614172663/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/614172663/twitterProfilePhoto_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@jennybull yeah I can! Hidden talents eh?! 3 balls is my max but can do a few different techniques #clown", "to_user": "jennybull", "to_user_id": 18609520, "to_user_id_str": "18609520", "to_user_name": "Jenny B", "in_reply_to_status_id": 148830676030988300, "in_reply_to_status_id_str": "148830676030988290"}, +{"created_at": "Mon, 19 Dec 2011 18:25:03 +0000", "from_user": "GetemBee", "from_user_id": 46734589, "from_user_id_str": "46734589", "from_user_name": "Bianca Toby", "geo": null, "id": 148831223014363140, "id_str": "148831223014363137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1688869357/grooves_9_20111211_1740125040_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688869357/grooves_9_20111211_1740125040_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Str8 up RT @Planet_REN: My feeling numb so you can't hurt me all you gone do is make yaself look like a clown clown.....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:58 +0000", "from_user": "tweeta_bear", "from_user_id": 348685451, "from_user_id_str": "348685451", "from_user_name": "me", "geo": null, "id": 148831202458087420, "id_str": "148831202458087424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700270471/tweeta_bear_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700270471/tweeta_bear_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "whoop whoop! RT @wickidlette87: its my hubbys @KillerBudz89 bday today show him some clown love!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:57 +0000", "from_user": "amberrlannce", "from_user_id": 328890713, "from_user_id_str": "328890713", "from_user_name": "\\u062A Eniats Amber \\u062A", "geo": null, "id": 148831199383650300, "id_str": "148831199383650304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702601093/amberrlannce_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702601093/amberrlannce_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @lawwrencee: @amberrlannce lmao clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:45 +0000", "from_user": "brendiiiiinha", "from_user_id": 80858535, "from_user_id_str": "80858535", "from_user_name": "brendoca", "geo": null, "id": 148831146988412930, "id_str": "148831146988412929", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684012573/todebrincs_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684012573/todebrincs_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "voc\\u00EA \\u00E9 uma clown !!!!!!!! kkkkkkkkk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:41 +0000", "from_user": "JayGray73", "from_user_id": 145308243, "from_user_id_str": "145308243", "from_user_name": "Jason Gray", "geo": null, "id": 148831132497092600, "id_str": "148831132497092608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1598692981/artless_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598692981/artless_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iowahawkblog: First Al Davis, then Kim Jong-Il; bad year for insane clown-haired dictators in novelty Elvis sunglasses", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:35 +0000", "from_user": "Maskinntape", "from_user_id": 35608886, "from_user_id_str": "35608886", "from_user_name": "Rachel Maskin", "geo": null, "id": 148831104592388100, "id_str": "148831104592388096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701492461/tkU1zvTo_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701492461/tkU1zvTo_normal", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @BitchyBrunette: What is that you're wearing? Calvin Clown? #BitchyBrunette", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:30 +0000", "from_user": "iB_daGreat", "from_user_id": 310109260, "from_user_id_str": "310109260", "from_user_name": "I Am Legend.", "geo": null, "id": 148831083524395000, "id_str": "148831083524395008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689971659/og0cm8qb_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689971659/og0cm8qb_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "My guy said we got horses on our shirts and horseshoes on our pants LMAO #Clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:29 +0000", "from_user": "Strong__WILLed", "from_user_id": 195172343, "from_user_id_str": "195172343", "from_user_name": "Smith, Will ", "geo": null, "id": 148831080848429060, "id_str": "148831080848429056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701072403/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701072403/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "class clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:28 +0000", "from_user": "504Smoke1", "from_user_id": 312174162, "from_user_id_str": "312174162", "from_user_name": "Yung504Smoke", "geo": null, "id": 148831076117262340, "id_str": "148831076117262336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694160153/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694160153/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "@Immature_Adult <====clown (bozo)", "to_user": "Immature_Adult", "to_user_id": 247544361, "to_user_id_str": "247544361", "to_user_name": "Lisa Turtle", "in_reply_to_status_id": 148829177653641200, "in_reply_to_status_id_str": "148829177653641216"}, +{"created_at": "Mon, 19 Dec 2011 18:24:27 +0000", "from_user": "JazDiva2010", "from_user_id": 145513102, "from_user_id_str": "145513102", "from_user_name": "Jasmine Dakers", "geo": null, "id": 148831072019419140, "id_str": "148831072019419137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686428767/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686428767/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "U a Clown u only wanna b wit him bcuz of wat he cn do 4 u, NewsFlash Stupid: Karma is a Mf!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:25 +0000", "from_user": "AuntieCrystal_", "from_user_id": 116042642, "from_user_id_str": "116042642", "from_user_name": "Crystaaalllll \\uE022", "geo": null, "id": 148831065765720060, "id_str": "148831065765720064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1610212586/AuntieCrystal__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610212586/AuntieCrystal__normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "My grandma told me to get a job! Lmfao clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:22 +0000", "from_user": "ShawtyEllo", "from_user_id": 217279123, "from_user_id_str": "217279123", "from_user_name": "Ello", "geo": null, "id": 148831052729815040, "id_str": "148831052729815041", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1667122827/photo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667122827/photo_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "U a pretty girl w a clown suit on so really u ugly dirt bag", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:17 +0000", "from_user": "semperdirkes", "from_user_id": 120282211, "from_user_id_str": "120282211", "from_user_name": "Andrew Dirkes", "geo": null, "id": 148831030244163600, "id_str": "148831030244163584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1606748697/fd9ed341-8a55-4470-a4c4-3b78c3da1264_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606748697/fd9ed341-8a55-4470-a4c4-3b78c3da1264_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iowahawkblog: First Al Davis, then Kim Jong-Il; bad year for insane clown-haired dictators in novelty Elvis sunglasses", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:16 +0000", "from_user": "KeshiaTaylor", "from_user_id": 45183680, "from_user_id_str": "45183680", "from_user_name": "Keshia Taylor", "geo": null, "id": 148831027329110000, "id_str": "148831027329110017", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693656831/Photo_on_2011-06-05_at_11.58_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693656831/Photo_on_2011-06-05_at_11.58_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "OMG, just found out how to send a twitpic.. being the backwards clown i am.. lets get these pictures rolling baby! #ohdear", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:13 +0000", "from_user": "CertifiedLeland", "from_user_id": 174951367, "from_user_id_str": "174951367", "from_user_name": "Jeremy Gray", "geo": null, "id": 148831015031406600, "id_str": "148831015031406592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1629359036/263872_220969421256709_100000309579825_758646_2253161_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629359036/263872_220969421256709_100000309579825_758646_2253161_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SmoothDudeQ oh where that clown sequel @??? Shi just Dm yo # bro", "to_user": "SmoothDudeQ", "to_user_id": 120856810, "to_user_id_str": "120856810", "to_user_name": "Est. 1991", "in_reply_to_status_id": 148830882336210940, "in_reply_to_status_id_str": "148830882336210946"}, +{"created_at": "Mon, 19 Dec 2011 18:24:02 +0000", "from_user": "Ethelssoninlaw", "from_user_id": 337466567, "from_user_id_str": "337466567", "from_user_name": "Jeff Schwartzman", "geo": null, "id": 148830968466243600, "id_str": "148830968466243587", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iowahawkblog: First Al Davis, then Kim Jong-Il; bad year for insane clown-haired dictators in novelty Elvis sunglasses", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:01 +0000", "from_user": "LeonsBored", "from_user_id": 266821106, "from_user_id_str": "266821106", "from_user_name": "Leon", "geo": null, "id": 148830962527125500, "id_str": "148830962527125505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1600004221/sdfs_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600004221/sdfs_normal.png", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Strumph is such a clown, sleepin with an asscheek out lmao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:59 +0000", "from_user": "bigdave0908", "from_user_id": 18235245, "from_user_id_str": "18235245", "from_user_name": "Dave Williams", "geo": null, "id": 148830957066137600, "id_str": "148830957066137600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693791721/dave_in_hat_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693791721/dave_in_hat_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Well-played. RT @iowahawkblog: First Al Davis, then Kim Jong-Il; bad year for insane clown-haired dictators in novelty Elvis sunglasses", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:47 +0000", "from_user": "DREfamous", "from_user_id": 47121034, "from_user_id_str": "47121034", "from_user_name": "sno\\u026F\\u0250\\u025F \\u01DD\\u0279p \\u265B.", "geo": null, "id": 148830906004672500, "id_str": "148830906004672513", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700754998/swaggy_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700754998/swaggy_normal.JPG", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "RT @SatinScarlett: RT @_Krissy_Beauty: RT @DREfamous lmaoooo jiggz is a clown b.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:47 +0000", "from_user": "LordSiriusLight", "from_user_id": 346241438, "from_user_id_str": "346241438", "from_user_name": "Jack Light", "geo": null, "id": 148830905224531970, "id_str": "148830905224531968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695416352/Arikado_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695416352/Arikado_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "*runs around, punching a zombified clown troupe* NYAHAAAHHHHHHHHH! *keeps running*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:47 +0000", "from_user": "shesthatgirl02", "from_user_id": 91436171, "from_user_id_str": "91436171", "from_user_name": "P G", "geo": null, "id": 148830904675090430, "id_str": "148830904675090432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699568262/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699568262/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "So @_trinabean just called me a bitch lol..ins nice way lol...shes a big clown with n big ass red nose lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:38 +0000", "from_user": "Glam_Diva_101", "from_user_id": 353876167, "from_user_id_str": "353876167", "from_user_name": "Asiaboo", "geo": null, "id": 148830868448874500, "id_str": "148830868448874496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1672819493/RzhSNaaj_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672819493/RzhSNaaj_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@ADickeyy yu know mommy will clown da shit out of us if we ever told her to check sumbody our age will hear her mouth she'll tell everybody", "to_user": "ADickeyy", "to_user_id": 194446772, "to_user_id_str": "194446772", "to_user_name": "\\uE335Eliza Marie100\\uE335", "in_reply_to_status_id": 148828499812159500, "in_reply_to_status_id_str": "148828499812159488"}, +{"created_at": "Mon, 19 Dec 2011 18:23:38 +0000", "from_user": "ConnieHair", "from_user_id": 16890518, "from_user_id_str": "16890518", "from_user_name": "Connie Hair", "geo": null, "id": 148830867870072830, "id_str": "148830867870072832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/803430844/Connie_Christmas_2010_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/803430844/Connie_Christmas_2010_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iowahawkblog: First Al Davis, then Kim Jong-Il; bad year for insane clown-haired dictators in novelty Elvis sunglasses", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:36 +0000", "from_user": "cynaleo", "from_user_id": 36526225, "from_user_id_str": "36526225", "from_user_name": "Cyndi Leo", "geo": null, "id": 148830860169318400, "id_str": "148830860169318400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1462587751/goofy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1462587751/goofy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MrWordsWorth: If you build a snowman and can only imagine him as a parson or circus clown, you have a very sad imagination.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:36 +0000", "from_user": "TipOvHis_Tongue", "from_user_id": 339458689, "from_user_id_str": "339458689", "from_user_name": "Diamond Kardashian", "geo": null, "id": 148830857287835650, "id_str": "148830857287835649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1463303661/1yOsIfav_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1463303661/1yOsIfav_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "All iWant Fa Christmas iZ Fa Mi Homie B4 2WAKE ME UP &SAY MERRY CHRISTMAS CLOWN..! #MissinqHim lyke School Daiz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:31 +0000", "from_user": "_loneybaby", "from_user_id": 234870549, "from_user_id_str": "234870549", "from_user_name": "Alondrea ♥", "geo": null, "id": 148830836945457150, "id_str": "148830836945457152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1656466401/loney_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656466401/loney_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Lol CLOWN !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:30 +0000", "from_user": "FnCheese", "from_user_id": 302676301, "from_user_id_str": "302676301", "from_user_name": "MIGUEL REYES ", "geo": null, "id": 148830832935714800, "id_str": "148830832935714816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702198005/profile_image_1324305324473_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702198005/profile_image_1324305324473_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "Lol never entertain...I'm Real Tho..RT @o_Witness No, I was too busy trying to be a clown and (cont) http://t.co/yoe77PJO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:26 +0000", "from_user": "TurismoST", "from_user_id": 138492740, "from_user_id_str": "138492740", "from_user_name": "Turismo Santa Tecla", "geo": null, "id": 148830817945260030, "id_str": "148830817945260032", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/860577874/daniel-hernandez-low_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/860577874/daniel-hernandez-low_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @alejoclown: @TurismoST este dia se presenta Lagrimas de risa en el paseo el carmen con un super show clown con nuevos malares y un show de fuego RT :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:25 +0000", "from_user": "FiercelyLuvnTee", "from_user_id": 214340365, "from_user_id_str": "214340365", "from_user_name": "Tiffany Diamond", "geo": null, "id": 148830813667065860, "id_str": "148830813667065857", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1642346424/Tiff_part_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642346424/Tiff_part_1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "LMAO hmph toleme `_` RT @intheKEyoflyfe: @FiercelyLuvnTee byee you ALWAYS a clown", "to_user": "intheKEyoflyfe", "to_user_id": 242597496, "to_user_id_str": "242597496", "to_user_name": "Ke.", "in_reply_to_status_id": 148830186895450100, "in_reply_to_status_id_str": "148830186895450112"}, +{"created_at": "Mon, 19 Dec 2011 18:23:20 +0000", "from_user": "24stSlickTalker", "from_user_id": 171312124, "from_user_id_str": "171312124", "from_user_name": "nunu's dad", "geo": null, "id": 148830790267060220, "id_str": "148830790267060224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689667332/profile_image_1323724298956_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689667332/profile_image_1323724298956_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Sum clown jus ask me how many calories was in the salad dressing. I jus pointed to the sign that clearly list the calories! Smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:18 +0000", "from_user": "_ClaireSmith", "from_user_id": 275552564, "from_user_id_str": "275552564", "from_user_name": "Claire Smith", "geo": null, "id": 148830784273399800, "id_str": "148830784273399808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1595531346/299174_10150323670195940_508335939_8460317_1492622042_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1595531346/299174_10150323670195940_508335939_8460317_1492622042_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@mikkaayyla saw your tweets...homeboys just upset bc he realized he never had a chance haha! @lebs16 will take care of the clown.", "to_user": "mikkaayyla", "to_user_id": 408141014, "to_user_id_str": "408141014", "to_user_name": "Mikayla Henry"}, +{"created_at": "Mon, 19 Dec 2011 18:23:16 +0000", "from_user": "skippyg0tswag", "from_user_id": 155284068, "from_user_id_str": "155284068", "from_user_name": "Krysten Fletcher", "geo": null, "id": 148830774429356030, "id_str": "148830774429356033", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702608227/tumblr_lvc8gnLxSO1r5k5ryo1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702608227/tumblr_lvc8gnLxSO1r5k5ryo1_500_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @AndreaCardentey: #IWasThatKid that was the class clown lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:16 +0000", "from_user": "SHiTTY407", "from_user_id": 355800344, "from_user_id_str": "355800344", "from_user_name": "Shitted'ON'em", "geo": null, "id": 148830774299344900, "id_str": "148830774299344896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1651647931/shendz-photo-app-2011-10-22-02-46-0_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651647931/shendz-photo-app-2011-10-22-02-46-0_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Yea I must clown I'm from Uptown! Where we flash money.. Take ur bitch an ask WHAT NOW!?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:07 +0000", "from_user": "_ilovechanel", "from_user_id": 211594938, "from_user_id_str": "211594938", "from_user_name": "Chanel Nicole", "geo": null, "id": 148830737037131780, "id_str": "148830737037131776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700717222/_ilovechanel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700717222/_ilovechanel_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@Crazy4CiCi Lmfao yur a clown like really hahaha I'm putting Sasha back in but I'm gluing her in", "to_user": "Crazy4CiCi", "to_user_id": 266070066, "to_user_id_str": "266070066", "to_user_name": "Cierra Dior", "in_reply_to_status_id": 148826930005815300, "in_reply_to_status_id_str": "148826930005815296"}, +{"created_at": "Mon, 19 Dec 2011 18:23:04 +0000", "from_user": "lawwrencee", "from_user_id": 330795202, "from_user_id_str": "330795202", "from_user_name": "lawrence ", "geo": null, "id": 148830725678960640, "id_str": "148830725678960640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1626685127/Aqua_8s_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626685127/Aqua_8s_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@amberrlannce lmao clown", "to_user": "amberrlannce", "to_user_id": 328890713, "to_user_id_str": "328890713", "to_user_name": "\\u062A Eniats Amber \\u062A", "in_reply_to_status_id": 148829917654679550, "in_reply_to_status_id_str": "148829917654679552"}, +{"created_at": "Mon, 19 Dec 2011 18:23:03 +0000", "from_user": "ItsCopeeBxtch", "from_user_id": 148627046, "from_user_id_str": "148627046", "from_user_name": "Forevaa ` Grateful", "geo": null, "id": 148830720897462270, "id_str": "148830720897462272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698548656/593E2eYl_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698548656/593E2eYl_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "she's a freakin clown ...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:59 +0000", "from_user": "megkell10", "from_user_id": 339296772, "from_user_id_str": "339296772", "from_user_name": "Meaghan", "geo": null, "id": 148830705047187460, "id_str": "148830705047187456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688440131/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688440131/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@dmart94 your an absolute #clown. Your not a true \"temple runner\"", "to_user": "dmart94", "to_user_id": 41494733, "to_user_id_str": "41494733", "to_user_name": "Dimitri Martinos"}, +{"created_at": "Mon, 19 Dec 2011 18:22:59 +0000", "from_user": "_SimplyMe89", "from_user_id": 80363885, "from_user_id_str": "80363885", "from_user_name": "Loading...", "geo": null, "id": 148830702119559170, "id_str": "148830702119559168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1652970811/hk1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652970811/hk1_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@OhDatsDaBol_MIR lol fine Jamir is a clown.. Lol \\uD83D\\uDE1D", "to_user": "OhDatsDaBol_MIR", "to_user_id": 103235902, "to_user_id_str": "103235902", "to_user_name": "Just Mir ", "in_reply_to_status_id": 148830282122919940, "in_reply_to_status_id_str": "148830282122919936"}, +{"created_at": "Mon, 19 Dec 2011 18:22:58 +0000", "from_user": "SatinScarlett", "from_user_id": 47393977, "from_user_id_str": "47393977", "from_user_name": "Satin I. Scarlett ", "geo": null, "id": 148830698856394750, "id_str": "148830698856394752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698843350/collage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698843350/collage_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Krissy_Beauty: RT @DREfamous lmaoooo jiggz is a clown b.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:56 +0000", "from_user": "aminmiamibxtch", "from_user_id": 315905699, "from_user_id_str": "315905699", "from_user_name": "amxn", "geo": null, "id": 148830691122102270, "id_str": "148830691122102273", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1596221061/305285_106466342790718_100002820590968_34340_2842584_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596221061/305285_106466342790718_100002820590968_34340_2842584_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@Heeriana aku clown ke....:')\\nsayang yang sudah tu shudah HAHAHA hantar ah pringles delivery di doorstep saya", "to_user": "Heeriana", "to_user_id": 115820283, "to_user_id_str": "115820283", "to_user_name": "Nur Khiriana", "in_reply_to_status_id": 148829817427607550, "in_reply_to_status_id_str": "148829817427607553"}, +{"created_at": "Mon, 19 Dec 2011 18:22:51 +0000", "from_user": "fuckitsVicky", "from_user_id": 86527102, "from_user_id_str": "86527102", "from_user_name": "Vicky Cruz \\u2605", "geo": null, "id": 148830671266250750, "id_str": "148830671266250752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1626083882/310341_283225738367779_100000410660844_1061379_1098063080_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626083882/310341_283225738367779_100000410660844_1061379_1098063080_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @AndreaCardentey: #IWasThatKid that was the class clown lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:48 +0000", "from_user": "LovinMunnyCat_", "from_user_id": 62659300, "from_user_id_str": "62659300", "from_user_name": "\\u25CF\\u273FMissinSemaja\\u2606\\u2122\\u2733 \\u2665", "geo": null, "id": 148830655499874300, "id_str": "148830655499874304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688193496/imagejpeg_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688193496/imagejpeg_2_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "RT @_CoutureLevel: RT @SecretsOfaBOSS Niggas Be Trippin Like Clown Shoes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:40 +0000", "from_user": "nadgregoire", "from_user_id": 17666978, "from_user_id_str": "17666978", "from_user_name": "Howlin' Nad Gregoire", "geo": null, "id": 148830621899309060, "id_str": "148830621899309056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1679971311/9_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679971311/9_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Today's self-depricating descriptor is \"Ass-Clown\".", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:38 +0000", "from_user": "_ForeverSydney_", "from_user_id": 287719176, "from_user_id_str": "287719176", "from_user_name": "Porcha Sanderfield", "geo": null, "id": 148830615301656580, "id_str": "148830615301656576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698473520/porcha_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698473520/porcha_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Nd the other half black #clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:37 +0000", "from_user": "Miss_Gushers", "from_user_id": 128581828, "from_user_id_str": "128581828", "from_user_name": "Tasha Mack \\u2122", "geo": null, "id": 148830612151730180, "id_str": "148830612151730177", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698864114/121711101935-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698864114/121711101935-1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Lmatfo at stepping out looking like a clown ...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:35 +0000", "from_user": "shesDeja_", "from_user_id": 233081913, "from_user_id_str": "233081913", "from_user_name": "deja C. ", "geo": null, "id": 148830602160898050, "id_str": "148830602160898049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701524409/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701524409/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@JustA_QUICKie shut clown ass up", "to_user": "JustA_QUICKie", "to_user_id": 263215785, "to_user_id_str": "263215785", "to_user_name": "Jordan Quick", "in_reply_to_status_id": 148830470061309950, "in_reply_to_status_id_str": "148830470061309952"}, +{"created_at": "Mon, 19 Dec 2011 18:22:31 +0000", "from_user": "Kveeeezy", "from_user_id": 366421729, "from_user_id_str": "366421729", "from_user_name": "KV", "geo": null, "id": 148830588034486270, "id_str": "148830588034486272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699185745/Photo_on_2011-09-15_at_18.30_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699185745/Photo_on_2011-09-15_at_18.30_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Sage_Egyptian I was just about to say she remind me of your clown ass when she was fighting the robber", "to_user": "Sage_Egyptian", "to_user_id": 262487258, "to_user_id_str": "262487258", "to_user_name": "Mamacitaaa6:)", "in_reply_to_status_id": 148828312721039360, "in_reply_to_status_id_str": "148828312721039360"}, +{"created_at": "Mon, 19 Dec 2011 18:22:31 +0000", "from_user": "Gillybag", "from_user_id": 21740502, "from_user_id_str": "21740502", "from_user_name": "Gillian", "geo": null, "id": 148830586532929540, "id_str": "148830586532929537", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693497943/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693497943/profile_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@justafriend1 clown pants! There will be present exchanging too. Possibly best nandos experience ever!", "to_user": "justafriend1", "to_user_id": 26826828, "to_user_id_str": "26826828", "to_user_name": "stephanie scott", "in_reply_to_status_id": 148829097106223100, "in_reply_to_status_id_str": "148829097106223106"}, +{"created_at": "Mon, 19 Dec 2011 18:22:25 +0000", "from_user": "ScottyO_10", "from_user_id": 318194705, "from_user_id_str": "318194705", "from_user_name": "Scott Ogden", "geo": null, "id": 148830559177674750, "id_str": "148830559177674752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1678079982/161202_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678079982/161202_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@h_schaeefff haha what the fuckk. I'm about to buy a sick ass clown hat and get \"does it pop??\" stitched on it.", "to_user": "h_schaeefff", "to_user_id": 412605220, "to_user_id_str": "412605220", "to_user_name": "hannah schaeffer", "in_reply_to_status_id": 148828235696844800, "in_reply_to_status_id_str": "148828235696844800"}, +{"created_at": "Mon, 19 Dec 2011 18:22:22 +0000", "from_user": "oithassy", "from_user_id": 180474147, "from_user_id_str": "180474147", "from_user_name": "\\u2661", "geo": null, "id": 148830549753073660, "id_str": "148830549753073665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668494539/DSC01802_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668494539/DSC01802_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "I hear \"The Tears of a Clown\", I hate that song, I always feel like they talking to me when it comes on \\u2192 verdade, puta m\\u00FAsica linda...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:20 +0000", "from_user": "thoolou", "from_user_id": 176931855, "from_user_id_str": "176931855", "from_user_name": "Rik Marlowe", "geo": null, "id": 148830540571746300, "id_str": "148830540571746304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1479209628/Salvador-Dali_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1479209628/Salvador-Dali_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @iowahawkblog: First Al Davis, then Kim Jong-Il; bad year for insane clown-haired dictators in novelty Elvis sunglasses", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:11 +0000", "from_user": "kb_kinx", "from_user_id": 87761363, "from_user_id_str": "87761363", "from_user_name": "askaboutkinx \\uF8EB ", "geo": null, "id": 148830500604223500, "id_str": "148830500604223488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1576537275/twitpic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576537275/twitpic_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Hahaaha Just remembered Antoine Dodson! Where's dat clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:08 +0000", "from_user": "HotSexNCldWine", "from_user_id": 45005660, "from_user_id_str": "45005660", "from_user_name": "HoneyLashay", "geo": null, "id": 148830487903870980, "id_str": "148830487903870976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696064046/c9K83nPk_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696064046/c9K83nPk_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@iGot_AsS_4DaYs NIGGA I LIVE W/U!& going 2 fa the next 2 years!! WE ALWAYS CLOWN WAT DO U MEAN?! Lol", "to_user": "iGot_AsS_4DaYs", "to_user_id": 386271553, "to_user_id_str": "386271553", "to_user_name": "-- Mari :)) --", "in_reply_to_status_id": 148830116577943550, "in_reply_to_status_id_str": "148830116577943552"}, +{"created_at": "Mon, 19 Dec 2011 18:22:06 +0000", "from_user": "DaddyGriffis", "from_user_id": 14603277, "from_user_id_str": "14603277", "from_user_name": "Griffis", "geo": null, "id": 148830482828763140, "id_str": "148830482828763136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/501346154/IMG_1062_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/501346154/IMG_1062_normal.JPG", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "Thinking about buying a new vehicle soon? Don't be a clown, be like Charlie Brown and come see me at All Star Toy http://t.co/fDpFfLcW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:06 +0000", "from_user": "o_Witness", "from_user_id": 68827090, "from_user_id_str": "68827090", "from_user_name": "ACE jR", "geo": null, "id": 148830481192980480, "id_str": "148830481192980480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1644756101/LiftedAce_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644756101/LiftedAce_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "No, I was too busy trying to be a clown and entertain ppl just like you. RT @FnCheese: @o_Witness Wasn't You Just ... http://t.co/PddmFJmT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:03 +0000", "from_user": "Elenoraigv", "from_user_id": 431747645, "from_user_id_str": "431747645", "from_user_name": "Elenora Beightol", "geo": null, "id": 148830468182253570, "id_str": "148830468182253568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681130286/large_brendah_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681130286/large_brendah_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Insane Clown Posse Ringmaster Chain Wallet: Insane Clown Posse Ringmaster Chain Wallet. This Insane Clown Posse ... http://t.co/iFFOqcxI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:02 +0000", "from_user": "iowahawkblog", "from_user_id": 149913262, "from_user_id_str": "149913262", "from_user_name": "David Burge", "geo": null, "id": 148830464818421760, "id_str": "148830464818421760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1168478910/ih081112_big_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1168478910/ih081112_big_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "First Al Davis, then Kim Jong-Il; bad year for insane clown-haired dictators in novelty Elvis sunglasses", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:01 +0000", "from_user": "JayShowtimeF1st", "from_user_id": 413172231, "from_user_id_str": "413172231", "from_user_name": "Wake Shxxt Toota", "geo": null, "id": 148830460334718980, "id_str": "148830460334718976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702259453/bJ5575V7_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702259453/bJ5575V7_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Woww ii juss bust ma ass infront of da whole class, ii feel like a fuckn #CLOWN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:58 +0000", "from_user": "_Krissy_Beauty", "from_user_id": 73920179, "from_user_id_str": "73920179", "from_user_name": "Krissy Carter :) ", "geo": null, "id": 148830448708104200, "id_str": "148830448708104192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702378431/profile_image_1324311912992_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702378431/profile_image_1324311912992_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "RT @DREfamous lmaoooo jiggz is a clown b.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:58 +0000", "from_user": "vdejoseph25", "from_user_id": 235347405, "from_user_id_str": "235347405", "from_user_name": "Vince DeJoseph", "geo": null, "id": 148830448699719680, "id_str": "148830448699719680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1213426433/67115_1507717658365_1397028307_31167658_1822799_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1213426433/67115_1507717658365_1397028307_31167658_1822799_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@MikeMac61 you're gonna die clown!", "to_user": "MikeMac61", "to_user_id": 234439495, "to_user_id_str": "234439495", "to_user_name": "Michael McIntosh", "in_reply_to_status_id": 148828592049102850, "in_reply_to_status_id_str": "148828592049102848"}, +{"created_at": "Mon, 19 Dec 2011 18:21:51 +0000", "from_user": "mkhaidet", "from_user_id": 14329461, "from_user_id_str": "14329461", "from_user_name": "Michelle Haidet", "geo": null, "id": 148830420128112640, "id_str": "148830420128112641", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1109609836/2b2351db-e3c0-4fd0-a06e-55965a76d432_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1109609836/2b2351db-e3c0-4fd0-a06e-55965a76d432_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "still uncomfortable from it #CLOWN RT @WhitneyM_King Just got second hand embarrassment watching an awkward proposal video with @mkhaidet.", "to_user": "WhitneyM_King", "to_user_id": 11059022, "to_user_id_str": "11059022", "to_user_name": "Whitney M King", "in_reply_to_status_id": 148829663135932400, "in_reply_to_status_id_str": "148829663135932416"}, +{"created_at": "Mon, 19 Dec 2011 18:21:41 +0000", "from_user": "thedailywitness", "from_user_id": 380510294, "from_user_id_str": "380510294", "from_user_name": "Jonas Kane", "geo": null, "id": 148830376985501700, "id_str": "148830376985501696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1564230685/burnsy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1564230685/burnsy_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "The TeaParty infested, 9%approved, HouseOfReps clown-show has a boot on the throat of the American People. #PayrollTaxCut #WeAreThe91percent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:42 +0000", "from_user": "G5_86", "from_user_id": 346165054, "from_user_id_str": "346165054", "from_user_name": "Greg Franklin Jr.", "geo": null, "id": 148830376608006140, "id_str": "148830376608006144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700970036/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700970036/image_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Camera on iOS</a>", "text": "And the clown prince of course http://t.co/rXbCKBly", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:36 +0000", "from_user": "YoungCrim", "from_user_id": 155089847, "from_user_id_str": "155089847", "from_user_name": "Crim Della Creme", "geo": null, "id": 148830356542455800, "id_str": "148830356542455808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1664676648/Young_crim_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664676648/Young_crim_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@StahlettTweets man I'm not even gonna clown you lol", "to_user": "StahlettTweets", "to_user_id": 175758252, "to_user_id_str": "175758252", "to_user_name": "Hoyada \\u0394\\u03A9\\u03A8", "in_reply_to_status_id": 148790450311008260, "in_reply_to_status_id_str": "148790450311008256"}, +{"created_at": "Mon, 19 Dec 2011 18:21:30 +0000", "from_user": "RancidGooner", "from_user_id": 212245278, "from_user_id_str": "212245278", "from_user_name": "RancidGooner", "geo": null, "id": 148830330671992830, "id_str": "148830330671992833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681236294/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681236294/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @ChefNero: @RancidGooner in Tenerife? Such a clown! Yet you could not come\\nTo mine. Cunt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:28 +0000", "from_user": "xx_elinexx", "from_user_id": 203975084, "from_user_id_str": "203975084", "from_user_name": "eline", "geo": null, "id": 148830320068796400, "id_str": "148830320068796417", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686930093/331284204_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686930093/331284204_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @XemmaX2: @xx_elinexx heb een hele fantasie over mij en een clown :S - hahaha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:24 +0000", "from_user": "BunnehRen", "from_user_id": 281021088, "from_user_id_str": "281021088", "from_user_name": "A Fluffy Bunny", "geo": null, "id": 148830305413890050, "id_str": "148830305413890048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1645641183/lolcher_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645641183/lolcher_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Fate/Extra: now with creepy cannibalistic loli clown who want's to take a bite of ya ass... literaly.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:23 +0000", "from_user": "Scream_Dro", "from_user_id": 323286687, "from_user_id_str": "323286687", "from_user_name": "p e y t o n. \\u30C4", "geo": null, "id": 148830302876352500, "id_str": "148830302876352512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700800838/401149_10150417333291053_715066052_8862572_7179937_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700800838/401149_10150417333291053_715066052_8862572_7179937_n_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Clown ass.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:24 +0000", "from_user": "imya_GRANDPA", "from_user_id": 279725063, "from_user_id_str": "279725063", "from_user_name": "January8 :)", "geo": null, "id": 148830300762411000, "id_str": "148830300762411009", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700582241/g6538Q6F_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700582241/g6538Q6F_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Imma clown :) http://t.co/qDw5ZYlt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:21:22 +0000", "from_user": "StephStaccs", "from_user_id": 102820234, "from_user_id_str": "102820234", "from_user_name": "Staccs", "geo": null, "id": 148830298002563070, "id_str": "148830298002563074", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698856404/331623450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698856404/331623450_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "It may seem like I have girl problem but I dnt iim juss irritated by these gyal clown and these bitches aint shit like 4real", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:21 +0000", "from_user": "h8allie", "from_user_id": 137923479, "from_user_id_str": "137923479", "from_user_name": "Allie B", "geo": null, "id": 148830294315761660, "id_str": "148830294315761664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1661265878/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661265878/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Call me a clown but a week from now you're goin' to hear this and begin to ride on my dick.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:19 +0000", "from_user": "_CoutureLevel", "from_user_id": 150516885, "from_user_id_str": "150516885", "from_user_name": "QueenCoffee", "geo": null, "id": 148830285142835200, "id_str": "148830285142835200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685347740/profile_image_1323537288139_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685347740/profile_image_1323537288139_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "RT @SecretsOfaBOSS Niggas Be Trippin Like Clown Shoes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:19 +0000", "from_user": "BETcha1realize", "from_user_id": 231096282, "from_user_id_str": "231096282", "from_user_name": "Bethany Ferguson", "geo": null, "id": 148830282613665800, "id_str": "148830282613665792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668228538/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668228538/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": ":(\\u00AB-- kmsl y clown my art work though. #imsaddnow", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:19 +0000", "from_user": "OhDatsDaBol_MIR", "from_user_id": 103235902, "from_user_id_str": "103235902", "from_user_name": "Just Mir ", "geo": null, "id": 148830282122919940, "id_str": "148830282122919936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1667286459/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667286459/image_normal.jpg", "source": "<a href="http://bit.ly/fVzRUd" rel="nofollow">TwitPal</a>", "text": "@ me tho RT @_SimplyMe89: Cthu Jamir is a clown!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:13 +0000", "from_user": "ChefNero", "from_user_id": 291346163, "from_user_id_str": "291346163", "from_user_name": "Le Chef Nero", "geo": null, "id": 148830259331076100, "id_str": "148830259331076096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693311363/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693311363/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@RancidGooner in Tenerife? Such a clown! Yet you could not come\\nTo mine. Cunt", "to_user": "RancidGooner", "to_user_id": 212245278, "to_user_id_str": "212245278", "to_user_name": "RancidGooner", "in_reply_to_status_id": 148829001199267840, "in_reply_to_status_id_str": "148829001199267840"}, +{"created_at": "Mon, 19 Dec 2011 18:21:11 +0000", "from_user": "concobe", "from_user_id": 334549458, "from_user_id_str": "334549458", "from_user_name": "Peekay", "geo": null, "id": 148830249197637630, "id_str": "148830249197637632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1678864380/331054706_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678864380/331054706_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "This guy Jabulani is complete clown..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:03 +0000", "from_user": "divastatusstar", "from_user_id": 136369694, "from_user_id_str": "136369694", "from_user_name": "Star ", "geo": null, "id": 148830216289124350, "id_str": "148830216289124352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1646094780/divastatusstar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646094780/divastatusstar_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@maCO_13 I know cuz especially knowing the bd will clown", "to_user": "maCO_13", "to_user_id": 240078579, "to_user_id_str": "240078579", "to_user_name": "$ CO DENIRO $", "in_reply_to_status_id": 148827322261311500, "in_reply_to_status_id_str": "148827322261311488"}, +{"created_at": "Mon, 19 Dec 2011 18:20:56 +0000", "from_user": "intheKEyoflyfe", "from_user_id": 242597496, "from_user_id_str": "242597496", "from_user_name": "Ke.", "geo": null, "id": 148830186895450100, "id_str": "148830186895450112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1665040114/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665040114/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@FiercelyLuvnTee byee you ALWAYS a clown", "to_user": "FiercelyLuvnTee", "to_user_id": 214340365, "to_user_id_str": "214340365", "to_user_name": "Tiffany Diamond", "in_reply_to_status_id": 148829952383528960, "in_reply_to_status_id_str": "148829952383528960"}, +{"created_at": "Mon, 19 Dec 2011 18:20:53 +0000", "from_user": "_jeroeentje_", "from_user_id": 309033413, "from_user_id_str": "309033413", "from_user_name": "Jeroen ", "geo": null, "id": 148830176795566080, "id_str": "148830176795566081", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1648829156/vlieland_2_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648829156/vlieland_2_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @JongerenSwag_: Ik: \"Ik word de nieuwe hitler, ik vermoord alle joden en 1 clown\"\\nHij: \"waarom een clown\"\\nIk: \"Zie je, niemand geeft om die joden!\" #JSW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:51 +0000", "from_user": "big_dawg_tweets", "from_user_id": 107161767, "from_user_id_str": "107161767", "from_user_name": "^WHY DEY ON MY D**K^", "geo": null, "id": 148830167308050430, "id_str": "148830167308050432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1667512270/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667512270/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "& hang up on me like imma clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:50 +0000", "from_user": "hartjelanaa", "from_user_id": 277565342, "from_user_id_str": "277565342", "from_user_name": "Lana ", "geo": null, "id": 148830161733824500, "id_str": "148830161733824512", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698270760/Weesp-20111217-00705_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698270760/Weesp-20111217-00705_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @JongerenSwag_: Ik: \"Ik word de nieuwe hitler, ik vermoord alle joden en 1 clown\"\\nHij: \"waarom een clown\"\\nIk: \"Zie je, niemand geeft om die joden!\" #JSW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:43 +0000", "from_user": "_laurenmaya", "from_user_id": 224046281, "from_user_id_str": "224046281", "from_user_name": "Maya Williams", "geo": null, "id": 148830132063322100, "id_str": "148830132063322112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691225190/BUCLASSIC-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691225190/BUCLASSIC-1_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "\\u201C@jay_enne_see: @_laurenmaya puttin in work! haha\\u201Di told shorts i was twerking he said : \"sit yo clown ass down \" -___-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:40 +0000", "from_user": "amveats", "from_user_id": 72624303, "from_user_id_str": "72624303", "from_user_name": "Andrew Veety", "geo": null, "id": 148830120763850750, "id_str": "148830120763850752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1400443736/SMALL20101218_AVeety_005_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1400443736/SMALL20101218_AVeety_005_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Your bumper sticker may say ninja but you drive like a clown.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:40 +0000", "from_user": "WritingsofwoRm", "from_user_id": 248079314, "from_user_id_str": "248079314", "from_user_name": " Biko ", "geo": null, "id": 148830119870472200, "id_str": "148830119870472193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1603524804/wosk_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1603524804/wosk_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "My kids clowning today. \"Mr. Caruthers do you shop at Baby Gap?\" I wear my clothes fitted... It's cool I clown back. \\uD83D\\uDE02", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:37 +0000", "from_user": "Mayrlc", "from_user_id": 431694106, "from_user_id_str": "431694106", "from_user_name": "May Warriner", "geo": null, "id": 148830108864614400, "id_str": "148830108864614401", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681018791/ti4gr145am_128705230-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681018791/ti4gr145am_128705230-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Baby Spring Float with Sun Canopy Swim Ways Blue with Starfish and Clown Fish: Supports young children as they a... http://t.co/BbL0erJo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:34 +0000", "from_user": "Casa_Deliscioso", "from_user_id": 352520017, "from_user_id_str": "352520017", "from_user_name": "Casa Deliscioso", "geo": null, "id": 148830097217036300, "id_str": "148830097217036288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1488610783/bird_logo_tw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1488610783/bird_logo_tw_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@IntoNoRes then you should rent and watch the first 5 minutes of \"shakes the clown\"... uncanny! good movie too, but dark humor permeates", "to_user": "IntoNoRes", "to_user_id": 213670984, "to_user_id_str": "213670984", "to_user_name": "Helen Cho", "in_reply_to_status_id": 148787460606922750, "in_reply_to_status_id_str": "148787460606922752"}, +{"created_at": "Mon, 19 Dec 2011 18:20:31 +0000", "from_user": "toy_toy11", "from_user_id": 229013978, "from_user_id_str": "229013978", "from_user_name": "Toya Nelson", "geo": null, "id": 148830081912012800, "id_str": "148830081912012800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1634701595/310717_1979033438067_1310070172_31819144_7746182_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634701595/310717_1979033438067_1310070172_31819144_7746182_n_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "I paint yo face you a clown homie", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:30 +0000", "from_user": "PrinCessUniiQue", "from_user_id": 28482931, "from_user_id_str": "28482931", "from_user_name": "Royal Princess*", "geo": null, "id": 148830079710011400, "id_str": "148830079710011392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682134114/4064dc6421de11e1a87612313804ec91_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682134114/4064dc6421de11e1a87612313804ec91_7_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Ju_RLMG lmao I mean first thing on my mind clown", "to_user": "Ju_RLMG", "to_user_id": 430933514, "to_user_id_str": "430933514", "to_user_name": "JuJu DiBiase ", "in_reply_to_status_id": 148829641690447870, "in_reply_to_status_id_str": "148829641690447872"}, +{"created_at": "Mon, 19 Dec 2011 18:20:30 +0000", "from_user": "YasmineAkib", "from_user_id": 335087344, "from_user_id_str": "335087344", "from_user_name": "\\u2714Verified Account", "geo": null, "id": 148830079240249340, "id_str": "148830079240249344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699273543/Photo_on_12-17-11_at_8.53_PM_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699273543/Photo_on_12-17-11_at_8.53_PM_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Ochocino is oneee clown assss nigggaaaa BAHAHAHAHAAA!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:27 +0000", "from_user": "akloveless", "from_user_id": 342553706, "from_user_id_str": "342553706", "from_user_name": "\\u00B0Lashes&lips\\u00B0", "geo": null, "id": 148830066065940480, "id_str": "148830066065940480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699271474/77N2h6oO_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699271474/77N2h6oO_normal", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:23 +0000", "from_user": "WaxindatJaylove", "from_user_id": 265730630, "from_user_id_str": "265730630", "from_user_name": "J'ay Cubbie ", "geo": null, "id": 148830050161139700, "id_str": "148830050161139712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695187518/37136_168099959870313_100000109297361_591489_2520035_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695187518/37136_168099959870313_100000109297361_591489_2520035_n_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "That txt ...lmao he a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:22 +0000", "from_user": "HuitziTaughtMe", "from_user_id": 61053475, "from_user_id_str": "61053475", "from_user_name": "Scott S", "geo": null, "id": 148830046558240770, "id_str": "148830046558240769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1598684184/302456_10150296416667887_540862886_8036069_1687540287_n__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598684184/302456_10150296416667887_540862886_8036069_1687540287_n__1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "or maybe Dayton to clown with chupa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:21 +0000", "from_user": "AureoladelSol", "from_user_id": 105248192, "from_user_id_str": "105248192", "from_user_name": "Aureola del Sol ", "geo": null, "id": 148830039528583170, "id_str": "148830039528583168", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1651460320/IMG-20111116-00008_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651460320/IMG-20111116-00008_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Las actividades del #FICH2011 comienzan desde las 17:00 horas con la actuaci\\u00F3n del espect\\u00E1culo Clown \"Desconcierto navide\\u00F1o\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:20 +0000", "from_user": "Leonbc11", "from_user_id": 428058412, "from_user_id_str": "428058412", "from_user_name": "Leon Boyd-Cleaver", "geo": null, "id": 148830035497848830, "id_str": "148830035497848832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1672953930/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672953930/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Your gonna die clown!! #funnyshit", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:18 +0000", "from_user": "Twin_Shayy", "from_user_id": 239607650, "from_user_id_str": "239607650", "from_user_name": "Shay Whithaker", "geo": null, "id": 148830029499990000, "id_str": "148830029499990016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1692898827/390634_2924962486794_1342851946_33316162_1257376483_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692898827/390634_2924962486794_1342851946_33316162_1257376483_n_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "This Boy Just Called Me A Clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:18 +0000", "from_user": "lisianahoi", "from_user_id": 409332901, "from_user_id_str": "409332901", "from_user_name": "lisiana gerritsen", "geo": null, "id": 148830027759353860, "id_str": "148830027759353856", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1632382290/1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632382290/1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @JongerenSwag_: Ik: \"Ik word de nieuwe hitler, ik vermoord alle joden en 1 clown\"\\nHij: \"waarom een clown\"\\nIk: \"Zie je, niemand geeft om die joden!\" #JSW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:16 +0000", "from_user": "_PRETTYfaced", "from_user_id": 358859101, "from_user_id_str": "358859101", "from_user_name": "December 21st . . .", "geo": null, "id": 148830021140758530, "id_str": "148830021140758528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702552838/8uQ1PM0W_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702552838/8uQ1PM0W_normal", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "ok fareal fareal whn i gt bck frm gttin my shorty ima clown on twitter lhfh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:11 +0000", "from_user": "SHES_4REAL", "from_user_id": 226098763, "from_user_id_str": "226098763", "from_user_name": "Jasmin Lopez", "geo": null, "id": 148830000802562050, "id_str": "148830000802562048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699755301/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699755301/image_normal.jpg", "source": "<a href="http://tweetlogix.com" rel="nofollow">Tweetlogix</a>", "text": "My nurse is a clown lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:11 +0000", "from_user": "AshIsAmazin", "from_user_id": 31473438, "from_user_id_str": "31473438", "from_user_name": "Ashley ", "geo": null, "id": 148829998541832200, "id_str": "148829998541832192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1664402757/AshIsAmazin_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664402757/AshIsAmazin_normal.jpg", "source": "<a href="http://tweetlogix.com" rel="nofollow">Tweetlogix</a>", "text": "Nah you still look like a clown ctfuuu RT @Escalade15: @AshIsAmazin @ me tho", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:06 +0000", "from_user": "jessicamor8697", "from_user_id": 236948872, "from_user_id_str": "236948872", "from_user_name": "Jessica ", "geo": null, "id": 148829976978915330, "id_str": "148829976978915328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1213065157/173511_100001970823370_1343897_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1213065157/173511_100001970823370_1343897_q_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Christmas Stories (Morris' Disappearing Bag/The Clown of God/The Little Drummer Boy/The Twelve Days of Christmas... http://t.co/6N6nVyX5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:05 +0000", "from_user": "LoveQuietly", "from_user_id": 378893038, "from_user_id_str": "378893038", "from_user_name": "Teenagers. \\u2714", "geo": null, "id": 148829975506718720, "id_str": "148829975506718721", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702508531/tumblr_lvsorawBdq1qgaex6o1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702508531/tumblr_lvsorawBdq1qgaex6o1_500_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Now I'm that bitch, and you're just a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:01 +0000", "from_user": "katieehalliday", "from_user_id": 361853783, "from_user_id_str": "361853783", "from_user_name": "Katie Halliday", "geo": null, "id": 148829958561742850, "id_str": "148829958561742848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702564519/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702564519/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "your sitting criticising people yet you look like a clown #shutthefuckup", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:01 +0000", "from_user": "Esh_SexyAsEver", "from_user_id": 247788214, "from_user_id_str": "247788214", "from_user_name": "Esh \\uE418", "geo": null, "id": 148829956200337400, "id_str": "148829956200337408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664164165/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664164165/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @bEAUTiFULGENUiS: Monkey see Monkey Do.. smh #CLOWN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:00 +0000", "from_user": "FiercelyLuvnTee", "from_user_id": 214340365, "from_user_id_str": "214340365", "from_user_name": "Tiffany Diamond", "geo": null, "id": 148829952383528960, "id_str": "148829952383528960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1642346424/Tiff_part_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642346424/Tiff_part_1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "LMAO why am I such a clown so early in the morning?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:56 +0000", "from_user": "AyoolaTj", "from_user_id": 53127318, "from_user_id_str": "53127318", "from_user_name": "Tunji", "geo": null, "id": 148829936688443400, "id_str": "148829936688443392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702564831/giveafuck_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702564831/giveafuck_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @Lucien911: This Clown Says It All. I'm 'bout Whatever!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:53 +0000", "from_user": "xkusvanRenee", "from_user_id": 286836373, "from_user_id_str": "286836373", "from_user_name": "Ren\\u00E9e van Lankveld", "geo": null, "id": 148829922138394620, "id_str": "148829922138394624", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1660360127/ikhouvanjou_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660360127/ikhouvanjou_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @JongerenSwag_: Ik: \"Ik word de nieuwe hitler, ik vermoord alle joden en 1 clown\"\\nHij: \"waarom een clown\"\\nIk: \"Zie je, niemand geeft om die joden!\" #JSW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:46 +0000", "from_user": "HeartbreakSpook", "from_user_id": 320332314, "from_user_id_str": "320332314", "from_user_name": "T. Burg", "geo": null, "id": 148829892388192260, "id_str": "148829892388192256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688316000/HeartbreakSpook_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688316000/HeartbreakSpook_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "I get that a lot. No face paint, just straight clown shit!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:43 +0000", "from_user": "1stLady_Ki", "from_user_id": 240987706, "from_user_id_str": "240987706", "from_user_name": "Kiki ", "geo": null, "id": 148829879293587460, "id_str": "148829879293587456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1690396476/455081971_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690396476/455081971_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Man, Jonathan be makin my day LOL!!! He stay makin me laugh... #Clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:37 +0000", "from_user": "kkkleinkauf", "from_user_id": 53495554, "from_user_id_str": "53495554", "from_user_name": "karen kleinkauf", "geo": null, "id": 148829857009238000, "id_str": "148829857009238018", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701091827/Foto0256_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701091827/Foto0256_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I look like a clown?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:36 +0000", "from_user": "VivalaCasado", "from_user_id": 433823597, "from_user_id_str": "433823597", "from_user_name": "martaja jackson", "geo": null, "id": 148829852710080500, "id_str": "148829852710080512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1686157509/2011-06-05_19.21.10_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686157509/2011-06-05_19.21.10_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Quanys a CLOWN lol off my tl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:35 +0000", "from_user": "kusmarlies_", "from_user_id": 142666217, "from_user_id_str": "142666217", "from_user_name": "'marliess.", "geo": null, "id": 148829848016650240, "id_str": "148829848016650240", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694800641/Schermafbeelding_2011-12-15_om_16.33.45_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694800641/Schermafbeelding_2011-12-15_om_16.33.45_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @JongerenSwag_: Ik: \"Ik word de nieuwe hitler, ik vermoord alle joden en 1 clown\"\\nHij: \"waarom een clown\"\\nIk: \"Zie je, niemand geeft om die joden!\" #JSW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:35 +0000", "from_user": "SB_9AllDay", "from_user_id": 79047828, "from_user_id_str": "79047828", "from_user_name": "Sebastian Bonilla\\u00AE", "geo": null, "id": 148829845902737400, "id_str": "148829845902737408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700493095/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700493095/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT\\u201C@whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:34 +0000", "from_user": "ola_frost", "from_user_id": 215974612, "from_user_id_str": "215974612", "from_user_name": "frost", "geo": null, "id": 148829842383699970, "id_str": "148829842383699968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1522369103/208334_1947935304989_1440757370_2204671_5142902_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1522369103/208334_1947935304989_1440757370_2204671_5142902_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@swagymolly ok u dnt clown or play games so can we get down to business", "to_user": "swagymolly", "to_user_id": 157749487, "to_user_id_str": "157749487", "to_user_name": "Omolara Adeosun"}, +{"created_at": "Mon, 19 Dec 2011 18:19:32 +0000", "from_user": "Ms_Fancy_Hunn", "from_user_id": 348653499, "from_user_id_str": "348653499", "from_user_name": "Angie Ang", "geo": null, "id": 148829833433059330, "id_str": "148829833433059328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700412271/IMAG0499_14_2011-12-14_21-27-21_711_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700412271/IMAG0499_14_2011-12-14_21-27-21_711_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Clown ass people...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:31 +0000", "from_user": "Chou22", "from_user_id": 148448864, "from_user_id_str": "148448864", "from_user_name": "ChouWiz69", "geo": null, "id": 148829831289778180, "id_str": "148829831289778176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1577267333/mia5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1577267333/mia5_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@MR_CHEACHEAA: I'm only happy with myself when I belong to alot of women...or when dey all belong to me #IMA #MALE #WHORE\"lol u a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:30 +0000", "from_user": "MikeOMG360", "from_user_id": 217982502, "from_user_id_str": "217982502", "from_user_name": "Michael Beckford", "geo": null, "id": 148829828668334080, "id_str": "148829828668334081", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680053395/165626_483933327969_781992969_5715194_6948797_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680053395/165626_483933327969_781992969_5715194_6948797_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@rashida876 naaa u can't clown me even if u worked at the carnival", "to_user": "rashida876", "to_user_id": 340390563, "to_user_id_str": "340390563", "to_user_name": "Rashida Mitchell", "in_reply_to_status_id": 148829381966577660, "in_reply_to_status_id_str": "148829381966577665"}, +{"created_at": "Mon, 19 Dec 2011 18:19:18 +0000", "from_user": "Gazaauta", "from_user_id": 193867392, "from_user_id_str": "193867392", "from_user_name": "Gaza Auta", "geo": null, "id": 148829775388090370, "id_str": "148829775388090368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1649781671/proud_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649781671/proud_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @ekekeee: RT @22afro: An endorsement from a free market robot like Christine Lagarde now makes on a genius. Our president is a clown made of candy.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:09 +0000", "from_user": "jessfoster10", "from_user_id": 241977790, "from_user_id_str": "241977790", "from_user_name": "Jessica Foster", "geo": null, "id": 148829738893459460, "id_str": "148829738893459457", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1625528234/Photo_00005_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1625528234/Photo_00005_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@BrennaGardner omg on my stroll to the library today I saw Sheridan with her face painted like a clown and a wig. I was shocked.", "to_user": "BrennaGardner", "to_user_id": 182887967, "to_user_id_str": "182887967", "to_user_name": "Brenna Gardner"}, +{"created_at": "Mon, 19 Dec 2011 18:19:06 +0000", "from_user": "_xRuuby", "from_user_id": 321960407, "from_user_id_str": "321960407", "from_user_name": "Ruby", "geo": null, "id": 148829727392669700, "id_str": "148829727392669696", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691076943/hoi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691076943/hoi_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @JongerenSwag_: Ik: \"Ik word de nieuwe hitler, ik vermoord alle joden en 1 clown\"\\nHij: \"waarom een clown\"\\nIk: \"Zie je, niemand geeft om die joden!\" #JSW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:58 +0000", "from_user": "purpleperry", "from_user_id": 142611931, "from_user_id_str": "142611931", "from_user_name": " Princess Adebukola", "geo": null, "id": 148829694589022200, "id_str": "148829694589022208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690204343/331398964_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690204343/331398964_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Lil bro is jst a clown...Lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:58 +0000", "from_user": "BrainSucksx", "from_user_id": 236072037, "from_user_id_str": "236072037", "from_user_name": "They Call Me Eva.\\u2665", "geo": null, "id": 148829693603364860, "id_str": "148829693603364865", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670029571/1305968339_5_zGSy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670029571/1305968339_5_zGSy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @JongerenSwag_: Ik: \"Ik word de nieuwe hitler, ik vermoord alle joden en 1 clown\"\\nHij: \"waarom een clown\"\\nIk: \"Zie je, niemand geeft om die joden!\" #JSW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:56 +0000", "from_user": "yasmine_surovec", "from_user_id": 158074932, "from_user_id_str": "158074932", "from_user_name": "Cat Vs Human", "geo": null, "id": 148829682907873280, "id_str": "148829682907873280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1448912482/n757730388_1462007_2562_09-56-27_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1448912482/n757730388_1462007_2562_09-56-27_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Come to \"Cat vs Human Event: Literary Clown Foolery 2012 @ Booksmith, in SF\" Friday, January 13, 2012 from 8:00 pm... http://t.co/EsT0dC9I", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:55 +0000", "from_user": "jordan_halpern", "from_user_id": 18739057, "from_user_id_str": "18739057", "from_user_name": "Jordan Halpern ", "geo": null, "id": 148829681318248450, "id_str": "148829681318248450", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1538151300/326394520_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538151300/326394520_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TimbzNHoodCheck: #WHATHAPPENED2 keeping your mouth shut? Why you telling these clown niggas and cops peoples names?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:54 +0000", "from_user": "Lucien911", "from_user_id": 71608025, "from_user_id_str": "71608025", "from_user_name": "Ifon Francis", "geo": null, "id": 148829674754150400, "id_str": "148829674754150400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693426128/IDC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693426128/IDC_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "This Clown Says It All. I'm 'bout Whatever!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:46 +0000", "from_user": "iMA__BAWSE", "from_user_id": 36569387, "from_user_id_str": "36569387", "from_user_name": "Antisocial", "geo": null, "id": 148829644148322300, "id_str": "148829644148322306", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693874377/photo-2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693874377/photo-2_normal.JPG", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Damn @KoolAzzRayBans goin in on females & make up...i think im a clown according to these tweets", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:45 +0000", "from_user": "sin2LookDisGood", "from_user_id": 189983669, "from_user_id_str": "189983669", "from_user_name": "Jerricka ", "geo": null, "id": 148829636795703300, "id_str": "148829636795703297", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690358908/m1P4WC9i_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690358908/m1P4WC9i_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Now that girl knew them kids wasn't his lmbo #Clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:44 +0000", "from_user": "SecretsOfaBOSS", "from_user_id": 127628764, "from_user_id_str": "127628764", "from_user_name": "Tone Boneee.", "geo": null, "id": 148829634522394620, "id_str": "148829634522394625", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701630520/111113-233547_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701630520/111113-233547_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Niggas Be Trippin Like Clown Shoes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:41 +0000", "from_user": "IAmNiaCherel", "from_user_id": 343627036, "from_user_id_str": "343627036", "from_user_name": "Jonia Rolle", "geo": null, "id": 148829621578764300, "id_str": "148829621578764289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1653242528/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653242528/image_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "I was too artsy known to be a clown - @KidCudi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:41 +0000", "from_user": "Radwanjqg", "from_user_id": 395403180, "from_user_id_str": "395403180", "from_user_name": "Tracey Radwan", "geo": null, "id": 148829621226446850, "id_str": "148829621226446848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1599630027/MFC-1069_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599630027/MFC-1069_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "JACK IN THE BOX #3 CLOWN-AIRBRUSH STENCIL-TEMPLATE-ART: These convenient and easy to use layered stencils will h... http://t.co/5y33YNlj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:36 +0000", "from_user": "CapricornPretty", "from_user_id": 37378740, "from_user_id_str": "37378740", "from_user_name": "PrettyGirl", "geo": null, "id": 148829600712110080, "id_str": "148829600712110082", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689395074/CapricornPretty_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689395074/CapricornPretty_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@KissesFrmYan he a clown yo smh like wtf for and i hope so too", "to_user": "KissesFrmYan", "to_user_id": 156748654, "to_user_id_str": "156748654", "to_user_name": "Y. Buise", "in_reply_to_status_id": 148829364467937280, "in_reply_to_status_id_str": "148829364467937280"}, +{"created_at": "Mon, 19 Dec 2011 18:18:31 +0000", "from_user": "mamafulton", "from_user_id": 13669882, "from_user_id_str": "13669882", "from_user_name": "mamafulton", "geo": null, "id": 148829580403286000, "id_str": "148829580403286016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693514119/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693514119/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@MrWordsWorth: If you build a snowman and can only imagine him as a parson or circus clown, you have a very sad imagination.\\u201D \\n\\nFF this man", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:29 +0000", "from_user": "KatyTheHamster", "from_user_id": 51118237, "from_user_id_str": "51118237", "from_user_name": "Aslan. ", "geo": null, "id": 148829570064326660, "id_str": "148829570064326657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1665715941/SAM_2278_picnik_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665715941/SAM_2278_picnik_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "The pepsi max advert scares me cause of the clown..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:20 +0000", "from_user": "SMD_CDB", "from_user_id": 120949497, "from_user_id_str": "120949497", "from_user_name": "sean dallas", "geo": null, "id": 148829533221560320, "id_str": "148829533221560320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1678307444/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678307444/image_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "@_IsItInYet Smh clown", "to_user": "_IsItInYet", "to_user_id": 226428487, "to_user_id_str": "226428487", "to_user_name": "Jarrett Hardy", "in_reply_to_status_id": 148828741479563260, "in_reply_to_status_id_str": "148828741479563264"}, +{"created_at": "Mon, 19 Dec 2011 18:18:17 +0000", "from_user": "wesaythetruth", "from_user_id": 390632378, "from_user_id_str": "390632378", "from_user_name": "We say the truth ", "geo": null, "id": 148829522345721860, "id_str": "148829522345721857", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1587686337/tumblr_lpivviam9T1qjj20po1_500_large_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587686337/tumblr_lpivviam9T1qjj20po1_500_large_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @JongerenSwag_: Ik: \"Ik word de nieuwe hitler, ik vermoord alle joden en 1 clown\"\\nHij: \"waarom een clown\"\\nIk: \"Zie je, niemand geeft om die joden!\" #JSW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:14 +0000", "from_user": "P4ulWatt", "from_user_id": 288216275, "from_user_id_str": "288216275", "from_user_name": "Paul Watt", "geo": null, "id": 148829508269637630, "id_str": "148829508269637632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1602931431/297784_10150417946284434_630124433_10070315_598996455_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1602931431/297784_10150417946284434_630124433_10070315_598996455_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Lol at my dog trying to get the flat ice out of mcdonalds into her mouth.. Sliding it around the kitchen floor like an absolute clown.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:45 +0000", "from_user": "MoeTown_", "from_user_id": 153989759, "from_user_id_str": "153989759", "from_user_name": "Naughty By Nature\\u2728", "geo": null, "id": 148829387146534900, "id_str": "148829387146534913", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1652967481/IMG_1066_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652967481/IMG_1066_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Listening to 2 chainz clown ass.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:44 +0000", "from_user": "FATabulouzmissy", "from_user_id": 46764985, "from_user_id_str": "46764985", "from_user_name": "Missy C. Brown", "geo": null, "id": 148829380204965900, "id_str": "148829380204965890", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1437504046/misy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1437504046/misy_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I just love this clown..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:43 +0000", "from_user": "CallMeBadaxx", "from_user_id": 87813237, "from_user_id_str": "87813237", "from_user_name": "SaluteMeBitches(:", "geo": null, "id": 148829378023919600, "id_str": "148829378023919616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675138545/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675138545/image_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "muthafuckas tried to clown me on facebook yesterday lol thats really funny . hoe doe ? yall bitchesjust wanna be me wtf i do is my business", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:38 +0000", "from_user": "_twiggahontas", "from_user_id": 172617109, "from_user_id_str": "172617109", "from_user_name": "\\uE32ELauren C\\uE32E", "geo": null, "id": 148829355873804300, "id_str": "148829355873804289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668632073/_twiggahontas_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668632073/_twiggahontas_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "i swear mark &+ crack clown they ass off ; im toooo weak", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:37 +0000", "from_user": "dev_dev24", "from_user_id": 176713155, "from_user_id_str": "176713155", "from_user_name": "Devin Sosa", "geo": null, "id": 148829353835372540, "id_str": "148829353835372544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1675017741/Dev_dev_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675017741/Dev_dev_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Lol I aint kno ppl still pulled pranks lol this bitch pulled 1 lastnite lol fuckn clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:30 +0000", "from_user": "Little_Lollypop", "from_user_id": 242824595, "from_user_id_str": "242824595", "from_user_name": "weil.wege.Liebe", "geo": null, "id": 148829324223578100, "id_str": "148829324223578112", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696352468/colorful-balloons_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696352468/colorful-balloons_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"So ist das Leben\" , sagte der Clown und malte sich mit Tr\\u00E4nen in den Augen, ein strahlendes L\\u00E4cheln ins Gesicht.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:28 +0000", "from_user": "the_2_is_Silent", "from_user_id": 24682504, "from_user_id_str": "24682504", "from_user_name": "Maurice A. James II", "geo": null, "id": 148829315197452300, "id_str": "148829315197452290", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699156753/8ACE294B-7429-4A73-9A51-D893783F64D1_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699156753/8ACE294B-7429-4A73-9A51-D893783F64D1_normal", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:24 +0000", "from_user": "stains", "from_user_id": 14211420, "from_user_id_str": "14211420", "from_user_name": "STAIN", "geo": null, "id": 148829296482467840, "id_str": "148829296482467840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/787112036/img2010-2-30-19-18-29-35_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/787112036/img2010-2-30-19-18-29-35_normal.png", "source": "<a href="http://pages.ebay.com/mobile/iphone.html" rel="nofollow">eBay Mobile for iPhone</a>", "text": "Banks. These clowns will help our neighbors!\\nhttp://t.co/7mStACnC #ebaymobile", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:22 +0000", "from_user": "0hMy_Riahh", "from_user_id": 286446140, "from_user_id_str": "286446140", "from_user_name": "MariahMckelvey\\u2661\\uE326\\uE303\\uE127\\uE011", "geo": null, "id": 148829290341998600, "id_str": "148829290341998592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1649101011/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649101011/image_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"@whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:12 +0000", "from_user": "shortyrocx3", "from_user_id": 368000054, "from_user_id_str": "368000054", "from_user_name": "samantha", "geo": null, "id": 148829247052587000, "id_str": "148829247052587008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701583165/samiam_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701583165/samiam_normal.jpg", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "http://t.co/oXbOmgw2 here's my explanation to why I am a clown :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:10 +0000", "from_user": "Koopplein013", "from_user_id": 292974168, "from_user_id_str": "292974168", "from_user_name": "Koopplein Tilburg", "geo": null, "id": 148829237758005250, "id_str": "148829237758005248", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1605979191/2043e7cf86edbfbb487f24d3755bb4b0_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1605979191/2043e7cf86edbfbb487f24d3755bb4b0_normal.jpeg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Muziekdoos Clown http://t.co/v5VG8E6N", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:02 +0000", "from_user": "MrWordsWorth", "from_user_id": 16313480, "from_user_id_str": "16313480", "from_user_name": "Mark Campbell", "geo": null, "id": 148829207542235140, "id_str": "148829207542235136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1659597546/hohoho_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659597546/hohoho_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "If you build a snowman and can only imagine him as a parson or circus clown, you have a very sad imagination.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:56 +0000", "from_user": "RyanWhin", "from_user_id": 253285978, "from_user_id_str": "253285978", "from_user_name": "Ryan Whinery", "geo": null, "id": 148829180119879680, "id_str": "148829180119879681", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546157757/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546157757/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:53 +0000", "from_user": "CallMeUnclDaddy", "from_user_id": 320556311, "from_user_id_str": "320556311", "from_user_name": "Cal Trappin", "geo": null, "id": 148829169357299700, "id_str": "148829169357299713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695819822/CallMeUnclDaddy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695819822/CallMeUnclDaddy_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "icnt do factory imma big boi..n idwanna be in a low car I'm 6'1 step out lookin like a clown #NoSir", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:42 +0000", "from_user": "houseofwong", "from_user_id": 78151676, "from_user_id_str": "78151676", "from_user_name": "k@t Meister", "geo": null, "id": 148829122792136700, "id_str": "148829122792136704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1519257302/oakland_street_sign_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1519257302/oakland_street_sign_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@FrankieQuinones i got \"class clown\" in 9th grade =|", "to_user": "FrankieQuinones", "to_user_id": 69383889, "to_user_id_str": "69383889", "to_user_name": "Frankie Quinones", "in_reply_to_status_id": 148619052301041660, "in_reply_to_status_id_str": "148619052301041664"}, +{"created_at": "Mon, 19 Dec 2011 18:16:37 +0000", "from_user": "KidConfidence1", "from_user_id": 171726692, "from_user_id_str": "171726692", "from_user_name": "Josh Simmons", "geo": null, "id": 148829101954842620, "id_str": "148829101954842624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1651651853/Photo_on_11-20-11_at_9.41_PM__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651651853/Photo_on_11-20-11_at_9.41_PM__2_normal.jpg", "source": "<a href="http://www.handmark.com" rel="nofollow">TweetCaster for iOS</a>", "text": "Texting my Bestfriend and she is a straight up clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:29 +0000", "from_user": "ToneVeezy", "from_user_id": 147345692, "from_user_id_str": "147345692", "from_user_name": "Tony Valdez ", "geo": null, "id": 148829067565731840, "id_str": "148829067565731841", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693570162/FTkvTVOR_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693570162/FTkvTVOR_normal", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:28 +0000", "from_user": "TRebel0", "from_user_id": 314113533, "from_user_id_str": "314113533", "from_user_name": "Tiago Rebelo", "geo": null, "id": 148829062335447040, "id_str": "148829062335447040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1600007440/kw74Vgen_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600007440/kw74Vgen_normal", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:22 +0000", "from_user": "CaptivatingNews", "from_user_id": 292374563, "from_user_id_str": "292374563", "from_user_name": "Rich Gowran", "geo": null, "id": 148829039262564350, "id_str": "148829039262564352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695773456/CaptivatingNewsDetroit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695773456/CaptivatingNewsDetroit_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@mamaofthreebrat The only 2 GOP candidates that don't seem as clown-like are Paul & Huntsman. The 2 that will never make it. Thank goodness!", "to_user": "mamaofthreebrat", "to_user_id": 329066686, "to_user_id_str": "329066686", "to_user_name": "fae", "in_reply_to_status_id": 148827961188040700, "in_reply_to_status_id_str": "148827961188040704"}, +{"created_at": "Mon, 19 Dec 2011 18:16:16 +0000", "from_user": "lenaatruong", "from_user_id": 135029695, "from_user_id_str": "135029695", "from_user_name": "\\u2113\\u1D49\\u1DB0\\u1D43 tr\\u1D58\\u1D52\\u1DB0\\u1D4D ", "geo": null, "id": 148829013262090240, "id_str": "148829013262090241", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1676642491/peu_20111205_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676642491/peu_20111205_3_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@JizzL_ LOOOL oh you clown #ilaughed :$", "to_user": "JizzL_", "to_user_id": 274699772, "to_user_id_str": "274699772", "to_user_name": "Giselle Scott", "in_reply_to_status_id": 148822649022332930, "in_reply_to_status_id_str": "148822649022332928"}, +{"created_at": "Mon, 19 Dec 2011 18:16:15 +0000", "from_user": "LONGER_LIST", "from_user_id": 158232916, "from_user_id_str": "158232916", "from_user_name": "GAGGGonmee! : )", "geo": null, "id": 148829009344602100, "id_str": "148829009344602112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1437462971/da_wiz_stage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1437462971/da_wiz_stage_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "some of these girls be puttin on make up and start looking like a clown .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:14 +0000", "from_user": "erikarodriguezz", "from_user_id": 192977471, "from_user_id_str": "192977471", "from_user_name": "Erika Rodriguez", "geo": null, "id": 148829005989154800, "id_str": "148829005989154816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1127709395/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1127709395/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "So @deez_nuts03 and I went to the store with Hope. She would not take off that stupid clown wig.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:10 +0000", "from_user": "PurpMonroe", "from_user_id": 192435528, "from_user_id_str": "192435528", "from_user_name": "Purp Monroe aka Cece", "geo": null, "id": 148828987332886530, "id_str": "148828987332886528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690528608/PurpMonroe_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690528608/PurpMonroe_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Who tf sed dat fuckery nd dnt say stupidy u call evey1 dat RT @iTsMissBritney: Umm who is this n this fuckin clown says \"ur husband\" gtfoh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:09 +0000", "from_user": "xChinky_", "from_user_id": 30870296, "from_user_id_str": "30870296", "from_user_name": "Yvonne Harris ", "geo": null, "id": 148828985156050940, "id_str": "148828985156050945", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1674782126/Snapshot_20111003_26_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674782126/Snapshot_20111003_26_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @_TheOtherKevin: \"Silly Ass Clown\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:06 +0000", "from_user": "buddaniels", "from_user_id": 378621150, "from_user_id_str": "378621150", "from_user_name": "GodBlessTheChild", "geo": null, "id": 148828972266958850, "id_str": "148828972266958848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692066324/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692066324/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@DolyLoly lmaooo you clown \\uD83C\\uDF85", "to_user": "DolyLoly", "to_user_id": 158941945, "to_user_id_str": "158941945", "to_user_name": "Loreal Pirela", "in_reply_to_status_id": 148828629541986300, "in_reply_to_status_id_str": "148828629541986304"}, +{"created_at": "Mon, 19 Dec 2011 18:16:05 +0000", "from_user": "SNORKINGTON", "from_user_id": 353856995, "from_user_id_str": "353856995", "from_user_name": "Natasha Payano", "geo": null, "id": 148828968018133000, "id_str": "148828968018132992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1635377775/329665293_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635377775/329665293_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@CornerStoreCapo word! I love picking up unknown calls, alwayssssssss some clown on the other side lol", "to_user": "CornerStoreCapo", "to_user_id": 280272740, "to_user_id_str": "280272740", "to_user_name": "Bodega The God", "in_reply_to_status_id": 148826698534764540, "in_reply_to_status_id_str": "148826698534764545"}, +{"created_at": "Mon, 19 Dec 2011 18:15:58 +0000", "from_user": "Meg_Nifi_cent", "from_user_id": 71413377, "from_user_id_str": "71413377", "from_user_name": "Poison ", "geo": null, "id": 148828936837677060, "id_str": "148828936837677057", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701247425/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701247425/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Cammy_4CHAINZZZ lol u a clown !!! @ em tho !", "to_user": "Cammy_4CHAINZZZ", "to_user_id": 144484137, "to_user_id_str": "144484137", "to_user_name": "Young Thug Nigga", "in_reply_to_status_id": 148828660571447300, "in_reply_to_status_id_str": "148828660571447297"}, +{"created_at": "Mon, 19 Dec 2011 18:15:56 +0000", "from_user": "SmoothDudeLew", "from_user_id": 221946667, "from_user_id_str": "221946667", "from_user_name": "Lewis F. Finney", "geo": null, "id": 148828927555665920, "id_str": "148828927555665920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691891872/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691891872/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@DearestJasmin you a clown.", "to_user": "DearestJasmin", "to_user_id": 352736011, "to_user_id_str": "352736011", "to_user_name": "Jasmin Thompson", "in_reply_to_status_id": 148828590702739460, "in_reply_to_status_id_str": "148828590702739456"}, +{"created_at": "Mon, 19 Dec 2011 18:15:53 +0000", "from_user": "mydarkfantasy_", "from_user_id": 236105228, "from_user_id_str": "236105228", "from_user_name": "Tori Baby", "geo": null, "id": 148828916734361600, "id_str": "148828916734361600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699230334/111215-213620_-_Copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699230334/111215-213620_-_Copy_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "Some of y'all are some clown ass niggas .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:53 +0000", "from_user": "McPherson__", "from_user_id": 359786823, "from_user_id_str": "359786823", "from_user_name": "David McPherson", "geo": null, "id": 148828915228614660, "id_str": "148828915228614658", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1649247669/308134_2150343400244_1296144772_31819802_2093923055_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649247669/308134_2150343400244_1296144772_31819802_2093923055_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Kool-aid no sugar, toast no jelly, chips no dip, xbox no controller, guys no girls, love no hate, calvin no chipmunks, clown no smile", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:51 +0000", "from_user": "henry_gilbert", "from_user_id": 149028448, "from_user_id_str": "149028448", "from_user_name": "Henry Gilbert", "geo": null, "id": 148828908479987700, "id_str": "148828908479987712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1624204156/cat4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624204156/cat4_normal.jpg", "source": "<a href="http://favstar.fm" rel="nofollow">Favstar.FM</a>", "text": "RT @claytonhaynes: I'd like to kick the ass of that rude clown from Night At The Apolo.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:49 +0000", "from_user": "AndreaCardentey", "from_user_id": 266925283, "from_user_id_str": "266925283", "from_user_name": "Andrea Cardentey", "geo": null, "id": 148828899965542400, "id_str": "148828899965542401", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664867043/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664867043/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#IWasThatKid that was the class clown lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:46 +0000", "from_user": "Svinto89", "from_user_id": 173577192, "from_user_id_str": "173577192", "from_user_name": "Philip Andersson", "geo": null, "id": 148828885633605630, "id_str": "148828885633605632", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1399065842/4-bildsserie_2011-05-25_kl._03.21__3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1399065842/4-bildsserie_2011-05-25_kl._03.21__3_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@filipborgman Jadu, det \\u00E5terst\\u00E5r att se! Madrassen agerar s\\u00E4kerligen clown.", "to_user": "filipborgman", "to_user_id": 278092103, "to_user_id_str": "278092103", "to_user_name": "Filip Borgman", "in_reply_to_status_id": 148826454132658180, "in_reply_to_status_id_str": "148826454132658176"}, +{"created_at": "Mon, 19 Dec 2011 18:15:45 +0000", "from_user": "ceriequeenb", "from_user_id": 242545540, "from_user_id_str": "242545540", "from_user_name": "toobadforu hanson", "geo": null, "id": 148828881544151040, "id_str": "148828881544151040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1689209016/IMG00645-20111203-1300_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689209016/IMG00645-20111203-1300_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Like wth am not obligated to this clown yet he always ave probs with ma stuff...like get ova urself....jump off ur high horse...its reality", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:15:45 +0000", "from_user": "ceriequeenb", "from_user_id": 242545540, "from_user_id_str": "242545540", "from_user_name": "toobadforu hanson", "geo": null, "id": 148828881544151040, "id_str": "148828881544151040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1689209016/IMG00645-20111203-1300_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689209016/IMG00645-20111203-1300_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Like wth am not obligated to this clown yet he always ave probs with ma stuff...like get ova urself....jump off ur high horse...its reality", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:43 +0000", "from_user": "DaKidAProblem", "from_user_id": 394165169, "from_user_id_str": "394165169", "from_user_name": "I_Keep_It_100%", "geo": null, "id": 148828874355122180, "id_str": "148828874355122176", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702487808/OpTx1HI2_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702487808/OpTx1HI2_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@NiKKiG_Da_OhGee clown", "to_user": "NiKKiG_Da_OhGee", "to_user_id": 26778414, "to_user_id_str": "26778414", "to_user_name": "Kiah May", "in_reply_to_status_id": 148827767180501000, "in_reply_to_status_id_str": "148827767180500992"}, +{"created_at": "Mon, 19 Dec 2011 18:15:32 +0000", "from_user": "Gelycosta", "from_user_id": 244597295, "from_user_id_str": "244597295", "from_user_name": "Gely", "geo": null, "id": 148828828368773120, "id_str": "148828828368773120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685089792/1441313410_6_wv0G_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685089792/1441313410_6_wv0G_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "See this heart Wont settle down Like a child running scared from a clown.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:29 +0000", "from_user": "BainnUpdates", "from_user_id": 91415682, "from_user_id_str": "91415682", "from_user_name": "Bainn", "geo": null, "id": 148828814800191500, "id_str": "148828814800191488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1098328710/21555_334010828624_702823624_4872349_6852206_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1098328710/21555_334010828624_702823624_4872349_6852206_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@JenSchwalbach On Plus one you had more control over the cuddly clown prince of comedy, well, marginally more....", "to_user": "JenSchwalbach", "to_user_id": 72457270, "to_user_id_str": "72457270", "to_user_name": "Jennifer Schwalbach"}, +{"created_at": "Mon, 19 Dec 2011 18:15:28 +0000", "from_user": "HeavenSent13", "from_user_id": 248960187, "from_user_id_str": "248960187", "from_user_name": "LaMiyah D. Cromartie", "geo": null, "id": 148828811981623300, "id_str": "148828811981623298", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695699532/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695699532/profile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @bEAUTiFULGENUiS: Monkey see Monkey Do.. smh #CLOWN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:28 +0000", "from_user": "YesusBIC", "from_user_id": 32598066, "from_user_id_str": "32598066", "from_user_name": "BIC ALL DAY. ", "geo": null, "id": 148828810236805120, "id_str": "148828810236805121", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1667924769/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667924769/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Frank_Ocean_: You can never make a clown out of yourself for being faithful, unless you're being faithful to a hoe.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:20 +0000", "from_user": "ItsLeahTGC", "from_user_id": 219153865, "from_user_id_str": "219153865", "from_user_name": "Tunechi .", "geo": null, "id": 148828777261170700, "id_str": "148828777261170688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1661216421/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661216421/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @tiiiipppp: the real housewives is a clown ass show . but I watch it . lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:14 +0000", "from_user": "SayBLACK3x_", "from_user_id": 258188567, "from_user_id_str": "258188567", "from_user_name": "Josh Nxgga.", "geo": null, "id": 148828753328472060, "id_str": "148828753328472064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1626669858/287670824_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626669858/287670824_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @SignedWhitLove: -____- RT @SayBLACK3x_: I am not a class clown!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:03 +0000", "from_user": "ForevaEarlGirl", "from_user_id": 217092617, "from_user_id_str": "217092617", "from_user_name": "Chameka Moody", "geo": null, "id": 148828705878323200, "id_str": "148828705878323201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698510584/fbQt724A_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698510584/fbQt724A_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Rey text Earl clown ass", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:03 +0000", "from_user": "KCole1214", "from_user_id": 429420562, "from_user_id_str": "429420562", "from_user_name": "Keith Colquitt", "geo": null, "id": 148828705521811460, "id_str": "148828705521811456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676160038/2-80837825-21038-800_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676160038/2-80837825-21038-800_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @whiteboytatted Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:54 +0000", "from_user": "GoYoungOnEm", "from_user_id": 205801849, "from_user_id_str": "205801849", "from_user_name": "D. Young", "geo": null, "id": 148828668830031870, "id_str": "148828668830031873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662390095/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662390095/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "@lil_moma3 Aahhhh...lol...you a clown.", "to_user": "lil_moma3", "to_user_id": 282181408, "to_user_id_str": "282181408", "to_user_name": "Rox\\uE418", "in_reply_to_status_id": 148828404760850430, "in_reply_to_status_id_str": "148828404760850432"}, +{"created_at": "Mon, 19 Dec 2011 18:14:52 +0000", "from_user": "itsme_EP", "from_user_id": 193521989, "from_user_id_str": "193521989", "from_user_name": "Erica", "geo": null, "id": 148828660017807360, "id_str": "148828660017807360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679295852/yeahh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679295852/yeahh_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "Get off your highhorse clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:46 +0000", "from_user": "tripl3staxx08", "from_user_id": 40802844, "from_user_id_str": "40802844", "from_user_name": "Almost famous", "geo": null, "id": 148828633887285250, "id_str": "148828633887285248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695422321/tripl3staxx08_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695422321/tripl3staxx08_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @PRETTYINGA: + 1 RT @tripl3staxx08 I swear I have the most clown ass niggas be salty in my mentions kuz I curved them FOH ain't nobody got time", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:43 +0000", "from_user": "Shakez843", "from_user_id": 25432720, "from_user_id_str": "25432720", "from_user_name": "Reggie", "geo": null, "id": 148828623758032900, "id_str": "148828623758032896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698662421/1318520304461_125762_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698662421/1318520304461_125762_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "somebody get this young man off my TL ~~~> RT @1badvirgo @Shakez843 @Jessika_STAR stop it clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:37 +0000", "from_user": "_withtheselips", "from_user_id": 96797932, "from_user_id_str": "96797932", "from_user_name": "Stullisha", "geo": null, "id": 148828599984721920, "id_str": "148828599984721920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696855750/picplz_2011-12-16_01_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696855750/picplz_2011-12-16_01_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "@JediMasterE at least I don't look like a clown.", "to_user": "JediMasterE", "to_user_id": 93257139, "to_user_id_str": "93257139", "to_user_name": "\\uE32E\\uE11DAgent J \\uE11D\\uE32E", "in_reply_to_status_id": 148828473262227460, "in_reply_to_status_id_str": "148828473262227456"}, +{"created_at": "Mon, 19 Dec 2011 18:14:34 +0000", "from_user": "CoNcEiTeD05", "from_user_id": 224786650, "from_user_id_str": "224786650", "from_user_name": ".:Chas:.", "geo": null, "id": 148828586747494400, "id_str": "148828586747494400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695001233/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695001233/image_normal.jpg", "source": "<a href="http://tweetlogix.com" rel="nofollow">Tweetlogix</a>", "text": "107& park failed contestants wanna clown... Oh ok", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:33 +0000", "from_user": "Jon_Dwyer", "from_user_id": 222845042, "from_user_id_str": "222845042", "from_user_name": "Jon Dwyer", "geo": null, "id": 148828580825141250, "id_str": "148828580825141249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1411981462/IMG_1851-2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1411981462/IMG_1851-2_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@themarknews Raffi should leave hockey to the hockey community; the man is a clown...literally", "to_user": "themarknews", "to_user_id": 20481123, "to_user_id_str": "20481123", "to_user_name": "The Mark News", "in_reply_to_status_id": 148825263575269380, "in_reply_to_status_id_str": "148825263575269376"}, +{"created_at": "Mon, 19 Dec 2011 18:14:32 +0000", "from_user": "SeduceeLeeLeeB", "from_user_id": 267455516, "from_user_id_str": "267455516", "from_user_name": "ShawnLee Lacyy B.", "geo": null, "id": 148828575712284670, "id_str": "148828575712284672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701010234/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701010234/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Fukc that clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:29 +0000", "from_user": "honeyhade", "from_user_id": 347463922, "from_user_id_str": "347463922", "from_user_name": "honey mohamed", "geo": null, "id": 148828565658546180, "id_str": "148828565658546176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695930080/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695930080/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@fadumoppl wallah your a clown", "to_user": "fadumoppl", "to_user_id": 415904695, "to_user_id_str": "415904695", "to_user_name": "fadumoppl", "in_reply_to_status_id": 148689612284506100, "in_reply_to_status_id_str": "148689612284506113"}, +{"created_at": "Mon, 19 Dec 2011 18:14:28 +0000", "from_user": "ShezOVOXO", "from_user_id": 30349028, "from_user_id_str": "30349028", "from_user_name": "\\u2665NENA \\u30C3", "geo": null, "id": 148828559576797200, "id_str": "148828559576797184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699582356/1324154019-picsay_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699582356/1324154019-picsay_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@_TheRealKalEl I heard. lol u a clown... anyway we still got a few days with jay so u good.", "to_user": "_TheRealKalEl", "to_user_id": 369282091, "to_user_id_str": "369282091", "to_user_name": "Carlos Recinos", "in_reply_to_status_id": 148819291259670530, "in_reply_to_status_id_str": "148819291259670529"}, +{"created_at": "Mon, 19 Dec 2011 18:14:18 +0000", "from_user": "PRETTYINGA", "from_user_id": 28444997, "from_user_id_str": "28444997", "from_user_name": "INGS THE MERCILESS", "geo": null, "id": 148828516597764100, "id_str": "148828516597764096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697760030/IMAG0807-1-2-1-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697760030/IMAG0807-1-2-1-1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "+ 1 RT @tripl3staxx08 I swear I have the most clown ass niggas be salty in my mentions kuz I curved them FOH ain't nobody got time", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:15 +0000", "from_user": "Imbadasiwannabe", "from_user_id": 45003921, "from_user_id_str": "45003921", "from_user_name": "ComplextionHENNYSTR8", "geo": null, "id": 148828507278020600, "id_str": "148828507278020609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700229970/409177_311372008884780_100000359497965_1030816_369430871_n__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700229970/409177_311372008884780_100000359497965_1030816_369430871_n__1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Courtier_trev He's trash & he knows it . I really dont even see how he get views because he's not a rapper he's a clown", "to_user": "Courtier_trev", "to_user_id": 83460859, "to_user_id_str": "83460859", "to_user_name": "Julio Camillo", "in_reply_to_status_id": 148828088418054140, "in_reply_to_status_id_str": "148828088418054144"}, +{"created_at": "Mon, 19 Dec 2011 18:14:15 +0000", "from_user": "Bransonsaks", "from_user_id": 180609856, "from_user_id_str": "180609856", "from_user_name": "Larry Kush aka (L3K)", "geo": null, "id": 148828503960326140, "id_str": "148828503960326145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693756219/4erWtTj6_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693756219/4erWtTj6_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "This ninja over here is trying to clown. Oh wow he went there....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:09 +0000", "from_user": "packman_jones96", "from_user_id": 364724384, "from_user_id_str": "364724384", "from_user_name": "davey wonder", "geo": null, "id": 148828480300257280, "id_str": "148828480300257280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1571953254/p9b46fg1_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1571953254/p9b46fg1_normal", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "That's what you call a #clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:06 +0000", "from_user": "sweetQMPea", "from_user_id": 106003901, "from_user_id_str": "106003901", "from_user_name": "*QuInCeLlAs*", "geo": null, "id": 148828467625082880, "id_str": "148828467625082880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702017470/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702017470/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@_WatchMyDONKK cuz if we did then there wouldn't b room to clown and entertain", "to_user": "_WatchMyDONKK", "to_user_id": 55137097, "to_user_id_str": "55137097", "to_user_name": "La Pania\\u2122", "in_reply_to_status_id": 148828295205617660, "in_reply_to_status_id_str": "148828295205617666"}, +{"created_at": "Mon, 19 Dec 2011 18:14:04 +0000", "from_user": "mparsram", "from_user_id": 71611681, "from_user_id_str": "71611681", "from_user_name": "Mike Parsram", "geo": null, "id": 148828457604878340, "id_str": "148828457604878337", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1639064559/imagejpegd_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639064559/imagejpegd_2_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@xkrisxchaputx helping to keep population control up, one clown at a time.", "to_user": "xkrisxchaputx", "to_user_id": 94383406, "to_user_id_str": "94383406", "to_user_name": "Kris Chaput", "in_reply_to_status_id": 148816306551013380, "in_reply_to_status_id_str": "148816306551013376"}, +{"created_at": "Mon, 19 Dec 2011 18:13:57 +0000", "from_user": "TiffanysLand", "from_user_id": 245669557, "from_user_id_str": "245669557", "from_user_name": "Tiffany Browner", "geo": null, "id": 148828431445008400, "id_str": "148828431445008384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1634342074/TiffanysLand_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634342074/TiffanysLand_normal.jpg", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "RT @sheKiNGjazz: Doing the most... When I know ur a joke #clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:46 +0000", "from_user": "Simplii_Chanel", "from_user_id": 281162656, "from_user_id_str": "281162656", "from_user_name": "Chanel", "geo": null, "id": 148828383470567420, "id_str": "148828383470567424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677534708/profile_image_1323195668289_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677534708/profile_image_1323195668289_normal.jpg", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "RT @sheKiNGjazz: Doing the most... When I know ur a joke #clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:38 +0000", "from_user": "1badvirgo", "from_user_id": 324714329, "from_user_id_str": "324714329", "from_user_name": "who but me", "geo": null, "id": 148828348427149300, "id_str": "148828348427149312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699309681/profile_image_1324175150701_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699309681/profile_image_1324175150701_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "@Shakez843 @Jessika_STAR stop it clown", "to_user": "Shakez843", "to_user_id": 25432720, "to_user_id_str": "25432720", "to_user_name": "Reggie", "in_reply_to_status_id": 148826969889456130, "in_reply_to_status_id_str": "148826969889456128"}, +{"created_at": "Mon, 19 Dec 2011 18:13:36 +0000", "from_user": "TH_Holmes_III", "from_user_id": 27931861, "from_user_id_str": "27931861", "from_user_name": "LL Cool H \\uE10F\\uE03D\\uE324", "geo": null, "id": 148828341733048320, "id_str": "148828341733048320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1634270875/TH_Holmes_III_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634270875/TH_Holmes_III_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@Simply_Beyond show me what word you typed in front of my name then, clown. I'll wait......", "to_user": "Simply_Beyond", "to_user_id": 30959607, "to_user_id_str": "30959607", "to_user_name": "Stacy Bazile \\uE106", "in_reply_to_status_id": 148827817918992400, "in_reply_to_status_id_str": "148827817918992385"}, +{"created_at": "Mon, 19 Dec 2011 18:13:34 +0000", "from_user": "ItsJustMera", "from_user_id": 298191279, "from_user_id_str": "298191279", "from_user_name": "Pocahontas :)", "geo": null, "id": 148828333063409660, "id_str": "148828333063409664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691705021/390850_191366794286820_100002405024381_385310_406350190_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691705021/390850_191366794286820_100002405024381_385310_406350190_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @tiiiipppp: the real housewives is a clown ass show . but I watch it . lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:32 +0000", "from_user": "GIJS0546", "from_user_id": 218799868, "from_user_id_str": "218799868", "from_user_name": "\\u2605 GIJSWIGGER' \\u2605", "geo": null, "id": 148828323391348740, "id_str": "148828323391348736", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1679353648/besadsfadsf_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679353648/besadsfadsf_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@daankeupink0203 Hahaha oke:P mn broer heeft mongol schoenen aan:P zeg maar dat hij clown schoenen aan heeft goed voor zn zelfvertrouwen:P", "to_user": "daankeupink0203", "to_user_id": 159622104, "to_user_id_str": "159622104", "to_user_name": "Daan", "in_reply_to_status_id": 148826955440062460, "in_reply_to_status_id_str": "148826955440062464"}, +{"created_at": "Mon, 19 Dec 2011 18:13:30 +0000", "from_user": "Chardonnaymarz", "from_user_id": 49800156, "from_user_id_str": "49800156", "from_user_name": "michael marcellin", "geo": null, "id": 148828316915339260, "id_str": "148828316915339264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1532206475/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1532206475/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@DanishaAugSept y u tryin to clown me like how u make double cheese n ham sandwiches on a small pieces of bread like some1 asked for dat", "to_user": "DanishaAugSept", "to_user_id": 261476665, "to_user_id_str": "261476665", "to_user_name": "Danisha", "in_reply_to_status_id": 148625110314663940, "in_reply_to_status_id_str": "148625110314663936"}, +{"created_at": "Mon, 19 Dec 2011 18:13:26 +0000", "from_user": "heartbeatdrug", "from_user_id": 144806190, "from_user_id_str": "144806190", "from_user_name": "Ruben", "geo": null, "id": 148828298661724160, "id_str": "148828298661724160", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1160911438/1140084672_5_ktIM_1_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1160911438/1140084672_5_ktIM_1_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Jipvanlith hahah whajoo je lijkt net op bassie van adriaan was ook zo'n clown maar moest er never om lachen ;) stil maar en reageer nietmee", "to_user": "Jipvanlith", "to_user_id": 317262262, "to_user_id_str": "317262262", "to_user_name": "medal zero 1", "in_reply_to_status_id": 148828032482803700, "in_reply_to_status_id_str": "148828032482803713"}, +{"created_at": "Mon, 19 Dec 2011 18:13:25 +0000", "from_user": "TweetnAzzFlucka", "from_user_id": 193158410, "from_user_id_str": "193158410", "from_user_name": "FLUCKA BANKS", "geo": null, "id": 148828297734787070, "id_str": "148828297734787072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693023238/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693023238/me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @bEAUTiFULGENUiS: Monkey see Monkey Do.. smh #CLOWN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:25 +0000", "from_user": "dontkallmerexk", "from_user_id": 312764948, "from_user_id_str": "312764948", "from_user_name": "shawny", "geo": null, "id": 148828297235660800, "id_str": "148828297235660800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701530457/YKn2PWqg_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701530457/YKn2PWqg_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@OGMaJik ohh....lollz you a clown", "to_user": "OGMaJik", "to_user_id": 50571075, "to_user_id_str": "50571075", "to_user_name": "Docta Greyhairs", "in_reply_to_status_id": 148827630093864960, "in_reply_to_status_id_str": "148827630093864960"}, +{"created_at": "Mon, 19 Dec 2011 18:13:23 +0000", "from_user": "IMjusBNreal32", "from_user_id": 44435803, "from_user_id_str": "44435803", "from_user_name": "$howtime", "geo": null, "id": 148828288595406850, "id_str": "148828288595406848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688447927/red_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688447927/red_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "S/O to them lames who ain't doing shit wit they life tryna clown a nigga who on his shit! #GrindTime Niggas be frontin' on twitter!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:21 +0000", "from_user": "kaceykaso", "from_user_id": 6277712, "from_user_id_str": "6277712", "from_user_name": "Kacey Coughlin", "geo": null, "id": 148828280873689100, "id_str": "148828280873689089", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1310961853/eightbit-68fc8022-d8cb-4d65-9775-2334ad75b3b9_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1310961853/eightbit-68fc8022-d8cb-4d65-9775-2334ad75b3b9_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Nothing says \"Supreme Leader\" like...\\n\\u201C@Gizmodo: North Korea dictator/clown dies of \"fatigue caused by train ride\"? Really?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:21 +0000", "from_user": "kerm_town", "from_user_id": 386188817, "from_user_id_str": "386188817", "from_user_name": "karon bryant", "geo": null, "id": 148828279913193470, "id_str": "148828279913193473", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1694090721/1XXIqlUq_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694090721/1XXIqlUq_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@YahPop_DiggzMe clown", "to_user": "YahPop_DiggzMe", "to_user_id": 64626741, "to_user_id_str": "64626741", "to_user_name": "Lizz_GotDemOilz", "in_reply_to_status_id": 148826462085058560, "in_reply_to_status_id_str": "148826462085058561"}, +{"created_at": "Mon, 19 Dec 2011 18:13:20 +0000", "from_user": "Retro_Kid_93", "from_user_id": 333726226, "from_user_id_str": "333726226", "from_user_name": "Ikenna Ikpeama", "geo": null, "id": 148828273349103600, "id_str": "148828273349103616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700973342/gFHd69kI_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700973342/gFHd69kI_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Love_Taharah youre such a clown lol you always got jokes lol", "to_user": "Love_Taharah", "to_user_id": 394436607, "to_user_id_str": "394436607", "to_user_name": "Aaisha", "in_reply_to_status_id": 148827831575646200, "in_reply_to_status_id_str": "148827831575646209"}, +{"created_at": "Mon, 19 Dec 2011 18:13:20 +0000", "from_user": "JoshLloyd231", "from_user_id": 151558358, "from_user_id_str": "151558358", "from_user_name": "Josh Lloyd", "geo": null, "id": 148828273038737400, "id_str": "148828273038737410", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1488931539/folder_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1488931539/folder_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube videofrom @ghostrobo http://t.co/SozJhZ3V RAGE Walkthrough Part 2 HD - GIVEAWAY!! - Clown Hal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:18 +0000", "from_user": "veebanga", "from_user_id": 166043355, "from_user_id_str": "166043355", "from_user_name": "iah", "geo": null, "id": 148828266172657660, "id_str": "148828266172657665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689320226/Photo_661_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689320226/Photo_661_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Mickeelodeon Haha clown", "to_user": "Mickeelodeon", "to_user_id": 144702530, "to_user_id_str": "144702530", "to_user_name": "QUEEN Mmm", "in_reply_to_status_id": 148827050088726530, "in_reply_to_status_id_str": "148827050088726528"}, +{"created_at": "Mon, 19 Dec 2011 18:13:16 +0000", "from_user": "MaZaRati_bOi60", "from_user_id": 428377360, "from_user_id_str": "428377360", "from_user_name": "\\u00A5eLLObOi\\u00A4bLaNCO\\u00A4\\u2122", "geo": null, "id": 148828256433483780, "id_str": "148828256433483776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1694192492/j391P6gA_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694192492/j391P6gA_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@SHEz_A_BaD_1: @MaZaRati_bOi60 hit me clown!!!\"hmu yo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:15 +0000", "from_user": "tripl3staxx08", "from_user_id": 40802844, "from_user_id_str": "40802844", "from_user_name": "Almost famous", "geo": null, "id": 148828255338774530, "id_str": "148828255338774528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695422321/tripl3staxx08_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695422321/tripl3staxx08_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "I swear I have the most clown ass niggas be salty in my mentions kuz I curved them FOH ain't nobody got time", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:13 +0000", "from_user": "JovannaBlanca", "from_user_id": 180203243, "from_user_id_str": "180203243", "from_user_name": "Jovanna Romo", "geo": null, "id": 148828247122133000, "id_str": "148828247122132992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696006880/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696006880/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:11 +0000", "from_user": "sheKiNGjazz", "from_user_id": 323956296, "from_user_id_str": "323956296", "from_user_name": "JazzBeauty C.", "geo": null, "id": 148828237949190140, "id_str": "148828237949190144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1665272642/avatar_normal.JPEG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665272642/avatar_normal.JPEG", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "Doing the most... When I know ur a joke #clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:11 +0000", "from_user": "inclined2design", "from_user_id": 49250066, "from_user_id_str": "49250066", "from_user_name": "Jessenia", "geo": null, "id": 148828237533937660, "id_str": "148828237533937664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1658109339/IMAG0353_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658109339/IMAG0353_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Ness is a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:58 +0000", "from_user": "mashburncwtobn3", "from_user_id": 393374757, "from_user_id_str": "393374757", "from_user_name": "Mashburn St. Croix", "geo": null, "id": 148828184178200580, "id_str": "148828184178200577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1594436515/imagesCAK81KZ2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1594436515/imagesCAK81KZ2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "My mama up at her job clown'n she finna beat some woman ass...LOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:47 +0000", "from_user": "TwoMuch_TwoSee", "from_user_id": 285507665, "from_user_id_str": "285507665", "from_user_name": "Denisha Ni'Cole", "geo": null, "id": 148828138284122100, "id_str": "148828138284122115", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682458329/TwoMuch_TwoSee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682458329/TwoMuch_TwoSee_normal.jpg", "source": "<a href="http://www.nibirutech.com" rel="nofollow">TwitBird</a>", "text": "Why\\uD83D\\uDE33RT @_LarryHoover @TwoMuch_TwoSee I can't wait to see you ima clown on yo ass\\uD83D\\uDE20", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:43 +0000", "from_user": "RachelGetsItAll", "from_user_id": 205501900, "from_user_id_str": "205501900", "from_user_name": "rachel w/ Love \\u2665", "geo": null, "id": 148828118763839500, "id_str": "148828118763839488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700684410/2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700684410/2_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "ahaaa ,clown ! RT\"@itsTaliya_MF: @RachelGetsItAll I know right! there is a defrost button to! #splashhh aha\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:36 +0000", "from_user": "MarkMthw", "from_user_id": 143734591, "from_user_id_str": "143734591", "from_user_name": "Mark Mathew", "geo": null, "id": 148828090154483700, "id_str": "148828090154483713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1678578446/IMG-20111026-00010_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678578446/IMG-20111026-00010_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TW33TMachine: They say your penis is related to shoe size. Well, that makes the fear of being raped by a clown much scarier.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:34 +0000", "from_user": "jean_helmuth", "from_user_id": 320875075, "from_user_id_str": "320875075", "from_user_name": "Jean Helmuth", "geo": null, "id": 148828080968966140, "id_str": "148828080968966144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1665304559/7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665304559/7_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "My t-shirt Kruty clown destroyed http://t.co/TITGntyA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:23 +0000", "from_user": "UHateMsRoyalty", "from_user_id": 25137122, "from_user_id_str": "25137122", "from_user_name": "Ms Carinne Royalty", "geo": null, "id": 148828037419507700, "id_str": "148828037419507712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701434360/331682392_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701434360/331682392_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @D_Bodyguard: @UHateMsRoyalty and ya I read his lil bullshit comments. CLOWN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:21 +0000", "from_user": "LeFrenchTaunter", "from_user_id": 424397642, "from_user_id_str": "424397642", "from_user_name": "French Taunter", "geo": null, "id": 148828027353182200, "id_str": "148828027353182208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664790803/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664790803/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@DixonoDockGreen @sirianblair @office_ninja_ \\nZis clown again? I throw ze v\\u00E2che at you...!", "to_user": "DixonoDockGreen", "to_user_id": 418255107, "to_user_id_str": "418255107", "to_user_name": "George Dixon", "in_reply_to_status_id": 148827209837195260, "in_reply_to_status_id_str": "148827209837195265"}, +{"created_at": "Mon, 19 Dec 2011 18:12:17 +0000", "from_user": "ImeanIts_Meliss", "from_user_id": 389744333, "from_user_id_str": "389744333", "from_user_name": "Melissa Cedano", "geo": null, "id": 148828009934233600, "id_str": "148828009934233600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1656389306/330358595_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656389306/330358595_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@tyrecp Clown! lmao .. But get likee some nice heels I swear shell love em", "to_user": "tyrecp", "to_user_id": 422122814, "to_user_id_str": "422122814", "to_user_name": "tyrec phillips", "in_reply_to_status_id": 148827307803549700, "in_reply_to_status_id_str": "148827307803549696"}, +{"created_at": "Mon, 19 Dec 2011 18:12:16 +0000", "from_user": "KFlickJackson", "from_user_id": 207255821, "from_user_id_str": "207255821", "from_user_name": "Kalomo F-Jackson", "geo": null, "id": 148828004569726980, "id_str": "148828004569726976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1659830734/Kc1MNS0M_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659830734/Kc1MNS0M_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@AYOO_itsReece it sound like a clown car horn !", "to_user": "AYOO_itsReece", "to_user_id": 32475208, "to_user_id_str": "32475208", "to_user_name": "soo exquisite ( :", "in_reply_to_status_id": 148827582505299970, "in_reply_to_status_id_str": "148827582505299968"}, +{"created_at": "Mon, 19 Dec 2011 18:12:13 +0000", "from_user": "andrearuy", "from_user_id": 17138108, "from_user_id_str": "17138108", "from_user_name": "andrearuy", "geo": null, "id": 148827995153502200, "id_str": "148827995153502208", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1510453095/yo-fuerte_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1510453095/yo-fuerte_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Muy bonita entrevista @sapotincolorado :-) \\u00A1Un beso grande de final de a\\u00F1o! http://t.co/EHKUsbdB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:13 +0000", "from_user": "BethanyyyAnne", "from_user_id": 100866961, "from_user_id_str": "100866961", "from_user_name": "Bethany Anne", "geo": null, "id": 148827992712425470, "id_str": "148827992712425472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/605439637/DSCN2067_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/605439637/DSCN2067_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @MalloryGriffith: Just experienced a real clown sighting!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:10 +0000", "from_user": "iTsMissBritney", "from_user_id": 229848202, "from_user_id_str": "229848202", "from_user_name": "B.Fletch", "geo": null, "id": 148827982960672770, "id_str": "148827982960672768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692225032/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692225032/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Umm who is this n this fuckin clown says \"ur husband\" gtfoh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:08 +0000", "from_user": "majorieqpxboisv", "from_user_id": 305794927, "from_user_id_str": "305794927", "from_user_name": "Majorie Boisvert", "geo": null, "id": 148827971732520960, "id_str": "148827971732520960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1683570056/imagesCAJM0VOU_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683570056/imagesCAJM0VOU_normal", "source": "<a href="http://biggesttoystore.info" rel="nofollow">biggesttoystoredotinfo</a>", "text": "Reduced Christmas Toy Toddler-Orig Inflatable Punching Toy 46\" Large Size Buy Now http://t.co/oxYrA5Ko", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:05 +0000", "from_user": "corumghae4", "from_user_id": 391163548, "from_user_id_str": "391163548", "from_user_name": "Corum Dudley", "geo": null, "id": 148827958872772600, "id_str": "148827958872772609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1588915672/imagesCA8FDVWC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1588915672/imagesCA8FDVWC_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Smooth_Keyz duh. i know im not 21. its a song clown -__-1k6n", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:55 +0000", "from_user": "Caylaigs", "from_user_id": 440152143, "from_user_id_str": "440152143", "from_user_name": "Cayla Jacobo", "geo": null, "id": 148827917143642100, "id_str": "148827917143642112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700435056/large_tumblr_li6lwsL4Ut1qzupe5o1_500_thumb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700435056/large_tumblr_li6lwsL4Ut1qzupe5o1_500_thumb_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Insane Clown Posse - Tie Dyed T-shirts X-Large: http://t.co/TE2to4cv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:52 +0000", "from_user": "_SimplyMe89", "from_user_id": 80363885, "from_user_id_str": "80363885", "from_user_name": "Loading...", "geo": null, "id": 148827907903590400, "id_str": "148827907903590400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1652970811/hk1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652970811/hk1_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Cthu Jamir is a clown!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:45 +0000", "from_user": "naeeapplepiie", "from_user_id": 262372336, "from_user_id_str": "262372336", "from_user_name": "nae abbott.", "geo": null, "id": 148827877264203780, "id_str": "148827877264203776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1656417405/455469207_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656417405/455469207_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@jessicaaniicole hhahahaha! text me. I'm ready to clown!", "to_user": "jessicaaniicole", "to_user_id": 263990115, "to_user_id_str": "263990115", "to_user_name": "mccusker.", "in_reply_to_status_id": 148826936884477950, "in_reply_to_status_id_str": "148826936884477952"}, +{"created_at": "Mon, 19 Dec 2011 18:11:39 +0000", "from_user": "slim_goodie99", "from_user_id": 369054744, "from_user_id_str": "369054744", "from_user_name": "Dareesa Kimbrough", "geo": null, "id": 148827849476939780, "id_str": "148827849476939777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1667044740/DAR_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667044740/DAR_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Had to clown this bitch at work trying to talk slick to me #dntnome", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:36 +0000", "from_user": "RockyBalbs", "from_user_id": 163981391, "from_user_id_str": "163981391", "from_user_name": "David Rock", "geo": null, "id": 148827839666470900, "id_str": "148827839666470913", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681365994/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681365994/image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Simmons is a clown. Reminder: Bill Simmons KNOWS Gambling http://t.co/Cc2RjciW via @kissmesuzy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:34 +0000", "from_user": "215Springz", "from_user_id": 34220071, "from_user_id_str": "34220071", "from_user_name": "SaySomethingSpringz", "geo": null, "id": 148827830585786370, "id_str": "148827830585786368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668381620/388564_10150463323560850_513625849_10558198_300487110_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668381620/388564_10150463323560850_513625849_10558198_300487110_n_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Informing ladies its the holiday season there will be alot of clown and thirsty Niggas trying to sex u drink wit who u trust rape drug real", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:34 +0000", "from_user": "flygirl_D", "from_user_id": 280599821, "from_user_id_str": "280599821", "from_user_name": "Desiree B.", "geo": null, "id": 148827829948256260, "id_str": "148827829948256256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700733602/picplz_2011-12-18_14.53.36-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700733602/picplz_2011-12-18_14.53.36-1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@Official_G5 nuttin clown u at wrk!?", "to_user": "Official_G5", "to_user_id": 37537839, "to_user_id_str": "37537839", "to_user_name": "Same Ol' G", "in_reply_to_status_id": 148801847531024400, "in_reply_to_status_id_str": "148801847531024384"}, +{"created_at": "Mon, 19 Dec 2011 18:11:31 +0000", "from_user": "ItsLexiNOTLexy", "from_user_id": 305801698, "from_user_id_str": "305801698", "from_user_name": "Lexi Anderson", "geo": null, "id": 148827816333557760, "id_str": "148827816333557760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1625882311/profile_image_1320590809205_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1625882311/profile_image_1320590809205_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "Should I clown now or later???!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:29 +0000", "from_user": "Miguel_Gnz", "from_user_id": 295402297, "from_user_id_str": "295402297", "from_user_name": "Positive vibration.", "geo": null, "id": 148827808116908030, "id_str": "148827808116908033", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692227532/Snaptw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692227532/Snaptw_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I'll be always laughing like a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:26 +0000", "from_user": "_IChasePaper", "from_user_id": 214788386, "from_user_id_str": "214788386", "from_user_name": "Chris Lee", "geo": null, "id": 148827797677281280, "id_str": "148827797677281281", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675906938/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675906938/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@TONEitdownalil lol my people's did clown", "to_user": "TONEitdownalil", "to_user_id": 218305826, "to_user_id_str": "218305826", "to_user_name": "Tone Wright"}, +{"created_at": "Mon, 19 Dec 2011 18:11:19 +0000", "from_user": "C_Ross88", "from_user_id": 31433446, "from_user_id_str": "31433446", "from_user_name": "Christian Ross", "geo": null, "id": 148827766257745920, "id_str": "148827766257745921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1642193443/Photo_on_2011-06-16_at_16.29_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642193443/Photo_on_2011-06-16_at_16.29_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "I hate visiting this clown at work. Her patients creep me out.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:14 +0000", "from_user": "TopeTops", "from_user_id": 23922673, "from_user_id_str": "23922673", "from_user_name": "Call Me Temi...", "geo": null, "id": 148827747966402560, "id_str": "148827747966402560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1636015312/TopeTops_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1636015312/TopeTops_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@JoshOlawale u this clown. Where is my birthday present?", "to_user": "JoshOlawale", "to_user_id": 30198391, "to_user_id_str": "30198391", "to_user_name": "Motivation = Winning", "in_reply_to_status_id": 148826989602680830, "in_reply_to_status_id_str": "148826989602680832"}, +{"created_at": "Mon, 19 Dec 2011 18:11:10 +0000", "from_user": "Slicc_247", "from_user_id": 306330579, "from_user_id_str": "306330579", "from_user_name": "Dmequise Britt \\u2122", "geo": null, "id": 148827730870419460, "id_str": "148827730870419456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1649770914/3g10JsNH_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649770914/3g10JsNH_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @xOxo_ShawtieGal: Dmequise A Clown! Lol I Swear That Nigga Will Have You Laughing For Days!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:56 +0000", "from_user": "msthickums707", "from_user_id": 175586928, "from_user_id_str": "175586928", "from_user_name": "Sheena-Sherie", "geo": null, "id": 148827673018372100, "id_str": "148827673018372096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701572817/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701572817/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I'm comin RT \\u201C@DrinkThisJuic3: My daddy really made chicken and pasta and have peach cobbler in the oven...he a clown but I'm bout to eat\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:45 +0000", "from_user": "DjSmalls", "from_user_id": 21125999, "from_user_id_str": "21125999", "from_user_name": "DjSmalls", "geo": null, "id": 148827624532217860, "id_str": "148827624532217856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1620579010/Dewar_s_DJ_Masterblender_Logo1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620579010/Dewar_s_DJ_Masterblender_Logo1_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", "text": "Lol clown RT @KINGIVN New followers if u want me to follow just ask don't worry I won't bite......hard ;-) lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:34 +0000", "from_user": "Killakelzx2", "from_user_id": 296028447, "from_user_id_str": "296028447", "from_user_name": "Kellie ", "geo": null, "id": 148827579162443780, "id_str": "148827579162443776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662062576/profile_image_1322464149566_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662062576/profile_image_1322464149566_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "Lol this clown finna go to jail", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:33 +0000", "from_user": "BlowMyFro_", "from_user_id": 324653568, "from_user_id_str": "324653568", "from_user_name": "Kyree Burton", "geo": null, "id": 148827572887765000, "id_str": "148827572887764992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1570248086/FlMhDMzd_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1570248086/FlMhDMzd_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Najee a clown haha .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:30 +0000", "from_user": "MsColeman518", "from_user_id": 134635551, "from_user_id_str": "134635551", "from_user_name": "Simply....", "geo": null, "id": 148827561848356860, "id_str": "148827561848356864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1616184958/profile_image_1320096869197_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616184958/profile_image_1320096869197_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Jenelle is a clown lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:28 +0000", "from_user": "iSaluteCannabis", "from_user_id": 289737637, "from_user_id_str": "289737637", "from_user_name": "Ant Oliver Hoe!!!", "geo": null, "id": 148827552780267520, "id_str": "148827552780267520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1683525491/182424_188723524492413_100000642996265_517809_309462_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683525491/182424_188723524492413_100000642996265_517809_309462_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "dont be smilin in my face like you my round then turn around nd lok at like ah clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:26 +0000", "from_user": "WCCUZZO", "from_user_id": 299857800, "from_user_id_str": "299857800", "from_user_name": "Somerset Ooday ", "geo": null, "id": 148827544622346240, "id_str": "148827544622346240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700605006/cuzzo_normal.jpg-large", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700605006/cuzzo_normal.jpg-large", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@Chuck_StDreams: She can be my back bone every nigga need a spine\"stfu clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:20 +0000", "from_user": "brucee1920", "from_user_id": 132992821, "from_user_id_str": "132992821", "from_user_name": "Bru(cee)", "geo": null, "id": 148827521608192000, "id_str": "148827521608192001", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701321189/brucee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701321189/brucee_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "@will32426 lol clown", "to_user": "will32426", "to_user_id": 59259514, "to_user_id_str": "59259514", "to_user_name": "Reggie", "in_reply_to_status_id": 148814787604787200, "in_reply_to_status_id_str": "148814787604787201"}, +{"created_at": "Mon, 19 Dec 2011 18:10:17 +0000", "from_user": "MoniGeo", "from_user_id": 26444662, "from_user_id_str": "26444662", "from_user_name": "Monica Manzanares", "geo": null, "id": 148827508022845440, "id_str": "148827508022845440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698621289/Photo_152_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698621289/Photo_152_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Apparently wearing a Angry Birds hat to work makes u the clown @ work. #callcenterlife", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:17 +0000", "from_user": "Bebaaa_", "from_user_id": 181393130, "from_user_id_str": "181393130", "from_user_name": "MurdaBella", "geo": null, "id": 148827507590823940, "id_str": "148827507590823936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699591753/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699591753/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @Dae_Diamond: Oomf is a fuckin clown! Omg! He think he sayin some \"slick\" shit but he really be corny as a bitch. Boy, stfu! Thirsty ass...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:15 +0000", "from_user": "_TheOtherKevin", "from_user_id": 369769003, "from_user_id_str": "369769003", "from_user_name": "Pablo E.E. Gaviria ", "geo": null, "id": 148827500905119740, "id_str": "148827500905119744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1660842927/100MEDIA95IMAG0709_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660842927/100MEDIA95IMAG0709_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\"Silly Ass Clown\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:15 +0000", "from_user": "_J_Sin", "from_user_id": 359751196, "from_user_id_str": "359751196", "from_user_name": "Jazzy", "geo": null, "id": 148827499906863100, "id_str": "148827499906863104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698415990/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698415990/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Holy moly! She looks like a clown with that orange hair 0_0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:15 +0000", "from_user": "Lucas_Hare", "from_user_id": 115973844, "from_user_id_str": "115973844", "from_user_name": "Lucas Hare", "geo": null, "id": 148827498925395970, "id_str": "148827498925395969", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1511909591/6395321_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1511909591/6395321_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @SirTerence: @Lucas_Hare I'm guessing some clown at the ad agency advised that an apostrophe would look 'clunky' amidst the snow backdrop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:15 +0000", "from_user": "yomz_TMK", "from_user_id": 274817443, "from_user_id_str": "274817443", "from_user_name": "Yomi Oredein \\u266A", "geo": null, "id": 148827498241736700, "id_str": "148827498241736705", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696829046/IMG00132-20111205-2208_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696829046/IMG00132-20111205-2208_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@zhaneebaybee LOL clown ..press F1 that's all the help you need :p", "to_user": "zhaneebaybee", "to_user_id": 63351796, "to_user_id_str": "63351796", "to_user_name": "Zhan\\u00E9 Padmore", "in_reply_to_status_id": 148827175552950270, "in_reply_to_status_id_str": "148827175552950273"}, +{"created_at": "Mon, 19 Dec 2011 18:10:14 +0000", "from_user": "AvaLos78", "from_user_id": 238680454, "from_user_id_str": "238680454", "from_user_name": "Kris Avalos", "geo": null, "id": 148827495490273280, "id_str": "148827495490273280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1611302941/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611302941/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "@RoXy0724 Yup she had FOREVER!! And my friends clown me", "to_user": "RoXy0724", "to_user_id": 253594077, "to_user_id_str": "253594077", "to_user_name": "\\uE304\\uE022Roxy S\\uE327\\uE306", "in_reply_to_status_id": 148827160835145730, "in_reply_to_status_id_str": "148827160835145729"}, +{"created_at": "Mon, 19 Dec 2011 18:10:05 +0000", "from_user": "FuckYoSIDELINES", "from_user_id": 315538773, "from_user_id_str": "315538773", "from_user_name": "#BitchImPRETTY.", "geo": null, "id": 148827458165162000, "id_str": "148827458165161984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1688032365/9QbWLsXe_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688032365/9QbWLsXe_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@UhBeautiF_LMind ill be waiting . . Does this gotta do w/ \" clown \" ?", "to_user": "UhBeautiF_LMind", "to_user_id": 344530338, "to_user_id_str": "344530338", "to_user_name": "Cierria", "in_reply_to_status_id": 148827222336221200, "in_reply_to_status_id_str": "148827222336221184"}, +{"created_at": "Mon, 19 Dec 2011 18:10:01 +0000", "from_user": "DECEMBERR_13th", "from_user_id": 270092268, "from_user_id_str": "270092268", "from_user_name": "Janeka Booker", "geo": null, "id": 148827438372237300, "id_str": "148827438372237313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1584010152/NE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584010152/NE_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Jtfo @oomf this boy a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:59 +0000", "from_user": "Mndspeak88", "from_user_id": 118256817, "from_user_id_str": "118256817", "from_user_name": "Eric Markese", "geo": null, "id": 148827429933297660, "id_str": "148827429933297664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692312729/csMBu6LN_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692312729/csMBu6LN_normal", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @DenimAndChard: And a show only with @TamarBraxtonHer doesn't appeal to this African American. I'm not a clown, nor do I like to see them! @WEtv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:57 +0000", "from_user": "foleevee", "from_user_id": 219877806, "from_user_id_str": "219877806", "from_user_name": "Folivi Ola Henry", "geo": null, "id": 148827423474065400, "id_str": "148827423474065409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1688740419/IMG-20110915-00240_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688740419/IMG-20110915-00240_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@whose dis clown @olabode01", "to_user": "whose", "to_user_id": 21958016, "to_user_id_str": "21958016", "to_user_name": "JONNY WHO"}, +{"created_at": "Mon, 19 Dec 2011 18:09:54 +0000", "from_user": "BigD_Be_Flexin", "from_user_id": 239056567, "from_user_id_str": "239056567", "from_user_name": "DeAndre Herron", "geo": null, "id": 148827411746783230, "id_str": "148827411746783232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1661845701/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661845701/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Dis negro @DezMayberry23 tryna clown me imma ball u up on da court today #TeamDHoward", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:46 +0000", "from_user": "SharpyLcfc1994", "from_user_id": 185210044, "from_user_id_str": "185210044", "from_user_name": "Bradley Sharp", "geo": null, "id": 148827379136086000, "id_str": "148827379136086017", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1213124758/41540_1309126092_2855194_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1213124758/41540_1309126092_2855194_q_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@XxRosieAxX clown ;) you didnt reply to my DM :O x", "to_user": "XxRosieAxX", "to_user_id": 43941607, "to_user_id_str": "43941607", "to_user_name": "Rosie Atkinson", "in_reply_to_status_id": 148826814410784770, "in_reply_to_status_id_str": "148826814410784770"}, +{"created_at": "Mon, 19 Dec 2011 18:09:35 +0000", "from_user": "LilPookie1980", "from_user_id": 269517995, "from_user_id_str": "269517995", "from_user_name": "Shiv Schiwitz", "geo": null, "id": 148827330062725120, "id_str": "148827330062725120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688075002/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688075002/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @thorlock: Clown Island. From the producers of Sleepaway Camp. Based on the novel by Bret Easton Ellis. Starring Mario Lopez and Jennifer...Lopez.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:35 +0000", "from_user": "jdeeski42", "from_user_id": 145104352, "from_user_id_str": "145104352", "from_user_name": "JD", "geo": null, "id": 148827329202884600, "id_str": "148827329202884608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702523691/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702523691/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @Teflon_don323: \"@323_mac: told my lil brotha , you can be betta den me if you wanna be\" lmao aww shit he's past you already clown!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:32 +0000", "from_user": "Im_ThePrize", "from_user_id": 127562214, "from_user_id_str": "127562214", "from_user_name": "Not Perfect ", "geo": null, "id": 148827320155766800, "id_str": "148827320155766784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696542804/Im_ThePrize_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696542804/Im_ThePrize_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Tim is a clown lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:31 +0000", "from_user": "Imperfect_KK", "from_user_id": 263984182, "from_user_id_str": "263984182", "from_user_name": "KrissyDeShawn", "geo": null, "id": 148827315495903230, "id_str": "148827315495903232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1666582696/lo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666582696/lo_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "This clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:31 +0000", "from_user": "USDACERTIFIED17", "from_user_id": 303259275, "from_user_id_str": "303259275", "from_user_name": "Polo The Don ", "geo": null, "id": 148827313658798080, "id_str": "148827313658798080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1633175612/SjhPp53I_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633175612/SjhPp53I_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@ProfessionalMee @ochocinco i wasn't I drafted him in Fantasy they clown me lol", "to_user": "ProfessionalMee", "to_user_id": 282103947, "to_user_id_str": "282103947", "to_user_name": "~BeautifulDisaster~", "in_reply_to_status_id": 148827058255044600, "in_reply_to_status_id_str": "148827058255044608"} +, +{"created_at": "Mon, 19 Dec 2011 18:09:31 +0000", "from_user": "Imperfect_KK", "from_user_id": 263984182, "from_user_id_str": "263984182", "from_user_name": "KrissyDeShawn", "geo": null, "id": 148827315495903230, "id_str": "148827315495903232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1666582696/lo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666582696/lo_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "This clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:31 +0000", "from_user": "USDACERTIFIED17", "from_user_id": 303259275, "from_user_id_str": "303259275", "from_user_name": "Polo The Don ", "geo": null, "id": 148827313658798080, "id_str": "148827313658798080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1633175612/SjhPp53I_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633175612/SjhPp53I_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@ProfessionalMee @ochocinco i wasn't I drafted him in Fantasy they clown me lol", "to_user": "ProfessionalMee", "to_user_id": 282103947, "to_user_id_str": "282103947", "to_user_name": "~BeautifulDisaster~", "in_reply_to_status_id": 148827058255044600, "in_reply_to_status_id_str": "148827058255044608"}, +{"created_at": "Mon, 19 Dec 2011 18:09:30 +0000", "from_user": "Gandhi_Aime", "from_user_id": 37242629, "from_user_id_str": "37242629", "from_user_name": "BUFFERING...... \\uE517", "geo": null, "id": 148827311251267600, "id_str": "148827311251267584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701547003/Gandhi_Aime_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701547003/Gandhi_Aime_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Na seriously cause not all cannons and nikons record RT @FourPlayK: \\u201C@Gandhi_Aime: @FourPlayK it records???\\u201D nah it's disposable lol #clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:22 +0000", "from_user": "STARRxxStruckk", "from_user_id": 278300188, "from_user_id_str": "278300188", "from_user_name": "\\u2605Amber\\u2606\\u2606McTerry\\u2605", "geo": null, "id": 148827277893967870, "id_str": "148827277893967872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700928091/PSs0YgBW_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700928091/PSs0YgBW_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @BoyWonderBreezy: #NF @STARRxxStruckk #FMW Her clown ass lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:22 +0000", "from_user": "BUbul4sh1", "from_user_id": 168594991, "from_user_id_str": "168594991", "from_user_name": "Jonathan Jurrig ", "geo": null, "id": 148827275025055740, "id_str": "148827275025055744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1679146710/jjad_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679146710/jjad_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "I don't wanna be the clown tho", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:21 +0000", "from_user": "Dae_Diamond", "from_user_id": 150468176, "from_user_id_str": "150468176", "from_user_name": "PinkLipz_ThickAzz\\u2649", "geo": null, "id": 148827274307833860, "id_str": "148827274307833856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692144147/Dae_Diamond_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692144147/Dae_Diamond_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Oomf is a fuckin clown! Omg! He think he sayin some \"slick\" shit but he really be corny as a bitch. Boy, stfu! Thirsty ass...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:16 +0000", "from_user": "JrNick15", "from_user_id": 136484408, "from_user_id_str": "136484408", "from_user_name": "Dominique Bethell", "geo": null, "id": 148827249892794370, "id_str": "148827249892794368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1541608972/lakers_snap_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541608972/lakers_snap_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Superpaid_J: @ItsUltra_Violet ; lol buiiiii , youse make em , cause youse a fuckin clown !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:13 +0000", "from_user": "HSfF_Murray", "from_user_id": 284323468, "from_user_id_str": "284323468", "from_user_name": "V.Murray", "geo": null, "id": 148827240929566720, "id_str": "148827240929566720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691127821/V.Murray_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691127821/V.Murray_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@_JeSuisJolie I'll have something new to clown him about loL. Thanks for the info. hAa", "to_user": "_JeSuisJolie", "to_user_id": 57438986, "to_user_id_str": "57438986", "to_user_name": "H\\u00F6lly Ra\\u00EA ", "in_reply_to_status_id": 148826988088524800, "in_reply_to_status_id_str": "148826988088524801"}, +{"created_at": "Mon, 19 Dec 2011 18:09:00 +0000", "from_user": "LivinLavishLos", "from_user_id": 44765959, "from_user_id_str": "44765959", "from_user_name": "Slime Rothstein", "geo": null, "id": 148827186336501760, "id_str": "148827186336501760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701181752/IMG01052-20111218-1945_1__normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701181752/IMG01052-20111218-1945_1__normal", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@Mrs_Glock40 y is u sayin my name on dis twitter shit moe tf u a clown joe.", "to_user": "Mrs_Glock40", "to_user_id": 96646616, "to_user_id_str": "96646616", "to_user_name": "Crown me queen.", "in_reply_to_status_id": 148824432687845380, "in_reply_to_status_id_str": "148824432687845377"}, +{"created_at": "Mon, 19 Dec 2011 18:08:50 +0000", "from_user": "_The1YhuNevaHav", "from_user_id": 359140517, "from_user_id_str": "359140517", "from_user_name": "Kortni Tates", "geo": null, "id": 148827142979977200, "id_str": "148827142979977216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685308154/111210-114958_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685308154/111210-114958_normal.jpg", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "Jared is a clown tho..... he be disturbin mhi learnin enviroment....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:08:49 +0000", "from_user": "FootyJerseys", "from_user_id": 167757559, "from_user_id_str": "167757559", "from_user_name": "footballjerseymuseum", "geo": null, "id": 148827138370441200, "id_str": "148827138370441216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1080381090/blank_number2_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1080381090/blank_number2_normal.gif", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@MarkFoley99 I'll take you down like a clown in chinatown. I'd play the rock and kinky up front and bench your spotty arse.#teambazualdo", "to_user": "MarkFoley99", "to_user_id": 37291498, "to_user_id_str": "37291498", "to_user_name": "Mark Foley", "in_reply_to_status_id": 148826443915337730, "in_reply_to_status_id_str": "148826443915337728"}, +{"created_at": "Mon, 19 Dec 2011 18:08:49 +0000", "from_user": "Superpaid_J", "from_user_id": 291974892, "from_user_id_str": "291974892", "from_user_name": "Justin Sweeting", "geo": null, "id": 148827138131361800, "id_str": "148827138131361792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1580103518/swagg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580103518/swagg_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ItsUltra_Violet ; lol buiiiii , youse make em , cause youse a fuckin clown !", "to_user": "ItsUltra_Violet", "to_user_id": 348767822, "to_user_id_str": "348767822", "to_user_name": "Raymond Dean", "in_reply_to_status_id": 148826772165754880, "in_reply_to_status_id_str": "148826772165754880"}, +{"created_at": "Mon, 19 Dec 2011 18:08:40 +0000", "from_user": "MsUberSocial", "from_user_id": 237431025, "from_user_id_str": "237431025", "from_user_name": "Brit Brat", "geo": null, "id": 148827102500753400, "id_str": "148827102500753408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1658049950/330413094_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658049950/330413094_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Omg yo avi scaring me u got the doodoo face mixed wit a scary ass clown eww.. An yes u ugly", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:08:40 +0000", "from_user": "Catherinezvs", "from_user_id": 430043994, "from_user_id_str": "430043994", "from_user_name": "Catherine Tutterrow", "geo": null, "id": 148827100554608640, "id_str": "148827100554608640", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1677514101/ffsnqfnsjb_130523423-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677514101/ffsnqfnsjb_130523423-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Insane Clown Posse: Juggalo Championshit Wrestling, Vol. 2: JCW VOLUME 2 - DVD Movie http://t.co/XrSZ0fkl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:08:33 +0000", "from_user": "msbeauty14", "from_user_id": 135686086, "from_user_id_str": "135686086", "from_user_name": "\\u2764crystal\\u2764", "geo": null, "id": 148827066207440900, "id_str": "148827066207440898", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688130144/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688130144/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "She a clown \\u2764\\u2764\\u2764 http://t.co/3VUc47rL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:08:31 +0000", "from_user": "stet_daddy", "from_user_id": 202004659, "from_user_id_str": "202004659", "from_user_name": "Drew Stetler", "geo": null, "id": 148827064861073400, "id_str": "148827064861073410", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690563254/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690563254/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@corthilt Ur a clown!", "to_user": "corthilt", "to_user_id": 398731134, "to_user_id_str": "398731134", "to_user_name": "Cortney Hilton", "in_reply_to_status_id": 148823426365272060, "in_reply_to_status_id_str": "148823426365272066"}, +{"created_at": "Mon, 19 Dec 2011 18:08:27 +0000", "from_user": "BishopSteel", "from_user_id": 340488645, "from_user_id_str": "340488645", "from_user_name": "BishopSteel", "geo": null, "id": 148827047467286530, "id_str": "148827047467286529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702416915/394694_337356949623296_100000469803123_1360509_1780983551_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702416915/394694_337356949623296_100000469803123_1360509_1780983551_n_normal.jpg", "source": "<a href="http://www.handmark.com" rel="nofollow">TweetCaster for iOS</a>", "text": "@Tikdoe You A Clown Lls Get A New Controller First !", "to_user": "Tikdoe", "to_user_id": 396132360, "to_user_id_str": "396132360", "to_user_name": "Tikdoe", "in_reply_to_status_id": 148824894614929400, "in_reply_to_status_id_str": "148824894614929408"}, +{"created_at": "Mon, 19 Dec 2011 18:08:23 +0000", "from_user": "KCoolBurns", "from_user_id": 440586322, "from_user_id_str": "440586322", "from_user_name": "kahdejah burns", "geo": null, "id": 148827030442610700, "id_str": "148827030442610688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701582002/kamiya2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701582002/kamiya2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@LanaiDeja YHu A Clown LOl", "to_user": "LanaiDeja", "to_user_id": 440587003, "to_user_id_str": "440587003", "to_user_name": "Deja Lanai Patterson"}, +{"created_at": "Mon, 19 Dec 2011 18:08:22 +0000", "from_user": "ScreaamMariaa", "from_user_id": 228443254, "from_user_id_str": "228443254", "from_user_name": "\\u2192M a r i a (:", "geo": null, "id": 148827023798829060, "id_str": "148827023798829056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1652802898/O9wFqMKq_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652802898/O9wFqMKq_normal", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "#Np Insane Clown Posse - Crystal Ball", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:08:21 +0000", "from_user": "FourPlayK", "from_user_id": 91285264, "from_user_id_str": "91285264", "from_user_name": "Jerry Maguire ", "geo": null, "id": 148827021152227330, "id_str": "148827021152227328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1650348895/Photo_on_2011-11-21_at_09.56__3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650348895/Photo_on_2011-11-21_at_09.56__3_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@Gandhi_Aime: @FourPlayK it records???\\u201D nah it's disposable lol #clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:08:19 +0000", "from_user": "icelemongirl", "from_user_id": 116821810, "from_user_id_str": "116821810", "from_user_name": "\\uE030\\uE204\\uBC15\\uD790\\uD790\\uE204\\uE32E", "geo": null, "id": 148827014084825100, "id_str": "148827014084825088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689251667/ProfilePhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689251667/ProfilePhoto_normal.png", "source": "<a href="http://www.osfoora.com" rel="nofollow">Osfoora for iPhone</a>", "text": "@sching108 Yala..change all la..no more pro sir..>_< but I think series 4 d story will begin from the clown", "to_user": "sching108", "to_user_id": 101766116, "to_user_id_str": "101766116", "to_user_name": "SCHING", "in_reply_to_status_id": 148825980285354000, "in_reply_to_status_id_str": "148825980285353985"}, +{"created_at": "Mon, 19 Dec 2011 18:08:18 +0000", "from_user": "SlyNativeCrook", "from_user_id": 245833653, "from_user_id_str": "245833653", "from_user_name": "Bill Withers", "geo": null, "id": 148827006690263040, "id_str": "148827006690263040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1667241923/Currensy_normal.htm", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667241923/Currensy_normal.htm", "source": "<a href="http://twitter.com/">web</a>", "text": "@iLOVEmyCarter yo still on dat lmao you a clown", "to_user": "iLOVEmyCarter", "to_user_id": 234124950, "to_user_id_str": "234124950", "to_user_name": "ashley gomez ", "in_reply_to_status_id": 148826675138928640, "in_reply_to_status_id_str": "148826675138928640"}, +{"created_at": "Mon, 19 Dec 2011 18:08:17 +0000", "from_user": "qtsammie", "from_user_id": 47199777, "from_user_id_str": "47199777", "from_user_name": "Samantha Nguyen", "geo": null, "id": 148827005633314800, "id_str": "148827005633314816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1672646857/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672646857/image_normal.jpg", "source": "<a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow">Twitter for iPhone</a>", "text": "RT @shitmyguysays: Me: look at that cute clown making balloon animals for kids! Him: you see a clown.. I see a sex offender.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:08:17 +0000", "from_user": "iLove_dANi", "from_user_id": 64214961, "from_user_id_str": "64214961", "from_user_name": "\\uE314\\uE035 Ms.October \\uE035\\uE314", "geo": null, "id": 148827002470809600, "id_str": "148827002470809600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701803934/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701803934/image_normal.jpg", "source": "<a href="http://www.handmark.com" rel="nofollow">TweetCaster for iOS</a>", "text": "RT @Polo_Pompey: @iLove_dANi HAHAHAHA THEY GON HEM U UP AT THE DMV. // don't say that clown !! Lol but I'm at my mama shit !!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:08:14 +0000", "from_user": "WLiLeow", "from_user_id": 127807211, "from_user_id_str": "127807211", "from_user_name": "WLi Leow", "geo": null, "id": 148826990995185660, "id_str": "148826990995185664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692948055/Photo_on_12-9-11_at_10.32_PM__3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692948055/Photo_on_12-9-11_at_10.32_PM__3_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @RemyJemy: Her boobs way too big n heavy thats why she short cldnt grow RT @gabwal: Sometimes I find that nickie minaj look like a clown, in a good way", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:08:01 +0000", "from_user": "sebastiaan8989", "from_user_id": 79821810, "from_user_id_str": "79821810", "from_user_name": "Sebastiaan Vonk", "geo": null, "id": 148826938448941060, "id_str": "148826938448941056", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1524141157/IMG_1306_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1524141157/IMG_1306_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Heb ik wat gemist dat die Clown Roemer tot politicus van het jaar wordt benoemd?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:07:56 +0000", "from_user": "macky_CAsports", "from_user_id": 50669386, "from_user_id_str": "50669386", "from_user_name": "The Real Is Mack", "geo": null, "id": 148826916290441200, "id_str": "148826916290441216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1642703996/165158_1639719765373_1608162551_1432970_6989851_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642703996/165158_1639719765373_1608162551_1432970_6989851_n_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "LolRT @_MARAvinsRoom: @macky_CAsports lmfao you a clown yo.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:07:51 +0000", "from_user": "NoudSteffens", "from_user_id": 18338644, "from_user_id_str": "18338644", "from_user_name": "Noud Steffens", "geo": null, "id": 148826895394422800, "id_str": "148826895394422784", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1168662258/phpgWOzEZAM_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1168662258/phpgWOzEZAM_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@egrootendorst een paar goede assists gegeven idd... Het blijft een clown!", "to_user": "egrootendorst", "to_user_id": 50553186, "to_user_id_str": "50553186", "to_user_name": "Edwin Grootendorst", "in_reply_to_status_id": 148797798408654850, "in_reply_to_status_id_str": "148797798408654851"}, +{"created_at": "Mon, 19 Dec 2011 18:07:50 +0000", "from_user": "ChadCEnglish", "from_user_id": 226301710, "from_user_id_str": "226301710", "from_user_name": "Chad English", "geo": null, "id": 148826891485331460, "id_str": "148826891485331456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683686565/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683686565/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@MexiMike12 Mendenhall clown!", "to_user": "MexiMike12", "to_user_id": 356259248, "to_user_id_str": "356259248", "to_user_name": "Mike Hernandez", "in_reply_to_status_id": 148822435767136260, "in_reply_to_status_id_str": "148822435767136256"}, +{"created_at": "Mon, 19 Dec 2011 18:07:49 +0000", "from_user": "Super_human_92", "from_user_id": 227372689, "from_user_id_str": "227372689", "from_user_name": "T.jordan.Omogbehin \\u2714", "geo": null, "id": 148826886250835970, "id_str": "148826886250835968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1608240889/328717217_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608240889/328717217_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_ilovebrandi: Getting yur dimples pierced is stupid... yu look like a damn clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:07:45 +0000", "from_user": "xOxo_ShawtieGal", "from_user_id": 72137814, "from_user_id_str": "72137814", "from_user_name": "NaeBae BadAss", "geo": null, "id": 148826868706054140, "id_str": "148826868706054145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701387300/ezuG68f4_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701387300/ezuG68f4_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Dmequise A Clown! Lol I Swear That Nigga Will Have You Laughing For Days!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:07:43 +0000", "from_user": "eelcozwaggy", "from_user_id": 233136026, "from_user_id_str": "233136026", "from_user_name": "eelco veenstra", "geo": null, "id": 148826860476825600, "id_str": "148826860476825600", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1204702768/898327673_3_EZmS_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1204702768/898327673_3_EZmS_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@sebasmun1: kijk nu het weer er is eindelijk sneeuw op komst vanacht ik hoop het\" mar kalm misselijjke clown :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:07:40 +0000", "from_user": "JASii_JAY", "from_user_id": 428779345, "from_user_id_str": "428779345", "from_user_name": "JASMINE D. DUNBAR", "geo": null, "id": 148826847763894270, "id_str": "148826847763894272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686546125/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686546125/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@JohansPeace @crown_me_queen & I'ma clown again if they fitting like sweats!!! Smh", "to_user": "JohansPeace", "to_user_id": 28599963, "to_user_id_str": "28599963", "to_user_name": "Johan Johnson", "in_reply_to_status_id": 148804813407264770, "in_reply_to_status_id_str": "148804813407264768"}, +{"created_at": "Mon, 19 Dec 2011 18:07:37 +0000", "from_user": "stevecwd", "from_user_id": 66735043, "from_user_id_str": "66735043", "from_user_name": "Steve Braund", "geo": null, "id": 148826837773074430, "id_str": "148826837773074432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1666851976/stevecwd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666851976/stevecwd_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Darren Bent. What a clown.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:07:32 +0000", "from_user": "JuicyyCouture__", "from_user_id": 388219409, "from_user_id_str": "388219409", "from_user_name": "Doneisha Bishop", "geo": null, "id": 148826813446111230, "id_str": "148826813446111233", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1583493913/__iHeart_Scotty_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583493913/__iHeart_Scotty_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "..silly ass clown!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:07:30 +0000", "from_user": "Prince_Mark3", "from_user_id": 234948111, "from_user_id_str": "234948111", "from_user_name": "markia jackson", "geo": null, "id": 148826805812465660, "id_str": "148826805812465666", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685882667/2011-12-08_15-45-31_577_KPT_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685882667/2011-12-08_15-45-31_577_KPT_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@PRiNCESSJASMiN_ lmao clown", "to_user": "PRiNCESSJASMiN_", "to_user_id": 215477090, "to_user_id_str": "215477090", "to_user_name": "Jasmine Woodyard", "in_reply_to_status_id": 148826158572634100, "in_reply_to_status_id_str": "148826158572634112"}, +{"created_at": "Mon, 19 Dec 2011 18:07:18 +0000", "from_user": "enricopetti", "from_user_id": 211467336, "from_user_id_str": "211467336", "from_user_name": "enrico pettinato", "geo": null, "id": 148826754755215360, "id_str": "148826754755215360", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1202661748/161824_1195938662_7627549_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1202661748/161824_1195938662_7627549_q_normal.jpg", "source": "<a href="http://beta.twitlonger.com" rel="nofollow">TwitLonger Beta</a>", "text": "quante risate con i clown verdi #leghisti \\nprima introducono la tassa dell'Imu e votando tutte le leggi ad (cont) http://t.co/5w3ErrN8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:07:16 +0000", "from_user": "johnny_t_t", "from_user_id": 20468074, "from_user_id_str": "20468074", "from_user_name": "Johnny T T", "geo": null, "id": 148826748027535360, "id_str": "148826748027535360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1676282263/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676282263/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Remember that total bullshit VH1 show \"The Pickup Artist\"? Where it told you to get dates you have to dress like a circus clown on meth?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:07:09 +0000", "from_user": "Peanut_Murks", "from_user_id": 161055108, "from_user_id_str": "161055108", "from_user_name": "RaeRae", "geo": null, "id": 148826717987946500, "id_str": "148826717987946496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1544305328/110915-132103_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544305328/110915-132103_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "- Most Fellas That Clown Their Boys About Cakin Usually Wish They Had A Relationship Like That, Been Hurt Before, Or Scared Of Commitment.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:07:08 +0000", "from_user": "B1g_Br0", "from_user_id": 329768753, "from_user_id_str": "329768753", "from_user_name": "Jerard D. Campbell", "geo": null, "id": 148826715081293820, "id_str": "148826715081293824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684307943/lakerhead_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684307943/lakerhead_normal.JPG", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Oomf was tryna go in on the bump on my nose she better chill she don't wanna clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:07:03 +0000", "from_user": "Glynniss", "from_user_id": 22408971, "from_user_id_str": "22408971", "from_user_name": "Glynnis", "geo": null, "id": 148826693040226300, "id_str": "148826693040226304", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685623440/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685623440/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Bah, heeft die clown Roemer gewonnen. _0-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:55 +0000", "from_user": "DenimAndChard", "from_user_id": 64622856, "from_user_id_str": "64622856", "from_user_name": "Stoned Stiletto", "geo": null, "id": 148826661004128260, "id_str": "148826661004128256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1675663171/100_0009_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675663171/100_0009_normal.JPG", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "And a show only with @TamarBraxtonHer doesn't appeal to this African American. I'm not a clown, nor do I like to see them! @WEtv", "to_user": "WEtv", "to_user_id": 16113773, "to_user_id_str": "16113773", "to_user_name": "WE tv", "in_reply_to_status_id": 148794785124196350, "in_reply_to_status_id_str": "148794785124196352"}, +{"created_at": "Mon, 19 Dec 2011 18:06:55 +0000", "from_user": "SirTerence", "from_user_id": 19483365, "from_user_id_str": "19483365", "from_user_name": "Terence Dackombe", "geo": null, "id": 148826660505010180, "id_str": "148826660505010176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1539909968/TD_DBC_2011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1539909968/TD_DBC_2011_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@Lucas_Hare I'm guessing some clown at the ad agency advised that an apostrophe would look 'clunky' amidst the snow backdrop", "to_user": "Lucas_Hare", "to_user_id": 115973844, "to_user_id_str": "115973844", "to_user_name": "Lucas Hare", "in_reply_to_status_id": 148824163723915260, "in_reply_to_status_id_str": "148824163723915265"}, +{"created_at": "Mon, 19 Dec 2011 18:06:53 +0000", "from_user": "ItsJohnnyyboi", "from_user_id": 362760795, "from_user_id_str": "362760795", "from_user_name": "Jon Jon ! ", "geo": null, "id": 148826650988130300, "id_str": "148826650988130304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1674775683/95D7EDB5-63B6-4F3B-8D13-1B34FB3822BA_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674775683/95D7EDB5-63B6-4F3B-8D13-1B34FB3822BA_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Dang drama class is crazy gulliermo and I are in a clown session", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:50 +0000", "from_user": "_MidgetMacDea", "from_user_id": 235850510, "from_user_id_str": "235850510", "from_user_name": "de'aundria", "geo": null, "id": 148826638577172480, "id_str": "148826638577172482", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1688507775/_MidgetMacDea_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688507775/_MidgetMacDea_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@KiD_JWaLLe @_MidgetMacDea lol that nigga dumb...how yu gone be short with clown feet that shit ugly.\\u201D", "to_user": "KiD_JWaLLe", "to_user_id": 238435433, "to_user_id_str": "238435433", "to_user_name": "JUICEEEE\\uE00E", "in_reply_to_status_id": 148825987566682100, "in_reply_to_status_id_str": "148825987566682113"}, +{"created_at": "Mon, 19 Dec 2011 18:06:49 +0000", "from_user": "Savage_Bell", "from_user_id": 272160334, "from_user_id_str": "272160334", "from_user_name": "Where's Bell ..!", "geo": null, "id": 148826635242704900, "id_str": "148826635242704897", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697532794/387556_337354489624936_100000511647270_1421905_1408276246_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697532794/387556_337354489624936_100000511647270_1421905_1408276246_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "in spanish clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:48 +0000", "from_user": "BoyWonderBreezy", "from_user_id": 142458297, "from_user_id_str": "142458297", "from_user_name": "Big Smooth\\u2122", "geo": null, "id": 148826631857909760, "id_str": "148826631857909760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1425216176/180884_1839781072769_1187803806_2188069_8054803_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1425216176/180884_1839781072769_1187803806_2188069_8054803_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#NF @STARRxxStruckk #FMW Her clown ass lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:41 +0000", "from_user": "_MARAvinsRoom", "from_user_id": 231995856, "from_user_id_str": "231995856", "from_user_name": "Ferrari BOY #3", "geo": null, "id": 148826602854301700, "id_str": "148826602854301696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698349922/U438RyT3_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698349922/U438RyT3_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@macky_CAsports lmfao you a clown yo.", "to_user": "macky_CAsports", "to_user_id": 50669386, "to_user_id_str": "50669386", "to_user_name": "The Real Is Mack", "in_reply_to_status_id": 148823934211596300, "in_reply_to_status_id_str": "148823934211596288"}, +{"created_at": "Mon, 19 Dec 2011 18:06:39 +0000", "from_user": "MattyMozay", "from_user_id": 86171959, "from_user_id_str": "86171959", "from_user_name": "Matthew Jimenez", "geo": null, "id": 148826592339169280, "id_str": "148826592339169280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1391631785/cab_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1391631785/cab_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Yeah I must clown, I'm from Harlem, Uptown\\nWhere we flash money, take your bitch and ask you, what now?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:38 +0000", "from_user": "Teflon_don323", "from_user_id": 372575125, "from_user_id_str": "372575125", "from_user_name": "Woo", "geo": null, "id": 148826588962766850, "id_str": "148826588962766848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1640661753/wooo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640661753/wooo_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@323_mac: told my lil brotha , you can be betta den me if you wanna be\" lmao aww shit he's past you already clown!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:36 +0000", "from_user": "curlyDeLaBeu", "from_user_id": 116325090, "from_user_id_str": "116325090", "from_user_name": "Jet Jet Jet", "geo": null, "id": 148826582167986180, "id_str": "148826582167986176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1626329678/Snapshot_20110809_8_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626329678/Snapshot_20110809_8_normal.jpg", "source": "<a href="http://phnxapp.com" rel="nofollow">phnx</a>", "text": "Niggas crying over hoes... That's tears of a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:32 +0000", "from_user": "Tobiah88", "from_user_id": 72703236, "from_user_id_str": "72703236", "from_user_name": "Josiah Bremer", "geo": null, "id": 148826563641753600, "id_str": "148826563641753601", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/587272329/n704642492_758651_3953_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/587272329/n704642492_758651_3953_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\"when life gives you lemons, go murder a clown\" -festus krex", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:30 +0000", "from_user": "BanitaGayle", "from_user_id": 136033778, "from_user_id_str": "136033778", "from_user_name": "GRiSELDA BLANC0", "geo": null, "id": 148826554552696830, "id_str": "148826554552696832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1636511340/banita_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1636511340/banita_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "These clown hoes boost the shit outta the most uncool guys!!! BUT WHY D0E?!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:28 +0000", "from_user": "ekstromahvob0", "from_user_id": 388377275, "from_user_id_str": "388377275", "from_user_name": "Ekstrom Summers", "geo": null, "id": 148826545442656260, "id_str": "148826545442656256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1581859743/f_30_w_0081_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1581859743/f_30_w_0081_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "And que clown music lifeasaredskinfansMYEp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:26 +0000", "from_user": "RayCharles601", "from_user_id": 85186193, "from_user_id_str": "85186193", "from_user_name": "Ray Jost", "geo": null, "id": 148826537477677060, "id_str": "148826537477677056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1673928291/warming_up_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673928291/warming_up_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:17 +0000", "from_user": "REAL_IS_BETTER", "from_user_id": 312401976, "from_user_id_str": "312401976", "from_user_name": "Mook Sizzle", "geo": null, "id": 148826502639783940, "id_str": "148826502639783936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1593393278/300041_247080008675576_100001207362006_733375_100972067_n-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593393278/300041_247080008675576_100001207362006_733375_100972067_n-1_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "& you was the class clown that ALWAYS kept me laughing we would NEVER meant to b baby we just happened.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:13 +0000", "from_user": "TW33TMachine", "from_user_id": 338876229, "from_user_id_str": "338876229", "from_user_name": "iAwesome \\u2714", "geo": null, "id": 148826485623488500, "id_str": "148826485623488514", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1604765754/wolverine_avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1604765754/wolverine_avatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "They say your penis is related to shoe size. Well, that makes the fear of being raped by a clown much scarier.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:05 +0000", "from_user": "Mr_WhatzitToya", "from_user_id": 57715739, "from_user_id_str": "57715739", "from_user_name": "Rashad Bullard", "geo": null, "id": 148826449292427260, "id_str": "148826449292427265", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700986773/IMG_0284_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700986773/IMG_0284_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Superpaid_J: @ItsUltra_Violet ; youse a clown bui I fuckin gone ta break you up to the pool and you fuckin let melissa and TAVIA hodl you back df ?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:01 +0000", "from_user": "KingEric14", "from_user_id": 235781094, "from_user_id_str": "235781094", "from_user_name": "\\u265BEric Lane\\u265B ", "geo": null, "id": 148826434377494530, "id_str": "148826434377494529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687915988/Picture_100_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687915988/Picture_100_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SacaFlocka lmfao Saca ur a clown!", "to_user": "SacaFlocka", "to_user_id": 57439313, "to_user_id_str": "57439313", "to_user_name": "Zachary James Saca", "in_reply_to_status_id": 148824850767679500, "in_reply_to_status_id_str": "148824850767679489"}, +{"created_at": "Mon, 19 Dec 2011 18:06:00 +0000", "from_user": "Jay_Pachec0", "from_user_id": 269352647, "from_user_id_str": "269352647", "from_user_name": "Jason ", "geo": null, "id": 148826431487610880, "id_str": "148826431487610880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681066898/lol_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681066898/lol_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:05:51 +0000", "from_user": "heyBRITTANYxo", "from_user_id": 161151778, "from_user_id_str": "161151778", "from_user_name": "Ms.FxckOVERyu", "geo": null, "id": 148826390987411460, "id_str": "148826390987411456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1597126144/a0V0fLSx_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1597126144/a0V0fLSx_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "lol u is a whole CLOWN!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:05:47 +0000", "from_user": "CupcakenTeeze", "from_user_id": 96708745, "from_user_id_str": "96708745", "from_user_name": "ChAnTeL V", "geo": null, "id": 148826375862751230, "id_str": "148826375862751232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689599199/331378225_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689599199/331378225_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@AlannaFierce gon' ask if I put juices 'n berries in my hair last night-clown lmbo", "to_user": "AlannaFierce", "to_user_id": 68265156, "to_user_id_str": "68265156", "to_user_name": "Alanna Singleton"}, +{"created_at": "Mon, 19 Dec 2011 18:05:47 +0000", "from_user": "iMayuz", "from_user_id": 61694146, "from_user_id_str": "61694146", "from_user_name": "\\uE20EMayowa Odubiyi\\u2122\\uE20E", "geo": null, "id": 148826373014831100, "id_str": "148826373014831105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698796897/IMG00250-20111126-1518_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698796897/IMG00250-20111126-1518_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "To make everyone happy, i would need a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:05:46 +0000", "from_user": "Mericalll", "from_user_id": 309490351, "from_user_id_str": "309490351", "from_user_name": "merical spears", "geo": null, "id": 148826368858275840, "id_str": "148826368858275840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697172126/h0aLi6A5_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697172126/h0aLi6A5_normal", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "lol #JerrySpringer is funny he always tries to clown his guests and make em look stupid on the cool", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:05:41 +0000", "from_user": "hootie_91", "from_user_id": 242881896, "from_user_id_str": "242881896", "from_user_name": "Haley Craig ", "geo": null, "id": 148826350059393020, "id_str": "148826350059393024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1635755509/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635755509/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:05:40 +0000", "from_user": "xMARKs_My_Spot", "from_user_id": 229944233, "from_user_id_str": "229944233", "from_user_name": "Menajahtwa \\u273F", "geo": null, "id": 148826344577433600, "id_str": "148826344577433600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696858632/004_editededited_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696858632/004_editededited_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "#IWasThatKid who was the class clown , making everybody laugh .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:05:38 +0000", "from_user": "_ilovebrandi", "from_user_id": 127002708, "from_user_id_str": "127002708", "from_user_name": "Brandi Catrice", "geo": null, "id": 148826337015111680, "id_str": "148826337015111681", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689760107/2011-12-12_16-59-50_335-picsay_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689760107/2011-12-12_16-59-50_335-picsay_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Getting yur dimples pierced is stupid... yu look like a damn clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:05:24 +0000", "from_user": "_AmoszGivens", "from_user_id": 284226858, "from_user_id_str": "284226858", "from_user_name": "\\uE00AHomer Simpson ", "geo": null, "id": 148826278047399940, "id_str": "148826278047399936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1621424600/_AmoszGivens_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621424600/_AmoszGivens_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@iEVOLyu_ lol she a clown", "to_user": "iEVOLyu_", "to_user_id": 330600859, "to_user_id_str": "330600859", "to_user_name": "driaa..whitney))", "in_reply_to_status_id": 148826056214843400, "in_reply_to_status_id_str": "148826056214843393"}, +{"created_at": "Mon, 19 Dec 2011 18:05:23 +0000", "from_user": "Jas_thebaddest1", "from_user_id": 418500261, "from_user_id_str": "418500261", "from_user_name": "Jasmine", "geo": null, "id": 148826273274265600, "id_str": "148826273274265600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662028673/155076_181718215176185_100000140228271_693137_5420866_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662028673/155076_181718215176185_100000140228271_693137_5420866_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "He a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:05:21 +0000", "from_user": "joristank", "from_user_id": 440211159, "from_user_id_str": "440211159", "from_user_name": "joris,dat ben ik!", "geo": null, "id": 148826265225404400, "id_str": "148826265225404416", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702559069/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702559069/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@xxxyassiexxx zeg nou iets clown!", "to_user": "xxxyassiexxx", "to_user_id": 395257147, "to_user_id_str": "395257147", "to_user_name": "Yasmin Jager", "in_reply_to_status_id": 148821706264428540, "in_reply_to_status_id_str": "148821706264428544"}, +{"created_at": "Mon, 19 Dec 2011 18:05:14 +0000", "from_user": "_zeeeee", "from_user_id": 176917573, "from_user_id_str": "176917573", "from_user_name": "heyyy i'm zeee. \\u262E\\u2665(:", "geo": null, "id": 148826237895319550, "id_str": "148826237895319552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1445760315/167056_187566387924094_100000122036710_743951_3202294_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1445760315/167056_187566387924094_100000122036710_743951_3202294_n_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:05:12 +0000", "from_user": "_theAmex_", "from_user_id": 322674078, "from_user_id_str": "322674078", "from_user_name": "theAmex\\u00A9 Hewitt, Inc", "geo": null, "id": 148826228344889340, "id_str": "148826228344889345", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700028478/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700028478/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@BussyJuice_ you can't help me wit shit over Twitter clown but tweet sum dumb ass shit trying to prove a point. #FOH", "to_user": "BussyJuice_", "to_user_id": 24396765, "to_user_id_str": "24396765", "to_user_name": "\\u2202\\u03B5\\u03B5 \\u05E0\\u03B1\\u00FF", "in_reply_to_status_id": 148825845308456960, "in_reply_to_status_id_str": "148825845308456960"}, +{"created_at": "Mon, 19 Dec 2011 18:05:12 +0000", "from_user": "millerja9", "from_user_id": 324410072, "from_user_id_str": "324410072", "from_user_name": "Joshua Andrew Miller", "geo": null, "id": 148826226340003840, "id_str": "148826226340003840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1610615635/299962_10150872937170691_777570690_21462255_287167545_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610615635/299962_10150872937170691_777570690_21462255_287167545_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ojml Believe me mate there's worse to come until that clown is sacked! #KeanOut", "to_user": "ojml", "to_user_id": 23821607, "to_user_id_str": "23821607", "to_user_name": "Oli Lacey", "in_reply_to_status_id": 148825758712868860, "in_reply_to_status_id_str": "148825758712868864"}, +{"created_at": "Mon, 19 Dec 2011 18:05:11 +0000", "from_user": "MarisaCJ", "from_user_id": 131819208, "from_user_id_str": "131819208", "from_user_name": "Marisa Contreras", "geo": null, "id": 148826221386547200, "id_str": "148826221386547200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700468583/DSC_0348_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700468583/DSC_0348_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ValmeDRG @alejandina Feel like a clown: http://t.co/0T4QKtwn", "to_user": "ValmeDRG", "to_user_id": 39348202, "to_user_id_str": "39348202", "to_user_name": "Valme"}, +{"created_at": "Mon, 19 Dec 2011 18:05:08 +0000", "from_user": "_xTOOTmyShxT", "from_user_id": 269469090, "from_user_id_str": "269469090", "from_user_name": "\\u03BA\\u03B1\\u03B5 \\u03B2\\u03B1\\u03B5uti\\u03B5\\u03B5\\u03B5\\u2764", "geo": null, "id": 148826213211836400, "id_str": "148826213211836417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1633651503/Lovee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633651503/Lovee_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Lil Kim Clown Clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:05:07 +0000", "from_user": "Adriannegor", "from_user_id": 386036760, "from_user_id_str": "386036760", "from_user_name": "Adrianne Fazzino", "geo": null, "id": 148826206270259200, "id_str": "148826206270259201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1575440212/n4nffo45oh_123167615_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575440212/n4nffo45oh_123167615_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "The Gingrich Monkey Climb. Gingrich is a goldmine for people like me. There is nothing like a bloviating clown in a... http://t.co/bvOeMXcC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:05:05 +0000", "from_user": "MissMonalisa", "from_user_id": 259990472, "from_user_id_str": "259990472", "from_user_name": "Laura Seabrook", "geo": null, "id": 148826198473052160, "id_str": "148826198473052160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1614777738/293899_10150366807533409_671893408_8488182_413034138_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1614777738/293899_10150366807533409_671893408_8488182_413034138_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@lxTooNxl you followed me just to clown me about my ravens :( lol", "to_user": "lxTooNxl", "to_user_id": 215302814, "to_user_id_str": "215302814", "to_user_name": "iTweeTePiX\\u2122", "in_reply_to_status_id": 148826061348667400, "in_reply_to_status_id_str": "148826061348667393"}, +{"created_at": "Mon, 19 Dec 2011 18:05:02 +0000", "from_user": "KiraVixxonn", "from_user_id": 153937472, "from_user_id_str": "153937472", "from_user_name": "Shakira Dixon", "geo": null, "id": 148826185177108480, "id_str": "148826185177108480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680367412/profile_image_1323324438435_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680367412/profile_image_1323324438435_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">twidroyd</a>", "text": "Corny + a clown = Pathetic ! Get it together ..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:04:59 +0000", "from_user": "_ChiChaChong_", "from_user_id": 399389449, "from_user_id_str": "399389449", "from_user_name": "chanel", "geo": null, "id": 148826174204821500, "id_str": "148826174204821504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1677097294/imagejpeg_3_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677097294/imagejpeg_3_2_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@RenitaLD21 @_fatfat_ lol that shit was cute don't clown Detroit like that lol", "to_user": "RenitaLD21", "to_user_id": 139193260, "to_user_id_str": "139193260", "to_user_name": "Renita La'Toya Dicks", "in_reply_to_status_id": 148824376224120830, "in_reply_to_status_id_str": "148824376224120833"}, +{"created_at": "Mon, 19 Dec 2011 18:04:58 +0000", "from_user": "VUHawkTalk", "from_user_id": 274188104, "from_user_id_str": "274188104", "from_user_name": "VU baseball tweeting", "geo": null, "id": 148826169381359600, "id_str": "148826169381359617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1291972962/Hawkins-field-night_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1291972962/Hawkins-field-night_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@agiobbi5 Perhaps the clown was talking about @ESPN_Colin getting a second serving of dessert?", "to_user": "agiobbi5", "to_user_id": 316723847, "to_user_id_str": "316723847", "to_user_name": "Andrew Giobbi", "in_reply_to_status_id": 148825592693932030, "in_reply_to_status_id_str": "148825592693932032"}, +{"created_at": "Mon, 19 Dec 2011 18:04:56 +0000", "from_user": "MikeHurst_1word", "from_user_id": 207272991, "from_user_id_str": "207272991", "from_user_name": "Michael K. Hurst II", "geo": null, "id": 148826161810653200, "id_str": "148826161810653184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1692412605/168484_1679379382410_1175280474_31672138_4267623_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692412605/168484_1679379382410_1175280474_31672138_4267623_n_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@_iBeBlazed lol oh ya such a good friend i have n u.. even though i should put that pic up since u wanted to clown me at Qs lol", "to_user": "_iBeBlazed", "to_user_id": 158271602, "to_user_id_str": "158271602", "to_user_name": "Taylor Harrell", "in_reply_to_status_id": 148826052960071680, "in_reply_to_status_id_str": "148826052960071680"}, +{"created_at": "Mon, 19 Dec 2011 18:04:55 +0000", "from_user": "jennibunnii", "from_user_id": 309164866, "from_user_id_str": "309164866", "from_user_name": "j\\u03B5\\u03B7\\u03B7 g\\u03B1\\u03C4\\u03B5s\\u2122\\u2648\\u0337\\u0334\\u0329", "geo": null, "id": 148826157628915700, "id_str": "148826157628915712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1663917170/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663917170/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:04:49 +0000", "from_user": "2_much103", "from_user_id": 46434478, "from_user_id_str": "46434478", "from_user_name": "2much", "geo": null, "id": 148826129715830800, "id_str": "148826129715830785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691789976/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691789976/image_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@rosenburgRaww that's some fag shit, no homo kid... And cuz yu a clown thinkin yu nice, nigga yu ain't shit!! Yu like it delete me pussy", "to_user": "rosenburgRaww", "to_user_id": 256772011, "to_user_id_str": "256772011", "to_user_name": "rosenburg raw"}, +{"created_at": "Mon, 19 Dec 2011 18:04:47 +0000", "from_user": "ItsBananasBITCH", "from_user_id": 374840861, "from_user_id_str": "374840861", "from_user_name": "Nya Bby", "geo": null, "id": 148826121683742720, "id_str": "148826121683742720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702214754/Img_00455_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702214754/Img_00455_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "im nt ur bby nd wats makes u think u cn just message me like u kno me CLOWN ? ?... u really just hoed urself BYE\\nChat Conversation End", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:04:46 +0000", "from_user": "BGIFF22", "from_user_id": 316029801, "from_user_id_str": "316029801", "from_user_name": "Ben Gifford", "geo": null, "id": 148826117871108100, "id_str": "148826117871108097", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1563199950/166920_1996733163623_1402316115_31791784_1879183750_a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1563199950/166920_1996733163623_1402316115_31791784_1879183750_a_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@tdeck10 your a clown", "to_user": "tdeck10", "to_user_id": 246458790, "to_user_id_str": "246458790", "to_user_name": "Tyler Deck", "in_reply_to_status_id": 148809615516254200, "in_reply_to_status_id_str": "148809615516254208"}, +{"created_at": "Mon, 19 Dec 2011 18:04:42 +0000", "from_user": "Yea_Im_Roxie", "from_user_id": 399555061, "from_user_id_str": "399555061", "from_user_name": "Booooom!", "geo": null, "id": 148826101173600260, "id_str": "148826101173600257", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702524717/picnick_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702524717/picnick_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@__OddDanny Follow Back Clown!", "to_user": "__OddDanny", "to_user_id": 273634020, "to_user_id_str": "273634020", "to_user_name": "OddFlo"}, +{"created_at": "Mon, 19 Dec 2011 18:04:38 +0000", "from_user": "Ohh_ItsLivvs", "from_user_id": 275244179, "from_user_id_str": "275244179", "from_user_name": "Olivia Walker", "geo": null, "id": 148826083834331140, "id_str": "148826083834331137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1298822137/18969_1317270935007_1327740938_911409_5694334_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1298822137/18969_1317270935007_1327740938_911409_5694334_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @ImeanIts_Meliss: This chinese boy in my class is a clown lmaoo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:04:30 +0000", "from_user": "SwagischMama", "from_user_id": 118076890, "from_user_id_str": "118076890", "from_user_name": "\\u10E6Derek's Wife.\\u10E6", "geo": null, "id": 148826050640613380, "id_str": "148826050640613376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698735327/oM8Vy7xR_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698735327/oM8Vy7xR_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I putted some red lipstick on my lips....( well duhh -.- ) but i kinda look like a clown.....so #RANDOM !!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:04:24 +0000", "from_user": "Mini_Boult", "from_user_id": 440039837, "from_user_id_str": "440039837", "from_user_name": "Mini Boult", "geo": null, "id": 148826026632421380, "id_str": "148826026632421376", "iso_language_code": "fi", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700167805/305314_213210728735307_100001391434320_630718_31676_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700167805/305314_213210728735307_100001391434320_630718_31676_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@jenniferoneilll OI OI VULIJ TOI YA CLOWN!", "to_user": "jenniferoneilll", "to_user_id": 419008460, "to_user_id_str": "419008460", "to_user_name": "Jennifer", "in_reply_to_status_id": 148824541391634430, "in_reply_to_status_id_str": "148824541391634433"}, +{"created_at": "Mon, 19 Dec 2011 18:04:23 +0000", "from_user": "83Staxx_Dro5", "from_user_id": 398506574, "from_user_id_str": "398506574", "from_user_name": "Leo Basegod", "geo": null, "id": 148826022974988300, "id_str": "148826022974988288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1619684511/de0334e53352__1320281394000_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619684511/de0334e53352__1320281394000_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Ya mean, watch out fa this clown w/ a red nose snatching purses and wallets, lol #nf meh B.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:04:19 +0000", "from_user": "_Moirai_", "from_user_id": 308158846, "from_user_id_str": "308158846", "from_user_name": "Terrie Keri Perry", "geo": null, "id": 148826004150943740, "id_str": "148826004150943744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700961729/331672947_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700961729/331672947_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@RUBIX_3_1906 I'm in Cola clown lol", "to_user": "RUBIX_3_1906", "to_user_id": 125861486, "to_user_id_str": "125861486", "to_user_name": "aka 3 TRAINZ!!!", "in_reply_to_status_id": 148825052748595200, "in_reply_to_status_id_str": "148825052748595200"}, +{"created_at": "Mon, 19 Dec 2011 18:04:17 +0000", "from_user": "D_Bodyguard", "from_user_id": 195185543, "from_user_id_str": "195185543", "from_user_name": "Biggs aKa DBodyguard", "geo": null, "id": 148825998224400400, "id_str": "148825998224400384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691911765/IMG00293-20101023-1122_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691911765/IMG00293-20101023-1122_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@UHateMsRoyalty and ya I read his lil bullshit comments. CLOWN", "to_user": "UHateMsRoyalty", "to_user_id": 25137122, "to_user_id_str": "25137122", "to_user_name": "Ms Carinne Royalty", "in_reply_to_status_id": 148819794395791360, "in_reply_to_status_id_str": "148819794395791360"}, +{"created_at": "Mon, 19 Dec 2011 18:04:17 +0000", "from_user": "JackMixFM", "from_user_id": 17001240, "from_user_id_str": "17001240", "from_user_name": "JackMix", "geo": null, "id": 148825996039159800, "id_str": "148825996039159808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1240443082/jackmix250_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1240443082/jackmix250_normal.png", "source": "<a href="http://getmarci.com" rel="nofollow">Marci</a>", "text": "Now playing Smokey Robinson & The Miracles - The Tears of a Clown on JackMix FM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:04:15 +0000", "from_user": "KiD_JWaLLe", "from_user_id": 238435433, "from_user_id_str": "238435433", "from_user_name": "JUICEEEE\\uE00E", "geo": null, "id": 148825987566682100, "id_str": "148825987566682113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691830718/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691830718/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@_MidgetMacDea lol that nigga dumb...how yu gone be short with clown feet that shit ugly.", "to_user": "_MidgetMacDea", "to_user_id": 235850510, "to_user_id_str": "235850510", "to_user_name": "de'aundria", "in_reply_to_status_id": 148825383280705540, "in_reply_to_status_id_str": "148825383280705537"}, +{"created_at": "Mon, 19 Dec 2011 18:04:11 +0000", "from_user": "ps_imabitcxh", "from_user_id": 54124128, "from_user_id_str": "54124128", "from_user_name": "joe trudyyy (:", "geo": null, "id": 148825974228787200, "id_str": "148825974228787200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693016568/IMAG0335_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693016568/IMAG0335_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "my BD is a true clown on god ; i want somebody to beat his assx .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:04:03 +0000", "from_user": "Superpaid_J", "from_user_id": 291974892, "from_user_id_str": "291974892", "from_user_name": "Justin Sweeting", "geo": null, "id": 148825939869040640, "id_str": "148825939869040640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1580103518/swagg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580103518/swagg_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ItsUltra_Violet ; youse a clown bui I fuckin gone ta break you up to the pool and you fuckin let melissa and TAVIA hodl you back df ?", "to_user": "ItsUltra_Violet", "to_user_id": 348767822, "to_user_id_str": "348767822", "to_user_name": "Raymond Dean"}, +{"created_at": "Mon, 19 Dec 2011 18:04:01 +0000", "from_user": "Cindy701", "from_user_id": 297494435, "from_user_id_str": "297494435", "from_user_name": "Cindy", "geo": null, "id": 148825929865633800, "id_str": "148825929865633792", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685226213/femkeee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685226213/femkeee_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "hahaha, iemand van Sangas is een CLOWN ahhah xd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:03:48 +0000", "from_user": "SpikeEskin", "from_user_id": 16203515, "from_user_id_str": "16203515", "from_user_name": "Spike Eskin", "geo": null, "id": 148825876258242560, "id_str": "148825876258242561", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1662746724/Mo_Speights_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662746724/Mo_Speights_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Michael Beasley seems like he's a real clown.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:03:48 +0000", "from_user": "fuckbo1", "from_user_id": 248071866, "from_user_id_str": "248071866", "from_user_name": "juan carlos mejia", "geo": null, "id": 148825874110746620, "id_str": "148825874110746624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1604633492/tV3M0Fr7_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1604633492/tV3M0Fr7_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I was Tha class clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:03:43 +0000", "from_user": "bardgirl", "from_user_id": 23489357, "from_user_id_str": "23489357", "from_user_name": "Barbara Desmond", "geo": null, "id": 148825854775001100, "id_str": "148825854775001088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1493805348/250px-Friendshipismagicpart1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1493805348/250px-Friendshipismagicpart1_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "I took \"What's Your Clown Name?\" and got \"Your Clown Name is Yobo Kornflake the Clown\" http://t.co/CBhEPrkh via @blogthings", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:03:40 +0000", "from_user": "Thatso_Asia", "from_user_id": 207656318, "from_user_id_str": "207656318", "from_user_name": "Asia Eddins", "geo": null, "id": 148825842590547970, "id_str": "148825842590547969", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698948574/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698948574/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "@warrendontcare lol clown", "to_user": "warrendontcare", "to_user_id": 151296939, "to_user_id_str": "151296939", "to_user_name": "Warren Womack", "in_reply_to_status_id": 148820700252213250, "in_reply_to_status_id_str": "148820700252213248"}, +{"created_at": "Mon, 19 Dec 2011 18:03:40 +0000", "from_user": "IAintFriendly7", "from_user_id": 243491202, "from_user_id_str": "243491202", "from_user_name": "Frank White", "geo": null, "id": 148825842364067840, "id_str": "148825842364067840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1576355072/253608_2132378307639_1191452914_2605321_7061942_n-1-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576355072/253608_2132378307639_1191452914_2605321_7061942_n-1-1_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Now I ain't gon' put you down but I ain't gon' put you on either\\nCause I should look like a clown if I should pick the wrong diva", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:03:28 +0000", "from_user": "AshSooAmazin", "from_user_id": 30368434, "from_user_id_str": "30368434", "from_user_name": " Ashley Graham ", "geo": null, "id": 148825790816063500, "id_str": "148825790816063490", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683873693/IMAG1065-2-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683873693/IMAG1065-2-1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@WhoCheckn_Coop All these clone niggas trying to be real. #clown\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:03:23 +0000", "from_user": "danhins02", "from_user_id": 351003855, "from_user_id_str": "351003855", "from_user_name": "Daniel Hinson", "geo": null, "id": 148825772130439170, "id_str": "148825772130439168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1589089722/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1589089722/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\"damn diarrhea clown, go!\" @s_hinson", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:03:16 +0000", "from_user": "TCPB_Finnigan", "from_user_id": 101383336, "from_user_id_str": "101383336", "from_user_name": "Finnigan Andretti", "geo": null, "id": 148825742271189000, "id_str": "148825742271188992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692550926/chilling_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692550926/chilling_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@TheManFeaz @Zo_HU2014 hahah ight bro we are not gonna clown you n your lateness anymore", "to_user": "TheManFeaz", "to_user_id": 261899338, "to_user_id_str": "261899338", "to_user_name": "Featherstone", "in_reply_to_status_id": 148825588398952450, "in_reply_to_status_id_str": "148825588398952450"}, +{"created_at": "Mon, 19 Dec 2011 18:03:08 +0000", "from_user": "KwekuM", "from_user_id": 51022650, "from_user_id_str": "51022650", "from_user_name": " Fela Bolade Mills", "geo": null, "id": 148825709387853820, "id_str": "148825709387853825", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675621973/pab_n_drey_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675621973/pab_n_drey_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@Ampy_boo all u need ryt nw is a painted face, big ass shoe n a big round red nose n tadaaa ur a complete clown cc @RoNkE22 @Cutbabe67", "to_user": "Ampy_boo", "to_user_id": 194067768, "to_user_id_str": "194067768", "to_user_name": "Afrakomah Frimpong"}, +{"created_at": "Mon, 19 Dec 2011 18:03:08 +0000", "from_user": "MalloryGriffith", "from_user_id": 440661814, "from_user_id_str": "440661814", "from_user_name": "Mallory Griffith", "geo": null, "id": 148825709136199680, "id_str": "148825709136199680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701779898/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701779898/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Just experienced a real clown sighting!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:03:07 +0000", "from_user": "RichardGaskins", "from_user_id": 165429850, "from_user_id_str": "165429850", "from_user_name": "Richard Gaskins", "geo": null, "id": 148825704161755140, "id_str": "148825704161755136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1371093992/MyPicture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1371093992/MyPicture_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Slow Defense #warrensapp #smart dummy #clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:02:59 +0000", "from_user": "Dylan_sheCOLE", "from_user_id": 163765700, "from_user_id_str": "163765700", "from_user_name": "Dylan McCoy :)", "geo": null, "id": 148825669449687040, "id_str": "148825669449687040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1678802787/Dylan_sheCOLE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678802787/Dylan_sheCOLE_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "@RollSUNNYUp jtfo lmfao you a clown man but thankss , *rolls up blunt put it ina air rise it to the SUN-NY*", "to_user": "RollSUNNYUp", "to_user_id": 137847953, "to_user_id_str": "137847953", "to_user_name": "SOULJA SUNNY"}, +{"created_at": "Mon, 19 Dec 2011 18:02:54 +0000", "from_user": "bardgirl", "from_user_id": 23489357, "from_user_id_str": "23489357", "from_user_name": "Barbara Desmond", "geo": null, "id": 148825647584788480, "id_str": "148825647584788481", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1493805348/250px-Friendshipismagicpart1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1493805348/250px-Friendshipismagicpart1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "I'm not sure if I want to find out my clown name.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:02:52 +0000", "from_user": "KayWho_KAYLAHx_", "from_user_id": 157810382, "from_user_id_str": "157810382", "from_user_name": "Kaylah Chalise", "geo": null, "id": 148825639997288450, "id_str": "148825639997288448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701465674/KayWho_KAYLAHx__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701465674/KayWho_KAYLAHx__normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@Brianna_World let me know when you are then clown !!", "to_user": "Brianna_World", "to_user_id": 401821728, "to_user_id_str": "401821728", "to_user_name": "\\u2718\\u2665O Brianna Here :)", "in_reply_to_status_id": 148823391925837820, "in_reply_to_status_id_str": "148823391925837824"}, +{"created_at": "Mon, 19 Dec 2011 18:02:41 +0000", "from_user": "ItsMeBonjabi", "from_user_id": 397260144, "from_user_id_str": "397260144", "from_user_name": "Benjamin", "geo": null, "id": 148825596615602180, "id_str": "148825596615602176", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693228411/Scary_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693228411/Scary_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ism4elp da ene lied met lil flamming faggots ken je wel tog? dat ie insane clown possy dissed xD hun ginge hem slim anus noeme xD", "to_user": "ism4elp", "to_user_id": 268918330, "to_user_id_str": "268918330", "to_user_name": "Ismaelp"}, +{"created_at": "Mon, 19 Dec 2011 18:02:41 +0000", "from_user": "agiobbi5", "from_user_id": 316723847, "from_user_id_str": "316723847", "from_user_name": "Andrew Giobbi", "geo": null, "id": 148825592693932030, "id_str": "148825592693932032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1396098557/Mavs_Catcher_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1396098557/Mavs_Catcher_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "some clown just called @ESPN_Colin \"retarted\" anybody else see the irony in that?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:02:37 +0000", "from_user": "gav_mind", "from_user_id": 266852778, "from_user_id_str": "266852778", "from_user_name": "Bob TheGorilla", "geo": null, "id": 148825579024683000, "id_str": "148825579024683008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696914872/sk8_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696914872/sk8_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@trudavy @VALvetcake lmfaooooooooo you a clown son haha", "to_user": "trudavy", "to_user_id": 14527145, "to_user_id_str": "14527145", "to_user_name": "Big Kahuna", "in_reply_to_status_id": 148825361596166140, "in_reply_to_status_id_str": "148825361596166144"}, +{"created_at": "Mon, 19 Dec 2011 18:02:37 +0000", "from_user": "ImeanIts_Meliss", "from_user_id": 389744333, "from_user_id_str": "389744333", "from_user_name": "Melissa Cedano", "geo": null, "id": 148825577439236100, "id_str": "148825577439236096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1656389306/330358595_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656389306/330358595_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "This chinese boy in my class is a clown lmaoo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:02:28 +0000", "from_user": "iSTART_Riots", "from_user_id": 110274272, "from_user_id_str": "110274272", "from_user_name": "Otis Alexander", "geo": null, "id": 148825539141054460, "id_str": "148825539141054464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1667128553/peuf_20111130_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667128553/peuf_20111130_3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @DontTellMe_Shit: Amber Rose getting famous off of these clown ass niggas!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:02:17 +0000", "from_user": "ImSo_Trill", "from_user_id": 301505583, "from_user_id_str": "301505583", "from_user_name": "Jay Roc ", "geo": null, "id": 148825495734206460, "id_str": "148825495734206464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1684662918/331208766_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684662918/331208766_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @WhoCheckn_Coop: All these clone niggas trying to be real. #clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:53 +0000", "from_user": "_yourboyfriends", "from_user_id": 130958927, "from_user_id_str": "130958927", "from_user_name": "est '93 \\u2665", "geo": null, "id": 148825391702884350, "id_str": "148825391702884352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700328362/IMG00935-20111217-2212_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700328362/IMG00935-20111217-2212_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@MrMichaelPalmer LOOOOL, shut up clown.", "to_user": "MrMichaelPalmer", "to_user_id": 176949236, "to_user_id_str": "176949236", "to_user_name": "Michael Armani P", "in_reply_to_status_id": 148824546382839800, "in_reply_to_status_id_str": "148824546382839809"}, +{"created_at": "Mon, 19 Dec 2011 18:01:52 +0000", "from_user": "yuckotheclown", "from_user_id": 30264815, "from_user_id_str": "30264815", "from_user_name": "Yucko The Clown", "geo": null, "id": 148825390650105860, "id_str": "148825390650105856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/132112923/Yuckofullbackrndsmller_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/132112923/Yuckofullbackrndsmller_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @1lakers24: @yuckotheclown its my b-day RT ME U STINKING CLOWN :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:46 +0000", "from_user": "MissUndersto_Od", "from_user_id": 226779088, "from_user_id_str": "226779088", "from_user_name": "Mrs Officer", "geo": null, "id": 148825365937270800, "id_str": "148825365937270784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693840002/IMAG1059-1-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693840002/IMAG1059-1-1_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "ha!!! RT \"@BakeGriffin: You'll never know how much of a clown you are until you look at ya old myspace pics...\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:40 +0000", "from_user": "RALPHLAUREN111", "from_user_id": 342206795, "from_user_id_str": "342206795", "from_user_name": "YUNG FUNERALL", "geo": null, "id": 148825338544271360, "id_str": "148825338544271361", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699518202/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699518202/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "TWEETING CUZZ YOUR MAD SUCH A CLOWN BE HAPPY PLEASE CAUSE I SHOULD BE MAD LMAO !!!fuck wrong wit biz ness minders lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:28 +0000", "from_user": "LiteskinFLYY", "from_user_id": 106598164, "from_user_id_str": "106598164", "from_user_name": "DonVanilla` ", "geo": null, "id": 148825287759642620, "id_str": "148825287759642624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695955736/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695955736/image_normal.jpg", "source": "<a href="http://www.handmark.com" rel="nofollow">TweetCaster for iOS</a>", "text": "\\uD83D\\uDE2D\\uD83D\\uDE02\\uD83D\\uDE31\\uD83D\\uDE2D\\uD83D\\uDE2D\\uD83D\\uDE2D\\uD83D\\uDE02\\uD83D\\uDE02\\uD83D\\uDE02\\uD83D\\uDE02\\uD83D\\uDE01you a clown son RT @MissyMula: I was so faded lastnight I fell off the chair LMFAOO !! \\uD83D\\uDE23", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:23 +0000", "from_user": "TracyLynnXoXo", "from_user_id": 340935167, "from_user_id_str": "340935167", "from_user_name": "Tracy Lynn", "geo": null, "id": 148825267446620160, "id_str": "148825267446620160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695849363/1324008213262_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695849363/1324008213262_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:11 +0000", "from_user": "bruddyan", "from_user_id": 237435788, "from_user_id_str": "237435788", "from_user_name": "Bryan Rudd", "geo": null, "id": 148825216028647420, "id_str": "148825216028647424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1644293193/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644293193/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Askew91 What do you expect from a clown like @midha_amit?", "to_user": "Askew91", "to_user_id": 417415379, "to_user_id_str": "417415379", "to_user_name": "James Askew", "in_reply_to_status_id": 148824608076857340, "in_reply_to_status_id_str": "148824608076857344"}, +{"created_at": "Mon, 19 Dec 2011 18:01:09 +0000", "from_user": "thecraven", "from_user_id": 75590818, "from_user_id_str": "75590818", "from_user_name": "Jeremy Craven", "geo": null, "id": 148825208676024320, "id_str": "148825208676024320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1263171447/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263171447/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@alexanderRAW how would you feel if I told you I'm under your bed in a clown suit. And I will fucking rape you. Like your dad did.", "to_user": "alexanderRAW", "to_user_id": 247895636, "to_user_id_str": "247895636", "to_user_name": "Alexander Raw", "in_reply_to_status_id": 148707793480855550, "in_reply_to_status_id_str": "148707793480855552"}, +{"created_at": "Mon, 19 Dec 2011 18:01:02 +0000", "from_user": "PolemicLicense", "from_user_id": 259536794, "from_user_id_str": "259536794", "from_user_name": "Michael Traeger", "geo": null, "id": 148825178992939000, "id_str": "148825178992939009", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1319458919/0513101240_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1319458919/0513101240_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#ThisChristmas, I promise to not put red clown noses on all the deer corpses on the side of the road, regardless of how funny it is.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:01 +0000", "from_user": "ImTWENTYBitchh_", "from_user_id": 262148918, "from_user_id_str": "262148918", "from_user_name": "Ray", "geo": null, "id": 148825176732217340, "id_str": "148825176732217344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695617685/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695617685/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "and i'll diss any clown that's clockin' my round ass !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:00 +0000", "from_user": "MiiSzCh3vali3r", "from_user_id": 37018767, "from_user_id_str": "37018767", "from_user_name": "MiiSzChEvaliEr", "geo": null, "id": 148825170050686980, "id_str": "148825170050686976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695493216/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695493216/image_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Xmas day I'll be looking like a model ((winter white knitted dress wiit beige gaiter pumps)) ya tu sabes #lmh I'm a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:59 +0000", "from_user": "maaikekorbee", "from_user_id": 229227453, "from_user_id_str": "229227453", "from_user_name": "\\u1D0D\\u1D00\\u1D00\\u026A\\u1D0B\\u1D07 \\u2654", "geo": null, "id": 148825168402325500, "id_str": "148825168402325505", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668098631/330728537_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668098631/330728537_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @markvdplas: @maaikekorbee jij bent zeker een clown bij de bztshow ?:$ //HA-HA niet grappig mark :( maar danny gaat n kerstwens inspreken", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:56 +0000", "from_user": "SongWallgren189", "from_user_id": 343896385, "from_user_id_str": "343896385", "from_user_name": "Song Wallgren", "geo": null, "id": 148825155458707460, "id_str": "148825155458707456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702432396/121957165113945_1133378066961_1602577984_30311432_6875447_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702432396/121957165113945_1133378066961_1602577984_30311432_6875447_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Knock Knock. Who's there? Clown! Clown who? Clown for the count!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:56 +0000", "from_user": "CFAWillowLawn", "from_user_id": 104254929, "from_user_id_str": "104254929", "from_user_name": "CFA Willow Lawn", "geo": null, "id": 148825153147637760, "id_str": "148825153147637761", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/634095332/pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/634095332/pic_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Tomorrow Miss Sheri the Clown will be here for family night. Join us and enter to win a 2012 Cow Calendar. 5-8pm.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:40 +0000", "from_user": "AudryBabyy", "from_user_id": 203154662, "from_user_id_str": "203154662", "from_user_name": "A U D R Y ", "geo": null, "id": 148825088295313400, "id_str": "148825088295313408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1660869861/pink_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660869861/pink_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "He called me a clown lmaoo -.-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:38 +0000", "from_user": "WTFCharlieSay", "from_user_id": 225464657, "from_user_id_str": "225464657", "from_user_name": "Charlie Odell", "geo": null, "id": 148825076890996740, "id_str": "148825076890996736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690297797/393416_285760058133116_100000973710661_792446_810177474_a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690297797/393416_285760058133116_100000973710661_792446_810177474_a_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Lmfao , CLOWN !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:37 +0000", "from_user": "MEaGleeK", "from_user_id": 222884955, "from_user_id_str": "222884955", "from_user_name": "Aruna Ravi", "geo": null, "id": 148825074798051330, "id_str": "148825074798051332", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696941986/tumblr_lwb0oclWit1r61anuo1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696941986/tumblr_lwb0oclWit1r61anuo1_500_normal.jpg", "source": "<a href="http://twuffer.com" rel="nofollow">Twuffer</a>", "text": "RT @WeThinkEpic: Whenever i see a clown fish I immediately think: \"DAMN, NEMO IS HERE. HE'S HERE!\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:35 +0000", "from_user": "_rubyrozayy", "from_user_id": 111917503, "from_user_id_str": "111917503", "from_user_name": " MISS\\u2764LOVE ", "geo": null, "id": 148825066023563260, "id_str": "148825066023563264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701275742/_rubyrozayy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701275742/_rubyrozayy_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "hahaha RT @ProperPeter: Ur a dam clown son lol RT @_rubyrozayy: the only thing going in unprotected is these tweets! lls", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:31 +0000", "from_user": "_NotAFuckGiven", "from_user_id": 314942893, "from_user_id_str": "314942893", "from_user_name": "The Grim Reaper \\uE11C", "geo": null, "id": 148825051221864450, "id_str": "148825051221864448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691604244/twit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691604244/twit_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @based_spacely: @_NotAFuckGiven u a clown son", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:31 +0000", "from_user": "Nina_Beezyy", "from_user_id": 391660116, "from_user_id_str": "391660116", "from_user_name": "Ninaaa", "geo": null, "id": 148825050039062530, "id_str": "148825050039062528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701109090/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701109090/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Sitting in Del Taco & they're playing clown musicO.o\\n#Scary", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:29 +0000", "from_user": "bangmitchgang", "from_user_id": 321690961, "from_user_id_str": "321690961", "from_user_name": "Bang'Em Mitch", "geo": null, "id": 148825042401239040, "id_str": "148825042401239041", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697329287/TPhoto_00036_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697329287/TPhoto_00036_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Ctfu !! Clown !!! Oomf is a full time auntie !!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:27 +0000", "from_user": "fuckikz", "from_user_id": 84688633, "from_user_id_str": "84688633", "from_user_name": "none of yo business.", "geo": null, "id": 148825034775998460, "id_str": "148825034775998466", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702410577/331704188_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702410577/331704188_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @RussNOUVEAU: Looking through my tweets! The amount of times I've been hacked by this clown @fuckikz \\u00AB love you too", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:26 +0000", "from_user": "OshaaVIIXXVIII_", "from_user_id": 244328620, "from_user_id_str": "244328620", "from_user_name": "Oshaaaaaaaaaaaaaa !", "geo": null, "id": 148825028073500670, "id_str": "148825028073500672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701711427/webcam-toy-photo18_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701711427/webcam-toy-photo18_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "she look like a fuckn clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:17 +0000", "from_user": "SlimJim_Keish", "from_user_id": 62971855, "from_user_id_str": "62971855", "from_user_name": "Keisha Renae", "geo": null, "id": 148824990316376060, "id_str": "148824990316376065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694029517/imagejpeg_2_8_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694029517/imagejpeg_2_8_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @Quan_iBall_Jr: Lol & u know this .... Maaan! RT @SlimJim_Keish: Went to bed happy cus of @Quan_iBall_Jr , that nigga a clown forreal lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:08 +0000", "from_user": "_T_R_I_S_H_", "from_user_id": 234584618, "from_user_id_str": "234584618", "from_user_name": "Trisha", "geo": null, "id": 148824954052411400, "id_str": "148824954052411392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699396096/2011-11-30_18.32.19_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699396096/2011-11-30_18.32.19_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@MoGotti__ I can't Stand clown ass niggas\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:02 +0000", "from_user": "KoolAzzRayBans", "from_user_id": 334026152, "from_user_id_str": "334026152", "from_user_name": "Ray Tucker", "geo": null, "id": 148824929612206080, "id_str": "148824929612206080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1638355102/Fresh_Blue_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638355102/Fresh_Blue_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Some Females dont know if they Wanna Be Pretty or a Clown with all that Make Up On SMH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:02 +0000", "from_user": "blogthings", "from_user_id": 1063851, "from_user_id_str": "1063851", "from_user_name": "Blogthings", "geo": null, "id": 148824928978862080, "id_str": "148824928978862080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/661340523/twitter-sm_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/661340523/twitter-sm_normal.gif", "source": "<a href="http://www.blogthings.com" rel="nofollow">Blogthings</a>", "text": "What's Your Clown Name? - http://t.co/8D8hWE6K - The internet is hard, let's take quizzes!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:02 +0000", "from_user": "christophe229", "from_user_id": 273121978, "from_user_id_str": "273121978", "from_user_name": "Christophe Dedoncker", "geo": null, "id": 148824928920141820, "id_str": "148824928920141826", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1389179514/6735_1244117221892_1198214680_722020_853567_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1389179514/6735_1244117221892_1198214680_722020_853567_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@StenDD clown", "to_user": "StenDD", "to_user_id": 186774297, "to_user_id_str": "186774297", "to_user_name": "Sten De Doncker", "in_reply_to_status_id": 148813911901216770, "in_reply_to_status_id_str": "148813911901216768"}, +{"created_at": "Mon, 19 Dec 2011 18:00:01 +0000", "from_user": "VaginaVillian", "from_user_id": 188314419, "from_user_id_str": "188314419", "from_user_name": "Pussy Monster", "geo": null, "id": 148824922410586100, "id_str": "148824922410586112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1654608574/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654608574/profile_normal.png", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "My Older Brother is A Clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:45 +0000", "from_user": "DontTellMe_Shit", "from_user_id": 317573990, "from_user_id_str": "317573990", "from_user_name": "Vonte Folarin", "geo": null, "id": 148824854882295800, "id_str": "148824854882295808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1678185404/111206-205322_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678185404/111206-205322_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Amber Rose getting famous off of these clown ass niggas!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:40 +0000", "from_user": "Str8_Gosa", "from_user_id": 336851250, "from_user_id_str": "336851250", "from_user_name": "Ruben G", "geo": null, "id": 148824834661560320, "id_str": "148824834661560321", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699094677/KiwanGn5_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699094677/KiwanGn5_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Clown do kinda look scary ...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:39 +0000", "from_user": "allyK4T83", "from_user_id": 190649143, "from_user_id_str": "190649143", "from_user_name": "Ally Ross", "geo": null, "id": 148824832660869120, "id_str": "148824832660869120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1551893033/28787_411726318600_508563600_4423475_677288_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1551893033/28787_411726318600_508563600_4423475_677288_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@JackWilshere another brilliant tweet there jack. #clown", "to_user": "JackWilshere", "to_user_id": 183206939, "to_user_id_str": "183206939", "to_user_name": "Jack Wilshere", "in_reply_to_status_id": 148822930552393730, "in_reply_to_status_id_str": "148822930552393728"}, +{"created_at": "Mon, 19 Dec 2011 17:59:35 +0000", "from_user": "Docholiday86", "from_user_id": 23137320, "from_user_id_str": "23137320", "from_user_name": "Doc-Holiday", "geo": null, "id": 148824815233544200, "id_str": "148824815233544192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700942842/avatar_normal.JPEG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700942842/avatar_normal.JPEG", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "I got your clown fool .. that's why your baby be punking you", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:29 +0000", "from_user": "PublicFrenemies", "from_user_id": 230971759, "from_user_id_str": "230971759", "from_user_name": "Bri Al-Amin\\uE105", "geo": null, "id": 148824790902382600, "id_str": "148824790902382593", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695983196/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695983196/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @_ImmaTweetItUp: @PublicFrenemies (: all we do is clown naa . & tell stories bout school & olee times .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:26 +0000", "from_user": "ChiinkyXXXi", "from_user_id": 64547669, "from_user_id_str": "64547669", "from_user_name": "Desiree Latrease", "geo": null, "id": 148824776604008450, "id_str": "148824776604008448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1672021668/cropped_mangos_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672021668/cropped_mangos_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Like yur not being funny yur a clown lmfaooooo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:25 +0000", "from_user": "aztec_izzybae", "from_user_id": 300028588, "from_user_id_str": "300028588", "from_user_name": "izzybizzy", "geo": null, "id": 148824773005291520, "id_str": "148824773005291520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688869190/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688869190/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:22 +0000", "from_user": "EddGalvao", "from_user_id": 340451350, "from_user_id_str": "340451350", "from_user_name": "Threadless", "geo": null, "id": 148824761626144770, "id_str": "148824761626144770", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1556916616/OgAAAIoekfoh6soYpugScGhxBQRP_vIlLn7uCrs3CEFxh5rbsUGXLk256G4AN1IzTM0QUu16IlciLp4QCqCh7cSqji4Am1T1UKegF6swCl2VhBzimjJB-fIWw844_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1556916616/OgAAAIoekfoh6soYpugScGhxBQRP_vIlLn7uCrs3CEFxh5rbsUGXLk256G4AN1IzTM0QUu16IlciLp4QCqCh7cSqji4Am1T1UKegF6swCl2VhBzimjJB-fIWw844_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Amanha logo mais vo pratica um street clown ! hehehe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:20 +0000", "from_user": "Ashinnn_kusher", "from_user_id": 334803657, "from_user_id_str": "334803657", "from_user_name": "Walt B", "geo": null, "id": 148824750297317380, "id_str": "148824750297317376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696984401/facetime2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696984401/facetime2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @WhoCheckn_Coop: All these clone niggas trying to be real. #clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:19 +0000", "from_user": "NVBdaMVP", "from_user_id": 159017546, "from_user_id_str": "159017546", "from_user_name": "Daddy's Girl", "geo": null, "id": 148824748200181760, "id_str": "148824748200181760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1416662463/IMG00320-20110615-1616_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1416662463/IMG00320-20110615-1616_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Got women have surgery to remove essential organs because they are afraid one day you will clown their picture", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:09 +0000", "from_user": "WhoCheckn_Coop", "from_user_id": 246959435, "from_user_id_str": "246959435", "from_user_name": "Tev Coop", "geo": null, "id": 148824705791565820, "id_str": "148824705791565824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702534210/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702534210/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "All these clone niggas trying to be real. #clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:01 +0000", "from_user": "_ImmaTweetItUp", "from_user_id": 297795224, "from_user_id_str": "297795224", "from_user_name": "\\u2661 \\u24DA\\u24D8\\u24E3\\u24E3\\u24E8 \\u24E6\\u24D7\\u24D8\\u24E3\\u24D4 \\u2661", "geo": null, "id": 148824674028101630, "id_str": "148824674028101632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1665604945/T7HXTzl2_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665604945/T7HXTzl2_normal", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "@PublicFrenemies (: all we do is clown naa . & tell stories bout school & olee times .", "to_user": "PublicFrenemies", "to_user_id": 230971759, "to_user_id_str": "230971759", "to_user_name": "Bri Al-Amin\\uE105"}, +{"created_at": "Mon, 19 Dec 2011 17:59:01 +0000", "from_user": "HeyImNiesha", "from_user_id": 56296455, "from_user_id_str": "56296455", "from_user_name": "Niesha Lake", "geo": null, "id": 148824670366478340, "id_str": "148824670366478337", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1652559958/rANcqLEp_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652559958/rANcqLEp_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "i wonder how many of my followers be clown'n at church \\uE037 ! ? , shout'n dance'n etc. \\u2026 i \\uE022 it ! \\uE427\\uE41D\\uE00F\\uE41F !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:57 +0000", "from_user": "Bright_eyez122", "from_user_id": 72702269, "from_user_id_str": "72702269", "from_user_name": "Bright_eyez122", "geo": null, "id": 148824654839156740, "id_str": "148824654839156736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689623038/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689623038/profile_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "RT @BakeGriffin: You'll never know how much of a clown you are until you look at ya old myspace pics...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:55 +0000", "from_user": "olliejenks85", "from_user_id": 437459987, "from_user_id_str": "437459987", "from_user_name": "Oliver Jenkins", "geo": null, "id": 148824647461384200, "id_str": "148824647461384192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Oo look... I gotta Porsche, but I won't do more than 38 in a 60 tho!! Clown!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:49 +0000", "from_user": "dopee_boi", "from_user_id": 430921180, "from_user_id_str": "430921180", "from_user_name": "danny ribeiro", "geo": null, "id": 148824620768825340, "id_str": "148824620768825344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691880273/c8f9oYTM_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691880273/c8f9oYTM_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@softcheekz fck uppp clown", "to_user": "softcheekz", "to_user_id": 423989565, "to_user_id_str": "423989565", "to_user_name": "kristaaaaay.\\u2122", "in_reply_to_status_id": 148802134882783230, "in_reply_to_status_id_str": "148802134882783233"}, +{"created_at": "Mon, 19 Dec 2011 17:58:45 +0000", "from_user": "Real_turtle", "from_user_id": 365416059, "from_user_id_str": "365416059", "from_user_name": "free my bruthas", "geo": null, "id": 148824606780833800, "id_str": "148824606780833792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1522216677/1y8yzqV9_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1522216677/1y8yzqV9_normal", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:31 +0000", "from_user": "Mrs_TooHottie", "from_user_id": 239644300, "from_user_id_str": "239644300", "from_user_name": "Ge'Kirra Dickson", "geo": null, "id": 148824547259465730, "id_str": "148824547259465728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677409341/imagejpeg_2_4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677409341/imagejpeg_2_4_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "Pot a clown!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:24 +0000", "from_user": "Skygrade", "from_user_id": 22882763, "from_user_id_str": "22882763", "from_user_name": "MaryJane", "geo": null, "id": 148824516833976320, "id_str": "148824516833976320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689378753/331371678_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689378753/331371678_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "No they bro's clown ... They be frontin for da homies ... RT @Frassout_Tip: 95% of niggas uptown is gyal clowns", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:19 +0000", "from_user": "BakeGriffin", "from_user_id": 339164974, "from_user_id_str": "339164974", "from_user_name": "Chubbz ", "geo": null, "id": 148824497389182980, "id_str": "148824497389182976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689393902/profile_image_1323713470162_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689393902/profile_image_1323713470162_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "You'll never know how much of a clown you are until you look at ya old myspace pics...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:17 +0000", "from_user": "PeuBallerine", "from_user_id": 172464471, "from_user_id_str": "172464471", "from_user_name": "Paris Morton", "geo": null, "id": 148824488455311360, "id_str": "148824488455311360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1684385643/Snapshot_20111209_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684385643/Snapshot_20111209_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Why this clown tryna make convo ''iSaw you one day''", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:16 +0000", "from_user": "markvdplas", "from_user_id": 261620769, "from_user_id_str": "261620769", "from_user_name": "Mark van der plas.", "geo": null, "id": 148824481476001800, "id_str": "148824481476001794", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1669521773/1416812986_5_CmK__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669521773/1416812986_5_CmK__normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@maaikekorbee jij bent zeker een clown bij de bztshow ?:$", "to_user": "maaikekorbee", "to_user_id": 229227453, "to_user_id_str": "229227453", "to_user_name": "\\u1D0D\\u1D00\\u1D00\\u026A\\u1D0B\\u1D07 \\u2654"}, +{"created_at": "Mon, 19 Dec 2011 17:58:14 +0000", "from_user": "ShizzyMac_", "from_user_id": 39112477, "from_user_id_str": "39112477", "from_user_name": "Shawna Murphy", "geo": null, "id": 148824473787838460, "id_str": "148824473787838464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1674861298/GosmsPhoto1322852503107_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674861298/GosmsPhoto1322852503107_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Btw For All You Misrable Pple Me & My Girl Is Cooling Im Just Pissed/Irked With Her , Stop Wishing For Us To Fail Yall Fucking Clown Cunts *", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:11 +0000", "from_user": "RussNOUVEAU", "from_user_id": 266492492, "from_user_id_str": "266492492", "from_user_name": "Russell Blayne Ford", "geo": null, "id": 148824460252815360, "id_str": "148824460252815360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702517134/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702517134/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Looking through my tweets! The amount of times I've been hacked by this clown @fuckikz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:07 +0000", "from_user": "4RocsB4theBeat", "from_user_id": 203559040, "from_user_id_str": "203559040", "from_user_name": "H.Roc", "geo": null, "id": 148824447292407800, "id_str": "148824447292407808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1658778242/untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658778242/untitled_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Steve Carell is a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:07 +0000", "from_user": "88_JaneDoe", "from_user_id": 102286132, "from_user_id_str": "102286132", "from_user_name": "Is It Ledie ", "geo": null, "id": 148824443970519040, "id_str": "148824443970519041", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682202283/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682202283/profile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "lls im texting and im looking up words to write lls #clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:06 +0000", "from_user": "OhGee_Status", "from_user_id": 226290020, "from_user_id_str": "226290020", "from_user_name": "Albert Johnson", "geo": null, "id": 148824441248419840, "id_str": "148824441248419840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692931293/Snapshot_20110923_1_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692931293/Snapshot_20110923_1_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "I'm amazed you clown niccas are still around!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:52 +0000", "from_user": "CraziSexiCool17", "from_user_id": 382516066, "from_user_id_str": "382516066", "from_user_name": "\\u0118\\u0157\\u012F\\u014B \\u0136\\u0119\\u014Bd\\u0105\\u026D\\u026D", "geo": null, "id": 148824381878054900, "id_str": "148824381878054912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685250271/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685250271/image_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", "text": "Whatever clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:47 +0000", "from_user": "co_2sweet", "from_user_id": 275135003, "from_user_id_str": "275135003", "from_user_name": "MotherOfAmari&Caleb ", "geo": null, "id": 148824363750268930, "id_str": "148824363750268929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1645926835/cocoa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645926835/cocoa_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Stop trying to clown me that was suppose to be see RT @Red_ops: \\u201C@co_2sweet: Shitt fool long time (cont) http://t.co/c0HmAWSc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:37 +0000", "from_user": "RoYal_BaDDBarB", "from_user_id": 227414155, "from_user_id_str": "227414155", "from_user_name": "D.Netta BaDDAzz", "geo": null, "id": 148824318527275000, "id_str": "148824318527275009", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693656641/381908_340262119321573_100000133622401_1566922_855709810_n-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693656641/381908_340262119321573_100000133622401_1566922_855709810_n-1_normal.jpg", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "I Just Laugh At Him #Clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:31 +0000", "from_user": "SkinTanHairLonq", "from_user_id": 189030336, "from_user_id_str": "189030336", "from_user_name": "FASHION\\uE13EBoss\\uE139Mel\\uE31C", "geo": null, "id": 148824294053515260, "id_str": "148824294053515264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692262571/YXtVf3bO_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692262571/YXtVf3bO_normal", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "\"@Grlwitdatattoo_: @SkinTanHairLonq lol my Clown ass went & got fitted 4 them and all lol\" lol it's cool, I kudnt see you wearing them now", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:21 +0000", "from_user": "StayRealBitch", "from_user_id": 368375242, "from_user_id_str": "368375242", "from_user_name": "S", "geo": null, "id": 148824250550206460, "id_str": "148824250550206464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702047659/YUSRA_EE_9A_84__D9_8A_D8_B3_D8_B1.jpg_normal.rem", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702047659/YUSRA_EE_9A_84__D9_8A_D8_B3_D8_B1.jpg_normal.rem", "source": "<a href="http://twitter.com/">web</a>", "text": "Can't be bothered to walk this clown to the bus stop LOL ..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:14 +0000", "from_user": "BHUNT_3", "from_user_id": 271834514, "from_user_id_str": "271834514", "from_user_name": "Brandon Hunter", "geo": null, "id": 148824221160706050, "id_str": "148824221160706048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1624877326/IMG_0336_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624877326/IMG_0336_normal.JPG", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@outcheavilleUSA lmao you a clown bro I swear lol", "to_user": "outcheavilleUSA", "to_user_id": 34562968, "to_user_id_str": "34562968", "to_user_name": "Butch McRae", "in_reply_to_status_id": 148823136509509630, "in_reply_to_status_id_str": "148823136509509632"}, +{"created_at": "Mon, 19 Dec 2011 17:57:11 +0000", "from_user": "FantasyGirl_S2", "from_user_id": 232916709, "from_user_id_str": "232916709", "from_user_name": "Flor Chavez", "geo": null, "id": 148824210670764030, "id_str": "148824210670764032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687926079/379044_324287177597298_100000480559575_1319051_157140427_a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687926079/379044_324287177597298_100000480559575_1319051_157140427_a_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:09 +0000", "from_user": "MoGotti__", "from_user_id": 242403507, "from_user_id_str": "242403507", "from_user_name": "Mo Got EM!", "geo": null, "id": 148824202500251650, "id_str": "148824202500251648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1615282402/yagirl_Mogotti_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615282402/yagirl_Mogotti_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "I can't Stand clown ass niggas", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:06 +0000", "from_user": "Cruddycj15", "from_user_id": 397001923, "from_user_id_str": "397001923", "from_user_name": "Ihoopcj#15", "geo": null, "id": 148824188780679170, "id_str": "148824188780679168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1604099838/c1w7l4MT_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1604099838/c1w7l4MT_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Clown ass gurls in my 5th period class", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:59 +0000", "from_user": "jOiNdAWAVE69", "from_user_id": 333381303, "from_user_id_str": "333381303", "from_user_name": "Head Honcho\\u270C", "geo": null, "id": 148824161677090800, "id_str": "148824161677090816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689575794/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689575794/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "ctfu this bitch on my TL a clown and the nigga she talking bout is too", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:56 +0000", "from_user": "RidinGTI239", "from_user_id": 55010593, "from_user_id_str": "55010593", "from_user_name": "Nils Oland", "geo": null, "id": 148824148188213250, "id_str": "148824148188213250", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1423394127/nil_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1423394127/nil_1_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:55 +0000", "from_user": "Dooreannuh", "from_user_id": 323427501, "from_user_id_str": "323427501", "from_user_name": "LaDori. ", "geo": null, "id": 148824141720588300, "id_str": "148824141720588288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702459556/m5c44MlP_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702459556/m5c44MlP_normal", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @MeLuvULongTime_: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boi i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:43 +0000", "from_user": "MidSmokinMoney", "from_user_id": 398186908, "from_user_id_str": "398186908", "from_user_name": "Racks Charles", "geo": null, "id": 148824091569299460, "id_str": "148824091569299456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1658782721/390223_144032149035910_100002873780974_162565_975875932_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658782721/390223_144032149035910_100002873780974_162565_975875932_n_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "A clown got a fake face stuntin we get muney!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:35 +0000", "from_user": "samanthahalpa", "from_user_id": 346938202, "from_user_id_str": "346938202", "from_user_name": "samantha halpa", "geo": null, "id": 148824059117969400, "id_str": "148824059117969408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701346703/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701346703/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:33 +0000", "from_user": "Grlwitdatattoo_", "from_user_id": 112766866, "from_user_id_str": "112766866", "from_user_name": "\\u211Ciley! ", "geo": null, "id": 148824053057196030, "id_str": "148824053057196032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702150370/Grlwitdatattoo__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702150370/Grlwitdatattoo__normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@SkinTanHairLonq lol my Clown ass went & got fitted 4 them and all lol", "to_user": "SkinTanHairLonq", "to_user_id": 189030336, "to_user_id_str": "189030336", "to_user_name": "FASHION\\uE13EBoss\\uE139Mel\\uE31C", "in_reply_to_status_id": 148823732197146620, "in_reply_to_status_id_str": "148823732197146625"}, +{"created_at": "Mon, 19 Dec 2011 17:56:31 +0000", "from_user": "Erickafik", "from_user_id": 440172775, "from_user_id_str": "440172775", "from_user_name": "Ericka Rower", "geo": null, "id": 148824042718240770, "id_str": "148824042718240769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700481111/large_Me_in_New_Jersey_008_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700481111/large_Me_in_New_Jersey_008_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Flint Rasmussen - PBR Clown 32\" x 74\" Print Stand Up: Flint Rasmussen - PBR Clown 32\" x 74\" Print Stand Up print... http://t.co/23EH8vgh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:26 +0000", "from_user": "LetsTalkDinero", "from_user_id": 260741100, "from_user_id_str": "260741100", "from_user_name": "DINERO DUARTE", "geo": null, "id": 148824023156015100, "id_str": "148824023156015104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698566775/331616748_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698566775/331616748_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@KassieSays_ lol clown", "to_user": "KassieSays_", "to_user_id": 231328198, "to_user_id_str": "231328198", "to_user_name": "Kassandra B.", "in_reply_to_status_id": 148823899688275970, "in_reply_to_status_id_str": "148823899688275969"}, +{"created_at": "Mon, 19 Dec 2011 17:56:22 +0000", "from_user": "sching108", "from_user_id": 101766116, "from_user_id_str": "101766116", "from_user_name": "SCHING", "geo": null, "id": 148824005611225100, "id_str": "148824005611225088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702306306/393415_10150450556948682_612598681_8888232_1954445718_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702306306/393415_10150450556948682_612598681_8888232_1954445718_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@icelemongirl the clown die thn they go thn no more *.*", "to_user": "icelemongirl", "to_user_id": 116821810, "to_user_id_str": "116821810", "to_user_name": "\\uE030\\uE204\\uBC15\\uD790\\uD790\\uE204\\uE32E", "in_reply_to_status_id": 148823173079629820, "in_reply_to_status_id_str": "148823173079629824"}, +{"created_at": "Mon, 19 Dec 2011 17:56:22 +0000", "from_user": "Phiko_nC88", "from_user_id": 282545278, "from_user_id_str": "282545278", "from_user_name": "Phikolomzi Ncayiyana", "geo": null, "id": 148824005321818100, "id_str": "148824005321818113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1643970696/329951110_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643970696/329951110_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "'Uyimalini owafifteen'.. Hahahahaha.. Luthando ds clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:21 +0000", "from_user": "Just_Jazzie", "from_user_id": 29775904, "from_user_id_str": "29775904", "from_user_name": "Jazmen", "geo": null, "id": 148823999563042800, "id_str": "148823999563042817", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1658333781/me_PnA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658333781/me_PnA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "She doesn't even have her license fuckin clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:20 +0000", "from_user": "_ImDarkNLovelY", "from_user_id": 265786053, "from_user_id_str": "265786053", "from_user_name": "Monique Davaul\\u2661", "geo": null, "id": 148823997407182850, "id_str": "148823997407182849", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1609629055/cool_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609629055/cool_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @ballislyfe_1: Clown ass niggas lls", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:14 +0000", "from_user": "Yepp_shawtyBAD", "from_user_id": 368373260, "from_user_id_str": "368373260", "from_user_name": "Lah'Ray:)", "geo": null, "id": 148823973461893120, "id_str": "148823973461893120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1634595090/qioS9hNQ_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634595090/qioS9hNQ_normal", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @SignedWhitLove: -____- RT @SayBLACK3x_: I am not a class clown!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:06 +0000", "from_user": "MAXfuckingCOHEN", "from_user_id": 29286410, "from_user_id_str": "29286410", "from_user_name": "Max Cohen", "geo": null, "id": 148823937827086340, "id_str": "148823937827086336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697338216/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697338216/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:02 +0000", "from_user": "lovingme_09", "from_user_id": 55287428, "from_user_id_str": "55287428", "from_user_name": "Tawiah Trent", "geo": null, "id": 148823921611915260, "id_str": "148823921611915266", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1544475817/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544475817/me_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Ppl b thinking they too much bt in reality they r not all that! Smh take a seat! #clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:46 +0000", "from_user": "Ricciboy", "from_user_id": 73260948, "from_user_id_str": "73260948", "from_user_name": "Jonathan Ricci", "geo": null, "id": 148823856042352640, "id_str": "148823856042352640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1678203801/63436_477484567877_631717877_5569427_2295107_n_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678203801/63436_477484567877_631717877_5569427_2295107_n_normal.jpeg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Finished Freud presentation #thankgod didn't help when someone showed a picture of a clown when I'm trying to talk about Freud. #Enjoy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:46 +0000", "from_user": "shant1378", "from_user_id": 223964763, "from_user_id_str": "223964763", "from_user_name": "lashanti", "geo": null, "id": 148823852972130300, "id_str": "148823852972130304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692243178/profile_image_1323836672354_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692243178/profile_image_1323836672354_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "S/o to @JetLife_weez clown ass liein ass nigga!!!!! \\uE418", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:38 +0000", "from_user": "wordtwista445", "from_user_id": 403855995, "from_user_id_str": "403855995", "from_user_name": "michael hernandez", "geo": null, "id": 148823822160773120, "id_str": "148823822160773120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1619965417/301520_234966263229123_100001472542240_655485_1477546366_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619965417/301520_234966263229123_100001472542240_655485_1477546366_n_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 17:55:46 +0000", "from_user": "shant1378", "from_user_id": 223964763, "from_user_id_str": "223964763", "from_user_name": "lashanti", "geo": null, "id": 148823852972130300, "id_str": "148823852972130304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692243178/profile_image_1323836672354_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692243178/profile_image_1323836672354_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "S/o to @JetLife_weez clown ass liein ass nigga!!!!! \\uE418", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:38 +0000", "from_user": "wordtwista445", "from_user_id": 403855995, "from_user_id_str": "403855995", "from_user_name": "michael hernandez", "geo": null, "id": 148823822160773120, "id_str": "148823822160773120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1619965417/301520_234966263229123_100001472542240_655485_1477546366_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619965417/301520_234966263229123_100001472542240_655485_1477546366_n_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:34 +0000", "from_user": "TyDi_shirts", "from_user_id": 249911658, "from_user_id_str": "249911658", "from_user_name": "rough rider.", "geo": null, "id": 148823802506252300, "id_str": "148823802506252289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686594427/wow_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686594427/wow_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SayBLACK3x_: I am not a class clown!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:33 +0000", "from_user": "CatheyHaese3964", "from_user_id": 343902011, "from_user_id_str": "343902011", "from_user_name": "Cathey Haese", "geo": null, "id": 148823798320349200, "id_str": "148823798320349184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702445597/5913801804942970583a11147370220l_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702445597/5913801804942970583a11147370220l_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I remain just one thing, and one thing only -- and that is a clown. It places me on a far higher plane than any politician.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:26 +0000", "from_user": "RoThePooleBoy", "from_user_id": 54699962, "from_user_id_str": "54699962", "from_user_name": "Robert Edward Poole", "geo": null, "id": 148823770445004800, "id_str": "148823770445004800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1678200400/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678200400/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:25 +0000", "from_user": "Nick_Luger", "from_user_id": 354761445, "from_user_id_str": "354761445", "from_user_name": "Nick L. Herring ", "geo": null, "id": 148823764531036160, "id_str": "148823764531036160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1600248738/225670_10150178926567808_661857807_6673165_4631575_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600248738/225670_10150178926567808_661857807_6673165_4631575_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "How u gonna clown me and you look like a devilish mouse??", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:20 +0000", "from_user": "ScottyO_10", "from_user_id": 318194705, "from_user_id_str": "318194705", "from_user_name": "Scott Ogden", "geo": null, "id": 148823746747170800, "id_str": "148823746747170816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1678079982/161202_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678079982/161202_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@h_schaeefff duhh, they'd pop out of the womb rocking those fresh ass clown hats. for christmas every year they would get a new clown hat ;)", "to_user": "h_schaeefff", "to_user_id": 412605220, "to_user_id_str": "412605220", "to_user_name": "hannah schaeffer", "in_reply_to_status_id": 148823125495255040, "in_reply_to_status_id_str": "148823125495255040"}, +{"created_at": "Mon, 19 Dec 2011 17:55:19 +0000", "from_user": "1geliboo", "from_user_id": 245881331, "from_user_id_str": "245881331", "from_user_name": "A.N.W.2320", "geo": null, "id": 148823741223272450, "id_str": "148823741223272448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1655875834/IMG01200-20111015-2224_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655875834/IMG01200-20111015-2224_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@misstiff822 shut yo ass up clown ass! U the nasty one!!!OKAY lol", "to_user": "misstiff822", "to_user_id": 332332122, "to_user_id_str": "332332122", "to_user_name": "misstiff822*2320", "in_reply_to_status_id": 148822239930880000, "in_reply_to_status_id_str": "148822239930880001"}, +{"created_at": "Mon, 19 Dec 2011 17:55:18 +0000", "from_user": "aknoxrr", "from_user_id": 369929013, "from_user_id_str": "369929013", "from_user_name": "Alex Knox", "geo": null, "id": 148823735720353800, "id_str": "148823735720353792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1683985319/li3pFszU_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683985319/li3pFszU_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@cjamesr damnn id be down 2 clown if joel is but I know its prolly not goina happen", "to_user": "cjamesr", "to_user_id": 296928049, "to_user_id_str": "296928049", "to_user_name": "Charles Ryan"}, +{"created_at": "Mon, 19 Dec 2011 17:55:17 +0000", "from_user": "StraightBossin_", "from_user_id": 295469761, "from_user_id_str": "295469761", "from_user_name": "Wencys Gil", "geo": null, "id": 148823730989170700, "id_str": "148823730989170689", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1605416171/Mid_DSC_3722_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1605416171/Mid_DSC_3722_normal.JPG", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": ""@DervisService: Rochie is a clown" He singing ? Lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:14 +0000", "from_user": "SEAHAWK_SWAG", "from_user_id": 35385373, "from_user_id_str": "35385373", "from_user_name": "GABRIEL ", "geo": null, "id": 148823720549548030, "id_str": "148823720549548032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701299521/vUMRL4sI_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701299521/vUMRL4sI_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@AdamSchein thanks for showing love to my Seahawks.But can u play the clown music still?", "to_user": "AdamSchein", "to_user_id": 37824341, "to_user_id_str": "37824341", "to_user_name": "Adam Schein"}, +{"created_at": "Mon, 19 Dec 2011 17:55:09 +0000", "from_user": "livingassisted", "from_user_id": 159614386, "from_user_id_str": "159614386", "from_user_name": "AssistedLivingSource", "geo": null, "id": 148823700131692540, "id_str": "148823700131692544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1134662911/2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1134662911/2_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Grandma The Clown Is Leaving The Tent http://t.co/rA05YvvU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:05 +0000", "from_user": "Authentic_5950", "from_user_id": 354644427, "from_user_id_str": "354644427", "from_user_name": "freeJRAYndLILQUA!!\\u2122", "geo": null, "id": 148823682037465100, "id_str": "148823682037465088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689568597/Rflq6qDj_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689568597/Rflq6qDj_normal", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "We school yu nigcas no class clown!\\n[$$$]", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:03 +0000", "from_user": "SayBLACK3x_", "from_user_id": 258188567, "from_user_id_str": "258188567", "from_user_name": "Josh Nxgga.", "geo": null, "id": 148823675360133120, "id_str": "148823675360133122", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1626669858/287670824_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626669858/287670824_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I am not a class clown!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:03 +0000", "from_user": "elijah_joshua", "from_user_id": 406049301, "from_user_id_str": "406049301", "from_user_name": "Joshua Elijah", "geo": null, "id": 148823674550620160, "id_str": "148823674550620160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1630787049/sitdown_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630787049/sitdown_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Kelava_Boz a dead baby in a clown costume.", "to_user": "Kelava_Boz", "to_user_id": 247302692, "to_user_id_str": "247302692", "to_user_name": "Marko Kelava", "in_reply_to_status_id": 148823394379513860, "in_reply_to_status_id_str": "148823394379513857"}, +{"created_at": "Mon, 19 Dec 2011 17:54:59 +0000", "from_user": "InkredibleDolly", "from_user_id": 116753023, "from_user_id_str": "116753023", "from_user_name": "Miss Johnson \\u2603", "geo": null, "id": 148823659094609920, "id_str": "148823659094609920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701994693/IMGP2731_1_dd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701994693/IMGP2731_1_dd_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@RolayRouge its a woman, but half her face is a clown, gonna go below my other thigh tat :)", "to_user": "RolayRouge", "to_user_id": 90247567, "to_user_id_str": "90247567", "to_user_name": "-", "in_reply_to_status_id": 148822778907332600, "in_reply_to_status_id_str": "148822778907332609"}, +{"created_at": "Mon, 19 Dec 2011 17:54:53 +0000", "from_user": "Sunnylove0001", "from_user_id": 375120775, "from_user_id_str": "375120775", "from_user_name": "shaymyname:D ", "geo": null, "id": 148823629885472770, "id_str": "148823629885472768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700043152/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700043152/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I hate when Erin act like a clown.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:54:44 +0000", "from_user": "Ayeejennyx3", "from_user_id": 390372943, "from_user_id_str": "390372943", "from_user_name": "Harry Potter", "geo": null, "id": 148823593726394370, "id_str": "148823593726394368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702369969/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702369969/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Ladies don't do that to yourself, you look like a clown with all that clay on your face.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:54:40 +0000", "from_user": "stevemarais", "from_user_id": 26002363, "from_user_id_str": "26002363", "from_user_name": "Steve Marais", "geo": null, "id": 148823576903041020, "id_str": "148823576903041025", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692463045/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692463045/image_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "If I don't put my foot down Colin would leave the house looking like George Micheal the clown every day... #flamingoearrings!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:54:38 +0000", "from_user": "TheWize_Stoner", "from_user_id": 106564286, "from_user_id_str": "106564286", "from_user_name": "iSpeak$$$$", "geo": null, "id": 148823569504288770, "id_str": "148823569504288768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700862867/4cDX0d8z_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700862867/4cDX0d8z_normal", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @dopeAMANTE: RT @twEAT_Mee RT @whiteboytatted Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:54:33 +0000", "from_user": "LotusFemme", "from_user_id": 96255494, "from_user_id_str": "96255494", "from_user_name": "Giften Garcia", "geo": null, "id": 148823549463887870, "id_str": "148823549463887872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688553599/PrimeFemme_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688553599/PrimeFemme_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "If Robbie doesn't text me back it's going down clown!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:54:32 +0000", "from_user": "SayBLACK3x_", "from_user_id": 258188567, "from_user_id_str": "258188567", "from_user_name": "Josh Nxgga.", "geo": null, "id": 148823542161604600, "id_str": "148823542161604608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1626669858/287670824_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626669858/287670824_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @SignedWhitLove: Class clown: Black Josh!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:54:28 +0000", "from_user": "JaveyCakes", "from_user_id": 277782802, "from_user_id_str": "277782802", "from_user_name": "Javier Morales", "geo": null, "id": 148823526323912700, "id_str": "148823526323912704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1641345612/2011-10-24_20.47.21_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641345612/2011-10-24_20.47.21_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @DervisService: Rochie is a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:54:21 +0000", "from_user": "Yay_or_Nae", "from_user_id": 336346201, "from_user_id_str": "336346201", "from_user_name": "Lanee' Washington", "geo": null, "id": 148823498427600900, "id_str": "148823498427600896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1673746765/tweety_gotback_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673746765/tweety_gotback_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "She think im bout to sit in here and clown with her all day! Hell nooo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:54:20 +0000", "from_user": "J_Mtz93", "from_user_id": 21806699, "from_user_id_str": "21806699", "from_user_name": "Jose Angel Martinez", "geo": null, "id": 148823491653812220, "id_str": "148823491653812224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1595713262/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1595713262/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:54:11 +0000", "from_user": "Quan_iBall_Jr", "from_user_id": 336169516, "from_user_id_str": "336169516", "from_user_name": "Laquan Stephens", "geo": null, "id": 148823457520562180, "id_str": "148823457520562177", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702520307/Quan_iBall_Jr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702520307/Quan_iBall_Jr_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Lol & u know this .... Maaan! RT @SlimJim_Keish: Went to bed happy cus of @Quan_iBall_Jr , that nigga a clown forreal lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:54:07 +0000", "from_user": "QueenofTartsLLC", "from_user_id": 257798496, "from_user_id_str": "257798496", "from_user_name": "Chef B. Finley", "geo": null, "id": 148823440550412300, "id_str": "148823440550412289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682400524/KYA25gML_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682400524/KYA25gML_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Rayblinkie1906 no I'll clown a man doing the first f and I don't consider a future mate w/o the latter", "to_user": "Rayblinkie1906", "to_user_id": 126520122, "to_user_id_str": "126520122", "to_user_name": "Raymond Webber ", "in_reply_to_status_id": 148802733372223500, "in_reply_to_status_id_str": "148802733372223488"}, +{"created_at": "Mon, 19 Dec 2011 17:54:07 +0000", "from_user": "abhimanyumanna", "from_user_id": 73806597, "from_user_id_str": "73806597", "from_user_name": "Abhimanyu Manna", "geo": null, "id": 148823439799631870, "id_str": "148823439799631872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1173634714/DSC03092_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1173634714/DSC03092_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "I look like a clown today...really.. :(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:54:07 +0000", "from_user": "DervisService", "from_user_id": 423101270, "from_user_id_str": "423101270", "from_user_name": "Patron Lover ", "geo": null, "id": 148823437501153280, "id_str": "148823437501153280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701132633/DQH2kW98_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701132633/DQH2kW98_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Rochie is a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:54:07 +0000", "from_user": "MeLuvULongTime_", "from_user_id": 261413800, "from_user_id_str": "261413800", "from_user_name": "DaboreyFcknBurrell", "geo": null, "id": 148823437463388160, "id_str": "148823437463388162", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1679597423/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679597423/profile_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boi i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:54:06 +0000", "from_user": "justmeles", "from_user_id": 30972700, "from_user_id_str": "30972700", "from_user_name": "LESLIE SUPERNOR", "geo": null, "id": 148823432635744260, "id_str": "148823432635744256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1671966253/IMG00350-20110731-1813_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671966253/IMG00350-20110731-1813_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@AverageBlackMan too true I will never grow up, clown till the day I die", "to_user": "AverageBlackMan", "to_user_id": 76976987, "to_user_id_str": "76976987", "to_user_name": "Simmons", "in_reply_to_status_id": 148822305835974660, "in_reply_to_status_id_str": "148822305835974656"}, +{"created_at": "Mon, 19 Dec 2011 17:54:03 +0000", "from_user": "StephNoumeh", "from_user_id": 216883909, "from_user_id_str": "216883909", "from_user_name": "Stephanie Noumeh", "geo": null, "id": 148823422900781060, "id_str": "148823422900781056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1642978771/-4567543545_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642978771/-4567543545_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@MichaelLHadid: Bedtime with the biggest clown I know @StephNoumeh.\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:54:00 +0000", "from_user": "A_STATE_NIGGA", "from_user_id": 64969226, "from_user_id_str": "64969226", "from_user_name": "Tristian Childs", "geo": null, "id": 148823408816304130, "id_str": "148823408816304128", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1675140437/1323087471462_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675140437/1323087471462_normal.jpg", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "Ole bitch Ass nigga pussy Ass nigga fake Ass nigga clown Ass nigga *Webbie voice*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:53:59 +0000", "from_user": "ZackJBrown", "from_user_id": 177070006, "from_user_id_str": "177070006", "from_user_name": "Zack Brown", "geo": null, "id": 148823403695046660, "id_str": "148823403695046657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1100533454/Us_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1100533454/Us_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "This isnt my first rodeo as a clown.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:53:56 +0000", "from_user": "Wiggytree", "from_user_id": 116307426, "from_user_id_str": "116307426", "from_user_name": "Hello", "geo": null, "id": 148823393175744500, "id_str": "148823393175744513", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1409963780/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1409963780/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ddthekid: If you're in the open about who you are, the world will respect you more...how can someone clown you on something you brag about", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:53:48 +0000", "from_user": "QuickandSisi", "from_user_id": 110212169, "from_user_id_str": "110212169", "from_user_name": "Sisi Santa Ana", "geo": null, "id": 148823358425931780, "id_str": "148823358425931776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693316553/8J2rzx9X_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693316553/8J2rzx9X_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @bfrave: Santa is just a clown with a more specific task.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:53:45 +0000", "from_user": "SayBLACK3x_", "from_user_id": 258188567, "from_user_id_str": "258188567", "from_user_name": "Josh Nxgga.", "geo": null, "id": 148823345729769470, "id_str": "148823345729769472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1626669858/287670824_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626669858/287670824_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @LilBitty_Bre: \\u201C@KEKE_whereyaaAT \\u201C@SignedWhitLove Class clown: Black Josh!\\u201D\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:53:44 +0000", "from_user": "Quan_iBall_Jr", "from_user_id": 336169516, "from_user_id_str": "336169516", "from_user_name": "Laquan Stephens", "geo": null, "id": 148823343632629760, "id_str": "148823343632629761", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702520307/Quan_iBall_Jr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702520307/Quan_iBall_Jr_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @SlimJim_Keish: Went to bed happy cus of @Quan_iBall_Jr , that nigga a clown forreal lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:53:35 +0000", "from_user": "JenaviveS", "from_user_id": 346724836, "from_user_id_str": "346724836", "from_user_name": "Jenavive \\u2653", "geo": null, "id": 148823306349445120, "id_str": "148823306349445120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1663385070/r8exmevz_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663385070/r8exmevz_normal", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @palomaR25: I love the way @jenavives does makeup she dont be lookin like a clown like other people lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:53:27 +0000", "from_user": "KaitiMc", "from_user_id": 210038954, "from_user_id_str": "210038954", "from_user_name": "\\u03BA\\u03B1\\u03B9\\u2020\\u00ED \\u0271cL\\u03B1\\u0274\\u018E\\u262E", "geo": null, "id": 148823269057888260, "id_str": "148823269057888256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699194767/2011-09-189518.08.53_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699194767/2011-09-189518.08.53_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:53:23 +0000", "from_user": "Caaboldrin", "from_user_id": 190844240, "from_user_id_str": "190844240", "from_user_name": "camila :3", "geo": null, "id": 148823252146466800, "id_str": "148823252146466816", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1576125805/PQAAAHhvs6oE89jDtsZq1OfZgusuhDu9SoUUmloVuV8k3m_oBM2GaFKN3msg_P1hSwX050JvS_XOuwWPfRp7uzvovcoAm1T1ULvVXSm1Sdf8AJL3FGD4wkZ4wWwz_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576125805/PQAAAHhvs6oE89jDtsZq1OfZgusuhDu9SoUUmloVuV8k3m_oBM2GaFKN3msg_P1hSwX050JvS_XOuwWPfRp7uzvovcoAm1T1ULvVXSm1Sdf8AJL3FGD4wkZ4wWwz_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Clown sempre com ideias...resolveu pedir para Paul tirar uma foto dele cheio de sangue...ficou muito realista ((: http://t.co/ZSRfY63H", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:53:20 +0000", "from_user": "1lakers24", "from_user_id": 250911980, "from_user_id_str": "250911980", "from_user_name": "1lakers24", "geo": null, "id": 148823243493605380, "id_str": "148823243493605377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1241749124/M4DYMypo_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1241749124/M4DYMypo_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@yuckotheclown its my b-day RT ME U STINKING CLOWN :-)", "to_user": "yuckotheclown", "to_user_id": 30264815, "to_user_id_str": "30264815", "to_user_name": "Yucko The Clown", "in_reply_to_status_id": 148810384818700300, "in_reply_to_status_id_str": "148810384818700288"}, +{"created_at": "Mon, 19 Dec 2011 17:53:16 +0000", "from_user": "FogzSwag", "from_user_id": 26954311, "from_user_id_str": "26954311", "from_user_name": "Rocky Tee", "geo": null, "id": 148823226917724160, "id_str": "148823226917724160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1570380761/kylechad_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1570380761/kylechad_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@samanthageexo it'll be hard to find a small finned clown fish :(", "to_user": "samanthageexo", "to_user_id": 269335231, "to_user_id_str": "269335231", "to_user_name": "samantha gaines", "in_reply_to_status_id": 148822871773425660, "in_reply_to_status_id_str": "148822871773425664"}, +{"created_at": "Mon, 19 Dec 2011 17:53:16 +0000", "from_user": "LilBitty_Bre", "from_user_id": 293842256, "from_user_id_str": "293842256", "from_user_name": "January 20.", "geo": null, "id": 148823223549689860, "id_str": "148823223549689856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701031994/ful._normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701031994/ful._normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@KEKE_whereyaaAT \\u201C@SignedWhitLove Class clown: Black Josh!\\u201D\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:53:14 +0000", "from_user": "birdgang_reggie", "from_user_id": 342916851, "from_user_id_str": "342916851", "from_user_name": "Big B's BITCH ", "geo": null, "id": 148823215173681150, "id_str": "148823215173681153", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694184577/G88yXle9_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694184577/G88yXle9_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "& the flag RED like clown lips", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:53:06 +0000", "from_user": "Mizz_McNair", "from_user_id": 386252351, "from_user_id_str": "386252351", "from_user_name": "Tiffany McNair", "geo": null, "id": 148823185033404400, "id_str": "148823185033404416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575976494/tipp_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575976494/tipp_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I had to hang up on @iamTipG smdh...she really is a clown lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:55 +0000", "from_user": "RealJuanky", "from_user_id": 285670949, "from_user_id_str": "285670949", "from_user_name": "NoService ", "geo": null, "id": 148823136048128000, "id_str": "148823136048128000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701079444/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701079444/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:51 +0000", "from_user": "88_flow", "from_user_id": 301951246, "from_user_id_str": "301951246", "from_user_name": "marcus matthews", "geo": null, "id": 148823119832940540, "id_str": "148823119832940544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677438500/up3cIWP1_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677438500/up3cIWP1_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@herSWAGGinPOLO yea yea, wateva clown", "to_user": "herSWAGGinPOLO", "to_user_id": 303525848, "to_user_id_str": "303525848", "to_user_name": "Rachel Matthews", "in_reply_to_status_id": 148821465528156160, "in_reply_to_status_id_str": "148821465528156160"}, +{"created_at": "Mon, 19 Dec 2011 17:52:37 +0000", "from_user": "RealDMcCarthy", "from_user_id": 266351654, "from_user_id_str": "266351654", "from_user_name": "Dylan McCarthy", "geo": null, "id": 148823061876056060, "id_str": "148823061876056065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1273028715/easter_sunday_2011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273028715/easter_sunday_2011_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "If @jharrison9292 hit Tom Brady the way Dumervil did, he'd be fined and suspended. Roger Goodell is a hypocritical ASS-CLOWN!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:37 +0000", "from_user": "DomDom_94", "from_user_id": 238281271, "from_user_id_str": "238281271", "from_user_name": "Dom Mace", "geo": null, "id": 148823060995260400, "id_str": "148823060995260416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683921987/74272_1520130117340_1057161770_31180095_8336976_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683921987/74272_1520130117340_1057161770_31180095_8336976_n_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube video http://t.co/8pErtcYC E-Dubble - Class Clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:29 +0000", "from_user": "ZebraPrint_", "from_user_id": 42457210, "from_user_id_str": "42457210", "from_user_name": "Kay-Kay ", "geo": null, "id": 148823026367070200, "id_str": "148823026367070208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682031222/302516_325014700845491_100000108911209_1477203_633306393_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682031222/302516_325014700845491_100000108911209_1477203_633306393_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I Wish I Was A Class Clown . Teacher ' s Would HATE ME .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:15 +0000", "from_user": "Rated____Z", "from_user_id": 245625293, "from_user_id_str": "245625293", "from_user_name": "Zanay Duppins", "geo": null, "id": 148822968305319940, "id_str": "148822968305319937", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701287169/snapshot__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701287169/snapshot__1__normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u00AB@_DynamicDiam @Rated____Z *diess* i knew you was !\\u00BB you a clown, I was going anyway !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:14 +0000", "from_user": "ThtBitchJazzy", "from_user_id": 131293491, "from_user_id_str": "131293491", "from_user_name": "--Is tht Jaz? Yuhp!", "geo": null, "id": 148822966799577100, "id_str": "148822966799577088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639557056/resize_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639557056/resize_2_normal.jpg", "source": "<a href="http://tweetlogix.com" rel="nofollow">Tweetlogix</a>", "text": "@VanitySlutXXI let's not clown no I haven't", "to_user": "VanitySlutXXI", "to_user_id": 163763660, "to_user_id_str": "163763660", "to_user_name": "davidd marshall", "in_reply_to_status_id": 148821784223940600, "in_reply_to_status_id_str": "148821784223940608"}, +{"created_at": "Mon, 19 Dec 2011 17:52:14 +0000", "from_user": "_OBEYjordan", "from_user_id": 289058686, "from_user_id_str": "289058686", "from_user_name": "UrbanAmbition", "geo": null, "id": 148822964324937730, "id_str": "148822964324937728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702509998/KseIv3XG_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702509998/KseIv3XG_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Turned Round & My Nigga @Star2starmj Was Straight FLEXXIN On This Clown . #FWU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:14 +0000", "from_user": "austynleeMTV", "from_user_id": 24607550, "from_user_id_str": "24607550", "from_user_name": "Austyn Woodruff", "geo": null, "id": 148822963423154180, "id_str": "148822963423154176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702556524/59485_429759340722_660375722_5602386_3320135_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702556524/59485_429759340722_660375722_5602386_3320135_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @morganmeinecke: My mom is a clown.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:06 +0000", "from_user": "_micaMontana", "from_user_id": 253772344, "from_user_id_str": "253772344", "from_user_name": "\\uE10EDamica Myers \\uE42A", "geo": null, "id": 148822930070048770, "id_str": "148822930070048769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686706894/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686706894/profile_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @MagicCity112: \\u201C@whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:01 +0000", "from_user": "His_heartX", "from_user_id": 429403776, "from_user_id_str": "429403776", "from_user_name": "The Baddest :)", "geo": null, "id": 148822910700757000, "id_str": "148822910700756992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697504990/IMG_20111107_151200_wonder_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697504990/IMG_20111107_151200_wonder_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@eatMY_TUCHIE @meGOTgameADAMS he dnt NEVER have to ask a BUM bxtch for money to buy me shxt . Better sit her clown ass down :)", "to_user": "eatMY_TUCHIE", "to_user_id": 356662261, "to_user_id_str": "356662261", "to_user_name": "DariusMainGirl", "in_reply_to_status_id": 148724596475047940, "in_reply_to_status_id_str": "148724596475047936"}, +{"created_at": "Mon, 19 Dec 2011 17:51:52 +0000", "from_user": "TheKochtopus", "from_user_id": 194720625, "from_user_id_str": "194720625", "from_user_name": "The Koch Brothers", "geo": null, "id": 148822873862180860, "id_str": "148822873862180864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1130698151/seafood-local-specialty__u14895640_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1130698151/seafood-local-specialty__u14895640_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Who's callin' our minions clowns??? \"The #TeaParty Clown Show\": http://t.co/B1mEOR6X #OccupyTheClownCar #gopfail #tlot #p2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:50 +0000", "from_user": "SgtFrosty", "from_user_id": 21721002, "from_user_id_str": "21721002", "from_user_name": "Greg", "geo": null, "id": 148822862826979330, "id_str": "148822862826979329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683038140/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683038140/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:47 +0000", "from_user": "datboyreggie", "from_user_id": 365816632, "from_user_id_str": "365816632", "from_user_name": "ReggieSings", "geo": null, "id": 148822852911644670, "id_str": "148822852911644673", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1671116618/052_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671116618/052_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @xoXo_dcb23: You got like 5lbs of make-up caked on that face honey! oh wait, i know You must be a #Clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:41 +0000", "from_user": "Kayron_Brialle", "from_user_id": 188958656, "from_user_id_str": "188958656", "from_user_name": " Rest for me Ked", "geo": null, "id": 148822826894376960, "id_str": "148822826894376960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701502507/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701502507/image_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Camera on iOS</a>", "text": "RT @ReallyRELLE: a clown early n da a.m. http://t.co/f6DNNb69", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:31 +0000", "from_user": "DylanTGLane", "from_user_id": 15016834, "from_user_id_str": "15016834", "from_user_name": "Dylan Lane", "geo": null, "id": 148822783680458750, "id_str": "148822783680458752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/58224758/DSC_0009_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/58224758/DSC_0009_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@jymian A clown story titled \"Dread\"? My spidey-sense is tingling. This isn't a heartwarming tale, is it", "to_user": "jymian", "to_user_id": 65596558, "to_user_id_str": "65596558", "to_user_name": "Mike McHugh", "in_reply_to_status_id": 148550903056695300, "in_reply_to_status_id_str": "148550903056695296"}, +{"created_at": "Mon, 19 Dec 2011 17:51:30 +0000", "from_user": "shakeyourtitts", "from_user_id": 346159919, "from_user_id_str": "346159919", "from_user_name": "I XII XCV \\u2665", "geo": null, "id": 148822778546626560, "id_str": "148822778546626560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696784643/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696784643/image_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@inlovew__LAUREN is a clown !", "to_user": "inlovew__LAUREN", "to_user_id": 292102843, "to_user_id_str": "292102843", "to_user_name": "Noah Turley"}, +{"created_at": "Mon, 19 Dec 2011 17:51:28 +0000", "from_user": "Neeks63o", "from_user_id": 396897098, "from_user_id_str": "396897098", "from_user_name": "Nicholas", "geo": null, "id": 148822771424690180, "id_str": "148822771424690177", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698164458/Neeks63o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698164458/Neeks63o_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:24 +0000", "from_user": "dopeAMANTE", "from_user_id": 264422849, "from_user_id_str": "264422849", "from_user_name": "\\u2122 niQii hendrixx", "geo": null, "id": 148822756346175500, "id_str": "148822756346175489", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693392789/132389224034214_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693392789/132389224034214_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @twEAT_Mee RT @whiteboytatted Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:18 +0000", "from_user": "based_spacely", "from_user_id": 273481656, "from_user_id_str": "273481656", "from_user_name": "Find out ^__^", "geo": null, "id": 148822731872419840, "id_str": "148822731872419840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1291947753/279756807_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1291947753/279756807_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@_NotAFuckGiven u a clown son", "to_user": "_NotAFuckGiven", "to_user_id": 314942893, "to_user_id_str": "314942893", "to_user_name": "The Grim Reaper \\uE11C", "in_reply_to_status_id": 148820686738178050, "in_reply_to_status_id_str": "148820686738178048"}, +{"created_at": "Mon, 19 Dec 2011 17:51:18 +0000", "from_user": "MelissaSWEETS", "from_user_id": 28639904, "from_user_id_str": "28639904", "from_user_name": "Melissa Chaile", "geo": null, "id": 148822730664452100, "id_str": "148822730664452099", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1619352633/320229_283032875051835_155762514445539_962251_999989710_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619352633/320229_283032875051835_155762514445539_962251_999989710_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Jajaja! *laughs in Spanish* ~RT @HECtacular_: LMFAOOOOO this girl is the BIGGEST clown I have seen in yrs LOL ~~> @MelissaSWEETS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:14 +0000", "from_user": "morganmeinecke", "from_user_id": 174934199, "from_user_id_str": "174934199", "from_user_name": "Morgan Meinecke", "geo": null, "id": 148822715086798850, "id_str": "148822715086798848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697838118/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697838118/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "My mom is a clown.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:14 +0000", "from_user": "hotgirljas", "from_user_id": 248944004, "from_user_id_str": "248944004", "from_user_name": "Jasmine Cole.", "geo": null, "id": 148822712968683520, "id_str": "148822712968683521", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701128066/k_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701128066/k_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "Lmfaoo, my lil niece a fucking clown.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:11 +0000", "from_user": "Jerusha31", "from_user_id": 133727312, "from_user_id_str": "133727312", "from_user_name": "Jerusha Singh", "geo": null, "id": 148822701413376000, "id_str": "148822701413376002", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1191270421/Untitled-8_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1191270421/Untitled-8_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @RichardOBarry: Dolphins are free-ranging, intelligent, & complex wild animals, and they belong in the oceans, not playing the clown in our human schemes.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:10 +0000", "from_user": "The_BritPulliam", "from_user_id": 24915431, "from_user_id_str": "24915431", "from_user_name": "Brittany Shaynae =)", "geo": null, "id": 148822695977549820, "id_str": "148822695977549824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689077253/The_BritPulliam_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689077253/The_BritPulliam_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "LOL! dont do me like that! lmao RT @realchillwill: @The_BritPulliam its ok. I wont clown u..... Til tomorrow. Lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:10 +0000", "from_user": "JComm_BlogFeeds", "from_user_id": 111128893, "from_user_id_str": "111128893", "from_user_name": "J-Comm", "geo": null, "id": 148822695461666800, "id_str": "148822695461666817", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/688658566/j-commlogoneu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/688658566/j-commlogoneu_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Ron Paul Takes the Lead in Iowa: In the ever-changing GOP clown car of far right candidates, the lead... http://t.co/CWdRp4nm LiGrFballs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:04 +0000", "from_user": "SirThomas112", "from_user_id": 327136886, "from_user_id_str": "327136886", "from_user_name": "Marcus T", "geo": null, "id": 148822672887922700, "id_str": "148822672887922688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1570200389/N0a59Ptk_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1570200389/N0a59Ptk_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Im offically a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:04 +0000", "from_user": "_KLAWZ", "from_user_id": 262389926, "from_user_id_str": "262389926", "from_user_name": "LI C RODG", "geo": null, "id": 148822671071789060, "id_str": "148822671071789056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700491439/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700491439/profile_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Don't fall off by tryna keep up with the Jones's! #clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:57 +0000", "from_user": "kyle_p96", "from_user_id": 425388836, "from_user_id_str": "425388836", "from_user_name": "Kyle parks", "geo": null, "id": 148822643519393800, "id_str": "148822643519393793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700951740/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700951740/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@kerrie_GRIMES your a crazy clown kid ;) x", "to_user": "kerrie_GRIMES", "to_user_id": 332374081, "to_user_id_str": "332374081", "to_user_name": "kerrie ", "in_reply_to_status_id": 148822297988431870, "in_reply_to_status_id_str": "148822297988431872"}, +{"created_at": "Mon, 19 Dec 2011 17:50:50 +0000", "from_user": "twEAT_Mee", "from_user_id": 239123167, "from_user_id_str": "239123167", "from_user_name": "P A I G E !", "geo": null, "id": 148822614213804030, "id_str": "148822614213804032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1628441604/smile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628441604/smile_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:45 +0000", "from_user": "stayBr00t4l", "from_user_id": 160027877, "from_user_id_str": "160027877", "from_user_name": "paul watkins", "geo": null, "id": 148822591577141250, "id_str": "148822591577141250", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697437022/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697437022/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:41 +0000", "from_user": "KDior_xo", "from_user_id": 284155984, "from_user_id_str": "284155984", "from_user_name": "#1 Stunna", "geo": null, "id": 148822576146292740, "id_str": "148822576146292736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1661110813/um2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661110813/um2_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@_imaBOSSxo Lmao! Lawd *wipes forhead* you a fuckin' CLOWN! Ahaa, well what tf u finna do today big dawggg?!..", "to_user": "_imaBOSSxo", "to_user_id": 361013074, "to_user_id_str": "361013074", "to_user_name": "Love Of Ur Life :D ", "in_reply_to_status_id": 148822141784170500, "in_reply_to_status_id_str": "148822141784170497"}, +{"created_at": "Mon, 19 Dec 2011 17:50:37 +0000", "from_user": "KEKE_whereyaaAT", "from_user_id": 105290560, "from_user_id_str": "105290560", "from_user_name": "Kiara! :D", "geo": null, "id": 148822557255151600, "id_str": "148822557255151616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1649592364/kbs_normal.jpg-large", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649592364/kbs_normal.jpg-large", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @SignedWhitLove: Class clown: Black Josh!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:33 +0000", "from_user": "BABYCORNKENW36D", "from_user_id": 208916672, "from_user_id_str": "208916672", "from_user_name": "STR8 DROP SHAWTY", "geo": null, "id": 148822540813467650, "id_str": "148822540813467649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1604799691/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1604799691/image_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@ShawnOTAT_SQUAD it ain't like that I'm tired of hearing boosie dre and mark like we didn't use to clown", "to_user": "ShawnOTAT_SQUAD", "to_user_id": 158238279, "to_user_id_str": "158238279", "to_user_name": "Shawn-O", "in_reply_to_status_id": 148821833267937280, "in_reply_to_status_id_str": "148821833267937281"}, +{"created_at": "Mon, 19 Dec 2011 17:50:30 +0000", "from_user": "Sharon3sa", "from_user_id": 87241118, "from_user_id_str": "87241118", "from_user_name": "Sharon Sandoval", "geo": null, "id": 148822530445160450, "id_str": "148822530445160449", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1682778662/Photo_on_2011-12-08_at_23.46_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682778662/Photo_on_2011-12-08_at_23.46_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Omg! My last class with my clown crush HAHAHA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:27 +0000", "from_user": "ballislyfe_1", "from_user_id": 396741102, "from_user_id_str": "396741102", "from_user_name": "Daddy", "geo": null, "id": 148822517493153800, "id_str": "148822517493153794", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693663407/imagejpeg_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693663407/imagejpeg_2_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Clown ass niggas lls", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:27 +0000", "from_user": "NeilCusack", "from_user_id": 26819025, "from_user_id_str": "26819025", "from_user_name": "Neil Cusack", "geo": +{"coordinates": [52.0219,-0.5819], "type": "Point"}, "id": 148822514485833730, "id_str": "148822514485833728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1282926968/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1282926968/image_normal.jpg", "source": "<a href="http://www.twitter.com" rel="nofollow">Twitter for Windows Phone</a>", "text": "This clown really is a joker! :-).. You want 2 weeks off at Christmas when you only work 2 days a week #whatajester", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:26 +0000", "from_user": "BBurton_1", "from_user_id": 102599805, "from_user_id_str": "102599805", "from_user_name": "Branden Burton", "geo": null, "id": 148822513546297340, "id_str": "148822513546297344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670575099/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670575099/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Novocane_808 u a clown but yea I b bak", "to_user": "Novocane_808", "to_user_id": 364029841, "to_user_id_str": "364029841", "to_user_name": "Crystal Alita", "in_reply_to_status_id": 148822357648220160, "in_reply_to_status_id_str": "148822357648220160"}, +{"created_at": "Mon, 19 Dec 2011 17:50:26 +0000", "from_user": "EmmettKellyJr_F", "from_user_id": 409675702, "from_user_id_str": "409675702", "from_user_name": "Emmett Kelly Jr Gift", "geo": null, "id": 148822511478505470, "id_str": "148822511478505472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1674139183/EKJ1101_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674139183/EKJ1101_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "❦ EKJ Clown Emmett Holding Teddy Bear Figurine Made in the USA Get from http://t.co/vElCyHMJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:19 +0000", "from_user": "nsanemujer", "from_user_id": 76850383, "from_user_id_str": "76850383", "from_user_name": "F.", "geo": null, "id": 148822483200507900, "id_str": "148822483200507904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1270602548/pica2565941_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1270602548/pica2565941_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@AB_PoeT lol u a clown", "to_user": "AB_PoeT", "to_user_id": 258965340, "to_user_id_str": "258965340", "to_user_name": "A B", "in_reply_to_status_id": 148822378112225280, "in_reply_to_status_id_str": "148822378112225280"}, +{"created_at": "Mon, 19 Dec 2011 17:50:18 +0000", "from_user": "Kapt_DILLIGAF", "from_user_id": 342282130, "from_user_id_str": "342282130", "from_user_name": "Buzz LightyeAr \\u00A47666", "geo": null, "id": 148822480168042500, "id_str": "148822480168042496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694885484/110603-031243_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694885484/110603-031243_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Contradicting everything you say?? Aaaand you want me & other to trust you?? FOH that's that clown shit", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:14 +0000", "from_user": "rooDOTcom", "from_user_id": 38314939, "from_user_id_str": "38314939", "from_user_name": "True Roo\\u2728", "geo": null, "id": 148822460584820740, "id_str": "148822460584820737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693678595/rooDOTcom_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693678595/rooDOTcom_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "I wasnt RT @Pusha_D: I wonder if Tyler is aware that they actually sell clown fish at most pet stores..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:11 +0000", "from_user": "HECtacular_", "from_user_id": 244208851, "from_user_id_str": "244208851", "from_user_name": "What The *HEC* ", "geo": null, "id": 148822447909638140, "id_str": "148822447909638145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702115680/profile_image_1324302018811_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702115680/profile_image_1324302018811_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster</a>", "text": "LMFAOOOOO this girl is the BIGGEST clown I have seen in yrs LOL ~~> @MelissaSWEETS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:10 +0000", "from_user": "Mazzino_Z", "from_user_id": 415120651, "from_user_id_str": "415120651", "from_user_name": "Mazino Ziregbe", "geo": null, "id": 148822446030598140, "id_str": "148822446030598146", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1644301698/297369_2268634924509_1507658159_32512519_5813760_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644301698/297369_2268634924509_1507658159_32512519_5813760_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@_OJUola_ see this clown :p", "to_user": "_OJUola_", "to_user_id": 210083443, "to_user_id_str": "210083443", "to_user_name": "Ojuola ", "in_reply_to_status_id": 148820966351437820, "in_reply_to_status_id_str": "148820966351437824"}, +{"created_at": "Mon, 19 Dec 2011 17:50:00 +0000", "from_user": "itsCristina_2u", "from_user_id": 245123226, "from_user_id_str": "245123226", "from_user_name": "nina aaliyah", "geo": null, "id": 148822401109594100, "id_str": "148822401109594113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1663273692/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663273692/profile_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Peanut is a CLOWN and a LIAR smh.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:58 +0000", "from_user": "MissNFo", "from_user_id": 67842326, "from_user_id_str": "67842326", "from_user_name": "Nicole Marie", "geo": null, "id": 148822394058969100, "id_str": "148822394058969088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662917682/MissNFo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662917682/MissNFo_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@WildCardWorld: Watch yal mouth when referring to my jesus. Tebow jokes is all cool but don't clown him for having faith in jesus #COSIGN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:56 +0000", "from_user": "exZACly_", "from_user_id": 62258442, "from_user_id_str": "62258442", "from_user_name": "Young, Wild, Free", "geo": null, "id": 148822387822047230, "id_str": "148822387822047232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1675200537/Z_Gooo__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675200537/Z_Gooo__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@TaylorMadexoxo Lonely? Lmaooooo @GoEasyOnEm_JU you hear this clown right now?", "to_user": "TaylorMadexoxo", "to_user_id": 217688864, "to_user_id_str": "217688864", "to_user_name": "Derian Taylor", "in_reply_to_status_id": 148821584524754940, "in_reply_to_status_id_str": "148821584524754944"}, +{"created_at": "Mon, 19 Dec 2011 17:49:50 +0000", "from_user": "ilyRaeBerg", "from_user_id": 299316186, "from_user_id_str": "299316186", "from_user_name": "Alexis Rae Colunga", "geo": null, "id": 148822361716699140, "id_str": "148822361716699136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697813206/XxV6oO5V_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697813206/XxV6oO5V_normal", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:48 +0000", "from_user": "Rica336", "from_user_id": 40564462, "from_user_id_str": "40564462", "from_user_name": "Ricky Herbin", "geo": null, "id": 148822351461625860, "id_str": "148822351461625856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1446504420/030301_1138_00__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1446504420/030301_1138_00__normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Talking to #oomf about last ur graduation she tryin to clown cause I cried lmao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:43 +0000", "from_user": "Snoopish", "from_user_id": 33515545, "from_user_id_str": "33515545", "from_user_name": "Neiloe Whitehead", "geo": null, "id": 148822332163629060, "id_str": "148822332163629057", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697127250/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697127250/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@mrmashokwe whatever clown! Yours sucks too", "to_user": "mrmashokwe", "to_user_id": 119310725, "to_user_id_str": "119310725", "to_user_name": "Tumelo Mashokwe", "in_reply_to_status_id": 148822093025390600, "in_reply_to_status_id_str": "148822093025390593"}, +{"created_at": "Mon, 19 Dec 2011 17:49:40 +0000", "from_user": "me0wing_", "from_user_id": 62328442, "from_user_id_str": "62328442", "from_user_name": "Peter File", "geo": null, "id": 148822320327307260, "id_str": "148822320327307264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693634708/CnLR3rYf_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693634708/CnLR3rYf_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "some fucking freaky clown laugh is coming from outside my window omfg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:39 +0000", "from_user": "litagentmiller", "from_user_id": 417301408, "from_user_id_str": "417301408", "from_user_name": "Scott Miller", "geo": null, "id": 148822312915976200, "id_str": "148822312915976192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683748311/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683748311/image_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @MarcusSakey: The LA episode of #HiddenCity is all goodness: pornography, murder, a riot, a clown... @travelchannel, Tuesday 10 ET", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:36 +0000", "from_user": "BigJ809s", "from_user_id": 348706440, "from_user_id_str": "348706440", "from_user_name": "Jay Rodriguez", "geo": null, "id": 148822303583637500, "id_str": "148822303583637504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698691613/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698691613/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:35 +0000", "from_user": "MartianWorldNC", "from_user_id": 188428269, "from_user_id_str": "188428269", "from_user_name": "Hermes Trismegistus ", "geo": null, "id": 148822296411389950, "id_str": "148822296411389953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1652516299/330236613_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652516299/330236613_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@SexCeeSTYLIST @PRETTYINGA I was wondering if that was a joke. Lmao. Clown.", "to_user": "SexCeeSTYLIST", "to_user_id": 46689036, "to_user_id_str": "46689036", "to_user_name": "CeeCee ", "in_reply_to_status_id": 148821946967146500, "in_reply_to_status_id_str": "148821946967146497"} +, +{"created_at": "Mon, 19 Dec 2011 17:49:23 +0000", "from_user": "lukeavfc", "from_user_id": 21539674, "from_user_id_str": "21539674", "from_user_name": "Luke Ramplin", "geo": null, "id": 148822247065387000, "id_str": "148822247065387008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1618042178/38448_10150240996440704_657955703_13882602_3660_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618042178/38448_10150240996440704_657955703_13882602_3660_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @marion_anthrax: @AVFCBlog paul faulkner is a clown tho. he's the only consistency thru this entire debacle", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:18 +0000", "from_user": "ChanDADDYSlim", "from_user_id": 33361797, "from_user_id_str": "33361797", "from_user_name": "C. Murder", "geo": null, "id": 148822227771605000, "id_str": "148822227771604992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676220195/ChanDADDYSlim_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676220195/ChanDADDYSlim_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @SignedWhitLove: Class clown: Black Josh!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:18 +0000", "from_user": "iBigMarc", "from_user_id": 90584643, "from_user_id_str": "90584643", "from_user_name": "Mr.Marc", "geo": null, "id": 148822225854799870, "id_str": "148822225854799873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1619888538/profile_image_1320290883108_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619888538/profile_image_1320290883108_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "RT @whiteboytatted Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:18 +0000", "from_user": "NewYorkPuck", "from_user_id": 45193878, "from_user_id_str": "45193878", "from_user_name": "Derek Felix", "geo": null, "id": 148822224793636860, "id_str": "148822224793636864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1437795784/flex_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1437795784/flex_2_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@AshlyStar sarcasm 101 is coming to universities. Clown Mgt is one of the requirements.", "to_user": "AshlyStar", "to_user_id": 14270367, "to_user_id_str": "14270367", "to_user_name": "Ashly Star", "in_reply_to_status_id": 148821478878625800, "in_reply_to_status_id_str": "148821478878625792"}, +{"created_at": "Mon, 19 Dec 2011 17:49:17 +0000", "from_user": "NeilCusack", "from_user_id": 26819025, "from_user_id_str": "26819025", "from_user_name": "Neil Cusack", "geo": +{"coordinates": [52.0219,-0.5819], "type": "Point"}, "id": 148822224147718140, "id_str": "148822224147718144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1282926968/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1282926968/image_normal.jpg", "source": "<a href="http://www.twitter.com" rel="nofollow">Twitter for Windows Phone</a>", "text": "Plus said clown was asked what days they really wanted off - clown replied with New Years day so clown is off New Years day!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:08 +0000", "from_user": "CorksQuips", "from_user_id": 286191664, "from_user_id_str": "286191664", "from_user_name": "Cork", "geo": null, "id": 148822184104689660, "id_str": "148822184104689666", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1321132779/RoadSignCORKTHU_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1321132779/RoadSignCORKTHU_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I stuck a red clown nose to the boss' door, called him Rudolph, and told everyone he's not invited to any reindeer games. #nftc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:57 +0000", "from_user": "TimbzNHoodCheck", "from_user_id": 53785954, "from_user_id_str": "53785954", "from_user_name": "Neighbahood D", "geo": null, "id": 148822139456323600, "id_str": "148822139456323585", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702506852/393568_613169413370_194903053_32495801_5291457_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702506852/393568_613169413370_194903053_32495801_5291457_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#WHATHAPPENED2 keeping your mouth shut? Why you telling these clown niggas and cops peoples names?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:37 +0000", "from_user": "oohLemmeKissit", "from_user_id": 36060271, "from_user_id_str": "36060271", "from_user_name": "Ms Mc Nasty ", "geo": null, "id": 148822053330489340, "id_str": "148822053330489344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698927145/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698927145/image_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @oohLemmeTASTEit: #oomf is a freakin clown .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:34 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148822043314495500, "id_str": "148822043314495488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://bestdealoncybermonday.info" rel="nofollow">bestdealoncybermondaydotinfo</a>", "text": "Buying Halloween Clown Figure-WWF Hasbro Doink the Clown Wrestling Action Figur http://t.co/PrkAdGxH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:23 +0000", "from_user": "NeilCusack", "from_user_id": 26819025, "from_user_id_str": "26819025", "from_user_name": "Neil Cusack", "geo": +{"coordinates": [52.0219,-0.5819], "type": "Point"}, "id": 148821994970951680, "id_str": "148821994970951680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1282926968/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1282926968/image_normal.jpg", "source": "<a href="http://www.twitter.com" rel="nofollow">Twitter for Windows Phone</a>", "text": "Lol someone who works all of 2 days a week getting pissy because they've been put down to work Xmas Eve and Boxing Day - shut up clown!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:23 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148821994031415300, "id_str": "148821994031415298", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://bestdealoncybermonday.info" rel="nofollow">bestdealoncybermondaydotinfo</a>", "text": "For Sale Halloween Clown Figure-Hollywood Hulk Hogan NWO Wrestling Action Figur http://t.co/DuVjVziR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:18 +0000", "from_user": "IamNumberz", "from_user_id": 419162820, "from_user_id_str": "419162820", "from_user_name": "Ayinde Numberz", "geo": null, "id": 148821975744262140, "id_str": "148821975744262144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1652973523/ayinde_hdr2_1296611405_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652973523/ayinde_hdr2_1296611405_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:18 +0000", "from_user": "ThunderX_KaT", "from_user_id": 296041412, "from_user_id_str": "296041412", "from_user_name": "X-X Rashad the Poet", "geo": null, "id": 148821975710707700, "id_str": "148821975710707713", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702221751/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702221751/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @Betsyjaimez: @TheGreatLezlie I'm down like a clown all the way to the ground. Lmao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:17 +0000", "from_user": "CraZy_JamSter", "from_user_id": 249381167, "from_user_id_str": "249381167", "from_user_name": "1/15 hppybdaytoME", "geo": null, "id": 148821971285717000, "id_str": "148821971285716992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1644060396/2011-07-16_16.44.38_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644060396/2011-07-16_16.44.38_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I hate clown ass peoplee # allsexes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:17 +0000", "from_user": "TheHomieDEE", "from_user_id": 403165653, "from_user_id_str": "403165653", "from_user_name": "L E G i T D E E \\u25BC", "geo": null, "id": 148821970987917300, "id_str": "148821970987917312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701479352/Snapshot_20111218_2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701479352/Snapshot_20111218_2_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "#np Madvillian -Fancy Clown <3333333333333333333333333333333", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:15 +0000", "from_user": "_Sherice", "from_user_id": 31508419, "from_user_id_str": "31508419", "from_user_name": "Sherice Fleming", "geo": null, "id": 148821961810776060, "id_str": "148821961810776064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701598762/PicsIn1322193304713_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701598762/PicsIn1322193304713_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u00AB@Ju220 @_Sherice oh lol\\u00BB You a clown!", "to_user": "Ju220", "to_user_id": 26997549, "to_user_id_str": "26997549", "to_user_name": "Diego Sanchez", "in_reply_to_status_id": 148820728496652300, "in_reply_to_status_id_str": "148820728496652288"}, +{"created_at": "Mon, 19 Dec 2011 17:48:14 +0000", "from_user": "Salah_largo", "from_user_id": 239706367, "from_user_id_str": "239706367", "from_user_name": "xSalah", "geo": null, "id": 148821959575216130, "id_str": "148821959575216128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1661222288/1421979797_4_AmXX_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661222288/1421979797_4_AmXX_1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "hahaha enge clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:07 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148821927052578800, "id_str": "148821927052578817", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://bestdealoncybermonday.info" rel="nofollow">bestdealoncybermondaydotinfo</a>", "text": "Price Comparisons For Halloween Clown Figure-Halloween Horror Scary Table Tot C http://t.co/NYrajhEd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:04 +0000", "from_user": "ColeDrinksOnMe", "from_user_id": 153563004, "from_user_id_str": "153563004", "from_user_name": "Morgiie Dahh`ling (:", "geo": null, "id": 148821916793319420, "id_str": "148821916793319425", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1684859679/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684859679/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:02 +0000", "from_user": "midgt211", "from_user_id": 34707154, "from_user_id_str": "34707154", "from_user_name": "bill mono", "geo": null, "id": 148821909692354560, "id_str": "148821909692354561", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1632682224/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632682224/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:51 +0000", "from_user": "musicalgenius12", "from_user_id": 280673941, "from_user_id_str": "280673941", "from_user_name": "just call me DEE", "geo": null, "id": 148821863697621000, "id_str": "148821863697620992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670119715/IMG00352-20111120-2040_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670119715/IMG00352-20111120-2040_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "My sister is a clown. lol. I love her to death though.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:47 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148821846173827070, "id_str": "148821846173827072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://bestdealoncybermonday.info" rel="nofollow">bestdealoncybermondaydotinfo</a>", "text": "Price Comparisons Of Halloween Clown Figure-Rocket USA The Original Bozo Bucket http://t.co/WPQ48OSn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:45 +0000", "from_user": "KPreShaboutique", "from_user_id": 208358864, "from_user_id_str": "208358864", "from_user_name": "K'PreSha Boutique", "geo": null, "id": 148821838036865020, "id_str": "148821838036865024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1540275102/charles_david_tory_platform_boot_womens_color_cognac_p1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1540275102/charles_david_tory_platform_boot_womens_color_cognac_p1__normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @ILuvGlam101: There is a thin line between a Doll Face & a Clown Face #Glam101 #MakeupMonday", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:45 +0000", "from_user": "jusbchillen", "from_user_id": 325655974, "from_user_id_str": "325655974", "from_user_name": "Rashad Pelage", "geo": null, "id": 148821837084770300, "id_str": "148821837084770304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1667112953/Image08072010151805_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667112953/Image08072010151805_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @LiCK_ME_DRY_: @jusbchillen @Im_A_Geek_ DATS WHA WE DO WE CLOWN ON EACH OTHA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:44 +0000", "from_user": "Betsyjaimez", "from_user_id": 167237283, "from_user_id_str": "167237283", "from_user_name": "BetsyJayy\\uE314", "geo": null, "id": 148821831577649150, "id_str": "148821831577649152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1611749948/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611749948/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@TheGreatLezlie I'm down like a clown all the way to the ground. Lmao", "to_user": "TheGreatLezlie", "to_user_id": 299870037, "to_user_id_str": "299870037", "to_user_name": "MyWorld\\u2122", "in_reply_to_status_id": 148819020336996350, "in_reply_to_status_id_str": "148819020336996352"}, +{"created_at": "Mon, 19 Dec 2011 17:47:43 +0000", "from_user": "_OBEYjordan", "from_user_id": 289058686, "from_user_id_str": "289058686", "from_user_name": "UrbanAmbition", "geo": null, "id": 148821828150902800, "id_str": "148821828150902784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702509998/KseIv3XG_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702509998/KseIv3XG_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@PRETTY_PINK95 Bout To Straight MURK THIS Clown #NOGAMES", "to_user": "PRETTY_PINK95", "to_user_id": 319636360, "to_user_id_str": "319636360", "to_user_name": "niya marshall", "in_reply_to_status_id": 148821339543842800, "in_reply_to_status_id_str": "148821339543842816"}, +{"created_at": "Mon, 19 Dec 2011 17:47:42 +0000", "from_user": "adambiles", "from_user_id": 258273513, "from_user_id_str": "258273513", "from_user_name": "Adam Biles", "geo": null, "id": 148821822568275970, "id_str": "148821822568275968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700840977/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700840977/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@LightMeetsNight Crazy Clown Time by @DAVID_LYNCH", "to_user": "LightMeetsNight", "to_user_id": 194899381, "to_user_id_str": "194899381", "to_user_name": "Light Meets Night", "in_reply_to_status_id": 148821506422607870, "in_reply_to_status_id_str": "148821506422607872"}, +{"created_at": "Mon, 19 Dec 2011 17:47:32 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148821780520370180, "id_str": "148821780520370176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://bestdealoncybermonday.info" rel="nofollow">bestdealoncybermondaydotinfo</a>", "text": "Low Price Halloween Clown Figure-Sota Toys Now Playing Series 2 Action Figure K http://t.co/3Wqxlfm5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:29 +0000", "from_user": "D_2cool4skool", "from_user_id": 139965346, "from_user_id_str": "139965346", "from_user_name": "DeUndre", "geo": null, "id": 148821767761309700, "id_str": "148821767761309696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691297882/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691297882/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "@tha_exquisite1 u already kno \\u201C get off my floor wit them boots on clown and u cnt forget the imfamous icecream line over the intercom\\u201C", "to_user": "tha_exquisite1", "to_user_id": 108141929, "to_user_id_str": "108141929", "to_user_name": "Esquire", "in_reply_to_status_id": 148817428892225540, "in_reply_to_status_id_str": "148817428892225536"}, +{"created_at": "Mon, 19 Dec 2011 17:47:26 +0000", "from_user": "Beal_voice", "from_user_id": 295176307, "from_user_id_str": "295176307", "from_user_name": "Adam", "geo": null, "id": 148821757040660480, "id_str": "148821757040660481", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698296862/profile_image_1324131946897_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698296862/profile_image_1324131946897_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "We gotta clown RT @I94_Ty Looking up these Lions tickets my nigga @Beal_voice dwn who else rolling ??", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:23 +0000", "from_user": "JamareeB", "from_user_id": 364685108, "from_user_id_str": "364685108", "from_user_name": "IloveMichaelJordan", "geo": null, "id": 148821743224619000, "id_str": "148821743224619008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1655979611/jjjjj_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655979611/jjjjj_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@FoIIowMeBitch your a clown and rashad is bookem", "to_user": "FoIIowMeBitch", "to_user_id": 323594849, "to_user_id_str": "323594849", "to_user_name": "Black Steve-O", "in_reply_to_status_id": 148821327858499600, "in_reply_to_status_id_str": "148821327858499585"}, +{"created_at": "Mon, 19 Dec 2011 17:47:21 +0000", "from_user": "thunderthighz87", "from_user_id": 337495840, "from_user_id_str": "337495840", "from_user_name": "Zena Beana", "geo": null, "id": 148821735649718270, "id_str": "148821735649718272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702061896/thunderthighz87_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702061896/thunderthighz87_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Them 49th st ole heads b on sum clown shit! The only one who stay the same is @ZEEKFROMWEST", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:21 +0000", "from_user": "HighNights_", "from_user_id": 218775939, "from_user_id_str": "218775939", "from_user_name": "Higher Thinking", "geo": null, "id": 148821734651465730, "id_str": "148821734651465728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1670168559/Snapshot_20111202_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670168559/Snapshot_20111202_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "clown ass mf'ers early this a.m doe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:17 +0000", "from_user": "CoCo_BiTS", "from_user_id": 262824343, "from_user_id_str": "262824343", "from_user_name": "J'adore Corvette\\u2653", "geo": null, "id": 148821720436965380, "id_str": "148821720436965378", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691974870/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691974870/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@Hustlin_Beauty: \\uD83D\\uDE02 RT @CoCo_BiTS: Dior big 5 year old ass tryin to put on a 3-6 month old onesie <\\u201D-- SMDH!...THIS CLOWN I HAVE FOR A KID!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:16 +0000", "from_user": "realchillwill", "from_user_id": 341312134, "from_user_id_str": "341312134", "from_user_name": "Antonio L Williams", "geo": null, "id": 148821714304892930, "id_str": "148821714304892930", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1529864700/2xgF4Y41_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1529864700/2xgF4Y41_normal", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@The_BritPulliam its ok. I wont clown u..... Til tomorrow. Lol", "to_user": "The_BritPulliam", "to_user_id": 24915431, "to_user_id_str": "24915431", "to_user_name": "Brittany Shaynae =)", "in_reply_to_status_id": 148821556955578370, "in_reply_to_status_id_str": "148821556955578368"}, +{"created_at": "Mon, 19 Dec 2011 17:47:16 +0000", "from_user": "HollyWoodHETZ", "from_user_id": 224439235, "from_user_id_str": "224439235", "from_user_name": "Josh Hetz \\u00AE", "geo": null, "id": 148821713587675140, "id_str": "148821713587675136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1617617953/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1617617953/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@marissajoy3 so not everyday this weak then....clown", "to_user": "marissajoy3", "to_user_id": 227344255, "to_user_id_str": "227344255", "to_user_name": "Marissa Kohan ", "in_reply_to_status_id": 148821334070276100, "in_reply_to_status_id_str": "148821334070276096"}, +{"created_at": "Mon, 19 Dec 2011 17:47:15 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148821710014124030, "id_str": "148821710014124032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://bestdealoncybermonday.info" rel="nofollow">bestdealoncybermondaydotinfo</a>", "text": "Discount Halloween Clown Figure-5 Foot Tall Animated Gliding Clown w/Moving http://t.co/XHDIN8ZN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:13 +0000", "from_user": "MikeyReal", "from_user_id": 43567768, "from_user_id_str": "43567768", "from_user_name": "Mike Trend", "geo": null, "id": 148821702799917060, "id_str": "148821702799917056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1532418955/306411_195178890548054_100001678332657_476123_6996479_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1532418955/306411_195178890548054_100001678332657_476123_6996479_n_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:13 +0000", "from_user": "EdSuave", "from_user_id": 29720167, "from_user_id_str": "29720167", "from_user_name": "Eddie Suave", "geo": null, "id": 148821702351126530, "id_str": "148821702351126528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1492868944/profile_image_1313223884253_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1492868944/profile_image_1313223884253_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Lmao clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:10 +0000", "from_user": "AllieKelly_boss", "from_user_id": 257188020, "from_user_id_str": "257188020", "from_user_name": "allie kelly", "geo": null, "id": 148821691349475330, "id_str": "148821691349475329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1581737375/297469_2342422954125_1056504445_32717812_355714659_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1581737375/297469_2342422954125_1056504445_32717812_355714659_n_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @nenapen15: I wish my high school life was like that's so raven's and a skydiving clown would just burst through the classroom window.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:09 +0000", "from_user": "xoXo_dcb23", "from_user_id": 49162455, "from_user_id_str": "49162455", "from_user_name": "donna baca\\uE003\\uE418", "geo": null, "id": 148821687608152060, "id_str": "148821687608152064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674607354/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674607354/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "You got like 5lbs of make-up caked on that face honey! oh wait, i know You must be a #Clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:09 +0000", "from_user": "YoungMoney_FH", "from_user_id": 412437855, "from_user_id_str": "412437855", "from_user_name": "DaTroubleMaker", "geo": null, "id": 148821684806365200, "id_str": "148821684806365185", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682696928/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682696928/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@U_Cant_FuCk_wMe: @YoungMoney_FH lml yu a fuckin clown she really did tho\\u201DI just wanted to kno if it was only me I wasn't tryin to b mean", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:05 +0000", "from_user": "hauskittenkiia", "from_user_id": 265112379, "from_user_id_str": "265112379", "from_user_name": "Kia", "geo": null, "id": 148821668998029300, "id_str": "148821668998029313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698709151/x2_8acd170_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698709151/x2_8acd170_normal.jpeg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@sakinahsanders @VaughnyMcFly Lmfaoo I swear I can't with this man son!! It a clown!!", "to_user": "sakinahsanders", "to_user_id": 20713459, "to_user_id_str": "20713459", "to_user_name": "S. S.", "in_reply_to_status_id": 148799659987570700, "in_reply_to_status_id_str": "148799659987570689"}, +{"created_at": "Mon, 19 Dec 2011 17:47:01 +0000", "from_user": "nemerem", "from_user_id": 117794485, "from_user_id_str": "117794485", "from_user_name": "Chinemerem Alisiobi", "geo": null, "id": 148821653529444350, "id_str": "148821653529444353", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1566216290/IMG-20110918-01004_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566216290/IMG-20110918-01004_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Shattap der! RT @MrRiddiekulus: Dis Nicca seriously feeling fly dressed like a clown... He's definitely igbo #NoOffense...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:55 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148821627575087100, "id_str": "148821627575087104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://bestdealoncybermonday.info" rel="nofollow">bestdealoncybermondaydotinfo</a>", "text": "Sales-priced Halloween Clown Figure-SPAWN series 20 XX VIOLATOR III GORY Variant http://t.co/DXy1Wdk3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:43 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148821576844980220, "id_str": "148821576844980224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://bestdealoncybermonday.info" rel="nofollow">bestdealoncybermondaydotinfo</a>", "text": "Price Comparisons For Halloween Clown Figure-Jack the Jolly Clown Men's Cos http://t.co/buYeh9iB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:42 +0000", "from_user": "Rie_Rackz", "from_user_id": 339910249, "from_user_id_str": "339910249", "from_user_name": "Marie", "geo": null, "id": 148821572168335360, "id_str": "148821572168335360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702501863/D8oEOkLw_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702501863/D8oEOkLw_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Bout to clown for my sis & my big bro birthday yeah we at club RAIN tomorrow fooling", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:34 +0000", "from_user": "afortes41710", "from_user_id": 378616994, "from_user_id_str": "378616994", "from_user_name": "Allen Fortes", "geo": null, "id": 148821540291608580, "id_str": "148821540291608577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:31 +0000", "from_user": "devohijo", "from_user_id": 34087611, "from_user_id_str": "34087611", "from_user_name": "\\u24D3\\u24D4\\u24E5\\u24DE\\u24DD", "geo": null, "id": 148821526140035070, "id_str": "148821526140035073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692055595/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692055595/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @SWAG_KatieJones: Lmfao stfu your a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:26 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148821503864086530, "id_str": "148821503864086528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://bestdealoncybermonday.info" rel="nofollow">bestdealoncybermondaydotinfo</a>", "text": "Get Cheap Halloween Clown Figure-Cult Classics Halloween Evolution of Evil 2-Pac http://t.co/rajk6cRK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:18 +0000", "from_user": "MrStevenYoung", "from_user_id": 67470665, "from_user_id_str": "67470665", "from_user_name": "Steve Muzzleflash", "geo": null, "id": 148821472729763840, "id_str": "148821472729763840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1574493936/steve638s_edit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1574493936/steve638s_edit_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "just saw a guy with droopy baggy pants get out of a car and fall to the ground. Pull up your pants you clown. #ThanksForTheShow LOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:16 +0000", "from_user": "U_Cant_FuCk_wMe", "from_user_id": 242145107, "from_user_id_str": "242145107", "from_user_name": "SimplyyMehh\\u2122", "geo": null, "id": 148821462499852300, "id_str": "148821462499852288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698676401/U_Cant_FuCk_wMe_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698676401/U_Cant_FuCk_wMe_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@YoungMoney_FH lml yu a fuckin clown she really did tho", "to_user": "YoungMoney_FH", "to_user_id": 412437855, "to_user_id_str": "412437855", "to_user_name": "DaTroubleMaker", "in_reply_to_status_id": 148821033636474880, "in_reply_to_status_id_str": "148821033636474880"}, +{"created_at": "Mon, 19 Dec 2011 17:46:13 +0000", "from_user": "LiCK_ME_DRY_", "from_user_id": 413253208, "from_user_id_str": "413253208", "from_user_name": "Sakethia Johnson", "geo": null, "id": 148821450776772600, "id_str": "148821450776772609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680961637/35854_409669454209_693244209_4212950_5898801_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680961637/35854_409669454209_693244209_4212950_5898801_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@jusbchillen @Im_A_Geek_ DATS WHA WE DO WE CLOWN ON EACH OTHA", "to_user": "jusbchillen", "to_user_id": 325655974, "to_user_id_str": "325655974", "to_user_name": "Rashad Pelage", "in_reply_to_status_id": 148820818871336960, "in_reply_to_status_id_str": "148820818871336960"}, +{"created_at": "Mon, 19 Dec 2011 17:46:07 +0000", "from_user": "iHeartRihBrit", "from_user_id": 402246257, "from_user_id_str": "402246257", "from_user_name": "Nancy (RihDaOne)", "geo": null, "id": 148821427208982530, "id_str": "148821427208982528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698919146/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698919146/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "A clown getting arrested -.-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:04 +0000", "from_user": "poorconservativ", "from_user_id": 266488425, "from_user_id_str": "266488425", "from_user_name": "Poor Conservative", "geo": null, "id": 148821414730928130, "id_str": "148821414730928128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1273358204/Tessa___Daddy_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273358204/Tessa___Daddy_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "#Romney The Clown Calls #Gingrich Zany http://t.co/kAPsaqIQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:03 +0000", "from_user": "Bury_Me_Smilin", "from_user_id": 381206429, "from_user_id_str": "381206429", "from_user_name": "M. Rich", "geo": null, "id": 148821407739019260, "id_str": "148821407739019265", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1587262810/7zlC3PcR_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587262810/7zlC3PcR_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@earthtologan why are you worried about another mans twitter? Go somewhere an kill yourself clown! Quit @'n me", "to_user": "earthtologan", "to_user_id": 283330321, "to_user_id_str": "283330321", "to_user_name": "Logan Allred", "in_reply_to_status_id": 148820530605203460, "in_reply_to_status_id_str": "148820530605203456"}, +{"created_at": "Mon, 19 Dec 2011 17:45:58 +0000", "from_user": "MatyLoops", "from_user_id": 283623512, "from_user_id_str": "283623512", "from_user_name": "Mat McWhorter", "geo": null, "id": 148821388633980930, "id_str": "148821388633980930", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1606920705/TWITPIC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606920705/TWITPIC_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@HerdOnESPNRadio also, stop complaining about all the tebow talk when you mention the guys name every two sentences dude. Your clown shoes", "to_user": "HerdOnESPNRadio", "to_user_id": 25432501, "to_user_id_str": "25432501", "to_user_name": "Colin Cowherd"}, +{"created_at": "Mon, 19 Dec 2011 17:45:58 +0000", "from_user": "Rahsaan_MH", "from_user_id": 289758934, "from_user_id_str": "289758934", "from_user_name": "Rahsaan Jackson ", "geo": null, "id": 148821385811210240, "id_str": "148821385811210240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1694300501/331522392_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694300501/331522392_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:54 +0000", "from_user": "DetroitRex", "from_user_id": 137977167, "from_user_id_str": "137977167", "from_user_name": "T-Rell Brooks", "geo": null, "id": 148821372133572600, "id_str": "148821372133572608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1525987417/iD00JN0l_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1525987417/iD00JN0l_normal", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:52 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148821362285359100, "id_str": "148821362285359104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://bestdealoncybermonday.info" rel="nofollow">bestdealoncybermondaydotinfo</a>", "text": "Shopping Cheap Halloween Clown Figure-Halloween Scary Creepy Clown 5' Anima http://t.co/upi6gFmk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:46 +0000", "from_user": "Tdot_Bagley", "from_user_id": 213727290, "from_user_id_str": "213727290", "from_user_name": "Terrell Bagley", "geo": null, "id": 148821337157275650, "id_str": "148821337157275650", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1657450607/330396000_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657450607/330396000_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @FeIstyBRI: this Nasty nigga @Tdot_Bagley burped in my ear!!! \\uD83D\\uDE16 lol clown !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:40 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148821312347975680, "id_str": "148821312347975680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://bestdealoncybermonday.info" rel="nofollow">bestdealoncybermondaydotinfo</a>", "text": "Inexpensive Halloween Clown Figure-Lego Minifigures (Series 1) Cheap http://t.co/Z0WC3PbX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:37 +0000", "from_user": "double0_4life", "from_user_id": 27310833, "from_user_id_str": "27310833", "from_user_name": "Anita Harding", "geo": null, "id": 148821298347380740, "id_str": "148821298347380737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685565088/double0_4life_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685565088/double0_4life_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Waiting! Waiting... F'ing clown!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:33 +0000", "from_user": "_RoxBox", "from_user_id": 47634755, "from_user_id_str": "47634755", "from_user_name": "Roxie S.", "geo": null, "id": 148821282677473280, "id_str": "148821282677473280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1644476253/jkg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644476253/jkg_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "#oomf just called me an ass clown? What's that. Lmao :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:29 +0000", "from_user": "PoohBear_Est92", "from_user_id": 175749612, "from_user_id_str": "175749612", "from_user_name": "Shante'a Foster", "geo": null, "id": 148821266315481100, "id_str": "148821266315481088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1640954935/E2xe1w4m_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640954935/E2xe1w4m_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Lil_Redd_ lol we both gone clown her haha", "to_user": "Lil_Redd_", "to_user_id": 319176226, "to_user_id_str": "319176226", "to_user_name": "Tam Tam", "in_reply_to_status_id": 148820506466983940, "in_reply_to_status_id_str": "148820506466983936"}, +{"created_at": "Mon, 19 Dec 2011 17:45:28 +0000", "from_user": "Mr_THJC", "from_user_id": 91425397, "from_user_id_str": "91425397", "from_user_name": "Tommy 'THJC' Curry", "geo": null, "id": 148821260527345660, "id_str": "148821260527345664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1622721120/LTGLogoNew_png_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622721120/LTGLogoNew_png_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@fourzerotwo yo stealth clown, you and your bum buddies seemed to have fucked up yet another cod game, please talk to @ThunderS7ruck NOW FFS", "to_user": "fourzerotwo", "to_user_id": 3359851, "to_user_id_str": "3359851", "to_user_name": "Robert Bowling"}, +{"created_at": "Mon, 19 Dec 2011 17:45:23 +0000", "from_user": "Octaviakbm", "from_user_id": 440219894, "from_user_id_str": "440219894", "from_user_name": "Octavia Bauerle", "geo": null, "id": 148821240046551040, "id_str": "148821240046551040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700589186/large_0429111309_3__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700589186/large_0429111309_3__normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Clown Costume Child Size T Toddler 3T-4T: http://t.co/Y7vdo8wH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:13 +0000", "from_user": "DREAMYBROWN", "from_user_id": 26530810, "from_user_id_str": "26530810", "from_user_name": "Ms.Toi", "geo": null, "id": 148821198854299650, "id_str": "148821198854299648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1471689552/324370282_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1471689552/324370282_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@MzT63: @DREAMYBROWN Whhhyyy that nigga from FB hit me up today asking if I could hook him up with you.. Smh.. Lmao..\\u201D-WOW! He a CLown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:06 +0000", "from_user": "UponBrokenGlass", "from_user_id": 284296963, "from_user_id_str": "284296963", "from_user_name": " ~\\u2665Tehrica -Taj ~\\u2665", "geo": null, "id": 148821168927948800, "id_str": "148821168927948800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680953729/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680953729/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SmileeAlii: See this heart won't settle down. Like a child running scared from a clown. (8)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:03 +0000", "from_user": "SatchelCharge", "from_user_id": 66148951, "from_user_id_str": "66148951", "from_user_name": "Danny", "geo": null, "id": 148821156131110900, "id_str": "148821156131110912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@senseiwalingh ur a clown son drizzy will murk common just watch", "to_user": "senseiwalingh", "to_user_id": 191419970, "to_user_id_str": "191419970", "to_user_name": "Walingh Akkerman", "in_reply_to_status_id": 148747621677269000, "in_reply_to_status_id_str": "148747621677268992"}, +{"created_at": "Mon, 19 Dec 2011 17:45:00 +0000", "from_user": "mzthicknezz88", "from_user_id": 437250087, "from_user_id_str": "437250087", "from_user_name": "Chella -n- Shae", "geo": null, "id": 148821145947340800, "id_str": "148821145947340801", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694175226/OJSseG1s_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694175226/OJSseG1s_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@BentheReal: @mzthicknezz88 yelp yelp lol!\"lol yhu so silly clown thats y i <3 yhu so much (n mi monica voice)lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:00 +0000", "from_user": "TearDropRed", "from_user_id": 158603684, "from_user_id_str": "158603684", "from_user_name": "LB Butler\\uE023\\uE51E\\uE113", "geo": null, "id": 148821143422369800, "id_str": "148821143422369793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701418626/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701418626/image_normal.jpg", "source": "<a href="http://www.handmark.com" rel="nofollow">TweetCaster for iOS</a>", "text": "RT @AHustlersHeart: #clown lol RT @TearDropRed: Why tf nick cannon got a mixtape out? HA!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:51 +0000", "from_user": "SmileeAlii", "from_user_id": 81723194, "from_user_id_str": "81723194", "from_user_name": "\\u0E04l\\u05D0\\u0E23\\u0E23\\u0E04 \\u05E7\\u0452\\u0E40l\\u0E40\\u05E7", "geo": null, "id": 148821106764152830, "id_str": "148821106764152832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686207066/twitcon1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686207066/twitcon1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "See this heart won't settle down. Like a child running scared from a clown. (8)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:51 +0000", "from_user": "Andersonkid531", "from_user_id": 360375871, "from_user_id_str": "360375871", "from_user_name": "Haters gone hate", "geo": null, "id": 148821104872534000, "id_str": "148821104872534016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679094410/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679094410/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:47 +0000", "from_user": "DopeAzs_Asia", "from_user_id": 430228983, "from_user_id_str": "430228983", "from_user_name": "asia petty", "geo": null, "id": 148821088363741200, "id_str": "148821088363741185", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692536332/3_striks_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692536332/3_striks_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "lmao she a clown.......", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:46 +0000", "from_user": "prettyqirLree", "from_user_id": 208641944, "from_user_id_str": "208641944", "from_user_name": "kaaarimaah GOODMAN ", "geo": null, "id": 148821085373202430, "id_str": "148821085373202432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1655942760/bad_ass_momm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655942760/bad_ass_momm_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Yu fuckin clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:37 +0000", "from_user": "youknowmeyo", "from_user_id": 135640548, "from_user_id_str": "135640548", "from_user_name": "hamvilly ", "geo": null, "id": 148821046655590400, "id_str": "148821046655590400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1666238642/granville_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666238642/granville_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:31 +0000", "from_user": "SittanaRoxx", "from_user_id": 342889498, "from_user_id_str": "342889498", "from_user_name": "sittana roxx", "geo": null, "id": 148821022886461440, "id_str": "148821022886461440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "The Clown (Le Queloune) - YouTube - The Clown (Le Queloune)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:26 +0000", "from_user": "VinnyOlenick", "from_user_id": 281827764, "from_user_id_str": "281827764", "from_user_name": "Vinny Olenick", "geo": null, "id": 148821001420029950, "id_str": "148821001420029952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701543776/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701543776/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:22 +0000", "from_user": "tbuucckk", "from_user_id": 149589052, "from_user_id_str": "149589052", "from_user_name": "Taylor Buckley", "geo": null, "id": 148820984311463940, "id_str": "148820984311463936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697633070/AN9dNrWJ_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697633070/AN9dNrWJ_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I'm sick of people at work tryna clown about me having \"rich\" parents.. stfu if yall would do something with yourself you'd be on that level", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:19 +0000", "from_user": "lickmyKIT_KAT", "from_user_id": 308743324, "from_user_id_str": "308743324", "from_user_name": "IMTHEREALGIRLFRIEND ", "geo": null, "id": 148820973087494140, "id_str": "148820973087494146", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702616665/memee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702616665/memee_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "this boy , tryna fuss with me then he dnt knw how to spell lmao\\nhe a whole clown he needa have a _/ \\nbitchass .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:18 +0000", "from_user": "Connell_vs_life", "from_user_id": 130720426, "from_user_id_str": "130720426", "from_user_name": "Jason Connell", "geo": null, "id": 148820969786585100, "id_str": "148820969786585088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1627125192/Jason-Jump_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627125192/Jason-Jump_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Photo: My friend Tim drives a clown car. http://t.co/gVNgg4Tp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:16 +0000", "from_user": "AHustlersHeart", "from_user_id": 159699606, "from_user_id_str": "159699606", "from_user_name": "Nicole Daley ", "geo": null, "id": 148820958688460800, "id_str": "148820958688460801", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689908378/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689908378/image_normal.jpg", "source": "<a href="http://www.handmark.com" rel="nofollow">TweetCaster for iOS</a>", "text": "#clown lol RT @TearDropRed: Why tf nick cannon got a mixtape out? HA!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:02 +0000", "from_user": "Datboinell", "from_user_id": 185688425, "from_user_id_str": "185688425", "from_user_name": "Nelson tyler ", "geo": null, "id": 148820900345679870, "id_str": "148820900345679872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1232320829/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1232320829/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @barackobussa: #bitchuhit if u a female and u look like homie the clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:55 +0000", "from_user": "project_patFS", "from_user_id": 270466038, "from_user_id_str": "270466038", "from_user_name": "Pat Seymour", "geo": null, "id": 148820872864604160, "id_str": "148820872864604160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1666519382/Photo_on_2011-11-30_at_00.57_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666519382/Photo_on_2011-11-30_at_00.57_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "stop being such a CLOWN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:51 +0000", "from_user": "CaRaMelSeXiBrWn", "from_user_id": 372983388, "from_user_id_str": "372983388", "from_user_name": "BroWnSuGa", "geo": null, "id": 148820855978340350, "id_str": "148820855978340352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679039235/fl2tEz29_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679039235/fl2tEz29_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "All this fuckn make up on.... Lookn like ah straight clown... #Toomuch", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:47 +0000", "from_user": "desichanel", "from_user_id": 28653881, "from_user_id_str": "28653881", "from_user_name": "Desiree[;", "geo": null, "id": 148820840199372800, "id_str": "148820840199372800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1648830447/307192_2171150081761_1337010272_32248584_848376133_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648830447/307192_2171150081761_1337010272_32248584_848376133_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Tweet_Babbii lmfao #clown", "to_user": "Tweet_Babbii", "to_user_id": 28900426, "to_user_id_str": "28900426", "to_user_name": "Tweet Tweet", "in_reply_to_status_id": 148820607121883140, "in_reply_to_status_id_str": "148820607121883137"}, +{"created_at": "Mon, 19 Dec 2011 17:43:44 +0000", "from_user": "J_Gooo", "from_user_id": 190061201, "from_user_id_str": "190061201", "from_user_name": "Josh Gore \\uE010", "geo": null, "id": 148820827691958270, "id_str": "148820827691958272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1655772757/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655772757/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:43 +0000", "from_user": "FATMAN105", "from_user_id": 327795815, "from_user_id_str": "327795815", "from_user_name": "FATMAN", "geo": null, "id": 148820820905558000, "id_str": "148820820905558016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1544933142/IMG_9184_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544933142/IMG_9184_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:37 +0000", "from_user": "msneloms", "from_user_id": 194456774, "from_user_id_str": "194456774", "from_user_name": "willesia shebaneloms", "geo": null, "id": 148820798214373380, "id_str": "148820798214373377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1584341740/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584341740/me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "HYFR...rockin out before i go to work since dex and deon wont be there for me to clown with :(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:36 +0000", "from_user": "maxzuliani23", "from_user_id": 377428362, "from_user_id_str": "377428362", "from_user_name": "Max Zuliani", "geo": null, "id": 148820793072173060, "id_str": "148820793072173056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1672280743/sky_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672280743/sky_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:30 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148820767495299070, "id_str": "148820767495299072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://cybermondaysells.info" rel="nofollow">cybermondaysellsdotinfo</a>", "text": "Price Comparisons Discount Clown Costum-Blue Clown Derby Hat Adult Onsale http://t.co/qjIOB7IT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:30 +0000", "from_user": "uche_mina", "from_user_id": 73383736, "from_user_id_str": "73383736", "from_user_name": "uche onugha", "geo": null, "id": 148820766228615170, "id_str": "148820766228615169", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693199504/DSC00818_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693199504/DSC00818_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "My father is a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:29 +0000", "from_user": "OMCKIE", "from_user_id": 61782520, "from_user_id_str": "61782520", "from_user_name": "Omar", "geo": null, "id": 148820761304502270, "id_str": "148820761304502273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1578753112/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1578753112/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Come on homeboi, you not about that street shit, so stop talkin it... Go join the circus, clown!!! LOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:21 +0000", "from_user": "TraffordEco", "from_user_id": 60615841, "from_user_id_str": "60615841", "from_user_name": "Andrew Leask", "geo": null, "id": 148820729956286460, "id_str": "148820729956286465", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1525559104/Andrew-FinReview_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1525559104/Andrew-FinReview_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@Peston: Chancellor just refused to support EU-only IMF resources increase - so will be no agreement to \\u20AC200bn boost for eurozone\" Clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:20 +0000", "from_user": "_AmorMe", "from_user_id": 221556014, "from_user_id_str": "221556014", "from_user_name": "- monee . \\u2764 ` \\u2764", "geo": null, "id": 148820724830830600, "id_str": "148820724830830592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700750413/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700750413/profile_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@XIIX_MMX lol... I see you clown. Go add me on voxer real quick... sontaa219@yahoo.com", "to_user": "XIIX_MMX", "to_user_id": 283220388, "to_user_id_str": "283220388", "to_user_name": "RichYoung Marc", "in_reply_to_status_id": 148820381879382000, "in_reply_to_status_id_str": "148820381879382019"}, +{"created_at": "Mon, 19 Dec 2011 17:43:20 +0000", "from_user": "mike4626", "from_user_id": 332829420, "from_user_id_str": "332829420", "from_user_name": "Mike", "geo": null, "id": 148820724361076740, "id_str": "148820724361076737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702275587/IMG00071-20110719-1459_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702275587/IMG00071-20110719-1459_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:16 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148820707655155700, "id_str": "148820707655155712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://cybermondaysells.info" rel="nofollow">cybermondaysellsdotinfo</a>", "text": "Compare Discount Clown Costume -Yellow Clown Derby Hat Adult At Usa Store http://t.co/LZk7FV5d", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:16 +0000", "from_user": "engagementbands", "from_user_id": 320338788, "from_user_id_str": "320338788", "from_user_name": "engagementbands", "geo": null, "id": 148820706891796480, "id_str": "148820706891796481", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.wpsyndicator.com" rel="nofollow">WPSyndicator</a>", "text": "http://t.co/nOLCR3r5 Charms - Enamel Clown with Lobster Clasp Sterling Silver Charm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:15 +0000", "from_user": "Who_Corey", "from_user_id": 269477088, "from_user_id_str": "269477088", "from_user_name": "Corey Younker", "geo": null, "id": 148820704593330180, "id_str": "148820704593330176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1493847457/whocorey_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1493847457/whocorey_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 17:43:12 +0000", "from_user": "ILuvGlam101", "from_user_id": 325554900, "from_user_id_str": "325554900", "from_user_name": "EricaTheGlamatician", "geo": null, "id": 148820689997139970, "id_str": "148820689997139968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695763872/idofaces-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695763872/idofaces-1_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "There is a thin line between a Doll Face & a Clown Face #Glam101 #MakeupMonday", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:10 +0000", "from_user": "BaabyItsREAl_xo", "from_user_id": 324652944, "from_user_id_str": "324652944", "from_user_name": "Thick & Light :)", "geo": null, "id": 148820684787822600, "id_str": "148820684787822592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697540942/3N9qquNi_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697540942/3N9qquNi_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "he told tae lmao raymear is really a clown :) #Eataa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:06 +0000", "from_user": "juliacnat", "from_user_id": 307104632, "from_user_id_str": "307104632", "from_user_name": "Julia Natalie", "geo": null, "id": 148820665435291650, "id_str": "148820665435291648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696921055/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696921055/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @CanadianProbz: the clown from Toy Castle that gave you nightmares #canadianprobz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:04 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148820657067655170, "id_str": "148820657067655168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://cybermondaysells.info" rel="nofollow">cybermondaysellsdotinfo</a>", "text": "Explain Discount Clown -Large Clown Face Painting Makeup Set Store Online http://t.co/5UfTVA5d", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:01 +0000", "from_user": "nelinhell", "from_user_id": 20050372, "from_user_id_str": "20050372", "from_user_name": "chanel gandy", "geo": null, "id": 148820645608820740, "id_str": "148820645608820736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1624135065/l_678848e609884da6b82df423f1022ed3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624135065/l_678848e609884da6b82df423f1022ed3_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube videofrom @psychopathic http://t.co/uPDndLj8 Insane Clown Posse - In Yo Face (Juggalo Edition", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:00 +0000", "from_user": "TAYZA8", "from_user_id": 269431920, "from_user_id_str": "269431920", "from_user_name": "Adam Taylor", "geo": null, "id": 148820640571465730, "id_str": "148820640571465728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1538898567/228789_10150170441602795_679882794_6768498_2290750_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538898567/228789_10150170441602795_679882794_6768498_2290750_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@JodieWollacott good, me too :) ....clown <3", "to_user": "JodieWollacott", "to_user_id": 186309282, "to_user_id_str": "186309282", "to_user_name": "Jodie", "in_reply_to_status_id": 148819594025508860, "in_reply_to_status_id_str": "148819594025508864"}, +{"created_at": "Mon, 19 Dec 2011 17:42:59 +0000", "from_user": "Maragotdatloko", "from_user_id": 375910665, "from_user_id_str": "375910665", "from_user_name": "K!77@ CUNT", "geo": null, "id": 148820638814052350, "id_str": "148820638814052353", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692354049/Maragotdatloko_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692354049/Maragotdatloko_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "#LT TRY DAT SHIT NOW CTFU I WILL CLOWN UR THIRSTY ASS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:54 +0000", "from_user": "FemstarYeup", "from_user_id": 162081673, "from_user_id_str": "162081673", "from_user_name": "femi pacman\\u2122", "geo": null, "id": 148820617540534270, "id_str": "148820617540534272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681855774/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681855774/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Miss_Zena loool I don't know the other dude but vic o a stand up guy, the other dude must be some clown tryna make a name for himself. Lol", "to_user": "Miss_Zena", "to_user_id": 187924565, "to_user_id_str": "187924565", "to_user_name": "Zena A", "in_reply_to_status_id": 148810604331810800, "in_reply_to_status_id_str": "148810604331810817"}, +{"created_at": "Mon, 19 Dec 2011 17:42:51 +0000", "from_user": "ErBodyLuvzChris", "from_user_id": 202647258, "from_user_id_str": "202647258", "from_user_name": "\\uE13DCH\\u042FIS\\uE13D", "geo": null, "id": 148820603233767420, "id_str": "148820603233767424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683818368/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683818368/avatar_normal.jpg", "source": "<a href="http://www.tweetings.net/" rel="nofollow">Tweetings for iPhone</a>", "text": "ima clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:51 +0000", "from_user": "MrChanberlain", "from_user_id": 248977953, "from_user_id_str": "248977953", "from_user_name": "Tevin Speed", "geo": null, "id": 148820602164215800, "id_str": "148820602164215808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700610705/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700610705/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:49 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148820596023758850, "id_str": "148820596023758848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://cybermondaysells.info" rel="nofollow">cybermondaysellsdotinfo</a>", "text": "Who Sells The Cheapest Disco-Black Clown Wig Adult Costume Accessory Sale http://t.co/SBlB2KHC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:48 +0000", "from_user": "YouBeChippin", "from_user_id": 226394646, "from_user_id_str": "226394646", "from_user_name": "Allison Chippendale", "geo": null, "id": 148820592991277060, "id_str": "148820592991277056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699393883/webcam-toy-photo48_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699393883/webcam-toy-photo48_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "I always used to cry when I laughed, then I got raped by a clown #ironic", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:43 +0000", "from_user": "DAREALDJQ2WM", "from_user_id": 157456052, "from_user_id_str": "157456052", "from_user_name": "Quentin DJ Q", "geo": null, "id": 148820569385742340, "id_str": "148820569385742336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680516167/IMG_20111208_024210_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680516167/IMG_20111208_024210_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "@Ingenious_HILL hell yea they call it Sherm where im from lol I done scene how them niggas clown when they be on it too.", "to_user": "Ingenious_HILL", "to_user_id": 113137533, "to_user_id_str": "113137533", "to_user_name": "Smokey", "in_reply_to_status_id": 148819868962136060, "in_reply_to_status_id_str": "148819868962136064"}, +{"created_at": "Mon, 19 Dec 2011 17:42:42 +0000", "from_user": "_SimplyKris", "from_user_id": 136843458, "from_user_id_str": "136843458", "from_user_name": "Lovely Lady", "geo": null, "id": 148820564482596860, "id_str": "148820564482596864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702361828/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702361828/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@J_Naturale your a clown why!?? Lol", "to_user": "J_Naturale", "to_user_id": 308225099, "to_user_id_str": "308225099", "to_user_name": "Jessica Alexandre", "in_reply_to_status_id": 148818316365013000, "in_reply_to_status_id_str": "148818316365012992"}, +{"created_at": "Mon, 19 Dec 2011 17:42:39 +0000", "from_user": "x_DarlinJass", "from_user_id": 39362592, "from_user_id_str": "39362592", "from_user_name": "Jasmine", "geo": null, "id": 148820552172318720, "id_str": "148820552172318721", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687781610/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687781610/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@JoeBat92: @x_DarlinJass so look how you wanna clown !?\\u201D Lol don't take it personal. Call it um.........help ;D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:36 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148820540495364100, "id_str": "148820540495364096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://cybermondaysells.info" rel="nofollow">cybermondaysellsdotinfo</a>", "text": "Who Sells The Cheapest Discount Clown Costume Accessories-Clssory Buy Now http://t.co/G9F2jekX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:30 +0000", "from_user": "NUT_23", "from_user_id": 343115648, "from_user_id_str": "343115648", "from_user_name": "Jose Martinez", "geo": null, "id": 148820515883204600, "id_str": "148820515883204608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1462950102/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1462950102/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:30 +0000", "from_user": "itsDroll", "from_user_id": 220918188, "from_user_id_str": "220918188", "from_user_name": "DYL\\u0394N", "geo": null, "id": 148820513446301700, "id_str": "148820513446301698", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1676673230/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676673230/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:25 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148820495352070140, "id_str": "148820495352070144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://cybermondaysells.info" rel="nofollow">cybermondaysellsdotinfo</a>", "text": "Review Discount Clown Costu-Dots the Clown Adult Costume At Lowest Prices http://t.co/TzzK4CxE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:20 +0000", "from_user": "WishUponnA_STAR", "from_user_id": 260473356, "from_user_id_str": "260473356", "from_user_name": "Dec.30 is Star day(:", "geo": null, "id": 148820472392454140, "id_str": "148820472392454144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687458327/100MEDIA_IMAG0216_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687458327/100MEDIA_IMAG0216_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Girl, dee really is a clown, lmaoo.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:13 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148820443661475840, "id_str": "148820443661475841", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://cybermondaysells.info" rel="nofollow">cybermondaysellsdotinfo</a>", "text": "Price Comparisons For Discount Clown -Cutie Pie Clown Adult Wig Comparison http://t.co/zsp8IXqZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:07 +0000", "from_user": "merk__22", "from_user_id": 363367721, "from_user_id_str": "363367721", "from_user_name": "Merrick Ardoin", "geo": null, "id": 148820419883962370, "id_str": "148820419883962369", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1618003349/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618003349/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Actin the clown at work with @JBRodrigue_42 #dickinthebootyrootypootyasstree", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:03 +0000", "from_user": "janel_monae", "from_user_id": 215995827, "from_user_id_str": "215995827", "from_user_name": "Janel Calame", "geo": null, "id": 148820401793933300, "id_str": "148820401793933313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699477234/1n0N2F1F_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699477234/1n0N2F1F_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I swear this place unda clown management.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:03 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148820401340940300, "id_str": "148820401340940291", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://cybermondaysells.info" rel="nofollow">cybermondaysellsdotinfo</a>", "text": "Frugal Discount Clown Costume Accessories-Costume Accessory Compare Prices http://t.co/3C1snzrK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:57 +0000", "from_user": "nenapen15", "from_user_id": 256124293, "from_user_id_str": "256124293", "from_user_name": "Nena Pen", "geo": null, "id": 148820377898979330, "id_str": "148820377898979329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1664996550/peuf_20111129_5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664996550/peuf_20111129_5_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "I wish my high school life was like that's so raven's and a skydiving clown would just burst through the classroom window.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:54 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148820366352056320, "id_str": "148820366352056321", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://cybermondaysells.info" rel="nofollow">cybermondaysellsdotinfo</a>", "text": "Who Sells Discount Clown Costume Accessories-Jumbo Clown Scissors On Line http://t.co/wb6T4BV1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:51 +0000", "from_user": "PoisonPenBK", "from_user_id": 25033489, "from_user_id_str": "25033489", "from_user_name": "Poison Pen", "geo": null, "id": 148820353664299000, "id_str": "148820353664299009", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/108255789/PoisenPen_032209_134lr_alt_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/108255789/PoisenPen_032209_134lr_alt_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MATHHOFFA: #Suckas see u n say 1 thing... then jump infront a camera n say another... thats why i cant fuck wit these clown ass battle niggas...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:48 +0000", "from_user": "TheGorester", "from_user_id": 23859015, "from_user_id_str": "23859015", "from_user_name": "Kyle Gorry", "geo": null, "id": 148820338426392580, "id_str": "148820338426392577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1284092681/Photo_on_2011-03-23_at_14.12_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1284092681/Photo_on_2011-03-23_at_14.12_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Insane Clown Posse. No Hits. Deep tracks only. None of that \"Miracles\" crap.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:41 +0000", "from_user": "Rawr_KenRose", "from_user_id": 310625291, "from_user_id_str": "310625291", "from_user_name": "KennedyRose \\u2020", "geo": null, "id": 148820308034453500, "id_str": "148820308034453504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697931587/photo__9__normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697931587/photo__9__normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Malik is forever a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:40 +0000", "from_user": "KrYz_SToNE", "from_user_id": 64033130, "from_user_id_str": "64033130", "from_user_name": "KrYz", "geo": null, "id": 148820305924730880, "id_str": "148820305924730882", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1674490608/330925380_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674490608/330925380_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Coworker has me crying she is a clown...what would my day be like wit out Her!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:39 +0000", "from_user": "Capenbt", "from_user_id": 395401285, "from_user_id_str": "395401285", "from_user_name": "Man Capen", "geo": null, "id": 148820301927559170, "id_str": "148820301927559168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1599625644/MFC-3716_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599625644/MFC-3716_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Christmas Stories: Morris's Disappearing Bag/The Clown of God/Max's Christmas/The Little Drummer Boy: http://t.co/ENSH7zku", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:39 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148820301793341440, "id_str": "148820301793341440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://cybermondaysells.info" rel="nofollow">cybermondaysellsdotinfo</a>", "text": "Reasonable Priced Discount Clown Co-Red Clown Derby Hat Adult Online Store http://t.co/xwu2rDU7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:39 +0000", "from_user": "JoeBat92", "from_user_id": 317983472, "from_user_id_str": "317983472", "from_user_name": "Joseph Batiste", "geo": null, "id": 148820301201932300, "id_str": "148820301201932288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1652891107/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652891107/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@x_DarlinJass so look how you wanna clown !?", "to_user": "x_DarlinJass", "to_user_id": 39362592, "to_user_id_str": "39362592", "to_user_name": "Jasmine", "in_reply_to_status_id": 148820179575521280, "in_reply_to_status_id_str": "148820179575521282"}, +{"created_at": "Mon, 19 Dec 2011 17:41:39 +0000", "from_user": "Mackmaynee", "from_user_id": 265550126, "from_user_id_str": "265550126", "from_user_name": "Mack Levi", "geo": null, "id": 148820300065292300, "id_str": "148820300065292288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1674570374/Mackmaynee1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674570374/Mackmaynee1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@_PrettyWomann Lmaooo ! Lemme Find Out. You Be On That Shit. Ima CLOWN Yo Ass Next Time I See You! Lol", "to_user": "_PrettyWomann", "to_user_id": 244695577, "to_user_id_str": "244695577", "to_user_name": "Aja' ", "in_reply_to_status_id": 148819899471503360, "in_reply_to_status_id_str": "148819899471503360"}, +{"created_at": "Mon, 19 Dec 2011 17:41:38 +0000", "from_user": "AdamPastie", "from_user_id": 142630325, "from_user_id_str": "142630325", "from_user_name": "Adam James Davies", "geo": null, "id": 148820295896137730, "id_str": "148820295896137728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690998401/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690998401/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@zakmain get involved with us you clown! Train up get it proper going! Then have a gander round head back then sankeys, haven't got 1 yet, u", "to_user": "zakmain", "to_user_id": 246542808, "to_user_id_str": "246542808", "to_user_name": "zak main", "in_reply_to_status_id": 148819619220701200, "in_reply_to_status_id_str": "148819619220701186"}, +{"created_at": "Mon, 19 Dec 2011 17:41:37 +0000", "from_user": "Irresistble_Tee", "from_user_id": 250352627, "from_user_id_str": "250352627", "from_user_name": "Na'Tonia Sijuwade", "geo": null, "id": 148820291727003650, "id_str": "148820291727003649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701216588/THAT_BiSHHGSGASS_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701216588/THAT_BiSHHGSGASS_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "* iHate A Clown Ass Nicca", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:29 +0000", "from_user": "MylesRiveraa", "from_user_id": 350118827, "from_user_id_str": "350118827", "from_user_name": "Myles Rivera", "geo": null, "id": 148820258151608320, "id_str": "148820258151608320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686320100/2oMtjq86_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686320100/2oMtjq86_normal", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": ".......... RT @MarMannnnn ........ RT @whiteboytatted Yall clown ass dudes with these mohawks and (cont) http://t.co/dEqkNddb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:28 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148820254078939140, "id_str": "148820254078939136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://cybermondaysells.info" rel="nofollow">cybermondaysellsdotinfo</a>", "text": "Best Buy Cheap Discount Clown Costume Accessories-Red Yellow Clown Shoes A http://t.co/8B7lzQpd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:16 +0000", "from_user": "sarahfergusonX", "from_user_id": 180833674, "from_user_id_str": "180833674", "from_user_name": "Sarah Ferguson", "geo": null, "id": 148820206221926400, "id_str": "148820206221926400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1625185419/sarahfergusonX_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1625185419/sarahfergusonX_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Chandler- I may be able to get on board with the big boobs but the giant ass and the big clown feet!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:13 +0000", "from_user": "xxJanette", "from_user_id": 251664189, "from_user_id_str": "251664189", "from_user_name": "Janette \\u2665", "geo": null, "id": 148820192393310200, "id_str": "148820192393310208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1678875649/Menno_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678875649/Menno_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Ik word later clown xdddddd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:08 +0000", "from_user": "_rachelleeeee", "from_user_id": 283219204, "from_user_id_str": "283219204", "from_user_name": "FreeCharles&Tory", "geo": null, "id": 148820171702804480, "id_str": "148820171702804480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1676507230/HOiJdJ6W_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676507230/HOiJdJ6W_normal", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Santana A Whole Clown .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:05 +0000", "from_user": "RealPrettySelf", "from_user_id": 309149239, "from_user_id_str": "309149239", "from_user_name": "Blessed Shaquan", "geo": null, "id": 148820157245046800, "id_str": "148820157245046784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699474006/2011-12-17_13.40.19_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699474006/2011-12-17_13.40.19_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:51 +0000", "from_user": "MagicCity112", "from_user_id": 291288129, "from_user_id_str": "291288129", "from_user_name": "Tim Simmons", "geo": null, "id": 148820100781314050, "id_str": "148820100781314048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1616298567/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616298567/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:30 +0000", "from_user": "ClaraBoulette", "from_user_id": 334037072, "from_user_id_str": "334037072", "from_user_name": "Navarro Clara", "geo": null, "id": 148820013837586430, "id_str": "148820013837586432", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1597882228/19833_258203846352_671236352_3806091_6410951_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1597882228/19833_258203846352_671236352_3806091_6410951_n_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "Un clown !! @ Chez Flo & Clara http://t.co/MdO1stLj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:29 +0000", "from_user": "PrettyBella17", "from_user_id": 201907607, "from_user_id_str": "201907607", "from_user_name": "Dimpless_18", "geo": null, "id": 148820006879236100, "id_str": "148820006879236096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700657091/iPDoSkft_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700657091/iPDoSkft_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "my mother a CLOWN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:28 +0000", "from_user": "MR_SCOTT22", "from_user_id": 225908795, "from_user_id_str": "225908795", "from_user_name": "Rashadd Scott", "geo": null, "id": 148820003678978050, "id_str": "148820003678978048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675979661/grooves_59_20111121_1596739679_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675979661/grooves_59_20111121_1596739679_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Lame Clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:18 +0000", "from_user": "SlickVick91", "from_user_id": 360865605, "from_user_id_str": "360865605", "from_user_name": "Victor Paredes", "geo": null, "id": 148819959752032260, "id_str": "148819959752032257", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1573082713/Photo139_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1573082713/Photo139_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:10 +0000", "from_user": "Kwaterbakk", "from_user_id": 223611167, "from_user_id_str": "223611167", "from_user_name": "Vincent Coley", "geo": null, "id": 148819928064073730, "id_str": "148819928064073729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679199972/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679199972/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Mr_McNeal lol u kn I see everybody in I.T. Trin to clown lol", "to_user": "Mr_McNeal", "to_user_id": 295317975, "to_user_id_str": "295317975", "to_user_name": "johnny mcneal", "in_reply_to_status_id": 148819481555251200, "in_reply_to_status_id_str": "148819481555251200"}, +{"created_at": "Mon, 19 Dec 2011 17:39:56 +0000", "from_user": "Hola_Doylito", "from_user_id": 29992533, "from_user_id_str": "29992533", "from_user_name": "Your Grandmas BD", "geo": null, "id": 148819870618886140, "id_str": "148819870618886144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1599753870/profile_image_1319219710914_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599753870/profile_image_1319219710914_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:39:54 +0000", "from_user": "BigNoonie21_", "from_user_id": 168345375, "from_user_id_str": "168345375", "from_user_name": "Alton Gobert Jr.", "geo": null, "id": 148819861592739840, "id_str": "148819861592739840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687959639/BigNoonie21__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687959639/BigNoonie21__normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Fuckin right RT @Mocha_DaGoddess: @BigNoonie21_ Lmfao . Noonie , ya ah CLOWN! Gettin money huh cuz ?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:39:50 +0000", "from_user": "cutestplussize", "from_user_id": 214584699, "from_user_id_str": "214584699", "from_user_name": "Nera K.", "geo": null, "id": 148819846073810940, "id_str": "148819846073810944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699487439/20po4V98_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699487439/20po4V98_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "See me i ain't never scared #CLOWN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:39:49 +0000", "from_user": "SignedSANTANA", "from_user_id": 238210670, "from_user_id_str": "238210670", "from_user_name": "Kam \\u01B1 Santana", "geo": null, "id": 148819839568445440, "id_str": "148819839568445440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1635120612/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635120612/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:39:42 +0000", "from_user": "HeDreamOfDena", "from_user_id": 60414556, "from_user_id_str": "60414556", "from_user_name": "Ms. Robinson \\u2122", "geo": null, "id": 148819811328196600, "id_str": "148819811328196608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1640973108/100_1016_crop_crop2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640973108/100_1016_crop_crop2_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Wtf is this clown talkin bout..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:39:34 +0000", "from_user": "billvonachen", "from_user_id": 121660554, "from_user_id_str": "121660554", "from_user_name": "Bill von Achen", "geo": null, "id": 148819778251923460, "id_str": "148819778251923458", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1221376590/avatar_head_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1221376590/avatar_head_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "You know that guttural groan that Krusty the Clown makes whenever something bad happens? I've been doing that a lot today.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:39:31 +0000", "from_user": "thtguy_jonathan", "from_user_id": 147383559, "from_user_id_str": "147383559", "from_user_name": "Jonathan Torres", "geo": null, "id": 148819763924172800, "id_str": "148819763924172800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701120472/OAy1s20d_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701120472/OAy1s20d_normal", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:39:09 +0000", "from_user": "Souljah_Bless", "from_user_id": 160931070, "from_user_id_str": "160931070", "from_user_name": "HotSkull RuffRyder", "geo": null, "id": 148819671829839870, "id_str": "148819671829839873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1630004586/Photo_00044_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630004586/Photo_00044_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Yousayyouwantme but its a clown you want,she nuh have nothin' pon me as a thug star,no gal nuh lucky suh not even if she win the lotto draw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:39:09 +0000", "from_user": "CaLL_Me_SLICKP", "from_user_id": 301128079, "from_user_id_str": "301128079", "from_user_name": "BLOCK\\u2122", "geo": null, "id": 148819671607549950, "id_str": "148819671607549952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1645793656/illphil_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645793656/illphil_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "These clown ass niggas ain't real.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:39:01 +0000", "from_user": "SheikRobinson", "from_user_id": 200773515, "from_user_id_str": "200773515", "from_user_name": "Sheik Robinson", "geo": null, "id": 148819637667242000, "id_str": "148819637667241984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1665041419/Phillies_Celebration__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665041419/Phillies_Celebration__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Stinners Clown just tell me. I'm not working today. Lewis is.", "to_user": "Stinners", "to_user_id": 173212183, "to_user_id_str": "173212183", "to_user_name": "Justin Knosp", "in_reply_to_status_id": 148784337050017800, "in_reply_to_status_id_str": "148784337050017793"}, +{"created_at": "Mon, 19 Dec 2011 17:38:59 +0000", "from_user": "FeIstyBRI", "from_user_id": 167929182, "from_user_id_str": "167929182", "from_user_name": "Briana Elizabeth", "geo": null, "id": 148819628909531140, "id_str": "148819628909531137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695396725/FeIstyBRI_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695396725/FeIstyBRI_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "this Nasty nigga @Tdot_Bagley burped in my ear!!! \\uD83D\\uDE16 lol clown !", "to_user": "Tdot_Bagley", "to_user_id": 213727290, "to_user_id_str": "213727290", "to_user_name": "Terrell Bagley", "in_reply_to_status_id": 148819360465682430, "in_reply_to_status_id_str": "148819360465682432"}, +{"created_at": "Mon, 19 Dec 2011 17:38:57 +0000", "from_user": "NyneDiantre", "from_user_id": 104310695, "from_user_id_str": "104310695", "from_user_name": "Nyne Diantre \\u00A9", "geo": null, "id": 148819620369932300, "id_str": "148819620369932289", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1683682238/256597_196986907018672_100001220922178_588679_5372039_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683682238/256597_196986907018672_100001220922178_588679_5372039_o_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @MELKBebey: @NyneDiantre @Mekkia_diantre @SpawnDiantre mdrrrr je vois...dailleurs @Mekkia_diantre plus jms tu remet la foto du clown elle fait peur.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:38:47 +0000", "from_user": "Nvincible0_o", "from_user_id": 295367290, "from_user_id_str": "295367290", "from_user_name": "Roc Nash", "geo": null, "id": 148819580209467400, "id_str": "148819580209467392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700753317/lCA2E73AD_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700753317/lCA2E73AD_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "dis niggah here a clown @Mr_Takeyobitch_", "to_user": "Mr_Takeyobitch_", "to_user_id": 277212567, "to_user_id_str": "277212567", "to_user_name": "gucci to u bitch", "in_reply_to_status_id": 148818981384503300, "in_reply_to_status_id_str": "148818981384503296"}, +{"created_at": "Mon, 19 Dec 2011 17:38:45 +0000", "from_user": "itsbebeBxTCH", "from_user_id": 55438194, "from_user_id_str": "55438194", "from_user_name": "The Goddess of War \\u2764", "geo": null, "id": 148819573750243330, "id_str": "148819573750243329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1678170667/bianca2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678170667/bianca2_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:38:45 +0000", "from_user": "Angie_Red01", "from_user_id": 254324310, "from_user_id_str": "254324310", "from_user_name": "Angela", "geo": null, "id": 148819572135440400, "id_str": "148819572135440386", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701723656/Angie_Red01_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701723656/Angie_Red01_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@Britstarrx0 Lmao at you #Clown", "to_user": "Britstarrx0", "to_user_id": 65390191, "to_user_id_str": "65390191", "to_user_name": "Brittany Brittany ", "in_reply_to_status_id": 148816723754237950, "in_reply_to_status_id_str": "148816723754237953"}, +{"created_at": "Mon, 19 Dec 2011 17:38:22 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148819473233747970, "id_str": "148819473233747968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://blackfridaycybersales.info" rel="nofollow">blackfridaycybersalesdotinfo</a>", "text": "RG CostumesAdult Clown WigOnly http://t.co/gAvKsQf9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:38:20 +0000", "from_user": "fawlynanjel", "from_user_id": 382915520, "from_user_id_str": "382915520", "from_user_name": "Bridget Herald", "geo": null, "id": 148819464929026050, "id_str": "148819464929026048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1567179778/193655_1677194442414_1014069891_31449299_5270900_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1567179778/193655_1677194442414_1014069891_31449299_5270900_o_normal.jpg", "source": "<a href="http://facebook.fanrank.me" rel="nofollow">Fanrank.me</a>", "text": "Insane Clown Posse been throwing it down for two decades https://t.co/LnGtUtGg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:38:19 +0000", "from_user": "SUPERCEL42", "from_user_id": 196908108, "from_user_id_str": "196908108", "from_user_name": "Marcel Smith", "geo": null, "id": 148819463138066430, "id_str": "148819463138066432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1424057487/champcasa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1424057487/champcasa_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:38:17 +0000", "from_user": "MelodicMelloD", "from_user_id": 48151993, "from_user_id_str": "48151993", "from_user_name": "Justin Ford", "geo": null, "id": 148819454258708480, "id_str": "148819454258708480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1174871663/Justin2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1174871663/Justin2_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@marybehr106 don't clown APS like that! Cool, just hit me. I'm off on Thursday tho", "to_user": "marybehr106", "to_user_id": 149683616, "to_user_id_str": "149683616", "to_user_name": "Padme Amidala", "in_reply_to_status_id": 148817398441582600, "in_reply_to_status_id_str": "148817398441582593"}, +{"created_at": "Mon, 19 Dec 2011 17:38:16 +0000", "from_user": "damooooe", "from_user_id": 33832865, "from_user_id_str": "33832865", "from_user_name": "(day-moe)", "geo": null, "id": 148819449540128770, "id_str": "148819449540128768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700918029/damooooe_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700918029/damooooe_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:38:15 +0000", "from_user": "OhhhSooLovely", "from_user_id": 43589762, "from_user_id_str": "43589762", "from_user_name": "Hannah Montgomery ", "geo": null, "id": 148819447531048960, "id_str": "148819447531048960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1678697272/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678697272/profile_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@ayRow he a clown yo !", "to_user": "ayRow", "to_user_id": 296184191, "to_user_id_str": "296184191", "to_user_name": "Angelica Pickles ", "in_reply_to_status_id": 148819190604775420, "in_reply_to_status_id_str": "148819190604775424"}, +{"created_at": "Mon, 19 Dec 2011 17:38:10 +0000", "from_user": "mdoman31", "from_user_id": 240473106, "from_user_id_str": "240473106", "from_user_name": "Matt Doman", "geo": null, "id": 148819425838108670, "id_str": "148819425838108672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1451755173/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1451755173/image_normal.jpg", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "@jruski23 u almost home u clown", "to_user": "jruski23", "to_user_id": 348777869, "to_user_id_str": "348777869", "to_user_name": "Josh Russo"}, +{"created_at": "Mon, 19 Dec 2011 17:38:06 +0000", "from_user": "Themspriss79", "from_user_id": 109414327, "from_user_id_str": "109414327", "from_user_name": "\\u00AEImmaBoss", "geo": null, "id": 148819406577877000, "id_str": "148819406577876994", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683661473/XeaKFXPC_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683661473/XeaKFXPC_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "You know im's a clown! Had his face in tha place singing Happy Birthday to you!!! Lmao! @KGenean: @Themspriss79 fkxgjsohsibv @ that pic sis\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:38:05 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148819404870787070, "id_str": "148819404870787072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://blackfridaycybersales.info" rel="nofollow">blackfridaycybersalesdotinfo</a>", "text": "RG CostumesChild's Rainbow Clown Wig Costume A..Only $ 12.95 http://t.co/2UnGO0cZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:38:03 +0000", "from_user": "sanndywilsonn", "from_user_id": 291809023, "from_user_id_str": "291809023", "from_user_name": "Sandy Wilson", "geo": null, "id": 148819394452135940, "id_str": "148819394452135937", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1472776383/202877_1162421755_2117336_n__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1472776383/202877_1162421755_2117336_n__1__normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@AidanTGOD hahaa he is a clown.", "to_user": "AidanTGOD", "to_user_id": 188460955, "to_user_id_str": "188460955", "to_user_name": "Aidan Laird"}, +{"created_at": "Mon, 19 Dec 2011 17:38:02 +0000", "from_user": "OllyVickers", "from_user_id": 370604496, "from_user_id_str": "370604496", "from_user_name": "Oliver Twist", "geo": null, "id": 148819393030275070, "id_str": "148819393030275072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701150577/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701150577/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@StuartHolligan haha, when I first heard it I thought he was some clown with his accent. Then heard that. Had to pull it up about 9 times", "to_user": "StuartHolligan", "to_user_id": 350436508, "to_user_id_str": "350436508", "to_user_name": "Stuart Holligan", "in_reply_to_status_id": 148818970143756300, "in_reply_to_status_id_str": "148818970143756288"}, +{"created_at": "Mon, 19 Dec 2011 17:37:55 +0000", "from_user": "Rip_ChuckyDAWG", "from_user_id": 346675184, "from_user_id_str": "346675184", "from_user_name": "\\u24B9\\u262E\\u203D.\\u20AC '", "geo": null, "id": 148819361862393860, "id_str": "148819361862393856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698727301/AgWyAXYCAAAcRr0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698727301/AgWyAXYCAAAcRr0_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @QueThaTruth: I Hate When Niggas Say \"Ion Like Rap Niggas\". Bitch You Rap Just Like Everybody Else Do. Sit Yo Clown Ass Down.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:55 +0000", "from_user": "skinnyjns", "from_user_id": 86468979, "from_user_id_str": "86468979", "from_user_name": "Skinny Jeans", "geo": null, "id": 148819360155312130, "id_str": "148819360155312129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/500354527/skinny-jeans_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/500354527/skinny-jeans_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @Eat_MyKids2011Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:52 +0000", "from_user": "OrdinarySHXT_", "from_user_id": 390767592, "from_user_id_str": "390767592", "from_user_name": "Miyona Andrews .", "geo": null, "id": 148819351334686720, "id_str": "148819351334686720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687021343/PF_01122011210602405_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687021343/PF_01122011210602405_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "had fun with him . he is a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:50 +0000", "from_user": "deadprettypeedi", "from_user_id": 39401102, "from_user_id_str": "39401102", "from_user_name": "Ms Rudy w/ da Booty ", "geo": null, "id": 148819341389991940, "id_str": "148819341389991936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1586935964/Picture_86_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586935964/Picture_86_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Ahaha she is a clown ! \\u00AB@__reddPYT http://t.co/x4swQ2Mc lmfaooo look at what Jamaira has on OMG\\u00BB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:50 +0000", "from_user": "GunZ_NO_RoseZ", "from_user_id": 135310693, "from_user_id_str": "135310693", "from_user_name": "\\u2665Beautiful\\u2665", "geo": null, "id": 148819339108290560, "id_str": "148819339108290561", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695920623/profileImage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695920623/profileImage_normal.jpg", "source": "<a href="http://bit.ly/fVzRUd" rel="nofollow">TwitPal</a>", "text": "I'm untexting u now RT @_CajunBeauty_: @GunZ_NO_RoseZ well yu knew when yu textd me I was gone clown !!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:45 +0000", "from_user": "MoneyYoung", "from_user_id": 27034576, "from_user_id_str": "27034576", "from_user_name": "Dinero Joven\\u2122", "geo": null, "id": 148819319130828800, "id_str": "148819319130828801", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1671343122/330827316_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671343122/330827316_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@JBRobesCeo at all. And use 2 clown like fuck lol", "to_user": "JBRobesCeo", "to_user_id": 48847008, "to_user_id_str": "48847008", "to_user_name": "Bungee", "in_reply_to_status_id": 148819081401864200, "in_reply_to_status_id_str": "148819081401864193"}, +{"created_at": "Mon, 19 Dec 2011 17:37:36 +0000", "from_user": "GOTT_milkk", "from_user_id": 325955661, "from_user_id_str": "325955661", "from_user_name": "\\u2714 Kayla Gott", "geo": null, "id": 148819284221628400, "id_str": "148819284221628416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693807486/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693807486/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:28 +0000", "from_user": "BBAKER1STNLN", "from_user_id": 59946768, "from_user_id_str": "59946768", "from_user_name": "\\u2665\\u2661BBAKER\\u2665\\u2661", "geo": null, "id": 148819246783266800, "id_str": "148819246783266817", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1634842987/206800_10150145997817800_533097799_6792637_5338884_n_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634842987/206800_10150145997817800_533097799_6792637_5338884_n_normal.jpeg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Lmao this clown say anything", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:25 +0000", "from_user": "MyLifeAsLuz_", "from_user_id": 202951107, "from_user_id_str": "202951107", "from_user_name": "Luz Gee (;", "geo": null, "id": 148819236272357380, "id_str": "148819236272357377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1417724701/0628111253_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1417724701/0628111253_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "#Andy lol RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:24 +0000", "from_user": "scott_norman24", "from_user_id": 239780086, "from_user_id_str": "239780086", "from_user_name": "scott norman", "geo": null, "id": 148819232040304640, "id_str": "148819232040304642", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700868386/IMG00846-20111218-2050_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700868386/IMG00846-20111218-2050_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Will some tell this CLOWN @leepaynee that there's 31 days in December #ediottttt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:22 +0000", "from_user": "ibeJusDeejay", "from_user_id": 35406136, "from_user_id_str": "35406136", "from_user_name": "Joe Blowit so HIGH", "geo": null, "id": 148819224129843200, "id_str": "148819224129843200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1661308602/no_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661308602/no_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @QueThaTruth: I Hate When Niggas Say \"Ion Like Rap Niggas\". Bitch You Rap Just Like Everybody Else Do. Sit Yo Clown Ass Down.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:21 +0000", "from_user": "Macquarrieysq", "from_user_id": 395410947, "from_user_id_str": "395410947", "from_user_name": "Eufemia Macquarrie", "geo": null, "id": 148819217397985280, "id_str": "148819217397985281", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1599647907/MFC-1129_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599647907/MFC-1129_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Insane Clown Posse - T-shirts - Band XX-Large: http://t.co/r9xyiasQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:20 +0000", "from_user": "Lachatrnq", "from_user_id": 395388304, "from_user_id_str": "395388304", "from_user_name": "Myrta Lachat", "geo": null, "id": 148819214113849340, "id_str": "148819214113849344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1599594128/MFC-1260_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599594128/MFC-1260_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Insane Clown Posse - T-shirts - Band XX-Large: http://t.co/Luce7MBx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:19 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148819212855541760, "id_str": "148819212855541760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://blackfridaycybersales.info" rel="nofollow">blackfridaycybersalesdotinfo</a>", "text": "Library ImagesClaude Renoir in a clown costume, 1..Only $ 196.93 http://t.co/vT5QUSF7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:08 +0000", "from_user": "LMONEYYYY", "from_user_id": 380450249, "from_user_id_str": "380450249", "from_user_name": "x_x", "geo": null, "id": 148819164331651070, "id_str": "148819164331651072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1683457923/ll_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683457923/ll_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:07 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148819160095404030, "id_str": "148819160095404033", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://blackfridaycybersales.info" rel="nofollow">blackfridaycybersalesdotinfo</a>", "text": "Library ImagesClaude Renoir in a clown costume, 1..Only $ 150.70 http://t.co/oBASz9ej", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:36:57 +0000", "from_user": "buck_killertant", "from_user_id": 435088285, "from_user_id_str": "435088285", "from_user_name": "Rick Tant", "geo": null, "id": 148819120836710400, "id_str": "148819120836710400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1689321571/DU_14_1024x768_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689321571/DU_14_1024x768_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:36:50 +0000", "from_user": "Eat_MyKids", "from_user_id": 232607189, "from_user_id_str": "232607189", "from_user_name": "M\\u25B2tthew $\\u25B2nt\\u25B2n\\u25B2", "geo": null, "id": 148819091090714620, "id_str": "148819091090714624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1692098244/1O96eopX_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692098244/1O96eopX_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:36:50 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148819088817405950, "id_str": "148819088817405952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://blackfridaycybersales.info" rel="nofollow">blackfridaycybersalesdotinfo</a>", "text": "RG CostumesToddler Baby Clown Costume Size (2-..Only $ 19.95 http://t.co/CJ9QDjZ4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:36:43 +0000", "from_user": "Jea_made", "from_user_id": 414896022, "from_user_id_str": "414896022", "from_user_name": "Taylor made", "geo": null, "id": 148819060661039100, "id_str": "148819060661039104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690492318/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690492318/image_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">twidroyd</a>", "text": "RT @porshay901 \\u201C@Jea_made: So stand dwn looking like a made up clown\\u201D<~ she mus talking shit << wys", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:36:37 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148819033356120060, "id_str": "148819033356120065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://blackfridaycybersales.info" rel="nofollow">blackfridaycybersalesdotinfo</a>", "text": "RG CostumesInfant Baby Clown Costume Size Infa..Only $ 19.95 http://t.co/IaOWT6Cp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:36:33 +0000", "from_user": "RHIneeVeluable", "from_user_id": 177677035, "from_user_id_str": "177677035", "from_user_name": "Rhi'Nee \\uE32D\\uE011& \\uE057", "geo": null, "id": 148819017451307000, "id_str": "148819017451307009", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1654678817/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654678817/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@XOXO_JUICYfruit: @MARK_Excellence @rhineeveluable well twitter, I got \\uE313 like I was \\uE10C last\\uE04C... W/ a LONGGGGGG \\uE34A HA\\uE337\\u201D\\uE412\\uE412\\uE412\\uE412\\uE412 you a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:36:33 +0000", "from_user": "ThickAssCandie", "from_user_id": 275064668, "from_user_id_str": "275064668", "from_user_name": "CodeName: Boo\\u2122 ", "geo": null, "id": 148819017426149380, "id_str": "148819017426149376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693876992/Snapshot_20111214_8_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693876992/Snapshot_20111214_8_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "S/O to the fat bitch that just called ME fat! Lmfao CLOWN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:36:29 +0000", "from_user": "_CajunBeauty_", "from_user_id": 130660328, "from_user_id_str": "130660328", "from_user_name": "theREAL HER\\u262E", "geo": null, "id": 148819000242094080, "id_str": "148819000242094080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696541642/profileImage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696541642/profileImage_normal.jpg", "source": "<a href="http://bit.ly/fVzRUd" rel="nofollow">TwitPal</a>", "text": "@GunZ_NO_RoseZ well yu knew when yu textd me I was gone clown !!", "to_user": "GunZ_NO_RoseZ", "to_user_id": 135310693, "to_user_id_str": "135310693", "to_user_name": "\\u2665Beautiful\\u2665", "in_reply_to_status_id": 148818704841445380, "in_reply_to_status_id_str": "148818704841445376"}, +{"created_at": "Mon, 19 Dec 2011 17:36:27 +0000", "from_user": "Trei_8thegreat", "from_user_id": 126478496, "from_user_id_str": "126478496", "from_user_name": "Trei Kelley", "geo": null, "id": 148818994860802050, "id_str": "148818994860802048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1656568936/football_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656568936/football_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:36:17 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148818949096747000, "id_str": "148818949096747008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://blackfridaycybersales.info" rel="nofollow">blackfridaycybersalesdotinfo</a>", "text": "DisneyClown Costume - Disney JoJo's Circu..Only $ 22.88 http://t.co/2z8Vl9yG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 17:36:00 +0000", "from_user": "DRU_D33ZY", "from_user_id": 397125841, "from_user_id_str": "397125841", "from_user_name": "Drew ", "geo": null, "id": 148818880062697470, "id_str": "148818880062697473", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702051638/qFgnnmgP_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702051638/qFgnnmgP_normal", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:35:51 +0000", "from_user": "Najee113_116th", "from_user_id": 163306938, "from_user_id_str": "163306938", "from_user_name": "LODNS", "geo": null, "id": 148818840040640500, "id_str": "148818840040640514", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1663844511/187681_100001502487911_3691310_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663844511/187681_100001502487911_3691310_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Niggas Is So Fucking Funny with There Imagination Its Something New Everyday I tell You Man. I cant Help BVut Laugh At Clown Ass People Man", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:35:44 +0000", "from_user": "B_Harttt", "from_user_id": 299430868, "from_user_id_str": "299430868", "from_user_name": "Bret Hart", "geo": null, "id": 148818814589607940, "id_str": "148818814589607938", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691913869/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691913869/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Woop woop the sound of the clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:35:42 +0000", "from_user": "LuckyLeftyCT", "from_user_id": 184905602, "from_user_id_str": "184905602", "from_user_name": "Lefty", "geo": null, "id": 148818804460359680, "id_str": "148818804460359680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1648616202/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648616202/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "rappers guilty\\u201C@whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:35:40 +0000", "from_user": "Tracyx2", "from_user_id": 24909922, "from_user_id_str": "24909922", "from_user_name": "T-Mac ", "geo": null, "id": 148818796185002000, "id_str": "148818796185001984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1659180329/Tracyx2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659180329/Tracyx2_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "A man that really has it doesn't feel need to tell you about it in hopes you'll like him more. #Clown \\uD83D\\uDD28\\uD83D\\uDD28\\uD83D\\uDD28 @ItsButtaBabie", "to_user": "ItsButtaBabie", "to_user_id": 61315597, "to_user_id_str": "61315597", "to_user_name": "Chantal ", "in_reply_to_status_id": 148816126422429700, "in_reply_to_status_id_str": "148816126422429696"}, +{"created_at": "Mon, 19 Dec 2011 17:35:28 +0000", "from_user": "KishKish09", "from_user_id": 27077888, "from_user_id_str": "27077888", "from_user_name": "KishKish", "geo": null, "id": 148818744767021060, "id_str": "148818744767021056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1666906109/330690707_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666906109/330690707_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "'U look like some1 I know'. SYAD Clown. Delete delete delete", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:35:27 +0000", "from_user": "annabellagrant", "from_user_id": 42501366, "from_user_id_str": "42501366", "from_user_name": "AnnaBella Grant", "geo": null, "id": 148818740195246080, "id_str": "148818740195246082", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1623754476/Anna_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1623754476/Anna_2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @BitchyBrunette: What is that you're wearing? Calvin Clown? #BitchyBrunette", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:35:19 +0000", "from_user": "porshay901", "from_user_id": 339467816, "from_user_id_str": "339467816", "from_user_name": "shay jones", "geo": null, "id": 148818705659342850, "id_str": "148818705659342848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701853401/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701853401/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@Jea_made: So stand dwn looking like a made up clown\\u201D<~ she mus talking shit", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:35:08 +0000", "from_user": "JAYs310", "from_user_id": 56278270, "from_user_id_str": "56278270", "from_user_name": "Jeffrey Jordan", "geo": null, "id": 148818663439474700, "id_str": "148818663439474688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688475430/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688475430/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@JimLeeCals: Lmao clown ass dude on my TL Aww man\\u201D @ him", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:35:07 +0000", "from_user": "LebronTAY_James", "from_user_id": 194397674, "from_user_id_str": "194397674", "from_user_name": "Antasia Howard", "geo": null, "id": 148818655545798660, "id_str": "148818655545798656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702613551/LebronTAY_James_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702613551/LebronTAY_James_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Everybody keeps saying clown fish are suppose to be funny lmaooooooooo , NO they are NOT !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:35:02 +0000", "from_user": "Gallery4N5", "from_user_id": 277674273, "from_user_id_str": "277674273", "from_user_name": "Gallery 4N5", "geo": null, "id": 148818637552230400, "id_str": "148818637552230400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1563992071/Screen_shot_2011-09-28_at_8.41.04_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1563992071/Screen_shot_2011-09-28_at_8.41.04_AM_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Gallery 4N5 Artist of the Day: Tiziano Tornatore. Titled: The Emotionless Clown, mixed media.... http://t.co/EcvzdWkS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:57 +0000", "from_user": "k_k_k_k_kevin", "from_user_id": 74779561, "from_user_id_str": "74779561", "from_user_name": "Kevin Liang", "geo": null, "id": 148818613686644740, "id_str": "148818613686644736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696853410/329761_10150416649541651_667141650_8793635_1559665848_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696853410/329761_10150416649541651_667141650_8793635_1559665848_o_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@icecreamTERESA i'm a clown", "to_user": "icecreamTERESA", "to_user_id": 265043716, "to_user_id_str": "265043716", "to_user_name": "Teresa \\u2665", "in_reply_to_status_id": 148817933500559360, "in_reply_to_status_id_str": "148817933500559362"}, +{"created_at": "Mon, 19 Dec 2011 17:34:52 +0000", "from_user": "kAPtAin_KrAve20", "from_user_id": 150055985, "from_user_id_str": "150055985", "from_user_name": "KPM", "geo": null, "id": 148818595781152770, "id_str": "148818595781152768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689660087/me_2___normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689660087/me_2___normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@YearoftheDay I thought u were slick trying to clown me like, \"tf are u tlkn about krave? let me go back to sleep on tht one\" lol!", "to_user": "YearoftheDay", "to_user_id": 49036219, "to_user_id_str": "49036219", "to_user_name": "Day-Kno", "in_reply_to_status_id": 148676126288519170, "in_reply_to_status_id_str": "148676126288519169"}, +{"created_at": "Mon, 19 Dec 2011 17:34:44 +0000", "from_user": "Cherriexzx", "from_user_id": 431725159, "from_user_id_str": "431725159", "from_user_name": "Cherrie Torp", "geo": null, "id": 148818561870209020, "id_str": "148818561870209024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681082629/uzewqr3xuu_135627912_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681082629/uzewqr3xuu_135627912_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Giggles The Clown Creature Reacher Costume - Adult Standard: http://t.co/lYY7RS1I", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:42 +0000", "from_user": "mad_focused88", "from_user_id": 264006180, "from_user_id_str": "264006180", "from_user_name": "Ty Eaddy", "geo": null, "id": 148818552307187700, "id_str": "148818552307187712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1582287062/Image15_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1582287062/Image15_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Maaan my Aunt Bae Bae is a clown.. Got me dying ova here...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:36 +0000", "from_user": "TheRyanReeves", "from_user_id": 66169589, "from_user_id_str": "66169589", "from_user_name": "Ryan Reeves\\u2122", "geo": null, "id": 148818528563245060, "id_str": "148818528563245056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687119546/TheRyanReeves_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687119546/TheRyanReeves_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:36 +0000", "from_user": "BHUNT_3", "from_user_id": 271834514, "from_user_id_str": "271834514", "from_user_name": "Brandon Hunter", "geo": null, "id": 148818526826807300, "id_str": "148818526826807296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1624877326/IMG_0336_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624877326/IMG_0336_normal.JPG", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@outcheavilleUSA haha I was like this damn clown..yu did that to a couple ppl I've seen lmfao", "to_user": "outcheavilleUSA", "to_user_id": 34562968, "to_user_id_str": "34562968", "to_user_name": "Butch McRae", "in_reply_to_status_id": 148817615933022200, "in_reply_to_status_id_str": "148817615933022208"}, +{"created_at": "Mon, 19 Dec 2011 17:34:34 +0000", "from_user": "Lil_Redd_", "from_user_id": 319176226, "from_user_id_str": "319176226", "from_user_name": "Tam Tam", "geo": null, "id": 148818518169755650, "id_str": "148818518169755648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1669118854/IMG_0220_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669118854/IMG_0220_normal.JPG", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@PoohBear_Est92 did you get a picture kuz I want to clown ha wen I come down there lol", "to_user": "PoohBear_Est92", "to_user_id": 175749612, "to_user_id_str": "175749612", "to_user_name": "Shante'a Foster", "in_reply_to_status_id": 148817931969630200, "in_reply_to_status_id_str": "148817931969630208"}, +{"created_at": "Mon, 19 Dec 2011 17:34:32 +0000", "from_user": "rachhelcourtney", "from_user_id": 133507552, "from_user_id_str": "133507552", "from_user_name": "Rachel Courtney \\u2665", "geo": null, "id": 148818511307866100, "id_str": "148818511307866112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700687899/snapshot_3__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700687899/snapshot_3__normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Lonnie is such a clown , lmaoo ;D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:30 +0000", "from_user": "ThatShitCLAY_", "from_user_id": 74051026, "from_user_id_str": "74051026", "from_user_name": "Jesse Clay Jr", "geo": null, "id": 148818504164970500, "id_str": "148818504164970496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686052559/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686052559/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@bigdaddybrit_ no you're a clown lol", "to_user": "bigdaddybrit_", "to_user_id": 338199598, "to_user_id_str": "338199598", "to_user_name": "DADDY taught you .", "in_reply_to_status_id": 148818223079501820, "in_reply_to_status_id_str": "148818223079501825"}, +{"created_at": "Mon, 19 Dec 2011 17:34:24 +0000", "from_user": "Kay_Stroke", "from_user_id": 143539178, "from_user_id_str": "143539178", "from_user_name": "Moe Bitches", "geo": null, "id": 148818477665361920, "id_str": "148818477665361921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1634706715/Snapshot_20111107_15_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634706715/Snapshot_20111107_15_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Photo: Class Clown http://t.co/kvHhDQoI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:16 +0000", "from_user": "EthanStevie", "from_user_id": 45106548, "from_user_id_str": "45106548", "from_user_name": "Stevie Ethan", "geo": null, "id": 148818444584886270, "id_str": "148818444584886272", "iso_language_code": "el", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1671972381/DSC_0044yeah_babesmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671972381/DSC_0044yeah_babesmall_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Santa Clown is gonna cum and make you mine.... \\u03C7\\u03B1\\u03C7\\u03B1\\u03C7\\u03B1\\u03C7\\u03B1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:06 +0000", "from_user": "zack_says", "from_user_id": 104966660, "from_user_id_str": "104966660", "from_user_name": "Dr. GreenThumb ", "geo": null, "id": 148818400850874370, "id_str": "148818400850874368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1569779338/twit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1569779338/twit_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:05 +0000", "from_user": "Kathi_x3", "from_user_id": 255064653, "from_user_id_str": "255064653", "from_user_name": "KATHI :*", "geo": null, "id": 148818396740460540, "id_str": "148818396740460544", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689580445/2Ay34P6wa6VT_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689580445/2Ay34P6wa6VT_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u00BBso ist das leben\\u00AB sagte der clown.....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:05 +0000", "from_user": "igallupd", "from_user_id": 19132700, "from_user_id_str": "19132700", "from_user_name": "Ignacio Gallup-Diaz", "geo": null, "id": 148818396534943740, "id_str": "148818396534943745", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/71703897/iguardo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/71703897/iguardo_normal.jpg", "source": "<a href="http://netnewswireapp.com/iphone/" rel="nofollow">NetNewsWire for iPhone</a>", "text": "North Korea Dictator/Clown Dies of \"Fatigue Caused By Train Ride\" [Kim Jong Il] http://t.co/zTEwZCcO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:03 +0000", "from_user": "WinklrSprinklr", "from_user_id": 278104398, "from_user_id_str": "278104398", "from_user_name": "Eric Winkler", "geo": null, "id": 148818390671302660, "id_str": "148818390671302659", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1303456230/0323111558_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1303456230/0323111558_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:00 +0000", "from_user": "DeshawnJr_", "from_user_id": 164372522, "from_user_id_str": "164372522", "from_user_name": "DJ Roberts", "geo": null, "id": 148818376272248830, "id_str": "148818376272248833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689619941/Photo_on_2011-12-12_at_11.02__3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689619941/Photo_on_2011-12-12_at_11.02__3_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@YungSurff lmao your a clown cuh", "to_user": "YungSurff", "to_user_id": 213846093, "to_user_id_str": "213846093", "to_user_name": "Atraeu Brundage ", "in_reply_to_status_id": 148818070209691650, "in_reply_to_status_id_str": "148818070209691648"}, +{"created_at": "Mon, 19 Dec 2011 17:33:57 +0000", "from_user": "JustVeryBlunt", "from_user_id": 156461465, "from_user_id_str": "156461465", "from_user_name": "Ciara R Chapman", "geo": null, "id": 148818361726410750, "id_str": "148818361726410753", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693208343/dorothy-dandridge-e1323627913198_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693208343/dorothy-dandridge-e1323627913198_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "I hear loud stomping and turn around this little girl got on my shoe lol. She is such a clown.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:33:56 +0000", "from_user": "TerraceVerde", "from_user_id": 403038901, "from_user_id_str": "403038901", "from_user_name": "Marsellus Wallace", "geo": null, "id": 148818360543621120, "id_str": "148818360543621120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1692565148/TerraceVerde_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692565148/TerraceVerde_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:33:56 +0000", "from_user": "Wild_butCLASSY", "from_user_id": 156123835, "from_user_id_str": "156123835", "from_user_name": "(; Bee'sTheBOMB :) ", "geo": null, "id": 148818357670510600, "id_str": "148818357670510592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1679900581/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679900581/profile_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Fina star wearing mascara, & eye shadow. Trust, I won't be looking like a clown w/ mines on thoe ..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:33:35 +0000", "from_user": "Luvly_Musiq", "from_user_id": 240426760, "from_user_id_str": "240426760", "from_user_name": "Cedrica Cannon", "geo": null, "id": 148818273381781500, "id_str": "148818273381781504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1662724604/Luvly_Musiq_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662724604/Luvly_Musiq_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Naw I wit tht thts my fav lol \\u201C@JuDeeezz Cee cee n reggie not gonna clown me about me wanting a lunchable\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:33:20 +0000", "from_user": "iGOOGLE_Dassh", "from_user_id": 314328162, "from_user_id_str": "314328162", "from_user_name": "TaJanee Dassh", "geo": null, "id": 148818209523507200, "id_str": "148818209523507200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1672504896/dasshinn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672504896/dasshinn_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "lmao about hi, trying to clown ...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:33:18 +0000", "from_user": "edwardviljoen", "from_user_id": 36567522, "from_user_id_str": "36567522", "from_user_name": "Edward Viljoen", "geo": null, "id": 148818201231376400, "id_str": "148818201231376384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1240607391/49223_533464736_321_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1240607391/49223_533464736_321_q_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "Two cannibals are eating a clown. One says to the other: \"Does this taste funny to you?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:33:16 +0000", "from_user": "WorldChampionZ", "from_user_id": 417574620, "from_user_id_str": "417574620", "from_user_name": "Charlie Zelenoff", "geo": null, "id": 148818192318476300, "id_str": "148818192318476288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694042046/Charlie_Z_The_Goat_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694042046/Charlie_Z_The_Goat_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "vitali klitschko has about the ugliest boxing style ive ever seen its effective against bums. give me a break id kill this clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:33:13 +0000", "from_user": "Lexx_Pexx", "from_user_id": 309245238, "from_user_id_str": "309245238", "from_user_name": "Elexus Hutt", "geo": null, "id": 148818179962056700, "id_str": "148818179962056704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1549417441/039_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1549417441/039_normal.PNG", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "#clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:33:08 +0000", "from_user": "SWAG_KatieJones", "from_user_id": 364065705, "from_user_id_str": "364065705", "from_user_name": "Katie Jones", "geo": null, "id": 148818160311742460, "id_str": "148818160311742466", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702209637/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702209637/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Lmfao stfu your a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:33:02 +0000", "from_user": "AYO_WALLYGzz", "from_user_id": 32307764, "from_user_id_str": "32307764", "from_user_name": "JUUHURR !$!", "geo": null, "id": 148818134713892860, "id_str": "148818134713892865", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695659890/rugby_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695659890/rugby_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "IF U EAT A CLOWN WOULD IT TASTE FUNNY ? LOL #FOODFORTHOUGHT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:50 +0000", "from_user": "deivig12", "from_user_id": 178940590, "from_user_id_str": "178940590", "from_user_name": "Deivi", "geo": null, "id": 148818082809380860, "id_str": "148818082809380864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670303891/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670303891/image_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"@whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:50 +0000", "from_user": "Rye_life", "from_user_id": 210625214, "from_user_id_str": "210625214", "from_user_name": "Rye James SuLlivan ", "geo": null, "id": 148818081353957380, "id_str": "148818081353957376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1629978813/VT819QD2_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629978813/VT819QD2_normal", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:46 +0000", "from_user": "JKingRF", "from_user_id": 28432382, "from_user_id_str": "28432382", "from_user_name": "J-King", "geo": null, "id": 148818067609235460, "id_str": "148818067609235456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1299638723/JKingRF_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1299638723/JKingRF_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "Why these clown ass niggas see me with my iPad 2 n start talking to each other about some Strong Arm Shit #Iwishaniggawould", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:46 +0000", "from_user": "msloorett", "from_user_id": 89600185, "from_user_id_str": "89600185", "from_user_name": "Loretta", "geo": null, "id": 148818064614494200, "id_str": "148818064614494209", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1300380810/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1300380810/profile_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @lookatnitanow: @msloorett y so? [Now u know darn well the clown u dealing w, dnt ask \"y so\"]", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:40 +0000", "from_user": "Doctor_Rx", "from_user_id": 217489561, "from_user_id_str": "217489561", "from_user_name": "Alex Romero", "geo": null, "id": 148818042703446000, "id_str": "148818042703446016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1690739252/ratpacker_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690739252/ratpacker_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "My kids just got kicked out of the Discount Community Clown College. They don't seem to take their discount education seriously. >:(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:36 +0000", "from_user": "MelssPerfeicao", "from_user_id": 358404777, "from_user_id_str": "358404777", "from_user_name": "Melissa Garcia", "geo": null, "id": 148818023963308030, "id_str": "148818023963308033", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685883290/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685883290/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:35 +0000", "from_user": "UHateMsRoyalty", "from_user_id": 25137122, "from_user_id_str": "25137122", "from_user_name": "Ms Carinne Royalty", "geo": null, "id": 148818019412492300, "id_str": "148818019412492289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701434360/331682392_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701434360/331682392_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Lol RT @D_Bodyguard: @UHateMsRoyalty don't worry bout dat clown. U kno if niggas fuckin wit u, yur cuz b down there in a fuckin heart beat.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:33 +0000", "from_user": "kwamDADon", "from_user_id": 60996477, "from_user_id_str": "60996477", "from_user_name": "Kwam THE DON", "geo": null, "id": 148818010700906500, "id_str": "148818010700906496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1661974387/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661974387/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@LoveMe_BEllAD lol clown", "to_user": "LoveMe_BEllAD", "to_user_id": 259471985, "to_user_id_str": "259471985", "to_user_name": "Bella Donna", "in_reply_to_status_id": 148813634636754940, "in_reply_to_status_id_str": "148813634636754944"}, +{"created_at": "Mon, 19 Dec 2011 17:32:31 +0000", "from_user": "BodogUK", "from_user_id": 54927452, "from_user_id_str": "54927452", "from_user_name": "Bodog UK", "geo": null, "id": 148818003935498240, "id_str": "148818003935498244", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1318530844/180x180-logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1318530844/180x180-logo_normal.jpg", "source": "<a href="http://app.net/mypad" rel="nofollow">MyPad for iOS (iPad)</a>", "text": "RT @theboychalloner: @BodogUK that clown could be anyone in the wolves Side !!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:27 +0000", "from_user": "IAmLucyRay", "from_user_id": 162080993, "from_user_id_str": "162080993", "from_user_name": "ERROR LOADING FILE", "geo": null, "id": 148817987586101250, "id_str": "148817987586101248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702219269/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702219269/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:27 +0000", "from_user": "Rozay_SoG", "from_user_id": 59575455, "from_user_id_str": "59575455", "from_user_name": "Gerry Cooper \\u270C", "geo": null, "id": 148817984440385540, "id_str": "148817984440385536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1677518159/2HxN6S3O_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677518159/2HxN6S3O_normal", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:27 +0000", "from_user": "XL_Magnum", "from_user_id": 235616298, "from_user_id_str": "235616298", "from_user_name": "----Magno", "geo": null, "id": 148817984255836160, "id_str": "148817984255836160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1676056258/IMAG0095-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676056258/IMAG0095-1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@whiteboytatted Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:23 +0000", "from_user": "__marrrley", "from_user_id": 286771577, "from_user_id_str": "286771577", "from_user_name": "darynn ..\\u2665", "geo": null, "id": 148817969496080400, "id_str": "148817969496080384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700627868/379428_289997247703979_100000811170723_742143_450542808_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700627868/379428_289997247703979_100000811170723_742143_450542808_n_normal.jpg", "source": "<a href="http://www.htc.com" rel="nofollow">HTC Peep</a>", "text": "Mel is a clown loll .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:17 +0000", "from_user": "Daylinn_Shonuff", "from_user_id": 378386674, "from_user_id_str": "378386674", "from_user_name": "kaya raquel . ", "geo": null, "id": 148817943902425100, "id_str": "148817943902425091", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699574644/registration_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699574644/registration_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@on_MARz_CUS your a clown . Lol", "to_user": "on_MARz_CUS", "to_user_id": 244767098, "to_user_id_str": "244767098", "to_user_name": "Marcus L. Smith", "in_reply_to_status_id": 148816497987436540, "in_reply_to_status_id_str": "148816497987436544"}, +{"created_at": "Mon, 19 Dec 2011 17:32:16 +0000", "from_user": "Hailee_miguel", "from_user_id": 138941328, "from_user_id_str": "138941328", "from_user_name": "Hailee Miguel", "geo": null, "id": 148817939838156800, "id_str": "148817939838156800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691272980/Hailee_miguel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691272980/Hailee_miguel_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "I hate when ppl try and talk dwn to me about football just cuz their a 'guy' My sports knowledge is way better than urs and ill clown u!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:14 +0000", "from_user": "theilladelphian", "from_user_id": 270455992, "from_user_id_str": "270455992", "from_user_name": "Willie Dynamite", "geo": null, "id": 148817932695257100, "id_str": "148817932695257089", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1689211085/5zabPqA3_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689211085/5zabPqA3_normal", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:12 +0000", "from_user": "torii_lovee", "from_user_id": 224024316, "from_user_id_str": "224024316", "from_user_name": "Victoria", "geo": null, "id": 148817925351018500, "id_str": "148817925351018496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1639363182/IMG_4557_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639363182/IMG_4557_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:06 +0000", "from_user": "TrueChamp5", "from_user_id": 281308219, "from_user_id_str": "281308219", "from_user_name": "Stephen Simmons", "geo": null, "id": 148817900013232130, "id_str": "148817900013232128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1432647255/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1432647255/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@fizapirani hahahahaha you're such a #Clown", "to_user": "fizapirani", "to_user_id": 79111942, "to_user_id_str": "79111942", "to_user_name": "Fiza Pirani", "in_reply_to_status_id": 148817194980085760, "in_reply_to_status_id_str": "148817194980085761"}, +{"created_at": "Mon, 19 Dec 2011 17:32:03 +0000", "from_user": "_MayaMariNoodle", "from_user_id": 235338009, "from_user_id_str": "235338009", "from_user_name": "Maya Lewis", "geo": null, "id": 148817885677105150, "id_str": "148817885677105152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691285421/331446106_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691285421/331446106_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "I would sew my vagina up before I ever have sexual intercourse with this clown. Please leave sir.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:00 +0000", "from_user": "CodyGarrett_1", "from_user_id": 386254906, "from_user_id_str": "386254906", "from_user_name": "Cody garrett", "geo": null, "id": 148817874599944200, "id_str": "148817874599944194", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699491685/Picture0098_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699491685/Picture0098_normal.JPG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "This @0samaBinSwaggin is a clown", "to_user": "0samaBinSwaggin", "to_user_id": 347541539, "to_user_id_str": "347541539", "to_user_name": "Kory Diddy", "in_reply_to_status_id": 148817599818506240, "in_reply_to_status_id_str": "148817599818506240"}, +{"created_at": "Mon, 19 Dec 2011 17:31:59 +0000", "from_user": "Dummy2Insane", "from_user_id": 192892045, "from_user_id_str": "192892045", "from_user_name": "DummyDoTatt2s", "geo": null, "id": 148817868375588860, "id_str": "148817868375588864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1678922513/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678922513/profile_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:53 +0000", "from_user": "MikeyBullock", "from_user_id": 90986226, "from_user_id_str": "90986226", "from_user_name": "Michael Bullock", "geo": null, "id": 148817844820377600, "id_str": "148817844820377600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697437257/MikeyBullock_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697437257/MikeyBullock_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:45 +0000", "from_user": "RaysFH", "from_user_id": 37424734, "from_user_id_str": "37424734", "from_user_name": "Ray Beckerman", "geo": null, "id": 148817810825543680, "id_str": "148817810825543680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1122499755/ray_portrait_in_library.jpg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1122499755/ray_portrait_in_library.jpg_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "On the News With Thom Hartmann: The Tea Party Clown Show ~ @truthout http://t.co/TCHqCT0n", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:42 +0000", "from_user": "Tay_Super13ased", "from_user_id": 153645472, "from_user_id_str": "153645472", "from_user_name": "Taylor Young", "geo": null, "id": 148817798796283900, "id_str": "148817798796283905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690352892/IMG_20111210_204316_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690352892/IMG_20111210_204316_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:35 +0000", "from_user": "Cmp_Gunz729", "from_user_id": 336418506, "from_user_id_str": "336418506", "from_user_name": "Corey Perez", "geo": null, "id": 148817769989799940, "id_str": "148817769989799937", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1663338605/PhotoChooser-e40c5892-e8d5-4339-a7f9-2b1128b70b24_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663338605/PhotoChooser-e40c5892-e8d5-4339-a7f9-2b1128b70b24_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:30 +0000", "from_user": "MonstaSimms", "from_user_id": 162897596, "from_user_id_str": "162897596", "from_user_name": "@NateTheGreat", "geo": null, "id": 148817747512533000, "id_str": "148817747512532993", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1512756522/180096_10150390611470613_526815612_17083056_6861318_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1512756522/180096_10150390611470613_526815612_17083056_6861318_n_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:29 +0000", "from_user": "writeinthedark", "from_user_id": 189394392, "from_user_id_str": "189394392", "from_user_name": "LinUnicorn", "geo": null, "id": 148817742189969400, "id_str": "148817742189969408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702348367/331702923_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702348367/331702923_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Ugh fuck you nose ! I look like a clown red nose red cheeks runny nose fak yu T.T", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:27 +0000", "from_user": "Prolem_childd", "from_user_id": 47884391, "from_user_id_str": "47884391", "from_user_name": "Trillahh_ThanABitch!", "geo": null, "id": 148817736687042560, "id_str": "148817736687042560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688778902/trill3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688778902/trill3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "i wannt a a girl , that come just kick it wit a nigga all day , aint gotta fck or nothin , just lay back watch tv and clown..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:27 +0000", "from_user": "Steeven_23", "from_user_id": 299892340, "from_user_id_str": "299892340", "from_user_name": "S T E V E N ! ;D", "geo": null, "id": 148817734078177280, "id_str": "148817734078177281", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680153651/007_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680153651/007_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @WTFitsRONALD: #IWasThatKid that would always be the class clown in elementary .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:26 +0000", "from_user": "trueloveo_O", "from_user_id": 440544116, "from_user_id_str": "440544116", "from_user_name": "Daylanice Smyre", "geo": null, "id": 148817731976826880, "id_str": "148817731976826880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701476849/9194t46s_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701476849/9194t46s_normal", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@whiteboytatted Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:21 +0000", "from_user": "Jeezeeh95", "from_user_id": 267969072, "from_user_id_str": "267969072", "from_user_name": "\\uE12F\\uE335Jeezeeh Milazzo\\uE335\\uE12F", "geo": null, "id": 148817710187413500, "id_str": "148817710187413505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1508030043/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1508030043/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:18 +0000", "from_user": "BITEmyTWEETS___", "from_user_id": 385660244, "from_user_id_str": "385660244", "from_user_name": "\\u2661 T A T Y A N A", "geo": null, "id": 148817697155710980, "id_str": "148817697155710976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691816694/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691816694/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:15 +0000", "from_user": "TyWinfrey", "from_user_id": 146892382, "from_user_id_str": "146892382", "from_user_name": "Ty winfrey", "geo": null, "id": 148817684040134660, "id_str": "148817684040134656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700513175/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700513175/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:02 +0000", "from_user": "Queen_Viv", "from_user_id": 243493308, "from_user_id_str": "243493308", "from_user_name": "Vivian Williams", "geo": null, "id": 148817630227218430, "id_str": "148817630227218433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1649779037/hey_there_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649779037/hey_there_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@_DuRantandRave_ lol ur a clown", "to_user": "_DuRantandRave_", "to_user_id": 70694649, "to_user_id_str": "70694649", "to_user_name": "Mr. Yeah", "in_reply_to_status_id": 148813593113137150, "in_reply_to_status_id_str": "148813593113137152"}, +{"created_at": "Mon, 19 Dec 2011 17:31:02 +0000", "from_user": "_BlaqueDiva", "from_user_id": 222656984, "from_user_id_str": "222656984", "from_user_name": "Ebo", "geo": null, "id": 148817630097178620, "id_str": "148817630097178625", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1645743222/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645743222/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "This broad look like a clown wit this christmas tree hat on", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:00 +0000", "from_user": "_abcderin", "from_user_id": 101246616, "from_user_id_str": "101246616", "from_user_name": "Erin Kimber", "geo": null, "id": 148817622077685760, "id_str": "148817622077685760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694920383/newtwitterthingy_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694920383/newtwitterthingy_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "that clown in fluorescent adolescent scares the shit out of me.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:59 +0000", "from_user": "Kjborntoball", "from_user_id": 391035928, "from_user_id_str": "391035928", "from_user_name": "Kj Justin", "geo": null, "id": 148817615169662980, "id_str": "148817615169662976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1646145491/386648_2045575065558_1429840871_1650277_189615124_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646145491/386648_2045575065558_1429840871_1650277_189615124_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@E92Forever ur a clown", "to_user": "E92Forever", "to_user_id": 294192266, "to_user_id_str": "294192266", "to_user_name": "Jade-Roy Huntington", "in_reply_to_status_id": 148817078084837380, "in_reply_to_status_id_str": "148817078084837376"}, +{"created_at": "Mon, 19 Dec 2011 17:30:51 +0000", "from_user": "STREET_MGB", "from_user_id": 24789034, "from_user_id_str": "24789034", "from_user_name": " $$Midtown- Money $$", "geo": null, "id": 148817584349909000, "id_str": "148817584349908993", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698503257/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698503257/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "if u have on a triple fat goose jacket in 2011 you're a clown!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:38 +0000", "from_user": "VictorLaPara_", "from_user_id": 213980479, "from_user_id_str": "213980479", "from_user_name": "Toxic Crow", "geo": null, "id": 148817527659692030, "id_str": "148817527659692032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698817638/IMG_20111217_141932_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698817638/IMG_20111217_141932_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@DamierGenesis is A Clown For His AVI lol", "to_user": "DamierGenesis", "to_user_id": 128665538, "to_user_id_str": "128665538", "to_user_name": "Domo Fucking Genesis", "in_reply_to_status_id": 148814223424753660, "in_reply_to_status_id_str": "148814223424753665"}, +{"created_at": "Mon, 19 Dec 2011 17:30:33 +0000", "from_user": "SteveJ_Q_", "from_user_id": 433850933, "from_user_id_str": "433850933", "from_user_name": "Stephen Quinn", "geo": null, "id": 148817508437200900, "id_str": "148817508437200896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689806481/gE71lsNO_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689806481/gE71lsNO_normal", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:32 +0000", "from_user": "1COOLFOOL", "from_user_id": 226144059, "from_user_id_str": "226144059", "from_user_name": "\\u00A9D.J.\\u2122", "geo": null, "id": 148817503370485760, "id_str": "148817503370485761", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686193257/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686193257/image_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh \\u00AB--Dick Riders", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:28 +0000", "from_user": "Samy_Tone", "from_user_id": 256179831, "from_user_id_str": "256179831", "from_user_name": "Samy Khattab", "geo": null, "id": 148817485628579840, "id_str": "148817485628579840", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693411359/Samy_Tone_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693411359/Samy_Tone_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@NesrineMcDellal t'es avec un clown???", "to_user": "NesrineMcDellal", "to_user_id": 180040255, "to_user_id_str": "180040255", "to_user_name": "Jacques Nesrine", "in_reply_to_status_id": 148813286362722300, "in_reply_to_status_id_str": "148813286362722304"}, +{"created_at": "Mon, 19 Dec 2011 17:30:26 +0000", "from_user": "WTFitsJanna_", "from_user_id": 178520984, "from_user_id_str": "178520984", "from_user_name": "Janna Parker", "geo": null, "id": 148817480696086530, "id_str": "148817480696086528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702499024/photo_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702499024/photo_normal", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @WTFitsRONALD: #IWasThatKid that would always be the class clown in elementary .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:26 +0000", "from_user": "KouldntCareLess", "from_user_id": 304093555, "from_user_id_str": "304093555", "from_user_name": "Im ME", "geo": null, "id": 148817479760752640, "id_str": "148817479760752640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700826857/390017_234684946594384_100001586410948_652005_306726187_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700826857/390017_234684946594384_100001586410948_652005_306726187_n_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Lmbo &das y u lookin assed out now cuz u a sucka!\\n#clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:24 +0000", "from_user": "Chris_Viking", "from_user_id": 55080057, "from_user_id_str": "55080057", "from_user_name": "Chris Williams", "geo": null, "id": 148817472215203840, "id_str": "148817472215203840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1494052268/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1494052268/image_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Aspinwall... What a clown. How many chances has he had now? #rugbyleague", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:22 +0000", "from_user": "DwezOnTheTrack", "from_user_id": 24343314, "from_user_id_str": "24343314", "from_user_name": "Sean Khin", "geo": null, "id": 148817460655697920, "id_str": "148817460655697920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1626003442/sesa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626003442/sesa_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:18 +0000", "from_user": "therealcpee", "from_user_id": 255660297, "from_user_id_str": "255660297", "from_user_name": "Cp", "geo": null, "id": 148817446176948220, "id_str": "148817446176948224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702437436/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702437436/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:14 +0000", "from_user": "tha_exquisite1", "from_user_id": 108141929, "from_user_id_str": "108141929", "from_user_name": "Esquire", "geo": null, "id": 148817428892225540, "id_str": "148817428892225536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701497822/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701497822/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@D_2cool4skool: I just look like this u clown\\u201D --- Bake ain it? Lol [Baker voice] \"Aye clown, I'm documenting\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:11 +0000", "from_user": "Deejay_ion", "from_user_id": 134994579, "from_user_id_str": "134994579", "from_user_name": "Jimmy Mosqueda", "geo": null, "id": 148817416921690100, "id_str": "148817416921690112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1549321353/facebook_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1549321353/facebook_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:10 +0000", "from_user": "Scandyyy25", "from_user_id": 253225212, "from_user_id_str": "253225212", "from_user_name": "Anthony Scandy \\u2714", "geo": null, "id": 148817412974845950, "id_str": "148817412974845953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692280361/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692280361/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:05 +0000", "from_user": "waoh123", "from_user_id": 100342492, "from_user_id_str": "100342492", "from_user_name": "Johnathan Ramos", "geo": null, "id": 148817392682795000, "id_str": "148817392682795008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1605147688/4nEF24gd_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1605147688/4nEF24gd_normal", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:02 +0000", "from_user": "BallerJC34", "from_user_id": 231142702, "from_user_id_str": "231142702", "from_user_name": "James Jr", "geo": null, "id": 148817378770305020, "id_str": "148817378770305024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1660869612/BallerJC34_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660869612/BallerJC34_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:01 +0000", "from_user": "AC_onMAX", "from_user_id": 51998976, "from_user_id_str": "51998976", "from_user_name": "WILLIE_EARL", "geo": null, "id": 148817373095403520, "id_str": "148817373095403520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702453665/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702453665/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:00 +0000", "from_user": "uLoveMila", "from_user_id": 27260000, "from_user_id_str": "27260000", "from_user_name": "DAMILA", "geo": null, "id": 148817371816140800, "id_str": "148817371816140800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1671744647/uLoveMila_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671744647/uLoveMila_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "\\uD83D\\uDE47\\uD83D\\uDD2B\\uD83D\\uDE02RT @MakeUp_N_MayHeM: But who plays \"act like that\" on somebody voicemail? Tyrese tho? C'mon clown shoes try again", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:00 +0000", "from_user": "alak43", "from_user_id": 71310969, "from_user_id_str": "71310969", "from_user_name": "...", "geo": null, "id": 148817370574630900, "id_str": "148817370574630912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1625825978/327084_10150359287801099_501311098_8413266_389089267_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1625825978/327084_10150359287801099_501311098_8413266_389089267_o_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:00 +0000", "from_user": "BETTY_MARLEY", "from_user_id": 26125015, "from_user_id_str": "26125015", "from_user_name": "BETTY MARLEY-MIYAGI", "geo": null, "id": 148817370218115070, "id_str": "148817370218115072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695911548/BETTY_MARLEY_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695911548/BETTY_MARLEY_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:58 +0000", "from_user": "MissGavanne", "from_user_id": 171956368, "from_user_id_str": "171956368", "from_user_name": "\\uE303Gavanne Davis", "geo": null, "id": 148817361342955520, "id_str": "148817361342955520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700734575/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700734575/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@iGOHAM_Burga: @MissGavanne @KRIS10_Bee yea clown\\u201D yeaa! I'm down!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:56 +0000", "from_user": "TooTrill316", "from_user_id": 197649383, "from_user_id_str": "197649383", "from_user_name": "D-Will", "geo": null, "id": 148817352853692400, "id_str": "148817352853692416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1634173779/PIC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634173779/PIC_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:52 +0000", "from_user": "irdemetri", "from_user_id": 40336935, "from_user_id_str": "40336935", "from_user_name": "James", "geo": null, "id": 148817336277811200, "id_str": "148817336277811200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1631290200/ewugly_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631290200/ewugly_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:49 +0000", "from_user": "MATHHOFFA", "from_user_id": 23317405, "from_user_id_str": "23317405", "from_user_name": "Math Hoffa", "geo": null, "id": 148817325552975870, "id_str": "148817325552975872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1502170953/photo_5_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1502170953/photo_5_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "#Suckas see u n say 1 thing... then jump infront a camera n say another... thats why i cant fuck wit these clown ass battle niggas...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:47 +0000", "from_user": "U532N4M3", "from_user_id": 433921169, "from_user_id_str": "433921169", "from_user_name": "Chris Ferrell", "geo": null, "id": 148817314459025400, "id_str": "148817314459025408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1688270046/hjhjhjhj_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688270046/hjhjhjhj_normal.PNG", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:43 +0000", "from_user": "natdukes", "from_user_id": 48376646, "from_user_id_str": "48376646", "from_user_name": "\\u2661", "geo": null, "id": 148817298541654000, "id_str": "148817298541654016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680698190/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680698190/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:37 +0000", "from_user": "TylerThaCre8tor", "from_user_id": 370277753, "from_user_id_str": "370277753", "from_user_name": "Tyler Spencer", "geo": null, "id": 148817274839646200, "id_str": "148817274839646208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1553151325/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553151325/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 17:29:37 +0000", "from_user": "TylerThaCre8tor", "from_user_id": 370277753, "from_user_id_str": "370277753", "from_user_name": "Tyler Spencer", "geo": null, "id": 148817274839646200, "id_str": "148817274839646208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1553151325/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553151325/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:36 +0000", "from_user": "EnigmaJohnDoe", "from_user_id": 427601192, "from_user_id_str": "427601192", "from_user_name": "Hey Arnold", "geo": null, "id": 148817270125244400, "id_str": "148817270125244418", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701111306/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111306/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:35 +0000", "from_user": "VictoriaPDunn", "from_user_id": 26258460, "from_user_id_str": "26258460", "from_user_name": "Victoria Dunn", "geo": null, "id": 148817263691178000, "id_str": "148817263691177984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1133088543/VictoriaPDunn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1133088543/VictoriaPDunn_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@TheBodii done! We're gonna clown tomorrow morning! :-)", "to_user": "TheBodii", "to_user_id": 54016106, "to_user_id_str": "54016106", "to_user_name": "That Tree Over There", "in_reply_to_status_id": 148804749372833800, "in_reply_to_status_id_str": "148804749372833792"}, +{"created_at": "Mon, 19 Dec 2011 17:29:34 +0000", "from_user": "GotBleezyDreezy", "from_user_id": 246590835, "from_user_id_str": "246590835", "from_user_name": "Andrew Garcia", "geo": null, "id": 148817261308817400, "id_str": "148817261308817409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702496460/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702496460/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:33 +0000", "from_user": "KJSAYZ", "from_user_id": 28004730, "from_user_id_str": "28004730", "from_user_name": "Time Machine Tommy", "geo": null, "id": 148817257538125820, "id_str": "148817257538125824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1684369964/kay_ha_ballin_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684369964/kay_ha_ballin_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:31 +0000", "from_user": "ItsEll__", "from_user_id": 240066161, "from_user_id_str": "240066161", "from_user_name": "LaLa Evans ", "geo": null, "id": 148817249568952320, "id_str": "148817249568952320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693698594/2B2DLE2c_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693698594/2B2DLE2c_normal", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:30 +0000", "from_user": "pkiszkiel", "from_user_id": 331292901, "from_user_id_str": "331292901", "from_user_name": "pkiszkiel", "geo": null, "id": 148817243948597250, "id_str": "148817243948597248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1434249298/200685_1910344326167_1468631011_32113774_7805417_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1434249298/200685_1910344326167_1468631011_32113774_7805417_n_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:29 +0000", "from_user": "ru_DRUNKritenow", "from_user_id": 154415844, "from_user_id_str": "154415844", "from_user_name": "April Smallz", "geo": null, "id": 148817239674597380, "id_str": "148817239674597376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702340698/profile_image_1324310535580_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702340698/profile_image_1324310535580_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@whiteboytatted Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:29 +0000", "from_user": "MrNiceguy_rudy", "from_user_id": 401787521, "from_user_id_str": "401787521", "from_user_name": "Rudy skryzmoski", "geo": null, "id": 148817239494242300, "id_str": "148817239494242306", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1673607476/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673607476/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:27 +0000", "from_user": "thatJOINTjackie", "from_user_id": 29146576, "from_user_id_str": "29146576", "from_user_name": "Jacqueline", "geo": null, "id": 148817230728138750, "id_str": "148817230728138752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670800910/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670800910/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:27 +0000", "from_user": "GucciDamous", "from_user_id": 378107665, "from_user_id_str": "378107665", "from_user_name": "Albert Seda", "geo": null, "id": 148817229910253570, "id_str": "148817229910253568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1576752295/NOSO________447545_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576752295/NOSO________447545_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:25 +0000", "from_user": "Ohh_Sam", "from_user_id": 102153844, "from_user_id_str": "102153844", "from_user_name": "Samantha Ellisa", "geo": null, "id": 148817222809296900, "id_str": "148817222809296896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1651532012/twit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651532012/twit_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:22 +0000", "from_user": "CAUTION_itsRoYY", "from_user_id": 44785854, "from_user_id_str": "44785854", "from_user_name": "ROOOYYYYY!!!! ", "geo": null, "id": 148817208817106940, "id_str": "148817208817106944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1624176224/2011-11-05_15.31.17-1-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624176224/2011-11-05_15.31.17-1-1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Lucky_Juju LOL What time will that be clown? & what text???", "to_user": "Lucky_Juju", "to_user_id": 188503233, "to_user_id_str": "188503233", "to_user_name": "Only One", "in_reply_to_status_id": 148816873365057540, "in_reply_to_status_id_str": "148816873365057536"}, +{"created_at": "Mon, 19 Dec 2011 17:29:17 +0000", "from_user": "YoungBridge", "from_user_id": 48334816, "from_user_id_str": "48334816", "from_user_name": "Cameron Bridgewater", "geo": null, "id": 148817189644926980, "id_str": "148817189644926976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1569680719/296620_10150305857071503_522546502_8205269_1307178555_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1569680719/296620_10150305857071503_522546502_8205269_1307178555_n_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:15 +0000", "from_user": "Born2b_aLegend", "from_user_id": 304632094, "from_user_id_str": "304632094", "from_user_name": "Darius Douglas", "geo": null, "id": 148817181495406600, "id_str": "148817181495406592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700645739/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700645739/profile_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:14 +0000", "from_user": "GeneralYosh", "from_user_id": 184750301, "from_user_id_str": "184750301", "from_user_name": "Coonin\\u00D8'Brien _,,,/", "geo": null, "id": 148817178739752960, "id_str": "148817178739752961", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687625990/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687625990/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT\\u201C@whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh\\u201D chuuch.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:14 +0000", "from_user": "MiddleFingaToBS", "from_user_id": 46443516, "from_user_id_str": "46443516", "from_user_name": " Fck YOU!", "geo": null, "id": 148817178408386560, "id_str": "148817178408386560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696233245/bignehsa__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696233245/bignehsa__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:12 +0000", "from_user": "Jenny_x0x", "from_user_id": 355851853, "from_user_id_str": "355851853", "from_user_name": "Jennifer Bozsar", "geo": null, "id": 148817170091094000, "id_str": "148817170091094017", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693723473/wmi9tdwv_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693723473/wmi9tdwv_normal", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:12 +0000", "from_user": "JuDeeezz", "from_user_id": 172983044, "from_user_id_str": "172983044", "from_user_name": "Jocelyn Mallory", "geo": null, "id": 148817166882439170, "id_str": "148817166882439168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701279581/avatar_normal.JPEG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701279581/avatar_normal.JPEG", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "Cee cee n reggie not gonna clown me about me wanting a lunchable", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:12 +0000", "from_user": "Salute_D_Roc", "from_user_id": 217937002, "from_user_id_str": "217937002", "from_user_name": "Wavy Manolo", "geo": null, "id": 148817166823727100, "id_str": "148817166823727105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699140355/PicsArt_1324167459968_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699140355/PicsArt_1324167459968_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:11 +0000", "from_user": "BossLadySheila", "from_user_id": 88497220, "from_user_id_str": "88497220", "from_user_name": "\\u2665\\u2661Sheila Monroe\\u2661\\u2665", "geo": null, "id": 148817165133430800, "id_str": "148817165133430784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700944601/SDC115186_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700944601/SDC115186_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Jimmy_GMT i know so clown *cool face*", "to_user": "Jimmy_GMT", "to_user_id": 393549397, "to_user_id_str": "393549397", "to_user_name": "@Kevin_GMT", "in_reply_to_status_id": 148812367264874500, "in_reply_to_status_id_str": "148812367264874497"}, +{"created_at": "Mon, 19 Dec 2011 17:29:09 +0000", "from_user": "summeriman_", "from_user_id": 178777880, "from_user_id_str": "178777880", "from_user_name": "Summer \\u25B2", "geo": null, "id": 148817155306172400, "id_str": "148817155306172418", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700863040/x2_9e5d52a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700863040/x2_9e5d52a_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:07 +0000", "from_user": "Zola_Diorx3", "from_user_id": 400727811, "from_user_id_str": "400727811", "from_user_name": "Jalia.Foster.\\u10E6", "geo": null, "id": 148817146745589760, "id_str": "148817146745589761", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702439917/001_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702439917/001_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@harlemjaylin3 Shut up Clown , No you don't .", "to_user": "harlemjaylin3", "to_user_id": 239914524, "to_user_id_str": "239914524", "to_user_name": "Loyalty Is Everythan", "in_reply_to_status_id": 148816532569468930, "in_reply_to_status_id_str": "148816532569468928"}, +{"created_at": "Mon, 19 Dec 2011 17:29:04 +0000", "from_user": "MJDHaro", "from_user_id": 212295949, "from_user_id_str": "212295949", "from_user_name": "Mario Javier D. Haro", "geo": null, "id": 148817135022522370, "id_str": "148817135022522368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670758616/repot_this_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670758616/repot_this_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "lol, you're hilarious. have you spoken to your grandmother? because she is turning over in her grave knowing her grandson is a moronic clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:00 +0000", "from_user": "kori_gunz_", "from_user_id": 241752914, "from_user_id_str": "241752914", "from_user_name": "Gimme Amber Cole", "geo": null, "id": 148817118551482370, "id_str": "148817118551482368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700819881/Photo0047_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700819881/Photo0047_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@PickMy_Naps you a clown bruh", "to_user": "PickMy_Naps", "to_user_id": 312536557, "to_user_id_str": "312536557", "to_user_name": "Ickybod Clay", "in_reply_to_status_id": 148816935549808640, "in_reply_to_status_id_str": "148816935549808640"}, +{"created_at": "Mon, 19 Dec 2011 17:29:00 +0000", "from_user": "wejesowood", "from_user_id": 336615790, "from_user_id_str": "336615790", "from_user_name": "Weje ceno", "geo": null, "id": 148817118450810880, "id_str": "148817118450810880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691302203/VcHB7hW8_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691302203/VcHB7hW8_normal", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:28:59 +0000", "from_user": "iGOHAM_Burga", "from_user_id": 219138341, "from_user_id_str": "219138341", "from_user_name": "IXXMCMLXXXIX", "geo": null, "id": 148817113149218800, "id_str": "148817113149218816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1618466269/304063_2114379858362_1211640031_31794618_738352099_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618466269/304063_2114379858362_1211640031_31794618_738352099_n_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@MissGavanne @KRIS10_Bee yea clown", "to_user": "MissGavanne", "to_user_id": 171956368, "to_user_id_str": "171956368", "to_user_name": "\\uE303Gavanne Davis", "in_reply_to_status_id": 148817052608634880, "in_reply_to_status_id_str": "148817052608634880"}, +{"created_at": "Mon, 19 Dec 2011 17:28:51 +0000", "from_user": "Rpiedro", "from_user_id": 418431947, "from_user_id_str": "418431947", "from_user_name": "PrincessRosalind", "geo": null, "id": 148817080328790000, "id_str": "148817080328790017", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688345196/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688345196/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Bottles blunts & bitchs is all I want 4 x-mas lmao my cousin is a clown ass nigga", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:28:47 +0000", "from_user": "space_JAMMing", "from_user_id": 142122213, "from_user_id_str": "142122213", "from_user_name": "Stoningggg !", "geo": null, "id": 148817065359327230, "id_str": "148817065359327232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689950577/nikeeee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689950577/nikeeee_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Po .. lo ! \\u201C@CuteForSALE Hahahaha this nigga a clown !!!! @BSandlin34 @space_JAMMing http://t.co/dn99l6s0\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:28:45 +0000", "from_user": "blueroxie", "from_user_id": 63671841, "from_user_id_str": "63671841", "from_user_name": "SarahBear", "geo": null, "id": 148817053787238400, "id_str": "148817053787238400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1623086896/hott_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1623086896/hott_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:28:44 +0000", "from_user": "joshb_fool23", "from_user_id": 241647654, "from_user_id_str": "241647654", "from_user_name": "Josh B", "geo": null, "id": 148817052864491520, "id_str": "148817052864491520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1678401351/joshb_fool23_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678401351/joshb_fool23_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:28:44 +0000", "from_user": "Pooda575", "from_user_id": 269100677, "from_user_id_str": "269100677", "from_user_name": "peter long", "geo": null, "id": 148817050570199040, "id_str": "148817050570199040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1279893237/snowboarding_pete_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1279893237/snowboarding_pete_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:28:41 +0000", "from_user": "MathYouBoobstos", "from_user_id": 281359286, "from_user_id_str": "281359286", "from_user_name": "Matthew Bustos", "geo": null, "id": 148817038486405120, "id_str": "148817038486405120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1621186955/curlyfries_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621186955/curlyfries_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:28:37 +0000", "from_user": "BushyBrowsGreg", "from_user_id": 21463821, "from_user_id_str": "21463821", "from_user_name": "GR3G M.", "geo": null, "id": 148817020497039360, "id_str": "148817020497039360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1661151151/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661151151/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:28:26 +0000", "from_user": "DoraBby_", "from_user_id": 313616934, "from_user_id_str": "313616934", "from_user_name": "Doraa' Rosee Diamond", "geo": null, "id": 148816976624615420, "id_str": "148816976624615424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701416309/Ag-dihxCQAAYkC7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701416309/Ag-dihxCQAAYkC7_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "lol clown \\u201C@Lovee_Liyah: @DoraBby_ Ard shawty\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:28:26 +0000", "from_user": "TheMegaMan247", "from_user_id": 374592699, "from_user_id_str": "374592699", "from_user_name": "Arnell Omega Milton", "geo": null, "id": 148816975773179900, "id_str": "148816975773179904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1553053631/Omega_at_EBC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553053631/Omega_at_EBC_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@SdotOdotSdot they got Melo and B Diddy. What hurts even more is I can't clown knick fans anymore lol", "to_user": "SdotOdotSdot", "to_user_id": 234904857, "to_user_id_str": "234904857", "to_user_name": "L Raysor", "in_reply_to_status_id": 148815563949482000, "in_reply_to_status_id_str": "148815563949481984"}, +{"created_at": "Mon, 19 Dec 2011 17:28:26 +0000", "from_user": "59st_shane", "from_user_id": 409544129, "from_user_id_str": "409544129", "from_user_name": "Tocali", "geo": null, "id": 148816974942711800, "id_str": "148816974942711808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685313301/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685313301/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@Just_Monae: stop fucking playing with me punkass!!!! U fuckin clown!!!@59st_shane\\u201Dctfu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:28:25 +0000", "from_user": "qdaruler", "from_user_id": 230490438, "from_user_id_str": "230490438", "from_user_name": "StabMasterArson", "geo": null, "id": 148816973227229200, "id_str": "148816973227229184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1390034636/profile_image_1307719760410_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1390034636/profile_image_1307719760410_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:28:25 +0000", "from_user": "HoesCallMeDuqqi", "from_user_id": 84877897, "from_user_id_str": "84877897", "from_user_name": "Guess What . . .", "geo": null, "id": 148816971633393660, "id_str": "148816971633393665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689561690/Picture0014_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689561690/Picture0014_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:28:24 +0000", "from_user": "JETPACK_JAY", "from_user_id": 192625870, "from_user_id_str": "192625870", "from_user_name": "Jay Law", "geo": null, "id": 148816968026304500, "id_str": "148816968026304512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1655661574/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655661574/profile_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @whiteboytatted: Yall clown ass dudes with these mohawks and skinny jeans and blonde patches in ya hair boy i tell ya smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:28:10 +0000", "from_user": "rutt3r", "from_user_id": 284085340, "from_user_id_str": "284085340", "from_user_name": "lee rutter", "geo": null, "id": 148816909150859260, "id_str": "148816909150859264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1658442564/385345_10150907601145587_549735586_21605734_531859922_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658442564/385345_10150907601145587_549735586_21605734_531859922_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Tanyaaa15 pffft ur a clown #crusty", "to_user": "Tanyaaa15", "to_user_id": 361895125, "to_user_id_str": "361895125", "to_user_name": "Tanya Stacey", "in_reply_to_status_id": 148815569636966400, "in_reply_to_status_id_str": "148815569636966400"}, +{"created_at": "Mon, 19 Dec 2011 17:28:02 +0000", "from_user": "chunkypnutbutta", "from_user_id": 24743128, "from_user_id_str": "24743128", "from_user_name": "chunkypnutbutta", "geo": null, "id": 148816874208108540, "id_str": "148816874208108545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1653202606/Ullanda1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653202606/Ullanda1_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "Yeah, I saw the VOYR. You're busted, you clown.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:27:49 +0000", "from_user": "iNeedaRefill", "from_user_id": 312064612, "from_user_id_str": "312064612", "from_user_name": "Jalen Joseph\\u2122", "geo": null, "id": 148816821871587330, "id_str": "148816821871587328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695383340/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695383340/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "That man a clown baw lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:27:45 +0000", "from_user": "zeicher47", "from_user_id": 51873874, "from_user_id_str": "51873874", "from_user_name": "Zak Eicher", "geo": null, "id": 148816801583742980, "id_str": "148816801583742979", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1609587928/Photo_on_8-29-11_at_10.29_PM_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609587928/Photo_on_8-29-11_at_10.29_PM_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "We clown so hard when we chill lmao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:27:31 +0000", "from_user": "simonmcc", "from_user_id": 6776922, "from_user_id_str": "6776922", "from_user_name": "Simon McCartney", "geo": +{"coordinates": [54.4864,-6.2114], "type": "Point"}, "id": 148816743559725060, "id_str": "148816743559725056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1124265006/SimonMcCartney-2010-med_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1124265006/SimonMcCartney-2010-med_normal.jpg", "source": "<a href="http://tweetli.st/" rel="nofollow">TweetList Pro</a>", "text": "YEZ 4880 you clown, driving the length of the M1 at dusk with no lights on is insane", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:27:28 +0000", "from_user": "Just_Monae", "from_user_id": 250012833, "from_user_id_str": "250012833", "from_user_name": "M&M!", "geo": null, "id": 148816734202232830, "id_str": "148816734202232832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1676533772/dlWFWXND_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676533772/dlWFWXND_normal", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "stop fucking playing with me punkass!!!! U fuckin clown!!!@59st_shane", "to_user": "59st_shane", "to_user_id": 409544129, "to_user_id_str": "409544129", "to_user_name": "Tocali", "in_reply_to_status_id": 148816216985837570, "in_reply_to_status_id_str": "148816216985837568"}, +{"created_at": "Mon, 19 Dec 2011 17:27:24 +0000", "from_user": "Kelanei_Monroe", "from_user_id": 271485571, "from_user_id_str": "271485571", "from_user_name": "1:55 , ahhhaaa", "geo": null, "id": 148816713750810620, "id_str": "148816713750810626", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701224847/1324258108115_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701224847/1324258108115_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Dis @tiffanii_laanae Hackin Da Sis Page!!! Luv Yhu Clown'", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:27:24 +0000", "from_user": "OfficialAng", "from_user_id": 112000100, "from_user_id_str": "112000100", "from_user_name": "ANGELA", "geo": null, "id": 148816713608212480, "id_str": "148816713608212480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680091749/a14_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680091749/a14_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "Disrespect and I clown, tha type of bitch to throw down..throw up tha block cause nothin stops my chips$ a bawse player with tits...;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:27:21 +0000", "from_user": "ChynnSavannah", "from_user_id": 62097208, "from_user_id_str": "62097208", "from_user_name": "Nique", "geo": null, "id": 148816702254227460, "id_str": "148816702254227457", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686359624/Image208_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686359624/Image208_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@Slim_ID lmao how u know she did a clown him?", "to_user": "Slim_ID", "to_user_id": 33792948, "to_user_id_str": "33792948", "to_user_name": "Salute \\u2714 ", "in_reply_to_status_id": 148816486100774900, "in_reply_to_status_id_str": "148816486100774912"}, +{"created_at": "Mon, 19 Dec 2011 17:27:13 +0000", "from_user": "dannyblommie", "from_user_id": 237473987, "from_user_id_str": "237473987", "from_user_name": "danny", "geo": null, "id": 148816670469799940, "id_str": "148816670469799936", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1231130024/807744889_5_72iC_1_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1231130024/807744889_5_72iC_1_normal.jpeg", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "Gelukkig doe ik niet zo veel in me leven..training geven,coach,goochelen,uitgaan,clown zijn,vrienden chille,sporten 21 uur in de week", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:27:05 +0000", "from_user": "Mocha_DaGoddess", "from_user_id": 222668298, "from_user_id_str": "222668298", "from_user_name": "Every Man's WISH ", "geo": null, "id": 148816637133463550, "id_str": "148816637133463552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1686459688/alexis_the_goddess_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686459688/alexis_the_goddess_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Ima start 'SLAPPIN' these clown ass females !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:27:02 +0000", "from_user": "IceCream182", "from_user_id": 101153569, "from_user_id_str": "101153569", "from_user_name": "Yellow Berry", "geo": null, "id": 148816622772166660, "id_str": "148816622772166656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679310735/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679310735/image_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "U r a clown,u belong in a circus", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:26:50 +0000", "from_user": "Nitastph8n", "from_user_id": 30521878, "from_user_id_str": "30521878", "from_user_name": "Bossman", "geo": null, "id": 148816573208084480, "id_str": "148816573208084480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/629076763/Cy1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/629076763/Cy1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "North Korea's solution to everything is test fire a missile (WTF Clowns)! Whom ever said Iran has a right to Nuclear weapons is a \"Clown.\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:26:42 +0000", "from_user": "BaddBody_Uri", "from_user_id": 167422203, "from_user_id_str": "167422203", "from_user_name": "\\uE314\\uE32EEver, Greatest \\uE32E\\uE314", "geo": null, "id": 148816541121642500, "id_str": "148816541121642496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700517658/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700517658/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @AlleanVogue: Ugh Get That Clown Off My TL, Lost All Respect For Him", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:26:13 +0000", "from_user": "Sidthegent", "from_user_id": 237508767, "from_user_id_str": "237508767", "from_user_name": "Sidney B. ", "geo": null, "id": 148816415921676300, "id_str": "148816415921676288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1609569493/IMG00298-20110917-2311_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609569493/IMG00298-20110917-2311_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "When ladies wear clown makeup >>> haha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:26:11 +0000", "from_user": "_Happy_Gilmore", "from_user_id": 299800115, "from_user_id_str": "299800115", "from_user_name": "Happy Gilmore", "geo": null, "id": 148816410213232640, "id_str": "148816410213232641", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1677891295/happy-gilmore_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677891295/happy-gilmore_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@JoshScobee10 Josh, why aren't you following Happy anymore? Are you still mad I destroyed that clown statue at your house?", "to_user": "JoshScobee10", "to_user_id": 39999748, "to_user_id_str": "39999748", "to_user_name": "Josh Scobee"}, +{"created_at": "Mon, 19 Dec 2011 17:26:08 +0000", "from_user": "alexhall94", "from_user_id": 63992433, "from_user_id_str": "63992433", "from_user_name": "Alex Hall", "geo": null, "id": 148816395885477900, "id_str": "148816395885477888", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1620902083/hello_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620902083/hello_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@frazerrobinson http://t.co/ALnzwuV4", "to_user": "frazerrobinson", "to_user_id": 163861977, "to_user_id_str": "163861977", "to_user_name": "Frazer Robinson ", "in_reply_to_status_id": 148815665241915400, "in_reply_to_status_id_str": "148815665241915392"}, +{"created_at": "Mon, 19 Dec 2011 17:26:06 +0000", "from_user": "umbertodf", "from_user_id": 56822616, "from_user_id_str": "56822616", "from_user_name": "umberto de felice", "geo": null, "id": 148816386909671420, "id_str": "148816386909671424", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1123810814/IMG_0135_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1123810814/IMG_0135_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "RT @David_IsayBlog: Un prete, un clown e Elisabetta Canalis entrano dentro un bar. Succede che SE VUOI SAPERE COME CONTINUA RETWITTA!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:25:59 +0000", "from_user": "1600Trey", "from_user_id": 296012606, "from_user_id_str": "296012606", "from_user_name": "EstBaby", "geo": null, "id": 148816357167857660, "id_str": "148816357167857664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1673872700/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673872700/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "My teacher said imma CLASS CLOWN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:25:57 +0000", "from_user": "KoolKorruption", "from_user_id": 330360595, "from_user_id_str": "330360595", "from_user_name": "Jason Johnson", "geo": null, "id": 148816351652356100, "id_str": "148816351652356096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1553316129/jason_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553316129/jason_pic_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @VaN_Nish: @KoolKorruption don't be ignoring my gchats cuz u having good long conversations tho lol<- I hit u bk clown lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:25:51 +0000", "from_user": "BackwoodBryant", "from_user_id": 335029391, "from_user_id_str": "335029391", "from_user_name": "Andre Williams", "geo": null, "id": 148816326390054900, "id_str": "148816326390054912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696941826/31258_395168275871_727100871_4660870_3602237_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696941826/31258_395168275871_727100871_4660870_3602237_n_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "Nigga yu been a clown.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:25:51 +0000", "from_user": "GEORGEXTORTION", "from_user_id": 84658103, "from_user_id_str": "84658103", "from_user_name": "BigGeorge Or Georgie", "geo": null, "id": 148816324267749380, "id_str": "148816324267749376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701059054/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701059054/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @_MissSades: @GEORGEXTORTION bofl Your a clown man. <> Lol Naw Im Serious Doe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:25:48 +0000", "from_user": "ShortyxSmntha", "from_user_id": 209096402, "from_user_id_str": "209096402", "from_user_name": "Smntha \\u2665 Jack", "geo": null, "id": 148816310715957250, "id_str": "148816310715957248", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698215533/_20knuffelbeertje_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698215533/_20knuffelbeertje_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Altijd als ik ergens een clownvis zie moet ik aan nemo en @Gabykempers denke omdat k altijd aan et lachen ben door haar ze is gwn een clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:25:34 +0000", "from_user": "_dweebin", "from_user_id": 178177145, "from_user_id_str": "178177145", "from_user_name": "DJ Krissy Kriss \\uE13D\\uE13D ", "geo": null, "id": 148816254730379260, "id_str": "148816254730379264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700408402/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700408402/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Lmao Kelly is a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:25:07 +0000", "from_user": "sabrinagoyer07", "from_user_id": 208136981, "from_user_id_str": "208136981", "from_user_name": "Sabrina Goyer", "geo": null, "id": 148816141719044100, "id_str": "148816141719044096", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679242593/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679242593/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@KatherineL26: Avoir l'air d'un clown avec le restant de rouge \\u00E0 l\\u00E8vres -.-\\u201Dhaha moi aussi j'avais l'air ce sa ce matin ;) haha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:25:05 +0000", "from_user": "OmniaVeteraNova", "from_user_id": 416848039, "from_user_id_str": "416848039", "from_user_name": "Omnia Vetera Nova", "geo": null, "id": 148816133682765820, "id_str": "148816133682765824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676520752/ovnfblogo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676520752/ovnfblogo_normal.png", "source": "<a href="http://www.omniaveteranova.com" rel="nofollow">Omnia Vetera Nova</a>", "text": "All future republican debates will force candidates to carpool in the same clown car until one of them proves they are an adult.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:25:04 +0000", "from_user": "NaomiJoella", "from_user_id": 319331539, "from_user_id_str": "319331539", "from_user_name": "YAAWWW. ", "geo": null, "id": 148816130029535230, "id_str": "148816130029535232", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687130083/331290823_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687130083/331290823_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @kingson015: RT @NaomiJoella: T was niet grappig ofzo, maar laat m maar clown spelen. / grapje tog...\\u00AB Not funny monkey.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:24:54 +0000", "from_user": "xoxoDEMiiiiii_", "from_user_id": 355285092, "from_user_id_str": "355285092", "from_user_name": "Macs", "geo": null, "id": 148816086517825540, "id_str": "148816086517825536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690332617/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690332617/image_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @noYAMShere_: Keep my circle small, I don't fuck with these clown niggas.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:24:33 +0000", "from_user": "ivondellscott25", "from_user_id": 435461264, "from_user_id_str": "435461264", "from_user_name": "Pooh_Duh", "geo": null, "id": 148815998349348860, "id_str": "148815998349348864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690403082/O0LdP3X8_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690403082/O0LdP3X8_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@SwisherrSweetz: WHAT TIME WE LEAVE THIS FUCKING SCHOOL ?!!! answer me lol\"<<<11:20 clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:24:22 +0000", "from_user": "ShaeG_", "from_user_id": 67307991, "from_user_id_str": "67307991", "from_user_name": "Gotti \\uE31C\\uE31D\\uE314", "geo": null, "id": 148815953596125200, "id_str": "148815953596125184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695327666/imagejpeg_2_37_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695327666/imagejpeg_2_37_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Oh you is a fucking clown , lls \\u00AB@IXIV_LoveSheira Lmaooo ! http://t.co/AyKYdHOc\\u00BB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:24:15 +0000", "from_user": "KellyTheWeasley", "from_user_id": 175901639, "from_user_id_str": "175901639", "from_user_name": "KellyMarieeee.", "geo": null, "id": 148815921509699600, "id_str": "148815921509699585", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701241406/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701241406/image_normal.jpg", "source": "<a href="http://dailybooth.com/" rel="nofollow">DailyBooth</a>", "text": "my cheek looks like the painting that billy the clown from saw has on his cheek :L but its just m... http://t.co/JqLPfzpO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:24:11 +0000", "from_user": "NaomiJoella", "from_user_id": 319331539, "from_user_id_str": "319331539", "from_user_name": "YAAWWW. ", "geo": null, "id": 148815905835581440, "id_str": "148815905835581441", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687130083/331290823_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687130083/331290823_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "T was niet grappig ofzo, maar laat m maar clown spelen.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:23:47 +0000", "from_user": "flows_gorgeous", "from_user_id": 230852182, "from_user_id_str": "230852182", "from_user_name": "tu me detestes? O. ", "geo": null, "id": 148815804803198980, "id_str": "148815804803198977", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1651332231/Picture_56_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651332231/Picture_56_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "marvin is a clown. . .lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:23:42 +0000", "from_user": "jcisthename153", "from_user_id": 233632253, "from_user_id_str": "233632253", "from_user_name": "JeanCarlos ", "geo": null, "id": 148815785102540800, "id_str": "148815785102540800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697771076/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697771076/image_normal.jpg", "source": "<a href="http://www.handmark.com" rel="nofollow">TweetCaster for iOS</a>", "text": "@onedee53 is a clown smfh", "to_user": "onedee53", "to_user_id": 108123518, "to_user_id_str": "108123518", "to_user_name": "Onedee"}, +{"created_at": "Mon, 19 Dec 2011 17:23:27 +0000", "from_user": "marcusprice1227", "from_user_id": 436240525, "from_user_id_str": "436240525", "from_user_name": "Marcus Latham-Price", "geo": null, "id": 148815722489987070, "id_str": "148815722489987072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691835629/ndP6qDa3_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691835629/ndP6qDa3_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Assistant principal that think he's the shit #clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:23:01 +0000", "from_user": "MizzPurpleHeart", "from_user_id": 351566818, "from_user_id_str": "351566818", "from_user_name": "chartese brent", "geo": null, "id": 148815613182222340, "id_str": "148815613182222338", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699026331/SjC3nj5t_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699026331/SjC3nj5t_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "So I'm at training for my new job. Wtf is there this 30yr old man trying to be the class clown. -__- nigga grow up! Ugh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:22:50 +0000", "from_user": "alexhall94", "from_user_id": 63992433, "from_user_id_str": "63992433", "from_user_name": "Alex Hall", "geo": null, "id": 148815567221039100, "id_str": "148815567221039104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1620902083/hello_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620902083/hello_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@frazerrobinson i can imagine a german clown being very frightening", "to_user": "frazerrobinson", "to_user_id": 163861977, "to_user_id_str": "163861977", "to_user_name": "Frazer Robinson ", "in_reply_to_status_id": 148814914180489200, "in_reply_to_status_id_str": "148814914180489216"}, +{"created_at": "Mon, 19 Dec 2011 17:22:28 +0000", "from_user": "iSeeWackBxtches", "from_user_id": 394989588, "from_user_id_str": "394989588", "from_user_name": "Singin For My Life", "geo": null, "id": 148815474124263420, "id_str": "148815474124263425", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699171815/1031111554_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699171815/1031111554_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "They playin the Cha Cha Slide over the intercom. They already kno we gon clown!! Lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:22:01 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148815360777388030, "id_str": "148815360777388032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://blackfridayonlinestores.info" rel="nofollow">blackfridayonlinestoresdotinfo</a>", "text": "Get The Best Price For Clown Costume Template-McCall's 4944 Vintage Sewi http://t.co/naa7ZWqm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:21:25 +0000", "from_user": "joshiocolezio", "from_user_id": 90412016, "from_user_id_str": "90412016", "from_user_name": "Josh Coles", "geo": null, "id": 148815208939405300, "id_str": "148815208939405312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695635785/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695635785/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@LukeAllensfc11 Haha plum? Shut up you fucking clown. I'm well scared of you and your one direction hair cut. You're so hard.", "to_user": "LukeAllensfc11", "to_user_id": 347898532, "to_user_id_str": "347898532", "to_user_name": "Luke Allen", "in_reply_to_status_id": 148814615428599800, "in_reply_to_status_id_str": "148814615428599809"}, +{"created_at": "Mon, 19 Dec 2011 17:21:16 +0000", "from_user": "Jrigs239", "from_user_id": 245262803, "from_user_id_str": "245262803", "from_user_name": "Jay R/Rigidy", "geo": null, "id": 148815171597508600, "id_str": "148815171597508608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1672494339/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672494339/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@MP3FAMOUS lmfao u already know imma clown", "to_user": "MP3FAMOUS", "to_user_id": 348763503, "to_user_id_str": "348763503", "to_user_name": "PurpFlowers", "in_reply_to_status_id": 148813579611668480, "in_reply_to_status_id_str": "148813579611668480"}, +{"created_at": "Mon, 19 Dec 2011 17:21:08 +0000", "from_user": "sidd_lovesyou", "from_user_id": 85028603, "from_user_id_str": "85028603", "from_user_name": "Roxeylee", "geo": null, "id": 148815136373739520, "id_str": "148815136373739520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701432753/newwwmee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701432753/newwwmee_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"@ColorMeLex__: I want to spend Christmas eve w. my friends. Exchange gifts, clown, drink & just have a good ass time. \\uD83C\\uDF81\\uD83D\\uDE03\\uD83C\\uDF78\\uD83C\\uDF84\\uD83C\\uDF85\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:21:01 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148815106950701060, "id_str": "148815106950701056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://blackfridayonlinestores.info" rel="nofollow">blackfridayonlinestoresdotinfo</a>", "text": "Bestselling Clown Costume Template-Simplicity Sewing Pattern 2571 Toddler Cost http://t.co/CRt70Y4k", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:20:53 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148815076109979650, "id_str": "148815076109979649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://blackfridayonlinestores.info" rel="nofollow">blackfridayonlinestoresdotinfo</a>", "text": "Where Can I Buy Clown Costume Template-Simplicity Sewing Pattern 2849 Adult Co http://t.co/A8bm4sZI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:20:46 +0000", "from_user": "breanncpkmessie", "from_user_id": 305988127, "from_user_id_str": "305988127", "from_user_name": "Breann Messier", "geo": null, "id": 148815046972145660, "id_str": "148815046972145664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685434128/carrie1_1__normal.jpg_w_360_h_540", "source": "<a href="http://blackfridayonlinestores.info" rel="nofollow">blackfridayonlinestoresdotinfo</a>", "text": "Resonable Priced Clown Costume Template-Clown Costumes McCall's Sewing Pa http://t.co/d7ZTJWfu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:20:24 +0000", "from_user": "sparklecups", "from_user_id": 40553608, "from_user_id_str": "40553608", "from_user_name": "Emma", "geo": null, "id": 148814952491266050, "id_str": "148814952491266048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1665867661/28692_1479594231764_1291045255_1296965_856398_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665867661/28692_1479594231764_1291045255_1296965_856398_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Cooledairspares clown! hahaha.....", "to_user": "Cooledairspares", "to_user_id": 263576348, "to_user_id_str": "263576348", "to_user_name": "Northern Stu", "in_reply_to_status_id": 148812266370908160, "in_reply_to_status_id_str": "148812266370908160"}, +{"created_at": "Mon, 19 Dec 2011 17:19:56 +0000", "from_user": "t_cas23", "from_user_id": 316879426, "from_user_id_str": "316879426", "from_user_name": "Troy Caswell", "geo": null, "id": 148814835218526200, "id_str": "148814835218526208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682197546/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682197546/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@CurtisDurr 1 clown", "to_user": "CurtisDurr", "to_user_id": 423755846, "to_user_id_str": "423755846", "to_user_name": "Curtis Durr", "in_reply_to_status_id": 148814505856606200, "in_reply_to_status_id_str": "148814505856606208"}, +{"created_at": "Mon, 19 Dec 2011 17:19:29 +0000", "from_user": "Eerron", "from_user_id": 39298343, "from_user_id_str": "39298343", "from_user_name": "E. Beals", "geo": null, "id": 148814722861514750, "id_str": "148814722861514752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/987122238/100_2747cropped2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/987122238/100_2747cropped2_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@jenn_seeley Are you getting married?? Starting clown school? Starting a solitary trip around the world in a small boat?? Gimme details!!", "to_user": "jenn_seeley", "to_user_id": 15181202, "to_user_id_str": "15181202", "to_user_name": "jenn seeley", "in_reply_to_status_id": 148809594792198140, "in_reply_to_status_id_str": "148809594792198146"}, +{"created_at": "Mon, 19 Dec 2011 17:18:11 +0000", "from_user": "xxloveyouu", "from_user_id": 226290782, "from_user_id_str": "226290782", "from_user_name": "kimm \\u2665", "geo": null, "id": 148814396460773380, "id_str": "148814396460773377", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1670365562/IMG00540-20111129-1730_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670365562/IMG00540-20111129-1730_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Haha mislukte clown QQ #wiskunde http://t.co/wAtmSuhZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:16:35 +0000", "from_user": "Infamous_Blanco", "from_user_id": 350048982, "from_user_id_str": "350048982", "from_user_name": "Presley Blanco", "geo": null, "id": 148813994143137800, "id_str": "148813994143137793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1568468992/308296_298700076811460_100000144091721_1434062_140620468_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1568468992/308296_298700076811460_100000144091721_1434062_140620468_n_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Nate is a clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:15:30 +0000", "from_user": "EvilBlueFlame", "from_user_id": 52322329, "from_user_id_str": "52322329", "from_user_name": "Mikey Lewis", "geo": null, "id": 148813719273619460, "id_str": "148813719273619456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687323556/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687323556/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I Thought I Left People Like #ThatOneCoworker In High School..That Class Clown Shit Is SOO Played Out .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:12:49 +0000", "from_user": "purebreid", "from_user_id": 168289596, "from_user_id_str": "168289596", "from_user_name": "corey reid", "geo": null, "id": 148813044456239100, "id_str": "148813044456239104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1656160356/me2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656160356/me2_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@_zenya_ yeah I'm a clown at times also serious lol", "to_user": "_zenya_", "to_user_id": 346132277, "to_user_id_str": "346132277", "to_user_name": "Zenya", "in_reply_to_status_id": 148811720532561920, "in_reply_to_status_id_str": "148811720532561922"}, +{"created_at": "Mon, 19 Dec 2011 17:12:47 +0000", "from_user": "LoveLiveKickz", "from_user_id": 57442084, "from_user_id_str": "57442084", "from_user_name": "Al Springer", "geo": null, "id": 148813037300748300, "id_str": "148813037300748289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700739428/Ag-OfWPCEAAdGkK_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700739428/Ag-OfWPCEAAdGkK_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Hahah i was at ricks doing the \"John Wall\" wildin out with @rudyrich0322 we some characters I seen @iamDJKY in there somewhere. #clown", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:12:24 +0000", "from_user": "Tootie_Montana", "from_user_id": 310599809, "from_user_id_str": "310599809", "from_user_name": "V L N ", "geo": null, "id": 148812941712556030, "id_str": "148812941712556032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1682496249/cRg3m9iu_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682496249/cRg3m9iu_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Why you let Sparkie try to clown you like that lastnight lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:10:55 +0000", "from_user": "ShangTongue", "from_user_id": 47040756, "from_user_id_str": "47040756", "from_user_name": "APimpNamedBluemagicc", "geo": null, "id": 148812565248610300, "id_str": "148812565248610305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1670559481/6TXn4CM3_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670559481/6TXn4CM3_normal", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @SEAN_Returns: RT @Brick_James: Clown niggas willing to trick off for box are so common, chicks begin to expect this desperation from real niggas too. Nah", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:10:46 +0000", "from_user": "Laila_aLEE", "from_user_id": 263525961, "from_user_id_str": "263525961", "from_user_name": "samira leee", "geo": null, "id": 148812527885758460, "id_str": "148812527885758466", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1663712227/Snapshot_20111125_2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663712227/Snapshot_20111125_2_normal.JPG", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@_BeautifulTaee with Corn clown ass , about to go BCK to the doctors office o.O", "to_user": "_BeautifulTaee", "to_user_id": 392492194, "to_user_id_str": "392492194", "to_user_name": "ishakiah shante'", "in_reply_to_status_id": 148812324940156930, "in_reply_to_status_id_str": "148812324940156929"}, +{"created_at": "Mon, 19 Dec 2011 17:10:42 +0000", "from_user": "Kyylaa04", "from_user_id": 185657921, "from_user_id_str": "185657921", "from_user_name": "Kyla DeWeese", "geo": null, "id": 148812513742569470, "id_str": "148812513742569472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680284332/ColorTouch-1323306252679-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680284332/ColorTouch-1323306252679-1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "I reallly love @Gorg_ESS . We clown everytime were together lmao", "to_user": "Gorg_ESS", "to_user_id": 271538723, "to_user_id_str": "271538723", "to_user_name": "Essense Toney", "in_reply_to_status_id": 148812164910694400, "in_reply_to_status_id_str": "148812164910694400"}, +{"created_at": "Mon, 19 Dec 2011 17:09:34 +0000", "from_user": "turkish721", "from_user_id": 359144730, "from_user_id_str": "359144730", "from_user_name": "Turkish", "geo": null, "id": 148812227149959170, "id_str": "148812227149959169", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1611520713/turkish_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611520713/turkish_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Who is this guy with the Krusty the Clown haircut and why is he on everyday? Might as well just pull some jagoff off of the street.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:08:29 +0000", "from_user": "LinkzBoogi3", "from_user_id": 97957732, "from_user_id_str": "97957732", "from_user_name": "Mikey", "geo": null, "id": 148811954901876740, "id_str": "148811954901876736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1620435429/IMG_0618_1__normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620435429/IMG_0618_1__normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "THESE CLOWN ASS POLITICIANS ARE TAKIN AWAY OUR RIGHTS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:08:07 +0000", "from_user": "r_tavares0615", "from_user_id": 417447986, "from_user_id_str": "417447986", "from_user_name": "Ryan Tavares", "geo": null, "id": 148811861868027900, "id_str": "148811861868027904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1649382327/7Xd3928h_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649382327/7Xd3928h_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@kaylahowland12 Nooo I didn't clown! Madd of my contacts got lost ;P", "to_user": "kaylahowland12", "to_user_id": 98221359, "to_user_id_str": "98221359", "to_user_name": "kayla howland", "in_reply_to_status_id": 148811548947779600, "in_reply_to_status_id_str": "148811548947779584"} + +, +{"created_at": "Mon, 19 Dec 2011 19:00:17 +0000", "from_user": "vicapow", "from_user_id": 19411223, "from_user_id_str": "19411223", "from_user_name": "Victor Powell", "geo": null, "id": 148840091555606530, "id_str": "148840091555606528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/802979181/vicapow_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/802979181/vicapow_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @twericb: amazing work @dapsays and @joyent: http://t.co/dAzYXTp3. unparalleled advantages to running high-level lang (#JavaScript) apps on #smartos.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:15 +0000", "from_user": "JMDugan", "from_user_id": 14747526, "from_user_id_str": "14747526", "from_user_name": "Jonathan Dugan", "geo": null, "id": 148838572449988600, "id_str": "148838572449988609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1281815679/Jonathan_Hiking_446x446_FeaturedEffects_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1281815679/Jonathan_Hiking_446x446_FeaturedEffects_3_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rainmakerfiles: @joyent makes long term go-to-market bet http://t.co/XRMLTPQY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:42 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 148836421401186300, "id_str": "148836421401186304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rainmakerfiles: @joyent makes long term go-to-market bet http://t.co/XRMLTPQY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:43 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 148836171487784960, "id_str": "148836171487784961", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @twericb: amazing work @dapsays and @joyent: http://t.co/dAzYXTp3. unparalleled advantages to running high-level lang (#JavaScript) apps on #smartos.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:48 +0000", "from_user": "pofeng", "from_user_id": 10130392, "from_user_id_str": "10130392", "from_user_name": "pofeng", "geo": null, "id": 148822102575820800, "id_str": "148822102575820800", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/59196088/baby_normal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/59196088/baby_normal_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u4E0D\\u597D\\u610F\\u601D\\uFF0C\\u518D\\u5EE3\\u544A\\u4E00\\u4E0B\\uFF0C\\u661F\\u671F\\u4E09\\u6B61\\u8FCE\\u5927\\u5BB6\\u4F86\\u804A MongoDB \\u548C \\u795E\\u901A\\u96FB\\u8166\\u7684 MiCloud ( \\u57FA\\u65BC Joyent \\u7684 SmartOS ) http://t.co/lugCjR27", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:02 +0000", "from_user": "olympum", "from_user_id": 67708760, "from_user_id_str": "67708760", "from_user_name": "Bruno Fernandez-Ruiz", "geo": null, "id": 148821154306588670, "id_str": "148821154306588672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1569983925/large_152524_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1569983925/large_152524_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @twericb: amazing work @dapsays and @joyent: http://t.co/dAzYXTp3. unparalleled advantages to running high-level lang (#JavaScript) apps on #smartos.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:16 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 148820707135078400, "id_str": "148820707135078400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @twericb: amazing work @dapsays and @joyent: http://t.co/dAzYXTp3. unparalleled advantages to running high-level lang (#JavaScript) apps on #smartos.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:38:32 +0000", "from_user": "twericb", "from_user_id": 260001315, "from_user_id_str": "260001315", "from_user_name": "eric b", "geo": null, "id": 148819516019838980, "id_str": "148819516019838976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1367358173/charicjpeg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1367358173/charicjpeg_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "amazing work @dapsays and @joyent: http://t.co/dAzYXTp3. unparalleled advantages to running high-level lang (#JavaScript) apps on #smartos.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:53 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 148817593208274940, "id_str": "148817593208274944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @srsmoot: @joyent New SmartOS release. Burn it. Swap CDs. Boot it. Done.\\n\\nEasiest OS upgrade I've ever experienced by a mile! Awesome work!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:52:17 +0000", "from_user": "JimBorowicz", "from_user_id": 370347719, "from_user_id_str": "370347719", "from_user_name": "Jim Borowicz", "geo": null, "id": 148792777629646850, "id_str": "148792777629646848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1652063701/fCby079Q_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652063701/fCby079Q_normal", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @jasonh: Yes ==> RT @jbueza: wow.. Joyent has their own dhcp, ldap servers written in #NodeJS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:15:09 +0000", "from_user": "IanMmmm", "from_user_id": 131420585, "from_user_id_str": "131420585", "from_user_name": "Ian Massingham", "geo": null, "id": 148783431755636740, "id_str": "148783431755636736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1300068195/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1300068195/image_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "Joyent Announces Academic Program for Educators, Researchers and Students | Joyent http://t.co/3QlkCbR5 < Sun were very successful with this", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 15:09:09 +0000", "from_user": "ryancnelson", "from_user_id": 772763, "from_user_id_str": "772763", "from_user_name": "ryan nelson", "geo": null, "id": 148781924637360130, "id_str": "148781924637360129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/753422343/new_ryan_icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/753422343/new_ryan_icon_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rainmakerfiles: @joyent makes long term go-to-market bet http://t.co/XRMLTPQY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 14:05:00 +0000", "from_user": "moellenbeck", "from_user_id": 1936981, "from_user_id_str": "1936981", "from_user_name": "Martin M\\u00F6llenbeck", "geo": null, "id": 148765778605383680, "id_str": "148765778605383680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/30569592/FlickrIcon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/30569592/FlickrIcon_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @jasonh: Yes ==> RT @jbueza: wow.. Joyent has their own dhcp, ldap servers written in #NodeJS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:57:34 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 148763909929701380, "id_str": "148763909929701376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "coolest mapping apps...Recorded Future & Joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:18:42 +0000", "from_user": "_alram", "from_user_id": 18634105, "from_user_id_str": "18634105", "from_user_name": "Alexandre Marangone", "geo": null, "id": 148754129634861060, "id_str": "148754129634861058", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1546556519/0d99c42c890689da73983ffcd7b6fa69_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546556519/0d99c42c890689da73983ffcd7b6fa69_normal.jpeg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @progmag: Joyent propose un Programme Acad\\u00E9mique destin\\u00E9 aux Educateurs, Chercheurs et Etudiants http://t.co/TrnDvmOm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:17:02 +0000", "from_user": "aredridel", "from_user_id": 17950990, "from_user_id_str": "17950990", "from_user_name": "Aria Stewart", "geo": null, "id": 148753707075502080, "id_str": "148753707075502080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/66907688/Ari-100x100_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/66907688/Ari-100x100_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @jasonh: Yes ==> RT @jbueza: wow.. Joyent has their own dhcp, ldap servers written in #NodeJS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 13:03:53 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 148750397912268800, "id_str": "148750397912268800", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejschina: Joyent's Ryan Dahl\\nhttp://t.co/vKPMBsHd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:58:53 +0000", "from_user": "NickGuide", "from_user_id": 376621830, "from_user_id_str": "376621830", "from_user_name": "nick steve", "geo": null, "id": 148749142418669570, "id_str": "148749142418669569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1652216417/the_cool_look_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652216417/the_cool_look_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/OovhISUx\\nhttp://t.co/IAd4LUhU\\nhttp://t.co/adfCBivt\\nhttp://t.co/qUK72am8\\nhttp://t.co/JG0izMyp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:46:09 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 148745935348961280, "id_str": "148745935348961281", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "new joyent academic program: funding research, enabling research. #instrumentation #nodejs #client http://t.co/za5u1ZJx http://t.co/JuIlkxaG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:43:30 +0000", "from_user": "monkchips", "from_user_id": 61233, "from_user_id_str": "61233", "from_user_name": "James Governor", "geo": null, "id": 148745270572744700, "id_str": "148745270572744705", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627071088/hairstyle_oval_face_women-275x300_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627071088/hairstyle_oval_face_women-275x300_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "new joyent academic program: funding research, enabling research. #instrumentation #nodejs #client http://t.co/nlxmwrzg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:40:19 +0000", "from_user": "tilfin", "from_user_id": 12424612, "from_user_id_str": "12424612", "from_user_name": "Toshimitsu Takahashi", "geo": null, "id": 148744470647668740, "id_str": "148744470647668737", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1225352782/Toshimitsu_Takahashi_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225352782/Toshimitsu_Takahashi_normal.png", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "Node Modules \\u4E00\\u89A7 / \\u201Cmodules\\u201D http://t.co/QNK1B5od", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:40:06 +0000", "from_user": "suitsmen", "from_user_id": 126344236, "from_user_id_str": "126344236", "from_user_name": "suitsmen", "geo": null, "id": 148744412074213380, "id_str": "148744412074213376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Mystery Men Forge Servers For Giants of Internet: Hyve says it can work with a company like Joyent to design a s... http://t.co/hk5bXa3n", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:28:52 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 148741588007399420, "id_str": "148741588007399424", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @progmag: Joyent propose un Programme Acad\\u00E9mique destin\\u00E9 aux Educateurs, Chercheurs et Etudiants http://t.co/TrnDvmOm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:07:22 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 148736175715254270, "id_str": "148736175715254274", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rainmakerfiles: @joyent makes long term go-to-market bet http://t.co/XRMLTPQY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:06:04 +0000", "from_user": "krigibb", "from_user_id": 343481368, "from_user_id_str": "343481368", "from_user_name": "Kristina Gibbs", "geo": null, "id": 148735850195324930, "id_str": "148735850195324928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1464456919/1311797642_hydrologic_cycle_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1464456919/1311797642_hydrologic_cycle_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Joyent\\u00BB Exactly what is a Environmentally friendly Career?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:02:43 +0000", "from_user": "progmag", "from_user_id": 193234862, "from_user_id_str": "193234862", "from_user_name": "Magazine Programmez!", "geo": null, "id": 148735006355898370, "id_str": "148735006355898368", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1128325444/logo-prog-twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1128325444/logo-prog-twitter_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Joyent propose un Programme Acad\\u00E9mique destin\\u00E9 aux Educateurs, Chercheurs et Etudiants http://t.co/TrnDvmOm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:02:25 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 148734930803892220, "id_str": "148734930803892224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Klarna AB, Game Salad, Joyent, & Playnomics become global brands in 2012", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 12:00:06 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 148734346038226940, "id_str": "148734346038226944", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Joyent's Ryan Dahl\\nhttp://t.co/vKPMBsHd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:34:38 +0000", "from_user": "Publikeo", "from_user_id": 368799026, "from_user_id_str": "368799026", "from_user_name": "Publikeo", "geo": null, "id": 148727940149022720, "id_str": "148727940149022720", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534505764/PUBLIKEO72x72_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534505764/PUBLIKEO72x72_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Joyent propose un Programme Acad\\u00E9mique destin\\u00E9 aux Educateurs, Chercheurs et Etudiants: Joyent, fournisseur de s... http://t.co/1PngI6Oj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:34:38 +0000", "from_user": "rodolphejb", "from_user_id": 22965673, "from_user_id_str": "22965673", "from_user_name": "Rodolphe J-B", "geo": null, "id": 148727938702000130, "id_str": "148727938702000128", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Joyent propose un Programme Acad\\u00E9mique destin\\u00E9 aux Educateurs, Chercheurs et Etudiants: Joyent, fournisseur de s... http://t.co/NdqA6rk2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:17:41 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 148723674931937280, "id_str": "148723674931937280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Yes ==> RT @jbueza: wow.. Joyent has their own dhcp, ldap servers written in #NodeJS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 11:17:21 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 148723591050043400, "id_str": "148723591050043393", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rainmakerfiles: @joyent makes long term go-to-market bet http://t.co/XRMLTPQY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:51:17 +0000", "from_user": "justinjasica", "from_user_id": 437463949, "from_user_id_str": "437463949", "from_user_name": "jason", "geo": null, "id": 148717030621712400, "id_str": "148717030621712384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": null, "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/aqFSVuPF\\nhttp://t.co/Sur690jW\\nhttp://t.co/3VdgMIKv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 10:16:24 +0000", "from_user": "otfrom", "from_user_id": 15682551, "from_user_id_str": "15682551", "from_user_name": "Bruce Durling", "geo": null, "id": 148708251532406800, "id_str": "148708251532406785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1675765726/crystal-palace_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675765726/crystal-palace_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@KushalP Joyent's pricing is quite a bit different from mongohq. I'll look at it later.", "to_user": "KushalP", "to_user_id": 13321042, "to_user_id_str": "13321042", "to_user_name": "Kushal Pisavadia", "in_reply_to_status_id": 148544195508969470, "in_reply_to_status_id_str": "148544195508969473"}, +{"created_at": "Mon, 19 Dec 2011 09:53:27 +0000", "from_user": "koichik", "from_user_id": 14453603, "from_user_id_str": "14453603", "from_user_name": "koichik", "geo": null, "id": 148702473421467650, "id_str": "148702473421467648", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1399991501/hs-2010-26-a-small_web_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1399991501/hs-2010-26-a-small_web_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "@sugyan @atsuya Node \\u672C\\u4F53\\u3068\\u306E\\u517C\\u306D\\u5408\\u3044\\u3067\\u56F0\\u3063\\u3066\\u308B\\u306E\\u304B\\u3082\\u3002 https://t.co/poIAi3tb", "to_user": "sugyan", "to_user_id": 15081480, "to_user_id_str": "15081480", "to_user_name": "\\u3059\\u304E\\u3083\\u30FC\\u3093", "in_reply_to_status_id": 148700911424905200, "in_reply_to_status_id_str": "148700911424905216"}, +{"created_at": "Mon, 19 Dec 2011 09:48:03 +0000", "from_user": "peteryorke", "from_user_id": 14136726, "from_user_id_str": "14136726", "from_user_name": "Peter Yorke", "geo": null, "id": 148701117264572400, "id_str": "148701117264572416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/51727717/peter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/51727717/peter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rainmakerfiles: @joyent makes long term go-to-market bet http://t.co/XRMLTPQY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:47:05 +0000", "from_user": "dannybisby", "from_user_id": 210016488, "from_user_id_str": "210016488", "from_user_name": "Danny Bisby", "geo": null, "id": 148700871314767870, "id_str": "148700871314767872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1192263343/65828_1729620521880_1279486773_1913319_691416_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1192263343/65828_1729620521880_1279486773_1913319_691416_n_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Safari on iOS</a>", "text": "@mattysouthall https://t.co/R28HAXce", "to_user": "mattysouthall", "to_user_id": 72399629, "to_user_id_str": "72399629", "to_user_name": "Matty Southall"}, +{"created_at": "Mon, 19 Dec 2011 09:28:04 +0000", "from_user": "rainmakerfiles", "from_user_id": 225145772, "from_user_id_str": "225145772", "from_user_name": "Rainmaker Files", "geo": null, "id": 148696089258762240, "id_str": "148696089258762242", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1453572941/raindance_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1453572941/raindance_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@joyent makes long term go-to-market bet http://t.co/XRMLTPQY", "to_user": "joyent", "to_user_id": 666523, "to_user_id_str": "666523", "to_user_name": "Joyent"}, +{"created_at": "Mon, 19 Dec 2011 09:25:40 +0000", "from_user": "ajlopez", "from_user_id": 14567622, "from_user_id_str": "14567622", "from_user_name": "ajlopez", "geo": null, "id": 148695484851159040, "id_str": "148695484851159040", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/53769404/spiral_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/53769404/spiral_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Node.js Modules http://t.co/jCNOFZa7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:23:49 +0000", "from_user": "jbueza", "from_user_id": 141423083, "from_user_id_str": "141423083", "from_user_name": "Jaime Bueza", "geo": null, "id": 148695019782545400, "id_str": "148695019782545408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "wow.. Joyent has their own dhcp, ldap servers written in #NodeJS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 09:09:48 +0000", "from_user": "ajlopez", "from_user_id": 14567622, "from_user_id_str": "14567622", "from_user_name": "ajlopez", "geo": null, "id": 148691488199544830, "id_str": "148691488199544832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/53769404/spiral_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/53769404/spiral_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Node.js Testing / Spec Frameworks http://t.co/lV73831T", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 06:30:41 +0000", "from_user": "monteslu", "from_user_id": 19749845, "from_user_id_str": "19749845", "from_user_name": "Luis Montes", "geo": null, "id": 148651448526311420, "id_str": "148651448526311424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/207105524/luiscartoon3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/207105524/luiscartoon3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@zef @Nodester @Cloud9IDE Joyent and Heroku are currently the only ones on the list to deploy to from the IDE", "to_user": "zef", "to_user_id": 1444261, "to_user_id_str": "1444261", "to_user_name": "Zef Hemel", "in_reply_to_status_id": 148648303058362370, "in_reply_to_status_id_str": "148648303058362368"}, +{"created_at": "Mon, 19 Dec 2011 03:46:48 +0000", "from_user": "yotzak", "from_user_id": 4266851, "from_user_id_str": "4266851", "from_user_name": "yotzak", "geo": null, "id": 148610204781649920, "id_str": "148610204781649922", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/15950322/seihou_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/15950322/seihou_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Joyent\\u3081\\u3063\\u3061\\u3083\\u524D\\u306B\\u51FA\\u3066\\u304D\\u3066\\u3093\\u3060\\u306A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 03:30:17 +0000", "from_user": "webOSdealer", "from_user_id": 165631348, "from_user_id_str": "165631348", "from_user_name": "webOSdealer", "geo": null, "id": 148606046703857660, "id_str": "148606046703857664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1076178830/twitterLogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1076178830/twitterLogo_normal.jpg", "source": "<a href="http://carbonwebos.com" rel="nofollow">Carbon for WebOS</a>", "text": "Congrats! RT @avi4now: Sweet, my tiny patch to make Date output more consistent landed in Node: https://t.co/WoZ5LUzu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 00:54:55 +0000", "from_user": "TuPresentacion", "from_user_id": 409360147, "from_user_id_str": "409360147", "from_user_name": "TuPresentacion", "geo": null, "id": 148566947167080450, "id_str": "148566947167080448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1632279607/logoround_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632279607/logoround_normal.gif", "source": "<a href="http://www.tupresentacion.net" rel="nofollow">TuPresentacion</a>", "text": "#Hackmtl. A MontrealTechWatch and Wavo.me co-production\\n\\nMain Sponsors:\\n- Joyent\\n- RadialPoint\\n- Cloudops\\n- Wavome\\n\\nAl. http://t.co/NFsKsv1Z", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:55:08 +0000", "from_user": "ahr19", "from_user_id": 15033958, "from_user_id_str": "15033958", "from_user_name": "Amani Roberts", "geo": null, "id": 148551905449218050, "id_str": "148551905449218051", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/432458866/Amani_pic__2_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/432458866/Amani_pic__2_bigger_normal.jpg", "source": "<a href="http://summify.com" rel="nofollow">Summify</a>", "text": "Just got my summary with top news from @luisvaldes, @joyent & @KRAPPS http://t.co/HWA5MBNo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 23:24:30 +0000", "from_user": "KushalP", "from_user_id": 13321042, "from_user_id_str": "13321042", "from_user_name": "Kushal Pisavadia", "geo": null, "id": 148544195508969470, "id_str": "148544195508969473", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/115315481/Zoo_279_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/115315481/Zoo_279_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@otfrom Joyent are handling that at the moment: http://t.co/2SvOxiMt but it's not too difficult to roll your own if you have 4+ machines!", "to_user": "otfrom", "to_user_id": 15682551, "to_user_id_str": "15682551", "to_user_name": "Bruce Durling", "in_reply_to_status_id": 148536167791460350, "in_reply_to_status_id_str": "148536167791460353"}, +{"created_at": "Sun, 18 Dec 2011 22:20:07 +0000", "from_user": "FGRibreau", "from_user_id": 5719692, "from_user_id_str": "5719692", "from_user_name": "Fran\\u00E7ois-G. Ribreau", "geo": null, "id": 148527991515910140, "id_str": "148527991515910145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1117780106/2009_shooting_medium_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1117780106/2009_shooting_medium_normal.png", "source": "<a href="http://fgribreau.com" rel="nofollow">FG</a>", "text": "node-panic - Postmortem debugging facility for Node.js // WiP but still useful http://t.co/PrvzZA9a", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:16:11 +0000", "from_user": "ximplosionx", "from_user_id": 18454468, "from_user_id_str": "18454468", "from_user_name": "Patrick Godwin", "geo": null, "id": 148527000657723400, "id_str": "148527000657723394", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1547507342/166839_487574946138_571461138_6100203_3376723_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1547507342/166839_487574946138_571461138_6100203_3376723_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Would love @Nodester to give me a coupon. Been using Joyent's No.de, and want to see how Nodester stacks up.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 22:14:29 +0000", "from_user": "avi4now", "from_user_id": 11044, "from_user_id_str": "11044", "from_user_name": "Avi Flax", "geo": null, "id": 148526572981329920, "id_str": "148526572981329920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/14462642/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/14462642/avatar_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "Sweet, my tiny patch to make Date output more consistent landed in Node: https://t.co/vrWV7koM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:43:25 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 148488557638582270, "id_str": "148488557638582272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "The Internet Gets Physical: @NYT on the Internet of Things (and M2M) http://t.co/3cURd2AS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:17:33 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 148482046153605120, "id_str": "148482046153605120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @joshuabixby: New blog post: The 20 best web performance links of Q4 http://t.co/BdjSBQAy #webperf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 19:09:11 +0000", "from_user": "TooTallNate", "from_user_id": 277724842, "from_user_id_str": "277724842", "from_user_name": "Nathan Rajlich", "geo": null, "id": 148479943171514370, "id_str": "148479943171514369", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1410702232/5dc62d823e229c44665830bbe429c338_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1410702232/5dc62d823e229c44665830bbe429c338_normal.jpeg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@innoying #nodejs v0.6.6 for iOS source is up: https://t.co/z7g6Qfep", "to_user": "innoying", "to_user_id": 144001499, "to_user_id_str": "144001499", "to_user_name": "Luke Young"}, +{"created_at": "Sun, 18 Dec 2011 17:54:32 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 148461154463776770, "id_str": "148461154463776768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @newrelic: Announcing Contextual Help \\u2013 let us help you more http://t.co/zxOb3Ywi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:54:25 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 148461124541628400, "id_str": "148461124541628416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @mongodb: #MongoSV recap in @gigaom featuring MongoDB users Wordnik, foursquare, and Disney http://t.co/IqgVTeHR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 17:06:28 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 148449057554178050, "id_str": "148449057554178048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Amazon = Amateur Hour\\nIf your research matters,data is invaluable & your infrastructure + uptime are mission critical..\\nhttp://t.co/3vr3wwzO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 16:40:37 +0000", "from_user": "TheGuitarGuyMe", "from_user_id": 150697363, "from_user_id_str": "150697363", "from_user_name": "Parvez Rahman", "geo": null, "id": 148442555477016580, "id_str": "148442555477016576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1180948208/n1034810248_8259_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1180948208/n1034810248_8259_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@jasonh Sorry to say but joyent support is a bit rough man. Can you tell me when will the no.de service will be available?", "to_user": "jasonh", "to_user_id": 10638, "to_user_id_str": "10638", "to_user_name": "Jason Hoffman"}, +{"created_at": "Sun, 18 Dec 2011 14:00:48 +0000", "from_user": "basaldizain", "from_user_id": 319615595, "from_user_id_str": "319615595", "from_user_name": "Vinicius Braga", "geo": null, "id": 148402334114914300, "id_str": "148402334114914305", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1404276816/basaldizain_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1404276816/basaldizain_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@argentinomota A \\u00FAnica coisa boa do nodejs, \\u00E9 a p\\u00E1gina do site da Joyent. Muita boa: http://t.co/54K55xCW #design", "to_user": "argentinomota", "to_user_id": 127994929, "to_user_id_str": "127994929", "to_user_name": "Vanderson Mota", "in_reply_to_status_id": 148398077290614800, "in_reply_to_status_id_str": "148398077290614784"}, +{"created_at": "Sun, 18 Dec 2011 13:51:52 +0000", "from_user": "CloudStrategie", "from_user_id": 345251171, "from_user_id_str": "345251171", "from_user_name": "Pierre ALLYNDREE", "geo": null, "id": 148400088203538430, "id_str": "148400088203538432", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "[FR] Du c\\u00F4t\\u00E9 des fournisseurs - Zoom Offre - Le Programme Acad\\u00E9mique de Joyent.: http://t.co/dJ7icdpr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:51:05 +0000", "from_user": "yssk22", "from_user_id": 15690947, "from_user_id_str": "15690947", "from_user_name": "Yohei Sasaki", "geo": null, "id": 148354589912080400, "id_str": "148354589912080386", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1166169462/elly_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1166169462/elly_normal.png", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "[root@smartos-test ~]# uname -a\\nSunOS smartos-test.local 5.11 joyent_20111206T013343Z i86pc i386 i86pc Solaris", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 10:40:40 +0000", "from_user": "yssk22", "from_user_id": 15690947, "from_user_id_str": "15690947", "from_user_name": "Yohei Sasaki", "geo": null, "id": 148351968698568700, "id_str": "148351968698568704", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1166169462/elly_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1166169462/elly_normal.png", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "joyent \\u76F4\\u63A5\\u4F7F\\u304A\\u3046\\u3002JCB\\u3060\\u3081\\u3063\\u307D\\u3044\\u3051\\u3069\\u3002", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 08:20:24 +0000", "from_user": "mkopala", "from_user_id": 18088431, "from_user_id_str": "18088431", "from_user_name": "Matt Kopala", "geo": null, "id": 148316669788434430, "id_str": "148316669788434432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1136086466/me5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1136086466/me5_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "My head hurts after looking at all the different stuff available with #nodejs. Just this page by itself is crazy: https://t.co/w57Pi1Uh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 07:49:07 +0000", "from_user": "zaynhamdan", "from_user_id": 157632949, "from_user_id_str": "157632949", "from_user_name": "zayn hamdan", "geo": null, "id": 148308797490860030, "id_str": "148308797490860033", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1052227543/IMG00002-20091124-1209_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1052227543/IMG00002-20091124-1209_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "git push joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:31:52 +0000", "from_user": "ykronos", "from_user_id": 17352834, "from_user_id_str": "17352834", "from_user_name": "+#ykronos\\u2122\\u00B3", "geo": null, "id": 148289355478339600, "id_str": "148289355478339584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1217441261/167869_1803493090220_1326643336_32079790_744783_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1217441261/167869_1803493090220_1326643336_32079790_744783_n_normal.jpg", "source": "<a href="http://friendfeed.com" rel="nofollow">FriendFeed</a>", "text": "\\u00B3 Daily is out! http://t.co/sgxdiKDw \\u25B8 Top stories today via @emmyarthur @joyent ... http://t.co/8MdLV1Zb http://t.co/6ZzwP3m0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:30:14 +0000", "from_user": "ykronos", "from_user_id": 17352834, "from_user_id_str": "17352834", "from_user_name": "+#ykronos\\u2122\\u00B3", "geo": null, "id": 148288947519373300, "id_str": "148288947519373313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1217441261/167869_1803493090220_1326643336_32079790_744783_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1217441261/167869_1803493090220_1326643336_32079790_744783_n_normal.jpg", "source": "<a href="http://friendfeed.com" rel="nofollow">FriendFeed</a>", "text": "\\u00B3 Daily is out! http://t.co/sgxdiKDw \\u25B8 Top stories today via @emmyarthur @joyent ...... http://t.co/N5GbpKYn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:30:07 +0000", "from_user": "JitcloudCCLQ", "from_user_id": 88033192, "from_user_id_str": "88033192", "from_user_name": "+#Jitcloudcclq\\u2122^\\u00B3", "geo": null, "id": 148288914963169280, "id_str": "148288914963169280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1631264329/Jitcloud-logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631264329/Jitcloud-logo_normal.png", "source": "<a href="http://ping.fm/" rel="nofollow">Ping.fm</a>", "text": "\\u00B3 Daily is out! http://t.co/8Wh7be7d \\u25B8 Top stories today via @emmyarthur @joyent ... http://t.co/295zGd3H", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 06:29:56 +0000", "from_user": "JitcloudCCLQ", "from_user_id": 88033192, "from_user_id_str": "88033192", "from_user_name": "+#Jitcloudcclq\\u2122^\\u00B3", "geo": null, "id": 148288871996719100, "id_str": "148288871996719106", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1631264329/Jitcloud-logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631264329/Jitcloud-logo_normal.png", "source": "<a href="http://ping.fm/" rel="nofollow">Ping.fm</a>", "text": "\\u00B3 Daily is out! http://t.co/h9zIQw2O \\u25B8 Top stories today via @emmyarthur @joyent ... http://t.co/FBoynTXh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:58:20 +0000", "from_user": "gocho", "from_user_id": 14523807, "from_user_id_str": "14523807", "from_user_name": "gocho", "geo": null, "id": 148280919978024960, "id_str": "148280919978024960", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/943882585/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/943882585/twitter_normal.jpg", "source": "<a href="http://www.yoono.com" rel="nofollow">yoono</a>", "text": "windows,mac,un*x\\u3059\\u3079\\u3066\\u3067\\u975E\\u540C\\u671F\\u901A\\u4FE1\\u30921\\u3064\\u306E\\u30E9\\u30A4\\u30D6\\u30E9\\u30EA\\u3067\\u3053\\u306A\\u3059libuv! #nodejs https://t.co/48a6xC2K", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:28:43 +0000", "from_user": "JitcloudCCLQ", "from_user_id": 88033192, "from_user_id_str": "88033192", "from_user_name": "+#Jitcloudcclq\\u2122^\\u00B3", "geo": null, "id": 148273466926305280, "id_str": "148273466926305280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1631264329/Jitcloud-logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631264329/Jitcloud-logo_normal.png", "source": "<a href="http://paper.li" rel="nofollow">Paper.li</a>", "text": "The *+#Jitcloudcclq\\u2122^\\u00B3 Daily is out! http://t.co/h9zIQw2O \\u25B8 Top stories today via @emmyarthur @joyent @techiealizay", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:03:54 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 148267221536346100, "id_str": "148267221536346113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Virtualization and Cloud Computing is Changing the Network to East-West\\u00A0Routing http://t.co/8vEAQPIo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sun, 18 Dec 2011 05:01:26 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 148266600615776260, "id_str": "148266600615776258", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@linuxprofessor Tell us how you like it!", "to_user": "linuxprofessor", "to_user_id": 24857069, "to_user_id_str": "24857069", "to_user_name": "Marcus Wilhelmsson", "in_reply_to_status_id": 147968533173776400, "in_reply_to_status_id_str": "147968533173776384"}, +{"created_at": "Sun, 18 Dec 2011 03:04:25 +0000", "from_user": "aac", "from_user_id": 50099694, "from_user_id_str": "50099694", "from_user_name": "Andrew Cove", "geo": null, "id": 148237148972261380, "id_str": "148237148972261376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1190870736/Photo_on_2010-11-12_at_14.49_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1190870736/Photo_on_2010-11-12_at_14.49_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I love @pkrumins' \"node.js modules you should know about\" series, because this page scares the hell out of me: https://t.co/qB81uog9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:55:04 +0000", "from_user": "jedisct1", "from_user_id": 17396038, "from_user_id_str": "17396038", "from_user_name": "Frank Denis", "geo": null, "id": 148174400196325380, "id_str": "148174400196325376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/64543895/cv_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/64543895/cv_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @dapsays: The first version of the Node.js DTrace ustack helper just landed in node for the next 0.6 release. https://t.co/ddHvS6bK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 22:52:02 +0000", "from_user": "opensolaris", "from_user_id": 8804942, "from_user_id_str": "8804942", "from_user_name": "OpenSolaris", "geo": null, "id": 148173635352408060, "id_str": "148173635352408064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/25316162/enthus_os_blk_125_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/25316162/enthus_os_blk_125_normal.gif", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @jimpick: Looking at the smartos commits on github. Amazing stuff from @joyent! http://t.co/8uHArh7f", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:48:02 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 148157530802110460, "id_str": "148157530802110464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @sallamar: On the ql.io blog - Setting up ql.io apps on Joyent's no.de - http://t.co/qSbkr2bG - light and simple.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:24:47 +0000", "from_user": "PursueMobile", "from_user_id": 369193926, "from_user_id_str": "369193926", "from_user_name": "Pursue Mobile", "geo": null, "id": 148151678414225400, "id_str": "148151678414225408", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1532057433/PMSquareV2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1532057433/PMSquareV2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Running ql.io on Joyent's no.de http://t.co/hu6F7zJj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:13:56 +0000", "from_user": "zef", "from_user_id": 1444261, "from_user_id_str": "1444261", "from_user_name": "Zef Hemel", "geo": null, "id": 148148946919890940, "id_str": "148148946919890944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1387569845/DSCN1187_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1387569845/DSCN1187_normal.JPG", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@_spyder right. Well you can push to any git repo to deploy, doesn't have to be joyent or heroku.", "to_user": "_spyder", "to_user_id": 54030150, "to_user_id_str": "54030150", "to_user_name": "Andrew Herron", "in_reply_to_status_id": 148148386061750270, "in_reply_to_status_id_str": "148148386061750272"}, +{"created_at": "Sat, 17 Dec 2011 21:05:06 +0000", "from_user": "hnfirehose", "from_user_id": 213117318, "from_user_id_str": "213117318", "from_user_name": "HN Firehose", "geo": null, "id": 148146726988029950, "id_str": "148146726988029953", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218527213/clipartfireservicefirefighterattack_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Running ql.io on Joyent's no.de: http://t.co/jdjKF7JO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 21:04:23 +0000", "from_user": "Newsery5", "from_user_id": 245368398, "from_user_id_str": "245368398", "from_user_name": "Newsery5", "geo": null, "id": 148146544296734720, "id_str": "148146544296734720", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.twitter.com" rel="nofollow">RSSToHere</a>", "text": "Running ql.io on Joyent's no.de - http://t.co/lOyb7ysh - [Hacker News FH]", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:53:40 +0000", "from_user": "TopCloudHosting", "from_user_id": 170814667, "from_user_id_str": "170814667", "from_user_name": "CloudComputing", "geo": null, "id": 148143849435430900, "id_str": "148143849435430912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1090310223/cloud_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1090310223/cloud_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @TechnoMile Affordable #business #Internet service, #business VoIP, #Joyent #cloud computing & more! We make it easy to comp... h...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:42:40 +0000", "from_user": "TechnoMile", "from_user_id": 89779407, "from_user_id_str": "89779407", "from_user_name": "TechnoMile LLC", "geo": null, "id": 148141079936499700, "id_str": "148141079936499712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1187113101/techomile_normal_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1187113101/techomile_normal_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Affordable #business #Internet service, #business VoIP, #Joyent #cloud computing & more! We make it easy to comp... http://t.co/3MQaMK5D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:41:38 +0000", "from_user": "rbergman", "from_user_id": 14172332, "from_user_id_str": "14172332", "from_user_name": "rbergman", "geo": null, "id": 148140819528957950, "id_str": "148140819528957952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1179525078/bob_mug_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1179525078/bob_mug_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @sallamar: On the ql.io blog - Setting up ql.io apps on Joyent's no.de - http://t.co/qSbkr2bG - light and simple.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:41:30 +0000", "from_user": "uniserveTelecom", "from_user_id": 426153054, "from_user_id_str": "426153054", "from_user_name": "Uniserve", "geo": null, "id": 148140787664826370, "id_str": "148140787664826368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668689685/uniserve_icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668689685/uniserve_icon_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Affordable #business #Internet service, #business VoIP, #Joyent #cloud computing & more! We make it easy to compete. http://t.co/FLLhSK0r", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:19:05 +0000", "from_user": "sallamar", "from_user_id": 14075246, "from_user_id_str": "14075246", "from_user_name": "Subbu Allamaraju", "geo": null, "id": 148135144413347840, "id_str": "148135144413347841", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1226428183/subbu_pixel_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1226428183/subbu_pixel_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "On the ql.io blog - Setting up ql.io apps on Joyent's no.de - http://t.co/qSbkr2bG - light and simple.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 20:17:53 +0000", "from_user": "DeirdreS", "from_user_id": 625093, "from_user_id_str": "625093", "from_user_name": "Deirdr\\u00E9 Straughan", "geo": null, "id": 148134841240649730, "id_str": "148134841240649729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1273049375/dpink_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273049375/dpink_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @linuxprofessor: it's snowing and I'm trying SmartOS from @joyent in VMware. a good day indeed!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 18:58:17 +0000", "from_user": "FabienNiget", "from_user_id": 439404043, "from_user_id_str": "439404043", "from_user_name": "Fabien Niget", "geo": null, "id": 148114812948332540, "id_str": "148114812948332544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": null, "source": "<a href="http://twitter.com/">web</a>", "text": "The new Joyent Academic Program http://t.co/NAkfwpIH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 16:43:13 +0000", "from_user": "AntonyPavlenko", "from_user_id": 245227705, "from_user_id_str": "245227705", "from_user_name": "Antony Pavlenko", "geo": null, "id": 148080818999398400, "id_str": "148080818999398400", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1442757884/me_8_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1442757884/me_8_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@ssilaev mediatemple \\u043D\\u0435 \\u0432\\u0438\\u0434\\u0435\\u043B. Rackspace \\u0445\\u043E\\u0440\\u043E\\u0448. \\u0415\\u0441\\u043B\\u0438 \\u043F\\u043B\\u0430\\u043D\\u0438\\u0440\\u0443\\u0435\\u0448\\u044C \\u043F\\u0438\\u0441\\u0430\\u0442\\u044C \\u043F\\u0440\\u0438\\u043B\\u043E\\u0436\\u0435\\u043D\\u0438\\u0435 \\u0432 \\u043E\\u0431\\u043B\\u0430\\u043A\\u0435 \\u0442\\u043E \\u043F\\u043E\\u0441\\u043C\\u043E\\u0442\\u0440\\u0438 \\u043D\\u0430 joyent. \\u041D\\u0430 Node.js \\u043D\\u0430\\u043F\\u0440\\u0438\\u043C\\u0435\\u0440", "to_user": "ssilaev", "to_user_id": 154818824, "to_user_id_str": "154818824", "to_user_name": "Sergey M Silaev", "in_reply_to_status_id": 148012467769966600, "in_reply_to_status_id_str": "148012467769966593"}, +{"created_at": "Sat, 17 Dec 2011 16:41:04 +0000", "from_user": "stackfeed", "from_user_id": 237310237, "from_user_id_str": "237310237", "from_user_name": "StackOverflow", "geo": null, "id": 148080277590261760, "id_str": "148080277590261760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "how c++ nest namespace works?: Arugments is define in v8::internal namespace\\n\\nhttps://t.co/y4g0HOYH... http://t.co/uLk0jAdn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:40:10 +0000", "from_user": "NickGuide", "from_user_id": 376621830, "from_user_id_str": "376621830", "from_user_name": "nick steve", "geo": null, "id": 148019654508556300, "id_str": "148019654508556289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1652216417/the_cool_look_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652216417/the_cool_look_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/mdUm4keI\\nhttp://t.co/ygqxkqMh\\nhttp://t.co/88rBu7ip\\nhttp://t.co/EOlFTjIv\\nhttp://t.co/xiPObSZd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 12:36:54 +0000", "from_user": "turtle2005", "from_user_id": 54184073, "from_user_id_str": "54184073", "from_user_name": "Hitoshi Kamezaki", "geo": null, "id": 148018833259626500, "id_str": "148018833259626496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/351040572/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/351040572/twitterProfilePhoto_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I favorited a @YouTube video http://t.co/PZoTQJAP StackMob on Joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 10:16:26 +0000", "from_user": "udomsak", "from_user_id": 21276967, "from_user_id_str": "21276967", "from_user_name": "udomsak chundang", "geo": null, "id": 147983484420501500, "id_str": "147983484420501506", "iso_language_code": "hu", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/965336883/cfbbf8d5-9e74-432e-95bc-3ae4dbba8802_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/965336883/cfbbf8d5-9e74-432e-95bc-3ae4dbba8802_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Amazon EC2 vs IBM vs Microsoft Windows Azure vs HP vs Joyent... http://t.co/Ov1j3uqZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:27:05 +0000", "from_user": "TheCloudNetwork", "from_user_id": 24609329, "from_user_id_str": "24609329", "from_user_name": "The Cloud Network ", "geo": null, "id": 147971065921015800, "id_str": "147971065921015808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1576230067/97143_matter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576230067/97143_matter_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Cloud #Security Joyent Announces Academic Program for Educators, Researchers and Students - PR-US... http://t.co/eKFRNjvQ #TCN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 09:17:02 +0000", "from_user": "linuxprofessor", "from_user_id": 24857069, "from_user_id_str": "24857069", "from_user_name": "Marcus Wilhelmsson", "geo": null, "id": 147968533173776400, "id_str": "147968533173776384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1650005726/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650005726/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "it's snowing and I'm trying SmartOS from @joyent in VMware. a good day indeed!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 07:02:37 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147934706799886340, "id_str": "147934706799886336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@GoldFireStudios I'll give you a call about your experience. We'd love to hear about it.", "to_user": "GoldFireStudios", "to_user_id": 19056517, "to_user_id_str": "19056517", "to_user_name": "James Simpson", "in_reply_to_status_id": 147816775793381380, "in_reply_to_status_id_str": "147816775793381376"}, +{"created_at": "Sat, 17 Dec 2011 07:01:20 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147934382890561540, "id_str": "147934382890561536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @JeromeParadis: @jamesaduncan one of @joyent's 2 CTOs talking at the Nodejs/mongodb/redis Hackathon. http://t.co/as9hQrX2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:46:00 +0000", "from_user": "valb00", "from_user_id": 15373404, "from_user_id_str": "15373404", "from_user_name": "valb00", "geo": null, "id": 147900325838331900, "id_str": "147900325838331904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1162802602/screen-capture-4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1162802602/screen-capture-4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @peteryorke: Node.js in #Windows #Azure, To the Cloud and Beyond! http://t.co/ansvPxiT @joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:45:35 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 147900222968832000, "id_str": "147900222968832000", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @peteryorke: @Joyent partner @StackMob\\u2019s Mobile App Platform Is Now Publicly Available http://t.co/9UJCwxyT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:35:19 +0000", "from_user": "peteryorke", "from_user_id": 14136726, "from_user_id_str": "14136726", "from_user_name": "Peter Yorke", "geo": null, "id": 147897638816186370, "id_str": "147897638816186368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/51727717/peter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/51727717/peter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Node.js in #Windows #Azure, To the Cloud and Beyond! http://t.co/ansvPxiT @joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 04:12:52 +0000", "from_user": "peteryorke", "from_user_id": 14136726, "from_user_id_str": "14136726", "from_user_name": "Peter Yorke", "geo": null, "id": 147891987842994180, "id_str": "147891987842994177", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/51727717/peter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/51727717/peter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Joyent partner @StackMob\\u2019s Mobile App Platform Is Now Publicly Available http://t.co/9UJCwxyT", "to_user": "joyent", "to_user_id": 666523, "to_user_id_str": "666523", "to_user_name": "Joyent"}, +{"created_at": "Sat, 17 Dec 2011 01:21:01 +0000", "from_user": "DeirdreS", "from_user_id": 625093, "from_user_id_str": "625093", "from_user_name": "Deirdr\\u00E9 Straughan", "geo": null, "id": 147848742974930940, "id_str": "147848742974930944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1273049375/dpink_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273049375/dpink_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @aliasaria: SmartOS is happening at Well.ca. Thanks @joyent - You're wolcome!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Sat, 17 Dec 2011 00:33:45 +0000", "from_user": "aliasaria", "from_user_id": 11439872, "from_user_id_str": "11439872", "from_user_name": "ali asaria", "geo": null, "id": 147836847341568000, "id_str": "147836847341568000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/448585602/face_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/448585602/face_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "SmartOS is happening at Well.ca. Thanks @joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Sat, 17 Dec 2011 00:25:16 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 147834711908159500, "id_str": "147834711908159489", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @jimpick: Looking at the smartos commits on github. Amazing stuff from @joyent! http://t.co/8uHArh7f", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:56:22 +0000", "from_user": "trufae", "from_user_id": 15364094, "from_user_id_str": "15364094", "from_user_name": "pancake", "geo": null, "id": 147827437714153470, "id_str": "147827437714153474", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1291415517/abdadcat_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1291415517/abdadcat_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @dapsays: The first version of the Node.js DTrace ustack helper just landed in node for the next 0.6 release. https://t.co/czOyNgQM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:48:23 +0000", "from_user": "mikeal", "from_user_id": 668423, "from_user_id_str": "668423", "from_user_name": "Mikeal", "geo": null, "id": 147825428114059260, "id_str": "147825428114059265", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1554648053/avatar-bw_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554648053/avatar-bw_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@polotek @tjholowaychuk @izs https://t.co/P1DnWHmX", "to_user": "polotek", "to_user_id": 20079975, "to_user_id_str": "20079975", "to_user_name": "Marco Rogers", "in_reply_to_status_id": 147823080838926340, "in_reply_to_status_id_str": "147823080838926336"}, +{"created_at": "Fri, 16 Dec 2011 23:25:44 +0000", "from_user": "JeromeParadis", "from_user_id": 7025052, "from_user_id_str": "7025052", "from_user_name": "Jerome Paradis", "geo": null, "id": 147819724519112700, "id_str": "147819724519112705", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/565533545/0375_c_50pct_Square_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/565533545/0375_c_50pct_Square_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@jamesaduncan one of @joyent's 2 CTOs talking at the Nodejs/mongodb/redis Hackathon. http://t.co/as9hQrX2", "to_user": "jamesaduncan", "to_user_id": 1720581, "to_user_id_str": "1720581", "to_user_name": "James Duncan"}, +{"created_at": "Fri, 16 Dec 2011 23:24:51 +0000", "from_user": "DeirdreS", "from_user_id": 625093, "from_user_id_str": "625093", "from_user_name": "Deirdr\\u00E9 Straughan", "geo": null, "id": 147819509120638980, "id_str": "147819509120638977", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1273049375/dpink_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273049375/dpink_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @dapsays: The first version of the Node.js DTrace ustack helper just landed in node for the next 0.6 release. https://t.co/czOyNgQM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:18:43 +0000", "from_user": "peteryorke", "from_user_id": 14136726, "from_user_id_str": "14136726", "from_user_name": "Peter Yorke", "geo": null, "id": 147817961724448770, "id_str": "147817961724448768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/51727717/peter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/51727717/peter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@hyungjoo_ no.de service should be fixed, send in a ticket to support@joyent.com if you continue to have a problem @joyent", "to_user": "hyungjoo_", "to_user_id": 52583469, "to_user_id_str": "52583469", "to_user_name": "\\uC1A1\\uD615\\uC8FC(Hyungjoo Song)", "in_reply_to_status_id": 147756469188694000, "in_reply_to_status_id_str": "147756469188694016"}, +{"created_at": "Fri, 16 Dec 2011 23:14:30 +0000", "from_user": "DeirdreS", "from_user_id": 625093, "from_user_id_str": "625093", "from_user_name": "Deirdr\\u00E9 Straughan", "geo": null, "id": 147816904407519230, "id_str": "147816904407519232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1273049375/dpink_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273049375/dpink_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @diorahman: what makes http://t.co/9CL6RoCr better? @joyent ? - I'd suggest starting here: http://t.co/TS0TJ0Tr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 23:05:45 +0000", "from_user": "d24m", "from_user_id": 78574363, "from_user_id_str": "78574363", "from_user_name": "Oliver Heller", "geo": null, "id": 147814699491274750, "id_str": "147814699491274752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/617828898/star_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/617828898/star_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Fork Yeah! The Rise & Development of illumos http://t.co/4DJ7Nz5m #lisa11 #illumos #joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:44:28 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147809345000841200, "id_str": "147809345000841217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@GoldFireStudios Did you get up and running on SmartOS SmartMachines? Or decide to do KVM Linux?", "to_user": "GoldFireStudios", "to_user_id": 19056517, "to_user_id_str": "19056517", "to_user_name": "James Simpson", "in_reply_to_status_id": 147741893646762000, "in_reply_to_status_id_str": "147741893646761984"}, +{"created_at": "Fri, 16 Dec 2011 22:23:24 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 147804042532356100, "id_str": "147804042532356096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @dapsays: The first version of the Node.js DTrace ustack helper just landed in node for the next 0.6 release. https://t.co/czOyNgQM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:23:01 +0000", "from_user": "ryah", "from_user_id": 18975861, "from_user_id_str": "18975861", "from_user_name": "Ryan Dahl", "geo": null, "id": 147803946042404860, "id_str": "147803946042404864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1634041610/name_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634041610/name_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @dapsays: The first version of the Node.js DTrace ustack helper just landed in node for the next 0.6 release. https://t.co/czOyNgQM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:16:09 +0000", "from_user": "BonzoESC", "from_user_id": 7865582, "from_user_id_str": "7865582", "from_user_name": "Bryce Kerley", "geo": null, "id": 147802219767529470, "id_str": "147802219767529472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1084524181/bryce_smiling_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1084524181/bryce_smiling_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@capotej it was pretty rad working with SMF on @joyent for a year; got my rakefiles spitting out the right XML", "to_user": "capotej", "to_user_id": 8898642, "to_user_id_str": "8898642", "to_user_name": "Julio Capote", "in_reply_to_status_id": 147800834036604930, "in_reply_to_status_id_str": "147800834036604928"}, +{"created_at": "Fri, 16 Dec 2011 22:12:13 +0000", "from_user": "brendangregg", "from_user_id": 208212889, "from_user_id_str": "208212889", "from_user_name": "Brendan Gregg", "geo": null, "id": 147801229664325630, "id_str": "147801229664325633", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1441835128/bicon3t_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1441835128/bicon3t_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @dapsays: The first version of the Node.js DTrace ustack helper just landed in node for the next 0.6 release. https://t.co/czOyNgQM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 22:02:24 +0000", "from_user": "dapsays", "from_user_id": 247636179, "from_user_id_str": "247636179", "from_user_name": "Dave Pacheco", "geo": null, "id": 147798757109542900, "id_str": "147798757109542912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1235295953/DSC_4227_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1235295953/DSC_4227_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "The first version of the Node.js DTrace ustack helper just landed in node for the next 0.6 release. https://t.co/czOyNgQM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 21:47:03 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 147794894335901700, "id_str": "147794894335901696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "RT @alexr: @mmalex Cloud perf analysis stuff that Joyent is doing with Node and DTrace makes \"full JS\" very appealing despite the Tropic Thunder ref.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 20:58:48 +0000", "from_user": "alexr", "from_user_id": 473583, "from_user_id_str": "473583", "from_user_name": "Alex Rosenberg", "geo": null, "id": 147782750580125700, "id_str": "147782750580125696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/17909762/alexr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/17909762/alexr_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "@mmalex Cloud perf analysis stuff that Joyent is doing with Node and DTrace makes \"full JS\" very appealing despite the Tropic Thunder ref.", "to_user": "mmalex", "to_user_id": 14197132, "to_user_id_str": "14197132", "to_user_name": "mmalex", "in_reply_to_status_id": 147756999524880400, "in_reply_to_status_id_str": "147756999524880384"}, +{"created_at": "Fri, 16 Dec 2011 19:14:22 +0000", "from_user": "hyungjoo_", "from_user_id": 52583469, "from_user_id_str": "52583469", "from_user_name": "\\uC1A1\\uD615\\uC8FC(Hyungjoo Song)", "geo": null, "id": 147756469188694000, "id_str": "147756469188694016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1219388658/___normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1219388658/___normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@joyent currently, i can't access my no.de machine with the error \"ssh: connect to host http://t.co/dFDEh7Gi port 36782: Connection refused\"", "to_user": "joyent", "to_user_id": 666523, "to_user_id_str": "666523", "to_user_name": "Joyent"}, +{"created_at": "Fri, 16 Dec 2011 18:20:35 +0000", "from_user": "scottherson", "from_user_id": 89247454, "from_user_id_str": "89247454", "from_user_name": "scott herson", "geo": null, "id": 147742937172807680, "id_str": "147742937172807680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1281899263/fiji_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1281899263/fiji_normal", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "@Joyent partner @StackMob\\u2019s Mobile App Platform Is Now Publicly\\u00A0Available http://t.co/w2BnGNfO via @techcrunch", "to_user": "joyent", "to_user_id": 666523, "to_user_id_str": "666523", "to_user_name": "Joyent"}, +{"created_at": "Fri, 16 Dec 2011 17:53:28 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147736113174413300, "id_str": "147736113174413313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://www.flipboard.com" rel="nofollow">Flipboard</a>", "text": "RT @mthiele10: RT @VentureBeat: Google gets patent for its driverless cars - http://t.co/zhk4pV7x by @JolieODell", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:40:04 +0000", "from_user": "davidpaulyoung", "from_user_id": 10637, "from_user_id_str": "10637", "from_user_name": "David Young", "geo": null, "id": 147732737829253120, "id_str": "147732737829253121", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/14395312/icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/14395312/icon_normal.jpg", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "I'm at Joyent (345 California St, #2000, San Francisco) http://t.co/oZqlK1hM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:35:04 +0000", "from_user": "2drunk_", "from_user_id": 47107970, "from_user_id_str": "47107970", "from_user_name": "Gabi do M\\u00FCller", "geo": null, "id": 147731481949782000, "id_str": "147731481949782016", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1679533425/aaaa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679533425/aaaa_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@__CherryBomb_ http://t.co/eJVYlolr faz seu login e entra no msn pra eu te explicar os bangs huahua", "to_user": "__CherryBomb_", "to_user_id": 224526530, "to_user_id_str": "224526530", "to_user_name": "Felipe Alves", "in_reply_to_status_id": 147731036468543500, "in_reply_to_status_id_str": "147731036468543488"}, +{"created_at": "Fri, 16 Dec 2011 17:24:17 +0000", "from_user": "lgpiper", "from_user_id": 10230312, "from_user_id_str": "10230312", "from_user_name": "Larry Piper", "geo": null, "id": 147728767563997200, "id_str": "147728767563997186", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1540427281/sloth_m_300_tr_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1540427281/sloth_m_300_tr_normal.png", "source": "<a href="http://seesmic.com/seesmic_desktop/sd2" rel="nofollow">Seesmic Desktop</a>", "text": "@lderezinski @chorrell Pretty sure this whole thread is spam (link in first post), but I'm asking you to decide : http://t.co/fbaae9Kz", "to_user": "lderezinski", "to_user_id": 6166672, "to_user_id_str": "6166672", "to_user_name": "Linda Derezinski"}, +{"created_at": "Fri, 16 Dec 2011 17:21:50 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147728150120505340, "id_str": "147728150120505344", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@gamesalad Very nice redesign! Much cleaner.", "to_user": "gamesalad", "to_user_id": 16869298, "to_user_id_str": "16869298", "to_user_name": "GameSalad", "in_reply_to_status_id": 147372290789736450, "in_reply_to_status_id_str": "147372290789736448"}, +{"created_at": "Fri, 16 Dec 2011 17:21:26 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147728051403374600, "id_str": "147728051403374592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @newrelic: Case Study See how eCommerce leader Mercado Libre ensures superior performance across thousands of servers in the cloud http://t.co/yhAr72jw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:21:13 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147727995258417150, "id_str": "147727995258417152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @basho: Announcing Riaknostic, your Riak Doctor. http://t.co/Adx1ljOw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:21:05 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147727962106626050, "id_str": "147727962106626049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Growing Up http://t.co/PD4JktSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:20:48 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147727892183384060, "id_str": "147727892183384065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://www.mysqlperformanceblog.com" rel="nofollow">MySQL Performance Blog</a>", "text": "RT @Percona: Jay Janssen blogs on Setting up XFS on Hardware RAID -- the simple edition http://t.co/DTNq3kki #Performance #raid #Storage_Engine", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 17:20:29 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147727812365778940, "id_str": "147727812365778945", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@Laticiaybaf :)", "to_user": "Laticiaybaf", "to_user_id": 426278322, "to_user_id_str": "426278322", "to_user_name": "Laticia Pennant", "in_reply_to_status_id": 147589059018113020, "in_reply_to_status_id_str": "147589059018113024"}, +{"created_at": "Fri, 16 Dec 2011 17:07:00 +0000", "from_user": "SFDevJobs", "from_user_id": 411245524, "from_user_id_str": "411245524", "from_user_name": "San Fran Dev Jobs", "geo": null, "id": 147724417605185540, "id_str": "147724417605185536", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1652355565/devjobs-logo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652355565/devjobs-logo_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#sf Web Developer \\u2013 Joyent Public Cloud http://t.co/zS4lD2nN #devjob #jobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 16:18:47 +0000", "from_user": "kjjaeger", "from_user_id": 16145300, "from_user_id_str": "16145300", "from_user_name": "Kenneth J. Jaeger", "geo": null, "id": 147712285413093380, "id_str": "147712285413093376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1176176390/a1e40791-709e-43ee-91d9-ef666c36d521_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1176176390/a1e40791-709e-43ee-91d9-ef666c36d521_normal.png", "source": "<a href="http://tweetli.st/" rel="nofollow">TweetList Pro</a>", "text": "RT @simonmcc: Brian Cantrill Joyent on Sun acquisition; \"I went to Oracle with an open mind. It was an incredible waste of openmindedness.\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 14:05:52 +0000", "from_user": "freshports_org", "from_user_id": 22240332, "from_user_id_str": "22240332", "from_user_name": "freshports.org", "geo": null, "id": 147678835578646530, "id_str": "147678835578646529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/84433341/freshports_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/84433341/freshports_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "www/node - 0.6.6: - Update to 0.6.6\\n\\nChanges: http://t.co/PznaqraD\\nPR: ... http://t.co/Xnhj50tG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:25:18 +0000", "from_user": "ivanhoe011", "from_user_id": 66363468, "from_user_id_str": "66363468", "from_user_name": "Ivan Dilber", "geo": null, "id": 147668626944692220, "id_str": "147668626944692228", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1192123302/smajli_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1192123302/smajli_normal.jpeg", "source": "<a href="http://proxlet.com" rel="nofollow">Proxlet</a>", "text": "Joyent ima moto \"smart computing\" ali servis http://t.co/MzdnUAyh im je bolno glupav, moram da nadjem neki bolji nacin za cuvanje snippeta", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 13:02:06 +0000", "from_user": "DegreePrograOMK", "from_user_id": 386471764, "from_user_id_str": "386471764", "from_user_name": "Lucia Charter", "geo": null, "id": 147662788960063500, "id_str": "147662788960063488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1609654729/1319743086_online-degree-program_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609654729/1319743086_online-degree-program_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Joyent Announces Academic Program for Educators, Researchers and Students", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:48:04 +0000", "from_user": "federicocarrara", "from_user_id": 111273752, "from_user_id_str": "111273752", "from_user_name": "federico carrara", "geo": null, "id": 147629058300194800, "id_str": "147629058300194816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689982772/federico-carrara_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689982772/federico-carrara_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @charlesbeeler: Seems like @twitter is having a lot of perf issues in the past few days. Ought to run it on the @Joyent Public Cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 10:46:54 +0000", "from_user": "hirojin", "from_user_id": 39625343, "from_user_id_str": "39625343", "from_user_name": "Igor Gali\\u0107", "geo": null, "id": 147628760886284300, "id_str": "147628760886284288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/411312644/twitter_first_try_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/411312644/twitter_first_try_normal.jpg", "source": "<a href="http://twirssi.com" rel="nofollow">Twirssi</a>", "text": "@kvegh There's a dude called John Sonnenschein working for Joyent? whoa.", "to_user": "kvegh", "to_user_id": 50073503, "to_user_id_str": "50073503", "to_user_name": "Karoly Vegh", "in_reply_to_status_id": 147626941258792960, "in_reply_to_status_id_str": "147626941258792960"}, +{"created_at": "Fri, 16 Dec 2011 10:10:36 +0000", "from_user": "diorahman", "from_user_id": 17058778, "from_user_id_str": "17058778", "from_user_name": "Dhi Aurrahman", "geo": null, "id": 147619627088875520, "id_str": "147619627088875520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1580655908/dio_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580655908/dio_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "what makes http://t.co/VBBXMglU better? @joyent ?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:48:10 +0000", "from_user": "forgetcomputers", "from_user_id": 15758840, "from_user_id_str": "15758840", "from_user_name": "Forget Computers", "geo": null, "id": 147613983359238140, "id_str": "147613983359238144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/316992618/newicon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/316992618/newicon_normal.png", "source": "<a href="http://paper.li" rel="nofollow">Paper.li</a>", "text": "Forget Computers Mac & iOS News is out! http://t.co/jF5cvcPx \\u25B8 Top stories today via @zendesk @joyent @canadait @creativebitsorg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:42:37 +0000", "from_user": "miumiento", "from_user_id": 63054849, "from_user_id_str": "63054849", "from_user_name": "Mariano Iumiento", "geo": null, "id": 147612586618261500, "id_str": "147612586618261504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/390812352/n1337751248_30237737_23_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/390812352/n1337751248_30237737_23_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @srsmoot: @joyent New SmartOS release. Burn it. Swap CDs. Boot it. Done.\\n\\nEasiest OS upgrade I've ever experienced by a mile! Awesome work!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 09:02:32 +0000", "from_user": "mongodb_news", "from_user_id": 218710958, "from_user_id_str": "218710958", "from_user_name": "MongoDb", "geo": null, "id": 147602499463954430, "id_str": "147602499463954432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1173473945/imgres-1_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1173473945/imgres-1_normal.jpeg", "source": "<a href="http://skeedy.com" rel="nofollow">RuntimeSkeedy</a>", "text": "Joyent Announces SmartMachine Appliance for MongoDB Joyent Announces SmartMachine Appliance for MongoDB http://t.co/qaziW270", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:27:27 +0000", "from_user": "jedschmidt", "from_user_id": 815114, "from_user_id_str": "815114", "from_user_name": "Jed Schmidt", "geo": null, "id": 147593666960171000, "id_str": "147593666960171009", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1164735503/Jed_Schmidt_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1164735503/Jed_Schmidt_normal.jpeg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@mikeal heh, then ask @ryah why he added it to node: http://t.co/Jo88TfOp", "to_user": "mikeal", "to_user_id": 668423, "to_user_id_str": "668423", "to_user_name": "Mikeal", "in_reply_to_status_id": 147571564676792320, "in_reply_to_status_id_str": "147571564676792320"}, +{"created_at": "Fri, 16 Dec 2011 08:06:31 +0000", "from_user": "danvatca", "from_user_id": 13383732, "from_user_id_str": "13383732", "from_user_name": "Dan Vatca", "geo": null, "id": 147588402324320260, "id_str": "147588402324320256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1412100158/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1412100158/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @peteryorke: video from @bcantrill's #LISA11 talk - Fork Yeah! The Rise and Development of illumos \\u2013 http://t.co/NwPomIby http://t.co/SWx2mVeu @joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 08:04:01 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147587773203873800, "id_str": "147587773203873792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Excellent Xmas Party at Joyent HQ in SF. Veuve+ Angry Birds + Good Convos = holiday cheer. Thanks @davidpaulyoung and team.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:52:59 +0000", "from_user": "jonzobrist", "from_user_id": 169299463, "from_user_id_str": "169299463", "from_user_name": "Jon Zobrist", "geo": null, "id": 147584994867560450, "id_str": "147584994867560448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1279516177/jon_n_les_2009_canada_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1279516177/jon_n_les_2009_canada_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @srsmoot: @joyent New SmartOS release. Burn it. Swap CDs. Boot it. Done.\\n\\nEasiest OS upgrade I've ever experienced by a mile! Awesome work!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:52:56 +0000", "from_user": "jonzobrist", "from_user_id": 169299463, "from_user_id_str": "169299463", "from_user_name": "Jon Zobrist", "geo": null, "id": 147584983903633400, "id_str": "147584983903633408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1279516177/jon_n_les_2009_canada_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1279516177/jon_n_les_2009_canada_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @jimpick: Looking at the smartos commits on github. Amazing stuff from @joyent! http://t.co/8uHArh7f", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:50:58 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147584488963190800, "id_str": "147584488963190784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @srsmoot: @joyent New SmartOS release. Burn it. Swap CDs. Boot it. Done.\\n\\nEasiest OS upgrade I've ever experienced by a mile! Awesome work!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:50:40 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147584413994205200, "id_str": "147584413994205185", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @jimpick: Looking at the smartos commits on github. Amazing stuff from @joyent! http://t.co/8uHArh7f", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:50:18 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147584318879961100, "id_str": "147584318879961088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@polotek @jasonh Would love detailed feedback. Want to DM me your email so we can connect? Tnx!", "to_user": "polotek", "to_user_id": 20079975, "to_user_id_str": "20079975", "to_user_name": "Marco Rogers", "in_reply_to_status_id": 147583744574881800, "in_reply_to_status_id_str": "147583744574881792"}, +{"created_at": "Fri, 16 Dec 2011 07:48:01 +0000", "from_user": "polotek", "from_user_id": 20079975, "from_user_id_str": "20079975", "from_user_name": "Marco Rogers", "geo": null, "id": 147583744574881800, "id_str": "147583744574881792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/422439290/n739064999_192287_1980_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/422439290/n739064999_192287_1980_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@jasonh @joyent smartdc api. I can't manage to access anything. Think my ssh key isn't working.", "to_user": "jasonh", "to_user_id": 10638, "to_user_id_str": "10638", "to_user_name": "Jason Hoffman", "in_reply_to_status_id": 147583081908412400, "in_reply_to_status_id_str": "147583081908412417"}, +{"created_at": "Fri, 16 Dec 2011 07:47:07 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 147583519521116160, "id_str": "147583519521116160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @srsmoot: @joyent New SmartOS release. Burn it. Swap CDs. Boot it. Done.\\n\\nEasiest OS upgrade I've ever experienced by a mile! Awesome work!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:45:23 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 147583081908412400, "id_str": "147583081908412417", "iso_language_code": "hu", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@polotek docs for what? /cc @joyent", "to_user": "polotek", "to_user_id": 20079975, "to_user_id_str": "20079975", "to_user_name": "Marco Rogers", "in_reply_to_status_id": 147571095208333300, "in_reply_to_status_id_str": "147571095208333312"}, +{"created_at": "Fri, 16 Dec 2011 07:09:06 +0000", "from_user": "harutama", "from_user_id": 61853153, "from_user_id_str": "61853153", "from_user_name": "sunao tomita", "geo": null, "id": 147573951722303500, "id_str": "147573951722303488", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/341641786/20090719003335_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/341641786/20090719003335_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\\u3055\\u3044\\u304D\\u3093Joyent\\u306E\\u30D0\\u30CA\\u30FC\\u5E83\\u544A\\u304C\\u591A\\u3044\\u306D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 07:02:45 +0000", "from_user": "fatshotty", "from_user_id": 95258760, "from_user_id_str": "95258760", "from_user_name": "Fabio", "geo": null, "id": 147572354111897600, "id_str": "147572354111897600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1342686720/fatshotty_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1342686720/fatshotty_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Using Eclipse as Node Applications Debugger - GitHub http://t.co/e4c7oezT #eclips #node #nodejs #javascript http://t.co/wUdw4le3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 06:57:45 +0000", "from_user": "polotek", "from_user_id": 20079975, "from_user_id_str": "20079975", "from_user_name": "Marco Rogers", "geo": null, "id": 147571095208333300, "id_str": "147571095208333312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/422439290/n739064999_192287_1980_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/422439290/n739064999_192287_1980_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@joyent I'm having a hard time with your docs. They start good but then I find key information is missing or unclear.", "to_user": "joyent", "to_user_id": 666523, "to_user_id_str": "666523", "to_user_name": "Joyent"}, +{"created_at": "Fri, 16 Dec 2011 06:33:41 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 147565038650142720, "id_str": "147565038650142720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @knsk66: Using Eclipse as Node Applications Debugger - GitHub http://t.co/sL2z2qiy #eclips #node #nodejs #javascript", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 06:16:25 +0000", "from_user": "favstar_tech", "from_user_id": 135117300, "from_user_id_str": "135117300", "from_user_name": "Top Tech Tweets", "geo": null, "id": 147560692231319550, "id_str": "147560692231319552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1202096248/twitterAvatarTech2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1202096248/twitterAvatarTech2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @joyent: \"Joyent Announces Academic Program for Educators, Researchers and Students\" - SDC in the .EDU. http://t.co/7MciyRNo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 06:16:22 +0000", "from_user": "lderezinski", "from_user_id": 6166672, "from_user_id_str": "6166672", "from_user_name": "Linda Derezinski", "geo": null, "id": 147560679572906000, "id_str": "147560679572905984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1575099705/lderezinski_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575099705/lderezinski_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @joyent: \"Joyent Announces Academic Program for Educators, Researchers and Students\" - SDC in the .EDU. http://t.co/7MciyRNo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 06:13:54 +0000", "from_user": "lderezinski", "from_user_id": 6166672, "from_user_id_str": "6166672", "from_user_name": "Linda Derezinski", "geo": null, "id": 147560059721879550, "id_str": "147560059721879552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1575099705/lderezinski_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575099705/lderezinski_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @jasonh: Joyent's Academic program: grants + free and commercially unrestricted software smartdatacenter, smartOS, node.js http://t.co/zPHg1bU7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 06:10:25 +0000", "from_user": "jamus_se", "from_user_id": 112896032, "from_user_id_str": "112896032", "from_user_name": "jamus", "geo": null, "id": 147559183208820740, "id_str": "147559183208820736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1564910465/twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1564910465/twitter_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @knsk66: Using Eclipse as Node Applications Debugger - GitHub http://t.co/emFnzONc #eclips #node #nodejs #javascript", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 06:09:28 +0000", "from_user": "bestClearMax", "from_user_id": 270379910, "from_user_id_str": "270379910", "from_user_name": "bestclearmax", "geo": null, "id": 147558944028635140, "id_str": "147558944028635137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1282974191/Houston_Texans_logo3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1282974191/Houston_Texans_logo3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/RJ7Tkp3j Joyent Announces Academic Program for Educators, Researchers and Students - MarketWatch (press release)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 06:08:53 +0000", "from_user": "knsk66", "from_user_id": 11945522, "from_user_id_str": "11945522", "from_user_name": "knsk66", "geo": null, "id": 147558796380737540, "id_str": "147558796380737536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1169361433/for_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1169361433/for_twitter_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Using Eclipse as Node Applications Debugger - GitHub http://t.co/sL2z2qiy #eclips #node #nodejs #javascript", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 06:08:52 +0000", "from_user": "fbshareschecker", "from_user_id": 282151707, "from_user_id_str": "282151707", "from_user_name": "Kensuke Kamachi", "geo": null, "id": 147558794442977280, "id_str": "147558794442977281", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1311539889/Other-Japanese-Post-icon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1311539889/Other-Japanese-Post-icon_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Using Eclipse as Node Applications Debugger - GitHub http://t.co/xq1nqVsg #eclips #node #nodejs #javascript", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 05:29:13 +0000", "from_user": "MJ", "from_user_id": 11422, "from_user_id_str": "11422", "from_user_name": "MJ", "geo": +{"coordinates": [37.7929,-122.4003], "type": "Point"}, "id": 147548814201466880, "id_str": "147548814201466880", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1578950798/Screen_shot_2011-08-23_at_11.13.02_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1578950798/Screen_shot_2011-08-23_at_11.13.02_PM_normal.png", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "CaviAr and smashed potatos @ Joyent http://t.co/L3WgKFiC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 05:16:53 +0000", "from_user": "dexterous", "from_user_id": 188215254, "from_user_id_str": "188215254", "from_user_name": "Saager Mhatre", "geo": null, "id": 147545710944981000, "id_str": "147545710944980992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1367401855/IMG_3076_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1367401855/IMG_3076_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @joyent: \"Joyent Announces Academic Program for Educators, Researchers and Students\" - SDC in the .EDU. http://t.co/7MciyRNo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 05:13:28 +0000", "from_user": "bestClearMax", "from_user_id": 270379910, "from_user_id_str": "270379910", "from_user_name": "bestclearmax", "geo": null, "id": 147544849636270080, "id_str": "147544849636270080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1282974191/Houston_Texans_logo3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1282974191/Houston_Texans_logo3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Joyent Announces Academic Program for Educators, Researchers and Students - MarketWatch (press release) http://t.co/RJ7Tkp3j", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 04:07:34 +0000", "from_user": "johnnysunshine", "from_user_id": 10172262, "from_user_id_str": "10172262", "from_user_name": "johnnysunshine", "geo": null, "id": 147528265362456580, "id_str": "147528265362456576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1639927688/icon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639927688/icon_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@bdha @srsmoot @DeirdreS it's current as of whatever is current in Joyent's gate a day or three ago", "to_user": "bdha", "to_user_id": 21226447, "to_user_id_str": "21226447", "to_user_name": "Bryan HorstmannAllen", "in_reply_to_status_id": 147483965853405200, "in_reply_to_status_id_str": "147483965853405185"}, +{"created_at": "Fri, 16 Dec 2011 04:06:50 +0000", "from_user": "mikeal", "from_user_id": 668423, "from_user_id_str": "668423", "from_user_name": "Mikeal", "geo": null, "id": 147528081643544580, "id_str": "147528081643544576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1554648053/avatar-bw_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554648053/avatar-bw_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@jacobian many parsers don't support arbitrary verbs (see http://t.co/cn2F1Ab4), adding them can impact routers, load balancers and caches", "to_user": "jacobian", "to_user_id": 18824526, "to_user_id_str": "18824526", "to_user_name": "jacobian", "in_reply_to_status_id": 147527433917169660, "in_reply_to_status_id_str": "147527433917169664"}, +{"created_at": "Fri, 16 Dec 2011 03:58:41 +0000", "from_user": "HowieDragon", "from_user_id": 184442035, "from_user_id_str": "184442035", "from_user_name": "Howie", "geo": null, "id": 147526030003937280, "id_str": "147526030003937280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1412192196/IMG_2380_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1412192196/IMG_2380_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@DeirdreS not true, the joyent Vancouver Christmas party I recall @trevoro and @trentmick were in full suits, can ask @bcantrill as witness", "to_user": "DeirdreS", "to_user_id": 625093, "to_user_id_str": "625093", "to_user_name": "Deirdr\\u00E9 Straughan", "in_reply_to_status_id": 147498407123091460, "in_reply_to_status_id_str": "147498407123091456"}, +{"created_at": "Fri, 16 Dec 2011 03:43:28 +0000", "from_user": "HowieDragon", "from_user_id": 184442035, "from_user_id_str": "184442035", "from_user_name": "Howie", "geo": null, "id": 147522200528891900, "id_str": "147522200528891906", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1412192196/IMG_2380_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1412192196/IMG_2380_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Node.js released v0.6.6 is out \\u25B8 http://t.co/5OVN6I25 #nodejs \\u263A http://t.co/RkQTktPm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 03:37:22 +0000", "from_user": "jimpick", "from_user_id": 15839929, "from_user_id_str": "15839929", "from_user_name": "Jim Pick", "geo": null, "id": 147520668571934720, "id_str": "147520668571934721", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/680570347/jpick-240x240_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/680570347/jpick-240x240_normal.jpg", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "RT @MJ: Joyent holiday party with a shark in a hat. Awesome (@ Joyent) [pic]: http://t.co/j9q0S0FM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 03:34:36 +0000", "from_user": "MJ", "from_user_id": 11422, "from_user_id_str": "11422", "from_user_name": "MJ", "geo": +{"coordinates": [37.7929,-122.4003], "type": "Point"}, "id": 147519970341949440, "id_str": "147519970341949440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1578950798/Screen_shot_2011-08-23_at_11.13.02_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1578950798/Screen_shot_2011-08-23_at_11.13.02_PM_normal.png", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "Joyent holiday party with a shark in a hat. Awesome (@ Joyent) [pic]: http://t.co/j9q0S0FM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 03:27:36 +0000", "from_user": "jon_spinks", "from_user_id": 179003920, "from_user_id_str": "179003920", "from_user_name": "Jon Spinks", "geo": null, "id": 147518209669595140, "id_str": "147518209669595136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1452667426/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1452667426/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @srsmoot: @joyent New SmartOS release. Burn it. Swap CDs. Boot it. Done.\\n\\nEasiest OS upgrade I've ever experienced by a mile! Awesome work!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 02:45:46 +0000", "from_user": "edsai", "from_user_id": 5739392, "from_user_id_str": "5739392", "from_user_name": "Ed Saipetch", "geo": null, "id": 147507681865908220, "id_str": "147507681865908224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1151558798/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1151558798/image_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@DeirdreS @badnima @jhk24 tell everyone at Joyent I said happy holidays. missing out on the parties is part of being field-based", "to_user": "DeirdreS", "to_user_id": 625093, "to_user_id_str": "625093", "to_user_name": "Deirdr\\u00E9 Straughan"}, +{"created_at": "Fri, 16 Dec 2011 02:43:27 +0000", "from_user": "sealockuqvf5", "from_user_id": 374428510, "from_user_id_str": "374428510", "from_user_name": "Sealock Benson", "geo": null, "id": 147507097708404740, "id_str": "147507097708404736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1545182451/f_35_w_0076_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545182451/f_35_w_0076_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@another143 http://t.co/NVwwCO55", "to_user": "another143", "to_user_id": 437739495, "to_user_id_str": "437739495", "to_user_name": "Paulina", "in_reply_to_status_id": 147410638816296960, "in_reply_to_status_id_str": "147410638816296960"}, +{"created_at": "Fri, 16 Dec 2011 02:38:28 +0000", "from_user": "jimpick", "from_user_id": 15839929, "from_user_id_str": "15839929", "from_user_name": "Jim Pick", "geo": null, "id": 147505846149062660, "id_str": "147505846149062656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/680570347/jpick-240x240_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/680570347/jpick-240x240_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Looking at the smartos commits on github. Amazing stuff from @joyent! http://t.co/8uHArh7f", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 02:37:44 +0000", "from_user": "badnima", "from_user_id": 14694282, "from_user_id_str": "14694282", "from_user_name": "badnima", "geo": null, "id": 147505659645132800, "id_str": "147505659645132800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/56876991/commit_no_nuisance_4jpg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/56876991/commit_no_nuisance_4jpg_normal.jpg", "source": "<a href="http://www.typepad.com/" rel="nofollow">TypePad</a>", "text": "Joyent holiday party gifts! http://t.co/hSUXcIoz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 02:34:59 +0000", "from_user": "sealockuqvf5", "from_user_id": 374428510, "from_user_id_str": "374428510", "from_user_name": "Sealock Benson", "geo": null, "id": 147504966423154700, "id_str": "147504966423154688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1545182451/f_35_w_0076_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545182451/f_35_w_0076_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Rosalieykw http://t.co/NVwwCO55", "to_user": "Rosalieykw", "to_user_id": 426215272, "to_user_id_str": "426215272", "to_user_name": "Ran Schoenfelt", "in_reply_to_status_id": 147356851208597500, "in_reply_to_status_id_str": "147356851208597504"}, +{"created_at": "Fri, 16 Dec 2011 02:27:22 +0000", "from_user": "sealockuqvf5", "from_user_id": 374428510, "from_user_id_str": "374428510", "from_user_name": "Sealock Benson", "geo": null, "id": 147503050192465920, "id_str": "147503050192465921", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1545182451/f_35_w_0076_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545182451/f_35_w_0076_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@klutz101oops http://t.co/NVwwCO55", "to_user": "klutz101oops", "to_user_id": 22456945, "to_user_id_str": "22456945", "to_user_name": "Amber Rose Jones", "in_reply_to_status_id": 147356909895299070, "in_reply_to_status_id_str": "147356909895299072"}, +{"created_at": "Fri, 16 Dec 2011 02:22:46 +0000", "from_user": "GeekDani", "from_user_id": 65526437, "from_user_id_str": "65526437", "from_user_name": "Dani Kim", "geo": null, "id": 147501894544261120, "id_str": "147501894544261120", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662698421/DSC04650_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662698421/DSC04650_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "current status : \\uC7AC\\uBBF8\\uC0BC\\uC544 joyent\\uC758 libuv \\uC911 event \\uCC98\\uB9AC\\uB97C \\uBCF4\\uACE0 \\uC788\\uC74C.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 02:19:15 +0000", "from_user": "pborenstein", "from_user_id": 3675931, "from_user_id_str": "3675931", "from_user_name": "Philip Borenstein", "geo": null, "id": 147501007444783100, "id_str": "147501007444783104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/71234052/IMG_0453_2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/71234052/IMG_0453_2_normal.JPG", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@DeirdreS I think I just had the @Joyent New England holiday party with @Wendy_DarlingNH", "to_user": "DeirdreS", "to_user_id": 625093, "to_user_id_str": "625093", "to_user_name": "Deirdr\\u00E9 Straughan", "in_reply_to_status_id": 147498407123091460, "in_reply_to_status_id_str": "147498407123091456"}, +{"created_at": "Fri, 16 Dec 2011 02:16:15 +0000", "from_user": "sealockuqvf5", "from_user_id": 374428510, "from_user_id_str": "374428510", "from_user_name": "Sealock Benson", "geo": null, "id": 147500252381974530, "id_str": "147500252381974528", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1545182451/f_35_w_0076_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545182451/f_35_w_0076_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Ivelissehwd http://t.co/NVwwCO55", "to_user": "Ivelissehwd", "to_user_id": 433539358, "to_user_id_str": "433539358", "to_user_name": "Dg Jade", "in_reply_to_status_id": 147356942875111420, "in_reply_to_status_id_str": "147356942875111424"}, +{"created_at": "Fri, 16 Dec 2011 02:11:47 +0000", "from_user": "sealockuqvf5", "from_user_id": 374428510, "from_user_id_str": "374428510", "from_user_name": "Sealock Benson", "geo": null, "id": 147499130099466240, "id_str": "147499130099466241", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1545182451/f_35_w_0076_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545182451/f_35_w_0076_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@RegularAndreas http://t.co/NVwwCO55", "to_user": "RegularAndreas", "to_user_id": 295360622, "to_user_id_str": "295360622", "to_user_name": "Andreas Pettersson", "in_reply_to_status_id": 147356969710264320, "in_reply_to_status_id_str": "147356969710264320"}, +{"created_at": "Fri, 16 Dec 2011 02:04:19 +0000", "from_user": "sealockuqvf5", "from_user_id": 374428510, "from_user_id_str": "374428510", "from_user_name": "Sealock Benson", "geo": null, "id": 147497252322148350, "id_str": "147497252322148353", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1545182451/f_35_w_0076_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545182451/f_35_w_0076_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@carnegielearn http://t.co/NVwwCO55", "to_user": "carnegielearn", "to_user_id": 19929235, "to_user_id_str": "19929235", "to_user_name": "Carnegie Learning", "in_reply_to_status_id": 147356965566283780, "in_reply_to_status_id_str": "147356965566283776"}, +{"created_at": "Fri, 16 Dec 2011 02:01:17 +0000", "from_user": "sealockuqvf5", "from_user_id": 374428510, "from_user_id_str": "374428510", "from_user_name": "Sealock Benson", "geo": null, "id": 147496486161227780, "id_str": "147496486161227777", "iso_language_code": "vi", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1545182451/f_35_w_0076_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545182451/f_35_w_0076_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@r_c http://t.co/NVwwCO55", "to_user": "r_c", "to_user_id": 216323, "to_user_id_str": "216323", "to_user_name": "Ged Carroll | \\u30AD\\u30E3\\u30ED\\u30EB \\u30B8", "in_reply_to_status_id": 147356618722512900, "in_reply_to_status_id_str": "147356618722512897"}, +{"created_at": "Fri, 16 Dec 2011 01:56:57 +0000", "from_user": "sealockuqvf5", "from_user_id": 374428510, "from_user_id_str": "374428510", "from_user_name": "Sealock Benson", "geo": null, "id": 147495396455882750, "id_str": "147495396455882752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1545182451/f_35_w_0076_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545182451/f_35_w_0076_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MCFOfficial http://t.co/NVwwCO55", "to_user": "MCFOfficial", "to_user_id": 149083464, "to_user_id_str": "149083464", "to_user_name": "Filippo Giustolisi", "in_reply_to_status_id": 147356805868175360, "in_reply_to_status_id_str": "147356805868175360"}, +{"created_at": "Fri, 16 Dec 2011 01:52:50 +0000", "from_user": "sealockuqvf5", "from_user_id": 374428510, "from_user_id_str": "374428510", "from_user_name": "Sealock Benson", "geo": null, "id": 147494361976946700, "id_str": "147494361976946689", "iso_language_code": "eo", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1545182451/f_35_w_0076_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545182451/f_35_w_0076_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@TimezLock http://t.co/NVwwCO55", "to_user": "TimezLock", "to_user_id": 392046621, "to_user_id_str": "392046621", "to_user_name": "Manyie Shing", "in_reply_to_status_id": 147356863606947840, "in_reply_to_status_id_str": "147356863606947840"}, +{"created_at": "Fri, 16 Dec 2011 01:43:48 +0000", "from_user": "davidpaulyoung", "from_user_id": 10637, "from_user_id_str": "10637", "from_user_name": "David Young", "geo": null, "id": 147492086474747900, "id_str": "147492086474747904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/14395312/icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/14395312/icon_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @srsmoot: @joyent New SmartOS release. Burn it. Swap CDs. Boot it. Done.\\n\\nEasiest OS upgrade I've ever experienced by a mile! Awesome work!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:41:33 +0000", "from_user": "sealockuqvf5", "from_user_id": 374428510, "from_user_id_str": "374428510", "from_user_name": "Sealock Benson", "geo": null, "id": 147491519350312960, "id_str": "147491519350312960", "iso_language_code": "vi", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1545182451/f_35_w_0076_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545182451/f_35_w_0076_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@mjay1324 http://t.co/NVwwCO55", "to_user": "mjay1324", "to_user_id": 300604372, "to_user_id_str": "300604372", "to_user_name": "Michael-John Ferraro", "in_reply_to_status_id": 147357069903794180, "in_reply_to_status_id_str": "147357069903794178"}, +{"created_at": "Fri, 16 Dec 2011 01:39:57 +0000", "from_user": "inbgche", "from_user_id": 98225985, "from_user_id_str": "98225985", "from_user_name": "Jinbom Heo", "geo": null, "id": 147491117749907460, "id_str": "147491117749907456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1214365642/jbheo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1214365642/jbheo_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Node.js released v0.6.6 is out \\u25B8 http://t.co/5OVN6I25 #nodejs \\u263A http://t.co/RkQTktPm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:39:49 +0000", "from_user": "DeirdreS", "from_user_id": 625093, "from_user_id_str": "625093", "from_user_name": "Deirdr\\u00E9 Straughan", "geo": null, "id": 147491086481362940, "id_str": "147491086481362945", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1273049375/dpink_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273049375/dpink_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@bdha wait'll you see the new one! IIRC, this is the view from the lunchroom: http://t.co/TLvSUYUJ", "to_user": "bdha", "to_user_id": 21226447, "to_user_id_str": "21226447", "to_user_name": "Bryan HorstmannAllen", "in_reply_to_status_id": 147490432941694980, "in_reply_to_status_id_str": "147490432941694976"}, +{"created_at": "Fri, 16 Dec 2011 01:36:59 +0000", "from_user": "pborenstein", "from_user_id": 3675931, "from_user_id_str": "3675931", "from_user_name": "Philip Borenstein", "geo": null, "id": 147490371868434430, "id_str": "147490371868434433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/71234052/IMG_0453_2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/71234052/IMG_0453_2_normal.JPG", "source": "<a href="http://tweetli.st/" rel="nofollow">TweetList Pro</a>", "text": "@peteryorke @DeirdreS Wait. I was at the @joyent office last week, and no one showed me the pinball machine? No! Fair!", "to_user": "peteryorke", "to_user_id": 14136726, "to_user_id_str": "14136726", "to_user_name": "Peter Yorke", "in_reply_to_status_id": 147487141365157900, "in_reply_to_status_id_str": "147487141365157888"}, +{"created_at": "Fri, 16 Dec 2011 01:34:07 +0000", "from_user": "SMLfordotme", "from_user_id": 105245249, "from_user_id_str": "105245249", "from_user_name": "SMLfor.me", "geo": null, "id": 147489652012613630, "id_str": "147489652012613632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1334833960/Tshirt_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1334833960/Tshirt_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "News Update Joyent Announces Academic Program for Educators, Researchers and Students - MarketWatch (press release) http://t.co/i9UvWL3e", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:28:55 +0000", "from_user": "bcantrill", "from_user_id": 173630577, "from_user_id_str": "173630577", "from_user_name": "Bryan Cantrill", "geo": null, "id": 147488339908509700, "id_str": "147488339908509696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1093371262/homewood-cropped_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1093371262/homewood-cropped_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @srsmoot: @joyent New SmartOS release. Burn it. Swap CDs. Boot it. Done.\\n\\nEasiest OS upgrade I've ever experienced by a mile! Awesome work!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:24:55 +0000", "from_user": "johnnysunshine", "from_user_id": 10172262, "from_user_id_str": "10172262", "from_user_name": "johnnysunshine", "geo": null, "id": 147487334928093200, "id_str": "147487334928093184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1639927688/icon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639927688/icon_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @srsmoot: @joyent New SmartOS release. Burn it. Swap CDs. Boot it. Done.\\n\\nEasiest OS upgrade I've ever experienced by a mile! Awesome work!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:22:44 +0000", "from_user": "sealockuqvf5", "from_user_id": 374428510, "from_user_id_str": "374428510", "from_user_name": "Sealock Benson", "geo": null, "id": 147486786938077200, "id_str": "147486786938077185", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1545182451/f_35_w_0076_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545182451/f_35_w_0076_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@heath3278 http://t.co/NVwwCO55", "to_user": "heath3278", "to_user_id": 168912281, "to_user_id_str": "168912281", "to_user_name": "heath ", "in_reply_to_status_id": 147357045702672400, "in_reply_to_status_id_str": "147357045702672384"}, +{"created_at": "Fri, 16 Dec 2011 01:16:17 +0000", "from_user": "DeirdreS", "from_user_id": 625093, "from_user_id_str": "625093", "from_user_name": "Deirdr\\u00E9 Straughan", "geo": null, "id": 147485162169581570, "id_str": "147485162169581568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1273049375/dpink_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273049375/dpink_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @srsmoot: @joyent New SmartOS release. Burn it. Swap CDs. Boot it. Done.\\n\\nEasiest OS upgrade I've ever experienced by a mile! Awesome work!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:16:04 +0000", "from_user": "DeirdreS", "from_user_id": 625093, "from_user_id_str": "625093", "from_user_name": "Deirdr\\u00E9 Straughan", "geo": null, "id": 147485109497499650, "id_str": "147485109497499650", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1273049375/dpink_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273049375/dpink_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Wow, big day in Joyent news. Educational program, Bryan's talk, new SmartOS release... am I missing anything?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 01:04:50 +0000", "from_user": "srsmoot", "from_user_id": 228811555, "from_user_id_str": "228811555", "from_user_name": "Sam", "geo": null, "id": 147482282045882370, "id_str": "147482282045882368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1323854939/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1323854939/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@joyent New SmartOS release. Burn it. Swap CDs. Boot it. Done.\\n\\nEasiest OS upgrade I've ever experienced by a mile! Awesome work!", "to_user": "joyent", "to_user_id": 666523, "to_user_id_str": "666523", "to_user_name": "Joyent"}, +{"created_at": "Fri, 16 Dec 2011 01:02:34 +0000", "from_user": "srsmoot", "from_user_id": 228811555, "from_user_id_str": "228811555", "from_user_name": "Sam", "geo": null, "id": 147481710064443400, "id_str": "147481710064443393", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1323854939/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1323854939/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@bdha @joyent @DeirdreS So now that there's a 20111215 release, I can remove my zfs_arc_max? (Release notes really only show vmadm updates.)", "to_user": "bdha", "to_user_id": 21226447, "to_user_id_str": "21226447", "to_user_name": "Bryan HorstmannAllen", "in_reply_to_status_id": 146652524009631740, "in_reply_to_status_id_str": "146652524009631744"}, +{"created_at": "Fri, 16 Dec 2011 01:00:42 +0000", "from_user": "vscarpenter", "from_user_id": 59223, "from_user_id_str": "59223", "from_user_name": "Vinny Carpenter", "geo": null, "id": 147481240130424830, "id_str": "147481240130424832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/48540942/vinny-thumbnail-rounded_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/48540942/vinny-thumbnail-rounded_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "Joyent Announces SmartMachine Appliance for MongoDB - MarketWatch http://t.co/DzJJcDDA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Fri, 16 Dec 2011 00:44:08 +0000", "from_user": "peteryorke", "from_user_id": 14136726, "from_user_id_str": "14136726", "from_user_name": "Peter Yorke", "geo": null, "id": 147477073227825150, "id_str": "147477073227825153", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/51727717/peter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/51727717/peter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Node.js released v0.6.6 is out \\u25B8 http://t.co/HmomSSrF #nodejs http://t.co/ZqntSiHs @NodeJsCommunity", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:43:36 +0000", "from_user": "srsmoot", "from_user_id": 228811555, "from_user_id_str": "228811555", "from_user_name": "Sam", "geo": null, "id": 147476935910502400, "id_str": "147476935910502400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1323854939/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1323854939/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @peteryorke: NEW release of SmartOS with a new feature: vmadm to manage both KVM and SmartOS http://t.co/42cAItjT http://t.co/QkXE3Jha @joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:43:33 +0000", "from_user": "dreamerslab", "from_user_id": 16701148, "from_user_id_str": "16701148", "from_user_name": "ben", "geo": null, "id": 147476926225858560, "id_str": "147476926225858560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/61746772/P1050298_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/61746772/P1050298_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @joyent: \"Joyent Announces Academic Program for Educators, Researchers and Students\" - SDC in the .EDU. http://t.co/7MciyRNo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:35:02 +0000", "from_user": "storagebits", "from_user_id": 434008946, "from_user_id_str": "434008946", "from_user_name": "Francois Lesage", "geo": null, "id": 147474781397205000, "id_str": "147474781397204992", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686864445/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686864445/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejschina: Sun 2.0 = Joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:32:17 +0000", "from_user": "ALittleOfJoe", "from_user_id": 73030632, "from_user_id_str": "73030632", "from_user_name": "Joe Little", "geo": null, "id": 147474088464625660, "id_str": "147474088464625665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/409528163/jlittle-aim_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/409528163/jlittle-aim_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @joyent: \"Joyent Announces Academic Program for Educators, Researchers and Students\" - SDC in the .EDU. http://t.co/7MciyRNo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:06:08 +0000", "from_user": "AlyseoDotCom", "from_user_id": 88886863, "from_user_id_str": "88886863", "from_user_name": "Yacine Kheddache", "geo": null, "id": 147467510038540300, "id_str": "147467510038540288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/549355931/twitter-73_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/549355931/twitter-73_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @peteryorke video from @bcantrill's #LISA11. The Rise & Dev of illumos SmartOS.org http://t.co/MbeNLL6g @joyent @alyseodotcom say: COOL!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:04:08 +0000", "from_user": "voxteneo", "from_user_id": 147348568, "from_user_id_str": "147348568", "from_user_name": "Vox Teneo", "geo": null, "id": 147467003089780740, "id_str": "147467003089780736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1144038076/67231_109024145826597_100001570359773_71619_2033721_n_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1144038076/67231_109024145826597_100001570359773_71619_2033721_n_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Node.js released v0.6.6 is out \\u25B8 http://t.co/5OVN6I25 #nodejs \\u263A http://t.co/RkQTktPm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:03:59 +0000", "from_user": "vRobM", "from_user_id": 38737968, "from_user_id_str": "38737968", "from_user_name": "Rob Markovi\\u0107 (Robi)", "geo": null, "id": 147466966381248500, "id_str": "147466966381248512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/350626160/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/350626160/twitterProfilePhoto_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Node.js released v0.6.6 is out \\u25B8 http://t.co/5OVN6I25 #nodejs \\u263A http://t.co/RkQTktPm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:03:50 +0000", "from_user": "drnugent", "from_user_id": 20087429, "from_user_id_str": "20087429", "from_user_name": "Dave Nugent", "geo": null, "id": 147466931568508930, "id_str": "147466931568508928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1371537535/dave-parisoma2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1371537535/dave-parisoma2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Node.js released v0.6.6 is out \\u25B8 http://t.co/5OVN6I25 #nodejs \\u263A http://t.co/RkQTktPm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Fri, 16 Dec 2011 00:00:34 +0000", "from_user": "kdwalker", "from_user_id": 16369797, "from_user_id_str": "16369797", "from_user_name": "Kumi D. Walker", "geo": null, "id": 147466109132615680, "id_str": "147466109132615680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1076792317/ls_4312_ls_9561_ls_9269_Wedding___Honeymoon_Photos_254_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1076792317/ls_4312_ls_9561_ls_9269_Wedding___Honeymoon_Photos_254_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Thanks @nodejschina & @sdtuck Really enjoy working with you guys cc/ @tyamell @StackMob @joyent", "to_user": "nodejschina", "to_user_id": 55953023, "to_user_id_str": "55953023", "to_user_name": "James F Blom", "in_reply_to_status_id": 147461812948967420, "in_reply_to_status_id_str": "147461812948967424"}, +{"created_at": "Thu, 15 Dec 2011 23:59:23 +0000", "from_user": "GaruHenr", "from_user_id": 112743376, "from_user_id_str": "112743376", "from_user_name": "Bruno Henrique(Garu)", "geo": null, "id": 147465809873219600, "id_str": "147465809873219584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1551147469/225472_1760698895957_1193588234_31583357_7276793_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1551147469/225472_1760698895957_1193588234_31583357_7276793_n_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Node.js released v0.6.6 is out \\u25B8 http://t.co/5OVN6I25 #nodejs \\u263A http://t.co/RkQTktPm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:58:12 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 147465513499508740, "id_str": "147465513499508736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @peteryorke: NEW release of SmartOS with a new feature: vmadm to manage both KVM and SmartOS http://t.co/42cAItjT http://t.co/QkXE3Jha @joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:58:08 +0000", "from_user": "vRobM", "from_user_id": 38737968, "from_user_id_str": "38737968", "from_user_name": "Rob Markovi\\u0107 (Robi)", "geo": null, "id": 147465493534605300, "id_str": "147465493534605312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/350626160/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/350626160/twitterProfilePhoto_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@peteryorke: NEW release of SmartOS with a new feature: vmadm to manage both KVM and SmartOS http://t.co/kBNctZio @joyent\\u201D < cool", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:58:07 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 147465489134788600, "id_str": "147465489134788608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @aegiap: http://t.co/piBIPeiK History of Solaris up to Illumos by Bryan Cantrill, Joyent. #cool #OS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:57:51 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 147465423099674620, "id_str": "147465423099674625", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NodeJsCommunity: Node.js released v0.6.6 is out \\u25B8 http://t.co/5OVN6I25 #nodejs \\u263A http://t.co/RkQTktPm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:57:41 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 147465383673212930, "id_str": "147465383673212929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@LisaSpangenberg thank you Lisa /cc @joyent", "to_user": "LisaSpangenberg", "to_user_id": 29770848, "to_user_id_str": "29770848", "to_user_name": "Lisa Spangenberg", "in_reply_to_status_id": 147399917063766000, "in_reply_to_status_id_str": "147399917063766016"}, +{"created_at": "Thu, 15 Dec 2011 23:56:55 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 147465188445138940, "id_str": "147465188445138944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @joyent: \"Joyent Announces Academic Program for Educators, Researchers and Students\" - SDC in the .EDU. http://t.co/7MciyRNo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:55:47 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147464903928717300, "id_str": "147464903928717312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @charlesbeeler: Seems like @twitter is having a lot of perf issues in the past few days. Ought to run it on the @Joyent Public Cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:55:11 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147464754762489860, "id_str": "147464754762489856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@LisaSpangenberg It's an incredibly valuable nexus of innovation and we want to help out every way we can.", "to_user": "LisaSpangenberg", "to_user_id": 29770848, "to_user_id_str": "29770848", "to_user_name": "Lisa Spangenberg", "in_reply_to_status_id": 147399917063766000, "in_reply_to_status_id_str": "147399917063766016"}, +{"created_at": "Thu, 15 Dec 2011 23:54:43 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147464635744923650, "id_str": "147464635744923648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @peteryorke: NEW release of SmartOS with a new feature: vmadm to manage both KVM and SmartOS http://t.co/42cAItjT http://t.co/QkXE3Jha @joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:52:12 +0000", "from_user": "peteryorke", "from_user_id": 14136726, "from_user_id_str": "14136726", "from_user_name": "Peter Yorke", "geo": null, "id": 147464003852042240, "id_str": "147464003852042240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/51727717/peter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/51727717/peter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NEW release of SmartOS with a new feature: vmadm to manage both KVM and SmartOS http://t.co/42cAItjT http://t.co/QkXE3Jha @joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:29:35 +0000", "from_user": "k1occhi", "from_user_id": 119777037, "from_user_id_str": "119777037", "from_user_name": "Keiichi Ochiai", "geo": null, "id": 147458312311537660, "id_str": "147458312311537664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1148808627/nice_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1148808627/nice_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @joyent: \"Joyent Announces Academic Program for Educators, Researchers and Students\" - SDC in the .EDU. http://t.co/7MciyRNo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 23:22:25 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 147456506755944450, "id_str": "147456506755944450", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Spotting Latency...Improving Performance\\n\\nhttp://t.co/TunT7iqC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:58:29 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 147450483995455500, "id_str": "147450483995455489", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Joyent's Smart Data Center as Middleware", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:55:15 +0000", "from_user": "aegiap", "from_user_id": 16086829, "from_user_id_str": "16086829", "from_user_name": "aegiap", "geo": null, "id": 147449669767794700, "id_str": "147449669767794688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/59255865/avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/59255865/avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/piBIPeiK History of Solaris up to Illumos by Bryan Cantrill, Joyent. #cool #OS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:45:40 +0000", "from_user": "atl", "from_user_id": 693463, "from_user_id_str": "693463", "from_user_name": "Adam Lindsay", "geo": null, "id": 147447259854946300, "id_str": "147447259854946304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1566083932/322559_10150284531150964_604360963_8026168_243591854_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566083932/322559_10150284531150964_604360963_8026168_243591854_o_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @jasonh: Joyent's Academic program: grants + free and commercially unrestricted software smartdatacenter, smartOS, node.js http://t.co/zPHg1bU7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:29:22 +0000", "from_user": "caroline_leigh", "from_user_id": 25520105, "from_user_id_str": "25520105", "from_user_name": "Carly Guarcello", "geo": null, "id": 147443155388731400, "id_str": "147443155388731392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1337766477/IMG_0750_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1337766477/IMG_0750_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @joyent: \"Joyent Announces Academic Program for Educators, Researchers and Students\" - SDC in the .EDU. http://t.co/7MciyRNo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:14:22 +0000", "from_user": "scottherson", "from_user_id": 89247454, "from_user_id_str": "89247454", "from_user_name": "scott herson", "geo": null, "id": 147439382100586500, "id_str": "147439382100586496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1281899263/fiji_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1281899263/fiji_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "A great way to spread the Joy'ent http://t.co/eu43e3Z5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 22:03:57 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 147436760308252670, "id_str": "147436760308252672", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Sun 2.0 = Joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 21:38:18 +0000", "from_user": "gerbosan", "from_user_id": 171592004, "from_user_id_str": "171592004", "from_user_name": "Carlos A.", "geo": null, "id": 147430305660280830, "id_str": "147430305660280834", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1650325426/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650325426/logo_normal.png", "source": "<a href="http://connect.mediastre.am/" rel="nofollow">En Vivo Mediastream</a>", "text": "como se instala #node.js en #linux http://t.co/bqc7izbE #mejorandola", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 21:37:06 +0000", "from_user": "sowconsulting", "from_user_id": 90001774, "from_user_id_str": "90001774", "from_user_name": "Juan Hern\\u00E1ndez", "geo": null, "id": 147430002982535170, "id_str": "147430002982535168", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1403007076/7066570-software-palabra-collage-sobre-fondo-blanco_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1403007076/7066570-software-palabra-collage-sobre-fondo-blanco_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "aqui como se instala #node.js http://t.co/X6WMeEF8 como se manejar\\u00E1 en #linux =S #mejorandola via @gerbosan", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 21:36:20 +0000", "from_user": "sowconsulting", "from_user_id": 90001774, "from_user_id_str": "90001774", "from_user_name": "Juan Hern\\u00E1ndez", "geo": null, "id": 147429810036154370, "id_str": "147429810036154368", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1403007076/7066570-software-palabra-collage-sobre-fondo-blanco_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1403007076/7066570-software-palabra-collage-sobre-fondo-blanco_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "aqui como se instala #node.js http://t.co/X6WMeEF8 como se manejar\\u00E1 en #linux =S #mejorandola via @gerbosan:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 21:33:15 +0000", "from_user": "gerbosan", "from_user_id": 171592004, "from_user_id_str": "171592004", "from_user_name": "Carlos A.", "geo": null, "id": 147429034442244100, "id_str": "147429034442244096", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1650325426/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650325426/logo_normal.png", "source": "<a href="http://choqok.gnufolks.org/" rel="nofollow">Choqok</a>", "text": "aqui como se instala #node.js http://t.co/TyVHYtA6 como se manejar\\u00E1 en #linux =S #mejorandola", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 21:05:23 +0000", "from_user": "campedersen", "from_user_id": 166318219, "from_user_id_str": "166318219", "from_user_name": "Cam Pedersen", "geo": null, "id": 147422020370579460, "id_str": "147422020370579456", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1593193637/Photo_Nov_27__2_20_47_AM_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593193637/Photo_Nov_27__2_20_47_AM_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "My favorite http://t.co/K2REgS5G", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 20:53:21 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 147418994742267900, "id_str": "147418994742267904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Academic Program for Research\\nhttp://t.co/3vr3wwzO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 20:12:39 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 147408748930015230, "id_str": "147408748930015232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @csanz: @charlesbeeler @twitter @joyent that's where I'm moving! +1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 20:12:00 +0000", "from_user": "DeirdreS", "from_user_id": 625093, "from_user_id_str": "625093", "from_user_name": "Deirdr\\u00E9 Straughan", "geo": null, "id": 147408587600298000, "id_str": "147408587600297984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1273049375/dpink_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273049375/dpink_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @csanz: @charlesbeeler @twitter @joyent that's where I'm moving! +1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 20:11:35 +0000", "from_user": "bashersoybh9", "from_user_id": 389774793, "from_user_id_str": "389774793", "from_user_name": "Basher Troublefield", "geo": null, "id": 147408483116003330, "id_str": "147408483116003329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1585576655/f_27_w_0012_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585576655/f_27_w_0012_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "joyent bug in the no.de ssh settings area - I added a key where the name field contains a ' - This t9jA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 20:06:36 +0000", "from_user": "DeirdreS", "from_user_id": 625093, "from_user_id_str": "625093", "from_user_name": "Deirdr\\u00E9 Straughan", "geo": null, "id": 147407228935213060, "id_str": "147407228935213057", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1273049375/dpink_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273049375/dpink_normal.jpg", "source": "<a href="https://wiki.ubuntu.com/Gwibber" rel="nofollow">Ubuntu</a>", "text": "RT @Stevie_Holdway: It also seems the word 'Joyent' has started to crop up everywhere innovation and bleeding edge is to be found. They're going to be huge.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:47:01 +0000", "from_user": "FredericMoal", "from_user_id": 84316873, "from_user_id_str": "84316873", "from_user_name": "Fr\\u00E9d\\u00E9ric MOAL", "geo": null, "id": 147402298287595520, "id_str": "147402298287595520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/557527820/chercheur_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/557527820/chercheur_normal.jpg", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "RT @HPCintheCloud This Just In: Joyent Announces Academic Program for Educators, Researchers and Students http://t.co/3WANF1pn #cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:40:36 +0000", "from_user": "FriendsOfNodeJS", "from_user_id": 433489706, "from_user_id_str": "433489706", "from_user_name": "Friends of NodeJS", "geo": null, "id": 147400684319408130, "id_str": "147400684319408128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686921024/nodejs-1024x768_normal.png", "source": "<a href="http://termtter.org/" rel="nofollow">Termtter</a>", "text": "RT @itwars: Node.js released v0.6.6 is out \\u25B8 http://t.co/uvYgUDzP #nodejs \\u263A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:40:34 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147400677558202370, "id_str": "147400677558202368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Node.js released v0.6.6 is out \\u25B8 http://t.co/5OVN6I25 #nodejs \\u263A http://t.co/RkQTktPm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:40:33 +0000", "from_user": "flaper87", "from_user_id": 16058166, "from_user_id_str": "16058166", "from_user_name": "FlaPer87", "geo": null, "id": 147400671036055550, "id_str": "147400671036055553", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/489467125/flaper-gotchi_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/489467125/flaper-gotchi_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @mitchitized: Cool! @joyent Announces SmartMachine Appliance for @MongoDB: http://t.co/8qdNZuI9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:38:22 +0000", "from_user": "itwars", "from_user_id": 67265165, "from_user_id_str": "67265165", "from_user_name": "Vincent RABAH", "geo": null, "id": 147400122794385400, "id_str": "147400122794385410", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1135858686/cb-vincent_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1135858686/cb-vincent_normal.png", "source": "<a href="http://termtter.org/" rel="nofollow">Termtter</a>", "text": "Node.js released v0.6.6 is out \\u25B8 http://t.co/uvYgUDzP #nodejs \\u263A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:37:33 +0000", "from_user": "LisaSpangenberg", "from_user_id": 29770848, "from_user_id_str": "29770848", "from_user_name": "Lisa Spangenberg", "geo": null, "id": 147399917063766000, "id_str": "147399917063766016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/954889685/girl_with_pearl_earbuds_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/954889685/girl_with_pearl_earbuds_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@joyent Hey, the Academic Program is very cool; thanks for thinking about education/educators/students.", "to_user": "joyent", "to_user_id": 666523, "to_user_id_str": "666523", "to_user_name": "Joyent", "in_reply_to_status_id": 147380344377712640, "in_reply_to_status_id_str": "147380344377712641"}, +{"created_at": "Thu, 15 Dec 2011 19:37:06 +0000", "from_user": "LisaSpangenberg", "from_user_id": 29770848, "from_user_id_str": "29770848", "from_user_name": "Lisa Spangenberg", "geo": null, "id": 147399802437636100, "id_str": "147399802437636097", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/954889685/girl_with_pearl_earbuds_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/954889685/girl_with_pearl_earbuds_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @joyent: \"Joyent Announces Academic Program for Educators, Researchers and Students\" - SDC in the .EDU. http://t.co/7MciyRNo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:37:04 +0000", "from_user": "mitchitized", "from_user_id": 14181144, "from_user_id_str": "14181144", "from_user_name": "Mitch Pirtle", "geo": null, "id": 147399797521907700, "id_str": "147399797521907712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1640527902/space-monkey8_cropped_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640527902/space-monkey8_cropped_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Cool! @joyent Announces SmartMachine Appliance for @MongoDB: http://t.co/8qdNZuI9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:28:40 +0000", "from_user": "Stevie_Holdway", "from_user_id": 78094624, "from_user_id_str": "78094624", "from_user_name": "Stevie Holdway", "geo": null, "id": 147397682565103600, "id_str": "147397682565103618", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1276047845/191101_1919569233997_1385012453_2188086_469541_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1276047845/191101_1919569233997_1385012453_2188086_469541_o_normal.jpg", "source": "<a href="https://wiki.ubuntu.com/Gwibber" rel="nofollow">Ubuntu</a>", "text": "It also seems the word 'Joyent' has started to crop up everywhere innovation and bleeding edge is to be found. They're going to be huge.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:28:32 +0000", "from_user": "chorrell", "from_user_id": 82683, "from_user_id_str": "82683", "from_user_name": "Christopher Horrell", "geo": null, "id": 147397649899847680, "id_str": "147397649899847680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1156208661/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1156208661/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @joyent: \"Joyent Announces Academic Program for Educators, Researchers and Students\" - SDC in the .EDU. http://t.co/7MciyRNo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 19:08:18 +0000", "from_user": "tsubame959", "from_user_id": 32947843, "from_user_id_str": "32947843", "from_user_name": "Hokuto", "geo": null, "id": 147392554424479740, "id_str": "147392554424479744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @joyent: \"Joyent Announces Academic Program for Educators, Researchers and Students\" - SDC in the .EDU. http://t.co/7MciyRNo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:53:53 +0000", "from_user": "ruiquelhas", "from_user_id": 21006544, "from_user_id_str": "21006544", "from_user_name": "Rui Quelhas", "geo": null, "id": 147388926649303040, "id_str": "147388926649303041", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1264920283/deepness2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1264920283/deepness2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @joyent: \"Joyent Announces Academic Program for Educators, Researchers and Students\" - SDC in the .EDU. http://t.co/7MciyRNo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:46:11 +0000", "from_user": "peakscale", "from_user_id": 20656014, "from_user_id_str": "20656014", "from_user_name": "Tim Freeman", "geo": null, "id": 147386989363200000, "id_str": "147386989363200001", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/77520980/timf_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/77520980/timf_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @joyent: \"Joyent Announces Academic Program for Educators, Researchers and Students\" - SDC in the .EDU. http://t.co/7MciyRNo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:44:22 +0000", "from_user": "charlesbeeler", "from_user_id": 50510925, "from_user_id_str": "50510925", "from_user_name": "Charles Beeler", "geo": null, "id": 147386532758683650, "id_str": "147386532758683649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1102378532/1e5694f_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1102378532/1e5694f_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @csanz: @charlesbeeler @twitter @joyent that's where I'm moving! +1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:42:57 +0000", "from_user": "InstantOnWorld", "from_user_id": 298547006, "from_user_id_str": "298547006", "from_user_name": "Cloud Computing", "geo": null, "id": 147386178302259200, "id_str": "147386178302259201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1353157070/stars_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1353157070/stars_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Joyent Announces Academic Program for Educators, Researchers and Students: SAN FRANCISCO, CA, Dec 15, 2011 (MARK... http://t.co/KSWRKHAQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:42:44 +0000", "from_user": "syoyo", "from_user_id": 15808736, "from_user_id_str": "15808736", "from_user_name": "syoyo", "geo": null, "id": 147386123814047740, "id_str": "147386123814047744", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1233719952/syoyo_face_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1233719952/syoyo_face_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u6700\\u8FD1\\u306E Joyent \\u30B9\\u30B2\\u3047\\u306A...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:42:06 +0000", "from_user": "jhillacre", "from_user_id": 25359046, "from_user_id_str": "25359046", "from_user_name": "Joel Hillacre", "geo": null, "id": 147385961540632580, "id_str": "147385961540632576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1280719639/sun_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1280719639/sun_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @peteryorke: video from @bcantrill's #LISA11 talk - Fork Yeah! The Rise and Development of illumos \\u2013 http://t.co/NwPomIby http://t.co/SWx2mVeu @joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:41:10 +0000", "from_user": "syoyo", "from_user_id": 15808736, "from_user_id_str": "15808736", "from_user_name": "syoyo", "geo": null, "id": 147385727829807100, "id_str": "147385727829807105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1233719952/syoyo_face_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1233719952/syoyo_face_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @joyent: \"Joyent Announces Academic Program for Educators, Researchers and Students\" - SDC in the .EDU. http://t.co/7MciyRNo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:40:31 +0000", "from_user": "rodrigo_aro", "from_user_id": 42944442, "from_user_id_str": "42944442", "from_user_name": "Rodrigo Aro ", "geo": null, "id": 147385563308245000, "id_str": "147385563308244993", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1196583762/DSC06099_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1196583762/DSC06099_normal.JPG", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @mejorandola: Nos han preguntado mucho sobre Node.js en Windows. Googleen como instalarlo. http://t.co/ZJalat5i #mejorandola /via @cvander", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:30:41 +0000", "from_user": "computer29", "from_user_id": 304242458, "from_user_id_str": "304242458", "from_user_name": "computer", "geo": null, "id": 147383091470671870, "id_str": "147383091470671872", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Joyent Announces Academic Program for Educators, Researchers and Students: About Joyent Joyent is a global cloud... http://t.co/VFKoIQNm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:30:17 +0000", "from_user": "drmarkrbaker", "from_user_id": 59523403, "from_user_id_str": "59523403", "from_user_name": "Dr Mark R Baker", "geo": null, "id": 147382987380637700, "id_str": "147382987380637696", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/977187030/genius_at_work_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/977187030/genius_at_work_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Joyent Announces Academic Program for Educators, Researchers and Students: SAN FRANCISCO, CA, Dec 15, 201... http://t.co/ej57LLd1 #cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:28:46 +0000", "from_user": "psema4", "from_user_id": 26052727, "from_user_id_str": "26052727", "from_user_name": "Scott Elcomb", "geo": null, "id": 147382609268314100, "id_str": "147382609268314112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/577809126/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/577809126/twitterProfilePhoto_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @HPCintheCloud: This Just In: Joyent Announces Academic Program for Educators, Researchers and Students http://t.co/7v1NErrH #cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:27:11 +0000", "from_user": "jasonmulligan", "from_user_id": 25133724, "from_user_id_str": "25133724", "from_user_name": "Jason Mulligan", "geo": null, "id": 147382210360647680, "id_str": "147382210360647680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1114085524/ridehard_msn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1114085524/ridehard_msn_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "shit, joyent is rocking this year", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:27:11 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147382207936348160, "id_str": "147382207936348160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @peteryorke: video from @bcantrill's #LISA11 talk - Fork Yeah! The Rise and Development of illumos \\u2013 http://t.co/NwPomIby http://t.co/SWx2mVeu @joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:26:39 +0000", "from_user": "MaximumBit", "from_user_id": 100304269, "from_user_id_str": "100304269", "from_user_name": "Darshan Arya (CEO)", "geo": null, "id": 147382073164972030, "id_str": "147382073164972032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/627516066/MB_logo_M_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/627516066/MB_logo_M_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Joyent Announces Academic Program for Educators, Researchers and Students http://t.co/vv7gOK0K", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:26:14 +0000", "from_user": "csanz", "from_user_id": 8187772, "from_user_id_str": "8187772", "from_user_name": "Christian Sanz", "geo": null, "id": 147381969792139260, "id_str": "147381969792139264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1645650920/281699_10150253991022411_626637410_7803630_8323075_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645650920/281699_10150253991022411_626637410_7803630_8323075_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @joyent: \"Joyent Announces Academic Program for Educators, Researchers and Students\" - SDC in the .EDU. http://t.co/7MciyRNo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:25:21 +0000", "from_user": "csanz", "from_user_id": 8187772, "from_user_id_str": "8187772", "from_user_name": "Christian Sanz", "geo": +{"coordinates": [37.8024,-122.4248], "type": "Point"}, "id": 147381749528281100, "id_str": "147381749528281088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1645650920/281699_10150253991022411_626637410_7803630_8323075_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645650920/281699_10150253991022411_626637410_7803630_8323075_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@charlesbeeler @twitter @joyent that's where I'm moving! +1", "to_user": "charlesbeeler", "to_user_id": 50510925, "to_user_id_str": "50510925", "to_user_name": "Charles Beeler", "in_reply_to_status_id": 147380993500790800, "in_reply_to_status_id_str": "147380993500790785"}, +{"created_at": "Thu, 15 Dec 2011 18:22:21 +0000", "from_user": "charlesbeeler", "from_user_id": 50510925, "from_user_id_str": "50510925", "from_user_name": "Charles Beeler", "geo": null, "id": 147380993500790800, "id_str": "147380993500790785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1102378532/1e5694f_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1102378532/1e5694f_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Seems like @twitter is having a lot of perf issues in the past few days. Ought to run it on the @Joyent Public Cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:21:55 +0000", "from_user": "HowieDragon", "from_user_id": 184442035, "from_user_id_str": "184442035", "from_user_name": "Howie", "geo": null, "id": 147380881596760060, "id_str": "147380881596760065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1412192196/IMG_2380_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1412192196/IMG_2380_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @joyent: \"Joyent Announces Academic Program for Educators, Researchers and Students\" - SDC in the .EDU. http://t.co/7MciyRNo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:21:46 +0000", "from_user": "BillStarnaud", "from_user_id": 19071434, "from_user_id_str": "19071434", "from_user_name": "Bill St. Arnaud", "geo": null, "id": 147380846851145730, "id_str": "147380846851145728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1291784216/Bill_web_image_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1291784216/Bill_web_image_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @HPCintheCloud: This Just In: Joyent Announces Academic Program for Educators, Researchers and Students http://t.co/7v1NErrH #cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:21:34 +0000", "from_user": "davidpaulyoung", "from_user_id": 10637, "from_user_id_str": "10637", "from_user_name": "David Young", "geo": null, "id": 147380795785490430, "id_str": "147380795785490433", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/14395312/icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/14395312/icon_normal.jpg", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "I'm at Joyent (345 California St, #2000, San Francisco) http://t.co/7Yge8nVd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:19:46 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147380344377712640, "id_str": "147380344377712641", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "\"Joyent Announces Academic Program for Educators, Researchers and Students\" - SDC in the .EDU. http://t.co/7MciyRNo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 18:13:46 +0000", "from_user": "peteryorke", "from_user_id": 14136726, "from_user_id_str": "14136726", "from_user_name": "Peter Yorke", "geo": null, "id": 147378833685889020, "id_str": "147378833685889024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/51727717/peter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/51727717/peter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "video from @bcantrill's #LISA11 talk - Fork Yeah! The Rise and Development of illumos \\u2013 http://t.co/NwPomIby http://t.co/SWx2mVeu @joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:59:13 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147375172549214200, "id_str": "147375172549214208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @newrelic: New Enhancement - Email alerts for Server Monitoring on @newrelic http://t.co/KLvyEoKZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:59:10 +0000", "from_user": "777final777feed", "from_user_id": 81675924, "from_user_id_str": "81675924", "from_user_name": "777final777feed", "geo": null, "id": 147375156921253900, "id_str": "147375156921253889", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Joyent Announces Academic Program for Educators, Researchers and Students: SAN FRANCISCO, CA, Dec 15, 2011 (MARK... http://t.co/KgPul4SG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:58:55 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147375094975565820, "id_str": "147375094975565824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @stackmob - StackMob is now publicly available! http://t.co/uydlhmRH #StackMoblaunch Rockin'! #loveourcustomers", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:57:17 +0000", "from_user": "akruti_shah", "from_user_id": 189745265, "from_user_id_str": "189745265", "from_user_name": "akrutishah", "geo": null, "id": 147374683900215300, "id_str": "147374683900215296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1122028815/t14_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1122028815/t14_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Joyent Announces Academic Program for Educators, Researchers and Students http://t.co/N10AahCr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:55:26 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147374218936459260, "id_str": "147374218936459264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Percona: Last day for #perconalive DC earlybird registration! Don't miss your chance!!! #MySQL http://t.co/SovFLFlI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:55:11 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147374157691228160, "id_str": "147374157691228160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @CompTechReview: @Joyent debuts #academic program for educators, researchers and students #virtualization #cloud http://t.co/beRnsxvo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:53:54 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147373831386963970, "id_str": "147373831386963968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", "text": "RT @alexr: Had a great time last night at the @voxer party chatting DTrace with the @joyent crew.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:53:36 +0000", "from_user": "charlesbeeler", "from_user_id": 50510925, "from_user_id_str": "50510925", "from_user_name": "Charles Beeler", "geo": null, "id": 147373756602531840, "id_str": "147373756602531841", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1102378532/1e5694f_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1102378532/1e5694f_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Twitter is having loads of issues the past few days. They ought to be running on the @Joyent Public Cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:51:46 +0000", "from_user": "Karishma_tondon", "from_user_id": 189749179, "from_user_id_str": "189749179", "from_user_name": "Karishma Tondon", "geo": null, "id": 147373294167932930, "id_str": "147373294167932928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1122038005/saree_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1122038005/saree_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Joyent Announces Academic Program for Educators, Researchers and Students http://t.co/UDR0tXzW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:49:49 +0000", "from_user": "wesleylong", "from_user_id": 21544956, "from_user_id_str": "21544956", "from_user_name": "Wesley Long", "geo": null, "id": 147372806131298300, "id_str": "147372806131298305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/81265024/Wesley2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/81265024/Wesley2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Joyent Announces Academic Program for Educators, Researchers and Students http://t.co/tIq3RVAP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:38:48 +0000", "from_user": "anushka_sen", "from_user_id": 233139644, "from_user_id_str": "233139644", "from_user_name": "Anushka Sen", "geo": null, "id": 147370032257708030, "id_str": "147370032257708032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1599064047/kajal10_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599064047/kajal10_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Joyent Announces Academic Program for Educators, Researchers and Students http://t.co/1ZbYuqqV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:36:05 +0000", "from_user": "burnside_", "from_user_id": 435089792, "from_user_id_str": "435089792", "from_user_name": " Michael Burnside", "geo": null, "id": 147369350293225470, "id_str": "147369350293225472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1689330013/11_12_12_MichaelBurnside_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689330013/11_12_12_MichaelBurnside_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Joyent Announces Academic Program for Educators, Researchers and Students - MarketWatch (press release) http://t.co/bRsYXsMi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:35:41 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 147369249114042370, "id_str": "147369249114042368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "Monitoring Firm Circonus Joins Joyent Cloud Ecoystem http://t.co/qxKMf17U", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:33:27 +0000", "from_user": "ritacoburn", "from_user_id": 309941508, "from_user_id_str": "309941508", "from_user_name": "rita coburn", "geo": null, "id": 147368687328956400, "id_str": "147368687328956416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1380927615/coburn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1380927615/coburn_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Joyent Announces Academic Program for Educators, Researchers and Students: Grants and funding are available in t... http://t.co/Nh6SaR0h", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:32:00 +0000", "from_user": "CompTechReview", "from_user_id": 126449296, "from_user_id_str": "126449296", "from_user_name": "CompTechReview", "geo": null, "id": 147368320218308600, "id_str": "147368320218308608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1477273423/WestWorldLogoBug-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1477273423/WestWorldLogoBug-1_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "@Joyent debuts #academic program for educators, researchers and students #virtualization #cloud http://t.co/beRnsxvo", "to_user": "joyent", "to_user_id": 666523, "to_user_id_str": "666523", "to_user_name": "Joyent"}, +{"created_at": "Thu, 15 Dec 2011 17:15:15 +0000", "from_user": "peteryorke", "from_user_id": 14136726, "from_user_id_str": "14136726", "from_user_name": "Peter Yorke", "geo": null, "id": 147364108373725200, "id_str": "147364108373725185", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/51727717/peter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/51727717/peter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jasonh: Joyent's Academic Program also includes wholesale and reseller access to the Joyent Public Cloud http://t.co/zPHg1bU7 & http://t.co/CG8iPkza", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:11:19 +0000", "from_user": "workinthecloud", "from_user_id": 38276261, "from_user_id_str": "38276261", "from_user_name": "WorkInTheCloud", "geo": null, "id": 147363117712678900, "id_str": "147363117712678912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/203756131/clouds-28_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/203756131/clouds-28_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Cloud Joyent Announces Academic Program for Educators, Researchers and Students - MarketWatch (press release): ... http://t.co/B0jchJ1S", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:08:27 +0000", "from_user": "alexr", "from_user_id": 473583, "from_user_id_str": "473583", "from_user_name": "Alex Rosenberg", "geo": null, "id": 147362397059944450, "id_str": "147362397059944449", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/17909762/alexr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/17909762/alexr_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", "text": "Had a great time last night at the @voxer party chatting DTrace with the @joyent crew.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:07:23 +0000", "from_user": "sdtuck", "from_user_id": 52105158, "from_user_id_str": "52105158", "from_user_name": "Steven Tuck", "geo": null, "id": 147362124723798000, "id_str": "147362124723798016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1197460791/steve_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1197460791/steve_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jasonh: Joyent's Academic Program also includes wholesale and reseller access to the Joyent Public Cloud http://t.co/zPHg1bU7 & http://t.co/CG8iPkza", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:06:11 +0000", "from_user": "Gemmbu", "from_user_id": 88842850, "from_user_id_str": "88842850", "from_user_name": "KAMEDAkyosuke", "geo": null, "id": 147361824088653820, "id_str": "147361824088653824", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/530397827/twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/530397827/twitter_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\\u3053\\u306E http \\u30D1\\u30FC\\u30B5\\u30FC\\u4F7F\\u3044\\u3084\\u3059\\u3044\\u3002\\n\\u3053\\u308C\\u3082 node \\u95A2\\u9023\\u304B\\u306A\\uFF1F\\nhttp://t.co/kArq2u38", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 17:05:59 +0000", "from_user": "lyas777", "from_user_id": 68572924, "from_user_id_str": "68572924", "from_user_name": "LYAS ", "geo": null, "id": 147361775191470080, "id_str": "147361775191470081", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1536824842/lyas_xD_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1536824842/lyas_xD_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @mejorandola: Nos han preguntado mucho sobre Node.js en Windows. Googleen como instalarlo. http://t.co/ZJalat5i #mejorandola /via @cvander", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 16:44:54 +0000", "from_user": "lsinger", "from_user_id": 1320161, "from_user_id_str": "1320161", "from_user_name": "Leif Singer", "geo": null, "id": 147356468297990140, "id_str": "147356468297990144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1638614427/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638614427/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Wonderful! @C9Support: @lsinger You can already deploy to Heroku and Joyent straight from Cloud9.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 16:43:17 +0000", "from_user": "hfcci", "from_user_id": 88012852, "from_user_id_str": "88012852", "from_user_name": "HFCC Institute", "geo": null, "id": 147356062599745540, "id_str": "147356062599745536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/520051496/HFCCI_LOGO1_small_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/520051496/HFCCI_LOGO1_small_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Joyent Announces Academic Program for Educators, Researchers and Students - MarketWatch (press release) http://t.co/eOYYgjy8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 16:36:28 +0000", "from_user": "lsrmarketing", "from_user_id": 266751256, "from_user_id_str": "266751256", "from_user_name": "LSR MarketingService", "geo": null, "id": 147354346093420540, "id_str": "147354346093420545", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1326627551/logoTruePeque_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1326627551/logoTruePeque_normal.png", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "RT @cvander: Nos han preguntado mucho sobre Node.js en Windows. Googleen como instalarlo. http://t.co/sjDQcfqJ #mejorandola", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 16:36:09 +0000", "from_user": "Cloud_Geek", "from_user_id": 198159985, "from_user_id_str": "198159985", "from_user_name": "CloudGeek", "geo": null, "id": 147354264879120400, "id_str": "147354264879120384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1335104403/Picture_001-a4t-_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335104403/Picture_001-a4t-_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Joyent Announces Academic Program for Educators, Researchers and Students - MarketWatch (press release) http://t.co/oefyTG59", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 16:32:17 +0000", "from_user": "CloudNotes", "from_user_id": 14186870, "from_user_id_str": "14186870", "from_user_name": "Scott Cameron", "geo": null, "id": 147353291746066430, "id_str": "147353291746066432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1387207941/CloudIcon_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1387207941/CloudIcon_normal.PNG", "source": "<a href="http://pluggio.com" rel="nofollow">Pluggio</a>", "text": "Joyent Announces Academic Program for Educators, Researchers and Students - MarketWatch (press release) http://t.co/tf9se6vk | (News)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 16:21:51 +0000", "from_user": "HowieDragon", "from_user_id": 184442035, "from_user_id_str": "184442035", "from_user_name": "Howie", "geo": null, "id": 147350667143557120, "id_str": "147350667143557120", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1412192196/IMG_2380_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1412192196/IMG_2380_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nodejschina: Wordpress & Joyent,\\nhttp://t.co/xakPMGB7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 16:09:43 +0000", "from_user": "mja", "from_user_id": 777121, "from_user_id_str": "777121", "from_user_name": "Mark James Adams", "geo": null, "id": 147347613430198270, "id_str": "147347613430198272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1523270187/portrait_by_dorita_widescreen_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1523270187/portrait_by_dorita_widescreen_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @jasonh: Joyent's Academic program: grants + free and commercially unrestricted software smartdatacenter, smartOS, node.js http://t.co/zPHg1bU7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Thu, 15 Dec 2011 15:57:12 +0000", "from_user": "AnnaRibeiro9", "from_user_id": 148702523, "from_user_id_str": "148702523", "from_user_name": "Anna Ribeiro", "geo": null, "id": 147344465256923140, "id_str": "147344465256923136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@Joyent debuts #academic program for educators, researchers and students #virtualization #cloud http://t.co/JPE67G2t", "to_user": "joyent", "to_user_id": 666523, "to_user_id_str": "666523", "to_user_name": "Joyent"}, +{"created_at": "Thu, 15 Dec 2011 15:56:49 +0000", "from_user": "C9Support", "from_user_id": 243576882, "from_user_id_str": "243576882", "from_user_name": "Cloud9 IDE Support", "geo": null, "id": 147344369937158140, "id_str": "147344369937158145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1553034167/support-avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553034167/support-avatar_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@lsinger You can already deploy to Heroku and Joyent straight from Cloud9.", "to_user": "lsinger", "to_user_id": 1320161, "to_user_id_str": "1320161", "to_user_name": "Leif Singer", "in_reply_to_status_id": 147343836681736200, "in_reply_to_status_id_str": "147343836681736194"}, +{"created_at": "Thu, 15 Dec 2011 15:38:21 +0000", "from_user": "ialjkk", "from_user_id": 430044970, "from_user_id_str": "430044970", "from_user_name": "Abdul Jaleel KK", "geo": null, "id": 147339721138380800, "id_str": "147339721138380800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516579/A_Jaleel_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "Joyent Announces Academic Program for Educators, Researchers and Students - MarketWatch (press release) http://t.co/Y6hixhAm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:36:18 +0000", "from_user": "_CaseyJones_", "from_user_id": 143989907, "from_user_id_str": "143989907", "from_user_name": "Casey Jones", "geo": null, "id": 147339204802785280, "id_str": "147339204802785281", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681053021/newfacepicsmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681053021/newfacepicsmall_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@floridastate RT @jasonh: Joyent's Academic program: grants + free and commercially unrestricted software.. http://t.co/9doxtBCJ", "to_user": "floridastate", "to_user_id": 154533838, "to_user_id_str": "154533838", "to_user_name": "Florida State"}, +{"created_at": "Thu, 15 Dec 2011 15:34:43 +0000", "from_user": "cwebber", "from_user_id": 14268006, "from_user_id_str": "14268006", "from_user_name": "Christopher Webber", "geo": null, "id": 147338804250939400, "id_str": "147338804250939392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1358012829/cwebber_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1358012829/cwebber_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "@solarce I thought I clicked the follow button the last time he and I talked. But yeah @jasonh and @joyent are rocking things.", "to_user": "solarce", "to_user_id": 822284, "to_user_id_str": "822284", "to_user_name": "Brandon Burton", "in_reply_to_status_id": 147337992573423600, "in_reply_to_status_id_str": "147337992573423617"}, +{"created_at": "Thu, 15 Dec 2011 15:34:40 +0000", "from_user": "garcosc", "from_user_id": 41400912, "from_user_id_str": "41400912", "from_user_name": "Andres Arcos", "geo": null, "id": 147338793861644300, "id_str": "147338793861644288", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1674365785/andres09_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674365785/andres09_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @saidGeeK: Para los que quieren seguir el tutorial de hoy de nodejs en #mejorandola y tienen windows asi se instala http://t.co/WGGmqNFh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:34:22 +0000", "from_user": "HowieDragon", "from_user_id": 184442035, "from_user_id_str": "184442035", "from_user_name": "Howie", "geo": null, "id": 147338717525319680, "id_str": "147338717525319680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1412192196/IMG_2380_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1412192196/IMG_2380_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jasonh: Joyent's Academic Program also includes wholesale and reseller access to the Joyent Public Cloud http://t.co/zPHg1bU7 & http://t.co/CG8iPkza", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:30:58 +0000", "from_user": "solarce", "from_user_id": 822284, "from_user_id_str": "822284", "from_user_name": "Brandon Burton", "geo": null, "id": 147337862977830900, "id_str": "147337862977830912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1634787783/4BC300D9-46BC-4D1C-8584-9015DB5BC145_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634787783/4BC300D9-46BC-4D1C-8584-9015DB5BC145_normal", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @jasonh: Joyent's Academic program: grants + free and commercially unrestricted software smartdatacenter, smartOS, node.js http://t.co/zPHg1bU7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:30:09 +0000", "from_user": "DavinaTran", "from_user_id": 415115645, "from_user_id_str": "415115645", "from_user_name": "Davina Tran", "geo": null, "id": 147337658065109000, "id_str": "147337658065108992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1644307712/11_11_17_Davina_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644307712/11_11_17_Davina_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Joyent Announces Academic Program for Educators, Researchers and Students - MarketWatch (press release) http://t.co/bPWzNAFw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:27:47 +0000", "from_user": "davidpaulyoung", "from_user_id": 10637, "from_user_id_str": "10637", "from_user_name": "David Young", "geo": null, "id": 147337060066394100, "id_str": "147337060066394112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/14395312/icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/14395312/icon_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @jasonh: Joyent's Academic program: grants + free and commercially unrestricted software smartdatacenter, smartOS, node.js http://t.co/zPHg1bU7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:27:21 +0000", "from_user": "davidpaulyoung", "from_user_id": 10637, "from_user_id_str": "10637", "from_user_name": "David Young", "geo": null, "id": 147336950557327360, "id_str": "147336950557327360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/14395312/icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/14395312/icon_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jasonh: Joyent's Academic Program also includes wholesale and reseller access to the Joyent Public Cloud http://t.co/zPHg1bU7 & http://t.co/CG8iPkza", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:27:19 +0000", "from_user": "jbueza", "from_user_id": 141423083, "from_user_id_str": "141423083", "from_user_name": "Jaime Bueza", "geo": null, "id": 147336943934504960, "id_str": "147336943934504961", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628415701/Jaime_new_v3_small_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @jasonh: Joyent's Academic program: grants + free and commercially unrestricted software smartdatacenter, smartOS, node.js http://t.co/zPHg1bU7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:25:32 +0000", "from_user": "dps231", "from_user_id": 181139583, "from_user_id_str": "181139583", "from_user_name": "David Poza", "geo": null, "id": 147336496972693500, "id_str": "147336496972693507", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1228230905/33888312621641852473123_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1228230905/33888312621641852473123_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Es bueno tener a mano estos dos post:\\nhttp://t.co/kFNpl54N y \\nhttp://t.co/8RsxnRjY cuando el utf8 da por culo xD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:24:53 +0000", "from_user": "saidGeeK", "from_user_id": 87434630, "from_user_id_str": "87434630", "from_user_name": "Andr\\u00E9s Espinace", "geo": null, "id": 147336330303647740, "id_str": "147336330303647745", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693139168/WP_000131_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693139168/WP_000131_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Para los que quieren seguir el tutorial de hoy de nodejs en #mejorandola y tienen windows asi se instala http://t.co/WGGmqNFh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:24:17 +0000", "from_user": "id_elias", "from_user_id": 316643252, "from_user_id_str": "316643252", "from_user_name": "Elias", "geo": null, "id": 147336180701216770, "id_str": "147336180701216768", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1611298141/one_lib_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611298141/one_lib_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @mejorandola: Nos han preguntado mucho sobre Node.js en Windows. Googleen como instalarlo. http://t.co/ZJalat5i #mejorandola /via @cvander", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:23:51 +0000", "from_user": "jagalzap", "from_user_id": 404873131, "from_user_id_str": "404873131", "from_user_name": "julio gallego", "geo": null, "id": 147336072261677060, "id_str": "147336072261677056", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1624632731/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624632731/image_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "RT @cvander: Nos han preguntado mucho sobre Node.js en Windows. Googleen como instalarlo. http://t.co/sjDQcfqJ #mejorandola", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:23:23 +0000", "from_user": "hermanjunge", "from_user_id": 270723897, "from_user_id_str": "270723897", "from_user_name": "Herman A. Junge", "geo": null, "id": 147335954263314430, "id_str": "147335954263314433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680398755/20111208.Auto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680398755/20111208.Auto_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@jasonh Bring us the joy of #joyent clouds to Latam! (Local clouds to avoid international connections)", "to_user": "jasonh", "to_user_id": 10638, "to_user_id_str": "10638", "to_user_name": "Jason Hoffman"}, +{"created_at": "Thu, 15 Dec 2011 15:22:53 +0000", "from_user": "Aether7", "from_user_id": 101473312, "from_user_id_str": "101473312", "from_user_name": "Sebastian Real", "geo": null, "id": 147335826899079170, "id_str": "147335826899079170", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/607423661/xss_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/607423661/xss_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @mejorandola: Nos han preguntado mucho sobre Node.js en Windows. Googleen como instalarlo. http://t.co/ZJalat5i #mejorandola /via @cvander", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:22:26 +0000", "from_user": "saidGeeK", "from_user_id": 87434630, "from_user_id_str": "87434630", "from_user_name": "Andr\\u00E9s Espinace", "geo": null, "id": 147335714856636400, "id_str": "147335714856636416", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693139168/WP_000131_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693139168/WP_000131_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @mejorandola: Nos han preguntado mucho sobre Node.js en Windows. Googleen como instalarlo. http://t.co/ZJalat5i #mejorandola /via @cvander", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:21:37 +0000", "from_user": "edsai", "from_user_id": 5739392, "from_user_id_str": "5739392", "from_user_name": "Ed Saipetch", "geo": null, "id": 147335511084777470, "id_str": "147335511084777474", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1151558798/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1151558798/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jasonh: Joyent's Academic Program also includes wholesale and reseller access to the Joyent Public Cloud http://t.co/zPHg1bU7 & http://t.co/CG8iPkza", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:21:32 +0000", "from_user": "jrubinovitz", "from_user_id": 332196424, "from_user_id_str": "332196424", "from_user_name": "Jennifer Rubinovitz", "geo": null, "id": 147335489547022340, "id_str": "147335489547022336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1433700326/linkedin_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1433700326/linkedin_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jasonh: Joyent's Academic Program also includes wholesale and reseller access to the Joyent Public Cloud http://t.co/zPHg1bU7 & http://t.co/CG8iPkza", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:20:52 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 147335321930051600, "id_str": "147335321930051584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Joyent's Academic Program also includes wholesale and reseller access to the Joyent Public Cloud http://t.co/zPHg1bU7 & http://t.co/CG8iPkza", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:20:01 +0000", "from_user": "adrahon", "from_user_id": 42009958, "from_user_id_str": "42009958", "from_user_name": "Alex Drahon", "geo": null, "id": 147335108280590340, "id_str": "147335108280590336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1667481062/ada_mont_febe_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667481062/ada_mont_febe_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @jasonh: Joyent's Academic program: grants + free and commercially unrestricted software smartdatacenter, smartOS, node.js http://t.co/zPHg1bU7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:19:45 +0000", "from_user": "mejorandola", "from_user_id": 64863875, "from_user_id_str": "64863875", "from_user_name": "Mejorando la web", "geo": null, "id": 147335041188511740, "id_str": "147335041188511744", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1452359411/mlw.io-isotipo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1452359411/mlw.io-isotipo_normal.png", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "Nos han preguntado mucho sobre Node.js en Windows. Googleen como instalarlo. http://t.co/ZJalat5i #mejorandola /via @cvander", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:15:53 +0000", "from_user": "mthiele10", "from_user_id": 29532294, "from_user_id_str": "29532294", "from_user_name": "Mark Thiele", "geo": null, "id": 147334065303982080, "id_str": "147334065303982080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1624127759/Scribe-Photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624127759/Scribe-Photo_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @jasonh: Joyent's Academic program: grants + free and commercially unrestricted software smartdatacenter, smartOS, node.js http://t.co/zPHg1bU7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:15:07 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 147333875662729200, "id_str": "147333875662729216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Joyent's Academic program: grants + free and commercially unrestricted software smartdatacenter, smartOS, node.js http://t.co/zPHg1bU7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:13:45 +0000", "from_user": "mejorandola", "from_user_id": 64863875, "from_user_id_str": "64863875", "from_user_name": "Mejorando la web", "geo": null, "id": 147333529867530240, "id_str": "147333529867530240", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1452359411/mlw.io-isotipo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1452359411/mlw.io-isotipo_normal.png", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "RT @cvander: Nos han preguntado mucho sobre Node.js en Windows. Googleen como instalarlo. http://t.co/sjDQcfqJ #mejorandola", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:13:31 +0000", "from_user": "andik4education", "from_user_id": 409280300, "from_user_id_str": "409280300", "from_user_name": "ANDIK HADI MUSTIKA", "geo": null, "id": 147333472816607230, "id_str": "147333472816607232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1632266520/andik_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632266520/andik_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Joyent Announces Academic Program for Educators, Researchers and Students: SAN FRANCISCO, CA-- - Joyent, the glo... http://t.co/HygFa4XG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:11:59 +0000", "from_user": "andik4education", "from_user_id": 409280300, "from_user_id_str": "409280300", "from_user_name": "ANDIK HADI MUSTIKA", "geo": null, "id": 147333086819000320, "id_str": "147333086819000320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1632266520/andik_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632266520/andik_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Joyent Announces Academic Program for Educators, Researchers and Students - http://t.co/nKLdao2S: Joyent, the glo... http://t.co/lhxnDBcI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:11:05 +0000", "from_user": "cvander", "from_user_id": 817789, "from_user_id_str": "817789", "from_user_name": "Christian Van Der H", "geo": null, "id": 147332860381118460, "id_str": "147332860381118464", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1559412162/cevy_lengua_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1559412162/cevy_lengua_normal.png", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "Nos han preguntado mucho sobre Node.js en Windows. Googleen como instalarlo. http://t.co/sjDQcfqJ #mejorandola", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:05:06 +0000", "from_user": "EDL_Host", "from_user_id": 55804415, "from_user_id_str": "55804415", "from_user_name": "Steve", "geo": null, "id": 147331352969228300, "id_str": "147331352969228289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/687699400/EDL_Logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/687699400/EDL_Logo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Joyent Announces Academic Program for Educators, Researchers and Students: SAN FRANCISCO, CA-- - Joyent, the glo... http://t.co/7TB7Y6Xu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 15:01:36 +0000", "from_user": "BigDataClouds", "from_user_id": 401391920, "from_user_id_str": "401391920", "from_user_name": "Big Data Clouds", "geo": null, "id": 147330472295407600, "id_str": "147330472295407616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1613841395/CloudBigData-300x239-resized-600_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1613841395/CloudBigData-300x239-resized-600_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Joyent Announces Academic Program for Educators, Researchers and Students - http://t.co/VQyNtp4l:... http://t.co/c7qTtRAc #bigdata #cloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 14:13:18 +0000", "from_user": "hermanjunge", "from_user_id": 270723897, "from_user_id_str": "270723897", "from_user_name": "Herman A. Junge", "geo": null, "id": 147318315155603460, "id_str": "147318315155603456", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680398755/20111208.Auto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680398755/20111208.Auto_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@ismael_diaz Tai metido con heroku? Buena. Has trabajado con joyent cloud por casua?", "to_user": "ismael_diaz", "to_user_id": 101507558, "to_user_id_str": "101507558", "to_user_name": "Ismael Diaz", "in_reply_to_status_id": 147304720971735040, "in_reply_to_status_id_str": "147304720971735040"}, +{"created_at": "Thu, 15 Dec 2011 13:47:54 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 147311924865007600, "id_str": "147311924865007616", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Wordpress & Joyent,\\nhttp://t.co/xakPMGB7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 11:11:23 +0000", "from_user": "zbb_42", "from_user_id": 191261596, "from_user_id_str": "191261596", "from_user_name": "zbb/42", "geo": null, "id": 147272534981746700, "id_str": "147272534981746688", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694718839/avatar5_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694718839/avatar5_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "@weijianwen \\u770B\\u4E86\\u4F60\\u7684ppt\\u3002FYI\\uFF0C\\u8BB0\\u5F97Joyent\\u7684\\u535A\\u5BA2\\u63D0\\u5230\\u4ED6\\u4EEC\\u7684SmartMachine\\u4E5F\\u652F\\u6301MongoDB\\uFF0C\\u4E0D\\u8FC7\\u4ED6\\u4EEC\\u7684Iaas\\u5E73\\u53F0\\u4E0D\\u662F\\u5F00\\u6E90\\u7684\\u3002 http://t.co/Z5u2vEff", "to_user": "weijianwen", "to_user_id": 50351950, "to_user_id_str": "50351950", "to_user_name": "\\u5EFA\\u6587", "in_reply_to_status_id": 147212252523671550, "in_reply_to_status_id_str": "147212252523671552"}, +{"created_at": "Thu, 15 Dec 2011 10:30:45 +0000", "from_user": "greycroft_jobs", "from_user_id": 36902115, "from_user_id_str": "36902115", "from_user_name": "Greycroft Jobs", "geo": null, "id": 147262309369266180, "id_str": "147262309369266176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://www.ventureloop.com/" rel="nofollow">ventureloop</a>", "text": "ISV EcoSystem Manager ( Joyent ) San Francisco ,CA ,US http://t.co/k9EPdTpl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 10:29:59 +0000", "from_user": "greycroft_jobs", "from_user_id": 36902115, "from_user_id_str": "36902115", "from_user_name": "Greycroft Jobs", "geo": null, "id": 147262119002378240, "id_str": "147262119002378240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://www.ventureloop.com/" rel="nofollow">ventureloop</a>", "text": "Product Marketing Manager \\u2013 Open Source Initiatives ( Joyent ) San Francisco ,CA ,US http://t.co/TVSJ9WxW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 08:11:53 +0000", "from_user": "tobias", "from_user_id": 5730, "from_user_id_str": "5730", "from_user_name": "Tobias Nygren", "geo": null, "id": 147227365200773120, "id_str": "147227365200773120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/100398183/tobias_avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/100398183/tobias_avatar_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Hyperdb ftw. RT @peteryorke: Scaling WordPress in the Joyent Cloud Part 3 - http://t.co/gHvmDTB8 @joyent @wordpress", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 07:35:01 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 147218085298962430, "id_str": "147218085298962432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @sdtuck: Scaling WordPress on Joyent Cloud: Part Three http://t.co/9KzlZ8hl via @wordpressdotcom", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 07:24:40 +0000", "from_user": "sdtuck", "from_user_id": 52105158, "from_user_id_str": "52105158", "from_user_name": "Steven Tuck", "geo": null, "id": 147215483026948100, "id_str": "147215483026948097", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1197460791/steve_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1197460791/steve_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Scaling WordPress on Joyent Cloud: Part Three http://t.co/9KzlZ8hl via @wordpressdotcom", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 06:41:59 +0000", "from_user": "mgobi_php", "from_user_id": 73093978, "from_user_id_str": "73093978", "from_user_name": "Gobinath.M", "geo": null, "id": 147204739082354700, "id_str": "147204739082354688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1208160321/eyes_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1208160321/eyes_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: MongoDB: With Adoption Comes... More Adoption http://t.co/vPSJfjAD #MongoDB #OpenShift #RedHat #Joyent #Jaspersoft", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 06:21:30 +0000", "from_user": "Narkir", "from_user_id": 62498975, "from_user_id_str": "62498975", "from_user_name": "Narkir", "geo": null, "id": 147199585176141820, "id_str": "147199585176141824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1114596331/27438_825242341_5105_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1114596331/27438_825242341_5105_q_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @kraih: Interesting that #nodejs will never support fork. http://t.co/m59QSEi5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 06:02:07 +0000", "from_user": "karanbansalkr", "from_user_id": 436614382, "from_user_id_str": "436614382", "from_user_name": "karan bansal", "geo": null, "id": 147194705535442940, "id_str": "147194705535442945", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": null, "source": "<a href="http://twitter.com/">web</a>", "text": "discuss.joyent\\nhttp://t.co/NrY2cXeR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 04:38:11 +0000", "from_user": "am0c", "from_user_id": 45750158, "from_user_id_str": "45750158", "from_user_name": "Hojung Youn", "geo": null, "id": 147173584664662000, "id_str": "147173584664662016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1247064585/am0c_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1247064585/am0c_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @kraih: Interesting that #nodejs will never support fork. http://t.co/m59QSEi5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 04:29:37 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147171426946920450, "id_str": "147171426946920448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @NodeSummit: Agenda for Node Summit is up at http://t.co/Tg3Cyc8f", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 03:54:30 +0000", "from_user": "pierriko", "from_user_id": 179879742, "from_user_id_str": "179879742", "from_user_name": "Pierrick", "geo": null, "id": 147162590039126000, "id_str": "147162590039126017", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1381144434/dec09bw_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1381144434/dec09bw_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nodejs: Tests running on @travisci http://t.co/sUwjYETR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 03:46:15 +0000", "from_user": "jasonmcleod", "from_user_id": 12221692, "from_user_id_str": "12221692", "from_user_name": "Jason McLeod", "geo": null, "id": 147160515246948350, "id_str": "147160515246948353", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1266928039/eightbit-6b87a3a4-c2bf-4803-9ec5-ce9cd5314996_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266928039/eightbit-6b87a3a4-c2bf-4803-9ec5-ce9cd5314996_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@flukeout @joyent gave it another shot, failed, and put it down. app still needs work locally. I'll end up trying again soon. keep u updated", "to_user": "flukeout", "to_user_id": 19351055, "to_user_id_str": "19351055", "to_user_name": "Luke Pacholski", "in_reply_to_status_id": 146707269785092100, "in_reply_to_status_id_str": "146707269785092096"}, +{"created_at": "Thu, 15 Dec 2011 03:46:04 +0000", "from_user": "jmarjie", "from_user_id": 269636175, "from_user_id_str": "269636175", "from_user_name": "James Marjie ", "geo": null, "id": 147160470426619900, "id_str": "147160470426619905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1539385827/Me_suit_cropped_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1539385827/Me_suit_cropped_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @kraih: Interesting that #nodejs will never support fork. http://t.co/m59QSEi5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 03:40:27 +0000", "from_user": "kraih", "from_user_id": 17099459, "from_user_id_str": "17099459", "from_user_name": "Sebastian Riedel", "geo": null, "id": 147159054895165440, "id_str": "147159054895165441", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1202926094/ef95f126468b7fb56be70b801c87ea7d_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1202926094/ef95f126468b7fb56be70b801c87ea7d_normal.jpeg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Interesting that #nodejs will never support fork. http://t.co/m59QSEi5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 03:39:21 +0000", "from_user": "myalltop_paul", "from_user_id": 216075147, "from_user_id_str": "216075147", "from_user_name": "MyAllTop - Cloud", "geo": null, "id": 147158777651662850, "id_str": "147158777651662849", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Scaling WordPress on Joyent Cloud: Part Three http://t.co/sKiPQlA8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 03:13:15 +0000", "from_user": "kame355", "from_user_id": 14720834, "from_user_id_str": "14720834", "from_user_name": "[KaME]", "geo": null, "id": 147152211158380540, "id_str": "147152211158380544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/329886591/SP090606_R0010045_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/329886591/SP090606_R0010045_normal.jpg", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "Scaling WordPress on Joyent Cloud: Part Three http://t.co/HS3YJfMY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 02:26:09 +0000", "from_user": "desmax74", "from_user_id": 27959029, "from_user_id_str": "27959029", "from_user_name": "Massimiliano Dess\\u00EC", "geo": null, "id": 147140355370917900, "id_str": "147140355370917888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1258402323/27d5e57f-3f85-4dce-bfcb-91b6b36765b4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1258402323/27d5e57f-3f85-4dce-bfcb-91b6b36765b4_normal.png", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: \\u267B MongoDB: With Adoption Comes... More Adoption http://t.co/vPSJfjAD #MongoDB #OpenShift #RedHat #Joyent #Jaspersoft", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 02:09:26 +0000", "from_user": "cwestin63", "from_user_id": 162173507, "from_user_id_str": "162173507", "from_user_name": "Chris Westin", "geo": null, "id": 147136149427720200, "id_str": "147136149427720192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1125328797/headshot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1125328797/headshot_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: \\u267B MongoDB: With Adoption Comes... More Adoption http://t.co/vPSJfjAD #MongoDB #OpenShift #RedHat #Joyent #Jaspersoft", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 01:46:12 +0000", "from_user": "peteryorke", "from_user_id": 14136726, "from_user_id_str": "14136726", "from_user_name": "Peter Yorke", "geo": null, "id": 147130302668611600, "id_str": "147130302668611584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/51727717/peter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/51727717/peter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Agenda for Node Summit is up at http://t.co/xJHZXPUR @NodeSummit @joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 01:34:29 +0000", "from_user": "kfalter", "from_user_id": 253578873, "from_user_id_str": "253578873", "from_user_name": "Kelsey Falter", "geo": null, "id": 147127354190348300, "id_str": "147127354190348288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690576937/photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690576937/photo_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: \\u267B MongoDB: With Adoption Comes... More Adoption http://t.co/vPSJfjAD #MongoDB #OpenShift #RedHat #Joyent #Jaspersoft", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 01:25:41 +0000", "from_user": "forjared", "from_user_id": 14320109, "from_user_id_str": "14320109", "from_user_name": "Jared Rosoff", "geo": null, "id": 147125139669123070, "id_str": "147125139669123072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1038523858/jsr150x150_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1038523858/jsr150x150_normal.png", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: \\u267B MongoDB: With Adoption Comes... More Adoption http://t.co/vPSJfjAD #MongoDB #OpenShift #RedHat #Joyent #Jaspersoft", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 01:24:32 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 147124849880473600, "id_str": "147124849880473602", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: \\u267B MongoDB: With Adoption Comes... More Adoption http://t.co/vPSJfjAD #MongoDB #OpenShift #RedHat #Joyent #Jaspersoft", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 01:21:27 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 147124074588540930, "id_str": "147124074588540928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "\\u267B MongoDB: With Adoption Comes... More Adoption http://t.co/vPSJfjAD #MongoDB #OpenShift #RedHat #Joyent #Jaspersoft", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 01:15:05 +0000", "from_user": "denizrende", "from_user_id": 160784347, "from_user_id_str": "160784347", "from_user_name": "Deniz Rende", "geo": null, "id": 147122473622712320, "id_str": "147122473622712320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1372625701/76488_461965532076_552392076_6250115_4305252_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1372625701/76488_461965532076_552392076_6250115_4305252_n_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @bahudinp: Joyent SDC 6.5.2 has been live in Jakarta Indonesia !! thank you", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Thu, 15 Dec 2011 00:42:19 +0000", "from_user": "frintujwo2", "from_user_id": 389506603, "from_user_id_str": "389506603", "from_user_name": "Frint Bailey", "geo": null, "id": 147114226975129600, "id_str": "147114226975129601", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1584913276/imagesCAJMAJIG_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584913276/imagesCAJMAJIG_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "mistersugar joyent You can just email us at support [at] joyent [dot] com tooiULCy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 23:45:36 +0000", "from_user": "donwb", "from_user_id": 21307435, "from_user_id_str": "21307435", "from_user_name": "Don Browning", "geo": null, "id": 147099951439167500, "id_str": "147099951439167488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1180549025/Profile_Pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1180549025/Profile_Pic_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @indexzero: Do you use forever? Do you want to see if work as expected in node@0.6.x? +1 this #nodejs issue http://t.co/YOlTo947", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 23:18:44 +0000", "from_user": "NodeJsCommunity", "from_user_id": 402824193, "from_user_id_str": "402824193", "from_user_name": "NodeJS Community", "geo": null, "id": 147093193530417150, "id_str": "147093193530417152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627924583/njscomm_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@joyent @sbose78 Hell yeah!!", "to_user": "joyent", "to_user_id": 666523, "to_user_id_str": "666523", "to_user_name": "Joyent", "in_reply_to_status_id": 147092299816513540, "in_reply_to_status_id_str": "147092299816513536"}, +{"created_at": "Wed, 14 Dec 2011 23:18:23 +0000", "from_user": "CloudBlogs", "from_user_id": 86763679, "from_user_id_str": "86763679", "from_user_name": "Cloud Blogs", "geo": null, "id": 147093105869455360, "id_str": "147093105869455362", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/527208480/Cloud_Blogs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/527208480/Cloud_Blogs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cloud Computing Software Development: Joyent Announces SmartMachine Appliance for MongoDB: SAN FRA... http://t.co/AyHSzGZ0 #cloud #blogs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 23:16:44 +0000", "from_user": "edsai", "from_user_id": 5739392, "from_user_id_str": "5739392", "from_user_name": "Ed Saipetch", "geo": null, "id": 147092689677074430, "id_str": "147092689677074433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1151558798/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1151558798/image_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @peteryorke: Scaling WordPress in the Joyent Cloud Part 3 - http://t.co/xmySQcOx @joyent @wordpress <- nice series.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 23:15:11 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147092299816513540, "id_str": "147092299816513536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@sbose78 @NodeJsCommunity because it was easy to remember? :)", "to_user": "sbose78", "to_user_id": 190726716, "to_user_id_str": "190726716", "to_user_name": "Shoubhik Bose", "in_reply_to_status_id": 146850084708032500, "in_reply_to_status_id_str": "146850084708032512"}, +{"created_at": "Wed, 14 Dec 2011 23:14:50 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147092211014701060, "id_str": "147092211014701056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@GoldFireStudios @nodejs Thanks, James. You coming out to SF any time soon?", "to_user": "GoldFireStudios", "to_user_id": 19056517, "to_user_id_str": "19056517", "to_user_name": "James Simpson", "in_reply_to_status_id": 147045165469671420, "in_reply_to_status_id_str": "147045165469671425"}, +{"created_at": "Wed, 14 Dec 2011 23:14:25 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147092105372778500, "id_str": "147092105372778498", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @peteryorke: Scaling WordPress in the Joyent Cloud Part 3 - http://t.co/yQiBDrN9 @joyent @wordpress", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 23:10:59 +0000", "from_user": "benkross", "from_user_id": 16913955, "from_user_id_str": "16913955", "from_user_name": "Ben Ross", "geo": null, "id": 147091242604441600, "id_str": "147091242604441600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1120515336/Ben_Ad_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1120515336/Ben_Ad_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @indexzero: Do you use forever? Do you want to see if work as expected in node@0.6.x? +1 this #nodejs issue http://t.co/YOlTo947", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 22:42:00 +0000", "from_user": "indexzero", "from_user_id": 13696102, "from_user_id_str": "13696102", "from_user_name": "Charlie Robbins", "geo": null, "id": 147083948219047940, "id_str": "147083948219047936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1179850399/P1000093bw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1179850399/P1000093bw_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@ryah @izs Spoke with @indutny about this issue :: http://t.co/YOlTo947 ... any thoughts on a fix? Lots of +1 :)", "to_user": "ryah", "to_user_id": 18975861, "to_user_id_str": "18975861", "to_user_name": "Ryan Dahl"}, +{"created_at": "Wed, 14 Dec 2011 22:09:24 +0000", "from_user": "pedrogte", "from_user_id": 16401507, "from_user_id_str": "16401507", "from_user_name": "Pedro Teixeira", "geo": null, "id": 147075745359986700, "id_str": "147075745359986688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1591778458/DSC02359-2_copy_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591778458/DSC02359-2_copy_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @indexzero: Do you use forever? Do you want to see if work as expected in node@0.6.x? +1 this #nodejs issue http://t.co/YOlTo947", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 22:05:53 +0000", "from_user": "indexzero", "from_user_id": 13696102, "from_user_id_str": "13696102", "from_user_name": "Charlie Robbins", "geo": null, "id": 147074859304882180, "id_str": "147074859304882176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1179850399/P1000093bw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1179850399/P1000093bw_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Do you use forever? Do you want to see if work as expected in node@0.6.x? +1 this #nodejs issue http://t.co/YOlTo947", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:51:07 +0000", "from_user": "peteryorke", "from_user_id": 14136726, "from_user_id_str": "14136726", "from_user_name": "Peter Yorke", "geo": null, "id": 147071143176712200, "id_str": "147071143176712194", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/51727717/peter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/51727717/peter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Scaling WordPress in the Joyent Cloud Part 3 - http://t.co/yQiBDrN9 @joyent @wordpress", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:38:56 +0000", "from_user": "FuzzYspo0N", "from_user_id": 55639889, "from_user_id_str": "55639889", "from_user_name": "FuzzYspo0N", "geo": null, "id": 147068078264557570, "id_str": "147068078264557568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1224678045/labico_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1224678045/labico_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Thanks Pat. This looks like what I am after. \"@pat_wilson: @FuzzYspo0N Use this: http://t.co/W0n3rXCN + a socket\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:36:34 +0000", "from_user": "pat_wilson", "from_user_id": 30519621, "from_user_id_str": "30519621", "from_user_name": "Pat Wilson", "geo": null, "id": 147067481452847100, "id_str": "147067481452847104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/133793321/pat_icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/133793321/pat_icon_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@FuzzYspo0N Use this: http://t.co/zNjB8uML + a socket", "to_user": "FuzzYspo0N", "to_user_id": 55639889, "to_user_id_str": "55639889", "to_user_name": "FuzzYspo0N", "in_reply_to_status_id": 147066997929279500, "in_reply_to_status_id_str": "147066997929279488"}, +{"created_at": "Wed, 14 Dec 2011 21:19:26 +0000", "from_user": "davidpaulyoung", "from_user_id": 10637, "from_user_id_str": "10637", "from_user_name": "David Young", "geo": null, "id": 147063169750274050, "id_str": "147063169750274048", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/14395312/icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/14395312/icon_normal.jpg", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "I'm at Joyent (345 California St, #2000, San Francisco) http://t.co/IQ0LU7pD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:15:20 +0000", "from_user": "meeech", "from_user_id": 14403212, "from_user_id_str": "14403212", "from_user_name": "meeech", "geo": null, "id": 147062135481045000, "id_str": "147062135481044992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1262448627/first_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1262448627/first_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Doooov: #Google #NodeJS documentation, and you get a link to the v0.4.5 documents. You should be getting this http://t.co/WzeiQ3r4 #PSA /cc @Joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:13:26 +0000", "from_user": "Doooov", "from_user_id": 245190830, "from_user_id_str": "245190830", "from_user_name": "Dov Amihod", "geo": null, "id": 147061658995523600, "id_str": "147061658995523584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1591804482/powder_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591804482/powder_small_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Google #NodeJS documentation, and you get a link to the v0.4.5 documents. You should be getting this http://t.co/WzeiQ3r4 #PSA /cc @Joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 21:03:25 +0000", "from_user": "sbose78", "from_user_id": 190726716, "from_user_id_str": "190726716", "from_user_name": "Shoubhik Bose", "geo": null, "id": 147059137048608770, "id_str": "147059137048608768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1555136629/313678_10150287343724509_710069508_7509696_1574204_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555136629/313678_10150287343724509_710069508_7509696_1574204_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Configured #joyent and deloyed sample app , Failed to connect to cloud database , tried out @dojo , got stuck at the Editor. Phew ! Long day", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 18:57:52 +0000", "from_user": "DeirdreS", "from_user_id": 625093, "from_user_id_str": "625093", "from_user_name": "Deirdr\\u00E9 Straughan", "geo": null, "id": 147027540802940930, "id_str": "147027540802940928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1273049375/dpink_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273049375/dpink_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @bahudinp: Joyent SDC 6.5.2 has been live in Jakarta Indonesia !! thank you", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 18:02:34 +0000", "from_user": "DeveloperCloud", "from_user_id": 246185105, "from_user_id_str": "246185105", "from_user_name": "CloudComputing Dev", "geo": null, "id": 147013625792565250, "id_str": "147013625792565251", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://www.cloudcomputingdevelopment.net" rel="nofollow">Cloud Computing Software</a>", "text": "#cloud: Joyent Announces SmartMachine Appliance for MongoDB http://t.co/X6hsKpau", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 17:52:06 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 147010991996157950, "id_str": "147010991996157952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @jacksonwest: Awarded a new tri bike by @Joyent Endurance Team! Thanks! Can't wait to achieve higher performance through efficient hardware utilization.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 15:43:51 +0000", "from_user": "bahudinp", "from_user_id": 181033153, "from_user_id_str": "181033153", "from_user_name": "Bahudin Panggo", "geo": null, "id": 146978718336811000, "id_str": "146978718336811008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1202329373/231220101113_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1202329373/231220101113_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "Joyent SDC 6.5.2 has been live in Jakarta Indonesia !! thank you", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 15:43:39 +0000", "from_user": "Mondsichter", "from_user_id": 28121179, "from_user_id_str": "28121179", "from_user_name": "Kadir Y\\u00FCcel", "geo": null, "id": 146978665392111600, "id_str": "146978665392111616", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/300042515/karikatur_kadir_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/300042515/karikatur_kadir_normal.gif", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Important #git scenarios http://t.co/iLnNXcZk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 15:42:34 +0000", "from_user": "bahudinp", "from_user_id": 181033153, "from_user_id_str": "181033153", "from_user_name": "Bahudin Panggo", "geo": null, "id": 146978392749785100, "id_str": "146978392749785088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1202329373/231220101113_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1202329373/231220101113_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "Joyent SDC jakarta indonesia has been upgrade to 6.5.2 !! thank you for wiki document", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 15:19:51 +0000", "from_user": "RossC0", "from_user_id": 5549702, "from_user_id_str": "5549702", "from_user_name": "Ross Lawley", "geo": null, "id": 146972676660011000, "id_str": "146972676660011008", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/819741961/Photo2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/819741961/Photo2_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @francescaPasha: MongoDB integration on Joyent, OpenShift and Jaspersoft http://t.co/tfT3n5T2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 15:13:39 +0000", "from_user": "Reenaxlync", "from_user_id": 296669323, "from_user_id_str": "296669323", "from_user_name": "Reena Polcyn", "geo": null, "id": 146971117704331260, "id_str": "146971117704331264", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1349269936/large_012_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1349269936/large_012_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#cloud Monitoring Firm Circonus Joins Joyent Cloud Ecoystem http://t.co/9YFHgbAp ?!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 14:51:08 +0000", "from_user": "francescaPasha", "from_user_id": 207559129, "from_user_id_str": "207559129", "from_user_name": "Francesca Krihely", "geo": null, "id": 146965449672884220, "id_str": "146965449672884224", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1619685254/Screen_shot_2011-11-02_at_8.56.52_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619685254/Screen_shot_2011-11-02_at_8.56.52_PM_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "MongoDB integration on Joyent, OpenShift and Jaspersoft http://t.co/tfT3n5T2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 14:30:51 +0000", "from_user": "openshift", "from_user_id": 17620820, "from_user_id_str": "17620820", "from_user_name": "Red Hat OpenShift", "geo": null, "id": 146960346698100740, "id_str": "146960346698100736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1611111118/RH_Openshift_avatargraphic_option4_8162567_1011_dm_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611111118/RH_Openshift_avatargraphic_option4_8162567_1011_dm_normal.png", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "RT @al3xandru: MongoDB: With Adoption Comes... More Adoption http://t.co/vPSJfjAD #MongoDB #OpenShift #RedHat #Joyent #Jaspersoft", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 14:18:24 +0000", "from_user": "Fabryz", "from_user_id": 1459301, "from_user_id_str": "1459301", "from_user_name": "Fabrizio Codello", "geo": null, "id": 146957212617674750, "id_str": "146957212617674752", "iso_language_code": "eo", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/59421466/meilinga_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/59421466/meilinga_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Joyent: node.js and MongoDB host via MongoLab | MongoLab - MongoDB Hosting http://t.co/IjwbDn2b via @mongolab", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 13:45:10 +0000", "from_user": "dgmike", "from_user_id": 8217242, "from_user_id_str": "8217242", "from_user_name": "Michael Granados", "geo": null, "id": 146948849938862080, "id_str": "146948849938862081", "iso_language_code": "eo", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1490046875/rock-baby.regular_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1490046875/rock-baby.regular_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Joyent: node.js and MongoDB host via MongoLab | MongoLab - MongoDB Hosting http://t.co/wZMJGc1R", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 13:43:01 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 146948307661496320, "id_str": "146948307661496320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @joyent: RT @peteryorke: @joyent named \"innovator\" for 2011! @gartner Introduces: New Magic Quadrant for Public Cloud IaaS...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 13:28:12 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 146944578174464000, "id_str": "146944578174464000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "RT @notmatt: Summary of Joyent Vancouver xmas party: beer beer wine soup wine steak wine wine dessert coffee whisky sleep. Chat throughout. Awesome.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 13:00:58 +0000", "from_user": "zegenvs", "from_user_id": 386573, "from_user_id_str": "386573", "from_user_name": "Fumikazu Fujiwara", "geo": null, "id": 146937726086815740, "id_str": "146937726086815744", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1241948499/ffujiwara_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1241948499/ffujiwara_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "http://t.co/flZsvSvE loop->counters.req_init++; \\u3053\\u3046\\u3044\\u3046\\u306E\\u304C\\u3000process.uvCounters\\u3067\\u898B\\u308C\\u308B\\u306E\\u304B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 12:37:21 +0000", "from_user": "al3xandru", "from_user_id": 14094468, "from_user_id_str": "14094468", "from_user_name": "Alex Popescu", "geo": null, "id": 146931784158941200, "id_str": "146931784158941184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575919978/carmel_head_sk_sm_normal.jpg", "source": "<a href="http://nosql.mypopescu.com" rel="nofollow">myNoSQL</a>", "text": "MongoDB: With Adoption Comes... More Adoption http://t.co/vPSJfjAD #MongoDB #OpenShift #RedHat #Joyent #Jaspersoft", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 09:48:30 +0000", "from_user": "forgetcomputers", "from_user_id": 15758840, "from_user_id_str": "15758840", "from_user_name": "Forget Computers", "geo": null, "id": 146889291266670600, "id_str": "146889291266670592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/316992618/newicon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/316992618/newicon_normal.png", "source": "<a href="http://paper.li" rel="nofollow">Paper.li</a>", "text": "Forget Computers Mac & iOS News is out! http://t.co/jF5cvcPx \\u25B8 Top stories today via @itenquirer @gbeachcio @joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 09:40:41 +0000", "from_user": "notmatt", "from_user_id": 17985156, "from_user_id_str": "17985156", "from_user_name": "Matthew Smillie", "geo": null, "id": 146887323857076220, "id_str": "146887323857076224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1423962855/Photo_11-06-24_14_01_13_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1423962855/Photo_11-06-24_14_01_13_normal.jpeg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "Summary of Joyent Vancouver xmas party: beer beer wine soup wine steak wine wine dessert coffee whisky sleep. Chat throughout. Awesome.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 08:33:25 +0000", "from_user": "Jxck_", "from_user_id": 51442629, "from_user_id_str": "51442629", "from_user_name": "Jxck", "geo": null, "id": 146870395226693630, "id_str": "146870395226693632", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/490975026/Jack_normal.GIF", "profile_image_url_https": "https://si0.twimg.com/profile_images/490975026/Jack_normal.GIF", "source": "<a href="http://www.hatena.ne.jp/guide/twitter" rel="nofollow">Hatena</a>", "text": "joyent tom jsconf2011 multi tire Node Architecture #nodejs_jp / \\u201CMulti-tiered Node Architectures - JSConf 2011\\u201D http://t.co/qcZudLcT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 07:36:45 +0000", "from_user": "jalbertopaz", "from_user_id": 43298490, "from_user_id_str": "43298490", "from_user_name": "Alberto Paz Jimenez", "geo": null, "id": 146856136061104130, "id_str": "146856136061104128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/340171708/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/340171708/twitterProfilePhoto_normal.jpg", "source": "<a href="http://karmacracy.com" rel="nofollow">Karmacracy</a>", "text": "Projects, Applications, and Companies Using node.js - http://t.co/KXYmweBi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 07:12:43 +0000", "from_user": "sbose78", "from_user_id": 190726716, "from_user_id_str": "190726716", "from_user_name": "Shoubhik Bose", "geo": null, "id": 146850084708032500, "id_str": "146850084708032512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1555136629/313678_10150287343724509_710069508_7509696_1574204_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555136629/313678_10150287343724509_710069508_7509696_1574204_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Deployed \"hello world\" @NodeJsCommunity #nodejs app \\nhttp://t.co/oHhQszSD Nice work @joyent ! why did you choose \" \"no.de\" btw?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 06:04:24 +0000", "from_user": "jacksonwest", "from_user_id": 3615, "from_user_id_str": "3615", "from_user_name": "Jackson West", "geo": null, "id": 146832892633423870, "id_str": "146832892633423872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1479257964/yournewprofilepicturesrsly_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1479257964/yournewprofilepicturesrsly_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Awarded a new tri bike by @Joyent Endurance Team! Thanks! Can't wait to achieve higher performance through efficient hardware utilization.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Wed, 14 Dec 2011 05:04:59 +0000", "from_user": "evettqexf3", "from_user_id": 388361975, "from_user_id_str": "388361975", "from_user_name": "Evett Jackman", "geo": null, "id": 146817939004342270, "id_str": "146817939004342272", "iso_language_code": "hu", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1581819426/f_42_w_0005_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1581819426/f_42_w_0005_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@xbabyelvisx http://t.co/Ufw3jqrd", "to_user": "xbabyelvisx", "to_user_id": 220156843, "to_user_id_str": "220156843", "to_user_name": "Emma Clark", "in_reply_to_status_id": 146711217354981380, "in_reply_to_status_id_str": "146711217354981377"}, +{"created_at": "Wed, 14 Dec 2011 04:47:08 +0000", "from_user": "kimdogfoot", "from_user_id": 21736041, "from_user_id_str": "21736041", "from_user_name": "\\uAE40\\uAC1C\\uBC1C", "geo": null, "id": 146813448053985280, "id_str": "146813448053985280", "iso_language_code": "ko", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1645518311/profle00_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645518311/profle00_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "\\uAC80\\uC0C9\\uC5D0 \\uC900\\uD55C \\uACB0\\uACFC\\uBB3C\\uC778\\uAC00. \\uC560\\uB4DC\\uC13C\\uC2A4 \\uAD11\\uACE0\\uC5D0 \\uC5BC\\uB9C8\\uC804 \\uBD80\\uD130 Joyent \\uAC00 \\uC5C4\\uCCAD\\uB098\\uAC8C \\uB178\\uCD9C\\uB418\\uB294\\uAD6C\\uB098.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 04:45:51 +0000", "from_user": "evettqexf3", "from_user_id": 388361975, "from_user_id_str": "388361975", "from_user_name": "Evett Jackman", "geo": null, "id": 146813125663006720, "id_str": "146813125663006720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1581819426/f_42_w_0005_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1581819426/f_42_w_0005_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Icecube870 http://t.co/Ufw3jqrd", "to_user": "Icecube870", "to_user_id": 383040857, "to_user_id_str": "383040857", "to_user_name": "Charles Ullrey ", "in_reply_to_status_id": 146711326234914800, "in_reply_to_status_id_str": "146711326234914817"}, +{"created_at": "Wed, 14 Dec 2011 04:37:24 +0000", "from_user": "evettqexf3", "from_user_id": 388361975, "from_user_id_str": "388361975", "from_user_name": "Evett Jackman", "geo": null, "id": 146811001050906620, "id_str": "146811001050906625", "iso_language_code": "is", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1581819426/f_42_w_0005_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1581819426/f_42_w_0005_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@hausofggaga http://t.co/Ufw3jqrd", "to_user": "hausofggaga", "to_user_id": 177963354, "to_user_id_str": "177963354", "to_user_name": "Angelina Joanne", "in_reply_to_status_id": 146711338243211260, "in_reply_to_status_id_str": "146711338243211264"}, +{"created_at": "Wed, 14 Dec 2011 04:29:00 +0000", "from_user": "evettqexf3", "from_user_id": 388361975, "from_user_id_str": "388361975", "from_user_name": "Evett Jackman", "geo": null, "id": 146808884294721540, "id_str": "146808884294721537", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1581819426/f_42_w_0005_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1581819426/f_42_w_0005_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@beelbash http://t.co/Ufw3jqrd", "to_user": "beelbash", "to_user_id": 341338677, "to_user_id_str": "341338677", "to_user_name": "Bilkisu Bashir", "in_reply_to_status_id": 146711151533752320, "in_reply_to_status_id_str": "146711151533752320"}, +{"created_at": "Wed, 14 Dec 2011 04:20:57 +0000", "from_user": "evettqexf3", "from_user_id": 388361975, "from_user_id_str": "388361975", "from_user_name": "Evett Jackman", "geo": null, "id": 146806858936623100, "id_str": "146806858936623104", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1581819426/f_42_w_0005_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1581819426/f_42_w_0005_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@leesm712 http://t.co/Ufw3jqrd", "to_user": "leesm712", "to_user_id": 153070961, "to_user_id_str": "153070961", "to_user_name": "Seung Min Lee", "in_reply_to_status_id": 146660927897468930, "in_reply_to_status_id_str": "146660927897468929"}, +{"created_at": "Wed, 14 Dec 2011 03:57:28 +0000", "from_user": "ichii386", "from_user_id": 10564102, "from_user_id_str": "10564102", "from_user_name": "ICHII Takashi", "geo": null, "id": 146800950718382080, "id_str": "146800950718382080", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/37796142/saru_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/37796142/saru_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@syoyo \\u76F4\\u63A5 @joyent \\u3092\\u3064\\u3064\\u3044\\u3066 IB \\u74B0\\u5883\\u306E\\u6574\\u5099\\u3092\\u307E\\u308F\\u308A\\u304B\\u3089\\u56FA\\u3081\\u308B\\u3068\\u304B", "to_user": "syoyo", "to_user_id": 15808736, "to_user_id_str": "15808736", "to_user_name": "syoyo", "in_reply_to_status_id": 146794725393956860, "in_reply_to_status_id_str": "146794725393956864"}, +{"created_at": "Wed, 14 Dec 2011 03:32:44 +0000", "from_user": "syoyo", "from_user_id": 15808736, "from_user_id_str": "15808736", "from_user_name": "syoyo", "geo": null, "id": 146794725393956860, "id_str": "146794725393956864", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1233719952/syoyo_face_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1233719952/syoyo_face_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "node.js \\u3067 RDMA \\u306E\\u51FA\\u756A\\u3067\\u3059\\u306D, \\u5206\\u304B\\u308A\\u307E\\u3059 > Joyent\\u306F\\u30D5\\u30ED\\u30F3\\u30C8\\u3067Node.js\\u3092\\u52D5\\u4F5C\\u3055\\u305B\\u308B\\u30CE\\u30F3\\u30D6\\u30ED\\u30C3\\u30AD\\u30F3\\u30B0I/O\\u306B\\u6700\\u9069\\u5316\\u3055\\u308C\\u305F\\u30A4\\u30F3\\u30D5\\u30E9\\u3092\\u63D0\\u4F9B. http://t.co/23dKVLQV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 00:58:39 +0000", "from_user": "paulbotang", "from_user_id": 227846517, "from_user_id_str": "227846517", "from_user_name": "Paul Botang", "geo": null, "id": 146755950785724400, "id_str": "146755950785724416", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @arrowp: le cukino angleteros http://t.co/KBKtFPQB RT @paulbotang: @arrowp @joyent fux", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 00:56:20 +0000", "from_user": "vvakame", "from_user_id": 93872255, "from_user_id_str": "93872255", "from_user_name": "\\u308F\\u304B\\u3081", "geo": null, "id": 146755367911690240, "id_str": "146755367911690240", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668074095/vvakame_santa_face_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668074095/vvakame_santa_face_normal.png", "source": "<a href="https://mozillalabs.com/ubiquity/" rel="nofollow">Ubiquity</a>", "text": "RT @gocho: node.js \\u306E\\u30E2\\u30B8\\u30E5\\u30FC\\u30EB\\u307E\\u3068\\u3081\\u30DA\\u30FC\\u30B8\\u307F\\u305F\\u3044\\u306B\\u306A\\u3063\\u3066\\u308B... JSAN\\u30A7 http://t.co/6tSUxVnD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 00:54:32 +0000", "from_user": "gocho", "from_user_id": 14523807, "from_user_id_str": "14523807", "from_user_name": "gocho", "geo": null, "id": 146754914134147070, "id_str": "146754914134147073", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/943882585/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/943882585/twitter_normal.jpg", "source": "<a href="https://mozillalabs.com/ubiquity/" rel="nofollow">Ubiquity</a>", "text": "node.js \\u306E\\u30E2\\u30B8\\u30E5\\u30FC\\u30EB\\u307E\\u3068\\u3081\\u30DA\\u30FC\\u30B8\\u307F\\u305F\\u3044\\u306B\\u306A\\u3063\\u3066\\u308B... JSAN\\u30A7 http://t.co/6tSUxVnD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Wed, 14 Dec 2011 00:51:29 +0000", "from_user": "paulbotang", "from_user_id": 227846517, "from_user_id_str": "227846517", "from_user_name": "Paul Botang", "geo": null, "id": 146754144668094460, "id_str": "146754144668094464", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@arrowp @joyent EPTO SLOP", "to_user": "arrowp", "to_user_id": 41588986, "to_user_id_str": "41588986", "to_user_name": "Arrow P", "in_reply_to_status_id": 137665996042407940, "in_reply_to_status_id_str": "137665996042407936"}, +{"created_at": "Wed, 14 Dec 2011 00:16:51 +0000", "from_user": "mschneider718", "from_user_id": 15346683, "from_user_id_str": "15346683", "from_user_name": "Martin Schneider", "geo": null, "id": 146745431194480640, "id_str": "146745431194480640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1340389293/25263_498826855095_697700095_11542034_5066996_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1340389293/25263_498826855095_697700095_11542034_5066996_n_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @joyent: RT @mongodb: MMS: a SaaS based tool that monitors your MongoDB cluster http://t.co/V4EyUAXr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 23:57:15 +0000", "from_user": "peteryorke", "from_user_id": 14136726, "from_user_id_str": "14136726", "from_user_name": "Peter Yorke", "geo": null, "id": 146740495236861950, "id_str": "146740495236861952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/51727717/peter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/51727717/peter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@0hi @shamoons @joyent Turn in a ticket to support@joyent.com", "to_user": "0hi", "to_user_id": 120966622, "to_user_id_str": "120966622", "to_user_name": "b", "in_reply_to_status_id": 146732288716189700, "in_reply_to_status_id_str": "146732288716189697"}, +{"created_at": "Tue, 13 Dec 2011 23:51:43 +0000", "from_user": "lucks17", "from_user_id": 19469810, "from_user_id_str": "19469810", "from_user_name": "Luis de Jesus", "geo": null, "id": 146739103268999170, "id_str": "146739103268999168", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702320348/zelda_skyward_sword_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702320348/zelda_skyward_sword_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Que seria la vida sin Snippets? at\\u00E1squense -> http://t.co/0AAHxMer", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 23:37:04 +0000", "from_user": "0hi", "from_user_id": 120966622, "from_user_id_str": "120966622", "from_user_name": "b", "geo": null, "id": 146735416589033470, "id_str": "146735416589033473", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/739841012/oscar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/739841012/oscar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@shamoons @joyent http://t.co/hbuFhvQN", "to_user": "shamoons", "to_user_id": 20744357, "to_user_id_str": "20744357", "to_user_name": "Shamoon Siddiqui", "in_reply_to_status_id": 146627677766426620, "in_reply_to_status_id_str": "146627677766426624"}, +{"created_at": "Tue, 13 Dec 2011 23:24:38 +0000", "from_user": "0hi", "from_user_id": 120966622, "from_user_id_str": "120966622", "from_user_name": "b", "geo": null, "id": 146732288716189700, "id_str": "146732288716189697", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/739841012/oscar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/739841012/oscar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@shamoons @joyent Me, too. Can't connect with ssh", "to_user": "shamoons", "to_user_id": 20744357, "to_user_id_str": "20744357", "to_user_name": "Shamoon Siddiqui", "in_reply_to_status_id": 146627677766426620, "in_reply_to_status_id_str": "146627677766426624"}, +{"created_at": "Tue, 13 Dec 2011 22:20:57 +0000", "from_user": "uniserveTelecom", "from_user_id": 426153054, "from_user_id_str": "426153054", "from_user_name": "Uniserve", "geo": null, "id": 146716263694073860, "id_str": "146716263694073857", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668689685/uniserve_icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668689685/uniserve_icon_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Affordable #business Internet service, #business VoIP, #Joyent #cloud computing & more! We make it easy to compete. http://t.co/FLLhSK0r", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 21:45:13 +0000", "from_user": "flukeout", "from_user_id": 19351055, "from_user_id_str": "19351055", "from_user_name": "Luke Pacholski", "geo": null, "id": 146707269785092100, "id_str": "146707269785092096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/82989013/__twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/82989013/__twitter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@jasonmcleod @joyent Did you figure this out? I'm getting the same problem deploying a hello world app.", "to_user": "jasonmcleod", "to_user_id": 12221692, "to_user_id_str": "12221692", "to_user_name": "Jason McLeod", "in_reply_to_status_id": 128196440597078020, "in_reply_to_status_id_str": "128196440597078016"}, +{"created_at": "Tue, 13 Dec 2011 21:43:44 +0000", "from_user": "xavijam", "from_user_id": 26775253, "from_user_id_str": "26775253", "from_user_name": "Javier \\u00C1lvarez", "geo": null, "id": 146706897796481020, "id_str": "146706897796481024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1202362793/gentoo_avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1202362793/gentoo_avatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @peteryorke: Check out the new site for #node.js - please see the updated http://t.co/RhbMwNBP @joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 21:33:11 +0000", "from_user": "lderezinski", "from_user_id": 6166672, "from_user_id_str": "6166672", "from_user_name": "Linda Derezinski", "geo": null, "id": 146704240285450240, "id_str": "146704240285450240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1575099705/lderezinski_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575099705/lderezinski_normal.png", "source": "<a href="http://www.nambu.com/" rel="nofollow">Nambu</a>", "text": "@pborenstein seems that most of joyent is a walking germ factory ...", "to_user": "pborenstein", "to_user_id": 3675931, "to_user_id_str": "3675931", "to_user_name": "Philip Borenstein", "in_reply_to_status_id": 146649805282738180, "in_reply_to_status_id_str": "146649805282738176"}, +{"created_at": "Tue, 13 Dec 2011 20:35:15 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 146689664139530240, "id_str": "146689664139530241", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @basho: Still some room left for BashoChats tomorrow night in San Fran. http://t.co/wrqZgSRA\\u2026 Erlang, DTrace, Clojure,...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 20:23:18 +0000", "from_user": "bdha", "from_user_id": 21226447, "from_user_id_str": "21226447", "from_user_name": "Bryan HorstmannAllen", "geo": null, "id": 146686656626434050, "id_str": "146686656626434048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1290302189/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1290302189/image_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@srsmoot @joyent @DeirdreS Yup. It'll import your zones pool and bring everything up.", "to_user": "srsmoot", "to_user_id": 228811555, "to_user_id_str": "228811555", "to_user_name": "Sam", "in_reply_to_status_id": 146673498465644540, "in_reply_to_status_id_str": "146673498465644544"}, +{"created_at": "Tue, 13 Dec 2011 20:09:10 +0000", "from_user": "miumiento", "from_user_id": 63054849, "from_user_id_str": "63054849", "from_user_name": "Mariano Iumiento", "geo": null, "id": 146683098267009020, "id_str": "146683098267009025", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/390812352/n1337751248_30237737_23_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/390812352/n1337751248_30237737_23_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @joyent: RT @peteryorke: @joyent named \"innovator\" for 2011! @gartner Introduces: New Magic Quadrant for Public Cloud IaaS...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 20:06:26 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 146682409860075520, "id_str": "146682409860075520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@jasonh video @ #mongosv @10gen last wk. \"The Importance of Accessibility and Open Source in Developer Adoption\" http://t.co/lagh9CaF", "to_user": "jasonh", "to_user_id": 10638, "to_user_id_str": "10638", "to_user_name": "Jason Hoffman"}, +{"created_at": "Tue, 13 Dec 2011 19:50:03 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 146678287563890700, "id_str": "146678287563890688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @peteryorke: @joyent named \"innovator\" for 2011! @gartner Introduces: New Magic Quadrant for Public Cloud IaaS...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 19:45:02 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 146677025535574000, "id_str": "146677025535574016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT Circonus 4 Best Practices to Monitor Vitals During the Holidays via @RISNewsInsights http://t.co/2LXp3ETt #monitoring", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 19:41:51 +0000", "from_user": "justinfreitag", "from_user_id": 14059639, "from_user_id_str": "14059639", "from_user_name": "Justin Freitag", "geo": null, "id": 146676224851329020, "id_str": "146676224851329024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1426918085/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1426918085/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @peteryorke: Check out the new site for #node.js - please see the updated http://t.co/RhbMwNBP @joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 19:31:01 +0000", "from_user": "srsmoot", "from_user_id": 228811555, "from_user_id_str": "228811555", "from_user_name": "Sam", "geo": null, "id": 146673498465644540, "id_str": "146673498465644544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1323854939/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1323854939/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@bdha @joyent @DeirdreS Great. I assume once I remove my /etc/system tweak, I'll be able to just burn a new ISO, reboot and profit?", "to_user": "bdha", "to_user_id": 21226447, "to_user_id_str": "21226447", "to_user_name": "Bryan HorstmannAllen", "in_reply_to_status_id": 146652524009631740, "in_reply_to_status_id_str": "146652524009631744"}, +{"created_at": "Tue, 13 Dec 2011 19:16:56 +0000", "from_user": "Nodejs_bot", "from_user_id": 411269452, "from_user_id_str": "411269452", "from_user_name": "NodeJSbot", "geo": null, "id": 146669954241007600, "id_str": "146669954241007618", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639037479/nodeJs_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "via @jdonley83 peteryorke: Check out the new site for #node.js - please see the updated http://t.co/jT8sjMnY @joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 19:14:29 +0000", "from_user": "jdonley83", "from_user_id": 21068888, "from_user_id_str": "21068888", "from_user_name": "Joseph Donley", "geo": null, "id": 146669335988027400, "id_str": "146669335988027392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1618837233/Optimized-jdonley83logoNoTexture_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618837233/Optimized-jdonley83logoNoTexture_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @peteryorke: Check out the new site for #node.js - please see the updated http://t.co/RhbMwNBP @joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 19:11:28 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 146668577804660740, "id_str": "146668577804660736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @sh1mmer: Vote on which potential logo you like the best for my new company: http://t.co/eDwpSShd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 19:11:10 +0000", "from_user": "mrryanjohnston", "from_user_id": 297437879, "from_user_id_str": "297437879", "from_user_name": "Ryan Johnston", "geo": null, "id": 146668500361019400, "id_str": "146668500361019393", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1370834234/0f437ad_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1370834234/0f437ad_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @peteryorke: Check out the new site for #node.js - please see the updated http://t.co/RhbMwNBP @joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 19:10:09 +0000", "from_user": "3rdEden", "from_user_id": 14350255, "from_user_id_str": "14350255", "from_user_name": "Arnout Kazemier", "geo": null, "id": 146668246077161470, "id_str": "146668246077161472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538934387/3rdEdenPhoto_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @scottherson: @joyent named \"innovator\" for 2011! @Gartner Introduces: New Magic Quadrant for Public Cloud IaaS http://t.co/Ry6uBMCP via @cloudtweaks", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 19:09:53 +0000", "from_user": "tdegrunt", "from_user_id": 8596262, "from_user_id_str": "8596262", "from_user_name": "Tom", "geo": null, "id": 146668177886158850, "id_str": "146668177886158848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1427942092/tdegrunt_96_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1427942092/tdegrunt_96_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @peteryorke: Check out the new site for #node.js - please see the updated http://t.co/RhbMwNBP @joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 19:09:50 +0000", "from_user": "aaronfay", "from_user_id": 58887756, "from_user_id_str": "58887756", "from_user_name": "Aaron Fay", "geo": null, "id": 146668166188245000, "id_str": "146668166188244992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/431947379/af-avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/431947379/af-avatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @peteryorke: Check out the new site for #node.js - please see the updated http://t.co/RhbMwNBP @joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 19:08:48 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 146667905373835260, "id_str": "146667905373835264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @peteryorke: Check out the new site for #node.js - please see the updated http://t.co/RhbMwNBP @joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 18:57:54 +0000", "from_user": "peteryorke", "from_user_id": 14136726, "from_user_id_str": "14136726", "from_user_name": "Peter Yorke", "geo": null, "id": 146665162479370240, "id_str": "146665162479370240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/51727717/peter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/51727717/peter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Check out the new site for #node.js - please see the updated http://t.co/RhbMwNBP @joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 18:54:06 +0000", "from_user": "lc0d3r", "from_user_id": 66489856, "from_user_id_str": "66489856", "from_user_name": "Sergii", "geo": null, "id": 146664206807203840, "id_str": "146664206807203840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1364989382/twi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1364989382/twi_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Got invitation to Node Summit from @joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 18:52:51 +0000", "from_user": "scottherson", "from_user_id": 89247454, "from_user_id_str": "89247454", "from_user_name": "scott herson", "geo": null, "id": 146663890569273340, "id_str": "146663890569273344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1281899263/fiji_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1281899263/fiji_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "#node.js and @joyent fans - please see the updated http://t.co/KaYpEl2d", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 18:50:23 +0000", "from_user": "peteryorke", "from_user_id": 14136726, "from_user_id_str": "14136726", "from_user_name": "Peter Yorke", "geo": null, "id": 146663270638551040, "id_str": "146663270638551041", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/51727717/peter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/51727717/peter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@joyent named \"innovator\" for 2011! @Gartner Introduces: New Magic Quadrant for Public Cloud IaaS http://t.co/ufgcv1Pi via @cloudtweaks", "to_user": "joyent", "to_user_id": 666523, "to_user_id_str": "666523", "to_user_name": "Joyent"}, +{"created_at": "Tue, 13 Dec 2011 18:46:44 +0000", "from_user": "scottherson", "from_user_id": 89247454, "from_user_id_str": "89247454", "from_user_name": "scott herson", "geo": null, "id": 146662353784672260, "id_str": "146662353784672257", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1281899263/fiji_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1281899263/fiji_normal", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "@joyent named \"innovator\" for 2011! @Gartner Introduces: New Magic Quadrant for Public Cloud IaaS http://t.co/Ry6uBMCP via @cloudtweaks", "to_user": "joyent", "to_user_id": 666523, "to_user_id_str": "666523", "to_user_name": "Joyent"}, +{"created_at": "Tue, 13 Dec 2011 18:30:53 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 146658362866679800, "id_str": "146658362866679808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "RT @Percona: Percona XtraBackup 1.6 for Windows \\u201Ctry me\\u201D edition http://t.co/tE2bilIM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 18:30:40 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 146658311712948220, "id_str": "146658311712948225", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @DynInc: Our @jadelisle on #email #deliverability use cases and how Dyn has helped in various verticals: http://t.co/lL7CgYSv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 18:16:27 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 146654732944023550, "id_str": "146654732944023554", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Nice article about customer @UtinniGames in @insidenetwork on #BeingHuman FB game. http://t.co/Eu0RlxwF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 18:07:59 +0000", "from_user": "bdha", "from_user_id": 21226447, "from_user_id_str": "21226447", "from_user_name": "Bryan HorstmannAllen", "geo": null, "id": 146652602376003600, "id_str": "146652602376003584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1290302189/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1290302189/image_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@srsmoot @joyent @DeirdreS (small arc generally means crap perf)", "to_user": "srsmoot", "to_user_id": 228811555, "to_user_id_str": "228811555", "to_user_name": "Sam", "in_reply_to_status_id": 146651301781057540, "in_reply_to_status_id_str": "146651301781057536"}, +{"created_at": "Tue, 13 Dec 2011 18:07:41 +0000", "from_user": "bdha", "from_user_id": 21226447, "from_user_id_str": "21226447", "from_user_name": "Bryan HorstmannAllen", "geo": null, "id": 146652524009631740, "id_str": "146652524009631744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1290302189/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1290302189/image_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@srsmoot @joyent @DeirdreS I think John is spinning a new release so you'll be able to remove the arc limiter once you boot that.", "to_user": "srsmoot", "to_user_id": 228811555, "to_user_id_str": "228811555", "to_user_name": "Sam", "in_reply_to_status_id": 146651301781057540, "in_reply_to_status_id_str": "146651301781057536"}, +{"created_at": "Tue, 13 Dec 2011 18:02:49 +0000", "from_user": "srsmoot", "from_user_id": 228811555, "from_user_id_str": "228811555", "from_user_name": "Sam", "geo": null, "id": 146651301781057540, "id_str": "146651301781057536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1323854939/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1323854939/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@bdha @joyent @deirdres Creating a 48GB swap and set zfs:zfs_arc_max = 0x100000000 did the trick. Thanks!", "to_user": "bdha", "to_user_id": 21226447, "to_user_id_str": "21226447", "to_user_name": "Bryan HorstmannAllen"}, +{"created_at": "Tue, 13 Dec 2011 17:56:52 +0000", "from_user": "pborenstein", "from_user_id": 3675931, "from_user_id_str": "3675931", "from_user_name": "Philip Borenstein", "geo": null, "id": 146649805282738180, "id_str": "146649805282738176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/71234052/IMG_0453_2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/71234052/IMG_0453_2_normal.JPG", "source": "<a href="http://tweetli.st/" rel="nofollow">TweetList Pro</a>", "text": "Somewhere on my trip to @joyent I picked up a cold. I blame @united.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:55:44 +0000", "from_user": "davidpaulyoung", "from_user_id": 10637, "from_user_id_str": "10637", "from_user_name": "David Young", "geo": null, "id": 146649516869820400, "id_str": "146649516869820416", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/14395312/icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/14395312/icon_normal.jpg", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "I'm at Joyent (345 California St, #2000, San Francisco) http://t.co/613Xq5dk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:36:59 +0000", "from_user": "rob_ellis", "from_user_id": 9924652, "from_user_id_str": "9924652", "from_user_name": "Rob Ellis", "geo": null, "id": 146644801989771260, "id_str": "146644801989771264", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/701781087/Photo_on_2010-01-05_at_14.37_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/701781087/Photo_on_2010-01-05_at_14.37_normal.jpg", "source": "<a href="http://twitter.com" rel="nofollow">Tweetie for Mac</a>", "text": "Oh ya, http://t.co/fjXAJA3j got an overhaul yesterday - very sweet! #node #joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 17:29:49 +0000", "from_user": "DeirdreS", "from_user_id": 625093, "from_user_id_str": "625093", "from_user_name": "Deirdr\\u00E9 Straughan", "geo": null, "id": 146642998204174340, "id_str": "146642998204174336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1273049375/dpink_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273049375/dpink_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @MogdenPong: With mixed feelings I nominate Joyent Cloud Analytics for Best Tech Achievement 2011 Crunchie! http://t.co/hoTmKfaW #crunchies", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 16:34:37 +0000", "from_user": "srsmoot", "from_user_id": 228811555, "from_user_id_str": "228811555", "from_user_name": "Sam", "geo": null, "id": 146629103452307460, "id_str": "146629103452307456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1323854939/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1323854939/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@bdha @joyent @deirdres Any advice on how much to reserve for the global zone? Is there a general formula or would a standard 4GB cut it?", "to_user": "bdha", "to_user_id": 21226447, "to_user_id_str": "21226447", "to_user_name": "Bryan HorstmannAllen"}, +{"created_at": "Tue, 13 Dec 2011 16:28:57 +0000", "from_user": "shamoons", "from_user_id": 20744357, "from_user_id_str": "20744357", "from_user_name": "Shamoon Siddiqui", "geo": null, "id": 146627677766426620, "id_str": "146627677766426624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1568292716/shamoon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1568292716/shamoon_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@joyent when doing a push to my no.de, I get \"60239: Connection refused\\nfatal: The remote end hung up unexpectedly\" #pleasehelp", "to_user": "joyent", "to_user_id": 666523, "to_user_id_str": "666523", "to_user_name": "Joyent"}, +{"created_at": "Tue, 13 Dec 2011 16:28:15 +0000", "from_user": "KapilChatani", "from_user_id": 415342024, "from_user_id_str": "415342024", "from_user_name": "kapil chatani", "geo": null, "id": 146627503908327420, "id_str": "146627503908327426", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1672768864/370677_100003028345104_1800252874_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672768864/370677_100003028345104_1800252874_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@joyent LOVE", "to_user": "joyent", "to_user_id": 666523, "to_user_id_str": "666523", "to_user_name": "Joyent"}, +{"created_at": "Tue, 13 Dec 2011 16:27:17 +0000", "from_user": "KapilChatani", "from_user_id": 415342024, "from_user_id_str": "415342024", "from_user_name": "kapil chatani", "geo": null, "id": 146627258658988030, "id_str": "146627258658988033", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1672768864/370677_100003028345104_1800252874_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672768864/370677_100003028345104_1800252874_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@joyent HI", "to_user": "joyent", "to_user_id": 666523, "to_user_id_str": "666523", "to_user_name": "Joyent"}, +{"created_at": "Tue, 13 Dec 2011 15:31:30 +0000", "from_user": "srsmoot", "from_user_id": 228811555, "from_user_id_str": "228811555", "from_user_name": "Sam", "geo": null, "id": 146613222944948220, "id_str": "146613222944948224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1323854939/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1323854939/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@bdha @joyent @deirdres thanks much. I'll give it a shot later this morning. Sounds right. I've got 48GB. A 500GB zones pool and 4GB guests.", "to_user": "bdha", "to_user_id": 21226447, "to_user_id_str": "21226447", "to_user_name": "Bryan HorstmannAllen", "in_reply_to_status_id": 146468796901756930, "in_reply_to_status_id_str": "146468796901756929"}, +{"created_at": "Tue, 13 Dec 2011 15:29:18 +0000", "from_user": "muddydixon", "from_user_id": 5484602, "from_user_id_str": "5484602", "from_user_name": "Muddy Dixon", "geo": null, "id": 146612666234978300, "id_str": "146612666234978305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1140591072/27366_619217309_3444_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1140591072/27366_619217309_3444_q_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @nodejschina: First Server & Joyent Announce SmartDataCenter-powered cloud in Japan. Node Ninja, a N\\u2026 http://t.co/Ecz6niSv via @wordpressdotcom", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 15:20:08 +0000", "from_user": "vanx2", "from_user_id": 14329352, "from_user_id_str": "14329352", "from_user_name": "shigeto yatani", "geo": null, "id": 146610360173084670, "id_str": "146610360173084672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1181234676/profile_img.png.128.1236657125_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1181234676/profile_img.png.128.1236657125_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @nodejschina: First Server & Joyent Announce SmartDataCenter-powered cloud in Japan. Node Ninja, a N\\u2026 http://t.co/Ecz6niSv via @wordpressdotcom", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 11:42:19 +0000", "from_user": "MogdenPong", "from_user_id": 221851124, "from_user_id_str": "221851124", "from_user_name": "Dominic Kay", "geo": null, "id": 146555546923843600, "id_str": "146555546923843584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1409483344/new-7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1409483344/new-7_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "With mixed feelings I nominate Joyent Cloud Analytics for Best Tech Achievement 2011 Crunchie! http://t.co/hoTmKfaW #crunchies", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 11:10:02 +0000", "from_user": "lderezinski", "from_user_id": 6166672, "from_user_id_str": "6166672", "from_user_name": "Linda Derezinski", "geo": null, "id": 146547419356737540, "id_str": "146547419356737539", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1575099705/lderezinski_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575099705/lderezinski_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Join me and nominate Joyent Cloud Analytics for the Best Technology Achievement 2011 Crunchie! http://t.co/mnS7AQsU #crunchies", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 10:18:30 +0000", "from_user": "micloudservice", "from_user_id": 372609363, "from_user_id_str": "372609363", "from_user_name": "micloud", "geo": null, "id": 146534453949366270, "id_str": "146534453949366272", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "MiCloud\\u7684\\u6280\\u8853\\u5408\\u4F5C\\u5925\\u4F34\\uFF0CJoyent\\u5927\\u4E2D\\u83EF\\u7E3D\\u88C1Howard Wu\\u5C08\\u8A2A\\u3002\\n\\nhttp://t.co/xaw8GOuz http://t.co/3vhkLpz3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 09:25:56 +0000", "from_user": "morteza_milani", "from_user_id": 166104316, "from_user_id_str": "166104316", "from_user_name": "Morteza Milani", "geo": null, "id": 146521224560902140, "id_str": "146521224560902144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681214380/me2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681214380/me2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "new http://t.co/ckKBwPZp page is awesome! thank you @joyent! #nodejs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 09:08:41 +0000", "from_user": "ninja_krh", "from_user_id": 270966105, "from_user_id_str": "270966105", "from_user_name": "Kimberlee Hoffman", "geo": null, "id": 146516882986512400, "id_str": "146516882986512384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1418025474/5770_1195959817718_1190144125_30579552_4515047_n_2__normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1418025474/5770_1195959817718_1190144125_30579552_4515047_n_2__normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Join me and nominate Joyent Cloud Analytics for the Best Technology Achievement 2011 Crunchie! http://t.co/UN4quCZQ #crunchies", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 09:04:25 +0000", "from_user": "xlntjoy", "from_user_id": 11205792, "from_user_id_str": "11205792", "from_user_name": "Joyce Woolhether", "geo": null, "id": 146515807562768400, "id_str": "146515807562768384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1549645773/ipod_2011_SF_and_Pueb___craigs_017_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1549645773/ipod_2011_SF_and_Pueb___craigs_017_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Join me and nominate Joyent Cloud Analytics for the Best Technology Achievement 2011 Crunchie! http://t.co/ZIUGszuw #crunchies", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 09:03:48 +0000", "from_user": "xlntjoy", "from_user_id": 11205792, "from_user_id_str": "11205792", "from_user_name": "Joyce Woolhether", "geo": null, "id": 146515653128486900, "id_str": "146515653128486912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1549645773/ipod_2011_SF_and_Pueb___craigs_017_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1549645773/ipod_2011_SF_and_Pueb___craigs_017_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @HowieDragon: Join me and nominate Joyent Cloud Analytics for the Best Technology Achievement 2011 Crunchie! http://t.co/7G8LpidV #crunchies", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 08:29:04 +0000", "from_user": "davybrion", "from_user_id": 167135950, "from_user_id_str": "167135950", "from_user_name": "Davy Brion", "geo": null, "id": 146506913889263600, "id_str": "146506913889263616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1648946210/pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648946210/pic_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@YvesGoeleven nodejitsu sounds great, then joyent's solution, then heroku", "to_user": "YvesGoeleven", "to_user_id": 24497096, "to_user_id_str": "24497096", "to_user_name": "Yves Goeleven", "in_reply_to_status_id": 146506401353699330, "in_reply_to_status_id_str": "146506401353699328"}, +{"created_at": "Tue, 13 Dec 2011 08:28:18 +0000", "from_user": "YvesGoeleven", "from_user_id": 24497096, "from_user_id_str": "24497096", "from_user_name": "Yves Goeleven", "geo": null, "id": 146506719361646600, "id_str": "146506719361646592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1309953519/5d224483-9acc-43b6-90e6-670649372087_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1309953519/5d224483-9acc-43b6-90e6-670649372087_normal.png", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "@davybrion such as? Btw it's joyent who does the node support on azure...", "to_user": "davybrion", "to_user_id": 167135950, "to_user_id_str": "167135950", "to_user_name": "Davy Brion", "in_reply_to_status_id": 146506472468127740, "in_reply_to_status_id_str": "146506472468127744"}, +{"created_at": "Tue, 13 Dec 2011 06:38:59 +0000", "from_user": "molpusunka0", "from_user_id": 369508934, "from_user_id_str": "369508934", "from_user_name": "Molpus Backer", "geo": null, "id": 146479207634059260, "id_str": "146479207634059264", "iso_language_code": "fi", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1532876554/imagesCAZCFE35_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1532876554/imagesCAZCFE35_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Ashleyy1233 http://t.co/HAKWNZQQ", "to_user": "Ashleyy1233", "to_user_id": 309278293, "to_user_id_str": "309278293", "to_user_name": "Ashle\\u00A5 Godbe\\u00A5 {: ", "in_reply_to_status_id": 146411644661137400, "in_reply_to_status_id_str": "146411644661137408"}, +{"created_at": "Tue, 13 Dec 2011 06:35:22 +0000", "from_user": "molpusunka0", "from_user_id": 369508934, "from_user_id_str": "369508934", "from_user_name": "Molpus Backer", "geo": null, "id": 146478299823083520, "id_str": "146478299823083520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1532876554/imagesCAZCFE35_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1532876554/imagesCAZCFE35_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Eastsidewilly5 http://t.co/HAKWNZQQ", "to_user": "Eastsidewilly5", "to_user_id": 182246507, "to_user_id_str": "182246507", "to_user_name": "V.S.", "in_reply_to_status_id": 146411548011798530, "in_reply_to_status_id_str": "146411548011798528"}, +{"created_at": "Tue, 13 Dec 2011 06:32:14 +0000", "from_user": "molpusunka0", "from_user_id": 369508934, "from_user_id_str": "369508934", "from_user_name": "Molpus Backer", "geo": null, "id": 146477508647338000, "id_str": "146477508647337984", "iso_language_code": "eo", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1532876554/imagesCAZCFE35_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1532876554/imagesCAZCFE35_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@StandingParadox http://t.co/HAKWNZQQ", "to_user": "StandingParadox", "to_user_id": 83964930, "to_user_id_str": "83964930", "to_user_name": "xoxo, Arleny.", "in_reply_to_status_id": 146411644602417150, "in_reply_to_status_id_str": "146411644602417152"}, +{"created_at": "Tue, 13 Dec 2011 06:31:45 +0000", "from_user": "denizrende", "from_user_id": 160784347, "from_user_id_str": "160784347", "from_user_name": "Deniz Rende", "geo": null, "id": 146477390145650700, "id_str": "146477390145650688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1372625701/76488_461965532076_552392076_6250115_4305252_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1372625701/76488_461965532076_552392076_6250115_4305252_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @benr: I just nominated Joyent Cloud Analytics for the Best Technology Achievement 2011 Crunchie! Nominate here: http://t.co/5XBUIvsN #crunchies", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 06:24:53 +0000", "from_user": "molpusunka0", "from_user_id": 369508934, "from_user_id_str": "369508934", "from_user_name": "Molpus Backer", "geo": null, "id": 146475659953315840, "id_str": "146475659953315840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1532876554/imagesCAZCFE35_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1532876554/imagesCAZCFE35_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@WE_ONLY_HUMAN http://t.co/HAKWNZQQ", "to_user": "WE_ONLY_HUMAN", "to_user_id": 201451728, "to_user_id_str": "201451728", "to_user_name": "Free Fallin'", "in_reply_to_status_id": 146411841491443700, "in_reply_to_status_id_str": "146411841491443714"}, +{"created_at": "Tue, 13 Dec 2011 05:57:37 +0000", "from_user": "bdha", "from_user_id": 21226447, "from_user_id_str": "21226447", "from_user_name": "Bryan HorstmannAllen", "geo": null, "id": 146468796901756930, "id_str": "146468796901756929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1290302189/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1290302189/image_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@srsmoot @joyent @DeirdreS Interim solution is to limit ARC via /etc/system (not sure if you can pass it as a boot arg).", "to_user": "srsmoot", "to_user_id": 228811555, "to_user_id_str": "228811555", "to_user_name": "Sam", "in_reply_to_status_id": 146462352991203330, "in_reply_to_status_id_str": "146462352991203328"}, +{"created_at": "Tue, 13 Dec 2011 05:55:08 +0000", "from_user": "bdha", "from_user_id": 21226447, "from_user_id_str": "21226447", "from_user_name": "Bryan HorstmannAllen", "geo": null, "id": 146468173334589440, "id_str": "146468173334589440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1290302189/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1290302189/image_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@srsmoot @joyent @DeirdreS And there is a patch from @bcantrill for qemu/ARC but @johnnysunshine hasn't rolled a release with it afaik.", "to_user": "srsmoot", "to_user_id": 228811555, "to_user_id_str": "228811555", "to_user_name": "Sam", "in_reply_to_status_id": 146462352991203330, "in_reply_to_status_id_str": "146462352991203328"}, +{"created_at": "Tue, 13 Dec 2011 05:53:27 +0000", "from_user": "bdha", "from_user_id": 21226447, "from_user_id_str": "21226447", "from_user_name": "Bryan HorstmannAllen", "geo": null, "id": 146467748875210750, "id_str": "146467748875210753", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1290302189/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1290302189/image_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@srsmoot @joyent @DeirdreS KVM? You are either out of swap, or the ARC has alloc'd all memory and qemu doesn't know how to make it back off.", "to_user": "srsmoot", "to_user_id": 228811555, "to_user_id_str": "228811555", "to_user_name": "Sam", "in_reply_to_status_id": 146462352991203330, "in_reply_to_status_id_str": "146462352991203328"}, +{"created_at": "Tue, 13 Dec 2011 05:38:09 +0000", "from_user": "DeirdreS", "from_user_id": 625093, "from_user_id_str": "625093", "from_user_name": "Deirdr\\u00E9 Straughan", "geo": null, "id": 146463898286039040, "id_str": "146463898286039040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1273049375/dpink_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273049375/dpink_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "RT @srsmoot: @joyent hitting a wall trying to boot a fifth Guest in SmartOS. /var/adm/messages not helping. Any troubleshooting advice?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 05:32:00 +0000", "from_user": "srsmoot", "from_user_id": 228811555, "from_user_id_str": "228811555", "from_user_name": "Sam", "geo": null, "id": 146462352991203330, "id_str": "146462352991203328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1323854939/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1323854939/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@joyent hitting a wall trying to boot a fifth Guest in SmartOS. /var/adm/messages not helping. Any troubleshooting advice?", "to_user": "joyent", "to_user_id": 666523, "to_user_id_str": "666523", "to_user_name": "Joyent"}, +{"created_at": "Tue, 13 Dec 2011 05:22:13 +0000", "from_user": "JReuben1", "from_user_id": 18364654, "from_user_id_str": "18364654", "from_user_name": "JReuben1", "geo": null, "id": 146459888443326460, "id_str": "146459888443326464", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1222470114/bioPic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1222470114/bioPic_normal.jpg", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "http://t.co/uRdUUGic (Microsoft, Joyent deliver 'first stable build' of Node.js on Windows | ZDNet)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 05:17:00 +0000", "from_user": "powerdtrace", "from_user_id": 40241796, "from_user_id_str": "40241796", "from_user_name": "Sam Wan", "geo": null, "id": 146458578893549570, "id_str": "146458578893549568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1416681166/sunset3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1416681166/sunset3_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Join me and nominate Joyent Cloud Analytics for the Best Technology Achievement 2011 Crunchie! http://t.co/PIpHf4U5 #crunchies", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 05:11:25 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 146457173701050370, "id_str": "146457173701050368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @HowieDragon: Join me and nominate Joyent Cloud Analytics for the Best Technology Achievement 2011 Crunchie! http://t.co/7G8LpidV #crunchies", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 05:11:22 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 146457160375730180, "id_str": "146457160375730176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @benr: I just nominated Joyent Cloud Analytics for the Best Technology Achievement 2011 Crunchie! Nominate here: http://t.co/5XBUIvsN #crunchies", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 05:09:39 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 146456726839898100, "id_str": "146456726839898112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @benr: I just nominated Joyent Cloud Analytics for the Best Technology Achievement 2011 Crunchie! Nominate here: http://t.co/5XBUIvsN #crunchies", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 05:02:52 +0000", "from_user": "HowieDragon", "from_user_id": 184442035, "from_user_id_str": "184442035", "from_user_name": "Howie", "geo": null, "id": 146455021578493950, "id_str": "146455021578493952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1412192196/IMG_2380_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1412192196/IMG_2380_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Join me and nominate Joyent Cloud Analytics for the Best Technology Achievement 2011 Crunchie! http://t.co/7G8LpidV #crunchies", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 05:01:06 +0000", "from_user": "benr", "from_user_id": 697453, "from_user_id_str": "697453", "from_user_name": "Ben Rockwood", "geo": null, "id": 146454576042745860, "id_str": "146454576042745857", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/20853822/Photo_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/20853822/Photo_7_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "I just nominated Joyent Cloud Analytics for the Best Technology Achievement 2011 Crunchie! Nominate here: http://t.co/5XBUIvsN #crunchies", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 04:31:50 +0000", "from_user": "SonTranNguyen", "from_user_id": 388687530, "from_user_id_str": "388687530", "from_user_name": "Son Tran-Nguyen", "geo": null, "id": 146447212212264960, "id_str": "146447212212264960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1582835530/11562330_7344587_gzDyvvH_715x476_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1582835530/11562330_7344587_gzDyvvH_715x476_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @joyent: Join me and nominate Joyent Cloud for the Best Cloud Service 2011 Crunchie! http://t.co/5Rpd3wPS #crunchies", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 04:31:10 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 146447043655766000, "id_str": "146447043655766016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@briankb Not sure on the answer to that one. Need to check with Ryan and our team on the rationale.", "to_user": "briankb", "to_user_id": 15032505, "to_user_id_str": "15032505", "to_user_name": "brian boatright", "in_reply_to_status_id": 146444926022979600, "in_reply_to_status_id_str": "146444926022979584"}, +{"created_at": "Tue, 13 Dec 2011 04:29:42 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 146446671579066370, "id_str": "146446671579066368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Join me and nominate Joyent Cloud for the Best Cloud Service 2011 Crunchie! http://t.co/5Rpd3wPS #crunchies", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 04:22:45 +0000", "from_user": "briankb", "from_user_id": 15032505, "from_user_id_str": "15032505", "from_user_name": "brian boatright", "geo": null, "id": 146444926022979600, "id_str": "146444926022979584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1606369217/5809_1187721257062_1349240973_527178_610606_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606369217/5809_1187721257062_1349240973_527178_610606_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@joyent i'm new to node.js and I noticed on the new site that Joyent owns the node.js trademark. shouldn't Ryan Dahl or a non-profit own it?", "to_user": "joyent", "to_user_id": 666523, "to_user_id_str": "666523", "to_user_name": "Joyent"}, +{"created_at": "Tue, 13 Dec 2011 04:16:56 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 146443458767360000, "id_str": "146443458767360000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "First Server & Joyent Announce SmartDataCenter-powered cloud in Japan. Node Ninja, a N\\u2026 http://t.co/Ecz6niSv via @wordpressdotcom", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 04:07:11 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 146441008157163520, "id_str": "146441008157163520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Join me and nominate joyent for the Best Technology Achievement 2011 Crunchie! http://t.co/ThsJJMzY #crunchies", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Tue, 13 Dec 2011 02:26:11 +0000", "from_user": "mashihua", "from_user_id": 42030689, "from_user_id_str": "42030689", "from_user_name": "\\u9A6C\\u58EB\\u534E \\uF8FF \\u2764 \\u273F", "geo": null, "id": 146415591530565630, "id_str": "146415591530565633", "iso_language_code": "zh", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1597332036/20110903_113959_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1597332036/20110903_113959_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "\\u81EA\\u4ECEJoyent\\u88ABMS\\u6536\\u4E70\\u4E86\\u4E4B\\u540E\\uFF0C\\u6211\\u5C31\\u77E5\\u9053MS\\u4E5F\\u6765\\u51D1Node.js\\u4E91\\u5E73\\u53F0\\u7684\\u70ED\\u95F9\\u3002Windows Azure\\u4E91\\u4E0A\\u65B0\\u6765\\u4E86Node.js\\u3002 http://t.co/PKQ2NVfa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 23:51:08 +0000", "from_user": "evripidis", "from_user_id": 14938895, "from_user_id_str": "14938895", "from_user_name": "evripidis \\uF8FF", "geo": null, "id": 146376568472743940, "id_str": "146376568472743936", "iso_language_code": "el", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1576783443/avatar2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576783443/avatar2_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@soiramk \\u03B1\\u03BB\\u03BB\\u03B1 \\u03BC\\u03C0\\u03BF\\u03C1\\u03B5\\u03AF\\u03C2 \\u03BD\\u03B1 \\u03C0\\u03B1\\u03AF\\u03BE\\u03B5\\u03B9\\u03C2 \\u03BA\\u03AC\\u03C0\\u03C9\\u03C2 \\u03AD\\u03C4\\u03C3\\u03B9 \\u03B1\\u03BB\\u03BB\\u03B1 \\u03A0\\u03B1\\u03AF\\u03BE\\u03B5 \\u03BA\\u03AC\\u03C0\\u03C9\\u03C2 \\u03AD\\u03C4\\u03C3\\u03B9 http://t.co/KpOMBZQn", "to_user": "soiramk", "to_user_id": 25165720, "to_user_id_str": "25165720", "to_user_name": "cmdRvlt (\\u2318+\\u2606)", "in_reply_to_status_id": 146370080450691070, "in_reply_to_status_id_str": "146370080450691072"}, +{"created_at": "Mon, 12 Dec 2011 22:24:34 +0000", "from_user": "elijahwright", "from_user_id": 1920191, "from_user_id_str": "1920191", "from_user_name": "elijah wright", "geo": null, "id": 146354785686257660, "id_str": "146354785686257665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/30535632/ellwrigh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/30535632/ellwrigh_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@bdcravens Just remember how many refugees from the Sun->Oracle transition are at Joyent. And then, hopefully, feel at peace.", "to_user": "bdcravens", "to_user_id": 19546993, "to_user_id_str": "19546993", "to_user_name": "Billy Cravens", "in_reply_to_status_id": 146318272625778700, "in_reply_to_status_id_str": "146318272625778690"}, +{"created_at": "Mon, 12 Dec 2011 22:15:19 +0000", "from_user": "bradleyboy", "from_user_id": 13491682, "from_user_id_str": "13491682", "from_user_name": "Brad Daily", "geo": null, "id": 146352454987038720, "id_str": "146352454987038720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/620787885/CRW_4286_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/620787885/CRW_4286_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@joyent @joyentsupport All clear on my earlier question, things seem back to normal now.", "to_user": "joyent", "to_user_id": 666523, "to_user_id_str": "666523", "to_user_name": "Joyent"}, +{"created_at": "Mon, 12 Dec 2011 21:53:47 +0000", "from_user": "bradleyboy", "from_user_id": 13491682, "from_user_id_str": "13491682", "from_user_name": "Brad Daily", "geo": null, "id": 146347035921104900, "id_str": "146347035921104897", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/620787885/CRW_4286_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/620787885/CRW_4286_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@Joyent @JoyentSupport Are there issues with the Cloud API at the moment? Getting timeouts via CLI and my.joyentcloud.com.", "to_user": "joyent", "to_user_id": 666523, "to_user_id_str": "666523", "to_user_name": "Joyent"}, +{"created_at": "Mon, 12 Dec 2011 21:25:33 +0000", "from_user": "DeirdreS", "from_user_id": 625093, "from_user_id_str": "625093", "from_user_name": "Deirdr\\u00E9 Straughan", "geo": null, "id": 146339931944517630, "id_str": "146339931944517632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1273049375/dpink_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273049375/dpink_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": ".@gbonazzoli A good place to find current SmartOS users in realtime is #joyent or #illumos on irc.freenode.net", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 21:24:58 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 146339785106141200, "id_str": "146339785106141184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "\"DevOps set to change development/operations equation: Outlook 2012\" - SearchSOA http://t.co/WAtYGXeI Includes @benr mention.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 21:24:30 +0000", "from_user": "JUNOSRob", "from_user_id": 16388463, "from_user_id_str": "16388463", "from_user_name": "Rob Cameron", "geo": null, "id": 146339666516381700, "id_str": "146339666516381696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1593311313/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593311313/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@joyent @nodejs love the new web page!", "to_user": "joyent", "to_user_id": 666523, "to_user_id_str": "666523", "to_user_name": "Joyent"}, +{"created_at": "Mon, 12 Dec 2011 21:19:17 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 146338355695722500, "id_str": "146338355695722496", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Circonus....\\nhttp://t.co/SqBTyR0l", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 12 Dec 2011 21:06:05 +0000", "from_user": "peteryorke", "from_user_id": 14136726, "from_user_id_str": "14136726", "from_user_name": "Peter Yorke", "geo": null, "id": 146335033563676670, "id_str": "146335033563676672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/51727717/peter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/51727717/peter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ahrgomez @joyent Turn in a ticket to support@joyent.com with your server name and IP", "to_user": "ahrgomez", "to_user_id": 376221938, "to_user_id_str": "376221938", "to_user_name": "Alejandro Hern\\u00E1ndez", "in_reply_to_status_id": 146298919889014800, "in_reply_to_status_id_str": "146298919889014784"}, +{"created_at": "Mon, 12 Dec 2011 20:33:24 +0000", "from_user": "mikehenke", "from_user_id": 17878766, "from_user_id_str": "17878766", "from_user_name": "mikehenke", "geo": null, "id": 146326810295148540, "id_str": "146326810295148544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1603204237/grav_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1603204237/grav_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @bdcravens: #nodejs as first class citizen on Azure is cool, but based on typical IT industry patterns, nervous about Joyent acquisition by Microsoft", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 20:32:18 +0000", "from_user": "DeirdreS", "from_user_id": 625093, "from_user_id_str": "625093", "from_user_name": "Deirdr\\u00E9 Straughan", "geo": null, "id": 146326530820292600, "id_str": "146326530820292608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1273049375/dpink_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273049375/dpink_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "what are people looking at from Joyent? Since Friday: Ben's video has had 447 views, Bryan's slides 2399, Brendan's blog 17,000 !!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 20:17:02 +0000", "from_user": "jasonh", "from_user_id": 10638, "from_user_id_str": "10638", "from_user_name": "Jason Hoffman", "geo": null, "id": 146322689055928320, "id_str": "146322689055928322", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546543616/Screen_Shot_2011-08-28_at_2.43.11_AM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lloydhilaiel: deeply impressed by @joyent's analytics for hosted node instances.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 19:59:29 +0000", "from_user": "bdcravens", "from_user_id": 19546993, "from_user_id_str": "19546993", "from_user_name": "Billy Cravens", "geo": null, "id": 146318272625778700, "id_str": "146318272625778690", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/550414769/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/550414769/twitterProfilePhoto_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "#nodejs as first class citizen on Azure is cool, but based on typical IT industry patterns, nervous about Joyent acquisition by Microsoft", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 19:28:28 +0000", "from_user": "ryah", "from_user_id": 18975861, "from_user_id_str": "18975861", "from_user_name": "Ryan Dahl", "geo": null, "id": 146310469513261060, "id_str": "146310469513261056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1634041610/name_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634041610/name_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lloydhilaiel: deeply impressed by @joyent's analytics for hosted node instances.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 19:28:08 +0000", "from_user": "dapsays", "from_user_id": 247636179, "from_user_id_str": "247636179", "from_user_name": "Dave Pacheco", "geo": null, "id": 146310383299330050, "id_str": "146310383299330049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1235295953/DSC_4227_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1235295953/DSC_4227_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lloydhilaiel: deeply impressed by @joyent's analytics for hosted node instances.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 19:19:59 +0000", "from_user": "bici", "from_user_id": 5901232, "from_user_id_str": "5901232", "from_user_name": "vanni di ponzano", "geo": null, "id": 146308334688018430, "id_str": "146308334688018432", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1581834969/bicilogic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1581834969/bicilogic_normal.jpg", "source": "<a href="http://sites.google.com/site/yorufukurou/" rel="nofollow">YoruFukurou</a>", "text": "joyent spencer writes: http://t.co/rGml6zKY #joyent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 19:08:52 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 146305533375283200, "id_str": "146305533375283201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @gigaom: It\\u2019s official: Windows Azure supports Node.js http://t.co/2pjQLQ9F", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 19:06:48 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 146305015085146100, "id_str": "146305015085146112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lloydhilaiel: deeply impressed by @joyent's analytics for hosted node instances.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 19:05:15 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 146304625673379840, "id_str": "146304625673379841", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lloydhilaiel: deeply impressed by @joyent's analytics for hosted node instances.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 18:54:04 +0000", "from_user": "nodejschina", "from_user_id": 55953023, "from_user_id_str": "55953023", "from_user_name": "James F Blom", "geo": null, "id": 146301810804670460, "id_str": "146301810804670465", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627594688/save-the-ocean-tips_13821_600x450_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @myalltop_paul: Circonus: Copper Plan Free for 90 Days to Joyent Cloud Clients and the Rise of DevOps http://t.co/W2Oo8fNm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 18:42:35 +0000", "from_user": "ahrgomez", "from_user_id": 376221938, "from_user_id_str": "376221938", "from_user_name": "Alejandro Hern\\u00E1ndez", "geo": null, "id": 146298919889014800, "id_str": "146298919889014784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1550108044/264109_2196375351557_1312433871_2736085_1313380_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1550108044/264109_2196375351557_1312433871_2736085_1313380_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@joyent help me please, i dont know how to access my smartmachine with ssh, permission denied?", "to_user": "joyent", "to_user_id": 666523, "to_user_id_str": "666523", "to_user_name": "Joyent"}, +{"created_at": "Mon, 12 Dec 2011 18:30:23 +0000", "from_user": "OliverJAsh", "from_user_id": 21567037, "from_user_id_str": "21567037", "from_user_name": "Oliver Joseph Ash", "geo": null, "id": 146295851210383360, "id_str": "146295851210383360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1363848597/180109_1761992417185_1460332472_31803328_5842999_n.jpg_copy-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1363848597/180109_1761992417185_1460332472_31803328_5842999_n.jpg_copy-2_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "There are seriously this many modules for Node.js? How am I supposed to choooooose?! http://t.co/OHDFF0Mq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 18:30:08 +0000", "from_user": "scottherson", "from_user_id": 89247454, "from_user_id_str": "89247454", "from_user_name": "scott herson", "geo": null, "id": 146295786555187200, "id_str": "146295786555187201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1281899263/fiji_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1281899263/fiji_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @avkashchauhan: A big win for cloud service users to have fast running MongoDB on Joyent SmartMachine Appliance - http://t.co/VoqvRp2f", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 18:20:42 +0000", "from_user": "portertech", "from_user_id": 18593319, "from_user_id_str": "18593319", "from_user_name": "Sean Porter", "geo": null, "id": 146293415376715780, "id_str": "146293415376715778", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1408341185/CIMG2316_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1408341185/CIMG2316_normal.JPG", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@joyent Are you supporting the addition of your CloudAPI to @fog?", "to_user": "joyent", "to_user_id": 666523, "to_user_id_str": "666523", "to_user_name": "Joyent"}, +{"created_at": "Mon, 12 Dec 2011 18:19:09 +0000", "from_user": "lderezinski", "from_user_id": 6166672, "from_user_id_str": "6166672", "from_user_name": "Linda Derezinski", "geo": null, "id": 146293023347707900, "id_str": "146293023347707904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1575099705/lderezinski_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575099705/lderezinski_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @joyent: Congrats to @joyent customer @AKQA for \"Agency of the Year\" Award although we know you're a tech shop, too! http://t.co/cQ2hn6a7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 18:07:29 +0000", "from_user": "peteryorke", "from_user_id": 14136726, "from_user_id_str": "14136726", "from_user_name": "Peter Yorke", "geo": null, "id": 146290087372664830, "id_str": "146290087372664833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/51727717/peter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/51727717/peter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @joyent: Congrats to @joyent customer @AKQA for \"Agency of the Year\" Award although we know you're a tech shop, too! http://t.co/cQ2hn6a7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 17:05:05 +0000", "from_user": "joyent", "from_user_id": 666523, "from_user_id_str": "666523", "from_user_name": "Joyent", "geo": null, "id": 146274384116580350, "id_str": "146274384116580353", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916295235/joyent_avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Congrats to @joyent customer @AKQA for \"Agency of the Year\" Award although we know you're a tech shop, too! http://t.co/cQ2hn6a7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 16:57:03 +0000", "from_user": "ozten", "from_user_id": 1127361, "from_user_id_str": "1127361", "from_user_name": "Austin King", "geo": null, "id": 146272362847944700, "id_str": "146272362847944704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1185824314/852abe2b-8b1a-4eef-b2a4-4a02919de305_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1185824314/852abe2b-8b1a-4eef-b2a4-4a02919de305_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lloydhilaiel: deeply impressed by @joyent's analytics for hosted node instances.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 16:50:58 +0000", "from_user": "lloydhilaiel", "from_user_id": 14103559, "from_user_id_str": "14103559", "from_user_name": "lloydhilaiel", "geo": null, "id": 146270831364931600, "id_str": "146270831364931584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1330527210/lloyd_maybe_thinking_zoom_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1330527210/lloyd_maybe_thinking_zoom_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@sh1mmer can i use node 0.6 on a joyent smartmachine? recommended approach?", "to_user": "sh1mmer", "to_user_id": 63803, "to_user_id_str": "63803", "to_user_name": "Tom Hughes-Croucher"}, +{"created_at": "Mon, 12 Dec 2011 16:47:55 +0000", "from_user": "lloydhilaiel", "from_user_id": 14103559, "from_user_id_str": "14103559", "from_user_name": "lloydhilaiel", "geo": null, "id": 146270065141100540, "id_str": "146270065141100545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1330527210/lloyd_maybe_thinking_zoom_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1330527210/lloyd_maybe_thinking_zoom_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "deeply impressed by @joyent's analytics for hosted node instances.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 16:41:42 +0000", "from_user": "davidpaulyoung", "from_user_id": 10637, "from_user_id_str": "10637", "from_user_name": "David Young", "geo": null, "id": 146268501491982340, "id_str": "146268501491982337", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/14395312/icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/14395312/icon_normal.jpg", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "I'm at Joyent (345 California St, #2000, San Francisco) http://t.co/6qTwICYz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 16:35:43 +0000", "from_user": "tanepiper", "from_user_id": 20693, "from_user_id_str": "20693", "from_user_name": "Tane Piper", "geo": null, "id": 146266991970365440, "id_str": "146266991970365441", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1654339360/dizzy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654339360/dizzy_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @cramforce: Node.js sucks (Disclaimer: This statement is a violation of Node.js Project Trademark policy http://t.co/F80s1P7 DO NOT DISTRIBUTE) :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 15:57:25 +0000", "from_user": "johnashenfelter", "from_user_id": 3456501, "from_user_id_str": "3456501", "from_user_name": "John Ashenfelter", "geo": null, "id": 146257353560440830, "id_str": "146257353560440834", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/804816402/IMG_1583_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/804816402/IMG_1583_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "AppSumo lifetime giveaways rock. http://t.co/lsVem9CU via @appsumo. I have 3x lifetimes to Joyent products which is awesome", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 15:12:06 +0000", "from_user": "Ajido", "from_user_id": 19598915, "from_user_id_str": "19598915", "from_user_name": "Ajido", "geo": null, "id": 146245949600174080, "id_str": "146245949600174081", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/679286203/19526_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/679286203/19526_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NodeJS : OSX \\u3067 process.title \\u4F7F\\u3046\\u3068\\u30A8\\u30E9\\u30FC\\u3002ObjC\\u3067\\u5BFE\\u51E6\\u3059\\u308B\\u65B9\\u6CD5\\u3057\\u304B\\u306A\\u304F\\u3066\\u4ECA\\u306E\\u3068\\u3053\\u308D\\u56DE\\u907F\\u7B56\\u306A\\u3057 http://t.co/8MyegD6U", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 14:54:07 +0000", "from_user": "juandopazo", "from_user_id": 18214427, "from_user_id_str": "18214427", "from_user_name": "Juan Ignacio Dopazo", "geo": null, "id": 146241426974449660, "id_str": "146241426974449664", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1355503135/wizard2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1355503135/wizard2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Aijoona esta Joyent, pero no da dominio gratis", "to_user": "Aijoona", "to_user_id": 249623997, "to_user_id_str": "249623997", "to_user_name": "Valentin Starck", "in_reply_to_status_id": 146240327336988670, "in_reply_to_status_id_str": "146240327336988673"}, +{"created_at": "Mon, 12 Dec 2011 12:14:38 +0000", "from_user": "softdevtools", "from_user_id": 47565897, "from_user_id_str": "47565897", "from_user_name": "Software Tools", "geo": null, "id": 146201291125829630, "id_str": "146201291125829633", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#programming Joyent Announces SmartMachine Appliance for MongoDB http://t.co/gdkEOjS2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 11:50:44 +0000", "from_user": "benbowhasayh8", "from_user_id": 390415053, "from_user_id_str": "390415053", "from_user_name": "Benbow Lawless", "geo": null, "id": 146195276909117440, "id_str": "146195276909117440", "iso_language_code": "is", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1587109853/imagesCAGUPKDS_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587109853/imagesCAGUPKDS_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Ma_Dann http://t.co/AwPepJ5c", "to_user": "Ma_Dann", "to_user_id": 308117340, "to_user_id_str": "308117340", "to_user_name": "Daniela Macias Salto", "in_reply_to_status_id": 146062701754458100, "in_reply_to_status_id_str": "146062701754458112"}, +{"created_at": "Mon, 12 Dec 2011 11:46:51 +0000", "from_user": "benbowhasayh8", "from_user_id": 390415053, "from_user_id_str": "390415053", "from_user_name": "Benbow Lawless", "geo": null, "id": 146194297761435650, "id_str": "146194297761435649", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1587109853/imagesCAGUPKDS_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587109853/imagesCAGUPKDS_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SyddRayy5 http://t.co/AwPepJ5c", "to_user": "SyddRayy5", "to_user_id": 433540513, "to_user_id_str": "433540513", "to_user_name": "Sydney(:", "in_reply_to_status_id": 146062727775916030, "in_reply_to_status_id_str": "146062727775916032"}, +{"created_at": "Mon, 12 Dec 2011 11:01:21 +0000", "from_user": "micloudservice", "from_user_id": 372609363, "from_user_id_str": "372609363", "from_user_name": "micloud", "geo": null, "id": 146182849073119230, "id_str": "146182849073119233", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Financial Times\\u5C08\\u8A2A\\u3002 http://t.co/o5ibNudA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 10:59:58 +0000", "from_user": "micloudservice", "from_user_id": 372609363, "from_user_id_str": "372609363", "from_user_name": "micloud", "geo": null, "id": 146182499125571600, "id_str": "146182499125571584", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Financial Times\\u5C08\\u8A2A\\u3002 http://t.co/i3Smc4Ik", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 09:46:44 +0000", "from_user": "forgetcomputers", "from_user_id": 15758840, "from_user_id_str": "15758840", "from_user_name": "Forget Computers", "geo": null, "id": 146164071698411520, "id_str": "146164071698411520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/316992618/newicon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/316992618/newicon_normal.png", "source": "<a href="http://paper.li" rel="nofollow">Paper.li</a>", "text": "Forget Computers Mac & iOS News is out! http://t.co/jF5cvcPx \\u25B8 Top stories today via @joyent @tidbits @theloop1 @bentofilemaker", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 08:54:18 +0000", "from_user": "BlaastDevID", "from_user_id": 315021844, "from_user_id_str": "315021844", "from_user_name": "Blaast Dev ID", "geo": null, "id": 146150873322627070, "id_str": "146150873322627072", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1390876217/logo2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1390876217/logo2_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Jasoet: @blaastdevid Menginstall Blaast SDK di Ubuntu 11.10. problemnya http://t.co/LrMtXScF solusinya patch 2 file http://t.co/LaXZBw6B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 05:25:03 +0000", "from_user": "laabroo", "from_user_id": 103222901, "from_user_id_str": "103222901", "from_user_name": "Ikhsyan Hasan \\u0639 \\u0631\\u064A\\u062D\\u0627", "geo": null, "id": 146098213374541820, "id_str": "146098213374541824", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1675362262/ninjas_thumb_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675362262/ninjas_thumb_normal.png", "source": "<a href="http://publicize.wp.com/" rel="nofollow">WordPress.com</a>", "text": "https github com joyent node wiki modules https... http://t.co/q6EpoYwY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 12 Dec 2011 04:15:06 +0000", "from_user": "ldlittlesix7", "from_user_id": 29847835, "from_user_id_str": "29847835", "from_user_name": "LD+Little", "geo": +{"coordinates": [47.5845,-122.3894], "type": "Point"}, "id": 146080610681761800, "id_str": "146080610681761792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1634394290/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634394290/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@joyent: At the library in SF saw 3 teens studying today using our customer @quizlet! - online flash cards....\" I'm a big @quizlet fan too!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} + +, +{"created_at": "Mon, 19 Dec 2011 19:00:37 +0000", "from_user": "ejweeks", "from_user_id": 26070781, "from_user_id_str": "26070781", "from_user_name": "Emily Weeks", "geo": null, "id": 148840173306789900, "id_str": "148840173306789888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1380497632/IMG_1353_2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1380497632/IMG_1353_2_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Beautiful cold clear day in NYC. Gonna go play a little football... Wait, what? #roadto14 #professional", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:37 +0000", "from_user": "spadia_stage", "from_user_id": 344001830, "from_user_id_str": "344001830", "from_user_name": "Spadia One", "geo": null, "id": 148840172199485440, "id_str": "148840172199485440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://stable.spadia.com" rel="nofollow">Spadia - Stable</a>", "text": "TEST TO: StephanieMller FROM: Spadia_nyc MESSAGE: @StephanieMller Another test from", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:36 +0000", "from_user": "theurbandiaries", "from_user_id": 321732910, "from_user_id_str": "321732910", "from_user_name": "cindy b.", "geo": null, "id": 148840171821989900, "id_str": "148840171821989888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687414735/Default_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687414735/Default_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "LCD Soundsystem covers Franz Ferdinand's \"Live Alone\"; The video features a fab #NYC cityscape montage, check it out - http://t.co/vaI0L6DW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:33 +0000", "from_user": "PMAnswerBook", "from_user_id": 210611183, "from_user_id_str": "210611183", "from_user_name": "Jeff Furman", "geo": null, "id": 148840158345691140, "id_str": "148840158345691136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1263887645/_Headshot.JeffFurmanwatermark_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263887645/_Headshot.JeffFurmanwatermark_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Thx @PMCampus for sharing my post: \"Upcoming AGILE events in NYC\" http://t.co/Ax5XFMHW TOP STORY in PM Campus Daily #agile #agilepm #pmp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:32 +0000", "from_user": "EsteffyDurand", "from_user_id": 102900559, "from_user_id_str": "102900559", "from_user_name": "Es\\u0442eff\\u0447 Du\\u044Fa\\u014Bd", "geo": null, "id": 148840154738606080, "id_str": "148840154738606080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1677828892/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677828892/me_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "RT @IanKeaggy: NYC subway system > ian.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:30 +0000", "from_user": "AROD5005", "from_user_id": 23924152, "from_user_id_str": "23924152", "from_user_name": "ALBERTO RODRIGUEZ", "geo": null, "id": 148840145624375300, "id_str": "148840145624375296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1241177766/AROD5005_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1241177766/AROD5005_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Dlauraposada Thats gr8 familia..because \"No Hay Nieve\" en NYC ..!", "to_user": "Dlauraposada", "to_user_id": 183245447, "to_user_id_str": "183245447", "to_user_name": "Laura Posada", "in_reply_to_status_id": 148836058912661500, "in_reply_to_status_id_str": "148836058912661505"}, +{"created_at": "Mon, 19 Dec 2011 19:00:29 +0000", "from_user": "spadia_stage", "from_user_id": 344001830, "from_user_id_str": "344001830", "from_user_name": "Spadia One", "geo": null, "id": 148840142629650430, "id_str": "148840142629650432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://stable.spadia.com" rel="nofollow">Spadia - Stable</a>", "text": "TEST TO: TomsTravelTweet FROM: Spadia_nyc MESSAGE: @TomsTravelTweet Another test from", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:29 +0000", "from_user": "urbaninterns", "from_user_id": 19374993, "from_user_id_str": "19374993", "from_user_name": "Urban Interns", "geo": null, "id": 148840141610422270, "id_str": "148840141610422273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1192890069/Screen_shot_2010-12-17_at_2.44.00_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1192890069/Screen_shot_2010-12-17_at_2.44.00_PM_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Public Relations position at Mix Brands LLC (NYC) http://t.co/VSaRpAdi #NYCJobs #Intern #Internships #PartTimeJobs #PR #JobSearch #JobHunt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:29 +0000", "from_user": "t_odom", "from_user_id": 410246341, "from_user_id_str": "410246341", "from_user_name": "\\u0442\\u03B1ylor \\u043Ed\\u043E\\u043C", "geo": null, "id": 148840138598912000, "id_str": "148840138598912000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700848693/IMG_7951_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700848693/IMG_7951_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @Roscoedash: Got my Famous pjs on in LAX bouta b NYC bound!!! till then zzzzzzzzz yea all in the sky wit it!!!! #ImJustSWAGGING", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:28 +0000", "from_user": "dewsterTW", "from_user_id": 181214382, "from_user_id_str": "181214382", "from_user_name": "Dewi Kartini Remblee", "geo": null, "id": 148840136103297020, "id_str": "148840136103297024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1528497284/307250_269686396393041_100000550479885_1039703_5137155_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1528497284/307250_269686396393041_100000550479885_1039703_5137155_n_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "RT @IanKeaggy: NYC subway system > ian.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:28 +0000", "from_user": "FUCK_JOJO_32", "from_user_id": 409557891, "from_user_id_str": "409557891", "from_user_name": "MR. VoyR", "geo": null, "id": 148840135293808640, "id_str": "148840135293808640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701333454/3673058387_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701333454/3673058387_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@potionnumbr9 i live in philly i just be in NYC almost everyday for fashion show ...hbu?", "to_user": "potionnumbr9", "to_user_id": 238844962, "to_user_id_str": "238844962", "to_user_name": " F.L.Y ", "in_reply_to_status_id": 148839570987954180, "in_reply_to_status_id_str": "148839570987954177"}, +{"created_at": "Mon, 19 Dec 2011 19:00:26 +0000", "from_user": "justdeezB", "from_user_id": 41010054, "from_user_id_str": "41010054", "from_user_name": "Kwaku B. Siaw", "geo": null, "id": 148840128993959940, "id_str": "148840128993959936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680585929/DSC00788_B_w_4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680585929/DSC00788_B_w_4_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "So he got waived? RT @GiantsCRDept: @Giants Deon Grant helps pack shelf stable meals for elderly in need at #CityMeals warehouse in NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:25 +0000", "from_user": "InHandGuides", "from_user_id": 237269069, "from_user_id_str": "237269069", "from_user_name": "InHandGuides", "geo": null, "id": 148840125663686660, "id_str": "148840125663686656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1213679213/IHG_Twitter_Picture_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1213679213/IHG_Twitter_Picture_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @NewYorkHabitat: That is pretty rad RT @anastasiakry: Best window display, Sephora #nyc http://t.co/8PxAe67a", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:25 +0000", "from_user": "KrisKilcullen", "from_user_id": 353296697, "from_user_id_str": "353296697", "from_user_name": "Boo, You Whore.", "geo": null, "id": 148840125646901250, "id_str": "148840125646901248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1660951166/kkkk_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660951166/kkkk_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @HotChelleRae: Don\\u2019t forget! We are playing a private show today at 5PM EST at the @iHeartRadio Theater in NYC. Enter for tix here: http://t.co/AzJSN2zV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:25 +0000", "from_user": "SuPerlative73", "from_user_id": 18657945, "from_user_id_str": "18657945", "from_user_name": "SoleBrothaMakesBeats", "geo": null, "id": 148840125474938880, "id_str": "148840125474938880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682772178/331157764_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682772178/331157764_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@Baron_Davis a Knick... I'm impressed... Knicks might have saved face by signing u up! Good luck in NYC bro!", "to_user": "Baron_Davis", "to_user_id": 21056862, "to_user_id_str": "21056862", "to_user_name": "Baron Davis"}, +{"created_at": "Mon, 19 Dec 2011 19:00:25 +0000", "from_user": "HartlysHome", "from_user_id": 26966675, "from_user_id_str": "26966675", "from_user_name": "Hartly", "geo": null, "id": 148840122161446900, "id_str": "148840122161446912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680225155/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680225155/image_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @EYEGEEOHDEE: #t9e #nowplaying Hartly - Bitter x Party 'Until We Die: \\n2 new tracks from upcoming NYC emcee Hartly. His debut... http://t.co/c7eIVHW7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:24 +0000", "from_user": "Loadingstore", "from_user_id": 85160535, "from_user_id_str": "85160535", "from_user_name": "Loading Store", "geo": null, "id": 148840121196740600, "id_str": "148840121196740611", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1254323479/Loadinglogoblog_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1254323479/Loadinglogoblog_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "UPDATED BLOG: Saw some old interview by Hypebeast on Mighty Heathy NYC. Check it out and learn more about them.... http://t.co/H5deZpHc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:23 +0000", "from_user": "ricktha_rula", "from_user_id": 236300283, "from_user_id_str": "236300283", "from_user_name": "Ricardo Sandoval ", "geo": null, "id": 148840116599783420, "id_str": "148840116599783425", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1530188962/Photo_on_2011-07-28_at_20.48__3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1530188962/Photo_on_2011-07-28_at_20.48__3_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@skhoobbagha really tho! its moving waaaay to fast. saw your fb post about NYC for new years that's gonna be a great experience!", "to_user": "skhoobbagha", "to_user_id": 262388364, "to_user_id_str": "262388364", "to_user_name": "Shereen", "in_reply_to_status_id": 148832509310926850, "in_reply_to_status_id_str": "148832509310926848"}, +{"created_at": "Mon, 19 Dec 2011 19:00:21 +0000", "from_user": "talhaa23", "from_user_id": 433291870, "from_user_id_str": "433291870", "from_user_name": "ImNew Here", "geo": null, "id": 148840105904316400, "id_str": "148840105904316418", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700394617/7930_638670906349_12817900_36656136_1601222_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700394617/7930_638670906349_12817900_36656136_1601222_n_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @democracynow: Occupy Wall Street NYC marks 3-month anniversary with re-occupation attempt, dozens arrested. http://t.co/jK0sLcnw #ows", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:21 +0000", "from_user": "StangParts4Sale", "from_user_id": 431925396, "from_user_id_str": "431925396", "from_user_name": "MustangPartsForSale", "geo": null, "id": 148840105493278720, "id_str": "148840105493278720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688090476/hot_mustang_chick_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688090476/hot_mustang_chick_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#Mustang #CA Newest 2012 Mustang Auctions for sale in New Jersey: Grab these Ford Mustang Parts &... http://t.co/qFODObEt #Ford #NYC #NJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:20 +0000", "from_user": "spadia_stage", "from_user_id": 344001830, "from_user_id_str": "344001830", "from_user_name": "Spadia One", "geo": null, "id": 148840104390168580, "id_str": "148840104390168576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://stable.spadia.com" rel="nofollow">Spadia - Stable</a>", "text": "TEST TO: Sanjuanitadl25 FROM: Spadia_nyc MESSAGE: @Sanjuanitadl25 Another test from", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:20 +0000", "from_user": "mattbrant1981", "from_user_id": 147927884, "from_user_id_str": "147927884", "from_user_name": "Matt Brantingham", "geo": null, "id": 148840102829883400, "id_str": "148840102829883392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/930462425/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/930462425/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@cultofmac: New post: NYC Cops Bust 141 Members Of Stolen iPhone Crime Ring http://t.co/X1omqQDB\\u201D #ilovecultofmac", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:20 +0000", "from_user": "Blissful_Hello", "from_user_id": 242327976, "from_user_id_str": "242327976", "from_user_name": "Dee", "geo": null, "id": 148840100845977600, "id_str": "148840100845977600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702451448/Blissful_Hello_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702451448/Blissful_Hello_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@Hov0608 @ZashB25 u need to hop on board !! RT @Blissful_Hello: Room booked NYC for my 25th bday it's a party http://t.co/cGVOC0d2", "to_user": "Hov0608", "to_user_id": 97608839, "to_user_id_str": "97608839", "to_user_name": "Jose Ortega"}, +{"created_at": "Mon, 19 Dec 2011 19:00:19 +0000", "from_user": "AraceliPotter1", "from_user_id": 358076880, "from_user_id_str": "358076880", "from_user_name": "AraceliPotter", "geo": null, "id": 148840099856125950, "id_str": "148840099856125953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1503224051/famke_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1503224051/famke_normal.jpg", "source": "<a href="http://www.instacheckin.com" rel="nofollow">Instacheckin</a>", "text": "Man suspected of torching 73-year-old woman in NYC elevator charged with ... - Washington Post http://t.co/ItkDLZSK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:19 +0000", "from_user": "TheOnlyMikeQ", "from_user_id": 29821220, "from_user_id_str": "29821220", "from_user_name": "MikeQ", "geo": null, "id": 148840097662517250, "id_str": "148840097662517248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1620874029/fade002-mikeq-let-it-all_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620874029/fade002-mikeq-let-it-all_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @LegendaryLuna: #VOGUEKNIGHTS 12/20 FQ REALNESS $50, BQ SEX SIREN $50, OTA PERFORMANCE $100 - $6 ALL NIGHT BEATS BY DJ MIKEQ 301 WEST 39TH ST, NYC 11pm-4am", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:19 +0000", "from_user": "iAmRozayMylan", "from_user_id": 394079360, "from_user_id_str": "394079360", "from_user_name": "Rozay Mylan ", "geo": null, "id": 148840097289216000, "id_str": "148840097289216000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695640552/iAmRozayMylan_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695640552/iAmRozayMylan_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Yes i was RT @lkl71111: @iAmRozayMylan ahhhhh i didnt know u were in nyc? where u there last weekend when i was? booooooo. im in miami now.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:19 +0000", "from_user": "fabulousNandda", "from_user_id": 79564184, "from_user_id_str": "79564184", "from_user_name": "Fernanda Pacheco", "geo": null, "id": 148840096928509950, "id_str": "148840096928509953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695909750/IMG_6433_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695909750/IMG_6433_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@WeezyFBaaaby yea I'm feeling lightweight better(: & tell me why ihella knew you were in NYC? Idk why isaid italy. You're in LA now?", "to_user": "WeezyFBaaaby", "to_user_id": 258082819, "to_user_id_str": "258082819", "to_user_name": "Frankie Lugo Jr.", "in_reply_to_status_id": 148823914435448830, "in_reply_to_status_id_str": "148823914435448833"}, +{"created_at": "Mon, 19 Dec 2011 19:00:17 +0000", "from_user": "fabibfuenmayor", "from_user_id": 62378361, "from_user_id_str": "62378361", "from_user_name": "Fabiola Fuenmayor", "geo": null, "id": 148840090528006140, "id_str": "148840090528006144", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1674259734/330919277_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674259734/330919277_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Que te vaya bien bitchitaaRT @msdanielaacuna: Ahora si, adios suckas, me voy a NYC BITCHES", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:17 +0000", "from_user": "thejohnbrian", "from_user_id": 42944839, "from_user_id_str": "42944839", "from_user_name": "J. Brian Hennessy", "geo": null, "id": 148840089865297920, "id_str": "148840089865297920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1193557876/Brian_BW_filter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1193557876/Brian_BW_filter_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "\"#Cornell University gets $350M gift for proposed sciences campus in NYC...\" Pivot Point for NYC as potential Tech Lea\\u2026http://t.co/JhsgK6Q9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:17 +0000", "from_user": "valdisrigdon", "from_user_id": 138481282, "from_user_id_str": "138481282", "from_user_name": "Valdis Rigdon", "geo": null, "id": 148840088623788030, "id_str": "148840088623788032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1213700292/valdis_rigdon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1213700292/valdis_rigdon_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Cornell Said Chosen for NYC Engineering Campus http://t.co/xPAOvzlu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:16 +0000", "from_user": "Pughhhhhhhh", "from_user_id": 339086632, "from_user_id_str": "339086632", "from_user_name": "zachary pugh", "geo": null, "id": 148840085121531900, "id_str": "148840085121531904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1453930138/227025_2082687671658_1379085551_2464430_5615456_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1453930138/227025_2082687671658_1379085551_2464430_5615456_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @AuburnJokes: More info has surfaced on the Mike Dyer situation at Auburn. He was upset he wasn't invited to the big awards ceremony in NYC.\\n\\nThe Highsman", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:15 +0000", "from_user": "StepInto_MyMind", "from_user_id": 348739547, "from_user_id_str": "348739547", "from_user_name": "Troy Daniels", "geo": null, "id": 148840080759472130, "id_str": "148840080759472128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695491103/bdbd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695491103/bdbd_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "I def want to go to nyc for new years", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:14 +0000", "from_user": "wispy28", "from_user_id": 257835555, "from_user_id_str": "257835555", "from_user_name": "Ade wispy whizzie", "geo": null, "id": 148840079627010050, "id_str": "148840079627010049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700499715/IMG00012-20110823-0918_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700499715/IMG00012-20110823-0918_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Nyc one\"@WomenOfHistory: Every evening I turn my worries over to God. He's going to be up all night anyway. -Mary C. Crowley\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:13 +0000", "from_user": "CASamps", "from_user_id": 132282230, "from_user_id_str": "132282230", "from_user_name": "Chris Sampogna", "geo": null, "id": 148840071737520130, "id_str": "148840071737520129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1643774003/fronhome_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643774003/fronhome_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@somethingsavage better. I just used samples from Avatar studios NYC cut with some of my studios samples. Go on my site and listen", "to_user": "somethingsavage", "to_user_id": 24134771, "to_user_id_str": "24134771", "to_user_name": "daniel savage", "in_reply_to_status_id": 148839768988454900, "in_reply_to_status_id_str": "148839768988454912"}, +{"created_at": "Mon, 19 Dec 2011 19:00:12 +0000", "from_user": "b_eternal757", "from_user_id": 192901546, "from_user_id_str": "192901546", "from_user_name": "B.Williams ", "geo": null, "id": 148840070525354000, "id_str": "148840070525353984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1656778992/profile_image_1322211056275_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656778992/profile_image_1322211056275_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @TalibKweli: RT @DJBOBBYTRENDS: NEW MUSIC: @TalibKweli - \"Distractions\" http://t.co/2sxPsKjc (NYC needs this on the radio Bobby holla!)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:12 +0000", "from_user": "Bones0311", "from_user_id": 47461281, "from_user_id_str": "47461281", "from_user_name": "Chris Bodiford", "geo": null, "id": 148840070034624500, "id_str": "148840070034624513", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1498505478/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1498505478/image_normal.jpg", "source": "<a href="http://www.myyearbook.com/" rel="nofollow">myYearbook Share</a>", "text": "It seems like every time a big monster comes to the USA they go straight to NYC: http://t.co/d3JzQYOt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:12 +0000", "from_user": "_OliviaJ", "from_user_id": 157040563, "from_user_id_str": "157040563", "from_user_name": "Olivia Jane Ford", "geo": null, "id": 148840068432412670, "id_str": "148840068432412672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1592989464/270756_2239300827984_1411939621_32617157_2674237_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592989464/270756_2239300827984_1411939621_32617157_2674237_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @vmagazine: Stream \"Liquorice\" \\u266C the new track from NYC rapper @AZEALIABANKS http://t.co/RYjCwZgK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:10 +0000", "from_user": "annehelen", "from_user_id": 16714443, "from_user_id_str": "16714443", "from_user_name": "Anne Helen Petersen ", "geo": null, "id": 148840061536960500, "id_str": "148840061536960512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1205160380/Rita_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1205160380/Rita_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Christmas Wishes across NYC: http://t.co/xvOIxHwX (via @thehairpin; surprisingly poignant )", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:09 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148840057854365700, "id_str": "148840057854365696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @sales4NYC: #sales4u #sales Salomon F20 David Benedeck Model Snowboard Boots (LIC) $105 http://t.co/EHkhxQCG #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:10 +0000", "from_user": "servingface", "from_user_id": 38123485, "from_user_id_str": "38123485", "from_user_name": "Jaeden Gibbs.", "geo": null, "id": 148840056730304500, "id_str": "148840056730304514", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1015303040/080_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1015303040/080_normal.JPG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Marsha...Ledisi and sharon jones at VH1 divas celebration in NYC. http://t.co/cJmiYAlz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:09 +0000", "from_user": "VisitWilmington", "from_user_id": 97481307, "from_user_id_str": "97481307", "from_user_name": "Visit Wilmington DE", "geo": null, "id": 148840056717705200, "id_str": "148840056717705216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1179324581/NEWTWITTER2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1179324581/NEWTWITTER2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "1 hr remains for you to like our FB post to earn a chance to win 4 passes to @winterthurmuse! #museums #wilmde #philadelphia #NYC #MD #NJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:08 +0000", "from_user": "NewYorkHabitat", "from_user_id": 20182700, "from_user_id_str": "20182700", "from_user_name": "New York Habitat", "geo": null, "id": 148840053408407550, "id_str": "148840053408407552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1488175236/logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1488175236/logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Fantastic! RT @shoestrngtrvls: Guest post from @nodnsmileNYC - NYC Holiday Attractions for Kids of All Ages! - http://t.co/LzDckSu1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:08 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148840053261602800, "id_str": "148840053261602816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @sales4NYC: #sales4u #sales !!AFFORDABLE WICKED TICKETS!! (GERSHWIN THEATRE) http://t.co/wxUYf4dm #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:08 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148840051680354300, "id_str": "148840051680354304", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @sales4NYC: #sales4u #sales Classic Timberland Khaki/Suede String Bag - Vintage (Riverdale) $20 http://t.co/IqP1qg5z #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:07 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148840049482530800, "id_str": "148840049482530816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @sales4NYC: #sales4u #sales 2 tickets to PHISH! 12/28 $110 http://t.co/m8IkA8qr #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:06 +0000", "from_user": "JoeyNYC03", "from_user_id": 214325879, "from_user_id_str": "214325879", "from_user_name": "Carlos Diplan", "geo": null, "id": 148840045225316350, "id_str": "148840045225316353", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1164849026/IMG00090-20100727-1751_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1164849026/IMG00090-20100727-1751_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific</a>", "text": "Just a few hour from going back to #NYC back to the cold weather!!!! \\uD83D\\uDE2D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:06 +0000", "from_user": "sales4peeps", "from_user_id": 429668878, "from_user_id_str": "429668878", "from_user_name": "Craigslist sales4USA", "geo": null, "id": 148840044378071040, "id_str": "148840044378071041", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676756739/trade_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676756739/trade_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @sales4NYC: #sales4u #sales Salomon F20 David Benedeck Model Snowboard Boots (LIC) $105 http://t.co/EHkhxQCG #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:06 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148840043526631420, "id_str": "148840043526631428", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @sales4NYC: #sales4u #sales *****CHEAP WICKED TICKETS***** (GERSHWIN THEATRE) http://t.co/GDtTU7EG #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:06 +0000", "from_user": "sales4peeps", "from_user_id": 429668878, "from_user_id_str": "429668878", "from_user_name": "Craigslist sales4USA", "geo": null, "id": 148840042943619070, "id_str": "148840042943619072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676756739/trade_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676756739/trade_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @sales4NYC: #sales4u #sales !!AFFORDABLE WICKED TICKETS!! (GERSHWIN THEATRE) http://t.co/wxUYf4dm #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:05 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148840040238293000, "id_str": "148840040238292994", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @gigs4NYC: #gigs4u #gigs Thin, Bright,Enthusiastic Gal? (NYC) http://t.co/WhVJYSF2 #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:05 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148840038367641600, "id_str": "148840038367641600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @gigs4NYC: #gigs4u #gigs Pantyhose-Nylon-Stockings fun gig with open minded gal today (New York) http://t.co/aihFhdGj #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:04 +0000", "from_user": "TimeInNYC", "from_user_id": 253915109, "from_user_id_str": "253915109", "from_user_name": "Time In New York", "geo": null, "id": 148840037558132740, "id_str": "148840037558132737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1497851931/time_in_newyork_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1497851931/time_in_newyork_normal.png", "source": "<a href="http://google.com" rel="nofollow">Time In New York</a>", "text": "#NYC The current time in New York City is 2:00 PM on Monday, 19 December 2011", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:04 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148840036761206800, "id_str": "148840036761206784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @gigs4NYC: #gigs4u #gigs DIRECTOR CASTING NEW YORK VIDEO SHOOT (Midtown) http://t.co/OEkPyqMZ #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:04 +0000", "from_user": "sales4peeps", "from_user_id": 429668878, "from_user_id_str": "429668878", "from_user_name": "Craigslist sales4USA", "geo": null, "id": 148840036408893440, "id_str": "148840036408893441", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676756739/trade_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676756739/trade_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @sales4NYC: #sales4u #sales Classic Timberland Khaki/Suede String Bag - Vintage (Riverdale) $20 http://t.co/IqP1qg5z #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:04 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148840034802483200, "id_str": "148840034802483200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @gigs4NYC: #gigs4u #gigs workout accountability http://t.co/mFqmPsjF #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:04 +0000", "from_user": "sales4peeps", "from_user_id": 429668878, "from_user_id_str": "429668878", "from_user_name": "Craigslist sales4USA", "geo": null, "id": 148840033879728130, "id_str": "148840033879728130", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676756739/trade_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676756739/trade_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @sales4NYC: #sales4u #sales 2 tickets to PHISH! 12/28 $110 http://t.co/m8IkA8qr #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:03 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148840032667566080, "id_str": "148840032667566080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @gigs4NYC: #gigs4u #gigs looking for Inshape Male (queens) http://t.co/MR2mhwvE #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:03 +0000", "from_user": "OccupyWeather", "from_user_id": 400559295, "from_user_id_str": "400559295", "from_user_name": "Occupy Weather", "geo": null, "id": 148840032596267000, "id_str": "148840032596267008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1612658667/ows_retreats_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612658667/ows_retreats_normal.jpg", "source": "<a href="http://24Ahead.com/" rel="nofollow">OccupyWeather</a>", "text": "Forecast for NYC Thursday night: Mostly clear. Low temp: 42F. #OWS #tcot #p2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:03 +0000", "from_user": "sales4peeps", "from_user_id": 429668878, "from_user_id_str": "429668878", "from_user_name": "Craigslist sales4USA", "geo": null, "id": 148840031753224200, "id_str": "148840031753224195", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676756739/trade_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676756739/trade_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @sales4NYC: #sales4u #sales *****CHEAP WICKED TICKETS***** (GERSHWIN THEATRE) http://t.co/GDtTU7EG #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:03 +0000", "from_user": "Erica11M", "from_user_id": 343573194, "from_user_id_str": "343573194", "from_user_name": "Erica Mora", "geo": null, "id": 148840031635771400, "id_str": "148840031635771392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1632695826/2499a3f4-61a1-4083-b7b2-c7a755fc5b2b_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632695826/2499a3f4-61a1-4083-b7b2-c7a755fc5b2b_normal.png", "source": "<a href="http://twitpic.com" rel="nofollow">Twitpic</a>", "text": "Clear blue skies and the Empire State Building #NYC http://t.co/BSNgzOm7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:03 +0000", "from_user": "kittylight", "from_user_id": 78063171, "from_user_id_str": "78063171", "from_user_name": "KAlien Black", "geo": null, "id": 148840031547699200, "id_str": "148840031547699200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1588098944/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1588098944/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Timcast: This is a message to the trolls. I have spent 0$ in donations and I am homeless in NYC. I will keep streaming! :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:03 +0000", "from_user": "ExpedLearning", "from_user_id": 113924568, "from_user_id_str": "113924568", "from_user_name": "Expeditionary Learni", "geo": null, "id": 148840031392505860, "id_str": "148840031392505856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1099030752/el-twitter-01_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1099030752/el-twitter-01_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @paolavita: @NYCOutwardBound Watch NYC Outward Bound's Washington Heights Expeditionary Learning School on NY1 http://t.co/N0xz3ih8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:02 +0000", "from_user": "OccupyWeather", "from_user_id": 400559295, "from_user_id_str": "400559295", "from_user_name": "Occupy Weather", "geo": null, "id": 148840026871042050, "id_str": "148840026871042048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1612658667/ows_retreats_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612658667/ows_retreats_normal.jpg", "source": "<a href="http://24Ahead.com/" rel="nofollow">OccupyWeather</a>", "text": "Forecast for NYC THANKSGIVING DAY: Sunny. High temp: 52F. #OWS #GlennBeck #teaparty", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:00 +0000", "from_user": "robbywest16", "from_user_id": 431183867, "from_user_id_str": "431183867", "from_user_name": "Robby West", "geo": null, "id": 148840019400990720, "id_str": "148840019400990720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690362223/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690362223/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "At the nike store in nyc best thing ever", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:59 +0000", "from_user": "aethan", "from_user_id": 18247140, "from_user_id_str": "18247140", "from_user_name": "WE ACT Aethalometer", "geo": null, "id": 148840015026323460, "id_str": "148840015026323456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/67993655/aethan_73x73_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/67993655/aethan_73x73_normal.gif", "source": "<a href="http://twittercounter.com" rel="nofollow">The Visitor Widget</a>", "text": "In NYC today, Monday, Dec(12) 19, 2011, the Sun sets at 4:30 PM (rose at 7:16 AM) after a 9-hour 15-minute long day...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:58 +0000", "from_user": "honeycareless", "from_user_id": 175785523, "from_user_id_str": "175785523", "from_user_name": "Asli...\\u2665\\u266B\\u266A \\u1D30\\u1D3F\\u1D31\\u1D2C\\u1D39 \\u1D2E\\u1D35\\u1D33", "geo": null, "id": 148840009896697860, "id_str": "148840009896697857", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1666769623/330687308_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666769623/330687308_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SelenaStayer: If Selena could go anywhere it would be Greece, or Fiji and her ideal places to live would be NYC, London or back home in Texas. #GomezFact.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:57 +0000", "from_user": "MitziMichaels", "from_user_id": 68225317, "from_user_id_str": "68225317", "from_user_name": "Mitzi Michaels", "geo": null, "id": 148840004364406800, "id_str": "148840004364406784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1283284961/IMG00142-20100304-2053_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1283284961/IMG00142-20100304-2053_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@ellynmarsh don't be jelly. I would totes cast u in Fiddler! Xo ps coming to NYC next month. See u soon", "to_user": "ellynmarsh", "to_user_id": 35658125, "to_user_id_str": "35658125", "to_user_name": "ellyn marsh", "in_reply_to_status_id": 148839541946581000, "in_reply_to_status_id_str": "148839541946580993"}, +{"created_at": "Mon, 19 Dec 2011 18:59:56 +0000", "from_user": "PhilFuaVie", "from_user_id": 360295405, "from_user_id_str": "360295405", "from_user_name": "Philip Fua", "geo": null, "id": 148840002619584500, "id_str": "148840002619584512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1509072638/1314062643_fence-materials_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509072638/1314062643_fence-materials_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/LSHKsbSr NYC protesters scale fence at vacant lot - The Associated Press", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:53 +0000", "from_user": "djenuff", "from_user_id": 16621413, "from_user_id_str": "16621413", "from_user_name": "DJ Enuff", "geo": null, "id": 148839988254085120, "id_str": "148839988254085120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1443584260/367b97695e449ea152b9e4b5aaa73b7b_view_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1443584260/367b97695e449ea152b9e4b5aaa73b7b_view_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @JO_VANGUARD: NEW YEARS EVE NYC AT THE PARLOUR! 247 W 30TH ST! @djenuff @THEDJCLO! ADV TIXX $40! HIT ME! HAPPY B-DAY @IamPLaVie! http://t.co/w4wr1iJC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:53 +0000", "from_user": "subtopes", "from_user_id": 21942676, "from_user_id_str": "21942676", "from_user_name": "subtopes", "geo": null, "id": 148839988237303800, "id_str": "148839988237303808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/83223177/414023552_c5b6ef81d2_o-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/83223177/414023552_c5b6ef81d2_o-1_normal.jpg", "source": "<a href="http://www.twhirl.org" rel="nofollow">Seesmic twhirl</a>", "text": "RT @StudioXNYC: Nice @atlanticCities post on well-designed perimeter security, plus slideshow of NYC's barrier beautification project | http://t.co/FUKJjAT7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:53 +0000", "from_user": "ShesSher", "from_user_id": 29781694, "from_user_id_str": "29781694", "from_user_name": "Sheri", "geo": null, "id": 148839987528466430, "id_str": "148839987528466434", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693287276/3340292609_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693287276/3340292609_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @nycnewsnow: No Bail for Man Accused of Burning Woman Alive http://t.co/4cf5EwI9 #newyork #nyc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:52 +0000", "from_user": "jadeleonard_x", "from_user_id": 150748568, "from_user_id_str": "150748568", "from_user_name": "Jade Leonard", "geo": null, "id": 148839984764420100, "id_str": "148839984764420096", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1646787181/jade_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646787181/jade_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@iparker11 Yeaah nyc! haha.", "to_user": "iparker11", "to_user_id": 189852972, "to_user_id_str": "189852972", "to_user_name": "Parker Ames"}, +{"created_at": "Mon, 19 Dec 2011 18:59:51 +0000", "from_user": "BuddhaHeadP", "from_user_id": 143593126, "from_user_id_str": "143593126", "from_user_name": "Dash Gautama", "geo": null, "id": 148839980146495500, "id_str": "148839980146495488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675964112/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675964112/image_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @EYEGEEOHDEE: #t9e #nowplaying Hartly - Bitter x Party 'Until We Die: \\n2 new tracks from upcoming NYC emcee Hartly. His debut... http://t.co/c7eIVHW7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:50 +0000", "from_user": "Silver_Suites", "from_user_id": 322162089, "from_user_id_str": "322162089", "from_user_name": "SuitesAtSilverTowers", "geo": null, "id": 148839978477174800, "id_str": "148839978477174784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1479310550/square-logo-suites-silver-towers_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1479310550/square-logo-suites-silver-towers_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "---> @NSAYMidtown Things to Do in #Midtown & #Hell's Kitchen: Dec. 19-23. New Intrepid Museum exhibit, CSI Experience http://t.co/FLce83jh", "to_user": "NSAYMidtown", "to_user_id": 191212164, "to_user_id_str": "191212164", "to_user_name": "Midtown ", "in_reply_to_status_id": 148833740343345150, "in_reply_to_status_id_str": "148833740343345152"}, +{"created_at": "Mon, 19 Dec 2011 18:59:50 +0000", "from_user": "Beana27", "from_user_id": 30300867, "from_user_id_str": "30300867", "from_user_name": "Amanda Montuori", "geo": null, "id": 148839975616647170, "id_str": "148839975616647169", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1583699006/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583699006/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@IanKeaggy see you soon in Nyc today! so stoked! <3 really hope i get to meet you", "to_user": "IanKeaggy", "to_user_id": 55699429, "to_user_id_str": "55699429", "to_user_name": "Ian Keaggy"}, +{"created_at": "Mon, 19 Dec 2011 18:59:46 +0000", "from_user": "AuburnJokes", "from_user_id": 407799590, "from_user_id_str": "407799590", "from_user_name": "Auburn Jokes", "geo": null, "id": 148839959007215600, "id_str": "148839959007215617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1647126788/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647126788/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "More info has surfaced on the Mike Dyer situation at Auburn. He was upset he wasn't invited to the big awards ceremony in NYC.\\n\\nThe Highsman", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:45 +0000", "from_user": "urbanchords", "from_user_id": 247038131, "from_user_id_str": "247038131", "from_user_name": "D.Deering", "geo": null, "id": 148839957912490000, "id_str": "148839957912489984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1345911244/profile_pict_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1345911244/profile_pict_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Yeah! Urban Houses! DIY: How to Make a Gingerbread Brooklyn Brownstone http://t.co/HNlxWBjz via @ThinkDevGrow", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:42 +0000", "from_user": "RussRealDiehl", "from_user_id": 272771172, "from_user_id_str": "272771172", "from_user_name": "Russell P. Diehl", "geo": null, "id": 148839945316999170, "id_str": "148839945316999168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1396647783/another_boo_boo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1396647783/another_boo_boo_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "AWESOME #JAM #SALE W/ #DEALS IN #NYC TONIGHT!! COME #PARTY HARDY W/ US!! YES!:)RT @NinaSky For more details on tonight- http://t.co/wqakdppl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:40 +0000", "from_user": "iambee39", "from_user_id": 138754838, "from_user_id_str": "138754838", "from_user_name": "double-b \\u2661", "geo": null, "id": 148839935661715460, "id_str": "148839935661715456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693289674/14122011237_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693289674/14122011237_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "RT @IanKeaggy: NYC subway system > ian.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:35 +0000", "from_user": "starjordan10", "from_user_id": 402444465, "from_user_id_str": "402444465", "from_user_name": "Jordan Segal", "geo": null, "id": 148839915218681860, "id_str": "148839915218681856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1678900900/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678900900/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @smhelloladies: In NYC. Did @OpieRadio show earlier and who should appear but @simonpegg. We traded some droll bon mots, natch. What a lovely man.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:35 +0000", "from_user": "asilahizhar", "from_user_id": 72031246, "from_user_id_str": "72031246", "from_user_name": "u mad? \\u0CA0_\\u0CA0", "geo": null, "id": 148839914417557500, "id_str": "148839914417557505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700032452/385062_309096472447068_100000401529626_1003738_439417333_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700032452/385062_309096472447068_100000401529626_1003738_439417333_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @HotChelleRae: Don\\u2019t forget! We are playing a private show today at 5PM EST at the @iHeartRadio Theater in NYC. Enter for tix here: http://t.co/AzJSN2zV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:33 +0000", "from_user": "SelenaMahone_", "from_user_id": 129608422, "from_user_id_str": "129608422", "from_user_name": "Sofia \\u2665", "geo": null, "id": 148839905013923840, "id_str": "148839905013923840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687723349/tumblr_lvu3po8JT91r1bznpo1_400_1__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687723349/tumblr_lvu3po8JT91r1bznpo1_400_1__normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SelenaStayer: If Selena could go anywhere it would be Greece, or Fiji and her ideal places to live would be NYC, London or back home in Texas. #GomezFact.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:33 +0000", "from_user": "most_popul_m8y", "from_user_id": 387096557, "from_user_id_str": "387096557", "from_user_name": "Most Popular News", "geo": null, "id": 148839904422535170, "id_str": "148839904422535168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1626739475/most_popul_m8y_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626739475/most_popul_m8y_normal.png", "source": "<a href="http://atm8y.com" rel="nofollow">@m8y</a>", "text": "The Lord Gave To NYC Tech Start-Ups And Universities, And The Lord Hath Taken Away #most-popular http://t.co/s5rbSdJR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:32 +0000", "from_user": "KadiBasdeo", "from_user_id": 22133158, "from_user_id_str": "22133158", "from_user_name": "kade", "geo": null, "id": 148839902170198000, "id_str": "148839902170198016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662314114/bryant_park2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662314114/bryant_park2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@KateJNicholson dear kt woo, NYC is just wonderful, my skin misses the tropical warmt ;) but i love that im having a COLD Christmas! miss U!", "to_user": "KateJNicholson", "to_user_id": 22891604, "to_user_id_str": "22891604", "to_user_name": "Kate Nicholson"}, +{"created_at": "Mon, 19 Dec 2011 18:59:31 +0000", "from_user": "altheajanesays", "from_user_id": 243007279, "from_user_id_str": "243007279", "from_user_name": "Althea Jane", "geo": null, "id": 148839898139475970, "id_str": "148839898139475968", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1330408596/IMG_0951_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1330408596/IMG_0951_2_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "A six-legged life, NYC-style: http://t.co/e2Duh7D3 http://t.co/4CE1DU9i", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:31 +0000", "from_user": "ohdinaaa", "from_user_id": 54128018, "from_user_id_str": "54128018", "from_user_name": "Medina-Danielle (:", "geo": null, "id": 148839897044746240, "id_str": "148839897044746241", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1672183891/1322952467-picsay_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672183891/1322952467-picsay_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "yay!! RT @realkingb catch me and @dgeladio in NYC Dec.26 thru 2012", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:30 +0000", "from_user": "AriGOnline", "from_user_id": 310943031, "from_user_id_str": "310943031", "from_user_name": "AriGOnline. \\u2665", "geo": null, "id": 148839893886443520, "id_str": "148839893886443520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701924198/Ag_3cMuCMAA1RyX_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701924198/Ag_3cMuCMAA1RyX_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ArianaGrande: If you're coming to my show on December 28 at @IrvingPlaza in NYC and want to come meet me after, here's how: http://t.co/1w7eeLFq! xoxo RT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:30 +0000", "from_user": "_Gemma325", "from_user_id": 52025991, "from_user_id_str": "52025991", "from_user_name": "Gemma", "geo": null, "id": 148839893777387520, "id_str": "148839893777387522", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1607464845/P1030046_-_Copy_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607464845/P1030046_-_Copy_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @smhelloladies: In NYC. Did @OpieRadio show earlier and who should appear but @simonpegg. We traded some droll bon mots, natch. What a lovely man.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:30 +0000", "from_user": "ShannonLetoRUS", "from_user_id": 351858750, "from_user_id_str": "351858750", "from_user_name": "Shannon Leto Russia", "geo": null, "id": 148839893756424200, "id_str": "148839893756424193", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1566224607/twittershanrusav_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566224607/twittershanrusav_normal.jpg", "source": "<a href="http://vk.com" rel="nofollow">vk.com pages</a>", "text": "07.12.2011 / \\u041E\\u0441\\u0442\\u0430\\u043B\\u044C\\u043D\\u044B\\u0435 \\u0444\\u043E\\u0442\\u043E\\u0433\\u0440\\u0430\\u0444\\u0438\\u0438 \\u0432 \\u0430\\u043B\\u044C\\u0431\\u043E\\u043C\\u0435 \"2011.12.07 NYC MARS300\". http://t.co/PrheYicP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:28 +0000", "from_user": "Locos_BabyMama", "from_user_id": 38967818, "from_user_id_str": "38967818", "from_user_name": "- ` d e s h a \\u2665 :)", "geo": null, "id": 148839886068260860, "id_str": "148839886068260866", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1674060723/376165_246727458710322_100001192080978_619621_905872248_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674060723/376165_246727458710322_100001192080978_619621_905872248_n_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @Roscoedash: Got my Famous pjs on in LAX bouta b NYC bound!!! till then zzzzzzzzz yea all in the sky wit it!!!! #ImJustSWAGGING", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:26 +0000", "from_user": "Jtaxgetdollaz", "from_user_id": 365953488, "from_user_id_str": "365953488", "from_user_name": "j tax", "geo": null, "id": 148839874496167940, "id_str": "148839874496167936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1609809643/JTAX_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609809643/JTAX_normal.jpg", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "Dec 28th @ The Secret Lounge 525 w 29th st. Nyc performance wit Juelz Santana .Admission is $20 .18 to party 21 to drink.#bagitup", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:25 +0000", "from_user": "crystullos", "from_user_id": 29130760, "from_user_id_str": "29130760", "from_user_name": "Crystal Tullos", "geo": null, "id": 148839873774764030, "id_str": "148839873774764032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1202697200/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1202697200/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Fun Family Tullos in NYC today...Dylan's candy bar, ice skating at Rockefeller, and FAO Swartz next...I love spoiling my boys!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:24 +0000", "from_user": "BenHagueComedy", "from_user_id": 193704159, "from_user_id_str": "193704159", "from_user_name": "Ben Hague", "geo": null, "id": 148839867747549200, "id_str": "148839867747549185", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1676285007/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676285007/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Hey followers. FOLLOW my buddy @MarkSajdak. He's my future writing partner in NYC. If u dont like him UNFOLLOW him. #GetEmWhereItHurts", "to_user": "MarkSajdak", "to_user_id": 273112122, "to_user_id_str": "273112122", "to_user_name": "Mark Sajdak", "in_reply_to_status_id": 148585208617250800, "in_reply_to_status_id_str": "148585208617250818"}, +{"created_at": "Mon, 19 Dec 2011 18:59:24 +0000", "from_user": "RonLikeHell", "from_user_id": 104954276, "from_user_id_str": "104954276", "from_user_name": "Ron Like Hell", "geo": null, "id": 148839866606682100, "id_str": "148839866606682112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1640818445/Ron_Like_Hell_WRECKED_11-12-11_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640818445/Ron_Like_Hell_WRECKED_11-12-11_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "send off party ABQ > NYC Spring 1998. thank you Eldon! http://t.co/YkaIWuWs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:24 +0000", "from_user": "tomazeli", "from_user_id": 18024173, "from_user_id_str": "18024173", "from_user_name": "tomazeli", "geo": null, "id": 148839866287919100, "id_str": "148839866287919104", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/66998457/eu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/66998457/eu_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@thiagoarantes: @tomazeli se prepare para muitas emo\\u00E7\\u00F5es com Robo Rally em NYC!\\u201D @ltomazeli", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:19 +0000", "from_user": "inhabitat", "from_user_id": 14150661, "from_user_id_str": "14150661", "from_user_name": "inhabitat", "geo": null, "id": 148839847094792200, "id_str": "148839847094792192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/51865670/OwliMcOwl_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/51865670/OwliMcOwl_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @InhabitatNYC: Cornell wins bid to build New York City's Applied Science Campus on Roosevelt Island: http://t.co/kw9ntcJy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:18 +0000", "from_user": "MattyBee628", "from_user_id": 116752966, "from_user_id_str": "116752966", "from_user_name": "MattyBee", "geo": null, "id": 148839844150382600, "id_str": "148839844150382592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1684486152/wR5IBmeT_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684486152/wR5IBmeT_normal", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @TalibKweli: RT @DJBOBBYTRENDS: NEW MUSIC: @TalibKweli - \"Distractions\" http://t.co/2sxPsKjc (NYC needs this on the radio Bobby holla!)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:17 +0000", "from_user": "nashoverstreet", "from_user_id": 28076725, "from_user_id_str": "28076725", "from_user_name": "Nash Overstreet", "geo": null, "id": 148839838857166850, "id_str": "148839838857166849", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639038646/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639038646/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @HotChelleRae: Don\\u2019t forget! We are playing a private show today at 5PM EST at the @iHeartRadio Theater in NYC. Enter for tix here: http://t.co/AzJSN2zV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:17 +0000", "from_user": "Concorde_Limo", "from_user_id": 69188107, "from_user_id_str": "69188107", "from_user_name": "Concorde Worldwide", "geo": null, "id": 148839838827819000, "id_str": "148839838827819008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/383770530/logo_icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/383770530/logo_icon_normal.jpg", "source": "<a href="http://publicize.wp.com/" rel="nofollow">WordPress.com</a>", "text": "A Magical Time in NYC with Chauffeured Transportation http://t.co/eoKCOt86", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:16 +0000", "from_user": "DinaMann", "from_user_id": 82366566, "from_user_id_str": "82366566", "from_user_name": "Dina Mann", "geo": null, "id": 148839832574099460, "id_str": "148839832574099456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/472626547/s8813816_34935986_1380_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/472626547/s8813816_34935986_1380_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @MyUpperWest: #UWS Coffee Bean & Tea Leaf At Amsterdam & 86th Officially Open (Finally): http://t.co/aX26uyqu #UpperWestSide #NYC @CoffeeBeanNY #caffeine", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:59:17 +0000", "from_user": "nashoverstreet", "from_user_id": 28076725, "from_user_id_str": "28076725", "from_user_name": "Nash Overstreet", "geo": null, "id": 148839838857166850, "id_str": "148839838857166849", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639038646/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639038646/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @HotChelleRae: Don\\u2019t forget! We are playing a private show today at 5PM EST at the @iHeartRadio Theater in NYC. Enter for tix here: http://t.co/AzJSN2zV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:17 +0000", "from_user": "Concorde_Limo", "from_user_id": 69188107, "from_user_id_str": "69188107", "from_user_name": "Concorde Worldwide", "geo": null, "id": 148839838827819000, "id_str": "148839838827819008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/383770530/logo_icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/383770530/logo_icon_normal.jpg", "source": "<a href="http://publicize.wp.com/" rel="nofollow">WordPress.com</a>", "text": "A Magical Time in NYC with Chauffeured Transportation http://t.co/eoKCOt86", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:16 +0000", "from_user": "DinaMann", "from_user_id": 82366566, "from_user_id_str": "82366566", "from_user_name": "Dina Mann", "geo": null, "id": 148839832574099460, "id_str": "148839832574099456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/472626547/s8813816_34935986_1380_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/472626547/s8813816_34935986_1380_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @MyUpperWest: #UWS Coffee Bean & Tea Leaf At Amsterdam & 86th Officially Open (Finally): http://t.co/aX26uyqu #UpperWestSide #NYC @CoffeeBeanNY #caffeine", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:15 +0000", "from_user": "SpiritForceMag", "from_user_id": 406640867, "from_user_id_str": "406640867", "from_user_name": "Jayne Mortimore", "geo": null, "id": 148839832167260160, "id_str": "148839832167260160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1626331589/Snapshot_201108261_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626331589/Snapshot_201108261_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MostHaunted2012: New Most Haunted Christmas Spirits DVD now out!!!! http://t.co/8rbInVxA RT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:14 +0000", "from_user": "rac2007", "from_user_id": 8716202, "from_user_id_str": "8716202", "from_user_name": "Aaron ", "geo": null, "id": 148839826488176640, "id_str": "148839826488176640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1487464382/n649151452_718510_5754_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1487464382/n649151452_718510_5754_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @luisakroll: 22-year-old daughter of billionaire pays $88 million for NYC apartment http://t.co/K22OnjV5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:14 +0000", "from_user": "LegendaryLuna", "from_user_id": 232375375, "from_user_id_str": "232375375", "from_user_name": "Luna Luis", "geo": null, "id": 148839824596533250, "id_str": "148839824596533248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1202895346/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1202895346/me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#VOGUEKNIGHTS 12/20 FQ REALNESS $50, BQ SEX SIREN $50, OTA PERFORMANCE $100 - $6 ALL NIGHT BEATS BY DJ MIKEQ 301 WEST 39TH ST, NYC 11pm-4am", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:13 +0000", "from_user": "InhabitatNYC", "from_user_id": 106450876, "from_user_id_str": "106450876", "from_user_name": "InhabitatNYC", "geo": null, "id": 148839822977531900, "id_str": "148839822977531904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/641907421/Picture_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/641907421/Picture_2_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Cornell wins bid to build New York City's Applied Science Campus on Roosevelt Island: http://t.co/4gcMPbmR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:13 +0000", "from_user": "alison47", "from_user_id": 5415382, "from_user_id_str": "5415382", "from_user_name": "alison Hellman", "geo": null, "id": 148839821798944770, "id_str": "148839821798944768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1659657189/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659657189/image_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @MyUpperWest: #UWS Coffee Bean & Tea Leaf At Amsterdam & 86th Officially Open (Finally): http://t.co/aX26uyqu #UpperWestSide #NYC @CoffeeBeanNY #caffeine", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:12 +0000", "from_user": "SubatomicSound", "from_user_id": 19664819, "from_user_id_str": "19664819", "from_user_name": "SubatomicSoundSystem", "geo": null, "id": 148839819726954500, "id_str": "148839819726954496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/768839063/SoundSystemSpkrWall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/768839063/SoundSystemSpkrWall_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "On flight NYC to Seattle for Jam Jam party at Chop Suey tonight!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:12 +0000", "from_user": "SiLLyMoniLy8752", "from_user_id": 68185088, "from_user_id_str": "68185088", "from_user_name": "Moni \\u2661", "geo": null, "id": 148839819211051000, "id_str": "148839819211051008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1673469062/fAr3w7cU_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673469062/fAr3w7cU_normal", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@diana_anayah Anyone down for a roadtrip to NYC..my car but you drive?? :)\\u201D lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:12 +0000", "from_user": "osnapitzdannii", "from_user_id": 270060184, "from_user_id_str": "270060184", "from_user_name": "danielle. \\u10E6", "geo": null, "id": 148839817168437250, "id_str": "148839817168437248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701588047/472212501_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701588047/472212501_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "i'll be sooo upset if my mom says i cant go see ariana in nyc.. it'll just be soooo sad", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:10 +0000", "from_user": "BaylorGomezRox", "from_user_id": 158469551, "from_user_id_str": "158469551", "from_user_name": "Selena Gomez Fan! ", "geo": null, "id": 148839809824210940, "id_str": "148839809824210944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700460661/Selena-Gomez-And-Her-Mom_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700460661/Selena-Gomez-And-Her-Mom_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SelenaStayer: If Selena could go anywhere it would be Greece, or Fiji and her ideal places to live would be NYC, London or back home in Texas. #GomezFact.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:10 +0000", "from_user": "SER1897", "from_user_id": 334178844, "from_user_id_str": "334178844", "from_user_name": "Stephen Robinson", "geo": null, "id": 148839809241190400, "id_str": "148839809241190400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1591721156/37fe33e_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591721156/37fe33e_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@janasanchez Also, train from Brussels to Amsterdam is faster/more pleasant than taking A train to JFK in NYC.", "to_user": "janasanchez", "to_user_id": 14425872, "to_user_id_str": "14425872", "to_user_name": "Jana Sanchez", "in_reply_to_status_id": 148813280096436220, "in_reply_to_status_id_str": "148813280096436225"}, +{"created_at": "Mon, 19 Dec 2011 18:59:09 +0000", "from_user": "heismuchbetter", "from_user_id": 30741938, "from_user_id_str": "30741938", "from_user_name": "Sam", "geo": null, "id": 148839806774951940, "id_str": "148839806774951937", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1637587278/391628_2652082183911_1311462622_33142073_1042729698_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637587278/391628_2652082183911_1311462622_33142073_1042729698_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @DeniseJonas: Merry NYC Christmas! http://t.co/ruYcKRGt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:09 +0000", "from_user": "metalhank", "from_user_id": 52084030, "from_user_id_str": "52084030", "from_user_name": "dragonhank", "geo": null, "id": 148839805055279100, "id_str": "148839805055279105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1495627294/Dad_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1495627294/Dad_normal.jpg", "source": "<a href="http://www.yahoo.com" rel="nofollow">Yahoo!</a>", "text": "commented: There are plenty more like him and if you notice their not going away either. And also so many out t... http://t.co/wgnmek2K", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:05 +0000", "from_user": "coopersthename", "from_user_id": 433022856, "from_user_id_str": "433022856", "from_user_name": "cooper diamond ", "geo": null, "id": 148839787233677300, "id_str": "148839787233677312", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1684386432/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684386432/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Kim and kourtny take NYC aha :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:02 +0000", "from_user": "hello_mcee", "from_user_id": 15809540, "from_user_id_str": "15809540", "from_user_name": "mcee", "geo": null, "id": 148839775930036220, "id_str": "148839775930036224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1639173054/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639173054/me_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "ORCHESTRA OMFG. RT @onelittleupset: figuring out plans for nyc, whoooooo. looks like we can see the show on Thursday night, sweet. EXCITE.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:00 +0000", "from_user": "Roscoedash", "from_user_id": 105029433, "from_user_id_str": "105029433", "from_user_name": "SCOE!! aka #TheJuice", "geo": null, "id": 148839768413835260, "id_str": "148839768413835264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1605621583/skully_gang_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1605621583/skully_gang_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Got my Famous pjs on in LAX bouta b NYC bound!!! till then zzzzzzzzz yea all in the sky wit it!!!! #ImJustSWAGGING", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:00 +0000", "from_user": "AubrieF", "from_user_id": 44695532, "from_user_id_str": "44695532", "from_user_name": "Aubrie Fennecken", "geo": null, "id": 148839767105216500, "id_str": "148839767105216512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1405229946/tw_9108263_1308606440_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1405229946/tw_9108263_1308606440_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @SELFmagazine: Callin' all NYC foodies - love healthy (and free) food? Be an @SELFmagazine Healthy Food Awards tester at http://t.co/PbyorXJI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:58 +0000", "from_user": "Silver_Suites", "from_user_id": 322162089, "from_user_id_str": "322162089", "from_user_name": "SuitesAtSilverTowers", "geo": null, "id": 148839759769378800, "id_str": "148839759769378816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1479310550/square-logo-suites-silver-towers_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1479310550/square-logo-suites-silver-towers_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @NSAYMidtown: Things to Do in #Midtown & #Hell's Kitchen: Dec. 19-23. New Intrepid Museum exhibit, CSI Experience and more! http://t.co/IQXGCTkD #nyc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:53 +0000", "from_user": "CrashSwagdicoot", "from_user_id": 399760294, "from_user_id_str": "399760294", "from_user_name": "Swagga F. Smoove", "geo": null, "id": 148839737820577800, "id_str": "148839737820577793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1652051741/tommy_h_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652051741/tommy_h_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Guys From NYC Go Upstate For 3 Things School, Pussy, And Jail Bids Unfortunately Its Not In That Particular Order We Gotta Get it Together", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:52 +0000", "from_user": "rebeccajacobowi", "from_user_id": 276179326, "from_user_id_str": "276179326", "from_user_name": "Rebecca J", "geo": null, "id": 148839732447674370, "id_str": "148839732447674368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1297615863/Untitled2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1297615863/Untitled2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "is it 2:30 yet? waiting for my #CU takes over #NYC press conference excuse for a study break", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:51 +0000", "from_user": "pianinio", "from_user_id": 189811319, "from_user_id_str": "189811319", "from_user_name": "Tom Skearts", "geo": null, "id": 148839730539274240, "id_str": "148839730539274242", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1122164375/piano_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1122164375/piano_normal.jpeg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Glee's Darren Criss Singing Teenage Dream on Piano at Joe's Pub NYC 12/1811 http://t.co/J2NDIVn3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:51 +0000", "from_user": "KimberlyMarie_", "from_user_id": 21606054, "from_user_id_str": "21606054", "from_user_name": "Kimberly ", "geo": null, "id": 148839730421837820, "id_str": "148839730421837824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1623216701/smaller-instagrame_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1623216701/smaller-instagrame_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @MyUpperWest: #UWS Coffee Bean & Tea Leaf At Amsterdam & 86th Officially Open (Finally): http://t.co/aX26uyqu #UpperWestSide #NYC @CoffeeBeanNY #caffeine", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:51 +0000", "from_user": "bestfitness411", "from_user_id": 222523617, "from_user_id_str": "222523617", "from_user_name": "bestFitness411", "geo": null, "id": 148839729297768450, "id_str": "148839729297768448", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1181718040/ecofriendly_fitness_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1181718040/ecofriendly_fitness_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Harley Davidson motorcycle jacob javitz center nyc: Some cool harley davidson images: Harley Davidson motorcycle... http://t.co/mhVqcAYp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:51 +0000", "from_user": "robcarlos13", "from_user_id": 275498813, "from_user_id_str": "275498813", "from_user_name": "Robert C. Villanueva", "geo": null, "id": 148839728815419400, "id_str": "148839728815419392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701305717/rcvdress_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701305717/rcvdress_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "So I'll be in Michigan for Christmas and not NYC due to the Pistons first game of the season #december26atpacers", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:51 +0000", "from_user": "MusicProMag", "from_user_id": 20335865, "from_user_id_str": "20335865", "from_user_name": "MusicPro Magazine", "geo": null, "id": 148839728563748860, "id_str": "148839728563748864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/76345978/desktop-thumb-300x187_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/76345978/desktop-thumb-300x187_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Glee's Darren Criss Singing Teenage Dream on Piano at Joe's Pub NYC 12/1811: Glee's Darren Criss Singing Teenage... http://t.co/noh4rfMH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:48 +0000", "from_user": "PhoebeFossil", "from_user_id": 195500610, "from_user_id_str": "195500610", "from_user_name": "Phoebe Cohen", "geo": null, "id": 148839718342230000, "id_str": "148839718342230016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1131908200/Phoebe_Cohen_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1131908200/Phoebe_Cohen_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "GO BIG RED! this is exciting. RT @arbesman: Very excited for Cornell winning the NYC science school campus competition! http://t.co/F4ktAA97", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:47 +0000", "from_user": "livefashionABLE", "from_user_id": 182034775, "from_user_id_str": "182034775", "from_user_name": "fashionABLE", "geo": null, "id": 148839713321656320, "id_str": "148839713321656320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1128389277/bluesquare_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1128389277/bluesquare_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "we spy a fashionABLE scarf! // RT @jillianharris: Highlights from my NYC trip + what I wore! :) http://t.co/iHePOXFt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:47 +0000", "from_user": "ARTISTSPAGE", "from_user_id": 35197261, "from_user_id_str": "35197261", "from_user_name": "Roel Candaele", "geo": null, "id": 148839713057419260, "id_str": "148839713057419264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1156370587/29446_1244414122381_1590215609_30504560_4366363_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1156370587/29446_1244414122381_1590215609_30504560_4366363_n_normal.jpg", "source": "<a href="http://www.socialflow.com" rel="nofollow">SocialFlow</a>", "text": "RT @Myspace: You Need To Hear: Alabama Shakes - Check them out: http://t.co/OTEcIV3i @Alabama_Shakes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:46 +0000", "from_user": "itsgeorgiexoxo", "from_user_id": 23673618, "from_user_id_str": "23673618", "from_user_name": "GeorgieChristopher \\u2665", "geo": null, "id": 148839707156025340, "id_str": "148839707156025344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701934118/meeee_in_pariss_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701934118/meeee_in_pariss_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SelenaStayer: If Selena could go anywhere it would be Greece, or Fiji and her ideal places to live would be NYC, London or back home in Texas. #GomezFact.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:44 +0000", "from_user": "thinathi", "from_user_id": 131487842, "from_user_id_str": "131487842", "from_user_name": "Thandeka Ndlovu", "geo": null, "id": 148839702173196300, "id_str": "148839702173196288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1653620268/330268340_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653620268/330268340_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "#nf---\\u00BB@Sab3lo @mnceDCboss @Thintatouch!! Nyc chilling wit u guys #keepingupwitdaNgcobos cc@Ubuhle_N;@m4mbalz", "to_user": "m4mbalz", "to_user_id": 156262764, "to_user_id_str": "156262764", "to_user_name": "Mbalenhle Ngcobo", "in_reply_to_status_id": 148188903722061820, "in_reply_to_status_id_str": "148188903722061825"}, +{"created_at": "Mon, 19 Dec 2011 18:58:42 +0000", "from_user": "ellapalooza", "from_user_id": 250743497, "from_user_id_str": "250743497", "from_user_name": "ella.", "geo": null, "id": 148839692522102800, "id_str": "148839692522102786", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1674523255/-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674523255/-1_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@lagatamontesa mariachis bombarded me on the subway today. Thought of you & what you'd think of NYC trying to ease me back into LA.", "to_user": "lagatamontesa", "to_user_id": 14552036, "to_user_id_str": "14552036", "to_user_name": "Katherine Karmen ", "in_reply_to_status_id": 148839170574516220, "in_reply_to_status_id_str": "148839170574516224"}, +{"created_at": "Mon, 19 Dec 2011 18:58:42 +0000", "from_user": "LeftyLucyNY", "from_user_id": 108045076, "from_user_id_str": "108045076", "from_user_name": "Lefty Lucy", "geo": null, "id": 148839691054096400, "id_str": "148839691054096384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1596353752/316170_2011326535389_1610546039_31702493_2125520358_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596353752/316170_2011326535389_1610546039_31702493_2125520358_n_normal.jpg", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "I'm gunna miss this when I'm on the road! (@ Core Pilates NYC) http://t.co/83LgjkTE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:42 +0000", "from_user": "EvilPRGuy", "from_user_id": 14185680, "from_user_id_str": "14185680", "from_user_name": "Michael Dolan", "geo": null, "id": 148839690089410560, "id_str": "148839690089410560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1180329037/MD_atJM_Compound_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1180329037/MD_atJM_Compound_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Russian fertilizer kingpin (and accused murderer) buys most expensive #NYC apartment, ever. http://t.co/8MMl9e4p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:41 +0000", "from_user": "MySkinConcierge", "from_user_id": 90203791, "from_user_id_str": "90203791", "from_user_name": "Ava Roxanne", "geo": null, "id": 148839685941248000, "id_str": "148839685941248000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1071592396/avaprofile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1071592396/avaprofile_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @laprairie_usa: We hope you enjoyed #spa @RitzCarlton #CentralPark @MySkinConcierge: - apologies we didn't get a change to meet while you were in #NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:34 +0000", "from_user": "DGEladio", "from_user_id": 173310891, "from_user_id_str": "173310891", "from_user_name": "Carlos Hines", "geo": null, "id": 148839658468544500, "id_str": "148839658468544513", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1221880907/NV176Sz4_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1221880907/NV176Sz4_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @realkingb: catch me and @dgeladio in NYC Dec.26 thru 2012", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:34 +0000", "from_user": "rubendiazjr", "from_user_id": 43763852, "from_user_id_str": "43763852", "from_user_name": "Ruben Diaz Jr.", "geo": null, "id": 148839656815988740, "id_str": "148839656815988737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1675501982/rubendiazjr-twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675501982/rubendiazjr-twitter_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "Statement from Borough President Diaz RE: Public Advocate de Blasio\\u2019s Support for the \\u2018Fair Wages for New Yorkers\\u2019 Act http://t.co/ma6klazh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:32 +0000", "from_user": "TheYoungSheeion", "from_user_id": 90642517, "from_user_id_str": "90642517", "from_user_name": "Steven J. Brice", "geo": null, "id": 148839649291411460, "id_str": "148839649291411456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1642188749/263234_10150746709720457_673625456_19988266_1685119_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642188749/263234_10150746709720457_673625456_19988266_1685119_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "That's what up.. I'm good.. Enjoying NYC!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:30 +0000", "from_user": "cantfixaheart", "from_user_id": 49678313, "from_user_id_str": "49678313", "from_user_name": "Marts \\u266A ", "geo": null, "id": 148839643067056130, "id_str": "148839643067056128", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702454883/tumblr_lw09hnaAYs1qe1x1eo4_250_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702454883/tumblr_lw09hnaAYs1qe1x1eo4_250_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@wearemilesapart beh ovvio! *-* ma tipo che lea ha scritto \"just landed in NYC\" e lui \"hi NYC\" ? ahahaha antisgamo proprio :P", "to_user": "wearemilesapart", "to_user_id": 104932141, "to_user_id_str": "104932141", "to_user_name": "a loser.", "in_reply_to_status_id": 148838229917966340, "in_reply_to_status_id_str": "148838229917966336"}, +{"created_at": "Mon, 19 Dec 2011 18:58:29 +0000", "from_user": "1DWeasley", "from_user_id": 220664665, "from_user_id_str": "220664665", "from_user_name": "Simpsonizin' Carrot", "geo": null, "id": 148839638797266940, "id_str": "148839638797266944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695340004/Lou_Icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695340004/Lou_Icon_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SelenaStayer: If Selena could go anywhere it would be Greece, or Fiji and her ideal places to live would be NYC, London or back home in Texas. #GomezFact.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:28 +0000", "from_user": "mot_ddot", "from_user_id": 389791061, "from_user_id_str": "389791061", "from_user_name": "Tom Todd", "geo": null, "id": 148839632937816060, "id_str": "148839632937816064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1585635153/255101_10150276313041113_733941112_9389703_4036320_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585635153/255101_10150276313041113_733941112_9389703_4036320_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Departing from nyc is a little depressing", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:27 +0000", "from_user": "TheKingslayer", "from_user_id": 16574839, "from_user_id_str": "16574839", "from_user_name": "TheKingslayer", "geo": null, "id": 148839629527842800, "id_str": "148839629527842816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1617012807/starmikenthekingslayer_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1617012807/starmikenthekingslayer_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Let's face it. The NY Knicks have not been the NBA franchise NYC needs for a long while.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:26 +0000", "from_user": "jamesmaherphoto", "from_user_id": 121136445, "from_user_id_str": "121136445", "from_user_name": "James Maher", "geo": null, "id": 148839625186754560, "id_str": "148839625186754560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1058946348/twitter_image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1058946348/twitter_image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "New Street Photo: http://t.co/h2Xm0oSP #streetphotography #nyc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:23 +0000", "from_user": "HellOnHeels_xox", "from_user_id": 373682495, "from_user_id_str": "373682495", "from_user_name": "ariel", "geo": null, "id": 148839610934493200, "id_str": "148839610934493184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1543328278/321278_274633542552382_100000172167427_1373544_3233747_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543328278/321278_274633542552382_100000172167427_1373544_3233747_n_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Bc of this inevitable deployment my NYC Trip has to be postponed. this sucks -_-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:22 +0000", "from_user": "RealYungwhezee", "from_user_id": 397221155, "from_user_id_str": "397221155", "from_user_name": "Fweshkid", "geo": null, "id": 148839606538866700, "id_str": "148839606538866690", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694621446/Pic_2010167_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694621446/Pic_2010167_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @TalibKweli: RT @DJBOBBYTRENDS: NEW MUSIC: @TalibKweli - \"Distractions\" http://t.co/2sxPsKjc (NYC needs this on the radio Bobby holla!)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:21 +0000", "from_user": "greyestates", "from_user_id": 119313872, "from_user_id_str": "119313872", "from_user_name": "shak.", "geo": null, "id": 148839605158944770, "id_str": "148839605158944770", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1588155201/11_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1588155201/11_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @Sanniel: ! RT @vmagazine: Stream \"Liquorice\" \\u266C the new track from NYC rapper @AZEALIABANKS http://t.co/veSqE0Yo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:18 +0000", "from_user": "Bouba_SV", "from_user_id": 85446248, "from_user_id_str": "85446248", "from_user_name": "BOUBACAR", "geo": null, "id": 148839592391475200, "id_str": "148839592391475200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1647364553/330067348_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647364553/330067348_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "If you're in NYC then you know La Pomme is the only spot to be at 2nite! the Breakfast Club concert afterparty with #Power105 RSVP!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:18 +0000", "from_user": "StephScagnelli", "from_user_id": 217568179, "from_user_id_str": "217568179", "from_user_name": "Stephanie Follese.", "geo": null, "id": 148839591405821950, "id_str": "148839591405821952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1591927065/asdfgh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591927065/asdfgh_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "RT @IanKeaggy: NYC subway system > ian.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:16 +0000", "from_user": "MalcolmBlogger", "from_user_id": 115068099, "from_user_id_str": "115068099", "from_user_name": "Malcolm Carter", "geo": null, "id": 148839584434892800, "id_str": "148839584434892802", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/748452789/logo_new_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/748452789/logo_new_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @jonathanmiller: Rethinking that saying about money buying happiness RT Billionaire's Daughter Pays Record Sum For NYC Pad @Forbes http://t.co/sRjZiwzJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:16 +0000", "from_user": "SelenaStayer", "from_user_id": 226952150, "from_user_id_str": "226952150", "from_user_name": "Smiler & Swifty \\u262E ", "geo": null, "id": 148839582711021570, "id_str": "148839582711021568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699491017/perfectgomez_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699491017/perfectgomez_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "If Selena could go anywhere it would be Greece, or Fiji and her ideal places to live would be NYC, London or back home in Texas. #GomezFact.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:16 +0000", "from_user": "Kait_DREAM", "from_user_id": 36543404, "from_user_id_str": "36543404", "from_user_name": "Kait_DREAM", "geo": null, "id": 148839581142360060, "id_str": "148839581142360064", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1617196865/yah3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1617196865/yah3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "i wanna go to NYC!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:16 +0000", "from_user": "callmedisKO", "from_user_id": 63949793, "from_user_id_str": "63949793", "from_user_name": "Kelly Owens", "geo": null, "id": 148839581029113860, "id_str": "148839581029113856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/352907941/twitterpic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/352907941/twitterpic_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @SELFmagazine: Callin' all NYC foodies - love healthy (and free) food? Be an @SELFmagazine Healthy Food Awards tester at http://t.co/PbyorXJI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:15 +0000", "from_user": "BTRfanKATIE", "from_user_id": 122224084, "from_user_id_str": "122224084", "from_user_name": "katie", "geo": null, "id": 148839579015847940, "id_str": "148839579015847936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687558303/Photo_434_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687558303/Photo_434_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "RT @IanKeaggy: NYC subway system > ian.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:15 +0000", "from_user": "NicoleGrotto", "from_user_id": 92113610, "from_user_id_str": "92113610", "from_user_name": "Nicole Grotto", "geo": null, "id": 148839576537014270, "id_str": "148839576537014272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1649623687/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649623687/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@AustinMahone you were amazing in NYC!! #greatconcert!! <3", "to_user": "AustinMahone", "to_user_id": 196795202, "to_user_id_str": "196795202", "to_user_name": "Austin Mahone"}, +{"created_at": "Mon, 19 Dec 2011 18:58:14 +0000", "from_user": "FlyGrlLafleur", "from_user_id": 378671223, "from_user_id_str": "378671223", "from_user_name": "Lindsay ", "geo": null, "id": 148839575823974400, "id_str": "148839575823974402", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682005168/Reno_20Southeast-20111208-00047_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682005168/Reno_20Southeast-20111208-00047_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Oh wait sorry, she lives in Ohio! Um if I wanted to visit Ohio, I would go, but I want to visit NYC. #frustratedtweet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:14 +0000", "from_user": "Fermrosas", "from_user_id": 338819451, "from_user_id_str": "338819451", "from_user_name": "Fernanda Miranda", "geo": null, "id": 148839574880256000, "id_str": "148839574880256001", "iso_language_code": "vi", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702596213/mateo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702596213/mateo_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @CoryMonteith: Hi NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:13 +0000", "from_user": "potionnumbr9", "from_user_id": 238844962, "from_user_id_str": "238844962", "from_user_name": " F.L.Y ", "geo": null, "id": 148839570987954180, "id_str": "148839570987954177", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701466338/390585_283286631714750_100001002466518_820567_352342264_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701466338/390585_283286631714750_100001002466518_820567_352342264_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@FUCK_JOJO_32 I might wanna model for them umm u live in nyc?", "to_user": "FUCK_JOJO_32", "to_user_id": 409557891, "to_user_id_str": "409557891", "to_user_name": "MR. VoyR", "in_reply_to_status_id": 148839167961477120, "in_reply_to_status_id_str": "148839167961477121"}, +{"created_at": "Mon, 19 Dec 2011 18:58:13 +0000", "from_user": "discounttravelz", "from_user_id": 137061514, "from_user_id_str": "137061514", "from_user_name": "Dakota Skyhawk", "geo": null, "id": 148839569792569340, "id_str": "148839569792569344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/852737741/SeniorCoupleOnBeachcrop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/852737741/SeniorCoupleOnBeachcrop_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "American Eagle's NYC deals US Airways Tel Aviv price breaks ...: As American Eagle launches flight deals to New ... http://t.co/80AGf1FR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:10 +0000", "from_user": "DisneyGeofeed", "from_user_id": 14435186, "from_user_id_str": "14435186", "from_user_name": "Disney Geofeed", "geo": null, "id": 148839558287605760, "id_str": "148839558287605760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1213387804/wdw_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1213387804/wdw_normal.png", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "photo by littleladylaura: Girls love cupcakes! (cc: @magnoliabakery) #nyc http://t.co/Htu1I297", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:07 +0000", "from_user": "gaywomenevents", "from_user_id": 109587572, "from_user_id_str": "109587572", "from_user_name": "NYC Lavender Lounge", "geo": null, "id": 148839544861626370, "id_str": "148839544861626368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Best Single Lesbian Events Coming Again 2012 NYC - New Friends, New Romance.\\nhttp://t.co/b3EKiWIW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:05 +0000", "from_user": "leah_nwtn", "from_user_id": 105551295, "from_user_id_str": "105551295", "from_user_name": "Leah Newton", "geo": null, "id": 148839537420943360, "id_str": "148839537420943360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1609578606/th_VULCANPEACE1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609578606/th_VULCANPEACE1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@team_butorac Can we got to NYC soon with bech and @Lee_702?", "to_user": "team_butorac", "to_user_id": 402746151, "to_user_id_str": "402746151", "to_user_name": "Lindsey Maria"}, +{"created_at": "Mon, 19 Dec 2011 18:58:05 +0000", "from_user": "kiplingofficial", "from_user_id": 66308687, "from_user_id_str": "66308687", "from_user_name": "Kipling", "geo": null, "id": 148839537353822200, "id_str": "148839537353822209", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1503360707/Profile_pic_2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1503360707/Profile_pic_2_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@AbsolutelyMrsK lucky you! :)))) that sounds like an amazing plan. Enjoy! And wish u tons & tons of shopping in NYC ;)", "to_user": "AbsolutelyMrsK", "to_user_id": 250636167, "to_user_id_str": "250636167", "to_user_name": "Absolutely Mrs. K", "in_reply_to_status_id": 148839149263274000, "in_reply_to_status_id_str": "148839149263273985"}, +{"created_at": "Mon, 19 Dec 2011 18:58:03 +0000", "from_user": "mellenriquez", "from_user_id": 23830953, "from_user_id_str": "23830953", "from_user_name": "melissa enriquez", "geo": null, "id": 148839529485320200, "id_str": "148839529485320194", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691822898/cheeesin_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691822898/cheeesin_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I really wish I could go see @avicii in NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:02 +0000", "from_user": "Glee_Maniac", "from_user_id": 102285396, "from_user_id_str": "102285396", "from_user_name": "kirsty godfrey(15yr)", "geo": null, "id": 148839524234039300, "id_str": "148839524234039297", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1210722916/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1210722916/image_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "Lea in NYC #2 #smiling #smile #2011 #season2 #laughing #singing #laugh #glee #rachelberry #rachel #berry #lea #mi http://t.co/nBH0WOeJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:01 +0000", "from_user": "__Barbs", "from_user_id": 268517384, "from_user_id_str": "268517384", "from_user_name": "__Barbs", "geo": null, "id": 148839521755201540, "id_str": "148839521755201536", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1278557198/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1278557198/images_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@MayBeMay_ attenzione se vai a NYC rischi di non voler pi\\u00F9 tornare :-)", "to_user": "MayBeMay_", "to_user_id": 249090011, "to_user_id_str": "249090011", "to_user_name": "Claire"}, +{"created_at": "Mon, 19 Dec 2011 18:58:00 +0000", "from_user": "archdukedom", "from_user_id": 90531408, "from_user_id_str": "90531408", "from_user_name": "domoe t.", "geo": null, "id": 148839517548318720, "id_str": "148839517548318720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1473252500/Photo_on_2011-03-14_at_11.00__3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1473252500/Photo_on_2011-03-14_at_11.00__3_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "http://t.co/8pqZCeA7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:59 +0000", "from_user": "sommaieatworld", "from_user_id": 140285592, "from_user_id_str": "140285592", "from_user_name": "Sommai", "geo": null, "id": 148839512208982000, "id_str": "148839512208982017", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1550427076/Photo_on_2011-08-22_at_13.47_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1550427076/Photo_on_2011-08-22_at_13.47_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "This week will consist of waiting for #NYC to reply about a second interview. #keepingthosefingerscrossed #gulp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:59 +0000", "from_user": "Jojofonggg", "from_user_id": 63139785, "from_user_id_str": "63139785", "from_user_name": "Joreen Emelda (:", "geo": null, "id": 148839509478473730, "id_str": "148839509478473728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702604186/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702604186/image_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "RT @IanKeaggy: NYC subway system > ian.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:58 +0000", "from_user": "_XxhottmamiixX", "from_user_id": 370153271, "from_user_id_str": "370153271", "from_user_name": "erica", "geo": null, "id": 148839506160795650, "id_str": "148839506160795648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668197060/work_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668197060/work_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Excuse me, what ??? RT @SissyGolden Excited for new years ! \\u2764 NYC with her \\uD83D\\uDE18", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:57 +0000", "from_user": "etherealprey", "from_user_id": 784871, "from_user_id_str": "784871", "from_user_name": "Jenn", "geo": null, "id": 148839502125858800, "id_str": "148839502125858816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1301433229/186585_34604116_4885829_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1301433229/186585_34604116_4885829_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Lol. There is a gig for me to dress up like a banana and dance. Lol. Gotta love nyc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:57 +0000", "from_user": "JustZhawne", "from_user_id": 60827115, "from_user_id_str": "60827115", "from_user_name": "Zhawne\\u2122", "geo": null, "id": 148839501408641020, "id_str": "148839501408641025", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689012164/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689012164/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Nah f'real, why are so many NYC brands following me on most of my networks? I'm west coast, east Las Vegas boy.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:54 +0000", "from_user": "thiagoarantes", "from_user_id": 5994552, "from_user_id_str": "5994552", "from_user_name": "Thiago Arantes", "geo": null, "id": 148839492164395000, "id_str": "148839492164395009", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1001548586/fotoMSN29_bigger_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1001548586/fotoMSN29_bigger_1__normal.jpg", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "@tomazeli se prepare para muitas emo\\u00E7\\u00F5es com Robo Rally em NYC!", "to_user": "tomazeli", "to_user_id": 18024173, "to_user_id_str": "18024173", "to_user_name": "tomazeli"}, +{"created_at": "Mon, 19 Dec 2011 18:57:54 +0000", "from_user": "saveyrdaughters", "from_user_id": 83464450, "from_user_id_str": "83464450", "from_user_name": "ivan l", "geo": null, "id": 148839491694641150, "id_str": "148839491694641152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/505894041/deputy-badge_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/505894041/deputy-badge_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Suspect in NYC torching charged with murder \\n (AP): AP - The man suspected of dousing a 73-year-old woman wit... http://t.co/sIgZKzOy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:54 +0000", "from_user": "CatchNgo", "from_user_id": 126123584, "from_user_id_str": "126123584", "from_user_name": "NGO TV", "geo": null, "id": 148839491010969600, "id_str": "148839491010969600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1178995556/NEW_CALENDAR_COVER_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1178995556/NEW_CALENDAR_COVER_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Check out my new blog from NYC\\n http://t.co/GVjj1zr3 http://t.co/1CUT0rQd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:54 +0000", "from_user": "ArtistsOnly", "from_user_id": 49491093, "from_user_id_str": "49491093", "from_user_name": "Artists Only Records", "geo": null, "id": 148839490994188300, "id_str": "148839490994188289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/362849750/296159784_m_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/362849750/296159784_m_normal.gif", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "RT @24k: After 10 years, I've made it back to 5th Avenue #NYC, excited about being here again, goosebumps! cc @jennydeluxe #travel", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:54 +0000", "from_user": "Tony_G1989", "from_user_id": 370759922, "from_user_id_str": "370759922", "from_user_name": "Anthony Navaroli", "geo": null, "id": 148839490880942080, "id_str": "148839490880942080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1536071135/291861_2053198685243_1102800185_31912253_4237897_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1536071135/291861_2053198685243_1102800185_31912253_4237897_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "http://t.co/XhkGibec Skantown on the stool", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:53 +0000", "from_user": "deann_native", "from_user_id": 333956398, "from_user_id_str": "333956398", "from_user_name": "De Ann Townes Jr.", "geo": null, "id": 148839487202541570, "id_str": "148839487202541568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1438298743/author_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1438298743/author_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @HUEMANBOOKS: Vendor day was great...if you did not stop by...vendor products are still available ..cards, meditation, teas, books etc. Stop in today #NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:52 +0000", "from_user": "LocalNdex", "from_user_id": 89277725, "from_user_id_str": "89277725", "from_user_name": "LocalNdex", "geo": null, "id": 148839483947757570, "id_str": "148839483947757568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/522773735/localndex_logoguy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/522773735/localndex_logoguy_normal.jpg", "source": "<a href="http://www.localndex.com" rel="nofollow">LocalNdexFeeds</a>", "text": "New York NYC Royal Limo just updated its Business Profile. http://t.co/4rMPiiTD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:50 +0000", "from_user": "VanGubble", "from_user_id": 103143089, "from_user_id_str": "103143089", "from_user_name": "Rego Van Gubble", "geo": null, "id": 148839472799289340, "id_str": "148839472799289344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1342374009/Yoda_-_Large_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1342374009/Yoda_-_Large_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Cornell Wins Contest for NYC Tech Campus http://t.co/bYX4ypdr via @WSJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:49 +0000", "from_user": "NateBerkusShow", "from_user_id": 106585620, "from_user_id_str": "106585620", "from_user_name": "TheNateShow.com", "geo": null, "id": 148839470748270600, "id_str": "148839470748270595", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1367387800/_DC_6357_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1367387800/_DC_6357_copy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @InsideMizrahi: Don't forget - Isaac is on the @NateBerkusShow w/ fun & fresh holiday party outfit ideas! 2pm in NYC, check local listings for time & chanl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:46 +0000", "from_user": "TheDekadentDiva", "from_user_id": 203226819, "from_user_id_str": "203226819", "from_user_name": "Nikki Kaapke", "geo": null, "id": 148839457536217100, "id_str": "148839457536217088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679961966/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679961966/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "LOVE!!! tres chic & still very Jilly. \\u201C@jillianharris: Highlights from my NYC trip + what I wore! :) http://t.co/Mli2BYpY\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:46 +0000", "from_user": "alimandri", "from_user_id": 18540252, "from_user_id_str": "18540252", "from_user_name": "Alex LiMandri", "geo": null, "id": 148839456315670530, "id_str": "148839456315670528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1629128730/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629128730/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Last day in #NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:46 +0000", "from_user": "Shirinxx", "from_user_id": 210194772, "from_user_id_str": "210194772", "from_user_name": "Shirin T", "geo": null, "id": 148839455443263500, "id_str": "148839455443263490", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697949185/331601748_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697949185/331601748_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I need to go to NYC sometime sooon... Miss my second favourite cityyy.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:43 +0000", "from_user": "BrianFrumberg", "from_user_id": 159950334, "from_user_id_str": "159950334", "from_user_name": "Brian Frumberg", "geo": null, "id": 148839446324846600, "id_str": "148839446324846594", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1460920621/225249_607843355039_15802274_33912209_2598868_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1460920621/225249_607843355039_15802274_33912209_2598868_n_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#Bloomberg picks #Cornell for the new engineering campus in NYC: http://t.co/OYybCjxs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:43 +0000", "from_user": "Dachosen_1one", "from_user_id": 373084763, "from_user_id_str": "373084763", "from_user_name": "Chuckie", "geo": null, "id": 148839442453499900, "id_str": "148839442453499904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699047881/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699047881/image_normal.jpg", "source": "<a href="http://tweetli.st/" rel="nofollow">TweetList Pro</a>", "text": "U bet ur sweet ass it's cold here. Lol RT @modelQ: It's way too cold to Christmas shop in NYC. I'm doing my shopping online!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:41 +0000", "from_user": "Miss_Gosik", "from_user_id": 237400525, "from_user_id_str": "237400525", "from_user_name": "Kathryn Gosik", "geo": null, "id": 148839436459835400, "id_str": "148839436459835392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1400530055/254366_1832552301177_1461480209_31793339_3778212_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1400530055/254366_1832552301177_1461480209_31793339_3778212_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Hmmm...what to do for NYE? Possibly Deadmau5? hmmmm hmmm...Who is going to be in NYC?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:41 +0000", "from_user": "Kjen21", "from_user_id": 28667242, "from_user_id_str": "28667242", "from_user_name": "JLo", "geo": null, "id": 148839436438880260, "id_str": "148839436438880256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1626224063/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626224063/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@FlyGrlLafleur You can't drive to NYC from il to just spend a day!! Lol", "to_user": "FlyGrlLafleur", "to_user_id": 378671223, "to_user_id_str": "378671223", "to_user_name": "Lindsay ", "in_reply_to_status_id": 148839079000277000, "in_reply_to_status_id_str": "148839079000276992"}, +{"created_at": "Mon, 19 Dec 2011 18:57:40 +0000", "from_user": "MisConnections", "from_user_id": 427208592, "from_user_id_str": "427208592", "from_user_name": "Missed Connections", "geo": null, "id": 148839431665754100, "id_str": "148839431665754114", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670999023/MissedConnections_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670999023/MissedConnections_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#MissedConnections x older/mature couples - m4mw (Midtown) 32yr http://t.co/yua8imZw #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:39 +0000", "from_user": "Disney_Dreaming", "from_user_id": 21209758, "from_user_id_str": "21209758", "from_user_name": "Disney Dreaming", "geo": null, "id": 148839427937009660, "id_str": "148839427937009664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/421097380/bg-dd_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/421097380/bg-dd_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "More pics of Bella Thorne and Zendaya Coleman in NYC http://t.co/Q0mYuFtu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:38 +0000", "from_user": "rcrc2012", "from_user_id": 410565575, "from_user_id_str": "410565575", "from_user_name": "Raka Choudhury", "geo": null, "id": 148839422891274240, "id_str": "148839422891274240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1660807650/Photo_on_2011-11-02_at_21.09_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660807650/Photo_on_2011-11-02_at_21.09_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Streetfilms: #1! Top 5 Streetfilms 2011: #1 NYC's Complete Streets our 2011 most viewed! http://t.co/ofJhzbKf Making it safer for peds, bikes & drivers!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:38 +0000", "from_user": "Evank37", "from_user_id": 70412282, "from_user_id_str": "70412282", "from_user_name": "Evan Kay", "geo": null, "id": 148839421440045060, "id_str": "148839421440045056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/568824081/lxm9_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/568824081/lxm9_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Yezzirr..Sneakerhead for good price...RT @TizzleSTX: @Evank37 the patent leather ones @KyleHarrison18 got in NYC?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:38 +0000", "from_user": "WrestRoundtable", "from_user_id": 64303548, "from_user_id_str": "64303548", "from_user_name": "Wrestling Roundtable", "geo": null, "id": 148839421372928000, "id_str": "148839421372928000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1601221187/WR_URL_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601221187/WR_URL_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @fightnowtv: Great meeting for channel in NYC today big news coming 2012 thanks for support everyone let your TV provider know u want to get it on!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:37 +0000", "from_user": "piercingmetal", "from_user_id": 27065731, "from_user_id_str": "27065731", "from_user_name": "Ken Pierce", "geo": null, "id": 148839420148195330, "id_str": "148839420148195328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/579873816/PMcom-Logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/579873816/PMcom-Logo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@madinalake Hey guys I need the set rundown from NYC. Can you shoot me an email please. KP", "to_user": "madinalake", "to_user_id": 18086117, "to_user_id_str": "18086117", "to_user_name": "madinalake"}, +{"created_at": "Mon, 19 Dec 2011 18:57:35 +0000", "from_user": "meggallagherNYC", "from_user_id": 26670153, "from_user_id_str": "26670153", "from_user_name": "Meg Gallagher", "geo": null, "id": 148839411717644300, "id_str": "148839411717644290", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1167506688/web_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1167506688/web_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Squeezing in clients (styling and shopping) before I leave for NYC.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:33 +0000", "from_user": "RachelDwyer", "from_user_id": 33456993, "from_user_id_str": "33456993", "from_user_name": "Rachel Dwyer", "geo": null, "id": 148839404255981570, "id_str": "148839404255981569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1629968358/IMG_3045_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629968358/IMG_3045_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@AnnaMariaPdT yayy finally! Celebrate it up! & then again when I come to NYC haha", "to_user": "AnnaMariaPdT", "to_user_id": 35541249, "to_user_id_str": "35541249", "to_user_name": "Anna Perez de Tagle", "in_reply_to_status_id": 148829696728109060, "in_reply_to_status_id_str": "148829696728109058"}, +{"created_at": "Mon, 19 Dec 2011 18:57:33 +0000", "from_user": "IanKeaggy", "from_user_id": 55699429, "from_user_id_str": "55699429", "from_user_name": "Ian Keaggy", "geo": null, "id": 148839400703410180, "id_str": "148839400703410176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682525307/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682525307/image_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "NYC subway system > ian.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:32 +0000", "from_user": "unbrokenbeauty", "from_user_id": 277231388, "from_user_id_str": "277231388", "from_user_name": "DANCEUNTILTOMORROW\\u10E6 ", "geo": null, "id": 148839398182633470, "id_str": "148839398182633472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702218175/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702218175/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Jasmine_x3 i don't even live in NYC so idk how i would have been in 911 . they did it as an anon", "to_user": "Jasmine_x3", "to_user_id": 27852874, "to_user_id_str": "27852874", "to_user_name": "Jasmine \\u271D", "in_reply_to_status_id": 148838808757080060, "in_reply_to_status_id_str": "148838808757080064"}, +{"created_at": "Mon, 19 Dec 2011 18:57:32 +0000", "from_user": "audra_a", "from_user_id": 21778651, "from_user_id_str": "21778651", "from_user_name": "audra", "geo": null, "id": 148839396672671740, "id_str": "148839396672671744", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1673385445/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673385445/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @arielleraye20: @Johnrzeznik1 in Hard Rock NYC :D http://t.co/uJgxIhiu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:32 +0000", "from_user": "kurtpellegrino", "from_user_id": 86729029, "from_user_id_str": "86729029", "from_user_name": "kurt pellegrino", "geo": null, "id": 148839394244182000, "id_str": "148839394244182016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1579860734/2011PellegrinoFamily0930-9731_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1579860734/2011PellegrinoFamily0930-9731_copy_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Camera on iOS</a>", "text": "Priscilla made friends in NYC http://t.co/llRvi0BM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:57:30 +0000", "from_user": "LillieLRH", "from_user_id": 124316813, "from_user_id_str": "124316813", "from_user_name": "\\u24C1\\u24D8\\u24DB\\u24DB\\u24D8\\u24D4 \\u2661", "geo": null, "id": 148839389970169860, "id_str": "148839389970169858", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1601812984/11714539439_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601812984/11714539439_normal.jpeg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@agt143 :O whhhhaaaaattttt! Who cares if you going to nyc the next day! That shouldn't stop you. Its not like you gonna get back late..", "to_user": "agt143", "to_user_id": 223291792, "to_user_id_str": "223291792", "to_user_name": "Graciee(:", "in_reply_to_status_id": 148838989414150140, "in_reply_to_status_id_str": "148838989414150144"}, +{"created_at": "Mon, 19 Dec 2011 18:57:29 +0000", "from_user": "AubSerpz", "from_user_id": 51510030, "from_user_id_str": "51510030", "from_user_name": "Aubrielle Marie", "geo": null, "id": 148839386950283260, "id_str": "148839386950283264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1466753127/tumblr_lgottip6pb1qhnuupo1_500_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1466753127/tumblr_lgottip6pb1qhnuupo1_500_normal.gif", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Seeking Fulltime #GraphicDesign job in the NJ, NYC area. Also willing to relocate anywhere.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:27 +0000", "from_user": "jsench", "from_user_id": 103899997, "from_user_id_str": "103899997", "from_user_name": "@jsench", "geo": null, "id": 148839377202720770, "id_str": "148839377202720768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/624751020/0671_09_080_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/624751020/0671_09_080_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I've been a supporter of #Cornell's plans for NYC tech campus, but would really like to see humanists invited to the table.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:27 +0000", "from_user": "Not_Basic", "from_user_id": 80426903, "from_user_id_str": "80426903", "from_user_name": "Christian vonGizycki", "geo": null, "id": 148839377110450180, "id_str": "148839377110450176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699371295/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699371295/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Dying inside due to the closure of Grimaldi's in Brooklyn. #NYC #brooklyn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:27 +0000", "from_user": "rcrc2012", "from_user_id": 410565575, "from_user_id_str": "410565575", "from_user_name": "Raka Choudhury", "geo": null, "id": 148839376217059330, "id_str": "148839376217059328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1660807650/Photo_on_2011-11-02_at_21.09_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660807650/Photo_on_2011-11-02_at_21.09_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Streetfilms: Top 5 Streetfilms 2011: #3 Moving Beyond the Automobile Bicycling http://t.co/yfgjSySl Biking rules in SF, NYC, PDX, and more!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:26 +0000", "from_user": "24k", "from_user_id": 17145442, "from_user_id_str": "17145442", "from_user_name": "Chris Rauschnot", "geo": null, "id": 148839372001779700, "id_str": "148839372001779712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1193040615/24k_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1193040615/24k_normal.jpg", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "After 10 years, I've made it back to 5th Avenue #NYC, excited about being here again, goosebumps! cc @jennydeluxe #travel", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:22 +0000", "from_user": "AaronJElmore", "from_user_id": 100597569, "from_user_id_str": "100597569", "from_user_name": "Aaron J Elmore", "geo": null, "id": 148839356327673860, "id_str": "148839356327673857", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/601102638/4878_213989820446_529310446_7280192_163738_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/601102638/4878_213989820446_529310446_7280192_163738_n_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @arnabdotorg: Cornell NYC is a go! Congratulations, Big Red!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:21 +0000", "from_user": "whatupkeer", "from_user_id": 111982511, "from_user_id_str": "111982511", "from_user_name": "Molly Keereweer", "geo": null, "id": 148839353966268400, "id_str": "148839353966268416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1546190760/TPhoto_00008_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546190760/TPhoto_00008_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Spontaneous trip to Hoboken/ nyc with @LouisRubino", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:21 +0000", "from_user": "Belieber3113", "from_user_id": 287353333, "from_user_id_str": "287353333", "from_user_name": "Belieber4ever", "geo": null, "id": 148839353832058880, "id_str": "148839353832058880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1613969971/320771_267826706587677_156590811044601_717315_1481157837_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1613969971/320771_267826706587677_156590811044601_717315_1481157837_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @justinbieber: got word that there is 16 more days to find the PLATINUM tickets in the #UnderTheMistletoe Albms to come meet me in NYC on NYE! #FINDTHEM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:21 +0000", "from_user": "shauneynoel", "from_user_id": 213975822, "from_user_id_str": "213975822", "from_user_name": "Shauney Cycenas", "geo": null, "id": 148839353173549060, "id_str": "148839353173549056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690549955/Photo_on_2011-12-13_at_00.29__6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690549955/Photo_on_2011-12-13_at_00.29__6_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @CJCycenas: If I'm able to go to NYC tomorrow, I might become the happiest person alive.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:20 +0000", "from_user": "francisbaconegg", "from_user_id": 57474968, "from_user_id_str": "57474968", "from_user_name": "barbara sicuranza", "geo": null, "id": 148839347486076930, "id_str": "148839347486076928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1413116665/MV5BMjk1MjMxOTA4NF5BMl5BanBnXkFtZTcwNDkwODQ1Mw__._V1._SX500_SY333__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1413116665/MV5BMjk1MjMxOTA4NF5BMl5BanBnXkFtZTcwNDkwODQ1Mw__._V1._SX500_SY333__normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\"Let's not meet their institutional violence with anything but love and a commitment to justice.\" http://t.co/TVDBStZ1 #Love #D17 #ows #nyc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:18 +0000", "from_user": "rac2007", "from_user_id": 8716202, "from_user_id_str": "8716202", "from_user_name": "Aaron ", "geo": null, "id": 148839340825509900, "id_str": "148839340825509888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1487464382/n649151452_718510_5754_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1487464382/n649151452_718510_5754_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @Clare_OC: (I've been inside of this bldg, and to quote Jay-Z, that sh*t cray) Billionaire's Daughter Pays Record Sum For NYC Pad http://t.co/TJpag4qA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:18 +0000", "from_user": "Najeejo", "from_user_id": 327736079, "from_user_id_str": "327736079", "from_user_name": "Najee Jones", "geo": null, "id": 148839339978268670, "id_str": "148839339978268672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1627708200/I-love-house-music-thumb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627708200/I-love-house-music-thumb_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I have lost faith in humanity. This is awful http://t.co/2UVvkIAQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:15 +0000", "from_user": "_sparkinthedark", "from_user_id": 293229075, "from_user_id_str": "293229075", "from_user_name": "Miya Dick/The Grinch", "geo": null, "id": 148839328469090300, "id_str": "148839328469090304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687727703/yoo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687727703/yoo_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "NYC on the 14th !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:15 +0000", "from_user": "Sanniel", "from_user_id": 22257949, "from_user_id_str": "22257949", "from_user_name": "Sanniel Sanabia", "geo": null, "id": 148839328234221570, "id_str": "148839328234221568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1665441001/5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665441001/5_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "! RT @vmagazine: Stream \"Liquorice\" \\u266C the new track from NYC rapper @AZEALIABANKS http://t.co/veSqE0Yo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:15 +0000", "from_user": "BODYAMR", "from_user_id": 20588754, "from_user_id_str": "20588754", "from_user_name": "B O D Y A M R", "geo": null, "id": 148839325021384700, "id_str": "148839325021384705", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1116694091/bodyamr_helmut_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1116694091/bodyamr_helmut_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT Stream \"Liquorice\" \\u266C the new track from NYC rapper @AZEALIABANKS http://t.co/zgEA9p9n SWEEEEEEEEEEEEEEEET!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:13 +0000", "from_user": "DJASTYLESZ", "from_user_id": 19758436, "from_user_id_str": "19758436", "from_user_name": "DEEJAY ASTYLESZ \\u2122", "geo": null, "id": 148839318742499330, "id_str": "148839318742499328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1620077434/306855_265766570120364_100000610687420_841199_743126321_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620077434/306855_265766570120364_100000610687420_841199_743126321_n_normal.jpg", "source": "<a href="http://tweetlogix.com" rel="nofollow">Tweetlogix</a>", "text": "Metro pcs 9$ phones lol RT @DjanarkiBx: Lol boost mobile RT @DjManiatiko: Anyone know where I can buy a Simple Mobile phone in nyc???", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:13 +0000", "from_user": "abcamuez", "from_user_id": 324207292, "from_user_id_str": "324207292", "from_user_name": "Ashley Bedoya Camuez", "geo": null, "id": 148839317291286530, "id_str": "148839317291286528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1665440805/092911200407_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665440805/092911200407_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "For Christmas ima invite a few heads to my crib, Drink & leave to NYC at 12 ^_^", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:12 +0000", "from_user": "EmilioTheBroker", "from_user_id": 310543765, "from_user_id_str": "310543765", "from_user_name": "Emilio Martinez", "geo": null, "id": 148839313377988600, "id_str": "148839313377988609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1535977966/276368_100001029807858_1122122428_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1535977966/276368_100001029807858_1122122428_n_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "On the Market: Former M.T.A. chief Jay Walder, who... http://t.co/9UI9C54D #RealEstate #NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:10 +0000", "from_user": "ayboodayyy", "from_user_id": 372494004, "from_user_id_str": "372494004", "from_user_name": "Elizabeth ", "geo": null, "id": 148839305694027780, "id_str": "148839305694027777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1552122974/319603_2189813417272_1005184947_31985988_1427450121_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552122974/319603_2189813417272_1005184947_31985988_1427450121_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "S/O to @R_Amato215 hope your having a fun time in NYC! #jealous! Can't wait till you get back", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:08 +0000", "from_user": "xoxoZaara", "from_user_id": 219218133, "from_user_id_str": "219218133", "from_user_name": "Z\\u03B1\\u03B1\\u01A6\\u03B1", "geo": null, "id": 148839298861510660, "id_str": "148839298861510657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1598890661/small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598890661/small_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Home Sweet Home!! Had an amazingly awesome time in NYC! Loved walking through the streets of #upper east side. All in all greatt timee! :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:08 +0000", "from_user": "babar2", "from_user_id": 17378927, "from_user_id_str": "17378927", "from_user_name": "rosemary rannes", "geo": null, "id": 148839295652855800, "id_str": "148839295652855809", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691425593/9687258_Kizzy_Christmas_2010_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691425593/9687258_Kizzy_Christmas_2010_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Cat Shelters Get Stylish Spin in NYC Zootoo Pet News http://t.co/WF9rv275 via @zootoo Winter means homeless need shelters too-abandoned cats", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:07 +0000", "from_user": "RantersRavers", "from_user_id": 330817421, "from_user_id_str": "330817421", "from_user_name": "Ranters N' Ravers CL", "geo": null, "id": 148839294465867780, "id_str": "148839294465867776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1430277765/rant-rave_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1430277765/rant-rave_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "republican congress (Financial District) http://t.co/WRlAyVCv #NYC #RnR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:58 +0000", "from_user": "bhasday", "from_user_id": 42785930, "from_user_id_str": "42785930", "from_user_name": "Brian Hasday", "geo": +{"coordinates": [38.7696,-9.1317], "type": "Point"}, "id": 148839256394170370, "id_str": "148839256394170368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1079450129/Me_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1079450129/Me_normal.png", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "Next stop: 35 hours in BCN before I leave for NYC! (@ Aeroporto de Lisboa (LIS)) http://t.co/3muVSUnj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:58 +0000", "from_user": "SzantosP", "from_user_id": 50058928, "from_user_id_str": "50058928", "from_user_name": "Szantos Palacios", "geo": null, "id": 148839255408508930, "id_str": "148839255408508928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689113593/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689113593/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @HotChelleRae: Don\\u2019t forget! We are playing a private show today at 5PM EST at the @iHeartRadio Theater in NYC. Enter for tix here: http://t.co/AzJSN2zV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:58 +0000", "from_user": "davidbowieUB40", "from_user_id": 49480380, "from_user_id_str": "49480380", "from_user_name": "Kelly Leece", "geo": null, "id": 148839253818880000, "id_str": "148839253818880000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1296775657/17054_105126616179758_100000472613423_136158_4547718_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1296775657/17054_105126616179758_100000472613423_136158_4547718_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Look at this guy tweeting! #Harpuglia #partyrape \"@PhilSuglia: Looking forward to NYE in NYC #phish #ragewallstreet\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:57 +0000", "from_user": "nymjobs", "from_user_id": 165985790, "from_user_id_str": "165985790", "from_user_name": "NY Marketingjobs", "geo": null, "id": 148839251654623230, "id_str": "148839251654623232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1077644968/nymj_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1077644968/nymj_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Junior Social Media Coordinator http://t.co/qnsD5Ecw #nyc #marketingjobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:57 +0000", "from_user": "OnBoardTours", "from_user_id": 310693718, "from_user_id_str": "310693718", "from_user_name": "OnBoard Tours", "geo": null, "id": 148839250878660600, "id_str": "148839250878660608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1411809804/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1411809804/images_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@dhmuns We agree! Testing issues seem to apparent in a lot of places. However, at least NYC is seeing an increase in student performance. :)", "to_user": "dhmuns", "to_user_id": 112571905, "to_user_id_str": "112571905", "to_user_name": "Darren Munson", "in_reply_to_status_id": 148837092011687940, "in_reply_to_status_id_str": "148837092011687937"}, +{"created_at": "Mon, 19 Dec 2011 18:56:56 +0000", "from_user": "nymjobs", "from_user_id": 165985790, "from_user_id_str": "165985790", "from_user_name": "NY Marketingjobs", "geo": null, "id": 148839249171595260, "id_str": "148839249171595264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1077644968/nymj_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1077644968/nymj_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Sales Support http://t.co/hBDa2bGH #nyc #marketingjobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:56 +0000", "from_user": "808_Dave", "from_user_id": 24257377, "from_user_id_str": "24257377", "from_user_name": "David Leibner", "geo": null, "id": 148839248756359170, "id_str": "148839248756359169", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/622694282/DPL_IMG_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/622694282/DPL_IMG_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "Incredibly gorgeous day #nyc #soho http://t.co/LrdNvPu1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:56 +0000", "from_user": "nymjobs", "from_user_id": 165985790, "from_user_id_str": "165985790", "from_user_name": "NY Marketingjobs", "geo": null, "id": 148839247661645820, "id_str": "148839247661645824", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1077644968/nymj_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1077644968/nymj_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Analyst, Derivative Svcs http://t.co/QtFm4PFK #nyc #marketingjobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:55 +0000", "from_user": "KellllyMuldoon", "from_user_id": 206463704, "from_user_id_str": "206463704", "from_user_name": "Kelly Muldoon", "geo": null, "id": 148839244012584960, "id_str": "148839244012584960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1650691540/Photo_on_2011-11-19_at_23.32__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650691540/Photo_on_2011-11-19_at_23.32__2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Just got violated by Iron Man #toysrus #NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:50 +0000", "from_user": "Tommy_Parker", "from_user_id": 18177077, "from_user_id_str": "18177077", "from_user_name": "CVXSVR", "geo": null, "id": 148839223972212740, "id_str": "148839223972212736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627837608/283844_10150333482376289_607681288_9493701_1058283_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627837608/283844_10150333482376289_607681288_9493701_1058283_n_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "....im ready to go back to NYC. Lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:49 +0000", "from_user": "stunnybunny", "from_user_id": 38132673, "from_user_id_str": "38132673", "from_user_name": "Stun Gun", "geo": null, "id": 148839219744346100, "id_str": "148839219744346112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1616298930/lockhaven_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616298930/lockhaven_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Officially the BEST christmas ever! RT @Jack_P_Burgh: @stunnybunny so many things. puerto rico day parade in NYC this summer FER SURE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:47 +0000", "from_user": "ashleedemartino", "from_user_id": 176003363, "from_user_id_str": "176003363", "from_user_name": "Ashlee DeMartino", "geo": null, "id": 148839208109355000, "id_str": "148839208109355008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1263103797/photo8_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263103797/photo8_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "In honor of @OldHomesteadLV's opening at @CaesarsPalace, the NYC landmark\\u2019s iconic #AnnabelleMooves to #Vegas.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:46 +0000", "from_user": "MartinaRenea", "from_user_id": 170927738, "from_user_id_str": "170927738", "from_user_name": "Martina Jones", "geo": null, "id": 148839204795846660, "id_str": "148839204795846656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1087451152/Headshot-Pearls_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1087451152/Headshot-Pearls_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@tiaratoya26 You should start it by celebrating NYE in NYC:-)", "to_user": "tiaratoya26", "to_user_id": 361311689, "to_user_id_str": "361311689", "to_user_name": "*CrazySexyCool*", "in_reply_to_status_id": 148776449950744580, "in_reply_to_status_id_str": "148776449950744578"}, +{"created_at": "Mon, 19 Dec 2011 18:56:44 +0000", "from_user": "Luiz_Simpson", "from_user_id": 127273608, "from_user_id_str": "127273608", "from_user_name": "luiz Henrique Soares", "geo": null, "id": 148839195832619000, "id_str": "148839195832619008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668811966/Luiz_Henrique_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668811966/Luiz_Henrique_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @billboard: #Glee star @DarrenCriss played a few shows in #NYC over the weekend while in town for \"How to Succeed...\" on #Broadway http://t.co/O74cYdkY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:44 +0000", "from_user": "thematthinrichs", "from_user_id": 72737873, "from_user_id_str": "72737873", "from_user_name": "Matt Hinrichs", "geo": null, "id": 148839195773894660, "id_str": "148839195773894656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1683743770/383820_10150593974568662_678303661_11715093_1031372343_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683743770/383820_10150593974568662_678303661_11715093_1031372343_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Well this explains a lot http://t.co/v9JvUsYc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:43 +0000", "from_user": "Fab_Belleza", "from_user_id": 77209997, "from_user_id_str": "77209997", "from_user_name": "Portia", "geo": null, "id": 148839193076973570, "id_str": "148839193076973568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685336241/PKBl6UeI_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685336241/PKBl6UeI_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@sademddn NYC in a couple of months bby", "to_user": "sademddn", "to_user_id": 288960022, "to_user_id_str": "288960022", "to_user_name": "sade madden"}, +{"created_at": "Mon, 19 Dec 2011 18:56:39 +0000", "from_user": "JoshuATuna", "from_user_id": 208295917, "from_user_id_str": "208295917", "from_user_name": "Joshu@unis", "geo": null, "id": 148839176463327230, "id_str": "148839176463327232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1608735252/ActyzmFCQAAXicN_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608735252/ActyzmFCQAAXicN_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "wow anyone who cops beware of loud.. a ghanian driver in nyc told me he whiffed my piff and then i paid with a dime instead of a 12$ fair", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:39 +0000", "from_user": "kaylaglasgow", "from_user_id": 38948442, "from_user_id_str": "38948442", "from_user_name": "Kayla Glasgow", "geo": null, "id": 148839174672363520, "id_str": "148839174672363520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/966802788/kayla_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/966802788/kayla_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "NYC squirrels have been taking lessons from the honey badger", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:38 +0000", "from_user": "simon3677", "from_user_id": 276957820, "from_user_id_str": "276957820", "from_user_name": "simon renwick", "geo": null, "id": 148839170687774720, "id_str": "148839170687774720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1580399346/IMG00493-20110807-1549_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580399346/IMG00493-20110807-1549_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@stephenfry in NYC with my family when we saw Sherlock 2 in an RPX cinema which according to my son made your \"wobbly\" bits too much to see!", "to_user": "stephenfry", "to_user_id": 15439395, "to_user_id_str": "15439395", "to_user_name": "Stephen Fry", "in_reply_to_status_id": 148832444236300300, "in_reply_to_status_id_str": "148832444236300288"}, +{"created_at": "Mon, 19 Dec 2011 18:56:37 +0000", "from_user": "BTB_JADE", "from_user_id": 41468715, "from_user_id_str": "41468715", "from_user_name": "Jade The ILLest", "geo": null, "id": 148839168515112960, "id_str": "148839168515112960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701675172/331687752_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701675172/331687752_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @ciphasounds: NYC support @KelSpencer's Live Charity Show #JingleBellRocks 2MORO Dec 20th\\u00BB http://t.co/2vZhSghq & http://t.co/Y4k9b8no", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:36 +0000", "from_user": "cryptic_IB", "from_user_id": 216085609, "from_user_id_str": "216085609", "from_user_name": "Iberedem Usoro", "geo": null, "id": 148839165042245630, "id_str": "148839165042245633", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702420367/Double_ponder_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702420367/Double_ponder_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TomCruise: Tom answers your questions at the NYC M:I-@GhostProtocol Premiere 2night! Submit your questions w/ #MissionNYC http://t.co/8FwxLVGC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:33 +0000", "from_user": "AbsolutelyMrsK", "from_user_id": 250636167, "from_user_id_str": "250636167", "from_user_name": "Absolutely Mrs. K", "geo": null, "id": 148839149263274000, "id_str": "148839149263273985", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1249557868/7_-_kopie_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1249557868/7_-_kopie_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@kiplingofficial work, relax, pampering, NYC!!!!!!!!", "to_user": "kiplingofficial", "to_user_id": 66308687, "to_user_id_str": "66308687", "to_user_name": "Kipling", "in_reply_to_status_id": 148838631832944640, "in_reply_to_status_id_str": "148838631832944640"}, +{"created_at": "Mon, 19 Dec 2011 18:56:30 +0000", "from_user": "giantswfan", "from_user_id": 62511529, "from_user_id_str": "62511529", "from_user_name": "GiantsWFAN", "geo": null, "id": 148839139419238400, "id_str": "148839139419238400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/419042238/dottino_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/419042238/dottino_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @GiantsCRDept: @Giants Deon Grant helps pack shelf stable meals for elderly in need at #CityMeals warehouse in NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:30 +0000", "from_user": "Glee_Maniac", "from_user_id": 102285396, "from_user_id_str": "102285396", "from_user_name": "kirsty godfrey(15yr)", "geo": null, "id": 148839139230498800, "id_str": "148839139230498816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1210722916/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1210722916/image_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "Good morning everyone ! Hope everyone is having a good day ! Starting mine off with this cute pic of lea in NYC ! http://t.co/Oh92B1o3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:30 +0000", "from_user": "jillian_jane", "from_user_id": 49244070, "from_user_id_str": "49244070", "from_user_name": "jillian", "geo": null, "id": 148839138194493440, "id_str": "148839138194493440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697546804/16145_1167825079608_1347360073_30417927_6206447_n_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697546804/16145_1167825079608_1347360073_30417927_6206447_n_normal.jpeg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "nyc ballet's nutcracker is goooorgeous, but i'm glad i didn't pay $100+ to see it from the fourth balcony. thanks, pbs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:28 +0000", "from_user": "DannyWesterZTZ", "from_user_id": 388647926, "from_user_id_str": "388647926", "from_user_name": "Danny Western", "geo": null, "id": 148839130397282300, "id_str": "148839130397282304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1610536711/avatar-cartoon-25-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610536711/avatar-cartoon-25-1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Man suspected of torching 73-year-old woman in NYC elevator charged with ... - Washington Post", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:28 +0000", "from_user": "QuinceyTrigillo", "from_user_id": 205126200, "from_user_id_str": "205126200", "from_user_name": "Quincey Trigillo", "geo": null, "id": 148839129868795900, "id_str": "148839129868795904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1436238254/BDAY_with_Walter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1436238254/BDAY_with_Walter_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Being an NYC tourist. #rockcenter #thisnevergetsold", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:27 +0000", "from_user": "AmiieMarie", "from_user_id": 171912375, "from_user_id_str": "171912375", "from_user_name": "Amy Marie", "geo": null, "id": 148839124722384900, "id_str": "148839124722384896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1385107357/107_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1385107357/107_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "China town... Is another story #Nyc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:25 +0000", "from_user": "Vicenzo_", "from_user_id": 53760874, "from_user_id_str": "53760874", "from_user_name": "Vicenzo Esmanhotto", "geo": null, "id": 148839117101338620, "id_str": "148839117101338624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1613462248/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1613462248/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "at least im going to nyc in a few days...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:24 +0000", "from_user": "MoMo_BEAUTYSTAR", "from_user_id": 143574332, "from_user_id_str": "143574332", "from_user_name": "SAVAGE BEAUTY.. Mo", "geo": null, "id": 148839112399532030, "id_str": "148839112399532032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691407692/Ms._20BeautyStarr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691407692/Ms._20BeautyStarr_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Laundry... Shopping... & Packing Today.. NYC Tomorrow!! \\u263A\\u2665", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:23 +0000", "from_user": "MrStarvinMarvin", "from_user_id": 213734094, "from_user_id_str": "213734094", "from_user_name": "Mr.Marvin", "geo": null, "id": 148839110726008830, "id_str": "148839110726008833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701571488/The_Broken_Silence_Front_Cover_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701571488/The_Broken_Silence_Front_Cover_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I need internship in NYC, I am an Recording/Mixing engineer,A&R,Pr @iamdiddy @harrellrecords @Eminem @kanyewest @Interscope @DefJamRecords", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:23 +0000", "from_user": "BiancaDafu", "from_user_id": 217092078, "from_user_id_str": "217092078", "from_user_name": "Bianca Dafuente", "geo": null, "id": 148839109773889540, "id_str": "148839109773889536", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1170110101/74470_102465939827021_100001908458629_16447_7160588_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1170110101/74470_102465939827021_100001908458629_16447_7160588_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @MichaelFranjul: NYC I fucking miss u", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:23 +0000", "from_user": "Tremythedon31", "from_user_id": 323665755, "from_user_id_str": "323665755", "from_user_name": "Tremayne Panton", "geo": null, "id": 148839107752239100, "id_str": "148839107752239105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1568883716/IMG-20111001-00007_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1568883716/IMG-20111001-00007_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Heres my predictions for Xmas day. Miami 86vs Dallas 79, Orlando 82vs Okc 97, Celtics 85 vs NYC 84, Bulls 99 vs LA 101 #nba what yall think?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:22 +0000", "from_user": "GlamorousRock", "from_user_id": 136757328, "from_user_id_str": "136757328", "from_user_name": "Jackie LeClair ", "geo": null, "id": 148839102601629700, "id_str": "148839102601629696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1129637820/62708_156480164371672_100000290693177_394264_7367857_n_me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1129637820/62708_156480164371672_100000290693177_394264_7367857_n_me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Good too know I'm the one changing travel arraignments today 4Thursday trip to NYC & not the Arctic Cats. My meeting is @ 1pm. #worldpeace", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:21 +0000", "from_user": "netsbuzztap", "from_user_id": 21842239, "from_user_id_str": "21842239", "from_user_name": "New Jersey Nets Buzz", "geo": null, "id": 148839102308032500, "id_str": "148839102308032512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/494066304/nets_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/494066304/nets_normal.gif", "source": "<a href="http://buzztap.com" rel="nofollow">buzztap</a>", "text": "NY Daily News >> Actor Dan Frazer, who played Capt. McNeil on \\u2018Kojak\\u2019\\u00A0dies in NYC\\u00A0 http://t.co/V7XlCOja", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:21 +0000", "from_user": "bjnichole", "from_user_id": 156436017, "from_user_id_str": "156436017", "from_user_name": "Brittany Johnson", "geo": null, "id": 148839099346849800, "id_str": "148839099346849793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1627768454/Photo_on_10-14-11_at_6.35_PM_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627768454/Photo_on_10-14-11_at_6.35_PM_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Madame Tussaud's NYC with @taytothejay", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:19 +0000", "from_user": "Kliffnotez", "from_user_id": 287547005, "from_user_id_str": "287547005", "from_user_name": "Kliffnotes", "geo": null, "id": 148839093789401100, "id_str": "148839093789401088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1385748310/IMG7085-Ti_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1385748310/IMG7085-Ti_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @SmokeStackLLC: #NYC #MOVIEMAKIN @PaceMediaLLC http://t.co/yUKU7dLl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:19 +0000", "from_user": "elliottholt", "from_user_id": 22279580, "from_user_id_str": "22279580", "from_user_name": "Elliott Holt", "geo": null, "id": 148839090383622140, "id_str": "148839090383622146", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1439257200/elliott_in_red_chair_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1439257200/elliott_in_red_chair_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Things I won't miss about #NYC: Park Slope; trying to get a cab.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:18 +0000", "from_user": "wang0x", "from_user_id": 440488210, "from_user_id_str": "440488210", "from_user_name": "Ernie Williams", "geo": null, "id": 148839088554901500, "id_str": "148839088554901504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701298263/IMG_4414aaa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701298263/IMG_4414aaa_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Last period :D #teamhomo #follow me :c #nyc #teamnewyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:18 +0000", "from_user": "MichaelWeschler", "from_user_id": 90935739, "from_user_id_str": "90935739", "from_user_name": "Michael Weschler", "geo": null, "id": 148839087640543230, "id_str": "148839087640543233", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1310719448/MWeschlerNewHatNYC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1310719448/MWeschlerNewHatNYC_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "The Lion Tamer @adcglobal Creative Carnival, NYC #photog @theworkbook https://t.co/DuAcaCAF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:17 +0000", "from_user": "AZEALIABANKS", "from_user_id": 145353566, "from_user_id_str": "145353566", "from_user_name": "\\u2665 AH-ZEE-LEE-YAH \\u2665", "geo": null, "id": 148839083391713280, "id_str": "148839083391713280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1655420220/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655420220/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @vmagazine: Stream \"Liquorice\" \\u266C the new track from NYC rapper @AZEALIABANKS http://t.co/RYjCwZgK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:16 +0000", "from_user": "lukelassiter1", "from_user_id": 31682992, "from_user_id_str": "31682992", "from_user_name": "Money Making LL", "geo": null, "id": 148839081168736260, "id_str": "148839081168736257", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686096148/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686096148/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@SayWTF_iWant: Niggas in NYC \\uD83D\\uDDFD\\uD83D\\uDDFD\\uD83D\\uDDFD\\u201Dwat u shopping", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:16 +0000", "from_user": "FlyGrlLafleur", "from_user_id": 378671223, "from_user_id_str": "378671223", "from_user_name": "Lindsay ", "geo": null, "id": 148839079000277000, "id_str": "148839079000276992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682005168/Reno_20Southeast-20111208-00047_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682005168/Reno_20Southeast-20111208-00047_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Ok my friend that is going w/me to NYC just suggested we stay w/one of her friends in Illinois & drive to NYC for the day! Really?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:16 +0000", "from_user": "MitchMammini", "from_user_id": 393844292, "from_user_id_str": "393844292", "from_user_name": "Not Here For You", "geo": null, "id": 148839078245302270, "id_str": "148839078245302273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701579352/bild2.php_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701579352/bild2.php_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "She pose for FHM, She like my Black LV\\nWe spinnin\\u2019 LPR, up on my APC\\nI\\u2019m in my PRPS and my Nike SB\\u2019s\\nRavin\\u2019 with SHM, London to NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:15 +0000", "from_user": "jrosh", "from_user_id": 26421731, "from_user_id_str": "26421731", "from_user_name": "Josh Reisner", "geo": null, "id": 148839074403319800, "id_str": "148839074403319808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1427101134/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1427101134/image_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Camera on iOS</a>", "text": "Pinkberry #nyc http://t.co/nM5w0VAZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:15 +0000", "from_user": "HV_sings", "from_user_id": 28442504, "from_user_id_str": "28442504", "from_user_name": "HeatherVictoria.", "geo": null, "id": 148839074189414400, "id_str": "148839074189414400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695889741/HV_sings_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695889741/HV_sings_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "follow the NYC fam @thekiddaytona -- sick, unique flow....pick up his BRAND NEW tape #Interlude2 here: http://t.co/8clPbrxK *yeahhhhhh*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:12 +0000", "from_user": "jackyjessicah", "from_user_id": 357390723, "from_user_id_str": "357390723", "from_user_name": "jessicajaque", "geo": null, "id": 148839062072066050, "id_str": "148839062072066049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1600749449/jessica_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600749449/jessica_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@Ongashmania thnx urs nyc too", "to_user": "Ongashmania", "to_user_id": 159034032, "to_user_id_str": "159034032", "to_user_name": "Felix ong'are", "in_reply_to_status_id": 128805388752650240, "in_reply_to_status_id_str": "128805388752650240"}, +{"created_at": "Mon, 19 Dec 2011 18:56:08 +0000", "from_user": "RSlesinski88", "from_user_id": 287888136, "from_user_id_str": "287888136", "from_user_name": "Robert Slesinski", "geo": null, "id": 148839047786270720, "id_str": "148839047786270721", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1357029028/227026_10150179276021701_708386700_7207477_762360_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1357029028/227026_10150179276021701_708386700_7207477_762360_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @autumnn_marie: I want to go to NYC for new years!!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:06 +0000", "from_user": "HUEMANBOOKS", "from_user_id": 44131286, "from_user_id_str": "44131286", "from_user_name": "HUE-MAN BOOKSTORE", "geo": null, "id": 148839036700737540, "id_str": "148839036700737536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/636134909/logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/636134909/logo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Vendor day was great...if you did not stop by...vendor products are still available ..cards, meditation, teas, books etc. Stop in today #NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:06 +0000", "from_user": "_alleyesonE", "from_user_id": 82966610, "from_user_id_str": "82966610", "from_user_name": "polly pocket ", "geo": null, "id": 148839036298072060, "id_str": "148839036298072064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1571426095/Photo_on_2011-09-27_at_17.28_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1571426095/Photo_on_2011-09-27_at_17.28_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "my mom is always in NYC ...it makes me so damn jealous ... NYC trip ? @freshasfukk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:05 +0000", "from_user": "isolatedwithin", "from_user_id": 31249215, "from_user_id_str": "31249215", "from_user_name": "lydia", "geo": null, "id": 148839032770662400, "id_str": "148839032770662400", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1494666621/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1494666621/image_normal.jpg", "source": "<a href="http://www.eyeem.com" rel="nofollow">EyeEm</a>", "text": "Photo: Driving at NYC http://t.co/QiJCOlZh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:05 +0000", "from_user": "AcuArkaid", "from_user_id": 30306511, "from_user_id_str": "30306511", "from_user_name": "Alston Fishburne", "geo": null, "id": 148839032653234180, "id_str": "148839032653234177", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1664229786/309539_701810020154_22301533_34928569_1976675354_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664229786/309539_701810020154_22301533_34928569_1976675354_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Sweet @iLoveMiCurls is coming home to NYC tomorrow $1 beers on Wednesday?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:05 +0000", "from_user": "brennabeannnn", "from_user_id": 41926675, "from_user_id_str": "41926675", "from_user_name": "Brenna Priest", "geo": null, "id": 148839031889862660, "id_str": "148839031889862657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1495672944/Photo_on_2011-08-11_at_13.02__3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1495672944/Photo_on_2011-08-11_at_13.02__3_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "First time driving in NYC is a major success \\uD83D\\uDE03\\uD83D\\uDC4D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:04 +0000", "from_user": "FilmFatale_NYC", "from_user_id": 37340424, "from_user_id_str": "37340424", "from_user_name": "Film Fatale NYC", "geo": null, "id": 148839029733986300, "id_str": "148839029733986304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1662464956/becca_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662464956/becca_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "@skrap_zemrag it damn sure isn't NYC. Just had a fatal shooting on a city bus around me 2 wks ago", "to_user": "Skrap_Zemrag", "to_user_id": 103864992, "to_user_id_str": "103864992", "to_user_name": "Skrap", "in_reply_to_status_id": 148838687663341570, "in_reply_to_status_id_str": "148838687663341569"}, +{"created_at": "Mon, 19 Dec 2011 18:56:03 +0000", "from_user": "fharnerSNY", "from_user_id": 23119242, "from_user_id_str": "23119242", "from_user_name": "Fred Harner", "geo": null, "id": 148839026978336770, "id_str": "148839026978336768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1170139135/fh-twt_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1170139135/fh-twt_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Yes! RT @myupperwest: #UWS Coffee Bean & Tea Leaf At Amsterdam & 86th Officially Open (Finally): http://t.co/CCfSxXLN #UpperWestSide #NYC...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:03 +0000", "from_user": "AndreaFaz", "from_user_id": 38748431, "from_user_id_str": "38748431", "from_user_name": "Andrea Faz", "geo": null, "id": 148839024847618050, "id_str": "148839024847618048", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668708335/164875_10150131793344529_741229528_7851772_2764124_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668708335/164875_10150131793344529_741229528_7851772_2764124_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "NYC \\u27A1 SF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:02 +0000", "from_user": "bzean_cutie", "from_user_id": 114601676, "from_user_id_str": "114601676", "from_user_name": "Reese Hulett", "geo": null, "id": 148839020993052670, "id_str": "148839020993052672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675726702/Photo_on_2011-12-02_at_21.43__6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675726702/Photo_on_2011-12-02_at_21.43__6_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@D_NIZLE I left Bze on Saturday I'm in NYC ryte now.. Freezing", "to_user": "D_NIZLE", "to_user_id": 76199268, "to_user_id_str": "76199268", "to_user_name": "D-NICE", "in_reply_to_status_id": 148838293335838720, "in_reply_to_status_id_str": "148838293335838720"}, +{"created_at": "Mon, 19 Dec 2011 18:56:02 +0000", "from_user": "lukelassiter1", "from_user_id": 31682992, "from_user_id_str": "31682992", "from_user_name": "Money Making LL", "geo": null, "id": 148839020829487100, "id_str": "148839020829487104", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686096148/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686096148/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @SayWTF_iWant: Niggas in NYC \\uD83D\\uDDFD\\uD83D\\uDDFD\\uD83D\\uDDFD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:59 +0000", "from_user": "adorabletunie", "from_user_id": 323783098, "from_user_id_str": "323783098", "from_user_name": "Tunrayo ", "geo": null, "id": 148839008863125500, "id_str": "148839008863125506", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702579093/DSC_6235_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702579093/DSC_6235_normal.JPG", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "I'm bored.....*cryin*RT @Adorable_Tee: Ryt here dear.... Sup? Nyc avi...RT @adorabletunie: Where is @Adorable_Tee@vahldesiah???", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:58 +0000", "from_user": "ptsimy", "from_user_id": 312532572, "from_user_id_str": "312532572", "from_user_name": "Paul Simpson", "geo": null, "id": 148839005172142080, "id_str": "148839005172142080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1671923550/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671923550/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Feel abit sorry for #rufc fans,big day for club after a bad few years &the board call it that so everyone takin piss #NYC #shitfansnoground", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:58 +0000", "from_user": "iAttract_Haters", "from_user_id": 181450496, "from_user_id_str": "181450496", "from_user_name": "EverybodyLuvsTaye\\u2661\\u2714.", "geo": null, "id": 148839003225980930, "id_str": "148839003225980928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1670644131/C360_2011-10-1118-14-22_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670644131/C360_2011-10-1118-14-22_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@justJarrett eff you, & i sent you some pix of nyc", "to_user": "justJarrett", "to_user_id": 165305860, "to_user_id_str": "165305860", "to_user_name": "JARR\\u20ACTT ", "in_reply_to_status_id": 148838827849555970, "in_reply_to_status_id_str": "148838827849555970"}, +{"created_at": "Mon, 19 Dec 2011 18:55:55 +0000", "from_user": "modelQ", "from_user_id": 35676441, "from_user_id_str": "35676441", "from_user_name": "Que", "geo": null, "id": 148838993042210800, "id_str": "148838993042210816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1663455267/Colormebad_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663455267/Colormebad_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "It's way too cold to Christmas shop in NYC. I'm doing my shopping online!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:55 +0000", "from_user": "CharleyBruns", "from_user_id": 47800868, "from_user_id_str": "47800868", "from_user_name": "Charles Bruns", "geo": null, "id": 148838991507107840, "id_str": "148838991507107840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1497636060/CBruns8-11T_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1497636060/CBruns8-11T_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Why did someone strike young guy early SundayAM & leave him outside #Saloon by 83rd&York 4 EMT 2 hospitalize? #nyc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:55 +0000", "from_user": "agt143", "from_user_id": 223291792, "from_user_id_str": "223291792", "from_user_name": "Graciee(:", "geo": null, "id": 148838989414150140, "id_str": "148838989414150144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1397778017/003_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1397778017/003_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@lillieLRH first he's probs not comming to NC and 2nd hes gonna be in boston on my birthday, but i cant go cause im goin to nyc the next day", "to_user": "LillieLRH", "to_user_id": 124316813, "to_user_id_str": "124316813", "to_user_name": "\\u24C1\\u24D8\\u24DB\\u24DB\\u24D8\\u24D4 \\u2661"}, +{"created_at": "Mon, 19 Dec 2011 18:55:51 +0000", "from_user": "KelSpencer", "from_user_id": 17512390, "from_user_id_str": "17512390", "from_user_name": "K\\u03BEL SP\\u03BENC\\u03BER", "geo": null, "id": 148838974436290560, "id_str": "148838974436290560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690344059/331404218_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690344059/331404218_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @ciphasounds: NYC support @KelSpencer's Live Charity Show #JingleBellRocks 2MORO Dec 20th\\u00BB http://t.co/SCGnDi6J & http://t.co/UW5SnCo3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:51 +0000", "from_user": "xxxtiffanyfox", "from_user_id": 413887459, "from_user_id_str": "413887459", "from_user_name": "Tiffany Fox", "geo": null, "id": 148838974151069700, "id_str": "148838974151069697", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1656740750/tiffanydgore_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656740750/tiffanydgore_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@YungLost_Rebel maybe next time or if you happen to see me around. I actually want to go to NYC again I love shopping out there", "to_user": "YungLost_Rebel", "to_user_id": 76770147, "to_user_id_str": "76770147", "to_user_name": "Mar ", "in_reply_to_status_id": 148838569287499780, "in_reply_to_status_id_str": "148838569287499776"}, +{"created_at": "Mon, 19 Dec 2011 18:55:48 +0000", "from_user": "juliexanna", "from_user_id": 257294428, "from_user_id_str": "257294428", "from_user_name": "JULiANNA", "geo": null, "id": 148838960943214600, "id_str": "148838960943214592", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692416000/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692416000/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @juanieboy22 @juliexanna La chica de mis sue\\u00F1os. \\u00BFC\\u00F3mo etas? <<check you outttt :P you are the biggest slacker! come to NYC with @tikamo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:48 +0000", "from_user": "TizzleSTX", "from_user_id": 78043547, "from_user_id_str": "78043547", "from_user_name": "STX Lacrosse", "geo": null, "id": 148838960406335500, "id_str": "148838960406335488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1376430156/STXredboxTwitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1376430156/STXredboxTwitter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Evank37 the patent leather ones @KyleHarrison18 got in NYC?", "to_user": "Evank37", "to_user_id": 70412282, "to_user_id_str": "70412282", "to_user_name": "Evan Kay", "in_reply_to_status_id": 148827719860359170, "in_reply_to_status_id_str": "148827719860359168"}, +{"created_at": "Mon, 19 Dec 2011 18:55:41 +0000", "from_user": "HOMMEEY", "from_user_id": 199506716, "from_user_id_str": "199506716", "from_user_name": "Henry", "geo": null, "id": 148838934653308930, "id_str": "148838934653308928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701526332/SHIT_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701526332/SHIT_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @vmagazine: Stream \"Liquorice\" \\u266C the new track from NYC rapper @AZEALIABANKS http://t.co/RYjCwZgK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:41 +0000", "from_user": "toniasTAN", "from_user_id": 356607089, "from_user_id_str": "356607089", "from_user_name": "tonia krusch", "geo": null, "id": 148838933151748100, "id_str": "148838933151748096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627211891/beach_novemeber_5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627211891/beach_novemeber_5_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Zbabez34 I'm in NYC #thinkingofyou", "to_user": "Zbabez34", "to_user_id": 131023486, "to_user_id_str": "131023486", "to_user_name": "Miss Zamora \\u270C"}, +{"created_at": "Mon, 19 Dec 2011 18:55:41 +0000", "from_user": "JoseakaHova", "from_user_id": 29736617, "from_user_id_str": "29736617", "from_user_name": "Hova The God", "geo": null, "id": 148838931125903360, "id_str": "148838931125903360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682783005/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682783005/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Just touched down. NYC what's good??", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:39 +0000", "from_user": "DjanarkiBx", "from_user_id": 352468801, "from_user_id_str": "352468801", "from_user_name": "DJ_ANARKI", "geo": null, "id": 148838924767346700, "id_str": "148838924767346688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1647690938/ProfilePhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647690938/ProfilePhoto_normal.png", "source": "<a href="http://www.osfoora.com" rel="nofollow">Osfoora for iPhone</a>", "text": "Lol boost mobile RT @DjManiatiko: Anyone know where I can buy a Simple Mobile phone in nyc???", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:38 +0000", "from_user": "lpolicaro", "from_user_id": 28113118, "from_user_id_str": "28113118", "from_user_name": "Lina Policaro", "geo": null, "id": 148838920019382270, "id_str": "148838920019382272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1353667009/LPcrop_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1353667009/LPcrop_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "One week till #NYC. @MatBunny & #VR, if you think I am not going ape-shit in Kiki de Montparnasse, you got another thing coming!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:35 +0000", "from_user": "angelwings202", "from_user_id": 172880938, "from_user_id_str": "172880938", "from_user_name": "Angela", "geo": null, "id": 148838909562990600, "id_str": "148838909562990592", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1623126782/IMG_20110718_101045_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1623126782/IMG_20110718_101045_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Goodbye NYC hello Orlando", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:34 +0000", "from_user": "Koreanaa_Beauty", "from_user_id": 411869676, "from_user_id_str": "411869676", "from_user_name": "rebecca lee", "geo": null, "id": 148838902520746000, "id_str": "148838902520745985", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700575855/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700575855/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Maybe I'll see yu around lol :) RT \\u201C@FLOWP2ENT: @Koreanaa_Beauty yup, uptown nyc =)\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:32 +0000", "from_user": "mjetienne", "from_user_id": 30540758, "from_user_id_str": "30540758", "from_user_name": "Marie", "geo": null, "id": 148838893251346430, "id_str": "148838893251346432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1574005585/just_20me_204_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1574005585/just_20me_204_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#apartment #nyc Magazine Living: In Good Company... - The all-American characters of Gary and Elaine have wormed the... http://t.co/tPbZovRK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:31 +0000", "from_user": "PinkberryMiley", "from_user_id": 204920819, "from_user_id_str": "204920819", "from_user_name": "hardcore smi\\u2113er. \\u2654", "geo": null, "id": 148838890147549200, "id_str": "148838890147549184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701972845/475527642_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701972845/475527642_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ArianaGrande: If you're coming to my show on December 28 at @IrvingPlaza in NYC and want to come meet me after, here's how: http://t.co/1w7eeLFq! xoxo RT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:55:32 +0000", "from_user": "mjetienne", "from_user_id": 30540758, "from_user_id_str": "30540758", "from_user_name": "Marie", "geo": null, "id": 148838893251346430, "id_str": "148838893251346432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1574005585/just_20me_204_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1574005585/just_20me_204_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#apartment #nyc Magazine Living: In Good Company... - The all-American characters of Gary and Elaine have wormed the... http://t.co/tPbZovRK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:31 +0000", "from_user": "PinkberryMiley", "from_user_id": 204920819, "from_user_id_str": "204920819", "from_user_name": "hardcore smi\\u2113er. \\u2654", "geo": null, "id": 148838890147549200, "id_str": "148838890147549184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701972845/475527642_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701972845/475527642_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ArianaGrande: If you're coming to my show on December 28 at @IrvingPlaza in NYC and want to come meet me after, here's how: http://t.co/1w7eeLFq! xoxo RT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:30 +0000", "from_user": "jessiannjackson", "from_user_id": 230255078, "from_user_id_str": "230255078", "from_user_name": "Jessica Jackson", "geo": null, "id": 148838888184614900, "id_str": "148838888184614912", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1654071865/w66TX81k_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654071865/w66TX81k_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@alex_mcneil are you in NYC modeling?", "to_user": "alex_mcneil", "to_user_id": 172102823, "to_user_id_str": "172102823", "to_user_name": "Alex McNeil", "in_reply_to_status_id": 148838541332455420, "in_reply_to_status_id_str": "148838541332455424"}, +{"created_at": "Mon, 19 Dec 2011 18:55:29 +0000", "from_user": "SELFDietTapper", "from_user_id": 355602294, "from_user_id_str": "355602294", "from_user_name": "SELFDietTapper", "geo": null, "id": 148838881691844600, "id_str": "148838881691844608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1496771037/tapper_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1496771037/tapper_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @SELFmagazine: Callin' all NYC foodies - love healthy (and free) food? Be an @SELFmagazine Healthy Food Awards tester at http://t.co/PbyorXJI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:29 +0000", "from_user": "LIKKZ1", "from_user_id": 379666601, "from_user_id_str": "379666601", "from_user_name": "LIKKZ", "geo": null, "id": 148838880257380350, "id_str": "148838880257380352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1558990513/CRIPS_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1558990513/CRIPS_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "NYC IS BUSY ALL DA TIME MAAN. THE CITY THAT NEVER SLEEPS.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:28 +0000", "from_user": "VinNice1", "from_user_id": 74707033, "from_user_id_str": "74707033", "from_user_name": "Vinny", "geo": null, "id": 148838879540154370, "id_str": "148838879540154369", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1684653080/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684653080/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@potionnumbr9 omw to NYC wat time u get out?", "to_user": "potionnumbr9", "to_user_id": 238844962, "to_user_id_str": "238844962", "to_user_name": " F.L.Y ", "in_reply_to_status_id": 148835572381786100, "in_reply_to_status_id_str": "148835572381786112"}, +{"created_at": "Mon, 19 Dec 2011 18:55:28 +0000", "from_user": "RuderFinn", "from_user_id": 138128358, "from_user_id_str": "138128358", "from_user_name": "Ruder Finn ", "geo": null, "id": 148838876125995000, "id_str": "148838876125995011", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1384483228/ruder_logo_color_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1384483228/ruder_logo_color_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "We\\u2019re donating care products to Midnight Run, a great organization that supports NYC's homeless population. http://t.co/RPHFqL0f #RFCares", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:25 +0000", "from_user": "AlexMenDiesel", "from_user_id": 102726818, "from_user_id_str": "102726818", "from_user_name": "Alex Mendez", "geo": null, "id": 148838864503582720, "id_str": "148838864503582720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1659225712/199665_10150420251985024_700565023_17439259_8269876_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659225712/199665_10150420251985024_700565023_17439259_8269876_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Newport to springfield to boston to providence .. NYC next ?? #WhyNot", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:24 +0000", "from_user": "TomsTravelTweet", "from_user_id": 403636401, "from_user_id_str": "403636401", "from_user_name": "Tom Faries", "geo": null, "id": 148838863308210180, "id_str": "148838863308210176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1619280658/tumblr_lt9yhfkfva1qfze4lo1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619280658/tumblr_lt9yhfkfva1qfze4lo1_500_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "can't wait for my own upcoming travel. San Francisco>Palm Beach, FL, St. Pete, FL>NYC>SF with stays at the Ritz and Morgan's Royalton", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:23 +0000", "from_user": "StylinBiebs2013", "from_user_id": 164458657, "from_user_id_str": "164458657", "from_user_name": "\\u2133\\u212F\\u03B1\\u210A\\u03B1\\u03B7 ", "geo": null, "id": 148838858413445120, "id_str": "148838858413445120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695180116/381136_2040492030210_1781601862_1337339_2009830987_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695180116/381136_2040492030210_1781601862_1337339_2009830987_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NYC has all this hope that they are going to win the event from 1D. lol girls keep dreaming.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:20 +0000", "from_user": "gigs4NYC", "from_user_id": 432221780, "from_user_id_str": "432221780", "from_user_name": "New York City gigs", "geo": null, "id": 148838846308691970, "id_str": "148838846308691968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1682411666/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682411666/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#gigs4u #gigs looking for Inshape Male (queens) http://t.co/MR2mhwvE #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:20 +0000", "from_user": "gigs4NYC", "from_user_id": 432221780, "from_user_id_str": "432221780", "from_user_name": "New York City gigs", "geo": null, "id": 148838845281075200, "id_str": "148838845281075200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1682411666/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682411666/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#gigs4u #gigs workout accountability http://t.co/mFqmPsjF #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:20 +0000", "from_user": "gigs4NYC", "from_user_id": 432221780, "from_user_id_str": "432221780", "from_user_name": "New York City gigs", "geo": null, "id": 148838844261863420, "id_str": "148838844261863424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1682411666/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682411666/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#gigs4u #gigs DIRECTOR CASTING NEW YORK VIDEO SHOOT (Midtown) http://t.co/OEkPyqMZ #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:20 +0000", "from_user": "gigs4NYC", "from_user_id": 432221780, "from_user_id_str": "432221780", "from_user_name": "New York City gigs", "geo": null, "id": 148838843016163330, "id_str": "148838843016163329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1682411666/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682411666/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#gigs4u #gigs Pantyhose-Nylon-Stockings fun gig with open minded gal today (New York) http://t.co/aihFhdGj #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:19 +0000", "from_user": "gigs4NYC", "from_user_id": 432221780, "from_user_id_str": "432221780", "from_user_name": "New York City gigs", "geo": null, "id": 148838842105999360, "id_str": "148838842105999360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1682411666/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682411666/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#gigs4u #gigs Thin, Bright,Enthusiastic Gal? (NYC) http://t.co/WhVJYSF2 #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:19 +0000", "from_user": "louisbrice", "from_user_id": 16610140, "from_user_id_str": "16610140", "from_user_name": "Louis Middleton", "geo": null, "id": 148838841367793660, "id_str": "148838841367793664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1579341629/IMAG0793_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1579341629/IMAG0793_normal.jpg", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "RT @VisionSisters Hey friends! Check out this video from @Zanderbleck show last night in NYC! INCREDIBLE! :) http://t.co/4Y8CwSrG Thanks!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:18 +0000", "from_user": "GreenEyedLilo", "from_user_id": 119758837, "from_user_id_str": "119758837", "from_user_name": "Jayelle ", "geo": null, "id": 148838836762460160, "id_str": "148838836762460161", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1213351691/a6e00d30-383d-40a1-917a-35ef57632c7a_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1213351691/a6e00d30-383d-40a1-917a-35ef57632c7a_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @TalibKweli: RT @DJBOBBYTRENDS: NEW MUSIC: @TalibKweli - \"Distractions\" http://t.co/2sxPsKjc (NYC needs this on the radio Bobby holla!)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:18 +0000", "from_user": "hughwarmisham", "from_user_id": 41667480, "from_user_id_str": "41667480", "from_user_name": "Hugh Warmisham", "geo": null, "id": 148838834203930620, "id_str": "148838834203930624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1510259497/Hugh2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1510259497/Hugh2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "Baron Davis and now rumours of Gilbert Arenas?! How many PG do the #knicks need? #NYC #NBA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:16 +0000", "from_user": "airlineflight", "from_user_id": 169563061, "from_user_id_str": "169563061", "from_user_name": "Besty Flight", "geo": null, "id": 148838826943586300, "id_str": "148838826943586304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1089980851/airplane_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1089980851/airplane_normal.jpg", "source": "<a href="http://www.visibli.com" rel="nofollow">Visibli</a>", "text": "Business class airline Odyssey plans London-NYC route: Bankers may be languishing in popularity polls but a new ... http://t.co/S1bkyOsZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:15 +0000", "from_user": "SanctuaryHotel_", "from_user_id": 227470413, "from_user_id_str": "227470413", "from_user_name": "Sanctuary Hotel NYC", "geo": null, "id": 148838822250168320, "id_str": "148838822250168320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1394522399/Sanctuary_Logo_brown_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1394522399/Sanctuary_Logo_brown_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Only a few days left for this Christmas Sale on Room Rates! Book Now! http://t.co/27tJSyWv \\n\\nSAVE BIG before the Holidays! #NYC #TRAVEL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:14 +0000", "from_user": "jennnpappas", "from_user_id": 216889295, "from_user_id_str": "216889295", "from_user_name": "Jennifer Pappas", "geo": null, "id": 148838821298053120, "id_str": "148838821298053120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1649662856/386066_2320315011330_1353180096_32402908_1573265025_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649662856/386066_2320315011330_1353180096_32402908_1573265025_n_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "RT @BarstoolNewYork: > \\u00BB Upstate High School Cancels Dance Because They Can\\u2019t Stop Grinding http://t.co/7Z8pcfuf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:13 +0000", "from_user": "invictus_99", "from_user_id": 275901193, "from_user_id_str": "275901193", "from_user_name": "Tami", "geo": null, "id": 148838816239730700, "id_str": "148838816239730688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677862149/invictus99media2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677862149/invictus99media2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@Cross_X_Bones @OccupyLA I'm reading them now. It's mind blowing. Link here if anyone wants to read: http://t.co/7NAzvh99 #ows", "to_user": "Cross_X_Bones", "to_user_id": 399245268, "to_user_id_str": "399245268", "to_user_name": "Sky Adams", "in_reply_to_status_id": 148838577474773000, "in_reply_to_status_id_str": "148838577474772993"}, +{"created_at": "Mon, 19 Dec 2011 18:55:13 +0000", "from_user": "DTLAL", "from_user_id": 41507212, "from_user_id_str": "41507212", "from_user_name": "DTLAL MAGAZINE ", "geo": null, "id": 148838815405056000, "id_str": "148838815405056000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/223870296/BUL3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/223870296/BUL3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "FAIZA KHAN Artist. http://t.co/SIp5rM5U Always Something Different! #dtla #art #culture #sf #oc #irvine #sac #nyc #brooklyn #detroit #dallas", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:12 +0000", "from_user": "BrooklynNearSay", "from_user_id": 312303637, "from_user_id_str": "312303637", "from_user_name": "Brooklyn NearSay", "geo": null, "id": 148838811173007360, "id_str": "148838811173007360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1384898420/NEARSAY_logo-redblack_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1384898420/NEARSAY_logo-redblack_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Best #XmasEve Dinner Specials in #Brooklyn : #CobbleHill & #CarrollGardens http://t.co/FxFbBHSG #nyc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:12 +0000", "from_user": "ibby2015", "from_user_id": 247210411, "from_user_id_str": "247210411", "from_user_name": "Ibrahim Darwish", "geo": null, "id": 148838810803900400, "id_str": "148838810803900417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1628181749/IMG_0617_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628181749/IMG_0617_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Chillin in NYC!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:11 +0000", "from_user": "KaioLeonardo", "from_user_id": 25905386, "from_user_id_str": "25905386", "from_user_name": "Kaio Leonardo \\uF8FF", "geo": null, "id": 148838806743810050, "id_str": "148838806743810048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1638429200/IMG_0884_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638429200/IMG_0884_copy_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "Rockefeller Center, NYC #ChristmasTree http://t.co/OjV36vFC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:10 +0000", "from_user": "BrooklynNearSay", "from_user_id": 312303637, "from_user_id_str": "312303637", "from_user_name": "Brooklyn NearSay", "geo": null, "id": 148838800964071420, "id_str": "148838800964071427", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1384898420/NEARSAY_logo-redblack_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1384898420/NEARSAY_logo-redblack_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Best #ChristmasEve Dinner Specials in #Brooklyn : #CobbleHill & #CarrollGardens http://t.co/3He4rfWp #nyc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:09 +0000", "from_user": "BreaKBeatJunkEE", "from_user_id": 157793503, "from_user_id_str": "157793503", "from_user_name": "Bobby Anonolulz", "geo": null, "id": 148838796773953540, "id_str": "148838796773953538", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1638335954/318561_2598109795103_1325507200_2916335_753611155_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638335954/318561_2598109795103_1325507200_2916335_753611155_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Timcast: This is a message to the trolls. I have spent 0$ in donations and I am homeless in NYC. I will keep streaming! :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:06 +0000", "from_user": "Natalie_Cake", "from_user_id": 205288366, "from_user_id_str": "205288366", "from_user_name": "Natalie Cake", "geo": null, "id": 148838780315516930, "id_str": "148838780315516928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1148775968/NCP-STARtextured_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1148775968/NCP-STARtextured_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Camera on iOS</a>", "text": "#NYC. Walking to B&H shooting with the #bestcamera http://t.co/2W87F2UM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:02 +0000", "from_user": "cbcny", "from_user_id": 270495679, "from_user_id_str": "270495679", "from_user_name": "Citizens Budget Comm", "geo": null, "id": 148838771142565900, "id_str": "148838771142565888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1296079410/CBC_ColorLogo1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1296079410/CBC_ColorLogo1_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Only .7% of people in #NYC metro report \"engineer\" as their occupation. San Jose metro: 3.1% http://t.co/siOqmiTc #appscinyc #cornell", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:01 +0000", "from_user": "daRealRoberto", "from_user_id": 87794845, "from_user_id_str": "87794845", "from_user_name": "ROBERTO", "geo": null, "id": 148838764305854460, "id_str": "148838764305854465", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1611242662/daRealRoberto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611242662/daRealRoberto_normal.jpg", "source": "<a href="http://getsocialscope.com" rel="nofollow">SocialScope</a>", "text": "I knw you don't do events but I got some great venues in nyc for new years eve waddup? @emdot_p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:59 +0000", "from_user": "dgskincare", "from_user_id": 44931033, "from_user_id_str": "44931033", "from_user_name": "Dr. Dennis Gross ", "geo": null, "id": 148838756454109200, "id_str": "148838756454109184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1190495945/dg_logo_og_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1190495945/dg_logo_og_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Its cold in NYC today!! must moisturize even more this time of year", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:59 +0000", "from_user": "KailynHype", "from_user_id": 152426883, "from_user_id_str": "152426883", "from_user_name": "Kailyn Brown", "geo": null, "id": 148838756433141760, "id_str": "148838756433141760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662822629/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662822629/image_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @AndreasHale: Going to a hip hop show in NYC vs going to one in Vegas are totally different experiences. Vegas is too cool to learn about dope music.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:58 +0000", "from_user": "howesaaron", "from_user_id": 315351426, "from_user_id_str": "315351426", "from_user_name": "Aaron Howes", "geo": null, "id": 148838754092728320, "id_str": "148838754092728322", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1391611611/DSC_0202_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1391611611/DSC_0202_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @democracynow: Occupy Wall Street NYC marks 3-month anniversary with re-occupation attempt, dozens arrested. http://t.co/jK0sLcnw #ows", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:58 +0000", "from_user": "jill_grubz", "from_user_id": 27788103, "from_user_id_str": "27788103", "from_user_name": "Jillian Gruber", "geo": null, "id": 148838751202844670, "id_str": "148838751202844672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1336070020/IMG_5927_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1336070020/IMG_5927_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "who's in NYC????????", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:58 +0000", "from_user": "stupidDOPE", "from_user_id": 16607099, "from_user_id_str": "16607099", "from_user_name": "stupidDOPE.com", "geo": null, "id": 148838751165095940, "id_str": "148838751165095936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1343364819/stupiddopered_nublock2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1343364819/stupiddopered_nublock2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Collection @ 20 Pine Residences \\u2013 NYC, New York http://t.co/MM4mQSZs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:58 +0000", "from_user": "briahh_", "from_user_id": 385102819, "from_user_id_str": "385102819", "from_user_name": "Beauty.", "geo": null, "id": 148838751039266800, "id_str": "148838751039266816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694732414/briahh__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694732414/briahh__normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "And you better come visit me while youre here! \\u263ART @SissyGolden: Excited for new years ! \\u2764 NYC with her \\uD83D\\uDE18", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:57 +0000", "from_user": "DORETEL", "from_user_id": 24842037, "from_user_id_str": "24842037", "from_user_name": "DORETEL.com", "geo": null, "id": 148838749726449660, "id_str": "148838749726449665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/141401459/DORETEL_Logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/141401459/DORETEL_Logo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Collection @ 20 Pine Residences \\u2013 NYC, New York http://t.co/PzJTWume via @stupidDOPE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:57 +0000", "from_user": "soulMETHOD", "from_user_id": 22668187, "from_user_id_str": "22668187", "from_user_name": "soulMETHOD", "geo": null, "id": 148838748824674300, "id_str": "148838748824674305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/743207988/Medicom_Matt_Black_Diamond_stupid_DOPE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/743207988/Medicom_Matt_Black_Diamond_stupid_DOPE_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Collection @ 20 Pine Residences \\u2013 NYC, New York http://t.co/ovqmGo8K via @stupidDOPE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:57 +0000", "from_user": "ShaneBreen", "from_user_id": 24314103, "from_user_id_str": "24314103", "from_user_name": "Shane Breen", "geo": null, "id": 148838747276967940, "id_str": "148838747276967937", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/550392022/n1238769707_7811_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/550392022/n1238769707_7811_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Collection @ 20 Pine Residences \\u2013 NYC, New York http://t.co/TOucJ1JE via @stupidDOPE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:57 +0000", "from_user": "selectohits", "from_user_id": 30264170, "from_user_id_str": "30264170", "from_user_name": "Select-O-Hits ", "geo": null, "id": 148838746811408400, "id_str": "148838746811408384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1325025470/OldSOH_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1325025470/OldSOH_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @esnavi: Check this video out -- ESNAVI 'UNEXPECTED LOVE' LIVE @ REBEL NYC http://t.co/jMBwAoFq via @youtube", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:56 +0000", "from_user": "tabloidguru", "from_user_id": 48933019, "from_user_id_str": "48933019", "from_user_name": "Tirrell Hill ", "geo": null, "id": 148838741832769540, "id_str": "148838741832769537", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1638896324/DSCN1596_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638896324/DSCN1596_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Collection @ 20 Pine Residences \\u2013 NYC, New York http://t.co/ONClm9W9 @stupidDOPE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:55 +0000", "from_user": "CaitPlusAte", "from_user_id": 377384787, "from_user_id_str": "377384787", "from_user_name": "Caitlin Croswell", "geo": null, "id": 148838741677588480, "id_str": "148838741677588480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1601863512/headshot_-_caitlin_croswell_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601863512/headshot_-_caitlin_croswell_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @SELFmagazine: Callin' all NYC foodies - love healthy (and free) food? Be an @SELFmagazine Healthy Food Awards tester at http://t.co/PbyorXJI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:55 +0000", "from_user": "hitomiwa1", "from_user_id": 175942535, "from_user_id_str": "175942535", "from_user_name": "pori tsubasa", "geo": null, "id": 148838740394115070, "id_str": "148838740394115072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1370211074/06-hikaru_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1370211074/06-hikaru_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NYC new song remind of songs we used to listen in out childhood .i love it http://t.co/buXdRBNx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:54 +0000", "from_user": "BunkeyTheTim", "from_user_id": 54274022, "from_user_id_str": "54274022", "from_user_name": "Tim Weidemann", "geo": null, "id": 148838735935586300, "id_str": "148838735935586304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/305867505/Ralphie_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/305867505/Ralphie_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Secretary of State Perales Announces Recipients of Workforce Development Grants in 10 Communities in NYC Area: S... http://t.co/cKbyRnEq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:51 +0000", "from_user": "VinNice1", "from_user_id": 74707033, "from_user_id_str": "74707033", "from_user_name": "Vinny", "geo": null, "id": 148838723956650000, "id_str": "148838723956649984", "iso_language_code": "fi", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1684653080/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684653080/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@potionnumbr9 omw to NYC", "to_user": "potionnumbr9", "to_user_id": 238844962, "to_user_id_str": "238844962", "to_user_name": " F.L.Y ", "in_reply_to_status_id": 148835572381786100, "in_reply_to_status_id_str": "148835572381786112"}, +{"created_at": "Mon, 19 Dec 2011 18:54:49 +0000", "from_user": "MrSwaggLady", "from_user_id": 317207574, "from_user_id_str": "317207574", "from_user_name": "Oarabile Tackel", "geo": null, "id": 148838714808872960, "id_str": "148838714808872960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701638018/peuf_20110926_15_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701638018/peuf_20110926_15_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @HipHopPantsula: \\u201C@BotsheloHuma: Finally today ke jele sphatlho after years \\u263A\\u201D Hadiyo diphatlho ko NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:48 +0000", "from_user": "madiiis0nn", "from_user_id": 260898706, "from_user_id_str": "260898706", "from_user_name": "Madison Keck", "geo": +{"coordinates": [40.7542,-73.9768], "type": "Point"}, "id": 148838711814135800, "id_str": "148838711814135808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1262111763/100_0854-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1262111763/100_0854-1_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Leaving NYC #sosad.. I could seriously live here", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:45 +0000", "from_user": "_Victorrrr", "from_user_id": 34770852, "from_user_id_str": "34770852", "from_user_name": "Victor c", "geo": null, "id": 148838697578668030, "id_str": "148838697578668032", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1654944732/330307538_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654944732/330307538_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Camera on iOS</a>", "text": "RT @bryanboy: Ciao nyc http://t.co/giInNWb9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:45 +0000", "from_user": "COOLPHICOOL", "from_user_id": 51839690, "from_user_id_str": "51839690", "from_user_name": "KWAME STARKS ", "geo": null, "id": 148838697444454400, "id_str": "148838697444454400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680080759/tumblr_lvtvzcUSnh1qbwinqo1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680080759/tumblr_lvtvzcUSnh1qbwinqo1_500_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for iPhone</a>", "text": "NYE in NYC #CONFIRMED .....fvck it let's get it then.......", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:44 +0000", "from_user": "anthousaa", "from_user_id": 314255198, "from_user_id_str": "314255198", "from_user_name": "Anthie Oberle", "geo": null, "id": 148838692348375040, "id_str": "148838692348375040", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1642797872/Photo_63_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642797872/Photo_63_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "NYC haanginn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:43 +0000", "from_user": "alantduong", "from_user_id": 390489653, "from_user_id_str": "390489653", "from_user_name": "Alan Duong", "geo": null, "id": 148838691358507000, "id_str": "148838691358507008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657409601/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657409601/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I love NYC but its no sv RT\\u201C@mercnews: O'Brien: New York wants to steal Silicon Valley's innovation crown? Puh-leez. http://t.co/FG4MYnBw\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:42 +0000", "from_user": "Amnesia_nyc", "from_user_id": 88972853, "from_user_id_str": "88972853", "from_user_name": "Amnesia NYC", "geo": null, "id": 148838684047835140, "id_str": "148838684047835136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1607989930/WTlogoNYC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607989930/WTlogoNYC_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @DJFIRSTCHOICE: Sat, 12/31 New Years Eve the #1 Party in NYC will be @ @Amnesia_nyc Click on link for tiks http://t.co/hdhPKBId http://t.co/YaCJhROT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:41 +0000", "from_user": "Xfilespoker", "from_user_id": 15038133, "from_user_id_str": "15038133", "from_user_name": "Tom Dwyer ", "geo": null, "id": 148838681527058430, "id_str": "148838681527058432", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1598839132/218129_206450186045036_100000401691907_630491_4776751_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598839132/218129_206450186045036_100000401691907_630491_4776751_n_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "http://t.co/6bWtVfiv #Art #ModernArt #Occupy #OO #OccupyWallStreetNYC #Occupywallstreet MoMa, in New York City. Protesters march.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:39 +0000", "from_user": "NYCCLUBKING", "from_user_id": 302967450, "from_user_id_str": "302967450", "from_user_name": "Nicholas Anthony", "geo": null, "id": 148838673973116930, "id_str": "148838673973116929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1535318750/NEWTWIP_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1535318750/NEWTWIP_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Checkout all the nyc pArty pix http://t.co/2JRgDOAT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:38 +0000", "from_user": "MattyEvs10", "from_user_id": 97489631, "from_user_id_str": "97489631", "from_user_name": "Matthew Evans", "geo": null, "id": 148838670235992060, "id_str": "148838670235992066", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1549065311/afc_nard_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1549065311/afc_nard_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@kayl_munro was insane.... Was gonna go to nyc but im soo tired lol.. How work.. Im back fri... So shattered tho", "to_user": "kayl_munro", "to_user_id": 197527260, "to_user_id_str": "197527260", "to_user_name": "kayleigh munro", "in_reply_to_status_id": 148837826178453500, "in_reply_to_status_id_str": "148837826178453504"}, +{"created_at": "Mon, 19 Dec 2011 18:54:38 +0000", "from_user": "melodygross", "from_user_id": 19870273, "from_user_id_str": "19870273", "from_user_name": "Melody Gross", "geo": null, "id": 148838668877053950, "id_str": "148838668877053952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1562124949/IMG00314-20110209-0056_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1562124949/IMG00314-20110209-0056_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @nickyyates: looking for a videographer for this wednesday. whacha got nyc?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:37 +0000", "from_user": "HealthyDiva31", "from_user_id": 117567043, "from_user_id_str": "117567043", "from_user_name": "Katie Gagliano", "geo": null, "id": 148838665592905730, "id_str": "148838665592905729", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1568286119/a7ac4fac05c642bcb6b9cf814d4f5130_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1568286119/a7ac4fac05c642bcb6b9cf814d4f5130_7_normal.jpg", "source": "<a href="http://www.networkedblogs.com/" rel="nofollow">NetworkedBlogs</a>", "text": "Just { NYC } Random pics http://t.co/6qmtk3aK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:35 +0000", "from_user": "MichaelFranjul", "from_user_id": 117583511, "from_user_id_str": "117583511", "from_user_name": "Michael Franjul", "geo": null, "id": 148838655421722620, "id_str": "148838655421722624", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1388881376/247458_10150634374170402_519545401_19173383_1127855_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1388881376/247458_10150634374170402_519545401_19173383_1127855_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "NYC I fucking miss u", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:33 +0000", "from_user": "GershGroup", "from_user_id": 82765117, "from_user_id_str": "82765117", "from_user_name": "Gershon Adjaye", "geo": null, "id": 148838648035557380, "id_str": "148838648035557376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1393212062/trump_office_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1393212062/trump_office_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "Buy a property for $500k or more & we will throw in an American Visa...from NYC Developers. http://t.co/jDG0RzA8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:32 +0000", "from_user": "NURFCdina", "from_user_id": 331786203, "from_user_id_str": "331786203", "from_user_name": "Dina Bailey", "geo": null, "id": 148838641345626100, "id_str": "148838641345626113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1432633483/DinaBailey_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1432633483/DinaBailey_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "I really like #Bread&Butter market in #NYC. Two thumbs up", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:31 +0000", "from_user": "arod07", "from_user_id": 19769138, "from_user_id_str": "19769138", "from_user_name": "Alex", "geo": null, "id": 148838640146071550, "id_str": "148838640146071552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1654185965/230727_1421570614312_1084080500_31454182_7622761_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654185965/230727_1421570614312_1084080500_31454182_7622761_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@anwoodby I'm sure we will see each other somewhere in nyc lol", "to_user": "anwoodby", "to_user_id": 200763215, "to_user_id_str": "200763215", "to_user_name": "Amber Woodby", "in_reply_to_status_id": 148838421387943940, "in_reply_to_status_id_str": "148838421387943937"}, +{"created_at": "Mon, 19 Dec 2011 18:54:31 +0000", "from_user": "slysmallin", "from_user_id": 245535177, "from_user_id_str": "245535177", "from_user_name": "\\u00A7\\u043C\\u0332\\u0323\\u0323\\u00AA||\\u026A\\u0307\\u0323\\u031D\\u0438\\u0305\\u0332\\u032E\\u0323\\u0325\\u030A ", "geo": null, "id": 148838638237650940, "id_str": "148838638237650944", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702119095/J3_20clothing_20fucks_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702119095/J3_20clothing_20fucks_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Nyc movie @........................................figurine", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:31 +0000", "from_user": "canadalawyers", "from_user_id": 33803047, "from_user_id_str": "33803047", "from_user_name": "Dwayne Dustin", "geo": null, "id": 148838637449134080, "id_str": "148838637449134080", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/180730726/canada_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/180730726/canada_logo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Operative gets prison for bilking NYC mayor \\n (AP) http://t.co/JORTTEa2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:30 +0000", "from_user": "lawyersincanada", "from_user_id": 33802207, "from_user_id_str": "33802207", "from_user_name": "John Larose", "geo": null, "id": 148838636740288500, "id_str": "148838636740288512", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/180327510/canadalaw_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/180327510/canadalaw_normal.jpeg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Operative gets prison for bilking NYC mayor \\n (AP) http://t.co/a1nPi3Zj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:29 +0000", "from_user": "americanlawyers", "from_user_id": 33808949, "from_user_id_str": "33808949", "from_user_name": "Harry Stan", "geo": null, "id": 148838632298520580, "id_str": "148838632298520576", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/295206085/american-eagle-and-flag-ii_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/295206085/american-eagle-and-flag-ii_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Operative gets prison for bilking NYC mayor \\n (AP) http://t.co/FDKKVLxb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:29 +0000", "from_user": "IamSheree", "from_user_id": 47010589, "from_user_id_str": "47010589", "from_user_name": "Shere\\u00E8 Whitfield", "geo": null, "id": 148838631027642370, "id_str": "148838631027642370", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/624717839/sheree_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/624717839/sheree_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @peakpublicity: Followers in nyc make sure you listen in to @WLBS with @egpytsaidso @iamSheree", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:25 +0000", "from_user": "vmagazine", "from_user_id": 25326324, "from_user_id_str": "25326324", "from_user_name": "V Magazine", "geo": null, "id": 148838612862115840, "id_str": "148838612862115841", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/115187244/vlogosquare_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/115187244/vlogosquare_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Stream \"Liquorice\" \\u266C the new track from NYC rapper @AZEALIABANKS http://t.co/RYjCwZgK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:23 +0000", "from_user": "niquab", "from_user_id": 33158773, "from_user_id_str": "33158773", "from_user_name": "niqua b", "geo": null, "id": 148838607560507400, "id_str": "148838607560507392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1508850563/profile_image_1314053152673_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1508850563/profile_image_1314053152673_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "OMW TO JERSEY THEN TO NYC THEN BACK TO BMORE....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:21 +0000", "from_user": "SELFmagazine", "from_user_id": 23798922, "from_user_id_str": "23798922", "from_user_name": "SELF Magazine", "geo": null, "id": 148838596831494140, "id_str": "148838596831494144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1184834370/twitterpink_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1184834370/twitterpink_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Callin' all NYC foodies - love healthy (and free) food? Be an @SELFmagazine Healthy Food Awards tester at http://t.co/PbyorXJI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:19 +0000", "from_user": "FlyboySapp", "from_user_id": 297091912, "from_user_id_str": "297091912", "from_user_name": "Ryan Sapp", "geo": null, "id": 148838589235601400, "id_str": "148838589235601409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695655828/nFSLfDCg_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695655828/nFSLfDCg_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@MsDenverBRONC0S: Just saw this girl with long chin hairs....I'm scared.\" I saw a women in nyc this weekend with a lined up stash.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:19 +0000", "from_user": "shliles", "from_user_id": 19172701, "from_user_id_str": "19172701", "from_user_name": "Sarah Liles", "geo": null, "id": 148838583585869820, "id_str": "148838583585869824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/132758937/P1010286_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/132758937/P1010286_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Photos on iOS</a>", "text": "Under NYC subway! What fun! http://t.co/5reN1yzp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:17 +0000", "from_user": "DavidYYoung", "from_user_id": 34712548, "from_user_id_str": "34712548", "from_user_name": "David", "geo": null, "id": 148838581564211200, "id_str": "148838581564211201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/179782127/GrandBohem_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/179782127/GrandBohem_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Excited about getting out of the city for a bit. NYC>TPA>ORL>F.Myers>TPA>ORL>TPA. All in 7 days.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:16 +0000", "from_user": "LifeNews", "from_user_id": 40037062, "from_user_id_str": "40037062", "from_user_name": "Life News", "geo": null, "id": 148838578112299000, "id_str": "148838578112299009", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/212093548/twitter-icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/212093548/twitter-icon_normal.jpg", "source": "<a href="http://www.socialflow.com" rel="nofollow">SocialFlow</a>", "text": "Veteran character actor Dan Frazer, best known as Capt. McNeil in 'Kojak,' dies in NYC ... http://t.co/KixPGcwM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:15 +0000", "from_user": "renelopez20", "from_user_id": 147306594, "from_user_id_str": "147306594", "from_user_name": "Rene Lopez", "geo": null, "id": 148838573590847500, "id_str": "148838573590847488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1616745280/renelopez20_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616745280/renelopez20_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Why didn't i go to this event @swedishousemfia in NYC. Shit looked so epic #fuck lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:15 +0000", "from_user": "DJFIRSTCHOICE", "from_user_id": 24989329, "from_user_id_str": "24989329", "from_user_name": "DJ FirstChoice", "geo": null, "id": 148838569966968830, "id_str": "148838569966968832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676230390/2__9_of_244__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676230390/2__9_of_244__normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Sat, 12/31 New Years Eve the #1 Party in NYC will be @ @Amnesia_nyc Click on link for tiks http://t.co/hdhPKBId http://t.co/YaCJhROT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:12 +0000", "from_user": "jphmathieu", "from_user_id": 28148474, "from_user_id_str": "28148474", "from_user_name": "J-Philippe MATHIEU", "geo": null, "id": 148838558210338800, "id_str": "148838558210338816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1240303255/jp_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1240303255/jp_normal.jpg", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "New York City #pictures \\u2022 http://t.co/RJQVSBVa #NYC #Photography", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:10 +0000", "from_user": "KAZHARGAN", "from_user_id": 61176793, "from_user_id_str": "61176793", "from_user_name": "KAZHARGAN JAZZ", "geo": null, "id": 148838550052421630, "id_str": "148838550052421634", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1663888952/kjc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663888952/kjc_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\\u041D\\u0435 \\u043F\\u0440\\u043E\\u043F\\u0443\\u0441\\u0442\\u0438\\u0442\\u0435 \\u044D\\u0442\\u043E \\u0432\\u0438\\u0434\\u0435\\u043E -- Gerry Gibbs THRASHER REUNION BAND LIVE AT Zinc Bar NYC DEC 8, 2011.. http://t.co/rninSIfq \\u0441 \\u043F\\u043E\\u043C\\u043E\\u0449\\u044C\\u044E @youtube", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:08 +0000", "from_user": "Jessica_Dennise", "from_user_id": 145867709, "from_user_id_str": "145867709", "from_user_name": "Jessica Barragan", "geo": null, "id": 148838540929794050, "id_str": "148838540929794048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1560153464/Twitcon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1560153464/Twitcon_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "At the Weill Medical College and Graduate School of Medical Sciences of Cornell University for the NYC Tech Campus Announcement!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:07 +0000", "from_user": "sarawinsor", "from_user_id": 75077770, "from_user_id_str": "75077770", "from_user_name": "Sara ", "geo": null, "id": 148838540422287360, "id_str": "148838540422287360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1406787763/pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1406787763/pic_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Absolutely cannot wait for @Kashboom triumphant return to nyc workout scene @soulcycle @dannykopel #christmasevemiracle", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:07 +0000", "from_user": "NewsInSanDiego", "from_user_id": 348989992, "from_user_id_str": "348989992", "from_user_name": "San Diego News", "geo": null, "id": 148838539432435700, "id_str": "148838539432435713", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1478950321/news_logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1478950321/news_logo_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Cornell wins NYC science-campus competition (Sign On) http://t.co/QP7usNxJ #News #SanDiego", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:05 +0000", "from_user": "WeekTips", "from_user_id": 386245868, "from_user_id_str": "386245868", "from_user_name": "WeekTips", "geo": null, "id": 148838531366793200, "id_str": "148838531366793216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1581690512/Weektips-Icon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1581690512/Weektips-Icon_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Recomendo: The Wandering Aramean - JetBlue, Singapore Airlines announce NYC interline deal http://t.co/eSGdx8Gq #Dicas @weektips", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:03 +0000", "from_user": "OccupyWeather", "from_user_id": 400559295, "from_user_id_str": "400559295", "from_user_name": "Occupy Weather", "geo": null, "id": 148838521791201280, "id_str": "148838521791201280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1612658667/ows_retreats_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612658667/ows_retreats_normal.jpg", "source": "<a href="http://24Ahead.com/" rel="nofollow">OccupyWeather</a>", "text": "Forecast for NYC Wednesday night: Rain. Low temp: 40F. #OccupyWallSt #teaparty #tlot", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:02 +0000", "from_user": "MooveeHouse", "from_user_id": 436953783, "from_user_id_str": "436953783", "from_user_name": "Moovee House", "geo": null, "id": 148838517953396740, "id_str": "148838517953396736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693399791/CowFace_normal.jpg", "profile_image_url_https": null, "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @TomCruise: Tom answers your questions at the NYC M:I-@GhostProtocol Premiere 2night! Submit (cont) http://t.co/STUSM2fF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:02 +0000", "from_user": "SherriPizza", "from_user_id": 92867252, "from_user_id_str": "92867252", "from_user_name": "Sherri", "geo": null, "id": 148838515768172540, "id_str": "148838515768172545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1574607998/4672136950_2c56b1091b_s_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1574607998/4672136950_2c56b1091b_s_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Yep, saw that today. RT @MyUpperWest Coffee Bean & Tea Leaf At Amsterdam & 86th Officially Open: http://t.co/lCjRYZSu #UpperWestSide #NYC", "to_user": "MyUpperWest", "to_user_id": 47091038, "to_user_id_str": "47091038", "to_user_name": "MyUpperWest", "in_reply_to_status_id": 148838220032000000, "in_reply_to_status_id_str": "148838220032000001"}, +{"created_at": "Mon, 19 Dec 2011 18:54:01 +0000", "from_user": "OccupyWeather", "from_user_id": 400559295, "from_user_id_str": "400559295", "from_user_name": "Occupy Weather", "geo": null, "id": 148838514929315840, "id_str": "148838514929315840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1612658667/ows_retreats_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612658667/ows_retreats_normal.jpg", "source": "<a href="http://24Ahead.com/" rel="nofollow">OccupyWeather</a>", "text": "Forecast for NYC Wednesday: Thunderstorms. High temp: 62F. #OccupyWallStreet #p2 #sgp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:01 +0000", "from_user": "SissyGolden", "from_user_id": 369089811, "from_user_id_str": "369089811", "from_user_name": "GoldenChild \\u2728", "geo": null, "id": 148838513796841470, "id_str": "148838513796841474", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1621530720/Geneva_20City-20111028-00362_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621530720/Geneva_20City-20111028-00362_normal.jpg", "source": "<a href="http://www.handmark.com" rel="nofollow">TweetCaster for iOS</a>", "text": "Excited for new years ! \\u2764 NYC with her \\uD83D\\uDE18", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:01 +0000", "from_user": "ActressKMurphy", "from_user_id": 336357703, "from_user_id_str": "336357703", "from_user_name": "Katie Murphy", "geo": null, "id": 148838511271886850, "id_str": "148838511271886850", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1446119699/a36501085_31901543_642_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1446119699/a36501085_31901543_642_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@ErinCronican I'm going home to MD to see family & friends! Excited for a little NYC break. We missed you at our party the other night! :)", "to_user": "ErinCronican", "to_user_id": 60396985, "to_user_id_str": "60396985", "to_user_name": "Erin Cronican", "in_reply_to_status_id": 148785733799387140, "in_reply_to_status_id_str": "148785733799387137"}, +{"created_at": "Mon, 19 Dec 2011 18:54:00 +0000", "from_user": "dreatraxx", "from_user_id": 18949707, "from_user_id_str": "18949707", "from_user_name": "DREATRAXX ", "geo": null, "id": 148838509199892480, "id_str": "148838509199892480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1359893212/queen_dreski_1288762325_1288762337__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1359893212/queen_dreski_1288762325_1288762337__1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "WELCOME TO NYC @BARONDAVIS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:57 +0000", "from_user": "missarahnicole", "from_user_id": 27049676, "from_user_id_str": "27049676", "from_user_name": "Miss Sarah", "geo": null, "id": 148838497145462800, "id_str": "148838497145462784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685344450/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685344450/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@Timcast: This is a message to the trolls. I have spent 0$ in donations and I am homeless in NYC. I will keep streaming! :)\\u201D love this man!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:57 +0000", "from_user": "maricfly", "from_user_id": 58924604, "from_user_id_str": "58924604", "from_user_name": "Marina Cardoso", "geo": null, "id": 148838495585181700, "id_str": "148838495585181697", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699016598/385052_181696781926074_100002572590597_323263_1870336822_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699016598/385052_181696781926074_100002572590597_323263_1870336822_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@parachute = NYC haha", "to_user": "parachute", "to_user_id": 19348566, "to_user_id_str": "19348566", "to_user_name": "Parachute"}, +{"created_at": "Mon, 19 Dec 2011 18:53:55 +0000", "from_user": "Adorable_Tee", "from_user_id": 179413575, "from_user_id_str": "179413575", "from_user_name": "Simply Tammy", "geo": null, "id": 148838487154630660, "id_str": "148838487154630657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693369845/331502929_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693369845/331502929_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Ryt here dear.... Sup? Nyc avi...RT @adorabletunie: Where is @Adorable_Tee@vahldesiah???", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:54 +0000", "from_user": "achangnyc", "from_user_id": 2609231, "from_user_id_str": "2609231", "from_user_name": "Art Chang", "geo": null, "id": 148838482838683650, "id_str": "148838482838683648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/116653930/Artcrayon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/116653930/Artcrayon_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "What really happened to Stanford? Cornell will partner with NYC to build out the technology campus. http://t.co/U11lK60i", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:50 +0000", "from_user": "noahweiland", "from_user_id": 344436391, "from_user_id_str": "344436391", "from_user_name": "Noah Weiland", "geo": null, "id": 148838466095026180, "id_str": "148838466095026176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1664952969/382751_1444833121465_1252230918_31018915_2024804929_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664952969/382751_1444833121465_1252230918_31018915_2024804929_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @theGregJohnson: Thanks to everyone who came to the show Saturday night in NYC. Such a great crowd! You are all so chill. Get after it.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:49 +0000", "from_user": "KarmaLoopRepNYC", "from_user_id": 386173822, "from_user_id_str": "386173822", "from_user_name": "REPCODE: runnyc33", "geo": null, "id": 148838461334499330, "id_str": "148838461334499328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575776605/karma_loop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575776605/karma_loop_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Xmas eve at #LAVO with @dashberlin doors at 11, 21+ say kiren at the door, definitely hottest place to be Christmas eve!!! #NYC #KARMAFAM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:48 +0000", "from_user": "N_YPress", "from_user_id": 20923839, "from_user_id_str": "20923839", "from_user_name": "New York Press", "geo": null, "id": 148838456863367170, "id_str": "148838456863367168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/78541886/nypress_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/78541886/nypress_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @NoahWunsch: @Ambassadorsnyc best band in NYC right now? @N_YPress thinks so. catch them @PianosNYC this #THURSDAY http://t.co/uUdryNXP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:47 +0000", "from_user": "BeerHere2010", "from_user_id": 119502126, "from_user_id_str": "119502126", "from_user_name": "BeerHere2010 - #ADK", "geo": null, "id": 148838455592484860, "id_str": "148838455592484866", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/963230599/Pilsner_Lager_Mug_Blk_BkGnd_-_BLUEGOLD_PNT_pythagorus_smaller_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/963230599/Pilsner_Lager_Mug_Blk_BkGnd_-_BLUEGOLD_PNT_pythagorus_smaller_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @SenGillibrand: Congratulations to @Cornell_Univ for winning the competition to build an applied science campus in #NYC! http://t.co/hlGIKmrW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:46 +0000", "from_user": "arianailoveyou1", "from_user_id": 431931006, "from_user_id_str": "431931006", "from_user_name": "Ashley,Ariana e Demi", "geo": null, "id": 148838452031520770, "id_str": "148838452031520769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681635155/avatar_1d91fad47bc9_64_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681635155/avatar_1d91fad47bc9_64_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @ashleytisdale: don't worry I'll be there ;) \\u201C@juliannehough: I agree :) RT @therealHAUS: @ashleytisdale NYC for new years- make it happen girl!\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:46 +0000", "from_user": "CheapFind_NYC", "from_user_id": 281195041, "from_user_id_str": "281195041", "from_user_name": "CheapFind_NYC", "geo": null, "id": 148838451981201400, "id_str": "148838451981201408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1315464216/cheapfind-50x50_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1315464216/cheapfind-50x50_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "$10 for $20 Dog Walk Anywhere in NYC at Swifto-Dog Walking http://t.co/kAlzKleu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:46 +0000", "from_user": "ArcadiaBoutique", "from_user_id": 28156114, "from_user_id_str": "28156114", "from_user_name": "Arcadia Boutique", "geo": null, "id": 148838449942765570, "id_str": "148838449942765568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1333546879/arcadialogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1333546879/arcadialogo_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "Visit to NYC, artwork in the apartment http://t.co/5XhYfuBJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:53:43 +0000", "from_user": "ajetee", "from_user_id": 300970096, "from_user_id_str": "300970096", "from_user_name": "Aje Takon", "geo": null, "id": 148838438798491650, "id_str": "148838438798491648", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1361869504/154230_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1361869504/154230_normal.JPG", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@LostWords_ nyc 1", "to_user": "LostWords_", "to_user_id": 131962317, "to_user_id_str": "131962317", "to_user_name": "Lostone ", "in_reply_to_status_id": 148837505825914880, "in_reply_to_status_id_str": "148837505825914880"}, +{"created_at": "Mon, 19 Dec 2011 18:53:42 +0000", "from_user": "kelseyclough", "from_user_id": 100833100, "from_user_id_str": "100833100", "from_user_name": "Kelsey Clough", "geo": null, "id": 148838434130243600, "id_str": "148838434130243584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1596733642/Photo_on_2011-09-30_at_00.31_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596733642/Photo_on_2011-09-30_at_00.31_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @CornellUpdate: Cornell Wins NYC Campus Bid, Apple Execs In TV Talks, Twitter Gets $300 ... - Fast Company http://t.co/jfoZW1M1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:41 +0000", "from_user": "CheapFind_NYC", "from_user_id": 281195041, "from_user_id_str": "281195041", "from_user_name": "CheapFind_NYC", "geo": null, "id": 148838430816731140, "id_str": "148838430816731136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1315464216/cheapfind-50x50_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1315464216/cheapfind-50x50_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Greenery NYC - Orchid Terrarium http://t.co/6Dd9wLD5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:41 +0000", "from_user": "diana_anayah", "from_user_id": 262295744, "from_user_id_str": "262295744", "from_user_name": "Diana", "geo": null, "id": 148838428170125300, "id_str": "148838428170125313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1634590488/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634590488/image_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Anyone down for a roadtrip to NYC..my car but you drive?? :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:40 +0000", "from_user": "nickname_lee", "from_user_id": 54125900, "from_user_id_str": "54125900", "from_user_name": "Lee", "geo": null, "id": 148838426916028400, "id_str": "148838426916028416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696038947/rsz_dscf0806_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696038947/rsz_dscf0806_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@NicoleCiara nyc with ur crazy sister", "to_user": "NicoleCiara", "to_user_id": 144614055, "to_user_id_str": "144614055", "to_user_name": "Nicole Ciara ", "in_reply_to_status_id": 148837484074246140, "in_reply_to_status_id_str": "148837484074246144"}, +{"created_at": "Mon, 19 Dec 2011 18:53:39 +0000", "from_user": "DEADHEAD1776", "from_user_id": 278936650, "from_user_id_str": "278936650", "from_user_name": "Ryan ", "geo": null, "id": 148838421480214530, "id_str": "148838421480214529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691247409/stop_sopa_450_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691247409/stop_sopa_450_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Timcast: This is a message to the trolls. I have spent 0$ in donations and I am homeless in NYC. I will keep streaming! :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:38 +0000", "from_user": "Djkodeblue", "from_user_id": 43212506, "from_user_id_str": "43212506", "from_user_name": "kenny lucas", "geo": null, "id": 148838415297810430, "id_str": "148838415297810432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1553000740/FacebookHomescreenImage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553000740/FacebookHomescreenImage_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @VicTeam1: @Djkodeblue Dec28th it Goes Down Corduroy Jones Performing His Street Anthem \"Sicker than Your Average\" @ThePyramidClub NYC @REALLIVEENT #RT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:37 +0000", "from_user": "CheapFind_NYC", "from_user_id": 281195041, "from_user_id_str": "281195041", "from_user_name": "CheapFind_NYC", "geo": null, "id": 148838414635106300, "id_str": "148838414635106304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1315464216/cheapfind-50x50_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1315464216/cheapfind-50x50_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Greenery NYC - $75 for $125 Credit http://t.co/xEB9a0Wm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:37 +0000", "from_user": "belmonte_", "from_user_id": 22237661, "from_user_id_str": "22237661", "from_user_name": "megan bee", "geo": null, "id": 148838411879456770, "id_str": "148838411879456768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1386913013/Photo_43_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1386913013/Photo_43_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @_KristenLee: All I want is a one way ticket to NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:36 +0000", "from_user": "tnordmark", "from_user_id": 64768688, "from_user_id_str": "64768688", "from_user_name": "Taylor Nordmark, S.J", "geo": null, "id": 148838410403069950, "id_str": "148838410403069952", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1312054235/22786637_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312054235/22786637_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@mmastriano423 @SirChance http://t.co/2N2Y2bRG", "to_user": "mmastriano423", "to_user_id": 98002412, "to_user_id_str": "98002412", "to_user_name": "Matthew Mastriano"}, +{"created_at": "Mon, 19 Dec 2011 18:53:33 +0000", "from_user": "PrettyBrwnGal", "from_user_id": 335565936, "from_user_id_str": "335565936", "from_user_name": "Keri Bush", "geo": null, "id": 148838395538456580, "id_str": "148838395538456576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702605918/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702605918/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#NYC for New Years:-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:32 +0000", "from_user": "ImLuckyLefty", "from_user_id": 127086350, "from_user_id_str": "127086350", "from_user_name": " LuckyLefty, da don ", "geo": null, "id": 148838391016996860, "id_str": "148838391016996864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1651144791/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651144791/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Jumpoffs get trips to Atlanta, wifey goes to NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:31 +0000", "from_user": "LowerEastScribe", "from_user_id": 69478891, "from_user_id_str": "69478891", "from_user_name": "Lower East Scribe", "geo": null, "id": 148838386201927680, "id_str": "148838386201927680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/553896677/Me_LESHoodie_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/553896677/Me_LESHoodie_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @gamesevenmktg: #NYC - What have been some of the most EPIC Individual Player Performances in Summer Hoops History?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:30 +0000", "from_user": "HelgeGjerstad", "from_user_id": 30442831, "from_user_id_str": "30442831", "from_user_name": "Helge Gjerstad", "geo": null, "id": 148838383618228220, "id_str": "148838383618228224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1639446201/HELGE_GJERSTAD_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639446201/HELGE_GJERSTAD_1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Last day in NYC! Now: Laundry, cleaning and packing..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:27 +0000", "from_user": "ndeyelaSOUL", "from_user_id": 51827579, "from_user_id_str": "51827579", "from_user_name": "Princess Ndeye \\uE10E", "geo": null, "id": 148838372113264640, "id_str": "148838372113264640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676514762/ndeyelaSOUL_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676514762/ndeyelaSOUL_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Umm this nyc traffic can suck my \\uD83C\\uDF46 @ChinnyVidiVici", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:26 +0000", "from_user": "mcannon21", "from_user_id": 28305397, "from_user_id_str": "28305397", "from_user_name": "Monica", "geo": null, "id": 148838364483829760, "id_str": "148838364483829760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/118516145/015_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/118516145/015_normal.JPG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@OMGlee_: Spin-Off ? big wold tour? #gleennouncment\" Im hoping for a NYC spinoff with the two of them :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:24 +0000", "from_user": "Dani1020", "from_user_id": 62858328, "from_user_id_str": "62858328", "from_user_name": "Danielle Lenardo", "geo": null, "id": 148838358146224130, "id_str": "148838358146224128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689159132/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689159132/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Watching #BODYCOMBAT42 ....epic Muay Thai track! Gonna bring some of that 2nite to NYC!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:24 +0000", "from_user": "T33Trini3", "from_user_id": 238245391, "from_user_id_str": "238245391", "from_user_name": "MS.\\u2600Shine", "geo": null, "id": 148838356992786430, "id_str": "148838356992786434", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695066031/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695066031/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@DASTARV8 NYC & you?", "to_user": "DASTARV8", "to_user_id": 277835925, "to_user_id_str": "277835925", "to_user_name": "V8-ShoNuff-Smith"}, +{"created_at": "Mon, 19 Dec 2011 18:53:23 +0000", "from_user": "patricec", "from_user_id": 15424589, "from_user_id_str": "15424589", "from_user_name": "Patrice Callender", "geo": null, "id": 148838355419922430, "id_str": "148838355419922432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1214464622/estmoi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1214464622/estmoi_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @nickyyates: looking for a videographer for this wednesday. whacha got nyc?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:21 +0000", "from_user": "DanSWright", "from_user_id": 147092180, "from_user_id_str": "147092180", "from_user_name": "Daniel Wright", "geo": null, "id": 148838347119411200, "id_str": "148838347119411200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688559042/6490367215_ed29700dc6_z_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688559042/6490367215_ed29700dc6_z_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Timcast: This is a message to the trolls. I have spent 0$ in donations and I am homeless in NYC. I will keep streaming! :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:20 +0000", "from_user": "dashstorefans", "from_user_id": 440197700, "from_user_id_str": "440197700", "from_user_name": "DASH Store Fan Club", "geo": null, "id": 148838340509179900, "id_str": "148838340509179904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700547180/dash_store_sign__flickr_faye_mous__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700547180/dash_store_sign__flickr_faye_mous__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ashleexxkate glad you checked out DASH NYC! What was the store like?", "to_user": "ashleexxkate", "to_user_id": 29502515, "to_user_id_str": "29502515", "to_user_name": "Ashley Lisberger", "in_reply_to_status_id": 148831623683653630, "in_reply_to_status_id_str": "148831623683653632"}, +{"created_at": "Mon, 19 Dec 2011 18:53:20 +0000", "from_user": "JaydenOrr", "from_user_id": 331591130, "from_user_id_str": "331591130", "from_user_name": "Jayden Orr", "geo": null, "id": 148838340429488130, "id_str": "148838340429488129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1432172361/PAUL_WEASLY_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1432172361/PAUL_WEASLY_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Man suspected of torching 73-year-old woman in NYC elevator charged with ... - Washington Post: ABC NewsMan susp... http://t.co/gFLxttNZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:19 +0000", "from_user": "mcclallenbtcph8", "from_user_id": 389584644, "from_user_id_str": "389584644", "from_user_name": "Mcclallen Rogers", "geo": null, "id": 148838336096780300, "id_str": "148838336096780289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1585111771/imagesCAXUO3TN_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585111771/imagesCAXUO3TN_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "20FactsAboutMe 13. I was raised in the Bronx, NY. I genuinely appreciate being from NYC. It took me GGxJLK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:19 +0000", "from_user": "ThatNigga_Chino", "from_user_id": 396651382, "from_user_id_str": "396651382", "from_user_name": "elwin chavez", "geo": null, "id": 148838335501176830, "id_str": "148838335501176833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1672842012/8CBB98A7-6D3C-4B31-8884-79F16F6F1637_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672842012/8CBB98A7-6D3C-4B31-8884-79F16F6F1637_normal", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "So quess my mom wants us to go to NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:18 +0000", "from_user": "EVEN_UNDERS", "from_user_id": 321649643, "from_user_id_str": "321649643", "from_user_name": "Jared D. Law", "geo": null, "id": 148838333823455230, "id_str": "148838333823455232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1640564930/TICKET_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640564930/TICKET_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Town Hall in NYC! Can't wait! The man is responsible for creating one of my top comedic characters from a TV series: http://t.co/yFQs0rmL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:12 +0000", "from_user": "TruBlu", "from_user_id": 14555072, "from_user_id_str": "14555072", "from_user_name": "Tru ", "geo": null, "id": 148838306459824130, "id_str": "148838306459824129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1166058661/images_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1166058661/images_normal.jpeg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@TheSportBird this won't end well. Davis & the NYC press = ticking time bomb.", "to_user": "TheSportBird", "to_user_id": 53533572, "to_user_id_str": "53533572", "to_user_name": "Rachel Bird"}, +{"created_at": "Mon, 19 Dec 2011 18:53:10 +0000", "from_user": "ArdorRealEstate", "from_user_id": 424438326, "from_user_id_str": "424438326", "from_user_name": "Ardor Real Estate", "geo": null, "id": 148838299048484860, "id_str": "148838299048484864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1664616854/ardor_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664616854/ardor_logo_normal.jpg", "source": "<a href="http://www.ardorny.com" rel="nofollow">ArdorRealEstate</a>", "text": "#NYC New York, Real Estate #apartment #rentals #Lower East Side 2-BR Doorman $6,325 http://t.co/9tlrEss6 NY Apartments for Rent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:10 +0000", "from_user": "LiveWellNY", "from_user_id": 342920335, "from_user_id_str": "342920335", "from_user_name": "Live Well New York", "geo": null, "id": 148838298473873400, "id_str": "148838298473873408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1463572613/chp_fortwitter_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1463572613/chp_fortwitter_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @nycfood: Let's keep the anti-obesity momentum going. More resources for helping kids eat healthy. http://t.co/Y5XWkEdH @nycHealthy @NYCSchools", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:08 +0000", "from_user": "ResTauRantDS", "from_user_id": 287797271, "from_user_id_str": "287797271", "from_user_name": "Jerry Kaye", "geo": null, "id": 148838289279946750, "id_str": "148838289279946752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1334801812/jerryphoto_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1334801812/jerryphoto_copy_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "Refuel With Savory Treats Before Or After Shopping At NYC's Top Restaurants - http://t.co/RMAqZpIM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:08 +0000", "from_user": "krrimberly", "from_user_id": 36065064, "from_user_id_str": "36065064", "from_user_name": "Kimberly Augustin", "geo": +{"coordinates": [42.0821,-87.7989], "type": "Point"}, "id": 148838289137348600, "id_str": "148838289137348608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1501697856/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1501697856/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@jeslarsen Chicago is nicer than NYC. Or so I've heard ;)", "to_user": "jeslarsen", "to_user_id": 16250117, "to_user_id_str": "16250117", "to_user_name": "jes", "in_reply_to_status_id": 148802367641497600, "in_reply_to_status_id_str": "148802367641497602"}, +{"created_at": "Mon, 19 Dec 2011 18:53:05 +0000", "from_user": "DTLAL", "from_user_id": 41507212, "from_user_id_str": "41507212", "from_user_name": "DTLAL MAGAZINE ", "geo": null, "id": 148838280123785200, "id_str": "148838280123785217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/223870296/BUL3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/223870296/BUL3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Speaker John Boehner trashing yet again the American Worker. NO unemployment extension! Traitor! #congress @dc #va #gop #nyc Chicago #denver", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:05 +0000", "from_user": "KlausClodpate", "from_user_id": 144478059, "from_user_id_str": "144478059", "from_user_name": "Klaus Clodpate", "geo": null, "id": 148838279914065920, "id_str": "148838279914065920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/904980670/klaus-clodpate-avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/904980670/klaus-clodpate-avatar_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NYC police: Suspect says woman set afire over debt \\u00AB Artesia News http://t.co/jnpJw9j2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:05 +0000", "from_user": "DavyStClair", "from_user_id": 137674042, "from_user_id_str": "137674042", "from_user_name": "Dave St Clair", "geo": null, "id": 148838278995525630, "id_str": "148838278995525633", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/855479020/dave-st-clair_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/855479020/dave-st-clair_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NYC police: Suspect says woman set afire over debt \\u00AB Artesia News http://t.co/VVTUhEi5 #surveillance", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:05 +0000", "from_user": "ArchibaldBates", "from_user_id": 136272396, "from_user_id_str": "136272396", "from_user_name": "Archibald Bates", "geo": null, "id": 148838277925978100, "id_str": "148838277925978112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/845450039/archiebates300px_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/845450039/archiebates300px_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NYC police: Suspect says woman set afire over debt \\u00AB Artesia News http://t.co/sdYvaebZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:05 +0000", "from_user": "CurlySnide", "from_user_id": 133723172, "from_user_id_str": "133723172", "from_user_name": "Curly Snide Jr", "geo": null, "id": 148838277418467330, "id_str": "148838277418467328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/827774527/CurlySnideJr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/827774527/CurlySnideJr_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NYC police: Suspect says woman set afire over debt \\u00AB Artesia News http://t.co/5Jl3HFub", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:05 +0000", "from_user": "startsnitching", "from_user_id": 332057551, "from_user_id_str": "332057551", "from_user_name": "Start Snitching", "geo": null, "id": 148838277309407230, "id_str": "148838277309407232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1602347282/SS_pic_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1602347282/SS_pic_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Suspect in NYC Torching Charged With Murder - ABC News http://t.co/Fsy8XbNu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:04 +0000", "from_user": "HarrisVonBaron", "from_user_id": 131500382, "from_user_id_str": "131500382", "from_user_name": "Whaley Harris", "geo": null, "id": 148838275740737540, "id_str": "148838275740737536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/811956238/whaleyharris_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/811956238/whaleyharris_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NYC police: Suspect says woman set afire over debt \\u00AB Artesia News http://t.co/bpvnSnzH #ulf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:03 +0000", "from_user": "CrazyINVASION", "from_user_id": 265725170, "from_user_id_str": "265725170", "from_user_name": "Mr.Crazy", "geo": null, "id": 148838270640463870, "id_str": "148838270640463872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695006409/5Vg3M8oY_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695006409/5Vg3M8oY_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Is it spring or winter in nyc o__0?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:03 +0000", "from_user": "milana_num", "from_user_id": 346378559, "from_user_id_str": "346378559", "from_user_name": "Milana L", "geo": null, "id": 148838270132949000, "id_str": "148838270132948992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699356644/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699356644/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @TalibKweli: RT @DJBOBBYTRENDS: NEW MUSIC: @TalibKweli - \"Distractions\" http://t.co/2sxPsKjc (NYC needs this on the radio Bobby holla!)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:02 +0000", "from_user": "NYNP_News", "from_user_id": 36872868, "from_user_id_str": "36872868", "from_user_name": "NYNP", "geo": null, "id": 148838266894954500, "id_str": "148838266894954496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/192679938/NYNPLogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/192679938/NYNPLogo_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Build NYC Accepting Applications for Tax-Eempt Financing http://t.co/pSGewu3R", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:00 +0000", "from_user": "The99Percenters", "from_user_id": 16988154, "from_user_id_str": "16988154", "from_user_name": "99-percenters", "geo": null, "id": 148838256920887300, "id_str": "148838256920887297", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701744515/i-kanz-haz-caek-small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701744515/i-kanz-haz-caek-small_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Timcast: This is a message to the trolls. I have spent 0$ in donations and I am homeless in NYC. I will keep streaming! :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:55 +0000", "from_user": "_DemiIsUnbroken", "from_user_id": 268574390, "from_user_id_str": "268574390", "from_user_name": "DanceUntilTomorrow\\u2665 ", "geo": null, "id": 148838237870374900, "id_str": "148838237870374912", "iso_language_code": "tr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698680839/tumblr_ltjl6s1ZUh1qapw3zo1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698680839/tumblr_ltjl6s1ZUh1qapw3zo1_500_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @DeniseJonas: Merry NYC Christmas! http://t.co/ruYcKRGt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:51 +0000", "from_user": "MyUpperWest", "from_user_id": 47091038, "from_user_id_str": "47091038", "from_user_name": "MyUpperWest", "geo": null, "id": 148838220032000000, "id_str": "148838220032000001", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/265637984/UWS_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/265637984/UWS_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#UWS Coffee Bean & Tea Leaf At Amsterdam & 86th Officially Open (Finally): http://t.co/aX26uyqu #UpperWestSide #NYC @CoffeeBeanNY #caffeine", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:50 +0000", "from_user": "BabylonVPatch", "from_user_id": 158910877, "from_user_id_str": "158910877", "from_user_name": "Judy Mottl", "geo": null, "id": 148838217095987200, "id_str": "148838217095987200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1158929821/judy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1158929821/judy_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "NYC mayor's eulogy for slain police officer Peter Figoski, a West Babylon father of four: http://t.co/HmfzLhIc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:50 +0000", "from_user": "Eric_Fleet", "from_user_id": 277525632, "from_user_id_str": "277525632", "from_user_name": "Eric Fleet", "geo": null, "id": 148838214113837060, "id_str": "148838214113837056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1553776461/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553776461/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Insane final runs on Ajax this morning - heading to airport soon back to NYC - too #beautiful to leave here....air is sooo fresh.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:47 +0000", "from_user": "collectinghobby", "from_user_id": 252886221, "from_user_id_str": "252886221", "from_user_name": "Hobby collector", "geo": null, "id": 148838201585438720, "id_str": "148838201585438720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1466135899/2000px-Retro-flower-ornaments.svg_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1466135899/2000px-Retro-flower-ornaments.svg_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Sandhogs http://t.co/TP4xndxO Subway slide show - New Second Avenue #Subway tunnels #NYC \\u2664 http://t.co/7tEd74rH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:43 +0000", "from_user": "LocalGuysMover", "from_user_id": 101902292, "from_user_id_str": "101902292", "from_user_name": "Bruce Hensley MOVER", "geo": null, "id": 148838185823244300, "id_str": "148838185823244288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1647019656/318646_274821735873987_100000384872621_932606_1762691306_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647019656/318646_274821735873987_100000384872621_932606_1762691306_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#WNC ASHEVILLE HENDERSONVILLE #FOLLOW Cam Crockford\\n@CamCrockford NYC. Newport\\ndon't sacrifice your dreams to the man", "to_user": "CamCrockford", "to_user_id": 369668215, "to_user_id_str": "369668215", "to_user_name": "Cam Crockford"}, +{"created_at": "Mon, 19 Dec 2011 18:52:42 +0000", "from_user": "Backflittchen", "from_user_id": 356137284, "from_user_id_str": "356137284", "from_user_name": "Backflittchen", "geo": null, "id": 148838183075987460, "id_str": "148838183075987456", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1526119422/Logo_Lila_ohne_Rahmen_Transparenz_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1526119422/Logo_Lila_ohne_Rahmen_Transparenz_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@FederPinsel Ahhhhh - hab ich da was verpasst??? Du in NYC??? Wie cool *neid* *neid* *neid* Wink mal rueber nach <3 Jersey City <3 #Home", "to_user": "FederPinsel", "to_user_id": 269863974, "to_user_id_str": "269863974", "to_user_name": "Feder Pinselschwung"}, +{"created_at": "Mon, 19 Dec 2011 18:52:42 +0000", "from_user": "vinylhoursradio", "from_user_id": 76833785, "from_user_id_str": "76833785", "from_user_name": "vinylhoursradio.com", "geo": null, "id": 148838182434258940, "id_str": "148838182434258946", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687808822/tbntr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687808822/tbntr_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @TalibKweli: RT @DJBOBBYTRENDS: NEW MUSIC: @TalibKweli - \"Distractions\" http://t.co/2sxPsKjc (NYC needs this on the radio Bobby holla!)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:42 +0000", "from_user": "ospinadigital", "from_user_id": 22936939, "from_user_id_str": "22936939", "from_user_name": "Davidson Ospina", "geo": null, "id": 148838180802674700, "id_str": "148838180802674688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1462904168/243489_10150631719820191_735435190_19053177_7769694_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1462904168/243489_10150631719820191_735435190_19053177_7769694_o_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "SUPER BUSY WEEK! Excited :-) Wed. in Philly @ RED SKY / Fri. Dec. 23rd - BOUNCE NYC'S HOLIDAY PARTY @ (Le) Poisson Rouge", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:41 +0000", "from_user": "burtyful", "from_user_id": 156149929, "from_user_id_str": "156149929", "from_user_name": "Burt", "geo": null, "id": 148838175983411200, "id_str": "148838175983411201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1663776028/302930_10100309274383684_23316715_49595466_881875065_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663776028/302930_10100309274383684_23316715_49595466_881875065_n_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@ScorpsU1 have fun in ohio! And nyc! I don't plan on speaking with @VickyCees for the next 3wks...which is normal at this point", "to_user": "ScorpsU1", "to_user_id": 122876758, "to_user_id_str": "122876758", "to_user_name": "Maxx-Scorpio Uzuh"}, +{"created_at": "Mon, 19 Dec 2011 18:52:39 +0000", "from_user": "A2BMILLS", "from_user_id": 29854898, "from_user_id_str": "29854898", "from_user_name": "REAL DEAL MILLS ", "geo": null, "id": 148838168735658000, "id_str": "148838168735657984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1675102465/330945157_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675102465/330945157_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "#Support RT @iAmRozayMylan: My last nite in town NYC ..... Come see me at @clubPERFECTION tonite !!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:36 +0000", "from_user": "get_MORgan", "from_user_id": 258071000, "from_user_id_str": "258071000", "from_user_name": "Morgan Tully", "geo": null, "id": 148838156496666620, "id_str": "148838156496666625", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1663348728/Photo_on_2011-11-28_at_19.27__6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663348728/Photo_on_2011-11-28_at_19.27__6_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "NYC going to dash! Ahhhhh #cannotwait @KhloeKardashian @KimKardashian @KourtneyKardash @KrisJenner", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:34 +0000", "from_user": "ltomana", "from_user_id": 17329552, "from_user_id_str": "17329552", "from_user_name": "Laura Tomana", "geo": null, "id": 148838149735448580, "id_str": "148838149735448576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1679654186/Untitllled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679654186/Untitllled_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "i feel like such a nerd every time i log into my @pghpenguins nyc meetup group website. #foleyspub", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:33 +0000", "from_user": "AskLaLa", "from_user_id": 5997072, "from_user_id_str": "5997072", "from_user_name": "AskLaLa", "geo": null, "id": 148838143951515650, "id_str": "148838143951515648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1337100426/bellapippa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1337100426/bellapippa_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "nyc New York real estate upstarts make \"Top 30 Under 30\" list: From left: Oren Alexander, Eric Trump... http://t.co/D8b9Mvc5 real estate", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:30 +0000", "from_user": "pippopelo4", "from_user_id": 390605089, "from_user_id_str": "390605089", "from_user_name": "pippo pelo", "geo": null, "id": 148838130655567870, "id_str": "148838130655567873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690619359/bear_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690619359/bear_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @democracynow: Occupy Wall Street NYC marks 3-month anniversary with re-occupation attempt, dozens arrested. http://t.co/jK0sLcnw #ows", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:29 +0000", "from_user": "rosieschaap", "from_user_id": 101508803, "from_user_id_str": "101508803", "from_user_name": "Rosie Schaap", "geo": null, "id": 148838125299441660, "id_str": "148838125299441665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1268425445/IMG_1501_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1268425445/IMG_1501_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Holy protein overdose. I feel like I should go chop some wood. Where does one do that in NYC? Also, do you have an axe?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:27 +0000", "from_user": "KatyBiff", "from_user_id": 33094836, "from_user_id_str": "33094836", "from_user_name": "Katy Biffle", "geo": null, "id": 148838119733604350, "id_str": "148838119733604352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1418213404/253955_10150651672270647_556790646_19652907_4086174_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1418213404/253955_10150651672270647_556790646_19652907_4086174_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@ElizandJames just finished Tom Wolfe's \"Bonfire of the Vanities\" so great!! And about NYC!!", "to_user": "ElizandJames", "to_user_id": 34211097, "to_user_id_str": "34211097", "to_user_name": "Elizabeth and James", "in_reply_to_status_id": 148830112475918340, "in_reply_to_status_id_str": "148830112475918336"}, +{"created_at": "Mon, 19 Dec 2011 18:52:26 +0000", "from_user": "Barrington_S", "from_user_id": 197593704, "from_user_id_str": "197593704", "from_user_name": "Barrington Smith", "geo": null, "id": 148838115631579140, "id_str": "148838115631579137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676540962/Photo_on_2011-12-05_at_21.10_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676540962/Photo_on_2011-12-05_at_21.10_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @therealmikedean: #WTT U.S. TOUR IS A WRAP. PJ TO NYC TO START NEXT PHASE.. NEVER STOPS DOES IT?? WHAT'S BETTER THAN THAT?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:25 +0000", "from_user": "awake_iam", "from_user_id": 406088294, "from_user_id_str": "406088294", "from_user_name": "Awake&Free", "geo": null, "id": 148838110422253570, "id_str": "148838110422253568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702584030/Death_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702584030/Death_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "#occupydenver -- #D17 Occupation 2.0: Protesters Take NYC Streets, NYPD Arrests http://t.co/mPeoaNum via @youtube", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:25 +0000", "from_user": "HipHopPantsula", "from_user_id": 84038392, "from_user_id_str": "84038392", "from_user_name": "Hip Hop Pantsula", "geo": null, "id": 148838109239455740, "id_str": "148838109239455744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686439856/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686439856/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@BotsheloHuma: Finally today ke jele sphatlho after years \\u263A\\u201D Hadiyo diphatlho ko NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:21 +0000", "from_user": "Eleanor_West", "from_user_id": 335540934, "from_user_id_str": "335540934", "from_user_name": "Eleanor West", "geo": null, "id": 148838092877463550, "id_str": "148838092877463553", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1457422742/photo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1457422742/photo_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Best dogs for NYC apartments: http://t.co/60RmNA2S @enehsy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:20 +0000", "from_user": "RussRealDiehl", "from_user_id": 272771172, "from_user_id_str": "272771172", "from_user_name": "Russell P. Diehl", "geo": null, "id": 148838089727541250, "id_str": "148838089727541249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1396647783/another_boo_boo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1396647783/another_boo_boo_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "!!RT @NinaSky NYC-Tonight@RBAR (218 Bowery) http://t.co/DK9GbDF0 Complimentary @AlizeMixItUp cocktails+lots of awesome deals!Tell a Friend!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:19 +0000", "from_user": "NatashaOnonogbo", "from_user_id": 131170033, "from_user_id_str": "131170033", "from_user_name": "Natasha Ononogbo", "geo": null, "id": 148838085835239420, "id_str": "148838085835239424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1231222666/CDNYC-_01_-__Webshare_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1231222666/CDNYC-_01_-__Webshare_1_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @dwbjr69: NYC WEATHER \\rMon 45/38 PartlyCloudy\\nTue 45/36 PartlyCloudy\\nWed 52/45 Rain\\nThu 52/36 PartlyCloudy\\nFri 43/36 ChanceRain\\n@natashaononogbo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:18 +0000", "from_user": "likemybassdwnLo", "from_user_id": 244817188, "from_user_id_str": "244817188", "from_user_name": "Logan", "geo": null, "id": 148838079480860670, "id_str": "148838079480860672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1694059137/390061_2893191928651_1225880420_3318815_824463918_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694059137/390061_2893191928651_1225880420_3318815_824463918_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Accepted to LIM College ! <3 Class of 2016 . NYC, here I come !!!!!!!! #FashionStudent #tearsofjoyyy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:15 +0000", "from_user": "JeremyCasts", "from_user_id": 30180038, "from_user_id_str": "30180038", "from_user_name": "Jeremy Gordon", "geo": +{"coordinates": [40.7615,-73.9856], "type": "Point"}, "id": 148838068873465860, "id_str": "148838068873465856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1307208474/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1307208474/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "AT&T service is even worse in NYC than it is in LA. I didn't think that possible. #hatredforat&t", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:13 +0000", "from_user": "ndabuildn", "from_user_id": 282364554, "from_user_id_str": "282364554", "from_user_name": "Nene Richmond", "geo": null, "id": 148838060757499900, "id_str": "148838060757499904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1619070504/imagejpeg_2_14-1-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619070504/imagejpeg_2_14-1-1_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster</a>", "text": "RT @VinNice1: On the road.. Headed to NYC Yhea me 2. Wit no gas u n Neef ain't shit wait til yall get back. Yall get me errtime", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:13 +0000", "from_user": "DaRbYfRoSt7", "from_user_id": 336071747, "from_user_id_str": "336071747", "from_user_name": "Darby\\u2665", "geo": null, "id": 148838058417066000, "id_str": "148838058417065984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680242149/8X5ajKHU_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680242149/8X5ajKHU_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@AlexConstancio7 im in NYC now ;D #Yee cant wait till 5 !", "to_user": "AlexConstancio7", "to_user_id": 191224982, "to_user_id_str": "191224982", "to_user_name": "Alex Constancio"}, +{"created_at": "Mon, 19 Dec 2011 18:52:10 +0000", "from_user": "Silver_Suites", "from_user_id": 322162089, "from_user_id_str": "322162089", "from_user_name": "SuitesAtSilverTowers", "geo": null, "id": 148838049395122180, "id_str": "148838049395122176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1479310550/square-logo-suites-silver-towers_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1479310550/square-logo-suites-silver-towers_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Staying in #NYC on Christmas Day? See what delights #Manhattan has to offer: http://t.co/JCfgPIpd (via @EaterNY)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:10 +0000", "from_user": "servingface", "from_user_id": 38123485, "from_user_id_str": "38123485", "from_user_name": "Jaeden Gibbs.", "geo": null, "id": 148838043212709900, "id_str": "148838043212709889", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1015303040/080_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1015303040/080_normal.JPG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Marsha Ambrosius looking fab at the VH1 Divas celebration in NYC.. http://t.co/i9jRv4bW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:08 +0000", "from_user": "javiermilian", "from_user_id": 29913606, "from_user_id_str": "29913606", "from_user_name": "Borii\\u2122", "geo": null, "id": 148838040679354370, "id_str": "148838040679354369", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702541752/x5VPosdw_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702541752/x5VPosdw_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@LuiisArmand0o olaaa priietoo! Espero que te la pases bien por boston y nyc!", "to_user": "LuiisArmand0o", "to_user_id": 71392069, "to_user_id_str": "71392069", "to_user_name": "Armando Robles"}, +{"created_at": "Mon, 19 Dec 2011 18:52:06 +0000", "from_user": "LouisvilleUSA", "from_user_id": 176234009, "from_user_id_str": "176234009", "from_user_name": "Louisville KY", "geo": null, "id": 148838029337968640, "id_str": "148838029337968640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1325566882/twitter1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1325566882/twitter1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Suspect in NYC torching charged with murder http://t.co/aHhokbix", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:05 +0000", "from_user": "ope_bukola", "from_user_id": 21882137, "from_user_id_str": "21882137", "from_user_name": "Ope Bukola", "geo": null, "id": 148838027433746430, "id_str": "148838027433746432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1177862812/Ope_Bukola_SheReads_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1177862812/Ope_Bukola_SheReads_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Sad that I cannot attend but @startlteam is hosting another Digital Learning Series in nyc with @p2pu @codecademy and more!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:05 +0000", "from_user": "WillisRaburu", "from_user_id": 67047017, "from_user_id_str": "67047017", "from_user_name": "Willis Raburu", "geo": null, "id": 148838026980753400, "id_str": "148838026980753409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1315704631/raburu_pap_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1315704631/raburu_pap_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "@tadoh: @willisraburu nyc work! @citizentvkenya++thank you bro..na umepotea", "to_user": "tadoh", "to_user_id": 54128752, "to_user_id_str": "54128752", "to_user_name": "Victor Oluoch"}, +{"created_at": "Mon, 19 Dec 2011 18:52:04 +0000", "from_user": "Jasmine_KHALIFA", "from_user_id": 149684748, "from_user_id_str": "149684748", "from_user_name": "BossJazzy,G.", "geo": null, "id": 148838020559274000, "id_str": "148838020559273984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701745667/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701745667/profile_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@_adoreKayla yes it is nice but I wanna come to NYC tho", "to_user": "_adoreKayla", "to_user_id": 178885172, "to_user_id_str": "178885172", "to_user_name": "MissKaylaDeanna ", "in_reply_to_status_id": 148738284619706370, "in_reply_to_status_id_str": "148738284619706368"}, +{"created_at": "Mon, 19 Dec 2011 18:52:03 +0000", "from_user": "domdiag", "from_user_id": 284685641, "from_user_id_str": "284685641", "from_user_name": "Dominion Diagnostics", "geo": null, "id": 148838020005625860, "id_str": "148838020005625856", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317581499/twitter_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317581499/twitter_logo_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Prescription Drug Abuse Climbs in NYC http://t.co/AtIkt8Ry", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:03 +0000", "from_user": "StoveOnMyWaist", "from_user_id": 98948271, "from_user_id_str": "98948271", "from_user_name": "Dre3k", "geo": null, "id": 148838018457931780, "id_str": "148838018457931776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1679679145/fuego2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679679145/fuego2_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @Ryan_Alexaitis: Off to NYC jammer at my house on wednesday when I get back @TylerAltieri @StoveOnMyWaist @BROTsk @m3ar2k", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:03 +0000", "from_user": "joedorish", "from_user_id": 30442135, "from_user_id_str": "30442135", "from_user_name": "Joe Dorish", "geo": null, "id": 148838017774272500, "id_str": "148838017774272512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/848063889/800px-McWay_Falls_04-17-2009_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/848063889/800px-McWay_Falls_04-17-2009_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Best places in NYC to see Christmas lights - Yahoo! News http://t.co/TG2iqmjQ via @YahooNews", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:02 +0000", "from_user": "Leanne_Marie_14", "from_user_id": 55863541, "from_user_id_str": "55863541", "from_user_name": "Live, Love, Leanne", "geo": null, "id": 148838014859214850, "id_str": "148838014859214850", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682842942/Photo_on_2011-08-09_at_15.15_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682842942/Photo_on_2011-08-09_at_15.15_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@ladyantebellum playlist \\u2665can't wait for May to get here so I can see them in NYC", "to_user": "ladyantebellum", "to_user_id": 15651878, "to_user_id_str": "15651878", "to_user_name": "ladyantebellum"}, +{"created_at": "Mon, 19 Dec 2011 18:52:02 +0000", "from_user": "peakpublicity", "from_user_id": 39658995, "from_user_id_str": "39658995", "from_user_name": "PeakPublicity LLC.", "geo": null, "id": 148838014704033800, "id_str": "148838014704033794", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1637669102/310532_10150444699052193_505862192_10280468_463636513_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637669102/310532_10150444699052193_505862192_10280468_463636513_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Followers in nyc make sure you listen in to @WLBS with @egpytsaidso @iamSheree", "to_user": "IamSheree", "to_user_id": 47010589, "to_user_id_str": "47010589", "to_user_name": "Shere\\u00E8 Whitfield", "in_reply_to_status_id": 148835561329799170, "in_reply_to_status_id_str": "148835561329799168"}, +{"created_at": "Mon, 19 Dec 2011 18:52:01 +0000", "from_user": "tls2424", "from_user_id": 52932307, "from_user_id_str": "52932307", "from_user_name": "Teri", "geo": null, "id": 148838010555858940, "id_str": "148838010555858944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1396118930/Picture_045_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1396118930/Picture_045_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Top of the Rock! #nyc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:00 +0000", "from_user": "collectinghobby", "from_user_id": 252886221, "from_user_id_str": "252886221", "from_user_name": "Hobby collector", "geo": null, "id": 148838007254945800, "id_str": "148838007254945792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1466135899/2000px-Retro-flower-ornaments.svg_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1466135899/2000px-Retro-flower-ornaments.svg_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "http://t.co/dfOZOpcH Sandhogs: workers who dig out the the tunnels for subways and aquaducts http://t.co/S9WuqgR4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:00 +0000", "from_user": "hangtime4days", "from_user_id": 44247492, "from_user_id_str": "44247492", "from_user_name": "Paper Planez", "geo": null, "id": 148838006822932480, "id_str": "148838006822932481", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699335257/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699335257/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "My cuzin in dallas need to answer his phone if he comin to nyc nxt wk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:59 +0000", "from_user": "micaelashanley", "from_user_id": 94707240, "from_user_id_str": "94707240", "from_user_name": "Micaela Shanley", "geo": null, "id": 148838002204999680, "id_str": "148838002204999681", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695201459/Snapshot_20111212_8_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695201459/Snapshot_20111212_8_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Going to nyc :) http://t.co/X9yfHIvY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:56 +0000", "from_user": "kunene001", "from_user_id": 300194547, "from_user_id_str": "300194547", "from_user_name": "Philani kunene", "geo": null, "id": 148837989466910720, "id_str": "148837989466910720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699366937/4rm_20a_20lover_202_20another_20xoxo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699366937/4rm_20a_20lover_202_20another_20xoxo_normal.gif", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Never again looks nyc bt tastes lyke shit http://t.co/R8lIBq8X", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:55 +0000", "from_user": "Rositapoox3", "from_user_id": 328865721, "from_user_id_str": "328865721", "from_user_name": "Rosa Colon", "geo": null, "id": 148837984677003260, "id_str": "148837984677003264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697654275/IMAG0280-12_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697654275/IMAG0280-12_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Dont want to go back to work...so anxious to move to nyc!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:52 +0000", "from_user": "NuGalorePR", "from_user_id": 397358056, "from_user_id_str": "397358056", "from_user_name": "N\\u00FCGalore PR Firm", "geo": null, "id": 148837970844205060, "id_str": "148837970844205058", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1604557069/328602893_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1604557069/328602893_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Remember: @JeurySan will be performing on LIVE television tonight @ 11pm in NYC - channel 56 on Time Warner Cable or 34 for Verizon users!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:50 +0000", "from_user": "RangeelGomez", "from_user_id": 128954884, "from_user_id_str": "128954884", "from_user_name": "Rangel Gomez \\u2207", "geo": null, "id": 148837965878136830, "id_str": "148837965878136832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1573057790/Sem_T_tulo-2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1573057790/Sem_T_tulo-2_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "RT @selenagomez: Last week to enter for a chance to join me in New York for MTV NYE.\\n\\nhttp://t.co/52CXAHfb http://t.co/cuickqhZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:50 +0000", "from_user": "sales4NYC", "from_user_id": 429664133, "from_user_id_str": "429664133", "from_user_name": "New York City sales", "geo": null, "id": 148837964460462080, "id_str": "148837964460462080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680196076/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680196076/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#sales4u #sales *****CHEAP WICKED TICKETS***** (GERSHWIN THEATRE) http://t.co/GDtTU7EG #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:50 +0000", "from_user": "lvdeleo", "from_user_id": 181022752, "from_user_id_str": "181022752", "from_user_name": "Lauren DeLeo", "geo": null, "id": 148837963281870850, "id_str": "148837963281870848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1109438488/IMG_1676_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1109438488/IMG_1676_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NYC twice within a month?! so jealous of @snappy1191! #iheartny", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:49 +0000", "from_user": "sales4NYC", "from_user_id": 429664133, "from_user_id_str": "429664133", "from_user_name": "New York City sales", "geo": null, "id": 148837961637691400, "id_str": "148837961637691392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680196076/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680196076/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#sales4u #sales 2 tickets to PHISH! 12/28 $110 http://t.co/m8IkA8qr #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:49 +0000", "from_user": "sales4NYC", "from_user_id": 429664133, "from_user_id_str": "429664133", "from_user_name": "New York City sales", "geo": null, "id": 148837960417153020, "id_str": "148837960417153024", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680196076/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680196076/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#sales4u #sales Classic Timberland Khaki/Suede String Bag - Vintage (Riverdale) $20 http://t.co/IqP1qg5z #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:48 +0000", "from_user": "sales4NYC", "from_user_id": 429664133, "from_user_id_str": "429664133", "from_user_name": "New York City sales", "geo": null, "id": 148837956839407600, "id_str": "148837956839407616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680196076/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680196076/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#sales4u #sales !!AFFORDABLE WICKED TICKETS!! (GERSHWIN THEATRE) http://t.co/wxUYf4dm #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:48 +0000", "from_user": "sales4NYC", "from_user_id": 429664133, "from_user_id_str": "429664133", "from_user_name": "New York City sales", "geo": null, "id": 148837955627257860, "id_str": "148837955627257856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680196076/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680196076/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#sales4u #sales Salomon F20 David Benedeck Model Snowboard Boots (LIC) $105 http://t.co/EHkhxQCG #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:47 +0000", "from_user": "mrgcornelius", "from_user_id": 18026864, "from_user_id_str": "18026864", "from_user_name": "GCH", "geo": null, "id": 148837953161007100, "id_str": "148837953161007105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1591260718/328170228_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591260718/328170228_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "NYE in NYC...Might be the move.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:46 +0000", "from_user": "TamiaGrande", "from_user_id": 433608839, "from_user_id_str": "433608839", "from_user_name": "Arianator forever", "geo": null, "id": 148837946521427970, "id_str": "148837946521427969", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1685605674/imagesCA3RK7J5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685605674/imagesCA3RK7J5_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ArianaGrande I send you the best xmas wishes and im sorry i can't go to ur NYC show anymore im sick but a follow can make me better :DDD", "to_user": "ArianaGrande", "to_user_id": 34507480, "to_user_id_str": "34507480", "to_user_name": "Ariana Grande"}, +{"created_at": "Mon, 19 Dec 2011 18:51:45 +0000", "from_user": "shelley486", "from_user_id": 22282222, "from_user_id_str": "22282222", "from_user_name": "Shelley Carter", "geo": +{"coordinates": [33.6409,-84.4464], "type": "Point"}, "id": 148837942650085380, "id_str": "148837942650085377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1600300099/truffaut_photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600300099/truffaut_photo_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@cindymariej hey!! I arrive the night of Dec 26 and fly back to NYC on Jan 2. Would LOVE to see you! I'll also be back in the Bay in June!", "to_user": "cindymariej", "to_user_id": 17577383, "to_user_id_str": "17577383", "to_user_name": "Cindy Marie Jenkins", "in_reply_to_status_id": 148836621368836100, "in_reply_to_status_id_str": "148836621368836096"}, +{"created_at": "Mon, 19 Dec 2011 18:51:45 +0000", "from_user": "candyogbebor", "from_user_id": 45522349, "from_user_id_str": "45522349", "from_user_name": "candy ogbebor", "geo": null, "id": 148837942142566400, "id_str": "148837942142566401", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698392649/331612573_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698392649/331612573_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@K4Kendra nyc avatar *plentyHomo* lol..\\u263A", "to_user": "K4Kendra", "to_user_id": 35485752, "to_user_id_str": "35485752", "to_user_name": "Kendra Divine "}, +{"created_at": "Mon, 19 Dec 2011 18:51:43 +0000", "from_user": "ericaashlee", "from_user_id": 129660588, "from_user_id_str": "129660588", "from_user_name": "Erica Yard", "geo": null, "id": 148837936270540800, "id_str": "148837936270540800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699156424/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699156424/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Had such a good semester, but excited to be in NYC tm with my loves", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:43 +0000", "from_user": "itsmeAdelinaK", "from_user_id": 256297383, "from_user_id_str": "256297383", "from_user_name": "AdelinaK \\u272D", "geo": null, "id": 148837934034976770, "id_str": "148837934034976769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675532149/111_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675532149/111_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "its definetly OK that my nails are painted #EssieLilacism in this NYC weather.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:51:43 +0000", "from_user": "ericaashlee", "from_user_id": 129660588, "from_user_id_str": "129660588", "from_user_name": "Erica Yard", "geo": null, "id": 148837936270540800, "id_str": "148837936270540800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699156424/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699156424/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Had such a good semester, but excited to be in NYC tm with my loves", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:43 +0000", "from_user": "itsmeAdelinaK", "from_user_id": 256297383, "from_user_id_str": "256297383", "from_user_name": "AdelinaK \\u272D", "geo": null, "id": 148837934034976770, "id_str": "148837934034976769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675532149/111_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675532149/111_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "its definetly OK that my nails are painted #EssieLilacism in this NYC weather.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:40 +0000", "from_user": "NiinoDotCom", "from_user_id": 114406429, "from_user_id_str": "114406429", "from_user_name": "JBC", "geo": null, "id": 148837921267523600, "id_str": "148837921267523584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1640642757/312128_2169099195284_1480839524_31827299_1972415232_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640642757/312128_2169099195284_1480839524_31827299_1972415232_n_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @TalibKweli: RT @DJBOBBYTRENDS: NEW MUSIC: @TalibKweli - \"Distractions\" http://t.co/2sxPsKjc (NYC needs this on the radio Bobby holla!)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:38 +0000", "from_user": "carriewildes", "from_user_id": 16932897, "from_user_id_str": "16932897", "from_user_name": "carriewildesphoto", "geo": null, "id": 148837912333660160, "id_str": "148837912333660160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1548802977/IMG_9963_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1548802977/IMG_9963_normal.jpg", "source": "<a href="http://pinterest.com" rel="nofollow">Pinterest</a>", "text": "Jersey City wedding with views of #NYC http://t.co/nVcrU4mh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:38 +0000", "from_user": "SusanRPM4", "from_user_id": 85341198, "from_user_id_str": "85341198", "from_user_name": "Susan Alexander", "geo": null, "id": 148837912249761800, "id_str": "148837912249761793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/774255859/SusanGravatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/774255859/SusanGravatar_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@coachginny ... Funny, you know? They're one of many things in NYC that you can order and have delivered :-)", "to_user": "coachginny", "to_user_id": 24260060, "to_user_id_str": "24260060", "to_user_name": "Ginny Williams", "in_reply_to_status_id": 148792628299829250, "in_reply_to_status_id_str": "148792628299829248"}, +{"created_at": "Mon, 19 Dec 2011 18:51:36 +0000", "from_user": "Mangsters", "from_user_id": 281259577, "from_user_id_str": "281259577", "from_user_name": "Magnus Stervik", "geo": null, "id": 148837905333362700, "id_str": "148837905333362688", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700654145/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700654145/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Ska k\\u00F6pa tusen Red Bull. Bli speedad, ta bilen och k\\u00F6ra till NYC. Sen bli k\\u00E4nd och ha det lite gott s\\u00E5.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:34 +0000", "from_user": "JLisaCameron", "from_user_id": 26772243, "from_user_id_str": "26772243", "from_user_name": "Cam Er On", "geo": null, "id": 148837898471481340, "id_str": "148837898471481345", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694366641/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694366641/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Riff Raffs or Butter tonight ????? Let's discuss #NYC .....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:33 +0000", "from_user": "rach_sears", "from_user_id": 353892180, "from_user_id_str": "353892180", "from_user_name": "rachel sears ", "geo": null, "id": 148837894554009600, "id_str": "148837894554009602", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1492079911/185231_10150252897022404_588272403_7529585_1736928_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1492079911/185231_10150252897022404_588272403_7529585_1736928_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Wish i was goin to this audi show in NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:33 +0000", "from_user": "iamcodymonta", "from_user_id": 28165213, "from_user_id_str": "28165213", "from_user_name": "iamcodymonta'", "geo": null, "id": 148837891257278460, "id_str": "148837891257278464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1650448013/FULL_RESOLUTION_CROP_COLOR_1_TWITTER_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650448013/FULL_RESOLUTION_CROP_COLOR_1_TWITTER_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@AmourGabrielle Swear I thought I saw you in NYC yesterday. Bruh you gotta twin out there somewhere.", "to_user": "AmourGabrielle", "to_user_id": 37358445, "to_user_id_str": "37358445", "to_user_name": "Gabby\\uE31C"}, +{"created_at": "Mon, 19 Dec 2011 18:51:32 +0000", "from_user": "TwaneJ", "from_user_id": 141076148, "from_user_id_str": "141076148", "from_user_name": "Twane", "geo": null, "id": 148837887482413060, "id_str": "148837887482413056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674339131/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674339131/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I think I might actually go to NYC with @youngie623 I hope everything works out!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:31 +0000", "from_user": "StasiaHibbetsjh", "from_user_id": 296172881, "from_user_id_str": "296172881", "from_user_name": "Stasia Hibbets", "geo": null, "id": 148837883820781570, "id_str": "148837883820781568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Suspect in NYC torching charged with murder - The Associated Press http://t.co/dbEeRh8s", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:31 +0000", "from_user": "rahulgchaudhary", "from_user_id": 93134027, "from_user_id_str": "93134027", "from_user_name": "Rahul Chaudhary", "geo": null, "id": 148837883371995140, "id_str": "148837883371995137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1148856768/rahulchaudhary_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1148856768/rahulchaudhary_normal.jpg", "source": "<a href="http://su.pr/" rel="nofollow">Su.pr</a>", "text": "RT @kidsvite: Kidsvite, New York Edition - December 19, 2011 http://t.co/lvmK4zN2 #kids #event #classes #parents #newyork #nyc #toddler #baby #moms", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:31 +0000", "from_user": "TyraGorczycajh5", "from_user_id": 296161276, "from_user_id_str": "296161276", "from_user_name": "Tyra Gorczyca", "geo": null, "id": 148837883191640060, "id_str": "148837883191640065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Suspect in NYC torching charged with murder - The Associated Press: The Associated PressSuspect in NYC torching ... http://t.co/5cOQUPss", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:31 +0000", "from_user": "SerGiuS_1", "from_user_id": 105237880, "from_user_id_str": "105237880", "from_user_name": "Sergio Perez", "geo": null, "id": 148837882898022400, "id_str": "148837882898022401", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1635466597/329668489_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635466597/329668489_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Dr_OneMike i'm heading to nyc at the end of this week :D", "to_user": "Dr_OneMike", "to_user_id": 109635336, "to_user_id_str": "109635336", "to_user_name": "Michael P. Auguste", "in_reply_to_status_id": 148836966497124350, "in_reply_to_status_id_str": "148836966497124352"}, +{"created_at": "Mon, 19 Dec 2011 18:51:31 +0000", "from_user": "SusieDuitscherj", "from_user_id": 295495545, "from_user_id_str": "295495545", "from_user_name": "Susie Duitscher", "geo": null, "id": 148837882835124220, "id_str": "148837882835124224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1344956107/947463338165_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1344956107/947463338165_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Suspect in NYC torching charged with murder - The Associated Press: The Associated PressSuspect in NYC torching charged with murderTh...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:30 +0000", "from_user": "Born_A_GENT", "from_user_id": 84874120, "from_user_id_str": "84874120", "from_user_name": "Anthony Casellas\\u2714", "geo": null, "id": 148837881887195140, "id_str": "148837881887195138", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700736466/Born_A_GENT_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700736466/Born_A_GENT_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Back in NYC!!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:26 +0000", "from_user": "meganortega", "from_user_id": 24422905, "from_user_id_str": "24422905", "from_user_name": "megan ortega", "geo": null, "id": 148837862782140400, "id_str": "148837862782140416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1674102219/320538_2392788386537_1455730023_2642053_493069917_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674102219/320538_2392788386537_1455730023_2642053_493069917_n_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Just sang empire state of mind on the red steps in NYC!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:25 +0000", "from_user": "AskLaLa", "from_user_id": 5997072, "from_user_id_str": "5997072", "from_user_name": "AskLaLa", "geo": null, "id": 148837860223619070, "id_str": "148837860223619072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1337100426/bellapippa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1337100426/bellapippa_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "nyc Brooklyn Shake Shack Opening Tomorrow\\u2014But Will It Really Transform Downtown?: Shack stacks! (Goth... http://t.co/HzMDw0vO apartments", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:25 +0000", "from_user": "SiVesAlgoDiAlgo", "from_user_id": 44165262, "from_user_id_str": "44165262", "from_user_name": "Watcher", "geo": null, "id": 148837859514781700, "id_str": "148837859514781696", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/247362059/sivesalgobio_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/247362059/sivesalgobio_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @ladybird_09 #subway #mta #NYC #astoria http://t.co/6HkCwPSB: #subway #mta #NYC #astoria htt... http://t.co/iIe2e2Mg #SiVesAlgoDiAlgo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:25 +0000", "from_user": "AskLaLa", "from_user_id": 5997072, "from_user_id_str": "5997072", "from_user_name": "AskLaLa", "geo": null, "id": 148837858478792700, "id_str": "148837858478792704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1337100426/bellapippa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1337100426/bellapippa_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "nyc Brant Publications, Owner of Art in America, Moving Downtown Headquarters: Peter Brant's Brant Pu... http://t.co/XX8WdAS6 apartments", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:25 +0000", "from_user": "carmen_alyse", "from_user_id": 435433277, "from_user_id_str": "435433277", "from_user_name": "carmen alyse", "geo": null, "id": 148837857547653120, "id_str": "148837857547653122", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696486285/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696486285/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@TylerDavidEstes interning with Patricia Field in NYC! My friends are growing up. Congrats brotha.", "to_user": "TylerDavidEstes", "to_user_id": 438952474, "to_user_id_str": "438952474", "to_user_name": "Tyler Estes"}, +{"created_at": "Mon, 19 Dec 2011 18:51:23 +0000", "from_user": "420Dionysus", "from_user_id": 220862858, "from_user_id_str": "220862858", "from_user_name": "uglyboyswag", "geo": null, "id": 148837850857742340, "id_str": "148837850857742338", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701501879/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701501879/profile_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @TalibKweli: RT @DJBOBBYTRENDS: NEW MUSIC: @TalibKweli - \"Distractions\" http://t.co/2sxPsKjc (NYC needs this on the radio Bobby holla!)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:23 +0000", "from_user": "NoahWunsch", "from_user_id": 189572494, "from_user_id_str": "189572494", "from_user_name": "Noah Wunsch", "geo": null, "id": 148837848760590340, "id_str": "148837848760590337", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1121965827/17379_1240720143037_1380300298_30786129_3300452_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1121965827/17379_1240720143037_1380300298_30786129_3300452_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Ambassadorsnyc best band in NYC right now? @N_YPress thinks so. catch them @PianosNYC this #THURSDAY http://t.co/uUdryNXP", "to_user": "Ambassadorsnyc", "to_user_id": 67434744, "to_user_id_str": "67434744", "to_user_name": "Ambassadors"}, +{"created_at": "Mon, 19 Dec 2011 18:51:22 +0000", "from_user": "an_mahoney", "from_user_id": 30995875, "from_user_id_str": "30995875", "from_user_name": "alyssa mahoney", "geo": null, "id": 148837844482408450, "id_str": "148837844482408448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695622963/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695622963/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@ericavozzella that's so far away hahah but I'll bee in NYC", "to_user": "ericavozzella", "to_user_id": 223307581, "to_user_id_str": "223307581", "to_user_name": "Erica Vozzella", "in_reply_to_status_id": 148837438809309200, "in_reply_to_status_id_str": "148837438809309184"}, +{"created_at": "Mon, 19 Dec 2011 18:51:18 +0000", "from_user": "kwijybo16", "from_user_id": 15953520, "from_user_id_str": "15953520", "from_user_name": "Eric Kollig", "geo": null, "id": 148837828460163070, "id_str": "148837828460163072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1477617257/31360_761014099485_411418_42671852_1644793_n2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1477617257/31360_761014099485_411418_42671852_1644793_n2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @SenGillibrand: Congratulations to @Cornell_Univ for winning competition to build an applied science campus in #NYC! http://t.co/GIRECcCa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:17 +0000", "from_user": "oktweeterp8ed", "from_user_id": 28943324, "from_user_id_str": "28943324", "from_user_name": "KC", "geo": null, "id": 148837826727911420, "id_str": "148837826727911424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1298523229/saf_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1298523229/saf_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @democracynow: Occupy Wall Street NYC marks 3-month anniversary with re-occupation attempt, dozens arrested. http://t.co/jK0sLcnw #ows", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:15 +0000", "from_user": "cherylduckworth", "from_user_id": 225175037, "from_user_id_str": "225175037", "from_user_name": "Cheryl Duckworth", "geo": null, "id": 148837816850325500, "id_str": "148837816850325504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1530466868/headshot_tiny_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1530466868/headshot_tiny_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @democracynow: Occupy Wall Street NYC marks 3-month anniversary with re-occupation attempt, dozens arrested. http://t.co/jK0sLcnw #ows", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:14 +0000", "from_user": "jerry53635", "from_user_id": 41480264, "from_user_id_str": "41480264", "from_user_name": "Jerry McGaughey", "geo": null, "id": 148837813360672770, "id_str": "148837813360672768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/244498525/Me_at_Mrdi_Gras_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/244498525/Me_at_Mrdi_Gras_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I favorited a @YouTube video http://t.co/zpqZKrEp The Blues MaGoos-We Ain't Got Nothin' Yet (1966 NYC With Ly", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:14 +0000", "from_user": "jerry53635", "from_user_id": 41480264, "from_user_id_str": "41480264", "from_user_name": "Jerry McGaughey", "geo": null, "id": 148837811632603140, "id_str": "148837811632603136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/244498525/Me_at_Mrdi_Gras_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/244498525/Me_at_Mrdi_Gras_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube video http://t.co/zpqZKrEp The Blues MaGoos-We Ain't Got Nothin' Yet (1966 NYC With Lyrics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:13 +0000", "from_user": "aleeyoumousa", "from_user_id": 321029535, "from_user_id_str": "321029535", "from_user_name": "\\u2665Aleeyou Mousa Alee\\u2665", "geo": null, "id": 148837809850040320, "id_str": "148837809850040320", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687817505/IMG00825-20111026-1755_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687817505/IMG00825-20111026-1755_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@BabyGrlDMarie Nyc 1", "to_user": "BabyGrlDMarie", "to_user_id": 180043737, "to_user_id_str": "180043737", "to_user_name": "BabyGirlDMarie\\u2665LLOVE", "in_reply_to_status_id": 148822035190132740, "in_reply_to_status_id_str": "148822035190132736"}, +{"created_at": "Mon, 19 Dec 2011 18:51:09 +0000", "from_user": "Smithies_zz", "from_user_id": 181128817, "from_user_id_str": "181128817", "from_user_name": "Joseph Kabon", "geo": null, "id": 148837793299300350, "id_str": "148837793299300352", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1492176317/P5100999_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1492176317/P5100999_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@Iwalaiye nyc, wish i cud meet old frends 2", "to_user": "Iwalaiye", "to_user_id": 220935175, "to_user_id_str": "220935175", "to_user_name": "Ms_Tomiey", "in_reply_to_status_id": 148837402130120700, "in_reply_to_status_id_str": "148837402130120705"}, +{"created_at": "Mon, 19 Dec 2011 18:51:08 +0000", "from_user": "natalierobinLD", "from_user_id": 175223398, "from_user_id_str": "175223398", "from_user_name": "Natalie Robin", "geo": null, "id": 148837787204988930, "id_str": "148837787204988928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1363811126/Apollo_270crop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1363811126/Apollo_270crop_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @SenGillibrand: Congratulations to @Cornell_Univ for winning the competition to build an applied science campus in #NYC! http://t.co/hlGIKmrW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:04 +0000", "from_user": "Marysellar", "from_user_id": 242878674, "from_user_id_str": "242878674", "from_user_name": "Mary Sellar\\u00E9s", "geo": null, "id": 148837771367288830, "id_str": "148837771367288832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1644465474/P3240056_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644465474/P3240056_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TomCruise: Tom answers your questions at the NYC M:I-@GhostProtocol Premiere 2night! Submit your questions w/ #MissionNYC http://t.co/8FwxLVGC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:02 +0000", "from_user": "DaRbYfRoSt7", "from_user_id": 336071747, "from_user_id_str": "336071747", "from_user_name": "Darby\\u2665", "geo": null, "id": 148837762584412160, "id_str": "148837762584412160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680242149/8X5ajKHU_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680242149/8X5ajKHU_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@AustinMahone im in NYC now;) i cant wait till 5 ;D #Yee", "to_user": "AustinMahone", "to_user_id": 196795202, "to_user_id_str": "196795202", "to_user_name": "Austin Mahone"}, +{"created_at": "Mon, 19 Dec 2011 18:51:02 +0000", "from_user": "kbthree", "from_user_id": 29448789, "from_user_id_str": "29448789", "from_user_name": "Ken Brannigan", "geo": null, "id": 148837762387279870, "id_str": "148837762387279872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1480148609/young_ken_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1480148609/young_ken_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@lostheather: Holy christ http://t.co/7Zs9Khmg\\u201D @IHi5Now @EmmaLou2484", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:02 +0000", "from_user": "paulshore01", "from_user_id": 14243986, "from_user_id_str": "14243986", "from_user_name": "paul shore", "geo": null, "id": 148837762001412100, "id_str": "148837762001412096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/274861667/cap02_medium_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/274861667/cap02_medium_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "If you could harness the power of NYC cab drivers slamming their horns you could power the frickin sun. POW... Energy solved. Next problem.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:01 +0000", "from_user": "Diane_Dyson", "from_user_id": 23226236, "from_user_id_str": "23226236", "from_user_name": "Diane Dyson", "geo": null, "id": 148837758763405300, "id_str": "148837758763405313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1383647235/Jane_s_Walk_2011_-_Looks_good_for_once_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1383647235/Jane_s_Walk_2011_-_Looks_good_for_once_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @AccidentalCity: Interesting thoughts from @JohnToryShow on why Toronto is more diverse than NYC (via @CivicActionGTA) http://t.co/120JTGYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:58 +0000", "from_user": "SenGillibrand", "from_user_id": 72198806, "from_user_id_str": "72198806", "from_user_name": "Kirsten Gillibrand", "geo": null, "id": 148837745635229700, "id_str": "148837745635229696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1539812868/KEGheadshottwitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1539812868/KEGheadshottwitter_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Congratulations to @Cornell_Univ for winning the competition to build an applied science campus in #NYC! http://t.co/hlGIKmrW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:56 +0000", "from_user": "TalibKweli", "from_user_id": 18511475, "from_user_id_str": "18511475", "from_user_name": "Talib Kweli Greene", "geo": null, "id": 148837736604897280, "id_str": "148837736604897280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700332206/TalibKweli_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700332206/TalibKweli_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @DJBOBBYTRENDS: NEW MUSIC: @TalibKweli - \"Distractions\" http://t.co/2sxPsKjc (NYC needs this on the radio Bobby holla!)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:54 +0000", "from_user": "SBrown_", "from_user_id": 21614943, "from_user_id_str": "21614943", "from_user_name": "S.", "geo": null, "id": 148837727419371520, "id_str": "148837727419371520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1654032292/65223_847187582273_14209140_45683871_3421290_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654032292/65223_847187582273_14209140_45683871_3421290_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "NYC is a wild ass place.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:51 +0000", "from_user": "capn_Bud", "from_user_id": 347375612, "from_user_id_str": "347375612", "from_user_name": "Capn Bud", "geo": null, "id": 148837718179323900, "id_str": "148837718179323904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://www.yahoo.com" rel="nofollow">Yahoo!</a>", "text": "commented: If he had been White and she black,Al Sharpton,Rev.Jesse,Eric Holder would be screaming HATE CRIME! http://t.co/kD4OejRL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:48 +0000", "from_user": "drjiho714", "from_user_id": 43686883, "from_user_id_str": "43686883", "from_user_name": "Jiho Jung", "geo": null, "id": 148837704220676100, "id_str": "148837704220676096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1478677779/254610_1955399920816_1117254231_31735247_7801075_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1478677779/254610_1955399920816_1117254231_31735247_7801075_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I dislike nyc weather as much as I love this place.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:47 +0000", "from_user": "jennart23", "from_user_id": 254314597, "from_user_id_str": "254314597", "from_user_name": "Jennifer", "geo": null, "id": 148837699640508400, "id_str": "148837699640508416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1540230209/me_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1540230209/me_1_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Nyc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:46 +0000", "from_user": "delex_lincs", "from_user_id": 271454046, "from_user_id_str": "271454046", "from_user_name": "Mr_Adebayo", "geo": null, "id": 148837694577971200, "id_str": "148837694577971200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689208908/IMG00054-20111212-1546_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689208908/IMG00054-20111212-1546_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Nyc chat tho", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:43 +0000", "from_user": "JamaitianShawty", "from_user_id": 336306121, "from_user_id_str": "336306121", "from_user_name": "Mandiee Lee", "geo": null, "id": 148837681688883200, "id_str": "148837681688883201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1633326610/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633326610/image_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "The Life Of NYC : Bicycles & Taxis .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:41 +0000", "from_user": "hehehehao", "from_user_id": 60439933, "from_user_id_str": "60439933", "from_user_name": "iChlo\\u00EB", "geo": null, "id": 148837674256568320, "id_str": "148837674256568322", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1114166276/8eac241ce78b408ba686690e_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1114166276/8eac241ce78b408ba686690e_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@ChloeGMoretz will u appear on a new TV. We haven't a little long time to see ya. Happy days in NYC!!:)", "to_user": "ChloeGMoretz", "to_user_id": 90021519, "to_user_id_str": "90021519", "to_user_name": "Chlo\\u00EB Grace Moretz"}, +{"created_at": "Mon, 19 Dec 2011 18:50:40 +0000", "from_user": "sitosplit", "from_user_id": 410746995, "from_user_id_str": "410746995", "from_user_name": "sitosplit", "geo": null, "id": 148837668137074700, "id_str": "148837668137074689", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @thinkprogress: Owners of Zuccotti Park owe NYC 139K in back taxes http://t.co/4lkz6VhT #ows #taxdodgers", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:39 +0000", "from_user": "saradohi", "from_user_id": 433759600, "from_user_id_str": "433759600", "from_user_name": "Chrysandra Macclure", "geo": null, "id": 148837668053188600, "id_str": "148837668053188608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687540778/224_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687540778/224_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "auto insurance companies nyc http://t.co/jD4etx1Y", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:39 +0000", "from_user": "TVutomi", "from_user_id": 349744685, "from_user_id_str": "349744685", "from_user_name": "Vutomi tsongayinwe", "geo": null, "id": 148837665368842240, "id_str": "148837665368842240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1673452406/FacebookHomescreenImage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673452406/FacebookHomescreenImage_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@Mu_Sla_Lee lollesy ithnk it looks nyc....", "to_user": "Mu_Sla_Lee", "to_user_id": 348914758, "to_user_id_str": "348914758", "to_user_name": " Lalee Sadiki", "in_reply_to_status_id": 148835114292490240, "in_reply_to_status_id_str": "148835114292490240"}, +{"created_at": "Mon, 19 Dec 2011 18:50:38 +0000", "from_user": "kiaraceh", "from_user_id": 364241003, "from_user_id_str": "364241003", "from_user_name": "Kiara Herrera", "geo": null, "id": 148837661698834430, "id_str": "148837661698834433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1543100233/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543100233/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "NYC in less than a month! @AustenPxB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:35 +0000", "from_user": "Binkey_Babie", "from_user_id": 365612835, "from_user_id_str": "365612835", "from_user_name": "Bianca ", "geo": null, "id": 148837650239991800, "id_str": "148837650239991808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698880068/fX0L9CjJ_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698880068/fX0L9CjJ_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I told my dad I got accepted to St Rose&he goes thats nice now we can\\n wait for St Johns to accept you so you can stay in NYC#NoSupport.Lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:34 +0000", "from_user": "AtticusBooks", "from_user_id": 118406405, "from_user_id_str": "118406405", "from_user_name": "Atticus Books", "geo": null, "id": 148837646209265660, "id_str": "148837646209265664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/723674385/Atticus_Books_Logo_Very_Small_RGB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/723674385/Atticus_Books_Logo_Very_Small_RGB_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Three NYC bookstores share their favorites from 2011: http://t.co/b5QUHJaU #amreading #nolistfatiguehere", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:33 +0000", "from_user": "BeckCuthbertX", "from_user_id": 46976727, "from_user_id_str": "46976727", "from_user_name": "Rebecca\\u2661", "geo": null, "id": 148837642128211970, "id_str": "148837642128211969", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691244923/318787_10150274387722647_601447646_7798210_5733529_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691244923/318787_10150274387722647_601447646_7798210_5733529_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @smhelloladies: In NYC. Did @OpieRadio show earlier and who should appear but @simonpegg. We traded some droll bon mots, natch. What a lovely man.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:33 +0000", "from_user": "mykal792", "from_user_id": 103684383, "from_user_id_str": "103684383", "from_user_name": "Michael Schilling", "geo": null, "id": 148837639867469820, "id_str": "148837639867469824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/685687530/mike_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/685687530/mike_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#SOTD The Orion Experience \"NYC Girl\" http://t.co/Y6xqzDC5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:32 +0000", "from_user": "thaitvnews", "from_user_id": 110596487, "from_user_id_str": "110596487", "from_user_name": "thaitvnews", "geo": null, "id": 148837638546264060, "id_str": "148837638546264064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1669224662/sensoredearth_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669224662/sensoredearth_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Suspect in NYC torching charged with murder - The Associated Press: The Associated PressSuspect in NYC torching ... http://t.co/Wr7enj7M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:31 +0000", "from_user": "AspiringMedia", "from_user_id": 16821275, "from_user_id_str": "16821275", "from_user_name": "AspiringMedia", "geo": null, "id": 148837629687889920, "id_str": "148837629687889920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683579620/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683579620/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "maybe @studiomuseum will one day hang this in the gallery #harlem #photography #NYC http://t.co/wmViafzl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:28 +0000", "from_user": "gypsybiancat", "from_user_id": 378953948, "from_user_id_str": "378953948", "from_user_name": "Gypsy funhouse", "geo": null, "id": 148837618480717820, "id_str": "148837618480717824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1684269334/neNB5xbx_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684269334/neNB5xbx_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@RussianBoy4life nyc and boston I'm in boston now", "to_user": "RussianBoy4life", "to_user_id": 403178519, "to_user_id_str": "403178519", "to_user_name": "Pauly d ", "in_reply_to_status_id": 148836940697976830, "in_reply_to_status_id_str": "148836940697976832"}, +{"created_at": "Mon, 19 Dec 2011 18:50:27 +0000", "from_user": "Funky_Fresh_Kid", "from_user_id": 305759692, "from_user_id_str": "305759692", "from_user_name": "Ayopelumi Soetan", "geo": null, "id": 148837614101872640, "id_str": "148837614101872640", "iso_language_code": "fi", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702206544/Funky_Fresh_Kid_2424677480186137632_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702206544/Funky_Fresh_Kid_2424677480186137632_normal.jpg", "source": "<a href="http://www.writelonger.com" rel="nofollow">Write Longer</a>", "text": "@purpleberiie nyc avii!", "to_user": "purpleberiie", "to_user_id": 428905275, "to_user_id_str": "428905275", "to_user_name": " Jemiemah Douglas"}, +{"created_at": "Mon, 19 Dec 2011 18:50:26 +0000", "from_user": "chaunabryant", "from_user_id": 192106882, "from_user_id_str": "192106882", "from_user_name": "chauna bryant", "geo": null, "id": 148837610364731400, "id_str": "148837610364731393", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1326659089/hip_circles_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1326659089/hip_circles_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "\\u201C@bklynbadass: 6:30pm Boot Camp Is SOLD OUT From January-April!\\u201D congrats! will have to add one of the other times to my NYC workout list", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:25 +0000", "from_user": "AVaccariello", "from_user_id": 290347050, "from_user_id_str": "290347050", "from_user_name": "Alyssa Vaccariello", "geo": null, "id": 148837608141758460, "id_str": "148837608141758464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1532126852/AVACCATTACK_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1532126852/AVACCATTACK_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "NYC in about 16 hours :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:21 +0000", "from_user": "wild_banshee", "from_user_id": 399115725, "from_user_id_str": "399115725", "from_user_name": "Wild Banshee", "geo": null, "id": 148837588889894900, "id_str": "148837588889894912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1621923150/Ghost_for_Twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621923150/Ghost_for_Twitter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Misses the BS Report. I need @sportsguy33 to tell me what to think of the CP3 deal and Baron Davis and his beard going to NYC,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:20 +0000", "from_user": "JessieFarnan", "from_user_id": 340566003, "from_user_id_str": "340566003", "from_user_name": "Jessica Farnan", "geo": null, "id": 148837586549489660, "id_str": "148837586549489664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1605374970/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1605374970/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "About to go into Dash in NYC!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:20 +0000", "from_user": "ItsSuperKei12", "from_user_id": 28713895, "from_user_id_str": "28713895", "from_user_name": "Shakei Haynes ", "geo": null, "id": 148837584741732350, "id_str": "148837584741732354", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701593452/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701593452/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I really dont know but I will be there after the 1st. spending some time in NYC RT @ms__marshall @ItsSuperKei12 when are you coming home?", "to_user": "ms__marshall", "to_user_id": 92455207, "to_user_id_str": "92455207", "to_user_name": "Dom.", "in_reply_to_status_id": 148794164878901250, "in_reply_to_status_id_str": "148794164878901248"}, +{"created_at": "Mon, 19 Dec 2011 18:50:19 +0000", "from_user": "Mills_sbelegant", "from_user_id": 229309219, "from_user_id_str": "229309219", "from_user_name": "Mills SoWavy", "geo": null, "id": 148837581033967600, "id_str": "148837581033967617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1637890194/340500_2165692196201_1663543705_2030739_961597443_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637890194/340500_2165692196201_1663543705_2030739_961597443_o_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Safe holiday travels to you all!! HeLLO NYC!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:17 +0000", "from_user": "HadyDabelba14", "from_user_id": 84627382, "from_user_id_str": "84627382", "from_user_name": "HadyGarciaGoris", "geo": null, "id": 148837573442289660, "id_str": "148837573442289668", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1690158527/331397091_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690158527/331397091_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": ":'( :'( :'( y aqu\\u00ED noos dejasSs a las doss :( @beatrizfrp hahaha'. Buen viaje primoo RT @AlberthMoscoso: NYC all\\u00E1 voy #FelizNavidad RD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:14 +0000", "from_user": "EileenLehpamer", "from_user_id": 44489279, "from_user_id_str": "44489279", "from_user_name": "Eileen Lehpamer", "geo": null, "id": 148837559395553280, "id_str": "148837559395553282", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/253629367/eileen4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/253629367/eileen4_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "FROM: Notify NYC\\nToday 8AM-4PM, ConEd conducting inspections of NYC power lines via blue and white helicopter w/... http://t.co/nxvQLIbT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:13 +0000", "from_user": "joingrouper", "from_user_id": 314874205, "from_user_id_str": "314874205", "from_user_name": "Grouper", "geo": null, "id": 148837557738811400, "id_str": "148837557738811392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1399636312/logo2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1399636312/logo2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Get caught up on your #nyc #nightlife with @guestofaguest http://t.co/nZobimBC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:13 +0000", "from_user": "carleej", "from_user_id": 25872693, "from_user_id_str": "25872693", "from_user_name": "Carlee Jo Kremer", "geo": null, "id": 148837556220461060, "id_str": "148837556220461056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1490832306/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1490832306/image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "This is terrible!!! NYC police: Suspect says woman set afire over debt - Yahoo! News http://t.co/x7HdPWg4 via @YahooNews", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:13 +0000", "from_user": "KariGay1", "from_user_id": 341953853, "from_user_id_str": "341953853", "from_user_name": "Kari Gay", "geo": null, "id": 148837555075424260, "id_str": "148837555075424258", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1459586979/very_cute_girl_05_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1459586979/very_cute_girl_05_normal.jpg", "source": "<a href="http://www.instacheckin.com" rel="nofollow">Instacheckin</a>", "text": "Suspect in NYC torching charged with murder - The Associated Press http://t.co/mNhHdK83", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:12 +0000", "from_user": "StarSightings", "from_user_id": 25478138, "from_user_id_str": "25478138", "from_user_name": "StarSightings", "geo": null, "id": 148837554060406800, "id_str": "148837554060406784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1197413796/ss_iphone_app_icon_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1197413796/ss_iphone_app_icon_normal.PNG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Katie's 33! No party dress for her tho, Katie Holmes and Tom Cruise out for bday dinner in #NYC. @iamkatieholmes http://t.co/1jcanrAA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:11 +0000", "from_user": "plainjane71923", "from_user_id": 229364103, "from_user_id_str": "229364103", "from_user_name": "Susie B.", "geo": null, "id": 148837550210027520, "id_str": "148837550210027520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693981674/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693981674/image_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @ChrisKattan: Tina, Tracey, Horatio, Amy, Rachel, Jimmy, Seth, Wiig, Lorne and the rest of the brilliant gang, thanks for a VERY MERRY XMAS in NYC at SNL!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:10 +0000", "from_user": "MichaelSkolnik", "from_user_id": 24165761, "from_user_id_str": "24165761", "from_user_name": "Michael Skolnik", "geo": null, "id": 148837543704674300, "id_str": "148837543704674305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1104977134/Headshot_from_Berlin_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1104977134/Headshot_from_Berlin_2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@iamBenLyons my man BD is coming to NYC. couldn't be happier.", "to_user": "iamBenLyons", "to_user_id": 22048072, "to_user_id_str": "22048072", "to_user_name": "Ben Lyons", "in_reply_to_status_id": 148837301542326270, "in_reply_to_status_id_str": "148837301542326272"}, +{"created_at": "Mon, 19 Dec 2011 18:50:08 +0000", "from_user": "mycutebee2", "from_user_id": 345257531, "from_user_id_str": "345257531", "from_user_name": "Bolanle Agbabiaka", "geo": null, "id": 148837537908133900, "id_str": "148837537908133889", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1664391020/Photo-0619_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664391020/Photo-0619_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Dnt try 2 b nyc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:08 +0000", "from_user": "RebeccaSaveKids", "from_user_id": 68745052, "from_user_id_str": "68745052", "from_user_name": " Rebecca W Robinson", "geo": null, "id": 148837536326889470, "id_str": "148837536326889472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/646309602/IMG_5319f-med_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/646309602/IMG_5319f-med_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "N.Y.C. triathlon adds swim requirement after deaths http://t.co/HxgSHYdG #OWswim #swimming", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:07 +0000", "from_user": "QuentinGGQZ", "from_user_id": 383037161, "from_user_id_str": "383037161", "from_user_name": "Quentin Gonzales", "geo": null, "id": 148837533495722000, "id_str": "148837533495721984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1598515509/avatar-christmas-103-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598515509/avatar-christmas-103-1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Suspect in NYC torching charged with murder - The Associated Press", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:06 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148837528122822660, "id_str": "148837528122822656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @free4NYC: #free #freestuff WOOD PALLETS FOR FREE!! HURRY WHILE PALLETS ARE AVAILABLE!! (c-line marble, new h... http://t.co/SVngEUlP #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:05 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148837522787663870, "id_str": "148837522787663872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @free4NYC: #free #freestuff Baptism Debate (Flushing) http://t.co/IscAEt0m #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:04 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148837520933797900, "id_str": "148837520933797889", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @free4NYC: #free #freestuff Rev'n Chef: Herb Processor (Greenwood Heights) http://t.co/lkuOwUI5 #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:04 +0000", "from_user": "poca_hanaah", "from_user_id": 278870776, "from_user_id_str": "278870776", "from_user_name": "Hanaah Frechette", "geo": null, "id": 148837520459825150, "id_str": "148837520459825152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1304037603/20564_1226116897974_1380570183_30572168_267606_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1304037603/20564_1226116897974_1380570183_30572168_267606_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Super excited for @lalaalaenaa and the rest of the Frechette clan to arrive in NYC :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:04 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148837519167983600, "id_str": "148837519167983616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @free4NYC: #free #freestuff Benjamin Moore Interior Paint - Free (Tuckahoe NY) http://t.co/Kqf8YibQ #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:03 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148837516483629060, "id_str": "148837516483629056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @free4NYC: #free #freestuff Free 12-drawer dresser hardwood (Bethel, CT 06801) http://t.co/t2x6FDen #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:01 +0000", "from_user": "nandita", "from_user_id": 6575732, "from_user_id_str": "6575732", "from_user_name": "Alejandra Ramos", "geo": null, "id": 148837506006269950, "id_str": "148837506006269952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1319428590/twitterprofilenew_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1319428590/twitterprofilenew_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Got NYC-area friends or family who LOVE food? Get them a cooking class gift certificate! Easy gift they'll LOVE:... http://t.co/cm9saz7c", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:00 +0000", "from_user": "MarijoZlatic", "from_user_id": 90897580, "from_user_id_str": "90897580", "from_user_name": "Marijo Zlatic", "geo": null, "id": 148837503443546100, "id_str": "148837503443546112", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1016720268/67151b63-2415-445e-9810-d06359a9dd3e_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1016720268/67151b63-2415-445e-9810-d06359a9dd3e_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@BokiNachbar kjes ti? :) Te bomo vidl na preseason tekmi NYC:NJN? Lahk pa prides v Pig 'n Whistle na pivo :)", "to_user": "BokiNachbar", "to_user_id": 45169955, "to_user_id_str": "45169955", "to_user_name": "Bostjan Nachbar"}, +{"created_at": "Mon, 19 Dec 2011 18:50:00 +0000", "from_user": "SweetHeartSwan", "from_user_id": 59983716, "from_user_id_str": "59983716", "from_user_name": "Arella Swan", "geo": null, "id": 148837502130716670, "id_str": "148837502130716672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1400827358/220335_1758911489465_1139340108_31557591_7769446_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1400827358/220335_1758911489465_1139340108_31557591_7769446_o_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @issarae: Bravo is looking for NYC based affluent AfAm couples getting married by 2/14/12 for new series on Bravo. Contact: @vpetalent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:59 +0000", "from_user": "lukenbxin8", "from_user_id": 369924880, "from_user_id_str": "369924880", "from_user_name": "Luken Bond", "geo": null, "id": 148837499731578880, "id_str": "148837499731578880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1533973655/imagesCAPAY5I0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1533973655/imagesCAPAY5I0_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "CarolanChris cool how many are there in NYC?KSdtx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:58 +0000", "from_user": "pinkdogsunite", "from_user_id": 397591659, "from_user_id_str": "397591659", "from_user_name": "Pier 6 Dogs", "geo": null, "id": 148837493435924480, "id_str": "148837493435924480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1605114855/profilepic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1605114855/profilepic_normal.jpg", "source": "<a href="http://www.handmark.com" rel="nofollow">TweetCaster for iOS</a>", "text": "Here we go! Race you! #dogs #brooklyn #NYC http://t.co/uVZhncxt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:54 +0000", "from_user": "D2BAwesome", "from_user_id": 254713316, "from_user_id_str": "254713316", "from_user_name": "Doomed to Be Awesome", "geo": null, "id": 148837479057858560, "id_str": "148837479057858561", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1249755881/170708_10150384338540246_806845245_17145839_1287236_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1249755881/170708_10150384338540246_806845245_17145839_1287236_o_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Alex Winter\\u2019s \\u201CFREAKED\\u201D and John Sayles genre flicks in NYC http://t.co/IijMZp14", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:54 +0000", "from_user": "koolkil27", "from_user_id": 49048056, "from_user_id_str": "49048056", "from_user_name": "Glen Campbell Jr.", "geo": null, "id": 148837476277026800, "id_str": "148837476277026816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1244562247/glenn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1244562247/glenn_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@Baron_Davis yes!! Bring me a ring.. No stephen marbury nonsense lol. Feel like knicks are putting together a video game lineup nyc", "to_user": "Baron_Davis", "to_user_id": 21056862, "to_user_id_str": "21056862", "to_user_name": "Baron Davis", "in_reply_to_status_id": 148764624899145730, "in_reply_to_status_id_str": "148764624899145728"}, +{"created_at": "Mon, 19 Dec 2011 18:49:53 +0000", "from_user": "ashleyimani_", "from_user_id": 98208913, "from_user_id_str": "98208913", "from_user_name": "ashley brown : )", "geo": null, "id": 148837472187580400, "id_str": "148837472187580416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699982119/20111216_230543_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699982119/20111216_230543_normal.jpeg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @Ty_gibson21 NYC is that motha fu**ing city", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:50 +0000", "from_user": "BuildUpPromo3", "from_user_id": 327090899, "from_user_id_str": "327090899", "from_user_name": "Build Up Promo", "geo": null, "id": 148837458782593020, "id_str": "148837458782593024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1421100492/graphic_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1421100492/graphic_3_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "Vote @bkCASHMERE For The 'EXPLOSIVE GRIND AWARD' AT THE 2011 @ELEGANTHOODNESS AWARDS! 1.18 @CLUB PYRAMID NYC http://t.co/XOeaRr3I", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:49 +0000", "from_user": "BuildUpPromo", "from_user_id": 310799639, "from_user_id_str": "310799639", "from_user_name": "Build Up Promo", "geo": null, "id": 148837456115007500, "id_str": "148837456115007488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1381342710/graphic_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1381342710/graphic_1_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "Vote @bkCASHMERE For The 'EXPLOSIVE GRIND AWARD' AT THE 2011 @ELEGANTHOODNESS AWARDS! 1.18 @CLUB PYRAMID NYC http://t.co/KPLddtXR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:48 +0000", "from_user": "MsDukes10", "from_user_id": 142847834, "from_user_id_str": "142847834", "from_user_name": "tui brown", "geo": null, "id": 148837453422272500, "id_str": "148837453422272512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1381512824/2447657_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1381512824/2447657_normal.png", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "Vote @bkCASHMERE For The 'EXPLOSIVE GRIND AWARD' AT THE 2011 @ELEGANTHOODNESS AWARDS! 1.18 @CLUB PYRAMID NYC http://t.co/YJSQdo6g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:48 +0000", "from_user": "DiMeHEaRt", "from_user_id": 307727496, "from_user_id_str": "307727496", "from_user_name": "DORA", "geo": null, "id": 148837450905698300, "id_str": "148837450905698304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1374447674/phone_card_012_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1374447674/phone_card_012_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "Vote @bkCASHMERE For The 'EXPLOSIVE GRIND AWARD' AT THE 2011 @ELEGANTHOODNESS AWARDS! 1.18 @CLUB PYRAMID NYC http://t.co/cNghzuus", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:47 +0000", "from_user": "Ladi_Lurv", "from_user_id": 198354117, "from_user_id_str": "198354117", "from_user_name": "Pheladi Ledwaba", "geo": null, "id": 148837449039224830, "id_str": "148837449039224832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1619592777/329120686_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619592777/329120686_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Spent d day wit my nephew Lesego n his mom. It was 2 nyc, he's soooo adorables*smilin*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:47 +0000", "from_user": "OTESK", "from_user_id": 44700179, "from_user_id_str": "44700179", "from_user_name": "Adam Tom", "geo": null, "id": 148837447978057730, "id_str": "148837447978057728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1321748279/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1321748279/image_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "Vote @bkCASHMERE For The 'EXPLOSIVE GRIND AWARD' AT THE 2011 @ELEGANTHOODNESS AWARDS! 1.18 @CLUB PYRAMID NYC http://t.co/7BAubC5y", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:47 +0000", "from_user": "BolingonK", "from_user_id": 378794364, "from_user_id_str": "378794364", "from_user_name": "Boling K", "geo": null, "id": 148837447562838000, "id_str": "148837447562838016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Len Levitt: Kelly and the Bureau: Inconvenient Truths: Because Kelly commands the police department of 9/11-scarred NYC, the country'...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:46 +0000", "from_user": "aliciahsthename", "from_user_id": 340415677, "from_user_id_str": "340415677", "from_user_name": "Tamikah campbell", "geo": null, "id": 148837445658619900, "id_str": "148837445658619904", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701180175/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701180175/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "NYC baby!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:46 +0000", "from_user": "Kazi_Brasil", "from_user_id": 401142340, "from_user_id_str": "401142340", "from_user_name": "Kazi Grupo M\\u00EDdia\\u2122", "geo": null, "id": 148837445063016450, "id_str": "148837445063016448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1613272009/kazi_brasil_wp_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1613272009/kazi_brasil_wp_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\u2605 @TomCruise | Tom answers your questions at the NYC M:I-@GhostProtocol Premiere 2night! Submit...: Tom answers ... http://t.co/tJ7TXwNM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:46 +0000", "from_user": "TEAMYOUNGHYI", "from_user_id": 180832917, "from_user_id_str": "180832917", "from_user_name": "teamyounghyi", "geo": null, "id": 148837442592579600, "id_str": "148837442592579585", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1107183221/45531_140349002669728_100000838874588_180987_2464181_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1107183221/45531_140349002669728_100000838874588_180987_2464181_n_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "Vote @bkCASHMERE For The 'EXPLOSIVE GRIND AWARD' AT THE 2011 @ELEGANTHOODNESS AWARDS! 1.18 @CLUB PYRAMID NYC http://t.co/jDEy2vQ7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:46 +0000", "from_user": "Kazi_Celebrity", "from_user_id": 400820369, "from_user_id_str": "400820369", "from_user_name": "Kazi Celebrity News\\u2122", "geo": null, "id": 148837442215092220, "id_str": "148837442215092224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1612511547/kazi_celebrity_favicon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612511547/kazi_celebrity_favicon_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\u2605 @TomCruise | Tom answers your questions at the NYC M:I-@GhostProtocol Premiere 2night! Submit...: Tom answers ... http://t.co/hLnjiCNF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:49:46 +0000", "from_user": "Kazi_Celebrity", "from_user_id": 400820369, "from_user_id_str": "400820369", "from_user_name": "Kazi Celebrity News\\u2122", "geo": null, "id": 148837442215092220, "id_str": "148837442215092224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1612511547/kazi_celebrity_favicon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612511547/kazi_celebrity_favicon_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\u2605 @TomCruise | Tom answers your questions at the NYC M:I-@GhostProtocol Premiere 2night! Submit...: Tom answers ... http://t.co/hLnjiCNF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:46 +0000", "from_user": "Kazi_Germany", "from_user_id": 402657125, "from_user_id_str": "402657125", "from_user_name": "Kazi Germany News\\u2122", "geo": null, "id": 148837442068295680, "id_str": "148837442068295680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1634196736/germany_favicon_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634196736/germany_favicon_twitter_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\u2605 @TomCruise | Tom answers your questions at the NYC M:I-@GhostProtocol Premiere 2night! Submit...: Tom answers ... http://t.co/OuWcm2BQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:45 +0000", "from_user": "Kazi_Brasil", "from_user_id": 401142340, "from_user_id_str": "401142340", "from_user_name": "Kazi Grupo M\\u00EDdia\\u2122", "geo": null, "id": 148837441439154180, "id_str": "148837441439154176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1613272009/kazi_brasil_wp_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1613272009/kazi_brasil_wp_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\u2605 @TomCruise | Tom answers your questions at the NYC M:I-@GhostProtocol Premiere 2night! Submit...: Tom answers ... http://t.co/GSGlUzOM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:45 +0000", "from_user": "Kazi_Celebrity", "from_user_id": 400820369, "from_user_id_str": "400820369", "from_user_name": "Kazi Celebrity News\\u2122", "geo": null, "id": 148837441183297540, "id_str": "148837441183297536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1612511547/kazi_celebrity_favicon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612511547/kazi_celebrity_favicon_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\u2605 @TomCruise | Tom answers your questions at the NYC M:I-@GhostProtocol Premiere 2night! Submit...: Tom answers ... http://t.co/GTN3ZzAC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:44 +0000", "from_user": "switz_d_witz", "from_user_id": 354346655, "from_user_id_str": "354346655", "from_user_name": "Bolous Sobanks", "geo": null, "id": 148837435403546620, "id_str": "148837435403546625", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700554819/edited_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700554819/edited_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Nyc 1 bro.....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:44 +0000", "from_user": "BKCASHMERE", "from_user_id": 18999531, "from_user_id_str": "18999531", "from_user_name": "CASHMERE", "geo": null, "id": 148837434371739650, "id_str": "148837434371739648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1188316210/SALUTE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1188316210/SALUTE_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "Vote @bkCASHMERE For The 'EXPLOSIVE GRIND AWARD' AT THE 2011 @ELEGANTHOODNESS AWARDS! 1.18 @CLUB PYRAMID NYC http://t.co/EPNXtMxj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:43 +0000", "from_user": "tweetsfrom_ang", "from_user_id": 59572545, "from_user_id_str": "59572545", "from_user_name": "Angela Ocasio", "geo": null, "id": 148837430252937200, "id_str": "148837430252937216", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693063683/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693063683/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@JU_lOVEMEE: @tweetsfrom_ang nyc?!!\\u201D I'm broke :(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:42 +0000", "from_user": "M4RKM", "from_user_id": 18561913, "from_user_id_str": "18561913", "from_user_name": "Mark M", "geo": null, "id": 148837425932795900, "id_str": "148837425932795904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1602462731/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1602462731/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@paul_a_smith nice one! When you heading to NYC?", "to_user": "paul_a_smith", "to_user_id": 9568572, "to_user_id_str": "9568572", "to_user_name": "Paul Smith", "in_reply_to_status_id": 148835026845446140, "in_reply_to_status_id_str": "148835026845446144"}, +{"created_at": "Mon, 19 Dec 2011 18:49:41 +0000", "from_user": "DawudWalid", "from_user_id": 30050923, "from_user_id_str": "30050923", "from_user_name": "Dawud Walid", "geo": null, "id": 148837422858375170, "id_str": "148837422858375168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701262314/lowes-protesters1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701262314/lowes-protesters1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "AUDIO of me on Charlie Langton Show this morning discussing @lowes #allamericanmuslim http://t.co/jFpdEotN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:37 +0000", "from_user": "geniseize", "from_user_id": 278693873, "from_user_id_str": "278693873", "from_user_name": "Geni Seize", "geo": null, "id": 148837407519801340, "id_str": "148837407519801344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1303544063/images-3_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1303544063/images-3_normal.jpeg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Suspect in NYC torching charged with murder - The Associated Press: The Associated PressSuspect in NYC torching ... http://t.co/0NFULt30", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:35 +0000", "from_user": "Paul_Lisicky", "from_user_id": 15590584, "from_user_id_str": "15590584", "from_user_name": "Paul Lisicky", "geo": null, "id": 148837398892122100, "id_str": "148837398892122112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1443800907/LevitatingNed_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1443800907/LevitatingNed_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I'm reading with the great Lynne Tillman tonight at NYC's Dixon Place at 7:30 PM. It would be great to see you.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:35 +0000", "from_user": "clayton_rosa", "from_user_id": 98393225, "from_user_id_str": "98393225", "from_user_name": "Clayton Rosa", "geo": null, "id": 148837396656558080, "id_str": "148837396656558080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1575509373/226765_557076407781_53001697_31928338_6778669_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575509373/226765_557076407781_53001697_31928338_6778669_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "I had a dream that I was wandering the streets of NYC. Maybe it's a sign that I have to make a trip to NYC soon...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:34 +0000", "from_user": "KarmaLoopRepNYC", "from_user_id": 386173822, "from_user_id_str": "386173822", "from_user_name": "REPCODE: runnyc33", "geo": null, "id": 148837392961388540, "id_str": "148837392961388544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575776605/karma_loop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575776605/karma_loop_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@MacMiller @TreeJTV @SweetJamesMD point breeze born and raised, trying to do my thing at st. Johns in NYC, show NYC some love!!! #412 #212", "to_user": "MacMiller", "to_user_id": 23065354, "to_user_id_str": "23065354", "to_user_name": "Mac Miller"}, +{"created_at": "Mon, 19 Dec 2011 18:49:33 +0000", "from_user": "CUSSWSUEB", "from_user_id": 213323632, "from_user_id_str": "213323632", "from_user_name": "CusswSUEB", "geo": null, "id": 148837389643694080, "id_str": "148837389643694081", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1162605908/cussw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1162605908/cussw_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "CUSSWers in the NYC area: Looking for a way to celebrate the end of the semester? Check out this Ugly Sweater Jam... http://t.co/srLo6CTn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:32 +0000", "from_user": "mikestylesagent", "from_user_id": 62448504, "from_user_id_str": "62448504", "from_user_name": "Mike Styles", "geo": null, "id": 148837384795062270, "id_str": "148837384795062272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1641195047/17355_299132640674_672565674_3356207_7558231_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641195047/17355_299132640674_672565674_3356207_7558231_n_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Back on it this Monday. Long weekend in NYC on 50 Cent Video production set. All 12 of our... http://t.co/gwGOybSy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:31 +0000", "from_user": "GrouponMatthew", "from_user_id": 106181714, "from_user_id_str": "106181714", "from_user_name": "Matthew Holihan", "geo": null, "id": 148837379459907600, "id_str": "148837379459907585", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1653199925/m1-2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653199925/m1-2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@CSkdr I've been a bad friend. I miss you. Let's catch up soon, I wanna see how NYC is going. #Turtz", "to_user": "CSkdr", "to_user_id": 174650498, "to_user_id_str": "174650498", "to_user_name": "Cari Sekendur"}, +{"created_at": "Mon, 19 Dec 2011 18:49:27 +0000", "from_user": "digital_naive", "from_user_id": 93655071, "from_user_id_str": "93655071", "from_user_name": "Franziska Puls", "geo": null, "id": 148837363928403970, "id_str": "148837363928403968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/837866457/ViewFotoCommunity-1384243_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/837866457/ViewFotoCommunity-1384243_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "InStyle is taking a fashion magazine, combining it with a digital experience, and taking it to the streets of NYC http://t.co/ovjV2ONt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:27 +0000", "from_user": "NewYorkCityFor", "from_user_id": 433104407, "from_user_id_str": "433104407", "from_user_name": "NewYorkCityForDotMe", "geo": null, "id": 148837362338770940, "id_str": "148837362338770946", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684431871/Location4_12nyc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684431871/Location4_12nyc_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "NewYorkCityFor.me Suspect in NYC woman's burning appears in court http://t.co/rmjp0uEP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:27 +0000", "from_user": "NewYorkCityFor", "from_user_id": 433104407, "from_user_id_str": "433104407", "from_user_name": "NewYorkCityForDotMe", "geo": null, "id": 148837362204540930, "id_str": "148837362204540928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684431871/Location4_12nyc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684431871/Location4_12nyc_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "NewYorkCityFor.me Suspect in NYC torching charged with murder http://t.co/MEzcVygX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:26 +0000", "from_user": "NewYorkCityFor", "from_user_id": 433104407, "from_user_id_str": "433104407", "from_user_name": "NewYorkCityForDotMe", "geo": null, "id": 148837361831260160, "id_str": "148837361831260161", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684431871/Location4_12nyc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684431871/Location4_12nyc_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "NewYorkCityFor.me Cornell wins NYC science-campus competition http://t.co/htIPnS5A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:26 +0000", "from_user": "NewYorkCityFor", "from_user_id": 433104407, "from_user_id_str": "433104407", "from_user_name": "NewYorkCityForDotMe", "geo": null, "id": 148837361323745280, "id_str": "148837361323745282", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684431871/Location4_12nyc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684431871/Location4_12nyc_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "NewYorkCityFor.me Suspect in NYC woman's burning due in court http://t.co/ILwAXVxm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:26 +0000", "from_user": "NewYorkCityFor", "from_user_id": 433104407, "from_user_id_str": "433104407", "from_user_name": "NewYorkCityForDotMe", "geo": null, "id": 148837361298575360, "id_str": "148837361298575360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684431871/Location4_12nyc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684431871/Location4_12nyc_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "NewYorkCityFor.me Suspect in NYC elevator torching due in court http://t.co/IBRfkjPd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:26 +0000", "from_user": "sheaintsalem", "from_user_id": 56728849, "from_user_id_str": "56728849", "from_user_name": "salem worku", "geo": null, "id": 148837358521942000, "id_str": "148837358521942016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695074188/74_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695074188/74_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT: @Deedl23 Nyc we need to reunite...i really miss you", "to_user": "Deedl23", "to_user_id": 121771695, "to_user_id_str": "121771695", "to_user_name": "Adel \\uE00E", "in_reply_to_status_id": 148836555262402560, "in_reply_to_status_id_str": "148836555262402560"}, +{"created_at": "Mon, 19 Dec 2011 18:49:25 +0000", "from_user": "gantzlersdfuk6", "from_user_id": 393383728, "from_user_id_str": "393383728", "from_user_name": "Gantzler South", "geo": null, "id": 148837356110229500, "id_str": "148837356110229505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1594459476/imagesCA85W91S_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1594459476/imagesCA85W91S_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I was on WABC-TV Eyewitness News 5:30pm w/ few words about rash of iPhone thefts in NYC - \"I have B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:20 +0000", "from_user": "rj_dudley", "from_user_id": 78484365, "from_user_id_str": "78484365", "from_user_name": "Richard Dudley", "geo": null, "id": 148837335537164300, "id_str": "148837335537164288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1111475037/twitter_megaphone_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1111475037/twitter_megaphone_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "For the Monday crowd: a 32 image panorama of #NYC I shot with a #WP7 from 86th floor of Empire St Bldg. http://t.co/K4nMJ7Me", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:20 +0000", "from_user": "ROwazany", "from_user_id": 348471687, "from_user_id_str": "348471687", "from_user_name": "Renee Owazany", "geo": null, "id": 148837333607776260, "id_str": "148837333607776256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1517472427/DSC_1499_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517472427/DSC_1499_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@astrologyzone You are a wonderful person! NYC in two days!!! XOXO", "to_user": "astrologyzone", "to_user_id": 43254421, "to_user_id_str": "43254421", "to_user_name": "Astrology Zone", "in_reply_to_status_id": 148744105348964350, "in_reply_to_status_id_str": "148744105348964352"}, +{"created_at": "Mon, 19 Dec 2011 18:49:20 +0000", "from_user": "mrmess", "from_user_id": 18378526, "from_user_id_str": "18378526", "from_user_name": "Jay", "geo": null, "id": 148837332718583800, "id_str": "148837332718583808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1603841998/vacayjay1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1603841998/vacayjay1_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Word! RT @chef2thestars: wishing i was in NYC for christmas...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:18 +0000", "from_user": "TrinalanaC_Rob", "from_user_id": 145079394, "from_user_id_str": "145079394", "from_user_name": "TRINALANA C-ROB", "geo": null, "id": 148837327370858500, "id_str": "148837327370858496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702617801/vantage_vision_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702617801/vantage_vision_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Hamza_Lu aye fuck boy you need to be gettin in touch wit me the NYC phoot shoot is at 7 am so do you know what time you gotta leave Buffalo", "to_user": "Hamza_Lu", "to_user_id": 137527326, "to_user_id_str": "137527326", "to_user_name": "Hitch Burney"}, +{"created_at": "Mon, 19 Dec 2011 18:49:14 +0000", "from_user": "alli_merino", "from_user_id": 233005491, "from_user_id_str": "233005491", "from_user_name": "Allison Merino", "geo": null, "id": 148837310862082050, "id_str": "148837310862082048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693670845/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693670845/image_normal.jpg", "source": "<a href="http://tweetlogix.com" rel="nofollow">Tweetlogix</a>", "text": "@_Avant_ here in NYC with fam and friends \\uD83D\\uDE0A. You?!", "to_user": "_Avant_", "to_user_id": 23579924, "to_user_id_str": "23579924", "to_user_name": "AV", "in_reply_to_status_id": 148836966178369540, "in_reply_to_status_id_str": "148836966178369536"}, +{"created_at": "Mon, 19 Dec 2011 18:49:12 +0000", "from_user": "LaneAuguZWB", "from_user_id": 383662839, "from_user_id_str": "383662839", "from_user_name": "Lane August", "geo": null, "id": 148837302670606340, "id_str": "148837302670606336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1611251774/avatar-christmas-63-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611251774/avatar-christmas-63-1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Suspect in NYC torching charged with murder - The Associated Press", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:10 +0000", "from_user": "kyoorochi", "from_user_id": 274721217, "from_user_id_str": "274721217", "from_user_name": "HHH", "geo": null, "id": 148837293212434430, "id_str": "148837293212434432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1293279899/006_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1293279899/006_normal.jpg", "source": "<a href="http://kyoorochi.com" rel="nofollow">orochi1487</a>", "text": "SGM Seeks LTR In NYC: Web-Slingin' With Spider-M http://t.co/s3xZPPsj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:09 +0000", "from_user": "deenay10", "from_user_id": 149683615, "from_user_id_str": "149683615", "from_user_name": "yvonne barry", "geo": null, "id": 148837287826956300, "id_str": "148837287826956288", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1040359847/Untitled_-_1.jpgMR_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1040359847/Untitled_-_1.jpgMR_normal.jpg", "source": "<a href="http://www.news-republic.com" rel="nofollow">News Republic</a>", "text": "Cornell wins NYC science-campus competition http://t.co/7rMvxBOi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:08 +0000", "from_user": "KingPromo757", "from_user_id": 137394276, "from_user_id_str": "137394276", "from_user_name": "Dreamcatcher", "geo": null, "id": 148837283481665540, "id_str": "148837283481665536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699329854/74233_576770879994_62305773_32054996_2661663_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699329854/74233_576770879994_62305773_32054996_2661663_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @newfaceCEO: #DMV everyone is invading DC for #THEEALLBLACK on 1.15.12 <NYC PA NJ 804 757> EVERYONE AND THEY MOMMA GONNA BE THERE !!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:06 +0000", "from_user": "Bigee79", "from_user_id": 105301503, "from_user_id_str": "105301503", "from_user_name": "Elvis P.", "geo": null, "id": 148837277475414000, "id_str": "148837277475414018", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1178210581/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1178210581/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @alanhahn: Davis pointed out how he always came to NYC to play at Rucker and always wanted to call the Garden home.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:05 +0000", "from_user": "burginre", "from_user_id": 35860714, "from_user_id_str": "35860714", "from_user_name": "Robert Burgin", "geo": null, "id": 148837272152846340, "id_str": "148837272152846336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/211633221/topcat_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/211633221/topcat_normal.jpg", "source": "<a href="http://www.nambu.com/" rel="nofollow">Nambu</a>", "text": "Best meals in NYC last week = Picholine (http://t.co/fZzfULJU), Robert (http://t.co/MqfXwpHJ), One if by Land (http://t.co/FFvAOdgc)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:05 +0000", "from_user": "scavix", "from_user_id": 18332524, "from_user_id_str": "18332524", "from_user_name": "scavix", "geo": null, "id": 148837270194110460, "id_str": "148837270194110464", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1548702937/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1548702937/avatar_normal.jpg", "source": "<a href="http://stampz.evolix.net/" rel="nofollow">Stampzz</a>", "text": "NYC building #NYCUSA http://t.co/4ahf6DQf via @Stampzz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:03 +0000", "from_user": "chef2thestars", "from_user_id": 22932219, "from_user_id_str": "22932219", "from_user_name": "Chef Tiffani Janelle", "geo": null, "id": 148837261545447420, "id_str": "148837261545447424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1654433705/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654433705/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "wishing i was in NYC for christmas...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:01 +0000", "from_user": "ReddingNews", "from_user_id": 19961203, "from_user_id_str": "19961203", "from_user_name": "Redding News", "geo": null, "id": 148837255291736060, "id_str": "148837255291736065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/75004099/sundialbridge_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/75004099/sundialbridge_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "ReddingNewsBlog Suspect in NYC torching charged with murder - The Associated Press: The Associated PressSuspect ... http://t.co/IEPm9Pmn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:59 +0000", "from_user": "nickshum", "from_user_id": 154407959, "from_user_id_str": "154407959", "from_user_name": "Nick Shum", "geo": null, "id": 148837247087689730, "id_str": "148837247087689728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1690150454/nickshum-new3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690150454/nickshum-new3_normal.png", "source": "<a href="http://reederapp.com" rel="nofollow">Reeder</a>", "text": "Swedish House Mafia at Madison Square Garden: the biggest night of dance music in NYC \\u2014 ever http://t.co/MLAU2n2S", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:59 +0000", "from_user": "MegaJohn_", "from_user_id": 270139665, "from_user_id_str": "270139665", "from_user_name": "John Ciotola", "geo": null, "id": 148837245250572300, "id_str": "148837245250572288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1453525753/37616_412816484961_759719961_4797539_3568575_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1453525753/37616_412816484961_759719961_4797539_3568575_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Crime is supposedly down in NYC but cops are getting shot in the face and grandmas are being lit on fire. #GetTheseDirtBagsOffTheStreets", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:58 +0000", "from_user": "ArtSceneandSeen", "from_user_id": 257546103, "from_user_id_str": "257546103", "from_user_name": "ArtScene&Seen", "geo": null, "id": 148837240842358800, "id_str": "148837240842358784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1254991652/download_art_scene__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1254991652/download_art_scene__normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @OHWOWGallery: NYC - This Tuesday from 6-8pm we launch Leo Fitzpatrick's book titled Not Garbage at the OHWOW Book Club. 227 Waverly Place.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:56 +0000", "from_user": "titlecharacter", "from_user_id": 8537112, "from_user_id_str": "8537112", "from_user_name": "Ben", "geo": null, "id": 148837233720430600, "id_str": "148837233720430592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1107140447/IMG_0984-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1107140447/IMG_0984-2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@brimil @PeterStrugala @worldfederation @vespejom Shouldn't the Jersey part be as easy as \"Philly vs NYC?\"", "to_user": "brimil", "to_user_id": 15208526, "to_user_id_str": "15208526", "to_user_name": "Britt Miller", "in_reply_to_status_id": 148834622816530430, "in_reply_to_status_id_str": "148834622816530432"}, +{"created_at": "Mon, 19 Dec 2011 18:48:55 +0000", "from_user": "OnBoardTours", "from_user_id": 310693718, "from_user_id_str": "310693718", "from_user_name": "OnBoard Tours", "geo": null, "id": 148837231145136130, "id_str": "148837231145136129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1411809804/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1411809804/images_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "New Campus in NYC according to @RelocationAlly: What Cornell's New Tech Campus Means for New York's Roosevelt Island http://t.co/4YcxuZJf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:55 +0000", "from_user": "LisaRachel8", "from_user_id": 58573973, "from_user_id_str": "58573973", "from_user_name": "Lisa Rachel", "geo": null, "id": 148837230889283600, "id_str": "148837230889283584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1584236482/RACHEL_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584236482/RACHEL_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @HotChelleRae: Don\\u2019t forget! We are playing a private show today at 5PM EST at the @iHeartRadio Theater in NYC. Enter for tix here: http://t.co/AzJSN2zV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:53 +0000", "from_user": "EvrydayTutorial", "from_user_id": 384536450, "from_user_id_str": "384536450", "from_user_name": "Everyday Tutorial", "geo": null, "id": 148837222274170880, "id_str": "148837222274170880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1657732195/2010-04-21-twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657732195/2010-04-21-twitter_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Japanese shimmer stick everyday makeup tutorial http://t.co/XDwOglEz #fashion #style #nyc #LA #makeup", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:53 +0000", "from_user": "BRym00", "from_user_id": 278773501, "from_user_id_str": "278773501", "from_user_name": "Brooke Rymer", "geo": null, "id": 148837220067975170, "id_str": "148837220067975168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1308424382/pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1308424382/pic_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "In heaven. In New York. Miss u @jrrymer ! #nyc http://t.co/Vl4BvbQs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:52 +0000", "from_user": "lindsayadler", "from_user_id": 20963273, "from_user_id_str": "20963273", "from_user_name": "Lindsay Adler", "geo": null, "id": 148837217853382660, "id_str": "148837217853382656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/669892027/17270_745225794426_5502739_42407856_5074335_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/669892027/17270_745225794426_5502739_42407856_5074335_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Last night was a very 'NYC. Went out with 2 girlfriends, had dinner with an amazing french DJ, at a french restaurant, then wine & chill", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:50 +0000", "from_user": "dougseamansCPT", "from_user_id": 102692112, "from_user_id_str": "102692112", "from_user_name": "Doug Seamans", "geo": null, "id": 148837209372495870, "id_str": "148837209372495873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1682973365/tw_12463997_1323438165_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682973365/tw_12463997_1323438165_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@LarysaFit thanks for following! Say hello to NYC for me! Miss the big apple! Have a great week!", "to_user": "LarysaFit", "to_user_id": 101032922, "to_user_id_str": "101032922", "to_user_name": "Larysa DiDio"}, +{"created_at": "Mon, 19 Dec 2011 18:48:50 +0000", "from_user": "JasonPuckettKJR", "from_user_id": 26707595, "from_user_id_str": "26707595", "from_user_name": "Jason Puckett", "geo": null, "id": 148837208051298300, "id_str": "148837208051298304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1673697123/Leach_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673697123/Leach_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Are the Stanford #Cardinal the best team in the #Pac12 ? Lone loss was to the #1 team in country by 6 in NYC.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:50 +0000", "from_user": "FaisalNayani", "from_user_id": 30811030, "from_user_id_str": "30811030", "from_user_name": "Faisal Nayani", "geo": null, "id": 148837207191466000, "id_str": "148837207191465984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1178795505/47359_464238797153_507362153_6449910_8073683_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1178795505/47359_464238797153_507362153_6449910_8073683_n_normal.jpg", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "Effing fabulous to be on Eastcoast standard time! Next flight at 3:10pm to LaGuardia airport in NYC http://t.co/kcp0yVvf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:49 +0000", "from_user": "BusinessWeeObri", "from_user_id": 372916499, "from_user_id_str": "372916499", "from_user_name": "Nickolas Topete", "geo": null, "id": 148837203441758200, "id_str": "148837203441758208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1541373520/1315939510_0633covdc_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541373520/1315939510_0633covdc_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/89PCbhfm Business class airline Odyssey plans London-NYC route - Chicago Tribune", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:47 +0000", "from_user": "Terrrrrrence93", "from_user_id": 195454640, "from_user_id_str": "195454640", "from_user_name": "Harreh Fashions", "geo": null, "id": 148837194327523330, "id_str": "148837194327523328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1671820709/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671820709/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@OneDirectionNY: NYC, WE HAVE TO WIN THIS NEXT CHALLENGE AND BUMP DALLAS DOWN TO THIRD.\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:45 +0000", "from_user": "RealSimpleJack", "from_user_id": 370767304, "from_user_id_str": "370767304", "from_user_name": "Simple Jack Matthews", "geo": null, "id": 148837189546033150, "id_str": "148837189546033152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1541264112/jack_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541264112/jack_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@WGWatson what do you think about a road trip to NYC?!", "to_user": "WGWatson", "to_user_id": 254158298, "to_user_id_str": "254158298", "to_user_name": "Goontronics C.E.O.", "in_reply_to_status_id": 148836370603970560, "in_reply_to_status_id_str": "148836370603970560"}, +{"created_at": "Mon, 19 Dec 2011 18:48:45 +0000", "from_user": "MikeTSherratt", "from_user_id": 380951341, "from_user_id_str": "380951341", "from_user_name": "Michael T Sherratt", "geo": null, "id": 148837185938931700, "id_str": "148837185938931713", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1597752728/322853_225723584154670_116954415031588_618415_1610039166_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1597752728/322853_225723584154670_116954415031588_618415_1610039166_o_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@DeepakChopra: Manhattan-20111219-00589.jpg Good Morning from NYC http://t.co/eSq6SUf0\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:44 +0000", "from_user": "classifications", "from_user_id": 153653509, "from_user_id_str": "153653509", "from_user_name": "Stephanie ", "geo": null, "id": 148837183321669630, "id_str": "148837183321669632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1637484124/Picture_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637484124/Picture_1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SarahMShaker: Don't miss @edward_burns #NewlywedsMovie with your best girlfriends: http://t.co/H2Mn1aZS #NYC #film", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:41 +0000", "from_user": "raahmoreira", "from_user_id": 78390008, "from_user_id_str": "78390008", "from_user_name": "Raissa Moraes", "geo": null, "id": 148837170931707900, "id_str": "148837170931707905", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693844154/472628861-0785d30b5aedd3d8dd2532544f904d24.4ee94d98-scaled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693844154/472628861-0785d30b5aedd3d8dd2532544f904d24.4ee94d98-scaled_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Por que os outlets de NYC s\\u00E3o isolados na cidade, hein? VSF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:41 +0000", "from_user": "D_Morris804", "from_user_id": 31038773, "from_user_id_str": "31038773", "from_user_name": "Dee", "geo": null, "id": 148837170625523700, "id_str": "148837170625523712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694081643/381781_10100247961954207_15604004_45853198_1593665708_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694081643/381781_10100247961954207_15604004_45853198_1593665708_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Trying to book this NYC to see the fam after Christmas & all my cousins are either working or out of town", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:39 +0000", "from_user": "MigVicious", "from_user_id": 370823470, "from_user_id_str": "370823470", "from_user_name": "Miguel Vicioso", "geo": null, "id": 148837162467606530, "id_str": "148837162467606529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1629367803/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629367803/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @alanhahn: Davis pointed out how he always came to NYC to play at Rucker and always wanted to call the Garden home.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:39 +0000", "from_user": "switz_d_witz", "from_user_id": 354346655, "from_user_id_str": "354346655", "from_user_name": "Bolous Sobanks", "geo": null, "id": 148837161188339700, "id_str": "148837161188339712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700554819/edited_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700554819/edited_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "U don't av tym 4 d ish I was bringin up? :)......nyc 1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:38 +0000", "from_user": "AllAboutMarlene", "from_user_id": 340462633, "from_user_id_str": "340462633", "from_user_name": "Marlene Nguepnang", "geo": null, "id": 148837156985647100, "id_str": "148837156985647104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1672035164/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672035164/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#NYC here i come! #lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:36 +0000", "from_user": "MissVInc", "from_user_id": 328803541, "from_user_id_str": "328803541", "from_user_name": "MiSS V INC.", "geo": null, "id": 148837150367031300, "id_str": "148837150367031296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1636434928/6336027154_ee4a612293_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1636434928/6336027154_ee4a612293_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Back on it this Monday. Long weekend in NYC on 50 Cent Video production set. All 12 of our... http://t.co/h23xaY7S", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:35 +0000", "from_user": "JanetLFalk", "from_user_id": 28583359, "from_user_id_str": "28583359", "from_user_name": "Janet L. Falk", "geo": null, "id": 148837144952188930, "id_str": "148837144952188928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/137518079/Janet_Falk_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/137518079/Janet_Falk_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@NYCMayorsOffice SOURCE #Roosevelt Island has a history of scientific innovation & research http://t.co/283eSHoj #nyc", "to_user": "NYCMayorsOffice", "to_user_id": 55338739, "to_user_id_str": "55338739", "to_user_name": "NYC Mayor's Office", "in_reply_to_status_id": 148802401959292930, "in_reply_to_status_id_str": "148802401959292928"}, +{"created_at": "Mon, 19 Dec 2011 18:48:34 +0000", "from_user": "beccaaawest", "from_user_id": 310319523, "from_user_id_str": "310319523", "from_user_name": "Rebecca West", "geo": null, "id": 148837141575766000, "id_str": "148837141575766016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668384899/Picture0019_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668384899/Picture0019_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@Aamnichole @JelLaFurno @daicydisaster Just remember that I'm a total FOB when it comes to NYC - HAHAHA.", "to_user": "Aamnichole", "to_user_id": 236226195, "to_user_id_str": "236226195", "to_user_name": "Nichola Nichols", "in_reply_to_status_id": 148836797986775040, "in_reply_to_status_id_str": "148836797986775040"}, +{"created_at": "Mon, 19 Dec 2011 18:48:33 +0000", "from_user": "jasonlankow", "from_user_id": 12483772, "from_user_id_str": "12483772", "from_user_name": "Jason Lankow", "geo": null, "id": 148837139520569340, "id_str": "148837139520569345", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/559643851/photo1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/559643851/photo1_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "The Lord Gave To NYC Tech Start-Ups And Universities, And The Lord Hath Taken Away (@Forbes) http://t.co/T5WQJ19k", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:30 +0000", "from_user": "LizDiaz227", "from_user_id": 243840565, "from_user_id_str": "243840565", "from_user_name": "Elizabeth Diaz", "geo": null, "id": 148837125524176900, "id_str": "148837125524176896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1316676132/DSC02903_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1316676132/DSC02903_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@MicheleBell21 Loved the Vlog, we love going into NYC and never knew about the ferry! I agree, that does not look like your future hubby! ;", "to_user": "MicheleBell21", "to_user_id": 18042169, "to_user_id_str": "18042169", "to_user_name": "Michele"}, +{"created_at": "Mon, 19 Dec 2011 18:48:30 +0000", "from_user": "WeARENYC", "from_user_id": 305041486, "from_user_id_str": "305041486", "from_user_name": "WE R NYC", "geo": null, "id": 148837124072935420, "id_str": "148837124072935424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1368521381/nyc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1368521381/nyc_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @YelpNYC: Very cool! RT @sethbannon: The @Yelp best NYC grilled cheese tour continues. (@ The Smith Restaurant w/ 4 others) http://t.co/oIKG1Rvn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:28 +0000", "from_user": "emilymonroe13", "from_user_id": 50615949, "from_user_id_str": "50615949", "from_user_name": "Emily Simpson", "geo": null, "id": 148837115822735360, "id_str": "148837115822735360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681832255/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681832255/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @FANGORIA: Alex Winter's FREAKED and John Sayles genre flicks to screen in NYC http://t.co/BQeCpCZH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:25 +0000", "from_user": "JustJon", "from_user_id": 14165753, "from_user_id_str": "14165753", "from_user_name": "Jon", "geo": null, "id": 148837101876674560, "id_str": "148837101876674560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/919883216/Jon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/919883216/Jon_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @nickyyates: looking for a videographer for this wednesday. whacha got nyc?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:23 +0000", "from_user": "ArianaxAngel", "from_user_id": 348707023, "from_user_id_str": "348707023", "from_user_name": "Melike Grande .\\u2665", "geo": null, "id": 148837097573322750, "id_str": "148837097573322752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693249086/rna_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693249086/rna_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ArianaGrande: If you're coming to my show on December 28 at @IrvingPlaza in NYC and want to come meet me after, here's how: http://t.co/1w7eeLFq! xoxo RT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:23 +0000", "from_user": "paynic", "from_user_id": 221841834, "from_user_id_str": "221841834", "from_user_name": "Nicholas Payton", "geo": null, "id": 148837096902242300, "id_str": "148837096902242304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1605090227/Getty_Crop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1605090227/Getty_Crop_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @LaurietheDancer: @paynic The Black Nanny. This is something that @alternate_takes & I talk abt all the time in NYC. Black hands pushing white strollers...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:22 +0000", "from_user": "dhmuns", "from_user_id": 112571905, "from_user_id_str": "112571905", "from_user_name": "Darren Munson", "geo": null, "id": 148837092011687940, "id_str": "148837092011687937", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/705931090/Wheel__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/705931090/Wheel__1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "It seems narrow to think NYC is the only place with testing issues. http://t.co/0zrdV9vq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:20 +0000", "from_user": "joshingstern", "from_user_id": 33495086, "from_user_id_str": "33495086", "from_user_name": "Josh Stern", "geo": null, "id": 148837084055085060, "id_str": "148837084055085056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1606605134/Profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606605134/Profile_normal.jpg", "source": "<a href="http://favstar.fm" rel="nofollow">Favstar.FM</a>", "text": "My favorite NYC Subway game: looking at the train floor and trying to guess whose Loogie is tubercular", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:19 +0000", "from_user": "ValeeTomlinson", "from_user_id": 264940726, "from_user_id_str": "264940726", "from_user_name": "V\\u03B1l\\u0454\\u044F\\u03B9\\u03B1 E\\u0455p\\u03B9\\u0438oz\\u03B1 \\u2665", "geo": null, "id": 148837079340695550, "id_str": "148837079340695552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688043318/screen_shot_2011-09-22_at_11_53_21_pm_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688043318/screen_shot_2011-09-22_at_11_53_21_pm_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @Jackson_Harris: I'm kinda sad it hasn't snowed here in NYC. Was hoping for a fun white Christmas full of sledding and snowball fights!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:19 +0000", "from_user": "SilliG25", "from_user_id": 126355959, "from_user_id_str": "126355959", "from_user_name": "Chris Gillis", "geo": null, "id": 148837077474230270, "id_str": "148837077474230272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668247783/DSC_1638-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668247783/DSC_1638-1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "NYC ur one packed bitch ... O hate you", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:16 +0000", "from_user": "newfaceCEO", "from_user_id": 28429066, "from_user_id_str": "28429066", "from_user_name": "J. Yancy", "geo": null, "id": 148837066145415170, "id_str": "148837066145415168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695407442/back_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695407442/back_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "#dmv everyone is invading DC for #theeallblack on 1.15.12 NYC PA NJ DA 804 757 EVERYONE AND THEY MOMMA GONNA BE THERE !!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:11 +0000", "from_user": "URUMAMURU", "from_user_id": 250275455, "from_user_id_str": "250275455", "from_user_name": "DJ URUMA", "geo": null, "id": 148837047120044030, "id_str": "148837047120044032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1631908019/URUMAMURU_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631908019/URUMAMURU_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @TeddyKing: Just landed in NYC, thank you JAPAN for being one of the best trips of my life! The best place to play music is with you guys! Peace & Love", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:10 +0000", "from_user": "PageantNation", "from_user_id": 14255485, "from_user_id_str": "14255485", "from_user_name": "PageantNation", "geo": null, "id": 148837042825084930, "id_str": "148837042825084928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/52226761/Pageant_Planner_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/52226761/Pageant_Planner_normal.gif", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "If you live in the NYC area and are serious about exploring your craft then this Industry Deal is for you...and... http://t.co/KHgPA1MH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:10 +0000", "from_user": "crystalpadley", "from_user_id": 312148391, "from_user_id_str": "312148391", "from_user_name": "Crystal Padley", "geo": null, "id": 148837042158190600, "id_str": "148837042158190593", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1384558805/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1384558805/image_normal.jpg", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "RT @SPINmagazine The @YYYs are back! They performed this wknd in NYC at a benefit for DJ Jonathan Toubin.//yesss!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:09 +0000", "from_user": "Dutchdaisy777", "from_user_id": 249366570, "from_user_id_str": "249366570", "from_user_name": "David Quinn", "geo": null, "id": 148837035736702980, "id_str": "148837035736702976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1264746647/Dutch_flowers__2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1264746647/Dutch_flowers__2__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@foodcyclist nice going, I think by now you see you can't live in NYC anymore, you've been to the Golden State, find your spot,,Peace", "to_user": "foodcyclist", "to_user_id": 144872991, "to_user_id_str": "144872991", "to_user_name": "John Suscovich", "in_reply_to_status_id": 148818921636634620, "in_reply_to_status_id_str": "148818921636634624"}, +{"created_at": "Mon, 19 Dec 2011 18:48:08 +0000", "from_user": "ArianatorDutch", "from_user_id": 370296413, "from_user_id_str": "370296413", "from_user_name": "Anne Grande. \\u2665", "geo": null, "id": 148837034113499140, "id_str": "148837034113499136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696849077/472375163_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696849077/472375163_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ArianaGrande: If you're coming to my show on December 28 at @IrvingPlaza in NYC and want to come meet me after, here's how: http://t.co/1w7eeLFq! xoxo RT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:07 +0000", "from_user": "Mathfi_Jobs", "from_user_id": 59126679, "from_user_id_str": "59126679", "from_user_name": "Mathfi", "geo": null, "id": 148837026672807940, "id_str": "148837026672807936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/326427455/tweet-mathfi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/326427455/tweet-mathfi_normal.jpg", "source": "<a href="http://www.maths-fi.com/" rel="nofollow">MathsFi Twitt</a>", "text": "Job Top US Bank (New York-USA): Senior Counterparty Risk Manager.+ MSc/P... http://t.co/cHqz57YY Quant IB Finance jobs 90", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:06 +0000", "from_user": "jostarworld", "from_user_id": 48506875, "from_user_id_str": "48506875", "from_user_name": "jovon bryan", "geo": null, "id": 148837025682952200, "id_str": "148837025682952192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699499177/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699499177/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@LoveDrunkie: I wish I was in NYC right now.\\u201Dcome Join me", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:06 +0000", "from_user": "jeremiahdobruck", "from_user_id": 151295556, "from_user_id_str": "151295556", "from_user_name": "Jeremiah Dobruck", "geo": null, "id": 148837024105906180, "id_str": "148837024105906176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1321949474/jdobruckcrop_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1321949474/jdobruckcrop_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "NYC's system for getting money from your council person is ridiculously complicated.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:03 +0000", "from_user": "OccupyWeather", "from_user_id": 400559295, "from_user_id_str": "400559295", "from_user_name": "Occupy Weather", "geo": null, "id": 148837012810629120, "id_str": "148837012810629121", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1612658667/ows_retreats_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612658667/ows_retreats_normal.jpg", "source": "<a href="http://24Ahead.com/" rel="nofollow">OccupyWeather</a>", "text": "Forecast for NYC Tuesday night: Rain. Low temp: 50F. #OWS #tlot #ocra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:02 +0000", "from_user": "OccupyWeather", "from_user_id": 400559295, "from_user_id_str": "400559295", "from_user_name": "Occupy Weather", "geo": null, "id": 148837006930231300, "id_str": "148837006930231296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1612658667/ows_retreats_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612658667/ows_retreats_normal.jpg", "source": "<a href="http://24Ahead.com/" rel="nofollow">OccupyWeather</a>", "text": "Forecast for NYC Tuesday: Rain. High temp: 52F. #OccupyWallSt #tcot #tpp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:00 +0000", "from_user": "Chi_baby05", "from_user_id": 82514392, "from_user_id_str": "82514392", "from_user_name": "Chioma Okoli", "geo": null, "id": 148836999539867650, "id_str": "148836999539867648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1663032197/330578332_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663032197/330578332_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Welp getting ready to leave NYC. Manhattan/Brooklyn you were GREAT to me! Much needed! Not ready to go back to Atlanta :'(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:00 +0000", "from_user": "LucyMathes", "from_user_id": 251350008, "from_user_id_str": "251350008", "from_user_name": "Lucy Mathes", "geo": null, "id": 148836998520639500, "id_str": "148836998520639488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697888958/388818_2751234983204_1327522276_3002019_1517446725_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697888958/388818_2751234983204_1327522276_3002019_1517446725_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Wish I could go to NYC over Christmas break like I did a couple years ago #somuchfun @brittanybeisner #twitterlessJulia", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:59 +0000", "from_user": "PerformerWebnr", "from_user_id": 61354258, "from_user_id_str": "61354258", "from_user_name": "PerformerWebinar", "geo": null, "id": 148836995995672580, "id_str": "148836995995672578", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/338703479/WebinarsNing_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/338703479/WebinarsNing_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "If you live in the NYC area and are serious about exploring your craft then this Industry Deal is for you...and... http://t.co/BVbpv94z", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:54 +0000", "from_user": "AllAboutMarlene", "from_user_id": 340462633, "from_user_id_str": "340462633", "from_user_name": "Marlene Nguepnang", "geo": null, "id": 148836974957047800, "id_str": "148836974957047809", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1672035164/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672035164/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "OMG! i want friday to be here already! going to #NYC for the #winter can't wait to see teh ball drop! #EXCITED", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:54 +0000", "from_user": "babyimfromny", "from_user_id": 311089466, "from_user_id_str": "311089466", "from_user_name": "mfk", "geo": null, "id": 148836972847308800, "id_str": "148836972847308802", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702139378/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702139378/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "So much warmer in dc than in back in NYC. Yayyy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:50 +0000", "from_user": "natalee11", "from_user_id": 40899032, "from_user_id_str": "40899032", "from_user_name": "natalee anderson", "geo": null, "id": 148836956170747900, "id_str": "148836956170747904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1665999184/twitter_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665999184/twitter_pic_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@DeltaAssist on 7p flight from JFK to atl tomorrow...what are odds I could get on a 4 or 5 flight out of NYC??", "to_user": "DeltaAssist", "to_user_id": 137460929, "to_user_id_str": "137460929", "to_user_name": "Delta Assist"}, +{"created_at": "Mon, 19 Dec 2011 18:47:49 +0000", "from_user": "HawthorneCEO", "from_user_id": 29453306, "from_user_id_str": "29453306", "from_user_name": "RoderickHawthorne II", "geo": null, "id": 148836953247318000, "id_str": "148836953247318016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1677794063/imagejpeg_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677794063/imagejpeg_2_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@PatWilliams_ Lmao hell yea NYC Best Seller Get Zane to publish it lol", "to_user": "PatWilliams_", "to_user_id": 43077094, "to_user_id_str": "43077094", "to_user_name": "Pat Williams ", "in_reply_to_status_id": 148836461737807870, "in_reply_to_status_id_str": "148836461737807872"}, +{"created_at": "Mon, 19 Dec 2011 18:47:49 +0000", "from_user": "thethirdday", "from_user_id": 19672529, "from_user_id_str": "19672529", "from_user_name": "Doug Yorke", "geo": null, "id": 148836953037602800, "id_str": "148836953037602816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1232125603/Noname_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1232125603/Noname_normal.jpg", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "Back in nyc. (@ EWR Terminal C w/ 9 others) http://t.co/f44QpVsD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:45 +0000", "from_user": "MyMansBelly", "from_user_id": 42077334, "from_user_id_str": "42077334", "from_user_name": "Pamela", "geo": null, "id": 148836934519762940, "id_str": "148836934519762945", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1661018300/Pam_Chocolate_Lip-Holiday_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661018300/Pam_Chocolate_Lip-Holiday_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@IanMakay You are too kind sir. xoxo Now I MUST get back to NYC.", "to_user": "IanMakay", "to_user_id": 231488894, "to_user_id_str": "231488894", "to_user_name": "Ian Makay", "in_reply_to_status_id": 148833331763613700, "in_reply_to_status_id_str": "148833331763613696"}, +{"created_at": "Mon, 19 Dec 2011 18:47:44 +0000", "from_user": "PRoducerlisaz", "from_user_id": 29601703, "from_user_id_str": "29601703", "from_user_name": "Elizabeth Zazueta", "geo": null, "id": 148836932825264130, "id_str": "148836932825264128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1486920865/Sam_and_Lisa-4817_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1486920865/Sam_and_Lisa-4817_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @jprpublicity: A #NYE soiree in #NYC, simultaneously swanky & a bit bawdy @BrooklynWinery! Secure a golden ticket now! http://t.co/cESWZui7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:41 +0000", "from_user": "BirdJob", "from_user_id": 335393409, "from_user_id_str": "335393409", "from_user_name": "Bird Job", "geo": null, "id": 148836917616709630, "id_str": "148836917616709632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1442418464/Twitter-for-job-Seekers_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1442418464/Twitter-for-job-Seekers_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#NY Sr. PM Needed! - CRM and Sales Analytics - NYC: New York City, My client, a top tier investmen... http://t.co/Ni5ogoPt #Project #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:39 +0000", "from_user": "temporalcube", "from_user_id": 97602509, "from_user_id_str": "97602509", "from_user_name": "Matt", "geo": null, "id": 148836909379100670, "id_str": "148836909379100672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1417713069/twitteravatar2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1417713069/twitteravatar2_normal.png", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "Oh, to continue: the drive from Vegas to NYC totaled a bit over 2550 miles and went through every time zone in the continental US.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:38 +0000", "from_user": "VilouxChicago", "from_user_id": 110879494, "from_user_id_str": "110879494", "from_user_name": "VILOUX\\u2122 :: Chicago", "geo": null, "id": 148836908888371200, "id_str": "148836908888371200", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/825457580/viloux-models-austin-tx-pics-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/825457580/viloux-models-austin-tx-pics-2_normal.jpg", "source": "<a href="http://www.viloux.com/" rel="nofollow">VILOUX</a>", "text": "Blank NYC Cargo Skinny http://t.co/qXEjsIIu (via @VILOUX)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:38 +0000", "from_user": "VERYGLOSSY", "from_user_id": 123940183, "from_user_id_str": "123940183", "from_user_name": "VERY GLOSSY", "geo": null, "id": 148836905977516030, "id_str": "148836905977516032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1021597157/VG_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1021597157/VG_normal.gif", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "IT'S HAPPENING: Like Cashmere? Like (the thought of) The Hamptons? Well, it's sample sale time, if you're in NYC! http://t.co/l2fDnBvz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:35 +0000", "from_user": "shaaaaron_", "from_user_id": 229936655, "from_user_id_str": "229936655", "from_user_name": "Aubrey's Queen", "geo": null, "id": 148836896099938300, "id_str": "148836896099938306", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701498997/shaaaaron__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701498997/shaaaaron__normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RTRTRT @LoveDrunkie: I wish I was in NYC right now.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:47:40 +0000", "from_user": "HUEMANBOOKS", "from_user_id": 44131286, "from_user_id_str": "44131286", "from_user_name": "HUE-MAN BOOKSTORE", "geo": null, "id": 148836915955773440, "id_str": "148836915955773440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/636134909/logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/636134909/logo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Dec 21 6-8pm You're Invited to Hue-Man Holidays Celebration w/Broadway Actress Saycon Sengbloh #NYC http://t.co/XPdgvl3m\\n(come & sing-along)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:39 +0000", "from_user": "temporalcube", "from_user_id": 97602509, "from_user_id_str": "97602509", "from_user_name": "Matt", "geo": null, "id": 148836909379100670, "id_str": "148836909379100672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1417713069/twitteravatar2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1417713069/twitteravatar2_normal.png", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "Oh, to continue: the drive from Vegas to NYC totaled a bit over 2550 miles and went through every time zone in the continental US.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:38 +0000", "from_user": "VilouxChicago", "from_user_id": 110879494, "from_user_id_str": "110879494", "from_user_name": "VILOUX\\u2122 :: Chicago", "geo": null, "id": 148836908888371200, "id_str": "148836908888371200", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/825457580/viloux-models-austin-tx-pics-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/825457580/viloux-models-austin-tx-pics-2_normal.jpg", "source": "<a href="http://www.viloux.com/" rel="nofollow">VILOUX</a>", "text": "Blank NYC Cargo Skinny http://t.co/qXEjsIIu (via @VILOUX)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:38 +0000", "from_user": "VERYGLOSSY", "from_user_id": 123940183, "from_user_id_str": "123940183", "from_user_name": "VERY GLOSSY", "geo": null, "id": 148836905977516030, "id_str": "148836905977516032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1021597157/VG_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1021597157/VG_normal.gif", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "IT'S HAPPENING: Like Cashmere? Like (the thought of) The Hamptons? Well, it's sample sale time, if you're in NYC! http://t.co/l2fDnBvz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:35 +0000", "from_user": "shaaaaron_", "from_user_id": 229936655, "from_user_id_str": "229936655", "from_user_name": "Aubrey's Queen", "geo": null, "id": 148836896099938300, "id_str": "148836896099938306", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701498997/shaaaaron__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701498997/shaaaaron__normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RTRTRT @LoveDrunkie: I wish I was in NYC right now.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:34 +0000", "from_user": "joseph_mayo", "from_user_id": 74653815, "from_user_id_str": "74653815", "from_user_name": "Joseph Mayo", "geo": +{"coordinates": [40.7703,-73.8641], "type": "Point"}, "id": 148836888181088260, "id_str": "148836888181088256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/713025030/ME_normal.bmp", "profile_image_url_https": "https://si0.twimg.com/profile_images/713025030/ME_normal.bmp", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Made it to LGA. Headed to taxis and on to NYC.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:29 +0000", "from_user": "redostoneage", "from_user_id": 28156710, "from_user_id_str": "28156710", "from_user_name": "Truth Tweeter", "geo": null, "id": 148836868165861380, "id_str": "148836868165861376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/661208289/get_fileCA9BVO04_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/661208289/get_fileCA9BVO04_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Gallup: Under Obama, Growing % See Big Government as 'Biggest Threat' http://t.co/Rvx44Jov #p2 #topprog #maddow #msnbc #cnn #npr #nyc #pbs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:29 +0000", "from_user": "waydonsexy", "from_user_id": 51600208, "from_user_id_str": "51600208", "from_user_name": "Waydon Destin", "geo": null, "id": 148836867767406600, "id_str": "148836867767406592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1128945011/26596_1434046974880_1344090040_2804602_1239461_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1128945011/26596_1434046974880_1344090040_2804602_1239461_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "finna make this move to NYC tonight... I hear my man @kendricklamar is playin a free show.. AYEEEE!!!!! #HiiiPower", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:29 +0000", "from_user": "nycfood", "from_user_id": 390396137, "from_user_id_str": "390396137", "from_user_name": "NYC Food", "geo": null, "id": 148836867490590720, "id_str": "148836867490590722", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1593358926/NYC_Food_Logo-Twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593358926/NYC_Food_Logo-Twitter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Let's keep the anti-obesity momentum going. More resources for helping kids eat healthy. http://t.co/Y5XWkEdH @nycHealthy @NYCSchools", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:29 +0000", "from_user": "masakit0421", "from_user_id": 190952564, "from_user_id_str": "190952564", "from_user_name": "Masa", "geo": null, "id": 148836867066970100, "id_str": "148836867066970113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1273531206/cat_heart_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273531206/cat_heart_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube video http://t.co/rAnR95hI Naked Music NYC - Live Today", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:28 +0000", "from_user": "cassykoh", "from_user_id": 79664267, "from_user_id_str": "79664267", "from_user_name": "Cassandra Koh", "geo": null, "id": 148836864177082370, "id_str": "148836864177082368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1165386341/gfh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1165386341/gfh_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TomCruise: Tom answers your questions at the NYC M:I-@GhostProtocol Premiere 2night! Submit your questions w/ #MissionNYC http://t.co/8FwxLVGC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:28 +0000", "from_user": "See_Mariee", "from_user_id": 384091664, "from_user_id_str": "384091664", "from_user_name": "Christina Marie", "geo": null, "id": 148836864118366200, "id_str": "148836864118366209", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1570332722/69486_1547761848139_1057839004_31572033_4597645_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1570332722/69486_1547761848139_1057839004_31572033_4597645_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#TwitterLies we know its NYC RT @CLG_Writes: Ive been all over the world and boston is deff one of the prettiest cities ive ever been in :-)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:27 +0000", "from_user": "lookupfolks", "from_user_id": 246380932, "from_user_id_str": "246380932", "from_user_name": "LookUpFolks", "geo": null, "id": 148836860301541380, "id_str": "148836860301541377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1452191546/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1452191546/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @redostoneage: Obama Victory! #Occupydenver trashes downtown civic center http://t.co/BBSiCW7i #ows #p2 #topprog #maddow #msnbc #cnn #nyc #npr #pbs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:26 +0000", "from_user": "__RickThaRuler", "from_user_id": 204010098, "from_user_id_str": "204010098", "from_user_name": "Scarface Montana ", "geo": null, "id": 148836855612309500, "id_str": "148836855612309504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697460783/CbVNMkIL_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697460783/CbVNMkIL_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@Wale @MeekMill show tonight!!!!!! Nyc best buy theater.", "to_user": "Wale", "to_user_id": 17929027, "to_user_id_str": "17929027", "to_user_name": "Wale Folarin "}, +{"created_at": "Mon, 19 Dec 2011 18:47:21 +0000", "from_user": "fashionideaz", "from_user_id": 243791334, "from_user_id_str": "243791334", "from_user_name": "Marko Azzioni", "geo": null, "id": 148836835722919940, "id_str": "148836835722919936", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1581514474/MW_cover_june_man_by_hollowone_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1581514474/MW_cover_june_man_by_hollowone_normal.jpg", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "#FashionNews @orla_kiely opens #NYC flagship store http://t.co/xdlXr2wl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:20 +0000", "from_user": "LoveDrunkie", "from_user_id": 33662801, "from_user_id_str": "33662801", "from_user_name": "Nina Marie\\uE10E", "geo": null, "id": 148836831104991230, "id_str": "148836831104991232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693811068/471111101_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693811068/471111101_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I wish I was in NYC right now.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:19 +0000", "from_user": "rooftotable", "from_user_id": 345310816, "from_user_id_str": "345310816", "from_user_name": "Rob Stephenson", "geo": null, "id": 148836825895669760, "id_str": "148836825895669760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1469122037/11pu_phoenixgarden_529x350_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1469122037/11pu_phoenixgarden_529x350_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Great talk with Eli Zabar, @HeyAnnieNovak and Joe Nasur, carrot city co author, on the state of agriculture in NYC on @wnyc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:18 +0000", "from_user": "JU_lOVEMEE", "from_user_id": 426830215, "from_user_id_str": "426830215", "from_user_name": "Julie Malone", "geo": null, "id": 148836823429431300, "id_str": "148836823429431296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670094875/K6z9FLM1_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670094875/K6z9FLM1_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@tweetsfrom_ang nyc?!!", "to_user": "tweetsfrom_ang", "to_user_id": 59572545, "to_user_id_str": "59572545", "to_user_name": "Angela Ocasio", "in_reply_to_status_id": 148836644617850880, "in_reply_to_status_id_str": "148836644617850880"}, +{"created_at": "Mon, 19 Dec 2011 18:47:18 +0000", "from_user": "TheRealG5Gi", "from_user_id": 390868177, "from_user_id_str": "390868177", "from_user_name": "Sean Corey", "geo": null, "id": 148836822158557200, "id_str": "148836822158557184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700715599/030_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700715599/030_copy_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @caliFAWNia: Lol lemme c what I can do! \"@TheRealG5Gi: now only if @caliFAWNia can put a nYc nigga down on getting a @DJmustard beat!!\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:17 +0000", "from_user": "CandyBear1196", "from_user_id": 405915192, "from_user_id_str": "405915192", "from_user_name": "Candy A. ", "geo": null, "id": 148836819004424200, "id_str": "148836819004424192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1624539413/Mostly_me_051__3__normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624539413/Mostly_me_051__3__normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@_1DirectionUSA because there's more people in places like Dallas, NYC, and LA.", "to_user": "_1DirectionUSA", "to_user_id": 261747904, "to_user_id_str": "261747904", "to_user_name": "Lejla", "in_reply_to_status_id": 148835535228641280, "in_reply_to_status_id_str": "148835535228641281"}, +{"created_at": "Mon, 19 Dec 2011 18:47:16 +0000", "from_user": "tiffanywc", "from_user_id": 44802616, "from_user_id_str": "44802616", "from_user_name": "Tiffany", "geo": null, "id": 148836814277451780, "id_str": "148836814277451776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693833572/IMG_0547_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693833572/IMG_0547_normal.JPG", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "Hungry. #nyc #squirrel #park @ Madison Square Park http://t.co/ZIGr1pa5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:16 +0000", "from_user": "NikasTweets", "from_user_id": 24474625, "from_user_id_str": "24474625", "from_user_name": "Nika Rastakhiz", "geo": null, "id": 148836813186936830, "id_str": "148836813186936832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1562403444/boat_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1562403444/boat_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@irma_penunuri I live in nyc now! How are you? Any GPs as of late?", "to_user": "irma_penunuri", "to_user_id": 26456024, "to_user_id_str": "26456024", "to_user_name": "Irma Miriam Pe\\u00F1u\\u00F1uri", "in_reply_to_status_id": 148833906932715520, "in_reply_to_status_id_str": "148833906932715521"}, +{"created_at": "Mon, 19 Dec 2011 18:47:15 +0000", "from_user": "_ARos_", "from_user_id": 221426783, "from_user_id_str": "221426783", "from_user_name": "Ros", "geo": null, "id": 148836811010093060, "id_str": "148836811010093058", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1609575086/Bandana_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609575086/Bandana_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@luvmyass77 Will do. I'll be there in NYC in January.", "to_user": "luvmyass77", "to_user_id": 426196788, "to_user_id_str": "426196788", "to_user_name": "Sarah ", "in_reply_to_status_id": 148836597096382460, "in_reply_to_status_id_str": "148836597096382464"}, +{"created_at": "Mon, 19 Dec 2011 18:47:14 +0000", "from_user": "TomSchryver", "from_user_id": 20740042, "from_user_id_str": "20740042", "from_user_name": "Tom Schryver", "geo": null, "id": 148836807591735300, "id_str": "148836807591735296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/461357210/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/461357210/avatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Congrats to Cornell for winning the NYC tech campus over the Leland Stanford \"you can't fire us because we quit\" Junior University!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:14 +0000", "from_user": "David_Architect", "from_user_id": 45948763, "from_user_id_str": "45948763", "from_user_name": "David Hansen", "geo": null, "id": 148836804550869000, "id_str": "148836804550868992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1180378561/Dave-profile1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1180378561/Dave-profile1_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "Making the Most of Smaller Spaces http://t.co/gh3ocleu #greenbuilding #modern #design #nyc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:13 +0000", "from_user": "Len_smoothtalka", "from_user_id": 346447798, "from_user_id_str": "346447798", "from_user_name": "leonard mangani zulu", "geo": null, "id": 148836801728086000, "id_str": "148836801728086016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670121644/lenn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670121644/lenn_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SoLavvs_Rihanna sup,nyc pic..r they real? lol!", "to_user": "SoLavvs_Rihanna", "to_user_id": 253332117, "to_user_id_str": "253332117", "to_user_name": "Catherine Fenty"}, +{"created_at": "Mon, 19 Dec 2011 18:47:13 +0000", "from_user": "bull1tz", "from_user_id": 154604447, "from_user_id_str": "154604447", "from_user_name": "Mitchell", "geo": null, "id": 148836800125866000, "id_str": "148836800125865984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1506771008/BUSINESSS_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1506771008/BUSINESSS_normal.jpg", "source": "<a href="http://tweetmeme.com" rel="nofollow">TweetMeme</a>", "text": "Cops: Woman burned in NYC elevator over $2K Link Chronicle http://t.co/JLIKZtWM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:10 +0000", "from_user": "TMStreetAnalyst", "from_user_id": 282100036, "from_user_id_str": "282100036", "from_user_name": "Main Street Analyst", "geo": null, "id": 148836789052907520, "id_str": "148836789052907520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1347643962/TheMainStreetAnalystMaxus1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1347643962/TheMainStreetAnalystMaxus1_normal.png", "source": "<a href="http://www.visibli.com" rel="nofollow">Visibli</a>", "text": "R&L IT & Telecom Consultants, NYC Video Conferencing. Desktop Equipment Relocation, Voice and Data http://t.co/1yNfSnPg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:10 +0000", "from_user": "CTphats", "from_user_id": 46116313, "from_user_id_str": "46116313", "from_user_name": "chris travers", "geo": null, "id": 148836788352458750, "id_str": "148836788352458752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680241037/331091409_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680241037/331091409_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "It's a lock...NYC is the NYE move", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:10 +0000", "from_user": "SUPERSTARMIX", "from_user_id": 94373057, "from_user_id_str": "94373057", "from_user_name": "Marco Santaniello", "geo": null, "id": 148836786636996600, "id_str": "148836786636996610", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662019978/ME-NEW-SITO_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662019978/ME-NEW-SITO_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Hi @MilkStudios :D #NYC #manhattan http://t.co/e4Zyldug", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:08 +0000", "from_user": "samanthagross", "from_user_id": 18149894, "from_user_id_str": "18149894", "from_user_name": "Samantha Gross", "geo": null, "id": 148836780278427650, "id_str": "148836780278427648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1296267355/profilepic_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1296267355/profilepic_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Ex-operative Haggerty to return $750k to Mayor @MikeBloomberg and spend up to 4 yrs in prison, via @jennpeltz @AP http://t.co/Q5UWUD1M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:06 +0000", "from_user": "Ty_gibson21", "from_user_id": 411815714, "from_user_id_str": "411815714", "from_user_name": "Ty Gibson", "geo": null, "id": 148836772820942850, "id_str": "148836772820942848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700651347/314041_208427139220033_100001582464864_583435_7691870_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700651347/314041_208427139220033_100001582464864_583435_7691870_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "NYC is that motha fu**ing city", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:02 +0000", "from_user": "alexdao", "from_user_id": 14620139, "from_user_id_str": "14620139", "from_user_name": "Alexandra Dao", "geo": null, "id": 148836757306216450, "id_str": "148836757306216448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1517854769/alex_black_and_white_prints_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517854769/alex_black_and_white_prints_normal", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@safesolvent Would love to! Lemme know when you're in NYC again. :)", "to_user": "safesolvent", "to_user_id": 14634291, "to_user_id_str": "14634291", "to_user_name": "Martin Reisch", "in_reply_to_status_id": 148835528106709000, "in_reply_to_status_id_str": "148835528106708992"}, +{"created_at": "Mon, 19 Dec 2011 18:47:02 +0000", "from_user": "jimarmstrong_", "from_user_id": 32546306, "from_user_id_str": "32546306", "from_user_name": "Jim Armstrong", "geo": null, "id": 148836754936442880, "id_str": "148836754936442881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1397203445/Fish_Picture_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1397203445/Fish_Picture_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@meritayl - buffalo was amazing, you truly missed out - people are nicer than nyc folk & niagara falls trumps the east river any day", "to_user": "meritayl", "to_user_id": 22996779, "to_user_id_str": "22996779", "to_user_name": "Meri T."}, +{"created_at": "Mon, 19 Dec 2011 18:47:00 +0000", "from_user": "ShellsN2sprts", "from_user_id": 258588444, "from_user_id_str": "258588444", "from_user_name": "Ashelle B", "geo": null, "id": 148836749295099900, "id_str": "148836749295099904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1694036912/Events14_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694036912/Events14_normal.JPG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@SuchALibra what is this about NYC? What is boy genius doing in NYC? You know Jordan is my dude", "to_user": "SuchALibra", "to_user_id": 174492144, "to_user_id_str": "174492144", "to_user_name": "Ms. King", "in_reply_to_status_id": 148827998479589380, "in_reply_to_status_id_str": "148827998479589378"}, +{"created_at": "Mon, 19 Dec 2011 18:47:00 +0000", "from_user": "jsuchoff", "from_user_id": 183002366, "from_user_id_str": "183002366", "from_user_name": "Jordan Suchoff", "geo": null, "id": 148836748456243200, "id_str": "148836748456243202", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1304545540/IMG00088-20110324-2306_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1304545540/IMG00088-20110324-2306_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Not many views better than coming over the GW bridge and seeing the NYC skyline. #tec", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:00 +0000", "from_user": "BiGMERF", "from_user_id": 16753365, "from_user_id_str": "16753365", "from_user_name": "Android Junky ", "geo": null, "id": 148836745650241540, "id_str": "148836745650241536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1671356296/e8dc8f1a-b51f-4c9e-9c1b-2ca3b64be895_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671356296/e8dc8f1a-b51f-4c9e-9c1b-2ca3b64be895_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@wimbet many on xda reporting shipping emails since st night. Also reporting NYC stores got them toy #transformerprime", "to_user": "wimbet", "to_user_id": 14318328, "to_user_id_str": "14318328", "to_user_name": "Taylor Wimberly"}, +{"created_at": "Mon, 19 Dec 2011 18:46:57 +0000", "from_user": "rahmaidaqilah", "from_user_id": 296597407, "from_user_id_str": "296597407", "from_user_name": "aqilah rahmaida", "geo": null, "id": 148836736238239740, "id_str": "148836736238239747", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1692458116/P06-01-11_13.57_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692458116/P06-01-11_13.57_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "RT @DanKimRedMango: It's a beautiful day in New York City. #instagram #nyc http://t.co/p20wOVu6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:56 +0000", "from_user": "rschulteison7", "from_user_id": 18678121, "from_user_id_str": "18678121", "from_user_name": "Ryan Schulteis", "geo": null, "id": 148836729309245440, "id_str": "148836729309245441", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1556543119/twiittter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1556543119/twiittter_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Awesome view of NYC! http://t.co/atOpXuEW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:49 +0000", "from_user": "iSlapFATHoes__", "from_user_id": 386012342, "from_user_id_str": "386012342", "from_user_name": "Alicia Jarriah \\u2661", "geo": null, "id": 148836703275204600, "id_str": "148836703275204608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700292413/zkN7D30j_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700292413/zkN7D30j_normal", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "= . = feel like driving to NYC real soon. It'd be cool if I had someone to vibe with.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:49 +0000", "from_user": "karenjeynes", "from_user_id": 23357829, "from_user_id_str": "23357829", "from_user_name": "Karen Jeynes", "geo": null, "id": 148836702566359040, "id_str": "148836702566359040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675680634/christmaspiglet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675680634/christmaspiglet_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@simonwillo @magicmike1313 @TheOfficialJMG gentlefolk, were I to find myself in NYC in May, might any of you have a spare couch?", "to_user": "simonwillo", "to_user_id": 19868489, "to_user_id_str": "19868489", "to_user_name": "Simon Williamson"}, +{"created_at": "Mon, 19 Dec 2011 18:46:46 +0000", "from_user": "LaurietheDancer", "from_user_id": 129020981, "from_user_id_str": "129020981", "from_user_name": "Laurie M. Taylor", "geo": null, "id": 148836686934183940, "id_str": "148836686934183937", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1475941491/laurie_038-smaller_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1475941491/laurie_038-smaller_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@paynic The Black Nanny. This is something that @alternate_takes & I talk abt all the time in NYC. Black hands pushing white strollers...", "to_user": "paynic", "to_user_id": 221841834, "to_user_id_str": "221841834", "to_user_name": "Nicholas Payton"}, +{"created_at": "Mon, 19 Dec 2011 18:46:45 +0000", "from_user": "WhatHappensInZ", "from_user_id": 87029077, "from_user_id_str": "87029077", "from_user_name": "WhatHappensInZrce", "geo": null, "id": 148836684136583170, "id_str": "148836684136583168", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1125301496/59035_1541789699126_1066469099_1499713_5438565_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1125301496/59035_1541789699126_1066469099_1499713_5438565_n_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Avicii - Levels (Cazzette NYC Mode Bootleg Radio Edit) [HD] http://t.co/uWGNbdX4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:43 +0000", "from_user": "couchsessions", "from_user_id": 17630644, "from_user_id_str": "17630644", "from_user_name": "The Couch Sessions", "geo": null, "id": 148836675949314050, "id_str": "148836675949314048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683023085/gravitystone_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683023085/gravitystone_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "READ THIS! READER BEST OF 2011: @JoseRMejia - \\u00A0 Name: Jose Location: NYC Website: Largetail Follow on Twitter Kanye ... http://t.co/141LTGmY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:42 +0000", "from_user": "JanetLFalk", "from_user_id": 28583359, "from_user_id_str": "28583359", "from_user_name": "Janet L. Falk", "geo": null, "id": 148836673462083600, "id_str": "148836673462083584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/137518079/Janet_Falk_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/137518079/Janet_Falk_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@juliewood SOURCE #Roosevelt Island has a history of scientific innovation & research http://t.co/283eSHoj #nyc", "to_user": "juliewood", "to_user_id": 15949714, "to_user_id_str": "15949714", "to_user_name": "Julie Wood"}, +{"created_at": "Mon, 19 Dec 2011 18:46:42 +0000", "from_user": "NYSportzNut", "from_user_id": 91021043, "from_user_id_str": "91021043", "from_user_name": "Lou Bolkovic", "geo": null, "id": 148836672849707000, "id_str": "148836672849707008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1116387987/IMG00001-20100806-1534_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1116387987/IMG00001-20100806-1534_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@matthewcerrone I took my 9 month old to Macys in NYC", "to_user": "matthewcerrone", "to_user_id": 15025802, "to_user_id_str": "15025802", "to_user_name": "Matthew Cerrone", "in_reply_to_status_id": 148836324428873730, "in_reply_to_status_id_str": "148836324428873728"}, +{"created_at": "Mon, 19 Dec 2011 18:46:41 +0000", "from_user": "craigfleishman", "from_user_id": 26006157, "from_user_id_str": "26006157", "from_user_name": "Craig Fleishman", "geo": null, "id": 148836669326499840, "id_str": "148836669326499840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1472688851/twitter4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1472688851/twitter4_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @cornellsun: 2:30 today: Bloomberg will announce Cornell won the NYC tech campus competition. Check @cornellsun for live tweets of the event.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:39 +0000", "from_user": "veronica_ladiva", "from_user_id": 41898423, "from_user_id_str": "41898423", "from_user_name": "Veronica Paredes", "geo": null, "id": 148836658517782530, "id_str": "148836658517782528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1680394385/image201112050001_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680394385/image201112050001_normal.jpg", "source": "<a href="http://www.likemytweets.com/" rel="nofollow">Like My Tweets</a>", "text": "Just saw some awesome artifacts at the nyc public library [Like it? http://t.co/etG2Brjl ]", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:38 +0000", "from_user": "RudePacMan", "from_user_id": 110285629, "from_user_id_str": "110285629", "from_user_name": "\\u2714 Verified Stoner", "geo": null, "id": 148836656403853300, "id_str": "148836656403853314", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1494092421/social_elite_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1494092421/social_elite_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "#Shoutout to my tattoo artist Shante from NYC. She in GA now bout to ink me some more", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:38 +0000", "from_user": "marcirenee23", "from_user_id": 391109125, "from_user_id_str": "391109125", "from_user_name": "marci g", "geo": null, "id": 148836654810005500, "id_str": "148836654810005504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1661170112/aFiMDn14_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661170112/aFiMDn14_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "NYC bound", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:38 +0000", "from_user": "UnicornMeatNYC", "from_user_id": 325962987, "from_user_id_str": "325962987", "from_user_name": "Unicorn Meat", "geo": null, "id": 148836653522366460, "id_str": "148836653522366464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1418322333/bubble-kingdom_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1418322333/bubble-kingdom_normal.jpg", "source": "<a href="http://www.mailchimp.com" rel="nofollow">MailChimp</a>", "text": "Largest Warehouse Party in NYC for New Years Eve - http://t.co/dI0bNfwG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:37 +0000", "from_user": "VilliersIV", "from_user_id": 280634596, "from_user_id_str": "280634596", "from_user_name": "Ordell Robbie", "geo": null, "id": 148836649768452100, "id_str": "148836649768452096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1688324250/7319490e22df11e1a87612313804ec91_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688324250/7319490e22df11e1a87612313804ec91_7_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Goodbye NYC, be back for new years http://t.co/fWufzLvr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:37 +0000", "from_user": "lkl71111", "from_user_id": 26371685, "from_user_id_str": "26371685", "from_user_name": "Noel Noel", "geo": null, "id": 148836649676189700, "id_str": "148836649676189696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1408960549/130880036055988_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1408960549/130880036055988_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@iAmRozayMylan ahhhhh i didnt know u were in nyc? where u there last weekend when i was? booooooo. im in miami now.", "to_user": "iAmRozayMylan", "to_user_id": 394079360, "to_user_id_str": "394079360", "to_user_name": "Rozay Mylan ", "in_reply_to_status_id": 148834307941740540, "in_reply_to_status_id_str": "148834307941740544"}, +{"created_at": "Mon, 19 Dec 2011 18:46:36 +0000", "from_user": "OhMyDarling118", "from_user_id": 230894910, "from_user_id_str": "230894910", "from_user_name": "Maria Darling", "geo": null, "id": 148836646685655040, "id_str": "148836646685655040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1655599116/111123-205634_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655599116/111123-205634_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "just bumped into a lady with a cane.. lmao #oops #nyc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:35 +0000", "from_user": "iphoneapps4", "from_user_id": 235133728, "from_user_id_str": "235133728", "from_user_name": "Mary Bowling", "geo": null, "id": 148836643552505860, "id_str": "148836643552505857", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1209184602/iphone-girl_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1209184602/iphone-girl_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Best NYC iPhone Apps - CheapOair (blog) http://t.co/GRw7qZpG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:35 +0000", "from_user": "rapenays", "from_user_id": 138601047, "from_user_id_str": "138601047", "from_user_name": "Ramon Antonio Pe\\u00F1a", "geo": null, "id": 148836641304350720, "id_str": "148836641304350720", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1683290966/IMG01677-20111126-1915_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683290966/IMG01677-20111126-1915_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "yo los conosco es que cantan bien men..@Raemcito Cooomo Pero La Masa Tipica, unos muchachos de aqui de #SPM0.23 estan picando bien en NYC!", "to_user": "Raemcito", "to_user_id": 48536068, "to_user_id_str": "48536068", "to_user_name": "Raem Cambero", "in_reply_to_status_id": 148836215674781700, "in_reply_to_status_id_str": "148836215674781696"}, +{"created_at": "Mon, 19 Dec 2011 18:46:34 +0000", "from_user": "carolrubiao", "from_user_id": 78496462, "from_user_id_str": "78496462", "from_user_name": "Carolina Rubiao", "geo": null, "id": 148836640025083900, "id_str": "148836640025083905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692075494/303812_2547500764026_1149006853_33080088_1548039195_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692075494/303812_2547500764026_1149006853_33080088_1548039195_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@alinagow94 NYC. :') send pictures!", "to_user": "alinagow94", "to_user_id": 30479389, "to_user_id_str": "30479389", "to_user_name": "Alina Myer", "in_reply_to_status_id": 148826828168114180, "in_reply_to_status_id_str": "148826828168114177"}, +{"created_at": "Mon, 19 Dec 2011 18:46:31 +0000", "from_user": "ChrissPerezz", "from_user_id": 283848981, "from_user_id_str": "283848981", "from_user_name": "Chris Perez", "geo": null, "id": 148836626091606000, "id_str": "148836626091606016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1629497023/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629497023/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@LouisArtisan once you said you were falling about nyc not nys I was like, lol idc, cus I havent been there n dont care if I do.DoesLookNice", "to_user": "LouisArtisan", "to_user_id": 58723308, "to_user_id_str": "58723308", "to_user_name": "L.A.", "in_reply_to_status_id": 148836182908874750, "in_reply_to_status_id_str": "148836182908874752"}, +{"created_at": "Mon, 19 Dec 2011 18:46:21 +0000", "from_user": "theMichaelShane", "from_user_id": 18650289, "from_user_id_str": "18650289", "from_user_name": "Michael Shane", "geo": null, "id": 148836585197142000, "id_str": "148836585197142016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/791572226/mechillin_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/791572226/mechillin_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@droobloo ha in NYC mine change by the minute", "to_user": "droobloo", "to_user_id": 90983898, "to_user_id_str": "90983898", "to_user_name": "Alain Metz", "in_reply_to_status_id": 148836368192249860, "in_reply_to_status_id_str": "148836368192249856"}, +{"created_at": "Mon, 19 Dec 2011 18:46:20 +0000", "from_user": "KellySchwark", "from_user_id": 16831745, "from_user_id_str": "16831745", "from_user_name": "KellySchwark", "geo": null, "id": 148836581359353860, "id_str": "148836581359353857", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1640933164/NASAtweetup.005_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640933164/NASAtweetup.005_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @bethbeck: Job announcement: Chief Educator for Intrepid Air & Space Museum in NYC http://t.co/mKqf4Qww", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:20 +0000", "from_user": "mycityway", "from_user_id": 124645060, "from_user_id_str": "124645060", "from_user_name": "MyCityWay", "geo": null, "id": 148836577588678660, "id_str": "148836577588678656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1574338619/twitterProfile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1574338619/twitterProfile_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Shop 'Til You Drop in #NYC: 18 Tips That Will Help You Save Big This Holiday Season http://t.co/RAGrMjr7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:19 +0000", "from_user": "ModelWorldBlog", "from_user_id": 327378411, "from_user_id_str": "327378411", "from_user_name": "Beauty Is Fashion", "geo": null, "id": 148836575386681340, "id_str": "148836575386681344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699766547/New_ModelWorld_Logo_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699766547/New_ModelWorld_Logo_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "BGLH Forum Meetup in NYC: The BGLH Forum\\u2018s New York City Naturals group met up two weekends ago ... http://t.co/YSLgHrKX #ModelWorld2011", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:17 +0000", "from_user": "saschasokolovic", "from_user_id": 324173247, "from_user_id_str": "324173247", "from_user_name": "sarah sokolovic", "geo": null, "id": 148836565945298940, "id_str": "148836565945298945", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1430954213/sarah1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1430954213/sarah1_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @jjkeyes: NYC Glitterati Celebrate Ziggy Stardust At Bowieball / Queerty http://t.co/RS1xdj8Q via @queerty #bowieball @derycktodd @ladyrizo #GlamRock", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:17 +0000", "from_user": "antupaul", "from_user_id": 436913650, "from_user_id_str": "436913650", "from_user_name": "Antu Paul (Bablu)", "geo": null, "id": 148836565878190080, "id_str": "148836565878190080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699677440/por._normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699677440/por._normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@SrishtiM very nyc :)", "to_user": "SrishtiM", "to_user_id": 131416289, "to_user_id_str": "131416289", "to_user_name": "Srishti Mathur", "in_reply_to_status_id": 148835853765050370, "in_reply_to_status_id_str": "148835853765050369"}, +{"created_at": "Mon, 19 Dec 2011 18:46:16 +0000", "from_user": "IsoscelesDream", "from_user_id": 193142803, "from_user_id_str": "193142803", "from_user_name": "Isosceles", "geo": null, "id": 148836562594054140, "id_str": "148836562594054144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1127957897/tiny_pink_purple_bouquet_Background_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1127957897/tiny_pink_purple_bouquet_Background_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "Imagine New York City! http://t.co/cYjFD3DK #NYC #Imagine", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:15 +0000", "from_user": "trishaclarkin", "from_user_id": 32855469, "from_user_id_str": "32855469", "from_user_name": "Trisha Clarkin", "geo": null, "id": 148836559557369860, "id_str": "148836559557369857", "iso_language_code": "hu", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1415398337/trisha_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1415398337/trisha_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "RT @PatoPaez: Kenny's #streetart #nyc http://t.co/7jVV4Lpa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:15 +0000", "from_user": "_Gemma325", "from_user_id": 52025991, "from_user_id_str": "52025991", "from_user_name": "Gemma", "geo": null, "id": 148836558991147000, "id_str": "148836558991147008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1607464845/P1030046_-_Copy_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607464845/P1030046_-_Copy_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TomCruise: Tom answers your questions at the NYC M:I-@GhostProtocol Premiere 2night! Submit your questions w/ #MissionNYC http://t.co/8FwxLVGC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:14 +0000", "from_user": "AjStrick301", "from_user_id": 22565087, "from_user_id_str": "22565087", "from_user_name": "ANTHONY STRICKLAND", "geo": null, "id": 148836556105465860, "id_str": "148836556105465856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693928707/331514253-500x500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693928707/331514253-500x500_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for iPhone</a>", "text": "@DonnieBoi09 that don't mean a thing I ain't ballin... U the ballet goin up NYC and all", "to_user": "DonnieBoi09", "to_user_id": 36437677, "to_user_id_str": "36437677", "to_user_name": "donte walker", "in_reply_to_status_id": 148552109502115840, "in_reply_to_status_id_str": "148552109502115840"}, +{"created_at": "Mon, 19 Dec 2011 18:46:14 +0000", "from_user": "topresources", "from_user_id": 435398496, "from_user_id_str": "435398496", "from_user_name": "AUSTIN JOHN", "geo": null, "id": 148836555803467780, "id_str": "148836555803467776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1690031333/1640-New-3C_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690031333/1640-New-3C_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Billboard News: Ever since Darren Criss surged into public consciousness last year on \"Glee\\u2026 http://t.co/c5dT1GAP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:14 +0000", "from_user": "IndiirAlba", "from_user_id": 111800048, "from_user_id_str": "111800048", "from_user_name": "IndiirAlba", "geo": null, "id": 148836555535024130, "id_str": "148836555535024130", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693792630/DSC_1864_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693792630/DSC_1864_normal.JPG", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Buen viaje! Me trae chocolat RT @AlberthMoscoso: NYC all\\u00E1 voy #FelizNavidad RD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:14 +0000", "from_user": "jizufipu", "from_user_id": 408892476, "from_user_id_str": "408892476", "from_user_name": "Jumana Gwatkins", "geo": null, "id": 148836554243186700, "id_str": "148836554243186689", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1631278774/1008_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631278774/1008_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "aqueduct racetrack casino nyc http://t.co/Pj4HUXqP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:13 +0000", "from_user": "VST69tomyclik", "from_user_id": 125688175, "from_user_id_str": "125688175", "from_user_name": "TOM VST\\u266B ", "geo": null, "id": 148836548966752260, "id_str": "148836548966752257", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1185521772/oneHalfREB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1185521772/oneHalfREB_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @I_LOVE_NY: Great list ! RT @newyorkology Added @HughOnBroadway & @MammaMiaMusical to the list of What's open December 25th in NYC http://t.co/67t7r7wN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:13 +0000", "from_user": "SayWTF_iWant", "from_user_id": 27364418, "from_user_id_str": "27364418", "from_user_name": "Welcome 2 The Jungle", "geo": null, "id": 148836548668952580, "id_str": "148836548668952576", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1658924795/SayWTF_iWant_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658924795/SayWTF_iWant_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Niggas in NYC \\uD83D\\uDDFD\\uD83D\\uDDFD\\uD83D\\uDDFD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:11 +0000", "from_user": "Edubb3010", "from_user_id": 339977666, "from_user_id_str": "339977666", "from_user_name": "Eric Henderson", "geo": null, "id": 148836543698714620, "id_str": "148836543698714625", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1454522965/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1454522965/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "I love Vegas.. but paying $250 to stand in one spot and not move on New years.... naw.. i' pass....NYC is more like it", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:11 +0000", "from_user": "BestMompreneur", "from_user_id": 146882679, "from_user_id_str": "146882679", "from_user_name": "Nancy Zazzaro", "geo": null, "id": 148836541857402880, "id_str": "148836541857402881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695271909/DSC00013_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695271909/DSC00013_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Midtown Hotel NYC 50% Savings http://t.co/1J5QfL3Z via @LivingSocial", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:09 +0000", "from_user": "kevinplusw", "from_user_id": 158877938, "from_user_id_str": "158877938", "from_user_name": "Kevin Wong", "geo": null, "id": 148836535574339600, "id_str": "148836535574339584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1324157753/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1324157753/Untitled_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @AccidentalCity: Interesting thoughts from @JohnToryShow on why Toronto is more diverse than NYC (via @CivicActionGTA) http://t.co/120JTGYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:09 +0000", "from_user": "Vita_Perfume", "from_user_id": 41026506, "from_user_id_str": "41026506", "from_user_name": "Vita ", "geo": null, "id": 148836532441190400, "id_str": "148836532441190401", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681845715/Vita_Perfume_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681845715/Vita_Perfume_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Trip to NYC Weds...I can't wait!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:08 +0000", "from_user": "Ms_Chinazor", "from_user_id": 21345016, "from_user_id_str": "21345016", "from_user_name": "Stephanie A.", "geo": null, "id": 148836528746012670, "id_str": "148836528746012672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699243551/331632266_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699243551/331632266_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Lol, e nwero nsogbu RT @ChikaBakasi: Nne bring me back some gala RT @Ms_Chinazor: Enroute NYC!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:07 +0000", "from_user": "Nuryhun", "from_user_id": 440339962, "from_user_id_str": "440339962", "from_user_name": "Nurcelle Seya", "geo": null, "id": 148836525956796400, "id_str": "148836525956796416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701693268/_E2_9C_BD_CC_88_CC_A4_CC_8A_CC_A5_E2_80_8E_E2_8C_A3_CC_8A_E2_94_88_CC_A5-_CC_B6_CC_AF_CD_A1_C2_BB_CC_B6_CC_A5_C2_BB_C2_B7_CC_B5_CC_8CM_Zz_20NuR_C2_A5_E2_9C_BD_CC_88_CC_A4_CC_8A_CC_A5_E2_80_8E_E2_8C_A3_CC_8A_E2_94_88_CC_A5-_CC_B6_CC_AF_CD_A1_C2_BB_CC_B6_CC_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701693268/_E2_9C_BD_CC_88_CC_A4_CC_8A_CC_A5_E2_80_8E_E2_8C_A3_CC_8A_E2_94_88_CC_A5-_CC_B6_CC_AF_CD_A1_C2_BB_CC_B6_CC_A5_C2_BB_C2_B7_CC_B5_CC_8CM_Zz_20NuR_C2_A5_E2_9C_BD_CC_88_CC_A4_CC_8A_CC_A5_E2_80_8E_E2_8C_A3_CC_8A_E2_94_88_CC_A5-_CC_B6_CC_AF_CD_A1_C2_BB_CC_B6_CC_normal", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@DaRealRaissa u s0 mad,,,muh lips jst l0oks uhmmmm well uhmmm nyc...*Smilz*", "to_user": "DaRealRaissa", "to_user_id": 384814084, "to_user_id_str": "384814084", "to_user_name": "Raissa elongo", "in_reply_to_status_id": 148835882588319740, "in_reply_to_status_id_str": "148835882588319744"}, +{"created_at": "Mon, 19 Dec 2011 18:46:07 +0000", "from_user": "G33KPRON", "from_user_id": 216765228, "from_user_id_str": "216765228", "from_user_name": "G33KPRON", "geo": null, "id": 148836523507318800, "id_str": "148836523507318784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1601326371/g33kpron_icon_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601326371/g33kpron_icon_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "Anyone we know going to this? RT @villagevoice 100 Boomboxes Will Rove the Streets of NYC in January http://t.co/tkEwt7wI", "to_user": "villagevoice", "to_user_id": 22059385, "to_user_id_str": "22059385", "to_user_name": "Village Voice", "in_reply_to_status_id": 148816161562300400, "in_reply_to_status_id_str": "148816161562300416"}, +{"created_at": "Mon, 19 Dec 2011 18:46:05 +0000", "from_user": "jennyxgreco", "from_user_id": 269849483, "from_user_id_str": "269849483", "from_user_name": "Jennifer Greco", "geo": null, "id": 148836518448992260, "id_str": "148836518448992256", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1678372218/Photo_on_2011-11-10_at_22.28__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678372218/Photo_on_2011-11-10_at_22.28__2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Jenny and Magalie take on NYC #ohok", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:05 +0000", "from_user": "Mathfi_Jobs", "from_user_id": 59126679, "from_user_id_str": "59126679", "from_user_name": "Mathfi", "geo": null, "id": 148836514997075970, "id_str": "148836514997075968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/326427455/tweet-mathfi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/326427455/tweet-mathfi_normal.jpg", "source": "<a href="http://www.maths-fi.com/" rel="nofollow">MathsFi Twitt</a>", "text": "Job Top US Bank (New York-USA): Senior Counterparty Risk Manager.+ MSc/... http://t.co/Bd0VuPwQ Quant IB Finance jobs 123", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:04 +0000", "from_user": "clinnver", "from_user_id": 248899581, "from_user_id_str": "248899581", "from_user_name": "ezequiel ", "geo": null, "id": 148836513088679940, "id_str": "148836513088679936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1637977220/41606_282977372560_7420938_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637977220/41606_282977372560_7420938_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Suspect in NYC woman's burning appears in court", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:01 +0000", "from_user": "encarniths", "from_user_id": 72904803, "from_user_id_str": "72904803", "from_user_name": "en carnaval", "geo": null, "id": 148836501432713200, "id_str": "148836501432713216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700766832/171125_1888181443768_1218401380_32283754_2113569_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700766832/171125_1888181443768_1218401380_32283754_2113569_o_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @hellogiggles: Galleries: Check Out These NYC Christmas Windows! by Morgan Nelson on @hellogiggles http://t.co/a6eNo8gZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:59 +0000", "from_user": "TextConxTweets", "from_user_id": 61849473, "from_user_id_str": "61849473", "from_user_name": "Jim Brotherton", "geo": null, "id": 148836490426855420, "id_str": "148836490426855424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/341636434/jimB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/341636434/jimB_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Bridal Salons NYC-Excellent Selections http://t.co/sT726r0S", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:58 +0000", "from_user": "piercingmetal", "from_user_id": 27065731, "from_user_id_str": "27065731", "from_user_name": "Ken Pierce", "geo": null, "id": 148836487532781570, "id_str": "148836487532781568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/579873816/PMcom-Logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/579873816/PMcom-Logo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@UlianaMTP @metalkprettynyc @madinalake Really enjoyed your show in NYC; The Santa hat wearing Metal journalist :)", "to_user": "UlianaMTP", "to_user_id": 395094230, "to_user_id_str": "395094230", "to_user_name": "Uliana"}, +{"created_at": "Mon, 19 Dec 2011 18:45:52 +0000", "from_user": "abbykohn", "from_user_id": 123661553, "from_user_id_str": "123661553", "from_user_name": "Abby Kohn", "geo": null, "id": 148836463138713600, "id_str": "148836463138713600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1614845581/twit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1614845581/twit_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@ktgarbs in NYC!!!! @panini_press #whyarentyouhere #cpplaydates", "to_user": "ktgarbs", "to_user_id": 409437642, "to_user_id_str": "409437642", "to_user_name": "Katie Garbis"}, +{"created_at": "Mon, 19 Dec 2011 18:45:52 +0000", "from_user": "E_W_Enterprise", "from_user_id": 136290471, "from_user_id_str": "136290471", "from_user_name": "E. W. E.", "geo": null, "id": 148836462035607550, "id_str": "148836462035607552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1644021565/ginaandelizabeth_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644021565/ginaandelizabeth_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Love this \"Daylit Artist Loft/ Holiday Sublet in Brooklyn\" vacation rental on @airbnb #NYC #TravelTuesday http://t.co/ovGNGK7u", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:52 +0000", "from_user": "nickyyates", "from_user_id": 19545593, "from_user_id_str": "19545593", "from_user_name": "Nicky Yates", "geo": null, "id": 148836460781502460, "id_str": "148836460781502464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/553827708/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/553827708/twitterProfilePhoto_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "looking for a videographer for this wednesday. whacha got nyc?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:51 +0000", "from_user": "ariasahar", "from_user_id": 139703588, "from_user_id_str": "139703588", "from_user_name": "Ariana Watson", "geo": null, "id": 148836456637542400, "id_str": "148836456637542400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1240476419/Violin_at_Elisha_s_Wedding_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1240476419/Violin_at_Elisha_s_Wedding_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rachelbnolan: Op-ed by young black man on arbitrary search and frisk in NYC: \"We know the rules: don\\u2019t run and don\\u2019t try to explain.\" http://t.co/OIxDlrKQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:50 +0000", "from_user": "YouTern", "from_user_id": 84693957, "from_user_id_str": "84693957", "from_user_name": "YouTern", "geo": null, "id": 148836453449871360, "id_str": "148836453449871361", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1168190676/YouTern_Twitter_Logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1168190676/YouTern_Twitter_Logo_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "Follow me... to Social Mediaaaa! Lead a startup's social media and site content in #NYC http://t.co/wKChOi6l #socialmedia #internship", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:50 +0000", "from_user": "_dominyqueee", "from_user_id": 30573855, "from_user_id_str": "30573855", "from_user_name": "its DOM bitch !!!!", "geo": null, "id": 148836452187389950, "id_str": "148836452187389952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700905052/Snapshot_20111217_19_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700905052/Snapshot_20111217_19_normal.JPG", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Have fun! RT @QueenNara531 Just arriving in NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:49 +0000", "from_user": "RoyalRespectCO", "from_user_id": 431104603, "from_user_id_str": "431104603", "from_user_name": "Royal \\u042FR Respect", "geo": null, "id": 148836449851158530, "id_str": "148836449851158528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697423170/kyle_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697423170/kyle_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Jaytee3876 We're based out of the tri-state NYC, NJ, CT area as of now but we are looking to expand worldwide, What's up?", "to_user": "Jaytee3876", "to_user_id": 275083746, "to_user_id_str": "275083746", "to_user_name": "JayTee", "in_reply_to_status_id": 148836212600340480, "in_reply_to_status_id_str": "148836212600340480"}, +{"created_at": "Mon, 19 Dec 2011 18:45:48 +0000", "from_user": "joeyavino", "from_user_id": 245098261, "from_user_id_str": "245098261", "from_user_name": "Joey Avino", "geo": null, "id": 148836446835458050, "id_str": "148836446835458049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1603872973/joey-avino-1-cropped_2_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1603872973/joey-avino-1-cropped_2_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "I NYC I hear almost every song from @Drake Take Care on the radio. Album is far from mainstream--refreshing that the public demands it.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:45 +0000", "from_user": "rocio6411", "from_user_id": 279212571, "from_user_id_str": "279212571", "from_user_name": "CodySmileMe :)", "geo": null, "id": 148836434462253060, "id_str": "148836434462253056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700114306/tumblr_lwdffzoZZx1r85tx8o1_500_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700114306/tumblr_lwdffzoZZx1r85tx8o1_500_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TomCruise: Tom answers your questions at the NYC M:I-@GhostProtocol Premiere 2night! Submit your questions w/ #MissionNYC http://t.co/8FwxLVGC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:45 +0000", "from_user": "bmf403", "from_user_id": 76713813, "from_user_id_str": "76713813", "from_user_name": "Cory G.", "geo": null, "id": 148836434214789120, "id_str": "148836434214789120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1509603181/bmf403_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509603181/bmf403_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NYC police: Suspect says woman set afire over debt - Yahoo! News http://t.co/PmM0N941 via @YahooNews <== over $2,000?!?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:45 +0000", "from_user": "kdengs", "from_user_id": 15426993, "from_user_id_str": "15426993", "from_user_name": "Kellen Dengler", "geo": null, "id": 148836433224933380, "id_str": "148836433224933376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1139024608/Kellen_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1139024608/Kellen_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@ucwhateyec Damn. Poor timing. I'll prob see you at airport then haha. I'm in NYC now but will be snowboarding Summit County Wed to Sun", "to_user": "ucwhateyec", "to_user_id": 23075152, "to_user_id_str": "23075152", "to_user_name": "John Walder", "in_reply_to_status_id": 148835176485617660, "in_reply_to_status_id_str": "148835176485617667"}, +{"created_at": "Mon, 19 Dec 2011 18:45:44 +0000", "from_user": "FUTURAMACAL", "from_user_id": 124046319, "from_user_id_str": "124046319", "from_user_name": "FOREIGN", "geo": null, "id": 148836430246981630, "id_str": "148836430246981632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687584684/ltss_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687584684/ltss_normal.jpg", "source": "<a href="http://www.twitmusic.com" rel="nofollow">TwitMusic.com</a>", "text": "RT @FUTURAMACAL RT #NEWMUSIC \"DROP IT LOW\" #NEWSONGS #UNSIGNED #NEWARTIST OUT NYC #BRONX #DJS #CLUBS #RADIO http://t.co/pDIH4QkT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:44 +0000", "from_user": "TCarolino", "from_user_id": 414296098, "from_user_id_str": "414296098", "from_user_name": "Theresa Carolino", "geo": null, "id": 148836428200153100, "id_str": "148836428200153088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "soo tired today my body feels like I'm 80 walked around NYC for 12 hours.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:44 +0000", "from_user": "ohjustintweets", "from_user_id": 95026574, "from_user_id_str": "95026574", "from_user_name": "\\u03B9'\\u043C \\u05E0\\u03C5\\u0455\\u0442 \\u03B1 g\\u03B9\\u044F\\u2113 \\u2665 ", "geo": null, "id": 148836427415818240, "id_str": "148836427415818240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702261468/arianayouareamazingzzz_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702261468/arianayouareamazingzzz_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ArianaGrande: If you're coming to my show on December 28 at @IrvingPlaza in NYC and want to come meet me after, here's how: http://t.co/1w7eeLFq! xoxo RT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:45:41 +0000", "from_user": "GigiHabibi", "from_user_id": 117157665, "from_user_id_str": "117157665", "from_user_name": "K y o k o \\u4EAC\\u5B50", "geo": null, "id": 148836416573554700, "id_str": "148836416573554688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1644385839/G99C_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644385839/G99C_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@ShermanZeGerman hey where can I find the cheap NYC flights please?", "to_user": "ShermanZeGerman", "to_user_id": 31738568, "to_user_id_str": "31738568", "to_user_name": "Ze German", "in_reply_to_status_id": 148705377217814530, "in_reply_to_status_id_str": "148705377217814528"}, +{"created_at": "Mon, 19 Dec 2011 18:45:41 +0000", "from_user": "TaapItApp", "from_user_id": 290134235, "from_user_id_str": "290134235", "from_user_name": "Taap.it Live Local", "geo": null, "id": 148836416149925900, "id_str": "148836416149925888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1674931796/123_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674931796/123_normal.png", "source": "<a href="http://twuffer.com" rel="nofollow">Twuffer</a>", "text": "The safest cars on the road: Is yours on the list? : http://t.co/QYLXI2g0 via @CBSNews @MoneyWatchcars #IIHS #safedriving #nyc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:40 +0000", "from_user": "Chazedwardz", "from_user_id": 38631383, "from_user_id_str": "38631383", "from_user_name": "Chaz Edward Buzan", "geo": null, "id": 148836413813686270, "id_str": "148836413813686273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1597077059/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1597077059/image_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "Sending love to all from NYC ;) http://t.co/vOhZsHKU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:35 +0000", "from_user": "TiffyCBaybe", "from_user_id": 248087606, "from_user_id_str": "248087606", "from_user_name": "Red Bottom Boss", "geo": null, "id": 148836391508381700, "id_str": "148836391508381696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700833658/TiffyCBaybe_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700833658/TiffyCBaybe_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "You got my ticket? RT @WhenThugsDie: @TiffyCBaybe come to NYC for #nye", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:34 +0000", "from_user": "DRYLnz", "from_user_id": 274018212, "from_user_id_str": "274018212", "from_user_name": "DRYLanzarote", "geo": null, "id": 148836386852704260, "id_str": "148836386852704257", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695186525/1320012385_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695186525/1320012385_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @democracynow: Occupy Wall Street NYC marks 3-month anniversary with re-occupation attempt, dozens arrested. http://t.co/jK0sLcnw #ows", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:34 +0000", "from_user": "ElwoodBluez", "from_user_id": 90413778, "from_user_id_str": "90413778", "from_user_name": "Rob Fish", "geo": null, "id": 148836386286485500, "id_str": "148836386286485504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/602467452/elwood_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/602467452/elwood_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @fireengineering: Video of NYC #firefighters escaping burning Brooklyn brownstone: http://t.co/abKqqjIf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:32 +0000", "from_user": "JimmyLaSalvia", "from_user_id": 18660521, "from_user_id_str": "18660521", "from_user_name": "JimmyLaSalvia", "geo": null, "id": 148836378308907000, "id_str": "148836378308907010", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1659339309/Jimmy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659339309/Jimmy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "He is! - RT @MargaretHoover #SOOOEmbarrassed; My hubby @JohnAvlon makes \"NYC Natives\" top 10 sexiest of '11. http://t.co/hujymF7s", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:31 +0000", "from_user": "SkySlope", "from_user_id": 158580977, "from_user_id_str": "158580977", "from_user_name": "SkySlope\\u2122", "geo": null, "id": 148836374299160580, "id_str": "148836374299160578", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1015668623/alone_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1015668623/alone_logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Check this out, \"House of the Day\" by @InmanNews...\"SoHo townhouse featured in Beyonce video fetches $3.3k per year.\" http://t.co/ewymaUA0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:30 +0000", "from_user": "soyjoseito_", "from_user_id": 412681479, "from_user_id_str": "412681479", "from_user_name": "Jose Martinez", "geo": null, "id": 148836371350568960, "id_str": "148836371350568961", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1665451576/187193_100001523167841_8183179_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665451576/187193_100001523167841_8183179_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "This is messed up_NYC police: Suspect says woman set afire over debt - Yahoo! News http://t.co/5DSqNpX0 via @YahooNews", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:30 +0000", "from_user": "jjkeyes", "from_user_id": 19713189, "from_user_id_str": "19713189", "from_user_name": "Jeffrey James Keyes", "geo": null, "id": 148836368192253950, "id_str": "148836368192253952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1581059170/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1581059170/image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NYC Glitterati Celebrate Ziggy Stardust At Bowieball / Queerty http://t.co/RS1xdj8Q via @queerty #bowieball @derycktodd @ladyrizo #GlamRock", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:29 +0000", "from_user": "mrlarrygreen", "from_user_id": 11450112, "from_user_id_str": "11450112", "from_user_name": "Seattle REALTOR\\u00AE", "geo": null, "id": 148836367454060540, "id_str": "148836367454060544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/79168401/n715256163_497742_8651_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/79168401/n715256163_497742_8651_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Is reading, REIT Buys Large Stake in NYC Office Property http://t.co/B4qf8YT6 #USAMortgageNews", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:29 +0000", "from_user": "nikkipep", "from_user_id": 20642076, "from_user_id_str": "20642076", "from_user_name": "nikki pepper", "geo": null, "id": 148836364501262340, "id_str": "148836364501262337", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1551027799/299475_10150286519892690_611707689_8028645_6266747_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1551027799/299475_10150286519892690_611707689_8028645_6266747_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "option 1 would be killing yourself. option 2 would be winter in nyc. #itsthatcold", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:29 +0000", "from_user": "TheQueensWay", "from_user_id": 426876371, "from_user_id_str": "426876371", "from_user_name": "The Queens Way", "geo": null, "id": 148836364165713920, "id_str": "148836364165713920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670201711/sqgreenway1_520_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670201711/sqgreenway1_520_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "@amandadick Have you seen the ideas for #TheQueensWay? Please support our efforts to create a greenway in #Queens: http://t.co/zuPkQQyT", "to_user": "amandadick", "to_user_id": 20946839, "to_user_id_str": "20946839", "to_user_name": "Amanda Dick", "in_reply_to_status_id": 148491424873193470, "in_reply_to_status_id_str": "148491424873193472"}, +{"created_at": "Mon, 19 Dec 2011 18:45:28 +0000", "from_user": "MTGBenchmark", "from_user_id": 17885361, "from_user_id_str": "17885361", "from_user_name": "MTGBenchmark", "geo": null, "id": 148836361498148860, "id_str": "148836361498148864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/66397974/Matt_Kruse_Exec_Portrait_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/66397974/Matt_Kruse_Exec_Portrait_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "MTG News: REIT Buys Large Stake in NYC Office Property: Commercial REIT Vornado Realty Trust has acquired a 49.5... http://t.co/GjuN1k2i", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:26 +0000", "from_user": "_sttefani", "from_user_id": 319860840, "from_user_id_str": "319860840", "from_user_name": "St\\u00E9fani Martins ", "geo": null, "id": 148836354632065020, "id_str": "148836354632065024", "iso_language_code": "hu", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686127696/Imagem_013_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686127696/Imagem_013_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @DeniseJonas: John's Pizza NYC!! http://t.co/lMqV6aPF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:25 +0000", "from_user": "IAMYOUstudio", "from_user_id": 34041404, "from_user_id_str": "34041404", "from_user_name": "I.AM.YOU. ", "geo": null, "id": 148836349242380300, "id_str": "148836349242380288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692161800/jan_laughing_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692161800/jan_laughing_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "swept up into a pack of young collegites debating philosophy & political theory w youth and grandeur. Nyc #geek moment.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:25 +0000", "from_user": "drjiho714", "from_user_id": 43686883, "from_user_id_str": "43686883", "from_user_name": "Jiho Jung", "geo": null, "id": 148836348793602050, "id_str": "148836348793602049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1478677779/254610_1955399920816_1117254231_31735247_7801075_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1478677779/254610_1955399920816_1117254231_31735247_7801075_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Damn too many sexy ass girls in nyc. Unlimited", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:24 +0000", "from_user": "rashoaib", "from_user_id": 66769127, "from_user_id_str": "66769127", "from_user_name": "Shoaib Ibn Abdullah", "geo": null, "id": 148836344481853440, "id_str": "148836344481853440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/776726121/Image0186_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/776726121/Image0186_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Suspect in NYC torching charged with murder - The Associated Press http://t.co/P1RBXkCY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:23 +0000", "from_user": "AmeeraSurname", "from_user_id": 315871486, "from_user_id_str": "315871486", "from_user_name": "Ameera (A-mir-a) ", "geo": null, "id": 148836341445177340, "id_str": "148836341445177344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695113062/kjn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695113062/kjn_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@LaneNapper You know how you said NYC is cold, is it all christmas-sy with lights & trees up? I've never been to the USA hehe :D Enjoy<3", "to_user": "LaneNapper", "to_user_id": 304108372, "to_user_id_str": "304108372", "to_user_name": "Lane Napper"}, +{"created_at": "Mon, 19 Dec 2011 18:45:23 +0000", "from_user": "EDBRD1", "from_user_id": 382872232, "from_user_id_str": "382872232", "from_user_name": "EDBRD", "geo": null, "id": 148836338890846200, "id_str": "148836338890846209", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1678015611/218101_198509133519492_198509066852832_479011_5159207_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678015611/218101_198509133519492_198509066852832_479011_5159207_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @UnaVainaLoca1: Descarga http://t.co/hAuvHxIX #RD #DMV #Miami #NYC #Colombia #VNZL #Chile #Ecuador #Espa\\u00F1a #Nicaragua #ElSalvador #Guatemala #Peru #LATINOS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:21 +0000", "from_user": "richdenton", "from_user_id": 46594688, "from_user_id_str": "46594688", "from_user_name": "Rich Denton", "geo": null, "id": 148836334084173820, "id_str": "148836334084173824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1387886952/Me1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1387886952/Me1_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Said to be a real sign in the window of a Chinese restaurant in NYC - hilarious! #jewish #christmas #food http://t.co/OAhJf5QX via @twitpic", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:21 +0000", "from_user": "ArcosAlfonso", "from_user_id": 406693966, "from_user_id_str": "406693966", "from_user_name": "Jntkdvr", "geo": null, "id": 148836332251262980, "id_str": "148836332251262976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695436655/yo_chica_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695436655/yo_chica_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Streetfilms Top 5 Streetfilms 2011: Mas all\\u00E1 del autom\\u00F3vil, bicicletas http://t.co/ruD6d8PB Biking rules in SF, NYC, PDX, and more! vale", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:18 +0000", "from_user": "Kept2Soar", "from_user_id": 334899019, "from_user_id_str": "334899019", "from_user_name": "Shalyn", "geo": null, "id": 148836319685120000, "id_str": "148836319685120000", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688435821/2011-11-26_11.46.13-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688435821/2011-11-26_11.46.13-1_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@SportsDiva627 Lol o ok cute! Not a bad idea @ all Dallas? LA? MIA? NYC? RT @kristyface: (cont) http://t.co/YBfF2LdN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:18 +0000", "from_user": "Kenzie_Myers", "from_user_id": 421585158, "from_user_id_str": "421585158", "from_user_name": "Kenzie Myers", "geo": null, "id": 148836317562802180, "id_str": "148836317562802176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1659101606/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659101606/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "All I want for Christmas is to see @jimmyfallon in NYC!!!!!! Or in Indy during the super bowl!!!! Thats it :))", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:17 +0000", "from_user": "a_harris20", "from_user_id": 381614435, "from_user_id_str": "381614435", "from_user_name": "Austin Harris", "geo": null, "id": 148836313481740300, "id_str": "148836313481740288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1690313394/RNgQG5FR_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690313394/RNgQG5FR_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Just got accepted to the University of South Carolina and St. Johns University in NYC #HappyTweet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:16 +0000", "from_user": "bousquetg", "from_user_id": 269430085, "from_user_id_str": "269430085", "from_user_name": "Guillaume Bousquet", "geo": null, "id": 148836310147276800, "id_str": "148836310147276800", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1280668614/IMG_0367_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1280668614/IMG_0367_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "roh il y a aussi un prince \\u00E0 NYC!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:14 +0000", "from_user": "NSAYUpperEast", "from_user_id": 191213777, "from_user_id_str": "191213777", "from_user_name": "Upper East Side", "geo": null, "id": 148836304136839170, "id_str": "148836304136839170", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1260272705/Upper-East-Side_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1260272705/Upper-East-Side_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Things to Do on the Upper East Side Dec. 19-23. Last chance to see rare exhibits at the Met & @Guggenheim http://t.co/EmLnOdNc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:14 +0000", "from_user": "I_LOVE_NY", "from_user_id": 46164502, "from_user_id_str": "46164502", "from_user_name": "I LOVE NEW YORK", "geo": null, "id": 148836304011010050, "id_str": "148836304011010048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1076397039/ILNY_Flicker2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1076397039/ILNY_Flicker2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Great list ! RT @newyorkology Added @HughOnBroadway & @MammaMiaMusical to the list of What's open December 25th in NYC http://t.co/67t7r7wN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:14 +0000", "from_user": "DeeJay_Kobe", "from_user_id": 340838696, "from_user_id_str": "340838696", "from_user_name": "Frederick Ankomah", "geo": null, "id": 148836301486047230, "id_str": "148836301486047233", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1692979367/DeeJay_Kobe_2793690658387443106_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692979367/DeeJay_Kobe_2793690658387443106_normal.jpg", "source": "<a href="http://www.writelonger.com" rel="nofollow">Write Longer</a>", "text": "#BMF dis christmas. 4rm t-pain 2 gh rocks 2 everi nyc show", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:12 +0000", "from_user": "FredOshean", "from_user_id": 288963669, "from_user_id_str": "288963669", "from_user_name": "Fred O'shean", "geo": +{"coordinates": [48.9551,2.2989], "type": "Point"}, "id": 148836295890829300, "id_str": "148836295890829314", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701981380/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701981380/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Le poto de NYC va se mettre bien en Slovaquie heinnnnn!!! Ahahhahah", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:11 +0000", "from_user": "OLUWASANDRA", "from_user_id": 53671773, "from_user_id_str": "53671773", "from_user_name": "April summers", "geo": null, "id": 148836288856989700, "id_str": "148836288856989697", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698074562/331605128_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698074562/331605128_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Lol! RT @Sibabe23: Yayy we shud lol RT @OLUWASANDRA: Yaaay let's b bffs! RT @Sibabe23: My name is Amazing!! Nyc ... http://t.co/v40Rz2tS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:09 +0000", "from_user": "Michael_220", "from_user_id": 259384704, "from_user_id_str": "259384704", "from_user_name": "Michael Sanders", "geo": null, "id": 148836280246091780, "id_str": "148836280246091777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1519928439/IMG_0092_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1519928439/IMG_0092_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "NYC its been real, but there's no place like home!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:05 +0000", "from_user": "dockbxr", "from_user_id": 343847283, "from_user_id_str": "343847283", "from_user_name": "Shelley Misner", "geo": null, "id": 148836266295824400, "id_str": "148836266295824384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @democracynow: Occupy Wall Street NYC marks 3-month anniversary with re-occupation attempt, dozens arrested. http://t.co/jK0sLcnw #ows", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:05 +0000", "from_user": "MrsGraySkies", "from_user_id": 263921351, "from_user_id_str": "263921351", "from_user_name": "Amber Whitlock", "geo": null, "id": 148836265880592400, "id_str": "148836265880592385", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702599921/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702599921/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "So I'm totally taking a roadtrip to either Florida or Carolina to see @Drake since he's not coming to NYC, that's my bday present to myself", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:03 +0000", "from_user": "TimeInNYC", "from_user_id": 253915109, "from_user_id_str": "253915109", "from_user_name": "Time In New York", "geo": null, "id": 148836257953349630, "id_str": "148836257953349634", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1497851931/time_in_newyork_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1497851931/time_in_newyork_normal.png", "source": "<a href="http://google.com" rel="nofollow">Time In New York</a>", "text": "#NYC The current time in New York City is 1:45 PM on Monday, 19 December 2011", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:03 +0000", "from_user": "perfectquarters", "from_user_id": 18728945, "from_user_id_str": "18728945", "from_user_name": "Jacqueline", "geo": null, "id": 148836257181601800, "id_str": "148836257181601792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/613077223/Jaqueline.Edwards-06_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/613077223/Jaqueline.Edwards-06_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "NYC Condo for Your Viewing Pleasure http://t.co/G00mBNBZ #realestate #real_estate #renter #nyc #ny", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:03 +0000", "from_user": "aqetyqy", "from_user_id": 361532775, "from_user_id_str": "361532775", "from_user_name": "Issy Clippard", "geo": null, "id": 148836255843614720, "id_str": "148836255843614721", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "gay dating service nyc: http://t.co/uaYt3fCA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:03 +0000", "from_user": "ShaunPynne", "from_user_id": 21698653, "from_user_id_str": "21698653", "from_user_name": "Shaun Pynne", "geo": null, "id": 148836255709401100, "id_str": "148836255709401090", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676584029/SOTD_Cover_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676584029/SOTD_Cover_1_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Who knows a great, cost effective printer in NYC?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:02 +0000", "from_user": "tfcornerstone", "from_user_id": 89296082, "from_user_id_str": "89296082", "from_user_name": "TF Cornerstone", "geo": null, "id": 148836254593716220, "id_str": "148836254593716225", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/553237395/logo_icon_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/553237395/logo_icon_normal.gif", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "NYC street food has certainly come a long way: http://t.co/4Hs9YJJd Do you agree with the war on NYC food trucks? #HudsonYards", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:02 +0000", "from_user": "LikeWezhWTF", "from_user_id": 194191071, "from_user_id_str": "194191071", "from_user_name": "Weshley Germanotta", "geo": null, "id": 148836252412686340, "id_str": "148836252412686336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1635888460/Picture0199_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635888460/Picture0199_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @ladygaga: Woohooo!! Turn on 100.3 in NYC!! Marry The Night is on!! I love my hometown!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:02 +0000", "from_user": "NewYorkHabitat", "from_user_id": 20182700, "from_user_id_str": "20182700", "from_user_name": "New York Habitat", "geo": null, "id": 148836252328787970, "id_str": "148836252328787969", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1488175236/logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1488175236/logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "That is pretty rad RT @anastasiakry: Best window display, Sephora #nyc http://t.co/8PxAe67a", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:01 +0000", "from_user": "_cycleangelo", "from_user_id": 205539738, "from_user_id_str": "205539738", "from_user_name": "CYCLEANGELO", "geo": null, "id": 148836247757004800, "id_str": "148836247757004800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1251065938/CAVATAR_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1251065938/CAVATAR_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "Smoke Break @ Meat Packing District (NYC) http://t.co/T8Z003rg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:00 +0000", "from_user": "WickedEnano", "from_user_id": 229979772, "from_user_id_str": "229979772", "from_user_name": "Jesus-MexicanRoyalty", "geo": null, "id": 148836245991194620, "id_str": "148836245991194624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701563659/IMG-20111218-00385_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701563659/IMG-20111218-00385_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@TheRealErickMo idk. I think so. I live in NYC", "to_user": "TheRealErickMo", "to_user_id": 432365323, "to_user_id_str": "432365323", "to_user_name": "Erick J Moncheknikov", "in_reply_to_status_id": 148836093914128400, "in_reply_to_status_id_str": "148836093914128384"}, +{"created_at": "Mon, 19 Dec 2011 18:45:00 +0000", "from_user": "swaGG_wAvy", "from_user_id": 253152037, "from_user_id_str": "253152037", "from_user_name": "Wayne\\u2601", "geo": null, "id": 148836243780804600, "id_str": "148836243780804609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692492354/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692492354/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "NYC\\uD83D\\uDDFD\\uD83D\\uDE1C", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:00 +0000", "from_user": "SuaveofNitelife", "from_user_id": 47379117, "from_user_id_str": "47379117", "from_user_name": "Suave Solo", "geo": null, "id": 148836242979692540, "id_str": "148836242979692544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1472855045/RedCafePoolParty0530__173__normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1472855045/RedCafePoolParty0530__173__normal.JPG", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @MorillaSD: RT @midnitespot: NYC: Sun Dec 25 WinterFresh: B&W Affair @AMNESIA BDAY BASH @SUAVEOFNITELIFE @MRMALIKSTAGENT ... http://t.co/zxushZ0S", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:59 +0000", "from_user": "kakaliscious", "from_user_id": 204429597, "from_user_id_str": "204429597", "from_user_name": "Kakaliscious ", "geo": null, "id": 148836240697995260, "id_str": "148836240697995264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1620259893/309415_2346126414055_1276865574_2918600_8279185_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620259893/309415_2346126414055_1276865574_2918600_8279185_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @goldeyounce: @kakaliscious Awwww twas nyc working wit u tew hun u was amazing nd dnt forget i stil got ma eyes on the brown dress *wink * xx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:59 +0000", "from_user": "trOOmOOv", "from_user_id": 24221642, "from_user_id_str": "24221642", "from_user_name": "Eddie Lee Flandez", "geo": null, "id": 148836238571474940, "id_str": "148836238571474945", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1340106303/OneBKRoof_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1340106303/OneBKRoof_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "DO NOT SLEEP, NYC, this party is FRESH. http://t.co/ma0cu285 @GiantStep @mashibeats @DromNYC", "to_user": "GiantStep", "to_user_id": 17449400, "to_user_id_str": "17449400", "to_user_name": "Giant Step", "in_reply_to_status_id": 148827592848441340, "in_reply_to_status_id_str": "148827592848441344"}, +{"created_at": "Mon, 19 Dec 2011 18:44:58 +0000", "from_user": "Mathfi_Jobs", "from_user_id": 59126679, "from_user_id_str": "59126679", "from_user_name": "Mathfi", "geo": null, "id": 148836237158002700, "id_str": "148836237158002688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/326427455/tweet-mathfi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/326427455/tweet-mathfi_normal.jpg", "source": "<a href="http://www.maths-fi.com/" rel="nofollow">MathsFi Twitt</a>", "text": "Job Top IB (New York City, USA): Senior Quantitative Equity Researcher-Jr Di... http://t.co/IAgDP5nJ Quant IB Finance jobs 18", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:56 +0000", "from_user": "free4NYC", "from_user_id": 431470401, "from_user_id_str": "431470401", "from_user_name": "FREE STUFF New York", "geo": null, "id": 148836228698083330, "id_str": "148836228698083328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680559902/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680559902/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#free #freestuff Free 12-drawer dresser hardwood (Bethel, CT 06801) http://t.co/t2x6FDen #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:56 +0000", "from_user": "free4NYC", "from_user_id": 431470401, "from_user_id_str": "431470401", "from_user_name": "FREE STUFF New York", "geo": null, "id": 148836227578212350, "id_str": "148836227578212352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680559902/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680559902/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#free #freestuff Benjamin Moore Interior Paint - Free (Tuckahoe NY) http://t.co/Kqf8YibQ #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:56 +0000", "from_user": "free4NYC", "from_user_id": 431470401, "from_user_id_str": "431470401", "from_user_name": "FREE STUFF New York", "geo": null, "id": 148836225971798000, "id_str": "148836225971798016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680559902/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680559902/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#free #freestuff Rev'n Chef: Herb Processor (Greenwood Heights) http://t.co/lkuOwUI5 #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:56 +0000", "from_user": "LSFrembes", "from_user_id": 295750052, "from_user_id_str": "295750052", "from_user_name": "Linda Seid Frembes", "geo": null, "id": 148836225925652480, "id_str": "148836225925652480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1570978581/Linda_InfoComm2010-IMG_1276-sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1570978581/Linda_InfoComm2010-IMG_1276-sm_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@SciaccaTweets Six. Six arms. Did I mention it was in a drug store window? Makes me love NYC even more.", "to_user": "SciaccaTweets", "to_user_id": 346128582, "to_user_id_str": "346128582", "to_user_name": "John Sciacca", "in_reply_to_status_id": 148835853635039230, "in_reply_to_status_id_str": "148835853635039233"}, +{"created_at": "Mon, 19 Dec 2011 18:44:55 +0000", "from_user": "free4NYC", "from_user_id": 431470401, "from_user_id_str": "431470401", "from_user_name": "FREE STUFF New York", "geo": null, "id": 148836223023194100, "id_str": "148836223023194112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680559902/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680559902/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#free #freestuff Baptism Debate (Flushing) http://t.co/IscAEt0m #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:55 +0000", "from_user": "osnapitzdannii", "from_user_id": 270060184, "from_user_id_str": "270060184", "from_user_name": "danielle. \\u10E6", "geo": null, "id": 148836222431797250, "id_str": "148836222431797249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701588047/472212501_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701588047/472212501_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ArianaGrande: If you're coming to my show on December 28 at @IrvingPlaza in NYC and want to come meet me after, here's how: http://t.co/1w7eeLFq! xoxo RT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:55 +0000", "from_user": "free4NYC", "from_user_id": 431470401, "from_user_id_str": "431470401", "from_user_name": "FREE STUFF New York", "geo": null, "id": 148836221743931400, "id_str": "148836221743931394", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680559902/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680559902/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#free #freestuff WOOD PALLETS FOR FREE!! HURRY WHILE PALLETS ARE AVAILABLE!! (c-line marble, new h... http://t.co/SVngEUlP #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:55 +0000", "from_user": "MikeyD97", "from_user_id": 21623191, "from_user_id_str": "21623191", "from_user_name": "Mikey D.", "geo": null, "id": 148836221274177540, "id_str": "148836221274177536", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1291694906/0311111656a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1291694906/0311111656a_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@VillansNeverDie freezin in NYC right now.. :-/", "to_user": "VillansNeverDie", "to_user_id": 415344152, "to_user_id_str": "415344152", "to_user_name": "A L E X A N D R A .", "in_reply_to_status_id": 148835519651000320, "in_reply_to_status_id_str": "148835519651000320"}, +{"created_at": "Mon, 19 Dec 2011 18:44:53 +0000", "from_user": "sergalboy", "from_user_id": 84999404, "from_user_id_str": "84999404", "from_user_name": "Glaice", "geo": null, "id": 148836215687348220, "id_str": "148836215687348224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1556355205/glaice_shades_150x150_deal_with_it_notext_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1556355205/glaice_shades_150x150_deal_with_it_notext_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "http://t.co/5yHNFW7G Anyone see how similar her name is to Dhalia Gillespie from Silent Hill?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:53 +0000", "from_user": "Raemcito", "from_user_id": 48536068, "from_user_id_str": "48536068", "from_user_name": "Raem Cambero", "geo": null, "id": 148836215674781700, "id_str": "148836215674781696", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1669606593/330772769_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669606593/330772769_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Cooomo Pero La Masa Tipica, unos muchachos de aqui de #SPM0.23 estan picando bien en NYC! Varias fiestas ya he visto anunciando con ellos", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:52 +0000", "from_user": "SOULAMBITIOUS", "from_user_id": 89241947, "from_user_id_str": "89241947", "from_user_name": "SOUL AMBITIOUS", "geo": null, "id": 148836208653500400, "id_str": "148836208653500416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1692627227/316059_2245248925997_1091340702_32014485_3802309_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692627227/316059_2245248925997_1091340702_32014485_3802309_n_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "On Stars Network 1st LIVESTREAM SHOW WILL AIR TONIGHT!!!! \\n\\nI HAVE SURLY CAME A LONG WAY!!! GOD IS GOOD \\n\\nO.K NYC... http://t.co/laTxSIUP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:46 +0000", "from_user": "abrnrd56", "from_user_id": 60203245, "from_user_id_str": "60203245", "from_user_name": "Alec Bernard", "geo": null, "id": 148836186167853060, "id_str": "148836186167853058", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1303971015/sDsLhYF7_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1303971015/sDsLhYF7_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Looking good Freedom Tower #NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:44 +0000", "from_user": "LittleLadyLaura", "from_user_id": 43595144, "from_user_id_str": "43595144", "from_user_name": "Laura Fry", "geo": null, "id": 148836178412572670, "id_str": "148836178412572672", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1561622874/downtown_2_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1561622874/downtown_2_2_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "Girls love cupcakes! (cc: @magnoliabakery) #nyc http://t.co/2LGfdFC6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:44 +0000", "from_user": "SoftLipsRae", "from_user_id": 127418754, "from_user_id_str": "127418754", "from_user_name": "1 John 3:24", "geo": null, "id": 148836175082299400, "id_str": "148836175082299392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694189174/gixxer_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694189174/gixxer_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "So hope I go to NYC in couple weeks", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:43 +0000", "from_user": "switchwind", "from_user_id": 23118294, "from_user_id_str": "23118294", "from_user_name": "Switch Wind", "geo": null, "id": 148836172527976450, "id_str": "148836172527976448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/89391218/Pot-o-Gold2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/89391218/Pot-o-Gold2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dec 19 - Times Up! Women and Trans Bicycle Repair Night: Sustainable Flatbush curated Green NYC C... http://t.co/hrLmSzAm #Energy #Event", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:38 +0000", "from_user": "banniNation", "from_user_id": 174557599, "from_user_id_str": "174557599", "from_user_name": "banniNation.com", "geo": null, "id": 148836153783619600, "id_str": "148836153783619584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1126742553/twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1126742553/twitter_normal.png", "source": "<a href="http://www.bannination.com" rel="nofollow">banniNation Server</a>", "text": "NYC woman, not allowed to protect herself with a gun, burned to death by horrific ex-employee in elevator. http://t.co/JIptvLCs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:36 +0000", "from_user": "HiltonNewYork", "from_user_id": 48389816, "from_user_id_str": "48389816", "from_user_name": "Hilton New York", "geo": null, "id": 148836143939592200, "id_str": "148836143939592192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/305767920/Hilton-Twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/305767920/Hilton-Twitter_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "@golfingronin Great choice! Hopefully you can make a spring trip to NYC. The weather is so ideal & we'd love to host you!", "to_user": "GolfingRonin", "to_user_id": 194877237, "to_user_id_str": "194877237", "to_user_name": "Maurice Poe", "in_reply_to_status_id": 148809148442742800, "in_reply_to_status_id_str": "148809148442742784"}, +{"created_at": "Mon, 19 Dec 2011 18:44:35 +0000", "from_user": "sMDnSTFU", "from_user_id": 233823422, "from_user_id_str": "233823422", "from_user_name": "\\uF8FFSway", "geo": null, "id": 148836138453442560, "id_str": "148836138453442560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702566100/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702566100/image_normal.jpg", "source": "<a href="http://tweetlogix.com" rel="nofollow">Tweetlogix</a>", "text": "@_LuxuryChes I wouldn't know iv never been to nyc", "to_user": "_LuxuryChes", "to_user_id": 311716170, "to_user_id_str": "311716170", "to_user_name": "Franchesca !", "in_reply_to_status_id": 148835553087987700, "in_reply_to_status_id_str": "148835553087987712"}, +{"created_at": "Mon, 19 Dec 2011 18:44:34 +0000", "from_user": "JoeyMintz_NJ", "from_user_id": 27457623, "from_user_id_str": "27457623", "from_user_name": "Mintz", "geo": null, "id": 148836135441928200, "id_str": "148836135441928192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1631117971/Photo_on_2011-11-09_at_18.06__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631117971/Photo_on_2011-11-09_at_18.06__2_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for iPhone</a>", "text": "@alanhahn what a change a few years make. Now they wanna come to NYC. Thanks Donnie Walsh! Laid the foundation", "to_user": "alanhahn", "to_user_id": 31782245, "to_user_id_str": "31782245", "to_user_name": "Alan Hahn", "in_reply_to_status_id": 148835253228797950, "in_reply_to_status_id_str": "148835253228797953"}, +{"created_at": "Mon, 19 Dec 2011 18:44:33 +0000", "from_user": "CusMaven", "from_user_id": 107497172, "from_user_id_str": "107497172", "from_user_name": "Swanky Music Group", "geo": null, "id": 148836132854038530, "id_str": "148836132854038529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1658872601/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658872601/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "All these artists.... as they come they go. Its real out here tho. #NYC #Global", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:33 +0000", "from_user": "FunmiSexy", "from_user_id": 155663816, "from_user_id_str": "155663816", "from_user_name": "Funmi Ogunleye", "geo": null, "id": 148836132820500480, "id_str": "148836132820500480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1656564235/330364766_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656564235/330364766_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Dat was a nyc muvee....\\u263A\\u263A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:32 +0000", "from_user": "MaryUshay", "from_user_id": 362136373, "from_user_id_str": "362136373", "from_user_name": "Mary Ushay", "geo": null, "id": 148836126126383100, "id_str": "148836126126383104", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1513482975/229682_10150337665294042_746649041_9509366_4408896_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1513482975/229682_10150337665294042_746649041_9509366_4408896_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Heading home! Smell ya later NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:31 +0000", "from_user": "WhenThugsDie", "from_user_id": 72105704, "from_user_id_str": "72105704", "from_user_name": "Ron ", "geo": null, "id": 148836121940471800, "id_str": "148836121940471808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699056560/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699056560/profile_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "@TiffyCBaybe come to NYC for #nye", "to_user": "TiffyCBaybe", "to_user_id": 248087606, "to_user_id_str": "248087606", "to_user_name": "Red Bottom Boss"}, +{"created_at": "Mon, 19 Dec 2011 18:44:31 +0000", "from_user": "bgoodin10", "from_user_id": 234483882, "from_user_id_str": "234483882", "from_user_name": "Betsy Goodin", "geo": null, "id": 148836120917049340, "id_str": "148836120917049344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1449520798/me_at_downs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1449520798/me_at_downs_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I really hope that bird shitting on me in NYC brings me good luck in the interview #nervous ahhhh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:27 +0000", "from_user": "NewYorkPicks", "from_user_id": 40001164, "from_user_id_str": "40001164", "from_user_name": "New York Picks", "geo": null, "id": 148836104597020670, "id_str": "148836104597020672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1169942825/picks-logo-newyork_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1169942825/picks-logo-newyork_normal.png", "source": "<a href="http://schmap.it" rel="nofollow">schmap.it</a>", "text": "More buzz for Magnolia Bakery: http://t.co/se8OyWn6 - RT @traveladdictgrl Just in time for the holidays! Magnolia Bakery NYC: Best Cupca...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:26 +0000", "from_user": "jonathandeclais", "from_user_id": 21013825, "from_user_id_str": "21013825", "from_user_name": "Jonathan Declais", "geo": null, "id": 148836100738269200, "id_str": "148836100738269185", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1447419532/IMG_64022_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1447419532/IMG_64022_normal.png", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "Peace from NYC! http://t.co/Kwi240zT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:24 +0000", "from_user": "525Active", "from_user_id": 430197799, "from_user_id_str": "430197799", "from_user_name": "act525", "geo": null, "id": 148836093859602430, "id_str": "148836093859602432", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1677833709/tumblr_lkmux3aLTB1qfttcu_large_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677833709/tumblr_lkmux3aLTB1qfttcu_large_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @zionylennoxpr: @SykO_ElTerrOr cdo vienes a nyc? En enero?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:24 +0000", "from_user": "LegalNewsAdvice", "from_user_id": 419484587, "from_user_id_str": "419484587", "from_user_name": "Legal News & Advice", "geo": null, "id": 148836092202844160, "id_str": "148836092202844161", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "CAN ANYONE RECOMEND A GREAT IMMIGRATION LAWYER IN NYC TO HELP ME WITH A K-1 VISA CASE? http://immigration-lawyer... http://t.co/ChuhDJWD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:22 +0000", "from_user": "MrBiffe", "from_user_id": 84478805, "from_user_id_str": "84478805", "from_user_name": "\\u00A0", "geo": null, "id": 148836086242750460, "id_str": "148836086242750465", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1543179963/2011-05-19_19-43-11_362_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543179963/2011-05-19_19-43-11_362_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Pra comprar um #iPhone4sdaTIM , prefiro ficar 4 dias em NYC e comprar um na loja da apple de l\\u00E1,que sai at\\u00E9 mais barato(incluindo a viagem)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:20 +0000", "from_user": "About_Attorneys", "from_user_id": 418466223, "from_user_id_str": "418466223", "from_user_name": "About Attorneys", "geo": null, "id": 148836075861848060, "id_str": "148836075861848064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1651584480/AA_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651584480/AA_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "CAN ANYONE RECOMEND A GREAT IMMIGRATION LAWYER IN NYC TO HELP ME WITH A K-1 VISA CASE? http://immigration-lawyer... http://t.co/9H1oCX1F", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:19 +0000", "from_user": "ricochetcattle", "from_user_id": 216433380, "from_user_id_str": "216433380", "from_user_name": "Rick", "geo": null, "id": 148836071264894980, "id_str": "148836071264894976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702074274/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702074274/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@Forbes got to be a big city thing,like NYC I'll bet there are hundreds in the rest of the country as good or better ! ...restaurateur", "to_user": "Forbes", "to_user_id": 91478624, "to_user_id_str": "91478624", "to_user_name": "Forbes", "in_reply_to_status_id": 148824080664113150, "in_reply_to_status_id_str": "148824080664113153"}, +{"created_at": "Mon, 19 Dec 2011 18:44:16 +0000", "from_user": "jensdish", "from_user_id": 20190075, "from_user_id_str": "20190075", "from_user_name": "Jen Huntley-Corbin", "geo": null, "id": 148836060493918200, "id_str": "148836060493918208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1624555263/photo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624555263/photo_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jennampelletier: Spotted: @richeeses excellent ricotta among hundreds of imported cheeses at NYC food emporium @Eataly http://t.co/DtqerN6X", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:15 +0000", "from_user": "x_ESMERALDA_", "from_user_id": 441071621, "from_user_id_str": "441071621", "from_user_name": "Esss.", "geo": null, "id": 148836056232493060, "id_str": "148836056232493056", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702578450/tumblr_lwg0xaQFfM1qj0ixoo1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702578450/tumblr_lwg0xaQFfM1qj0ixoo1_500_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NYC !!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:14 +0000", "from_user": "AlberthMoscoso", "from_user_id": 187397885, "from_user_id_str": "187397885", "from_user_name": "Alberth Moscoso", "geo": null, "id": 148836049567748100, "id_str": "148836049567748096", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1661830056/IMG00004-20110901-1228_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661830056/IMG00004-20110901-1228_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "NYC all\\u00E1 voy #FelizNavidad RD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:13 +0000", "from_user": "spazfox", "from_user_id": 43734850, "from_user_id_str": "43734850", "from_user_name": "Spazfox", "geo": null, "id": 148836047311220740, "id_str": "148836047311220736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1576156171/spocky-gun_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576156171/spocky-gun_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @democracynow: Occupy Wall Street NYC marks 3-month anniversary with re-occupation attempt, dozens arrested. http://t.co/jK0sLcnw #ows", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:13 +0000", "from_user": "raptros_", "from_user_id": 11460012, "from_user_id_str": "11460012", "from_user_name": "aidan coyne", "geo": null, "id": 148836046040350720, "id_str": "148836046040350720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1471813551/sparring_detail_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1471813551/sparring_detail_normal.jpeg", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "Back in NYC for a few days starting tomorrow. Schedule somewhat open.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:12 +0000", "from_user": "madrid_city_fan", "from_user_id": 426683922, "from_user_id_str": "426683922", "from_user_name": "madrid city fan", "geo": null, "id": 148836043393744900, "id_str": "148836043393744897", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690149053/442063000_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690149053/442063000_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NYC police: Suspect says woman set afire over debt - Yahoo! News http://t.co/MR6HRtLR via @YahooNews", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:11 +0000", "from_user": "_OnlineStylist", "from_user_id": 15408608, "from_user_id_str": "15408608", "from_user_name": "The Online Stylist", "geo": null, "id": 148836037148409860, "id_str": "148836037148409856", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1669449902/AW11_Head_Shot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669449902/AW11_Head_Shot_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "SJP layers up in NYC http://t.co/vpJFCTpY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:08 +0000", "from_user": "DanceNYC", "from_user_id": 16940209, "from_user_id_str": "16940209", "from_user_name": "DanceNYC", "geo": null, "id": 148836026700406800, "id_str": "148836026700406784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1104460047/Tweet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1104460047/Tweet_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Dance/NYC Celebrates Moments from 2011:\\n\\n1- State of NYC Dance Report Launched:... http://t.co/pmQXMJdo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:07 +0000", "from_user": "jadorebmore", "from_user_id": 361342387, "from_user_id_str": "361342387", "from_user_name": "Bawlmorean", "geo": null, "id": 148836019976941570, "id_str": "148836019976941569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1546298145/jadorebmore_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546298145/jadorebmore_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "We'll be in NYC tom a.m. and i'll make sure to stop by at Mr. Chocolate in Dumbo. @jacquestorres", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:05 +0000", "from_user": "dashstorefans", "from_user_id": 440197700, "from_user_id_str": "440197700", "from_user_name": "DASH Store Fan Club", "geo": null, "id": 148836011353440260, "id_str": "148836011353440257", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700547180/dash_store_sign__flickr_faye_mous__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700547180/dash_store_sign__flickr_faye_mous__normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @NatalieVallina: #DASH NYC http://t.co/RKJxEvQs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:03 +0000", "from_user": "TheJonRios", "from_user_id": 170821268, "from_user_id_str": "170821268", "from_user_name": "Jonathan Rios", "geo": null, "id": 148836004386705400, "id_str": "148836004386705410", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1092538673/34979_440435522921_570757921_5906683_2973561_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1092538673/34979_440435522921_570757921_5906683_2973561_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Headin to nyc to do some holiday #shopping then back to CT!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:02 +0000", "from_user": "SeaDeb", "from_user_id": 31453850, "from_user_id_str": "31453850", "from_user_name": "Debbie Hellman", "geo": null, "id": 148836000699924480, "id_str": "148836000699924480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1565587093/n573087084_443421_7353_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1565587093/n573087084_443421_7353_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Am so excited to be heading to #NYC for #NYE!! Will certainly have a date with the 3B's @BarneysNY @Bergdorfs @BendelGirls !!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:00 +0000", "from_user": "brad", "from_user_id": 5871202, "from_user_id_str": "5871202", "from_user_name": "Brad Smith", "geo": null, "id": 148835991266926600, "id_str": "148835991266926593", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1635811513/bradphoot03-sq_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635811513/bradphoot03-sq_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@pauloctavious Invent teleportation. Avoid all planes, trains and automobiles into NYC \\u2014 at all cost.", "to_user": "pauloctavious", "to_user_id": 15098044, "to_user_id_str": "15098044", "to_user_name": "Paul Octavious", "in_reply_to_status_id": 148834602331549700, "in_reply_to_status_id_str": "148834602331549696"}, +{"created_at": "Mon, 19 Dec 2011 18:43:58 +0000", "from_user": "LeadersLearners", "from_user_id": 401549029, "from_user_id_str": "401549029", "from_user_name": "Leaders and Learners", "geo": null, "id": 148835983218057200, "id_str": "148835983218057217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1614254112/L_L_twitter_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1614254112/L_L_twitter_pic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Daniel Pink's sad account of NYC #testing and craziness in ed #data. http://t.co/pddlPcXo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:54 +0000", "from_user": "Eline_K", "from_user_id": 64457758, "from_user_id_str": "64457758", "from_user_name": "Eline Kerpels", "geo": null, "id": 148835966134661120, "id_str": "148835966134661120", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700797748/1324241147394677_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700797748/1324241147394677_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@LieveCaar Will do! En even opscheppen over jouw succesvolle semester abroad en onze trip naar NYC natuurlijk! ;-)", "to_user": "LieveCaar", "to_user_id": 110759452, "to_user_id_str": "110759452", "to_user_name": "Caroline Mathijssen", "in_reply_to_status_id": 148834246008647680, "in_reply_to_status_id_str": "148834246008647680"}, +{"created_at": "Mon, 19 Dec 2011 18:43:51 +0000", "from_user": "christophercarb", "from_user_id": 176165009, "from_user_id_str": "176165009", "from_user_name": "Christopher Carbone", "geo": null, "id": 148835956177379330, "id_str": "148835956177379328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687605960/ProfilePic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687605960/ProfilePic_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@toddwhitley will do. home is north jersey. plus seeing friends in nyc.", "to_user": "toddwhitley", "to_user_id": 85309536, "to_user_id_str": "85309536", "to_user_name": "tdub", "in_reply_to_status_id": 148834213880270850, "in_reply_to_status_id_str": "148834213880270848"}, +{"created_at": "Mon, 19 Dec 2011 18:43:51 +0000", "from_user": "paul_a_smith", "from_user_id": 9568572, "from_user_id_str": "9568572", "from_user_name": "Paul Smith", "geo": null, "id": 148835955476938750, "id_str": "148835955476938752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/492429787/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/492429787/twitterProfilePhoto_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@gcmorley w00t! When are you in NYC?", "to_user": "gcmorley", "to_user_id": 11978972, "to_user_id_str": "11978972", "to_user_name": "Graham Morley", "in_reply_to_status_id": 148835387580747780, "in_reply_to_status_id_str": "148835387580747776"}, +{"created_at": "Mon, 19 Dec 2011 18:43:50 +0000", "from_user": "EditorAtLarge", "from_user_id": 25084073, "from_user_id_str": "25084073", "from_user_name": "The Editor at Large", "geo": null, "id": 148835949621690370, "id_str": "148835949621690368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/396801440/low-res_logo_700k_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/396801440/low-res_logo_700k_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Rockefellers to chair 58th Winter Antiques Show in NYC: The Winter Antiques Show celebrates its 58th year by fea... http://t.co/DhlVPwj1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:49 +0000", "from_user": "jennifer_dubow", "from_user_id": 17251562, "from_user_id_str": "17251562", "from_user_name": "Jennifer D. Dubow", "geo": null, "id": 148835946505310200, "id_str": "148835946505310208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/323074821/IMG_0309_1_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/323074821/IMG_0309_1_1_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Rock on! #Cornell Picked to Build #NYC Science Campus http://t.co/J939kwBN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:49 +0000", "from_user": "Johnny_Iuzzini", "from_user_id": 147668753, "from_user_id_str": "147668753", "from_user_name": "Johnny Iuzzini", "geo": null, "id": 148835944953417730, "id_str": "148835944953417728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1659796829/4932108448_4ec5fb4781_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659796829/4932108448_4ec5fb4781_normal.jpg", "source": "<a href="http://www.whosay.com" rel="nofollow">WhoSay</a>", "text": "Holiday dinner last week with Jean Georges and all the chefs from his other NYC restaurants at Bar Masa. Great food... http://t.co/6tRSbqKE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:49 +0000", "from_user": "ChikaBakasi", "from_user_id": 16955603, "from_user_id_str": "16955603", "from_user_name": "Quenette O.", "geo": null, "id": 148835944722731000, "id_str": "148835944722731008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698252311/Photo_on_12-13-11_at_4.42_PM__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698252311/Photo_on_12-13-11_at_4.42_PM__2_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Nne bring me back some gala RT @Ms_Chinazor: Enroute NYC!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:43:32 +0000", "from_user": "rbeccazhou", "from_user_id": 105552664, "from_user_id_str": "105552664", "from_user_name": "rebecca zhou", "geo": null, "id": 148835876607242240, "id_str": "148835876607242240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1544749296/307488_2069547258948_1252830061_32201189_1526569_n__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544749296/307488_2069547258948_1252830061_32201189_1526569_n__1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @garysguide: The Mayor joins Cornell & Technion for game-changing announcement for NYC\\u2019s economic future. Live at 2:30 http://t.co/31ECNXDu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:26 +0000", "from_user": "Damon_James", "from_user_id": 169219354, "from_user_id_str": "169219354", "from_user_name": "Damon James", "geo": null, "id": 148835847763001340, "id_str": "148835847763001344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1608610102/185430_10150403878133852_582933851_10533730_564621_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608610102/185430_10150403878133852_582933851_10533730_564621_n_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@laurendevito fuck it do it. Change of scenery. If you don't like it go back to NYC", "to_user": "laurendevito", "to_user_id": 190927318, "to_user_id_str": "190927318", "to_user_name": "Evol", "in_reply_to_status_id": 148835231204507650, "in_reply_to_status_id_str": "148835231204507648"}, +{"created_at": "Mon, 19 Dec 2011 18:43:24 +0000", "from_user": "burberrydebbie", "from_user_id": 28991784, "from_user_id_str": "28991784", "from_user_name": "deBee", "geo": null, "id": 148835841022758900, "id_str": "148835841022758912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/122728273/20081001W048_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/122728273/20081001W048_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "At #americangirl #NYC.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:23 +0000", "from_user": "micaelashanley", "from_user_id": 94707240, "from_user_id_str": "94707240", "from_user_name": "Micaela Shanley", "geo": null, "id": 148835837327585280, "id_str": "148835837327585280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695201459/Snapshot_20111212_8_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695201459/Snapshot_20111212_8_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "NYC with @marisashanley @lukeholden93 :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:22 +0000", "from_user": "abcddesigns", "from_user_id": 15755923, "from_user_id_str": "15755923", "from_user_name": "ABC Dragoo", "geo": null, "id": 148835835058458620, "id_str": "148835835058458626", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1676156428/Screen_Shot_2011-12-05_at_6.43.05_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676156428/Screen_Shot_2011-12-05_at_6.43.05_PM_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@CrystalG so far, so good - threw a fun party this weekend. 1st one at the house: http://t.co/GaCOpIba Let me know when you're in NYC!", "to_user": "CrystalG", "to_user_id": 18350448, "to_user_id_str": "18350448", "to_user_name": "Crystal Gentilello", "in_reply_to_status_id": 148830126153539600, "in_reply_to_status_id_str": "148830126153539584"}, +{"created_at": "Mon, 19 Dec 2011 18:43:22 +0000", "from_user": "mmly", "from_user_id": 17015269, "from_user_id_str": "17015269", "from_user_name": "emily munroe", "geo": null, "id": 148835832743202800, "id_str": "148835832743202816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697127180/blooooood_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697127180/blooooood_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "NYC here I comeeeeee", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:21 +0000", "from_user": "Blissful_Hello", "from_user_id": 242327976, "from_user_id_str": "242327976", "from_user_name": "Dee", "geo": null, "id": 148835829324845060, "id_str": "148835829324845056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702451448/Blissful_Hello_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702451448/Blissful_Hello_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Room booked NYC for my 25th bday \\uD83C\\uDF82\\uD83C\\uDF78\\uD83D\\uDC51\\uD83C\\uDF89\\uD83C\\uDF88\\uD83C\\uDF81 it's a party it's party !! http://t.co/cGVOC0d2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:20 +0000", "from_user": "MustSee_Videos", "from_user_id": 434546737, "from_user_id_str": "434546737", "from_user_name": "MustSee_Videos", "geo": null, "id": 148835826250432500, "id_str": "148835826250432512", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688015097/Horse_mustsee_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688015097/Horse_mustsee_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Rolling Stones - Happy - Live '03 NYC http://t.co/YtlD7Q49", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:20 +0000", "from_user": "lovieawards", "from_user_id": 242827797, "from_user_id_str": "242827797", "from_user_name": "The Lovie Awards", "geo": null, "id": 148835825717743600, "id_str": "148835825717743616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1238473078/lovie_twitter__pink__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1238473078/lovie_twitter__pink__normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "We're in NYC visiting our sister @thewebbyawards & planning for 2012! Sign up to our newsletter for all the info: http://t.co/ailDhovl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:20 +0000", "from_user": "Findgirlsusa", "from_user_id": 410540996, "from_user_id_str": "410540996", "from_user_name": "Findgirlsusa", "geo": null, "id": 148835823599624200, "id_str": "148835823599624192", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1634812065/bikinigirls14_thumb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634812065/bikinigirls14_thumb_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Rolling Stones - Happy - Live '03 NYC http://t.co/vS2THWbL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:20 +0000", "from_user": "GracieFknCakess", "from_user_id": 314753239, "from_user_id_str": "314753239", "from_user_name": "Papi Chulo", "geo": null, "id": 148835823578652670, "id_str": "148835823578652674", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1541325239/1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541325239/1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/KUYsmQnO That's that New York shit @PreciousMonet_ smh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:18 +0000", "from_user": "funnyduckfuck", "from_user_id": 61261569, "from_user_id_str": "61261569", "from_user_name": "Matt ", "geo": null, "id": 148835818256080900, "id_str": "148835818256080897", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1642421154/Foto0091_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642421154/Foto0091_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @HotChelleRae: Don\\u2019t forget! We are playing a private show today at 5PM EST at the @iHeartRadio Theater in NYC. Enter for tix here: http://t.co/AzJSN2zV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:17 +0000", "from_user": "am1310thelight", "from_user_id": 163608446, "from_user_id_str": "163608446", "from_user_name": "Praise Indy", "geo": null, "id": 148835810806992900, "id_str": "148835810806992896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1479475566/AM-Logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1479475566/AM-Logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "NYC Man Set Woman On Fire In Elevator Over Repair Debts - The NYC man charged with burning a woman to death Saturday... http://t.co/AI9Re1DF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:17 +0000", "from_user": "itsmarcroberts", "from_user_id": 82578053, "from_user_id_str": "82578053", "from_user_name": "Marc Roberts (ish)", "geo": null, "id": 148835810056208400, "id_str": "148835810056208384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1411349969/263905_10150291753715712_681245711_9229521_7319004_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1411349969/263905_10150291753715712_681245711_9229521_7319004_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@nickhook my sis is in NYC this week. Should i send her your way? ;-)))", "to_user": "nickhook", "to_user_id": 15624101, "to_user_id_str": "15624101", "to_user_name": "nick hook"}, +{"created_at": "Mon, 19 Dec 2011 18:43:15 +0000", "from_user": "NYVerve", "from_user_id": 148877438, "from_user_id_str": "148877438", "from_user_name": "NYVerve", "geo": null, "id": 148835802636488700, "id_str": "148835802636488704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/936236170/NY_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/936236170/NY_normal.jpg", "source": "<a href="http://webpartner.com" rel="nofollow">WebPartner</a>", "text": "Wired: Psytrance and Trance IN NYC http://t.co/P3qJHWpS Full http://t.co/hU1xiKxG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:14 +0000", "from_user": "luiggi0124", "from_user_id": 54600472, "from_user_id_str": "54600472", "from_user_name": "Guillermo Ochoa", "geo": null, "id": 148835800770035700, "id_str": "148835800770035712", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1644015727/1P10Ahk4_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644015727/1P10Ahk4_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@javidavilam\\nSaludos contrapunto deportivo, la prudencia es la madre de la conciencia, muy bien dicho gordo davila. Desde la refria nyc.", "to_user": "javidavilam", "to_user_id": 200295600, "to_user_id_str": "200295600", "to_user_name": "Javier D\\u00E1vila"}, +{"created_at": "Mon, 19 Dec 2011 18:43:12 +0000", "from_user": "Opopam", "from_user_id": 124525072, "from_user_id_str": "124525072", "from_user_name": "OpoPam", "geo": null, "id": 148835793153175550, "id_str": "148835793153175552", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#5: Osiris Men's NYC 83 Mid Skate Shoe: http://t.co/T0vDjDwe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:12 +0000", "from_user": "taingubtana", "from_user_id": 56284494, "from_user_id_str": "56284494", "from_user_name": "taingubtana", "geo": null, "id": 148835792188473340, "id_str": "148835792188473344", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/448234824/PeoGeo650_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/448234824/PeoGeo650_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#5: Osiris Men's NYC 83 Mid Skate Shoe: http://t.co/YMnHorKy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:12 +0000", "from_user": "JonasC14", "from_user_id": 143470736, "from_user_id_str": "143470736", "from_user_name": "Jonas Carro", "geo": null, "id": 148835790309441540, "id_str": "148835790309441536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691732555/Trooper_Santa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691732555/Trooper_Santa_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I liked a @YouTube video http://t.co/OE5sIAAk BATMAN The Dark Knight Rises EXCLUSIVE!!! NYC BEHIND THE SCENES", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:08 +0000", "from_user": "tlpjr", "from_user_id": 31459312, "from_user_id_str": "31459312", "from_user_name": "TOM PAVLOT Jr.", "geo": null, "id": 148835776044613630, "id_str": "148835776044613633", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1077640490/tn64_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1077640490/tn64_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@fireengineering: Video of NYC #firefighters escaping burning Brooklyn brownstone: http://t.co/fgv6ujDT\\u201D another reason for NY 800.7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:06 +0000", "from_user": "mylifeasLIV_", "from_user_id": 232274173, "from_user_id_str": "232274173", "from_user_name": "Olivia Nicolazzo", "geo": +{"coordinates": [40.7499,-73.9877], "type": "Point"}, "id": 148835764594151420, "id_str": "148835764594151424", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701288063/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701288063/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "H&M in NYC >", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:05 +0000", "from_user": "xxTPRxx", "from_user_id": 402761367, "from_user_id_str": "402761367", "from_user_name": "zombie da tay", "geo": null, "id": 148835762740273150, "id_str": "148835762740273152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685258953/tumblr_l7ydjn4kR51qamd31o1_500_large_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685258953/tumblr_l7ydjn4kR51qamd31o1_500_large_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @taylormomsen: Christmas shopping in NYC, its been a few years since I've been at Rockefeller center...#thatsabigfuckingtree", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:05 +0000", "from_user": "AngelDFlores", "from_user_id": 16458034, "from_user_id_str": "16458034", "from_user_name": "Angel Flores", "geo": null, "id": 148835760995434500, "id_str": "148835760995434496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1588908806/AngelDFlores_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1588908806/AngelDFlores_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Photos on iOS</a>", "text": "Eating lunch at a macaroni and cheese bar. Only in NYC I guess. Neat place but tiny. @macbar http://t.co/DdI9TJTS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:03 +0000", "from_user": "agbons654", "from_user_id": 335268013, "from_user_id_str": "335268013", "from_user_name": "agbonghale l caleb", "geo": null, "id": 148835753219198980, "id_str": "148835753219198978", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675607788/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675607788/image_normal.jpg", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "(Man suspected of\\ntorching 73-year-old\\nwoman in NYC elevator\\ncharged with murder,\\narson)http://t.co/nkriot7R", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:02 +0000", "from_user": "UtterDiplomacy", "from_user_id": 73428619, "from_user_id_str": "73428619", "from_user_name": "Nichole", "geo": null, "id": 148835751273037820, "id_str": "148835751273037824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1194184132/SML_Profile_Pic_CROP_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1194184132/SML_Profile_Pic_CROP_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @SyracuseU: SU alum living in NYC? Get discounted tix to see B'way show Lysistrata Jones! Find details on @LubinHouseSU's FB wall http://t.co/0dhjueJh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:02 +0000", "from_user": "redostoneage", "from_user_id": 28156710, "from_user_id_str": "28156710", "from_user_name": "Truth Tweeter", "geo": null, "id": 148835751260463100, "id_str": "148835751260463104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/661208289/get_fileCA9BVO04_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/661208289/get_fileCA9BVO04_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Copenhagen: Religion of Peace attacks Hare Krishna Temple http://t.co/3fjTAJJH #bbc #uk #london #eu #europe #cnn #nyc #news #cbs #abc #pbs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:02 +0000", "from_user": "Me_shyfairy", "from_user_id": 407129589, "from_user_id_str": "407129589", "from_user_name": "\\u0402\\u03AClli\\u0639\\u03B3\\u0332\\u0323\\u0323\\u0325 ", "geo": null, "id": 148835749284954100, "id_str": "148835749284954112", "iso_language_code": "el", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700662611/fb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700662611/fb_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@OptaDoyen yh...she wz a vry nyc frwd. So dcyded \\u03C4\\u0305\\u0332\\u263A use dt as M\\u0305\\u0332\\u0336\\u0194\\u200E\\u200B\\u200E\\u200B \\u03C4\\u0305\\u0332.handle..#frwdz4eva", "to_user": "OptaDoyen", "to_user_id": 115969538, "to_user_id_str": "115969538", "to_user_name": "Doyin", "in_reply_to_status_id": 148833338046693380, "in_reply_to_status_id_str": "148833338046693376"}, +{"created_at": "Mon, 19 Dec 2011 18:42:51 +0000", "from_user": "damidiniho", "from_user_id": 235866789, "from_user_id_str": "235866789", "from_user_name": "adebayo akindeinde", "geo": null, "id": 148835702329704450, "id_str": "148835702329704448", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1672109467/Debayo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672109467/Debayo_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Had a nyc dae afta all!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:51 +0000", "from_user": "RapGenius", "from_user_id": 72073289, "from_user_id_str": "72073289", "from_user_name": "Rap Genius", "geo": null, "id": 148835701658619900, "id_str": "148835701658619904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1396884033/family_tree_three_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1396884033/family_tree_three_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@TPrince8307 LOL - but when their beef started Pac was in nyc", "to_user": "TPrince8307", "to_user_id": 178019319, "to_user_id_str": "178019319", "to_user_name": "T-Prince", "in_reply_to_status_id": 148811679923306500, "in_reply_to_status_id_str": "148811679923306498"}, +{"created_at": "Mon, 19 Dec 2011 18:42:48 +0000", "from_user": "redostoneage", "from_user_id": 28156710, "from_user_id_str": "28156710", "from_user_name": "Truth Tweeter", "geo": null, "id": 148835690480795650, "id_str": "148835690480795649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/661208289/get_fileCA9BVO04_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/661208289/get_fileCA9BVO04_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Copenhagen: Religion of Peace attacks Hare Krishna Temple http://t.co/3fjTAJJH #bbc #uk #london #eu #europe #cnn #nyc #news #cbs #abc #npr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:45 +0000", "from_user": "MilesNielsen", "from_user_id": 123630313, "from_user_id_str": "123630313", "from_user_name": "Miles Nielsen", "geo": null, "id": 148835679445581820, "id_str": "148835679445581824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1115528580/Me_NP_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1115528580/Me_NP_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@jimmyfallon Happy Monday, I hope the SNL saturday felt great.. Looks like we will be in NYC in the Spring. I would love to stop by and play", "to_user": "jimmyfallon", "to_user_id": 15485441, "to_user_id_str": "15485441", "to_user_name": "jimmy fallon"}, +{"created_at": "Mon, 19 Dec 2011 18:42:45 +0000", "from_user": "darealmaozedong", "from_user_id": 395911020, "from_user_id_str": "395911020", "from_user_name": "mao zedong", "geo": null, "id": 148835677470068740, "id_str": "148835677470068736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1600926992/Book_Cover_The_life_of_Mao_Zedong_in_Wood_Block_Printing_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600926992/Book_Cover_The_life_of_Mao_Zedong_in_Wood_Block_Printing_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @democracynow: Occupy Wall Street NYC marks 3-month anniversary with re-occupation attempt, dozens arrested. http://t.co/jK0sLcnw #ows", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:44 +0000", "from_user": "kirsten_matson", "from_user_id": 253263036, "from_user_id_str": "253263036", "from_user_name": "Kirsten Matson", "geo": null, "id": 148835672072007680, "id_str": "148835672072007680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1626453682/DSC00049_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626453682/DSC00049_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@MelissaKuhlthau i hope you're having fun in NYC :)", "to_user": "MelissaKuhlthau", "to_user_id": 436274750, "to_user_id_str": "436274750", "to_user_name": "Melissa Kuhlthau"}, +{"created_at": "Mon, 19 Dec 2011 18:42:42 +0000", "from_user": "MosthatedJones", "from_user_id": 278348148, "from_user_id_str": "278348148", "from_user_name": "Tyshell Jones", "geo": null, "id": 148835666959155200, "id_str": "148835666959155200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1465664984/photo_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1465664984/photo_normal", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@Baron_Davis<<<<< WELCOME TO NYC BABY YOU READY FOR WHATEVA ;)", "to_user": "Baron_Davis", "to_user_id": 21056862, "to_user_id_str": "21056862", "to_user_name": "Baron Davis"}, +{"created_at": "Mon, 19 Dec 2011 18:42:38 +0000", "from_user": "TaraCucciaPhoto", "from_user_id": 62323991, "from_user_id_str": "62323991", "from_user_name": "Tara Cuccia Photo", "geo": null, "id": 148835650601353200, "id_str": "148835650601353216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1441615552/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1441615552/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Christmas in front of the @Yodle office in #NYC! http://t.co/BUF0ZKSs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:38 +0000", "from_user": "Sing2meFancy", "from_user_id": 163999172, "from_user_id_str": "163999172", "from_user_name": "F\\u0105ncy\\u00DCWh\\u00F8?", "geo": null, "id": 148835649062047740, "id_str": "148835649062047745", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1688515196/2W6wE62l_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688515196/2W6wE62l_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Your AVi looks Gorgeous Hun! How's NYC treating u??? @FatimaPaigeMUA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:37 +0000", "from_user": "florenceflakir", "from_user_id": 429470261, "from_user_id_str": "429470261", "from_user_name": "florence flakir", "geo": null, "id": 148835645329113100, "id_str": "148835645329113088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1676258535/4477057_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676258535/4477057_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Suspect in NYC torching charged with murder - The Associated Press http://t.co/xgrRPDOO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:36 +0000", "from_user": "Kaymee", "from_user_id": 16493164, "from_user_id_str": "16493164", "from_user_name": "Kaymee", "geo": null, "id": 148835639679389700, "id_str": "148835639679389696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1594015392/YellowEye_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1594015392/YellowEye_normal.jpg", "source": "<a href="http://beta.twitlonger.com" rel="nofollow">TwitLonger Beta</a>", "text": "Great article. RT @Fara1 I saw a Bradley Manning tribute teepee at #OccupyWallStreet... http://t.co/soMarCcI #OWS #OccupyBoston #D17 #D18", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:34 +0000", "from_user": "Consuelorlm", "from_user_id": 440225479, "from_user_id_str": "440225479", "from_user_name": "Consuelo Ohan", "geo": null, "id": 148835631269814270, "id_str": "148835631269814273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700599801/large_EZBESSGUUXNU_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700599801/large_EZBESSGUUXNU_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "O Williams 72' Heavyweight Combine/Diner, NYC (2): Here is a Williams 43308 New York Central 72' Heavyweight Pas... http://t.co/lW2sGtB8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:34 +0000", "from_user": "SavyFashionista", "from_user_id": 271636248, "from_user_id_str": "271636248", "from_user_name": "Helen Tejeda-Ramos", "geo": null, "id": 148835629839564800, "id_str": "148835629839564800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1564324901/IMG00066-20100918-1959_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1564324901/IMG00066-20100918-1959_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@RueLaLa husband and I volunteered for Saturday school at a NYC Charter School and hope in the New Year to continue volunteering 2X a month", "to_user": "RueLaLa", "to_user_id": 21501453, "to_user_id_str": "21501453", "to_user_name": "Rue La La", "in_reply_to_status_id": 148834454008381440, "in_reply_to_status_id_str": "148834454008381440"}, +{"created_at": "Mon, 19 Dec 2011 18:42:32 +0000", "from_user": "darioszafir10", "from_user_id": 113133514, "from_user_id_str": "113133514", "from_user_name": "\\u262ED\\u00E5\\u044Fi\\u2134 LiLMons\\u2020er", "geo": null, "id": 148835621853601800, "id_str": "148835621853601792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1654865528/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654865528/image_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "RT @bordode: http://t.co/fWePAxbW Suspect in NYC woman's burning appears in court - The Associated Press\\u2026 http://t.co/i9We3XlC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:30 +0000", "from_user": "aint_yo_momma68", "from_user_id": 390669541, "from_user_id_str": "390669541", "from_user_name": "Nicky Finn", "geo": null, "id": 148835615092375550, "id_str": "148835615092375552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1593118284/A4sq9yi4_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593118284/A4sq9yi4_normal", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @purplepeace79: Talking about sistas with weaves but your woman got more tracks than the NYC subway system. FOH.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:30 +0000", "from_user": "g_love36330", "from_user_id": 228381131, "from_user_id_str": "228381131", "from_user_name": "Gabriel Love", "geo": null, "id": 148835614601646080, "id_str": "148835614601646081", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693713771/no6yI_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693713771/no6yI_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "I wonder what it would be like casting ppl for a music video in NYC or CA? Hmm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:30 +0000", "from_user": "jennampelletier", "from_user_id": 151953112, "from_user_id_str": "151953112", "from_user_name": "Jenna Pelletier", "geo": null, "id": 148835611229429760, "id_str": "148835611229429760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1479628229/jsaurus_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1479628229/jsaurus_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Spotted: @richeeses excellent ricotta among hundreds of imported cheeses at NYC food emporium @Eataly http://t.co/DtqerN6X", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:29 +0000", "from_user": "JohnTiessen", "from_user_id": 38677599, "from_user_id_str": "38677599", "from_user_name": "\\u262E \\u2665 u\\u01DDss\\u01DD\\u0131\\u0287 u\\u0265o\\u0638 \\u2665 \\u262E", "geo": null, "id": 148835610222805000, "id_str": "148835610222804993", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700875578/snowman_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700875578/snowman_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Last day! Help the children victims of #ChildAbuse Please Vote 4 @Childhelp > http://t.co/nYdYmv9I #nyc #LA #umc #Navy #Army #usmc #Activist", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:28 +0000", "from_user": "Akchheta1", "from_user_id": 421954641, "from_user_id_str": "421954641", "from_user_name": "Akchheta", "geo": null, "id": 148835608310198270, "id_str": "148835608310198272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@PragyanTG exams were okay!thats great news! NYC is not very far from here. we can meet over breaks and stuff! YAY.im really happy for you:)", "to_user": "PragyanTG", "to_user_id": 33139366, "to_user_id_str": "33139366", "to_user_name": "Pragyan T. Ghimire", "in_reply_to_status_id": 148797319364608000, "in_reply_to_status_id_str": "148797319364608000"}, +{"created_at": "Mon, 19 Dec 2011 18:42:28 +0000", "from_user": "DjMic_L", "from_user_id": 22568853, "from_user_id_str": "22568853", "from_user_name": "DJ Mic_L", "geo": null, "id": 148835607584587780, "id_str": "148835607584587777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1366645629/218816_1999077424682_1475912851_32240247_553247_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1366645629/218816_1999077424682_1475912851_32240247_553247_o_normal.jpg", "source": "<a href="http://83degrees.com/to/powertwitter" rel="nofollow">Power Twitter</a>", "text": "@misscolbycheese Should have been my wife a long time ago..#justsaying plus i was in NYC this past weekend too #fail", "to_user": "misscolbycheese", "to_user_id": 111520168, "to_user_id_str": "111520168", "to_user_name": "Colby ", "in_reply_to_status_id": 148835124853743600, "in_reply_to_status_id_str": "148835124853743616"}, +{"created_at": "Mon, 19 Dec 2011 18:42:27 +0000", "from_user": "Pav89c", "from_user_id": 92830288, "from_user_id_str": "92830288", "from_user_name": "Facundo Pavcovich", "geo": null, "id": 148835603423825920, "id_str": "148835603423825920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639074490/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639074490/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@MitchWestphal @DrMatiasM first thing tomorrow I'm getting it. Can't believe I didn't know bout the fan expo this weekend in NYC!", "to_user": "MitchWestphal", "to_user_id": 246157714, "to_user_id_str": "246157714", "to_user_name": "Mitch Westphal"}, +{"created_at": "Mon, 19 Dec 2011 18:42:25 +0000", "from_user": "DealforkNYC", "from_user_id": 246406831, "from_user_id_str": "246406831", "from_user_name": "NYC Restaurant Deals", "geo": null, "id": 148835595538538500, "id_str": "148835595538538496", "iso_language_code": "fi", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1232886246/TwitterLogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1232886246/TwitterLogo_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "@Jontasman Enjoy Katz's! Quite the NYC staple!", "to_user": "Jontasman", "to_user_id": 15548291, "to_user_id_str": "15548291", "to_user_name": "Jonathan Tasman"}, +{"created_at": "Mon, 19 Dec 2011 18:42:23 +0000", "from_user": "QueenNara531", "from_user_id": 44305602, "from_user_id_str": "44305602", "from_user_name": "shannara washington", "geo": null, "id": 148835587334479870, "id_str": "148835587334479872", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1661843684/CmFR6iU7_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661843684/CmFR6iU7_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Just arriving in NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:23 +0000", "from_user": "DanKimRedMango", "from_user_id": 18052866, "from_user_id_str": "18052866", "from_user_name": "Dan Kim", "geo": null, "id": 148835584771760130, "id_str": "148835584771760128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1660364637/dan385059_2047434039763_1661814326_1623409_1511415794_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660364637/dan385059_2047434039763_1661814326_1623409_1511415794_n_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "It's a beautiful day in New York City. #instagram #nyc http://t.co/p20wOVu6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:23 +0000", "from_user": "louisesdavis", "from_user_id": 378196641, "from_user_id_str": "378196641", "from_user_name": "Louise Smith Davis", "geo": +{"coordinates": [40.7846,-73.6319], "type": "Point"}, "id": 148835584419430400, "id_str": "148835584419430400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1555130280/web_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555130280/web_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Happy to be in NYC! RT @george2rescue The southern belle @louisesdavis is lending her expertise on OUR turf this round. http://t.co/ITQ7tGbC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:21 +0000", "from_user": "luisakroll", "from_user_id": 70375093, "from_user_id_str": "70375093", "from_user_name": "Luisa Kroll", "geo": null, "id": 148835579289796600, "id_str": "148835579289796608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/807608607/_GD16067_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/807608607/_GD16067_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "22-year-old daughter of billionaire pays $88 million for NYC apartment http://t.co/K22OnjV5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:21 +0000", "from_user": "NotherBrother", "from_user_id": 275146822, "from_user_id_str": "275146822", "from_user_name": "Nother Brother Ent.", "geo": null, "id": 148835576387350530, "id_str": "148835576387350528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702101931/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702101931/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TomCruise: TONIGHT! LIVE #MISSIONIMPOSSIBLE @GHOSTPROTOCOL #NYC #MOVIE \\u2605PREMIERE\\u2605 #BLOG COVERAGE! Join us on the red carpet! http://t.co/8FwxLVGC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:20 +0000", "from_user": "LauryJonas", "from_user_id": 67844553, "from_user_id_str": "67844553", "from_user_name": "Laura Jonas", "geo": null, "id": 148835572675387400, "id_str": "148835572675387393", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701897299/25951_104556272907269_100000586893084_114430_6860085_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701897299/25951_104556272907269_100000586893084_114430_6860085_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @HotChelleRae: Don\\u2019t forget! We are playing a private show today at 5PM EST at the @iHeartRadio Theater in NYC. Enter for tix here: http://t.co/AzJSN2zV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:20 +0000", "from_user": "HeidiTranQTY", "from_user_id": 387188064, "from_user_id_str": "387188064", "from_user_name": "Heidi Tran", "geo": null, "id": 148835572255957000, "id_str": "148835572255956992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1598643690/avatar-cartoon-64-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598643690/avatar-cartoon-64-1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Suspect in NYC torching charged with murder - The Associated Press", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:17 +0000", "from_user": "EricDundon", "from_user_id": 102554483, "from_user_id_str": "102554483", "from_user_name": "Eric Dundon", "geo": null, "id": 148835560272838660, "id_str": "148835560272838656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1370529076/7534_1166490604847_1305360433_30968250_6639235_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1370529076/7534_1166490604847_1305360433_30968250_6639235_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Who even has time to set an old woman on fire? What a sad story... http://t.co/zWdchPLF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:15 +0000", "from_user": "igotasmartphone", "from_user_id": 277087478, "from_user_id_str": "277087478", "from_user_name": "Juan Pepe", "geo": null, "id": 148835553574518800, "id_str": "148835553574518785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689485856/200607_712988478455_24401284_37940981_3606257_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689485856/200607_712988478455_24401284_37940981_3606257_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Muahahahahaha ignorance is bliss! RT @FreekeyZeakey This---->RT @BBizDAish: Uhmm RT @_cudderz Why do people say NYE?? Isn't it NYC??? Idk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:12 +0000", "from_user": "zionylennoxpr", "from_user_id": 40307393, "from_user_id_str": "40307393", "from_user_name": "zion y lennox ", "geo": null, "id": 148835537476796400, "id_str": "148835537476796416", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1499704271/losverdaderoszl_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1499704271/losverdaderoszl_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@SykO_ElTerrOr cdo vienes a nyc? En enero?", "to_user": "SykO_ElTerrOr", "to_user_id": 73885427, "to_user_id_str": "73885427", "to_user_name": "Syko El Terror", "in_reply_to_status_id": 148832220252082180, "in_reply_to_status_id_str": "148832220252082176"}, +{"created_at": "Mon, 19 Dec 2011 18:42:09 +0000", "from_user": "safesolvent", "from_user_id": 14634291, "from_user_id_str": "14634291", "from_user_name": "Martin Reisch", "geo": null, "id": 148835528106709000, "id_str": "148835528106708992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1500499005/_MG_2849_-_Version_4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1500499005/_MG_2849_-_Version_4_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@alexdao you have an incredible opportunity what with living in #NYC. if ever you wanna team up to shoot in YOUR city i'm a tweet away", "to_user": "alexdao", "to_user_id": 14620139, "to_user_id_str": "14620139", "to_user_name": "Alexandra Dao", "in_reply_to_status_id": 148835090695331840, "in_reply_to_status_id_str": "148835090695331840"}, +{"created_at": "Mon, 19 Dec 2011 18:42:07 +0000", "from_user": "Dbarone", "from_user_id": 143226329, "from_user_id_str": "143226329", "from_user_name": "Daniella Barone", "geo": null, "id": 148835517914546180, "id_str": "148835517914546176", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697059893/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697059893/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "So happy for @emilymusson! \\uD83D\\uDE0ACongrats!!! Love ya doll #LIM #NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:06 +0000", "from_user": "tennillehinzman", "from_user_id": 429511046, "from_user_id_str": "429511046", "from_user_name": "tennille hinzman", "geo": null, "id": 148835515662204930, "id_str": "148835515662204929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676366753/52436_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676366753/52436_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Suspect in NYC torching charged with murder - The Associated Press http://t.co/Z06t6m5Y", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:06 +0000", "from_user": "Vitadod", "from_user_id": 430044705, "from_user_id_str": "430044705", "from_user_name": "Vita Petrson", "geo": null, "id": 148835514722684930, "id_str": "148835514722684929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677516418/u5qqra45vu_134489302-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677516418/u5qqra45vu_134489302-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "MusicSkins John Lennon - NYC - MP3 Player Skins,Accessories for Unisex, Zune 30 GB,Black: MusicSkins John Lennon... http://t.co/eTsZtBl9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:06 +0000", "from_user": "Gisselatinoco", "from_user_id": 296454713, "from_user_id_str": "296454713", "from_user_name": "\\u2665Gisselatinoco\\u2665", "geo": +{"coordinates": [40.6796,-73.8619], "type": "Point"}, "id": 148835513502142460, "id_str": "148835513502142464", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702563821/476185560_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702563821/476185560_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Tu si sabes complacer a tus Fans aki esta la prueba \\u263A en #ClubPure NYC! http://t.co/Q2visPPu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:05 +0000", "from_user": "NewsAddicts1", "from_user_id": 420892156, "from_user_id_str": "420892156", "from_user_name": "News Addicts", "geo": null, "id": 148835508380901380, "id_str": "148835508380901376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1656785194/bald-eagle3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656785194/bald-eagle3_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Suspect in NYC torching charged with murder: The man suspected of dousing a 73-year-old woman with gasoline and ... http://t.co/8oYzv550", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:04 +0000", "from_user": "ConfusedInsan", "from_user_id": 369176796, "from_user_id_str": "369176796", "from_user_name": "Moh Sin", "geo": null, "id": 148835506086613000, "id_str": "148835506086612993", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1683515466/225334_2081728282099_1211844416_32579987_3532453_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683515466/225334_2081728282099_1211844416_32579987_3532453_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "En route to NYC with @aceofhearts91 #LETSDOTHIS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:03 +0000", "from_user": "OccupyWeather", "from_user_id": 400559295, "from_user_id_str": "400559295", "from_user_name": "Occupy Weather", "geo": null, "id": 148835501649047550, "id_str": "148835501649047552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1612658667/ows_retreats_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612658667/ows_retreats_normal.jpg", "source": "<a href="http://24Ahead.com/" rel="nofollow">OccupyWeather</a>", "text": "Forecast for NYC tonight: Overcast. Low temp: 42F. #OWS #TopProg #tcot", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:02 +0000", "from_user": "ybolotyw", "from_user_id": 361101097, "from_user_id_str": "361101097", "from_user_name": "Beverley Daum", "geo": null, "id": 148835497811251200, "id_str": "148835497811251202", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1511935925/1716_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1511935925/1716_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "gay speed dating nyc: http://t.co/OZaTU1dy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:01 +0000", "from_user": "OccupyWeather", "from_user_id": 400559295, "from_user_id_str": "400559295", "from_user_name": "Occupy Weather", "geo": null, "id": 148835494329987070, "id_str": "148835494329987072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1612658667/ows_retreats_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612658667/ows_retreats_normal.jpg", "source": "<a href="http://24Ahead.com/" rel="nofollow">OccupyWeather</a>", "text": "Forecast for NYC this afternoon: Rain. High temp: 55F. #OccupyWallSt #tlot #ocra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:01 +0000", "from_user": "HeatherMHiggins", "from_user_id": 36834135, "from_user_id_str": "36834135", "from_user_name": "Heather M. Higgins", "geo": null, "id": 148835493969272830, "id_str": "148835493969272832", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/367392566/hh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/367392566/hh_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Clare_OC $88 million for a pied-\\u00E0-terre. Nice. http://t.co/eQmeo2mz", "to_user": "Clare_OC", "to_user_id": 72406810, "to_user_id_str": "72406810", "to_user_name": "Clare O'Connor", "in_reply_to_status_id": 148832392126267400, "in_reply_to_status_id_str": "148832392126267392"}, +{"created_at": "Mon, 19 Dec 2011 18:42:01 +0000", "from_user": "ArcosAlfonso", "from_user_id": 406693966, "from_user_id_str": "406693966", "from_user_name": "Jntkdvr", "geo": null, "id": 148835492220239870, "id_str": "148835492220239872", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695436655/yo_chica_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695436655/yo_chica_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Streetfilms ! Top 5 2011, NYC's Calles Completas, vale la pena http://t.co/HDFs1nhT mas seguro xa peatones bicicletas y automoviles", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:59 +0000", "from_user": "markmurray98119", "from_user_id": 18715546, "from_user_id_str": "18715546", "from_user_name": "Mark Murray", "geo": null, "id": 148835485052178430, "id_str": "148835485052178434", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1184023850/_MG_6780_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1184023850/_MG_6780_1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@NelWang I thought you nailed it with characters to spare. Great play, hope I can get to NYC to see it again.", "to_user": "NelWang", "to_user_id": 15356617, "to_user_id_str": "15356617", "to_user_name": "Nelson Wang", "in_reply_to_status_id": 148831753241497600, "in_reply_to_status_id_str": "148831753241497602"}, +{"created_at": "Mon, 19 Dec 2011 18:41:59 +0000", "from_user": "TeamUntrust", "from_user_id": 131915211, "from_user_id_str": "131915211", "from_user_name": "G $", "geo": null, "id": 148835484288811000, "id_str": "148835484288811008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/815002591/m_f6dda66c6aae22ff0631abf29377136b_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/815002591/m_f6dda66c6aae22ff0631abf29377136b_normal.jpg", "source": "<a href="http://www.nibirutech.com" rel="nofollow">TwitBird</a>", "text": "@FlyMikeMarshall What you think of this track \"Rap Horror / Keep it Hood\" from @BMONEYBK & Q http://t.co/HvcHpr1G ?\\n\\nPlease RT\\n\\n#rap\\n#NYC", "to_user": "FlyMikeMarshall", "to_user_id": 82016803, "to_user_id_str": "82016803", "to_user_name": "Mike Marshall", "in_reply_to_status_id": 148833714686787600, "in_reply_to_status_id_str": "148833714686787584"}, +{"created_at": "Mon, 19 Dec 2011 18:41:58 +0000", "from_user": "Xfilespoker", "from_user_id": 15038133, "from_user_id_str": "15038133", "from_user_name": "Tom Dwyer ", "geo": null, "id": 148835481134702600, "id_str": "148835481134702592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1598839132/218129_206450186045036_100000401691907_630491_4776751_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598839132/218129_206450186045036_100000401691907_630491_4776751_n_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "http://t.co/AZFjt0E4 #n17 #occupy Bat Man Signal NYC (Video) #OO #OccupyHarrisburg #OWS RT if you want to.. ;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:57 +0000", "from_user": "elprez95", "from_user_id": 120965070, "from_user_id_str": "120965070", "from_user_name": "SHAWN BARTCZAK", "geo": null, "id": 148835474876801020, "id_str": "148835474876801024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1577662823/TWD-S2-Icons-Rick_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1577662823/TWD-S2-Icons-Rick_normal.gif", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "@RuiterWrongFAN: Baron Davis Headed To Big Apple, Signs W/ Knicks ? CBS Cleveland: http://t.co/XXCfpNlX <Best wishes2 BaronDavis in the NYC>", "to_user": "RuiterWrongFAN", "to_user_id": 29753270, "to_user_id_str": "29753270", "to_user_name": "Daryl Ruiter"}, +{"created_at": "Mon, 19 Dec 2011 18:41:55 +0000", "from_user": "Faith_FTH", "from_user_id": 363276031, "from_user_id_str": "363276031", "from_user_name": "Faith", "geo": null, "id": 148835468241416200, "id_str": "148835468241416192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1516416584/faith_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1516416584/faith_normal.jpeg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@alagracie vacay in nyc! What are your cant-miss restaurants?", "to_user": "alagracie", "to_user_id": 90003168, "to_user_id_str": "90003168", "to_user_name": "Gracie"}, +{"created_at": "Mon, 19 Dec 2011 18:41:55 +0000", "from_user": "Horup1", "from_user_id": 171970194, "from_user_id_str": "171970194", "from_user_name": "MR K", "geo": null, "id": 148835466806956030, "id_str": "148835466806956032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1090648187/4838980726_b0a00f2b23_b_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1090648187/4838980726_b0a00f2b23_b_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @therealmikedean: #WTT U.S. TOUR IS A WRAP. PJ TO NYC TO START NEXT PHASE.. NEVER STOPS DOES IT?? WHAT'S BETTER THAN THAT?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:54 +0000", "from_user": "YemenNewsDesk", "from_user_id": 381616651, "from_user_id_str": "381616651", "from_user_name": "Yemen News Desk", "geo": null, "id": 148835465359921150, "id_str": "148835465359921153", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1564070571/logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1564070571/logo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NYC man arrested in woman\\u2019s elevator burning death: NEW YORK: A man who reeked of gasoline when he entered a pol... http://t.co/sjrf7Hjj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:52 +0000", "from_user": "billboard", "from_user_id": 9695312, "from_user_id_str": "9695312", "from_user_name": "Billboard ", "geo": null, "id": 148835455167774720, "id_str": "148835455167774720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1173827542/bb_twitter_icon._jpg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1173827542/bb_twitter_icon._jpg_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @HotChelleRae: Don\\u2019t forget! We are playing a private show today at 5PM EST at the @iHeartRadio Theater in NYC. Enter for tix here: http://t.co/AzJSN2zV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:51 +0000", "from_user": "pluslily", "from_user_id": 115247248, "from_user_id_str": "115247248", "from_user_name": "Maria", "geo": null, "id": 148835451954925570, "id_str": "148835451954925568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1598273756/Photo_139_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598273756/Photo_139_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "@marcuscooks how can i pick one... creole grits!! and catfish.. i love it!!! #food #NYC and u even make dirty rice and it's the right kind!!", "to_user": "MarcusCooks", "to_user_id": 65733755, "to_user_id_str": "65733755", "to_user_name": "Marcus Samuelsson", "in_reply_to_status_id": 148834374333374460, "in_reply_to_status_id_str": "148834374333374464"}, +{"created_at": "Mon, 19 Dec 2011 18:41:49 +0000", "from_user": "J0se_phine", "from_user_id": 19510455, "from_user_id_str": "19510455", "from_user_name": "Josephine", "geo": null, "id": 148835441087483900, "id_str": "148835441087483905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/614603823/wallowpea_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/614603823/wallowpea_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Definitely going to book a break to NYC next year whether I have to go there myself or not :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:47 +0000", "from_user": "guestofaguest", "from_user_id": 14415108, "from_user_id_str": "14415108", "from_user_name": "Stanley Stuyvesant", "geo": null, "id": 148835432807927800, "id_str": "148835432807927808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1155265052/twitter_8_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1155265052/twitter_8_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @NYNightlife: Marcus Bifaro talks about the newly opened @iMOKBar http://t.co/uJAzZMat", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:46 +0000", "from_user": "Bee1ne", "from_user_id": 128035489, "from_user_id_str": "128035489", "from_user_name": " Bee1ne ", "geo": null, "id": 148835430685605900, "id_str": "148835430685605889", "iso_language_code": "hu", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1589810390/tumblr_lranvkvbCl1qmhzdpo1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1589810390/tumblr_lranvkvbCl1qmhzdpo1_500_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "#dope RT @PatoPaez: Kenny's #streetart #nyc http://t.co/bjTz2HAT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:43 +0000", "from_user": "kellylyman", "from_user_id": 113190597, "from_user_id_str": "113190597", "from_user_name": "Kelly Lyman", "geo": null, "id": 148835418765393920, "id_str": "148835418765393921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1395770225/IMG_6064_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1395770225/IMG_6064_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@KMWalton1 I'm loving these posts about your experience in NYC!!!", "to_user": "KMWalton1", "to_user_id": 89972696, "to_user_id_str": "89972696", "to_user_name": "K.M. Walton", "in_reply_to_status_id": 148803277688012800, "in_reply_to_status_id_str": "148803277688012802"}, +{"created_at": "Mon, 19 Dec 2011 18:41:42 +0000", "from_user": "CataOhSy", "from_user_id": 217196011, "from_user_id_str": "217196011", "from_user_name": "catalina guerra", "geo": null, "id": 148835412864012300, "id_str": "148835412864012288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1180175272/lady_gaga_2-1600x1200_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1180175272/lady_gaga_2-1600x1200_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @ladygaga: Woohooo!! Turn on 100.3 in NYC!! Marry The Night is on!! I love my hometown!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:40 +0000", "from_user": "SeriouslySophia", "from_user_id": 264285100, "from_user_id_str": "264285100", "from_user_name": "Sophia Sieu", "geo": null, "id": 148835405045837820, "id_str": "148835405045837825", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1269200773/1255399456_l_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1269200773/1255399456_l_2_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "TGiM? F*ck Mondays... Last day in NYC... Saddest one so far... </3 #heartbroken", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:38 +0000", "from_user": "eastcoastmed", "from_user_id": 17458824, "from_user_id_str": "17458824", "from_user_name": "eastcoastmed", "geo": null, "id": 148835396116152320, "id_str": "148835396116152320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/64783995/ecm-logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/64783995/ecm-logo_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Marcia G. Yerman: How Film and Philanthropy Work Together - The DOC NYC Festival featured a panel examining the inte... http://t.co/dWAA0Fvg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:37 +0000", "from_user": "iceberggrimm", "from_user_id": 23451393, "from_user_id_str": "23451393", "from_user_name": "Iceberg Grimm", "geo": null, "id": 148835393607974900, "id_str": "148835393607974914", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/872612721/Saint_Anger_300x300_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/872612721/Saint_Anger_300x300_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "#NYC => http://t.co/EIJjKVFq <= Saint Anger's \"Fly Out Fresh\" #VIDEO HOT! #TX #MIAMI #OK #GERMANY #UK #T1000ADAY #FOLLOBACK #RT8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:37 +0000", "from_user": "eastcoastmed", "from_user_id": 17458824, "from_user_id_str": "17458824", "from_user_name": "eastcoastmed", "geo": null, "id": 148835390780997630, "id_str": "148835390780997632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/64783995/ecm-logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/64783995/ecm-logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Marcia G. Yerman: How Film and Philanthropy Work Together - The DOC NYC Festival featured a panel examining the inte... http://t.co/pBzhzwgk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:36 +0000", "from_user": "Zollm", "from_user_id": 78430911, "from_user_id_str": "78430911", "from_user_name": "Zoll M", "geo": null, "id": 148835390357381120, "id_str": "148835390357381120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/445002019/ecm-logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/445002019/ecm-logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Marcia G. Yerman: How Film and Philanthropy Work Together - The DOC NYC Festival featured a panel examining the inte... http://t.co/f3sRDrep", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:36 +0000", "from_user": "lifepak500", "from_user_id": 78431760, "from_user_id_str": "78431760", "from_user_name": "Lifepak 500", "geo": null, "id": 148835389979889660, "id_str": "148835389979889664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/444988238/ecm-logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/444988238/ecm-logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Marcia G. Yerman: How Film and Philanthropy Work Together - The DOC NYC Festival featured a panel examining the inte... http://t.co/BFbAOJ0t", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:36 +0000", "from_user": "Lifepak12", "from_user_id": 78430263, "from_user_id_str": "78430263", "from_user_name": "Lifepak 12", "geo": null, "id": 148835389719842800, "id_str": "148835389719842816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/444996086/ecm-logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/444996086/ecm-logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Marcia G. Yerman: How Film and Philanthropy Work Together - The DOC NYC Festival featured a panel examining the inte... http://t.co/QHXqzpWK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:36 +0000", "from_user": "Lailabird12", "from_user_id": 118735820, "from_user_id_str": "118735820", "from_user_name": "Mary Benbouguettaya", "geo": null, "id": 148835388969058300, "id_str": "148835388969058305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1566692058/1uC1oFLz8AAEBHEK2SCdzpmAB.128_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566692058/1uC1oFLz8AAEBHEK2SCdzpmAB.128_normal.png", "source": "<a href="http://www.yahoo.com" rel="nofollow">Yahoo!</a>", "text": "commented: Like everyone else said, Where's the picture? http://t.co/amFyifJm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:36 +0000", "from_user": "JAIM3_ANDR3S", "from_user_id": 366703535, "from_user_id_str": "366703535", "from_user_name": "J.Andr\\u00E9s", "geo": null, "id": 148835388709019650, "id_str": "148835388709019648", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1592261925/Imagen-063_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592261925/Imagen-063_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Sab\\u00EDaUsted qe comprar una licencia de taxi en Nueva York #NYC costaba US$10 en 1937, y hoy vale un mill\\u00F3n de d\\u00F3lares. #NuevaYork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:34 +0000", "from_user": "SUPERSTARMIX", "from_user_id": 94373057, "from_user_id_str": "94373057", "from_user_name": "Marco Santaniello", "geo": null, "id": 148835378076454900, "id_str": "148835378076454912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662019978/ME-NEW-SITO_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662019978/ME-NEW-SITO_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@SUPERSTARMIX #style #NYC #manhattan around #chelsea #skirt and #tshirt by @SUPERSTARMIX :P #followme :P", "to_user": "SUPERSTARMIX", "to_user_id": 94373057, "to_user_id_str": "94373057", "to_user_name": "Marco Santaniello"}, +{"created_at": "Mon, 19 Dec 2011 18:41:33 +0000", "from_user": "Clarafulgue", "from_user_id": 171663393, "from_user_id_str": "171663393", "from_user_name": "Clara Fulgueiras", "geo": null, "id": 148835376813981700, "id_str": "148835376813981696", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1633770594/image__8__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633770594/image__8__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/hxqfNpRd a ver si os gusta el dibujo que he hecho con la tablet de mi hermana en NY :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:31 +0000", "from_user": "iknowyoo", "from_user_id": 21649540, "from_user_id_str": "21649540", "from_user_name": "iknowyoo", "geo": null, "id": 148835367880110080, "id_str": "148835367880110080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/401451843/avatarpic-l_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/401451843/avatarpic-l_normal.png", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "I just became the mayor of U2i NYC Office on @foursquare! http://t.co/3ZIW0MoP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:30 +0000", "from_user": "clemmethvarence", "from_user_id": 146107450, "from_user_id_str": "146107450", "from_user_name": "Clem Varence", "geo": null, "id": 148835364457545730, "id_str": "148835364457545728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688362716/IMG-20111209-00235_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688362716/IMG-20111209-00235_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "#ThisChristmas imma watch the ball drop in NYC again.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:29 +0000", "from_user": "Sibabe23", "from_user_id": 140031957, "from_user_id_str": "140031957", "from_user_name": "Siboo", "geo": null, "id": 148835360930136060, "id_str": "148835360930136066", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670406817/330795396_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670406817/330795396_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Yayy we shud lol RT @OLUWASANDRA: Yaaay let's b bffs! RT @Sibabe23: My name is Amazing!! Nyc to meet u.. RT ... http://t.co/A2rkYK0m", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:28 +0000", "from_user": "MrArielBurke", "from_user_id": 115499301, "from_user_id_str": "115499301", "from_user_name": "Ariel Burke", "geo": +{"coordinates": [40.7716,-73.8727], "type": "Point"}, "id": 148835355150389250, "id_str": "148835355150389248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1694249779/ya_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694249779/ya_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I hope NYC is ready for us... @BakeUpJowman @aroxxxx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:41:36 +0000", "from_user": "Lailabird12", "from_user_id": 118735820, "from_user_id_str": "118735820", "from_user_name": "Mary Benbouguettaya", "geo": null, "id": 148835388969058300, "id_str": "148835388969058305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1566692058/1uC1oFLz8AAEBHEK2SCdzpmAB.128_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566692058/1uC1oFLz8AAEBHEK2SCdzpmAB.128_normal.png", "source": "<a href="http://www.yahoo.com" rel="nofollow">Yahoo!</a>", "text": "commented: Like everyone else said, Where's the picture? http://t.co/amFyifJm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:36 +0000", "from_user": "JAIM3_ANDR3S", "from_user_id": 366703535, "from_user_id_str": "366703535", "from_user_name": "J.Andr\\u00E9s", "geo": null, "id": 148835388709019650, "id_str": "148835388709019648", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1592261925/Imagen-063_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592261925/Imagen-063_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Sab\\u00EDaUsted qe comprar una licencia de taxi en Nueva York #NYC costaba US$10 en 1937, y hoy vale un mill\\u00F3n de d\\u00F3lares. #NuevaYork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:34 +0000", "from_user": "SUPERSTARMIX", "from_user_id": 94373057, "from_user_id_str": "94373057", "from_user_name": "Marco Santaniello", "geo": null, "id": 148835378076454900, "id_str": "148835378076454912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662019978/ME-NEW-SITO_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662019978/ME-NEW-SITO_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@SUPERSTARMIX #style #NYC #manhattan around #chelsea #skirt and #tshirt by @SUPERSTARMIX :P #followme :P", "to_user": "SUPERSTARMIX", "to_user_id": 94373057, "to_user_id_str": "94373057", "to_user_name": "Marco Santaniello"}, +{"created_at": "Mon, 19 Dec 2011 18:41:33 +0000", "from_user": "Clarafulgue", "from_user_id": 171663393, "from_user_id_str": "171663393", "from_user_name": "Clara Fulgueiras", "geo": null, "id": 148835376813981700, "id_str": "148835376813981696", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1633770594/image__8__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633770594/image__8__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/hxqfNpRd a ver si os gusta el dibujo que he hecho con la tablet de mi hermana en NY :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:31 +0000", "from_user": "iknowyoo", "from_user_id": 21649540, "from_user_id_str": "21649540", "from_user_name": "iknowyoo", "geo": null, "id": 148835367880110080, "id_str": "148835367880110080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/401451843/avatarpic-l_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/401451843/avatarpic-l_normal.png", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "I just became the mayor of U2i NYC Office on @foursquare! http://t.co/3ZIW0MoP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:30 +0000", "from_user": "clemmethvarence", "from_user_id": 146107450, "from_user_id_str": "146107450", "from_user_name": "Clem Varence", "geo": null, "id": 148835364457545730, "id_str": "148835364457545728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688362716/IMG-20111209-00235_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688362716/IMG-20111209-00235_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "#ThisChristmas imma watch the ball drop in NYC again.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:29 +0000", "from_user": "Sibabe23", "from_user_id": 140031957, "from_user_id_str": "140031957", "from_user_name": "Siboo", "geo": null, "id": 148835360930136060, "id_str": "148835360930136066", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670406817/330795396_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670406817/330795396_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Yayy we shud lol RT @OLUWASANDRA: Yaaay let's b bffs! RT @Sibabe23: My name is Amazing!! Nyc to meet u.. RT ... http://t.co/A2rkYK0m", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:28 +0000", "from_user": "MrArielBurke", "from_user_id": 115499301, "from_user_id_str": "115499301", "from_user_name": "Ariel Burke", "geo": +{"coordinates": [40.7716,-73.8727], "type": "Point"}, "id": 148835355150389250, "id_str": "148835355150389248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1694249779/ya_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694249779/ya_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I hope NYC is ready for us... @BakeUpJowman @aroxxxx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:27 +0000", "from_user": "IrishTMc14", "from_user_id": 199472246, "from_user_id_str": "199472246", "from_user_name": "Tom McDonough", "geo": null, "id": 148835351958528000, "id_str": "148835351958528000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1637916775/layup_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637916775/layup_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Baron_Davis welcome to NYC, the new greatest show on hardwood", "to_user": "Baron_Davis", "to_user_id": 21056862, "to_user_id_str": "21056862", "to_user_name": "Baron Davis"}, +{"created_at": "Mon, 19 Dec 2011 18:41:27 +0000", "from_user": "mcfadyenumjqwy8", "from_user_id": 390297298, "from_user_id_str": "390297298", "from_user_name": "Mcfadyen Oxford", "geo": null, "id": 148835350322753540, "id_str": "148835350322753537", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1586831007/f_51_w_0005_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586831007/f_51_w_0005_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Stop by toppscards :) \"Jonnybones: Heading to NYC with my bro/ road trainer Six_Guns_Gibson to do a uKde", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:25 +0000", "from_user": "IamCrystal_Meth", "from_user_id": 202873670, "from_user_id_str": "202873670", "from_user_name": "The Greatest High ", "geo": null, "id": 148835342953357300, "id_str": "148835342953357312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684823855/SAM_0442__2___709x1280__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684823855/SAM_0442__2___709x1280__normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for iPhone</a>", "text": "So is Columbus 72 the only thing shaking on Christmas day in NYC? That's all I've heard about", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:24 +0000", "from_user": "n_elliott", "from_user_id": 328577112, "from_user_id_str": "328577112", "from_user_name": "nick elliott", "geo": null, "id": 148835337731448830, "id_str": "148835337731448832", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1658483014/IMG_0081_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658483014/IMG_0081_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@RudeBoiWest25_ Chicago or NYC over break?", "to_user": "RudeBoiWest25_", "to_user_id": 203408239, "to_user_id_str": "203408239", "to_user_name": "Josh West"}, +{"created_at": "Mon, 19 Dec 2011 18:41:23 +0000", "from_user": "LovelyAnnElater", "from_user_id": 376204497, "from_user_id_str": "376204497", "from_user_name": "Lovely Ann Elater", "geo": null, "id": 148835333356797950, "id_str": "148835333356797954", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1550162723/lovelyann_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1550162723/lovelyann_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Business class airline Odyssey plans London-NYC route: Bankers may be languishing in popularity polls but a new ... http://t.co/4TBtNU7g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:21 +0000", "from_user": "QueensJobs", "from_user_id": 345561361, "from_user_id_str": "345561361", "from_user_name": "Queens Jobs", "geo": null, "id": 148835325664432130, "id_str": "148835325664432129", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1469723316/1DollarA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1469723316/1DollarA_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Queens / NYC Jobs; Application Specialist - Open Systems at Fiserv Card Services (Morris Plains, NJ) http://t.co/aG2VWTDt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:21 +0000", "from_user": "QueensJobs", "from_user_id": 345561361, "from_user_id_str": "345561361", "from_user_name": "Queens Jobs", "geo": null, "id": 148835324011888640, "id_str": "148835324011888640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1469723316/1DollarA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1469723316/1DollarA_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Queens / NYC Jobs; SharePoint Solution Architect at Grg Consulting (New York, NY) http://t.co/aG2VWTDt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:20 +0000", "from_user": "QueensJobs", "from_user_id": 345561361, "from_user_id_str": "345561361", "from_user_name": "Queens Jobs", "geo": null, "id": 148835322275446800, "id_str": "148835322275446785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1469723316/1DollarA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1469723316/1DollarA_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Queens / NYC Jobs; Junior Information Architect at Rokkan (New York, NY) http://t.co/aG2VWTDt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:20 +0000", "from_user": "QueensJobs", "from_user_id": 345561361, "from_user_id_str": "345561361", "from_user_name": "Queens Jobs", "geo": null, "id": 148835320459309060, "id_str": "148835320459309056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1469723316/1DollarA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1469723316/1DollarA_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Queens / NYC Jobs; Loan Officer at Vantage Recruiting (Philadelphia, PA) http://t.co/aG2VWTDt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:19 +0000", "from_user": "QueensJobs", "from_user_id": 345561361, "from_user_id_str": "345561361", "from_user_name": "Queens Jobs", "geo": null, "id": 148835316566994940, "id_str": "148835316566994945", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1469723316/1DollarA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1469723316/1DollarA_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Queens / NYC Jobs; VP Engineering at Storydesk (New York, NY) http://t.co/aG2VWTDt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:14 +0000", "from_user": "Ed_Shea", "from_user_id": 54757273, "from_user_id_str": "54757273", "from_user_name": "Edward Shea Jr", "geo": null, "id": 148835297562595330, "id_str": "148835297562595328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/302726441/0819061508_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/302726441/0819061508_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "On my way to NYC to see the tree and the holiday windows don't tell work :-/", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:14 +0000", "from_user": "beyond_elegant", "from_user_id": 323054261, "from_user_id_str": "323054261", "from_user_name": "kaylah_simone", "geo": null, "id": 148835296199446530, "id_str": "148835296199446528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1679922211/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679922211/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Hitting up these thrift stores tomorrow while im in nyc . #i can dig that", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:13 +0000", "from_user": "WallStreetJob", "from_user_id": 346545558, "from_user_id_str": "346545558", "from_user_name": "Wall Street Job", "geo": null, "id": 148835291229208580, "id_str": "148835291229208576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1472462673/1DollarB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1472462673/1DollarB_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Wall Street NYC Jobs Application Specialist - Open Systems at Fiserv Card Services (Morris Plains, NJ) http://t.co/u1ov2pz5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:13 +0000", "from_user": "OccupyPics", "from_user_id": 384286683, "from_user_id_str": "384286683", "from_user_name": "Stevie T", "geo": null, "id": 148835291120148480, "id_str": "148835291120148480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1603672743/Occupy-PICS-_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1603672743/Occupy-PICS-_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Photo: | #OccupyWallStreet #D17 |: Steve O's Photos posted a... http://t.co/mZNzDOzm #nyc #newyorkcity #protest #occupyWallStreet #ows", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:12 +0000", "from_user": "WallStreetJob", "from_user_id": 346545558, "from_user_id_str": "346545558", "from_user_name": "Wall Street Job", "geo": null, "id": 148835289815719940, "id_str": "148835289815719941", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1472462673/1DollarB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1472462673/1DollarB_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Wall Street NYC Jobs SharePoint Solution Architect at Grg Consulting (New York, NY) http://t.co/u1ov2pz5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:12 +0000", "from_user": "spettypi", "from_user_id": 32410378, "from_user_id_str": "32410378", "from_user_name": "Shannon Pettypiece", "geo": null, "id": 148835288079286270, "id_str": "148835288079286272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692030737/twitter2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692030737/twitter2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@mittromney spotted in the Bloomberg building in NYC today. Welcome to Bloomberg Mitt", "to_user": "MittRomney", "to_user_id": 50055701, "to_user_id_str": "50055701", "to_user_name": "Mitt Romney"}, +{"created_at": "Mon, 19 Dec 2011 18:41:12 +0000", "from_user": "WallStreetJob", "from_user_id": 346545558, "from_user_id_str": "346545558", "from_user_name": "Wall Street Job", "geo": null, "id": 148835287085223940, "id_str": "148835287085223936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1472462673/1DollarB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1472462673/1DollarB_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Wall Street NYC Jobs Junior Information Architect at Rokkan (New York, NY) http://t.co/u1ov2pz5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:11 +0000", "from_user": "WallStreetJob", "from_user_id": 346545558, "from_user_id_str": "346545558", "from_user_name": "Wall Street Job", "geo": null, "id": 148835285407506430, "id_str": "148835285407506433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1472462673/1DollarB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1472462673/1DollarB_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Wall Street NYC Jobs Loan Officer at Vantage Recruiting (Philadelphia, PA) http://t.co/u1ov2pz5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:11 +0000", "from_user": "WallStreetJob", "from_user_id": 346545558, "from_user_id_str": "346545558", "from_user_name": "Wall Street Job", "geo": null, "id": 148835282618298370, "id_str": "148835282618298369", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1472462673/1DollarB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1472462673/1DollarB_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Wall Street NYC Jobs VP Engineering at Storydesk (New York, NY) http://t.co/u1ov2pz5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:10 +0000", "from_user": "thecamgirldiary", "from_user_id": 225621294, "from_user_id_str": "225621294", "from_user_name": "The Cam Girl Diary", "geo": null, "id": 148835281175457800, "id_str": "148835281175457792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1368562655/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1368562655/twitter_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "NYC non-\\u2019AA\\u2019 girls basketball rankings http://t.co/Pp2mJUZN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:10 +0000", "from_user": "Fabian_AAG", "from_user_id": 227193211, "from_user_id_str": "227193211", "from_user_name": "Fabian Aguinagalde \\u2714", "geo": null, "id": 148835279510306800, "id_str": "148835279510306816", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1661772078/CIMG592_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661772078/CIMG592_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @UnaVainaLoca1: Descarga http://t.co/hAuvHxIX #RD #DMV #Miami #NYC #Colombia #VNZL #Chile #Ecuador #Espa\\u00F1a #Nicaragua #ElSalvador #Guatemala #Peru #LATINOS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:09 +0000", "from_user": "SarahGowrie", "from_user_id": 429222954, "from_user_id_str": "429222954", "from_user_name": "Sarah Gowrie", "geo": null, "id": 148835275689312260, "id_str": "148835275689312256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676427659/servlet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676427659/servlet_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@smhelloladies Are you doing any shows in NYC?", "to_user": "smhelloladies", "to_user_id": 367284950, "to_user_id_str": "367284950", "to_user_name": "Stephen Merchant", "in_reply_to_status_id": 148834610439127040, "in_reply_to_status_id_str": "148834610439127042"}, +{"created_at": "Mon, 19 Dec 2011 18:41:09 +0000", "from_user": "melissamarin", "from_user_id": 21111355, "from_user_id_str": "21111355", "from_user_name": "melissa marin", "geo": null, "id": 148835273386639360, "id_str": "148835273386639360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1407327988/n48600421_31614271_3247_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1407327988/n48600421_31614271_3247_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@thegreatimc ugh rather be in manhattan doing laundry than sherman oaks!!! hope you are LOVING NYC!!!!!!", "to_user": "thegreatimc", "to_user_id": 279152195, "to_user_id_str": "279152195", "to_user_name": "Jonard Nelson", "in_reply_to_status_id": 148831852973666300, "in_reply_to_status_id_str": "148831852973666304"}, +{"created_at": "Mon, 19 Dec 2011 18:41:06 +0000", "from_user": "neilnicholson", "from_user_id": 24996750, "from_user_id_str": "24996750", "from_user_name": "Neil Nicholson", "geo": +{"coordinates": [35.2046,-80.7502], "type": "Point"}, "id": 148835262208815100, "id_str": "148835262208815105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/198436560/Neil2jpg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/198436560/Neil2jpg_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Hey how was NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:04 +0000", "from_user": "BonzGrafx", "from_user_id": 415720391, "from_user_id_str": "415720391", "from_user_name": "BonzGrafx", "geo": null, "id": 148835254021537800, "id_str": "148835254021537792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1659311003/bonzg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659311003/bonzg_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Some how Al Sharpton is going to find a way to defend this guy http://t.co/CjVuYKAC Suspect in NYC woman's burning appears in court", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:04 +0000", "from_user": "WhosYourDanie", "from_user_id": 53233666, "from_user_id_str": "53233666", "from_user_name": "Danielle Corbin", "geo": null, "id": 148835253849563140, "id_str": "148835253849563136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683869582/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683869582/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I love how 11 miles in NYC can take you from one borough to another two completely different places. 11 miles in GA barely gets you anywhere", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:03 +0000", "from_user": "oscarclovecom", "from_user_id": 16137104, "from_user_id_str": "16137104", "from_user_name": "oscarclove.com", "geo": null, "id": 148835250330546180, "id_str": "148835250330546176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1631324763/logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631324763/logo_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Some how Al Sharpton is going to find a way to defend this guy http://t.co/1We5kotP Suspect in NYC woman's burning appears in court", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:01 +0000", "from_user": "alcan7", "from_user_id": 48610056, "from_user_id_str": "48610056", "from_user_name": "Alberto Candelaria", "geo": null, "id": 148835239693783040, "id_str": "148835239693783040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1490718684/Puerto_Rico_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1490718684/Puerto_Rico_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "@taylorswift13 When the new 1 WTC is lite up @ nite in NYC the song I think about is Enchated because it sparkles just like the song. xoAC", "to_user": "taylorswift13", "to_user_id": 17919972, "to_user_id_str": "17919972", "to_user_name": "taylorswift13"}, +{"created_at": "Mon, 19 Dec 2011 18:41:00 +0000", "from_user": "Thamih_sofly", "from_user_id": 440884369, "from_user_id_str": "440884369", "from_user_name": "Thami_hadebe", "geo": null, "id": 148835236216700930, "id_str": "148835236216700928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @LeratoMathe: The outfit is nyc, bt wud luk beta on sum1 smaller. She luks lk a ray of golden sun. RT @ShortyNaomi: Queen luks nyc in Yellow #Generations", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:59 +0000", "from_user": "SjaakSeen", "from_user_id": 107080459, "from_user_id_str": "107080459", "from_user_name": "Sjaak Seen", "geo": null, "id": 148835232722849800, "id_str": "148835232722849793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1460339163/Sjaak_Seen_at_work3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1460339163/Sjaak_Seen_at_work3_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "RT: Video of NYC #firefighters escaping burning Brooklyn brownstone: http://t.co/7UDiMibJ\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:59 +0000", "from_user": "Lailabird12", "from_user_id": 118735820, "from_user_id_str": "118735820", "from_user_name": "Mary Benbouguettaya", "geo": null, "id": 148835232034988030, "id_str": "148835232034988032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1566692058/1uC1oFLz8AAEBHEK2SCdzpmAB.128_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566692058/1uC1oFLz8AAEBHEK2SCdzpmAB.128_normal.png", "source": "<a href="http://www.yahoo.com" rel="nofollow">Yahoo!</a>", "text": "gave a thumbs up to pegleg's comment: I'm sick of Yahoo's little strip ad, across the bottom of the my ... http://t.co/GgiXLDnl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:58 +0000", "from_user": "GinConCola", "from_user_id": 301274238, "from_user_id_str": "301274238", "from_user_name": "ColaConGin", "geo": null, "id": 148835229182869500, "id_str": "148835229182869505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692683694/IMG04521-20111130-0855_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692683694/IMG04521-20111130-0855_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @DrinkEnglishGin: Some of @DrinkEnglishGin's favorite NYC bars made the cut! http://t.co/AkLjHjkU @selenawrites", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:54 +0000", "from_user": "KarlyKitching", "from_user_id": 103249191, "from_user_id_str": "103249191", "from_user_name": "Jane D\\u262Ee", "geo": null, "id": 148835214213394430, "id_str": "148835214213394432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1535033142/asd__2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1535033142/asd__2__normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Popdust: @KarlyKitching Check out Ep. 1 of \"On The Road With Patrick Stump!\" Ride with him to an NYC guitar shop and more... http://t.co/WHRBx7Bu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:54 +0000", "from_user": "nick1lewis1", "from_user_id": 150707622, "from_user_id_str": "150707622", "from_user_name": "NickLewis", "geo": null, "id": 148835212179144700, "id_str": "148835212179144705", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1672099090/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672099090/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Paris, Amsterdam, Boston, NYC - that's just December.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:52 +0000", "from_user": "Mr_BiTCHEZZZ", "from_user_id": 39293357, "from_user_id_str": "39293357", "from_user_name": "Renaissance Man", "geo": null, "id": 148835202028929020, "id_str": "148835202028929025", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686033422/imagejpeg_2_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686033422/imagejpeg_2_1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @7_I_Am: Talking about sistas with weaves but your woman got more tracks than the NYC subway system. FOH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:51 +0000", "from_user": "realteflonchess", "from_user_id": 336067813, "from_user_id_str": "336067813", "from_user_name": "teflon marsham ", "geo": null, "id": 148835201072644100, "id_str": "148835201072644096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698310237/7u041b_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698310237/7u041b_normal.jpeg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@FaceoftheVI nyc or la that where you need to go", "to_user": "FaceoftheVI", "to_user_id": 255534271, "to_user_id_str": "255534271", "to_user_name": "Kareem Thomas", "in_reply_to_status_id": 148832866464305150, "in_reply_to_status_id_str": "148832866464305152"}, +{"created_at": "Mon, 19 Dec 2011 18:40:50 +0000", "from_user": "food_democracy", "from_user_id": 18091706, "from_user_id_str": "18091706", "from_user_name": "food_democracy", "geo": null, "id": 148835195645214720, "id_str": "148835195645214720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1337313262/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1337313262/Untitled_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @cookingupastory FNwire Farmers Join In Solidarity with Occupy Wall Street Protest in NYC http://t.co/yLxPFYn5 h/t @food_democracy #ows", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:50 +0000", "from_user": "NYTIMESJOBZ", "from_user_id": 140543571, "from_user_id_str": "140543571", "from_user_name": "Alex Brown", "geo": null, "id": 148835194923790340, "id_str": "148835194923790337", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Sr. PM Needed! - CRM and Sales Analytics - NYC: New York City, My client, a top tier investment bank, is looking... http://t.co/Wc9q7wrx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:49 +0000", "from_user": "FleetwoodDaniel", "from_user_id": 317580772, "from_user_id_str": "317580772", "from_user_name": "Daniel Fleetwood", "geo": null, "id": 148835192818249730, "id_str": "148835192818249728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1397465536/IMG_5852__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1397465536/IMG_5852__1__normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Wow! #NYC police: Suspect says woman set afire over debt - Yahoo! News http://t.co/y4cfVAPq via @YahooNews #crazypeople #burnedalive", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:48 +0000", "from_user": "Lailabird12", "from_user_id": 118735820, "from_user_id_str": "118735820", "from_user_name": "Mary Benbouguettaya", "geo": null, "id": 148835187726352400, "id_str": "148835187726352384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1566692058/1uC1oFLz8AAEBHEK2SCdzpmAB.128_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566692058/1uC1oFLz8AAEBHEK2SCdzpmAB.128_normal.png", "source": "<a href="http://www.yahoo.com" rel="nofollow">Yahoo!</a>", "text": "gave a thumbs up to allenjinx's comment: would it be THAT hard to publish a picture with the story?? http://t.co/9KibyYka", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:48 +0000", "from_user": "CSI_FLACK_NYR", "from_user_id": 18675372, "from_user_id_str": "18675372", "from_user_name": "Dianne Gee ", "geo": null, "id": 148835185784406000, "id_str": "148835185784406016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1577226741/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1577226741/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TomCruise: Tom answers your questions at the NYC M:I-@GhostProtocol Premiere 2night! Submit your questions w/ #MissionNYC http://t.co/8FwxLVGC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:46 +0000", "from_user": "GOLDANDCHAIN", "from_user_id": 318607114, "from_user_id_str": "318607114", "from_user_name": "Gold&Chain", "geo": null, "id": 148835180684120060, "id_str": "148835180684120064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1498819546/glossy18aug_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1498819546/glossy18aug_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @IRockTheBelles: Can anyone hook up dj sets in NYC. Going on hols there and wanna spin for love not money! Can return the favour in London! RT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:45 +0000", "from_user": "xRedRoverx", "from_user_id": 176657599, "from_user_id_str": "176657599", "from_user_name": "Kristi", "geo": null, "id": 148835176246554620, "id_str": "148835176246554624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1523378880/me_August_2011_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1523378880/me_August_2011_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @redostoneage: Copenhagen: Religion of Peace attacks Hare Krishna Temple http://t.co/3fjTAJJH #p2 #topprog #maddow #msnbc #cnn #nyc #npr #pbs #news", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:43 +0000", "from_user": "ladybird_09", "from_user_id": 76409603, "from_user_id_str": "76409603", "from_user_name": "Adriana Castillo", "geo": null, "id": 148835164548632580, "id_str": "148835164548632576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1659654779/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659654779/image_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "#subway #mta #NYC #astoria http://t.co/kwFMmjq4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:42 +0000", "from_user": "jillgurich", "from_user_id": 42073477, "from_user_id_str": "42073477", "from_user_name": "Jill Gurich", "geo": null, "id": 148835161172226050, "id_str": "148835161172226048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1098873715/DSC03648_2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1098873715/DSC03648_2_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@mycomet525 thats the weekend i will be in NYC too!!", "to_user": "mycomet525", "to_user_id": 45745037, "to_user_id_str": "45745037", "to_user_name": "Hayley Miller", "in_reply_to_status_id": 148831502820581380, "in_reply_to_status_id_str": "148831502820581377"}, +{"created_at": "Mon, 19 Dec 2011 18:40:41 +0000", "from_user": "jennyfenig", "from_user_id": 14554068, "from_user_id_str": "14554068", "from_user_name": "jennyfenig", "geo": null, "id": 148835158324289540, "id_str": "148835158324289536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1155525236/Jenny_-_red_sweater__web__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1155525236/Jenny_-_red_sweater__web__normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Are you ready to step forward? This is for you.... http://t.co/zFB4ikjq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:39 +0000", "from_user": "Hi_LarryBrown", "from_user_id": 110242883, "from_user_id_str": "110242883", "from_user_name": "Hillary Brown", "geo": null, "id": 148835151210749950, "id_str": "148835151210749953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1589001334/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1589001334/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@nikabolie check now maybe I spelled it wrong but I sent it when you were in NYC my love", "to_user": "nikabolie", "to_user_id": 428722765, "to_user_id_str": "428722765", "to_user_name": "Nicole Immediato", "in_reply_to_status_id": 148824014557679600, "in_reply_to_status_id_str": "148824014557679617"}, +{"created_at": "Mon, 19 Dec 2011 18:40:37 +0000", "from_user": "Batkonehat", "from_user_id": 15665660, "from_user_id_str": "15665660", "from_user_name": "Batkonehat", "geo": null, "id": 148835141337354240, "id_str": "148835141337354240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@BradEllisPiano very fun rendition of Baby It's Cold Outside at the benefit. So fun to hear your voice. Enjoy NYC...it's cold out there!", "to_user": "BradEllisPiano", "to_user_id": 222040597, "to_user_id_str": "222040597", "to_user_name": "Brad Ellis"}, +{"created_at": "Mon, 19 Dec 2011 18:40:36 +0000", "from_user": "saratea", "from_user_id": 1889301, "from_user_id_str": "1889301", "from_user_name": "Sara Tea", "geo": null, "id": 148835138799796220, "id_str": "148835138799796224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1647838352/FINALVOUYOU_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647838352/FINALVOUYOU_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @unha_engels: Here is a little secret for you who live in NYC: DMV express on 34th and 8th is not bad at all. #ahhhhhhh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:36 +0000", "from_user": "Silverchex", "from_user_id": 23407126, "from_user_id_str": "23407126", "from_user_name": "Valerie", "geo": null, "id": 148835138313261060, "id_str": "148835138313261056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1153940117/blueangel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1153940117/blueangel_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TomCruise: TONIGHT! LIVE #MISSIONIMPOSSIBLE @GHOSTPROTOCOL #NYC #MOVIE \\u2605PREMIERE\\u2605 #BLOG COVERAGE! Join us on the red carpet! http://t.co/8FwxLVGC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:36 +0000", "from_user": "ayahorii", "from_user_id": 154525221, "from_user_id_str": "154525221", "from_user_name": "Aya Horii", "geo": null, "id": 148835136073498620, "id_str": "148835136073498624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1552440844/Untitled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552440844/Untitled_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @HotChelleRae: Don\\u2019t forget! We are playing a private show today at 5PM EST at the @iHeartRadio Theater in NYC. Enter for tix here: http://t.co/AzJSN2zV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:36 +0000", "from_user": "ChrisinNarberth", "from_user_id": 25111625, "from_user_id_str": "25111625", "from_user_name": "chris mccloud", "geo": null, "id": 148835135809269760, "id_str": "148835135809269760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1238448531/chris_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1238448531/chris_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@YankeeMegInPHL thank you. Spending the day in NYC with the wife and kid", "to_user": "YankeeMegInPHL", "to_user_id": 33943069, "to_user_id_str": "33943069", "to_user_name": "Megs", "in_reply_to_status_id": 148770083932606460, "in_reply_to_status_id_str": "148770083932606466"}, +{"created_at": "Mon, 19 Dec 2011 18:40:33 +0000", "from_user": "rachelbnolan", "from_user_id": 358367825, "from_user_id_str": "358367825", "from_user_name": "Rachel Nolan", "geo": null, "id": 148835122135834620, "id_str": "148835122135834624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1503912586/Screen_shot_2011-08-19_at_4.14.44_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1503912586/Screen_shot_2011-08-19_at_4.14.44_PM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Op-ed by young black man on arbitrary search and frisk in NYC: \"We know the rules: don\\u2019t run and don\\u2019t try to explain.\" http://t.co/OIxDlrKQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:30 +0000", "from_user": "laventure", "from_user_id": 17411169, "from_user_id_str": "17411169", "from_user_name": "laventure", "geo": null, "id": 148835111931093000, "id_str": "148835111931092992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/455865674/36946_ehi_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/455865674/36946_ehi_normal.gif", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "New York magazine's Reason #5 to love NYC http://t.co/qK0qoaPT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:29 +0000", "from_user": "executivechoice", "from_user_id": 85576019, "from_user_id_str": "85576019", "from_user_name": "EC Staff", "geo": null, "id": 148835106566578180, "id_str": "148835106566578176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/837072766/miamodel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/837072766/miamodel_normal.jpg", "source": "<a href="http://www.supertweet.net" rel="nofollow">MyAuthAPIProxy</a>", "text": "Get a date from http://t.co/FtjvzBnA when you visit the Battleship New Jersey in NYC.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:28 +0000", "from_user": "arianailoveyou1", "from_user_id": 431931006, "from_user_id_str": "431931006", "from_user_name": "Ashley,Ariana e Demi", "geo": null, "id": 148835105140506620, "id_str": "148835105140506624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681635155/avatar_1d91fad47bc9_64_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681635155/avatar_1d91fad47bc9_64_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ArianaGrande: If you're coming to my show on December 28 at @IrvingPlaza in NYC and want to come meet me after, here's how: http://t.co/1w7eeLFq! xoxo RT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:27 +0000", "from_user": "chrisario", "from_user_id": 14258957, "from_user_id_str": "14258957", "from_user_name": "Chris Rosario", "geo": null, "id": 148835100551942140, "id_str": "148835100551942145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699730406/rsz_323653_311221408900189_100000369985275_1099620_2085793341_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699730406/rsz_323653_311221408900189_100000369985275_1099620_2085793341_o_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "RT @leannemark: In heaven at #Barneys #NYC w @angepic! Headed to #gaga's workshop @chrisario http://t.co/x0td9pdH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:26 +0000", "from_user": "mrlocatr", "from_user_id": 416550274, "from_user_id_str": "416550274", "from_user_name": "Robert Nemecek", "geo": null, "id": 148835096634462200, "id_str": "148835096634462209", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1647338042/Robert_Nemecek_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647338042/Robert_Nemecek_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Billionaire's Daughter Pays Record Sum For NYC Pad: \\u201CThis sale is an outlier. It works out to be about $13000 pe... http://t.co/K5uNFkka", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:24 +0000", "from_user": "canstandtherain", "from_user_id": 156734954, "from_user_id_str": "156734954", "from_user_name": "{~Lucre**", "geo": null, "id": 148835085674741760, "id_str": "148835085674741760", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692998034/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692998034/image_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Jealousy - Darren Criss @ Joe's Pub 12/18/11 NYC http://t.co/dfSE5wyL\\n\\nVideo stupendo! C'\\u00E8 tutto: ~", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:24 +0000", "from_user": "reeksthegreat", "from_user_id": 424828482, "from_user_id_str": "424828482", "from_user_name": "enrique espaillat", "geo": null, "id": 148835084508725250, "id_str": "148835084508725248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1665552239/reeksthegreat_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665552239/reeksthegreat_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "NYC two wks wit the crew....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:23 +0000", "from_user": "reinventmekiki", "from_user_id": 26455084, "from_user_id_str": "26455084", "from_user_name": "Kallie B. *05ZG08FA", "geo": null, "id": 148835080268300300, "id_str": "148835080268300288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698592401/110111144112_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698592401/110111144112_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Ibs hair show n nyc april.....,http://t.co/8TVW34fr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:22 +0000", "from_user": "shanndelaney", "from_user_id": 365244487, "from_user_id_str": "365244487", "from_user_name": "Shannon Delaney", "geo": null, "id": 148835076480843780, "id_str": "148835076480843777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1521552309/yea_045_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1521552309/yea_045_normal.JPG", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "On our way back to nyc for the day, and tonight flying back to Cleveland.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:20 +0000", "from_user": "jellicle0", "from_user_id": 16709466, "from_user_id_str": "16709466", "from_user_name": "James Hansen", "geo": null, "id": 148835070109691900, "id_str": "148835070109691904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1131499962/studio_lot_crop_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1131499962/studio_lot_crop_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@rayadverb: In NYC, saw the Christmas show at Radio City. Had no idea the birth of Jesus involved so many dancers.\\u201D @julierunner", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:19 +0000", "from_user": "PenUltimate76", "from_user_id": 17871877, "from_user_id_str": "17871877", "from_user_name": "M3DZN", "geo": null, "id": 148835066041208830, "id_str": "148835066041208832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693560553/thnk_m3_by_kwisatzhaderak-d3tcpmw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693560553/thnk_m3_by_kwisatzhaderak-d3tcpmw_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Attention NYC InkHeadz..If you want superb quality work: #follow @CityofInk and call 404.525.4465 and request @RogerParrilla to tour NYC now", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:18 +0000", "from_user": "Natty_Lightt", "from_user_id": 269504288, "from_user_id_str": "269504288", "from_user_name": "Natasha Nichols", "geo": null, "id": 148835063168122880, "id_str": "148835063168122880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1682144033/Photo_on_2011-12-07_at_21.56__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682144033/Photo_on_2011-12-07_at_21.56__2_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "NYC for the day", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:17 +0000", "from_user": "ericfebdian", "from_user_id": 39236345, "from_user_id_str": "39236345", "from_user_name": "Eric Febdian Sutanto", "geo": null, "id": 148835057824579600, "id_str": "148835057824579584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696833961/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696833961/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TomCruise: Tom answers your questions at the NYC M:I-@GhostProtocol Premiere 2night! Submit your questions w/ #MissionNYC http://t.co/8FwxLVGC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:15 +0000", "from_user": "Princess_Trice", "from_user_id": 180159127, "from_user_id_str": "180159127", "from_user_name": "Kamryn Madison ", "geo": null, "id": 148835047833747460, "id_str": "148835047833747457", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690621534/Trice_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690621534/Trice_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tzybaby: RT @Princess_Trice I wanna go to NYC so bad for new years eve! <--now that's the move .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:12 +0000", "from_user": "TwinsoulDesign", "from_user_id": 100118583, "from_user_id_str": "100118583", "from_user_name": "Interior Designer", "geo": null, "id": 148835037532520450, "id_str": "148835037532520449", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1261144902/Lynnette_Warhol_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1261144902/Lynnette_Warhol_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Spectacular! How to Make a beautiful Gingerbread NY Brownstone http://t.co/4boddtGb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:08 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148835019648016400, "id_str": "148835019648016386", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @jobs4NYC: Vitae Restaurant Hiring All BOH Positions (Midtown) http://t.co/6To8txUV #NYC #NewYork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:07 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148835016481316860, "id_str": "148835016481316864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @jobs4NYC: Leasing Associate (Stamford CT) http://t.co/R5ZOihku #NYC #NewYork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:07 +0000", "from_user": "ultramagnus7", "from_user_id": 234058298, "from_user_id_str": "234058298", "from_user_name": "Dave Hall", "geo": null, "id": 148835015181074430, "id_str": "148835015181074433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1350863635/macho_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1350863635/macho_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@richiey2 I'm back like warrior circa 94! How was #NYC ?", "to_user": "richiey2", "to_user_id": 251147502, "to_user_id_str": "251147502", "to_user_name": "Richard Faiz", "in_reply_to_status_id": 148833218630660100, "in_reply_to_status_id_str": "148833218630660096"}, +{"created_at": "Mon, 19 Dec 2011 18:40:07 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148835014950404100, "id_str": "148835014950404096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @jobs4NYC: Paid Internship Opportunities at Irving Levin Associates (Norwalk) http://t.co/ZUHQ8hsT #NYC #NewYork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:06 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148835012144398340, "id_str": "148835012144398337", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @jobs4NYC: CAMPAIGN DIRECTOR, Run an Environmental Campaign Right Out of College (Manhattan) http://t.co/ovq409tG #NYC #NewYork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:06 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148835010252767230, "id_str": "148835010252767233", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @jobs4NYC: INSIDE SALES. SALARY + commision (EAST WILLIAMSBURG) http://t.co/LCEfRoDl #NYC #NewYork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:05 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148835008663142400, "id_str": "148835008663142400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @housing4NYC: #housing4u #housing First Class Professional Office In The Plaza District! This is an Oppo (Plaza ... http://t.co/P0t93ee2 #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:05 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148835005978771460, "id_str": "148835005978771456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @housing4NYC: #housing4u #housing Windsor Terrace 2bd, 1bath...Beautiful!! (Windsor Terrace) $2300 2bd http://t.co/eEEIOL3B #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:04 +0000", "from_user": "Mathfi_Jobs", "from_user_id": 59126679, "from_user_id_str": "59126679", "from_user_name": "Mathfi", "geo": null, "id": 148835004632399870, "id_str": "148835004632399873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/326427455/tweet-mathfi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/326427455/tweet-mathfi_normal.jpg", "source": "<a href="http://www.maths-fi.com/" rel="nofollow">MathsFi Twitt</a>", "text": "Job Quantitative Hedge Fund (New York City): PhD Quantitative Strategist.+,... http://t.co/iE9CrMEi Quant IB Finance jobs 3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:04 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148835003709657100, "id_str": "148835003709657088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @housing4NYC: #housing4u #housing BEAUTIFUL APARTMENT 35TH STREET (Astoria) $1400 1bd http://t.co/lO6W471p #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:04 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148835000840757250, "id_str": "148835000840757248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @housing4NYC: #housing4u #housing DEAL FOR ROOMMATES! 3BR/LAUNDRY/ROOF ACCESS/GREAT LOCATION! (Crown Heights/Pro... http://t.co/TB7nMLZ2 #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:03 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148834998626172930, "id_str": "148834998626172928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @housing4NYC: #housing4u #housing Winter Promo - Upper West Side Lovely Furnished Studio (Upper West Side) $2599 http://t.co/jLmsnkta #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:03 +0000", "from_user": "VRavencroft", "from_user_id": 109348521, "from_user_id_str": "109348521", "from_user_name": "Vanessa Ravencroft", "geo": null, "id": 148834996956831740, "id_str": "148834996956831744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/661424167/vr1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/661424167/vr1_normal.jpg", "source": "<a href="http://www.yahoo.com" rel="nofollow">Yahoo!</a>", "text": "gave a thumbs up to DER TEUFEL's comment: This nut is the reason why we have the death penalty in Texas. http://t.co/1BhmaT52", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:02 +0000", "from_user": "StergioLive", "from_user_id": 170192951, "from_user_id_str": "170192951", "from_user_name": "St\\u00E9rgio ", "geo": null, "id": 148834995920838660, "id_str": "148834995920838656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701847141/397221_2403571687042_1183616694_32083583_782766050_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701847141/397221_2403571687042_1183616694_32083583_782766050_n_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "February :( RT @KeoniHudoba: @StergioLive I'm great big guy. When u coming to nyc?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:03 +0000", "from_user": "SUPERSTARMIX", "from_user_id": 94373057, "from_user_id_str": "94373057", "from_user_name": "Marco Santaniello", "geo": null, "id": 148834995375579140, "id_str": "148834995375579136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662019978/ME-NEW-SITO_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662019978/ME-NEW-SITO_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Lovely day in #NYC @I_LOVE_NY @NYCpassion #chelsea http://t.co/bWDLpzgN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:02 +0000", "from_user": "NSAYSoHoTriBeCa", "from_user_id": 154193515, "from_user_id_str": "154193515", "from_user_name": "Soho & TriBeCa NYC", "geo": null, "id": 148834993601388540, "id_str": "148834993601388544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1260281494/SoHoTriBeCa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1260281494/SoHoTriBeCa_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Things to Do in #SoHo #TriBeCa & #FiDi: Dec. 19-23. See new #PopUpShop , #Holiday #ArtShow and more! http://t.co/XhjX6qtx #nyc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:01 +0000", "from_user": "paul_a_smith", "from_user_id": 9568572, "from_user_id_str": "9568572", "from_user_name": "Paul Smith", "geo": null, "id": 148834988278820860, "id_str": "148834988278820865", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/492429787/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/492429787/twitterProfilePhoto_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "2012 is the year I become a paid travel writer! First up - Atlanta / Nashville / Athens / Savannah / Atlantic City / NYC. How excited am I?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:00 +0000", "from_user": "ViolertLLC", "from_user_id": 364281697, "from_user_id_str": "364281697", "from_user_name": "Violert", "geo": null, "id": 148834987079241730, "id_str": "148834987079241728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1610833249/Violerttwitter128x128_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610833249/Violerttwitter128x128_1__normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "We\\u2019re the one stop shop for all of your NYC building violation needs.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:58 +0000", "from_user": "chrisario", "from_user_id": 14258957, "from_user_id_str": "14258957", "from_user_name": "Chris Rosario", "geo": null, "id": 148834977210040320, "id_str": "148834977210040320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699730406/rsz_323653_311221408900189_100000369985275_1099620_2085793341_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699730406/rsz_323653_311221408900189_100000369985275_1099620_2085793341_o_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@leannemark STOP! I want that! #serially, thank you http://t.co/lWb89p3F #Barneys #NYC", "to_user": "leannemark", "to_user_id": 19870275, "to_user_id_str": "19870275", "to_user_name": "Leanne Mark", "in_reply_to_status_id": 148501525386371070, "in_reply_to_status_id_str": "148501525386371072"}, +{"created_at": "Mon, 19 Dec 2011 18:39:58 +0000", "from_user": "Jerlyn", "from_user_id": 1822401, "from_user_id_str": "1822401", "from_user_name": "Jerlyn", "geo": null, "id": 148834975800770560, "id_str": "148834975800770560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1653155257/311354_876328403935_24400599_39161934_2127956379_n__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653155257/311354_876328403935_24400599_39161934_2127956379_n__1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@esulliva Lol it's so tempting in NYC... I do think I'm running just to eat haha, which is tough with working late hours :|", "to_user": "esulliva", "to_user_id": 14599608, "to_user_id_str": "14599608", "to_user_name": "Edward Sullivan", "in_reply_to_status_id": 148832877302386700, "in_reply_to_status_id_str": "148832877302386688"}, +{"created_at": "Mon, 19 Dec 2011 18:39:57 +0000", "from_user": "YUObserver", "from_user_id": 368146818, "from_user_id_str": "368146818", "from_user_name": "YU Observer", "geo": null, "id": 148834972076220400, "id_str": "148834972076220416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1530798846/ObserverLogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1530798846/ObserverLogo_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @YUNews: (VIDEO) Stern College for Women's Brookdale Hall Lights Up NYC! #Chanukah http://t.co/SgHlp2vi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:55 +0000", "from_user": "HackerNewsYC", "from_user_id": 15042473, "from_user_id_str": "15042473", "from_user_name": "Hacker News YC", "geo": null, "id": 148834963092021250, "id_str": "148834963092021249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/55176345/hackernewsfeed_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/55176345/hackernewsfeed_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Cornell Said Chosen for NYC Engineering Campus http://t.co/hEdRqI5e", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:53 +0000", "from_user": "RobHTexera", "from_user_id": 37100619, "from_user_id_str": "37100619", "from_user_name": "Robert Texera ", "geo": null, "id": 148834957668782080, "id_str": "148834957668782080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1170242911/me_fox_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1170242911/me_fox_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TomCruise: TONIGHT! LIVE #MISSIONIMPOSSIBLE @GHOSTPROTOCOL #NYC #MOVIE \\u2605PREMIERE\\u2605 #BLOG COVERAGE! Join us on the red carpet! http://t.co/8FwxLVGC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:50 +0000", "from_user": "AffluentCapital", "from_user_id": 243583818, "from_user_id_str": "243583818", "from_user_name": "Chip Browne, PLM", "geo": null, "id": 148834945660489730, "id_str": "148834945660489729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1227140361/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1227140361/logo_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "REIT Buys Large Stake in NYC Office Property: Commercial REIT Vornado Realty Trust has acquired a 49.5% stake in... http://t.co/4z6npNnX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:39:50 +0000", "from_user": "pinokosugar", "from_user_id": 268164080, "from_user_id_str": "268164080", "from_user_name": "\\u6843\\u751F\\u4E9C\\u5E0C\\u5B50", "geo": null, "id": 148834944834224130, "id_str": "148834944834224128", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1550178371/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1550178371/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u304A\\u306F\\u3088\\u3046 \\u3088\\u3057\\u3053\\uD83D\\uDC97RT@YOYOYOPICO: \\u304A\\u306F\\u3088\\u3074\\u30FC\\u3061\\u3083\\u3093\\u3068NYC RT @pinokosugar: Good morning monday morning from NY:) \\u2600", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:49 +0000", "from_user": "redostoneage", "from_user_id": 28156710, "from_user_id_str": "28156710", "from_user_name": "Truth Tweeter", "geo": null, "id": 148834940958670850, "id_str": "148834940958670848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/661208289/get_fileCA9BVO04_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/661208289/get_fileCA9BVO04_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Copenhagen: Religion of Peace attacks Hare Krishna Temple http://t.co/3fjTAJJH #p2 #topprog #maddow #msnbc #cnn #nyc #npr #pbs #news", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:48 +0000", "from_user": "CeraDanielle", "from_user_id": 337434703, "from_user_id_str": "337434703", "from_user_name": "Cera Hesseling", "geo": null, "id": 148834936961503230, "id_str": "148834936961503232", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696497394/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696497394/image_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "NYC http://t.co/9YT00MFN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:48 +0000", "from_user": "therealredding", "from_user_id": 123024556, "from_user_id_str": "123024556", "from_user_name": "David Redding", "geo": null, "id": 148834935308955650, "id_str": "148834935308955648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1185177370/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1185177370/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "This is what weddings, marriage & great photography is all about. Great work @ashimagery http://t.co/Xpzv862Y", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:43 +0000", "from_user": "montaga", "from_user_id": 30540789, "from_user_id_str": "30540789", "from_user_name": "Tony Montaga", "geo": null, "id": 148834914509398000, "id_str": "148834914509398017", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696252794/montaga_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696252794/montaga_normal.jpg", "source": "<a href="http://soundcloud.com" rel="nofollow">SoundCloud</a>", "text": "My new sounds: Tony Montaga \"NYC\" http://t.co/m40txTL1 on #SoundCloud", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:42 +0000", "from_user": "NYCFranchise", "from_user_id": 382155152, "from_user_id_str": "382155152", "from_user_name": "Barry Bocker", "geo": null, "id": 148834912403849200, "id_str": "148834912403849217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1565357680/August2007_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1565357680/August2007_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Fantasy Hockey: Parise, Malkin rule; Corey Crawford overthrown (Yahoo! Sports) http://t.co/4IXSuIkV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:42 +0000", "from_user": "the_bxb", "from_user_id": 351873777, "from_user_id_str": "351873777", "from_user_name": "Brittany Gianino", "geo": null, "id": 148834911988625400, "id_str": "148834911988625410", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1598733762/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598733762/image_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @miss__insanity: wait, it feel weird to be clothed; diner in NYC with @cammstrystal, @the_bxb & @KittysCrazyyyy!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:39 +0000", "from_user": "EbztooRedd", "from_user_id": 73226661, "from_user_id_str": "73226661", "from_user_name": "ebony redd", "geo": null, "id": 148834899112099840, "id_str": "148834899112099841", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1583887528/301311_267610829918534_100000088568920_1117672_5386193_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583887528/301311_267610829918534_100000088568920_1117672_5386193_n_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "NYC bound n a few days oww oww dis break been the best =)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:37 +0000", "from_user": "drjiho714", "from_user_id": 43686883, "from_user_id_str": "43686883", "from_user_name": "Jiho Jung", "geo": null, "id": 148834889389707260, "id_str": "148834889389707264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1478677779/254610_1955399920816_1117254231_31735247_7801075_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1478677779/254610_1955399920816_1117254231_31735247_7801075_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Never get sick of nyc, but I need to vacate", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:34 +0000", "from_user": "RobHTexera", "from_user_id": 37100619, "from_user_id_str": "37100619", "from_user_name": "Robert Texera ", "geo": null, "id": 148834878450958340, "id_str": "148834878450958337", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1170242911/me_fox_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1170242911/me_fox_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TomCruise: Tom answers your questions at the NYC M:I-@GhostProtocol Premiere 2night! Submit your questions w/ #MissionNYC http://t.co/8FwxLVGC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:32 +0000", "from_user": "TeddyKing", "from_user_id": 17010627, "from_user_id_str": "17010627", "from_user_name": "Teddy King", "geo": null, "id": 148834867424149500, "id_str": "148834867424149504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680295717/RELEASE_PARTY_FLYER_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680295717/RELEASE_PARTY_FLYER_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Just landed in NYC, thank you JAPAN for being one of the best trips of my life! The best place to play music is with you guys! Peace & Love", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:29 +0000", "from_user": "Mattymattla", "from_user_id": 30190993, "from_user_id_str": "30190993", "from_user_name": "Mattymatt", "geo": null, "id": 148834856577671170, "id_str": "148834856577671168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1213530451/BGCAUDRTJY_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1213530451/BGCAUDRTJY_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "What a great time with @MaxVangeli @ViktorSolstice @ZoeAbelSD @Carlo5Rodrigo in NYC!! http://t.co/h6uGFbU2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:29 +0000", "from_user": "NadjaShah", "from_user_id": 264914900, "from_user_id_str": "264914900", "from_user_name": "Nadja Shah", "geo": null, "id": 148834855482961920, "id_str": "148834855482961920", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1371279564/nadja_bambus_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1371279564/nadja_bambus_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Dachbegr\\u00FCnung auf die gesunde Art : Soil-less sky farming: rooftop hydroponics on NYC restaurant http://t.co/wwu21orI #permaculture #change", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:29 +0000", "from_user": "MikeBacker52", "from_user_id": 200142954, "from_user_id_str": "200142954", "from_user_name": "Andy Dale", "geo": null, "id": 148834854828650500, "id_str": "148834854828650496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@scottspizzatour what is the best spot in NYC for a slice? Joes is good but there's gotta be better...", "to_user": "scottspizzatour", "to_user_id": 52394683, "to_user_id_str": "52394683", "to_user_name": "Scott Wiener"}, +{"created_at": "Mon, 19 Dec 2011 18:39:29 +0000", "from_user": "NayGotDatCumBac", "from_user_id": 44541269, "from_user_id_str": "44541269", "from_user_name": "Nay lovin D.F", "geo": null, "id": 148834854392438800, "id_str": "148834854392438785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696518782/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696518782/image_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "I fell in love wit a ny boy so now im rockin nyc on my neck # nevercominoff", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:28 +0000", "from_user": "Johnnie5OH", "from_user_id": 331632002, "from_user_id_str": "331632002", "from_user_name": "J.L.COPP", "geo": null, "id": 148834850747588600, "id_str": "148834850747588608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1442939769/Carnival_Cruise_to_Cozumel1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1442939769/Carnival_Cruise_to_Cozumel1_normal.jpg", "source": "<a href="http://www.yahoo.com" rel="nofollow">Yahoo!</a>", "text": "commented: Who among any of you have the right to say who lives or dies and how does that make you any differen... http://t.co/cPsfo464", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:23 +0000", "from_user": "tzybaby", "from_user_id": 284100997, "from_user_id_str": "284100997", "from_user_name": "Tzy", "geo": null, "id": 148834831168569340, "id_str": "148834831168569345", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1321941296/3dlogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1321941296/3dlogo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Princess_Trice I wanna go to NYC so bad for new years eve! <--now that's the move .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:22 +0000", "from_user": "ChemungChamber", "from_user_id": 216125517, "from_user_id_str": "216125517", "from_user_name": "Chemung Chamber", "geo": null, "id": 148834826542256130, "id_str": "148834826542256128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1178673546/Chamber-Logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1178673546/Chamber-Logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @innovationtrail: Cornell reportedly wins bid to build NYC tech campus on Roosevelt Island watch video here at 2:30 http://t.co/Zeu7NlCv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:21 +0000", "from_user": "TheyCallMe_aubz", "from_user_id": 128371132, "from_user_id_str": "128371132", "from_user_name": "B L A N K . ", "geo": null, "id": 148834821945307140, "id_str": "148834821945307137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1656584116/330365509_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656584116/330365509_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "!!!!!! RT @ThatsHautee: NYC I'm ready for ya!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:21 +0000", "from_user": "Ovski14", "from_user_id": 373838328, "from_user_id_str": "373838328", "from_user_name": "Craig Davies", "geo": null, "id": 148834821794304000, "id_str": "148834821794304000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1544565671/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544565671/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Gutted to be flying home from NYC today, an amazing trip with an amazing person", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:18 +0000", "from_user": "listentotheink", "from_user_id": 247997904, "from_user_id_str": "247997904", "from_user_name": "Tricia", "geo": null, "id": 148834807873404930, "id_str": "148834807873404928", "iso_language_code": "is", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1236037744/trish_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1236037744/trish_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @OneDirectionNY: Totals: Dallas = 280; NYC = 220; LA = 200", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:16 +0000", "from_user": "recnetNJ", "from_user_id": 284233514, "from_user_id_str": "284233514", "from_user_name": "Recruiter Networks", "geo": null, "id": 148834802110443520, "id_str": "148834802110443520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1316432894/Recnet_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1316432894/Recnet_logo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Other: Printer / Copier IT Services Manager - Wayne, NJ & NYC Area (08004) - Wayne, New Jersey http://t.co/g1JbPKC7 #jobs #NJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:16 +0000", "from_user": "listentotheink", "from_user_id": 247997904, "from_user_id_str": "247997904", "from_user_name": "Tricia", "geo": null, "id": 148834799874871300, "id_str": "148834799874871297", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1236037744/trish_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1236037744/trish_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @OneDirectionNY: NYC, WE HAVE TO WIN THIS NEXT CHALLENGE AND BUMP DALLAS DOWN TO THIRD.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:16 +0000", "from_user": "MironProperties", "from_user_id": 109693045, "from_user_id_str": "109693045", "from_user_name": "Miron Properties ", "geo": null, "id": 148834799694520320, "id_str": "148834799694520321", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1158061024/Miron_Properties_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1158061024/Miron_Properties_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Here's the answer to a common question we get: I live outside the US -Can I buy in NYC? http://t.co/jf6D7PW5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:15 +0000", "from_user": "itconsumesme", "from_user_id": 56830967, "from_user_id_str": "56830967", "from_user_name": "Daniela Akiko", "geo": null, "id": 148834795227590660, "id_str": "148834795227590656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546039445/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546039445/image_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @billboard: #Glee star @DarrenCriss played a few shows in #NYC over the weekend while in town for \"How to Succeed...\" on #Broadway http://t.co/O74cYdkY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:14 +0000", "from_user": "therman", "from_user_id": 14959711, "from_user_id_str": "14959711", "from_user_name": "Ted Herman", "geo": null, "id": 148834794749427700, "id_str": "148834794749427712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/59214686/Photo_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/59214686/Photo_3_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @NationalNurses: Hundreds of #Nurses plan protest Tues at Cerberus Capital Management at Park Ave office in NYC. http://t.co/ybwWA68z #fightingforpatients", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:14 +0000", "from_user": "SimplyCOLAS", "from_user_id": 292381241, "from_user_id_str": "292381241", "from_user_name": "Jordan", "geo": null, "id": 148834793684086800, "id_str": "148834793684086784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693942188/Tatts_On_My_Arm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693942188/Tatts_On_My_Arm_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Headin to nyc later to play some ball", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:14 +0000", "from_user": "SmokeStackLLC", "from_user_id": 127678096, "from_user_id_str": "127678096", "from_user_name": "SmokeStackRecordings", "geo": null, "id": 148834793050750980, "id_str": "148834793050750977", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1340161678/smokestack_new_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1340161678/smokestack_new_logo_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "#NYC #NEVERFORGET 9/11 http://t.co/FnJsnddx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:11 +0000", "from_user": "7_I_Am", "from_user_id": 116094973, "from_user_id_str": "116094973", "from_user_name": "Only Seven", "geo": null, "id": 148834781902286850, "id_str": "148834781902286848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696449257/7_I_Am_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696449257/7_I_Am_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Talking about sistas with weaves but your woman got more tracks than the NYC subway system. FOH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:11 +0000", "from_user": "BandLManagement", "from_user_id": 195784041, "from_user_id_str": "195784041", "from_user_name": "B&L Management", "geo": null, "id": 148834779905794050, "id_str": "148834779905794048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1144795632/logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1144795632/logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#nyc Apartment for rent in Upper East Side Studio 1 Bathroom corner of 1485 First Avenue New York, NY between 77th ... http://t.co/vX7VbWW5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:04 +0000", "from_user": "kamo11", "from_user_id": 65667296, "from_user_id_str": "65667296", "from_user_name": "kamo", "geo": null, "id": 148834750688280580, "id_str": "148834750688280577", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1543638806/SP_A0079_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543638806/SP_A0079_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@GostarSA mara ntwana i told u so nyc plz dont leave me gwa kenya mo kasi mara ne u saw gori ima tiader u", "to_user": "GostarSA", "to_user_id": 89657647, "to_user_id_str": "89657647", "to_user_name": "Ken GostarDe Phetlhu", "in_reply_to_status_id": 148351288558632960, "in_reply_to_status_id_str": "148351288558632960"}, +{"created_at": "Mon, 19 Dec 2011 18:39:04 +0000", "from_user": "ChinkyEyz", "from_user_id": 22927598, "from_user_id_str": "22927598", "from_user_name": "Danielle ", "geo": null, "id": 148834749681647600, "id_str": "148834749681647616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1686940487/331284603_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686940487/331284603_normal.jpg", "source": "<a href="http://getsocialscope.com" rel="nofollow">SocialScope</a>", "text": "True RT @YaBoiRich06: lol smh RT @Jared_V Wait... RT @BBizDAish Uhmm RT @_cudderz Why do people say NYE?? Isn't it NYC??? Idk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:03 +0000", "from_user": "LocdBeauty", "from_user_id": 420866320, "from_user_id_str": "420866320", "from_user_name": "Shani", "geo": null, "id": 148834745344737280, "id_str": "148834745344737280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1688530281/Photo_21_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688530281/Photo_21_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @Wale: Good Morning NYC.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:02 +0000", "from_user": "MissAlba30", "from_user_id": 384599450, "from_user_id_str": "384599450", "from_user_name": "Cristalba\\uE003", "geo": null, "id": 148834742656188400, "id_str": "148834742656188416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674645848/MissAlba30_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674645848/MissAlba30_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "I need to go see this infamous christmas tree \\uD83C\\uDF84in NYC before they take it down!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:56 +0000", "from_user": "osaraba", "from_user_id": 16595421, "from_user_id_str": "16595421", "from_user_name": "sara", "geo": null, "id": 148834718333415420, "id_str": "148834718333415424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1321956298/Copy_of_new_nyr_jersey_front_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1321956298/Copy_of_new_nyr_jersey_front_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@HarliQwynn just saw this, thanks it was fine all the way back to NYC! =D", "to_user": "HarliQwynn", "to_user_id": 37424738, "to_user_id_str": "37424738", "to_user_name": "Harli in the Hammer", "in_reply_to_status_id": 148580991705952260, "in_reply_to_status_id_str": "148580991705952258"}, +{"created_at": "Mon, 19 Dec 2011 18:38:56 +0000", "from_user": "Shoreguyforfun", "from_user_id": 398341159, "from_user_id_str": "398341159", "from_user_name": "Adam James", "geo": null, "id": 148834716785721340, "id_str": "148834716785721344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1608504203/665635238205_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608504203/665635238205_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@ShemaleAna \\nI am in the middle of 5th Ave...NYC trying to get across the st.", "to_user": "ShemaleAna", "to_user_id": 241289363, "to_user_id_str": "241289363", "to_user_name": "Ana Mancini", "in_reply_to_status_id": 148834409892691970, "in_reply_to_status_id_str": "148834409892691968"}, +{"created_at": "Mon, 19 Dec 2011 18:38:55 +0000", "from_user": "gustly", "from_user_id": 14186660, "from_user_id_str": "14186660", "from_user_name": "Gust", "geo": null, "id": 148834714717917200, "id_str": "148834714717917184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1541152127/gust-logo2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541152127/gust-logo2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "We're hiring in #NYC #UX http://t.co/ULtxrX6i and #Product Manager http://t.co/vlDAos00 #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:55 +0000", "from_user": "NYCJobsPay", "from_user_id": 333396321, "from_user_id_str": "333396321", "from_user_name": "NYC Jobs Pay", "geo": null, "id": 148834711677054980, "id_str": "148834711677054976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1484933666/zManhattan1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1484933666/zManhattan1_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NYC New Job ~ PostDoctoral Associate at University of Massachusetts Medical School (Worcester, MA) http://t.co/UJ4uXhbl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:54 +0000", "from_user": "NYCJobsPay", "from_user_id": 333396321, "from_user_id_str": "333396321", "from_user_name": "NYC Jobs Pay", "geo": null, "id": 148834710653632500, "id_str": "148834710653632513", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1484933666/zManhattan1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1484933666/zManhattan1_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NYC New Job ~ Application Specialist - Open Systems at Fiserv Card Services (Morris Plains, NJ) http://t.co/UJ4uXhbl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:54 +0000", "from_user": "MLCarolan", "from_user_id": 58852732, "from_user_id_str": "58852732", "from_user_name": "Megan Carolan", "geo": null, "id": 148834709319843840, "id_str": "148834709319843840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1225676314/picture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225676314/picture_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Dear @dancotoia\\nwhen can we see kative gavin in NYC again?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:54 +0000", "from_user": "NYCJobsPay", "from_user_id": 333396321, "from_user_id_str": "333396321", "from_user_name": "NYC Jobs Pay", "geo": null, "id": 148834708946558980, "id_str": "148834708946558976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1484933666/zManhattan1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1484933666/zManhattan1_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NYC New Job ~ SharePoint Solution Architect at Grg Consulting (New York, NY) http://t.co/UJ4uXhbl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:54 +0000", "from_user": "NYCJobsPay", "from_user_id": 333396321, "from_user_id_str": "333396321", "from_user_name": "NYC Jobs Pay", "geo": null, "id": 148834707717623800, "id_str": "148834707717623808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1484933666/zManhattan1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1484933666/zManhattan1_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NYC New Job ~ Junior Information Architect at Rokkan (New York, NY) http://t.co/UJ4uXhbl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:53 +0000", "from_user": "NYCJobsPay", "from_user_id": 333396321, "from_user_id_str": "333396321", "from_user_name": "NYC Jobs Pay", "geo": null, "id": 148834706367070200, "id_str": "148834706367070208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1484933666/zManhattan1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1484933666/zManhattan1_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NYC New Job ~ Loan Officer at Vantage Recruiting (Philadelphia, PA) http://t.co/UJ4uXhbl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:53 +0000", "from_user": "abeeydah", "from_user_id": 166626909, "from_user_id_str": "166626909", "from_user_name": "Abby\\u2665Bahago", "geo": null, "id": 148834703334572030, "id_str": "148834703334572032", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687561750/IMG-20111210-02092_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687561750/IMG-20111210-02092_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Awww,tnx bro*kisses*\"@iMbash: Nyc avatar @abeeydah lookn fly sis!\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:52 +0000", "from_user": "BballCoachE", "from_user_id": 40269324, "from_user_id_str": "40269324", "from_user_name": "Doug Esleeck", "geo": null, "id": 148834700922847230, "id_str": "148834700922847232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/213288859/DE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/213288859/DE_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Back from NYC on the way to UGA and then GT to finish up the pre xmas season.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:52 +0000", "from_user": "lynessamarie", "from_user_id": 316970301, "from_user_id_str": "316970301", "from_user_name": "Lynessa Williams", "geo": null, "id": 148834698993467400, "id_str": "148834698993467392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1515801995/curly_hair_profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515801995/curly_hair_profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @issarae: Bravo is looking for NYC based affluent AfAm couples getting married by 2/14/12 for new series on Bravo. Contact: @vpetalent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:51 +0000", "from_user": "VRavencroft", "from_user_id": 109348521, "from_user_id_str": "109348521", "from_user_name": "Vanessa Ravencroft", "geo": null, "id": 148834696879554560, "id_str": "148834696879554560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/661424167/vr1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/661424167/vr1_normal.jpg", "source": "<a href="http://www.yahoo.com" rel="nofollow">Yahoo!</a>", "text": "gave a thumbs up to john p's comment: this is what we have done to our country after giving MONKEYS the same ri... http://t.co/CpOFpf9b", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:51 +0000", "from_user": "Dustiluz", "from_user_id": 431760010, "from_user_id_str": "431760010", "from_user_name": "Dusti Hineline", "geo": null, "id": 148834696799846400, "id_str": "148834696799846400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681157168/large_Body_Shot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681157168/large_Body_Shot_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "*NYC Boutique The Lace Short,Shorts for Women, Large,Brown: *NYC Boutique The Lace Short,Shorts for Women: http://t.co/kX2RAQKs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:51 +0000", "from_user": "rahimaxarsenal", "from_user_id": 165536979, "from_user_id_str": "165536979", "from_user_name": "R.", "geo": null, "id": 148834696489472000, "id_str": "148834696489472000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698776177/Snapshot_20111213_15_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698776177/Snapshot_20111213_15_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@HaiderKA Nice yaaaar. I CAN'T WANT TO GO TO NYC!!!", "to_user": "HaiderKA", "to_user_id": 21222785, "to_user_id_str": "21222785", "to_user_name": "Haider\\u2122", "in_reply_to_status_id": 148834088185372670, "in_reply_to_status_id_str": "148834088185372672"}, +{"created_at": "Mon, 19 Dec 2011 18:38:48 +0000", "from_user": "ccsarchitecture", "from_user_id": 115515425, "from_user_id_str": "115515425", "from_user_name": "CCS Architecture", "geo": null, "id": 148834685668175870, "id_str": "148834685668175873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/705993806/RM_Seafood_Las_Vegas_52_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/705993806/RM_Seafood_Las_Vegas_52_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Goat Town in NYC looks like a fun place. Love the banquettes! http://t.co/DbTjBOXw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:47 +0000", "from_user": "avalonmj", "from_user_id": 24253399, "from_user_id_str": "24253399", "from_user_name": "Avalon", "geo": null, "id": 148834679498342400, "id_str": "148834679498342401", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/745555847/IMG00109_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/745555847/IMG00109_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @RKSTNI: Lana Del Rey's 3rd NYC gig ever will be SNL. Harry Potter hosts. Interscope (owned by Universal) is the corp. that made that happen.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:46 +0000", "from_user": "ufcambernichole", "from_user_id": 310434477, "from_user_id_str": "310434477", "from_user_name": "Amber Nichole Miller", "geo": null, "id": 148834674716835840, "id_str": "148834674716835840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1490760708/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1490760708/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@MitchWestphal I've been good keeping busy getting ready for the holidays and new job!! In NYC for a gig then back to Vegas tues...how R you", "to_user": "MitchWestphal", "to_user_id": 246157714, "to_user_id_str": "246157714", "to_user_name": "Mitch Westphal", "in_reply_to_status_id": 148833121519931400, "in_reply_to_status_id_str": "148833121519931392"}, +{"created_at": "Mon, 19 Dec 2011 18:38:44 +0000", "from_user": "Harmizzle1", "from_user_id": 415131810, "from_user_id_str": "415131810", "from_user_name": "J'Adore Harmony(:", "geo": null, "id": 148834669151006720, "id_str": "148834669151006720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701719913/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701719913/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @DOPEITSASHH: If theres one place I can go back to would no doubt be NYC<3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:43 +0000", "from_user": "Rsf_Divine", "from_user_id": 22570707, "from_user_id_str": "22570707", "from_user_name": "Divine aka Ronie", "geo": null, "id": 148834661915828220, "id_str": "148834661915828225", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662117332/I4uIRb_large_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662117332/I4uIRb_large_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @midnitespot: NYC: Sun Dec 25 WinterFresh: B&W Affair @AMNESIA BDAY BASH @SUAVEOFNITELIFE @MRMALIKSTAGENT ... http://t.co/xVd5cMUF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:38 +0000", "from_user": "xusie_music", "from_user_id": 438243077, "from_user_id_str": "438243077", "from_user_name": "xusie_music", "geo": null, "id": 148834643712540670, "id_str": "148834643712540672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696360551/xusie100_normal.png", "profile_image_url_https": null, "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Darren Criss Plays Secret Show in NYC http://t.co/jcTd8atw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:37 +0000", "from_user": "tasha_keys", "from_user_id": 34527587, "from_user_id_str": "34527587", "from_user_name": "natasha kabir", "geo": null, "id": 148834636523503600, "id_str": "148834636523503617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1655975583/wedding_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655975583/wedding_2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Kush_Nbeauty I'm going to NYC boo", "to_user": "Kush_Nbeauty", "to_user_id": 322177059, "to_user_id_str": "322177059", "to_user_name": "Janelle Woods ", "in_reply_to_status_id": 148832602059587600, "in_reply_to_status_id_str": "148832602059587584"}, +{"created_at": "Mon, 19 Dec 2011 18:38:32 +0000", "from_user": "djskinnyfat", "from_user_id": 58123, "from_user_id_str": "58123", "from_user_name": "Clint McMahon", "geo": null, "id": 148834616655101950, "id_str": "148834616655101952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1583268112/69297_510913819078_162700320_30357050_8072158_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583268112/69297_510913819078_162700320_30357050_8072158_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "A giant piece of granite just fell off the wall in our elevator lobby. Note to self, stay away from elevators in NYC.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:31 +0000", "from_user": "smhelloladies", "from_user_id": 367284950, "from_user_id_str": "367284950", "from_user_name": "Stephen Merchant", "geo": null, "id": 148834610439127040, "id_str": "148834610439127042", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1526908856/sjjm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1526908856/sjjm_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "In NYC. Did @OpieRadio show earlier and who should appear but @simonpegg. We traded some droll bon mots, natch. What a lovely man.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:29 +0000", "from_user": "Star_tt1", "from_user_id": 386275911, "from_user_id_str": "386275911", "from_user_name": "Star_tt", "geo": null, "id": 148834603182993400, "id_str": "148834603182993408", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1576046353/star_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576046353/star_normal.JPG", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "ABC: Man Gets Prison for Bilking NYC Mayor http://t.co/Ank99GFw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:28 +0000", "from_user": "Star_tt1", "from_user_id": 386275911, "from_user_id_str": "386275911", "from_user_name": "Star_tt", "geo": null, "id": 148834600771264500, "id_str": "148834600771264512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1576046353/star_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576046353/star_normal.JPG", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "ABC: NY Torching Suspect Charged With Murder http://t.co/p3Mzjb5O", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:28 +0000", "from_user": "JAzzzykins21", "from_user_id": 204173156, "from_user_id_str": "204173156", "from_user_name": "Jasmin", "geo": null, "id": 148834598535696400, "id_str": "148834598535696385", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693608921/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693608921/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Take me with you!<33 ^.^ \\u201C@DOPEITSASHH: If theres one place I can go back to would no doubt be NYC<3\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:27 +0000", "from_user": "lostheather", "from_user_id": 22496352, "from_user_id_str": "22496352", "from_user_name": "Knife Fight Annie", "geo": null, "id": 148834596648267780, "id_str": "148834596648267777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1350465065/tattoo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1350465065/tattoo_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Holy christ http://t.co/yGZpfbIM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:26 +0000", "from_user": "miss__insanity", "from_user_id": 366711735, "from_user_id_str": "366711735", "from_user_name": "isabel insanity", "geo": null, "id": 148834593083109380, "id_str": "148834593083109378", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1683489756/meow_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683489756/meow_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "wait, it feel weird to be clothed; diner in NYC with @cammstrystal, @the_bxb & @KittysCrazyyyy!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:22 +0000", "from_user": "trashprettyko", "from_user_id": 369480422, "from_user_id_str": "369480422", "from_user_name": "Tri$h", "geo": null, "id": 148834576754675700, "id_str": "148834576754675712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1573968901/kbme_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1573968901/kbme_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@kbuck354 @96thStIsHarlem next NYC visit, can THIS happen?: http://t.co/BcrE9wIh", "to_user": "kbuck354", "to_user_id": 65245161, "to_user_id_str": "65245161", "to_user_name": "KB"}, +{"created_at": "Mon, 19 Dec 2011 18:38:20 +0000", "from_user": "xSillaMahone", "from_user_id": 225152705, "from_user_id_str": "225152705", "from_user_name": "\\u2661\\u2661SILLA", "geo": null, "id": 148834566113726460, "id_str": "148834566113726465", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684979660/331220275_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684979660/331220275_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "i wish i was in nyc right now so i can meet austin n alex :( #nevergunnahapen", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:19 +0000", "from_user": "_Nguvu87", "from_user_id": 371010441, "from_user_id_str": "371010441", "from_user_name": "Yung Brys", "geo": null, "id": 148834563379044350, "id_str": "148834563379044352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692974868/_Nguvu87_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692974868/_Nguvu87_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@JuJu_Mack I'll be back in NYC on the 28th. You?", "to_user": "JuJu_Mack", "to_user_id": 219200183, "to_user_id_str": "219200183", "to_user_name": "JuJu McWilliams", "in_reply_to_status_id": 148825461340905470, "in_reply_to_status_id_str": "148825461340905472"}, +{"created_at": "Mon, 19 Dec 2011 18:38:19 +0000", "from_user": "symonedollface", "from_user_id": 22425568, "from_user_id_str": "22425568", "from_user_name": "Symone Dollface", "geo": null, "id": 148834560581443600, "id_str": "148834560581443585", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1553965134/IMG_2146_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553965134/IMG_2146_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Back in my NYC and hungryyyy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:18 +0000", "from_user": "paulolaniyan", "from_user_id": 189214303, "from_user_id_str": "189214303", "from_user_name": "everybody loves PAUL", "geo": null, "id": 148834559994236930, "id_str": "148834559994236928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687467440/11012009184_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687467440/11012009184_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "nyc advert we know 'RT@chiizie_xx :New cloths\\u2665__\\u2665.... \\n.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:17 +0000", "from_user": "QRedHall", "from_user_id": 226335297, "from_user_id_str": "226335297", "from_user_name": "Quincy", "geo": null, "id": 148834554789105660, "id_str": "148834554789105664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685517898/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685517898/image_normal.jpg", "source": "<a href="http://tweetlogix.com" rel="nofollow">Tweetlogix</a>", "text": "One day I'm going to hit up the DMV & NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:17 +0000", "from_user": "nycTrend", "from_user_id": 174578199, "from_user_id_str": "174578199", "from_user_name": "NYC Trending", "geo": null, "id": 148834554122219520, "id_str": "148834554122219520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1095252877/128600455_547129784a_z_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1095252877/128600455_547129784a_z_normal.jpeg", "source": "<a href="http://tweetbe.at/" rel="nofollow">tweetbe.at</a>", "text": "Live: Swedish House Mafia Reign Supreme At Madison Square Garden http://t.co/Hm1oiC5w", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:16 +0000", "from_user": "NYFullTimeJobs", "from_user_id": 422942234, "from_user_id_str": "422942234", "from_user_name": "NYFullTimeJobs", "geo": null, "id": 148834551031009280, "id_str": "148834551031009281", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "New NYC Jobs - Application Specialist - Open Systems at Fiserv Card Services (Morris Plains, NJ) http://t.co/mExiw3G7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:16 +0000", "from_user": "NYFullTimeJobs", "from_user_id": 422942234, "from_user_id_str": "422942234", "from_user_name": "NYFullTimeJobs", "geo": null, "id": 148834549583974400, "id_str": "148834549583974400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "New NYC Jobs - SharePoint Solution Architect at Grg Consulting (New York, NY) http://t.co/mExiw3G7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:16 +0000", "from_user": "NYFullTimeJobs", "from_user_id": 422942234, "from_user_id_str": "422942234", "from_user_name": "NYFullTimeJobs", "geo": null, "id": 148834548380221440, "id_str": "148834548380221440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "New NYC Jobs - Junior Information Architect at Rokkan (New York, NY) http://t.co/mExiw3G7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:15 +0000", "from_user": "MatineeParties", "from_user_id": 297704066, "from_user_id_str": "297704066", "from_user_name": "Matinee N. America", "geo": null, "id": 148834547105148930, "id_str": "148834547105148929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1596569942/38312_417171518743_34291978743_4574766_4406139_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596569942/38312_417171518743_34291978743_4574766_4406139_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Matin\\u00E9e NYC\\u2019s Non-Stop New Year! :: #lgbt #edgeonthenet :: http://t.co/d0c9dPYy via @EDGEontheNet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:15 +0000", "from_user": "NYFullTimeJobs", "from_user_id": 422942234, "from_user_id_str": "422942234", "from_user_name": "NYFullTimeJobs", "geo": null, "id": 148834547021262850, "id_str": "148834547021262848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "New NYC Jobs - Loan Officer at Vantage Recruiting (Philadelphia, PA) http://t.co/mExiw3G7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:15 +0000", "from_user": "NYFullTimeJobs", "from_user_id": 422942234, "from_user_id_str": "422942234", "from_user_name": "NYFullTimeJobs", "geo": null, "id": 148834545377083400, "id_str": "148834545377083394", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "New NYC Jobs - VP Engineering at Storydesk (New York, NY) http://t.co/mExiw3G7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:12 +0000", "from_user": "germazing33", "from_user_id": 205368664, "from_user_id_str": "205368664", "from_user_name": "GERM-XXX ", "geo": null, "id": 148834531460390900, "id_str": "148834531460390912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668908960/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668908960/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "RT @SNICKERBOX: Ru1 Bailbonds NJ/NYC Toll Free (855)700-2245 (732)721-7270 http://t.co/lfyaA7pv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:10 +0000", "from_user": "officialnasra", "from_user_id": 105181624, "from_user_id_str": "105181624", "from_user_name": "Nasra", "geo": null, "id": 148834523042430980, "id_str": "148834523042430976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1516370280/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1516370280/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "New Years Eve movie overview: Halle Berry is flawless, Sophia Vergara is hilarious, I am moving to NYC, Zac Efron, I love you.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:09 +0000", "from_user": "WAVELORD", "from_user_id": 23810801, "from_user_id_str": "23810801", "from_user_name": "Outlaw josey wales", "geo": null, "id": 148834519397572600, "id_str": "148834519397572608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695647904/wyN4htbl_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695647904/wyN4htbl_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "#jets Eric smith can hit but he couldn't cover a bed smh and hunter.. just cut him before he comes to to NYC and really gets cut", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:08 +0000", "from_user": "PatoPaez", "from_user_id": 44483710, "from_user_id_str": "44483710", "from_user_name": "Pato Paez", "geo": null, "id": 148834516662878200, "id_str": "148834516662878208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1144931185/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1144931185/image_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Photo: Kenny\\u2019s #streetart #nyc (Taken with instagram) http://t.co/lNpCgh1m", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:08 +0000", "from_user": "buylaminine", "from_user_id": 428631920, "from_user_id_str": "428631920", "from_user_name": "The Happy Pill", "geo": null, "id": 148834515400400900, "id_str": "148834515400400896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674664434/LAM-7_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674664434/LAM-7_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "You can't put a price on feeling great . . or can you? --- $33 >>> http://t.co/QaeP8MJR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:05 +0000", "from_user": "PatoPaez", "from_user_id": 44483710, "from_user_id_str": "44483710", "from_user_name": "Pato Paez", "geo": null, "id": 148834504826552320, "id_str": "148834504826552320", "iso_language_code": "hu", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1144931185/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1144931185/image_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "Kenny's #streetart #nyc http://t.co/7jVV4Lpa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:01 +0000", "from_user": "chrisdavs", "from_user_id": 118364068, "from_user_id_str": "118364068", "from_user_name": "chris davenport", "geo": null, "id": 148834488187752450, "id_str": "148834488187752448", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1283083360/Photo_303_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1283083360/Photo_303_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "NAN. SYD. SFO. PHX. DEN. MEM. NYC. GO.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:59 +0000", "from_user": "BethWms", "from_user_id": 29813224, "from_user_id_str": "29813224", "from_user_name": "Bethany Wms(B.TRU)", "geo": null, "id": 148834477983023100, "id_str": "148834477983023105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1483288156/n789009637_723801_9800_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1483288156/n789009637_723801_9800_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @abiolatv: It's a cold, but beautiful Monday in NYC. Making me wonder if this is the year I stop HATING Winter... #itcouldhappen", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:58 +0000", "from_user": "tasosm", "from_user_id": 14559452, "from_user_id_str": "14559452", "from_user_name": "Tasos M", "geo": null, "id": 148834474107482100, "id_str": "148834474107482114", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690896188/ProfilePhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690896188/ProfilePhoto_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @_TiffanyAndCo: Only in NYC, niggas stay w| \"pussy\" on their mind lmao http://t.co/vpUslJsA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:57 +0000", "from_user": "Su_weets", "from_user_id": 129778666, "from_user_id_str": "129778666", "from_user_name": "Su_weets", "geo": null, "id": 148834469418250240, "id_str": "148834469418250241", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#5: Osiris Men's NYC 83 Mid Skate Shoe: http://t.co/ECj5r1JV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:57 +0000", "from_user": "BlekeySoMelo", "from_user_id": 351315361, "from_user_id_str": "351315361", "from_user_name": "Daniel Simon", "geo": null, "id": 148834468533243900, "id_str": "148834468533243905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681010247/IMG00822-20111129-1149_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681010247/IMG00822-20111129-1149_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@blaze_sumn nun much bout to leave NYC.", "to_user": "blaze_sumn", "to_user_id": 202417505, "to_user_id_str": "202417505", "to_user_name": "l a s h a y . \\u2122 ", "in_reply_to_status_id": 148833723855540220, "in_reply_to_status_id_str": "148833723855540224"}, +{"created_at": "Mon, 19 Dec 2011 18:37:55 +0000", "from_user": "warehime69", "from_user_id": 238800697, "from_user_id_str": "238800697", "from_user_name": "Brandon Warehime", "geo": +{"coordinates": [39.563,-76.9772], "type": "Point"}, "id": 148834460295634940, "id_str": "148834460295634944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692258169/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692258169/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "My only souvenir from NYC. Haha @tdawgsmitty http://t.co/9U6m7OfW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:54 +0000", "from_user": "DavyDangerous", "from_user_id": 23053519, "from_user_id_str": "23053519", "from_user_name": "Davy D.", "geo": null, "id": 148834459444187140, "id_str": "148834459444187136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1202249248/Screen_shot_2010-12-30_at_12.42.11_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1202249248/Screen_shot_2010-12-30_at_12.42.11_AM_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Any of my NYC peeps wanna have lunch with me?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:54 +0000", "from_user": "YUNews", "from_user_id": 15245617, "from_user_id_str": "15245617", "from_user_name": "Yeshiva University", "geo": null, "id": 148834457405755400, "id_str": "148834457405755392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1417441150/YUshield_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1417441150/YUshield_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "(VIDEO) Stern College for Women's Brookdale Hall Lights Up NYC! #Chanukah http://t.co/SgHlp2vi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:52 +0000", "from_user": "WillllG", "from_user_id": 81489560, "from_user_id_str": "81489560", "from_user_name": "William Girard", "geo": null, "id": 148834449692438530, "id_str": "148834449692438529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1250097603/DSC02380_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1250097603/DSC02380_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @SPINmagazine: The @YYYs are back! They performed this wknd in NYC at a benefit for DJ Jonathan Toubin. Our recap + photos: http://t.co/69DVJQZn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:48 +0000", "from_user": "JimmyOVO", "from_user_id": 169849434, "from_user_id_str": "169849434", "from_user_name": "NOT Jimmy", "geo": null, "id": 148834432277676030, "id_str": "148834432277676033", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700630990/JimmyOVO_117390266826804925_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700630990/JimmyOVO_117390266826804925_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Thanks dear :) RT @Toyosi_O: @JimmyOVO nyc avatar :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:46 +0000", "from_user": "fireengineering", "from_user_id": 31800297, "from_user_id_str": "31800297", "from_user_name": "Fire Engineering", "geo": null, "id": 148834425084444670, "id_str": "148834425084444672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1575762934/fire-engineering-fe-icon_2x_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575762934/fire-engineering-fe-icon_2x_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Video of NYC #firefighters escaping burning Brooklyn brownstone: http://t.co/abKqqjIf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:45 +0000", "from_user": "MorillaSD", "from_user_id": 71881058, "from_user_id_str": "71881058", "from_user_name": "KING_CAPRICORN_28TH", "geo": null, "id": 148834417501155330, "id_str": "148834417501155328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700674916/331667097_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700674916/331667097_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @midnitespot: NYC: Sun Dec 25 WinterFresh: B&W Affair @AMNESIA BDAY BASH @SUAVEOFNITELIFE @MRMALIKSTAGENT ... http://t.co/zxushZ0S", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:44 +0000", "from_user": "appstrackers", "from_user_id": 173962109, "from_user_id_str": "173962109", "from_user_name": "Apps Trackers", "geo": null, "id": 148834416779726850, "id_str": "148834416779726848", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1094152420/AppsTrackers_picture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1094152420/AppsTrackers_picture_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Best NYC iPhone Apps http://t.co/PDAp4NIu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:44 +0000", "from_user": "Kelli_Rob", "from_user_id": 265786841, "from_user_id_str": "265786841", "from_user_name": "Kelli", "geo": null, "id": 148834413919207420, "id_str": "148834413919207424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1632872534/305429_291160314237812_100000315385358_1058981_1190560678_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632872534/305429_291160314237812_100000315385358_1058981_1190560678_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@PatToussaint good, NYC this week!", "to_user": "PatToussaint", "to_user_id": 19233279, "to_user_id_str": "19233279", "to_user_name": "\\u265BP\\u2206T\\u00AEICK T\\u03A9U$$\\u2206IN\\u271E ", "in_reply_to_status_id": 148822352539557900, "in_reply_to_status_id_str": "148822352539557888"}, +{"created_at": "Mon, 19 Dec 2011 18:37:42 +0000", "from_user": "Amethystt", "from_user_id": 31591291, "from_user_id_str": "31591291", "from_user_name": "Raquel Bennett", "geo": null, "id": 148834408802168830, "id_str": "148834408802168832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1201320316/LA_Banks_Banner_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1201320316/LA_Banks_Banner_normal.jpg", "source": "<a href="http://www.huffingtonpost.com" rel="nofollow">The Huffington Post</a>", "text": "Dan Frazer Dead: Capt. McNeil On 'Kojak' Dies In NYC http://t.co/SIaa3cxw via @huffingtonpost", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:39 +0000", "from_user": "tori_12322", "from_user_id": 19485971, "from_user_id_str": "19485971", "from_user_name": "Tori Thompson", "geo": null, "id": 148834394205995000, "id_str": "148834394205995008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1571421566/tumblr_lianhsIAeN1qa4k6wo1_500_thumb_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1571421566/tumblr_lianhsIAeN1qa4k6wo1_500_thumb_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @OKMagazine: Darren Criss performs secret show in NYC before he preps for Broadway. Do you want more Blaine on Glee? @darrencriss http://t.co/IOiaiJ9i", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:39 +0000", "from_user": "ThingsToDoNYC", "from_user_id": 16186877, "from_user_id_str": "16186877", "from_user_name": "Sherley GoldPlaceNYC", "geo": null, "id": 148834393128054800, "id_str": "148834393128054784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/204611117/twitterpic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/204611117/twitterpic_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Pianos NYC Free Event - MANNY FRANCO\\u2019S 7pm MATT STURMAN 7:45pm BUMPIN UGLIES 8:30pm LONG MILES 9:15pm DJ ELLIOT 10pm http://t.co/41pyfyKB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:39 +0000", "from_user": "KellyOlexa", "from_user_id": 11891512, "from_user_id_str": "11891512", "from_user_name": "Kelly Olexa", "geo": +{"coordinates": [40.7761,-73.8752], "type": "Point"}, "id": 148834392775720960, "id_str": "148834392775720960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1539758566/AH_KO__145__For_WEB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1539758566/AH_KO__145__For_WEB_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "OMG I AM NOT EVEN JOKING the same couple (George Costanza's parents) that were on my flight TO NYC were on my flight HOME. OMG #needbourbon", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:37:39 +0000", "from_user": "ThingsToDoNYC", "from_user_id": 16186877, "from_user_id_str": "16186877", "from_user_name": "Sherley GoldPlaceNYC", "geo": null, "id": 148834393128054800, "id_str": "148834393128054784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/204611117/twitterpic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/204611117/twitterpic_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Pianos NYC Free Event - MANNY FRANCO\\u2019S 7pm MATT STURMAN 7:45pm BUMPIN UGLIES 8:30pm LONG MILES 9:15pm DJ ELLIOT 10pm http://t.co/41pyfyKB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:39 +0000", "from_user": "KellyOlexa", "from_user_id": 11891512, "from_user_id_str": "11891512", "from_user_name": "Kelly Olexa", "geo": +{"coordinates": [40.7761,-73.8752], "type": "Point"}, "id": 148834392775720960, "id_str": "148834392775720960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1539758566/AH_KO__145__For_WEB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1539758566/AH_KO__145__For_WEB_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "OMG I AM NOT EVEN JOKING the same couple (George Costanza's parents) that were on my flight TO NYC were on my flight HOME. OMG #needbourbon", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:38 +0000", "from_user": "DOPEITSASHH", "from_user_id": 192301410, "from_user_id_str": "192301410", "from_user_name": "Ashley Briana Garcia", "geo": null, "id": 148834388703059970, "id_str": "148834388703059970", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699640840/DOPEITSASHH_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699640840/DOPEITSASHH_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "If theres one place I can go back to would no doubt be NYC<3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:37 +0000", "from_user": "CrystalP_FCB", "from_user_id": 255279488, "from_user_id_str": "255279488", "from_user_name": "C\\u044F\\u0447st\\u03B1lP\\u03B5\\u044F\\u03B5z'", "geo": null, "id": 148834386966609920, "id_str": "148834386966609920", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1689656968/SSSS_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689656968/SSSS_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Eje, El Real Subway! <3 Directico Desde NYC xD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:36 +0000", "from_user": "dhbruce17", "from_user_id": 318078067, "from_user_id_str": "318078067", "from_user_name": "\\u2733\\u2733Danielle\\u2733\\u2733", "geo": null, "id": 148834380842930180, "id_str": "148834380842930176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683637916/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683637916/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TomCruise: Tom answers your questions at the NYC M:I-@GhostProtocol Premiere 2night! Submit your questions w/ #MissionNYC http://t.co/8FwxLVGC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:36 +0000", "from_user": "TubbsKrueger", "from_user_id": 19422772, "from_user_id_str": "19422772", "from_user_name": "Dapp Morris", "geo": null, "id": 148834380788412400, "id_str": "148834380788412418", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691105061/386190_598891335607_80600707_31572642_906418967_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691105061/386190_598891335607_80600707_31572642_906418967_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @SmokeStackLLC: #NYC #MOVIEMAKIN @PaceMediaLLC http://t.co/yUKU7dLl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:34 +0000", "from_user": "MarcusCooks", "from_user_id": 65733755, "from_user_id_str": "65733755", "from_user_name": "Marcus Samuelsson", "geo": null, "id": 148834374333374460, "id_str": "148834374333374464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/692026945/TwitPicMarcus_Samuelsson_7436_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/692026945/TwitPicMarcus_Samuelsson_7436_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Thank you!! What's your favorite dish? RT @pluslily: @MarcusCooks i looove your restaurant!! #food #NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:34 +0000", "from_user": "98Nina98", "from_user_id": 259063627, "from_user_id_str": "259063627", "from_user_name": "Christina Chance", "geo": null, "id": 148834373792313340, "id_str": "148834373792313344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1663630808/Us__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663630808/Us__1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ArianaGrande: If you're coming to my show on December 28 at @IrvingPlaza in NYC and want to come meet me after, here's how: http://t.co/1w7eeLFq! xoxo RT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:33 +0000", "from_user": "bigmf22", "from_user_id": 85752296, "from_user_id_str": "85752296", "from_user_name": "David V. Fiori II", "geo": null, "id": 148834367232417800, "id_str": "148834367232417793", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694062150/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694062150/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @abrozowsky: Nyc tomorrow with @stefikalafornia & @bigmf22.!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:29 +0000", "from_user": "DiggyFierce", "from_user_id": 179279103, "from_user_id_str": "179279103", "from_user_name": "Sha'Nay Nay", "geo": null, "id": 148834352367796220, "id_str": "148834352367796224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1672245701/384891_332344186780197_100000138568308_1660545_1546562843_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672245701/384891_332344186780197_100000138568308_1660545_1546562843_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "nyc.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:27 +0000", "from_user": "BreakinNewsNow", "from_user_id": 339137934, "from_user_id_str": "339137934", "from_user_name": "Breakin' News Now", "geo": null, "id": 148834345665302530, "id_str": "148834345665302528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1452017176/news_pic-on-blue_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1452017176/news_pic-on-blue_normal.jpg", "source": "<a href="http://www.breakinnewsnow.com" rel="nofollow">BreakinNewsNow</a>", "text": "Breakin' News: Cops: Woman burned in NYC elevator over $2K - CBS News http://t.co/m5qzpzfH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:27 +0000", "from_user": "Every1HateKarma", "from_user_id": 364626414, "from_user_id_str": "364626414", "from_user_name": "Everyone Hates Karma", "geo": null, "id": 148834342158864400, "id_str": "148834342158864384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701672695/Every1HateKarma_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701672695/Every1HateKarma_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @purplepeace79: Talking about sistas with weaves but your woman got more tracks than the NYC subway system. FOH.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:20 +0000", "from_user": "cherryloveslife", "from_user_id": 40374163, "from_user_id_str": "40374163", "from_user_name": "CHERRY ABDOU", "geo": null, "id": 148834315365646340, "id_str": "148834315365646336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1550878035/engagement_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1550878035/engagement_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @HotChelleRae: Don\\u2019t forget! We are playing a private show today at 5PM EST at the @iHeartRadio Theater in NYC. Enter for tix here: http://t.co/AzJSN2zV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:20 +0000", "from_user": "ViRacQStar", "from_user_id": 291199813, "from_user_id_str": "291199813", "from_user_name": "\\uE31DSexi Racqui\\uE13E \\u2653", "geo": null, "id": 148834312815509500, "id_str": "148834312815509505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702581681/npPEg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702581681/npPEg_normal.jpg", "source": "<a href="http://stone.com/Twittelator" rel="nofollow">Twittelator</a>", "text": "\\uE412\\uE412\\uE412\\uE411\\uE411\\uE411\\uE411RT @LivLaffSplurge Smh RT @FreekeyZeakey: This---->RT @BBizDAish: Uhmm RT @_cudderz Why do people say NYE?? Isn't it NYC??? Idk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:19 +0000", "from_user": "KeoniHudoba", "from_user_id": 247543816, "from_user_id_str": "247543816", "from_user_name": "Keoni Hudoba", "geo": null, "id": 148834311813083140, "id_str": "148834311813083136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1235066333/166171_537835721554_81300044_31458928_5106398_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1235066333/166171_537835721554_81300044_31458928_5106398_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@StergioLive I'm great big guy. When u coming to nyc?", "to_user": "StergioLive", "to_user_id": 170192951, "to_user_id_str": "170192951", "to_user_name": "St\\u00E9rgio ", "in_reply_to_status_id": 148834186042687500, "in_reply_to_status_id_str": "148834186042687488"}, +{"created_at": "Mon, 19 Dec 2011 18:37:19 +0000", "from_user": "99celebrities", "from_user_id": 183533126, "from_user_id_str": "183533126", "from_user_name": "99celebrities", "geo": null, "id": 148834311670476800, "id_str": "148834311670476800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1132361285/Untitled-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1132361285/Untitled-2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TomCruise: TONIGHT! LIVE #MISSIONIMPOSSIBLE @GHOSTPROTOCOL #NYC #MOVIE \\u2605PREMIERE\\u2605 #BLOG COVERAGE! Join us on the red carpet! http://t.co/8FwxLVGC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:19 +0000", "from_user": "motniemtin", "from_user_id": 18185719, "from_user_id_str": "18185719", "from_user_name": "motniemtin", "geo": null, "id": 148834309522997250, "id_str": "148834309522997248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://i3e.us" rel="nofollow">i3e Auto Tweet</a>", "text": "AT&amp;T brings free WiFi to four more NYC parks, will occupy your downtime :: http://t.co/jnwmxGGK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:18 +0000", "from_user": "iAmRozayMylan", "from_user_id": 394079360, "from_user_id_str": "394079360", "from_user_name": "Rozay Mylan ", "geo": null, "id": 148834307941740540, "id_str": "148834307941740544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695640552/iAmRozayMylan_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695640552/iAmRozayMylan_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "My last nite in town NYC ..... Come see me at @clubPERFECTION tonite !!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:16 +0000", "from_user": "YoLdn", "from_user_id": 149318208, "from_user_id_str": "149318208", "from_user_name": "London", "geo": null, "id": 148834298886234100, "id_str": "148834298886234112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693279752/phone_pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693279752/phone_pic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Baron Davies NYC. They needed that", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:15 +0000", "from_user": "JTre910", "from_user_id": 429155476, "from_user_id_str": "429155476", "from_user_name": "JTre", "geo": null, "id": 148834292477329400, "id_str": "148834292477329408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1675528927/PROFILE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675528927/PROFILE_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "http://t.co/oazbcatj A must read for any NYC resident regardless of your ethnic background... #RealLife", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:10 +0000", "from_user": "Salza456", "from_user_id": 27834190, "from_user_id_str": "27834190", "from_user_name": "Angela M Mulei", "geo": null, "id": 148834272113983500, "id_str": "148834272113983488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1543958826/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1543958826/image_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@ivncole nah bt it is on my list of must watch btw check out once upon a time really nyc series abt snow white bt wit a twist", "to_user": "ivncole", "to_user_id": 141198401, "to_user_id_str": "141198401", "to_user_name": "yvonne kirina", "in_reply_to_status_id": 148830471579635700, "in_reply_to_status_id_str": "148830471579635712"}, +{"created_at": "Mon, 19 Dec 2011 18:37:09 +0000", "from_user": "TracySchario", "from_user_id": 15029455, "from_user_id_str": "15029455", "from_user_name": "Tracy Schario", "geo": null, "id": 148834270285283330, "id_str": "148834270285283328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/328132686/11f7865_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/328132686/11f7865_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "can drivers wear white gloves like in Japan? \\u201C@mikedebonis: What color for DC cabs? Ward 3 white? DDOT red?NYC yellow? http://t.co/HaKRnCR4\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:09 +0000", "from_user": "ArdorRealEstate", "from_user_id": 424438326, "from_user_id_str": "424438326", "from_user_name": "Ardor Real Estate", "geo": null, "id": 148834269542875140, "id_str": "148834269542875137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1664616854/ardor_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664616854/ardor_logo_normal.jpg", "source": "<a href="http://www.ardorny.com" rel="nofollow">ArdorRealEstate</a>", "text": "#NYC New York, Real Estate #apartment #rentals #Upper Westside Studio Walk-up $1,750 http://t.co/vKS9P8NY NY Apartments for Rent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:09 +0000", "from_user": "Princess_Trice", "from_user_id": 180159127, "from_user_id_str": "180159127", "from_user_name": "Kamryn Madison ", "geo": null, "id": 148834267256995840, "id_str": "148834267256995840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690621534/Trice_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690621534/Trice_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "I wanna go to NYC so bad for new years eve!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:09 +0000", "from_user": "ArdorRealEstate", "from_user_id": 424438326, "from_user_id_str": "424438326", "from_user_name": "Ardor Real Estate", "geo": null, "id": 148834267202457600, "id_str": "148834267202457602", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1664616854/ardor_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664616854/ardor_logo_normal.jpg", "source": "<a href="http://www.ardorny.com" rel="nofollow">ArdorRealEstate</a>", "text": "#NYC New York, Real Estate #apartment #rentals #East Midtown 1-BR Walk-up $2,650 http://t.co/rmcGeOcG NY Apartments for Rent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:08 +0000", "from_user": "ArdorRealEstate", "from_user_id": 424438326, "from_user_id_str": "424438326", "from_user_name": "Ardor Real Estate", "geo": null, "id": 148834264610381820, "id_str": "148834264610381824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1664616854/ardor_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664616854/ardor_logo_normal.jpg", "source": "<a href="http://www.ardorny.com" rel="nofollow">ArdorRealEstate</a>", "text": "#NYC New York, Real Estate #apartment #rentals #Gramercy Park 1-BR Townhouse $2,200 http://t.co/OhqTb8kX NY Apartments for Rent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:08 +0000", "from_user": "TyonJReid", "from_user_id": 21933334, "from_user_id_str": "21933334", "from_user_name": "Tyon J Reid \\u2714", "geo": null, "id": 148834263406616580, "id_str": "148834263406616577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701295776/206829_1936632742630_1446703627_32236656_198104_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701295776/206829_1936632742630_1446703627_32236656_198104_n_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "NICE!! #NYC RT @KnickScoop Baron Davis runs New York City (VIDEO) http://t.co/40ZADCQL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:07 +0000", "from_user": "SmokeStackLLC", "from_user_id": 127678096, "from_user_id_str": "127678096", "from_user_name": "SmokeStackRecordings", "geo": null, "id": 148834261384957950, "id_str": "148834261384957953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1340161678/smokestack_new_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1340161678/smokestack_new_logo_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "#NYC #MOVIEMAKIN @PaceMediaLLC http://t.co/yUKU7dLl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:05 +0000", "from_user": "JanetheWriter", "from_user_id": 16545036, "from_user_id_str": "16545036", "from_user_name": "Jane E. Herman", "geo": +{"coordinates": [40.45,-74.5025], "type": "Point"}, "id": 148834253629698050, "id_str": "148834253629698048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/291890010/IMG_0334_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/291890010/IMG_0334_normal.JPG", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@FrumeSarah Sorry to miss you in NYC. xo.", "to_user": "FrumeSarah", "to_user_id": 10862572, "to_user_id_str": "10862572", "to_user_name": "FrumeSarah"}, +{"created_at": "Mon, 19 Dec 2011 18:37:04 +0000", "from_user": "yesiamcheap", "from_user_id": 133841222, "from_user_id_str": "133841222", "from_user_name": "Sandy Smith", "geo": null, "id": 148834248927879170, "id_str": "148834248927879168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1535962753/cheap_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1535962753/cheap_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "I love that the @INGDIRECT cafe in NYC is hosting an ugly sweater party on December 21. It ain't Christmas without an 80's sweater.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:03 +0000", "from_user": "BonniePfiester", "from_user_id": 48458575, "from_user_id_str": "48458575", "from_user_name": "Bonnie Pfiester", "geo": null, "id": 148834242644815870, "id_str": "148834242644815872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1542685404/tw_12528441_1316015883_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542685404/tw_12528441_1316015883_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@iBodyFit nope!! Freezing my butt of in NYC", "to_user": "iBodyFit", "to_user_id": 195335062, "to_user_id_str": "195335062", "to_user_name": "Franklin Antoian", "in_reply_to_status_id": 148831289544421380, "in_reply_to_status_id_str": "148831289544421376"}, +{"created_at": "Mon, 19 Dec 2011 18:37:00 +0000", "from_user": "Toyosi_O", "from_user_id": 168168039, "from_user_id_str": "168168039", "from_user_name": "\\u2665Oluwatoyosi Oke \\u2665", "geo": null, "id": 148834232205197300, "id_str": "148834232205197312", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627589355/329398216_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627589355/329398216_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@JimmyOVO nyc avatar :)", "to_user": "JimmyOVO", "to_user_id": 169849434, "to_user_id_str": "169849434", "to_user_name": "NOT Jimmy", "in_reply_to_status_id": 148833504476672000, "in_reply_to_status_id_str": "148833504476672000"}, +{"created_at": "Mon, 19 Dec 2011 18:36:55 +0000", "from_user": "_mikecoleman_", "from_user_id": 22935383, "from_user_id_str": "22935383", "from_user_name": "Mike Coleman", "geo": null, "id": 148834207895003140, "id_str": "148834207895003136", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1476319332/28526_387149707049_579142049_4642983_7129387_n-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1476319332/28526_387149707049_579142049_4642983_7129387_n-2_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "NYC http://t.co/KER7GoNb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:53 +0000", "from_user": "jayvaldez559", "from_user_id": 132707014, "from_user_id_str": "132707014", "from_user_name": "Jay", "geo": null, "id": 148834202475962370, "id_str": "148834202475962368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1648043815/330091246_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648043815/330091246_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Knicks fans should worry about Baron coming in fat, disinterested, and too busy trying to book NYC stars for his next terrible movie. #NBA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:51 +0000", "from_user": "QUART_KNEE_XO", "from_user_id": 121820149, "from_user_id_str": "121820149", "from_user_name": "Courtney", "geo": null, "id": 148834191927287800, "id_str": "148834191927287809", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1655517874/Picture0045_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655517874/Picture0045_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"@katkittiekat: @QUART_KNEE_XO I miss you too wyd for new years\" idkkk I might go to NYC now gahh we gotta chat.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:49 +0000", "from_user": "stopoccupywaste", "from_user_id": 419644780, "from_user_id_str": "419644780", "from_user_name": "stopoccupy", "geo": null, "id": 148834184251711500, "id_str": "148834184251711488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1653955410/StopOccupyWaste_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653955410/StopOccupyWaste_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Fr @StopOccupyWaste NY Torching Suspect Charged With Murder http://t.co/7sIDZABU #StopOccopyWaste", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:48 +0000", "from_user": "verkuilenfsma6", "from_user_id": 377859833, "from_user_id_str": "377859833", "from_user_name": "Verkuilen Webber", "geo": null, "id": 148834181219221500, "id_str": "148834181219221504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1554294805/imagesCAW5B66L_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1554294805/imagesCAW5B66L_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Aww man I really wanted to see LanaDelRey in nyc 12/5 but I didn't know she was gonna be here until", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:48 +0000", "from_user": "HanStaff", "from_user_id": 321079821, "from_user_id_str": "321079821", "from_user_name": "Hannah Stafford", "geo": null, "id": 148834178589397000, "id_str": "148834178589396992", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1524048093/Beachy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1524048093/Beachy_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@M0NJ0NES no NYC? \\uE038\\uE153\\uE157\\uE504", "to_user": "M0NJ0NES", "to_user_id": 187954539, "to_user_id_str": "187954539", "to_user_name": "Monica Jones"}, +{"created_at": "Mon, 19 Dec 2011 18:36:47 +0000", "from_user": "mandy_bearr", "from_user_id": 380100377, "from_user_id_str": "380100377", "from_user_name": "amanda stegura", "geo": null, "id": 148834176471285760, "id_str": "148834176471285760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680276246/DSCF1938_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680276246/DSCF1938_normal.JPG", "source": "<a href="http://twitpic.com" rel="nofollow">Twitpic</a>", "text": "Lunch in little italy :) hello #NYC http://t.co/ALJ6hWoE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:46 +0000", "from_user": "Tashaclydesdale", "from_user_id": 97990347, "from_user_id_str": "97990347", "from_user_name": "Natasha Clydesdale", "geo": null, "id": 148834172260192260, "id_str": "148834172260192256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681428431/SfT6yhil_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681428431/SfT6yhil_normal", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "@DiVineStyling I'm great and its about to get better as soon as I'm out of work. Shoppin in NYC is soo much fun. Hows everything on ur side", "to_user": "DiVineStyling", "to_user_id": 80341149, "to_user_id_str": "80341149", "to_user_name": "Sasha Watson", "in_reply_to_status_id": 148833814083407870, "in_reply_to_status_id_str": "148833814083407872"}, +{"created_at": "Mon, 19 Dec 2011 18:36:44 +0000", "from_user": "AmmAuHdiiVa", "from_user_id": 24638987, "from_user_id_str": "24638987", "from_user_name": "\\uE003Miss Lannie", "geo": null, "id": 148834165129875460, "id_str": "148834165129875456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699039902/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699039902/image_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @purplepeace79: Talking about sistas with weaves but your woman got more tracks than the NYC subway system. FOH.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:44 +0000", "from_user": "Damon_James", "from_user_id": 169219354, "from_user_id_str": "169219354", "from_user_name": "Damon James", "geo": null, "id": 148834164404269060, "id_str": "148834164404269056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1608610102/185430_10150403878133852_582933851_10533730_564621_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608610102/185430_10150403878133852_582933851_10533730_564621_n_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@iamdnothing believe me I don't want to but if she's gunna make a name that's where we have to go. NYC is the end game!", "to_user": "iamdnothing", "to_user_id": 255588623, "to_user_id_str": "255588623", "to_user_name": "D Nothing", "in_reply_to_status_id": 148833749117829120, "in_reply_to_status_id_str": "148833749117829121"}, +{"created_at": "Mon, 19 Dec 2011 18:36:43 +0000", "from_user": "Tenneyson", "from_user_id": 111115684, "from_user_id_str": "111115684", "from_user_name": "Tenneyson Absinthe", "geo": null, "id": 148834160784572400, "id_str": "148834160784572418", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1199322203/Tenneyson_Front_and_Back_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1199322203/Tenneyson_Front_and_Back_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "You never know when you might need this... #NYC RT @eaterny: Where to Eat at Newark Liberty Airport (EWR) http://t.co/weRIRNh1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:43 +0000", "from_user": "BigAppleJobsQ", "from_user_id": 432012303, "from_user_id_str": "432012303", "from_user_name": "BigAppleJobsQ", "geo": null, "id": 148834158062481400, "id_str": "148834158062481408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681836247/zNYC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681836247/zNYC_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "New NYC Jobs --- PostDoctoral Associate at University of Massachusetts Medical School (Worcester, MA) http://t.co/Eou1N0Dl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:42 +0000", "from_user": "BigAppleJobsQ", "from_user_id": 432012303, "from_user_id_str": "432012303", "from_user_name": "BigAppleJobsQ", "geo": null, "id": 148834156942589950, "id_str": "148834156942589953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681836247/zNYC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681836247/zNYC_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "New NYC Jobs --- Application Specialist - Open Systems at Fiserv Card Services (Morris Plains, NJ) http://t.co/Eou1N0Dl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:42 +0000", "from_user": "MovieMarkers", "from_user_id": 390592121, "from_user_id_str": "390592121", "from_user_name": "Movie Markers", "geo": null, "id": 148834156510593020, "id_str": "148834156510593025", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1587686827/movie_markers_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587686827/movie_markers_logo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TomCruise: Tom answers your questions at the NYC M:I-@GhostProtocol Premiere 2night! Submit your questions w/ #MissionNYC http://t.co/8FwxLVGC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:42 +0000", "from_user": "BigAppleJobsQ", "from_user_id": 432012303, "from_user_id_str": "432012303", "from_user_name": "BigAppleJobsQ", "geo": null, "id": 148834155717857280, "id_str": "148834155717857281", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681836247/zNYC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681836247/zNYC_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "New NYC Jobs --- SharePoint Solution Architect at Grg Consulting (New York, NY) http://t.co/Eou1N0Dl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:42 +0000", "from_user": "BigAppleJobsQ", "from_user_id": 432012303, "from_user_id_str": "432012303", "from_user_name": "BigAppleJobsQ", "geo": null, "id": 148834154392453120, "id_str": "148834154392453120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681836247/zNYC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681836247/zNYC_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "New NYC Jobs --- Junior Information Architect at Rokkan (New York, NY) http://t.co/Eou1N0Dl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:41 +0000", "from_user": "BigAppleJobsQ", "from_user_id": 432012303, "from_user_id_str": "432012303", "from_user_name": "BigAppleJobsQ", "geo": null, "id": 148834153008349200, "id_str": "148834153008349186", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681836247/zNYC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681836247/zNYC_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "New NYC Jobs --- Loan Officer at Vantage Recruiting (Philadelphia, PA) http://t.co/Eou1N0Dl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:41 +0000", "from_user": "krissy2707", "from_user_id": 29204851, "from_user_id_str": "29204851", "from_user_name": "Kristin White", "geo": null, "id": 148834149799690240, "id_str": "148834149799690240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/575851885/sands_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/575851885/sands_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@DeeandRicky Do you guy have a store in NYC?", "to_user": "DeeandRicky", "to_user_id": 19823348, "to_user_id_str": "19823348", "to_user_name": "Dee & Ricky Ahh!", "in_reply_to_status_id": 148832940711878660, "in_reply_to_status_id_str": "148832940711878656"}, +{"created_at": "Mon, 19 Dec 2011 18:36:40 +0000", "from_user": "Killa_Kae", "from_user_id": 345033106, "from_user_id_str": "345033106", "from_user_name": "Kaela Redmond", "geo": null, "id": 148834148407197700, "id_str": "148834148407197696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701567516/Photo_on_2011-12-17_at_13.57_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701567516/Photo_on_2011-12-17_at_13.57_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @mirandaproulx: I wanna go to college in NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:38 +0000", "from_user": "GICARTI", "from_user_id": 76677548, "from_user_id_str": "76677548", "from_user_name": "La Neta del Planeta", "geo": null, "id": 148834138844172300, "id_str": "148834138844172289", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1184847908/DSCN3374__2__-_copia_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1184847908/DSCN3374__2__-_copia_normal.JPG", "source": "<a href="http://nowplayingplugin.com/" rel="nofollow">Now Playing</a>", "text": "Listening to - Beastie Boys ~~ An Open Letter to NYC #nowplaying", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:37 +0000", "from_user": "YungMAC112", "from_user_id": 35676023, "from_user_id_str": "35676023", "from_user_name": "Yung MAC. \\uE01D", "geo": null, "id": 148834133005713400, "id_str": "148834133005713408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1629742979/ym_promo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629742979/ym_promo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "s/o to @TheSource for giving me something to read when i Drop kids off at the pool and the quick interview at #DXC #NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:36 +0000", "from_user": "derricksharpe", "from_user_id": 346319929, "from_user_id_str": "346319929", "from_user_name": "@mfg bitch!", "geo": null, "id": 148834130992439300, "id_str": "148834130992439296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695379649/D2cbbkOz_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695379649/D2cbbkOz_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@poochie_black: @derricksharpe Nooooo, not nyc !! Lmao\" lol hellll yeah or damn las vegas", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:36 +0000", "from_user": "iBoogzNicole", "from_user_id": 38798282, "from_user_id_str": "38798282", "from_user_name": "Naj \\uE03E\\uE414", "geo": null, "id": 148834130698838000, "id_str": "148834130698838016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1571309114/iBoogzNicole_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1571309114/iBoogzNicole_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "RT @Jared_V: Wait... RT @BBizDAish Uhmm RT @_cudderz Why do people say NYE?? Isn't it NYC??? Idk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:35 +0000", "from_user": "JanetLFalk", "from_user_id": 28583359, "from_user_id_str": "28583359", "from_user_name": "Janet L. Falk", "geo": null, "id": 148834125242044400, "id_str": "148834125242044417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/137518079/Janet_Falk_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/137518079/Janet_Falk_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@NewYorkPost SOURCE #Roosevelt Island has a history of scientific innovation & research http://t.co/283eSHoj http://t.co/xtYj1GD7 #nyc", "to_user": "NewYorkPost", "to_user_id": 17469289, "to_user_id_str": "17469289", "to_user_name": "New York Post", "in_reply_to_status_id": 148802912284454900, "in_reply_to_status_id_str": "148802912284454912"}, +{"created_at": "Mon, 19 Dec 2011 18:36:34 +0000", "from_user": "cmt1098", "from_user_id": 235810670, "from_user_id_str": "235810670", "from_user_name": "Caroline Bieber(;", "geo": null, "id": 148834123690156030, "id_str": "148834123690156032", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1628085733/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628085733/image_normal.jpg", "source": "<a href="http://www.motorola.com" rel="nofollow">DROID</a>", "text": "Finnaly here!(: NYC babyyy!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:34 +0000", "from_user": "AviationCanada", "from_user_id": 278997174, "from_user_id_str": "278997174", "from_user_name": "Aviation Canada", "geo": null, "id": 148834122977124350, "id_str": "148834122977124352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1304327639/aviation-canada_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1304327639/aviation-canada_normal.jpg", "source": "<a href="http://www.flightpodcast.com" rel="nofollow">Aviation Canada</a>", "text": "Upstart British #airline to use CSeries in new London-NYC route - @FinancialPost : http://t.co/fYt0KDmS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:32 +0000", "from_user": "igintonic", "from_user_id": 438250868, "from_user_id_str": "438250868", "from_user_name": "i Gin Tonic", "geo": null, "id": 148834114907275260, "id_str": "148834114907275264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696309561/igin-logo-512px_normal.png", "profile_image_url_https": null, "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @DrinkEnglishGin: Some of @DrinkEnglishGin's favorite NYC bars made the cut! http://t.co/AkLjHjkU @selenawrites", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:31 +0000", "from_user": "OperaSolutions", "from_user_id": 158618738, "from_user_id_str": "158618738", "from_user_name": "Opera Solutions", "geo": null, "id": 148834108817158140, "id_str": "148834108817158144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1116226052/Opera_Solutions_Logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1116226052/Opera_Solutions_Logo_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @kbierce: @OperaAnalytics email me (Katharine Bierce) if ur interested in the presentations / public speaking workshop in #NYC this Wed! (50% off too)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:26 +0000", "from_user": "HaiderKA", "from_user_id": 21222785, "from_user_id_str": "21222785", "from_user_name": "Haider\\u2122", "geo": null, "id": 148834088185372670, "id_str": "148834088185372672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1635978671/HKA_Beaver_Stadium_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635978671/HKA_Beaver_Stadium_1_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@rahimaxarsenal My last final was on Thursday, took a bus to NYC Friday, PIA flight to Lahore Saturday night, Lahore to Islamabad Sunday.", "to_user": "rahimaxarsenal", "to_user_id": 165536979, "to_user_id_str": "165536979", "to_user_name": "R.", "in_reply_to_status_id": 148832962836824060, "in_reply_to_status_id_str": "148832962836824065"}, +{"created_at": "Mon, 19 Dec 2011 18:36:25 +0000", "from_user": "reinventmekiki", "from_user_id": 26455084, "from_user_id_str": "26455084", "from_user_name": "Kallie B. *05ZG08FA", "geo": null, "id": 148834082451755000, "id_str": "148834082451755009", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698592401/110111144112_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698592401/110111144112_normal.jpg", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "Biz trip to nyc ladies #2012 #JMM @SapphireJewel87 @oooh_lala_monet @Mindblower1982", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:23 +0000", "from_user": "janinex3_", "from_user_id": 238364511, "from_user_id_str": "238364511", "from_user_name": "janine the great. ", "geo": null, "id": 148834077229850620, "id_str": "148834077229850625", "iso_language_code": "is", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1622892339/AdYeB9rCMAAfxnq_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622892339/AdYeB9rCMAAfxnq_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @OneDirectionNY: Totals: Dallas = 280; NYC = 220; LA = 200", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:22 +0000", "from_user": "LivLaffSplurge", "from_user_id": 53305484, "from_user_id_str": "53305484", "from_user_name": "\\u03FBuse", "geo": null, "id": 148834070544134140, "id_str": "148834070544134144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1643195995/LivLaffSplurge_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643195995/LivLaffSplurge_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Smh RT @FreekeyZeakey: This---->RT @BBizDAish: Uhmm RT @_cudderz Why do people say NYE?? Isn't it NYC??? Idk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:21 +0000", "from_user": "mheusler", "from_user_id": 16597357, "from_user_id_str": "16597357", "from_user_name": "mheusler", "geo": null, "id": 148834068165955600, "id_str": "148834068165955584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698549649/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698549649/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@billspec Be careful on NYC elevators !", "to_user": "billspec", "to_user_id": 29123068, "to_user_id_str": "29123068", "to_user_name": "Bill Spector", "in_reply_to_status_id": 148830294600978430, "in_reply_to_status_id_str": "148830294600978432"}, +{"created_at": "Mon, 19 Dec 2011 18:36:21 +0000", "from_user": "99celebrities", "from_user_id": 183533126, "from_user_id_str": "183533126", "from_user_name": "99celebrities", "geo": null, "id": 148834065510973440, "id_str": "148834065510973441", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1132361285/Untitled-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1132361285/Untitled-2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TomCruise: Tom answers your questions at the NYC M:I-@GhostProtocol Premiere 2night! Submit your questions w/ #MissionNYC http://t.co/8FwxLVGC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:18 +0000", "from_user": "ACooksNook", "from_user_id": 382396759, "from_user_id_str": "382396759", "from_user_name": "A Cook's Nook", "geo": null, "id": 148834055931179000, "id_str": "148834055931179009", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1566814135/handstand_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566814135/handstand_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Have you seen the NYC Rockettes? They are Amazing!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:18 +0000", "from_user": "1D_NewYorkCity", "from_user_id": 423929717, "from_user_id_str": "423929717", "from_user_name": "Julia Konts ", "geo": null, "id": 148834055406891000, "id_str": "148834055406891009", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1663610569/Screen_shot_2011-11-10_at_10.46.35_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663610569/Screen_shot_2011-11-10_at_10.46.35_PM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @OneDirectionNY: NYC, WE HAVE TO WIN THIS NEXT CHALLENGE AND BUMP DALLAS DOWN TO THIRD.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:16 +0000", "from_user": "Poetryboy01", "from_user_id": 347833784, "from_user_id_str": "347833784", "from_user_name": "Vusi sindane", "geo": null, "id": 148834045399277570, "id_str": "148834045399277568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1596066259/Poetry_boy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596066259/Poetry_boy_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Nyc track by ma frndz- stable-boyz z da family", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:16 +0000", "from_user": "ftgreene", "from_user_id": 18820283, "from_user_id_str": "18820283", "from_user_name": "ftgreene", "geo": null, "id": 148834044820455420, "id_str": "148834044820455425", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/70430901/ftgreene2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/70430901/ftgreene2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "1 media mention new on December 19 at 12:30 p.m.: \\n Media mention\\n\\n \\nMultiple locations\\n\\n\\n\\n\\n\\n \\n Holiday ... http://t.co/6wRvrWVD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:15 +0000", "from_user": "ftgreene", "from_user_id": 18820283, "from_user_id_str": "18820283", "from_user_name": "ftgreene", "geo": null, "id": 148834043390210050, "id_str": "148834043390210048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/70430901/ftgreene2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/70430901/ftgreene2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "1 photo new on December 19 at 11:45 a.m.: \\n Photo\\n\\n \\n\\nSomewhere in Fort Greene\\n\\n\\n\\n\\n\\n\\n \\n \\n LB1147 posted... http://t.co/t2XEqTPv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:14 +0000", "from_user": "CodyIsABoss", "from_user_id": 289083467, "from_user_id_str": "289083467", "from_user_name": "swagge.", "geo": null, "id": 148834036066955260, "id_str": "148834036066955265", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701424387/347ef1d829e911e19e4a12313813ffc0_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701424387/347ef1d829e911e19e4a12313813ffc0_7_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "MY TUMBLR. re-done it. http://t.co/OJzL6vIe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:13 +0000", "from_user": "shanescanlon", "from_user_id": 33338241, "from_user_id_str": "33338241", "from_user_name": "Shane Nikki Scanlon", "geo": null, "id": 148834034691215360, "id_str": "148834034691215360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1680099676/7052f3fb-5afa-4fe2-b638-2dabf2750f45_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680099676/7052f3fb-5afa-4fe2-b638-2dabf2750f45_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "We have arrived in NYC!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:09 +0000", "from_user": "_JLee18", "from_user_id": 280133010, "from_user_id_str": "280133010", "from_user_name": "Janielee Allen", "geo": null, "id": 148834015653277700, "id_str": "148834015653277697", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1613290311/_JLee18_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1613290311/_JLee18_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "I wanna go to the DMV or NYC over the break >_<", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:03 +0000", "from_user": "redostoneage", "from_user_id": 28156710, "from_user_id_str": "28156710", "from_user_name": "Truth Tweeter", "geo": null, "id": 148833993574465540, "id_str": "148833993574465536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/661208289/get_fileCA9BVO04_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/661208289/get_fileCA9BVO04_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Obama Victory! #Occupydenver trashes downtown civic center http://t.co/BBSiCW7i #ows #p2 #topprog #maddow #msnbc #cnn #nyc #npr #pbs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:03 +0000", "from_user": "aaron_glaser", "from_user_id": 23230123, "from_user_id_str": "23230123", "from_user_name": "Aaron Glaser ", "geo": null, "id": 148833992295194620, "id_str": "148833992295194624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/708928101/Photo_88_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/708928101/Photo_88_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @BrendanPlease: In NYC? Check. Like comedy? Check. @TheMoonShow Multi-Denominational Year-End Celebration! tonight? CHECK http://t.co/jMxyeFV0 #greatcomedy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:03 +0000", "from_user": "OccupyWeather", "from_user_id": 400559295, "from_user_id_str": "400559295", "from_user_name": "Occupy Weather", "geo": null, "id": 148833991548604400, "id_str": "148833991548604416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1612658667/ows_retreats_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612658667/ows_retreats_normal.jpg", "source": "<a href="http://24Ahead.com/" rel="nofollow">OccupyWeather</a>", "text": "Forecast for NYC Sunday: Rain. High temp: 60F. #OccupyWallStreet #ocra #teaparty", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:01 +0000", "from_user": "xSillaMahone", "from_user_id": 225152705, "from_user_id_str": "225152705", "from_user_name": "\\u2661\\u2661SILLA", "geo": null, "id": 148833984607043600, "id_str": "148833984607043584", "iso_language_code": "fi", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684979660/331220275_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684979660/331220275_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "OMFG LE ROLLING 2 NYC HAHAHAHAHAHAHAHA LMAO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:01 +0000", "from_user": "OccupyWeather", "from_user_id": 400559295, "from_user_id_str": "400559295", "from_user_name": "Occupy Weather", "geo": null, "id": 148833982405029900, "id_str": "148833982405029889", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1612658667/ows_retreats_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612658667/ows_retreats_normal.jpg", "source": "<a href="http://24Ahead.com/" rel="nofollow">OccupyWeather</a>", "text": "Forecast for NYC Saturday night: Mostly cloudy. Low temp: 48F. #OccupyWallStreet #sgp #tcot", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:00 +0000", "from_user": "ddlovatoSpain", "from_user_id": 30282461, "from_user_id_str": "30282461", "from_user_name": "Demi Lovato Spain", "geo": null, "id": 148833978827288580, "id_str": "148833978827288576", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1669696707/icon_twit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669696707/icon_twit_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@DemiEuropeTour La sorpresa es que ser\\u00E1 la presentadora del programa de MTV en NYC ;-)", "to_user": "DemiEuropeTour", "to_user_id": 48117682, "to_user_id_str": "48117682", "to_user_name": "Lightweight", "in_reply_to_status_id": 148818807966797820, "in_reply_to_status_id_str": "148818807966797824"}, +{"created_at": "Mon, 19 Dec 2011 18:36:00 +0000", "from_user": "Acne_Assassin", "from_user_id": 172861475, "from_user_id_str": "172861475", "from_user_name": "Vanessa Rhee", "geo": null, "id": 148833977942290430, "id_str": "148833977942290432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1091758961/1001246261_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1091758961/1001246261_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Acne A's Skin Update Where to Get Laser Acne Treatment Nyc? - PDF http://t.co/PgNlHi8Q #skin #acne #help", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:59 +0000", "from_user": "Gisselatinoco", "from_user_id": 296454713, "from_user_id_str": "296454713", "from_user_name": "\\u2665Gisselatinoco\\u2665", "geo": +{"coordinates": [40.6794,-73.8617], "type": "Point"}, "id": 148833976918867970, "id_str": "148833976918867969", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702563821/476185560_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702563821/476185560_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@MrAlexisPR y mi regalo de navidad?.....\\u263Abesos desde NYC", "to_user": "MrAlexisPR", "to_user_id": 77029606, "to_user_id_str": "77029606", "to_user_name": "Alexis Ortiz", "in_reply_to_status_id": 148830563317448700, "in_reply_to_status_id_str": "148830563317448704"}, +{"created_at": "Mon, 19 Dec 2011 18:35:59 +0000", "from_user": "Jared_V", "from_user_id": 24605466, "from_user_id_str": "24605466", "from_user_name": "Jared", "geo": null, "id": 148833973580202000, "id_str": "148833973580201984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685492661/profile_image_1323542793027_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685492661/profile_image_1323542793027_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "Wait... RT @BBizDAish Uhmm RT @_cudderz Why do people say NYE?? Isn't it NYC??? Idk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:59 +0000", "from_user": "Oranje_Carot", "from_user_id": 89751476, "from_user_id_str": "89751476", "from_user_name": "Jessika Rabitt", "geo": null, "id": 148833972904927230, "id_str": "148833972904927234", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1620030713/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620030713/image_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @Wale: Good Morning NYC.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:56 +0000", "from_user": "Judas_Jackson", "from_user_id": 346031006, "from_user_id_str": "346031006", "from_user_name": "Delicious", "geo": null, "id": 148833961127329800, "id_str": "148833961127329792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1566179432/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566179432/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @alanhahn: Davis pointed out how he always came to NYC to play at Rucker and always wanted to call the Garden home.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:52 +0000", "from_user": "georginasmithh", "from_user_id": 27915052, "from_user_id_str": "27915052", "from_user_name": "Army of Skanks", "geo": null, "id": 148833947512614900, "id_str": "148833947512614912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702566005/screenCap1323291655_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702566005/screenCap1323291655_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "might just run away to nyc and start a life , easy....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:51 +0000", "from_user": "Johnny_Logic", "from_user_id": 51771972, "from_user_id_str": "51771972", "from_user_name": "Frank Lee Awesome", "geo": null, "id": 148833942445891600, "id_str": "148833942445891584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/287244068/gl_corps_50x50_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/287244068/gl_corps_50x50_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MikeValenti971: WOW. read this. People are monsters. http://t.co/cCP3w7gs How could you do this to another human?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:49 +0000", "from_user": "aktolunay", "from_user_id": 26771577, "from_user_id_str": "26771577", "from_user_name": "Dogan Aktolunay", "geo": null, "id": 148833934959063040, "id_str": "148833934959063040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/110820370/yuz_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/110820370/yuz_normal.JPG", "source": "<a href="http://www.thefancy.com" rel="nofollow"> Fancy</a>", "text": "20 Pine Residences @ NYC http://t.co/HHZZGOQk via @thefancy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:49 +0000", "from_user": "fluorescentsky", "from_user_id": 21053667, "from_user_id_str": "21053667", "from_user_name": "Anna", "geo": null, "id": 148833934325727230, "id_str": "148833934325727232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1646097602/Photo_on_11-12-11_at_7.47_PM__7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646097602/Photo_on_11-12-11_at_7.47_PM__7_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Ess-a-Bagel is good, but I can't tell if it's \"the best bagel place in NYC\" (even though it supposedly is) because I'm not a bagel person...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:49 +0000", "from_user": "TheMoonShow", "from_user_id": 121923873, "from_user_id_str": "121923873", "from_user_name": "The Moon", "geo": null, "id": 148833933172293630, "id_str": "148833933172293632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/745528236/moon_logo_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/745528236/moon_logo_sm_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @BrendanPlease: In NYC? Check. Like comedy? Check. @TheMoonShow Multi-Denominational Year-End Celebration! tonight? CHECK http://t.co/jMxyeFV0 #greatcomedy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:48 +0000", "from_user": "ladybmusic", "from_user_id": 34931526, "from_user_id_str": "34931526", "from_user_name": "Bethany Divalicious", "geo": null, "id": 148833930181750800, "id_str": "148833930181750785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1532483136/266722_10150215927048506_659138505_7363657_5732986_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1532483136/266722_10150215927048506_659138505_7363657_5732986_o_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Check me out live in NYC on 94.1 FM this Wednesday 10pm-1am. Please support the Team Divalicious movement #Movie.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:47 +0000", "from_user": "grace8ming", "from_user_id": 246614123, "from_user_id_str": "246614123", "from_user_name": "kimberly grace", "geo": null, "id": 148833925681258500, "id_str": "148833925681258496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1565464328/fence_peep_hole_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1565464328/fence_peep_hole_3_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @democracynow: Occupy Wall Street NYC marks 3-month anniversary with re-occupation attempt, dozens arrested. http://t.co/jK0sLcnw #ows", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:47 +0000", "from_user": "JayBoo210", "from_user_id": 220613044, "from_user_id_str": "220613044", "from_user_name": "Jay", "geo": null, "id": 148833923152101380, "id_str": "148833923152101377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701268870/Twitpic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701268870/Twitpic_normal.jpg", "source": "<a href="http://accounts.vitrue.com/" rel="nofollow">Vitrue Accounts</a>", "text": "RT @mix961sa: Not much time left to enter to win a trip to NYC for NYE and the chance to see @LadyGaga, @LMFAO, @bep & more! http://t.co/YKGgNsvW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:46 +0000", "from_user": "juicyjenn1127", "from_user_id": 398137122, "from_user_id_str": "398137122", "from_user_name": "Jennifer", "geo": null, "id": 148833919381422080, "id_str": "148833919381422080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701075015/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701075015/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@LeverickBay not NYC , north carolina", "to_user": "LeverickBay", "to_user_id": 194666089, "to_user_id_str": "194666089", "to_user_name": "Leverick Bay Resort ", "in_reply_to_status_id": 148830561878814720, "in_reply_to_status_id_str": "148830561878814720"}, +{"created_at": "Mon, 19 Dec 2011 18:35:46 +0000", "from_user": "AkiraOne", "from_user_id": 39069271, "from_user_id_str": "39069271", "from_user_name": "Akira Ruiz", "geo": null, "id": 148833918806790140, "id_str": "148833918806790145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1318628934/CNCSumo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1318628934/CNCSumo_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "Had a great shoot yesterday. #NYC #Instagrizzle http://t.co/WeE5HdlF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:45 +0000", "from_user": "JuanDavidLoopez", "from_user_id": 198214933, "from_user_id_str": "198214933", "from_user_name": "Juan David", "geo": null, "id": 148833917531729920, "id_str": "148833917531729921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1634631189/SDC14716_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634631189/SDC14716_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @rihanna: #Classic RT @FashionManic: \\u201C@rihanna:Steven Jo is hilarious!!! #youtube\\u201D<< LOL! Did you see when he got punk'd/pranked in NYC on WSHH?!?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:44 +0000", "from_user": "JenniferWh1tney", "from_user_id": 160236002, "from_user_id_str": "160236002", "from_user_name": "Jennifer Levine", "geo": null, "id": 148833913056411650, "id_str": "148833913056411648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1673942273/twitpic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673942273/twitpic_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "NYC bound! #homesweethome", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:44 +0000", "from_user": "zoefinkel", "from_user_id": 14167938, "from_user_id_str": "14167938", "from_user_name": "zoe finkel", "geo": null, "id": 148833910279774200, "id_str": "148833910279774208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1529366367/Photo_on_2011-08-29_at_15.23_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1529366367/Photo_on_2011-08-29_at_15.23_normal.jpg", "source": "<a href="http://twitter.com" rel="nofollow">Twitter for iPhone</a>", "text": "Nothing like hailing my first cab #NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:43 +0000", "from_user": "JingDaily", "from_user_id": 30452613, "from_user_id_str": "30452613", "from_user_name": "Jing Daily (\\u7CBE\\u65E5\\u4F20\\u5A92)", "geo": null, "id": 148833909952610300, "id_str": "148833909952610304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/618706964/jing-calligraphy-avatar_RED_new_Facebook_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/618706964/jing-calligraphy-avatar_RED_new_Facebook_normal.gif", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Event Recap: An Evening of Chinese Folk Songs At New York\\u2019s China Institute http://t.co/N3RwQxW0 #china #NYC #arts #music #culture", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:43 +0000", "from_user": "mcastillo8", "from_user_id": 143811020, "from_user_id_str": "143811020", "from_user_name": "Maria Castillo", "geo": null, "id": 148833907935154180, "id_str": "148833907935154176", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1565466955/IMG00099-20110805-1845_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1565466955/IMG00099-20110805-1845_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@alaieg hasta cuando estas en nyc?", "to_user": "alaieg", "to_user_id": 145884354, "to_user_id_str": "145884354", "to_user_name": "Alison EG", "in_reply_to_status_id": 148781016075603970, "in_reply_to_status_id_str": "148781016075603968"} +, +{"created_at": "Mon, 19 Dec 2011 18:35:39 +0000", "from_user": "derricksharpe", "from_user_id": 346319929, "from_user_id_str": "346319929", "from_user_name": "@mfg bitch!", "geo": null, "id": 148833889291485200, "id_str": "148833889291485184", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695379649/D2cbbkOz_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695379649/D2cbbkOz_normal", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @poochie_black: @derricksharpe Nooooo, not nyc !! Lmao", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:38 +0000", "from_user": "tattwithjerzey", "from_user_id": 171204031, "from_user_id_str": "171204031", "from_user_name": "Jerzey", "geo": null, "id": 148833885516599300, "id_str": "148833885516599296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696603492/376157_2480526810778_1180775053_2148708_1861989620_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696603492/376157_2480526810778_1180775053_2148708_1861989620_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Destination Tattoo NYC now doing Microdermal Piercings.. Safe and Clean.. Best Prices in NYC.. Give Jerzey a Call 212-427-1808..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:37 +0000", "from_user": "Gflo54", "from_user_id": 382961814, "from_user_id_str": "382961814", "from_user_name": "Flo Green", "geo": null, "id": 148833882802896900, "id_str": "148833882802896896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1579198873/2Dd_QTZ23xtwvdC7NqkDgkwABA_gBDg9DEWsRXBMUIB0g.128_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1579198873/2Dd_QTZ23xtwvdC7NqkDgkwABA_gBDg9DEWsRXBMUIB0g.128_normal.png", "source": "<a href="http://www.yahoo.com" rel="nofollow">Yahoo!</a>", "text": "gave a thumbs up to wingnut's comment: This country is full of idiots. Thank god most of them just troll around... http://t.co/2FDO1Xti", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:37 +0000", "from_user": "_dally92", "from_user_id": 208113847, "from_user_id_str": "208113847", "from_user_name": "Dally", "geo": null, "id": 148833881381027840, "id_str": "148833881381027840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1671428707/me_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671428707/me_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "So jel @Elliemay993 is living it up in NYC and i'm sat here watching Jack and the Beanstalk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:35 +0000", "from_user": "TheRealShahrin", "from_user_id": 106605974, "from_user_id_str": "106605974", "from_user_name": "The Real Shahrin", "geo": null, "id": 148833874695303170, "id_str": "148833874695303168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1665282825/n506095857_6042515_3172052_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665282825/n506095857_6042515_3172052_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"@nayan1983: @TheRealShahrin ppl in kansas city need hrblock more\" lol nyc has it too but they are not hiring", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:34 +0000", "from_user": "yatesc", "from_user_id": 7141172, "from_user_id_str": "7141172", "from_user_name": "C. M. Yates & Ko.", "geo": null, "id": 148833870878482430, "id_str": "148833870878482432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1266029221/CMYKompany_Icon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266029221/CMYKompany_Icon_normal.png", "source": "<a href="http://www.twittergadget.com" rel="nofollow">tGadget</a>", "text": "@mikedebonis DDOT red, or NYC yellow. Either would be fine.", "to_user": "mikedebonis", "to_user_id": 16753660, "to_user_id_str": "16753660", "to_user_name": "Mike DeBonis", "in_reply_to_status_id": 148833231544909820, "in_reply_to_status_id_str": "148833231544909824"}, +{"created_at": "Mon, 19 Dec 2011 18:35:34 +0000", "from_user": "porchnik", "from_user_id": 135705548, "from_user_id_str": "135705548", "from_user_name": "Porchnik", "geo": null, "id": 148833870840733700, "id_str": "148833870840733696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1312849289/64028_10100104981053929_819309_54429174_7679167_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1312849289/64028_10100104981053929_819309_54429174_7679167_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "nightmare \\u201C@lisang: The New Me Generation: 30-something couple have do-gooder NYC wedding in trendy DUMBO loft space http://t.co/N7Dx9C1m\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:31 +0000", "from_user": "YeliLoveJonas", "from_user_id": 191708969, "from_user_id_str": "191708969", "from_user_name": "Yelii Lovee Jo\\u00DFroos", "geo": null, "id": 148833857133748220, "id_str": "148833857133748224", "iso_language_code": "hu", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702580364/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702580364/image_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @DeniseJonas: John's Pizza NYC!! http://t.co/lMqV6aPF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:31 +0000", "from_user": "GLBTshirts", "from_user_id": 74878650, "from_user_id_str": "74878650", "from_user_name": "GlbtShirts.com", "geo": null, "id": 148833856701726720, "id_str": "148833856701726721", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1399110079/glbgrup1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1399110079/glbgrup1_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "PHOTOS: NYC Glitterati Celebrate Ziggy Stardust At Bowieball http://t.co/mJuWQSZb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:29 +0000", "from_user": "LaDyfever", "from_user_id": 247988533, "from_user_id_str": "247988533", "from_user_name": "~FEDERAL DISTRICT ~", "geo": null, "id": 148833849995042800, "id_str": "148833849995042816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1601400938/y1mEqTW9_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601400938/y1mEqTW9_normal", "source": "<a href="http://retwedia.com" rel="nofollow">Retwedia.com</a>", "text": "RT @MysterioLG: \"I Don't Know\" Feat. My Bro @NYCLean #AllBlockEverything #LetsGo #NYC #ATL #MIA #London #Paris #Tokyo #Toronto http://t.co/k4qUxJVd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:29 +0000", "from_user": "pryncesssawah", "from_user_id": 95421465, "from_user_id_str": "95421465", "from_user_name": "Sarah Connor", "geo": null, "id": 148833847558160400, "id_str": "148833847558160384", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700437527/new_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700437527/new_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@ NYC Pub http://t.co/6mYPJjzr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:28 +0000", "from_user": "JanetLFalk", "from_user_id": 28583359, "from_user_id_str": "28583359", "from_user_name": "Janet L. Falk", "geo": null, "id": 148833845834285060, "id_str": "148833845834285056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/137518079/Janet_Falk_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/137518079/Janet_Falk_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@billritter7 SOURCE #Roosevelt Island has a history of scientific innovation & research http://t.co/283eSHoj http://t.co/xtYj1GD7 #nyc", "to_user": "billritter7", "to_user_id": 18770777, "to_user_id_str": "18770777", "to_user_name": "Bill Ritter"}, +{"created_at": "Mon, 19 Dec 2011 18:35:28 +0000", "from_user": "NYBusinessSale", "from_user_id": 302085966, "from_user_id_str": "302085966", "from_user_name": "NY Business For Sale", "geo": null, "id": 148833843435151360, "id_str": "148833843435151360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1362202321/bb_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1362202321/bb_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#NYC BusinessForSale PRICE REDUCE/Complete Renovate BAKERY on Roosevelt Ave. (917-749-7804) (Woodside) $199000 http://t.co/8JBRR79f", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:27 +0000", "from_user": "NYBusinessSale", "from_user_id": 302085966, "from_user_id_str": "302085966", "from_user_name": "NY Business For Sale", "geo": null, "id": 148833842621464580, "id_str": "148833842621464576", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1362202321/bb_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1362202321/bb_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#NYC BusinessForSale Bar & Restaurant For Sale on Roosevelt Ave. (917-749-7804) (Woodside) $175000 http://t.co/owxFaz2C", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:27 +0000", "from_user": "NYBusinessSale", "from_user_id": 302085966, "from_user_id_str": "302085966", "from_user_name": "NY Business For Sale", "geo": null, "id": 148833841673539600, "id_str": "148833841673539584", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1362202321/bb_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1362202321/bb_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#NYC BusinessForSale Pizzeria for Sale (Flatlands, Brooklyn) $145000 http://t.co/dlc9cCW0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:27 +0000", "from_user": "NYBusinessSale", "from_user_id": 302085966, "from_user_id_str": "302085966", "from_user_name": "NY Business For Sale", "geo": null, "id": 148833841484795900, "id_str": "148833841484795905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1362202321/bb_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1362202321/bb_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#NYC BusinessForSale GROCERY/FLOWERS/VEGETABLE/LOCATION/LOCATION/ (917-749-7804) (JACKSON HEIGHTS) $159000 http://t.co/J2tKuUIr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:26 +0000", "from_user": "raphaelsonlawNY", "from_user_id": 216502008, "from_user_id_str": "216502008", "from_user_name": "Raphaelson & Levine", "geo": null, "id": 148833835973476350, "id_str": "148833835973476353", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1180255714/35873_405465355442_57345080442_4964469_6994452_n_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1180255714/35873_405465355442_57345080442_4964469_6994452_n_normal.jpeg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "http://t.co/cOxZDooT \"...my reputation is destroyed\" former consultant John Haggerty sentenced 4theft of NYC's mayor Bloomberg campaign...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:25 +0000", "from_user": "extremepainlaw", "from_user_id": 260392016, "from_user_id_str": "260392016", "from_user_name": "Extreme Pain", "geo": null, "id": 148833832001474560, "id_str": "148833832001474560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "http://t.co/4H3YQlu6 \"...my reputation is destroyed\" former consultant John Haggerty sentenced 4theft of NYC's mayor Bloomberg campaign...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:24 +0000", "from_user": "Lannekir", "from_user_id": 359255568, "from_user_id_str": "359255568", "from_user_name": "vincent", "geo": null, "id": 148833828851552260, "id_str": "148833828851552256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@NerdyFTW u streamed for so long lol it was like 4 something when you ended it here in nyc", "to_user": "NerdyFTW", "to_user_id": 35617065, "to_user_id_str": "35617065", "to_user_name": "NerdyFTW", "in_reply_to_status_id": 148755054365642750, "in_reply_to_status_id_str": "148755054365642753"}, +{"created_at": "Mon, 19 Dec 2011 18:35:24 +0000", "from_user": "poochie_black", "from_user_id": 33023298, "from_user_id_str": "33023298", "from_user_name": "Betty Crocker", "geo": null, "id": 148833827941392400, "id_str": "148833827941392385", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694061945/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694061945/profile_normal.png", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "@derricksharpe Nooooo, not nyc !! Lmao", "to_user": "derricksharpe", "to_user_id": 346319929, "to_user_id_str": "346319929", "to_user_name": "@mfg bitch!", "in_reply_to_status_id": 148833485287723000, "in_reply_to_status_id_str": "148833485287723008"}, +{"created_at": "Mon, 19 Dec 2011 18:35:23 +0000", "from_user": "Beatfmjo", "from_user_id": 41121534, "from_user_id_str": "41121534", "from_user_name": "Beat FM Jordan", "geo": null, "id": 148833825659682800, "id_str": "148833825659682817", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/218897917/1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/218897917/1_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Music News - Darren Criss Plays Secret Show in NYC - Ever since Darren Criss surged into public consciousness l... http://t.co/ngDxtk5K", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:21 +0000", "from_user": "hazenandrews1", "from_user_id": 437762870, "from_user_id_str": "437762870", "from_user_name": "Hazen Andrews", "geo": null, "id": 148833816469966850, "id_str": "148833816469966848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699048451/270321_10150231329527872_502722871_7282232_7948192_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699048451/270321_10150231329527872_502722871_7282232_7948192_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "new idea... even if i moved to #nyc to live on the street and sell my body... i'd still get to live in New York right?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:21 +0000", "from_user": "honeybabychile", "from_user_id": 321135335, "from_user_id_str": "321135335", "from_user_name": "Keisha ", "geo": null, "id": 148833814347649020, "id_str": "148833814347649025", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1624580799/profile_image_1320541333263_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624580799/profile_image_1320541333263_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @purplepeace79: Talking about sistas with weaves but your woman got more tracks than the NYC subway system. FOH.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:20 +0000", "from_user": "thugmisstuesday", "from_user_id": 44818142, "from_user_id_str": "44818142", "from_user_name": "Princess", "geo": null, "id": 148833809729724400, "id_str": "148833809729724417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1561989896/h9MYSh6F_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1561989896/h9MYSh6F_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@AngelaSimmons: I'm ready to go to NYC!\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:16 +0000", "from_user": "BigNight4Percy", "from_user_id": 389252024, "from_user_id_str": "389252024", "from_user_name": "Percival's Big Night", "geo": null, "id": 148833796463136770, "id_str": "148833796463136769", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1584300391/Screen_shot_2011-10-11_at_11.17.19_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584300391/Screen_shot_2011-10-11_at_11.17.19_PM_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "What Chloe (@sarahawharton) and Riku (@angiemaroon) did last night | http://t.co/l9TsfpOq | #viral #bts #vlog #brooklyn #nyc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:16 +0000", "from_user": "MadeInToronto", "from_user_id": 271251774, "from_user_id_str": "271251774", "from_user_name": "Adam Daniel Mezei", "geo": null, "id": 148833796240842750, "id_str": "148833796240842752", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1285076701/Obraz032__2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1285076701/Obraz032__2__normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "What Chloe (@sarahawharton) and Riku (@angiemaroon) did last night | http://t.co/v4kVY8ra | #viral #bts #vlog #brooklyn #nyc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:16 +0000", "from_user": "dreamchaserS_", "from_user_id": 313710708, "from_user_id_str": "313710708", "from_user_name": "dreamchaserSfirm", "geo": null, "id": 148833794093363200, "id_str": "148833794093363200", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668325833/V4uzA4G5_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668325833/V4uzA4G5_normal", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Billionaire's Daughter Pays Record Sum For NYC Pad - Forbes http://t.co/SygpV3ge", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:16 +0000", "from_user": "thugmisstuesday", "from_user_id": 44818142, "from_user_id_str": "44818142", "from_user_name": "Princess", "geo": null, "id": 148833792960897020, "id_str": "148833792960897024", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1561989896/h9MYSh6F_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1561989896/h9MYSh6F_normal", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @AngelaSimmons: I'm ready to go to NYC!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:14 +0000", "from_user": "dylanhauck", "from_user_id": 23724791, "from_user_id_str": "23724791", "from_user_name": "Dylan ", "geo": +{"coordinates": [40.7734,-73.871], "type": "Point"}, "id": 148833787306983420, "id_str": "148833787306983424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639120549/UserPicture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639120549/UserPicture_normal.jpg", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "Coming hoooome!!! Thanks for the good times, NYC! (@ LaGuardia Airport (LGA) w/ 104 others) https://t.co/F6NsVcXh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:14 +0000", "from_user": "charlotte_blyth", "from_user_id": 69054272, "from_user_id_str": "69054272", "from_user_name": "Charlotte Blyth", "geo": null, "id": 148833785373401100, "id_str": "148833785373401088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1645540844/Snapshot_20110829_2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645540844/Snapshot_20110829_2_normal.JPG", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "RT @GabbieSuffell: http://t.co/yN5QCnuc char luvin lyf in nyc xxoxoox", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:13 +0000", "from_user": "DJSureal", "from_user_id": 20417977, "from_user_id_str": "20417977", "from_user_name": "Tha Mandinko Samurai", "geo": null, "id": 148833781200072700, "id_str": "148833781200072706", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691588435/46384_1387235440411_1217792957_30932545_409024_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691588435/46384_1387235440411_1217792957_30932545_409024_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Why do I prefer taking subways in NYC than Joe Metro in Seattle? #PublicTransportation", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:13 +0000", "from_user": "BlondeTaliban", "from_user_id": 176316746, "from_user_id_str": "176316746", "from_user_name": "Henny4Breakfast.", "geo": null, "id": 148833780789030900, "id_str": "148833780789030912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701536263/hCCOGPWO_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701536263/hCCOGPWO_normal", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "Dalia RT @KumoStevie: Who gonna be in NYC for new years?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:12 +0000", "from_user": "FilmStadtKoeln", "from_user_id": 245887286, "from_user_id_str": "245887286", "from_user_name": "Kino in K\\u00F6ln", "geo": null, "id": 148833778645737470, "id_str": "148833778645737472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1232654080/when-harry-met-sally_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1232654080/when-harry-met-sally_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TomCruise: TONIGHT! LIVE #MISSIONIMPOSSIBLE @GHOSTPROTOCOL #NYC #MOVIE \\u2605PREMIERE\\u2605 #BLOG COVERAGE! Join us on the red carpet! http://t.co/8FwxLVGC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:12 +0000", "from_user": "criggy", "from_user_id": 72187054, "from_user_id_str": "72187054", "from_user_name": "Eileen F. Corigliano", "geo": null, "id": 148833776569565200, "id_str": "148833776569565185", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1589430454/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1589430454/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#Alice's Tea Cup yum! Great tea and scones, a great way to spend a cold NYC afternoon with friends.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:10 +0000", "from_user": "direcvidalatina", "from_user_id": 48514672, "from_user_id_str": "48514672", "from_user_name": "DIRECT", "geo": null, "id": 148833769607020540, "id_str": "148833769607020544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702502998/393228_10151068237355074_811075073_22484431_261474672_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702502998/393228_10151068237355074_811075073_22484431_261474672_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "#booked :) nyc in feb I would tell ya the date but naaaa lol see ya soon http://t.co/5EwBzmAe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:10 +0000", "from_user": "MiaGrimes1", "from_user_id": 439402575, "from_user_id_str": "439402575", "from_user_name": "Mia Grimes", "geo": null, "id": 148833769175007230, "id_str": "148833769175007232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698937357/Sunflower_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698937357/Sunflower_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TomCruise: Tom answers your questions at the NYC M:I-@GhostProtocol Premiere 2night! Submit your questions w/ #MissionNYC http://t.co/8FwxLVGC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:09 +0000", "from_user": "radionylive", "from_user_id": 108448917, "from_user_id_str": "108448917", "from_user_name": "Radio New York Live", "geo": null, "id": 148833764393496580, "id_str": "148833764393496577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702492668/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702492668/logo_normal.png", "source": "<a href="http://www.radionylive.com/home.live" rel="nofollow">Radio NY Live - New York City</a>", "text": "Listen Live: http://t.co/dxUqZsZK - #NowPlaying Fastball - The Way - #NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:08 +0000", "from_user": "AnonMedics", "from_user_id": 359518856, "from_user_id_str": "359518856", "from_user_name": "Anon Street Medics", "geo": null, "id": 148833761931427840, "id_str": "148833761931427840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1507650276/c3xxbv_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1507650276/c3xxbv_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "Organizing an action in NYC and need medical support? Consider contacting @CrylightX #ows", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:08 +0000", "from_user": "TheRealADM", "from_user_id": 11789752, "from_user_id_str": "11789752", "from_user_name": "Adam Daniel Mezei", "geo": null, "id": 148833760798969860, "id_str": "148833760798969856", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686456940/Obraz021_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686456940/Obraz021_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "What Chloe (@sarahawharton) and Riku (@angiemaroon) did last night | http://t.co/SDyieUiM | #viral #bts #vlog #brooklyn #nyc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:06 +0000", "from_user": "urbancowboyNJ", "from_user_id": 156019035, "from_user_id_str": "156019035", "from_user_name": "ChocolateCamoCowboy ", "geo": null, "id": 148833752678805500, "id_str": "148833752678805504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1671365619/Parsippany-Troy_20Hills-20110805-00007_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671365619/Parsippany-Troy_20Hills-20110805-00007_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@cowgirl_PMG hellz yea...will be in NYC for opening weekend! Woot", "to_user": "cowgirl_PMG", "to_user_id": 227055347, "to_user_id_str": "227055347", "to_user_name": "Paige Gregory", "in_reply_to_status_id": 148833440920383500, "in_reply_to_status_id_str": "148833440920383488"}, +{"created_at": "Mon, 19 Dec 2011 18:35:04 +0000", "from_user": "YungMAC112", "from_user_id": 35676023, "from_user_id_str": "35676023", "from_user_name": "Yung MAC. \\uE01D", "geo": null, "id": 148833744529272830, "id_str": "148833744529272833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1629742979/ym_promo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629742979/ym_promo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "S/o to the @TheSourceMag ..... #DXC #NYC recap.....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:03 +0000", "from_user": "NSAYMidtown", "from_user_id": 191212164, "from_user_id_str": "191212164", "from_user_name": "Midtown ", "geo": null, "id": 148833740343345150, "id_str": "148833740343345152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1260269821/Midtown_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1260269821/Midtown_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Things to Do in #Midtown & #Hell's Kitchen: Dec. 19-23. New Intrepid Museum exhibit, CSI Experience and more! http://t.co/IQXGCTkD #nyc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:02 +0000", "from_user": "Baltimo206", "from_user_id": 439192201, "from_user_id_str": "439192201", "from_user_name": "Ibrahim abdulkarim", "geo": null, "id": 148833737126314000, "id_str": "148833737126313985", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700626337/7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700626337/7_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Nyc 1 igot a hot cup ov coffe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:01 +0000", "from_user": "bbully718", "from_user_id": 425173947, "from_user_id_str": "425173947", "from_user_name": "brian brooks", "geo": null, "id": 148833731908608000, "id_str": "148833731908608000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693212463/IMG00104-20110617-1049_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693212463/IMG00104-20110617-1049_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@KevinHart4real when r u performing in NYC..", "to_user": "KevinHart4real", "to_user_id": 23151437, "to_user_id_str": "23151437", "to_user_name": "Kevin Hart"}, +{"created_at": "Mon, 19 Dec 2011 18:34:59 +0000", "from_user": "HSJumpSpain", "from_user_id": 238719120, "from_user_id_str": "238719120", "from_user_name": "Hey! Say! JUMP Spain", "geo": null, "id": 148833722429489150, "id_str": "148833722429489153", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1216646670/hsj_spain_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1216646670/hsj_spain_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Preview del nuevo PV de NYC\\n\\n~~ Cris http://t.co/EyweVqoH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:58 +0000", "from_user": "GoldstarNewYork", "from_user_id": 34739142, "from_user_id_str": "34739142", "from_user_name": "Goldstar New York", "geo": null, "id": 148833719174696960, "id_str": "148833719174696960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/191853173/gs-twitter-ny_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/191853173/gs-twitter-ny_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Featured Today: \"Dialogue in the Dark\" -- see what it's like to navigate NYC in total darkness http://t.co/4QHqfZoZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:56 +0000", "from_user": "KITA____", "from_user_id": 70260799, "from_user_id_str": "70260799", "from_user_name": "Kita", "geo": null, "id": 148833710949675000, "id_str": "148833710949675008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702586550/331707775_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702586550/331707775_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@NickiJuelz wats good with nyc?? We goin??? Its next week!", "to_user": "NickiJuelz", "to_user_id": 429170618, "to_user_id_str": "429170618", "to_user_name": "Nicki Juelz"}, +{"created_at": "Mon, 19 Dec 2011 18:34:56 +0000", "from_user": "JackieJudd", "from_user_id": 16643579, "from_user_id_str": "16643579", "from_user_name": "JackieJudd", "geo": null, "id": 148833709250969600, "id_str": "148833709250969600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1201689251/jj_328_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1201689251/jj_328_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @IntegrativeInfo: RT @democracynow: Occupy Wall Street NYC marks 3-month anniversary with re-occupation attempt, dozens arrested. http://t.co/c6DDnVqV #ows", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:55 +0000", "from_user": "Andreamonsterrr", "from_user_id": 179972755, "from_user_id_str": "179972755", "from_user_name": "Andrea Lively \\u03DF ", "geo": null, "id": 148833706088464400, "id_str": "148833706088464388", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702606694/tumblr_lucc16LwTo1qecdxro2_250_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702606694/tumblr_lucc16LwTo1qecdxro2_250_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Hoy le he preguntado a @raulpad que me dijera las partes de NYC y me dice: \"Brooklyn, el bronx & la madre que lo pari\\u00F3!\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:55 +0000", "from_user": "FreekeyZeakey", "from_user_id": 213525046, "from_user_id_str": "213525046", "from_user_name": "Zeakey If U Nasty", "geo": null, "id": 148833705048285200, "id_str": "148833705048285184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1692428611/FreekeyZeakey_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692428611/FreekeyZeakey_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "This---->RT @BBizDAish: Uhmm RT @_cudderz Why do people say NYE?? Isn't it NYC??? Idk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:55 +0000", "from_user": "DDLH_DYNAMITE", "from_user_id": 207261472, "from_user_id_str": "207261472", "from_user_name": "Argentina Demi FC", "geo": null, "id": 148833704805007360, "id_str": "148833704805007360", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684387248/Captura_de_pantalla_2011-12-10_a_las_01.12.59_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684387248/Captura_de_pantalla_2011-12-10_a_las_01.12.59_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Tmb @RadioTKM cont\\u00F3 que Demi cantar\\u00E1 en el festejo de a\\u00F1o nuevo de MTV este 31/12 en NYC y que est\\u00E1 mas sexy que nunca!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:54 +0000", "from_user": "evanramadan", "from_user_id": 180747493, "from_user_id_str": "180747493", "from_user_name": "evan ramadhan", "geo": null, "id": 148833701671870460, "id_str": "148833701671870464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702550776/Img_00494_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702550776/Img_00494_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @billboard: #Glee star @DarrenCriss played a few shows in #NYC over the weekend while in town for \"How to Succeed...\" on #Broadway http://t.co/O74cYdkY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:54 +0000", "from_user": "happydawgblawg", "from_user_id": 223020169, "from_user_id_str": "223020169", "from_user_name": "Happy Dawg Advocacy ", "geo": null, "id": 148833701013368830, "id_str": "148833701013368832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1269981128/183840_1886379563087_1349367244_2160640_7555704_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1269981128/183840_1886379563087_1349367244_2160640_7555704_n_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "@UrgentPart2:#NYC Manhattan REX - A919658 FEMALE, RED, JINDO MIX, 10 yrs STRAY - STRAY WAIT... http://t.co/QvC3GbNF", "to_user": "UrgentPart2", "to_user_id": 250326581, "to_user_id_str": "250326581", "to_user_name": "Kay Smith"}, +{"created_at": "Mon, 19 Dec 2011 18:34:53 +0000", "from_user": "nicherssfeed", "from_user_id": 183779446, "from_user_id_str": "183779446", "from_user_name": "Sam", "geo": null, "id": 148833698886860800, "id_str": "148833698886860800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1112124245/Bryson_Bay__Australia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1112124245/Bryson_Bay__Australia_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "SensoryFriendly Movie Screenings for NYC Kids Film Screenings for ... http://t.co/79ZUIvdS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:52 +0000", "from_user": "McDirection__JB", "from_user_id": 93929841, "from_user_id_str": "93929841", "from_user_name": "\\u2665 \\u03DF \\u262E", "geo": null, "id": 148833692935143420, "id_str": "148833692935143425", "iso_language_code": "hu", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1675536494/LMK-055561__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675536494/LMK-055561__1__normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @DeniseJonas: John's Pizza NYC!! http://t.co/lMqV6aPF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:51 +0000", "from_user": "TCarolino", "from_user_id": 414296098, "from_user_id_str": "414296098", "from_user_name": "Theresa Carolino", "geo": null, "id": 148833688656941060, "id_str": "148833688656941057", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "was in NYC yesterday all day it was cold but soo much fun visited the Dash store bought Kris Jenner book nice store but too pricey for me.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:47 +0000", "from_user": "nytmnews", "from_user_id": 100553075, "from_user_id_str": "100553075", "from_user_name": "NYTM News", "geo": null, "id": 148833673981083650, "id_str": "148833673981083649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/727598012/nytmnews_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/727598012/nytmnews_twitter_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NYC BigApps: Checking in with Max Stoller http://t.co/Lbmy0RhJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:46 +0000", "from_user": "sjpuls", "from_user_id": 168494150, "from_user_id_str": "168494150", "from_user_name": "Sarah Puls", "geo": null, "id": 148833666997559300, "id_str": "148833666997559296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693521929/SarahPulsheadshot_118x160_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693521929/SarahPulsheadshot_118x160_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ariscott: I have a brand new website: http://t.co/kYgcE9Rb - please pass it along to anyone you might know who needs headshots in NYC. Thank you!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:43 +0000", "from_user": "Omari_West", "from_user_id": 156142433, "from_user_id_str": "156142433", "from_user_name": "Omar", "geo": null, "id": 148833656549543940, "id_str": "148833656549543938", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1552699031/Suit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552699031/Suit_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @therealmikedean: #WTT U.S. TOUR IS A WRAP. PJ TO NYC TO START NEXT PHASE.. NEVER STOPS DOES IT?? WHAT'S BETTER THAN THAT?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:42 +0000", "from_user": "SergeCBeaulieu", "from_user_id": 207378020, "from_user_id_str": "207378020", "from_user_name": "Serge Beaulieu", "geo": null, "id": 148833650543304700, "id_str": "148833650543304704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1670686144/jjj_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670686144/jjj_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "so i'm moving to NYC!!! feb or march. looking for a cool design studio to be part of. it's official :-) http://t.co/Gv9BOUMc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:40 +0000", "from_user": "JanetLFalk", "from_user_id": 28583359, "from_user_id_str": "28583359", "from_user_name": "Janet L. Falk", "geo": null, "id": 148833645669515260, "id_str": "148833645669515264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/137518079/Janet_Falk_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/137518079/Janet_Falk_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@CBSNews SOURCE #Roosevelt Island has a history of scientific innovation & research http://t.co/283eSHoj http://t.co/xtYj1GD7 #nyc", "to_user": "CBSNews", "to_user_id": 15012486, "to_user_id_str": "15012486", "to_user_name": "CBS News"}, +{"created_at": "Mon, 19 Dec 2011 18:34:40 +0000", "from_user": "PilarWormack", "from_user_id": 184944537, "from_user_id_str": "184944537", "from_user_name": "Pilar Wormack", "geo": null, "id": 148833645489160200, "id_str": "148833645489160193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1114086753/Pilar_Wormack_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1114086753/Pilar_Wormack_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Cornell Said Chosen for NYC Engineering Campus - Bloomberg: BloombergCornell Said Chosen for NYC Engineering Cam... http://t.co/SgL8uIFJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:40 +0000", "from_user": "iTweetMyMind0_o", "from_user_id": 221994685, "from_user_id_str": "221994685", "from_user_name": "Lil Shawty Red {^_^}", "geo": null, "id": 148833644524478460, "id_str": "148833644524478464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699466029/267487_199933556724993_100001250512199_614705_4352431_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699466029/267487_199933556724993_100001250512199_614705_4352431_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Law_and_Royalty lol. I'm not in NYC. I'm in rochester", "to_user": "Law_and_Royalty", "to_user_id": 295417070, "to_user_id_str": "295417070", "to_user_name": "Prince Lawson", "in_reply_to_status_id": 148798419668971520, "in_reply_to_status_id_str": "148798419668971521"}, +{"created_at": "Mon, 19 Dec 2011 18:34:37 +0000", "from_user": "nilubracco", "from_user_id": 392069814, "from_user_id_str": "392069814", "from_user_name": "Nilufer Bracco", "geo": null, "id": 148833632268730370, "id_str": "148833632268730368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1591137997/20110830_Nilufer-3972_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591137997/20110830_Nilufer-3972_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Magnificent one-of-a-kind vintage jewelry at Green Flea Market NYC! http://t.co/nlNtCtEZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:34 +0000", "from_user": "RyanGalway", "from_user_id": 35378637, "from_user_id_str": "35378637", "from_user_name": "Ryan Galway", "geo": null, "id": 148833616804331520, "id_str": "148833616804331520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1129616823/Headshot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1129616823/Headshot_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@DanielEOfficial LOL.. NYC Would be happy 2 have you! Some clubs can be tricky with booking first time acts. We'll def.. have 2 plan it out", "to_user": "DanielEOfficial", "to_user_id": 21327688, "to_user_id_str": "21327688", "to_user_name": "Daniel Evans", "in_reply_to_status_id": 148831772203946000, "in_reply_to_status_id_str": "148831772203945984"}, +{"created_at": "Mon, 19 Dec 2011 18:34:33 +0000", "from_user": "jtapia89", "from_user_id": 283843758, "from_user_id_str": "283843758", "from_user_name": "Tapia", "geo": null, "id": 148833616233906180, "id_str": "148833616233906176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1315531465/n746968474_570506_1432_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1315531465/n746968474_570506_1432_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@Claudiagimmara let's hang out before I leave to NYC.", "to_user": "Claudiagimmara", "to_user_id": 199042955, "to_user_id_str": "199042955", "to_user_name": "Claudia Gimmara.", "in_reply_to_status_id": 148796822616424450, "in_reply_to_status_id_str": "148796822616424448"}, +{"created_at": "Mon, 19 Dec 2011 18:34:33 +0000", "from_user": "NEELkCHOPRA", "from_user_id": 232523590, "from_user_id_str": "232523590", "from_user_name": "NEEL CHOPRA", "geo": null, "id": 148833614380015600, "id_str": "148833614380015616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1562625047/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1562625047/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@DeeMoney8 @lchopra big bro got me a lot! LOADS OF ClOTHES from NYC, was actually surprised lol", "to_user": "DeeMoney8", "to_user_id": 126641217, "to_user_id_str": "126641217", "to_user_name": "Deedro", "in_reply_to_status_id": 148832241374609400, "in_reply_to_status_id_str": "148832241374609408"}, +{"created_at": "Mon, 19 Dec 2011 18:34:32 +0000", "from_user": "RickyLWilson", "from_user_id": 96071454, "from_user_id_str": "96071454", "from_user_name": "Ricky Wison", "geo": null, "id": 148833611523686400, "id_str": "148833611523686401", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/569354779/Untitled_0001_010_0001_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/569354779/Untitled_0001_010_0001_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Woman Set Afire Over Debt, Police Say - Man charged with setting NYC woman on fire tells police he was mad over $2K. http://t.co/4RU6yRUP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:32 +0000", "from_user": "TheRealJyeshA", "from_user_id": 235604312, "from_user_id_str": "235604312", "from_user_name": "Jyesh Asani", "geo": null, "id": 148833608650600450, "id_str": "148833608650600449", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1620716498/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620716498/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@AshAsani @foxybarbie_ox in fact, going on boxing day, will be in NYC for NYE", "to_user": "AshAsani", "to_user_id": 209513181, "to_user_id_str": "209513181", "to_user_name": "Ash", "in_reply_to_status_id": 148825791172591600, "in_reply_to_status_id_str": "148825791172591616"}, +{"created_at": "Mon, 19 Dec 2011 18:34:31 +0000", "from_user": "SEND2PRINT", "from_user_id": 132662420, "from_user_id_str": "132662420", "from_user_name": "SEND2PRINT", "geo": null, "id": 148833607962730500, "id_str": "148833607962730497", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1606967210/headerWEB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606967210/headerWEB_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @DJFATFINGAZNYC: @SEND2PRINT \"F-TRAIN TO NYC\" - @DJFATFINGAZNYC ((Manhattan Records Japan)) is officially on Sale NOW!! => http://t.co/49D2ibH4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:31 +0000", "from_user": "SNICKERBOX", "from_user_id": 74350612, "from_user_id_str": "74350612", "from_user_name": "U should kno it! ", "geo": null, "id": 148833607476191230, "id_str": "148833607476191232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696742086/Ra_of_Ru1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696742086/Ra_of_Ru1_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Ru1 Bailbonds NJ/NYC Toll Free (855)700-2245 (732)721-7270 http://t.co/lfyaA7pv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:31 +0000", "from_user": "nancygrivera", "from_user_id": 277629027, "from_user_id_str": "277629027", "from_user_name": "Nancy Rivera", "geo": null, "id": 148833607253901300, "id_str": "148833607253901313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1628045559/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628045559/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @todd_tjr: NYC for the day", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:31 +0000", "from_user": "dietpillguru", "from_user_id": 106512331, "from_user_id_str": "106512331", "from_user_name": "UltimateFatBurner", "geo": null, "id": 148833606071103500, "id_str": "148833606071103490", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/644036785/ultimatefatburner_com_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/644036785/ultimatefatburner_com_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Comments: Comment on Childhood Obesity Rates in NYC Decline Slightly by Daniel Margolies http://t.co/pwi7FPAr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:31 +0000", "from_user": "ultimatefat", "from_user_id": 95261183, "from_user_id_str": "95261183", "from_user_name": "UltimateFatBurner", "geo": null, "id": 148833605244829700, "id_str": "148833605244829696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/567076622/ultimatefatburner_com_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/567076622/ultimatefatburner_com_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Comments: Comment on Childhood Obesity Rates in NYC Decline Slightly by Daniel Margolies http://t.co/tjN3OqIO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:29 +0000", "from_user": "housing4NYC", "from_user_id": 432694745, "from_user_id_str": "432694745", "from_user_name": "NYC housing", "geo": null, "id": 148833598546513920, "id_str": "148833598546513920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1683483659/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683483659/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#housing4u #housing Winter Promo - Upper West Side Lovely Furnished Studio (Upper West Side) $2599 http://t.co/jLmsnkta #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:29 +0000", "from_user": "housing4NYC", "from_user_id": 432694745, "from_user_id_str": "432694745", "from_user_name": "NYC housing", "geo": null, "id": 148833595480477700, "id_str": "148833595480477696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1683483659/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683483659/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#housing4u #housing BEAUTIFUL APARTMENT 35TH STREET (Astoria) $1400 1bd http://t.co/lO6W471p #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:28 +0000", "from_user": "housing4NYC", "from_user_id": 432694745, "from_user_id_str": "432694745", "from_user_name": "NYC housing", "geo": null, "id": 148833592590614530, "id_str": "148833592590614528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1683483659/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683483659/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#housing4u #housing First Class Professional Office In The Plaza District! This is an Oppo (Plaza ... http://t.co/P0t93ee2 #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:27 +0000", "from_user": "LSFrembes", "from_user_id": 295750052, "from_user_id_str": "295750052", "from_user_name": "Linda Seid Frembes", "geo": null, "id": 148833588538900480, "id_str": "148833588538900480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1570978581/Linda_InfoComm2010-IMG_1276-sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1570978581/Linda_InfoComm2010-IMG_1276-sm_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Which was my favorite #NYC holiday window? Saks? Macy's? Nay. This one: http://t.co/2nQTfWuE #photography", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:24 +0000", "from_user": "LeahandDanielle", "from_user_id": 440059284, "from_user_id_str": "440059284", "from_user_name": "LeahandDanielle", "geo": null, "id": 148833575066796030, "id_str": "148833575066796033", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700235684/Dressup247_Anime_Avatar_normal.jpg", "profile_image_url_https": null, "source": "<a href="http://twitter.com/">web</a>", "text": "I decided to write a bucket list. 1. Move to NYC. 2. Visit China. 3. Adopt a girl from China. 4. Get a job in the fashion industry.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:23 +0000", "from_user": "LongIslandJob", "from_user_id": 345588216, "from_user_id_str": "345588216", "from_user_name": "Long Island Job", "geo": null, "id": 148833572281782270, "id_str": "148833572281782272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1469792237/1DollarB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1469792237/1DollarB_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Long Island NYC Job Application Specialist - Open Systems at Fiserv Card Services (Morris Plains, NJ) http://t.co/3fnd9LOE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:22 +0000", "from_user": "Reginaisthebest", "from_user_id": 45722039, "from_user_id_str": "45722039", "from_user_name": "Regina", "geo": null, "id": 148833568410439680, "id_str": "148833568410439681", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1684403572/Photo_on_12-9-11_at_4.42_PM__5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684403572/Photo_on_12-9-11_at_4.42_PM__5_normal.jpg", "source": "<a href="http://www.osfoora.com" rel="nofollow">Osfoora for iPhone</a>", "text": "\\u00BFcu\\u00E1ndo? RT @eljefe_zb: Prolly be back in the NYC nxt week!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:22 +0000", "from_user": "xo_cvb", "from_user_id": 306167266, "from_user_id_str": "306167266", "from_user_name": "cvb ", "geo": null, "id": 148833566250377200, "id_str": "148833566250377216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1654930814/IMG-20111123-01576_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654930814/IMG-20111123-01576_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "I don't mind payin 75 dolla for an entry fee at bar in nyc for new years as long as they have #frenchfries @Allyyysonnn18", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:21 +0000", "from_user": "LongIslandJob", "from_user_id": 345588216, "from_user_id_str": "345588216", "from_user_name": "Long Island Job", "geo": null, "id": 148833564589441020, "id_str": "148833564589441024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1469792237/1DollarB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1469792237/1DollarB_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Long Island NYC Job Loan Officer at Vantage Recruiting (Philadelphia, PA) http://t.co/3fnd9LOE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:21 +0000", "from_user": "WAONE_01", "from_user_id": 429315962, "from_user_id_str": "429315962", "from_user_name": "\\u03C9\\u03B1\\u03C9\\u03B1\\u03B7 \\u0455\\u03C3\\u0455\\u03C3\\u043D\\u03B1\\u03B7", "geo": null, "id": 148833562525835260, "id_str": "148833562525835264", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701933424/WAONE_01_1490013755044364964_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701933424/WAONE_01_1490013755044364964_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Man Gets Prison for Bilking NYC Mayor http://t.co/rZloYNas", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:20 +0000", "from_user": "Jackson_Harris", "from_user_id": 81439958, "from_user_id_str": "81439958", "from_user_name": "Jackson Harris", "geo": null, "id": 148833561288519680, "id_str": "148833561288519680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1509834384/1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509834384/1_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I'm kinda sad it hasn't snowed here in NYC. Was hoping for a fun white Christmas full of sledding and snowball fights!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:18 +0000", "from_user": "dreamsofpeace9", "from_user_id": 277263665, "from_user_id_str": "277263665", "from_user_name": "Kayla :]", "geo": null, "id": 148833552937648130, "id_str": "148833552937648129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696997235/Remus_James_Sirius_and_Harry_DONT_MIND_ME_IM_JUST_BAWLING_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696997235/Remus_James_Sirius_and_Harry_DONT_MIND_ME_IM_JUST_BAWLING_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @billboard: #Glee star @DarrenCriss played a few shows in #NYC over the weekend while in town for \"How to Succeed...\" on #Broadway http://t.co/O74cYdkY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:17 +0000", "from_user": "PatchouliW", "from_user_id": 5854302, "from_user_id_str": "5854302", "from_user_name": "Patchouli Woollahra", "geo": null, "id": 148833548726579200, "id_str": "148833548726579200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1311001023/PatchiWildcat_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1311001023/PatchiWildcat_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ButtercupD This is the NYC morning anthem: http://t.co/HnpYBZW4", "to_user": "ButtercupD", "to_user_id": 4958911, "to_user_id_str": "4958911", "to_user_name": "Fern ", "in_reply_to_status_id": 148832788555104260, "in_reply_to_status_id_str": "148832788555104257"}, +{"created_at": "Mon, 19 Dec 2011 18:34:17 +0000", "from_user": "richphoto", "from_user_id": 15326241, "from_user_id_str": "15326241", "from_user_name": "Richard Brown Photo", "geo": null, "id": 148833546834939900, "id_str": "148833546834939904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1498594489/RBORANGESQ_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1498594489/RBORANGESQ_normal.jpg", "source": "<a href="http://paper.li" rel="nofollow">Paper.li</a>", "text": "Mercedes Benz Fashion Week NYC is out! http://t.co/QseI94Ts \\u25B8 Top stories today via @fashionistasme", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:17 +0000", "from_user": "JanetLFalk", "from_user_id": 28583359, "from_user_id_str": "28583359", "from_user_name": "Janet L. Falk", "geo": null, "id": 148833545153028100, "id_str": "148833545153028096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/137518079/Janet_Falk_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/137518079/Janet_Falk_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@NBCNewYork SOURCE #Roosevelt Island has a history of scientific innovation & research http://t.co/283eSHoj http://t.co/xtYj1GD7 #nyc", "to_user": "NBCNewYork", "to_user_id": 15864446, "to_user_id_str": "15864446", "to_user_name": "NBC New York"}, +{"created_at": "Mon, 19 Dec 2011 18:34:15 +0000", "from_user": "midnitespot", "from_user_id": 26523848, "from_user_id_str": "26523848", "from_user_name": "MidniteSpot.com", "geo": null, "id": 148833538928680960, "id_str": "148833538928680960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/110584120/squarelogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/110584120/squarelogo_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NYC: Sun Dec 25 WinterFresh: Black & White Affair @AMNESIA @DJSELF @DJNORIE @OBIETHEPROMOTER BDAY BASH @SUAVEOFNITELIFE http://t.co/rg4Dzjql", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:13 +0000", "from_user": "blankichu", "from_user_id": 59612136, "from_user_id_str": "59612136", "from_user_name": "Blank Grr", "geo": null, "id": 148833529495695360, "id_str": "148833529495695361", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1389471337/26981_1394191299855_1384350005_31124809_1183969_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1389471337/26981_1394191299855_1384350005_31124809_1183969_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "not pleased with this weather - back in nyc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:12 +0000", "from_user": "reneesumer", "from_user_id": 311835021, "from_user_id_str": "311835021", "from_user_name": "PAINT IT ALL RED \\uE022", "geo": null, "id": 148833524567384060, "id_str": "148833524567384064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1513822852/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1513822852/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@Toby_Kray: @reneesumer I'm from the US\\u201D><so am I lol #NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:11 +0000", "from_user": "u_cantaffordme", "from_user_id": 264579209, "from_user_id_str": "264579209", "from_user_name": "brooke marrow", "geo": null, "id": 148833521253892100, "id_str": "148833521253892096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1656636730/UkTG8mzw_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656636730/UkTG8mzw_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Should I go to A.C or NYC for new years", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:09 +0000", "from_user": "aprodmusic", "from_user_id": 95357518, "from_user_id_str": "95357518", "from_user_name": "A-Prod", "geo": null, "id": 148833515633516540, "id_str": "148833515633516545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696639796/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696639796/image_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @SkypassTravel: EMIRATES 2-Day Sale NYC,DFW,HOU,LAX,SFO,SEA to INDIA ends Dec20th. Depart Jan3-Mar31. Stay up to 4mos. FARES FROM $1,079 include all Taxes!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:06 +0000", "from_user": "FRESH_JuliaD", "from_user_id": 432080472, "from_user_id_str": "432080472", "from_user_name": "Julia Deguzman", "geo": null, "id": 148833502870257660, "id_str": "148833502870257665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690523997/fresh1-300x171_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690523997/fresh1-300x171_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TomCruise: Tom answers your questions at the NYC M:I-@GhostProtocol Premiere 2night! Submit your questions w/ #MissionNYC http://t.co/8FwxLVGC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:06 +0000", "from_user": "rodaycastle", "from_user_id": 130608787, "from_user_id_str": "130608787", "from_user_name": "Diana", "geo": null, "id": 148833502681497600, "id_str": "148833502681497601", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657500321/Captura3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657500321/Captura3_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @billboard: #Glee star @DarrenCriss played a few shows in #NYC over the weekend while in town for \"How to Succeed...\" on #Broadway http://t.co/O74cYdkY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:02 +0000", "from_user": "DailyFrontRow", "from_user_id": 22024974, "from_user_id_str": "22024974", "from_user_name": "The Daily Front Row", "geo": null, "id": 148833485006700540, "id_str": "148833485006700546", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691488441/Chic_Report_DEC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691488441/Chic_Report_DEC_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "#FashionNews @orla_kiely opens #NYC flagship store http://t.co/iaM77aGS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:01 +0000", "from_user": "kirkbrideomgr5", "from_user_id": 388128247, "from_user_id_str": "388128247", "from_user_name": "Kirkbride Woolworth", "geo": null, "id": 148833480917254140, "id_str": "148833480917254144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1581267135/imagesCANSWJ6Y_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1581267135/imagesCANSWJ6Y_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Movement for Justice in El Barrio hosting the NYC Encuentro 4 humanity", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:01 +0000", "from_user": "PERRM75DOLLARS", "from_user_id": 54570609, "from_user_id_str": "54570609", "from_user_name": "BRO. MELVIN MUHAMMAD", "geo": null, "id": 148833478153224200, "id_str": "148833478153224193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "NYC location and contact ph. Number / 917-714-2576 , or just visit website, http://t.co/PxD3Zldw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:00 +0000", "from_user": "MSilverPR", "from_user_id": 14514739, "from_user_id_str": "14514739", "from_user_name": "M. Silver Associates", "geo": null, "id": 148833477503098880, "id_str": "148833477503098880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702570547/TEMP_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702570547/TEMP_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Check this video out: #fashion show @ Whiskers in Wonderland #pet #adoption event in #NYC http://t.co/OQOfKsX4 @@MayorsAlliance @PETA #dogs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:33:59 +0000", "from_user": "TheRealMavNasty", "from_user_id": 263813642, "from_user_id_str": "263813642", "from_user_name": "Maverick Nanosh", "geo": null, "id": 148833469651357700, "id_str": "148833469651357696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1330608948/63472271610224625_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1330608948/63472271610224625_normal.jpg", "source": "<a href="http://mobileways.de/gravity" rel="nofollow">Gravity!</a>", "text": "This is a fucked up world @MikeValenti971: WOW. read this. People are monsters. http://t.co/N5uUvqC3 How could you do this to another human?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:57 +0000", "from_user": "TristenS", "from_user_id": 20019333, "from_user_id_str": "20019333", "from_user_name": "Tristen Sechi", "geo": null, "id": 148833463653511170, "id_str": "148833463653511169", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1435633542/Screen_shot_2011-07-10_at_3.24.42_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1435633542/Screen_shot_2011-07-10_at_3.24.42_PM_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Parkin it to get some writing done. #abouttime #nyc http://t.co/vEQxtgAZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:55 +0000", "from_user": "DJkTunes", "from_user_id": 101062835, "from_user_id_str": "101062835", "from_user_name": "Kareem Clarke", "geo": null, "id": 148833454350544900, "id_str": "148833454350544897", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677596968/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677596968/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Planet_FK: Concords = \"Death over Designer\" ..... Xmas NYC stomp out...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:53 +0000", "from_user": "concertsched", "from_user_id": 254164592, "from_user_id_str": "254164592", "from_user_name": "Concert Schedules", "geo": null, "id": 148833445945147400, "id_str": "148833445945147393", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Darren Criss Plays Secret Show in NYC http://t.co/ZpGOv5Do", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:52 +0000", "from_user": "JanetLFalk", "from_user_id": 28583359, "from_user_id_str": "28583359", "from_user_name": "Janet L. Falk", "geo": null, "id": 148833440953942000, "id_str": "148833440953942016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/137518079/Janet_Falk_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/137518079/Janet_Falk_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@NewYorkNews7 SOURCE #Roosevelt Island has a history of scientific innovation & research http://t.co/283eSHoj http://t.co/xtYj1GD7 #nyc", "to_user": "NewYorkNews7", "to_user_id": 60007011, "to_user_id_str": "60007011", "to_user_name": "New York News"}, +{"created_at": "Mon, 19 Dec 2011 18:33:51 +0000", "from_user": "johnschambers", "from_user_id": 399547848, "from_user_id_str": "399547848", "from_user_name": "Gun Licensing Lawyer", "geo": null, "id": 148833438026301440, "id_str": "148833438026301440", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1609476010/DSC00930_-_Copy2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609476010/DSC00930_-_Copy2_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "MAYOR BLOOMBERG DELIVERS EULOGY FOR PETER FIGOSKI AND POSTHUMOUSLY ... http://t.co/5HWsADIK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:50 +0000", "from_user": "MrSkyGuy", "from_user_id": 30513556, "from_user_id_str": "30513556", "from_user_name": "Mark Russell", "geo": null, "id": 148833435216121860, "id_str": "148833435216121856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1640885292/mrskyguy2_blue_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640885292/mrskyguy2_blue_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Wow, that's innovative.. sigh. Business class #airline Odyssey plans London-NYC route w/ #CSeries http://t.co/iDmGzbeD #Aviation", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:48 +0000", "from_user": "jstrelitz", "from_user_id": 8228652, "from_user_id_str": "8228652", "from_user_name": "Jessica Strelitz", "geo": null, "id": 148833424948469760, "id_str": "148833424948469760", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1238807902/homegirl_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1238807902/homegirl_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Pretty NYC-heavy list for this Forbes 30-under-30 for #food.... http://t.co/hV0cVzzZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:48 +0000", "from_user": "annaholllla", "from_user_id": 28387471, "from_user_id_str": "28387471", "from_user_name": "anna schenkel", "geo": null, "id": 148833420586385400, "id_str": "148833420586385409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691817689/Photo_on_9-14-11_at_10.24_PM__3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691817689/Photo_on_9-14-11_at_10.24_PM__3_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Camera on iOS</a>", "text": "train to NYC with @jrawlx16 :) http://t.co/ggq95e8d", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:46 +0000", "from_user": "LadyEleanorA", "from_user_id": 183176215, "from_user_id_str": "183176215", "from_user_name": "LadyEleanorA", "geo": null, "id": 148833419038695420, "id_str": "148833419038695424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1658519954/Profile_compressed_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658519954/Profile_compressed_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @NewYorkHabitat: Great list Leslie! RT @leslietravel: Top 5 Christmas attractions in New York City-- Many are FREE! http://t.co/Ao043EeO #nyc #lp #christmas", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:46 +0000", "from_user": "KumoStevie", "from_user_id": 72405079, "from_user_id_str": "72405079", "from_user_name": "Stevie Ehsoh Ortiz", "geo": null, "id": 148833415226073100, "id_str": "148833415226073088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1652998432/tumblr_lv32fh4JTY1qg5qw3o3_1280_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652998432/tumblr_lv32fh4JTY1qg5qw3o3_1280_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Who gonna be in NYC for new years?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:44 +0000", "from_user": "haederbipsw8", "from_user_id": 395807000, "from_user_id_str": "395807000", "from_user_name": "Haeder Pinkett", "geo": null, "id": 148833410465529860, "id_str": "148833410465529856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Nice freakin Day NYC....BIG APPLE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:44 +0000", "from_user": "UnaVainaLoca1", "from_user_id": 284901790, "from_user_id_str": "284901790", "from_user_name": "Miguel Duran", "geo": null, "id": 148833409639260160, "id_str": "148833409639260160", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700987237/Fuego_Feat._Amara__La_Negra__-_Te_Cuidate_COVER_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700987237/Fuego_Feat._Amara__La_Negra__-_Te_Cuidate_COVER_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Descarga http://t.co/hAuvHxIX #RD #DMV #Miami #NYC #Colombia #VNZL #Chile #Ecuador #Espa\\u00F1a #Nicaragua #ElSalvador #Guatemala #Peru #LATINOS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:44 +0000", "from_user": "apeecher", "from_user_id": 47449644, "from_user_id_str": "47449644", "from_user_name": "Ali Peecher", "geo": null, "id": 148833407093317630, "id_str": "148833407093317632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1638143897/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638143897/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Two more stops! Then Christmas shopping NYC is done!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:42 +0000", "from_user": "teresa_brunetti", "from_user_id": 341790306, "from_user_id_str": "341790306", "from_user_name": "Teresa Brunetti", "geo": null, "id": 148833402349559800, "id_str": "148833402349559809", "iso_language_code": "lt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1644152927/50nb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644152927/50nb_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "NYC is a jungle", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:40 +0000", "from_user": "kayemlin", "from_user_id": 34852125, "from_user_id_str": "34852125", "from_user_name": "Kaye Lin", "geo": null, "id": 148833393143062530, "id_str": "148833393143062528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1438637518/twitkaye1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1438637518/twitkaye1_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @democracynow: Occupy Wall Street NYC marks 3-month anniversary with re-occupation attempt, dozens arrested. http://t.co/jK0sLcnw #ows", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:40 +0000", "from_user": "worldisalive", "from_user_id": 406916112, "from_user_id_str": "406916112", "from_user_name": "World is Alive", "geo": null, "id": 148833392673308670, "id_str": "148833392673308672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://worldisalive.com" rel="nofollow">World is Alive</a>", "text": "Shien Lee Brings Retro Glamour to Tribeca Grand Hotel for Dances of Vice: The Grand Illusion, NYC's Most Spectacular New Year's Eve Gala ht", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:40 +0000", "from_user": "davidshorago", "from_user_id": 148882488, "from_user_id_str": "148882488", "from_user_name": "David Shorago", "geo": null, "id": 148833391675060220, "id_str": "148833391675060224", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1251028174/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1251028174/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@spartanboy17 Desgraciadamente F1 en USA esta destinada al fracaso. La de NYC tiene un poco de mas chance solo por ser en NYC", "to_user": "spartanboy17", "to_user_id": 40964597, "to_user_id_str": "40964597", "to_user_name": "Huge Bronco Fan", "in_reply_to_status_id": 148828255372312580, "in_reply_to_status_id_str": "148828255372312578"}, +{"created_at": "Mon, 19 Dec 2011 18:33:38 +0000", "from_user": "lukaloncar", "from_user_id": 44797470, "from_user_id_str": "44797470", "from_user_name": "luka", "geo": null, "id": 148833382686666750, "id_str": "148833382686666752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1621708329/lukaloncar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621708329/lukaloncar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @therealmikedean: #WTT U.S. TOUR IS A WRAP. PJ TO NYC TO START NEXT PHASE.. NEVER STOPS DOES IT?? WHAT'S BETTER THAN THAT?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:37 +0000", "from_user": "lukeholden93", "from_user_id": 288767653, "from_user_id_str": "288767653", "from_user_name": "Luke Holden", "geo": null, "id": 148833379410907140, "id_str": "148833379410907136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1473404621/IMG-20110801-00052_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1473404621/IMG-20110801-00052_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Nyc with @marisashanley, @micaelashanley and the shanley fam!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:27 +0000", "from_user": "rpkampuchea", "from_user_id": 138294486, "from_user_id_str": "138294486", "from_user_name": "Adan Gonzalez", "geo": null, "id": 148833336792596480, "id_str": "148833336792596480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/976365342/2000th_plane_shot_down_photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/976365342/2000th_plane_shot_down_photo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @democracynow: Occupy Wall Street NYC marks 3-month anniversary with re-occupation attempt, dozens arrested. http://t.co/jK0sLcnw #ows", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:26 +0000", "from_user": "brett22TGOD", "from_user_id": 139122956, "from_user_id_str": "139122956", "from_user_name": "Brett", "geo": null, "id": 148833331239329800, "id_str": "148833331239329792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1281969114/37825_414957393818_585553818_4453693_1980361_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1281969114/37825_414957393818_585553818_4453693_1980361_n_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @Mr_Camron: RT @MacMiller: @Mr_Camron thank u my g! Im comin up to NYC tonight. Ima hit u. Let's fuck people up./ copy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:24 +0000", "from_user": "Matangiisland", "from_user_id": 46524754, "from_user_id_str": "46524754", "from_user_name": "Matangi Island ", "geo": null, "id": 148833323555356670, "id_str": "148833323555356673", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/259465670/matangi001_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/259465670/matangi001_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Ni sa Moce...Farewell Lana & Jovan heading back to NYC...The volleyball court will miss you;-)\\n\\nNi sa... http://t.co/gUs55FRU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:24 +0000", "from_user": "parkertatro", "from_user_id": 49846765, "from_user_id_str": "49846765", "from_user_name": "Parker Allen Tatro", "geo": null, "id": 148833322867499000, "id_str": "148833322867499008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1492362805/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1492362805/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "this lady has got to be a real housewife of NYC. if i ever watched that show i'd know.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:18 +0000", "from_user": "MU_Baller45", "from_user_id": 51171220, "from_user_id_str": "51171220", "from_user_name": "Monty Brown", "geo": null, "id": 148833298695716860, "id_str": "148833298695716864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1621001136/297426_10150440248676015_613666014_10559470_813676196_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621001136/297426_10150440248676015_613666014_10559470_813676196_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Back from NYC. On our way to Athens to play UGA tomorrow night.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:12 +0000", "from_user": "DrinkSkinny", "from_user_id": 148856763, "from_user_id_str": "148856763", "from_user_name": "Christy Cegelski", "geo": null, "id": 148833274381348860, "id_str": "148833274381348864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1423878444/FB_pic2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1423878444/FB_pic2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Leaving NYC. :( if my kids were here, I think I'd stay.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:08 +0000", "from_user": "Jadore_Sophia", "from_user_id": 237594374, "from_user_id_str": "237594374", "from_user_name": "that one girl", "geo": null, "id": 148833259093110800, "id_str": "148833259093110784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697927658/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697927658/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @mirandaproulx: I wanna go to college in NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:08 +0000", "from_user": "MR_FAMOSO", "from_user_id": 28040368, "from_user_id_str": "28040368", "from_user_name": "Joe Hernandez\\u2122", "geo": null, "id": 148833258593988600, "id_str": "148833258593988610", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1694327217/331523032_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694327217/331523032_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Who want to come out to SOB's tonight & rock out with @KendrickLamar. Then after Veranda NYC to drink & have a good time? Hit me up", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:07 +0000", "from_user": "DannyAdimant", "from_user_id": 434442059, "from_user_id_str": "434442059", "from_user_name": "Danny", "geo": null, "id": 148833254399684600, "id_str": "148833254399684609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687744300/376498_10150397616805933_721615932_9072054_732753751_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687744300/376498_10150397616805933_721615932_9072054_732753751_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@r2t2b @hayleyturner123 it is! What have they been showing on Sky? We are still in NYC... #drinkyanksunderthetable", "to_user": "r2t2b", "to_user_id": 315096425, "to_user_id_str": "315096425", "to_user_name": "Rossi Thompson", "in_reply_to_status_id": 148827771450294270, "in_reply_to_status_id_str": "148827771450294272"}, +{"created_at": "Mon, 19 Dec 2011 18:33:07 +0000", "from_user": "wisernan", "from_user_id": 40874161, "from_user_id_str": "40874161", "from_user_name": "Nanette Wiser", "geo": null, "id": 148833253573406720, "id_str": "148833253573406720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1283864670/business_card_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1283864670/business_card_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "2012 Plate-Spotting: French dips at Minetta Tavern (NYC), angel food cupcakes Four Seasons Vegas, Eataly's focaccia (NYC).", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:07 +0000", "from_user": "StockJockey", "from_user_id": 10165242, "from_user_id_str": "10165242", "from_user_name": "StockJockey", "geo": null, "id": 148833251832762370, "id_str": "148833251832762370", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/465753931/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/465753931/twitterProfilePhoto_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@TadAllagash best thing about NYC is the talented cobblers those guys can rehab shoes like nobodys business tru artisans a dying art I think", "to_user": "TadAllagash", "to_user_id": 22148152, "to_user_id_str": "22148152", "to_user_name": "M. Phillips", "in_reply_to_status_id": 148832629867806720, "in_reply_to_status_id_str": "148832629867806721"}, +{"created_at": "Mon, 19 Dec 2011 18:33:05 +0000", "from_user": "JennyWanKenobi", "from_user_id": 70006910, "from_user_id_str": "70006910", "from_user_name": "Jenn McQuillan", "geo": null, "id": 148833244211716100, "id_str": "148833244211716096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1469777068/atstrombo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1469777068/atstrombo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@CarlieFashion Oh man, that's so crazy. You might as well just go to NYC yourself and get it!", "to_user": "CarlieFashion", "to_user_id": 126482407, "to_user_id_str": "126482407", "to_user_name": "Carlie Wong", "in_reply_to_status_id": 148676447580598270, "in_reply_to_status_id_str": "148676447580598272"}, +{"created_at": "Mon, 19 Dec 2011 18:33:04 +0000", "from_user": "VimeoJobs", "from_user_id": 426643366, "from_user_id_str": "426643366", "from_user_name": "Jobs at Vimeo", "geo": null, "id": 148833239753170940, "id_str": "148833239753170944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695305150/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695305150/profile_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@jguzmarketing but #NYC is where IT'S AT!! You haven't really lived 'till you've lived in #NewYorkCity .", "to_user": "jguzmarketing", "to_user_id": 322459511, "to_user_id_str": "322459511", "to_user_name": "jguzmarketing", "in_reply_to_status_id": 148825956709187600, "in_reply_to_status_id_str": "148825956709187585"}, +{"created_at": "Mon, 19 Dec 2011 18:33:00 +0000", "from_user": "B3dRo0m_BullY", "from_user_id": 378031622, "from_user_id_str": "378031622", "from_user_name": "TyShawn", "geo": null, "id": 148833225362505730, "id_str": "148833225362505728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1688028039/avatar_normal.JPEG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688028039/avatar_normal.JPEG", "source": "<a href="http://seesmic.com/" rel="nofollow">Seesmic</a>", "text": "Rotten Apple #NYC welcome mi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:57 +0000", "from_user": "CruiseStew", "from_user_id": 331694022, "from_user_id_str": "331694022", "from_user_name": " v\\u03B5\\u044Fifi\\u03B5d \\u044F\\u03C3\\u042A\\u0E23\\u0442\\u03B5\\u0E2B\\u03B5\\u044F ", "geo": null, "id": 148833209642270720, "id_str": "148833209642270720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692763379/tumblr_lw1rcqeswG1qc18bao1_500_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692763379/tumblr_lw1rcqeswG1qc18bao1_500_1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Woohooo!! Turn on 100.3 in NYC!! Marry The Night is on!! I love my hometown!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:51 +0000", "from_user": "LaughNYC", "from_user_id": 28601983, "from_user_id_str": "28601983", "from_user_name": "Paul Corrigan", "geo": null, "id": 148833186045108220, "id_str": "148833186045108224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1102285607/Paul-Corrigan_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1102285607/Paul-Corrigan_normal.jpg", "source": "<a href="http://www.writelonger.com" rel="nofollow">Write Longer</a>", "text": "RT @nanawidyananot: RT @LaughNYC: PLEASE RT --> http://t.co/ISD5HS71 Kindly vote for me in this contest. #funny #NYC <-- SPREAD THE WORD!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:49 +0000", "from_user": "InvadersAsylum", "from_user_id": 259860670, "from_user_id_str": "259860670", "from_user_name": "Ava(Invaders Asylum)", "geo": null, "id": 148833179434885120, "id_str": "148833179434885121", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1267170170/Invaders_Asylum_Temp_Pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1267170170/Invaders_Asylum_Temp_Pic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TomCruise: Tom answers your questions at the NYC M:I-@GhostProtocol Premiere 2night! Submit your questions w/ #MissionNYC http://t.co/8FwxLVGC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:49 +0000", "from_user": "InHandGuides", "from_user_id": 237269069, "from_user_id_str": "237269069", "from_user_name": "InHandGuides", "geo": null, "id": 148833176385622000, "id_str": "148833176385622016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1213679213/IHG_Twitter_Picture_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1213679213/IHG_Twitter_Picture_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @RyanBudhu1: Times Square at night: http://t.co/GzNlO2q2 #NewYorkology #NYC #Photography @EverythingNYC @NewYorkHabitat", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:46 +0000", "from_user": "x_kike_x", "from_user_id": 36174363, "from_user_id_str": "36174363", "from_user_name": "Lu\\u00EDs Enrique \\u03DF", "geo": null, "id": 148833167372058620, "id_str": "148833167372058624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1670165103/Me__n.n_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670165103/Me__n.n_normal.png", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @jessiejofficial: On our way to the airport!!! NYC here we commeeee!!! Wwwwooooooo!!!!! @VH1 Divas!!! @RepublicRecords @islandrecordsuk let's do this!!! :D x", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:41 +0000", "from_user": "iheartmahonex", "from_user_id": 328597936, "from_user_id_str": "328597936", "from_user_name": "\\u00A2\\u043D\\u044F\\u03B9\\u0455\\u0442\\u03B9\\u0438\\u03B1", "geo": null, "id": 148833143296761860, "id_str": "148833143296761856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685581066/Photo_on_2011-11-13_at_18.02__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685581066/Photo_on_2011-11-13_at_18.02__2_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "On my way to pick up @T_Bieber_Mahone and then off to NYC to see @AustinMahone's concert:*\\u2665", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:29 +0000", "from_user": "JanetLFalk", "from_user_id": 28583359, "from_user_id_str": "28583359", "from_user_name": "Janet L. Falk", "geo": null, "id": 148833096169553920, "id_str": "148833096169553920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/137518079/Janet_Falk_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/137518079/Janet_Falk_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@A_Grossman SOURCE #Roosevelt Island has a history of scientific innovation & research http://t.co/283eSHoj http://t.co/xtYj1GD7 #nyc", "to_user": "A_Grossman", "to_user_id": 19787735, "to_user_id_str": "19787735", "to_user_name": "Andrew Grossman", "in_reply_to_status_id": 148608283178045440, "in_reply_to_status_id_str": "148608283178045440"}, +{"created_at": "Mon, 19 Dec 2011 18:32:29 +0000", "from_user": "kdramafollower", "from_user_id": 363601958, "from_user_id_str": "363601958", "from_user_name": "Infotainment For You", "geo": null, "id": 148833095477510140, "id_str": "148833095477510144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1517328541/boa340x230_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517328541/boa340x230_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "it is best place to visit nyc (@YouTube http://t.co/TUDZL02J)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:28 +0000", "from_user": "VinNice1", "from_user_id": 74707033, "from_user_id_str": "74707033", "from_user_name": "Vinny", "geo": null, "id": 148833091518070800, "id_str": "148833091518070785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1684653080/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684653080/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "On the road.. Headed to NYC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:28 +0000", "from_user": "bibusihowyk", "from_user_id": 433339376, "from_user_id_str": "433339376", "from_user_name": "Landen Betterton", "geo": null, "id": 148833089643221000, "id_str": "148833089643220992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685583851/702_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685583851/702_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @rozyqyjom: cheap nyc car insurance http://t.co/1UWzRojU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:19 +0000", "from_user": "_nRibeiro", "from_user_id": 138799337, "from_user_id_str": "138799337", "from_user_name": "Nathan V. Ribeiro", "geo": null, "id": 148833053584801800, "id_str": "148833053584801792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687503527/DSC00927_2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687503527/DSC00927_2__normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @billboard: #Glee star @DarrenCriss played a few shows in #NYC over the weekend while in town for \"How to Succeed...\" on #Broadway http://t.co/O74cYdkY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:18 +0000", "from_user": "JeromeCleary", "from_user_id": 16807750, "from_user_id_str": "16807750", "from_user_name": "JeromeCleary", "geo": null, "id": 148833047188484100, "id_str": "148833047188484096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/274266400/IMG00107_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/274266400/IMG00107_normal.jpg", "source": "<a href="http://www.huffingtonpost.com" rel="nofollow">The Huffington Post</a>", "text": "Dan Frazer Dead: Capt. McNeil On 'Kojak' Dies In NYC http://t.co/go4Y3Dcx via @huffingtonpost", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:17 +0000", "from_user": "ani_tweets29", "from_user_id": 207437689, "from_user_id_str": "207437689", "from_user_name": "anirban chatterjee", "geo": null, "id": 148833042750898180, "id_str": "148833042750898176", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696044308/Sachin_Tendulkar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696044308/Sachin_Tendulkar_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@Rockz4ever den kolkata 2 nagpur...hv a nyc trip n u said of gettin smthn 4m kolkata remember dat? ;)", "to_user": "Rockz4ever", "to_user_id": 229360162, "to_user_id_str": "229360162", "to_user_name": "!!..upaZna..!!", "in_reply_to_status_id": 148832227214622720, "in_reply_to_status_id_str": "148832227214622721"}, +{"created_at": "Mon, 19 Dec 2011 18:32:12 +0000", "from_user": "PerformerWebnr", "from_user_id": 61354258, "from_user_id_str": "61354258", "from_user_name": "PerformerWebinar", "geo": null, "id": 148833023096389630, "id_str": "148833023096389633", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/338703479/WebinarsNing_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/338703479/WebinarsNing_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "72% OFF! Two Acting Classes w/Legendary Master Teacher, Robert Patterson @ The PattersonStudio in NYC That's $28 http://t.co/eDXcSIx6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:12 +0000", "from_user": "axisofaudio", "from_user_id": 225222094, "from_user_id_str": "225222094", "from_user_name": "Axis Of Audio", "geo": null, "id": 148833022064599040, "id_str": "148833022064599042", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1188223217/aoa-logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1188223217/aoa-logo_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Audio Perv: The String Cheese Incident 12/2 + 12/3 NYC United Palace Theater (Review) http://t.co/IUm4hezp #axisofaudio", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:12 +0000", "from_user": "hialissa", "from_user_id": 166562944, "from_user_id_str": "166562944", "from_user_name": "Alissa Joy Constable", "geo": null, "id": 148833021091516400, "id_str": "148833021091516416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1077947789/n666491053_1217693_2494_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1077947789/n666491053_1217693_2494_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@aboutBS \" NYC Awaits you!\" ... :)", "to_user": "aboutBS", "to_user_id": 98426955, "to_user_id_str": "98426955", "to_user_name": "Brigitte Serrato"}, +{"created_at": "Mon, 19 Dec 2011 18:32:11 +0000", "from_user": "PerformerTrack", "from_user_id": 20530831, "from_user_id_str": "20530831", "from_user_name": "PerformerTrack ", "geo": null, "id": 148833020328149000, "id_str": "148833020328148992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/410472881/PTlogo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/410472881/PTlogo_normal.png", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "72% OFF! Two Acting Classes w/Legendary Master Teacher, Robert Patterson @ The PattersonStudio in NYC That's $28 http://t.co/UWRw0Q6e", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:10 +0000", "from_user": "HoldonLog", "from_user_id": 185835573, "from_user_id_str": "185835573", "from_user_name": "Holdon Log", "geo": null, "id": 148833015169171460, "id_str": "148833015169171456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1115527784/HLlogoSmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1115527784/HLlogoSmall_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "72% OFF! Two Acting Classes w/Legendary Master Teacher, Robert Patterson @ The PattersonStudio in NYC That's $28 http://t.co/WUzPM3yq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:08 +0000", "from_user": "ActorNation", "from_user_id": 10912342, "from_user_id_str": "10912342", "from_user_name": "ActorNation", "geo": null, "id": 148833007229345800, "id_str": "148833007229345792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/39119382/ActorNationBanner_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/39119382/ActorNationBanner_normal.gif", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "72% OFF! Two Acting Classes w/Legendary Master Teacher, Robert Patterson @ The PattersonStudio in NYC That's $28 http://t.co/rJUf9nMc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:05 +0000", "from_user": "jozigeek", "from_user_id": 20557656, "from_user_id_str": "20557656", "from_user_name": "Jozi Girl", "geo": null, "id": 148832992364740600, "id_str": "148832992364740608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1671497794/jozigeek_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671497794/jozigeek_normal.gif", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "RT @IvoVegter: Chilling. Beautifully written. RT @EthanZ The psychological impact of Stop and Frisk in NYC: http://t.co/9Sux3O0a", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:01 +0000", "from_user": "FashionRevue", "from_user_id": 62740909, "from_user_id_str": "62740909", "from_user_name": "Doriana Grey", "geo": null, "id": 148832977252659200, "id_str": "148832977252659200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/405901778/fashionrevue_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/405901778/fashionrevue_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Interview: If Mom Only Knew's Marcus Bifaro Talks About His New LES Lounge: You may recognize Marcus Bifaro; he ... http://t.co/RmpArpzm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:58 +0000", "from_user": "elloyd5", "from_user_id": 111219250, "from_user_id_str": "111219250", "from_user_name": "erin lloyd", "geo": null, "id": 148832963063324670, "id_str": "148832963063324672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687981163/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687981163/me_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "What's up NYC, haven't seen you in a while. Good to be back.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:56 +0000", "from_user": "pharaohHQ", "from_user_id": 34772593, "from_user_id_str": "34772593", "from_user_name": "HQ", "geo": null, "id": 148832954821513200, "id_str": "148832954821513217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1641748740/HQ_profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641748740/HQ_profile_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Other guys get Skinny in nyc, i come home n get chubby. N we always on THE go", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:53 +0000", "from_user": "MagicMBA", "from_user_id": 25660679, "from_user_id_str": "25660679", "from_user_name": "Magic MBA", "geo": null, "id": 148832942884524030, "id_str": "148832942884524033", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/105864620/MBA_Admissions_JPG_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/105864620/MBA_Admissions_JPG_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#GMAT & #MBA Tip: Stanford Pulls Out of Plans for NYC Campus http://t.co/C6qF5OO3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:51 +0000", "from_user": "MMM_Cubed", "from_user_id": 84428059, "from_user_id_str": "84428059", "from_user_name": "Mike Parpart", "geo": null, "id": 148832933350875140, "id_str": "148832933350875137", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1336240747/fun_and_games_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1336240747/fun_and_games_normal.PNG", "source": "<a href="http://twitter.com/">web</a>", "text": "I more day till #NYC Making my list of all I need to eat when i get to the city. Pastrami, ChixLiver, Matzo Ball soup, Dirty water hotdog", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:39 +0000", "from_user": "noamhazan", "from_user_id": 45821379, "from_user_id_str": "45821379", "from_user_name": "Noam Hazan", "geo": null, "id": 148832884499816450, "id_str": "148832884499816449", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1430068266/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1430068266/image_normal.jpg", "source": "<a href="http://www.thefancy.com" rel="nofollow"> Fancy</a>", "text": "20 Pine Residences @ NYC http://t.co/FrE49iDL via @thefancy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:39 +0000", "from_user": "jacobmanser", "from_user_id": 29596629, "from_user_id_str": "29596629", "from_user_name": "Jacob Manser", "geo": +{"coordinates": [40.6438,-73.7829], "type": "Point"}, "id": 148832882641731600, "id_str": "148832882641731584", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1598838871/Screen_shot_2011-07-10_at_5.40.26_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598838871/Screen_shot_2011-07-10_at_5.40.26_PM_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "NYC-JFK.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:32 +0000", "from_user": "shakheerah", "from_user_id": 142633452, "from_user_id_str": "142633452", "from_user_name": "Atoyegbe Shakheerah", "geo": null, "id": 148832854250500100, "id_str": "148832854250500096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694430864/IMG05821-20111130-0823_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694430864/IMG05821-20111130-0823_normal.jpg", "source": "<a href="http://www.handmark.com" rel="nofollow">TweetCaster for iOS</a>", "text": "Sme hereRT @Ms_Banjo: Nyc to meet youRT @shakheerah: Bola shakheerah atoyegbe RT @Ms_Banjo: Who you are", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:29 +0000", "from_user": "cabtogo", "from_user_id": 80525871, "from_user_id_str": "80525871", "from_user_name": "Don Morgan", "geo": null, "id": 148832840736456700, "id_str": "148832840736456704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1616732966/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616732966/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TomCruise: Tom answers your questions at the NYC M:I-@GhostProtocol Premiere 2night! Submit your questions w/ #MissionNYC http://t.co/8FwxLVGC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:25 +0000", "from_user": "meredith610", "from_user_id": 90323675, "from_user_id_str": "90323675", "from_user_name": "meredith thompson", "geo": null, "id": 148832827310481400, "id_str": "148832827310481408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699714135/IMG_3518-1_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699714135/IMG_3518-1_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "nyc wassup?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:19 +0000", "from_user": "GreggsGift", "from_user_id": 235990961, "from_user_id_str": "235990961", "from_user_name": "Gregg's Gift", "geo": null, "id": 148832800588578800, "id_str": "148832800588578817", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1223647024/Logo_BlueBow_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1223647024/Logo_BlueBow_normal.gif", "source": "<a href="http://www.apple.com" rel="nofollow">Safari on iOS</a>", "text": "Blog: Prescription Drug Abuse Climbs in NYC\\n#prescriptiondrugepidemic #nyc http://t.co/PiDt2X93", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:14 +0000", "from_user": "MikeLovesTori", "from_user_id": 232448761, "from_user_id_str": "232448761", "from_user_name": "Mike the Victorian", "geo": null, "id": 148832778220347400, "id_str": "148832778220347392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1661799797/aviii_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661799797/aviii_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ArianaGrande How are u liking NYC? Wish i could meet ya? :( Ohio is just the worst. Although I met Vic there and that was Amazing. KBye Lol", "to_user": "ArianaGrande", "to_user_id": 34507480, "to_user_id_str": "34507480", "to_user_name": "Ariana Grande"}, +{"created_at": "Mon, 19 Dec 2011 18:31:11 +0000", "from_user": "UrbanLivingNY", "from_user_id": 258977588, "from_user_id_str": "258977588", "from_user_name": "Urban Living", "geo": null, "id": 148832767185133570, "id_str": "148832767185133569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1556588302/Picture_22_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1556588302/Picture_22_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@isardasorensen just plain beautiful! RT @rockcenternyc looks gorgeous & festive for the holidays. #NYC #christmas http://t.co/Ln7SuqZO", "to_user": "isardasorensen", "to_user_id": 19949151, "to_user_id_str": "19949151", "to_user_name": "Inga Sarda-Sorensen", "in_reply_to_status_id": 146746078690160640, "in_reply_to_status_id_str": "146746078690160640"}, +{"created_at": "Mon, 19 Dec 2011 18:31:03 +0000", "from_user": "RaisingASDKids", "from_user_id": 317872664, "from_user_id_str": "317872664", "from_user_name": "Elise Ronan ", "geo": null, "id": 148832733517451260, "id_str": "148832733517451264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679765728/b30598bc-721b-4d9a-be83-959ba170dc33_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679765728/b30598bc-721b-4d9a-be83-959ba170dc33_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Raising #Asperger's Kids: Mom's Day Out #NYC http://t.co/LhuiwQeq @addthis #parenthood #tck #specneeds #autism #disability #respite #smas", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:03 +0000", "from_user": "jobs4NYC", "from_user_id": 245224684, "from_user_id_str": "245224684", "from_user_name": "New York City jobs", "geo": null, "id": 148832732619870200, "id_str": "148832732619870209", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1230576808/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1230576808/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "CAMPAIGN DIRECTOR, Run an Environmental Campaign Right Out of College (Manhattan) http://t.co/ovq409tG #NYC #NewYork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:02 +0000", "from_user": "jobs4NYC", "from_user_id": 245224684, "from_user_id_str": "245224684", "from_user_name": "New York City jobs", "geo": null, "id": 148832730912796670, "id_str": "148832730912796672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1230576808/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1230576808/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Paid Internship Opportunities at Irving Levin Associates (Norwalk) http://t.co/ZUHQ8hsT #NYC #NewYork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:02 +0000", "from_user": "jobs4NYC", "from_user_id": 245224684, "from_user_id_str": "245224684", "from_user_name": "New York City jobs", "geo": null, "id": 148832729419616260, "id_str": "148832729419616259", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1230576808/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1230576808/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Leasing Associate (Stamford CT) http://t.co/R5ZOihku #NYC #NewYork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:01 +0000", "from_user": "jobs4NYC", "from_user_id": 245224684, "from_user_id_str": "245224684", "from_user_name": "New York City jobs", "geo": null, "id": 148832724818472960, "id_str": "148832724818472960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1230576808/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1230576808/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Vitae Restaurant Hiring All BOH Positions (Midtown) http://t.co/6To8txUV #NYC #NewYork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:00 +0000", "from_user": "s7a7a7d7", "from_user_id": 300231140, "from_user_id_str": "300231140", "from_user_name": "\\uFF33\\uFF21\\uFF33\\uFF33\\uFF26\\uFF21\\uFF2A \\u2714 ", "geo": null, "id": 148832719261020160, "id_str": "148832719261020161", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702165812/love-sayings-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702165812/love-sayings-2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @billboard: #Glee star @DarrenCriss played a few shows in #NYC over the weekend while in town for \"How to Succeed...\" on #Broadway http://t.co/O74cYdkY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:59 +0000", "from_user": "kali_johnson", "from_user_id": 262144454, "from_user_id_str": "262144454", "from_user_name": "CJohnson", "geo": null, "id": 148832718233407500, "id_str": "148832718233407488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1642749607/mom_09_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642749607/mom_09_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @LandLopers: New Post: Everything You Need to Know About Visiting the World Trade Center Memorial in NYC http://t.co/FEnoLSro #travel #lp #9/11", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:57 +0000", "from_user": "jnewsreader", "from_user_id": 50734743, "from_user_id_str": "50734743", "from_user_name": "JewPI News", "geo": null, "id": 148832707751837700, "id_str": "148832707751837697", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/282317863/jnews_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/282317863/jnews_normal.png", "source": "<a href="http://www.jewpi.com/" rel="nofollow">JewPI Bot</a>", "text": "#Israel Institute of Technology: Cornell U Wins NYC Campus Competition http://t.co/UdWlh2VD http://t.co/nFdLtIhq @vosizneias \\u24CB\\u24C4\\u24C8\\u24BE\\u24CF\\u24C3\\u24BA\\u24BE\\u24B6\\u24C8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:50 +0000", "from_user": "Danni_Wonka", "from_user_id": 222694669, "from_user_id_str": "222694669", "from_user_name": "Danni ", "geo": null, "id": 148832680224636930, "id_str": "148832680224636929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1556389475/danni_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1556389475/danni_normal.png", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "I wanna go to NYC for New Years, soooooo bad!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:50 +0000", "from_user": "CookieWagon", "from_user_id": 188380855, "from_user_id_str": "188380855", "from_user_name": "Dexter Myers Cookies", "geo": null, "id": 148832679763263500, "id_str": "148832679763263490", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1496079377/CookieWagon_JPEG_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1496079377/CookieWagon_JPEG_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Dexter Myers Cookie Wagon in NYC: 12/21-Jan 1 Cookies personally delivered wherever in NYC call: (347)948-5090 or dextermyers@gmail.com", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:47 +0000", "from_user": "MandyRaeEnvy", "from_user_id": 348859369, "from_user_id_str": "348859369", "from_user_name": "Mandy Rae R. Arroyo", "geo": null, "id": 148832667012575230, "id_str": "148832667012575232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1478603909/MandyVegas_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1478603909/MandyVegas_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "NYC! Vacation has officially started!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:41 +0000", "from_user": "eriksellgren", "from_user_id": 25807623, "from_user_id_str": "25807623", "from_user_name": "Erik Sellgren", "geo": null, "id": 148832639665709060, "id_str": "148832639665709056", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1290012589/erik7small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1290012589/erik7small_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@NinaAkestam ehmm Nina, du r\\u00E5kar inte k\\u00E4nna n\\u00E5n som ska hyra UT ett rum i NYC fr\\u00E5n Feb-Juni/Juli? Ska dit p\\u00E5 internship. Just checkin. hejr\\u00E5", "to_user": "NinaAkestam", "to_user_id": 20997946, "to_user_id_str": "20997946", "to_user_name": "Nina \\u00C5kestam"}, +{"created_at": "Mon, 19 Dec 2011 18:30:35 +0000", "from_user": "SteveAndBob", "from_user_id": 436424333, "from_user_id_str": "436424333", "from_user_name": "BullBustersRadio", "geo": null, "id": 148832614965461000, "id_str": "148832614965460993", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692321014/rightarmleftarm2_normal.jpg", "profile_image_url_https": null, "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @democracynow: Occupy Wall Street NYC marks 3-month anniversary with re-occupation attempt, dozens arrested. http://t.co/jK0sLcnw #ows", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:30 +0000", "from_user": "ZonyaMaraet", "from_user_id": 193579660, "from_user_id_str": "193579660", "from_user_name": "Zonya Maraet", "geo": null, "id": 148832595961065470, "id_str": "148832595961065472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699325590/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699325590/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @issarae: Bravo is looking for NYC based affluent AfAm couples getting married by 2/14/12 for new series on Bravo. Contact: @vpetalent", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:30 +0000", "from_user": "billboard", "from_user_id": 9695312, "from_user_id_str": "9695312", "from_user_name": "Billboard ", "geo": null, "id": 148832593251549200, "id_str": "148832593251549185", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1173827542/bb_twitter_icon._jpg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1173827542/bb_twitter_icon._jpg_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#Glee star @DarrenCriss played a few shows in #NYC over the weekend while in town for \"How to Succeed...\" on #Broadway http://t.co/O74cYdkY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:23 +0000", "from_user": "Otizzle87", "from_user_id": 223391691, "from_user_id_str": "223391691", "from_user_name": "Nii ", "geo": null, "id": 148832566789685250, "id_str": "148832566789685248", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699006237/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699006237/profile_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Nyc one RT @bonzibit: Detox will drop before Glo drops here", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:18 +0000", "from_user": "bdarfler", "from_user_id": 7356942, "from_user_id_str": "7356942", "from_user_name": "Benjamin Darfler", "geo": null, "id": 148832546396966900, "id_str": "148832546396966912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/482324479/bw-portrait_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/482324479/bw-portrait_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @CornellUpdate: Cornell Wins NYC Campus Bid, Apple Execs In TV Talks, Twitter Gets $300 ... - Fast Company http://t.co/jfoZW1M1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:16 +0000", "from_user": "vancouver_rt", "from_user_id": 173137904, "from_user_id_str": "173137904", "from_user_name": "Vancouver Retweeter", "geo": null, "id": 148832537601519600, "id_str": "148832537601519616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.pagebase.net/" rel="nofollow">PageBase.Net</a>", "text": "RT @FastFooDeliverd Fast Food Delivered in #Ottawa ! How about #Chicago #Miami #NYC #Philly #Toronto #Calgary #Winnipeg ?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:13 +0000", "from_user": "Colinmcintoshsp", "from_user_id": 370041883, "from_user_id_str": "370041883", "from_user_name": "Colinmcintosh@sports", "geo": null, "id": 148832522602692600, "id_str": "148832522602692609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1534236818/749_thumb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534236818/749_thumb_normal.jpg", "source": "<a href="http://www.instacheckin.com" rel="nofollow">Instacheckin</a>", "text": "Suspect in NYC woman's burning appears in court - The Associated Press http://t.co/bd86XLDV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:11 +0000", "from_user": "_Paulamartiins", "from_user_id": 178970269, "from_user_id_str": "178970269", "from_user_name": "LG;", "geo": null, "id": 148832516873273340, "id_str": "148832516873273344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1550529885/Lady_Gaga_tumblr_lqv6046hlq1qd95ooo1_500_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1550529885/Lady_Gaga_tumblr_lqv6046hlq1qd95ooo1_500_normal.png", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @ladygaga: Woohooo!! Turn on 100.3 in NYC!! Marry The Night is on!! I love my hometown!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:07 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148832497080340480, "id_str": "148832497080340480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @sales4NYC: #sales4u #sales Maya Bed in Espresso Finish (Free Shipping in NYC) $529 http://t.co/i5nFQz4V #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:04 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148832487185973250, "id_str": "148832487185973249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @gigs4NYC: #gigs4u #gigs College girls wanted for candid and sexy photos - Tfcd shoot (Midtown) http://t.co/rwBBkyqH #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:04 +0000", "from_user": "TimeInNYC", "from_user_id": 253915109, "from_user_id_str": "253915109", "from_user_name": "Time In New York", "geo": null, "id": 148832485839618050, "id_str": "148832485839618048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1497851931/time_in_newyork_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1497851931/time_in_newyork_normal.png", "source": "<a href="http://google.com" rel="nofollow">Time In New York</a>", "text": "#NYC The current time in New York City is 1:30 PM on Monday, 19 December 2011", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:04 +0000", "from_user": "info4NYC", "from_user_id": 434704067, "from_user_id_str": "434704067", "from_user_name": "top craigslist 4 NYC", "geo": null, "id": 148832485223038980, "id_str": "148832485223038977", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688499791/new-york-city-skyline_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @gigs4NYC: #gigs4u #gigs Hairstylists,etc, Got a hair/beauty/fashion accessory INVENTION? (Midtown East) http://t.co/PIYhq1M4 #NYC #newyork", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:35 +0000", "from_user": "JayRickey", "from_user_id": 17717512, "from_user_id_str": "17717512", "from_user_name": "Jay Rickey", "geo": null, "id": 148832363013615600, "id_str": "148832363013615616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1632577801/two_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632577801/two_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @uglservices: UGL Services represented @Roundarch in its 15,402 SF relocation. Thanks @cblNewYork! http://t.co/qcrAF9TF #CRE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:27 +0000", "from_user": "Purwa_Rawks", "from_user_id": 81351921, "from_user_id_str": "81351921", "from_user_name": "Purwa Sedana", "geo": null, "id": 148832329673084930, "id_str": "148832329673084928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1522044554/IMG0798A_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1522044554/IMG0798A_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Man Gets Prison for Bilking NYC Mayor: Political operative gets up to 4 years in prison on conviction for bilkin... http://t.co/RFfbtCO3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:32 +0000", "from_user": "JanetLFalk", "from_user_id": 28583359, "from_user_id_str": "28583359", "from_user_name": "Janet L. Falk", "geo": null, "id": 148832098801823740, "id_str": "148832098801823745", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/137518079/Janet_Falk_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/137518079/Janet_Falk_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@perezpena SOURCE #Roosevelt Island has a history of scientific innovation & research http://t.co/283eSHoj http://t.co/xtYj1GD7 #nyc", "to_user": "perezpena", "to_user_id": 28138045, "to_user_id_str": "28138045", "to_user_name": "Richard Perez-Pena", "in_reply_to_status_id": 148789188278501380, "in_reply_to_status_id_str": "148789188278501376"}, +{"created_at": "Mon, 19 Dec 2011 18:28:32 +0000", "from_user": "jimmycockface", "from_user_id": 441021142, "from_user_id_str": "441021142", "from_user_name": "Jimmy Cockface", "geo": null, "id": 148832098696962050, "id_str": "148832098696962049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "do people in nyc do blow?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:19 +0000", "from_user": "morphizm", "from_user_id": 14305673, "from_user_id_str": "14305673", "from_user_name": "Scott Thill", "geo": null, "id": 148832044754014200, "id_str": "148832044754014208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/57278556/bioshot50_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/57278556/bioshot50_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @democracynow: Occupy Wall Street NYC marks 3-month anniversary with re-occupation attempt, dozens arrested. http://t.co/jK0sLcnw #ows", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:16 +0000", "from_user": "Aw269Cornell", "from_user_id": 239851956, "from_user_id_str": "239851956", "from_user_name": "Allen Ward", "geo": null, "id": 148832032238211070, "id_str": "148832032238211073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1406740634/Allen_with_Cornell_Bear_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1406740634/Allen_with_Cornell_Bear_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @nycgov: At 2:30 PM, the Mayor will join @Cornell_Univ & @TechnionLive for an announcement about NYC\\u2019s economic future. Watch: http://t.co/GnRYcfwv.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:13 +0000", "from_user": "RegioFora_NY", "from_user_id": 224395770, "from_user_id_str": "224395770", "from_user_name": "RegioFora_NY", "geo": null, "id": 148832022037659650, "id_str": "148832022037659649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1187303709/800px-Flag_of_New_York.svg_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1187303709/800px-Flag_of_New_York.svg_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "New York Times' Sale of Regional Papers Accidentally Revealed: The New York Times' sale of\\u00A015... http://t.co/ytoQ74PV #NYC #NY #US #News", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:52 +0000", "from_user": "newyorkhoods", "from_user_id": 28167765, "from_user_id_str": "28167765", "from_user_name": "richard", "geo": null, "id": 148831679635656700, "id_str": "148831679635656706", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "2 photos new on December 19 at 11:45 a.m.: \\n 2 Photos\\n\\n \\n\\n\\n\\n\\n\\n\\n \\n \\n lanaflickr posted 2 photos to Flick... http://t.co/LLyKkaRn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:48 +0000", "from_user": "jprpublicity", "from_user_id": 20860459, "from_user_id_str": "20860459", "from_user_name": "J Public Relations", "geo": null, "id": 148831663592439800, "id_str": "148831663592439808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/79942718/JPR_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/79942718/JPR_logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "A #NYE soiree in #NYC, simultaneously swanky & a bit bawdy @BrooklynWinery! Secure a golden ticket now! http://t.co/cESWZui7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} + +, +{"created_at": "Mon, 19 Dec 2011 19:00:57 +0000", "from_user": "EnhancedLife", "from_user_id": 16588462, "from_user_id_str": "16588462", "from_user_name": "EnhancedLife", "geo": null, "id": 148840256333037570, "id_str": "148840256333037568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/62318994/ELO-nf_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/62318994/ELO-nf_normal.jpg", "source": "<a href="http://futuretweets.com" rel="nofollow"> Futuretweets V2</a>", "text": "USA December Specials http://t.co/wlXMJy5D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:56 +0000", "from_user": "FolloWmyRuleSs", "from_user_id": 105717104, "from_user_id_str": "105717104", "from_user_name": "Benjamin Harmon", "geo": null, "id": 148840255628382200, "id_str": "148840255628382208", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699079616/tumblr_lw9u7ovHSQ1qggkpgo1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699079616/tumblr_lw9u7ovHSQ1qggkpgo1_500_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Es como que en los Tigermarket me siento en USA.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:56 +0000", "from_user": "kexezofigol", "from_user_id": 409289460, "from_user_id_str": "409289460", "from_user_name": "Ardouyd Godin", "geo": null, "id": 148840254349127680, "id_str": "148840254349127680", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1632117563/1734_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632117563/1734_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @tixetuky: casino usa video http://t.co/Y4pSlC3v", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:55 +0000", "from_user": "LoveYouSelenaG", "from_user_id": 128654509, "from_user_id_str": "128654509", "from_user_name": "\\u0455\\u0454\\u2113\\u0454\\u0438\\u03B1 g\\u03C3\\u043C\\u0454z f\\u03B1\\u0438 \\u265B", "geo": null, "id": 148840248808439800, "id_str": "148840248808439808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701072571/LoveYouSelenaG_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701072571/LoveYouSelenaG_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Selena_GOMEZ_US Thank you ! :) Hmmm.... Where do you come from in USA ? :)", "to_user": "Selena_GOMEZ_US", "to_user_id": 431902884, "to_user_id_str": "431902884", "to_user_name": "Selena Marie Gomez", "in_reply_to_status_id": 148839518076809200, "in_reply_to_status_id_str": "148839518076809216"}, +{"created_at": "Mon, 19 Dec 2011 19:00:54 +0000", "from_user": "_andrea95", "from_user_id": 357196944, "from_user_id_str": "357196944", "from_user_name": "Karin Santos", "geo": null, "id": 148840246790995970, "id_str": "148840246790995968", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700743748/IMG00474-20111218-1347_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700743748/IMG00474-20111218-1347_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"Inmadurez\" es un termino que usa la gente aburrida para describir a la gente divertida !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:53 +0000", "from_user": "JUSTONEAMERICAN", "from_user_id": 38067927, "from_user_id_str": "38067927", "from_user_name": "ONEAMERICANLOOKING@U", "geo": null, "id": 148840241392918530, "id_str": "148840241392918528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1273593109/spiralwound_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273593109/spiralwound_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@edshow Ahmed in Army USA http://t.co/2YpTUk87", "to_user": "edshow", "to_user_id": 75052666, "to_user_id_str": "75052666", "to_user_name": "Ed Schultz", "in_reply_to_status_id": 148838682277855230, "in_reply_to_status_id_str": "148838682277855233"}, +{"created_at": "Mon, 19 Dec 2011 19:00:52 +0000", "from_user": "rafa_avellar", "from_user_id": 98446303, "from_user_id_str": "98446303", "from_user_name": "Rafaela Avellar", "geo": null, "id": 148840237035028480, "id_str": "148840237035028480", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1556517411/Captura_de_tela_inteira_23092011_162744.bmp_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1556517411/Captura_de_tela_inteira_23092011_162744.bmp_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @annaroquete: vou confessar que acho super charmoso menino que usa oculos. tipo, nao sempre, so as vezes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:52 +0000", "from_user": "rahulg_", "from_user_id": 257661137, "from_user_id_str": "257661137", "from_user_name": "Rahul G.", "geo": null, "id": 148840235709628400, "id_str": "148840235709628416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1319026611/Astronaut-spacewalk-460x276_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1319026611/Astronaut-spacewalk-460x276_normal.jpg", "source": "<a href="http://www.socialflow.com" rel="nofollow">SocialFlow</a>", "text": "RT @SPACEdotcom: Station Crew Set To Launch To A New Home For The Holidays http://t.co/225I3WNf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:52 +0000", "from_user": "ArchivistsRT", "from_user_id": 195187494, "from_user_id_str": "195187494", "from_user_name": "ArchivistsRoundTable", "geo": null, "id": 148840235588001800, "id_str": "148840235588001793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1131319890/n64008225840_8524_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1131319890/n64008225840_8524_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @USNatArchives: Congrats to the Text Message blog for its Archivist's Award for Outstanding Achievement. http://t.co/81NbrNYc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:52 +0000", "from_user": "TinaBMack081519", "from_user_id": 441077460, "from_user_id_str": "441077460", "from_user_name": "Tina B Mack", "geo": null, "id": 148840235218911230, "id_str": "148840235218911233", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "http://t.co/mIarYNLl Home Appliance USA Baseball Debt Garment", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:51 +0000", "from_user": "MariamLavinge", "from_user_id": 441063196, "from_user_id_str": "441063196", "from_user_name": "Mariam Lavinge", "geo": null, "id": 148840234182914050, "id_str": "148840234182914048", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702616182/Prisoner_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702616182/Prisoner_normal.jpg", "source": "<a href="http://humorgeeky.com" rel="nofollow">Humorgeeky</a>", "text": "RT @humorgeeky: Gr\\u00E1fico sobre qui\\u00E9n usa cada navegador http://t.co/Jj4CTW3M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:51 +0000", "from_user": "CachetonMaldito", "from_user_id": 88184341, "from_user_id_str": "88184341", "from_user_name": "Felipe [:", "geo": null, "id": 148840233293709300, "id_str": "148840233293709312", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670823454/felippppp_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670823454/felippppp_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @circotimia_: FELIPE USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:50 +0000", "from_user": "risca1967", "from_user_id": 14225301, "from_user_id_str": "14225301", "from_user_name": "risca1967", "geo": null, "id": 148840227702714370, "id_str": "148840227702714369", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/52281801/tiny_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/52281801/tiny_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RISCA Weblog>> REQUEST FOR QUALIFICATIONS: BI AIRPORT: BLOCK ISLAND STATE AIRPORT, RHODE ISLAND Budget: $85,000 ... http://t.co/5Ftdimda", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:49 +0000", "from_user": "FFundHeritage", "from_user_id": 25294643, "from_user_id_str": "25294643", "from_user_name": "FiremansFundHeritage", "geo": null, "id": 148840225471336450, "id_str": "148840225471336448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1417756080/137x119facebookHatSmall_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1417756080/137x119facebookHatSmall_normal.png", "source": "<a href="http://spredfast.com" rel="nofollow">Spredfast</a>", "text": "Still looking for the perfect gift? Consider the gift of preparedness: http://t.co/wbtW3Ibj via @femaregion5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:49 +0000", "from_user": "ENERGYSTARHomes", "from_user_id": 336037982, "from_user_id_str": "336037982", "from_user_name": "ENERGY STAR Homes ", "geo": null, "id": 148840224108191740, "id_str": "148840224108191746", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1455502821/Certmark_-_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1455502821/Certmark_-_copy_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Compared to standard homes, #ENERGYSTAR homes can deliver $200 to $400 in annual savings. Visit http://t.co/7VdlWOsY #EcoMonday", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:49 +0000", "from_user": "MELANIL_MR", "from_user_id": 282722033, "from_user_id_str": "282722033", "from_user_name": "MELANIL", "geo": null, "id": 148840224104001540, "id_str": "148840224104001536", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1315305712/melanil_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1315305712/melanil_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@miembarazo A algunas mujeres les salen manchas en la cara, para quitarlas usa @MELANIL_MR \\u00FAsala", "to_user": "miembarazo", "to_user_id": 115687049, "to_user_id_str": "115687049", "to_user_name": "embarazada"}, +{"created_at": "Mon, 19 Dec 2011 19:00:49 +0000", "from_user": "IrishDentists", "from_user_id": 106818915, "from_user_id_str": "106818915", "from_user_name": "Irish Dental Associ", "geo": null, "id": 148840224045281280, "id_str": "148840224045281280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/748057271/IDA_LOGO2_CMYK_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/748057271/IDA_LOGO2_CMYK_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @medlineplus: Could your #dentist someday screen you for high blood pressure, diabetes, and other diseases? http://t.co/BfTHWEGu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:50 +0000", "from_user": "malau_ladygaga", "from_user_id": 320323579, "from_user_id_str": "320323579", "from_user_name": "Little Monster\\u2713Mary\\u2661", "geo": null, "id": 148840224015912960, "id_str": "148840224015912960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698321889/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698321889/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Just Bought This At @Kipling (: At USA http://t.co/UKtNYdmI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:49 +0000", "from_user": "jicirud", "from_user_id": 434798609, "from_user_id_str": "434798609", "from_user_name": "Urmya Armin", "geo": null, "id": 148840223047041020, "id_str": "148840223047041025", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688805562/724_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688805562/724_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "loans in uk for people with bad credit http://t.co/sfF0qNQC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:48 +0000", "from_user": "zuwonytabav", "from_user_id": 419958727, "from_user_id_str": "419958727", "from_user_name": "Agariste Athridge", "geo": null, "id": 148840222208167940, "id_str": "148840222208167936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1658881306/28_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658881306/28_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @fagenib: payday loan chicago http://t.co/SfGsBtbQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:48 +0000", "from_user": "Wiranadi", "from_user_id": 199612660, "from_user_id_str": "199612660", "from_user_name": "Wiranadi Grandis E", "geo": null, "id": 148840220408823800, "id_str": "148840220408823808", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702562424/IMG_0526_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702562424/IMG_0526_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "hash y ud g usa d di rewes kalo berisik RT @MungiieLzs: hash, brisssik RT@Wiranadi :please mbk dik jangan pake majas la balesnya", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:48 +0000", "from_user": "D_L1N", "from_user_id": 40554240, "from_user_id_str": "40554240", "from_user_name": "Dennis Lin \\u2714", "geo": null, "id": 148840219234402300, "id_str": "148840219234402304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1535542437/TwitCon__5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1535542437/TwitCon__5_normal.jpg", "source": "<a href="http://www.osfoora.com" rel="nofollow">Osfoora for iPhone</a>", "text": "@DennisRodman's with @ScottiePippen @GaryPayton_20 at the 2011 USA pro-ball Legend Macau Asia tour. http://t.co/fXXN0EpQ via @YouTube", "to_user": "dennisrodman", "to_user_id": 34616510, "to_user_id_str": "34616510", "to_user_name": "Dennis Rodman"}, +{"created_at": "Mon, 19 Dec 2011 19:00:46 +0000", "from_user": "yomardito", "from_user_id": 160589943, "from_user_id_str": "160589943", "from_user_name": "No soy yomar", "geo": null, "id": 148840213119115260, "id_str": "148840213119115264", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1692138271/Kr9OB_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692138271/Kr9OB_normal.gif", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@Jackemate_ USA CONDON.", "to_user": "Jackemate_", "to_user_id": 175451401, "to_user_id_str": "175451401", "to_user_name": "Forever hago spam.", "in_reply_to_status_id": 148838912742268930, "in_reply_to_status_id_str": "148838912742268928"}, +{"created_at": "Mon, 19 Dec 2011 19:00:46 +0000", "from_user": "noticiascomjoao", "from_user_id": 192618309, "from_user_id_str": "192618309", "from_user_name": "Jo\\u00E3o Rodrigues", "geo": null, "id": 148840211705634800, "id_str": "148840211705634816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1569908866/Foto1294_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1569908866/Foto1294_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@delia2727 I from Brasil yet. But would like to viseted the USA, for practice my english,", "to_user": "delia2727", "to_user_id": 161046659, "to_user_id_str": "161046659", "to_user_name": "delia.castillos", "in_reply_to_status_id": 148839754606190600, "in_reply_to_status_id_str": "148839754606190593"}, +{"created_at": "Mon, 19 Dec 2011 19:00:46 +0000", "from_user": "stephencasemore", "from_user_id": 85849503, "from_user_id_str": "85849503", "from_user_name": "stephen N-Dublet ", "geo": null, "id": 148840211433009150, "id_str": "148840211433009152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1304693399/70761_719163595_6146078_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1304693399/70761_719163595_6146078_n_normal.jpg", "source": "<a href="http://www.twitter.com" rel="nofollow">Twitter for Windows Phone</a>", "text": "@XboxLIVErewards why is it that all VIP rewards seem to only be given to USA. I live in the UK and all I get is a t-shirt. Wack!!", "to_user": "XboxLIVErewards", "to_user_id": 384388981, "to_user_id_str": "384388981", "to_user_name": "Xbox LIVE Rewards", "in_reply_to_status_id": 148834341101895680, "in_reply_to_status_id_str": "148834341101895681"}, +{"created_at": "Mon, 19 Dec 2011 19:00:46 +0000", "from_user": "Dooug_Silva", "from_user_id": 118685589, "from_user_id_str": "118685589", "from_user_name": "Douglas Silva \\u2605", "geo": null, "id": 148840211361710080, "id_str": "148840211361710080", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1649400894/Zihvzmh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649400894/Zihvzmh_normal.jpg", "source": "<a href="http://formspring.me" rel="nofollow">formspring.me</a>", "text": "Read my response to \"vai usa branco no ano novo?\": http://t.co/EBFy90ey", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:45 +0000", "from_user": "GabiiBennington", "from_user_id": 319196861, "from_user_id_str": "319196861", "from_user_name": "Malvada -' ", "geo": null, "id": 148840207154819070, "id_str": "148840207154819072", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700382150/tumblr_lwd7hbSO8R1r43jaao1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700382150/tumblr_lwd7hbSO8R1r43jaao1_500_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@_giovannafrois pq vc usa meia? vou postar aqui pq eu uso calcinha?", "to_user": "_giovannafrois", "to_user_id": 296532730, "to_user_id_str": "296532730", "to_user_name": "eu uso meia e voc\\u00EA?", "in_reply_to_status_id": 148839920839041020, "in_reply_to_status_id_str": "148839920839041025"}, +{"created_at": "Mon, 19 Dec 2011 19:00:45 +0000", "from_user": "wmsiegel", "from_user_id": 38811752, "from_user_id_str": "38811752", "from_user_name": "Bill Siegel", "geo": null, "id": 148840206370488320, "id_str": "148840206370488320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/205927136/Bill_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/205927136/Bill_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Back in the USA! Had a great visit to Japan to see my son, and now am in Route to Colorado for the holidays. One more flight left this year", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:44 +0000", "from_user": "CDCReady", "from_user_id": 378779638, "from_user_id_str": "378779638", "from_user_name": "CDC OPHPR", "geo": null, "id": 148840203178622980, "id_str": "148840203178622977", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1567012115/CDCReady_image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1567012115/CDCReady_image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Songs about earthquakes, tornadoes and floods..OH MY! Check out our top 7 disaster songs list http://t.co/M7qNfRkx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:43 +0000", "from_user": "sarahhmoreira", "from_user_id": 194116536, "from_user_id_str": "194116536", "from_user_name": "Sarah Moreira", "geo": null, "id": 148840201135992830, "id_str": "148840201135992833", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700497686/100_5200_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700497686/100_5200_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@lucrilhosq cara, a gente da sabe onde ele mora, a historia da vida dele, tudo...ate das cor das cuecas que ele usa", "to_user": "lucrilhosq", "to_user_id": 89586426, "to_user_id_str": "89586426", "to_user_name": "BATMAN.", "in_reply_to_status_id": 148839633780871170, "in_reply_to_status_id_str": "148839633780871168"}, +{"created_at": "Mon, 19 Dec 2011 19:00:43 +0000", "from_user": "adalymarie", "from_user_id": 357845616, "from_user_id_str": "357845616", "from_user_name": "Adaly Barnett", "geo": null, "id": 148840201131802620, "id_str": "148840201131802625", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1608194534/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608194534/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@grownupbutnot: ummmm, excuse me criminal intent, but the USA network is reserved specifically for SVU #getouttahere\\u201D agreed. Wtf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:43 +0000", "from_user": "XcluFJ", "from_user_id": 100277728, "from_user_id_str": "100277728", "from_user_name": "Furcy Castellanos", "geo": null, "id": 148840199244361730, "id_str": "148840199244361728", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1503855236/TWT2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1503855236/TWT2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MarioCayetano Nadie Usa Eso Ya Por Favor =)", "to_user": "MarioCayetano", "to_user_id": 55446365, "to_user_id_str": "55446365", "to_user_name": "Mario Diaz Cayetano", "in_reply_to_status_id": 148840106873192450, "in_reply_to_status_id_str": "148840106873192449"}, +{"created_at": "Mon, 19 Dec 2011 19:00:43 +0000", "from_user": "GottaBeHoran", "from_user_id": 394771586, "from_user_id_str": "394771586", "from_user_name": "Dani Batatinha do Ni", "geo": null, "id": 148840199034650620, "id_str": "148840199034650624", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700284888/nhac_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700284888/nhac_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@directionbra USA A TAG MEEEU BrazilNeedsUpAllNightTour VAI VAI", "to_user": "directionbra", "to_user_id": 412496140, "to_user_id_str": "412496140", "to_user_name": "paula magalh\\u00E3es", "in_reply_to_status_id": 148838209349099520, "in_reply_to_status_id_str": "148838209349099520"}, +{"created_at": "Mon, 19 Dec 2011 19:00:43 +0000", "from_user": "Chiarapepe1990", "from_user_id": 436156919, "from_user_id_str": "436156919", "from_user_name": "Chiara Pepe", "geo": null, "id": 148840198309019650, "id_str": "148840198309019649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702614980/543_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702614980/543_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NASA - Hubble Serves Up a Holiday Snow Angel - http://t.co/6ineoHv8 (via @NASA)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:43 +0000", "from_user": "bobfox321", "from_user_id": 15577097, "from_user_id_str": "15577097", "from_user_name": "Bob Foy", "geo": null, "id": 148840197348528130, "id_str": "148840197348528129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1536780486/GodCountry_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1536780486/GodCountry_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "OWS in Florida managed by Islamic CAIR attorney? http://t.co/NMXJGY7Y", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:41 +0000", "from_user": "Thayna__Gaby", "from_user_id": 302761440, "from_user_id_str": "302761440", "from_user_name": "Thayn\\u00E1 Gabrielle", "geo": null, "id": 148840190096584700, "id_str": "148840190096584704", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1631098097/Foto0195_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631098097/Foto0195_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Me pergunte qualquer coisa. - \\u203A 1. Altura? 2. Peso? 3. Voc\\u00EA fuma? 4. Voc\\u00EA bebe? 5. Usa/j\\u00E1 usou drogas? 6.... http://t.co/JIXUJWO3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:41 +0000", "from_user": "GSA_ITS", "from_user_id": 78030096, "from_user_id_str": "78030096", "from_user_name": "GSA ITS", "geo": null, "id": 148840189899444220, "id_str": "148840189899444224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/483192602/gsaimg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/483192602/gsaimg_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Need computer systems and hardware? http://t.co/lVn8Eglo - check on the categories/SINs to search #gsa #computer #itschedule70", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:41 +0000", "from_user": "AghataSalles_", "from_user_id": 314072398, "from_user_id_str": "314072398", "from_user_name": ". Deiixa Ela Pass\\u00C1 \\u266A", "geo": null, "id": 148840189404524540, "id_str": "148840189404524544", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679075976/syhefanniiy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679075976/syhefanniiy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "N\\u00E3o prescisa falar, usa essa boca so pra me beijar \\u266A\\u266B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:40 +0000", "from_user": "_MaraB", "from_user_id": 248937506, "from_user_id_str": "248937506", "from_user_name": "Mara Barreto.", "geo": null, "id": 148840188242694140, "id_str": "148840188242694145", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1659774102/marab_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659774102/marab_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @seunomecu: Marina: Usa mais photoshop que Geyse Arruda posando nua.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:40 +0000", "from_user": "jennifer_dubow", "from_user_id": 17251562, "from_user_id_str": "17251562", "from_user_name": "Jennifer D. Dubow", "geo": null, "id": 148840185818382340, "id_str": "148840185818382336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/323074821/IMG_0309_1_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/323074821/IMG_0309_1_1_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "USA Today explores how \"Are Americans crazy for treating our pets like kids?\" http://t.co/DFzBDI54 > guilty as charged!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:40 +0000", "from_user": "DuuuMartins", "from_user_id": 437130646, "from_user_id_str": "437130646", "from_user_name": "Maria Eduarda", "geo": null, "id": 148840185185058800, "id_str": "148840185185058816", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702612428/mee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702612428/mee_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Hj ningu\\u00E9m mais usa orkut, s\\u00F3 facebook :T", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:39 +0000", "from_user": "facuniggli", "from_user_id": 176189857, "from_user_id_str": "176189857", "from_user_name": "Facundo Niggli", "geo": null, "id": 148840184492986370, "id_str": "148840184492986368", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1582582694/efdfdfgsdgd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1582582694/efdfdfgsdgd_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Fefo_River parlantes parlantes boca usa parlantes, ay ya te vieron, ay ay ya te vieron jajaja ese era #AiSeEuTePegoDeCancha", "to_user": "Fefo_River", "to_user_id": 336960855, "to_user_id_str": "336960855", "to_user_name": "Federico Fenochio", "in_reply_to_status_id": 148839661643636740, "in_reply_to_status_id_str": "148839661643636736"}, +{"created_at": "Mon, 19 Dec 2011 19:00:39 +0000", "from_user": "famedate", "from_user_id": 411740967, "from_user_id_str": "411740967", "from_user_name": "Famedate", "geo": null, "id": 148840183045963780, "id_str": "148840183045963776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1690317864/fdlogotemp_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690317864/fdlogotemp_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Sex With Your Ex -- The New Monogamy http://t.co/rGC1wme2 http://t.co/XQQVR6Ss", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:39 +0000", "from_user": "wihycocoza", "from_user_id": 433650742, "from_user_id_str": "433650742", "from_user_name": "Abila Morcombe", "geo": null, "id": 148840182861406200, "id_str": "148840182861406209", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685884396/1206_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685884396/1206_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @quvexacapeq: mercury insurance group auto warranty http://t.co/LWihb3gd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:39 +0000", "from_user": "ErNeSrg", "from_user_id": 220987355, "from_user_id_str": "220987355", "from_user_name": "Ernesto Rodr\\u00EDguez", "geo": null, "id": 148840181942849540, "id_str": "148840181942849537", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1528341345/IMG0003A_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1528341345/IMG0003A_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Aprendizaje continuo y b\\u00FAsqueda de interacci\\u00F3n,claves en la estrategia digital de las compa\\u00F1\\u00EDas USA http://t.co/8Ek8wlem v\\u00EDa @Humannova #in", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:38 +0000", "from_user": "gabipiaz", "from_user_id": 56892991, "from_user_id_str": "56892991", "from_user_name": "Gabrielle Piaz", "geo": null, "id": 148840180256751600, "id_str": "148840180256751617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1630556856/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630556856/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @cassianoborges: @Real_Liam_Payne @Harry_Styles @Louis_Tomlinson @NiallOfficial @zaynmalik U HAVE FANS OUTSIDE UK AND USA ! ;) BrazilNeedsUpAllNightTour", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:38 +0000", "from_user": "lu_deschamps", "from_user_id": 98673432, "from_user_id_str": "98673432", "from_user_name": "Luiza Deschamps", "geo": null, "id": 148840178008592400, "id_str": "148840178008592386", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1601387016/aCC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601387016/aCC_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @vailablink182: vai la ficar reclamando quando o Tom usa toquinha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:37 +0000", "from_user": "huff_john", "from_user_id": 408586064, "from_user_id_str": "408586064", "from_user_name": "John Huff", "geo": null, "id": 148840174003044350, "id_str": "148840174003044352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1630625584/P0005547_edited_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630625584/P0005547_edited_normal.JPG", "source": "<a href="http://www.weather-display.com/files.php" rel="nofollow">Weather Display</a>", "text": "Current Weather in Pittsburg, NH USA at -- Time 2:00 PM, 12/19/11, temp 26.1, humidity 77 pct, win", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:37 +0000", "from_user": "MuravnickPender", "from_user_id": 439509454, "from_user_id_str": "439509454", "from_user_name": "Muravnick Pendergast", "geo": null, "id": 148840172602142720, "id_str": "148840172602142721", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": null, "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "http://t.co/q1oir3LZ USA Profession Stock Nuclear Technology", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:36 +0000", "from_user": "BradleyHospital", "from_user_id": 31889093, "from_user_id_str": "31889093", "from_user_name": "BradleyHosp/Nancy", "geo": null, "id": 148840168709832700, "id_str": "148840168709832706", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1115880530/551fae0e-db4b-4530-ba29-9da140c225ad_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1115880530/551fae0e-db4b-4530-ba29-9da140c225ad_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Shocking and sad: 1 in 4 young Americans has an arrest record by age 18. http://t.co/KeHs1DG6 #crime #youngadults", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:35 +0000", "from_user": "icebean87", "from_user_id": 208090491, "from_user_id_str": "208090491", "from_user_name": "Jo-Lynn Jansen", "geo": null, "id": 148840164108681200, "id_str": "148840164108681216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1324936737/Lot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1324936737/Lot_normal.jpg", "source": "<a href="http://twuffer.com" rel="nofollow">Twuffer</a>", "text": "Fall prevention checklist makes it easy for #caregiver to secure the home http://t.co/6dz5Luj6 #safety #seniors", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:33 +0000", "from_user": "FHI360SATELLIFE", "from_user_id": 79003390, "from_user_id_str": "79003390", "from_user_name": "FHI360 - SATELLIFE", "geo": null, "id": 148840157917872130, "id_str": "148840157917872128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702614523/fhi360satellife_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702614523/fhi360satellife_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@TandFRef Spousal #communication about #HIV prevention in #Kenya http://t.co/gv6N37RR via @ncbi_pubmed", "to_user": "TandFRef", "to_user_id": 36094221, "to_user_id_str": "36094221", "to_user_name": "Taylor and Francis"}, +{"created_at": "Mon, 19 Dec 2011 19:00:33 +0000", "from_user": "ka_payaso", "from_user_id": 333865457, "from_user_id_str": "333865457", "from_user_name": "\\u304B\\u3063\\u3057\\u30FC", "geo": null, "id": 148840157053853700, "id_str": "148840157053853696", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1567726845/DSCN1047-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1567726845/DSCN1047-2_normal.jpg", "source": "<a href="http://janetter.net/" rel="nofollow">Janetter</a>", "text": "\\u4ECA\\u5E74\\u306E\\u5927\\u6666\\u65E5\\u306F\\u30B2\\u30FC\\u30E0\\u30BB\\u30F3\\u30BF\\u30FCCX in USA\\u3092\\u898B\\u3066\\u904E\\u3054\\u3057\\u305D\\u3046\\u3060\\u306Aw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:32 +0000", "from_user": "Josetequiere", "from_user_id": 314694238, "from_user_id_str": "314694238", "from_user_name": "Fuckencio Diaz", "geo": null, "id": 148840155036393470, "id_str": "148840155036393472", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700834034/ssss_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700834034/ssss_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Jackemate_: JOS\\u00C9 USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:32 +0000", "from_user": "gedufyz", "from_user_id": 433484703, "from_user_id_str": "433484703", "from_user_name": "Farkhunda Calbert", "geo": null, "id": 148840153241235460, "id_str": "148840153241235456", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685352343/1050_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685352343/1050_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @rokyxuboxe: auto insurance calculator usa http://t.co/J8WJxTWP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:32 +0000", "from_user": "TNWXMAN", "from_user_id": 115981127, "from_user_id_str": "115981127", "from_user_name": "TN WXMAN", "geo": null, "id": 148840152733724670, "id_str": "148840152733724672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://www.weather-display.com/files.php" rel="nofollow">Weather Display</a>", "text": "Lebanon, TN USA weather data 13:00 55.0°F 49 pct 1.9 mph S%20%23wdisplay", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:31 +0000", "from_user": "iRojo_", "from_user_id": 187004823, "from_user_id_str": "187004823", "from_user_name": "Franklin Alberto \\u2714", "geo": null, "id": 148840150967910400, "id_str": "148840150967910400", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668836027/asd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668836027/asd_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Preparada para el sexo nasal RT @_Adicta : TU EL QUE LEE ESTE TWEET USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:31 +0000", "from_user": "davidshepardson", "from_user_id": 26283307, "from_user_id_str": "26283307", "from_user_name": "David Shepardson", "geo": null, "id": 148840150779179000, "id_str": "148840150779179008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/202644841/n650203102_2079561_8492-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/202644841/n650203102_2079561_8492-1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Watch Meryl Streep sing part of \"See the USA in your Chevrolet\" on 60 Minutes http://t.co/VQzNaWMI)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:30 +0000", "from_user": "mojydab", "from_user_id": 419165540, "from_user_id_str": "419165540", "from_user_name": "Qayshaun Doyle", "geo": null, "id": 148840144756150270, "id_str": "148840144756150273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1656998616/22_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656998616/22_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @cavatasiq: starter loans direct ctr http://t.co/3rOsiHUP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:29 +0000", "from_user": "MemphisRSSFeed", "from_user_id": 81096242, "from_user_id_str": "81096242", "from_user_name": "Memphis News", "geo": null, "id": 148840141140668400, "id_str": "148840141140668417", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1110400013/icon-75x75_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1110400013/icon-75x75_normal.png", "source": "<a href="http://rssmemphis.com" rel="nofollow">rssmemphis</a>", "text": "Will Barton Earns Second-Straight C-USA Player Of The Week Honor (http://t.co/Shc6VHWf) #memphis #news", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:29 +0000", "from_user": "televisionLQH", "from_user_id": 399229060, "from_user_id_str": "399229060", "from_user_name": "televisionLQH", "geo": null, "id": 148840139693625340, "id_str": "148840139693625345", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1610251202/1319753584_amazon-warehouse-deals-tv-and-video_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610251202/1319753584_amazon-warehouse-deals-tv-and-video_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "75% off: http://t.co/ukfb7mBZ Complete Guide to Bed & Breakfasts, Inns & Guesthouses in the USA, Canada & Worldwide", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:29 +0000", "from_user": "knmkkashi_bot", "from_user_id": 114988791, "from_user_id_str": "114988791", "from_user_name": "knmkkashi_bot", "geo": null, "id": 148840139064483840, "id_str": "148840139064483840", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/700988724/B000VDFGB4.09.LZZZZZZZ_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/700988724/B000VDFGB4.09.LZZZZZZZ_1__normal.jpg", "source": "<a href="http://twittbot.net/" rel="nofollow">twittbot.net</a>", "text": "\\u541B\\u306F\\u3044\\u3064\\u3067\\u3082\\u601D\\u3044\\u306E\\u307E\\u307E\\u306B \\u3088\\u304F\\u558B\\u308B\\u306E\\u306F\\u4F55\\u3067\\u3060\\u308D\\u3046\\uFF1F [\\u3075\\u308C\\u3042\\u3044USA]", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:28 +0000", "from_user": "_Adicta", "from_user_id": 123965194, "from_user_id_str": "123965194", "from_user_name": "La que hace spam.", "geo": null, "id": 148840137948803070, "id_str": "148840137948803072", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "\\u00BFCREES QUE ESTOY LOCA? USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:28 +0000", "from_user": "PrDinho", "from_user_id": 194179546, "from_user_id_str": "194179546", "from_user_name": "PR. Dinho", "geo": null, "id": 148840137835556860, "id_str": "148840137835556865", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1173096696/986497a4-a75c-48b8-8a44-426011fcbcdd_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1173096696/986497a4-a75c-48b8-8a44-426011fcbcdd_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "essa \\u00E9 pra vc @juuartuzi :) crente gremista n\\u00E3o acredita em papai noel porque ele usa um uniforme ''colorado'' #LLOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:28 +0000", "from_user": "radiookapi", "from_user_id": 75229951, "from_user_id_str": "75229951", "from_user_name": "Radio Okapi", "geo": null, "id": 148840135067320320, "id_str": "148840135067320320", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/422161198/avatar-ro_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/422161198/avatar-ro_normal.gif", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Pr\\u00E9sidentielle-RDC: sit-in des femmes de l\\u2019opposition devant l\\u2019ambassade des USA \\u00E0 Kinshasa http://t.co/GoF09A2e", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:27 +0000", "from_user": "fucklondonbitch", "from_user_id": 441069613, "from_user_id_str": "441069613", "from_user_name": "porra meigostoso.", "geo": null, "id": 148840132022255600, "id_str": "148840132022255616", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702583321/247268_110328409058915_100002452708695_98734_1256841_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702583321/247268_110328409058915_100002452708695_98734_1256841_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "n\\u00E3o vou seguir a @_SantanaBiia porque ela n\\u00E3o usa TUITER", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:26 +0000", "from_user": "Morena_jonas22", "from_user_id": 299810087, "from_user_id_str": "299810087", "from_user_name": "Gisele Jonas", "geo": null, "id": 148840130097061900, "id_str": "148840130097061888", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1678089551/Gisele_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678089551/Gisele_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@Wesley_duloko Mudava so q eu qr vc seja corinthiano pra nois usa camiseta iguais kkk", "to_user": "Wesley_duloko", "to_user_id": 399044157, "to_user_id_str": "399044157", "to_user_name": "Weslei Santos~Duloko", "in_reply_to_status_id": 148839006854053900, "in_reply_to_status_id_str": "148839006854053888"}, +{"created_at": "Mon, 19 Dec 2011 19:00:26 +0000", "from_user": "maira_prebil", "from_user_id": 387745093, "from_user_id_str": "387745093", "from_user_name": "maira prebil \\u0950", "geo": null, "id": 148840128830386180, "id_str": "148840128830386176", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697127312/Foto1138_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697127312/Foto1138_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Vo leva meu vestido na costureira pra mim usa no natal *O*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:26 +0000", "from_user": "baduell", "from_user_id": 109771969, "from_user_id_str": "109771969", "from_user_name": "Manuel Ledezma", "geo": null, "id": 148840128297697280, "id_str": "148840128297697282", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1683362619/twit2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683362619/twit2_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Nelly Furtado esta regalando Macbook's Black!!!!!! Fuck quiero vivir en USA!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:26 +0000", "from_user": "ReanGrenon07131", "from_user_id": 412570550, "from_user_id_str": "412570550", "from_user_name": "Rean Grenon", "geo": null, "id": 148840126812917760, "id_str": "148840126812917760", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "http://t.co/aGn66fTn Paris USA Jimmy Kimmel Live Engineer", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:26 +0000", "from_user": "gabyfigueras", "from_user_id": 293169214, "from_user_id_str": "293169214", "from_user_name": "GaBrieLa FiGuErA S.", "geo": null, "id": 148840126099890180, "id_str": "148840126099890177", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1575553795/317678_2252639028887_1035607717_2614849_677427878_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575553795/317678_2252639028887_1035607717_2614849_677427878_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Hombre q c respeta no usa franela de perry ni bob esponja", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:25 +0000", "from_user": "bea_hp", "from_user_id": 228926907, "from_user_id_str": "228926907", "from_user_name": "hp \\u00F1 de harry potter", "geo": null, "id": 148840123084177400, "id_str": "148840123084177408", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1626402987/IMG00004__2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626402987/IMG00004__2__normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Photo: Quando precisei de um lugar para pendurar meu cora\\u00E7\\u00E3o, voc\\u00EA estava l\\u00E1 para us\\u00E1-lo desde o in\\u00EDcio e... http://t.co/BRjJT3Dy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:25 +0000", "from_user": "FC_GusttavoL_PB", "from_user_id": 346873684, "from_user_id_str": "346873684", "from_user_name": "PB do GL Zayama \\u2714", "geo": null, "id": 148840122496978940, "id_str": "148840122496978945", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1595483943/PQAAAAy8AZY-L-jR-TymcBlEwZJGCDbjS3E45A9UyDkWcp9LSJ43vZJkG6cNVm-ilO2rpWnIvtHTA2eoGNYfdLFKxhcAm1T1UPnSUUvmgX4NkCYuQyvQiWiK87ti_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1595483943/PQAAAAy8AZY-L-jR-TymcBlEwZJGCDbjS3E45A9UyDkWcp9LSJ43vZJkG6cNVm-ilO2rpWnIvtHTA2eoGNYfdLFKxhcAm1T1UPnSUUvmgX4NkCYuQyvQiWiK87ti_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @GLAmorEterno_PB: Pra falarem que o guh mudou temos que olhar pra gente tambem:ninguem mais usa as tags #familiaGL mudou muito!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:24 +0000", "from_user": "federalchange", "from_user_id": 199048355, "from_user_id_str": "199048355", "from_user_name": "Civil Service Change", "geo": null, "id": 148840121364529150, "id_str": "148840121364529152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1468960673/smiley_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1468960673/smiley_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @arizonacandi: Must reads for govies: State of Federal Web Report http://t.co/114iddBz & Clay Johnson's blog http://t.co/J9gX8Axw #dotgov #opengov", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:24 +0000", "from_user": "kakahtavares", "from_user_id": 289130967, "from_user_id_str": "289130967", "from_user_name": "kakah tavares", "geo": null, "id": 148840121217720320, "id_str": "148840121217720320", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668824223/hello_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668824223/hello_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Meu Face usa dorgas!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:24 +0000", "from_user": "UpasnaGautam", "from_user_id": 120226908, "from_user_id_str": "120226908", "from_user_name": "Upasna Gautam", "geo": null, "id": 148840120999616500, "id_str": "148840120999616512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1260020919/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1260020919/twitter_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @MSU_Basketball: #Spartans move up to No. 19 in AP Top 25 and No. 20 in ESPN/USA Today Coaches Poll.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:24 +0000", "from_user": "My_Ass_", "from_user_id": 125162594, "from_user_id_str": "125162594", "from_user_name": "luiiiiiz", "geo": null, "id": 148840119913283600, "id_str": "148840119913283586", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691158928/Imagem_017_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691158928/Imagem_017_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "o fdp usa orkut! ta falando oqe?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:23 +0000", "from_user": "_jujujux", "from_user_id": 199956426, "from_user_id_str": "199956426", "from_user_name": "JULIANNA", "geo": null, "id": 148840116792729600, "id_str": "148840116792729600", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1674317297/BOOK_JULIANA_ROSA_ENSAIO_STUDIO_26_11_2011_ARQ_MATRIZ__13__normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674317297/BOOK_JULIANA_ROSA_ENSAIO_STUDIO_26_11_2011_ARQ_MATRIZ__13__normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "eu preciso levar a s\\u00E9rio meu aparelho e usa-lo seriamente. . dinheiro n\\u00E3o cai do c\\u00E9u e nem do chuveiro ;X", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:23 +0000", "from_user": "LaVinylProd", "from_user_id": 395074963, "from_user_id_str": "395074963", "from_user_name": "LaVinylProducciones", "geo": null, "id": 148840115177914370, "id_str": "148840115177914368", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1598864397/la_vinyl2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598864397/la_vinyl2_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Snow Patrol: ac\\u00FAstico en los estudios de Rolling Stone (USA)... http://t.co/uxNQeLeQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:23 +0000", "from_user": "Ragiiee", "from_user_id": 394095276, "from_user_id_str": "394095276", "from_user_name": "Ragnield", "geo": null, "id": 148840114905292800, "id_str": "148840114905292800", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1652648531/IMG_0450_1__normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652648531/IMG_0450_1__normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "3 days :O USA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:23 +0000", "from_user": "LEMAGAZINEEVER", "from_user_id": 47594750, "from_user_id_str": "47594750", "from_user_name": "EVER MAGAZINE", "geo": null, "id": 148840113881878530, "id_str": "148840113881878528", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1142961986/EVER-glossy_social_NEG_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1142961986/EVER-glossy_social_NEG_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#Iran : #USA et #Europe tentent de maintenir l'\\u00E9quilibre alors que l'embargo sur l'#Iran se pr\\u00E9cise. http://t.co/AnnOfYtS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:22 +0000", "from_user": "Lodging_mobi", "from_user_id": 287440249, "from_user_id_str": "287440249", "from_user_name": "Lodging.mobi", "geo": null, "id": 148840112095117300, "id_str": "148840112095117312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1324208297/twitterlogo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1324208297/twitterlogo_normal.png", "source": "<a href="http://lodging.mobi" rel="nofollow">lodging.mobi</a>", "text": "Stay in Plano, TX, USA for as low as 43.99 USD. http://t.co/kaORQke6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:22 +0000", "from_user": "laurasantini7", "from_user_id": 172942908, "from_user_id_str": "172942908", "from_user_name": "Laura Santini", "geo": null, "id": 148840111587594240, "id_str": "148840111587594241", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701491676/IMG01888-20111218-1059_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701491676/IMG01888-20111218-1059_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Acabo de descubrir que el vocalista de A Rocket To The Moon usa auto-tune :( que importa, a\\u00FAn lo amo.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:22 +0000", "from_user": "ECourtneyPrice", "from_user_id": 50834423, "from_user_id_str": "50834423", "from_user_name": "Courtney Price", "geo": null, "id": 148840111356919800, "id_str": "148840111356919810", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/874522676/Courtney_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/874522676/Courtney_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Former USA Today publisher to buy Denver Weekly, sister papers. Sharing the news with @andybechtel and @rtburg. http://t.co/ZG7iTu3v", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:21 +0000", "from_user": "GiovannaCazar", "from_user_id": 154404361, "from_user_id_str": "154404361", "from_user_name": "Giovanna Cazar ", "geo": null, "id": 148840108836134900, "id_str": "148840108836134912", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1162893454/Imagen_243_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1162893454/Imagen_243_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:21 +0000", "from_user": "PortlandPoker", "from_user_id": 112880510, "from_user_id_str": "112880510", "from_user_name": "Portland Poker", "geo": +{"coordinates": [45.5193,-122.6188], "type": "Point"}, "id": 148840106554441730, "id_str": "148840106554441728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1355267883/portland_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1355267883/portland_normal.jpg", "source": "<a href="http://www.thepokeratlas.com/city/portland-or-usa/547/" rel="nofollow">The Poker Atlas Portland</a>", "text": "2:00 PM @ Aces Players Club $25 No-Limit Hold'em Re-Buy Poker Tournament http://t.co/t6aLRLST", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:20 +0000", "from_user": "Dima_Khatib", "from_user_id": 201712702, "from_user_id_str": "201712702", "from_user_name": "Dima Khatib \\u0623\\u0646\\u0627 \\u062F\\u064A\\u0645\\u0629", "geo": null, "id": 148840103375147000, "id_str": "148840103375147008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1435714172/5921224165_ab4a585931_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1435714172/5921224165_ab4a585931_o_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@zlando :) well.. nuclear is nuclear though. I do not defend NK horrible regime but it did not use nukes, USA did ! @thisisKhaledM", "to_user": "zlando", "to_user_id": 37919483, "to_user_id_str": "37919483", "to_user_name": "Zvi Lando", "in_reply_to_status_id": 148838590166745100, "in_reply_to_status_id_str": "148838590166745088"}, +{"created_at": "Mon, 19 Dec 2011 19:00:20 +0000", "from_user": "circotimia_", "from_user_id": 221610474, "from_user_id_str": "221610474", "from_user_name": "M a i t e\\u10E6. ", "geo": null, "id": 148840101701632000, "id_str": "148840101701632000", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698350821/jjo__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698350821/jjo__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "FELIPE USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:19 +0000", "from_user": "MadisonGroupon", "from_user_id": 338419160, "from_user_id_str": "338419160", "from_user_name": "Madison", "geo": null, "id": 148840100606914560, "id_str": "148840100606914560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1551706553/293233_108245025949533_100002921095285_57941_1474190669_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1551706553/293233_108245025949533_100002921095285_57941_1474190669_n_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @GrouponPortland: Help provide meals for school children affected by the famine in the Horn of Africa: http://t.co/EQLpJvZ8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:19 +0000", "from_user": "UncleTacoMan", "from_user_id": 188240446, "from_user_id_str": "188240446", "from_user_name": "Juan ", "geo": null, "id": 148840098639781900, "id_str": "148840098639781889", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1667357332/3fdf43db-a557-407e-8a04-630283e013c7_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667357332/3fdf43db-a557-407e-8a04-630283e013c7_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @foodsafetygov: ALLERGY ALERT: Whipped #Topping Due to #Milk Distributed in #OH #MD #NY #IN #PA #MI http://t.co/mounxjjX #foodsafety #allergyalert", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:19 +0000", "from_user": "JanaCalil", "from_user_id": 226742603, "from_user_id_str": "226742603", "from_user_name": "Jana\\u00EDna T Calil", "geo": null, "id": 148840098107113470, "id_str": "148840098107113472", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1190789048/_DSC7867_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1190789048/_DSC7867_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @um_virgem: N\\u00E3o confio em quem usa pochete.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:18 +0000", "from_user": "forever_Dede", "from_user_id": 112735119, "from_user_id_str": "112735119", "from_user_name": "s\\u00F3 da Jane", "geo": null, "id": 148840095288537100, "id_str": "148840095288537088", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702144911/1256831610384_f_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702144911/1256831610384_f_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@lipstick_manaus ps\\u00E9 meu padrasto nem usa tipo ?????????????????? se fosse minha", "to_user": "lipstick_manaus", "to_user_id": 188772969, "to_user_id_str": "188772969", "to_user_name": "Rosinha L\\u00E2n B\\u00E9r", "in_reply_to_status_id": 148839852937461760, "in_reply_to_status_id_str": "148839852937461760"}, +{"created_at": "Mon, 19 Dec 2011 19:00:18 +0000", "from_user": "EmilyCBoyd", "from_user_id": 130862999, "from_user_id_str": "130862999", "from_user_name": "Emily Boyd", "geo": null, "id": 148840093875052540, "id_str": "148840093875052545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1673259440/c6d3e6e9-e43b-4c8e-8916-843f73a6682d_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673259440/c6d3e6e9-e43b-4c8e-8916-843f73a6682d_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Groupon: Help provide meals for school children affected by the famine in the Horn of Africa: http://t.co/wEkhlQH7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:18 +0000", "from_user": "MsRosanel", "from_user_id": 232159702, "from_user_id_str": "232159702", "from_user_name": "MsRosanel", "geo": null, "id": 148840093682118660, "id_str": "148840093682118656", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1661005705/Rosanel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661005705/Rosanel_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Todavia se usa el traje azul marino con botones dorados? #digoleyo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:18 +0000", "from_user": "robert_2410", "from_user_id": 145492505, "from_user_id_str": "145492505", "from_user_name": "robet ortiz", "geo": null, "id": 148840092834869250, "id_str": "148840092834869250", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701967392/IMG00186-20111218-1218_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701967392/IMG00186-20111218-1218_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Ya no se Usa vIsitar la novia a la casa, a hora es en la cava\\u00F1a", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:17 +0000", "from_user": "waltonc906", "from_user_id": 236562852, "from_user_id_str": "236562852", "from_user_name": "Heather MOLINA", "geo": null, "id": 148840090507030530, "id_str": "148840090507030529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1212211380/1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1212211380/1_normal.jpg", "source": "<a href="http://ping.fm/" rel="nofollow">Ping.fm</a>", "text": "http://t.co/XTiIP13w: Sainsbury's Travel Money Launches Online Service - http://t.co/0CxCASDO - http://t.co/xoBIkfgh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:16 +0000", "from_user": "colonelb", "from_user_id": 14336780, "from_user_id_str": "14336780", "from_user_name": "David Britten", "geo": null, "id": 148840087566815230, "id_str": "148840087566815233", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1504060769/Britten_2009_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1504060769/Britten_2009_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @mathteacher1729: Brilliant compare / contrast of USA Vs. Finland education systems: http://t.co/U1YRFz2W #edchat #edpolicy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:16 +0000", "from_user": "ColinLawton", "from_user_id": 404684538, "from_user_id_str": "404684538", "from_user_name": "Colin Lawton ", "geo": null, "id": 148840086845403140, "id_str": "148840086845403136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1621771912/me_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621771912/me_1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SpecialKBrook anychance of a rt to a fellow yorkshire lad , i watched your usa debut it was excellent good show", "to_user": "SpecialKBrook", "to_user_id": 314591606, "to_user_id_str": "314591606", "to_user_name": "Kell Brook"}, +{"created_at": "Mon, 19 Dec 2011 19:00:16 +0000", "from_user": "ay1432", "from_user_id": 394835681, "from_user_id_str": "394835681", "from_user_name": "AboEbrahim", "geo": null, "id": 148840084676943870, "id_str": "148840084676943872", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @qallafm: \\u0635\\u0648\\u0631\\u0629 \\u0634\\u0631\\u0637\\u064A \\u064A\\u0631\\u0641\\u0639 \\u0639\\u0635\\u0627\\u0647 \\u0644\\u064A\\u0636\\u0631\\u0628 \\u0627\\u0645\\u0631\\u0623\\u0629 \\u0628\\u062D\\u0631\\u064A\\u0646\\u064A\\u0629 #Bahrain #Arabspring #Egypt #Libya #Tunisia #Yemen #Kuwait #KSA #USA #UK #UN http://t.co/ic7uRc5V", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:15 +0000", "from_user": "PortlandPoker", "from_user_id": 112880510, "from_user_id_str": "112880510", "from_user_name": "Portland Poker", "geo": +{"coordinates": [45.5193,-122.6188], "type": "Point"}, "id": 148840083561259000, "id_str": "148840083561259009", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1355267883/portland_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1355267883/portland_normal.jpg", "source": "<a href="http://www.thepokeratlas.com/city/portland-or-usa/547/" rel="nofollow">The Poker Atlas Portland</a>", "text": "2:00 PM @ Encore Club $25 NL Hold'em Poker Tournament $400 Guarantee @EncorePoker http://t.co/t6aLRLST", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 19:00:16 +0000", "from_user": "ColinLawton", "from_user_id": 404684538, "from_user_id_str": "404684538", "from_user_name": "Colin Lawton ", "geo": null, "id": 148840086845403140, "id_str": "148840086845403136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1621771912/me_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621771912/me_1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SpecialKBrook anychance of a rt to a fellow yorkshire lad , i watched your usa debut it was excellent good show", "to_user": "SpecialKBrook", "to_user_id": 314591606, "to_user_id_str": "314591606", "to_user_name": "Kell Brook"}, +{"created_at": "Mon, 19 Dec 2011 19:00:16 +0000", "from_user": "ay1432", "from_user_id": 394835681, "from_user_id_str": "394835681", "from_user_name": "AboEbrahim", "geo": null, "id": 148840084676943870, "id_str": "148840084676943872", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @qallafm: \\u0635\\u0648\\u0631\\u0629 \\u0634\\u0631\\u0637\\u064A \\u064A\\u0631\\u0641\\u0639 \\u0639\\u0635\\u0627\\u0647 \\u0644\\u064A\\u0636\\u0631\\u0628 \\u0627\\u0645\\u0631\\u0623\\u0629 \\u0628\\u062D\\u0631\\u064A\\u0646\\u064A\\u0629 #Bahrain #Arabspring #Egypt #Libya #Tunisia #Yemen #Kuwait #KSA #USA #UK #UN http://t.co/ic7uRc5V", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:15 +0000", "from_user": "PortlandPoker", "from_user_id": 112880510, "from_user_id_str": "112880510", "from_user_name": "Portland Poker", "geo": +{"coordinates": [45.5193,-122.6188], "type": "Point"}, "id": 148840083561259000, "id_str": "148840083561259009", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1355267883/portland_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1355267883/portland_normal.jpg", "source": "<a href="http://www.thepokeratlas.com/city/portland-or-usa/547/" rel="nofollow">The Poker Atlas Portland</a>", "text": "2:00 PM @ Encore Club $25 NL Hold'em Poker Tournament $400 Guarantee @EncorePoker http://t.co/t6aLRLST", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:15 +0000", "from_user": "Louisesilva_", "from_user_id": 235227879, "from_user_id_str": "235227879", "from_user_name": "Uma ruiva :9", "geo": null, "id": 148840082453962750, "id_str": "148840082453962753", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1595722560/AAA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1595722560/AAA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @LeonardoPedran: \"Imposs\\u00EDvel \\u00E9 uma palavra muito grande que gente pequena usa pra tentar te oprimir\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:14 +0000", "from_user": "AndreaMessiass", "from_user_id": 144997365, "from_user_id_str": "144997365", "from_user_name": "Andr\\u00E9a Messias ", "geo": null, "id": 148840079304048640, "id_str": "148840079304048640", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1673874632/PQAAAPPYXBe-8XHfozi_nGOAEhkXXWOehQwSlj2HHc__wEJWteCJWtP1by0pjSJOi-xv-m8W1TFb28-u2JqTNQLWhEkAm1T1UFEG-a_LAwsf7d18KAuIcIx8kHBs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673874632/PQAAAPPYXBe-8XHfozi_nGOAEhkXXWOehQwSlj2HHc__wEJWteCJWtP1by0pjSJOi-xv-m8W1TFb28-u2JqTNQLWhEkAm1T1UFEG-a_LAwsf7d18KAuIcIx8kHBs_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@renatinhagta Sim ele usa este nome mas por tr\\u00E1s deste nominho e desta fotinha existe um homem, que quer comer as menininhas #Corram", "to_user": "renatinhagta", "to_user_id": 340657530, "to_user_id_str": "340657530", "to_user_name": "Renata", "in_reply_to_status_id": 148839432601092100, "in_reply_to_status_id_str": "148839432601092097"}, +{"created_at": "Mon, 19 Dec 2011 19:00:14 +0000", "from_user": "A7raREskan3ali", "from_user_id": 370566827, "from_user_id_str": "370566827", "from_user_name": "14feb-bh", "geo": null, "id": 148840077798277120, "id_str": "148840077798277122", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1684721242/_E2_80_A2_5D_CC_B6_CC_A0_CC_84_20_E2_99_A1_C3_9F_C3_BC_20_D0_BD_CF_85_D1_95_D1_95_C4_B1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684721242/_E2_80_A2_5D_CC_B6_CC_A0_CC_84_20_E2_99_A1_C3_9F_C3_BC_20_D0_BD_CF_85_D1_95_D1_95_C4_B1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @JalilaFreedom: Kindly sign the petition that will b sent to to #UN S. G regarding #bahrain #teachers http://t.co/4Ud0aj9Q #freeabudeeb #unions #UK #USA #EU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:14 +0000", "from_user": "neginoxol", "from_user_id": 433410245, "from_user_id_str": "433410245", "from_user_name": "Gillian Cosgriff", "geo": null, "id": 148840077349494800, "id_str": "148840077349494784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685150099/33_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685150099/33_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @luqesuraro: provincial loan http://t.co/JknHiSoD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:13 +0000", "from_user": "wardie7uk", "from_user_id": 334631914, "from_user_id_str": "334631914", "from_user_name": "Claire Ward", "geo": null, "id": 148840075462062080, "id_str": "148840075462062080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1648622269/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648622269/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Just had a king rib supper!! USA you are missing out!! http://t.co/nzS67s93", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:13 +0000", "from_user": "mojtma_politic", "from_user_id": 402446831, "from_user_id_str": "402446831", "from_user_name": "mojtma_politic", "geo": null, "id": 148840075231363070, "id_str": "148840075231363073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1620721493/mujtama_pol_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620721493/mujtama_pol_normal.png", "source": "<a href="http://ibraheiem.net/fr7" rel="nofollow">mojtma_politic</a>", "text": "U.S. foreign aid escapes slashing cuts in fiscal 2012 http://t.co/85PUAldK [reuters]", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:13 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148840074564472830, "id_str": "148840074564472833", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "USA COND\\u00D3N!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:13 +0000", "from_user": "yen4real", "from_user_id": 254800064, "from_user_id_str": "254800064", "from_user_name": "MadamYeni\\u2122", "geo": null, "id": 148840073629155330, "id_str": "148840073629155329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1593863316/IMG00149-20110828-1433_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593863316/IMG00149-20110828-1433_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Rome \"@TWEETORACLE: The HQ of the #PORN industry in USA is ________?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:13 +0000", "from_user": "emilianoJordan", "from_user_id": 102268827, "from_user_id_str": "102268827", "from_user_name": "Emiliano Jordan", "geo": null, "id": 148840072110817280, "id_str": "148840072110817280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1184511365/P3090090-150x150_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1184511365/P3090090-150x150_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @mathowie: @rapha_n_america \"made in USA\" isn't about quality, but supporting local infrastructure and economies, carbon footprints.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:12 +0000", "from_user": "CougarsandCo", "from_user_id": 111047042, "from_user_id_str": "111047042", "from_user_name": "Miss Cougar", "geo": null, "id": 148840070831550460, "id_str": "148840070831550464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1384683510/Netko035-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1384683510/Netko035-2_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "USA Today: The dating game changes after 40 http://t.co/NOL59qDU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:12 +0000", "from_user": "Bones0311", "from_user_id": 47461281, "from_user_id_str": "47461281", "from_user_name": "Chris Bodiford", "geo": null, "id": 148840070034624500, "id_str": "148840070034624513", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1498505478/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1498505478/image_normal.jpg", "source": "<a href="http://www.myyearbook.com/" rel="nofollow">myYearbook Share</a>", "text": "It seems like every time a big monster comes to the USA they go straight to NYC: http://t.co/d3JzQYOt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:12 +0000", "from_user": "DavidJVerdin", "from_user_id": 77125998, "from_user_id_str": "77125998", "from_user_name": "David Jimenez Verdin", "geo": +{"coordinates": [19.4391,-99.2012], "type": "Point"}, "id": 148840069841694720, "id_str": "148840069841694720", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685524632/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685524632/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@VictorOkie @jesus787 en USA soy 12 y aqu\\u00ED en M\\u00E9xico soy 10", "to_user": "VictorOkie", "to_user_id": 142569723, "to_user_id_str": "142569723", "to_user_name": "Victor Okie"}, +{"created_at": "Mon, 19 Dec 2011 19:00:12 +0000", "from_user": "databaselists", "from_user_id": 426061930, "from_user_id_str": "426061930", "from_user_name": "Databaseangel", "geo": null, "id": 148840068675670000, "id_str": "148840068675670016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691655129/logo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691655129/logo_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Database Angel proudly presents the most recent updated USA Business Database. \\t\\nhttp://t.co/E0G34i82", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:12 +0000", "from_user": "BIF_FAIRS", "from_user_id": 147552780, "from_user_id_str": "147552780", "from_user_name": "BIF FAIRS ", "geo": null, "id": 148840068453384200, "id_str": "148840068453384192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1599777786/Bif_TWITTER_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599777786/Bif_TWITTER_normal.jpg", "source": "<a href="http://www.bif-fairs.com" rel="nofollow">BIF FAIRS</a>", "text": "[NEW] #fairs Wilmington gun show USA Ohio - WILMINGTON from: 2012-08-11 to: 2012-08-12 http://t.co/l9p5hWUM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:12 +0000", "from_user": "newsrtus", "from_user_id": 286018686, "from_user_id_str": "286018686", "from_user_name": "newsrtus", "geo": null, "id": 148840068323352580, "id_str": "148840068323352576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Pick it up! http://t.co/yPFeCZGe #usa #usnews", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:11 +0000", "from_user": "LuiPtel", "from_user_id": 34455053, "from_user_id_str": "34455053", "from_user_name": "LuiPtel", "geo": null, "id": 148840067207659520, "id_str": "148840067207659520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701108492/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701108492/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "I'm gonna move out of the USA! Shits cray out here!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:11 +0000", "from_user": "journalismjobs", "from_user_id": 3941241, "from_user_id_str": "3941241", "from_user_name": "Journalism.co.uk", "geo": null, "id": 148840066616274940, "id_str": "148840066616274946", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1158720507/twitter_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1158720507/twitter_avatar_normal.png", "source": "<a href="http://feedsquish.berlios.de/" rel="nofollow">FeedSquish</a>", "text": "[USA] Staff Writer http://t.co/JvRyPW6J #journalism #jobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:11 +0000", "from_user": "JUSTONEAMERICAN", "from_user_id": 38067927, "from_user_id_str": "38067927", "from_user_name": "ONEAMERICANLOOKING@U", "geo": null, "id": 148840065857097730, "id_str": "148840065857097728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1273593109/spiralwound_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273593109/spiralwound_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@markknoller Ahmed in Army USA http://t.co/2YpTUk87", "to_user": "markknoller", "to_user_id": 31127446, "to_user_id_str": "31127446", "to_user_name": "Mark Knoller", "in_reply_to_status_id": 148838834287812600, "in_reply_to_status_id_str": "148838834287812609"}, +{"created_at": "Mon, 19 Dec 2011 19:00:11 +0000", "from_user": "RadioFreiesD", "from_user_id": 19142432, "from_user_id_str": "19142432", "from_user_name": "GLR", "geo": null, "id": 148840064032587780, "id_str": "148840064032587777", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1385660366/rr_logo__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1385660366/rr_logo__normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Hartgeld (USA): [19:15] Ob die da oben damit ihrer Macht erhalten k\\u00F6nnen? Internierungslager werden vorbereitet http://t.co/5ewLG3Ts", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:10 +0000", "from_user": "BIF_FAIRS", "from_user_id": 147552780, "from_user_id_str": "147552780", "from_user_name": "BIF FAIRS ", "geo": null, "id": 148840062942056450, "id_str": "148840062942056448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1599777786/Bif_TWITTER_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599777786/Bif_TWITTER_normal.jpg", "source": "<a href="http://www.bif-fairs.com" rel="nofollow">BIF FAIRS</a>", "text": "[NEW] #fairs Wilmington gun show USA Ohio - WILMINGTON from: 2012-01-21 to: 2012-01-22 http://t.co/Zizyy7GG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:10 +0000", "from_user": "lauraurora", "from_user_id": 74755306, "from_user_id_str": "74755306", "from_user_name": "Laura Peticolas", "geo": null, "id": 148840060815548400, "id_str": "148840060815548416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1295259118/508664main_spicule-466_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1295259118/508664main_spicule-466_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@geosteph: New AA for NASA Science Mission Directorate- John Grunsfeld http://t.co/CXZ2hnih\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:10 +0000", "from_user": "VazNaty", "from_user_id": 440028152, "from_user_id_str": "440028152", "from_user_name": "Natalia Vaz", "geo": null, "id": 148840060530339840, "id_str": "148840060530339840", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702585281/vodkaaaa_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702585281/vodkaaaa_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Acho que meu nome deveria ser Havaianas, porque todo mundo usa.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:10 +0000", "from_user": "Nefer79_", "from_user_id": 403915800, "from_user_id_str": "403915800", "from_user_name": " C.M.", "geo": null, "id": 148840058970050560, "id_str": "148840058970050560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698759635/Foto0374__AA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698759635/Foto0374__AA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@tommy2chips In Italy it's 8pm now,6hrs forward to east coast of USA.", "to_user": "tommy2chips", "to_user_id": 273138776, "to_user_id_str": "273138776", "to_user_name": "Thomas M.Lee III", "in_reply_to_status_id": 148824030261153800, "in_reply_to_status_id_str": "148824030261153792"}, +{"created_at": "Mon, 19 Dec 2011 19:00:09 +0000", "from_user": "hutegewa", "from_user_id": 432102351, "from_user_id_str": "432102351", "from_user_name": "Dirk Hinstock", "geo": null, "id": 148840058647093250, "id_str": "148840058647093250", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683407499/15_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683407499/15_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @tyjadykupac: auto insurance white rock bc http://t.co/C60IUGxV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:09 +0000", "from_user": "BIF_FAIRS", "from_user_id": 147552780, "from_user_id_str": "147552780", "from_user_name": "BIF FAIRS ", "geo": null, "id": 148840057506246660, "id_str": "148840057506246656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1599777786/Bif_TWITTER_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599777786/Bif_TWITTER_normal.jpg", "source": "<a href="http://www.bif-fairs.com" rel="nofollow">BIF FAIRS</a>", "text": "[NEW] #fairs Roanoke gun show USA Virginia - ROANOKE from: 2012-10-27 to: 2012-10-28 http://t.co/ESLdaHNt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:09 +0000", "from_user": "bethmcmillen", "from_user_id": 22173446, "from_user_id_str": "22173446", "from_user_name": "Beth McMillen", "geo": null, "id": 148840057246195700, "id_str": "148840057246195712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1435700070/rendall_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1435700070/rendall_small_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @StateDept: #SecClinton delivers remarks on Women, Peace and Security at 2:30 PM EST today: http://t.co/UC8ntoKO | More: http://t.co/7R3W0rtE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:09 +0000", "from_user": "pedrovanzella", "from_user_id": 14456192, "from_user_id_str": "14456192", "from_user_name": "Pedro Vanzella", "geo": null, "id": 148840055979520000, "id_str": "148840055979520001", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693033123/cd68d86e266a11e1a87612313804ec91_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693033123/cd68d86e266a11e1a87612313804ec91_7_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@princessmiwi que bizarro. Aqui ele s\\u00F3 usa um monte de RAM, mas\\u2026 http://t.co/LezolOTA", "to_user": "princessmiwi", "to_user_id": 16988941, "to_user_id_str": "16988941", "to_user_name": "princessmiwi", "in_reply_to_status_id": 148839882582802430, "in_reply_to_status_id_str": "148839882582802432"}, +{"created_at": "Mon, 19 Dec 2011 19:00:08 +0000", "from_user": "_RGustavo", "from_user_id": 131874321, "from_user_id_str": "131874321", "from_user_name": "Rodolfo Gustavo ", "geo": null, "id": 148840053530042370, "id_str": "148840053530042368", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1676017863/.Avatar._normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676017863/.Avatar._normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@HospiciioLS vai se lasca de fazeer bg pq ele s\\u00F3 usa jaqueta preta e azul nos show '-'", "to_user": "HospiciioLS", "to_user_id": 129934483, "to_user_id_str": "129934483", "to_user_name": "\\u2665 Hospiciio LS \\u00AE", "in_reply_to_status_id": 148839667108814850, "in_reply_to_status_id_str": "148839667108814849"}, +{"created_at": "Mon, 19 Dec 2011 19:00:08 +0000", "from_user": "BIF_FAIRS", "from_user_id": 147552780, "from_user_id_str": "147552780", "from_user_name": "BIF FAIRS ", "geo": null, "id": 148840052221427700, "id_str": "148840052221427712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1599777786/Bif_TWITTER_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599777786/Bif_TWITTER_normal.jpg", "source": "<a href="http://www.bif-fairs.com" rel="nofollow">BIF FAIRS</a>", "text": "[NEW] #fairs Roanoke gun show USA Virginia - ROANOKE from: 2012-08-18 to: 2012-08-19 http://t.co/JMBHdqSP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:08 +0000", "from_user": "NYSaavyDiscount", "from_user_id": 405314534, "from_user_id_str": "405314534", "from_user_name": "NY Saavy Discounts", "geo": null, "id": 148840051026034700, "id_str": "148840051026034688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1623165302/4351973592_4e3a41abc8_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1623165302/4351973592_4e3a41abc8_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Price Shopping specials, Crazy Dining Deals, and new specials every day at over 70% off http://t.co/8o1P5jnT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:07 +0000", "from_user": "miihalana", "from_user_id": 165866984, "from_user_id_str": "165866984", "from_user_name": "\\u3164.\\u3164 \\u223F\\u3164mirthys\\u0251\\u0142\\u0251n\\u0251", "geo": null, "id": 148840049507704830, "id_str": "148840049507704833", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687531976/Foto-0282_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687531976/Foto-0282_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Me pergunte qualquer coisa. - \\u203A 1. Altura? \\u203A \\u203A 2. Peso? \\u203A 3. Voc\\u00EA fuma? 4. Voc\\u00EA bebe? 5. Usa/j\\u00E1 usou drogas?... http://t.co/PJoaFGoR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:07 +0000", "from_user": "Webconomist", "from_user_id": 2371401, "from_user_id_str": "2371401", "from_user_name": "Giles Crouch", "geo": null, "id": 148840049453170700, "id_str": "148840049453170688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1220106802/Screen_shot_2011-01-19_at_2.17.40_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1220106802/Screen_shot_2011-01-19_at_2.17.40_PM_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @usembassyottawa: #US & #Canada scientists explor #Arctic waters in extended continental shelf research partnership http://t.co/GeA9l7pX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:07 +0000", "from_user": "shop_bell", "from_user_id": 208111539, "from_user_id_str": "208111539", "from_user_name": "\\u30B7\\u30E7\\u30C3\\u30D7\\u30D9\\u30EB", "geo": null, "id": 148840048652070900, "id_str": "148840048652070913", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1461953481/bell_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1461953481/bell_normal.gif", "source": "<a href="http://www.shop-bell.com/" rel="nofollow">\\u30B7\\u30E7\\u30C3\\u30D7\\u30D9\\u30EB\\u66F4\\u65B0\\u60C5\\u5831</a>", "text": "\\u5168\\u5546\\u54C1\\uFF11\\uFF10%\\u5F15\\u304D\\u3001\\uFF19\\uFF18\\uFF10\\uFF10\\u5186\\u4EE5\\u4E0A\\u9001\\u6599\\u7121\\u6599\\u3002 e-\\u5922usa\\u3067\\u306F\\u30B8\\u30A7\\u30EB\\u30CD\\u30A4\\u30EB\\u3001\\u30DE\\u30CB\\u30AD\\u30E5\\u30A2\\u3001\\u30CD\\u30A4\\u30EB\\u30B1\\u30A2\\u306A\\u30699000\\u54C1\\u4EE5\\u4E0A\\u306E\\u5546\\u54C1\\u3092\\u53D6\\u308A\\u63C3\\u3048\\u3066\\u304A\\u308A\\u307E\\u3059\\u3002\\u4E16\\u754C\\uFF14\\uFF10\\u30F5\\u56FD\\u3067\\u8CA9\\u58F2\\u3057\\u3066\\u3044\\u308B\\u30A2\\u30E1\\u30EA\\u30AB\\u3067\\u65E5\\u7CFB\\u6700\\u5927\\u306E\\u30CD\\u30A4\\u30EB\\u901A\\u8CA9\\u30B7\\u30E7\\u30C3\\u30D7\\u3067\\u3059\\u3002\\u30B3\\u30B9\\u30E1\\u3001\\u30CD\\u30A4\\u30EB #\\u30CD\\u30A4\\u30EB http://t.co/EVq3zJRx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:07 +0000", "from_user": "MalikTravis", "from_user_id": 321553838, "from_user_id_str": "321553838", "from_user_name": "Sir.Travis", "geo": null, "id": 148840046521368580, "id_str": "148840046521368577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1656292959/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656292959/image_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @MacTrast: T-Mobile USA begins adding iPhone-ready 3G to their network, may be preparing to offer the iPhone http://t.co/hz227wBM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:06 +0000", "from_user": "BIF_FAIRS", "from_user_id": 147552780, "from_user_id_str": "147552780", "from_user_name": "BIF FAIRS ", "geo": null, "id": 148840046148059140, "id_str": "148840046148059136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1599777786/Bif_TWITTER_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599777786/Bif_TWITTER_normal.jpg", "source": "<a href="http://www.bif-fairs.com" rel="nofollow">BIF FAIRS</a>", "text": "[NEW] #fairs Roanoke gun show USA Virginia - ROANOKE from: 2012-03-17 to: 2012-03-18 http://t.co/D9kmkyhm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:06 +0000", "from_user": "bworley", "from_user_id": 14749486, "from_user_id_str": "14749486", "from_user_name": "becky worley", "geo": null, "id": 148840045846085630, "id_str": "148840045846085633", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1384999843/facebook_profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1384999843/facebook_profile_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @MacTrast: T-Mobile USA begins adding iPhone-ready 3G to their network, may be preparing to offer the iPhone http://t.co/hz227wBM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:06 +0000", "from_user": "OSScar", "from_user_id": 2215331, "from_user_id_str": "2215331", "from_user_name": "OSScar", "geo": null, "id": 148840044931723260, "id_str": "148840044931723264", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694742740/28100_392002547263_536837263_3754621_3360757_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694742740/28100_392002547263_536837263_3754621_3360757_n_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@AlexArrojo no tengo un ordenador cerca ahora, si compras en USA en shipment o al finalizar el proceso de compra", "to_user": "AlexArrojo", "to_user_id": 217071732, "to_user_id_str": "217071732", "to_user_name": "\\u00C1lex", "in_reply_to_status_id": 148839723136319500, "in_reply_to_status_id_str": "148839723136319489"}, +{"created_at": "Mon, 19 Dec 2011 19:00:06 +0000", "from_user": "BiaPollyane", "from_user_id": 246412476, "from_user_id_str": "246412476", "from_user_name": "Beatriz da Saay .", "geo": null, "id": 148840044495519740, "id_str": "148840044495519746", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1610652612/Foto-0032_e1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610652612/Foto-0032_e1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ESSESGAYS: \"como vc pode gostar de tatuagem e alargador? que coisa feia\" disse a pessoa que gosta de funk usa shortinho de 5cm e tem piercing no umbigo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:06 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148840043325300740, "id_str": "148840043325300736", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "BETO USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:06 +0000", "from_user": "adrrian17", "from_user_id": 153017897, "from_user_id_str": "153017897", "from_user_name": "Adrian Ayala", "geo": null, "id": 148840042998140930, "id_str": "148840042998140928", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1535263627/200212_10150165760310250_595460249_8653645_5104196_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1535263627/200212_10150165760310250_595460249_8653645_5104196_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:05 +0000", "from_user": "BihSerapicos", "from_user_id": 131086935, "from_user_id_str": "131086935", "from_user_name": "Gabriela Serapicos ", "geo": null, "id": 148840041265889280, "id_str": "148840041265889281", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1646167267/226327_1636936657000_1644243134_1197038_6198307_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646167267/226327_1636936657000_1644243134_1197038_6198307_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Depois que vc usa o Ipad para jogos, o seu Iphone vira um mini-game. FATO!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:05 +0000", "from_user": "BIF_FAIRS", "from_user_id": 147552780, "from_user_id_str": "147552780", "from_user_name": "BIF FAIRS ", "geo": null, "id": 148840040703852540, "id_str": "148840040703852544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1599777786/Bif_TWITTER_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599777786/Bif_TWITTER_normal.jpg", "source": "<a href="http://www.bif-fairs.com" rel="nofollow">BIF FAIRS</a>", "text": "[NEW] #fairs Roanoke gun show USA Virginia - ROANOKE from: 2011-12-31 to: 2012-01-01 http://t.co/nKiDICUE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:05 +0000", "from_user": "SarahsRealLife", "from_user_id": 218632015, "from_user_id_str": "218632015", "from_user_name": "Sarah Chapman", "geo": null, "id": 148840040510926850, "id_str": "148840040510926849", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1647266470/SarahsRealLife_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647266470/SarahsRealLife_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @MoonLV: Witness unparalleled views of the #NYE2012 fireworks w/ Miss Nevada USA @SarahsRealLife at @ghostbarLV 12/31 http://t.co/K6SWsA1E", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:05 +0000", "from_user": "latoniaidsvilla", "from_user_id": 305842659, "from_user_id_str": "305842659", "from_user_name": "Latonia Villanueva", "geo": null, "id": 148840039189708800, "id_str": "148840039189708800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695225341/imagesCA53E30D_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695225341/imagesCA53E30D_normal", "source": "<a href="http://aircompressorpaintball.com" rel="nofollow">aircompressorpaintballdotcom</a>", "text": "What Is The Best Price For Ironman G-Ironman Reflective Vest (Neon Yellow) Wholesale USA http://t.co/ZL2E7rwZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:04 +0000", "from_user": "AgeoUfe", "from_user_id": 441069431, "from_user_id_str": "441069431", "from_user_name": "juanka rosales ", "geo": null, "id": 148840036614414340, "id_str": "148840036614414336", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702578071/310521_10150513025818504_624973503_11667654_1509042212_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702578071/310521_10150513025818504_624973503_11667654_1509042212_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "como se usa esto? *O*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:04 +0000", "from_user": "napaulacrl", "from_user_id": 245453523, "from_user_id_str": "245453523", "from_user_name": "a napaula", "geo": null, "id": 148840036513759230, "id_str": "148840036513759232", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702321450/PQAAAG1Apmva53JWQilO_SeIc8ZpAFaxCr21m7Fd7AdcJAwwualsemr2XxsEy4JIxdpy3aDClZE15VX03JBhS-5V3nIAm1T1UKTQanIC4n2baJA0l6VRxNFC-KF-_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702321450/PQAAAG1Apmva53JWQilO_SeIc8ZpAFaxCr21m7Fd7AdcJAwwualsemr2XxsEy4JIxdpy3aDClZE15VX03JBhS-5V3nIAm1T1UKTQanIC4n2baJA0l6VRxNFC-KF-_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "A\\u00ED voc\\u00EA usa uma folha como mouse pad", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:04 +0000", "from_user": "MyGorgeousSwift", "from_user_id": 191472665, "from_user_id_str": "191472665", "from_user_name": "Taylor Owns My Heart", "geo": null, "id": 148840036434059260, "id_str": "148840036434059264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700794236/2C1htglV_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700794236/2C1htglV_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Swiftlogy: #Swiftlogy Taylor finished Speak Now tour in the USA with two sold out concerts at Madison Square Garden!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:04 +0000", "from_user": "sukywanunid", "from_user_id": 434293988, "from_user_id_str": "434293988", "from_user_name": "Luwanna Hamblin", "geo": null, "id": 148840035804917760, "id_str": "148840035804917760", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687391268/240_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687391268/240_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "florida payday loan consolidation lender http://t.co/eEkCsPUH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:04 +0000", "from_user": "SaahFG", "from_user_id": 263784947, "from_user_id_str": "263784947", "from_user_name": "Sabrina Fernandes ", "geo": null, "id": 148840035611983870, "id_str": "148840035611983874", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1610828761/27-10-11_123455_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610828761/27-10-11_123455_normal.jpg", "source": "<a href="http://formspring.me" rel="nofollow">formspring.me</a>", "text": "Read my response to \"Usa muito \\u00F3culos de sol ?\": http://t.co/b8Oreifn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:04 +0000", "from_user": "BIF_FAIRS", "from_user_id": 147552780, "from_user_id_str": "147552780", "from_user_name": "BIF FAIRS ", "geo": null, "id": 148840035196731400, "id_str": "148840035196731392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1599777786/Bif_TWITTER_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599777786/Bif_TWITTER_normal.jpg", "source": "<a href="http://www.bif-fairs.com" rel="nofollow">BIF FAIRS</a>", "text": "[NEW] #fairs THE ERIE GUN SHOW USA Pennsylvania - ERIE from: 2012-12-29 to: 2012-12-30 http://t.co/nHo9cHp0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:04 +0000", "from_user": "garukys", "from_user_id": 434269635, "from_user_id_str": "434269635", "from_user_name": "Yerushalayim Blease", "geo": null, "id": 148840034706001920, "id_str": "148840034706001921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687472497/1692_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687472497/1692_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "no credit financing http://t.co/WXgwinQQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:04 +0000", "from_user": "DeniseDavenpor1", "from_user_id": 359918883, "from_user_id_str": "359918883", "from_user_name": "DeniseDavenport", "geo": null, "id": 148840033795842050, "id_str": "148840033795842049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1508026934/195731_114250430692_6478727_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1508026934/195731_114250430692_6478727_n_normal.jpg", "source": "<a href="http://www.instacheckin.com" rel="nofollow">Instacheckin</a>", "text": "Despite Southwest blizzard, hope of white Christmas fades for much of US - Christian Science Monitor http://t.co/C6dtvyL0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:03 +0000", "from_user": "Alberto_Dalia", "from_user_id": 96228401, "from_user_id_str": "96228401", "from_user_name": "Alberto Dalia", "geo": null, "id": 148840030771740670, "id_str": "148840030771740672", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702238341/ddd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702238341/ddd_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u00BFHablando serio? usa mi dedo para tu satisfacci\\u00F3n personal y espiritual.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:03 +0000", "from_user": "FansMessiAguero", "from_user_id": 414966762, "from_user_id_str": "414966762", "from_user_name": "Lionel y Sergio \\u2661", "geo": null, "id": 148840029698015230, "id_str": "148840029698015233", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700417548/tumblr_luerc0pRvh1qcbx26o4_250_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700417548/tumblr_luerc0pRvh1qcbx26o4_250_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Bueno, no se como se usa la Twitcam!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:02 +0000", "from_user": "Renego_Jobs_US", "from_user_id": 164762924, "from_user_id_str": "164762924", "from_user_name": "Renego USA", "geo": null, "id": 148840029123383300, "id_str": "148840029123383297", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1069737667/renego_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1069737667/renego_twitter_normal.png", "source": "<a href="http://jobs.renego.com" rel="nofollow">jobs.renego.com API</a>", "text": "#jobs #careers #Franklin Software Engineer 2 (USA) http://t.co/0gl14e5i", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:02 +0000", "from_user": "LestatVI", "from_user_id": 368025493, "from_user_id_str": "368025493", "from_user_name": "David", "geo": null, "id": 148840028041248770, "id_str": "148840028041248769", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1528924918/AIOROS_1.1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1528924918/AIOROS_1.1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ESTEFANIESPIN si solo fuese ese pensamiento seria bueno, lo malo es q la gente q usa armas, no piensa asi matan con ellas y no les interesa", "to_user": "ESTEFANIESPIN", "to_user_id": 128937967, "to_user_id_str": "128937967", "to_user_name": "Est\\u00E9fani Esp\\u00EDn ", "in_reply_to_status_id": 148729051526344700, "in_reply_to_status_id_str": "148729051526344704"}, +{"created_at": "Mon, 19 Dec 2011 19:00:02 +0000", "from_user": "the_cee_tee", "from_user_id": 82449933, "from_user_id_str": "82449933", "from_user_name": "Chris Thomas", "geo": null, "id": 148840027617640450, "id_str": "148840027617640448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/471129003/iphone_083-1_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/471129003/iphone_083-1_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@AVogel75 We're not the ones that thought Lil Kim was dead. #USA #Aimhigh", "to_user": "AVogel75", "to_user_id": 14895579, "to_user_id_str": "14895579", "to_user_name": "AVogel75", "in_reply_to_status_id": 148838889426128900, "in_reply_to_status_id_str": "148838889426128896"}, +{"created_at": "Mon, 19 Dec 2011 19:00:02 +0000", "from_user": "Yeah_Matea_Club", "from_user_id": 243311351, "from_user_id_str": "243311351", "from_user_name": "Fans D Pepe Aguilar ", "geo": null, "id": 148840025700843520, "id_str": "148840025700843520", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1531886712/0eeac0f6-96aa-4675-9d46-e7c8a9ff1a4c_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1531886712/0eeac0f6-96aa-4675-9d46-e7c8a9ff1a4c_normal.png", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @corazondefan: Participa con nosotros y dinos cu\\u00E1l ha sido tu mejor navidad usa HT #mimejornavidad", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:00 +0000", "from_user": "newsrtus", "from_user_id": 286018686, "from_user_id_str": "286018686", "from_user_name": "newsrtus", "geo": null, "id": 148840020814467070, "id_str": "148840020814467073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Iraq Seeks Arrest of Sunni Vice President for Terrorism http://t.co/kU4qtEaw #usa #usnews", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:00 +0000", "from_user": "iHeartBiebs_xx", "from_user_id": 256207494, "from_user_id_str": "256207494", "from_user_name": "Essie\\u2665", "geo": null, "id": 148840019635879940, "id_str": "148840019635879937", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1660756454/379355914_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660756454/379355914_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "EVERYONE needs to vote for @ItsMelanieAmaro in the X Factor USA Finals this week! She needs us! #TeamAmaro <3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:00 +0000", "from_user": "xclairesunshine", "from_user_id": 235156504, "from_user_id_str": "235156504", "from_user_name": "merry christmas. \\u03DF", "geo": null, "id": 148840019489075200, "id_str": "148840019489075200", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691638018/niall_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691638018/niall_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/5pEvhZrI ma come minchia si usa?\\u00B0-\\u00B0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:00 +0000", "from_user": "gabizagoo", "from_user_id": 239582041, "from_user_id_str": "239582041", "from_user_name": "20PEG4R", "geo": null, "id": 148840018247565300, "id_str": "148840018247565312", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1504106347/PQAAAIQWPxkl7gpB003p_0z2n-rmm99Srq9sD0OYrA482Bzehi--FYXIqbwljefd9potxZ38skYFx0P4dIiGDWJ8KAMAm1T1UFfa_I8be78M7bSMdCgjP3LUvI-E_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1504106347/PQAAAIQWPxkl7gpB003p_0z2n-rmm99Srq9sD0OYrA482Bzehi--FYXIqbwljefd9potxZ38skYFx0P4dIiGDWJ8KAMAm1T1UFfa_I8be78M7bSMdCgjP3LUvI-E_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@FuuckYourLife_ qe programa vc usa pra editar suas foootos hein melhooor ?", "to_user": "FuuckYourLife_", "to_user_id": 100766002, "to_user_id_str": "100766002", "to_user_name": "I'm boring \\u2620"}, +{"created_at": "Mon, 19 Dec 2011 19:00:00 +0000", "from_user": "Yonopienso_", "from_user_id": 301221138, "from_user_id_str": "301221138", "from_user_name": "L\\u043E\\u0433\\u0435l\\u03B9s S\\u0430lc\\u0435do \\u2714", "geo": null, "id": 148840018000089100, "id_str": "148840018000089088", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688239191/378538_2044217484344_1811584630_1319222_574456906_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688239191/378538_2044217484344_1811584630_1319222_574456906_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "IVAN USA CONDON", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:59 +0000", "from_user": "EliannaMichaela", "from_user_id": 215875795, "from_user_id_str": "215875795", "from_user_name": "Elianna\\u05D0\\u05B6\\u05DC\\u05B4\\u05D9\\u05E2\\u05B7\\u05E0\\u05B8\\u05D4", "geo": null, "id": 148840015512875000, "id_str": "148840015512875008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681840283/Snapshot_20111201_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681840283/Snapshot_20111201_1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Previs: Killed Osama, Ended war in Iraq, Passed comprehensive health care, Ended Don't Ask Don't tell, Saved USA Auto Industry #WhatObamaHasDone", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:58 +0000", "from_user": "liinka_02", "from_user_id": 222921826, "from_user_id_str": "222921826", "from_user_name": "Lika Dingobel :3", "geo": null, "id": 148840011196928000, "id_str": "148840011196928001", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687326471/ultimatentativa_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687326471/ultimatentativa_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "@S0U1C4F3T40 @1P3QU3N4V4D14 @S0UMuka @S0U1DAN0NINH0 @Sou1ExFreira @S0N40M0RD3 se vc ta falando tb usa n\\u00E9, putinha caseira :3", "to_user": "S0U1C4F3T40", "to_user_id": 271937266, "to_user_id_str": "271937266", "to_user_name": "S3U C4F3T40 \\u263B", "in_reply_to_status_id": 148839839641501700, "in_reply_to_status_id_str": "148839839641501696"}, +{"created_at": "Mon, 19 Dec 2011 18:59:57 +0000", "from_user": "damorelaw", "from_user_id": 22537898, "from_user_id_str": "22537898", "from_user_name": "Tom D'Amore", "geo": null, "id": 148840008512573440, "id_str": "148840008512573440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1362614926/D_Amore_Tom_2010_Photo_00_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1362614926/D_Amore_Tom_2010_Photo_00_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @OnSafety: Gel fuel, firepot rulemaking begins. Rulemaking will address flash fire and burn hazards. http://t.co/dwFhkMrY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:57 +0000", "from_user": "AMAselfmadeBOSS", "from_user_id": 246018931, "from_user_id_str": "246018931", "from_user_name": "selfmade-selfpaid", "geo": null, "id": 148840008416112640, "id_str": "148840008416112640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702619268/IMG-20111218-00341_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702619268/IMG-20111218-00341_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Mushin\"@TWEETORACLE: The HQ of the #PORN industry in USA is ________?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:57 +0000", "from_user": "desarrumada", "from_user_id": 98949242, "from_user_id_str": "98949242", "from_user_name": "julia do gabo e vc?", "geo": null, "id": 148840008369975300, "id_str": "148840008369975297", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702555395/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702555395/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "vc que usa brincos de argola::: para", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:57 +0000", "from_user": "laudamus2004", "from_user_id": 397593012, "from_user_id_str": "397593012", "from_user_name": "Daniel", "geo": null, "id": 148840007329783800, "id_str": "148840007329783808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1605131046/_________________________02_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1605131046/_________________________02_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@cubadebate #U.S. leaves #Iraq but leaves thousands of mercenaries deployed http://t.co/yMt0Nh28 #USA #Obama", "to_user": "cubadebate", "to_user_id": 35726000, "to_user_id_str": "35726000", "to_user_name": "Cubadebate", "in_reply_to_status_id": 148826625566453760, "in_reply_to_status_id_str": "148826625566453760"}, +{"created_at": "Mon, 19 Dec 2011 18:59:57 +0000", "from_user": "LoseBodyFat_1", "from_user_id": 433778265, "from_user_id_str": "433778265", "from_user_name": "Maria Campbell", "geo": null, "id": 148840007111680000, "id_str": "148840007111680000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693960127/maria4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693960127/maria4_normal.jpg", "source": "<a href="http://howtolosebodyfatx.com" rel="nofollow">How To Lose Body Fat 1</a>", "text": "Diet Doc HCG Diet & Weight Loss - The Lowest Priced Medically, Superv http://t.co/RegQMw8u #diet #weightloss #losefat", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:57 +0000", "from_user": "karenruthw", "from_user_id": 23187746, "from_user_id_str": "23187746", "from_user_name": "Karen Wallace", "geo": null, "id": 148840005182300160, "id_str": "148840005182300160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/130305648/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/130305648/twitter_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@spywall has landed in the USA! Yipee!", "to_user": "spywall", "to_user_id": 22969596, "to_user_id_str": "22969596", "to_user_name": "Spyder Wallace"}, +{"created_at": "Mon, 19 Dec 2011 18:59:56 +0000", "from_user": "raphacassiolato", "from_user_id": 58722529, "from_user_id_str": "58722529", "from_user_name": "Raphael Cassiolato", "geo": null, "id": 148840003127095300, "id_str": "148840003127095296", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691695156/sa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691695156/sa_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ValeriaBandida: Usa suti\\u00E3 de enchimento e depois diz que odeia falsidade.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:56 +0000", "from_user": "KikeSantana", "from_user_id": 31490056, "from_user_id_str": "31490056", "from_user_name": "LUIS ENRIQUE SANTANA", "geo": null, "id": 148840002590228480, "id_str": "148840002590228481", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696975603/KikeSantana_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696975603/KikeSantana_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @coxsbound: 1% + rico de USA acapara 40% del ingreso... en apogeo romano top 1% de ingreso ten\\u00EDa 16% de la torta : http://t.co/vQhmQJi1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:56 +0000", "from_user": "mpga76", "from_user_id": 222204732, "from_user_id_str": "222204732", "from_user_name": "Manuel Gonzalez A.", "geo": null, "id": 148840001914941440, "id_str": "148840001914941441", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1650997113/110479_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650997113/110479_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "En Noruega el costo de vida es 90% m\\u00E1s alto que en los USA. Su \\u00EDndice de desarrollo humano es el m\\u00E1s alto del mundo.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:55 +0000", "from_user": "AcaoPolicial", "from_user_id": 101496213, "from_user_id_str": "101496213", "from_user_name": "Homem de DEUS", "geo": null, "id": 148839999280918530, "id_str": "148839999280918528", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534528829/anigiffff_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534528829/anigiffff_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "@RubensLemos Imuran 50 mg \\u00F1 vende em farm\\u00E1cia mas o governo do estado d\\u00E1 pela Unicat, minha filha tb usa esse medicamento #FALTANDO socorro", "to_user": "RubensLemos", "to_user_id": 56252954, "to_user_id_str": "56252954", "to_user_name": "Rubens Lemos", "in_reply_to_status_id": 147655664284602370, "in_reply_to_status_id_str": "147655664284602368"}, +{"created_at": "Mon, 19 Dec 2011 18:59:54 +0000", "from_user": "rybisijo", "from_user_id": 433330877, "from_user_id_str": "433330877", "from_user_name": "Ruwaydah Larrie", "geo": null, "id": 148839995644456960, "id_str": "148839995644456960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1684977557/205_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684977557/205_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @revykali: short term loans with bad credit http://t.co/czh74nwW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:54 +0000", "from_user": "hodiwaluk", "from_user_id": 434415228, "from_user_id_str": "434415228", "from_user_name": "Kaleho Filipychev", "geo": null, "id": 148839995409575940, "id_str": "148839995409575936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687879530/795_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687879530/795_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @mojypukagox: payday loans for unemployed only http://t.co/z4iMi6g5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:54 +0000", "from_user": "jamjoom44", "from_user_id": 305530741, "from_user_id_str": "305530741", "from_user_name": "\\u0633\\u0627\\u0631\\u0642 \\u0627\\u0644\\u0644\\u064A\\u0644", "geo": null, "id": 148839994985947140, "id_str": "148839994985947136", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1431189380/IMG00134-20110707-1640_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1431189380/IMG00134-20110707-1640_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/AY407wqe \\u0633\\u0644\\u0633\\u0644\\u0629 \\u0628\\u0634\\u0631\\u064A\\u0629 \\u062A\\u062A\\u0644\\u0623\\u0626\\u0644\\u0626 \\u0641\\u064A\\u064A\\u0647\\u0627 \\u0634\\u0645\\u0648\\u0639 \\u0627\\u0644\\u0634\\u0647\\u062F\\u0627\\u0621 #bahrain #ksa #usa #iraq #yemen #iran #kuwait #qatar", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:53 +0000", "from_user": "Jacques_Antoine", "from_user_id": 336802356, "from_user_id_str": "336802356", "from_user_name": "Jacques Antoine", "geo": null, "id": 148839989504000000, "id_str": "148839989504000000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1619557709/Self_pic_2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619557709/Self_pic_2_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "But that's the 3rd worst DMV in the continental USA. @tamakishii", "to_user": "tamakishii", "to_user_id": 37855774, "to_user_id_str": "37855774", "to_user_name": "Tamaki S. Ishii", "in_reply_to_status_id": 148834815838396400, "in_reply_to_status_id_str": "148834815838396416"}, +{"created_at": "Mon, 19 Dec 2011 18:59:52 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148839985213218800, "id_str": "148839985213218818", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "MIGUEL USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:51 +0000", "from_user": "nikilugo", "from_user_id": 67708243, "from_user_id_str": "67708243", "from_user_name": "NIDIA LUGO", "geo": null, "id": 148839981547393020, "id_str": "148839981547393024", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1650241750/IMG00936-20110730-1433_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650241750/IMG00936-20110730-1433_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "#Hace10A\\u00F1os que cambi\\u00F2 todo en USA despu\\u00E9s del 9/11 -.-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:50 +0000", "from_user": "famamacapa", "from_user_id": 314092528, "from_user_id_str": "314092528", "from_user_name": "FAMA Macap\\u00E1", "geo": null, "id": 148839979139866620, "id_str": "148839979139866624", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1650929637/fama_avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650929637/fama_avatar_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Movido \\u00E0 laranja: voc\\u00EA toma seu suco e usa a casca para abastecer seu carro\\nhttp://t.co/M5ahNy5T", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:50 +0000", "from_user": "maza_swift", "from_user_id": 164816794, "from_user_id_str": "164816794", "from_user_name": "cristina mazariegos", "geo": null, "id": 148839976119963650, "id_str": "148839976119963648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1672665295/maza_swift_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672665295/maza_swift_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Swiftlogy: #Swiftlogy Taylor finished Speak Now tour in the USA with two sold out concerts at Madison Square Garden!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:49 +0000", "from_user": "Flaganatas", "from_user_id": 183272752, "from_user_id_str": "183272752", "from_user_name": "G", "geo": null, "id": 148839971200049150, "id_str": "148839971200049152", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1552102350/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552102350/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jfktruther: Ron Paul winning in Iowa: http://t.co/0uFQSk2C #RonPaul2012 #tcot #RonPaul #tpot #tlot", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:48 +0000", "from_user": "paulettemejiam", "from_user_id": 134572766, "from_user_id_str": "134572766", "from_user_name": "pollo a la wasakaka ", "geo": null, "id": 148839970239557630, "id_str": "148839970239557632", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700842291/lolo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700842291/lolo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "pue si la gente como yo que usa pagina pa ma follower /o/", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:46 +0000", "from_user": "maysousabrito", "from_user_id": 270486704, "from_user_id_str": "270486704", "from_user_name": "Mayara", "geo": null, "id": 148839960642977800, "id_str": "148839960642977794", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1585477028/1234_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585477028/1234_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@babyrogerbrasil rsrsr e como usa! beij\\u00E3oo", "to_user": "babyrogerbrasil", "to_user_id": 117525752, "to_user_id_str": "117525752", "to_user_name": "Baby Roger", "in_reply_to_status_id": 148837070293569540, "in_reply_to_status_id_str": "148837070293569536"}, +{"created_at": "Mon, 19 Dec 2011 18:59:46 +0000", "from_user": "_Adicta", "from_user_id": 123965194, "from_user_id_str": "123965194", "from_user_name": "La que hace spam.", "geo": null, "id": 148839958361276400, "id_str": "148839958361276416", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "ME CAMBIARE EL USER A USA COND\\u00D3N. JIJIJIJIJIJ OK NO.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:45 +0000", "from_user": "_LeticiaE", "from_user_id": 246373603, "from_user_id_str": "246373603", "from_user_name": "~sou 1 \\u03B1njinho~ ", "geo": null, "id": 148839957602115600, "id_str": "148839957602115584", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693010242/gisf_fotos_002_reasonably_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693010242/gisf_fotos_002_reasonably_small_normal.jpg", "source": "<a href="http://formspring.me" rel="nofollow">formspring.me</a>", "text": "Read my response to \"Usa \\u00F3culos? Quantos graus? @_luccs\": http://t.co/GzIFMRHE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:45 +0000", "from_user": "ronkizzle93", "from_user_id": 356386640, "from_user_id_str": "356386640", "from_user_name": "aBiSoLa MaKaNjU", "geo": null, "id": 148839957480484860, "id_str": "148839957480484865", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699202267/ronke_20makanjuyureip_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699202267/ronke_20makanjuyureip_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Yinka \\u00ED\\u06AA Alaba in USA?choi \"@YinkaRudBoi: ALABA MARKET RT @TWEETORACLE: The HQ of the #PORN industry in USA is ________?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:43 +0000", "from_user": "pujebakoq", "from_user_id": 419543717, "from_user_id_str": "419543717", "from_user_name": "Iakona Kissick", "geo": null, "id": 148839946206183420, "id_str": "148839946206183425", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1657569524/27_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657569524/27_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @vygarugyq: auto insurance value stated http://t.co/FPBidrQg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:42 +0000", "from_user": "bea_hp", "from_user_id": 228926907, "from_user_id_str": "228926907", "from_user_name": "hp \\u00F1 de harry potter", "geo": null, "id": 148839943270187000, "id_str": "148839943270187008", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1626402987/IMG00004__2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626402987/IMG00004__2__normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Photo: Quando precisei de um lugar para pendurar meu cora\\u00E7\\u00E3o, voc\\u00EA estava l\\u00E1 para us\\u00E1-lo desde o in\\u00EDcioe com... http://t.co/n9J8nRii", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:42 +0000", "from_user": "wugelak", "from_user_id": 420084352, "from_user_id_str": "420084352", "from_user_name": "Myria Gowthorpe", "geo": null, "id": 148839943127564300, "id_str": "148839943127564289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1657184402/25_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657184402/25_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @gorujoq: insurance ratings of cars http://t.co/TkVpOwfS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:42 +0000", "from_user": "naahdacruz", "from_user_id": 184643692, "from_user_id_str": "184643692", "from_user_name": "*aos olhos do PAI", "geo": null, "id": 148839942838173700, "id_str": "148839942838173696", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698331180/fkrigjgk_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698331180/fkrigjgk_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "na minha prima \\u00E9 assim 8479302 pessoas fikaam querendo mexer no pc daai justo eu que ja tenhu em ksa sou a que menos usa :/", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:42 +0000", "from_user": "Cfaye_xo", "from_user_id": 380991426, "from_user_id_str": "380991426", "from_user_name": "\\u2661Cfaye", "geo": null, "id": 148839942812995600, "id_str": "148839942812995584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1641645902/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641645902/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @CanadianProbz: we can't help that our healthcare is so much better thank yours, suck on that usa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:42 +0000", "from_user": "mari_andreis", "from_user_id": 229575486, "from_user_id_str": "229575486", "from_user_name": "Mariana Andreis", "geo": null, "id": 148839942112546800, "id_str": "148839942112546816", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1679308031/RSCN8170_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679308031/RSCN8170_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "BrazilNeedsUpAllNightTour quanto mais gente usa, parece que mais desce.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:41 +0000", "from_user": "GLAmorEterno_PB", "from_user_id": 383715855, "from_user_id_str": "383715855", "from_user_name": "Te_Amo_Meu_Guh", "geo": null, "id": 148839940543885300, "id_str": "148839940543885312", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699820108/Gl_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699820108/Gl_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Pra falarem que o guh mudou temos que olhar pra gente tambem:ninguem mais usa as tags #familiaGL mudou muito!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:41 +0000", "from_user": "Hardeyley", "from_user_id": 150845566, "from_user_id_str": "150845566", "from_user_name": "Holluwarsheyi Adele", "geo": null, "id": 148839939285590000, "id_str": "148839939285590016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1472623024/Seyi_10_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1472623024/Seyi_10_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "California RT \"@TWEETORACLE: The HQ of the #PORN industry in USA is ________?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:59:42 +0000", "from_user": "mari_andreis", "from_user_id": 229575486, "from_user_id_str": "229575486", "from_user_name": "Mariana Andreis", "geo": null, "id": 148839942112546800, "id_str": "148839942112546816", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1679308031/RSCN8170_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679308031/RSCN8170_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "BrazilNeedsUpAllNightTour quanto mais gente usa, parece que mais desce.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:41 +0000", "from_user": "GLAmorEterno_PB", "from_user_id": 383715855, "from_user_id_str": "383715855", "from_user_name": "Te_Amo_Meu_Guh", "geo": null, "id": 148839940543885300, "id_str": "148839940543885312", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699820108/Gl_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699820108/Gl_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Pra falarem que o guh mudou temos que olhar pra gente tambem:ninguem mais usa as tags #familiaGL mudou muito!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:41 +0000", "from_user": "Hardeyley", "from_user_id": 150845566, "from_user_id_str": "150845566", "from_user_name": "Holluwarsheyi Adele", "geo": null, "id": 148839939285590000, "id_str": "148839939285590016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1472623024/Seyi_10_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1472623024/Seyi_10_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "California RT \"@TWEETORACLE: The HQ of the #PORN industry in USA is ________?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:40 +0000", "from_user": "mickeyhowell", "from_user_id": 325924202, "from_user_id_str": "325924202", "from_user_name": "Mickey Howell", "geo": null, "id": 148839936978731000, "id_str": "148839936978731008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1637431408/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1637431408/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@WillDibble ya damn right! Did you hear about Korea building a model of the twin towers being blown up?! North Korea can burn in hell! USA", "to_user": "WillDibble", "to_user_id": 347021987, "to_user_id_str": "347021987", "to_user_name": "Will Sumwalt"}, +{"created_at": "Mon, 19 Dec 2011 18:59:40 +0000", "from_user": "kehozocedyk", "from_user_id": 433420173, "from_user_id_str": "433420173", "from_user_name": "Maximilien Donnel", "geo": null, "id": 148839936597045250, "id_str": "148839936597045248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685243591/22_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685243591/22_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @rigetuxu: car insurance dayton ohio http://t.co/XTp9kQyV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:39 +0000", "from_user": "JUSTONEAMERICAN", "from_user_id": 38067927, "from_user_id_str": "38067927", "from_user_name": "ONEAMERICANLOOKING@U", "geo": null, "id": 148839932591484930, "id_str": "148839932591484928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1273593109/spiralwound_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273593109/spiralwound_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@StateDept Ahmed in Army USA http://t.co/2YpTUk87", "to_user": "StateDept", "to_user_id": 9624742, "to_user_id_str": "9624742", "to_user_name": "StateDept", "in_reply_to_status_id": 148839288002449400, "in_reply_to_status_id_str": "148839288002449408"}, +{"created_at": "Mon, 19 Dec 2011 18:59:39 +0000", "from_user": "eitormarx", "from_user_id": 77589971, "from_user_id_str": "77589971", "from_user_name": "Eitor Robson Marques", "geo": null, "id": 148839931626786800, "id_str": "148839931626786817", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/882704042/eitormarx_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/882704042/eitormarx_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Formatacao concluida! Agr instalacao e configuracao do windows e esta pronto pra usa e instala os drives! =)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:39 +0000", "from_user": "fogoxafix", "from_user_id": 419407418, "from_user_id_str": "419407418", "from_user_name": "Niram Colten", "geo": null, "id": 148839928942436350, "id_str": "148839928942436352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1658723113/28_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658723113/28_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @cewibaty: car insurance premiums in bc http://t.co/ocBJQTQl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:38 +0000", "from_user": "iloveeLeoHoward", "from_user_id": 334913371, "from_user_id_str": "334913371", "from_user_name": "leo biggest fan", "geo": null, "id": 148839928397185020, "id_str": "148839928397185025", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1493892717/aww_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1493892717/aww_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@LeoHowardPhoto I live on USA but I know Spanish because my mom is from Peru ...!!!", "to_user": "LeoHowardPhoto", "to_user_id": 416531125, "to_user_id_str": "416531125", "to_user_name": "LeoHowardPhoto", "in_reply_to_status_id": 143693075963850750, "in_reply_to_status_id_str": "143693075963850752"}, +{"created_at": "Mon, 19 Dec 2011 18:59:38 +0000", "from_user": "pocho_p", "from_user_id": 68321296, "from_user_id_str": "68321296", "from_user_name": "Aldo Pennacchiotti \\uF8FF", "geo": null, "id": 148839926362935300, "id_str": "148839926362935298", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699451378/salvador-dali-h7syns7i-191796-500-661_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699451378/salvador-dali-h7syns7i-191796-500-661_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Quiero mandarle un saludo cari\\u00F1oso al flaco que invent\\u00F3 la guayabera para re\\u00EDrnos de qui\\u00E9n la usa.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:38 +0000", "from_user": "NoSwagx", "from_user_id": 330330727, "from_user_id_str": "330330727", "from_user_name": "Sabina Paquier", "geo": null, "id": 148839925335339000, "id_str": "148839925335339008", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1684759787/393612_2797043644071_1197883115_33173937_657596423_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684759787/393612_2797043644071_1197883115_33173937_657596423_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @ANABRICOT: USA: Chris Brown, Justin Bieber, Lady Gaga, Usher, Rihanna,.. France: Colonel Reyel, Zaz, Christophe Willem, Gr\\u00E9goire,.. Qui veut d\\u00E9m\\u00E9nager?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:37 +0000", "from_user": "Tetheusjoga10", "from_user_id": 294280480, "from_user_id_str": "294280480", "from_user_name": "MatheusFernandes", "geo": null, "id": 148839922474811400, "id_str": "148839922474811393", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1644166313/foto0089_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644166313/foto0089_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@italozinho tem um tio de um colega meu que viajou para USA e trouxe uns iphone4 pra vender, falei ontem com ele, o boe \\u00E9 da igreja!", "to_user": "italozinho", "to_user_id": 55283547, "to_user_id_str": "55283547", "to_user_name": "\\u00CDtalo Fernandes", "in_reply_to_status_id": 148838335769616400, "in_reply_to_status_id_str": "148838335769616384"}, +{"created_at": "Mon, 19 Dec 2011 18:59:37 +0000", "from_user": "ProgPowerUSA", "from_user_id": 48006967, "from_user_id_str": "48006967", "from_user_name": "Glenn Harveston", "geo": null, "id": 148839921313001470, "id_str": "148839921313001473", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1601753356/PPUSA_concept_logo-w_theme_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601753356/PPUSA_concept_logo-w_theme_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "New visa service for metal bands trying to play the States: http://t.co/Qb7iZZ4y (Mention ProgPower USA and get the process moving)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:36 +0000", "from_user": "MERS16", "from_user_id": 134977017, "from_user_id_str": "134977017", "from_user_name": "Manuel Enrique Rivas", "geo": null, "id": 148839916414050300, "id_str": "148839916414050304", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1544933950/41088_149393618428785_100000744426947_298817_2163571_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544933950/41088_149393618428785_100000744426947_298817_2163571_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Cuando no puedas trotar, camina. Cuando no puedas caminar, usa el bast\\u00F3n. Pero nunca te detengas!\\u2665", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:35 +0000", "from_user": "_theleakage_", "from_user_id": 389538363, "from_user_id_str": "389538363", "from_user_name": "_theleakage_", "geo": null, "id": 148839914845388800, "id_str": "148839914845388801", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1585002459/favicon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585002459/favicon_normal.png", "source": "<a href="http://theleakage.com" rel="nofollow">theleakage.com</a>", "text": "Download: Swimming 2011 Duel in the Pool USA vs Europe HDTV XviD QCF http://t.co/0rbuq6t6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:35 +0000", "from_user": "lhsm2016", "from_user_id": 362419207, "from_user_id_str": "362419207", "from_user_name": "luiz henrique", "geo": null, "id": 148839914455314430, "id_str": "148839914455314432", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1530247143/luiz.voluvia.com_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1530247143/luiz.voluvia.com_normal.JPG", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Andrea Andrade usa vestido de R$ 20 mil em ensaio de escola de samba http://t.co/jWPj2dMg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:35 +0000", "from_user": "Bruna_Chites", "from_user_id": 434397942, "from_user_id_str": "434397942", "from_user_name": "Bruna Chites", "geo": null, "id": 148839914312708100, "id_str": "148839914312708096", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687788730/386550_174573672637173_100002536233813_334763_1467189980_a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687788730/386550_174573672637173_100002536233813_334763_1467189980_a_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "ao inv\\u00E9s de comer no prato, ele tira a comida de dentro e usa pra bater... ,muito louco esse guri!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:35 +0000", "from_user": "rafabos", "from_user_id": 284727998, "from_user_id_str": "284727998", "from_user_name": "Rafael B. de Andrade", "geo": null, "id": 148839913234776060, "id_str": "148839913234776064", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1317669979/081510092029_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317669979/081510092029_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "quero ir pra USA so pra tentar entrar na S.W.A.T e tentar ajudar um estranho,e da mto tiro num bandido...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:35 +0000", "from_user": "ASalvarreyes", "from_user_id": 170044359, "from_user_id_str": "170044359", "from_user_name": "Ailen Salvarreyes", "geo": null, "id": 148839913146695680, "id_str": "148839913146695681", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701703363/aio_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701703363/aio_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "explicandole como se usa dios", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:34 +0000", "from_user": "dassucca", "from_user_id": 163220120, "from_user_id_str": "163220120", "from_user_name": "Daniela", "geo": null, "id": 148839909686378500, "id_str": "148839909686378497", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1525127376/Sin_t_tulo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1525127376/Sin_t_tulo_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@DelCorrector cocido o cocinado? cuando se usa cada uno?", "to_user": "DelCorrector", "to_user_id": 312741533, "to_user_id_str": "312741533", "to_user_name": "El Corrector"}, +{"created_at": "Mon, 19 Dec 2011 18:59:34 +0000", "from_user": "childseatsafety", "from_user_id": 70765264, "from_user_id_str": "70765264", "from_user_name": "ChildPassengerSafety", "geo": null, "id": 148839909241790460, "id_str": "148839909241790464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/393374389/newlogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/393374389/newlogo_normal.jpg", "source": "<a href="http://www.crowdbooster.com" rel="nofollow">Crowdbooster</a>", "text": "Get RSS feeds from #NHTSA on child restraint, tire, and #vehicle recalls. http://t.co/syGE6NBe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:34 +0000", "from_user": "JAE34", "from_user_id": 169967614, "from_user_id_str": "169967614", "from_user_name": "Jaime", "geo": null, "id": 148839907866066940, "id_str": "148839907866066944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683551393/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683551393/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @EBRINDLEY: Heavy snowfall rates, localized blizzard conditions to increase into the evening across SW Plains http://t.co/JZsdXWvK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:33 +0000", "from_user": "SE7E", "from_user_id": 37088513, "from_user_id_str": "37088513", "from_user_name": "SE7E", "geo": null, "id": 148839905219457020, "id_str": "148839905219457024", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1260221945/100_1484_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1260221945/100_1484_normal.JPG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @portugae97: Messi n\\u00E3o usa brincos..Correntes..N\\u00E3o \\u00E9 manchete na Sonia Abra\\u00E3o..Usa agasalho do clube e faz algo que outros n\\u00E3o fazem..Joga bola e muito!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:32 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148839902157606900, "id_str": "148839902157606912", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "MIJO USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:31 +0000", "from_user": "verrieryzbt2", "from_user_id": 395965247, "from_user_id_str": "395965247", "from_user_name": "Verrier Stewart", "geo": null, "id": 148839896625319940, "id_str": "148839896625319937", "iso_language_code": "fi", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1601052397/imagesCAJMAJIG_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601052397/imagesCAJMAJIG_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@noillusions http://t.co/ttjjF9QQ", "to_user": "noillusions", "to_user_id": 22209827, "to_user_id_str": "22209827", "to_user_name": "richard garner", "in_reply_to_status_id": 148769641601318900, "in_reply_to_status_id_str": "148769641601318912"}, +{"created_at": "Mon, 19 Dec 2011 18:59:31 +0000", "from_user": "Emelyrijo", "from_user_id": 239123202, "from_user_id_str": "239123202", "from_user_name": "Emely Rijo", "geo": null, "id": 148839896348508160, "id_str": "148839896348508160", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1675693701/005_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675693701/005_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @elchascas: \\u00DAltimas semanas de #Lacasadeallado en USA. \\u00A1Lleg\\u00F3 la hora de desenmascarar a los verdaderos culpables! http://t.co/rnvHipHu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:30 +0000", "from_user": "RBresco", "from_user_id": 421506701, "from_user_id_str": "421506701", "from_user_name": "Roser Bresc\\u00F3", "geo": null, "id": 148839894628835330, "id_str": "148839894628835328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701019446/IMG_0373_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701019446/IMG_0373_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Santa using SIRI in new Apple's spot http://t.co/AgSjG9nU v\\u00EDa @applesfera", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:30 +0000", "from_user": "cadegaspari", "from_user_id": 284149538, "from_user_id_str": "284149538", "from_user_name": "S\\u00F3 da Lu Guidi ", "geo": null, "id": 148839893647360000, "id_str": "148839893647360001", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1444413652/09-07-11-18-35_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1444413652/09-07-11-18-35_normal.jpg", "source": "<a href="http://formspring.me" rel="nofollow">formspring.me</a>", "text": "Read my response to \"Usa muito \\u00F3culos de sol ?\": http://t.co/rS506v7p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:30 +0000", "from_user": "WoOdMcFlLy", "from_user_id": 84806284, "from_user_id_str": "84806284", "from_user_name": "WoOdMcFlLy", "geo": null, "id": 148839892858830850, "id_str": "148839892858830850", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1598121016/Surly-Darkness-2011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598121016/Surly-Darkness-2011_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @grownupbutnot: ummmm, excuse me criminal intent, but the USA network is reserved specifically for SVU #getouttahere", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:30 +0000", "from_user": "Zainabjaleel", "from_user_id": 225386453, "from_user_id_str": "225386453", "from_user_name": "Zainab Jaleel", "geo": null, "id": 148839892397457400, "id_str": "148839892397457409", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1678559188/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678559188/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ghost14_: god damn AlSaud god damn AlSaud #saudi #ksa #usa #us #Obama #oil", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:29 +0000", "from_user": "cassianoborges", "from_user_id": 34955535, "from_user_id_str": "34955535", "from_user_name": "cassiano borges \\u262E", "geo": null, "id": 148839889536946180, "id_str": "148839889536946176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1596356091/twittericon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596356091/twittericon_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Real_Liam_Payne @Harry_Styles @Louis_Tomlinson @NiallOfficial @zaynmalik U HAVE FANS OUTSIDE UK AND USA ! ;) BrazilNeedsUpAllNightTour", "to_user": "Real_Liam_Payne", "to_user_id": 158314798, "to_user_id_str": "158314798", "to_user_name": "Liam Payne"}, +{"created_at": "Mon, 19 Dec 2011 18:59:29 +0000", "from_user": "gvegayon", "from_user_id": 73013091, "from_user_id_str": "73013091", "from_user_name": "George Vega Yon", "geo": null, "id": 148839887834058750, "id_str": "148839887834058753", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/430800802/27122008056_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/430800802/27122008056_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @alvarograves: Irony at its best! RT @olyerickson: But is written in PDF! http://t.co/mzmUFgsV RT @EllnMllr: House Approves Sweeping #OpenData Standards", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:28 +0000", "from_user": "Mentirosita_", "from_user_id": 166659596, "from_user_id_str": "166659596", "from_user_name": "Lady\\u2665.", "geo": null, "id": 148839885887901700, "id_str": "148839885887901697", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1657693123/Colombia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657693123/Colombia_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@jjgv_ jiji:-$ USA COND\\u00D3N, Y DILE NO A LAS DROGAS!", "to_user": "jjgv_", "to_user_id": 130383471, "to_user_id_str": "130383471", "to_user_name": "Joakiin' Gil\\u2665", "in_reply_to_status_id": 148839350468231170, "in_reply_to_status_id_str": "148839350468231169"}, +{"created_at": "Mon, 19 Dec 2011 18:59:28 +0000", "from_user": "_tudoimproviso", "from_user_id": 295445742, "from_user_id_str": "295445742", "from_user_name": "brenda rech scopel,", "geo": null, "id": 148839885460090880, "id_str": "148839885460090880", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700988394/Foto_A0886_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700988394/Foto_A0886_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ESSESGAYS: \"como vc pode gostar de tatuagem e alargador? que coisa feia\" disse a pessoa que gosta de funk usa shortinho de 5cm e tem piercing no umbigo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:28 +0000", "from_user": "RafaValdez", "from_user_id": 34998339, "from_user_id_str": "34998339", "from_user_name": "Rafael VALDEZ", "geo": null, "id": 148839885107757060, "id_str": "148839885107757057", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1181224400/219386396_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1181224400/219386396_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @licjfobezo: A la gente que va a USA por Nogales, tengan paciencia, mucha fila!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:28 +0000", "from_user": "johannaduverge", "from_user_id": 420574569, "from_user_id_str": "420574569", "from_user_name": "Johanna Duverge", "geo": null, "id": 148839882775736320, "id_str": "148839882775736320", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1655989185/IMG00011-20111124-1659_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655989185/IMG00011-20111124-1659_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @JUNIORCABRERA07: \"ALFAREROS HOY EN NUESTRA FE EN VIVO\"@ewtn (especial de navidad) USA 6:00PM- MEXICO 5:00PM- BOGOTA 6:00PM MADRID 12:00AM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:27 +0000", "from_user": "Andy___Williams", "from_user_id": 240476903, "from_user_id_str": "240476903", "from_user_name": "Andy Williams", "geo": null, "id": 148839882184331260, "id_str": "148839882184331264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1628123804/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628123804/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Radclifficus isn't that where they make all the porn!!!! Hahaha what makes you want to live in USA? I've been twice it's ok:)", "to_user": "Radclifficus", "to_user_id": 145716051, "to_user_id_str": "145716051", "to_user_name": "Liesa \\u2764", "in_reply_to_status_id": 148837673883279360, "in_reply_to_status_id_str": "148837673883279363"}, +{"created_at": "Mon, 19 Dec 2011 18:59:27 +0000", "from_user": "YoureTheProblem", "from_user_id": 310814184, "from_user_id_str": "310814184", "from_user_name": "Tom Felton's Whore.", "geo": null, "id": 148839881349672960, "id_str": "148839881349672960", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694914511/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694914511/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @ANABRICOT: USA: Chris Brown, Justin Bieber, Lady Gaga, Usher, Rihanna,.. France: Colonel Reyel, Zaz, Christophe Willem, Gr\\u00E9goire,.. Qui veut d\\u00E9m\\u00E9nager?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:27 +0000", "from_user": "KateMarieLife", "from_user_id": 348033774, "from_user_id_str": "348033774", "from_user_name": "Kate", "geo": null, "id": 148839878577242100, "id_str": "148839878577242112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1476416690/DSCN3673_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1476416690/DSCN3673_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @RaleighGov: Ready for the New Year? Raleigh Acorn Being Prepared for First Night. http://t.co/xNJmTlad http://t.co/qDUqlDgt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:25 +0000", "from_user": "aniin140", "from_user_id": 250467483, "from_user_id_str": "250467483", "from_user_name": "Ani", "geo": null, "id": 148839872562602000, "id_str": "148839872562601984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700782127/1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700782127/1_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @lonelyplanet: Hidden treasures of San Francisco as featured in LP's new mobile app Wenzani http://t.co/ABHkR55W #lp #travel", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:25 +0000", "from_user": "marcelacuri", "from_user_id": 217096778, "from_user_id_str": "217096778", "from_user_name": "Mrs. Timberlake", "geo": null, "id": 148839871417565200, "id_str": "148839871417565184", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1648693269/303918_318947311465018_100000492565088_1335731_16254144_n__2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648693269/303918_318947311465018_100000492565088_1335731_16254144_n__2__normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "RT @annaroquete: vou confessar que acho super charmoso menino que usa oculos. tipo, nao sempre, so as vezes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:23 +0000", "from_user": "Chele_G", "from_user_id": 318579940, "from_user_id_str": "318579940", "from_user_name": "Michele Lee Gunter", "geo": null, "id": 148839864694079500, "id_str": "148839864694079488", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1623025458/4rMfA9Nm_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1623025458/4rMfA9Nm_normal", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "RT @JENNA_MICHELE: Jenna Cecil for Miss California USA 2012\\n\\nhttp://t.co/e1j6KkIW http://t.co/hzkAcHTa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:22 +0000", "from_user": "NASAJPL_Edu", "from_user_id": 18746273, "from_user_id_str": "18746273", "from_user_name": "NASAJPL Education", "geo": null, "id": 148839861363806200, "id_str": "148839861363806209", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/930215479/saturn-apple_150_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/930215479/saturn-apple_150_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Application season has opened for at least a dozen internships & fellowships @NASAJPL! Apply now at http://t.co/XZxu0o25", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:22 +0000", "from_user": "NovaEli", "from_user_id": 18318643, "from_user_id_str": "18318643", "from_user_name": "Tu Papa", "geo": null, "id": 148839859241488400, "id_str": "148839859241488384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701242680/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701242680/image_normal.jpg", "source": "<a href="http://tweetlogix.com" rel="nofollow">Tweetlogix</a>", "text": "RT @iamRoguee: ; I've been saying this for the past 10 years, I've researched the govt so much. Niggas had me investigated! Fuck the USA! Fuck Obama!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:21 +0000", "from_user": "BibbyLoveBieber", "from_user_id": 383412187, "from_user_id_str": "383412187", "from_user_name": "Bianca Tanase", "geo": null, "id": 148839855344992260, "id_str": "148839855344992257", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1666261459/vfrefqafdrfe_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666261459/vfrefqafdrfe_normal.PNG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SelenaNoEsReal: Ese momento inc\\u00F3modo cuando todo el mundo se da cuenta de que Selena Gomez usa PlayBack.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:20 +0000", "from_user": "IaaraCavalli", "from_user_id": 192765586, "from_user_id_str": "192765586", "from_user_name": "Iara Cavalli", "geo": null, "id": 148839849657503740, "id_str": "148839849657503744", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699992022/DSC09173__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699992022/DSC09173__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u00E9 triste ser viciada em facebook e n\\u00E3o lembrar mais direito como se usa o twitter, vejo um tweet legal e quero curtir, como \\u00E9 que faz heim?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:19 +0000", "from_user": "renee_berry", "from_user_id": 121558178, "from_user_id_str": "121558178", "from_user_name": "renee berry", "geo": null, "id": 148839848030126080, "id_str": "148839848030126081", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689403625/DSC_0284_2_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689403625/DSC_0284_2_2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @BrianSMcGowan: Effectively Training the Hospice & Palliative Medicine Docs for Improved End-of-Life Care http://t.co/VOZmxS4A #CMEchat @renee_berry", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:17 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148839839352094720, "id_str": "148839839352094720", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "USA COND\\u00D3N..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:16 +0000", "from_user": "Allison01236588", "from_user_id": 440847507, "from_user_id_str": "440847507", "from_user_name": "Allison", "geo": null, "id": 148839835510116350, "id_str": "148839835510116353", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702116399/905712_356x237_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702116399/905712_356x237_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "New Canon Usa Bci-3e Black And Color Multipack Popular High Quality Practical Modern Design: Notice: $50 charge ... http://t.co/DPaOfrnu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:15 +0000", "from_user": "laisataide", "from_user_id": 68721390, "from_user_id_str": "68721390", "from_user_name": "La\\u00EDs Ata\\u00EDde", "geo": null, "id": 148839828564357120, "id_str": "148839828564357120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698895499/julia_book_4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698895499/julia_book_4_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Swiftlogy: #Swiftlogy Taylor finished Speak Now tour in the USA with two sold out concerts at Madison Square Garden!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:14 +0000", "from_user": "circotimia_", "from_user_id": 221610474, "from_user_id_str": "221610474", "from_user_name": "M a i t e\\u10E6. ", "geo": null, "id": 148839827582894080, "id_str": "148839827582894080", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698350821/jjo__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698350821/jjo__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "MAURY USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:14 +0000", "from_user": "Jumabinali", "from_user_id": 348088617, "from_user_id_str": "348088617", "from_user_name": "JBA", "geo": null, "id": 148839826211344400, "id_str": "148839826211344385", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676007559/a3bjp_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676007559/a3bjp_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "If within 10 yrs of fake reforms we haven\\u2019t learnt, we will never do\\n#14feb #tgonu #qatif #hassa #ksa #oman #qatar #iraq #kuwait #usa # eu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:14 +0000", "from_user": "DaveSkoletsky", "from_user_id": 19493498, "from_user_id_str": "19493498", "from_user_name": "Dave Skoletsky", "geo": null, "id": 148839825355702270, "id_str": "148839825355702272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/396453345/trailing_seminar_109_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/396453345/trailing_seminar_109_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "NFL best and worst: Monkeys, dogs and the Tebow myth busted - USA TODAY http://t.co/W3Deygjl http://t.co/n0YmnCUV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:14 +0000", "from_user": "BlackBerryMaxi", "from_user_id": 258168984, "from_user_id_str": "258168984", "from_user_name": "BlackBerry BestPrice", "geo": null, "id": 148839824789475330, "id_str": "148839824789475328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1256265044/blackberry-maxiprices_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1256265044/blackberry-maxiprices_normal.gif", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "BlackBerry USA: 2 never used never opened phones blackberry curve9300 and bold 9700 #Bold http://t.co/eoTOStf8 #blackberry #usa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:14 +0000", "from_user": "TabletPcUSA", "from_user_id": 302269631, "from_user_id_str": "302269631", "from_user_name": "Tablet PC USA", "geo": null, "id": 148839824420376580, "id_str": "148839824420376576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1362568668/usatabletpc_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1362568668/usatabletpc_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "USA Tablet PC: 7\" Allwinner A10 Cortex A8 1GHz Android 2.3 Tablet PC Multi-touch Screen WiFi Wh... http://t.co/aHLOR8iN #tabletpc #usa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:13 +0000", "from_user": "Fuzzalert", "from_user_id": 177369263, "from_user_id_str": "177369263", "from_user_name": "Fuzz Alert", "geo": null, "id": 148839821241094140, "id_str": "148839821241094144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1102260354/fuzzalert__logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1102260354/fuzzalert__logo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "A new speed trap was set near 276-316 County Route 46, Shirley, NY 11967, USA http://t.co/lBOIFmoe:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:13 +0000", "from_user": "Raullooopes", "from_user_id": 193460428, "from_user_id_str": "193460428", "from_user_name": "Raul Lopes", "geo": null, "id": 148839820158976000, "id_str": "148839820158976000", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1617387035/menor_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1617387035/menor_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "papai noel podia da um up ne , nm mais usa carta podia se um e-mail um sms sl ne ueahueahueahuahe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:13 +0000", "from_user": "TabletPcUSA", "from_user_id": 302269631, "from_user_id_str": "302269631", "from_user_name": "Tablet PC USA", "geo": null, "id": 148839819802460160, "id_str": "148839819802460161", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1362568668/usatabletpc_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1362568668/usatabletpc_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "USA Tablet PC: APPLE IPAD 2 64GB WIFI + 3G AT&T TABLET PC COMPUTER WI-FI Music Video #tabletpc http://t.co/CGhqTrOW #tabletpc #usa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:12 +0000", "from_user": "BlackBerryMaxi", "from_user_id": 258168984, "from_user_id_str": "258168984", "from_user_name": "BlackBerry BestPrice", "geo": null, "id": 148839819634679800, "id_str": "148839819634679808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1256265044/blackberry-maxiprices_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1256265044/blackberry-maxiprices_normal.gif", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "BlackBerry USA: BlackBerry Bold 9700 (Unlocked) New #Bold http://t.co/lOLEIsbv #blackberry #usa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:12 +0000", "from_user": "Louise_Anne_7", "from_user_id": 227101335, "from_user_id_str": "227101335", "from_user_name": "Louise Chapman", "geo": null, "id": 148839819383013380, "id_str": "148839819383013376", "iso_language_code": "fi", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699104808/IMG00931-20111215-1538_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699104808/IMG00931-20111215-1538_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "USA http://t.co/I8pbCWq7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:12 +0000", "from_user": "Thiago_PagTotal", "from_user_id": 357665871, "from_user_id_str": "357665871", "from_user_name": "Thiago_Gomes", "geo": null, "id": 148839815687831550, "id_str": "148839815687831552", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1503545940/pagtotal_TWITTER_reasonably_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1503545940/pagtotal_TWITTER_reasonably_small_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "VOC\\u00CA USA PERFUME?\\nConhe\\u00E7a a nova marca que est\\u00E1 chegando no Cear\\u00E1, UP!ESS\\u00CANCIA ,veja as marcas de perfume que... http://t.co/F4HnDW5B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:11 +0000", "from_user": "jaquitaaa", "from_user_id": 195522743, "from_user_id_str": "195522743", "from_user_name": "jaqueline", "geo": null, "id": 148839814551179260, "id_str": "148839814551179264", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698527634/e73cbee8-a056-4a26-8587-d1fa44b52a10_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698527634/e73cbee8-a056-4a26-8587-d1fa44b52a10_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @DialogoDeAlunos: #Eu: - Voc\\u00EA usa qual operadora? #Colega: - A tim! #Eu: - Sa\\u00FAde! #DialogoDeAlunos", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:11 +0000", "from_user": "uconndirk", "from_user_id": 18538633, "from_user_id_str": "18538633", "from_user_name": "uconndirk", "geo": null, "id": 148839813422911500, "id_str": "148839813422911488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1221959236/Dirk_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1221959236/Dirk_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Despite Southwest blizzard, hope of white Christmas fades for much of US - http://t.co/pLihUfqp http://t.co/Kf6CGZAy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:11 +0000", "from_user": "TabletPcUSA", "from_user_id": 302269631, "from_user_id_str": "302269631", "from_user_name": "Tablet PC USA", "geo": null, "id": 148839813045436400, "id_str": "148839813045436416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1362568668/usatabletpc_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1362568668/usatabletpc_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "USA Tablet PC: Acer Tablet ICONIA A500 16GB, Wi-Fi, 10.1in - Black #tabletpc http://t.co/cI6nff26 #tabletpc #usa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:11 +0000", "from_user": "BlackBerryMaxi", "from_user_id": 258168984, "from_user_id_str": "258168984", "from_user_name": "BlackBerry BestPrice", "geo": null, "id": 148839812957356030, "id_str": "148839812957356032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1256265044/blackberry-maxiprices_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1256265044/blackberry-maxiprices_normal.gif", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "BlackBerry USA: \\u2588 BLACKBERRY BOLD 9780 CINCINNATI BELL WORLD SHIPPING \\u2588 #Bold http://t.co/yzUhKDCt #blackberry #usa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:11 +0000", "from_user": "UrSistazDrimGuy", "from_user_id": 53050954, "from_user_id_str": "53050954", "from_user_name": "Head Nigga in Charge", "geo": null, "id": 148839812101718000, "id_str": "148839812101718018", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700396131/331661084_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700396131/331661084_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Ohafia RT @TWEETORACLE: The HQ of the #PORN industry in USA is ________?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:10 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148839807508955140, "id_str": "148839807508955137", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:10 +0000", "from_user": "dolphinroxy", "from_user_id": 40956635, "from_user_id_str": "40956635", "from_user_name": "Julie", "geo": null, "id": 148839807366344700, "id_str": "148839807366344704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/499911808/DSC02799_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/499911808/DSC02799_normal.JPG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@ladygaga only to usa citizens...50 states....i live in Puerto Rico...how is this fair? Hmmmm", "to_user": "ladygaga", "to_user_id": 14230524, "to_user_id_str": "14230524", "to_user_name": "Lady Gaga"}, +{"created_at": "Mon, 19 Dec 2011 18:59:09 +0000", "from_user": "JPUSERNAME", "from_user_id": 51641901, "from_user_id_str": "51641901", "from_user_name": "jpzinho", "geo": null, "id": 148839806238068740, "id_str": "148839806238068737", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1663277445/inspiration__5__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663277445/inspiration__5__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@chutzki mora na zona sul e usa XP bjs", "to_user": "chutzki", "to_user_id": 40968139, "to_user_id_str": "40968139", "to_user_name": "they call me chu", "in_reply_to_status_id": 148839329949687800, "in_reply_to_status_id_str": "148839329949687809"}, +{"created_at": "Mon, 19 Dec 2011 18:59:09 +0000", "from_user": "Bandiee", "from_user_id": 173390866, "from_user_id_str": "173390866", "from_user_name": "Esteban Bandi", "geo": null, "id": 148839806212915200, "id_str": "148839806212915202", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1682291747/312530_2339449975048_1513884348_32490560_640466341_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682291747/312530_2339449975048_1513884348_32490560_640466341_n_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@anazaracho mira sin las colitas y se forma un corazon, usa tu imaginacion (?)", "to_user": "anazaracho", "to_user_id": 374643540, "to_user_id_str": "374643540", "to_user_name": "Ana Zaracho (\\u00F1a\\u00F1ala)", "in_reply_to_status_id": 148839303995330560, "in_reply_to_status_id_str": "148839303995330560"}, +{"created_at": "Mon, 19 Dec 2011 18:59:09 +0000", "from_user": "TabletPcUSA", "from_user_id": 302269631, "from_user_id_str": "302269631", "from_user_name": "Tablet PC USA", "geo": null, "id": 148839805382434800, "id_str": "148839805382434816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1362568668/usatabletpc_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1362568668/usatabletpc_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "USA Tablet PC: Ematic FunTab Internet Tablet & HD Video Player (Red Android Tablet) #tabletpc http://t.co/nxyF5eyd #tabletpc #usa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:09 +0000", "from_user": "USandroidtablet", "from_user_id": 302078903, "from_user_id_str": "302078903", "from_user_name": "USA Android Tablet", "geo": null, "id": 148839805277585400, "id_str": "148839805277585410", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1362193017/usaandroid_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1362193017/usaandroid_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "USA Android: HOT Unbranded 8 \" Google MID Android 2.2 Tablets PC 2GB WiFi G-Sensor Camera #android http://t.co/x62n1Xsi #android #tabletpc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:09 +0000", "from_user": "USandroidtablet", "from_user_id": 302078903, "from_user_id_str": "302078903", "from_user_name": "USA Android Tablet", "geo": null, "id": 148839803771830270, "id_str": "148839803771830272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1362193017/usaandroid_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1362193017/usaandroid_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "USA Android: HP TouchPad 32GB, Wi-Fi, 9.7in (Refurbished) Android Capable Get NOW B4 XMAS!!!!... http://t.co/G91sdqE0 #android #tabletpc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:09 +0000", "from_user": "TabletPcUSA", "from_user_id": 302269631, "from_user_id_str": "302269631", "from_user_name": "Tablet PC USA", "geo": null, "id": 148839803696316400, "id_str": "148839803696316418", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1362568668/usatabletpc_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1362568668/usatabletpc_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "USA Tablet PC: Fly Touch 3 (7\"): Android 2.2 Tablet, 1GHz CPU, Camera, 256MB RAM + 2GB ROM #tabletpc http://t.co/tlE46xb0 #tabletpc #usa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:08 +0000", "from_user": "USandroidtablet", "from_user_id": 302078903, "from_user_id_str": "302078903", "from_user_name": "USA Android Tablet", "geo": null, "id": 148839802224115700, "id_str": "148839802224115712", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1362193017/usaandroid_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1362193017/usaandroid_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "USA Android: PanDigital STAR eReader, ANDROID Wi-Fi, 7in Camera Tablet #android http://t.co/6yzq7efM #android #tabletpc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:07 +0000", "from_user": "nimrodking", "from_user_id": 78867776, "from_user_id_str": "78867776", "from_user_name": "Oluwafemi Otuyemi", "geo": null, "id": 148839797333561340, "id_str": "148839797333561344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701941676/time_mag_person_of_the_year_85827_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701941676/time_mag_person_of_the_year_85827_normal.jpg", "source": "<a href="http://m.ntwyt.com" rel="nofollow">Ntwyt\\u2122</a>", "text": "The only ppl more dumb dan Nigerian *legislooters*, are d GOP house members in d USA... They will do anytin 2 make sure OBAMA fails..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:07 +0000", "from_user": "dawnvarnellphx", "from_user_id": 20741690, "from_user_id_str": "20741690", "from_user_name": "Dawn Varnell", "geo": null, "id": 148839795710365700, "id_str": "148839795710365696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Modification blunders bedevil US housing recovery http://t.co/x71iwbbl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:07 +0000", "from_user": "itsletticia", "from_user_id": 220378610, "from_user_id_str": "220378610", "from_user_name": "Let\\u00EDcia", "geo": null, "id": 148839794951204860, "id_str": "148839794951204866", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681059248/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681059248/image_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Me pergunte qualquer coisa. - \\u203A 1. Altura? 2. Peso? 3. Voc\\u00EA fuma? 4. Voc\\u00EA bebe? 5. Usa/j\\u00E1 usou drogas? 6.... http://t.co/XOmXjIOk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:06 +0000", "from_user": "ghost14_", "from_user_id": 288941047, "from_user_id_str": "288941047", "from_user_name": "ghost \\u0627\\u0644\\u0634\\u0628\\u062D", "geo": null, "id": 148839791952269300, "id_str": "148839791952269313", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1640765454/shoala_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640765454/shoala_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "god damn AlSaud god damn AlSaud #saudi #ksa #usa #us #Obama #oil", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:06 +0000", "from_user": "702_870_HELP", "from_user_id": 164355552, "from_user_id_str": "164355552", "from_user_name": "Join the Fight", "geo": null, "id": 148839791092432900, "id_str": "148839791092432896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1239984194/gavel_ss_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1239984194/gavel_ss_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Modification blunders bedevil US housing recovery: McPherson has owned his home since 1974 but was recently deni... http://t.co/SUrQHt0x", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:06 +0000", "from_user": "NaaD28", "from_user_id": 102061262, "from_user_id_str": "102061262", "from_user_name": "Little Scorpion", "geo": null, "id": 148839790807220220, "id_str": "148839790807220224", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1656879331/image_5__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656879331/image_5__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @HechosFrankIero: \"Emo es un termino que la gente usa solo para derribarnos por ser diferentes. No tiene significado a menos que tu le des uno(+)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:04 +0000", "from_user": "SBHMuseum", "from_user_id": 171899574, "from_user_id_str": "171899574", "from_user_name": "Sewall-Belmont House", "geo": null, "id": 148839785098788860, "id_str": "148839785098788864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1089731074/colorhouse-thumbnail_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1089731074/colorhouse-thumbnail_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @statedept: #SecClinton delivers remarks on Women, Peace and Security at 2:30 PM EST today: http://t.co/ASzf2C50 | More:...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:02 +0000", "from_user": "jujubaaaa97", "from_user_id": 45232987, "from_user_id_str": "45232987", "from_user_name": "julia", "geo": null, "id": 148839776366243840, "id_str": "148839776366243840", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1644222531/July_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644222531/July_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @AsPatadas: \\u2013 voc\\u00EA usa qual operadora? \\u2013 a tim \\u2013 sa\\u00FAde", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:01 +0000", "from_user": "Cristiliane_", "from_user_id": 199408319, "from_user_id_str": "199408319", "from_user_name": "Criis_", "geo": null, "id": 148839769781186560, "id_str": "148839769781186560", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1655609764/kkkkkkkk_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655609764/kkkkkkkk_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ESSESGAYS: \"como vc pode gostar de tatuagem e alargador? que coisa feia\" disse a pessoa que gosta de funk usa shortinho de 5cm e tem piercing no umbigo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:01 +0000", "from_user": "musecrossing", "from_user_id": 12748622, "from_user_id_str": "12748622", "from_user_name": "musecrossing", "geo": null, "id": 148839769680515070, "id_str": "148839769680515072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1670091154/227b8ddf-4d13-479b-a7cf-6b13b0314ca0_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670091154/227b8ddf-4d13-479b-a7cf-6b13b0314ca0_normal.png", "source": "<a href="http://blip.fm" rel="nofollow">Blip.fm</a>", "text": "rb@LadyFox: \"Nice collaboration, like it ;-)\" [Hello USA!] \\u266B http://t.co/zsvInbLM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:58 +0000", "from_user": "FuckTonSwag", "from_user_id": 353070220, "from_user_id_str": "353070220", "from_user_name": "I was @Fuck_Smile_ \\u2020", "geo": null, "id": 148839759467384830, "id_str": "148839759467384832", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697244851/tumblr_lw7h1koyVu1qikojdo1_500_large_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697244851/tumblr_lw7h1koyVu1qikojdo1_500_large_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @ANABRICOT: USA: Chris Brown, Justin Bieber, Lady Gaga, Usher, Rihanna,.. France: Colonel Reyel, Zaz, Christophe Willem, Gr\\u00E9goire,.. Qui veut d\\u00E9m\\u00E9nager?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:58 +0000", "from_user": "lislBR", "from_user_id": 26476866, "from_user_id_str": "26476866", "from_user_name": "Lisl BR", "geo": null, "id": 148839758242643970, "id_str": "148839758242643968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680701265/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680701265/image_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@KnightShiftLuv Sorry! For once the song is available in my country but then it's not in the USA...", "to_user": "KnightShiftLuv", "to_user_id": 86272503, "to_user_id_str": "86272503", "to_user_name": "The KnightShift"}, +{"created_at": "Mon, 19 Dec 2011 18:58:57 +0000", "from_user": "synarasvnn", "from_user_id": 306530330, "from_user_id_str": "306530330", "from_user_name": "Synara \\u2601", "geo": null, "id": 148839755944181760, "id_str": "148839755944181760", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700975054/P291011_2315_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700975054/P291011_2315_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:57 +0000", "from_user": "delia2727", "from_user_id": 161046659, "from_user_id_str": "161046659", "from_user_name": "delia.castillos", "geo": null, "id": 148839754606190600, "id_str": "148839754606190593", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1507986468/tn_giselebundchen040ca_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1507986468/tn_giselebundchen040ca_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@noticiascomjoao SOY DE MEXICO PERO VIVO EN FLORIDA USA Y TU", "to_user": "noticiascomjoao", "to_user_id": 192618309, "to_user_id_str": "192618309", "to_user_name": "Jo\\u00E3o Rodrigues", "in_reply_to_status_id": 148839332353015800, "in_reply_to_status_id_str": "148839332353015808"}, +{"created_at": "Mon, 19 Dec 2011 18:58:56 +0000", "from_user": "cermarytoro", "from_user_id": 129637480, "from_user_id_str": "129637480", "from_user_name": "Cermary A. Toro ", "geo": null, "id": 148839751405944830, "id_str": "148839751405944833", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1553556327/Foto1006_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553556327/Foto1006_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ALFAREROS: \"ALFAREROS HOY EN NUESTRA FE EN VIVO\" EWTN \\n (especial de navidad) USA 6:00PM- MEXICO 5:00PM- BOGOTA 6:00PM\\n MADRID 12:00AM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:56 +0000", "from_user": "MyBieber1D", "from_user_id": 232579828, "from_user_id_str": "232579828", "from_user_name": "Mahone Girlfriend\\u2665", "geo": null, "id": 148839751183630340, "id_str": "148839751183630336", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1682661287/387172_294800997207152_183409211679665_1038068_493349916_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682661287/387172_294800997207152_183409211679665_1038068_493349916_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@EverDemiBieber haha sisi fijo que em deixen prk sino me muero ehh! apart el meu pare diu q no vol que vagi m\\u00E9s a UK k vagi a canada o USa", "to_user": "EverDemiBieber", "to_user_id": 86753875, "to_user_id_str": "86753875", "to_user_name": "LIVING, LOVING\\u2661.", "in_reply_to_status_id": 148837177680343040, "in_reply_to_status_id_str": "148837177680343040"}, +{"created_at": "Mon, 19 Dec 2011 18:58:56 +0000", "from_user": "WORLD_KIDS", "from_user_id": 107183932, "from_user_id_str": "107183932", "from_user_name": "Citizen of the World", "geo": null, "id": 148839751070384130, "id_str": "148839751070384128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1292880547/World_MAP_imagesCAPGBBE0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1292880547/World_MAP_imagesCAPGBBE0_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @StateDept: #SecClinton delivers remarks on Women, Peace and Security at 2:30 PM EST today: http://t.co/UC8ntoKO | More: http://t.co/7R3W0rtE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:56 +0000", "from_user": "Gaylenemik", "from_user_id": 431755511, "from_user_id_str": "431755511", "from_user_name": "Gaylene Fane", "geo": null, "id": 148839750428663800, "id_str": "148839750428663808", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681150881/f224e3nxi4_129935879-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681150881/f224e3nxi4_129935879-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "USA Industries A3112 Alternator: U.S.A. Industries A3112 IMPORT ALTERNATO http://t.co/0OLaykRK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:56 +0000", "from_user": "Never_Cum_Again", "from_user_id": 399406928, "from_user_id_str": "399406928", "from_user_name": "Slave D", "geo": null, "id": 148839748595748860, "id_str": "148839748595748864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1609538701/Fantasia_Painting_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609538701/Fantasia_Painting_normal.jpg", "source": "<a href="http://red-badger.com" rel="nofollow">Birdsong for Windows Phone</a>", "text": "@MstrsKeyholder Well thats a new low, I just got turned on watching Miley Cyrus's Party in the USA video! Chastity has really messed me up!", "to_user": "MstrsKeyholder", "to_user_id": 346905514, "to_user_id_str": "346905514", "to_user_name": "Mistress T"}, +{"created_at": "Mon, 19 Dec 2011 18:58:55 +0000", "from_user": "Valeria95BJ", "from_user_id": 258951624, "from_user_id_str": "258951624", "from_user_name": "Valeria Gardu\\u00F1o", "geo": null, "id": 148839747555561470, "id_str": "148839747555561472", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1523595054/tho2_9ZgLucPP5ShfD3u.0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1523595054/tho2_9ZgLucPP5ShfD3u.0_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "En las noticias de Cuatro, en un informe sobre Irak y USA... escuchando Wake me up when september ends #l\\u00E1grimas", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:55 +0000", "from_user": "heavymetalhooka", "from_user_id": 408061585, "from_user_id_str": "408061585", "from_user_name": "tarados pela gaga \\u2654", "geo": null, "id": 148839747236798460, "id_str": "148839747236798465", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698854669/tumblr_lvawq5rt3U1r2ldulo1_500_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698854669/tumblr_lvawq5rt3U1r2ldulo1_500_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@_Isabela_vilela \\u00E9 n\\u00E9, mais ai agente usa a tag", "to_user": "_Isabela_vilela", "to_user_id": 204873089, "to_user_id_str": "204873089", "to_user_name": "Little Monster ", "in_reply_to_status_id": 148839408655810560, "in_reply_to_status_id_str": "148839408655810561"}, +{"created_at": "Mon, 19 Dec 2011 18:58:54 +0000", "from_user": "AustinDealSavin", "from_user_id": 406611627, "from_user_id_str": "406611627", "from_user_name": "Deal Savings Austin", "geo": null, "id": 148839743612928000, "id_str": "148839743612928001", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1626241933/Janice_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626241933/Janice_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Shaw Loving Social does it! They are really offering 90% off. Sizzling hot http://t.co/OocmIy0h", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:54 +0000", "from_user": "smartypress", "from_user_id": 202128761, "from_user_id_str": "202128761", "from_user_name": "smartpress", "geo": null, "id": 148839740366520320, "id_str": "148839740366520320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Buy-to-let mortgages are like normal mortgages: mortgages in the USA for Canadians Buy-to-let mortgages are lik... http://t.co/csdHhiq3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:53 +0000", "from_user": "AcaoPolicial", "from_user_id": 101496213, "from_user_id_str": "101496213", "from_user_name": "Homem de DEUS", "geo": null, "id": 148839739292786700, "id_str": "148839739292786688", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534528829/anigiffff_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534528829/anigiffff_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Minha filha tamb\\u00E9m @lucitito Imuran 50 mg \\u00F1 vende em farm\\u00E1cia mas o governo do estado d\\u00E1 pela Unicat, minha irm\\u00E3 tb usa esse medicamento", "to_user": "lucitito", "to_user_id": 57459572, "to_user_id_str": "57459572", "to_user_name": "Luciana", "in_reply_to_status_id": 147654769639567360, "in_reply_to_status_id_str": "147654769639567361"}, +{"created_at": "Mon, 19 Dec 2011 18:58:53 +0000", "from_user": "RealAguileraBr", "from_user_id": 160678636, "from_user_id_str": "160678636", "from_user_name": "Xtina Aguilera BR", "geo": null, "id": 148839738630082560, "id_str": "148839738630082560", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695134960/AMAs_2011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695134960/AMAs_2011_normal.jpg", "source": "<a href="http://tweetree.com" rel="nofollow">Tweetree</a>", "text": "RT @xscarecrow Eu prefiro usa o tweetree do que o twitter normal. \\u00C9 praticamente a vers\\u00E3o atiga do twitter. (:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:58:52 +0000", "from_user": "organic_beauty_", "from_user_id": 14068080, "from_user_id_str": "14068080", "from_user_name": "Shalona Anuj, PhD", "geo": null, "id": 148839731919192060, "id_str": "148839731919192064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/235269846/Shalona-Anuj-PhD_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/235269846/Shalona-Anuj-PhD_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "The Weakening of the Fair Trade USA Label http://t.co/Idhj5cIY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:51 +0000", "from_user": "cirixepuli", "from_user_id": 433695290, "from_user_id_str": "433695290", "from_user_name": "Augustyna Mccrohon", "geo": null, "id": 148839730212126720, "id_str": "148839730212126720", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1685887364/744_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685887364/744_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "loan best http://t.co/U8wwE9d3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:51 +0000", "from_user": "Camibellotto", "from_user_id": 186152095, "from_user_id_str": "186152095", "from_user_name": "Cami Bellotto", "geo": null, "id": 148839728689578000, "id_str": "148839728689577985", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685546373/Imagen_003_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685546373/Imagen_003_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@LuchiChaves a mi me ama, a vos te usa-", "to_user": "LuchiChaves", "to_user_id": 160358512, "to_user_id_str": "160358512", "to_user_name": "Luciana Chaves", "in_reply_to_status_id": 148839072826261500, "in_reply_to_status_id_str": "148839072826261505"}, +{"created_at": "Mon, 19 Dec 2011 18:58:50 +0000", "from_user": "qtrspike", "from_user_id": 363248213, "from_user_id_str": "363248213", "from_user_name": "Hamad Al-Muhannadi", "geo": null, "id": 148839724897943550, "id_str": "148839724897943552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\\u062A\\u062D\\u0642\\u0642 \\u0645\\u0646 \\u0647\\u0630\\u0627 \\u0627\\u0644\\u0641\\u064A\\u062F\\u064A\\u0648 -- Melanie Amaro - Top 4 - Pepsi Challenge - THE X FACTOR USA 2011 http://t.co/c78oUu37 via @youtube", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:49 +0000", "from_user": "1058willie", "from_user_id": 246594238, "from_user_id_str": "246594238", "from_user_name": "Willie Da Underboss", "geo": null, "id": 148839722502991870, "id_str": "148839722502991872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699187612/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699187612/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TheLotCrew: THE FEASTIVAL Featuring WALE, Tyga, Los & Moufy -Saturday, 1/28/12, @ The Palladium Worcester, MA, USA @SwaggaBoyLOS http://t.co/dcF6KGO2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:48 +0000", "from_user": "UHNLibraries", "from_user_id": 282224181, "from_user_id_str": "282224181", "from_user_name": "UHN Libraries", "geo": null, "id": 148839718828781570, "id_str": "148839718828781569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317632005/uhnlogo2_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317632005/uhnlogo2_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "New #PubMed Tutorial reflects PubMed changes through December 12, 2011 http://t.co/0039YBKm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:48 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148839715037122560, "id_str": "148839715037122560", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "JOS\\u00C9 USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:48 +0000", "from_user": "kaloqyhol", "from_user_id": 397019714, "from_user_id_str": "397019714", "from_user_name": "Viehmann Eberly", "geo": null, "id": 148839714902900740, "id_str": "148839714902900736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "free gay dating sites usa: http://t.co/cVvkiODp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:47 +0000", "from_user": "falaproGleisson", "from_user_id": 312802547, "from_user_id_str": "312802547", "from_user_name": "@falaproGleisson", "geo": null, "id": 148839713317453820, "id_str": "148839713317453825", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1655730276/gleisson_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655730276/gleisson_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "awn love compro uma pulseirinha com meu nome pra usa, *\\u2022* / @nathfogaca_ aqe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:47 +0000", "from_user": "_DevilishGirl", "from_user_id": 388981935, "from_user_id_str": "388981935", "from_user_name": "let me bite? :3", "geo": null, "id": 148839712189202430, "id_str": "148839712189202432", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1634011495/DSC05924_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634011495/DSC05924_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ESSESGAYS: \"como vc pode gostar de tatuagem e alargador? que coisa feia\" disse a pessoa que gosta de funk usa shortinho de 5cm e tem piercing no umbigo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:45 +0000", "from_user": "BagusTV", "from_user_id": 65473824, "from_user_id_str": "65473824", "from_user_name": "Bagus TV", "geo": null, "id": 148839702798151680, "id_str": "148839702798151681", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/361362901/tv_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/361362901/tv_normal.jpeg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Arrest warrant issued for Iraqi VP on terrorism charges - USA TODAY: USA TODAYArrest warrant issued for Iraqi VP... http://t.co/JpkkHi2o", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:44 +0000", "from_user": "purebahrain", "from_user_id": 328933147, "from_user_id_str": "328933147", "from_user_name": "\\u062E\\u064A\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0646\\u062A\\u062F\\u0649 \\u0627\\u0644\\u0633\\u064A\\u0627\\u0633\\u064A", "geo": null, "id": 148839701795708930, "id_str": "148839701795708929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1532540592/70273373_3429342_44984261_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1532540592/70273373_3429342_44984261_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "PressTv | 'No military solution to Bahrain crisis' | http://t.co/ZliT7Znu | #Bahrain #arabspring #WallStreet #kuwait #USA #US #UK #KSA #TV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:44 +0000", "from_user": "Fame_nd_Fortune", "from_user_id": 96908733, "from_user_id_str": "96908733", "from_user_name": "A{FREE}CA", "geo": null, "id": 148839700919095300, "id_str": "148839700919095296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1649295823/2273_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649295823/2273_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Previs: Killed Osama, Ended war in Iraq, Passed comprehensive health care, Ended Don't Ask Don't tell, Saved USA Auto Industry #WhatObamaHasDone", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:44 +0000", "from_user": "Swiftlogy", "from_user_id": 94201562, "from_user_id_str": "94201562", "from_user_name": "Squared Obsessed \\u03B5\\u00EF\\u0437", "geo": null, "id": 148839700692598800, "id_str": "148839700692598784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698455370/tumblr_lux0dzdSaV1r2rkq5o6_250_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698455370/tumblr_lux0dzdSaV1r2rkq5o6_250_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "#Swiftlogy Taylor finished Speak Now tour in the USA with two sold out concerts at Madison Square Garden!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:43 +0000", "from_user": "esbeJr", "from_user_id": 190141847, "from_user_id_str": "190141847", "from_user_name": "ESBE", "geo": null, "id": 148839697249075200, "id_str": "148839697249075201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1651588137/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651588137/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "http://t.co/hjnHLLSY @optimustrill", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:42 +0000", "from_user": "sportistnews", "from_user_id": 256919568, "from_user_id_str": "256919568", "from_user_name": "sportist", "geo": null, "id": 148839693327413250, "id_str": "148839693327413249", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1442799074/120logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1442799074/120logo_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "#USApro host cities Link: http://t.co/gDhGTTZi #cycling #tdf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:42 +0000", "from_user": "toddgriffin100", "from_user_id": 308871398, "from_user_id_str": "308871398", "from_user_name": "Todd Griffin", "geo": null, "id": 148839692438208500, "id_str": "148839692438208513", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1527128499/TimesLeadericon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1527128499/TimesLeadericon_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @NealBradley: Murray State debuts at #22 in the latest Coaches Poll from ESPN/USA Today. http://t.co/dZO7wcbA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:42 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148839690743726080, "id_str": "148839690743726080", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "AMANDA USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:42 +0000", "from_user": "UTEPAthletics", "from_user_id": 27604209, "from_user_id_str": "27604209", "from_user_name": "UTEP Miners", "geo": null, "id": 148839690693390340, "id_str": "148839690693390336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1487152367/picktwit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1487152367/picktwit_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "UTEP's Julian Washburn was selected C-USA Freshman of the Week for the 2nd time in a row on Monday. http://t.co/reVTBe9E #minerstrong", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:41 +0000", "from_user": "UnTalGus", "from_user_id": 181352514, "from_user_id_str": "181352514", "from_user_name": "gustavo ivan flores", "geo": null, "id": 148839689363783680, "id_str": "148839689363783680", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698647573/Foto_del_d_a_05-12-11_a_la_s__20.24_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698647573/Foto_del_d_a_05-12-11_a_la_s__20.24_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @_Adicta: TU LA QUE LEE ESTE TWEET USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:41 +0000", "from_user": "pubzine", "from_user_id": 231152451, "from_user_id_str": "231152451", "from_user_name": "Pub lettoriallaspina", "geo": null, "id": 148839687803506700, "id_str": "148839687803506688", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1673283906/pub_logo_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673283906/pub_logo_small_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Dopo l'Europa l'indagine su editori ebook si estende agli USA http://t.co/ucg9IYnf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:41 +0000", "from_user": "restarteiroos", "from_user_id": 181776430, "from_user_id_str": "181776430", "from_user_name": "brendac. do thomas", "geo": null, "id": 148839687006584830, "id_str": "148839687006584832", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1588689743/restart_divulg2011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1588689743/restart_divulg2011_normal.jpg", "source": "<a href="http://twitpic.com" rel="nofollow">Twitpic</a>", "text": "RT @PeLuMiAngel: BG : @restarteiroos , vai em + view full size e usa em sidebar transparente, espero que goxxte brenda s2' http://t.co/P3LxXEo8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:41 +0000", "from_user": "GabriellAmor_", "from_user_id": 358873321, "from_user_id_str": "358873321", "from_user_name": "Est. DETROIT1996", "geo": null, "id": 148839685970595840, "id_str": "148839685970595840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699385404/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699385404/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@MyStoriesBook: The different about asian and USA : asian = :) usa = (:\\u201D dont qet it ?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:40 +0000", "from_user": "Lex_BlazedUp_", "from_user_id": 246600722, "from_user_id_str": "246600722", "from_user_name": "Real Recognize Real ", "geo": null, "id": 148839685509222400, "id_str": "148839685509222400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688798765/IMG00712-20111212-0626_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688798765/IMG00712-20111212-0626_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "When a Nigga Try To put another Nigga Down To Make himself Look better to a female usa #BitchNiggasWitNoGame", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:40 +0000", "from_user": "laubrouillet", "from_user_id": 61448320, "from_user_id_str": "61448320", "from_user_name": "Laurent Brouillet", "geo": null, "id": 148839684095741950, "id_str": "148839684095741953", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/339256248/Anniv_Baptiste_cut_twit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/339256248/Anniv_Baptiste_cut_twit_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Oh oh oh (TBWA\\Media Arts Lab, USA) \\nhttp://t.co/iJzwGedm\\n#in", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:40 +0000", "from_user": "Nikoletkf", "from_user_id": 431699559, "from_user_id_str": "431699559", "from_user_name": "Nikole Brunton", "geo": null, "id": 148839683055566850, "id_str": "148839683055566849", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681028267/large_35448_102709169781436_100001270599850_15268_6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681028267/large_35448_102709169781436_100001270599850_15268_6_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Umarex Beretta 92 Semi-Automatic .177 Caliber CO2 Pistol With Nickel Finish Md: 2253001.: Umarex Beretta 92 Semi... http://t.co/zoBryE1c", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:39 +0000", "from_user": "fbetkowski", "from_user_id": 179714031, "from_user_id_str": "179714031", "from_user_name": "Frank Betkowski", "geo": null, "id": 148839678634762240, "id_str": "148839678634762240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1123953123/fbetkowski_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1123953123/fbetkowski_normal.gif", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "New publication: IFRS Project Insights Update: Financial Instruments \\u2014 Impairment: Discusses the November 9\\u201310,... http://t.co/TLLYaUFC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:38 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148839675673591800, "id_str": "148839675673591808", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "PROSTITUTA USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:36 +0000", "from_user": "laudamus2004", "from_user_id": 397593012, "from_user_id_str": "397593012", "from_user_name": "Daniel", "geo": null, "id": 148839666987184130, "id_str": "148839666987184128", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1605131046/_________________________02_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1605131046/_________________________02_normal.jpg", "source": "<a href="http://www.cubadebate.cu" rel="nofollow">Cubadebate</a>", "text": "RT @cubadebate: #EEUU abandona #Iraq pero deja miles de mercenarios desplegados http://t.co/WvfKeobd #USA #Obama", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:36 +0000", "from_user": "SaHanzen", "from_user_id": 202361579, "from_user_id_str": "202361579", "from_user_name": "Sabrina Hanzen", "geo": null, "id": 148839664613199870, "id_str": "148839664613199872", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1599796312/a327510d-b101-49b1-aba6-dd093e677d58_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599796312/a327510d-b101-49b1-aba6-dd093e677d58_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @comedia_gospel: crente gremista n\\u00E3o acredita em papai noel porque ele usa um uniforme ''colorado'' #LLOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:35 +0000", "from_user": "cristiancas_", "from_user_id": 127137263, "from_user_id_str": "127137263", "from_user_name": "cristian cas", "geo": null, "id": 148839664516739070, "id_str": "148839664516739072", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1412850833/IMG3411A_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1412850833/IMG3411A_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "esse povo q usa brinco de ziper nao merece viver", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:34 +0000", "from_user": "robenajbvgentry", "from_user_id": 277670628, "from_user_id_str": "277670628", "from_user_name": "robena gentry", "geo": null, "id": 148839659269660670, "id_str": "148839659269660672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1678876850/1170300_important_call_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678876850/1170300_important_call_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Diet Doc HCG Diet & Weight Loss - The Lowest Priced Medically, Supervised hCG Diet Program in the USA: A few mon... http://t.co/EkrHL1fR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:32 +0000", "from_user": "mattbrant1981", "from_user_id": 147927884, "from_user_id_str": "147927884", "from_user_name": "Matt Brantingham", "geo": null, "id": 148839651757670400, "id_str": "148839651757670400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/930462425/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/930462425/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@cultofmac: New post: Unlocked T-Mobile iPhones Get Upgraded To 3G Speeds In Some Parts Of USA http://t.co/dTcJVY8I\\u201D #ilovecultofmac", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:32 +0000", "from_user": "hgfun", "from_user_id": 50608849, "from_user_id_str": "50608849", "from_user_name": "eric rulier", "geo": null, "id": 148839651342417920, "id_str": "148839651342417920", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1150937149/HGfun_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1150937149/HGfun_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @5emeVitesse: Usa : Obama signe la loi sur la d\\u00E9tention ind\\u00E9finie et la torture http://t.co/9Wr5L0Cb via @AddThis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:32 +0000", "from_user": "miicaelarolleri", "from_user_id": 223312570, "from_user_id_str": "223312570", "from_user_name": "Mica_Pauliter", "geo": null, "id": 148839651183038460, "id_str": "148839651183038464", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702279675/Tapa_2520P_2520Chaves_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702279675/Tapa_2520P_2520Chaves_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"Que malos son yo lo quiero a peter\" y le digo por que y dice \"por que es gracioso cuando usa las plumas de mujer en la cabeza\" tiene 4 a\\u00F1os", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:32 +0000", "from_user": "NormsBrightIdea", "from_user_id": 430407404, "from_user_id_str": "430407404", "from_user_name": "Normandy Piccolo", "geo": null, "id": 148839650864275460, "id_str": "148839650864275456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1679223062/Normandy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679223062/Normandy_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "FYI...Law and Order Crimiinal Intent, with Chris Noth, marathon on USA Network.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:32 +0000", "from_user": "feeapple", "from_user_id": 40326341, "from_user_id_str": "40326341", "from_user_name": "Felipe Domingues", "geo": null, "id": 148839650176417800, "id_str": "148839650176417792", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689428847/386308_326621170683347_100000064014445_1378816_673131510_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689428847/386308_326621170683347_100000064014445_1378816_673131510_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:32 +0000", "from_user": "astridvprovost", "from_user_id": 277920506, "from_user_id_str": "277920506", "from_user_name": "astrid provost", "geo": null, "id": 148839650058965000, "id_str": "148839650058964992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1678877843/1170492_young_woman_smiling_at_camera_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678877843/1170492_young_woman_smiling_at_camera_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Diet Doc HCG Diet & Weight Loss - The Lowest Priced Medically, Supervised hCG Diet Program in the USA: A few mon... http://t.co/ujLgnErw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:31 +0000", "from_user": "robsica", "from_user_id": 161838894, "from_user_id_str": "161838894", "from_user_name": "Rob Sica", "geo": null, "id": 148839646216986620, "id_str": "148839646216986625", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1433245905/me.and.cat2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1433245905/me.and.cat2_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Bresson at the National Gallery http://t.co/MYiYGJ9G", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:31 +0000", "from_user": "edsona366", "from_user_id": 230848180, "from_user_id_str": "230848180", "from_user_name": "EDSON 36", "geo": null, "id": 148839645986291700, "id_str": "148839645986291714", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@Fernanda_Gentil fernanda que numero vc cal\\u00E7a, por favor usa scarpin no seu programa e mostra eles, adoraria cheirar seu chulesinho", "to_user": "Fernanda_Gentil", "to_user_id": 133687873, "to_user_id_str": "133687873", "to_user_name": "Fernanda Gentil"}, +{"created_at": "Mon, 19 Dec 2011 18:58:31 +0000", "from_user": "keliovimcmullin", "from_user_id": 277681553, "from_user_id_str": "277681553", "from_user_name": "keli mcmullin", "geo": null, "id": 148839644363108350, "id_str": "148839644363108353", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1678878546/1171215_where_are_you_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678878546/1171215_where_are_you_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Diet Doc HCG Diet & Weight Loss - The Lowest Priced Medically, Supervised hCG Diet Program in the USA: A few mon... http://t.co/ZTFw9SCr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:31 +0000", "from_user": "Faysaldhk", "from_user_id": 239902064, "from_user_id_str": "239902064", "from_user_name": "Ahmed Faysal", "geo": null, "id": 148839643780096000, "id_str": "148839643780096001", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1373731418/Hydrangeas_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1373731418/Hydrangeas_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @StateDept: #SecClinton delivers remarks on Women, Peace and Security at 2:30 PM EST today: http://t.co/UC8ntoKO | More: http://t.co/7R3W0rtE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:30 +0000", "from_user": "SgtDizzyPepper", "from_user_id": 116791875, "from_user_id_str": "116791875", "from_user_name": "Saide Guerrero", "geo": null, "id": 148839643125792770, "id_str": "148839643125792768", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1630638192/Foto1881_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630638192/Foto1881_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ALFAREROS: \"ALFAREROS HOY EN NUESTRA FE EN VIVO\" EWTN \\n (especial de navidad) USA 6:00PM- MEXICO 5:00PM- BOGOTA 6:00PM\\n MADRID 12:00AM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:29 +0000", "from_user": "Cherellewvl", "from_user_id": 440151989, "from_user_id_str": "440151989", "from_user_name": "Cherelle Volpicelli", "geo": null, "id": 148839639405432830, "id_str": "148839639405432834", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700430626/large_DSC_0955_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700430626/large_DSC_0955_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Born In The USA (12\" Freedom mix): http://t.co/voyQ7lcQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:29 +0000", "from_user": "MRXTAM", "from_user_id": 131673434, "from_user_id_str": "131673434", "from_user_name": "ROLANDO RIVERA", "geo": null, "id": 148839638352666620, "id_str": "148839638352666625", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1577285413/9KGar9eX_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1577285413/9KGar9eX_normal", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "@ROSAHG74 @PedroFerriz desde hace mucho dejo de ser comunicador, usa los medios para dar sus \"comentarios\" y se molesta sino estas d acuerdo", "to_user": "ROSAHG74", "to_user_id": 197609525, "to_user_id_str": "197609525", "to_user_name": "Rosa ", "in_reply_to_status_id": 148838779375980540, "in_reply_to_status_id_str": "148838779375980544"}, +{"created_at": "Mon, 19 Dec 2011 18:58:29 +0000", "from_user": "mayrabsfitts", "from_user_id": 277874670, "from_user_id_str": "277874670", "from_user_name": "mayra fitts", "geo": null, "id": 148839638260400130, "id_str": "148839638260400128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1678879361/1183984_mysterious_girl_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678879361/1183984_mysterious_girl_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Diet Doc HCG Diet & Weight Loss - The Lowest Priced Medically, Supervised hCG Diet Program in the USA: A few mon... http://t.co/q3gHEKww", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:29 +0000", "from_user": "andre23p", "from_user_id": 224037275, "from_user_id_str": "224037275", "from_user_name": "andrea pe\\u00F1a", "geo": null, "id": 148839636305846270, "id_str": "148839636305846272", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1305106498/IMG00877-20110306-1801_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1305106498/IMG00877-20110306-1801_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "en Venezuela cancelan las clases por lluvia y en USA cancelan las clases por nieve #prefieromilvecesmasnievequelluvia", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:28 +0000", "from_user": "CIPEglobal", "from_user_id": 67101140, "from_user_id_str": "67101140", "from_user_name": "CIPE", "geo": null, "id": 148839635114668030, "id_str": "148839635114668032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1173591332/CIPEfacebook_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1173591332/CIPEfacebook_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @StateDept: #SecClinton delivers remarks on Women, Peace and Security at 2:30 PM EST today: http://t.co/UC8ntoKO | More: http://t.co/7R3W0rtE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:27 +0000", "from_user": "jetcitystar", "from_user_id": 209492408, "from_user_id_str": "209492408", "from_user_name": "Isaac Alexander", "geo": null, "id": 148839630727417860, "id_str": "148839630727417856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1320596010/jetcity-icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1320596010/jetcity-icon_normal.jpg", "source": "<a href="http://www.socialflow.com" rel="nofollow">SocialFlow</a>", "text": "RT @SPACEdotcom: Station Crew Set To Launch To A New Home For The Holidays http://t.co/225I3WNf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:27 +0000", "from_user": "ThiaguinMattos", "from_user_id": 264510179, "from_user_id_str": "264510179", "from_user_name": "Thiago Mattos", "geo": null, "id": 148839630677098500, "id_str": "148839630677098496", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693032447/many_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693032447/many_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "meu pai falou que 5 pras 17:00 ele queria usa aqui acho que ele dormiu ;/", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:26 +0000", "from_user": "frenchfan1D", "from_user_id": 382007875, "from_user_id_str": "382007875", "from_user_name": "ali payne \\u2661", "geo": null, "id": 148839624301744130, "id_str": "148839624301744128", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699018204/tumblr_lrwlblzhtf1r296ljo2_250_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699018204/tumblr_lrwlblzhtf1r296ljo2_250_normal.gif", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @ANABRICOT: USA: Chris Brown, Justin Bieber, Lady Gaga, Usher, Rihanna,.. France: Colonel Reyel, Zaz, Christophe Willem, Gr\\u00E9goire,.. Qui veut d\\u00E9m\\u00E9nager?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:25 +0000", "from_user": "Tabathahlr", "from_user_id": 430049532, "from_user_id_str": "430049532", "from_user_name": "Tiffanie Scrim", "geo": null, "id": 148839622523367420, "id_str": "148839622523367424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677525883/mdzv5345iu_112643774-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677525883/mdzv5345iu_112643774-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Get'm Get'm Wear 2-Inch Guitar Strap (Sergeant White): Top Quality Craftmanship, Hand Made in the USA, Longest S... http://t.co/cHTkeLxF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:24 +0000", "from_user": "MoversVideoGame", "from_user_id": 290030478, "from_user_id_str": "290030478", "from_user_name": "Richard Floyd", "geo": null, "id": 148839617490194430, "id_str": "148839617490194432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1331917628/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1331917628/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #5: Xbox 360 Rechargeable Battery 2-Pack: Xbox 360 Rechargeable Battery 2-Pack by Microsoft Software ... http://t.co/NLLcciyC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:24 +0000", "from_user": "brenda_ingrids2", "from_user_id": 318202245, "from_user_id_str": "318202245", "from_user_name": "Brenda I.", "geo": null, "id": 148839616928165900, "id_str": "148839616928165888", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1558241935/P050611_13.56_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1558241935/P050611_13.56_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @CantaCrente: Deus usa os pequenos detalhes para realizar grandes feitos para Sua gl\\u00F3ria.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:24 +0000", "from_user": "seupudim", "from_user_id": 178404457, "from_user_id_str": "178404457", "from_user_name": "F\\u00E1bio Augusto ", "geo": null, "id": 148839616311595000, "id_str": "148839616311595008", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676137368/PQAAAD4qUpJq7wMJvE_fS79-xrq-mwZQY7hnf3NP21Gh4jBuUF6vG3TtpmNrV9gktNe3kdXourAnXT0BciJ6tNGba0AAm1T1UDZQ6gaxCi7vI_YIhGWmiXMuLqqw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676137368/PQAAAD4qUpJq7wMJvE_fS79-xrq-mwZQY7hnf3NP21Gh4jBuUF6vG3TtpmNrV9gktNe3kdXourAnXT0BciJ6tNGba0AAm1T1UDZQ6gaxCi7vI_YIhGWmiXMuLqqw_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:23 +0000", "from_user": "visokazes", "from_user_id": 419548999, "from_user_id_str": "419548999", "from_user_name": "Dita Felten", "geo": null, "id": 148839613623054340, "id_str": "148839613623054336", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657546396/19_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657546396/19_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @dixusafa: cheap auto insurance nova scotia http://t.co/DFcJW13V", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:23 +0000", "from_user": "ItahSvn", "from_user_id": 130586524, "from_user_id_str": "130586524", "from_user_name": "mon", "geo": null, "id": 148839612771602430, "id_str": "148839612771602432", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1661275084/pizap.com13224280855311_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661275084/pizap.com13224280855311_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Amor : sentimiento que usa el coraz\\u00F3n y no la inteligencia.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:23 +0000", "from_user": "_Uma_cantora", "from_user_id": 415133641, "from_user_id_str": "415133641", "from_user_name": "Uma cantora citou'", "geo": null, "id": 148839612142460930, "id_str": "148839612142460929", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699248451/selly_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699248451/selly_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Demi_my_smile: Demi n\\u00E3o usa mais o anel da pureza, mas disse que a promessa que fez quando come\\u00E7ou a us\\u00E1-lo ainda permanece..#DemiFatcs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:23 +0000", "from_user": "WillyARadio", "from_user_id": 50914819, "from_user_id_str": "50914819", "from_user_name": "Willy Alzate", "geo": null, "id": 148839610670268400, "id_str": "148839610670268416", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1683359894/avartar_don_ramon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683359894/avartar_don_ramon_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Si usted tiene moto y usa de esos cascos gigantes pues no me salude, quedo en las mismas.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:23 +0000", "from_user": "DTNUSA", "from_user_id": 219913533, "from_user_id_str": "219913533", "from_user_name": "DTN USA", "geo": null, "id": 148839610489901060, "id_str": "148839610489901059", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696502703/DTN_USA_DEC_16_2011_CORRECTED_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696502703/DTN_USA_DEC_16_2011_CORRECTED_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "DTN USA: City Room: No Bail for Man Accused of Burning Woman Alive: A man accused of setting a woman on fire ins... http://t.co/iwRDlpG0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:22 +0000", "from_user": "afcalessandro", "from_user_id": 360924553, "from_user_id_str": "360924553", "from_user_name": "Alessandro Schmitz", "geo": null, "id": 148839609823002620, "id_str": "148839609823002626", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693911009/tumblr_kwvi2iiAku1qzcg4fo1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693911009/tumblr_kwvi2iiAku1qzcg4fo1_500_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Nois usa , nois porta\\nE n\\u00E3o tem medo de gastar\\nQuem v\\u00EA portando Oakley joga os dedos pro ar\\nEssa \\u00E9 pra nois mesmo ta ligado ? \\u266B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:22 +0000", "from_user": "virgiemmarron", "from_user_id": 305757047, "from_user_id_str": "305757047", "from_user_name": "Virgie Marron", "geo": null, "id": 148839607767801860, "id_str": "148839607767801857", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698633651/imagesCAXJE67E_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698633651/imagesCAXJE67E_normal", "source": "<a href="http://42lv5500tv.com" rel="nofollow">42lv5500tvdotcom</a>", "text": "Where In USA Can I Get BLACKBERRY CURVE 8330-Rubber Black Hard Case for BlackBerry Curve 833 http://t.co/m1cSXOYr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:20 +0000", "from_user": "qetezypapat", "from_user_id": 431404597, "from_user_id_str": "431404597", "from_user_name": "Lovedaia Boyett", "geo": null, "id": 148839598867484670, "id_str": "148839598867484672", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680814862/9_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680814862/9_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @vadufyx: payday loan advance columbus ohio http://t.co/tNec9BV3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:19 +0000", "from_user": "sbdr01", "from_user_id": 169500159, "from_user_id_str": "169500159", "from_user_name": "RODOLFO DIEZB. SOSA", "geo": null, "id": 148839597093290000, "id_str": "148839597093289985", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1145663486/DSC00009_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1145663486/DSC00009_normal.JPG", "source": "<a href="http://www.yoono.com" rel="nofollow">yoono</a>", "text": "@Carliux05 \\u00AC\\u00AC 5 o 6 veces o sea toda tu estadia jajaja en el cbtis...!!! jajajja...! usa tus encantos nena...! acecarte a un caballero y di", "to_user": "Carliux05", "to_user_id": 108667216, "to_user_id_str": "108667216", "to_user_name": "Carla Fernandez", "in_reply_to_status_id": 148839167906951170, "in_reply_to_status_id_str": "148839167906951168"}, +{"created_at": "Mon, 19 Dec 2011 18:58:18 +0000", "from_user": "dacevedoVE", "from_user_id": 47378405, "from_user_id_str": "47378405", "from_user_name": "Daniel Acevedo", "geo": null, "id": 148839591812677630, "id_str": "148839591812677634", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1646396516/246668_10150261662637176_638377175_8921070_3319156_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646396516/246668_10150261662637176_638377175_8921070_3319156_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "La gente todav\\u00EDa usa mousepad? Eso es tan de los 90' RT @edvill: MousePads con mis ilustraciones, ya los viste? http://t.co/twECydhq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:18 +0000", "from_user": "ahylofebu", "from_user_id": 315186651, "from_user_id_str": "315186651", "from_user_name": "Wilsey Guillermo", "geo": null, "id": 148839591141584900, "id_str": "148839591141584896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1446666519/1226_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1446666519/1226_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "1860 ( I Mille di Garibaldi ) ( Sicilia Eighteen Sixty ) [ NON-USA FORMAT, PAL, Reg.0 Import - Italy ] (DVD) http://t.co/6PJAcYwf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:18 +0000", "from_user": "Amsterdam305410", "from_user_id": 30322768, "from_user_id_str": "30322768", "from_user_name": "AMEN\\u2714 Verified ", "geo": null, "id": 148839590059450370, "id_str": "148839590059450368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698521422/331615629_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698521422/331615629_normal.jpg", "source": "<a href="http://twitpic.com" rel="nofollow">Twitpic</a>", "text": "http://t.co/Vvy381IG - @KDTREY5 KEEP UP THE GOOD WORK,USA CW IS FIYAH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:17 +0000", "from_user": "PatryMusic97", "from_user_id": 329112697, "from_user_id_str": "329112697", "from_user_name": "The Little Star Girl", "geo": null, "id": 148839586171330560, "id_str": "148839586171330561", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687516969/bQRMra17_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687516969/bQRMra17_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "@NoeliaMarsEdShe lo encontre!! pone que se usa en logica, el signo de la negacion (?) no tengo ni idea de que es", "to_user": "NoeliaMarsEdShe", "to_user_id": 294266644, "to_user_id_str": "294266644", "to_user_name": "Noelia D\\u00EDaz Rocha", "in_reply_to_status_id": 148839087464398850, "in_reply_to_status_id_str": "148839087464398849"}, +{"created_at": "Mon, 19 Dec 2011 18:58:17 +0000", "from_user": "nocyxap", "from_user_id": 432032693, "from_user_id_str": "432032693", "from_user_name": "Dereck Mcleese", "geo": null, "id": 148839585705754620, "id_str": "148839585705754624", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681937943/7_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681937943/7_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @fikotosob: cash converter loans http://t.co/5Rq5YTic", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:16 +0000", "from_user": "MynusCarlos", "from_user_id": 275284877, "from_user_id_str": "275284877", "from_user_name": "Mynus Carlos", "geo": null, "id": 148839583503753200, "id_str": "148839583503753216", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696806760/318510_166487546763899_100002079641234_348375_2117458082_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696806760/318510_166487546763899_100002079641234_348375_2117458082_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @radionovavida: #recomendo com can\\u00E7\\u00F5es que v\\u00E3o falar ao seu cora\\u00E7\\u00E3o um dos melhores lan\\u00E7amentos do ano @SamuelBarbosaSB USA MINHA VIDA @GrupoCanZion", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:15 +0000", "from_user": "ocnjradio", "from_user_id": 185300285, "from_user_id_str": "185300285", "from_user_name": "ocnjradio.com", "geo": null, "id": 148839580223815680, "id_str": "148839580223815681", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1125960695/OCNJ-200x200_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1125960695/OCNJ-200x200_normal.jpg", "source": "<a href="http://ocnjradio.com" rel="nofollow">Ocean City NJ Radio</a>", "text": "Now Playing on http://t.co/vGmhO5ax: USA-IRN Radio News - USA Radio News Break", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:15 +0000", "from_user": "FredNetRadio", "from_user_id": 33910303, "from_user_id_str": "33910303", "from_user_name": "FredNetRadio", "geo": null, "id": 148839580194439170, "id_str": "148839580194439168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/188307514/FNR-for-Twitter_normal.GIF", "profile_image_url_https": "https://si0.twimg.com/profile_images/188307514/FNR-for-Twitter_normal.GIF", "source": "<a href="http://frednetradio.com" rel="nofollow">FredNetRadio</a>", "text": "Now Playing on http://t.co/YHoCv8FN: USA-IRN Radio News - USA Radio News Break", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:15 +0000", "from_user": "BaltNetRadio", "from_user_id": 195116712, "from_user_id_str": "195116712", "from_user_name": "Baltimore Net Radio", "geo": null, "id": 148839580190261250, "id_str": "148839580190261249", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1192340235/Baltnetradio_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1192340235/Baltnetradio_normal.jpg", "source": "<a href="http://baltimorenetradio.com" rel="nofollow">Now Playing BNR</a>", "text": "Now Playing on BaltimoreNetRadio: USA-IRN Radio News - USA Radio News Break", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:13 +0000", "from_user": "Nate__James", "from_user_id": 39987236, "from_user_id_str": "39987236", "from_user_name": "Nate 'SugaJack'James", "geo": null, "id": 148839572044922880, "id_str": "148839572044922881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1562425351/Nate__James_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1562425351/Nate__James_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@dawnrobinson_ getting ready for pano in my dressing listening to my girl!! #followMe!! Coming to USA in 2012!! #reunion xxx", "to_user": "dawnrobinson_", "to_user_id": 127146515, "to_user_id_str": "127146515", "to_user_name": "Dawn Robinson"}, +{"created_at": "Mon, 19 Dec 2011 18:58:13 +0000", "from_user": "Apenas1Tequila", "from_user_id": 57694104, "from_user_id_str": "57694104", "from_user_name": "tequila da hellen", "geo": null, "id": 148839571533201400, "id_str": "148839571533201408", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693122197/341039_209533042462279_100002167551700_451259_571178296_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693122197/341039_209533042462279_100002167551700_451259_571178296_o_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ESSESGAYS: \"como vc pode gostar de tatuagem e alargador? que coisa feia\" disse a pessoa que gosta de funk usa shortinho de 5cm e tem piercing no umbigo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:12 +0000", "from_user": "la_pennysaver", "from_user_id": 125620608, "from_user_id_str": "125620608", "from_user_name": "LA PennySaver", "geo": null, "id": 148839567376662530, "id_str": "148839567376662528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/770000462/psusa_bigger_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/770000462/psusa_bigger_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "loving English Bulldog Puppies ready to go: loving English Bulldog Puppies ready to go\\n $110.00 http://t.co/64YzViKx - Los Angeles ads", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:12 +0000", "from_user": "Dinossaurelius", "from_user_id": 88059159, "from_user_id_str": "88059159", "from_user_name": "Dino", "geo": null, "id": 148839566588133380, "id_str": "148839566588133376", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1591954235/dinotrans_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591954235/dinotrans_normal.jpg", "source": "<a href="http://rockmelt.com" rel="nofollow">RockMelt</a>", "text": "Certeza? Fa\\u00E7o mais contatos e trabalho mais com ajuda das redes. N\\u00E3o \\u00E9 porque muita gente as usa pra perder tempo? @Djaguito @Greendevl", "to_user": "Djaguito", "to_user_id": 251409317, "to_user_id_str": "251409317", "to_user_name": "Leandro", "in_reply_to_status_id": 148839368684081150, "in_reply_to_status_id_str": "148839368684081152"}, +{"created_at": "Mon, 19 Dec 2011 18:58:11 +0000", "from_user": "SPACEdotcom", "from_user_id": 15431856, "from_user_id_str": "15431856", "from_user_name": "SPACE.com", "geo": null, "id": 148839563815686140, "id_str": "148839563815686144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1218223481/SPACE-profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218223481/SPACE-profile_normal.jpg", "source": "<a href="http://www.socialflow.com" rel="nofollow">SocialFlow</a>", "text": "Station Crew Set To Launch To A New Home For The Holidays http://t.co/225I3WNf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:11 +0000", "from_user": "JulianaAkari", "from_user_id": 377024264, "from_user_id_str": "377024264", "from_user_name": "Juliana Akari", "geo": null, "id": 148839560548319230, "id_str": "148839560548319232", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1635754415/056640593_197554060309526_558477_1650227_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635754415/056640593_197554060309526_558477_1650227_o_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Fui desafiada por ? Jamil Saleh\\nEstado Civil: Solteira\\nVoc\\u00EA usa all star: N\\u00E3o\\nVoc\\u00EA ja FUGIU de casa: n\\u00E3o\\nVoc\\u00EA est\\u00E1... http://t.co/0QCBwDeE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:10 +0000", "from_user": "edypicturesthis", "from_user_id": 275803463, "from_user_id_str": "275803463", "from_user_name": "Edna", "geo": null, "id": 148839558786719740, "id_str": "148839558786719745", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693804047/IMG_0225_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693804047/IMG_0225_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Getting my Mr Big fix on USA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:10 +0000", "from_user": "injury_law_usa", "from_user_id": 319332177, "from_user_id_str": "319332177", "from_user_name": "Injury Lawyers USA", "geo": null, "id": 148839556626649100, "id_str": "148839556626649088", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1400738457/usa_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1400738457/usa_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Injury Lawyers GA USA -- http://t.co/Ozox1aLv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:10 +0000", "from_user": "vesumymy", "from_user_id": 428699241, "from_user_id_str": "428699241", "from_user_name": "Godrick Mcgarrell", "geo": null, "id": 148839555913621500, "id_str": "148839555913621504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674658356/1207_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674658356/1207_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @qotyvogih: free casino bonus usa http://t.co/ysI4WPGs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:09 +0000", "from_user": "directnewsart", "from_user_id": 108008516, "from_user_id_str": "108008516", "from_user_name": "Direct News Articles", "geo": null, "id": 148839552629481470, "id_str": "148839552629481472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Watch Chicago Blackhawks vs Calgary Flames Live Stream Hockey USA NHL National Hockey League\\u2026 http://t.co/BRBJQ6HN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:08 +0000", "from_user": "GazelleMagazin", "from_user_id": 72553962, "from_user_id_str": "72553962", "from_user_name": "Gazelle Magazin", "geo": null, "id": 148839551035641860, "id_str": "148839551035641856", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/429755155/Gazelle-Logo_2_cut_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/429755155/Gazelle-Logo_2_cut_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Der neue TV-Serienhit aus den USA \\u00FCber das Alltagsleben amerikanischer Muslime. Was denkt ihr, brauchen wir sowas... http://t.co/4QtUns7d", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:08 +0000", "from_user": "CashmereandCamo", "from_user_id": 241789516, "from_user_id_str": "241789516", "from_user_name": "Brandy", "geo": null, "id": 148839549194338300, "id_str": "148839549194338306", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1437280809/PINUP083_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1437280809/PINUP083_normal.JPG", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Love this! Merry Christmas BERETTA USA!! http://t.co/LeIss2sn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:07 +0000", "from_user": "juliag_ribeiro", "from_user_id": 340689092, "from_user_id_str": "340689092", "from_user_name": "J\\u00FAlia Ribeiro", "geo": null, "id": 148839544349921280, "id_str": "148839544349921280", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1663141225/jujis_normal.jpg-large", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663141225/jujis_normal.jpg-large", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @PRETOSCO: \"Que rid\\u00EDculo voc\\u00EA usa \\u00F3culos escuros a noite\" \"Sou cego\" ~sil\\u00EAncio~", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:07 +0000", "from_user": "biamendesr", "from_user_id": 58825561, "from_user_id_str": "58825561", "from_user_name": "Beatriz Mendes ", "geo": null, "id": 148839544106647550, "id_str": "148839544106647553", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676331997/defrtyui_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676331997/defrtyui_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "eu nem sei usa salto mano, SOU DA RUA NEGO!!!!!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:06 +0000", "from_user": "CillaTirta", "from_user_id": 72496349, "from_user_id_str": "72496349", "from_user_name": "Pricilla Tirta Dwi", "geo": null, "id": 148839539765542900, "id_str": "148839539765542913", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1594739354/iklaaaaaaaaan_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1594739354/iklaaaaaaaaan_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@bob_nurofam Sudah tidur aja., nda usa mikirin aku sampe segitunya., aku tetep akan sama bang adex kok, :p ahahaha", "to_user": "bob_nurofam", "to_user_id": 73687649, "to_user_id_str": "73687649", "to_user_name": "Julhelman_Bob", "in_reply_to_status_id": 148836136142389250, "in_reply_to_status_id_str": "148836136142389249"}, +{"created_at": "Mon, 19 Dec 2011 18:58:05 +0000", "from_user": "latoniaidsvilla", "from_user_id": 305842659, "from_user_id_str": "305842659", "from_user_name": "Latonia Villanueva", "geo": null, "id": 148839538188496900, "id_str": "148839538188496898", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695225341/imagesCA53E30D_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695225341/imagesCA53E30D_normal", "source": "<a href="http://aircompressorpaintball.com" rel="nofollow">aircompressorpaintballdotcom</a>", "text": "Discounted Iro-Ironman ATIS 1000 AB Training System Inversion Therapy Table Wholesale USA http://t.co/AjxMf6dZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:04 +0000", "from_user": "learningmoresjp", "from_user_id": 405448888, "from_user_id_str": "405448888", "from_user_name": "learningmoresjp", "geo": null, "id": 148839533507645440, "id_str": "148839533507645440", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1623456138/3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1623456138/3_normal.png", "source": "<a href="http://pha22.net/twitterbot/" rel="nofollow">Easybotter</a>", "text": "\\u4EE5\\u4E0B\\u306F\\u3001\\u30C8\\u30D5\\u30EB(R) Test\\uFF08\\u9032\\u5B66\\u30FB\\u7559\\u5B66\\u5411\\u3051\\u306E\\u82F1\\u8A9E\\u30C6\\u30B9\\u30C8\\uFF09\\u3067\\u540C\\u3058\\u82F1\\u8A9E\\u529B\\u3092\\u6301\\u3063\\u3066\\u3044\\u308B\\u4EBA\\u304C TOEIC \\u3092\\u53D7\\u3051\\u305F\\u5834\\u5408\\u3001\\u5F7C\\u3089\\u30FB\\u5F7C\\u5973\\u3089\\u306E\\u30B9\\u30B3\\u30A2\\u5206\\u5E03\\u304C\\u3069\\u306E\\u3088\\u3046\\u306B\\u306A\\u308B\\u306E\\u304B\\u3001USA Club \\u304C\\u5B9F\\u969B\\u306B\\u5272\\u308A\\u51FA\\u3057\\u305F\\u30C7\\u30FC\\u30BF\\u3092\\u5143\\u306B\\u30B0\\u30E9\\u30D5\\u5316\\u3057\\u305F\\u3082\\u306E\\u3067\\u3059\\u3002\\thttp://t.co/qpMurIyj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:03 +0000", "from_user": "Holleyzlm", "from_user_id": 431739673, "from_user_id_str": "431739673", "from_user_name": "Holley Bentz", "geo": null, "id": 148839529657278460, "id_str": "148839529657278465", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681113342/moqun4bvud_101997855-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681113342/moqun4bvud_101997855-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "EXEDY 05104 OEM Replacement Clutch Kit: EXEDY Globalparts Corporation (USA) is a wholly owned subsidiary of the ... http://t.co/wXQrOm0R", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:03 +0000", "from_user": "SaavyValuesChi", "from_user_id": 405197415, "from_user_id_str": "405197415", "from_user_name": "Saavy Values Chicago", "geo": null, "id": 148839528050868220, "id_str": "148839528050868224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1622861710/bright_lights_chi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622861710/bright_lights_chi_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Brittany Incredible group coupons up to three-quarters off. You cant whip that http://t.co/oO2yAIeQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:03 +0000", "from_user": "Ralph_ThatsLife", "from_user_id": 78199509, "from_user_id_str": "78199509", "from_user_name": "Raphael Gray", "geo": null, "id": 148839527677562880, "id_str": "148839527677562881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694221268/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694221268/profile_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @memphissports: Will Barton named Conference USA player of the week http://t.co/mOXdGPm0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:02 +0000", "from_user": "Adam_S_James", "from_user_id": 197523274, "from_user_id_str": "197523274", "from_user_name": "Adam James", "geo": null, "id": 148839525995651070, "id_str": "148839525995651072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693955890/DSCN1435_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693955890/DSCN1435_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @EIAgov: Today in #Energy: 1/4 of California's #electricity is from outside the State http://t.co/cQRzEO3w #natgas #coal #wind #solar", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:02 +0000", "from_user": "Alkhabbazzz", "from_user_id": 273082587, "from_user_id_str": "273082587", "from_user_name": "alkhabbaz.", "geo": null, "id": 148839523781062660, "id_str": "148839523781062657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1491865576/IMG00598-20110812-1745_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1491865576/IMG00598-20110812-1745_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SAIDYOUSIF: #Amnesty International calls on the immediate release of Zainab al-Khawaja in #Bahrain http://t.co/wIC63ymq\\n#Humanrights\\n#HRW\\n#USA\\n#US\\n#UN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:02 +0000", "from_user": "xCharlottexMBx", "from_user_id": 304635681, "from_user_id_str": "304635681", "from_user_name": "Charlotte Buffey", "geo": null, "id": 148839523470671870, "id_str": "148839523470671872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1601663561/DSCF1322_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601663561/DSCF1322_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@MindlessBhavior @mugoplayer Is this competitions for anyone or just USA residents ??? :)", "to_user": "MindlessBhavior", "to_user_id": 116325068, "to_user_id_str": "116325068", "to_user_name": "Mindless Behavior"}, +{"created_at": "Mon, 19 Dec 2011 18:58:01 +0000", "from_user": "dyldomyers21", "from_user_id": 425484211, "from_user_id_str": "425484211", "from_user_name": "Dylan richard myers", "geo": null, "id": 148839521440641020, "id_str": "148839521440641024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1667055903/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667055903/image_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @MSU_Basketball: #Spartans move up to No. 19 in AP Top 25 and No. 20 in ESPN/USA Today Coaches Poll.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:01 +0000", "from_user": "NAC8491", "from_user_id": 103937505, "from_user_id_str": "103937505", "from_user_name": "Mimi", "geo": null, "id": 148839520266240000, "id_str": "148839520266240000", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1635451411/Mimi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635451411/Mimi_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @martin_caparros: Hablando de construir memoria: en USA, parejas viejas q bailan sobre su tumba, ante sus parientes. Para q despues los recuerden asi.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:00 +0000", "from_user": "pau_cacho", "from_user_id": 308743960, "from_user_id_str": "308743960", "from_user_name": "henepeu.", "geo": null, "id": 148839514142547970, "id_str": "148839514142547968", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700873157/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700873157/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@lalodm3 JAJAJAJAJA si :) y para irme a usa \\o/", "to_user": "lalodm3", "to_user_id": 325342638, "to_user_id_str": "325342638", "to_user_name": "Lalo Diaz", "in_reply_to_status_id": 148839323146518530, "in_reply_to_status_id_str": "148839323146518528"}, +{"created_at": "Mon, 19 Dec 2011 18:58:00 +0000", "from_user": "DianaaMonsalve", "from_user_id": 319922210, "from_user_id_str": "319922210", "from_user_name": "Loading...", "geo": null, "id": 148839514054459400, "id_str": "148839514054459393", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691835692/303967_2422207677496_1320574453_32973432_1016958022_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691835692/303967_2422207677496_1320574453_32973432_1016958022_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @circotimia_: DIANA USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:58:04 +0000", "from_user": "learningmoresjp", "from_user_id": 405448888, "from_user_id_str": "405448888", "from_user_name": "learningmoresjp", "geo": null, "id": 148839533507645440, "id_str": "148839533507645440", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1623456138/3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1623456138/3_normal.png", "source": "<a href="http://pha22.net/twitterbot/" rel="nofollow">Easybotter</a>", "text": "\\u4EE5\\u4E0B\\u306F\\u3001\\u30C8\\u30D5\\u30EB(R) Test\\uFF08\\u9032\\u5B66\\u30FB\\u7559\\u5B66\\u5411\\u3051\\u306E\\u82F1\\u8A9E\\u30C6\\u30B9\\u30C8\\uFF09\\u3067\\u540C\\u3058\\u82F1\\u8A9E\\u529B\\u3092\\u6301\\u3063\\u3066\\u3044\\u308B\\u4EBA\\u304C TOEIC \\u3092\\u53D7\\u3051\\u305F\\u5834\\u5408\\u3001\\u5F7C\\u3089\\u30FB\\u5F7C\\u5973\\u3089\\u306E\\u30B9\\u30B3\\u30A2\\u5206\\u5E03\\u304C\\u3069\\u306E\\u3088\\u3046\\u306B\\u306A\\u308B\\u306E\\u304B\\u3001USA Club \\u304C\\u5B9F\\u969B\\u306B\\u5272\\u308A\\u51FA\\u3057\\u305F\\u30C7\\u30FC\\u30BF\\u3092\\u5143\\u306B\\u30B0\\u30E9\\u30D5\\u5316\\u3057\\u305F\\u3082\\u306E\\u3067\\u3059\\u3002\\thttp://t.co/qpMurIyj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:03 +0000", "from_user": "Holleyzlm", "from_user_id": 431739673, "from_user_id_str": "431739673", "from_user_name": "Holley Bentz", "geo": null, "id": 148839529657278460, "id_str": "148839529657278465", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681113342/moqun4bvud_101997855-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681113342/moqun4bvud_101997855-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "EXEDY 05104 OEM Replacement Clutch Kit: EXEDY Globalparts Corporation (USA) is a wholly owned subsidiary of the ... http://t.co/wXQrOm0R", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:03 +0000", "from_user": "SaavyValuesChi", "from_user_id": 405197415, "from_user_id_str": "405197415", "from_user_name": "Saavy Values Chicago", "geo": null, "id": 148839528050868220, "id_str": "148839528050868224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1622861710/bright_lights_chi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622861710/bright_lights_chi_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Brittany Incredible group coupons up to three-quarters off. You cant whip that http://t.co/oO2yAIeQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:03 +0000", "from_user": "Ralph_ThatsLife", "from_user_id": 78199509, "from_user_id_str": "78199509", "from_user_name": "Raphael Gray", "geo": null, "id": 148839527677562880, "id_str": "148839527677562881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694221268/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694221268/profile_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @memphissports: Will Barton named Conference USA player of the week http://t.co/mOXdGPm0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:02 +0000", "from_user": "Adam_S_James", "from_user_id": 197523274, "from_user_id_str": "197523274", "from_user_name": "Adam James", "geo": null, "id": 148839525995651070, "id_str": "148839525995651072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693955890/DSCN1435_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693955890/DSCN1435_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @EIAgov: Today in #Energy: 1/4 of California's #electricity is from outside the State http://t.co/cQRzEO3w #natgas #coal #wind #solar", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:02 +0000", "from_user": "Alkhabbazzz", "from_user_id": 273082587, "from_user_id_str": "273082587", "from_user_name": "alkhabbaz.", "geo": null, "id": 148839523781062660, "id_str": "148839523781062657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1491865576/IMG00598-20110812-1745_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1491865576/IMG00598-20110812-1745_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SAIDYOUSIF: #Amnesty International calls on the immediate release of Zainab al-Khawaja in #Bahrain http://t.co/wIC63ymq\\n#Humanrights\\n#HRW\\n#USA\\n#US\\n#UN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:02 +0000", "from_user": "xCharlottexMBx", "from_user_id": 304635681, "from_user_id_str": "304635681", "from_user_name": "Charlotte Buffey", "geo": null, "id": 148839523470671870, "id_str": "148839523470671872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1601663561/DSCF1322_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601663561/DSCF1322_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@MindlessBhavior @mugoplayer Is this competitions for anyone or just USA residents ??? :)", "to_user": "MindlessBhavior", "to_user_id": 116325068, "to_user_id_str": "116325068", "to_user_name": "Mindless Behavior"}, +{"created_at": "Mon, 19 Dec 2011 18:58:01 +0000", "from_user": "dyldomyers21", "from_user_id": 425484211, "from_user_id_str": "425484211", "from_user_name": "Dylan richard myers", "geo": null, "id": 148839521440641020, "id_str": "148839521440641024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1667055903/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667055903/image_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @MSU_Basketball: #Spartans move up to No. 19 in AP Top 25 and No. 20 in ESPN/USA Today Coaches Poll.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:01 +0000", "from_user": "NAC8491", "from_user_id": 103937505, "from_user_id_str": "103937505", "from_user_name": "Mimi", "geo": null, "id": 148839520266240000, "id_str": "148839520266240000", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1635451411/Mimi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635451411/Mimi_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @martin_caparros: Hablando de construir memoria: en USA, parejas viejas q bailan sobre su tumba, ante sus parientes. Para q despues los recuerden asi.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:01 +0000", "from_user": "Yasmin98Y", "from_user_id": 297538870, "from_user_id_str": "297538870", "from_user_name": "Yasmin", "geo": null, "id": 148839518659813380, "id_str": "148839518659813376", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1597385278/22072011_004__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1597385278/22072011_004__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Demi_my_smile: Demi n\\u00E3o usa mais o anel da pureza, mas disse que a promessa que fez quando come\\u00E7ou a us\\u00E1-lo ainda permanece..#DemiFatcs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:00 +0000", "from_user": "pau_cacho", "from_user_id": 308743960, "from_user_id_str": "308743960", "from_user_name": "henepeu.", "geo": null, "id": 148839514142547970, "id_str": "148839514142547968", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700873157/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700873157/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@lalodm3 JAJAJAJAJA si :) y para irme a usa \\o/", "to_user": "lalodm3", "to_user_id": 325342638, "to_user_id_str": "325342638", "to_user_name": "Lalo Diaz", "in_reply_to_status_id": 148839323146518530, "in_reply_to_status_id_str": "148839323146518528"}, +{"created_at": "Mon, 19 Dec 2011 18:58:00 +0000", "from_user": "DianaaMonsalve", "from_user_id": 319922210, "from_user_id_str": "319922210", "from_user_name": "Loading...", "geo": null, "id": 148839514054459400, "id_str": "148839514054459393", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691835692/303967_2422207677496_1320574453_32973432_1016958022_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691835692/303967_2422207677496_1320574453_32973432_1016958022_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @circotimia_: DIANA USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:00 +0000", "from_user": "PatrulhaRebelde", "from_user_id": 393607108, "from_user_id_str": "393607108", "from_user_name": "REBELDES OFICIAL", "geo": null, "id": 148839513924444160, "id_str": "148839513924444160", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1595105026/11111_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1595105026/11111_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "#Alice: vc ta achando q eu sou unha posti\\u00E7a? Usa, faz bonito e joga fora?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:59 +0000", "from_user": "detenefevaw", "from_user_id": 433735685, "from_user_id_str": "433735685", "from_user_name": "Lahela Kennifeck", "geo": null, "id": 148839513152684030, "id_str": "148839513152684032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687082790/21_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687082790/21_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "new payday loan companies uk http://t.co/6fJrGgKG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:59 +0000", "from_user": "JakeAlone", "from_user_id": 372252244, "from_user_id_str": "372252244", "from_user_name": "jAke", "geo": null, "id": 148839511168794620, "id_str": "148839511168794624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1641136673/IMG_0941_1__normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641136673/IMG_0941_1__normal", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @GrouponRDU: Help provide meals for school children affected by the famine in the Horn of Africa: http://t.co/MkDsrwXB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:57 +0000", "from_user": "UnaRetrograda", "from_user_id": 326885776, "from_user_id_str": "326885776", "from_user_name": "\\u00BFLuisana?", "geo": null, "id": 148839504231403520, "id_str": "148839504231403520", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692067891/383915_2887841238556_1335947735_33112315_1763877125_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692067891/383915_2887841238556_1335947735_33112315_1763877125_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @circotimia_: LUISANA USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:57 +0000", "from_user": "CaroScrofani", "from_user_id": 126494487, "from_user_id_str": "126494487", "from_user_name": "Carolina Scrofani", "geo": null, "id": 148839501765165060, "id_str": "148839501765165057", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1679290787/381909_2713836328911_1347013093_3018260_519278659_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679290787/381909_2713836328911_1347013093_3018260_519278659_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:56 +0000", "from_user": "brunaceesconeto", "from_user_id": 71396911, "from_user_id_str": "71396911", "from_user_name": "Bruna ", "geo": null, "id": 148839498766225400, "id_str": "148839498766225408", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1585428342/PQAAANfLsipxY_bPyZ29p3zHYRHEZ1_JgL_rFBlQ83rflrHL1h3ZCMZFPfdpiCqWaUe572ecokSsZMUl6DNueRCE0OkAm1T1UOnOgzYuY6akBqudaz1W5ammWA0v_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585428342/PQAAANfLsipxY_bPyZ29p3zHYRHEZ1_JgL_rFBlQ83rflrHL1h3ZCMZFPfdpiCqWaUe572ecokSsZMUl6DNueRCE0OkAm1T1UOnOgzYuY6akBqudaz1W5ammWA0v_1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "CHEGA DE MUSICAS NATALINAS.. a loja aqui do lado nao usa disconfiometro acho.. socorro, vo enlouquecer..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:56 +0000", "from_user": "virgiemmarron", "from_user_id": 305757047, "from_user_id_str": "305757047", "from_user_name": "Virgie Marron", "geo": null, "id": 148839497369518080, "id_str": "148839497369518081", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698633651/imagesCAXJE67E_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698633651/imagesCAXJE67E_normal", "source": "<a href="http://42lv5500tv.com" rel="nofollow">42lv5500tvdotcom</a>", "text": "Wholesale Discount BLACKBERRY CURVE 8330-3 Screen Protectors for Blackberry Curve Wholesale U http://t.co/zZ7fy3sb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:54 +0000", "from_user": "williamvargas", "from_user_id": 33142288, "from_user_id_str": "33142288", "from_user_name": "William Vargas", "geo": null, "id": 148839492327968770, "id_str": "148839492327968770", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689390582/wv_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689390582/wv_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @MaxFactor_RD: Para conseguir una boca carnosa y sexy, usa una barra de labios perlada o un toque de gloss para reflejar la luz.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:54 +0000", "from_user": "Niltsrs", "from_user_id": 95227972, "from_user_id_str": "95227972", "from_user_name": "Isaac Nilts", "geo": null, "id": 148839489492631550, "id_str": "148839489492631552", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695944145/388894_2525962102615_1060264095_2694341_1779176490_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695944145/388894_2525962102615_1060264095_2694341_1779176490_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @letiiboettcher: \\u00E9 gato mais ser\\u00E1 que usa sunga?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:52 +0000", "from_user": "heyitsjasongass", "from_user_id": 50871165, "from_user_id_str": "50871165", "from_user_name": "Jason", "geo": null, "id": 148839482894974980, "id_str": "148839482894974976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1479610753/photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1479610753/photo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Closing out the year in Clevelandtown, USA. Airport later. Hijinks coverage to follow!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:52 +0000", "from_user": "theyarepartofmy", "from_user_id": 259434941, "from_user_id_str": "259434941", "from_user_name": "\\u2655 ", "geo": null, "id": 148839482521681920, "id_str": "148839482521681921", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700963726/chercrazy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700963726/chercrazy_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@PLanzani_chile lo pense pero nunca me dijiste me voy a usa. Cuando?", "to_user": "PLanzani_chile", "to_user_id": 191332852, "to_user_id_str": "191332852", "to_user_name": "Fran.", "in_reply_to_status_id": 148839022163271680, "in_reply_to_status_id_str": "148839022163271680"}, +{"created_at": "Mon, 19 Dec 2011 18:57:51 +0000", "from_user": "Vaaaleentine", "from_user_id": 410908429, "from_user_id_str": "410908429", "from_user_name": "WithLoove \\u2665", "geo": null, "id": 148839478243491840, "id_str": "148839478243491845", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698818843/Picture0084_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698818843/Picture0084_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @ANABRICOT: USA: Chris Brown, Justin Bieber, Lady Gaga, Usher, Rihanna,.. France: Colonel Reyel, Zaz, Christophe Willem, Gr\\u00E9goire,.. Qui veut d\\u00E9m\\u00E9nager?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:50 +0000", "from_user": "WVUEFOX8", "from_user_id": 44426926, "from_user_id_str": "44426926", "from_user_name": "News Desk", "geo": null, "id": 148839475701743600, "id_str": "148839475701743617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1321531979/fox_logo_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1321531979/fox_logo_twitter_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Judge berates Blagojevich lawyer for juror motion http://t.co/8o7PhU9M #usa #news", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:50 +0000", "from_user": "MaxCUA", "from_user_id": 34701889, "from_user_id_str": "34701889", "from_user_name": "Max", "geo": null, "id": 148839473331970050, "id_str": "148839473331970048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1243798119/335f3441-c342-4b5f-b305-f7a7db0b4918_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1243798119/335f3441-c342-4b5f-b305-f7a7db0b4918_normal.png", "source": "<a href="http://www.newstreamer.com/" rel="nofollow">Newstreamer</a>", "text": "RT @WillRogersUSA: Gingrich wins Tea Party Patriots straw poll (USA Today) http://t.co/sOFiaHQ6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:50 +0000", "from_user": "TheArcofVA", "from_user_id": 64566849, "from_user_id_str": "64566849", "from_user_name": "The Arc of Virginia", "geo": null, "id": 148839472170151940, "id_str": "148839472170151936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1258829502/new_arc_logo_fb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1258829502/new_arc_logo_fb_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Video of Governor McDonnell's presentation to the Joint Money Committees. Comments re:ID/DD services are 51:19-53:10. http://t.co/IvytX5Hk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:49 +0000", "from_user": "nathgurjas", "from_user_id": 172453889, "from_user_id_str": "172453889", "from_user_name": "gurjas", "geo": null, "id": 148839471478079500, "id_str": "148839471478079488", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695613508/321842_191478834274212_100002362896887_431006_1666384971_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695613508/321842_191478834274212_100002362896887_431006_1666384971_o_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @um_virgem: N\\u00E3o confio em quem usa pochete.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:49 +0000", "from_user": "manalielbahrain", "from_user_id": 283937846, "from_user_id_str": "283937846", "from_user_name": "manal isa", "geo": null, "id": 148839468336558080, "id_str": "148839468336558080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @BHRDef_jaguar: our police in #bahrain are first in line in front of the cannon please support them for keeping u safe http://t.co/GKqBv0Bg #bahrain #usa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:48 +0000", "from_user": "mathteacher1729", "from_user_id": 436310798, "from_user_id_str": "436310798", "from_user_name": "Joe DiNoto", "geo": null, "id": 148839466855972860, "id_str": "148839466855972864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693046475/moodle_profile_picture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693046475/moodle_profile_picture_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Brilliant compare / contrast of USA Vs. Finland education systems: http://t.co/U1YRFz2W #edchat #edpolicy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:47 +0000", "from_user": "churchgrrl78", "from_user_id": 215375284, "from_user_id_str": "215375284", "from_user_name": "hephzibah hart", "geo": null, "id": 148839460761636860, "id_str": "148839460761636864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1271955269/c3a9098a-405b-471d-992b-5d27b8636a24_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1271955269/c3a9098a-405b-471d-992b-5d27b8636a24_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Juanita_Francis: ALL MY USA TWEEPS @RuachCityChurch WATCHNIGHT SERVICE GOES LIVE ON @thewordnetwork AT 5.30PM EST MAKE SURE YOU TUNE IN! RT & PASS IT ON", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:45 +0000", "from_user": "LadyQwazi", "from_user_id": 324299044, "from_user_id_str": "324299044", "from_user_name": "Lady Qwazi", "geo": null, "id": 148839453748760580, "id_str": "148839453748760576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687075304/untitled12_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687075304/untitled12_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@simelaneme the stats I have studied from the USA \"life\" sentence sector are that between 5 to 10% are honestly innocent. #fail", "to_user": "simelaneme", "to_user_id": 347798912, "to_user_id_str": "347798912", "to_user_name": "menzi simelane", "in_reply_to_status_id": 148837787544727550, "in_reply_to_status_id_str": "148837787544727553"}, +{"created_at": "Mon, 19 Dec 2011 18:57:45 +0000", "from_user": "_Adicta", "from_user_id": 123965194, "from_user_id_str": "123965194", "from_user_name": "La que hace spam.", "geo": null, "id": 148839452108791800, "id_str": "148839452108791808", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "JOHANS USA CONDON.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:44 +0000", "from_user": "Captain_Lost", "from_user_id": 26902149, "from_user_id_str": "26902149", "from_user_name": "Fraser Jess", "geo": null, "id": 148839450338799600, "id_str": "148839450338799616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1615897191/Scaled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615897191/Scaled_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @WTFuckFacts: There are 2 people named \"ROFL\" in Rocky Mount, NC, USA.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:44 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148839449365725200, "id_str": "148839449365725184", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "UVA USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:44 +0000", "from_user": "SRJimm", "from_user_id": 196688111, "from_user_id_str": "196688111", "from_user_name": "Jim Meehan", "geo": null, "id": 148839449072107520, "id_str": "148839449072107520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1133908004/jim_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1133908004/jim_twitter_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Zags receiving votes in both polls (30th A.P., tied for 36th ESPN/USA Today, Saint Mary's 35th): http://t.co/dBSQm6PL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:42 +0000", "from_user": "IamJoandrY", "from_user_id": 273587861, "from_user_id_str": "273587861", "from_user_name": "JoandrY OrtegA", "geo": null, "id": 148839440670933000, "id_str": "148839440670932992", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1661776421/224471_225447487499444_3656141_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661776421/224471_225447487499444_3656141_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@_Adicta USA COND\\u00D3N ;)", "to_user": "_Adicta", "to_user_id": 123965194, "to_user_id_str": "123965194", "to_user_name": "La que hace spam."}, +{"created_at": "Mon, 19 Dec 2011 18:57:42 +0000", "from_user": "devzer", "from_user_id": 64263840, "from_user_id_str": "64263840", "from_user_name": "Jorge Berrizbeitia", "geo": null, "id": 148839440301817860, "id_str": "148839440301817856", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1638626601/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638626601/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@marcoloreto jajaja no pero deber\\u00EDan :D tor me lo compr\\u00F3 un pana en USA y me envi\\u00F3 el cd key. No s\\u00E9 si lo compr\\u00F3 por Amazon o por la pagina.", "to_user": "marcoloreto", "to_user_id": 5938352, "to_user_id_str": "5938352", "to_user_name": "Marco Loreto", "in_reply_to_status_id": 148834638209622000, "in_reply_to_status_id_str": "148834638209622017"}, +{"created_at": "Mon, 19 Dec 2011 18:57:42 +0000", "from_user": "thaiszanuto_", "from_user_id": 184994147, "from_user_id_str": "184994147", "from_user_name": "e voc\\u00EA ?", "geo": null, "id": 148839440213741570, "id_str": "148839440213741568", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1526853061/of_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1526853061/of_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Me pergunte qualquer coisa. - \\u203A 1. Altura? 2. Peso? 3. Voc\\u00EA fuma? 4. Voc\\u00EA bebe? 5. Usa/j\\u00E1 usou drogas? 6.... http://t.co/9Fm9cjvq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:42 +0000", "from_user": "bazanmarcelo", "from_user_id": 117579724, "from_user_id_str": "117579724", "from_user_name": "Marcelo Miguel Bazan", "geo": null, "id": 148839438435356670, "id_str": "148839438435356672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1505705464/misojostwitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505705464/misojostwitter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Mr. @BarackObama you're right. See how @chavezcandanga and @CFKArgentina are turning democracy into dictatorship is worrying I love UK & USA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:42 +0000", "from_user": "_1retardado_", "from_user_id": 189742292, "from_user_id_str": "189742292", "from_user_name": "Rai Sabino", "geo": null, "id": 148839438124974080, "id_str": "148839438124974080", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1237690395/DSC00711_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1237690395/DSC00711_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "eu aprendo eu nao vo usa pra nada ent\\u00E3o vai se fude a marta tbm \\u00E9 uma filho da puta", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:41 +0000", "from_user": "jennadoughton", "from_user_id": 234455518, "from_user_id_str": "234455518", "from_user_name": "jenna doughton", "geo": null, "id": 148839436782796800, "id_str": "148839436782796801", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1614597138/jennatwitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1614597138/jennatwitter_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Bing is almost 25% as useful (used) as Google, in the USA, last month, just behind Yahoo! Wow. http://t.co/acmcKz8C", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:41 +0000", "from_user": "VincentDesry", "from_user_id": 357495712, "from_user_id_str": "357495712", "from_user_name": "Vincent Desry", "geo": null, "id": 148839436640190460, "id_str": "148839436640190464", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681241212/307900_2407175466375_1460823453_2592429_1778977516_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681241212/307900_2407175466375_1460823453_2592429_1778977516_n_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @CBeigbeder: La France 3eme pays le plus innovant de la planete, derriere USA et Japon ! Enfin une bonne nouvelle economique ! http://t.co/KppHgo2x", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:41 +0000", "from_user": "jonasgsk8", "from_user_id": 18193631, "from_user_id_str": "18193631", "from_user_name": "JonasGS", "geo": null, "id": 148839434660478980, "id_str": "148839434660478976", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1278476543/8f20d2fc13e848a6870104d569ac448c_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1278476543/8f20d2fc13e848a6870104d569ac448c_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @AS_Inako: El agente de Kirilenko asegura a medios USA q a\\u00FAn no hay acuerdo. La palabra es a\\u00FAn. Con Prokhorov por medio, no hay mucho margen para el no", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:40 +0000", "from_user": "Organic_Portal", "from_user_id": 95717136, "from_user_id_str": "95717136", "from_user_name": "OrganicPortal", "geo": null, "id": 148839430944329730, "id_str": "148839430944329729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1403020498/OP_141x141_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1403020498/OP_141x141_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "USA: Wholesum Harvest breaks ground on a new greenhouse in Arizona http://t.co/sGssCFhP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:39 +0000", "from_user": "GiovannyLira", "from_user_id": 101669733, "from_user_id_str": "101669733", "from_user_name": "Giovanny Lira Ortega", "geo": null, "id": 148839427916046340, "id_str": "148839427916046336", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1638346303/334080_105865299528269_100003143984055_32463_1817726423_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638346303/334080_105865299528269_100003143984055_32463_1817726423_o_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "*baila en ropa interior* *usa su desodorante como micr\\u00F3fono*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:39 +0000", "from_user": "luabarboosa", "from_user_id": 320419842, "from_user_id_str": "320419842", "from_user_name": "Lua Barbosa", "geo": null, "id": 148839426703892480, "id_str": "148839426703892480", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700742141/lua_075_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700742141/lua_075_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "minha mamis foi usa la ,vo fica aqui pelo cel mesmo ...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:38 +0000", "from_user": "Spinellization", "from_user_id": 376510657, "from_user_id_str": "376510657", "from_user_name": "Spinellization", "geo": null, "id": 148839425168781300, "id_str": "148839425168781312", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695850062/nvideo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695850062/nvideo_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Quem usa camiseta do Che \\u00E9 cumplice moral do genocidio de 100 milh\\u00F5es de pessoas ao longo do 30 anos do s\\u00E9culo XX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:36 +0000", "from_user": "lifeofmshaba", "from_user_id": 253815675, "from_user_id_str": "253815675", "from_user_name": "Think Different", "geo": null, "id": 148839414217445380, "id_str": "148839414217445376", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1572843628/Photo_D999F558-B89C-C67B-7A19-84DB38691423_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572843628/Photo_D999F558-B89C-C67B-7A19-84DB38691423_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@MariaSTsehai haliye wanaliyema chakula ni USA Na wenzie sio yeye angefanyaje @yerickonyerere @shyban5 @udadisi @semkae @annietanzania", "to_user": "MariaSTsehai", "to_user_id": 24312877, "to_user_id_str": "24312877", "to_user_name": "Maria Sarungi Tsehai", "in_reply_to_status_id": 148838228898758660, "in_reply_to_status_id_str": "148838228898758656"}, +{"created_at": "Mon, 19 Dec 2011 18:57:36 +0000", "from_user": "Holdeez", "from_user_id": 62961631, "from_user_id_str": "62961631", "from_user_name": "Chelsey", "geo": null, "id": 148839414120988670, "id_str": "148839414120988672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699351661/Holdeez_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699351661/Holdeez_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "--> RT @MacTrast: T-Mobile USA begins adding iPhone-ready 3G to their network, may be preparing to offer the iPhone http://t.co/Z6hbnkiw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:35 +0000", "from_user": "AnduAguilar", "from_user_id": 227476626, "from_user_id_str": "227476626", "from_user_name": "La Chele:3\\u2665", "geo": null, "id": 148839412011253760, "id_str": "148839412011253760", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1650971414/qwertyuopgjnjbnkbnjkbsdknbs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650971414/qwertyuopgjnjbnkbnjkbsdknbs_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Saludos a usted Mejor amigo que el jueves viene a Usa;) @MiquelArbaiza", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:35 +0000", "from_user": "ken_morera", "from_user_id": 26448853, "from_user_id_str": "26448853", "from_user_name": "kenneth morera\\u2652", "geo": null, "id": 148839411096883200, "id_str": "148839411096883200", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1671829060/IMAG0102_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671829060/IMAG0102_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@JocMiranda JAjaja, de hecho si! Digamos q en la nieve se usa guantes ya cuando es demasiado el frio :S aqui por vientecillo usan.", "to_user": "JocMiranda", "to_user_id": 51857115, "to_user_id_str": "51857115", "to_user_name": "Jose Miranda", "in_reply_to_status_id": 148838892265668600, "in_reply_to_status_id_str": "148838892265668608"}, +{"created_at": "Mon, 19 Dec 2011 18:57:35 +0000", "from_user": "lhsm2016", "from_user_id": 362419207, "from_user_id_str": "362419207", "from_user_name": "luiz henrique", "geo": null, "id": 148839410891358200, "id_str": "148839410891358208", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1530247143/luiz.voluvia.com_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1530247143/luiz.voluvia.com_normal.JPG", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Andrea Andrade usa vestido de R$ 20 mil em ensaio de escola de samba http://t.co/2CaPS768", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:35 +0000", "from_user": "boobiegotti2", "from_user_id": 250403659, "from_user_id_str": "250403659", "from_user_name": "\\uE016\\uE420Tee Coleman\\uE420\\uE016", "geo": null, "id": 148839409255591940, "id_str": "148839409255591937", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1431382091/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1431382091/image_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @justchillin247: The USA is the only country where weed is consider illegal -_______-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:34 +0000", "from_user": "Marian546876", "from_user_id": 421762007, "from_user_id_str": "421762007", "from_user_name": "Marian", "geo": null, "id": 148839408387366900, "id_str": "148839408387366912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1658571669/12_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658571669/12_normal.jpeg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "5/16-24 X 2 Hex Cap Screws / Fine / Grade 8 / Zinc Yellow / Made in USA / 1,200 Pc. Carton: 5/16-24 X 2 Hex Cap ... http://t.co/nGjzXBNf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:34 +0000", "from_user": "lingnet", "from_user_id": 98487888, "from_user_id_str": "98487888", "from_user_name": "LingNet UFRJ", "geo": null, "id": 148839406114062340, "id_str": "148839406114062336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/587815096/logotwitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/587815096/logotwitter_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Larryferlazzo: RT @PearsonLongman: Pearson Longman USA ESL/EFL daily is out! http://t.co/90YcrHV9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:33 +0000", "from_user": "insideredge", "from_user_id": 319440595, "from_user_id_str": "319440595", "from_user_name": "Insider Edge", "geo": null, "id": 148839403404533760, "id_str": "148839403404533762", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1465944412/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1465944412/logo_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Earnings #10-K : 10-K - XENONICS HOLDINGS, INC. (0001289550) (Filer): Filed: 2011-12-19 AccNo: 0000950123-11-103... http://t.co/gw8IWSzw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:31 +0000", "from_user": "juansbruera", "from_user_id": 344799217, "from_user_id_str": "344799217", "from_user_name": "JuanSebasti\\u00E1n Bruera", "geo": null, "id": 148839395003338750, "id_str": "148839395003338752", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1467825904/Juan_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1467825904/Juan_normal.JPG", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:31 +0000", "from_user": "Lillatug", "from_user_id": 431754994, "from_user_id_str": "431754994", "from_user_name": "Lilla Engman", "geo": null, "id": 148839393946374140, "id_str": "148839393946374145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681149097/1jhyhcee02_134258817-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681149097/1jhyhcee02_134258817-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Op/Tech Finger Cuff-QD Compact Strap - Green Plaid: OP/TECH USA's FINGER CUFF QD is the smallest strap yet! This... http://t.co/xxoBdUDI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:30 +0000", "from_user": "Hmother8", "from_user_id": 345061440, "from_user_id_str": "345061440", "from_user_name": "Holly Motheral", "geo": null, "id": 148839391907942400, "id_str": "148839391907942400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1564850941/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1564850941/profile_normal.jpg", "source": "<a href="http://www.handmark.com" rel="nofollow">TweetCaster for iOS</a>", "text": "@rioredstorm Canada vs. USA uh oh I got money on USA", "to_user": "rioredstorm", "to_user_id": 71033576, "to_user_id_str": "71033576", "to_user_name": "rioredstorm"}, +{"created_at": "Mon, 19 Dec 2011 18:57:30 +0000", "from_user": "gravitas28", "from_user_id": 138089041, "from_user_id_str": "138089041", "from_user_name": "Patrick Fitzgibbons", "geo": null, "id": 148839389005492220, "id_str": "148839389005492224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1683703691/Unnamed_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683703691/Unnamed_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @StateDept: #SecClinton delivers remarks on Women, Peace and Security at 2:30 PM EST today: http://t.co/UC8ntoKO | More: http://t.co/7R3W0rtE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:27 +0000", "from_user": "I_Rodriguez_C", "from_user_id": 140515838, "from_user_id_str": "140515838", "from_user_name": "Isabella Rodr\\u00EDguez \\u2661", "geo": null, "id": 148839378951733250, "id_str": "148839378951733248", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700698259/101_2403_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700698259/101_2403_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Nunca uses una persona para olvidar a otra. Minimo usa tres.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:26 +0000", "from_user": "Renatah_s2", "from_user_id": 163820865, "from_user_id_str": "163820865", "from_user_name": "Stay Strong \\u2020", "geo": null, "id": 148839372068884480, "id_str": "148839372068884480", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694853195/just_in_me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694853195/just_in_me_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Voc\\u00EAs sabiam que N\\u00C3O EXISTE leite condensado nos USA? - \\u203A Quando eu for pros EUA vou levar leite condensado,... http://t.co/9DkiJU5n", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:25 +0000", "from_user": "angelagleason", "from_user_id": 18056007, "from_user_id_str": "18056007", "from_user_name": "angelagleason", "geo": null, "id": 148839369577467900, "id_str": "148839369577467904", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1459925311/ag_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1459925311/ag_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "No ai menu salutisti, la rivolta degli studenti di Los Angeles - Corriere della Sera http://t.co/NUUIAAKe via @Corriereit", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:25 +0000", "from_user": "Rugidoderaton", "from_user_id": 18356911, "from_user_id_str": "18356911", "from_user_name": "FelipeCaroca", "geo": null, "id": 148839369539727360, "id_str": "148839369539727360", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1374077914/elrugidodelraton_Front_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1374077914/elrugidodelraton_Front_normal.png", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: No se usa \"hubieron\" cuando haber se emplea para denotar la presencia de personas o cosas, Hubieron 6 ni\\u00F1os (\\u2717), debe decirse: Hubo 6 ni\\u00F1os\\u2611", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:25 +0000", "from_user": "bvoficial", "from_user_id": 134771503, "from_user_id_str": "134771503", "from_user_name": "Breno Oficial ;)", "geo": null, "id": 148839368700870660, "id_str": "148839368700870656", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1398710783/4327348203_b936d55146_o_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1398710783/4327348203_b936d55146_o_normal.jpeg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "V\\u00EDdeo: Yamaha usa AirPort Express para fazer a Siri tocar piano http://t.co/CE98CVgY #Apple", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:25 +0000", "from_user": "SanFran_Bargain", "from_user_id": 405789351, "from_user_id_str": "405789351", "from_user_name": "San Fran Bargains", "geo": null, "id": 148839367807479800, "id_str": "148839367807479809", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1624227301/GG_Bridge_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624227301/GG_Bridge_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Jamie I am soooo excited! I just scored a group coupon to my fave eatery for 90 percent off. http://t.co/gdEk6gcq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:25 +0000", "from_user": "dysexiwujyd", "from_user_id": 433946867, "from_user_id_str": "433946867", "from_user_name": "Pramodini Giovannaz", "geo": null, "id": 148839366909894660, "id_str": "148839366909894656", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688445029/710_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688445029/710_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "auto insurance ontario g1 http://t.co/29zSf8oc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:24 +0000", "from_user": "newstodaybzcm", "from_user_id": 361942645, "from_user_id_str": "361942645", "from_user_name": "Renisha Glinton", "geo": null, "id": 148839366515626000, "id_str": "148839366515625984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://www.wpsyndicator.com" rel="nofollow">WPSyndicator</a>", "text": "http://t.co/y1g8Uuie Campus Rivalry: The passion and tradition of college basketball and football ... - USA TODAY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:22 +0000", "from_user": "CamiluchaCrespo", "from_user_id": 190456456, "from_user_id_str": "190456456", "from_user_name": "Cami Crespo", "geo": null, "id": 148839354868051970, "id_str": "148839354868051968", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1690153464/cc__135__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690153464/cc__135__normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "No le voi a responder a la gente q me usa #sentite", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:21 +0000", "from_user": "newstodaybzcm", "from_user_id": 361942645, "from_user_id_str": "361942645", "from_user_name": "Renisha Glinton", "geo": null, "id": 148839351239970800, "id_str": "148839351239970816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://www.wpsyndicator.com" rel="nofollow">WPSyndicator</a>", "text": "http://t.co/u30U0GPO Syracuse retains No. 1 spot in basketball coaches poll - USA TODAY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:21 +0000", "from_user": "spiffysmile", "from_user_id": 36042665, "from_user_id_str": "36042665", "from_user_name": "spiffysmile", "geo": null, "id": 148839351206428670, "id_str": "148839351206428672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/266773809/Copy_of_smile_flower_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/266773809/Copy_of_smile_flower_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ZMonline Thank you so much for playing @adamlambert Better Than I Know Myself .....listening from the USA!", "to_user": "ZMonline", "to_user_id": 21044502, "to_user_id_str": "21044502", "to_user_name": "ZMonline"}, +{"created_at": "Mon, 19 Dec 2011 18:57:21 +0000", "from_user": "AmegderAlvarado", "from_user_id": 108788062, "from_user_id_str": "108788062", "from_user_name": "Amegder Alvarado", "geo": null, "id": 148839350052986880, "id_str": "148839350052986880", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1379083683/IMG00047-20090725-1642_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1379083683/IMG00047-20090725-1642_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: No se usa \"hubieron\" cuando haber se emplea para denotar la presencia de personas o cosas, Hubieron 6 ni\\u00F1os (\\u2717), debe decirse: Hubo 6 ni\\u00F1os\\u2611", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:20 +0000", "from_user": "itele", "from_user_id": 18396319, "from_user_id_str": "18396319", "from_user_name": "itele", "geo": null, "id": 148839349948125200, "id_str": "148839349948125184", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1230989425/logo_itele_reflet_3d_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1230989425/logo_itele_reflet_3d_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "#Cor\\u00E9e du Nord : Les USA pour \\u00ABune transition stable et pacifique\\u00BB et \\u00ABune relation am\\u00E9lior\\u00E9e avec le peuple nord-cor\\u00E9en\\u00BB (H. Clinton)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:20 +0000", "from_user": "efraguirre", "from_user_id": 196842743, "from_user_id_str": "196842743", "from_user_name": "Efrain Aguirre", "geo": null, "id": 148839349662920700, "id_str": "148839349662920705", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1667420091/IMG00490-20110410-16313_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667420091/IMG00490-20110410-16313_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@DianiitaC mentira! Eso lo usa de excusa para no ba\\u00F1arse vv. Mona cochina xP", "to_user": "DianiitaC", "to_user_id": 181758419, "to_user_id_str": "181758419", "to_user_name": "Diana Carrillo", "in_reply_to_status_id": 148837885943103500, "in_reply_to_status_id_str": "148837885943103488"}, +{"created_at": "Mon, 19 Dec 2011 18:57:20 +0000", "from_user": "CineversityTV", "from_user_id": 36414339, "from_user_id_str": "36414339", "from_user_name": "Pi-Qui Baltink", "geo": null, "id": 148839347964219400, "id_str": "148839347964219392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1567986393/CTV-free-bradley_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1567986393/CTV-free-bradley_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#ff #artist; Super ninja turtles http://t.co/PEMOXyDx #berlin #music #australia #europe #paris #rome #madrid #sydney #beijing #india", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:20 +0000", "from_user": "BobMiller11", "from_user_id": 323365517, "from_user_id_str": "323365517", "from_user_name": "Bob Miller", "geo": null, "id": 148839347167297540, "id_str": "148839347167297537", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@HC_WJC Great hockey and great Alberta weather. Cannot beat this. Kind of excited! Very cool that Camrose is hosting USA.", "to_user": "HC_WJC", "to_user_id": 199846785, "to_user_id_str": "199846785", "to_user_name": "2012 World Juniors", "in_reply_to_status_id": 148832623161114620, "in_reply_to_status_id_str": "148832623161114624"}, +{"created_at": "Mon, 19 Dec 2011 18:57:19 +0000", "from_user": "muzarojo", "from_user_id": 419240833, "from_user_id_str": "419240833", "from_user_name": "Kapardin Henriksson", "geo": null, "id": 148839343916711940, "id_str": "148839343916711936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1658793696/30_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658793696/30_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @zeqefyzani: loan calculation schedules http://t.co/N5OAAQHQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:19 +0000", "from_user": "nofuquh", "from_user_id": 433713387, "from_user_id_str": "433713387", "from_user_name": "Ardavan Dalgarnowch", "geo": null, "id": 148839343077863420, "id_str": "148839343077863424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685858674/1436_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685858674/1436_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "approved cash advance http://t.co/CdcF68hl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:19 +0000", "from_user": "HealthRxCorp", "from_user_id": 314102748, "from_user_id_str": "314102748", "from_user_name": "HealthRx Corporation", "geo": null, "id": 148839341932818430, "id_str": "148839341932818432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1476091736/pinwheel_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1476091736/pinwheel_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "MT @thehearttruth: #Exercise protects your heart AND makes you feel good. http://t.co/CzOILFNe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:18 +0000", "from_user": "3R1CK_L30N3L", "from_user_id": 298262867, "from_user_id_str": "298262867", "from_user_name": "AON", "geo": null, "id": 148839340850679800, "id_str": "148839340850679808", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1599728298/rules_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599728298/rules_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Abre las puertas de la perfecci\\u00F3n, usa el poder de t\\u00FA imaginaci\\u00F3n, aunque no puedas mirar hacia el sol, sabes que sigue brillando!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:17 +0000", "from_user": "fuluvice", "from_user_id": 434043730, "from_user_id_str": "434043730", "from_user_name": "Bindu Glasscock", "geo": null, "id": 148839334404030460, "id_str": "148839334404030464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688586349/1174_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688586349/1174_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "earning money fast http://t.co/dsulN9vf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:16 +0000", "from_user": "MaCosta__", "from_user_id": 353351172, "from_user_id_str": "353351172", "from_user_name": "Mari Costa", "geo": null, "id": 148839332084580350, "id_str": "148839332084580353", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1671617035/SDC14525_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671617035/SDC14525_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u00C0s vezes eu acho que sou a \\u00FAnica pessoa que usa qlqer roupa no Natal e Ano Novo, pqp KKKKK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:16 +0000", "from_user": "webhostingfast", "from_user_id": 354766850, "from_user_id_str": "354766850", "from_user_name": "Web Hosting Fast", "geo": null, "id": 148839331879059460, "id_str": "148839331879059456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "How to Choose Best E-Commerce Web Development Company among many companies - http://t.co/C3NAMOpX http://t.co/Fd8Gmnzb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:16 +0000", "from_user": "ImportCDs", "from_user_id": 363656472, "from_user_id_str": "363656472", "from_user_name": "Richard Floyd", "geo": null, "id": 148839330939543550, "id_str": "148839330939543553", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1517358982/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517358982/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #13305 Complete Live at the Pershing Lounge 1958 Ahmad Trio Jamal $11.76: Although They were Not Ahma... http://t.co/S0kUreLr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:16 +0000", "from_user": "ImportCDs", "from_user_id": 363656472, "from_user_id_str": "363656472", "from_user_name": "Richard Floyd", "geo": null, "id": 148839329756749820, "id_str": "148839329756749824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1517358982/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517358982/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #5806 Christmas Present From Polyphony Polyphony $5.62: B00030NU4A http://t.co/GWFWMNnD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:15 +0000", "from_user": "ImportCDs", "from_user_id": 363656472, "from_user_id_str": "363656472", "from_user_name": "Richard Floyd", "geo": null, "id": 148839327986761730, "id_str": "148839327986761729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1517358982/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517358982/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #1746 Zen and the Art of Relaxation Anzan $5.00: Discover Zen-like peace with this magical combinatio... http://t.co/c9kEOB16", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:15 +0000", "from_user": "LM_Hooker", "from_user_id": 404592377, "from_user_id_str": "404592377", "from_user_name": "I'm Little Monster ", "geo": null, "id": 148839327936417800, "id_str": "148839327936417792", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686958987/Ladygaga_gif_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686958987/Ladygaga_gif_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "EU J\\u00C1 SEI QUEM FOI, FOI A @britneyspears, AQUELA INVEJOSA SO PQ A GAGA N\\u00C3O USA PLAYBACK! A GAGA TEM VOZ BRIT!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:15 +0000", "from_user": "SoloDesse", "from_user_id": 78812048, "from_user_id_str": "78812048", "from_user_name": "\\u2708Desse", "geo": null, "id": 148839327860932600, "id_str": "148839327860932608", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690070308/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690070308/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@cremastudio ya sabes que mi pr\\u00F3xima parada va a ser usa y si es el 305 mejor.", "to_user": "cremastudio", "to_user_id": 58667367, "to_user_id_str": "58667367", "to_user_name": "Crema Studio", "in_reply_to_status_id": 148838989531582460, "in_reply_to_status_id_str": "148838989531582465"}, +{"created_at": "Mon, 19 Dec 2011 18:57:15 +0000", "from_user": "alexgarrido93", "from_user_id": 228194372, "from_user_id_str": "228194372", "from_user_name": "Raulista", "geo": null, "id": 148839327189827600, "id_str": "148839327189827584", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1199560044/wY5EZ2nb6OA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1199560044/wY5EZ2nb6OA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@carlitos_693 si no tienes condon, usa una bolsa q tb vale", "to_user": "carlitos_693", "to_user_id": 285737961, "to_user_id_str": "285737961", "to_user_name": "Carlos Carrasco", "in_reply_to_status_id": 148839113783648260, "in_reply_to_status_id_str": "148839113783648256"}, +{"created_at": "Mon, 19 Dec 2011 18:57:15 +0000", "from_user": "ImportCDs", "from_user_id": 363656472, "from_user_id_str": "363656472", "from_user_name": "Richard Floyd", "geo": null, "id": 148839326535516160, "id_str": "148839326535516160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1517358982/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517358982/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #5700 Brothers in Arms (20th Anniversary Edition) Dire Straits $12.73: Import only SACD pressing. 20t... http://t.co/44v0PR5v", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:15 +0000", "from_user": "BrunaGabriele28", "from_user_id": 410705550, "from_user_id_str": "410705550", "from_user_name": "B\\u044F\\u03C5\\u03B7\\u03B1 G\\u03B1\\u0432\\u044F\\u03B9\\u0454\\u2113\\u0454", "geo": null, "id": 148839325101080580, "id_str": "148839325101080576", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701667281/PQAAAJAVW30JggLTGLWc8cjdc7ewTmTMmhyjLD1g2jR-CM7LdgalASgv99vD7L_CoFwtPCerK-n5ZQ0SYdq-PwdJ4dYAm1T1UI3nbvTmzQHTT28lCfJBjbuHRek7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701667281/PQAAAJAVW30JggLTGLWc8cjdc7ewTmTMmhyjLD1g2jR-CM7LdgalASgv99vD7L_CoFwtPCerK-n5ZQ0SYdq-PwdJ4dYAm1T1UI3nbvTmzQHTT28lCfJBjbuHRek7_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "quando esse tempo chegar quem zombou de voc\\u00EA vai terque pagar quem ti viu caido e n\\u00E3o quiz ti levantar v\\u00E3o ti ver pregando e ver deus te usa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:15 +0000", "from_user": "ImportCDs", "from_user_id": 363656472, "from_user_id_str": "363656472", "from_user_name": "Richard Floyd", "geo": null, "id": 148839325050740740, "id_str": "148839325050740736", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1517358982/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517358982/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #2516 Ludovico Einaudi: Divenire [EU Edition] $14.25: B000R9RGF6 http://t.co/CAkW3ov8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:13 +0000", "from_user": "President", "from_user_id": 260537964, "from_user_id_str": "260537964", "from_user_name": "Election 2012 News", "geo": null, "id": 148839318859948030, "id_str": "148839318859948032", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1261305267/2012_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1261305267/2012_normal.jpg", "source": "<a href="http://twitter.com/_President2012" rel="nofollow">Presidential News</a>", "text": "Struggling Santorum bets big on Iowa. http://t.co/4jSaI121", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:13 +0000", "from_user": "Sciencegov", "from_user_id": 115689109, "from_user_id_str": "115689109", "from_user_name": "Science.gov", "geo": null, "id": 148839318822191100, "id_str": "148839318822191105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1137962180/scienceNEWSlogo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1137962180/scienceNEWSlogo_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Environmental Justice Grants of $25,000 Awarded to Migrant Farmworkers Project and El Centro, Inc., of Kansas Ci... http://t.co/dIFDK2A5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:13 +0000", "from_user": "si_dicko", "from_user_id": 437814658, "from_user_id_str": "437814658", "from_user_name": "Simon Dixon", "geo": null, "id": 148839317761032200, "id_str": "148839317761032192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695305700/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695305700/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Y r all thes ppl from the USA following meeee lol but is ok :-)) lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:13 +0000", "from_user": "lynawyq", "from_user_id": 419571997, "from_user_id_str": "419571997", "from_user_name": "Eleonore Masterman", "geo": null, "id": 148839317341605900, "id_str": "148839317341605888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1658953747/14_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658953747/14_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @recilyhyjir: car insurance estimator course http://t.co/pKSvlFK6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:12 +0000", "from_user": "minhagabby", "from_user_id": 399743612, "from_user_id_str": "399743612", "from_user_name": "\\u3164\\u3164, Gabriella !* \\u10D6 ", "geo": null, "id": 148839314049077250, "id_str": "148839314049077250", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1642958986/PQAAAJGa_rAdpuEImAw9CXo4jJv6uMG-1A7LcHGbrNv4uXZtvLSkfQ4uWNBUnNRLDls98sBplTKtY8693v7TUYXOvvUAm1T1ULhuop9DwxnwRJuevmCB0arTNHAa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642958986/PQAAAJGa_rAdpuEImAw9CXo4jJv6uMG-1A7LcHGbrNv4uXZtvLSkfQ4uWNBUnNRLDls98sBplTKtY8693v7TUYXOvvUAm1T1ULhuop9DwxnwRJuevmCB0arTNHAa_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @marciinho_qzs: cartela de adesivos que vem com o caderno: voc\\u00EA n\\u00E3o usa e n\\u00E3o deixa ningu\\u00E9m usar", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:12 +0000", "from_user": "Kika_Brona", "from_user_id": 393660219, "from_user_id_str": "393660219", "from_user_name": "Kika Brona", "geo": null, "id": 148839312702709760, "id_str": "148839312702709760", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701673560/Ag6xozpCEAAoH5k.jpg-large_normal.jpg-large", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701673560/Ag6xozpCEAAoH5k.jpg-large_normal.jpg-large", "source": "<a href="http://twitter.com/">web</a>", "text": "@Fastimous chucky esta en la edad que AMA los carritos y trenesitos, todo lo usa de pista hasta mis piernas una risa es un bello.", "to_user": "Fastimous", "to_user_id": 256409391, "to_user_id_str": "256409391", "to_user_name": "Fastimous", "in_reply_to_status_id": 148838626795585540, "in_reply_to_status_id_str": "148838626795585536"}, +{"created_at": "Mon, 19 Dec 2011 18:57:10 +0000", "from_user": "pqpmonis", "from_user_id": 381693638, "from_user_id_str": "381693638", "from_user_name": "A RUA \\u00C9 NOIZ \\u266A", "geo": null, "id": 148839305039720450, "id_str": "148839305039720448", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685464897/IMG200_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685464897/IMG200_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ESSESGAYS: \"como vc pode gostar de tatuagem e alargador? que coisa feia\" disse a pessoa que gosta de funk usa shortinho de 5cm e tem piercing no umbigo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:57:10 +0000", "from_user": "JBiebsOurPride", "from_user_id": 383430948, "from_user_id_str": "383430948", "from_user_name": "J\\u00FAlia \\u265B", "geo": null, "id": 148839304964227070, "id_str": "148839304964227072", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698257627/tumblr_lwcoquryoL1r810clo1_250_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698257627/tumblr_lwcoquryoL1r810clo1_250_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "O RICO USA BRINCA \\u00C9 PLAYBOY, O POBRE USA BRINCO \\u00C9 VEADO. POBRE TRA\\u00CDDO \\u00C9 CHIFRUDO, RICO TRA\\u00CDDO \\u00C9 ENGANADO. O RICO METENDO \\u00C9 AMOR, O POBRE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:09 +0000", "from_user": "ddlovatoheart", "from_user_id": 97325228, "from_user_id_str": "97325228", "from_user_name": "Nathalia", "geo": null, "id": 148839301810102270, "id_str": "148839301810102272", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695826262/tumblr_lw1wzs66YD1qcn0nto1_500_large_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695826262/tumblr_lw1wzs66YD1qcn0nto1_500_large_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @maricheq: N\\u00E3o compreendo pq o Edward usa Yahoo pra procurar sobre o bebe monstro dele, ja que ele fazia propagando do google antes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:09 +0000", "from_user": "LoveJessicaHope", "from_user_id": 416005109, "from_user_id_str": "416005109", "from_user_name": "Jessica Hope", "geo": null, "id": 148839300094627840, "id_str": "148839300094627840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702269583/68M2RP0M_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702269583/68M2RP0M_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Things yu find under yur bed:\\nKids = monsters O-o\\nFat ppl = snacks lmao\\n!ME! = USA VOLLEYBALL MAGAZINES?????? lol :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:09 +0000", "from_user": "SFWMD", "from_user_id": 54424058, "from_user_id_str": "54424058", "from_user_name": "South Florida Water", "geo": null, "id": 148839299960422400, "id_str": "148839299960422400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1409787200/logoseal_blue_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1409787200/logoseal_blue_2_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "Water Watch for December 19, 2011. http://t.co/qfd8LFOj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:06 +0000", "from_user": "Trend_bot", "from_user_id": 359753420, "from_user_id_str": "359753420", "from_user_name": "Trendbot", "geo": null, "id": 148839290598719500, "id_str": "148839290598719489", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1507601566/1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1507601566/1_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @prjuniorsouza: A globo nos usa pra ganhar audiencia, e N\\u00F3s usamos a globo pra pregar o evangelho. Foorte #FestivalPromessas", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:06 +0000", "from_user": "esmusssein4", "from_user_id": 42312399, "from_user_id_str": "42312399", "from_user_name": "Terina F", "geo": null, "id": 148839290028294140, "id_str": "148839290028294144", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1620051065/Captura_de_pantalla_2011-11-03_a_las_01.09.11_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620051065/Captura_de_pantalla_2011-11-03_a_las_01.09.11_normal.png", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: No se usa \"hubieron\" cuando haber se emplea para denotar la presencia de personas o cosas, Hubieron 6 ni\\u00F1os (\\u2717), debe decirse: Hubo 6 ni\\u00F1os\\u2611", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:06 +0000", "from_user": "prismsinc", "from_user_id": 16054602, "from_user_id_str": "16054602", "from_user_name": "Ric", "geo": null, "id": 148839289894080500, "id_str": "148839289894080512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1692296511/prismsinc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692296511/prismsinc_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @suziplasse: Supreme Court sets Obama healthcare arguments http://t.co/JYG21wF0 #twisters #tcot", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:06 +0000", "from_user": "Demi_my_smile", "from_user_id": 427518042, "from_user_id_str": "427518042", "from_user_name": "Juliana Larissa", "geo": null, "id": 148839288866488320, "id_str": "148839288866488320", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1677339932/tumblr_lqwqc8owkq1qewvbv_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677339932/tumblr_lqwqc8owkq1qewvbv_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Demi n\\u00E3o usa mais o anel da pureza, mas disse que a promessa que fez quando come\\u00E7ou a us\\u00E1-lo ainda permanece..#DemiFatcs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:06 +0000", "from_user": "GabsAlemany", "from_user_id": 241927923, "from_user_id_str": "241927923", "from_user_name": "Gabriel Alemany ", "geo": null, "id": 148839288715485200, "id_str": "148839288715485184", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1447551240/Mrgaspelotica_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1447551240/Mrgaspelotica_copy_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@FranciscoGDiaz usa msn... conectate pa habla un chin", "to_user": "FranciscoGDiaz", "to_user_id": 305820174, "to_user_id_str": "305820174", "to_user_name": "Francisco Garc\\u00EDa", "in_reply_to_status_id": 148839108259754000, "in_reply_to_status_id_str": "148839108259753985"}, +{"created_at": "Mon, 19 Dec 2011 18:57:06 +0000", "from_user": "StateDept", "from_user_id": 9624742, "from_user_id_str": "9624742", "from_user_name": "StateDept", "geo": null, "id": 148839288002449400, "id_str": "148839288002449408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/777813417/statedept_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/777813417/statedept_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#SecClinton delivers remarks on Women, Peace and Security at 2:30 PM EST today: http://t.co/UC8ntoKO | More: http://t.co/7R3W0rtE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:05 +0000", "from_user": "tweetsofluv", "from_user_id": 44497515, "from_user_id_str": "44497515", "from_user_name": "LTW", "geo": null, "id": 148839284441485300, "id_str": "148839284441485312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1226017755/LuvTheWorldLogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1226017755/LuvTheWorldLogo_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "For those of you occupying Xmas, luvtheworld is 100% MADE IN THE GOOD OL USA!... http://t.co/9XVQ6Gtu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:05 +0000", "from_user": "OnuBoyette05171", "from_user_id": 433294853, "from_user_id_str": "433294853", "from_user_name": "Onu Boyette", "geo": null, "id": 148839284089167870, "id_str": "148839284089167873", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "http://t.co/JZQfmP9L USA Credit Card Loan XBOX Game Fence Bond Baseball Comedy Corvette Tom Cruise Actor Adultery Debt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:05 +0000", "from_user": "iphoneshere", "from_user_id": 174403688, "from_user_id_str": "174403688", "from_user_name": "bennyb", "geo": null, "id": 148839282994462720, "id_str": "148839282994462720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1100765083/iphone-4g-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1100765083/iphone-4g-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Unlocked iPhone 4S working in some pockets of T-Mobile USA's ...: Although T-Mobil USA wrote in the September le... http://t.co/lEIqpCsN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:04 +0000", "from_user": "Nashvillexing", "from_user_id": 70909011, "from_user_id_str": "70909011", "from_user_name": "Nashville Crossing", "geo": null, "id": 148839279244742660, "id_str": "148839279244742657", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/394283421/logo_normal_normal.GIF", "profile_image_url_https": "https://si0.twimg.com/profile_images/394283421/logo_normal_normal.GIF", "source": "<a href="http://ping.fm/" rel="nofollow">Ping.fm</a>", "text": "Route-Sales Representative - USA-TN-Nashville http://t.co/ZFO1d4tn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:03 +0000", "from_user": "Nashvillexing", "from_user_id": 70909011, "from_user_id_str": "70909011", "from_user_name": "Nashville Crossing", "geo": null, "id": 148839277818691600, "id_str": "148839277818691584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/394283421/logo_normal_normal.GIF", "profile_image_url_https": "https://si0.twimg.com/profile_images/394283421/logo_normal_normal.GIF", "source": "<a href="http://ping.fm/" rel="nofollow">Ping.fm</a>", "text": "College Leadership Intern - USA-TN-Nashville http://t.co/Y7AEBfoz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:02 +0000", "from_user": "ASBTDC", "from_user_id": 36979694, "from_user_id_str": "36979694", "from_user_name": "Arkansas SBTDC", "geo": null, "id": 148839272995225600, "id_str": "148839272995225600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1225550493/asbtdc-210x210_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225550493/asbtdc-210x210_normal.jpg", "source": "<a href="http://app.measuredvoice.com/" rel="nofollow">Measured Voice</a>", "text": "RT @IRSnews: Good records can save small businesses money at tax time. Learn what to keep and how to keep them. http://t.co/Yq2mWu3q #IRS taxes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:02 +0000", "from_user": "rebeca_marcano", "from_user_id": 183125025, "from_user_id_str": "183125025", "from_user_name": "Rebeca Marcano.", "geo": null, "id": 148839272957493250, "id_str": "148839272957493248", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693212372/IMG02954-20111208-1455_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693212372/IMG02954-20111208-1455_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @paoladdp: Mi hermana camina como un pony cuando usa tacones.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:02 +0000", "from_user": "caroljferrer", "from_user_id": 434576193, "from_user_id_str": "434576193", "from_user_name": "Carol g. Jimen\\u00E9z.", "geo": null, "id": 148839271200071680, "id_str": "148839271200071680", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1688111262/DSC07199_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688111262/DSC07199_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "es que la gente no usa la cabeza para nadaa.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:01 +0000", "from_user": "um_bbe", "from_user_id": 403099409, "from_user_id_str": "403099409", "from_user_name": "Peeu e o seu ?", "geo": null, "id": 148839266183692300, "id_str": "148839266183692289", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1679702191/juuu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679702191/juuu_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "aaaa tag do @brunoperfect_ #Em2012Quero teeeem que cresce e si espalhaa vuum bora usa ela ai ! \\o/", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:00 +0000", "from_user": "_LailaOliveira", "from_user_id": 396591039, "from_user_id_str": "396591039", "from_user_name": "Yasmim", "geo": null, "id": 148839263822299140, "id_str": "148839263822299136", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1615780660/of_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615780660/of_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ESSESGAYS: \"como vc pode gostar de tatuagem e alargador? que coisa feia\" disse a pessoa que gosta de funk usa shortinho de 5cm e tem piercing no umbigo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:00 +0000", "from_user": "LoriTherion", "from_user_id": 375488717, "from_user_id_str": "375488717", "from_user_name": "Lori Lewis_Therion", "geo": null, "id": 148839263692263420, "id_str": "148839263692263424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1548090861/twit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1548090861/twit_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "I posted 10 photos on Facebook in the album \"ProgPower USA 2011\" http://t.co/46uxbIeR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:59 +0000", "from_user": "dennerdosantos", "from_user_id": 190696233, "from_user_id_str": "190696233", "from_user_name": "D\\u00EAnner Amaral", "geo": null, "id": 148839259544096770, "id_str": "148839259544096768", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1545659109/102_3273_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545659109/102_3273_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @SouDesses: #SouDesses que n\\u00E3o usa drogas", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:58 +0000", "from_user": "MutiaraRachman", "from_user_id": 63057467, "from_user_id_str": "63057467", "from_user_name": "Mutiara", "geo": null, "id": 148839254699683840, "id_str": "148839254699683840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1651208481/muti__3__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651208481/muti__3__normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"@ReutersPolitics: Senate refuses to renegotiate payroll tax cut deal http://t.co/90MdTpjm\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:57 +0000", "from_user": "maroxov", "from_user_id": 282999458, "from_user_id_str": "282999458", "from_user_name": "Maroxov", "geo": null, "id": 148839251788836860, "id_str": "148839251788836864", "iso_language_code": "ar", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1586214338/sword_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586214338/sword_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @bahrainidoctor: \\u0627\\u0644\\u0627\\u0646\\u062A\\u0642\\u0627\\u062F\\u0627\\u062A \\u0627\\u0644\\u0623\\u0645\\u0631\\u064A\\u0643\\u064A\\u0629 \\u0644\\u0639\\u0646\\u0641 \\u0627\\u0644\\u0645\\u062A\\u0638\\u0627\\u0647\\u0631\\u064A\\u0646 \\u062A\\u0635\\u062F\\u0645 \\u0627\\u0644\\u0645\\u0639\\u0627\\u0631\\u0636\\u0629 \\u0627\\u0644\\u0628\\u062D\\u0631\\u064A\\u0646\\u064A\\u0629 http://t.co/IQeRc42Q #Bahrain #USA #US #Alwefaq #UAE #KSA #GCC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:57 +0000", "from_user": "PoliticeStiri", "from_user_id": 321294341, "from_user_id_str": "321294341", "from_user_name": "Stiri Politice", "geo": null, "id": 148839249586831360, "id_str": "148839249586831360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1406032245/twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1406032245/twitter_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#News Struggling Santorum bets big on Iowa: DES MOINES, Iowa (Reuters) - Rick Santorum thought he had it... http://t.co/c8JtjedT #Stiri", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:57 +0000", "from_user": "KindleAccessor", "from_user_id": 333864305, "from_user_id_str": "333864305", "from_user_name": "Richard Floyd", "geo": null, "id": 148839249486159870, "id_str": "148839249486159872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1438273678/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1438273678/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA # Marware Eco-Vue for Kindle Fire Cover, Black $34.99: One of the most popular Amazon Kindle cases re... http://t.co/lxO46k7F", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:56 +0000", "from_user": "KindleAccessor", "from_user_id": 333864305, "from_user_id_str": "333864305", "from_user_name": "Richard Floyd", "geo": null, "id": 148839247082819600, "id_str": "148839247082819584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1438273678/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1438273678/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #30305 The Kindle 2 Cookbook: How To Do Everything the Manual Doesn't Tell You: OVER 50,000 COPIES SO... http://t.co/bcAKhnlM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:54 +0000", "from_user": "mariaofsmaland", "from_user_id": 300747864, "from_user_id_str": "300747864", "from_user_name": "mariaofsmaland", "geo": null, "id": 148839239692455940, "id_str": "148839239692455937", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702143361/maria_profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702143361/maria_profile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"..s\\u00F6ker du intr\\u00E4de f\\u00F6r att \\u00E4gna dig \\u00E5t brottslig eller omoralisk aktivitet?\" - \\u00E5h USA, moralens v\\u00E4ktare!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:53 +0000", "from_user": "queen_yas_", "from_user_id": 253281238, "from_user_id_str": "253281238", "from_user_name": "queen of nowhere. ", "geo": null, "id": 148839234214703100, "id_str": "148839234214703104", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701150890/377797_232534876815045_100001756043193_570287_1658930505_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701150890/377797_232534876815045_100001756043193_570287_1658930505_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Isah_Sani PELO AMOR DE DEUS, o Severus usa duplo sentido na fic inteira.", "to_user": "Isah_Sani", "to_user_id": 270660621, "to_user_id_str": "270660621", "to_user_name": "Isabela Sanit\\u00E1", "in_reply_to_status_id": 148839092073934850, "in_reply_to_status_id_str": "148839092073934848"}, +{"created_at": "Mon, 19 Dec 2011 18:56:53 +0000", "from_user": "riduqyju", "from_user_id": 397495726, "from_user_id_str": "397495726", "from_user_name": "Orianna Karpenko", "geo": null, "id": 148839233963040770, "id_str": "148839233963040768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1604830601/1047_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1604830601/1047_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @moforowori: is loan point usa licensed http://t.co/GP7A5zwX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:53 +0000", "from_user": "_GabrielBorba_", "from_user_id": 59794233, "from_user_id_str": "59794233", "from_user_name": "\\u0997\\u09BE\\u09AC\\u09CD\\u09B0\\u09BF\\u09AF\\u09BC\\u09C7\\u09B2 \\u099C\\u09B2\\u09AA\\u09BE\\u0987 \\u23C3 ", "geo": null, "id": 148839233837215740, "id_str": "148839233837215744", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1547184761/imagem_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1547184761/imagem_normal.JPG", "source": "<a href="http://m.ubersocial.com" rel="nofollow">\\u00DCberSocial Mobile</a>", "text": "@GiSousab ow mas pra desbloquer tem um aparelho q vende n target(loja la no usa) q desbloqueia por 10 dolares", "to_user": "GiSousab", "to_user_id": 80346346, "to_user_id_str": "80346346", "to_user_name": "Giovana Baliza", "in_reply_to_status_id": 148837054212603900, "in_reply_to_status_id_str": "148837054212603905"}, +{"created_at": "Mon, 19 Dec 2011 18:56:53 +0000", "from_user": "lohepupa", "from_user_id": 419494635, "from_user_id_str": "419494635", "from_user_name": "Betsan Haddock", "geo": null, "id": 148839232927043600, "id_str": "148839232927043584", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1658948510/1_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658948510/1_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @qupoqit: student loan deferment forms stafford http://t.co/9Y0Y5XK8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:52 +0000", "from_user": "Palestino_", "from_user_id": 77487068, "from_user_id_str": "77487068", "from_user_name": "Palestino", "geo": null, "id": 148839229898756100, "id_str": "148839229898756097", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1519860897/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1519860897/image_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: No se usa \"hubieron\" cuando haber se emplea para denotar la presencia de personas o cosas, debe decirse: Hubo 6 ni\\u00F1os\\u2611", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:51 +0000", "from_user": "tblop", "from_user_id": 47526085, "from_user_id_str": "47526085", "from_user_name": "Ramrod Fappington", "geo": null, "id": 148839225901588480, "id_str": "148839225901588482", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/264909837/gagged-64_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/264909837/gagged-64_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "New Petite Filipina Hawaiian In El Cajon-San Diego outcall - w4m - http://t.co/XXOoFHVi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:51 +0000", "from_user": "ChooseCullen", "from_user_id": 412377973, "from_user_id_str": "412377973", "from_user_name": "57 DIAS \\u2665", "geo": null, "id": 148839224202895360, "id_str": "148839224202895360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702295242/tumblr_lvgaapnIQs1qhwpiu_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702295242/tumblr_lvgaapnIQs1qhwpiu_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@KristenBROnline isso e vdd - #HappyBirthdayTwilighters usa a tag", "to_user": "KristenBROnline", "to_user_id": 231561173, "to_user_id_str": "231561173", "to_user_name": "Kristen Online", "in_reply_to_status_id": 148836762477789200, "in_reply_to_status_id_str": "148836762477789185"}, +{"created_at": "Mon, 19 Dec 2011 18:56:50 +0000", "from_user": "MacTrast", "from_user_id": 16711478, "from_user_id_str": "16711478", "from_user_name": "MacTrast", "geo": null, "id": 148839221770199040, "id_str": "148839221770199040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1581477225/mactrast-logo_reasonably_small_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1581477225/mactrast-logo_reasonably_small_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "T-Mobile USA begins adding iPhone-ready 3G to their network, may be preparing to offer the iPhone http://t.co/hz227wBM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:49 +0000", "from_user": "SAMUEL_SAN", "from_user_id": 22853733, "from_user_id_str": "22853733", "from_user_name": "SAMUEL-SAN", "geo": null, "id": 148839219450740740, "id_str": "148839219450740736", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1629566623/sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629566623/sm_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@GabrielaPAIN Ei esse jogo q o o cara \\u00E9 imortal \\u00E9 um q ele arraca a propria cabe\\u00E7a e usa como arma? (na verdade nao \\u00E9 so a cabe\\u00E7a ne)", "to_user": "GabrielaPAIN", "to_user_id": 388337120, "to_user_id_str": "388337120", "to_user_name": "gabideathqsuad@", "in_reply_to_status_id": 148524646935953400, "in_reply_to_status_id_str": "148524646935953408"}, +{"created_at": "Mon, 19 Dec 2011 18:56:49 +0000", "from_user": "among_women", "from_user_id": 395978966, "from_user_id_str": "395978966", "from_user_name": "Pat Gohn", "geo": null, "id": 148839219173920770, "id_str": "148839219173920769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1601096668/AW_300x300cover_art_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601096668/AW_300x300cover_art_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Excellent news for the USA! | RT @TheAnchoress Kateri Tekakwitha, Marianne Cope to be Canonized http://t.co/lCavlofG @OSV @KathySchiffer", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:49 +0000", "from_user": "bahrainseed", "from_user_id": 301619645, "from_user_id_str": "301619645", "from_user_name": "\\u0627\\u0646\\u0643\\u0633\\u0631 \\u0627\\u0644\\u0642\\u064A\\u062F", "geo": null, "id": 148839218100191230, "id_str": "148839218100191233", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1527659526/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1527659526/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#F1 teams: police try to run over a protester in Mameer #Bahrain /12\\nhttp://t.co/VzwBcQxJ\\n\\n@F1\\n@14FebTV\\n@ALWEFAQ\\n@SHalMosawi\\n@Feb14RT\\n#USA", "to_user": "F1", "to_user_id": 69008563, "to_user_id_str": "69008563", "to_user_name": "Formula1.com"}, +{"created_at": "Mon, 19 Dec 2011 18:56:49 +0000", "from_user": "Jasminepjl", "from_user_id": 431774312, "from_user_id_str": "431774312", "from_user_name": "Jasmine Haefner", "geo": null, "id": 148839216799957000, "id_str": "148839216799956993", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681183462/nl1w5j555w_120749357-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681183462/nl1w5j555w_120749357-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "It isn't easy being princess Marissa White USA Flag / Checker Racing Hat / Baseball Cap: T-ShirtFrenzy offers ov... http://t.co/Dkwum8tl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:49 +0000", "from_user": "Ludivinasdz", "from_user_id": 431756070, "from_user_id_str": "431756070", "from_user_name": "Ludivina Filmer", "geo": null, "id": 148839216749621250, "id_str": "148839216749621248", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681150252/rqimf52csp_121330606_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681150252/rqimf52csp_121330606_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Neiko Tools USA 8\" DAQ Gear Driven Orbital Sander with Pad: Neiko Tools U.S.A. 8\"-DAQ Gear Driven Orbital Sander... http://t.co/tzVwYSB6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:48 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148839215050932220, "id_str": "148839215050932225", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "CARLOS USA COND\\u00D3N,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:48 +0000", "from_user": "JuliaGomees", "from_user_id": 60754539, "from_user_id_str": "60754539", "from_user_name": "Juu Gomes", "geo": null, "id": 148839214744743940, "id_str": "148839214744743936", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1374125174/Foto0502._normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1374125174/Foto0502._normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "maravilhanaervilha: http://t.co/8XBJptdN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:48 +0000", "from_user": "eddieshafer", "from_user_id": 57380519, "from_user_id_str": "57380519", "from_user_name": "Eddie Shafer", "geo": null, "id": 148839213977174000, "id_str": "148839213977174017", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1573221162/ESProfile_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1573221162/ESProfile_normal.JPG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "RT @Chronicle_Owls: Rice forward Christal Porter was named Conference USA freshman of the week Monday #rice", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:47 +0000", "from_user": "fopyfetiba", "from_user_id": 433843387, "from_user_id_str": "433843387", "from_user_name": "Mawaddah Gregson", "geo": null, "id": 148839211355750400, "id_str": "148839211355750401", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1686813191/1590_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686813191/1590_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "loan closing documents http://t.co/BYEvp5Rr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:47 +0000", "from_user": "TheChinaPress", "from_user_id": 35886858, "from_user_id_str": "35886858", "from_user_name": "China Press ", "geo": null, "id": 148839207635398660, "id_str": "148839207635398656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/187085108/logo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/187085108/logo_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Paul leads in Iowa as Gingrich support erodes: poll\\nhttp://t.co/FHeXxo0V", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:46 +0000", "from_user": "fmaylliw0909", "from_user_id": 404077294, "from_user_id_str": "404077294", "from_user_name": "Francis M. Ni\\u00F1o S.", "geo": null, "id": 148839207325011970, "id_str": "148839207325011968", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676539545/DSC07542_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676539545/DSC07542_normal.JPG", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: No se usa \"hubieron\" cuando haber se emplea para denotar la presencia de personas o cosas, Hubieron 6 ni\\u00F1os (\\u2717), debe decirse: Hubo 6 ni\\u00F1os\\u2611", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:45 +0000", "from_user": "Cletus_finance", "from_user_id": 372801171, "from_user_id_str": "372801171", "from_user_name": "Cletus E. Cunningham", "geo": null, "id": 148839201289408500, "id_str": "148839201289408512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1541051199/intermediatefinance_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541051199/intermediatefinance_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "The Primary Promise That USA Had Made to the World Citizens is Now Gravely Jeopardized http://t.co/5EDmj29k", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:45 +0000", "from_user": "EmmettKellyJr_F", "from_user_id": 409675702, "from_user_id_str": "409675702", "from_user_name": "Emmett Kelly Jr Gift", "geo": null, "id": 148839199301312500, "id_str": "148839199301312512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1674139183/EKJ1101_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674139183/EKJ1101_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "☚ Emmett Kelly Jr 2011 Christmas Ornament.2011 Ornament Made in the USA Get at http://t.co/vElCyHMJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:44 +0000", "from_user": "JorgeSierraG", "from_user_id": 66746647, "from_user_id_str": "66746647", "from_user_name": "Jorge Sierra", "geo": null, "id": 148839198198218750, "id_str": "148839198198218752", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1678414228/Chapulin_Colorado_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678414228/Chapulin_Colorado_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "#L\\u00F3pezObrador no usa el metro porq no es #Prole, en cambio yo us\\u00E9 el metro en NY, Boston, Par\\u00EDs, Londres, Madrid y Berlin. Soy #MegaProle!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:44 +0000", "from_user": "mariateigland", "from_user_id": 187670230, "from_user_id_str": "187670230", "from_user_name": "Maria Teigland", "geo": null, "id": 148839195283161100, "id_str": "148839195283161088", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681118053/thomas_adam_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681118053/thomas_adam_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Nicklasmyhre pakker til USA, lurer p\\u00E5 om det er plass i kofferten!?", "to_user": "Nicklasmyhre", "to_user_id": 418069301, "to_user_id_str": "418069301", "to_user_name": "Nicklas Myhre"}, +{"created_at": "Mon, 19 Dec 2011 18:56:43 +0000", "from_user": "itsvickieee", "from_user_id": 101253298, "from_user_id_str": "101253298", "from_user_name": "Victoria", "geo": null, "id": 148839193982926850, "id_str": "148839193982926848", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696570075/teukkie___normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696570075/teukkie___normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/MLD7ZLbW COSTAY MAIS DESSA VOU COMPRAR BSJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:43 +0000", "from_user": "Marlene_Vii", "from_user_id": 100587281, "from_user_id_str": "100587281", "from_user_name": "Marlene Villegas", "geo": null, "id": 148839193622220800, "id_str": "148839193622220800", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1674520987/DSC01007_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674520987/DSC01007_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @_Adicta: TU LA QUE LEE ESTE TWEET USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:43 +0000", "from_user": "jeffreymadwisc", "from_user_id": 278570134, "from_user_id_str": "278570134", "from_user_name": "jeffreysborreson", "geo": null, "id": 148839191986454530, "id_str": "148839191986454529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1305915974/ogTBT7x1_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1305915974/ogTBT7x1_normal", "source": "<a href="http://splitweet.com" rel="nofollow">Splitweet</a>", "text": "RT @BigFraud: FBI #Los #Angeles \"Closely Monitoring\" Coutts Bank HSBC USA $1,OOO,OOO,OOO, #Bahamas Gibraltar Fraud Case http://t.co/xKsdaMIc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:42 +0000", "from_user": "sabiqydin", "from_user_id": 434130821, "from_user_id_str": "434130821", "from_user_name": "Roswel Matej", "geo": null, "id": 148839189595701250, "id_str": "148839189595701248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687038175/1573_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687038175/1573_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "auto insurance license course http://t.co/jjk8dHR2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:42 +0000", "from_user": "Becknetter", "from_user_id": 44663498, "from_user_id_str": "44663498", "from_user_name": "Beck (P. Becknetter)", "geo": null, "id": 148839188790394880, "id_str": "148839188790394880", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1652312475/1fd89130153011e180c9123138016265_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652312475/1fd89130153011e180c9123138016265_7_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Detesta falsidade, mas usa lente de contato verde.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:41 +0000", "from_user": "avrildalara", "from_user_id": 292607871, "from_user_id_str": "292607871", "from_user_name": "Lara \\u25B2", "geo": null, "id": 148839185191669760, "id_str": "148839185191669762", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1683529706/Imagem39_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683529706/Imagem39_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ESSESGAYS: \"como vc pode gostar de tatuagem e alargador? que coisa feia\" disse a pessoa que gosta de funk usa shortinho de 5cm e tem piercing no umbigo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:41 +0000", "from_user": "Margartmpw", "from_user_id": 440196582, "from_user_id_str": "440196582", "from_user_name": "Margart Trivette", "geo": null, "id": 148839184730296320, "id_str": "148839184730296322", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700534738/large_RQRSGRGUFXNP_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700534738/large_RQRSGRGUFXNP_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "I Love/Heart American Eskimo Dog White USA Flag / Checker Racing Hat / Baseball Cap: T-ShirtFrenzy offers over 3... http://t.co/gW5CmZuU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:40 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148839182008205300, "id_str": "148839182008205312", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "NECIA USA COND\\u00D3N,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:40 +0000", "from_user": "fadboo", "from_user_id": 28802658, "from_user_id_str": "28802658", "from_user_name": "Michelle", "geo": null, "id": 148839181269991420, "id_str": "148839181269991424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1158574286/Prance__Custom___6__normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1158574286/Prance__Custom___6__normal.gif", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @TornadoTimmy: The SPC issues a winter MD for northeast NM, SE CO, & SW KS..snowfall rates at or above 1\"/hr: http://t.co/QBQ8SWW7 #cowx #kswx #nmwx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:40 +0000", "from_user": "medicenojos", "from_user_id": 403538034, "from_user_id_str": "403538034", "from_user_name": "3lm3r M3nd3z", "geo": null, "id": 148839181110624260, "id_str": "148839181110624256", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688341780/IMG00124-20111116-1128_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688341780/IMG00124-20111116-1128_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@Keviin_Sandoval yo noc paraq tiene bb @Keviin_Sandoval JAMAS me contsta en bbm se tarda una eternidad en responder twits y no usa fb .l.", "to_user": "Keviin_Sandoval", "to_user_id": 363361311, "to_user_id_str": "363361311", "to_user_name": "Kevin :3", "in_reply_to_status_id": 148807738145775600, "in_reply_to_status_id_str": "148807738145775617"}, +{"created_at": "Mon, 19 Dec 2011 18:56:40 +0000", "from_user": "mbeerstrum", "from_user_id": 176930594, "from_user_id_str": "176930594", "from_user_name": "Melanie Bjurstrom", "geo": null, "id": 148839179957182460, "id_str": "148839179957182464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1666947181/mb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666947181/mb_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @grownupbutnot: ummmm, excuse me criminal intent, but the USA network is reserved specifically for SVU #getouttahere", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:40 +0000", "from_user": "gbranker", "from_user_id": 204832422, "from_user_id_str": "204832422", "from_user_name": "Glenn Branker", "geo": +{"coordinates": [40.4659,-74.4857], "type": "Point"}, "id": 148839178455613440, "id_str": "148839178455613440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1526653934/326026002_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1526653934/326026002_normal.jpg", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "I just became the mayor of XPAK USA, LLC on @foursquare! http://t.co/8REHlTxV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:38 +0000", "from_user": "alvintoddjr", "from_user_id": 143210510, "from_user_id_str": "143210510", "from_user_name": "Alvin Todd", "geo": null, "id": 148839172994641920, "id_str": "148839172994641920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1676740412/AeEjuetCMAEuvsd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676740412/AeEjuetCMAEuvsd_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @BuzzinMemphis: Will Barton named Conference USA player of the week: Sophomore guard Will Barton was named C-USA player of the week... http://t.co/C65ZelcK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:37 +0000", "from_user": "Marco_pop", "from_user_id": 93857177, "from_user_id_str": "93857177", "from_user_name": "Marcos Espinal", "geo": null, "id": 148839168385093630, "id_str": "148839168385093632", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689601278/africa0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689601278/africa0_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @JUNIORCABRERA07: \"ALFAREROS HOY EN NUESTRA FE EN VIVO\"@ewtn (especial de navidad) USA 6:00PM- MEXICO 5:00PM- BOGOTA 6:00PM MADRID 12:00AM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:37 +0000", "from_user": "directnewsart", "from_user_id": 108008516, "from_user_id_str": "108008516", "from_user_name": "Direct News Articles", "geo": null, "id": 148839166271164400, "id_str": "148839166271164416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Watch St.Louis Blues vs Columbus Blue Jackets Live Stream Hockey USA NHL National Hockey\\u2026 http://t.co/Qh9CQvIo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:35 +0000", "from_user": "nadoxyfet", "from_user_id": 419400546, "from_user_id_str": "419400546", "from_user_name": "Waller Emps", "geo": null, "id": 148839158792728580, "id_str": "148839158792728576", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1658938886/15_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658938886/15_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @naqomegogum: torque car insurance http://t.co/WmPaDtLV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:34 +0000", "from_user": "rebelfan1_", "from_user_id": 155392070, "from_user_id_str": "155392070", "from_user_name": "Jacob McGhee", "geo": null, "id": 148839155814764540, "id_str": "148839155814764544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/987777772/logo.UNLV__1__normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/987777772/logo.UNLV__1__normal.gif", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @MyRebelSwag: UNLV checks in at #23 in the USA Today/ESPN Coaches Poll.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:34 +0000", "from_user": "Molli08Talk", "from_user_id": 398272729, "from_user_id_str": "398272729", "from_user_name": "Molli Talk", "geo": null, "id": 148839154141249540, "id_str": "148839154141249536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1606567562/KOM-3914_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606567562/KOM-3914_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dune (Extended Three Hour Edition) [ NON-USA FORMAT, PAL, Reg.0 Import - Australia ]: http://t.co/Mtczgi19", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:33 +0000", "from_user": "evoluia", "from_user_id": 58322513, "from_user_id_str": "58322513", "from_user_name": "luiz henrique ", "geo": null, "id": 148839150894841860, "id_str": "148839150894841857", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627547909/274650_100001458397344_1451969350_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627547909/274650_100001458397344_1451969350_n_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Andrea Andrade usa vestido de R$ 20 mil em ensaio de escola de samba http://t.co/dn4CpdPz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:32 +0000", "from_user": "soyunasur", "from_user_id": 373642650, "from_user_id_str": "373642650", "from_user_name": "unasur", "geo": null, "id": 148839146482438140, "id_str": "148839146482438146", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1610519612/250px-Emblem_of_the_Union_of_South_American_Nations.svg_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610519612/250px-Emblem_of_the_Union_of_South_American_Nations.svg_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @katemar1: Un intelectual es un hombre que usa m\\u00E1s palabras de las necesarias para decir m\\u00E1s cosas de las que sabe.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:31 +0000", "from_user": "voluvia1", "from_user_id": 289150468, "from_user_id_str": "289150468", "from_user_name": "LUIZ HENRIQUE", "geo": null, "id": 148839144146206720, "id_str": "148839144146206720", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Andrea Andrade usa vestido de R$ 20 mil em ensaio de escola de samba http://t.co/ck0qtgUv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:31 +0000", "from_user": "StarLedgrtravlr", "from_user_id": 366642142, "from_user_id_str": "366642142", "from_user_name": "Star-Ledger Travel", "geo": null, "id": 148839142153912320, "id_str": "148839142153912321", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1546721628/twitter_SLTravlr2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546721628/twitter_SLTravlr2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @NewarkMuseum: USA Today recently listed the Newark Museum\\u2019s shop as one of the top 10 great places to find fine gifts at a museum. Come by and shop!...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:30 +0000", "from_user": "thaisquiando", "from_user_id": 81216334, "from_user_id_str": "81216334", "from_user_name": "th\\u00E1 dybax", "geo": null, "id": 148839138563588100, "id_str": "148839138563588096", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697422525/P1090528_-_C_pia_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697422525/P1090528_-_C_pia_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:30 +0000", "from_user": "jcatolicospan", "from_user_id": 188107334, "from_user_id_str": "188107334", "from_user_name": "J\\u00F3venes Cat\\u00F3licos", "geo": null, "id": 148839137296908300, "id_str": "148839137296908288", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693981201/Display_Twitter_AdvientoMORADA.pptx_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693981201/Display_Twitter_AdvientoMORADA.pptx_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ALFAREROS: \"ALFAREROS HOY EN NUESTRA FE EN VIVO\" EWTN \\n (especial de navidad) USA 6:00PM- MEXICO 5:00PM- BOGOTA 6:00PM\\n MADRID 12:00AM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:29 +0000", "from_user": "Glendoraioy", "from_user_id": 430051140, "from_user_id_str": "430051140", "from_user_name": "Glendora Gren", "geo": null, "id": 148839134264426500, "id_str": "148839134264426496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677531609/d1ar24fxhn_135318523-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677531609/d1ar24fxhn_135318523-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Fabricas Selectas Party Set of Marbles Dinosaur: http://t.co/dV0PoCDu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:28 +0000", "from_user": "DMoralesReyes", "from_user_id": 108430900, "from_user_id_str": "108430900", "from_user_name": "Diego Morales", "geo": null, "id": 148839128040091650, "id_str": "148839128040091649", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1097646872/pointy-haired_boss_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1097646872/pointy-haired_boss_bigger_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@kirtash90 ten por seguro que aqu\\u00ED ni tu ni yo podremos entrar en ESADE. En USA con esfuerzo si podr\\u00EDas en alguna similar.", "to_user": "kirtash90", "to_user_id": 199686353, "to_user_id_str": "199686353", "to_user_name": "\\u00C1ngel Fern\\u00E1ndez ", "in_reply_to_status_id": 148836805075144700, "in_reply_to_status_id_str": "148836805075144705"}, +{"created_at": "Mon, 19 Dec 2011 18:56:27 +0000", "from_user": "JulianaAlmeid_", "from_user_id": 79733377, "from_user_id_str": "79733377", "from_user_name": "Juliana Almeida", "geo": null, "id": 148839127205412860, "id_str": "148839127205412864", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1609503335/Snapshot_20110914_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609503335/Snapshot_20110914_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Pessoas que ainda usa o orkut.ate qnd?\\u00B0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:27 +0000", "from_user": "FloridaDealsNow", "from_user_id": 405780243, "from_user_id_str": "405780243", "from_user_name": "Florida Deals Today", "geo": null, "id": 148839126593052670, "id_str": "148839126593052673", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1624212269/Fort_L_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624212269/Fort_L_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Here are today's daily deals three-quarters off http://t.co/XCn1o01S", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:27 +0000", "from_user": "bolicato1", "from_user_id": 370647079, "from_user_id_str": "370647079", "from_user_name": "bolicato", "geo": null, "id": 148839124848218100, "id_str": "148839124848218112", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1537185844/bolicato_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1537185844/bolicato_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Andrea Andrade usa vestido de R$ 20 mil em ensaio de escola de samba http://t.co/Vj8MlccK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:26 +0000", "from_user": "zandrawtnorvell", "from_user_id": 305967447, "from_user_id_str": "305967447", "from_user_name": "Zandra Norvell", "geo": null, "id": 148839123225030660, "id_str": "148839123225030656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685458293/imagesCAJUBWXJ_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685458293/imagesCAJUBWXJ_normal", "source": "<a href="http://couponsforcybermonday.com" rel="nofollow">couponsforcybermondaydotcom</a>", "text": "HagenExo Terra Compact Incandescent Fixt..Only $ 16.75 http://t.co/AQJPZkbC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:26 +0000", "from_user": "princehandley", "from_user_id": 16877999, "from_user_id_str": "16877999", "from_user_name": "Prince Handley", "geo": null, "id": 148839122830770180, "id_str": "148839122830770176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/235256333/Prince_Handley_300x300_jpeg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/235256333/Prince_Handley_300x300_jpeg_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Who will win the #2012 #USA #Presidential #Election? Prediction #economy #green #terrorism By Prince Handley http://t.co/9GxWo66X", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:26 +0000", "from_user": "ArKaos", "from_user_id": 41770806, "from_user_id_str": "41770806", "from_user_name": "ArKaos Team", "geo": null, "id": 148839122121928700, "id_str": "148839122121928704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/422419664/profilepic001-sq_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/422419664/profilepic001-sq_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "This week's winner is Jeff Gooch, from Greenwood, Indiana, USA! You can still participate for next week at http://t.co/iICtqJUa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:26 +0000", "from_user": "ShayraSwift", "from_user_id": 166042714, "from_user_id_str": "166042714", "from_user_name": "Hi, I'm Sy (\\u25D5\\u203F\\u25D5 \\u273F)", "geo": null, "id": 148839121811550200, "id_str": "148839121811550208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696765647/473803405_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696765647/473803405_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@alishaluvsyou The USA. :D", "to_user": "alishaluvsyou", "to_user_id": 151139691, "to_user_id_str": "151139691", "to_user_name": "AlishaSmith:)", "in_reply_to_status_id": 148838954521722880, "in_reply_to_status_id_str": "148838954521722880"}, +{"created_at": "Mon, 19 Dec 2011 18:56:25 +0000", "from_user": "theycallmeteddy", "from_user_id": 19655696, "from_user_id_str": "19655696", "from_user_name": "theycallmeteddy", "geo": null, "id": 148839118208647170, "id_str": "148839118208647168", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686597942/me_strbcks_bw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686597942/me_strbcks_bw_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Tonight Alive makin melejit aja nih stlh USA Tour, jd iri sama @johanwinart0 yg foto bareng sama Jenna dan yg lain.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:24 +0000", "from_user": "BenMishal", "from_user_id": 231148402, "from_user_id_str": "231148402", "from_user_name": "Abdulrahman AlMishal", "geo": null, "id": 148839114899333120, "id_str": "148839114899333120", "iso_language_code": "ar", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1560894433/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1560894433/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u0634\\u0631\\u0648\\u0637 \\u0627\\u0644\\u062A\\u0631\\u0634\\u062D \\u0644\\u0631\\u0626\\u0627\\u0633\\u0647 \\u0627\\u0644\\u0648\\u0644\\u0627\\u064A\\u0627\\u062A \\u0627\\u0644\\u0623\\u0645\\u0631\\u064A\\u0643\\u064A\\u0647 \\u0627\\u0644\\u0645\\u062A\\u062D\\u062F\\u0647\\n\\n* \\u0627\\u0644\\u0639\\u0645\\u0631 \\u0663\\u0665 \\u0633\\u0646\\u0647 \\u0648\\u0645\\u0627 \\u0641\\u0648\\u0642\\n* \\u0623\\u0646 \\u064A\\u0643\\u0648\\u0646 \\u0644\\u062F\\u064A\\u0643 \\u0625\\u062B\\u0628\\u0627\\u062A \\u0628\\u0623\\u0646\\u0643 \\u0623\\u0645\\u0631\\u064A\\u0643\\u064A\\n\\n#\\u0645\\u0639\\u0644\\u0648\\u0645\\u0647\\n#USA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:24 +0000", "from_user": "AjarianJ", "from_user_id": 45601751, "from_user_id_str": "45601751", "from_user_name": "Adrian", "geo": null, "id": 148839111652941820, "id_str": "148839111652941824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1505886531/IMG_0939__480x640__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505886531/IMG_0939__480x640__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @harvardcrimson: MBB: Harvard back in the ESPN/USA Today coaches poll at No. 25 #GoCrimson", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:24 +0000", "from_user": "chamilli9mm", "from_user_id": 108694448, "from_user_id_str": "108694448", "from_user_name": "David adiele", "geo": null, "id": 148839111636172800, "id_str": "148839111636172800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1595631890/IMG00189-20111007-0821_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1595631890/IMG00189-20111007-0821_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Playboy mansion RT @TWEETORACLE: The HQ of the #PORN industry in USA is ________?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:23 +0000", "from_user": "samrosin", "from_user_id": 172472466, "from_user_id_str": "172472466", "from_user_name": "Sam Rosin", "geo": null, "id": 148839108981178370, "id_str": "148839108981178368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1514353538/sampic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1514353538/sampic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @harvardcrimson: MBB: Harvard back in the ESPN/USA Today coaches poll at No. 25 #GoCrimson", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:23 +0000", "from_user": "CintyaFontelles", "from_user_id": 224408218, "from_user_id_str": "224408218", "from_user_name": "\\u10D6 Cintyaa.F.", "geo": null, "id": 148839108536582140, "id_str": "148839108536582145", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1616384870/CIMG4886_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616384870/CIMG4886_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Usa meus beijos e abra\\u00E7os pra se esconder da dor, nem se toca que eu posso gostar (8)....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:23 +0000", "from_user": "wordtravelsfast", "from_user_id": 19225703, "from_user_id_str": "19225703", "from_user_name": "Lauree McArdle", "geo": null, "id": 148839108280717300, "id_str": "148839108280717312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1250039256/profilepic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1250039256/profilepic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@bbcgetiton enjoying the show while working in Arlington, VA USA! How about @AdmiralFallow \"Squealing Pigs\" featuring a rousing clarinet?!", "to_user": "bbcgetiton", "to_user_id": 336000877, "to_user_id_str": "336000877", "to_user_name": "Get it On"}, +{"created_at": "Mon, 19 Dec 2011 18:56:23 +0000", "from_user": "circotimia_", "from_user_id": 221610474, "from_user_id_str": "221610474", "from_user_name": "M a i t e\\u10E6. ", "geo": null, "id": 148839107437666300, "id_str": "148839107437666304", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698350821/jjo__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698350821/jjo__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "TENGO SUE\\u00D1O USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:23 +0000", "from_user": "mal__donado", "from_user_id": 384153752, "from_user_id_str": "384153752", "from_user_name": "Rodrigo Maldonado", "geo": null, "id": 148839107232145400, "id_str": "148839107232145408", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1683784056/maldo_msnfd5_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683784056/maldo_msnfd5_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@l4r0s4 Bom, voc\\u00EA \\u00E9 perturbada e usa preto... Mas n\\u00E3o acho que tenha tanto senso de Justi\\u00E7a.", "to_user": "l4r0s4", "to_user_id": 424588793, "to_user_id_str": "424588793", "to_user_name": "Larissa Junior", "in_reply_to_status_id": 148838621330415600, "in_reply_to_status_id_str": "148838621330415618"}, +{"created_at": "Mon, 19 Dec 2011 18:56:22 +0000", "from_user": "SarahAlSaeed", "from_user_id": 48180774, "from_user_id_str": "48180774", "from_user_name": "Sarah Al Saeed", "geo": null, "id": 148839104610709500, "id_str": "148839104610709504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1667703408/IMG-20110913-00560_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667703408/IMG-20110913-00560_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "When a gentleman doesn't like a person.. RT\\u201C@Supermomo76: Hillary Clinton is my least favorite person in the United States #polite #usa\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:22 +0000", "from_user": "NestorGarciaR", "from_user_id": 269503549, "from_user_id_str": "269503549", "from_user_name": "N\\u00E9stor Garc\\u00EDa Rdguez", "geo": null, "id": 148839102584848400, "id_str": "148839102584848385", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682105307/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682105307/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Muchos \"peros\" usa #Rajoy.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:21 +0000", "from_user": "Spinky_mdr", "from_user_id": 213409119, "from_user_id_str": "213409119", "from_user_name": "Ciela", "geo": null, "id": 148839102077349900, "id_str": "148839102077349888", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1659891800/281266_2209864402241_1116404743_32528622_7369924_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659891800/281266_2209864402241_1116404743_32528622_7369924_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:20 +0000", "from_user": "Batoooly", "from_user_id": 270305488, "from_user_id_str": "270305488", "from_user_name": "Batool Alawi", "geo": null, "id": 148839096482140160, "id_str": "148839096482140160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1590008135/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1590008135/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @M_ALSHAIKH: Free Zainab AlKhawaja http://t.co/UQSHGv59 via @GoPetition #UK #UN #USA #Russia #Algeria @14FebRevolution @MARYAMALKHAWAJA @Laith_Albahrain", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:20 +0000", "from_user": "weather_austin", "from_user_id": 253707229, "from_user_id_str": "253707229", "from_user_name": "Weather Austin", "geo": null, "id": 148839095689416700, "id_str": "148839095689416705", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1247403383/WO-20px-linien_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1247403383/WO-20px-linien_normal.png", "source": "<a href="http://www.woweather.com/USA/Austin.htm" rel="nofollow">update weather austin</a>", "text": "#Austin #Texas Dec 19 12:44 Temperature 69\\u00B0F light rain Wind S 19 km/h Humidity 90% .. http://t.co/iYpT2bJW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:19 +0000", "from_user": "kodyvypogem", "from_user_id": 433743993, "from_user_id_str": "433743993", "from_user_name": "Sedat Linner", "geo": null, "id": 148839093386739700, "id_str": "148839093386739712", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687394006/1356_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687394006/1356_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "loan forgiveness gift tax http://t.co/kS8iAs4S", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:18 +0000", "from_user": "jakescott8", "from_user_id": 338039093, "from_user_id_str": "338039093", "from_user_name": "Jake Scott", "geo": null, "id": 148839088403918850, "id_str": "148839088403918849", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1657989654/0v5xUrHU_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657989654/0v5xUrHU_normal", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @OVCSports: Murray State cracks USA Today/ESPN Coaches Poll for first time this season, coming in at No. 22: http://t.co/ZO7XOMPP #OVC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:56:23 +0000", "from_user": "circotimia_", "from_user_id": 221610474, "from_user_id_str": "221610474", "from_user_name": "M a i t e\\u10E6. ", "geo": null, "id": 148839107437666300, "id_str": "148839107437666304", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698350821/jjo__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698350821/jjo__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "TENGO SUE\\u00D1O USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:23 +0000", "from_user": "mal__donado", "from_user_id": 384153752, "from_user_id_str": "384153752", "from_user_name": "Rodrigo Maldonado", "geo": null, "id": 148839107232145400, "id_str": "148839107232145408", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1683784056/maldo_msnfd5_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683784056/maldo_msnfd5_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@l4r0s4 Bom, voc\\u00EA \\u00E9 perturbada e usa preto... Mas n\\u00E3o acho que tenha tanto senso de Justi\\u00E7a.", "to_user": "l4r0s4", "to_user_id": 424588793, "to_user_id_str": "424588793", "to_user_name": "Larissa Junior", "in_reply_to_status_id": 148838621330415600, "in_reply_to_status_id_str": "148838621330415618"}, +{"created_at": "Mon, 19 Dec 2011 18:56:22 +0000", "from_user": "SarahAlSaeed", "from_user_id": 48180774, "from_user_id_str": "48180774", "from_user_name": "Sarah Al Saeed", "geo": null, "id": 148839104610709500, "id_str": "148839104610709504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1667703408/IMG-20110913-00560_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667703408/IMG-20110913-00560_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "When a gentleman doesn't like a person.. RT\\u201C@Supermomo76: Hillary Clinton is my least favorite person in the United States #polite #usa\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:22 +0000", "from_user": "NestorGarciaR", "from_user_id": 269503549, "from_user_id_str": "269503549", "from_user_name": "N\\u00E9stor Garc\\u00EDa Rdguez", "geo": null, "id": 148839102584848400, "id_str": "148839102584848385", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682105307/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682105307/image_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Muchos \"peros\" usa #Rajoy.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:21 +0000", "from_user": "Spinky_mdr", "from_user_id": 213409119, "from_user_id_str": "213409119", "from_user_name": "Ciela", "geo": null, "id": 148839102077349900, "id_str": "148839102077349888", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1659891800/281266_2209864402241_1116404743_32528622_7369924_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659891800/281266_2209864402241_1116404743_32528622_7369924_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:20 +0000", "from_user": "Batoooly", "from_user_id": 270305488, "from_user_id_str": "270305488", "from_user_name": "Batool Alawi", "geo": null, "id": 148839096482140160, "id_str": "148839096482140160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1590008135/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1590008135/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @M_ALSHAIKH: Free Zainab AlKhawaja http://t.co/UQSHGv59 via @GoPetition #UK #UN #USA #Russia #Algeria @14FebRevolution @MARYAMALKHAWAJA @Laith_Albahrain", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:20 +0000", "from_user": "weather_austin", "from_user_id": 253707229, "from_user_id_str": "253707229", "from_user_name": "Weather Austin", "geo": null, "id": 148839095689416700, "id_str": "148839095689416705", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1247403383/WO-20px-linien_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1247403383/WO-20px-linien_normal.png", "source": "<a href="http://www.woweather.com/USA/Austin.htm" rel="nofollow">update weather austin</a>", "text": "#Austin #Texas Dec 19 12:44 Temperature 69\\u00B0F light rain Wind S 19 km/h Humidity 90% .. http://t.co/iYpT2bJW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:19 +0000", "from_user": "kodyvypogem", "from_user_id": 433743993, "from_user_id_str": "433743993", "from_user_name": "Sedat Linner", "geo": null, "id": 148839093386739700, "id_str": "148839093386739712", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687394006/1356_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687394006/1356_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "loan forgiveness gift tax http://t.co/kS8iAs4S", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:18 +0000", "from_user": "jakescott8", "from_user_id": 338039093, "from_user_id_str": "338039093", "from_user_name": "Jake Scott", "geo": null, "id": 148839088403918850, "id_str": "148839088403918849", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1657989654/0v5xUrHU_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657989654/0v5xUrHU_normal", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @OVCSports: Murray State cracks USA Today/ESPN Coaches Poll for first time this season, coming in at No. 22: http://t.co/ZO7XOMPP #OVC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:17 +0000", "from_user": "Viri_b2uty", "from_user_id": 161857307, "from_user_id_str": "161857307", "from_user_name": "Viridiana Bautista", "geo": null, "id": 148839082661912580, "id_str": "148839082661912576", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1632940304/tumblr_ltkjdvDgC71qitqnko1_500u_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632940304/tumblr_ltkjdvDgC71qitqnko1_500u_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "si le pasa algo a mi twitter entrar\\u00E9 en el de mi hermana adem\\u00E1s ni lo usa :D #unitedcubeinmexico unitedcubeinmexico", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:17 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148839082657714180, "id_str": "148839082657714176", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "GORDA USA COND\\u00D3N,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:17 +0000", "from_user": "Amsterdam305410", "from_user_id": 30322768, "from_user_id_str": "30322768", "from_user_name": "AMEN\\u2714 Verified ", "geo": null, "id": 148839081693020160, "id_str": "148839081693020160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698521422/331615629_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698521422/331615629_normal.jpg", "source": "<a href="http://twitpic.com" rel="nofollow">Twitpic</a>", "text": "@KDTREY5 KEEP UP THE GOOD WORK,USA CW IS FIYAH http://t.co/Oi0dK0b9", "to_user": "KDTrey5", "to_user_id": 35936474, "to_user_id_str": "35936474", "to_user_name": "Kevin Durant"}, +{"created_at": "Mon, 19 Dec 2011 18:56:16 +0000", "from_user": "_Adicta", "from_user_id": 123965194, "from_user_id_str": "123965194", "from_user_name": "La que hace spam.", "geo": null, "id": 148839081395228670, "id_str": "148839081395228672", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "FAY ALEJANDRO USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:16 +0000", "from_user": "dulcerada", "from_user_id": 82342845, "from_user_id_str": "82342845", "from_user_name": "Radmila Dimitrijevic", "geo": null, "id": 148839081328123900, "id_str": "148839081328123905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690775201/IMG000009_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690775201/IMG000009_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "RT @RBD4everClub: Anah\\u00ED volver\\u00E1 a trabajar con Christopher Uckermann... #RBD4everClub noticia BARKEN http://t.co/AG5y1r96", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:16 +0000", "from_user": "minefreeworld", "from_user_id": 219027602, "from_user_id_str": "219027602", "from_user_name": "ICBL", "geo": null, "id": 148839079784624130, "id_str": "148839079784624128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1583717731/P4P_square__jpg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583717731/P4P_square__jpg_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Reporter: When will the #US policy review on #landmines be completed? #DOS: No timetable for completion, it's ongoing: http://t.co/e7pnIuak", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:16 +0000", "from_user": "comedia_gospel", "from_user_id": 308756595, "from_user_id_str": "308756595", "from_user_name": "humor e louvor", "geo": null, "id": 148839078622789630, "id_str": "148839078622789633", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1650468524/Foto0028_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650468524/Foto0028_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "crente gremista n\\u00E3o acredita em papai noel porque ele usa um uniforme ''colorado'' #LLOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:14 +0000", "from_user": "DriihpexME", "from_user_id": 263796180, "from_user_id_str": "263796180", "from_user_name": "Driih.Pex", "geo": null, "id": 148839073044381700, "id_str": "148839073044381696", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701313149/OgAAAL_mIJ0M8zMeN5ZtoYmMqMcGW1gYFEKMttfCJBoPktQYEHUD6X3RJGCatUsn-cdoMoKAGVoeScjrDYiB-lKGAaoAm1T1UGkyHz5Kp2F03FjHn2dSwY-VXOK__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701313149/OgAAAL_mIJ0M8zMeN5ZtoYmMqMcGW1gYFEKMttfCJBoPktQYEHUD6X3RJGCatUsn-cdoMoKAGVoeScjrDYiB-lKGAaoAm1T1UGkyHz5Kp2F03FjHn2dSwY-VXOK__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "mais vo usa isso mais como for\\u00E7a pra treina e grava meu video", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:14 +0000", "from_user": "StreetSmartUSA", "from_user_id": 358853939, "from_user_id_str": "358853939", "from_user_name": "StreetSmartUSA", "geo": null, "id": 148839071572172800, "id_str": "148839071572172800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1508518814/Street_20Smart_20iPhone_20Ap_20Store_20Icon_20512x512_1__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1508518814/Street_20Smart_20iPhone_20Ap_20Store_20Icon_20512x512_1__normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Do whatever you can to not put yourself in dangerous situations when traveling, http://t.co/LLz1Nfrv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:14 +0000", "from_user": "TheChinaPress", "from_user_id": 35886858, "from_user_id_str": "35886858", "from_user_name": "China Press ", "geo": null, "id": 148839071140155400, "id_str": "148839071140155392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/187085108/logo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/187085108/logo_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "One-third of young U.S. adults have been arrested: study\\nhttp://t.co/yydGoV9n", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:13 +0000", "from_user": "gpaulillo", "from_user_id": 52893561, "from_user_id_str": "52893561", "from_user_name": "Gu Paulillo", "geo": null, "id": 148839065825976320, "id_str": "148839065825976320", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1538899165/perfil_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538899165/perfil_normal.png", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "Algu\\u00E9m ai usa o Pivotal Tracker?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:12 +0000", "from_user": "MalukiinhaV", "from_user_id": 93001463, "from_user_id_str": "93001463", "from_user_name": "MaluVeloso", "geo": null, "id": 148839064433463300, "id_str": "148839064433463296", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1547685550/Foto0627_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1547685550/Foto0627_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @prjuniorsouza: A globo nos usa pra ganhar audiencia, e N\\u00F3s usamos a globo pra pregar o evangelho. Foorte #FestivalPromessas", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:12 +0000", "from_user": "OBileski", "from_user_id": 350662107, "from_user_id_str": "350662107", "from_user_name": "Lucas Bileski", "geo": null, "id": 148839062181117950, "id_str": "148839062181117952", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1665401171/Avatar_de_Natal2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665401171/Avatar_de_Natal2_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@A_Strange_Girl_ Aumenta, diminui, recorte e cola em outra, ctrl+z e ctrl+v. Usa a criatividade. \\u00C9 uma camisa dos Ramones!!!", "to_user": "A_Strange_Girl_", "to_user_id": 226718064, "to_user_id_str": "226718064", "to_user_name": "Mini Sonya da Eglla ", "in_reply_to_status_id": 148838544473989120, "in_reply_to_status_id_str": "148838544473989120"}, +{"created_at": "Mon, 19 Dec 2011 18:56:12 +0000", "from_user": "JimQualls", "from_user_id": 21944933, "from_user_id_str": "21944933", "from_user_name": "Jim Qualls", "geo": null, "id": 148839062055288830, "id_str": "148839062055288832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1400456796/JQ_pics_002_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1400456796/JQ_pics_002_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "RT @CleanCitiesATL: Electric Cars get a Solar Boost with the new charging station at the Alpharetta-based Solar Energy USA in south... http://t.co/h4QGrAyB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:11 +0000", "from_user": "luisbon", "from_user_id": 36456711, "from_user_id_str": "36456711", "from_user_name": "Loui Bon", "geo": null, "id": 148839057437364220, "id_str": "148839057437364228", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1572523451/24092011043_-_copia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572523451/24092011043_-_copia_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:11 +0000", "from_user": "iLLESTCHIKA", "from_user_id": 359380748, "from_user_id_str": "359380748", "from_user_name": "ChiKodI \\u2665", "geo": null, "id": 148839057114402800, "id_str": "148839057114402816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702495056/_UK__20Chikodinaka_20_E2_80_A2_20Agbomma_NG__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702495056/_UK__20Chikodinaka_20_E2_80_A2_20Agbomma_NG__normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Statue of Liberty\"@TWEETORACLE: The HQ of the #PORN industry in USA is ________?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:11 +0000", "from_user": "omar_nava", "from_user_id": 113835999, "from_user_id_str": "113835999", "from_user_name": "Omar Nava ", "geo": null, "id": 148839057043111940, "id_str": "148839057043111937", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1300449572/yo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1300449572/yo_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "\\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:10 +0000", "from_user": "Solangegzz", "from_user_id": 430048112, "from_user_id_str": "430048112", "from_user_name": "Solange Maysonet", "geo": null, "id": 148839053893177340, "id_str": "148839053893177344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677522454/r0rc0o55wl_127498733-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677522454/r0rc0o55wl_127498733-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Delorme TopoUSA 5.0: Topo USA 5.0 is for the trailblazer who wants to explore the city, the country & everything... http://t.co/Kzm3BonB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:09 +0000", "from_user": "nicann0", "from_user_id": 270496695, "from_user_id_str": "270496695", "from_user_name": "Nicole Anglonn", "geo": null, "id": 148839051431133200, "id_str": "148839051431133186", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1282993112/IMG_0079_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1282993112/IMG_0079_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @rio_dnp RT @lexxiocom Red Commerce Looking For SAP GTS Consultant \\u2013 6 Months \\u2013 USA in NJ: Dec 19, 2011:... http://t.co/vvwhTFeA...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:09 +0000", "from_user": "Andaarre", "from_user_id": 77058780, "from_user_id_str": "77058780", "from_user_name": "DA", "geo": null, "id": 148839049434636300, "id_str": "148839049434636288", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1678730101/IMG00827-20111121-2007_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678730101/IMG00827-20111121-2007_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: No se usa \"hubieron\" cuando haber se emplea para denotar la presencia de personas o cosas, Hubieron 6 ni\\u00F1os (\\u2717), debe decirse: Hubo 6 ni\\u00F1os\\u2611", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:09 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148839049237499900, "id_str": "148839049237499904", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "EL POLLITO USA COND\\u00D3N,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:08 +0000", "from_user": "AztecRiches", "from_user_id": 363225191, "from_user_id_str": "363225191", "from_user_name": "Aztec Riches Casino ", "geo": null, "id": 148839046037254140, "id_str": "148839046037254144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1516223157/3_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1516223157/3_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Play http://t.co/YUeo8SOD Tally Ho \\u2013 Free 850 Aztec Ric... http://t.co/si5SHfB7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:08 +0000", "from_user": "ClubBloggers", "from_user_id": 279035149, "from_user_id_str": "279035149", "from_user_name": "Club Bloggers ", "geo": null, "id": 148839046012076030, "id_str": "148839046012076032", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1642587926/bg_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642587926/bg_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "@Culturizando Gram\\u00E1tica: \\u00ABsendos\\u00BB no es equivalente a \\u00ABambos\\u00BB, ni se usa en singular http://t.co/xuydwUFk http://t.co/QgIMaItP", "to_user": "Culturizando", "to_user_id": 244730854, "to_user_id_str": "244730854", "to_user_name": "Culturizando \\u00AE"}, +{"created_at": "Mon, 19 Dec 2011 18:56:08 +0000", "from_user": "TheIsraeliNews", "from_user_id": 142013332, "from_user_id_str": "142013332", "from_user_name": "The Israeli News", "geo": null, "id": 148839045542322180, "id_str": "148839045542322176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/887380554/logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/887380554/logo_normal.jpg", "source": "<a href="http://israeli-news.com" rel="nofollow">Israeli News - Middle East Hottest News</a>", "text": "\"Racists and Hypocrites When it Comes to Palestinians\" http://t.co/v7THWyYf #Comes #Hypocrites #Palestinians", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:08 +0000", "from_user": "Julinhalmeida", "from_user_id": 292587143, "from_user_id_str": "292587143", "from_user_name": "Julia Almeida", "geo": null, "id": 148839045374541820, "id_str": "148839045374541824", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1337740192/C_pia__2__de_Imagem_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1337740192/C_pia__2__de_Imagem_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Ai cala a boca........ voc\\u00EA usa argola na orelha!!!! cruzes, s\\u00F3 Deus salva!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:08 +0000", "from_user": "AztecRiches", "from_user_id": 363225191, "from_user_id_str": "363225191", "from_user_name": "Aztec Riches Casino ", "geo": null, "id": 148839044565045250, "id_str": "148839044565045251", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1516223157/3_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1516223157/3_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Play http://t.co/YUeo8SOD Gold Series Triple Pocket Hol... http://t.co/xLGW6wvS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:08 +0000", "from_user": "BlackjackRooms", "from_user_id": 362723665, "from_user_id_str": "362723665", "from_user_name": "Blackjack Ballroom", "geo": null, "id": 148839044229509120, "id_str": "148839044229509120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1514948261/ballroom_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1514948261/ballroom_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "http://t.co/bUVq3wtW Play Wheel: http://www.rewardsafft... http://t.co/wc7Be4OR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:07 +0000", "from_user": "OccupyJacksonMS", "from_user_id": 394802556, "from_user_id_str": "394802556", "from_user_name": "Tommy Pain", "geo": null, "id": 148839043394834430, "id_str": "148839043394834432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1598133737/savemyfuture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598133737/savemyfuture_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Is this the answer? http://t.co/k81iAT63: \\n \\n \"THE SOCIALIST PARTY strives to establish a radical ... http://t.co/s9QLpLzu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:07 +0000", "from_user": "BlackjackRooms", "from_user_id": 362723665, "from_user_id_str": "362723665", "from_user_name": "Blackjack Ballroom", "geo": null, "id": 148839042795048960, "id_str": "148839042795048961", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1514948261/ballroom_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1514948261/ballroom_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "http://t.co/bUVq3wtW Play Arctic: http://www.rewardsaff... http://t.co/2ZOVC5lh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:07 +0000", "from_user": "AztecRiches", "from_user_id": 363225191, "from_user_id_str": "363225191", "from_user_name": "Aztec Riches Casino ", "geo": null, "id": 148839041494827000, "id_str": "148839041494827009", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1516223157/3_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1516223157/3_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Play http://t.co/YUeo8SOD Gold Series Multihand Pontoon... http://t.co/tKDtlpZR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:07 +0000", "from_user": "BlackjackRooms", "from_user_id": 362723665, "from_user_id_str": "362723665", "from_user_name": "Blackjack Ballroom", "geo": null, "id": 148839041331249150, "id_str": "148839041331249152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1514948261/ballroom_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1514948261/ballroom_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "http://t.co/bUVq3wtW Play Fighting: http://www.rewardsa... http://t.co/I7Ty7oeJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:06 +0000", "from_user": "judystout1", "from_user_id": 416608486, "from_user_id_str": "416608486", "from_user_name": "judy stout", "geo": null, "id": 148839038718185470, "id_str": "148839038718185472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@brianfmoylan @RickJO1 @richardcalhoun I live in USA, will have to brush up as that topic not on my radar in that time frame.", "to_user": "brianfmoylan", "to_user_id": 185188747, "to_user_id_str": "185188747", "to_user_name": "Brian Moylan", "in_reply_to_status_id": 148835096890314750, "in_reply_to_status_id_str": "148835096890314752"}, +{"created_at": "Mon, 19 Dec 2011 18:56:05 +0000", "from_user": "PokerLawyer", "from_user_id": 99993686, "from_user_id_str": "99993686", "from_user_name": "Poker Lawyer", "geo": null, "id": 148839034502909950, "id_str": "148839034502909953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1114704602/pokergirl_edited-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1114704602/pokergirl_edited-1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@KaraOTR - the USA is putting on a brave face, but is going to miss you greatly. Safe travels, happy holidays, & glgl @ poker! Yay #beer! ;)", "to_user": "KaraOTR", "to_user_id": 38149980, "to_user_id_str": "38149980", "to_user_name": "Kara Scott", "in_reply_to_status_id": 148837210978910200, "in_reply_to_status_id_str": "148837210978910208"}, +{"created_at": "Mon, 19 Dec 2011 18:56:05 +0000", "from_user": "cborschette", "from_user_id": 319270401, "from_user_id_str": "319270401", "from_user_name": "Charel Borschette", "geo": null, "id": 148839031747256320, "id_str": "148839031747256320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@gameloft omg why always just for usa?...", "to_user": "gameloft", "to_user_id": 15739966, "to_user_id_str": "15739966", "to_user_name": "Gameloft", "in_reply_to_status_id": 148827581351854080, "in_reply_to_status_id_str": "148827581351854080"}, +{"created_at": "Mon, 19 Dec 2011 18:56:04 +0000", "from_user": "edomanico", "from_user_id": 36313922, "from_user_id_str": "36313922", "from_user_name": "Ernie Domanico", "geo": null, "id": 148839031189405700, "id_str": "148839031189405696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/893650233/Copy_of_Brasil_1_092_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/893650233/Copy_of_Brasil_1_092_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT\"@unlvsid: Runnin' Rebs No. 23 in ESPN/USA Today coaches' poll #UNLVmbb\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:04 +0000", "from_user": "karemuwupyz", "from_user_id": 419624586, "from_user_id_str": "419624586", "from_user_name": "Ramgopal Domoni", "geo": null, "id": 148839028320509950, "id_str": "148839028320509952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1657543406/30_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657543406/30_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @zytoxysezuv: does insurance follow the car or driver in ohio http://t.co/ejyg46C5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:04 +0000", "from_user": "GrabaPig", "from_user_id": 114576372, "from_user_id_str": "114576372", "from_user_name": "Portia The Pig", "geo": null, "id": 148839028144349200, "id_str": "148839028144349184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1055117846/portia_entrance_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1055117846/portia_entrance_normal.png", "source": "<a href="http://marketmesuite.com" rel="nofollow">MarketMeSuite</a>", "text": "This award winning british game make the perfect christmas gift if you live in the USA http://t.co/Zun5ip6V", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:04 +0000", "from_user": "MusicMiscellany", "from_user_id": 285105109, "from_user_id_str": "285105109", "from_user_name": "Richard Floyd", "geo": null, "id": 148839027909476350, "id_str": "148839027909476353", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1320018094/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1320018094/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #134 The 99 Most Essential Christmas Piano: Various Artists $5.99 X5 Music Group http://t.co/aHIk18AO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:04 +0000", "from_user": "TornadoTimmy", "from_user_id": 40083361, "from_user_id_str": "40083361", "from_user_name": "Tim Stoecklein", "geo": null, "id": 148839027859144700, "id_str": "148839027859144704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1563412079/IMAG0073-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1563412079/IMAG0073-1_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "The SPC issues a winter MD for northeast NM, SE CO, & SW KS..snowfall rates at or above 1\"/hr: http://t.co/QBQ8SWW7 #cowx #kswx #nmwx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:04 +0000", "from_user": "ferducss", "from_user_id": 166776388, "from_user_id_str": "166776388", "from_user_name": "Fer Duc", "geo": null, "id": 148839027078991870, "id_str": "148839027078991874", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1416285391/ferhat_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1416285391/ferhat_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:03 +0000", "from_user": "MusicMiscellany", "from_user_id": 285105109, "from_user_id_str": "285105109", "from_user_name": "Richard Floyd", "geo": null, "id": 148839026751848450, "id_str": "148839026751848449", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1320018094/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1320018094/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #230 An Oscar Peterson Christmas: Oscar Peterson $5.00 Telarc http://t.co/ZyXZgkW6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:03 +0000", "from_user": "MusicMiscellany", "from_user_id": 285105109, "from_user_id_str": "285105109", "from_user_name": "Richard Floyd", "geo": null, "id": 148839025472577540, "id_str": "148839025472577536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1320018094/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1320018094/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #330 Joy To The World: Pink Martini $5.99 Heinz Records http://t.co/49WYM9Yp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:03 +0000", "from_user": "filipovsky", "from_user_id": 123298763, "from_user_id_str": "123298763", "from_user_name": "Filip", "geo": null, "id": 148839024516276220, "id_str": "148839024516276226", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1532722950/c122_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1532722950/c122_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@annmarie_pl @muszkieter ale sobie slodzicie ;)\\nW USA mozna placic iphonem za kawe w starbucks. Taking hipsterstyle joke ;)", "to_user": "annmarie_pl", "to_user_id": 122971750, "to_user_id_str": "122971750", "to_user_name": "annmarie_pl", "in_reply_to_status_id": 148838484667412480, "in_reply_to_status_id_str": "148838484667412482"}, +{"created_at": "Mon, 19 Dec 2011 18:56:03 +0000", "from_user": "MusicMiscellany", "from_user_id": 285105109, "from_user_id_str": "285105109", "from_user_name": "Richard Floyd", "geo": null, "id": 148839024335917060, "id_str": "148839024335917057", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1320018094/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1320018094/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #329 Merry Christmas II You: Mariah Carey $7.99 Island Records http://t.co/WbDJh3mA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:03 +0000", "from_user": "Ashlynmzy", "from_user_id": 431682020, "from_user_id_str": "431682020", "from_user_name": "Ashlyn Bartles", "geo": null, "id": 148839023383814140, "id_str": "148839023383814144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680990690/etirym5501_133156960-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680990690/etirym5501_133156960-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "SERIOUS USA The Fellowship of the Rings CD Cardz Blister Pack (Windows): http://t.co/PzhMEjH6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:02 +0000", "from_user": "MusicMiscellany", "from_user_id": 285105109, "from_user_id_str": "285105109", "from_user_name": "Richard Floyd", "geo": null, "id": 148839022310080500, "id_str": "148839022310080512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1320018094/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1320018094/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #129 Stephanie Miller's Sexy Liberal Comedy Tour, Vol 1. [Explicit]: Various Artists $8.99 SM Radio P... http://t.co/WgE3l6vB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:02 +0000", "from_user": "Online_Viagra_R", "from_user_id": 213221281, "from_user_id_str": "213221281", "from_user_name": "online pharm top", "geo": null, "id": 148839021240516600, "id_str": "148839021240516609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1165331569/viagra_turn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1165331569/viagra_turn_normal.jpg", "source": "<a href="http://secureinstallation.info" rel="nofollow">web online</a>", "text": "Buy Viagra Online From USA Trusted Drugstore! Generic and brand drugs with 100% satisfaction guaranteed. http://t.co/N8Cb5hU1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:02 +0000", "from_user": "sequoiaforest", "from_user_id": 53796731, "from_user_id_str": "53796731", "from_user_name": "Forest Service", "geo": null, "id": 148839020582023170, "id_str": "148839020582023169", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/297614293/GS_in_meadow_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/297614293/GS_in_meadow_normal.jpg", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "About Us, Sequoia National Forest - USDA Forest Service http://t.co/HCsifxjw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:02 +0000", "from_user": "A_Swish3", "from_user_id": 272263957, "from_user_id_str": "272263957", "from_user_name": "AUSTIN MOORE", "geo": null, "id": 148839019940282370, "id_str": "148839019940282369", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695537143/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695537143/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TheCAJasonSmith: Will Barton named C-USA player of the week for second straight Monday. Short story: http://t.co/YfX4R06f Also, Tigers 34th in coaches poll.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:01 +0000", "from_user": "TattooSales", "from_user_id": 20272386, "from_user_id_str": "20272386", "from_user_name": "Tattoo Manufacturing", "geo": null, "id": 148839016903622660, "id_str": "148839016903622657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/454249028/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/454249028/logo_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Made in USA Christmas: Tattoo Manufacturing: http://t.co/H8ya3HWI #madeinusa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:01 +0000", "from_user": "takeinsurance", "from_user_id": 430565254, "from_user_id_str": "430565254", "from_user_name": "TAKE INSURANCE", "geo": null, "id": 148839016618410000, "id_str": "148839016618409985", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1678701723/amenda_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678701723/amenda_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Commercial Metals Board Rejects Icahn Offer \\u2013 Salon: Proactive Investors USA & Canada\\u2026 http://t.co/CbuRtQ8A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:00 +0000", "from_user": "circotimia_", "from_user_id": 221610474, "from_user_id_str": "221610474", "from_user_name": "M a i t e\\u10E6. ", "geo": null, "id": 148839012671565820, "id_str": "148839012671565825", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698350821/jjo__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698350821/jjo__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "TRAFIII USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:59 +0000", "from_user": "wugegev", "from_user_id": 432623204, "from_user_id_str": "432623204", "from_user_name": "Shalvah Hasling", "geo": null, "id": 148839009970425860, "id_str": "148839009970425856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1683912211/1341_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683912211/1341_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @konizuqyd: loans fast easy online http://t.co/q1Ou8YqZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:59 +0000", "from_user": "PJnShit", "from_user_id": 169110022, "from_user_id_str": "169110022", "from_user_name": "PJ Green #15", "geo": null, "id": 148839007571283970, "id_str": "148839007571283968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1674583824/n1225830876_30639235_8273_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674583824/n1225830876_30639235_8273_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Previs: Killed Osama, Ended war in Iraq, Passed comprehensive health care, Ended Don't Ask Don't tell, Saved USA Auto Industry #WhatObamaHasDone", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:59 +0000", "from_user": "YoSoyGru", "from_user_id": 163887863, "from_user_id_str": "163887863", "from_user_name": "Samuel Eduardo Lopez", "geo": null, "id": 148839007080546300, "id_str": "148839007080546305", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684074485/YoSoyGru_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684074485/YoSoyGru_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Quitate Los Panties Mami Eso Ya No Se Usa-8- (@Nengo_Flow Voice)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:59 +0000", "from_user": "fosterbrandon", "from_user_id": 51161735, "from_user_id_str": "51161735", "from_user_name": "Brandon Foster", "geo": null, "id": 148839006631759870, "id_str": "148839006631759872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1634038022/634560154390545703_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634038022/634560154390545703_normal.jpg", "source": "<a href="http://mesonet.agron.iastate.edu/projects/iembot/" rel="nofollow">iembot</a>", "text": "RT @iembot_spc: #SPC Mesoscale Discussion 2378 for NERN NM / NWRN TX PANHANDLE / WRN OK PANHANDLE /\\nSERN CO / SWRN KS http://t.co/kbAOprnT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:58 +0000", "from_user": "annlee_an", "from_user_id": 36514208, "from_user_id_str": "36514208", "from_user_name": "anabel jimenez", "geo": null, "id": 148839005293781000, "id_str": "148839005293780992", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/408801995/NIN_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/408801995/NIN_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@PiratellaO: Quiero verte a ti y a @OliverLongoria, pero donde sirvan tragos r\\u00E1pido para poder probar todos los Homeless de USA//jaja tu di!", "to_user": "PiratellaO", "to_user_id": 92910615, "to_user_id_str": "92910615", "to_user_name": "Ella M\\u00FCnster"}, +{"created_at": "Mon, 19 Dec 2011 18:55:58 +0000", "from_user": "deathbysexy", "from_user_id": 50738223, "from_user_id_str": "50738223", "from_user_name": "BT", "geo": null, "id": 148839004794667000, "id_str": "148839004794667008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691606379/Meatitarian_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691606379/Meatitarian_normal.JPG", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "I love how if you are critical of anything or anyone you are, by default, a 'hater.' #USA #USA #USA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:58 +0000", "from_user": "youngscrapFANs", "from_user_id": 194651253, "from_user_id_str": "194651253", "from_user_name": "young scrap D.C fans", "geo": null, "id": 148839003242762240, "id_str": "148839003242762241", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1694639624/WCF2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694639624/WCF2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "@M6Q Follow me. I'm #TeamFollowBack: I am #Autofollow Share With Friends: | | USA - California News, RSS and R... http://t.co/CvsyDQkq", "to_user": "M6Q", "to_user_id": 307416332, "to_user_id_str": "307416332", "to_user_name": "Marilyn Q"}, +{"created_at": "Mon, 19 Dec 2011 18:55:57 +0000", "from_user": "youngscrapFANs", "from_user_id": 194651253, "from_user_id_str": "194651253", "from_user_name": "young scrap D.C fans", "geo": null, "id": 148839001170784260, "id_str": "148839001170784256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1694639624/WCF2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694639624/WCF2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "@M6Q Follow me. I'm #TeamFollowBack: I am #Autofollow Share With Friends: | | USA - California News, RSS Feeds... http://t.co/MtUMbkga", "to_user": "M6Q", "to_user_id": 307416332, "to_user_id_str": "307416332", "to_user_name": "Marilyn Q"}, +{"created_at": "Mon, 19 Dec 2011 18:55:57 +0000", "from_user": "welufyvotyc", "from_user_id": 432520116, "from_user_id_str": "432520116", "from_user_name": "Ritsuka Logue", "geo": null, "id": 148838997823733760, "id_str": "148838997823733760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683270610/1140_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683270610/1140_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @potarecovim: free quotes auto insurance http://t.co/S9mHR6Cc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:56 +0000", "from_user": "youngscrapFANs", "from_user_id": 194651253, "from_user_id_str": "194651253", "from_user_name": "young scrap D.C fans", "geo": null, "id": 148838996322164740, "id_str": "148838996322164737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1694639624/WCF2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694639624/WCF2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "@M6Q Follow me. I'm #TeamFollowBack: I am #Autofollow Share With Friends: | | USA - California Stories, RSS an... http://t.co/RIaJhgxt", "to_user": "M6Q", "to_user_id": 307416332, "to_user_id_str": "307416332", "to_user_name": "Marilyn Q"}, +{"created_at": "Mon, 19 Dec 2011 18:55:56 +0000", "from_user": "Jewelbde", "from_user_id": 431680735, "from_user_id_str": "431680735", "from_user_name": "Jewel Prawdzik", "geo": null, "id": 148838996041146370, "id_str": "148838996041146369", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1680986742/moqun4bvud_101997855-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680986742/moqun4bvud_101997855-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "adidas Kid's Fortitude 2 USA Running Shoe: With its wider width and well-cushioned midsole, this shoe makes it v... http://t.co/WtRKTUWy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:56 +0000", "from_user": "zirifakeg", "from_user_id": 432025141, "from_user_id_str": "432025141", "from_user_name": "Charla Devons", "geo": null, "id": 148838994388582400, "id_str": "148838994388582401", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681995193/1762_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681995193/1762_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @midyvihejaz: auto insurance policy non-owned http://t.co/CRZ36ivd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:55 +0000", "from_user": "RamonKitsune", "from_user_id": 405221008, "from_user_id_str": "405221008", "from_user_name": "Ramon Kitsune", "geo": null, "id": 148838989426720770, "id_str": "148838989426720768", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1622921171/Kitsune_How_You_Doin_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622921171/Kitsune_How_You_Doin_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@qwerty_br Usted solamente usa la IMAGEN de una mujer, pero no eres una dama de verdad. Me gusta las muchachas, amigo.", "to_user": "qwerty_br", "to_user_id": 122790142, "to_user_id_str": "122790142", "to_user_name": "John Doe", "in_reply_to_status_id": 148838669455855600, "in_reply_to_status_id_str": "148838669455855617"}, +{"created_at": "Mon, 19 Dec 2011 18:55:54 +0000", "from_user": "michelelinus", "from_user_id": 31366175, "from_user_id_str": "31366175", "from_user_name": "Michele Linus", "geo": null, "id": 148838987753205760, "id_str": "148838987753205760", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1446749410/Anyita_20bolo_20bolo__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1446749410/Anyita_20bolo_20bolo__normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@rirriiii sm gw jg bliknya jan , ga usa balik jg fine\" aja gw , haha. Eh mesuji jauh nyong , lgan tu mah crta lama , emg sono mah rawan", "to_user": "rirriiii", "to_user_id": 219272324, "to_user_id_str": "219272324", "to_user_name": "riri r zurizal", "in_reply_to_status_id": 148838568394104830, "in_reply_to_status_id_str": "148838568394104832"}, +{"created_at": "Mon, 19 Dec 2011 18:55:53 +0000", "from_user": "jamjoom44", "from_user_id": 305530741, "from_user_id_str": "305530741", "from_user_name": "\\u0633\\u0627\\u0631\\u0642 \\u0627\\u0644\\u0644\\u064A\\u0644", "geo": null, "id": 148838983097528320, "id_str": "148838983097528320", "iso_language_code": "ar", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1431189380/IMG00134-20110707-1640_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1431189380/IMG00134-20110707-1640_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#bahrain http://t.co/9MxuRRzI \\u0633\\u0644\\u0633\\u0644\\u0629 \\u0628\\u0634\\u0631\\u064A\\u0629 \\u0643\\u0628\\u064A\\u0631\\u0629 \\u0627\\u0644\\u0622\\u0646 \\u0641\\u064A \\u0633\\u0646\\u0627\\u0628\\u0633 \\u0627\\u0644\\u0635\\u0645\\u0648\\u062F 8:15:23\\n@frdoss #iraq #usa #uk", "to_user": "frdoss", "to_user_id": 439632470, "to_user_id_str": "439632470", "to_user_name": "Frdoss91 "}, +{"created_at": "Mon, 19 Dec 2011 18:55:53 +0000", "from_user": "Safena_", "from_user_id": 339274233, "from_user_id_str": "339274233", "from_user_name": "Amanda Stephani", "geo": null, "id": 148838982917160960, "id_str": "148838982917160960", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668147791/IMG10037_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668147791/IMG10037_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ESSESGAYS: \"como vc pode gostar de tatuagem e alargador? que coisa feia\" disse a pessoa que gosta de funk usa shortinho de 5cm e tem piercing no umbigo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:51 +0000", "from_user": "JUNIORCABRERA07", "from_user_id": 261509457, "from_user_id_str": "261509457", "from_user_name": "JUNIOR", "geo": null, "id": 148838975350652930, "id_str": "148838975350652928", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1499495149/JUNIOR_CABRERA_EN_EL_ESTUDIO-0407_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1499495149/JUNIOR_CABRERA_EN_EL_ESTUDIO-0407_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"ALFAREROS HOY EN NUESTRA FE EN VIVO\"@ewtn (especial de navidad) USA 6:00PM- MEXICO 5:00PM- BOGOTA 6:00PM MADRID 12:00AM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:49 +0000", "from_user": "zandrawtnorvell", "from_user_id": 305967447, "from_user_id_str": "305967447", "from_user_name": "Zandra Norvell", "geo": null, "id": 148838967037530100, "id_str": "148838967037530114", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685458293/imagesCAJUBWXJ_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685458293/imagesCAJUBWXJ_normal", "source": "<a href="http://couponsforcybermonday.com" rel="nofollow">couponsforcybermondaydotcom</a>", "text": "Coleman CableMoonrays 99924 Color-Changing Glass..Only $ 10.25 http://t.co/kYRZyLjK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:49 +0000", "from_user": "BrianSozzi", "from_user_id": 104257356, "from_user_id_str": "104257356", "from_user_name": "Brian Sozzi", "geo": null, "id": 148838966517436400, "id_str": "148838966517436416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1642707959/briansozziatgmail_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642707959/briansozziatgmail_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Quoted in: Holiday sales seen strong, but still discounted http://t.co/CRG8SZOd via @reuters", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:48 +0000", "from_user": "SelenaFactsBR", "from_user_id": 171624633, "from_user_id_str": "171624633", "from_user_name": "Selena Facts Brazil ", "geo": null, "id": 148838963438813200, "id_str": "148838963438813184", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702131868/013_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702131868/013_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Me pergunte qualquer coisa. - \\u203A 1. Altura? 2. Peso? 3. Voc\\u00EA fuma? 4. Voc\\u00EA bebe? 5. Usa/j\\u00E1 usou drogas? 6.... http://t.co/5SgOTYRw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:48 +0000", "from_user": "Kafraje", "from_user_id": 153166553, "from_user_id_str": "153166553", "from_user_name": "KaFraJe Capetillo", "geo": null, "id": 148838962369265660, "id_str": "148838962369265664", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1595688557/P1010668_5B2_5D_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1595688557/P1010668_5B2_5D_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Soy tan guapo, que el Photoshop me usa como herramienta #oieesamamadaaaa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:47 +0000", "from_user": "lawyers_texas", "from_user_id": 315972564, "from_user_id_str": "315972564", "from_user_name": "Lawyers Texas USA", "geo": null, "id": 148838956031676400, "id_str": "148838956031676416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1392985462/usa_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1392985462/usa_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "lawyer citizenship Texas http://t.co/GPKmWXW3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:46 +0000", "from_user": "francoira", "from_user_id": 196979168, "from_user_id_str": "196979168", "from_user_name": "Francoira", "geo": null, "id": 148838955637424130, "id_str": "148838955637424129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691511111/331452092_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691511111/331452092_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "USA @TWEETORACLE: The 1st country to legalize #PORN was ________??\"\"\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:46 +0000", "from_user": "JORC1959", "from_user_id": 114442543, "from_user_id_str": "114442543", "from_user_name": "Marejo", "geo": null, "id": 148838951891906560, "id_str": "148838951891906562", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1519918154/imagesCAUPW4O5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1519918154/imagesCAUPW4O5_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Asi terminaron los infelices d\\u00EDas de la Dictadura paname\\u00F1a de Noriega, quien se entreg\\u00F3 a Fuerzas Militares d USA el 3 d Enero de 1.990!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:46 +0000", "from_user": "gospelprime", "from_user_id": 18220470, "from_user_id_str": "18220470", "from_user_name": "Gospel Prime ", "geo": null, "id": 148838951673794560, "id_str": "148838951673794561", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1067990163/gp_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1067990163/gp_bigger_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#estudos Um homem a quem Deus usa http://t.co/YwaFUX2i", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:45 +0000", "from_user": "tweetddalo", "from_user_id": 266065645, "from_user_id_str": "266065645", "from_user_name": "Damian P. D.", "geo": null, "id": 148838947450130430, "id_str": "148838947450130432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "30 great made-in-USA gifts - Your Money - MSN Money http://t.co/T9m7mja9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:44 +0000", "from_user": "negrogp", "from_user_id": 57234472, "from_user_id_str": "57234472", "from_user_name": "Negro GP", "geo": null, "id": 148838944220516350, "id_str": "148838944220516353", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702161024/CameraZOOM-20111219110927_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702161024/CameraZOOM-20111219110927_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "de 25 lucas y puso toda la guita en la tarjeta. Lleg\\u00F3 a USA, fue a Best Buy y se gast\\u00F3 tod en electrodom\\u00E9sticos.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:43 +0000", "from_user": "borges2007", "from_user_id": 86966926, "from_user_id_str": "86966926", "from_user_name": "Complicated", "geo": null, "id": 148838941229989900, "id_str": "148838941229989890", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1181834073/.----._normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1181834073/.----._normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ESSESGAYS: \"como vc pode gostar de tatuagem e alargador? que coisa feia\" disse a pessoa que gosta de funk usa shortinho de 5cm e tem piercing no umbigo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:42 +0000", "from_user": "_AniCibelle", "from_user_id": 129195874, "from_user_id_str": "129195874", "from_user_name": "-- \\u03B9\\u044F\\u03B9\\u03B7\\u03B1\\u00A2\\u03B9\\u0432\\u0454\\u2113\\u2113\\u0454", "geo": null, "id": 148838935475392500, "id_str": "148838935475392513", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1647445055/DSC02240_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647445055/DSC02240_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ESSESGAYS: \"como vc pode gostar de tatuagem e alargador? que coisa feia\" disse a pessoa que gosta de funk usa shortinho de 5cm e tem piercing no umbigo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:42 +0000", "from_user": "FolkCDs", "from_user_id": 363531798, "from_user_id_str": "363531798", "from_user_name": "Richard Floyd", "geo": null, "id": 148838935236325380, "id_str": "148838935236325378", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1517058727/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517058727/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #1102 Still on Top: The Greatest Hits Van Morrison $17.91: 2007 limited edition triple definitive col... http://t.co/fdMY8CpW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:41 +0000", "from_user": "FolkCDs", "from_user_id": 363531798, "from_user_id_str": "363531798", "from_user_name": "Richard Floyd", "geo": null, "id": 148838933407604740, "id_str": "148838933407604736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1517058727/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517058727/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #785 Celtic Thunder Celtic Thunder $9.85: CD/DVD of the debut concert of Celtic Thunder was filmed on... http://t.co/6M7TPTU4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:41 +0000", "from_user": "tikraktik_", "from_user_id": 176516572, "from_user_id_str": "176516572", "from_user_name": "mayra, a fofis", "geo": null, "id": 148838932400971780, "id_str": "148838932400971776", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1604966633/bu_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1604966633/bu_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@thisisrissa vc usa o caderno com colagem pra que ? u_u KKKK", "to_user": "thisisrissa", "to_user_id": 77053363, "to_user_id_str": "77053363", "to_user_name": "Larissa"}, +{"created_at": "Mon, 19 Dec 2011 18:55:41 +0000", "from_user": "FolkCDs", "from_user_id": 363531798, "from_user_id_str": "363531798", "from_user_name": "Richard Floyd", "geo": null, "id": 148838932031873020, "id_str": "148838932031873024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1517058727/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517058727/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #993 Gossip in the Grain Ray LaMontagne $11.22: One of the most distinctive voices in music, lauded s... http://t.co/bXBo6gnp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:41 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148838931385950200, "id_str": "148838931385950210", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "TU USA COND\\u00D3N,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:41 +0000", "from_user": "FolkCDs", "from_user_id": 363531798, "from_user_id_str": "363531798", "from_user_name": "Richard Floyd", "geo": null, "id": 148838931088146430, "id_str": "148838931088146432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1517058727/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517058727/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #898 Live, Volume 3 The Avett Brothers $8.57: 2010 live release that documents a very special concert... http://t.co/j8GqaqK8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:40 +0000", "from_user": "lucas_pappini", "from_user_id": 222939787, "from_user_id_str": "222939787", "from_user_name": "lucas", "geo": null, "id": 148838930320605200, "id_str": "148838930320605185", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691210445/Imagen37_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691210445/Imagen37_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Moria_Casan ME MUERO!! quiero ver el encuentro con la \"periodista\" que usa bol\\u00EDgrafos cartieRRRRR!! cuanto le falta aprender!! ;0)", "to_user": "Moria_Casan", "to_user_id": 159917376, "to_user_id_str": "159917376", "to_user_name": "Moria Cas\\u00E1n", "in_reply_to_status_id": 148833134383857660, "in_reply_to_status_id_str": "148833134383857664"}, +{"created_at": "Mon, 19 Dec 2011 18:55:40 +0000", "from_user": "FolkCDs", "from_user_id": 363531798, "from_user_id_str": "363531798", "from_user_name": "Richard Floyd", "geo": null, "id": 148838929892786180, "id_str": "148838929892786176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1517058727/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517058727/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #903 Good News Kathy Mattea $6.34: Good News won the 1994 Grammy Award for Southern Gospel, Country G... http://t.co/fypbz1pH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:40 +0000", "from_user": "bboyinsiders", "from_user_id": 166481125, "from_user_id_str": "166481125", "from_user_name": "Bboyinsiders", "geo": null, "id": 148838927413948400, "id_str": "148838927413948416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1119633095/BBOYINSIDERS_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1119633095/BBOYINSIDERS_normal.jpg", "source": "<a href="http://www.bboyinsiders.com/" rel="nofollow">bboyinsiders.com</a>", "text": "New blog post: PoeOne & http://t.co/0Ka6MGXD Presents: Battle Of The Year USA 2011.... http://t.co/reTmVNWQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:38 +0000", "from_user": "Jumabinali", "from_user_id": 348088617, "from_user_id_str": "348088617", "from_user_name": "JBA", "geo": null, "id": 148838921328001020, "id_str": "148838921328001024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676007559/a3bjp_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676007559/a3bjp_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "We don\\u2019t need to listen to false hopes of tyrant regime. We need its end soon. \\n#14feb #tgonu #qatif #qatar #iraq #kuwait #oman #uae #usa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:55:36 +0000", "from_user": "Daily_Magazine", "from_user_id": 23756126, "from_user_id_str": "23756126", "from_user_name": "Dickens", "geo": null, "id": 148838913685987330, "id_str": "148838913685987328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701631308/Unbenannt-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701631308/Unbenannt-1_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Struggling Santorum bets big on Iowa: DES MOINES, Iowa (Reuters) - Rick Santorum thought he had it figured out.\\n \\n http://t.co/m3PUNioj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:36 +0000", "from_user": "RapsSongs", "from_user_id": 360429067, "from_user_id_str": "360429067", "from_user_name": "Richard Floyd", "geo": null, "id": 148838913312694270, "id_str": "148838913312694273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1509369197/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509369197/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #545 Fly [Explicit]: Nicki Minaj $0.99 Cash Money Records/Motown Records http://t.co/oowocM4e", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:36 +0000", "from_user": "RapsSongs", "from_user_id": 360429067, "from_user_id_str": "360429067", "from_user_name": "Richard Floyd", "geo": null, "id": 148838912020844540, "id_str": "148838912020844545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1509369197/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509369197/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #642 Power [Explicit]: Kanye West $0.99 Roc-A-Fella Records http://t.co/uB039F9g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:36 +0000", "from_user": "SYFSCC", "from_user_id": 428283229, "from_user_id_str": "428283229", "from_user_name": "SNN", "geo": null, "id": 148838910976462850, "id_str": "148838910976462849", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1673578438/icon.politicalticker_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673578438/icon.politicalticker_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#SNN Struggling Santorum bets big on Iowa: DES MOINES, Iowa (Reuters) - Rick Santorum thought... http://t.co/QYOsAYMi #reuters #Politics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:36 +0000", "from_user": "RapsSongs", "from_user_id": 360429067, "from_user_id_str": "360429067", "from_user_name": "Richard Floyd", "geo": null, "id": 148838910674481150, "id_str": "148838910674481153", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1509369197/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509369197/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #341 Mirror (Feat. Bruno Mars) [Explicit]: Lil Wayne $0.99 Cash Money http://t.co/gMMcf4Yd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:36 +0000", "from_user": "SYFSCC", "from_user_id": 428283229, "from_user_id_str": "428283229", "from_user_name": "SNN", "geo": null, "id": 148838909776891900, "id_str": "148838909776891905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1673578438/icon.politicalticker_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673578438/icon.politicalticker_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#SNN U.S. foreign aid escapes slashing cuts in fiscal 2012: (Reuters) - The U.S. State Depart... http://t.co/g5nvf2fU #reuters #Politics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:35 +0000", "from_user": "RapsSongs", "from_user_id": 360429067, "from_user_id_str": "360429067", "from_user_name": "Richard Floyd", "geo": null, "id": 148838907662966800, "id_str": "148838907662966787", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1509369197/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509369197/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #439 Down With The Sickness: Disturbed $0.99 Giant/Reprise http://t.co/nn55pDBc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:35 +0000", "from_user": "RapsSongs", "from_user_id": 360429067, "from_user_id_str": "360429067", "from_user_name": "Richard Floyd", "geo": null, "id": 148838906438221820, "id_str": "148838906438221825", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1509369197/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509369197/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #138 How To Love: Lil Wayne $0.99 Cash Money http://t.co/qDdLZ1Hy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:35 +0000", "from_user": "TheLProphetKurt", "from_user_id": 297018747, "from_user_id_str": "297018747", "from_user_name": "Kurt McGaha", "geo": null, "id": 148838906434027520, "id_str": "148838906434027521", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1349543871/Me_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1349543871/Me_normal.png", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @NewTribes: @Carolinew1993 @TheLProphetKurt @tasyagolan Thanks for the RT about @newtribes http://t.co/BHfU5PiT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:35 +0000", "from_user": "dazuca", "from_user_id": 227146566, "from_user_id_str": "227146566", "from_user_name": "Daniel Zuniga", "geo": null, "id": 148838905578401800, "id_str": "148838905578401793", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @chicuco: estudio de muertes de aves por colision contra turbinas de viento en USA.PDF, pagina 4. http://t.co/jwoapbYu para pensar", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:34 +0000", "from_user": "bohisemu", "from_user_id": 419489368, "from_user_id_str": "419489368", "from_user_name": "Hatshepsut Daid", "geo": null, "id": 148838904928272400, "id_str": "148838904928272384", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1657109846/7_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657109846/7_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @zejagyrud: cheapest car insurance quotes ontario http://t.co/JBkXrCKH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:34 +0000", "from_user": "circotimia_", "from_user_id": 221610474, "from_user_id_str": "221610474", "from_user_name": "M a i t e\\u10E6. ", "geo": null, "id": 148838904265588740, "id_str": "148838904265588738", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698350821/jjo__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698350821/jjo__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "JAIRO USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:34 +0000", "from_user": "Gabryelavelloso", "from_user_id": 305742489, "from_user_id_str": "305742489", "from_user_name": "ol\\u00E1, gabi :3", "geo": null, "id": 148838901681889280, "id_str": "148838901681889280", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700936286/praia_004_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700936286/praia_004_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:34 +0000", "from_user": "hufoxykika", "from_user_id": 433981179, "from_user_id_str": "433981179", "from_user_name": "Devaduta Dominka", "geo": null, "id": 148838901434425340, "id_str": "148838901434425344", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687409240/1628_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687409240/1628_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "va loan limits lenders http://t.co/BxqsI2TP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:32 +0000", "from_user": "xigeweb", "from_user_id": 434097551, "from_user_id_str": "434097551", "from_user_name": "Vickie Kliement", "geo": null, "id": 148838895730180100, "id_str": "148838895730180096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688057033/1210_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688057033/1210_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "commercial loan officer salary range http://t.co/yNxXo6e6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:32 +0000", "from_user": "TaheerahDighero", "from_user_id": 441064142, "from_user_id_str": "441064142", "from_user_name": "Taheerah Dighero", "geo": null, "id": 148838893846933500, "id_str": "148838893846933505", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "http://t.co/SCQN3fo4 USA Plumbing Olympics TV Shows AOL Italy Garden", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:32 +0000", "from_user": "um9ale7", "from_user_id": 252076958, "from_user_id_str": "252076958", "from_user_name": "Afaf", "geo": null, "id": 148838892886425600, "id_str": "148838892886425600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1652300806/M_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652300806/M_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @BHRDef_jaguar: 100 civilian killed in #syria and #wefaq condemns the protesters, wake up #world time for military intervention! #usa #uk #bahrain #france", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:31 +0000", "from_user": "AmandaFallen", "from_user_id": 237715931, "from_user_id_str": "237715931", "from_user_name": "Amanda '", "geo": null, "id": 148838890181111800, "id_str": "148838890181111808", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700969684/Foto0805_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700969684/Foto0805_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ESSESGAYS: \"como vc pode gostar de tatuagem e alargador? que coisa feia\" disse a pessoa que gosta de funk usa shortinho de 5cm e tem piercing no umbigo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:30 +0000", "from_user": "HeythereElie", "from_user_id": 47038027, "from_user_id_str": "47038027", "from_user_name": "Elizabeth Resendez", "geo": null, "id": 148838887614189570, "id_str": "148838887614189569", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1476803501/IMG00736-20110801-1719_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1476803501/IMG00736-20110801-1719_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:30 +0000", "from_user": "gabriellagomest", "from_user_id": 210244577, "from_user_id_str": "210244577", "from_user_name": "Gabi Gomes (:", "geo": null, "id": 148838886020362240, "id_str": "148838886020362240", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1674497740/Foto_criada_em_2011-11-30_a_s_21.18__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674497740/Foto_criada_em_2011-11-30_a_s_21.18__2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "Eu fui l\\u00E1 no closet dela e peguei todos os meus vestidos...pq eu compro pra mim e ela usa ate antes de mim, v\\u00EA se pode.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:30 +0000", "from_user": "sexdating5", "from_user_id": 378976328, "from_user_id_str": "378976328", "from_user_name": "Moshe Branscome", "geo": null, "id": 148838885412188160, "id_str": "148838885412188160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1602460850/index9_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1602460850/index9_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "USA - Moms Turn to Phone Sex Business for Income (We Criticize Russian online dating scammers and now this news)... http://t.co/nC66Gsmv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:28 +0000", "from_user": "Victor_Maggi", "from_user_id": 165553223, "from_user_id_str": "165553223", "from_user_name": "Victor Maggi", "geo": null, "id": 148838878067957760, "id_str": "148838878067957760", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1611600107/OOO_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611600107/OOO_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@nickpaiffer viu, ele \\u00E9 t\\u00E3o bom que mesmo voc\\u00EA gostando do firefox vc usa ele", "to_user": "nickpaiffer", "to_user_id": 71619312, "to_user_id_str": "71619312", "to_user_name": "do Tobtuy", "in_reply_to_status_id": 148838588669374460, "in_reply_to_status_id_str": "148838588669374464"}, +{"created_at": "Mon, 19 Dec 2011 18:55:28 +0000", "from_user": "escravo_", "from_user_id": 295340680, "from_user_id_str": "295340680", "from_user_name": "kayo ", "geo": null, "id": 148838877275238400, "id_str": "148838877275238400", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1670169631/24343454654_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670169631/24343454654_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@wagnerf se amostre nao voce quem usa buceta!!!!!!!!!!", "to_user": "wagnerf", "to_user_id": 40373846, "to_user_id_str": "40373846", "to_user_name": "wagner fernandes", "in_reply_to_status_id": 148838673465618430, "in_reply_to_status_id_str": "148838673465618432"}, +{"created_at": "Mon, 19 Dec 2011 18:55:27 +0000", "from_user": "jovenes990", "from_user_id": 164022730, "from_user_id_str": "164022730", "from_user_name": "tarquisiemprejoven", "geo": null, "id": 148838873244499970, "id_str": "148838873244499968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1510335734/LOGO_TARQUI_SIEMPRE_JOVEN_OFICIAL1___normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1510335734/LOGO_TARQUI_SIEMPRE_JOVEN_OFICIAL1___normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "DES MOINES, Iowa (Reuters) - Rick Santorum thought he had it figured out.\\n \\n http://t.co/psh1Hbep", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:27 +0000", "from_user": "nadia_igle_di", "from_user_id": 192660629, "from_user_id_str": "192660629", "from_user_name": "Nadia Iglesias", "geo": null, "id": 148838872095264770, "id_str": "148838872095264768", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1649631186/tattoo_ainhoa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649631186/tattoo_ainhoa_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@junajo85 rtve.es en usa no se ve en directo via web :( :( :( He puesto 1000 quejas pero da igual :(", "to_user": "junajo85", "to_user_id": 116161044, "to_user_id_str": "116161044", "to_user_name": "Juanjo Barreno", "in_reply_to_status_id": 148838496998658050, "in_reply_to_status_id_str": "148838496998658048"}, +{"created_at": "Mon, 19 Dec 2011 18:55:26 +0000", "from_user": "jovenes990", "from_user_id": 164022730, "from_user_id_str": "164022730", "from_user_name": "tarquisiemprejoven", "geo": null, "id": 148838871608725500, "id_str": "148838871608725507", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1510335734/LOGO_TARQUI_SIEMPRE_JOVEN_OFICIAL1___normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1510335734/LOGO_TARQUI_SIEMPRE_JOVEN_OFICIAL1___normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "(Reuters) - The U.S. State Department and foreign aid budget escaped devastating cuts in a fiscal 2012 spending ... http://t.co/MfJUyKXK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:26 +0000", "from_user": "BOBBYDSMITH101", "from_user_id": 361164259, "from_user_id_str": "361164259", "from_user_name": "Bobby Smith", "geo": null, "id": 148838871445151740, "id_str": "148838871445151745", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1528044626/p11973ta103269_14_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1528044626/p11973ta103269_14_3_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Struggling Santorum bets big on Iowa: DES MOINES, Iowa (Reuters) - Rick Santorum thought he had it figured out.\\n \\n http://t.co/jLe4UUsU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:26 +0000", "from_user": "Kyledavid23", "from_user_id": 373062744, "from_user_id_str": "373062744", "from_user_name": "Kyle David", "geo": null, "id": 148838869830340600, "id_str": "148838869830340609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1541799661/Vacation_Baton_Rouge_2005_043_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541799661/Vacation_Baton_Rouge_2005_043_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Struggling Santorum bets big on Iowa: DES MOINES, Iowa (Reuters) - Rick Santorum thought he had it figured out.\\n \\n http://t.co/KcCfagjT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:26 +0000", "from_user": "BOBBYDSMITH101", "from_user_id": 361164259, "from_user_id_str": "361164259", "from_user_name": "Bobby Smith", "geo": null, "id": 148838869767430140, "id_str": "148838869767430144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1528044626/p11973ta103269_14_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1528044626/p11973ta103269_14_3_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "U.S. foreign aid escapes slashing cuts in fiscal 2012: (Reuters) - The U.S. State Department and foreign aid bud... http://t.co/ZBz1B9bb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:26 +0000", "from_user": "Mentirosita_", "from_user_id": 166659596, "from_user_id_str": "166659596", "from_user_name": "Lady\\u2665.", "geo": null, "id": 148838868857274370, "id_str": "148838868857274368", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1657693123/Colombia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657693123/Colombia_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "ANDRE YO S\\u00C9 QUE TU QUIERES QUE TODOS NOS CUIDEMOS AS\\u00CD QUE USA COND\\u00D3N TU TAMBI\\u00C9N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:26 +0000", "from_user": "Kyledavid23", "from_user_id": 373062744, "from_user_id_str": "373062744", "from_user_name": "Kyle David", "geo": null, "id": 148838868383313920, "id_str": "148838868383313920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1541799661/Vacation_Baton_Rouge_2005_043_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541799661/Vacation_Baton_Rouge_2005_043_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "U.S. foreign aid escapes slashing cuts in fiscal 2012: (Reuters) - The U.S. State Department and foreign aid bud... http://t.co/Z7LAm9qj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:25 +0000", "from_user": "CantaCrente", "from_user_id": 386201911, "from_user_id_str": "386201911", "from_user_name": "Deus \\u00E9 fiel", "geo": null, "id": 148838865036251140, "id_str": "148838865036251137", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700412272/musica1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700412272/musica1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Deus usa os pequenos detalhes para realizar grandes feitos para Sua gl\\u00F3ria.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:24 +0000", "from_user": "ThinkTrio", "from_user_id": 316608533, "from_user_id_str": "316608533", "from_user_name": "Trio", "geo": null, "id": 148838862729388030, "id_str": "148838862729388032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662790445/48x48pxls_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662790445/48x48pxls_logo_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Modification blunders bedevil U.S. housing recovery http://t.co/TtcAeEKi via @reuters", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:24 +0000", "from_user": "IU_Fan_99", "from_user_id": 16395130, "from_user_id_str": "16395130", "from_user_name": "Doug Jenen", "geo": null, "id": 148838862599364600, "id_str": "148838862599364608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1123673029/KC3728_l_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1123673029/KC3728_l_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @DustinDopirak: Indiana moves up to No. 17 in AP poll, No. 18 in ESPN/USA Today poll http://t.co/V2jvJAkf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:24 +0000", "from_user": "USAadvisor", "from_user_id": 341884755, "from_user_id_str": "341884755", "from_user_name": "USadvisor", "geo": null, "id": 148838861412384770, "id_str": "148838861412384768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1507832736/20100812_amerikanets_t_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1507832736/20100812_amerikanets_t_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Struggling Santorum bets big on Iowa: DES MOINES, Iowa (Reuters) - Rick Santorum thought he had it figured out.\\n \\n http://t.co/EVJOG3XD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:24 +0000", "from_user": "Hey_Brianner", "from_user_id": 197258232, "from_user_id_str": "197258232", "from_user_name": "Brianner gonzalez", "geo": null, "id": 148838861366239230, "id_str": "148838861366239233", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687760787/Fuck_20yeah_870_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687760787/Fuck_20yeah_870_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@_grfm \\u00BFsabes que en el ingles no se usa este signo \"\\u00BF\"?", "to_user": "_grfm", "to_user_id": 197719882, "to_user_id_str": "197719882", "to_user_name": "guillermo ferman", "in_reply_to_status_id": 148838600589578240, "in_reply_to_status_id_str": "148838600589578240"}, +{"created_at": "Mon, 19 Dec 2011 18:55:23 +0000", "from_user": "thalionezz", "from_user_id": 63152594, "from_user_id_str": "63152594", "from_user_name": "Lady Morgana", "geo": null, "id": 148838858950320130, "id_str": "148838858950320128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695342414/thalionezz_1931927860958016702_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695342414/thalionezz_1931927860958016702_normal.jpg", "source": "<a href="http://t.webkios.info" rel="nofollow">Wish You Were Here \\u00AE</a>", "text": "U ehn RT @s3yizy: TAFAWA BALEWA SQUARE, CALIFORNIA RT @TWEETORACLE: The HQ of the #PORN industry in USA is ________?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:22 +0000", "from_user": "NewAgeSongs", "from_user_id": 359364647, "from_user_id_str": "359364647", "from_user_name": "Richard Floyd", "geo": null, "id": 148838854550503420, "id_str": "148838854550503424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1509358670/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509358670/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #9614 Thunderstorm By the Sea: Joe Baker $0.89 Sounds of Nature by Joe Baker http://t.co/HJMjrew4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:22 +0000", "from_user": "RobertoMaiaReal", "from_user_id": 355306096, "from_user_id_str": "355306096", "from_user_name": "Roberto Maia", "geo": null, "id": 148838853866831870, "id_str": "148838853866831872", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1666188776/avatar_RM_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666188776/avatar_RM_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "N\\u00E3o sei se o pessoal daqui ainda usa o Orkut, mas pra quem interessar, temos nosso canal l\\u00E1 tbm! =) http://t.co/Eulpgqkr #Orkut", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:22 +0000", "from_user": "M6Q", "from_user_id": 307416332, "from_user_id_str": "307416332", "from_user_name": "Marilyn Q", "geo": null, "id": 148838853694849020, "id_str": "148838853694849024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1373657497/aaa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1373657497/aaa_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "I am #Autofollow Share With Friends: | | USA - California News, RSS and RSS Feed via Feedzilla. http://t.co/l1HxExKj #teamfollowback", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:22 +0000", "from_user": "NewAgeSongs", "from_user_id": 359364647, "from_user_id_str": "359364647", "from_user_name": "Richard Floyd", "geo": null, "id": 148838853447401470, "id_str": "148838853447401472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1509358670/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509358670/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #11312 The Aviators: Helen Jane Long $0.99 BLE Music Group http://t.co/g0WXKhQa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:22 +0000", "from_user": "tiiiiiiiiiinaaa", "from_user_id": 272908017, "from_user_id_str": "272908017", "from_user_name": "uma little monster \\u2020", "geo": null, "id": 148838852960845820, "id_str": "148838852960845824", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1659233317/386557_123181097794096_100003066203840_116995_1142029126_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659233317/386557_123181097794096_100003066203840_116995_1142029126_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ESSESGAYS: \"como vc pode gostar de tatuagem e alargador? que coisa feia\" disse a pessoa que gosta de funk usa shortinho de 5cm e tem piercing no umbigo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:22 +0000", "from_user": "M6Q", "from_user_id": 307416332, "from_user_id_str": "307416332", "from_user_name": "Marilyn Q", "geo": null, "id": 148838852465922050, "id_str": "148838852465922048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1373657497/aaa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1373657497/aaa_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "I am #Autofollow Share With Friends: | | USA - California News, RSS Feeds and Widgets via Feedzilla. http://t.co/Wqa2cC93 #teamfollowback", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:22 +0000", "from_user": "NewAgeSongs", "from_user_id": 359364647, "from_user_id_str": "359364647", "from_user_name": "Richard Floyd", "geo": null, "id": 148838852335894530, "id_str": "148838852335894529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1509358670/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509358670/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #6810 And Winter Came: Enya $0.99 Reprise http://t.co/TjXMLBvT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:21 +0000", "from_user": "NewAgeSongs", "from_user_id": 359364647, "from_user_id_str": "359364647", "from_user_name": "Richard Floyd", "geo": null, "id": 148838850821767170, "id_str": "148838850821767168", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1509358670/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509358670/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #4310 Claire De Lune: Claude Debussy $0.99 Domo Records http://t.co/61LlJoTQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:21 +0000", "from_user": "Politicalism", "from_user_id": 22174753, "from_user_id_str": "22174753", "from_user_name": "Politicalism", "geo": null, "id": 148838850381348860, "id_str": "148838850381348864", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/84099871/thumbnail-sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/84099871/thumbnail-sm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Struggling Santorum bets big on Iowa http://t.co/9vdbwJAV #politics", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:21 +0000", "from_user": "M6Q", "from_user_id": 307416332, "from_user_id_str": "307416332", "from_user_name": "Marilyn Q", "geo": null, "id": 148838849693483000, "id_str": "148838849693483008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1373657497/aaa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1373657497/aaa_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "I am #Autofollow Share With Friends: | | USA - California Stories, News Feeds and News via Feedzilla. http://t.co/aklFlHNf #teamfollowback", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:21 +0000", "from_user": "MiscellanySongs", "from_user_id": 359359954, "from_user_id_str": "359359954", "from_user_name": "Richard Floyd", "geo": null, "id": 148838849689305100, "id_str": "148838849689305088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1506469334/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1506469334/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #9614 Thunderstorm By the Sea: Joe Baker $0.89 Sounds of Nature by Joe Baker http://t.co/F4rm1a7Z", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:21 +0000", "from_user": "M6Q", "from_user_id": 307416332, "from_user_id_str": "307416332", "from_user_name": "Marilyn Q", "geo": null, "id": 148838848661688320, "id_str": "148838848661688322", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1373657497/aaa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1373657497/aaa_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "I am #Autofollow Share With Friends: | | USA - California Stories, RSS and RSS Feed via Feedzilla. http://t.co/wm1u0nKj #teamfollowback", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:21 +0000", "from_user": "NewAgeSongs", "from_user_id": 359364647, "from_user_id_str": "359364647", "from_user_name": "Richard Floyd", "geo": null, "id": 148838847453724670, "id_str": "148838847453724672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1509358670/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509358670/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #9407 4 Hours Sleep In 40 Minutes: Reducing the Length of Rest: Binaural $0.99 Binaural http://t.co/4F49FP5Q", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:21 +0000", "from_user": "MiscellanySongs", "from_user_id": 359359954, "from_user_id_str": "359359954", "from_user_name": "Richard Floyd", "geo": null, "id": 148838847168512000, "id_str": "148838847168512000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1506469334/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1506469334/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #11312 The Aviators: Helen Jane Long $0.99 BLE Music Group http://t.co/Tf1KhDpT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:21 +0000", "from_user": "nimoguw", "from_user_id": 433976520, "from_user_id_str": "433976520", "from_user_name": "Delmus Anselmi", "geo": null, "id": 148838847072043000, "id_str": "148838847072043008", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686918176/1298_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686918176/1298_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "quinn direct motor insurance quote http://t.co/ulpRYT6x", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:20 +0000", "from_user": "TheGoldenGate", "from_user_id": 41002181, "from_user_id_str": "41002181", "from_user_name": "Matt Bridge", "geo": null, "id": 148838845914423300, "id_str": "148838845914423296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/419843280/ggavatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/419843280/ggavatar_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Golden State News: Airport Dining Guides: Where to Eat at San Francisco International Airport (SFO) (EaterSF... http://t.co/Xg2pXIN5 #CA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:20 +0000", "from_user": "MiscellanySongs", "from_user_id": 359359954, "from_user_id_str": "359359954", "from_user_name": "Richard Floyd", "geo": null, "id": 148838845885054980, "id_str": "148838845885054976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1506469334/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1506469334/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #6810 And Winter Came: Enya $0.99 Reprise http://t.co/KvQdWUQM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:20 +0000", "from_user": "TheGoldenGate", "from_user_id": 41002181, "from_user_id_str": "41002181", "from_user_name": "Matt Bridge", "geo": null, "id": 148838844647743500, "id_str": "148838844647743488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/419843280/ggavatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/419843280/ggavatar_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Golden State News: Airport Dining Guides: Where to Eat at Oakland International Airport (OAK) (EaterSF): Sha... http://t.co/hE6Ypj0F #CA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:20 +0000", "from_user": "MiscellanySongs", "from_user_id": 359359954, "from_user_id_str": "359359954", "from_user_name": "Richard Floyd", "geo": null, "id": 148838844433829900, "id_str": "148838844433829888", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1506469334/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1506469334/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #4310 Claire De Lune: Claude Debussy $0.99 Domo Records http://t.co/NT0b56LF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:20 +0000", "from_user": "MiscellanySongs", "from_user_id": 359359954, "from_user_id_str": "359359954", "from_user_name": "Richard Floyd", "geo": null, "id": 148838842995195900, "id_str": "148838842995195904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1506469334/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1506469334/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #9407 4 Hours Sleep In 40 Minutes: Reducing the Length of Rest: Binaural $0.99 Binaural http://t.co/RCliImgd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:19 +0000", "from_user": "shaneborek", "from_user_id": 35302871, "from_user_id_str": "35302871", "from_user_name": "shane borek", "geo": null, "id": 148838839518109700, "id_str": "148838839518109696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1595545618/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1595545618/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "great the war is over and the gas prices are the same price.. nice work George W Bush #USA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:16 +0000", "from_user": "limite88", "from_user_id": 190271520, "from_user_id_str": "190271520", "from_user_name": "aida ", "geo": null, "id": 148838829468561400, "id_str": "148838829468561409", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1128221005/Ay_y_yo_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1128221005/Ay_y_yo_2_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @albardado: \\u00A1Un Rajoy salvaje apareci\\u00F3! \\u00A1Rajoy salvaje usa ataque INVESHTIDURA! \\u00A1Rajoy salvaje usa SALPICADURA! JAJAJA \\u00BFlo pill\\u00E1is? \\u00A1SALPICADURA! Muero.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:16 +0000", "from_user": "MallorySebald", "from_user_id": 297123916, "from_user_id_str": "297123916", "from_user_name": "Mallory sebald", "geo": null, "id": 148838828424183800, "id_str": "148838828424183808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1443121577/Headshot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1443121577/Headshot_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @MSU_Basketball: #Spartans move up to No. 19 in AP Top 25 and No. 20 in ESPN/USA Today Coaches Poll.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:16 +0000", "from_user": "RPGGameUpdate", "from_user_id": 292316169, "from_user_id_str": "292316169", "from_user_name": "RPG Game Update", "geo": null, "id": 148838827979575300, "id_str": "148838827979575296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1515949505/role-play-characters-nwn-game_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515949505/role-play-characters-nwn-game_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Golden Eagles-Sun Devils Preview - USA TODAY http://t.co/lA8n8Fbg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:15 +0000", "from_user": "studio430", "from_user_id": 160530396, "from_user_id_str": "160530396", "from_user_name": "DJ Waxy\\u2122\\u2600\\u00D3tim\\u00F3'ra", "geo": null, "id": 148838825605599230, "id_str": "148838825605599232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1688508169/avi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688508169/avi_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "\"PORNywood Towers\" RT @TWEETORACLE The HQ of the\\n#PORN industry in USA is ________?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:15 +0000", "from_user": "carolrosenberg", "from_user_id": 32129142, "from_user_id_str": "32129142", "from_user_name": "Carol Rosenberg", "geo": null, "id": 148838824531853300, "id_str": "148838824531853312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668160823/mug_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668160823/mug_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Reuters says US officials still considering Afghan transfer from #Guantanamo, tho Taliban chief denies talks under way. http://t.co/0UES0P8h", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:15 +0000", "from_user": "iyam_tosyn", "from_user_id": 146668065, "from_user_id_str": "146668065", "from_user_name": "Tosyn", "geo": null, "id": 148838823730745340, "id_str": "148838823730745344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1663800880/330599600_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663800880/330599600_normal.jpg", "source": "<a href="http://www.writelonger.com" rel="nofollow">Write Longer</a>", "text": "RT @Ms_Carter69: Sin City RT @TWEETORACLE: The HQ of the #PORN industry in USA is ________?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:15 +0000", "from_user": "Polityk0", "from_user_id": 226045945, "from_user_id_str": "226045945", "from_user_name": "Conner Stone", "geo": null, "id": 148838823713980400, "id_str": "148838823713980418", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1189313798/man_with_bullhorn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1189313798/man_with_bullhorn_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Struggling Santorum bets big on Iowa: DES MOINES, Iowa (Reuters) - Rick Santorum thought he had it figured out.\\n \\n http://t.co/GqE4UyHn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:14 +0000", "from_user": "jiwaminess", "from_user_id": 202604908, "from_user_id_str": "202604908", "from_user_name": "Jiwa Mines & mineral", "geo": null, "id": 148838820824088580, "id_str": "148838820824088579", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "jiwa mines minerals Struggling Santorum bets big on Iowa: DES MOINES, Iowa (Reuters) - Rick Santorum thought he ... http://t.co/P0MNrb6W", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:14 +0000", "from_user": "jiwaminess", "from_user_id": 202604908, "from_user_id_str": "202604908", "from_user_name": "Jiwa Mines & mineral", "geo": null, "id": 148838819058298880, "id_str": "148838819058298880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "jiwa mines minerals U.S. foreign aid escapes slashing cuts in fiscal 2012: (Reuters) - The U.S. State Department... http://t.co/ck3lIhwb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:14 +0000", "from_user": "newsate", "from_user_id": 178343191, "from_user_id_str": "178343191", "from_user_name": "mobile", "geo": null, "id": 148838818928267260, "id_str": "148838818928267264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Politics: Struggling Santorum bets big on Iowa: DES MOINES, Iowa (Reuters) - Rick Santorum thought he had it fig... http://t.co/71aFlLQx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:14 +0000", "from_user": "byzahoja", "from_user_id": 392779206, "from_user_id_str": "392779206", "from_user_name": "Ivon Happer", "geo": null, "id": 148838818647261200, "id_str": "148838818647261185", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1592865493/469_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592865493/469_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @sederykahip: casino slot machines usa http://t.co/7FSNNsPy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:14 +0000", "from_user": "newsate", "from_user_id": 178343191, "from_user_id_str": "178343191", "from_user_name": "mobile", "geo": null, "id": 148838817489633280, "id_str": "148838817489633281", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Politics: U.S. foreign aid escapes slashing cuts in fiscal 2012: (Reuters) - The U.S. State Department and forei... http://t.co/xYCKMwG5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:13 +0000", "from_user": "JPGhidini", "from_user_id": 51793608, "from_user_id_str": "51793608", "from_user_name": "Jo\\u00E3o Pedro Ghidini", "geo": null, "id": 148838816659148800, "id_str": "148838816659148800", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689183293/twitter_profile_natal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689183293/twitter_profile_natal_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "aquilo que tu s\\u00F3 usa pra mijar", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:13 +0000", "from_user": "AlbertSek", "from_user_id": 398999472, "from_user_id_str": "398999472", "from_user_name": "Albert Sek", "geo": null, "id": 148838816243908600, "id_str": "148838816243908608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1608189196/30134_1415238214259_1031670497_31513805_2342551_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608189196/30134_1415238214259_1031670497_31513805_2342551_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @DrFriedenCDC: Traveling for the holidays? Check out @CDCgov Yellow Book for travelers' information http://t.co/QMQoNmWC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:13 +0000", "from_user": "mnguillotine", "from_user_id": 119963525, "from_user_id_str": "119963525", "from_user_name": "The Guillotine", "geo": null, "id": 148838815413448700, "id_str": "148838815413448704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/733130004/glogogsm_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/733130004/glogogsm_normal.gif", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @usawrestling: Chas Betts named http://http://TheMat.com Wrestler of the Week | http://t.co/L2lOBnJe - USA Wrestling:...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:13 +0000", "from_user": "oquevocnaove", "from_user_id": 362219993, "from_user_id_str": "362219993", "from_user_name": "Adriane Feltes", "geo": null, "id": 148838814796873730, "id_str": "148838814796873728", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700939619/2011-12-18_18.09.54_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700939619/2011-12-18_18.09.54_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:13 +0000", "from_user": "sararicando", "from_user_id": 125371182, "from_user_id_str": "125371182", "from_user_name": "~ Sarah Vogue ~", "geo": null, "id": 148838814213865470, "id_str": "148838814213865474", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698895039/Foto2764_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698895039/Foto2764_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@crlmariana \\u00F4 amg, que c\\u00F3digo c\\u00EA usa pra deixa o bg transparente? *ps: amei o bg*", "to_user": "crlmariana", "to_user_id": 279149421, "to_user_id_str": "279149421", "to_user_name": "M\\u00E1 de Mari", "in_reply_to_status_id": 148838254957965300, "in_reply_to_status_id_str": "148838254957965312"}, +{"created_at": "Mon, 19 Dec 2011 18:55:12 +0000", "from_user": "MiguelGuiP", "from_user_id": 33056639, "from_user_id_str": "33056639", "from_user_name": "Miguel Guillen Paz", "geo": null, "id": 148838810124423170, "id_str": "148838810124423168", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1607161307/monta_ita_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607161307/monta_ita_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:11 +0000", "from_user": "BadashSablon081", "from_user_id": 433195731, "from_user_id_str": "433195731", "from_user_name": "Badash Sablon", "geo": null, "id": 148838807930802180, "id_str": "148838807930802176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "http://t.co/uKdA93Jo Gaming Topics Astrology Commerce USA Adultery Cooking", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:11 +0000", "from_user": "toddmcphetridge", "from_user_id": 36677276, "from_user_id_str": "36677276", "from_user_name": "Todd McPhetridge", "geo": null, "id": 148838805577805820, "id_str": "148838805577805824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1440325602/todd-mc2c_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1440325602/todd-mc2c_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @mfgsourcing: http://t.co/esEDTWsQ US retailers may turn to other sources as Chinese companies start to lose #manufacturing edge", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:10 +0000", "from_user": "latoniaidsvilla", "from_user_id": 305842659, "from_user_id_str": "305842659", "from_user_name": "Latonia Villanueva", "geo": null, "id": 148838802637598720, "id_str": "148838802637598720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695225341/imagesCA53E30D_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695225341/imagesCA53E30D_normal", "source": "<a href="http://aircompressorpaintball.com" rel="nofollow">aircompressorpaintballdotcom</a>", "text": "Where In USA Can I Get Duck Feet Fins-Duck Feet, XXL, 11-13 ( Fins ) Sale Now. http://t.co/tCQEKhwm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:09 +0000", "from_user": "injury_law_ga", "from_user_id": 319891058, "from_user_id_str": "319891058", "from_user_name": "Injury Lawyer GA USA", "geo": null, "id": 148838800292970500, "id_str": "148838800292970496", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1402078973/usa_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1402078973/usa_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Injury Lawyers GA USA -- http://t.co/UJrMtAjq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:09 +0000", "from_user": "TheChinaPress", "from_user_id": 35886858, "from_user_id_str": "35886858", "from_user_name": "China Press ", "geo": null, "id": 148838798418124800, "id_str": "148838798418124800", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/187085108/logo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/187085108/logo_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Files on Manning's computer linked to WikiLeaks site\\nhttp://t.co/idDd8WvD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:09 +0000", "from_user": "flaaaviarocha", "from_user_id": 258908220, "from_user_id_str": "258908220", "from_user_name": "flavia e vcs", "geo": null, "id": 148838796883005440, "id_str": "148838796883005440", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685699391/PQAAAA4Xxy1VJfNusadREO_qBwhRn7yQnKKh9ucOLGN6DBUFbuJKweexJGbS7WfLvtMrefcR-CsJLmKxdNtOvhdDLE0Am1T1UGn6VUYBBkgmotGxeD95wuygqm1u_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685699391/PQAAAA4Xxy1VJfNusadREO_qBwhRn7yQnKKh9ucOLGN6DBUFbuJKweexJGbS7WfLvtMrefcR-CsJLmKxdNtOvhdDLE0Am1T1UGn6VUYBBkgmotGxeD95wuygqm1u_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:08 +0000", "from_user": "9Andree9", "from_user_id": 382860101, "from_user_id_str": "382860101", "from_user_name": "Andr\\u00E9e", "geo": null, "id": 148838795880574980, "id_str": "148838795880574976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1567042102/Finger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1567042102/Finger_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "MT \\nTargeted radiation therapy may be overused in women with breast cancer http://t.co/vkGhl1Oc via @medlineplus #breastcancer cc: @xeni", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:08 +0000", "from_user": "MaxFactor_RD", "from_user_id": 371995331, "from_user_id_str": "371995331", "from_user_name": "Max Factor RD", "geo": null, "id": 148838793942802430, "id_str": "148838793942802432", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1670636364/Smoky_EyeTwitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670636364/Smoky_EyeTwitter_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Para conseguir una boca carnosa y sexy, usa una barra de labios perlada o un toque de gloss para reflejar la luz.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:07 +0000", "from_user": "Tha_R", "from_user_id": 28016211, "from_user_id_str": "28016211", "from_user_name": "Robert DeGuzman", "geo": null, "id": 148838791426228220, "id_str": "148838791426228226", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1486596009/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1486596009/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @MyRebelSwag: UNLV checks in at #23 in the USA Today/ESPN Coaches Poll.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:06 +0000", "from_user": "elpincheirving", "from_user_id": 83892255, "from_user_id_str": "83892255", "from_user_name": "\\u2022irving\\u2022", "geo": null, "id": 148838786351112200, "id_str": "148838786351112193", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701794257/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701794257/image_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:06 +0000", "from_user": "Rafaell_Ribero_", "from_user_id": 415913853, "from_user_id_str": "415913853", "from_user_name": "Rafael Branco ", "geo": null, "id": 148838786002980860, "id_str": "148838786002980864", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1670282804/mengao_sempre_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670282804/mengao_sempre_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @_Poclarice: \"Impossivel \\u00E9 uma palavra muito grande q gente pequena usa pra tentar ti oprimi\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:06 +0000", "from_user": "circotimia_", "from_user_id": 221610474, "from_user_id_str": "221610474", "from_user_name": "M a i t e\\u10E6. ", "geo": null, "id": 148838784979578880, "id_str": "148838784979578881", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698350821/jjo__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698350821/jjo__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "VANESSA USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:06 +0000", "from_user": "OnSafety", "from_user_id": 18990471, "from_user_id_str": "18990471", "from_user_name": "U.S. CPSC", "geo": null, "id": 148838784090382340, "id_str": "148838784090382336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/429455915/FB2_copy_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/429455915/FB2_copy_normal.gif", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Gel fuel, firepot rulemaking begins. Rulemaking will address flash fire and burn hazards. http://t.co/dwFhkMrY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:06 +0000", "from_user": "GrettaTM", "from_user_id": 264949191, "from_user_id_str": "264949191", "from_user_name": "Gretta' Cervantes(:", "geo": null, "id": 148838783784198140, "id_str": "148838783784198144", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689892036/SAM_1172_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689892036/SAM_1172_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @MascaraDeLatex: Hay gente que usa 140 caracteres para demostrar que es un pendejo, podr\\u00EDa usar solo 15 si escribiera: Soy un pendejo.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:05 +0000", "from_user": "workNetBusiness", "from_user_id": 191026341, "from_user_id_str": "191026341", "from_user_name": "workNet Biz Services", "geo": null, "id": 148838781410218000, "id_str": "148838781410217984", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1124290110/worknet_logo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1124290110/worknet_logo_normal.gif", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "State Personal Income Q3 2011 - http://t.co/Tf65jjGp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:05 +0000", "from_user": "AnunicoUSA", "from_user_id": 429832660, "from_user_id_str": "429832660", "from_user_name": "Anunico USA", "geo": null, "id": 148838779745079300, "id_str": "148838779745079296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677068376/logo_anunico_twitter_usa_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677068376/logo_anunico_twitter_usa_normal.PNG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Classifieds GLAMOUR HAIR SALON en Garland, Texas http://t.co/HzmOzRGJ #Ads #USA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:04 +0000", "from_user": "doinkdoink", "from_user_id": 33131934, "from_user_id_str": "33131934", "from_user_name": "law and order", "geo": null, "id": 148838778524540930, "id_str": "148838778524540928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/820460453/doink_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/820460453/doink_normal.png", "source": "<a href="http://tvtweet.syntaxi.net" rel="nofollow">tv tweeter</a>", "text": "CI on USA: 'Smile' - The murder of a Park Avenue dentist connects to the death of one of his young patients.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:04 +0000", "from_user": "AnunicoUSA", "from_user_id": 429832660, "from_user_id_str": "429832660", "from_user_name": "Anunico USA", "geo": null, "id": 148838778239320060, "id_str": "148838778239320064", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677068376/logo_anunico_twitter_usa_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677068376/logo_anunico_twitter_usa_normal.PNG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Classifieds autos usados a muy bajos precios http://t.co/IMasceOv #Ads #USA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:04 +0000", "from_user": "YinkaRudBoi", "from_user_id": 210065244, "from_user_id_str": "210065244", "from_user_name": "AdeYINKA ADEJARE", "geo": null, "id": 148838777182359550, "id_str": "148838777182359552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689449958/IMG00830-20111212-1837_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689449958/IMG00830-20111212-1837_normal.jpg", "source": "<a href="http://www.writelonger.com" rel="nofollow">Write Longer</a>", "text": "ALABA MARKET RT @TWEETORACLE: The HQ of the #PORN industry in USA is ________?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:04 +0000", "from_user": "AnunicoUSA", "from_user_id": 429832660, "from_user_id_str": "429832660", "from_user_name": "Anunico USA", "geo": null, "id": 148838775982800900, "id_str": "148838775982800896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677068376/logo_anunico_twitter_usa_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677068376/logo_anunico_twitter_usa_normal.PNG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Classifieds MARIACHI EN DALLAS- FORTWORTH http://t.co/8PdOyL9f #Ads #USA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:03 +0000", "from_user": "R_7", "from_user_id": 17464862, "from_user_id_str": "17464862", "from_user_name": "R.", "geo": null, "id": 148838775294930940, "id_str": "148838775294930944", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1264993680/001_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1264993680/001_normal.jpg", "source": "<a href="http://twitpic.com" rel="nofollow">Twitpic</a>", "text": "Colorado, USA http://t.co/6LTRp00y", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:03 +0000", "from_user": "shantelsbroomfi", "from_user_id": 305870280, "from_user_id_str": "305870280", "from_user_name": "shantel broomfield", "geo": null, "id": 148838775001333760, "id_str": "148838775001333761", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662714770/Pantry_Cabinets_For_Kitchen_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662714770/Pantry_Cabinets_For_Kitchen_normal.jpg", "source": "<a href="http://pantrycabinetsforkitchen.com" rel="nofollow">Pantry Cabinets For Kitchen2</a>", "text": "> Virtu USA Cathy Espresso 72 Inch Double Sink Bathroom Vanity w/ Travertine Top at Unbelievable Prices http://vanitysinksforbathrooms.pant", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:03 +0000", "from_user": "AnunicoUSA", "from_user_id": 429832660, "from_user_id_str": "429832660", "from_user_name": "Anunico USA", "geo": null, "id": 148838774430892030, "id_str": "148838774430892032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677068376/logo_anunico_twitter_usa_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677068376/logo_anunico_twitter_usa_normal.PNG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Classifieds Watch Live Samaa Tv (3128) http://t.co/JOMgOPaX #Ads #USA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:03 +0000", "from_user": "_Adicta", "from_user_id": 123965194, "from_user_id_str": "123965194", "from_user_name": "La que hace spam.", "geo": null, "id": 148838773944356860, "id_str": "148838773944356865", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "TU LA QUE LEE ESTE TWEET USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:55:03 +0000", "from_user": "shantelsbroomfi", "from_user_id": 305870280, "from_user_id_str": "305870280", "from_user_name": "shantel broomfield", "geo": null, "id": 148838775001333760, "id_str": "148838775001333761", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662714770/Pantry_Cabinets_For_Kitchen_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662714770/Pantry_Cabinets_For_Kitchen_normal.jpg", "source": "<a href="http://pantrycabinetsforkitchen.com" rel="nofollow">Pantry Cabinets For Kitchen2</a>", "text": "> Virtu USA Cathy Espresso 72 Inch Double Sink Bathroom Vanity w/ Travertine Top at Unbelievable Prices http://vanitysinksforbathrooms.pant", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:03 +0000", "from_user": "AnunicoUSA", "from_user_id": 429832660, "from_user_id_str": "429832660", "from_user_name": "Anunico USA", "geo": null, "id": 148838774430892030, "id_str": "148838774430892032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677068376/logo_anunico_twitter_usa_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677068376/logo_anunico_twitter_usa_normal.PNG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Classifieds Watch Live Samaa Tv (3128) http://t.co/JOMgOPaX #Ads #USA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:03 +0000", "from_user": "_Adicta", "from_user_id": 123965194, "from_user_id_str": "123965194", "from_user_name": "La que hace spam.", "geo": null, "id": 148838773944356860, "id_str": "148838773944356865", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "TU LA QUE LEE ESTE TWEET USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:02 +0000", "from_user": "negrogp", "from_user_id": 57234472, "from_user_id_str": "57234472", "from_user_name": "Negro GP", "geo": null, "id": 148838771020935170, "id_str": "148838771020935168", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702161024/CameraZOOM-20111219110927_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702161024/CameraZOOM-20111219110927_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "En el 2002 conoc\\u00ED un tipo que le gan\\u00F3 al sistema. 2001, corralito. Decidi\\u00F3 irse a vivir a USA con toda la flia. Agarr\\u00F3 su plazo fijo (...)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:02 +0000", "from_user": "fygepyzyfyl", "from_user_id": 433993700, "from_user_id_str": "433993700", "from_user_name": "Parand Archdeckne", "geo": null, "id": 148838767459971070, "id_str": "148838767459971073", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687542146/1236_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687542146/1236_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "loans grants felons http://t.co/0KAUPF1V", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:01 +0000", "from_user": "DTNUSA", "from_user_id": 219913533, "from_user_id_str": "219913533", "from_user_name": "DTN USA", "geo": null, "id": 148838766298144770, "id_str": "148838766298144768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696502703/DTN_USA_DEC_16_2011_CORRECTED_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696502703/DTN_USA_DEC_16_2011_CORRECTED_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "DTN USA: 4 Disabled Adults Allegedly Held Captive in Philadelphia Basement Smelled Like 'Death', Officer Says: D... http://t.co/rowpCnDJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:00 +0000", "from_user": "vogue_diary", "from_user_id": 371208866, "from_user_id_str": "371208866", "from_user_name": "Kristen Loxx", "geo": null, "id": 148838762288381950, "id_str": "148838762288381952", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698192891/x_a9ea9517_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698192891/x_a9ea9517_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@korolevMTV @anyaklepackaya \\u0432 usa;)", "to_user": "korolevMTV", "to_user_id": 46345236, "to_user_id_str": "46345236", "to_user_name": "artem korolev mtv", "in_reply_to_status_id": 148838160451899400, "in_reply_to_status_id_str": "148838160451899393"}, +{"created_at": "Mon, 19 Dec 2011 18:55:00 +0000", "from_user": "Keshaudg", "from_user_id": 431698662, "from_user_id_str": "431698662", "from_user_name": "Kesha Carraher", "geo": null, "id": 148838762137399300, "id_str": "148838762137399296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681027160/fezfoh45u2_129730900_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681027160/fezfoh45u2_129730900_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Ernie Ball Music Man Axis Floyd Rose Electric Guitar, Trans Blue: Made in the USA, Basswood Body, Maple Top, 22 ... http://t.co/J7PRULUZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:59 +0000", "from_user": "eloisejcardona", "from_user_id": 305769272, "from_user_id_str": "305769272", "from_user_name": "Eloise Cardona", "geo": null, "id": 148838758349930500, "id_str": "148838758349930496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702568946/images_1__normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702568946/images_1__normal", "source": "<a href="http://beallsblackfriday.com" rel="nofollow">beallsblackfridaydotcom</a>", "text": "Value Receiver With Cd Player-Pyle Home PICL82W iPhone and iPod FM Radio Micro Receiv http://t.co/byHwX3Kh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:59 +0000", "from_user": "cocomomo1235", "from_user_id": 364360994, "from_user_id_str": "364360994", "from_user_name": "cocomomo1235", "geo": null, "id": 148838755657187330, "id_str": "148838755657187329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Innovation Factory IceDozer MINI 2.0 with Brass Blade, Made in USA: http://t.co/f8CzEWxw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:58 +0000", "from_user": "sofidonzelli", "from_user_id": 145650374, "from_user_id_str": "145650374", "from_user_name": "Sof\\u00EDa Donzelli", "geo": null, "id": 148838753711042560, "id_str": "148838753711042561", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701188993/sofi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701188993/sofi_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lachicasabrina: las gitana no usa bonbacha porke lo gusta aser pis en la kalle,redepende se agacha y tira el chorrito y se va kaminando,por eso son olorosa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:58 +0000", "from_user": "mkaubry", "from_user_id": 220421348, "from_user_id_str": "220421348", "from_user_name": "Michael Aubry", "geo": null, "id": 148838752817651700, "id_str": "148838752817651712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1632274628/Pic_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632274628/Pic_normal", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @medianalyst:majority of printed newspapers in the USA will cease to exist within next 5 years, states USC report http://t.co/eY2cNpmR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:58 +0000", "from_user": "CPainemal", "from_user_id": 440852156, "from_user_id_str": "440852156", "from_user_name": "Claudio Painemal", "geo": null, "id": 148838752662462460, "id_str": "148838752662462464", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Hola cheposa, como se usa esto?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:57 +0000", "from_user": "Padashiaaaa_", "from_user_id": 155755508, "from_user_id_str": "155755508", "from_user_name": "Lovee'Padashiaaa\\u2661\\u2665\\u2661\\u30C4", "geo": null, "id": 148838750015848450, "id_str": "148838750015848448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694288201/384665_284580591588593_100001099630714_846271_580319618_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694288201/384665_284580591588593_100001099630714_846271_580319618_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "I want this one tho \\nhttp://t.co/7FpEOO87", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:57 +0000", "from_user": "Enji16", "from_user_id": 42729153, "from_user_id_str": "42729153", "from_user_name": "Slim Ford", "geo": null, "id": 148838748740796400, "id_str": "148838748740796416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700830371/picb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700830371/picb_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "This Bill don't matter to me anyways, because I'm about to move out the USA anyways", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:57 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148838747578966000, "id_str": "148838747578966016", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "GALLO USA COND\\u00D3N,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:57 +0000", "from_user": "StaunchRense", "from_user_id": 280597101, "from_user_id_str": "280597101", "from_user_name": "Rense Nijenkamp", "geo": null, "id": 148838747251814400, "id_str": "148838747251814400", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1576658502/Slapen_in_Zeeland_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576658502/Slapen_in_Zeeland_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@gulanxx nou dan wordt dan een retourtje usa ;)", "to_user": "gulanxx", "to_user_id": 249763052, "to_user_id_str": "249763052", "to_user_name": "Gulan", "in_reply_to_status_id": 148838580037492740, "in_reply_to_status_id_str": "148838580037492736"}, +{"created_at": "Mon, 19 Dec 2011 18:54:57 +0000", "from_user": "Mark2G00D4U", "from_user_id": 295567788, "from_user_id_str": "295567788", "from_user_name": "Mark Neo Andersson", "geo": null, "id": 148838747058880500, "id_str": "148838747058880514", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1345100847/NUKE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1345100847/NUKE_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Gezocht om flashbang, smokegrenades en granaten te kopen, gevonden voor maar $29,99! DAMN! only available in USA #kutzooi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:56 +0000", "from_user": "RocksSongs", "from_user_id": 362903910, "from_user_id_str": "362903910", "from_user_name": "Richard Floyd", "geo": null, "id": 148838745901248500, "id_str": "148838745901248512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1515427217/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515427217/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #321 Burn It To The Ground: Nickelback $0.99 Roadrunner Records http://t.co/Xf4DhNwv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:56 +0000", "from_user": "RocksSongs", "from_user_id": 362903910, "from_user_id_str": "362903910", "from_user_name": "Richard Floyd", "geo": null, "id": 148838744739426300, "id_str": "148838744739426304", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1515427217/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515427217/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #119 Paradise: Coldplay $0.99 Capitol http://t.co/TlrN8t06", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:56 +0000", "from_user": "thecardinaldela", "from_user_id": 20937306, "from_user_id_str": "20937306", "from_user_name": "Francisco Uhlfelder", "geo": null, "id": 148838744227721200, "id_str": "148838744227721216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/337596212/franzee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/337596212/franzee_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "USA TODAY Check this video out -- Occupy America http://t.co/V6srzSLd via @youtube", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:56 +0000", "from_user": "RocksSongs", "from_user_id": 362903910, "from_user_id_str": "362903910", "from_user_name": "Richard Floyd", "geo": null, "id": 148838742541611000, "id_str": "148838742541611008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1515427217/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515427217/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #618 Run Rudolph Run: Chuck Berry $0.99 Hip-O Select/Chess http://t.co/ZIPpsgU9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:55 +0000", "from_user": "VEMCOMAREBS", "from_user_id": 79590276, "from_user_id_str": "79590276", "from_user_name": "FOREVER ALONE", "geo": null, "id": 148838741740490750, "id_str": "148838741740490752", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1670616586/Imagem_009_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670616586/Imagem_009_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ESSESGAYS: \"como vc pode gostar de tatuagem e alargador? que coisa feia\" disse a pessoa que gosta de funk usa shortinho de 5cm e tem piercing no umbigo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:55 +0000", "from_user": "RocksSongs", "from_user_id": 362903910, "from_user_id_str": "362903910", "from_user_name": "Richard Floyd", "geo": null, "id": 148838741383974900, "id_str": "148838741383974912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1515427217/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515427217/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #816 My Immortal: Evanescence $1.29 Wind-Up http://t.co/bGmEe5LX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:55 +0000", "from_user": "RocksSongs", "from_user_id": 362903910, "from_user_id_str": "362903910", "from_user_name": "Richard Floyd", "geo": null, "id": 148838740029218800, "id_str": "148838740029218816", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1515427217/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515427217/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #314 Bottoms Up: Nickelback $0.99 Roadrunner Records http://t.co/RhkKVo4R", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:55 +0000", "from_user": "herylaky", "from_user_id": 428448764, "from_user_id_str": "428448764", "from_user_name": "Erroll Mciver", "geo": null, "id": 148838737692987400, "id_str": "148838737692987394", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1673840137/868_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673840137/868_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @fojopyg: casino usa new york http://t.co/g8EpDX0W", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:54 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148838734316568580, "id_str": "148838734316568577", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "PERRO USA COND\\u00D3N,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:54 +0000", "from_user": "eaemaluca", "from_user_id": 226270738, "from_user_id_str": "226270738", "from_user_name": "Larissa com i e 2 s", "geo": null, "id": 148838734127829000, "id_str": "148838734127828992", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1691399735/foto0095_001_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691399735/foto0095_001_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ESSESGAYS: \"como vc pode gostar de tatuagem e alargador? que coisa feia\" disse a pessoa que gosta de funk usa shortinho de 5cm e tem piercing no umbigo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:53 +0000", "from_user": "realmlord1", "from_user_id": 37678007, "from_user_id_str": "37678007", "from_user_name": "Stephen Perigo", "geo": null, "id": 148838732898902000, "id_str": "148838732898902017", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/443650417/Seattle_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/443650417/Seattle_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@BlastodermMan Corell's and Utz are the 2 best kettle chip brands in the USA. Anyone who has lived between MD and IN know this", "to_user": "BlastodermMan", "to_user_id": 109583336, "to_user_id_str": "109583336", "to_user_name": "Carl Wilt", "in_reply_to_status_id": 148835619114717200, "in_reply_to_status_id_str": "148835619114717184"}, +{"created_at": "Mon, 19 Dec 2011 18:54:53 +0000", "from_user": "_MyOnlyLoveNick", "from_user_id": 182330011, "from_user_id_str": "182330011", "from_user_name": "T\\u00EB\\u03B1m J\\u00F6n\\u00E4s", "geo": null, "id": 148838732848566270, "id_str": "148838732848566272", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700672796/300176_244113862301552_212906528755619_685666_1529132768_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700672796/300176_244113862301552_212906528755619_685666_1529132768_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "66. Quale parte del mondo ti piacerebbe visitare? USA <3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:53 +0000", "from_user": "Lew_Butcher", "from_user_id": 242327378, "from_user_id_str": "242327378", "from_user_name": "Lewis Butcher", "geo": null, "id": 148838731795808260, "id_str": "148838731795808256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1224510209/LB_at_NOA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1224510209/LB_at_NOA_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "\\u201C@EnglandHockey: USA v GB Test Series - watch all the goals from the 5 games on our YouTube Channel now. http://t.co/tMw7XREZ\\u201D Awesome!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:52 +0000", "from_user": "Rothschild999", "from_user_id": 398893636, "from_user_id_str": "398893636", "from_user_name": "Michael Lee Rawlings", "geo": null, "id": 148838728025128960, "id_str": "148838728025128960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1677185717/SNAKE_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677185717/SNAKE_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Virginia governor wants bigger reserves, no tax hikes: In unveiling his biennium budget proposal, Governor Bob M... http://t.co/b3qPNah2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:50 +0000", "from_user": "xRONsx", "from_user_id": 116107809, "from_user_id_str": "116107809", "from_user_name": "RON's", "geo": null, "id": 148838720307609600, "id_str": "148838720307609601", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1613503315/xronsx_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1613503315/xronsx_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "LO MAS ARRECHO ES QUE @_Adicta USA ES PASTILLAS -.-!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:50 +0000", "from_user": "Bigua10", "from_user_id": 142703660, "from_user_id_str": "142703660", "from_user_name": "Facundo Cabral", "geo": null, "id": 148838719699435520, "id_str": "148838719699435520", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690889341/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690889341/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@pollobigua @pitschwarz o rey, el u se pronuncia pero no se usa. Gracias", "to_user": "pollobigua", "to_user_id": 195967490, "to_user_id_str": "195967490", "to_user_name": "Jose Toma", "in_reply_to_status_id": 148787765465722880, "in_reply_to_status_id_str": "148787765465722883"}, +{"created_at": "Mon, 19 Dec 2011 18:54:50 +0000", "from_user": "numb3rn3rd", "from_user_id": 305069659, "from_user_id_str": "305069659", "from_user_name": "Shane Osborne", "geo": null, "id": 148838718239801340, "id_str": "148838718239801345", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690053128/shane_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690053128/shane_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @WPSD_Sports: Murray State is also #22 in this week's ESPN/USA Today coaches poll. #WPSD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:49 +0000", "from_user": "StanCarterJr", "from_user_id": 52940579, "from_user_id_str": "52940579", "from_user_name": "Stan Carter Jr.", "geo": null, "id": 148838715861630980, "id_str": "148838715861630976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/293098727/facebook_picture__2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/293098727/facebook_picture__2__normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Congratulations to Randy & Julie Lim of Washington, USA for Going Diamond! http://t.co/pN508hoR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:49 +0000", "from_user": "_jdsousa", "from_user_id": 163203062, "from_user_id_str": "163203062", "from_user_name": "Je\\u0455\\u0455\\u03B9c\\u03B1 te ama.", "geo": null, "id": 148838713093390340, "id_str": "148838713093390337", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677581710/312017_1877528636998_1804727270_1296375_415792567_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677581710/312017_1877528636998_1804727270_1296375_415792567_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @_Adicta: JESSICA USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:48 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148838712107741200, "id_str": "148838712107741185", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "EL GATO USA COND\\u00D3N,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:48 +0000", "from_user": "WGRZ", "from_user_id": 15308015, "from_user_id_str": "15308015", "from_user_name": "WGRZ", "geo": null, "id": 148838710530686980, "id_str": "148838710530686977", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1622342726/twitter_facebook_icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622342726/twitter_facebook_icon_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Via USA Today: Experts see possible power struggle in North Korea: Son has had little time to form alliances, an... http://t.co/SGcWzZFy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:48 +0000", "from_user": "Ms_Carter69", "from_user_id": 134583690, "from_user_id_str": "134583690", "from_user_name": "Annie Pwnc Boateng\\u2665", "geo": null, "id": 148838709817655300, "id_str": "148838709817655296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700242991/Ms_Carter69_1863183207588426309_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700242991/Ms_Carter69_1863183207588426309_normal.jpg", "source": "<a href="http://www.writelonger.com" rel="nofollow">Write Longer</a>", "text": "Sin City RT @TWEETORACLE: The HQ of the #PORN industry in USA is ________?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:48 +0000", "from_user": "TSOEvents", "from_user_id": 81739690, "from_user_id_str": "81739690", "from_user_name": "Jade Ladson", "geo": null, "id": 148838709486297100, "id_str": "148838709486297089", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1469990416/Twitter2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1469990416/Twitter2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#TSOEvents Las Vegas gets an unusual new wedding chapel - USA TODAY http://t.co/O9BXZaqQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:49 +0000", "from_user": "pwcarey", "from_user_id": 17290339, "from_user_id_str": "17290339", "from_user_name": "Peter West Carey", "geo": null, "id": 148838708689387520, "id_str": "148838708689387522", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676151920/PWP2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676151920/PWP2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Why do I love living in the Pacific Northwest of the USA? This photo from my flight to Portland will explain. http://t.co/SBs638QE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:47 +0000", "from_user": "PauLarroza", "from_user_id": 328785296, "from_user_id_str": "328785296", "from_user_name": "Paula Larroza", "geo": null, "id": 148838704235036670, "id_str": "148838704235036673", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702427587/305331_299416306754118_267602946602121_1181396_1336613506_n_large_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702427587/305331_299416306754118_267602946602121_1181396_1336613506_n_large_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "juro que no entiendo como se usa la palabra \"fisura\", no se pero me siento una inutil del orto", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:46 +0000", "from_user": "IronKrlos28", "from_user_id": 203147621, "from_user_id_str": "203147621", "from_user_name": "Carlos", "geo": null, "id": 148838703370993660, "id_str": "148838703370993664", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1688527898/Southpark034_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688527898/Southpark034_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:46 +0000", "from_user": "G_Carva", "from_user_id": 70370665, "from_user_id_str": "70370665", "from_user_name": "Geoffrey Carvalhinho", "geo": null, "id": 148838703270338560, "id_str": "148838703270338562", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1549860466/jojo_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1549860466/jojo_twitter_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @CBeigbeder: La France 3eme pays le plus innovant de la planete, derriere USA et Japon ! Enfin une bonne nouvelle economique ! http://t.co/KppHgo2x", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:46 +0000", "from_user": "MyRebelSwag", "from_user_id": 176190057, "from_user_id_str": "176190057", "from_user_name": "Rebel Swag", "geo": null, "id": 148838703052230660, "id_str": "148838703052230656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1221460710/legendslogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1221460710/legendslogo_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "UNLV checks in at #23 in the USA Today/ESPN Coaches Poll.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:46 +0000", "from_user": "Ailin_Pardo", "from_user_id": 190016941, "from_user_id_str": "190016941", "from_user_name": "Ailin Pardo", "geo": null, "id": 148838702326611970, "id_str": "148838702326611968", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1515406472/TWITTERRRR_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515406472/TWITTERRRR_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Animate y salta... grita o escribe, usa tu milagro hoy...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:46 +0000", "from_user": "dianagtzv", "from_user_id": 88126102, "from_user_id_str": "88126102", "from_user_name": "Diana Gtz. Valtierra", "geo": null, "id": 148838701911388160, "id_str": "148838701911388161", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693238689/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693238689/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@RuizdeTeresaG por que usa a j\\u00F3venes vestidos de fantasmas para una protesta?Por que no mejor los prepara,capacita, becas en el extranjero?", "to_user": "RuizdeTeresaG", "to_user_id": 292744754, "to_user_id_str": "292744754", "to_user_name": "Ruiz de Teresa"}, +{"created_at": "Mon, 19 Dec 2011 18:54:46 +0000", "from_user": "pussynigganaija", "from_user_id": 303105046, "from_user_id_str": "303105046", "from_user_name": "Dolapos hubby :)", "geo": null, "id": 148838700736974850, "id_str": "148838700736974848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1579022765/Vgtrtt_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1579022765/Vgtrtt_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Kim kardashians house \"@TWEETORACLE: The HQ of the #PORN industry in USA is ________?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:45 +0000", "from_user": "sandiegoescort", "from_user_id": 83914607, "from_user_id_str": "83914607", "from_user_name": "San Diego Escorts", "geo": null, "id": 148838698140708860, "id_str": "148838698140708866", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/481840965/twitter_icon_35_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/481840965/twitter_icon_35_normal.jpg", "source": "<a href="http://tinyurl.com/5qva38" rel="nofollow">San Diego Escorts</a>", "text": "http://t.co/FTeYBHOW San Diego Adult Classified ad: New Petite Filipina Hawaiian In El Cajon-San Diego outcall - w4m -", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:44 +0000", "from_user": "Mentirosita_", "from_user_id": 166659596, "from_user_id_str": "166659596", "from_user_name": "Lady\\u2665.", "geo": null, "id": 148838695380860930, "id_str": "148838695380860928", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1657693123/Colombia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657693123/Colombia_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @_Adicta: LADY USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:44 +0000", "from_user": "PatGohn", "from_user_id": 52509568, "from_user_id_str": "52509568", "from_user_name": "Pat Gohn", "geo": null, "id": 148838692797157380, "id_str": "148838692797157376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1105278546/Photo_36_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1105278546/Photo_36_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Excellent news for the USA! | RT @TheAnchoress Kateri Tekakwitha, Marianne Cope to be Canonized http://t.co/rsu42CoQ @OSV @KathySchiffer", "to_user": "TheAnchoress", "to_user_id": 35822388, "to_user_id_str": "35822388", "to_user_name": "Elizabeth Scalia", "in_reply_to_status_id": 148837375798280200, "in_reply_to_status_id_str": "148837375798280193"}, +{"created_at": "Mon, 19 Dec 2011 18:54:43 +0000", "from_user": "_alicealima", "from_user_id": 383936855, "from_user_id_str": "383936855", "from_user_name": "\\u3164 \\u3164 \\u3164 \\u3164 AL\\u00CDCEA P. =)", "geo": null, "id": 148838690616123400, "id_str": "148838690616123393", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698960985/editada__picasa__2__normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698960985/editada__picasa__2__normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "aiai joga seu charme e vai embora, aiai ela me usa e me ignora \\u266A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:43 +0000", "from_user": "DTNUSA", "from_user_id": 219913533, "from_user_id_str": "219913533", "from_user_name": "DTN USA", "geo": null, "id": 148838687696879600, "id_str": "148838687696879616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696502703/DTN_USA_DEC_16_2011_CORRECTED_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696502703/DTN_USA_DEC_16_2011_CORRECTED_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "DTN USA: Video: Florida A&M hazing fallout: Thomas Roberts talks to Rep. Corrine Brown, D-Fla., about the decisi... http://t.co/dvM1iVan", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:42 +0000", "from_user": "circotimia_", "from_user_id": 221610474, "from_user_id_str": "221610474", "from_user_name": "M a i t e\\u10E6. ", "geo": null, "id": 148838684958003200, "id_str": "148838684958003200", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698350821/jjo__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698350821/jjo__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "DIANA USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:42 +0000", "from_user": "SalamiTruewan", "from_user_id": 178531676, "from_user_id_str": "178531676", "from_user_name": "It's: Suh-Lah-Mee", "geo": null, "id": 148838683968159740, "id_str": "148838683968159744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1674286456/330919977_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674286456/330919977_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Oxfordshire :D RT @TWEETORACLE: The HQ of the #PORN industry in USA is ________?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:42 +0000", "from_user": "kingdahyor", "from_user_id": 182829291, "from_user_id_str": "182829291", "from_user_name": "King Dayo Hammed", "geo": null, "id": 148838683905245200, "id_str": "148838683905245184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699148854/IMG00137-20111113-1819_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699148854/IMG00137-20111113-1819_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "beverly hills RT @TWEETORACLE: The HQ of the #PORN industry in USA is ________?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:41 +0000", "from_user": "Emmaczj", "from_user_id": 430047285, "from_user_id_str": "430047285", "from_user_name": "Emma Spang", "geo": null, "id": 148838682563059700, "id_str": "148838682563059712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677522953/1add2temmy_126941170-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677522953/1add2temmy_126941170-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Lucky Craft USA Sammy 85 3.25\" 7/16oz MS MJ Herring: LUCKY CRAFT SAMMY 85 TOPWATER LURE, 3.25\", 7/16OZ, MS MJ HERRING http://t.co/1oh13pJG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:41 +0000", "from_user": "zanafavik", "from_user_id": 425416040, "from_user_id_str": "425416040", "from_user_name": "Qayshon Kesten", "geo": null, "id": 148838682525315070, "id_str": "148838682525315073", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1667888635/23_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667888635/23_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @honimixux: compare insurance quote http://t.co/xlYGQth5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:41 +0000", "from_user": "nfromearth", "from_user_id": 124255862, "from_user_id_str": "124255862", "from_user_name": "Nat\\u00E1lia Godoy", "geo": null, "id": 148838680310710270, "id_str": "148838680310710273", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1588765454/423953801_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1588765454/423953801_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ESSESGAYS: \"como vc pode gostar de tatuagem e alargador? que coisa feia\" disse a pessoa que gosta de funk usa shortinho de 5cm e tem piercing no umbigo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:41 +0000", "from_user": "TheAnonVirus", "from_user_id": 440897047, "from_user_id_str": "440897047", "from_user_name": "TheAnonymousVirus", "geo": null, "id": 148838680059064320, "id_str": "148838680059064320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702271224/avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702271224/avatar_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @BlogginJoe: \\uFF32\\uFF45\\uFF54\\uFF57\\uFF45\\uFF45\\uFF54 \\uFF29\\uFF46 \\uFF39\\uFF4F\\uFF55 \\uFF2E\\uFF45\\uFF45\\uFF44 \\uFF26\\uFF4F\\uFF4C\\uFF4C\\uFF4F\\uFF57\\uFF45\\uFF52\\uFF53 #TeamFollowBack\\u2665 #TeamAutoFollow\\u2665 #F4F\\u2665 #AutoFollowBack #SCAM #NEWS #USA 14,129,248 HITz\\u27BD http://t.co/mCcgbQZo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:40 +0000", "from_user": "nichols1936", "from_user_id": 13241992, "from_user_id_str": "13241992", "from_user_name": "john nichols", "geo": null, "id": 148838677253074940, "id_str": "148838677253074944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/184216693/john_at_calafat_1991_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/184216693/john_at_calafat_1991_normal.JPG", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "USA - Moms Turn to Phone Sex Business for Income (We Criticize Russian online dating scammers and now this news) http://t.co/d50A2fDe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:40 +0000", "from_user": "haarrnnyy", "from_user_id": 344226978, "from_user_id_str": "344226978", "from_user_name": "PeanutZzzz", "geo": null, "id": 148838675868954620, "id_str": "148838675868954624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1692628295/63492115396380875_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692628295/63492115396380875_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "We are not #porn stars!!!! Ow r we supposed to knw the answer nah!!!!\"@TWEETORACLE: The HQ of the #PORN industry in USA is ________?\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:40 +0000", "from_user": "peruanitta", "from_user_id": 114586255, "from_user_id_str": "114586255", "from_user_name": "tatiana", "geo": null, "id": 148838675663433730, "id_str": "148838675663433729", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681925739/IMG00362-20111112-1405_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681925739/IMG00362-20111112-1405_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: No se usa \"hubieron\" cuando haber se emplea para denotar la presencia de personas o cosas, Hubieron 6 ni\\u00F1os (\\u2717), debe decirse: Hubo 6 ni\\u00F1os\\u2611", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:40 +0000", "from_user": "ALFAREROS", "from_user_id": 36976702, "from_user_id_str": "36976702", "from_user_name": "ALFAREROS", "geo": null, "id": 148838675608895500, "id_str": "148838675608895489", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1594519464/Screen_shot_2011-10-18_at_9.52.25_AM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1594519464/Screen_shot_2011-10-18_at_9.52.25_AM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "\"ALFAREROS HOY EN NUESTRA FE EN VIVO\" EWTN \\n (especial de navidad) USA 6:00PM- MEXICO 5:00PM- BOGOTA 6:00PM\\n MADRID 12:00AM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:40 +0000", "from_user": "rehall90", "from_user_id": 374082243, "from_user_id_str": "374082243", "from_user_name": "Edward Hall", "geo": null, "id": 148838674942005250, "id_str": "148838674942005248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1621481316/Unknown_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621481316/Unknown_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TheCAJasonSmith: Will Barton named C-USA player of the week for second straight Monday. Short story: http://t.co/YfX4R06f Also, Tigers 34th in coaches poll.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:39 +0000", "from_user": "SetteNews", "from_user_id": 124415889, "from_user_id_str": "124415889", "from_user_name": "Sette", "geo": null, "id": 148838672974884860, "id_str": "148838672974884865", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1653944078/sette_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653944078/sette_twitter_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Ultim'ora: Musica: Pino Daniele, a marzo il nuovo album e poi il tour con finale in Usa - http://t.co/OXX6U4Hx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:39 +0000", "from_user": "contreras2908", "from_user_id": 134115016, "from_user_id_str": "134115016", "from_user_name": "Elvis Contreras", "geo": null, "id": 148838671741763600, "id_str": "148838671741763585", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1227439333/PC191106_-_Copy_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1227439333/PC191106_-_Copy_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Para manejarte usa tu cerebro, para manejar a otros, usa tu coraz\\u00F3n", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:38 +0000", "from_user": "DanLevyThinks", "from_user_id": 14885258, "from_user_id_str": "14885258", "from_user_name": "Dan Levy", "geo": null, "id": 148838670298910720, "id_str": "148838670298910720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1084395501/dl-typewriter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1084395501/dl-typewriter_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Tracking a package from Israel. Website tells me it's in USA but call a number in Israel. I do. I get all Hebrew, a website, then a hangup.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:38 +0000", "from_user": "fuckoffmarco", "from_user_id": 70287350, "from_user_id_str": "70287350", "from_user_name": "Marco Kuttner", "geo": null, "id": 148838669032235000, "id_str": "148838669032235009", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1560441392/P230911_2316_-_C_pia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1560441392/P230911_2316_-_C_pia_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @_amandspure: @fuckoffmarco ah, fica quieto meu. Voce usa PEROBA de hidratante e quer dar uma de t\\u00EDmido? MANDA QUEIA MAICO, MANDA SAUDADE MAICO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:38 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148838666930884600, "id_str": "148838666930884608", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "SOF\\u00CCA USA COND\\u00D3N,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:37 +0000", "from_user": "BooksReview4U", "from_user_id": 257545156, "from_user_id_str": "257545156", "from_user_name": "Jonathan Cremin", "geo": null, "id": 148838663013404670, "id_str": "148838663013404674", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1564475545/Books_reviews_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1564475545/Books_reviews_normal.gif", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "RT @Melissa_Foster: Excited my book is recommended on USA Today book blog. COME BACK TO ME http://t.co/fgNrYaC7 #IAN1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:37 +0000", "from_user": "sp_missouri", "from_user_id": 128447100, "from_user_id_str": "128447100", "from_user_name": "Superpages Missouri", "geo": +{"coordinates": [39.0501,-94.6012], "type": "Point"}, "id": 148838662325551100, "id_str": "148838662325551104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/789666039/sp-coupons_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/789666039/sp-coupons_normal.gif", "source": "<a href="http://www.superpages.com" rel="nofollow">Superpages</a>", "text": "Autobahn Motors USA Inc. Kansas City, MO Call now or stop by for great deals! http://t.co/70D24pRT KansasCity Auto Dealers #coupon", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:37 +0000", "from_user": "mapadevyz", "from_user_id": 433567244, "from_user_id_str": "433567244", "from_user_name": "Ekaghogho Farrier", "geo": null, "id": 148838662149373950, "id_str": "148838662149373952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1685903626/1608_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685903626/1608_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @decajape: cheap unsecured loans http://t.co/gvalncRY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:36 +0000", "from_user": "Mukha_Kaloev", "from_user_id": 169443326, "from_user_id_str": "169443326", "from_user_name": "Mukha Kaloev", "geo": null, "id": 148838660010278900, "id_str": "148838660010278912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1504969758/south_ossetia_flag_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1504969758/south_ossetia_flag_normal.gif", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @tgoorden: USA is now an openly pro-war, anti-science, pro-censorship, anti-protest military controlled superpower. Fascism.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:35 +0000", "from_user": "Kwl1", "from_user_id": 319625316, "from_user_id_str": "319625316", "from_user_name": "Porran Izah ", "geo": null, "id": 148838656050868220, "id_str": "148838656050868224", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677386921/PB210925_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677386921/PB210925_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ESSESGAYS: \"como vc pode gostar de tatuagem e alargador? que coisa feia\" disse a pessoa que gosta de funk usa shortinho de 5cm e tem piercing no umbigo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:34 +0000", "from_user": "hywomukofi", "from_user_id": 433709843, "from_user_id_str": "433709843", "from_user_name": "Fielding Cluely", "geo": null, "id": 148838653018378240, "id_str": "148838653018378240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1685996163/258_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685996163/258_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "texas auto insurance faq http://t.co/UxxsS8s6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:34 +0000", "from_user": "carrolltrust", "from_user_id": 18906599, "from_user_id_str": "18906599", "from_user_name": "Carroll Trust", "geo": null, "id": 148838652359872500, "id_str": "148838652359872513", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1132467164/55_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1132467164/55_normal.jpg", "source": "<a href="http://splitweet.com" rel="nofollow">Splitweet</a>", "text": "Bel Air #Los #Angeles Biggest Fraud Scandal #Coutts #Bank HSBC USA $1,OOO,OOO,OOO, #Bahamas #Gibraltar Fraud Case http://t.co/KRN3goRy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:34 +0000", "from_user": "HertfordOxford", "from_user_id": 378222973, "from_user_id_str": "378222973", "from_user_name": "Oxford University", "geo": null, "id": 148838652275986430, "id_str": "148838652275986432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1555155194/george_chap_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555155194/george_chap_normal.jpg", "source": "<a href="http://splitweet.com" rel="nofollow">Splitweet</a>", "text": "Bel Air #Los #Angeles Biggest Fraud Scandal #Coutts #Bank HSBC USA $1,OOO,OOO,OOO, #Bahamas #Gibraltar Fraud Case http://t.co/T5uSeZYm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:34 +0000", "from_user": "EnemyLister", "from_user_id": 386785567, "from_user_id_str": "386785567", "from_user_name": "Lo Haze", "geo": null, "id": 148838650359193600, "id_str": "148838650359193601", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697706728/6a00d8341c730253ef0162fddd66c2970d_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697706728/6a00d8341c730253ef0162fddd66c2970d_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @carolinedav: http://t.co/z7Zw5ODq -- A Butter message to the USA! http://t.co/IUp6HAxK via @youtube LOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:34 +0000", "from_user": "GiampiccoloMine", "from_user_id": 65092948, "from_user_id_str": "65092948", "from_user_name": "Matheus Giampiccolo", "geo": null, "id": 148838650199805950, "id_str": "148838650199805952", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1467986340/kkk_mine_e_roni2_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1467986340/kkk_mine_e_roni2_3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:34 +0000", "from_user": "BHRDef_jaguar", "from_user_id": 362653328, "from_user_id_str": "362653328", "from_user_name": "BHRDef_jaguar", "geo": null, "id": 148838649650352130, "id_str": "148838649650352129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689615860/BHRDefense_Logo_-jagur-b_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689615860/BHRDefense_Logo_-jagur-b_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "the tweet in this link is very important retweet it pls https://t.co/juG0g2If #bahrain #14feb #saudi #kuwait #usa @lane_liz @martinezjuliu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:33 +0000", "from_user": "ken_morera", "from_user_id": 26448853, "from_user_id_str": "26448853", "from_user_name": "kenneth morera\\u2652", "geo": null, "id": 148838649302237200, "id_str": "148838649302237184", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1671829060/IMAG0102_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671829060/IMAG0102_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@JocMiranda Yo odio las bufandas! Digamos q la gente las usa de adorno. Ni calientan! XD", "to_user": "JocMiranda", "to_user_id": 51857115, "to_user_id_str": "51857115", "to_user_name": "Jose Miranda", "in_reply_to_status_id": 148838315980894200, "in_reply_to_status_id_str": "148838315980894208"}, +{"created_at": "Mon, 19 Dec 2011 18:54:33 +0000", "from_user": "pegvirginia", "from_user_id": 146829426, "from_user_id_str": "146829426", "from_user_name": "peggy virginia", "geo": null, "id": 148838648962490370, "id_str": "148838648962490368", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698543522/IMG-20111216-00028_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698543522/IMG-20111216-00028_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Hay gente q usa 140 caracteres para demostrar q es un estupido cuando lo puede hacer cn 19: Yo soy un/a estupid@", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:33 +0000", "from_user": "sir_edrizy", "from_user_id": 372741448, "from_user_id_str": "372741448", "from_user_name": "Malik Eward jnr", "geo": null, "id": 148838648786325500, "id_str": "148838648786325504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699809090/331647120_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699809090/331647120_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "No.2255b devils drive Texas RT @TWEETORACLE: The HQ of the #PORN industry in USA is ________?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:33 +0000", "from_user": "AS_Inako", "from_user_id": 127550968, "from_user_id_str": "127550968", "from_user_name": "I\\u00F1ako D\\u00EDaz-Guerra", "geo": null, "id": 148838646412349440, "id_str": "148838646412349440", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1640288312/viejas30068_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640288312/viejas30068_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "El agente de Kirilenko asegura a medios USA q a\\u00FAn no hay acuerdo. La palabra es a\\u00FAn. Con Prokhorov por medio, no hay mucho margen para el no", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:32 +0000", "from_user": "jkennemore1", "from_user_id": 248788359, "from_user_id_str": "248788359", "from_user_name": "Josh", "geo": null, "id": 148838645082759170, "id_str": "148838645082759168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700925695/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700925695/image_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "RT @RacerDave23: #Racers now #22 in Associate Press & ESPN/USA Today polls.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:32 +0000", "from_user": "ryantrind", "from_user_id": 98824745, "from_user_id_str": "98824745", "from_user_name": "ryan tri INDRAwan", "geo": null, "id": 148838644411662340, "id_str": "148838644411662336", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702258820/390773_264649966922862_100001335826597_696661_569498639_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702258820/390773_264649966922862_100001335826597_696661_569498639_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Nonton VOA: di USA Banyak Dep.Store yang banting harga di hari Thanksgiving. Orang2 rebutan belanja sampe sikut2an. Iya, itu di AMERIKA loh!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:32 +0000", "from_user": "IamJoandrY", "from_user_id": 273587861, "from_user_id_str": "273587861", "from_user_name": "JoandrY OrtegA", "geo": null, "id": 148838644344553470, "id_str": "148838644344553474", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1661776421/224471_225447487499444_3656141_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661776421/224471_225447487499444_3656141_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "ADICTA USA COND\\u00D3N ;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:32 +0000", "from_user": "DeboraDetchon", "from_user_id": 434995725, "from_user_id_str": "434995725", "from_user_name": "Debora Detchon", "geo": null, "id": 148838644122267650, "id_str": "148838644122267649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "http://t.co/HUDWXzAJ Russia Newspaper BlackJack USA Technology Football", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:32 +0000", "from_user": "varusog", "from_user_id": 419765095, "from_user_id_str": "419765095", "from_user_name": "Olubayo Holtaway", "geo": null, "id": 148838642369052670, "id_str": "148838642369052672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1656999291/6_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656999291/6_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @jebykuqawa: fast cash hawaii http://t.co/OYyK76sJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:32 +0000", "from_user": "Eveliin_gyn", "from_user_id": 219800683, "from_user_id_str": "219800683", "from_user_name": "Eveliin", "geo": null, "id": 148838641798623230, "id_str": "148838641798623234", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693277576/321703_2282621628409_1334902911_32075493_1271116808_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693277576/321703_2282621628409_1334902911_32075493_1271116808_o_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ESSESGAYS: \"como vc pode gostar de tatuagem e alargador? que coisa feia\" disse a pessoa que gosta de funk usa shortinho de 5cm e tem piercing no umbigo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:30 +0000", "from_user": "dyzowusypol", "from_user_id": 419803768, "from_user_id_str": "419803768", "from_user_name": "Bryana Duchateau", "geo": null, "id": 148838636601876480, "id_str": "148838636601876480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657151541/6_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657151541/6_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @noxyvevakog: north carolina car insurance http://t.co/ASo8MaUm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:29 +0000", "from_user": "cdelmauro", "from_user_id": 415293448, "from_user_id_str": "415293448", "from_user_name": "cristian del mauro", "geo": null, "id": 148838632596320260, "id_str": "148838632596320256", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1647984485/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647984485/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Algunos lo mas cerca de USA que han estado es barrio Franklin y hablan de #cameltoe los agringados. Viva don Dioscoro y la piojera", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:29 +0000", "from_user": "AcaoPolicial", "from_user_id": 101496213, "from_user_id_str": "101496213", "from_user_name": "Homem de DEUS", "geo": null, "id": 148838629358313470, "id_str": "148838629358313472", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1534528829/anigiffff_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534528829/anigiffff_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lucitito: @RubensLemos Imuran 50 mg \\u00F1 vende em farm\\u00E1cia mas o governo do estado d\\u00E1 pela Unicat, minha irm\\u00E3 tb usa esse medicamento", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:28 +0000", "from_user": "s3yizy", "from_user_id": 84952218, "from_user_id_str": "84952218", "from_user_name": "OS\\u2122 OGO", "geo": null, "id": 148838626485207040, "id_str": "148838626485207040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668847629/368721353_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668847629/368721353_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "TAFAWA BALEWA SQUARE, CALIFORNIA RT @TWEETORACLE: The HQ of the #PORN industry in USA is ________?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:27 +0000", "from_user": "ProfessorTaxUSA", "from_user_id": 222504279, "from_user_id_str": "222504279", "from_user_name": "Professor Tax USA", "geo": null, "id": 148838620541878270, "id_str": "148838620541878272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1224274031/Twitter_Profile_Picture_Professor_Tax_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1224274031/Twitter_Profile_Picture_Professor_Tax_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Don't get stump on your sales tax let Professor Tax USA help you solve your problems.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:27 +0000", "from_user": "nai_naiian", "from_user_id": 237244169, "from_user_id_str": "237244169", "from_user_name": "isnaini Masruroh", "geo": null, "id": 148838620290232320, "id_str": "148838620290232320", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1676874333/u_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676874333/u_normal.JPG", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "RT @DamnItsTrueFact: Saat cewe bilang ga usa khawatir, lebih baik kamu khawatir tentang itu.#DamnItsTrueFact", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:26 +0000", "from_user": "samiraabdouni", "from_user_id": 116045697, "from_user_id_str": "116045697", "from_user_name": "Emily", "geo": null, "id": 148838619082264580, "id_str": "148838619082264576", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696918476/303200_223780737689219_100001718836611_615484_775520558_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696918476/303200_223780737689219_100001718836611_615484_775520558_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ESSESGAYS: \"como vc pode gostar de tatuagem e alargador? que coisa feia\" disse a pessoa que gosta de funk usa shortinho de 5cm e tem piercing no umbigo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:26 +0000", "from_user": "andoreia", "from_user_id": 99153272, "from_user_id_str": "99153272", "from_user_name": "andreea", "geo": null, "id": 148838617501024260, "id_str": "148838617501024257", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1633986160/avatar3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633986160/avatar3_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@byanka7 ca sa ne inchida si noua usa in nas?? =))))))))))))))))", "to_user": "byanka7", "to_user_id": 99332290, "to_user_id_str": "99332290", "to_user_name": "Byanka", "in_reply_to_status_id": 148838540145463300, "in_reply_to_status_id_str": "148838540145463298"} +, +{"created_at": "Mon, 19 Dec 2011 18:54:26 +0000", "from_user": "samiraabdouni", "from_user_id": 116045697, "from_user_id_str": "116045697", "from_user_name": "Emily", "geo": null, "id": 148838619082264580, "id_str": "148838619082264576", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696918476/303200_223780737689219_100001718836611_615484_775520558_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696918476/303200_223780737689219_100001718836611_615484_775520558_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ESSESGAYS: \"como vc pode gostar de tatuagem e alargador? que coisa feia\" disse a pessoa que gosta de funk usa shortinho de 5cm e tem piercing no umbigo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:26 +0000", "from_user": "andoreia", "from_user_id": 99153272, "from_user_id_str": "99153272", "from_user_name": "andreea", "geo": null, "id": 148838617501024260, "id_str": "148838617501024257", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1633986160/avatar3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633986160/avatar3_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@byanka7 ca sa ne inchida si noua usa in nas?? =))))))))))))))))", "to_user": "byanka7", "to_user_id": 99332290, "to_user_id_str": "99332290", "to_user_name": "Byanka", "in_reply_to_status_id": 148838540145463300, "in_reply_to_status_id_str": "148838540145463298"}, +{"created_at": "Mon, 19 Dec 2011 18:54:26 +0000", "from_user": "Xfilespoker", "from_user_id": 15038133, "from_user_id_str": "15038133", "from_user_name": "Tom Dwyer ", "geo": null, "id": 148838617014485000, "id_str": "148838617014484992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1598839132/218129_206450186045036_100000401691907_630491_4776751_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598839132/218129_206450186045036_100000401691907_630491_4776751_n_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "http://t.co/EJTZ0YCr Why Americans #Occupy Wall Street (Their Story, take on OWS) Send us YOUR Story today. #AMERICA #USA #Occupywallstreet", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:25 +0000", "from_user": "_Pichi", "from_user_id": 138849441, "from_user_id_str": "138849441", "from_user_name": "Julio Pichi\\u2122 Mtz.", "geo": null, "id": 148838614032322560, "id_str": "148838614032322560", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682425543/331146537_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682425543/331146537_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:24 +0000", "from_user": "MagathaThurberW", "from_user_id": 436807576, "from_user_id_str": "436807576", "from_user_name": "Magatha Thurber Wams", "geo": null, "id": 148838611226345470, "id_str": "148838611226345472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": null, "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "http://t.co/uCdWQ9rZ Beyonce Knowles Profession RAM Relationship USA Golf Friends Final Fantasy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:24 +0000", "from_user": "ArticleGurus", "from_user_id": 352172550, "from_user_id_str": "352172550", "from_user_name": "Article Gurus", "geo": null, "id": 148838608357433340, "id_str": "148838608357433345", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.articlegurus.com" rel="nofollow">Article Gurus</a>", "text": "nike kobe usa Air Jordan 13 Retro Bulls' http://t.co/O9hrEx2m #article", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:24 +0000", "from_user": "woeisgabs", "from_user_id": 82649381, "from_user_id_str": "82649381", "from_user_name": "Gabriella com 2 L", "geo": null, "id": 148838608088993800, "id_str": "148838608088993792", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1677371585/tt_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677371585/tt_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:23 +0000", "from_user": "purfect_harmony", "from_user_id": 31203350, "from_user_id_str": "31203350", "from_user_name": "Yiffy!", "geo": null, "id": 148838606096703500, "id_str": "148838606096703488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1593971949/meeeeetifff_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593971949/meeeeetifff_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Time to get closer to God for real. This world and primarily the USA is in for a rude awakening.........", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:23 +0000", "from_user": "efedRaa", "from_user_id": 266422223, "from_user_id_str": "266422223", "from_user_name": "maur\\u04D9\\u04D9n", "geo": null, "id": 148838604066664450, "id_str": "148838604066664449", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1635672265/296622_267498056603669_100000304307460_889589_1598550679_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635672265/296622_267498056603669_100000304307460_889589_1598550679_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Ederlever osea no era un lim\\u00F3n era mike wazowski.... usa tu imaginaci\\u00F3n xD", "to_user": "Ederlever", "to_user_id": 131610091, "to_user_id_str": "131610091", "to_user_name": "Eder Roman \\u2714", "in_reply_to_status_id": 148629292752961540, "in_reply_to_status_id_str": "148629292752961536"}, +{"created_at": "Mon, 19 Dec 2011 18:54:22 +0000", "from_user": "annaaa_xoxox", "from_user_id": 31546312, "from_user_id_str": "31546312", "from_user_name": "Anna (:", "geo": null, "id": 148838602376347650, "id_str": "148838602376347649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1678546406/IMAG2163_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678546406/IMAG2163_normal.jpg", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "@NarniaNeeds1D I live in SoCal maybe like an hour from San Diego. Did you watch the X Factor USA?", "to_user": "NarniaNeeds1D", "to_user_id": 379254385, "to_user_id_str": "379254385", "to_user_name": "Niall's Girl", "in_reply_to_status_id": 148837319363919870, "in_reply_to_status_id_str": "148837319363919872"}, +{"created_at": "Mon, 19 Dec 2011 18:54:22 +0000", "from_user": "iTvez", "from_user_id": 27819528, "from_user_id_str": "27819528", "from_user_name": "Emmanuel Escarcega", "geo": null, "id": 148838601529114620, "id_str": "148838601529114624", "iso_language_code": "hu", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/404788331/Onion_Head___Gif__s_by_occisioth_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/404788331/Onion_Head___Gif__s_by_occisioth_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Mi Red2 http://t.co/2gs47fHZ v\\u00EDa @iTvez", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:21 +0000", "from_user": "TheDrumLife2011", "from_user_id": 345595797, "from_user_id_str": "345595797", "from_user_name": "The Drum Life", "geo": null, "id": 148838597208977400, "id_str": "148838597208977408", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1544340630/drumlife9-15-11_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544340630/drumlife9-15-11_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Gretsch USA Custom Set...DD http://t.co/xsnxgEqx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:20 +0000", "from_user": "zschocheyklcty2", "from_user_id": 376814051, "from_user_id_str": "376814051", "from_user_name": "Zschoche Swane", "geo": null, "id": 148838594600116220, "id_str": "148838594600116224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1551651111/f_35_w_0058_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1551651111/f_35_w_0058_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@_Shannonnnxo http://t.co/Jo0FM6JU", "to_user": "_Shannonnnxo", "to_user_id": 381877335, "to_user_id_str": "381877335", "to_user_name": "Shannon", "in_reply_to_status_id": 148686115581341700, "in_reply_to_status_id_str": "148686115581341696"}, +{"created_at": "Mon, 19 Dec 2011 18:54:20 +0000", "from_user": "Fersama", "from_user_id": 46804434, "from_user_id_str": "46804434", "from_user_name": "Fernanda", "geo": null, "id": 148838593941614600, "id_str": "148838593941614592", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699600442/Avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699600442/Avatar_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:20 +0000", "from_user": "mokasvintage", "from_user_id": 433986164, "from_user_id_str": "433986164", "from_user_name": "MoKasVintageMelange", "geo": null, "id": 148838593316667400, "id_str": "148838593316667392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689489962/vaiata_combi_jaune_yellow_dress_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689489962/vaiata_combi_jaune_yellow_dress_sm_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "We are continuing the xmas spirit with FREE SHIPPING in the USA !!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:19 +0000", "from_user": "unofficialsquaw", "from_user_id": 1414901, "from_user_id_str": "1414901", "from_user_name": "unofficialsquaw", "geo": null, "id": 148838590544220160, "id_str": "148838590544220160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/858239085/HD_LOGO_Unofficial_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/858239085/HD_LOGO_Unofficial_normal.jpg", "source": "<a href="http://tweetmeme.com" rel="nofollow">TweetMeme</a>", "text": "2011\\u2019s Top 10 Green Ski Resorts in the USA. Squaw Valley = #1 http://t.co/nDt4pEjk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:19 +0000", "from_user": "zlando", "from_user_id": 37919483, "from_user_id_str": "37919483", "from_user_name": "Zvi Lando", "geo": null, "id": 148838590166745100, "id_str": "148838590166745088", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/198474678/me1a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/198474678/me1a_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@thisisKhaledM @Dima_Khatib if you do not understand the difference between NK with TheBomb and the USA with TheBomb - God forgive you!", "to_user": "thisisKhaledM", "to_user_id": 140571506, "to_user_id_str": "140571506", "to_user_name": "Khaled M", "in_reply_to_status_id": 148837089755136000, "in_reply_to_status_id_str": "148837089755136000"}, +{"created_at": "Mon, 19 Dec 2011 18:54:19 +0000", "from_user": "luchozo", "from_user_id": 55429317, "from_user_id_str": "55429317", "from_user_name": "Lucho", "geo": null, "id": 148838587054567420, "id_str": "148838587054567424", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695353413/billete_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695353413/billete_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:18 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148838583145472000, "id_str": "148838583145472001", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "ANDRES USA COND\\u00D3N,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:17 +0000", "from_user": "bikohipe", "from_user_id": 432619487, "from_user_id_str": "432619487", "from_user_name": "Achishar Bartosik", "geo": null, "id": 148838581039923200, "id_str": "148838581039923200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1683713350/83_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683713350/83_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @wuqyxev: loan officer training specialist http://t.co/tUthh2Us", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:17 +0000", "from_user": "msn_italia", "from_user_id": 16328363, "from_user_id_str": "16328363", "from_user_name": "msn_italia", "geo": null, "id": 148838580503060480, "id_str": "148838580503060480", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1398864385/Twit_MSN_italia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1398864385/Twit_MSN_italia_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Morte Kim:allerta forze Usa non cambia: Panetta, rimanere prudenti, colloquio con ministro difesa C.Sud http://t.co/VsjD32Kx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:15 +0000", "from_user": "FtLauderdaleCPN", "from_user_id": 408773212, "from_user_id_str": "408773212", "from_user_name": "Ft Lauderdale Coupon", "geo": null, "id": 148838573418881020, "id_str": "148838573418881024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Kristen groupon is 50% but this is the magic formula to get 90% http://t.co/52lZPMT6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:14 +0000", "from_user": "_Adicta", "from_user_id": 123965194, "from_user_id_str": "123965194", "from_user_name": "La que hace spam.", "geo": null, "id": 148838569782419460, "id_str": "148838569782419456", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "JESSICA USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:14 +0000", "from_user": "MommaKatyCats", "from_user_id": 417997381, "from_user_id_str": "417997381", "from_user_name": "\\u24D8 \\u24DB\\u24DE\\u24E5\\u24D4 \\u24DA\\u24D0\\u24E3\\u24E8 \\u261E\\uE32D\\u261C", "geo": null, "id": 148838568859680770, "id_str": "148838568859680768", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1659375301/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659375301/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@_queenkaty @_thafrancelino huasus.. Eh uma pessoa que usa roupa curta, mostra o corpo, tipo: mostra a vagina no show q nem a gaga fez", "to_user": "_queenkaty", "to_user_id": 395980334, "to_user_id_str": "395980334", "to_user_name": "kitten of Katy =^.^=", "in_reply_to_status_id": 148837446342295550, "in_reply_to_status_id_str": "148837446342295552"}, +{"created_at": "Mon, 19 Dec 2011 18:54:14 +0000", "from_user": "Mashnasty", "from_user_id": 229874748, "from_user_id_str": "229874748", "from_user_name": "Mash ", "geo": null, "id": 148838567043538940, "id_str": "148838567043538944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693457598/profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693457598/profile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Previs: Killed Osama, Ended war in Iraq, Passed comprehensive health care, Ended Don't Ask Don't tell, Saved USA Auto Industry #WhatObamaHasDone", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:14 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148838566695407600, "id_str": "148838566695407616", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "ALE USA COND\\u00D3N,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:14 +0000", "from_user": "onebillioncrime", "from_user_id": 36982750, "from_user_id_str": "36982750", "from_user_name": "Billion Dollar Crime", "geo": null, "id": 148838566036897800, "id_str": "148838566036897792", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1132469027/American_Flag_And_Bald_Eagle_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1132469027/American_Flag_And_Bald_Eagle_normal.jpg", "source": "<a href="http://splitweet.com" rel="nofollow">Splitweet</a>", "text": "#Los #Angeles Biggest Fraud Scandal #Coutts #Bank HSBC USA $1,OOO,OOO,OOO, #Bahamas #Gibraltar Fraud Case http://t.co/Ax7zyTne", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:14 +0000", "from_user": "BillionDollarID", "from_user_id": 322038356, "from_user_id_str": "322038356", "from_user_name": "Maryland Trust", "geo": null, "id": 148838565894295550, "id_str": "148838565894295552", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1407946128/55_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1407946128/55_normal.jpg", "source": "<a href="http://splitweet.com" rel="nofollow">Splitweet</a>", "text": "#Los #Angeles Biggest Fraud Scandal #Coutts #Bank HSBC USA $1,OOO,OOO,OOO, #Bahamas #Gibraltar Fraud Case http://t.co/iLkyUMTT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:13 +0000", "from_user": "elsyvholm", "from_user_id": 305876874, "from_user_id_str": "305876874", "from_user_name": "elsy holm", "geo": null, "id": 148838564770234370, "id_str": "148838564770234368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662634386/King_Bedroom_Furniture_Sets_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662634386/King_Bedroom_Furniture_Sets_normal.jpg", "source": "<a href="http://kingbedroomfurnituresetssale.com" rel="nofollow">King Bedroom Furniture Sets2</a>", "text": "-> Full Size - Low Mission Platform Bed Frame - Made in USA - Solid Oak - Dark Danish Oil reduced price http://solidoakbedroomset.kingbedro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:13 +0000", "from_user": "betweenthegray", "from_user_id": 126435313, "from_user_id_str": "126435313", "from_user_name": "Andressa Dyias", "geo": null, "id": 148838564740861950, "id_str": "148838564740861954", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1617685768/fat_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1617685768/fat_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:13 +0000", "from_user": "CommerceGov", "from_user_id": 110541296, "from_user_id_str": "110541296", "from_user_name": "U.S. Commerce Dept.", "geo": null, "id": 148838563511934980, "id_str": "148838563511934977", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/677362045/doc_logo_halfinch_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/677362045/doc_logo_halfinch_normal.gif", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": ".@BEA_Data says that 15 trillion, 1.9 trillion, 2.3% and 15.6% are their four Big Numbers for 2011. Any guesses why? http://t.co/PZsIvoHL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:13 +0000", "from_user": "StartWorkNow", "from_user_id": 336548162, "from_user_id_str": "336548162", "from_user_name": "Freelance Jobs", "geo": null, "id": 148838561725157380, "id_str": "148838561725157376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1445380382/programmer_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1445380382/programmer_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Locksmith Data Base 2: I loking for data base (email and tel) for locksmiths store in the USA .for 2011 http://t.co/nzaJsXnL #work #jobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:12 +0000", "from_user": "_disparate", "from_user_id": 285167214, "from_user_id_str": "285167214", "from_user_name": "Untitled.", "geo": null, "id": 148838561343475700, "id_str": "148838561343475712", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695172092/Gr_fico1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695172092/Gr_fico1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @_Adicta: DISPARATE USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:12 +0000", "from_user": "TopTenReligion", "from_user_id": 291714278, "from_user_id_str": "291714278", "from_user_name": "Richard Floyd", "geo": null, "id": 148838560257146880, "id_str": "148838560257146881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1335697995/top-ten-movers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335697995/top-ten-movers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #3000 30 Scripture Readings for Christmas (Year Long Bible Reading Series) $2.99: This book arranges ... http://t.co/lZFkhxHe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:12 +0000", "from_user": "TopTenReligion", "from_user_id": 291714278, "from_user_id_str": "291714278", "from_user_name": "Richard Floyd", "geo": null, "id": 148838558684291070, "id_str": "148838558684291072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1335697995/top-ten-movers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335697995/top-ten-movers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #190407 THE PICTURE OF DORIAN GRAY (Annotated) $9.99: Oscar Wilde This unique version of also include... http://t.co/ue187uZc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:12 +0000", "from_user": "TopTenReligion", "from_user_id": 291714278, "from_user_id_str": "291714278", "from_user_name": "Richard Floyd", "geo": null, "id": 148838557337911300, "id_str": "148838557337911296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1335697995/top-ten-movers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335697995/top-ten-movers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #276616 Ignatius Critical Edition: Mansfield Park $14.95: Jane Austen In all things, Jane Austen was ... http://t.co/LQ50DLD7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:11 +0000", "from_user": "TopTenReligion", "from_user_id": 291714278, "from_user_id_str": "291714278", "from_user_name": "Richard Floyd", "geo": null, "id": 148838556243206140, "id_str": "148838556243206144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1335697995/top-ten-movers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335697995/top-ten-movers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #1418 A CHRISTMAS CAROL (ILLUSTRATED with Special Kindle Format) $0.99: CHARLES DICKENS Christmas' Favorite! http://t.co/Uz0YuBGS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:11 +0000", "from_user": "TopTenReligion", "from_user_id": 291714278, "from_user_id_str": "291714278", "from_user_name": "Richard Floyd", "geo": null, "id": 148838554569682940, "id_str": "148838554569682944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1335697995/top-ten-movers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1335697995/top-ten-movers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #1133 Afton of Margate Castle (The Theyn Chronicles) $0.99: Angela Hunt Beautiful, headstrong Afton i... http://t.co/KmZFPPhC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:10 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148838552380260350, "id_str": "148838552380260352", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "GENESIS USA COND\\u00D3N,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:11 +0000", "from_user": "alanhsmith", "from_user_id": 52978468, "from_user_id_str": "52978468", "from_user_name": "Alan Smith \\uF8FF", "geo": null, "id": 148838551734321150, "id_str": "148838551734321152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1616149645/New_Profile_Pic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616149645/New_Profile_Pic_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">Camera on iOS</a>", "text": "Received my free @SmileSoftware mug all the way from USA to NZ yesterday! Coffee-filled today! Thanks @SmileSoftware http://t.co/TRC9L73m", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:10 +0000", "from_user": "hbsbucks", "from_user_id": 255281218, "from_user_id_str": "255281218", "from_user_name": "hbsbucks", "geo": null, "id": 148838551361040400, "id_str": "148838551361040384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1250136504/Diamond_Heart_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1250136504/Diamond_Heart_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Multaq (dronedarone): Drug Safety Communication - Increased Risk of Death or Serious Cardiovascular Events: UPDA... http://t.co/5YlX5zWx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:09 +0000", "from_user": "maxlibris", "from_user_id": 14334835, "from_user_id_str": "14334835", "from_user_name": "Max Anderson", "geo": null, "id": 148838548483743740, "id_str": "148838548483743745", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1562418087/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1562418087/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@NLM_SIS: #NLM #PeopleLocator: post or search lost &found persons: at http://t.co/G8Q9I7cz For my mobile classes, this is ReUnite", "to_user": "NLM_SIS", "to_user_id": 44970026, "to_user_id_str": "44970026", "to_user_name": "NLM SIS"}, +{"created_at": "Mon, 19 Dec 2011 18:54:09 +0000", "from_user": "MoversKitchen", "from_user_id": 289992014, "from_user_id_str": "289992014", "from_user_name": "Richard Floyd", "geo": null, "id": 148838544742428670, "id_str": "148838544742428674", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1331825498/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1331825498/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #8: Bodum Bistro Double-Wall Insulated Glass Mug, 10-Ounce, Set of 2: Bodum Bistro Double-Wall Insula... http://t.co/HUg3nHXk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:08 +0000", "from_user": "georgiarichter1", "from_user_id": 338805228, "from_user_id_str": "338805228", "from_user_name": "georgia richter", "geo": null, "id": 148838542934687740, "id_str": "148838542934687744", "iso_language_code": "fi", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1452628710/PQAAAMSanFosWRmilEq2fmOz0xKXNPrDlSmtrV6A2w2fZqnWSENXzuRpbuzSsp8aS72eSbd_k6ZNKswcLOrMDnqYKuEAm1T1UEaoJ5D1naWhK7ZQmoSYrbXR7St7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1452628710/PQAAAMSanFosWRmilEq2fmOz0xKXNPrDlSmtrV6A2w2fZqnWSENXzuRpbuzSsp8aS72eSbd_k6ZNKswcLOrMDnqYKuEAm1T1UEaoJ5D1naWhK7ZQmoSYrbXR7St7_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "kaka ja sei toda a roupa q vou usa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:08 +0000", "from_user": "_Adicta", "from_user_id": 123965194, "from_user_id_str": "123965194", "from_user_name": "La que hace spam.", "geo": null, "id": 148838542313918460, "id_str": "148838542313918464", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "LADY USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:08 +0000", "from_user": "hovulysery", "from_user_id": 432818368, "from_user_id_str": "432818368", "from_user_name": "Jonas Firpi", "geo": null, "id": 148838541156286460, "id_str": "148838541156286464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683859546/1450_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683859546/1450_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @mohanozi: auto insurance broker calgary http://t.co/S8YGGk8b", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:07 +0000", "from_user": "danailos", "from_user_id": 199088181, "from_user_id_str": "199088181", "from_user_name": "Danilo Noboru", "geo": null, "id": 148838539042365440, "id_str": "148838539042365440", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1639646625/mini_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639646625/mini_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "s\\u00F3 a @paulaccarvalho que usa esse formspring man UHAUEHUEH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:07 +0000", "from_user": "WhistlingBullet", "from_user_id": 143959357, "from_user_id_str": "143959357", "from_user_name": "AJ", "geo": null, "id": 148838536794222600, "id_str": "148838536794222594", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686766571/klsc7tG5_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686766571/klsc7tG5_normal", "source": "<a href="http://ubersocial.com" rel="nofollow">UberSocial for Android</a>", "text": "Unlabeled milk from cows treated with b - PubMed Mobile http://t.co/ckbGLe6g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:05 +0000", "from_user": "lasvegas_escort", "from_user_id": 83902300, "from_user_id_str": "83902300", "from_user_name": "Las Vegas Escorts", "geo": null, "id": 148838531190632450, "id_str": "148838531190632448", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/481813781/twitter_icon_15_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/481813781/twitter_icon_15_normal.jpg", "source": "<a href="http://tinyurl.com/5qva38" rel="nofollow">Las Vegas Escorts</a>", "text": "http://t.co/fCclrVk7 Las Vegas Adult Classified ad: Beautiful Piece Brunette Lovergirl.. - w4m - 45", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:05 +0000", "from_user": "BetKenfield0503", "from_user_id": 441098385, "from_user_id_str": "441098385", "from_user_name": "Bet Kenfield", "geo": null, "id": 148838530746032130, "id_str": "148838530746032129", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "http://t.co/zyqSlvjf Credit Card Hospital Fishing Vitamin The West Wing Tennis USA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:04 +0000", "from_user": "MICHAELGGRIST", "from_user_id": 155543197, "from_user_id_str": "155543197", "from_user_name": "MICHAEL G GRIST", "geo": null, "id": 148838527700963330, "id_str": "148838527700963328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1361097206/MIKE_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1361097206/MIKE_normal.jpeg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Sign Petition @change: Petland USA: Stop Selling Pets - Fire Puppy Mills - Petland Canada Has! http://t.co/Z9GZc6Ox", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:04 +0000", "from_user": "TammyAllgood", "from_user_id": 74211104, "from_user_id_str": "74211104", "from_user_name": "Tammy Allgood", "geo": null, "id": 148838527549980670, "id_str": "148838527549980672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "I entered to #win Royal Garden Tee from @allusaclothing and so can you. @madeonlyinusa http://t.co/Ee0BaGVi http://t.co/PfQuuIy7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:03 +0000", "from_user": "_Adicta", "from_user_id": 123965194, "from_user_id_str": "123965194", "from_user_name": "La que hace spam.", "geo": null, "id": 148838523666055170, "id_str": "148838523666055168", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "LUIS USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:03 +0000", "from_user": "JonathanJesusR", "from_user_id": 61281757, "from_user_id_str": "61281757", "from_user_name": "\\u265B Jonathan Reinoza ", "geo": null, "id": 148838521946390530, "id_str": "148838521946390529", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1648568870/330112859_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648568870/330112859_normal.jpg", "source": "<a href="http://www.botize.com" rel="nofollow">Botize</a>", "text": "URY: Se usa principalmente en el tratamiento de afecciones del ri\\u00F1\\u00F3n y del h\\u00EDgado. Mantiene el equilibrio entre el sodio y el potasio. #NSP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:03 +0000", "from_user": "thiagobaldaia", "from_user_id": 96665646, "from_user_id_str": "96665646", "from_user_name": "Thiago Pasquini", "geo": null, "id": 148838520398675970, "id_str": "148838520398675968", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680117065/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680117065/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@danielbianchin2 troxa do krlho tira essa foto do perfil que voce nao merece usa seu merda xingandono palmeiras nos tweets antigos fdp", "to_user": "danielbianchin2", "to_user_id": 372050856, "to_user_id_str": "372050856", "to_user_name": "daniel bianchini"}, +{"created_at": "Mon, 19 Dec 2011 18:54:02 +0000", "from_user": "JustinMyLovesz", "from_user_id": 211329504, "from_user_id_str": "211329504", "from_user_name": "Diva do Bieber \\u2665", "geo": null, "id": 148838518444142600, "id_str": "148838518444142593", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1625705437/41b51394028611e1a87612313804ec91_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1625705437/41b51394028611e1a87612313804ec91_7_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Me pergunte qualquer coisa. - \\u203A 1. Altura? 2. Peso? 3. Voc\\u00EA fuma? 4. Voc\\u00EA bebe? 5. Usa/j\\u00E1 usou drogas? 6.... http://t.co/IcSWWikO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:02 +0000", "from_user": "Raipurindia", "from_user_id": 235585862, "from_user_id_str": "235585862", "from_user_name": "Rajani kanta sahu", "geo": null, "id": 148838518263791600, "id_str": "148838518263791616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1482832350/Bula1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1482832350/Bula1_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Virtu USA 32\" Seville Single Bathroom Vanity, Black: Contact us after purchasing to choose your type of stone co... http://t.co/fElcUnA8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:02 +0000", "from_user": "itsvickieee", "from_user_id": 101253298, "from_user_id_str": "101253298", "from_user_name": "Victoria", "geo": null, "id": 148838515801735170, "id_str": "148838515801735168", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696570075/teukkie___normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696570075/teukkie___normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/N1LzAqOS costay.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:01 +0000", "from_user": "musicastrada", "from_user_id": 106701166, "from_user_id_str": "106701166", "from_user_name": "musicastrada", "geo": null, "id": 148838515063525380, "id_str": "148838515063525376", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/758499850/chitarratrasp_quadrata_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/758499850/chitarratrasp_quadrata_normal.png", "source": "<a href="http://www.wibiya.com/?ref=twitter" rel="nofollow">Wibiya Bar</a>", "text": "Stasera ore 21.30 concerto GOSPEL con Kathy Taylor al Teatro Era di Pontedera- http://t.co/lVMCqJKt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:01 +0000", "from_user": "aHotTub", "from_user_id": 91662953, "from_user_id_str": "91662953", "from_user_name": "Lucas Barbosa", "geo": null, "id": 148838512140091400, "id_str": "148838512140091392", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1546083502/P1000097_modified_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546083502/P1000097_modified_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Dia 21 a @ItsMelanieAmaro vai ganhar o The X Factor USA!!!!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:00 +0000", "from_user": "USAFieldHockey", "from_user_id": 22518192, "from_user_id_str": "22518192", "from_user_name": "USA Field Hockey", "geo": null, "id": 148838510894387200, "id_str": "148838510894387200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1587059608/USAfield_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587059608/USAfield_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Executive Director Steve Locke was at the final match of the Great Britain vs Team USA in Chula Vista yesterday... http://t.co/8HNLjdX4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:00 +0000", "from_user": "ABOGALLARDO", "from_user_id": 132284244, "from_user_id_str": "132284244", "from_user_name": "Delfino Gallardo \\u2122", "geo": null, "id": 148838510563033100, "id_str": "148838510563033088", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1124128160/DELFINO_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1124128160/DELFINO_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @laprimeradepue: Facebook se usa m\\u00E1s desde Android que desde los iPhone http://t.co/4jq0A2Wl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:00 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148838509325717500, "id_str": "148838509325717504", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "HOMOSEXUAL USA COND\\u00D3N,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:00 +0000", "from_user": "TH3AW3SOME1", "from_user_id": 249084850, "from_user_id_str": "249084850", "from_user_name": "Full Time Unicorn :3", "geo": null, "id": 148838507442475000, "id_str": "148838507442475008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694782146/m2rg6hvX_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694782146/m2rg6hvX_normal", "source": "<a href="http://gladlyCast.com" rel="nofollow">gladlyCast SMS</a>", "text": "#NowPlaying party in the usa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:00 +0000", "from_user": "Hillaryvos", "from_user_id": 431696309, "from_user_id_str": "431696309", "from_user_name": "Hillary Hohlt", "geo": null, "id": 148838507316650000, "id_str": "148838507316649984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681023138/j0mfhe55xv_126840324-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681023138/j0mfhe55xv_126840324-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Fender Blues Deluxe/Deville Recap Kit (for USA Amps): Improve the tone and reliability of your Fender Blues DeVi... http://t.co/86BEuKct", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:00 +0000", "from_user": "hana_usa", "from_user_id": 61953343, "from_user_id_str": "61953343", "from_user_name": "\\u3046\\u3055", "geo": null, "id": 148838506972725250, "id_str": "148838506972725248", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669851229/usa_icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669851229/usa_icon_normal.jpg", "source": "<a href="http://twittbot.net/" rel="nofollow">twittbot.net</a>", "text": "\\u3010\\u5B9A\\u671F\\u30DD\\u30B9\\u30C8\\u3011avex trax\\u304B\\u3089\\u30EA\\u30EA\\u30FC\\u30B9\\u3055\\u308C\\u307E\\u3057\\u305F\\u30BD\\u30ED\\u30A2\\u30EB\\u30D0\\u30E0\\u300ELINK/RING\\u300F\\u767A\\u58F2\\u4E2D\\u3067\\u3059\\uFF01\\u3088\\u308D\\u3057\\u304F\\u304A\\u9858\\u3044\\u3044\\u305F\\u3057\\u307E\\u3059(\\u00B4\\u2200\\uFF40*) http://t.co/KWV0gzzy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:59 +0000", "from_user": "5emeVitesse", "from_user_id": 222897611, "from_user_id_str": "222897611", "from_user_name": "Cinquiemevitesse", "geo": null, "id": 148838506213539840, "id_str": "148838506213539840", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1184087012/journaliste291008a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1184087012/journaliste291008a_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Usa : Obama signe la loi sur la d\\u00E9tention ind\\u00E9finie et la torture http://t.co/9Wr5L0Cb via @AddThis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:59 +0000", "from_user": "zabolostky", "from_user_id": 40025069, "from_user_id_str": "40025069", "from_user_name": "Gabriel Zabolostky", "geo": null, "id": 148838505429205000, "id_str": "148838505429204992", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685947926/DSC02226_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685947926/DSC02226_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "ziper se usa na roupa e n\\u00E3o na orelha #dica", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:58 +0000", "from_user": "VeejayCostello", "from_user_id": 145933508, "from_user_id_str": "145933508", "from_user_name": "Veejay Costello", "geo": null, "id": 148838499431354370, "id_str": "148838499431354368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1258456739/Profile_in_Scotland_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1258456739/Profile_in_Scotland_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @insidethehall: Indiana is No. 18 in the latest USA Today/ESPN Coaches Top 25 Poll. #iubb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:57 +0000", "from_user": "Deuceyv", "from_user_id": 235787119, "from_user_id_str": "235787119", "from_user_name": "\\uE30AVickie\\u00AE", "geo": null, "id": 148838497606832130, "id_str": "148838497606832128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1633664704/profileImage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633664704/profileImage_normal.jpg", "source": "<a href="http://www.snsanalytics.com" rel="nofollow">SNS Analytics</a>", "text": "RT @FinanceYourself: Interest rate cuts irk online banking customers http://t.co/RSTJZa1p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:57 +0000", "from_user": "rezaitalia23", "from_user_id": 272158567, "from_user_id_str": "272158567", "from_user_name": "reza", "geo": null, "id": 148838495815864320, "id_str": "148838495815864320", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687757031/luogo_reza_finanza_picolo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687757031/luogo_reza_finanza_picolo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "finalmente si vede la luce\\nnei usa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:57 +0000", "from_user": "dejexife", "from_user_id": 434012000, "from_user_id_str": "434012000", "from_user_name": "Urjashri Battle", "geo": null, "id": 148838495635505150, "id_str": "148838495635505152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688131325/1609_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688131325/1609_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "desjardins auto insurance toronto contact http://t.co/dunKnBpd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:57 +0000", "from_user": "_Adicta", "from_user_id": 123965194, "from_user_id_str": "123965194", "from_user_name": "La que hace spam.", "geo": null, "id": 148838495069286400, "id_str": "148838495069286401", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "EDWIN USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:56 +0000", "from_user": "maykq", "from_user_id": 368907864, "from_user_id_str": "368907864", "from_user_name": "maykol", "geo": null, "id": 148838491919368200, "id_str": "148838491919368192", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1658023631/PB2501061_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658023631/PB2501061_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@larebenav1dez pq n deixa o well usa os 14mm? u-u", "to_user": "larebenav1dez", "to_user_id": 276332384, "to_user_id_str": "276332384", "to_user_name": "Lare B", "in_reply_to_status_id": 148835979824865280, "in_reply_to_status_id_str": "148835979824865281"}, +{"created_at": "Mon, 19 Dec 2011 18:53:55 +0000", "from_user": "VirtuallyPLB", "from_user_id": 339713020, "from_user_id_str": "339713020", "from_user_name": "Pierre-Louis Brunet", "geo": null, "id": 148838487922196480, "id_str": "148838487922196480", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702213115/AgX2Du8CMAAQWvC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702213115/AgX2Du8CMAAQWvC_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Bon__a__Savoir: Il y a 85 hommes nomm\\u00E9s Homer Simpson aux USA.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:54 +0000", "from_user": "Luis_Haxel", "from_user_id": 252124548, "from_user_id_str": "252124548", "from_user_name": "Luis Haxel", "geo": null, "id": 148838482536710140, "id_str": "148838482536710145", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1654037127/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654037127/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @PeterSpanish82: Conclusiones intervenci\\u00F3n de Cayo Lara: la culpa es de Aznar, de Rajoy, del PP, del Neoliberalismo, del BCE, de USA, de la guerra de Irak", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:53 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148838481488125950, "id_str": "148838481488125952", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "LESBICA USA COND\\u00D3N,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:53 +0000", "from_user": "Borseit", "from_user_id": 166166050, "from_user_id_str": "166166050", "from_user_name": "Borse.it", "geo": null, "id": 148838479818792960, "id_str": "148838479818792960", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1076279515/Appunti0155_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1076279515/Appunti0155_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Usa: collocati titoli a 2 anni, bid-to-cover in calo a 3,45 http://t.co/epXMvfg3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:52 +0000", "from_user": "magonczoroski", "from_user_id": 215458081, "from_user_id_str": "215458081", "from_user_name": "Maura Gonczoroski", "geo": null, "id": 148838474684960770, "id_str": "148838474684960770", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1169458905/OgAAALqUVwK_bMJiO6X8ul1VZ7Tjn4Ha9bnhhKbRFPeAJkuD3p6HbUQIzrCzZfewTX2Fe2eGPPR0AKSeu0x4YG8N4PsAm1T1UANfZOvqU-40NIwL7tS-o34kLdrs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1169458905/OgAAALqUVwK_bMJiO6X8ul1VZ7Tjn4Ha9bnhhKbRFPeAJkuD3p6HbUQIzrCzZfewTX2Fe2eGPPR0AKSeu0x4YG8N4PsAm1T1UANfZOvqU-40NIwL7tS-o34kLdrs_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @lucasfresno: E tu, que usa camiseta da @fresnorock e t\\u00E1 nem a\\u00ED, que vai aos shows, que FAZ O CORRE, saiba que ceis s\\u00E3o tudo UNS LHIND\\u00C3O.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:52 +0000", "from_user": "kudefopesux", "from_user_id": 433958369, "from_user_id_str": "433958369", "from_user_name": "Kajal Defraine", "geo": null, "id": 148838473799974900, "id_str": "148838473799974912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687659968/608_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687659968/608_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "loan administration consultants http://t.co/Sp1i1ny2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:51 +0000", "from_user": "_Adicta", "from_user_id": 123965194, "from_user_id_str": "123965194", "from_user_name": "La que hace spam.", "geo": null, "id": 148838469798608900, "id_str": "148838469798608896", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "JESUS USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:50 +0000", "from_user": "mahmoudfawzi88", "from_user_id": 210575980, "from_user_id_str": "210575980", "from_user_name": "mahmoud fawzi", "geo": null, "id": 148838467806306300, "id_str": "148838467806306304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1657974318/23570_1359471834108_1450892095_957685_1599495_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657974318/23570_1359471834108_1450892095_957685_1599495_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@samcaplat most of the competitions are for USA residents .. there are so many countries in the world \\nand they also know what android is", "to_user": "samcaplat", "to_user_id": 16822089, "to_user_id_str": "16822089", "to_user_name": "Sam Caplat"}, +{"created_at": "Mon, 19 Dec 2011 18:53:50 +0000", "from_user": "clare_sparkle", "from_user_id": 401608888, "from_user_id_str": "401608888", "from_user_name": "clare", "geo": null, "id": 148838465700769800, "id_str": "148838465700769793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1655830102/2011-11-01_15.21.28_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655830102/2011-11-01_15.21.28_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@mcshanectcub4 Hi How are you? Which part of the USA are you in?", "to_user": "mcshanectcub4", "to_user_id": 372439251, "to_user_id_str": "372439251", "to_user_name": "Mcshane Simpson", "in_reply_to_status_id": 148837366444994560, "in_reply_to_status_id_str": "148837366444994560"}, +{"created_at": "Mon, 19 Dec 2011 18:53:49 +0000", "from_user": "MAtoFreshDR", "from_user_id": 64929610, "from_user_id_str": "64929610", "from_user_name": "DAniiel Viiciioso", "geo": null, "id": 148838464467644400, "id_str": "148838464467644416", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1277708521/hector_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1277708521/hector_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@RubeElegante ESTUPIIIIDo !!! Tabamos Hablando Y TE Dije . K Tu Me conoce .. hahaha Deja Tu De Usa ESo", "to_user": "RubeElegante", "to_user_id": 325209797, "to_user_id_str": "325209797", "to_user_name": "Ruben Tejada C. ", "in_reply_to_status_id": 148838025156231170, "in_reply_to_status_id_str": "148838025156231168"}, +{"created_at": "Mon, 19 Dec 2011 18:53:49 +0000", "from_user": "Alexandercuw", "from_user_id": 431679136, "from_user_id_str": "431679136", "from_user_name": "Alexander Stobierski", "geo": null, "id": 148838463112871940, "id_str": "148838463112871936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680999292/large__569_Shopped_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680999292/large__569_Shopped_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "USA and Canada Regional add-on Pack for Microsoft Train Simulator: Travel the rails up and down North America in... http://t.co/CcKmWU1N", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:49 +0000", "from_user": "antigirassol", "from_user_id": 435242702, "from_user_id_str": "435242702", "from_user_name": "guerreiroantigirasso", "geo": null, "id": 148838461674225660, "id_str": "148838461674225664", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@depmanoeljunior como a URSS e os USA esqueceram as diferen\\u00E7as para lutar contra Hitler...", "to_user": "depmanoeljunior", "to_user_id": 163060933, "to_user_id_str": "163060933", "to_user_name": "Manoel Junior"}, +{"created_at": "Mon, 19 Dec 2011 18:53:47 +0000", "from_user": "Supermomo76", "from_user_id": 53529050, "from_user_id_str": "53529050", "from_user_name": "Moath ALManayes", "geo": null, "id": 148838456259387400, "id_str": "148838456259387392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1650505739/Superm1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650505739/Superm1_normal.png", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Hillary Clinton is my least favorite person in the United States #polite #usa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:45 +0000", "from_user": "mattputvinski", "from_user_id": 19396354, "from_user_id_str": "19396354", "from_user_name": "Matt Putvinski", "geo": null, "id": 148838447992406000, "id_str": "148838447992406017", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/80721594/putvinski_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/80721594/putvinski_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "FDIC Insights: Mobile Banking http://t.co/JYAC295W 25% of bank apps fail with account info on device #in", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:45 +0000", "from_user": "Jizzle_Ex", "from_user_id": 49620898, "from_user_id_str": "49620898", "from_user_name": "DJ Jizzle\\u2122", "geo": null, "id": 148838447703015420, "id_str": "148838447703015424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1656090959/DL_New__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656090959/DL_New__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Alaba..:| RT @TWEETORACLE The HQ of the #PORN industry in USA is ________?", "to_user": "TWEETORACLE", "to_user_id": 124971652, "to_user_id_str": "124971652", "to_user_name": "AURACOOL\\u2122", "in_reply_to_status_id": 148838247873773570, "in_reply_to_status_id_str": "148838247873773570"}, +{"created_at": "Mon, 19 Dec 2011 18:53:45 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148838447648481280, "id_str": "148838447648481280", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "YUBIRITSAIDA USA COND\\u00D3N,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:44 +0000", "from_user": "_Adicta", "from_user_id": 123965194, "from_user_id_str": "123965194", "from_user_name": "La que hace spam.", "geo": null, "id": 148838442049093630, "id_str": "148838442049093632", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "DISPARATE USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:43 +0000", "from_user": "ShopNaturesWay", "from_user_id": 389138657, "from_user_id_str": "389138657", "from_user_name": "ShopNaturesWay", "geo": null, "id": 148838439394086900, "id_str": "148838439394086913", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1583965706/image_for_twitter_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583965706/image_for_twitter_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Our products are green, cost effective and made in the USA. For more info http://t.co/pjxPV2hD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:42 +0000", "from_user": "anagornik", "from_user_id": 240025162, "from_user_id_str": "240025162", "from_user_name": "Ann", "geo": null, "id": 148838435623407600, "id_str": "148838435623407617", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1647646418/19717009_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647646418/19717009_normal.png", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:42 +0000", "from_user": "didacasa", "from_user_id": 255578052, "from_user_id_str": "255578052", "from_user_name": "Rajae ", "geo": null, "id": 148838433924722700, "id_str": "148838433924722688", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1648723941/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648723941/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Meurseault @houdac ce q je voulais dire c q votre d\\u00E9bat se pose aussi aux USA sur sondages d'opinions etc modalit\\u00E9s ...", "to_user": "Meurseault", "to_user_id": 138034042, "to_user_id_str": "138034042", "to_user_name": "L'Etranger", "in_reply_to_status_id": 148836762775588860, "in_reply_to_status_id_str": "148836762775588865"}, +{"created_at": "Mon, 19 Dec 2011 18:53:42 +0000", "from_user": "LocalGuysMover", "from_user_id": 101902292, "from_user_id_str": "101902292", "from_user_name": "Bruce Hensley MOVER", "geo": null, "id": 148838433845030900, "id_str": "148838433845030912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1647019656/318646_274821735873987_100000384872621_932606_1762691306_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647019656/318646_274821735873987_100000384872621_932606_1762691306_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#WNC ASHEVILLE HENDERSONVILLE #FOLLOW Tresa\\n@1972irishgem USA\\nLover of nature, animals, music, movies, books,", "to_user": "1972irishgem", "to_user_id": 370375201, "to_user_id_str": "370375201", "to_user_name": "Tresa"}, +{"created_at": "Mon, 19 Dec 2011 18:53:42 +0000", "from_user": "KaryGomesFF", "from_user_id": 261493957, "from_user_id_str": "261493957", "from_user_name": "Karyne Gomes", "geo": null, "id": 148838433312350200, "id_str": "148838433312350208", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685864821/SAM_0535_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685864821/SAM_0535_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Ainda tem gente que usa forms? q", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:42 +0000", "from_user": "Tickets_2012", "from_user_id": 288206633, "from_user_id_str": "288206633", "from_user_name": "Craig Jones", "geo": null, "id": 148838432960024580, "id_str": "148838432960024577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1326229934/avatarGIF_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1326229934/avatarGIF_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "COLLECTIVE BRANDS INC. : Team Sperry Athletes Qualify For London Olympics 2012: LEXINGTON, MA, USA (December 19,... http://t.co/pKzrfxh1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:42 +0000", "from_user": "rafagnb", "from_user_id": 233312766, "from_user_id_str": "233312766", "from_user_name": "rafinha ecko", "geo": null, "id": 148838432045674500, "id_str": "148838432045674496", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697712723/rafinha_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697712723/rafinha_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @LeonardoPedran: \"Imposs\\u00EDvel \\u00E9 uma palavra muito grande que gente pequena usa pra tentar te oprimir\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:41 +0000", "from_user": "pobyvicufe", "from_user_id": 433917575, "from_user_id_str": "433917575", "from_user_name": "Sumayya Leeds", "geo": null, "id": 148838428241428480, "id_str": "148838428241428480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687113553/73_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687113553/73_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "car insurance victoria cheapest http://t.co/0vTmIqVY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:40 +0000", "from_user": "ESSESGAYS", "from_user_id": 365010897, "from_user_id_str": "365010897", "from_user_name": "ESSES GAYS", "geo": null, "id": 148838427025088500, "id_str": "148838427025088513", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657383118/esponja-11_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657383118/esponja-11_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"como vc pode gostar de tatuagem e alargador? que coisa feia\" disse a pessoa que gosta de funk usa shortinho de 5cm e tem piercing no umbigo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:53:41 +0000", "from_user": "pobyvicufe", "from_user_id": 433917575, "from_user_id_str": "433917575", "from_user_name": "Sumayya Leeds", "geo": null, "id": 148838428241428480, "id_str": "148838428241428480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687113553/73_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687113553/73_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "car insurance victoria cheapest http://t.co/0vTmIqVY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:40 +0000", "from_user": "ESSESGAYS", "from_user_id": 365010897, "from_user_id_str": "365010897", "from_user_name": "ESSES GAYS", "geo": null, "id": 148838427025088500, "id_str": "148838427025088513", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657383118/esponja-11_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657383118/esponja-11_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"como vc pode gostar de tatuagem e alargador? que coisa feia\" disse a pessoa que gosta de funk usa shortinho de 5cm e tem piercing no umbigo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:40 +0000", "from_user": "libertyladyusa", "from_user_id": 212302405, "from_user_id_str": "212302405", "from_user_name": "~~ Lady Liberty ~~", "geo": null, "id": 148838426966376450, "id_str": "148838426966376448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699502631/santa_girl_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699502631/santa_girl_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#4EVER #USA ~ @hipEchik ~ #MilitaryMonday :)", "to_user": "hipEchik", "to_user_id": 22643800, "to_user_id_str": "22643800", "to_user_name": "Teri Peters", "in_reply_to_status_id": 148838009821859840, "in_reply_to_status_id_str": "148838009821859841"}, +{"created_at": "Mon, 19 Dec 2011 18:53:40 +0000", "from_user": "tiagogolves", "from_user_id": 15599984, "from_user_id_str": "15599984", "from_user_name": "Tiago Golves", "geo": null, "id": 148838424953106430, "id_str": "148838424953106433", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681151855/Avatar_TWT_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681151855/Avatar_TWT_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@msuconic olha q bem cotada, ahazou... bom trabalho usa casaco de pele esta noite kkkkkkkkkkk", "to_user": "msuconic", "to_user_id": 43928397, "to_user_id_str": "43928397", "to_user_name": "Maria Eug\\u00EAnia ", "in_reply_to_status_id": 148837883946598400, "in_reply_to_status_id_str": "148837883946598400"}, +{"created_at": "Mon, 19 Dec 2011 18:53:40 +0000", "from_user": "LuceimyQ", "from_user_id": 343459552, "from_user_id_str": "343459552", "from_user_name": "LuceimyQuinteroJB\\u2665 ", "geo": null, "id": 148838424135217150, "id_str": "148838424135217152", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695533651/kgfkdjjfkjdj_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695533651/kgfkdjjfkjdj_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"Inmadurez\" t\\u00E9rmino que usa la gente aburridas para describir a las personas DIVERTIDAS. xD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:40 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148838423791276030, "id_str": "148838423791276033", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "ANA USA COND\\u00D3N,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:39 +0000", "from_user": "circotimia_", "from_user_id": 221610474, "from_user_id_str": "221610474", "from_user_name": "M a i t e\\u10E6. ", "geo": null, "id": 148838422956621820, "id_str": "148838422956621824", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698350821/jjo__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698350821/jjo__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "LUISANA USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:39 +0000", "from_user": "igordevasconcel", "from_user_id": 329665199, "from_user_id_str": "329665199", "from_user_name": "Igor de Vasconcelos", "geo": null, "id": 148838421278887940, "id_str": "148838421278887937", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1557597574/IGOR___12_anos___________reasonably_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1557597574/IGOR___12_anos___________reasonably_small_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@LeehCheese eu acredito que nesse ano n\\u00E3o tera a vers\\u00E3o usa, s\\u00F3 em janeiro ou fevereiro", "to_user": "LeehCheese", "to_user_id": 42685435, "to_user_id_str": "42685435", "to_user_name": "#LeehCheese\\u2019s"}, +{"created_at": "Mon, 19 Dec 2011 18:53:39 +0000", "from_user": "csikinemdar1977", "from_user_id": 353213338, "from_user_id_str": "353213338", "from_user_name": "csikinemdar1977", "geo": null, "id": 148838419253039100, "id_str": "148838419253039104", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Nikon lens grey market usa http://t.co/zhrc5G5p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:38 +0000", "from_user": "ramonssilveira", "from_user_id": 56372027, "from_user_id_str": "56372027", "from_user_name": "Ramon Silveira\\u2122", "geo": +{"coordinates": [-20.7612,-42.8818], "type": "Point"}, "id": 148838416665165820, "id_str": "148838416665165824", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1676628619/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676628619/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@_leoMachado voc\\u00EA n\\u00E3o usa chinelo porque \\u00E9 um bbk, tem nada de normal a\\u00ED -.- #149", "to_user": "_leoMachado", "to_user_id": 56384747, "to_user_id_str": "56384747", "to_user_name": "Leo Machado :)", "in_reply_to_status_id": 148837955232989200, "in_reply_to_status_id_str": "148837955232989184"}, +{"created_at": "Mon, 19 Dec 2011 18:53:38 +0000", "from_user": "naji1907", "from_user_id": 388389565, "from_user_id_str": "388389565", "from_user_name": "Majed Isa", "geo": null, "id": 148838416480600060, "id_str": "148838416480600066", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1682516492/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682516492/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SAIDYOUSIF: #Amnesty International calls on the immediate release of Zainab al-Khawaja in #Bahrain http://t.co/wIC63ymq\\n#Humanrights\\n#HRW\\n#USA\\n#US\\n#UN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:38 +0000", "from_user": "dominevoymash", "from_user_id": 319660924, "from_user_id_str": "319660924", "from_user_name": "Dominick Evoy", "geo": null, "id": 148838416405118980, "id_str": "148838416405118977", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Are Americans crazy for treating our pets like kids? - USA Today", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:37 +0000", "from_user": "zomowig", "from_user_id": 433534186, "from_user_id_str": "433534186", "from_user_name": "Badru Lyndon", "geo": null, "id": 148838412869312500, "id_str": "148838412869312513", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1685488320/986_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685488320/986_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @nameqix: utica auto insurance http://t.co/4UfBtd6A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:37 +0000", "from_user": "rosapadrondc", "from_user_id": 278239388, "from_user_id_str": "278239388", "from_user_name": "Rosa Padron", "geo": null, "id": 148838411904622600, "id_str": "148838411904622592", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1330567401/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1330567401/image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "#Facebook ya se usa m\\u00E1s en #Android que en #iPhone http://t.co/Phkl7dJR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:36 +0000", "from_user": "lahisrocha", "from_user_id": 65673814, "from_user_id_str": "65673814", "from_user_name": "L\\u00E1", "geo": null, "id": 148838409299951600, "id_str": "148838409299951617", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681121393/306921_171294009616811_100002086395648_355358_155763387_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681121393/306921_171294009616811_100002086395648_355358_155763387_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:36 +0000", "from_user": "lovelyxcoeur", "from_user_id": 339930735, "from_user_id_str": "339930735", "from_user_name": "Alegria Amada", "geo": null, "id": 148838408196861950, "id_str": "148838408196861953", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695474013/tumblr_lp88v2iExq1qksu2eo1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695474013/tumblr_lp88v2iExq1qksu2eo1_500_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "gente que usa o facebook como pensador uol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:36 +0000", "from_user": "yoopino_dtodo", "from_user_id": 430341259, "from_user_id_str": "430341259", "from_user_name": "yoopino_dtodo", "geo": null, "id": 148838407441891330, "id_str": "148838407441891328", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1678219611/Dibujo_11_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678219611/Dibujo_11_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @WenaChile: Como nos ESQUILMAN con el Impuesto Espec\\u00EDfico a la Gasolina. Vale el doble que en USA 45% del precio son impuestos DIFUNDIR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:35 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148838405269241860, "id_str": "148838405269241856", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "JESSICA USA COND\\u00D3N,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:35 +0000", "from_user": "SanAntonioValue", "from_user_id": 405741878, "from_user_id_str": "405741878", "from_user_name": "San Antonio Values", "geo": null, "id": 148838404715581440, "id_str": "148838404715581440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1624113762/SA_Background_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624113762/SA_Background_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "50 percent-off is not a discount. have a look at these, 80% off... http://t.co/8QvEAr1G", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:35 +0000", "from_user": "JoelmaQueen", "from_user_id": 52262980, "from_user_id_str": "52262980", "from_user_name": "MendeSarraff \\u00AE", "geo": null, "id": 148838403729915900, "id_str": "148838403729915904", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697142471/3-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697142471/3-2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SheilaSabino: Aham.. KKKKKKKKKKKKKKK' S\\u00F3 porque a gente sabe a linha de xamp\\u00FA que a mam\\u00E3e usa *-*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:35 +0000", "from_user": "laprimeradepue", "from_user_id": 15232524, "from_user_id_str": "15232524", "from_user_name": "La Primera de Puebla", "geo": null, "id": 148838402995925000, "id_str": "148838402995924993", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1676401784/avatar_navideno_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676401784/avatar_navideno_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Facebook se usa m\\u00E1s desde Android que desde los iPhone http://t.co/4jq0A2Wl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:34 +0000", "from_user": "hakeandapedrosa", "from_user_id": 324053700, "from_user_id_str": "324053700", "from_user_name": "Hakeanda Pedrosa", "geo": null, "id": 148838401431453700, "id_str": "148838401431453696", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1497124896/Homer-Rock-and-Roll_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1497124896/Homer-Rock-and-Roll_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Por que voc\\u00EA usa sua voz para confundir as pessoas ? Eu s\\u00F3 queria ajudar a ajuda-lo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:34 +0000", "from_user": "PiratellaO", "from_user_id": 92910615, "from_user_id_str": "92910615", "from_user_name": "Ella M\\u00FCnster", "geo": null, "id": 148838399690805250, "id_str": "148838399690805249", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693260162/n722615343_6867991_2357262_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693260162/n722615343_6867991_2357262_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@annlee_an Quiero verte a ti y a @OliverLongoria, pero donde sirvan tragos r\\u00E1pido para poder probar todos los Homeless de USA.", "to_user": "annlee_an", "to_user_id": 36514208, "to_user_id_str": "36514208", "to_user_name": "anabel jimenez", "in_reply_to_status_id": 148837875314733060, "in_reply_to_status_id_str": "148837875314733057"}, +{"created_at": "Mon, 19 Dec 2011 18:53:34 +0000", "from_user": "tomheston", "from_user_id": 21013461, "from_user_id_str": "21013461", "from_user_name": "Tom Heston \\u2714", "geo": null, "id": 148838398814203900, "id_str": "148838398814203905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1666443880/tom_headshot_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666443880/tom_headshot_normal.jpeg", "source": "<a href="http://www.suitebird.com" rel="nofollow">SuiteBird</a>", "text": "High court on Obama health law: March 26-28 - USA Today http://t.co/E1AI2lAz #health", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:32 +0000", "from_user": "cazkeith", "from_user_id": 150355167, "from_user_id_str": "150355167", "from_user_name": "Carolyn Keith", "geo": null, "id": 148838393462267900, "id_str": "148838393462267904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1411105504/IMG00148-20110622-1349_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1411105504/IMG00148-20110622-1349_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Needs some advice from my twitter friends, going on hols to USA next week, want to take my BB but worried about incurring large costs??", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:32 +0000", "from_user": "delia2727", "from_user_id": 161046659, "from_user_id_str": "161046659", "from_user_name": "delia.castillos", "geo": null, "id": 148838393353224200, "id_str": "148838393353224192", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1507986468/tn_giselebundchen040ca_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1507986468/tn_giselebundchen040ca_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@noticiascomjoao WOOOOO YO NI ENTERADA JAJAJAJAJA ESTOY EN USA Y NO TENGO IDEA DE LO QUE PASA AFUERA JAJAJAJAJA", "to_user": "noticiascomjoao", "to_user_id": 192618309, "to_user_id_str": "192618309", "to_user_name": "Jo\\u00E3o Rodrigues", "in_reply_to_status_id": 148837679482683400, "in_reply_to_status_id_str": "148837679482683392"}, +{"created_at": "Mon, 19 Dec 2011 18:53:32 +0000", "from_user": "AmishJack", "from_user_id": 213772971, "from_user_id_str": "213772971", "from_user_name": "Amish Jack", "geo": null, "id": 148838390131998720, "id_str": "148838390131998720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1163451224/JackMyer_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1163451224/JackMyer_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Forget $Europe$........we're here in the great USA - http://t.co/C30Dm5n8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:32 +0000", "from_user": "Migdaliabkh", "from_user_id": 431686026, "from_user_id_str": "431686026", "from_user_name": "Migdalia Werger", "geo": null, "id": 148838389557362700, "id_str": "148838389557362688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681002388/beqy4nbzgd_124492350-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681002388/beqy4nbzgd_124492350-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "It's All About Holly White USA Flag / Checker Racing Hat / Baseball Cap: T-ShirtFrenzy offers over 30,000 design... http://t.co/nJ9fQjMb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:31 +0000", "from_user": "FAT_13", "from_user_id": 162119281, "from_user_id_str": "162119281", "from_user_name": "Felipe Rosa", "geo": null, "id": 148838387531526140, "id_str": "148838387531526144", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1330766701/P280411_17.24_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1330766701/P280411_17.24_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "um amigo disse q leu um tweet meo dizendo q eu tava acordando as 5:30 da manha pra ir jurar a bandeira... esse guri tem q para d usa droga", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:31 +0000", "from_user": "VocalistCDs", "from_user_id": 362965315, "from_user_id_str": "362965315", "from_user_name": "Richard Floyd", "geo": null, "id": 148838387388923900, "id_str": "148838387388923904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1515591702/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515591702/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #1101 Quiet Christmas $11.16: Acclaimed jazz pianist, Beegie Adair, performs her favorite Christmas ... http://t.co/5iPHsY21", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:31 +0000", "from_user": "VocalistCDs", "from_user_id": 362965315, "from_user_id_str": "362965315", "from_user_name": "Richard Floyd", "geo": null, "id": 148838386499727360, "id_str": "148838386499727361", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1515591702/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515591702/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #588 Greatest Hits Doris Day $6.82: B0012GMUXQ http://t.co/55PbN97F", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:31 +0000", "from_user": "andre1496", "from_user_id": 267303686, "from_user_id_str": "267303686", "from_user_name": "andre", "geo": null, "id": 148838385501474800, "id_str": "148838385501474816", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1276039991/Rise_Against_-_Ready_To_Fall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1276039991/Rise_Against_-_Ready_To_Fall_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@tomdelonge canta como antesss!!!!usa las guitarras fender", "to_user": "tomdelonge", "to_user_id": 22060294, "to_user_id_str": "22060294", "to_user_name": "Tom DeLonge"}, +{"created_at": "Mon, 19 Dec 2011 18:53:30 +0000", "from_user": "VocalistCDs", "from_user_id": 362965315, "from_user_id_str": "362965315", "from_user_name": "Richard Floyd", "geo": null, "id": 148838385300152320, "id_str": "148838385300152320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1515591702/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515591702/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #831 Soul Christmas Various Artists $9.09: B000002IS4 http://t.co/vIlwoJSE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:30 +0000", "from_user": "VocalistCDs", "from_user_id": 362965315, "from_user_id_str": "362965315", "from_user_name": "Richard Floyd", "geo": null, "id": 148838383974748160, "id_str": "148838383974748161", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1515591702/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515591702/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #3937 I Told You I Was Trouble: Amy Winehouse Live From London $10.62: Already hailed as one of the ... http://t.co/8fYQXW9b", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:30 +0000", "from_user": "Niallerement", "from_user_id": 257933726, "from_user_id_str": "257933726", "from_user_name": "Voodoo Child", "geo": null, "id": 148838383249145860, "id_str": "148838383249145856", "iso_language_code": "vi", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702602473/tumblr_lwfsj1RjHi1qijcxeo1_250_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702602473/tumblr_lwfsj1RjHi1qijcxeo1_250_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Photo: http://t.co/AQo17laV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:30 +0000", "from_user": "VocalistCDs", "from_user_id": 362965315, "from_user_id_str": "362965315", "from_user_name": "Richard Floyd", "geo": null, "id": 148838382729052160, "id_str": "148838382729052162", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1515591702/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515591702/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #647 Dino: The Essential Dean Martin Dean Martin $11.89: THE PLATINUM CERTIFIED DINO: THE ESSENTIAL ... http://t.co/SNlZC637", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:30 +0000", "from_user": "UpliftingWoman", "from_user_id": 87207547, "from_user_id_str": "87207547", "from_user_name": "Sherry Dion", "geo": null, "id": 148838382334775300, "id_str": "148838382334775296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/599764282/twitter_photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/599764282/twitter_photo_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @profchandler: I think what happened to banking mortgages & real estate in USA is something like a horror flick except the victims bleed internally", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:30 +0000", "from_user": "Felipaqdz", "from_user_id": 431728730, "from_user_id_str": "431728730", "from_user_name": "Felipa Heyer", "geo": null, "id": 148838381193924600, "id_str": "148838381193924608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1681093031/large_club_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681093031/large_club_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Lovan Legacy Series Glass Shelf Audio Rack in Silver Finish: Product Features: One Tier, four 10\" Posts One 10... http://t.co/uwLlF9SR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:29 +0000", "from_user": "NekoAn", "from_user_id": 43007351, "from_user_id_str": "43007351", "from_user_name": "Neko Anhon", "geo": null, "id": 148838380233433100, "id_str": "148838380233433088", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/254817265/foto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/254817265/foto_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:29 +0000", "from_user": "FranRubal", "from_user_id": 421822749, "from_user_id_str": "421822749", "from_user_name": "Fran Rubal", "geo": null, "id": 148838379679780860, "id_str": "148838379679780864", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1658707801/Pixar-3Luxo_Jr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658707801/Pixar-3Luxo_Jr_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@swito74 Una semana mas tarde que en USA. Puta Warner...", "to_user": "swito74", "to_user_id": 71240484, "to_user_id_str": "71240484", "to_user_name": "SWiTo", "in_reply_to_status_id": 148837602886303740, "in_reply_to_status_id_str": "148837602886303744"}, +{"created_at": "Mon, 19 Dec 2011 18:53:29 +0000", "from_user": "_amandspure", "from_user_id": 173503843, "from_user_id_str": "173503843", "from_user_name": "Amanda Guimar\\u00E3es", "geo": null, "id": 148838377922379780, "id_str": "148838377922379776", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1567444194/DSC01403_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1567444194/DSC01403_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@fuckoffmarco ah, fica quieto meu. Voce usa PEROBA de hidratante e quer dar uma de t\\u00EDmido? MANDA QUEIA MAICO, MANDA SAUDADE MAICO", "to_user": "fuckoffmarco", "to_user_id": 70287350, "to_user_id_str": "70287350", "to_user_name": "Marco Kuttner", "in_reply_to_status_id": 148832837645254660, "in_reply_to_status_id_str": "148832837645254656"}, +{"created_at": "Mon, 19 Dec 2011 18:53:28 +0000", "from_user": "Santisanfe", "from_user_id": 389685043, "from_user_id_str": "389685043", "from_user_name": "Santi", "geo": null, "id": 148838374436913150, "id_str": "148838374436913153", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@SimonCowell simon, i couldn\\u00B4t be at the x factor because i dont live in USA , so i make videos and upload them to yutbe.....", "to_user": "SimonCowell", "to_user_id": 413487212, "to_user_id_str": "413487212", "to_user_name": "Simon Cowell"}, +{"created_at": "Mon, 19 Dec 2011 18:53:27 +0000", "from_user": "DanceDJCDs", "from_user_id": 363528662, "from_user_id_str": "363528662", "from_user_name": "Richard Floyd", "geo": null, "id": 148838372687880200, "id_str": "148838372687880192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1517050823/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517050823/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #1817 A Feast of Songs: Holiday Music from the Middle Ages $11.49: A Feast of Songs is a lively coll... http://t.co/XhLiGNpm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:27 +0000", "from_user": "kapahewugab", "from_user_id": 433442403, "from_user_id_str": "433442403", "from_user_name": "Baharak Matthias", "geo": null, "id": 148838371970658300, "id_str": "148838371970658305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685273793/545_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685273793/545_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @gaduhypyc: car rental insurance not http://t.co/x9GhM7S6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:27 +0000", "from_user": "MissHereja", "from_user_id": 18064120, "from_user_id_str": "18064120", "from_user_name": "V.", "geo": null, "id": 148838370368421900, "id_str": "148838370368421889", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1690282028/screenshot.1323443685_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690282028/screenshot.1323443685_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@MemoCarcamo Es que se me hace que la gente la usa cuando quiere ser sarc\\u00E1stica, no s\\u00E9, no la soporto.", "to_user": "MemoCarcamo", "to_user_id": 53800063, "to_user_id_str": "53800063", "to_user_name": "Guillermo C\\u00E1rcamo", "in_reply_to_status_id": 148837563577278460, "in_reply_to_status_id_str": "148837563577278464"}, +{"created_at": "Mon, 19 Dec 2011 18:53:27 +0000", "from_user": "DanceDJCDs", "from_user_id": 363528662, "from_user_id_str": "363528662", "from_user_name": "Richard Floyd", "geo": null, "id": 148838369634426880, "id_str": "148838369634426881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1517050823/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517050823/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #619 Body Talk [Explicit] [+Digital Booklet] $7.99: B004BLO172 http://t.co/xFfSIgzy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:27 +0000", "from_user": "Belieber24hrs", "from_user_id": 145807973, "from_user_id_str": "145807973", "from_user_name": "Brubs do Biebs", "geo": null, "id": 148838369093353470, "id_str": "148838369093353474", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1694950182/anigifC_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694950182/anigifC_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @JBperfo: @Belieber24hrs usa? BRAZIL NEED'S JUSTIN Parab\\u00E9\\u00E9ns!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:26 +0000", "from_user": "DanceDJCDs", "from_user_id": 363528662, "from_user_id_str": "363528662", "from_user_name": "Richard Floyd", "geo": null, "id": 148838368208367600, "id_str": "148838368208367616", "iso_language_code": "hu", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1517050823/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517050823/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #525 Sbtrkt $5.99: B0054LRR3S http://t.co/YwdNul2h", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:26 +0000", "from_user": "DanceDJCDs", "from_user_id": 363528662, "from_user_id_str": "363528662", "from_user_name": "Richard Floyd", "geo": null, "id": 148838365612081150, "id_str": "148838365612081152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1517050823/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517050823/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #533 Getdarker Presents This Is Dubstep 3 $7.99: B0041WUHEW http://t.co/BuyaOeQf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:25 +0000", "from_user": "DanceDJCDs", "from_user_id": 363528662, "from_user_id_str": "363528662", "from_user_name": "Richard Floyd", "geo": null, "id": 148838364299264000, "id_str": "148838364299264000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1517050823/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517050823/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #446 Fire & Ice $7.99: B005ZG5DF6 http://t.co/tCpgexzF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:25 +0000", "from_user": "Promo4Kaijzer", "from_user_id": 345445536, "from_user_id_str": "345445536", "from_user_name": "Paul Pepper", "geo": null, "id": 148838363816935420, "id_str": "148838363816935425", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1469442433/8460720-red-heart_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1469442433/8460720-red-heart_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#TeamFollowBack Christian Science MonitorDespite Southwest blizzard, hope of white Christma... http://t.co/eq6QZgus #Autofollow @Kaijzer", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:25 +0000", "from_user": "Mitchell_AC", "from_user_id": 57022311, "from_user_id_str": "57022311", "from_user_name": "Mit", "geo": null, "id": 148838361912713200, "id_str": "148838361912713216", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1084331435/649714Bloody_Iori_by_Melkhior_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1084331435/649714Bloody_Iori_by_Melkhior_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "esa bitch llego de usa mas gorda de lo que recordaba, me imagino como le huele!! y me vomito", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:25 +0000", "from_user": "TopTenCamera", "from_user_id": 295001947, "from_user_id_str": "295001947", "from_user_name": "Richard Floyd", "geo": null, "id": 148838360503431170, "id_str": "148838360503431168", "iso_language_code": "hu", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1482676485/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1482676485/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #57 GoPro HD Helmet Hero $239.99: http://t.co/QaYvYOBC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:24 +0000", "from_user": "EXILE43", "from_user_id": 424898510, "from_user_id_str": "424898510", "from_user_name": "EXILE\\u30D5\\u30A1\\u30F3", "geo": null, "id": 148838359685541900, "id_str": "148838359685541888", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1666176286/images_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666176286/images_normal.jpeg", "source": "<a href="http://bit.ly/sSjsT0" rel="nofollow">\\u3048\\u3050\\u3056\\u3044\\u308B\\u30FB\\u306D\\u3063\\u3068</a>", "text": "\\u3010USA\\u30FB\\u6765\\u6B741\\u30111977\\u5E742\\u67082\\u65E5\\u3001\\u795E\\u5948\\u5DDD\\u770C\\u6A2A\\u6D5C\\u5E02\\u306B\\u751F\\u307E\\u308C\\u308B\\u30021994\\u5E74\\u3001MATSU\\u3001MAKIDAI\\u3068\\u5171\\u306B\\u300CBABY NAIL\\u300D\\u3092\\u7D50\\u6210\\u30021998\\u5E74\\u30C0\\u30F3\\u30B9\\u30E6\\u30CB\\u30C3\\u30C8\\u300CJAPANESE SOUL BROTHERS\\u300D\\u306B\\u52A0\\u5165\\u3002\\u2026", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:24 +0000", "from_user": "ProjectKaijzer", "from_user_id": 363317890, "from_user_id_str": "363317890", "from_user_name": "Kaijzer Tavic", "geo": null, "id": 148838359349997570, "id_str": "148838359349997568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1516458024/mrgreen_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1516458024/mrgreen_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Autofollow @Kaijzer Christian Science MonitorDespite Southwest blizzard, hope of white Chris... http://t.co/enf93rfi @Klarsyn #TFB #IFB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:24 +0000", "from_user": "jobiwaho", "from_user_id": 433325866, "from_user_id_str": "433325866", "from_user_name": "Muzhdah Kenwrick", "geo": null, "id": 148838359043817470, "id_str": "148838359043817472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684945147/1151_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684945147/1151_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @cylytojuhed: more than car insurance discount codes http://t.co/w7I6Fpy8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:24 +0000", "from_user": "Underdog_Ciel", "from_user_id": 402191464, "from_user_id_str": "402191464", "from_user_name": "Ciel Phantomhive", "geo": null, "id": 148838358922170370, "id_str": "148838358922170371", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702009761/Underdog_Ciel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702009761/Underdog_Ciel_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@SebxCiel Ahh...lucky...*nods head* Only time I left the USA was to Canada..*he chuckles* Not a plane person..*shivers*", "to_user": "SebxCiel", "to_user_id": 384652418, "to_user_id_str": "384652418", "to_user_name": "SebxCiel", "in_reply_to_status_id": 148837520313036800, "in_reply_to_status_id_str": "148837520313036800"}, +{"created_at": "Mon, 19 Dec 2011 18:53:24 +0000", "from_user": "OperaSongs", "from_user_id": 359369707, "from_user_id_str": "359369707", "from_user_name": "Richard Floyd", "geo": null, "id": 148838358095892480, "id_str": "148838358095892480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1506496349/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1506496349/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #4860 For Good: Kristin Chenoweth $0.99 Decca Broadway http://t.co/hlHZS114", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:24 +0000", "from_user": "OperaSongs", "from_user_id": 359369707, "from_user_id_str": "359369707", "from_user_name": "Richard Floyd", "geo": null, "id": 148838356707590140, "id_str": "148838356707590144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1506496349/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1506496349/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #17159 Sing We Now of Christmas: Tennessee Ernie Ford $0.99 Red Door Productions http://t.co/XmWuf34y", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:23 +0000", "from_user": "_jdsousa", "from_user_id": 163203062, "from_user_id_str": "163203062", "from_user_name": "Je\\u0455\\u0455\\u03B9c\\u03B1 te ama.", "geo": null, "id": 148838355713536000, "id_str": "148838355713536000", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677581710/312017_1877528636998_1804727270_1296375_415792567_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677581710/312017_1877528636998_1804727270_1296375_415792567_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Todos conocemos a alguien que tiene Twitter y no lo usa.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:23 +0000", "from_user": "HardryTellez", "from_user_id": 257638804, "from_user_id_str": "257638804", "from_user_name": "Hardry Tellez", "geo": null, "id": 148838355549958140, "id_str": "148838355549958145", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686289988/JIJ2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686289988/JIJ2_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: El verbo \"Fritar\" es aceptado por la Real Academia Espa\\u00F1ola, se usa al igual que el verbo \"Fre\\u00EDr\" y se conjuga como \"Quitar\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:23 +0000", "from_user": "lvidinha", "from_user_id": 30175665, "from_user_id_str": "30175665", "from_user_name": "Lindsey Vidinha", "geo": null, "id": 148838353738018800, "id_str": "148838353738018816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1657999533/IMG01005-20111123-2112_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657999533/IMG01005-20111123-2112_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @grownupbutnot: ummmm, excuse me criminal intent, but the USA network is reserved specifically for SVU #getouttahere", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:23 +0000", "from_user": "OperaSongs", "from_user_id": 359369707, "from_user_id_str": "359369707", "from_user_name": "Richard Floyd", "geo": null, "id": 148838352836235260, "id_str": "148838352836235264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1506496349/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1506496349/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #17858 I Never Lost My Praise: The Brooklyn Tabernacle Choir $0.99 Integrity/Columbia http://t.co/8bZWImAu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:22 +0000", "from_user": "OperaSongs", "from_user_id": 359369707, "from_user_id_str": "359369707", "from_user_name": "Richard Floyd", "geo": null, "id": 148838351674425340, "id_str": "148838351674425344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1506496349/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1506496349/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #6155 MacArthur Park: Richard Harris $0.99 Geffen http://t.co/WHqWlCei", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:22 +0000", "from_user": "SimonsBitzer", "from_user_id": 113471605, "from_user_id_str": "113471605", "from_user_name": "Simons Bitzer ", "geo": null, "id": 148838349849903100, "id_str": "148838349849903104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/690209344/logo_outlined_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/690209344/logo_outlined_normal.png", "source": "<a href="http://app.measuredvoice.com/" rel="nofollow">Measured Voice</a>", "text": "RT @IRSnews: Good records can save small businesses money at tax time. Learn what to keep and how to keep them. http://t.co/Yq2mWu3q #IRS taxes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:22 +0000", "from_user": "OperaSongs", "from_user_id": 359369707, "from_user_id_str": "359369707", "from_user_name": "Richard Floyd", "geo": null, "id": 148838349644378100, "id_str": "148838349644378113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1506496349/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1506496349/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #94053 What Child Is This?: Robert Shaw & Robert Shaw Chamber Singers/Christopher Cock/Victor Ledbett... http://t.co/uxFV8Y66", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:22 +0000", "from_user": "WeLoveKaijzer", "from_user_id": 353919927, "from_user_id_str": "353919927", "from_user_name": "Palle Kuling", "geo": null, "id": 148838347769528320, "id_str": "148838347769528320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1492125286/Scream-icon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1492125286/Scream-icon_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Autofollow Christian Science MonitorDespite Southwest blizzard, hope of white Christmas fades for... http://t.co/UjBOefDU #TFB @Kaijzer", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:21 +0000", "from_user": "Rradiodh", "from_user_id": 278245779, "from_user_id_str": "278245779", "from_user_name": "David \\u05D3\\u05D5\\u05D3 \\u05D4\\u05D5\\u05E8\\u05DF", "geo": null, "id": 148838347077451780, "id_str": "148838347077451777", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687619396/mask_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687619396/mask_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Hamas High School in #Florida? #USA #Israel\\nhttp://t.co/BKV9ltMg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:21 +0000", "from_user": "JuiceboxJewels", "from_user_id": 336822225, "from_user_id_str": "336822225", "from_user_name": "Juicebox Jewels", "geo": null, "id": 148838344929976320, "id_str": "148838344929976321", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1446107277/smalljbj_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1446107277/smalljbj_normal.JPG", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "CLIP ON Brown Dark wood Gold Stardust 3\" Hoop Earrings Basketball wives(C268)USA http://t.co/9wIMFx6x", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:21 +0000", "from_user": "iMercyLove", "from_user_id": 239579163, "from_user_id_str": "239579163", "from_user_name": "Mercy \\u2665", "geo": null, "id": 148838344112095230, "id_str": "148838344112095234", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1596840071/m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596840071/m_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@LatinAmericaJDB hahaha (: pero el fin, tu quieres vivir en Canad\\u00E1 o USA (:", "to_user": "LatinAmericaJDB", "to_user_id": 174850101, "to_user_id_str": "174850101", "to_user_name": "\\u1D1C\\u0274\\u1D05\\u1D07\\u0280 \\u1D1B\\u029C\\u1D07 \\u1D0D\\u0131s\\u1D1B\\u029F\\u1D07\\u1D1Bo\\u1D07", "in_reply_to_status_id": 148836560421404670, "in_reply_to_status_id_str": "148836560421404672"}, +{"created_at": "Mon, 19 Dec 2011 18:53:21 +0000", "from_user": "dezpierceirun", "from_user_id": 198675487, "from_user_id_str": "198675487", "from_user_name": "Desmond Pierce", "geo": null, "id": 148838343952707600, "id_str": "148838343952707584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701260425/dezpierceirun_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701260425/dezpierceirun_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@maggiekicks welcome! I ran the 800 at USA juniors this past year and saw u run! Hope u make the Olympics next summer!", "to_user": "maggiekicks", "to_user_id": 221394224, "to_user_id_str": "221394224", "to_user_name": "Maggie Vessey", "in_reply_to_status_id": 148807236788031500, "in_reply_to_status_id_str": "148807236788031488"}, +{"created_at": "Mon, 19 Dec 2011 18:53:20 +0000", "from_user": "JaydenOrr", "from_user_id": 331591130, "from_user_id_str": "331591130", "from_user_name": "Jayden Orr", "geo": null, "id": 148838342979620860, "id_str": "148838342979620866", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1432172361/PAUL_WEASLY_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1432172361/PAUL_WEASLY_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Despite Southwest blizzard, hope of white Christmas fades for much of US - Christian Science Monitor: Christian ... http://t.co/GaqLVvBy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:20 +0000", "from_user": "Soundtracks1", "from_user_id": 286127553, "from_user_id_str": "286127553", "from_user_name": "Richard Floyd", "geo": null, "id": 148838342878957570, "id_str": "148838342878957569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1409079887/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1409079887/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #255 Drive (Original Motion Picture Soundtrack): Various Artists $7.99 Lakeshore Records http://t.co/YuB6yWnc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:20 +0000", "from_user": "Soundtracks1", "from_user_id": 286127553, "from_user_id_str": "286127553", "from_user_name": "Richard Floyd", "geo": null, "id": 148838341612285950, "id_str": "148838341612285952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1409079887/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1409079887/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #1054 Rio: Music From The Motion Picture: Various Artists $9.99 Will I Am http://t.co/Oa6uc9dm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:20 +0000", "from_user": "lacarsrepo", "from_user_id": 30121979, "from_user_id_str": "30121979", "from_user_name": "La Cars Repo Inc.", "geo": null, "id": 148838341033472000, "id_str": "148838341033472001", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/321786125/my_picture_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/321786125/my_picture_3_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Stephen Cannon Named Mercedes-Benz USA President and CEO: Cannon will have overall responsibility for the Merced... http://t.co/o5V76e8q", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:20 +0000", "from_user": "Soundtracks1", "from_user_id": 286127553, "from_user_id_str": "286127553", "from_user_name": "Richard Floyd", "geo": null, "id": 148838340412715000, "id_str": "148838340412715008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1409079887/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1409079887/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #3953 The Lord of the Rings Symphony: Howard Shore $8.99 HOWE records http://t.co/JGjmYsXM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:20 +0000", "from_user": "slayerizedcarol", "from_user_id": 146737544, "from_user_id_str": "146737544", "from_user_name": "Carol", "geo": null, "id": 148838339687100400, "id_str": "148838339687100416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1642965370/darkthrone-festivehodsmal_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642965370/darkthrone-festivehodsmal_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@Archaenon is it the green usa one? :) i liked those when i quickly saw them", "to_user": "Archaenon", "to_user_id": 755711, "to_user_id_str": "755711", "to_user_name": "eg.", "in_reply_to_status_id": 148838052767338500, "in_reply_to_status_id_str": "148838052767338498"}, +{"created_at": "Mon, 19 Dec 2011 18:53:19 +0000", "from_user": "Soundtracks1", "from_user_id": 286127553, "from_user_id_str": "286127553", "from_user_name": "Richard Floyd", "geo": null, "id": 148838339016015870, "id_str": "148838339016015872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1409079887/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1409079887/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #1553 Rocky Balboa: The Best Of Rocky: Various Artists $6.99 Capitol http://t.co/GyO7zmSX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:19 +0000", "from_user": "soyrevilla", "from_user_id": 305136649, "from_user_id_str": "305136649", "from_user_name": "Sam Dallas", "geo": null, "id": 148838338948907000, "id_str": "148838338948907008", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1628197700/Picture0004_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628197700/Picture0004_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Kie_chan_Benton \"Como escapar de Glenn en 2 pasos por Dankie\" Irse a USA y volverse cerdilla capitalista. #HOYGAMES", "to_user": "Kie_chan_Benton", "to_user_id": 258541773, "to_user_id_str": "258541773", "to_user_name": "Kie Benton", "in_reply_to_status_id": 148837625011253250, "in_reply_to_status_id_str": "148837625011253248"}, +{"created_at": "Mon, 19 Dec 2011 18:53:19 +0000", "from_user": "Soundtracks1", "from_user_id": 286127553, "from_user_id_str": "286127553", "from_user_name": "Richard Floyd", "geo": null, "id": 148838336814002180, "id_str": "148838336814002176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1409079887/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1409079887/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #1153 The Lion King: Various $7.99 Walt Disney http://t.co/yECKQoU8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:19 +0000", "from_user": "BoxSetCDs", "from_user_id": 362955247, "from_user_id_str": "362955247", "from_user_name": "Richard Floyd", "geo": null, "id": 148838336528793600, "id_str": "148838336528793600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1515566384/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515566384/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #13028 Christmas Collection Mannheim Steamroller $99.99: Four CD holiday box set containing a quartet... http://t.co/jHjbjna3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:19 +0000", "from_user": "gabacheau", "from_user_id": 65795823, "from_user_id_str": "65795823", "from_user_name": "jantoine", "geo": null, "id": 148838335400509440, "id_str": "148838335400509440", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677486452/ronnie_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677486452/ronnie_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Chica, si has nacido despu\\u00E9s del Mundial de F\\u00FAtbol de USA'94 quedas descartada por el momento, pero todo es negociable.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:19 +0000", "from_user": "BoxSetCDs", "from_user_id": 362955247, "from_user_id_str": "362955247", "from_user_name": "Richard Floyd", "geo": null, "id": 148838335362768900, "id_str": "148838335362768896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1515566384/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515566384/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #5379 A Holly Jolly Christmas For Kids $14.48: \"A HOLLY JOLLY CHRISTMAS FOR KIDS\" is a 3 CD collecti... http://t.co/49Y0zq3L", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:18 +0000", "from_user": "BoxSetCDs", "from_user_id": 362955247, "from_user_id_str": "362955247", "from_user_name": "Richard Floyd", "geo": null, "id": 148838333966065660, "id_str": "148838333966065664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1515566384/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515566384/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #5901 Mythology (4 CD) Bee Gees $36.38: 2010 four CD set from the veteran hitmakers. Mythology contai... http://t.co/eYMP2mnU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:18 +0000", "from_user": "Newsblogz", "from_user_id": 324254976, "from_user_id_str": "324254976", "from_user_name": "News Blogz", "geo": null, "id": 148838332640657400, "id_str": "148838332640657408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1628923649/A_fascinating_24_hour_clock_in_the_heart_of_GMT_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628923649/A_fascinating_24_hour_clock_in_the_heart_of_GMT_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "US NEWS: Despite Southwest blizzard, hope of white Christmas fades for much of US - Christian Sc... http://t.co/8r810U7f #newsblogz #usa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:18 +0000", "from_user": "annwho", "from_user_id": 29222724, "from_user_id_str": "29222724", "from_user_name": "ann ", "geo": null, "id": 148838332615507970, "id_str": "148838332615507968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1343265008/DSCN8606_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1343265008/DSCN8606_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "HOLDER knows how to let the black panthers who were ugly with old and weak with usa ppl and now he grabs bho and him in race card ???", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:18 +0000", "from_user": "Newsblogz", "from_user_id": 324254976, "from_user_id_str": "324254976", "from_user_name": "News Blogz", "geo": null, "id": 148838331524984830, "id_str": "148838331524984832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1628923649/A_fascinating_24_hour_clock_in_the_heart_of_GMT_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628923649/A_fascinating_24_hour_clock_in_the_heart_of_GMT_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "US NEWS: Violent Crime Keeps Falling - Wall Street Journal: My TV20 DetroitViolent Crime Keeps F... http://t.co/HhKUSWbx #newsblogz #usa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:17 +0000", "from_user": "beccarter28", "from_user_id": 137898044, "from_user_id_str": "137898044", "from_user_name": "Becky Carter", "geo": null, "id": 148838329595592700, "id_str": "148838329595592706", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/871742337/Diane_and_Kathy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/871742337/Diane_and_Kathy_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Despite Southwest blizzard, hope of white Christmas fades for much of US - Christian Science Monitor: Christian ... http://t.co/8ZXYmuoV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:17 +0000", "from_user": "DianaDeRivera", "from_user_id": 112076294, "from_user_id_str": "112076294", "from_user_name": "Diana WY \\u2665", "geo": null, "id": 148838328991625200, "id_str": "148838328991625216", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702542085/37696_416274857326_107677682326_5252226_3382368_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702542085/37696_416274857326_107677682326_5252226_3382368_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @Bellaco_Leon: @wisinyyandel felicidades papa cumple muchos mas saludos desde Pennsylvania USA ya tu sae bendiciones #FelixCumplea\\u00F1osWisin", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:17 +0000", "from_user": "homeinsured", "from_user_id": 71376232, "from_user_id_str": "71376232", "from_user_name": "HomeInsuranceQuotes", "geo": null, "id": 148838328421191680, "id_str": "148838328421191680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/397060792/twitlogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/397060792/twitlogo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Despite Southwest blizzard, hope of white Christmas fades for much of US - Christian Science Monitor: Christian ... http://t.co/E50RfaqE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:17 +0000", "from_user": "OtterSurfCo", "from_user_id": 261333015, "from_user_id_str": "261333015", "from_user_name": "Otter Surf Company", "geo": null, "id": 148838328358289400, "id_str": "148838328358289412", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1424726799/Otter_221x221_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1424726799/Otter_221x221_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Otter Surf Co. News> New Year's Resolution: End Whaling - For decades, Greenpeace has led the fight to protect whale... http://t.co/40Vav2H6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:17 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148838326613446660, "id_str": "148838326613446657", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "DIOSA CANALES USA COND\\u00D3N,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:16 +0000", "from_user": "itmyturntodie", "from_user_id": 177764204, "from_user_id_str": "177764204", "from_user_name": "Jenifer", "geo": null, "id": 148838325187387400, "id_str": "148838325187387392", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1644472695/dfhd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644472695/dfhd_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:16 +0000", "from_user": "Gabrieladictiva", "from_user_id": 246438641, "from_user_id_str": "246438641", "from_user_name": "Gab ", "geo": null, "id": 148838324692451330, "id_str": "148838324692451328", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701037371/DSC08278_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701037371/DSC08278_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Yo no estaba semidesnuda, todo el mundo usa trajes de ba\\u00F1o, mai gaa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:16 +0000", "from_user": "Caity_Abdul", "from_user_id": 152117570, "from_user_id_str": "152117570", "from_user_name": "Caity", "geo": null, "id": 148838324306583550, "id_str": "148838324306583552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700968626/holidayav1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700968626/holidayav1_normal.png", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @4everurgirl94: Justin Beiber and Stevie Wonder are reported to be performing at The X Factor USA finale:) Cool!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:15 +0000", "from_user": "fidiwivozy", "from_user_id": 433676268, "from_user_id_str": "433676268", "from_user_name": "Ehrentraut Mcginlay", "geo": null, "id": 148838321769037820, "id_str": "148838321769037825", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1685942720/1712_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685942720/1712_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "personal loans for people with bad credit no credit check http://t.co/kgQ97uxs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:15 +0000", "from_user": "BoxSetCDs", "from_user_id": 362955247, "from_user_id_str": "362955247", "from_user_name": "Richard Floyd", "geo": null, "id": 148838319587995650, "id_str": "148838319587995648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1515566384/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515566384/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #1102 Still on Top: The Greatest Hits Van Morrison $17.91: 2007 limited edition triple definitive col... http://t.co/lgQ0uYME", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:15 +0000", "from_user": "YamagutiLucas", "from_user_id": 224860530, "from_user_id_str": "224860530", "from_user_name": "Lucas D. C. Yamaguti", "geo": null, "id": 148838319021756400, "id_str": "148838319021756416", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1492257631/localocalocalol_055_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1492257631/localocalocalol_055_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@marislzr InsetoLab \\u00E9 uma das coisa que s\\u00F3 se usa uma vez e acaba. Custa uns 100 reais, ai voc\\u00EA usa uma vez. Tenso. V\\u00ED ele em RP. UHAUHAU", "to_user": "marislzr", "to_user_id": 25728120, "to_user_id_str": "25728120", "to_user_name": "MARI SALAZAR \\u265B ", "in_reply_to_status_id": 148837685484720130, "in_reply_to_status_id_str": "148837685484720130"}, +{"created_at": "Mon, 19 Dec 2011 18:53:14 +0000", "from_user": "circotimia_", "from_user_id": 221610474, "from_user_id_str": "221610474", "from_user_name": "M a i t e\\u10E6. ", "geo": null, "id": 148838317314682880, "id_str": "148838317314682881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698350821/jjo__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698350821/jjo__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "JEANNETH USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:14 +0000", "from_user": "BoxSetCDs", "from_user_id": 362955247, "from_user_id_str": "362955247", "from_user_name": "Richard Floyd", "geo": null, "id": 148838314252836860, "id_str": "148838314252836864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1515566384/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515566384/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #2441 The 2000 Year Old Man:The Complete History Carl Reiner & Mel Brooks $36.99: Newly remastered fo... http://t.co/RrxbhBzG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:53:17 +0000", "from_user": "OtterSurfCo", "from_user_id": 261333015, "from_user_id_str": "261333015", "from_user_name": "Otter Surf Company", "geo": null, "id": 148838328358289400, "id_str": "148838328358289412", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1424726799/Otter_221x221_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1424726799/Otter_221x221_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Otter Surf Co. News> New Year's Resolution: End Whaling - For decades, Greenpeace has led the fight to protect whale... http://t.co/40Vav2H6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:17 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148838326613446660, "id_str": "148838326613446657", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "DIOSA CANALES USA COND\\u00D3N,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:16 +0000", "from_user": "itmyturntodie", "from_user_id": 177764204, "from_user_id_str": "177764204", "from_user_name": "Jenifer", "geo": null, "id": 148838325187387400, "id_str": "148838325187387392", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1644472695/dfhd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644472695/dfhd_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:16 +0000", "from_user": "Gabrieladictiva", "from_user_id": 246438641, "from_user_id_str": "246438641", "from_user_name": "Gab ", "geo": null, "id": 148838324692451330, "id_str": "148838324692451328", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701037371/DSC08278_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701037371/DSC08278_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Yo no estaba semidesnuda, todo el mundo usa trajes de ba\\u00F1o, mai gaa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:16 +0000", "from_user": "Caity_Abdul", "from_user_id": 152117570, "from_user_id_str": "152117570", "from_user_name": "Caity", "geo": null, "id": 148838324306583550, "id_str": "148838324306583552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700968626/holidayav1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700968626/holidayav1_normal.png", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @4everurgirl94: Justin Beiber and Stevie Wonder are reported to be performing at The X Factor USA finale:) Cool!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:15 +0000", "from_user": "fidiwivozy", "from_user_id": 433676268, "from_user_id_str": "433676268", "from_user_name": "Ehrentraut Mcginlay", "geo": null, "id": 148838321769037820, "id_str": "148838321769037825", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1685942720/1712_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685942720/1712_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "personal loans for people with bad credit no credit check http://t.co/kgQ97uxs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:15 +0000", "from_user": "BoxSetCDs", "from_user_id": 362955247, "from_user_id_str": "362955247", "from_user_name": "Richard Floyd", "geo": null, "id": 148838319587995650, "id_str": "148838319587995648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1515566384/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515566384/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #1102 Still on Top: The Greatest Hits Van Morrison $17.91: 2007 limited edition triple definitive col... http://t.co/lgQ0uYME", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:15 +0000", "from_user": "YamagutiLucas", "from_user_id": 224860530, "from_user_id_str": "224860530", "from_user_name": "Lucas D. C. Yamaguti", "geo": null, "id": 148838319021756400, "id_str": "148838319021756416", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1492257631/localocalocalol_055_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1492257631/localocalocalol_055_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@marislzr InsetoLab \\u00E9 uma das coisa que s\\u00F3 se usa uma vez e acaba. Custa uns 100 reais, ai voc\\u00EA usa uma vez. Tenso. V\\u00ED ele em RP. UHAUHAU", "to_user": "marislzr", "to_user_id": 25728120, "to_user_id_str": "25728120", "to_user_name": "MARI SALAZAR \\u265B ", "in_reply_to_status_id": 148837685484720130, "in_reply_to_status_id_str": "148837685484720130"}, +{"created_at": "Mon, 19 Dec 2011 18:53:14 +0000", "from_user": "circotimia_", "from_user_id": 221610474, "from_user_id_str": "221610474", "from_user_name": "M a i t e\\u10E6. ", "geo": null, "id": 148838317314682880, "id_str": "148838317314682881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698350821/jjo__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698350821/jjo__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "JEANNETH USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:14 +0000", "from_user": "BoxSetCDs", "from_user_id": 362955247, "from_user_id_str": "362955247", "from_user_name": "Richard Floyd", "geo": null, "id": 148838314252836860, "id_str": "148838314252836864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1515566384/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515566384/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #2441 The 2000 Year Old Man:The Complete History Carl Reiner & Mel Brooks $36.99: Newly remastered fo... http://t.co/RrxbhBzG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:13 +0000", "from_user": "RobertoCChang", "from_user_id": 198060426, "from_user_id_str": "198060426", "from_user_name": "Roberto Chang ", "geo": null, "id": 148838313774694400, "id_str": "148838313774694400", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1658322346/IMG_4840_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658322346/IMG_4840_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Que destruccion ya mejor me regreso pa usa.. Jajajaja", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:13 +0000", "from_user": "EmmanuelRodrig2", "from_user_id": 319131470, "from_user_id_str": "319131470", "from_user_name": "Emmanuel Rodriguez", "geo": null, "id": 148838311492984830, "id_str": "148838311492984832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1408807487/emmy3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1408807487/emmy3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@GeryGovea i now understand y u hate the usa government after watching this\\nhttp://t.co/sGe6yhCJ", "to_user": "GeryGovea", "to_user_id": 96403935, "to_user_id_str": "96403935", "to_user_name": "Geraldine Govea"}, +{"created_at": "Mon, 19 Dec 2011 18:53:12 +0000", "from_user": "MatheusZaid", "from_user_id": 52803149, "from_user_id_str": "52803149", "from_user_name": "Matheus Diaz \\u2714", "geo": null, "id": 148838307344810000, "id_str": "148838307344809985", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1200495158/OgAAAJcmCmjAmRftKzkSJ5-ZydEPUExmMjzGpBNTdCd8niMN4U_35OlKefxF7Ay3kzpH1isBKudyAceMxwvhVZwPSVYAm1T1UBpkoR1tPLzyu31kGhe2sLUj9OBy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1200495158/OgAAAJcmCmjAmRftKzkSJ5-ZydEPUExmMjzGpBNTdCd8niMN4U_35OlKefxF7Ay3kzpH1isBKudyAceMxwvhVZwPSVYAm1T1UBpkoR1tPLzyu31kGhe2sLUj9OBy_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "NOJO de quem usa o nome do pai pra conseguir algo. Bem feito que essa ot\\u00E1ria n consegiu nada! #caranapoeira kkkkk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:11 +0000", "from_user": "ItsMariellaa", "from_user_id": 183031283, "from_user_id_str": "183031283", "from_user_name": "Mariella. ", "geo": null, "id": 148838304622710800, "id_str": "148838304622710784", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1646277728/Imagem_006_1__normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646277728/Imagem_006_1__normal", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Me pergunte qualquer coisa. - \\u203A 1. Altura? 2. Peso? 3. Voc\\u00EA fuma? 4. Voc\\u00EA bebe? 5. Usa/j\\u00E1 usou drogas? 6.... http://t.co/bNSxaH0k", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:11 +0000", "from_user": "BigFraud", "from_user_id": 325576858, "from_user_id_str": "325576858", "from_user_name": "Big Fraud", "geo": null, "id": 148838304559808500, "id_str": "148838304559808513", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1417280693/600580_40912478_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1417280693/600580_40912478_normal.jpg", "source": "<a href="http://splitweet.com" rel="nofollow">Splitweet</a>", "text": "FBI #Los #Angeles \"Closely Monitoring\" Coutts Bank HSBC USA $1,OOO,OOO,OOO, #Bahamas Gibraltar Fraud Case http://t.co/xKsdaMIc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:11 +0000", "from_user": "ConspiracyCase", "from_user_id": 322024752, "from_user_id_str": "322024752", "from_user_name": "Carroll Foundation", "geo": null, "id": 148838303481864200, "id_str": "148838303481864192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1407909900/13_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1407909900/13_normal.jpg", "source": "<a href="http://splitweet.com" rel="nofollow">Splitweet</a>", "text": "FBI #Los #Angeles \"Closely Monitoring\" Coutts Bank HSBC USA $1,OOO,OOO,OOO, #Bahamas Gibraltar Fraud Case http://t.co/EF68GhNP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:11 +0000", "from_user": "GHOSTPROTOCOLS", "from_user_id": 326450140, "from_user_id_str": "326450140", "from_user_name": "GHOST PROTOCOL", "geo": null, "id": 148838303418941440, "id_str": "148838303418941440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1419498387/williammarshal1_sm_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1419498387/williammarshal1_sm_normal.png", "source": "<a href="http://splitweet.com" rel="nofollow">Splitweet</a>", "text": "FBI #Los #Angeles \"Closely Monitoring\" Coutts Bank HSBC USA $1,OOO,OOO,OOO, #Bahamas Gibraltar Fraud Case http://t.co/0XGunl9a", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:11 +0000", "from_user": "syvuteja", "from_user_id": 433047330, "from_user_id_str": "433047330", "from_user_name": "Rajni Culpan", "geo": null, "id": 148838303368609800, "id_str": "148838303368609792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685339097/853_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685339097/853_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @gedebibejaz: car insurance companies in pa http://t.co/mKE8pyra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:11 +0000", "from_user": "Juh_Shadows", "from_user_id": 275996013, "from_user_id_str": "275996013", "from_user_name": "Junior Shadows", "geo": null, "id": 148838303351840770, "id_str": "148838303351840769", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668206133/deathbat_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668206133/deathbat_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "@Jhoow__w parece akeles vestido q o oliver usa D:", "to_user": "Jhoow__w", "to_user_id": 298238184, "to_user_id_str": "298238184", "to_user_name": "Jhoow"}, +{"created_at": "Mon, 19 Dec 2011 18:53:09 +0000", "from_user": "puzakefe", "from_user_id": 419983461, "from_user_id_str": "419983461", "from_user_name": "Bratislav Gallaccio", "geo": null, "id": 148838294564773900, "id_str": "148838294564773889", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1657158533/29_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657158533/29_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @fysikykeno: loans bad credit tesco http://t.co/WtAqPgg6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:09 +0000", "from_user": "theyarepartofmy", "from_user_id": 259434941, "from_user_id_str": "259434941", "from_user_name": "\\u2655 ", "geo": null, "id": 148838294036287500, "id_str": "148838294036287489", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700963726/chercrazy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700963726/chercrazy_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@PLanzani_chile shh te vay a USA? Pa que contai", "to_user": "PLanzani_chile", "to_user_id": 191332852, "to_user_id_str": "191332852", "to_user_name": "Fran.", "in_reply_to_status_id": 148837348275265540, "in_reply_to_status_id_str": "148837348275265536"}, +{"created_at": "Mon, 19 Dec 2011 18:53:09 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148838293189042180, "id_str": "148838293189042176", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "MANZANA USA COND\\u00D3N,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:08 +0000", "from_user": "GrouponCbusGa", "from_user_id": 223859034, "from_user_id_str": "223859034", "from_user_name": "Groupon Columbus", "geo": null, "id": 148838289787461630, "id_str": "148838289787461632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1184788298/twitpic_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1184788298/twitpic_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Help provide meals for school children affected by the famine in the Horn of Africa: http://t.co/c7uojaeZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:07 +0000", "from_user": "d4reala1", "from_user_id": 433837153, "from_user_id_str": "433837153", "from_user_name": "d4reala", "geo": null, "id": 148838287539322880, "id_str": "148838287539322880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698205567/wutangclan4_1024_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698205567/wutangclan4_1024_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "24 #HOURS #USA #RAP http://t.co/FsZqbY8N #NOW #PLAYING #DABRAT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:06 +0000", "from_user": "CyberPlumber", "from_user_id": 17222226, "from_user_id_str": "17222226", "from_user_name": "Jay Liang", "geo": null, "id": 148838282476781570, "id_str": "148838282476781568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677646047/3d-torus_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677646047/3d-torus_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "SPC MD 2378: MD 2378 CONCERNING HEAVY SNOW FOR NERN NM / NWRN TX PANHANDLE / WRN OK PANHANDLE / SERN CO / SWRN K... http://t.co/vgO83SW8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:06 +0000", "from_user": "love040497", "from_user_id": 272521036, "from_user_id_str": "272521036", "from_user_name": "marta", "geo": null, "id": 148838281587597300, "id_str": "148838281587597312", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689506447/wesele_my_picture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689506447/wesele_my_picture_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@mellodyaupair aha.. fajnie masz !! taz bym chciala zeby moj tata byl amerykaninem .. ! przynajmniej moglabym pojechac do USA...", "to_user": "mellodyaupair", "to_user_id": 427377843, "to_user_id_str": "427377843", "to_user_name": "Mellody Aupair"}, +{"created_at": "Mon, 19 Dec 2011 18:53:05 +0000", "from_user": "ndepositcasino", "from_user_id": 239797951, "from_user_id_str": "239797951", "from_user_name": "no deposit casino", "geo": null, "id": 148838279364620300, "id_str": "148838279364620288", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1273167872/images48_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273167872/images48_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "casino no deposit codes usa tco/TymHQNcL http://t.co/DVmGy94a", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:05 +0000", "from_user": "dennisarmandodt", "from_user_id": 278746827, "from_user_id_str": "278746827", "from_user_name": "Armando Dorantes", "geo": null, "id": 148838278693523460, "id_str": "148838278693523456", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1303689859/domino_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1303689859/domino_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Paullettina Ejemm pero desde hace un siglo que es pirateado por USA!! ja ja ja", "to_user": "Paullettina", "to_user_id": 124390192, "to_user_id_str": "124390192", "to_user_name": "Ari Pineapple", "in_reply_to_status_id": 148829127397490700, "in_reply_to_status_id_str": "148829127397490688"}, +{"created_at": "Mon, 19 Dec 2011 18:53:05 +0000", "from_user": "ReutersMarkets", "from_user_id": 335907491, "from_user_id_str": "335907491", "from_user_name": "Reuters Markets", "geo": null, "id": 148838278571888640, "id_str": "148838278571888640", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1462494621/reuters_twitter_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1462494621/reuters_twitter_avatar_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Struggling Santorum bets big on Iowa http://t.co/7P1PDvmF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:04 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148838275988201470, "id_str": "148838275988201472", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "PERA USA COND\\u00D3N,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:04 +0000", "from_user": "marcos3594", "from_user_id": 257556744, "from_user_id_str": "257556744", "from_user_name": "Marcos\\u00AE", "geo": null, "id": 148838274671190000, "id_str": "148838274671190016", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1616540245/webcam-toy-foto10_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616540245/webcam-toy-foto10_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Aquela vizinha que coloca um banquinho na porta de casa, usa o guarda-chuva, t\\u00E1 com o p\\u00E9 quebrado...mas n\\u00E3o deixa a fofoca. Vizinha \\u00E9 p/voce", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:04 +0000", "from_user": "SideGigCentral", "from_user_id": 379904644, "from_user_id_str": "379904644", "from_user_name": "Side Job Central", "geo": null, "id": 148838273547116540, "id_str": "148838273547116545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1559639165/Lighthouse_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1559639165/Lighthouse_normal.jpg", "source": "<a href="http://www.sidejobcentral.com/" rel="nofollow">Side Jobs</a>", "text": "First or Second year students needed Receive $75 (anywhere usa) http://t.co/EDCXTU9l #jobs #Dallas", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:03 +0000", "from_user": "usa_investment", "from_user_id": 410260271, "from_user_id_str": "410260271", "from_user_name": "Investment USA", "geo": null, "id": 148838271475138560, "id_str": "148838271475138560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1634155452/4-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634155452/4-1_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "EB-5 visa investment is therefore a great way to get permanent residency in the United States and a good investment http://t.co/8cdj3y75", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:03 +0000", "from_user": "Jayz07Jayz", "from_user_id": 376567663, "from_user_id_str": "376567663", "from_user_name": "jayz07", "geo": null, "id": 148838270313304060, "id_str": "148838270313304064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1615315151/jay_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615315151/jay_normal", "source": "<a href="http://www.twaitter.com" rel="nofollow">Twaitter</a>", "text": "Child\\u2019s Progress During The First Year of Life #baby #clenches #Colors #coos #cries #discomfort #eyes #fist #head http://t.co/lkw9W0V5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:02 +0000", "from_user": "Aidesce", "from_user_id": 430043935, "from_user_id_str": "430043935", "from_user_name": "Aide Foose", "geo": null, "id": 148838267645722620, "id_str": "148838267645722626", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1677513819/c4lg4v45m3_132459583_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677513819/c4lg4v45m3_132459583_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "4x6 Picture Frame / Poster Frame 2\" Wide Complete Silver Frame (FM97SI): This frame is manufactured in the USA, ... http://t.co/a73BA3Ck", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:02 +0000", "from_user": "FCeternogogoboy", "from_user_id": 192965100, "from_user_id_str": "192965100", "from_user_name": "FCO Eterno GogoBoy", "geo": null, "id": 148838266232250370, "id_str": "148838266232250368", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1659675386/nxzero2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659675386/nxzero2_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Me pergunte qualquer coisa. - \\u203A 1. Altura? 2. Peso? 3. Voc\\u00EA fuma? 4. Voc\\u00EA bebe? 5. Usa/j\\u00E1 usou drogas? 6.... http://t.co/bPF8QeOn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:01 +0000", "from_user": "MariesaBossier0", "from_user_id": 440264558, "from_user_id_str": "440264558", "from_user_name": "Mariesa Bossier", "geo": null, "id": 148838261022916600, "id_str": "148838261022916608", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": null, "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "http://t.co/bpyyJjW9 Madonna Nurse Lawyer USA Corporatism", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:01 +0000", "from_user": "victorthales", "from_user_id": 73419674, "from_user_id_str": "73419674", "from_user_name": "Victor Thalles *--*", "geo": null, "id": 148838259789791230, "id_str": "148838259789791232", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1689757806/eueu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689757806/eueu_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "V\\u00EDdeo: Yamaha usa AirPort Express para fazer a Siri tocar piano http://t.co/wSMKNL3n", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:00 +0000", "from_user": "sonoticiashoje", "from_user_id": 359022720, "from_user_id_str": "359022720", "from_user_name": "sonot\\u00EDciashoje", "geo": null, "id": 148838258250489860, "id_str": "148838258250489856", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1505591291/facicon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505591291/facicon_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "V\\u00EDdeo: Yamaha usa AirPort Express para fazer a Siri tocar piano: Abram alas para mais uma gambiarra impressionan... http://t.co/lCKhplI9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:00 +0000", "from_user": "Kate_Moser", "from_user_id": 80150239, "from_user_id_str": "80150239", "from_user_name": "Kate Moser", "geo": null, "id": 148838258179190800, "id_str": "148838258179190784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1063217717/me_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1063217717/me_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "Cal Supremes uphold death penalty for Susan Eubanks, who shot and killed her four boys ages 4 to 14 in 1997. http://t.co/LffqeMA7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:00 +0000", "from_user": "LeonardoSabino", "from_user_id": 67696325, "from_user_id_str": "67696325", "from_user_name": "Leonardo Sabino", "geo": null, "id": 148838256786685950, "id_str": "148838256786685952", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1498177169/EU_200px_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1498177169/EU_200px_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "V\\u00EDdeo: Yamaha usa AirPort Express para fazer a Siri tocar piano: Abram alas para mais uma gambiarra impressionan... http://t.co/GI4G15nO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:00 +0000", "from_user": "TheHeartTruth", "from_user_id": 94588784, "from_user_id_str": "94588784", "from_user_name": "The Heart Truth", "geo": null, "id": 148838256170115070, "id_str": "148838256170115074", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/661043829/icon_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/661043829/icon_normal.gif", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "#Exercise protects your heart AND makes you feel good. Check out @HHSGov\\u2019s Be Active Your Way blog for inspiration. http://t.co/wbG5Unnf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:00 +0000", "from_user": "Sou_Geek", "from_user_id": 308218291, "from_user_id_str": "308218291", "from_user_name": "Sou Geek", "geo": null, "id": 148838256149135360, "id_str": "148838256149135360", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697315803/sheldon__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697315803/sheldon__1__normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "V\\u00EDdeo: Yamaha usa AirPort Express para fazer a Siri tocar piano http://t.co/XcjmxaMg #Apple", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:59 +0000", "from_user": "coxsbound", "from_user_id": 103599047, "from_user_id_str": "103599047", "from_user_name": "Paulo", "geo": null, "id": 148838253481558000, "id_str": "148838253481558017", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1600959692/if2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600959692/if2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "1% + rico de USA acapara 40% del ingreso... en apogeo romano top 1% de ingreso ten\\u00EDa 16% de la torta : http://t.co/vQhmQJi1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:59 +0000", "from_user": "taniagr", "from_user_id": 8049782, "from_user_id_str": "8049782", "from_user_name": "Tania Gavi\\u00F1o", "geo": null, "id": 148838252026134530, "id_str": "148838252026134528", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1632762679/t_a_copy_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632762679/t_a_copy_normal.JPG", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:59 +0000", "from_user": "circotimia_", "from_user_id": 221610474, "from_user_id_str": "221610474", "from_user_name": "M a i t e\\u10E6. ", "geo": null, "id": 148838251287945200, "id_str": "148838251287945216", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698350821/jjo__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698350821/jjo__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "YOHE USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:58 +0000", "from_user": "ArmandoGarciia", "from_user_id": 56148422, "from_user_id_str": "56148422", "from_user_name": "Armando Garc\\u00EDa \\u2714", "geo": +{"coordinates": [0,0], "type": "Point"}, "id": 148838250235174900, "id_str": "148838250235174912", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1659932439/304424_2468685840691_1358685601_32836164_346304384_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659932439/304424_2468685840691_1358685601_32836164_346304384_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Si no usa condones Louis Vuitton, no te ama.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:58 +0000", "from_user": "jamjoom44", "from_user_id": 305530741, "from_user_id_str": "305530741", "from_user_name": "\\u0633\\u0627\\u0631\\u0642 \\u0627\\u0644\\u0644\\u064A\\u0644", "geo": null, "id": 148838249501175800, "id_str": "148838249501175808", "iso_language_code": "ar", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1431189380/IMG00134-20110707-1640_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1431189380/IMG00134-20110707-1640_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/cLEpCpr9 \\u0627\\u0644\\u0628\\u0644\\u0627\\u062F \\u0627\\u0644\\u0642\\u062F\\u064A\\u0645 \\u0635\\u0648\\u0631\\u0629 \\u0644\\u0644\\u0648\\u0642\\u0641\\u0640\\u0629 \\u0627\\u0644\\u062A\\u0638\\u0627\\u0645\\u0646\\u064A\\u0629 \\u0627\\u0645\\u0627\\u0645 \\u0645\\u0646\\u0632\\u0644 \\u0633\\u0645\\u0627\\u062D\\u0629 \\u0622\\u064A\\u0629 \\u0627\\u0644\\u0644\\u0647 \\u0627\\u0644\\u0634\\u064A\\u062E \\u0639\\u0628\\u062F\\u0627\\u0644\\u062C\\u0644\\u064A\\u0644 \\u0627\\u0644\\u0645\\u0642\\u062F\\u0627\\u062F #BAHRAIN #usa #uk #iraq @iran", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:58 +0000", "from_user": "Jackemate_", "from_user_id": 175451401, "from_user_id_str": "175451401", "from_user_name": "Forever hago spam.", "geo": null, "id": 148838249023012860, "id_str": "148838249023012865", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701111694/IMG00843BELLA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "ANDREA USA COND\\u00D3N,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:58 +0000", "from_user": "TWEETORACLE", "from_user_id": 124971652, "from_user_id_str": "124971652", "from_user_name": "AURACOOL\\u2122", "geo": null, "id": 148838247873773570, "id_str": "148838247873773570", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702516124/331706383_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702516124/331706383_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "The HQ of the #PORN industry in USA is ________?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:57 +0000", "from_user": "DTNCA", "from_user_id": 158429392, "from_user_id_str": "158429392", "from_user_name": "David Teherani", "geo": null, "id": 148838246800039940, "id_str": "148838246800039936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1374485615/100_2083_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1374485615/100_2083_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@janetbevans @summersanders_ Now I admit I'm smitten with The Trojans @swimhardy & @rebsoni and 4 good reason ;) Actually All Team USA!", "to_user": "janetbevans", "to_user_id": 312307292, "to_user_id_str": "312307292", "to_user_name": "Janet Evans"}, +{"created_at": "Mon, 19 Dec 2011 18:52:57 +0000", "from_user": "bahrainseed", "from_user_id": 301619645, "from_user_id_str": "301619645", "from_user_name": "\\u0627\\u0646\\u0643\\u0633\\u0631 \\u0627\\u0644\\u0642\\u064A\\u062F", "geo": null, "id": 148838244493180930, "id_str": "148838244493180928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1527659526/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1527659526/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Formula 1 teams:Watch #Bahrain Video: blood and pain /10\\nhttp://t.co/jB98q5Lp\\n\\n@F1\\n@14FebTV\\n@ALWEFAQ\\n@SHalMosawi\\n@MARYAMALKHAWAJA\\n#USA\\n#uk", "to_user": "F1", "to_user_id": 69008563, "to_user_id_str": "69008563", "to_user_name": "Formula1.com"}, +{"created_at": "Mon, 19 Dec 2011 18:52:55 +0000", "from_user": "USEmbassyBogota", "from_user_id": 85867670, "from_user_id_str": "85867670", "from_user_name": "US Embassy Bogota", "geo": null, "id": 148838237744545800, "id_str": "148838237744545792", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1607946712/logoembajada_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607946712/logoembajada_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @StateDept: Discurso de la #SecClinton sobre la #mujer, la paz y la seguridad hoy 2:30pm Hora del este (en ingl\\u00E9s) http://t.co/EsnEqIa8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:55 +0000", "from_user": "makenax", "from_user_id": 432651866, "from_user_id_str": "432651866", "from_user_name": "Qaverujo Pufop", "geo": null, "id": 148838235005661200, "id_str": "148838235005661184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @cabojic: long island loan http://t.co/A70Yo1FI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:54 +0000", "from_user": "NayaraCorrea_", "from_user_id": 373066156, "from_user_id_str": "373066156", "from_user_name": " ' Nay Correa", "geo": null, "id": 148838232736542720, "id_str": "148838232736542720", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1660665766/Z1b1w7z4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1660665766/Z1b1w7z4_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u201CHoje voc\\u00EA usa, amanh\\u00E3 \\u00E9 usado. N\\u00E3o \\u00E9 uma amea\\u00E7a \\u2014 \\u00E9 a lei do retorno.\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:54 +0000", "from_user": "4everurgirl94", "from_user_id": 171061358, "from_user_id_str": "171061358", "from_user_name": "Cindy Abdul", "geo": null, "id": 148838230459035650, "id_str": "148838230459035648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1598242134/vcm_s_kf_m160_100x100_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598242134/vcm_s_kf_m160_100x100_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Justin Beiber and Stevie Wonder are reported to be performing at The X Factor USA finale:) Cool!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:54 +0000", "from_user": "_JamesCox", "from_user_id": 320084586, "from_user_id_str": "320084586", "from_user_name": "James Cox", "geo": null, "id": 148838230165434370, "id_str": "148838230165434368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1635982348/James._normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635982348/James._normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@RobertNickson if your spending time in the usa. You gotta have a bigass suv to drive round in ;)", "to_user": "RobertNickson", "to_user_id": 28547171, "to_user_id_str": "28547171", "to_user_name": "Robert", "in_reply_to_status_id": 148837691792965630, "in_reply_to_status_id_str": "148837691792965632"}, +{"created_at": "Mon, 19 Dec 2011 18:52:53 +0000", "from_user": "Lizz_Beeth", "from_user_id": 178375157, "from_user_id_str": "178375157", "from_user_name": "Lizeth Cz'", "geo": null, "id": 148838229477572600, "id_str": "148838229477572608", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697551950/5EWQxOkI_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697551950/5EWQxOkI_normal", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:53 +0000", "from_user": "drduke85", "from_user_id": 244969988, "from_user_id_str": "244969988", "from_user_name": "Will Duke", "geo": null, "id": 148838228584177660, "id_str": "148838228584177664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1360363497/black_crown_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1360363497/black_crown_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@neiltwaterguy I'd like to talk to you about your product being sold in USA. I am on Eastern Time. Please DM me your business email. Thanx", "to_user": "neiltwaterguy", "to_user_id": 23072917, "to_user_id_str": "23072917", "to_user_name": "Neil Tomlinson"}, +{"created_at": "Mon, 19 Dec 2011 18:52:52 +0000", "from_user": "_Adicta", "from_user_id": 123965194, "from_user_id_str": "123965194", "from_user_name": "La que hace spam.", "geo": null, "id": 148838225102897150, "id_str": "148838225102897152", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "GATODVERDAGUER USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:51 +0000", "from_user": "LudibriaNFOs", "from_user_id": 206552383, "from_user_id_str": "206552383", "from_user_name": "Ludibria NFOs", "geo": null, "id": 148838219096662000, "id_str": "148838219096662017", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1150628411/ProfilePhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1150628411/ProfilePhoto_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "[PS3]- Get_Up_And_Dance_USA_PS3-CLANDESTiNE: Release:\\u00A0Get_Up_And_Dance_USA_PS3-CLANDESTiNERelease Date: \\u00A02011-12-19 http://t.co/emdygERz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:50 +0000", "from_user": "kierstenhyvtosh", "from_user_id": 306014563, "from_user_id_str": "306014563", "from_user_name": "Kiersten Tosh", "geo": null, "id": 148838213589544960, "id_str": "148838213589544960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1685426354/4a03b034abe39_m_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685426354/4a03b034abe39_m_1__normal.jpg", "source": "<a href="http://cybermondayorblackfriday.com" rel="nofollow">cybermondayorblackfridaydotcom</a>", "text": "How Do I Get Wall Accents-Family Like Branches On A Tree vinyl lettering wall sayings http://t.co/1a7hctka", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:50 +0000", "from_user": "Mikkomom", "from_user_id": 25674714, "from_user_id_str": "25674714", "from_user_name": "donna stoutenborough", "geo": null, "id": 148838213455319040, "id_str": "148838213455319040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Blue Ridge Atomic Plates 3 in set Made in USA by WhiteShepherd http://t.co/s3RBTwJr via @Etsy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:49 +0000", "from_user": "toutjusteNHPM", "from_user_id": 221500089, "from_user_id_str": "221500089", "from_user_name": "Pitamurti Nur Hayu", "geo": null, "id": 148838213295935500, "id_str": "148838213295935488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1607219359/q45a9nXS_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607219359/q45a9nXS_normal", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "The different about asian and USA : asian = :) usa = (:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:49 +0000", "from_user": "StephJohnso08", "from_user_id": 330738305, "from_user_id_str": "330738305", "from_user_name": "Stephanie Johnson", "geo": null, "id": 148838212578717700, "id_str": "148838212578717696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670881485/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670881485/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "We've officially reached shitsville, USA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:48 +0000", "from_user": "Clorindadtl", "from_user_id": 430068782, "from_user_id_str": "430068782", "from_user_name": "Clorinda Pedri", "geo": null, "id": 148838207872708600, "id_str": "148838207872708609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1677562276/tsq0hmial4_128151810-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677562276/tsq0hmial4_128151810-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "CASE OF 5 90\" Round Organza Overlays: High quality organza fabric. Made in the USA. Easy care - machine wash war... http://t.co/7Stz1duL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:48 +0000", "from_user": "56jean56", "from_user_id": 67156374, "from_user_id_str": "67156374", "from_user_name": "jean aguiar", "geo": null, "id": 148838206148853760, "id_str": "148838206148853760", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1387166575/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1387166575/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@StheDiegues_ voo usa no natal !!\\nHahaha", "to_user": "StheDiegues_", "to_user_id": 110478890, "to_user_id_str": "110478890", "to_user_name": "M4M43 N03L \\u2605", "in_reply_to_status_id": 148838019326165000, "in_reply_to_status_id_str": "148838019326164992"}, +{"created_at": "Mon, 19 Dec 2011 18:52:47 +0000", "from_user": "new_laptopdeals", "from_user_id": 401918634, "from_user_id_str": "401918634", "from_user_name": "best laptop deals", "geo": null, "id": 148838202785009660, "id_str": "148838202785009665", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1617460036/amz_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1617460036/amz_normal.JPG", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#usa #amazon #deal #10: Apple MacBook Air MC506LL/A 11.6-Inch Laptop (OLD VERSION) http://t.co/QQDEJWpo #sale", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:47 +0000", "from_user": "qodahuku", "from_user_id": 431371363, "from_user_id_str": "431371363", "from_user_name": "Aceline Cracker", "geo": null, "id": 148838201652551680, "id_str": "148838201652551680", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680662721/28_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680662721/28_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @zyjydati: auto insurance florida rating http://t.co/bPmY1I7f", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:46 +0000", "from_user": "mtbrewer", "from_user_id": 36284854, "from_user_id_str": "36284854", "from_user_name": " Travis Brewer", "geo": null, "id": 148838197017841660, "id_str": "148838197017841664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1485551179/DO88XrN1_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1485551179/DO88XrN1_normal", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @Reuters_Biz: Home builder sentiment rises for third month: NAHB http://t.co/o0OwBAR6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:45 +0000", "from_user": "CECondesa", "from_user_id": 356431311, "from_user_id_str": "356431311", "from_user_name": "Cl\\u00EDnica Condesa", "geo": null, "id": 148838196321591300, "id_str": "148838196321591297", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1498907829/cec01_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1498907829/cec01_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "en estas vacaciones, cu\\u00EDdate, usa #condon http://t.co/tOqBZSj6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:45 +0000", "from_user": "Acdngirl", "from_user_id": 34763641, "from_user_id_str": "34763641", "from_user_name": "Laurie", "geo": null, "id": 148838195633721340, "id_str": "148838195633721344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695212240/Picture_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695212240/Picture_1_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "Um. Pass. RT @MelroseRedMile: @CameraguyRob @acdngirl It will mostly likely have a hockey focus. ;) CND vs. USA #2012WJC # MCHH", "to_user": "MelroseRedMile", "to_user_id": 53187791, "to_user_id_str": "53187791", "to_user_name": "Melrose Cafe & Bar", "in_reply_to_status_id": 148648833000288260, "in_reply_to_status_id_str": "148648833000288256"}, +{"created_at": "Mon, 19 Dec 2011 18:52:45 +0000", "from_user": "Carlos_Chuc", "from_user_id": 277160846, "from_user_id_str": "277160846", "from_user_name": "--- Este we", "geo": null, "id": 148838194262188030, "id_str": "148838194262188032", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1666723209/IMG-20110709-00087_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666723209/IMG-20110709-00087_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u00BFQue drogas usa el vocalista de zoe que ve monta\\u00F1as transparentes y anemonas de luz?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:44 +0000", "from_user": "Nath_Jimenez", "from_user_id": 346183369, "from_user_id_str": "346183369", "from_user_name": "Nathalia Jim\\u00E9nez", "geo": null, "id": 148838192274083840, "id_str": "148838192274083840", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1677761403/2222_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677761403/2222_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@negra_rolon @taguato_ hey jajajaja yo co queria decir EEUU y me sali\\u00F3 una A tipo USA jajajaja NO estaba ka'ure --'", "to_user": "negra_rolon", "to_user_id": 119837970, "to_user_id_str": "119837970", "to_user_name": "Jess Rol\\u00F3n Riveros.", "in_reply_to_status_id": 148835447160836100, "in_reply_to_status_id_str": "148835447160836097"}, +{"created_at": "Mon, 19 Dec 2011 18:52:44 +0000", "from_user": "jesssy_k", "from_user_id": 253598278, "from_user_id_str": "253598278", "from_user_name": "Jessica Almeida", "geo": null, "id": 148838191401664500, "id_str": "148838191401664512", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1639007599/euuuuuul_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1639007599/euuuuuul_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Me pergunte qualquer coisa. - \\u203A 1. Altura? 2. Peso? 3. Voc\\u00EA fuma? 4. Voc\\u00EA bebe? 5. Usa/j\\u00E1 usou drogas? 6.... http://t.co/tQ5Vw2g0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:44 +0000", "from_user": "ALLARK_NO", "from_user_id": 142093182, "from_user_id_str": "142093182", "from_user_name": "ALLIANCE ARKITEKTER", "geo": null, "id": 148838190390841340, "id_str": "148838190390841344", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1657154829/ALLARK_LOGO_TWITTER_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657154829/ALLARK_LOGO_TWITTER_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @anjathor: Pakken fra USA koster 35 dollar. Kurs p\\u00E5 5,850 blir kr. 204,75. MVA blir i f\\u00F8lge Posten 50,- + fortolling 117,-. Forst\\u00E5 det den som kan.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:44 +0000", "from_user": "binivaxyvo", "from_user_id": 419143172, "from_user_id_str": "419143172", "from_user_name": "Bridie Maymand", "geo": null, "id": 148838189170307070, "id_str": "148838189170307072", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1658809789/24_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658809789/24_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @hylemin: cheap car auto http://t.co/if3ttM35", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:43 +0000", "from_user": "DealsInUrTown", "from_user_id": 402331767, "from_user_id_str": "402331767", "from_user_name": "Deals in your Town", "geo": null, "id": 148838188134314000, "id_str": "148838188134313984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1616251238/bayarea_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616251238/bayarea_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Marsh I am incrdbly excited! I just found a group coupon to my favorite restaurant for 90 percent off. http://t.co/14PFQ9BA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:43 +0000", "from_user": "Clandestino17", "from_user_id": 382824090, "from_user_id_str": "382824090", "from_user_name": "Clandestino", "geo": null, "id": 148838186997661700, "id_str": "148838186997661697", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1567186641/Escanear003_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1567186641/Escanear003_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@mitos Me parece muy bien. Si alguien usa un cuchillo para asesinar, no se puede condenar al que los fabrica.", "to_user": "mitos", "to_user_id": 7888572, "to_user_id_str": "7888572", "to_user_name": "Jaime Sancho", "in_reply_to_status_id": 148835271352393730, "in_reply_to_status_id_str": "148835271352393728"}, +{"created_at": "Mon, 19 Dec 2011 18:52:42 +0000", "from_user": "eloisejcardona", "from_user_id": 305769272, "from_user_id_str": "305769272", "from_user_name": "Eloise Cardona", "geo": null, "id": 148838181717016580, "id_str": "148838181717016578", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702568946/images_1__normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702568946/images_1__normal", "source": "<a href="http://beallsblackfriday.com" rel="nofollow">beallsblackfridaydotcom</a>", "text": "Who Sells The Cheapest Vintage Pioneer Receivers-Polk Audio TSi400 Floorstanding http://t.co/i0EkI8je", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:42 +0000", "from_user": "TopTenEBooks", "from_user_id": 295241806, "from_user_id_str": "295241806", "from_user_name": "Richard Floyd", "geo": null, "id": 148838180290969600, "id_str": "148838180290969600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1423356096/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1423356096/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #19 Water for Elephants: A Novel: As a young man, Jacob Jankowski was tossed by fate onto a rickety t... http://t.co/M12sA4te", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:41 +0000", "from_user": "mariapaulaEV", "from_user_id": 135608507, "from_user_id_str": "135608507", "from_user_name": "Maria Paula \\u263A\\u263B", "geo": null, "id": 148838179426926600, "id_str": "148838179426926593", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699112147/390567_215776428491885_100001785874055_484031_953749734_a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699112147/390567_215776428491885_100001785874055_484031_953749734_a_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "clara usa meu msn na casa dela, que bonito, ai eu entro aqui e ela entra l\\u00E1, que monito", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:41 +0000", "from_user": "TopTenEBooks", "from_user_id": 295241806, "from_user_id_str": "295241806", "from_user_name": "Richard Floyd", "geo": null, "id": 148838178726490100, "id_str": "148838178726490113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1423356096/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1423356096/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #6518 The Misanthrope's Guide to Life: (Go Away!): Misanthrope, n.: 1.) One who hates mankind; a curm... http://t.co/tgoHO2lv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:41 +0000", "from_user": "TopTenEBooks", "from_user_id": 295241806, "from_user_id_str": "295241806", "from_user_name": "Richard Floyd", "geo": null, "id": 148838177346555900, "id_str": "148838177346555904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1423356096/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1423356096/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #318 Crazy For You: ** Nominated for \"Best Contemporary Romance of 2010\" at The Romance Reviews **Cra... http://t.co/0piIx5Th", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:41 +0000", "from_user": "Doraivonn", "from_user_id": 33409600, "from_user_id_str": "33409600", "from_user_name": "Dora Martinez", "geo": null, "id": 148838175865966600, "id_str": "148838175865966593", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1560241088/Oto_o_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1560241088/Oto_o_normal", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:40 +0000", "from_user": "TopTenEBooks", "from_user_id": 295241806, "from_user_id_str": "295241806", "from_user_name": "Richard Floyd", "geo": null, "id": 148838175207469060, "id_str": "148838175207469056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1423356096/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1423356096/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #218 Alcatraz: A Definitive History of the Penitentiary Years: Now completely revised and updated! NO... http://t.co/LpgTqjHj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:40 +0000", "from_user": "TopTenEBooks", "from_user_id": 295241806, "from_user_id_str": "295241806", "from_user_name": "Richard Floyd", "geo": null, "id": 148838173928206340, "id_str": "148838173928206336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1423356096/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1423356096/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #2217 How to Date a Werewolf (Rylie Cruz Series): Romance can be a hairy business--especially when yo... http://t.co/dZqLejsD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:39 +0000", "from_user": "MyGirlNesh", "from_user_id": 105767786, "from_user_id_str": "105767786", "from_user_name": "Cannon (cannon)", "geo": null, "id": 148838171373862900, "id_str": "148838171373862912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680973668/MyGirlNesh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680973668/MyGirlNesh_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "\\uD83D\\uDE1ART @savagejedi: Drinking | watching espn | thinking abt my lady | thinking abt fam | thinking abt USA | this shit cray", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:39 +0000", "from_user": "WillDibble", "from_user_id": 347021987, "from_user_id_str": "347021987", "from_user_name": "Will Sumwalt", "geo": null, "id": 148838171269013500, "id_str": "148838171269013504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687068912/380256_2290200659796_1392376548_32235506_2052343563_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687068912/380256_2290200659796_1392376548_32235506_2052343563_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@mickeyhowell hell yeah #MERICA #USA!!!", "to_user": "mickeyhowell", "to_user_id": 325924202, "to_user_id_str": "325924202", "to_user_name": "Mickey Howell", "in_reply_to_status_id": 148834661370576900, "in_reply_to_status_id_str": "148834661370576896"}, +{"created_at": "Mon, 19 Dec 2011 18:52:39 +0000", "from_user": "gj7meneld", "from_user_id": 370495781, "from_user_id_str": "370495781", "from_user_name": "Norberto Segura", "geo": null, "id": 148838168286855170, "id_str": "148838168286855168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1535332189/72_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1535332189/72_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "HQRP Replacement AC Adapter / Charger compatible with Sony HandyCam HDR-SR220, DCR-SX85, DCR-SX65, DCR-SX45 Camcorder with USA Cord & Eu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:39 +0000", "from_user": "TameikaErne1017", "from_user_id": 435503892, "from_user_id_str": "435503892", "from_user_name": "Tameika Erne", "geo": null, "id": 148838168278482940, "id_str": "148838168278482945", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "http://t.co/AdK4WxRc U2 China Julia Roberts USA Garden Suit Service", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:39 +0000", "from_user": "bicionudos", "from_user_id": 314713566, "from_user_id_str": "314713566", "from_user_name": "Bicionudos", "geo": null, "id": 148838167531892740, "id_str": "148838167531892736", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1507462763/BicionudosTwitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1507462763/BicionudosTwitter_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "\\u00A1Usa el Casco! Campa\\u00F1a de Seguridad Vial Plaza Sesamo BID FIA. Fundacion Cavat Nicole Paredes http://t.co/7qJS7fLQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:38 +0000", "from_user": "Heart_Selenator", "from_user_id": 419074829, "from_user_id_str": "419074829", "from_user_name": "I \\u2665 U ~ SG", "geo": null, "id": 148838167125041150, "id_str": "148838167125041152", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700502819/tumblr_lpq3w60O8z1qlfj1f_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700502819/tumblr_lpq3w60O8z1qlfj1f_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SelenaMyPeace: @HechosSMGomez Estamos todos destrozados! Tengo ganas de ir a USA buscarl\\u00E1 & abrazarla bien fuerte para que sepa que nos va a tener SIEMPRE!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:37 +0000", "from_user": "wokogeb", "from_user_id": 432308536, "from_user_id_str": "432308536", "from_user_name": "Vaideha Halle", "geo": null, "id": 148838162175770620, "id_str": "148838162175770624", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1682846153/8_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682846153/8_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @funycynaxoh: principal loan forgiveness http://t.co/2kxXQ4WU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:37 +0000", "from_user": "Luchosaur", "from_user_id": 52170549, "from_user_id_str": "52170549", "from_user_name": "Luis Bracho", "geo": null, "id": 148838161584365570, "id_str": "148838161584365568", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1650293241/IMG01442-20111019-1309_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650293241/IMG01442-20111019-1309_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "RT @Poklouz: Carlos usa Avast y Edward Norton.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:37 +0000", "from_user": "vicvitturi_", "from_user_id": 402117253, "from_user_id_str": "402117253", "from_user_name": "vicson victturi shak", "geo": null, "id": 148838159176839170, "id_str": "148838159176839169", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702246292/Imagem_032_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702246292/Imagem_032_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:37 +0000", "from_user": "WGNWeatherGuy", "from_user_id": 94097976, "from_user_id_str": "94097976", "from_user_name": "Tim McGill", "geo": null, "id": 148838158983888900, "id_str": "148838158983888896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/555055828/mewgn_normal.bmp", "profile_image_url_https": "https://si0.twimg.com/profile_images/555055828/mewgn_normal.bmp", "source": "<a href="http://www.usatoday.com/ipad" rel="nofollow">USA TODAY for iPad</a>", "text": "Scientist wants to make snowflake formation crystal-clear http://t.co/1hRWZrlz via USA TODAY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:36 +0000", "from_user": "g8erlaw68", "from_user_id": 239026545, "from_user_id_str": "239026545", "from_user_name": "Michael", "geo": null, "id": 148838157847248900, "id_str": "148838157847248897", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1650544016/FSU_SUCKS2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650544016/FSU_SUCKS2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Yet another reason 2 kick Bill Maher n the balls! #USA RT @YankeeMegInPHL: LOL RT @TBJprod: 25 ppl thought Lil Kim died http://t.co/gKfiK9kp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:35 +0000", "from_user": "OliDobbs", "from_user_id": 41916530, "from_user_id_str": "41916530", "from_user_name": "Oli Dobbs", "geo": null, "id": 148838151773888500, "id_str": "148838151773888512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1653404174/382282_283758664997743_100000908356138_842557_1769165919_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653404174/382282_283758664997743_100000908356138_842557_1769165919_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Ron Paul back on top in Iowa, new poll says http://t.co/xx4lyK3G", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:34 +0000", "from_user": "LSUJEFF", "from_user_id": 19218108, "from_user_id_str": "19218108", "from_user_name": "Jeff Ui", "geo": null, "id": 148838148791742460, "id_str": "148838148791742464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1648957882/9f1d82de-1ad2-457f-bdd7-2aa92344a4ae_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648957882/9f1d82de-1ad2-457f-bdd7-2aa92344a4ae_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @gopthinking: We have 625,000 miles of pipeline in USA, but the Keystone Pipeline is too dangerous! ROFL!\\n\\n#p2 #tcot #GOP #GOP2012", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:52:36 +0000", "from_user": "g8erlaw68", "from_user_id": 239026545, "from_user_id_str": "239026545", "from_user_name": "Michael", "geo": null, "id": 148838157847248900, "id_str": "148838157847248897", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1650544016/FSU_SUCKS2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650544016/FSU_SUCKS2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Yet another reason 2 kick Bill Maher n the balls! #USA RT @YankeeMegInPHL: LOL RT @TBJprod: 25 ppl thought Lil Kim died http://t.co/gKfiK9kp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:35 +0000", "from_user": "OliDobbs", "from_user_id": 41916530, "from_user_id_str": "41916530", "from_user_name": "Oli Dobbs", "geo": null, "id": 148838151773888500, "id_str": "148838151773888512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1653404174/382282_283758664997743_100000908356138_842557_1769165919_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653404174/382282_283758664997743_100000908356138_842557_1769165919_n_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Ron Paul back on top in Iowa, new poll says http://t.co/xx4lyK3G", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:34 +0000", "from_user": "LSUJEFF", "from_user_id": 19218108, "from_user_id_str": "19218108", "from_user_name": "Jeff Ui", "geo": null, "id": 148838148791742460, "id_str": "148838148791742464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1648957882/9f1d82de-1ad2-457f-bdd7-2aa92344a4ae_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648957882/9f1d82de-1ad2-457f-bdd7-2aa92344a4ae_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @gopthinking: We have 625,000 miles of pipeline in USA, but the Keystone Pipeline is too dangerous! ROFL!\\n\\n#p2 #tcot #GOP #GOP2012", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:33 +0000", "from_user": "LanceTueller", "from_user_id": 437655951, "from_user_id_str": "437655951", "from_user_name": "Lance Tueller", "geo": null, "id": 148838146119962620, "id_str": "148838146119962624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": null, "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Morewood USA: Oh Lord it's hard to be humble... http://t.co/NkBQzped", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:33 +0000", "from_user": "MnlUribe", "from_user_id": 81175014, "from_user_id_str": "81175014", "from_user_name": "Manuel Uribe", "geo": null, "id": 148838145071394800, "id_str": "148838145071394816", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1337717009/IMG_0955_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1337717009/IMG_0955_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@GabiRo14 Jajajaja, de seguro que est\\u00E1 vendiendo lubricantes y vainas sexuales. Claro, como ella no los usa por ser tan fea..", "to_user": "GabiRo14", "to_user_id": 180637053, "to_user_id_str": "180637053", "to_user_name": "Gabriela'Rodriguez", "in_reply_to_status_id": 148836573667008500, "in_reply_to_status_id_str": "148836573667008512"}, +{"created_at": "Mon, 19 Dec 2011 18:52:32 +0000", "from_user": "DrPilantra", "from_user_id": 60165556, "from_user_id_str": "60165556", "from_user_name": "Neto Melo", "geo": null, "id": 148838141950832640, "id_str": "148838141950832640", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692908088/kkk_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692908088/kkk_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "gorda que usa blusa curta: POR FAVOR PARA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:31 +0000", "from_user": "luizaportalupi", "from_user_id": 184863129, "from_user_id_str": "184863129", "from_user_name": "do Paulo :3", "geo": null, "id": 148838134891806720, "id_str": "148838134891806721", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1661039379/381711_230464800351651_100001643982713_647075_407309399_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661039379/381711_230464800351651_100001643982713_647075_407309399_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @DialogoDeAlunos: #Eu: - Voc\\u00EA usa qual operadora? #Colega: - A tim! #Eu: - Sa\\u00FAde! #DialogoDeAlunos", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:30 +0000", "from_user": "JobsQ", "from_user_id": 375000520, "from_user_id_str": "375000520", "from_user_name": "Jobs Q", "geo": null, "id": 148838132769493000, "id_str": "148838132769492992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1559998584/Ball12_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1559998584/Ball12_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Click on Job Now: Communications Operator - City of Orangeburg - Orangeburg, SC http://t.co/unc2PO33", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:30 +0000", "from_user": "Berktronics", "from_user_id": 400208733, "from_user_id_str": "400208733", "from_user_name": "Berktronics", "geo": null, "id": 148838132677222400, "id_str": "148838132677222400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1651182539/speaker-icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651182539/speaker-icon_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Apple Watch: T-Mobile USA Spectrum Refarming Lets Some iPhone Users Access 3G Data Speeds http://t.co/UCTScatq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:30 +0000", "from_user": "JobsQ", "from_user_id": 375000520, "from_user_id_str": "375000520", "from_user_name": "Jobs Q", "geo": null, "id": 148838131704135680, "id_str": "148838131704135680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1559998584/Ball12_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1559998584/Ball12_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Click on Job Now: Data Entry - Typist Work From Home - 2WAH - Houston, TX http://t.co/unc2PO33", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:30 +0000", "from_user": "JobsQ", "from_user_id": 375000520, "from_user_id_str": "375000520", "from_user_name": "Jobs Q", "geo": null, "id": 148838130680741900, "id_str": "148838130680741888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1559998584/Ball12_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1559998584/Ball12_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Click on Job Now: Supply Clerk - Mobile Infirmary Medical Center - Mobile, AL http://t.co/unc2PO33", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:29 +0000", "from_user": "JobsQ", "from_user_id": 375000520, "from_user_id_str": "375000520", "from_user_name": "Jobs Q", "geo": null, "id": 148838129095286800, "id_str": "148838129095286785", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1559998584/Ball12_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1559998584/Ball12_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Click on Job Now: Meter Reader PT - Local 659 - Pacificorp - Roseburg, OR http://t.co/unc2PO33", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:29 +0000", "from_user": "Buhowl", "from_user_id": 7570522, "from_user_id_str": "7570522", "from_user_name": "Jes\\u00FAs Cuevas Pe\\u00F1a", "geo": null, "id": 148838128499687420, "id_str": "148838128499687424", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1572073468/caricatura_buho_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572073468/caricatura_buho_normal.png", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:29 +0000", "from_user": "Wavaqwo", "from_user_id": 431688038, "from_user_id_str": "431688038", "from_user_name": "Wava Mcentee", "geo": null, "id": 148838128436789250, "id_str": "148838128436789248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681009426/4rlsxb454p_134297279_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681009426/4rlsxb454p_134297279_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "USA Industries S439 Domestic Starter: USA Drive Shafts S439 http://t.co/VW394UA6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:29 +0000", "from_user": "VernaS", "from_user_id": 17222503, "from_user_id_str": "17222503", "from_user_name": "VernaS", "geo": null, "id": 148838126079578100, "id_str": "148838126079578113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1597233397/White_Tiger_Face_Prowl_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1597233397/White_Tiger_Face_Prowl_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Nuts /permit violations/fined ... in usa history??.. Einstien, Tesla, Ford, Edison, Mark Twain , Barn Storming Wright Bros.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:28 +0000", "from_user": "rockerick113", "from_user_id": 164108865, "from_user_id_str": "164108865", "from_user_name": "Erick Catalan", "geo": null, "id": 148838124863242240, "id_str": "148838124863242241", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1679918722/tumblr_lgmx5zxQ7g1qdc06jo1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679918722/tumblr_lgmx5zxQ7g1qdc06jo1_500_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "me he dado cuenta q ya nadie usa la expresion LMFAO debido al grupo musical.....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:28 +0000", "from_user": "Bellaco_Leon", "from_user_id": 202386842, "from_user_id_str": "202386842", "from_user_name": "David", "geo": null, "id": 148838124821299200, "id_str": "148838124821299200", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1583144070/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583144070/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@wisinyyandel felicidades papa cumple muchos mas saludos desde Pennsylvania USA ya tu sae bendiciones #FelixCumplea\\u00F1osWisin", "to_user": "wisinyyandel", "to_user_id": 25410548, "to_user_id_str": "25410548", "to_user_name": "Wisin y Yandel"}, +{"created_at": "Mon, 19 Dec 2011 18:52:28 +0000", "from_user": "jaybs", "from_user_id": 14324310, "from_user_id_str": "14324310", "from_user_name": "John B Sheffield", "geo": null, "id": 148838124766769150, "id_str": "148838124766769152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1671067029/jaybstwitterfacebookdec10_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671067029/jaybstwitterfacebookdec10_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Spiceboy81 Not impressed with the Kindle, now the new Amazon Kindle Fire! looks cool, out in USA now, here early 2012! J", "to_user": "Spiceboy81", "to_user_id": 22691361, "to_user_id_str": "22691361", "to_user_name": "Paul Spicer", "in_reply_to_status_id": 148836669297147900, "in_reply_to_status_id_str": "148836669297147904"}, +{"created_at": "Mon, 19 Dec 2011 18:52:28 +0000", "from_user": "rafaxp91", "from_user_id": 344369539, "from_user_id_str": "344369539", "from_user_name": "Rafa Rodriguez", "geo": null, "id": 148838123047108600, "id_str": "148838123047108609", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1601852895/shirt_vgcats_bloodylies_LRG_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601852895/shirt_vgcats_bloodylies_LRG_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Vamos no sean malvados y contesten, \\u00BFqui\\u00E9n mas usa Whatsapp? Es para poder agregarlos a los contactos de mi iPod :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:28 +0000", "from_user": "LizhetUsmile", "from_user_id": 159420308, "from_user_id_str": "159420308", "from_user_name": "LoveCanadianBoy \\u2588\\u2665\\u2588 ", "geo": null, "id": 148838121864302600, "id_str": "148838121864302592", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627630232/309852_258949520822486_100001223215009_801387_835360584_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627630232/309852_258949520822486_100001223215009_801387_835360584_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SelenaMyPeace: @HechosSMGomez Estamos todos destrozados! Tengo ganas de ir a USA buscarl\\u00E1 & abrazarla bien fuerte para que sepa que nos va a tener SIEMPRE!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:27 +0000", "from_user": "_Adicta", "from_user_id": 123965194, "from_user_id_str": "123965194", "from_user_name": "La que hace spam.", "geo": null, "id": 148838118336901120, "id_str": "148838118336901121", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "JACKEMATE USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:27 +0000", "from_user": "GeoMachado_", "from_user_id": 116742929, "from_user_id_str": "116742929", "from_user_name": "Geovanna Machado", "geo": null, "id": 148838118261395460, "id_str": "148838118261395456", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1559722328/HPIM1583_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1559722328/HPIM1583_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Me pergunte qualquer coisa. - \\u203A 1. Altura? 2. Peso? 3. Voc\\u00EA fuma? 4. Voc\\u00EA bebe? 5. Usa/j\\u00E1 usou drogas? 6.... http://t.co/K89aiyP6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:26 +0000", "from_user": "SheilaSabino", "from_user_id": 77864879, "from_user_id_str": "77864879", "from_user_name": "Sheila Sabino", "geo": null, "id": 148838115602210800, "id_str": "148838115602210817", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702236766/joelma_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702236766/joelma_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Aham.. KKKKKKKKKKKKKKK' S\\u00F3 porque a gente sabe a linha de xamp\\u00FA que a mam\\u00E3e usa *-*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:26 +0000", "from_user": "CoronadoNow", "from_user_id": 410792739, "from_user_id_str": "410792739", "from_user_name": "Coronado Now", "geo": null, "id": 148838115035971600, "id_str": "148838115035971584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1635967792/helo_pic_sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635967792/helo_pic_sm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "US #CERT Personal Device Security During the Holiday Season: As the winter holiday travel season begins, US-CERT... http://t.co/S3YWY9LB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:26 +0000", "from_user": "NerdBusters", "from_user_id": 177389362, "from_user_id_str": "177389362", "from_user_name": "Nerd Busters", "geo": null, "id": 148838112838156300, "id_str": "148838112838156288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1124468919/nerdbusters_logo_square_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1124468919/nerdbusters_logo_square_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Personal Device Security During the Holiday Season: As the winter holiday travel season begins, US-CERT would li... http://t.co/YVdmo7jH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:25 +0000", "from_user": "infotechmike", "from_user_id": 136107694, "from_user_id_str": "136107694", "from_user_name": "Michael Stanton", "geo": null, "id": 148838111701504000, "id_str": "148838111701504002", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1351806156/woodchuck_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1351806156/woodchuck_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Personal Device Security During the Holiday Season: As the winter holiday travel season begins, US-CERT would li... http://t.co/uhF2Ucpd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:26 +0000", "from_user": "claux_85", "from_user_id": 142559891, "from_user_id_str": "142559891", "from_user_name": "ariz", "geo": null, "id": 148838111462428670, "id_str": "148838111462428672", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1638894137/DSC03799_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638894137/DSC03799_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "wooooooww A MI ME GUSTA MAS ESTE CHICO MALO QUE USA @converse_mexico ... ;D http://t.co/u7jvZ5XM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:25 +0000", "from_user": "gloriamayela", "from_user_id": 157773170, "from_user_id_str": "157773170", "from_user_name": "gloria mayela", "geo": null, "id": 148838110883610620, "id_str": "148838110883610625", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1509270272/SDC11401_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1509270272/SDC11401_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "la gente usa mascaras", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:25 +0000", "from_user": "pkoshakji", "from_user_id": 43841203, "from_user_id_str": "43841203", "from_user_name": "Peter Koshakji", "geo": null, "id": 148838110845878270, "id_str": "148838110845878272", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1573027551/Kishakji_Peter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1573027551/Kishakji_Peter_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Personal Device Security During the Holiday Season: As the winter holiday travel season begins, US-CERT would li... http://t.co/Alko8pFk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:25 +0000", "from_user": "directnewsart", "from_user_id": 108008516, "from_user_id_str": "108008516", "from_user_name": "Direct News Articles", "geo": null, "id": 148838108945850370, "id_str": "148838108945850369", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Watch San Diego Chargers vs Baltimore Ravens Live Stream Football USA NFL 18th December\\u2026 http://t.co/HyXk6W5M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:24 +0000", "from_user": "Melissa_Foster", "from_user_id": 27873266, "from_user_id_str": "27873266", "from_user_name": "Melissa Foster", "geo": null, "id": 148838107079385100, "id_str": "148838107079385089", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/523956034/MelissaFoster_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/523956034/MelissaFoster_normal.jpg", "source": "<a href="http://www.socialoomph.com" rel="nofollow">SocialOomph</a>", "text": "Excited my book is recommended on USA Today book blog. COME BACK TO ME http://t.co/fgNrYaC7 #IAN1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:22 +0000", "from_user": "buenolulu", "from_user_id": 282173241, "from_user_id_str": "282173241", "from_user_name": "Luana Bueno ", "geo": null, "id": 148838098468487170, "id_str": "148838098468487168", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686053347/18112011684_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686053347/18112011684_1_normal.jpg", "source": "<a href="http://messaging.nokia.com/site/main.do" rel="nofollow"> Ovi by Nokia </a>", "text": "Nao entendo essas veia que usa rel\\u00F3gio da champion com pulseira rosa e pinta as unhas de verde n\\u00E9 masssss", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:22 +0000", "from_user": "Penguirl", "from_user_id": 288936084, "from_user_id_str": "288936084", "from_user_name": "Tina K.", "geo": null, "id": 148838098392981500, "id_str": "148838098392981505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1581164372/AppleLogoClassicTS_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1581164372/AppleLogoClassicTS_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @thejenomatic: AMA's motorcyclist of the year is a WOMAN RIDER! Thank her for the change of the lead law! http://t.co/xZRYUoMp\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:22 +0000", "from_user": "MaherFarah", "from_user_id": 16551496, "from_user_id_str": "16551496", "from_user_name": "Maher Farah", "geo": null, "id": 148838097575084030, "id_str": "148838097575084032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700613106/395666_660779627283_211201924_33741581_476359932_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700613106/395666_660779627283_211201924_33741581_476359932_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @MSU_Basketball: #Spartans move up to No. 19 in AP Top 25 and No. 20 in ESPN/USA Today Coaches Poll.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:20 +0000", "from_user": "Loop1ng", "from_user_id": 54740760, "from_user_id_str": "54740760", "from_user_name": "Looping", "geo": null, "id": 148838091468177400, "id_str": "148838091468177408", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1625643817/Capture_d_e_cran_2011-05-17_a__17.20.09_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1625643817/Capture_d_e_cran_2011-05-17_a__17.20.09_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "Consomer made in France\\u2026 Mon fauteuil roulant est italien, mes converses m\\u00EAme pas made in USA, et mon samsung cor\\u00E9en fabriqu\\u00E9 en chine !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:19 +0000", "from_user": "qyqiderohuv", "from_user_id": 433723831, "from_user_id_str": "433723831", "from_user_name": "Farih Barthelemy", "geo": null, "id": 148838086967689200, "id_str": "148838086967689216", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1686008062/1079_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686008062/1079_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "auto insurance agents columbia sc http://t.co/Sv9t1xkh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:19 +0000", "from_user": "geek_tiadh", "from_user_id": 105219666, "from_user_id_str": "105219666", "from_user_name": "g33k d1 p1nd4 3 vcs\\u263A", "geo": null, "id": 148838084446928900, "id_str": "148838084446928896", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698592347/IMG10479_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698592347/IMG10479_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@01HuskySiberian a carolzinha irm\\u00E3 da denise? e.e a japa baixinha e etc q usa aparelho ? \\u00B4pldasp\\u00B4l", "to_user": "01HuskySiberian", "to_user_id": 227847924, "to_user_id_str": "227847924", "to_user_name": "foREVer", "in_reply_to_status_id": 148837921485635600, "in_reply_to_status_id_str": "148837921485635584"}, +{"created_at": "Mon, 19 Dec 2011 18:52:18 +0000", "from_user": "awesomezilla", "from_user_id": 19829472, "from_user_id_str": "19829472", "from_user_name": "Charles Whetstone", "geo": null, "id": 148838081083080700, "id_str": "148838081083080704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1189343765/dabs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1189343765/dabs_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Shouldn't have been hipster hitler last night. Almost pooped my pants on the way to work. Oh, karma. #USA http://t.co/NGwfPiDu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:18 +0000", "from_user": "verrieryzbt2", "from_user_id": 395965247, "from_user_id_str": "395965247", "from_user_name": "Verrier Stewart", "geo": null, "id": 148838080428769280, "id_str": "148838080428769280", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1601052397/imagesCAJMAJIG_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601052397/imagesCAJMAJIG_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@DonnieKuzma http://t.co/ttjjF9QQ", "to_user": "DonnieKuzma", "to_user_id": 193348023, "to_user_id_str": "193348023", "to_user_name": "Donnie Kuzma", "in_reply_to_status_id": 148774902223220740, "in_reply_to_status_id_str": "148774902223220736"}, +{"created_at": "Mon, 19 Dec 2011 18:52:17 +0000", "from_user": "jamjoom44", "from_user_id": 305530741, "from_user_id_str": "305530741", "from_user_name": "\\u0633\\u0627\\u0631\\u0642 \\u0627\\u0644\\u0644\\u064A\\u0644", "geo": null, "id": 148838078319050750, "id_str": "148838078319050752", "iso_language_code": "ar", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1431189380/IMG00134-20110707-1640_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1431189380/IMG00134-20110707-1640_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/cLEpCpr9 \\u0627\\u0644\\u0628\\u0644\\u0627\\u062F \\u0627\\u0644\\u0642\\u062F\\u064A\\u0645 \\u0635\\u0648\\u0631\\u0629 \\u0644\\u0644\\u0648\\u0642\\u0641\\u0629 \\u0627\\u0644\\u062A\\u0638\\u0627\\u0645\\u0646\\u064A\\u0629 \\u0627\\u0645\\u0627\\u0645 \\u0645\\u0646\\u0632\\u0644 \\u0633\\u0645\\u0627\\u062D\\u0629 \\u0622\\u064A\\u0629 \\u0627\\u0644\\u0644\\u0647 \\u0627\\u0644\\u0634\\u064A\\u062E \\u0639\\u0628\\u062F\\u0627\\u0644\\u062C\\u0644\\u064A\\u0644 \\u0627\\u0644\\u0645\\u0642\\u062F\\u0627\\u062F #BAHRAIN #usa #uk #iraq @iran", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:16 +0000", "from_user": "imageswebsites", "from_user_id": 27708398, "from_user_id_str": "27708398", "from_user_name": "Images Websites", "geo": null, "id": 148838074699362300, "id_str": "148838074699362305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/128611599/Honey-Glazed-Donut_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/128611599/Honey-Glazed-Donut_normal.jpg", "source": "<a href="http://www.ajaymatharu.com/" rel="nofollow">Tweet Old Post</a>", "text": "http://t.co/YROy3M2q", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:15 +0000", "from_user": "P3rliss", "from_user_id": 117926964, "from_user_id_str": "117926964", "from_user_name": "Perlis Ogando", "geo": null, "id": 148838069330657280, "id_str": "148838069330657280", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1690170006/331397689_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690170006/331397689_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @BoletasGratis: P3rliss Usa el HT #EllaQuiereCualto y GANAS Boletas VIP TU + 2 acompa\\u00F1antes para Joswa In Da House @ ZUO -Malecon Center", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:14 +0000", "from_user": "furniture_4sale", "from_user_id": 125630987, "from_user_id_str": "125630987", "from_user_name": "PennySaver Furniture", "geo": null, "id": 148838062665895940, "id_str": "148838062665895936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/770053047/psusa_bigger_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/770053047/psusa_bigger_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Southwest Style Armoire: Southwest Style Armoire\\nThe Armoire has two drawers and two removabl... http://t.co/4YVw5s7F Furniture for sale", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:13 +0000", "from_user": "furniture_4sale", "from_user_id": 125630987, "from_user_id_str": "125630987", "from_user_name": "PennySaver Furniture", "geo": null, "id": 148838060753301500, "id_str": "148838060753301504", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/770053047/psusa_bigger_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/770053047/psusa_bigger_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Dresser & Chest: Dresser & Chest are of all wood in good condition.\\nThe Dresser is 53\"w x 32\"... http://t.co/MDsDPS39 Furniture for sale", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:13 +0000", "from_user": "RandulisDelSwag", "from_user_id": 361418871, "from_user_id_str": "361418871", "from_user_name": "\\u212C\\u212F\\u2113i\\u212F\\u212C\\u212F\\u211B\\u2665", "geo": null, "id": 148838058270277630, "id_str": "148838058270277632", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670271470/296754_1990964734610_1258132827_31771758_1751367057_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670271470/296754_1990964734610_1258132827_31771758_1751367057_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SelenaNoEsReal: Ese momento inc\\u00F3modo cuando todo el mundo se da cuenta de que Selena Gomez usa PlayBack.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:12 +0000", "from_user": "profchandler", "from_user_id": 14343689, "from_user_id_str": "14343689", "from_user_name": "Profchandler", "geo": null, "id": 148838057985052670, "id_str": "148838057985052673", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1609253966/African_map_on_boy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609253966/African_map_on_boy_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "I think what happened to banking mortgages & real estate in USA is something like a horror flick except the victims bleed internally", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:12 +0000", "from_user": "HardryTellez", "from_user_id": 257638804, "from_user_id_str": "257638804", "from_user_name": "Hardry Tellez", "geo": null, "id": 148838057842442240, "id_str": "148838057842442240", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686289988/JIJ2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686289988/JIJ2_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:12 +0000", "from_user": "AliiceeA", "from_user_id": 372011123, "from_user_id_str": "372011123", "from_user_name": "'Aliicee Edwards", "geo": null, "id": 148838056932290560, "id_str": "148838056932290560", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700867695/w.lentestwklns_normal.jpg-large", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700867695/w.lentestwklns_normal.jpg-large", "source": "<a href="http://twitter.com/">web</a>", "text": "Yo Soy De USA<3 Y Tu?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:10 +0000", "from_user": "DTNUSA", "from_user_id": 219913533, "from_user_id_str": "219913533", "from_user_name": "DTN USA", "geo": null, "id": 148838048896004100, "id_str": "148838048896004097", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696502703/DTN_USA_DEC_16_2011_CORRECTED_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696502703/DTN_USA_DEC_16_2011_CORRECTED_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "DTN USA: Struggling Santorum bets big on Iowa: DES MOINES, Iowa, Dec 19 (Reuters) - Rick Santorum\\nthought he had... http://t.co/zI3qs0kv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:10 +0000", "from_user": "Bahrain_Ctzn", "from_user_id": 414552960, "from_user_id_str": "414552960", "from_user_name": "Ba7rainiya", "geo": null, "id": 148838048833089540, "id_str": "148838048833089536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1643342622/790B618A-9637-4AFF-B10C-1D0FD6D89F7D_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643342622/790B618A-9637-4AFF-B10C-1D0FD6D89F7D_normal", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @Al3AMEED_70: \"@iScrat: @Al3AMEED_70 @7areghum Thugs burn tires opposite to AlMameer local road 8:50pm #Bahrain @Fathe7hum\"#USembassy #uk #usa #GCC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:10 +0000", "from_user": "DTNUSA", "from_user_id": 219913533, "from_user_id_str": "219913533", "from_user_name": "DTN USA", "geo": null, "id": 148838047641903100, "id_str": "148838047641903104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696502703/DTN_USA_DEC_16_2011_CORRECTED_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696502703/DTN_USA_DEC_16_2011_CORRECTED_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "DTN USA: Hungary media, church laws unconstitutional -court: BUDAPEST, Dec 19 (Reuters) - Hungary's constitution... http://t.co/fR1FA7cD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:10 +0000", "from_user": "cocejem", "from_user_id": 433579700, "from_user_id_str": "433579700", "from_user_name": "Brygitta Macelharge", "geo": null, "id": 148838047432179700, "id_str": "148838047432179712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685561486/1350_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685561486/1350_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "auto insurance total loss tips http://t.co/5edibK8v", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:10 +0000", "from_user": "DTNUSA", "from_user_id": 219913533, "from_user_id_str": "219913533", "from_user_name": "DTN USA", "geo": null, "id": 148838046085816320, "id_str": "148838046085816322", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696502703/DTN_USA_DEC_16_2011_CORRECTED_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696502703/DTN_USA_DEC_16_2011_CORRECTED_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "DTN USA: UPDATE 2-Siemens hires ex-US commander in Afghanistan: * ex-Army Lieutenant, ex-execs of Lockheed, GE a... http://t.co/DtzN3PXC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:09 +0000", "from_user": "Wdough", "from_user_id": 39653591, "from_user_id_str": "39653591", "from_user_name": "willy dough", "geo": null, "id": 148838045175660540, "id_str": "148838045175660544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/574362078/silhouette_portrait-4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/574362078/silhouette_portrait-4_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "http://t.co/Kgx99vxA : Fed's Lacker sees 2-2.5 percent growth in 2012 #Economy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:09 +0000", "from_user": "DTNUSA", "from_user_id": 219913533, "from_user_id_str": "219913533", "from_user_name": "DTN USA", "geo": null, "id": 148838045016268800, "id_str": "148838045016268800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696502703/DTN_USA_DEC_16_2011_CORRECTED_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696502703/DTN_USA_DEC_16_2011_CORRECTED_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "DTN USA: European shares edge up; defensives gain: \\n \\n http://t.co/jtILSBMb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:09 +0000", "from_user": "mozixuryda", "from_user_id": 433917218, "from_user_id_str": "433917218", "from_user_name": "Frantisek Daly", "geo": null, "id": 148838043896393730, "id_str": "148838043896393729", "iso_language_code": "fi", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687329758/1393_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687329758/1393_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "loan on line http://t.co/IUoeNrm2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:09 +0000", "from_user": "mydreamwithyou", "from_user_id": 113054734, "from_user_id_str": "113054734", "from_user_name": "Vale \\u2654", "geo": null, "id": 148838043627954180, "id_str": "148838043627954176", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691872832/SMG01_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691872832/SMG01_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SelenaMyPeace: @HechosSMGomez Estamos todos destrozados! Tengo ganas de ir a USA buscarl\\u00E1 & abrazarla bien fuerte para que sepa que nos va a tener SIEMPRE!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:09 +0000", "from_user": "eloisejcardona", "from_user_id": 305769272, "from_user_id_str": "305769272", "from_user_name": "Eloise Cardona", "geo": null, "id": 148838042835226620, "id_str": "148838042835226626", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702568946/images_1__normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702568946/images_1__normal", "source": "<a href="http://beallsblackfriday.com" rel="nofollow">beallsblackfridaydotcom</a>", "text": "Reviews Vintage Pioneer Receivers-Sony SSF-7000 Floor-Standing 4-way Speaker http://t.co/nIB758a3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:09 +0000", "from_user": "minefreeworld", "from_user_id": 219027602, "from_user_id_str": "219027602", "from_user_name": "ICBL", "geo": null, "id": 148838041727942660, "id_str": "148838041727942658", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1583717731/P4P_square__jpg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583717731/P4P_square__jpg_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#DOS (Shapiro): #US is currently undergoing a review of its policy on #banlandmines, observes @MineBanTreaty mtgs: http://t.co/e7pnIuak", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:08 +0000", "from_user": "designel", "from_user_id": 21709309, "from_user_id_str": "21709309", "from_user_name": "Ellen Varitimos", "geo": null, "id": 148838040746463230, "id_str": "148838040746463234", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/82242257/designell_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/82242257/designell_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Administrative Assistant - Oracle Team - Ahold USA - Quincy, MA http://t.co/vMZIvfTl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:08 +0000", "from_user": "pandalecal", "from_user_id": 105132666, "from_user_id_str": "105132666", "from_user_name": "philip", "geo": null, "id": 148838039513333760, "id_str": "148838039513333761", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696785084/af.jpg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696785084/af.jpg_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:08 +0000", "from_user": "Perfinstals", "from_user_id": 104833186, "from_user_id_str": "104833186", "from_user_name": "Tamburrino Roberto", "geo": null, "id": 148838038015975420, "id_str": "148838038015975424", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1453992791/Tamburrino_Roberto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1453992791/Tamburrino_Roberto_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "USA stato dove si giura sulla bibbia per avere cittadinanza o parlare al tribuna(@YouTube http://t.co/FFMCAd5G)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:07 +0000", "from_user": "Zwitscherland", "from_user_id": 114734272, "from_user_id_str": "114734272", "from_user_name": "Thomas", "geo": null, "id": 148838035709100030, "id_str": "148838035709100032", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1686877663/zwitscherland_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686877663/zwitscherland_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Vage Drohungen per #Twitter sind erlaubt, auch wenn sie am Telefon als Stalking strafbar w\\u00E4ren. http://t.co/73r4E7de #usa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:06 +0000", "from_user": "gseitz", "from_user_id": 62700058, "from_user_id_str": "62700058", "from_user_name": "Greg Seitz", "geo": null, "id": 148838031820980220, "id_str": "148838031820980225", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1508826299/Seitz_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1508826299/Seitz_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @OVCSports: Murray State cracks USA Today/ESPN Coaches Poll for first time this season, coming in at No. 22: http://t.co/ZO7XOMPP #OVC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:06 +0000", "from_user": "slimy_", "from_user_id": 379431085, "from_user_id_str": "379431085", "from_user_name": "Paula Iafrate", "geo": null, "id": 148838030923411460, "id_str": "148838030923411456", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1603609728/ck_012_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1603609728/ck_012_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:06 +0000", "from_user": "Cauan_Valentine", "from_user_id": 148808517, "from_user_id_str": "148808517", "from_user_name": "Reishin\\u2122 \\u2193", "geo": null, "id": 148838029988069380, "id_str": "148838029988069376", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1607687819/PQAAAOtj0Z9zWw0bG0Mg_n_omFI-o5ISk54puApHauUOJ3UilM_NV2SJ0Isw-clUK6mGo6C9CYFiAjRU-H_1h0vEZwoAm1T1UA3qhVswqiFqXBKHMMSN5FD1OKUx_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607687819/PQAAAOtj0Z9zWw0bG0Mg_n_omFI-o5ISk54puApHauUOJ3UilM_NV2SJ0Isw-clUK6mGo6C9CYFiAjRU-H_1h0vEZwoAm1T1UA3qhVswqiFqXBKHMMSN5FD1OKUx_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:05 +0000", "from_user": "WeberJohann", "from_user_id": 127261023, "from_user_id_str": "127261023", "from_user_name": "Johann Weber", "geo": null, "id": 148838028553633800, "id_str": "148838028553633792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1427230756/Farm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1427230756/Farm_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Matthew 7:16. After spending a whole year in the USA, I refuse to believe that 79.5% are Christians. http://t.co/vPmwoXTg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:05 +0000", "from_user": "CoriglianoAgus", "from_user_id": 363087438, "from_user_id_str": "363087438", "from_user_name": "Agustina Corigliano", "geo": null, "id": 148838027802837000, "id_str": "148838027802836994", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693424616/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693424616/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@CelesMontero14 si que tiene, lo que pasa es que no nos sigue. El tema es que si nos sigue estamos en el horno :| igual casi nunca lo usa", "to_user": "CelesMontero14", "to_user_id": 184176346, "to_user_id_str": "184176346", "to_user_name": "Celes Montero"}, +{"created_at": "Mon, 19 Dec 2011 18:52:05 +0000", "from_user": "jbjonesjr", "from_user_id": 118082516, "from_user_id_str": "118082516", "from_user_name": "Jamie Jones", "geo": null, "id": 148838027299532800, "id_str": "148838027299532800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/894921923/foxfield_bowtie_undone_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/894921923/foxfield_bowtie_undone_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Poor Rumbles! RT @nih_nhlbi Wishing @unclejeffgreen a speedy recovery after his surgery for aortic aneurysm. More @ http://t.co/kbpmKwzj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:05 +0000", "from_user": "cclaravieira", "from_user_id": 124219592, "from_user_id_str": "124219592", "from_user_name": "Clara Vieira", "geo": null, "id": 148838026456469500, "id_str": "148838026456469504", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1672457807/Imagem_162_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672457807/Imagem_162_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:05 +0000", "from_user": "_Adicta", "from_user_id": 123965194, "from_user_id_str": "123965194", "from_user_name": "La que hace spam.", "geo": null, "id": 148838025814741000, "id_str": "148838025814740993", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @circotimia_: ANDREA NO USES COND\\u00D3N, DIGO DIGO USA COND\\u00D3N", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:05 +0000", "from_user": "pxtyux", "from_user_id": 222824115, "from_user_id_str": "222824115", "from_user_name": "angel castro", "geo": null, "id": 148838024992669700, "id_str": "148838024992669696", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699393153/386080_291635837547537_100001033694177_873262_1369732091_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699393153/386080_291635837547537_100001033694177_873262_1369732091_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @JoseLuisArzola: Si alguno de mis amigos chilangos usa la palabra \"Freppo\".|.es por que se la copiaron a @jose_madero no es una palabra que me guste escuchar", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:05 +0000", "from_user": "TrailersofMovie", "from_user_id": 313812261, "from_user_id_str": "313812261", "from_user_name": "Movie Trailors", "geo": null, "id": 148838024678088700, "id_str": "148838024678088704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1388798043/Pr_085_-_TRI_-_01_12_10_-_041_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1388798043/Pr_085_-_TRI_-_01_12_10_-_041_normal.jpg", "source": "<a href="http://www.ajaymatharu.com/" rel="nofollow">Tweet Old Post</a>", "text": "The Descendants (2011) - Movie: The Descendants (2011) Release Date: 18 November 2011\\n(USA) Country: USA\\nGenre:... http://t.co/pHZhBn7C", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:04 +0000", "from_user": "OrlandOdreman", "from_user_id": 98725157, "from_user_id_str": "98725157", "from_user_name": "-", "geo": null, "id": 148838022249586700, "id_str": "148838022249586690", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692554898/13112011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692554898/13112011_normal.jpg", "source": "<a href="http://mobileways.de/gravity" rel="nofollow">Gravity</a>", "text": "Ver a _Adicta haciendo spam con \"usa cond\\u00F3n\" me hace pensar que qued\\u00F3 embarazada o algo semejante. :-s", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:04 +0000", "from_user": "iic", "from_user_id": 15726662, "from_user_id_str": "15726662", "from_user_name": "IslamicInfoCenter", "geo": null, "id": 148838021993738240, "id_str": "148838021993738241", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1465732407/twittersquare_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1465732407/twittersquare_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#TLC show brings Muslims in America out in the open - USA Today http://t.co/jDmGkvNO #IIC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:04 +0000", "from_user": "K_C_N_A", "from_user_id": 440901948, "from_user_id_str": "440901948", "from_user_name": "N.Korea News Agency", "geo": null, "id": 148838021758844930, "id_str": "148838021758844928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702236686/thumbnailCARDW5UE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702236686/thumbnailCARDW5UE_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "We report to our glorious country that the DPRK Women's Football Team have beaten the enemy USA Women's Football Team 38-0.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:04 +0000", "from_user": "JesseBrown00", "from_user_id": 417507410, "from_user_id_str": "417507410", "from_user_name": "Jesse Brown", "geo": null, "id": 148838020857077760, "id_str": "148838020857077760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692036368/jesse169_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692036368/jesse169_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Just got someone from Ohio USA listening to @kiss925toronto and she loves it", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:03 +0000", "from_user": "Jonas_Eid", "from_user_id": 126407781, "from_user_id_str": "126407781", "from_user_name": "Jonas", "geo": null, "id": 148838020190187520, "id_str": "148838020190187520", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696644920/fg_012_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696644920/fg_012_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @PRETOSCO: \"Que rid\\u00EDculo voc\\u00EA usa \\u00F3culos escuros a noite\" \"Sou cego\" ~sil\\u00EAncio~", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:03 +0000", "from_user": "SoyCabrera", "from_user_id": 140145786, "from_user_id_str": "140145786", "from_user_name": "Miguel Cabrera ", "geo": null, "id": 148838019133214720, "id_str": "148838019133214721", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1630286978/miguel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630286978/miguel_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Madonna no lo tiene; El Papa lo tiene pero no lo usa; Bush lo tiene corto; Schwartzenegger lo tiene largo y duro.Que es ?El primer apellido.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:03 +0000", "from_user": "BeyonceArrivals", "from_user_id": 332331625, "from_user_id_str": "332331625", "from_user_name": "Richard Floyd", "geo": null, "id": 148838018034302980, "id_str": "148838018034302976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1433970063/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1433970063/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #53434 Destiny's Child: Fan Pack II $0.01: Destiny's Child - \"Girl\" Live Performance\\nDestiny's Child ... http://t.co/1DEUOerK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:03 +0000", "from_user": "3pStaff", "from_user_id": 309003647, "from_user_id_str": "309003647", "from_user_name": "TriplePundit Staff", "geo": null, "id": 148838016927019000, "id_str": "148838016927019008", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1377366075/about-logo3p_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1377366075/about-logo3p_bigger_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "The Weakening of the Fair Trade USA Label - http://t.co/mipagblc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:03 +0000", "from_user": "BeyonceArrivals", "from_user_id": 332331625, "from_user_id_str": "332331625", "from_user_name": "Richard Floyd", "geo": null, "id": 148838016855703550, "id_str": "148838016855703552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1433970063/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1433970063/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #13034 I Am...Yours. An Intimate Performance at Wynn Las Vegas(2CD/1DVD) $12.98: Deluxe three disc (t... http://t.co/r0cg0747", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:02 +0000", "from_user": "Valentinacs_", "from_user_id": 287896119, "from_user_id_str": "287896119", "from_user_name": "Valentina Castro", "geo": null, "id": 148838014972469250, "id_str": "148838014972469249", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1663195865/230542_1910324851309_1637496339_1917282_3939318_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663195865/230542_1910324851309_1637496339_1917282_3939318_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Sisisisisi; y esta historia paso en vida real en usa:3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:02 +0000", "from_user": "BeyonceArrivals", "from_user_id": 332331625, "from_user_id_str": "332331625", "from_user_name": "Richard Floyd", "geo": null, "id": 148838014234279940, "id_str": "148838014234279937", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1433970063/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1433970063/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #26229 I Am...Sasha Fierce $6.44: I AM...SASHA FIERCE DELUXE - Includes five #1 hits \"Single Ladies (... http://t.co/rBPc8fbI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:02 +0000", "from_user": "Toiinee", "from_user_id": 111210216, "from_user_id_str": "111210216", "from_user_name": "Antoine M.", "geo": null, "id": 148838014196531200, "id_str": "148838014196531201", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1013437682/photocabine__6__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1013437682/photocabine__6__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Bon__a__Savoir: Il y a 85 hommes nomm\\u00E9s Homer Simpson aux USA.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:01 +0000", "from_user": "BeyonceArrivals", "from_user_id": 332331625, "from_user_id_str": "332331625", "from_user_name": "Richard Floyd", "geo": null, "id": 148838011210178560, "id_str": "148838011210178561", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1433970063/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1433970063/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #2929 Loud $7.41: LOUD follows-up Rated R (November 2009) and its sequel Rated R: Remixed (May 2010).... http://t.co/YkRnll5f", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:01 +0000", "from_user": "wahoosrule1", "from_user_id": 311215152, "from_user_id_str": "311215152", "from_user_name": "Paul Peters", "geo": null, "id": 148838010899804160, "id_str": "148838010899804160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1585780717/asfasdf_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585780717/asfasdf_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @UVaHooCrew: Hoos are not ranked in the ESPN/USA Today Coaches Poll (29th if you count the votes).", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:01 +0000", "from_user": "rauleldelbaul", "from_user_id": 338613396, "from_user_id_str": "338613396", "from_user_name": "Raul", "geo": null, "id": 148838010279043070, "id_str": "148838010279043072", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1573039546/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1573039546/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @antoalix: si en Zarzuela al saber los mangoneos de I\\u00F1aki le mandaron a USA para evitar esc\\u00E1ndalo \\u00BFeso no es encubrimiento? ten\\u00EDan q haberle destapado!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:00 +0000", "from_user": "gabwestfall", "from_user_id": 372070711, "from_user_id_str": "372070711", "from_user_name": "swag! :3", "geo": null, "id": 148838003861753860, "id_str": "148838003861753856", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1541853643/C_pia_de_msn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541853643/C_pia_de_msn_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @feealmeida_: *vou tomar banho u.u\\n gab; diz:\\n*\\u00E9 bom de vez em quando \\n*usa sabonete ta\\n*e limpa direitin atras das orelhas\\n*e o umbigo tbm :3 rs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:59 +0000", "from_user": "DarkChuzo", "from_user_id": 116545122, "from_user_id_str": "116545122", "from_user_name": "Carlos Chust", "geo": null, "id": 148838003614289920, "id_str": "148838003614289920", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1609488969/AC0AAF29-9A81-433F-89D8-BB78AD0B8E41_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609488969/AC0AAF29-9A81-433F-89D8-BB78AD0B8E41_normal", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Johnny_SQS XD. Pos eperat o usa un tunel VPN", "to_user": "Johnny_SQS", "to_user_id": 320228825, "to_user_id_str": "320228825", "to_user_name": "Joan Domingo Artola", "in_reply_to_status_id": 148837691130257400, "in_reply_to_status_id_str": "148837691130257410"}, +{"created_at": "Mon, 19 Dec 2011 18:51:58 +0000", "from_user": "yaankadaantas", "from_user_id": 113674198, "from_user_id_str": "113674198", "from_user_name": "Y\\u03B1\\u03B7k\\u03B1 \\u0110\\u03B1\\u03B7\\u0167\\u03B1s \\u0586\\u0586", "geo": null, "id": 148837999407403000, "id_str": "148837999407403008", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690075233/DSC_0000023_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690075233/DSC_0000023_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @marciinho_qzs: cartela de adesivos que vem com o caderno: voc\\u00EA n\\u00E3o usa e n\\u00E3o deixa ningu\\u00E9m usar", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:58 +0000", "from_user": "behixiqiqo", "from_user_id": 432656136, "from_user_id_str": "432656136", "from_user_name": "Branch Mayell", "geo": null, "id": 148837996853084160, "id_str": "148837996853084160", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1683885764/678_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683885764/678_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @rokyxuboxe: auto insurance calculator usa http://t.co/J8WJxTWP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:58 +0000", "from_user": "katemar1", "from_user_id": 304256140, "from_user_id_str": "304256140", "from_user_name": "katherine", "geo": null, "id": 148837995326353400, "id_str": "148837995326353408", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1682718053/4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1682718053/4_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Un intelectual es un hombre que usa m\\u00E1s palabras de las necesarias para decir m\\u00E1s cosas de las que sabe.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:57 +0000", "from_user": "NLM_SIS", "from_user_id": 44970026, "from_user_id_str": "44970026", "from_user_name": "NLM SIS", "geo": null, "id": 148837992134479870, "id_str": "148837992134479872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/251321734/NLM_logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/251321734/NLM_logo_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @nlm_lpf: #NLM #PeopleLocator: post or search lost &found persons: #Typhoon #Sendong at http://t.co/x5M8rMrf @sahana @nlm_newsroom", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:56 +0000", "from_user": "FootyFanMtl", "from_user_id": 301456692, "from_user_id_str": "301456692", "from_user_name": "D", "geo": null, "id": 148837990402228220, "id_str": "148837990402228224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701565802/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701565802/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Good to see that media from south America and the USA are tweeting about Bernier! shows the Importance of soccer", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:54 +0000", "from_user": "orgasticc_", "from_user_id": 109767598, "from_user_id_str": "109767598", "from_user_name": "Yaas \\u2654", "geo": null, "id": 148837981732618240, "id_str": "148837981732618241", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1569061335/IMG01048_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1569061335/IMG01048_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Photo: tenteimeesconder: http://t.co/cS9q3869", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:52 +0000", "from_user": "OgTeabelly", "from_user_id": 352136890, "from_user_id_str": "352136890", "from_user_name": "teabelly", "geo": null, "id": 148837972656144400, "id_str": "148837972656144384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670094237/Flower_icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670094237/Flower_icon_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @CDCInjury: 12 million US adults are victims of rape, physical violence, or stalking by an intimate partner. Help us #vetoviolence!http://go.usa.gov/NjS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:52 +0000", "from_user": "circotimia_", "from_user_id": 221610474, "from_user_id_str": "221610474", "from_user_name": "M a i t e\\u10E6. ", "geo": null, "id": 148837972471582720, "id_str": "148837972471582721", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698350821/jjo__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698350821/jjo__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "ANDREA NO USES COND\\u00D3N, DIGO DIGO USA COND\\u00D3N", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:49 +0000", "from_user": "_Adicta", "from_user_id": 123965194, "from_user_id_str": "123965194", "from_user_name": "La que hace spam.", "geo": null, "id": 148837960979202050, "id_str": "148837960979202048", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "CARLOS ANGUSTIA USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:49 +0000", "from_user": "sincefreedom", "from_user_id": 89801243, "from_user_id_str": "89801243", "from_user_name": "LongWalkSinceFreedom", "geo": null, "id": 148837957963489280, "id_str": "148837957963489280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/529263278/LongWalkTwitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/529263278/LongWalkTwitter_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Cyber war leads to capture of CIA spy in Iran - The budding cyber war between America and Iran could be quickly tran... http://t.co/AA63cc8l", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:51:48 +0000", "from_user": "JIGassa", "from_user_id": 241235072, "from_user_id_str": "241235072", "from_user_name": "Juan Ignacio Gassa", "geo": null, "id": 148837953362341900, "id_str": "148837953362341889", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1648167953/Video_call_snapshot_11_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648167953/Video_call_snapshot_11_normal.png", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@SonyaJJG si esta en argentina usa mi cuenta y descargarlo... Te paso por privado los datos", "to_user": "SonyaJJG", "to_user_id": 410384629, "to_user_id_str": "410384629", "to_user_name": "Julieta Josefina", "in_reply_to_status_id": 148837334064955400, "in_reply_to_status_id_str": "148837334064955393"}, +{"created_at": "Mon, 19 Dec 2011 18:51:47 +0000", "from_user": "simoni73", "from_user_id": 22470262, "from_user_id_str": "22470262", "from_user_name": "Alberto Simoni", "geo": null, "id": 148837952678662140, "id_str": "148837952678662144", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1152036988/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1152036988/image_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "La corsa di Paul #usa2012 LASTAMPA.it: Iowa, corsa senza un re Ora in testa c'\\u00E8 Ron Paul http://t.co/F8SvEak7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:47 +0000", "from_user": "dhenry323", "from_user_id": 279699446, "from_user_id_str": "279699446", "from_user_name": "David Henry", "geo": null, "id": 148837949872685060, "id_str": "148837949872685056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1633006041/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633006041/image_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @MSU_Basketball: #Spartans move up to No. 19 in AP Top 25 and No. 20 in ESPN/USA Today Coaches Poll.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:47 +0000", "from_user": "samylesly", "from_user_id": 27875029, "from_user_id_str": "27875029", "from_user_name": "Leslie Samantha", "geo": null, "id": 148837949755240450, "id_str": "148837949755240449", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702529329/SGD_Mandy_______Sel__._normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702529329/SGD_Mandy_______Sel__._normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SelenaMyPeace: @HechosSMGomez Estamos todos destrozados! Tengo ganas de ir a USA buscarl\\u00E1 & abrazarla bien fuerte para que sepa que nos va a tener SIEMPRE!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:47 +0000", "from_user": "AamnaTaseer", "from_user_id": 153783978, "from_user_id_str": "153783978", "from_user_name": "Aamna Taseer", "geo": null, "id": 148837949163831300, "id_str": "148837949163831296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1519398629/ST_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1519398629/ST_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Mehmal: waah #PTI justifying a bigoted rally full of hate speech MT @PTIrevolution: because the cause was correct, get out of USA's war on terror.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:45 +0000", "from_user": "madeevillarreal", "from_user_id": 232993429, "from_user_id_str": "232993429", "from_user_name": "madelaine villarreal", "geo": null, "id": 148837943883218940, "id_str": "148837943883218944", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1538039658/tumblr_lr5q8cZagw1qgyaufo2_250_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538039658/tumblr_lr5q8cZagw1qgyaufo2_250_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SelenaMyPeace: @HechosSMGomez Estamos todos destrozados! Tengo ganas de ir a USA buscarl\\u00E1 & abrazarla bien fuerte para que sepa que nos va a tener SIEMPRE!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:45 +0000", "from_user": "miss_copa", "from_user_id": 75302962, "from_user_id_str": "75302962", "from_user_name": "Miss Copa", "geo": null, "id": 148837943384084480, "id_str": "148837943384084480", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1303134348/jessica_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1303134348/jessica_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @pauloeandre: Este \\u00E9 PeTralha Americano RT G1Jovem inventa c\\u00E2ncer e usa doa\\u00E7\\u00F5es para passar lua de mel no Caribe #G1 http://t.co/lEWtLEsn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:44 +0000", "from_user": "carmel_PL", "from_user_id": 291565052, "from_user_id_str": "291565052", "from_user_name": "patrycjaaa.", "geo": null, "id": 148837939772796930, "id_str": "148837939772796928", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702556556/tumblr_lm6xnvMV3a1qcrsn7o1_500_large_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702556556/tumblr_lm6xnvMV3a1qcrsn7o1_500_large_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @manulinka: \"-Cz\\u0142owieku, gdzie ty mieszkasz? W jaskini? - Nie, w USA. - To wszystko wyja\\u015Bnia...\" LOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:44 +0000", "from_user": "Sustain_ATL", "from_user_id": 39999836, "from_user_id_str": "39999836", "from_user_name": "Sustainable Atlanta", "geo": null, "id": 148837939349176320, "id_str": "148837939349176320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/522487727/foo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/522487727/foo_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "RT @CleanCitiesATL: Electric Cars get a Solar Boost with the new charging station at the Alpharetta-based Solar Energy USA in south... http://t.co/h4QGrAyB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:44 +0000", "from_user": "LeonardoPedran", "from_user_id": 287493182, "from_user_id_str": "287493182", "from_user_name": "Leonardo Pedran", "geo": null, "id": 148837938845855740, "id_str": "148837938845855744", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1688014703/Captura_de_tela_inteira_11122011_224758.bmp_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688014703/Captura_de_tela_inteira_11122011_224758.bmp_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"Imposs\\u00EDvel \\u00E9 uma palavra muito grande que gente pequena usa pra tentar te oprimir\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:43 +0000", "from_user": "loma_novaes", "from_user_id": 224634964, "from_user_id_str": "224634964", "from_user_name": "\\u221E Paloma Novaes ;", "geo": null, "id": 148837935079362560, "id_str": "148837935079362560", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1645399081/Paloma_Novaes_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645399081/Paloma_Novaes_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ValeriaBandida: Usa suti\\u00E3 de enchimento e depois diz que odeia falsidade.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:42 +0000", "from_user": "aandreapaola", "from_user_id": 169731890, "from_user_id_str": "169731890", "from_user_name": "Andrea Hernandez", "geo": null, "id": 148837931749085200, "id_str": "148837931749085184", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1680610527/331102945_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680610527/331102945_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Jaajaj ;$ RT @JavierUseche: Te van a enviar uno directamente desde USA RT @aandreapaola: Necesito un relajante muscular pero yaa!!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:42 +0000", "from_user": "_Ortografia", "from_user_id": 308156222, "from_user_id_str": "308156222", "from_user_name": "Datos ortogr\\u00E1ficos", "geo": null, "id": 148837931262541820, "id_str": "148837931262541825", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1678468577/331041275_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678468577/331041275_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "No se usa \"hubieron\" cuando haber se emplea para denotar la presencia de personas o cosas, Hubieron 6 ni\\u00F1os (\\u2717), debe decirse: Hubo 6 ni\\u00F1os\\u2611", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:41 +0000", "from_user": "_iBeDuckedOff_", "from_user_id": 224858838, "from_user_id_str": "224858838", "from_user_name": "Drippn Swaguu.", "geo": null, "id": 148837926892085250, "id_str": "148837926892085248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699579656/_iBeDuckedOff__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699579656/_iBeDuckedOff__normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "This is true but they dnt even smoke it! RT @justchillin247: The USA is the only country where weed is consider illegal -_______-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:41 +0000", "from_user": "_Adicta", "from_user_id": 123965194, "from_user_id_str": "123965194", "from_user_name": "La que hace spam.", "geo": null, "id": 148837924606181380, "id_str": "148837924606181376", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "JULIANA USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:39 +0000", "from_user": "molikoveni", "from_user_id": 433361850, "from_user_id_str": "433361850", "from_user_name": "Connor Bowell", "geo": null, "id": 148837919539474430, "id_str": "148837919539474432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685004961/518_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685004961/518_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @zycynotet: uninsured auto http://t.co/8lPi2jlt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:38 +0000", "from_user": "GuiCR12", "from_user_id": 253905181, "from_user_id_str": "253905181", "from_user_name": "Guillaume Rigucci", "geo": null, "id": 148837914711830530, "id_str": "148837914711830528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688386935/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688386935/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Suck it USA\\u201C@nhl_canes:The Canes will not release Justin Faulk for the World Junior Championship Rutherford statement: http://t.co/nb564P1w\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:38 +0000", "from_user": "OgTeabelly", "from_user_id": 352136890, "from_user_id_str": "352136890", "from_user_name": "teabelly", "geo": null, "id": 148837913608716300, "id_str": "148837913608716289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670094237/Flower_icon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670094237/Flower_icon_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @FDAcdrhIndustry: Draft Guidance - Evaluation of Sex Differences in Medical Device Clinical Studies http://t.co/C2MQeQTC #fda #medicaldevice", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:38 +0000", "from_user": "TakeAGanderson", "from_user_id": 312855464, "from_user_id_str": "312855464", "from_user_name": "Genevieve Anderson", "geo": null, "id": 148837911947776000, "id_str": "148837911947776000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1460356437/genevieve_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1460356437/genevieve_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @grouponboston: Help provide meals for school children affected by the famine in the Horn of Africa: http://t.co/0Jjl6Mr8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:36 +0000", "from_user": "tyfezarujul", "from_user_id": 433714924, "from_user_id_str": "433714924", "from_user_name": "Purandar Maddocks", "geo": null, "id": 148837906507767800, "id_str": "148837906507767808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685973438/1682_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685973438/1682_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "short term loans reviews http://t.co/qSePTMRk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:36 +0000", "from_user": "flagstaffnews_", "from_user_id": 245462312, "from_user_id_str": "245462312", "from_user_name": "Flagstaff Onlinenews", "geo": null, "id": 148837905505329150, "id_str": "148837905505329153", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1231040889/Flagstaff_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1231040889/Flagstaff_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Neti pot risks, gay marriage benefits and pet obsessions \\u2013 USA TODAY: USA TODAY Neti pot risks, gay marriage ben... http://t.co/ZweMCwpa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:35 +0000", "from_user": "estellaFoley318", "from_user_id": 426333853, "from_user_id_str": "426333853", "from_user_name": "estella Foley", "geo": null, "id": 148837899696209920, "id_str": "148837899696209921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668978555/3522470641206156_the_beach_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668978555/3522470641206156_the_beach_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "The main shortcomings was that the company only partnered with Target in the USA and did not make it available in international markets", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:34 +0000", "from_user": "oso_a_la_sombra", "from_user_id": 403545261, "from_user_id_str": "403545261", "from_user_name": "Eric", "geo": null, "id": 148837898366619650, "id_str": "148837898366619648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1627938675/17358_1256394730492_1248300277_30785916_648019_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627938675/17358_1256394730492_1248300277_30785916_648019_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @MSU_Basketball: #Spartans move up to No. 19 in AP Top 25 and No. 20 in ESPN/USA Today Coaches Poll.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:33 +0000", "from_user": "NIAIDCareers", "from_user_id": 242780637, "from_user_id_str": "242780637", "from_user_name": "NIAID Careers", "geo": null, "id": 148837891810930700, "id_str": "148837891810930688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1225524358/NIAIDlogo_reasonably_small_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225524358/NIAIDlogo_reasonably_small_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "#Technology #development specialist closes 12/22. Facilitate the transfer of new #technologies & #research materials: http://t.co/546xZ7fH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:33 +0000", "from_user": "PauloFrancis_", "from_user_id": 144010410, "from_user_id_str": "144010410", "from_user_name": "Paulo Francis", "geo": null, "id": 148837891785752580, "id_str": "148837891785752577", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1476415425/pf_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1476415425/pf_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @pauloeandre: Este \\u00E9 PeTralha Americano RT G1Jovem inventa c\\u00E2ncer e usa doa\\u00E7\\u00F5es para passar lua de mel no Caribe #G1 http://t.co/lEWtLEsn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:33 +0000", "from_user": "imcaughtupinyou", "from_user_id": 93455784, "from_user_id_str": "93455784", "from_user_name": "cande\\u2661", "geo": null, "id": 148837891324383230, "id_str": "148837891324383232", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700921554/472028726_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700921554/472028726_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@VodkaBiebsHero claro! adem\\u00E1s a mi no me gusta ningun artista de ac\\u00E1, tampoco escucho m\\u00FAsica en espa\\u00F1ol, yo deber\\u00EDa haber nacido en USA ajaj", "to_user": "VodkaBiebsHero", "to_user_id": 345517062, "to_user_id_str": "345517062", "to_user_name": "ILoveMyself \\u2665/\\u2661", "in_reply_to_status_id": 148835340352880640, "in_reply_to_status_id_str": "148835340352880640"}, +{"created_at": "Mon, 19 Dec 2011 18:51:33 +0000", "from_user": "iMMaBeBiaN", "from_user_id": 96808906, "from_user_id_str": "96808906", "from_user_name": "Bianca Paon\\u018E \\u2665", "geo": null, "id": 148837890833657860, "id_str": "148837890833657856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689597949/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689597949/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@itsEminemsSon you said that america was a country: \"dream country EMerica\" and then you talk about usa so I understood that...", "to_user": "itsEminemsSon", "to_user_id": 200571056, "to_user_id_str": "200571056", "to_user_name": "Arshad \\u018Evil Math\\u018Ers", "in_reply_to_status_id": 148827879407493120, "in_reply_to_status_id_str": "148827879407493120"}, +{"created_at": "Mon, 19 Dec 2011 18:51:32 +0000", "from_user": "JoorgeFelix", "from_user_id": 106129983, "from_user_id_str": "106129983", "from_user_name": "Jorge F\\u00E9lix \\u2714", "geo": null, "id": 148837888837156860, "id_str": "148837888837156865", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700567776/PQAAAOSARbN6jhtGBnOqQ4I9M17pJaPGRW4nSd8soQquSZoJBQBfb4NlDdGKcpYndTK8CsOpudgI_MA6uz5xlr8FBBwAm1T1UFPe1932pxO10OI4GiHGgM2m47n-_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700567776/PQAAAOSARbN6jhtGBnOqQ4I9M17pJaPGRW4nSd8soQquSZoJBQBfb4NlDdGKcpYndTK8CsOpudgI_MA6uz5xlr8FBBwAm1T1UFPe1932pxO10OI4GiHGgM2m47n-_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Ryca solta purpurina e usa paet\\u00EA!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:31 +0000", "from_user": "_Adicta", "from_user_id": 123965194, "from_user_id_str": "123965194", "from_user_name": "La que hace spam.", "geo": null, "id": 148837884273766400, "id_str": "148837884273766400", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "JOANDRY USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:30 +0000", "from_user": "ticakukagex", "from_user_id": 433562198, "from_user_id_str": "433562198", "from_user_name": "Adonibaal Hawkswell", "geo": null, "id": 148837881253863420, "id_str": "148837881253863426", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685480489/197_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685480489/197_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "insurance comparison sites http://t.co/ZVDhZE5Z", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:29 +0000", "from_user": "roluro", "from_user_id": 71911376, "from_user_id_str": "71911376", "from_user_name": "Pablo Torres", "geo": null, "id": 148837877059563520, "id_str": "148837877059563520", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701579624/ACD8F382-D811-45C5-825F-80F817F74847_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701579624/ACD8F382-D811-45C5-825F-80F817F74847_normal", "source": "<a href="http://www.visibli.com" rel="nofollow">Visibli</a>", "text": "Quien usa Prezi? Aqu\\u00ED Prezi for dummies http://t.co/NNiRmu5n cc @rich_guzman @ferrocenteno", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:29 +0000", "from_user": "timotetife", "from_user_id": 433284815, "from_user_id_str": "433284815", "from_user_name": "Cimymena Vaciwug", "geo": null, "id": 148837875000164350, "id_str": "148837875000164352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @xotoxyfica: car insurance ratings by vehicle http://t.co/04rQiah6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:28 +0000", "from_user": "TresaMk03201963", "from_user_id": 421432394, "from_user_id_str": "421432394", "from_user_name": "Tresa Mk", "geo": null, "id": 148837872466796540, "id_str": "148837872466796544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "http://t.co/m33RxmOQ USA Stock Market Softball Paris Hilton Space Technology", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:28 +0000", "from_user": "RandBCDs", "from_user_id": 363747398, "from_user_id_str": "363747398", "from_user_name": "Richard Floyd", "geo": null, "id": 148837871997034500, "id_str": "148837871997034497", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1517599798/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517599798/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #81 Conquer $4.99: B006B81M9I http://t.co/ZTNIQGgM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:28 +0000", "from_user": "AnggyKaroliina", "from_user_id": 148200970, "from_user_id_str": "148200970", "from_user_name": "Anggy Gonz\\u00E0lez\\u2665", "geo": null, "id": 148837870910713860, "id_str": "148837870910713856", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1650385930/P201111_01.06_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650385930/P201111_01.06_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "REBECA USA COND\\u00D3N", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:28 +0000", "from_user": "RandBCDs", "from_user_id": 363747398, "from_user_id_str": "363747398", "from_user_name": "Richard Floyd", "geo": null, "id": 148837870650662900, "id_str": "148837870650662912", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1517599798/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517599798/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #181 Back To Black [Explicit] $7.99: B000V9GA5Y http://t.co/91j3FWBc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:28 +0000", "from_user": "AnnelleStpierri", "from_user_id": 388724344, "from_user_id_str": "388724344", "from_user_name": "Annelle Stpierrie", "geo": null, "id": 148837870608711680, "id_str": "148837870608711680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1582920830/1197819_blondie_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1582920830/1197819_blondie_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Anzo USA 211135 Suzuki Grand Vitara Chrome Tail Light Assembly - (Sold in Pairs): SAE (Society of Automotive Eng... http://t.co/S0gdPlXd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:27 +0000", "from_user": "RandBCDs", "from_user_id": 363747398, "from_user_id_str": "363747398", "from_user_name": "Richard Floyd", "geo": null, "id": 148837869279121400, "id_str": "148837869279121408", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1517599798/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517599798/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #281 I Am...Sasha Fierce $5.00: B001KR9AP8 http://t.co/ZD1JLveE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:27 +0000", "from_user": "RandBCDs", "from_user_id": 363747398, "from_user_id_str": "363747398", "from_user_name": "Richard Floyd", "geo": null, "id": 148837867886616580, "id_str": "148837867886616576", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1517599798/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517599798/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #385 Inevitable $4.95: B0065GFLL6 http://t.co/EkUQfSrB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:25 +0000", "from_user": "leango", "from_user_id": 139704274, "from_user_id_str": "139704274", "from_user_name": "Lenin Gonzalez", "geo": null, "id": 148837860835999740, "id_str": "148837860835999745", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1586373127/wallpaper17_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586373127/wallpaper17_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "si se va a protestar las medidas de Grateron digan la hora por favor. USA dice que tenemos militares narcos y este alcalde trae paranarcos", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:25 +0000", "from_user": "jmontoyac", "from_user_id": 41254043, "from_user_id_str": "41254043", "from_user_name": "Jaime Montoya", "geo": null, "id": 148837858239717380, "id_str": "148837858239717376", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1268430258/3D-Matrix-Screensaver-the-Endless-Corridors_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1268430258/3D-Matrix-Screensaver-the-Endless-Corridors_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "El ministro de relaciones exteriores de Jap\\u00F3n se encontraba \"coincidencialmente\" de visita en USA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:25 +0000", "from_user": "EarthquakeTest", "from_user_id": 119579265, "from_user_id_str": "119579265", "from_user_name": "Michael Wharton", "geo": null, "id": 148837857061126140, "id_str": "148837857061126144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "3.3 - Southern Alaska (Kenai-Cook Inlet, AK 99682, USA) - 19/12/11 12:48:23 EST Depth: 65.6 km (40.76 mi) http... http://t.co/aVyOUBIb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:24 +0000", "from_user": "eloisejcardona", "from_user_id": 305769272, "from_user_id_str": "305769272", "from_user_name": "Eloise Cardona", "geo": null, "id": 148837856503283700, "id_str": "148837856503283714", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702568946/images_1__normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702568946/images_1__normal", "source": "<a href="http://beallsblackfriday.com" rel="nofollow">beallsblackfridaydotcom</a>", "text": "Discount Vintage Pioneer Receivers-Pioneer PL-990 Automatic Stereo Turntable At US http://t.co/lvxrG0z0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:24 +0000", "from_user": "Caarla_rosa", "from_user_id": 360953766, "from_user_id_str": "360953766", "from_user_name": "hot and dangerous \\u266A", "geo": null, "id": 148837855593103360, "id_str": "148837855593103360", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1674239466/euzita_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674239466/euzita_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "o cara do filme tem uns peito na cabe\\u00E7a e ele usa um suti\\u00E3 na cabe\\u00E7a aisoaisoaisoaso`", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:23 +0000", "from_user": "Pyramide_Usa", "from_user_id": 266235926, "from_user_id_str": "266235926", "from_user_name": "Watson Jean", "geo": null, "id": 148837852522872830, "id_str": "148837852522872832", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1469528987/black_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1469528987/black_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Demain sera aniversaire de JEAN Watson le directeur general de la pyramide_usa. J'attends les souhaites sur 38396481 call et 47541601 sms", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:21 +0000", "from_user": "coesa06", "from_user_id": 85922216, "from_user_id_str": "85922216", "from_user_name": "Victor", "geo": null, "id": 148837842305560580, "id_str": "148837842305560577", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1541654129/estructuras-coesa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541654129/estructuras-coesa_normal.jpg", "source": "<a href="http://ratablog.org/extension/" rel="nofollow">TwittSharer</a>", "text": "La aplicaci\\u00F3n de #Facebook ya se usa m\\u00E1s en #Android que en #iPhone http://t.co/AO8Gj60p #Apps", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:21 +0000", "from_user": "basketvinotinto", "from_user_id": 110791239, "from_user_id_str": "110791239", "from_user_name": "Basket Vinotinto", "geo": null, "id": 148837840837550080, "id_str": "148837840837550081", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1498905015/Edici_n_Numero_10_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1498905015/Edici_n_Numero_10_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "#NCAA: Creighton est\\u00E1 21\\u00BA en el r\\u00E1nking de entrenadores (USA Today/ESPN) y 23\\u00BA en el de periodistas (AP).V\\u00EDa @LosBluejays.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:19 +0000", "from_user": "JFelizPacheco", "from_user_id": 117142639, "from_user_id_str": "117142639", "from_user_name": "Jorge JuaN ", "geo": null, "id": 148837835737268220, "id_str": "148837835737268224", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1647696266/JorgeJuaN_20_20_20_20_20_23JFP_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647696266/JorgeJuaN_20_20_20_20_20_23JFP_3_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"@grisantycosme: @JFelizPacheco @Juanmanueldiaz @manuelrojasp @Elias_Cornelio @juangrisanty @Ramoncin22 Mi numero en USA 908-342-7818\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:19 +0000", "from_user": "geekmaniaco", "from_user_id": 176574634, "from_user_id_str": "176574634", "from_user_name": "The Jack Black ", "geo": null, "id": 148837834793558000, "id_str": "148837834793558016", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1666237900/IMG_0101_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666237900/IMG_0101_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@lolhehehe voce tem cora\\u00E7\\u00E3o bom, mas nao usa seu piroc\\u00E3o gm.", "to_user": "lolhehehe", "to_user_id": 20746481, "to_user_id_str": "20746481", "to_user_name": "Sicko"}, +{"created_at": "Mon, 19 Dec 2011 18:51:18 +0000", "from_user": "sonicgeekette", "from_user_id": 64040164, "from_user_id_str": "64040164", "from_user_name": "Michelle Tona", "geo": null, "id": 148837830234353660, "id_str": "148837830234353664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/354019373/blue_clamshell_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/354019373/blue_clamshell_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "The rocket and launchpad was made almost exclusively out of an old 3.5 diskette. Only added pipe cleaner USA, yarn flames, & hot glue.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:17 +0000", "from_user": "soliswebgraphic", "from_user_id": 82490577, "from_user_id_str": "82490577", "from_user_name": "Solis Web Graphics", "geo": null, "id": 148837826421727230, "id_str": "148837826421727232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/471944318/pic_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/471944318/pic_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "T-Mobile USA Spectrum Refarming Lets Some iPhone Users Access ... http://t.co/xw5SglgC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:16 +0000", "from_user": "raquelithays", "from_user_id": 161567930, "from_user_id_str": "161567930", "from_user_name": "R\\u03B1que\\u2113\\u2665\\u0120\\u03BC\\u0454\\u044F\\u200E\\u200B\\u044F\\u200E\\u200B\\u0454\\u044F\\u200E\\u03C3", "geo": null, "id": 148837820117688320, "id_str": "148837820117688320", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686438215/Capture22_33_25_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686438215/Capture22_33_25_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u00BBImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:14 +0000", "from_user": "HechosSMGomez", "from_user_id": 241715867, "from_user_id_str": "241715867", "from_user_name": "Pr\\u03B1yersSelenaFamily.", "geo": null, "id": 148837811720687600, "id_str": "148837811720687617", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699257274/tumblr_lwb5r8kSSO1qe4rlzo1_500_large_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699257274/tumblr_lwb5r8kSSO1qe4rlzo1_500_large_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SelenaMyPeace: @HechosSMGomez Estamos todos destrozados! Tengo ganas de ir a USA buscarl\\u00E1 & abrazarla bien fuerte para que sepa que nos va a tener SIEMPRE!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:13 +0000", "from_user": "qavugyneq", "from_user_id": 419112759, "from_user_id_str": "419112759", "from_user_name": "Alcardio Haddrill", "geo": null, "id": 148837810433048580, "id_str": "148837810433048576", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657503270/11_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657503270/11_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @kexiloxu: sallie mae student loans deferment lenders http://t.co/BW5WmdAy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:12 +0000", "from_user": "ImSo_sOuTh3rN", "from_user_id": 307170584, "from_user_id_str": "307170584", "from_user_name": "RellpIpEs", "geo": null, "id": 148837804313550850, "id_str": "148837804313550850", "iso_language_code": "is", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685960989/Lr06dSSn_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685960989/Lr06dSSn_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "all um tryna say is im all ova da USA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:12 +0000", "from_user": "ninonilmar", "from_user_id": 417075881, "from_user_id_str": "417075881", "from_user_name": "nino", "geo": null, "id": 148837802757472260, "id_str": "148837802757472257", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1651863711/65408_1671469197311_1554819619_31555177_7715434_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651863711/65408_1671469197311_1554819619_31555177_7715434_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@TeamMakambo finns det n\\u00E5n video uppe fr\\u00E5n n\\u00E4r du tr\\u00E4nade i usa?", "to_user": "TeamMakambo", "to_user_id": 382887214, "to_user_id_str": "382887214", "to_user_name": "Papy Abedi"}, +{"created_at": "Mon, 19 Dec 2011 18:51:11 +0000", "from_user": "sandbergson", "from_user_id": 408946990, "from_user_id_str": "408946990", "from_user_name": "BrUnInHoo", "geo": null, "id": 148837798693183500, "id_str": "148837798693183488", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664294323/dsc05944_001_001_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664294323/dsc05944_001_001_1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Mateus_MFML tbm tava c pro c o ie,tent usa o google chrome vc vai v q \\u00E9 bm melhor....", "to_user": "Mateus_MFML", "to_user_id": 234310349, "to_user_id_str": "234310349", "to_user_name": "Mateus Ferreira Melo", "in_reply_to_status_id": 148836899954507780, "in_reply_to_status_id_str": "148836899954507776"}, +{"created_at": "Mon, 19 Dec 2011 18:51:11 +0000", "from_user": "SaoBlack", "from_user_id": 38335260, "from_user_id_str": "38335260", "from_user_name": "Alexandre Gon\\u00E7alves", "geo": null, "id": 148837798605103100, "id_str": "148837798605103104", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1686053923/eu_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686053923/eu_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @pauloeandre: Este \\u00E9 PeTralha Americano RT G1Jovem inventa c\\u00E2ncer e usa doa\\u00E7\\u00F5es para passar lua de mel no Caribe #G1 http://t.co/lEWtLEsn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:10 +0000", "from_user": "LizieLoveYou", "from_user_id": 181226587, "from_user_id_str": "181226587", "from_user_name": "Lizeth Cabanillas", "geo": null, "id": 148837797724299260, "id_str": "148837797724299264", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1661724069/319340_1807020790378_1685685946_1308397_1984948577_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661724069/319340_1807020790378_1685685946_1308397_1984948577_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "My boyfriend is no in USA :) hahha ok no :I", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:10 +0000", "from_user": "JoseLuisArzola", "from_user_id": 140281867, "from_user_id_str": "140281867", "from_user_name": "Jose Luis Arzola", "geo": null, "id": 148837795765563400, "id_str": "148837795765563392", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1699190781/Arzola_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699190781/Arzola_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Si alguno de mis amigos chilangos usa la palabra \"Freppo\".|.es por que se la copiaron a @jose_madero no es una palabra que me guste escuchar", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:09 +0000", "from_user": "_Adicta", "from_user_id": 123965194, "from_user_id_str": "123965194", "from_user_name": "La que hace spam.", "geo": null, "id": 148837793857155070, "id_str": "148837793857155073", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Mentirosita_: ANDREA USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:06 +0000", "from_user": "_ThiagoA7x", "from_user_id": 199741748, "from_user_id_str": "199741748", "from_user_name": "Thiago", "geo": null, "id": 148837780775116800, "id_str": "148837780775116801", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691512799/391131_142541802522034_100002986451086_182421_713603815_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691512799/391131_142541802522034_100002986451086_182421_713603815_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@nerdbebum n\\u00E3o, mas baixa e usa ele por 30 dias ou pegar algum crack na net '--'", "to_user": "nerdbebum", "to_user_id": 234801433, "to_user_id_str": "234801433", "to_user_name": "Nerd Bebum", "in_reply_to_status_id": 148837187725701120, "in_reply_to_status_id_str": "148837187725701120"}, +{"created_at": "Mon, 19 Dec 2011 18:51:06 +0000", "from_user": "BlackBerryMaxi", "from_user_id": 258168984, "from_user_id_str": "258168984", "from_user_name": "BlackBerry BestPrice", "geo": null, "id": 148837778954792960, "id_str": "148837778954792960", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1256265044/blackberry-maxiprices_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1256265044/blackberry-maxiprices_normal.gif", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "BlackBerry USA: BlackBerry Storm 9530 - 1GB - Black (Unlocked) Smartphone (FREE SHIPPING) #Storm http://t.co/kdWAPJcK #blackberry #usa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:05 +0000", "from_user": "Viktor_Yzlas", "from_user_id": 273601917, "from_user_id_str": "273601917", "from_user_name": "Viktor Yzlas", "geo": null, "id": 148837776740192260, "id_str": "148837776740192256", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1678522770/genio_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678522770/genio_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:05 +0000", "from_user": "filipearnaut", "from_user_id": 69927050, "from_user_id_str": "69927050", "from_user_name": "Carlos Filipe Arnaut", "geo": null, "id": 148837775184105470, "id_str": "148837775184105472", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699517999/PQAAAPSmP2Nyb9SxolmtRqAdqsAQRqnotsfV0JPuxZ18kQyVGhXsWM3VNKmQuwnN5xCUZ7N9__hfaHVnKe-2xsIV4fwAm1T1UEls0jLnb0KYYaI9ElnvrAV85j6R_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699517999/PQAAAPSmP2Nyb9SxolmtRqAdqsAQRqnotsfV0JPuxZ18kQyVGhXsWM3VNKmQuwnN5xCUZ7N9__hfaHVnKe-2xsIV4fwAm1T1UEls0jLnb0KYYaI9ElnvrAV85j6R_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @um_virgem: N\\u00E3o confio em quem usa pochete.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:05 +0000", "from_user": "TopTenENews", "from_user_id": 296645240, "from_user_id_str": "296645240", "from_user_name": "Richard Floyd", "geo": null, "id": 148837774877929470, "id_str": "148837774877929472", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1423378913/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1423378913/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #3867 DIE ZEIT: $7.99 DIE ZEIT Kindle Edition (reine Textversion ohne Bilder) ist eine besondere Ausw... http://t.co/hEnnIzxI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:05 +0000", "from_user": "Jaime_Valero", "from_user_id": 83053764, "from_user_id_str": "83053764", "from_user_name": "Jaime Valero", "geo": null, "id": 148837773833551870, "id_str": "148837773833551874", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1633713984/yo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633713984/yo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@felipeLvalero especialista no se, pero el usa mi padre es buen mecanico...", "to_user": "felipeLvalero", "to_user_id": 107813909, "to_user_id_str": "107813909", "to_user_name": "Felipe L. Valero", "in_reply_to_status_id": 148836985539268600, "in_reply_to_status_id_str": "148836985539268609"}, +{"created_at": "Mon, 19 Dec 2011 18:51:05 +0000", "from_user": "TopTenENews", "from_user_id": 296645240, "from_user_id_str": "296645240", "from_user_name": "Richard Floyd", "geo": null, "id": 148837773732876300, "id_str": "148837773732876288", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1423378913/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1423378913/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #5767 El Pa\\u00EDs: $14.99 EL PA\\u00CDS es el diario l\\u00EDder en Espa\\u00F1a y el principal medio de informaci\\u00F3n en es... http://t.co/7RTONwdo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:04 +0000", "from_user": "TopTenENews", "from_user_id": 296645240, "from_user_id_str": "296645240", "from_user_name": "Richard Floyd", "geo": null, "id": 148837772541706240, "id_str": "148837772541706240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1423378913/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1423378913/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #6466 Shanghai Daily: $5.99 Shanghai Daily provides an English window to the news of China. Business... http://t.co/qM40ehKB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:04 +0000", "from_user": "TopTenENews", "from_user_id": 296645240, "from_user_id_str": "296645240", "from_user_name": "Richard Floyd", "geo": null, "id": 148837769899290620, "id_str": "148837769899290624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1423378913/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1423378913/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #3963 San Jose Mercury News: $5.99 Founded in 1851, the San Jose Mercury News serves the San Jose are... http://t.co/6FcD2nXB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:03 +0000", "from_user": "circotimia_", "from_user_id": 221610474, "from_user_id_str": "221610474", "from_user_name": "M a i t e\\u10E6. ", "geo": null, "id": 148837767336574980, "id_str": "148837767336574976", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698350821/jjo__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698350821/jjo__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "VICIOSA USA COND\\u00D3N", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:03 +0000", "from_user": "VocalistSongs", "from_user_id": 359191521, "from_user_id_str": "359191521", "from_user_name": "Richard Floyd", "geo": null, "id": 148837766313164800, "id_str": "148837766313164801", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1506074528/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1506074528/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #7066 Thistlehair The Christmas Bear: Alabama $0.99 BMG Special Products http://t.co/UUPpDHL2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:02 +0000", "from_user": "Bahrain_Ctzn", "from_user_id": 414552960, "from_user_id_str": "414552960", "from_user_name": "Ba7rainiya", "geo": null, "id": 148837764450889730, "id_str": "148837764450889729", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1643342622/790B618A-9637-4AFF-B10C-1D0FD6D89F7D_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643342622/790B618A-9637-4AFF-B10C-1D0FD6D89F7D_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @BHRDef_jaguar: our police in #bahrain are first in line in front of the cannon please support them for keeping u safe http://t.co/GKqBv0Bg #bahrain #usa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:02 +0000", "from_user": "VocalistSongs", "from_user_id": 359191521, "from_user_id_str": "359191521", "from_user_name": "Richard Floyd", "geo": null, "id": 148837764429922300, "id_str": "148837764429922304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1506074528/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1506074528/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #1263 Joy To The World!: Faith Hill $0.99 Warner Bros./Nashville http://t.co/6hbpsTkG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:02 +0000", "from_user": "eloizinha17", "from_user_id": 370236476, "from_user_id_str": "370236476", "from_user_name": "eloisa mendes", "geo": null, "id": 148837761888174080, "id_str": "148837761888174081", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700725730/Foraver_nice___normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700725730/Foraver_nice___normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@PraFeBrum , gostei d+ vc, cantando no #festivaldepromessas!! Deus te usa tremendamente!!", "to_user": "PraFeBrum", "to_user_id": 60118331, "to_user_id_str": "60118331", "to_user_name": "Fernanda Brum"}, +{"created_at": "Mon, 19 Dec 2011 18:51:02 +0000", "from_user": "jkmcgo", "from_user_id": 76228352, "from_user_id_str": "76228352", "from_user_name": "Jen ", "geo": null, "id": 148837761565208580, "id_str": "148837761565208576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/666211638/Photo_on_2010-01-28_at_19.58_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/666211638/Photo_on_2010-01-28_at_19.58_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Joan_Rivers: Had the BEST weekend EVER! Stayed at the Williamsburg Inn in Colonial Williamsburg-the most amazing place in the USA. Just magical!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:02 +0000", "from_user": "lytygyso", "from_user_id": 433870418, "from_user_id_str": "433870418", "from_user_name": "Mansur Carmont", "geo": null, "id": 148837760868958200, "id_str": "148837760868958211", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687220381/341_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687220381/341_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "pay with cash online http://t.co/840FKHPs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:01 +0000", "from_user": "VocalistSongs", "from_user_id": 359191521, "from_user_id_str": "359191521", "from_user_name": "Richard Floyd", "geo": null, "id": 148837759333838850, "id_str": "148837759333838849", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1506074528/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1506074528/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #1162 Silent Night, Holy Night!: Faith Hill $0.99 Warner Bros./Nashville http://t.co/gBtO0cXi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:01 +0000", "from_user": "Feiertag4558dab", "from_user_id": 421653651, "from_user_id_str": "421653651", "from_user_name": "Billye Feiertag", "geo": null, "id": 148837759069593600, "id_str": "148837759069593600", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1658341795/4111844931195785_femme_above_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658341795/4111844931195785_femme_above_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#1: Reader\\u2019s Digest: Reader\\u2019s Digest by Reader\\u2019s Digest USA 295 days in the top 100 (89) Download: $ 1.49 11 use... http://t.co/vhZPvoyy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:01 +0000", "from_user": "Delavina2858gro", "from_user_id": 420249275, "from_user_id_str": "420249275", "from_user_name": "Katlyn Delavina", "geo": null, "id": 148837758146842620, "id_str": "148837758146842624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1655263217/11889545071194841_alejandra_c__model_4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655263217/11889545071194841_alejandra_c__model_4_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#1: Reader\\u2019s Digest: Reader\\u2019s Digest by Reader\\u2019s Digest USA 295 days in the top 100 (89) Download: $ 1.49 11 use... http://t.co/j2Jy9hTT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:01 +0000", "from_user": "VocalistSongs", "from_user_id": 359191521, "from_user_id_str": "359191521", "from_user_name": "Richard Floyd", "geo": null, "id": 148837757731614720, "id_str": "148837757731614721", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1506074528/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1506074528/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #1962 Father Christmas: The Kinks $0.99 Wicked Cool Records http://t.co/O9u4EVET", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:00 +0000", "from_user": "NazrinFaiz", "from_user_id": 37905158, "from_user_id_str": "37905158", "from_user_name": "nazrin faiz shuaimi", "geo": null, "id": 148837755345047550, "id_str": "148837755345047552", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/264095425/m_3dafb37f96a0476280ce8aec2e1ba532_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/264095425/m_3dafb37f96a0476280ce8aec2e1ba532_1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@laddajacko haha, tgh free lad, liga USA tgh cuti sem ni,,", "to_user": "laddajacko", "to_user_id": 59163057, "to_user_id_str": "59163057", "to_user_name": "Norman Halief", "in_reply_to_status_id": 148837427593752580, "in_reply_to_status_id_str": "148837427593752576"}, +{"created_at": "Mon, 19 Dec 2011 18:51:00 +0000", "from_user": "ri_aldoo", "from_user_id": 29153340, "from_user_id_str": "29153340", "from_user_name": "rialdo rumapar", "geo": null, "id": 148837754061586430, "id_str": "148837754061586432", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1647158085/330060893_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647158085/330060893_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Eh tdk usa ba praman2 lgi, memang bodok RT @antaranews: Kapolda Sulteng: bentrok perburuk citra daerah http://t.co/ybykcbbZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:00 +0000", "from_user": "soleftw", "from_user_id": 83375508, "from_user_id_str": "83375508", "from_user_name": "Sool.", "geo": null, "id": 148837752937525250, "id_str": "148837752937525248", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687180672/301221_10150485187027977_619317976_11200129_484537210_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687180672/301221_10150485187027977_619317976_11200129_484537210_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "KATHERINE ME TRAJO UN ANTIBACTERIAL DE USA, MAJ CUCHIP.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:58 +0000", "from_user": "manulinka", "from_user_id": 298687024, "from_user_id_str": "298687024", "from_user_name": "Nika ", "geo": null, "id": 148837747120013300, "id_str": "148837747120013312", "iso_language_code": "pl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1643419089/5794752770_a5bb9a2ed9_z_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643419089/5794752770_a5bb9a2ed9_z_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"-Cz\\u0142owieku, gdzie ty mieszkasz? W jaskini? - Nie, w USA. - To wszystko wyja\\u015Bnia...\" LOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:58 +0000", "from_user": "_Adicta", "from_user_id": 123965194, "from_user_id_str": "123965194", "from_user_name": "La que hace spam.", "geo": null, "id": 148837746809643000, "id_str": "148837746809643008", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "JOHAHA USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:57 +0000", "from_user": "Um_Fernando", "from_user_id": 326284430, "from_user_id_str": "326284430", "from_user_name": "Fernando Henrique", "geo": null, "id": 148837740761452540, "id_str": "148837740761452544", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702340114/Darth_Vader_tbm_comemora_natal_po_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702340114/Darth_Vader_tbm_comemora_natal_po_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SeuportalBlog @hmfail mas n\\u00E3o usa em caps que fica muito zuado", "to_user": "SeuportalBlog", "to_user_id": 340497496, "to_user_id_str": "340497496", "to_user_name": "SeuportalBlog", "in_reply_to_status_id": 148837536989577200, "in_reply_to_status_id_str": "148837536989577216"}, +{"created_at": "Mon, 19 Dec 2011 18:50:55 +0000", "from_user": "AlmaMaderoB", "from_user_id": 148918046, "from_user_id_str": "148918046", "from_user_name": "Alma Madero Benitez", "geo": null, "id": 148837734910406660, "id_str": "148837734910406656", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1620897626/AlmaToon_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620897626/AlmaToon_normal.gif", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @JavierSantoyo: Es cierto @GustavoMadero q AN esta tan malito d su autocritica, q la usa d argumento para negar registro a ciudadanos como @ClouthierManuel?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:55 +0000", "from_user": "Mirrors90", "from_user_id": 156420910, "from_user_id_str": "156420910", "from_user_name": "Mirrors", "geo": null, "id": 148837734373523460, "id_str": "148837734373523456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1629453203/then_and_now_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629453203/then_and_now_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@sar185a don't you live in USA?! I have to download my eps from USA as we don't get it quickly here. It's brilliant. I love it!", "to_user": "sar185a", "to_user_id": 40592776, "to_user_id_str": "40592776", "to_user_name": "sarah king", "in_reply_to_status_id": 148837259037249540, "in_reply_to_status_id_str": "148837259037249537"}, +{"created_at": "Mon, 19 Dec 2011 18:50:55 +0000", "from_user": "Mentirosita_", "from_user_id": 166659596, "from_user_id_str": "166659596", "from_user_name": "Lady\\u2665.", "geo": null, "id": 148837731731128320, "id_str": "148837731731128320", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1657693123/Colombia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657693123/Colombia_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "ANDREA USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:54 +0000", "from_user": "zandrawtnorvell", "from_user_id": 305967447, "from_user_id_str": "305967447", "from_user_name": "Zandra Norvell", "geo": null, "id": 148837730888065020, "id_str": "148837730888065024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685458293/imagesCAJUBWXJ_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685458293/imagesCAJUBWXJ_normal", "source": "<a href="http://topcybermondaysales.com" rel="nofollow">topcybermondaysalesdotcom</a>", "text": "Low Price F-Black & Decker FP1600B 8-Cup Food Processor, Black At Usa Store http://t.co/5YjTJ6JP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:53 +0000", "from_user": "buulux_", "from_user_id": 342889902, "from_user_id_str": "342889902", "from_user_name": "Bruna Duarte", "geo": null, "id": 148837724303015940, "id_str": "148837724303015936", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685183400/024_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685183400/024_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:52 +0000", "from_user": "MarleyWayniac", "from_user_id": 98212989, "from_user_id_str": "98212989", "from_user_name": "Marley Carter.", "geo": null, "id": 148837721132105730, "id_str": "148837721132105728", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1686161825/IMG02014-20110214-1304_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686161825/IMG02014-20110214-1304_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Persona original no usa franelas de bob esponja o de perry #EsAsi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:52 +0000", "from_user": "pelosbriseno", "from_user_id": 2873271, "from_user_id_str": "2873271", "from_user_name": "Alex Briseno", "geo": null, "id": 148837720733646850, "id_str": "148837720733646848", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1212017340/Basta_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1212017340/Basta_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:51 +0000", "from_user": "Caaioheenriq", "from_user_id": 162772389, "from_user_id_str": "162772389", "from_user_name": "Caio Henrique : )", "geo": null, "id": 148837716891676670, "id_str": "148837716891676672", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1635452235/10202011806_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635452235/10202011806_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:49 +0000", "from_user": "circotimia_", "from_user_id": 221610474, "from_user_id_str": "221610474", "from_user_name": "M a i t e\\u10E6. ", "geo": null, "id": 148837709119635460, "id_str": "148837709119635456", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698350821/jjo__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698350821/jjo__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "SINBIOGRAFIA USA COND\\u00D3N", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:49 +0000", "from_user": "The_Apux", "from_user_id": 109052171, "from_user_id_str": "109052171", "from_user_name": "Cesar Casta\\u00F1eda", "geo": null, "id": 148837707395764220, "id_str": "148837707395764225", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694051337/comid_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694051337/comid_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:48 +0000", "from_user": "AdbeelB", "from_user_id": 73560843, "from_user_id_str": "73560843", "from_user_name": "Adbeel Balaguer", "geo": null, "id": 148837702639419400, "id_str": "148837702639419392", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1612818756/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612818756/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@AleR_5 :O mujer! te vas para USA o para Caracas?", "to_user": "AleR_5", "to_user_id": 102997297, "to_user_id_str": "102997297", "to_user_name": "Alejandra Rodriguez", "in_reply_to_status_id": 148833792562434050, "in_reply_to_status_id_str": "148833792562434050"}, +{"created_at": "Mon, 19 Dec 2011 18:50:46 +0000", "from_user": "nippon2japan", "from_user_id": 324783646, "from_user_id_str": "324783646", "from_user_name": "nippon2japan", "geo": null, "id": 148837696440254460, "id_str": "148837696440254464", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1415194774/fijii_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1415194774/fijii_normal.jpg", "source": "<a href="http://twittbot.net/" rel="nofollow">twittbot.net</a>", "text": "(*^\\u25CB^)\\u65E5\\u672C\\u672A\\u767A\\u58F2\\u3001USA\\u9650\\u5B9A\\u30E2\\u30C7\\u30EB\\u306E\\u30EA\\u30FC\\u30D0\\u30A4\\u30B9\\u306E\\u30AB\\u30FC\\u30B4\\u30D1\\u30F3\\u30C4 http://t.co/9vbrLnDR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:45 +0000", "from_user": "HeastOidaWappla", "from_user_id": 21240467, "from_user_id_str": "21240467", "from_user_name": "Nicole Lamprecht", "geo": null, "id": 148837693181280260, "id_str": "148837693181280256", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1635997131/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635997131/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/2hfrCq12 & http://t.co/abE5Bttf weihnachts w\\u00FCnsche ;P", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:50:48 +0000", "from_user": "AdbeelB", "from_user_id": 73560843, "from_user_id_str": "73560843", "from_user_name": "Adbeel Balaguer", "geo": null, "id": 148837702639419400, "id_str": "148837702639419392", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1612818756/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612818756/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@AleR_5 :O mujer! te vas para USA o para Caracas?", "to_user": "AleR_5", "to_user_id": 102997297, "to_user_id_str": "102997297", "to_user_name": "Alejandra Rodriguez", "in_reply_to_status_id": 148833792562434050, "in_reply_to_status_id_str": "148833792562434050"}, +{"created_at": "Mon, 19 Dec 2011 18:50:46 +0000", "from_user": "nippon2japan", "from_user_id": 324783646, "from_user_id_str": "324783646", "from_user_name": "nippon2japan", "geo": null, "id": 148837696440254460, "id_str": "148837696440254464", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1415194774/fijii_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1415194774/fijii_normal.jpg", "source": "<a href="http://twittbot.net/" rel="nofollow">twittbot.net</a>", "text": "(*^\\u25CB^)\\u65E5\\u672C\\u672A\\u767A\\u58F2\\u3001USA\\u9650\\u5B9A\\u30E2\\u30C7\\u30EB\\u306E\\u30EA\\u30FC\\u30D0\\u30A4\\u30B9\\u306E\\u30AB\\u30FC\\u30B4\\u30D1\\u30F3\\u30C4 http://t.co/9vbrLnDR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:45 +0000", "from_user": "HeastOidaWappla", "from_user_id": 21240467, "from_user_id_str": "21240467", "from_user_name": "Nicole Lamprecht", "geo": null, "id": 148837693181280260, "id_str": "148837693181280256", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1635997131/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635997131/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/2hfrCq12 & http://t.co/abE5Bttf weihnachts w\\u00FCnsche ;P", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:44 +0000", "from_user": "Japadearaque", "from_user_id": 203037893, "from_user_id_str": "203037893", "from_user_name": "Homi da Mona Lisa", "geo": null, "id": 148837687531540480, "id_str": "148837687531540481", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694520461/japadearaque_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694520461/japadearaque_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "nau da pra usa 4shared", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:44 +0000", "from_user": "NorCalCrush", "from_user_id": 264934281, "from_user_id_str": "264934281", "from_user_name": "Team CRUSH", "geo": null, "id": 148837686881435650, "id_str": "148837686881435648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1290663128/norcal_crush_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1290663128/norcal_crush_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Rick Santorum 2012: What Are His Positions? http://t.co/q5HdBpQU He would give tax breaks to manufacturers who kept jobs in the USA. Great!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:44 +0000", "from_user": "francomb6", "from_user_id": 79325833, "from_user_id_str": "79325833", "from_user_name": "franco brognoli", "geo": null, "id": 148837686705262600, "id_str": "148837686705262592", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1584395523/foto_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1584395523/foto_twitter_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "eu acho que sou o \\u00FAnico que usa ar condicionado e ventilador ao mesmo tempo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:43 +0000", "from_user": "Kareyhtz", "from_user_id": 431757216, "from_user_id_str": "431757216", "from_user_name": "Karey Yago", "geo": null, "id": 148837682271891460, "id_str": "148837682271891456", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681154158/large_41018_1377232112211_1274100057_30918221_69976_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681154158/large_41018_1377232112211_1274100057_30918221_69976_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "10' x 10' Hand Painted Muslin Background - Terrestrial Spirit - Made In The USA - V9031: Professional quality ba... http://t.co/a77JY7wP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:41 +0000", "from_user": "HotelCatedralPV", "from_user_id": 146098726, "from_user_id_str": "146098726", "from_user_name": "Hotel CATEDRAL P.V.", "geo": null, "id": 148837674831192060, "id_str": "148837674831192064", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1410059060/Imagen3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1410059060/Imagen3_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @MeGustaVallarta: Vamos a disfrutar 2 Horas de Yin Yoga con Heidi Ellison de Chicago, Illinois, USA en #PuertoVallarta http://t.co/4O8AUMIK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:41 +0000", "from_user": "Radclifficus", "from_user_id": 145716051, "from_user_id_str": "145716051", "from_user_name": "Liesa \\u2764", "geo": null, "id": 148837673883279360, "id_str": "148837673883279363", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1692914947/84VMPE3r_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692914947/84VMPE3r_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Andy___Williams haha xD I wish I could live in usa @.@ haha. LOS ANGELES HERE I AM BABY xD", "to_user": "Andy___Williams", "to_user_id": 240476903, "to_user_id_str": "240476903", "to_user_name": "Andy Williams", "in_reply_to_status_id": 148824643569070080, "in_reply_to_status_id_str": "148824643569070080"}, +{"created_at": "Mon, 19 Dec 2011 18:50:40 +0000", "from_user": "Gametalkerz", "from_user_id": 203232009, "from_user_id_str": "203232009", "from_user_name": "Gametalkerz", "geo": null, "id": 148837669202440200, "id_str": "148837669202440192", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1263569288/logo_gz_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263569288/logo_gz_normal.jpg", "source": "<a href="http://www.gametalkerz.se" rel="nofollow">Gametalkerz Blogg</a>", "text": "Bekr\\u00E4ftade spel f\\u00F6r Vita-lansering i USA och Europa http://t.co/USzBWgMF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:39 +0000", "from_user": "kmagnuson", "from_user_id": 16520909, "from_user_id_str": "16520909", "from_user_name": "kmagnuson", "geo": null, "id": 148837666358693900, "id_str": "148837666358693889", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1284241970/MAGNUSON_NEW_TWITTER_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1284241970/MAGNUSON_NEW_TWITTER_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SBradleyDC: #Syracuse No. 1 in both college hoop polls. Received 53 of 64 1st place votes in @AP media poll and 30 of 31 in @ESPN/USA Today coaches poll", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:39 +0000", "from_user": "ugbededenen", "from_user_id": 297869230, "from_user_id_str": "297869230", "from_user_name": "UGBEDE DENEN RONALD", "geo": null, "id": 148837664693551100, "id_str": "148837664693551105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685049018/Ronnie2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685049018/Ronnie2_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @healthfinder: Your #doctor or nurse can help you stay healthy. Adults typically need a checkup every 1 to 5 years: http://t.co/2D8tVm88.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:39 +0000", "from_user": "windwest", "from_user_id": 76922302, "from_user_id_str": "76922302", "from_user_name": "Wind West", "geo": null, "id": 148837664106348540, "id_str": "148837664106348544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/482386955/windwest_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/482386955/windwest_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Unlocked iPhones Working On T-Mobile USA\\u2019s 3G Network in Some Areas http://t.co/CXr1LaDo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:37 +0000", "from_user": "elbalderas", "from_user_id": 50122342, "from_user_id_str": "50122342", "from_user_name": "jorgito balderas", "geo": null, "id": 148837659593289730, "id_str": "148837659593289728", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1505022601/IMG_3063_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505022601/IMG_3063_normal.JPG", "source": "<a href="http://www.apple.com" rel="nofollow">YouTube on iOS</a>", "text": "Santa Claus ya usa iPhone !!! http://t.co/LtdQiPr6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:37 +0000", "from_user": "LeehCabral", "from_user_id": 218568034, "from_user_id_str": "218568034", "from_user_name": "Let\\u00EDcia Cabral", "geo": null, "id": 148837655700975600, "id_str": "148837655700975616", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1536438730/OwAAAGsdoprMJMMrdCegBdt1Zj91zQkYmhR_nhBLET7X0bREJIxU51ndbpMyp3IlRFM4oq-d33MbQo-upXwQWE8u31AAm1T1UPxXsN3inj2RFBAdnYBm_ZXTtwLc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1536438730/OwAAAGsdoprMJMMrdCegBdt1Zj91zQkYmhR_nhBLET7X0bREJIxU51ndbpMyp3IlRFM4oq-d33MbQo-upXwQWE8u31AAm1T1UPxXsN3inj2RFBAdnYBm_ZXTtwLc_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:36 +0000", "from_user": "diQueeiroz", "from_user_id": 108033783, "from_user_id_str": "108033783", "from_user_name": "RonRibeiro", "geo": null, "id": 148837655063437300, "id_str": "148837655063437312", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702243056/EqIi2fN2_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702243056/EqIi2fN2_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:36 +0000", "from_user": "liwepud", "from_user_id": 433679483, "from_user_id_str": "433679483", "from_user_name": "Aboli Folliss", "geo": null, "id": 148837652186136580, "id_str": "148837652186136576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686066842/1449_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686066842/1449_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @mytojys: get credit with bad credit http://t.co/9CaeKnOM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:36 +0000", "from_user": "PlanBnB", "from_user_id": 78466241, "from_user_id_str": "78466241", "from_user_name": "PlanBnb", "geo": null, "id": 148837652160983040, "id_str": "148837652160983040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/444021711/DSC00795_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/444021711/DSC00795_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Banking in Hong Kong from Thailand - Orient Expat: As a USA citizen living in Thailand I am having diffi... http://t.co/fh8z9Yxn #Expats", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:36 +0000", "from_user": "RealMadridFC_", "from_user_id": 283015751, "from_user_id_str": "283015751", "from_user_name": "Real Madrid FC", "geo": null, "id": 148837651733168130, "id_str": "148837651733168128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1317063121/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317063121/logo_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "EduKick International Football Academies Square off Against Real Madrid in Spain's Prestigious Inter - PR-USA.ne... http://t.co/qOpujD8t", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:35 +0000", "from_user": "PedalPushersCO", "from_user_id": 59458234, "from_user_id_str": "59458234", "from_user_name": "Pedal Pushers", "geo": null, "id": 148837650227396600, "id_str": "148837650227396608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683524297/logo__1__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683524297/logo__1__normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @BikePortland: RT @mathowie: @rapha_n_america \"made in USA\" isn't about quality, but supporting local infrastructure and economies. Also, carbon footprints", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:35 +0000", "from_user": "Grazieelleap", "from_user_id": 173605792, "from_user_id_str": "173605792", "from_user_name": "Grazielle Alves ", "geo": null, "id": 148837648163799040, "id_str": "148837648163799040", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1244558178/corteey_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1244558178/corteey_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Me pergunte qualquer coisa. - \\u203A 1. Altura? 2. Peso? 3. Voc\\u00EA fuma? 4. Voc\\u00EA bebe? 5. Usa/j\\u00E1 usou drogas? 6.... http://t.co/miyEtOxl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:34 +0000", "from_user": "Mary_Chain", "from_user_id": 162873792, "from_user_id_str": "162873792", "from_user_name": "Maria Catena PRINCI", "geo": null, "id": 148837645160689660, "id_str": "148837645160689664", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1673279462/AUGURI_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673279462/AUGURI_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@David_IsayBlog \\u00E8 italiano, si usa di solito quando si stampa in sovraimpressione come nei bancomat :)", "to_user": "David_IsayBlog", "to_user_id": 9407562, "to_user_id_str": "9407562", "to_user_name": "David Di Tivoli", "in_reply_to_status_id": 148832479543967740, "in_reply_to_status_id_str": "148832479543967744"}, +{"created_at": "Mon, 19 Dec 2011 18:50:34 +0000", "from_user": "PutoTwitero", "from_user_id": 259030806, "from_user_id_str": "259030806", "from_user_name": "Andres, eso creo. =/", "geo": null, "id": 148837644024033280, "id_str": "148837644024033283", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702603740/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702603740/avatar_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @_Adicta: PUTO USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:34 +0000", "from_user": "ASEMUN", "from_user_id": 51734938, "from_user_id_str": "51734938", "from_user_name": "ASEM UN ASSOCIATION ", "geo": null, "id": 148837643499733000, "id_str": "148837643499732993", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/603845575/relations_flag_5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/603845575/relations_flag_5_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @ChinaDailyUSA: Kim Jong-il passes away http://t.co/ZuZL8q6h", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:33 +0000", "from_user": "tomflanagan8", "from_user_id": 441015604, "from_user_id_str": "441015604", "from_user_name": "tom flanagan", "geo": null, "id": 148837640777629700, "id_str": "148837640777629696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@achrisevans hi Chris just to say happy Christmas from USA. Have been here since last month and loving it", "to_user": "achrisevans", "to_user_id": 72235760, "to_user_id_str": "72235760", "to_user_name": "Chris Evans"}, +{"created_at": "Mon, 19 Dec 2011 18:50:33 +0000", "from_user": "Kieferrrrrrrrrr", "from_user_id": 299696563, "from_user_id_str": "299696563", "from_user_name": "Kiefer Stermer", "geo": null, "id": 148837640383365120, "id_str": "148837640383365120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1616483581/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616483581/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "usa has got to be the dumbest channel on tv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:33 +0000", "from_user": "_KeepHope", "from_user_id": 362540574, "from_user_id_str": "362540574", "from_user_name": "Charly\\u2122", "geo": null, "id": 148837639548710900, "id_str": "148837639548710912", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701082899/RW_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701082899/RW_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@Just_Stylement Une fois j'avais achet\\u00E9 un t-shirt Chuck Bass, mais aux USA, et le truc me sert de pyjama... :b", "to_user": "Just_Stylement", "to_user_id": 347460827, "to_user_id_str": "347460827", "to_user_name": "Romane Styles \\u2020", "in_reply_to_status_id": 148836409724239870, "in_reply_to_status_id_str": "148836409724239873"}, +{"created_at": "Mon, 19 Dec 2011 18:50:32 +0000", "from_user": "JavierSantoyo", "from_user_id": 19959069, "from_user_id_str": "19959069", "from_user_name": "Javier A. Santoyo F.", "geo": null, "id": 148837636734337020, "id_str": "148837636734337024", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697522366/jas2011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697522366/jas2011_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Es cierto @GustavoMadero q AN esta tan malito d su autocritica, q la usa d argumento para negar registro a ciudadanos como @ClouthierManuel?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:32 +0000", "from_user": "mytwittsPic", "from_user_id": 390737681, "from_user_id_str": "390737681", "from_user_name": "RETweet PIcs ", "geo": null, "id": 148837636595912700, "id_str": "148837636595912704", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1684906701/_E2_80_A9_20-_20_D0_BC_CC_B5_CC_B5oh_C9_91_D0_B8d_20_23_20_E2_80_A9_20-_20_23_D9_85_D9_85_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684906701/_E2_80_A9_20-_20_D0_BC_CC_B5_CC_B5oh_C9_91_D0_B8d_20_23_20_E2_80_A9_20-_20_23_D9_85_D9_85_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "#Add me pls and #RT #BBm #PIN:27B5FCF5. #Usa #China #Japan #Asia #spain #Uk #Indonesia #Philippine #Arab", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:32 +0000", "from_user": "izcherry", "from_user_id": 78118956, "from_user_id_str": "78118956", "from_user_name": "Isabelle ", "geo": null, "id": 148837635597672450, "id_str": "148837635597672448", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700859024/2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700859024/2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:32 +0000", "from_user": "fernandagpaes", "from_user_id": 133453721, "from_user_id_str": "133453721", "from_user_name": "Fernanda Paes", "geo": null, "id": 148837634679111680, "id_str": "148837634679111682", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1650608967/OwAAAL_hE6XfYdHIXbmQ_pBXqduAZ4fR4q6FCUBqtzgIjeIARwPkfoPrZlmeNxqynS_jfXAh73uKdgIK3XOgAAWl_gEAm1T1UMZAroUjdaw2d8VVmmqJndTs68iG_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650608967/OwAAAL_hE6XfYdHIXbmQ_pBXqduAZ4fR4q6FCUBqtzgIjeIARwPkfoPrZlmeNxqynS_jfXAh73uKdgIK3XOgAAWl_gEAm1T1UMZAroUjdaw2d8VVmmqJndTs68iG_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:29 +0000", "from_user": "justchillin247", "from_user_id": 233828667, "from_user_id_str": "233828667", "from_user_name": "Ezekiel Finister", "geo": null, "id": 148837622540812300, "id_str": "148837622540812288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1631373273/justchillin247_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631373273/justchillin247_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "The USA is the only country where weed is consider illegal -_______-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:27 +0000", "from_user": "BenStarkHH", "from_user_id": 25374201, "from_user_id_str": "25374201", "from_user_name": "Ben", "geo": null, "id": 148837615750225920, "id_str": "148837615750225922", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1125091596/Ben_Stark_003_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1125091596/Ben_Stark_003_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Someone get this to #StevenColbert - A Butter message to the USA! http://t.co/FlhNnU4s", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:27 +0000", "from_user": "grisantycosme", "from_user_id": 114464878, "from_user_id_str": "114464878", "from_user_name": "Leonardo Grisanty \\u2714", "geo": null, "id": 148837615179808770, "id_str": "148837615179808768", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1677115805/perfil_mio_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677115805/perfil_mio_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Mi Numero en USA 1-908-342-7818", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:25 +0000", "from_user": "virtualjobporta", "from_user_id": 279010499, "from_user_id_str": "279010499", "from_user_name": "Virtual OfficeServic", "geo": null, "id": 148837608326299650, "id_str": "148837608326299648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1395802035/logo_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1395802035/logo_twitter_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Locksmith Data Base 2: I loking for data base (email and tel) for locksmiths store in the USA ... http://t.co/Lxl2HmtN #job #freelancer", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:25 +0000", "from_user": "Gabrielcamppos", "from_user_id": 240744716, "from_user_id_str": "240744716", "from_user_name": "Gabriel Campos", "geo": null, "id": 148837606891851780, "id_str": "148837606891851776", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1616195802/PAAAANAw7TncZ22iQAvMVZfDwXLp0n00P8t2xyScHuhRiKl6M5J8MyrUEJa1fmtbloLSDT0ZukS_QJSTLVsI7Pfn3iQAm1T1UL6LK7MSvxH-qzmP0xzxlihl5WVP_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1616195802/PAAAANAw7TncZ22iQAvMVZfDwXLp0n00P8t2xyScHuhRiKl6M5J8MyrUEJa1fmtbloLSDT0ZukS_QJSTLVsI7Pfn3iQAm1T1UL6LK7MSvxH-qzmP0xzxlihl5WVP_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:21 +0000", "from_user": "albadmes", "from_user_id": 86520751, "from_user_id_str": "86520751", "from_user_name": "Alba", "geo": null, "id": 148837592371183600, "id_str": "148837592371183617", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1645539887/dulce12653_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645539887/dulce12653_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @elchascas: \\u00DAltimas semanas de #Lacasadeallado en USA. \\u00A1Lleg\\u00F3 la hora de desenmascarar a los verdaderos culpables! http://t.co/rnvHipHu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:21 +0000", "from_user": "Tkbmusic444", "from_user_id": 387145876, "from_user_id_str": "387145876", "from_user_name": "anna", "geo": null, "id": 148837590244655100, "id_str": "148837590244655104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1674373259/Aiden-mic_152440_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674373259/Aiden-mic_152440_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@1DandAidenRule lol I just heard it on usa radio yesterday I am not really a onedirection fan though I wish them well, love @Mr_Grimshaw vce", "to_user": "1DandAidenRule", "to_user_id": 217178660, "to_user_id_str": "217178660", "to_user_name": "French fan of AG&1D!", "in_reply_to_status_id": 148836738528321540, "in_reply_to_status_id_str": "148836738528321537"}, +{"created_at": "Mon, 19 Dec 2011 18:50:21 +0000", "from_user": "Yamii_97", "from_user_id": 293288359, "from_user_id_str": "293288359", "from_user_name": "Yamila", "geo": null, "id": 148837589728755700, "id_str": "148837589728755713", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1633973423/Yamii_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633973423/Yamii_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "No comprender, si te boludea, chamuya, te quiere, te usa, o te toma por estupida", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:20 +0000", "from_user": "animalpolitikoa", "from_user_id": 334853861, "from_user_id_str": "334853861", "from_user_name": "DIEGO FERN\\u00C1N", "geo": null, "id": 148837585291198460, "id_str": "148837585291198464", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1590555737/p7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1590555737/p7_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @CubanitoenCuba: Sirios confirman apoyo al Gobierno de Al Assad y rechazan injerencia extranjera: TeleSur/La... http://t.co/JOEPfpGf #Cuba #noticias #usa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:19 +0000", "from_user": "Milgreddy", "from_user_id": 83693653, "from_user_id_str": "83693653", "from_user_name": "Milgreddy k. ", "geo": null, "id": 148837583206621200, "id_str": "148837583206621184", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1673786813/330906669_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673786813/330906669_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:18 +0000", "from_user": "lglehn", "from_user_id": 69127510, "from_user_id_str": "69127510", "from_user_name": "Luis von Glehn", "geo": null, "id": 148837577590452220, "id_str": "148837577590452225", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/383371450/60165b67_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/383371450/60165b67_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "NASA - Expedition 30 Soyuz Rolls to the Pad http://t.co/Jih8QZ0K via @addthis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:16 +0000", "from_user": "nilatybiby", "from_user_id": 431420079, "from_user_id_str": "431420079", "from_user_name": "Salomea Aisbett", "geo": null, "id": 148837571252854800, "id_str": "148837571252854784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681061082/27_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681061082/27_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @xasijimaf: loans small business chicago http://t.co/ig8NHKQN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:14 +0000", "from_user": "pacgi", "from_user_id": 21244364, "from_user_id_str": "21244364", "from_user_name": "gi do matheus", "geo": null, "id": 148837562574839800, "id_str": "148837562574839809", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1645511497/Foto_criada_em_2011-11-18__s_15.36__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645511497/Foto_criada_em_2011-11-18__s_15.36__2_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "\\u00C9 VOC\\u00CA, SATAN\\u00C1S?? RT: \\u201C@MacMagazine: V\\u00EDdeo: Yamaha usa AirPort Express para fazer a Siri tocar piano - http://t.co/eMTZ1eT3\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:14 +0000", "from_user": "yasmiim_Brandao", "from_user_id": 334724304, "from_user_id_str": "334724304", "from_user_name": "yasmiim.B", "geo": null, "id": 148837562348343300, "id_str": "148837562348343296", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1571200225/of__2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1571200225/of__2__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Paix\\u00E3o n\\u00E3o \\u00E9 que nem calcinha que agente usa uma por dia ,' Mel fronckowiak'", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:14 +0000", "from_user": "minefreeworld", "from_user_id": 219027602, "from_user_id_str": "219027602", "from_user_name": "ICBL", "geo": null, "id": 148837560821616640, "id_str": "148837560821616641", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1583717731/P4P_square__jpg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583717731/P4P_square__jpg_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Reporter asks #DOS if it is \"incongruous\" that #US supports mine clearance, but refuses to #banlandmines: http://t.co/e7pnIuak", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:14 +0000", "from_user": "pdenegri", "from_user_id": 46689518, "from_user_id_str": "46689518", "from_user_name": "Juan Pablo Denegri", "geo": null, "id": 148837559395561470, "id_str": "148837559395561472", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1099157100/V8_0116_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1099157100/V8_0116_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:09 +0000", "from_user": "qycyhuli", "from_user_id": 430617013, "from_user_id_str": "430617013", "from_user_name": "Kanika Crampton", "geo": null, "id": 148837541364252670, "id_str": "148837541364252672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1678818394/57_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678818394/57_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @pakynegif: car insurance premiums nsw http://t.co/UfFzSyrc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:09 +0000", "from_user": "cjohnsonstaub", "from_user_id": 74770422, "from_user_id_str": "74770422", "from_user_name": "C Johnson-Staub", "geo": null, "id": 148837538759581700, "id_str": "148837538759581696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1242263619/webcam_cjs_011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1242263619/webcam_cjs_011_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Pre-K winners for Race to the Top contest: Will they spur broader reform? - http://t.co/ROqNaFU5 http://t.co/kArr6qiX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:06 +0000", "from_user": "vanessa13006", "from_user_id": 17953744, "from_user_id_str": "17953744", "from_user_name": "Vanessa Touati", "geo": null, "id": 148837528743587840, "id_str": "148837528743587840", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1352936570/android1305366002902_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1352936570/android1305366002902_normal.png", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @CBeigbeder: La France 3eme pays le plus innovant de la planete, derriere USA et Japon ! Enfin une bonne nouvelle economique ! http://t.co/KppHgo2x", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:06 +0000", "from_user": "Laahguimaraes_", "from_user_id": 298908145, "from_user_id_str": "298908145", "from_user_name": "Larissa Guimaraes", "geo": null, "id": 148837527976026100, "id_str": "148837527976026112", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1546038729/SPM_A3812_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546038729/SPM_A3812_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @tadeuromao: N\\u00E3o precisa fala usa essa boca s\\u00F3 pra me beija ... \\u266A\\u266B\\u266A\\u266B @Laahguimaraes_ (L)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:06 +0000", "from_user": "quelbrandao", "from_user_id": 74761995, "from_user_id_str": "74761995", "from_user_name": "Raquel", "geo": null, "id": 148837527309131780, "id_str": "148837527309131776", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1178862268/DSC00182_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1178862268/DSC00182_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Quem gosta do presente usa tanto,que cai os strass :P", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:05 +0000", "from_user": "TopTenOffice", "from_user_id": 295160344, "from_user_id_str": "295160344", "from_user_name": "Richard Floyd", "geo": null, "id": 148837521810399230, "id_str": "148837521810399232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1482941325/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1482941325/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #169 Brother PC Connectable Labeling System (PT2730) $99.99: The PT-2730 is a professional, desktop l... http://t.co/fFE6thEE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:04 +0000", "from_user": "lalopevibut", "from_user_id": 434027033, "from_user_id_str": "434027033", "from_user_name": "Lettice Mays", "geo": null, "id": 148837518513676300, "id_str": "148837518513676289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687397454/780_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687397454/780_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "car insurance comparison sites in uk http://t.co/BQhp8AbP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:04 +0000", "from_user": "grisantycosme", "from_user_id": 114464878, "from_user_id_str": "114464878", "from_user_name": "Leonardo Grisanty \\u2714", "geo": null, "id": 148837517888720900, "id_str": "148837517888720896", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1677115805/perfil_mio_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677115805/perfil_mio_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@JFelizPacheco @Juanmanueldiaz @manuelrojasp @Elias_Cornelio @juangrisanty @Ramoncin22 Mi numero en USA 908-342-7818", "to_user": "JFelizPacheco", "to_user_id": 117142639, "to_user_id_str": "117142639", "to_user_name": "Jorge JuaN "}, +{"created_at": "Mon, 19 Dec 2011 18:50:03 +0000", "from_user": "DietitianSherry", "from_user_id": 194524906, "from_user_id_str": "194524906", "from_user_name": "SherryColemanCollins", "geo": null, "id": 148837513778298880, "id_str": "148837513778298881", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1151737479/IMGP4172_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1151737479/IMGP4172_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Most Americans don't eat like MyPlate, but when they do #SmartSnacking is a must to help reach nutrition goals. http://t.co/hHcia5wH...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:02 +0000", "from_user": "eqmon", "from_user_id": 190527988, "from_user_id_str": "190527988", "from_user_name": "Earthquake Watch M2+", "geo": +{"coordinates": [61.3371,-151.2547], "type": "Point"}, "id": 148837512641658880, "id_str": "148837512641658880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1123436740/richter-scale-sam_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1123436740/richter-scale-sam_normal.jpg", "source": "<a href="http://ijg.me" rel="nofollow">ijg</a>", "text": "3.3 - Southern Alaska (Kenai-Cook Inlet, AK 99682, USA) - 19/12/11 12:48:23 EST Depth: 65.6 km (40.76 mi) http://t.co/e8k7LqKN #hmrd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:02 +0000", "from_user": "LeaderReading", "from_user_id": 253283421, "from_user_id_str": "253283421", "from_user_name": "Leader Reading", "geo": null, "id": 148837511777615870, "id_str": "148837511777615873", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1508375424/logo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1508375424/logo_normal.JPG", "source": "<a href="http://www.visibli.com" rel="nofollow">Visibli</a>", "text": "Ayala Blanco: haciendo libros y reflexionando sobre el cine - http://t.co/LHhZ5Jxi (Comunicado de prensa) http://t.co/aCzRfOp6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:02 +0000", "from_user": "VioletStarfish", "from_user_id": 46455080, "from_user_id_str": "46455080", "from_user_name": "M\\u00F3nika Lara", "geo": null, "id": 148837509751779330, "id_str": "148837509751779329", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1514329800/RyM_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1514329800/RyM_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:59 +0000", "from_user": "gameswap1", "from_user_id": 297523136, "from_user_id_str": "297523136", "from_user_name": "gameswap", "geo": null, "id": 148837496313217020, "id_str": "148837496313217024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "(USA) [H] Skyrim, Dark Souls, Gears of War 3, others (360), Super Paper Mario (Wii), PSP games, [W] Metal Gear S... http://t.co/9KMni5S9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:57 +0000", "from_user": "iJesus89", "from_user_id": 94486791, "from_user_id_str": "94486791", "from_user_name": "\\u2730\\u2603\\u2744\\uF8FFJes\\u00FAs S.\\uF8FF\\u2730\\u2603\\u2744", "geo": null, "id": 148837488092393470, "id_str": "148837488092393472", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1701801618/FCB9AC74-EEFF-434D-93CA-F9AD3A4F2611_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701801618/FCB9AC74-EEFF-434D-93CA-F9AD3A4F2611_normal", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "C/c @AyudaMovistarVe @MovistarVe RT @OsvaldoMendoza: @iPhoneVeneno @iPhoneVen Miren la velocidad del 3G de T-Mobile USA http://t.co/ws1CEonQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:56 +0000", "from_user": "_tauaneinfanger", "from_user_id": 171594522, "from_user_id_str": "171594522", "from_user_name": "tata do Rodrigo ", "geo": null, "id": 148837487505186800, "id_str": "148837487505186816", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689362121/edb22MRr6nWefzdUwoAm1T1UJy1vNpgyaFCZgMXyePwpE8Lx5DH_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689362121/edb22MRr6nWefzdUwoAm1T1UJy1vNpgyaFCZgMXyePwpE8Lx5DH_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "ontem o Silvio Santos falando q a Miley tinha uma silhueta bonita tals,mas ela tinha celulite o.O iii tio tem q usa oculos viu ;))", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:55 +0000", "from_user": "NewAgeCDs", "from_user_id": 363734776, "from_user_id_str": "363734776", "from_user_name": "Richard Floyd", "geo": null, "id": 148837483495436300, "id_str": "148837483495436289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1517563969/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517563969/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #1827 Dreamsurf: Ocean Waves For Relaxation Nature Sounds $8.75: When night falls on the earth, the s... http://t.co/VCtJdwk5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:53 +0000", "from_user": "Heather989", "from_user_id": 23910769, "from_user_id_str": "23910769", "from_user_name": "Heather Lagan", "geo": null, "id": 148837472288256000, "id_str": "148837472288256000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1109356106/heather_20101_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1109356106/heather_20101_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Woohoo - First 5 STAR REVIEW on Amazon USA - Chaldean Numerology is welcomed! Thank you all for your support and enthusiasm - happy Monday!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:52 +0000", "from_user": "chavezrog", "from_user_id": 70936280, "from_user_id_str": "70936280", "from_user_name": "ROGER CHAVEZ", "geo": null, "id": 148837466944712700, "id_str": "148837466944712704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/394420350/AztecCalendarReplicaGoldSmall_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/394420350/AztecCalendarReplicaGoldSmall_normal.jpg", "source": "<a href="http://twidroyd.com" rel="nofollow">Twidroyd for Android</a>", "text": "RT @corazondefan @chavezrog usa vias alternas bro << yeah its called the street! Lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:48 +0000", "from_user": "ManSiciliano", "from_user_id": 430390368, "from_user_id_str": "430390368", "from_user_name": "Man Siciliano", "geo": null, "id": 148837452851843070, "id_str": "148837452851843072", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1678323282/092148_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678323282/092148_normal.jpg", "source": "<a href="http://ping.fm/" rel="nofollow">Ping.fm</a>", "text": "Best TEEN vacation spots in USA and activities there? - Question by Motherscreations: Best TEEN vacation spots in US... http://t.co/GGT9oEdA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:47 +0000", "from_user": "caritoparrado", "from_user_id": 155793515, "from_user_id_str": "155793515", "from_user_name": "La Pepona", "geo": null, "id": 148837448657551360, "id_str": "148837448657551360", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689965590/a57vVACg_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689965590/a57vVACg_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@Marks_23 mmm...usa la bota no mas tu!!! 77", "to_user": "Marks_23", "to_user_id": 120365846, "to_user_id_str": "120365846", "to_user_name": "Marcos Alvarez", "in_reply_to_status_id": 148837032494510080, "in_reply_to_status_id_str": "148837032494510080"}, +{"created_at": "Mon, 19 Dec 2011 18:49:46 +0000", "from_user": "MyKidrauhlJB", "from_user_id": 369256983, "from_user_id_str": "369256983", "from_user_name": "BrendaBieber\\u2665.", "geo": null, "id": 148837444219965440, "id_str": "148837444219965440", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701464602/justin_bieber_by_kermena-d4j62ie_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701464602/justin_bieber_by_kermena-d4j62ie_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @SelenaNoEsReal: Ese momento inc\\u00F3modo cuando todo el mundo se da cuenta de que Selena Gomez usa PlayBack.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:41 +0000", "from_user": "Sharleenpvt", "from_user_id": 440183802, "from_user_id_str": "440183802", "from_user_name": "Sharleen Scotton", "geo": null, "id": 148837421306478600, "id_str": "148837421306478593", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700511597/large_blarg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700511597/large_blarg_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Frieling USA ADE Angelina, Electronic Kitchen Scale: ADE Germany is a leading innovator in consumer scales. ADE ... http://t.co/08dcGxtw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:34 +0000", "from_user": "Aleidaabbd", "from_user_id": 426263401, "from_user_id_str": "426263401", "from_user_name": "Aleida Wigle", "geo": null, "id": 148837393284345860, "id_str": "148837393284345856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668799743/LLCM-1650_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668799743/LLCM-1650_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "WWKD? What would Kaitlyn do? White USA Flag / Checker Racing Hat / Baseball Cap: T-ShirtFrenzy offers over 30,00... http://t.co/AkBnKsuk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:33 +0000", "from_user": "roque0001", "from_user_id": 82899095, "from_user_id_str": "82899095", "from_user_name": "Roberto Garcia Roque", "geo": null, "id": 148837391061352450, "id_str": "148837391061352448", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/809438070/3517736384_f1d4fbc94e_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/809438070/3517736384_f1d4fbc94e_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:33 +0000", "from_user": "MaLuLeimberg", "from_user_id": 160777213, "from_user_id_str": "160777213", "from_user_name": "MaLu Leimberg", "geo": null, "id": 148837389018730500, "id_str": "148837389018730496", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697692961/IMG-20110326-00171_1d_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697692961/IMG-20110326-00171_1d_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "No tiene disculpa q una sra d 40a al darle indicaciones me responda OKA (OK).. Quien usa o dice OKA en estos dias? alguna vez estuvo d moda?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:32 +0000", "from_user": "Ian_ArguetaYea", "from_user_id": 391865657, "from_user_id_str": "391865657", "from_user_name": "Ian Argueta", "geo": null, "id": 148837384837009400, "id_str": "148837384837009409", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688148391/Yo_FB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688148391/Yo_FB_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "O por Diooos! mi play esta en la USA!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:31 +0000", "from_user": "mmotaribeiro", "from_user_id": 43606345, "from_user_id_str": "43606345", "from_user_name": "Marcelo Mota Ribeiro", "geo": null, "id": 148837380500103170, "id_str": "148837380500103169", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1597925728/Marcelo-Mota-Ribeiro_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1597925728/Marcelo-Mota-Ribeiro_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "qdo o #STF quer ser progressista, usa interpreta\\u00E7\\u00E3o para atropelar a CF. qdo quer ser conservador, interpreta literalmente a CF. pilantras!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:30 +0000", "from_user": "circotimia_", "from_user_id": 221610474, "from_user_id_str": "221610474", "from_user_name": "M a i t e\\u10E6. ", "geo": null, "id": 148837375206891520, "id_str": "148837375206891520", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698350821/jjo__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698350821/jjo__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "ROSADITA USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:29 +0000", "from_user": "gerdomingo", "from_user_id": 271845905, "from_user_id_str": "271845905", "from_user_name": "Germ\\u00E1n Domingo", "geo": null, "id": 148837372442853380, "id_str": "148837372442853378", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1624399048/DSC00270_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624399048/DSC00270_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@pablocalvari Campe\\u00F3n necesito un poco de tu #infodelabuena Vos q sabes!! Trezeguet usa boxer o slip??? DAP al cafe le pone azucar o chuker?", "to_user": "pablocalvari", "to_user_id": 241535485, "to_user_id_str": "241535485", "to_user_name": "Pablo Calvari"}, +{"created_at": "Mon, 19 Dec 2011 18:49:23 +0000", "from_user": "hassiemwwestove", "from_user_id": 305932076, "from_user_id_str": "305932076", "from_user_name": "Hassie Westover", "geo": null, "id": 148837348887633920, "id_str": "148837348887633920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694689293/imagesCA7W3AFL_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694689293/imagesCA7W3AFL_normal", "source": "<a href="http://un55d6000tv.com" rel="nofollow">un55d6000tvdotcom</a>", "text": "For Sale Phillips Televisions-Philips SRP4004/27 Universal 4 In 1 Remote Control for TV,VCR, http://t.co/UrxJIFPu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:21 +0000", "from_user": "capotee_", "from_user_id": 310841348, "from_user_id_str": "310841348", "from_user_name": "maikinho", "geo": null, "id": 148837339953766400, "id_str": "148837339953766400", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683451233/PQAAAL7XcfRpFFRwjNC2e9hez_b7udkS3o3bGTsWTdUA2VnVTTolUwILgCRXTw7R9NzOCcO3hBj7knTq2Ky9Rn_kpX0Am1T1UCRYvXM99Kh4kBDADG76xCtw_yYg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683451233/PQAAAL7XcfRpFFRwjNC2e9hez_b7udkS3o3bGTsWTdUA2VnVTTolUwILgCRXTw7R9NzOCcO3hBj7knTq2Ky9Rn_kpX0Am1T1UCRYvXM99Kh4kBDADG76xCtw_yYg_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "se usa ainda ? \\u00AC\\u00AC'", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:18 +0000", "from_user": "JuiceboxJewels", "from_user_id": 336822225, "from_user_id_str": "336822225", "from_user_name": "Juicebox Jewels", "geo": null, "id": 148837328331341820, "id_str": "148837328331341825", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1446107277/smalljbj_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1446107277/smalljbj_normal.JPG", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "CLIP ON Bright Pink Wood Gold Stardust 3\"Hoop Earrings Basketball wives(C267)USA http://t.co/2EIwTciI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:18 +0000", "from_user": "imWinchester_", "from_user_id": 252630805, "from_user_id_str": "252630805", "from_user_name": "matheus casanho", "geo": null, "id": 148837328297799680, "id_str": "148837328297799680", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702187993/Foto2195_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702187993/Foto2195_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:17 +0000", "from_user": "pesugyhu", "from_user_id": 433508089, "from_user_id_str": "433508089", "from_user_name": "Sylvania Linkleter", "geo": null, "id": 148837321989558270, "id_str": "148837321989558273", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1685449331/1422_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685449331/1422_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @gyqyboqob: car insurance utah layton http://t.co/dwiyXSWF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:08 +0000", "from_user": "_Adicta", "from_user_id": 123965194, "from_user_id_str": "123965194", "from_user_name": "La que hace spam.", "geo": null, "id": 148837282835738620, "id_str": "148837282835738624", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "ARACELI USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:05 +0000", "from_user": "stormchaser4850", "from_user_id": 15665499, "from_user_id_str": "15665499", "from_user_name": "Johnny Kelly", "geo": null, "id": 148837271234281470, "id_str": "148837271234281472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688101585/132365219113032_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688101585/132365219113032_normal.gif", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Developing: SPC: Heavy snowfall rates, localized blizzard conditions to increase into the evening across SW Plains http://t.co/3UeK5Sn3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:00 +0000", "from_user": "Feel_MyHalo", "from_user_id": 278365097, "from_user_id_str": "278365097", "from_user_name": "Pretty_Bee", "geo": null, "id": 148837251818848260, "id_str": "148837251818848256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1697766733/PodD65r0_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697766733/PodD65r0_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Party in the USA.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:00 +0000", "from_user": "thaisbertolli", "from_user_id": 104862047, "from_user_id_str": "104862047", "from_user_name": "GAZEROCKisNOTDEAD3", "geo": null, "id": 148837251533639680, "id_str": "148837251533639681", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1664361495/ruki-avatar_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664361495/ruki-avatar_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @pokemoncolorido: fia tem um z\\u00EDper na sua orelha acho que vc errou o lugar pq z\\u00EDper se usa na roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:58 +0000", "from_user": "BangBangNaus", "from_user_id": 339443987, "from_user_id_str": "339443987", "from_user_name": "Kevin Lang", "geo": null, "id": 148837242020966400, "id_str": "148837242020966400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677531479/Omalley_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677531479/Omalley_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @MSU_Basketball: #Spartans move up to No. 19 in AP Top 25 and No. 20 in ESPN/USA Today Coaches Poll.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:55 +0000", "from_user": "ACOwatch", "from_user_id": 198728096, "from_user_id_str": "198728096", "from_user_name": "ACO Watch", "geo": null, "id": 148837230180446200, "id_str": "148837230180446208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1465153715/ACO_WATCH_BLOGTALK_RADIO_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1465153715/ACO_WATCH_BLOGTALK_RADIO_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Affordable Care Act helps 32 health systems improve care for patients, saving up to $1.1 billion | http://t.co/J9ledc6W #acochat #aco", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:55 +0000", "from_user": "DeathEaterNo1", "from_user_id": 439572700, "from_user_id_str": "439572700", "from_user_name": "Bellatrix Lestrange", "geo": null, "id": 148837229832318980, "id_str": "148837229832318977", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699093665/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699093665/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@1DPotter I'm glad I know now lol. I'm from the usa so I've never heard of it", "to_user": "1DPotter", "to_user_id": 432560977, "to_user_id_str": "432560977", "to_user_name": "1D Potter", "in_reply_to_status_id": 148836744186441730, "in_reply_to_status_id_str": "148836744186441728"}, +{"created_at": "Mon, 19 Dec 2011 18:48:52 +0000", "from_user": "NealBradley", "from_user_id": 30212556, "from_user_id_str": "30212556", "from_user_name": "Neal Bradley", "geo": null, "id": 148837216016269300, "id_str": "148837216016269312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1678399005/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678399005/me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Murray State debuts at #22 in the latest Coaches Poll from ESPN/USA Today. http://t.co/dZO7wcbA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:51 +0000", "from_user": "hassiemwwestove", "from_user_id": 305932076, "from_user_id_str": "305932076", "from_user_name": "Hassie Westover", "geo": null, "id": 148837211666780160, "id_str": "148837211666780160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694689293/imagesCA7W3AFL_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694689293/imagesCA7W3AFL_normal", "source": "<a href="http://un55d6000tv.com" rel="nofollow">un55d6000tvdotcom</a>", "text": "Best Buy Phillips Televisions-Philips 32PFL3506/F7 32-inch 720p LCD HDTV, Black At USA Store http://t.co/Yw3Oi7DA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:50 +0000", "from_user": "alvarograves", "from_user_id": 39816942, "from_user_id_str": "39816942", "from_user_name": "Alvaro Graves", "geo": null, "id": 148837208797888500, "id_str": "148837208797888512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/933141912/Alvaro_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/933141912/Alvaro_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Irony at its best! RT @olyerickson: But is written in PDF! http://t.co/mzmUFgsV RT @EllnMllr: House Approves Sweeping #OpenData Standards", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:50 +0000", "from_user": "dewxp", "from_user_id": 334720386, "from_user_id_str": "334720386", "from_user_name": "Mtn Dew Game Fuel", "geo": null, "id": 148837207078215680, "id_str": "148837207078215680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1519437335/GFcherry_white_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1519437335/GFcherry_white_normal.png", "source": "<a href="http://www.localresponse.com" rel="nofollow">Mtn Dew Game Fuel</a>", "text": "@fatboiytubz Check in at 7-11 in next 24hrs for 30% off Turtle Beach headset! Buy MTN DEW, get Double XP time. Info: http://t.co/fQGwLNXL", "to_user": "fatboiytubz", "to_user_id": 229045046, "to_user_id_str": "229045046", "to_user_name": "Aidan Smith", "in_reply_to_status_id": 148808466478284800, "in_reply_to_status_id_str": "148808466478284800"}, +{"created_at": "Mon, 19 Dec 2011 18:48:49 +0000", "from_user": "dewxp", "from_user_id": 334720386, "from_user_id_str": "334720386", "from_user_name": "Mtn Dew Game Fuel", "geo": null, "id": 148837206163865600, "id_str": "148837206163865601", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1519437335/GFcherry_white_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1519437335/GFcherry_white_normal.png", "source": "<a href="http://www.localresponse.com" rel="nofollow">Mtn Dew Game Fuel</a>", "text": "@Lovatic21 Check in at 7-11 in next 24hrs for 30% off Turtle Beach headset! Buy MTN DEW, get Double XP time. Info: http://t.co/9Rk2l2Lh", "to_user": "Lovatic21", "to_user_id": 397005257, "to_user_id_str": "397005257", "to_user_name": "A.G. LyNN", "in_reply_to_status_id": 148808344767967230, "in_reply_to_status_id_str": "148808344767967232"}, +{"created_at": "Mon, 19 Dec 2011 18:48:40 +0000", "from_user": "_Adicta", "from_user_id": 123965194, "from_user_id_str": "123965194", "from_user_name": "La que hace spam.", "geo": null, "id": 148837168264126460, "id_str": "148837168264126464", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669921630/56295596595894864_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "YASBERLYS USA COND\\u00D3N.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:39 +0000", "from_user": "Laucaba", "from_user_id": 116491269, "from_user_id_str": "116491269", "from_user_name": "Laura P Caballero ", "geo": null, "id": 148837162647957500, "id_str": "148837162647957505", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1571210391/cordon_lucha_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1571210391/cordon_lucha_normal.JPG", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @_Ortografia: \\u00BFImprimido o impreso? Ambos son correctos. He impreso/imprimido los documentos(Como verbo). Como sustantivo y adjetivo: solo se usa impreso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:36 +0000", "from_user": "ThatGuy_GA", "from_user_id": 179778115, "from_user_id_str": "179778115", "from_user_name": "G.T.A.J", "geo": null, "id": 148837150396391420, "id_str": "148837150396391424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1613081485/Posted_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1613081485/Posted_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @MSU_Basketball: #Spartans move up to No. 19 in AP Top 25 and No. 20 in ESPN/USA Today Coaches Poll.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:24 +0000", "from_user": "J_Adabriand", "from_user_id": 206469941, "from_user_id_str": "206469941", "from_user_name": "Jonathan Adabriand", "geo": null, "id": 148837099678867460, "id_str": "148837099678867456", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1278486240/aviva_o_dom4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1278486240/aviva_o_dom4_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Impossivel \\u00E9 uma palavra muito grand e que gente pequena usa pra nos oprimir.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:23 +0000", "from_user": "Meehonda", "from_user_id": 67445264, "from_user_id_str": "67445264", "from_user_name": "Maiumy", "geo": null, "id": 148837097053224960, "id_str": "148837097053224962", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1492308840/Foto1282_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1492308840/Foto1282_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Ironicodepre: Tenho uma arma chamada \"Ironia\" e N\\u00C3O TENHO MEDO DE US\\u00C1-LA.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:22 +0000", "from_user": "macbookfinder", "from_user_id": 338458338, "from_user_id_str": "338458338", "from_user_name": "macbookfinder", "geo": null, "id": 148837091567087600, "id_str": "148837091567087616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1453189323/macbook_pro_17_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1453189323/macbook_pro_17_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Apple MacBook Air 13.3\" Laptop - MC965LL/A (July, 2011) (Latest Model) http://t.co/suyGjOAn #apple #macbook #USA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:22 +0000", "from_user": "coresdoarcoiris", "from_user_id": 236448673, "from_user_id_str": "236448673", "from_user_name": "andressa n\\u00E9", "geo": null, "id": 148837090317189120, "id_str": "148837090317189120", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1645469625/vomitando-arco-iris-imagem_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645469625/vomitando-arco-iris-imagem_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @panneta: zipper se usa em roupa e nao na orelha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} + +, +{"created_at": "Mon, 19 Dec 2011 19:01:16 +0000", "from_user": "ForSaleiAlgarve", "from_user_id": 386105591, "from_user_id_str": "386105591", "from_user_name": "For Sale in Algarve", "geo": null, "id": 148840338902106100, "id_str": "148840338902106114", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1575941712/For_Sale_In_Algarve_Twitter_Logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575941712/For_Sale_In_Algarve_Twitter_Logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Villa for sale in Lagos | 6+ bedrooms ~ For-Sale-in-Algarve ~ #Algarve\\n#Portugal - http://t.co/l3NlBRwU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:01:16 +0000", "from_user": "aleemoschen_", "from_user_id": 289017847, "from_user_id_str": "289017847", "from_user_name": "Alexia Moschen \\u2603", "geo": null, "id": 148840338205847550, "id_str": "148840338205847552", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702449335/hehehihihohohuhu_004_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702449335/hehehihihohohuhu_004_normal.JPG", "source": "<a href="http://formspring.me" rel="nofollow">formspring.me</a>", "text": "Read my response to \"Espanha ou Portugal?\": http://t.co/qudb9YPH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:01:04 +0000", "from_user": "peaklevelcom", "from_user_id": 97708051, "from_user_id_str": "97708051", "from_user_name": "Peak Level", "geo": null, "id": 148840287349899260, "id_str": "148840287349899264", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1302407768/peaklevel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1302407768/peaklevel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "El FMI aprueba un tramo de cr\\u00E9dito de 2.900 millones a Portugal http://t.co/l6WsNNV8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:01:02 +0000", "from_user": "vivapachamama", "from_user_id": 138557630, "from_user_id_str": "138557630", "from_user_name": "Pachamama", "geo": null, "id": 148840278827073540, "id_str": "148840278827073536", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1087819262/27358_1547554835_7687_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1087819262/27358_1547554835_7687_n_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "El FMI aprueba un tramo de cr\\u00E9dito de 2.900 millones a Portugal: (Reuters) - El Fondo Monetario Internacional ap... http://t.co/ND5uGLWf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:58 +0000", "from_user": "stefanvanas", "from_user_id": 200131347, "from_user_id_str": "200131347", "from_user_name": "Stefan van As", "geo": null, "id": 148840262980997120, "id_str": "148840262980997121", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1140040784/stefan_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1140040784/stefan_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:55 +0000", "from_user": "CelticTours", "from_user_id": 29451005, "from_user_id_str": "29451005", "from_user_name": "Celtic Tours", "geo": null, "id": 148840251476025340, "id_str": "148840251476025345", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/588986616/celtic_banner1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/588986616/celtic_banner1_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Where do you want to go?: Crystal Palace Gardens, Porto, Portugal http://t.co/RTM45hYe #travelwithus", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:52 +0000", "from_user": "cun45", "from_user_id": 277738344, "from_user_id_str": "277738344", "from_user_name": "Francisco", "geo": null, "id": 148840236301033470, "id_str": "148840236301033472", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1301327904/frank-cunha-armani-jeans_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1301327904/frank-cunha-armani-jeans_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "#BeiraMar ja e visto com outros olhos, pode vir a ser uma das melhores equipas de #Portugal http://t.co/SSXmIKvK\\n#Vancouver #Brasil @cun245", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:44 +0000", "from_user": "CherryCherCher", "from_user_id": 138508856, "from_user_id_str": "138508856", "from_user_name": "Charisse Goedhart", "geo": null, "id": 148840202482360320, "id_str": "148840202482360320", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1428749467/profile_image_1309938335716_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1428749467/profile_image_1309938335716_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "ik snap niet dat het hier in Ned -3267353 graden is en in portugal het zonnetje lekker schijnt.. Pff", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:41 +0000", "from_user": "missjojotje", "from_user_id": 345575717, "from_user_id_str": "345575717", "from_user_name": "jo\\u00EBlle", "geo": null, "id": 148840189417103360, "id_str": "148840189417103361", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1608104091/Foto1156_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608104091/Foto1156_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@xsanlove jaa en lissabon in portugal echt mooi en je kan de goedkoop shoppen", "to_user": "xsanlove", "to_user_id": 412503628, "to_user_id_str": "412503628", "to_user_name": "'Sanne x ", "in_reply_to_status_id": 148839726776975360, "in_reply_to_status_id_str": "148839726776975360"}, +{"created_at": "Mon, 19 Dec 2011 19:00:39 +0000", "from_user": "ritabcosta", "from_user_id": 62907767, "from_user_id_str": "62907767", "from_user_name": "rita costa", "geo": null, "id": 148840183276642300, "id_str": "148840183276642305", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696961340/IMG-20111204-00416_-_C_pia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696961340/IMG-20111204-00416_-_C_pia_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@LeighannPinnock would you follow me please ? it would be a great christmas present (: portugal loves Little Mix <3", "to_user": "LeighannPinnock", "to_user_id": 331255508, "to_user_id_str": "331255508", "to_user_name": "LittleMix Leigh-Anne"}, +{"created_at": "Mon, 19 Dec 2011 19:00:38 +0000", "from_user": "Adocento", "from_user_id": 398341979, "from_user_id_str": "398341979", "from_user_name": "+", "geo": null, "id": 148840179241713660, "id_str": "148840179241713665", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1606798689/corridor2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606798689/corridor2_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @ARMAKdeODELOT: Reino Unido sigue alarmando sobre un posible corralito en Espa\\u00F1a y Portugal http://t.co/t97UCgjG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:24 +0000", "from_user": "elchicotripolar", "from_user_id": 286258538, "from_user_id_str": "286258538", "from_user_name": "David Hegarty", "geo": null, "id": 148840118617260030, "id_str": "148840118617260032", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1638980388/DSC_1450_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638980388/DSC_1450_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@BraiHL wow! Yo quiero ir a ver este a\\u00F1o a Stone Roses, Radiohead, Florence, y justice a Portugal, es en pa\\u00EDs vecino, pero muy barato! :D", "to_user": "BraiHL", "to_user_id": 359643877, "to_user_id_str": "359643877", "to_user_name": "Brian", "in_reply_to_status_id": 148839669965131780, "in_reply_to_status_id_str": "148839669965131777"}, +{"created_at": "Mon, 19 Dec 2011 19:00:16 +0000", "from_user": "SocMeDotMe", "from_user_id": 371995419, "from_user_id_str": "371995419", "from_user_name": "Karl Lingenfelder", "geo": null, "id": 148840086446931970, "id_str": "148840086446931969", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1546120426/SocMe_Twitter_Icon_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546120426/SocMe_Twitter_Icon_2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Villa for sale in Lagos | 6+ bedrooms ~ For-Sale-in-Algarve ~ #Algarve\\n#Portugal - http://t.co/YGJJwQPq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:08 +0000", "from_user": "gp_economia", "from_user_id": 23807943, "from_user_id_str": "23807943", "from_user_name": "Gazeta - Economia", "geo": null, "id": 148840051936210940, "id_str": "148840051936210945", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1163335406/icon-gazeta-economia-alta_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1163335406/icon-gazeta-economia-alta_normal.png", "source": "<a href="http://www.gazetadopovo.com.br" rel="nofollow">API Gazeta do Povo</a>", "text": "FMI aprova entrega de 2,9 bi de euros para Portugal http://t.co/6xPXoE37", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:06 +0000", "from_user": "wagner_monteiro", "from_user_id": 35166974, "from_user_id_str": "35166974", "from_user_name": "wagner monteiro", "geo": null, "id": 148840045070127100, "id_str": "148840045070127104", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1619394383/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619394383/image_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @NelsonSheep: Rihanna sofre racismo em Portugal: Rihanna ficou doida no Twitter, por causa de um homem que teria feito declara... http://t.co/Srd7nbQm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 19:00:02 +0000", "from_user": "MasonAFCGoddard", "from_user_id": 358306573, "from_user_id_str": "358306573", "from_user_name": "Mason Goddard", "geo": null, "id": 148840028053839870, "id_str": "148840028053839872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1648390572/310990_10150562529703332_340496628331_11721345_418509637_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648390572/310990_10150562529703332_340496628331_11721345_418509637_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@PLEKSTER Hold on.. You're going to SPAIN to watch a team that plays in PORTUGAL? You're a fucking retard...", "to_user": "PLEKSTER", "to_user_id": 238186124, "to_user_id_str": "238186124", "to_user_name": "PLEKE", "in_reply_to_status_id": 147744505653768200, "in_reply_to_status_id_str": "147744505653768193"}, +{"created_at": "Mon, 19 Dec 2011 18:59:59 +0000", "from_user": "FZindie", "from_user_id": 207756891, "from_user_id_str": "207756891", "from_user_name": "Michelina Manoogian", "geo": null, "id": 148840016787947520, "id_str": "148840016787947520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1152528617/icon_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1152528617/icon_bigger_normal.jpg", "source": "<a href="http://www.newstreamer.com/" rel="nofollow">Newstreamer</a>", "text": "[video] Portugal the Man cover Gnarls Barkley\\u2019s \\u201CCrazy\\u201D (youaintnopicasso) http://t.co/Wa65Clvq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:46 +0000", "from_user": "fidelmartin", "from_user_id": 11731472, "from_user_id_str": "11731472", "from_user_name": "fidelmartin", "geo": null, "id": 148839961548947460, "id_str": "148839961548947456", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1645683613/fidel43_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645683613/fidel43_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Tripviaje: Portugal. Ruta del Vinho Verde http://t.co/DZ3cZhhe #turismo #viajes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:41 +0000", "from_user": "LesSuricates", "from_user_id": 428983224, "from_user_id_str": "428983224", "from_user_name": "Les Suricates", "geo": null, "id": 148839940015407100, "id_str": "148839940015407104", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1675149127/H_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675149127/H_normal.jpg", "source": "<a href="http://www.wmaker.net" rel="nofollow">WMaker</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Le Fonds mon\\u00E9taire international a annonc\\u00E9 lun... http://t.co/6PnvwzZP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:39 +0000", "from_user": "amanca", "from_user_id": 15388711, "from_user_id_str": "15388711", "from_user_name": "amanca", "geo": null, "id": 148839932591472640, "id_str": "148839932591472641", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/769057023/17032010260_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/769057023/17032010260_normal.jpg", "source": "<a href="https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic" rel="nofollow">Silver Bird</a>", "text": "Oi Samsung CORBY com portugues de Portugal, obrigada por nao conectar via USB, seu lindo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:34 +0000", "from_user": "Tripviaje", "from_user_id": 294759845, "from_user_id_str": "294759845", "from_user_name": "Tripviaje", "geo": null, "id": 148839910017740800, "id_str": "148839910017740800", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1348503889/pastila_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1348503889/pastila_logo_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Portugal. Ruta del Vinho Verde http://t.co/2arO6qI3 #turismo #viajes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:12 +0000", "from_user": "PipaStyles", "from_user_id": 422639883, "from_user_id_str": "422639883", "from_user_name": "Filipa Duarte", "geo": null, "id": 148839818498027520, "id_str": "148839818498027521", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1693072556/IMG0207A_-_C_pia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693072556/IMG0207A_-_C_pia_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@onedirection come to Portugal ! #OneDirectionToPortugal", "to_user": "onedirection", "to_user_id": 209708391, "to_user_id_str": "209708391", "to_user_name": "One Direction"}, +{"created_at": "Mon, 19 Dec 2011 18:59:12 +0000", "from_user": "glrarzu", "from_user_id": 115467055, "from_user_id_str": "115467055", "from_user_name": "Arzu G\\u00FCler", "geo": null, "id": 148839817499787260, "id_str": "148839817499787266", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1586135372/arzum_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586135372/arzum_normal.jpg", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:59:04 +0000", "from_user": "portugalforum", "from_user_id": 41989700, "from_user_id_str": "41989700", "from_user_name": "portugalforum", "geo": null, "id": 148839784234762240, "id_str": "148839784234762240", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/487842239/pfo_icon_gr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/487842239/pfo_icon_gr_normal.jpg", "source": "<a href="http://www.portugalforum.org" rel="nofollow">portugalforum.org</a>", "text": "Algarve-News: Faro - Lissabon: \\u00C4nderung der Streckenf\\u00FChrung beim "Intercidade": ie portugiesische http://t.co/roWsz2MA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:36 +0000", "from_user": "noticialol", "from_user_id": 393333635, "from_user_id_str": "393333635", "from_user_name": "Noticiado", "geo": null, "id": 148839667213668350, "id_str": "148839667213668352", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1594357865/ok_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1594357865/ok_normal.gif", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "FMI libera mais 2,9 bilh\\u00F5es para Portugal http://t.co/zU2eTGPx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:36 +0000", "from_user": "dailyVictoriaJ", "from_user_id": 284466615, "from_user_id_str": "284466615", "from_user_name": "catarina \\u2661", "geo": null, "id": 148839664986492930, "id_str": "148839664986492931", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700544939/tumblr_l8myr1SZvz1qdesr2o1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700544939/tumblr_l8myr1SZvz1qdesr2o1_500_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@thevjusticearmy It's so cold in Portugal .. I mean, is cold in the morning & at the night, like now .. during the day is hot :) x", "to_user": "thevjusticearmy", "to_user_id": 256627220, "to_user_id_str": "256627220", "to_user_name": "nancy grimmie ~", "in_reply_to_status_id": 148838356212662270, "in_reply_to_status_id_str": "148838356212662272"}, +{"created_at": "Mon, 19 Dec 2011 18:58:33 +0000", "from_user": "ballsdeepin", "from_user_id": 255621513, "from_user_id_str": "255621513", "from_user_name": "Jeff", "geo": null, "id": 148839653531844600, "id_str": "148839653531844609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:27 +0000", "from_user": "esanguino", "from_user_id": 40812220, "from_user_id_str": "40812220", "from_user_name": "Ender Sanguino", "geo": null, "id": 148839627913043970, "id_str": "148839627913043968", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1632303300/9235cebe043711e1a87612313804ec91_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632303300/9235cebe043711e1a87612313804ec91_7_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "El FMI aprueba un tramo de cr\\u00E9dito de 2.900 millones a Portugal http://t.co/C9OHIyBI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:23 +0000", "from_user": "indignindigente", "from_user_id": 318577930, "from_user_id_str": "318577930", "from_user_name": "Bartomeu", "geo": null, "id": 148839612805156860, "id_str": "148839612805156864", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698747895/Imagen002_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698747895/Imagen002_1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@martina2411 Reino Unido sigue alarmando sobre un posible corralito en Espa\\u00F1a y Portugal http://t.co/dzPpDTtn", "to_user": "martina2411", "to_user_id": 161375864, "to_user_id_str": "161375864", "to_user_name": "Rocio_Ju\\u00E1rez", "in_reply_to_status_id": 148839319925293060, "in_reply_to_status_id_str": "148839319925293056"}, +{"created_at": "Mon, 19 Dec 2011 18:58:22 +0000", "from_user": "DonikaX", "from_user_id": 213323473, "from_user_id_str": "213323473", "from_user_name": "Donika", "geo": null, "id": 148839608833150980, "id_str": "148839608833150976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1650590128/d_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650590128/d_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@somegreendayfan WHEN ARE YOU GOING PORTUGAL?", "to_user": "somegreendayfan", "to_user_id": 226243830, "to_user_id_str": "226243830", "to_user_name": "Iolanda"}, +{"created_at": "Mon, 19 Dec 2011 18:58:21 +0000", "from_user": "larissa_lal7", "from_user_id": 178349463, "from_user_id_str": "178349463", "from_user_name": "Larissa", "geo": null, "id": 148839605054091260, "id_str": "148839605054091264", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668008288/PQAAABO2tuLt7TmoDiZx9VJG0ZXqPV4FQu9HDDiEN3UEUUP17D7NUAohU365z2T1woQLCYBdfHMGSvEjtcegAMhI3kkAm1T1UBTzIr-lcl5Y6tvSvVjBZ9sP1lFq_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668008288/PQAAABO2tuLt7TmoDiZx9VJG0ZXqPV4FQu9HDDiEN3UEUUP17D7NUAohU365z2T1woQLCYBdfHMGSvEjtcegAMhI3kkAm1T1UBTzIr-lcl5Y6tvSvVjBZ9sP1lFq_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @17Nani_PT: Um dos v\\u00EDdeos mais bonitos que j\\u00E1 vi, FOR\\u00C7A PORTUGAL: @luisnani @cristiano @RQ7Quaresma @FabioCoentrao @RaulMeireles4 http://t.co/ki6SNQOD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:13 +0000", "from_user": "GlobalCollapse", "from_user_id": 368395731, "from_user_id_str": "368395731", "from_user_name": "Financial Apocalypse", "geo": null, "id": 148839571319296000, "id_str": "148839571319296001", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1529908610/marketcrash_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1529908610/marketcrash_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @djfxtrader: Greek FinMin: #Greece, #Ireland, #Portugal Excluded From IMF Boost [Dow Jones] #imf #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:10 +0000", "from_user": "Prop_Joe", "from_user_id": 27468471, "from_user_id_str": "27468471", "from_user_name": "PropositionJoe", "geo": null, "id": 148839555976536060, "id_str": "148839555976536064", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/699445557/lemonde_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/699445557/lemonde_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s la Gr\\u00E8ce... http://t.co/MQNHsojz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:58:04 +0000", "from_user": "AzoresTravel", "from_user_id": 396745800, "from_user_id_str": "396745800", "from_user_name": "M\\u00E1r", "geo": null, "id": 148839534426210300, "id_str": "148839534426210304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1622348510/IMG_5459_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1622348510/IMG_5459_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @de_castro: visitportugal: Birdlife in the Azores\\n#Portugal #Azores #birdwatching #nature\\nhttp://t.co/m5h360HV: visitportuga... http://t.co/0cglb3II", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:49 +0000", "from_user": "danielacatiane", "from_user_id": 326248479, "from_user_id_str": "326248479", "from_user_name": "daniela catiane", "geo": null, "id": 148839470718910460, "id_str": "148839470718910464", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1478456546/cora__es_amigos_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1478456546/cora__es_amigos_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@alinegomespk @CarolBatista14 @Vondyduleucker @SandraM_RBD @jujuCcelim kkkkkkkkk atravessa o oceano pra ver sandrinha em portugal kkkkkkkk", "to_user": "alinegomespk", "to_user_id": 53109875, "to_user_id_str": "53109875", "to_user_name": "Aline", "in_reply_to_status_id": 148839002089340930, "in_reply_to_status_id_str": "148839002089340928"}, +{"created_at": "Mon, 19 Dec 2011 18:57:41 +0000", "from_user": "Tylerlerler", "from_user_id": 88258859, "from_user_id_str": "88258859", "from_user_name": "Tyler Liu", "geo": null, "id": 148839434127806460, "id_str": "148839434127806464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664714376/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664714376/image_normal.jpg", "source": "<a href="http://www.tweekly.fm/" rel="nofollow">Tweekly.fm</a>", "text": "My Top 3 #lastfm Artists: Portugal. The Man (20), The Naked And Famous (18) & Freelance Whales (14) http://t.co/Q5a8993f", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:33 +0000", "from_user": "InfoPriv", "from_user_id": 57702464, "from_user_id_str": "57702464", "from_user_name": "InfoPrivilegiada \\u221A", "geo": null, "id": 148839400531431420, "id_str": "148839400531431425", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/354288460/informa__o_privilegiada_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/354288460/informa__o_privilegiada_logo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Ultimas - Venda de autom\\u00F3veis em Portugal vai valer menos mil milh\\u00F5es este ano: A compra de carros em Portugal v... http://t.co/I1rab4qY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:32 +0000", "from_user": "negociosportuga", "from_user_id": 91605181, "from_user_id_str": "91605181", "from_user_name": "Neg\\u00F3cios Portugal", "geo": null, "id": 148839400204271600, "id_str": "148839400204271616", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/537215653/negocios_portugal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/537215653/negocios_portugal_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Venda de autom\\u00F3veis em Portugal vai valer menos mil milh\\u00F5es este ano: A compra de carros em Portugal vai cair ma... http://t.co/bnAgUILA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:20 +0000", "from_user": "trinitascellars", "from_user_id": 88998123, "from_user_id_str": "88998123", "from_user_name": "Trinitas Cellars", "geo": null, "id": 148839348928909300, "id_str": "148839348928909312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/519941448/full_logo_550340050_Trinitas_Logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/519941448/full_logo_550340050_Trinitas_Logo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "What Rising Temperatures May Mean for World's Wine Industry: In the vineyards of Spain, Portugal, southern Franc... http://t.co/wj29Nj4K", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:17 +0000", "from_user": "pelu_fans", "from_user_id": 115177007, "from_user_id_str": "115177007", "from_user_name": "Pedro Lucas Fans.", "geo": null, "id": 148839336668962800, "id_str": "148839336668962816", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700478706/PQAAAFiY08YIwW_kmAF7mhLlegVGVwlPLevM9nCH2nX86IdeYkSxTiZIipIaIwuEysDXtXgfnpm3jDh_g-RAXp_9kecAm1T1UHfKAUqV6C97gbPxZFtT7tZn0BzG_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700478706/PQAAAFiY08YIwW_kmAF7mhLlegVGVwlPLevM9nCH2nX86IdeYkSxTiZIipIaIwuEysDXtXgfnpm3jDh_g-RAXp_9kecAm1T1UHfKAUqV6C97gbPxZFtT7tZn0BzG_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Pe\\u00E7a RESTART na MTV de Portugal aqui: http://t.co/fWkPWotH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:57:16 +0000", "from_user": "kdupeixoto", "from_user_id": 38543753, "from_user_id_str": "38543753", "from_user_name": "Kdu Peixoto", "geo": null, "id": 148839332688564220, "id_str": "148839332688564225", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1650503637/Avatar_Kdu_Peixoto_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650503637/Avatar_Kdu_Peixoto_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@Cadu_andrade_ T\\u00F4 em Portugal, meu xar\\u00E1! Como est\\u00E3o as coisas por a\\u00ED? :)", "to_user": "Cadu_andrade_", "to_user_id": 50442738, "to_user_id_str": "50442738", "to_user_name": "Carlos Eduardo C. A.", "in_reply_to_status_id": 148742869765734400, "in_reply_to_status_id_str": "148742869765734400"}, +{"created_at": "Mon, 19 Dec 2011 18:57:01 +0000", "from_user": "invertia_ahorro", "from_user_id": 263197769, "from_user_id_str": "263197769", "from_user_name": "Invertia Ahorro", "geo": null, "id": 148839267882373120, "id_str": "148839267882373120", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1266869035/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266869035/logo_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI autoriza nuevo tramo de ayuda a Portugal de 2.900 millones http://t.co/7tGA8R7D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:57 +0000", "from_user": "rodrideportes", "from_user_id": 229623363, "from_user_id_str": "229623363", "from_user_name": "Rodrigo Guijarro M", "geo": null, "id": 148839249549066240, "id_str": "148839249549066240", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1604803738/IMG00392-20111024-1405_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1604803738/IMG00392-20111024-1405_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "extender el contrato del #argentino Pablo Aimar es la prioridad para el #Benfica de Portugal ya que el mismo termina en junio del 2012", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:56 +0000", "from_user": "danielmerlot", "from_user_id": 14366274, "from_user_id_str": "14366274", "from_user_name": "Daniel Merlot", "geo": null, "id": 148839246554337280, "id_str": "148839246554337281", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1422332070/mori_tower_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1422332070/mori_tower_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/zbGvKw19", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:56 +0000", "from_user": "shubhankar", "from_user_id": 15580522, "from_user_id_str": "15580522", "from_user_name": "Shubhankar", "geo": null, "id": 148839246411730940, "id_str": "148839246411730945", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1671533257/Me-Me-Me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671533257/Me-Me-Me_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "\"It was decided [by Portugal] to use Kuwait as a link to bring the explosives into Goa\" http://t.co/IwXOPSyK #India #History", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:56 +0000", "from_user": "17Nani_PT", "from_user_id": 440097844, "from_user_id_str": "440097844", "from_user_name": "Nani Portugal F\\u00E3s \\u2665", "geo": null, "id": 148839246084587520, "id_str": "148839246084587520", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700295506/Nani-2011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700295506/Nani-2011_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@KAKA \\u00C9s lindo Kak\\u00E1, Hala madrid \\u2665 Portugal contigo \\u2665", "to_user": "KAKA", "to_user_id": 60865434, "to_user_id_str": "60865434", "to_user_name": "Kaka"}, +{"created_at": "Mon, 19 Dec 2011 18:56:56 +0000", "from_user": "DanielTm94", "from_user_id": 153570691, "from_user_id_str": "153570691", "from_user_name": "Juan Daniel Torres", "geo": null, "id": 148839245153443840, "id_str": "148839245153443840", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1692249132/Twt_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692249132/Twt_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Nicol\\u00E1s Gait\\u00E1n, exjugador de Boca, fue transferido del Benfica de Portugal, al Manchester United por una cifra de 30 millones de Euros.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:55 +0000", "from_user": "Juanito_Carreon", "from_user_id": 117877094, "from_user_id_str": "117877094", "from_user_name": "JUANITO CARREON", "geo": null, "id": 148839242422943740, "id_str": "148839242422943745", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1586497738/9130_1268760038796_1223695565_808719_537975_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586497738/9130_1268760038796_1223695565_808719_537975_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Rihanna, victima de racismo en hotel de #Portugal http://t.co/iQeG2HYo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:51 +0000", "from_user": "RitaAlmeida1D", "from_user_id": 408016535, "from_user_id_str": "408016535", "from_user_name": "Rita Almeida", "geo": null, "id": 148839226044203000, "id_str": "148839226044203009", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698869219/zayn_malik_1D_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698869219/zayn_malik_1D_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Lilswagirl course (: from portugal and you, hun?:D x", "to_user": "Lilswagirl", "to_user_id": 391315405, "to_user_id_str": "391315405", "to_user_name": "Natalia Almeida", "in_reply_to_status_id": 148838732869537800, "in_reply_to_status_id_str": "148838732869537793"}, +{"created_at": "Mon, 19 Dec 2011 18:56:47 +0000", "from_user": "alinelourenco88", "from_user_id": 296579875, "from_user_id_str": "296579875", "from_user_name": "Aline Lourenco", "geo": +{"coordinates": [-7.1731,-34.8616], "type": "Point"}, "id": 148839208121937920, "id_str": "148839208121937920", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1348070809/OgAAAJTL742jD77tWcMgRJNk4WiVILpoj49SE8fzYNqgjwydFFWsPZ86LF0ld63c8A9o9WL7w1cCjD5C5Tf2YEBaPXgAm1T1UOPmuFuzwYebSCLZwIClwAQFztlf_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1348070809/OgAAAJTL742jD77tWcMgRJNk4WiVILpoj49SE8fzYNqgjwydFFWsPZ86LF0ld63c8A9o9WL7w1cCjD5C5Tf2YEBaPXgAm1T1UOPmuFuzwYebSCLZwIClwAQFztlf_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"FMI libera mais 2,9 bilh\\u00F5es para Portugal http://t.co/99Uz4kvb\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:45 +0000", "from_user": "BrutherBuu", "from_user_id": 333039680, "from_user_id_str": "333039680", "from_user_name": "Mario Vaz", "geo": null, "id": 148839203042631680, "id_str": "148839203042631680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1437052847/Untitled-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1437052847/Untitled-1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ReanneTex wish my dad did that. All i get is portugal talk!", "to_user": "ReanneTex", "to_user_id": 323393462, "to_user_id_str": "323393462", "to_user_name": "reannetex", "in_reply_to_status_id": 148838999098794000, "in_reply_to_status_id_str": "148838999098793984"}, +{"created_at": "Mon, 19 Dec 2011 18:56:40 +0000", "from_user": "tigredeltajin", "from_user_id": 139797812, "from_user_id_str": "139797812", "from_user_name": "junnisin garcia rami", "geo": null, "id": 148839182066925570, "id_str": "148839182066925568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1214115876/Dibujo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1214115876/Dibujo_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @India_Business: #india #business : IMF releases 2.9 bn euros to Portugal: IMF said it would release 2.9 billion euros ($3.8 bill... http://t.co/YXJzs8Ge", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:39 +0000", "from_user": "NoticiasTemblor", "from_user_id": 273771929, "from_user_id_str": "273771929", "from_user_name": "cuando pase temblor", "geo": null, "id": 148839177113440260, "id_str": "148839177113440256", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1291407280/terremoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1291407280/terremoto_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "El FMI aprueba un tramo de cr\\u00E9dito de 2.900 millones a Portugal: (Reuters) - El Fondo Monetario Internacional ap... http://t.co/i1ZIU2GB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:19 +0000", "from_user": "RihannaNavyBG1", "from_user_id": 367861866, "from_user_id_str": "367861866", "from_user_name": "RihNavyBG", "geo": null, "id": 148839093923610620, "id_str": "148839093923610624", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1657868447/ttt10_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657868447/ttt10_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Rihanna - Run This Town/Life Your Life Live Lisbon, Portugal http://t.co/8uc2GGas", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:07 +0000", "from_user": "netradiocatolic", "from_user_id": 52023334, "from_user_id_str": "52023334", "from_user_name": "Net R\\u00E1dio Cat\\u00F3lica", "geo": null, "id": 148839043365486600, "id_str": "148839043365486593", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/288377437/nrc_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/288377437/nrc_logo_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Pe. Tony Neves fala-nos esta semana sobre... \"Coopera\\u00E7\\u00E3o entre Igrejas do Norte e do Sul de Portugal\" http://t.co/qCFWdUI0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:06 +0000", "from_user": "waldeterossi", "from_user_id": 215710466, "from_user_id_str": "215710466", "from_user_name": "waldete sales rossi", "geo": null, "id": 148839039456382980, "id_str": "148839039456382977", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1181508559/120310092916_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1181508559/120310092916_normal.jpg", "source": "<a href="http://g1.globo.com/" rel="nofollow">g1.com.br</a>", "text": "RT @g1: FMI libera mais 2,9 bilh\\u00F5es para Portugal http://t.co/WoEfgKeR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:04 +0000", "from_user": "heather8moreton", "from_user_id": 132293648, "from_user_id_str": "132293648", "from_user_name": "heather", "geo": null, "id": 148839027963985920, "id_str": "148839027963985921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/946037357/heather_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/946037357/heather_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:56:01 +0000", "from_user": "SantiAlbasi", "from_user_id": 178079057, "from_user_id_str": "178079057", "from_user_name": "Santi Albasi", "geo": null, "id": 148839018073833470, "id_str": "148839018073833472", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1102276890/30498_1441325033715_1250736111_31227027_5756059_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1102276890/30498_1441325033715_1250736111_31227027_5756059_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @NahuMartinez: @SantiAlbasi Que hambre que ten\\u00E9s. Si dice \"que veneran a este Dios en Portugal\", y Licha parece que se va al Porto.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:58 +0000", "from_user": "alinegomespk", "from_user_id": 53109875, "from_user_id_str": "53109875", "from_user_name": "Aline", "geo": null, "id": 148839002089340930, "id_str": "148839002089340928", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670250220/PQAAANme5D67ydegtB0EwTcZMb7r4c0YAgsI4How4XomqFtAlhBd8PcpQ5Ix2e40QsAJxgDuBmZWSq556LYg5IH6RG4Am1T1UEWIjN_qxSsIwXj24jHMJyQUv2PF_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670250220/PQAAANme5D67ydegtB0EwTcZMb7r4c0YAgsI4How4XomqFtAlhBd8PcpQ5Ix2e40QsAJxgDuBmZWSq556LYg5IH6RG4Am1T1UEWIjN_qxSsIwXj24jHMJyQUv2PF_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@CarolBatista14 @Vondyduleucker @danielacatiane @SandraM_RBD @jujuCcelim vamos remando de barquinho a Portugal hahaha", "to_user": "CarolBatista14", "to_user_id": 311798015, "to_user_id_str": "311798015", "to_user_name": "\\u262ECAROL_M\\u00AA YSABELLE\\u262E ", "in_reply_to_status_id": 148838319286005760, "in_reply_to_status_id_str": "148838319286005760"}, +{"created_at": "Mon, 19 Dec 2011 18:55:51 +0000", "from_user": "NuriFont", "from_user_id": 73128838, "from_user_id_str": "73128838", "from_user_name": "Nuri Font", "geo": null, "id": 148838975501643780, "id_str": "148838975501643776", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692893281/Cnv0077_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692893281/Cnv0077_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @ARMAKdeODELOT: Reino Unido sigue alarmando sobre un posible corralito en Espa\\u00F1a y Portugal http://t.co/t97UCgjG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:51 +0000", "from_user": "SaamScoott", "from_user_id": 378779649, "from_user_id_str": "378779649", "from_user_name": "Samanthaaa ", "geo": null, "id": 148838974444679170, "id_str": "148838974444679168", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700938603/IMG-20111217-00006_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700938603/IMG-20111217-00006_1_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@AzizMandela Jvais pas faire comme au portugal, jaime bien faire tous ce qui est entr\\u00E9e tout sa et en dessert je sais en faire quelque uns", "to_user": "AzizMandela", "to_user_id": 387819972, "to_user_id_str": "387819972", "to_user_name": "Aziz Mandela", "in_reply_to_status_id": 148837971494314000, "in_reply_to_status_id_str": "148837971494313984"}, +{"created_at": "Mon, 19 Dec 2011 18:55:47 +0000", "from_user": "HoroscopoIsaacR", "from_user_id": 383891768, "from_user_id_str": "383891768", "from_user_name": "Beatriz s\\u00F3 do Isaac", "geo": null, "id": 148838956589514750, "id_str": "148838956589514752", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702622409/isaac._normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702622409/isaac._normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Capric\\u00F3rnio Em que pa\\u00EDs voc\\u00EA e o Isaac passariam o Natal:Portugal ^^", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:45 +0000", "from_user": "b33god", "from_user_id": 6785242, "from_user_id_str": "6785242", "from_user_name": "Damien Austin-Walker", "geo": null, "id": 148838949949935600, "id_str": "148838949949935616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669342743/daw-nov-2011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669342743/daw-nov-2011_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:40 +0000", "from_user": "paulocunhavox", "from_user_id": 233292368, "from_user_id_str": "233292368", "from_user_name": "paulo cunha", "geo": null, "id": 148838928303128580, "id_str": "148838928303128577", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1621910172/megafone2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621910172/megafone2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @vitriolica: VERGONHA para Portugal mas em especial para a CP! http://t.co/VTME2e0E", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:40 +0000", "from_user": "Braden28", "from_user_id": 189015265, "from_user_id_str": "189015265", "from_user_name": "Braden Elke", "geo": null, "id": 148838928135368700, "id_str": "148838928135368704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1561817142/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1561817142/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "\\u201C@richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/pSD0F13j\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:31 +0000", "from_user": "EconomiaEs", "from_user_id": 223012474, "from_user_id_str": "223012474", "from_user_name": "Econom\\u00EDa en Espa\\u00F1ol", "geo": null, "id": 148838890361466880, "id_str": "148838890361466880", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1329492066/27-04-2011_09-31-49_p-m-_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1329492066/27-04-2011_09-31-49_p-m-_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "FMI aprueba tramo de rescate a Portugal http://t.co/1PrEzXzm [CNNExpansi\\u00F3n] #Economia", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:26 +0000", "from_user": "MarcioRibeiroJF", "from_user_id": 64312479, "from_user_id_str": "64312479", "from_user_name": "M\\u00E1rcio Ribeiro", "geo": null, "id": 148838871516463100, "id_str": "148838871516463105", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1666176409/FESTA_DA_R_DIO_CIDADE3_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666176409/FESTA_DA_R_DIO_CIDADE3_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Em portugal: Rihanna deixa o palco para vomitar, durante performance na turn\\u00EA \"Loud\" http://t.co/oo5rSe5Q", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:20 +0000", "from_user": "TechTonico", "from_user_id": 43409238, "from_user_id_str": "43409238", "from_user_name": "Techno", "geo": null, "id": 148838842735132670, "id_str": "148838842735132672", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1395333534/avatar24913_1_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1395333534/avatar24913_1_normal.gif", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "FMI aprueba tramo de rescate a Portugal http://t.co/F2cPdEH4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:20 +0000", "from_user": "InterActual", "from_user_id": 129917609, "from_user_id_str": "129917609", "from_user_name": "InterActual", "geo": null, "id": 148838842651262980, "id_str": "148838842651262978", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1392248905/Logo_Grande-1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1392248905/Logo_Grande-1_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "FMI aprueba tramo de rescate a Portugal http://t.co/z4iD5l3s", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:19 +0000", "from_user": "ProcreaEstudio", "from_user_id": 82506605, "from_user_id_str": "82506605", "from_user_name": "Procrea Estudio", "geo": null, "id": 148838842454114300, "id_str": "148838842454114304", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1348516234/960ef63d-6000-481e-bf89-f04e5cbcf40b_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1348516234/960ef63d-6000-481e-bf89-f04e5cbcf40b_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "FMI aprueba tramo de rescate a Portugal http://t.co/5TBBCnEp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:17 +0000", "from_user": "andreswire", "from_user_id": 328151920, "from_user_id_str": "328151920", "from_user_name": "Andr\\u00E9s Wire ", "geo": null, "id": 148838830982701060, "id_str": "148838830982701056", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1589829181/Pulitzer_foto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1589829181/Pulitzer_foto_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "FMI aprueba tramo de rescate a Portugal http://t.co/xlPVsGG6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:13 +0000", "from_user": "CiberDosis", "from_user_id": 256384767, "from_user_id_str": "256384767", "from_user_name": "Diario Digital", "geo": null, "id": 148838814356475900, "id_str": "148838814356475904", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1564094144/ciber-dosis_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1564094144/ciber-dosis_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "FMI aprueba tramo de rescate a Portugal http://t.co/S3QmwuOk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:07 +0000", "from_user": "GurvinderS17", "from_user_id": 48305600, "from_user_id_str": "48305600", "from_user_name": "Gurvinder ", "geo": null, "id": 148838791589806080, "id_str": "148838791589806080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1645654601/054_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645654601/054_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Jeffren17_SCP hows portugal", "to_user": "Jeffren17_SCP", "to_user_id": 213411429, "to_user_id_str": "213411429", "to_user_name": "Jeffren Su\\u00E1rez"}, +{"created_at": "Mon, 19 Dec 2011 18:55:04 +0000", "from_user": "groupiepride", "from_user_id": 23456154, "from_user_id_str": "23456154", "from_user_name": "Penny Lane", "geo": null, "id": 148838775634673660, "id_str": "148838775634673664", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1657538435/256163_169704943094221_100001641481748_473793_3511651_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657538435/256163_169704943094221_100001641481748_473793_3511651_o_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "FMI libera mais 2,9 bilh\\u00F5es para Portugal. quem mais acha que isso vai dar merda?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:55:03 +0000", "from_user": "armvp", "from_user_id": 83553831, "from_user_id_str": "83553831", "from_user_name": "Arnaldo Moura", "geo": null, "id": 148838775332675600, "id_str": "148838775332675584", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/563266095/Img0048_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/563266095/Img0048_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "FMI autorizou mais 2900 milh\\u00F5es de euros a Portugal: O Fundo Monet\\u00E1rio Internacional (FMI\\u2026 http://t.co/UEdiOo7D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:55 +0000", "from_user": "latestmusicdesk", "from_user_id": 337315804, "from_user_id_str": "337315804", "from_user_name": "Latest Music Desk", "geo": null, "id": 148838741677572100, "id_str": "148838741677572096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1447424413/latestmusicdesk_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1447424413/latestmusicdesk_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Pop Crush | Rihanna Encounters Racism in Portugal, Vents Via Twitter http://t.co/UgfSPEaN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:53 +0000", "from_user": "NoticiasenRSS", "from_user_id": 419098894, "from_user_id_str": "419098894", "from_user_name": "Noticias en RSS", "geo": null, "id": 148838730462015500, "id_str": "148838730462015488", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1652823092/rss_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652823092/rss_normal.png", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "El FMI aprueba un tramo de cr\\u00E9dito de 2.900 millones a Portugal http://t.co/VsKigbYO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:48 +0000", "from_user": "PeterPassardi", "from_user_id": 191793931, "from_user_id_str": "191793931", "from_user_name": "Peter Answers", "geo": null, "id": 148838708328669200, "id_str": "148838708328669184", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664345518/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664345518/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@00Matz Ederzito 23 goles en 121 partidos. Delantero 24 a\\u00F1os. Juega en Portugal. Enciclopedia FM", "to_user": "00Matz", "to_user_id": 141790288, "to_user_id_str": "141790288", "to_user_name": "Max Power"}, +{"created_at": "Mon, 19 Dec 2011 18:54:38 +0000", "from_user": "francovicetto", "from_user_id": 22359566, "from_user_id_str": "22359566", "from_user_name": "franco vicetto", "geo": +{"coordinates": [42.8888,-8.5273], "type": "Point"}, "id": 148838669451661300, "id_str": "148838669451661312", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/869345235/fv_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/869345235/fv_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@xabitubbi Se um ano che parece muito esperar, podes olhar para Gr\\u00E9cia, Irlanda ou Portugal.", "to_user": "xabitubbi", "to_user_id": 2499551, "to_user_id_str": "2499551", "to_user_name": "Xabier Cid", "in_reply_to_status_id": 148837457343954940, "in_reply_to_status_id_str": "148837457343954944"}, +{"created_at": "Mon, 19 Dec 2011 18:54:38 +0000", "from_user": "julio7788", "from_user_id": 325579719, "from_user_id_str": "325579719", "from_user_name": "J\\u00FAlio C\\u00E9sar", "geo": null, "id": 148838669367779330, "id_str": "148838669367779329", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1664508248/bullet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664508248/bullet_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera mais 2,9 bilh\\u00F5es para Portugal: Recursos s\\u00E3o terceira etapa de plano aprovado em maio.\\nFMI fez segund... http://t.co/2TAlEyCY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:38 +0000", "from_user": "leaomaq", "from_user_id": 356641562, "from_user_id_str": "356641562", "from_user_name": "Le\\u00E3o M\\u00E1quinas", "geo": null, "id": 148838666805051400, "id_str": "148838666805051392", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1618356247/scrapeenet_201111012355208qPeVV_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618356247/scrapeenet_201111012355208qPeVV_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera mais 2,9 bilh\\u00F5es para Portugal: Recursos s\\u00E3o terceira etapa de plano aprovado em maio.\\nFMI fez segund... http://t.co/diaiv38I", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:38 +0000", "from_user": "mrochacontabil", "from_user_id": 342276569, "from_user_id_str": "342276569", "from_user_name": "MRocha Contabilidade", "geo": null, "id": 148838666746335230, "id_str": "148838666746335232", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1563774144/logo_mrocha_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1563774144/logo_mrocha_twitter_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera mais 2,9 bilh\\u00F5es para Portugal: Recursos s\\u00E3o terceira etapa de plano aprovado em maio.\\nFMI fez segund... http://t.co/a5j3f9Eq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:37 +0000", "from_user": "pn_business", "from_user_id": 385714288, "from_user_id_str": "385714288", "from_user_name": "Paulo News Bezerra", "geo": null, "id": 148838666033311740, "id_str": "148838666033311744", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1574744792/6091570_3a2a1afb51_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1574744792/6091570_3a2a1afb51_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera mais 2,9 bilh\\u00F5es para Portugal: Recursos s\\u00E3o terceira etapa de plano aprovado em maio.\\nFMI fez segund... http://t.co/mDU41hbS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:35 +0000", "from_user": "Vini_Santos_RJ", "from_user_id": 357449479, "from_user_id_str": "357449479", "from_user_name": "Vinicius Santos", "geo": null, "id": 148838656478679040, "id_str": "148838656478679040", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1501839192/festa_junina_ostras_114_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1501839192/festa_junina_ostras_114_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera mais 2,9 bilh\\u00F5es para Portugal: Recursos s\\u00E3o terceira etapa de plano aprovado em maio.\\nFMI fez segund... http://t.co/3RvNPSrT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:35 +0000", "from_user": "marceloraposo11", "from_user_id": 134651332, "from_user_id_str": "134651332", "from_user_name": "Marcelo Rap\\u00F4so", "geo": null, "id": 148838655199428600, "id_str": "148838655199428609", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1317173169/mr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317173169/mr_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera mais 2,9 bilh\\u00F5es para Portugal: Recursos s\\u00E3o terceira etapa de plano aprovado em maio.\\nFMI fez segund... http://t.co/9cvRQ9kS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:34 +0000", "from_user": "baavin", "from_user_id": 145668086, "from_user_id_str": "145668086", "from_user_name": "bhav", "geo": null, "id": 148838651495854080, "id_str": "148838651495854080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1589323857/sa_pinto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1589323857/sa_pinto_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Bigdsoccer: Ruben Luna will be heading to Portugal to practice with Sporting Lisbon in January. Very cool opportunity for the young Dallas forward.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:33 +0000", "from_user": "atitudeproativa", "from_user_id": 265042426, "from_user_id_str": "265042426", "from_user_name": "Marcelo Silva", "geo": null, "id": 148838649155424260, "id_str": "148838649155424257", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera mais 2,9 bilh\\u00F5es para Portugal: Recursos s\\u00E3o terceira etapa de plano aprovado em maio.\\nFMI fez segund... http://t.co/LEzEPVxK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:33 +0000", "from_user": "SGDArevelado", "from_user_id": 281001664, "from_user_id_str": "281001664", "from_user_name": "Ganhe $$$ na net!", "geo": null, "id": 148838648358514700, "id_str": "148838648358514690", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1309147255/Mafalda_pensando_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1309147255/Mafalda_pensando_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera mais 2,9 bilh\\u00F5es para Portugal: Recursos s\\u00E3o terceira etapa de plano aprovado em maio.\\nFMI fez segund... http://t.co/XW4nmUix", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:33 +0000", "from_user": "nossagrana", "from_user_id": 252083770, "from_user_id_str": "252083770", "from_user_name": "Nossa Grana", "geo": null, "id": 148838647871967230, "id_str": "148838647871967233", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1244091547/banner-400x400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1244091547/banner-400x400_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "INFO: Recursos s\\u00E3o terceira etapa de plano aprovado em maio.\\nFMI fez segunda avalia\\u00E7\\u00E3o formal dos programas de a... http://t.co/rQeCV0yP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:32 +0000", "from_user": "cimarsouza", "from_user_id": 244703827, "from_user_id_str": "244703827", "from_user_name": "Cimar Souza", "geo": null, "id": 148838644663336960, "id_str": "148838644663336960", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1241503620/PIC_0011_-_C_pia__640x480__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1241503620/PIC_0011_-_C_pia__640x480__normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera mais 2,9 bilh\\u00F5es para Portugal: Recursos s\\u00E3o terceira etapa de plano aprovado em maio.\\nFMI fez segund... http://t.co/H7y9t9Bc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:32 +0000", "from_user": "sucessoerenda", "from_user_id": 249381948, "from_user_id_str": "249381948", "from_user_name": "Tiago Lisboa", "geo": null, "id": 148838642796859400, "id_str": "148838642796859392", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1422606244/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1422606244/logo_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera mais 2,9 bilh\\u00F5es para Portugal: Recursos s\\u00E3o terceira etapa de plano aprovado em maio.\\nFMI fez segund... http://t.co/lIvCvkmZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:30 +0000", "from_user": "CNN_Mexico", "from_user_id": 292097409, "from_user_id_str": "292097409", "from_user_name": "CNN Mexico", "geo": null, "id": 148838635523948540, "id_str": "148838635523948544", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1646602714/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646602714/image_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprueba tramo de rescate a Portugal: El Fondo desembolsar\\u00E1 2,900 mde para el pa\\u00EDs como parte de la ayuda fin... http://t.co/ACcpsGmM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:30 +0000", "from_user": "vaorr", "from_user_id": 49140837, "from_user_id_str": "49140837", "from_user_name": "Alfonzo Rincon\\u00AE \\u2714", "geo": null, "id": 148838634999648260, "id_str": "148838634999648256", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699084831/twitter_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699084831/twitter_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprueba tramo de rescate a Portugal: El Fondo desembolsar\\u00E1 2,900 mde para el pa\\u00EDs como parte de la ayuda fin... http://t.co/I2ntknx8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:30 +0000", "from_user": "kismayasBlog", "from_user_id": 398907544, "from_user_id_str": "398907544", "from_user_name": "Kismayas", "geo": null, "id": 148838633233842180, "id_str": "148838633233842176", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1638711786/Screen_shot_2011-11-09_at_15.37.32_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638711786/Screen_shot_2011-11-09_at_15.37.32_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprueba tramo de rescate a Portugal: El Fondo desembolsar\\u00E1 2,900 mde para el pa\\u00EDs como parte de la ayuda fin... http://t.co/VRWmF9jl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:30 +0000", "from_user": "soytodomexicano", "from_user_id": 387217790, "from_user_id_str": "387217790", "from_user_name": "soytodomexicano", "geo": null, "id": 148838632818606080, "id_str": "148838632818606080", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1581808892/yo_con_sombrero_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1581808892/yo_con_sombrero_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprueba tramo de rescate a Portugal: El Fondo desembolsar\\u00E1 2,900 mde para el pa\\u00EDs como parte de la ayuda fin... http://t.co/HXFMYgdc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:29 +0000", "from_user": "mariorivasp", "from_user_id": 106705566, "from_user_id_str": "106705566", "from_user_name": "Mario J. Rivas P.", "geo": null, "id": 148838631640023040, "id_str": "148838631640023040", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1429218678/315347188_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1429218678/315347188_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprueba tramo de rescate a Portugal http://t.co/8IQXwEHF #Noticias", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:29 +0000", "from_user": "LuisPerezChe", "from_user_id": 386749789, "from_user_id_str": "386749789", "from_user_name": "Luis Perez Che", "geo": null, "id": 148838629656100860, "id_str": "148838629656100864", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1577286176/images_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1577286176/images_normal.jpeg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprueba tramo de rescate a Portugal: El Fondo desembolsar\\u00E1 2,900 mde para el pa\\u00EDs como parte de la ayuda fin... http://t.co/Vb73FsLe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:29 +0000", "from_user": "GusRamirez01", "from_user_id": 151937050, "from_user_id_str": "151937050", "from_user_name": "Gustavo Ram\\u00EDrez M. \\u2714", "geo": null, "id": 148838629370896400, "id_str": "148838629370896385", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1221579513/Ni_o_Rata_Bart_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1221579513/Ni_o_Rata_Bart_normal.PNG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprueba tramo de rescate a Portugal http://t.co/2TesM7D5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:28 +0000", "from_user": "ABDWORLDGROUPMX", "from_user_id": 256234063, "from_user_id_str": "256234063", "from_user_name": "ABD World Group Mx", "geo": null, "id": 148838627458297860, "id_str": "148838627458297857", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1453960717/logo_abd_GIF_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1453960717/logo_abd_GIF_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprueba tramo de rescate a Portugal: El Fondo desembolsar\\u00E1 2,900 mde para el pa\\u00EDs como parte de la ayuda fin... http://t.co/xLvXpei6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:28 +0000", "from_user": "FCOMEMO", "from_user_id": 180426308, "from_user_id_str": "180426308", "from_user_name": "PacoMemo", "geo": null, "id": 148838625449218050, "id_str": "148838625449218049", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1106521292/john-wayne-searchers-sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1106521292/john-wayne-searchers-sm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprueba tramo de rescate a Portugal: El Fondo desembolsar\\u00E1 2,900 mde para el pa\\u00EDs como parte de la ayuda fin... http://t.co/BNVtzkIC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:54:28 +0000", "from_user": "ABDWORLDGROUPMX", "from_user_id": 256234063, "from_user_id_str": "256234063", "from_user_name": "ABD World Group Mx", "geo": null, "id": 148838627458297860, "id_str": "148838627458297857", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1453960717/logo_abd_GIF_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1453960717/logo_abd_GIF_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprueba tramo de rescate a Portugal: El Fondo desembolsar\\u00E1 2,900 mde para el pa\\u00EDs como parte de la ayuda fin... http://t.co/xLvXpei6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:28 +0000", "from_user": "FCOMEMO", "from_user_id": 180426308, "from_user_id_str": "180426308", "from_user_name": "PacoMemo", "geo": null, "id": 148838625449218050, "id_str": "148838625449218049", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1106521292/john-wayne-searchers-sm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1106521292/john-wayne-searchers-sm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprueba tramo de rescate a Portugal: El Fondo desembolsar\\u00E1 2,900 mde para el pa\\u00EDs como parte de la ayuda fin... http://t.co/BNVtzkIC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:18 +0000", "from_user": "TSF_Radio", "from_user_id": 245154246, "from_user_id_str": "245154246", "from_user_name": "R\\u00E1dio TSF", "geo": null, "id": 148838584613470200, "id_str": "148838584613470208", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1365629367/TSF_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1365629367/TSF_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "[ULTIMAS] BE admite fixar na Constitui\\u00E7\\u00E3o princ\\u00EDpio de que todos recebem de acordo com descontos http://t.co/4NpWeAnW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:18 +0000", "from_user": "pripereiras_", "from_user_id": 284555117, "from_user_id_str": "284555117", "from_user_name": "s\\u00F3 da @gabbs_ns", "geo": null, "id": 148838583946592260, "id_str": "148838583946592256", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693215775/PQAAAFQzLSw5QwV3llsqj2RjZqji7fH2Kq3ReI69uC3MUfMmNuBAwAt3tpVC43ybajcRGLHJkugyI1HIQ1Ca_ziARe8Am1T1UIW4c9g7hRigR1Z9v4btcwALOf-g_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693215775/PQAAAFQzLSw5QwV3llsqj2RjZqji7fH2Kq3ReI69uC3MUfMmNuBAwAt3tpVC43ybajcRGLHJkugyI1HIQ1Ca_ziARe8Am1T1UIW4c9g7hRigR1Z9v4btcwALOf-g_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "BE admite fixar na Constitui\\u00E7\\u00E3o princ\\u00EDpio de que todos recebem de acordo com descontos: O Bloco de Esquerda quer... http://t.co/v0LFUe0O", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:17 +0000", "from_user": "OfficialAnita", "from_user_id": 231691646, "from_user_id_str": "231691646", "from_user_name": "Anita Diah Nacing", "geo": null, "id": 148838581220278270, "id_str": "148838581220278272", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1690895299/iaq5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690895299/iaq5_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @WOWFAKTA: #WOW Andik Vermansyah sedang diincar Benfica, klub sepak bola dari Portugal http://t.co/egvImmz3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:08 +0000", "from_user": "pt_meta_guide", "from_user_id": 435931739, "from_user_id_str": "435931739", "from_user_name": "Portugal Meta Guide", "geo": null, "id": 148838544390111230, "id_str": "148838544390111232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691161167/Portugal-Flag-icon_normal.png", "profile_image_url_https": null, "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#Clorindadtl: Michelin Green Sightseeing Travel Guide to Portugal (Spanish Language Edition): http://t.co/BsKfd6St", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:07 +0000", "from_user": "EconomiaEs", "from_user_id": 223012474, "from_user_id_str": "223012474", "from_user_name": "Econom\\u00EDa en Espa\\u00F1ol", "geo": null, "id": 148838536961982460, "id_str": "148838536961982464", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1329492066/27-04-2011_09-31-49_p-m-_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1329492066/27-04-2011_09-31-49_p-m-_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "FMI autoriza nuevo tramo de ayuda a Portugal de 2.900 millones http://t.co/eoostbkT [Invertia] #Economia", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:03 +0000", "from_user": "Pascual_Aguerre", "from_user_id": 69173347, "from_user_id_str": "69173347", "from_user_name": "PASCUAL", "geo": null, "id": 148838519689838600, "id_str": "148838519689838593", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1534295136/IMG00859-20110507-2104_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534295136/IMG00859-20110507-2104_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "FMI autoriza entrega de 2 mil 900 euros como parte de la ayuda a Portugal http://t.co/ZNdq5qaO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:54:00 +0000", "from_user": "arcobalenoceano", "from_user_id": 376861483, "from_user_id_str": "376861483", "from_user_name": "Valeria Silvestri", "geo": null, "id": 148838509577371650, "id_str": "148838509577371648", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1631133927/valetwitter2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1631133927/valetwitter2_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @lemondefr: Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/zeOt21vW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:53 +0000", "from_user": "RRmahbool78", "from_user_id": 305537233, "from_user_id_str": "305537233", "from_user_name": "Tounsii Boy", "geo": null, "id": 148838481483935740, "id_str": "148838481483935744", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1657470373/big.136095570M_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657470373/big.136095570M_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@MelissaCorreiaa mdr nan croi moi t dou au portugal", "to_user": "MelissaCorreiaa", "to_user_id": 432392184, "to_user_id_str": "432392184", "to_user_name": "M\\u00E9l\\u00ECssa Corre\\u00ECa", "in_reply_to_status_id": 148838163127877630, "in_reply_to_status_id_str": "148838163127877633"}, +{"created_at": "Mon, 19 Dec 2011 18:53:45 +0000", "from_user": "SaskiaCepellax", "from_user_id": 154659638, "from_user_id_str": "154659638", "from_user_name": "saskia cepella", "geo": null, "id": 148838445429690370, "id_str": "148838445429690368", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675492082/Snapshot_20111205_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675492082/Snapshot_20111205_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Omg, mijn zus gaat in de lesvrije week naar portugal met vriendinnen, jaloers!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:43 +0000", "from_user": "kamromero", "from_user_id": 100640404, "from_user_id_str": "100640404", "from_user_name": "kamal romero", "geo": null, "id": 148838439100485630, "id_str": "148838439100485633", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/629642635/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/629642635/twitterProfilePhoto_normal.jpg", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:43 +0000", "from_user": "trembaladacarla", "from_user_id": 285794492, "from_user_id_str": "285794492", "from_user_name": "marido da carlinha ", "geo": null, "id": 148838436361605120, "id_str": "148838436361605120", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700480119/5254_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700480119/5254_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "uau !!! ja viram meus videos em portugal e EUA kkkkk to me sentindo importante agr :P", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:37 +0000", "from_user": "NahuMartinez", "from_user_id": 156962952, "from_user_id_str": "156962952", "from_user_name": "Nahuel E Martinez", "geo": null, "id": 148838413125173250, "id_str": "148838413125173249", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1672068723/Foto0196_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672068723/Foto0196_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SantiAlbasi Que hambre que ten\\u00E9s. Si dice \"que veneran a este Dios en Portugal\", y Licha parece que se va al Porto.", "to_user": "SantiAlbasi", "to_user_id": 178079057, "to_user_id_str": "178079057", "to_user_name": "Santi Albasi", "in_reply_to_status_id": 148830868960591870, "in_reply_to_status_id_str": "148830868960591873"}, +{"created_at": "Mon, 19 Dec 2011 18:53:29 +0000", "from_user": "JuanCarlos_RDS", "from_user_id": 245942171, "from_user_id_str": "245942171", "from_user_name": "Juan Carlos RDS \\u2714", "geo": null, "id": 148838378987733000, "id_str": "148838378987732992", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684819587/nFYs3p4M_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684819587/nFYs3p4M_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "Ligados a Portugal (8) http://t.co/JZrlcU7m", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:21 +0000", "from_user": "manudb7000", "from_user_id": 33017923, "from_user_id_str": "33017923", "from_user_name": "manu", "geo": null, "id": 148838347471724540, "id_str": "148838347471724546", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1692988414/CIMG1906_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692988414/CIMG1906_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@MissLeote ...hi Miss! Where are u? Brazil or Portugal? ;)", "to_user": "MissLeote", "to_user_id": 117169768, "to_user_id_str": "117169768", "to_user_name": "Andreia Leote", "in_reply_to_status_id": 148834125833449470, "in_reply_to_status_id_str": "148834125833449472"}, +{"created_at": "Mon, 19 Dec 2011 18:53:20 +0000", "from_user": "AsPiadas_fail", "from_user_id": 337077995, "from_user_id_str": "337077995", "from_user_name": "melhores piadas", "geo": null, "id": 148838340177829900, "id_str": "148838340177829888", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1641891621/imagesCAKMTNAF_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641891621/imagesCAKMTNAF_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "tadinha da minha diva @rihanna foi descriminada por um ot\\u00E1rio em portugal =(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:20 +0000", "from_user": "myTVsamsung", "from_user_id": 438304695, "from_user_id_str": "438304695", "from_user_name": "Pierre lorat", "geo": null, "id": 148838340110716930, "id_str": "148838340110716928", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": null, "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/3O18XqMp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:09 +0000", "from_user": "TonnyPena", "from_user_id": 145043218, "from_user_id_str": "145043218", "from_user_name": "TONNY PE\\u00D1A V", "geo": null, "id": 148838296489951230, "id_str": "148838296489951232", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1652843374/FacebookHomescreenImage_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652843374/FacebookHomescreenImage_normal.jpg", "source": "<a href="http://www.telesurtv.net/" rel="nofollow">teleSUR Noticias</a>", "text": "RT @teleSURtv: FMI autoriza entrega de 2 mil 900 euros como parte de la ayuda a Portugal http://t.co/2tvLNU05", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:09 +0000", "from_user": "cearatradebrasi", "from_user_id": 62580704, "from_user_id_str": "62580704", "from_user_name": "CEAR\\u00C1 TRADE BRASIL", "geo": null, "id": 148838294485073920, "id_str": "148838294485073920", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/346149524/Copy_of_Logomarca_CearaTrade_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/346149524/Copy_of_Logomarca_CearaTrade_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Portugal Digital - Importadores brasileiros ser\\u00E3o respons\\u00E1veis por dados de produtos estrangeiros http://t.co/6Wjmxres via @pd_twitt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:01 +0000", "from_user": "Patricia_Louisa", "from_user_id": 230784013, "from_user_id_str": "230784013", "from_user_name": "'Patriciaaaa.", "geo": null, "id": 148838262579011600, "id_str": "148838262579011584", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1577000632/327669972_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1577000632/327669972_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Waauw boss ac rappt alleen hoe portugal echt is als je in de drugs zit zo mooi !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:01 +0000", "from_user": "Bahadir7", "from_user_id": 287236404, "from_user_id_str": "287236404", "from_user_name": "Bahad\\u0131r", "geo": null, "id": 148838261895348220, "id_str": "148838261895348225", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700210216/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700210216/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @17Nani_PT: Um dos v\\u00EDdeos mais bonitos que j\\u00E1 vi, FOR\\u00C7A PORTUGAL: @luisnani @cristiano @RQ7Quaresma @FabioCoentrao @RaulMeireles4 http://t.co/ki6SNQOD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:53:00 +0000", "from_user": "Bru_Girolleta", "from_user_id": 156236362, "from_user_id_str": "156236362", "from_user_name": "Bruna Rebeca", "geo": null, "id": 148838257814278140, "id_str": "148838257814278145", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680921547/PQAAAJiHyBNcCIe_g_lzuj6w_odbqXr7O6gzS05oCc2Bsbl5zJ5trljrFfC3TWQFy6agqPwjLdR8BmKtioP7WogymJwAm1T1UKQyuJh_VYHnjCqz_dKwS2-2vKwJ_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680921547/PQAAAJiHyBNcCIe_g_lzuj6w_odbqXr7O6gzS05oCc2Bsbl5zJ5trljrFfC3TWQFy6agqPwjLdR8BmKtioP7WogymJwAm1T1UKQyuJh_VYHnjCqz_dKwS2-2vKwJ_normal.jpg", "source": "<a href="http://twitcam.com" rel="nofollow">Twitcam.com</a>", "text": "e eu sou de PORTUGAL ahaha =)mas \\u00E9 verdade (@VINICIUSBOGADO live on http://t.co/Dufn5WXN)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:55 +0000", "from_user": "sandracamara", "from_user_id": 28378959, "from_user_id_str": "28378959", "from_user_name": "sandra camara", "geo": null, "id": 148838236729507840, "id_str": "148838236729507840", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1672996156/sandracamara_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672996156/sandracamara_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @17Nani_PT: Um dos v\\u00EDdeos mais bonitos que j\\u00E1 vi, FOR\\u00C7A PORTUGAL: @luisnani @cristiano @RQ7Quaresma @FabioCoentrao @RaulMeireles4 http://t.co/ki6SNQOD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:37 +0000", "from_user": "JAPAREDESFV", "from_user_id": 233644064, "from_user_id_str": "233644064", "from_user_name": "futbolvideo.net ", "geo": null, "id": 148838162473558000, "id_str": "148838162473558017", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1232540660/FONDO_1_cambiado_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1232540660/FONDO_1_cambiado_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @aitonto_kaganka: #Ra\\u00FAlSelecci\\u00F3n... De Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:32 +0000", "from_user": "mkbnieuws", "from_user_id": 130411783, "from_user_id_str": "130411783", "from_user_name": "MKB Deventer", "geo": null, "id": 148838141611094000, "id_str": "148838141611094016", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1626721209/logo-mkb_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626721209/logo-mkb_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Nu zakelijk: IMF keurt lening aan Portugal goed http://t.co/U1AwSUn2 #mkb #mkbdeventer", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:18 +0000", "from_user": "bemaartins_", "from_user_id": 152401900, "from_user_id_str": "152401900", "from_user_name": "~.~", "geo": null, "id": 148838082244911100, "id_str": "148838082244911104", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700921093/100_8789_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700921093/100_8789_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "olko um portugues de portugal acabou de me ligar aw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:06 +0000", "from_user": "MariaLuis", "from_user_id": 405964342, "from_user_id_str": "405964342", "from_user_name": "Maria Lu\\u00EDs", "geo": null, "id": 148838031376396300, "id_str": "148838031376396288", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1624695982/Sem_t_tulo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624695982/Sem_t_tulo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ZaniamAddiction Awwww *.* hehe, chamo-me Maria Lu\\u00EDs, tenho 15 anos e tamb\\u00E9m sou de Portugal :P temos mais coisas em comum para al\\u00E9m de...", "to_user": "ZaniamAddiction", "to_user_id": 344318804, "to_user_id_str": "344318804", "to_user_name": "Debby, Bea & Pathy*", "in_reply_to_status_id": 148834797349912580, "in_reply_to_status_id_str": "148834797349912576"}, +{"created_at": "Mon, 19 Dec 2011 18:52:05 +0000", "from_user": "TSFRadio", "from_user_id": 15392221, "from_user_id_str": "15392221", "from_user_name": "R\\u00E1dio TSF", "geo": +{"coordinates": [38.7475,-9.099], "type": "Point"}, "id": 148838028562018300, "id_str": "148838028562018304", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1430753584/avatar_tsf_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1430753584/avatar_tsf_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#Portugal BE admite fixar na Constitui\\u00E7\\u00E3o princ\\u00EDpio de que todos recebem de acordo com... http://t.co/CHAJjo09 Em http://t.co/mlddDOHT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:52:02 +0000", "from_user": "PortugalTopSong", "from_user_id": 347078653, "from_user_id_str": "347078653", "from_user_name": "PortugalTopSong", "geo": null, "id": 148838014116835330, "id_str": "148838014116835329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1527822406/icon080_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1527822406/icon080_normal.png", "source": "<a href="http://wikyou.org/" rel="nofollow">wikyou5</a>", "text": "Hoje hit YouTube v\\u00EDdeo em Portugal.(Today's hit YouTube Video in Portugal.)\\u300CThe Black Eyed Peas\\u300D's \\u300EPump It\\u300F http://t.co/4prbmnae", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:57 +0000", "from_user": "renandocouto", "from_user_id": 173303902, "from_user_id_str": "173303902", "from_user_name": "Renan do Couto", "geo": null, "id": 148837993623466000, "id_str": "148837993623465984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695682985/balada_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695682985/balada_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\"@allkart: Rotax Grand Finals 2012 ser\\u00E1 no Algarve, em Portugal: http://t.co/QsiQSV25\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:55 +0000", "from_user": "JornalOJE", "from_user_id": 127881632, "from_user_id_str": "127881632", "from_user_name": "O Jornal Econ\\u00F3mico", "geo": null, "id": 148837985306165250, "id_str": "148837985306165248", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/785767199/LOGO-OJE_Site_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/785767199/LOGO-OJE_Site_normal.jpg", "source": "<a href="http://tarpipe.com/" rel="nofollow">tarpipe</a>", "text": "Venda de autom\\u00F3veis em Portugal vai valer menos mil milh\\u00F5es este ano http://t.co/UnuceItU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:55 +0000", "from_user": "THE_LEEO_26", "from_user_id": 302325670, "from_user_id_str": "302325670", "from_user_name": "LEEO_26", "geo": null, "id": 148837983867506700, "id_str": "148837983867506688", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1659238510/leo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659238510/leo_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @17Nani_PT: Um dos v\\u00EDdeos mais bonitos que j\\u00E1 vi, FOR\\u00C7A PORTUGAL: @luisnani @cristiano @RQ7Quaresma @FabioCoentrao @RaulMeireles4 http://t.co/ki6SNQOD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:53 +0000", "from_user": "thelockedwonder", "from_user_id": 221626704, "from_user_id_str": "221626704", "from_user_name": "Legatus A. Maximus", "geo": null, "id": 148837974782648320, "id_str": "148837974782648321", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1433403099/316214215_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1433403099/316214215_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "How far in tghe queue are we? RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment ... http://t.co/mb9nZOGR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:52 +0000", "from_user": "BelizSez", "from_user_id": 188377011, "from_user_id_str": "188377011", "from_user_name": "BS", "geo": null, "id": 148837973851508740, "id_str": "148837973851508737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689101468/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689101468/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#nowplaying Gui Boratto @ sensation portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:50 +0000", "from_user": "GermanMaslower", "from_user_id": 337086445, "from_user_id_str": "337086445", "from_user_name": "James' Covergirl \\u2665", "geo": null, "id": 148837965743915000, "id_str": "148837965743915008", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696528523/AfvIY0nCQAA4nEC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696528523/AfvIY0nCQAA4nEC_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@LoganFan002 am freitag bin ich schon in Portugal :)", "to_user": "LoganFan002", "to_user_id": 226240537, "to_user_id_str": "226240537", "to_user_name": "Anne Henderson \\u2665", "in_reply_to_status_id": 148837716069597200, "in_reply_to_status_id_str": "148837716069597185"}, +{"created_at": "Mon, 19 Dec 2011 18:51:44 +0000", "from_user": "SparkSofia", "from_user_id": 176228400, "from_user_id_str": "176228400", "from_user_name": "Sofia Faisca", "geo": +{"coordinates": [38.7629,-9.1161], "type": "Point"}, "id": 148837937117794300, "id_str": "148837937117794306", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1422703957/500406h18FO_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1422703957/500406h18FO_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@JaredLetoMerch do you send the merch to portugal?", "to_user": "JaredLetoMerch", "to_user_id": 402789552, "to_user_id_str": "402789552", "to_user_name": "JAREDLETO.COM MERCH", "in_reply_to_status_id": 148833237261758460, "in_reply_to_status_id_str": "148833237261758465"}, +{"created_at": "Mon, 19 Dec 2011 18:51:43 +0000", "from_user": "JoaoLuizCunha", "from_user_id": 96916239, "from_user_id_str": "96916239", "from_user_name": "Jo\\u00E3o Luiz Cunha", "geo": null, "id": 148837934756401150, "id_str": "148837934756401153", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1570595113/guigo1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1570595113/guigo1_normal.jpg", "source": "<a href="http://g1.globo.com/" rel="nofollow">g1.com.br</a>", "text": "RT @g1: FMI libera mais 2,9 bilh\\u00F5es para Portugal http://t.co/WoEfgKeR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:40 +0000", "from_user": "FilipaFr", "from_user_id": 241682865, "from_user_id_str": "241682865", "from_user_name": "Filipa Francisco", "geo": null, "id": 148837920839712770, "id_str": "148837920839712768", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1677577586/DSCN0608_4__normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677577586/DSCN0608_4__normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @JuanCarlos_RDS: A trivela do @RQ7Quaresma com Portugal: http://t.co/4G26rTip \\u00A1E-S-P-E-C-T-A-C-U-L-A-R! \\u00A1M\\u00E1gico Quaresma!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:29 +0000", "from_user": "banhart", "from_user_id": 17275861, "from_user_id_str": "17275861", "from_user_name": "chief death eater d", "geo": null, "id": 148837875159539700, "id_str": "148837875159539712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/755446615/Pikachu_wobbuffet_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/755446615/Pikachu_wobbuffet_normal.png", "source": "<a href="http://www.tweekly.fm/" rel="nofollow">Tweekly.fm</a>", "text": "My Top 3 #lastfm Artists: Deerhunter (34), Miniature Tigers (24) & Portugal. The Man (22) http://t.co/vyprDHW9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:12 +0000", "from_user": "allkart", "from_user_id": 54324409, "from_user_id_str": "54324409", "from_user_name": "Allkart.net", "geo": null, "id": 148837804212891650, "id_str": "148837804212891649", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/300480192/logo_ak_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/300480192/logo_ak_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Rotax Grand Finals 2012 ser\\u00E1 no Algarve, em Portugal: http://t.co/YhV6xGhc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:11 +0000", "from_user": "HelderAMF", "from_user_id": 17745219, "from_user_id_str": "17745219", "from_user_name": "HelderAMF", "geo": null, "id": 148837798236000260, "id_str": "148837798236000256", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1608265957/helder_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1608265957/helder_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@manuelparreira n\\u00E3, n\\u00E3, n\\u00E3. Isso vai ser Portugal. Algures entre uma Alb\\u00E2nia dos anos 70 e o Zimbabwe", "to_user": "manuelparreira", "to_user_id": 162089811, "to_user_id_str": "162089811", "to_user_name": "Manuel Parreira", "in_reply_to_status_id": 148837529620197380, "in_reply_to_status_id_str": "148837529620197376"}, +{"created_at": "Mon, 19 Dec 2011 18:51:07 +0000", "from_user": "JDreport", "from_user_id": 164204118, "from_user_id_str": "164204118", "from_user_name": "JDreport", "geo": null, "id": 148837785044926460, "id_str": "148837785044926464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1655189890/small_227474_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655189890/small_227474_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\"@djfxtrader: Greek FinMin: #Greece, #Ireland, #Portugal Excluded From IMF Boost [Dow Jones] #imf #euro\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:51:07 +0000", "from_user": "Jorge_Canob", "from_user_id": 336666519, "from_user_id_str": "336666519", "from_user_name": "Jorge B.", "geo": null, "id": 148837782205378560, "id_str": "148837782205378561", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627127695/Aguante_Rojinegro_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627127695/Aguante_Rojinegro_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @CarlosIMedina20: Te\\u00F3filo Guti\\u00E9rrez ir\\u00EDa al Porto de Portugal y Bacca a Newell's seg\\u00FAn algunos periodistas, esperemos confirmaci\\u00F3n de ambos clubes.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:56 +0000", "from_user": "nudetelegraaf", "from_user_id": 374080222, "from_user_id_str": "374080222", "from_user_name": "nudetelegraaf", "geo": null, "id": 148837735354990600, "id_str": "148837735354990593", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://no.nl/" rel="nofollow">No.nl</a>", "text": "IMF keurt lening aan Portugal goed - http://t.co/4yOdHujU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:54 +0000", "from_user": "tweetminster", "from_user_id": 18142375, "from_user_id_str": "18142375", "from_user_name": "Tweetminster", "geo": null, "id": 148837728375681020, "id_str": "148837728375681024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/976947959/avatar_Tweetminster_73x73_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/976947959/avatar_Tweetminster_73x73_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @djfxtrader: Greek FinMin: #Greece, #Ireland, #Portugal Excluded From IMF Boost [Dow Jones] #imf #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:53 +0000", "from_user": "Paul_at_FOH", "from_user_id": 171898130, "from_user_id_str": "171898130", "from_user_name": "Marvin Paul Thomas", "geo": null, "id": 148837723011153920, "id_str": "148837723011153921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1289721418/Bottom_of_the_Hill_by_Josh_on_8-17-07_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1289721418/Bottom_of_the_Hill_by_Josh_on_8-17-07_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:48 +0000", "from_user": "aberlourbear", "from_user_id": 115366389, "from_user_id_str": "115366389", "from_user_name": "peter", "geo": null, "id": 148837703717371900, "id_str": "148837703717371904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1665864958/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665864958/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@nikefootball they both are quality going to get him both on release their day he will be wearing both at Mundialito Portugal in April.", "to_user": "nikefootball", "to_user_id": 41147159, "to_user_id_str": "41147159", "to_user_name": "Nike Football", "in_reply_to_status_id": 148830952544673800, "in_reply_to_status_id_str": "148830952544673792"}, +{"created_at": "Mon, 19 Dec 2011 18:50:48 +0000", "from_user": "Mercutio_M", "from_user_id": 300178269, "from_user_id_str": "300178269", "from_user_name": "Mercutio Montesco", "geo": null, "id": 148837703176306700, "id_str": "148837703176306688", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685862536/polla-de-mercutio_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685862536/polla-de-mercutio_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Pornosawa: Catalu\\u00F1a es como Portugal pero con menos pelo y m\\u00E1s dinero.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:47 +0000", "from_user": "JulianRojinegro", "from_user_id": 336937138, "from_user_id_str": "336937138", "from_user_name": "Julian Rojinegro", "geo": null, "id": 148837701632794620, "id_str": "148837701632794625", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1658240524/bielsa_11_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658240524/bielsa_11_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @CarlosIMedina20: Te\\u00F3filo Guti\\u00E9rrez ir\\u00EDa al Porto de Portugal y Bacca a Newell's seg\\u00FAn algunos periodistas, esperemos confirmaci\\u00F3n de ambos clubes.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:37 +0000", "from_user": "ManuB4N", "from_user_id": 441092236, "from_user_id_str": "441092236", "from_user_name": "Manu ", "geo": null, "id": 148837656145559550, "id_str": "148837656145559552", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702612307/hr-3163-61.hd-3103-2.ch-3185-107.lg-3078-110.sh-3016-110.he-3181-93.ea-3168-103.ca-3225-96-93.wa-3072-62-62.cc-3158-110_s-0.g-0.d-4.h-4.a-0_46cd22323787f6cb20dcea9baab29e72_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702612307/hr-3163-61.hd-3103-2.ch-3185-107.lg-3078-110.sh-3016-110.he-3181-93.ea-3168-103.ca-3225-96-93.wa-3072-62-62.cc-3158-110_s-0.g-0.d-4.h-4.a-0_46cd22323787f6cb20dcea9baab29e72_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Por Que? No lo entiendo como digo un viejo sabio de portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:36 +0000", "from_user": "joshdykes02", "from_user_id": 198795750, "from_user_id_str": "198795750", "from_user_name": "Josh Dykes", "geo": null, "id": 148837655109566460, "id_str": "148837655109566464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668452234/IMG00164-20110712-2035_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668452234/IMG00164-20110712-2035_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@Fredd94 that's all you lived on in portugal", "to_user": "Fredd94", "to_user_id": 215587106, "to_user_id_str": "215587106", "to_user_name": "James Beer", "in_reply_to_status_id": 148837490885799940, "in_reply_to_status_id_str": "148837490885799936"}, +{"created_at": "Mon, 19 Dec 2011 18:50:36 +0000", "from_user": "bettinhogarcia", "from_user_id": 143820199, "from_user_id_str": "143820199", "from_user_name": "Bettinho Garcia", "geo": null, "id": 148837654216192000, "id_str": "148837654216192001", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1526892965/papai_noel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1526892965/papai_noel_normal.jpg", "source": "<a href="http://g1.globo.com/" rel="nofollow">g1.com.br</a>", "text": "RT @g1: FMI libera mais 2,9 bilh\\u00F5es para Portugal http://t.co/WoEfgKeR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:36 +0000", "from_user": "PlanBnB", "from_user_id": 78466241, "from_user_id_str": "78466241", "from_user_name": "PlanBnb", "geo": null, "id": 148837653398290430, "id_str": "148837653398290432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/444021711/DSC00795_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/444021711/DSC00795_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "A financial Dunkirk: Britain draws up plans to rescue expats if Spain ...: Expats could face losing thei... http://t.co/yo3V9c4m #Expats", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:36 +0000", "from_user": "HostelVegan", "from_user_id": 78465193, "from_user_id_str": "78465193", "from_user_name": "Hostel Vegan", "geo": null, "id": 148837652605575170, "id_str": "148837652605575169", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/444024990/DSC00752_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/444024990/DSC00752_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "A financial Dunkirk: Britain draws up plans to rescue expats if Spain ...: Expats could face losing thei... http://t.co/hj3O9DA7 #Expats", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:35 +0000", "from_user": "blgloriosasfera", "from_user_id": 219931601, "from_user_id_str": "219931601", "from_user_name": "Blogs Gloriosasfera", "geo": null, "id": 148837650462281730, "id_str": "148837650462281728", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1175910145/gloriosasfera_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1175910145/gloriosasfera_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "O p\\u00F3s jogo.: Portugal, 19 de Dezembro de 2011No futebol h\\u00E1 uma \\u201Clei\\u201D que diz que n\\u00E3o h\\u00E1 2 jogos iguais. Os jogos... http://t.co/YWHY4Bnh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:28 +0000", "from_user": "libertaire10", "from_user_id": 275948503, "from_user_id_str": "275948503", "from_user_name": "occitan10", "geo": null, "id": 148837619206336500, "id_str": "148837619206336512", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1680529462/050809113309_76_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680529462/050809113309_76_normal.gif", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @NewsEnContinu: Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/vqXgclUY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:24 +0000", "from_user": "danielacatiane", "from_user_id": 326248479, "from_user_id_str": "326248479", "from_user_name": "daniela catiane", "geo": null, "id": 148837603641270270, "id_str": "148837603641270272", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1478456546/cora__es_amigos_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1478456546/cora__es_amigos_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SandraM_RBD @Vondyduleucker @CarolBatista14 @alinegomespk @jujuCcelim @Anevondy gente bora visitar a sandrinha em portugal kkk", "to_user": "SandraM_RBD", "to_user_id": 409592464, "to_user_id_str": "409592464", "to_user_name": "sandra martins", "in_reply_to_status_id": 148837205425664000, "in_reply_to_status_id_str": "148837205425664001"}, +{"created_at": "Mon, 19 Dec 2011 18:50:18 +0000", "from_user": "RobertsAuzans", "from_user_id": 229824254, "from_user_id_str": "229824254", "from_user_name": "Roberts Auzans", "geo": null, "id": 148837575967252480, "id_str": "148837575967252480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1624444425/Miesvdrohn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624444425/Miesvdrohn_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:18 +0000", "from_user": "ElFinanciero_Mx", "from_user_id": 119051398, "from_user_id_str": "119051398", "from_user_name": "El Financiero", "geo": null, "id": 148837575841419260, "id_str": "148837575841419264", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1669528067/logoFinancieroMovil_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669528067/logoFinancieroMovil_normal.png", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "#FMI aprueba nuevo tramo de cr\\u00E9dito 2,900 mde para #Portugal: http://t.co/nzbARPl8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:17 +0000", "from_user": "paris_news2", "from_user_id": 44081874, "from_user_id_str": "44081874", "from_user_name": "Paris News", "geo": null, "id": 148837572897030140, "id_str": "148837572897030145", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "http://t.co/5McIYPxW Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone... http://t.co/wRygGgvO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:16 +0000", "from_user": "take_jp", "from_user_id": 42629577, "from_user_id_str": "42629577", "from_user_name": "take", "geo": null, "id": 148837568337805300, "id_str": "148837568337805312", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/805794286/takeshi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/805794286/takeshi_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s la Gr\\u00E8ce... http://t.co/yBSaYMHI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:14 +0000", "from_user": "denny", "from_user_id": 775957, "from_user_id_str": "775957", "from_user_name": "Denny", "geo": null, "id": 148837559768846340, "id_str": "148837559768846336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1291483853/fuzzy-hat.450x450_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1291483853/fuzzy-hat.450x450_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:14 +0000", "from_user": "Kyokoixxr", "from_user_id": 426245653, "from_user_id_str": "426245653", "from_user_name": "Kyoko Gardner", "geo": null, "id": 148837559450075140, "id_str": "148837559450075136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668756509/LLCM-3745_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668756509/LLCM-3745_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Spain Portugal (Marco Polo Country Maps): http://t.co/PfGOkbEw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:13 +0000", "from_user": "Tamekatdfl", "from_user_id": 426248268, "from_user_id_str": "426248268", "from_user_name": "Tameka Mortensen", "geo": null, "id": 148837556291764220, "id_str": "148837556291764224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1668763263/LLCM-1780_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668763263/LLCM-1780_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Spain Portugal (Marco Polo Country Maps): http://t.co/CxpIBRQ3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:12 +0000", "from_user": "agenciapre7", "from_user_id": 336255310, "from_user_id_str": "336255310", "from_user_name": "Ag\\u00EAncia pre7", "geo": null, "id": 148837554056216580, "id_str": "148837554056216577", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662630971/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662630971/avatar_normal.jpg", "source": "<a href="http://www.agenciapre7.com.br" rel="nofollow">agenciapre7</a>", "text": "Blog: FMI libera mais 2,9 bilh\\u00F5es para Portugal http://t.co/zyEbEbOS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:12 +0000", "from_user": "Spearingnhe", "from_user_id": 395430089, "from_user_id_str": "395430089", "from_user_name": "Karol Spearing", "geo": null, "id": 148837553003442180, "id_str": "148837553003442178", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1599691409/MFC-2469_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599691409/MFC-2469_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Spain Portugal (Marco Polo Country Maps): http://t.co/HW76tHrc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:12 +0000", "from_user": "Sof_F", "from_user_id": 22351182, "from_user_id_str": "22351182", "from_user_name": "Sophie Isobella", "geo": null, "id": 148837552059715600, "id_str": "148837552059715584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1596593601/IMGP56882_twitter_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596593601/IMGP56882_twitter_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@Sophia_Cullen It sounds like a scene from the ghost story The Prince of Mist - Evil cat + Portugal + flickering lights = haunting! :D", "to_user": "Sophia_Cullen", "to_user_id": 23091774, "to_user_id_str": "23091774", "to_user_name": "Sophia Cullen", "in_reply_to_status_id": 148835163260989440, "in_reply_to_status_id_str": "148835163260989441"}, +{"created_at": "Mon, 19 Dec 2011 18:50:07 +0000", "from_user": "g1economia", "from_user_id": 31494764, "from_user_id_str": "31494764", "from_user_name": "G1 - Economia", "geo": null, "id": 148837532442959870, "id_str": "148837532442959874", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1020735790/G1_ECONOMIA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1020735790/G1_ECONOMIA_normal.jpg", "source": "<a href="http://g1.globo.com/economia-e-negocios/" rel="nofollow">g1.globo.com/economia-e-negocios</a>", "text": "FMI libera mais 2,9 bilh\\u00F5es para Portugal http://t.co/xhhhyrvx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:06 +0000", "from_user": "JuanCarlos_RDS", "from_user_id": 245942171, "from_user_id_str": "245942171", "from_user_name": "Juan Carlos RDS \\u2714", "geo": null, "id": 148837528122834940, "id_str": "148837528122834944", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684819587/nFYs3p4M_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684819587/nFYs3p4M_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @17Nani_PT: Um dos v\\u00EDdeos mais bonitos que j\\u00E1 vi, FOR\\u00C7A PORTUGAL: @luisnani @cristiano @RQ7Quaresma @FabioCoentrao @RaulMeireles4 http://t.co/ki6SNQOD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:04 +0000", "from_user": "teleSURtv", "from_user_id": 45013575, "from_user_id_str": "45013575", "from_user_name": "teleSUR TV", "geo": null, "id": 148837518975053820, "id_str": "148837518975053824", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1171030471/logo_nuevo_telesur_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1171030471/logo_nuevo_telesur_normal.jpg", "source": "<a href="http://www.telesurtv.net/" rel="nofollow">teleSUR Noticias</a>", "text": "FMI autoriza entrega de 2 mil 900 euros como parte de la ayuda a Portugal http://t.co/2tvLNU05", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:50:02 +0000", "from_user": "cambioturismo", "from_user_id": 122424993, "from_user_id_str": "122424993", "from_user_name": "Cambio Turismo", "geo": null, "id": 148837512595505150, "id_str": "148837512595505152", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/855372172/dolar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/855372172/dolar_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "FMI libera mais 2,9 bilh\\u00F5es para Portugal http://t.co/GnX4iBih", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:56 +0000", "from_user": "JuanCarlos_RDS", "from_user_id": 245942171, "from_user_id_str": "245942171", "from_user_name": "Juan Carlos RDS \\u2714", "geo": null, "id": 148837486561460220, "id_str": "148837486561460224", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684819587/nFYs3p4M_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684819587/nFYs3p4M_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "A trivela do @RQ7Quaresma com Portugal: http://t.co/4G26rTip \\u00A1E-S-P-E-C-T-A-C-U-L-A-R! \\u00A1M\\u00E1gico Quaresma!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:54 +0000", "from_user": "coachenfinanzas", "from_user_id": 324125268, "from_user_id_str": "324125268", "from_user_name": "InteligenciaFinanzas", "geo": null, "id": 148837477069762560, "id_str": "148837477069762560", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1429845572/logoface2222_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1429845572/logoface2222_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "FMI aprueba entrega de \\u20AC2 mil 900 millones para Portugal - El Consejo de Administraci\\u00F3n dio luz verde para desbloque... http://t.co/ylDqwA1A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:54 +0000", "from_user": "ManejarFinanzas", "from_user_id": 411886219, "from_user_id_str": "411886219", "from_user_name": "Manejar Mis Finanzas", "geo": null, "id": 148837476386086900, "id_str": "148837476386086912", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657593167/finanzas-personales_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657593167/finanzas-personales_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "FMI aprueba entrega de \\u20AC2 mil 900 millones para Portugal - El Consejo de Administraci\\u00F3n dio luz verde para desbloque... http://t.co/vNPxaQdt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:52 +0000", "from_user": "zevonesque", "from_user_id": 21287755, "from_user_id_str": "21287755", "from_user_name": "Andy Walker", "geo": null, "id": 148837468777627650, "id_str": "148837468777627648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/661750189/me4twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/661750189/me4twitter_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@stephendeacon Nope. Only been to finals I am afraid. Went to Portugal (Faro) for 1st time earlier in year. Nice place.", "to_user": "stephendeacon", "to_user_id": 92111958, "to_user_id_str": "92111958", "to_user_name": "Stephen Deacon", "in_reply_to_status_id": 148833121155031040, "in_reply_to_status_id_str": "148833121155031041"}, +{"created_at": "Mon, 19 Dec 2011 18:49:51 +0000", "from_user": "HABBOBIONIC", "from_user_id": 113759549, "from_user_id_str": "113759549", "from_user_name": ":B.I.O.N.I.C:", "geo": null, "id": 148837465942265860, "id_str": "148837465942265856", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1663231992/bioo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663231992/bioo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": ":( assim Rihanna nunca mais vai querer voutar em Portugal. buaa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:50 +0000", "from_user": "gazelover_", "from_user_id": 42326416, "from_user_id_str": "42326416", "from_user_name": "\\u3073\\u306B\\u3001number six \\u2240", "geo": null, "id": 148837458874859520, "id_str": "148837458874859520", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702471465/gazelover__2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702471465/gazelover__2__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Rihanna disse isso no seu twitter... ela disse que sofreu racismo quando estava em Portugal.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:47 +0000", "from_user": "twmtaboor", "from_user_id": 229503870, "from_user_id_str": "229503870", "from_user_name": "Tom Morley", "geo": null, "id": 148837445822201860, "id_str": "148837445822201856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1458296453/prob_chant_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1458296453/prob_chant_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SportingbetMark Largely cos we use same methods I see we like same things in Germany and Portugal!! Do u no if Olhanense have any missings?", "to_user": "SportingbetMark", "to_user_id": 204852668, "to_user_id_str": "204852668", "to_user_name": "Mark O'Haire", "in_reply_to_status_id": 148827677065879550, "in_reply_to_status_id_str": "148827677065879553"}, +{"created_at": "Mon, 19 Dec 2011 18:49:45 +0000", "from_user": "iManrik", "from_user_id": 78199152, "from_user_id_str": "78199152", "from_user_name": "Ingrid", "geo": null, "id": 148837440981958660, "id_str": "148837440981958659", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1658259310/v2ux8hAY_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658259310/v2ux8hAY_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "En que hotel se habr\\u00E1 quedado Rihanna en Portugal!?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:43 +0000", "from_user": "PeterUlsteen", "from_user_id": 44684205, "from_user_id_str": "44684205", "from_user_name": "Peter Ulsteen", "geo": null, "id": 148837429565071360, "id_str": "148837429565071360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702584229/ron-paul-iowa_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702584229/ron-paul-iowa_normal.jpeg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @monetaryintel: lol RT @DailyFXTeam: Greek Fin Min says Greece, Portugal and Ireland are not participating in the EU's plans to lend to the IMF.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:42 +0000", "from_user": "youandeyeareone", "from_user_id": 352198898, "from_user_id_str": "352198898", "from_user_name": "Christopher Corbin", "geo": null, "id": 148837428378075140, "id_str": "148837428378075136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1635822647/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635822647/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:42 +0000", "from_user": "Kalistoncardoso", "from_user_id": 190884837, "from_user_id_str": "190884837", "from_user_name": "K\\u00E1liston Cardoso", "geo": null, "id": 148837426708742140, "id_str": "148837426708742145", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694954705/perfiil_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694954705/perfiil_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Minha v\\u00F3 disse hj @PaulaFernandes7 em #portugal \\u00E9 um sucesso todo mundo escuta o cd dela l\\u00E1 *--*\\nIsso \\u00E9 lindo demaaais !!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:40 +0000", "from_user": "DavePugheParry", "from_user_id": 409409460, "from_user_id_str": "409409460", "from_user_name": "Dave Pughe-Parry", "geo": null, "id": 148837419565854720, "id_str": "148837419565854721", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1632335721/DavePen_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632335721/DavePen_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:39 +0000", "from_user": "giselaflowyable", "from_user_id": 347228299, "from_user_id_str": "347228299", "from_user_name": "Gisela.", "geo": null, "id": 148837415509954560, "id_str": "148837415509954560", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700401621/G._normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700401621/G._normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@CarmenLauraIT Entonces seg\\u00FAn tu por GEOGRAFIA \\u00BFPortugal tambi\\u00E9n es espa\\u00F1a?", "to_user": "CarmenLauraIT", "to_user_id": 358243926, "to_user_id_str": "358243926", "to_user_name": "Carmen Laura Ortega", "in_reply_to_status_id": 148836451692462080, "in_reply_to_status_id_str": "148836451692462081"}, +{"created_at": "Mon, 19 Dec 2011 18:49:38 +0000", "from_user": "negociomx", "from_user_id": 105276754, "from_user_id_str": "105276754", "from_user_name": "negocio", "geo": null, "id": 148837408727773200, "id_str": "148837408727773185", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/633939909/negocio_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/633939909/negocio_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Aprueba FMI tercer tramo de pr\\u00E9stamo a Portugal http://t.co/Gyfo9f8S", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:35 +0000", "from_user": "luckaz", "from_user_id": 32655646, "from_user_id_str": "32655646", "from_user_name": "Lucas Morais", "geo": null, "id": 148837396266491900, "id_str": "148837396266491904", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1597898646/eu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1597898646/eu_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Notas para uma cr\\u00EDtica do sindicalismo http://t.co/kq02GmsI #Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:35 +0000", "from_user": "CarolinaValinho", "from_user_id": 358927753, "from_user_id_str": "358927753", "from_user_name": "Carolina*", "geo": null, "id": 148837395645743100, "id_str": "148837395645743104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702260160/Bieber_Lil_b_voice_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702260160/Bieber_Lil_b_voice_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@thatrygood Hi please follow me I am a fan from Portugal. Thanks and Merry Christmas.", "to_user": "thatrygood", "to_user_id": 19679461, "to_user_id_str": "19679461", "to_user_name": "ryan good", "in_reply_to_status_id": 148836824968732670, "in_reply_to_status_id_str": "148836824968732673"}, +{"created_at": "Mon, 19 Dec 2011 18:49:27 +0000", "from_user": "Ortega_Gerardo", "from_user_id": 214415378, "from_user_id_str": "214415378", "from_user_name": "Gerardo Ortega", "geo": null, "id": 148837362967916540, "id_str": "148837362967916544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1164617010/Gerardo_Ortega_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1164617010/Gerardo_Ortega_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @DailyFXTeam: Greek Fin Min says Greece, Portugal and Ireland are not participating in the EU's plans to lend to the IMF.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:22 +0000", "from_user": "RQ7Quaresma", "from_user_id": 178732567, "from_user_id_str": "178732567", "from_user_name": "Ricardo Quaresma", "geo": null, "id": 148837342633926660, "id_str": "148837342633926657", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1641809170/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641809170/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @17Nani_PT: Um dos v\\u00EDdeos mais bonitos que j\\u00E1 vi, FOR\\u00C7A PORTUGAL: @luisnani @cristiano @RQ7Quaresma @FabioCoentrao @RaulMeireles4 http://t.co/ki6SNQOD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:21 +0000", "from_user": "monetaryintel", "from_user_id": 206241540, "from_user_id_str": "206241540", "from_user_name": "MonetaryIntelligence", "geo": null, "id": 148837337399439360, "id_str": "148837337399439361", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1352023311/MI_Logo_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1352023311/MI_Logo_normal.PNG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "lol RT @DailyFXTeam: Greek Fin Min says Greece, Portugal and Ireland are not participating in the EU's plans to lend to the IMF.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:10 +0000", "from_user": "Novos_Rurais", "from_user_id": 19179355, "from_user_id_str": "19179355", "from_user_name": "Novos_Rurais", "geo": null, "id": 148837291912200200, "id_str": "148837291912200192", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1399911075/Novos_Rurais2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1399911075/Novos_Rurais2_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Ad\\u00E3o e Eva pagaram muito caro por uma ma\\u00E7\\u00E3.\\n\\nE voc\\u00EA... tamb\\u00E9m?????\\n\\nPortugal sem Prozac\\nProcuramos gente positiva... http://t.co/dozCAn2A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:08 +0000", "from_user": "Elbebo_", "from_user_id": 204348656, "from_user_id_str": "204348656", "from_user_name": "Pablo Medicina", "geo": null, "id": 148837284173721600, "id_str": "148837284173721600", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1154797442/2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1154797442/2_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @CarlosIMedina20: Te\\u00F3filo Guti\\u00E9rrez ir\\u00EDa al Porto de Portugal y Bacca a Newell's seg\\u00FAn algunos periodistas, esperemos confirmaci\\u00F3n de ambos clubes.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:05 +0000", "from_user": "portugalforum", "from_user_id": 41989700, "from_user_id_str": "41989700", "from_user_name": "portugalforum", "geo": null, "id": 148837270647087100, "id_str": "148837270647087104", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/487842239/pfo_icon_gr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/487842239/pfo_icon_gr_normal.jpg", "source": "<a href="http://www.portugalforum.org" rel="nofollow">portugalforum.org</a>", "text": "Algarve-News: Portim\\u00E3o: Aut\\u00F3dromo Internacional do Algarve ausgezeichnet: F\\u00FCr die hervorragende Werbung, Logistik http://t.co/RwCEuzLm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:49:03 +0000", "from_user": "g1", "from_user_id": 8802752, "from_user_id_str": "8802752", "from_user_name": "G1", "geo": null, "id": 148837262287847420, "id_str": "148837262287847424", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1018270551/logotwitter_G1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1018270551/logotwitter_G1_normal.jpg", "source": "<a href="http://g1.globo.com/" rel="nofollow">g1.com.br</a>", "text": "FMI libera mais 2,9 bilh\\u00F5es para Portugal http://t.co/WoEfgKeR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:58 +0000", "from_user": "WilzaMilagre", "from_user_id": 437593397, "from_user_id_str": "437593397", "from_user_name": "wilza milagre coelho", "geo": null, "id": 148837244189413380, "id_str": "148837244189413377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "http://t.co/Le3APcde", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:57 +0000", "from_user": "KiraGestPriv", "from_user_id": 425154712, "from_user_id_str": "425154712", "from_user_name": "Kira Gestion Priv\\u00E9e", "geo": null, "id": 148837239726682100, "id_str": "148837239726682112", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @lemondefr: Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/zeOt21vW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:52 +0000", "from_user": "DailyFXTeam", "from_user_id": 28366310, "from_user_id_str": "28366310", "from_user_name": "DailyFXTeamMember", "geo": null, "id": 148837217278754800, "id_str": "148837217278754817", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1266884129/twitter-dailyfx_team_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266884129/twitter-dailyfx_team_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Greek Fin Min says Greece, Portugal and Ireland are not participating in the EU's plans to lend to the IMF.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:49 +0000", "from_user": "RaulVC_Abo", "from_user_id": 322896268, "from_user_id_str": "322896268", "from_user_name": "R. V\\u00E1zquez Carneiro", "geo": null, "id": 148837204792324100, "id_str": "148837204792324096", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1512944042/PERFIL_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1512944042/PERFIL_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#noticias FMI autoriza nuevo tramo de ayuda a Portugal de 2.900 millones: http://t.co/TURAR4ep #inversion", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:48 +0000", "from_user": "Alexandre_Pinto", "from_user_id": 36126027, "from_user_id_str": "36126027", "from_user_name": "Alexandre Pinto", "geo": null, "id": 148837200644153340, "id_str": "148837200644153345", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1372055359/Alex_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1372055359/Alex_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "Flash dance in Lisbon - Video http://t.co/rbVMnK38 #Marketing #Portugal #Optimus", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:48:44 +0000", "from_user": "fschulze", "from_user_id": 16039499, "from_user_id_str": "16039499", "from_user_name": "Florian Schulze", "geo": null, "id": 148837181950144500, "id_str": "148837181950144512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1463268223/3-eyed-smiley-1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1463268223/3-eyed-smiley-1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:43 +0000", "from_user": "CarlosIMedina20", "from_user_id": 142485140, "from_user_id_str": "142485140", "from_user_name": "Carlos Ivan Medina", "geo": null, "id": 148837179836207100, "id_str": "148837179836207104", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1697516163/rostrodecristo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697516163/rostrodecristo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Te\\u00F3filo Guti\\u00E9rrez ir\\u00EDa al Porto de Portugal y Bacca a Newell's seg\\u00FAn algunos periodistas, esperemos confirmaci\\u00F3n de ambos clubes.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:41 +0000", "from_user": "Juanmi_News", "from_user_id": 280477631, "from_user_id_str": "280477631", "from_user_name": "Juan Miguel Garrido", "geo": null, "id": 148837170659082240, "id_str": "148837170659082241", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1425787036/OrlaJuanMi1_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1425787036/OrlaJuanMi1_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "PORTUGAL.AYUDAS ECON\\u00D3MICAS. El FMI autoriza el desembolso inmediato de 2.900 millones de \\u20AC a Portugal,informa Sandro Pozzi para elpais.es", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:37 +0000", "from_user": "yuwonowhy", "from_user_id": 17609113, "from_user_id_str": "17609113", "from_user_name": "yuwonowhy", "geo": null, "id": 148837154313879550, "id_str": "148837154313879553", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/847205955/why_20fx_201_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/847205955/why_20fx_201_normal.jpg", "source": "<a href="http://reuters.com/tools/mobile" rel="nofollow">Thomson Reuters News Pro</a>", "text": "IMF approves 2.9 billion euro tranche to Portugal http://t.co/b1U6n1ls", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:36 +0000", "from_user": "AlisonEmringer", "from_user_id": 419390838, "from_user_id_str": "419390838", "from_user_name": "alison emringer", "geo": null, "id": 148837149758853120, "id_str": "148837149758853120", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1653469111/IMG-20111019-00121_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653469111/IMG-20111019-00121_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @lemondefr: Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/zeOt21vW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:35 +0000", "from_user": "letalmeidaraujo", "from_user_id": 59008108, "from_user_id_str": "59008108", "from_user_name": "B I L E B I E B E R ", "geo": null, "id": 148837145883324400, "id_str": "148837145883324417", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1650651954/Paris2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650651954/Paris2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "isso \\u00E9 um absurdo . sem onda vei. http://t.co/PXTSuAIY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:31 +0000", "from_user": "spankcfc", "from_user_id": 247937612, "from_user_id_str": "247937612", "from_user_name": "mo", "geo": null, "id": 148837129194176500, "id_str": "148837129194176512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1235903637/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1235903637/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Ireland, Portugal, and Greece not in EU-IMF lending plan....so just Italy and Spain then?\\u201D self licking lollipop Comes 2 mind!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:28 +0000", "from_user": "zdig1", "from_user_id": 83364690, "from_user_id_str": "83364690", "from_user_name": "zdig1.biz", "geo": null, "id": 148837115294261250, "id_str": "148837115294261249", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1555861240/scaled_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1555861240/scaled_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s la... http://t.co/vYNmts7q #news", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:23 +0000", "from_user": "guicardoso94", "from_user_id": 441078663, "from_user_id_str": "441078663", "from_user_name": "Guilherme Cardoso", "geo": null, "id": 148837096487010300, "id_str": "148837096487010304", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "rihanna foi vitima de racismo em portugal!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:18 +0000", "from_user": "ARMAKdeODELOT", "from_user_id": 207305542, "from_user_id_str": "207305542", "from_user_name": "ARMAK de ODELOT", "geo": null, "id": 148837075012169730, "id_str": "148837075012169728", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1183805338/kingarmak_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1183805338/kingarmak_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Reino Unido sigue alarmando sobre un posible corralito en Espa\\u00F1a y Portugal http://t.co/t97UCgjG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:15 +0000", "from_user": "yuxthe", "from_user_id": 269823235, "from_user_id_str": "269823235", "from_user_name": "Sonny Dennison", "geo": null, "id": 148837060252418050, "id_str": "148837060252418048", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1281550795/533_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1281550795/533_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Homem morreu em fogo ocorrido em anexo de habita\\u00E7\\u00E3o http://t.co/gUkIDv6O", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:12 +0000", "from_user": "dearlittleworld", "from_user_id": 169101668, "from_user_id_str": "169101668", "from_user_name": "\\u3164\\u3164\\u3164 ", "geo": null, "id": 148837050878148600, "id_str": "148837050878148608", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687006511/tumblr_lvyn82wyKQ1qepmfuo2_250_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687006511/tumblr_lvyn82wyKQ1qepmfuo2_250_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "rihanna sofreu racismo em hotel de portugal KKKKKKKKKKKK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:48:02 +0000", "from_user": "dearlittleworld", "from_user_id": 169101668, "from_user_id_str": "169101668", "from_user_name": "\\u3164\\u3164\\u3164 ", "geo": null, "id": 148837007408373760, "id_str": "148837007408373760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687006511/tumblr_lvyn82wyKQ1qepmfuo2_250_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687006511/tumblr_lvyn82wyKQ1qepmfuo2_250_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/0qD6b7DH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:55 +0000", "from_user": "SnelVinden", "from_user_id": 354442400, "from_user_id_str": "354442400", "from_user_name": "Opdrachtplein", "geo": null, "id": 148836979184898050, "id_str": "148836979184898048", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1496939578/Opdrachtplein_-_logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1496939578/Opdrachtplein_-_logo_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF keurt lening aan Portugal goed: WASHINGTON - Het Internationaal Monetair Fonds (IMF) is maandag akkoord gega... http://t.co/JKOtTJF7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:54 +0000", "from_user": "luizgustavops_", "from_user_id": 322279296, "from_user_id_str": "322279296", "from_user_name": "Luiz Gustavo", "geo": null, "id": 148836973514207230, "id_str": "148836973514207234", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1408606964/PQAAAFJ-Jm2wFdyhXSxn_-NbgkbDimuQRA6I_rXKgHnZiDpz_2eMWIvbMsQYhmbhI9IAtThoCCwcSkz-hnr67hzIfcwAm1T1UMMKgv5JVIrvGIPfWYPRfRavEhDB_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1408606964/PQAAAFJ-Jm2wFdyhXSxn_-NbgkbDimuQRA6I_rXKgHnZiDpz_2eMWIvbMsQYhmbhI9IAtThoCCwcSkz-hnr67hzIfcwAm1T1UMMKgv5JVIrvGIPfWYPRfRavEhDB_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "banda dejavu e dj juninho portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:50 +0000", "from_user": "_SilvijnJ", "from_user_id": 261314236, "from_user_id_str": "261314236", "from_user_name": "'Silvijn.", "geo": null, "id": 148836958687330300, "id_str": "148836958687330304", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1650691075/IMG00341-20111106-1304_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650691075/IMG00341-20111106-1304_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Miss volgend jaarr op vakantie naar portugal *", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:42 +0000", "from_user": "LucasProcpio", "from_user_id": 349889599, "from_user_id_str": "349889599", "from_user_name": "Lucas Silva Proc\\u00F3pio", "geo": null, "id": 148836922926706700, "id_str": "148836922926706689", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1613575773/of_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1613575773/of_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Legal, portugu\\u00EAs de Portugal.(@YouTube http://t.co/elBKquVb)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:31 +0000", "from_user": "VisitEuropeGems", "from_user_id": 179882335, "from_user_id_str": "179882335", "from_user_name": "visiteurope.com", "geo": null, "id": 148836876495749120, "id_str": "148836876495749121", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1106275279/twitter_ve_1_blue_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1106275279/twitter_ve_1_blue_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "visitportugal: Tap Portugal: December Chef was Henrique S\\u00E1 Pessoa \\n#Portugal #tap #food #chef\\n http://t.co/EFYEQQOz http://t.co/ECu4ekJe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:30 +0000", "from_user": "fredericogeorge", "from_user_id": 250151288, "from_user_id_str": "250151288", "from_user_name": "Frederico M. George", "geo": null, "id": 148836872624410620, "id_str": "148836872624410626", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1641883483/Frederico_Mira_GeorgeMINI_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641883483/Frederico_Mira_GeorgeMINI_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Reabertura Hot Clube de Portugal - saudades.antero@gmail.com - Gmail http://t.co/Gs8n7Ua9 via @addthis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:29 +0000", "from_user": "VisitEuropeGems", "from_user_id": 179882335, "from_user_id_str": "179882335", "from_user_name": "visiteurope.com", "geo": null, "id": 148836870686646270, "id_str": "148836870686646272", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1106275279/twitter_ve_1_blue_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1106275279/twitter_ve_1_blue_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "visitportugal: Envelhecimento define tipos de vinho do Porto \\nVia @folha_turismo\\n#Portugal #Vinho #Porto\\nhttp://... http://t.co/udInSVmB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:29 +0000", "from_user": "VisitEuropeGems", "from_user_id": 179882335, "from_user_id_str": "179882335", "from_user_name": "visiteurope.com", "geo": null, "id": 148836868878909440, "id_str": "148836868878909440", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1106275279/twitter_ve_1_blue_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1106275279/twitter_ve_1_blue_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "visitportugal: Conhe\\u00E7a os caminhos do vinho do Porto\\nvia @folha_turismo\\n#Portugal #Porto #Vinho\\nhttp://t.co/VzqClo5v http://t.co/ZJSaibSV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:22 +0000", "from_user": "la_meseta_uber", "from_user_id": 210944820, "from_user_id_str": "210944820", "from_user_name": "lamesetauberalles", "geo": null, "id": 148836838096896000, "id_str": "148836838096896000", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1367050608/1259213685_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1367050608/1259213685_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Pornosawa: Catalu\\u00F1a es como Portugal pero con menos pelo y m\\u00E1s dinero.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:11 +0000", "from_user": "PurefansNews", "from_user_id": 194502710, "from_user_id_str": "194502710", "from_user_name": "Purefans News", "geo": null, "id": 148836793423376400, "id_str": "148836793423376384", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1195472637/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1195472637/twitter_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Rihanna enceinte : un d\\u00E9gueuli au Portugal et c'est parti pour la rumeur: http://t.co/PcB859Iz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:47:05 +0000", "from_user": "Cheryl_MV", "from_user_id": 28456151, "from_user_id_str": "28456151", "from_user_name": "Cheryl Martinez", "geo": null, "id": 148836770153373700, "id_str": "148836770153373696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1662319961/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662319961/image_normal.jpg", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:45 +0000", "from_user": "MaborMarketing", "from_user_id": 359292420, "from_user_id_str": "359292420", "from_user_name": "Mabor-marketing", "geo": null, "id": 148836682974756860, "id_str": "148836682974756864", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://no.nl/" rel="nofollow">No.nl</a>", "text": "IMF keurt lening aan Portugal goed - http://t.co/czqXgrIA - Het Internationaal Monetair Fonds (IMF) is maandag akkoord gegaan met een ni..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:44 +0000", "from_user": "adriana_brg", "from_user_id": 324299327, "from_user_id_str": "324299327", "from_user_name": "Adriana Simpson \\u2654", "geo": null, "id": 148836678499442700, "id_str": "148836678499442688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1625789536/390902_153926378038676_100002639446641_232617_2118205653_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1625789536/390902_153926378038676_100002639446641_232617_2118205653_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@CodySimpson Cody Simpson come to Portugal, please.\\nI love you <3<3<3", "to_user": "CodySimpson", "to_user_id": 79650494, "to_user_id_str": "79650494", "to_user_name": "Cody Simpson", "in_reply_to_status_id": 148242112813608960, "in_reply_to_status_id_str": "148242112813608961"}, +{"created_at": "Mon, 19 Dec 2011 18:46:41 +0000", "from_user": "DJCHUS", "from_user_id": 50225386, "from_user_id_str": "50225386", "from_user_name": "Chus L. Esteban", "geo": null, "id": 148836667191607300, "id_str": "148836667191607297", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1626330185/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626330185/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@DJBORISNYC Glad to heard! Yes im also played in portugal and rocked tha place! We finally got it papa! Cant wait for release date!!!!", "to_user": "DJBORISNYC", "to_user_id": 90678898, "to_user_id_str": "90678898", "to_user_name": "BORIS NYC ", "in_reply_to_status_id": 148802774279262200, "in_reply_to_status_id_str": "148802774279262209"}, +{"created_at": "Mon, 19 Dec 2011 18:46:39 +0000", "from_user": "guii_almeiiida", "from_user_id": 132957295, "from_user_id_str": "132957295", "from_user_name": "G.Almeida", "geo": null, "id": 148836657540505600, "id_str": "148836657540505601", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1642207714/g_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642207714/g_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Acho que acabei de receber uma liga\\u00E7\\u00E3o vinda de Portugal !! #FREAK ... =S", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:36 +0000", "from_user": "nieuwsdiscussie", "from_user_id": 335892690, "from_user_id_str": "335892690", "from_user_name": "Nieuws discussie", "geo": null, "id": 148836645746118660, "id_str": "148836645746118657", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1443949112/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1443949112/logo_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF keurt lening aan Portugal goed http://t.co/2XEBjcSf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:34 +0000", "from_user": "DJROBSWIFT", "from_user_id": 27975655, "from_user_id_str": "27975655", "from_user_name": "The Arch", "geo": null, "id": 148836637789532160, "id_str": "148836637789532161", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1496566576/IMG00802-20101011-2222_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1496566576/IMG00802-20101011-2222_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@Shugah I loved Portugal and their people welcomed me with open arms.", "to_user": "Shugah", "to_user_id": 24470814, "to_user_id_str": "24470814", "to_user_name": "Billie Jean", "in_reply_to_status_id": 148823342651146240, "in_reply_to_status_id_str": "148823342651146242"}, +{"created_at": "Mon, 19 Dec 2011 18:46:33 +0000", "from_user": "danielacatiane", "from_user_id": 326248479, "from_user_id_str": "326248479", "from_user_name": "daniela catiane", "geo": null, "id": 148836636262793200, "id_str": "148836636262793216", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1478456546/cora__es_amigos_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1478456546/cora__es_amigos_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@CarolBatista14 @SandraM_RBD @alinegomespk @Vondyduleucker @jujuCcelim @Anevondy a sandrinha mora em portugal ela \\u00E9 internacional kkkkkkkkk", "to_user": "CarolBatista14", "to_user_id": 311798015, "to_user_id_str": "311798015", "to_user_name": "\\u262ECAROL_M\\u00AA YSABELLE\\u262E ", "in_reply_to_status_id": 148836436647481340, "in_reply_to_status_id_str": "148836436647481346"}, +{"created_at": "Mon, 19 Dec 2011 18:46:20 +0000", "from_user": "iaraLV", "from_user_id": 398762631, "from_user_id_str": "398762631", "from_user_name": "Iara Lima", "geo": null, "id": 148836581292257280, "id_str": "148836581292257280", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1664763334/381029_202877339793120_100002125654664_457472_1842453565_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664763334/381029_202877339793120_100002125654664_457472_1842453565_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Assistir um seriado com legenda em Portugues(de Portugal). Daora a vida --'", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:16 +0000", "from_user": "CookiesForAri", "from_user_id": 431040774, "from_user_id_str": "431040774", "from_user_name": "Mariana Grande", "geo": null, "id": 148836562547916800, "id_str": "148836562547916801", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701857523/tumblr_lwat75kCg11qi0pfdo1_250_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701857523/tumblr_lwat75kCg11qi0pfdo1_250_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ArianaGrande When you come to Portugal , Please answer me :D \\nThanks. Follow me Please :D Love you :) #GrandeLove <333 Love you !8", "to_user": "ArianaGrande", "to_user_id": 34507480, "to_user_id_str": "34507480", "to_user_name": "Ariana Grande"}, +{"created_at": "Mon, 19 Dec 2011 18:46:11 +0000", "from_user": "CookiesForAri", "from_user_id": 431040774, "from_user_id_str": "431040774", "from_user_name": "Mariana Grande", "geo": null, "id": 148836543396724740, "id_str": "148836543396724736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701857523/tumblr_lwat75kCg11qi0pfdo1_250_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701857523/tumblr_lwat75kCg11qi0pfdo1_250_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ArianaGrande When you come to Portugal , Please answer me :D \\nThanks. Follow me Please :D Love you :) #GrandeLove <333 Love you !7", "to_user": "ArianaGrande", "to_user_id": 34507480, "to_user_id_str": "34507480", "to_user_name": "Ariana Grande"}, +{"created_at": "Mon, 19 Dec 2011 18:46:07 +0000", "from_user": "CookiesForAri", "from_user_id": 431040774, "from_user_id_str": "431040774", "from_user_name": "Mariana Grande", "geo": null, "id": 148836523050147840, "id_str": "148836523050147842", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701857523/tumblr_lwat75kCg11qi0pfdo1_250_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701857523/tumblr_lwat75kCg11qi0pfdo1_250_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ArianaGrande When you come to Portugal , Please answer me :D \\nThanks. Follow me Please :D Love you :) #GrandeLove <333 Love you !6", "to_user": "ArianaGrande", "to_user_id": 34507480, "to_user_id_str": "34507480", "to_user_name": "Ariana Grande"}, +{"created_at": "Mon, 19 Dec 2011 18:46:03 +0000", "from_user": "CookiesForAri", "from_user_id": 431040774, "from_user_id_str": "431040774", "from_user_name": "Mariana Grande", "geo": null, "id": 148836507954851840, "id_str": "148836507954851840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701857523/tumblr_lwat75kCg11qi0pfdo1_250_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701857523/tumblr_lwat75kCg11qi0pfdo1_250_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ArianaGrande When you come to Portugal , Please answer me :D \\nThanks. Follow me Please :D Love you :) #GrandeLove <333 Love you !5", "to_user": "ArianaGrande", "to_user_id": 34507480, "to_user_id_str": "34507480", "to_user_name": "Ariana Grande"}, +{"created_at": "Mon, 19 Dec 2011 18:46:02 +0000", "from_user": "NCagnati", "from_user_id": 94609777, "from_user_id_str": "94609777", "from_user_name": "Natacha Cagnati", "geo": null, "id": 148836504293220350, "id_str": "148836504293220352", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1531254547/49145_100000531971421_261_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1531254547/49145_100000531971421_261_n_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#LeMonde Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/MT3A6FoU via @lemondefr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:02 +0000", "from_user": "NewsEnContinu", "from_user_id": 212884671, "from_user_id_str": "212884671", "from_user_name": "Derni\\u00E8res nouvelles ", "geo": null, "id": 148836503605346300, "id_str": "148836503605346304", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1161655949/news.jpg_300___300_Pixel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1161655949/news.jpg_300___300_Pixel_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/vqXgclUY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:02 +0000", "from_user": "shivkk10", "from_user_id": 116709434, "from_user_id_str": "116709434", "from_user_name": "Shiv", "geo": null, "id": 148836503370477570, "id_str": "148836503370477568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1526107511/avatar_normal.JPEG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1526107511/avatar_normal.JPEG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:46:01 +0000", "from_user": "pollyackroyd", "from_user_id": 32763551, "from_user_id_str": "32763551", "from_user_name": "Polly Ackroyd", "geo": null, "id": 148836497997570050, "id_str": "148836497997570048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681795659/PICT0199_2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681795659/PICT0199_2__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:56 +0000", "from_user": "CookiesForAri", "from_user_id": 431040774, "from_user_id_str": "431040774", "from_user_name": "Mariana Grande", "geo": null, "id": 148836479769133060, "id_str": "148836479769133057", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701857523/tumblr_lwat75kCg11qi0pfdo1_250_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701857523/tumblr_lwat75kCg11qi0pfdo1_250_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ArianaGrande When you come to Portugal , Please answer me :D \\nThanks. Follow me Please :D Love you :) #GrandeLove <333 Love you !4", "to_user": "ArianaGrande", "to_user_id": 34507480, "to_user_id_str": "34507480", "to_user_name": "Ariana Grande"}, +{"created_at": "Mon, 19 Dec 2011 18:45:56 +0000", "from_user": "wwwerte", "from_user_id": 364265049, "from_user_id_str": "364265049", "from_user_name": "werteweg", "geo": null, "id": 148836476933779460, "id_str": "148836476933779457", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1519253378/NETBAES.Goldeuro_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1519253378/NETBAES.Goldeuro_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Rettungspaket: IWF gibt dritte Portugal-Tranche frei: Der Internationale W\\u00E4hrungsfonds ist mit den Sparanstrengu... http://t.co/PxhlwXyO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:52 +0000", "from_user": "CookiesForAri", "from_user_id": 431040774, "from_user_id_str": "431040774", "from_user_name": "Mariana Grande", "geo": null, "id": 148836462807355400, "id_str": "148836462807355392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701857523/tumblr_lwat75kCg11qi0pfdo1_250_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701857523/tumblr_lwat75kCg11qi0pfdo1_250_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ArianaGrande When you come to Portugal , Please answer me :D \\nThanks. Follow me Please :D Love you :) #GrandeLove <333 Love you !3", "to_user": "ArianaGrande", "to_user_id": 34507480, "to_user_id_str": "34507480", "to_user_name": "Ariana Grande"}, +{"created_at": "Mon, 19 Dec 2011 18:45:52 +0000", "from_user": "DavidCllx", "from_user_id": 235149041, "from_user_id_str": "235149041", "from_user_name": "David Cllx", "geo": null, "id": 148836462627008500, "id_str": "148836462627008512", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685927830/David__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685927830/David__normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @lemondefr: Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/zeOt21vW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:47 +0000", "from_user": "CookiesForAri", "from_user_id": 431040774, "from_user_id_str": "431040774", "from_user_name": "Mariana Grande", "geo": null, "id": 148836441517064200, "id_str": "148836441517064192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701857523/tumblr_lwat75kCg11qi0pfdo1_250_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701857523/tumblr_lwat75kCg11qi0pfdo1_250_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ArianaGrande When you come to Portugal , Please answer me :D \\nThanks. Follow me Please :D Love you :) #GrandeLove <333 Love you !2", "to_user": "ArianaGrande", "to_user_id": 34507480, "to_user_id_str": "34507480", "to_user_name": "Ariana Grande"}, +{"created_at": "Mon, 19 Dec 2011 18:45:41 +0000", "from_user": "danielacatiane", "from_user_id": 326248479, "from_user_id_str": "326248479", "from_user_name": "daniela catiane", "geo": null, "id": 148836415625633800, "id_str": "148836415625633796", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1478456546/cora__es_amigos_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1478456546/cora__es_amigos_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SandraM_RBD @CarolBatista14 @alinegomespk @Vondyduleucker @jujuCcelim @Anevondy kkkkkkkkkkkkkkkkk pegar um aviao! sandrinha portugal \\u00E9 bom?", "to_user": "SandraM_RBD", "to_user_id": 409592464, "to_user_id_str": "409592464", "to_user_name": "sandra martins", "in_reply_to_status_id": 148836103615545340, "in_reply_to_status_id_str": "148836103615545344"}, +{"created_at": "Mon, 19 Dec 2011 18:45:35 +0000", "from_user": "Pornosawa", "from_user_id": 56080802, "from_user_id_str": "56080802", "from_user_name": "Sr. Sawa", "geo": null, "id": 148836390199767040, "id_str": "148836390199767040", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1591909048/Ok_bigger_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591909048/Ok_bigger_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Catalu\\u00F1a es como Portugal pero con menos pelo y m\\u00E1s dinero.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:34 +0000", "from_user": "lorenzo_60", "from_user_id": 169865107, "from_user_id_str": "169865107", "from_user_name": "\\uF8FFlorenzo\\uF8FF", "geo": null, "id": 148836387062431740, "id_str": "148836387062431744", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1297617980/cafe_apple_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1297617980/cafe_apple_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s la Gr\\u00E8ce... http://t.co/2LZJPG8B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:33 +0000", "from_user": "leondiwrnodau", "from_user_id": 145750183, "from_user_id_str": "145750183", "from_user_name": "Leonardo Dias", "geo": null, "id": 148836384004780030, "id_str": "148836384004780033", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1684242178/troll_face_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684242178/troll_face_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s la Gr\\u00E8ce... http://t.co/kFxqNGyG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:31 +0000", "from_user": "AllNiouzes", "from_user_id": 404677009, "from_user_id_str": "404677009", "from_user_name": "AllNiouzes", "geo": null, "id": 148836375314173950, "id_str": "148836375314173953", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1621901816/allniouzes_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621901816/allniouzes_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "A la Une : Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr... http://t.co/mv1BPPTT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:31 +0000", "from_user": "RaiaDiplomatica", "from_user_id": 94857687, "from_user_id_str": "94857687", "from_user_name": "Raia Diplom\\u00E1tica", "geo": null, "id": 148836373443514370, "id_str": "148836373443514368", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1460666089/tw_11039440_1311629640_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1460666089/tw_11039440_1311629640_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Breve reflex\\u00E3o sobre um Portugal global (1\\u00AA parte) \\u00AB Raia Diplom\\u00E1tica http://t.co/wUEbNQOu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:30 +0000", "from_user": "Kabs_Official", "from_user_id": 106267624, "from_user_id_str": "106267624", "from_user_name": "kabs Souar\\u00E9", "geo": null, "id": 148836371136643070, "id_str": "148836371136643072", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700408902/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700408902/image_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/1uIDOjO4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:30 +0000", "from_user": "biblionum", "from_user_id": 284190506, "from_user_id_str": "284190506", "from_user_name": "Formation Biblionum", "geo": null, "id": 148836368586522620, "id_str": "148836368586522625", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1673355643/jorge-luis-borges_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673355643/jorge-luis-borges_normal.jpg", "source": "<a href="http://www.tumblr.com/" rel="nofollow">Tumblr</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal - http://t.co/1zDYBiCp http://t.co/bwnYJX56", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:29 +0000", "from_user": "VIENTxMExPOMMER", "from_user_id": 316979398, "from_user_id_str": "316979398", "from_user_name": "VIENTxMExPOMMER", "geo": null, "id": 148836367542140930, "id_str": "148836367542140929", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1633304037/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633304037/image_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s la Gr\\u00E8ce... http://t.co/JeH9Wa4l", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:29 +0000", "from_user": "biblionum", "from_user_id": 284190506, "from_user_id_str": "284190506", "from_user_name": "Formation Biblionum", "geo": null, "id": 148836366929756160, "id_str": "148836366929756160", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1673355643/jorge-luis-borges_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673355643/jorge-luis-borges_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/NdtyEEhH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:29 +0000", "from_user": "X_Pride", "from_user_id": 373953175, "from_user_id_str": "373953175", "from_user_name": "XPride", "geo": null, "id": 148836365914738700, "id_str": "148836365914738688", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1606801478/big_culo_maschile_12_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606801478/big_culo_maschile_12_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Rihanna sofre racismo em Portugal: Rihanna ficou doida no Twitter, por causa de um homem que teria feito declara... http://t.co/jPFF9odk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:29 +0000", "from_user": "NelsonSheep", "from_user_id": 40680788, "from_user_id_str": "40680788", "from_user_name": "Nelson Sheep", "geo": null, "id": 148836365071679500, "id_str": "148836365071679488", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1591760397/Ab6Ws_xCMAITVxA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591760397/Ab6Ws_xCMAITVxA_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Rihanna sofre racismo em Portugal: Rihanna ficou doida no Twitter, por causa de um homem que teria feito declara... http://t.co/Srd7nbQm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:28 +0000", "from_user": "formargos2010", "from_user_id": 223631981, "from_user_id_str": "223631981", "from_user_name": "Formation Argonautes", "geo": null, "id": 148836363322654720, "id_str": "148836363322654720", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s la Gr\\u00E8ce... http://t.co/cP8lddkC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:28 +0000", "from_user": "oestadodoparana", "from_user_id": 250353684, "from_user_id_str": "250353684", "from_user_name": "O Estado do Paran\\u00E1", "geo": null, "id": 148836363234574340, "id_str": "148836363234574336", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1283113508/estado_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1283113508/estado_twitter_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "FMI libera 2,9 bi de euros para Portugal http://t.co/bzoEnimK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:28 +0000", "from_user": "ForSaleiAlgarve", "from_user_id": 386105591, "from_user_id_str": "386105591", "from_user_name": "For Sale in Algarve", "geo": null, "id": 148836361917562880, "id_str": "148836361917562882", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1575941712/For_Sale_In_Algarve_Twitter_Logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575941712/For_Sale_In_Algarve_Twitter_Logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Apartment for sale in Portimao Praia da Rocha | 1 bedroom ~\\nFor-Sale-in-Algarve ~ #Algarve #Portugal - http://t.co/Oy3oOGMd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:28 +0000", "from_user": "FlashPresse", "from_user_id": 119693093, "from_user_id_str": "119693093", "from_user_name": "Flash Presse", "geo": null, "id": 148836360772522000, "id_str": "148836360772521984", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1392747630/FP_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1392747630/FP_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/SF81XkOM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:27 +0000", "from_user": "Superpride_", "from_user_id": 128892502, "from_user_id_str": "128892502", "from_user_name": "Superpride", "geo": null, "id": 148836358134312960, "id_str": "148836358134312960", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/957022001/twitter_SP_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/957022001/twitter_SP_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Rihanna sofre racismo em Portugal: Rihanna ficou doida no Twitter, por causa de um homem que teria feito declara... http://t.co/DQLTV9xO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:27 +0000", "from_user": "1casaecohomes", "from_user_id": 17333475, "from_user_id_str": "17333475", "from_user_name": "Cristina Sanchez", "geo": null, "id": 148836357945569280, "id_str": "148836357945569280", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1602663768/1Casa_Twitter_Icon_L_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1602663768/1Casa_Twitter_Icon_L_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Properties By Robert Edwards ~ Cerro Novo ~ #Portugal - Sociedade de\\nMedico #Imobiliaria Lda on Global viewr - http://t.co/HHUILiPm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:26 +0000", "from_user": "soptunna", "from_user_id": 48296261, "from_user_id_str": "48296261", "from_user_name": "Lieke", "geo": null, "id": 148836351230476300, "id_str": "148836351230476288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1673553180/374798_2759949443598_1403658556_33140101_858817661_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673553180/374798_2759949443598_1403658556_33140101_858817661_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "EPIC GO WATCH THIS! RT @YCfansinworld: @Yellowcard - Rough Landing Holly - Live in Portugal. Just: WOW! http://t.co/DWsxfdsk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:24 +0000", "from_user": "ActuFrance", "from_user_id": 67394398, "from_user_id_str": "67394398", "from_user_name": "ActuFrance", "geo": null, "id": 148836343399723000, "id_str": "148836343399723009", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/430013963/2889619236_0f95ded0a4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/430013963/2889619236_0f95ded0a4_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s la Gr\\u00E8ce... http://t.co/EjZ8sdB6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:24 +0000", "from_user": "fantasy77120", "from_user_id": 119844291, "from_user_id_str": "119844291", "from_user_name": "Adrien FRONTENAUD", "geo": null, "id": 148836343194206200, "id_str": "148836343194206208", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/732503816/Adrien_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/732503816/Adrien_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s la Gr\\u00E8ce... http://t.co/THmRXTD7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:23 +0000", "from_user": "affairesfrance", "from_user_id": 62947797, "from_user_id_str": "62947797", "from_user_name": "Soci\\u00E9t\\u00E9s Fran\\u00E7ais", "geo": null, "id": 148836342539878400, "id_str": "148836342539878400", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/348318454/World-Business-Finder_FR_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/348318454/World-Business-Finder_FR_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "[LE MONDE]: Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro ap... http://t.co/TjsKadCD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:23 +0000", "from_user": "Iretidee99", "from_user_id": 239070619, "from_user_id_str": "239070619", "from_user_name": "IretidayoZaccheaus", "geo": null, "id": 148836340191080450, "id_str": "148836340191080448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1695257386/IMG-20111001-00810_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695257386/IMG-20111001-00810_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @DASHGlobal: @KimKardashian is almost at 12,000,000 followers on Twitter. That's more than the population of Greece, Portugal and Sweden! #DASHGlobal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:23 +0000", "from_user": "aspalainz", "from_user_id": 71355430, "from_user_id_str": "71355430", "from_user_name": "aspalainz", "geo": null, "id": 148836339238965250, "id_str": "148836339238965249", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s la Gr\\u00E8ce... http://t.co/Ro08xvuI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:21 +0000", "from_user": "CookiesForAri", "from_user_id": 431040774, "from_user_id_str": "431040774", "from_user_name": "Mariana Grande", "geo": null, "id": 148836334059003900, "id_str": "148836334059003906", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701857523/tumblr_lwat75kCg11qi0pfdo1_250_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701857523/tumblr_lwat75kCg11qi0pfdo1_250_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ArianaGrande When you come to Portugal , Please answer me :D \\nThanks. Follow me Please :D Love you :) #GrandeLove <333 Love you !1", "to_user": "ArianaGrande", "to_user_id": 34507480, "to_user_id_str": "34507480", "to_user_name": "Ariana Grande"}, +{"created_at": "Mon, 19 Dec 2011 18:45:13 +0000", "from_user": "SocMeDotMe", "from_user_id": 371995419, "from_user_id_str": "371995419", "from_user_name": "Karl Lingenfelder", "geo": null, "id": 148836298768125950, "id_str": "148836298768125952", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1546120426/SocMe_Twitter_Icon_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546120426/SocMe_Twitter_Icon_2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Apartment for sale in Portimao Praia da Rocha | 1 bedroom ~\\nFor-Sale-in-Algarve ~ #Algarve #Portugal - http://t.co/fn46aqAQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:08 +0000", "from_user": "vitriolica", "from_user_id": 77826352, "from_user_id_str": "77826352", "from_user_name": "Vitri\\u00F3lica CORRosiva", "geo": null, "id": 148836278111178750, "id_str": "148836278111178752", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1380712813/twitt-coco3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1380712813/twitt-coco3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "VERGONHA para Portugal mas em especial para a CP! http://t.co/VTME2e0E", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:03 +0000", "from_user": "OPINIONLATINA", "from_user_id": 212958513, "from_user_id_str": "212958513", "from_user_name": "GUILLERMO LARSEN", "geo": null, "id": 148836257726861300, "id_str": "148836257726861312", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1161819054/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1161819054/images_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "FMI aprueba tramo de rescate a Portugal http://t.co/2DVS9N1N", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:03 +0000", "from_user": "Candidman", "from_user_id": 16920029, "from_user_id_str": "16920029", "from_user_name": "Candidman \\u2714", "geo": null, "id": 148836257311637500, "id_str": "148836257311637504", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1621436117/candidman_160x160_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621436117/candidman_160x160_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#Econom\\u00EDa FMI aprueba tramo de rescate a Portugal http://t.co/U1L5PzSG \\u27A8 @cnnexpansion", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:45:03 +0000", "from_user": "LarsenGuillermo", "from_user_id": 288479893, "from_user_id_str": "288479893", "from_user_name": "Guillermo Larsen", "geo": null, "id": 148836257160634370, "id_str": "148836257160634368", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1327084601/Picture_3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1327084601/Picture_3_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "FMI aprueba tramo de rescate a Portugal http://t.co/9d0yhaLu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:56 +0000", "from_user": "CookiesForAri", "from_user_id": 431040774, "from_user_id_str": "431040774", "from_user_name": "Mariana Grande", "geo": null, "id": 148836227737583600, "id_str": "148836227737583617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701857523/tumblr_lwat75kCg11qi0pfdo1_250_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701857523/tumblr_lwat75kCg11qi0pfdo1_250_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ArianaGrande Ariana , When you come to Portugal , Please answer me :D \\nThanks. Follow me Please :D Love you :) #GrandeLove <333 Love you !", "to_user": "ArianaGrande", "to_user_id": 34507480, "to_user_id_str": "34507480", "to_user_name": "Ariana Grande", "in_reply_to_status_id": 148835051101093900, "in_reply_to_status_id_str": "148835051101093888"}, +{"created_at": "Mon, 19 Dec 2011 18:44:56 +0000", "from_user": "CrisDalVesco", "from_user_id": 44032595, "from_user_id_str": "44032595", "from_user_name": "Cris", "geo": null, "id": 148836227011969020, "id_str": "148836227011969024", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1628251442/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1628251442/image_normal.jpg", "source": "<a href="http://www.publico.pt" rel="nofollow">AutoTweetPublico</a>", "text": "RT @Publico: Telefones fixos sobem em Portugal e atingem 4,5 milh\\u00F5es no 3.\\u00BA trimestre http://t.co/GJOQfJHE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:51 +0000", "from_user": "kadeokanoww", "from_user_id": 368055895, "from_user_id_str": "368055895", "from_user_name": "El MaHaRajah", "geo": null, "id": 148836205172240400, "id_str": "148836205172240384", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699508863/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699508863/image_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @lemondefr: Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/zeOt21vW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:43 +0000", "from_user": "Portugal_Glocal", "from_user_id": 18055408, "from_user_id_str": "18055408", "from_user_name": "Portugal Glocal", "geo": null, "id": 148836173400383500, "id_str": "148836173400383488", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1359510627/Logo_Portugal_Glocal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1359510627/Logo_Portugal_Glocal_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Ad\\u00E3o e Eva pagaram muito caro por uma ma\\u00E7\\u00E3.\\n\\nE voc\\u00EA... tamb\\u00E9m?????\\n\\nPortugal sem Prozac\\nProcuramos gente positiva... http://t.co/72z6nAiJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:43 +0000", "from_user": "Adam_Crouch", "from_user_id": 303594664, "from_user_id_str": "303594664", "from_user_name": "Adam Crouch", "geo": null, "id": 148836171022221300, "id_str": "148836171022221312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1595096484/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1595096484/twitter_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Bigdsoccer: Ruben Luna will be heading to Portugal to practice with Sporting Lisbon in January. Very cool opportunity for the young Dallas forward.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:42 +0000", "from_user": "jeisamarjorie", "from_user_id": 281528314, "from_user_id_str": "281528314", "from_user_name": "jeisamarjorie", "geo": null, "id": 148836170216898560, "id_str": "148836170216898560", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1664108231/lourassa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664108231/lourassa_normal.jpg", "source": "<a href="http://www.yahoo.com" rel="nofollow">Yahoo!</a>", "text": "replied to jeisamajorie's comment: Acho que se as pessoas soubessem da perseguicao do passado, pudessem por a m... http://t.co/uACiyhaR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:32 +0000", "from_user": "Mortiman", "from_user_id": 374152138, "from_user_id_str": "374152138", "from_user_name": "T. Mortimer", "geo": null, "id": 148836127292403700, "id_str": "148836127292403712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1544445916/Bear2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544445916/Bear2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Cold to the bone. RT @djfxtrader : Greek FinMin: #Greece, #Ireland, #Portugal Excluded From IMF Boost [Dow Jones] #imf #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:27 +0000", "from_user": "LaraSMC", "from_user_id": 441069532, "from_user_id_str": "441069532", "from_user_name": "Lara Sofia Martins C", "geo": null, "id": 148836105704312830, "id_str": "148836105704312833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@rihanna Rihanna although the racism episode, you like Portugal? We love you and love your show and hope you come back", "to_user": "rihanna", "to_user_id": 79293791, "to_user_id_str": "79293791", "to_user_name": "Rihanna"}, +{"created_at": "Mon, 19 Dec 2011 18:44:17 +0000", "from_user": "jaimegrafick", "from_user_id": 18938602, "from_user_id_str": "18938602", "from_user_name": "Jaime Lopes", "geo": null, "id": 148836064121978880, "id_str": "148836064121978880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/387808542/retrato_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/387808542/retrato_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "poster for the day of the Romanian culture in Portugal @dribbble: http://t.co/wNVoQbgS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:09 +0000", "from_user": "BBrown1868", "from_user_id": 380262239, "from_user_id_str": "380262239", "from_user_name": "Brenden Brown", "geo": null, "id": 148836030978596860, "id_str": "148836030978596865", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694977558/alecs_sleep_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694977558/alecs_sleep_normal.JPG", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@stillblazingtho does it bother anyone else that people can shoot up on portugal's streets, and we cant smoke a joint in our living room? RT", "to_user": "stillblazingtho", "to_user_id": 253322962, "to_user_id_str": "253322962", "to_user_name": "Weed Tweets\\u2122"}, +{"created_at": "Mon, 19 Dec 2011 18:44:09 +0000", "from_user": "MARKETRISER", "from_user_id": 329695511, "from_user_id_str": "329695511", "from_user_name": "MARKETRISER.COM", "geo": null, "id": 148836028180987900, "id_str": "148836028180987905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1427519217/MR-Twitter-Logo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1427519217/MR-Twitter-Logo_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF releases 2.9 bn euros to Portugal: IMF said it would release 2.9 billion euros ($3.8 billion) to Portugal in the newest installme...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:03 +0000", "from_user": "computerartspt", "from_user_id": 192979775, "from_user_id_str": "192979775", "from_user_name": "ComputerArtsPortugal", "geo": null, "id": 148836004604809200, "id_str": "148836004604809216", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1400489661/Computer-arts_logo-01_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1400489661/Computer-arts_logo-01_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "A prenda perfeita para este Natal - assinatura anua| a 50,00\\u20AC Computer Arts Portugal http://t.co/I2H5Uc73 via @computerartspt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:44:02 +0000", "from_user": "FatimaRD", "from_user_id": 266712846, "from_user_id_str": "266712846", "from_user_name": "Fatima Rolo Duarte", "geo": null, "id": 148835997965234180, "id_str": "148835997965234176", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1275555020/twitterefe_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1275555020/twitterefe_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Super ministro portugu\\u00EAs Ant\\u00F3nio Ribeiro Ferreira, Portugal, 2011 http://t.co/oHTV158g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:57 +0000", "from_user": "PlayYankPlay", "from_user_id": 83119890, "from_user_id_str": "83119890", "from_user_name": "Yana", "geo": null, "id": 148835980168790000, "id_str": "148835980168790016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1576943685/x_339026d0_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576943685/x_339026d0_normal.jpg", "source": "<a href="http://www.postcrossing.com" rel="nofollow">Postcrossing Project</a>", "text": "Received a #postcrossing postcard from Portugal - http://t.co/i6mVhfjf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:49 +0000", "from_user": "petroniovleitao", "from_user_id": 145728801, "from_user_id_str": "145728801", "from_user_name": "petronio leitao", "geo": null, "id": 148835945838411780, "id_str": "148835945838411776", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1172565987/Photo_on_2010-11-21_at_19.57__2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1172565987/Photo_on_2010-11-21_at_19.57__2_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Porto, em Portugal, tem muitos apreciadores no Brasil http://t.co/aPQ0NNAz #folha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:46 +0000", "from_user": "SEO_logique34", "from_user_id": 137327640, "from_user_id_str": "137327640", "from_user_name": "Webmarketing SEO", "geo": null, "id": 148835934740291600, "id_str": "148835934740291584", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#permis Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s ... http://t.co/ZGFVrw8X", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:45 +0000", "from_user": "lubayle", "from_user_id": 181980578, "from_user_id_str": "181980578", "from_user_name": "lubayle", "geo": null, "id": 148835929363185660, "id_str": "148835929363185665", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1486232011/Djibouti_6903_-_Version_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1486232011/Djibouti_6903_-_Version_2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s la Gr\\u00E8ce... http://t.co/MIIWMd1s", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:45 +0000", "from_user": "LeMicroscope", "from_user_id": 387722324, "from_user_id_str": "387722324", "from_user_name": "dendoncker harald", "geo": null, "id": 148835927576428540, "id_str": "148835927576428547", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1580058507/microscope_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580058507/microscope_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/IbQ4PfiV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:45 +0000", "from_user": "tevoldevtt", "from_user_id": 243646842, "from_user_id_str": "243646842", "from_user_name": "Jean Dupond", "geo": null, "id": 148835927513509900, "id_str": "148835927513509888", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s la Gr\\u00E8ce... http://t.co/Fa45dsDO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:44 +0000", "from_user": "_ITMarketing", "from_user_id": 39571005, "from_user_id_str": "39571005", "from_user_name": "SEO & e-Marketing", "geo": null, "id": 148835924317450240, "id_str": "148835924317450240", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1272058885/funnycomp_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1272058885/funnycomp_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s la Gr\\u00E8ce... http://t.co/0U5Fn2jZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:44 +0000", "from_user": "SEO_Amigo", "from_user_id": 50766089, "from_user_id_str": "50766089", "from_user_name": "Rex Jarvis #LION", "geo": null, "id": 148835923340169200, "id_str": "148835923340169216", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1565375144/Picture1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1565375144/Picture1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s la Gr\\u00E8ce... http://t.co/KpEvdFsa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:43 +0000", "from_user": "elena800", "from_user_id": 304434505, "from_user_id_str": "304434505", "from_user_name": "elena ", "geo": null, "id": 148835922761351170, "id_str": "148835922761351168", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#permis Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s ... http://t.co/xAzDNkRI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:43 +0000", "from_user": "ylna805", "from_user_id": 304413016, "from_user_id_str": "304413016", "from_user_name": "elena", "geo": null, "id": 148835922648109060, "id_str": "148835922648109056", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1508286421/Tulips_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1508286421/Tulips_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#permis Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s ... http://t.co/BxuJ9xv5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:43 +0000", "from_user": "ylna728", "from_user_id": 297486985, "from_user_id_str": "297486985", "from_user_name": "r\\u00E9f\\u00E9rencement SEO", "geo": null, "id": 148835922564231170, "id_str": "148835922564231168", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1553133807/Tulips_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553133807/Tulips_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#permis Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s ... http://t.co/t5gkA322", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:43 +0000", "from_user": "ylna707", "from_user_id": 292999268, "from_user_id_str": "292999268", "from_user_name": "Montre occasion", "geo": null, "id": 148835922501320700, "id_str": "148835922501320705", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1508288166/Tulips_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1508288166/Tulips_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#permis Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s ... http://t.co/jnFKW86y", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:43:43 +0000", "from_user": "ylna707", "from_user_id": 292999268, "from_user_id_str": "292999268", "from_user_name": "Montre occasion", "geo": null, "id": 148835922501320700, "id_str": "148835922501320705", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1508288166/Tulips_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1508288166/Tulips_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#permis Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s ... http://t.co/jnFKW86y", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:43 +0000", "from_user": "ylna804", "from_user_id": 304393278, "from_user_id_str": "304393278", "from_user_name": "ylna804", "geo": null, "id": 148835922446778370, "id_str": "148835922446778368", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1553093636/Tulips_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553093636/Tulips_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#permis Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s ... http://t.co/m6sRNCzb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:43 +0000", "from_user": "Agence_web1", "from_user_id": 297335146, "from_user_id_str": "297335146", "from_user_name": "Agence r\\u00E9f\\u00E9rencement", "geo": null, "id": 148835922388074500, "id_str": "148835922388074496", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1350447917/165629_120520168018723_100001822221918_120243_8043365_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1350447917/165629_120520168018723_100001822221918_120243_8043365_n_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#permis Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s ... http://t.co/j10kRhXW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:43 +0000", "from_user": "fleursdomicile", "from_user_id": 292974788, "from_user_id_str": "292974788", "from_user_name": "Avocat Lyon", "geo": null, "id": 148835922375487500, "id_str": "148835922375487489", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1553186964/Tulips_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553186964/Tulips_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#permis Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s ... http://t.co/OdNAcGIq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:43 +0000", "from_user": "ylna57", "from_user_id": 143846441, "from_user_id_str": "143846441", "from_user_name": "elena", "geo": null, "id": 148835922320949250, "id_str": "148835922320949249", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1507901478/Hydrangeas_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1507901478/Hydrangeas_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#permis Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s ... http://t.co/LejyXrs6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:43 +0000", "from_user": "Adwords1Google", "from_user_id": 295647645, "from_user_id_str": "295647645", "from_user_name": "Google Adwords", "geo": null, "id": 148835922299981820, "id_str": "148835922299981824", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1345251421/google-adwords_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1345251421/google-adwords_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#permis Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s ... http://t.co/QLihZQOO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:43 +0000", "from_user": "logique_44", "from_user_id": 142654963, "from_user_id_str": "142654963", "from_user_name": "R\\u00E9f\\u00E9rencement Lyon ", "geo": null, "id": 148835922186739700, "id_str": "148835922186739712", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1553226838/Lighthouse_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553226838/Lighthouse_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#permis Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s ... http://t.co/PZefUWvD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:43 +0000", "from_user": "ylna59", "from_user_id": 144842203, "from_user_id_str": "144842203", "from_user_name": "elena", "geo": null, "id": 148835922136403970, "id_str": "148835922136403968", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1508262015/Tulips_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1508262015/Tulips_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#permis Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s ... http://t.co/clyPumZV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:43 +0000", "from_user": "Web_Marketing15", "from_user_id": 156676088, "from_user_id_str": "156676088", "from_user_name": "Webmarketing Google", "geo": null, "id": 148835922119630850, "id_str": "148835922119630848", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1553242746/Lighthouse_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553242746/Lighthouse_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#permis Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s ... http://t.co/I63yGB21", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:43 +0000", "from_user": "app_auditif", "from_user_id": 136204841, "from_user_id_str": "136204841", "from_user_name": "appareil auditif", "geo": null, "id": 148835922086072320, "id_str": "148835922086072320", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#permis Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s ... http://t.co/29nSupsQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:43 +0000", "from_user": "ylna56", "from_user_id": 143823366, "from_user_id_str": "143823366", "from_user_name": "elena", "geo": null, "id": 148835922073489400, "id_str": "148835922073489409", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1508272173/norvege_620x465_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1508272173/norvege_620x465_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#permis Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s ... http://t.co/hyqmuFMt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:43 +0000", "from_user": "artworkblognews", "from_user_id": 309819639, "from_user_id_str": "309819639", "from_user_name": "artworkblognews", "geo": null, "id": 148835921255600130, "id_str": "148835921255600129", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1379160131/berries030021_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1379160131/berries030021_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s la Gr\\u00E8ce... http://t.co/ZulKk7k1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:43 +0000", "from_user": "wahibaboujbel", "from_user_id": 255905342, "from_user_id_str": "255905342", "from_user_name": "Wahiba Boujbel", "geo": null, "id": 148835919498190850, "id_str": "148835919498190849", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Troisi\\u00E8me pays de la zone euro apr\\u00E8s la Gr\\u00E8ce... http://t.co/HE7rycPG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:41 +0000", "from_user": "webnachrichten", "from_user_id": 156702879, "from_user_id_str": "156702879", "from_user_name": "Nachrichtenportal", "geo": null, "id": 148835912565014530, "id_str": "148835912565014528", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1585359308/clipp_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585359308/clipp_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Rettungspaket: IWF gibt dritte Portugal-Tranche frei http://t.co/Zds59qre #politik", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:36 +0000", "from_user": "Travelinq", "from_user_id": 195745687, "from_user_id_str": "195745687", "from_user_name": "Travelinq", "geo": null, "id": 148835892847587330, "id_str": "148835892847587328", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1132386149/app_1_108768475813712_1784_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1132386149/app_1_108768475813712_1784_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Marije gaat 16 t/m 25 juli 2012 op vakantie naar Albufeira \\u00BB Portugal http://t.co/90Fu7cOS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:36 +0000", "from_user": "vakantievriend", "from_user_id": 86151146, "from_user_id_str": "86151146", "from_user_name": "Vakantievrienden.nl", "geo": null, "id": 148835890595246080, "id_str": "148835890595246080", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1225338215/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225338215/logo_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Marije gaat 16 t/m 25 juli 2012 op vakantie naar Albufeira \\u00BB Portugal http://t.co/vYi1iZwO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:36 +0000", "from_user": "23Slater23", "from_user_id": 357710671, "from_user_id_str": "357710671", "from_user_name": "Slates", "geo": null, "id": 148835890515558400, "id_str": "148835890515558400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1619249682/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619249682/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Home from overseas Portugal stag do! Haven't a clue what day it is lol", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:36 +0000", "from_user": "Travelinq", "from_user_id": 195745687, "from_user_id_str": "195745687", "from_user_name": "Travelinq", "geo": null, "id": 148835889982881800, "id_str": "148835889982881793", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1132386149/app_1_108768475813712_1784_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1132386149/app_1_108768475813712_1784_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amy van de Wetering gaat 16 t/m 25 juli 2012 op vakantie naar Albufeira \\u00BB Portugal http://t.co/qhKeEuT9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:35 +0000", "from_user": "vakantievriend", "from_user_id": 86151146, "from_user_id_str": "86151146", "from_user_name": "Vakantievrienden.nl", "geo": null, "id": 148835888766521340, "id_str": "148835888766521344", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1225338215/logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225338215/logo_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amy van de Wetering gaat 16 t/m 25 juli 2012 op vakantie naar Albufeira \\u00BB Portugal http://t.co/Za8n7Aii", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:31 +0000", "from_user": "JacekWierzbicki", "from_user_id": 270492072, "from_user_id_str": "270492072", "from_user_name": "Black Centaur", "geo": null, "id": 148835870823284740, "id_str": "148835870823284737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1647014814/centaur_logo_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647014814/centaur_logo_1_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @djfxtrader: Greek FinMin: #Greece, #Ireland, #Portugal Excluded From IMF Boost [Dow Jones] #imf #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:25 +0000", "from_user": "nanecau", "from_user_id": 84962661, "from_user_id_str": "84962661", "from_user_name": "Nane", "geo": null, "id": 148835843791011840, "id_str": "148835843791011840", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1613164541/Linda_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1613164541/Linda_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @SaguiSanfona: \\u201C@nanecau: @SaguiSanfona J\\u00E1 mandei para a Sui\\u00E7a e Portugal kkk @MartaWLMT @MelaFernandes obrigado pelo carinho", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:14 +0000", "from_user": "LuisDeStefano", "from_user_id": 233009730, "from_user_id_str": "233009730", "from_user_name": "Luis De Stefano", "geo": null, "id": 148835799180394500, "id_str": "148835799180394497", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1493767745/Foto-Alicante_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1493767745/Foto-Alicante_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @lemondefr: Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/zeOt21vW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:14 +0000", "from_user": "emaateske", "from_user_id": 272480342, "from_user_id_str": "272480342", "from_user_name": "\\u0454\\u043C\\u043C\\u03B1 \\u0442\\u0454\\u0455\\u043A\\u0454", "geo": null, "id": 148835797645275140, "id_str": "148835797645275136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1629586528/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629586528/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Harrysbackpack I don't really know if i am going to portugal, and if we are going im not sure for how long :( but prob 2-3 weeks :S :( xxx", "to_user": "Harrysbackpack", "to_user_id": 284104431, "to_user_id_str": "284104431", "to_user_name": "Johanna Nordgren", "in_reply_to_status_id": 148835358749110270, "in_reply_to_status_id_str": "148835358749110273"}, +{"created_at": "Mon, 19 Dec 2011 18:43:10 +0000", "from_user": "Bomba_Decima", "from_user_id": 156027440, "from_user_id_str": "156027440", "from_user_name": "Bomba Espa\\u00F1a CBS \\u221A", "geo": null, "id": 148835783854407680, "id_str": "148835783854407681", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1104432786/Vs1-003_2_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1104432786/Vs1-003_2_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "#servicioelectrico normalizado en D. Paraguay, Portugal, Marcoleta. . Se sugiere revisar autom\\u00E1ticos de la vivienda. V\\u00EDa @alertachilectra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:43:06 +0000", "from_user": "gonz_blinko", "from_user_id": 93664112, "from_user_id_str": "93664112", "from_user_name": "Gonz Blinko", "geo": null, "id": 148835764812251140, "id_str": "148835764812251138", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1609294206/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609294206/image_normal.jpg", "source": "<a href="http://www.quartzprojects.co.uk" rel="nofollow">The Qube</a>", "text": "RT @ppatel: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/b3YqLx9y", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:47 +0000", "from_user": "marianakalil", "from_user_id": 29741298, "from_user_id_str": "29741298", "from_user_name": "Mariana Kalil", "geo": null, "id": 148835686873694200, "id_str": "148835686873694208", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1570199034/hangover_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1570199034/hangover_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @modismonet: Rihanna \\u00E9 v\\u00EDtima de racismo em Portugal http://t.co/xE0dXC53", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:47 +0000", "from_user": "informatecl", "from_user_id": 22331533, "from_user_id_str": "22331533", "from_user_name": "Inf\\u00F3rmate!", "geo": null, "id": 148835685485387780, "id_str": "148835685485387776", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1386640073/logoinformate_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1386640073/logoinformate_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprueba nuevo desembolso por US$3.780 millones para Portugal http://t.co/AFEJolfq (v\\u00EDa @latercera)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:44 +0000", "from_user": "GustavoSBR", "from_user_id": 120036324, "from_user_id_str": "120036324", "from_user_name": "GustavoSBR", "geo": null, "id": 148835672348827650, "id_str": "148835672348827648", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1383054870/foto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1383054870/foto_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprueba tramo de rescate a Portugal http://t.co/BrfsHfe0 #economia #ecofin", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:43 +0000", "from_user": "CNN_Mexico", "from_user_id": 292097409, "from_user_id_str": "292097409", "from_user_name": "CNN Mexico", "geo": null, "id": 148835671153459200, "id_str": "148835671153459200", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1646602714/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646602714/image_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprueba tramo de rescate a Portugal: El Fondo desembolsar\\u00E1 2,900 mde para el pa\\u00EDs como parte de la ayuda fin... http://t.co/bKlPS24t", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:43 +0000", "from_user": "ventastar21", "from_user_id": 385149344, "from_user_id_str": "385149344", "from_user_name": "VentaSTAR", "geo": null, "id": 148835670109077500, "id_str": "148835670109077504", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1595720992/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1595720992/avatar_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprueba tramo de rescate a Portugal: El Fondo desembolsar\\u00E1 2,900 mde para el pa\\u00EDs como parte ... http://t.co/5qKOrDLD #economia VSTR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:43 +0000", "from_user": "MaOlalde", "from_user_id": 246861940, "from_user_id_str": "246861940", "from_user_name": "Maria Olalde", "geo": null, "id": 148835669148573700, "id_str": "148835669148573696", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1233786426/Maria_Olalde_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1233786426/Maria_Olalde_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprueba tramo de rescate a Portugal: El Fondo desembolsar\\u00E1 2,900 mde para el pa\\u00EDs como parte de la ayuda fin... http://t.co/CT3A0qLt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:43 +0000", "from_user": "Dalayon", "from_user_id": 53179916, "from_user_id_str": "53179916", "from_user_name": "David Alayon", "geo": null, "id": 148835668481683460, "id_str": "148835668481683456", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1149775265/DavidAlayon_close_up_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1149775265/DavidAlayon_close_up_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprueba tramo de rescate a Portugal http://t.co/ScRRnQg9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:42 +0000", "from_user": "TECNOCO", "from_user_id": 54761166, "from_user_id_str": "54761166", "from_user_name": "GrupoTECNOCO", "geo": null, "id": 148835666078347260, "id_str": "148835666078347264", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1455809214/profileimage_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1455809214/profileimage_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "cnnexpansion FMI aprueba tramo de rescate a Portugal: El Fondo desembolsar\\u00E1 2,900 mde para el pa\\u00EDs como parte de... http://t.co/Fbb3E5ev", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:42 +0000", "from_user": "betyfarinha", "from_user_id": 245499942, "from_user_id_str": "245499942", "from_user_name": "Elisabete Farinha", "geo": null, "id": 148835665050734600, "id_str": "148835665050734594", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1636093726/Betyevovo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1636093726/Betyevovo_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "RT @TMNpt: Este Natal tudo \\u00E9 poss\\u00EDvel: juntos, sonh\\u00E1mos mais alto e torn\\u00E1mos Portugal num pa\\u00EDs mais brilhante!... http://t.co/RnpFsmhr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:42 +0000", "from_user": "CACA_LIQUIDE", "from_user_id": 327349630, "from_user_id_str": "327349630", "from_user_name": "Satan or Jesus.", "geo": null, "id": 148835664966844400, "id_str": "148835664966844418", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693115453/grge_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693115453/grge_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@_Lolitchi maillot du Portugal sur ton ic\\u00F4ne non? :)", "to_user": "_Lolitchi", "to_user_id": 275136018, "to_user_id_str": "275136018", "to_user_name": "I'm born this way @."}, +{"created_at": "Mon, 19 Dec 2011 18:42:36 +0000", "from_user": "mouldstar", "from_user_id": 308130839, "from_user_id_str": "308130839", "from_user_name": "real-or-illusion.com", "geo": null, "id": 148835639767474180, "id_str": "148835639767474176", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1422437009/roi.old_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1422437009/roi.old_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "RT @noXforU: IWF gibt 2,9 Milliarden Euro f\\u00FCr #Portugal frei http://t.co/aRMSJ957", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:35 +0000", "from_user": "ilhamchamp", "from_user_id": 158660285, "from_user_id_str": "158660285", "from_user_name": "ilham anshori", "geo": null, "id": 148835636906958850, "id_str": "148835636906958848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1657603460/1310375389796_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657603460/1310375389796_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Portugal vs England kick off", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:34 +0000", "from_user": "dftelegraaf", "from_user_id": 128580474, "from_user_id_str": "128580474", "from_user_name": "financiele telegraaf", "geo": null, "id": 148835629864730620, "id_str": "148835629864730624", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF keurt lening aan Portugal goed: Het Internationaal Monetair Fonds (IMF) is maandag akkoord gegaan met een ni... http://t.co/fPVNdrFK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:29 +0000", "from_user": "RubenvdGun", "from_user_id": 146096502, "from_user_id_str": "146096502", "from_user_name": "RubenvdGun", "geo": null, "id": 148835610029862900, "id_str": "148835610029862913", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1533045357/Rhodos175_2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1533045357/Rhodos175_2__normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @djfxtrader: Greek FinMin: #Greece, #Ireland, #Portugal Excluded From IMF Boost [Dow Jones] #imf #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:27 +0000", "from_user": "RenatoGianuca", "from_user_id": 92821413, "from_user_id_str": "92821413", "from_user_name": "Renato Gianuca ", "geo": null, "id": 148835600739471360, "id_str": "148835600739471360", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1296386957/photo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1296386957/photo_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @lemondefr: Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/zeOt21vW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:25 +0000", "from_user": "NielsvRosmalen", "from_user_id": 326205453, "from_user_id_str": "326205453", "from_user_name": "Niels van Rosmalen", "geo": null, "id": 148835594489962500, "id_str": "148835594489962497", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1418971829/niels_strafbal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1418971829/niels_strafbal_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "met fsx boven portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:24 +0000", "from_user": "zeitimbild", "from_user_id": 80647957, "from_user_id_str": "80647957", "from_user_name": "Raphael", "geo": null, "id": 148835589049950200, "id_str": "148835589049950208", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1291773819/1_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1291773819/1_bigger_normal.jpg", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "RT @noXforU: IWF gibt 2,9 Milliarden Euro f\\u00FCr #Portugal frei http://t.co/aRMSJ957", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:23 +0000", "from_user": "baak68", "from_user_id": 226862991, "from_user_id_str": "226862991", "from_user_name": "Ren\\u00E9 Dijkstra", "geo": +{"coordinates": [36.0163,-5.6093], "type": "Point"}, "id": 148835587229626370, "id_str": "148835587229626368", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1569029174/317434_227152244008687_100001417381250_654374_1344105624_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1569029174/317434_227152244008687_100001417381250_654374_1344105624_n_normal.jpg", "source": "<a href="http://www.tweetcaster.com" rel="nofollow">TweetCaster for Android</a>", "text": "Zo dat was gibraltar en marocco nu langs portugal op naar marin en dan vliegen naar huis en met de kerst thuis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:20 +0000", "from_user": "invertia_minuto", "from_user_id": 263170241, "from_user_id_str": "263170241", "from_user_name": "Invertia al minuto", "geo": null, "id": 148835573191282700, "id_str": "148835573191282688", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1266851242/Sin-t_tulo-5_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1266851242/Sin-t_tulo-5_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI autoriza segundo tramo de ayuda a Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:12 +0000", "from_user": "billionaireweb", "from_user_id": 34803949, "from_user_id_str": "34803949", "from_user_name": "CasinoBillionaire UK", "geo": null, "id": 148835541541077000, "id_str": "148835541541076992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1531471255/bet365-live-blackjack_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1531471255/bet365-live-blackjack_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Working hard to launch a new version of Casino Billionaire portuguese. Gamblers in #Portugal will enjoy it #Casinos #OnlineCasino #portugues", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:12 +0000", "from_user": "djfxtrader", "from_user_id": 327484803, "from_user_id_str": "327484803", "from_user_name": "DJ FX Trader", "geo": null, "id": 148835537518731260, "id_str": "148835537518731267", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1430672214/djfxthumbnail_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1430672214/djfxthumbnail_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Greek FinMin: #Greece, #Ireland, #Portugal Excluded From IMF Boost [Dow Jones] #imf #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:09 +0000", "from_user": "k_nakul_d", "from_user_id": 141488000, "from_user_id_str": "141488000", "from_user_name": "NAKUL Kesariya", "geo": null, "id": 148835527746011140, "id_str": "148835527746011138", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1538263886/320836_2378936793538_1254186860_32940043_7386735_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1538263886/320836_2378936793538_1254186860_32940043_7386735_n_normal.jpg", "source": "<a href="http://www.nimbuzz.com" rel="nofollow">Nimbuzz Mobile</a>", "text": "#IMF releases 2.9 bn euros to Portugal.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:03 +0000", "from_user": "keithcallsenfir", "from_user_id": 314899445, "from_user_id_str": "314899445", "from_user_name": "Keith Callsen", "geo": null, "id": 148835502722777100, "id_str": "148835502722777089", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1390592038/1307752262_implementation_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1390592038/1307752262_implementation_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Qatar: 2011 Article IV Consultation Concluding Statement of the IMF Mission - Einnews Portugal http://t.co/qpFMjXlL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:02 +0000", "from_user": "JuanCarlos_RDS", "from_user_id": 245942171, "from_user_id_str": "245942171", "from_user_name": "Juan Carlos RDS \\u2714", "geo": null, "id": 148835497001754620, "id_str": "148835497001754624", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684819587/nFYs3p4M_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684819587/nFYs3p4M_normal", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @portugalnews: Rihanna: ovacianada en Espa\\u00F1a y pifiada en Portugal (Ver Video) - http://t.co/WaFGfiEQ http://t.co/osZMQCZr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:42:02 +0000", "from_user": "deroberto", "from_user_id": 15226042, "from_user_id_str": "15226042", "from_user_name": "deroberto", "geo": null, "id": 148835496037064700, "id_str": "148835496037064704", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1220873726/face2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1220873726/face2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @alertachilectra: #servicioelectrico normalizado en D. Paraguay, Portugal, Marcoleta, Santiago . Se sugiere revisar autom\\u00E1ticos de la vivienda. #Chilectra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:57 +0000", "from_user": "TMNpt", "from_user_id": 33513421, "from_user_id_str": "33513421", "from_user_name": "tmn", "geo": null, "id": 148835477137534980, "id_str": "148835477137534978", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1072528228/tmn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1072528228/tmn_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Este Natal tudo \\u00E9 poss\\u00EDvel: juntos, sonh\\u00E1mos mais alto e torn\\u00E1mos Portugal num pa\\u00EDs mais brilhante!... http://t.co/RnpFsmhr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:52 +0000", "from_user": "BeckyLorien", "from_user_id": 417326342, "from_user_id_str": "417326342", "from_user_name": "Becky Barton", "geo": null, "id": 148835454043697150, "id_str": "148835454043697153", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1649039130/me2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649039130/me2_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "so glad to be in Portugal, time to hit the bar #partytime", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:36 +0000", "from_user": "WeLive2LoveDASH", "from_user_id": 224298984, "from_user_id_str": "224298984", "from_user_name": "Fayyadh Kardashian", "geo": null, "id": 148835388914536450, "id_str": "148835388914536448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698390356/tumblr_lwcl8z9zrD1qljipmo1_500qs_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698390356/tumblr_lwcl8z9zrD1qljipmo1_500qs_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @DASHGlobal: @KimKardashian is almost at 12,000,000 followers on Twitter. That's more than the population of Greece, Portugal and Sweden! #DASHGlobal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:34 +0000", "from_user": "SFMaddy", "from_user_id": 289152379, "from_user_id_str": "289152379", "from_user_name": "Alicia Madsen", "geo": null, "id": 148835379041144830, "id_str": "148835379041144832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1367222635/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1367222635/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:32 +0000", "from_user": "portugalnews", "from_user_id": 18995665, "from_user_id_str": "18995665", "from_user_name": "PortugalNews", "geo": null, "id": 148835371176828930, "id_str": "148835371176828928", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/71160016/portugal-flag_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/71160016/portugal-flag_1__normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Rihanna: ovacianada en Espa\\u00F1a y pifiada en Portugal (Ver Video) - http://t.co/WaFGfiEQ http://t.co/osZMQCZr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:32 +0000", "from_user": "portugalnews", "from_user_id": 18995665, "from_user_id_str": "18995665", "from_user_name": "PortugalNews", "geo": null, "id": 148835370006609920, "id_str": "148835370006609922", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/71160016/portugal-flag_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/71160016/portugal-flag_1__normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Portugal refuerza la seguridad en la autopista saboteada por los ... - http://t.co/Y78k58Qs http://t.co/iPOBQoM4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:31 +0000", "from_user": "portugalnews", "from_user_id": 18995665, "from_user_id_str": "18995665", "from_user_name": "PortugalNews", "geo": null, "id": 148835367221596160, "id_str": "148835367221596160", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/71160016/portugal-flag_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/71160016/portugal-flag_1__normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Tuc Tuc, primera tienda en Portugal - Distribuci\\u00F3n Actualidad http://t.co/qPuCRPPO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:24 +0000", "from_user": "SilviaJB_pt", "from_user_id": 188001660, "from_user_id_str": "188001660", "from_user_name": "Silvia Alves", "geo": null, "id": 148835339228823550, "id_str": "148835339228823552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696821919/378611_271720259543701_197274640321597_629466_75201724_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696821919/378611_271720259543701_197274640321597_629466_75201724_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@justinbieber Justin when you come to Portugal?? i hope that you come in 2012! \\u2665 PORTUGUESE BELIEBERS LOVE YOU \\u2665", "to_user": "justinbieber", "to_user_id": 27260086, "to_user_id_str": "27260086", "to_user_name": "Justin Bieber"}, +{"created_at": "Mon, 19 Dec 2011 18:41:24 +0000", "from_user": "EuropeanUnews", "from_user_id": 88048785, "from_user_id_str": "88048785", "from_user_name": "EU news", "geo": null, "id": 148835338217996300, "id_str": "148835338217996288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/513492429/EU_Flag_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/513492429/EU_Flag_normal.jpg", "source": "<a href="http://www.visibli.com" rel="nofollow">Visibli</a>", "text": "EU watchdog raids Brussels Airlines and TAP Portugal - Reuters http://t.co/aWNBNX7j", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:24 +0000", "from_user": "zahirabrito", "from_user_id": 244522068, "from_user_id_str": "244522068", "from_user_name": "zahira brito", "geo": null, "id": 148835337127460860, "id_str": "148835337127460864", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1672506826/OMGGG_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672506826/OMGGG_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "men nos tenemos que reunir =( @vvnascimiento @_Verosimil @Claudiapires98 @alwaysignorada .. y estefany esta en portugal as\\u00ED que chao .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:17 +0000", "from_user": "albertoxic", "from_user_id": 33084611, "from_user_id_str": "33084611", "from_user_name": "luxembourg news", "geo": null, "id": 148835308539101200, "id_str": "148835308539101184", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1656548053/LUXEMBOURG_RT_NEWS_ANGEL_SQUARE_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656548053/LUXEMBOURG_RT_NEWS_ANGEL_SQUARE_normal.PNG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "http://t.co/jHf4rmMh RT IWF 2,9 Milliarden Euro f\\u00FCr Portugal - Portugal erh\\u00E4lt eine Hilfszahlung in H\\u00F6he von 2,9 Milliar......", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:17 +0000", "from_user": "duLuxembourg", "from_user_id": 48142680, "from_user_id_str": "48142680", "from_user_name": "ANNUAIRE LUXEMBOURG", "geo": null, "id": 148835307607953400, "id_str": "148835307607953408", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/267920041/wilhelm_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/267920041/wilhelm_2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "http://t.co/NbUF3E6L RT IWF 2,9 Milliarden Euro f\\u00FCr Portugal - Portugal erh\\u00E4lt eine Hilfszahlung in H\\u00F6he von 2,9 Milliar......", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:17 +0000", "from_user": "luxembourg_news", "from_user_id": 49312521, "from_user_id_str": "49312521", "from_user_name": "news luxembourg ", "geo": null, "id": 148835307595382800, "id_str": "148835307595382784", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1131189645/susi_canape_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1131189645/susi_canape_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "http://t.co/eNBpc2Z7 RT IWF 2,9 Milliarden Euro f\\u00FCr Portugal - Portugal erh\\u00E4lt eine Hilfszahlung in H\\u00F6he von 2,9 Milliar......", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:17 +0000", "from_user": "news_luxembourg", "from_user_id": 53668279, "from_user_id_str": "53668279", "from_user_name": "news luxembourg", "geo": null, "id": 148835307297570800, "id_str": "148835307297570816", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/296899214/gelle_fra_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/296899214/gelle_fra_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "http://t.co/vlmSNdp5 RT IWF 2,9 Milliarden Euro f\\u00FCr Portugal - Portugal erh\\u00E4lt eine Hilfszahlung in H\\u00F6he von 2,9 Milliar......", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:17 +0000", "from_user": "pressluxembourg", "from_user_id": 55867205, "from_user_id_str": "55867205", "from_user_name": "presse luxembourg", "geo": null, "id": 148835307188527100, "id_str": "148835307188527104", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/308601574/wilhelm_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/308601574/wilhelm_2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "http://t.co/Hg02OG4Q RT IWF 2,9 Milliarden Euro f\\u00FCr Portugal - Portugal erh\\u00E4lt eine Hilfszahlung in H\\u00F6he von 2,9 Milliar......", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:16 +0000", "from_user": "rtluxembourg", "from_user_id": 192650811, "from_user_id_str": "192650811", "from_user_name": "luxembourg RTnews", "geo": null, "id": 148835305204613120, "id_str": "148835305204613121", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "http://t.co/IqJiOWaF RT IWF 2,9 Milliarden Euro f\\u00FCr Portugal - Portugal erh\\u00E4lt eine Hilfszahlung in H\\u00F6he von 2,9 Milliar......", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:16 +0000", "from_user": "luxembourgnews", "from_user_id": 44872369, "from_user_id_str": "44872369", "from_user_name": "albertoxic luxemburG", "geo": null, "id": 148835305133309950, "id_str": "148835305133309952", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/250832013/luxembourg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/250832013/luxembourg_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "http://t.co/gf6xCxGe RT IWF 2,9 Milliarden Euro f\\u00FCr Portugal - Portugal erh\\u00E4lt eine Hilfszahlung in H\\u00F6he von 2,9 Milliar......", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:16 +0000", "from_user": "RTlux", "from_user_id": 243875860, "from_user_id_str": "243875860", "from_user_name": "albertoxic luxemburg", "geo": null, "id": 148835304973938700, "id_str": "148835304973938690", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1466278660/LUXEMBOURG_RT_NEWS_ANGEL_SQUARE_YELLOW_SQUARE_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1466278660/LUXEMBOURG_RT_NEWS_ANGEL_SQUARE_YELLOW_SQUARE_normal.PNG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "http://t.co/I7qorDYh RT IWF 2,9 Milliarden Euro f\\u00FCr Portugal - Portugal erh\\u00E4lt eine Hilfszahlung in H\\u00F6he von 2,9 Milliar......", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:16 +0000", "from_user": "RTluxemburg", "from_user_id": 243882738, "from_user_id_str": "243882738", "from_user_name": "luxembourg news", "geo": null, "id": 148835304185405440, "id_str": "148835304185405440", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "http://t.co/CfkYZDOM RT IWF 2,9 Milliarden Euro f\\u00FCr Portugal - Portugal erh\\u00E4lt eine Hilfszahlung in H\\u00F6he von 2,9 Milliar......", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:15 +0000", "from_user": "Frieden75", "from_user_id": 61328078, "from_user_id_str": "61328078", "from_user_name": "Carlos Restrepo H.", "geo": null, "id": 148835300884484100, "id_str": "148835300884484096", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1683351254/Carlos_en_Guatavita_32A_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683351254/Carlos_en_Guatavita_32A_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@CarlosIMedina20 Te\\u00F3filo Gutierrez est\\u00E1 listo para llegar a Porto de Portugal, hay acuerdo para reemplazar a Clever Datos pulso del futbol.", "to_user": "CarlosIMedina20", "to_user_id": 142485140, "to_user_id_str": "142485140", "to_user_name": "Carlos Ivan Medina"}, +{"created_at": "Mon, 19 Dec 2011 18:41:14 +0000", "from_user": "Jacksonista", "from_user_id": 51018366, "from_user_id_str": "51018366", "from_user_name": "Mademoiselle Andret", "geo": null, "id": 148835296396574720, "id_str": "148835296396574720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1498315582/gif_wink_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1498315582/gif_wink_normal.gif", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@JustMeBeingBad oh ok :) Been in Lisbon once only..When going to Portugal we usually were around Coimbra or Figueira da Foz", "to_user": "JustMeBeingBad", "to_user_id": 289344020, "to_user_id_str": "289344020", "to_user_name": "Rafaela ", "in_reply_to_status_id": 148834002873225200, "in_reply_to_status_id_str": "148834002873225217"}, +{"created_at": "Mon, 19 Dec 2011 18:41:10 +0000", "from_user": "1DcomBR", "from_user_id": 254610699, "from_user_id_str": "254610699", "from_user_name": "One Direction Brasil", "geo": null, "id": 148835280516956160, "id_str": "148835280516956160", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702484749/Up_All_Night__8__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702484749/Up_All_Night__8__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "E obrigada a todas visitantes de Portugal no site! :D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:09 +0000", "from_user": "KPGanesh", "from_user_id": 338366234, "from_user_id_str": "338366234", "from_user_name": "K P Ganesh", "geo": null, "id": 148835273747341300, "id_str": "148835273747341312", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686652773/scan0015_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686652773/scan0015_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @EconomicTimes: IMF releases 2.9 bn euros to Portugal http://t.co/rZvD04Fx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:08 +0000", "from_user": "Bigdsoccer", "from_user_id": 19611487, "from_user_id_str": "19611487", "from_user_name": "Daniel Robertson", "geo": null, "id": 148835269754363900, "id_str": "148835269754363904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1113987852/Dallas_Skyline_outline1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1113987852/Dallas_Skyline_outline1_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Ruben Luna will be heading to Portugal to practice with Sporting Lisbon in January. Very cool opportunity for the young Dallas forward.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:41:08 +0000", "from_user": "rih_navy_always", "from_user_id": 380436804, "from_user_id_str": "380436804", "from_user_name": "marianavy_for_life", "geo": null, "id": 148835269515280400, "id_str": "148835269515280384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664571881/fashion-girl-kiss-pink-rihanna-Favim.com-57109_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664571881/fashion-girl-kiss-pink-rihanna-Favim.com-57109_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@NoellaAlstrom come again to Portugal!!! Please!!!!!", "to_user": "NoellaAlstrom", "to_user_id": 75672808, "to_user_id_str": "75672808", "to_user_name": "Noe\\u2113\\u2113\\u03B1A\\u2113strom"}, +{"created_at": "Mon, 19 Dec 2011 18:40:59 +0000", "from_user": "rvbelzen", "from_user_id": 35189040, "from_user_id_str": "35189040", "from_user_name": "Rene van Belzen", "geo": null, "id": 148835231615561730, "id_str": "148835231615561728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1661621810/Eewald_twitter_avatar_20111128_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661621810/Eewald_twitter_avatar_20111128_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:58 +0000", "from_user": "TAUtuguita", "from_user_id": 168163030, "from_user_id_str": "168163030", "from_user_name": "Tauanny", "geo": null, "id": 148835229203832830, "id_str": "148835229203832832", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677634881/111118_200148_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677634881/111118_200148_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/uPfLbjSQ caramba!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:55 +0000", "from_user": "rih_navy_always", "from_user_id": 380436804, "from_user_id_str": "380436804", "from_user_name": "marianavy_for_life", "geo": null, "id": 148835214821568500, "id_str": "148835214821568513", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664571881/fashion-girl-kiss-pink-rihanna-Favim.com-57109_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664571881/fashion-girl-kiss-pink-rihanna-Favim.com-57109_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@NoellaAlstrom come again to Portugal!!! Please!!!", "to_user": "NoellaAlstrom", "to_user_id": 75672808, "to_user_id_str": "75672808", "to_user_name": "Noe\\u2113\\u2113\\u03B1A\\u2113strom"}, +{"created_at": "Mon, 19 Dec 2011 18:40:50 +0000", "from_user": "WellingtonZamb", "from_user_id": 441052425, "from_user_id_str": "441052425", "from_user_name": "Wellington Zambianco", "geo": null, "id": 148835195695542270, "id_str": "148835195695542272", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702567831/ln_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702567831/ln_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Em seu twitter, a cantora Rihanna se revolta com preconceito \\nsofrido em hotel na cidade de Lisboa, Portugal.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:50 +0000", "from_user": "abdawwad", "from_user_id": 245537163, "from_user_id_str": "245537163", "from_user_name": "Abdelrahman Alawwad", "geo": null, "id": 148835193740996600, "id_str": "148835193740996608", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1413159687/101_4989_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1413159687/101_4989_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @EconomicTimes: IMF releases 2.9 bn euros to Portugal http://t.co/rZvD04Fx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:47 +0000", "from_user": "RantThird", "from_user_id": 269323299, "from_user_id_str": "269323299", "from_user_name": "Rant Macrial Third", "geo": null, "id": 148835182496063500, "id_str": "148835182496063488", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698237496/Rant_Third_Office_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698237496/Rant_Third_Office_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @ReutersEspana: El FMI aprueba un tramo de cr\\u00E9dito de 2.900 millones a Portugal http://t.co/QzAE8NPd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:40 +0000", "from_user": "JohnKicklighter", "from_user_id": 22973017, "from_user_id_str": "22973017", "from_user_name": "John Kicklighter", "geo": null, "id": 148835152812978180, "id_str": "148835152812978176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/91303174/pic_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/91303174/pic_normal.gif", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "That goes without saying...: Greek Fin Min says Greece, Portugal and Ireland are not participating in the EU's plans to lend to the IMF.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:39 +0000", "from_user": "Kardashlicious", "from_user_id": 355485667, "from_user_id_str": "355485667", "from_user_name": "\\u1D00\\u1D0D\\u1D07\\u029F\\u026A\\u1D07 \\u203A \\u1D05\\u1D00s\\u029C\\u1D05\\u1D0F\\u029F\\u029Fs \\u0416", "geo": null, "id": 148835150585790460, "id_str": "148835150585790464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1585660321/icon1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585660321/icon1_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @DASHGlobal: @KimKardashian is almost at 12,000,000 followers on Twitter. That's more than the population of Greece, Portugal and Sweden! #DASHGlobal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:36 +0000", "from_user": "ToutelaPresse", "from_user_id": 36345751, "from_user_id_str": "36345751", "from_user_name": "Toute la Presse", "geo": null, "id": 148835136908177400, "id_str": "148835136908177409", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/941531089/toutelapresse1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/941531089/toutelapresse1_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/FjfyVsr6 LeMonde", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:30 +0000", "from_user": "MrSkyGuy", "from_user_id": 30513556, "from_user_id_str": "30513556", "from_user_name": "Mark Russell", "geo": null, "id": 148835110794428400, "id_str": "148835110794428416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1640885292/mrskyguy2_blue_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640885292/mrskyguy2_blue_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "@FlyingBrussels & TAP_Portugal #airlines RAIDED by @European_Union over poss. collusion! That's a big no-no. http://t.co/T1khKoBi #Aviation", "to_user": "FlyingBrussels", "to_user_id": 95252395, "to_user_id_str": "95252395", "to_user_name": "Brussels Airlines"}, +{"created_at": "Mon, 19 Dec 2011 18:40:25 +0000", "from_user": "Bolchile", "from_user_id": 117426195, "from_user_id_str": "117426195", "from_user_name": "Bolsa Electr\\u00F3nica", "geo": null, "id": 148835091676798980, "id_str": "148835091676798976", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1553470205/Logo_BEC_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553470205/Logo_BEC_normal.PNG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "FMI aprueba nuevo desembolso por US$3.780 millones para Portugal http://t.co/t4Gi5Dbe #BolsadeChile", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:24 +0000", "from_user": "Amo_Vc_Pe_Lanza", "from_user_id": 178358311, "from_user_id_str": "178358311", "from_user_name": "AMO VOC\\u00CA PE LANZA", "geo": null, "id": 148835088006791170, "id_str": "148835088006791168", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1589726379/224314_199526260089003_179726475402315_451295_190351_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1589726379/224314_199526260089003_179726475402315_451295_190351_n_normal.jpg", "source": "<a href="http://twitpic.com" rel="nofollow">Twitpic</a>", "text": "http://t.co/MtqqGXYt - o DVD antes de vir para Portugal primeiro teve de ir \\u00E0 Holanda, viajou muito tadinho", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:24 +0000", "from_user": "economiaportuga", "from_user_id": 91623867, "from_user_id_str": "91623867", "from_user_name": "Economia Portugal", "geo": null, "id": 148835085242744830, "id_str": "148835085242744832", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/537336636/economia_portugal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/537336636/economia_portugal_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprovou terceira tranche do empr\\u00E9stimo a Portugal: O Fundo Monet\\u00E1rio Internacional aprovou hoje a terceira t... http://t.co/X00P1CCa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:22 +0000", "from_user": "MonicaEspinoM", "from_user_id": 110479483, "from_user_id_str": "110479483", "from_user_name": "Monica", "geo": null, "id": 148835078057893900, "id_str": "148835078057893888", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1610939304/image_8__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610939304/image_8__normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Portugal \\u25BA Lisboa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:20 +0000", "from_user": "emaateske", "from_user_id": 272480342, "from_user_id_str": "272480342", "from_user_name": "\\u0454\\u043C\\u043C\\u03B1 \\u0442\\u0454\\u0455\\u043A\\u0454", "geo": null, "id": 148835068872368130, "id_str": "148835068872368128", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1629586528/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1629586528/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Harrysbackpack Yes i am, if im not in Portugal :( xxx", "to_user": "Harrysbackpack", "to_user_id": 284104431, "to_user_id_str": "284104431", "to_user_name": "Johanna Nordgren", "in_reply_to_status_id": 148834617405882370, "in_reply_to_status_id_str": "148834617405882368"}, +{"created_at": "Mon, 19 Dec 2011 18:40:19 +0000", "from_user": "azyeoman", "from_user_id": 109425543, "from_user_id_str": "109425543", "from_user_name": "John Liffiton", "geo": null, "id": 148835066934599680, "id_str": "148835066934599680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/675543151/liffiton_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/675543151/liffiton_normal.jpg", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:18 +0000", "from_user": "akemoi", "from_user_id": 14215299, "from_user_id_str": "14215299", "from_user_name": "Denis Fruneau", "geo": null, "id": 148835061414891520, "id_str": "148835061414891520", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/52060586/vitcontlemur2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/52060586/vitcontlemur2_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#economie Le FMI approuve un versement de 2,9 milliards d'euros au Portugal (LCI) http://t.co/A6aZkd7b", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:18 +0000", "from_user": "Ake_Econo", "from_user_id": 185612305, "from_user_id_str": "185612305", "from_user_name": "Denis Fruneau", "geo": null, "id": 148835061230346240, "id_str": "148835061230346240", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1124834854/vitcontlemur2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1124834854/vitcontlemur2_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#economie Le FMI approuve un versement de 2,9 milliards d'euros au Portugal (LCI) http://t.co/qfwtCZM2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:17 +0000", "from_user": "headlinesnl", "from_user_id": 33272796, "from_user_id_str": "33272796", "from_user_name": "Nieuws in Nederland", "geo": null, "id": 148835058264973300, "id_str": "148835058264973312", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1193321406/nieuws_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1193321406/nieuws_logo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF keurt lening aan Portugal goed: Het Internationaal Monetair Fonds (IMF) is maandag akkoord gegaan met een ni... http://t.co/FmRZ0Yt2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:14 +0000", "from_user": "ForSaleiAlgarve", "from_user_id": 386105591, "from_user_id_str": "386105591", "from_user_name": "For Sale in Algarve", "geo": null, "id": 148835046307012600, "id_str": "148835046307012609", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1575941712/For_Sale_In_Algarve_Twitter_Logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575941712/For_Sale_In_Algarve_Twitter_Logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Villa for sale in Lagos Cama da Vaca | 4 bedrooms ~ For-Sale-in-Algarve ~\\n#Algarve #Portugal - http://t.co/LaeeH3EA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:13 +0000", "from_user": "1casaecohomes", "from_user_id": 17333475, "from_user_id_str": "17333475", "from_user_name": "Cristina Sanchez", "geo": null, "id": 148835040283983870, "id_str": "148835040283983872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1602663768/1Casa_Twitter_Icon_L_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1602663768/1Casa_Twitter_Icon_L_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Global viewr Featured Agent ~ Sundream Homes ~ #Portugal Amelia\\nHoogkamer; Vastgoed te koop in #Portugal - http://t.co/oGRbsLsW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:08 +0000", "from_user": "mitsurukikkawa", "from_user_id": 99482164, "from_user_id_str": "99482164", "from_user_name": "Mitsuru KIKKAWA", "geo": null, "id": 148835017672499200, "id_str": "148835017672499202", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/593246184/mitsurukikkawa-3_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/593246184/mitsurukikkawa-3_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Greece: Nations receiving aid not in IMF lending plan: So the rest of you lot better pony up more\\u2026 Portugal Irel... http://t.co/NdKHSgTZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:06 +0000", "from_user": "CookiesForAri", "from_user_id": 431040774, "from_user_id_str": "431040774", "from_user_name": "Mariana Grande", "geo": null, "id": 148835011905331200, "id_str": "148835011905331200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1701857523/tumblr_lwat75kCg11qi0pfdo1_250_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701857523/tumblr_lwat75kCg11qi0pfdo1_250_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ArianaGrande Ariana I love you so much , when you come to Portugal ??? Please answer me :D Love you and please follow me #GrandeLove <33", "to_user": "ArianaGrande", "to_user_id": 34507480, "to_user_id_str": "34507480", "to_user_name": "Ariana Grande", "in_reply_to_status_id": 148833838372626430, "in_reply_to_status_id_str": "148833838372626432"}, +{"created_at": "Mon, 19 Dec 2011 18:40:06 +0000", "from_user": "SocMeDotMe", "from_user_id": 371995419, "from_user_id_str": "371995419", "from_user_name": "Karl Lingenfelder", "geo": null, "id": 148835009044824060, "id_str": "148835009044824066", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1546120426/SocMe_Twitter_Icon_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546120426/SocMe_Twitter_Icon_2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Villa for sale in Lagos Cama da Vaca | 4 bedrooms ~ For-Sale-in-Algarve ~\\n#Algarve #Portugal - http://t.co/gVLP4Lw3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:40:04 +0000", "from_user": "talaricodeia", "from_user_id": 33050474, "from_user_id_str": "33050474", "from_user_name": "Andrea Talarico", "geo": +{"coordinates": [-21.2001,-47.7992], "type": "Point"}, "id": 148835002317160450, "id_str": "148835002317160448", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1530485134/29226_130751636940002_100000154984089_364279_3318029_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1530485134/29226_130751636940002_100000154984089_364279_3318029_n_normal.jpg", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "Tiver amiga marta e eu vou cozinhar hahuhaa (@ Cenour\\u00E3o - Portugal) [pic]: http://t.co/dto2ES8z", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:40:02 +0000", "from_user": "mighty_sparrow", "from_user_id": 49550736, "from_user_id_str": "49550736", "from_user_name": "Thomas Sparrow", "geo": null, "id": 148834992968048640, "id_str": "148834992968048640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1508805324/DSC00670_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1508805324/DSC00670_2_normal.jpg", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:57 +0000", "from_user": "GemmaBolsa", "from_user_id": 193603520, "from_user_id_str": "193603520", "from_user_name": "Gemma Arenas ", "geo": null, "id": 148834973602942980, "id_str": "148834973602942976", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1564046660/FOTO_PERFIL3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1564046660/FOTO_PERFIL3_normal.jpg", "source": "<a href="http://tweetmeme.com" rel="nofollow">TweetMeme</a>", "text": "El FMI autoriza el desembolso de 2.900 millones del rescate de Portugal - elEconomista.es http://t.co/NTKLqNUZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:52 +0000", "from_user": "ecoempresa1", "from_user_id": 415491925, "from_user_id_str": "415491925", "from_user_name": "ecoempresa", "geo": null, "id": 148834951524126720, "id_str": "148834951524126720", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1645092638/Dibujo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645092638/Dibujo_normal.JPG", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "FMI autoriza segundo tramo de ayuda a Portugal Ecoempresa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:51 +0000", "from_user": "InfoPriv", "from_user_id": 57702464, "from_user_id_str": "57702464", "from_user_name": "InfoPrivilegiada \\u221A", "geo": null, "id": 148834948143517700, "id_str": "148834948143517696", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/354288460/informa__o_privilegiada_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/354288460/informa__o_privilegiada_logo_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Ultimas - Anne Sinclair \\u00E9 a francesa que mais marcou 2011 - Jornal de Neg\\u00F3cios - Portugal\\u2026 http://t.co/85oKHqAc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:50 +0000", "from_user": "KaulSunil", "from_user_id": 92560345, "from_user_id_str": "92560345", "from_user_name": "Sunil Kaul", "geo": null, "id": 148834943127130100, "id_str": "148834943127130112", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1079919151/27341_1021064901_5645_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1079919151/27341_1021064901_5645_q_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @EconomicTimes: IMF releases 2.9 bn euros to Portugal http://t.co/rZvD04Fx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:47 +0000", "from_user": "guaiba720", "from_user_id": 151984352, "from_user_id_str": "151984352", "from_user_name": "R\\u00E1dio Gua\\u00EDba", "geo": null, "id": 148834929302708220, "id_str": "148834929302708224", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/968019128/logo_guaiba_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/968019128/logo_guaiba_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera ? 2,9 bilh\\u00F5es para Portugal: Fundo fez segunda avalia\\u00E7\\u00E3o formal sobre situa\\u00E7\\u00E3o dos programas de auste... http://t.co/TOxxtBG7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:44 +0000", "from_user": "MIx3BI", "from_user_id": 254144796, "from_user_id_str": "254144796", "from_user_name": "ELEVATEd Miri :)", "geo": null, "id": 148834918846312450, "id_str": "148834918846312449", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698647916/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698647916/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@GermanMaslower hahaha was machst du denn in portugal ;)?", "to_user": "GermanMaslower", "to_user_id": 337086445, "to_user_id_str": "337086445", "to_user_name": "James' Covergirl \\u2665", "in_reply_to_status_id": 148834579959132160, "in_reply_to_status_id_str": "148834579959132160"}, +{"created_at": "Mon, 19 Dec 2011 18:39:43 +0000", "from_user": "WildcatTrader", "from_user_id": 263440231, "from_user_id_str": "263440231", "from_user_name": "Chad Gassaway", "geo": null, "id": 148834914333241340, "id_str": "148834914333241344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1352185218/n12911465_32340118_1079_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1352185218/n12911465_32340118_1079_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Greece and Portugal are not in the IMF funding plan.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:41 +0000", "from_user": "ReutersEspana", "from_user_id": 330378776, "from_user_id_str": "330378776", "from_user_name": "Reuters Espa\\u00F1a", "geo": null, "id": 148834906875756540, "id_str": "148834906875756544", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1429151326/reuters_twitter_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1429151326/reuters_twitter_avatar_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "El FMI aprueba un tramo de cr\\u00E9dito de 2.900 millones a Portugal http://t.co/QzAE8NPd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:33 +0000", "from_user": "punchagan", "from_user_id": 282091940, "from_user_id_str": "282091940", "from_user_name": "punchagan", "geo": null, "id": 148834871215800320, "id_str": "148834871215800320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1517112715/profile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517112715/profile_normal.png", "source": "<a href="http://bufferapp.com" rel="nofollow">Buffer</a>", "text": "RT @rasagy: All you goans! Happy Goa Liberation Day! 50th anniversary of the end of Portugal's colonial domination! #Goa <3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:29 +0000", "from_user": "alertachilectra", "from_user_id": 348090653, "from_user_id_str": "348090653", "from_user_name": "Chilectra S.A.", "geo": null, "id": 148834857412341760, "id_str": "148834857412341761", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1534268209/AVATAR_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534268209/AVATAR_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#servicioelectrico normalizado en D. Paraguay, Portugal, Marcoleta, Santiago . Se sugiere revisar autom\\u00E1ticos de la vivienda. #Chilectra", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:25 +0000", "from_user": "racernic", "from_user_id": 44695601, "from_user_id_str": "44695601", "from_user_name": "Nic", "geo": null, "id": 148834839485890560, "id_str": "148834839485890560", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1195953995/nic__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1195953995/nic__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/eDdwEHP1 #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:24 +0000", "from_user": "2reArc4iPad", "from_user_id": 218622705, "from_user_id_str": "218622705", "from_user_name": "Arkitekt Nyheder", "geo": null, "id": 148834836486963200, "id_str": "148834836486963200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Social Communications Tertiary School http://t.co/ouWWD8uy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:18 +0000", "from_user": "200ParkCapital", "from_user_id": 309212908, "from_user_id_str": "309212908", "from_user_name": "200 Park Capital", "geo": null, "id": 148834810935250940, "id_str": "148834810935250944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Greece says Ireland, Portugal, and Greece not in EU-IMF lending plan....so just Italy and Spain then?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:15 +0000", "from_user": "ZaniamAddiction", "from_user_id": 344318804, "from_user_id_str": "344318804", "from_user_name": "Debby, Bea & Pathy*", "geo": null, "id": 148834797349912580, "id_str": "148834797349912576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1505750150/247986213_normal_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1505750150/247986213_normal_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "@MariaLuis Awwww thank you so much babe <3 Well, My name's D\\u00E9bora but you can call me Debby, I'm 15 and I'm from Portugal eheh :b", "to_user": "MariaLuis", "to_user_id": 405964342, "to_user_id_str": "405964342", "to_user_name": "Maria Lu\\u00EDs", "in_reply_to_status_id": 148834093713465340, "in_reply_to_status_id_str": "148834093713465345"}, +{"created_at": "Mon, 19 Dec 2011 18:39:08 +0000", "from_user": "denisreno", "from_user_id": 13343352, "from_user_id_str": "13343352", "from_user_name": "Denis Porto Ren\\u00F3", "geo": null, "id": 148834767478067200, "id_str": "148834767478067200", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1653057200/olhos_blog_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653057200/olhos_blog_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Vacaciones intelectuales hasta 31 de diciembre. En 01 de enero vuelvo a las lecturas para nuevo postdoctorado, ahora en Portugal.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:07 +0000", "from_user": "europanu", "from_user_id": 24888481, "from_user_id_str": "24888481", "from_user_name": "Europa NU van PDC", "geo": null, "id": 148834764592386050, "id_str": "148834764592386048", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1475835517/128128eunu_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1475835517/128128eunu_normal.gif", "source": "<a href="http://www.pdc.nl" rel="nofollow">pdcfeed</a>", "text": "IMF keurt lening aan Portugal goed http://t.co/ftRbwjQV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:05 +0000", "from_user": "latercera", "from_user_id": 3222731, "from_user_id_str": "3222731", "from_user_name": "La Tercera", "geo": null, "id": 148834755360731140, "id_str": "148834755360731136", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1531845858/twit_latercera_img_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1531845858/twit_latercera_img_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#FMI aprueba nuevo desembolso por US$3.780 millones para Portugal http://t.co/X0sVgjLP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:04 +0000", "from_user": "HonestOutlaw", "from_user_id": 351361368, "from_user_id_str": "351361368", "from_user_name": "Honest", "geo": null, "id": 148834750860234750, "id_str": "148834750860234753", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1492233808/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1492233808/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@joerogan It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/kxM0qDYG", "to_user": "joerogan", "to_user_id": 18208354, "to_user_id_str": "18208354", "to_user_name": "Joe Rogan"}, +{"created_at": "Mon, 19 Dec 2011 18:39:04 +0000", "from_user": "neiallswheel", "from_user_id": 20319497, "from_user_id_str": "20319497", "from_user_name": "neiall mullery", "geo": null, "id": 148834749169942530, "id_str": "148834749169942529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1213256991/whistle_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1213256991/whistle_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:03 +0000", "from_user": "portugalforum", "from_user_id": 41989700, "from_user_id_str": "41989700", "from_user_name": "portugalforum", "geo": null, "id": 148834748729536500, "id_str": "148834748729536512", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/487842239/pfo_icon_gr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/487842239/pfo_icon_gr_normal.jpg", "source": "<a href="http://www.portugalforum.org" rel="nofollow">portugalforum.org</a>", "text": "Das wahre Leben: Gef\\u00FChlter Montag: wegen dem Feiertag, oh nein, wegen des Feiertags. Dazu passte auch, dass wir dem http://t.co/CQZ3Lekm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:03 +0000", "from_user": "denisreno", "from_user_id": 13343352, "from_user_id_str": "13343352", "from_user_name": "Denis Porto Ren\\u00F3", "geo": null, "id": 148834745160175600, "id_str": "148834745160175617", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1653057200/olhos_blog_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1653057200/olhos_blog_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Nuevo tem\\u00E1tica en la misma l\\u00EDnea: Touch Hiperperiodismo, pero como ser\\u00E1 en Portugal, Touch Hiperjornalismo. Una mezcla de todos los g\\u00E9neros,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:39:00 +0000", "from_user": "EconomicTimes", "from_user_id": 39743812, "from_user_id_str": "39743812", "from_user_name": "EconomicTimes", "geo": null, "id": 148834734988984320, "id_str": "148834734988984320", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/406051723/et-logo-option1_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/406051723/et-logo-option1_normal.gif", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "IMF releases 2.9 bn euros to Portugal http://t.co/rZvD04Fx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:56 +0000", "from_user": "MyloveisRihanna", "from_user_id": 422098041, "from_user_id_str": "422098041", "from_user_name": "My love is Rihanna ", "geo": null, "id": 148834718559911940, "id_str": "148834718559911938", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701172481/Ag5Oj8JCMAAijJY_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701172481/Ag5Oj8JCMAAijJY_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/7MSMn09S", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:50 +0000", "from_user": "DASHGlobal", "from_user_id": 81081182, "from_user_id_str": "81081182", "from_user_name": "Kardashian Global \\u0416", "geo": null, "id": 148834692622319600, "id_str": "148834692622319616", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687246524/Screen_shot_2011-12-05_at_9.24.10_PM_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687246524/Screen_shot_2011-12-05_at_9.24.10_PM_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@KimKardashian is almost at 12,000,000 followers on Twitter. That's more than the population of Greece, Portugal and Sweden! #DASHGlobal", "to_user": "KimKardashian", "to_user_id": 25365536, "to_user_id_str": "25365536", "to_user_name": "Kim Kardashian"}, +{"created_at": "Mon, 19 Dec 2011 18:38:38 +0000", "from_user": "CheyrouxM", "from_user_id": 426594641, "from_user_id_str": "426594641", "from_user_name": "cheyroux m jo", "geo": null, "id": 148834641011417100, "id_str": "148834641011417089", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1669571356/83B61D1C9BC97F38A77059E1073_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669571356/83B61D1C9BC97F38A77059E1073_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @lemondefr: Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/zeOt21vW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:37 +0000", "from_user": "HonestOutlaw", "from_user_id": 351361368, "from_user_id_str": "351361368", "from_user_name": "Honest", "geo": null, "id": 148834638570336260, "id_str": "148834638570336256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1492233808/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1492233808/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:30 +0000", "from_user": "ashleyduran", "from_user_id": 137160176, "from_user_id_str": "137160176", "from_user_name": "Ashley Duran", "geo": null, "id": 148834609365393400, "id_str": "148834609365393409", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/868937422/ashduran_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/868937422/ashduran_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Surf crisis in Portugal? N\\u00E3o! | Surfcamp Portugal: The 2011 Rip Curl Pro Portugal surf competition, which took p... http://t.co/hzHBs8su", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:30 +0000", "from_user": "AlbertoVolovitz", "from_user_id": 33519352, "from_user_id_str": "33519352", "from_user_name": "Alberto Volovitz", "geo": null, "id": 148834607800922100, "id_str": "148834607800922112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1640586743/AV_mediana_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640586743/AV_mediana_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "dos anybody have experience with IT cranes? (IT Tavares from Portugal) or Trumax from China? thanks, Alberto: http://t.co/ShbDwnN2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:29 +0000", "from_user": "Frieden75", "from_user_id": 61328078, "from_user_id_str": "61328078", "from_user_name": "Carlos Restrepo H.", "geo": null, "id": 148834603476586500, "id_str": "148834603476586496", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1683351254/Carlos_en_Guatavita_32A_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683351254/Carlos_en_Guatavita_32A_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@SOLO_JUNIOR Atenci\\u00F3n, Te\\u00F3filo Gutierrez est\\u00E1 casi listo para llegar al Porto de Portugal, y hay un acuerdo para reemplazar a Clever. Buena!", "to_user": "SOLO_JUNIOR", "to_user_id": 290795982, "to_user_id_str": "290795982", "to_user_name": "S\\u00F3lo Junior\\u2122"}, +{"created_at": "Mon, 19 Dec 2011 18:38:23 +0000", "from_user": "GermanMaslower", "from_user_id": 337086445, "from_user_id_str": "337086445", "from_user_name": "James' Covergirl \\u2665", "geo": null, "id": 148834579959132160, "id_str": "148834579959132160", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696528523/AfvIY0nCQAA4nEC_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696528523/AfvIY0nCQAA4nEC_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MIx3BI ja aber erst mal gehts nach portugal :)", "to_user": "MIx3BI", "to_user_id": 254144796, "to_user_id_str": "254144796", "to_user_name": "ELEVATEd Miri :)", "in_reply_to_status_id": 148834434416775170, "in_reply_to_status_id_str": "148834434416775169"}, +{"created_at": "Mon, 19 Dec 2011 18:38:19 +0000", "from_user": "luisformigari", "from_user_id": 234324769, "from_user_id_str": "234324769", "from_user_name": "Lu\\u00EDs Formigari", "geo": null, "id": 148834563563585540, "id_str": "148834563563585537", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1207651337/DSCF0312_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1207651337/DSCF0312_normal.JPG", "source": "<a href="http://twitter.uol.com.br" rel="nofollow">uol.com.br</a>", "text": "RT @UOLEconomia: FMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal http://t.co/o4nSgyv1 #UOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:19 +0000", "from_user": "TrancePanda", "from_user_id": 29641890, "from_user_id_str": "29641890", "from_user_name": "Trance Panda", "geo": null, "id": 148834560367534080, "id_str": "148834560367534080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1199446518/panda2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1199446518/panda2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:18 +0000", "from_user": "Seguros_BH", "from_user_id": 269336284, "from_user_id_str": "269336284", "from_user_name": "SEGUROS CARROS BH/MG", "geo": null, "id": 148834558782083070, "id_str": "148834558782083072", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662388978/1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662388978/1_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @TELEVAN FMI aprova entrega de 2,9 bi de euros para Portugal: http://t.co/WNU7fA1a d\\u00EA um RT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:17 +0000", "from_user": "SkorpionUK", "from_user_id": 791766, "from_user_id_str": "791766", "from_user_name": "Rebecca D.S.", "geo": null, "id": 148834554386456580, "id_str": "148834554386456577", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1640335263/2011-10_418x412_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640335263/2011-10_418x412_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:38:14 +0000", "from_user": "BBC1965INTEGRA", "from_user_id": 249016540, "from_user_id_str": "249016540", "from_user_name": "INTEGRA", "geo": null, "id": 148834539396014080, "id_str": "148834539396014080", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1248714814/integra_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1248714814/integra_normal.gif", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @EconomistaChiap: Aprueba FMI tercer tramo de pr\\u00E9stamo a Portugal http://t.co/FtQr3CNE | El Economista", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:55 +0000", "from_user": "araacuna", "from_user_id": 183348287, "from_user_id_str": "183348287", "from_user_name": "ALVARO ARAUJO", "geo": null, "id": 148834463130988540, "id_str": "148834463130988544", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1593621454/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593621454/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "Suena Teo Gutierrez para el Porto de Portugal. @Futbolalreves @ZorroDeportes @LigaColombiana @pdebedout @jmariogarcia", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:55 +0000", "from_user": "AchaDesconto", "from_user_id": 244926845, "from_user_id_str": "244926845", "from_user_name": "Acha Not\\u00EDcia", "geo": null, "id": 148834461818175500, "id_str": "148834461818175488", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1611436359/lupa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611436359/lupa_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprova entrega de 2,9 bi de euros para Portugal: http://t.co/TcO23TXK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:53 +0000", "from_user": "krlosegovia", "from_user_id": 224459465, "from_user_id_str": "224459465", "from_user_name": "Carlos Segovia", "geo": null, "id": 148834451357577200, "id_str": "148834451357577216", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1648093377/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648093377/image_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @ejovenes: Aprueba el Fondo Monetario Internacional la entrega de casi 3 mil millones de euros para Portugal http://t.co/Q2tpx9wK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:52 +0000", "from_user": "MadsBicker", "from_user_id": 405490267, "from_user_id_str": "405490267", "from_user_name": "Madalena Bicker", "geo": null, "id": 148834447641415680, "id_str": "148834447641415680", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700599976/292803_210321335690241_100001371289399_469500_1941620_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700599976/292803_210321335690241_100001371289399_469500_1941620_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "2 days #PORTUGAL ! <3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:47 +0000", "from_user": "Mr_Mundashi", "from_user_id": 394201126, "from_user_id_str": "394201126", "from_user_name": "Musonda Mundashi", "geo": null, "id": 148834427324215300, "id_str": "148834427324215298", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675280533/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675280533/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "\\u201C@BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/e3qpp7XR #EU #euro\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:40 +0000", "from_user": "ClanSewe", "from_user_id": 22594706, "from_user_id_str": "22594706", "from_user_name": "Sewe Saldanha", "geo": null, "id": 148834398903603200, "id_str": "148834398903603201", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1663887979/YourPet_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663887979/YourPet_normal.jpg", "source": "<a href="http://www.writelonger.com" rel="nofollow">Write Longer</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/2hQ3YmuR #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:39 +0000", "from_user": "livejornal", "from_user_id": 82668319, "from_user_id_str": "82668319", "from_user_name": "LiveJornal", "geo": null, "id": 148834396168929280, "id_str": "148834396168929281", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1109362619/terragira_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1109362619/terragira_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprova entrega de 2,9 bi de euros para Portugal: http://t.co/8QHoUxb5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:34 +0000", "from_user": "Chevy_URDancer", "from_user_id": 157098349, "from_user_id_str": "157098349", "from_user_name": "Chevss", "geo": null, "id": 148834372957642750, "id_str": "148834372957642752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1675499715/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675499715/image_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @KissCass_: RT @thatgrapejuice: Rihanna Racially Assaulted In Portugal http://t.co/6BnJTM55", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:31 +0000", "from_user": "Frieden75", "from_user_id": 61328078, "from_user_id_str": "61328078", "from_user_name": "Carlos Restrepo H.", "geo": null, "id": 148834361138098180, "id_str": "148834361138098176", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1683351254/Carlos_en_Guatavita_32A_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683351254/Carlos_en_Guatavita_32A_normal.png", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Atenci\\u00F3n, Te\\u00F3filo Gutierrez est\\u00E1 casi listo para llegar al Porto de Portugal, y hay un acuerdo para reemplazar a Clever, arriba viejo Teo !!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:27 +0000", "from_user": "baveshmoorthy", "from_user_id": 19870134, "from_user_id_str": "19870134", "from_user_name": "Bavesh Moorthy", "geo": null, "id": 148834344008560640, "id_str": "148834344008560640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1694731855/301290_233670703347940_100001150365780_602044_1537815719_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694731855/301290_233670703347940_100001150365780_602044_1537815719_n_normal.jpg", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:20 +0000", "from_user": "TukKroi", "from_user_id": 368038633, "from_user_id_str": "368038633", "from_user_name": "Oriane Boudinot", "geo": null, "id": 148834315105599500, "id_str": "148834315105599488", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689956109/DSC02058_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689956109/DSC02058_normal.JPG", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @lemondefr: Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/zeOt21vW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:19 +0000", "from_user": "P_Sociedade", "from_user_id": 113683910, "from_user_id_str": "113683910", "from_user_name": "P\\u00FAblico|Sociedade", "geo": null, "id": 148834311209099260, "id_str": "148834311209099265", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/705990501/Picture-1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/705990501/Picture-1_normal.png", "source": "<a href="http://www.publico.pt" rel="nofollow">AutoTweetPublico</a>", "text": "Portugal adere a programa europeu de restaurantes certificados http://t.co/b6TtWFMg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:19 +0000", "from_user": "allianzfondika", "from_user_id": 133393411, "from_user_id_str": "133393411", "from_user_name": "ALLIANZ F\\u00D3NDIKA", "geo": null, "id": 148834309464264700, "id_str": "148834309464264704", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/873259312/logo-twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/873259312/logo-twitter_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "FMI.- Autoriza desembolso de 2,900 mde del rescate de Portugal.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:18 +0000", "from_user": "myBusinessNews", "from_user_id": 416186662, "from_user_id_str": "416186662", "from_user_name": "myBusinessNews", "geo": null, "id": 148834307329359870, "id_str": "148834307329359873", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1646653595/myBusinessNews_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646653595/myBusinessNews_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Rettungspaket: IWF gibt dritte Portugal-Tranche frei http://t.co/bWoiAkin http://t.co/zybwNFwY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:18 +0000", "from_user": "TukKroi", "from_user_id": 368038633, "from_user_id_str": "368038633", "from_user_name": "Oriane Boudinot", "geo": null, "id": 148834305987194880, "id_str": "148834305987194880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1689956109/DSC02058_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689956109/DSC02058_normal.JPG", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:15 +0000", "from_user": "Evonjqq", "from_user_id": 431740542, "from_user_id_str": "431740542", "from_user_name": "Evon Fanizza", "geo": null, "id": 148834295836966900, "id_str": "148834295836966912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681113140/piqtiw55u4_108646168-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681113140/piqtiw55u4_108646168-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "PORTUGAL # 7 RONALDO SOCCER KIDS SET JERSEY & SHORT SIZE 20.NEW: NEW PORTUGAL SOCCER KIDS SET SIZE 20\\n\\n# 7 CRIS... http://t.co/d0H1Kzpj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:14 +0000", "from_user": "Kevin_Bisschops", "from_user_id": 304479963, "from_user_id_str": "304479963", "from_user_name": "Kevin Bisschops", "geo": null, "id": 148834290157891600, "id_str": "148834290157891584", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699748107/1350529365_6_kseQ_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699748107/1350529365_6_kseQ_normal.jpeg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "En dan portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:13 +0000", "from_user": "AmBeautifulShow", "from_user_id": 173591614, "from_user_id_str": "173591614", "from_user_name": "AmBeautifulShow", "geo": null, "id": 148834287398043650, "id_str": "148834287398043649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1093292339/AmericaTheBeautifulShowLogo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1093292339/AmericaTheBeautifulShowLogo_normal.png", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:13 +0000", "from_user": "24DutchNieuws", "from_user_id": 346601459, "from_user_id_str": "346601459", "from_user_name": "Nederland Nieuws", "geo": null, "id": 148834284835323900, "id_str": "148834284835323904", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1475893025/mzi.upezyxee.175x175-75_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1475893025/mzi.upezyxee.175x175-75_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF keurt lening aan Portugal goed: Het Internationaal Monetair Fonds (IMF) is maandag akkoord gegaan met een ni... http://t.co/tIi1PmmA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:13 +0000", "from_user": "ActusCloud", "from_user_id": 306364233, "from_user_id_str": "306364233", "from_user_name": "CloudActualit\\u00E9s 24/7", "geo": null, "id": 148834284151652350, "id_str": "148834284151652352", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1371346895/actuscloud_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1371346895/actuscloud_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/eql31fbs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:12 +0000", "from_user": "NetActu1", "from_user_id": 367804925, "from_user_id_str": "367804925", "from_user_name": "NetActu", "geo": null, "id": 148834280167059460, "id_str": "148834280167059456", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1528315106/1211794689_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1528315106/1211794689_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/9PPqGZtp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:11 +0000", "from_user": "boersemedien", "from_user_id": 30714705, "from_user_id_str": "30714705", "from_user_name": "B\\u00F6rse \\u00D6sterreich", "geo": null, "id": 148834278283821060, "id_str": "148834278283821057", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/595031038/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/595031038/twitter_normal.jpg", "source": "<a href="http://aktie.at" rel="nofollow">aktie.at B\\u00F6rsemedien</a>", "text": "Börse Express|IWF gibt knapp drei Milliarden für Portugal frei http://t.co/Ys2twCAM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:07 +0000", "from_user": "zakennieuws", "from_user_id": 49335997, "from_user_id_str": "49335997", "from_user_name": "Zakelijk nieuws", "geo": null, "id": 148834261917634560, "id_str": "148834261917634560", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1193375762/cashlogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1193375762/cashlogo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF keurt lening aan Portugal goed: Het Internationaal Monetair Fonds (IMF) is maandag akkoord gegaan met een ni... http://t.co/5th4ezxE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:07 +0000", "from_user": "fut_interativo", "from_user_id": 419742726, "from_user_id_str": "419742726", "from_user_name": "Futebol Interativo", "geo": null, "id": 148834261854724100, "id_str": "148834261854724099", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694689107/royalty-free-images-vector-football-background-pixmac-82915067_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694689107/royalty-free-images-vector-football-background-pixmac-82915067_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Atacante Thiago Gentil,ex-Palmeiras,Santa Cruz e Portugal \\u00E9 novo contratado do Gremio Barueri. O tamb\\u00E9m atacante Jorge Pre\\u00E1 \\u00E9 outro refor\\u00E7o.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:37:07 +0000", "from_user": "lORd_kEiGiE", "from_user_id": 119943173, "from_user_id_str": "119943173", "from_user_name": "Kenneth A. GEORGE", "geo": null, "id": 148834260453834750, "id_str": "148834260453834752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1548681806/K_MaG_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1548681806/K_MaG_normal.jpg", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:51 +0000", "from_user": "Kpitan", "from_user_id": 41396850, "from_user_id_str": "41396850", "from_user_name": "Andr\\u00E9s Redrov\\u00E1n", "geo": null, "id": 148834193089105920, "id_str": "148834193089105921", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1642118150/teddy-bear-suicide_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642118150/teddy-bear-suicide_normal.jpg", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "I'm at S'pan'eS (Eloy Alfaro, Portugal, Quito) http://t.co/Ny4jMhDX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:50 +0000", "from_user": "GGerminiani", "from_user_id": 90542366, "from_user_id_str": "90542366", "from_user_name": "Gustavo Germiniani", "geo": null, "id": 148834188466978800, "id_str": "148834188466978818", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/530357146/Sem_t_tulo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/530357146/Sem_t_tulo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal: http://t.co/qNYzTNdu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:43 +0000", "from_user": "JuanCarlos_RDS", "from_user_id": 245942171, "from_user_id_str": "245942171", "from_user_name": "Juan Carlos RDS \\u2714", "geo": null, "id": 148834160826519550, "id_str": "148834160826519552", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684819587/nFYs3p4M_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684819587/nFYs3p4M_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @17Nani_PT: F.C. Porto: \\u00ABNo dia 31 o Danilo j\\u00E1 treina em Portugal\\u00BB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:43 +0000", "from_user": "mpvelloso", "from_user_id": 40163660, "from_user_id_str": "40163660", "from_user_name": "M\\u00E1rcia Velloso", "geo": null, "id": 148834157865353200, "id_str": "148834157865353216", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1531839112/Marcia_Velloso_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1531839112/Marcia_Velloso_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @lemondefr: Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/zeOt21vW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:42 +0000", "from_user": "Timascious", "from_user_id": 210520883, "from_user_id_str": "210520883", "from_user_name": "The News", "geo": null, "id": 148834155646550000, "id_str": "148834155646550016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697779235/sit_20away_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697779235/sit_20away_normal.jpg", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:35 +0000", "from_user": "djthefox", "from_user_id": 42283582, "from_user_id_str": "42283582", "from_user_name": "Dj The Fox", "geo": null, "id": 148834125254635520, "id_str": "148834125254635521", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/228654744/Image031-001_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/228654744/Image031-001_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Novo tema de M.A.N.D.Y.! A dupla tem visita marcada a Portugal j\\u00E1 nos dias 22, 23, 24 e 25 de Dezembro, em Braga,... http://t.co/pj8FSJCO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:34 +0000", "from_user": "petite_galloise", "from_user_id": 232802400, "from_user_id_str": "232802400", "from_user_name": "Cath", "geo": null, "id": 148834123040047100, "id_str": "148834123040047104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1257886368/10-x-daffodils-carlton_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1257886368/10-x-daffodils-carlton_normal.jpg", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:28 +0000", "from_user": "ChristanaParson", "from_user_id": 422337131, "from_user_id_str": "422337131", "from_user_name": "ChristanaParson", "geo": null, "id": 148834096754327550, "id_str": "148834096754327553", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1659964359/g20_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659964359/g20_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Special Places to Stay Portugal, 2nd http://t.co/bdmlco0X", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:18 +0000", "from_user": "amauryreyes", "from_user_id": 49188155, "from_user_id_str": "49188155", "from_user_name": "Amaury A. Reyes-T.", "geo": null, "id": 148834056258326530, "id_str": "148834056258326530", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1597828256/0c1834c5-d4f9-451e-a30c-1c583bed4569_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1597828256/0c1834c5-d4f9-451e-a30c-1c583bed4569_normal.png", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:09 +0000", "from_user": "17Nani_PT", "from_user_id": 440097844, "from_user_id_str": "440097844", "from_user_name": "Nani Portugal F\\u00E3s \\u2665", "geo": null, "id": 148834018719301630, "id_str": "148834018719301632", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700295506/Nani-2011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700295506/Nani-2011_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "F.C. Porto: \\u00ABNo dia 31 o Danilo j\\u00E1 treina em Portugal\\u00BB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:02 +0000", "from_user": "DuArtdreamer", "from_user_id": 35537704, "from_user_id_str": "35537704", "from_user_name": "Duarte Fernandes", "geo": null, "id": 148833989396922370, "id_str": "148833989396922368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1665899642/TheBOSS_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665899642/TheBOSS_normal.jpg", "source": "<a href="http://www.bullhornreach.com/" rel="nofollow">Bullhorn Reach</a>", "text": "Hiring a Java Experts in Lisbon, Portugal http://t.co/xpWNv4CI #job", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:02 +0000", "from_user": "samdenton7", "from_user_id": 217075755, "from_user_id_str": "217075755", "from_user_name": "Sam Denton", "geo": null, "id": 148833986985201660, "id_str": "148833986985201664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668715403/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668715403/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:36:00 +0000", "from_user": "ppatel", "from_user_id": 14155736, "from_user_id_str": "14155736", "from_user_name": "Pratik Patel", "geo": null, "id": 148833977216663550, "id_str": "148833977216663552", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1163555641/pratik-bigsmile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1163555641/pratik-bigsmile_normal.jpg", "source": "<a href="http://www.quartzprojects.co.uk" rel="nofollow">The Qube</a>", "text": "It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/b3YqLx9y", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:59 +0000", "from_user": "FLGOVSCOTTFAILS", "from_user_id": 25927615, "from_user_id_str": "25927615", "from_user_name": "Sara Conner (alias)", "geo": null, "id": 148833976361041920, "id_str": "148833976361041920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1261494619/DCF_allowing_fathers_abuse._normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1261494619/DCF_allowing_fathers_abuse._normal.jpg", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:58 +0000", "from_user": "redWhiteRiotBta", "from_user_id": 270063327, "from_user_id_str": "270063327", "from_user_name": "Christian Urrego", "geo": null, "id": 148833970962964480, "id_str": "148833970962964481", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1666111582/Pintas_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666111582/Pintas_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Ch\\u00E9ofilo a portugal !!! nos fuimos al carajo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:55 +0000", "from_user": "ninformaticapt", "from_user_id": 92326060, "from_user_id_str": "92326060", "from_user_name": "Not\\u00EDcias Inform\\u00E1tica", "geo": null, "id": 148833959382491140, "id_str": "148833959382491136", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/542024658/informatica_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/542024658/informatica_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "ACEPI participa na Confedera\\u00E7\\u00E3o dos Servi\\u00E7os de Portugal: A nova entidade patronal criada em conjunto pelas prin... http://t.co/1tLrGgXB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:53 +0000", "from_user": "nathiititi", "from_user_id": 276703549, "from_user_id_str": "276703549", "from_user_name": "Nathi Mazzeo", "geo": null, "id": 148833951295873020, "id_str": "148833951295873026", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1624142072/8790423_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624142072/8790423_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "DEMASIADO HERMOSO que tu novio venga desde Portugal a pasar navidades contigoo *_*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:52 +0000", "from_user": "SaguiSanfona", "from_user_id": 245359426, "from_user_id_str": "245359426", "from_user_name": "Sagui Sanfona", "geo": null, "id": 148833943775490050, "id_str": "148833943775490048", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1602232034/img_0086_001_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1602232034/img_0086_001_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@nanecau: @SaguiSanfona J\\u00E1 mandei para a Sui\\u00E7a e Portugal kkk @MartaWLMT @MelaFernandes obrigado pelo carinho", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:49 +0000", "from_user": "ronmichael", "from_user_id": 807851, "from_user_id_str": "807851", "from_user_name": "Ron M Zettlemoyer", "geo": null, "id": 148833934942273540, "id_str": "148833934942273536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1675702747/me-2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675702747/me-2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:49 +0000", "from_user": "Arlenenhp", "from_user_id": 431779141, "from_user_id_str": "431779141", "from_user_name": "Arlene Youngren", "geo": null, "id": 148833934300549120, "id_str": "148833934300549120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681196038/bc5dmdvshl_129668328-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681196038/bc5dmdvshl_129668328-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Portugal on Your Own: Making the Most of Local Food and Drink: http://t.co/kGiAkg71", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:48 +0000", "from_user": "RodadaVirtual", "from_user_id": 37938014, "from_user_id_str": "37938014", "from_user_name": "Rodada de Neg\\u00F3cios", "geo": null, "id": 148833929691017200, "id_str": "148833929691017216", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Regulador espanhol investiga eventual concerta\\u00E7\\u00E3o de pre\\u00E7os das SMS - Jornal de Neg\\u00F3cios - Portugal: Jornal de N... http://t.co/aEaSNRb6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:43 +0000", "from_user": "cearatradebrasi", "from_user_id": 62580704, "from_user_id_str": "62580704", "from_user_name": "CEAR\\u00C1 TRADE BRASIL", "geo": null, "id": 148833907192770560, "id_str": "148833907192770560", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/346149524/Copy_of_Logomarca_CearaTrade_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/346149524/Copy_of_Logomarca_CearaTrade_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Portugal Digital - Portugal volta a ter saldo positivo no com\\u00E9rcio com o Brasil http://t.co/WXRVRTma via @pd_twitt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:36 +0000", "from_user": "DTNNetherlands", "from_user_id": 430761655, "from_user_id_str": "430761655", "from_user_name": "DTN The Netherlands", "geo": null, "id": 148833880399560700, "id_str": "148833880399560705", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1679174234/0_1_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679174234/0_1_n_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "DTN The Netherlands IMF keurt lening aan Portugal goed: WASHINGTON - Het Internationaal Monetair Fonds (IMF) is ... http://t.co/Ecxm97fw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:31 +0000", "from_user": "EconomieNed20", "from_user_id": 107735761, "from_user_id_str": "107735761", "from_user_name": "Economie & Financi\\u00EBn", "geo": null, "id": 148833857863561200, "id_str": "148833857863561216", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1611012337/logonederland20_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611012337/logonederland20_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF keurt lening aan Portugal goed http://t.co/8AiD5Mri (nu.nl) #economie", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:19 +0000", "from_user": "AGI_Italy_News", "from_user_id": 219249595, "from_user_id_str": "219249595", "from_user_name": "Agenzia Italia", "geo": null, "id": 148833806554640400, "id_str": "148833806554640384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1427343984/AGI_payoff_4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1427343984/AGI_payoff_4_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF ISSUES EUR2. 9BN BAILOUT GRANT IN AID OF PORTUGAL: (AGI) Washington - The IMF has released 2.9bn euro in aid... http://t.co/mIfsXsjb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:18 +0000", "from_user": "Russia_Jobs_", "from_user_id": 304256225, "from_user_id_str": "304256225", "from_user_name": "Russia Jobs", "geo": null, "id": 148833803354382340, "id_str": "148833803354382336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Qatar: 2011 Article IV Consultation Concluding Statement of the IMF Mission \\u2013 Einnews Portugal: Zawy... http://t.co/QlxnEs1w Russia Jobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:35:11 +0000", "from_user": "TheABCParty", "from_user_id": 287561206, "from_user_id_str": "287561206", "from_user_name": "ABC Party", "geo": null, "id": 148833772085846000, "id_str": "148833772085846017", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1364187123/Australian_Business_Coalition_Logo_IPhone_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1364187123/Australian_Business_Coalition_Logo_IPhone_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "@theabcparty #Oz #IR IMF releases 2.9bn euros to Portugal: Deficit slides below IMF-EU ceil... http://t.co/9nteN36s #Australia #Politics", "to_user": "TheABCParty", "to_user_id": 287561206, "to_user_id_str": "287561206", "to_user_name": "ABC Party"}, +{"created_at": "Mon, 19 Dec 2011 18:35:01 +0000", "from_user": "Aghiadne", "from_user_id": 57474457, "from_user_id_str": "57474457", "from_user_name": "Ariadna Arriaza", "geo": null, "id": 148833730444787700, "id_str": "148833730444787714", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1669403937/tumblr_lvcghrMWZe1qduhajo1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669403937/tumblr_lvcghrMWZe1qduhajo1_500_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@PatMoredom arcade fire, crying... pero si est\\u00E1 en portugal, no? VAMOS", "to_user": "PatMoredom", "to_user_id": 176582578, "to_user_id_str": "176582578", "to_user_name": "Patricia Moreno", "in_reply_to_status_id": 148833128142733300, "in_reply_to_status_id_str": "148833128142733312"}, +{"created_at": "Mon, 19 Dec 2011 18:34:59 +0000", "from_user": "iheartcircle1", "from_user_id": 124858054, "from_user_id_str": "124858054", "from_user_name": "Heart Circle", "geo": null, "id": 148833722953773060, "id_str": "148833722953773056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "IMF releases 2.9 bn euros to Portugal - WASHINGTON\\u00A0- The International Monetary Fund said Monday it would release 2.... http://t.co/VhxArOdj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:57 +0000", "from_user": "rmkelle", "from_user_id": 14324713, "from_user_id_str": "14324713", "from_user_name": "Richard Kelley", "geo": null, "id": 148833715668258800, "id_str": "148833715668258817", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1539757086/POS_1743_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1539757086/POS_1743_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Emergency evacuation plans for Brits in Spain, Portugal if/when #euro collapses. #crazy http://t.co/LO1oxhW0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:53 +0000", "from_user": "KissCass_", "from_user_id": 147372325, "from_user_id_str": "147372325", "from_user_name": "Cassandra Catherine", "geo": null, "id": 148833696827441150, "id_str": "148833696827441153", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1603505882/328567112_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1603505882/328567112_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @thatgrapejuice: Rihanna Racially Assaulted In Portugal http://t.co/6BnJTM55", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:46 +0000", "from_user": "Rithie_Duarte", "from_user_id": 79542534, "from_user_id_str": "79542534", "from_user_name": "Rita Duarte", "geo": null, "id": 148833667446349820, "id_str": "148833667446349824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1617735201/180633_1566004949839_1226857639_31286879_8236780_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1617735201/180633_1566004949839_1226857639_31286879_8236780_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "best xmas gift? if @justinbieber notice or follow me. Portugal loves you. We want u here in 2012", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:38 +0000", "from_user": "ghostworld2", "from_user_id": 378621204, "from_user_id_str": "378621204", "from_user_name": "ghostworld", "geo": null, "id": 148833637306089470, "id_str": "148833637306089472", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/mj6ViB4A", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:33 +0000", "from_user": "AnunicoPT", "from_user_id": 430226280, "from_user_id_str": "430226280", "from_user_name": "Anunico Portugal", "geo": null, "id": 148833612379328500, "id_str": "148833612379328512", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677900950/logo_anunico_twitter_bra_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677900950/logo_anunico_twitter_bra_normal.PNG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Classificados Para Venda Brand New http://t.co/PdVP4HJE #Anuncios #Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:30 +0000", "from_user": "HipHopWeb", "from_user_id": 96447588, "from_user_id_str": "96447588", "from_user_name": "HipHopWeb", "geo": null, "id": 148833603252535300, "id_str": "148833603252535296", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1170752522/hiphopweb_logotipo-md_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1170752522/hiphopweb_logotipo-md_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Rihanna relata epis\\u00F3dio racista em Portugal http://t.co/3OVzekTO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:25 +0000", "from_user": "MarcFanlac", "from_user_id": 391671501, "from_user_id_str": "391671501", "from_user_name": "POMAREL Marc", "geo": null, "id": 148833582771736580, "id_str": "148833582771736577", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1599686677/Num_riser.jpg_09_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599686677/Num_riser.jpg_09_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@jeanmarcayrault @fhollande Voir Gr\\u00E9ce ; Portugal ; Espagne...et Corr\\u00E9ze...!", "to_user": "jeanmarcayrault", "to_user_id": 28332028, "to_user_id_str": "28332028", "to_user_name": "Jean-Marc AYRAULT", "in_reply_to_status_id": 148833073251893250, "in_reply_to_status_id_str": "148833073251893251"}, +{"created_at": "Mon, 19 Dec 2011 18:34:21 +0000", "from_user": "djthefox", "from_user_id": 42283582, "from_user_id_str": "42283582", "from_user_name": "Dj The Fox", "geo": null, "id": 148833564195164160, "id_str": "148833564195164161", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/228654744/Image031-001_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/228654744/Image031-001_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Novo tema de M.A.N.D.Y.! A dupla tem visita marcada a Portugal j\\u00E1 nos dias 23, 24 e 25 de Dezembro, em Aveiro,... http://t.co/dNvvLQ20", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:19 +0000", "from_user": "Jacksonista", "from_user_id": 51018366, "from_user_id_str": "51018366", "from_user_name": "Mademoiselle Andret", "geo": null, "id": 148833556054020100, "id_str": "148833556054020096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1498315582/gif_wink_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1498315582/gif_wink_normal.gif", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@JustMeBeingBad Where in Portugal (nearest biggest city)? ...if you don't mind me asking :)", "to_user": "JustMeBeingBad", "to_user_id": 289344020, "to_user_id_str": "289344020", "to_user_name": "Rafaela ", "in_reply_to_status_id": 148833358506496000, "in_reply_to_status_id_str": "148833358506496001"}, +{"created_at": "Mon, 19 Dec 2011 18:34:18 +0000", "from_user": "itwitting", "from_user_id": 26276346, "from_user_id_str": "26276346", "from_user_name": "ionline", "geo": null, "id": 148833553164156930, "id_str": "148833553164156928", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/199994060/i_icon150px_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/199994060/i_icon150px_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "BE admite fixar na Constitui\\u00E7\\u00E3o princ\\u00EDpio de que todos recebem de acordo com descontos http://t.co/dTJ9J7SO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:34:18 +0000", "from_user": "itwitting", "from_user_id": 26276346, "from_user_id_str": "26276346", "from_user_name": "ionline", "geo": null, "id": 148833553164156930, "id_str": "148833553164156928", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/199994060/i_icon150px_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/199994060/i_icon150px_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "BE admite fixar na Constitui\\u00E7\\u00E3o princ\\u00EDpio de que todos recebem de acordo com descontos http://t.co/dTJ9J7SO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:17 +0000", "from_user": "Makedaomf", "from_user_id": 440227701, "from_user_id_str": "440227701", "from_user_name": "Makeda Arends", "geo": null, "id": 148833546033823740, "id_str": "148833546033823744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700604554/large_NUOROZKNDPAH_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700604554/large_NUOROZKNDPAH_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Traditional Portuguese Recipes from Provincetown: Born in Alhao, Portugal, in 1914, Mary Alice Luiz Cook came to... http://t.co/lN04BjHe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:13 +0000", "from_user": "ferriuf", "from_user_id": 211072952, "from_user_id_str": "211072952", "from_user_name": "renato ferreira", "geo": null, "id": 148833530015789060, "id_str": "148833530015789056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1493779112/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1493779112/image_normal.jpg", "source": "<a href="http://www.yoono.com" rel="nofollow">yoono</a>", "text": "RT @PCMagalhaes: \"Portugal\" no Google News d\\u00E1 isto: \"Rihanna Suffers Racial Abuse At Portugal Hotel\": http://t.co/POrIddO8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:13 +0000", "from_user": "JuanDavidLoopez", "from_user_id": 198214933, "from_user_id_str": "198214933", "from_user_name": "Juan David", "geo": null, "id": 148833528799440900, "id_str": "148833528799440896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1634631189/SDC14716_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634631189/SDC14716_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rihanna: PORTUGAL tonight was LEGENDARY!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:34:08 +0000", "from_user": "neiisLA", "from_user_id": 339204800, "from_user_id_str": "339204800", "from_user_name": "\\u5DE5\\u03B7\\u03B5s'", "geo": null, "id": 148833510541639680, "id_str": "148833510541639680", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693259875/Cameron_estilo_roupa_mitchell_glee_4_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693259875/Cameron_estilo_roupa_mitchell_glee_4_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "@xProudOfSel 18:30 em Portugal ;]", "to_user": "xProudOfSel", "to_user_id": 362489207, "to_user_id_str": "362489207", "to_user_name": "luto", "in_reply_to_status_id": 148833133293346800, "in_reply_to_status_id_str": "148833133293346817"}, +{"created_at": "Mon, 19 Dec 2011 18:33:58 +0000", "from_user": "buyCristiano", "from_user_id": 162786460, "from_user_id_str": "162786460", "from_user_name": "buy Cristiano", "geo": null, "id": 148833467994615800, "id_str": "148833467994615809", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1050371064/201200_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1050371064/201200_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "2012 Futera Unique #295 Ruby LOT 9 PORTUGAL,Cristiano Ronaldo,Figo,Eusebio,Pepe,: US $0.99 (0 Bid)... http://t.co/6fGFKVYa #buyCristiano", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:57 +0000", "from_user": "ima1dlovatic", "from_user_id": 410711925, "from_user_id_str": "410711925", "from_user_name": "Vas Happenin'", "geo": null, "id": 148833463972270080, "id_str": "148833463972270080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702438418/tumblr_lvp1ww7aI31qkfkfjo1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702438418/tumblr_lvp1ww7aI31qkfkfjo1_500_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @NiallGuitar: Im from Portugal - BrazilNeedsUpAllNightTour - but Im helping!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:51 +0000", "from_user": "apdsi", "from_user_id": 54302612, "from_user_id_str": "54302612", "from_user_name": "APDSI", "geo": null, "id": 148833438424764400, "id_str": "148833438424764416", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/300361267/logoAPDSI_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/300361267/logoAPDSI_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Est\\u00E3o dispon\\u00EDveis os v\\u00EDdeos do evento Net Neutrality - Neutralidade da Internet:Problem\\u00E1tica,estado da arte em Portugal.http://bit.ly/tgTKDd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:44 +0000", "from_user": "NiallGuitar", "from_user_id": 70671799, "from_user_id_str": "70671799", "from_user_name": "Joana 1D Horan \\u2665", "geo": null, "id": 148833407844089860, "id_str": "148833407844089856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702465264/niall.tour_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702465264/niall.tour_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Im from Portugal - BrazilNeedsUpAllNightTour - but Im helping!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:40 +0000", "from_user": "bogo_zakelijk", "from_user_id": 366045320, "from_user_id_str": "366045320", "from_user_name": "Bogobogo Zakelijk", "geo": null, "id": 148833391540834300, "id_str": "148833391540834304", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1561528928/facebooklogobogo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1561528928/facebooklogobogo_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF keurt lening aan Portugal goed: WASHINGTON (AFN) \\u2013 Het Internationaal Monetair Fonds (IMF) i... http://t.co/1pOtSf4k #economie #geld", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:39 +0000", "from_user": "NoticiasSpain", "from_user_id": 301658098, "from_user_id_str": "301658098", "from_user_name": "financialmarket.dk", "geo": null, "id": 148833386373447680, "id_str": "148833386373447681", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1361289073/jelveh20101111152223827_reasonably_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1361289073/jelveh20101111152223827_reasonably_small_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Noticias El FMI autoriza el desembolso de 2.900 millones del rescate de Portugal http://t.co/zBqGNmPf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:37 +0000", "from_user": "MontyBaby22", "from_user_id": 207240441, "from_user_id_str": "207240441", "from_user_name": "Lindo By Name", "geo": null, "id": 148833378983096320, "id_str": "148833378983096321", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1640755978/329849646_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640755978/329849646_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @chrisrichards91: @MontyBaby22 woiiiii loool sing. Where you from? \\u00AB Jamaica, Portugal, Wales and Russia, no African at all lool", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:36 +0000", "from_user": "MuriloAndrade7", "from_user_id": 159830347, "from_user_id_str": "159830347", "from_user_name": "Murilo Andrade", "geo": null, "id": 148833376546193400, "id_str": "148833376546193409", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1544689305/DSCF1405_-_C_pia_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1544689305/DSCF1405_-_C_pia_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@thaynaks No meu de vez enquanto aparece algu\\u00E9m de Portugal... Ai tem uns nordestinos de Tocantins, Minas Gerais..m\\u00F3 loucura! ahah", "to_user": "thaynaks", "to_user_id": 259927098, "to_user_id_str": "259927098", "to_user_name": "2k, \\u2654", "in_reply_to_status_id": 148833072966664200, "in_reply_to_status_id_str": "148833072966664192"}, +{"created_at": "Mon, 19 Dec 2011 18:33:32 +0000", "from_user": "nettorodriggues", "from_user_id": 54784316, "from_user_id_str": "54784316", "from_user_name": "netto", "geo": null, "id": 148833358766542850, "id_str": "148833358766542850", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702210021/1321743889302_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702210021/1321743889302_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "rihanna b\\u00EAbado vomita no show em Portugal hehehehe beleza", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:32 +0000", "from_user": "JustMeBeingBad", "from_user_id": 289344020, "from_user_id_str": "289344020", "from_user_name": "Rafaela ", "geo": null, "id": 148833358506496000, "id_str": "148833358506496001", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1668520435/08042010274_2_2_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668520435/08042010274_2_2_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Jacksonista born in Mozambique, brought up in South Africa and living in Portugal...phew!", "to_user": "Jacksonista", "to_user_id": 51018366, "to_user_id_str": "51018366", "to_user_name": "Mademoiselle Andret", "in_reply_to_status_id": 148832820758986750, "in_reply_to_status_id_str": "148832820758986752"}, +{"created_at": "Mon, 19 Dec 2011 18:33:27 +0000", "from_user": "angiesofs", "from_user_id": 399527440, "from_user_id_str": "399527440", "from_user_name": "\\u00E2ngela sofia ", "geo": null, "id": 148833338742947840, "id_str": "148833338742947841", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1642269206/SAM_0609_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642269206/SAM_0609_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@justinbieber @justinbieber COME TO PORTUGAL PLEASE \\u2665\\u2665\\u2665\\nCOME TO PORTUGAL PLEASE \\u2665\\u2665\\u2665\\nCOME TO PORTUGAL PLEASE \\u2665\\u2665\\u2665\\nCOME TO PORTUGAL PLEASE \\u2665\\u2665\\u2665", "to_user": "justinbieber", "to_user_id": 27260086, "to_user_id_str": "27260086", "to_user_name": "Justin Bieber"}, +{"created_at": "Mon, 19 Dec 2011 18:33:22 +0000", "from_user": "vrfoto", "from_user_id": 64950397, "from_user_id_str": "64950397", "from_user_name": "V R", "geo": null, "id": 148833317381353470, "id_str": "148833317381353474", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1166443656/vrfoto03_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1166443656/vrfoto03_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Rostos On-line - Portugal ganha a candidatura a Organizacao do Congresso Internacional de Museus Ma http://t.co/Jo5YUyrH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:18 +0000", "from_user": "malgokop", "from_user_id": 226707023, "from_user_id_str": "226707023", "from_user_name": "mal", "geo": null, "id": 148833301036154880, "id_str": "148833301036154880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "posted more photos from Portugal: http://t.co/UfbEDwrw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:14 +0000", "from_user": "angiesofs", "from_user_id": 399527440, "from_user_id_str": "399527440", "from_user_name": "\\u00E2ngela sofia ", "geo": null, "id": 148833281423589380, "id_str": "148833281423589376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1642269206/SAM_0609_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642269206/SAM_0609_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@justinbieber COME TO PORTUGAL PLEASE \\u2665\\u2665\\u2665\\nCOME TO PORTUGAL PLEASE \\u2665\\u2665\\u2665\\nCOME TO PORTUGAL PLEASE \\u2665\\u2665\\u2665\\nCOME TO PORTUGAL PLEASE \\u2665\\u2665\\u2665", "to_user": "justinbieber", "to_user_id": 27260086, "to_user_id_str": "27260086", "to_user_name": "Justin Bieber"}, +{"created_at": "Mon, 19 Dec 2011 18:33:13 +0000", "from_user": "bernardinomucci", "from_user_id": 222619943, "from_user_id_str": "222619943", "from_user_name": "bernard mucciolo", "geo": null, "id": 148833278055546880, "id_str": "148833278055546881", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://tweetmeme.com" rel="nofollow">TweetMeme</a>", "text": "El FMI autoriza el desembolso de 2.900 millones del rescate de Portugal - elEconomista.es http://t.co/VdZ4wdJ4 @orlandoochoa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:12 +0000", "from_user": "sixtoduarte", "from_user_id": 98241369, "from_user_id_str": "98241369", "from_user_name": "Sixto Duarte", "geo": null, "id": 148833275702554620, "id_str": "148833275702554625", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1576871488/NY_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576871488/NY_normal.jpg", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:04 +0000", "from_user": "AndreAlmeida86", "from_user_id": 182746470, "from_user_id_str": "182746470", "from_user_name": "Andre Almeida", "geo": null, "id": 148833242064232450, "id_str": "148833242064232448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1111171166/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1111171166/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rihanna: PORTUGAL tonight was LEGENDARY!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:33:01 +0000", "from_user": "HomeInsurance_", "from_user_id": 341208226, "from_user_id_str": "341208226", "from_user_name": "Home Insurance", "geo": null, "id": 148833230487953400, "id_str": "148833230487953408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.theleader.info/homeinsurance" rel="nofollow">Home Insurance</a>", "text": "CLASSIC HOME INSURANCE - http://t.co/agFralWd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:58 +0000", "from_user": "Was_jam1", "from_user_id": 324382624, "from_user_id_str": "324382624", "from_user_name": "Was_jam1", "geo": null, "id": 148833215346507780, "id_str": "148833215346507778", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1472466248/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1472466248/image_normal.jpg", "source": "<a href="http://www.htc.com" rel="nofollow"> HTC Peep</a>", "text": "RT @BBCWorld #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/Rc74x4Nr #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:45 +0000", "from_user": "Handandre", "from_user_id": 245019392, "from_user_id_str": "245019392", "from_user_name": "Andrew", "geo": null, "id": 148833160489218050, "id_str": "148833160489218048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1620981680/329165896_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620981680/329165896_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/ekrWjb4C #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:41 +0000", "from_user": "marianaabiebs", "from_user_id": 63496454, "from_user_id_str": "63496454", "from_user_name": "Mariana \\u2665", "geo": null, "id": 148833144940924930, "id_str": "148833144940924929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681792976/AgJnaarCAAArTll_-_C_pia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681792976/AgJnaarCAAArTll_-_C_pia_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@justinbieber you never came to Portugal. we're waiting for you. and we love you so much!", "to_user": "justinbieber", "to_user_id": 27260086, "to_user_id_str": "27260086", "to_user_name": "Justin Bieber"}, +{"created_at": "Mon, 19 Dec 2011 18:32:28 +0000", "from_user": "NunoGodinho", "from_user_id": 9971382, "from_user_id_str": "9971382", "from_user_name": "Nuno Godinho", "geo": null, "id": 148833089555148800, "id_str": "148833089555148800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/831407287/twitterProfilePhoto_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/831407287/twitterProfilePhoto_normal.jpg", "source": "<a href="http://tweepsmap.com" rel="nofollow">TweepsMap</a>", "text": "32% of my followers are from #UnitedStates,20% from #Portugal & 6% from #Lisbon. http://t.co/n5S2ZYn5. What's your #TweepsMap ?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:18 +0000", "from_user": "aofertas_bauru", "from_user_id": 266627854, "from_user_id_str": "266627854", "from_user_name": "ApontaOfertas SP", "geo": null, "id": 148833049981890560, "id_str": "148833049981890562", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1273613502/apontaofertas_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1273613502/apontaofertas_logo_normal.jpg", "source": "<a href="http://www.apontaofertas.com.br" rel="nofollow">ApontaOfertas</a>", "text": "R$13 por Lavagem Ecol\\u00F3gica Simples no Espuminha Lava Car (63% OFF). Use at\\u00E9 4 cupons http://t.co/hBT5O9C8 #apontaofertas", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:18 +0000", "from_user": "orca206", "from_user_id": 181319645, "from_user_id_str": "181319645", "from_user_name": "Manojjj", "geo": null, "id": 148833049231110140, "id_str": "148833049231110145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1267187104/P1010644_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1267187104/P1010644_normal.JPG", "source": "<a href="http://reuters.com/tools/mobile" rel="nofollow">Thomson Reuters News Pro</a>", "text": "RT @jennablan: IMF approves 2.9 billion euro tranche to Portugal http://t.co/e6PYgK8m", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:17 +0000", "from_user": "manilainformer", "from_user_id": 71996980, "from_user_id_str": "71996980", "from_user_name": "Manila Informer", "geo": null, "id": 148833043459747840, "id_str": "148833043459747840", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/498576751/1570415845_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/498576751/1570415845_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Manila IMF releases 2.9 bn euros to Portugal http://t.co/5RF1q8Yd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:07 +0000", "from_user": "StatesideSoccer", "from_user_id": 34699015, "from_user_id_str": "34699015", "from_user_name": "Stateside Soccer", "geo": null, "id": 148833000732373000, "id_str": "148833000732372992", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1027384642/Shield4__Converted__TWITTER_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1027384642/Shield4__Converted__TWITTER_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#USsoccer: U.S. Women Placed in Group B at 2012 Algarve Cup in Portugal http://t.co/DCltW10V", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:05 +0000", "from_user": "claraguterres", "from_user_id": 75531816, "from_user_id_str": "75531816", "from_user_name": "Clara Guterres", "geo": null, "id": 148832993497190400, "id_str": "148832993497190400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1400763441/tw_9037214_1308353571_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1400763441/tw_9037214_1308353571_normal.jpg", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:01 +0000", "from_user": "AIESECKenya", "from_user_id": 54475909, "from_user_id_str": "54475909", "from_user_name": "AIESEC Kenya", "geo": null, "id": 148832976556396540, "id_str": "148832976556396545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1281705041/AIESEC_Kenya_map-web_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1281705041/AIESEC_Kenya_map-web_normal.jpg", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:32:00 +0000", "from_user": "ValutaKoersen", "from_user_id": 289404154, "from_user_id_str": "289404154", "from_user_name": "Financi\\u00EBn", "geo": null, "id": 148832972232081400, "id_str": "148832972232081408", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1428949511/05_64x64_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1428949511/05_64x64_normal.png", "source": "<a href="http://no.nl/" rel="nofollow">No.nl</a>", "text": "#Financieelnieuws - IMF keurt lening aan Portugal goed - http://t.co/6l74ORSJ - Het Internationaal Monetair Fonds (IMF) is maandag akkoo..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:58 +0000", "from_user": "KENNYKENNY0819", "from_user_id": 361536498, "from_user_id_str": "361536498", "from_user_name": "KENNEY\\uFF20\\u3051\\u306B\\u30FC", "geo": null, "id": 148832964648775680, "id_str": "148832964648775680", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1548176919/12b94112e880e0dd81c5d5ca50be471eda80_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1548176919/12b94112e880e0dd81c5d5ca50be471eda80_normal.gif", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\\u30D9\\u30F3\\u30D5\\u30A3\\u30AB\\u306F\\u30A6\\u30EB\\u30B0\\u30A2\\u30A4\\u4EE3\\u8868\\u306E\\u30DE\\u30AD\\u30B7\\u30DF\\u30EA\\u30A2\\u30FC\\u30CE\\u30FB\\u30DA\\u30EC\\u30A4\\u30E9\\u3068\\u306E\\u5951\\u7D04\\u3092\\uFF13\\u5E74\\u9593\\u5EF6\\u9577\\u3068\\u767A\\u8868\\u3002\\u30D9\\u30F3\\u30D5\\u30A3\\u30AB\\u306F\\u4ECA\\u5B63\\u306E\\uFF23\\uFF2C\\u3067\\u30B0\\u30EB\\u30FC\\u30D7\\u9996\\u4F4D\\u3067\\u6C7A\\u52DD\\uFF34\\u306B\\u9032\\u51FA\\u3057\\u30D9\\u30B9\\u30C8\\uFF11\\uFF16\\u3067\\u30BC\\u30CB\\u30C8\\u3068\\u5BFE\\u6226 #Benfica #Portugal #Uruguay #daihyo #CL\\nhttp://t.co/8OTQvERN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:58 +0000", "from_user": "YCfansinworld", "from_user_id": 389676234, "from_user_id_str": "389676234", "from_user_name": "YCfansaroundtheworld", "geo": null, "id": 148832964296458240, "id_str": "148832964296458240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1619267554/Untitled_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619267554/Untitled_7_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Yellowcard - Rough Landing Holly - Live in Portugal. Just: WOW! http://t.co/C84BgIef", "to_user": "Yellowcard", "to_user_id": 172896656, "to_user_id_str": "172896656", "to_user_name": "Yellowcard"}, +{"created_at": "Mon, 19 Dec 2011 18:31:57 +0000", "from_user": "Gordzdeadline", "from_user_id": 237900004, "from_user_id_str": "237900004", "from_user_name": "Gordz", "geo": null, "id": 148832960756461570, "id_str": "148832960756461568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1669160833/290112_10150279219111593_552626592_7899859_7773604_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669160833/290112_10150279219111593_552626592_7899859_7773604_o_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "lol \"/ RT @nicthemartian: weh ras deh wen mi deh a portugal a train wid sporting juniors", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:57 +0000", "from_user": "101_renascer", "from_user_id": 352369230, "from_user_id_str": "352369230", "from_user_name": "Radio Renascer 101,5", "geo": null, "id": 148832960131498000, "id_str": "148832960131497984", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1556344595/101_5_pra_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1556344595/101_5_pra_twitter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @PrSimaias: @101_renascer Estamos ouvindo a renacer desde Portugal saudades de todos ai ........", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:54 +0000", "from_user": "Lindsay_Lu", "from_user_id": 15877051, "from_user_id_str": "15877051", "from_user_name": "Lindsay Siegel", "geo": null, "id": 148832949259874300, "id_str": "148832949259874304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1302168444/ls_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1302168444/ls_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:34 +0000", "from_user": "JSAfonso", "from_user_id": 57688286, "from_user_id_str": "57688286", "from_user_name": "Joana Afonso", "geo": null, "id": 148832862366482430, "id_str": "148832862366482433", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprovou terceira tranche do empr\\u00E9stimo a Portugal: O Fundo Monet\\u00E1rio Internacional aprovou hoje a terceira t... http://t.co/9AOeetWN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:32 +0000", "from_user": "palexandrebrito", "from_user_id": 145367825, "from_user_id_str": "145367825", "from_user_name": "Alexandre Brito", "geo": +{"coordinates": [-23.5673,-46.7547], "type": "Point"}, "id": 148832855009673200, "id_str": "148832855009673216", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694912861/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694912861/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@WesleyBispo7 mano eu estava l\\u00E1 no pavilh\\u00E3o dos @Gideoes pregando no domingo passado e ia mandar um alo p vc ai em Portugal", "to_user": "WesleyBispo7", "to_user_id": 360266130, "to_user_id_str": "360266130", "to_user_name": "Wesley Bispo"}, +{"created_at": "Mon, 19 Dec 2011 18:31:32 +0000", "from_user": "david000089", "from_user_id": 141960383, "from_user_id_str": "141960383", "from_user_name": "david ", "geo": null, "id": 148832853789122560, "id_str": "148832853789122561", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689309801/GIJON_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689309801/GIJON_normal.jpg", "source": "<a href="http://tweetmeme.com" rel="nofollow">TweetMeme</a>", "text": "El FMI autoriza el desembolso de 2.900 millones del rescate de Portugal - elEconomista.es http://t.co/EPMtwkx5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:27 +0000", "from_user": "davidcavaco", "from_user_id": 34067839, "from_user_id_str": "34067839", "from_user_name": "David Cavaco", "geo": null, "id": 148832833849393150, "id_str": "148832833849393152", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702601385/CIMG3240_-_C_pia_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702601385/CIMG3240_-_C_pia_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@rihanna Rihanna, I'm portuguese and Portugal waits for you everytime. You rock gurl! ly <3", "to_user": "rihanna", "to_user_id": 79293791, "to_user_id_str": "79293791", "to_user_name": "Rihanna"}, +{"created_at": "Mon, 19 Dec 2011 18:31:20 +0000", "from_user": "TugasParadise", "from_user_id": 86572029, "from_user_id_str": "86572029", "from_user_name": "Tuga's Paradise", "geo": null, "id": 148832805030346750, "id_str": "148832805030346752", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/502488031/blog_banner_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/502488031/blog_banner_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "T\\u00E2nia Ribas de Oliveira @ Portugal no Cora\\u00E7\\u00E3o http://t.co/tLY83JM5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:17 +0000", "from_user": "mohdtwit", "from_user_id": 289537139, "from_user_id_str": "289537139", "from_user_name": "elepo mohammed", "geo": null, "id": 148832791805689860, "id_str": "148832791805689858", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698922422/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698922422/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:12 +0000", "from_user": "Nana2319", "from_user_id": 281565035, "from_user_id_str": "281565035", "from_user_name": "MarianaPereira", "geo": null, "id": 148832769521356800, "id_str": "148832769521356802", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1684896733/IMG_0898_-_C_pia_-_C_pia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684896733/IMG_0898_-_C_pia_-_C_pia_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#PORTUGAL needs @justinbieber <3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:05 +0000", "from_user": "Kittee__", "from_user_id": 429551056, "from_user_id_str": "429551056", "from_user_name": "Alexis in wonderland", "geo": null, "id": 148832741193027600, "id_str": "148832741193027585", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685421432/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685421432/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Woke up listening to Portugal; the man <3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:03 +0000", "from_user": "PS_Grad", "from_user_id": 427846339, "from_user_id_str": "427846339", "from_user_name": "Name", "geo": null, "id": 148832732804431870, "id_str": "148832732804431872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1672451023/Screen_Shot_2011-12-03_at_9.12.00_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672451023/Screen_Shot_2011-12-03_at_9.12.00_PM_normal.png", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:01 +0000", "from_user": "tayohjudas", "from_user_id": 229694886, "from_user_id_str": "229694886", "from_user_name": "tay pros intimos", "geo": null, "id": 148832723753123840, "id_str": "148832723753123840", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1528264250/tay_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1528264250/tay_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "essa camisa da @cindereIIadrunk me lembra bons momentos na portugal dflkgjfdlkgjdflgdfgjhhhjf mirta", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:31:00 +0000", "from_user": "MarceloLimana", "from_user_id": 393172060, "from_user_id_str": "393172060", "from_user_name": "Marcelo Limana", "geo": null, "id": 148832719428788220, "id_str": "148832719428788224", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1593949698/Imagem_207_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593949698/Imagem_207_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @98SpM: Rihanna contou em seu Twitter que foi v\\u00EDtima de racismo em Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:56 +0000", "from_user": "BayportAquaman", "from_user_id": 69811961, "from_user_id_str": "69811961", "from_user_name": "dave ness jr ", "geo": null, "id": 148832706040565760, "id_str": "148832706040565760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1607999975/17940_1228073422826_1258787759_30569732_7245648_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607999975/17940_1228073422826_1258787759_30569732_7245648_n_normal.jpg", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:55 +0000", "from_user": "X_Pride", "from_user_id": 373953175, "from_user_id_str": "373953175", "from_user_name": "XPride", "geo": null, "id": 148832698117529600, "id_str": "148832698117529603", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1606801478/big_culo_maschile_12_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606801478/big_culo_maschile_12_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Superpride: Rihanna sofre racismo em Portugal http://t.co/2ywcDCuB via @NelsonSheep", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:54 +0000", "from_user": "sergiolopezmir", "from_user_id": 307452066, "from_user_id_str": "307452066", "from_user_name": "sergioLM 67", "geo": null, "id": 148832697207373820, "id_str": "148832697207373826", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1650135623/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1650135623/images_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @lemondefr: Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/zeOt21vW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:54 +0000", "from_user": "NelsonSheep", "from_user_id": 40680788, "from_user_id_str": "40680788", "from_user_name": "Nelson Sheep", "geo": null, "id": 148832694900502530, "id_str": "148832694900502528", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1591760397/Ab6Ws_xCMAITVxA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591760397/Ab6Ws_xCMAITVxA_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Superpride: Rihanna sofre racismo em Portugal http://t.co/FslHWs1w via @NelsonSheep", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:53 +0000", "from_user": "StudyingAbroad", "from_user_id": 16629564, "from_user_id_str": "16629564", "from_user_name": "StudyingAbroad", "geo": null, "id": 148832689829576700, "id_str": "148832689829576705", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/881431724/sab_icon_v2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/881431724/sab_icon_v2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Trivia! RT @frugaltraveler: Buonos dies! OK, no googling allowed, what is the second official language of Portugal? http://t.co/d74JIO7d", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:48 +0000", "from_user": "Superpride_", "from_user_id": 128892502, "from_user_id_str": "128892502", "from_user_name": "Superpride", "geo": null, "id": 148832670284124160, "id_str": "148832670284124161", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/957022001/twitter_SP_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/957022001/twitter_SP_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Superpride: Rihanna sofre racismo em Portugal http://t.co/qhu8LdHA via @NelsonSheep", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:47 +0000", "from_user": "Nana2319", "from_user_id": 281565035, "from_user_id_str": "281565035", "from_user_name": "MarianaPereira", "geo": null, "id": 148832666815430660, "id_str": "148832666815430657", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1684896733/IMG_0898_-_C_pia_-_C_pia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684896733/IMG_0898_-_C_pia_-_C_pia_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@justinbieber HEEEEEEYYY! #ILoveYou Come to #PORTUGAL I wanna see you", "to_user": "justinbieber", "to_user_id": 27260086, "to_user_id_str": "27260086", "to_user_name": "Justin Bieber"}, +{"created_at": "Mon, 19 Dec 2011 18:30:46 +0000", "from_user": "1casaecohomes", "from_user_id": 17333475, "from_user_id_str": "17333475", "from_user_name": "Cristina Sanchez", "geo": null, "id": 148832660238774270, "id_str": "148832660238774274", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1602663768/1Casa_Twitter_Icon_L_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1602663768/1Casa_Twitter_Icon_L_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Global viewr Featured Agent RE/MAX #Portugal ~ Nuno\\nMiguel ~ - http://t.co/ZZGw8RnH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:45 +0000", "from_user": "ForSaleiAlgarve", "from_user_id": 386105591, "from_user_id_str": "386105591", "from_user_name": "For Sale in Algarve", "geo": null, "id": 148832659907420160, "id_str": "148832659907420160", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1575941712/For_Sale_In_Algarve_Twitter_Logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575941712/For_Sale_In_Algarve_Twitter_Logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Villa for sale in Lagoa Benagil | 4 bedrooms ~ For-Sale-in-Algarve ~\\n#Algarve #Portugal - http://t.co/6BF1PeKX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:45 +0000", "from_user": "paulocfigueired", "from_user_id": 43205791, "from_user_id_str": "43205791", "from_user_name": "PauloCesarFigueiredo", "geo": null, "id": 148832657751552000, "id_str": "148832657751552000", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/237061225/PauloMSN_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/237061225/PauloMSN_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Ces\\u00E1ria \\u00C9vora: \\u00C1frica perde uma voz, o C\\u00E9u ganha uma alma - Pravda.Ru http://t.co/q1VYlwTO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:44 +0000", "from_user": "hughlandsman", "from_user_id": 14844732, "from_user_id_str": "14844732", "from_user_name": "Hugh Landsman", "geo": null, "id": 148832651745296400, "id_str": "148832651745296384", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/331563001/head_silhouette1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/331563001/head_silhouette1_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "No dice at C check in, wonder if the people at TAP Portugal will check me in.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:43 +0000", "from_user": "ta_nascimento", "from_user_id": 33332157, "from_user_id_str": "33332157", "from_user_name": "Tais Nascimento", "geo": null, "id": 148832647643283460, "id_str": "148832647643283456", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1468555295/DSC00394_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1468555295/DSC00394_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Rihanna conta que foi v\\u00EDtima de racismo em Portugal - O Globo http://t.co/kRM4NjG6 via @JornalOGlobo Nem Rihanna escapa desta merda....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:42 +0000", "from_user": "Privat_Kredit", "from_user_id": 388111107, "from_user_id_str": "388111107", "from_user_name": "Annes Privatkredit", "geo": null, "id": 148832645864882180, "id_str": "148832645864882176", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1581227011/privatkredit_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1581227011/privatkredit_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IWF gibt n\\u00E4chste Hilfstranche f\\u00FCr Portugal frei: \\u00A0\\u00A0 WASHINGTON (AFP)--Der Internationale W\\u00E4hrungsfonds (IWF) hat... http://t.co/LyHVXxdq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:39 +0000", "from_user": "ZNENDrii", "from_user_id": 136810331, "from_user_id_str": "136810331", "from_user_name": "ZNENDrii", "geo": null, "id": 148832633936293900, "id_str": "148832633936293888", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1483674601/blue-lily_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1483674601/blue-lily_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "http://t.co/jmCqhZ8Y Thanks Portugal , our Half black,South European friends,4 making racially confused Rihanna , accept her blackness.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:37 +0000", "from_user": "nicthemartian", "from_user_id": 283274182, "from_user_id_str": "283274182", "from_user_name": "Nicholai Marston ", "geo": null, "id": 148832625753206800, "id_str": "148832625753206784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1314360438/P8202002_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1314360438/P8202002_normal.JPG", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "weh ras deh wen mi deh a portugal a train wid sporting juniors", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:34 +0000", "from_user": "MartaRebocho", "from_user_id": 441032217, "from_user_id_str": "441032217", "from_user_name": "Marta Rebocho", "geo": null, "id": 148832610028748800, "id_str": "148832610028748804", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702504675/tumblr_lm58iekFhp1qgny6so1_500_large_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702504675/tumblr_lm58iekFhp1qgny6so1_500_large_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@zaynmalik can you follow me? You are beautiful!!! You have to come to Portugal \\u2665", "to_user": "zaynmalik", "to_user_id": 176566242, "to_user_id_str": "176566242", "to_user_name": "zaynmalik1D"}, +{"created_at": "Mon, 19 Dec 2011 18:30:33 +0000", "from_user": "goknur8", "from_user_id": 252614831, "from_user_id_str": "252614831", "from_user_name": "Goknur", "geo": null, "id": 148832609487687680, "id_str": "148832609487687680", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1596442633/1398203521_5_8e2X_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596442633/1398203521_5_8e2X_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@erivaldoJWZ veel plezier in Portugal x", "to_user": "erivaldoJWZ", "to_user_id": 274065320, "to_user_id_str": "274065320", "to_user_name": "Erivaldo "}, +{"created_at": "Mon, 19 Dec 2011 18:30:33 +0000", "from_user": "lipeferreiraa", "from_user_id": 41880234, "from_user_id_str": "41880234", "from_user_name": "Filipe Ferreira", "geo": null, "id": 148832609143767040, "id_str": "148832609143767040", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1419766107/filipee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1419766107/filipee_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "aee logo menos to indo pra guarulhos e a noite partiu portugal =))))", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:32 +0000", "from_user": "DoraHMatos", "from_user_id": 271027891, "from_user_id_str": "271027891", "from_user_name": "Dora Henriques Matos", "geo": null, "id": 148832602453843970, "id_str": "148832602453843968", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1307125689/Untitled-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1307125689/Untitled-1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Un periodista espa\\u00F1ol pregunta y escribe \\u00BFPor qu\\u00E9 el caf\\u00E9 sabe siempre bien en Portugal? (y aqu\\u00ED no) http://t.co/he4kofzq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:30 +0000", "from_user": "irur_zun", "from_user_id": 434271385, "from_user_id_str": "434271385", "from_user_name": "I\\u00F1igo Irurzun", "geo": null, "id": 148832596539883520, "id_str": "148832596539883521", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687314082/image__18__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687314082/image__18__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MaddalenLoidi historiakoa (espaata portugal) pasa gmailea!", "to_user": "MaddalenLoidi", "to_user_id": 438460424, "to_user_id_str": "438460424", "to_user_name": "Maddalen Loidi"}, +{"created_at": "Mon, 19 Dec 2011 18:30:30 +0000", "from_user": "Brendatenhoeve", "from_user_id": 380926054, "from_user_id_str": "380926054", "from_user_name": "Brenda ten Hoeve", "geo": null, "id": 148832594430132220, "id_str": "148832594430132224", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1634215113/brendaxx_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634215113/brendaxx_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "http://t.co/SUNnaHva Klaar om naar portugal te gaan met mn roze koffer haha leuk verjaardagscadeau van ... http://t.co/sgPFJDIV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:28 +0000", "from_user": "fhenriques", "from_user_id": 8884772, "from_user_id_str": "8884772", "from_user_name": "Filipe S. Henriques", "geo": null, "id": 148832588612636670, "id_str": "148832588612636672", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1645725492/foto_perfil_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1645725492/foto_perfil_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/w8A1D0yz #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:20 +0000", "from_user": "SocMeDotMe", "from_user_id": 371995419, "from_user_id_str": "371995419", "from_user_name": "Karl Lingenfelder", "geo": null, "id": 148832554638782460, "id_str": "148832554638782464", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1546120426/SocMe_Twitter_Icon_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546120426/SocMe_Twitter_Icon_2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Villa for sale in Lagoa Benagil | 4 bedrooms ~ For-Sale-in-Algarve ~\\n#Algarve #Portugal - http://t.co/SrZIKMN4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:17 +0000", "from_user": "rhyswynne", "from_user_id": 7226742, "from_user_id_str": "7226742", "from_user_name": "Rhys Wynne", "geo": null, "id": 148832538683650050, "id_str": "148832538683650048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1428783781/a7d2fd30-5855-40b7-8ec1-643224563efd_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1428783781/a7d2fd30-5855-40b7-8ec1-643224563efd_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @Pamela_Lund: RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/zSIcQYy9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:08 +0000", "from_user": "iGRQ", "from_user_id": 135204035, "from_user_id_str": "135204035", "from_user_name": "iGRQ Research", "geo": null, "id": 148832502872674300, "id_str": "148832502872674305", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1191165919/iGRQ_Twitter_Avatar.001_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1191165919/iGRQ_Twitter_Avatar.001_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal http://t.co/lEvYlTWT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:30:03 +0000", "from_user": "pecisk", "from_user_id": 14819764, "from_user_id_str": "14819764", "from_user_name": "P\\u0113teris Kri\\u0161j\\u0101nis", "geo": null, "id": 148832482836484100, "id_str": "148832482836484096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1395669574/45394_1575793075309_1250068529_31575304_1942089_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1395669574/45394_1575793075309_1250068529_31575304_1942089_n_normal.jpg", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:59 +0000", "from_user": "ShalomNatal", "from_user_id": 77448299, "from_user_id_str": "77448299", "from_user_name": "Shalom Natal", "geo": null, "id": 148832466143154180, "id_str": "148832466143154176", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1454253132/201593_124468830964877_100002052830421_171898_8321290_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1454253132/201593_124468830964877_100002052830421_171898_8321290_o_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Carmad\\u00E9lio * S\\u00E9rio! Voc\\u00EA faria parte dos 95%?: Dias antes do\\u00A0jogo entre Benfica e Sporting (1-0), em Portugal, a... http://t.co/UFdTvOMG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:59 +0000", "from_user": "anabibliosouza", "from_user_id": 58915809, "from_user_id_str": "58915809", "from_user_name": "\\u273FAna Souza\\u273F", "geo": null, "id": 148832465019093000, "id_str": "148832465019092993", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694903420/jesus-coracao_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694903420/jesus-coracao_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "* S\\u00E9rio! Voc\\u00EA faria parte dos 95%?: Dias antes do\\u00A0jogo entre Benfica e Sporting (1-0), em Portugal, a Coca-Cola ... http://t.co/ITF1rHGv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:50 +0000", "from_user": "weickmann", "from_user_id": 63666185, "from_user_id_str": "63666185", "from_user_name": "Philippe Weickmann", "geo": null, "id": 148832428528631800, "id_str": "148832428528631808", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1081716678/philippe-weickmann_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1081716678/philippe-weickmann_normal.png", "source": "<a href="http://www.visibli.com" rel="nofollow">Visibli</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/s8rrxlXD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:49 +0000", "from_user": "meninasemusica", "from_user_id": 256500127, "from_user_id_str": "256500127", "from_user_name": "Meninas e M\\u00FAsica", "geo": null, "id": 148832422409158660, "id_str": "148832422409158656", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1258616710/AVATAR_MENINAS_E_MUSICA__cortado__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1258616710/AVATAR_MENINAS_E_MUSICA__cortado__normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "V\\u00EDdeo: Rihanna sai correndo do palco para vomitar durante show em Portugal? http://t.co/OKWU7VwP eeeeeeeita", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:47 +0000", "from_user": "Pabjojot", "from_user_id": 212762057, "from_user_id_str": "212762057", "from_user_name": "Paulina B Jojot", "geo": null, "id": 148832413592715260, "id_str": "148832413592715264", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1164962416/Paulina_foto_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1164962416/Paulina_foto_normal.JPG", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @RedEconomica: El FMI autoriza el desembolso de 2.900 millones del siguiente tramo del rescate de Portugal http://t.co/unOOissB [Yahoo] #Economia", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:46 +0000", "from_user": "FATINE69", "from_user_id": 438585510, "from_user_id_str": "438585510", "from_user_name": "FATINE", "geo": null, "id": 148832411298430980, "id_str": "148832411298430977", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @lemondefr: Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/zeOt21vW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:43 +0000", "from_user": "Nielsbak", "from_user_id": 252131116, "from_user_id_str": "252131116", "from_user_name": "Niels Bakker", "geo": null, "id": 148832399864766460, "id_str": "148832399864766464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1445426603/Afb0009_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1445426603/Afb0009_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @DJFUNKD: Had some great gigs last weekend! Portugal-Lisbon was off the hook // COMING UP THIS WEEK: Marrakech-Morocco / Bootleg Pack 04 Release", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:13 +0000", "from_user": "Dima_Alexandre", "from_user_id": 42737998, "from_user_id_str": "42737998", "from_user_name": "Dave Vel\\u00E1squez", "geo": null, "id": 148832270290133000, "id_str": "148832270290132993", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1582479599/270539_10150326755573714_725083713_9549598_1801727_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1582479599/270539_10150326755573714_725083713_9549598_1801727_n_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "\"@lemondefr: Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/xria2Iho\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:10 +0000", "from_user": "andyrahmansyah", "from_user_id": 102359936, "from_user_id_str": "102359936", "from_user_name": "Andy Rahmansyah", "geo": null, "id": 148832261012324350, "id_str": "148832261012324353", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1640687755/botak_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640687755/botak_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Hashim0307: I remember when North Korea lost 7-0 to Portugal in WC2010, media in North Korea reported the match ended 0-0. Hilarious.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:05 +0000", "from_user": "vesper385", "from_user_id": 20710912, "from_user_id_str": "20710912", "from_user_name": "Adin Heller", "geo": null, "id": 148832239529115650, "id_str": "148832239529115649", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1624587689/turquoisesparkle_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624587689/turquoisesparkle_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "confusing when preceded by an @TomCruise tweet #otherIMF RT @BBCWorld: #IMF approves release of 2.9bn euros to Portugal http://t.co/UvEW1ogR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:04 +0000", "from_user": "klubbatmosphere", "from_user_id": 16882251, "from_user_id_str": "16882251", "from_user_name": "urbannightlife", "geo": null, "id": 148832232801447940, "id_str": "148832232801447936", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/62507526/WE_floyd_noFACE_avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/62507526/WE_floyd_noFACE_avatar_normal.jpg", "source": "<a href="http://publicize.wp.com/" rel="nofollow">WordPress.com</a>", "text": "Rihanna Abused in Portugal http://t.co/FqL0GAvc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:04 +0000", "from_user": "portugalforum", "from_user_id": 41989700, "from_user_id_str": "41989700", "from_user_name": "portugalforum", "geo": null, "id": 148832232629481470, "id_str": "148832232629481473", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/487842239/pfo_icon_gr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/487842239/pfo_icon_gr_normal.jpg", "source": "<a href="http://www.portugalforum.org" rel="nofollow">portugalforum.org</a>", "text": "EuroNews: Portugal verschreibt sich einen harten Sparkurs: Angesichts der drohenden Pleite hat das portugiesische http://t.co/rxx2zG25", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:03 +0000", "from_user": "jennablan", "from_user_id": 110302086, "from_user_id_str": "110302086", "from_user_name": "Jennifer Ablan", "geo": null, "id": 148832231975161860, "id_str": "148832231975161856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1200243910/juniper3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1200243910/juniper3_normal.jpg", "source": "<a href="http://reuters.com/tools/mobile" rel="nofollow">Thomson Reuters News Pro</a>", "text": "IMF approves 2.9 billion euro tranche to Portugal http://t.co/e6PYgK8m", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:29:03 +0000", "from_user": "RedEconomica", "from_user_id": 320309673, "from_user_id_str": "320309673", "from_user_name": "La Red Econ\\u00F3mica", "geo": null, "id": 148832231115337730, "id_str": "148832231115337728", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1403366820/19-06-2011_03-10-16_p-m-_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1403366820/19-06-2011_03-10-16_p-m-_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "El FMI autoriza el desembolso de 2.900 millones del siguiente tramo del rescate de Portugal http://t.co/unOOissB [Yahoo] #Economia", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:54 +0000", "from_user": "BearWynn", "from_user_id": 270192638, "from_user_id_str": "270192638", "from_user_name": "Barry Wynn", "geo": null, "id": 148832193106546700, "id_str": "148832193106546690", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1557749825/100_1921_uga_7_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1557749825/100_1921_uga_7_normal", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:54 +0000", "from_user": "StephanieLaurax", "from_user_id": 431208690, "from_user_id_str": "431208690", "from_user_name": "Stephanie Hesp", "geo": null, "id": 148832192007634940, "id_str": "148832192007634945", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1680022670/2011-10-25_21.52.24_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680022670/2011-10-25_21.52.24_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Christmas Eve, Christmas Day and Portugal on boxing day! Got a very exciting week ahead :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:52 +0000", "from_user": "Vic_Alvarado", "from_user_id": 135549931, "from_user_id_str": "135549931", "from_user_name": "Vic", "geo": null, "id": 148832183400927230, "id_str": "148832183400927232", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/989523311/Hand..._normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/989523311/Hand..._normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @lemondefr: Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/zeOt21vW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:46 +0000", "from_user": "LuArFever", "from_user_id": 331335418, "from_user_id_str": "331335418", "from_user_name": "LuArFever", "geo": null, "id": 148832157077475330, "id_str": "148832157077475329", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1672387618/catsn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672387618/catsn_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@RebeldeFC_ChayS Filipa !! Moras em que zona de portugal?", "to_user": "RebeldeFC_ChayS", "to_user_id": 433556867, "to_user_id_str": "433556867", "to_user_name": "Taty do Chay :D", "in_reply_to_status_id": 148831810493755400, "in_reply_to_status_id_str": "148831810493755392"}, +{"created_at": "Mon, 19 Dec 2011 18:28:39 +0000", "from_user": "hihelloimailidh", "from_user_id": 51259885, "from_user_id_str": "51259885", "from_user_name": "Ailidh Kinney", "geo": null, "id": 148832128669458430, "id_str": "148832128669458433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1596361443/meeeee_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596361443/meeeee_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "My dad's going to Portugal tomorrow so I hope we get our Christmas presents tonight.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:23 +0000", "from_user": "silverliningguy", "from_user_id": 354550549, "from_user_id_str": "354550549", "from_user_name": "Silver Lining", "geo": null, "id": 148832063246704640, "id_str": "148832063246704640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1493822418/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1493822418/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:17 +0000", "from_user": "Impronta", "from_user_id": 10833162, "from_user_id_str": "10833162", "from_user_name": "Jorge Ramos", "geo": null, "id": 148832035476221950, "id_str": "148832035476221952", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1562106490/tw_12701645_1317112096_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1562106490/tw_12701645_1317112096_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @Dirigentes: El FMI autoriza el desembolso del siguiente tramo del rescate de Portugal http://t.co/BQsoieVk #economia #ecofin", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:08 +0000", "from_user": "vandelium", "from_user_id": 248471826, "from_user_id_str": "248471826", "from_user_name": "NINO DEL PIERO", "geo": null, "id": 148832001330393100, "id_str": "148832001330393089", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1413092232/cubo-rubick-05_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1413092232/cubo-rubick-05_normal.gif", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:08 +0000", "from_user": "adriannacullen2", "from_user_id": 272655210, "from_user_id_str": "272655210", "from_user_name": "Adrianna Cullen", "geo": null, "id": 148832000374091780, "id_str": "148832000374091777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696038555/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696038555/image_normal.jpg", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:08 +0000", "from_user": "Jendral_29", "from_user_id": 246801834, "from_user_id_str": "246801834", "from_user_name": "Yusuf Syakir", "geo": null, "id": 148831998218223600, "id_str": "148831998218223617", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1646154750/IMG0059_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646154750/IMG0059_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Mau lu apa ceng? bahasa spanyol apa portugal? hah? sbut aja?RT @fadhilfary Bisanya cuman whatever doang :-p", "to_user": "fadhilfary", "to_user_id": 135844848, "to_user_id_str": "135844848", "to_user_name": "fadhil razan w", "in_reply_to_status_id": 148831699432775680, "in_reply_to_status_id_str": "148831699432775681"} +, +{"created_at": "Mon, 19 Dec 2011 18:28:08 +0000", "from_user": "vandelium", "from_user_id": 248471826, "from_user_id_str": "248471826", "from_user_name": "NINO DEL PIERO", "geo": null, "id": 148832001330393100, "id_str": "148832001330393089", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1413092232/cubo-rubick-05_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1413092232/cubo-rubick-05_normal.gif", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:08 +0000", "from_user": "adriannacullen2", "from_user_id": 272655210, "from_user_id_str": "272655210", "from_user_name": "Adrianna Cullen", "geo": null, "id": 148832000374091780, "id_str": "148832000374091777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1696038555/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696038555/image_normal.jpg", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:08 +0000", "from_user": "Jendral_29", "from_user_id": 246801834, "from_user_id_str": "246801834", "from_user_name": "Yusuf Syakir", "geo": null, "id": 148831998218223600, "id_str": "148831998218223617", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1646154750/IMG0059_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646154750/IMG0059_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Mau lu apa ceng? bahasa spanyol apa portugal? hah? sbut aja?RT @fadhilfary Bisanya cuman whatever doang :-p", "to_user": "fadhilfary", "to_user_id": 135844848, "to_user_id_str": "135844848", "to_user_name": "fadhil razan w", "in_reply_to_status_id": 148831699432775680, "in_reply_to_status_id_str": "148831699432775681"}, +{"created_at": "Mon, 19 Dec 2011 18:28:04 +0000", "from_user": "MdAdnanShaikh", "from_user_id": 433434599, "from_user_id_str": "433434599", "from_user_name": "Md. Adnan Shaikh", "geo": null, "id": 148831983798194180, "id_str": "148831983798194179", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1688717782/176025_1854764886849_1172619485_2275281_5247028_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688717782/176025_1854764886849_1172619485_2275281_5247028_o_normal.jpg", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:28:04 +0000", "from_user": "AraaFts", "from_user_id": 210632613, "from_user_id_str": "210632613", "from_user_name": "Ara Fleites", "geo": null, "id": 148831983110332400, "id_str": "148831983110332416", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1659543317/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659543317/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Como me encanta Portugal. The Man.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:58 +0000", "from_user": "JoffreyMick", "from_user_id": 255731473, "from_user_id_str": "255731473", "from_user_name": "Joffrey Mick", "geo": null, "id": 148831956904316930, "id_str": "148831956904316929", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1276794848/Photo_Brutus_and_me__Louvre__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1276794848/Photo_Brutus_and_me__Louvre__normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @lemondefr: Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/zeOt21vW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:58 +0000", "from_user": "CenAriella", "from_user_id": 367752827, "from_user_id_str": "367752827", "from_user_name": "Cene \\u2716\\u2765", "geo": null, "id": 148831955637637120, "id_str": "148831955637637120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1701188968/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701188968/image_normal.jpg", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:55 +0000", "from_user": "cbattistella", "from_user_id": 224355892, "from_user_id_str": "224355892", "from_user_name": "Cassia BATTISTELLA", "geo": null, "id": 148831946288533500, "id_str": "148831946288533504", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1626096564/Photo_du_7908882-10-___02.11_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626096564/Photo_du_7908882-10-___02.11_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @lemondefr: Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/zeOt21vW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:49 +0000", "from_user": "joyretired", "from_user_id": 104136175, "from_user_id_str": "104136175", "from_user_name": "joy retired", "geo": null, "id": 148831920699080700, "id_str": "148831920699080704", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1028841628/imagesCANS0LY2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1028841628/imagesCANS0LY2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/sr8GLdaH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:43 +0000", "from_user": "Jannekevd94", "from_user_id": 268687784, "from_user_id_str": "268687784", "from_user_name": "Janneke ", "geo": null, "id": 148831896632180740, "id_str": "148831896632180736", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1591949943/met_silvie_vd_vaart2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591949943/met_silvie_vd_vaart2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@jitskeverhagen hah nou niet naar amerika en portugal hoor haha!", "to_user": "jitskeverhagen", "to_user_id": 26261725, "to_user_id_str": "26261725", "to_user_name": "Jitske ", "in_reply_to_status_id": 148826959445635070, "in_reply_to_status_id_str": "148826959445635072"}, +{"created_at": "Mon, 19 Dec 2011 18:27:41 +0000", "from_user": "Y02", "from_user_id": 21055568, "from_user_id_str": "21055568", "from_user_name": "Yasser\\u2122", "geo": null, "id": 148831887819943940, "id_str": "148831887819943936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1664290075/11_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664290075/11_normal.jpg", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:40 +0000", "from_user": "Valeriasnews", "from_user_id": 235915008, "from_user_id_str": "235915008", "from_user_name": "Valeria", "geo": null, "id": 148831880207278080, "id_str": "148831880207278080", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1210873414/spirale_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1210873414/spirale_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @lemondefr: Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/zeOt21vW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:38 +0000", "from_user": "Bruno___Macedo", "from_user_id": 47113044, "from_user_id_str": "47113044", "from_user_name": "Bruno Macedo", "geo": null, "id": 148831874268139520, "id_str": "148831874268139520", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700603811/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700603811/image_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @lemondefr: Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/zeOt21vW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:34 +0000", "from_user": "Juzims", "from_user_id": 56671665, "from_user_id_str": "56671665", "from_user_name": "Juris Petrovs", "geo": null, "id": 148831858229116930, "id_str": "148831858229116928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/312997871/melf_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/312997871/melf_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:27 +0000", "from_user": "Nerodiaman", "from_user_id": 125466455, "from_user_id_str": "125466455", "from_user_name": "Jean-Pierre LANEZ", "geo": null, "id": 148831829133242370, "id_str": "148831829133242369", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @lemondefr: Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/zeOt21vW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:22 +0000", "from_user": "MarinhaPT", "from_user_id": 29463124, "from_user_id_str": "29463124", "from_user_name": "Marinha Portuguesa", "geo": null, "id": 148831808342077440, "id_str": "148831808342077441", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/398193459/logomarinha2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/398193459/logomarinha2_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Portugal ganha a candidatura \\u00E0 Organiza\\u00E7\\u00E3o do Congresso Internacional de Museus Mar\\u00EDtimos em 2013: http://t.co/XcHOaT4R via @AddThis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:13 +0000", "from_user": "sidaosantista", "from_user_id": 281031232, "from_user_id_str": "281031232", "from_user_name": "sidney lee", "geo": null, "id": 148831769372794880, "id_str": "148831769372794880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1347212174/16-32_Stelzer_GaryLocke_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1347212174/16-32_Stelzer_GaryLocke_normal.jpg", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:11 +0000", "from_user": "SubComJohn", "from_user_id": 23720092, "from_user_id_str": "23720092", "from_user_name": "SubComJohn", "geo": null, "id": 148831759210004480, "id_str": "148831759210004480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1550413385/redblackworker_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1550413385/redblackworker_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "WSM | The crisis & EU periphery - anarchists from Ireland, Portugal, Spain discuss impact & resistance | Mixcloud\\nhttp://t.co/1C4BrJpT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:10 +0000", "from_user": "Dirigentes", "from_user_id": 166501881, "from_user_id_str": "166501881", "from_user_name": "Dirigentes + Espa\\u00F1a", "geo": null, "id": 148831757897183230, "id_str": "148831757897183233", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1077832803/1c2b06b_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1077832803/1c2b06b_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "El FMI autoriza el desembolso del siguiente tramo del rescate de Portugal http://t.co/BQsoieVk #economia #ecofin", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:08 +0000", "from_user": "Politica_I24", "from_user_id": 353857395, "from_user_id_str": "353857395", "from_user_name": "Pol\\u00EDtica 24", "geo": null, "id": 148831748921364480, "id_str": "148831748921364480", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1491963497/politica_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1491963497/politica_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "El FMI autoriza el desembolso del siguiente tramo del rescate de Portugal http://t.co/qtGWCMui #Informador24", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:04 +0000", "from_user": "djelsonido", "from_user_id": 367368620, "from_user_id_str": "367368620", "from_user_name": "EL SONIDO", "geo": null, "id": 148831731796029440, "id_str": "148831731796029441", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1679437103/123_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679437103/123_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "RT @DJFUNKD: Had some great gigs last weekend! Portugal-Lisbon was off the hook // COMING UP THIS WEEK: Marrakech-Morocco / Bootleg Pack 04 Release@", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:04 +0000", "from_user": "angelbass_", "from_user_id": 135694638, "from_user_id_str": "135694638", "from_user_name": "Angel Tirado", "geo": null, "id": 148831730852306940, "id_str": "148831730852306944", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1680490400/AngelBass_EE_9C_B7yat_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680490400/AngelBass_EE_9C_B7yat_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "No, pero tiene la de italia, la de inglaterra y la de portugal @jesusportillo11", "to_user": "jesusportillo11", "to_user_id": 189428454, "to_user_id_str": "189428454", "to_user_name": "jesus portillo", "in_reply_to_status_id": 148830627460952060, "in_reply_to_status_id_str": "148830627460952064"}, +{"created_at": "Mon, 19 Dec 2011 18:27:04 +0000", "from_user": "lemondefr", "from_user_id": 24744541, "from_user_id_str": "24744541", "from_user_name": "Le Monde", "geo": null, "id": 148831729463996400, "id_str": "148831729463996416", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1430438688/IconeTwClassique_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1430438688/IconeTwClassique_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/zeOt21vW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:02 +0000", "from_user": "ObeyBieberconda", "from_user_id": 53453645, "from_user_id_str": "53453645", "from_user_name": "sara", "geo": null, "id": 148831720630784000, "id_str": "148831720630784000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702190711/Snapshot_20111217_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702190711/Snapshot_20111217_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "was really harry potter born in portugal? lol i dont think so. dont start rumours.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:27:00 +0000", "from_user": "Clorindadtl", "from_user_id": 430068782, "from_user_id_str": "430068782", "from_user_name": "Clorinda Pedri", "geo": null, "id": 148831716113526800, "id_str": "148831716113526784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1677562276/tsq0hmial4_128151810-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677562276/tsq0hmial4_128151810-2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Michelin Green Sightseeing Travel Guide to Portugal (Spanish Language Edition): http://t.co/hsirj9WB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:55 +0000", "from_user": "AnaCosta73", "from_user_id": 429892997, "from_user_id_str": "429892997", "from_user_name": "Ana Costa", "geo": null, "id": 148831694114406400, "id_str": "148831694114406400", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1696476204/IMG0266A_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696476204/IMG0266A_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "L\\u00E1 por UMA pessoa ter criticado a Rihanna pela sua ra\\u00E7a, n\\u00E3o quer dizer que Portugal seja um racista :(", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:50 +0000", "from_user": "ChargingRam", "from_user_id": 406639113, "from_user_id_str": "406639113", "from_user_name": "Charging Ram", "geo": null, "id": 148831673549725700, "id_str": "148831673549725698", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627707207/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627707207/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Time to end the war on drugs: Richard Branson http://t.co/treoqndQ In 2001, Portugal abolished penalties for personal possession of drugs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:46 +0000", "from_user": "sophietyler_", "from_user_id": 242423373, "from_user_id_str": "242423373", "from_user_name": "Sophie Tyler", "geo": null, "id": 148831655912685570, "id_str": "148831655912685568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1552076359/me_charlotte_nd_mikka_xx_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552076359/me_charlotte_nd_mikka_xx_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "wth, i had \\u00A35 credit on my phone before i came to portugal, ive only been here 2 days, only texted once and its all gone? grr!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:46 +0000", "from_user": "prensacom", "from_user_id": 27011708, "from_user_id_str": "27011708", "from_user_name": "prensacom", "geo": null, "id": 148831654843133950, "id_str": "148831654843133953", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1476481321/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1476481321/twitter_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Portugal denuncia violaci\\u00F3n de derechos humanos a extranjeros detenidos: http://t.co/NvoTIqlI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:38 +0000", "from_user": "leenguru", "from_user_id": 85374835, "from_user_id_str": "85374835", "from_user_name": "leenguru", "geo": null, "id": 148831623985639420, "id_str": "148831623985639424", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/491408555/Untitled-1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/491408555/Untitled-1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF keurt lening aan Portugal goed: Het Internationaal Monetair Fonds (IMF) is maandag akkoord gegaan met een ni... http://t.co/cxm4jZ8M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:38 +0000", "from_user": "CatiaVmarques", "from_user_id": 218140311, "from_user_id_str": "218140311", "from_user_name": "C\\u00E1tia Marques", "geo": null, "id": 148831620294639600, "id_str": "148831620294639616", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1512947588/IMG_0387_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1512947588/IMG_0387_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Est\\u00E1 aberto o concurso das cunhas de Portugal. Quem me quiser \"cunhar\" basta enviar-me um e-mail com a proposta. Que ganhe o melhor!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:34 +0000", "from_user": "raquelongras", "from_user_id": 160556288, "from_user_id_str": "160556288", "from_user_name": "- Raquel '", "geo": null, "id": 148831607262949380, "id_str": "148831607262949377", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1582001781/2011-09-21_18.04.25_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1582001781/2011-09-21_18.04.25_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@justinbieber u're the best! PORTUGAL LOVES YOU", "to_user": "justinbieber", "to_user_id": 27260086, "to_user_id_str": "27260086", "to_user_name": "Justin Bieber"}, +{"created_at": "Mon, 19 Dec 2011 18:26:30 +0000", "from_user": "bernardinomucci", "from_user_id": 222619943, "from_user_id_str": "222619943", "from_user_name": "bernard mucciolo", "geo": null, "id": 148831586371117060, "id_str": "148831586371117057", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @negociosportuga: FMI aprovou terceira tranche do empr\\u00E9stimo a Portugal: O Fundo Monet\\u00E1rio Internacional aprovou hoje a terceira t... http://t.co/PiYGWa5s", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:20 +0000", "from_user": "6MON2PANAME", "from_user_id": 75743430, "from_user_id_str": "75743430", "from_user_name": "6MON2PANAME", "geo": null, "id": 148831548525903870, "id_str": "148831548525903873", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676877630/IMG_5384_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676877630/IMG_5384_normal.JPG", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Le #FMI approuve un versement de 2,9 milliards d'euros au #Portugal http://t.co/gp0IIKZi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:18 +0000", "from_user": "heterodoxos", "from_user_id": 420951529, "from_user_id_str": "420951529", "from_user_name": "Econom\\u00EDa Heterodoxa", "geo": null, "id": 148831537452957700, "id_str": "148831537452957696", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1656828306/the_new_capitalism_261075_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656828306/the_new_capitalism_261075_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "El FMI autoriza el desembolso de 2.900 millones del siguiente tramo del rescate de Portugal http://t.co/2xh2pFXW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:12 +0000", "from_user": "neiallswheel", "from_user_id": 20319497, "from_user_id_str": "20319497", "from_user_name": "neiall mullery", "geo": null, "id": 148831514577211400, "id_str": "148831514577211392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1213256991/whistle_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1213256991/whistle_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Time to end #war on #drugs 50%>80% of all #theft worldwide is by druggies. Portugal's 10 year experiment http://t.co/jDRK8OTo via @virgin", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:26:05 +0000", "from_user": "ellenchaffin", "from_user_id": 47162814, "from_user_id_str": "47162814", "from_user_name": "Ellen Chaffin", "geo": null, "id": 148831483593891840, "id_str": "148831483593891841", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1268794548/103_1372-_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1268794548/103_1372-_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @Yara2222: \\u201C@thiprincipe: Kkkkk nao sei, mas falta pouco! RT @ellenchaffin: @thiprincipe onde a gente clica pra 2012 chegar logo ?\\u201De em portugal?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:57 +0000", "from_user": "alo_alonso", "from_user_id": 16017932, "from_user_id_str": "16017932", "from_user_name": "Marcos Alonso", "geo": null, "id": 148831450106560500, "id_str": "148831450106560512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/897339694/DSC04396_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/897339694/DSC04396_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @Pamela_Lund: RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/zSIcQYy9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:52 +0000", "from_user": "IsSoto", "from_user_id": 435581427, "from_user_id_str": "435581427", "from_user_name": "Soto", "geo": null, "id": 148831429340569600, "id_str": "148831429340569601", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693206922/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693206922/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@B_Awad Nome digas qnose parecen!lo hacen adrede pa qno me aprenda madrid y sus carreteras!qcojes1tunel y cnd consigues salir tas n portugal", "to_user": "B_Awad", "to_user_id": 284696478, "to_user_id_str": "284696478", "to_user_name": "Bel\\u00E9n Awad G\\u00F3mez", "in_reply_to_status_id": 148753001903964160, "in_reply_to_status_id_str": "148753001903964160"}, +{"created_at": "Mon, 19 Dec 2011 18:25:48 +0000", "from_user": "margbrennan", "from_user_id": 50011708, "from_user_id_str": "50011708", "from_user_name": "margaret brennan", "geo": null, "id": 148831411795795970, "id_str": "148831411795795968", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/770771204/brennan_sq2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/770771204/brennan_sq2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @BBCWorld: #IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/eMSquDUh #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:37 +0000", "from_user": "BBCWorld", "from_user_id": 742143, "from_user_id_str": "742143", "from_user_name": "BBC News (World)", "geo": null, "id": 148831366514090000, "id_str": "148831366514089985", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1143173879/BBC_avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1143173879/BBC_avatar_normal.jpg", "source": "<a href="http://www.bbc.co.uk/news/" rel="nofollow">BBC News</a>", "text": "#IMF approves release of 2.9bn euros to #Portugal - latest instalment of bailout loan http://t.co/PabTqV9K #EU #euro", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:35 +0000", "from_user": "BulkNieuws", "from_user_id": 229028900, "from_user_id_str": "229028900", "from_user_name": "BulkNieuws", "geo": null, "id": 148831357227892740, "id_str": "148831357227892736", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1195504786/Image1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1195504786/Image1_normal.png", "source": "<a href="http://www.bulknieuws.nl/" rel="nofollow">BulkNieuws</a>", "text": "BulkNieuws.nl: IMF keurt lening aan Portugal goed http://t.co/hNpaPzAr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:31 +0000", "from_user": "channel5", "from_user_id": 5901282, "from_user_id_str": "5901282", "from_user_name": "channel5", "geo": null, "id": 148831342547832830, "id_str": "148831342547832832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/75330419/channel5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/75330419/channel5_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @Pamela_Lund: RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/zSIcQYy9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:21 +0000", "from_user": "radiobandnewsfm", "from_user_id": 26573303, "from_user_id_str": "26573303", "from_user_name": "R\\u00E1dio BandNews FM", "geo": null, "id": 148831297308065800, "id_str": "148831297308065792", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/109869448/LOGO_BANDNEWSFM_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/109869448/LOGO_BANDNEWSFM_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "O FMI anuncia que vai liberar 2,9 bilh\\u00F5es de euros de uma nova parcela do pacote de resgate financeira para Portugal. http://t.co/T4c8Ufnw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:20 +0000", "from_user": "lucasvon", "from_user_id": 25559706, "from_user_id_str": "25559706", "from_user_name": "Lucas von Silveira", "geo": null, "id": 148831295403851780, "id_str": "148831295403851778", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1656547993/tweet2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656547993/tweet2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "HAHAHA! RI ALTO. RT @gabrielgorgen: @lucasvon tive um colega que COMPROU o resgistro, diretamente de portugal...#idiotamaster", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:18 +0000", "from_user": "HotelFelipeIV", "from_user_id": 214961229, "from_user_id_str": "214961229", "from_user_name": "Hotel Felipe IV", "geo": null, "id": 148831285975068670, "id_str": "148831285975068673", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1167610613/fachada_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1167610613/fachada_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "TAP, de Portugal recibe el premio a la mejor compa\\u00F1\\u00EDa a\\u00E9rea de Europa http://t.co/OaMGJQfV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:15 +0000", "from_user": "randi_bugga", "from_user_id": 65846014, "from_user_id_str": "65846014", "from_user_name": "Jack Blackheart", "geo": null, "id": 148831274382016500, "id_str": "148831274382016512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1144027592/738e809c-1114-484b-9742-68e529028707_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1144027592/738e809c-1114-484b-9742-68e529028707_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Anonymous runs amock in Israel, Finland, Portugal http://t.co/0opC6Exd via @regvulture", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:13 +0000", "from_user": "DJFUNKD", "from_user_id": 38302961, "from_user_id_str": "38302961", "from_user_name": "\\u2714Funk D", "geo": null, "id": 148831266815479800, "id_str": "148831266815479808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/200978655/FNK_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/200978655/FNK_normal.JPG", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Had some great gigs last weekend! Portugal-Lisbon was off the hook // COMING UP THIS WEEK: Marrakech-Morocco / Bootleg Pack 04 Release@", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:10 +0000", "from_user": "kaffiiee", "from_user_id": 64624245, "from_user_id_str": "64624245", "from_user_name": "kfie", "geo": null, "id": 148831252793925630, "id_str": "148831252793925633", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1633196583/marchisio_grinta3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633196583/marchisio_grinta3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Hashim0307: I remember when North Korea lost 7-0 to Portugal in WC2010, media in North Korea reported the match ended 0-0. Hilarious.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:09 +0000", "from_user": "residence_eu", "from_user_id": 240566766, "from_user_id_str": "240566766", "from_user_name": "Residence-eu.com", "geo": null, "id": 148831248834510850, "id_str": "148831248834510848", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1220666375/LogoColorTextBelow_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1220666375/LogoColorTextBelow_normal.jpeg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": ", Sao Bartolomeu De Messines, Portugal, For Sale http://t.co/clM361SC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:09 +0000", "from_user": "RTBFinfo", "from_user_id": 14163474, "from_user_id_str": "14163474", "from_user_name": "RTBF info", "geo": null, "id": 148831248712859650, "id_str": "148831248712859649", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/628292704/logo_rtbfbe_twitter_info_200_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/628292704/logo_rtbfbe_twitter_info_200_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal http://t.co/TOFLDeKx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:09 +0000", "from_user": "residence_eu", "from_user_id": 240566766, "from_user_id_str": "240566766", "from_user_name": "Residence-eu.com", "geo": null, "id": 148831246749937660, "id_str": "148831246749937664", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1220666375/LogoColorTextBelow_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1220666375/LogoColorTextBelow_normal.jpeg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": ", Silves, Portugal, For Sale http://t.co/8VuWvzzz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:08 +0000", "from_user": "residence_eu", "from_user_id": 240566766, "from_user_id_str": "240566766", "from_user_name": "Residence-eu.com", "geo": null, "id": 148831245382582270, "id_str": "148831245382582274", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1220666375/LogoColorTextBelow_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1220666375/LogoColorTextBelow_normal.jpeg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": ", Almancil, Portugal, For Sale http://t.co/jG50xINM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:07 +0000", "from_user": "residence_eu", "from_user_id": 240566766, "from_user_id_str": "240566766", "from_user_name": "Residence-eu.com", "geo": null, "id": 148831240366198800, "id_str": "148831240366198784", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1220666375/LogoColorTextBelow_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1220666375/LogoColorTextBelow_normal.jpeg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": ", Boliqueime, Portugal, For Sale http://t.co/FJLhBBiY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:05 +0000", "from_user": "DJFUNKD", "from_user_id": 38302961, "from_user_id_str": "38302961", "from_user_name": "\\u2714Funk D", "geo": null, "id": 148831230165655550, "id_str": "148831230165655553", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/200978655/FNK_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/200978655/FNK_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Had some great gigs last weekend! Portugal-Lisbon was off the hook // COMING UP THIS WEEK: Marrakech-Morocco / Bootleg Pack 04 Release", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:05 +0000", "from_user": "residence_eu", "from_user_id": 240566766, "from_user_id_str": "240566766", "from_user_name": "Residence-eu.com", "geo": null, "id": 148831230073376770, "id_str": "148831230073376768", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1220666375/LogoColorTextBelow_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1220666375/LogoColorTextBelow_normal.jpeg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": ", Dunas Douradas, Portugal, For Sale http://t.co/cEjkEjMn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:00 +0000", "from_user": "seehafer", "from_user_id": 16706124, "from_user_id_str": "16706124", "from_user_name": "Jared Seehafer", "geo": null, "id": 148831212516020220, "id_str": "148831212516020224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1676484620/298314_10100379661068073_10201803_54793008_2707357_n__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676484620/298314_10100379661068073_10201803_54793008_2707357_n__1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:25:00 +0000", "from_user": "negociosportuga", "from_user_id": 91605181, "from_user_id_str": "91605181", "from_user_name": "Neg\\u00F3cios Portugal", "geo": null, "id": 148831209621962750, "id_str": "148831209621962752", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/537215653/negocios_portugal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/537215653/negocios_portugal_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprovou terceira tranche do empr\\u00E9stimo a Portugal: O Fundo Monet\\u00E1rio Internacional aprovou hoje a terceira t... http://t.co/PiYGWa5s", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:56 +0000", "from_user": "Jessyca_sl", "from_user_id": 328725105, "from_user_id_str": "328725105", "from_user_name": "Sou da minha m\\u00E3e :3", "geo": null, "id": 148831194925109250, "id_str": "148831194925109248", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1677381685/PAAAAGp5FW3F8jrPUe1hYvkUNPariogIKy_hf0bhoWZciOuk1QMi1WQqNrhHyM36Zrxx8fwLREAyB9M37OT188IhxwUAm1T1UB2JqPz3ph_JTG11S3YhA_fO6g4I_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677381685/PAAAAGp5FW3F8jrPUe1hYvkUNPariogIKy_hf0bhoWZciOuk1QMi1WQqNrhHyM36Zrxx8fwLREAyB9M37OT188IhxwUAm1T1UB2JqPz3ph_JTG11S3YhA_fO6g4I_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "aaaaaain que saudade da Espanha e de Portugal p\\u00F4 :c", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:43 +0000", "from_user": "sophietyler_", "from_user_id": 242423373, "from_user_id_str": "242423373", "from_user_name": "Sophie Tyler", "geo": null, "id": 148831137731588100, "id_str": "148831137731588096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1552076359/me_charlotte_nd_mikka_xx_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1552076359/me_charlotte_nd_mikka_xx_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "got delayed on the journey to portugal saturday, i was so happy they had starbucks on the plane though, if they didnt, i'd be dead.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:40 +0000", "from_user": "FanDeArellano", "from_user_id": 283826693, "from_user_id_str": "283826693", "from_user_name": "\\u2022 FanDeArellano \\u2022", "geo": null, "id": 148831125488410620, "id_str": "148831125488410624", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1503877843/PATRICIOVC_show_img_show__1be_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1503877843/PATRICIOVC_show_img_show__1be_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @cris_isabelita: @FanDeArellano Feliz cumple :), besos desde Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:38 +0000", "from_user": "OctoberOG", "from_user_id": 90556088, "from_user_id_str": "90556088", "from_user_name": "Trey ", "geo": null, "id": 148831117045280770, "id_str": "148831117045280769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1669990680/IMAG0170-1-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1669990680/IMAG0170-1-2_normal.jpg", "source": "<a href="http://twicca.r246.jp/" rel="nofollow">twicca</a>", "text": "WOW Portugal is the only country to completely decriminalize ALL drugs. Meaning weed, heroine, cocaine, meth, etc...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:36 +0000", "from_user": "Se_ginh0", "from_user_id": 279956187, "from_user_id_str": "279956187", "from_user_name": "S\\u00E9rgio Costa", "geo": null, "id": 148831110904807420, "id_str": "148831110904807425", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "CONFIRMADO: DVD da Loud Tour ser\\u00E1 gravado nos dias 20, 21 e 22 | RIHANNA PORTUGAL http://t.co/gQ3hnmd0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:33 +0000", "from_user": "andrelbe", "from_user_id": 172762242, "from_user_id_str": "172762242", "from_user_name": "Andr\\u00E9 L B Esperidi\\u00E3o", "geo": null, "id": 148831095868243970, "id_str": "148831095868243969", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1195082848/Eu__3__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1195082848/Eu__3__normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "InfoMoney :: FMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal http://t.co/1AfCpugq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:31 +0000", "from_user": "_armandolopez", "from_user_id": 21182437, "from_user_id_str": "21182437", "from_user_name": "armando lopez", "geo": null, "id": 148831088725327870, "id_str": "148831088725327872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1589758574/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1589758574/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT@richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment http://t.co/51wdRYJA interesting experiment..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:30 +0000", "from_user": "AsLuanaticas_PT", "from_user_id": 246811989, "from_user_id_str": "246811989", "from_user_name": "As Luanaticas PT", "geo": null, "id": 148831084937879550, "id_str": "148831084937879552", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1589478022/366105796_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1589478022/366105796_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Portugal \\u00E9 frio demaissssss -.-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:20 +0000", "from_user": "finadedeventer", "from_user_id": 403292980, "from_user_id_str": "403292980", "from_user_name": "Finade Deventer", "geo": null, "id": 148831043980492800, "id_str": "148831043980492800", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1618561224/logofinade_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618561224/logofinade_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Nieuws: IMF keurt lening aan Portugal goed http://t.co/wXp25bHa #finade #deventer", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:18 +0000", "from_user": "gabrielgorgen", "from_user_id": 199404729, "from_user_id_str": "199404729", "from_user_name": "Gabriel Gorgen", "geo": null, "id": 148831033041764350, "id_str": "148831033041764353", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1139677795/aniver_pomper_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1139677795/aniver_pomper_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@lucasvon tive um colega que COMPROU o resgistro, diretamente de portugal...#idiotamaster", "to_user": "lucasvon", "to_user_id": 25559706, "to_user_id_str": "25559706", "to_user_name": "Lucas von Silveira", "in_reply_to_status_id": 148830447865049100, "in_reply_to_status_id_str": "148830447865049088"}, +{"created_at": "Mon, 19 Dec 2011 18:24:06 +0000", "from_user": "Joaogalamba", "from_user_id": 19713622, "from_user_id_str": "19713622", "from_user_name": "Joao Galamba", "geo": null, "id": 148830982760431600, "id_str": "148830982760431616", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/298703151/Img037_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/298703151/Img037_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @especulativa: A Irlanda e a Su\\u00E9cia querem um \"tratado \\u00E0 medida\"; v\\u00E3o negociar, pois. E Portugal, vai assinar de cruz? | @scoopit http://t.co/sJypDI88", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:24:05 +0000", "from_user": "MarcoAntonioDSM", "from_user_id": 169586454, "from_user_id_str": "169586454", "from_user_name": "Marco Ant\\u00F3nio", "geo": null, "id": 148830979438559230, "id_str": "148830979438559233", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679763635/IMG_0030_modified_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679763635/IMG_0030_modified_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "CONFIRMADO: DVD da Loud Tour ser\\u00E1 gravado nos dias 20, 21 e 22 | RIHANNA PORTUGAL http://t.co/xlQMHDNA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:56 +0000", "from_user": "cris_isabelita", "from_user_id": 296821635, "from_user_id_str": "296821635", "from_user_name": "Isabel Fernandes", "geo": null, "id": 148830940939042800, "id_str": "148830940939042817", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664589089/376563_2224572418620_1377048347_31864620_760499542_n_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664589089/376563_2224572418620_1377048347_31864620_760499542_n_1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@FanDeArellano Feliz cumple :), besos desde Portugal", "to_user": "FanDeArellano", "to_user_id": 283826693, "to_user_id_str": "283826693", "to_user_name": "\\u2022 FanDeArellano \\u2022", "in_reply_to_status_id": 148830216549171200, "in_reply_to_status_id_str": "148830216549171200"}, +{"created_at": "Mon, 19 Dec 2011 18:23:44 +0000", "from_user": "Vizinhosdeutero", "from_user_id": 119375005, "from_user_id_str": "119375005", "from_user_name": "Jemima Pompeu", "geo": null, "id": 148830892155088900, "id_str": "148830892155088898", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1347328717/redondo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1347328717/redondo_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Primeira loja online para g\\u00E9meos criada em Portugal http://t.co/6ES9CZAl via @ptjornal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:43 +0000", "from_user": "TheMattBanks", "from_user_id": 292314192, "from_user_id_str": "292314192", "from_user_name": "Matt Banks", "geo": null, "id": 148830887071588350, "id_str": "148830887071588352", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701165528/186445_509058794_1174871247_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701165528/186445_509058794_1174871247_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "RT @jason_silva: Yes!@richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/2u0GfWbU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:39 +0000", "from_user": "1DToPortugal", "from_user_id": 353947912, "from_user_id_str": "353947912", "from_user_name": "1D Portugal", "geo": null, "id": 148830872261500930, "id_str": "148830872261500928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1683531956/tumblr_lv8rgmAQqr1qgwn15o1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683531956/tumblr_lv8rgmAQqr1qgwn15o1_500_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@NathanTheWanted Hi for Portugal?", "to_user": "NathanTheWanted", "to_user_id": 90896009, "to_user_id_str": "90896009", "to_user_name": "Nathan Sykes", "in_reply_to_status_id": 148829670886998000, "in_reply_to_status_id_str": "148829670886998016"}, +{"created_at": "Mon, 19 Dec 2011 18:23:38 +0000", "from_user": "Politica507", "from_user_id": 384929365, "from_user_id_str": "384929365", "from_user_name": "Politica.com.pa", "geo": null, "id": 148830868591476740, "id_str": "148830868591476737", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1603506392/logo__1__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1603506392/logo__1__normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Portugal denuncia violacion de derechos humanos a extranjeros detenidos http://t.co/iGiw18lu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:33 +0000", "from_user": "marcoszapataOK", "from_user_id": 170452504, "from_user_id_str": "170452504", "from_user_name": "MARCOS ZAPATA", "geo": null, "id": 148830847733211140, "id_str": "148830847733211136", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699270520/PEQ_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699270520/PEQ_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Rihanna se pelea en un hotel en Portugal tras ser insultada http://t.co/t6Lv2nrN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:30 +0000", "from_user": "bertomestas", "from_user_id": 384885096, "from_user_id_str": "384885096", "from_user_name": "Alberto De La Vega", "geo": null, "id": 148830833569046530, "id_str": "148830833569046528", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1632701462/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632701462/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Tomando unos calimochos en av portugal con @JuanJose_Llanu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:26 +0000", "from_user": "chiclesnl", "from_user_id": 151538297, "from_user_id_str": "151538297", "from_user_name": "Ron van den Boogaard", "geo": null, "id": 148830818142404600, "id_str": "148830818142404608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1583896474/RonvdBoogaard-2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583896474/RonvdBoogaard-2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @Pamela_Lund: RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/zSIcQYy9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:24 +0000", "from_user": "manuel_ralha", "from_user_id": 408607744, "from_user_id_str": "408607744", "from_user_name": "mnemosyne", "geo": null, "id": 148830807245586430, "id_str": "148830807245586433", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1634085375/logomne78_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634085375/logomne78_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "\\u00ABA Crise e a Reconstitui\\u00E7\\u00E3o do Estado em Portugal (1974 - 1984)\\u00BB http://t.co/Pwi8Wt8x via @wordpressdotcom", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:20 +0000", "from_user": "Kim_tastiic", "from_user_id": 44361097, "from_user_id_str": "44361097", "from_user_name": "Amerigo Vespucci", "geo": null, "id": 148830790313189380, "id_str": "148830790313189376", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695427161/DSCN0876_5556-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695427161/DSCN0876_5556-1_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Apparently at Rihanna's Portugal concert, she ran in the middle of the aisle and threw up while performing \"what's my name\" lmao..Oh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:23:04 +0000", "from_user": "Larisa_i", "from_user_id": 256205902, "from_user_id_str": "256205902", "from_user_name": "Larisa", "geo": null, "id": 148830722570989570, "id_str": "148830722570989570", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1569635024/1317311614554_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1569635024/1317311614554_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Hot N Cold | Katy Perry | Videoclipes | MTV Portugal: http://t.co/LWWzEtTa via @AddThis", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:59 +0000", "from_user": "EloiMoccellin", "from_user_id": 360556372, "from_user_id_str": "360556372", "from_user_name": "ELOIMOCCELLIN", "geo": null, "id": 148830701368778750, "id_str": "148830701368778752", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1519783801/Pai2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1519783801/Pai2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "FMI vai liberar \\u20AC 2,9 bilh\\u00F5es de nova parcela do pacote de resgate financeiro de \\u20AC 78 bilh\\u00F5es a Portugal, cf acordado entre o fundo e a UE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:55 +0000", "from_user": "saulosales", "from_user_id": 36035167, "from_user_id_str": "36035167", "from_user_name": "Saulo Sales", "geo": null, "id": 148830687011684350, "id_str": "148830687011684352", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1536226882/DSC00428_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1536226882/DSC00428_normal.JPG", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Portugal virou Alasca? RT @rubensborges2: Hoje est\\u00E1 t\\u00E3o frio que eu fui cuspir e antes de chegar ao ch\\u00E3o o cuspe congelou.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:45 +0000", "from_user": "YouAndMe_Bieber", "from_user_id": 235235830, "from_user_id_str": "235235830", "from_user_name": "I'm unbroken :)", "geo": null, "id": 148830646293372930, "id_str": "148830646293372929", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689507026/468418609_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689507026/468418609_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Agora...o Justin tem de vir a Portugal tb para eu ver ele :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:31 +0000", "from_user": "moisesquintas", "from_user_id": 110372244, "from_user_id_str": "110372244", "from_user_name": "Mois\\u00E9s Quintas ", "geo": null, "id": 148830584599347200, "id_str": "148830584599347200", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/669042537/moisesindex2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/669042537/moisesindex2_normal.JPG", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Amizade Portugal-Galiza http://t.co/BTaHP9S3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:28 +0000", "from_user": "Leannaelk", "from_user_id": 431708746, "from_user_id_str": "431708746", "from_user_name": "Leanna Staires", "geo": null, "id": 148830573551554560, "id_str": "148830573551554561", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681049582/hnw0hbqpyo_133535784_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681049582/hnw0hbqpyo_133535784_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "A Traveler's Map of Spain and Portugal (folded map): http://t.co/7KCZ7EjK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:25 +0000", "from_user": "YouAndMe_Bieber", "from_user_id": 235235830, "from_user_id_str": "235235830", "from_user_name": "I'm unbroken :)", "geo": null, "id": 148830559446110200, "id_str": "148830559446110209", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689507026/468418609_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689507026/468418609_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "ATEN\\u00C7\\u00C3O: Eu tou em Portugal agora,mas vou continuar a ajudar nas Tags do Brasil,hein ?Eu sou do Brasil com mto ORGULHO ! :p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:24 +0000", "from_user": "LuArFever", "from_user_id": 331335418, "from_user_id_str": "331335418", "from_user_name": "LuArFever", "geo": null, "id": 148830555583168500, "id_str": "148830555583168514", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1672387618/catsn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672387618/catsn_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "A\\u00CA UHUH MAIS UM FC #PORTUGUES @RebeldeFC_ChayS !! #PORTUGAL A BOMBAR *-*", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:19 +0000", "from_user": "bartoboy12", "from_user_id": 289192375, "from_user_id_str": "289192375", "from_user_name": "Bart", "geo": +{"coordinates": [53.0378,5.6692], "type": "Point"}, "id": 148830535760883700, "id_str": "148830535760883712", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680402170/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680402170/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Straks kont kennis uit Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:17 +0000", "from_user": "investir_acoes", "from_user_id": 219092852, "from_user_id_str": "219092852", "from_user_name": "CON$ULTOR FINAN\\u00C7A$", "geo": null, "id": 148830529171619840, "id_str": "148830529171619841", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1666350740/Dolar2_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666350740/Dolar2_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "FMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal http://t.co/QHRIQqe2 #UOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:16 +0000", "from_user": "yamarock", "from_user_id": 48828354, "from_user_id_str": "48828354", "from_user_name": "Yajaira Mar", "geo": null, "id": 148830525002493950, "id_str": "148830525002493953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1478808010/n1202884943_100278_5626_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1478808010/n1202884943_100278_5626_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @LifeBoxset: Escucha un cover de Portugal. The Man a Gnarls Barkley http://t.co/qYMNEKP9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:08 +0000", "from_user": "chinobi", "from_user_id": 15646181, "from_user_id_str": "15646181", "from_user_name": "Peter Wang", "geo": null, "id": 148830491037016060, "id_str": "148830491037016065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1341375828/130469173452046_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1341375828/130469173452046_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:07 +0000", "from_user": "zedejose", "from_user_id": 17713808, "from_user_id_str": "17713808", "from_user_name": "Z\\u00E9", "geo": null, "id": 148830484271611900, "id_str": "148830484271611904", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/259883232/jf_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/259883232/jf_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @Pamela_Lund: RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/zSIcQYy9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:22:00 +0000", "from_user": "SophiaEChayEver", "from_user_id": 386267606, "from_user_id_str": "386267606", "from_user_name": "Kiss Le\\u00E3o?", "geo": null, "id": 148830455033102340, "id_str": "148830455033102336", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700674974/1305210930133_f_normal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700674974/1305210930133_f_normal_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MinhaDoceSoso YEY PORTUGAL?", "to_user": "MinhaDoceSoso", "to_user_id": 248314608, "to_user_id_str": "248314608", "to_user_name": "SoMic.\\u2765"}, +{"created_at": "Mon, 19 Dec 2011 18:21:50 +0000", "from_user": "ECI_Assessoria", "from_user_id": 386660247, "from_user_id_str": "386660247", "from_user_name": "ECI", "geo": null, "id": 148830415770222600, "id_str": "148830415770222592", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1592693748/twitter_logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1592693748/twitter_logo_normal.png", "source": "<a href="http://twitter.uol.com.br" rel="nofollow">uol.com.br</a>", "text": "RT @UOLEconomia: FMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal http://t.co/o4nSgyv1 #UOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:43 +0000", "from_user": "blakewirht", "from_user_id": 21328729, "from_user_id_str": "21328729", "from_user_name": "Blake Wirht", "geo": null, "id": 148830385512517630, "id_str": "148830385512517633", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1481870230/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1481870230/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:38 +0000", "from_user": "UOLEconomia", "from_user_id": 14594760, "from_user_id_str": "14594760", "from_user_name": "UOL Economia", "geo": null, "id": 148830361814704130, "id_str": "148830361814704129", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/398462104/logo_economia_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/398462104/logo_economia_normal.png", "source": "<a href="http://twitter.uol.com.br" rel="nofollow">uol.com.br</a>", "text": "FMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal http://t.co/o4nSgyv1 #UOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:36 +0000", "from_user": "x_anouschka", "from_user_id": 264157147, "from_user_id_str": "264157147", "from_user_name": "Anouschka Wesseling", "geo": null, "id": 148830354122346500, "id_str": "148830354122346497", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1654231661/Westside___H_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654231661/Westside___H_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "eetbare eikeltjes eten die papa heeft meegenomen uit portugal ! #benbenieuwd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:32 +0000", "from_user": "yoast", "from_user_id": 6453512, "from_user_id_str": "6453512", "from_user_name": "Joost de Valk", "geo": null, "id": 148830340071436300, "id_str": "148830340071436288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1415375337/Yoast-Avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1415375337/Yoast-Avatar_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @Pamela_Lund: RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/zSIcQYy9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:30 +0000", "from_user": "Sheikhax", "from_user_id": 24179010, "from_user_id_str": "24179010", "from_user_name": "Sheila Khaemba", "geo": null, "id": 148830330189656060, "id_str": "148830330189656064", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1610345401/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1610345401/image_normal.jpg", "source": "<a href="http://www.alphonsolabs.com/" rel="nofollow">Pulse News</a>", "text": "#SMDH-Rihanna Throws Up In The Middle Of Her Concert: Morning Mix http://t.co/dQLQmxJK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:21:25 +0000", "from_user": "enciclopediapt", "from_user_id": 100036840, "from_user_id_str": "100036840", "from_user_name": "Enciclop\\u00E9dia", "geo": null, "id": 148830310065389570, "id_str": "148830310065389568", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/597272652/Logoteste1_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/597272652/Logoteste1_normal.gif", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "FMI aprova tranche de 2,9 mil milh\\u00F5es de euros para Portugal http://t.co/Wd858Y5E", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:21 +0000", "from_user": "susanaafc", "from_user_id": 67635244, "from_user_id_str": "67635244", "from_user_name": "Susana Cordeiro", "geo": null, "id": 148830292545769470, "id_str": "148830292545769473", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700809086/DSCF3177_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700809086/DSCF3177_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @LauraMesqui: @rihanna I can't believed this happened in my country - portugal - I'm ashamed!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:18 +0000", "from_user": "kellygirao", "from_user_id": 45244388, "from_user_id_str": "45244388", "from_user_name": "\\u2640\\u266BKellyGir\\u00E3o\\u266A", "geo": null, "id": 148830279727972350, "id_str": "148830279727972352", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1586320691/DSCN4805_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586320691/DSCN4805_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Rihanna revela que sofreu racismo em hotel de Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:16 +0000", "from_user": "MihDoPePo", "from_user_id": 338457970, "from_user_id_str": "338457970", "from_user_name": "Pepo meu orgulho ", "geo": null, "id": 148830271742033920, "id_str": "148830271742033920", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702486151/434522289_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702486151/434522289_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "O esplendor de Portugal entre as brumas da mem\\u00F3ria,", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:16 +0000", "from_user": "OstermannBirgit", "from_user_id": 404863497, "from_user_id_str": "404863497", "from_user_name": "Birgit Ostermann", "geo": null, "id": 148830270844452860, "id_str": "148830270844452864", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "All #Inclusive #Portugal mit #Tiefpreisgarantie #T\\u00DCV gepr\\u00FCft buchen http://t.co/gjFKSved", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:10 +0000", "from_user": "lanzaexception", "from_user_id": 257739466, "from_user_id_str": "257739466", "from_user_name": "Choose Pedro Lanza ", "geo": null, "id": 148830246089654270, "id_str": "148830246089654272", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1654558911/ca26ef0e162711e1abb01231381b65e3_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654558911/ca26ef0e162711e1abb01231381b65e3_7_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Pe\\u00E7a RESTART na MTV de PORTUGAL atrav\\u00E9s desse link: (http://t.co/VYr5oY7O)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:21:07 +0000", "from_user": "JamesThomasFox", "from_user_id": 381193181, "from_user_id_str": "381193181", "from_user_name": "James Thomas Fox", "geo": null, "id": 148830235482271740, "id_str": "148830235482271744", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1572804802/183609_10150112113023908_517128907_6442738_6758087_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572804802/183609_10150112113023908_517128907_6442738_6758087_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Food for thought, @richardbranson:time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment http://t.co/HGMi6pHZ", "to_user": "richardbranson", "to_user_id": 8161232, "to_user_id_str": "8161232", "to_user_name": "richardbranson", "in_reply_to_status_id": 148777479291674620, "in_reply_to_status_id_str": "148777479291674624"}, +{"created_at": "Mon, 19 Dec 2011 18:21:02 +0000", "from_user": "insurance_spain", "from_user_id": 341624988, "from_user_id_str": "341624988", "from_user_name": "Insurance Spain", "geo": null, "id": 148830212233248770, "id_str": "148830212233248769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://www.theleader.info/" rel="nofollow">Insurance Spain</a>", "text": "GOLD ALL-RISK HOME INSURANCE - http://t.co/7RmRrO0d", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:54 +0000", "from_user": "debrill", "from_user_id": 41026935, "from_user_id_str": "41026935", "from_user_name": "Debril JN", "geo": null, "id": 148830180125851650, "id_str": "148830180125851648", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Your gal Rihanna talking about went off to a racist hotel guest in Portugal who talked sh*t\\u2026 http://t.co/gmKU9J2j", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:53 +0000", "from_user": "billpostmus", "from_user_id": 379962842, "from_user_id_str": "379962842", "from_user_name": "Bill Postmus", "geo": null, "id": 148830175600197630, "id_str": "148830175600197632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1638371566/pf_20111113_4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1638371566/pf_20111113_4_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "North Koreans haven't wept like this since the 7-0 loss to Portugal! -VIDEO: http://t.co/qbRTRiXK #NorthKorea #KimJongIl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:43 +0000", "from_user": "lanzaexception", "from_user_id": 257739466, "from_user_id_str": "257739466", "from_user_name": "Choose Pedro Lanza ", "geo": null, "id": 148830134332428300, "id_str": "148830134332428288", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1654558911/ca26ef0e162711e1abb01231381b65e3_7_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654558911/ca26ef0e162711e1abb01231381b65e3_7_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Pe\\u00E7a 'Menina Estranha - Restart' na r\\u00E1dio \"Cidade FM\" de Portugal, por aqui: (http://t.co/ZQCXND9o)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:42 +0000", "from_user": "annfdez", "from_user_id": 75371345, "from_user_id_str": "75371345", "from_user_name": "Ana Fern\\u00E1ndez", "geo": null, "id": 148830130846969860, "id_str": "148830130846969857", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1562194301/P1070742_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1562194301/P1070742_1__normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Seg\\u00FAn la de Empresa, Portugal est\\u00E1 ba\\u00F1ado por el mar Mediterr\\u00E1neo.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:33 +0000", "from_user": "LauraMesqui", "from_user_id": 75354152, "from_user_id_str": "75354152", "from_user_name": "Laura Mesquita", "geo": null, "id": 148830090929770500, "id_str": "148830090929770496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687245910/DSC02448_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687245910/DSC02448_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@rihanna I can't believed this happened in my country - portugal - I'm ashamed!", "to_user": "rihanna", "to_user_id": 79293791, "to_user_id_str": "79293791", "to_user_name": "Rihanna", "in_reply_to_status_id": 148226084759023600, "in_reply_to_status_id_str": "148226084759023617"}, +{"created_at": "Mon, 19 Dec 2011 18:20:31 +0000", "from_user": "R_Pirata", "from_user_id": 380675417, "from_user_id_str": "380675417", "from_user_name": "R\\u00E1dio Pirata", "geo": null, "id": 148830083409395700, "id_str": "148830083409395712", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1585507633/logopeq_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585507633/logopeq_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "N\\u00E3o chegam a Portugal muitos \\u00EAxitos da m\\u00FAsica pop espanhola, mas quando chegam, \\u00E9 com algum aparato. La Uni\\u00F3n \\u00E9... http://t.co/AUvmLfNg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:30 +0000", "from_user": "Ibby_Babiker", "from_user_id": 339981424, "from_user_id_str": "339981424", "from_user_name": "Ibrahim Babiker", "geo": null, "id": 148830077805789200, "id_str": "148830077805789185", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1651826100/17566E02-622E-42B2-9BE5-901F090153E3_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651826100/17566E02-622E-42B2-9BE5-901F090153E3_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:23 +0000", "from_user": "RihannaNavyCol", "from_user_id": 390477713, "from_user_id_str": "390477713", "from_user_name": "RihannaNavyColombia", "geo": null, "id": 148830049276145660, "id_str": "148830049276145664", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691663443/rihanna-live-at-the-2011-jingle-bell-ball-6-1322951887-view-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691663443/rihanna-live-at-the-2011-jingle-bell-ball-6-1322951887-view-1_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Rihanna huye de su concierto en Portugal para vomitar\\n\\nRihanna pas\\u00F3 por Espa\\u00F1a dando unos conciertos m\\u00E1s que... http://t.co/yFoYvu2E", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:20 +0000", "from_user": "Guilhermebs25", "from_user_id": 209141033, "from_user_id_str": "209141033", "from_user_name": "Guilherme bs \\u24D6\\u24D1\\u24E2", "geo": null, "id": 148830037490147330, "id_str": "148830037490147328", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689637302/PIC19F.tmp_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689637302/PIC19F.tmp_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Eu estava aqui agora vendo os acessos do meu blog gente ate de Portugal, USA e claro todo o Brasil muito feliz ver isso.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:20 +0000", "from_user": "1a_day_deal", "from_user_id": 337532162, "from_user_id_str": "337532162", "from_user_name": "Daily Deals", "geo": null, "id": 148830035845971970, "id_str": "148830035845971971", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1448257109/Urlaub_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1448257109/Urlaub_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Rabatt #Reisen - #Portugal, Madeira Pauschalreise mit 4 Sterne Hotel, All Incl. - 2 Tag nur ab 313\\u20AC #Tiefpreis - http://t.co/ezJHRRN5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:20 +0000", "from_user": "ForSaleiAlgarve", "from_user_id": 386105591, "from_user_id_str": "386105591", "from_user_name": "For Sale in Algarve", "geo": null, "id": 148830035644645380, "id_str": "148830035644645377", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1575941712/For_Sale_In_Algarve_Twitter_Logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575941712/For_Sale_In_Algarve_Twitter_Logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Villa for sale in Lagoa | 5 bedrooms ~ For-Sale-in-Algarve ~ #Algarve\\n#Portugal - http://t.co/Px1HXHSl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:18 +0000", "from_user": "rcqkarnagg", "from_user_id": 382689826, "from_user_id_str": "382689826", "from_user_name": "Von Yang", "geo": null, "id": 148830028786958340, "id_str": "148830028786958336", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1566627257/813_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566627257/813_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Anaphora: Analysis, Algorithms and Applications: 6th Discourse Anaphora and Anaphor Resolution Colloquium, DAARC 20.. http://t.co/DTK0hmwI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:16 +0000", "from_user": "sa_zh", "from_user_id": 151119759, "from_user_id_str": "151119759", "from_user_name": "sa zh", "geo": null, "id": 148830021736341500, "id_str": "148830021736341505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1145167611/image_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1145167611/image_normal.jpeg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:16 +0000", "from_user": "DuncanKeeling", "from_user_id": 20473201, "from_user_id_str": "20473201", "from_user_name": "Duncan Keeling", "geo": null, "id": 148830019085545470, "id_str": "148830019085545472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1651801452/DK6_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651801452/DK6_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Portugal to Pass Security Laws as Crime Rises Amid #Austerity http://t.co/DEvFqP2k Turning the country into a police state. #NDAA again?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:09 +0000", "from_user": "SocMeDotMe", "from_user_id": 371995419, "from_user_id_str": "371995419", "from_user_name": "Karl Lingenfelder", "geo": null, "id": 148829990887231500, "id_str": "148829990887231488", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1546120426/SocMe_Twitter_Icon_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546120426/SocMe_Twitter_Icon_2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Villa for sale in Lagoa | 5 bedrooms ~ For-Sale-in-Algarve ~ #Algarve\\n#Portugal - http://t.co/0cg0JzAA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:20:05 +0000", "from_user": "memospin", "from_user_id": 185759621, "from_user_id_str": "185759621", "from_user_name": "Guillermo Espinoza", "geo": null, "id": 148829972558135300, "id_str": "148829972558135296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1268053751/henrique_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1268053751/henrique_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:19:10 +0000", "from_user": "patrickmolas", "from_user_id": 252079985, "from_user_id_str": "252079985", "from_user_name": "Patrick Molas", "geo": null, "id": 148829743163256830, "id_str": "148829743163256832", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1244082860/images__13__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1244082860/images__13__normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera \\u20AC 2,9 bi do pacote de resgate financeiro a Portugal: Ou\\u00E7a na CBN http://t.co/qlF8VjQu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:59 +0000", "from_user": "TrafficAirColom", "from_user_id": 389647785, "from_user_id_str": "389647785", "from_user_name": "TraficoAereoColombia", "geo": null, "id": 148829697520836600, "id_str": "148829697520836608", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1585504761/icono_avion1_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585504761/icono_avion1_normal.gif", "source": "<a href="http://www.visibli.com" rel="nofollow">Visibli</a>", "text": "RT @AviacionLatam: Inspecci\\u00F3n sorpresa para las aerol\\u00EDneas TAP Portugal y Brussels Airlines, por posible acuerdo ilegal. http://t.co/B37Ejz4S", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:52 +0000", "from_user": "Nieuwsfeed", "from_user_id": 63156310, "from_user_id_str": "63156310", "from_user_name": "Showbizz feed ", "geo": null, "id": 148829668739514370, "id_str": "148829668739514368", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/787706874/Emmy_award_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/787706874/Emmy_award_400_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF keurt lening aan Portugal goed: http://t.co/ExTHzcMq (go to http://t.co/VMlQW4Ze)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:52 +0000", "from_user": "andresefreire", "from_user_id": 222241183, "from_user_id_str": "222241183", "from_user_name": "andres freire", "geo": null, "id": 148829665396670460, "id_str": "148829665396670464", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1181119346/foto002_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1181119346/foto002_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "El FMI aprueba un tramo de cr\\u00E9dito de 2.900 millones a Portugal http://t.co/IHqzherX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:51 +0000", "from_user": "aprofesional", "from_user_id": 91205596, "from_user_id_str": "91205596", "from_user_name": "Estratex Ecuador", "geo": null, "id": 148829664398409730, "id_str": "148829664398409730", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/534655360/icono_normal.PNG", "profile_image_url_https": "https://si0.twimg.com/profile_images/534655360/icono_normal.PNG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "El FMI aprueba un tramo de cr\\u00E9dito de 2.900 millones a Portugal http://t.co/GYiUpc8Q", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:51 +0000", "from_user": "BNR_Nieuwsradio", "from_user_id": 85805848, "from_user_id_str": "85805848", "from_user_name": "BNR Nieuwsradio", "geo": null, "id": 148829663681187840, "id_str": "148829663681187840", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/494499147/BNR_logo_met_cirkel_2007_normal.GIF", "profile_image_url_https": "https://si0.twimg.com/profile_images/494499147/BNR_logo_met_cirkel_2007_normal.GIF", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF keurt lening aan Portugal goed: http://t.co/hq8XTaML", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:44 +0000", "from_user": "jose_rendaextra", "from_user_id": 142674612, "from_user_id_str": "142674612", "from_user_name": "jose", "geo": null, "id": 148829632332967940, "id_str": "148829632332967936", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1162931773/moto_0198_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1162931773/moto_0198_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/RmNl3ajr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:43 +0000", "from_user": "Ganharvianet", "from_user_id": 387439057, "from_user_id_str": "387439057", "from_user_name": "jose", "geo": null, "id": 148829631066292220, "id_str": "148829631066292224", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698828447/trabalho_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698828447/trabalho_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/amlFIuFf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:43 +0000", "from_user": "rendaonlines", "from_user_id": 425295164, "from_user_id_str": "425295164", "from_user_name": "jose", "geo": null, "id": 148829630554583040, "id_str": "148829630554583040", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1666635621/fr_p_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666635621/fr_p_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/wnJr3fvb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:43 +0000", "from_user": "ganharfortuna", "from_user_id": 382234566, "from_user_id_str": "382234566", "from_user_name": "jose", "geo": null, "id": 148829629002694660, "id_str": "148829629002694657", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1565547949/Jos__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1565547949/Jos__normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/pm1JmEPI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:43 +0000", "from_user": "JoseMdd", "from_user_id": 340911927, "from_user_id_str": "340911927", "from_user_name": "jose", "geo": null, "id": 148829628545507330, "id_str": "148829628545507328", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1456787446/dinheiro_familia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1456787446/dinheiro_familia_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/DBf3miS4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:42 +0000", "from_user": "jplacruz", "from_user_id": 139523088, "from_user_id_str": "139523088", "from_user_name": "Jean Paul Lacruz", "geo": null, "id": 148829623919194100, "id_str": "148829623919194112", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698950916/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698950916/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@astridpestana: solo llevo un d\\u00EDa en Portugal y ya lo extra\\u00F1o un mundo.\\u201D yo mas bebe!!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:40 +0000", "from_user": "SuperOkScriptor", "from_user_id": 317286816, "from_user_id_str": "317286816", "from_user_name": "Super Ok Scriptor", "geo": null, "id": 148829617111842800, "id_str": "148829617111842816", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1399178837/22052011345m_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1399178837/22052011345m_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@rihanna As Portuguese, I'm feel ashamed beacuse that \"filho da p***\" . Put that asshole in a court because racism is forbidden in Portugal.", "to_user": "rihanna", "to_user_id": 79293791, "to_user_id_str": "79293791", "to_user_name": "Rihanna", "in_reply_to_status_id": 148226084759023600, "in_reply_to_status_id_str": "148226084759023617"}, +{"created_at": "Mon, 19 Dec 2011 18:18:29 +0000", "from_user": "jplacruz", "from_user_id": 139523088, "from_user_id_str": "139523088", "from_user_name": "Jean Paul Lacruz", "geo": null, "id": 148829569141587970, "id_str": "148829569141587969", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698950916/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698950916/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @astridpestana: solo llevo un d\\u00EDa en Portugal y ya lo extra\\u00F1o un mundo.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:12 +0000", "from_user": "Keynerd", "from_user_id": 339314668, "from_user_id_str": "339314668", "from_user_name": "Lakeya Keynerd", "geo": null, "id": 148829497863577600, "id_str": "148829497863577601", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1491982152/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1491982152/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "White Wine. Made in Portugal.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:05 +0000", "from_user": "Nisturbandhu", "from_user_id": 173672114, "from_user_id_str": "173672114", "from_user_name": "Mr. Abdul Haye", "geo": null, "id": 148829468386013200, "id_str": "148829468386013184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1264033204/AminXX_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1264033204/AminXX_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "The Islamic Bangla State of Portugal.: http://t.co/dZGv9yCV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:03 +0000", "from_user": "VendasAdam", "from_user_id": 409215094, "from_user_id_str": "409215094", "from_user_name": "Adam Neves Rodrigues", "geo": null, "id": 148829460983054340, "id_str": "148829460983054336", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1632121373/2011-08-07_09.11.17_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632121373/2011-08-07_09.11.17_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/Cy4U5qZT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:03 +0000", "from_user": "Tconrrado", "from_user_id": 416820441, "from_user_id_str": "416820441", "from_user_name": "Tatiane Conrado", "geo": null, "id": 148829460442001400, "id_str": "148829460442001408", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1652209826/PQAAADBpxjORRU7s-w7LsFjcvGwqeZDoY7zHeNUice8rqGU2KDAUKHAinGq_ViGNgSTnSn--fdXS1MbDomI7MypRh1EAm1T1UP4nCDZGwMkpbswywNrUeucqBSx0_1__-_C_pia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652209826/PQAAADBpxjORRU7s-w7LsFjcvGwqeZDoY7zHeNUice8rqGU2KDAUKHAinGq_ViGNgSTnSn--fdXS1MbDomI7MypRh1EAm1T1UP4nCDZGwMkpbswywNrUeucqBSx0_1__-_C_pia_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/5hRCF1zh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:02 +0000", "from_user": "Ieonnardo", "from_user_id": 303528445, "from_user_id_str": "303528445", "from_user_name": "Leo\\u043F\\u043F\\u03B1\\u0433do\\u02B3\\u1D43\\u1D9C\\u1D4F", "geo": null, "id": 148829459406004220, "id_str": "148829459406004224", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1672495168/talvez_esse_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672495168/talvez_esse_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/KE2IXbpg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:02 +0000", "from_user": "toon778", "from_user_id": 288330146, "from_user_id_str": "288330146", "from_user_name": "\\u263B Everton lucas\\u263A \\u25D9 \\u2714", "geo": null, "id": 148829457929601020, "id_str": "148829457929601026", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1540687487/anigif_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1540687487/anigif_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t http://t.co/bSmLiTAx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:02 +0000", "from_user": "jeffersondeso16", "from_user_id": 396606268, "from_user_id_str": "396606268", "from_user_name": "jefferson de sousa", "geo": null, "id": 148829456633569280, "id_str": "148829456633569280", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1611418489/Imag008_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611418489/Imag008_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/3GSOIj1D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:02 +0000", "from_user": "marco777matos", "from_user_id": 393697840, "from_user_id_str": "393697840", "from_user_name": "marco antonio ", "geo": null, "id": 148829455840849920, "id_str": "148829455840849920", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1600116499/tio-patinhas_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600116499/tio-patinhas_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/gn9osZfQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:01 +0000", "from_user": "felipeagora", "from_user_id": 382798177, "from_user_id_str": "382798177", "from_user_name": "luis felipe ", "geo": null, "id": 148829454016331780, "id_str": "148829454016331776", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1566939201/fotos_014_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566939201/fotos_014_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/Lgxp4xsi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:01 +0000", "from_user": "acilioderli", "from_user_id": 220746120, "from_user_id_str": "220746120", "from_user_name": "acilio", "geo": null, "id": 148829453848551420, "id_str": "148829453848551426", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1533482907/foto_casamento01_001_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1533482907/foto_casamento01_001_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/AHDcKPeB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:18:00 +0000", "from_user": "Andreissilva", "from_user_id": 122369292, "from_user_id_str": "122369292", "from_user_name": "Andrei MKT", "geo": null, "id": 148829451415851000, "id_str": "148829451415851008", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1580823800/IMG0140uAm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580823800/IMG0140uAm_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/urRNeOTE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:59 +0000", "from_user": "InformaEconomia", "from_user_id": 368959673, "from_user_id_str": "368959673", "from_user_name": "Informa\\u00E7\\u00F5es Economia", "geo": null, "id": 148829446202339330, "id_str": "148829446202339329", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1531420873/economia_brasileira_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1531420873/economia_brasileira_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/ZsTewegt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:58 +0000", "from_user": "resultaemrenda", "from_user_id": 359798264, "from_user_id_str": "359798264", "from_user_name": "Daniel Wanderson", "geo": null, "id": 148829442855284740, "id_str": "148829442855284736", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1507752297/PQAAAAxVb4YAhpgetI45rSQeuaizk_yCFeX4drZk-yCIn2e4zN17mBG11GvtPRjAA28HqdvoWbu0vAmh3XqapzsVhfAAm1T1UNLIaCP8Wc5ATNDq1zIIqTBO04fb_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1507752297/PQAAAAxVb4YAhpgetI45rSQeuaizk_yCFeX4drZk-yCIn2e4zN17mBG11GvtPRjAA28HqdvoWbu0vAmh3XqapzsVhfAAm1T1UNLIaCP8Wc5ATNDq1zIIqTBO04fb_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/fdUT8WKs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:58 +0000", "from_user": "biscoitimm_news", "from_user_id": 336623173, "from_user_id_str": "336623173", "from_user_name": "Matheus Cardoso", "geo": null, "id": 148829441274019840, "id_str": "148829441274019840", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1445577533/OgAAAKCTBugSZ_M1UFswJnz7y-L9mZpfXPHDDjyzjCwzaxvVi1Qf7n0QDPic-uXgGHz07jowKD1SI14QAl575F1dTSoAm1T1UJVULAWaxKdE06oBEet0k2_NuB3M_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1445577533/OgAAAKCTBugSZ_M1UFswJnz7y-L9mZpfXPHDDjyzjCwzaxvVi1Qf7n0QDPic-uXgGHz07jowKD1SI14QAl575F1dTSoAm1T1UJVULAWaxKdE06oBEet0k2_NuB3M_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/cz695UwK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:58 +0000", "from_user": "cergrande", "from_user_id": 333497163, "from_user_id_str": "333497163", "from_user_name": "Carlos Grande", "geo": null, "id": 148829440695214080, "id_str": "148829440695214080", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1438330756/Carlos_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1438330756/Carlos_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/tmpF2iYt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:57 +0000", "from_user": "Gilson1201", "from_user_id": 314799899, "from_user_id_str": "314799899", "from_user_name": "Gilson Oliveira", "geo": null, "id": 148829437931167740, "id_str": "148829437931167744", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1396118362/gilsonic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1396118362/gilsonic_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/4FoOo6ha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:57 +0000", "from_user": "faturarja", "from_user_id": 318066581, "from_user_id_str": "318066581", "from_user_name": "faturarja", "geo": null, "id": 148829437411069950, "id_str": "148829437411069954", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1398049303/thumb_dinheiro_familia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1398049303/thumb_dinheiro_familia_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/gOuKHfrQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:57 +0000", "from_user": "hvdcommerce", "from_user_id": 309759851, "from_user_id_str": "309759851", "from_user_name": "euprecisosabercomo", "geo": null, "id": 148829436635119600, "id_str": "148829436635119617", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1384344833/Sans_titre_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1384344833/Sans_titre_1_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/YXSsbbZf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:57 +0000", "from_user": "vianova2011", "from_user_id": 304763077, "from_user_id_str": "304763077", "from_user_name": "Elton Celso Wagner", "geo": null, "id": 148829435578159100, "id_str": "148829435578159104", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1387533900/Figura1_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1387533900/Figura1_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/qksgDh0k", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:57 +0000", "from_user": "Maresiareggae", "from_user_id": 281156074, "from_user_id_str": "281156074", "from_user_name": " Karica\\u00B4s", "geo": null, "id": 148829434751877120, "id_str": "148829434751877121", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1310258339/maresia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1310258339/maresia_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/htM9XAWl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:56 +0000", "from_user": "topsigame", "from_user_id": 292318197, "from_user_id_str": "292318197", "from_user_name": "topsigame", "geo": null, "id": 148829434093387780, "id_str": "148829434093387777", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1337459374/SETA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1337459374/SETA_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/Pj85XwN4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:56 +0000", "from_user": "SistemaGanhar", "from_user_id": 279636993, "from_user_id_str": "279636993", "from_user_name": "Ganhe Dinheiro Agora", "geo": null, "id": 148829432579239940, "id_str": "148829432579239936", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1305766842/dinheiro_familia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1305766842/dinheiro_familia_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/F9mzpgIs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:56 +0000", "from_user": "Dindin_agora", "from_user_id": 278249326, "from_user_id_str": "278249326", "from_user_name": "Dinheiro Agora", "geo": null, "id": 148829431580999680, "id_str": "148829431580999681", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1304999779/cifrao_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1304999779/cifrao_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/uoOppch1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:56 +0000", "from_user": "daytradeBOVESPA", "from_user_id": 165049249, "from_user_id_str": "165049249", "from_user_name": "Brasil", "geo": null, "id": 148829431023149060, "id_str": "148829431023149056", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1195885414/thumb_fan_symbol_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1195885414/thumb_fan_symbol_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/8wc0pJDS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:55 +0000", "from_user": "alfayarj", "from_user_id": 270028960, "from_user_id_str": "270028960", "from_user_name": "Carlos Alfaya", "geo": null, "id": 148829428489789440, "id_str": "148829428489789440", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1284929672/123456_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1284929672/123456_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/TXfJI2VX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:55 +0000", "from_user": "LairsonOVelho", "from_user_id": 261392341, "from_user_id_str": "261392341", "from_user_name": "Lairson Belmonte", "geo": null, "id": 148829427697070080, "id_str": "148829427697070080", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1263091307/eu1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263091307/eu1_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/8eRX0BHB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:54 +0000", "from_user": "cantodailha", "from_user_id": 68441223, "from_user_id_str": "68441223", "from_user_name": "Hotel Canto da Ilha", "geo": null, "id": 148829425742520320, "id_str": "148829425742520320", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/970974102/logo-canto-ilha_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/970974102/logo-canto-ilha_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/JX9xjUsX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:54 +0000", "from_user": "divsonic", "from_user_id": 200372636, "from_user_id_str": "200372636", "from_user_name": "Rodrigo", "geo": null, "id": 148829425176289280, "id_str": "148829425176289281", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1218582247/13Sep_0019_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218582247/13Sep_0019_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/wJWounw5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:54 +0000", "from_user": "amwaydobrazil", "from_user_id": 259446060, "from_user_id_str": "259446060", "from_user_name": "Francisco Martins", "geo": null, "id": 148829424178049020, "id_str": "148829424178049024", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1259012332/eunofone.jpg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1259012332/eunofone.jpg_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/MD0G7NYc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:54 +0000", "from_user": "leandro_sgda", "from_user_id": 255064179, "from_user_id_str": "255064179", "from_user_name": "leandro alves", "geo": null, "id": 148829423519547400, "id_str": "148829423519547392", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1249775692/OQAAAFkSsFlVSvPFZJ1cFX_RR-2eBD8Q6JLGjcTRCMimDFbeIbp5dTIlTYEPA8w3cZ42wQpYUU02cgKL05mUo4rR-qEAm1T1UGfDiku1VnHBpcG5fy3SpQknry4v_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1249775692/OQAAAFkSsFlVSvPFZJ1cFX_RR-2eBD8Q6JLGjcTRCMimDFbeIbp5dTIlTYEPA8w3cZ42wQpYUU02cgKL05mUo4rR-qEAm1T1UGfDiku1VnHBpcG5fy3SpQknry4v_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/nKqvuCgo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:54 +0000", "from_user": "douglasm_santos", "from_user_id": 255021312, "from_user_id_str": "255021312", "from_user_name": "Douglas Matos", "geo": null, "id": 148829422785531900, "id_str": "148829422785531904", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1249730709/P1080125_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1249730709/P1080125_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/dD9mZLxw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:53 +0000", "from_user": "Attosconstcivil", "from_user_id": 233609185, "from_user_id_str": "233609185", "from_user_name": "Attos Const. Civil", "geo": null, "id": 148829421317525500, "id_str": "148829421317525504", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691221033/branco_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691221033/branco_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/jRBtyRYv", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:53 +0000", "from_user": "Fouad_Webrenda", "from_user_id": 213390267, "from_user_id_str": "213390267", "from_user_name": "fouad fadl", "geo": null, "id": 148829419388153860, "id_str": "148829419388153856", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1224072106/Gramado_e_Canela_200_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1224072106/Gramado_e_Canela_200_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/fhZa6CkX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:53 +0000", "from_user": "Empreendedornet", "from_user_id": 73765593, "from_user_id_str": "73765593", "from_user_name": "Ronaldo Santos", "geo": null, "id": 148829418587029500, "id_str": "148829418587029504", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/457794815/10-10-08_2113_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/457794815/10-10-08_2113_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t: http://t.co/IDZbQGb6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:53 +0000", "from_user": "probeto123", "from_user_id": 49773548, "from_user_id_str": "49773548", "from_user_name": "Paulo Roberto Orth", "geo": null, "id": 148829418159210500, "id_str": "148829418159210496", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1218599988/41762_100001369055674_4916_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1218599988/41762_100001369055674_4916_q_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\\n\\t\\t\\t\\t\\t\\tFMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal\\n\\t\\t\\t\\t\\t http://t.co/ks8MQFHR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:50 +0000", "from_user": "livejornal", "from_user_id": 82668319, "from_user_id_str": "82668319", "from_user_name": "LiveJornal", "geo": null, "id": 148829408210329600, "id_str": "148829408210329600", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1109362619/terragira_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1109362619/terragira_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal: http://t.co/lsNd6Rfc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:50 +0000", "from_user": "DjKaosJollyJams", "from_user_id": 317336718, "from_user_id_str": "317336718", "from_user_name": "DjKaosJollyJams", "geo": null, "id": 148829406897504260, "id_str": "148829406897504256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1396093400/kaos_rider_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1396093400/kaos_rider_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "PORTUGAL TOUR 2012 INCOMING!\\nCheck this video out -- DJ KAOS & DJ TIAGO - LUX CLUB LISBOA http://t.co/vYtJHyHc via @youtube", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:49 +0000", "from_user": "vmoretoconsult", "from_user_id": 126282876, "from_user_id_str": "126282876", "from_user_name": "VM Consulting", "geo": null, "id": 148829405077188600, "id_str": "148829405077188608", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/774189460/vm-150x150_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/774189460/vm-150x150_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal: http://t.co/da3c7KsW #VMConsulting", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:38 +0000", "from_user": "Economia_Es", "from_user_id": 369694446, "from_user_id_str": "369694446", "from_user_name": "infoEconomia ", "geo": null, "id": 148829358830784500, "id_str": "148829358830784512", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1534225813/hucha-tecla_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534225813/hucha-tecla_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "El FMI aprueba un tramo de cr\\u00E9dito de 2.900 millones a Portugal: (Reuters) - El Fondo Monetario Int... http://t.co/kTaTVbJz #econotweets", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:38 +0000", "from_user": "american_eagle", "from_user_id": 19039286, "from_user_id_str": "19039286", "from_user_name": "American Eagle", "geo": null, "id": 148829357077569540, "id_str": "148829357077569536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1508203201/safe_image.php2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1508203201/safe_image.php2_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "@FI_Maia We are so happy your items made it to Portugal safely and quickly.", "to_user": "FI_Maia", "to_user_id": 393069583, "to_user_id_str": "393069583", "to_user_name": "Filipa Maia", "in_reply_to_status_id": 147818043425292300, "in_reply_to_status_id_str": "147818043425292288"}, +{"created_at": "Mon, 19 Dec 2011 18:17:38 +0000", "from_user": "Economia_Es", "from_user_id": 369694446, "from_user_id_str": "369694446", "from_user_name": "infoEconomia ", "geo": null, "id": 148829356255485950, "id_str": "148829356255485953", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1534225813/hucha-tecla_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1534225813/hucha-tecla_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "El FMI autoriza el desembolso de 2.900 millones del siguiente tramo del rescate de Portugal: El con... http://t.co/vO2kG7ev #econotweets", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:25 +0000", "from_user": "Lepranews", "from_user_id": 74204778, "from_user_id_str": "74204778", "from_user_name": "Newells Old Boys", "geo": null, "id": 148829304371949570, "id_str": "148829304371949568", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1150170542/Escudo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1150170542/Escudo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @VarskySports: En Portugal afirman que Colo Ansaldi no quiere volver a Rusia y #Benfica busca contratarlo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:11 +0000", "from_user": "evam1987", "from_user_id": 128621106, "from_user_id_str": "128621106", "from_user_name": "eva maria", "geo": null, "id": 148829245714612220, "id_str": "148829245714612224", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695003698/-0003mx_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695003698/-0003mx_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @VarskySports: En Portugal afirman que Colo Ansaldi no quiere volver a Rusia y #Benfica busca contratarlo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:17:05 +0000", "from_user": "divirtaseopovo", "from_user_id": 108985493, "from_user_id_str": "108985493", "from_user_name": "Blog Buchicho", "geo": null, "id": 148829219269513200, "id_str": "148829219269513216", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1158952333/avatar_divirtase_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1158952333/avatar_divirtase_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Rihanna sofre preconceito em Portugal e desabafa no twitter http://t.co/7OLo6NBB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:47 +0000", "from_user": "RihannaSuperFly", "from_user_id": 372524638, "from_user_id_str": "372524638", "from_user_name": "LBCRihannaFenty", "geo": null, "id": 148829143889485820, "id_str": "148829143889485824", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1632793672/IP3DU4r2_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632793672/IP3DU4r2_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@rih_navy_always You are from portugal?", "to_user": "rih_navy_always", "to_user_id": 380436804, "to_user_id_str": "380436804", "to_user_name": "marianavy_for_life", "in_reply_to_status_id": 148828452039032830, "in_reply_to_status_id_str": "148828452039032832"}, +{"created_at": "Mon, 19 Dec 2011 18:16:43 +0000", "from_user": "mikahsant", "from_user_id": 321663360, "from_user_id_str": "321663360", "from_user_name": "michaella", "geo": null, "id": 148829126340513800, "id_str": "148829126340513792", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1472926866/mika_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1472926866/mika_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "ai ai dia 31 chega e portugal a minha mae tenho que ir ate porto alegre pra buscar ela odeio viajens longas", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:39 +0000", "from_user": "raafaela96", "from_user_id": 73251663, "from_user_id_str": "73251663", "from_user_name": "Rafaela", "geo": null, "id": 148829107709411330, "id_str": "148829107709411329", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1209546359/PTDC1016_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1209546359/PTDC1016_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@ddlovato Come to Portugal plz ! \\n Portugal love you", "to_user": "ddlovato", "to_user_id": 21111883, "to_user_id_str": "21111883", "to_user_name": "demetria lovato"}, +{"created_at": "Mon, 19 Dec 2011 18:16:38 +0000", "from_user": "IndiaNewsMix", "from_user_id": 346777710, "from_user_id_str": "346777710", "from_user_name": "India News Desk", "geo": null, "id": 148829104333008900, "id_str": "148829104333008897", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1473076610/logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1473076610/logo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "How Goa became a part of India: In 1947, Portugal's Estado da India consisted of Goa, Daman, Diu and Dadra and N... http://t.co/n2JUY3rj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:37 +0000", "from_user": "prolawrssfeed", "from_user_id": 190785653, "from_user_id_str": "190785653", "from_user_name": "MyProLaw", "geo": null, "id": 148829102185529340, "id_str": "148829102185529344", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1123859389/iStock_000000691372Small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1123859389/iStock_000000691372Small_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Portugal Re-Discovers Venture Capital http://t.co/apLcn0Kt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:34 +0000", "from_user": "JussBiebsPT", "from_user_id": 195362402, "from_user_id_str": "195362402", "from_user_name": "Bieberlandia \\u2665", "geo": null, "id": 148829089493557250, "id_str": "148829089493557248", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1642400494/sorandom-4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642400494/sorandom-4_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@justinbieber i just want you in my country, you need to come to Portugal next year, do you want ?", "to_user": "justinbieber", "to_user_id": 27260086, "to_user_id_str": "27260086", "to_user_name": "Justin Bieber"}, +{"created_at": "Mon, 19 Dec 2011 18:16:32 +0000", "from_user": "Silver_hand", "from_user_id": 36516261, "from_user_id_str": "36516261", "from_user_name": "Chris Manning", "geo": null, "id": 148829081063002100, "id_str": "148829081063002113", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/203479825/SH_logo_48_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/203479825/SH_logo_48_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:17 +0000", "from_user": "revista_amanha", "from_user_id": 24891583, "from_user_id_str": "24891583", "from_user_name": "Revista Amanh\\u00E3", "geo": null, "id": 148829015300513800, "id_str": "148829015300513793", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1251469531/twitter2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1251469531/twitter2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "FMI libera 2,9 bi de euros para Portugal - http://t.co/aItDjfh9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:16:03 +0000", "from_user": "anaritasilvaa", "from_user_id": 81958079, "from_user_id_str": "81958079", "from_user_name": "Justin's PurpleNinja", "geo": null, "id": 148828957725294600, "id_str": "148828957725294592", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702392875/tumblr_lvt8qrFOg91ql3bhvo1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702392875/tumblr_lvt8qrFOg91ql3bhvo1_500_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@MathildeSimple Portugal and you ? :)", "to_user": "MathildeSimple", "to_user_id": 317926424, "to_user_id_str": "317926424", "to_user_name": "Simple Mathilde", "in_reply_to_status_id": 148828868722176000, "in_reply_to_status_id_str": "148828868722176001"}, +{"created_at": "Mon, 19 Dec 2011 18:15:59 +0000", "from_user": "HIPHOPN3WS", "from_user_id": 214491172, "from_user_id_str": "214491172", "from_user_name": "HIPHOPNEWS ", "geo": null, "id": 148828940893569020, "id_str": "148828940893569025", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1460765205/RED_HOODIE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1460765205/RED_HOODIE_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Rihanna Goes on Twitter Rant After Racial Abuse in Portugal (@Rihanna) http://t.co/j0kezfzC All i can say is I LOVE @RIHANNA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:59 +0000", "from_user": "lilianamldias", "from_user_id": 195108850, "from_user_id_str": "195108850", "from_user_name": "Liliana", "geo": null, "id": 148828939777867780, "id_str": "148828939777867777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1647781616/250376_190717564321322_100001492404466_531132_7851797_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647781616/250376_190717564321322_100001492404466_531132_7851797_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "buah ... When is that one direction decide to come to Portugal??", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:50 +0000", "from_user": "economiaaldia", "from_user_id": 89494209, "from_user_id_str": "89494209", "from_user_name": "Economia al D\\u00EDa", "geo": null, "id": 148828905032253440, "id_str": "148828905032253441", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/524509539/economia_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/524509539/economia_1__normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Econom\\u00EDa.- El FMI autoriza el desembolso de 2.900 millones del siguiente tramo del rescate de Portugal: LISBOA, ... http://t.co/YzDVFRG2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:49 +0000", "from_user": "Yaann_lp", "from_user_id": 270889619, "from_user_id_str": "270889619", "from_user_name": "YaNn \\u2665", "geo": null, "id": 148828900447887360, "id_str": "148828900447887360", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694597806/patin_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694597806/patin_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@imiparraguirre jajjaj preguntale al naka q puedo mandar a pedir de portugal para un regalo jajjajaj", "to_user": "imiparraguirre", "to_user_id": 149998690, "to_user_id_str": "149998690", "to_user_name": "imi iparraguirre", "in_reply_to_status_id": 148828653386600450, "in_reply_to_status_id_str": "148828653386600448"}, +{"created_at": "Mon, 19 Dec 2011 18:15:44 +0000", "from_user": "VarskySports", "from_user_id": 131967942, "from_user_id_str": "131967942", "from_user_name": "VarskySports", "geo": null, "id": 148828876892680200, "id_str": "148828876892680192", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1101175787/Foto-antorcha_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1101175787/Foto-antorcha_1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "En Portugal afirman que Colo Ansaldi no quiere volver a Rusia y #Benfica busca contratarlo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:40 +0000", "from_user": "Tangelaywvk", "from_user_id": 426263540, "from_user_id_str": "426263540", "from_user_name": "Tangela Minervini", "geo": null, "id": 148828863865163780, "id_str": "148828863865163777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668799827/LLCM-1969_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668799827/LLCM-1969_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Spain-Portugal: FB.S000 (Multi-country Mapping): http://t.co/EuFBXkfD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:39 +0000", "from_user": "Ivesterye", "from_user_id": 395428721, "from_user_id_str": "395428721", "from_user_name": "Julieta Ivester", "geo": null, "id": 148828858957832200, "id_str": "148828858957832192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1599687864/MFC-4217_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599687864/MFC-4217_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Spain-Portugal: FB.S000 (Multi-country Mapping): http://t.co/XGr6kFEW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:29 +0000", "from_user": "ejovenes", "from_user_id": 251203654, "from_user_id_str": "251203654", "from_user_name": "CEJcoparmex", "geo": null, "id": 148828816872194050, "id_str": "148828816872194048", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1467104587/CEJ_COPARMEX_NEW_LOGO_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1467104587/CEJ_COPARMEX_NEW_LOGO_normal.png", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "Aprueba el Fondo Monetario Internacional la entrega de casi 3 mil millones de euros para Portugal http://t.co/Q2tpx9wK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:22 +0000", "from_user": "economia_feed_1", "from_user_id": 284997069, "from_user_id_str": "284997069", "from_user_name": "economia_feed_1", "geo": null, "id": 148828786266357760, "id_str": "148828786266357761", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.google.es" rel="nofollow">Economia_feed</a>", "text": "El #FMI #autoriza el #desembolso del siguiente #tramo del #rescate de #Portugal http://t.co/0R7uYsOK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:15:59 +0000", "from_user": "meloname", "from_user_id": 152141448, "from_user_id_str": "152141448", "from_user_name": "melon ame", "geo": null, "id": 148828941757587460, "id_str": "148828941757587456", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Milenio: FMI aprueba entrega de \\u20AC2 mil 900 millones para Portugal http://t.co/yR5rfUc1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:59 +0000", "from_user": "HIPHOPN3WS", "from_user_id": 214491172, "from_user_id_str": "214491172", "from_user_name": "HIPHOPNEWS ", "geo": null, "id": 148828940893569020, "id_str": "148828940893569025", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1460765205/RED_HOODIE_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1460765205/RED_HOODIE_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Rihanna Goes on Twitter Rant After Racial Abuse in Portugal (@Rihanna) http://t.co/j0kezfzC All i can say is I LOVE @RIHANNA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:59 +0000", "from_user": "lilianamldias", "from_user_id": 195108850, "from_user_id_str": "195108850", "from_user_name": "Liliana", "geo": null, "id": 148828939777867780, "id_str": "148828939777867777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1647781616/250376_190717564321322_100001492404466_531132_7851797_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647781616/250376_190717564321322_100001492404466_531132_7851797_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "buah ... When is that one direction decide to come to Portugal??", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:50 +0000", "from_user": "economiaaldia", "from_user_id": 89494209, "from_user_id_str": "89494209", "from_user_name": "Economia al D\\u00EDa", "geo": null, "id": 148828905032253440, "id_str": "148828905032253441", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/524509539/economia_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/524509539/economia_1__normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Econom\\u00EDa.- El FMI autoriza el desembolso de 2.900 millones del siguiente tramo del rescate de Portugal: LISBOA, ... http://t.co/YzDVFRG2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:49 +0000", "from_user": "Yaann_lp", "from_user_id": 270889619, "from_user_id_str": "270889619", "from_user_name": "YaNn \\u2665", "geo": null, "id": 148828900447887360, "id_str": "148828900447887360", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694597806/patin_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694597806/patin_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@imiparraguirre jajjaj preguntale al naka q puedo mandar a pedir de portugal para un regalo jajjajaj", "to_user": "imiparraguirre", "to_user_id": 149998690, "to_user_id_str": "149998690", "to_user_name": "imi iparraguirre", "in_reply_to_status_id": 148828653386600450, "in_reply_to_status_id_str": "148828653386600448"}, +{"created_at": "Mon, 19 Dec 2011 18:15:44 +0000", "from_user": "VarskySports", "from_user_id": 131967942, "from_user_id_str": "131967942", "from_user_name": "VarskySports", "geo": null, "id": 148828876892680200, "id_str": "148828876892680192", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1101175787/Foto-antorcha_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1101175787/Foto-antorcha_1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "En Portugal afirman que Colo Ansaldi no quiere volver a Rusia y #Benfica busca contratarlo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:40 +0000", "from_user": "Tangelaywvk", "from_user_id": 426263540, "from_user_id_str": "426263540", "from_user_name": "Tangela Minervini", "geo": null, "id": 148828863865163780, "id_str": "148828863865163777", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1668799827/LLCM-1969_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668799827/LLCM-1969_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Spain-Portugal: FB.S000 (Multi-country Mapping): http://t.co/EuFBXkfD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:39 +0000", "from_user": "Ivesterye", "from_user_id": 395428721, "from_user_id_str": "395428721", "from_user_name": "Julieta Ivester", "geo": null, "id": 148828858957832200, "id_str": "148828858957832192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1599687864/MFC-4217_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599687864/MFC-4217_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Spain-Portugal: FB.S000 (Multi-country Mapping): http://t.co/XGr6kFEW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:35 +0000", "from_user": "Tumtum_Senger", "from_user_id": 375074126, "from_user_id_str": "375074126", "from_user_name": "\\u2654Arthur Senger \\u2655", "geo": null, "id": 148828840007962620, "id_str": "148828840007962624", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1624102201/317141_130980263676745_100002943172791_164354_882766803_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624102201/317141_130980263676745_100002943172791_164354_882766803_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "e euu aqui em Portugal.... Ja anoite!!!! Tipo aqui s\\u00E3o 16:16 da tarde ja ta anoite... isso sim \\u00E9h que e inverno forte em... hahahaha", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:29 +0000", "from_user": "ejovenes", "from_user_id": 251203654, "from_user_id_str": "251203654", "from_user_name": "CEJcoparmex", "geo": null, "id": 148828816872194050, "id_str": "148828816872194048", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1467104587/CEJ_COPARMEX_NEW_LOGO_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1467104587/CEJ_COPARMEX_NEW_LOGO_normal.png", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "Aprueba el Fondo Monetario Internacional la entrega de casi 3 mil millones de euros para Portugal http://t.co/Q2tpx9wK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:22 +0000", "from_user": "economia_feed_1", "from_user_id": 284997069, "from_user_id_str": "284997069", "from_user_name": "economia_feed_1", "geo": null, "id": 148828786266357760, "id_str": "148828786266357761", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.google.es" rel="nofollow">Economia_feed</a>", "text": "El #FMI #autoriza el #desembolso del siguiente #tramo del #rescate de #Portugal http://t.co/0R7uYsOK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:21 +0000", "from_user": "ruicruz", "from_user_id": 8757362, "from_user_id_str": "8757362", "from_user_name": "Rui Cruz", "geo": null, "id": 148828782701182980, "id_str": "148828782701182976", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1454284389/242933_217847278246550_100000638370024_714778_274115_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1454284389/242933_217847278246550_100000638370024_714778_274115_o_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "http://t.co/aV5FpZ9p: Wall Street sobe pela terceira sess\\u00E3o com Europa http://t.co/FoF8Zn7m #fmi #portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:20 +0000", "from_user": "duvdinformatica", "from_user_id": 215820756, "from_user_id_str": "215820756", "from_user_name": "D\\u00FAvidasdeInform\\u00E1tica", "geo": null, "id": 148828778276204540, "id_str": "148828778276204545", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1167354140/ScreenClip_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1167354140/ScreenClip_normal.png", "source": "<a href="http://www.duvidasdeinformatica.com/" rel="nofollow">D\\u00FAvidas de Inform\\u00E1tica</a>", "text": "#Portugal #Emprego > Designer procura programador / web developer freelancer... http://t.co/HKuQfUCN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:13 +0000", "from_user": "daiszy0123", "from_user_id": 131567296, "from_user_id_str": "131567296", "from_user_name": "daisyshow", "geo": null, "id": 148828746911199230, "id_str": "148828746911199232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1401957588/Selena_Gomez_17_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1401957588/Selena_Gomez_17_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Rihanna sick at Portugal show http://t.co/9IGxgj41", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:06 +0000", "from_user": "MOCAjack", "from_user_id": 21198116, "from_user_id_str": "21198116", "from_user_name": "MOCA Jacksonville", "geo": null, "id": 148828721179148300, "id_str": "148828721179148289", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693089017/FB-MOCA-logo-_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693089017/FB-MOCA-logo-_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Shout out to our friends in Portugal! @affoto Thank you for the post! The afotografia Photography Daily j\\u00E1 saiu! http://t.co/IDfXp5D7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:03 +0000", "from_user": "Economic_Times", "from_user_id": 347785614, "from_user_id_str": "347785614", "from_user_name": "Economic Times", "geo": null, "id": 148828708952743940, "id_str": "148828708952743936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "http://t.co/u8YMA9g8 IMF releases 2.9 bn euros to Portugal: IMF said it would release 2.9 billion euros ($3.8... http://t.co/iHcaplmh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:15:00 +0000", "from_user": "IpapStreet", "from_user_id": 259411021, "from_user_id_str": "259411021", "from_user_name": "Team IpapUnivers", "geo": null, "id": 148828692347490300, "id_str": "148828692347490304", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1485279295/mic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1485279295/mic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Rihanna enceinte : Elle fait actuellement le Buzz sur le Net, apres etre aller vomir alors qu'elle donnait un concert au Portugal...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:46 +0000", "from_user": "raafaela96", "from_user_id": 73251663, "from_user_id_str": "73251663", "from_user_name": "Rafaela", "geo": null, "id": 148828634931675140, "id_str": "148828634931675136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1209546359/PTDC1016_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1209546359/PTDC1016_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@rihanna Thanks very much the concert in Portugal !", "to_user": "rihanna", "to_user_id": 79293791, "to_user_id_str": "79293791", "to_user_name": "Rihanna"}, +{"created_at": "Mon, 19 Dec 2011 18:14:44 +0000", "from_user": "_Carlos_Melo_", "from_user_id": 325836619, "from_user_id_str": "325836619", "from_user_name": "CARLOS MELO", "geo": null, "id": 148828625217654800, "id_str": "148828625217654784", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1699720835/Jr.vermelho_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699720835/Jr.vermelho_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "#rihanna acusa hotel de Portugal de racismo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:40 +0000", "from_user": "RitinhaBieber17", "from_user_id": 363916597, "from_user_id_str": "363916597", "from_user_name": "Proud to be Belieber", "geo": null, "id": 148828611753947140, "id_str": "148828611753947136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1675995868/__KGrHqF__jkE2HRjbf_KBNpf_r1i0Q__0_1h_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675995868/__KGrHqF__jkE2HRjbf_KBNpf_r1i0Q__0_1h_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rihanna: PORTUGAL tonight was LEGENDARY!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:38 +0000", "from_user": "vusisindane", "from_user_id": 190879699, "from_user_id_str": "190879699", "from_user_name": "Vusi Sindane", "geo": null, "id": 148828600202833920, "id_str": "148828600202833920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1223790894/newpic_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1223790894/newpic_400_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @richardbranson: Great results from an alternative approach to combating drug abuse #portugal http://t.co/T7h30vOW", "to_user": "richardbranson", "to_user_id": 8161232, "to_user_id_str": "8161232", "to_user_name": "richardbranson", "in_reply_to_status_id": 148791817272438800, "in_reply_to_status_id_str": "148791817272438784"}, +{"created_at": "Mon, 19 Dec 2011 18:14:28 +0000", "from_user": "SamKinsman96", "from_user_id": 430021419, "from_user_id_str": "430021419", "from_user_name": "Sam Kinsman", "geo": null, "id": 148828559014772740, "id_str": "148828559014772737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1688800442/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688800442/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@kate_cocozza You thought Portugal was in turkey mate", "to_user": "Kate_Cocozza", "to_user_id": 408033612, "to_user_id_str": "408033612", "to_user_name": "Kate Ann"}, +{"created_at": "Mon, 19 Dec 2011 18:14:18 +0000", "from_user": "barthoffman", "from_user_id": 82361085, "from_user_id_str": "82361085", "from_user_name": "Bart Hoffman", "geo": null, "id": 148828520041287680, "id_str": "148828520041287680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1609186099/IMG_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609186099/IMG_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:16 +0000", "from_user": "isiscvilarim", "from_user_id": 181697623, "from_user_id_str": "181697623", "from_user_name": "\\u00CDsis Vilarim", "geo": null, "id": 148828508410490880, "id_str": "148828508410490880", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702435719/___normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702435719/___normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@LoveJecTorres tu vai pra Portugal primeiro \\u00E9 amiga?", "to_user": "LoveJecTorres", "to_user_id": 150374030, "to_user_id_str": "150374030", "to_user_name": "Love J\\u00E9ssica Torres", "in_reply_to_status_id": 148828096051679230, "in_reply_to_status_id_str": "148828096051679232"}, +{"created_at": "Mon, 19 Dec 2011 18:14:12 +0000", "from_user": "ObeyBieberconda", "from_user_id": 53453645, "from_user_id_str": "53453645", "from_user_name": "sara", "geo": null, "id": 148828494095327230, "id_str": "148828494095327234", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702190711/Snapshot_20111217_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702190711/Snapshot_20111217_2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "every singer that comes to portugal, always say that they loved. justin, why dont you come here like now", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:14:02 +0000", "from_user": "JUANITOPASTRANA", "from_user_id": 147655717, "from_user_id_str": "147655717", "from_user_name": "juan gabriel pastrna", "geo": null, "id": 148828451502174200, "id_str": "148828451502174208", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1502328447/299352_10150346172031285_699496284_9970489_3891521_n_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1502328447/299352_10150346172031285_699496284_9970489_3891521_n_1__normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Que partiido argentina vs portugal http://t.co/UhPa9Apg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:58 +0000", "from_user": "PVera31", "from_user_id": 176705960, "from_user_id_str": "176705960", "from_user_name": "P@o", "geo": null, "id": 148828434896924670, "id_str": "148828434896924673", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1560520291/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1560520291/image_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @LifeBoxset: Escucha un cover de Portugal. The Man a Gnarls Barkley http://t.co/qYMNEKP9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:57 +0000", "from_user": "imprensapt", "from_user_id": 92309927, "from_user_id_str": "92309927", "from_user_name": "Imprensa Portugal", "geo": null, "id": 148828429909901300, "id_str": "148828429909901312", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/541910652/imprensa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/541910652/imprensa_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprovou terceira tranche do empr\\u00E9stimo a Portugal: O Fundo Monet\\u00E1rio Internacional (FMI) aprovou esta segund... http://t.co/O3g22DMN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:53 +0000", "from_user": "indmutualfunds", "from_user_id": 102630399, "from_user_id_str": "102630399", "from_user_name": "MFI", "geo": null, "id": 148828413283667970, "id_str": "148828413283667968", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Indian funds: IMF releases 2.9 bn euros to Portugal http://t.co/GSY7qTNa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:46 +0000", "from_user": "Davinanwn", "from_user_id": 431687169, "from_user_id_str": "431687169", "from_user_name": "Davina Mathiesen", "geo": null, "id": 148828385555124220, "id_str": "148828385555124225", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1681001463/qotn2ru4t5_122480869_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681001463/qotn2ru4t5_122480869_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Spain and Portugal: Short Stay Guide (Short Stay Guides): http://t.co/cFjrU21a", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:38 +0000", "from_user": "Paesa1978", "from_user_id": 363633403, "from_user_id_str": "363633403", "from_user_name": "Francisco Paesa", "geo": null, "id": 148828349890965500, "id_str": "148828349890965504", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1517303999/kaput_z1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1517303999/kaput_z1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @LenaLafayette: http://t.co/vGAyiIOq Foreign Office preparan ayudas para brit\\u00E1nicos que vivan en ESpa\\u00F1a y en Portugal,en el caso en el que hay CORRALITO.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:36 +0000", "from_user": "wildwordweb", "from_user_id": 55131809, "from_user_id_str": "55131809", "from_user_name": "wildwordweb ", "geo": null, "id": 148828343347847170, "id_str": "148828343347847169", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1613064893/004a6878-c4c5-4978-a897-06f3f3d34467_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1613064893/004a6878-c4c5-4978-a897-06f3f3d34467_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "El FMI aprueba un tramo de cr\\u00E9dito de 2.900 millones a Portugal - Yahoo! http://t.co/negJ0wP4 via @YahooFinance", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:26 +0000", "from_user": "Fyockdk", "from_user_id": 395389016, "from_user_id_str": "395389016", "from_user_name": "Anya Fyock", "geo": null, "id": 148828301450944500, "id_str": "148828301450944512", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1599596527/MFC-2076_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599596527/MFC-2076_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Garmin City Navigator Spain/Portugal - 010-10691-02: Garmin City Navigator NT Spain & PortugalDetailed map cover... http://t.co/OoYT0rAX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:23 +0000", "from_user": "PrryEli", "from_user_id": 310040423, "from_user_id_str": "310040423", "from_user_name": "EliDannVl", "geo": null, "id": 148828285151870980, "id_str": "148828285151870976", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1612560802/297108_10150325986953059_708573058_8194372_985497793_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1612560802/297108_10150325986953059_708573058_8194372_985497793_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Una de las bibliotecas mas hermosas del mundo en Coimbra, Portugal http://t.co/oKPiBhNt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:17 +0000", "from_user": "SaraMartineeez", "from_user_id": 343577758, "from_user_id_str": "343577758", "from_user_name": "S\\u0251r\\u0251 M\\u0251rtinez \\u2661", "geo": null, "id": 148828262288732160, "id_str": "148828262288732160", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677402455/asc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677402455/asc_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @TamiTomlinson: @SaraMartineeez Jajajajajaja :B MOR\\u00CD! Vos me tenias abondonada! LLendote a PORTUGAL XD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:17 +0000", "from_user": "daankofinch", "from_user_id": 145707317, "from_user_id_str": "145707317", "from_user_name": "\\u0424\\u0438\\u043D\\u0447", "geo": null, "id": 148828261802184700, "id_str": "148828261802184704", "iso_language_code": "ru", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702450719/__23_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702450719/__23_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u0430\\u0445 \\u0434\\u0430 http://t.co/ZLHmJY7v", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:13:00 +0000", "from_user": "RonaltSiilva", "from_user_id": 156436987, "from_user_id_str": "156436987", "from_user_name": "Ronalt", "geo": null, "id": 148828189479813120, "id_str": "148828189479813122", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697597588/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697597588/twitter_normal.jpg", "source": "<a href="http://messaging.nokia.com/site/main.do" rel="nofollow"> Ovi by Nokia </a>", "text": "Nossa q cultura estranha de portugal. Dar cigarros para as crian\\u00E7as em uma \\u00E9poca do ano =S #Indignado", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:59 +0000", "from_user": "BritVzla", "from_user_id": 440985039, "from_user_id_str": "440985039", "from_user_name": "Astrid Navarrete", "geo": null, "id": 148828188615770100, "id_str": "148828188615770112", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702419898/110_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702419898/110_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "@Evenpro #LaPrincesaVinotinto Portugal", "to_user": "Evenpro", "to_user_id": 95903808, "to_user_id_str": "95903808", "to_user_name": "Evenpro "}, +{"created_at": "Mon, 19 Dec 2011 18:12:56 +0000", "from_user": "Its_Nicou", "from_user_id": 181596625, "from_user_id_str": "181596625", "from_user_name": "\\u2714 Just Do It.", "geo": null, "id": 148828173507891200, "id_str": "148828173507891200", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694901177/tumblr_lvv2mgsWRY1qik3uyo1_500_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694901177/tumblr_lvv2mgsWRY1qik3uyo1_500_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Magnifique vid\\u00E9o des d\\u00E9buts de @Cristiano avec le maillot du Sporting Clube du Portugal http://t.co/8moLUFKb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:53 +0000", "from_user": "Alixymz", "from_user_id": 440208675, "from_user_id_str": "440208675", "from_user_name": "Alix Gettle", "geo": null, "id": 148828163001167870, "id_str": "148828163001167872", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700563342/large_KMHLRQBSKCVEH_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700563342/large_KMHLRQBSKCVEH_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Portugal - Culture Smart!: The Essential Guide to Customs & Culture: Culture Smart! provides essential informati... http://t.co/9FJ9RkOk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:49 +0000", "from_user": "wildwordweb", "from_user_id": 55131809, "from_user_id_str": "55131809", "from_user_name": "wildwordweb ", "geo": null, "id": 148828144139382800, "id_str": "148828144139382785", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1613064893/004a6878-c4c5-4978-a897-06f3f3d34467_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1613064893/004a6878-c4c5-4978-a897-06f3f3d34467_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @RedEconomica: El FMI aprueba un tramo de cr\\u00E9dito de 2.900 millones a Portugal http://t.co/YKTZi6Og [Yahoo] #Economia", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:49 +0000", "from_user": "Daniela_xP", "from_user_id": 72853703, "from_user_id_str": "72853703", "from_user_name": "Daniela ", "geo": null, "id": 148828143833202700, "id_str": "148828143833202688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1472604376/Twitter__800x600__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1472604376/Twitter__800x600__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rihanna: PORTUGAL tonight was LEGENDARY!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:48 +0000", "from_user": "AsLuanaticas_PT", "from_user_id": 246811989, "from_user_id_str": "246811989", "from_user_name": "As Luanaticas PT", "geo": null, "id": 148828139726970880, "id_str": "148828139726970880", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1589478022/366105796_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1589478022/366105796_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@Gusttavo_lima adoro sua m\\u00FAsica daqui uma f\\u00E3 de Portugal +.+", "to_user": "Gusttavo_lima", "to_user_id": 126676337, "to_user_id_str": "126676337", "to_user_name": "Gusttavo Lima", "in_reply_to_status_id": 148826046408572930, "in_reply_to_status_id_str": "148826046408572929"}, +{"created_at": "Mon, 19 Dec 2011 18:12:47 +0000", "from_user": "MARKETRISER", "from_user_id": 329695511, "from_user_id_str": "329695511", "from_user_name": "MARKETRISER.COM", "geo": null, "id": 148828136719646720, "id_str": "148828136719646720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1427519217/MR-Twitter-Logo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1427519217/MR-Twitter-Logo_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF releases 2.9 bn euros to Portugal: IMF said it would release 2.9 billion euros ($3.8 billion) to Portugal in the newest installme...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:46 +0000", "from_user": "mitesh_1011", "from_user_id": 103108748, "from_user_id_str": "103108748", "from_user_name": "mitesh panchal", "geo": null, "id": 148828131640344580, "id_str": "148828131640344579", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1174514726/lion_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1174514726/lion_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF releases 2.9 bn euros to Portugal: IMF said it would release 2.9 billion euros ($3.8 billion) to Portugal in... http://t.co/EnbksTzJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:46 +0000", "from_user": "India_IN", "from_user_id": 112685695, "from_user_id_str": "112685695", "from_user_name": "India Indian", "geo": null, "id": 148828130503700480, "id_str": "148828130503700480", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/685022477/india_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/685022477/india_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF releases 2.9 bn euros to Portugal: IMF said it would release 2.9 billion euros ($3.8 billion) to Portugal in the newest installme...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:46 +0000", "from_user": "NbfcAsia", "from_user_id": 96502575, "from_user_id_str": "96502575", "from_user_name": "NBFC", "geo": null, "id": 148828130419810300, "id_str": "148828130419810304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/886709101/smallnbfcworld_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/886709101/smallnbfcworld_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF releases 2.9 bn euros to Portugal: IMF said it would release 2.9 billion euros ($3.8 billion) to Portuga... http://t.co/tmeysJk3 -ET", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:45 +0000", "from_user": "debtreport", "from_user_id": 139034973, "from_user_id_str": "139034973", "from_user_name": "Umesh Tulsyan", "geo": null, "id": 148828129639673860, "id_str": "148828129639673856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1198488389/IMG00059-20101218-2233_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1198488389/IMG00059-20101218-2233_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF releases 2.9 bn euros to Portugal: IMF said it would release 2.9 billion euros ($3.8 billion) to Portugal in... http://t.co/YDWgS7cN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:45 +0000", "from_user": "kvrao12", "from_user_id": 36934517, "from_user_id_str": "36934517", "from_user_name": "Visu", "geo": null, "id": 148828127706091520, "id_str": "148828127706091520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1586228386/aa_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586228386/aa_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF releases 2.9 bn euros to Portugal: IMF said it would release 2.9 billion euros ($3.8 billion) to Portugal in... http://t.co/gviYN717", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:44 +0000", "from_user": "masterstrokes", "from_user_id": 76242857, "from_user_id_str": "76242857", "from_user_name": "masterstrokes", "geo": null, "id": 148828125835444220, "id_str": "148828125835444224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/433052851/Ftalarms_logo_6_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/433052851/Ftalarms_logo_6_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "http://t.co/EMfkQfIm IMF releases 2.9 bn euros to Portugal: IMF said it would release 2.9 billion euros ($3.8 bil... http://t.co/ffPmkAg7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:43 +0000", "from_user": "ReeyazManji", "from_user_id": 59753763, "from_user_id_str": "59753763", "from_user_name": "Reeyaz Manji", "geo": null, "id": 148828118247940100, "id_str": "148828118247940096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1593061656/Riyaz_Paint_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593061656/Riyaz_Paint_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF releases 2.9 bn euros to Portugal: IMF said it would release 2.9 billion euros ($3.8 billion) to Portugal in... http://t.co/K43LFB94", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:38 +0000", "from_user": "India_Business", "from_user_id": 32455632, "from_user_id_str": "32455632", "from_user_name": "India Business News", "geo": null, "id": 148828097855229950, "id_str": "148828097855229952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/142727434/jaibiz_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/142727434/jaibiz_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#india #business : IMF releases 2.9 bn euros to Portugal: IMF said it would release 2.9 billion euros ($3.8 bill... http://t.co/YXJzs8Ge", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:37 +0000", "from_user": "ETNowTv", "from_user_id": 48278318, "from_user_id_str": "48278318", "from_user_name": "ET Now", "geo": null, "id": 148828095208636400, "id_str": "148828095208636416", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/268682112/et-now-logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/268682112/et-now-logo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF releases 2.9 bn euros to Portugal http://t.co/Tu6Bswgj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:37 +0000", "from_user": "AmaleshSingh", "from_user_id": 49939611, "from_user_id_str": "49939611", "from_user_name": "Amalesh Singh", "geo": null, "id": 148828094508175360, "id_str": "148828094508175360", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1214832201/Its_me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1214832201/Its_me_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF releases 2.9 bn euros to Portugal http://t.co/0MLYtO6H", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:31 +0000", "from_user": "reisenews_", "from_user_id": 321344677, "from_user_id_str": "321344677", "from_user_name": "reise news", "geo": null, "id": 148828069845676030, "id_str": "148828069845676033", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1406147666/1308650443_Internet_bags_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1406147666/1308650443_Internet_bags_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Kreuzfahrt MS Deutschland Kiel Portugal: Interessante kiel kreuzfahrt eBay Auktionen: Similar Posts: Neue Kiel K... http://t.co/7IjBsKAq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:23 +0000", "from_user": "509Triathlete", "from_user_id": 23342437, "from_user_id_str": "23342437", "from_user_name": "Bernard Vivy", "geo": null, "id": 148828035221696500, "id_str": "148828035221696512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1678205320/Getting_out_of_swim_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678205320/Getting_out_of_swim_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:13 +0000", "from_user": "TamiTomlinson", "from_user_id": 342445369, "from_user_id_str": "342445369", "from_user_name": "Tamara Veron 1D \\u262E ", "geo": null, "id": 148827993719054340, "id_str": "148827993719054336", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698697707/zaaaaynnn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698697707/zaaaaynnn_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SaraMartineeez Jajajajajaja :B MOR\\u00CD! Vos me tenias abondonada! LLendote a PORTUGAL XD", "to_user": "SaraMartineeez", "to_user_id": 343577758, "to_user_id_str": "343577758", "to_user_name": "S\\u0251r\\u0251 M\\u0251rtinez \\u2661", "in_reply_to_status_id": 148827626272849920, "in_reply_to_status_id_str": "148827626272849920"}, +{"created_at": "Mon, 19 Dec 2011 18:12:12 +0000", "from_user": "HipHopWeb", "from_user_id": 96447588, "from_user_id_str": "96447588", "from_user_name": "HipHopWeb", "geo": null, "id": 148827990065819650, "id_str": "148827990065819648", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1170752522/hiphopweb_logotipo-md_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1170752522/hiphopweb_logotipo-md_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Rihanna relata epis\\u00F3dio racista em Portugal http://t.co/gEJx14FY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:06 +0000", "from_user": "EZachery", "from_user_id": 291722844, "from_user_id_str": "291722844", "from_user_name": "Ed Zachery", "geo": null, "id": 148827965382336500, "id_str": "148827965382336512", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1410185768/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1410185768/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:06 +0000", "from_user": "Le_cristiane_", "from_user_id": 386264140, "from_user_id_str": "386264140", "from_user_name": "Let\\u00EDcia Mendes", "geo": null, "id": 148827965151658000, "id_str": "148827965151657984", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695470308/PQAAANOYm1wwLscg3pJFwn0Z_FqWSWD5dgT-ZUR7cpCYy8pPBL_wNqL9oHC4vAjQWvBYNhA0gDlVhZPX8W-ylhXnMroAm1T1UGrq55CCGeC1jRxOs2FS70uJrHD4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695470308/PQAAANOYm1wwLscg3pJFwn0Z_FqWSWD5dgT-ZUR7cpCYy8pPBL_wNqL9oHC4vAjQWvBYNhA0gDlVhZPX8W-ylhXnMroAm1T1UGrq55CCGeC1jRxOs2FS70uJrHD4_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "qero mora em Portugal ;D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:12:05 +0000", "from_user": "TimDeWolfe", "from_user_id": 10755432, "from_user_id_str": "10755432", "from_user_name": "TimDeWolfe", "geo": null, "id": 148827962303713280, "id_str": "148827962303713281", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1103153003/P1010059_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1103153003/P1010059_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @richardbranson It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough virg.co/b4Roy", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:58 +0000", "from_user": "CodyForeverCSF", "from_user_id": 394161388, "from_user_id_str": "394161388", "from_user_name": "CodySimpsonCSF", "geo": null, "id": 148827933061034000, "id_str": "148827933061033984", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699060543/AfJMzaGCEAIyZOR_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699060543/AfJMzaGCEAIyZOR_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @IceCreamCody: #Libra - Em que pa\\u00EDs o Cody te conheceria: Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:56 +0000", "from_user": "kicatmeneses", "from_user_id": 65019737, "from_user_id_str": "65019737", "from_user_name": "Francisca", "geo": null, "id": 148827922189402100, "id_str": "148827922189402112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670060085/kicona_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670060085/kicona_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@rihanna I guess I'm talking by all the people from Portugal. xx sweetie", "to_user": "rihanna", "to_user_id": 79293791, "to_user_id_str": "79293791", "to_user_name": "Rihanna"}, +{"created_at": "Mon, 19 Dec 2011 18:11:54 +0000", "from_user": "AsLuanaticas_PT", "from_user_id": 246811989, "from_user_id_str": "246811989", "from_user_name": "As Luanaticas PT", "geo": null, "id": 148827915260399600, "id_str": "148827915260399616", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1589478022/366105796_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1589478022/366105796_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@fazendaLS v\\u00EAm amor , \\u00E9 que parte de Portugal mora seu tio ?", "to_user": "fazendaLS", "to_user_id": 234832342, "to_user_id_str": "234832342", "to_user_name": "Fazenda (OFICIAL)", "in_reply_to_status_id": 148827709215219700, "in_reply_to_status_id_str": "148827709215219712"}, +{"created_at": "Mon, 19 Dec 2011 18:11:53 +0000", "from_user": "CinthyaOlguin", "from_user_id": 42151356, "from_user_id_str": "42151356", "from_user_name": "Cinthya Olgu\\u00EDn", "geo": null, "id": 148827908700504060, "id_str": "148827908700504065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1670724245/Dibujo2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670724245/Dibujo2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#T\\u00EDtulosOriginalesdeCanciones: \"How the leopard got its spots\" de Portugal The man", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:51 +0000", "from_user": "MartaRebocho", "from_user_id": 441032217, "from_user_id_str": "441032217", "from_user_name": "Marta Rebocho", "geo": null, "id": 148827899850530800, "id_str": "148827899850530816", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702504675/tumblr_lm58iekFhp1qgny6so1_500_large_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702504675/tumblr_lm58iekFhp1qgny6so1_500_large_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Vamos votar para ajudar a trazer os One Direction a Portugal! http://t.co/LspDu0Ap | http://t.co/R04lAnv1 | http://t.co/D9a9N2YS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:50 +0000", "from_user": "silverarrowjee", "from_user_id": 182947816, "from_user_id_str": "182947816", "from_user_name": "MUHAMMAD FAREED BUTT", "geo": null, "id": 148827896696418300, "id_str": "148827896696418304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1212962964/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1212962964/image_normal.jpg", "source": "<a href="http://www.apple.com" rel="nofollow">iOS</a>", "text": "Raging Rihanna's foulmouthed Twitter tirade after she's victim of racist abuse in Portugal http://t.co/puiCP5NX #MailOnline", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:44 +0000", "from_user": "kicatmeneses", "from_user_id": 65019737, "from_user_id_str": "65019737", "from_user_name": "Francisca", "geo": null, "id": 148827870670753800, "id_str": "148827870670753793", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670060085/kicona_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670060085/kicona_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@rihanna i'm very sad of what happened to you in Lisbon. It was disgusting! i'm from portugal but not from Lisbon.", "to_user": "rihanna", "to_user_id": 79293791, "to_user_id_str": "79293791", "to_user_name": "Rihanna"}, +{"created_at": "Mon, 19 Dec 2011 18:11:43 +0000", "from_user": "ZippyPivot", "from_user_id": 218966142, "from_user_id_str": "218966142", "from_user_name": "Peter Brewda", "geo": null, "id": 148827866849738750, "id_str": "148827866849738752", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1208709565/write-interesting-characters-200X200_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1208709565/write-interesting-characters-200X200_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:42 +0000", "from_user": "TokioHotelPy", "from_user_id": 172850414, "from_user_id_str": "172850414", "from_user_name": "Tokio Hotel Paraguay", "geo": null, "id": 148827862357647360, "id_str": "148827862357647360", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685557999/Twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685557999/Twitter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "100% Jovem n\\u00BA18/2011 (Portugal) http://t.co/XxABacz5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:35 +0000", "from_user": "rih_navy_always", "from_user_id": 380436804, "from_user_id_str": "380436804", "from_user_name": "marianavy_for_life", "geo": null, "id": 148827833542774800, "id_str": "148827833542774784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664571881/fashion-girl-kiss-pink-rihanna-Favim.com-57109_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664571881/fashion-girl-kiss-pink-rihanna-Favim.com-57109_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @RihannaSuperFly: @rihanna I do not want you to stay to think that everyone here in Portugal is racist! I'm not racist I have black people in my family!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:35 +0000", "from_user": "pedro__ts", "from_user_id": 48069341, "from_user_id_str": "48069341", "from_user_name": "Pedro", "geo": null, "id": 148827833416957950, "id_str": "148827833416957953", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1684146999/Picture_108_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684146999/Picture_108_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Catarina_Per: @rihanna WAS AMAZIIIIIIIIIIINNNNNNNGGGGGGGG!!!! PORTUGAL LOVES YOU! You're a great performer! You're so sweet with your fans *", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:33 +0000", "from_user": "Abelheira", "from_user_id": 53167460, "from_user_id_str": "53167460", "from_user_name": "Carlos Abelheira", "geo": null, "id": 148827825049309200, "id_str": "148827825049309186", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1654095400/us2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654095400/us2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI vai entregar a Portugal 2,9 bilh\\u00F5es de euros, parcela do ... - Portugal Digital http://t.co/rGyvAqVN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:32 +0000", "from_user": "JVLazaro07", "from_user_id": 287794492, "from_user_id_str": "287794492", "from_user_name": "J.V.Lazaro", "geo": null, "id": 148827820133589000, "id_str": "148827820133588992", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694870003/1323716874429_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694870003/1323716874429_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "queria mudar de pa\\u00EDs, sei l\\u00E1 ir para portugal, USA, inglaterra, algum lugar d onde eu possa ter uma vida + pr\\u00F3pera", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:06 +0000", "from_user": "IceCreamCody", "from_user_id": 257917645, "from_user_id_str": "257917645", "from_user_name": "Tia do sorvete ;*", "geo": null, "id": 148827714189668350, "id_str": "148827714189668353", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695297565/117_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695297565/117_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Libra - Em que pa\\u00EDs o Cody te conheceria: Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:04 +0000", "from_user": "RedEconomica", "from_user_id": 320309673, "from_user_id_str": "320309673", "from_user_name": "La Red Econ\\u00F3mica", "geo": null, "id": 148827704794419200, "id_str": "148827704794419201", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1403366820/19-06-2011_03-10-16_p-m-_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1403366820/19-06-2011_03-10-16_p-m-_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "El FMI aprueba un tramo de cr\\u00E9dito de 2.900 millones a Portugal http://t.co/YKTZi6Og [Yahoo] #Economia", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:04 +0000", "from_user": "CarinaMendes15", "from_user_id": 351893480, "from_user_id_str": "351893480", "from_user_name": "Carina Mendes", "geo": null, "id": 148827702768570370, "id_str": "148827702768570368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685958161/foto0445_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685958161/foto0445_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rihanna: PORTUGAL tonight was LEGENDARY!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:11:02 +0000", "from_user": "CaptainZaysh", "from_user_id": 75450061, "from_user_id_str": "75450061", "from_user_name": "Josh Follmann", "geo": null, "id": 148827697408245760, "id_str": "148827697408245763", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1316797833/Tux_Icon_bigger_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1316797833/Tux_Icon_bigger_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Great blog from @richardbranson about ending the war on drugs: http://t.co/n4mu4ePR Portugal already has, and it's working.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:56 +0000", "from_user": "NevenaMaric", "from_user_id": 44725653, "from_user_id_str": "44725653", "from_user_name": "Nevena Maric", "geo": null, "id": 148827668966674430, "id_str": "148827668966674432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698766560/IMG00534-20110804-1940-4_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698766560/IMG00534-20110804-1940-4_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@samanthaakxo haha #love! Ohwell, now that I can't cheer for Serbia next year, let's go Portugal? Hellllo @Cristiano;) haha<3", "to_user": "samanthaakxo", "to_user_id": 70982959, "to_user_id_str": "70982959", "to_user_name": "Samantha.", "in_reply_to_status_id": 148814251669196800, "in_reply_to_status_id_str": "148814251669196800"}, +{"created_at": "Mon, 19 Dec 2011 18:10:50 +0000", "from_user": "johnycassidy", "from_user_id": 303195615, "from_user_id_str": "303195615", "from_user_name": "Johny", "geo": null, "id": 148827644790710270, "id_str": "148827644790710273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1611465925/rainbow_juice_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1611465925/rainbow_juice_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @EfiEfthimiou: #Greece #Portugal #ireland will be excluded from bilateral loans to IMF (Greek FinMinistry)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:48 +0000", "from_user": "portal_cianorte", "from_user_id": 264374341, "from_user_id_str": "264374341", "from_user_name": "Portal de Cianorte", "geo": null, "id": 148827636334985200, "id_str": "148827636334985216", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1270191098/Coming_Soon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1270191098/Coming_Soon_normal.jpg", "source": "<a href="http://www.1st-movers.com/" rel="nofollow">AutoTweet Connector</a>", "text": "Mundo/Economia: FMI libera 2,9 bilh\\u00F5es de euros para Portugal http://t.co/4QPbGNJG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:46 +0000", "from_user": "toliskrallis", "from_user_id": 329542137, "from_user_id_str": "329542137", "from_user_name": "Tolis Krallis", "geo": null, "id": 148827631096299520, "id_str": "148827631096299521", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1556085943/logo2_normal.GIF", "profile_image_url_https": "https://si0.twimg.com/profile_images/1556085943/logo2_normal.GIF", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\"@EfiEfthimiou: #Greece #Portugal #ireland will be excluded from bilateral loans to IMF (Greek FinMinistry)\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:43 +0000", "from_user": "miroslavpitak", "from_user_id": 332682421, "from_user_id_str": "332682421", "from_user_name": "Miroslav Pit\\u00E1k", "geo": null, "id": 148827614457495550, "id_str": "148827614457495553", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1435422275/sm__ek1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1435422275/sm__ek1_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "MMF schv\\u00E1lil vyplacen\\u00ED 2,9 miliardy eur pro Portugalsko http://t.co/aPaJyDNF #PIIGS #Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:37 +0000", "from_user": "medailletwits", "from_user_id": 241941913, "from_user_id_str": "241941913", "from_user_name": "TwitNieuws", "geo": null, "id": 148827592617758720, "id_str": "148827592617758720", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1223608318/medaille_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1223608318/medaille_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "http://t.co/EBFFauUv Meisjes junioren winnen brons in Portugal: Meisjes junioren Kim Vermaas, Alice Ba... http://t.co/zvW3Dp98 #medaille", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:32 +0000", "from_user": "Fas_TaniaRO", "from_user_id": 364407769, "from_user_id_str": "364407769", "from_user_name": "T\\u00E2nia Rib.Oliv. F\\u00E3s", "geo": null, "id": 148827569603620860, "id_str": "148827569603620864", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1683594878/Tania_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683594878/Tania_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Publiquei 3 fotos no Facebook no \\u00E1lbum \"T\\u00E2nia - Portugal no Cora\\u00E7\\u00E3o 2011/2012\" http://t.co/gmt28GSl", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:20 +0000", "from_user": "ontherxs", "from_user_id": 34123390, "from_user_id_str": "34123390", "from_user_name": ":They call me Tim", "geo": null, "id": 148827519808831500, "id_str": "148827519808831489", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/392808557/IMG_0380_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/392808557/IMG_0380_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:16 +0000", "from_user": "YouAndMe_Bieber", "from_user_id": 235235830, "from_user_id_str": "235235830", "from_user_name": "I'm unbroken :)", "geo": null, "id": 148827502213742600, "id_str": "148827502213742593", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1689507026/468418609_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689507026/468418609_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Eu acho qe esqe\\u00E7i de dizer,mas agora eu tou vivendo em Portugal...Isto aqui \\u00E9 bonito tb,mas eu tenho saudades do Brasil...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:15 +0000", "from_user": "CarmelaStarr", "from_user_id": 98567329, "from_user_id_str": "98567329", "from_user_name": "Carmela Starr", "geo": null, "id": 148827499390967800, "id_str": "148827499390967808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1350617383/IMG_8010-1_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1350617383/IMG_8010-1_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @Bossip: Watch Rihanna Run Off Stage Throwing Up During \\u201CWhat\\u2019s My Name\\u201D Performance In Portugal [Video] http://t.co/Njl97y1q", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:10 +0000", "from_user": "MySecretLions", "from_user_id": 127151267, "from_user_id_str": "127151267", "from_user_name": "Chalka Luther King", "geo": null, "id": 148827480013283330, "id_str": "148827480013283329", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1680440974/ByS26g76_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680440974/ByS26g76_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:04 +0000", "from_user": "pampanight", "from_user_id": 79271571, "from_user_id_str": "79271571", "from_user_name": "Pampa Night", "geo": null, "id": 148827454335762430, "id_str": "148827454335762432", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1294979671/perfil-p1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1294979671/perfil-p1_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Rihanna saiu correndo do palco durante o show para vomitar. Parece que a cantora precisa de repouso, n\\u00E9? http://t.co/IOk0bLFk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:02 +0000", "from_user": "HipHopWeb", "from_user_id": 96447588, "from_user_id_str": "96447588", "from_user_name": "HipHopWeb", "geo": null, "id": 148827442918850560, "id_str": "148827442918850560", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1170752522/hiphopweb_logotipo-md_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1170752522/hiphopweb_logotipo-md_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Rihanna relata epis\\u00F3dio racista em Portugal http://t.co/b3aq4lRB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:10:00 +0000", "from_user": "yayas_mama", "from_user_id": 143172678, "from_user_id_str": "143172678", "from_user_name": "Sabrina Barrera", "geo": null, "id": 148827434572193800, "id_str": "148827434572193795", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1333240613/R2J30P8J_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1333240613/R2J30P8J_normal", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Rihanna gets sick during Portugal show http://t.co/pzKzlBbx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:54 +0000", "from_user": "kuskuslisaax", "from_user_id": 302161742, "from_user_id_str": "302161742", "from_user_name": "kuskuslisaax", "geo": null, "id": 148827409414758400, "id_str": "148827409414758400", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1694187289/Rijswijk-20111202-00748_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694187289/Rijswijk-20111202-00748_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "Ik miss portugal http://t.co/uhr7BmSc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:48 +0000", "from_user": "EfiEfthimiou", "from_user_id": 281093434, "from_user_id_str": "281093434", "from_user_name": "Efthimia Efthimiou", "geo": null, "id": 148827384970358800, "id_str": "148827384970358784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1309194348/me_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1309194348/me_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "#Greece #Portugal #ireland will be excluded from bilateral loans to IMF (Greek FinMinistry)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:46 +0000", "from_user": "LenaLafayette", "from_user_id": 291710421, "from_user_id_str": "291710421", "from_user_name": "Lena Lafayette", "geo": null, "id": 148827375986151420, "id_str": "148827375986151424", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1661283339/principito-navidad_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661283339/principito-navidad_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "http://t.co/vGAyiIOq Foreign Office preparan ayudas para brit\\u00E1nicos que vivan en ESpa\\u00F1a y en Portugal,en el caso en el que hay CORRALITO.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:44 +0000", "from_user": "OnlinRacingTeam", "from_user_id": 336043110, "from_user_id_str": "336043110", "from_user_name": "Online Racing Team", "geo": null, "id": 148827366876119040, "id_str": "148827366876119041", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1546600458/296165_268525186505674_163052063719654_947056_1527167315_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546600458/296165_268525186505674_163052063719654_947056_1527167315_n_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "http://t.co/wtDD35nV http://t.co/ZHBDHR4F", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:25 +0000", "from_user": "Firmatorget", "from_user_id": 117358428, "from_user_id_str": "117358428", "from_user_name": "Merkato Media AS", "geo": null, "id": 148827290019708930, "id_str": "148827290019708928", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627048569/FirmatorgetNewlogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627048569/FirmatorgetNewlogo_normal.jpg", "source": "<a href="http://friendfeed.com" rel="nofollow">FriendFeed</a>", "text": "Utbetaler milliardl\\u00E5n til Portugal http://t.co/sr5X4zIE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:23 +0000", "from_user": "Firmatorget", "from_user_id": 117358428, "from_user_id_str": "117358428", "from_user_name": "Merkato Media AS", "geo": null, "id": 148827282436390900, "id_str": "148827282436390912", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1627048569/FirmatorgetNewlogo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627048569/FirmatorgetNewlogo_normal.jpg", "source": "<a href="http://friendfeed.com" rel="nofollow">FriendFeed</a>", "text": "IMF utbetaler milliardl\\u00E5n til Portugal http://t.co/I4fFqJNb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:17 +0000", "from_user": "stwbrr_ck", "from_user_id": 201256120, "from_user_id_str": "201256120", "from_user_name": "chantily~ ", "geo": null, "id": 148827256867926000, "id_str": "148827256867926017", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1647425298/tumblr_lth1iwRl4E1r35siso1_500_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647425298/tumblr_lth1iwRl4E1r35siso1_500_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "quero ir pra portugal...la tem minha namorada e ta frio..hunf..;-;", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:17 +0000", "from_user": "Tauh_Azambuja", "from_user_id": 319133746, "from_user_id_str": "319133746", "from_user_name": "Tauh Azambuja", "geo": null, "id": 148827254431027200, "id_str": "148827254431027200", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1654738643/IMG285-01_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654738643/IMG285-01_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "eu so a melgor da melhor du mundo em falar portugues de portugal '-'", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 18:09:15 +0000", "from_user": "WallFigueiredo", "from_user_id": 86310384, "from_user_id_str": "86310384", "from_user_name": "Dr Wall", "geo": null, "id": 148827246122106880, "id_str": "148827246122106880", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1300904471/Foto_Valmique2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1300904471/Foto_Valmique2_normal.jpg", "source": "<a href="http://www.infomoney.com.br" rel="nofollow">Portal_InfoMoney</a>", "text": "RT @portalinfomoney: #infomoney FMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal... http://t.co/SHzFcLB8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:14 +0000", "from_user": "supernebulosa", "from_user_id": 360129260, "from_user_id_str": "360129260", "from_user_name": "Supernebulosa", "geo": null, "id": 148827245094510600, "id_str": "148827245094510592", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1510275978/nebulosa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1510275978/nebulosa_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Supernebulosa: Escucha un cover de Portugal. The Man a Gnarls Barkley http://t.co/FYvxaTqB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:10 +0000", "from_user": "Guusty_", "from_user_id": 235300046, "from_user_id_str": "235300046", "from_user_name": "Gustavo Medeiros", "geo": null, "id": 148827226769588220, "id_str": "148827226769588225", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687679632/SAM_1645_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687679632/SAM_1645_normal.JPG", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Dad was back yesterday from Portugal brought loads of presents. :')", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:10 +0000", "from_user": "A6invest", "from_user_id": 90656536, "from_user_id_str": "90656536", "from_user_name": "A6 Invest", "geo": null, "id": 148827225670684670, "id_str": "148827225670684673", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1220828530/logotwtter_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1220828530/logotwtter_normal.JPG", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "http://t.co/QA00FWSf http://t.co/IpBhobzw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:09 +0000", "from_user": "vihumo76", "from_user_id": 96612856, "from_user_id_str": "96612856", "from_user_name": "VM", "geo": null, "id": 148827221828706300, "id_str": "148827221828706304", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1341937982/logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1341937982/logo_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@Embajad_Aztecas como le ha ido al mexicano del braga de portugal?", "to_user": "Embajad_Aztecas", "to_user_id": 298922458, "to_user_id_str": "298922458", "to_user_name": "Embajadores aztecas", "in_reply_to_status_id": 148826163006021630, "in_reply_to_status_id_str": "148826163006021632"}, +{"created_at": "Mon, 19 Dec 2011 18:09:04 +0000", "from_user": "SportingbetMark", "from_user_id": 204852668, "from_user_id_str": "204852668", "from_user_name": "Mark O'Haire", "geo": null, "id": 148827200899137540, "id_str": "148827200899137536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1347173706/66b1cb77-40a9-4b85-852e-ec9302381e7b_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1347173706/66b1cb77-40a9-4b85-852e-ec9302381e7b_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Olhanese may be winless in 4 & struggling for goals in Portugal but I reckon they've just the style to frustrate Braga, tonight.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:09:02 +0000", "from_user": "HomeInsurance_", "from_user_id": 341208226, "from_user_id_str": "341208226", "from_user_name": "Home Insurance", "geo": null, "id": 148827191747153920, "id_str": "148827191747153920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.theleader.info/homeinsurance" rel="nofollow">Home Insurance</a>", "text": "HOME INSURANCE FOR YOUR PROPERTY IN SPAIN, GIBRALTAR, GREECE AND PORTUGAL - http://t.co/g3StN3Ad", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:08:57 +0000", "from_user": "StephaniexNJ", "from_user_id": 133838881, "from_user_id_str": "133838881", "from_user_name": " \\u30C4 St\\u00E9phaniexNJ ", "geo": null, "id": 148827170473652220, "id_str": "148827170473652224", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697044696/377979_336581886368782_223852614308377_1331486_185141264_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697044696/377979_336581886368782_223852614308377_1331486_185141264_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@NeverSaayNeverr Oui une semaine au Portugal (:<3", "to_user": "NeverSaayNeverr", "to_user_id": 193298289, "to_user_id_str": "193298289", "to_user_name": "Lisa \\u273F ", "in_reply_to_status_id": 148826586270007300, "in_reply_to_status_id_str": "148826586270007297"}, +{"created_at": "Mon, 19 Dec 2011 18:08:55 +0000", "from_user": "prince1287", "from_user_id": 54001470, "from_user_id_str": "54001470", "from_user_name": "john g", "geo": null, "id": 148827164635168770, "id_str": "148827164635168768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1559433812/AaJBWUkCQAAkFix_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1559433812/AaJBWUkCQAAkFix_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:08:52 +0000", "from_user": "dianaaribeiro14", "from_user_id": 343565743, "from_user_id_str": "343565743", "from_user_name": "Dianaaa \\u2665", "geo": null, "id": 148827151330844670, "id_str": "148827151330844674", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1695267482/h__normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695267482/h__normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rihanna: PORTUGAL tonight was LEGENDARY!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:08:34 +0000", "from_user": "marinices", "from_user_id": 116535915, "from_user_id_str": "116535915", "from_user_name": "Marina", "geo": null, "id": 148827075011293200, "id_str": "148827075011293185", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1528280735/Foto119_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1528280735/Foto119_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\"Custar uma pipa de massa\". Portugal e suas express\\u00F5es que eu nem sei por onde come\\u00E7o tentar entender.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:08:20 +0000", "from_user": "zeekpaulo", "from_user_id": 398477747, "from_user_id_str": "398477747", "from_user_name": "zeekpaulo", "geo": null, "id": 148827018597892100, "id_str": "148827018597892097", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1626118897/tw_13147574_1320616661_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1626118897/tw_13147574_1320616661_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Perfil p\\u00FAblico de Paulo - beruby Portugal http://t.co/pY8vQ00D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:08:11 +0000", "from_user": "mandrileo", "from_user_id": 58940174, "from_user_id_str": "58940174", "from_user_name": "Leonardo Mart\\u00EDnez", "geo": null, "id": 148826979037233150, "id_str": "148826979037233153", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1426968457/IMG_1846_square_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1426968457/IMG_1846_square_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:08:04 +0000", "from_user": "DarkKhan1", "from_user_id": 441058757, "from_user_id_str": "441058757", "from_user_name": "Dark Khan", "geo": null, "id": 148826948603351040, "id_str": "148826948603351040", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Cool site to find Hotels: Hoteis na net Portugal: http://t.co/qP92iwUc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:07:45 +0000", "from_user": "markjmacdonald", "from_user_id": 52146979, "from_user_id_str": "52146979", "from_user_name": "Mark MacDonald", "geo": null, "id": 148826870715129860, "id_str": "148826870715129857", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1664346904/john_wayne_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664346904/john_wayne_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@craigpringle91 look at Greece, Portugal, Italy. if the economy was better, and we had 30 years worth of oil thats now gone i would agree.", "to_user": "craigpringle91", "to_user_id": 139535363, "to_user_id_str": "139535363", "to_user_name": "craigpringle", "in_reply_to_status_id": 148826136565125120, "in_reply_to_status_id_str": "148826136565125120"}, +{"created_at": "Mon, 19 Dec 2011 18:07:38 +0000", "from_user": "Brunabs7", "from_user_id": 58945388, "from_user_id_str": "58945388", "from_user_name": "Fuck Bruna ", "geo": null, "id": 148826841245949950, "id_str": "148826841245949952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692884037/028_-_C_pia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692884037/028_-_C_pia_normal.jpg", "source": "<a href="http://www.twocation.com/" rel="nofollow">Twocation</a>", "text": "My followers live in Brazil (71.3%), the U.S. (11.8%), Portugal (4.2%) & more. Create your map at http://t.co/o8765Iry", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:07:35 +0000", "from_user": "_unanochemas", "from_user_id": 209243443, "from_user_id_str": "209243443", "from_user_name": "Monroy ", "geo": null, "id": 148826826934976500, "id_str": "148826826934976512", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1619791533/IMG00198-20101231-2051_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619791533/IMG00198-20101231-2051_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @lasillarota: #FMI participa en los planes de #rescate de Grecia, Irlanda y Portugal http://t.co/H09i8bOn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:07:27 +0000", "from_user": "Deavy", "from_user_id": 14784842, "from_user_id_str": "14784842", "from_user_name": "Deavy", "geo": null, "id": 148826796060712960, "id_str": "148826796060712961", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1605617657/inflames_xl_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1605617657/inflames_xl_normal.jpg", "source": "<a href="http://twitterrific.com" rel="nofollow">Twitterrific for Mac</a>", "text": "Un-fucking-believable RT @Hashim0307 When North Korea lost 7-0 to Portugal in WC2010, media in North Korea reported the match ended 0-0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:07:23 +0000", "from_user": "iPhoneFileInfo", "from_user_id": 393297576, "from_user_id_str": "393297576", "from_user_name": "iPhone File Girls", "geo": null, "id": 148826778910208000, "id_str": "148826778910208000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1594264529/sexy-girls-with-iphone_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1594264529/sexy-girls-with-iphone_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "iPhone Upload : Need TMN Portugal factory unlock iPHone 4 http://t.co/iQUJAlKr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:07:02 +0000", "from_user": "MOTopStories", "from_user_id": 64986883, "from_user_id_str": "64986883", "from_user_name": "Top news headlines", "geo": null, "id": 148826691450576900, "id_str": "148826691450576896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/358630859/600px-Globe.svg_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/358630859/600px-Globe.svg_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Latest news: EU watchdog raids Brussels Airlines and TAP Portugal (Reuters UK) http://t.co/hPdYszAn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:59 +0000", "from_user": "yogal", "from_user_id": 26895362, "from_user_id_str": "26895362", "from_user_name": "Ana Frias Gomes", "geo": null, "id": 148826678083330050, "id_str": "148826678083330048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1675222204/Ana_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675222204/Ana_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Good to see examples of efficiency coming from Portugal: http://t.co/IvhCVMz6 via @virgin", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:34 +0000", "from_user": "GuiTintel", "from_user_id": 47846061, "from_user_id_str": "47846061", "from_user_name": "Guilherme Tintel", "geo": null, "id": 148826573682917380, "id_str": "148826573682917382", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1181486234/Z5oc04w_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1181486234/Z5oc04w_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#DescansaRihanna: durante show em Portugal, cantora deixa palco para vomitar: N\\u00E3o tem jeito, Rihanna t\\u00E1 l... http://t.co/WIsnWCgS #ITPOP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:32 +0000", "from_user": "PORTALITPOP", "from_user_id": 112816891, "from_user_id_str": "112816891", "from_user_name": "PORTAL IT POP!", "geo": null, "id": 148826565113954300, "id_str": "148826565113954304", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687254265/portalitpopdotcom_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687254265/portalitpopdotcom_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#DescansaRihanna: durante show em Portugal, cantora deixa palco para vomitar: N\\u00E3o tem jeito, Rihanna t\\u00E1 l... http://t.co/GzsfV5II #ITPOP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:24 +0000", "from_user": "ChampagnePapi", "from_user_id": 205787060, "from_user_id_str": "205787060", "from_user_name": "Mr S", "geo": null, "id": 148826529147789300, "id_str": "148826529147789313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692960572/IMG-20111212-WA000_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692960572/IMG-20111212-WA000_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "http://t.co/ArZfdsVD great blog by @richardbranson about drugs and how its been dealt with socially in my homeland #portugal. worth a read", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:22 +0000", "from_user": "vitriolica", "from_user_id": 77826352, "from_user_id_str": "77826352", "from_user_name": "Vitri\\u00F3lica CORRosiva", "geo": null, "id": 148826521526730750, "id_str": "148826521526730752", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1380712813/twitt-coco3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1380712813/twitt-coco3_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @pfigas: RT @JoaoPedroL: esta coisa do Passos mandar o pessoal emigrar quase me d\\u00E1 vontade de voltar para Portugal s\\u00F3 p contrariar.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:20 +0000", "from_user": "clecil", "from_user_id": 272687184, "from_user_id_str": "272687184", "from_user_name": "Clecil Martins", "geo": null, "id": 148826512982937600, "id_str": "148826512982937601", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://messaging.nokia.com/site/main.do" rel="nofollow"> Ovi by Nokia </a>", "text": "Impressionante como at\\u00E9 hj o fortalezense n\\u00E3o sabe usar um girador (Pra\\u00E7a Portugal)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:15 +0000", "from_user": "ririFD", "from_user_id": 270778605, "from_user_id_str": "270778605", "from_user_name": "tompi paskah", "geo": null, "id": 148826492514734080, "id_str": "148826492514734080", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696104271/217737_1652362758988_1534607019_31309829_673_e1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696104271/217737_1652362758988_1534607019_31309829_673_e1_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @dj_smirnoff_ice: Rihanna Goes on Twitter Rant After Racial Abuse in Portugal (Blog) (@Rihanna) http://t.co/RtB6INFa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:07 +0000", "from_user": "Bill_Picasso", "from_user_id": 167509818, "from_user_id_str": "167509818", "from_user_name": "\\u00DFilly Ogbara", "geo": null, "id": 148826458633146370, "id_str": "148826458633146368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1690190048/180060_1889366759620_1405014694_32217379_5323626_a_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690190048/180060_1889366759620_1405014694_32217379_5323626_a_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Hashim0307: I remember when North Korea lost 7-0 to Portugal in WC2010, media in North Korea reported the match ended 0-0. Hilarious.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:04 +0000", "from_user": "RapidPortugal", "from_user_id": 255240646, "from_user_id_str": "255240646", "from_user_name": "Rui Cavaleiro ", "geo": null, "id": 148826445391736830, "id_str": "148826445391736833", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1499763677/Rui_1_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1499763677/Rui_1_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT@pac2013 PAC INTERV: A PAC p\\u00F3s 2013: Que Agricultura para Portugal no S\\u00E9c. XXI? Desafios e Oportunidades | Prof. F. Cordovil, GPP", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:06:02 +0000", "from_user": "StockportRed", "from_user_id": 150185780, "from_user_id_str": "150185780", "from_user_name": "BananaMan", "geo": null, "id": 148826435778396160, "id_str": "148826435778396160", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1530361747/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1530361747/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@James_Heneghan_ If you're counting all games, then yes. But Nani will have probably played more games in Portugal by the time he signs.", "to_user": "James_Heneghan_", "to_user_id": 54008043, "to_user_id_str": "54008043", "to_user_name": "James", "in_reply_to_status_id": 148825604165337100, "in_reply_to_status_id_str": "148825604165337090"}, +{"created_at": "Mon, 19 Dec 2011 18:05:54 +0000", "from_user": "RihannaSuperFly", "from_user_id": 372524638, "from_user_id_str": "372524638", "from_user_name": "LBCRihannaFenty", "geo": null, "id": 148826404421775360, "id_str": "148826404421775361", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1632793672/IP3DU4r2_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1632793672/IP3DU4r2_normal", "source": "<a href="http://twitter.com/">web</a>", "text": "@rihanna I do not want you to stay to think that everyone here in Portugal is racist! I'm not racist I have black people in my family!", "to_user": "rihanna", "to_user_id": 79293791, "to_user_id_str": "79293791", "to_user_name": "Rihanna"}, +{"created_at": "Mon, 19 Dec 2011 18:05:49 +0000", "from_user": "Mc_Amor", "from_user_id": 98333673, "from_user_id_str": "98333673", "from_user_name": "Hamba Ini Syarif", "geo": null, "id": 148826381797695500, "id_str": "148826381797695488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699829211/Mauro_German_Camoranesi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699829211/Mauro_German_Camoranesi_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Hashim0307: I remember when North Korea lost 7-0 to Portugal in WC2010, media in North Korea reported the match ended 0-0. Hilarious.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:05:45 +0000", "from_user": "joaosergio", "from_user_id": 15519284, "from_user_id_str": "15519284", "from_user_name": "Jo\\u00E3o S\\u00E9rgio", "geo": null, "id": 148826368375922700, "id_str": "148826368375922689", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1615565241/1128af95-ad03-4d9f-8551-68d702849576_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615565241/1128af95-ad03-4d9f-8551-68d702849576_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Enquanto isso em Portugal o governo diz a seus cidad\\u00E3os :quer oportunidades, VAZA DAQUI http:// j.mp/tWzegd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:05:40 +0000", "from_user": "jensanmx", "from_user_id": 123932503, "from_user_id_str": "123932503", "from_user_name": "Jennifer S\\u00E1nchez \\u029A\\u03CA\\u025E", "geo": null, "id": 148826343780519940, "id_str": "148826343780519936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1651617111/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651617111/image_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Escucha un cover de Portugal. The Man a Gnarls Barkley http://t.co/9vYczqL5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:05:27 +0000", "from_user": "GretelEugenio", "from_user_id": 340815794, "from_user_id_str": "340815794", "from_user_name": "Gretel Eugenio", "geo": null, "id": 148826290978430980, "id_str": "148826290978430976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1673514705/gretelcomic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1673514705/gretelcomic_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:05:20 +0000", "from_user": "Seville_Writer", "from_user_id": 14984177, "from_user_id_str": "14984177", "from_user_name": "Fiona Flores Watson", "geo": null, "id": 148826262419415040, "id_str": "148826262419415040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1343118605/feria_fiona_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1343118605/feria_fiona_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Stories in papers yesterday re mass evacuation plans for British expats in Spain and Portugal, in event of euro collapse. April Fool in Dec?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:05:09 +0000", "from_user": "manudiasoficial", "from_user_id": 128695882, "from_user_id_str": "128695882", "from_user_name": "Manu Dias!", "geo": null, "id": 148826217062203400, "id_str": "148826217062203392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1647014269/450570268_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647014269/450570268_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @itsmeleighton: Turkey Japan Poland Indonesia Germany Brazil Spain Philippines France England US Venezuela China Italy Portugal Russia Australia so much \\uE022\\uE022", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:05:03 +0000", "from_user": "economia_feed_1", "from_user_id": 284997069, "from_user_id_str": "284997069", "from_user_name": "economia_feed_1", "geo": null, "id": 148826188759052300, "id_str": "148826188759052288", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.google.es" rel="nofollow">Economia_feed</a>", "text": "El #FMI aprueba un tramo de cr\\u00E9dito de 2.900 millones a #Portugal http://t.co/e4V0hEgX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:04:58 +0000", "from_user": "Vadaorf", "from_user_id": 440214065, "from_user_id_str": "440214065", "from_user_name": "Vada Schrunk", "geo": null, "id": 148826171415609340, "id_str": "148826171415609345", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700579790/large_DSC_0732_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700579790/large_DSC_0732_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Welfare State Reform in Southern Europe: Fighting Poverty and Social Exclusion in Italy, Spain, Portugal and Gre... http://t.co/eQPP5rXF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:04:34 +0000", "from_user": "AlvaroAlosAmpud", "from_user_id": 313858991, "from_user_id_str": "313858991", "from_user_name": "Alvaro Alos Ampudia", "geo": null, "id": 148826069561131000, "id_str": "148826069561131008", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1393264382/A.Alos_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1393264382/A.Alos_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Seguimos en la Eurocopa del pro, Espa\\u00F1a-Portugal en cuartos , no est mal jaja...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:04:31 +0000", "from_user": "Yara2222", "from_user_id": 59871066, "from_user_id_str": "59871066", "from_user_name": "Yara", "geo": +{"coordinates": [38.7112,-9.1525], "type": "Point"}, "id": 148826056575549440, "id_str": "148826056575549440", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1667800878/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667800878/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@thiprincipe: Kkkkk nao sei, mas falta pouco! RT @ellenchaffin: @thiprincipe onde a gente clica pra 2012 chegar logo ?\\u201De em portugal?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:04:28 +0000", "from_user": "Lulu_Mak", "from_user_id": 31486796, "from_user_id_str": "31486796", "from_user_name": "Lulu M.a.k", "geo": null, "id": 148826045531951100, "id_str": "148826045531951104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701802027/Queens_Park_Rangers_v_Manchester_United_Premier_EvFwGJmMET1l_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701802027/Queens_Park_Rangers_v_Manchester_United_Premier_EvFwGJmMET1l_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Hashim0307: I remember when North Korea lost 7-0 to Portugal in WC2010, media in North Korea reported the match ended 0-0. Hilarious.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:04:29 +0000", "from_user": "TracyTotes", "from_user_id": 251359414, "from_user_id_str": "251359414", "from_user_name": "Tracy", "geo": null, "id": 148826044579848200, "id_str": "148826044579848192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1583814026/meeeee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583814026/meeeee_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Good evening from a very clear Portugal xx http://t.co/DJLVX4xS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:04:23 +0000", "from_user": "swaradasantosh", "from_user_id": 430023449, "from_user_id_str": "430023449", "from_user_name": "Swarada Bandodkar", "geo": null, "id": 148826023285370880, "id_str": "148826023285370880", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Today in 1961-Indian armed forces take an action that stops the Portugal rule in India. 22 Indians and 30 Portuguese were killed.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:04:19 +0000", "from_user": "Se_ginh0", "from_user_id": 279956187, "from_user_id_str": "279956187", "from_user_name": "S\\u00E9rgio Costa", "geo": null, "id": 148826005656711170, "id_str": "148826005656711168", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "The Wanted e Rihanna juntos! Sabe tudo sobre o dueto \"Jealousy\" | RIHANNA PORTUGAL http://t.co/JWHuSL0W", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:04:15 +0000", "from_user": "WeFoundLoveRiRi", "from_user_id": 177738439, "from_user_id_str": "177738439", "from_user_name": "Rayan Fenty Adkins", "geo": null, "id": 148825988581695500, "id_str": "148825988581695489", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677769970/rrrrrrrrrrrrihannnnnna_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677769970/rrrrrrrrrrrrihannnnnna_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@Alicia_Fenty toca funk ai em Portugal? O.o", "to_user": "Alicia_Fenty", "to_user_id": 272138231, "to_user_id_str": "272138231", "to_user_name": "It's Cristmas, \\u263A", "in_reply_to_status_id": 148825668065562620, "in_reply_to_status_id_str": "148825668065562624"}, +{"created_at": "Mon, 19 Dec 2011 18:04:10 +0000", "from_user": "FutpressCom", "from_user_id": 218511828, "from_user_id_str": "218511828", "from_user_name": "Futpress Comunica\\u00E7\\u00E3o", "geo": null, "id": 148825966628700160, "id_str": "148825966628700160", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1173048272/futpress.jpg_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1173048272/futpress.jpg_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Ap\\u00F3s empate, Marcelo Boeck quer foco do Sporting na Ta\\u00E7a de Portugal\\nhttp://t.co/FIxHLLlI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:04:09 +0000", "from_user": "Kate_Cocozza", "from_user_id": 408033612, "from_user_id_str": "408033612", "from_user_name": "Kate Ann", "geo": null, "id": 148825962572808200, "id_str": "148825962572808192", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698604654/IMG-20110902-00044_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698604654/IMG-20110902-00044_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@DanielleMalik_ yes I did, I said its near portugal, which it is you dinnnny!", "to_user": "DanielleMalik_", "to_user_id": 226209651, "to_user_id_str": "226209651", "to_user_name": "Daniellereps.", "in_reply_to_status_id": 148825531280932860, "in_reply_to_status_id_str": "148825531280932864"}, +{"created_at": "Mon, 19 Dec 2011 18:04:02 +0000", "from_user": "Hashim0307", "from_user_id": 72523489, "from_user_id_str": "72523489", "from_user_name": "Hashim", "geo": null, "id": 148825935947382800, "id_str": "148825935947382784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1676245413/tumblr_lvqln9sOk21qifxuro4_250_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676245413/tumblr_lvqln9sOk21qifxuro4_250_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "I remember when North Korea lost 7-0 to Portugal in WC2010, media in North Korea reported the match ended 0-0. Hilarious.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:03:54 +0000", "from_user": "Auesolucoes", "from_user_id": 65429388, "from_user_id_str": "65429388", "from_user_name": "AuE Solu\\u00E7\\u00F5es", "geo": null, "id": 148825901629575170, "id_str": "148825901629575168", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/362750278/Logo_AuE_Tw_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/362750278/Logo_AuE_Tw_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Como cuidar das doen\\u00E7as em \\u00E1rvores ornamentais. http://t.co/GlmkkqIs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:03:50 +0000", "from_user": "Giovaniinha_", "from_user_id": 195194722, "from_user_id_str": "195194722", "from_user_name": "Giovana ", "geo": null, "id": 148825884755902460, "id_str": "148825884755902464", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1661657324/100_2865_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661657324/100_2865_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "amanha vai vir o Juliano que t\\u00E1 jogando em um time l\\u00E1 de Portugal ver os Projeto do meu pai >< que ORGULHO tomara que ela ajude n\\u00E9 kk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:03:46 +0000", "from_user": "AsLuanaticas_PT", "from_user_id": 246811989, "from_user_id_str": "246811989", "from_user_name": "As Luanaticas PT", "geo": null, "id": 148825865709551600, "id_str": "148825865709551616", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1589478022/366105796_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1589478022/366105796_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@fazendaLS n\\u00E3o amor aqui em Portugal , s\\u00F3 passa amanha :c", "to_user": "fazendaLS", "to_user_id": 234832342, "to_user_id_str": "234832342", "to_user_name": "Fazenda (OFICIAL)", "in_reply_to_status_id": 148825571923726340, "in_reply_to_status_id_str": "148825571923726338"}, +{"created_at": "Mon, 19 Dec 2011 18:03:37 +0000", "from_user": "Spokie22", "from_user_id": 70964172, "from_user_id_str": "70964172", "from_user_name": "Alwyn van den Heever", "geo": null, "id": 148825827671412740, "id_str": "148825827671412736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1654843629/__E2_8C_A3_CC_8A_E2_94_88_CC_A5-_CC_B6_CC_AF_CD_A1_C2_BB_CC_B6_CC_A5_20_E2_98_80_CC_88_CC_A4_CC_87_CC_A3_CB_90_CC_96LoLa_20_E2_8C_A3_CC_8A__E2_8C_A3_CC_8A_E2_94_88_CC_A5-_CC_B6_CC_AF_CD_A1_C2_BB_CC_B6_CC_A5_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654843629/__E2_8C_A3_CC_8A_E2_94_88_CC_A5-_CC_B6_CC_AF_CD_A1_C2_BB_CC_B6_CC_A5_20_E2_98_80_CC_88_CC_A4_CC_87_CC_A3_CB_90_CC_96LoLa_20_E2_8C_A3_CC_8A__E2_8C_A3_CC_8A_E2_94_88_CC_A5-_CC_B6_CC_AF_CD_A1_C2_BB_CC_B6_CC_A5_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:03:16 +0000", "from_user": "Yaann_lp", "from_user_id": 270889619, "from_user_id_str": "270889619", "from_user_name": "YaNn \\u2665", "geo": null, "id": 148825741914669060, "id_str": "148825741914669057", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694597806/patin_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694597806/patin_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Llegaron las cosas de Portugal!!! Vamos carajooooo!!! Ahora aduana se piola y liberamelasss guijiiiiiii. Dale q falta poquito pa navidad :)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:03:12 +0000", "from_user": "DreMartu", "from_user_id": 55874573, "from_user_id_str": "55874573", "from_user_name": "Andr\\u00E9 M. \\u2590\\u2590\\u2590 ", "geo": null, "id": 148825722755096580, "id_str": "148825722755096577", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1569684897/tumblr_l27odpP06I1qzmet2o1_400_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1569684897/tumblr_l27odpP06I1qzmet2o1_400_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Brand New Riot: Rihanna: Cantora foi v\\u00EDtima de racismo durante sua passagem por Portugal http://t.co/If6PlhaJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:03:07 +0000", "from_user": "tetorrr", "from_user_id": 235238565, "from_user_id_str": "235238565", "from_user_name": "Alberto Hern\\u00E1ndez", "geo": null, "id": 148825705214525440, "id_str": "148825705214525441", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1263938337/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263938337/image_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@pal0man @Javimesas Jajajaja alg\\u00FAn problema?? Me las compro mi mam\\u00E1 hace mil a\\u00F1os en Portugal. A partir del 15 de febrero te meto corcho!", "to_user": "pal0man", "to_user_id": 68980392, "to_user_id_str": "68980392", "to_user_name": "Andr\\u00E9s Gregorio", "in_reply_to_status_id": 148823108416053250, "in_reply_to_status_id_str": "148823108416053248"}, +{"created_at": "Mon, 19 Dec 2011 18:03:04 +0000", "from_user": "portalinfomoney", "from_user_id": 59773459, "from_user_id_str": "59773459", "from_user_name": "InfoMoney", "geo": null, "id": 148825692619026430, "id_str": "148825692619026432", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/329994002/im_square_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/329994002/im_square_normal.jpg", "source": "<a href="http://www.infomoney.com.br" rel="nofollow">Portal_InfoMoney</a>", "text": "#infomoney FMI libera 2,9 bilh\\u00F5es de euros para plano de resgate a Portugal... http://t.co/SHzFcLB8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:02:52 +0000", "from_user": "stephendeacon", "from_user_id": 92111958, "from_user_id_str": "92111958", "from_user_name": "Stephen Deacon", "geo": null, "id": 148825641268158460, "id_str": "148825641268158464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1082966037/peacock_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1082966037/peacock_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "@zevonesque Steve mentioned Munich, but I dont think I can afford it. Def will be in Portugal you managed to find any flights to Porto?", "to_user": "zevonesque", "to_user_id": 21287755, "to_user_id_str": "21287755", "to_user_name": "Andy Walker", "in_reply_to_status_id": 148736857537118200, "in_reply_to_status_id_str": "148736857537118208"}, +{"created_at": "Mon, 19 Dec 2011 18:02:43 +0000", "from_user": "dj_smirnoff_ice", "from_user_id": 19022782, "from_user_id_str": "19022782", "from_user_name": "DJ Smirnoff Ice ", "geo": null, "id": 148825605092278270, "id_str": "148825605092278274", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1545112213/l_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545112213/l_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Rihanna Goes on Twitter Rant After Racial Abuse in Portugal (Blog) (@Rihanna) http://t.co/RtB6INFa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:02:31 +0000", "from_user": "itookapicture", "from_user_id": 84688504, "from_user_id_str": "84688504", "from_user_name": "I Took a Picture", "geo": null, "id": 148825553154224130, "id_str": "148825553154224128", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/486697718/reddit-twitter-transp_bigger_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/486697718/reddit-twitter-transp_bigger_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Photo: ITAP of Porto, Villa Nova de Gaia and Dom Luis Bridge, Portugal http://t.co/Qhb2Jp4d", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:02:30 +0000", "from_user": "cafehiperboreal", "from_user_id": 155325804, "from_user_id_str": "155325804", "from_user_name": "Caf\\u00E9 Hiperboreal", "geo": null, "id": 148825547118624770, "id_str": "148825547118624769", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1202602778/avatar_facebook_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1202602778/avatar_facebook_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @LifeBoxset: Escucha un cover de Portugal. The Man a Gnarls Barkley http://t.co/qYMNEKP9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:02:29 +0000", "from_user": "glaucef", "from_user_id": 16153367, "from_user_id_str": "16153367", "from_user_name": "GlauceFleury", "geo": null, "id": 148825543033364480, "id_str": "148825543033364480", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/612453840/062a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/612453840/062a_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "E tem quem ache q ser famoso ameniza preconceito. Rihanna revela q sofreu racismo em hotel de Portugal. http://t.co/ySe3wsEh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:02:28 +0000", "from_user": "Ops_Dani", "from_user_id": 430280165, "from_user_id_str": "430280165", "from_user_name": "Danii Coltri ", "geo": null, "id": 148825538620964860, "id_str": "148825538620964866", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679510328/DANIIII_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679510328/DANIIII_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Aqui em casa esta os lundos do @cavirardi ,o #Jo\\u00E3o ,o #Junior, o#Vinicius e o #portugal esta acabol de chegar ;)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:02:19 +0000", "from_user": "AlfaJornal", "from_user_id": 110153375, "from_user_id_str": "110153375", "from_user_name": "Alfa Jornal", "geo": null, "id": 148825500876414980, "id_str": "148825500876414976", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/667265994/ScreenShot011_normal.bmp", "profile_image_url_https": "https://si0.twimg.com/profile_images/667265994/ScreenShot011_normal.bmp", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "M\\u00E9dico Gentil Martins faz queixa por pedit\\u00F3rio fraudulento: O cirurgi\\u00E3o pedi\\u00E1trico Ant\\u00F3nio Gentil Martins disse ... http://t.co/A81z8R8N", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:02:16 +0000", "from_user": "AlfaJornal", "from_user_id": 110153375, "from_user_id_str": "110153375", "from_user_name": "Alfa Jornal", "geo": null, "id": 148825487941181440, "id_str": "148825487941181440", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/667265994/ScreenShot011_normal.bmp", "profile_image_url_https": "https://si0.twimg.com/profile_images/667265994/ScreenShot011_normal.bmp", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "M\\u00E9dico Gentil Martins faz queixa por pedit\\u00F3rio fraudulento: O cirurgi\\u00E3o pedi\\u00E1trico Ant\\u00F3nio Gentil Martins disse ... http://t.co/GzGLFLlD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:02:07 +0000", "from_user": "FranciscoJav363", "from_user_id": 323836267, "from_user_id_str": "323836267", "from_user_name": "Francisco Javier Mar", "geo": null, "id": 148825453124263940, "id_str": "148825453124263937", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691139196/IMG_1007_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691139196/IMG_1007_normal.JPG", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "\"@BRKnews_es: FMI aprueba 2.900 millones de euros para Portugal http://t.co/3OBLK0tn\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:58 +0000", "from_user": "BenBrackenridge", "from_user_id": 351727421, "from_user_id_str": "351727421", "from_user_name": "Ben Brackenridge", "geo": null, "id": 148825414750572540, "id_str": "148825414750572544", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677681068/299580_10150525224243136_671073135_11580307_91849787_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677681068/299580_10150525224243136_671073135_11580307_91849787_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Portugal? Yes please.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:42 +0000", "from_user": "BRKnews_es", "from_user_id": 59266397, "from_user_id_str": "59266397", "from_user_name": "Breaking News", "geo": null, "id": 148825345393557500, "id_str": "148825345393557504", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1283909527/avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1283909527/avatar_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "FMI aprueba 2.900 millones de euros para Portugal http://t.co/EDokLZjY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:42 +0000", "from_user": "AnotherLayton", "from_user_id": 251686529, "from_user_id_str": "251686529", "from_user_name": "\\u30B5\\u30E9 -S\\u03B1r\\u03B1- zombi~\\u25CF\\u25CF\\u25CF\\u25CF", "geo": null, "id": 148825345326460930, "id_str": "148825345326460928", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702622232/Endo__AnotherLayton__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702622232/Endo__AnotherLayton__normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Rabiosa se parece a 'raposa', que en gallego y en portugu\\u00E9s significa 'zorra'. Shakira, en Galicia y en Portugal ya saben lo que eres.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:38 +0000", "from_user": "AnikaaVeenstra", "from_user_id": 311506754, "from_user_id_str": "311506754", "from_user_name": "Anika Veenstra", "geo": null, "id": 148825330986127360, "id_str": "148825330986127360", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698923075/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698923075/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Net even met papa mama en Marieke over zomervakantie gehad ,, weer 2 week Nederland en aan t eind 2 week Portugal! (:", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:35 +0000", "from_user": "janneferraz", "from_user_id": 96974645, "from_user_id_str": "96974645", "from_user_name": "Jane Ferraz", "geo": null, "id": 148825317010714620, "id_str": "148825317010714624", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1467964391/35880_15074_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1467964391/35880_15074_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "FMI libera 2,9 bilh\\u00F5es de euros em ajuda para Portugal.\\nhttp://t.co/OmZYabZ7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:27 +0000", "from_user": "ForSaleiAlgarve", "from_user_id": 386105591, "from_user_id_str": "386105591", "from_user_name": "For Sale in Algarve", "geo": null, "id": 148825284400005120, "id_str": "148825284400005121", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1575941712/For_Sale_In_Algarve_Twitter_Logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575941712/For_Sale_In_Algarve_Twitter_Logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Villa for sale in Lagoa Porches | 3 bedrooms ~ For-Sale-in-Algarve ~\\n#Algarve #Portugal - http://t.co/xI2Ifnym", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:26 +0000", "from_user": "Portugal_Glocal", "from_user_id": 18055408, "from_user_id_str": "18055408", "from_user_name": "Portugal Glocal", "geo": null, "id": 148825280604147700, "id_str": "148825280604147713", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1359510627/Logo_Portugal_Glocal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1359510627/Logo_Portugal_Glocal_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "M\\u00E9dico Gentil Martins faz queixa por pedit\\u00F3rio fraudulento http://t.co/LtPMOU0y #Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:24 +0000", "from_user": "Picon_Venezuela", "from_user_id": 353231830, "from_user_id_str": "353231830", "from_user_name": "FansdePiconVnezuela\\u221A", "geo": null, "id": 148825270177120260, "id_str": "148825270177120256", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1545872950/vanezuepicom_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1545872950/vanezuepicom_normal.JPG", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "RT @Piconn: Brazuca e Portuga!! Esse cara \\u00E9 o cara mais foda de Portugal http://t.co/HEzTzPA3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:23 +0000", "from_user": "katarthurs", "from_user_id": 360945849, "from_user_id_str": "360945849", "from_user_name": "Kat Arthurs", "geo": null, "id": 148825268650381300, "id_str": "148825268650381313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1511570200/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1511570200/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:09 +0000", "from_user": "dntwit", "from_user_id": 395388847, "from_user_id_str": "395388847", "from_user_name": "Di\\u00E1rio de Not\\u00EDcias", "geo": +{"coordinates": [38.7245,-9.1485], "type": "Point"}, "id": 148825208294342660, "id_str": "148825208294342657", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1618752141/dn_avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618752141/dn_avatar_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#Portugal M\\u00E9dico Gentil Martins faz queixa por pedit\\u00F3rio fraudulento http://t.co/YKgsX2X6 Ler http://t.co/lorvizrT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:07 +0000", "from_user": "MonicaHonestLee", "from_user_id": 311230431, "from_user_id_str": "311230431", "from_user_name": "Monica Musgrave", "geo": null, "id": 148825200325165060, "id_str": "148825200325165058", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1497498472/222707_2000110889342_1440652470_32300965_3242794_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1497498472/222707_2000110889342_1440652470_32300965_3242794_n_normal.jpg", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "Man, ohhhhh, man, yeah you're so American, so Americaaaan -- Portugal. The Man", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:01:04 +0000", "from_user": "arteh", "from_user_id": 9017782, "from_user_id_str": "9017782", "from_user_name": "ARTEH HOTELS", "geo": null, "id": 148825189805854720, "id_str": "148825189805854720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/184238427/Logo-ARTEH_07_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/184238427/Logo-ARTEH_07_normal.JPG", "source": "<a href="http://twitthat.com/" rel="nofollow">twitthat</a>", "text": "Reading: \"New Year\\u2019s Eve Package - 1 or Pay 2, Stay 3 Nights at Memmo Baleeira in Portugal, Algarve, Sagres\" ( http://t.co/pMtg3Jiw )", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:59 +0000", "from_user": "trpsimoes", "from_user_id": 134930858, "from_user_id_str": "134930858", "from_user_name": "Tiago Sim\\u00F5es", "geo": null, "id": 148825165571178500, "id_str": "148825165571178496", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/836370358/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/836370358/twitter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "finalmente, algo d bom. saudades j\\u00E1 s\\u00E3o muitas: \"Jazz volta \\u00E0 Pra\\u00E7a da Alegria com reabertura do Hot Clube de Portugal\" http://t.co/hc4okR3E", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:51 +0000", "from_user": "xpat", "from_user_id": 10371872, "from_user_id_str": "10371872", "from_user_name": "xpat", "geo": null, "id": 148825134550097920, "id_str": "148825134550097920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1196897964/xpat-twitter-logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1196897964/xpat-twitter-logo_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "#Health care costs per head in Portugal are lower than the EU average. http://t.co/eVNBuUlp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:50 +0000", "from_user": "PeLuCriciuma", "from_user_id": 177627338, "from_user_id_str": "177627338", "from_user_name": "FC Pe Lu Crici\\u00FAma \\u263B", "geo": null, "id": 148825127679827970, "id_str": "148825127679827968", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693276552/374221_217132038363656_192164040860456_491670_262859980_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693276552/374221_217132038363656_192164040860456_491670_262859980_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Eu simplesmente calei a boca dela dizendo: \"\\u00C9, s\\u00F3 uma 'modinha' que j\\u00E1 est\\u00E1 estourando no Jap\\u00E3o, Portugal, M\\u00E9xico, Fran\\u00E7a e entre outros\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:45 +0000", "from_user": "Dhr_kreikamp", "from_user_id": 259898032, "from_user_id_str": "259898032", "from_user_name": "kris kreikamp", "geo": null, "id": 148825110026002430, "id_str": "148825110026002432", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1648481492/IMAG0134_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648481492/IMAG0134_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Bij d\\u2019r LOUD tour in Portugal rende ze tijdens het zingen van What\\u2019s My Name? het podium af om backstage d\\u2019r avondeten eruit te kotsen.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:38 +0000", "from_user": "SocMeDotMe", "from_user_id": 371995419, "from_user_id_str": "371995419", "from_user_name": "Karl Lingenfelder", "geo": null, "id": 148825077859880960, "id_str": "148825077859880960", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1546120426/SocMe_Twitter_Icon_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546120426/SocMe_Twitter_Icon_2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Villa for sale in Lagoa Porches | 3 bedrooms ~ For-Sale-in-Algarve ~\\n#Algarve #Portugal - http://t.co/hsAmrjvT", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:32 +0000", "from_user": "viajarclix", "from_user_id": 112185190, "from_user_id_str": "112185190", "from_user_name": "Viajar * Clix", "geo": null, "id": 148825055256780800, "id_str": "148825055256780800", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/804770382/elevador_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/804770382/elevador_normal.jpg", "source": "<a href="http://viajar.clix.pt" rel="nofollow">Viajar * Clix</a>", "text": "http://t.co/Wam1LIoA #Porto: O Mercado est\\u00E1 de regresso", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:32 +0000", "from_user": "nanecau", "from_user_id": 84962661, "from_user_id_str": "84962661", "from_user_name": "Nane", "geo": null, "id": 148825052740198400, "id_str": "148825052740198401", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1613164541/Linda_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1613164541/Linda_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@SaguiSanfona J\\u00E1 mandei para a Sui\\u00E7a e Portugal kkk @MartaWLMT @MelaFernandes @JulianaMPisco >> V\\u00E3o fazer kkk Manda bjus pra ela e pra mana", "to_user": "SaguiSanfona", "to_user_id": 245359426, "to_user_id_str": "245359426", "to_user_name": "Sagui Sanfona", "in_reply_to_status_id": 148824533695086600, "in_reply_to_status_id_str": "148824533695086592"}, +{"created_at": "Mon, 19 Dec 2011 18:00:25 +0000", "from_user": "michaelanico", "from_user_id": 250540245, "from_user_id_str": "250540245", "from_user_name": "Michaela Larsson", "geo": null, "id": 148825025909243900, "id_str": "148825025909243904", "iso_language_code": "sv", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696872771/Screen_shot_2011-12-16_at_7.37.09_PM_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696872771/Screen_shot_2011-12-16_at_7.37.09_PM_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "var hittar man f\\u00F6rresten billigaste flygstolarna nu? till portugal? #resa #flyg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:14 +0000", "from_user": "em_com", "from_user_id": 183398510, "from_user_id_str": "183398510", "from_user_name": "Estado de Minas ", "geo": null, "id": 148824979297943550, "id_str": "148824979297943552", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1121206692/em_img_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1121206692/em_img_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "FMI libera 2,9 bi de euros para Portugal \\nhttp://t.co/H3MXGySl via @em_com", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:09 +0000", "from_user": "bauareeiro", "from_user_id": 94586734, "from_user_id_str": "94586734", "from_user_name": "Areeiro Bau", "geo": null, "id": 148824958708088830, "id_str": "148824958708088832", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprova tranche de 2,9 mil milh\\u00F5es de euros para Portugal: Depois da Comiss\\u00E3o Europeia, hoje foi a vez de o c... http://t.co/ksSmgCM8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:05 +0000", "from_user": "economia_feed_0", "from_user_id": 284989974, "from_user_id_str": "284989974", "from_user_name": "economia_feed_0", "geo": null, "id": 148824941322711040, "id_str": "148824941322711040", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://www.google.es" rel="nofollow">Economia_feed</a>", "text": "#Econom\\u00EDa.- El #FMI autoriza el desembolso de 2.900 millones del #siguiente #tramo del #rescate de #Portugal http://t.co/ChQyuROR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:03 +0000", "from_user": "infilipac", "from_user_id": 118209793, "from_user_id_str": "118209793", "from_user_name": "In\\u00EAs", "geo": null, "id": 148824934146252800, "id_str": "148824934146252801", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1540382566/07082010557akjbhd_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1540382566/07082010557akjbhd_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rihanna: PORTUGAL tonight was LEGENDARY!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 18:00:02 +0000", "from_user": "diihhenrique", "from_user_id": 67970002, "from_user_id_str": "67970002", "from_user_name": "\\u03DF D\\u00ED\\u00ECH \\u03DF ", "geo": null, "id": 148824928265838600, "id_str": "148824928265838592", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1311984702/DSCF3743_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1311984702/DSCF3743_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#DescansaRihanna: durante show em Portugal, cantora deixa palco para vomitar: N\\u00E3o tem jeito, Rihanna t\\u00E1 louca e ... http://t.co/UYi11GVA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:57 +0000", "from_user": "MissHalloween_X", "from_user_id": 428928804, "from_user_id_str": "428928804", "from_user_name": "leah Dixon ", "geo": null, "id": 148824908003160060, "id_str": "148824908003160065", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1675256387/Greenwich-20111202-00648_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675256387/Greenwich-20111202-00648_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Hope Rhianas alright about what happened in Portugal :L,xxxxx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:57 +0000", "from_user": "pt_meta_guide", "from_user_id": 435931739, "from_user_id_str": "435931739", "from_user_name": "Portugal Meta Guide", "geo": null, "id": 148824906409312260, "id_str": "148824906409312257", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691161167/Portugal-Flag-icon_normal.png", "profile_image_url_https": null, "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#philipswiki: Lonely Planet By the Seat of My Pants (Anthology) Review http://t.co/DWowfdEc lonelyplanet travel", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:56 +0000", "from_user": "pt_meta_guide", "from_user_id": 435931739, "from_user_id_str": "435931739", "from_user_name": "Portugal Meta Guide", "geo": null, "id": 148824903590752260, "id_str": "148824903590752257", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691161167/Portugal-Flag-icon_normal.png", "profile_image_url_https": null, "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#Shawnkks: A Historic Travel Guide to European Countries and Their Cities: Portugal: Europe is a place filled with wonder a......", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:56 +0000", "from_user": "pt_meta_guide", "from_user_id": 435931739, "from_user_id_str": "435931739", "from_user_name": "Portugal Meta Guide", "geo": null, "id": 148824900835090430, "id_str": "148824900835090433", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691161167/Portugal-Flag-icon_normal.png", "profile_image_url_https": null, "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#Shawnnaxjt: Spain & Portugal Travel Map by Hema: Road and travel map of Spain and Portugal with shaded relief in subtle colo......", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:56 +0000", "from_user": "angferper", "from_user_id": 125072989, "from_user_id_str": "125072989", "from_user_name": "\\u00C1ngela Ferreira", "geo": +{"coordinates": [41.9397,-8.7452], "type": "Point"}, "id": 148824899396435970, "id_str": "148824899396435968", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693546553/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693546553/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Con @sara_loren y luli tomando algo en Portugal #Mir\\u00F3 http://t.co/1XsCVb1G", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:55 +0000", "from_user": "pt_meta_guide", "from_user_id": 435931739, "from_user_id_str": "435931739", "from_user_name": "Portugal Meta Guide", "geo": null, "id": 148824899375472640, "id_str": "148824899375472640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691161167/Portugal-Flag-icon_normal.png", "profile_image_url_https": null, "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#Sharell_Ramsier: Fodor's Portugal, 8th Edition (Fodor's Gold Guides) http://t.co/zouIiXPa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:55 +0000", "from_user": "pt_meta_guide", "from_user_id": 435931739, "from_user_id_str": "435931739", "from_user_name": "Portugal Meta Guide", "geo": null, "id": 148824897987166200, "id_str": "148824897987166208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691161167/Portugal-Flag-icon_normal.png", "profile_image_url_https": null, "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#Expats_United: #Expats_Mexico I am hoping to travel to Portugal with my Mum and Dad, my elderly mother has Lun... http://t.co/mFlh8e6N...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:54 +0000", "from_user": "pt_meta_guide", "from_user_id": 435931739, "from_user_id_str": "435931739", "from_user_name": "Portugal Meta Guide", "geo": null, "id": 148824895600603140, "id_str": "148824895600603136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691161167/Portugal-Flag-icon_normal.png", "profile_image_url_https": null, "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#stevorevo: #theexplorateur Thanks for the RT! Portugal travel photog", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:52 +0000", "from_user": "LauraMesqui", "from_user_id": 75354152, "from_user_id_str": "75354152", "from_user_name": "Laura Mesquita", "geo": null, "id": 148824886356357120, "id_str": "148824886356357120", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687245910/DSC02448_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687245910/DSC02448_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@susanaafc que grande imagem que ela leva de portugal...", "to_user": "susanaafc", "to_user_id": 67635244, "to_user_id_str": "67635244", "to_user_name": "Susana Cordeiro", "in_reply_to_status_id": 148824555354468350, "in_reply_to_status_id_str": "148824555354468353"} +, +{"created_at": "Mon, 19 Dec 2011 17:59:55 +0000", "from_user": "pt_meta_guide", "from_user_id": 435931739, "from_user_id_str": "435931739", "from_user_name": "Portugal Meta Guide", "geo": null, "id": 148824897987166200, "id_str": "148824897987166208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691161167/Portugal-Flag-icon_normal.png", "profile_image_url_https": null, "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#Expats_United: #Expats_Mexico I am hoping to travel to Portugal with my Mum and Dad, my elderly mother has Lun... http://t.co/mFlh8e6N...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:54 +0000", "from_user": "pt_meta_guide", "from_user_id": 435931739, "from_user_id_str": "435931739", "from_user_name": "Portugal Meta Guide", "geo": null, "id": 148824895600603140, "id_str": "148824895600603136", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691161167/Portugal-Flag-icon_normal.png", "profile_image_url_https": null, "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#stevorevo: #theexplorateur Thanks for the RT! Portugal travel photog", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:52 +0000", "from_user": "LauraMesqui", "from_user_id": 75354152, "from_user_id_str": "75354152", "from_user_name": "Laura Mesquita", "geo": null, "id": 148824886356357120, "id_str": "148824886356357120", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687245910/DSC02448_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687245910/DSC02448_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@susanaafc que grande imagem que ela leva de portugal...", "to_user": "susanaafc", "to_user_id": 67635244, "to_user_id_str": "67635244", "to_user_name": "Susana Cordeiro", "in_reply_to_status_id": 148824555354468350, "in_reply_to_status_id_str": "148824555354468353"}, +{"created_at": "Mon, 19 Dec 2011 17:59:46 +0000", "from_user": "CienciasExactas", "from_user_id": 26016195, "from_user_id_str": "26016195", "from_user_name": "Ci\\u00EAncias Exactas", "geo": null, "id": 148824860481691650, "id_str": "148824860481691648", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/125489198/observador_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/125489198/observador_normal.jpeg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "ci\\u00EAncia: - Idade m\\u00E9dia de maternidade http://t.co/Bu9qn6iO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:34 +0000", "from_user": "dirtyfenty", "from_user_id": 112851999, "from_user_id_str": "112851999", "from_user_name": "Thaiis \\u0394", "geo": null, "id": 148824810623995900, "id_str": "148824810623995905", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699096000/Sem_t_tulo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699096000/Sem_t_tulo_normal.png", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @rihanna_navy_br: Que raiva desse imbecil que descriminou a RiRi em Portugal,isso n\\u00E3o pode acontecer KD O FBI??? KD MINHA PEGGY SUE???", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:31 +0000", "from_user": "AsLuanaticas_PT", "from_user_id": 246811989, "from_user_id_str": "246811989", "from_user_name": "As Luanaticas PT", "geo": null, "id": 148824796371763200, "id_str": "148824796371763200", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1589478022/366105796_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1589478022/366105796_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@AsLuanaticas vou ver Michel tel\\u00F3 dia 25 de fevereiro amor ele v\\u00EAm ca a Portugal e voc\\u00EA ?", "to_user": "AsLuanaticas", "to_user_id": 178750190, "to_user_id_str": "178750190", "to_user_name": "Line e L\\u00EA do Luan \\u10D6", "in_reply_to_status_id": 148824478804226050, "in_reply_to_status_id_str": "148824478804226050"}, +{"created_at": "Mon, 19 Dec 2011 17:59:19 +0000", "from_user": "JuanCarlos_RDS", "from_user_id": 245942171, "from_user_id_str": "245942171", "from_user_name": "Juan Carlos RDS \\u2714", "geo": null, "id": 148824747965288450, "id_str": "148824747965288448", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684819587/nFYs3p4M_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684819587/nFYs3p4M_normal", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Esto es Portugal. Lo adoro. Felicidad, alegr\\u00EDa, compartir ilusiones... S\\u00F3 Visto - Selec\\u00E7\\u00E3o Nacional http://t.co/IO55p9YB v\\u00EDa @youtube", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:16 +0000", "from_user": "Manaus_Amazonas", "from_user_id": 215251021, "from_user_id_str": "215251021", "from_user_name": "News Manaus Amazonas", "geo": null, "id": 148824735344640000, "id_str": "148824735344640000", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1570386448/arena_da_amazonia_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1570386448/arena_da_amazonia_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera 2,9 bi de euros para Portugal http://t.co/EF3sWfBN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:14 +0000", "from_user": "arteh", "from_user_id": 9017782, "from_user_id_str": "9017782", "from_user_name": "ARTEH HOTELS", "geo": null, "id": 148824726620487680, "id_str": "148824726620487680", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/184238427/Logo-ARTEH_07_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/184238427/Logo-ARTEH_07_normal.JPG", "source": "<a href="http://twitthat.com/" rel="nofollow">twitthat</a>", "text": "Reading: \"New Year\\u2019s Eve Package - 1 Night at Bessa Hotel in Portugal, Oporto\" ( http://t.co/82Pn7cQR )", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:07 +0000", "from_user": "portugalforum", "from_user_id": 41989700, "from_user_id_str": "41989700", "from_user_name": "portugalforum", "geo": null, "id": 148824695993667600, "id_str": "148824695993667584", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/487842239/pfo_icon_gr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/487842239/pfo_icon_gr_normal.jpg", "source": "<a href="http://www.portugalforum.org" rel="nofollow">portugalforum.org</a>", "text": "portu.ch: Algarve - Wanderer statt Sonnenanbeter: Algarve - Wanderer statt Sonnenanbeter Bei milden Temperaturen machte http://t.co/gICHPHq5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:03 +0000", "from_user": "MarvellousSport", "from_user_id": 306922612, "from_user_id_str": "306922612", "from_user_name": "Marvellous Sport", "geo": null, "id": 148824681892429820, "id_str": "148824681892429824", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1414875598/ball_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1414875598/ball_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Futebol 365 M\\u00FAsica: Morreu Carlos Menezes, pioneiro da guitarra el\\u00E9trica em Portugal: O guitarrista Carlos Menez... http://t.co/POXDHy8v", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:01 +0000", "from_user": "MarcoAntonioDSM", "from_user_id": 169586454, "from_user_id_str": "169586454", "from_user_name": "Marco Ant\\u00F3nio", "geo": null, "id": 148824672019038200, "id_str": "148824672019038208", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679763635/IMG_0030_modified_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679763635/IMG_0030_modified_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Rihanna \\u00E9 vista a sair de uma loja Armani em Londres | RIHANNA PORTUGAL http://t.co/6Wk2ufIe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:59:01 +0000", "from_user": "tpobserver", "from_user_id": 137488594, "from_user_id_str": "137488594", "from_user_name": "Paul", "geo": null, "id": 148824670433583100, "id_str": "148824670433583104", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/884576390/asdfasd_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/884576390/asdfasd_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:57 +0000", "from_user": "juliapredebon", "from_user_id": 92301304, "from_user_id_str": "92301304", "from_user_name": "Julia Predebon", "geo": null, "id": 148824653681532930, "id_str": "148824653681532928", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695280864/DSC05708_-_C_pia_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695280864/DSC05708_-_C_pia_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @BillboardChart_: RIHANNA \\u00E9 v\\u00EDtima de racismo em hotel de Portugal: http://t.co/qDv67Xnn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:54 +0000", "from_user": "finansnyheter", "from_user_id": 37592554, "from_user_id_str": "37592554", "from_user_name": "Finansnyheter", "geo": null, "id": 148824642554048500, "id_str": "148824642554048513", "iso_language_code": "no", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/195869373/finansnyheter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/195869373/finansnyheter_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF utbetaler milliardl\\u00E5n til Portugal http://t.co/bNN6kR7c", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:53 +0000", "from_user": "nadam9", "from_user_id": 43514030, "from_user_id_str": "43514030", "from_user_name": "Adam Nyb\\u00E4ck", "geo": null, "id": 148824638368120830, "id_str": "148824638368120832", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/770058019/adam85_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/770058019/adam85_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:45 +0000", "from_user": "sam_valdes", "from_user_id": 42817815, "from_user_id_str": "42817815", "from_user_name": "Sam Valdes", "geo": null, "id": 148824604754976770, "id_str": "148824604754976768", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1541687193/282161_10150725264170541_693465540_19880066_2527082_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541687193/282161_10150725264170541_693465540_19880066_2527082_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Milenio: FMI aprueba entrega de \\u20AC2 mil 900 millones para Portugal http://t.co/yR5rfUc1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:45 +0000", "from_user": "LuArFever", "from_user_id": 331335418, "from_user_id_str": "331335418", "from_user_name": "LuArFever", "geo": null, "id": 148824604553654270, "id_str": "148824604553654272", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1672387618/catsn_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672387618/catsn_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Pbarbosashow Quando os #Rebeldes v\\u00EAm a #Portugal ? Pff responde ... n\\u00F3s queremos MUITO os Rebeldes aqui *-*", "to_user": "Pbarbosashow", "to_user_id": 431595535, "to_user_id_str": "431595535", "to_user_name": "Paulo Barbosa"}, +{"created_at": "Mon, 19 Dec 2011 17:58:44 +0000", "from_user": "goodnighthemoon", "from_user_id": 125935155, "from_user_id_str": "125935155", "from_user_name": "Sofia", "geo": null, "id": 148824602150314000, "id_str": "148824602150313985", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1585562425/Snapshot_20110628_15_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585562425/Snapshot_20110628_15_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@FallenKaty bought it in Portugal during \"fallen\" period.", "to_user": "FallenKaty", "to_user_id": 76705761, "to_user_id_str": "76705761", "to_user_name": "Katherine Courtney-H", "in_reply_to_status_id": 148823195825356800, "in_reply_to_status_id_str": "148823195825356802"}, +{"created_at": "Mon, 19 Dec 2011 17:58:43 +0000", "from_user": "CodyCanFlyy", "from_user_id": 43901995, "from_user_id_str": "43901995", "from_user_name": "Tiago Caldeira", "geo": null, "id": 148824597956018180, "id_str": "148824597956018176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1264626998/5d646b84-4202-46da-a9be-c3978608c05f_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1264626998/5d646b84-4202-46da-a9be-c3978608c05f_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@joshmeatsix that @youmeatsix need to play a show in Portugal", "to_user": "joshmeatsix", "to_user_id": 41110545, "to_user_id_str": "41110545", "to_user_name": "Josh Franceschi", "in_reply_to_status_id": 148823929568493570, "in_reply_to_status_id_str": "148823929568493568"}, +{"created_at": "Mon, 19 Dec 2011 17:58:40 +0000", "from_user": "CAN72Northants", "from_user_id": 166168539, "from_user_id_str": "166168539", "from_user_name": "Richard Lukehurst ", "geo": null, "id": 148824582801985540, "id_str": "148824582801985536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1609302804/18_April_2011_small_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609302804/18_April_2011_small_normal.gif", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/7ggBqL9g", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:38 +0000", "from_user": "rfromsweet", "from_user_id": 245968636, "from_user_id_str": "245968636", "from_user_name": "Rosa Pires", "geo": null, "id": 148824574597935100, "id_str": "148824574597935105", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1683607309/new_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683607309/new_normal.jpg", "source": "<a href="http://instagr.am" rel="nofollow">instagram</a>", "text": "Lovely #winter afternoon in #downtown #porto #portugal :) http://t.co/qzcsWBto", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:19 +0000", "from_user": "AnonymousIO", "from_user_id": 250294813, "from_user_id_str": "250294813", "from_user_name": "Anonymous I/O", "geo": null, "id": 148824494583185400, "id_str": "148824494583185408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1240543710/AnonIO_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1240543710/AnonIO_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:16 +0000", "from_user": "pauldarcey", "from_user_id": 106266789, "from_user_id_str": "106266789", "from_user_name": "Paul Darcey", "geo": null, "id": 148824484659466240, "id_str": "148824484659466240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1591098100/IMG_0015_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591098100/IMG_0015_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:12 +0000", "from_user": "aboutcentro", "from_user_id": 19910429, "from_user_id_str": "19910429", "from_user_name": "Centro de Portugal", "geo": null, "id": 148824467261489150, "id_str": "148824467261489152", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1079668209/27343_1211652986_4743_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1079668209/27343_1211652986_4743_q_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "NU BAI!\\nTomorrow we'll show you more beautiful faces of Centro de Portugal!\\nMa\\u00F1ana os mostraremos m\\u00E1s rostros... http://t.co/YpM9zzl6", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:12 +0000", "from_user": "phil_deakin", "from_user_id": 89930902, "from_user_id_str": "89930902", "from_user_name": "Phil Deakin", "geo": null, "id": 148824464421957630, "id_str": "148824464421957632", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/526588187/animals016_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/526588187/animals016_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:08 +0000", "from_user": "RupaVirgo", "from_user_id": 351846000, "from_user_id_str": "351846000", "from_user_name": "Rupa Paul", "geo": null, "id": 148824450060656640, "id_str": "148824450060656641", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1486827194/mini-22_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1486827194/mini-22_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF approves 2.9 billion euro tranche to Portugal: (Reuters) - The International Monetary Fund on Monday approve... http://t.co/ZVU0Ic8K", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:04 +0000", "from_user": "Patrikia_rc", "from_user_id": 273944217, "from_user_id_str": "273944217", "from_user_name": "Patricia Rodriguez", "geo": null, "id": 148824433467994100, "id_str": "148824433467994112", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694788642/IMG00023-20110723-1714_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694788642/IMG00023-20110723-1714_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "Dia raruno... En dos semanas volando para Portugal #cambiodeaires", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:58:04 +0000", "from_user": "VagabonPozitif", "from_user_id": 385136737, "from_user_id_str": "385136737", "from_user_name": "V P", "geo": null, "id": 148824433065332740, "id_str": "148824433065332737", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @Marina107: Rihanna enceinte : Elle fait actuellement le Buzz sur le Net, apres etre aller vomir alors qu'elle donnait un concert au Portugal.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:56 +0000", "from_user": "VinceMalumBono", "from_user_id": 167252296, "from_user_id_str": "167252296", "from_user_name": "Sic semper tyrannis", "geo": null, "id": 148824400135860220, "id_str": "148824400135860224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1560623810/profile_normal.GIF", "profile_image_url_https": "https://si0.twimg.com/profile_images/1560623810/profile_normal.GIF", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:56 +0000", "from_user": "pretty_phace", "from_user_id": 40262423, "from_user_id_str": "40262423", "from_user_name": "None YeaBiz", "geo": null, "id": 148824399238279170, "id_str": "148824399238279168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1690698275/fN9mTmwK_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690698275/fN9mTmwK_normal", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Rihanna Racially Assaulted In Portugal http://t.co/MjifL4ky via @thatgrapejuice", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:55 +0000", "from_user": "ScottBrownNz", "from_user_id": 400356734, "from_user_id_str": "400356734", "from_user_name": "Scott Brown", "geo": null, "id": 148824393303330800, "id_str": "148824393303330817", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1687406379/downloadfile_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687406379/downloadfile_normal.png", "source": "<a href="http://levelupstudio.com" rel="nofollow">Plume\\u00A0\\u00A0</a>", "text": "\\u201C@richardbranson It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/MbySC4dq\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:39 +0000", "from_user": "C_A_Wong", "from_user_id": 238373222, "from_user_id_str": "238373222", "from_user_name": "Carlos Wong", "geo": null, "id": 148824327364673540, "id_str": "148824327364673536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1636685011/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1636685011/image_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @LifeBoxset: Escucha un cover de Portugal. The Man a Gnarls Barkley http://t.co/qYMNEKP9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:36 +0000", "from_user": "carlos_abreu", "from_user_id": 14184369, "from_user_id_str": "14184369", "from_user_name": "carlos_abreu", "geo": null, "id": 148824313489928200, "id_str": "148824313489928195", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera ? 2,9 bilh\\u00F5es para Portugal: Fundo fez segunda avalia\\u00E7\\u00E3o formal sobre situa\\u00E7\\u00E3o dos programas de auste... http://t.co/KR7Ljnmj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:25 +0000", "from_user": "SHADI_ALKASIM", "from_user_id": 31097152, "from_user_id_str": "31097152", "from_user_name": "Shadi Akasim", "geo": null, "id": 148824269260996600, "id_str": "148824269260996608", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1576763391/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1576763391/me_normal.jpg", "source": "<a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>", "text": "IMF rescue to Portugal http://t.co/EJQAggIO: http://t.co/zixEWWR2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:22 +0000", "from_user": "vach00", "from_user_id": 200545101, "from_user_id_str": "200545101", "from_user_name": "Victor A.", "geo": null, "id": 148824256334151680, "id_str": "148824256334151680", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1601495701/IMG00199-20111022-1516_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601495701/IMG00199-20111022-1516_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Milenio: FMI aprueba entrega de \\u20AC2 mil 900 millones para Portugal http://t.co/yR5rfUc1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:20 +0000", "from_user": "vach00", "from_user_id": 200545101, "from_user_id_str": "200545101", "from_user_name": "Victor A.", "geo": null, "id": 148824247878422530, "id_str": "148824247878422528", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1601495701/IMG00199-20111022-1516_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601495701/IMG00199-20111022-1516_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"@Milenio: FMI aprueba entrega de \\u20AC2 mil 900 millones para Portugal http://t.co/BsNUi9W7\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:19 +0000", "from_user": "tashjockel", "from_user_id": 308498105, "from_user_id_str": "308498105", "from_user_name": "natasha jockel", "geo": null, "id": 148824245672214530, "id_str": "148824245672214529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1647391525/312622_2570271611849_1106006587_2955835_1625871837_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647391525/312622_2570271611849_1106006587_2955835_1625871837_n_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "wannna go back to portugal with @BethQuinn95 and make more sychronized swimming routines", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:18 +0000", "from_user": "chico_zeh", "from_user_id": 208491626, "from_user_id_str": "208491626", "from_user_name": "Francisco Kopke", "geo": null, "id": 148824238869057540, "id_str": "148824238869057537", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1399748942/transferir__29__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1399748942/transferir__29__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Bublioteca Portugal entre os maiores clientes de armamento alem\\u00E3o http://t.co/Cub8tFFg", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:07 +0000", "from_user": "nazare_th", "from_user_id": 84084091, "from_user_id_str": "84084091", "from_user_name": "nazar\\u00E9 araujo", "geo": null, "id": 148824193276968960, "id_str": "148824193276968961", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1061552399/100_1201_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1061552399/100_1201_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@Harry_Styles_a happy birthday video of the hottest guys in the entire world wishing me.....!!feel free to funfill this one\\nxxOxOxx Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:05 +0000", "from_user": "Kristiane123", "from_user_id": 41213811, "from_user_id_str": "41213811", "from_user_name": "cristiane", "geo": null, "id": 148824183458111500, "id_str": "148824183458111488", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1689540750/natal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689540750/natal_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Navegando no O Fuxico: Rihanna sofre racismo em hotel em Portugal http://t.co/RfEIzE8v", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:03 +0000", "from_user": "paulcbrady", "from_user_id": 110147582, "from_user_id_str": "110147582", "from_user_name": "Paul Brady", "geo": null, "id": 148824178022285300, "id_str": "148824178022285313", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/667248217/paulcbrady_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/667248217/paulcbrady_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "VC News: http://t.co/UBPUxMJR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:57:02 +0000", "from_user": "ViveikaEscobar", "from_user_id": 161042404, "from_user_id_str": "161042404", "from_user_name": "Viveika Escobar ", "geo": null, "id": 148824175006588930, "id_str": "148824175006588930", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1553517046/YO_DE_AZUL_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553517046/YO_DE_AZUL_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @laopinionpanama: Hacinamiento en albergues de migraci\\u00F3n dice defensora del pueblo Patria Portugal. #laopinionpanama", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:52 +0000", "from_user": "CarolinaMaques", "from_user_id": 327786729, "from_user_id_str": "327786729", "from_user_name": "Carolina Marques", "geo": null, "id": 148824131637485570, "id_str": "148824131637485568", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1649067206/292700_260473550639813_100000315097749_834083_3081179_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649067206/292700_260473550639813_100000315097749_834083_3081179_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@rihanna Portugal loves you Rihanna!!! You're amazing!!! \"I can't stand how much I love you....\" <3", "to_user": "rihanna", "to_user_id": 79293791, "to_user_id_str": "79293791", "to_user_name": "Rihanna", "in_reply_to_status_id": 148182359810908160, "in_reply_to_status_id_str": "148182359810908160"}, +{"created_at": "Mon, 19 Dec 2011 17:56:51 +0000", "from_user": "HelderSalgueiro", "from_user_id": 93847902, "from_user_id_str": "93847902", "from_user_name": "Helder Salgueiro", "geo": null, "id": 148824125106958340, "id_str": "148824125106958336", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/553118657/Carl_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/553118657/Carl_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "FMI aprovou mais 2,9 mil milh\\u00F5es para Portugal .", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:50 +0000", "from_user": "Evelyn785469213", "from_user_id": 405400412, "from_user_id_str": "405400412", "from_user_name": "Evelyn", "geo": null, "id": 148824122183528450, "id_str": "148824122183528448", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1623359669/p12_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1623359669/p12_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Portugal Flag Mahogany Wood Pencil Holder: Looking for the perfect office gift for someone who is Portuguese? Yo... http://t.co/MJMSStmn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:38 +0000", "from_user": "FcoCineBoys", "from_user_id": 287808323, "from_user_id_str": "287808323", "from_user_name": "\\u21AFFc Banda CINE\\u21AF ", "geo": null, "id": 148824073378594800, "id_str": "148824073378594817", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1656331799/anigif6_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1656331799/anigif6_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "VAMOS PEDIR CINE E PORTUGAL VOU POSTAR 3 RADIOS PROXIMOS TWEETS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:37 +0000", "from_user": "arteh", "from_user_id": 9017782, "from_user_id_str": "9017782", "from_user_name": "ARTEH HOTELS", "geo": null, "id": 148824069628899330, "id_str": "148824069628899328", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/184238427/Logo-ARTEH_07_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/184238427/Logo-ARTEH_07_normal.JPG", "source": "<a href="http://twitthat.com/" rel="nofollow">twitthat</a>", "text": "Reading: \"New Year's Eve Package - 2 Nights at Pousada Santa Marinha in Portugal, Douro and Minho, Guimar\\u00E3es\" ( http://t.co/1ckOEW3W )", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:28 +0000", "from_user": "errodeparalaxe", "from_user_id": 47474428, "from_user_id_str": "47474428", "from_user_name": "Pedro d'Azevedo", "geo": null, "id": 148824031624302600, "id_str": "148824031624302593", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1634356635/Moi.jpg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1634356635/Moi.jpg_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @JoaoPedroL: esta coisa do Passos mandar o pessoal emigrar quase me d\\u00E1 vontade de voltar para Portugal s\\u00F3 p contrariar.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:25 +0000", "from_user": "ForfexSceleris", "from_user_id": 186630707, "from_user_id_str": "186630707", "from_user_name": "Forfex Sceleris", "geo": null, "id": 148824019343380480, "id_str": "148824019343380480", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1116750726/Happoavvie2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1116750726/Happoavvie2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Portugal pr\\u00F3ximo a llegar a los niveles de Ell\\u00E1da: el FMI aprob\\u00F3 la tercera liberaci\\u00F3n de fondos de \"rescate\": 2,900 mde.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:21 +0000", "from_user": "AsPatas", "from_user_id": 141302387, "from_user_id_str": "141302387", "from_user_name": "As Patas Amigas", "geo": null, "id": 148824000255098880, "id_str": "148824000255098881", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/881415281/AsPatas1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/881415281/AsPatas1_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "PORTUGAL\\nC\\u00E3o-partilhando Mural e CMMs As Patas Amigas, DEN\\u00DANCIAS DE MAUS TRATOS EM SITES e PROTE\\u00C7\\u00C3O AOS ANIMAIS E... http://t.co/rcSysNhR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:18 +0000", "from_user": "Inn_Noticias", "from_user_id": 402328637, "from_user_id_str": "402328637", "from_user_name": "Inn Noticias!", "geo": null, "id": 148823987667996670, "id_str": "148823987667996672", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1679361748/393536_258640917527821_100001457448330_695591_106673463_n__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679361748/393536_258640917527821_100001457448330_695591_106673463_n__1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "El Fondo Monetario Internacional (FMI) aprob\\u00F3 2.900 millones de euros para Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:17 +0000", "from_user": "portugalforum", "from_user_id": 41989700, "from_user_id_str": "41989700", "from_user_name": "portugalforum", "geo": null, "id": 148823985696677900, "id_str": "148823985696677888", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/487842239/pfo_icon_gr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/487842239/pfo_icon_gr_normal.jpg", "source": "<a href="http://www.portugalforum.org" rel="nofollow">portugalforum.org</a>", "text": "Algarve-News: "Estradas de Portugal": Vandalismus erfolglos: Der Autobahnbetreiber \"Estradas de Portugal\" hat http://t.co/NnvUAwZz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:16 +0000", "from_user": "fredcerdeira", "from_user_id": 15835118, "from_user_id_str": "15835118", "from_user_name": "Fred Cerdeira", "geo": null, "id": 148823982060216320, "id_str": "148823982060216320", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1641178692/fredcerdeira_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641178692/fredcerdeira_normal.jpg", "source": "<a href="http://www.publico.pt" rel="nofollow">Publico.pt</a>", "text": "Jazz volta \\u00E0 Pra\\u00E7a da Alegria com reabertura do Hot Clube de Portugal http://t.co/emaiWDMp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:11 +0000", "from_user": "vitriolica", "from_user_id": 77826352, "from_user_id_str": "77826352", "from_user_name": "Vitri\\u00F3lica CORRosiva", "geo": null, "id": 148823957154443260, "id_str": "148823957154443264", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1380712813/twitt-coco3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1380712813/twitt-coco3_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jarmigas: Novo lema do Turismo de Portugal: \"V\\u00E1 para fora, n\\u00E3o fique c\\u00E1 dentro\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:11 +0000", "from_user": "DiferentLover", "from_user_id": 273017486, "from_user_id_str": "273017486", "from_user_name": "Tanya", "geo": null, "id": 148823956906983420, "id_str": "148823956906983424", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1659557389/Snapshot_20111126_18_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659557389/Snapshot_20111126_18_normal.jpg", "source": "<a href="http://www.twitition.com" rel="nofollow">Twitition</a>", "text": "#Twitition We Want justinbieber in PORTUGAL!!\\u2665 http://t.co/hcqoEH2T", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:09 +0000", "from_user": "STARANDBUCWILD", "from_user_id": 14368437, "from_user_id_str": "14368437", "from_user_name": "Star & Buc Wild", "geo": null, "id": 148823952087715840, "id_str": "148823952087715840", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1092079954/STAR___BUC_LOGO_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1092079954/STAR___BUC_LOGO_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Rihanna Goes on Twitter Rant After Racial Abuse in Portugal (Blog) (@Rihanna) http://t.co/3vwZZr96", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:09 +0000", "from_user": "paulocunhavox", "from_user_id": 233292368, "from_user_id_str": "233292368", "from_user_name": "paulo cunha", "geo": null, "id": 148823951454384130, "id_str": "148823951454384128", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1621910172/megafone2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1621910172/megafone2_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @margvs: RT @especulativa: A Irlanda e a Su\\u00E9cia querem um \"tratado \\u00E0 medida\"; v\\u00E3o negociar, pois. E Portugal, vai assinar de cruz?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:09 +0000", "from_user": "AMGraphix", "from_user_id": 22552350, "from_user_id_str": "22552350", "from_user_name": "Alison Meeks", "geo": null, "id": 148823950498082800, "id_str": "148823950498082817", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/750534406/AlisonPic_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/750534406/AlisonPic_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Time to end the war on drugs http://t.co/rFn7RkAz via @virgin Brilliant piece and what a great study Portugal has done over the past 10 yrs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:09 +0000", "from_user": "ThisisRasy", "from_user_id": 220594903, "from_user_id_str": "220594903", "from_user_name": "Reynaldo Hammsworthy", "geo": null, "id": 148823950003159040, "id_str": "148823950003159040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1525080560/street-king-energy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1525080560/street-king-energy_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "VladTV: Rihanna Goes on Twitter Rant After Racial Abuse in Portugal (Blog) (@Rihanna) http://t.co/OoEjVnfp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:56:00 +0000", "from_user": "diogokoslyk", "from_user_id": 322260909, "from_user_id_str": "322260909", "from_user_name": "D.H Koslyke", "geo": null, "id": 148823913969881100, "id_str": "148823913969881088", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1675147600/05-09-10_1045_001_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675147600/05-09-10_1045_001_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "vou comer um queijo de portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:59 +0000", "from_user": "miley_pt", "from_user_id": 385443661, "from_user_id_str": "385443661", "from_user_name": "MileyxPT", "geo": null, "id": 148823908005576700, "id_str": "148823908005576704", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1596571666/294346_128680593903334_100002841820094_127120_1341520013_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596571666/294346_128680593903334_100002841820094_127120_1341520013_n_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "ESPA\\u00C7O PUBLICIT\\u00C1RIO !\\n1\\u00BA adiram a esta p\\u00E1gina: http://t.co/GNQiIDyt\\n2\\u00BA publiquem esta p\\u00E1gina... http://t.co/hONUaGCb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:50 +0000", "from_user": "jessicacTOMS", "from_user_id": 111070837, "from_user_id_str": "111070837", "from_user_name": "jessica \\u2654", "geo": null, "id": 148823870420434940, "id_str": "148823870420434944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701997357/tumblr_lw8rkcwWKb1qzq5vco1_500_large_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701997357/tumblr_lw8rkcwWKb1qzq5vco1_500_large_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@JanetJealousy it would be awesome if you say Portugal tonight :(", "to_user": "JanetJealousy", "to_user_id": 35469661, "to_user_id_str": "35469661", "to_user_name": "Janet Devlin"}, +{"created_at": "Mon, 19 Dec 2011 17:55:48 +0000", "from_user": "Topblogpop", "from_user_id": 354821020, "from_user_id_str": "354821020", "from_user_name": "Top Pop", "geo": null, "id": 148823863298502660, "id_str": "148823863298502656", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1494590517/tape_pop_logo_tube_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1494590517/tape_pop_logo_tube_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "It Pop: #DescansaRihanna: durante show em Portugal, cantora deixa palco para vomitar: N\\u00E3o tem jeito, Rihanna t\\u00E1 ... http://t.co/0en9qCVN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:48 +0000", "from_user": "hyminameisdh", "from_user_id": 243922611, "from_user_id_str": "243922611", "from_user_name": "N\\u00C3O SOU O DH, bgs ;*", "geo": null, "id": 148823861377499140, "id_str": "148823861377499136", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1232184071/Foto27_reasonably_small_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1232184071/Foto27_reasonably_small_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#ITPOP #DescansaRihanna: durante show em Portugal, cantora deixa palco para vomitar: N\\u00E3o tem jeito, Rihanna ... http://t.co/J44NnvnR RT!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:48 +0000", "from_user": "tweetsdoalem", "from_user_id": 100270192, "from_user_id_str": "100270192", "from_user_name": "Tweets do Al\\u00E9m!", "geo": null, "id": 148823860928712700, "id_str": "148823860928712704", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/598864912/Sem_t_tulo_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/598864912/Sem_t_tulo_1_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#ITPOP #DescansaRihanna: durante show em Portugal, cantora deixa palco para vomitar: N\\u00E3o tem jeito, Rihanna ... http://t.co/Kj9ktA27 RT!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:47 +0000", "from_user": "VOLKisPOP", "from_user_id": 243919303, "from_user_id_str": "243919303", "from_user_name": "VOLKisPOP", "geo": null, "id": 148823859712372740, "id_str": "148823859712372737", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#ITPOP #DescansaRihanna: durante show em Portugal, cantora deixa palco para vomitar: N\\u00E3o tem jeito, Rihanna ... http://t.co/f3HXbaTh RT!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:36 +0000", "from_user": "rihanna_navy_br", "from_user_id": 359384619, "from_user_id_str": "359384619", "from_user_name": "Rihanna Navy Brasil", "geo": null, "id": 148823812069261300, "id_str": "148823812069261312", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683863366/xmas2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683863366/xmas2_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@Caiosobrinho http://t.co/xaFuwYLC", "to_user": "Caiosobrinho", "to_user_id": 81490173, "to_user_id_str": "81490173", "to_user_name": "Carlos Nogueira", "in_reply_to_status_id": 148822790471028740, "in_reply_to_status_id_str": "148822790471028737"}, +{"created_at": "Mon, 19 Dec 2011 17:55:29 +0000", "from_user": "nealdoyle34", "from_user_id": 28420474, "from_user_id_str": "28420474", "from_user_name": "Neal Doyle", "geo": null, "id": 148823782826590200, "id_str": "148823782826590209", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1666552772/320790_1875868314785_1783533849_1266925_141217897_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666552772/320790_1875868314785_1783533849_1266925_141217897_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Just beat Portugal 6-5 on pens in the QF! Next up is Sweden! The dream is on! #pluckypoles", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:28 +0000", "from_user": "MariaLuis", "from_user_id": 405964342, "from_user_id_str": "405964342", "from_user_name": "Maria Lu\\u00EDs", "geo": null, "id": 148823776950358000, "id_str": "148823776950358016", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1624695982/Sem_t_tulo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624695982/Sem_t_tulo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@JessicaLouise1D OMG that's awesomeeeeeeeee!!! :DDD They're not available here in Portugal, but I already have the Dare to Dream ...", "to_user": "JessicaLouise1D", "to_user_id": 246263274, "to_user_id_str": "246263274", "to_user_name": "Jessica Louis(e) ;)", "in_reply_to_status_id": 148822805373399040, "in_reply_to_status_id_str": "148822805373399041"}, +{"created_at": "Mon, 19 Dec 2011 17:55:21 +0000", "from_user": "laopinionpanama", "from_user_id": 376920485, "from_user_id_str": "376920485", "from_user_name": "La Opinion Panama", "geo": null, "id": 148823750572380160, "id_str": "148823750572380162", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696654068/LOGOlaopinion_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696654068/LOGOlaopinion_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Hacinamiento en albergues de migraci\\u00F3n dice defensora del pueblo Patria Portugal. #laopinionpanama", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:21 +0000", "from_user": "JohanOsVenter", "from_user_id": 372738481, "from_user_id_str": "372738481", "from_user_name": "Johan Venter", "geo": null, "id": 148823747967721470, "id_str": "148823747967721472", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700597061/SouthParkAvatar2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700597061/SouthParkAvatar2_normal.png", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @RobVanVuuren: \\u201C@richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/GAWXWizy\\u201D", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:16 +0000", "from_user": "chuhaizhou", "from_user_id": 312430861, "from_user_id_str": "312430861", "from_user_name": "chuhaizhou", "geo": null, "id": 148823729063993340, "id_str": "148823729063993344", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1452874128/1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1452874128/1_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF to release 2.9b euros to Portugal http://t.co/HFmw0uhf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:03 +0000", "from_user": "ACDN_Produccion", "from_user_id": 366634580, "from_user_id_str": "366634580", "from_user_name": "Acrodance Produccion", "geo": null, "id": 148823675330773000, "id_str": "148823675330772992", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1525157058/A_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1525157058/A_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Un seminario pone en valor el patrimonio musical compartido entre Espa\\u00F1a, Portugal e Iberoam\\u00E9rica http://t.co/j1U0DnUG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:55:02 +0000", "from_user": "ornebelloni", "from_user_id": 302336119, "from_user_id_str": "302336119", "from_user_name": "ornella belloni", "geo": null, "id": 148823669869781000, "id_str": "148823669869780993", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702581152/je1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702581152/je1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@OctaLescano de portugal (?", "to_user": "OctaLescano", "to_user_id": 353245862, "to_user_id_str": "353245862", "to_user_name": "Octa Lescano", "in_reply_to_status_id": 148823095430496260, "in_reply_to_status_id_str": "148823095430496256"}, +{"created_at": "Mon, 19 Dec 2011 17:54:42 +0000", "from_user": "aboutcentro", "from_user_id": 19910429, "from_user_id_str": "19910429", "from_user_name": "Centro de Portugal", "geo": null, "id": 148823586793205760, "id_str": "148823586793205760", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1079668209/27343_1211652986_4743_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1079668209/27343_1211652986_4743_q_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Publiquei 3 fotos no Facebook no \\u00E1lbum \"Faces of Centro de Portugal!\" http://t.co/H0GK0J0B", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:54:39 +0000", "from_user": "Nuria1995", "from_user_id": 268862677, "from_user_id_str": "268862677", "from_user_name": "Nuria de Jong", "geo": null, "id": 148823574847819780, "id_str": "148823574847819777", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1510023763/frederique_20nuria_20hannah_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1510023763/frederique_20nuria_20hannah_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@TimVerel dus we komen jullie niet tegen in spanje/portugal/turkije/cherso?", "to_user": "TimVerel", "to_user_id": 171575875, "to_user_id_str": "171575875", "to_user_name": "Tim", "in_reply_to_status_id": 148819309081272320, "in_reply_to_status_id_str": "148819309081272320"}, +{"created_at": "Mon, 19 Dec 2011 17:54:37 +0000", "from_user": "everybodyslife", "from_user_id": 57664266, "from_user_id_str": "57664266", "from_user_name": "In\\u00EAs Gamb\\u00F4a", "geo": null, "id": 148823563493851140, "id_str": "148823563493851138", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1600908394/mustache_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600908394/mustache_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "1st time @MileyCyrus ever performed #CantBeTamedCD was in Portugal last year :D I was there!!! THE BEST TIME OF MY LIFE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:54:36 +0000", "from_user": "JoaoPedroL", "from_user_id": 19716315, "from_user_id_str": "19716315", "from_user_name": "Joao Pedro L", "geo": null, "id": 148823558964002800, "id_str": "148823558964002816", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1662514413/6822_1120717666113_1472204221_30240566_2730044_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662514413/6822_1120717666113_1472204221_30240566_2730044_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "esta coisa do Passos mandar o pessoal emigrar quase me d\\u00E1 vontade de voltar para Portugal s\\u00F3 p contrariar.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:54:33 +0000", "from_user": "chico_zeh", "from_user_id": 208491626, "from_user_id_str": "208491626", "from_user_name": "Francisco Kopke", "geo": null, "id": 148823547479998460, "id_str": "148823547479998464", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1399748942/transferir__29__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1399748942/transferir__29__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Biblioteca Militares marcaram mais protestos para Dezembro http://t.co/BReJLs53", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:54:25 +0000", "from_user": "Jaeeic", "from_user_id": 440160841, "from_user_id_str": "440160841", "from_user_name": "Jae Dungy", "geo": null, "id": 148823512461750270, "id_str": "148823512461750274", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700456424/large_KMRYGRNLHSCMHJD_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700456424/large_KMRYGRNLHSCMHJD_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Lonely Planet Portugal: Lisbon & Around: Discover Portugal. Includes FREE planning and background information. L... http://t.co/hVk8fJMI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:54:22 +0000", "from_user": "gilesfelipe", "from_user_id": 404945523, "from_user_id_str": "404945523", "from_user_name": "gilesfelipe", "geo": null, "id": 148823502194085900, "id_str": "148823502194085888", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677948176/DSC05994_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677948176/DSC05994_normal.JPG", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "RT @MarcioBonJovi: iPhone 4S 16GB \\u2013 desbloqueado \\u2013 Sem contrato\\nEstados Unidos\\u2013R$1.290\\nInglaterra\\u2013R$1.426\\nPortugal\\u2013R$1.510\\nAustr\\u00E1lia\\u2013R$1.470\\nSingapura\\u2013R$1.341", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:54:07 +0000", "from_user": "jordanjax", "from_user_id": 250957352, "from_user_id_str": "250957352", "from_user_name": "Jordan Jakymyshyn", "geo": null, "id": 148823437543092220, "id_str": "148823437543092224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1508010700/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1508010700/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:54:02 +0000", "from_user": "toddynhopegada", "from_user_id": 282761170, "from_user_id_str": "282761170", "from_user_name": "jean carlos", "geo": null, "id": 148823418274459650, "id_str": "148823418274459649", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1560931037/tod_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1560931037/tod_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "feliz demais show marcado dia 2 de janeiro portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:53:59 +0000", "from_user": "pedrolamas", "from_user_id": 12870392, "from_user_id_str": "12870392", "from_user_name": "Pedro Lamas", "geo": null, "id": 148823405951586300, "id_str": "148823405951586304", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1524905686/93310b6e-ca24-4863-8f36-0351e3b4e627_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1524905686/93310b6e-ca24-4863-8f36-0351e3b4e627_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "+1 RT @hugoduraes: @majornelson No! I need apps for my xbox live portugal account! At least youtube!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:53:57 +0000", "from_user": "Mtv_Mundial", "from_user_id": 398307681, "from_user_id_str": "398307681", "from_user_name": "MtvMundial", "geo": null, "id": 148823397953044480, "id_str": "148823397953044480", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1606661071/2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1606661071/2_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Rihanna Victima de Comentarios Racistas En Portugal\\n\\nRihanna sufri\\u00F3 un por de m\\u00E1s inc\\u00F3modo incidente durante su... http://t.co/TEpNIRKU", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:53:53 +0000", "from_user": "NJStocks", "from_user_id": 85607434, "from_user_id_str": "85607434", "from_user_name": "Nicholas Stocks", "geo": null, "id": 148823378235637760, "id_str": "148823378235637760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:53:46 +0000", "from_user": "marisolgarca", "from_user_id": 164964274, "from_user_id_str": "164964274", "from_user_name": "marisol garca", "geo": null, "id": 148823352079941630, "id_str": "148823352079941632", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1066730670/kiooh_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1066730670/kiooh_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @Milenio: FMI aprueba entrega de \\u20AC2 mil 900 millones para Portugal http://t.co/yR5rfUc1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:53:24 +0000", "from_user": "rwstn", "from_user_id": 315959348, "from_user_id_str": "315959348", "from_user_name": "Robin Weston", "geo": null, "id": 148823259578773500, "id_str": "148823259578773505", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1664752120/robin_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664752120/robin_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:53:09 +0000", "from_user": "MsRuthDelgado", "from_user_id": 133048798, "from_user_id_str": "133048798", "from_user_name": "Ruth D\\u2665", "geo": null, "id": 148823197599539200, "id_str": "148823197599539200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1680698875/halloween1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1680698875/halloween1_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @vladtv: Rihanna Goes on Twitter Rant After Racial Abuse in Portugal (Blog) (@Rihanna) http://t.co/sRfJp2C4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:53:00 +0000", "from_user": "BAKERYGANG", "from_user_id": 225997316, "from_user_id_str": "225997316", "from_user_name": "DIGITAL PROMOTION", "geo": null, "id": 148823159594958850, "id_str": "148823159594958848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1679041621/389909_2260927008652_1412732067_31960937_1849825482_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679041621/389909_2260927008652_1412732067_31960937_1849825482_n_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#New Rihanna Goes on Twitter Rant After Racial Abuse in Portugal (Blog) (@Rihanna) http://t.co/DDOap3yH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:53:00 +0000", "from_user": "ViralxPromo", "from_user_id": 281761572, "from_user_id_str": "281761572", "from_user_name": "Viral Vinny Vlad ", "geo": null, "id": 148823157745258500, "id_str": "148823157745258497", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1649879642/vladtvtwittericon-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649879642/vladtvtwittericon-1_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#Vladtv Rihanna Goes on Twitter Rant After Racial Abuse in Portugal (Blog) (@Rihanna) http://t.co/7RGAWgmm #NK1promo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:53:00 +0000", "from_user": "HipHopandMula", "from_user_id": 195875422, "from_user_id_str": "195875422", "from_user_name": "Hip-Hop And Money", "geo": null, "id": 148823156440825860, "id_str": "148823156440825856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1605109618/Cool-Art-Money-Origami-Paper-Folding-Funny-Head-Hat-05_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1605109618/Cool-Art-Money-Origami-Paper-Folding-Funny-Head-Hat-05_copy_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Rihanna Goes on Twitter Rant After Racial Abuse in Portugal (Blog) (@Rihanna): Rihanna lashed out on Twitter aft... http://t.co/7DRPejEe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:48 +0000", "from_user": "BrittanyEvil", "from_user_id": 261386567, "from_user_id_str": "261386567", "from_user_name": "Brittany S. Pierce \\u221E", "geo": null, "id": 148823108499943420, "id_str": "148823108499943424", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688126064/TES_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688126064/TES_normal.gif", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "RT @KurtMalvado: @BrittanyEvil E ano q vem vamos denovo so q em Portugal ~ Danca ~", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:46 +0000", "from_user": "gabriel_now", "from_user_id": 128724481, "from_user_id_str": "128724481", "from_user_name": "Gabriel", "geo": null, "id": 148823100446879740, "id_str": "148823100446879745", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1679256282/casa-de-cera-2005-11_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679256282/casa-de-cera-2005-11_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @BillboardChart_: RIHANNA \\u00E9 v\\u00EDtima de racismo em hotel de Portugal: http://t.co/qDv67Xnn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:46 +0000", "from_user": "lluzz", "from_user_id": 27940569, "from_user_id_str": "27940569", "from_user_name": "lluz ", "geo": null, "id": 148823097515053060, "id_str": "148823097515053056", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1690076591/DSCF8713_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690076591/DSCF8713_2_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @LifeBoxset: Escucha un cover de Portugal. The Man a Gnarls Barkley http://t.co/qYMNEKP9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:45 +0000", "from_user": "JacekWierzbicki", "from_user_id": 270492072, "from_user_id_str": "270492072", "from_user_name": "Black Centaur", "geo": null, "id": 148823095975739400, "id_str": "148823095975739392", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1647014814/centaur_logo_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1647014814/centaur_logo_1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Tradeweb: Portugal 10Y bond mid-yield: 12.54; Spread v. 10Y German bund 1064.9; down 1.3 bps from prev close #EUGV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:26 +0000", "from_user": "rvoroque", "from_user_id": 418030409, "from_user_id_str": "418030409", "from_user_name": "Rog\\u00E9rio Roque", "geo": null, "id": 148823016904736770, "id_str": "148823016904736768", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1666198052/Vista7_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1666198052/Vista7_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @ChicodeOeiras: RT @margvs: RT @especulativa: A Irlanda e a Su\\u00E9cia querem um \"tratado \\u00E0 medida\"; v\\u00E3o negociar, pois. E Portugal, vai assinar de cruz?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:23 +0000", "from_user": "rogeriom1", "from_user_id": 344606244, "from_user_id_str": "344606244", "from_user_name": "rogerio mota", "geo": null, "id": 148823001209638900, "id_str": "148823001209638914", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698406093/Lighthouse_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698406093/Lighthouse_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "\"@Publico: Jazz volta \\u00E0 Pra\\u00E7a da Alegria com reabertura do Hot Clube de Portugal http://t.co/znecfYR0\". Yesssssssssssssssssssssssssssssssss!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:16 +0000", "from_user": "ViitaBix", "from_user_id": 115228011, "from_user_id_str": "115228011", "from_user_name": "Vitaa", "geo": null, "id": 148822973992800260, "id_str": "148822973992800256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1625459878/DSC_0068_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1625459878/DSC_0068_normal.JPG", "source": "<a href="http://twitter.com/devices" rel="nofollow">txt</a>", "text": "So who wants to go portugal with moi?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 17:52:09 +0000", "from_user": "Tradeweb", "from_user_id": 140896647, "from_user_id_str": "140896647", "from_user_name": "Tradeweb", "geo": null, "id": 148822945467346940, "id_str": "148822945467346944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/878885581/Picture_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/878885581/Picture_2_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Portugal 10Y bond mid-yield: 12.54; Spread v. 10Y German bund 1064.9; down 1.3 bps from prev close #EUGV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:09 +0000", "from_user": "jadomingos", "from_user_id": 15917347, "from_user_id_str": "15917347", "from_user_name": "J. A. Domingos", "geo": null, "id": 148822942002843650, "id_str": "148822942002843648", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1599241596/ToniGolfinhos_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1599241596/ToniGolfinhos_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@rockaline Daqui de casa \\u00E9 relativamente perto, como estou na parte de cima da Portugal (perto do Delboni) da pra caminhar at\\u00E9 l\\u00E1. ;-)", "to_user": "rockaline", "to_user_id": 43105365, "to_user_id_str": "43105365", "to_user_name": "Aline Fran\\u00E7a ", "in_reply_to_status_id": 148821529680027650, "in_reply_to_status_id_str": "148821529680027648"}, +{"created_at": "Mon, 19 Dec 2011 17:52:08 +0000", "from_user": "DTNSingapore", "from_user_id": 205298307, "from_user_id_str": "205298307", "from_user_name": "DTN Singapore", "geo": null, "id": 148822941189152770, "id_str": "148822941189152770", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1651622761/DTN_SINGAPORE_NOV_22_2011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651622761/DTN_SINGAPORE_NOV_22_2011_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "DTN Singapore: IMF to release 2.9b euros to Portugal: WASHINGTON: The International Monetary Fund said on Monday... http://t.co/obOHdcky", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:08 +0000", "from_user": "worldtradenews", "from_user_id": 115260587, "from_user_id_str": "115260587", "from_user_name": "WorldTradeNews", "geo": null, "id": 148822940258013200, "id_str": "148822940258013184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/702808062/aaaimages_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/702808062/aaaimages_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF to release 2.9b euros to Portugal: WASHINGTON: The International Monetary Fund said on Monday it would relea... http://t.co/S9Fhwzj8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:04 +0000", "from_user": "Milenio", "from_user_id": 24969337, "from_user_id_str": "24969337", "from_user_name": "Milenio.com", "geo": null, "id": 148822921551425540, "id_str": "148822921551425536", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1598220475/MILENIOOK_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1598220475/MILENIOOK_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "FMI aprueba entrega de \\u20AC2 mil 900 millones para Portugal http://t.co/yR5rfUc1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:03 +0000", "from_user": "PortugalTopSong", "from_user_id": 347078653, "from_user_id_str": "347078653", "from_user_name": "PortugalTopSong", "geo": null, "id": 148822918137266180, "id_str": "148822918137266176", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1527822406/icon080_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1527822406/icon080_normal.png", "source": "<a href="http://wikyou.org/" rel="nofollow">wikyou5</a>", "text": "Hoje hit YouTube v\\u00EDdeo em Portugal.(Today's hit YouTube Video in Portugal.)\\u300CLady GaGa & Beyonc\\u00E9\\u300D's \\u300ETelephone\\u300F http://t.co/jKKwSq9l", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:52:00 +0000", "from_user": "BethWms", "from_user_id": 29813224, "from_user_id_str": "29813224", "from_user_name": "Bethany Wms(B.TRU)", "geo": null, "id": 148822906091216900, "id_str": "148822906091216896", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1483288156/n789009637_723801_9800_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1483288156/n789009637_723801_9800_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @djvlad: Rihanna Goes on Twitter Rant After Racial Abuse in Portugal (Blog) (@Rihanna) http://t.co/SXcFKN79", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:58 +0000", "from_user": "DanielFurrUK", "from_user_id": 139470390, "from_user_id_str": "139470390", "from_user_name": "Daniel Furr", "geo": null, "id": 148822898990252030, "id_str": "148822898990252032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1642060961/269802_10150702532950221_548235220_19556140_2897845_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642060961/269802_10150702532950221_548235220_19556140_2897845_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@Coopster_1991 Indeed. British got has already made plans to evacuate ex pats - if Portugal and Spain sink", "to_user": "Coopster_1991", "to_user_id": 119042055, "to_user_id_str": "119042055", "to_user_name": "Anthony Cooper", "in_reply_to_status_id": 148821727131086850, "in_reply_to_status_id_str": "148821727131086848"}, +{"created_at": "Mon, 19 Dec 2011 17:51:49 +0000", "from_user": "zerovski", "from_user_id": 17485322, "from_user_id_str": "17485322", "from_user_name": "Miguel \\u00C2ngelo", "geo": null, "id": 148822859945480200, "id_str": "148822859945480193", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/182701302/zEro_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/182701302/zEro_normal.jpg", "source": "<a href="http://tapbots.com/tweetbot" rel="nofollow">Tweetbot for iPhone</a>", "text": "RT @iPhil: RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/Cf577HZ0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:46 +0000", "from_user": "WaguinhoMaia", "from_user_id": 72641774, "from_user_id_str": "72641774", "from_user_name": "Waguinho Maia", "geo": null, "id": 148822849182900220, "id_str": "148822849182900224", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1385773289/0000_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1385773289/0000_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@phillcostaa A sele\\u00E7\\u00E3o da Argentina \\u00E9 100x superior a de Portugal, CR7 joga s\\u00F3, j\\u00E1 Messi tem v\\u00E1rios craques ao seu lado.", "to_user": "phillcostaa", "to_user_id": 237800459, "to_user_id_str": "237800459", "to_user_name": "Phillipy Costa", "in_reply_to_status_id": 148821199336648700, "in_reply_to_status_id_str": "148821199336648704"}, +{"created_at": "Mon, 19 Dec 2011 17:51:28 +0000", "from_user": "bipolarealone", "from_user_id": 90733772, "from_user_id_str": "90733772", "from_user_name": ".", "geo": null, "id": 148822771307266050, "id_str": "148822771307266048", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698138563/__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698138563/__normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Rihanna revela que sofreu racismo em hotel de Portugal http://t.co/JesoRudX VIA : @UOLCelebridades #UOL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:23 +0000", "from_user": "BieberFever242", "from_user_id": 100616131, "from_user_id_str": "100616131", "from_user_name": "Jo", "geo": null, "id": 148822749295550460, "id_str": "148822749295550464", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1184080637/FotoFlexer_Photo2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1184080637/FotoFlexer_Photo2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rihanna: PORTUGAL tonight was LEGENDARY!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:20 +0000", "from_user": "MauriceFonson", "from_user_id": 69192066, "from_user_id_str": "69192066", "from_user_name": "Maurice", "geo": null, "id": 148822738763657200, "id_str": "148822738763657217", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1690133274/Photo_on_2011-11-06_at_12.59_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1690133274/Photo_on_2011-11-06_at_12.59_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Rihanna Racially Assaulted In Portugal http://t.co/6HyfWjzt via @thatgrapejuice", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:16 +0000", "from_user": "NinaSandeman", "from_user_id": 179970797, "from_user_id_str": "179970797", "from_user_name": "Carolina Sandeman", "geo": null, "id": 148822719834767360, "id_str": "148822719834767360", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1295243586/IMG000023_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1295243586/IMG000023_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@iBieberBreezy lol, I understand how u feel. I'm from Portugal, what about u?", "to_user": "iBieberBreezy", "to_user_id": 113985601, "to_user_id_str": "113985601", "to_user_name": "Annie & le co-owners", "in_reply_to_status_id": 148822277339885570, "in_reply_to_status_id_str": "148822277339885570"}, +{"created_at": "Mon, 19 Dec 2011 17:51:10 +0000", "from_user": "dreamerbeatle", "from_user_id": 126394457, "from_user_id_str": "126394457", "from_user_name": "Dreamer Beatle", "geo": null, "id": 148822698552868860, "id_str": "148822698552868866", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/774920903/JohnLennon107_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/774920903/JohnLennon107_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Escucha un cover de Portugal. The Man a Gnarls Barkley http://t.co/4eu8p8g8 v\\u00EDa @lifeboxset", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:10 +0000", "from_user": "ToyaZolanski", "from_user_id": 37254374, "from_user_id_str": "37254374", "from_user_name": "Fantaradical", "geo": null, "id": 148822694941573120, "id_str": "148822694941573120", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1668519885/Picture0075_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1668519885/Picture0075_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @thatgrapejuice: Rihanna Racially Assaulted In Portugal http://t.co/iwAe32Y3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:08 +0000", "from_user": "MinistryOfSteak", "from_user_id": 167396467, "from_user_id_str": "167396467", "from_user_name": "MinistryOf Steak", "geo": null, "id": 148822689476395000, "id_str": "148822689476395010", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1235564520/wagyu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1235564520/wagyu_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF to release 2.9b euros to Portugal: WASHINGTON: The International Monetary Fund said on Monday it would ... http://t.co/VekKUYeI #CNA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:08 +0000", "from_user": "allmydemo", "from_user_id": 231001548, "from_user_id_str": "231001548", "from_user_name": "demo", "geo": null, "id": 148822687706390530, "id_str": "148822687706390528", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF to release 2.9b euros to Portugal: WASHINGTON: The International Monetary Fund said on Monday it would relea... http://t.co/3xLWzOLM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:07 +0000", "from_user": "twitkz", "from_user_id": 39406205, "from_user_id_str": "39406205", "from_user_name": "Khine Zaw", "geo": null, "id": 148822682773884930, "id_str": "148822682773884928", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1224233912/me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1224233912/me_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF to release 2.9b euros to Portugal http://t.co/umUZJ5sY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:06 +0000", "from_user": "ToyubommNews", "from_user_id": 138389154, "from_user_id_str": "138389154", "from_user_name": "ToyubommNews", "geo": null, "id": 148822681544962050, "id_str": "148822681544962048", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1142044988/TOYUBOMM_NEWS_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1142044988/TOYUBOMM_NEWS_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF to release 2.9b euros to Portugal http://t.co/ihwZCcex", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:06 +0000", "from_user": "cnalatest", "from_user_id": 38400130, "from_user_id_str": "38400130", "from_user_name": "Channel NewsAsia", "geo": null, "id": 148822678873190400, "id_str": "148822678873190401", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/346940898/App_Home_Logo_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/346940898/App_Home_Logo_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF to release 2.9b euros to Portugal http://t.co/uD3vgciO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:04 +0000", "from_user": "SingaporeClub", "from_user_id": 43468679, "from_user_id_str": "43468679", "from_user_name": "Singapore Netizens", "geo": null, "id": 148822672829202430, "id_str": "148822672829202432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/239283745/singlion_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/239283745/singlion_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "CNA - IMF to release 2.9b euros to Portugal: WASHINGTON: The International Monetary Fund said on Monday it would... http://t.co/pBoIw2Yr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:04 +0000", "from_user": "porrahJackson", "from_user_id": 54889447, "from_user_id_str": "54889447", "from_user_name": "MJFan--- SOU DESSES", "geo": null, "id": 148822671566712830, "id_str": "148822671566712833", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1596875686/mjj_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596875686/mjj_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "ESSA TAL DE \"AI SE EU TE PEGO\" \\u00C9 1 LUGAR NA ESPANHA,PORTUGAL, A M\\u00DASICA MAIS BAIXADA NA IT\\u00C1LIA,E J\\u00C1 EST\\u00C1 ENTRANDO NOS EUA E REINO UNIDO.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:02 +0000", "from_user": "MandaFierce", "from_user_id": 32370524, "from_user_id_str": "32370524", "from_user_name": "Amanda Jellyman", "geo": null, "id": 148822662213406720, "id_str": "148822662213406721", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702299901/DSC00401_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702299901/DSC00401_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "wow. f*ckery! RT @thatgrapejuice: Rihanna Racially Assaulted In Portugal http://t.co/ELzg0UGj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:01 +0000", "from_user": "erikwill", "from_user_id": 27313635, "from_user_id_str": "27313635", "from_user_name": "Erik Willey", "geo": null, "id": 148822656832114700, "id_str": "148822656832114688", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1531982568/274981_1632875724_517925_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1531982568/274981_1632875724_517925_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:00 +0000", "from_user": "itwitting", "from_user_id": 26276346, "from_user_id_str": "26276346", "from_user_name": "ionline", "geo": null, "id": 148822655632539650, "id_str": "148822655632539649", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/199994060/i_icon150px_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/199994060/i_icon150px_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Alberto Jo\\u00E3o Jardim reconhece \"dif\\u00EDcil di\\u00E1logo com o Estado Central\" http://t.co/eyypUzNF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:51:00 +0000", "from_user": "anaflparamore", "from_user_id": 417181840, "from_user_id_str": "417181840", "from_user_name": "Ana", "geo": null, "id": 148822654726570000, "id_str": "148822654726569984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1652203313/73789_167795859913817_100000502119120_524922_811379_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652203313/73789_167795859913817_100000502119120_524922_811379_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@rihanna your concert was amazing. Come to Portugal in 2012!", "to_user": "rihanna", "to_user_id": 79293791, "to_user_id_str": "79293791", "to_user_name": "Rihanna", "in_reply_to_status_id": 148182359810908160, "in_reply_to_status_id_str": "148182359810908160"}, +{"created_at": "Mon, 19 Dec 2011 17:50:40 +0000", "from_user": "rihanna_navy_br", "from_user_id": 359384619, "from_user_id_str": "359384619", "from_user_name": "Rihanna Navy Brasil", "geo": null, "id": 148822571297669120, "id_str": "148822571297669120", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1683863366/xmas2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683863366/xmas2_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Que raiva desse imbecil que descriminou a RiRi em Portugal,isso n\\u00E3o pode acontecer KD O FBI??? KD MINHA PEGGY SUE???", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:38 +0000", "from_user": "PlanetapopBr", "from_user_id": 422631186, "from_user_id_str": "422631186", "from_user_name": "Planeta Pop", "geo": null, "id": 148822563395616770, "id_str": "148822563395616769", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1685254248/planeta_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685254248/planeta_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Not\\u00EDcia: Rihanna revela que foi v\\u00EDtima de racismo em Portugal \\nhttp://t.co/mXQZclWF", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:36 +0000", "from_user": "AsLuanaticas_PT", "from_user_id": 246811989, "from_user_id_str": "246811989", "from_user_name": "As Luanaticas PT", "geo": null, "id": 148822554658873340, "id_str": "148822554658873345", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1589478022/366105796_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1589478022/366105796_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Portugal \\u00E9 um gelo queroooo calor", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:36 +0000", "from_user": "luzawantsapony", "from_user_id": 88552340, "from_user_id_str": "88552340", "from_user_name": "Luza", "geo": null, "id": 148822553639649280, "id_str": "148822553639649280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1518191596/blll_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1518191596/blll_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @LifeBoxset: Escucha un cover de Portugal. The Man a Gnarls Barkley http://t.co/qYMNEKP9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:32 +0000", "from_user": "MolinaDiazJean", "from_user_id": 133873394, "from_user_id_str": "133873394", "from_user_name": "\\u2605JEAN CARLOS MOLINA\\u2605", "geo": null, "id": 148822536094879740, "id_str": "148822536094879744", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1665106368/IMG00447_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665106368/IMG00447_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "FMI aprueba 2.900 millones de euros para Portugal http://t.co/h6h2lHk0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:30 +0000", "from_user": "VortexValley", "from_user_id": 223514422, "from_user_id_str": "223514422", "from_user_name": "JD", "geo": null, "id": 148822526691258370, "id_str": "148822526691258368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1184025906/v_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1184025906/v_normal.png", "source": "<a href="http://vortexvalley.com" rel="nofollow">Vortex Valley</a>", "text": "New post: Portugal Re-Discovers Venture Capital http://t.co/TrsMARM4 #news #silicon_valley #Vc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:26 +0000", "from_user": "thatgrapejuice", "from_user_id": 23779565, "from_user_id_str": "23779565", "from_user_name": "Sam GrapeJuice", "geo": null, "id": 148822511310737400, "id_str": "148822511310737411", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1110609893/tgj_logo_newest_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1110609893/tgj_logo_newest_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Rihanna Racially Assaulted In Portugal http://t.co/iwAe32Y3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:25 +0000", "from_user": "Raquelvi1", "from_user_id": 390334280, "from_user_id_str": "390334280", "from_user_name": "Raquelvi", "geo": null, "id": 148822507112247300, "id_str": "148822507112247296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1586918865/DSCN6531_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586918865/DSCN6531_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rihanna: PORTUGAL tonight was LEGENDARY!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:20 +0000", "from_user": "Diamondbling97", "from_user_id": 113922577, "from_user_id_str": "113922577", "from_user_name": "Beatriz \\u20AA \\u00F8 lll .o\\u00B7", "geo": null, "id": 148822485184417800, "id_str": "148822485184417792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1528642009/Eu_no_Campo_Pequeno_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1528642009/Eu_no_Campo_Pequeno_normal.jpg", "source": "<a href="http://twitcam.com" rel="nofollow">Twitcam.com</a>", "text": "not only where you live, in portugal too -.- (@marsismysaviour live on http://t.co/F4Opq4gU)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:15 +0000", "from_user": "ForSaleiAlgarve", "from_user_id": 386105591, "from_user_id_str": "386105591", "from_user_name": "For Sale in Algarve", "geo": null, "id": 148822465005629440, "id_str": "148822465005629440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1575941712/For_Sale_In_Algarve_Twitter_Logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575941712/For_Sale_In_Algarve_Twitter_Logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Beautiful 3 BR, frontline, furnished link villa w pool & gardens ~\\nFor-Sale-in-Algarve ~ #Algarve #Portugal - http://t.co/MLTe2FlC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:14 +0000", "from_user": "ptjornal", "from_user_id": 308993784, "from_user_id_str": "308993784", "from_user_name": "PT Jornal", "geo": null, "id": 148822462036066300, "id_str": "148822462036066304", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1377340800/ptj_tw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1377340800/ptj_tw_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Michel Tel\\u00F3, cantor de \\u2018Ai se eu te pego\\u2019, vem a Portugal em fevereiro http://t.co/POicVkkk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:14 +0000", "from_user": "EekOct31stGeek", "from_user_id": 24475229, "from_user_id_str": "24475229", "from_user_name": "D_was_nefarious", "geo": null, "id": 148822460689694720, "id_str": "148822460689694723", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694820227/316547_889412238842_26106637_40267590_1562515275_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694820227/316547_889412238842_26106637_40267590_1562515275_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Gil coordinates the carnival float every year for my parents town in Portugal, and is amazing! Everything from makeup, hair, costumes", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:14 +0000", "from_user": "ChicodeOeiras", "from_user_id": 23011527, "from_user_id_str": "23011527", "from_user_name": "Francisco Silva ", "geo": null, "id": 148822460568051700, "id_str": "148822460568051713", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1633951182/36909_139165652767566_100000223971481_425712_5890440_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1633951182/36909_139165652767566_100000223971481_425712_5890440_n_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @margvs: RT @especulativa: A Irlanda e a Su\\u00E9cia querem um \"tratado \\u00E0 medida\"; v\\u00E3o negociar, pois. E Portugal, vai assinar de cruz?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:14 +0000", "from_user": "ptjornal", "from_user_id": 308993784, "from_user_id_str": "308993784", "from_user_name": "PT Jornal", "geo": null, "id": 148822460513525760, "id_str": "148822460513525760", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1377340800/ptj_tw_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1377340800/ptj_tw_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Primeira loja online para g\\u00E9meos criada em Portugal http://t.co/sfsyjg2M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:11 +0000", "from_user": "margvs", "from_user_id": 126118232, "from_user_id_str": "126118232", "from_user_name": "Mariana VdS", "geo": null, "id": 148822450988269570, "id_str": "148822450988269568", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1400915780/2007-04-00__Roma-Napoles__140_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1400915780/2007-04-00__Roma-Napoles__140_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "RT @especulativa: A Irlanda e a Su\\u00E9cia querem um \"tratado \\u00E0 medida\"; v\\u00E3o negociar, pois. E Portugal, vai assinar de cruz? | @scoopit http://t.co/sJypDI88", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:11 +0000", "from_user": "cultura_dfacto", "from_user_id": 130584777, "from_user_id_str": "130584777", "from_user_name": "dfacto", "geo": null, "id": 148822447804792830, "id_str": "148822447804792833", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1564548026/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1564548026/twitter_normal.jpg", "source": "<a href="http://www.visibli.com" rel="nofollow">Visibli</a>", "text": "Escucha un cover de Portugal. The Man a Gnarls Barkley http://t.co/P0AJMMqI via: @LifeBoxset", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:10 +0000", "from_user": "MeMePoet", "from_user_id": 206874370, "from_user_id_str": "206874370", "from_user_name": "Mimi Mzari ", "geo": null, "id": 148822444025712640, "id_str": "148822444025712640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1679725684/331078215_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679725684/331078215_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "Nahhh zumba is too live. Reminds me of portugal.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:09 +0000", "from_user": "naughtyT", "from_user_id": 23559953, "from_user_id_str": "23559953", "from_user_name": "ton skeel", "geo": null, "id": 148822440179535870, "id_str": "148822440179535874", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1661614414/800ed_MG_1743_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1661614414/800ed_MG_1743_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@pawelekg so much good coffee in Portugal. :)", "to_user": "pawelekg", "to_user_id": 133418187, "to_user_id_str": "133418187", "to_user_name": "Pawel Gabrysiewicz", "in_reply_to_status_id": 148822311171145730, "in_reply_to_status_id_str": "148822311171145729"}, +{"created_at": "Mon, 19 Dec 2011 17:50:06 +0000", "from_user": "margvs", "from_user_id": 126118232, "from_user_id_str": "126118232", "from_user_name": "Mariana VdS", "geo": null, "id": 148822426799702000, "id_str": "148822426799702017", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1400915780/2007-04-00__Roma-Napoles__140_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1400915780/2007-04-00__Roma-Napoles__140_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @especulativa: A Irlanda e a Su\\u00E9cia querem um \"tratado \\u00E0 medida\"; v\\u00E3o negociar, pois. E Portugal, vai assinar de cruz?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:06 +0000", "from_user": "SocMeDotMe", "from_user_id": 371995419, "from_user_id_str": "371995419", "from_user_name": "Karl Lingenfelder", "geo": null, "id": 148822426078289920, "id_str": "148822426078289920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1546120426/SocMe_Twitter_Icon_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546120426/SocMe_Twitter_Icon_2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Beautiful 3 BR, frontline, furnished link villa w pool & gardens ~\\nFor-Sale-in-Algarve ~ #Algarve #Portugal - http://t.co/pFaWyEjb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:03 +0000", "from_user": "vanelleza", "from_user_id": 414907590, "from_user_id_str": "414907590", "from_user_name": "Vanessa Romero", "geo": null, "id": 148822415101804540, "id_str": "148822415101804545", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1644017368/Vanessa_Romero_003_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1644017368/Vanessa_Romero_003_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Escucha un cover de Portugal. The Man a Gnarls Barkley http://t.co/rALIEgjC via: @LifeBoxset", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:03 +0000", "from_user": "viceversa_radio", "from_user_id": 392434930, "from_user_id_str": "392434930", "from_user_name": "viceversa_radio", "geo": null, "id": 148822413830926340, "id_str": "148822413830926336", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1591989617/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591989617/twitter_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Escucha un cover de Portugal. The Man a Gnarls Barkley: \\nLos rockeros originarios de Alaska Portugal. The Man ap... http://t.co/8Mc8SLhW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:02 +0000", "from_user": "tuideagrafica", "from_user_id": 392195414, "from_user_id_str": "392195414", "from_user_name": "TUIDEAGRAFICA.COM", "geo": null, "id": 148822411775721470, "id_str": "148822411775721472", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1591363618/contactologo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591363618/contactologo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprueba 2.900 millones de euros para Portugal http://t.co/Hzyn3Yym #Titulares", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:01 +0000", "from_user": "InfoNews24H", "from_user_id": 398803610, "from_user_id_str": "398803610", "from_user_name": "Noticias24H", "geo": null, "id": 148822409049415680, "id_str": "148822409049415680", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1607780959/mundo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607780959/mundo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprueba 2.900 millones de euros para Portugal http://t.co/8q8WBRvN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:50:00 +0000", "from_user": "MOVIMIENTO98", "from_user_id": 108182453, "from_user_id_str": "108182453", "from_user_name": "ULA", "geo": null, "id": 148822403194171400, "id_str": "148822403194171392", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/979196180/LOGO_M98_PARA_TWITTER_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/979196180/LOGO_M98_PARA_TWITTER_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#ULA FMI aprueba 2.900 millones de euros para Portugal: El Fondo Monetario Internacional (FMI... http://t.co/UfNvt8sC #FUERALOSVIOLENTOS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:58 +0000", "from_user": "marjuli", "from_user_id": 25573750, "from_user_id_str": "25573750", "from_user_name": "Marjuli Matheus", "geo": null, "id": 148822395917058050, "id_str": "148822395917058048", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1211277650/Marjuli-Matheus_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1211277650/Marjuli-Matheus_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprueba 2.900 millones de euros para Portugal: El Fondo Monetario Internacional (FMI) anunci\\u00F3 este lunes la ... http://t.co/LawZpimQ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:57 +0000", "from_user": "jjpark78_Trader", "from_user_id": 256358353, "from_user_id_str": "256358353", "from_user_name": "Jaejin Park", "geo": null, "id": 148822389734653950, "id_str": "148822389734653955", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1252019473/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1252019473/image_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "IMF approves EUR 2.9 disburement to Portugal: Total disbursements to Portugal of EUR 13.6 bln http://t.co/z5G5AnB7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:57 +0000", "from_user": "Info_Ve", "from_user_id": 225647847, "from_user_id_str": "225647847", "from_user_name": "Info Venezuela", "geo": null, "id": 148822388996448260, "id_str": "148822388996448258", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664896061/e96c15f3-8715-4a0f-bb29-eb85ba48bdc2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664896061/e96c15f3-8715-4a0f-bb29-eb85ba48bdc2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprueba 2.900 millones de euros para Portugal http://t.co/zBzQXz9G", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:47 +0000", "from_user": "apombalivre", "from_user_id": 14284888, "from_user_id_str": "14284888", "from_user_name": "Maria Henriques ", "geo": null, "id": 148822349410603000, "id_str": "148822349410603008", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1385521923/6167d29d-8638-41c1-8484-553528e3fc01_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1385521923/6167d29d-8638-41c1-8484-553528e3fc01_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "FMI : terceira tranche de 2,9 mil milh\\u00F5es de empr\\u00E9stimo a Portugal - Isto est\\u00E1 ficar t\\u00E3o bom para os amigos do passos coelho. #apombalivre", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:38 +0000", "from_user": "Magna_rock8", "from_user_id": 323311646, "from_user_id_str": "323311646", "from_user_name": "Magna", "geo": null, "id": 148822309132705800, "id_str": "148822309132705792", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687153292/Mag_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687153292/Mag_normal.JPG", "source": "<a href="http://www.snaptu.com" rel="nofollow">Snaptu</a>", "text": "Rihanna conta que foi v\\u00EDtima de racismo em Portugal http://t.co/WBvO5xcb", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:37 +0000", "from_user": "WeFoundLoveRiRi", "from_user_id": 177738439, "from_user_id_str": "177738439", "from_user_name": "Rayan Fenty Adkins", "geo": null, "id": 148822304355393540, "id_str": "148822304355393536", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677769970/rrrrrrrrrrrrihannnnnna_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677769970/rrrrrrrrrrrrihannnnnna_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@Esther_Fenty \\u00E9 verdade, \\u00E9 capaz da Rihanna nem querer volta em Portugal, e os f\\u00E3s \\u00E9 quem sofre!", "to_user": "Esther_Fenty", "to_user_id": 278588512, "to_user_id_str": "278588512", "to_user_name": "I Love You Rihanna ", "in_reply_to_status_id": 148820175821619200, "in_reply_to_status_id_str": "148820175821619200"}, +{"created_at": "Mon, 19 Dec 2011 17:49:30 +0000", "from_user": "pd_twitt", "from_user_id": 121263890, "from_user_id_str": "121263890", "from_user_name": "Portugal Digital", "geo": null, "id": 148822279072120830, "id_str": "148822279072120832", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/741089630/portugaldigital_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/741089630/portugaldigital_twitter_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Portugal Digital - Vodacom vai modernizar rede em Mo\\u00E7ambique http://t.co/G1p7MnrK via @pd_twitt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:30 +0000", "from_user": "rube60", "from_user_id": 364989019, "from_user_id_str": "364989019", "from_user_name": "Rube60", "geo": null, "id": 148822278241660930, "id_str": "148822278241660929", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1521529775/sou_eu_bonitao_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1521529775/sou_eu_bonitao_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Rihanna diz que sofreu racismo em Portugal - Yahoo! OMG! Brasil http://t.co/IHiJOfjz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:22 +0000", "from_user": "conviteavalsa", "from_user_id": 71517035, "from_user_id_str": "71517035", "from_user_name": "Convite \\u00E0 Valsa", "geo": null, "id": 148822244515250180, "id_str": "148822244515250176", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1482726304/tw_8880682_1312723396_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1482726304/tw_8880682_1312723396_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @fcancio: \\u00E9 p\\u00E1s compras d natal e p\\u00F3 champ\\u00E3 RT @DiogoCMoreira: FMI aprova 3a tranche d 2,9 mil milh\\u00F5es do empr\\u00E9stimo a Portugal http://t.co/n7AILFWJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:18 +0000", "from_user": "andreiasnts2", "from_user_id": 404455371, "from_user_id_str": "404455371", "from_user_name": "Imperfeita ? sou sim", "geo": null, "id": 148822228576899070, "id_str": "148822228576899072", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702621248/DSC02564_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702621248/DSC02564_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Dieralisson: Rihanna revelou aqui no twitter que SOFREU RACISMO em hotel de Portugal. http://t.co/iGlrKNmL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:18 +0000", "from_user": "anaflparamore", "from_user_id": 417181840, "from_user_id_str": "417181840", "from_user_name": "Ana", "geo": null, "id": 148822228560134140, "id_str": "148822228560134145", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1652203313/73789_167795859913817_100000502119120_524922_811379_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652203313/73789_167795859913817_100000502119120_524922_811379_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rihanna: PORTUGAL tonight was LEGENDARY!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:07 +0000", "from_user": "Jo_nael", "from_user_id": 332679004, "from_user_id_str": "332679004", "from_user_name": "Jonathan Heryanto", "geo": null, "id": 148822181969797120, "id_str": "148822181969797120", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700200299/It_s_20mine_20_C2_B0__CB_86_E3_83_AE_CB_86__E3_80_82_618__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700200299/It_s_20mine_20_C2_B0__CB_86_E3_83_AE_CB_86__E3_80_82_618__normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@RadioShow_tvOne om,, tanyain donk sam coach RD,, si Andik firmansyah,, lebih cocok main d liga indonesia ap d liga portugal?? thx om", "to_user": "RadioShow_tvOne", "to_user_id": 426476514, "to_user_id_str": "426476514", "to_user_name": "RadioShow_tvOne", "in_reply_to_status_id": 148813043625771000, "in_reply_to_status_id_str": "148813043625771008"}, +{"created_at": "Mon, 19 Dec 2011 17:49:07 +0000", "from_user": "SonicUtd", "from_user_id": 234506379, "from_user_id_str": "234506379", "from_user_name": "Shelley moules", "geo": null, "id": 148822179675508740, "id_str": "148822179675508738", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1444386478/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1444386478/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:05 +0000", "from_user": "portugalforum", "from_user_id": 41989700, "from_user_id_str": "41989700", "from_user_name": "portugalforum", "geo": null, "id": 148822170351566850, "id_str": "148822170351566849", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/487842239/pfo_icon_gr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/487842239/pfo_icon_gr_normal.jpg", "source": "<a href="http://www.portugalforum.org" rel="nofollow">portugalforum.org</a>", "text": "Das wahre Leben: aufger\\u00E4umt = schlank: Die Aufr\\u00E4umaktion schreitet sehr gut voran. Es sind nur noch ein paar Kartons http://t.co/r0InVc1b", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:49:00 +0000", "from_user": "fcancio", "from_user_id": 17624543, "from_user_id_str": "17624543", "from_user_name": "fcancio", "geo": null, "id": 148822153075232770, "id_str": "148822153075232768", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/74883973/obamifernanda_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/74883973/obamifernanda_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\\u00E9 p\\u00E1s compras d natal e p\\u00F3 champ\\u00E3 RT @DiogoCMoreira: FMI aprova 3a tranche d 2,9 mil milh\\u00F5es do empr\\u00E9stimo a Portugal http://t.co/n7AILFWJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:55 +0000", "from_user": "luizmteles", "from_user_id": 259505298, "from_user_id_str": "259505298", "from_user_name": "Luiz Ot\\u00E1vio", "geo": null, "id": 148822129515823100, "id_str": "148822129515823104", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1675243301/Euuu_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675243301/Euuu_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Portugu\\u00EAs de Portugal. Hahaha.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:52 +0000", "from_user": "RTPprovedor", "from_user_id": 320860459, "from_user_id_str": "320860459", "from_user_name": "RTPprovedor", "geo": null, "id": 148822116060504060, "id_str": "148822116060504064", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1410870234/Provedor2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1410870234/Provedor2_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Pode ver aqui o \\u00FAltimo VdC sobre a fraca representatividade da m\\u00FAsica portuguesa no programa \\u201CA Voz de Portugal\\u201D http://t.co/UpLytoWt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:39 +0000", "from_user": "pd_twitt", "from_user_id": 121263890, "from_user_id_str": "121263890", "from_user_name": "Portugal Digital", "geo": null, "id": 148822062121750530, "id_str": "148822062121750528", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/741089630/portugaldigital_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/741089630/portugaldigital_twitter_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Portugal Digital - Enotel avan\\u00E7a com expans\\u00E3o do \"resort\" de Porto de Galinhas http://t.co/yQEBWHt3 via @pd_twitt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:28 +0000", "from_user": "economiaportuga", "from_user_id": 91623867, "from_user_id_str": "91623867", "from_user_name": "Economia Portugal", "geo": null, "id": 148822016777125900, "id_str": "148822016777125889", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/537336636/economia_portugal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/537336636/economia_portugal_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprovou mais 2,9 mil milh\\u00F5es para Portugal: O Fundo Monet\\u00E1rio Internacional (FMI) aprovou hoje a terceira tr... http://t.co/46vYr5y1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:27 +0000", "from_user": "Dieralisson", "from_user_id": 23852689, "from_user_id_str": "23852689", "from_user_name": "Alisson F. de Melo", "geo": null, "id": 148822014344429570, "id_str": "148822014344429569", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1667126702/nova212_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1667126702/nova212_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Rihanna revelou aqui no twitter que SOFREU RACISMO em hotel de Portugal. http://t.co/iGlrKNmL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:18 +0000", "from_user": "claump25", "from_user_id": 94442272, "from_user_id_str": "94442272", "from_user_name": "Claudia Mtz. Pi\\u00F1eiro", "geo": null, "id": 148821977023516670, "id_str": "148821977023516672", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1687409038/SDC12785_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687409038/SDC12785_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @Politica_I24: El FMI aprueba la entrega de 2.900 millones de euros para Portugal http://t.co/0OSuFFsN #Informador24", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:18 +0000", "from_user": "especulativa", "from_user_id": 19564284, "from_user_id_str": "19564284", "from_user_name": "Porf\\u00EDrio Silva", "geo": null, "id": 148821974200762370, "id_str": "148821974200762368", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/405191870/foto-zinha_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/405191870/foto-zinha_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "A Irlanda e a Su\\u00E9cia querem um \"tratado \\u00E0 medida\"; v\\u00E3o negociar, pois. E Portugal, vai assinar de cruz? | @scoopit http://t.co/sJypDI88", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:16 +0000", "from_user": "_vicklimas2", "from_user_id": 164386024, "from_user_id_str": "164386024", "from_user_name": "vick do frist\\u00E9pyh KK", "geo": null, "id": 148821968408420350, "id_str": "148821968408420352", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1665009897/VIIH_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1665009897/VIIH_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "VandRei Guess Whos Back (Brusko EXCLUSIVE Remix) (By Maidiotec Portugal) , eu ainda pego musicalidade dessa :$ (yn KKKKKKKK", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:48:10 +0000", "from_user": "DiogoCMoreira", "from_user_id": 20627896, "from_user_id_str": "20627896", "from_user_name": "Diogo Moreira", "geo": null, "id": 148821941158023170, "id_str": "148821941158023168", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1175243760/Twitter_profile_picture_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1175243760/Twitter_profile_picture_normal.jpg", "source": "<a href="http://store.apple.com/pt" rel="nofollow">Aplica\\u00E7\\u00E3o TSF - iPhone </a>", "text": "FMI aprova terceira tranche de 2,9 mil milh\\u00F5es do empr\\u00E9stimo a Portugal http://t.co/5xw4rLQS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:56 +0000", "from_user": "helenadias_", "from_user_id": 167064424, "from_user_id_str": "167064424", "from_user_name": "Helena Dias", "geo": null, "id": 148821883243081730, "id_str": "148821883243081728", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1663171277/tmn2_001a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1663171277/tmn2_001a_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@davidbisbal Para quando un concerto en Portugal?", "to_user": "davidbisbal", "to_user_id": 57099808, "to_user_id_str": "57099808", "to_user_name": "David Bisbal", "in_reply_to_status_id": 148821596705009660, "in_reply_to_status_id_str": "148821596705009664"}, +{"created_at": "Mon, 19 Dec 2011 17:47:52 +0000", "from_user": "hugoduraes", "from_user_id": 19098080, "from_user_id_str": "19098080", "from_user_name": "Hugo Dur\\u00E3es", "geo": null, "id": 148821866579116030, "id_str": "148821866579116032", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1459097668/Avatar_003_th_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1459097668/Avatar_003_th_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@majornelson No! I need apps for my xbox live portugal account! At least youtube!", "to_user": "majornelson", "to_user_id": 15913, "to_user_id_str": "15913", "to_user_name": "Larry Hryb", "in_reply_to_status_id": 148821230869422080, "in_reply_to_status_id_str": "148821230869422081"}, +{"created_at": "Mon, 19 Dec 2011 17:47:44 +0000", "from_user": "rosarinaliriano", "from_user_id": 404652624, "from_user_id_str": "404652624", "from_user_name": "Rosarina Liriano", "geo": null, "id": 148821831510528000, "id_str": "148821831510528002", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1635910813/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635910813/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@AL_Lantigua Y a donde fue Portugal? Gan\\u00F3 la Copa Mundial? Oye, tampoco lo digo yo, lo dicen los expertos de ESPN, FoxSports, FIFA, etc..", "to_user": "AL_Lantigua", "to_user_id": 228377447, "to_user_id_str": "228377447", "to_user_name": "Angel l. lantigua", "in_reply_to_status_id": 148820790987603970, "in_reply_to_status_id_str": "148820790987603968"}, +{"created_at": "Mon, 19 Dec 2011 17:47:36 +0000", "from_user": "pd_twitt", "from_user_id": 121263890, "from_user_id_str": "121263890", "from_user_name": "Portugal Digital", "geo": null, "id": 148821798480392200, "id_str": "148821798480392192", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/741089630/portugaldigital_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/741089630/portugaldigital_twitter_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Portugal Digital - Estudo da USP mostra que atua\\u00E7\\u00E3o da pol\\u00EDcia atinge mais pequenos traficantes http://t.co/cZBE1mXv via @pd_twitt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:30 +0000", "from_user": "afigueiras", "from_user_id": 17681900, "from_user_id_str": "17681900", "from_user_name": "afigueiras", "geo": null, "id": 148821772815433730, "id_str": "148821772815433730", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/65753369/ana_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/65753369/ana_normal.jpeg", "source": "<a href="http://www.publico.pt" rel="nofollow">AutoTweetPublico</a>", "text": "RT @Publico: Morreu Carlos Menezes, pioneiro da guitarra el\\u00E9ctrica em Portugal http://t.co/U8SFwOjE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:26 +0000", "from_user": "nati_ihp", "from_user_id": 58029084, "from_user_id_str": "58029084", "from_user_name": "Nathalia Ara\\u00FAjo.", "geo": null, "id": 148821755090321400, "id_str": "148821755090321408", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1530225977/fofa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1530225977/fofa_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Viajei muito, Portugal, Madrid, Ibiza, Paris, EuroDisney, Biarritz, Rio de Janeiro, Peru\\u00EDbe, Ch\\u00E1caras... Se lhoooooouco :P Foi demais, tudo.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:19 +0000", "from_user": "Coopster_1991", "from_user_id": 119042055, "from_user_id_str": "119042055", "from_user_name": "Anthony Cooper", "geo": null, "id": 148821727131086850, "id_str": "148821727131086848", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1657606410/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657606410/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@DanielFurrUK Problem is, Spain and Portugal haven't even began to sink yet, that was a hiccup, wait until Santander starts to crumble!", "to_user": "DanielFurrUK", "to_user_id": 139470390, "to_user_id_str": "139470390", "to_user_name": "Daniel Furr", "in_reply_to_status_id": 148821236842102800, "in_reply_to_status_id_str": "148821236842102784"}, +{"created_at": "Mon, 19 Dec 2011 17:47:18 +0000", "from_user": "lareinaeliza", "from_user_id": 185095916, "from_user_id_str": "185095916", "from_user_name": "elizabeth mendes", "geo": null, "id": 148821722362155000, "id_str": "148821722362155008", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1510634402/la_reina_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1510634402/la_reina_normal.JPG", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "@sumitoestevez en portugal puro bacalao", "to_user": "sumitoestevez", "to_user_id": 54371392, "to_user_id_str": "54371392", "to_user_name": "Sumito Est\\u00E9vez", "in_reply_to_status_id": 148816278872801280, "in_reply_to_status_id_str": "148816278872801280"}, +{"created_at": "Mon, 19 Dec 2011 17:47:17 +0000", "from_user": "BTRportugal_", "from_user_id": 439572971, "from_user_id_str": "439572971", "from_user_name": "Ana e Marina", "geo": null, "id": 148821721032564740, "id_str": "148821721032564737", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1699088806/tumblr_lvvb64L4rC1r7769mo1_500_normal.jpg", "profile_image_url_https": null, "source": "<a href="http://twitter.com/">web</a>", "text": "@Joel_Courtney thanks for follwing us :) much love from portugal", "to_user": "Joel_Courtney", "to_user_id": 229702385, "to_user_id_str": "229702385", "to_user_name": "Joel Courtney"}, +{"created_at": "Mon, 19 Dec 2011 17:47:13 +0000", "from_user": "Easynvest", "from_user_id": 72950830, "from_user_id_str": "72950830", "from_user_name": "Corretora de Valores", "geo": null, "id": 148821702296608770, "id_str": "148821702296608769", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1300725538/Logo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1300725538/Logo_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "FMI ir\\u00E1 liberar nova parcela de resgate(EUR2,9Bi) Portugal.A libera\\u00E7\\u00E3o ocorre ap\\u00F3s avalia\\u00E7\\u00E3o do FMI sobre prog d aust fiscal e reformas econ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:09 +0000", "from_user": "honeyrabiosa", "from_user_id": 175819512, "from_user_id_str": "175819512", "from_user_name": "Mel Gel\\u00E9inha", "geo": null, "id": 148821686341472260, "id_str": "148821686341472256", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1675622245/Foto-0265_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675622245/Foto-0265_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "GENTE ARRANJEI UM PRETENDENTE PORTUGUES!!!!!!!!!!!!!!!!! TO VAZANDO PRA PORTUGAL ADIOS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:47:00 +0000", "from_user": "gerardoruiza", "from_user_id": 17744349, "from_user_id_str": "17744349", "from_user_name": "Gerardo Ruiz", "geo": null, "id": 148821648559177730, "id_str": "148821648559177728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/65842713/IMG_0088_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/65842713/IMG_0088_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:51 +0000", "from_user": "pd_twitt", "from_user_id": 121263890, "from_user_id_str": "121263890", "from_user_name": "Portugal Digital", "geo": null, "id": 148821608356773900, "id_str": "148821608356773888", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/741089630/portugaldigital_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/741089630/portugaldigital_twitter_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Portugal Digital - FMI vai entregar a Portugal 2,9 bilh\\u00F5es de euros, parcela do empr\\u00E9stimo de 78 bilh\\u00F5es http://t.co/KNTm1qxh via @pd_twitt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:50 +0000", "from_user": "Bridgette340", "from_user_id": 242825426, "from_user_id_str": "242825426", "from_user_name": "Bridgette P", "geo": null, "id": 148821607190769660, "id_str": "148821607190769664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1225594175/golf_pic_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1225594175/golf_pic_normal", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Lisbon Coast Golf Club: A unique golf experience combining unlimited free golf in Portugal with ownership of a f... http://t.co/R4PR5p5Y", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:50 +0000", "from_user": "Indiee_Go", "from_user_id": 258507838, "from_user_id_str": "258507838", "from_user_name": "Indiee Go", "geo": null, "id": 148821605861179400, "id_str": "148821605861179392", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1371775217/Avatar_pc_twitter_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1371775217/Avatar_pc_twitter_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Mira a PORTUGAL. THE MAN interpretando la canci\\u00F3n CRAZY de Gnarls Barkley en el canal de televisi\\u00F3n Franc\\u00E9s \"Tarata\" http://t.co/2YHOlJnq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:49 +0000", "from_user": "Elneld", "from_user_id": 365682197, "from_user_id_str": "365682197", "from_user_name": "Steven Burnett", "geo": null, "id": 148821601222270980, "id_str": "148821601222270976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1596542267/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1596542267/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@richardbranson wow, the facts on Portugal are impressive. With a ten year time line, some great credibility is added.", "to_user": "richardbranson", "to_user_id": 8161232, "to_user_id_str": "8161232", "to_user_name": "richardbranson", "in_reply_to_status_id": 148777479291674620, "in_reply_to_status_id_str": "148777479291674624"}, +{"created_at": "Mon, 19 Dec 2011 17:46:47 +0000", "from_user": "joaosabichao", "from_user_id": 99302979, "from_user_id_str": "99302979", "from_user_name": "Jo\\u00E3o S.", "geo": null, "id": 148821593295036400, "id_str": "148821593295036418", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/591868316/rato_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/591868316/rato_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "2,9 mil milh\\u00F5es de euros para Portugal http://t.co/BiOSDNDa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:45 +0000", "from_user": "pascord", "from_user_id": 18425556, "from_user_id_str": "18425556", "from_user_name": "Panayiotis Skordias", "geo": null, "id": 148821584990314500, "id_str": "148821584990314496", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1342410509/takis_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1342410509/takis_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @GinetSosemito: @pascord Portugal Plead with Angola for a Rescue Fund. http://t.co/zN5UUtKR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:43 +0000", "from_user": "Fiatluxnyc", "from_user_id": 204713736, "from_user_id_str": "204713736", "from_user_name": "Fiat Lux NYC", "geo": null, "id": 148821578346528770, "id_str": "148821578346528768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1148920948/here_i_am_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1148920948/here_i_am_normal.jpg", "source": "<a href="http://reuters.com/tools/mobile" rel="nofollow">Thomson Reuters News Pro</a>", "text": "IMF approves 2.9 billion euro tranche to Portugal http://t.co/E4KzbgmD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:34 +0000", "from_user": "Sophia_Cullen", "from_user_id": 23091774, "from_user_id_str": "23091774", "from_user_name": "Sophia Cullen", "geo": null, "id": 148821537632436220, "id_str": "148821537632436224", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1250811560/35756_619788477366_60501668_37139608_656229_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1250811560/35756_619788477366_60501668_37139608_656229_n_normal.jpg", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "My mum moved to Portugal to be warm. It's about 5 degrees in some of the rooms in my house. Not jokey 5 degrees, ACTUAL 5 degrees. Brrr.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:29 +0000", "from_user": "pd_twitt", "from_user_id": 121263890, "from_user_id_str": "121263890", "from_user_name": "Portugal Digital", "geo": null, "id": 148821518007287800, "id_str": "148821518007287808", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/741089630/portugaldigital_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/741089630/portugaldigital_twitter_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Portugal Digital - Ministro da Educa\\u00E7\\u00E3o vai deixar o governo em janeiro para preparar candidatura http://t.co/FJ8d1Jhf via @pd_twitt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:28 +0000", "from_user": "Mucambocity", "from_user_id": 92757459, "from_user_id_str": "92757459", "from_user_name": "Walter Tenorio", "geo": null, "id": 148821512844099600, "id_str": "148821512844099584", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/551728660/Imagem_0010_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/551728660/Imagem_0010_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "FMI libera 2,9 bilh\\u00F5es de euros para Portugal\\nDi\\u00E1rio do Grande ABC - \\u200Eh\\u00E1 9 minutos\\u200E", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:26 +0000", "from_user": "helecris20", "from_user_id": 49130443, "from_user_id_str": "49130443", "from_user_name": "Helenice", "geo": null, "id": 148821505952849920, "id_str": "148821505952849920", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/352211951/HPIM4839_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/352211951/HPIM4839_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@radiont to triste pq so pode ganhar os premios por tel :(, to em Portugal e nao consigo ligar :((", "to_user": "radiont", "to_user_id": 65435868, "to_user_id_str": "65435868", "to_user_name": "R\\u00E1dio Novo Tempo"}, +{"created_at": "Mon, 19 Dec 2011 17:46:19 +0000", "from_user": "ziptop", "from_user_id": 103858555, "from_user_id_str": "103858555", "from_user_name": "ZipTop", "geo": null, "id": 148821477490298880, "id_str": "148821477490298880", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1486354615/logo_ziptop_facebook_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1486354615/logo_ziptop_facebook_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Rihanna diz ter sido v\\u00EDtima de racismo em hotel de Portugal http://t.co/K5wgl1qS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 17:46:19 +0000", "from_user": "ziptop", "from_user_id": 103858555, "from_user_id_str": "103858555", "from_user_name": "ZipTop", "geo": null, "id": 148821477490298880, "id_str": "148821477490298880", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1486354615/logo_ziptop_facebook_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1486354615/logo_ziptop_facebook_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Rihanna diz ter sido v\\u00EDtima de racismo em hotel de Portugal http://t.co/K5wgl1qS", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:15 +0000", "from_user": "pd_twitt", "from_user_id": 121263890, "from_user_id_str": "121263890", "from_user_name": "Portugal Digital", "geo": null, "id": 148821457231806460, "id_str": "148821457231806464", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/741089630/portugaldigital_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/741089630/portugaldigital_twitter_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Portugal Digital - Movimento pol\\u00EDtico portugu\\u00EAs Auditoria Cidad\\u00E3 \\u00E0 D\\u00EDvida P\\u00FAblica anuncia comiss\\u00E3o http://t.co/AweO7MHR via @pd_twitt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:12 +0000", "from_user": "Miichellelove1D", "from_user_id": 332880884, "from_user_id_str": "332880884", "from_user_name": "Michelle Villarroel", "geo": null, "id": 148821444741177340, "id_str": "148821444741177344", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1683443762/El_Yo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683443762/El_Yo_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Bailando Noss nossa en las calles de Portugal http://t.co/QOccUVwn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:10 +0000", "from_user": "VaiPassear", "from_user_id": 74717366, "from_user_id_str": "74717366", "from_user_name": "VaiPassear.com", "geo": null, "id": 148821436688117760, "id_str": "148821436688117760", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1179111970/Untitled-4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1179111970/Untitled-4_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "#Turismo #Portugal: Crian\\u00E7as de Vila Real de Santo Ant\\u00F3nio recriam antigas \"Casas de Fogo\" http://t.co/Lh96WPJ9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:46:09 +0000", "from_user": "VaiPassear", "from_user_id": 74717366, "from_user_id_str": "74717366", "from_user_name": "VaiPassear.com", "geo": null, "id": 148821435194945540, "id_str": "148821435194945537", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1179111970/Untitled-4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1179111970/Untitled-4_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "#Turismo #Portugal: Exposi\\u00E7\\u00E3o: \"O Natal e as Escolas\" no Museu dos Terceiros e na Torre da\\u2026 http://t.co/S8ufb69M", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:56 +0000", "from_user": "jumper48", "from_user_id": 36923804, "from_user_id_str": "36923804", "from_user_name": "Jaime Pereira", "geo": null, "id": 148821379091939330, "id_str": "148821379091939330", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/587070682/05_Jaime_2_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/587070682/05_Jaime_2_normal.JPG", "source": "<a href="http://www.publico.pt" rel="nofollow">AutoTweetPublico</a>", "text": "RT @Publico: Morreu Carlos Menezes, pioneiro da guitarra el\\u00E9ctrica em Portugal http://t.co/U8SFwOjE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:55 +0000", "from_user": "AnthonyinBA", "from_user_id": 16423026, "from_user_id_str": "16423026", "from_user_name": "Anthony Montalvo", "geo": null, "id": 148821373719035900, "id_str": "148821373719035905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1657015071/Chopper_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1657015071/Chopper_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:41 +0000", "from_user": "ForSaleiAlgarve", "from_user_id": 386105591, "from_user_id_str": "386105591", "from_user_name": "For Sale in Algarve", "geo": null, "id": 148821317020434430, "id_str": "148821317020434432", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1575941712/For_Sale_In_Algarve_Twitter_Logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575941712/For_Sale_In_Algarve_Twitter_Logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Apartment for sale in Lagos Albardeira | 1 bedroom ~ For-Sale-in-Algarve ~\\n#Algarve #Portugal - http://t.co/gkGC4qPs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:40 +0000", "from_user": "PeterHeathRMCD", "from_user_id": 414309332, "from_user_id_str": "414309332", "from_user_name": "Peter Heath", "geo": null, "id": 148821312251506700, "id_str": "148821312251506691", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693224627/MEFUP_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693224627/MEFUP_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@Sampinho27 but portugal is spains bit on the side so its ok.", "to_user": "Sampinho27", "to_user_id": 433477418, "to_user_id_str": "433477418", "to_user_name": "Daniel Sampson", "in_reply_to_status_id": 148821152175894530, "in_reply_to_status_id_str": "148821152175894529"}, +{"created_at": "Mon, 19 Dec 2011 17:45:38 +0000", "from_user": "pd_twitt", "from_user_id": 121263890, "from_user_id_str": "121263890", "from_user_name": "Portugal Digital", "geo": null, "id": 148821303808364540, "id_str": "148821303808364544", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/741089630/portugaldigital_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/741089630/portugaldigital_twitter_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Portugal Digital - Sueca Saab abre fal\\u00EAncia http://t.co/CJL5e2Ce via @pd_twitt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:35 +0000", "from_user": "JULIOFGOMEZ", "from_user_id": 347234676, "from_user_id_str": "347234676", "from_user_name": "JULIO GOMEZ ", "geo": null, "id": 148821292219502600, "id_str": "148821292219502592", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "BUENISIMO EQUIPO para amistosos NAVIDAD vs equipo Portugal y Madrid: Tomas, @JosemaMarin @carlosgc15 @Gonzalo13gs @clemente7ito @14Pablito", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:23 +0000", "from_user": "lnockler", "from_user_id": 38334923, "from_user_id_str": "38334923", "from_user_name": "Linda Nockler", "geo": null, "id": 148821239203512320, "id_str": "148821239203512320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670673727/P1040439_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670673727/P1040439_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Via @richardbranson argues for decriminalizing drugs? - the Portugal case http://t.co/iu44tOFc", "to_user": "richardbranson", "to_user_id": 8161232, "to_user_id_str": "8161232", "to_user_name": "richardbranson", "in_reply_to_status_id": 148804022290223100, "in_reply_to_status_id_str": "148804022290223104"}, +{"created_at": "Mon, 19 Dec 2011 17:45:22 +0000", "from_user": "DanielFurrUK", "from_user_id": 139470390, "from_user_id_str": "139470390", "from_user_name": "Daniel Furr", "geo": null, "id": 148821236842102800, "id_str": "148821236842102784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1642060961/269802_10150702532950221_548235220_19556140_2897845_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1642060961/269802_10150702532950221_548235220_19556140_2897845_n_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "EU does not have the enough fire power to rescue Italy; all the bullets have been used on Greece, Portugal, Spain and Ireland", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:22 +0000", "from_user": "Horoscopo_JB_", "from_user_id": 439339520, "from_user_id_str": "439339520", "from_user_name": "Jonas Brothers", "geo": null, "id": 148821235369902080, "id_str": "148821235369902080", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1700472794/jonas-brothers-chat-today_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700472794/jonas-brothers-chat-today_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "#Aries Em que pa\\u00EDs vc passaria o natal com o Kevin Jonas: Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:20 +0000", "from_user": "portalvaleflash", "from_user_id": 234720145, "from_user_id_str": "234720145", "from_user_name": "PORTAL VALEFLASH", "geo": null, "id": 148821227425902600, "id_str": "148821227425902592", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1208312233/logovaleflash_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1208312233/logovaleflash_normal.jpg", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "I uploaded a @YouTube video http://t.co/TAjQqwsg Portugal Musical Volta ao Mundo Objetivo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:19 +0000", "from_user": "tinimartinez", "from_user_id": 56887698, "from_user_id_str": "56887698", "from_user_name": "Cristina Mart\\u00EDnez", "geo": null, "id": 148821222313050100, "id_str": "148821222313050112", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699290051/___normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699290051/___normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@saraaq haha ooh I'm sorry I feel you.. Haha poor portugal! You should say Don't laugh motherfuckers i'll be homecoming queen!!!", "to_user": "saraaq", "to_user_id": 274662219, "to_user_id_str": "274662219", "to_user_name": "Sara Amorim Queiroz", "in_reply_to_status_id": 148800661646090240, "in_reply_to_status_id_str": "148800661646090240"}, +{"created_at": "Mon, 19 Dec 2011 17:45:17 +0000", "from_user": "SocMeDotMe", "from_user_id": 371995419, "from_user_id_str": "371995419", "from_user_name": "Karl Lingenfelder", "geo": null, "id": 148821217300848640, "id_str": "148821217300848640", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1546120426/SocMe_Twitter_Icon_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546120426/SocMe_Twitter_Icon_2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Apartment for sale in Lagos Albardeira | 1 bedroom ~ For-Sale-in-Algarve ~\\n#Algarve #Portugal - http://t.co/l4mE4O1c", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:14 +0000", "from_user": "hivamigos", "from_user_id": 427370290, "from_user_id_str": "427370290", "from_user_name": "HIV Positivo", "geo": null, "id": 148821201870008320, "id_str": "148821201870008320", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1684850270/Jaime_111_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1684850270/Jaime_111_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera 2,9 bilh\\u00F5es de euros em ajuda para Portugal: Montante integra nova parcela do pacote de 78 bilh\\u00F5es de... http://t.co/apPTD5p7", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:09 +0000", "from_user": "exame_mundo", "from_user_id": 146152067, "from_user_id_str": "146152067", "from_user_name": "EXAME Mundo", "geo": null, "id": 148821184207790080, "id_str": "148821184207790080", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/916289263/exame-mundo-twt_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/916289263/exame-mundo-twt_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera 2,9 bilh\\u00F5es de euros em ajuda para Portugal http://t.co/XOQnMB9L", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:07 +0000", "from_user": "17Nani_PT", "from_user_id": 440097844, "from_user_id_str": "440097844", "from_user_name": "Nani Portugal F\\u00E3s \\u2665", "geo": null, "id": 148821174825136130, "id_str": "148821174825136128", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700295506/Nani-2011_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700295506/Nani-2011_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Um dos v\\u00EDdeos mais bonitos que j\\u00E1 vi, FOR\\u00C7A PORTUGAL: @luisnani @cristiano @RQ7Quaresma @FabioCoentrao @RaulMeireles4 http://t.co/ki6SNQOD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:06 +0000", "from_user": "Mundanal_Ruido", "from_user_id": 398826660, "from_user_id_str": "398826660", "from_user_name": "MundanalRuido", "geo": null, "id": 148821170022645760, "id_str": "148821170022645760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1607831962/Sin_t_tulo-1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607831962/Sin_t_tulo-1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Editing new photo from Oporto... and remembering this lovely city! ^_^ http://t.co/6zVXajNh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:45:06 +0000", "from_user": "pd_twitt", "from_user_id": 121263890, "from_user_id_str": "121263890", "from_user_name": "Portugal Digital", "geo": null, "id": 148821169087315970, "id_str": "148821169087315970", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/741089630/portugaldigital_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/741089630/portugaldigital_twitter_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Portugal Digital - Estimativa de crescimento do PIB brasileiro em 2011 volta a cair http://t.co/HzbpGXRj via @pd_twitt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:51 +0000", "from_user": "NoticiaPortugal", "from_user_id": 279165920, "from_user_id_str": "279165920", "from_user_name": "Noticia de Portugal", "geo": null, "id": 148821108458663940, "id_str": "148821108458663936", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1304690760/Portugal_flag_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1304690760/Portugal_flag_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "El FMI aprueba la entrega de 2.900 millones de euros para Portugal - AFP http://t.co/uprdVWCx #Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:51 +0000", "from_user": "NoticiaPortugal", "from_user_id": 279165920, "from_user_id_str": "279165920", "from_user_name": "Noticia de Portugal", "geo": null, "id": 148821106990653440, "id_str": "148821106990653440", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1304690760/Portugal_flag_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1304690760/Portugal_flag_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "FMI aprueba entrega de 2.900 millones de euros para Portugal - Univisi\\u00F3n http://t.co/vp6ptZa6 #Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:51 +0000", "from_user": "NoticiaPortugal", "from_user_id": 279165920, "from_user_id_str": "279165920", "from_user_name": "Noticia de Portugal", "geo": null, "id": 148821105354878980, "id_str": "148821105354878976", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1304690760/Portugal_flag_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1304690760/Portugal_flag_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Rihanna: ovacianada en Espa\\u00F1a y pifiada en Portugal (Ver Video) - http://t.co/vtrM13ou http://t.co/S6X674wj #Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:43 +0000", "from_user": "Wgolfchallenge", "from_user_id": 393049720, "from_user_id_str": "393049720", "from_user_name": "World Golf Challenge", "geo": null, "id": 148821071611695100, "id_str": "148821071611695105", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1593593366/twitt_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1593593366/twitt_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Um dos elementos da Nevada Bob's Golf Portugal, a equipa vice-campe\\u00E3 da etapa Algarvia do World Corporate Golf... http://t.co/w3N3mm3a", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:40 +0000", "from_user": "MsMonica_", "from_user_id": 93873983, "from_user_id_str": "93873983", "from_user_name": "Monica Fernandes", "geo": null, "id": 148821061146910720, "id_str": "148821061146910720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1654504939/MsMonica__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1654504939/MsMonica__normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "@caramelcrumble still in London. Leaving for Portugal in the am", "to_user": "caramelcrumble", "to_user_id": 24461927, "to_user_id_str": "24461927", "to_user_name": "IGOTFIVEONIT", "in_reply_to_status_id": 148818308148371460, "in_reply_to_status_id_str": "148818308148371457"}, +{"created_at": "Mon, 19 Dec 2011 17:44:40 +0000", "from_user": "pd_twitt", "from_user_id": 121263890, "from_user_id_str": "121263890", "from_user_name": "Portugal Digital", "geo": null, "id": 148821059980886000, "id_str": "148821059980886016", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/741089630/portugaldigital_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/741089630/portugaldigital_twitter_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Portugal Digital - Portugal volta a ter saldo positivo no com\\u00E9rcio com o Brasil http://t.co/CPwe80Y5 via @pd_twitt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:23 +0000", "from_user": "fc_meuanjooLS", "from_user_id": 335396585, "from_user_id_str": "335396585", "from_user_name": "fc luan meu anjoo ", "geo": null, "id": 148820989810184200, "id_str": "148820989810184192", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698932486/luan__noel_reasonably_small__1__normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698932486/luan__noel_reasonably_small__1__normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "#C\\u00E2ncer : Onde voce e o Luan passariam a lua de mel ? Em Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:20 +0000", "from_user": "Alexey_Kashkov", "from_user_id": 276148209, "from_user_id_str": "276148209", "from_user_name": "\\u2655Mr.Theonegentleman\\u2655", "geo": null, "id": 148820977646698500, "id_str": "148820977646698496", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1553418261/2__2__12_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553418261/2__2__12_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @finanztreff_de: [#Ticker ] Internationaler W\\u00E4hrungsfonds (IWF) gibt 2,9 Milliarden Euro f\\u00FCr Portugal frei: WASHINGTON (dpa-AFX) ... http://t.co/hVMzV0nN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:16 +0000", "from_user": "dearlow", "from_user_id": 133878862, "from_user_id_str": "133878862", "from_user_name": "tev", "geo": null, "id": 148820960345202700, "id_str": "148820960345202688", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1692664174/snapshot-31_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1692664174/snapshot-31_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "\\u00E7a bosta \\u00E9 da espanha meu e n\\u00E3o de portugal como meu pai disse", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:11 +0000", "from_user": "mundohoteles", "from_user_id": 275120590, "from_user_id_str": "275120590", "from_user_name": "Mundo Hoteles", "geo": null, "id": 148820940162211840, "id_str": "148820940162211840", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png", "source": "<a href="http://www.bravenewcode.com/products/wordtwit" rel="nofollow">WordTwit Plugin</a>", "text": "Portugal: Balaia Mar Hotel Albufeira - http://t.co/57xA2ejZ #Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:44:09 +0000", "from_user": "VintageTeatime", "from_user_id": 219804630, "from_user_id_str": "219804630", "from_user_name": "Vintage Teatime", "geo": null, "id": 148820931043799040, "id_str": "148820931043799040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1591425612/IMG01100-20111016-1920_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1591425612/IMG01100-20111016-1920_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@IAm_LisaBent I bet I know what special Bajan curse word she used haha!! I must admit my hold in Portugal weren't great for that reason :(", "to_user": "IAm_LisaBent", "to_user_id": 62907861, "to_user_id_str": "62907861", "to_user_name": "LISA BENT"}, +{"created_at": "Mon, 19 Dec 2011 17:43:56 +0000", "from_user": "HMSFlyingFox", "from_user_id": 244801671, "from_user_id_str": "244801671", "from_user_name": "HMS Flying Fox ", "geo": null, "id": 148820878103293950, "id_str": "148820878103293952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1241546488/ffox_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1241546488/ffox_logo_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @GreyFunnelLine: Government is drawing up emergency plans to send the #RoyalNavy to evacuate British ex-pats from Spain and Portugal. http://t.co/Z4S9qb7E", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:56 +0000", "from_user": "kira8419", "from_user_id": 392106987, "from_user_id_str": "392106987", "from_user_name": "\\u041A\\u0438\\u0440\\u0430", "geo": null, "id": 148820875578314750, "id_str": "148820875578314752", "iso_language_code": "ja", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1648666975/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1648666975/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "Macau, \\u6FB3\\u9580.Located across the Pearl River estuary fr HK, until 1999 Macau was an overseas territory of Portugal.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:55 +0000", "from_user": "caracoq", "from_user_id": 344592915, "from_user_id_str": "344592915", "from_user_name": "vanti", "geo": null, "id": 148820872025735170, "id_str": "148820872025735169", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1542898131/203102_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1542898131/203102_1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Fonds mon\\u00E9taire international a annonc\\u00E9 lundi avoir approuv\\u00E9 un versement de 2,9 milliards d'euros au Portugal, troisi\\u00E8me tranche d'un pr\\u00EAt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:47 +0000", "from_user": "Meaganwtg", "from_user_id": 440194594, "from_user_id_str": "440194594", "from_user_name": "Meagan Russow", "geo": null, "id": 148820836948779000, "id_str": "148820836948779010", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700533599/large_teresa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700533599/large_teresa_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Consumer Credit in Portugal: IntroductionThis databook provides insights into consumer credit in Portugal, cover... http://t.co/TRa1XPAj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:46 +0000", "from_user": "visitportugal", "from_user_id": 66740930, "from_user_id_str": "66740930", "from_user_name": "visitportugal", "geo": null, "id": 148820834566414340, "id_str": "148820834566414336", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1119226997/LogoTurismodePortugal_PNG_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1119226997/LogoTurismodePortugal_PNG_normal.png", "source": "<a href="http://bit.ly" rel="nofollow">bitly</a>", "text": "Tap Portugal: December Chef was Henrique S\\u00E1 Pessoa \\n#Portugal #tap #food #chef\\n http://t.co/MXMKmcXC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:29 +0000", "from_user": "entertainmentsg", "from_user_id": 106675316, "from_user_id_str": "106675316", "from_user_name": "MSNSGEntertainment", "geo": null, "id": 148820763103854600, "id_str": "148820763103854593", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_6_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Rihanna blasts racist hotel guest: Rihanna was horrified when a fellow hotel guest in Lisbon, Portugal, insulted... http://t.co/5itpIUmL", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:27 +0000", "from_user": "elsuba", "from_user_id": 80915978, "from_user_id_str": "80915978", "from_user_name": "Jonatan D Atenodoro", "geo": null, "id": 148820754639753200, "id_str": "148820754639753216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693828104/MolotovTwitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693828104/MolotovTwitter_normal.png", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "@LifeBoxset: Escucha un cover de Portugal. The Man a Gnarls Barkley http://t.co/yunclGRA \\u00AB-- @jiony_", "to_user": "LifeBoxset", "to_user_id": 14792927, "to_user_id_str": "14792927", "to_user_name": "LifeBoxset.com"}, +{"created_at": "Mon, 19 Dec 2011 17:43:20 +0000", "from_user": "gercimonteiro", "from_user_id": 211617562, "from_user_id_str": "211617562", "from_user_name": "gerci monteiro", "geo": null, "id": 148820726135275520, "id_str": "148820726135275520", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1167219673/mascara_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1167219673/mascara_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @arykara: FMI libera 2,9 bi de euros para Portugal: \\n \\n http://t.co/TCb19psJ // Lembrem-se que eles tinham recusado a ajuda", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:17 +0000", "from_user": "SarangGyu", "from_user_id": 226278178, "from_user_id_str": "226278178", "from_user_name": "Patricia", "geo": null, "id": 148820711153209340, "id_str": "148820711153209344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1643861651/19062009282_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1643861651/19062009282_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Vinya85 uhhhhhh i love aquariums. was in portugal in a huge one *O*", "to_user": "Vinya85", "to_user_id": 212965143, "to_user_id_str": "212965143", "to_user_name": "\\uAE40\\uC0C1\\uBBF8", "in_reply_to_status_id": 148820486925725700, "in_reply_to_status_id_str": "148820486925725699"}, +{"created_at": "Mon, 19 Dec 2011 17:43:14 +0000", "from_user": "modismonet", "from_user_id": 76110190, "from_user_id_str": "76110190", "from_user_name": "ModismoNet", "geo": null, "id": 148820700545818620, "id_str": "148820700545818624", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/953579094/boca-nova-reduced_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/953579094/boca-nova-reduced_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Rihanna \\u00E9 v\\u00EDtima de racismo em Portugal http://t.co/xE0dXC53", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:12 +0000", "from_user": "lasillarota", "from_user_id": 152358615, "from_user_id_str": "152358615", "from_user_name": "El Equipo ", "geo": null, "id": 148820693692321800, "id_str": "148820693692321792", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1455713472/fotosilla_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1455713472/fotosilla_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "#FMI participa en los planes de #rescate de Grecia, Irlanda y Portugal http://t.co/H09i8bOn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:09 +0000", "from_user": "thejaimecorex", "from_user_id": 80157579, "from_user_id_str": "80157579", "from_user_name": "duh,", "geo": null, "id": 148820677598785540, "id_str": "148820677598785536", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1672239167/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1672239167/image_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @LifeBoxset: Escucha un cover de Portugal. The Man a Gnarls Barkley http://t.co/qYMNEKP9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:07 +0000", "from_user": "VictoriaBarret", "from_user_id": 84648166, "from_user_id_str": "84648166", "from_user_name": "Victoria Barret", "geo": null, "id": 148820671840006140, "id_str": "148820671840006144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/649093869/VBdotcomphoto2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/649093869/VBdotcomphoto2_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:07 +0000", "from_user": "pezpops", "from_user_id": 56365476, "from_user_id_str": "56365476", "from_user_name": "Perrie Manning", "geo": null, "id": 148820670099370000, "id_str": "148820670099369984", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1306480286/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1306480286/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:43:06 +0000", "from_user": "JoaoPedroL", "from_user_id": 19716315, "from_user_id_str": "19716315", "from_user_name": "Joao Pedro L", "geo": null, "id": 148820665036840960, "id_str": "148820665036840961", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1662514413/6822_1120717666113_1472204221_30240566_2730044_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662514413/6822_1120717666113_1472204221_30240566_2730044_n_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@Publico: FMI aprova tranche de 2,9 mil milh\\u00F5es de euros para Portugal http://t.co/Adh6cVOi\\u201D YAY!!!!!!!! -.-", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:56 +0000", "from_user": "algarvenews", "from_user_id": 46595968, "from_user_id_str": "46595968", "from_user_name": "Algarve-News", "geo": null, "id": 148820622775029760, "id_str": "148820622775029760", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/259703172/bild3_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/259703172/bild3_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\"Estradas de Portugal\": Vandalismus erfolglos: Der Autobahnbetreiber \"Estradas de Portugal\" hat heute betont, da... http://t.co/NdoqgDIz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:55 +0000", "from_user": "algarvenews", "from_user_id": 46595968, "from_user_id_str": "46595968", "from_user_name": "Algarve-News", "geo": null, "id": 148820619763523600, "id_str": "148820619763523585", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/259703172/bild3_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/259703172/bild3_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "\"Estradas de Portugal\": Vandalismus erfolglos http://t.co/1Xc36Oob", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:40 +0000", "from_user": "Laceygge", "from_user_id": 430057552, "from_user_id_str": "430057552", "from_user_name": "Lacey Asberry", "geo": null, "id": 148820557960458240, "id_str": "148820557960458240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677541366/0enq2s451a_134543035_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677541366/0enq2s451a_134543035_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Baedeker's Portugal (AA Baedeker's): A revised and updated guide to Portugal. The book, accompanied by a free ma... http://t.co/my3klL1h", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:24 +0000", "from_user": "maggotks_", "from_user_id": 248278593, "from_user_id_str": "248278593", "from_user_name": "Raphaela com PH!", "geo": null, "id": 148820492088913920, "id_str": "148820492088913920", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694849648/Foto0122_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694849648/Foto0122_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Nossa, ganhei 3 followers de Portugal :3 genteeee ><", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:23 +0000", "from_user": "trustdrewbieber", "from_user_id": 214007222, "from_user_id_str": "214007222", "from_user_name": "\\u2714Justin Bieber fans", "geo": null, "id": 148820485508038660, "id_str": "148820485508038656", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1674828644/cats_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1674828644/cats_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @Ritasoeima11: @onedirection please come to Portugal. Here in Portugal there are lots of your fans. Gotta be you ... http://t.co/NzEczgST", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:18 +0000", "from_user": "HulkMetidao", "from_user_id": 257279062, "from_user_id_str": "257279062", "from_user_name": "Hulk de Oculos", "geo": null, "id": 148820463601205250, "id_str": "148820463601205248", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1254379042/cospobre-papelao_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1254379042/cospobre-papelao_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera 2,9 bi de euros para Portugal http://t.co/qoE8isLx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:17 +0000", "from_user": "DicasdeDinheiro", "from_user_id": 256502586, "from_user_id_str": "256502586", "from_user_name": "Dicas pra Voc\\u00EA", "geo": null, "id": 148820461210439680, "id_str": "148820461210439680", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1252303264/Profile_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1252303264/Profile_normal.jpeg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera 2,9 bi de euros para Portugal http://t.co/g1eHOfsG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:16 +0000", "from_user": "sbb", "from_user_id": 1149, "from_user_id_str": "1149", "from_user_name": "Stephen Bronstein", "geo": null, "id": 148820456105979900, "id_str": "148820456105979905", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/136278066/3417345482_c8943d31e1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/136278066/3417345482_c8943d31e1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:12 +0000", "from_user": "Neil_Hambly", "from_user_id": 126324468, "from_user_id_str": "126324468", "from_user_name": "Neil Hambly", "geo": null, "id": 148820438003355650, "id_str": "148820438003355650", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1531541391/5513032c-b6d7-400c-a06c-75fbe776cc69_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1531541391/5513032c-b6d7-400c-a06c-75fbe776cc69_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\"@jenstirrup: Fancy a #sqlpass event in Portugal? Take a look at #sqlsat115 in Lisbon! #sqlserver http://t.co/xhSeJwMn\" > Week before #105", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:11 +0000", "from_user": "RSSpravaler", "from_user_id": 438638127, "from_user_id_str": "438638127", "from_user_name": "RSS pra valer!", "geo": null, "id": 148820437508431870, "id_str": "148820437508431873", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697113193/Inside-rss-256_normal.png", "profile_image_url_https": null, "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera 2,9 bi de euros para Portugal: A libera\\u00E7\\u00E3o ocorre depois de uma segunda avalia\\u00E7\\u00E3o formal feita pelo ... http://t.co/jqys88Eu", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:07 +0000", "from_user": "MindOfSona", "from_user_id": 63393111, "from_user_id_str": "63393111", "from_user_name": "Fred Sona", "geo": null, "id": 148820418038480900, "id_str": "148820418038480898", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691434622/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691434622/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:03 +0000", "from_user": "dedTree", "from_user_id": 350272619, "from_user_id_str": "350272619", "from_user_name": "dedTree", "geo": null, "id": 148820400552415230, "id_str": "148820400552415232", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1482816849/dedTree_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1482816849/dedTree_normal.jpg", "source": "<a href="http://drop.local/LiveTweet/" rel="nofollow">dedTreeLive</a>", "text": "[2 minutes ago] Somebody from #Portugal bought the #book 'Prince of the Blood' from http://t.co/uDryAlBd", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:42:02 +0000", "from_user": "Battyho", "from_user_id": 42224809, "from_user_id_str": "42224809", "from_user_name": "Battyho", "geo": +{"coordinates": [51.4943,0.0122], "type": "Point"}, "id": 148820399365431300, "id_str": "148820399365431296", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1586977371/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1586977371/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "@richardbranson I'm a strong believer in decriminalisation, but constant drug offers I had on the streets of Portugal tell a different story", "to_user": "richardbranson", "to_user_id": 8161232, "to_user_id_str": "8161232", "to_user_name": "richardbranson", "in_reply_to_status_id": 148804022290223100, "in_reply_to_status_id_str": "148804022290223104"}, +{"created_at": "Mon, 19 Dec 2011 17:41:55 +0000", "from_user": "JornalOJE", "from_user_id": 127881632, "from_user_id_str": "127881632", "from_user_name": "O Jornal Econ\\u00F3mico", "geo": null, "id": 148820367547432960, "id_str": "148820367547432961", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/785767199/LOGO-OJE_Site_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/785767199/LOGO-OJE_Site_normal.jpg", "source": "<a href="http://tarpipe.com/" rel="nofollow">tarpipe</a>", "text": "FMI aprovou terceira tranche do empr\\u00E9stimo a Portugal http://t.co/tMdNUjdH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:48 +0000", "from_user": "havenforhiphop", "from_user_id": 305823669, "from_user_id_str": "305823669", "from_user_name": "thehiphopgiftshop", "geo": null, "id": 148820339407855600, "id_str": "148820339407855617", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681175648/thhgsalbumcover3layer12_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681175648/thhgsalbumcover3layer12_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @djvlad: Rihanna Goes on Twitter Rant After Racial Abuse in Portugal (Blog) (@Rihanna) http://t.co/SXcFKN79", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:38 +0000", "from_user": "computerartspt", "from_user_id": 192979775, "from_user_id_str": "192979775", "from_user_name": "ComputerArtsPortugal", "geo": null, "id": 148820298932813820, "id_str": "148820298932813824", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1400489661/Computer-arts_logo-01_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1400489661/Computer-arts_logo-01_normal.png", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "10 Maneiras de se divertir mais no seu dia-a-dia no trabalho | Computer Arts Portugal http://t.co/UGm9zTWF via @computerartspt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:34 +0000", "from_user": "zpravycz", "from_user_id": 283501843, "from_user_id_str": "283501843", "from_user_name": "Zpr\\u00E1vy", "geo": null, "id": 148820280234614800, "id_str": "148820280234614785", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1314666047/internet-news-reader_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1314666047/internet-news-reader_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Brusel podez\\u00EDr\\u00E1 Brussels Airlines a TAP Portugal z kartelu: Antimonopoln\\u00ED \\u00FA\\u0159ady Evropsk\\u00E9 unie minul\\u00FD t\\u00FDden provedly... #Doprava_a_logistika", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:33 +0000", "from_user": "LALOIVEY", "from_user_id": 88301268, "from_user_id_str": "88301268", "from_user_name": "Stelio Kontos", "geo": null, "id": 148820275264368640, "id_str": "148820275264368640", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1585912657/IMG000033_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1585912657/IMG000033_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "Nunca podr\\u00E9 ser el Portugal. The Man del siglo.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:30 +0000", "from_user": "feriasportugal", "from_user_id": 28986334, "from_user_id_str": "28986334", "from_user_name": "Ferias em Portugal", "geo": null, "id": 148820263579025400, "id_str": "148820263579025409", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/222116509/background_twitter_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/222116509/background_twitter_normal.png", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Ajuda-nos a conseguir mais F\\u00E3s! Partilha a p\\u00E1gina do F\\u00E9rias em Portugal com os teus amigos. Obrigado!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:25 +0000", "from_user": "renanviana100", "from_user_id": 440966267, "from_user_id_str": "440966267", "from_user_name": "renan viana da silva", "geo": null, "id": 148820244302004220, "id_str": "148820244302004225", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "e gente passei de ano e vou viajar amanha para Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:14 +0000", "from_user": "andreiasft", "from_user_id": 157094446, "from_user_id_str": "157094446", "from_user_name": "Andreia ", "geo": null, "id": 148820197590048770, "id_str": "148820197590048768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1564306764/IMGP2531_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1564306764/IMGP2531_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @rihanna: PORTUGAL tonight was LEGENDARY!!!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:12 +0000", "from_user": "artbard0", "from_user_id": 162334379, "from_user_id_str": "162334379", "from_user_name": "Zden\\u011Bk Kricner", "geo": null, "id": 148820190237425660, "id_str": "148820190237425666", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1394664689/vector_eyes_copy_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1394664689/vector_eyes_copy_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Brusel podez\\u00EDr\\u00E1 Brussels Airlines a TAP Portugal z kartelu: Antimonopoln\\u00ED \\u00FA\\u0159ady Evropsk\\u00E9 unie minul\\u00FD t\\u00FDden prove... http://t.co/qo3hgRrE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:12 +0000", "from_user": "Javlin36", "from_user_id": 355181194, "from_user_id_str": "355181194", "from_user_name": "Javlin 36", "geo": null, "id": 148820190078054400, "id_str": "148820190078054400", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1640321006/SL272722_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640321006/SL272722_normal.JPG", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "RT @vladtv: Rihanna Goes on Twitter Rant After Racial Abuse in Portugal (Blog) (@Rihanna) http://t.co/sRfJp2C4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:09 +0000", "from_user": "DanielRincoon", "from_user_id": 230975782, "from_user_id_str": "230975782", "from_user_name": "Daniel Rinc\\u00F3n", "geo": null, "id": 148820175913885700, "id_str": "148820175913885696", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1671866115/313111_2357026002815_1165183286_32238399_857823025_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671866115/313111_2357026002815_1165183286_32238399_857823025_n_normal.jpg", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "RT @LifeBoxset: Escucha un cover de Portugal. The Man a Gnarls Barkley http://t.co/qYMNEKP9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:41:09 +0000", "from_user": "Esther_Fenty", "from_user_id": 278588512, "from_user_id_str": "278588512", "from_user_name": "I Love You Rihanna ", "geo": null, "id": 148820175821619200, "id_str": "148820175821619200", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702107984/normal_0012_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702107984/normal_0012_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@WeFoundLoveRiRi n\\u00E3o \\u00E9 a Rihanna que vai causar uma m\\u00E1 impress\\u00E3o em Portugal \\u00E9 os portugueses que v\\u00E3o causar m\\u00E1 impress\\u00E3o!!!", "to_user": "WeFoundLoveRiRi", "to_user_id": 177738439, "to_user_id_str": "177738439", "to_user_name": "Rayan Fenty Adkins"}, +{"created_at": "Mon, 19 Dec 2011 17:40:59 +0000", "from_user": "HRihanna", "from_user_id": 46898209, "from_user_id_str": "46898209", "from_user_name": "Rihanna", "geo": null, "id": 148820134084100100, "id_str": "148820134084100096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1250083230/rihsem51_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1250083230/rihsem51_normal.gif", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "bhaktimla Rihanna Goes on Twitter Rant After Racial Abuse in Portugal (Blog) (@Rihanna) http://t.co/ZrH6iibz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:58 +0000", "from_user": "InfoPriv", "from_user_id": 57702464, "from_user_id_str": "57702464", "from_user_name": "InfoPrivilegiada \\u221A", "geo": null, "id": 148820130770583550, "id_str": "148820130770583552", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/354288460/informa__o_privilegiada_logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/354288460/informa__o_privilegiada_logo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Ultimas - Luz verde \\u00E0 terceira tranche de 2,9 mil milh\\u00F5es de euros para Portugal: \\n\\n\\n\\n\\t\\nO Fundo Monet\\u00E1rio Intern... http://t.co/EALjljEA", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:57 +0000", "from_user": "HRihanna", "from_user_id": 46898209, "from_user_id_str": "46898209", "from_user_name": "Rihanna", "geo": null, "id": 148820127402569730, "id_str": "148820127402569728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1250083230/rihsem51_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1250083230/rihsem51_normal.gif", "source": "<a href="http://ifttt.com" rel="nofollow">ifttt</a>", "text": "djvlad Rihanna Goes on Twitter Rant After Racial Abuse in Portugal (Blog) (@Rihanna) http://t.co/ZDWr2kPp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:56 +0000", "from_user": "theREALryancoe", "from_user_id": 299215702, "from_user_id_str": "299215702", "from_user_name": "Ryan Coe", "geo": null, "id": 148820120729427970, "id_str": "148820120729427969", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1355025373/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1355025373/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:56 +0000", "from_user": "MichelleAlcaras", "from_user_id": 420390082, "from_user_id_str": "420390082", "from_user_name": "Michelle Alcaras", "geo": null, "id": 148820119966068740, "id_str": "148820119966068736", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1655537787/Michelle_Alcaras_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1655537787/Michelle_Alcaras_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF releases 2.9 bn euros to Portugal: WASHINGTON\\u00A0- The International Monetary Fund said Monday it would release... http://t.co/eF9iSc9R", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:55 +0000", "from_user": "johnmendoza69", "from_user_id": 413011463, "from_user_id_str": "413011463", "from_user_name": "john mendoza ", "geo": null, "id": 148820118699393020, "id_str": "148820118699393024", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1640170037/john_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1640170037/john_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF releases 2.9 bn euros to Portugal: WASHINGTON\\u00A0- The International Monetary Fund said Monday it would release... http://t.co/coecH8FO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:54 +0000", "from_user": "KaterineMosca", "from_user_id": 413516150, "from_user_id_str": "413516150", "from_user_name": "Katherine Mosca", "geo": null, "id": 148820112269508600, "id_str": "148820112269508609", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1641925321/Ronajoy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1641925321/Ronajoy_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF releases 2.9 bn euros to Portugal: WASHINGTON\\u00A0- The International Monetary Fund said Monday it would release... http://t.co/gQQfFwIX", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:53 +0000", "from_user": "froydsky", "from_user_id": 151380544, "from_user_id_str": "151380544", "from_user_name": "Bryan Lloyd", "geo": null, "id": 148820107676745730, "id_str": "148820107676745728", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/955616566/23103_100000171143618_5653_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/955616566/23103_100000171143618_5653_q_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF releases 2.9 bn euros to Portugal: WASHINGTON\\u00A0- The International Monetary Fund said Monday it would release... http://t.co/kk5tcZpj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:53 +0000", "from_user": "nicholascruz230", "from_user_id": 404093709, "from_user_id_str": "404093709", "from_user_name": "nicholas cruz", "geo": null, "id": 148820106548486140, "id_str": "148820106548486144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1624891048/sexy_asian_guy153_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624891048/sexy_asian_guy153_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF releases 2.9 bn euros to Portugal: WASHINGTON\\u00A0- The International Monetary Fund said Monday it would release... http://t.co/fr5Aso5w", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:52 +0000", "from_user": "codypark230", "from_user_id": 404012388, "from_user_id_str": "404012388", "from_user_name": "cody park", "geo": null, "id": 148820104740745200, "id_str": "148820104740745216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1627711322/Ahn-So-Hee-06_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1627711322/Ahn-So-Hee-06_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF releases 2.9 bn euros to Portugal: WASHINGTON\\u00A0- The International Monetary Fund said Monday it would release... http://t.co/9lMaHQ6K", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:51 +0000", "from_user": "JinkyCasa", "from_user_id": 403843840, "from_user_id_str": "403843840", "from_user_name": "Jinky Casa", "geo": null, "id": 148820101196562430, "id_str": "148820101196562432", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1619817200/rona_penaredondo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1619817200/rona_penaredondo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF releases 2.9 bn euros to Portugal: WASHINGTON\\u00A0- The International Monetary Fund said Monday it would release... http://t.co/5G0MrrOi", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:51 +0000", "from_user": "HilariFalcon", "from_user_id": 404219839, "from_user_id_str": "404219839", "from_user_name": "Hilari Falcon", "geo": null, "id": 148820099283959800, "id_str": "148820099283959808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1620658810/Hilari_Falcon_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1620658810/Hilari_Falcon_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF releases 2.9 bn euros to Portugal: WASHINGTON\\u00A0- The International Monetary Fund said Monday it would release... http://t.co/etWMoFco", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:50 +0000", "from_user": "DrJuanMontero", "from_user_id": 395993583, "from_user_id_str": "395993583", "from_user_name": "Dr. Juan Montero", "geo": null, "id": 148820097794973700, "id_str": "148820097794973697", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1601131598/Juan_Montero_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601131598/Juan_Montero_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF releases 2.9 bn euros to Portugal: WASHINGTON\\u00A0- The International Monetary Fund said Monday it would release... http://t.co/LH1BSU2F", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:50 +0000", "from_user": "yojocsalev", "from_user_id": 384092453, "from_user_id_str": "384092453", "from_user_name": "Rona Joy Velasco", "geo": null, "id": 148820096415051780, "id_str": "148820096415051776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1570349577/zel_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1570349577/zel_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF releases 2.9 bn euros to Portugal: WASHINGTON\\u00A0- The International Monetary Fund said Monday it would release... http://t.co/DZmPxL56", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:50 +0000", "from_user": "beatcenter", "from_user_id": 16029650, "from_user_id_str": "16029650", "from_user_name": "Manila Rising", "geo": null, "id": 148820094166892540, "id_str": "148820094166892545", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1569257244/images_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1569257244/images_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF releases 2.9 bn euros to Portugal http://t.co/U9qeI8ba #philippines", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:47 +0000", "from_user": "gmanewstvbrk", "from_user_id": 41785272, "from_user_id_str": "41785272", "from_user_name": "GMA News TV", "geo": null, "id": 148820084171870200, "id_str": "148820084171870208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/224477577/gmanewstvlogo_without_beta_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/224477577/gmanewstvlogo_without_beta_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF releases 2.9 bn euros to Portugal: WASHINGTON\\u00A0- The International Monetary Fund said Monday it would release... http://t.co/1gz5GqgV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:46 +0000", "from_user": "GinetSosemito", "from_user_id": 236374122, "from_user_id_str": "236374122", "from_user_name": "Ginet Sosemito", "geo": null, "id": 148820078505361400, "id_str": "148820078505361408", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697149760/Twitter_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697149760/Twitter_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "While Portugal's Economy is expected to contract 1.9 percent this year & 2.8 percent in 2012, oil-producing Angola's", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:44 +0000", "from_user": "Heck_yeahSwag", "from_user_id": 406489144, "from_user_id_str": "406489144", "from_user_name": "Tylen_Marcus_Carter", "geo": null, "id": 148820072796917760, "id_str": "148820072796917760", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1679982176/FNOCAM94LBLCAFT1DZECA4GW5VRCAN57XHICAV34EP6CA5AEDIWCAUZS0ZBCALXUF5JCAFG13RFCASJMX4XCA2XJF0TCANTF9QDCA49CFGGCAOAV21MCAWS4E25CACX81JMCAQ9H3B3CANRZVK5CAMHVU01_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1679982176/FNOCAM94LBLCAFT1DZECA4GW5VRCAN57XHICAV34EP6CA5AEDIWCAUZS0ZBCALXUF5JCAFG13RFCASJMX4XCA2XJF0TCANTF9QDCA49CFGGCAOAV21MCAWS4E25CACX81JMCAQ9H3B3CANRZVK5CAMHVU01_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Rihanna Goes on Twitter Rant After Racial Abuse in Portugal (Blog) (@Rihanna) http://t.co/AhjLzFoH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:40 +0000", "from_user": "PORDATA", "from_user_id": 87460291, "from_user_id_str": "87460291", "from_user_name": "PORDATA", "geo": null, "id": 148820055520591870, "id_str": "148820055520591872", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/712636420/pordataicon_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/712636420/pordataicon_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Sabiam que em 2010 por cada 100 casamentos ocorreram 69 div\\u00F3rcios, 28 mil dos quais de casamentos cat\\u00F3licos? http://t.co/iOq3SKB2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:33 +0000", "from_user": "TheSelenatorBoy", "from_user_id": 183790645, "from_user_id_str": "183790645", "from_user_name": "Boy Selenator", "geo": null, "id": 148820025862668300, "id_str": "148820025862668288", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700292224/tumblr_lvehhjboli1qc3ngpo1_500_large_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700292224/tumblr_lvehhjboli1qc3ngpo1_500_large_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@TheGomezing nice name :) nice to meet you too. I'm from Portugal and you?", "to_user": "TheGomezing", "to_user_id": 383167241, "to_user_id_str": "383167241", "to_user_name": "Selenator . \\u03DF", "in_reply_to_status_id": 148819917578313730, "in_reply_to_status_id_str": "148819917578313728"}, +{"created_at": "Mon, 19 Dec 2011 17:40:31 +0000", "from_user": "ady33", "from_user_id": 22628797, "from_user_id_str": "22628797", "from_user_name": "adrian bezuidenhout", "geo": null, "id": 148820014919712770, "id_str": "148820014919712768", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/290839155/PIC-0040_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/290839155/PIC-0040_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:30 +0000", "from_user": "bhaktimla", "from_user_id": 375476343, "from_user_id_str": "375476343", "from_user_name": "#TeamSWAG \\u263A", "geo": null, "id": 148820012612861950, "id_str": "148820012612861952", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1548035324/tumblr_laan1vOjop1qaiez3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1548035324/tumblr_laan1vOjop1qaiez3_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Rihanna Goes on Twitter Rant After Racial Abuse in Portugal (Blog) (@Rihanna) http://t.co/fRDRtnDz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:26 +0000", "from_user": "djvlad", "from_user_id": 18088038, "from_user_id_str": "18088038", "from_user_name": "DJ Vlad - VladTV.com", "geo": null, "id": 148819994455715840, "id_str": "148819994455715841", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1658602282/slkdfj_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658602282/slkdfj_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "Rihanna Goes on Twitter Rant After Racial Abuse in Portugal (Blog) (@Rihanna) http://t.co/SXcFKN79", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:15 +0000", "from_user": "JayPeaFranco", "from_user_id": 28203468, "from_user_id_str": "28203468", "from_user_name": "Juan Pablo Franco", "geo": null, "id": 148819949987708930, "id_str": "148819949987708928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1678054371/av_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1678054371/av_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:13 +0000", "from_user": "AgentTwenty3", "from_user_id": 380602110, "from_user_id_str": "380602110", "from_user_name": "Agent Twenty3", "geo": null, "id": 148819941473259520, "id_str": "148819941473259520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1579115978/copkick_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1579115978/copkick_normal.gif", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @NathanTrout: Do you believe there is some merit in moving resources from drug enforcement to treatment, following Portugal's example? #askmetboss", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:07 +0000", "from_user": "SocMeDotMe", "from_user_id": 371995419, "from_user_id_str": "371995419", "from_user_name": "Karl Lingenfelder", "geo": null, "id": 148819914596163600, "id_str": "148819914596163585", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1546120426/SocMe_Twitter_Icon_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546120426/SocMe_Twitter_Icon_2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Villa for sale in Lagoa Carvoeiro | 3 bedrooms ~ For-Sale-in-Algarve ~\\n#Algarve #Portugal - http://t.co/OFW1U1aG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:05 +0000", "from_user": "LifeBoxset", "from_user_id": 14792927, "from_user_id_str": "14792927", "from_user_name": "LifeBoxset.com", "geo": null, "id": 148819906073337860, "id_str": "148819906073337856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1179549843/lb-logo-02_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1179549843/lb-logo-02_normal.png", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "Escucha un cover de Portugal. The Man a Gnarls Barkley http://t.co/qYMNEKP9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 17:40:13 +0000", "from_user": "AgentTwenty3", "from_user_id": 380602110, "from_user_id_str": "380602110", "from_user_name": "Agent Twenty3", "geo": null, "id": 148819941473259520, "id_str": "148819941473259520", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1579115978/copkick_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1579115978/copkick_normal.gif", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @NathanTrout: Do you believe there is some merit in moving resources from drug enforcement to treatment, following Portugal's example? #askmetboss", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:07 +0000", "from_user": "SocMeDotMe", "from_user_id": 371995419, "from_user_id_str": "371995419", "from_user_name": "Karl Lingenfelder", "geo": null, "id": 148819914596163600, "id_str": "148819914596163585", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1546120426/SocMe_Twitter_Icon_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546120426/SocMe_Twitter_Icon_2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Villa for sale in Lagoa Carvoeiro | 3 bedrooms ~ For-Sale-in-Algarve ~\\n#Algarve #Portugal - http://t.co/OFW1U1aG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:05 +0000", "from_user": "LifeBoxset", "from_user_id": 14792927, "from_user_id_str": "14792927", "from_user_name": "LifeBoxset.com", "geo": null, "id": 148819906073337860, "id_str": "148819906073337856", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1179549843/lb-logo-02_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1179549843/lb-logo-02_normal.png", "source": "<a href="http://cotweet.com/?utm_source=sp1" rel="nofollow">CoTweet</a>", "text": "Escucha un cover de Portugal. The Man a Gnarls Barkley http://t.co/qYMNEKP9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:01 +0000", "from_user": "patologica", "from_user_id": 34328312, "from_user_id_str": "34328312", "from_user_name": "L\\u00EDgia Rodrigues", "geo": null, "id": 148819891569434620, "id_str": "148819891569434624", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1442201742/Pluma_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1442201742/Pluma_normal.jpg", "source": "<a href="http://www.publico.pt" rel="nofollow">AutoTweetPublico</a>", "text": "RT @Publico: Jazz volta \\u00E0 Pra\\u00E7a da Alegria com reabertura do Hot Clube de Portugal http://t.co/ldu142ND", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:40:01 +0000", "from_user": "karaquistan", "from_user_id": 379366649, "from_user_id_str": "379366649", "from_user_name": "Cronica Karaquistan", "geo": null, "id": 148819889119957000, "id_str": "148819889119956992", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1670081157/wallpaper-1476428_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670081157/wallpaper-1476428_normal.jpg", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "FMI aprueba 2.900 millones de euros para Portugal http://t.co/8oAoGRja", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:39:38 +0000", "from_user": "JesseniaVice", "from_user_id": 22886497, "from_user_id_str": "22886497", "from_user_name": "Jessenia Vice", "geo": null, "id": 148819793733107700, "id_str": "148819793733107712", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662940221/JesseniaVice_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662940221/JesseniaVice_normal.jpg", "source": "<a href="http://www.echofon.com/" rel="nofollow">Echofon</a>", "text": "Hola si! Mandame un email :)Saludos RT @BootyliciousInk: @JesseniaVice Ola...hace muy tiempo! Soi Joaquin de Portugal. Te recuerdas?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:39:36 +0000", "from_user": "A_Felgueiras", "from_user_id": 347293550, "from_user_id_str": "347293550", "from_user_name": "Antoine de Carvalho", "geo": null, "id": 148819785570975740, "id_str": "148819785570975745", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1474460369/big.115249973_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1474460369/big.115249973_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Romuald Peiser, le fran\\u00E7ais de l'Academica Coimbra parle de la Liga Zon Sagres #Portugal http://t.co/Xoe32D9T", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:39:36 +0000", "from_user": "Erlinelhg", "from_user_id": 431703307, "from_user_id_str": "431703307", "from_user_name": "Tiny Tesseyman", "geo": null, "id": 148819785122185200, "id_str": "148819785122185216", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1681039822/large_A8KLHMBCQBAQ_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681039822/large_A8KLHMBCQBAQ_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Spain and Portugal: Handbook for travellers,: http://t.co/EmYzTQ53", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:39:30 +0000", "from_user": "Phareo_", "from_user_id": 394166613, "from_user_id_str": "394166613", "from_user_name": "AirForce1", "geo": null, "id": 148819760384188400, "id_str": "148819760384188416", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1700438462/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700438462/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "\\u201C@RelloSlaySum: @Phareo_ In Portugal\\u201D I'm in that bih!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:39:26 +0000", "from_user": "Rihannafire", "from_user_id": 314256359, "from_user_id_str": "314256359", "from_user_name": "amanda ", "geo": null, "id": 148819742701010940, "id_str": "148819742701010944", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1601747506/tumblr_lso1a5tx1P1qewmu6o1_500_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601747506/tumblr_lso1a5tx1P1qewmu6o1_500_normal.gif", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Video: Rihanna runs off stage to vomit during the show in Portugal? http://t.co/ra7QCH0J", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:39:16 +0000", "from_user": "portugalforum", "from_user_id": 41989700, "from_user_id_str": "41989700", "from_user_name": "portugalforum", "geo": null, "id": 148819702116925440, "id_str": "148819702116925440", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/487842239/pfo_icon_gr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/487842239/pfo_icon_gr_normal.jpg", "source": "<a href="http://www.portugalforum.org" rel="nofollow">portugalforum.org</a>", "text": "Goethe-Institut: Seminar: 16.-17.12.2011, Seminar mit Siegfried Zielinski: Siegfried Zielinski hat an der Universit\\u00E4t http://t.co/4LT85VYZ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:39:15 +0000", "from_user": "Alonso_HdezR", "from_user_id": 162074655, "from_user_id_str": "162074655", "from_user_name": "Alonso Hernandez", "geo": null, "id": 148819698757279740, "id_str": "148819698757279744", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1476362952/1c7dac88-95c1-41fc-a15f-7cea23b6cf46_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1476362952/1c7dac88-95c1-41fc-a15f-7cea23b6cf46_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprueba entrega de \\u20AC2 mil 900 millones para Portugal: El Consejo de Administraci\\u00F3n dio luz verde para desblo... http://t.co/cN3K1lbW", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:39:14 +0000", "from_user": "jneves_guitar", "from_user_id": 314124132, "from_user_id_str": "314124132", "from_user_name": "juceli neves", "geo": null, "id": 148819693896077300, "id_str": "148819693896077313", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1495325796/jnn_copy_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1495325796/jnn_copy_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Recaptulando os pa\\u00EDses com f\\u00E3s da BC, dados do pr\\u00F3prio facebook: ESTADOS UNIDOS, ITALIA, PORTUGAL, ESPANHA,... http://t.co/nVRiuPG9", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:39:13 +0000", "from_user": "Merk2Noticias", "from_user_id": 369560072, "from_user_id_str": "369560072", "from_user_name": "Noticias", "geo": null, "id": 148819687386517500, "id_str": "148819687386517504", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1541053277/marketing_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1541053277/marketing_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprueba entrega de \\u20AC2 mil 900 millones para Portugal: El Consejo de Administraci\\u00F3n dio luz verde para desblo... http://t.co/Bml3XahN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:39:11 +0000", "from_user": "theNickSparks", "from_user_id": 34105393, "from_user_id_str": "34105393", "from_user_name": "Nick Sparks", "geo": null, "id": 148819678804979700, "id_str": "148819678804979712", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1336903312/209499_1524048281562_1845282397_903181_2715978_o_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1336903312/209499_1524048281562_1845282397_903181_2715978_o_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:39:09 +0000", "from_user": "NickBEnd", "from_user_id": 17683421, "from_user_id_str": "17683421", "from_user_name": "NickBEnd", "geo": null, "id": 148819673583063040, "id_str": "148819673583063040", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1192809752/cropped_headshot_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1192809752/cropped_headshot_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:39:07 +0000", "from_user": "philipswiki", "from_user_id": 424647654, "from_user_id_str": "424647654", "from_user_name": "martin", "geo": null, "id": 148819665622282240, "id_str": "148819665622282240", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "Lonely Planet By the Seat of My Pants (Anthology) Review http://t.co/3UowVPhn #lonelyplanet #travel", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:38:49 +0000", "from_user": "GinetSosemito", "from_user_id": 236374122, "from_user_id_str": "236374122", "from_user_name": "Ginet Sosemito", "geo": null, "id": 148819587113304060, "id_str": "148819587113304064", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697149760/Twitter_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697149760/Twitter_normal.JPG", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "Portugal PM: Angolan capital welcome in privatisations http://t.co/Z2R2UDE8 via @reuters", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:38:47 +0000", "from_user": "G_L", "from_user_id": 17637572, "from_user_id_str": "17637572", "from_user_name": "G_L", "geo": null, "id": 148819578628214800, "id_str": "148819578628214784", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1624642887/motor_homebxa_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1624642887/motor_homebxa_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Vamos levar com mais uma tranche RT @Publico: FMI aprova tranche de 2,9 mil milh\\u00F5es de euros para Portugal http://t.co/56nVOWni", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:38:32 +0000", "from_user": "AdrianoCastros", "from_user_id": 44439512, "from_user_id_str": "44439512", "from_user_name": "Adriano Castro", "geo": null, "id": 148819515772379140, "id_str": "148819515772379136", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/253152910/NANO___BIA_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/253152910/NANO___BIA_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera parcela de 2,9 bilh\\u00F5es de euros de aux\\u00EDlio a Portugal http://t.co/Q4aoNCOh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:38:31 +0000", "from_user": "NCMBusiness", "from_user_id": 386745150, "from_user_id_str": "386745150", "from_user_name": "Narciso Machado", "geo": null, "id": 148819514086268930, "id_str": "148819514086268929", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1577282898/logosemfundo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1577282898/logosemfundo_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera parcela de 2,9 bilh\\u00F5es de euros de aux\\u00EDlio a Portugal #NCMBusiness", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:38:18 +0000", "from_user": "Kclap420", "from_user_id": 393448829, "from_user_id_str": "393448829", "from_user_name": "Kieran Clapham", "geo": null, "id": 148819456523632640, "id_str": "148819456523632640", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1686183769/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1686183769/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/ipad" rel="nofollow">Twitter for iPad</a>", "text": "@campilla27 man portugal ain't worth it I've seen it all, I still have a lot to explore in skyrim", "to_user": "campilla27", "to_user_id": 318014567, "to_user_id_str": "318014567", "to_user_name": "cam pilla", "in_reply_to_status_id": 148819010211954700, "in_reply_to_status_id_str": "148819010211954688"}, +{"created_at": "Mon, 19 Dec 2011 17:38:17 +0000", "from_user": "ACritica", "from_user_id": 44446850, "from_user_id_str": "44446850", "from_user_name": "Portal A Cr\\u00EDtica", "geo": null, "id": 148819454669758460, "id_str": "148819454669758464", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1530329028/twitter_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1530329028/twitter_avatar_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "FMI libera 2,9 bi de euros para Portugal http://t.co/S5xeTKmj", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:38:13 +0000", "from_user": "ACritica", "from_user_id": 44446850, "from_user_id_str": "44446850", "from_user_name": "Portal A Cr\\u00EDtica", "geo": null, "id": 148819439192784900, "id_str": "148819439192784896", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1530329028/twitter_avatar_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1530329028/twitter_avatar_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "FMI aprova entrega de 2,9 bi de euros para Portugal http://t.co/mapfPDRE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:38:12 +0000", "from_user": "P_Economia", "from_user_id": 113683334, "from_user_id_str": "113683334", "from_user_name": "P\\u00FAblico|Economia", "geo": null, "id": 148819433341730800, "id_str": "148819433341730816", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/705988307/Picture-1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/705988307/Picture-1_normal.png", "source": "<a href="http://www.publico.pt" rel="nofollow">AutoTweetPublico</a>", "text": "FMI aprova tranche de 2,9 mil milh\\u00F5es de euros para Portugal http://t.co/8eObAiTN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:38:10 +0000", "from_user": "WildannFikri", "from_user_id": 109836640, "from_user_id_str": "109836640", "from_user_name": "\\u0428\\u0406\\u013F\\u018A\\u039B\\u039D \\u0191I\\u049ARI \\u047C", "geo": null, "id": 148819423770329100, "id_str": "148819423770329088", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1658604810/Image14_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1658604810/Image14_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@sarahaida memang mcm tu la dia real life kot. ish you dh pegi sana en. npk patung wax i? dia pakai jersey portugal number 7?", "to_user": "sarahaida", "to_user_id": 33546257, "to_user_id_str": "33546257", "to_user_name": "Sarah Aida", "in_reply_to_status_id": 148818257737031680, "in_reply_to_status_id_str": "148818257737031681"}, +{"created_at": "Mon, 19 Dec 2011 17:38:02 +0000", "from_user": "irinaportugal18", "from_user_id": 441032449, "from_user_id_str": "441032449", "from_user_name": "Irina Alves", "geo": null, "id": 148819391042166800, "id_str": "148819391042166784", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@rihanna I loved the concert in Portugal! It was amazing!", "to_user": "rihanna", "to_user_id": 79293791, "to_user_id_str": "79293791", "to_user_name": "Rihanna"}, +{"created_at": "Mon, 19 Dec 2011 17:38:01 +0000", "from_user": "littlestewdj", "from_user_id": 83668444, "from_user_id_str": "83668444", "from_user_name": "Stewart", "geo": null, "id": 148819385237254140, "id_str": "148819385237254144", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1649266485/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649266485/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:50 +0000", "from_user": "jc_economia", "from_user_id": 276726614, "from_user_id_str": "276726614", "from_user_name": "Economia", "geo": null, "id": 148819341238997000, "id_str": "148819341238996992", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1311625739/vaiprojc_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1311625739/vaiprojc_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera 2,9 bi de euros para Portugal: http://t.co/xe4vd0wI", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:42 +0000", "from_user": "domingosmiguel", "from_user_id": 53149244, "from_user_id_str": "53149244", "from_user_name": "Domingos Farinho", "geo": null, "id": 148819309014171650, "id_str": "148819309014171649", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1244035274/161343_1402755006_3290072_q_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1244035274/161343_1402755006_3290072_q_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Nunca a Pra\\u00E7a mereceu tanto o nome RT@Publico Jazz volta \\u00E0 Pra\\u00E7a da Alegria com reabertura do Hot Clube de Portugal http://t.co/i5yLnMVq", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:42 +0000", "from_user": "HuracanCarter", "from_user_id": 69450703, "from_user_id_str": "69450703", "from_user_name": "Rubo", "geo": null, "id": 148819308636676100, "id_str": "148819308636676096", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1317800330/Dibujo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1317800330/Dibujo_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@dieguito1989 tio como va a ser simbolico el 3 delant como un port, solo hay k ver Llorente contra Portugal en el Mundial o Guiza en la Euro", "to_user": "dieguito1989", "to_user_id": 95728945, "to_user_id_str": "95728945", "to_user_name": "Dieguito Fernandez ", "in_reply_to_status_id": 148815248353263600, "in_reply_to_status_id_str": "148815248353263616"}, +{"created_at": "Mon, 19 Dec 2011 17:37:36 +0000", "from_user": "vehs2", "from_user_id": 36500060, "from_user_id_str": "36500060", "from_user_name": "Ver\\u00F4nica Pinheiro", "geo": null, "id": 148819282392924160, "id_str": "148819282392924160", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1695043066/390044148_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695043066/390044148_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Legal \\u00E9 ligar um homem com sotaque de Portugal e eu n\\u00E3o entender uma palavra que ele diz.. sorte a dele que n\\u00E3o me chamou de rapariga, kk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:36 +0000", "from_user": "Diego_Siilva6", "from_user_id": 152304466, "from_user_id_str": "152304466", "from_user_name": "DiegoSilva", "geo": null, "id": 148819280773914620, "id_str": "148819280773914624", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1568024123/52_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1568024123/52_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Me chamaram pra jogar l\\u00E1 na avenida Portugal , e eu n\\u00E3o vou dispensar . riariaira !", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:28 +0000", "from_user": "WeFoundLoveRiRi", "from_user_id": 177738439, "from_user_id_str": "177738439", "from_user_name": "Rayan Fenty Adkins", "geo": null, "id": 148819250591694850, "id_str": "148819250591694848", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677769970/rrrrrrrrrrrrihannnnnna_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677769970/rrrrrrrrrrrrihannnnnna_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "#NAVY quero geral com sua Peggy Sue, vamos partir pra Portugal fuzilar o Hotel de #racistas!", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:15 +0000", "from_user": "soraiacssantos", "from_user_id": 88205964, "from_user_id_str": "88205964", "from_user_name": "SoraiaS .", "geo": null, "id": 148819195637927940, "id_str": "148819195637927936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1659249702/tumblr_luytf73EVA1qhztk4o1_400_large_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659249702/tumblr_luytf73EVA1qhztk4o1_400_large_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Harry_Styles @NiallOfficial @zaynmalik @Real_Liam_Payne @Louis_Tomlinson @onedirection Portugal wants One Direction \\u2665 ,", "to_user": "Harry_Styles", "to_user_id": 181561712, "to_user_id_str": "181561712", "to_user_name": "Harry Styles"}, +{"created_at": "Mon, 19 Dec 2011 17:37:15 +0000", "from_user": "PorraPego", "from_user_id": 270636333, "from_user_id_str": "270636333", "from_user_name": "Euler Carlos", "geo": null, "id": 148819193373016060, "id_str": "148819193373016064", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1602987538/Toma_esse_sz___pra_voc___normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1602987538/Toma_esse_sz___pra_voc___normal.jpg", "source": "<a href="http://utweetme.navetke.ru/" rel="nofollow">uTweetMe For Mobile</a>", "text": "Cantora Rihanna se revolta com preconceito sofrido em hotel na cidade de Lisboa, Portugal.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:14 +0000", "from_user": "despinoza90", "from_user_id": 118580883, "from_user_id_str": "118580883", "from_user_name": "Daniel Espinoza ", "geo": null, "id": 148819189774295040, "id_str": "148819189774295042", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1472620794/perfil_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1472620794/perfil_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @Koronios1: @biobio Corte de luz, Torres de San Borja, sector Marcoleta con Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:37:09 +0000", "from_user": "newsman_net", "from_user_id": 365513189, "from_user_id_str": "365513189", "from_user_name": "savage", "geo": null, "id": 148819168647594000, "id_str": "148819168647593985", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1522688191/dr.manhattan_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1522688191/dr.manhattan_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "IMF releases 2.9 bn euros to Portugal http://t.co/kcJGVzRB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:36:56 +0000", "from_user": "evertuts", "from_user_id": 194205193, "from_user_id_str": "194205193", "from_user_name": "\\u00A0\\u00A0\\u00A0\\u00A0\\u00A0ro.", "geo": null, "id": 148819113865773060, "id_str": "148819113865773056", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1694563721/143_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694563721/143_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera 2,9 bi de euros para Portugal: O Fundo Monet\\u00E1rio Internacional (FMI) anunciou hoje que ir\\u00E1 liberar 2,... http://t.co/SHifkww8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:36:49 +0000", "from_user": "AnsKlaas", "from_user_id": 418656376, "from_user_id_str": "418656376", "from_user_name": "Ans Kamperman-Klaas", "geo": null, "id": 148819083842957300, "id_str": "148819083842957312", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1651935005/DSC_0029__2__normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1651935005/DSC_0029__2__normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:36:43 +0000", "from_user": "cmjornal", "from_user_id": 124139163, "from_user_id_str": "124139163", "from_user_name": "Correio da Manh\\u00E3", "geo": null, "id": 148819061885767680, "id_str": "148819061885767680", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/760363120/cm_twitter_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/760363120/cm_twitter_normal.gif", "source": "<a href="http://www.cmjornal.xl.pt" rel="nofollow">Correio da Manh\\u00E3</a>", "text": "FMI aprovou terceira tranche do empr\\u00E9stimo a Portugal http://t.co/zSMI5Rxh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:36:24 +0000", "from_user": "monalisa_lgp", "from_user_id": 109057658, "from_user_id_str": "109057658", "from_user_name": "Diana", "geo": null, "id": 148818979547394050, "id_str": "148818979547394048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1600553301/a75f8812-b8d4-4784-af38-68d3409a8dfa_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1600553301/a75f8812-b8d4-4784-af38-68d3409a8dfa_normal.png", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "History of Portugal http://t.co/Rdns22nh", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:36:19 +0000", "from_user": "SundayPhillips", "from_user_id": 351236090, "from_user_id_str": "351236090", "from_user_name": "Sunday Phillips", "geo": null, "id": 148818960924672000, "id_str": "148818960924672000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1652253964/sUNDAY_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1652253964/sUNDAY_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:36:18 +0000", "from_user": "GinetSosemito", "from_user_id": 236374122, "from_user_id_str": "236374122", "from_user_name": "Ginet Sosemito", "geo": null, "id": 148818954020855800, "id_str": "148818954020855808", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697149760/Twitter_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697149760/Twitter_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Angola helping Portugal amidst the EU crisis, is spoken of, as a matter of, --The Colonial Tables Turning. http://t.co/zN5UUtKR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:36:13 +0000", "from_user": "riro_news", "from_user_id": 399624025, "from_user_id_str": "399624025", "from_user_name": "riro_news", "geo": null, "id": 148818933166780400, "id_str": "148818933166780417", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1615279880/riro_news_twitter_logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615279880/riro_news_twitter_logo_normal.png", "source": "<a href="http://www.google.com/" rel="nofollow">Google</a>", "text": "IWF gibt 2,9 Milliarden Euro f\\u00FCr Portugal frei http://t.co/hP4E3XXG #orfnews", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:35:51 +0000", "from_user": "soraiacssantos", "from_user_id": 88205964, "from_user_id_str": "88205964", "from_user_name": "SoraiaS .", "geo": null, "id": 148818840158076930, "id_str": "148818840158076929", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1659249702/tumblr_luytf73EVA1qhztk4o1_400_large_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1659249702/tumblr_luytf73EVA1qhztk4o1_400_large_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Harry_Styles @NiallOfficial @zaynmalik @Real_Liam_Payne @Louis_Tomlinson @onedirection Portugal wants One Direction \\u2665", "to_user": "Harry_Styles", "to_user_id": 181561712, "to_user_id_str": "181561712", "to_user_name": "Harry Styles"}, +{"created_at": "Mon, 19 Dec 2011 17:35:49 +0000", "from_user": "Vitoria_online", "from_user_id": 397560450, "from_user_id_str": "397560450", "from_user_name": "jornaisemserie", "geo": null, "id": 148818833359114240, "id_str": "148818833359114241", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1605009027/es-vitoria_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1605009027/es-vitoria_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera 2,9 bi de euros para Portugal: Washington - O Fundo Monet\\u00E1rio Internacional (FMI) anunciou hoje que i... http://t.co/C5lY3z1H", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:35:47 +0000", "from_user": "modernavitoria", "from_user_id": 119119998, "from_user_id_str": "119119998", "from_user_name": "Rede Geral Perfis ", "geo": null, "id": 148818824639156220, "id_str": "148818824639156224", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/728116326/31_1127856966_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/728116326/31_1127856966_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "#RGP FMI libera 2,9 bi de euros para Portugal: Washington - O Fundo Monet\\u00E1rio Internacional (FMI) anunciou hoje ... http://t.co/Ocxmk8Je", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:35:41 +0000", "from_user": "_LeandroSilva8", "from_user_id": 431913240, "from_user_id_str": "431913240", "from_user_name": "Leandro Silva", "geo": null, "id": 148818801570488320, "id_str": "148818801570488320", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1698526342/IMG_20111109_192620_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698526342/IMG_20111109_192620_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@ttprovider very nice! thanks! post from Portugal! love table tennis eheh!", "to_user": "ttprovider", "to_user_id": 262854043, "to_user_id_str": "262854043", "to_user_name": "TTProvider", "in_reply_to_status_id": 148818198370844670, "in_reply_to_status_id_str": "148818198370844674"}, +{"created_at": "Mon, 19 Dec 2011 17:35:32 +0000", "from_user": "EekOct31stGeek", "from_user_id": 24475229, "from_user_id_str": "24475229", "from_user_name": "D_was_nefarious", "geo": null, "id": 148818762680893440, "id_str": "148818762680893441", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694820227/316547_889412238842_26106637_40267590_1562515275_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694820227/316547_889412238842_26106637_40267590_1562515275_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Man, usually I can just call my my mom and ask her to help me write out e-mails to my cousin's in Portugal. Now, not so much. #fodasse", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:35:28 +0000", "from_user": "DoraVicente", "from_user_id": 228537161, "from_user_id_str": "228537161", "from_user_name": "Dora Vicente", "geo": null, "id": 148818744678957060, "id_str": "148818744678957056", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1677691636/328_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677691636/328_normal.JPG", "source": "<a href="http://www.publico.pt" rel="nofollow">AutoTweetPublico</a>", "text": "RT @Publico: Jazz volta \\u00E0 Pra\\u00E7a da Alegria com reabertura do Hot Clube de Portugal http://t.co/ldu142ND", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:35:17 +0000", "from_user": "espanta", "from_user_id": 20854618, "from_user_id_str": "20854618", "from_user_name": "Espanta Espiritos", "geo": null, "id": 148818700265455600, "id_str": "148818700265455616", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/78264994/julionovologo2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/78264994/julionovologo2_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Feliz Anivers\\u00E1rio ao Portugal Rebelde, e que continue durante muitos e bons anos a divulgar a m\\u00FAsica... http://t.co/AjymkkqO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:35:11 +0000", "from_user": "ARMAKdeODELOT", "from_user_id": 207305542, "from_user_id_str": "207305542", "from_user_name": "ARMAK de ODELOT", "geo": null, "id": 148818672239128580, "id_str": "148818672239128576", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1183805338/kingarmak_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1183805338/kingarmak_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @jtamarit: El FMI autoriza el desembolso inmediato de 2.900 millones a Portugal, Su programa de apoyo a reformas econ\\u00F3micas, supone 28.000 millones.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:35:08 +0000", "from_user": "Isgarvan", "from_user_id": 91371148, "from_user_id_str": "91371148", "from_user_name": "Israel Garc\\u00EDa", "geo": null, "id": 148818662487359500, "id_str": "148818662487359488", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1420800025/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1420800025/image_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @Info_Ve: Rihanna fue v\\u00EDctima de insultos racistas en Portugal http://t.co/9Mofo6Nc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:35:08 +0000", "from_user": "porrak4u3", "from_user_id": 35146993, "from_user_id_str": "35146993", "from_user_name": "Kau\\u00EA Franqueira", "geo": null, "id": 148818662084722700, "id_str": "148818662084722688", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1688193813/72_kaue_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688193813/72_kaue_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Eita a Rihanna cantou \"diferente\" What's my name em portugal porque no meio da m\\u00FAsica ela saiu pra vomitar :O", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:35:05 +0000", "from_user": "GinetSosemito", "from_user_id": 236374122, "from_user_id_str": "236374122", "from_user_name": "Ginet Sosemito", "geo": null, "id": 148818650709762050, "id_str": "148818650709762048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697149760/Twitter_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697149760/Twitter_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@pascord Portugal Plead with Angola for a Rescue Fund. http://t.co/zN5UUtKR", "to_user": "pascord", "to_user_id": 18425556, "to_user_id_str": "18425556", "to_user_name": "Panayiotis Skordias", "in_reply_to_status_id": 148813260429332480, "in_reply_to_status_id_str": "148813260429332481"}, +{"created_at": "Mon, 19 Dec 2011 17:35:00 +0000", "from_user": "jenstirrup", "from_user_id": 23242773, "from_user_id_str": "23242773", "from_user_name": "Jen Stirrup", "geo": null, "id": 148818626798043140, "id_str": "148818626798043138", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1580691601/JenStirrup_SpeakerPhoto_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1580691601/JenStirrup_SpeakerPhoto_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Fancy a #sqlpass event in Portugal? Take a look at #sqlsat115 in Lisbon! #sqlserver http://t.co/n1vDWZyJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:57 +0000", "from_user": "ouedernie", "from_user_id": 98902061, "from_user_id_str": "98902061", "from_user_name": "amina ouederni", "geo": null, "id": 148818614148010000, "id_str": "148818614148009984", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691528746/Photos-0670_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691528746/Photos-0670_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "#Rihanna : tout va mal au Portugal http://t.co/8qkoEv0x", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:53 +0000", "from_user": "RSSpravaler", "from_user_id": 438638127, "from_user_id_str": "438638127", "from_user_name": "RSS pra valer!", "geo": null, "id": 148818597098164220, "id_str": "148818597098164224", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1697113193/Inside-rss-256_normal.png", "profile_image_url_https": null, "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera 2,9 bi de euros para Portugal: A libera\\u00E7\\u00E3o ocorre depois de uma segunda avalia\\u00E7\\u00E3o formal feita pelo ... http://t.co/RPAN6oHc", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:52 +0000", "from_user": "Firstec", "from_user_id": 149255622, "from_user_id_str": "149255622", "from_user_name": "First Technology Inc", "geo": null, "id": 148818595458187260, "id_str": "148818595458187264", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/938918381/FTI_GROBE_LOGO_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/938918381/FTI_GROBE_LOGO_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera 2,9 bi de euros para Portugal: A libera\\u00E7\\u00E3o ocorre depois de uma segunda avalia\\u00E7\\u00E3o formal feita pelo ... http://t.co/zsMsUwTf", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:52 +0000", "from_user": "thecardinaldela", "from_user_id": 20937306, "from_user_id_str": "20937306", "from_user_name": "Francisco Uhlfelder", "geo": null, "id": 148818595189764100, "id_str": "148818595189764096", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/337596212/franzee_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/337596212/franzee_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "Blessings from Lisboa Portugal from the Alfama Se Cathedral. A Luca Pedrotti panorama photography. http://t.co/AjIj3fQN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:46 +0000", "from_user": "Manuela_Pacheco", "from_user_id": 316764287, "from_user_id_str": "316764287", "from_user_name": "Manuela Pacheco", "geo": null, "id": 148818570762137600, "id_str": "148818570762137601", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1413383346/1280706656_107710585_1-inscrio-de-modelo-em-cuiaba-centro-1280706656_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1413383346/1280706656_107710585_1-inscrio-de-modelo-em-cuiaba-centro-1280706656_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @exame_noticias: FMI libera 2,9 bilh\\u00F5es de euros em ajuda para Portugal http://t.co/Zs8V5Et4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:29 +0000", "from_user": "Disney_Emploi", "from_user_id": 76054505, "from_user_id_str": "76054505", "from_user_name": "Disneyland Paris ", "geo": null, "id": 148818498422968320, "id_str": "148818498422968320", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/643496869/DLP_Logo_Format_Twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/643496869/DLP_Logo_Format_Twitter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Postulez pour participer \\u00E0 nos sessions de recrutement au PORTUGAL \\u00E0 Lisbonne les 14 et 15 F\\u00E9vrier 2012 : http://t.co/y8ua6K7f #jobs", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:26 +0000", "from_user": "JavierRivero24", "from_user_id": 436043818, "from_user_id_str": "436043818", "from_user_name": "Javier Rivero", "geo": null, "id": 148818483591917570, "id_str": "148818483591917569", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691468171/Martin_Velazquez_normal.jpg", "profile_image_url_https": null, "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Escucha un cover de Portugal. The Man a Gnarls Barkley http://t.co/qdwpE3MH via @LifeBoxset", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:25 +0000", "from_user": "AyerHoy1", "from_user_id": 436043306, "from_user_id_str": "436043306", "from_user_name": "Ayer Hoy", "geo": null, "id": 148818480429408260, "id_str": "148818480429408256", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691467460/periodistas-animados-ayer-hoy-L-6_normal.jpeg", "profile_image_url_https": null, "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Escucha un cover de Portugal. The Man a Gnarls Barkley http://t.co/y40EfcTd via @LifeBoxset", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:25 +0000", "from_user": "LuzRodrigeuz", "from_user_id": 436042528, "from_user_id_str": "436042528", "from_user_name": "Luz Rodrigeuz", "geo": null, "id": 148818479989014530, "id_str": "148818479989014529", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691466603/msn123_normal_normal.jpg", "profile_image_url_https": null, "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Escucha un cover de Portugal. The Man a Gnarls Barkley http://t.co/pkHdKGmw via @LifeBoxset", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:24 +0000", "from_user": "MiaraSanchez", "from_user_id": 436041334, "from_user_id_str": "436041334", "from_user_name": "Miara Sanchez", "geo": null, "id": 148818478177075200, "id_str": "148818478177075200", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1691465610/DSC09144_normal.JPG", "profile_image_url_https": null, "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Escucha un cover de Portugal. The Man a Gnarls Barkley http://t.co/Uq0w1AaA via @LifeBoxset", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:24 +0000", "from_user": "EduardoRojas57", "from_user_id": 436040352, "from_user_id_str": "436040352", "from_user_name": "Eduardo Rojas", "geo": null, "id": 148818476440625150, "id_str": "148818476440625156", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1691464547/RodrigoMendezTinoco_normal.jpg", "profile_image_url_https": null, "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Escucha un cover de Portugal. The Man a Gnarls Barkley http://t.co/6CbAt6oT via @LifeBoxset", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:24 +0000", "from_user": "blognonstop", "from_user_id": 102507725, "from_user_id_str": "102507725", "from_user_name": "Blog Non Stop", "geo": null, "id": 148818475027148800, "id_str": "148818475027148800", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/892366796/blog_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/892366796/blog_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "http://t.co/SyWVF1jy: Escucha un cover de Portugal. The Man a Gnarls Barkley http://t.co/BMlVjZxo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:14 +0000", "from_user": "keithcallsenfir", "from_user_id": 314899445, "from_user_id_str": "314899445", "from_user_name": "Keith Callsen", "geo": null, "id": 148818435273535500, "id_str": "148818435273535488", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1390592038/1307752262_implementation_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1390592038/1307752262_implementation_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "Qatar: 2011 Article IV Consultation Concluding Statement of the IMF Mission - Einnews Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:06 +0000", "from_user": "acquaintanceswo", "from_user_id": 397963118, "from_user_id_str": "397963118", "from_user_name": "gut.easyzmenki.si", "geo": null, "id": 148818399902961660, "id_str": "148818399902961664", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1618456988/love_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618456988/love_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amizade: \\n\\t\\n\\t\\t\\n\\tluilisboa1\\n\\t\\n\\t36 ans\\n\\tLisboa\\n Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:05 +0000", "from_user": "acquaintanceswo", "from_user_id": 397963118, "from_user_id_str": "397963118", "from_user_name": "gut.easyzmenki.si", "geo": null, "id": 148818396971155460, "id_str": "148818396971155456", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1618456988/love_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618456988/love_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amizade: \\n\\t\\n\\t\\t\\n\\tmendes72\\n\\t\\n\\t39 ans\\n\\tEsposende\\n Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:05 +0000", "from_user": "RTPNoticias", "from_user_id": 16451028, "from_user_id_str": "16451028", "from_user_name": "RTPNoticias", "geo": null, "id": 148818395729637380, "id_str": "148818395729637376", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/740350326/rtp_twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/740350326/rtp_twitter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "FMI d\\u00E1 luz verde \\u00E0 terceira tranche de 2,9 mil milh\\u00F5es de euros para Portugal. http://t.co/ExnlZgGo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:34:03 +0000", "from_user": "acquaintanceswo", "from_user_id": 397963118, "from_user_id_str": "397963118", "from_user_name": "gut.easyzmenki.si", "geo": null, "id": 148818390088290300, "id_str": "148818390088290304", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1618456988/love_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1618456988/love_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amizade: \\n\\t\\n\\t\\t\\n\\tmarcianovip\\n\\t\\n\\t24 ans\\n\\tFunchal\\n Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:33:58 +0000", "from_user": "Bonehead07", "from_user_id": 37626068, "from_user_id_str": "37626068", "from_user_name": "Mike Hillyard", "geo": null, "id": 148818367648768000, "id_str": "148818367648768000", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662978253/39f37d4a-0557-43ab-8ec8-3e2c628a3b24_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662978253/39f37d4a-0557-43ab-8ec8-3e2c628a3b24_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:33:57 +0000", "from_user": "RaymundoZ", "from_user_id": 23870932, "from_user_id_str": "23870932", "from_user_name": "Raymundo Zuniga Vega", "geo": null, "id": 148818363160862720, "id_str": "148818363160862720", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1630296121/RaymundoZ_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1630296121/RaymundoZ_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:33:46 +0000", "from_user": "OficialMailson", "from_user_id": 50768110, "from_user_id_str": "50768110", "from_user_name": "MailsonLobato \\u2655", "geo": null, "id": 148818319745626100, "id_str": "148818319745626112", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1588529094/PQAAALjnzSs4zYUQJ2HEb5b-9sfgjPmeOTS-9w7xnjmPYF5kd_c0b-HaeC3XiBE6AyWJ5tbwfnOUWuwTG1tZr8IqZ5UAm1T1UFvHPWn6EyFju-7mQXvsL9xtgfkI_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1588529094/PQAAALjnzSs4zYUQJ2HEb5b-9sfgjPmeOTS-9w7xnjmPYF5kd_c0b-HaeC3XiBE6AyWJ5tbwfnOUWuwTG1tZr8IqZ5UAm1T1UFvHPWn6EyFju-7mQXvsL9xtgfkI_normal.jpg", "source": "<a href="http://twitter.com/tweetbutton" rel="nofollow">Tweet Button</a>", "text": "V\\u00EDdeo: Rihanna sai correndo do palco para vomitar durante show em Portugal? http://t.co/425TM3R4 via @Papel Pop", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:33:33 +0000", "from_user": "Record_Portugal", "from_user_id": 19663485, "from_user_id_str": "19663485", "from_user_name": "Di\\u00E1rio Record", "geo": null, "id": 148818262690500600, "id_str": "148818262690500608", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/73860242/logo_record_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/73860242/logo_record_normal.jpg", "source": "<a href="http://www.record.xl.pt" rel="nofollow">Jornal Record</a>", "text": "Fora de campo - FMI aprovou terceira tranche do empr\\u00E9stimo a Portugal http://t.co/qH9KuCTD", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:33:28 +0000", "from_user": "ElGatoCompotas", "from_user_id": 394329566, "from_user_id_str": "394329566", "from_user_name": "Da Souza", "geo": null, "id": 148818241505067000, "id_str": "148818241505067008", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694526798/SocapuchobyTito_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694526798/SocapuchobyTito_normal.gif", "source": "<a href="http://twitter.com/">web</a>", "text": "En Portugal odiamos a Michel Tel\\u00F3, es como Justin Bieber no s\\u00E9 si lo sab\\u00E9is", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:33:22 +0000", "from_user": "FilipeHonorio", "from_user_id": 47476545, "from_user_id_str": "47476545", "from_user_name": "Filipe Hon\\u00F3rio", "geo": null, "id": 148818217836609540, "id_str": "148818217836609536", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1649061933/HPIM1086_-_C_pia_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1649061933/HPIM1086_-_C_pia_normal.JPG", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Tranche de \"ajuda\". RT @tvi24_iol: FMI liberta 3\\u00AA tranche de ajuda a Portugal: http://t.co/NoGecIpw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:33:20 +0000", "from_user": "museusbr", "from_user_id": 370345430, "from_user_id_str": "370345430", "from_user_name": "Ibram/MinC", "geo": null, "id": 148818205417287680, "id_str": "148818205417287681", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1560864548/Twitter-profile_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1560864548/Twitter-profile_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Com apoio do MinC, Rosana Bortolin exp\\u00F5e cer\\u00E2micas em Montemor-o-Novo, Portugal, at\\u00E9 15jan! #cultura #museus #portugal http://t.co/iUh597UY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:33:17 +0000", "from_user": "Dezah_Fenty", "from_user_id": 140716277, "from_user_id_str": "140716277", "from_user_name": "Andreza ", "geo": null, "id": 148818195959123970, "id_str": "148818195959123968", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1670588027/lala_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1670588027/lala_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @PontoPOOP: Rihanna sofre racismo em Portugal http://t.co/kYjRiiFx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:33:04 +0000", "from_user": "UrgurlKerri", "from_user_id": 349285553, "from_user_id_str": "349285553", "from_user_name": "Kerri", "geo": null, "id": 148818140816605200, "id_str": "148818140816605184", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1500616334/mugghg_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1500616334/mugghg_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Rihanna Goes on Twitter Rant After Racial Abuse in Portugal http://t.co/lAt1RNcJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:59 +0000", "from_user": "exame_noticias", "from_user_id": 115656428, "from_user_id_str": "115656428", "from_user_name": "EXAME Not\\u00EDcias", "geo": null, "id": 148818119970914300, "id_str": "148818119970914304", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/776518898/noticias_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/776518898/noticias_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera 2,9 bilh\\u00F5es de euros em ajuda para Portugal http://t.co/Zs8V5Et4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:58 +0000", "from_user": "muraldavila", "from_user_id": 70864524, "from_user_id_str": "70864524", "from_user_name": "muraldavila", "geo": null, "id": 148818117026521100, "id_str": "148818117026521088", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/394055805/LOGO_MURAL_DA_VILA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/394055805/LOGO_MURAL_DA_VILA_normal.jpg", "source": "<a href="http://www.muraldavila.com.br" rel="nofollow">Mural da Vila</a>", "text": "Cantora Rihanna \\u00E9 v\\u00EDtima de racismo em hotel de Lisboa, Portugal - http://t.co/SjQqrOpB", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:56 +0000", "from_user": "whitmo", "from_user_id": 17974018, "from_user_id_str": "17974018", "from_user_name": "whitmo", "geo": null, "id": 148818108000382980, "id_str": "148818108000382976", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1617753759/IMG_0453_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1617753759/IMG_0453_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:56 +0000", "from_user": "IndusvalTrade", "from_user_id": 309878325, "from_user_id_str": "309878325", "from_user_name": "Indusval Trade", "geo": null, "id": 148818107161509900, "id_str": "148818107161509889", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1386095277/indusval_facebook_avatar_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1386095277/indusval_facebook_avatar_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "FMI libera parcela de 2,9 bilh\\u00F5es de euros de aux\\u00EDlio a #Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:43 +0000", "from_user": "AlfaJornal", "from_user_id": 110153375, "from_user_id_str": "110153375", "from_user_name": "Alfa Jornal", "geo": null, "id": 148818052618784770, "id_str": "148818052618784768", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/667265994/ScreenShot011_normal.bmp", "profile_image_url_https": "https://si0.twimg.com/profile_images/667265994/ScreenShot011_normal.bmp", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprovou terceira tranche do empr\\u00E9stimo a Portugal: O Fundo Monet\\u00E1rio Internacional (FMI) aprovou hoje a terc... http://t.co/C2ZsvSj5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:43 +0000", "from_user": "AlfaJornal", "from_user_id": 110153375, "from_user_id_str": "110153375", "from_user_name": "Alfa Jornal", "geo": null, "id": 148818051624738800, "id_str": "148818051624738816", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/667265994/ScreenShot011_normal.bmp", "profile_image_url_https": "https://si0.twimg.com/profile_images/667265994/ScreenShot011_normal.bmp", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprovou terceira tranche do empr\\u00E9stimo a Portugal: O Fundo Monet\\u00E1rio Internacional (FMI) aprovou hoje a terc... http://t.co/idpTnas2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:40 +0000", "from_user": "WeFoundLoveRiRi", "from_user_id": 177738439, "from_user_id_str": "177738439", "from_user_name": "Rayan Fenty Adkins", "geo": null, "id": 148818040342052860, "id_str": "148818040342052865", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1677769970/rrrrrrrrrrrrihannnnnna_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1677769970/rrrrrrrrrrrrihannnnnna_normal.jpg", "source": "<a href="http://mobile.twitter.com" rel="nofollow">Mobile Web</a>", "text": "Vamoos fuzilar o tal hotel em Portugal?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:32:38 +0000", "from_user": "Rui_Parente", "from_user_id": 29333141, "from_user_id_str": "29333141", "from_user_name": "Rui Parente", "geo": null, "id": 148818031043297280, "id_str": "148818031043297280", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1380135594/Capturar_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1380135594/Capturar_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "@Lakers There are a lot of Lakers fans also in PORTUGAL, I wish there was a portuguese player in the league. LET'S GO LAKERS!!!", "to_user": "Lakers", "to_user_id": 20346956, "to_user_id_str": "20346956", "to_user_name": "Los Angeles Lakers", "in_reply_to_status_id": 148816478836244480, "in_reply_to_status_id_str": "148816478836244480"}, +{"created_at": "Mon, 19 Dec 2011 17:32:19 +0000", "from_user": "shruglife_", "from_user_id": 51285549, "from_user_id_str": "51285549", "from_user_name": "Ricky Cervantes", "geo": null, "id": 148817951749963780, "id_str": "148817951749963776", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1694154092/srq5tvAf_normal", "profile_image_url_https": "https://si0.twimg.com/profile_images/1694154092/srq5tvAf_normal", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "@rubibliss like at 4am...ima pass through spain first then italy after that germany to say whats up to logan and possibly portugal....", "to_user": "rubibliss", "to_user_id": 275127993, "to_user_id_str": "275127993", "to_user_name": "Rubi\\u2112\\u2134\\u0475\\u212F", "in_reply_to_status_id": 148815389747462140, "in_reply_to_status_id_str": "148815389747462145"}, +{"created_at": "Mon, 19 Dec 2011 17:32:07 +0000", "from_user": "Sasikana", "from_user_id": 265590258, "from_user_id_str": "265590258", "from_user_name": "Saskiana ^,^", "geo": null, "id": 148817902882140160, "id_str": "148817902882140160", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662951683/plaatje_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662951683/plaatje_normal.png", "source": "<a href="http://itunes.apple.com/us/app/twitter/id409789998?mt=12" rel="nofollow">Twitter for Mac</a>", "text": "@RageLoveSelinde erm.. tot mijn 4de woonde ik in Rusland en dan tot mijn 8ste in Portugal en sindsdien in NL (;", "to_user": "RageLoveSelinde", "to_user_id": 282670919, "to_user_id_str": "282670919", "to_user_name": "Legolas. ", "in_reply_to_status_id": 148817777845735420, "in_reply_to_status_id_str": "148817777845735425"}, +{"created_at": "Mon, 19 Dec 2011 17:32:07 +0000", "from_user": "Alicia_Fenty", "from_user_id": 272138231, "from_user_id_str": "272138231", "from_user_name": "It's Cristmas, \\u263A", "geo": null, "id": 148817902177484800, "id_str": "148817902177484800", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1681093742/NavyTillIdie_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1681093742/NavyTillIdie_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@WeFoundLoveRiRi Nao, eu neste momento n to em Portugal amor, se tivesse eu ia ..rs", "to_user": "WeFoundLoveRiRi", "to_user_id": 177738439, "to_user_id_str": "177738439", "to_user_name": "Rayan Fenty Adkins", "in_reply_to_status_id": 148816637326401540, "in_reply_to_status_id_str": "148816637326401536"}, +{"created_at": "Mon, 19 Dec 2011 17:32:06 +0000", "from_user": "DewiRoberts89", "from_user_id": 236421780, "from_user_id_str": "236421780", "from_user_name": "Dewi Roberts", "geo": null, "id": 148817898817859600, "id_str": "148817898817859584", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1662973998/IMG-20111128-00253_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662973998/IMG-20111128-00253_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@3gerardpique my friend @jambags is from portugal and he has crush on @shakira can he have her for a night please? RT", "to_user": "3gerardpique", "to_user_id": 224223563, "to_user_id_str": "224223563", "to_user_name": "Gerard Piqu\\u00E9"}, +{"created_at": "Mon, 19 Dec 2011 17:32:01 +0000", "from_user": "RandyHookerAZ", "from_user_id": 18715737, "from_user_id_str": "18715737", "from_user_name": "Randy Hooker", "geo": null, "id": 148817877233958900, "id_str": "148817877233958912", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1609718812/Randy1_-_10.26__1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1609718812/Randy1_-_10.26__1__normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "Time to end the war on drugs?? Case Study: Portugal http://t.co/9VH2jWY2", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:59 +0000", "from_user": "94mm94mm94", "from_user_id": 170072580, "from_user_id_str": "170072580", "from_user_name": "Miguel Miranda", "geo": null, "id": 148817868581122050, "id_str": "148817868581122048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1111905540/HPIM6506_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1111905540/HPIM6506_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Check out the best moments of #LOUDTour Lisbon: http://t.co/e4L33s2l RT @rihanna: PORTUGAL tonight was LEGENDARY!!!", "to_user": "rihanna", "to_user_id": 79293791, "to_user_id_str": "79293791", "to_user_name": "Rihanna", "in_reply_to_status_id": 148182359810908160, "in_reply_to_status_id_str": "148182359810908160"}, +{"created_at": "Mon, 19 Dec 2011 17:31:49 +0000", "from_user": "BiografiaIS", "from_user_id": 231881133, "from_user_id_str": "231881133", "from_user_name": "AutoBiografia IS", "geo": null, "id": 148817825518198800, "id_str": "148817825518198785", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1423514098/qwer_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1423514098/qwer_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera 2,9 bi de euros para Portugal: http://t.co/KAhUvogC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:49 +0000", "from_user": "juniorwandeir", "from_user_id": 30200759, "from_user_id_str": "30200759", "from_user_name": "J\\u00FAnior Wandeir", "geo": null, "id": 148817825199423500, "id_str": "148817825199423488", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1583853155/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583853155/image_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera 2,9 bi de euros para Portugal: http://t.co/nIs57tBG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:48 +0000", "from_user": "JrWandeir", "from_user_id": 148473475, "from_user_id_str": "148473475", "from_user_name": "\\uF8FF \\uE00A Jr. Wandeir \\uE00D \\uE250", "geo": null, "id": 148817823735627780, "id_str": "148817823735627776", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1691019558/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1691019558/image_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI libera 2,9 bi de euros para Portugal: http://t.co/5RFA55QH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} +, +{"created_at": "Mon, 19 Dec 2011 17:31:44 +0000", "from_user": "tvi24_iol", "from_user_id": 21783395, "from_user_id_str": "21783395", "from_user_name": "tvi24", "geo": null, "id": 148817804911579140, "id_str": "148817804911579137", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/83894092/13115125_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/83894092/13115125_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI liberta 3\\u00AA tranche de ajuda a Portugal: FMI liberta 3\\u00AA tranche de ajuda a Portugal http://t.co/X8Q0sJLt", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:43 +0000", "from_user": "Portugal_Glocal", "from_user_id": 18055408, "from_user_id_str": "18055408", "from_user_name": "Portugal Glocal", "geo": null, "id": 148817801698738180, "id_str": "148817801698738176", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1359510627/Logo_Portugal_Glocal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1359510627/Logo_Portugal_Glocal_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprovou terceira tranche do empr\\u00E9stimo a Portugal http://t.co/obfo8gZa #Economia", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:32 +0000", "from_user": "bobcat_x", "from_user_id": 276193802, "from_user_id_str": "276193802", "from_user_name": "Renars D.", "geo": null, "id": 148817755414609920, "id_str": "148817755414609920", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1508673061/bobcat1-01_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1508673061/bobcat1-01_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "RT @InsideRihanna: Videos \\u2013 Rihanna Performs At The Atlantico Pavilion, Lisbon, Portugal \\u2013 Dec 17: Only Girl (In The World) Only Gi... http://t.co/atSzsNif", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:31:22 +0000", "from_user": "Meibly", "from_user_id": 58062437, "from_user_id_str": "58062437", "from_user_name": "Thamires Specht", "geo": null, "id": 148817715304472580, "id_str": "148817715304472576", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693650336/Foto-0008_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693650336/Foto-0008_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "@L_Roberta Av. Portugal, passou o hospital, no farol \\u00E0 direita, depois 3\\u00AA \\u00E0 esquerda. Te mando o endere\\u00E7o certinho por SMS.", "to_user": "L_Roberta", "to_user_id": 78767602, "to_user_id_str": "78767602", "to_user_name": "Leticia Roberta", "in_reply_to_status_id": 148817270997647360, "in_reply_to_status_id_str": "148817270997647360"}, +{"created_at": "Mon, 19 Dec 2011 17:31:15 +0000", "from_user": "ForSaleiAlgarve", "from_user_id": 386105591, "from_user_id_str": "386105591", "from_user_name": "For Sale in Algarve", "geo": null, "id": 148817686116315140, "id_str": "148817686116315136", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1575941712/For_Sale_In_Algarve_Twitter_Logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1575941712/For_Sale_In_Algarve_Twitter_Logo_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Villa for sale in Loule | 4 bedrooms ~ For-Sale-in-Algarve ~ #Algarve\\n#Portugal - http://t.co/KJoQHemG", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:29 +0000", "from_user": "Record_Portugal", "from_user_id": 19663485, "from_user_id_str": "19663485", "from_user_name": "Di\\u00E1rio Record", "geo": null, "id": 148817493446766600, "id_str": "148817493446766592", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/73860242/logo_record_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/73860242/logo_record_normal.jpg", "source": "<a href="http://www.record.xl.pt" rel="nofollow">Jornal Record</a>", "text": "Voleibol - Liga Mundial: Portugal em grupo complicado http://t.co/7wtUWazY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:29 +0000", "from_user": "SocMeDotMe", "from_user_id": 371995419, "from_user_id_str": "371995419", "from_user_name": "Karl Lingenfelder", "geo": null, "id": 148817493442568200, "id_str": "148817493442568192", "iso_language_code": "da", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1546120426/SocMe_Twitter_Icon_2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1546120426/SocMe_Twitter_Icon_2_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Villa for sale in Loule | 4 bedrooms ~ For-Sale-in-Algarve ~ #Algarve\\n#Portugal - http://t.co/5nVFMVgo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:27 +0000", "from_user": "Jose_abodo95", "from_user_id": 358313156, "from_user_id_str": "358313156", "from_user_name": "jose armando", "geo": null, "id": 148817481350397950, "id_str": "148817481350397953", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1687769247/Picture0037_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687769247/Picture0037_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Em Portugal os restaurantes fecham para almo\\u00E7o", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:16 +0000", "from_user": "laisafenty", "from_user_id": 142008526, "from_user_id_str": "142008526", "from_user_name": "La\\u00EDsa Fenty", "geo": null, "id": 148817436018343940, "id_str": "148817436018343936", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1671722465/023_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671722465/023_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Rihanna sofreu racismo em Portugal? o.O Que poha \\u00E9 essa?", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:30:15 +0000", "from_user": "PerfecttMileyC", "from_user_id": 427843929, "from_user_id_str": "427843929", "from_user_name": "Pa\\u00E7oca da Miley \\u263A\\u263B", "geo": null, "id": 148817431886962700, "id_str": "148817431886962689", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1702273341/Miley-Cyrus-Christmas-miley-cyrus-27748662-100-100_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702273341/Miley-Cyrus-Christmas-miley-cyrus-27748662-100-100_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@CaroliinaBieber Voce \\u00E9 natural de portugal?", "to_user": "CaroliinaBieber", "to_user_id": 115784563, "to_user_id_str": "115784563", "to_user_name": "Carol do Bieb's", "in_reply_to_status_id": 148816956131250180, "in_reply_to_status_id_str": "148816956131250176"}, +{"created_at": "Mon, 19 Dec 2011 17:30:02 +0000", "from_user": "_Donato_", "from_user_id": 60458450, "from_user_id_str": "60458450", "from_user_name": "Donato ", "geo": null, "id": 148817379781120000, "id_str": "148817379781120000", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1689935088/avatar1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689935088/avatar1_normal.png", "source": "<a href="http://dlvr.it" rel="nofollow">dlvr.it</a>", "text": "#Noticias 12:34 PM : FMI aprueba entrega de 2.900 millones de euros para Portugal http://t.co/EDhsVii1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:47 +0000", "from_user": "DavidGrapeJuice", "from_user_id": 143102150, "from_user_id_str": "143102150", "from_user_name": "DavidGrapeJuice", "geo": null, "id": 148817314064764930, "id_str": "148817314064764928", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1583862227/tgj_logo_newest_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583862227/tgj_logo_newest_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Rihanna Racially Assaulted In Portugal: Though it will always remain a difficult pill to swallow, [...] http://t.co/wRJh25iz", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:47 +0000", "from_user": "DavidGrapeJuice", "from_user_id": 143102150, "from_user_id_str": "143102150", "from_user_name": "DavidGrapeJuice", "geo": null, "id": 148817313301405700, "id_str": "148817313301405697", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1583862227/tgj_logo_newest_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1583862227/tgj_logo_newest_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Rihanna Racially Assaulted In Portugal: Though it will always remain a difficult pill to swallow, [...] http://t.co/fK88RPQM", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:46 +0000", "from_user": "aleexnorad", "from_user_id": 341761771, "from_user_id_str": "341761771", "from_user_name": "arex da gaita", "geo": null, "id": 148817309094518800, "id_str": "148817309094518786", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700078688/OgAAAOouWyoauhbsaBWIc8V0T8iSDVg7NOJBKFdWbm2wSwLIMjFCrZ-Lrmde0vRiq9uL7tWTzVTx-0rfNhM9Ak-vrY8Am1T1UOCmGZmFKJKiBhNvj-aRCwY4XZGA_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700078688/OgAAAOouWyoauhbsaBWIc8V0T8iSDVg7NOJBKFdWbm2wSwLIMjFCrZ-Lrmde0vRiq9uL7tWTzVTx-0rfNhM9Ak-vrY8Am1T1UOCmGZmFKJKiBhNvj-aRCwY4XZGA_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Tomar um banho e chegar ali no portugal ..", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:44 +0000", "from_user": "MSBNPortugal", "from_user_id": 247498025, "from_user_id_str": "247498025", "from_user_name": "MSBN Portugal", "geo": null, "id": 148817301750288400, "id_str": "148817301750288385", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1247028290/newslogo_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1247028290/newslogo_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "Confira as fotos do Culto de A\\u00E7\\u00E3o de gra\\u00E7as dos 10 anos da AD MSBN em Portugal. J\\u00E1 est\\u00E3o no site: http://t.co/Yioz2mjr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:37 +0000", "from_user": "brendonathansz", "from_user_id": 84251337, "from_user_id_str": "84251337", "from_user_name": ", pega eu ? ;9", "geo": null, "id": 148817271727468540, "id_str": "148817271727468545", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1696466293/tw_12566625_1324043963_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696466293/tw_12566625_1324043963_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@positividadedis estados unidos , espanha , portugal u_u", "to_user": "positividadedis", "to_user_id": 373933534, "to_user_id_str": "373933534", "to_user_name": "\\u262E"}, +{"created_at": "Mon, 19 Dec 2011 17:29:33 +0000", "from_user": "atAyalaLand", "from_user_id": 307259720, "from_user_id_str": "307259720", "from_user_name": "Ayala Land Premier", "geo": null, "id": 148817258498625540, "id_str": "148817258498625537", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1373305697/ayala-land-logo_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1373305697/ayala-land-logo_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "IMF releases 2.9 bn euros to Portugal: WASHINGTON\\u00A0- The International Monetary Fund said Monday it would release... http://t.co/8VsJ2fCe", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:31 +0000", "from_user": "JSAfonso", "from_user_id": 57688286, "from_user_id_str": "57688286", "from_user_name": "Joana Afonso", "geo": null, "id": 148817246997852160, "id_str": "148817246997852160", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_5_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Telefones fixos em Portugal atingem os 4,5 milh\\u00F5es: O n\\u00FAmero de telefones fixos em Portugal atingiu os 4,5 milh\\u00F5... http://t.co/pH5vAGTo", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:25 +0000", "from_user": "x_ratedfor18", "from_user_id": 292563318, "from_user_id_str": "292563318", "from_user_name": "in\\u00EAs \\u2191", "geo": null, "id": 148817221492285440, "id_str": "148817221492285440", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1688928421/385848_195557043850470_100001885274864_458443_1934996427_s_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1688928421/385848_195557043850470_100001885274864_458443_1934996427_s_normal.jpg", "source": "<a href="http://www.twocation.com/" rel="nofollow">Twocation</a>", "text": "My followers live in Brazil (68.4%), the U.S. (13.4%), Portugal (2.7%) & more. Create your map at http://t.co/baiihE1Y", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:13 +0000", "from_user": "katy_loves1D", "from_user_id": 424210202, "from_user_id_str": "424210202", "from_user_name": "catarina", "geo": null, "id": 148817172800606200, "id_str": "148817172800606208", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1675950359/one_direction_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675950359/one_direction_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Real_Liam_Payne hi!! can you tweet me something in Portuguese? i love you so much plz tweeet me and follow me xx come to portugal :D", "to_user": "Real_Liam_Payne", "to_user_id": 158314798, "to_user_id_str": "158314798", "to_user_name": "Liam Payne"}, +{"created_at": "Mon, 19 Dec 2011 17:29:10 +0000", "from_user": "PortBestProp", "from_user_id": 168674484, "from_user_id_str": "168674484", "from_user_name": "Portugal Properties", "geo": null, "id": 148817158854549500, "id_str": "148817158854549504", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1082843346/1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1082843346/1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "2 bedroom apartment with pool in Vale de Lobo, Golden Triangle, Algarve, Portugal: http://t.co/7kRQqIYO", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:10 +0000", "from_user": "BradHogan", "from_user_id": 65833320, "from_user_id_str": "65833320", "from_user_name": "Brad Hogan", "geo": null, "id": 148817158296711170, "id_str": "148817158296711168", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1242289455/Da_Boss_11_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1242289455/Da_Boss_11_normal.JPG", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:09 +0000", "from_user": "ramondeveciana", "from_user_id": 176011143, "from_user_id_str": "176011143", "from_user_name": "Ramon de Veciana", "geo": null, "id": 148817155650109440, "id_str": "148817155650109441", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1515615349/330257_2310633333590_1482085179_2736346_6100783_o__2__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1515615349/330257_2310633333590_1482085179_2736346_6100783_o__2__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @marti_saballs: #investidurarajoy Ojal\\u00E1 un d\\u00EDa un empresario catal\\u00E1n o riojano tenga las mismas normas en Lituania que en Portugal. Esto es igual a Europa.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:08 +0000", "from_user": "CeciPortugal", "from_user_id": 52564155, "from_user_id_str": "52564155", "from_user_name": "C\\u00E9ci Portugal", "geo": null, "id": 148817150080069630, "id_str": "148817150080069634", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1702479039/303973_10150275093952756_508157755_8063137_6045177_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702479039/303973_10150275093952756_508157755_8063137_6045177_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Cansei do boneco de neve. Foto nova, direto de Portugal...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:06 +0000", "from_user": "portugalforum", "from_user_id": 41989700, "from_user_id_str": "41989700", "from_user_name": "portugalforum", "geo": null, "id": 148817142689710080, "id_str": "148817142689710080", "iso_language_code": "de", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/487842239/pfo_icon_gr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/487842239/pfo_icon_gr_normal.jpg", "source": "<a href="http://www.portugalforum.org" rel="nofollow">portugalforum.org</a>", "text": "Goethe-Institut: Film: 09.12.2011, "Drift" von Max Hattler: Das InShadow-Festival ist mittlerweile eine http://t.co/ALt1P7kE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:29:03 +0000", "from_user": "msn_actualite", "from_user_id": 204807106, "from_user_id_str": "204807106", "from_user_name": "MSN", "geo": null, "id": 148817130828202000, "id_str": "148817130828201984", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1148044988/msn_butterfly_bigger_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1148044988/msn_butterfly_bigger_1__normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Le FMI approuve un versement de 2,9 milliards d'euros au Portugal: Le Fonds mon\\u00E9taire international a annonc\\u00E9 lu... http://t.co/Yoz6AkqJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:28:47 +0000", "from_user": "Tanmirt_", "from_user_id": 135252695, "from_user_id_str": "135252695", "from_user_name": "F.Y", "geo": null, "id": 148817061513146370, "id_str": "148817061513146368", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1676130401/artists2.gif_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1676130401/artists2.gif_normal.jpg", "source": "<a href="http://blackberry.com/twitter" rel="nofollow">Twitter for BlackBerry\\u00AE</a>", "text": "@mixour une fois au portugal une commer\\u00E7ante \\u00E9tait \\u00E9tonn\\u00E9e d'entendre qu'on venait du maroc. Pour elle au maroc on a que des chameaux...", "to_user": "mixour", "to_user_id": 43032605, "to_user_id_str": "43032605", "to_user_name": "\\u0631\\u0627\\u0633 \\u0627\\u0644\\u0639\\u0635\\u0627\\u0631\\u0629", "in_reply_to_status_id": 148810731599573000, "in_reply_to_status_id_str": "148810731599572992"}, +{"created_at": "Mon, 19 Dec 2011 17:28:28 +0000", "from_user": "PortBestProp", "from_user_id": 168674484, "from_user_id_str": "168674484", "from_user_name": "Portugal Properties", "geo": null, "id": 148816985743048700, "id_str": "148816985743048704", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1082843346/1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1082843346/1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Farm 3,7 Ha with 5 bedroom modern Villa in Algoz, Silves, Algarve, Portugal: http://t.co/m9fTMZLm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:28:06 +0000", "from_user": "PedroNunesI", "from_user_id": 107472424, "from_user_id_str": "107472424", "from_user_name": "Pedro Nunes", "geo": null, "id": 148816892117790720, "id_str": "148816892117790720", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1698751166/iphone_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698751166/iphone_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @PontoPOOP: Rihanna sofre racismo em Portugal http://t.co/kYjRiiFx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:27:57 +0000", "from_user": "PortBestProp", "from_user_id": 168674484, "from_user_id_str": "168674484", "from_user_name": "Portugal Properties", "geo": null, "id": 148816855736401920, "id_str": "148816855736401920", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1082843346/1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1082843346/1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "8 bedroom villa with pool in Vila Nova de Milfontes, Alentejo Coast, Portugal: http://t.co/HgHJVTcR", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:27:54 +0000", "from_user": "Michielvandijl", "from_user_id": 344696044, "from_user_id_str": "344696044", "from_user_name": "Michiel van Dijl ", "geo": null, "id": 148816839521206270, "id_str": "148816839521206273", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1474003153/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1474003153/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:27:32 +0000", "from_user": "PontoPOOP", "from_user_id": 404737389, "from_user_id_str": "404737389", "from_user_name": "Ponto POOP", "geo": null, "id": 148816750580994050, "id_str": "148816750580994048", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1698389880/kkkkkkkkkkk_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698389880/kkkkkkkkkkk_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Rihanna sofre racismo em Portugal http://t.co/kYjRiiFx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:26:53 +0000", "from_user": "WeLuvSel_", "from_user_id": 143616280, "from_user_id_str": "143616280", "from_user_name": "Ro \\u2665", "geo": null, "id": 148816586432720900, "id_str": "148816586432720896", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1698962484/icon_selena_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1698962484/icon_selena_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @BillboardChart_: RIHANNA \\u00E9 v\\u00EDtima de racismo em hotel de Portugal: http://t.co/qDv67Xnn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:26:27 +0000", "from_user": "Prii_Moura_", "from_user_id": 180597873, "from_user_id_str": "180597873", "from_user_name": " Pr\\u03B9\\u0455c\\u03B9\\u017F\\u017F\\u03B1 M\\u03C3\\u03C5r\\u03B1 \\u2640", "geo": null, "id": 148816477850570750, "id_str": "148816477850570752", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1510177816/miniatura_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1510177816/miniatura_normal.JPG", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Rihanna conta que foi v\\u00EDtima de racismo em Portugal: RIO - Nem as popstars est\\u00E3o livres de ouvir desaforos de pe... http://t.co/fVcXrt0s", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:26:27 +0000", "from_user": "MCeuRMP", "from_user_id": 62785709, "from_user_id_str": "62785709", "from_user_name": "C\\u00E9u", "geo": null, "id": 148816475220738050, "id_str": "148816475220738048", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1328335692/MCRMP3_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1328335692/MCRMP3_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "RT @itwitting Ministro da Administra\\u00E7\\u00E3o Interna anuncia mais equipas mistas de for\\u00E7as de seguran\\u00E7a e PJ ht.ly/849q0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:26:15 +0000", "from_user": "portugalforum", "from_user_id": 41989700, "from_user_id_str": "41989700", "from_user_name": "portugalforum", "geo": null, "id": 148816425576972300, "id_str": "148816425576972288", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/487842239/pfo_icon_gr_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/487842239/pfo_icon_gr_normal.jpg", "source": "<a href="http://www.portugalforum.org" rel="nofollow">portugalforum.org</a>", "text": "Querida Angela ...: Portugal est\\u00E1 dar o seu melhor. Boas Festas. Licor Beir\\u00E3o 'envia prendas' a Merkel e Sarkozy - http://t.co/8V2toNli", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:26:10 +0000", "from_user": "maccua", "from_user_id": 66669250, "from_user_id_str": "66669250", "from_user_name": "Macua", "geo": null, "id": 148816404064387070, "id_str": "148816404064387072", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/368256411/tigrec_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/368256411/tigrec_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "#Portugal Re-Discovers Venture Capital. http://t.co/X18cZ6vo Via #Forbes #money", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:26:07 +0000", "from_user": "itwitting", "from_user_id": 26276346, "from_user_id_str": "26276346", "from_user_name": "ionline", "geo": null, "id": 148816391020097540, "id_str": "148816391020097538", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/199994060/i_icon150px_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/199994060/i_icon150px_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "Ministro da Administra\\u00E7\\u00E3o Interna anuncia mais equipas mistas de for\\u00E7as de seguran\\u00E7a e PJ http://t.co/iMsRMMh3", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:26:00 +0000", "from_user": "ViveikaEscobar", "from_user_id": 161042404, "from_user_id_str": "161042404", "from_user_name": "Viveika Escobar ", "geo": null, "id": 148816362154889200, "id_str": "148816362154889217", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1553517046/YO_DE_AZUL_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1553517046/YO_DE_AZUL_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @laopinionpanama: La defensora Patria Portugal hace visita sorpresa a migraci\\u00F3n #laopinionpanama", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:25:40 +0000", "from_user": "SolOnline", "from_user_id": 19889294, "from_user_id_str": "19889294", "from_user_name": "Jornal SOL", "geo": null, "id": 148816281229983740, "id_str": "148816281229983744", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/79299615/sol_logo_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/79299615/sol_logo_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprovou mais 2,9 mil milh\\u00F5es para Portugal: O Fundo Monet\\u00E1rio Internacional (FMI) aprovou hoje a terceira tr... http://t.co/VVUlWSCr", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:25:33 +0000", "from_user": "jay_jay_56", "from_user_id": 396879717, "from_user_id_str": "396879717", "from_user_name": "jason marques", "geo": null, "id": 148816247931412480, "id_str": "148816247931412481", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1687283156/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1687283156/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "R.I.P Tia:( even tho I dont c u like I would like to there's much love & prayers comin ur way from da U.S to Portugal RT If u hav a lost one", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:25:31 +0000", "from_user": "katy_loves1D", "from_user_id": 424210202, "from_user_id_str": "424210202", "from_user_name": "catarina", "geo": null, "id": 148816243506417660, "id_str": "148816243506417664", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1675950359/one_direction_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675950359/one_direction_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@zaynmalik Hi! i love you so much plz tweet me and follow me xxx come to portugal", "to_user": "zaynmalik", "to_user_id": 176566242, "to_user_id_str": "176566242", "to_user_name": "zaynmalik1D"}, +{"created_at": "Mon, 19 Dec 2011 17:25:21 +0000", "from_user": "seunesquik_", "from_user_id": 79299539, "from_user_id_str": "79299539", "from_user_name": "Deve ser Vitor ! \\u264C", "geo": null, "id": 148816199843717120, "id_str": "148816199843717120", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1683613292/gnaartal_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1683613292/gnaartal_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "(via @veja) \\n\\n FMI libera 2,9 bi de euros para Portugal\\n\\n: \\n \\n http://t.co/S96tIcgY", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:25:18 +0000", "from_user": "SuperFeeds", "from_user_id": 396135907, "from_user_id_str": "396135907", "from_user_name": "Super Feeds", "geo": null, "id": 148816186493247500, "id_str": "148816186493247489", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1601520087/SuperFeeds_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1601520087/SuperFeeds_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Veja \\u00BB \\n\\n FMI libera 2,9 bi de euros para Portugal\\n\\n http://t.co/Pn4V8AGx", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:24:55 +0000", "from_user": "x_mereel", "from_user_id": 363608755, "from_user_id_str": "363608755", "from_user_name": "merel", "geo": null, "id": 148816089139253250, "id_str": "148816089139253248", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1550322490/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1550322490/image_normal.jpg", "source": "<a href="http://twitter.com/#!/download/iphone" rel="nofollow">Twitter for iPhone</a>", "text": "the black eyed peas doen me nog steeds denken aan de party in een garage in portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:24:41 +0000", "from_user": "NunoNunes360", "from_user_id": 113097703, "from_user_id_str": "113097703", "from_user_name": "Nuno Nunes", "geo": null, "id": 148816030347706370, "id_str": "148816030347706368", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1615605049/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615605049/image_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "FMI completa segunda avalia\\u00E7\\u00E3o a Portugal e liberta mais 3 mil milh\\u00F5es http://t.co/ztwjiCJw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:24:41 +0000", "from_user": "NunoNunes360", "from_user_id": 113097703, "from_user_id_str": "113097703", "from_user_name": "Nuno Nunes", "geo": null, "id": 148816030335107070, "id_str": "148816030335107072", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1615605049/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1615605049/image_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "M\\u00FAsica: Jazz volta \\u00E0 Pra\\u00E7a da Alegria com reabertura do Hot Clube de Portugal http://t.co/1MAOWr8w", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:24:35 +0000", "from_user": "paul_enos", "from_user_id": 216494726, "from_user_id_str": "216494726", "from_user_name": "Paola.", "geo": null, "id": 148816007622959100, "id_str": "148816007622959106", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702351776/oi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702351776/oi_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Portugal e o dupstep", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:24:24 +0000", "from_user": "HashLiyanag", "from_user_id": 406945025, "from_user_id_str": "406945025", "from_user_name": "hash*", "geo": null, "id": 148815961544327170, "id_str": "148815961544327170", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1701680440/hey_it_s__me_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1701680440/hey_it_s__me_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @VAHFansite: FACEBOOK UPDATED: http://t.co/a7lBCY9p", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:24:24 +0000", "from_user": "Slider01100", "from_user_id": 56678668, "from_user_id_str": "56678668", "from_user_name": "slider", "geo": null, "id": 148815958759321600, "id_str": "148815958759321600", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1366040830/ghost_12583365291_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1366040830/ghost_12583365291_normal.jpg", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "A obesidade infantil est\\u00E1 a aumentar em Portugal. Temos de ver as coisas pelo lado positivo, h\\u00E1 mais gordos para ir \\u00E0 baliza. A. Raminhos", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:24:15 +0000", "from_user": "Politica_I24", "from_user_id": 353857395, "from_user_id_str": "353857395", "from_user_name": "Pol\\u00EDtica 24", "geo": null, "id": 148815922650550270, "id_str": "148815922650550272", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1491963497/politica_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1491963497/politica_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "El FMI aprueba la entrega de 2.900 millones de euros para Portugal http://t.co/0OSuFFsN #Informador24", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:24:13 +0000", "from_user": "katy_loves1D", "from_user_id": 424210202, "from_user_id_str": "424210202", "from_user_name": "catarina", "geo": null, "id": 148815914677178370, "id_str": "148815914677178368", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1675950359/one_direction_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1675950359/one_direction_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@Harry_Styles Hi!! you are my inspiration i love you so much. You can not imagine how. plz tweet me and follow me xxxx come to portugal", "to_user": "Harry_Styles", "to_user_id": 181561712, "to_user_id_str": "181561712", "to_user_name": "Harry Styles"}, +{"created_at": "Mon, 19 Dec 2011 17:24:08 +0000", "from_user": "gleeksunicorns", "from_user_id": 318711839, "from_user_id_str": "318711839", "from_user_name": "Maria and Sara", "geo": null, "id": 148815891272966140, "id_str": "148815891272966144", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1702336915/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702336915/image_normal.jpg", "source": "<a href="http://twitcam.com" rel="nofollow">Twitcam.com</a>", "text": "eu tava com meus amigos em portugal ai meu amigo botou uma musica lmfao (@QuinneyCheerio live on http://t.co/c2UJpAzG)", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:24:00 +0000", "from_user": "_agathabueno", "from_user_id": 282661312, "from_user_id_str": "282661312", "from_user_name": "' AgathaB. ", "geo": null, "id": 148815858708381700, "id_str": "148815858708381697", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1564470446/Foto_A0301_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1564470446/Foto_A0301_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Estou no Mc deis do 12:00 daqui de Portugal n\\u00E3o do Brasil s\\u00E3o s\\u00F3 2 horas de diferen\\u00E7a porque esta no horario de ver\\u00E3o se n\\u00E3o seri\\u00E3o 4 HASHA'", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:23:53 +0000", "from_user": "paul_enos", "from_user_id": 216494726, "from_user_id_str": "216494726", "from_user_name": "Paola.", "geo": null, "id": 148815831344742400, "id_str": "148815831344742400", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702351776/oi_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702351776/oi_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Marcus Portugal:\\nmano se liga nos dedinhos nervosos dess cara!!!\\nse ele usar essa habilidade em outros lugares....", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:23:41 +0000", "from_user": "98SpM", "from_user_id": 62036227, "from_user_id_str": "62036227", "from_user_name": "Radio Cantao FM", "geo": null, "id": 148815781487063040, "id_str": "148815781487063040", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1646523730/fm98_logo_normal.bmp", "profile_image_url_https": "https://si0.twimg.com/profile_images/1646523730/fm98_logo_normal.bmp", "source": "<a href="http://twitter.com/">web</a>", "text": "Rihanna contou em seu Twitter que foi v\\u00EDtima de racismo em Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:23:40 +0000", "from_user": "HowardStump", "from_user_id": 382582430, "from_user_id_str": "382582430", "from_user_name": "Howard L. Stump", "geo": null, "id": 148815777229836300, "id_str": "148815777229836289", "iso_language_code": "nl", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1566400359/4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1566400359/4_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "EU watchdog raids Brussels Airlines and TAP Portugal http://t.co/ufrvCcfw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:23:14 +0000", "from_user": "emmavallespinos", "from_user_id": 301919219, "from_user_id_str": "301919219", "from_user_name": "Emma Vallespin\\u00F3s", "geo": null, "id": 148815666366001150, "id_str": "148815666366001152", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1427255034/bigmouth_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1427255034/bigmouth_normal.jpg", "source": "<a href="http://twitter.com/download/android" rel="nofollow">Twitter for Android</a>", "text": "Casi llego a Portugal buscando un buz\\u00F3n por el barrio", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:22:55 +0000", "from_user": "jbizarro", "from_user_id": 18973489, "from_user_id_str": "18973489", "from_user_name": "Jo\\u00E3o Bizarro", "geo": null, "id": 148815586766487550, "id_str": "148815586766487552", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1375387224/3961345c-23d7-4654-b152-62f2b431269e_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1375387224/3961345c-23d7-4654-b152-62f2b431269e_normal.png", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @raminhoseffect: A obesidade infantil est\\u00E1 a aumentar em Portugal. Temos de ver as coisas pelo lado positivo, h\\u00E1 mais gordos para ir \\u00E0...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:22:51 +0000", "from_user": "awfullsinner", "from_user_id": 123118095, "from_user_id_str": "123118095", "from_user_name": "mayron", "geo": null, "id": 148815568668078080, "id_str": "148815568668078080", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1693517105/ava1_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693517105/ava1_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @BillboardChart_: RIHANNA \\u00E9 v\\u00EDtima de racismo em hotel de Portugal: http://t.co/qDv67Xnn", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:22:14 +0000", "from_user": "hernameissummer", "from_user_id": 73207213, "from_user_id_str": "73207213", "from_user_name": "Joana", "geo": null, "id": 148815414468673540, "id_str": "148815414468673537", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1572691166/tumblr_lsjlhjiPu71qcyne0o1_500_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1572691166/tumblr_lsjlhjiPu71qcyne0o1_500_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @NunoCastanho: Quero uma Topshop em Portugal.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:22:10 +0000", "from_user": "brunoMJcustodio", "from_user_id": 84918596, "from_user_id_str": "84918596", "from_user_name": "Bruno Cust\\u00F3dio", "geo": null, "id": 148815396726775800, "id_str": "148815396726775808", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1635657534/keep_calm_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1635657534/keep_calm_normal.jpg", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "RT @raminhoseffect: A obesidade infantil est\\u00E1 a aumentar em Portugal. Temos de ver as coisas pelo lado positivo, h\\u00E1 mais gordos para ir \\u00E0 baliza.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:21:47 +0000", "from_user": "raminhoseffect", "from_user_id": 121167080, "from_user_id_str": "121167080", "from_user_name": "Ant\\u00F3nio Raminhos", "geo": null, "id": 148815300404588540, "id_str": "148815300404588544", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/740340309/DSC05041_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/740340309/DSC05041_normal.JPG", "source": "<a href="http://www.hootsuite.com" rel="nofollow">HootSuite</a>", "text": "A obesidade infantil est\\u00E1 a aumentar em Portugal. Temos de ver as coisas pelo lado positivo, h\\u00E1 mais gordos para ir \\u00E0 baliza.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:21:14 +0000", "from_user": "Yahoo_Finanzas", "from_user_id": 423687083, "from_user_id_str": "423687083", "from_user_name": "Yahoo! Finanzas", "geo": null, "id": 148815162265182200, "id_str": "148815162265182209", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1662982422/finanzas_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1662982422/finanzas_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "El FMI aprueba la entrega de 2.900 millones de euros para Portugal http://t.co/1la3gxg0", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:21:05 +0000", "from_user": "AntonioGuerra82", "from_user_id": 39727313, "from_user_id_str": "39727313", "from_user_name": "AntonioGG", "geo": null, "id": 148815127406317570, "id_str": "148815127406317568", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1377655654/311449655_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1377655654/311449655_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "El s\\u00E1bado le gan\\u00E9 al mejor jugador de Magic de la historia de Portugal y ni sab\\u00EDa quien era. Ahora soy algo as\\u00ED como la leyenda de la semana", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:21:02 +0000", "from_user": "carolinemjf", "from_user_id": 388804332, "from_user_id_str": "388804332", "from_user_name": "Carolina", "geo": null, "id": 148815115117019140, "id_str": "148815115117019136", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1697173696/ffirle_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1697173696/ffirle_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @NunoCastanho: Quero uma Topshop em Portugal.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:21:02 +0000", "from_user": "HomeInsurance_", "from_user_id": 341208226, "from_user_id_str": "341208226", "from_user_name": "Home Insurance", "geo": null, "id": 148815112965341200, "id_str": "148815112965341186", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png", "source": "<a href="http://www.theleader.info/homeinsurance" rel="nofollow">Home Insurance</a>", "text": "CLASSIC HOME INSURANCE FOR SPAIN, GIBRALTAR, GREECE, AND PORTUGAL - http://t.co/bogKxtXN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:20:20 +0000", "from_user": "LairsonOVelho", "from_user_id": 261392341, "from_user_id_str": "261392341", "from_user_name": "Lairson Belmonte", "geo": null, "id": 148814935953121280, "id_str": "148814935953121284", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1263091307/eu1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1263091307/eu1_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Rihanna conta que foi v\\u00EDtima de racismo em Portugal: RIO - Nem as popstars est\\u00E3o livres de ouvir desaforos de pe... http://t.co/wbfHlCZk", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:20:12 +0000", "from_user": "negociosportuga", "from_user_id": 91605181, "from_user_id_str": "91605181", "from_user_name": "Neg\\u00F3cios Portugal", "geo": null, "id": 148814905271795700, "id_str": "148814905271795712", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/537215653/negocios_portugal_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/537215653/negocios_portugal_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "FMI aprovou mais 2,9 mil milh\\u00F5es para Portugal: O Fundo Monet\\u00E1rio Internacional (FMI) aprovou hoje a terceira tr... http://t.co/Ij2CtHh8", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:20:00 +0000", "from_user": "rfam", "from_user_id": 14562164, "from_user_id_str": "14562164", "from_user_name": "Ricardo martins", "geo": null, "id": 148814852331282430, "id_str": "148814852331282432", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/962986564/Imagem4_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/962986564/Imagem4_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "Richard Branson visitou portugal http://t.co/Mr44TtCw", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:19:57 +0000", "from_user": "edmaisfm", "from_user_id": 335905862, "from_user_id_str": "335905862", "from_user_name": "EdMais Fm Web", "geo": null, "id": 148814840650149900, "id_str": "148814840650149889", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1443771373/edmais_fm_novo_1_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1443771373/edmais_fm_novo_1_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Noticias: Rihanna \\u00E9 v\\u00EDtima de racismo num hotel em Portugal.Confira!acesse:http://t.co/BU12SMlm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:19:43 +0000", "from_user": "JohnPLooney", "from_user_id": 46089198, "from_user_id_str": "46089198", "from_user_name": "John Looney", "geo": null, "id": 148814780063428600, "id_str": "148814780063428608", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/258683849/john_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/258683849/john_normal.png", "source": "<a href="http://www.tweetdeck.com" rel="nofollow">TweetDeck</a>", "text": "\"@richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/GEUOLMEz\"", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:19:01 +0000", "from_user": "SilviaJB_pt", "from_user_id": 188001660, "from_user_id_str": "188001660", "from_user_name": "Silvia Alves", "geo": null, "id": 148814604070424580, "id_str": "148814604070424576", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1696821919/378611_271720259543701_197274640321597_629466_75201724_n_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1696821919/378611_271720259543701_197274640321597_629466_75201724_n_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @itsladyrauhl: does someone know if \"Justin Bieber special shop\" really exists ? i need one in PORTUGAL :b i watched one in photos...", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:18:18 +0000", "from_user": "TopTenENews", "from_user_id": 296645240, "from_user_id_str": "296645240", "from_user_name": "Richard Floyd", "geo": null, "id": 148814424084463600, "id_str": "148814424084463616", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1423378913/movers-shakers_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1423378913/movers-shakers_normal.gif", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Amazon USA #9426 PUBLICO: $9.99 O P\\u00FAblico \\u00E9 hoje um dos mais influentes jornais di\\u00E1rios em Portugal, oferecendo... http://t.co/NtXRhyh1", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:18:15 +0000", "from_user": "PropAlgarve", "from_user_id": 119040556, "from_user_id_str": "119040556", "from_user_name": "Portugal", "geo": null, "id": 148814410960478200, "id_str": "148814410960478208", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/727685540/Dock_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/727685540/Dock_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @PortBestProp: 1 bedroom apartment with pool and seaview in Praia dos Aveiros, Albufeira, Algarve, Portugal: http://t.co/70uYtpnH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:18:00 +0000", "from_user": "Info_Ve", "from_user_id": 225647847, "from_user_id_str": "225647847", "from_user_name": "Info Venezuela", "geo": null, "id": 148814350726086660, "id_str": "148814350726086656", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1664896061/e96c15f3-8715-4a0f-bb29-eb85ba48bdc2_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1664896061/e96c15f3-8715-4a0f-bb29-eb85ba48bdc2_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "12:34 PM : FMI aprueba entrega de 2.900 millones de euros para Portugal http://t.co/eQOTMRC4", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:18:00 +0000", "from_user": "PonGlobovision", "from_user_id": 187483920, "from_user_id_str": "187483920", "from_user_name": "Pon Globovision", "geo": null, "id": 148814349430038530, "id_str": "148814349430038528", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1118628282/taco2_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1118628282/taco2_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "12:34 PM : FMI aprueba entrega de 2.900 millones de euros para Portugal: FMI aprueba entrega de... http://t.co/ldkLxywm #PONGLOBOVISION", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:17:36 +0000", "from_user": "Musiquemag_Rap", "from_user_id": 211549816, "from_user_id_str": "211549816", "from_user_name": "Musiquemag Hip Hop", "geo": null, "id": 148814247613317120, "id_str": "148814247613317120", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1209265604/Logorap_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1209265604/Logorap_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "News / Rihanna trait\\u00E9e de \"chienne\" et de \"salope\": Rihanna a \\u00E9t\\u00E9 victime de propos racistes lors de son r\\u00E9cent ... http://t.co/in7Abv0H", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:17:26 +0000", "from_user": "Fuck_MeRob", "from_user_id": 216527594, "from_user_id_str": "216527594", "from_user_name": "JuH \\u2665", "geo": null, "id": 148814208677589000, "id_str": "148814208677588992", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1693584351/twitter_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693584351/twitter_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@aliciasilva2011 Eu sou de Portugal!", "to_user": "aliciasilva2011", "to_user_id": 230460633, "to_user_id_str": "230460633", "to_user_name": "Alicia-Robsten", "in_reply_to_status_id": 148814011222335500, "in_reply_to_status_id_str": "148814011222335488"}, +{"created_at": "Mon, 19 Dec 2011 17:17:24 +0000", "from_user": "ruylencastre", "from_user_id": 154576486, "from_user_id_str": "154576486", "from_user_name": "ruylencastre", "geo": null, "id": 148814198430908400, "id_str": "148814198430908418", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1607155918/ruylencastre_photographer_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1607155918/ruylencastre_photographer_normal.jpg", "source": "<a href="http://www.facebook.com/twitter" rel="nofollow">Facebook</a>", "text": "e portugal, n\\u00E3o??? gostava de os ver c\\u00E1!!!! http://t.co/QkRKr3QH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:17:01 +0000", "from_user": "Jessicaaj_", "from_user_id": 67719210, "from_user_id_str": "67719210", "from_user_name": "fernando belluschi \\u2661", "geo": null, "id": 148814103241170940, "id_str": "148814103241170944", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1700632597/sfasdfsaf_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700632597/sfasdfsaf_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @fbelluschi_fans: N\\u00E3o se esque\\u00E7am de ir participando no passatempo! T\\u00EAm at\\u00E9 dia 22! http://t.co/U5jzJAKE", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:16:57 +0000", "from_user": "RRCabrita", "from_user_id": 60937861, "from_user_id_str": "60937861", "from_user_name": "RCabrita", "geo": null, "id": 148814087416066050, "id_str": "148814087416066049", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/711342546/Picture0003_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/711342546/Picture0003_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @PortBestProp: 6 bedroom farm with permit for Rural Tourism with pool in Sesimbra, Blue Coast, Costa Azul, Portugal: http://t.co/yjrT8ZGC", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:16:57 +0000", "from_user": "AmandaSoberana", "from_user_id": 79748468, "from_user_id_str": "79748468", "from_user_name": "Amanda K. & Eliton", "geo": null, "id": 148814083578269700, "id_str": "148814083578269699", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1685350571/DSC02627_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1685350571/DSC02627_normal.JPG", "source": "<a href="http://messaging.nokia.com/site/main.do" rel="nofollow"> Ovi by Nokia </a>", "text": "@benzinho1992 kkkk t\\u00E1 se achando que tem belos carros na garagem kkkkkkkkk. Em Portugal tudo \\u00E9 mais barato que aqui, infelizmente.", "to_user": "benzinho1992", "to_user_id": 307717988, "to_user_id_str": "307717988", "to_user_name": "ruben maravalhas", "in_reply_to_status_id": 148813672393879550, "in_reply_to_status_id_str": "148813672393879552"}, +{"created_at": "Mon, 19 Dec 2011 17:16:00 +0000", "from_user": "BWAlfonsoXIII", "from_user_id": 77447915, "from_user_id_str": "77447915", "from_user_name": "BW Hotel AlfonsoXIII", "geo": null, "id": 148813845899649020, "id_str": "148813845899649024", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1288253798/img_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1288253798/img_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Otro a\\u00F1o m\\u00E1s y ya van 3 consecutivos @BWAlfonsoXIII recibe el Premio a la Calidad que otorga Best Western Internacional http://t.co/TUfcYJ9N", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:15:48 +0000", "from_user": "istorikilti", "from_user_id": 216100306, "from_user_id_str": "216100306", "from_user_name": "istorikilti", "geo": null, "id": 148813795240845300, "id_str": "148813795240845312", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1171907369/18358_279685460627_651810627_4471707_7335702_n_1__normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1171907369/18358_279685460627_651810627_4471707_7335702_n_1__normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Rihanna enceinte : Elle fait actuellement le Buzz sur le Net, apres etre aller vomir alors qu'elle donnait un concert au Portugal.", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:15:40 +0000", "from_user": "jotorres_c", "from_user_id": 372753087, "from_user_id_str": "372753087", "from_user_name": "Jonathan Torres", "geo": null, "id": 148813762848239600, "id_str": "148813762848239618", "iso_language_code": "it", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_0_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @fran_concha: @biobio corte de luz torre 15 de la U. Chile portugal c/n Diag Paraguay", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:15:37 +0000", "from_user": "joostmaglev", "from_user_id": 78999754, "from_user_id_str": "78999754", "from_user_name": "Joost Maglev", "geo": null, "id": 148813749300641800, "id_str": "148813749300641792", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1587745524/3fa5592d-a0da-4cac-b3a4-219f5f4194af_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1587745524/3fa5592d-a0da-4cac-b3a4-219f5f4194af_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @richardbranson: It is time to end the war on drugs worldwide. Portugal\\u2019s 10 year experiment shows enough is enough http://t.co/W7cBO4uV", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:12:15 +0000", "from_user": "RevistaMegazine", "from_user_id": 17741660, "from_user_id_str": "17741660", "from_user_name": "RevistaMegazine", "geo": null, "id": 148812904853012480, "id_str": "148812904853012481", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/381167051/logo_normal.bmp", "profile_image_url_https": "https://si0.twimg.com/profile_images/381167051/logo_normal.bmp", "source": "<a href="http://twitter.com/">web</a>", "text": "Rihanna conta que foi v\\u00EDtima de racismo: \"Um homem disse que as mulheres negras s\\u00E3o cadelas\" - http://t.co/Szmq3ou5", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:10:49 +0000", "from_user": "renatojatahy", "from_user_id": 62842219, "from_user_id_str": "62842219", "from_user_name": "Renato Jatahy", "geo": null, "id": 148812542767136770, "id_str": "148812542767136768", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1157058329/02_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1157058329/02_normal.JPG", "source": "<a href="http://foursquare.com" rel="nofollow">foursquare</a>", "text": "I'm at Banco Do Brasil (R. Portugal, 1086-1160 - Japiim, Manaus) http://t.co/da0rbHMJ", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:09:29 +0000", "from_user": "Cindymarchh", "from_user_id": 84753702, "from_user_id_str": "84753702", "from_user_name": "Cindymarch Celina", "geo": null, "id": 148812208397226000, "id_str": "148812208397225985", "iso_language_code": "in", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1689249742/5688_1078407409108_1493941064_30226773_2779016_a_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1689249742/5688_1078407409108_1493941064_30226773_2779016_a_normal.jpg", "source": "<a href="http://twitter.com/ScholarshipsGL" rel="nofollow">Scholarships Beasiswa</a>", "text": "RT @BeasiswaIndo: RT @ScholarshipsEU: http://t.co/iQ2Fksuj beasiswa S2 Geospatial Erasmus Mundus di JERMAN, SPANYOL & PORTUGAL ~1912", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:01:52 +0000", "from_user": "Karissazva", "from_user_id": 440212944, "from_user_id_str": "440212944", "from_user_name": "Karissa Prowse", "geo": null, "id": 148810291461890050, "id_str": "148810291461890048", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1700575222/large_2011-02-04_22-05-48.691_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1700575222/large_2011-02-04_22-05-48.691_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Travels in Portugal: Many of the earliest books, particularly those dating back to the 1900s and before, are now... http://t.co/21vxaCzN", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:01:20 +0000", "from_user": "MusiqueMag", "from_user_id": 72047652, "from_user_id_str": "72047652", "from_user_name": "MusiqueMag", "geo": null, "id": 148810153473486850, "id_str": "148810153473486848", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/420129368/logo-carre_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/420129368/logo-carre_normal.png", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "News / Rihanna trait\\u00E9e de \"chienne\" et de \"salope\": Rihanna a \\u00E9t\\u00E9 victime de propos racistes lors de son r\\u00E9cent ... http://t.co/UE8CM7dp", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 17:00:55 +0000", "from_user": "InnaMood", "from_user_id": 243545094, "from_user_id_str": "243545094", "from_user_name": "Kelly", "geo": null, "id": 148810050171961340, "id_str": "148810050171961344", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1695400232/bazooka_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1695400232/bazooka_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "RT @FGoria: IMF approves EUR 2.9bln disbursement to Portugal", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:59:45 +0000", "from_user": "ALHOUSS", "from_user_id": 127706842, "from_user_id_str": "127706842", "from_user_name": "Alhousseyni TOURE", "geo": null, "id": 148809758428762100, "id_str": "148809758428762113", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1235944165/DSC01461_normal.JPG", "profile_image_url_https": "https://si0.twimg.com/profile_images/1235944165/DSC01461_normal.JPG", "source": "<a href="http://www.rfi.fr" rel="nofollow">Rfi Update</a>", "text": "RT @RFI: Feu vert du FMI pour un versement de 2,9 milliards d'euros au Portugal http://t.co/XvoYj2pa", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:59:32 +0000", "from_user": "JBrosPortugal", "from_user_id": 147680730, "from_user_id_str": "147680730", "from_user_name": "Jonas.BTR.1D", "geo": null, "id": 148809704343207940, "id_str": "148809704343207936", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1693522535/tumblr_lw6qjyq5kQ1r3mpd1o1_500_normal.png", "profile_image_url_https": "https://si0.twimg.com/profile_images/1693522535/tumblr_lw6qjyq5kQ1r3mpd1o1_500_normal.png", "source": "<a href="http://twitter.com/">web</a>", "text": "@AndySamuels31 Have u ever been to Portugal? (Follow me plz)", "to_user": "AndySamuels31", "to_user_id": 234770365, "to_user_id_str": "234770365", "to_user_name": "Andy Samuels"}, +{"created_at": "Mon, 19 Dec 2011 16:59:32 +0000", "from_user": "rihannaupdate1", "from_user_id": 427326711, "from_user_id_str": "427326711", "from_user_name": "Rihanna", "geo": null, "id": 148809702841655300, "id_str": "148809702841655297", "iso_language_code": "en", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a0.twimg.com/profile_images/1671241327/rihanna_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1671241327/rihanna_normal.jpg", "source": "<a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a>", "text": "Rihanna Tweets About Racist in Portugal - Opposing Views: Rihanna took to her Twitter to rant about a man who wa... http://t.co/aVEgE310", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:58:55 +0000", "from_user": "txetito", "from_user_id": 391095439, "from_user_id_str": "391095439", "from_user_name": "txeto", "geo": null, "id": 148809547232968700, "id_str": "148809547232968704", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a2.twimg.com/profile_images/1588724928/image_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1588724928/image_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "@preppylaura @BARA_KOLDO acaba de venir de Portugal, se habra agitanao!! ademas tanto rayo uva al final no tiene ke ser bueno.....", "to_user": "preppylaura", "to_user_id": 283228010, "to_user_id_str": "283228010", "to_user_name": "Laura", "in_reply_to_status_id": 148805289469153280, "in_reply_to_status_id_str": "148805289469153280"}, +{"created_at": "Mon, 19 Dec 2011 16:56:58 +0000", "from_user": "MrHairoGM", "from_user_id": 312866084, "from_user_id_str": "312866084", "from_user_name": "\\u0126a\\u00EFro \\u2649 \\u0122alindez", "geo": null, "id": 148809058151960580, "id_str": "148809058151960577", "iso_language_code": "es", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1699284992/331633326_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1699284992/331633326_normal.jpg", "source": "<a href="http://ubersocial.com" rel="nofollow">\\u00DCberSocial for BlackBerry</a>", "text": "RT @RihannaNavyRD: Rihanna Fue Victima de Racismo En Portugal http://t.co/nuSHkuUH", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:55:32 +0000", "from_user": "ConexaoLanzaRJ", "from_user_id": 236238247, "from_user_id_str": "236238247", "from_user_name": "Eu pedi voc\\u00EA Pepe \\u263B", "geo": null, "id": 148808695269167100, "id_str": "148808695269167105", "iso_language_code": "pt", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a3.twimg.com/profile_images/1702490992/PQAAAPdnrNeyTWru-HN8Br-4lVk9CfgY-Uz_wPb7Gnbom-9WlpnI0a76aNOfpmzIHShwj8NMNjvtEsw-93E2-GY4sEwAm1T1UIbVuwlgB6Nbin-d4ng934XoUiB6_normal.jpg", "profile_image_url_https": "https://si0.twimg.com/profile_images/1702490992/PQAAAPdnrNeyTWru-HN8Br-4lVk9CfgY-Uz_wPb7Gnbom-9WlpnI0a76aNOfpmzIHShwj8NMNjvtEsw-93E2-GY4sEwAm1T1UIbVuwlgB6Nbin-d4ng934XoUiB6_normal.jpg", "source": "<a href="http://twitter.com/">web</a>", "text": "Pe\\u00E7a \\u201CMenina Estranha- Restart\\u201D na r\\u00E1dio \\u201CMega FM\\u201D de Portugal, atrav\\u00E9s destes e-mails: mail@megahits.fm / porto@megahits.fm", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null}, +{"created_at": "Mon, 19 Dec 2011 16:55:20 +0000", "from_user": "afreeknews", "from_user_id": 365946534, "from_user_id_str": "365946534", "from_user_name": "afreeknews.com", "geo": null, "id": 148808644018962430, "id_str": "148808644018962432", "iso_language_code": "fr", "metadata": {"result_type": "recent"}, "profile_image_url": "http://a1.twimg.com/profile_images/1523419174/icon_normal.gif", "profile_image_url_https": "https://si0.twimg.com/profile_images/1523419174/icon_normal.gif", "source": "<a href="http://afreeknews.com" rel="nofollow">Afreeknewscorp</a>", "text": "\\u00C9tats-Unis - Le FMI approuve un versement de 2,9 milliards d'euros au Portugal\\nhttp://t.co/6wkvR0ic", "to_user": null, "to_user_id": null, "to_user_id_str": null, "to_user_name": null} + +] diff --git a/test/unquoted.js b/test/unquoted.js deleted file mode 100644 index 79f1d0b..0000000 --- a/test/unquoted.js +++ /dev/null @@ -1,17 +0,0 @@ -// unquoted attributes should be ok in non-strict mode -// https://github.com/isaacs/sax-js/issues/31 -require(__dirname).test - ( { xml : - "" - , expect : - [ [ "attribute", { name: "class", value: "test" } ] - , [ "attribute", { name: "hello", value: "world" } ] - , [ "opentag", { name: "SPAN", - attributes: { class: "test", hello: "world" } } ] - , [ "closetag", "SPAN" ] - ] - , strict : false - , opt : {} - } - ) - diff --git a/test/utf8-chunks.js b/test/utf8-chunks.js new file mode 100644 index 0000000..fb74c2e --- /dev/null +++ b/test/utf8-chunks.js @@ -0,0 +1,44 @@ +var fs = require('fs') + , clarinet = require('../clarinet.js') + , chunks = clarinet.createStream() + , assert = require('assert') + ; + +var han_value = '我spl我it我'; +var han_obj = '{"thing":"' + han_value + '"}'; +var han_test_obj = ''; +var han_buffer_first = new Buffer([0xe6, 0x88]); +var han_buffer_second = new Buffer([0x91, 0x73, 0x70, 0x6c, 0xe6, 0x88, 0x91, 0x69, 0x74, 0xe6, 0x88]); +var han_buffer_third = new Buffer([0x91]); +var han_buffer_full = new Buffer([ + 0xe6, 0x88, 0x91, + 0x73, 0x70, 0x6c, + 0xe6, 0x88, 0x91, + 0x69, 0x74, + 0xe6, 0x88, 0x91 +]); + +describe('clarinet', function(){ + describe('#utf8-chunks', function() { + it('should be able to parse utf8 characters split across data chunks', function (done){ + chunks.on("error", function (err) { done(err); }); + + chunks.on("data", function (data) { + han_test_obj += data; + }); + + chunks.on("end", function () { + assert.equal(han_obj, han_test_obj); + done(); + }); + + chunks.write('{"thing":"'); + chunks.write(han_buffer_first); + chunks.write(han_buffer_second); + chunks.write(han_buffer_third); + //chunks.write(han_buffer_full); + chunks.write('"}'); + chunks.end(); + }); + }); +}); diff --git a/test/xmlns-issue-41.js b/test/xmlns-issue-41.js deleted file mode 100644 index 596d82b..0000000 --- a/test/xmlns-issue-41.js +++ /dev/null @@ -1,67 +0,0 @@ -var t = require(__dirname) - - , xmls = // should be the same both ways. - [ "" - , "" ] - - , ex1 = - [ [ "opennamespace" - , { prefix: "a" - , uri: "http://ATTRIBUTE" - } - ] - , [ "attribute" - , { name: "xmlns:a" - , value: "http://ATTRIBUTE" - , prefix: "xmlns" - , local: "a" - , uri: "http://www.w3.org/2000/xmlns/" - } - ] - , [ "attribute" - , { name: "a:attr" - , local: "attr" - , prefix: "a" - , uri: "http://ATTRIBUTE" - , value: "value" - } - ] - , [ "opentag" - , { name: "parent" - , uri: "" - , prefix: "" - , local: "parent" - , attributes: - { "a:attr": - { name: "a:attr" - , local: "attr" - , prefix: "a" - , uri: "http://ATTRIBUTE" - , value: "value" - } - , "xmlns:a": - { name: "xmlns:a" - , local: "a" - , prefix: "xmlns" - , uri: "http://www.w3.org/2000/xmlns/" - , value: "http://ATTRIBUTE" - } - } - , ns: {"a": "http://ATTRIBUTE"} - } - ] - , ["closetag", "parent"] - , ["closenamespace", { prefix: "a", uri: "http://ATTRIBUTE" }] - ] - - // swap the order of elements 2 and 1 - , ex2 = [ex1[0], ex1[2], ex1[1]].concat(ex1.slice(3)) - , expected = [ex1, ex2] - -xmls.forEach(function (x, i) { - t.test({ xml: x - , expect: expected[i] - , strict: true - , opt: { xmlns: true } - }) -}) diff --git a/test/xmlns-rebinding.js b/test/xmlns-rebinding.js deleted file mode 100644 index f464876..0000000 --- a/test/xmlns-rebinding.js +++ /dev/null @@ -1,59 +0,0 @@ - -require(__dirname).test - ( { xml : - ""+ - ""+ - ""+ - ""+ - ""+ - "" - - , expect : - [ [ "opennamespace", { prefix: "x", uri: "x1" } ] - , [ "opennamespace", { prefix: "y", uri: "y1" } ] - , [ "attribute", { name: "xmlns:x", value: "x1", uri: "http://www.w3.org/2000/xmlns/", prefix: "xmlns", local: "x" } ] - , [ "attribute", { name: "xmlns:y", value: "y1", uri: "http://www.w3.org/2000/xmlns/", prefix: "xmlns", local: "y" } ] - , [ "attribute", { name: "x:a", value: "x1", uri: "x1", prefix: "x", local: "a" } ] - , [ "attribute", { name: "y:a", value: "y1", uri: "y1", prefix: "y", local: "a" } ] - , [ "opentag", { name: "root", uri: "", prefix: "", local: "root", - attributes: { "xmlns:x": { name: "xmlns:x", value: "x1", uri: "http://www.w3.org/2000/xmlns/", prefix: "xmlns", local: "x" } - , "xmlns:y": { name: "xmlns:y", value: "y1", uri: "http://www.w3.org/2000/xmlns/", prefix: "xmlns", local: "y" } - , "x:a": { name: "x:a", value: "x1", uri: "x1", prefix: "x", local: "a" } - , "y:a": { name: "y:a", value: "y1", uri: "y1", prefix: "y", local: "a" } }, - ns: { x: 'x1', y: 'y1' } } ] - - , [ "opennamespace", { prefix: "x", uri: "x2" } ] - , [ "attribute", { name: "xmlns:x", value: "x2", uri: "http://www.w3.org/2000/xmlns/", prefix: "xmlns", local: "x" } ] - , [ "opentag", { name: "rebind", uri: "", prefix: "", local: "rebind", - attributes: { "xmlns:x": { name: "xmlns:x", value: "x2", uri: "http://www.w3.org/2000/xmlns/", prefix: "xmlns", local: "x" } }, - ns: { x: 'x2' } } ] - - , [ "attribute", { name: "x:a", value: "x2", uri: "x2", prefix: "x", local: "a" } ] - , [ "attribute", { name: "y:a", value: "y1", uri: "y1", prefix: "y", local: "a" } ] - , [ "opentag", { name: "check", uri: "", prefix: "", local: "check", - attributes: { "x:a": { name: "x:a", value: "x2", uri: "x2", prefix: "x", local: "a" } - , "y:a": { name: "y:a", value: "y1", uri: "y1", prefix: "y", local: "a" } }, - ns: { x: 'x2' } } ] - - , [ "closetag", "check" ] - - , [ "closetag", "rebind" ] - , [ "closenamespace", { prefix: "x", uri: "x2" } ] - - , [ "attribute", { name: "x:a", value: "x1", uri: "x1", prefix: "x", local: "a" } ] - , [ "attribute", { name: "y:a", value: "y1", uri: "y1", prefix: "y", local: "a" } ] - , [ "opentag", { name: "check", uri: "", prefix: "", local: "check", - attributes: { "x:a": { name: "x:a", value: "x1", uri: "x1", prefix: "x", local: "a" } - , "y:a": { name: "y:a", value: "y1", uri: "y1", prefix: "y", local: "a" } }, - ns: { x: 'x1', y: 'y1' } } ] - , [ "closetag", "check" ] - - , [ "closetag", "root" ] - , [ "closenamespace", { prefix: "x", uri: "x1" } ] - , [ "closenamespace", { prefix: "y", uri: "y1" } ] - ] - , strict : true - , opt : { xmlns: true } - } - ) - diff --git a/test/xmlns-strict.js b/test/xmlns-strict.js deleted file mode 100644 index 4ad615b..0000000 --- a/test/xmlns-strict.js +++ /dev/null @@ -1,71 +0,0 @@ - -require(__dirname).test - ( { xml : - ""+ - ""+ - ""+ - ""+ - ""+ - ""+ - ""+ - ""+ - ""+ - "" - - , expect : - [ [ "opentag", { name: "root", prefix: "", local: "root", uri: "", - attributes: {}, ns: {} } ] - - , [ "attribute", { name: "attr", value: "normal", prefix: "", local: "attr", uri: "" } ] - , [ "opentag", { name: "plain", prefix: "", local: "plain", uri: "", - attributes: { "attr": { name: "attr", value: "normal", uri: "", prefix: "", local: "attr", uri: "" } }, - ns: {} } ] - , [ "closetag", "plain" ] - - , [ "opennamespace", { prefix: "", uri: "uri:default" } ] - - , [ "attribute", { name: "xmlns", value: "uri:default", prefix: "xmlns", local: "", uri: "http://www.w3.org/2000/xmlns/" } ] - , [ "opentag", { name: "ns1", prefix: "", local: "ns1", uri: "uri:default", - attributes: { "xmlns": { name: "xmlns", value: "uri:default", prefix: "xmlns", local: "", uri: "http://www.w3.org/2000/xmlns/" } }, - ns: { "": "uri:default" } } ] - - , [ "attribute", { name: "attr", value: "normal", prefix: "", local: "attr", uri: "uri:default" } ] - , [ "opentag", { name: "plain", prefix: "", local: "plain", uri: "uri:default", ns: { '': 'uri:default' }, - attributes: { "attr": { name: "attr", value: "normal", prefix: "", local: "attr", uri: "uri:default" } } } ] - , [ "closetag", "plain" ] - - , [ "closetag", "ns1" ] - - , [ "closenamespace", { prefix: "", uri: "uri:default" } ] - - , [ "opennamespace", { prefix: "a", uri: "uri:nsa" } ] - - , [ "attribute", { name: "xmlns:a", value: "uri:nsa", prefix: "xmlns", local: "a", uri: "http://www.w3.org/2000/xmlns/" } ] - - , [ "opentag", { name: "ns2", prefix: "", local: "ns2", uri: "", - attributes: { "xmlns:a": { name: "xmlns:a", value: "uri:nsa", prefix: "xmlns", local: "a", uri: "http://www.w3.org/2000/xmlns/" } }, - ns: { a: "uri:nsa" } } ] - - , [ "attribute", { name: "attr", value: "normal", prefix: "", local: "attr", uri: "" } ] - , [ "opentag", { name: "plain", prefix: "", local: "plain", uri: "", - attributes: { "attr": { name: "attr", value: "normal", prefix: "", local: "attr", uri: "" } }, - ns: { a: 'uri:nsa' } } ] - , [ "closetag", "plain" ] - - , [ "attribute", { name: "a:attr", value: "namespaced", prefix: "a", local: "attr", uri: "uri:nsa" } ] - , [ "opentag", { name: "a:ns", prefix: "a", local: "ns", uri: "uri:nsa", - attributes: { "a:attr": { name: "a:attr", value: "namespaced", prefix: "a", local: "attr", uri: "uri:nsa" } }, - ns: { a: 'uri:nsa' } } ] - , [ "closetag", "a:ns" ] - - , [ "closetag", "ns2" ] - - , [ "closenamespace", { prefix: "a", uri: "uri:nsa" } ] - - , [ "closetag", "root" ] - ] - , strict : true - , opt : { xmlns: true } - } - ) - diff --git a/test/xmlns-unbound.js b/test/xmlns-unbound.js deleted file mode 100644 index 2944b87..0000000 --- a/test/xmlns-unbound.js +++ /dev/null @@ -1,15 +0,0 @@ - -require(__dirname).test( - { strict : true - , opt : { xmlns: true } - , expect : - [ ["error", "Unbound namespace prefix: \"unbound\"\nLine: 0\nColumn: 28\nChar: >"] - - , [ "attribute", { name: "unbound:attr", value: "value", uri: "unbound", prefix: "unbound", local: "attr" } ] - , [ "opentag", { name: "root", uri: "", prefix: "", local: "root", - attributes: { "unbound:attr": { name: "unbound:attr", value: "value", uri: "unbound", prefix: "unbound", local: "attr" } }, - ns: {} } ] - , [ "closetag", "root" ] - ] - } -).write("") diff --git a/test/xmlns-xml-default-prefix-attribute.js b/test/xmlns-xml-default-prefix-attribute.js deleted file mode 100644 index 16da771..0000000 --- a/test/xmlns-xml-default-prefix-attribute.js +++ /dev/null @@ -1,35 +0,0 @@ -require(__dirname).test( - { xml : "" - , expect : - [ [ "attribute" - , { name: "xml:lang" - , local: "lang" - , prefix: "xml" - , uri: "http://www.w3.org/XML/1998/namespace" - , value: "en" - } - ] - , [ "opentag" - , { name: "root" - , uri: "" - , prefix: "" - , local: "root" - , attributes: - { "xml:lang": - { name: "xml:lang" - , local: "lang" - , prefix: "xml" - , uri: "http://www.w3.org/XML/1998/namespace" - , value: "en" - } - } - , ns: {} - } - ] - , ["closetag", "root"] - ] - , strict : true - , opt : { xmlns: true } - } -) - diff --git a/test/xmlns-xml-default-prefix.js b/test/xmlns-xml-default-prefix.js deleted file mode 100644 index 9a1ce1b..0000000 --- a/test/xmlns-xml-default-prefix.js +++ /dev/null @@ -1,20 +0,0 @@ -require(__dirname).test( - { xml : "" - , expect : - [ - [ "opentag" - , { name: "xml:root" - , uri: "http://www.w3.org/XML/1998/namespace" - , prefix: "xml" - , local: "root" - , attributes: {} - , ns: {} - } - ] - , ["closetag", "xml:root"] - ] - , strict : true - , opt : { xmlns: true } - } -) - diff --git a/test/xmlns-xml-default-redefine.js b/test/xmlns-xml-default-redefine.js deleted file mode 100644 index 1eba9c7..0000000 --- a/test/xmlns-xml-default-redefine.js +++ /dev/null @@ -1,40 +0,0 @@ -require(__dirname).test( - { xml : "" - , expect : - [ ["error" - , "xml: prefix must be bound to http://www.w3.org/XML/1998/namespace\n" - + "Actual: ERROR\n" - + "Line: 0\nColumn: 27\nChar: '" - ] - , [ "attribute" - , { name: "xmlns:xml" - , local: "xml" - , prefix: "xmlns" - , uri: "http://www.w3.org/2000/xmlns/" - , value: "ERROR" - } - ] - , [ "opentag" - , { name: "xml:root" - , uri: "http://www.w3.org/XML/1998/namespace" - , prefix: "xml" - , local: "root" - , attributes: - { "xmlns:xml": - { name: "xmlns:xml" - , local: "xml" - , prefix: "xmlns" - , uri: "http://www.w3.org/2000/xmlns/" - , value: "ERROR" - } - } - , ns: {} - } - ] - , ["closetag", "xml:root"] - ] - , strict : true - , opt : { xmlns: true } - } -) -